diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..60860dabd --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +/**/dev.py +/**/dev/ +/**/docker-compose.yml/ \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 000000000..6dd4ecc4a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,28 @@ +name: Bug in existing connector +description: Raise a bug related to an existing connector +labels: + - bug +body: + - type: textarea + attributes: + label: Which connector is affected? + description: Name of connector. + validations: + required: true + + - type: textarea + attributes: + label: What is the issue? + description: | + - Give as much detail as you can to help us understand the bug. + - Include any error messages or error codes. + - Try to add reproduction steps if possible. + validations: + required: true + + - type: textarea + attributes: + label: Additional information + description: Any other context, images or comments to add. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 000000000..53ff38839 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Documentation + url: https://docs.cohere.com/docs + about: For detailed information about Cohere's API visit the documentation page. + - name: General Community Help + url: https://discord.com/invite/co-mmunity + about: For any general question not related to connectors please visit Cohere's Community's Discord. diff --git a/.github/ISSUE_TEMPLATE/improvement.yaml b/.github/ISSUE_TEMPLATE/improvement.yaml new file mode 100644 index 000000000..4ac9dabb0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/improvement.yaml @@ -0,0 +1,27 @@ +name: Improve existing connector +description: Make a suggestion to improve the code in an existing connector. +labels: + - improvement +body: + - type: textarea + attributes: + label: Which connector is affected? + description: Name of connector. + validations: + required: true + + - type: textarea + attributes: + label: What would you like to see improved? + description: | + - Give as much detail as you can to help us understand the change. + - Why should these changes be made, and what is the expected change in behavior versus the current one? + validations: + required: true + + - type: textarea + attributes: + label: Additional information + description: Any other context, images or comments to add. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/suggest-new-connector.yaml b/.github/ISSUE_TEMPLATE/suggest-new-connector.yaml new file mode 100644 index 000000000..dd44af7f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/suggest-new-connector.yaml @@ -0,0 +1,26 @@ +name: Suggest new connector +description: Suggest a new connector to add +labels: + - addition +body: + - type: textarea + attributes: + label: What platform/tool would you like to add as a connector? + description: Name of the platform or tool to add. + validations: + required: true + + - type: textarea + attributes: + label: Why do you want to add this connector? + description: Give us details as to why you think this connector would be valuable for your use-case or for the community. + validations: + required: true + + - type: textarea + attributes: + label: Additional information + description: | + - Any other information is much appreciated, such as API documentation, Python SDKs, etc. + validations: + required: false diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..b27c81079 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ + + +### What's being changed: + + + +### How did you test this change (include any code snippets, API requests, screenshots, or gifs): + + diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 000000000..ff99d760e --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,10 @@ +name: Format + +on: [push, pull_request] + +jobs: + format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: psf/black@stable diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..f9c75738a --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +.venv/ +.vscode/ +**/dev/data/ +*.pyc +.trunk/ +.DS_Store +milvus/volumes/ + +# ENV +.env +credentials.json +token.json +.zuliprc + +# Python Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Deployment artifacts +fly.toml \ No newline at end of file diff --git a/.openapi/api.yaml b/.openapi/api.yaml new file mode 100644 index 000000000..bb09502c3 --- /dev/null +++ b/.openapi/api.yaml @@ -0,0 +1,56 @@ +openapi: 3.0.3 +info: + title: Search Connector API + version: 0.0.1 +paths: + /search: + post: + description: >- +

Searches the connected data source for documents related to the query and returns a set of key-value pairs representing the found documents.

+ operationId: search + summary: Perform a search + security: + - api_key: [] + requestBody: + required: true + content: + application/json: + schema: + type: object + required: + - query + properties: + query: + description: >- + A plain-text query string to be used to search for relevant documents. + type: string + minLength: 1 + example: + query: embeddings + responses: + "200": + description: Successful response + content: + application/json: + schema: + type: object + properties: + results: + type: array + items: + type: object + additionalProperties: + type: string + "400": + description: Bad request + "401": + description: Unauthorized + default: + description: Error response + +components: + securitySchemes: + api_key: + type: http + scheme: bearer + x-bearerInfoFunc: provider.app.apikey_auth diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 000000000..cf68b61c6 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @cohere-ai/connectors \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..fe576eec9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,31 @@ +# Cohere Quick Start Connectors contributing guide + +Thank you for your interest in contributing to Cohere's connector. This guide will explain the contribution workflow from opening an issue, creating a PR, to reviewing and merging the PR. + +# Getting Started + +Remember that there are many ways to contribute other than writing code: writing tutorials or blog posts, improving [the documentation](https://docs.cohere.com), and submitting bug reports. + +## Table of Contents + +- [Assumptions](#assumptions) +- [How to Contribute](#how-to-contribute) +- [Development Workflow](#development-workflow) +- [Git Guidelines](#git-guidelines) +- [Release Process (for internal team only)](#release-process-for-internal-team-only) + +## Assumptions + +1. **You're familiar with [GitHub](https://github.com) and the [Pull Requests (PR)](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests) workflow.** +2. **You've read the Cohere's [documentation](https://docs.cohere.com).** +3. \*\*You know about the [Cohere community on Discord](https://discord.com/invite/co-mmunity). + +## How to Contribute + +1. Ensure your change has an issue! Find an + existing issue or open a new issue. + - This is where you can get a feel if the change will be accepted or not. +2. Once approved, fork this repository repository in your own GitHub account. +3. [Create a new Git branch](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-and-deleting-branches-within-your-repository) +4. Make your changes on your branch. +5. [Submit the branch as a Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork) pointing to the `main` branch this repository. A maintainer should comment and/or review your Pull Request within a few days. Although depending on the circumstances, it may take longer. diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..a76803650 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,48 @@ +# syntax = docker/dockerfile:1.4.0 +FROM python:3.11-slim-bookworm as operating-system-deps +WORKDIR /app + +# Keeps Python from generating .pyc files in the container +# Turns off buffering for easier container logging +# Force UTF8 encoding for funky character handling +# Needed so imports function properly +ENV PYTHONDONTWRITEBYTECODE=1 +ENV PYTHONUNBUFFERED=1 +ENV PYTHONIOENCODING=utf-8 +ENV PYTHONPATH=/app +# Keep the venv name and location predictable +ENV POETRY_VIRTUALENVS_IN_PROJECT=true +# Control the number of workers Gunicorn uses +ENV WEB_CONCURRENCY=1 + +# "Activate" the venv manually for the context of the container +ENV VIRTUAL_ENV=/app/.venv +ENV PATH="$VIRTUAL_ENV/bin:$PATH" + +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + build-essential=* \ + libpq-dev=* && \ + rm -rf /var/lib/apt/lists/* + +FROM operating-system-deps +ARG app +ARG port=8000 + +COPY ./${app}/pyproject.toml ./${app}/poetry.lock /app/ +RUN pip install --no-cache-dir poetry==1.5.1 && \ + poetry install + +COPY ./.openapi /app/.openapi +COPY ${app} ./${app} + +# use a RUN to create an entrypoint because the ENTRYPOINT directive does not +# support variable substitution +RUN <> /app/entrypoint.sh && chmod +x /app/entrypoint.sh +#!/usr/bin/env bash +gunicorn -b 0.0.0.0:${port} -t 240 --preload "provider:create_app()" +EOF + +WORKDIR /app/${app} +EXPOSE ${port} +ENTRYPOINT ["/app/entrypoint.sh"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..5d1fca900 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Cohere + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 88255c789..7a53e1982 100644 --- a/README.md +++ b/README.md @@ -1 +1,72 @@ -# Quick Start Connectors +**Quick Start Connectors** + +[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) +![](https://img.shields.io/badge/PRs-Welcome-red) + +--- + +# Table of Contents + +- [Table of Contents](#table-of-contents) +- [Overview](#overview) + - [Features](#features) +- [Getting Started](#getting-started) +- [Contributing](#contributing) + +# Overview + +Cohere's Build-Your-Own-Connector framework allows you to integrate Cohere's Command LLM via the [co.chat api endpoint](https://docs.cohere.com/reference/chat) to any datastore/software that holds text information and has a corresponding search endpoint exposed in its API. This allows the Commanad model to generated responses to user queries that are grounded in proprietary information. + +Some examples of the use-cases you can enable with this framework: + +* Generic question/answering around broad internal company docs +* Knowledge working with specific sub-set of internal knowledge +* Internal comms summary and search +* Research using external providers of information, allowing researchers and writers to explore to information from 3rd parties + +This open-source repository contains code that will allow you to get started integrating with some of the most popular datastores. There is also an [empty template connector](https://github.com/cohere-ai/quick-start-connectors/tree/main/template) which you can expand to use any datasource. Note that different datastores may have different requirements or limitations that need to be addressed in order to to get good quality responses. While some of the quickstart code has been enhanced to address some of these limitations, others only provide the basics of the integration, and you will need to develop them further to fit your specific use-case and the underlying datastore limitations. + +Please read more about our connectors framework here: LINK TO DOCS + +# Getting Started + +This project requires Python 3.11+ and [Poetry](https://python-poetry.org/docs/) at a minimum. Each connector uses poetry to create a virtual environment specific to that connector, and to install all the required dependencies to run a local server. + +For production releases, you can optionally build and deploy using [Docker](https://www.docker.com/get-started/). When building a Docker image, you can use the `Dockerfile` in the root project directory and specify the `app` build argument. + +# Development + +For development, refer to a connector's README. Generally, there is an `.env` file that needs to be created in that subdirectory, based off of a `.env-template`. The environment variables here most commonly set authorization values such as API keys, credentials, and also modify the way the search for that connector behaves. + +After configuring the `.env`, you will be able to use `poetry`'s CLI to start a local server. + +# Integrating With Cohere + +All of the connectors in this repository have been tailored to integrate with Cohere's [co.chat](https://docs.cohere.com/reference/chat) API to make creating a grounded chatbot quick and easy. + +Cohere's API requires that connectors return documents as an array of JSON objects. Each document should be an object with string keys and string values containing all the relevant information about the document (e.g. `title`, `url`, etc.). For best results the largest text content should be stored in the `text` key. + +For example, a connector that returns documents about company expensing policy might return the following: + +```json +[ + { + "title": "Company Travel Policy", + "text": "Flights, Hotels and Meals can be expensed using this new tool...", + "url": "https://drive.google.com/file/d/id1" + "created_at": "2023-11-25T20:09:31Z", + }, + { + "title": "2023 Expenses Policy", + "text": "The list of recommended hotels are", + "url": "https://drive.google.com/file/d/id2" + "created_at": "2022-11-22T20:09:31Z", + } +] +``` + +Cohere's [co.chat](https://docs.cohere.com/reference/chat) API will query the connector and use these documents to generated answers with direct citations. + +# Contributing + +Contributions are what drive an open source community, any contributions made are greatly appreciated. For specific. To get started, check out our [documentation.](CONTRIBUTING.md) diff --git a/_template_/.env-template b/_template_/.env-template new file mode 100644 index 000000000..f6822568d --- /dev/null +++ b/_template_/.env-template @@ -0,0 +1 @@ +TEMPLATE_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/_template_/README.md b/_template_/README.md new file mode 100644 index 000000000..5dc80fdb3 --- /dev/null +++ b/_template_/README.md @@ -0,0 +1,38 @@ +# Template Quick Start Connector + +This is a _template_ for a simple quick start connector that return static data. This can serve as starting point for creating a brand new connector. + +## Configuration + +This connector is very simple and only needs a `TEMPLATE_CONNECTOR_API_KEY` environment variable to be set. This value will be used for bearer token authentication to protect this connector from abuse. + +A `.env-template` file is provided with all the environment variables that are used by this connector. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "which species of penguin is the tallest?" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/_template_/poetry.lock b/_template_/poetry.lock new file mode 100644 index 000000000..0a19e4a32 --- /dev/null +++ b/_template_/poetry.lock @@ -0,0 +1,657 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "a2d52f35ae7e6f766e5de157e0c8d9a82f5a448a748bd80ffa7d9ee9915b67d1" diff --git a/_template_/provider/__init__.py b/_template_/provider/__init__.py new file mode 100644 index 000000000..0558e5ece --- /dev/null +++ b/_template_/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + # use connexion to create a flask app with the endpoints defined in api.yaml spec + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + # load environment variables prefixed with the name of the current directory + config_prefix = os.path.split(os.getcwd())[1].upper().replace("_", "") + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/_template_/provider/app.py b/_template_/provider/app.py new file mode 100644 index 000000000..41d4a8f4a --- /dev/null +++ b/_template_/provider/app.py @@ -0,0 +1,54 @@ +import logging +from flask import current_app as app +from connexion.exceptions import Unauthorized + +logger = logging.getLogger(__name__) + + +# This function is run for the /search endpoint +# the results that are returned here will be passed to Cohere's model for RAG +def search(body): + logger.debug(f'Search request: {body["query"]}') + + # the final data can include anything but must be a flat dictionary with string keys and string values + # we also recommend that you include: + # - an id field that uniquely identifies the data + # - a text field that contains the bulk of your textual data + # - a title field that describes the data + # - a url field that points to the source of the data + data = [ + { + "id": "1", + "title": "Tall penguins", + "text": "The tallest penguin is the Emperor penguin", + "url": "https://en.wikipedia.org/wiki/Penguin", + }, + { + "id": "2", + "title": "Emperor penguins", + "text": "The latin name for Emperor penguin is Aptenodytes forsteri", + "url": "https://en.wikipedia.org/wiki/Penguin", + }, + { + "id": "3", + "title": "Small penguins", + "text": "The smallest penguin is the fairy penguin", + "url": "https://en.wikipedia.org/wiki/Penguin", + }, + { + "id": "4", + "title": "Eudyptula penguis", + "text": "The latin name for fairy penguin is Eudyptula minor", + "url": "https://en.wikipedia.org/wiki/Penguin", + }, + ] + + return {"results": data} + + +# This function is run for all endpoints to ensure requests are using a valid API key +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/_template_/pyproject.toml b/_template_/pyproject.toml new file mode 100644 index 000000000..306411d0b --- /dev/null +++ b/_template_/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "template" +version = "0.1.0" +description = "" +authors = ["Walter B "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = { extras = ["swagger-ui"], version = "^2.14.2" } +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/agilitycms/.env-template b/agilitycms/.env-template new file mode 100644 index 000000000..29ce99f05 --- /dev/null +++ b/agilitycms/.env-template @@ -0,0 +1,6 @@ +AGILITYCMS_API_DOMAIN=api.aglty.io +AGILITYCMS_API_GUID= +AGILITYCMS_API_KEY= +AGILITYCMS_API_LOCALE= +AGILITYCMS_SEARCH_LIMIT= +AGILITYCMS_CONNECTOR_API_KEY=abcdefg1234567890 \ No newline at end of file diff --git a/agilitycms/README.md b/agilitycms/README.md new file mode 100644 index 000000000..04bba96f5 --- /dev/null +++ b/agilitycms/README.md @@ -0,0 +1,91 @@ +# AgilityCMS Quick Start Connector + +A connector to integrate AgilityCMS to Cohere, featuring a simple local development setup. + +## Limitations + +The AgilityCMS currently searches Post objects in your organization. It features full-text search on the post's title and content. + +## Configuration + +This connector requires the following environment variables: + +``` +AGILITYCMS_API_URL +``` + +This variable should contain the API URL of the AgilityCMS instance. +https://api.aglty.io is for Agility content hosted in USA. +For alternative hosting locations use next URLs: + +``` +Canada: https://api-ca.aglty.io +Europe: https://api-eu.aglty.io +Australia: https://api-aus.aglty.io +``` + +``` +AGILITYCMS_API_GUID +``` + +This variable should contain the GUID of the AgilityCMS instance. + +``` +AGILITYCMS_API_KEY +``` + +This variable should contain the API Key of the AgilityCMS instance. + +``` +AGILITYCMS_API_LOCALE +``` + +This variable should contain the locale of the AgilityCMS instance. + +``` +AGILITYCMS_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +### Optional configuration + +``` +AGILITYCMS_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return from AgilityCMS. Default value is 20. +Maximum value is 20. + +This connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/agilitycms/poetry.lock b/agilitycms/poetry.lock new file mode 100644 index 000000000..d6bc1a201 --- /dev/null +++ b/agilitycms/poetry.lock @@ -0,0 +1,753 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "agility-cms" +version = "0.1.0" +description = "Python Fetch SDK for Agility CMS" +optional = false +python-versions = ">=3.6" +files = [ + {file = "agility-cms-0.1.0.tar.gz", hash = "sha256:47c6917bd4ba77b71e949aa43813e44a003e710671f65f4d5c870663348a753f"}, + {file = "agility_cms-0.1.0-py3-none-any.whl", hash = "sha256:11a0dfcf0eab65462fa00d55db3acb94e0e8a7768a4f5932f513502e70662553"}, +] + +[package.dependencies] +requests = "*" + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b0ce7ce5d1b0ea3ae335dd4c7b80551c4905af05b7a51aef2f7304197fd95db9" diff --git a/agilitycms/provider/__init__.py b/agilitycms/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/agilitycms/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/agilitycms/provider/app.py b/agilitycms/provider/app.py new file mode 100644 index 000000000..f2b7f14a8 --- /dev/null +++ b/agilitycms/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"AgilityCMS config error: {error}") + abort(502, f"AgilityCMS config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/agilitycms/provider/client.py b/agilitycms/provider/client.py new file mode 100644 index 000000000..4786bafec --- /dev/null +++ b/agilitycms/provider/client.py @@ -0,0 +1,12 @@ +from agility_cms import Client + +client = None + + +def get_client(api_domain, api_guid, api_key, api_locale): + global client + if not client: + client = Client( + api_guid, api_key, locale=api_locale, preview=False, url=api_domain + ) + return client diff --git a/agilitycms/provider/provider.py b/agilitycms/provider/provider.py new file mode 100644 index 000000000..1648d006f --- /dev/null +++ b/agilitycms/provider/provider.py @@ -0,0 +1,58 @@ +import logging + +from flask import current_app as app + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data): + results = data["items"] if data["items"] else [] + serialized_data = [] + for result in results: + to_append = result + if result["fields"]: + for field, value in result["fields"].items(): + if field == "content": + to_append["text"] = value + else: + to_append[field] = value + to_append.pop("fields") + to_append = {key: str(value) for key, value in to_append.items()} + serialized_data.append(to_append) + return serialized_data + + +def build_filter(query_string, fields=["fields.title", "fields.content"]): + filter_parts = [] + for field in fields: + filter_parts.append(f'{field}[like]"{query_string}"') + + return " or ".join(filter_parts) + + +def search_posts(client, query, limit): + params = { + "reference_name": "posts", + "take": limit, + "filter_": build_filter(query), + "content_link_depth": 1, + "expand_all_content_links": True, + } + posts = client.list(**params) + return posts + + +def search(query): + assert (api_domain := app.config.get("API_URL")), "AGILITYCMS_API_URL must be set" + assert (api_guid := app.config.get("API_GUID")), "AGILITYCMS_API_GUID must be set" + assert (api_key := app.config.get("API_KEY")), "AGILITYCMS_API_KEY must be set" + assert ( + api_locale := app.config.get("API_LOCALE") + ), "AGILITYCMS_API_LOCALE must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + + client = get_client(api_domain, api_guid, api_key, api_locale) + results = search_posts(client, query, search_limit) + return serialize_results(results) diff --git a/agilitycms/pyproject.toml b/agilitycms/pyproject.toml new file mode 100644 index 000000000..b6589919c --- /dev/null +++ b/agilitycms/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "agilitycms" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" +agility-cms = "^0.1.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/agora/.env-template b/agora/.env-template new file mode 100644 index 000000000..0bf1cb16d --- /dev/null +++ b/agora/.env-template @@ -0,0 +1,3 @@ +AGORA_CUSTOMER_ID= +AGORA_CUSTOMER_SECRET= +AGORA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/agora/README.md b/agora/README.md new file mode 100644 index 000000000..523c5c05d --- /dev/null +++ b/agora/README.md @@ -0,0 +1,66 @@ +# Agora Quick Start Connector + +A connector to integrate AgilityCMS to Cohere, featuring a simple local development setup. + +## Limitations + +The Agora connector currently searches Projects within your organization. Because Agora's API does not offer any search functionality, we instead list all projects in your org prior to running a keyword matching (e.g: if any keyword in your query matches the project's name, it is returned as a search result). This is further limited by pagination. + +## Configuration + +This connector requires the following environment variables: + +``` +AGORA_CUSTOMER_ID +``` + +This variable should contain the Customer ID of the Agora account. +To get the Customer ID, use the +instructions [here](https://docs.agora.io/en/agora-analytics/reference/restful-authentication) + +``` +AGORA_CUSTOMER_SECRET +``` + +This variable should contain the Customer Secret of the Agora account. +To get the Customer Secret, use the +instructions [here](https://docs.agora.io/en/agora-analytics/reference/restful-authentication) + +``` +AGORA_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +This connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/agora/poetry.lock b/agora/poetry.lock new file mode 100644 index 000000000..e1b7f749a --- /dev/null +++ b/agora/poetry.lock @@ -0,0 +1,742 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + { file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04" }, + { file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" }, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + { file = "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98" }, + { file = "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd" }, + { file = "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604" }, + { file = "black-23.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699" }, + { file = "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171" }, + { file = "black-23.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b" }, + { file = "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c" }, + { file = "black-23.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a" }, + { file = "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a" }, + { file = "black-23.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747" }, + { file = "black-23.10.0-py3-none-any.whl", hash = "sha256:e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e" }, + { file = "black-23.10.0.tar.gz", hash = "sha256:31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd" }, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + { file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" }, + { file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + { file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884" }, + { file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2" }, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + { file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28" }, + { file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" }, +] + +[package.dependencies] +colorama = { version = "*", markers = "platform_system == \"Windows\"" } + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + { file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" }, + { file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c" }, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + { file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" }, + { file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" }, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + { file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36" }, + { file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646" }, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = { version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\"" } +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf" }, + { file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0" }, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + { file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0" }, + { file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033" }, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + { file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" }, + { file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4" }, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + { file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" }, + { file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417" }, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + { file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44" }, + { file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a" }, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" }, + { file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852" }, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e" }, + { file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1" }, + { file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb" }, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba" }, + { file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad" }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + { file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d" }, + { file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" }, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + { file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" }, + { file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5" }, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + { file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20" }, + { file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" }, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + { file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" }, + { file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3" }, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + { file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba" }, + { file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a" }, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + { file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a" }, + { file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515" }, + { file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290" }, + { file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924" }, + { file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673" }, + { file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b" }, + { file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741" }, + { file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9" }, + { file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0" }, + { file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4" }, + { file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54" }, + { file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df" }, + { file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa" }, + { file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867" }, + { file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735" }, + { file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6" }, + { file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206" }, + { file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c" }, + { file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5" }, + { file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c" }, + { file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486" }, + { file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43" }, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf" }, + { file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + { file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f" }, + { file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" }, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + { file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6" }, + { file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063" }, + { file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad" }, + { file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281" }, + { file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116" }, + { file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586" }, + { file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02" }, + { file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801" }, + { file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1" }, + { file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3" }, + { file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d" }, + { file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971" }, + { file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50" }, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + { file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575" }, + { file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516" }, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + { file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" }, + { file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84" }, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" }, + { file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe" }, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/agora/provider/__init__.py b/agora/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/agora/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/agora/provider/app.py b/agora/provider/app.py new file mode 100644 index 000000000..87f60d81e --- /dev/null +++ b/agora/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Agora config error: {error}") + abort(502, f"Agora config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/agora/provider/client.py b/agora/provider/client.py new file mode 100644 index 000000000..40b4361f3 --- /dev/null +++ b/agora/provider/client.py @@ -0,0 +1,52 @@ +import base64 + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class AgoraApiClient: + API_URL = "https://api.agora.io" + PROJECTS_ENDPOINT = "/dev/v1/projects" + + def __init__(self, customer_id, customer_secret): + self.credentials = f"{customer_id}:{customer_secret}" + self.headers = { + "Authorization": f"basic {self._base64_encode_creds()}", + "Content-Type": "application/json", + } + + def _base64_encode_creds(self): + base64_encoded = base64.b64encode(self.credentials.encode("utf8")) + return base64_encoded.decode("utf8") + + def get(self, url, params={}): + response = requests.get(url, headers=self.headers, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_projects(self): + url = f"{self.API_URL}{self.PROJECTS_ENDPOINT}" + return self.get(url) + + +def get_client(): + global client + assert ( + customer_id := app.config.get("CUSTOMER_ID") + ), "AGORA_CUSTOMER_ID must be set" + assert ( + customer_secret := app.config.get("CUSTOMER_SECRET") + ), "AGORA_CUSTOMER_SECRET must be set" + + if not client: + client = AgoraApiClient(customer_id, customer_secret) + + return client diff --git a/agora/provider/provider.py b/agora/provider/provider.py new file mode 100644 index 000000000..f99b99f12 --- /dev/null +++ b/agora/provider/provider.py @@ -0,0 +1,25 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search_projects(data, query): + results = [] + keywords = query.split(" ") + if "projects" in data: + for project in data["projects"]: + if any(keyword.lower() in project["name"].lower() for keyword in keywords): + project["title"] = project.get("name") + project["text"] = project.get("name") + project["url"] = f"https://console.agora.io/project/{project['id']}" + results.append({k: str(v) for k, v in project.items()}) + + return results + + +def search(query): + client = get_client() + + return search_projects(client.get_projects(), query) diff --git a/agora/pyproject.toml b/agora/pyproject.toml new file mode 100644 index 000000000..177a8972a --- /dev/null +++ b/agora/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "agora" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/aha/.env-template b/aha/.env-template new file mode 100644 index 000000000..aad3186b0 --- /dev/null +++ b/aha/.env-template @@ -0,0 +1,5 @@ +AHA_DOMAIN= +AHA_API_KEY= +AHA_SEARCH_LIMIT= +AHA_ALLOWED_ENTITIES=["users","capacity_scenarios","epics","features","goals","ideas","initiatives","integrations","products","release_phases","strategy_models","strategy_positions","strategy_visions","teams","tasks"] +AHA_CONNECTOR_API_KEY= diff --git a/aha/README.md b/aha/README.md new file mode 100644 index 000000000..0875938e5 --- /dev/null +++ b/aha/README.md @@ -0,0 +1,79 @@ +# Aha! Quick Start Connector + +A connector to integrate Aha! to Cohere, featuring a simple local development setup. + +## Limitations + +The Aha! connector searches across all entity types defined by the `AHA_ALLOWED_ENTITIES` environment variable, which by default searches for ["users","capacity_scenarios","epics","features","goals","ideas","initiatives","integrations","products","release_phases","strategy_models","strategy_positions","strategy_visions","teams","tasks"]. + +## Configuration + +This connector requires the following environment variables: + +``` +AHA_DOMAIN + +This variable should contain the domain of the your Aha! account. +``` + +``` +AHA_API_KEY + +This variable should contain the API key of the Aha! +``` + +You can generate an API token using +the instructions [here](https://www.aha.io/api#authentication) + +``` +AHA_CONNECTOR_API_KEY + +This variable should contain the API key for the Cohere connector. +``` + +### Optional configuration + +``` +AHA_ALLOWED_ENTITIES + +This variable may contain a comma separated list of entity types to search. +Default value is ["users","capacity_scenarios","epics","features","goals","ideas","initiatives","integrations","products","release_phases","strategy_models","strategy_positions","strategy_visions","teams","tasks"]. +``` + +``` +AHA_SEARCH_LIMIT + +This variable may contain the maximum number of results to return from Aha!. Default value is 20. +``` + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/aha/poetry.lock b/aha/poetry.lock new file mode 100644 index 000000000..f1ae2bc8f --- /dev/null +++ b/aha/poetry.lock @@ -0,0 +1,658 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "5adac22f827319e20a1abae786192529396a15647edde77c6f2550586f46e7ee" diff --git a/aha/provider/__init__.py b/aha/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/aha/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/aha/provider/app.py b/aha/provider/app.py new file mode 100644 index 000000000..a9c61bc7c --- /dev/null +++ b/aha/provider/app.py @@ -0,0 +1,31 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Aha config error: {error}") + abort(502, f"Aha config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/aha/provider/client.py b/aha/provider/client.py new file mode 100644 index 000000000..a2dae219a --- /dev/null +++ b/aha/provider/client.py @@ -0,0 +1,122 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class AhaApiClient: + ALLOWED_ENTITY_TYPES = { + "users": { + "search_fields": ["name", "email"], + "mapping": {"name": "text", "email": "title"}, + }, + "capacity_scenarios": { + "search_fields": ["name"], + "mapping": {"name": "text"}, + }, + "epics": { + "search_fields": ["q"], + "mapping": {"name": "text", "reference_num": "title"}, + }, + "features": { + "search_fields": ["q"], + "mapping": {"name": "text", "reference_num": "title"}, + }, + "goals": { + "search_fields": ["name", "reference_num", "description"], + "mapping": {"description": "text", "name": "title"}, + }, + "ideas": { + "search_fields": ["q"], + "mapping": {"description": "text", "name": "title"}, + }, + "initiatives": { + "search_fields": ["q"], + "mapping": {"description": "text", "name": "title"}, + }, + "integrations": {"search_fields": ["name"], "mapping": {"name": "text"}}, + "products": { + "search_fields": ["name"], + "mapping": {"name": "text", "reference_prefix": "title"}, + }, + "release_phases": { + "search_fields": ["name", "description"], + "mapping": {"description": "text", "name": "title"}, + }, + "strategy_models": { + "search_fields": ["name", "kind"], + "mapping": {"name": "text", "kind": "title"}, + }, + "strategy_positions": { + "search_fields": ["name", "kind"], + "mapping": {"name": "text", "kind": "title"}, + }, + "strategy_visions": { + "search_fields": ["name", "description"], + "mapping": {"description": "text", "name": "title"}, + }, + "teams": {"search_fields": ["name"], "mapping": {"name": "text"}}, + "tasks": {"search_fields": ["name"], "mapping": {"name": "text"}}, + } + + def __init__(self, domain, api_key, allowed_entities, search_limit): + self.api_url = f"https://{domain}.aha.io/api/v1/" + self.headers = {"Authorization": f"Bearer {api_key}"} + self.allowed_entities = allowed_entities + self.search_limit = search_limit + + def get_allowed_entities(self): + return self.allowed_entities + + def get_allowed_entity_types(self): + return self.ALLOWED_ENTITY_TYPES + + def get_search_limit(self): + return self.search_limit + + def get(self, url, params={}): + response = requests.get(url, headers=self.headers, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_entities_by_type(self, entity_type, params={}): + url = f"{self.api_url}/{entity_type}" + return self.get(url, params) + + +def get_client(): + global client + assert (domain := app.config.get("DOMAIN")), "AHA_DOMAIN must be set" + assert (api_key := app.config.get("API_KEY")), "AHA_API_KEY must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + allowed_entities = app.config.get( + "ALLOWED_ENTITIES", + [ + "users", + "capacity_scenarios", + "epics", + "features", + "goals", + "ideas", + "initiatives", + "integrations", + "products", + "release_phases", + "strategy_models", + "strategy_positions", + "strategy_visions", + "teams", + "tasks", + ], + ) + + if not client: + client = AhaApiClient(domain, api_key, allowed_entities, search_limit) + + return client diff --git a/aha/provider/provider.py b/aha/provider/provider.py new file mode 100644 index 000000000..b6543a84d --- /dev/null +++ b/aha/provider/provider.py @@ -0,0 +1,75 @@ +import logging + +from . import UpstreamProviderError +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings): + serialized_data = { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in data.items() + } + return serialized_data + + +def search_allowed_entities(client, query): + results = [] + per_page = client.get_search_limit() + allowed_entities = client.get_allowed_entities() + allowed_entity_types = client.get_allowed_entity_types() + searchable_entities = { + k: v for k, v in allowed_entity_types.items() if k in allowed_entities + } + searchable_entity_types = list(searchable_entities.keys()) + + for entity_type in searchable_entity_types: + search_properties = searchable_entities[entity_type]["search_fields"] + is_searchable = search_properties[0] == "q" + response = {entity_type: []} + try: + if is_searchable: + params = {"q": query, "per_page": per_page} + response = client.get_entities_by_type(entity_type, params) + else: + params = {"per_page": per_page} + response = client.get_entities_by_type(entity_type, params) + except UpstreamProviderError: + pass + + query = query.lower() + keywords = query.split() + + search_results = [] + for entity in response[entity_type]: + entity["entity_type"] = entity_type + if "description" in entity and isinstance(entity["description"], dict): + entity["description"] = entity["description"]["body"] + if not is_searchable: + for prop in search_properties: + value = entity.get(prop, "") + value = value.lower() if isinstance(value, str) else "" + if any(keyword in value for keyword in keywords): + entity = serialize_results( + entity, searchable_entities[entity_type]["mapping"] + ) + results.append(entity) + break + else: + entity = serialize_results( + entity, searchable_entities[entity_type]["mapping"] + ) + search_results.append(entity) + + results.extend(search_results) + return results + + +def search(query): + client = get_client() + return search_allowed_entities(client, query) diff --git a/aha/pyproject.toml b/aha/pyproject.toml new file mode 100644 index 000000000..16bc54a1b --- /dev/null +++ b/aha/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "aha" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/algolia/.env-template b/algolia/.env-template new file mode 100644 index 000000000..3c460039e --- /dev/null +++ b/algolia/.env-template @@ -0,0 +1,5 @@ +ALGOLIA_APP_ID= +ALGOLIA_INDEX_NAME= +ALGOLIA_DOCUMENT_BASE_URL= +ALGOLIA_API_KEY= +ALGOLIA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/algolia/README.md b/algolia/README.md new file mode 100644 index 000000000..76d09258a --- /dev/null +++ b/algolia/README.md @@ -0,0 +1,46 @@ +# Algolia Quick Start Connector + +A connector to integrate Algolia to Cohere, featuring a simple local development setup. + +## Limitations + +The Algolia connector searches within a specific index of your Algolia server. Because Algolia is a key-value document store, the document is returned as-is after being serialized for the `text` and `url` values currently. + +## Configuration + +This connector requires that the environment variables `ALGOLIA_APP_ID`, `ALGOLIA_API_KEY`, and `ALGOLIA_INDEX_NAME` be set in order to run. Additionally, if the source documents use relative URLs then `ALGOLIA_DOCUMENT_BASE_URL` can be set to ensure the final results return absolute URLs. These variables can optionally be put into a `.env` file for development. + +Also, to protect this connector from abuse, the `ALGOLIA_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for bearer token authentication. + +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```shell +$ poetry config virtualenvs.in-project true +$ poetry install --no-root + +``` + +and start the server + +```shell + +$ poetry shell +$ flask --app provider --debug run --port 5000 +``` + +Check with curl to see that everything is working + +```shell + +$ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ "query": "using the sdk" }' + +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5001/ui/ diff --git a/algolia/poetry.lock b/algolia/poetry.lock new file mode 100644 index 000000000..a2cd6d6d5 --- /dev/null +++ b/algolia/poetry.lock @@ -0,0 +1,933 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "algoliasearch" +version = "3.0.0" +description = "Algolia Search API Client for Python." +optional = false +python-versions = ">=3.4" +files = [ + {file = "algoliasearch-3.0.0-py2.py3-none-any.whl", hash = "sha256:e150a577435f5256a52e5f50c865138df2e434db640b9e71556e84c169a1da52"}, + {file = "algoliasearch-3.0.0.tar.gz", hash = "sha256:abd9316f81fec1e322db4faf183081383b334188ac8184baab36405533038cdd"}, +] + +[package.dependencies] +requests = ">=2.21,<3.0" + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "22.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.7" +files = [ + {file = "black-22.10.0-1fixedarch-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:5cc42ca67989e9c3cf859e84c2bf014f6633db63d1cbdf8fdb666dcd9e77e3fa"}, + {file = "black-22.10.0-1fixedarch-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:5d8f74030e67087b219b032aa33a919fae8806d49c867846bfacde57f43972ef"}, + {file = "black-22.10.0-1fixedarch-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:197df8509263b0b8614e1df1756b1dd41be6738eed2ba9e9769f3880c2b9d7b6"}, + {file = "black-22.10.0-1fixedarch-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:2644b5d63633702bc2c5f3754b1b475378fbbfb481f62319388235d0cd104c2d"}, + {file = "black-22.10.0-1fixedarch-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:e41a86c6c650bcecc6633ee3180d80a025db041a8e2398dcc059b3afa8382cd4"}, + {file = "black-22.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2039230db3c6c639bd84efe3292ec7b06e9214a2992cd9beb293d639c6402edb"}, + {file = "black-22.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14ff67aec0a47c424bc99b71005202045dc09270da44a27848d534600ac64fc7"}, + {file = "black-22.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:819dc789f4498ecc91438a7de64427c73b45035e2e3680c92e18795a839ebb66"}, + {file = "black-22.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5b9b29da4f564ba8787c119f37d174f2b69cdfdf9015b7d8c5c16121ddc054ae"}, + {file = "black-22.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8b49776299fece66bffaafe357d929ca9451450f5466e997a7285ab0fe28e3b"}, + {file = "black-22.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:21199526696b8f09c3997e2b4db8d0b108d801a348414264d2eb8eb2532e540d"}, + {file = "black-22.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e464456d24e23d11fced2bc8c47ef66d471f845c7b7a42f3bd77bf3d1789650"}, + {file = "black-22.10.0-cp37-cp37m-win_amd64.whl", hash = "sha256:9311e99228ae10023300ecac05be5a296f60d2fd10fff31cf5c1fa4ca4b1988d"}, + {file = "black-22.10.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fba8a281e570adafb79f7755ac8721b6cf1bbf691186a287e990c7929c7692ff"}, + {file = "black-22.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:915ace4ff03fdfff953962fa672d44be269deb2eaf88499a0f8805221bc68c87"}, + {file = "black-22.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:444ebfb4e441254e87bad00c661fe32df9969b2bf224373a448d8aca2132b395"}, + {file = "black-22.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:974308c58d057a651d182208a484ce80a26dac0caef2895836a92dd6ebd725e0"}, + {file = "black-22.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72ef3925f30e12a184889aac03d77d031056860ccae8a1e519f6cbb742736383"}, + {file = "black-22.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:432247333090c8c5366e69627ccb363bc58514ae3e63f7fc75c54b1ea80fa7de"}, + {file = "black-22.10.0-py3-none-any.whl", hash = "sha256:c957b2b4ea88587b46cf49d1dc17681c1e672864fd7af32fc1e9664d572b3458"}, + {file = "black-22.10.0.tar.gz", hash = "sha256:f513588da599943e0cde4e32cc9879e825d58720d6557062d1098c5ad80080e1"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "coverage" +version = "7.2.7" +description = "Code coverage measurement for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "coverage-7.2.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8"}, + {file = "coverage-7.2.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495"}, + {file = "coverage-7.2.7-cp310-cp310-win32.whl", hash = "sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818"}, + {file = "coverage-7.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850"}, + {file = "coverage-7.2.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f"}, + {file = "coverage-7.2.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a"}, + {file = "coverage-7.2.7-cp311-cp311-win32.whl", hash = "sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a"}, + {file = "coverage-7.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562"}, + {file = "coverage-7.2.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d"}, + {file = "coverage-7.2.7-cp312-cp312-win32.whl", hash = "sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511"}, + {file = "coverage-7.2.7-cp312-cp312-win_amd64.whl", hash = "sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3"}, + {file = "coverage-7.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02"}, + {file = "coverage-7.2.7-cp37-cp37m-win32.whl", hash = "sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f"}, + {file = "coverage-7.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0"}, + {file = "coverage-7.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5"}, + {file = "coverage-7.2.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f"}, + {file = "coverage-7.2.7-cp38-cp38-win32.whl", hash = "sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e"}, + {file = "coverage-7.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c"}, + {file = "coverage-7.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9"}, + {file = "coverage-7.2.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2"}, + {file = "coverage-7.2.7-cp39-cp39-win32.whl", hash = "sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb"}, + {file = "coverage-7.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27"}, + {file = "coverage-7.2.7-pp37.pp38.pp39-none-any.whl", hash = "sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d"}, + {file = "coverage-7.2.7.tar.gz", hash = "sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59"}, +] + +[package.extras] +toml = ["tomli"] + +[[package]] +name = "flake8" +version = "6.0.0" +description = "the modular source code checker: pep8 pyflakes and co" +optional = false +python-versions = ">=3.8.1" +files = [ + {file = "flake8-6.0.0-py2.py3-none-any.whl", hash = "sha256:3833794e27ff64ea4e9cf5d410082a8b97ff1a06c16aa3d2027339cd0f1195c7"}, + {file = "flake8-6.0.0.tar.gz", hash = "sha256:c61007e76655af75e6785a931f452915b371dc48f56efd765247c8fe68f2b181"}, +] + +[package.dependencies] +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.10.0,<2.11.0" +pyflakes = ">=3.0.0,<3.1.0" + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + +[[package]] +name = "isort" +version = "5.10.1" +description = "A Python utility / library to sort Python imports." +optional = false +python-versions = ">=3.6.1,<4.0" +files = [ + {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, + {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, +] + +[package.extras] +colors = ["colorama (>=0.4.3,<0.5.0)"] +pipfile-deprecated-finder = ["pipreqs", "requirementslib"] +plugins = ["setuptools"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +description = "McCabe checker, plugin for flake8" +optional = false +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "pluggy" +version = "1.2.0" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pluggy-1.2.0-py3-none-any.whl", hash = "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849"}, + {file = "pluggy-1.2.0.tar.gz", hash = "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "pycodestyle" +version = "2.10.0" +description = "Python style guide checker" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, + {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, +] + +[[package]] +name = "pyflakes" +version = "3.0.1" +description = "passive checker of Python programs" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"}, + {file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"}, +] + +[[package]] +name = "pytest" +version = "7.4.0" +description = "pytest: simple powerful testing with Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, + {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" + +[package.extras] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] + +[[package]] +name = "pytest-cov" +version = "4.1.0" +description = "Pytest plugin for measuring coverage." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-cov-4.1.0.tar.gz", hash = "sha256:3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6a10ef6"}, + {file = "pytest_cov-4.1.0-py3-none-any.whl", hash = "sha256:6ba70b9e97e69fcc3fb45bfeab2d0a138fb65c4d0d6a41ef33983ad114be8c3a"}, +] + +[package.dependencies] +coverage = {version = ">=5.2.1", extras = ["toml"]} +pytest = ">=4.6" + +[package.extras] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.1-py3-none-any.whl", hash = "sha256:185d4a29f001c6e8ae4dad3861e61282a81cb01b9f0ef70a15450c45c6513a0d"}, + {file = "referencing-0.30.1.tar.gz", hash = "sha256:9370c77ceefd39510d70948bbe7375ce2d0125b9c11fd380671d4de959a8e3ce"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "21f2dadd194df24e4c1a7446089be8a8017cdebebb60b29ef04e710317cca022" diff --git a/algolia/provider/__init__.py b/algolia/provider/__init__.py new file mode 100644 index 000000000..c1a11aaf1 --- /dev/null +++ b/algolia/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion +from dotenv import load_dotenv, dotenv_values + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + flask_app.config.from_mapping(dotenv_values()) + return flask_app diff --git a/algolia/provider/app.py b/algolia/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/algolia/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/algolia/provider/provider.py b/algolia/provider/provider.py new file mode 100644 index 000000000..778099409 --- /dev/null +++ b/algolia/provider/provider.py @@ -0,0 +1,37 @@ +import logging +from typing import Any +from . import UpstreamProviderError + +from algoliasearch.search_client import SearchClient +from algoliasearch.exceptions import AlgoliaException +from flask import current_app as app + +logger = logging.getLogger(__name__) + + +def extract_document_data(document): + # fields depend on the schema of the original documents + url = f"{app.config.get('ALGOLIA_DOCUMENT_BASE_URL', '')}{document['internalLink']}" + return {"text": document["body"], "url": url} + + +def search(query: str) -> list[dict[str, Any]]: + algolia_client = SearchClient.create( + app.config["ALGOLIA_APP_ID"], app.config["ALGOLIA_API_KEY"] + ) + + index = algolia_client.init_index(app.config["ALGOLIA_INDEX_NAME"]) + + logger.info(f'Querying Algolia for "{query}"') + + try: + response = index.search(query) + except AlgoliaException: + logger.error(f"Failed to query {query}") + raise UpstreamProviderError(f"Failed to query {query}") + + logger.info(f"Found {response['nbHits']} results") + + results = [extract_document_data(document) for document in response["hits"]] + + return {"results": results} diff --git a/algolia/pyproject.toml b/algolia/pyproject.toml new file mode 100644 index 000000000..7a6c09c1e --- /dev/null +++ b/algolia/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "algolia" +version = "0.1.0" +description = "Connects Cohere to Algolia" +authors = ["Walter Beller-Morales "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = { extras = ["swagger-ui"], version = "^2.14.2" } +algoliasearch = "^3.0.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + +[tool.poetry.group.dev.dependencies] +flake8 = "6.0.0" +isort = "5.10.1" +black = "22.10.0" +pytest = "7.4.0" +pytest-cov = "4.1.0" diff --git a/asana/.env-template b/asana/.env-template new file mode 100644 index 000000000..cbf1299fb --- /dev/null +++ b/asana/.env-template @@ -0,0 +1,3 @@ +ASANA_ACCESS_TOKEN= +ASANA_WORKSPACE_GID= +ASANA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/asana/README.md b/asana/README.md new file mode 100644 index 000000000..4abb438b8 --- /dev/null +++ b/asana/README.md @@ -0,0 +1,41 @@ +# Asana Quick Start Connector + +A connector to integrate Asana, the project management tool, to Cohere. Featuring a simple local development setup. + +## Limitations + +The Asana connector only offers full-text search for Task objects. + +## Configuration + +To use this connector, head to your Asana Developer Console. From here, you can create a new Personal Access Token. Use this value for the `ASANA_ACCESS_TOKEN` environment variable. Then, head to your Admin Console. The URL at the top of your web browser should look like `https://app.asana.com/admin/`, grab the `` value and use it for `ASANA_WORKSPACE_GID`. + +Also, to protect this connector from abuse, the `ASANA_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/asana/poetry.lock b/asana/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/asana/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/asana/provider/__init__.py b/asana/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/asana/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/asana/provider/app.py b/asana/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/asana/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/asana/provider/provider.py b/asana/provider/provider.py new file mode 100644 index 000000000..665ef5da4 --- /dev/null +++ b/asana/provider/provider.py @@ -0,0 +1,71 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://app.asana.com/api/1.0" +TASK_PROPERTIES = [ + "actual_time_minutes", + "approval_status", + "assignee", + "assignee.name", + "assignee_section", + "assignee_section.name", + "assignee_status", + "completed", + "completed_at", + "completed_by", + "completed_by.name", + "created_at", + "created_by", + "dependencies", + "due_at", + "due_on", + "external", + "hearts", + "likes", + "parent", + "parent.name", + "projects", + "projects.name", + "tags", + "tags.name", + "workspace", + "workspace.name", +] + + +def search(query) -> list[dict[str, Any]]: + assert (token := app.config.get("ACCESS_TOKEN")), "ASANA_ACCESS_TOKEN must be set" + assert ( + workspace_gid := app.config.get("WORKSPACE_GID") + ), "ASANA_WORKSPACE_GID must be set" + url = f"{BASE_PATH}/workspaces/{workspace_gid}/tasks/search" + + headers = { + "Authorization": f"Bearer {token}", + } + # By default, the endpoint returns a compact Task, but they provide + # a query param that allows you to specify extra properties + params = { + "text": query, + "opt_fields": ",".join(TASK_PROPERTIES), + } + + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["data"] diff --git a/asana/pyproject.toml b/asana/pyproject.toml new file mode 100644 index 000000000..caef552ca --- /dev/null +++ b/asana/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "asana" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/atera/.env-template b/atera/.env-template new file mode 100644 index 000000000..889b33fb5 --- /dev/null +++ b/atera/.env-template @@ -0,0 +1,2 @@ +ATERA_API_KEY= +ATERA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/atera/README.md b/atera/README.md new file mode 100644 index 000000000..37ca3831d --- /dev/null +++ b/atera/README.md @@ -0,0 +1,40 @@ +# Atera Quick Start Connector + +Connects Cohere to Atera, the IT management tool. + +## Limitations + +Currently only searches Tickets within your Atera org. Note that because Atera's API only offers a List endpoint for Tickets, the search is performed at the connector level using keyword matching (e.g: any keyword of your query matching the Ticket's title or description is returned). + +## Configuration + +To use this connector, you will require access to your Atera dashboard, and have the `Admin` tab available on the left hand side. +Click on `Admin`, then under the `Customer Facing` section click `API`, then copy the API key value. Use this for the `ATERA_API_KEY` environment variable. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/atera/poetry.lock b/atera/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/atera/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/atera/provider/__init__.py b/atera/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/atera/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/atera/provider/app.py b/atera/provider/app.py new file mode 100644 index 000000000..4859ac64a --- /dev/null +++ b/atera/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + + return {} diff --git a/atera/provider/client.py b/atera/provider/client.py new file mode 100644 index 000000000..d9ab05ecf --- /dev/null +++ b/atera/provider/client.py @@ -0,0 +1,51 @@ +import requests +import json +from . import UpstreamProviderError +from flask import current_app as app + +client = None + + +class AteraClient: + DEFAULT_SEARCH_LIMIT = 50 + BASE_URL = "https://app.atera.com/api/v3" + + def __init__(self, key): + self.headers = { + "X-API-KEY": key, + } + + def search_tickets(self, query): + url = f"{self.BASE_URL}/tickets" + params = { + "itemsInPage": self.DEFAULT_SEARCH_LIMIT, + } + + response = requests.get( + url, + headers=self.headers, + params=params, + ) + + if response.status_code != 200: + raise UpstreamProviderError((f"Error fetching tickets.")) + + # Perform search manually + results = [] + for ticket in response.json()["items"]: + text = ticket.get("TicketTitle", "") + ticket.get("FirstComment", "") + if any(keyword in text for keyword in query.split()): + results.append(ticket) + + return results + + +def get_client(): + assert (key := app.config.get("API_KEY")), "ATERA_API_KEY must be set" + + global client + if client is not None: + return client + + client = AteraClient(key) + return client diff --git a/atera/provider/provider.py b/atera/provider/provider.py new file mode 100644 index 000000000..096c0659e --- /dev/null +++ b/atera/provider/provider.py @@ -0,0 +1,36 @@ +import logging +from typing import Any + + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + atera_client = get_client() + + search_results = atera_client.search_tickets(query) + + results = [] + for page in search_results: + results.append(serialize_search_result(page)) + + return results + + +def serialize_search_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_result = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "TicketTitle" in stripped_result: + stripped_result["title"] = stripped_result.pop("TicketTitle") + + if "FirstComment" in stripped_result: + stripped_result["text"] = stripped_result.pop("FirstComment") + + return stripped_result diff --git a/atera/pyproject.toml b/atera/pyproject.toml new file mode 100644 index 000000000..9fd7acec0 --- /dev/null +++ b/atera/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "atera" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/backstage/.env-template b/backstage/.env-template new file mode 100644 index 000000000..82c7c1e17 --- /dev/null +++ b/backstage/.env-template @@ -0,0 +1,6 @@ +BACKSTAGE_SERVER_URL=https://demo.backstage.io +BACKSTAGE_ACCESS_TOKEN= +BACKSTAGE_SEARCH_ENDPOINT=/api/search/query +BACKSTAGE_SEARCH_TERM=term +BACKSTAGE_CONNECTOR_API_KEY=abcdefg1234567890 +BACKSTAGE_CONNECTOR_FIELDS_MAPPING={"location":"url"} diff --git a/backstage/README.md b/backstage/README.md new file mode 100644 index 000000000..4c7694649 --- /dev/null +++ b/backstage/README.md @@ -0,0 +1,82 @@ +# Backstage Connector + +Connects Cohere with Backstage.io, featuring a simple local development setup. + +## Configuration + +This connector requires the following environment variables: + +``` +BACKSTAGE_SERVER_URL + +This variable should contain the URL to the Backstage server. +``` + +``` +BACKSTAGE_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional configuration + +``` +BACKSTAGE_ACCESS_TOKEN + +This variable may contain the access token for the Backstage API if used. +``` + +``` +BACKSTAGE_SEARCH_ENDPOINT + +This variable may contain the endpoint for the search API. By default it is set to "api/search/query" +``` + +``` +BACKSTAGE_SEARCH_TERM + +This variable may contain the name of the query parameter for the search query of your Backstage Search API. By default it is set to "term" +``` + +``` +BACKSTAGE_CONNECTOR_FIELDS_MAPPING + +This variable may contain a JSON object mapping Cohere fields +to Backstage fields(key is Backstage field, value is Cohere field). +If it is not set, the response fields will be returned as is. +``` + +## Development + +Setup Backstage locally by following the instructions [here](https://backstage.io/docs/getting-started/create-an-app). +Or you can use the [Docker](https://backstage.io/docs/deployment/docker). +Please note that the [Backstage Search](https://backstage.io/docs/features/search/) needs to be set up as well. +Then start the Backstage. +Or you can use the [Backstage demo server](https://demo.backstage.io/) + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app solr --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/backstage/poetry.lock b/backstage/poetry.lock new file mode 100644 index 000000000..50b805e43 --- /dev/null +++ b/backstage/poetry.lock @@ -0,0 +1,563 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "d7349b6c01a541244fdefc2c082275ade911b40c85a19756258423f12e0bcc6f" diff --git a/backstage/provider/__init__.py b/backstage/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/backstage/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/backstage/provider/app.py b/backstage/provider/app.py new file mode 100644 index 000000000..10ef141f4 --- /dev/null +++ b/backstage/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Solr config error: {error}") + abort(502, f"Solr config error: {error}") + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/backstage/provider/provider.py b/backstage/provider/provider.py new file mode 100644 index 000000000..2dc7614e9 --- /dev/null +++ b/backstage/provider/provider.py @@ -0,0 +1,84 @@ +import logging + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def prepare_for_serialization(data, server_url): + prepared_data = [] + for item in data: + to_append = item.copy() + for key, value in item.items(): + if key == "document": + for d_key, d_value in value.items(): + to_append[d_key] = ( + f"{server_url}{d_value}" if d_key == "location" else d_value + ) + to_append.pop(key) + if "highlight" in to_append: + to_append.pop("highlight") + prepared_data.append(to_append) + + return prepared_data + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + assert (host := app.config.get("SERVER_URL")), "BACKSTAGE_SERVER_URL must be set" + search_endpoint = app.config.get("SEARCH_ENDPOINT", "/api/search/query") + search_term = app.config.get("SEARCH_TERM", "term") + token = app.config.get("ACCESS_TOKEN", None) + search_url = f"{host}{search_endpoint}?{search_term}={query}" + + headers = None + if token: + headers = { + "Authorization": f"Bearer {token}", + } + + kwargs = { + "url": search_url, + } + if headers: + kwargs["headers"] = headers + + response = requests.get(**kwargs) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + mappings = app.config.get("CONNECTOR_FIELDS_MAPPING", {}) + results = prepare_for_serialization(response.json().get("results", []), host) + return serialize_results(results, mappings) diff --git a/backstage/pyproject.toml b/backstage/pyproject.toml new file mode 100644 index 000000000..6e3cef531 --- /dev/null +++ b/backstage/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "connectors-backstage" +version = "0.1.0" +description = "" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +gunicorn = "^20.1.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/basecamp/.env-template b/basecamp/.env-template new file mode 100644 index 000000000..9953864c3 --- /dev/null +++ b/basecamp/.env-template @@ -0,0 +1,7 @@ +CONTENTFUL_SPACE_ID= +CONTENTFUL_PREVIEW_ACCESS_TOKEN= +CONTENTFUL_ENVIRONMENT=master +CONTENTFUL_SEARCH_LIMIT=20 +CONTENTFUL_CONTENT_TYPE_SEARCH= +CONTENTFUL_FIELDS_MAPPING= +CONTENTFUL_CONNECTOR_API_KEY= diff --git a/basecamp/README.md b/basecamp/README.md new file mode 100644 index 000000000..64e6c18a6 --- /dev/null +++ b/basecamp/README.md @@ -0,0 +1,85 @@ +# Basecamp Connector + +This package is a utility for connecting Cohere to Basecamp. + +## Configuration + +The search connector requires the following environment variables: + +``` +BASECAMP_ACCOUNT_ID +``` + +This variable should contain the account ID of the Basecamp account that will be searched. +You can find the account ID in the you account Basecamp URL -> https://3.basecamp.com//projects. + +``` +BASECAMP_ACCESS_TOKEN +``` + +This variable should contain the Oauth2 access token for the Basecamp account that will be searched. +To get the access token please follow the +instructions [here](https://github.com/basecamp/api/blob/master/sections/authentication.md#oauth-2) +Please note that after access token is expired you will need to generate a new one. +This connector does not support refresh tokens. + +``` +BASECAMP_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +The search connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +### Optional Configuration + +``` +BASECAMP_PROJECT_SEARCH_ENTITIES +``` + +This variable should contain the list of entities that will be searched. +The connector provides two types of entities: `documents` and `messages`. +To search through documents this variable should be set to the `["vault"]` value. +To search through messages this variable should be set to the `["message_board"]` value. +To search through both documents and messages this variable should be set to the `["vault","message_board"]` value. +Please note when we use both `vault` and `message_board` entities the response time will be slower. +If not set the connector will search through documents only + +``` +BASECAMP_VAULTS_DEPTH +``` + +This variable should contain the depth of the vaults(folders) that will be searched. +By default the connector will search through only top levels documents. +Please note when we increase the depth the response time will be slower. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ \ No newline at end of file diff --git a/basecamp/poetry.lock b/basecamp/poetry.lock new file mode 100644 index 000000000..4bf277e68 --- /dev/null +++ b/basecamp/poetry.lock @@ -0,0 +1,782 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98"}, + {file = "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd"}, + {file = "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604"}, + {file = "black-23.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8"}, + {file = "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e"}, + {file = "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699"}, + {file = "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171"}, + {file = "black-23.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c"}, + {file = "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23"}, + {file = "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b"}, + {file = "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c"}, + {file = "black-23.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9"}, + {file = "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204"}, + {file = "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a"}, + {file = "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a"}, + {file = "black-23.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747"}, + {file = "black-23.10.0-py3-none-any.whl", hash = "sha256:e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e"}, + {file = "black-23.10.0.tar.gz", hash = "sha256:31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884"}, + {file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "contentful" +version = "2.1.1" +description = "Contentful Delivery API Client" +optional = false +python-versions = "*" +files = [ + {file = "contentful-2.1.1-py3-none-any.whl", hash = "sha256:6be3fe980cc68cf2eab2b39958df3ae9b7c4d2b26ee92a4926dd8fdd88bf20c0"}, + {file = "contentful-2.1.1.tar.gz", hash = "sha256:7e83776577326c5f088771a83455c2e0eb23c5ee571d024812159b39bb03d206"}, +] + +[package.dependencies] +python-dateutil = "*" +requests = ">=2.20.0,<3.0" + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6"}, + {file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063"}, + {file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad"}, + {file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281"}, + {file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116"}, + {file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586"}, + {file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02"}, + {file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801"}, + {file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1"}, + {file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3"}, + {file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d"}, + {file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971"}, + {file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "0b2a9340bfd4d4ee707c60bd595262ac9f2cc7422a658290d99224f707a79aeb" diff --git a/basecamp/provider/__init__.py b/basecamp/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/basecamp/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/basecamp/provider/app.py b/basecamp/provider/app.py new file mode 100644 index 000000000..86ceeaf05 --- /dev/null +++ b/basecamp/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Basecamp config error: {error}") + abort(502, f"Basecamp config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/basecamp/provider/client.py b/basecamp/provider/client.py new file mode 100644 index 000000000..0a4a4cc3f --- /dev/null +++ b/basecamp/provider/client.py @@ -0,0 +1,53 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class BaseCampClient: + API_URL = "https://3.basecampapi.com" + API_PROJECTS_ENDPOINT = "projects.json" + + def __init__(self, api_token, account_id, search_entities, depth): + self.headers = {"Authorization": f"Bearer {api_token}"} + self.endpoint = f"{self.API_URL}/{account_id}/" + self.search_entities = search_entities + self.depth = depth + + def get_depth(self): + return self.depth + + def get_search_entities(self): + return self.search_entities + + def get(self, url, params={}): + response = requests.get(url, headers=self.headers, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_projects(self): + url = self.endpoint + self.API_PROJECTS_ENDPOINT + return self.get(url) + + +def get_client(): + global client + assert ( + account_id := app.config.get("ACCOUNT_ID") + ), "BASECAMP_ACCOUNT_ID must be set" + assert ( + access_token := app.config.get("ACCESS_TOKEN") + ), "BASECAMP_ACCESS_TOKEN must be set" + depth = app.config.get("VAULTS_DEPTH", 0) + search_entities = app.config.get("PROJECT_SEARCH_ENTITIES", ["vault"]) + + if not client: + client = BaseCampClient(access_token, account_id, search_entities, depth) + + return client diff --git a/basecamp/provider/provider.py b/basecamp/provider/provider.py new file mode 100644 index 000000000..a3a806039 --- /dev/null +++ b/basecamp/provider/provider.py @@ -0,0 +1,88 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def check_content(content, keywords): + return any(keyword.lower() in content.lower() for keyword in keywords) + + +def process_vaults_recursively(client, vault, depth_level, results, keywords): + if vault["documents_count"] > 0 and vault["documents_url"]: + documents = client.get(vault["documents_url"]) + for doc in documents: + if check_content(doc["content"], keywords): + item_to_append = doc + item_to_append["type"] = "document" + item_to_append["text"] = doc.pop("content") + item_to_append["api_url"] = doc.pop("url") + item_to_append["url"] = doc.pop("app_url") + item_to_append = {k: str(v) for k, v in item_to_append.items()} + results.append(item_to_append) + if depth_level == 0: + return results + if vault["vaults_count"] > 0: + vaults = client.get(vault["vaults_url"]) + for vl in vaults: + process_vaults_recursively(client, vl, depth_level - 1, results, keywords) + return results + + +def get_filtered_results(client, projects, search_entities, query): + results = [] + keywords = query.split() + depth = client.get_depth() + for project in projects: + found = False + if "dock" in project and project["dock"]: + needed_entities = [ + d for d in project["dock"] if d["name"] in search_entities + ] + for entity in needed_entities: + if entity["name"] == "message_board": + board_data = client.get(entity["url"]) + messages = client.get(board_data["messages_url"]) + for message in messages: + if check_content(message["content"], keywords) or check_content( + message["subject"], keywords + ): + found = True + item_to_append = message + item_to_append["type"] = "message" + item_to_append["text"] = message.pop("content") + item_to_append["api_url"] = message.pop("url") + item_to_append["url"] = message.pop("app_url") + item_to_append["project_id"] = project["id"] + item_to_append = { + k: str(v) for k, v in item_to_append.items() + } + results.append(item_to_append) + if entity["name"] == "vault": + vault = client.get(entity["url"]) + count_before_processing = len(results) + results = process_vaults_recursively( + client, vault, depth, results, keywords + ) + found = len(results) > count_before_processing + if found or check_content(project["name"], keywords): + item_to_append = project + item_to_append["type"] = "project" + item_to_append["title"] = project.pop("name") + item_to_append["text"] = project.pop("description") + item_to_append["api_url"] = project.pop("url") + item_to_append["url"] = project.pop("app_url") + item_to_append = {k: str(v) for k, v in item_to_append.items()} + results.insert(0, item_to_append) + return results + + +def search(query): + client = get_client() + + projects = client.get_projects() + search_entities = client.get_search_entities() + results = get_filtered_results(client, projects, search_entities, query) + + return results diff --git a/basecamp/pyproject.toml b/basecamp/pyproject.toml new file mode 100644 index 000000000..5ffde7020 --- /dev/null +++ b/basecamp/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "basecamp" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/bigquery/.env-template b/bigquery/.env-template new file mode 100644 index 000000000..1d67d291c --- /dev/null +++ b/bigquery/.env-template @@ -0,0 +1,3 @@ +BIGQUERY_TABLE_NAME= +BIGQUERY_COLUMN_NAME= +BIGQUERY_CONNECTOR_API_KEY= diff --git a/bigquery/README.md b/bigquery/README.md new file mode 100644 index 000000000..aa106f295 --- /dev/null +++ b/bigquery/README.md @@ -0,0 +1,50 @@ +# BigQuery Quick Start Connector + +Connects Cohere to BigQuery, Google's cloud-based big data store. + +## Limitations + +Because BigQuery uses SQL under the hood, the BigQuery connector only allows search within a specific table, and for a specific column. Ideally, you should add indices on this column to speed up the query time. There is no way currently to add complex conditions, or JOINs of any kind. + +## Configuration + +To use this connector, you will need a GCP organization and a user with the necessary IAM role to +create a Service Account for BigQuery. Here are the steps required for authenticating your BigQuery client: + +1. From your Google Cloud Console, head to the Credentials page. +2. Look for the section with Service Accounts, then click Manage service accounts. +3. Create a new Service Account here. Fill it with the relevant info, then limit the scope to BigQuery, giving it at least read-access. Then you can associate your user to this Service Account. +4. From the newly created Service Account, open the Keys tab and click Add Key. Then create a private key in JSON format (important!). Download the generated .json file, and then either move it or copy paste it's contents to `bigquery/credentials.json` + +Next, create a `.env` file that replicates the `.env-template`. You will need to fill out the table and column name to perform matching with. See the values in `.env-template` for examples. + +Finally, to protect this connector from abuse, the `BIGQUERY_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`http://127.0.0.1:5000`. + +```bash + curl -X 'POST' \ + 'http://127.0.0.1:5000/search' \ + -H 'accept: application/json' \ + -H 'Content-Type: application/json' \ + -d '{ + "query": "my title" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://127.0.0.1:5000/ui/ diff --git a/bigquery/credentials.json-template b/bigquery/credentials.json-template new file mode 100644 index 000000000..b91061e00 --- /dev/null +++ b/bigquery/credentials.json-template @@ -0,0 +1,13 @@ +{ + "type": "service_account", + "project_id": "service-account-name", + "private_key_id": "my-key", + "private_key": "my-private-key", + "client_email": "bigquery-account@service-account-name", + "client_id": "123456789", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": "cert-url", + "universe_domain": "googleapis.com" +} diff --git a/bigquery/poetry.lock b/bigquery/poetry.lock new file mode 100644 index 000000000..1fa6e2b5e --- /dev/null +++ b/bigquery/poetry.lock @@ -0,0 +1,1260 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "beautifulsoup4" +version = "4.12.2" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"}, + {file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +html5lib = ["html5lib"] +lxml = ["lxml"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachetools" +version = "5.3.1" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, + {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "google" +version = "3.0.0" +description = "Python bindings to the Google search engine." +optional = false +python-versions = "*" +files = [ + {file = "google-3.0.0-py2.py3-none-any.whl", hash = "sha256:889cf695f84e4ae2c55fbc0cfdaf4c1e729417fa52ab1db0485202ba173e4935"}, + {file = "google-3.0.0.tar.gz", hash = "sha256:143530122ee5130509ad5e989f0512f7cb218b2d4eddbafbad40fd10e8d8ccbe"}, +] + +[package.dependencies] +beautifulsoup4 = "*" + +[[package]] +name = "google-api-core" +version = "2.11.1" +description = "Google API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.11.1.tar.gz", hash = "sha256:25d29e05a0058ed5f19c61c0a78b1b53adea4d9364b464d014fbda941f6d1c9a"}, + {file = "google_api_core-2.11.1-py3-none-any.whl", hash = "sha256:d92a5a92dc36dd4f4b9ee4e55528a90e432b059f93aee6ad857f9de8cc7ae94a"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +grpcio = [ + {version = ">=1.49.1,<2.0dev", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\""}, + {version = ">=1.33.2,<2.0dev", optional = true, markers = "python_version < \"3.11\" and extra == \"grpc\""}, +] +grpcio-status = [ + {version = ">=1.49.1,<2.0.dev0", optional = true, markers = "python_version >= \"3.11\" and extra == \"grpc\""}, + {version = ">=1.33.2,<2.0.dev0", optional = true, markers = "python_version < \"3.11\" and extra == \"grpc\""}, +] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] + +[[package]] +name = "google-auth" +version = "2.17.3" +description = "Google Authentication Library" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*" +files = [ + {file = "google-auth-2.17.3.tar.gz", hash = "sha256:ce311e2bc58b130fddf316df57c9b3943c2a7b4f6ec31de9663a9333e4064efc"}, + {file = "google_auth-2.17.3-py2.py3-none-any.whl", hash = "sha256:f586b274d3eb7bd932ea424b1c702a30e0393a2e2bc4ca3eae8263ffd8be229f"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = {version = ">=3.1.4,<5", markers = "python_version >= \"3.6\""} +six = ">=1.9.0" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)", "requests (>=2.20.0,<3.0.0dev)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0dev)"] + +[[package]] +name = "google-cloud-bigquery" +version = "3.11.4" +description = "Google BigQuery API client library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-cloud-bigquery-3.11.4.tar.gz", hash = "sha256:697df117241a2283bcbb93b21e10badc14e51c9a90800d2a7e1a3e1c7d842974"}, + {file = "google_cloud_bigquery-3.11.4-py2.py3-none-any.whl", hash = "sha256:5fa7897743a0ed949ade25a0942fc9e7557d8fce307c6f8a76d1b604cf27f1b1"}, +] + +[package.dependencies] +google-api-core = {version = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0dev", extras = ["grpc"]} +google-cloud-core = ">=1.6.0,<3.0.0dev" +google-resumable-media = ">=0.6.0,<3.0dev" +grpcio = [ + {version = ">=1.49.1,<2.0dev", markers = "python_version >= \"3.11\""}, + {version = ">=1.47.0,<2.0dev", markers = "python_version < \"3.11\""}, +] +packaging = ">=20.0.0" +proto-plus = ">=1.15.0,<2.0.0dev" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0dev" +python-dateutil = ">=2.7.2,<3.0dev" +requests = ">=2.21.0,<3.0.0dev" + +[package.extras] +all = ["Shapely (>=1.8.4,<2.0dev)", "db-dtypes (>=0.3.0,<2.0.0dev)", "geopandas (>=0.9.0,<1.0dev)", "google-cloud-bigquery-storage (>=2.6.0,<3.0.0dev)", "grpcio (>=1.47.0,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "ipykernel (>=6.0.0)", "ipython (>=7.23.1,!=8.1.0)", "ipywidgets (>=7.7.0)", "opentelemetry-api (>=1.1.0)", "opentelemetry-instrumentation (>=0.20b0)", "opentelemetry-sdk (>=1.1.0)", "pandas (>=1.1.0)", "pyarrow (>=3.0.0)", "tqdm (>=4.7.4,<5.0.0dev)"] +bqstorage = ["google-cloud-bigquery-storage (>=2.6.0,<3.0.0dev)", "grpcio (>=1.47.0,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "pyarrow (>=3.0.0)"] +geopandas = ["Shapely (>=1.8.4,<2.0dev)", "geopandas (>=0.9.0,<1.0dev)"] +ipython = ["ipykernel (>=6.0.0)", "ipython (>=7.23.1,!=8.1.0)"] +ipywidgets = ["ipykernel (>=6.0.0)", "ipywidgets (>=7.7.0)"] +opentelemetry = ["opentelemetry-api (>=1.1.0)", "opentelemetry-instrumentation (>=0.20b0)", "opentelemetry-sdk (>=1.1.0)"] +pandas = ["db-dtypes (>=0.3.0,<2.0.0dev)", "pandas (>=1.1.0)", "pyarrow (>=3.0.0)"] +tqdm = ["tqdm (>=4.7.4,<5.0.0dev)"] + +[[package]] +name = "google-cloud-core" +version = "2.3.3" +description = "Google Cloud API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-cloud-core-2.3.3.tar.gz", hash = "sha256:37b80273c8d7eee1ae816b3a20ae43585ea50506cb0e60f3cf5be5f87f1373cb"}, + {file = "google_cloud_core-2.3.3-py2.py3-none-any.whl", hash = "sha256:fbd11cad3e98a7e5b0343dc07cb1039a5ffd7a5bb96e1f1e27cee4bda4a90863"}, +] + +[package.dependencies] +google-api-core = ">=1.31.6,<2.0.dev0 || >2.3.0,<3.0.0dev" +google-auth = ">=1.25.0,<3.0dev" + +[package.extras] +grpc = ["grpcio (>=1.38.0,<2.0dev)"] + +[[package]] +name = "google-crc32c" +version = "1.5.0" +description = "A python wrapper of the C library 'Google CRC32C'" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, + {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, + {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:be82c3c8cfb15b30f36768797a640e800513793d6ae1724aaaafe5bf86f8f346"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:461665ff58895f508e2866824a47bdee72497b091c730071f2b7575d5762ab65"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2096eddb4e7c7bdae4bd69ad364e55e07b8316653234a56552d9c988bd2d61b"}, + {file = "google_crc32c-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:116a7c3c616dd14a3de8c64a965828b197e5f2d121fedd2f8c5585c547e87b02"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5829b792bf5822fd0a6f6eb34c5f81dd074f01d570ed7f36aa101d6fc7a0a6e4"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:64e52e2b3970bd891309c113b54cf0e4384762c934d5ae56e283f9a0afcd953e"}, + {file = "google_crc32c-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:02ebb8bf46c13e36998aeaad1de9b48f4caf545e91d14041270d9dca767b780c"}, + {file = "google_crc32c-1.5.0-cp310-cp310-win32.whl", hash = "sha256:2e920d506ec85eb4ba50cd4228c2bec05642894d4c73c59b3a2fe20346bd00ee"}, + {file = "google_crc32c-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:07eb3c611ce363c51a933bf6bd7f8e3878a51d124acfc89452a75120bc436289"}, + {file = "google_crc32c-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cae0274952c079886567f3f4f685bcaf5708f0a23a5f5216fdab71f81a6c0273"}, + {file = "google_crc32c-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1034d91442ead5a95b5aaef90dbfaca8633b0247d1e41621d1e9f9db88c36298"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c42c70cd1d362284289c6273adda4c6af8039a8ae12dc451dcd61cdabb8ab57"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8485b340a6a9e76c62a7dce3c98e5f102c9219f4cfbf896a00cf48caf078d438"}, + {file = "google_crc32c-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77e2fd3057c9d78e225fa0a2160f96b64a824de17840351b26825b0848022906"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f583edb943cf2e09c60441b910d6a20b4d9d626c75a36c8fcac01a6c96c01183"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:a1fd716e7a01f8e717490fbe2e431d2905ab8aa598b9b12f8d10abebb36b04dd"}, + {file = "google_crc32c-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:72218785ce41b9cfd2fc1d6a017dc1ff7acfc4c17d01053265c41a2c0cc39b8c"}, + {file = "google_crc32c-1.5.0-cp311-cp311-win32.whl", hash = "sha256:66741ef4ee08ea0b2cc3c86916ab66b6aef03768525627fd6a1b34968b4e3709"}, + {file = "google_crc32c-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:ba1eb1843304b1e5537e1fca632fa894d6f6deca8d6389636ee5b4797affb968"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:98cb4d057f285bd80d8778ebc4fde6b4d509ac3f331758fb1528b733215443ae"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd8536e902db7e365f49e7d9029283403974ccf29b13fc7028b97e2295b33556"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19e0a019d2c4dcc5e598cd4a4bc7b008546b0358bd322537c74ad47a5386884f"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c65b9817512edc6a4ae7c7e987fea799d2e0ee40c53ec573a692bee24de876"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6ac08d24c1f16bd2bf5eca8eaf8304812f44af5cfe5062006ec676e7e1d50afc"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3359fc442a743e870f4588fcf5dcbc1bf929df1fad8fb9905cd94e5edb02e84c"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e986b206dae4476f41bcec1faa057851f3889503a70e1bdb2378d406223994a"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:de06adc872bcd8c2a4e0dc51250e9e65ef2ca91be023b9d13ebd67c2ba552e1e"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-win32.whl", hash = "sha256:d3515f198eaa2f0ed49f8819d5732d70698c3fa37384146079b3799b97667a94"}, + {file = "google_crc32c-1.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:67b741654b851abafb7bc625b6d1cdd520a379074e64b6a128e3b688c3c04740"}, + {file = "google_crc32c-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c02ec1c5856179f171e032a31d6f8bf84e5a75c45c33b2e20a3de353b266ebd8"}, + {file = "google_crc32c-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:edfedb64740750e1a3b16152620220f51d58ff1b4abceb339ca92e934775c27a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84e6e8cd997930fc66d5bb4fde61e2b62ba19d62b7abd7a69920406f9ecca946"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:024894d9d3cfbc5943f8f230e23950cd4906b2fe004c72e29b209420a1e6b05a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:998679bf62b7fb599d2878aa3ed06b9ce688b8974893e7223c60db155f26bd8d"}, + {file = "google_crc32c-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:83c681c526a3439b5cf94f7420471705bbf96262f49a6fe546a6db5f687a3d4a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4c6fdd4fccbec90cc8a01fc00773fcd5fa28db683c116ee3cb35cd5da9ef6c37"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5ae44e10a8e3407dbe138984f21e536583f2bba1be9491239f942c2464ac0894"}, + {file = "google_crc32c-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37933ec6e693e51a5b07505bd05de57eee12f3e8c32b07da7e73669398e6630a"}, + {file = "google_crc32c-1.5.0-cp38-cp38-win32.whl", hash = "sha256:fe70e325aa68fa4b5edf7d1a4b6f691eb04bbccac0ace68e34820d283b5f80d4"}, + {file = "google_crc32c-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:74dea7751d98034887dbd821b7aae3e1d36eda111d6ca36c206c44478035709c"}, + {file = "google_crc32c-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c6c777a480337ac14f38564ac88ae82d4cd238bf293f0a22295b66eb89ffced7"}, + {file = "google_crc32c-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:759ce4851a4bb15ecabae28f4d2e18983c244eddd767f560165563bf9aefbc8d"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f13cae8cc389a440def0c8c52057f37359014ccbc9dc1f0827936bcd367c6100"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e560628513ed34759456a416bf86b54b2476c59144a9138165c9a1575801d0d9"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1674e4307fa3024fc897ca774e9c7562c957af85df55efe2988ed9056dc4e57"}, + {file = "google_crc32c-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:278d2ed7c16cfc075c91378c4f47924c0625f5fc84b2d50d921b18b7975bd210"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d5280312b9af0976231f9e317c20e4a61cd2f9629b7bfea6a693d1878a264ebd"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:8b87e1a59c38f275c0e3676fc2ab6d59eccecfd460be267ac360cc31f7bcde96"}, + {file = "google_crc32c-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7c074fece789b5034b9b1404a1f8208fc2d4c6ce9decdd16e8220c5a793e6f61"}, + {file = "google_crc32c-1.5.0-cp39-cp39-win32.whl", hash = "sha256:7f57f14606cd1dd0f0de396e1e53824c371e9544a822648cd76c034d209b559c"}, + {file = "google_crc32c-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2355cba1f4ad8b6988a4ca3feed5bff33f6af2d7f134852cf279c2aebfde541"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f314013e7dcd5cf45ab1945d92e713eec788166262ae8deb2cfacd53def27325"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b747a674c20a67343cb61d43fdd9207ce5da6a99f629c6e2541aa0e89215bcd"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8f24ed114432de109aa9fd317278518a5af2d31ac2ea6b952b2f7782b43da091"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8667b48e7a7ef66afba2c81e1094ef526388d35b873966d8a9a447974ed9178"}, + {file = "google_crc32c-1.5.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:1c7abdac90433b09bad6c43a43af253e688c9cfc1c86d332aed13f9a7c7f65e2"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6f998db4e71b645350b9ac28a2167e6632c239963ca9da411523bb439c5c514d"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c99616c853bb585301df6de07ca2cadad344fd1ada6d62bb30aec05219c45d2"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ad40e31093a4af319dadf503b2467ccdc8f67c72e4bcba97f8c10cb078207b5"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd67cf24a553339d5062eff51013780a00d6f97a39ca062781d06b3a73b15462"}, + {file = "google_crc32c-1.5.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:398af5e3ba9cf768787eef45c803ff9614cc3e22a5b2f7d7ae116df8b11e3314"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b1f8133c9a275df5613a451e73f36c2aea4fe13c5c8997e22cf355ebd7bd0728"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ba053c5f50430a3fcfd36f75aff9caeba0440b2d076afdb79a318d6ca245f88"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:272d3892a1e1a2dbc39cc5cde96834c236d5327e2122d3aaa19f6614531bb6eb"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:635f5d4dd18758a1fbd1049a8e8d2fee4ffed124462d837d1a02a0e009c3ab31"}, + {file = "google_crc32c-1.5.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c672d99a345849301784604bfeaeba4db0c7aae50b95be04dd651fd2a7310b93"}, +] + +[package.extras] +testing = ["pytest"] + +[[package]] +name = "google-resumable-media" +version = "2.5.0" +description = "Utilities for Google Media Downloads and Resumable Uploads" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "google-resumable-media-2.5.0.tar.gz", hash = "sha256:218931e8e2b2a73a58eb354a288e03a0fd5fb1c4583261ac6e4c078666468c93"}, + {file = "google_resumable_media-2.5.0-py2.py3-none-any.whl", hash = "sha256:da1bd943e2e114a56d85d6848497ebf9be6a14d3db23e9fc57581e7c3e8170ec"}, +] + +[package.dependencies] +google-crc32c = ">=1.0,<2.0dev" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0dev)"] +requests = ["requests (>=2.18.0,<3.0.0dev)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.60.0" +description = "Common protobufs used in Google APIs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.60.0.tar.gz", hash = "sha256:e73ebb404098db405ba95d1e1ae0aa91c3e15a71da031a2eeb6b2e23e7bc3708"}, + {file = "googleapis_common_protos-1.60.0-py2.py3-none-any.whl", hash = "sha256:69f9bbcc6acde92cab2db95ce30a70bd2b81d20b12eff3f1aabaffcbe8a93918"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] + +[[package]] +name = "grpcio" +version = "1.57.0" +description = "HTTP/2-based RPC framework" +optional = false +python-versions = ">=3.7" +files = [ + {file = "grpcio-1.57.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:092fa155b945015754bdf988be47793c377b52b88d546e45c6a9f9579ac7f7b6"}, + {file = "grpcio-1.57.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:2f7349786da979a94690cc5c2b804cab4e8774a3cf59be40d037c4342c906649"}, + {file = "grpcio-1.57.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:82640e57fb86ea1d71ea9ab54f7e942502cf98a429a200b2e743d8672171734f"}, + {file = "grpcio-1.57.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40b72effd4c789de94ce1be2b5f88d7b9b5f7379fe9645f198854112a6567d9a"}, + {file = "grpcio-1.57.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f708a6a17868ad8bf586598bee69abded4996b18adf26fd2d91191383b79019"}, + {file = "grpcio-1.57.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:60fe15288a0a65d5c1cb5b4a62b1850d07336e3ba728257a810317be14f0c527"}, + {file = "grpcio-1.57.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6907b1cf8bb29b058081d2aad677b15757a44ef2d4d8d9130271d2ad5e33efca"}, + {file = "grpcio-1.57.0-cp310-cp310-win32.whl", hash = "sha256:57b183e8b252825c4dd29114d6c13559be95387aafc10a7be645462a0fc98bbb"}, + {file = "grpcio-1.57.0-cp310-cp310-win_amd64.whl", hash = "sha256:7b400807fa749a9eb286e2cd893e501b110b4d356a218426cb9c825a0474ca56"}, + {file = "grpcio-1.57.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:c6ebecfb7a31385393203eb04ed8b6a08f5002f53df3d59e5e795edb80999652"}, + {file = "grpcio-1.57.0-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:00258cbe3f5188629828363ae8ff78477ce976a6f63fb2bb5e90088396faa82e"}, + {file = "grpcio-1.57.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:23e7d8849a0e58b806253fd206ac105b328171e01b8f18c7d5922274958cc87e"}, + {file = "grpcio-1.57.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5371bcd861e679d63b8274f73ac281751d34bd54eccdbfcd6aa00e692a82cd7b"}, + {file = "grpcio-1.57.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aed90d93b731929e742967e236f842a4a2174dc5db077c8f9ad2c5996f89f63e"}, + {file = "grpcio-1.57.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:fe752639919aad9ffb0dee0d87f29a6467d1ef764f13c4644d212a9a853a078d"}, + {file = "grpcio-1.57.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fada6b07ec4f0befe05218181f4b85176f11d531911b64c715d1875c4736d73a"}, + {file = "grpcio-1.57.0-cp311-cp311-win32.whl", hash = "sha256:bb396952cfa7ad2f01061fbc7dc1ad91dd9d69243bcb8110cf4e36924785a0fe"}, + {file = "grpcio-1.57.0-cp311-cp311-win_amd64.whl", hash = "sha256:e503cb45ed12b924b5b988ba9576dc9949b2f5283b8e33b21dcb6be74a7c58d0"}, + {file = "grpcio-1.57.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:fd173b4cf02b20f60860dc2ffe30115c18972d7d6d2d69df97ac38dee03be5bf"}, + {file = "grpcio-1.57.0-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:d7f8df114d6b4cf5a916b98389aeaf1e3132035420a88beea4e3d977e5f267a5"}, + {file = "grpcio-1.57.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:76c44efa4ede1f42a9d5b2fed1fe9377e73a109bef8675fb0728eb80b0b8e8f2"}, + {file = "grpcio-1.57.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4faea2cfdf762a664ab90589b66f416274887641ae17817de510b8178356bf73"}, + {file = "grpcio-1.57.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c60b83c43faeb6d0a9831f0351d7787a0753f5087cc6fa218d78fdf38e5acef0"}, + {file = "grpcio-1.57.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b363bbb5253e5f9c23d8a0a034dfdf1b7c9e7f12e602fc788c435171e96daccc"}, + {file = "grpcio-1.57.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:f1fb0fd4a1e9b11ac21c30c169d169ef434c6e9344ee0ab27cfa6f605f6387b2"}, + {file = "grpcio-1.57.0-cp37-cp37m-win_amd64.whl", hash = "sha256:34950353539e7d93f61c6796a007c705d663f3be41166358e3d88c45760c7d98"}, + {file = "grpcio-1.57.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:871f9999e0211f9551f368612460442a5436d9444606184652117d6a688c9f51"}, + {file = "grpcio-1.57.0-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:a8a8e560e8dbbdf29288872e91efd22af71e88b0e5736b0daf7773c1fecd99f0"}, + {file = "grpcio-1.57.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:2313b124e475aa9017a9844bdc5eafb2d5abdda9d456af16fc4535408c7d6da6"}, + {file = "grpcio-1.57.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b4098b6b638d9e0ca839a81656a2fd4bc26c9486ea707e8b1437d6f9d61c3941"}, + {file = "grpcio-1.57.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e5b58e32ae14658085c16986d11e99abd002ddbf51c8daae8a0671fffb3467f"}, + {file = "grpcio-1.57.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0f80bf37f09e1caba6a8063e56e2b87fa335add314cf2b78ebf7cb45aa7e3d06"}, + {file = "grpcio-1.57.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5b7a4ce8f862fe32b2a10b57752cf3169f5fe2915acfe7e6a1e155db3da99e79"}, + {file = "grpcio-1.57.0-cp38-cp38-win32.whl", hash = "sha256:9338bacf172e942e62e5889b6364e56657fbf8ac68062e8b25c48843e7b202bb"}, + {file = "grpcio-1.57.0-cp38-cp38-win_amd64.whl", hash = "sha256:e1cb52fa2d67d7f7fab310b600f22ce1ff04d562d46e9e0ac3e3403c2bb4cc16"}, + {file = "grpcio-1.57.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:fee387d2fab144e8a34e0e9c5ca0f45c9376b99de45628265cfa9886b1dbe62b"}, + {file = "grpcio-1.57.0-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:b53333627283e7241fcc217323f225c37783b5f0472316edcaa4479a213abfa6"}, + {file = "grpcio-1.57.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:f19ac6ac0a256cf77d3cc926ef0b4e64a9725cc612f97228cd5dc4bd9dbab03b"}, + {file = "grpcio-1.57.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3fdf04e402f12e1de8074458549337febb3b45f21076cc02ef4ff786aff687e"}, + {file = "grpcio-1.57.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5613a2fecc82f95d6c51d15b9a72705553aa0d7c932fad7aed7afb51dc982ee5"}, + {file = "grpcio-1.57.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b670c2faa92124b7397b42303e4d8eb64a4cd0b7a77e35a9e865a55d61c57ef9"}, + {file = "grpcio-1.57.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a635589201b18510ff988161b7b573f50c6a48fae9cb567657920ca82022b37"}, + {file = "grpcio-1.57.0-cp39-cp39-win32.whl", hash = "sha256:d78d8b86fcdfa1e4c21f8896614b6cc7ee01a2a758ec0c4382d662f2a62cf766"}, + {file = "grpcio-1.57.0-cp39-cp39-win_amd64.whl", hash = "sha256:20ec6fc4ad47d1b6e12deec5045ec3cd5402d9a1597f738263e98f490fe07056"}, + {file = "grpcio-1.57.0.tar.gz", hash = "sha256:4b089f7ad1eb00a104078bab8015b0ed0ebcb3b589e527ab009c53893fd4e613"}, +] + +[package.extras] +protobuf = ["grpcio-tools (>=1.57.0)"] + +[[package]] +name = "grpcio-status" +version = "1.57.0" +description = "Status proto mapping for gRPC" +optional = false +python-versions = ">=3.6" +files = [ + {file = "grpcio-status-1.57.0.tar.gz", hash = "sha256:b098da99df1eebe58337f8f78e50df990273ccacc1226fddeb47c590e3df9e02"}, + {file = "grpcio_status-1.57.0-py3-none-any.whl", hash = "sha256:15d6af055914ebbc4ed17e55ebfb8e6bb17a45a57fea32e6af19978fb7844690"}, +] + +[package.dependencies] +googleapis-common-protos = ">=1.5.5" +grpcio = ">=1.57.0" +protobuf = ">=4.21.6" + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "proto-plus" +version = "1.22.3" +description = "Beautiful, Pythonic protocol buffers." +optional = false +python-versions = ">=3.6" +files = [ + {file = "proto-plus-1.22.3.tar.gz", hash = "sha256:fdcd09713cbd42480740d2fe29c990f7fbd885a67efc328aa8be6ee3e9f76a6b"}, + {file = "proto_plus-1.22.3-py3-none-any.whl", hash = "sha256:a49cd903bc0b6ab41f76bf65510439d56ca76f868adf0274e738bfdd096894df"}, +] + +[package.dependencies] +protobuf = ">=3.19.0,<5.0.0dev" + +[package.extras] +testing = ["google-api-core[grpc] (>=1.31.5)"] + +[[package]] +name = "protobuf" +version = "4.24.0" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.24.0-cp310-abi3-win32.whl", hash = "sha256:81cb9c4621d2abfe181154354f63af1c41b00a4882fb230b4425cbaed65e8f52"}, + {file = "protobuf-4.24.0-cp310-abi3-win_amd64.whl", hash = "sha256:6c817cf4a26334625a1904b38523d1b343ff8b637d75d2c8790189a4064e51c3"}, + {file = "protobuf-4.24.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:ae97b5de10f25b7a443b40427033e545a32b0e9dda17bcd8330d70033379b3e5"}, + {file = "protobuf-4.24.0-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:567fe6b0647494845d0849e3d5b260bfdd75692bf452cdc9cb660d12457c055d"}, + {file = "protobuf-4.24.0-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:a6b1ca92ccabfd9903c0c7dde8876221dc7d8d87ad5c42e095cc11b15d3569c7"}, + {file = "protobuf-4.24.0-cp37-cp37m-win32.whl", hash = "sha256:a38400a692fd0c6944c3c58837d112f135eb1ed6cdad5ca6c5763336e74f1a04"}, + {file = "protobuf-4.24.0-cp37-cp37m-win_amd64.whl", hash = "sha256:5ab19ee50037d4b663c02218a811a5e1e7bb30940c79aac385b96e7a4f9daa61"}, + {file = "protobuf-4.24.0-cp38-cp38-win32.whl", hash = "sha256:e8834ef0b4c88666ebb7c7ec18045aa0f4325481d724daa624a4cf9f28134653"}, + {file = "protobuf-4.24.0-cp38-cp38-win_amd64.whl", hash = "sha256:8bb52a2be32db82ddc623aefcedfe1e0eb51da60e18fcc908fb8885c81d72109"}, + {file = "protobuf-4.24.0-cp39-cp39-win32.whl", hash = "sha256:ae7a1835721086013de193311df858bc12cd247abe4ef9710b715d930b95b33e"}, + {file = "protobuf-4.24.0-cp39-cp39-win_amd64.whl", hash = "sha256:44825e963008f8ea0d26c51911c30d3e82e122997c3c4568fd0385dd7bacaedf"}, + {file = "protobuf-4.24.0-py3-none-any.whl", hash = "sha256:82e6e9ebdd15b8200e8423676eab38b774624d6a1ad696a60d86a2ac93f18201"}, + {file = "protobuf-4.24.0.tar.gz", hash = "sha256:5d0ceb9de6e08311832169e601d1fc71bd8e8c779f3ee38a97a78554945ecb85"}, +] + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "soupsieve" +version = "2.4.1" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "soupsieve-2.4.1-py3-none-any.whl", hash = "sha256:1c1bfee6819544a3447586c889157365a27e10d88cde3ad3da0cf0ddf646feb8"}, + {file = "soupsieve-2.4.1.tar.gz", hash = "sha256:89d12b2d5dfcd2c9e8c22326da9d9aa9cb3dfab0a83a024f05704076ee8d35ea"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "15d1b26107b0a4035869f4778763d53628704dd00ee51fa71e60f066bd95ee38" diff --git a/bigquery/provider/__init__.py b/bigquery/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/bigquery/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/bigquery/provider/app.py b/bigquery/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/bigquery/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/bigquery/provider/client.py b/bigquery/provider/client.py new file mode 100644 index 000000000..47e484117 --- /dev/null +++ b/bigquery/provider/client.py @@ -0,0 +1,26 @@ +import os +from google.cloud import bigquery +from . import UpstreamProviderError + +CREDENTIALS_FILE_PATH = "./credentials.json" + + +def get_client(): + """ + Google BigQuery API client requires user to authenticate with a + service account's credentials. Make sure to see the README for details. + """ + + assert os.path.exists( + CREDENTIALS_FILE_PATH + ), f"credentials.json must be created at {CREDENTIALS_FILE_PATH}, see README" + + try: + client = bigquery.Client.from_service_account_json(CREDENTIALS_FILE_PATH) + except Exception as e: + message = ( + "Error authenticating BigQuery client with the provided credentials.json" + ) + raise UpstreamProviderError(message) + + return client diff --git a/bigquery/provider/provider.py b/bigquery/provider/provider.py new file mode 100644 index 000000000..80d25061d --- /dev/null +++ b/bigquery/provider/provider.py @@ -0,0 +1,56 @@ +import logging + +import os +from typing import Any + +from .client import get_client + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BIGQUERY_TABLE_NAME = os.environ.get("BIGQUERY_TABLE_NAME") +BIGQUERY_COLUMN_NAME = os.environ.get("BIGQUERY_COLUMN_NAME") + +""" +Explanation: BigQuery SQL's most search-like feature is REGEXP_CONTAINS. +This method builds the regex to support it. + +(?i): enables case-insensitive matching +.*.*: enables partial matching +|: enables multiple terms +""" + + +def build_regex(query) -> str: + # Assumes query delimiter is whitespace + search_terms = query.split(" ") + separator = ".*|.*" + + return f"(?i).*{separator.join(search_terms)}.*" + + +def search(query) -> list[dict[str, Any]]: + client = get_client() + + regex = build_regex(query) + + QUERY = f""" + SELECT * from {BIGQUERY_TABLE_NAME} + WHERE REGEXP_CONTAINS({BIGQUERY_COLUMN_NAME}, r'{regex}'); + """ + + try: + # API request, returns async job + query_job = client.query(QUERY) + # Wait for async job completion + rows = query_job.result() + except Exception as e: + message = f"Encountered exception: `{str(e)}` during BigQuery query." + raise UpstreamProviderError(message) + + # Convert response to array of dictionaries + records = [dict(row) for row in rows] + + return records diff --git a/bigquery/pyproject.toml b/bigquery/pyproject.toml new file mode 100644 index 000000000..5f0c32d5d --- /dev/null +++ b/bigquery/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "bigquery" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +google = "^3.0.0" +google-cloud-bigquery = "^3.11.4" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/blogger/.env-template b/blogger/.env-template new file mode 100644 index 000000000..7d0f8c55c --- /dev/null +++ b/blogger/.env-template @@ -0,0 +1,2 @@ +BLOGGER_USER_ACCOUNT_INFO= +BLOGGER_CONNECTOR_API_KEY= diff --git a/blogger/.gitignore b/blogger/.gitignore new file mode 100644 index 000000000..f5c20a528 --- /dev/null +++ b/blogger/.gitignore @@ -0,0 +1,3 @@ +credentials.json +token.json + diff --git a/blogger/README.md b/blogger/README.md new file mode 100644 index 000000000..c45408b9a --- /dev/null +++ b/blogger/README.md @@ -0,0 +1,58 @@ +# Google Blogger Connector + +This package is a utility for connecting Cohere to Google Blogger. + +## Configuration + +The search connector requires the following environment variables: + +``` +BLOGGER_USER_ACCOUNT_INFO +``` + +This variable should contain the JSON content of the user account credentials file. +To get this file use instructions from [here](https://developers.google.com/blogger/docs/3.0/using#auth). + +``` +BLOGGER_CONNECTOR_API_KEY +``` + +**Note:** You should download credentials file in JSON format. +You will also need a `token.json` file in order to use this connector. If this +application is run on a desktop OS, outside of the Docker container, and there is +no `token.json` file found, it will open a browser window with a Google OAuth +authorization page. Once the app is authorized, the search connector will save a +`token.json` file with the response. + +This will only work if a browser is available, however. When running on a server or in +a Docker container, then the `token.json` file will need to be saved another way +(such as through CI build tools). + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Next, start up the search provider server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/blogger/poetry.lock b/blogger/poetry.lock new file mode 100644 index 000000000..81082e88a --- /dev/null +++ b/blogger/poetry.lock @@ -0,0 +1,1453 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "async-timeout" +version = "4.0.3" +description = "Timeout context manager for asyncio programs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachetools" +version = "5.3.1" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, + {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "google-api-core" +version = "2.11.1" +description = "Google API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.11.1.tar.gz", hash = "sha256:25d29e05a0058ed5f19c61c0a78b1b53adea4d9364b464d014fbda941f6d1c9a"}, + {file = "google_api_core-2.11.1-py3-none-any.whl", hash = "sha256:d92a5a92dc36dd4f4b9ee4e55528a90e432b059f93aee6ad857f9de8cc7ae94a"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] + +[[package]] +name = "google-api-python-client" +version = "2.100.0" +description = "Google API Client Library for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-python-client-2.100.0.tar.gz", hash = "sha256:eaed50efc2f8a4027dcca8fd0037f4b1b03b8093efc84ce3cb6c75bfc79a7e31"}, + {file = "google_api_python_client-2.100.0-py2.py3-none-any.whl", hash = "sha256:226ca35355993d6182506c51745ab5149405cdf6a92975b2725ab3e0d757dbe9"}, +] + +[package.dependencies] +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0.dev0" +google-auth = ">=1.19.0,<3.0.0.dev0" +google-auth-httplib2 = ">=0.1.0" +httplib2 = ">=0.15.0,<1.dev0" +uritemplate = ">=3.0.1,<5" + +[[package]] +name = "google-auth" +version = "2.23.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-auth-2.23.0.tar.gz", hash = "sha256:753a26312e6f1eaeec20bc6f2644a10926697da93446e1f8e24d6d32d45a922a"}, + {file = "google_auth-2.23.0-py2.py3-none-any.whl", hash = "sha256:2cec41407bd1e207f5b802638e32bb837df968bb5c05f413d0fa526fac4cf7a7"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = ">=3.1.4,<5" +urllib3 = "<2.0" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] + +[[package]] +name = "google-auth-httplib2" +version = "0.1.1" +description = "Google Authentication Library: httplib2 transport" +optional = false +python-versions = "*" +files = [ + {file = "google-auth-httplib2-0.1.1.tar.gz", hash = "sha256:c64bc555fdc6dd788ea62ecf7bccffcf497bf77244887a3f3d7a5a02f8e3fc29"}, + {file = "google_auth_httplib2-0.1.1-py2.py3-none-any.whl", hash = "sha256:42c50900b8e4dcdf8222364d1f0efe32b8421fb6ed72f2613f12f75cc933478c"}, +] + +[package.dependencies] +google-auth = "*" +httplib2 = ">=0.19.0" + +[[package]] +name = "google-auth-oauthlib" +version = "1.1.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "google-auth-oauthlib-1.1.0.tar.gz", hash = "sha256:83ea8c3b0881e453790baff4448e8a6112ac8778d1de9da0b68010b843937afb"}, + {file = "google_auth_oauthlib-1.1.0-py2.py3-none-any.whl", hash = "sha256:089c6e587d36f4803ac7e0720c045c6a8b1fd1790088b8424975b90d0ee61c12"}, +] + +[package.dependencies] +google-auth = ">=2.15.0" +requests-oauthlib = ">=0.7.0" + +[package.extras] +tool = ["click (>=6.0.0)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.60.0" +description = "Common protobufs used in Google APIs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.60.0.tar.gz", hash = "sha256:e73ebb404098db405ba95d1e1ae0aa91c3e15a71da031a2eeb6b2e23e7bc3708"}, + {file = "googleapis_common_protos-1.60.0-py2.py3-none-any.whl", hash = "sha256:69f9bbcc6acde92cab2db95ce30a70bd2b81d20b12eff3f1aabaffcbe8a93918"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "httplib2" +version = "0.22.0" +description = "A comprehensive HTTP client library." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc"}, + {file = "httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81"}, +] + +[package.dependencies] +pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0.2,<3.0.3 || >3.0.3,<4", markers = "python_version > \"3.0\""} + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "mypy" +version = "1.5.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "protobuf" +version = "4.24.3" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.24.3-cp310-abi3-win32.whl", hash = "sha256:20651f11b6adc70c0f29efbe8f4a94a74caf61b6200472a9aea6e19898f9fcf4"}, + {file = "protobuf-4.24.3-cp310-abi3-win_amd64.whl", hash = "sha256:3d42e9e4796a811478c783ef63dc85b5a104b44aaaca85d4864d5b886e4b05e3"}, + {file = "protobuf-4.24.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:6e514e8af0045be2b56e56ae1bb14f43ce7ffa0f68b1c793670ccbe2c4fc7d2b"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:ba53c2f04798a326774f0e53b9c759eaef4f6a568ea7072ec6629851c8435959"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:f6ccbcf027761a2978c1406070c3788f6de4a4b2cc20800cc03d52df716ad675"}, + {file = "protobuf-4.24.3-cp37-cp37m-win32.whl", hash = "sha256:1b182c7181a2891e8f7f3a1b5242e4ec54d1f42582485a896e4de81aa17540c2"}, + {file = "protobuf-4.24.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b0271a701e6782880d65a308ba42bc43874dabd1a0a0f41f72d2dac3b57f8e76"}, + {file = "protobuf-4.24.3-cp38-cp38-win32.whl", hash = "sha256:e29d79c913f17a60cf17c626f1041e5288e9885c8579832580209de8b75f2a52"}, + {file = "protobuf-4.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:067f750169bc644da2e1ef18c785e85071b7c296f14ac53e0900e605da588719"}, + {file = "protobuf-4.24.3-cp39-cp39-win32.whl", hash = "sha256:2da777d34b4f4f7613cdf85c70eb9a90b1fbef9d36ae4a0ccfe014b0b07906f1"}, + {file = "protobuf-4.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:f631bb982c5478e0c1c70eab383af74a84be66945ebf5dd6b06fc90079668d0b"}, + {file = "protobuf-4.24.3-py3-none-any.whl", hash = "sha256:f6f8dc65625dadaad0c8545319c2e2f0424fede988368893ca3844261342c11a"}, + {file = "protobuf-4.24.3.tar.gz", hash = "sha256:12e9ad2ec079b833176d2921be2cb24281fa591f0b119b208b788adc48c2561d"}, +] + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "pyparsing" +version = "3.1.1" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, + {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.10.3" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.3-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:485747ee62da83366a44fbba963c5fe017860ad408ccd6cd99aa66ea80d32b2e"}, + {file = "rpds_py-0.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c55f9821f88e8bee4b7a72c82cfb5ecd22b6aad04033334f33c329b29bfa4da0"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3b52a67ac66a3a64a7e710ba629f62d1e26ca0504c29ee8cbd99b97df7079a8"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3aed39db2f0ace76faa94f465d4234aac72e2f32b009f15da6492a561b3bbebd"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271c360fdc464fe6a75f13ea0c08ddf71a321f4c55fc20a3fe62ea3ef09df7d9"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef5fddfb264e89c435be4adb3953cef5d2936fdeb4463b4161a6ba2f22e7b740"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771417c9c06c56c9d53d11a5b084d1de75de82978e23c544270ab25e7c066ff"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:52b5cbc0469328e58180021138207e6ec91d7ca2e037d3549cc9e34e2187330a"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6ac3fefb0d168c7c6cab24fdfc80ec62cd2b4dfd9e65b84bdceb1cb01d385c33"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8d54bbdf5d56e2c8cf81a1857250f3ea132de77af543d0ba5dce667183b61fec"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cd2163f42868865597d89399a01aa33b7594ce8e2c4a28503127c81a2f17784e"}, + {file = "rpds_py-0.10.3-cp310-none-win32.whl", hash = "sha256:ea93163472db26ac6043e8f7f93a05d9b59e0505c760da2a3cd22c7dd7111391"}, + {file = "rpds_py-0.10.3-cp310-none-win_amd64.whl", hash = "sha256:7cd020b1fb41e3ab7716d4d2c3972d4588fdfbab9bfbbb64acc7078eccef8860"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:1d9b5ee46dcb498fa3e46d4dfabcb531e1f2e76b477e0d99ef114f17bbd38453"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:563646d74a4b4456d0cf3b714ca522e725243c603e8254ad85c3b59b7c0c4bf0"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e626b864725680cd3904414d72e7b0bd81c0e5b2b53a5b30b4273034253bb41f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:485301ee56ce87a51ccb182a4b180d852c5cb2b3cb3a82f7d4714b4141119d8c"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:42f712b4668831c0cd85e0a5b5a308700fe068e37dcd24c0062904c4e372b093"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c9141af27a4e5819d74d67d227d5047a20fa3c7d4d9df43037a955b4c748ec5"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef750a20de1b65657a1425f77c525b0183eac63fe7b8f5ac0dd16f3668d3e64f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1a0ffc39f51aa5f5c22114a8f1906b3c17eba68c5babb86c5f77d8b1bba14d1"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f4c179a7aeae10ddf44c6bac87938134c1379c49c884529f090f9bf05566c836"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:176287bb998fd1e9846a9b666e240e58f8d3373e3bf87e7642f15af5405187b8"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6446002739ca29249f0beaaf067fcbc2b5aab4bc7ee8fb941bd194947ce19aff"}, + {file = "rpds_py-0.10.3-cp311-none-win32.whl", hash = "sha256:c7aed97f2e676561416c927b063802c8a6285e9b55e1b83213dfd99a8f4f9e48"}, + {file = "rpds_py-0.10.3-cp311-none-win_amd64.whl", hash = "sha256:8bd01ff4032abaed03f2db702fa9a61078bee37add0bd884a6190b05e63b028c"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:4cf0855a842c5b5c391dd32ca273b09e86abf8367572073bd1edfc52bc44446b"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:69b857a7d8bd4f5d6e0db4086da8c46309a26e8cefdfc778c0c5cc17d4b11e08"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:975382d9aa90dc59253d6a83a5ca72e07f4ada3ae3d6c0575ced513db322b8ec"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35fbd23c1c8732cde7a94abe7fb071ec173c2f58c0bd0d7e5b669fdfc80a2c7b"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:106af1653007cc569d5fbb5f08c6648a49fe4de74c2df814e234e282ebc06957"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ce5e7504db95b76fc89055c7f41e367eaadef5b1d059e27e1d6eabf2b55ca314"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aca759ada6b1967fcfd4336dcf460d02a8a23e6abe06e90ea7881e5c22c4de6"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5d4bdd697195f3876d134101c40c7d06d46c6ab25159ed5cbd44105c715278a"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a657250807b6efd19b28f5922520ae002a54cb43c2401e6f3d0230c352564d25"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:177c9dd834cdf4dc39c27436ade6fdf9fe81484758885f2d616d5d03c0a83bd2"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e22491d25f97199fc3581ad8dd8ce198d8c8fdb8dae80dea3512e1ce6d5fa99f"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:2f3e1867dd574014253b4b8f01ba443b9c914e61d45f3674e452a915d6e929a3"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c22211c165166de6683de8136229721f3d5c8606cc2c3d1562da9a3a5058049c"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40bc802a696887b14c002edd43c18082cb7b6f9ee8b838239b03b56574d97f71"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e271dd97c7bb8eefda5cca38cd0b0373a1fea50f71e8071376b46968582af9b"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:95cde244e7195b2c07ec9b73fa4c5026d4a27233451485caa1cd0c1b55f26dbd"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08a80cf4884920863623a9ee9a285ee04cef57ebedc1cc87b3e3e0f24c8acfe5"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763ad59e105fca09705d9f9b29ecffb95ecdc3b0363be3bb56081b2c6de7977a"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:187700668c018a7e76e89424b7c1042f317c8df9161f00c0c903c82b0a8cac5c"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5267cfda873ad62591b9332fd9472d2409f7cf02a34a9c9cb367e2c0255994bf"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:2ed83d53a8c5902ec48b90b2ac045e28e1698c0bea9441af9409fc844dc79496"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:255f1a10ae39b52122cce26ce0781f7a616f502feecce9e616976f6a87992d6b"}, + {file = "rpds_py-0.10.3-cp38-none-win32.whl", hash = "sha256:a019a344312d0b1f429c00d49c3be62fa273d4a1094e1b224f403716b6d03be1"}, + {file = "rpds_py-0.10.3-cp38-none-win_amd64.whl", hash = "sha256:efb9ece97e696bb56e31166a9dd7919f8f0c6b31967b454718c6509f29ef6fee"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:570cc326e78ff23dec7f41487aa9c3dffd02e5ee9ab43a8f6ccc3df8f9327623"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cff7351c251c7546407827b6a37bcef6416304fc54d12d44dbfecbb717064717"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:177914f81f66c86c012311f8c7f46887ec375cfcfd2a2f28233a3053ac93a569"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:448a66b8266de0b581246ca7cd6a73b8d98d15100fb7165974535fa3b577340e"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bbac1953c17252f9cc675bb19372444aadf0179b5df575ac4b56faaec9f6294"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9dd9d9d9e898b9d30683bdd2b6c1849449158647d1049a125879cb397ee9cd12"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c71ea77536149e36c4c784f6d420ffd20bea041e3ba21ed021cb40ce58e2c9"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16a472300bc6c83fe4c2072cc22b3972f90d718d56f241adabc7ae509f53f154"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9255e7165083de7c1d605e818025e8860636348f34a79d84ec533546064f07e"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:53d7a3cd46cdc1689296348cb05ffd4f4280035770aee0c8ead3bbd4d6529acc"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22da15b902f9f8e267020d1c8bcfc4831ca646fecb60254f7bc71763569f56b1"}, + {file = "rpds_py-0.10.3-cp39-none-win32.whl", hash = "sha256:850c272e0e0d1a5c5d73b1b7871b0a7c2446b304cec55ccdb3eaac0d792bb065"}, + {file = "rpds_py-0.10.3-cp39-none-win_amd64.whl", hash = "sha256:de61e424062173b4f70eec07e12469edde7e17fa180019a2a0d75c13a5c5dc57"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:af247fd4f12cca4129c1b82090244ea5a9d5bb089e9a82feb5a2f7c6a9fe181d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3ad59efe24a4d54c2742929001f2d02803aafc15d6d781c21379e3f7f66ec842"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642ed0a209ced4be3a46f8cb094f2d76f1f479e2a1ceca6de6346a096cd3409d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:37d0c59548ae56fae01c14998918d04ee0d5d3277363c10208eef8c4e2b68ed6"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad6ed9e70ddfb34d849b761fb243be58c735be6a9265b9060d6ddb77751e3e8"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f94fdd756ba1f79f988855d948ae0bad9ddf44df296770d9a58c774cfbcca72"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77076bdc8776a2b029e1e6ffbe6d7056e35f56f5e80d9dc0bad26ad4a024a762"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87d9b206b1bd7a0523375dc2020a6ce88bca5330682ae2fe25e86fd5d45cea9c"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8efaeb08ede95066da3a3e3c420fcc0a21693fcd0c4396d0585b019613d28515"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a4d9bfda3f84fc563868fe25ca160c8ff0e69bc4443c5647f960d59400ce6557"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d27aa6bbc1f33be920bb7adbb95581452cdf23005d5611b29a12bb6a3468cc95"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ed8313809571a5463fd7db43aaca68ecb43ca7a58f5b23b6e6c6c5d02bdc7882"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:e10e6a1ed2b8661201e79dff5531f8ad4cdd83548a0f81c95cf79b3184b20c33"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:015de2ce2af1586ff5dc873e804434185199a15f7d96920ce67e50604592cae9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae87137951bb3dc08c7d8bfb8988d8c119f3230731b08a71146e84aaa919a7a9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bb4f48bd0dd18eebe826395e6a48b7331291078a879295bae4e5d053be50d4c"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09362f86ec201288d5687d1dc476b07bf39c08478cde837cb710b302864e7ec9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821392559d37759caa67d622d0d2994c7a3f2fb29274948ac799d496d92bca73"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7170cbde4070dc3c77dec82abf86f3b210633d4f89550fa0ad2d4b549a05572a"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5de11c041486681ce854c814844f4ce3282b6ea1656faae19208ebe09d31c5b8"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:4ed172d0c79f156c1b954e99c03bc2e3033c17efce8dd1a7c781bc4d5793dfac"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:11fdd1192240dda8d6c5d18a06146e9045cb7e3ba7c06de6973000ff035df7c6"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f602881d80ee4228a2355c68da6b296a296cd22bbb91e5418d54577bbf17fa7c"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:691d50c99a937709ac4c4cd570d959a006bd6a6d970a484c84cc99543d4a5bbb"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24cd91a03543a0f8d09cb18d1cb27df80a84b5553d2bd94cba5979ef6af5c6e7"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fc2200e79d75b5238c8d69f6a30f8284290c777039d331e7340b6c17cad24a5a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea65b59882d5fa8c74a23f8960db579e5e341534934f43f3b18ec1839b893e41"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:829e91f3a8574888b73e7a3feb3b1af698e717513597e23136ff4eba0bc8387a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eab75a8569a095f2ad470b342f2751d9902f7944704f0571c8af46bede438475"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:061c3ff1f51ecec256e916cf71cc01f9975af8fb3af9b94d3c0cc8702cfea637"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:39d05e65f23a0fe897b6ac395f2a8d48c56ac0f583f5d663e0afec1da89b95da"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eca20917a06d2fca7628ef3c8b94a8c358f6b43f1a621c9815243462dcccf97"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e8d0f0eca087630d58b8c662085529781fd5dc80f0a54eda42d5c9029f812599"}, + {file = "rpds_py-0.10.3.tar.gz", hash = "sha256:fcc1ebb7561a3e24a6588f7c6ded15d80aec22c66a070c757559b57b17ffd1cb"}, +] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.3" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.3.tar.gz", hash = "sha256:d5d7a08965fca12bedf716eaf5430c6e3d0da9f3164a1dba2a7f3885f9ebe3c0"}, + {file = "types_requests-2.31.0.3-py3-none-any.whl", hash = "sha256:938f51653c757716aeca5d72c405c5e2befad8b0d330e3b385ce7f148e1b10dc"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "uritemplate" +version = "4.1.1" +description = "Implementation of RFC 6570 URI Templates" +optional = false +python-versions = ">=3.6" +files = [ + {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, + {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5c2e47ac71ffaeea6bf087d66f706861c7e6c39194d5a39c78103b5e30d57a23" diff --git a/blogger/provider/__init__.py b/blogger/provider/__init__.py new file mode 100644 index 000000000..f509f4c3d --- /dev/null +++ b/blogger/provider/__init__.py @@ -0,0 +1,30 @@ +import logging +import os + +import connexion +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message): + self.message = message + + def __str__(self): + return self.message + + +def create_app(): + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + + return flask_app diff --git a/blogger/provider/app.py b/blogger/provider/app.py new file mode 100644 index 000000000..f5e56a967 --- /dev/null +++ b/blogger/provider/app.py @@ -0,0 +1,29 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Blogger config error: {error}") + abort(502, f"Blogger config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/blogger/provider/client.py b/blogger/provider/client.py new file mode 100644 index 000000000..b55078409 --- /dev/null +++ b/blogger/provider/client.py @@ -0,0 +1,95 @@ +import logging +import os.path + +from flask import current_app as app +from google.auth.transport.requests import Request +from google.oauth2.credentials import Credentials +from google_auth_oauthlib.flow import InstalledAppFlow +from googleapiclient.discovery import build +from googleapiclient.errors import HttpError + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +client = None + + +class BloggerApiClient: + SCOPES = [ + "https://www.googleapis.com/auth/blogger", + "https://www.googleapis.com/auth/blogger.readonly", + ] + + DISCOVERY_URL = "https://blogger.googleapis.com/$discovery/rest?version=v3" + + def __init__(self, user_account_info): + self.credentials = None + self.user_account_info = user_account_info + self.get_oauth_credentials() + + def get_oauth_credentials(self): + if os.path.exists("token.json"): + logger.debug("Found token.json file") + self.credentials = Credentials.from_authorized_user_file( + "token.json", self.SCOPES + ) + # If there are no (valid) credentials available, let the user log in. + if not self.credentials or not self.credentials.valid: + logger.debug("No valid credentials found") + if ( + self.credentials + and self.credentials.expired + and self.credentials.refresh_token + ): + self.credentials.refresh(Request()) + else: + flow = InstalledAppFlow.from_client_config( + self.user_account_info, self.SCOPES + ) + self.credentials = flow.run_local_server(port=8080) + # Save the credentials for the next run + with open("token.json", "w") as token: + token.write(self.credentials.to_json()) + + def get_service(self): + if self.credentials.expired or not self.credentials.valid: + self.credentials.refresh(Request()) + + service = build( + "blogger", + "v3", + credentials=self.credentials, + discoveryServiceUrl=self.DISCOVERY_URL, + ) + return service + + def get_blogs_posts(self, query): + results = [] + try: + service = self.get_service() + blogs = service.blogs() + user_blogs = blogs.listByUser(userId="self").execute() + if "items" in user_blogs: + for blog in user_blogs["items"]: + blog_posts = ( + service.posts().search(blogId=blog["id"], q=query).execute() + ) + if "items" in blog_posts: + results += blog_posts["items"] + except HttpError as http_error: + raise UpstreamProviderError(message=str(http_error)) from http_error + + return results + + +def get_client(): + global client + assert ( + user_account_info := app.config.get("USER_ACCOUNT_INFO") + ), "BLOGGER_USER_ACCOUNT_INFO must be set" + + if not client: + client = BloggerApiClient(user_account_info) + + return client diff --git a/blogger/provider/provider.py b/blogger/provider/provider.py new file mode 100644 index 000000000..7b5fbf939 --- /dev/null +++ b/blogger/provider/provider.py @@ -0,0 +1,18 @@ +from .client import get_client + + +def serialize_results(results): + serialized_results = [] + for result in results: + item_to_append = result + item_to_append["text"] = result["content"] + item_to_append = {k: str(v) for k, v in item_to_append.items()} + serialized_results.append(item_to_append) + return serialized_results + + +def search(query): + client = get_client() + results = client.get_blogs_posts(query) + + return serialize_results(results) diff --git a/blogger/pyproject.toml b/blogger/pyproject.toml new file mode 100644 index 000000000..bc3a038b0 --- /dev/null +++ b/blogger/pyproject.toml @@ -0,0 +1,28 @@ +[tool.poetry] +name = "blogger" +version = "0.1.0" +description = "" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +google-api-python-client = "^2.100.0" +google-auth-httplib2 = "^0.1.1" +google-auth-oauthlib = "^1.1.0" +gunicorn = "^21.2.0" +aiohttp = "^3.9.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/box/.env-template b/box/.env-template new file mode 100644 index 000000000..4660d0ba0 --- /dev/null +++ b/box/.env-template @@ -0,0 +1,8 @@ +BOX_CLIENT_ID= +BOX_CLIENT_SECRET= +BOX_ENTERPRISE_ID= +BOX_SEARCH_LIMIT=10 +BOX_FILE_EXTENSIONS="eml,html,json,md,msg,rst,rtf,txt,xml,jpeg,png,csv,doc,docx,epub,odt,pdf,ppt,pptx,tsv,xlsx" +BOX_UNSTRUCTURED_BASE_URL=https://api.unstructured.io +BOX_UNSTRUCTURED_API_KEY= +BOX_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/box/README.md b/box/README.md new file mode 100644 index 000000000..0ddbda3ee --- /dev/null +++ b/box/README.md @@ -0,0 +1,58 @@ +# Box Connector + +This package connects Cohere to a Box organization. + +## Configuration + +To get started, you will require a Box workspace and someone with Administrator rights. + +1. Enable 2FA on your Box account, this is required to view an app's client secret. + +2. Create a Custom App with Server Authentication (with Client Credentails Grant) in the [Box Developer Console.](https://connectorio.app.box.com/developers/console) The app will require read and write access to all files, because downloading and parsing file contents requires write privileges. + +3. From the App's configuration page, note down the Client ID, Client Secret, and Enterprise ID. Use these values for their respective variables in a `.env` file. See `.env-template` for reference. + +4. Authorize the App from the [Box Admin Console](https://connectorio.app.box.com/master/custom-apps). Click the top-right `Add App` button and use the same Client ID from step 3. + +5. Lastly, you will need to authorize the Service Account Box creates to the folder(s) you'd like to give Cohere read access to. Retrieve the Service Account's email from your app's General Settings tab. Then hover over the folder(s) you'd like to share and invite that email. Best practice would be to create a folder for search purposes, and copy any files you'd like to be searchable in there. + +**Note**: Box takes 10+ minutes to index new/copied files, these will not be searchable until then. + +### Provision Unstructured + +Required: Docker + +This connector uses Unstructured to parse the file objects returned by Box. This leverages the Docker image version which hosts their API locally. To get started, head over to [Unstructured](unstructured.io). From here, you can request an API key by signing up. Use this for `BOX_UNSTRUCTURED_API_KEY`. + +Next, to use the Docker image, please follow their [documentation.](https://unstructured-io.github.io/unstructured/api.html#using-docker-images) + +By default, it spins up the image on localhost:8000, which we are pointing to with `BOX_UNSTRUCTURED_BASE_URL`. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/box/poetry.lock b/box/poetry.lock new file mode 100644 index 000000000..b43374e36 --- /dev/null +++ b/box/poetry.lock @@ -0,0 +1,722 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "boxsdk" +version = "3.8.1" +description = "Official Box Python SDK" +optional = false +python-versions = "*" +files = [ + {file = "boxsdk-3.8.1-py2.py3-none-any.whl", hash = "sha256:cea74577a4bfcf33acd3b69f601c142317885eb58abf60e60f03c97484369e02"}, + {file = "boxsdk-3.8.1.tar.gz", hash = "sha256:ec0bbb6ce1584c576999cc1af55c66dc484a25d4236b8580f53e39da33f44f18"}, +] + +[package.dependencies] +attrs = ">=17.3.0" +python-dateutil = "*" +requests = ">=2.4.3,<3" +requests-toolbelt = ">=0.4.0" +urllib3 = "<2" + +[package.extras] +coveralls = ["coveralls", "tox (<=3.28.0)"] +dev = ["tox (<=3.28.0)"] +gh = ["tox (<=3.28.0)", "tox-gh-actions"] +jwt = ["cryptography (>=3)", "pyjwt (>=1.7.0)"] +redis = ["redis (>=2.10.3)"] +test = ["bottle", "jsonpatch (>1.14)", "pytest", "pytest-cov", "pytest-lazy-fixture", "pytest-timeout", "pytz", "sqlalchemy (<1.4.0)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "7ce56f5d38a8ca4ee5be7896567b56258cc99a387f04468ad4016573a7844bd4" diff --git a/box/provider/__init__.py b/box/provider/__init__.py new file mode 100644 index 000000000..90981f378 --- /dev/null +++ b/box/provider/__init__.py @@ -0,0 +1,30 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/box/provider/app.py b/box/provider/app.py new file mode 100644 index 000000000..133dfed7e --- /dev/null +++ b/box/provider/app.py @@ -0,0 +1,27 @@ +import logging +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/box/provider/client.py b/box/provider/client.py new file mode 100644 index 000000000..06c8505bd --- /dev/null +++ b/box/provider/client.py @@ -0,0 +1,17 @@ +from flask import current_app as app +from boxsdk import CCGAuth, Client +from . import UpstreamProviderError + + +def get_client(): + try: + auth = CCGAuth( + client_id=app.config["CLIENT_ID"], + client_secret=app.config["CLIENT_SECRET"], + enterprise_id=app.config["ENTERPRISE_ID"], + ) + box_client = Client(auth) + except Exception as e: + raise UpstreamProviderError(str(e)) from e + + return box_client diff --git a/box/provider/provider.py b/box/provider/provider.py new file mode 100644 index 000000000..118721dd6 --- /dev/null +++ b/box/provider/provider.py @@ -0,0 +1,104 @@ +import logging +import requests +import itertools +import functools +from .client import get_client +from dataclasses import dataclass +from concurrent.futures import ThreadPoolExecutor +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +TIMEOUT_SECONDS = 16 + + +@dataclass +class Context: + session: requests.Session + unstructured_base_url: str + unstructured_api_key: str + file_extensions: str + + +def get_content(ctx: Context, item): + """ + Retrieve file contents in a parsable JSON format using Unstructured. + See README for more details. + """ + files = {"files": (item.name, item.content())} + headers = { + "Accept": "application/json", + "unstructured-api-key": ctx.unstructured_api_key, + } + + try: + response = ctx.session.post( + f"{ctx.unstructured_base_url}/general/v0/general", + headers=headers, + files=files, + data={"strategy": "fast"}, + timeout=TIMEOUT_SECONDS, + ) + except requests.exceptions.Timeout: + logger.error(f"Timeout from Unstructured parsing: {item.name}") + return + + if not response.ok: + logger.error(f"Error from Unstructured: {response.json()}") + return + + content = "" + for element in response.json(): + content += f' {element.get("text")}' + + return { + "id": item.id, + "title": item.name, + "url": f"https://app.box.com/file/{item.id}", + "text": content, + } + + +def search(query): + limit = app.config.get("SEARCH_LIMIT", 2) + file_extensions = app.config.get("FILE_EXTENSIONS", "pdf,doc,docx,txt") + box_client = get_client() + + try: + search_results = box_client.search().query( + query=query, + limit=limit, + result_type="file", + fields=["name", "id", "content"], + file_extensions=file_extensions.split(","), + ) + + except Exception as e: + raise UpstreamProviderError(str(e)) from e + + assert ( + unstructured_base_url := app.config.get("UNSTRUCTURED_BASE_URL") + ), "BOX_UNSTRUCTURED_BASE_URL must be set" + unstructured_key = app.config.get("UNSTRUCTURED_API_KEY") + + context = Context( + session=requests.Session(), + unstructured_base_url=unstructured_base_url, + unstructured_api_key=unstructured_key, + file_extensions=file_extensions, + ) + + # bind context to provide each thread with a copy of necessary configuration + get_content_with_context = functools.partial(get_content, context) + + with app.app_context(): + with ThreadPoolExecutor(max_workers=5) as pool: + results = list( + pool.map( + get_content_with_context, itertools.islice(search_results, limit) + ) + ) + + return results diff --git a/box/pyproject.toml b/box/pyproject.toml new file mode 100644 index 000000000..63bce71ce --- /dev/null +++ b/box/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "box" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +boxsdk = "^3.8.1" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/cockroach/.env-template b/cockroach/.env-template new file mode 100644 index 000000000..d8064425a --- /dev/null +++ b/cockroach/.env-template @@ -0,0 +1,6 @@ +COCKROACH_DATABASE_URL= +COCKROACH_SCHEME_NAME= +COCKROACH_TABLE_NAME= +COCKROACH_FTS_COLUMN= +COCKROACH_FTS_LANG= +COCKROACH_CONNECTOR_FIELDS_MAPPING= diff --git a/cockroach/README.md b/cockroach/README.md new file mode 100644 index 000000000..8cdd59ee3 --- /dev/null +++ b/cockroach/README.md @@ -0,0 +1,96 @@ +# CockroachDB Connector + +This package is a utility for connecting Cohere to a Cockroach database. + +## Configuration + +This connector requires the following environment variables: + +``` +COCKROACH_DATABASE_URL +``` + +This variable should contain the URL for the Cockroach database. +For cloud-based Cockroach databases, you can find the URL in the CockroachDB Console. +Just click on the "Connect" in the Cluster Overview page and copy the DATABASE_URL. +Usually, it looks like this: + +``` +postgresql://:@.cockroachlabs.cloud:26257/ +``` + +``` +COCKROACH_TABLE_NAME +``` + +This variable should contain the table name for the Cockroach database to search in. + +``` +COCKROACH_FTS_COLUMN +``` + +This variable should contain the column name for the Cockroach database to search. +This column should be of type `tsvector`. To create such a column, you can use instructions +[here](https://www.cockroachlabs.com/docs/stable/full-text-search) + +``` +COCKROACH_FTS_LANG +``` + +This variable should contain the language for the Cockroach database to search which +was used to create the `tsvector` column. +Please note that you need to create Gin index based on the `tsvector` column. + +``` +COCKROACH_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the connector. + +## Optional configuration + +``` +COCKROACH_FIELDS_MAPPING +``` + +This variable should contain a JSON object mapping Cohere fields +to Cockroach fields(key is Cockroach table field, +the value is Cohere field). If this variable is not set, the data will be returned as is. + +## Development + +To run the connector locally, you will need to have a Cockroach database running. +To load test data into the database, set the COCKROACH_DATABASE_URL in the .env file to point to your +database. +Then run the load_data.py file. + +```bash + $ python load_data.py +``` + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/cockroach/dev/load_data.py b/cockroach/dev/load_data.py new file mode 100644 index 000000000..a62942b94 --- /dev/null +++ b/cockroach/dev/load_data.py @@ -0,0 +1,81 @@ +import csv + +import psycopg2 +from dotenv import load_dotenv, dotenv_values + +load_dotenv() +config = dotenv_values() + +COCKROACH_DATABASE_URL = config["COCKROACH_DATABASE_URL"] + + +def create_bbq_table(): + conn = psycopg2.connect(COCKROACH_DATABASE_URL) + cursor = conn.cursor() + + drop_table_query = """ + DROP TABLE IF EXISTS bbq + """ + cursor.execute(drop_table_query) + conn.commit() + + create_table_query = """ + CREATE TABLE bbq ( + id SERIAL PRIMARY KEY, + a_id VARCHAR, + brand VARCHAR, + color VARCHAR, + country VARCHAR, + description VARCHAR, + features TEXT, + name VARCHAR, + search_vector TSVECTOR GENERATED ALWAYS AS ( + to_tsvector('english', brand || ' ' || color || ' ' || description || ' ' || features || ' ' || a_id || ' ' || name) + ) STORED + ) + """ + cursor.execute(create_table_query) + conn.commit() + + create_index_query = """ + CREATE INDEX idx_bbq_search_vector ON bbq USING gin(search_vector) + """ + cursor.execute(create_index_query) + conn.commit() + + cursor.close() + conn.close() + + +def load_data(): + conn = psycopg2.connect(COCKROACH_DATABASE_URL) + cursor = conn.cursor() + + with open("../../testdata/bbq.csv", "r") as csv_file: + reader = csv.DictReader(csv_file) + for row in reader: + insert_query = """ + INSERT INTO bbq (a_id, brand, color, country, description, features, name) + VALUES (%s, %s, %s, %s, %s, %s, %s) + """ + cursor.execute( + insert_query, + ( + row["ID"], + row["Brand"], + row["Color"], + row["Country"], + row["Description"], + row["Features"], + row["Name"], + ), + ) + conn.commit() + + cursor.close() + conn.close() + + +if __name__ == "__main__": + create_bbq_table() + load_data() diff --git a/cockroach/poetry.lock b/cockroach/poetry.lock new file mode 100644 index 000000000..c3f075717 --- /dev/null +++ b/cockroach/poetry.lock @@ -0,0 +1,762 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.10.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:ec3f8e6234c4e46ff9e16d9ae96f4ef69fa328bb4ad08198c8cee45bb1f08c69"}, + {file = "black-23.10.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:1b917a2aa020ca600483a7b340c165970b26e9029067f019e3755b56e8dd5916"}, + {file = "black-23.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c74de4c77b849e6359c6f01987e94873c707098322b91490d24296f66d067dc"}, + {file = "black-23.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:7b4d10b0f016616a0d93d24a448100adf1699712fb7a4efd0e2c32bbb219b173"}, + {file = "black-23.10.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b15b75fc53a2fbcac8a87d3e20f69874d161beef13954747e053bca7a1ce53a0"}, + {file = "black-23.10.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:e293e4c2f4a992b980032bbd62df07c1bcff82d6964d6c9496f2cd726e246ace"}, + {file = "black-23.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d56124b7a61d092cb52cce34182a5280e160e6aff3137172a68c2c2c4b76bcb"}, + {file = "black-23.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:3f157a8945a7b2d424da3335f7ace89c14a3b0625e6593d21139c2d8214d55ce"}, + {file = "black-23.10.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:cfcce6f0a384d0da692119f2d72d79ed07c7159879d0bb1bb32d2e443382bf3a"}, + {file = "black-23.10.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:33d40f5b06be80c1bbce17b173cda17994fbad096ce60eb22054da021bf933d1"}, + {file = "black-23.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:840015166dbdfbc47992871325799fd2dc0dcf9395e401ada6d88fe11498abad"}, + {file = "black-23.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:037e9b4664cafda5f025a1728c50a9e9aedb99a759c89f760bd83730e76ba884"}, + {file = "black-23.10.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:7cb5936e686e782fddb1c73f8aa6f459e1ad38a6a7b0e54b403f1f05a1507ee9"}, + {file = "black-23.10.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:7670242e90dc129c539e9ca17665e39a146a761e681805c54fbd86015c7c84f7"}, + {file = "black-23.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed45ac9a613fb52dad3b61c8dea2ec9510bf3108d4db88422bacc7d1ba1243d"}, + {file = "black-23.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:6d23d7822140e3fef190734216cefb262521789367fbdc0b3f22af6744058982"}, + {file = "black-23.10.1-py3-none-any.whl", hash = "sha256:d431e6739f727bb2e0495df64a6c7a5310758e87505f5f8cde9ff6c0f2d7e4fe"}, + {file = "black-23.10.1.tar.gz", hash = "sha256:1f8ce316753428ff68749c65a5f7844631aa18c8679dfd3ca9dc1a289979c258"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.1" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.1.tar.gz", hash = "sha256:d9137a876020661972ca6eec0766d81aef8a5627df628b664b234b73396e727e"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8aee051c89e13565c6bd366813c386939f8e928af93c29fda4af86d25b73d8f8"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:352a88c3df0d1fa886562384b86f9a9e27563d4704ee0e9d56ec6fcd270ea690"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:223b4d54561c01048f657fa6ce41461d5ad8ff128b9678cfe8b2ecd951e3f8a2"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f861d94c2a450b974b86093c6c027888627b8082f1299dfd5a4bae8e2292821"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1171ef1fc5ab4693c5d151ae0fdad7f7349920eabbaca6271f95969fa0756c2d"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28f512b9a33235545fbbdac6a330a510b63be278a50071a336afc1b78781b147"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0e842112fe3f1a4ffcf64b06dc4c61a88441c2f02f373367f7b4c1aa9be2ad5"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f9bc2ce123637a60ebe819f9fccc614da1bcc05798bbbaf2dd4ec91f3e08846"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:f194cce575e59ffe442c10a360182a986535fd90b57f7debfaa5c845c409ecc3"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:9a74041ba0bfa9bc9b9bb2cd3238a6ab3b7618e759b41bd15b5f6ad958d17605"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b578cbe580e3b41ad17b1c428f382c814b32a6ce90f2d8e39e2e635d49e498d1"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:6db3cfb9b4fcecb4390db154e75b49578c87a3b9979b40cdf90d7e4b945656e1"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:debb633f3f7856f95ad957d9b9c781f8e2c6303ef21724ec94bea2ce2fcbd056"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-win32.whl", hash = "sha256:87071618d3d8ec8b186d53cb6e66955ef2a0e4fa63ccd3709c0c90ac5a43520f"}, + {file = "charset_normalizer-3.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:e372d7dfd154009142631de2d316adad3cc1c36c32a38b16a4751ba78da2a397"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae4070f741f8d809075ef697877fd350ecf0b7c5837ed68738607ee0a2c572cf"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58e875eb7016fd014c0eea46c6fa92b87b62c0cb31b9feae25cbbe62c919f54d"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dbd95e300367aa0827496fe75a1766d198d34385a58f97683fe6e07f89ca3e3c"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de0b4caa1c8a21394e8ce971997614a17648f94e1cd0640fbd6b4d14cab13a72"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:985c7965f62f6f32bf432e2681173db41336a9c2611693247069288bcb0c7f8b"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a15c1fe6d26e83fd2e5972425a772cca158eae58b05d4a25a4e474c221053e2d"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae55d592b02c4349525b6ed8f74c692509e5adffa842e582c0f861751701a673"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:be4d9c2770044a59715eb57c1144dedea7c5d5ae80c68fb9959515037cde2008"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:851cf693fb3aaef71031237cd68699dded198657ec1e76a76eb8be58c03a5d1f"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:31bbaba7218904d2eabecf4feec0d07469284e952a27400f23b6628439439fa7"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:871d045d6ccc181fd863a3cd66ee8e395523ebfbc57f85f91f035f50cee8e3d4"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:501adc5eb6cd5f40a6f77fbd90e5ab915c8fd6e8c614af2db5561e16c600d6f3"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f5fb672c396d826ca16a022ac04c9dce74e00a1c344f6ad1a0fdc1ba1f332213"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-win32.whl", hash = "sha256:bb06098d019766ca16fc915ecaa455c1f1cd594204e7f840cd6258237b5079a8"}, + {file = "charset_normalizer-3.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:8af5a8917b8af42295e86b64903156b4f110a30dca5f3b5aedea123fbd638bff"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7ae8e5142dcc7a49168f4055255dbcced01dc1714a90a21f87448dc8d90617d1"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5b70bab78accbc672f50e878a5b73ca692f45f5b5e25c8066d748c09405e6a55"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5ceca5876032362ae73b83347be8b5dbd2d1faf3358deb38c9c88776779b2e2f"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34d95638ff3613849f473afc33f65c401a89f3b9528d0d213c7037c398a51296"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9edbe6a5bf8b56a4a84533ba2b2f489d0046e755c29616ef8830f9e7d9cf5728"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6a02a3c7950cafaadcd46a226ad9e12fc9744652cc69f9e5534f98b47f3bbcf"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10b8dd31e10f32410751b3430996f9807fc4d1587ca69772e2aa940a82ab571a"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edc0202099ea1d82844316604e17d2b175044f9bcb6b398aab781eba957224bd"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b891a2f68e09c5ef989007fac11476ed33c5c9994449a4e2c3386529d703dc8b"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:71ef3b9be10070360f289aea4838c784f8b851be3ba58cf796262b57775c2f14"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:55602981b2dbf8184c098bc10287e8c245e351cd4fdcad050bd7199d5a8bf514"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:46fb9970aa5eeca547d7aa0de5d4b124a288b42eaefac677bde805013c95725c"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:520b7a142d2524f999447b3a0cf95115df81c4f33003c51a6ab637cbda9d0bf4"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-win32.whl", hash = "sha256:8ec8ef42c6cd5856a7613dcd1eaf21e5573b2185263d87d27c8edcae33b62a61"}, + {file = "charset_normalizer-3.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:baec8148d6b8bd5cee1ae138ba658c71f5b03e0d69d5907703e3e1df96db5e41"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:63a6f59e2d01310f754c270e4a257426fe5a591dc487f1983b3bbe793cf6bac6"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d6bfc32a68bc0933819cfdfe45f9abc3cae3877e1d90aac7259d57e6e0f85b1"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f3100d86dcd03c03f7e9c3fdb23d92e32abbca07e7c13ebd7ddfbcb06f5991f"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:39b70a6f88eebe239fa775190796d55a33cfb6d36b9ffdd37843f7c4c1b5dc67"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4e12f8ee80aa35e746230a2af83e81bd6b52daa92a8afaef4fea4a2ce9b9f4fa"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b6cefa579e1237ce198619b76eaa148b71894fb0d6bcf9024460f9bf30fd228"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:61f1e3fb621f5420523abb71f5771a204b33c21d31e7d9d86881b2cffe92c47c"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4f6e2a839f83a6a76854d12dbebde50e4b1afa63e27761549d006fa53e9aa80e"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:1ec937546cad86d0dce5396748bf392bb7b62a9eeb8c66efac60e947697f0e58"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:82ca51ff0fc5b641a2d4e1cc8c5ff108699b7a56d7f3ad6f6da9dbb6f0145b48"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:633968254f8d421e70f91c6ebe71ed0ab140220469cf87a9857e21c16687c034"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-win32.whl", hash = "sha256:c0c72d34e7de5604df0fde3644cc079feee5e55464967d10b24b1de268deceb9"}, + {file = "charset_normalizer-3.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:63accd11149c0f9a99e3bc095bbdb5a464862d77a7e309ad5938fbc8721235ae"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5a3580a4fdc4ac05f9e53c57f965e3594b2f99796231380adb2baaab96e22761"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2465aa50c9299d615d757c1c888bc6fef384b7c4aec81c05a0172b4400f98557"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb7cd68814308aade9d0c93c5bd2ade9f9441666f8ba5aa9c2d4b389cb5e2a45"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91e43805ccafa0a91831f9cd5443aa34528c0c3f2cc48c4cb3d9a7721053874b"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:854cc74367180beb327ab9d00f964f6d91da06450b0855cbbb09187bcdb02de5"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c15070ebf11b8b7fd1bfff7217e9324963c82dbdf6182ff7050519e350e7ad9f"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4c99f98fc3a1835af8179dcc9013f93594d0670e2fa80c83aa36346ee763d2"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fb765362688821404ad6cf86772fc54993ec11577cd5a92ac44b4c2ba52155b"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dced27917823df984fe0c80a5c4ad75cf58df0fbfae890bc08004cd3888922a2"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a66bcdf19c1a523e41b8e9d53d0cedbfbac2e93c649a2e9502cb26c014d0980c"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ecd26be9f112c4f96718290c10f4caea6cc798459a3a76636b817a0ed7874e42"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3f70fd716855cd3b855316b226a1ac8bdb3caf4f7ea96edcccc6f484217c9597"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:17a866d61259c7de1bdadef418a37755050ddb4b922df8b356503234fff7932c"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-win32.whl", hash = "sha256:548eefad783ed787b38cb6f9a574bd8664468cc76d1538215d510a3cd41406cb"}, + {file = "charset_normalizer-3.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:45f053a0ece92c734d874861ffe6e3cc92150e32136dd59ab1fb070575189c97"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bc791ec3fd0c4309a753f95bb6c749ef0d8ea3aea91f07ee1cf06b7b02118f2f"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0c8c61fb505c7dad1d251c284e712d4e0372cef3b067f7ddf82a7fa82e1e9a93"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2c092be3885a1b7899cd85ce24acedc1034199d6fca1483fa2c3a35c86e43041"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2000c54c395d9e5e44c99dc7c20a64dc371f777faf8bae4919ad3e99ce5253e"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4cb50a0335382aac15c31b61d8531bc9bb657cfd848b1d7158009472189f3d62"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c30187840d36d0ba2893bc3271a36a517a717f9fd383a98e2697ee890a37c273"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe81b35c33772e56f4b6cf62cf4aedc1762ef7162a31e6ac7fe5e40d0149eb67"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0bf89afcbcf4d1bb2652f6580e5e55a840fdf87384f6063c4a4f0c95e378656"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:06cf46bdff72f58645434d467bf5228080801298fbba19fe268a01b4534467f5"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:3c66df3f41abee950d6638adc7eac4730a306b022570f71dd0bd6ba53503ab57"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd805513198304026bd379d1d516afbf6c3c13f4382134a2c526b8b854da1c2e"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:9505dc359edb6a330efcd2be825fdb73ee3e628d9010597aa1aee5aa63442e97"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:31445f38053476a0c4e6d12b047b08ced81e2c7c712e5a1ad97bc913256f91b2"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-win32.whl", hash = "sha256:bd28b31730f0e982ace8663d108e01199098432a30a4c410d06fe08fdb9e93f4"}, + {file = "charset_normalizer-3.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:555fe186da0068d3354cdf4bbcbc609b0ecae4d04c921cc13e209eece7720727"}, + {file = "charset_normalizer-3.3.1-py3-none-any.whl", hash = "sha256:800561453acdecedaac137bf09cd719c7a440b6800ec182f077bb8e7025fb708"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "psycopg2" +version = "2.9.9" +description = "psycopg2 - Python-PostgreSQL Database Adapter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "psycopg2-2.9.9-cp310-cp310-win32.whl", hash = "sha256:38a8dcc6856f569068b47de286b472b7c473ac7977243593a288ebce0dc89516"}, + {file = "psycopg2-2.9.9-cp310-cp310-win_amd64.whl", hash = "sha256:426f9f29bde126913a20a96ff8ce7d73fd8a216cfb323b1f04da402d452853c3"}, + {file = "psycopg2-2.9.9-cp311-cp311-win32.whl", hash = "sha256:ade01303ccf7ae12c356a5e10911c9e1c51136003a9a1d92f7aa9d010fb98372"}, + {file = "psycopg2-2.9.9-cp311-cp311-win_amd64.whl", hash = "sha256:121081ea2e76729acfb0673ff33755e8703d45e926e416cb59bae3a86c6a4981"}, + {file = "psycopg2-2.9.9-cp37-cp37m-win32.whl", hash = "sha256:5e0d98cade4f0e0304d7d6f25bbfbc5bd186e07b38eac65379309c4ca3193efa"}, + {file = "psycopg2-2.9.9-cp37-cp37m-win_amd64.whl", hash = "sha256:7e2dacf8b009a1c1e843b5213a87f7c544b2b042476ed7755be813eaf4e8347a"}, + {file = "psycopg2-2.9.9-cp38-cp38-win32.whl", hash = "sha256:ff432630e510709564c01dafdbe996cb552e0b9f3f065eb89bdce5bd31fabf4c"}, + {file = "psycopg2-2.9.9-cp38-cp38-win_amd64.whl", hash = "sha256:bac58c024c9922c23550af2a581998624d6e02350f4ae9c5f0bc642c633a2d5e"}, + {file = "psycopg2-2.9.9-cp39-cp39-win32.whl", hash = "sha256:c92811b2d4c9b6ea0285942b2e7cac98a59e166d59c588fe5cfe1eda58e72d59"}, + {file = "psycopg2-2.9.9-cp39-cp39-win_amd64.whl", hash = "sha256:de80739447af31525feddeb8effd640782cf5998e1a4e9192ebdf829717e3913"}, + {file = "psycopg2-2.9.9.tar.gz", hash = "sha256:d1454bde93fb1e224166811694d600e746430c006fbb031ea06ecc2ea41bf156"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6"}, + {file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063"}, + {file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad"}, + {file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281"}, + {file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116"}, + {file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586"}, + {file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02"}, + {file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801"}, + {file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1"}, + {file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3"}, + {file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d"}, + {file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971"}, + {file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b1f262f35ff64f3ce24c7c8a747737ce164ac9aa0710a31f7995f38c5ae67639" diff --git a/cockroach/provider/__init__.py b/cockroach/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/cockroach/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/cockroach/provider/app.py b/cockroach/provider/app.py new file mode 100644 index 000000000..165fea493 --- /dev/null +++ b/cockroach/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Cockroach config error: {error}") + abort(502, f"Cockroach config error: {error}") + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/cockroach/provider/provider.py b/cockroach/provider/provider.py new file mode 100644 index 000000000..3b2c2bf7a --- /dev/null +++ b/cockroach/provider/provider.py @@ -0,0 +1,80 @@ +import logging + +import psycopg2 +import psycopg2.extras +from flask import current_app as app + +logger = logging.getLogger(__name__) +pg_connection = None + + +def prepare_for_serialization(data, field_to_remove): + prepared_data = [] + for item in data: + item.pop(field_to_remove) + prepared_data.append(item) + + return prepared_data + + +def serialize_results(data, mappings={}): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + global pg_connection + assert ( + database_url := app.config.get("DATABASE_URL") + ), "COCKROACH_DATABASE_URL must be set" + assert ( + database_table := app.config.get("TABLE_NAME") + ), "COCKROACH_TABLE_NAME must be set" + assert ( + fts_column := app.config.get("FTS_COLUMN") + ), "COCKROACH_FTS_COLUMN must be set" + assert (fts_lang := app.config.get("FTS_LANG")), "COCKROACH_FTS_LANG must be set" + + if pg_connection is None: + pg_connection = psycopg2.connect(database_url) + + cursor = pg_connection.cursor(cursor_factory=psycopg2.extras.RealDictCursor) + + search_query = ( + "SELECT * " + f"FROM {database_table} " + f"WHERE {fts_column} @@ to_tsquery('{fts_lang}', %s)" + ) + + query_and = query.replace(" ", " & ") + cursor.execute(search_query, (query_and,)) + results = cursor.fetchall() + cursor.close() + + return serialize_results( + prepare_for_serialization(results, fts_column), + app.config.get("FIELDS_MAPPING", {}), + ) diff --git a/cockroach/pyproject.toml b/cockroach/pyproject.toml new file mode 100644 index 000000000..82321b1e4 --- /dev/null +++ b/cockroach/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "cockroach" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" +black = "^23.9.1" +psycopg2 = "^2.9.9" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/coda/.env-template b/coda/.env-template new file mode 100644 index 000000000..f3543739b --- /dev/null +++ b/coda/.env-template @@ -0,0 +1,2 @@ +CODA_API_TOKEN= +CODA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/coda/README.md b/coda/README.md new file mode 100644 index 000000000..fa660e167 --- /dev/null +++ b/coda/README.md @@ -0,0 +1,50 @@ +# Coda Quick Start Connector + +Connects Cohere to Coda, the collaborative document editor. + +## Limitations + +The Coda connector can only search Document titles, with in-order search terms. + +Note: ONLY Enterprise accounts will return the document body using their API. Regular accounts will only return document metadata, without any of the contents. + +## Configuration + +To use this connector, you will need a Coda account. Then click on the top-right user icon and go to +Account Settings. Now in the Api Settings section you can generate an API Token. Use this value +for the `CODA_API_TOKEN`. + +Environment variables can optionally be placed in a file called `.env`. See `.env-template` for a +full list of available options. This file can be copied to `.env` and modified. Options that are +left empty will be ignored. + +Finally, to protect this connector from abuse, the `CODA_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`http://127.0.0.1:5000`. + +```bash + curl -X 'POST' \ + 'http://127.0.0.1:5000/search' \ + -H 'accept: application/json' \ + -H 'Content-Type: application/json' \ + -d '{ + "query": "my title" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://127.0.0.1:5000/ui/ diff --git a/coda/poetry.lock b/coda/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/coda/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/coda/provider/__init__.py b/coda/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/coda/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/coda/provider/app.py b/coda/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/coda/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/coda/provider/provider.py b/coda/provider/provider.py new file mode 100644 index 000000000..4cfd47227 --- /dev/null +++ b/coda/provider/provider.py @@ -0,0 +1,35 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://coda.io/apis/v1" + + +def search(query) -> list[dict[str, Any]]: + url = BASE_PATH + "/docs" + assert (token := app.config.get("API_TOKEN")), "CODA_API_TOKEN must be set" + + headers = {"Authorization": f"Bearer {token}"} + + params = { + "query": query, + } + + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["items"] diff --git a/coda/pyproject.toml b/coda/pyproject.toml new file mode 100644 index 000000000..4df22f969 --- /dev/null +++ b/coda/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "coda" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/confluence/.env-template b/confluence/.env-template new file mode 100644 index 000000000..7c2fadf07 --- /dev/null +++ b/confluence/.env-template @@ -0,0 +1,8 @@ +CONFLUENCE_USER= +CONFLUENCE_API_TOKEN= +CONFLUENCE_PRODUCT_URL=https://sample.atlassian.net +CONFLUENCE_SPACE_NAME= +CONFLUENCE_SEARCH_LIMIT=10 + +# Connector Authorization +CONFLUENCE_CONNECTOR_API_KEY= diff --git a/confluence/README.md b/confluence/README.md new file mode 100644 index 000000000..d3f58d4de --- /dev/null +++ b/confluence/README.md @@ -0,0 +1,79 @@ +# Confluence Quick Start Connector + +This package is a utility for connecting Cohere to Confluence, featuring a simple local development setup. + +## Limitations + +The Confluence connector will search within the space defined in your `.env`, and performs a case-insensitive full-text +search against all text fields Confluence indexes by default. + +## Configuration + +This connector requires the following environment variables: + +``` +CONFLUENCE_USER +CONFLUENCE_API_TOKEN +CONFLUENCE_PRODUCT_URL +CONFLUENCE_SPACE_NAME +``` + +The user and api token combination should be a user email address and an API token pair. +The API token can be generated by logging into Confluence and going +to the API tokens [page](https://id.atlassian.com/manage-profile/security/api-tokens). +The product URL should be the URL for the Confluence wiki, including the https:// scheme. +The space name should be the name of a single space in your wiki. + +### Optional Configuration + +``` +CONFLUENCE_SEARCH_LIMIT +``` + +This variable can be used to limit the number of results returned by the connector. +By default, the connector will return 10 results. + +``` +CONFLUENCE_CONNECTOR_API_KEY +``` + +This variable can be used to set an API key for the connector. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +To load some test documents into Confluence, this repo provides a `load_data.py` script in `dev/`. + +```bash + $ poetry shell + $ python dev/load_data.py +``` + +Next, start up the connector's server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/confluence/dev/load_data.py b/confluence/dev/load_data.py new file mode 100644 index 000000000..501d5516b --- /dev/null +++ b/confluence/dev/load_data.py @@ -0,0 +1,47 @@ +import csv +import os + +from atlassian import Confluence +from dotenv import load_dotenv + +load_dotenv() + + +confluence = Confluence( + url=os.environ.get("CONFLUENCE_PRODUCT_URL"), + username=os.environ.get("CONFLUENCE_USER"), + password=os.environ.get("CONFLUENCE_API_TOKEN"), +) +space = os.environ.get("CONFLUENCE_SPACE_NAME") + +with open("../testdata/bbq.csv", "r") as csv_file: + reader = csv.DictReader(csv_file) + for row in reader: + title = row["Name"] + description = row["Description"] + features = row["Features"] + brand = row["Brand"] + color = row["Color"] + + body = f"Brand: {brand}\nColor: {color}\n\n{description}\n{features}" + + if confluence.page_exists(space, title): + page_id = confluence.get_page_id(space, title) + status = confluence.update_page( + parent_id=None, + page_id=page_id, + title=title, + body=body, + type="page", + representation="wiki", + minor_edit=False, + ) + action = "Updated" + else: + status = confluence.create_page(space, title, body, representation="wiki") + action = "Created" + + if status: + print(f"{action} page {title} on Confluence.") + else: + print(f"Failed to {action.lower()} page {title} on Confluence.") diff --git a/confluence/poetry.lock b/confluence/poetry.lock new file mode 100644 index 000000000..babe55e49 --- /dev/null +++ b/confluence/poetry.lock @@ -0,0 +1,894 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "asyncio" +version = "3.4.3" +description = "reference implementation of PEP 3156" +optional = false +python-versions = "*" +files = [ + {file = "asyncio-3.4.3-cp33-none-win32.whl", hash = "sha256:b62c9157d36187eca799c378e572c969f0da87cd5fc42ca372d92cdb06e7e1de"}, + {file = "asyncio-3.4.3-cp33-none-win_amd64.whl", hash = "sha256:c46a87b48213d7464f22d9a497b9eef8c1928b68320a2fa94240f969f6fec08c"}, + {file = "asyncio-3.4.3-py3-none-any.whl", hash = "sha256:c4d18b22701821de07bd6aea8b53d21449ec0ec5680645e5317062ea21817d2d"}, + {file = "asyncio-3.4.3.tar.gz", hash = "sha256:83360ff8bc97980e4ff25c964c7bd3923d333d177aa4f7fb736b019f26c7cb41"}, +] + +[[package]] +name = "atlassian-python-api" +version = "3.39.0" +description = "Python Atlassian REST API Wrapper" +optional = false +python-versions = "*" +files = [ + {file = "atlassian-python-api-3.39.0.tar.gz", hash = "sha256:69c556b2485224fdc8b4ff1c071d68c81de6c65526a418fb81d99cc34a5d288c"}, +] + +[package.dependencies] +deprecated = "*" +oauthlib = "*" +requests = "*" +requests_oauthlib = "*" +six = "*" + +[package.extras] +kerberos = ["requests-kerberos"] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.4" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, + {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "deprecated" +version = "1.2.14" +description = "Python @deprecated decorator to deprecate old python classes, functions or methods." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, + {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, +] + +[package.dependencies] +wrapt = ">=1.10,<2" + +[package.extras] +dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.0-py3-none-any.whl", hash = "sha256:b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60"}, + {file = "jsonschema-4.18.0.tar.gz", hash = "sha256:8caf5b57a990a98e9b39832ef3cb35c176fe331414252b6e1b26fd5866f891a4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "4.0.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-4.0.0-py3-none-any.whl", hash = "sha256:118c954d7e949b35437270383a3f2531e99dd93cf7ce4dc8340d3356d30f173b"}, + {file = "platformdirs-4.0.0.tar.gz", hash = "sha256:cb633b2bcf10c51af60beb0ab06d2f1d69064b43abf4c185ca6b28865f3f9731"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.8.8" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.8-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:cea42c2f52e37877e6b877bce64d109a6b0213e32545ecc70d4492d2a4641b8f"}, + {file = "rpds_py-0.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b189640d59afa8aeff59865fa9d314bca97987c378950f215297e15d64ae1124"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87d74c2526115daa9d805a66377997602185a837ff7ecceed9d27e625c383572"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:db71c665fc7ddb9ac53d7b69dc588493c0b71635b28fc8ff64b31eb9db5b3461"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2d6a26953d3b291dd7e79e43bb203ed134ca889e63c8ebbc65e3ff98154303ef"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3660bd2afb23e1ca685df0d3092208fe6c7b2cae8c0be199b3da6d1a4bc91dc5"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b5164fdad37847e90683d3748dca7c4604f47ecd21e2d651dafc80393d1d314"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dfec14a64759186153115d987f9e60b1fa7e8e14a00004a02482e696199e554"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d6696c2a002e982e89975063939a2579623d6d6b24634b147848ec9f35dad7d6"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13aed64f2e0bef04a0eae6d1d1295f901f6c1640d1e20264dc3b19d62ef1721d"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:316a66b0379a9e954872593aa2eb6d61949da2ecc8f572b4dafb07aa0e247171"}, + {file = "rpds_py-0.8.8-cp310-none-win32.whl", hash = "sha256:e4e11f71673905d9e8735b8dd4ef8fa85a82e6003851fe46f9bdc51aebc2cd5d"}, + {file = "rpds_py-0.8.8-cp310-none-win_amd64.whl", hash = "sha256:6b1b235b890373f785507f8f6a644a4f191b7195939e7f6108dc0e5e4fab57fd"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:d4334405f6c73c29ff94521f78ad53ebb76a9c1b8dafea75852f9f64c3679cf7"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df2ae878fd99342415a42659f3bcee34b12441a509033e0ab04c6e301895607"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2f8666fde7cfd9cdbc6c223876b39697d387f0215d12ed25147e9efec2dff5a"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ea8c4a1232c7bacf73366b0490dda7f67d25958aec1c2f099b6753c8bfe84427"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5cbcbd6451a4af2048fc0b21c15981462f6a378cb039aa53612c6e39958064e"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d418d2fd8c0fffe2897bc3e15a2e2ec87abf29076f0c36898cc33fb7881c2cbe"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97e4cbe722474d17c309ee49e09331ceffe345bb72e2b10c6c740788871b122"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1f60a7eb96fedcc5bf59761d33ac0f2f127d75f8c4b99ed0f138fc0f3601c537"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b3ed0d3498b69159db0d5db1393c8bae4df51cf936b2ef5cda53d800acab0019"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:22afed13c6ad4ccdc650ad44cbc06f835f4f30de201bd4ee2afc09bde06a357a"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:78c5577f99d2edc9eed9ec39fae27b73d04d1b2462aff6f6b11207e0364fc40d"}, + {file = "rpds_py-0.8.8-cp311-none-win32.whl", hash = "sha256:42eb3030665ee7a5c03fd4db6b8db1983aa91bcdffbed0f4687751deb2a94a7c"}, + {file = "rpds_py-0.8.8-cp311-none-win_amd64.whl", hash = "sha256:7110854662ccf8db84b90e4624301ef5311cafff7e5f2a63f2d7cc0fc1a75b60"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:d00b16de3c42bb3d26341b443e48d67d444bb1a4ce6b44dd5600def2da759599"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d7e540e4f85c04706ea798f47a86483f3d85c624704413bc701eb75684d35a5"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54a54c3c220e7c5038207912aab23443f829762503a4fcbc5c7bbffef7523b13"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22d5bef6f9942e46582610a60b8420f8e9af7e0c69e35c317cb508c30117f933"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fccd5e138908ae6f2db5fbfc6769e65372993b0c4c047586de15b6c31a76e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:502f0bee154fa1c13514dfddb402ef29b86aca11873a3316de4534cf0e13a1e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cfd2c2dbb0446ec1ba132e62e1f4880163e43e131dd43f58f58fd46430649b"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f12e679f29a6c2c0607b7037e7fce4f6430a0d304770768cf6d8036386918c29"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8f9d619c66dc7c018a22a1795a14ab4dad3c76246c9059b681955254a0f58f7c"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f9e70c04cc0402f8b14fec8ac91d1b825ac89a9aa015556a0af12a06b5f085"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d72757c0cb6423fe73ecaa2db3adf0077da513b7fe8cb19e102de6df4ccdad0c"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:d7e46f52272ceecc42c05ad869b068b2dbfb6eb5643bcccecd2327d3cded5a2e"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7628b2080538faa4a1243b0002678cae7111af68ae7b5aa6cd8526762cace868"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657348b35a4c2e7c2340bf0bc37597900037bd87e9db7e6282711aaa77256e16"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ac1e47ee4cb2dbd714537e63c67086eec63f56b13208fe450ae5be4f3d65671"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cafbfa8f3a27e592bdcc420497e0c9a957c9f812b6c6ebfb7f961409215ba82d"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9af40bb89e40932e04c0cc1fb516249d6b3ae68ceebd984fdc592a6673244e50"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b7c87503843a036f898d44c47326a117d23b6269a9f1574adf83d7bb051b839"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0fe018430e5e8e1d8b513bcbccdb0ea34b9fd81c32b3a49c41a109fade17cfb"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c7019b2522af6b835118177b6b53f7ed08da28061aa5d44e06286be09799e7a4"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ac596301c7723809ecb6ec4cb2564b2cadc06f8c07b6348a56fcbf1ae043d751"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f8a1cc37e2395002381510a6862c29634acd67edfe5774661a6c48d8617acae7"}, + {file = "rpds_py-0.8.8-cp38-none-win32.whl", hash = "sha256:e261fa453ad50fe1d9287fa21d962cdbcd3d495cf1160dd0f893883040c455b6"}, + {file = "rpds_py-0.8.8-cp38-none-win_amd64.whl", hash = "sha256:e1700fba17dd63c9c7d5cb03cf838db23cf938dd5cdb1eecb6ba8b8da62c3e73"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:25a4b357ba7540d7cc709915699d67d505c8177cdb30824127092e1b4886b504"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f81a570a20f9fce617d728f4e3bdc05bfbb68afa2e795ec0c52544a7923de517"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:246a410e540ce7f635c6ad1b7aa00b7dcfc966c5f97217e41092c3f764dac4bf"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfe98ad05400e7ac7a1df791645db08c66adc92d7a6449a406111303a265b71a"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb5226b11f4fce98c6e47c07819fbbfdda6d3fd529cd176ad8a1e0b98a70b05"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ee396f63a1f540fb3aecb8cc698180d30573a661be47fb3fff45cbd2b5d4686"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e85ea159f2d2132d4fcb71abb7df9683314f6073bf8ee9f9bd576440245e59c"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ed823997c3300b541da0fcc9eee8fbe6740e07939ffa432824cfca287472d652"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4333b5c2801e44bf342207a7700378a1013f300116c9553ce1ffbc73047d2a02"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:681ef7a21e6990583533c3a3038b7176f5e51e5d345fe2d9109b54f6bffcabcd"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1891903e567d728175c0475a1f0ffc1d1580013b0b265b9e2f1b8c93d58b2d05"}, + {file = "rpds_py-0.8.8-cp39-none-win32.whl", hash = "sha256:ee42ce4ef46ea334ce8ab63d5a57c7fd78238c9c7293b3caa6dfedf11bd28773"}, + {file = "rpds_py-0.8.8-cp39-none-win_amd64.whl", hash = "sha256:0e8da63b9baa154ec9ddd6dd397893830d17e5812ceb50edbae8122d8ecb9f2e"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ecc79cd61c4c16f92521c7d34e0f534bc486fc5ed5d1fdf8d4e6e0c578dc7e07"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d43e4253469a6149f4dae91189ccbf832dcd870109b940fa6acb02769e57802b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9985927f001d98d38ad90e0829d3e3c162ce42060bafb833782a934bf1d1d39b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7af604c6581da01fd5f89a917c903a324779fdfa7b3ae66204865d34b5f2c502"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53ed81e3a9a0eb3dfd404ee097d4f50ec6985301ea6e03b4d57cd7ef239179f9"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6b93a8a17e84a53fa6636037955ba8e795f6645dab5ccbeb356c8dbc9cb371"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:592b9de8d82e919ffbf069e586808f56118a7f522bb0d018c54fa3526e5f2bed"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af0920c26fe3421f9e113975c185f7c42a3f0a8ead72cee5b4e6648af5d8cecc"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:28ce85916d7377b9734b280872fb456aa048712901edff9d60836c7b2e177265"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:cbbb26ac4dade6fdec22cb1155ca38d270b308f57cfd48a13a7a8ecc79369e82"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8469755965ff2aa1da08e6e0afcde08950ebba84a4836cdc1672d097c62ffdbd"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1c84912d77b01651488bbe392df593b4c5852e213477e268ebbb7c799059d78"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:180963bb3e1fcc6ed6313ece5e065f0df4021a7eb7016084d3cbc90cd2a8af3e"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e1251d6690f356a305192089017da83999cded1d7e2405660d14c1dff976af7"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:36266e2e49b36ec6cc148e36667030d8e7f1c009edd2ca978ab09ed9c5a7589a"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bd8dbc1c63668124e5e48e601d32f1053cfd5a86004ae0e55dc9ba8b1e7de29"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c62fdb01111da948e8446caaefebf2ca4307a58fcbc10039b48d0db7205397c"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79ac819182795a2168ed11075c7362de368f360244fb7cea8274c222b2d55365"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b949e86affe17c8828d82936c51d7aa9b686511f9ac99a4b1de596d7140c8083"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:fffd98c1fd6b38df35e471549c2486d826af0fda6ca55c0bbbb956b291e7f2ae"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:9b331fa451d725258c1ad0ae6816cf36d55294e5cb68338cf91550b9a448a48f"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:18a97bb7f211b247346983092186927c517153ac155c611f43ca83d5ee93a3e2"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:df3097abf5fd09bfcd8f6fd02d052b25cc3e160b3ee71b6fbd831b2cd516c958"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:961828c668140796c4963edb14cd968666d5414b9b5829997a4f475fd917906e"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a55fd01f61df19e4f53fd67b63ca9bf47559632c3f7d4037faa06d3a6fed54"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f64ef5700ff8fded62b12d1ea55463031cc5a353b670ed7146126c6cbf28788"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a747477838a90b9264f434b5399309f9badb32c80ff3e9c4f6d5b87fddcbaa09"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:358c7a976482537d26fcbdc7808e7cc25f64816fe89681f9aa8bef13e16c7370"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e086610118163400a1822af0ee857581c0e047aa50a9c3543d17fbe65183a339"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:755a837fb7053dbf511fba26343423bd80d3b75a5d7f57f6e407c2fe5ae46682"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:247a1fd9bcdb373380cb8c0041417c9995fc163c9d88a39f5ec3d960114aca22"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c26b1a0425c038cc23cf5770a47d7a7382fe68d6d10fb2a52c2896ca94e72550"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4c66a5f9ca9c5fcb2527ad969541521f7216db713a7bd63aee52c3f5efa5924a"}, + {file = "rpds_py-0.8.8.tar.gz", hash = "sha256:300b8579740b06e246238b730e636f314a7d8dc475be1868650f5d3ddc29a0d8"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "wrapt" +version = "1.15.0" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "91497743b4d06b81031ba74bc973ba41d5eed5de37a0202196578151280f11fa" diff --git a/confluence/provider/__init__.py b/confluence/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/confluence/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/confluence/provider/app.py b/confluence/provider/app.py new file mode 100644 index 000000000..4fd64a8c6 --- /dev/null +++ b/confluence/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/confluence/provider/client.py b/confluence/provider/client.py new file mode 100644 index 000000000..f68ba0307 --- /dev/null +++ b/confluence/provider/client.py @@ -0,0 +1,87 @@ +import asyncio +import functools + +from atlassian import Confluence +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class ConfluenceClient: + def __init__(self, url, user, api_token, space, search_limit=10): + try: + self.confluence = Confluence( + url=url, + username=user, + password=api_token, + ) + self.space = space + self.search_limit = search_limit + self.loop = None + except Exception as e: + raise UpstreamProviderError( + f"Error while initializing Confluence client: {str(e)}" + ) + + def _init_loop(self): + self.loop = asyncio.new_event_loop() + + def _close_loop(self): + self.loop.stop() + self.loop.close() + + async def _gather(self, pages, results): + tasks = [] + for page in pages: + page_id = page["content"]["id"] + tasks.append(self._fetch_page(page_id, results)) + return await asyncio.gather(*tasks) + + async def _fetch_page(self, page_id, fetch_results): + page_base_url = self.confluence.url + "/spaces/" + self.space + "/pages/" + full_page = await self.loop.run_in_executor( + None, + functools.partial( + self.confluence.get_page_by_id, page_id=page_id, expand="body.view" + ), + ) + page = { + "title": full_page["title"], + "text": full_page["body"]["view"]["value"], + "url": page_base_url + page_id, + } + fetch_results.append(page) + + def search_pages(self, query): + results = self.confluence.cql('text ~ "' + query + '"', limit=self.search_limit) + return results["results"] if results and "results" in results else [] + + def fetch_pages(self, pages): + results = [] + self._init_loop() + self.loop.run_until_complete(self._gather(pages, results)) + self._close_loop() + return results + + def search(self, query): + pages = self.search_pages(query) + return self.fetch_pages(pages) + + +def get_client(): + global client + if client is not None: + return client + + assert (url := app.config.get("PRODUCT_URL")), "CONFLUENCE_PRODUCT_URL must be set" + assert (user := app.config.get("USER")), "CONFLUENCE_USER must be set" + assert ( + api_token := app.config.get("API_TOKEN") + ), "CONFLUENCE_API_TOKEN must be set" + assert (space := app.config.get("SPACE_NAME")), "CONFLUENCE_SPACE_NAME must be set" + search_limit = app.config.get("SEARCH_LIMIT", 10) + client = ConfluenceClient(url, user, api_token, space, search_limit) + + return client diff --git a/confluence/provider/provider.py b/confluence/provider/provider.py new file mode 100644 index 000000000..229a46125 --- /dev/null +++ b/confluence/provider/provider.py @@ -0,0 +1,12 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) +confluence = None + + +def search(query): + client = get_client() + pages = client.search(query) + return pages diff --git a/confluence/pyproject.toml b/confluence/pyproject.toml new file mode 100644 index 000000000..aad6c4c6d --- /dev/null +++ b/confluence/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "connector-confluence" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +atlassian-python-api = "^3.39.0" +flask = "2.2.5" +connexion = { extras = ["swagger-ui"], version = "^2.14.2" } +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" +asyncio = "^3.4.3" +black = "^23.11.0" + + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/contentful/.env-template b/contentful/.env-template new file mode 100644 index 000000000..9953864c3 --- /dev/null +++ b/contentful/.env-template @@ -0,0 +1,7 @@ +CONTENTFUL_SPACE_ID= +CONTENTFUL_PREVIEW_ACCESS_TOKEN= +CONTENTFUL_ENVIRONMENT=master +CONTENTFUL_SEARCH_LIMIT=20 +CONTENTFUL_CONTENT_TYPE_SEARCH= +CONTENTFUL_FIELDS_MAPPING= +CONTENTFUL_CONNECTOR_API_KEY= diff --git a/contentful/README.md b/contentful/README.md new file mode 100644 index 000000000..b32282d39 --- /dev/null +++ b/contentful/README.md @@ -0,0 +1,106 @@ +# Contentful Connector. + +This package is a utility for connecting Cohere to Contentful. + +## Configuration + +This connector requires the following environment variables: + +``` +CONTENTFUL_SPACE_ID +``` + +This variable should contain the Space ID of the Contentful Space that will be searched. +You can find the Space ID in the Contentful web app under Settings > General Settings > Space ID. + +``` +CONTENTFUL_PREVIEW_ACCESS_TOKEN +``` + +This variable should contain the Preview API access token for the Contentful Space that will be searched. +You can find the Preview API key in the Contentful web app under Settings > API Keys > Content Preview API - access +token. + +``` +CONTENTFUL_ENVIRONMENT +``` + +This variable should contain the environment of the Contentful Space that will be searched. +You can find the environment in the Contentful web app under Settings > API Keys > > Environments. + +``` +CONTENTFUL_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +### Optional Configuration + +``` +CONTENTFUL_CONTENT_TYPE_SEARCH +``` + +This variable should contain the Content Type ID of the Contentful Content Type that will be searched. +If this variable is not set, the connector will search all Content Types. + +``` +CONTENTFUL_SEARCH_LIMIT +``` + +This variable should contain the maximum number of results that will be returned by the connector. By default, 20 results are returned. + +``` +CONTENTFUL_FIELDS_MAPPING +``` + +This variable should contain a JSON object that maps Contentful fields to Cohere fields. +If this variable is not set, the connector will return results as is. +The JSON object should be in the following format: + +``` +{ + "contentful_content_type.contentful_field_id": "cohere_field", + "contentful_content_type.contentful_field_id": "cohere_field", + ... +} + +for example: + +{ + "pageBlogPost.content":"text", + "pageBlogPost.slug":"url", + "componentSeo.page_title":"title" +} +``` + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/contentful/poetry.lock b/contentful/poetry.lock new file mode 100644 index 000000000..4bf277e68 --- /dev/null +++ b/contentful/poetry.lock @@ -0,0 +1,782 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98"}, + {file = "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd"}, + {file = "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604"}, + {file = "black-23.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8"}, + {file = "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e"}, + {file = "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699"}, + {file = "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171"}, + {file = "black-23.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c"}, + {file = "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23"}, + {file = "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b"}, + {file = "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c"}, + {file = "black-23.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9"}, + {file = "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204"}, + {file = "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a"}, + {file = "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a"}, + {file = "black-23.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747"}, + {file = "black-23.10.0-py3-none-any.whl", hash = "sha256:e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e"}, + {file = "black-23.10.0.tar.gz", hash = "sha256:31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d"}, + {file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786"}, + {file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df"}, + {file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c"}, + {file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e"}, + {file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a"}, + {file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884"}, + {file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "contentful" +version = "2.1.1" +description = "Contentful Delivery API Client" +optional = false +python-versions = "*" +files = [ + {file = "contentful-2.1.1-py3-none-any.whl", hash = "sha256:6be3fe980cc68cf2eab2b39958df3ae9b7c4d2b26ee92a4926dd8fdd88bf20c0"}, + {file = "contentful-2.1.1.tar.gz", hash = "sha256:7e83776577326c5f088771a83455c2e0eb23c5ee571d024812159b39bb03d206"}, +] + +[package.dependencies] +python-dateutil = "*" +requests = ">=2.20.0,<3.0" + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6"}, + {file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d"}, + {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9"}, + {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063"}, + {file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad"}, + {file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069"}, + {file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80"}, + {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066"}, + {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281"}, + {file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116"}, + {file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6"}, + {file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9"}, + {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d"}, + {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586"}, + {file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02"}, + {file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53"}, + {file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13"}, + {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b"}, + {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801"}, + {file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1"}, + {file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5"}, + {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647"}, + {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3"}, + {file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d"}, + {file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487"}, + {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977"}, + {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403"}, + {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971"}, + {file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "0b2a9340bfd4d4ee707c60bd595262ac9f2cc7422a658290d99224f707a79aeb" diff --git a/contentful/provider/__init__.py b/contentful/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/contentful/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/contentful/provider/app.py b/contentful/provider/app.py new file mode 100644 index 000000000..55c3268fa --- /dev/null +++ b/contentful/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Contentful config error: {error}") + abort(502, f"Contentful config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/contentful/provider/client.py b/contentful/provider/client.py new file mode 100644 index 000000000..48077351e --- /dev/null +++ b/contentful/provider/client.py @@ -0,0 +1,54 @@ +from contentful import Client +from flask import current_app as app + +client = None + +PREVIEW_API_URL = "preview.contentful.com" + + +class ContentfulApiClient(Client): + def __init__( + self, space_id, access_token, environment, content_type, mapping, search_limit + ): + super().__init__( + space_id, + access_token, + api_url=PREVIEW_API_URL, + environment=environment, + max_include_resolution_depth=20, + reuse_entries=True, + content_type_cache=False, + ) + self.content_type = content_type + self.mapping = mapping + self.search_limit = search_limit + + def get_search_limit(self): + return self.search_limit + + def get_content_type(self): + return self.content_type + + def get_mapping(self): + return self.mapping + + +def get_client(): + global client + assert (space_id := app.config.get("SPACE_ID")), "CONTENTFUL_SPACE_ID must be set" + assert ( + access_token := app.config.get("PREVIEW_ACCESS_TOKEN") + ), "CONTENTFUL_PREVIEW_ACCESS_TOKEN must be set" + assert ( + environment := app.config.get("ENVIRONMENT") + ), "CONTENTFUL_ENVIRONMENT must be set" + limit = app.config.get("SEARCH_LIMIT", 20) + mapping = app.config.get("FIELDS_MAPPING", {}) + content_type = app.config.get("CONTENT_TYPE_SEARCH", None) + + if not client: + client = ContentfulApiClient( + space_id, access_token, environment, content_type, mapping, limit + ) + + return client diff --git a/contentful/provider/provider.py b/contentful/provider/provider.py new file mode 100644 index 000000000..c40062257 --- /dev/null +++ b/contentful/provider/provider.py @@ -0,0 +1,45 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def process_content(node): + if isinstance(node, list): + values = [process_content(item) for item in node] + return " ".join(values) + elif isinstance(node, dict): + if "content" in node: + return process_content(node["content"]) + elif "value" in node: + return node["value"] + return str(node) + + +def serialize_results(results, mapping): + data = [] + for result in results: + item = {"content_type": result.content_type.id, "id": result.id} + for key, value in result.fields().items(): + item[key] = str(value) + if key == "content": + item[key] = process_content(value) + type_key = f"{result.content_type.id}.{key}" + if type_key in mapping: + item[mapping[type_key]] = item.pop(key) + + data.append(item) + return data + + +def search(query): + client = get_client() + + params = {"query": query, "limit": client.get_search_limit()} + content_type = client.get_content_type() + if content_type: + params["content_type"] = content_type + results = client.entries(params) + + return serialize_results(results.items, client.get_mapping()) diff --git a/contentful/pyproject.toml b/contentful/pyproject.toml new file mode 100644 index 000000000..7e113702e --- /dev/null +++ b/contentful/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "contentful-provider" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" +contentful = "^2.1.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/copper/.env-template b/copper/.env-template new file mode 100644 index 000000000..f2d1df703 --- /dev/null +++ b/copper/.env-template @@ -0,0 +1,5 @@ +COPPER_API_TOKEN= +COPPER_API_EMAIL= +COPPER_CONNECTOR_API_KEY= +COPPER_SEARCH_LIMIT= +COPPER_FIELDS_MAPPING={"opportunity.name":"title","opportunity.details":"text","task.name":"title","task.details":"text"} diff --git a/copper/README.md b/copper/README.md new file mode 100644 index 000000000..22879508e --- /dev/null +++ b/copper/README.md @@ -0,0 +1,95 @@ +# Cohere Copper CRM Search connector + +This package is a utility for connecting Cohere to Copper CRM. + +## Configuration + +The search connector requires the following environment variables: + +``` +COPPER_API_TOKEN +``` + +This variable should contain the API token for the Copper account. +To get the API token, use the +instructions [here](https://developer.copper.com/introduction/authentication.html#api-keys) + +``` +COPPER_API_EMAIL +``` + +This variable should contain the Copper account email address. + +``` +COPPER_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +### Optional Configuration + +``` +COPPER_SEARCH_LIMIT +``` + +This variable should contain the maximum number of results +that will be returned by the search connector per entity(opportunities and tasks). +If this variable is not set, the search connector will return 20 results. + +``` +CONTENTFUL_FIELDS_MAPPING +``` + +This variable should contain a JSON object that maps Copper fields to Cohere fields. +If this variable is not set, the search connector will return results as is. +The JSON object should be in the following format: + +``` +{ + "opportunity.opportunity_field": "cohere_field", + "task.task_field": "cohere_field", + ... +} + +for example: + +{ + "opportunity.name":"title", + "opportunity.details":"text", + "task.name":"title", + "task.details":"text" +} +``` + +The search connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/copper/poetry.lock b/copper/poetry.lock new file mode 100644 index 000000000..e1b7f749a --- /dev/null +++ b/copper/poetry.lock @@ -0,0 +1,742 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + { file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04" }, + { file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" }, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + { file = "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98" }, + { file = "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd" }, + { file = "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604" }, + { file = "black-23.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699" }, + { file = "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171" }, + { file = "black-23.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b" }, + { file = "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c" }, + { file = "black-23.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a" }, + { file = "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a" }, + { file = "black-23.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747" }, + { file = "black-23.10.0-py3-none-any.whl", hash = "sha256:e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e" }, + { file = "black-23.10.0.tar.gz", hash = "sha256:31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd" }, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + { file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" }, + { file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + { file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884" }, + { file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2" }, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + { file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28" }, + { file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" }, +] + +[package.dependencies] +colorama = { version = "*", markers = "platform_system == \"Windows\"" } + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + { file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" }, + { file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c" }, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + { file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" }, + { file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" }, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + { file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36" }, + { file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646" }, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = { version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\"" } +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf" }, + { file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0" }, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + { file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0" }, + { file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033" }, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + { file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" }, + { file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4" }, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + { file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" }, + { file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417" }, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + { file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44" }, + { file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a" }, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" }, + { file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852" }, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e" }, + { file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1" }, + { file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb" }, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba" }, + { file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad" }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + { file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d" }, + { file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" }, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + { file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" }, + { file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5" }, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + { file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20" }, + { file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" }, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + { file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" }, + { file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3" }, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + { file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba" }, + { file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a" }, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + { file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a" }, + { file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515" }, + { file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290" }, + { file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924" }, + { file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673" }, + { file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b" }, + { file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741" }, + { file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9" }, + { file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0" }, + { file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4" }, + { file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54" }, + { file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df" }, + { file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa" }, + { file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867" }, + { file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735" }, + { file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6" }, + { file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206" }, + { file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c" }, + { file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5" }, + { file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c" }, + { file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486" }, + { file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43" }, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf" }, + { file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + { file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f" }, + { file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" }, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + { file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6" }, + { file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063" }, + { file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad" }, + { file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281" }, + { file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116" }, + { file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586" }, + { file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02" }, + { file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801" }, + { file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1" }, + { file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3" }, + { file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d" }, + { file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971" }, + { file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50" }, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + { file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575" }, + { file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516" }, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + { file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" }, + { file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84" }, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" }, + { file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe" }, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/copper/provider/__init__.py b/copper/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/copper/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/copper/provider/app.py b/copper/provider/app.py new file mode 100644 index 000000000..cfe8bf9e0 --- /dev/null +++ b/copper/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Copper provider error: {error}") + abort(502, f"Copper config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/copper/provider/client.py b/copper/provider/client.py new file mode 100644 index 000000000..b28a1b539 --- /dev/null +++ b/copper/provider/client.py @@ -0,0 +1,67 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class CopperApiClient: + API_BASE_URL = "https://api.copper.com" + API_VERSION = "v1" + API_APPLICATION = "developer_api" + OPPORTUNITIES_SEARCH_ENDPOINT = "/opportunities/search" + TASKS_SEARCH_ENDPOINT = "/tasks/search" + + def __init__(self, api_token, api_email, search_limit, mapping): + self.headers = { + "X-PW-AccessToken": api_token, + "X-PW-Application": self.API_APPLICATION, + "X-PW-UserEmail": api_email, + "Content-Type": "application/json", + } + self.api_url = f"{self.API_BASE_URL}/{self.API_APPLICATION}/{self.API_VERSION}" + self.search_limit = search_limit + self.mapping = mapping + + def get_search_limit(self): + return self.search_limit + + def get_mapping(self): + return self.mapping + + def post(self, url, params={}): + response = requests.post(url, headers=self.headers, json=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def _get_entities(self, entity_endpoint): + url = f"{self.api_url}{entity_endpoint}" + params = {"page_size": self.search_limit} + return self.post(url, params) + + def get_opportunities(self): + opportunities = self._get_entities(self.OPPORTUNITIES_SEARCH_ENDPOINT) + return list(map(lambda d: {**d, "entity_type": "opportunity"}, opportunities)) + + def get_tasks(self): + tasks = self._get_entities(self.TASKS_SEARCH_ENDPOINT) + return list(map(lambda d: {**d, "entity_type": "task"}, tasks)) + + +def get_client(): + global client + assert (api_token := app.config.get("API_TOKEN")), "COPPER_API_KEY must be set" + assert (api_email := app.config.get("API_EMAIL")), "COPPER_API_EMAIL must be set" + + search_limit = app.config.get("SEARCH_LIMIT", 20) + mapping = app.config.get("FIELDS_MAPPING", {}) + + if not client: + client = CopperApiClient(api_token, api_email, search_limit, mapping) + + return client diff --git a/copper/provider/provider.py b/copper/provider/provider.py new file mode 100644 index 000000000..8f59278c1 --- /dev/null +++ b/copper/provider/provider.py @@ -0,0 +1,38 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search_results(results, query): + keywords = query.split() + results = [ + result + for result in results + if any(keyword.lower() in result["name"].lower() for keyword in keywords) + or any(keyword.lower() in result["details"].lower() for keyword in keywords) + ] + return results + + +def serialize_results(results, mapping): + data = [] + for result in results: + item = {} + for key, value in result.items(): + item[key] = str(value) + type_key = f"{result['entity_type']}.{key}" + if type_key in mapping: + item[mapping[type_key]] = item.pop(key) + + data.append(item) + return data + + +def search(query): + client = get_client() + opportunities = client.get_opportunities() + tasks = client.get_tasks() + mapping = client.get_mapping() + return serialize_results(search_results([*opportunities, *tasks], query), mapping) diff --git a/copper/pyproject.toml b/copper/pyproject.toml new file mode 100644 index 000000000..14b9b2d5f --- /dev/null +++ b/copper/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "copper" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/couchbase/.env-template b/couchbase/.env-template new file mode 100644 index 000000000..a4723fe7b --- /dev/null +++ b/couchbase/.env-template @@ -0,0 +1,9 @@ +COUCHBASE_CONNECTION_STRING= +COUCHBASE_USER= +COUCHBASE_PASSWORD= +COUCHBASE_BUCKET= +COUCHBASE_SCOPE= +COUCHBASE_SEARCH_INDEX= +COUCHBASE_SEARCH_LIMIT= +COUCHBASE_CONNECTOR_API_KEY= +COUCHBASE_SEARCH_FIELDS_MAPPING={"description":"text","name":"title","airportname":"title","with":"text","click":"title"} diff --git a/couchbase/README.md b/couchbase/README.md new file mode 100644 index 000000000..ccdb43713 --- /dev/null +++ b/couchbase/README.md @@ -0,0 +1,115 @@ +# Couchbase Connector + +Connects Cohere to a Couchbase database. + +## Configuration + +To use this connector you must have access to a Couchbase database. It does +not install a local instance of Couchbase or load test data into it. +Also you need to add the connector host to the list of Allowed IP Addresses in the Couchbase settings. +To deploy the Couchbase connector, use the python:3.11-slim-buster Docker image. + +This connector requires the following environment variables: + +``` +COUCHBASE_CONNECTION_STRING +``` + +This variable should contain the connection string for the Couchbase database. +This string should be set without the "couchbase://" prefix. +If you are using the Couchbase Cloud, you can get it from the "Connect" tab of the cluster. + +``` +COUCHBASE_USER +``` + +This variable should contain the username for the Couchbase database. +If you are using the Couchbase Cloud, you need to create Database Access credentials under the "Settings" -> " +Security" -> "Database Access" tab. + +``` +COUCHBASE_PASSWORD +``` + +This variable should contain the password for the Couchbase database. +If you are using the Couchbase Cloud, you need to create Database Access credentials under the "Settings" -> " +Security" -> "Database Access" tab. + +``` +COUCHBASE_BUCKET +``` + +This variable should contain the bucket name for the Couchbase database. + +``` +COUCHBASE_SCOPE +``` + +This variable should contain the scope name for the Couchbase database. + +``` +COUCHBASE_SEARCH_INDEX +``` + +This variable should contain the search index name or Full Text Alias name for the Couchbase database. +You can find the index name in the "Search" tab of the cluster. +Read more about [Full Text Search](https://docs.couchbase.com/cloud/search/search.html). + +``` +COUCHBASE_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Couchbase connector. + +### Optional Configuration + +``` +SNOWFLAKE_SEARCH_FIELDS_MAPPING +``` + +This variable should contain a JSON object mapping Cohere fields +to Couchbase fields(key is Couchbase field which will be used for search +and should be correct data field from the collections we search through, +the value is Cohere field). If this variable is not set, the results will be returned as is. + +``` +COUCHBASE_SEARCH_LIMIT +``` + +This variable should contain the number of results to return from the search. +The default value is 20. + +## Development + +Copy the `.env-template` file to `.env` and edit the values accordingly. + +``` +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry. We recommend using in-project +virtual environments: + +```bash +poetry config virtualenvs.in-project true +poetry install +``` + +Then start the server: + +```bash +poetry run flask --app provider run --debug +``` + +Once the Mongo and Flask servers are running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/couchbase/poetry.lock b/couchbase/poetry.lock new file mode 100644 index 000000000..4567c40b6 --- /dev/null +++ b/couchbase/poetry.lock @@ -0,0 +1,829 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "couchbase" +version = "4.1.8" +description = "Python Client for Couchbase" +optional = false +python-versions = ">=3.7" +files = [ + {file = "couchbase-4.1.8-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:50178ffa419db14a606d1c4ad1a1e7b0c8e79ddf0bab5308d9b4e0bda3b517a9"}, + {file = "couchbase-4.1.8-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:f7f69dfcd95af66ff4dcfd4647a8724e8c2dada34df8842466c61cb8012935a3"}, + {file = "couchbase-4.1.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3181743f2820c1ad2dba08aef7ddc03c7aa1c671e38a179ab4fe61cd3bc6db82"}, + {file = "couchbase-4.1.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:f44805a7e5b23da0c2d3f99f8103051eab52c89d6b7175e4d78bba91c72585ba"}, + {file = "couchbase-4.1.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:db8466993e7b75dbf226350c4e2427eac9ea2a922a49b6288f5c70d36ac8a8e8"}, + {file = "couchbase-4.1.8-cp310-cp310-win_amd64.whl", hash = "sha256:abb4e6770f2aa9c6da2d0976bf2af7ea733b6b6e7bb200839042605338cf1936"}, + {file = "couchbase-4.1.8-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:e6b4b76b21616a4634486d743876f427740345c8bc7485f11acdef8c1708bd25"}, + {file = "couchbase-4.1.8-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:2cba2f455fd94cde8a700c864105bee5d65dccb5db4e1c408b31361033cd7a25"}, + {file = "couchbase-4.1.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:6c8e019c79c6e4168d748857471bc299398535de51869995ddee38474bb75457"}, + {file = "couchbase-4.1.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:55bf05b6a33eb1d50b5ddb5d30c8ce4e2478a7ad8ed3ac98a442c777cc495317"}, + {file = "couchbase-4.1.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:96455dff05c8f884e11eb29d757fdb107fc4dcb184278031000c471c8b5c3f51"}, + {file = "couchbase-4.1.8-cp311-cp311-win_amd64.whl", hash = "sha256:c7d265e45ce3f2a242d29e9f8e85f7c6edf715742a87c60898015c9aa252524a"}, + {file = "couchbase-4.1.8-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:0445076551797f4e77ab4aece86dfafcddfccd64aa6d26c61419d6802c29ee0d"}, + {file = "couchbase-4.1.8-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:005d3d7c6a73cc50e094486245fe0bb79f1d3a3f5ee5fa48e449836a45856d10"}, + {file = "couchbase-4.1.8-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:86cc89007ec7b7228f071eeaabe3094ad93dcd54f932860239b669edfee78b7d"}, + {file = "couchbase-4.1.8-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:af3457d4ecb32d3a2cbc3219e3e54a05a90366d0738efec34796333a3e291548"}, + {file = "couchbase-4.1.8-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:affbbe5526a7f9f79a8d2a72b22964c8a188ff6a397c22066ddc8467f2d04944"}, + {file = "couchbase-4.1.8-cp38-cp38-win_amd64.whl", hash = "sha256:001d90fc2e9d02b944c8f389c10a16d986848f38248a609308991dff135b9b91"}, + {file = "couchbase-4.1.8-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:d2fc750122fec77c5d47017ef3e5daf91fb15565b93725c38a0df69c460468ab"}, + {file = "couchbase-4.1.8-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:26c1a07d3864d4d9e44128c8761ebb4c9d42547308bbd295e3aa446ebcaf5a49"}, + {file = "couchbase-4.1.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:a8a7a46e9789b6be7f434c39ad4594fac4e66f3e4ede150bfebf549b03039cad"}, + {file = "couchbase-4.1.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e6ac22ae4ad5b1f0941f8b07525879639d53b16faf843909af16a6e30a149762"}, + {file = "couchbase-4.1.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e57fd7e770ab2cdde82b0407a56978903bebca19decc1e547ca78d054246323c"}, + {file = "couchbase-4.1.8-cp39-cp39-win_amd64.whl", hash = "sha256:c50a44091203b08260b8104a1447e4b2acea4d2caef44ff87e5bbe5690315fb5"}, + {file = "couchbase-4.1.8.tar.gz", hash = "sha256:9b902bf89de515f56922cb6c9ba6a6431972d38fad305d6314cf6cb07fc6ffac"}, +] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.8.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.8.1-py3-none-any.whl", hash = "sha256:cec7b889196b9144d088e4c57d9ceef7374f6c39694ad1577a0aab50d27ea28c"}, + {file = "platformdirs-3.8.1.tar.gz", hash = "sha256:f87ca4fcff7d2b0f81c6a748a77973d7af0f4d526f98f308477c3c436c74d528"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.1-py3-none-any.whl", hash = "sha256:185d4a29f001c6e8ae4dad3861e61282a81cb01b9f0ef70a15450c45c6513a0d"}, + {file = "referencing-0.30.1.tar.gz", hash = "sha256:9370c77ceefd39510d70948bbe7375ce2d0125b9c11fd380671d4de959a8e3ce"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "types-colorama" +version = "0.4.15.12" +description = "Typing stubs for colorama" +optional = false +python-versions = "*" +files = [ + {file = "types-colorama-0.4.15.12.tar.gz", hash = "sha256:fbdfc5d9d24d85c33bd054fbe33adc6cec44eedb19cfbbabfbbb57dc257ae4b8"}, + {file = "types_colorama-0.4.15.12-py3-none-any.whl", hash = "sha256:23c9d4a00961227f7ef018d5a1c190c4bbc282119c3ee76a17677a793f13bb82"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "59c73ea7ea60308eb847b52926b69c5a06028328dd0cb46e5098bf4cca9b7ebb" diff --git a/couchbase/provider/__init__.py b/couchbase/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/couchbase/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/couchbase/provider/app.py b/couchbase/provider/app.py new file mode 100644 index 000000000..9f2186e39 --- /dev/null +++ b/couchbase/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Couchbase config error: {error}") + abort(502, f"Couchbase config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/couchbase/provider/client.py b/couchbase/provider/client.py new file mode 100644 index 000000000..6d47211c7 --- /dev/null +++ b/couchbase/provider/client.py @@ -0,0 +1,104 @@ +from datetime import timedelta + +import couchbase.search as search +from couchbase.auth import PasswordAuthenticator +from couchbase.cluster import Cluster +from couchbase.options import ClusterOptions, SearchOptions +from flask import current_app as app + +client = None + + +class CouchbaseClient: + def __init__( + self, + endpoint, + username, + password, + bucket_name, + scope, + search_index, + mappings, + search_limit, + ): + auth = PasswordAuthenticator(username, password) + options = ClusterOptions(auth) + options.apply_profile("wan_development") + self.cluster = Cluster("couchbases://{}".format(endpoint), options) + self.cluster.wait_until_ready(timedelta(seconds=10)) + self.bucket = self.cluster.bucket(bucket_name) + self.scope = self.bucket.scope(scope) + self.collection = self.bucket.default_collection() + self.search_index = search_index + self.mappings = mappings + self.search_limit = search_limit + + def get_search_index(self): + return self.search_index + + def get_mappings(self): + return self.mappings + + def get_search_limit(self): + return self.search_limit + + def search_using_index(self, index_name, query): + query = "+" + "+".join(query.replace("+", "").split(" ")) + return self.cluster.search_query( + index_name, + search.QueryStringQuery(query), + SearchOptions(fields=["*"], limit=self.search_limit), + ) + + def get_entities_by_meta(self, meta_data): + results = [] + if not meta_data: + return [] + meta_parsed = {} + for item in meta_data.rows(): + entity_type = item.fields.get("_$c") + entity_id = item.id + + if entity_type in meta_parsed: + meta_parsed[entity_type].append(entity_id) + else: + meta_parsed[entity_type] = [entity_id] + + for entity_type, ids in meta_parsed.items(): + docs = self.scope.collection(entity_type).get_multi(ids) + for doc_id, doc in docs.results.items(): + if doc.success: + value = doc.content_as[dict] + value["full_id"] = doc_id + results.append(value) + return results + + +def get_client(): + global client + assert ( + connection_string := app.config.get("CONNECTION_STRING") + ), "COUCHBASE_CONNECTION_STRING must be set" + assert (user := app.config.get("USER")), "COUCHBASE_USER must be set" + assert (password := app.config.get("PASSWORD")), "COUCHBASE_PASSWORD must be set" + assert (bucket := app.config.get("BUCKET")), "COUCHBASE_BUCKET must be set" + assert (scope := app.config.get("SCOPE")), "COUCHBASE_SCOPE must be set" + assert ( + search_index := app.config.get("SEARCH_INDEX") + ), "COUCHBASE_SEARCH_INDEX must be set" + mappings = app.config.get("SEARCH_FIELDS_MAPPING", {}) + search_limit = app.config.get("SEARCH_LIMIT", 20) + + if not client: + client = CouchbaseClient( + connection_string, + user, + password, + bucket, + scope, + search_index, + mappings, + search_limit, + ) + + return client diff --git a/couchbase/provider/provider.py b/couchbase/provider/provider.py new file mode 100644 index 000000000..d847b436e --- /dev/null +++ b/couchbase/provider/provider.py @@ -0,0 +1,47 @@ +import logging +from typing import Any + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k.lower() + if k.lower() not in mappings + else mappings[k.lower()]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query) -> list[dict[str, Any]]: + if not query: + return [] + + client = get_client() + search_results_meta = client.search_using_index( + client.get_search_index(), query, client.get_search_limit() + ) + search_results = client.get_entities_by_meta(search_results_meta) + + return serialize_results(search_results or [], client.get_mappings()) diff --git a/couchbase/pyproject.toml b/couchbase/pyproject.toml new file mode 100644 index 000000000..2816c9f24 --- /dev/null +++ b/couchbase/pyproject.toml @@ -0,0 +1,31 @@ +[tool.poetry] +name = "couchbase" +version = "0.1.0" +description = "Connects Cohere to Couchbase" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +requests = "^2.31.0" +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" +couchbase = "^4.1.8" + + + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-colorama = "^0.4.15.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/courier/.env-template b/courier/.env-template new file mode 100644 index 000000000..c3ac45f6e --- /dev/null +++ b/courier/.env-template @@ -0,0 +1,2 @@ +COURIER_API_TOKEN= +COURIER_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/courier/README.md b/courier/README.md new file mode 100644 index 000000000..bc577a418 --- /dev/null +++ b/courier/README.md @@ -0,0 +1,35 @@ +# Courier Quick Start Connector + +Connects Cohere to Courier, the messaging tool. + +## Configuration + +You will need to fetch an API token from your Courier org. See the [docs](https://www.courier.com/docs/reference/authorization/). Use this value for the `COURIER_API_TOKEN` environment variable. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/courier/poetry.lock b/courier/poetry.lock new file mode 100644 index 000000000..11d978f17 --- /dev/null +++ b/courier/poetry.lock @@ -0,0 +1,842 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "trycourier" +version = "5.0.0" +description = "A Python Package for communicating with the Courier REST API." +optional = false +python-versions = ">=3.5" +files = [ + {file = "trycourier-5.0.0-py3-none-any.whl", hash = "sha256:bb6cba3363bbdd3da6d59125e504fd4c125ff14c6909146197c09db72f0eea4c"}, + {file = "trycourier-5.0.0.tar.gz", hash = "sha256:1d8d1334fc99347127757f66a9cdc7adef24df10fed6656aea1eef87c5640cb6"}, +] + +[package.dependencies] +requests = ">=2.23.0" + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "aa9097930b617270f064024bfe92e0bb34daddf4614ba4943498d6b7fe778179" diff --git a/courier/provider/__init__.py b/courier/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/courier/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/courier/provider/app.py b/courier/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/courier/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/courier/provider/client.py b/courier/provider/client.py new file mode 100644 index 000000000..4cc661ba1 --- /dev/null +++ b/courier/provider/client.py @@ -0,0 +1,52 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class CourierClient: + base_url = "https://api.courier.com" + + def __init__(self, token): + self.headers = {"Authorization": f"Bearer {token}"} + + def list_messages(self): + url = f"{self.base_url}/messages" + response = requests.get( + url, + headers=self.headers, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["results"] + + def get_message_content(self, message_id): + url = f"{self.base_url}/messages/{message_id}/output" + response = requests.get( + url, + headers=self.headers, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + text_fields = ["subject", "text"] + content_body = response.json()["results"][0]["content"] + + return {key: value for key, value in content_body.items() if key in text_fields} + + +def get_client(): + global client + assert (token := app.config.get("API_TOKEN")), "COURIER_API_TOKEN must be set" + if client is not None: + return client + + client = CourierClient(token) + return client diff --git a/courier/provider/provider.py b/courier/provider/provider.py new file mode 100644 index 000000000..fd2c11a81 --- /dev/null +++ b/courier/provider/provider.py @@ -0,0 +1,41 @@ +import logging +from typing import Any + + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + courier_client = get_client() + + messages = courier_client.list_messages() + + results = [] + for message in messages: + content = courier_client.get_message_content(message["id"]) + search_text = f"{content.get('text', '')}{content.get('text', '')}" + message.update(content) + + if query.lower() in search_text.lower(): + results.append(serialize_search_result(message)) + + return results + + +def serialize_search_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_result = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "subject" in stripped_result: + stripped_result["title"] = stripped_result.pop("subject") + + if "text" in stripped_result: + stripped_result["text"] = stripped_result.pop("text") + + return stripped_result diff --git a/courier/pyproject.toml b/courier/pyproject.toml new file mode 100644 index 000000000..db2f8558a --- /dev/null +++ b/courier/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "courier" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" +trycourier = "^5.0.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/discourse/.env-template b/discourse/.env-template new file mode 100644 index 000000000..c252f9e4a --- /dev/null +++ b/discourse/.env-template @@ -0,0 +1,4 @@ +DISCOURSE_API_HOST=https://discourse.example.com/ +DISCOURSE_API_KEY= +DISCOURSE_API_USERNAME=system +DISCOURSE_CONNECTOR_API_KEY= diff --git a/discourse/README.md b/discourse/README.md new file mode 100644 index 000000000..ad80c8175 --- /dev/null +++ b/discourse/README.md @@ -0,0 +1,43 @@ +# Discourse Quick Start Connector + +Connects Cohere to a Discourse server. + +## Limitations + +Allows full-text search over all Posts of your Discourse server. + +## Configuration + +This connector requires that the environment variables `DISCOURSE_API_HOST`, `DISCOURSE_API_KEY`, and `DISCOURSE_API_USERNAME` be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +Finally, to protect this connector from abuse, the `DISCOURSE_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/discourse/poetry.lock b/discourse/poetry.lock new file mode 100644 index 000000000..3585884ba --- /dev/null +++ b/discourse/poetry.lock @@ -0,0 +1,527 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "088ac4e95ac60453ae982a7989d180f9ed15573d3525c97017027196d5995dee" diff --git a/discourse/provider/__init__.py b/discourse/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/discourse/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/discourse/provider/app.py b/discourse/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/discourse/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/discourse/provider/provider.py b/discourse/provider/provider.py new file mode 100644 index 000000000..a7c9ee17c --- /dev/null +++ b/discourse/provider/provider.py @@ -0,0 +1,48 @@ +import logging +from urllib.parse import urljoin + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) +POST_LIMIT = 10 + + +def extract_post_data(post_json): + return { + "text": post_json.get("raw"), + "link": urljoin( + app.config["API_HOST"], + f"/t/{post_json.get('topic_slug')}/{post_json.get('topic_id')}", + ), + "username": post_json.get("username"), + "created_at": post_json.get("created_at"), + "reply_count": post_json.get("reply_count"), + "reactions": post_json.get("reactions"), + } + + +def search(query): + headers = { + "Accept": "application/json", + "Api-Key": app.config["API_KEY"], + "Api-Username": app.config["API_USERNAME"], + } + search_url = urljoin(app.config["API_HOST"], "/search") + response = requests.get(search_url, params={"q": query}, headers=headers) + + if response.status_code != 200: + logger.error(f"Failed to query {search_url}") + raise UpstreamProviderError(f"Failed to query {search_url}") + + post_url = urljoin(app.config["API_HOST"], "/posts/") + posts = [ + extract_post_data( + requests.get(post_url + str(result["id"]), headers=headers).json() + ) + for result in response.json()["posts"][:POST_LIMIT] + ] + + return posts diff --git a/discourse/pyproject.toml b/discourse/pyproject.toml new file mode 100644 index 000000000..1fbafb3de --- /dev/null +++ b/discourse/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "discourse" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/docusign/.env-template b/docusign/.env-template new file mode 100644 index 000000000..cb6d5a915 --- /dev/null +++ b/docusign/.env-template @@ -0,0 +1,8 @@ +DOCUSIGN_IS_PROD_ENV= +DOCUSIGN_ACCESS_TOKEN= +DOCUSIGN_API_ACCOUNT_ID= +DOCUSIGN_FROM_DATE= +DOCUSIGN_TO_DATE= +DOCUSIGN_CONNECTOR_API_KEY= + + diff --git a/docusign/README.md b/docusign/README.md new file mode 100644 index 000000000..f107be7b8 --- /dev/null +++ b/docusign/README.md @@ -0,0 +1,85 @@ +# Docusign Connector + +Connects Cohere to a Docusign. + +## Configuration + +To use this connector you will need to create an application in your Docusign account. +See the documentation [here](https://developers.docusign.com/platform/build-integration/) to create the application and +use it. After the application is created, you will need to set the following environment variable: + +```bash +DOCUSIGN_API_ACCOUNT_ID= +``` + +To use DocuSign API we also need the ACCESS_TOKEN. To get it, please follow the steps described in the documentation +[here](https://developers.docusign.com/platform/auth/). Docusign API uses OAuth2.0 for authentication. +You will need to chose one of the authentication flows described in the documentation above. +For example to use the Implicit Grant flow, you will need to +do [next steps](https://developers.docusign.com/platform/auth/implicit/implicit-get-token/) to get the Token. +Also, please note that the token scope should be set to `signature` when you request it. +Token lifetime is limited. After it expires, you will need to get a new one. +After you get the ACCESS_TOKEN, please set the following environment variable: + +```bash +DOCUSIGN_ACCESS_TOKEN= +``` + +### Optional Configuration + +The DocuSign connector has several optional configuration parameters: + +```bash +DOCUSIGN_IS_PROD_ENV=<1 or 0> +``` + +This parameter is used to specify the API environment. By default, it is set to 1 (production environment). +If you want to use the demo environment, please set it to 0. The endpoints base URI depends on this parameter. +For example, if you set it to 1, the base URI will be https://account.docusign.com/oauth. +If you set it to 0, the base URI will be https://account-d.docusign.com/oauth. + +```bash +DOCUSIGN_FROM_DATE== +``` + +By default, the search will be performed from the 2018-01-01. If you want to change it, please set this parameter. + +```bash +DOCUSIGN_TO_DATE== +``` + +By default, the search will be performed to the current date. If you want to change it, please set this parameter. + +```bash +DOCUSIGN_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Docusign connector. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/docusign/poetry.lock b/docusign/poetry.lock new file mode 100644 index 000000000..bbb2de01e --- /dev/null +++ b/docusign/poetry.lock @@ -0,0 +1,993 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "cryptography" +version = "41.0.6" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:0f27acb55a4e77b9be8d550d762b0513ef3fc658cd3eb15110ebbcbd626db12c"}, + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ae236bb8760c1e55b7a39b6d4d32d2279bc6c7c8500b7d5a13b6fb9fc97be35b"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596"}, + {file = "cryptography-41.0.6-cp37-abi3-win32.whl", hash = "sha256:2132d5865eea673fe6712c2ed5fb4fa49dba10768bb4cc798345748380ee3660"}, + {file = "cryptography-41.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:48783b7e2bef51224020efb61b42704207dde583d7e371ef8fc2a5fb6c0aabc7"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8efb2af8d4ba9dbc9c9dd8f04d19a7abb5b49eab1f3694e7b5a16a5fc2856f5c"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c5a550dc7a3b50b116323e3d376241829fd326ac47bc195e04eb33a8170902a9"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:85abd057699b98fce40b41737afb234fef05c67e116f6f3650782c10862c43da"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f39812f70fc5c71a15aa3c97b2bbe213c3f2a460b79bd21c40d033bb34a9bf36"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:742ae5e9a2310e9dade7932f9576606836ed174da3c7d26bc3d3ab4bd49b9f65"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:35f3f288e83c3f6f10752467c48919a7a94b7d88cc00b0668372a0d2ad4f8ead"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d03186af98b1c01a4eda396b137f29e4e3fb0173e30f885e27acec8823c1b09"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b27a7fd4229abef715e064269d98a7e2909ebf92eb6912a9603c7e14c181928c"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:398ae1fc711b5eb78e977daa3cbf47cec20f2c08c5da129b7a296055fbb22aed"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7e00fb556bda398b99b0da289ce7053639d33b572847181d6483ad89835115f6"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60e746b11b937911dc70d164060d28d273e31853bb359e2b2033c9e93e6f3c43"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3288acccef021e3c3c10d58933f44e8602cf04dba96d9796d70d537bb2f4bbc4"}, + {file = "cryptography-41.0.6.tar.gz", hash = "sha256:422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "docusign-esign" +version = "3.24.0" +description = "DocuSign REST API" +optional = false +python-versions = "*" +files = [ + {file = "docusign-esign-3.24.0.tar.gz", hash = "sha256:eac4138e99fe0aae3e7c5623c3f1b1fc24a61ccebb19cbd5a41021e9e2a7f9fc"}, + {file = "docusign_esign-3.24.0-py2.py3-none-any.whl", hash = "sha256:15b7cbaa8b84ceeab05cb8293eacc91ab653f43bd47ca7644e3d11b973da0d42"}, +] + +[package.dependencies] +certifi = ">=14.05.14" +cryptography = ">=2.5" +nose = ">=1.3.7" +PyJWT = ">=1.7.1" +python-dateutil = ">=2.5.3" +setuptools = ">=21.0.0" +six = ">=1.8.0" +urllib3 = ">=1.15" + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "nose" +version = "1.3.7" +description = "nose extends unittest to make testing easier" +optional = false +python-versions = "*" +files = [ + {file = "nose-1.3.7-py2-none-any.whl", hash = "sha256:dadcddc0aefbf99eea214e0f1232b94f2fa9bd98fa8353711dacb112bfcbbb2a"}, + {file = "nose-1.3.7-py3-none-any.whl", hash = "sha256:9ff7c6cc443f8c51994b34a667bbcf45afd6d945be7477b52e97516fd17c53ac"}, + {file = "nose-1.3.7.tar.gz", hash = "sha256:f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pyjwt" +version = "2.8.0" +description = "JSON Web Token implementation in Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, + {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, +] + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "setuptools" +version = "68.2.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-68.2.0-py3-none-any.whl", hash = "sha256:af3d5949030c3f493f550876b2fd1dd5ec66689c4ee5d5344f009746f71fd5a8"}, + {file = "setuptools-68.2.0.tar.gz", hash = "sha256:00478ca80aeebeecb2f288d3206b0de568df5cd2b8fada1209843cc9a8d88a48"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "09e5346160403bdb7862d58c65a87db5880df80030006930f48e108af373eb39" diff --git a/docusign/provider/__init__.py b/docusign/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/docusign/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/docusign/provider/app.py b/docusign/provider/app.py new file mode 100644 index 000000000..70d350e24 --- /dev/null +++ b/docusign/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + data = [] + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Docusign search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Docusign config error: {error}") + abort(502, f"Docusign config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/docusign/provider/client.py b/docusign/provider/client.py new file mode 100644 index 000000000..79473ea0f --- /dev/null +++ b/docusign/provider/client.py @@ -0,0 +1,93 @@ +from typing import Any + +import requests +from docusign_esign import EnvelopesApi, ApiClient +from flask import current_app as app + +from .provider import UpstreamProviderError + +client = None + + +class DocuSignClient: + """ + A client for the DocuSign API. + """ + + BASE_PATH = "https://account.docusign.com" + BASE_PATH_DEV = "https://account-d.docusign.com" + OAUTH_USER_INFO_END_POINT = "/oauth/userinfo" + API_ENDPOINT = "/restapi" + + def __init__(self, account_id: str, access_token: str, is_prod: bool) -> None: + self.base_path = self.BASE_PATH if is_prod else self.BASE_PATH_DEV + self.account_id = account_id + self.access_token = access_token + self.api_client = self._get_client() + + def _get_user_info(self) -> dict[str, Any]: + url = self.base_path + self.OAUTH_USER_INFO_END_POINT + auth = {"Authorization": "Bearer " + self.access_token} + response = requests.get(url, headers=auth) + if response.status_code != 200: + message = ( + response.text or f"Get user info error: HTTP {response.status_code}" + ) + raise UpstreamProviderError(message) + + data = response.json() + if "accounts" not in data: + message = response.text or f"User Info Error: no data returned" + raise UpstreamProviderError(message) + for account in data["accounts"]: + if account["account_id"] == self.account_id: + return account + message = response.text or f"User Info Error: API_ACCOUNT_ID is not valid" + raise UpstreamProviderError(message) + + def _get_client(self) -> EnvelopesApi: + user_info = self._get_user_info() + api_client = ApiClient( + base_path=user_info["base_uri"], + ) + api_client.set_default_header( + header_name="Authorization", header_value=f"Bearer {self.access_token}" + ) + api_client.host = user_info["base_uri"] + self.API_ENDPOINT + envelopes_api = EnvelopesApi(api_client) + return envelopes_api + + def get_list_status_changes( + self, query: str, from_date: str, to_date: str = None + ) -> list[dict[str, Any]]: + envelopes_api = self.api_client + args = { + "account_id": self.account_id, + "from_date": from_date, + "search_text": query, + } + if to_date: + args["to_date"] = to_date + try: + data = envelopes_api.list_status_changes(**args) + except Exception as error: + raise UpstreamProviderError(f"DocuSign search error: {error}") + + return data + + +def get_client(): + global client + if client: + return client + assert ( + access_token := app.config.get("ACCESS_TOKEN") + ), "DOCUSIGN_ACCESS_TOKEN must be set" + assert ( + account_id := app.config.get("API_ACCOUNT_ID") + ), "DOCUSIGN_API_ACCOUNT_ID must be set" + is_prod = app.config.get("IS_PROD_ENV", 1) == 1 + client = DocuSignClient( + account_id=account_id, access_token=access_token, is_prod=is_prod + ) + return client diff --git a/docusign/provider/provider.py b/docusign/provider/provider.py new file mode 100644 index 000000000..5406be408 --- /dev/null +++ b/docusign/provider/provider.py @@ -0,0 +1,31 @@ +import logging +from typing import Any + +from docusign_esign.models.envelopes_information import EnvelopesInformation +from flask import current_app as app + +from . import UpstreamProviderError +from .client import get_client + +logger = logging.getLogger(__name__) + + +def process_response_data(data: EnvelopesInformation): + envelopes = data.envelopes + results = [] + if envelopes: + for envelope in envelopes: + results.append(envelope.to_dict()) + return results + + +def search(query: str) -> list[dict[str, Any]]: + api_client = get_client() + from_date = app.config.get("FROM_DATE", "2018-01-01") + to_date = app.config.get("TO_DATE", False) + + data = api_client.get_list_status_changes(query, from_date, to_date) + if not data: + logger.error(f"DocuSign provider error: {data}") + raise UpstreamProviderError(f"DocuSign provider error: {data}") + return process_response_data(data) diff --git a/docusign/pyproject.toml b/docusign/pyproject.toml new file mode 100644 index 000000000..bd598e24d --- /dev/null +++ b/docusign/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "docusign-connector" +version = "0.1.0" +description = "Connects Cohere with Docusign." +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = { extras = ["swagger-ui"], version = "^2.14.2" } +python-dotenv = "^1.0.0" +docusign-esign = "^3.24.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/egnyte/.env-template b/egnyte/.env-template new file mode 100644 index 000000000..2bf355edd --- /dev/null +++ b/egnyte/.env-template @@ -0,0 +1,4 @@ +# Change to your domain +EGNYTE_DOMAIN_NAME=mycompany.egnyte.com +EGNYTE_API_KEY= +EGNYTE_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/egnyte/README.md b/egnyte/README.md new file mode 100644 index 000000000..55f9ba9a8 --- /dev/null +++ b/egnyte/README.md @@ -0,0 +1,39 @@ +# Egnyte Connector + +Connects Cohere to Egnyte. + +## Configuration + +To use this connector, you will an Egnyte organization. First, fetch your Egnyte org's domain by looking at the URL of the web app when you're logged in. It should look like `mycompany.egnyte.com`. Use this value for the `EGNYTE_DOMAIN_NAME` environment variable. + +Then, you will need to create an API key. Follow the [instructions](https://developers.egnyte.com/docs/read/Getting_Started#Request-an-API-Key) here to request an API key from Egnyte. Based on their docs, it can take up to a day to receive one because it requires manual approval. Once you have one, use it for the `EGNYTE_API_KEY` variable. + +Finally, to protect this connector from abuse, the `EGNYTE_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/egnyte/poetry.lock b/egnyte/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/egnyte/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/egnyte/provider/__init__.py b/egnyte/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/egnyte/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/egnyte/provider/app.py b/egnyte/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/egnyte/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/egnyte/provider/provider.py b/egnyte/provider/provider.py new file mode 100644 index 000000000..124c8f689 --- /dev/null +++ b/egnyte/provider/provider.py @@ -0,0 +1,37 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + assert ( + domain_name := app.config.get("DOMAIN_NAME") + ), "EGNYTE_DOMAIN_NAME must be set" + assert (key := app.config.get("API_KEY")), "EGNYTE_API_KEY must be set" + url = f"https://{domain_name}/pubapi/v2/search" + + headers = { + "Authorization": f"Bearer {key}", + } + data = { + "query": query, + } + + response = requests.post( + url, + headers=headers, + json=data, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["results"] diff --git a/egnyte/pyproject.toml b/egnyte/pyproject.toml new file mode 100644 index 000000000..f2f06a936 --- /dev/null +++ b/egnyte/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "egnyte" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/elastic/.env-template b/elastic/.env-template new file mode 100644 index 000000000..8218150ff --- /dev/null +++ b/elastic/.env-template @@ -0,0 +1,11 @@ +ELASTIC_CLOUD_ID=elastic:mycloudid +ELASTIC_URL=https://myelastic.com:9200 +ELASTIC_INDEX=bbq + +# Elasticsearch Authorization, either use API key or Basic Auth (username+password) +ELASTIC_API_KEY= +ELASTIC_USER=elastic +ELASTIC_PASS=pass + +# Connector Authorization +ELASTIC_CONNECTOR_API_KEY= diff --git a/elastic/README.md b/elastic/README.md new file mode 100644 index 000000000..ad3782ea8 --- /dev/null +++ b/elastic/README.md @@ -0,0 +1,55 @@ +# Elasticsearch Quick Start Connector + +This project allows you to create a simple connection to Elasticsearch that can be used with Cohere's API. + +## Limitations + +Currently this connector will perform full-text search, but only for a single index of your Elasticsearch cluster. Since Elasticsearch is essentially a key-value store, it will return the full document as-is to Cohere. + +## Configuration + +You will need to configure this connector with the credentials and path necessary to connect to your Elasticsearch instance. +This connector is currently only configured to search a single index of your ES cluster, you will need to point to it by specifying your `ELASTIC_CLOUD_ID`, `ELASTIC_URL`, and `ELASTIC_INDEX`. + +Then, to authorize your connection you will either require an `ELASTIC_API_KEY` _or_ both `ELASTIC_USER` and `ELASTIC_PASS`. + +## Development + +(Optional) For local development, you can start Elasticsearch and fill it with data by running: + +```bash + $ docker-compose run data-loader +``` + +After running the command, your Elasticsearch instance will run in the background on the default localhost:9200. To start it again later, you can +run: + +```bash + $ docker-compose up +``` + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry run flask --app provider --debug run +``` + +Check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/elastic/dev/elasticsearch.yml b/elastic/dev/elasticsearch.yml new file mode 100644 index 000000000..560dd54a1 --- /dev/null +++ b/elastic/dev/elasticsearch.yml @@ -0,0 +1,2 @@ +xpack.security.http.ssl.enabled: false +network.host: 0.0.0.0 diff --git a/elastic/docker-compose.yml b/elastic/docker-compose.yml new file mode 100644 index 000000000..1a36e9c57 --- /dev/null +++ b/elastic/docker-compose.yml @@ -0,0 +1,45 @@ +version: "3.8" +services: + elasticsearch: + image: docker.elastic.co/elasticsearch/elasticsearch:8.8.0 + container_name: elasticsearch + environment: + - discovery.type=single-node + - ELASTIC_PASSWORD=pass + ports: + - 9200:9200 + volumes: + - ./dev/data:/usr/share/elasticsearch/data + - ./dev/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml + healthcheck: + test: + [ + "CMD-SHELL", + "curl --silent --fail http://localhost:9200/_cluster/health || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + networks: + - es-network + + data-loader: + image: elasticdump/elasticsearch-dump:v6.101.1 + container_name: data-loader + depends_on: + - elasticsearch + volumes: + - ../testdata/bbq.csv:/bbq.csv + command: + - elasticdump + - --input=csv:///bbq.csv + - --output=http://elastic:pass@elasticsearch:9200/bbq + - --type=data + profiles: + - tools + networks: + - es-network + +networks: + es-network: + driver: bridge diff --git a/elastic/poetry.lock b/elastic/poetry.lock new file mode 100644 index 000000000..e5ab4fdd3 --- /dev/null +++ b/elastic/poetry.lock @@ -0,0 +1,598 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "elastic-transport" +version = "8.4.0" +description = "Transport classes and utilities shared among Python Elastic client libraries" +optional = false +python-versions = ">=3.6" +files = [ + {file = "elastic-transport-8.4.0.tar.gz", hash = "sha256:b9ad708ceb7fcdbc6b30a96f886609a109f042c0b9d9f2e44403b3133ba7ff10"}, + {file = "elastic_transport-8.4.0-py3-none-any.whl", hash = "sha256:19db271ab79c9f70f8c43f8f5b5111408781a6176b54ab2e54d713b6d9ceb815"}, +] + +[package.dependencies] +certifi = "*" +urllib3 = ">=1.26.2,<2" + +[package.extras] +develop = ["aiohttp", "mock", "pytest", "pytest-asyncio", "pytest-cov", "pytest-httpserver", "pytest-mock", "requests", "trustme"] + +[[package]] +name = "elasticsearch" +version = "8.8.0" +description = "Python client for Elasticsearch" +optional = false +python-versions = ">=3.6, <4" +files = [ + {file = "elasticsearch-8.8.0-py3-none-any.whl", hash = "sha256:2223ee9daaa3c80c25b28ec3f7c48e66fce6b767a338333d9a81886046a07df6"}, + {file = "elasticsearch-8.8.0.tar.gz", hash = "sha256:6878313cd598c7c90079fed1d4be72e198da35cba57f4083e6bee91f9c70b0eb"}, +] + +[package.dependencies] +elastic-transport = ">=8,<9" + +[package.extras] +async = ["aiohttp (>=3,<4)"] +requests = ["requests (>=2.4.0,<3.0.0)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "657c2212dff3a9c5f2bedb7d4324694c5f46b3b7003a751e38b2da55ee6a3fab" diff --git a/elastic/provider/__init__.py b/elastic/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/elastic/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/elastic/provider/app.py b/elastic/provider/app.py new file mode 100644 index 000000000..b469f5d28 --- /dev/null +++ b/elastic/provider/app.py @@ -0,0 +1,27 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + + return {} diff --git a/elastic/provider/provider.py b/elastic/provider/provider.py new file mode 100644 index 000000000..c8e4cd90c --- /dev/null +++ b/elastic/provider/provider.py @@ -0,0 +1,78 @@ +import logging + +from elasticsearch import Elasticsearch +from flask import current_app as app + +logger = logging.getLogger(__name__) +es_client = None + +MIN_TEXT_LENGTH = 25 + + +def create_es_client(): + connection_params = {} + + if cloud_id := app.config.get("CLOUD_ID"): + connection_params["cloud_id"] = cloud_id + elif url := app.config.get("URL"): + connection_params["hosts"] = [url] + else: + raise ValueError("Either ELASTIC_CLOUD_ID or ELASTIC_URL env vars must be set.") + + if api_key := app.config.get("API_KEY"): + connection_params["api_key"] = api_key + elif (user := app.config.get("USER")) and (password := app.config.get("PASS")): + connection_params["basic_auth"] = (user, password) + else: + raise ValueError( + "Either ELASTIC_APIKEY or both ELASTIC_USER and ELASTIC_PASS env vars must be set." + ) + + return Elasticsearch(**connection_params) + + +def build_text(match): + if "highlight" in match: + return match["highlight"]["content"][0] + + text = "" + for value in match["_source"].values(): + if isinstance(value, str) and len(value) >= MIN_TEXT_LENGTH: + text += value + + return text + + +def serialize_result(match): + source = match["_source"] + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_source = { + key: str(value) + for key, value in source.items() + if isinstance(value, (str, int, bool)) + } + + return { + **stripped_source, + "text": build_text(match), + } + + +def search(query): + global es_client + + if not es_client: + es_client = create_es_client() + + es_query_body = { + "query": {"multi_match": {"query": query}}, + "highlight": {"pre_tags": [""], "post_tags": [""], "fields": {"content": {}}}, + } + + response = es_client.search(index=app.config["INDEX"], body=es_query_body, size=20) + + results = [] + for match in response["hits"]["hits"]: + results.append(serialize_result(match)) + + return results diff --git a/elastic/pyproject.toml b/elastic/pyproject.toml new file mode 100644 index 000000000..6a24618dd --- /dev/null +++ b/elastic/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "elastic" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +elasticsearch = "^8.8.0" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +gunicorn = "^20.1.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/fifteenfive/.env-template b/fifteenfive/.env-template new file mode 100644 index 000000000..6be06b436 --- /dev/null +++ b/fifteenfive/.env-template @@ -0,0 +1,5 @@ +# Change to your domain +FIFTEENFIVE_API_URL= +FIFTEENFIVE_API_KEY= +FIFTEENFIVE_CONNECTOR_API_KEY= +FIFTEENFIVE_ALLOWED_ENTITIES=["user","vacation","question","answer","pulse","high-five","objective","review-cycle"] diff --git a/fifteenfive/README.md b/fifteenfive/README.md new file mode 100644 index 000000000..7840af6d0 --- /dev/null +++ b/fifteenfive/README.md @@ -0,0 +1,66 @@ +# 15Five Connector + +Connects Cohere to 15Five. + +## Configuration + +To use this connector, you will need to set the following environment variables: + +``` +FIFTEENFIVE_API_URL + +This url is the base url for the 15Five API. +It should be set to the following value: https://.15five.com/api/public +``` + +``` +FIFTEENFIVE_API_KEY + +This variable should contain the API key for the 15Five API. +``` + +To create an API key please follow the +instructions [here](https://success.15five.com/hc/en-us/articles/360002699631-API#h_01G6X8X5ZAS1A1VG4A0S4FGP6S) + +``` +FIFTEENFIVE_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional Configuration + +``` +FIFTEENFIVE_ALLOWED_ENTITIES + +This variable should contain a comma separated list of entities that are allowed to be searched. +The default value is: ["user","vacation","question","answer","pulse","high-five","objective","review-cycle"] +``` + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/fifteenfive/poetry.lock b/fifteenfive/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/fifteenfive/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/fifteenfive/provider/__init__.py b/fifteenfive/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/fifteenfive/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/fifteenfive/provider/app.py b/fifteenfive/provider/app.py new file mode 100644 index 000000000..369b1b4a7 --- /dev/null +++ b/fifteenfive/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"GDrive config error: {error}") + abort(502, f"GDrive config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/fifteenfive/provider/client.py b/fifteenfive/provider/client.py new file mode 100644 index 000000000..1bd4fc6e9 --- /dev/null +++ b/fifteenfive/provider/client.py @@ -0,0 +1,56 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class FifteenFiveApiClient: + def __init__(self, api_url, api_key, allowed_entities): + self.api_url = api_url + self.headers = {"Authorization": api_key} + self.allowed_entities = allowed_entities + + def get_allowed_entities(self): + return self.allowed_entities + + def get(self, url, params={}): + response = requests.get( + url, + headers=self.headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_entities_by_type(self, entity_type): + url = f"{self.api_url}/{entity_type}" + return self.get(url) + + +def get_client(): + global client + assert (api_url := app.config.get("API_URL")), "FIFTEENFIVE_API_URL must be set" + assert (api_key := app.config.get("API_KEY")), "FIFTEENFIVE_API_KEY must be set" + allowed_entities = app.config.get( + "ALLOWED_ENTITIES", + [ + "user", + "vacation", + "question", + "answer", + "pulse", + "high-five", + "objective", + "review-cycle", + ], + ) + + if not client: + client = FifteenFiveApiClient(api_url, api_key, allowed_entities) + return client diff --git a/fifteenfive/provider/provider.py b/fifteenfive/provider/provider.py new file mode 100644 index 000000000..ed5d685f1 --- /dev/null +++ b/fifteenfive/provider/provider.py @@ -0,0 +1,80 @@ +import logging +from typing import Any + +from .client import get_client + +logger = logging.getLogger(__name__) + +ALLOWED_ENTITY_TYPES = { + "user": { + "search_fields": ["first_name", "last_name", "email"], + "mapping": {"full_name": "text", "email": "title"}, + }, + "vacation": {"search_fields": ["note"], "mapping": {"note": "text"}}, + "question": { + "search_fields": ["question_text", "group"], + "mapping": {"question_text": "text"}, + }, + "answer": { + "search_fields": ["question", "answer_text"], + "mapping": {"answer_text": "text"}, + }, + "pulse": {"search_fields": ["report", "value"], "mapping": {"value": "text"}}, + "high-five": {"search_fields": ["text", "report"], "mapping": {"text": "text"}}, + "objective": { + "search_fields": ["description"], + "mapping": {"description": "text"}, + }, + "review-cycle": {"search_fields": ["name"], "mapping": {"name": "text"}}, +} + + +def serialize_results(data, mappings): + serialized_data = { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in data.items() + } + return serialized_data + + +def search_allowed_entities(client, query, allowed_entities): + results = [] + searchable_entities = { + k: v for k, v in ALLOWED_ENTITY_TYPES.items() if k in allowed_entities + } + searchable_entity_types = list(searchable_entities.keys()) + for entity_type in searchable_entity_types: + response = client.get_entities_by_type(entity_type) + query = query.lower() + keywords = query.split() + search_properties = searchable_entities[entity_type]["search_fields"] + search_results = [] + for entity in response["results"]: + for prop in search_properties: + value = entity.get(prop, "") + value = value.lower() if isinstance(value, str) else "" + + if any(keyword in value for keyword in keywords): + entity["entity_type"] = entity_type + if entity_type == "user": + entity[ + "full_name" + ] = f"{entity['first_name']} {entity['last_name']}" + entity = serialize_results( + entity, searchable_entities[entity_type]["mapping"] + ) + search_results.append(entity) + break + + results.extend(search_results) + return results + + +def search(query) -> list[dict[str, Any]]: + client = get_client() + allowed_entities = client.get_allowed_entities() + return search_allowed_entities(client, query, allowed_entities) diff --git a/fifteenfive/pyproject.toml b/fifteenfive/pyproject.toml new file mode 100644 index 000000000..1f56059f4 --- /dev/null +++ b/fifteenfive/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "15five" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/fireflies/.env-template b/fireflies/.env-template new file mode 100644 index 000000000..127f7c9b0 --- /dev/null +++ b/fireflies/.env-template @@ -0,0 +1,3 @@ +FIREFLIES_API_KEY= +FIREFLIES_SEARCH_LIMIT= +FIREFLIES_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/fireflies/README.md b/fireflies/README.md new file mode 100644 index 000000000..06bca29a7 --- /dev/null +++ b/fireflies/README.md @@ -0,0 +1,61 @@ +# Fireflies Connector + +Connects Cohere to Fireflies. + +## Configuration + +This connector requires the following environment variables: + +``` +FIREFLIES_API_KEY +``` + +This variable should contain the API key of the Fireflies account. +To get the API key, use the instructions [here](https://docs.fireflies.ai/) + +``` +FIREFLIES_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +### Optional configuration + +``` +FIREFLIES_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return from Fireflies. Default value is 20. +Maximum value is 50. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/fireflies/poetry.lock b/fireflies/poetry.lock new file mode 100644 index 000000000..f3e7f4ef7 --- /dev/null +++ b/fireflies/poetry.lock @@ -0,0 +1,739 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/fireflies/provider/__init__.py b/fireflies/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/fireflies/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/fireflies/provider/app.py b/fireflies/provider/app.py new file mode 100644 index 000000000..0927f07fc --- /dev/null +++ b/fireflies/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"FireFlies config error: {error}") + abort(502, f"FireFlies config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/fireflies/provider/client.py b/fireflies/provider/client.py new file mode 100644 index 000000000..52cc00c22 --- /dev/null +++ b/fireflies/provider/client.py @@ -0,0 +1,61 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class FirefliesApiClient: + API_URL = "https://api.fireflies.ai/graphql" + + def __init__(self, api_key, search_limit): + self.headers = {"Authorization": f"Bearer {api_key}"} + self.search_limit = search_limit + + def get_search_limit(self): + return self.search_limit + + def post(self, params={}): + response = requests.post(self.API_URL, headers=self.headers, json=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_transcripts(self, limit=20): + query = """ + query transcripts($limit: Int){ + transcripts(limit: $limit){ + id + sentences{ + index + text + raw_text + } + title + host_email + organizer_email + fireflies_users + participants + date + transcript_url + duration + } + } + """ + params = {"query": query, "variables": {"limit": self.get_search_limit()}} + return self.post(params) + + +def get_client(): + global client + assert (api_key := app.config.get("API_KEY")), "FIREFLIES_API_KEY must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + + if not client: + client = FirefliesApiClient(api_key, search_limit) + + return client diff --git a/fireflies/provider/provider.py b/fireflies/provider/provider.py new file mode 100644 index 000000000..821dc90c6 --- /dev/null +++ b/fireflies/provider/provider.py @@ -0,0 +1,33 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search_transcripts(client, query, search_limit): + results = [] + response = client.get_transcripts(search_limit) + transcripts = ( + response["data"]["transcripts"] if response and "data" in response else [] + ) + keywords = query.split(" ") + for transcript in transcripts: + for sentence in transcript["sentences"]: + if any( + keyword.lower() in sentence["raw_text"].lower() for keyword in keywords + ): + transcript["text"] = " ".join( + [row["text"] for row in transcript["sentences"]] + ) + transcript["url"] = transcript.pop("transcript_url") + results.append({k: str(v) for k, v in transcript.items()}) + break + + return results + + +def search(query): + client = get_client() + search_limit = client.get_search_limit() + return search_transcripts(client, query, search_limit) diff --git a/fireflies/pyproject.toml b/fireflies/pyproject.toml new file mode 100644 index 000000000..8fa8c57b8 --- /dev/null +++ b/fireflies/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "fireflies" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/freshdesk/.env-template b/freshdesk/.env-template new file mode 100644 index 000000000..1c442bc27 --- /dev/null +++ b/freshdesk/.env-template @@ -0,0 +1,4 @@ +FRESHDESK_API_KEY= +FRESHDESK_DOMAIN_NAME= +FRESHDESK_TICKET_PARAMETER= +FRESHDESK_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/freshdesk/README.md b/freshdesk/README.md new file mode 100644 index 000000000..66aff401d --- /dev/null +++ b/freshdesk/README.md @@ -0,0 +1,44 @@ +# Freshdesk Connector + +Connects Cohere to Freshdesk, the CRM. + +## Configuration + +To use this connector, you will need a Freshdesk support portal. From there, click your profile picture +in the top-right corner, go to Profile Settings and click See API key. Use this value for the +`FRESHDESK_API_KEY` environment variable. + +Now grab your domain name from your support portal's URL, this will look like `mycompany.freshdesk.com`. +Use this value for `FRESHDESK_DOMAIN_NAME`. + +Also, use the `FRESHDESK_TICKET_PARAMETER` value to determine which field the search match will be performed on. + +Finally, to protect this connector from abuse, the `FRESHDESK_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/freshdesk/poetry.lock b/freshdesk/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/freshdesk/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/freshdesk/provider/__init__.py b/freshdesk/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/freshdesk/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/freshdesk/provider/app.py b/freshdesk/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/freshdesk/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/freshdesk/provider/provider.py b/freshdesk/provider/provider.py new file mode 100644 index 000000000..4885e00b7 --- /dev/null +++ b/freshdesk/provider/provider.py @@ -0,0 +1,34 @@ +import logging +import json +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + assert (token := app.config.get("API_KEY")), "FRESHDESK_API_KEY must be set" + assert ( + domain := app.config.get("DOMAIN_NAME") + ), "FRESHDESK_DOMAIN_NAME must be set" + assert ( + parameter := app.config.get("TICKET_PARAMETER") + ), "FRESHDESK_TICKET_PARAMETER must be set" + + url = f"https://{domain}/api/v2/search/tickets" + params = {"query": f'"{parameter}:{query}"'} + # Freshdesk uses Basic Auth with this specific format, using the API key + auth = (token, "X") + + response = requests.get(url, auth=auth, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["results"] diff --git a/freshdesk/pyproject.toml b/freshdesk/pyproject.toml new file mode 100644 index 000000000..adf65f520 --- /dev/null +++ b/freshdesk/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "freshdesk" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/freshsales/.env-template b/freshsales/.env-template new file mode 100644 index 000000000..5a21ef956 --- /dev/null +++ b/freshsales/.env-template @@ -0,0 +1,7 @@ +FRESHSALES_API_KEY= +FRESHSALES_BUNDLE_ALIAS= +FRESHSALES_USER_ENTITY_ENABLED=True +FRESHSALES_CONTACT_ENTITY_ENABLED=True +FRESHSALES_SALES_ACCOUNT_ENTITY_ENABLED=True +FRESHSALES_DEAL_ENTITY_ENABLED=True +FRESHSALES_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/freshsales/README.md b/freshsales/README.md new file mode 100644 index 000000000..35df60f14 --- /dev/null +++ b/freshsales/README.md @@ -0,0 +1,47 @@ +# Freshsales Connector + +Connects Cohere to Freshsales, the sales CRM tool. + +## Limitations + +The Freshsales connector features full-text search on 4 types of entities: Users, Contacts, Sales accounts, and Deals. These are based off your environment variables, which are set to `True` by default. Because the search API returns only a compact version of the entity, another API call is required to fetch the full entity details. + +## Configuration + +To use this connector you will need a Freshsales workspace. Then, from your top-right avatar, click +Settings > API Settings > Confirm API key. You should see your API key and bundle alias values, use these +for the `FRESHSALES_API_KEY` and `FRESHSALES_BUNDLE_ALIAS` environment variables. + +There are additional environment variables that define which entities are enabled for search. Currently, +Freshsales allows searching Users, Contacts, Deals, and Sales Accounts, by default the `.env-template` file has +these values enabled. + +Finally, to protect this connector from abuse, the `FRESHSALES_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/freshsales/poetry.lock b/freshsales/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/freshsales/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/freshsales/provider/__init__.py b/freshsales/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/freshsales/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/freshsales/provider/app.py b/freshsales/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/freshsales/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/freshsales/provider/constants.py b/freshsales/provider/constants.py new file mode 100644 index 000000000..feb4390bf --- /dev/null +++ b/freshsales/provider/constants.py @@ -0,0 +1,62 @@ +import os +from .enums import EntityChoices + +BASE_PATH = f"https://{os.environ.get('FRESHSALES_BUNDLE_ALIAS', '')}/api" +API_TOKEN = os.environ.get("FRESHSALES_API_KEY") +RESULTS_LIMIT = 15 +ENTITY_ENV_VAR_ENABLED_MAPPING = { + EntityChoices.USER: "USER_ENTITY_ENABLED", + EntityChoices.CONTACT: "CONTACT_ENTITY_ENABLED", + EntityChoices.SALES_ACCOUNT: "SALES_ACCOUNT_ENTITY_ENABLED", + EntityChoices.DEAL: "DEAL_ENTITY_ENABLED", +} + +CONTACT_PARAMETERS = [ + "sales_activities", + "owner", + "creater", + "updater", + "source", + "campaign", + "tasks", + "appointments", + "notes", + "deals", + "sales_accounts", + "territory", + "sales_account", +] + +SALES_ACCOUNT_PARAMETERS = [ + "owner", + "creater", + "updater", + "territory", + "business_type", + "tasks", + "appointments", + "contacts", + "deals", + "industry_type", + "child_sales_accounts", +] + +DEAL_PARAMETERS = [ + "sales_activities", + "owner", + "creater", + "updater", + "source", + "contacts", + "sales_account", + "deal_stage", + "deal_type", + "deal_reason", + "campaign", + "deal_payment_status", + "deal_product", + "currency", + "probability", + "created_at", + "updated_at", +] diff --git a/freshsales/provider/enums.py b/freshsales/provider/enums.py new file mode 100644 index 000000000..1eeefb37e --- /dev/null +++ b/freshsales/provider/enums.py @@ -0,0 +1,8 @@ +from enum import Enum + + +class EntityChoices(Enum): + USER = "user" + CONTACT = "contact" + SALES_ACCOUNT = "sales_account" + DEAL = "deal" diff --git a/freshsales/provider/provider.py b/freshsales/provider/provider.py new file mode 100644 index 000000000..071468558 --- /dev/null +++ b/freshsales/provider/provider.py @@ -0,0 +1,141 @@ +import logging +import os +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError +from .enums import EntityChoices +from .constants import ( + BASE_PATH, + API_TOKEN, + RESULTS_LIMIT, + ENTITY_ENV_VAR_ENABLED_MAPPING, + CONTACT_PARAMETERS, + SALES_ACCOUNT_PARAMETERS, + DEAL_PARAMETERS, +) + + +logger = logging.getLogger(__name__) + + +""" +Builds the entity list string for the `includes` query parameter, based +off environment variables. + +For example, the default returned format will look like 'user,contact,sales_account,deal' +See: https://developers.freshworks.com/crm/api/#search +""" + + +def get_entity_types() -> str: + def is_env_var_true(env_var_name): + value = app.config.get(env_var_name, "False") + return value.lower() == "true" + + entities = [ + enum.value + for enum, env_var in ENTITY_ENV_VAR_ENABLED_MAPPING.items() + if is_env_var_true(env_var) + ] + return ",".join(entities) + + +def get_contact_details(id): + url = f"{BASE_PATH}/contacts/{id}" + params = {"include": ",".join(CONTACT_PARAMETERS)} + headers = { + "Authorization": f"Token token={API_TOKEN}", + } + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + return None + + return response.json() + + +def get_sales_account_details(id): + url = f"{BASE_PATH}/sales_accounts/{id}" + params = {"include": ",".join(SALES_ACCOUNT_PARAMETERS)} + headers = { + "Authorization": f"Token token={API_TOKEN}", + } + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + return None + + return response.json() + + +def get_deal_details(id): + url = f"{BASE_PATH}/deals/{id}" + params = {"include": ",".join(DEAL_PARAMETERS)} + headers = { + "Authorization": f"Token token={API_TOKEN}", + } + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + return None + + return response.json() + + +def search(query) -> list[dict[str, Any]]: + assert API_TOKEN, "FRESHSALES_API_KEY must be set" + + url = f"{BASE_PATH}/search" + entities = get_entity_types() + + params = { + "q": query, + "include": entities, + "per_page": RESULTS_LIMIT, + } + headers = { + "Authorization": f"Token token={API_TOKEN}", + } + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + results = [] + # Contact, Sales Account and Deals can be fetched with extra details + for entry in response.json(): + type = entry["type"] + decorated_entry = None + if type == EntityChoices.CONTACT.value: + decorated_entry = get_contact_details(entry["id"]) + elif type == EntityChoices.SALES_ACCOUNT.value: + decorated_entry = get_sales_account_details(entry["id"]) + elif type == EntityChoices.DEAL.value: + decorated_entry = get_deal_details(entry["id"]) + + if decorated_entry is not None: + results.append(decorated_entry) + else: + results.append(entry) + + return results diff --git a/freshsales/pyproject.toml b/freshsales/pyproject.toml new file mode 100644 index 000000000..a90ce2174 --- /dev/null +++ b/freshsales/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "freshsales" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/freshservice/.env-template b/freshservice/.env-template new file mode 100644 index 000000000..caf5c026c --- /dev/null +++ b/freshservice/.env-template @@ -0,0 +1,3 @@ +FRESHSERVICE_DOMAIN=https://mydomain.freshservice.com +FRESHSERVICE_API_KEY= +FRESHSERVICE_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/freshservice/README.md b/freshservice/README.md new file mode 100644 index 000000000..548ca7f30 --- /dev/null +++ b/freshservice/README.md @@ -0,0 +1,37 @@ +# Freshservice Connector + +Connects Cohere to Freshservice, the customer support tool. + +## Configuration + +To use this connector you will need to have access to your Freshservice support portal. Then, from your Profile Settings, you should see an API key on the right-hand side. Use this value for the `FRESHSERVICE_API_KEY` environment variable. + +You will also need your domain name, which is formatted like `https://mydomain.freshservice.com`, use this for `FRESHSERVICE_DOMAIN`. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/freshservice/poetry.lock b/freshservice/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/freshservice/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/freshservice/provider/__init__.py b/freshservice/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/freshservice/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/freshservice/provider/app.py b/freshservice/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/freshservice/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/freshservice/provider/client.py b/freshservice/provider/client.py new file mode 100644 index 000000000..6b6bc7258 --- /dev/null +++ b/freshservice/provider/client.py @@ -0,0 +1,55 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class FreshserviceClient: + def __init__(self): + assert (domain := app.config.get("DOMAIN")), "FRESHSERVICE_DOMAIN must be set" + assert (key := app.config.get("API_KEY")), "FRESHSERVICE_API_KEY must be set" + + self.base_url = f"{domain}/api/v2" + # Freshservice uses Basic Auth with (, "X") as user, pass + self.auth = (key, "X") + + def _make_request(self, method, url, params={}, data={}): + response = requests.request( + method, + url, + auth=self.auth, + params=params, + json=data, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def search_tickets(self, query): + url = f"{self.base_url}/tickets" + response = self._make_request("GET", url, {}, {}) + tickets = response["tickets"] + + # Perform search manually + results = [] + for ticket in tickets: + text = ticket.get("subject", "") + ticket.get("description_text", "") + + if query.lower() in text.lower(): + results.append(ticket) + + return results + + +def get_client(): + global client + if client is not None: + return client + + client = FreshserviceClient() + return client diff --git a/freshservice/provider/provider.py b/freshservice/provider/provider.py new file mode 100644 index 000000000..2313de468 --- /dev/null +++ b/freshservice/provider/provider.py @@ -0,0 +1,41 @@ +import logging +from typing import Any + +from flask import current_app as app + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + freshservice_client = get_client() + domain = app.config.get("DOMAIN") + + search_results = freshservice_client.search_tickets(query) + + results = [] + for result in search_results: + results.append(serialize_search_result(result, domain)) + + return results + + +def serialize_search_result(result, domain): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + serialized = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "subject" in serialized: + serialized["title"] = serialized.pop("subject") + + if "description_text" in serialized: + serialized["text"] = serialized.pop("description_text") + + if "id" in serialized: + serialized["url"] = f"{domain}/a/tickets/{serialized['id']}" + + return serialized diff --git a/freshservice/pyproject.toml b/freshservice/pyproject.toml new file mode 100644 index 000000000..9ba267186 --- /dev/null +++ b/freshservice/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "freshservice" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/gcalendar/.env-template b/gcalendar/.env-template new file mode 100644 index 000000000..4c05dc1f6 --- /dev/null +++ b/gcalendar/.env-template @@ -0,0 +1 @@ +GCALENDAR_CONNECTOR_API_KEY= diff --git a/gcalendar/README.md b/gcalendar/README.md new file mode 100644 index 000000000..d43e5d580 --- /dev/null +++ b/gcalendar/README.md @@ -0,0 +1,45 @@ +# Google Calendar Connector + +This connects Cohere to Google Calendar, allowing searching events. + +## Credentials + +To use this connector, you will need to enable the Google Calendar API in a Google Cloud project. There are several steps to follow, please refer to the following [guide.](https://developers.google.com/calendar/api/quickstart/python) + +You will need to: + +1. Enable the API +2. Configure OAuth consent: use the Google account that will be used for the Calendar integration +3. Create credentials for your app, making sure to select the "Desktop app" option, then download the `credentials.json` file + +Once this is done, save the `credentials.json` file into this directory. + +This connector will also require a `token.json` file that is generated automatically once you authorize the app. After you deploy it, head to your hosted connector server's `/ui` page. For example, `https://myconnector.com/ui`, and trigger an initial `/search` request. This will bring up the Google OAuth page, where you can login to the same email as step 2 earlier. + +## Development + +Copy the `.env-template` file to `.env` and edit the values accordingly. + +```bash +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry: + +```bash +poetry install +poetry run flask --app provider run --debug +``` + +Once the Flask server is running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/gcalendar/credentials.json-template b/gcalendar/credentials.json-template new file mode 100644 index 000000000..8db6bb8dd --- /dev/null +++ b/gcalendar/credentials.json-template @@ -0,0 +1,11 @@ +{ + "installed": { + "client_id": "myclientid", + "project_id": "myproject", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_secret": "mysecret", + "redirect_uris": ["http://localhost"] + } +} diff --git a/gcalendar/poetry.lock b/gcalendar/poetry.lock new file mode 100644 index 000000000..3b8fbfae8 --- /dev/null +++ b/gcalendar/poetry.lock @@ -0,0 +1,1090 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachetools" +version = "5.3.1" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, + {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "google-api-core" +version = "2.12.0" +description = "Google API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.12.0.tar.gz", hash = "sha256:c22e01b1e3c4dcd90998494879612c38d0a3411d1f7b679eb89e2abe3ce1f553"}, + {file = "google_api_core-2.12.0-py3-none-any.whl", hash = "sha256:ec6054f7d64ad13b41e43d96f735acbd763b0f3b695dabaa2d579673f6a6e160"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] + +[[package]] +name = "google-api-python-client" +version = "2.92.0" +description = "Google API Client Library for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-python-client-2.92.0.tar.gz", hash = "sha256:f38a6e106a7417719715506d36f0a233ec253335e422bda311352866a86c4187"}, + {file = "google_api_python_client-2.92.0-py2.py3-none-any.whl", hash = "sha256:e0b74ed5fa9bdb07a66fb030d3f4cae550ed1c07e23600d86450d3c3c5efae51"}, +] + +[package.dependencies] +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0.dev0" +google-auth = ">=1.19.0,<3.0.0.dev0" +google-auth-httplib2 = ">=0.1.0" +httplib2 = ">=0.15.0,<1.dev0" +uritemplate = ">=3.0.1,<5" + +[[package]] +name = "google-auth" +version = "2.23.3" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-auth-2.23.3.tar.gz", hash = "sha256:6864247895eea5d13b9c57c9e03abb49cb94ce2dc7c58e91cba3248c7477c9e3"}, + {file = "google_auth-2.23.3-py2.py3-none-any.whl", hash = "sha256:a8f4608e65c244ead9e0538f181a96c6e11199ec114d41f1d7b1bffa96937bda"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = ">=3.1.4,<5" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] + +[[package]] +name = "google-auth-httplib2" +version = "0.1.0" +description = "Google Authentication Library: httplib2 transport" +optional = false +python-versions = "*" +files = [ + {file = "google-auth-httplib2-0.1.0.tar.gz", hash = "sha256:a07c39fd632becacd3f07718dfd6021bf396978f03ad3ce4321d060015cc30ac"}, + {file = "google_auth_httplib2-0.1.0-py2.py3-none-any.whl", hash = "sha256:31e49c36c6b5643b57e82617cb3e021e3e1d2df9da63af67252c02fa9c1f4a10"}, +] + +[package.dependencies] +google-auth = "*" +httplib2 = ">=0.15.0" +six = "*" + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5"}, + {file = "google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb"}, +] + +[package.dependencies] +google-auth = ">=2.15.0" +requests-oauthlib = ">=0.7.0" + +[package.extras] +tool = ["click (>=6.0.0)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.60.0" +description = "Common protobufs used in Google APIs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.60.0.tar.gz", hash = "sha256:e73ebb404098db405ba95d1e1ae0aa91c3e15a71da031a2eeb6b2e23e7bc3708"}, + {file = "googleapis_common_protos-1.60.0-py2.py3-none-any.whl", hash = "sha256:69f9bbcc6acde92cab2db95ce30a70bd2b81d20b12eff3f1aabaffcbe8a93918"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "httplib2" +version = "0.22.0" +description = "A comprehensive HTTP client library." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc"}, + {file = "httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81"}, +] + +[package.dependencies] +pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0.2,<3.0.3 || >3.0.3,<4", markers = "python_version > \"3.0\""} + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "protobuf" +version = "4.24.3" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.24.3-cp310-abi3-win32.whl", hash = "sha256:20651f11b6adc70c0f29efbe8f4a94a74caf61b6200472a9aea6e19898f9fcf4"}, + {file = "protobuf-4.24.3-cp310-abi3-win_amd64.whl", hash = "sha256:3d42e9e4796a811478c783ef63dc85b5a104b44aaaca85d4864d5b886e4b05e3"}, + {file = "protobuf-4.24.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:6e514e8af0045be2b56e56ae1bb14f43ce7ffa0f68b1c793670ccbe2c4fc7d2b"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:ba53c2f04798a326774f0e53b9c759eaef4f6a568ea7072ec6629851c8435959"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:f6ccbcf027761a2978c1406070c3788f6de4a4b2cc20800cc03d52df716ad675"}, + {file = "protobuf-4.24.3-cp37-cp37m-win32.whl", hash = "sha256:1b182c7181a2891e8f7f3a1b5242e4ec54d1f42582485a896e4de81aa17540c2"}, + {file = "protobuf-4.24.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b0271a701e6782880d65a308ba42bc43874dabd1a0a0f41f72d2dac3b57f8e76"}, + {file = "protobuf-4.24.3-cp38-cp38-win32.whl", hash = "sha256:e29d79c913f17a60cf17c626f1041e5288e9885c8579832580209de8b75f2a52"}, + {file = "protobuf-4.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:067f750169bc644da2e1ef18c785e85071b7c296f14ac53e0900e605da588719"}, + {file = "protobuf-4.24.3-cp39-cp39-win32.whl", hash = "sha256:2da777d34b4f4f7613cdf85c70eb9a90b1fbef9d36ae4a0ccfe014b0b07906f1"}, + {file = "protobuf-4.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:f631bb982c5478e0c1c70eab383af74a84be66945ebf5dd6b06fc90079668d0b"}, + {file = "protobuf-4.24.3-py3-none-any.whl", hash = "sha256:f6f8dc65625dadaad0c8545319c2e2f0424fede988368893ca3844261342c11a"}, + {file = "protobuf-4.24.3.tar.gz", hash = "sha256:12e9ad2ec079b833176d2921be2cb24281fa591f0b119b208b788adc48c2561d"}, +] + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "pyparsing" +version = "3.1.1" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, + {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.10.3" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.3-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:485747ee62da83366a44fbba963c5fe017860ad408ccd6cd99aa66ea80d32b2e"}, + {file = "rpds_py-0.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c55f9821f88e8bee4b7a72c82cfb5ecd22b6aad04033334f33c329b29bfa4da0"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3b52a67ac66a3a64a7e710ba629f62d1e26ca0504c29ee8cbd99b97df7079a8"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3aed39db2f0ace76faa94f465d4234aac72e2f32b009f15da6492a561b3bbebd"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271c360fdc464fe6a75f13ea0c08ddf71a321f4c55fc20a3fe62ea3ef09df7d9"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef5fddfb264e89c435be4adb3953cef5d2936fdeb4463b4161a6ba2f22e7b740"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771417c9c06c56c9d53d11a5b084d1de75de82978e23c544270ab25e7c066ff"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:52b5cbc0469328e58180021138207e6ec91d7ca2e037d3549cc9e34e2187330a"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6ac3fefb0d168c7c6cab24fdfc80ec62cd2b4dfd9e65b84bdceb1cb01d385c33"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8d54bbdf5d56e2c8cf81a1857250f3ea132de77af543d0ba5dce667183b61fec"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cd2163f42868865597d89399a01aa33b7594ce8e2c4a28503127c81a2f17784e"}, + {file = "rpds_py-0.10.3-cp310-none-win32.whl", hash = "sha256:ea93163472db26ac6043e8f7f93a05d9b59e0505c760da2a3cd22c7dd7111391"}, + {file = "rpds_py-0.10.3-cp310-none-win_amd64.whl", hash = "sha256:7cd020b1fb41e3ab7716d4d2c3972d4588fdfbab9bfbbb64acc7078eccef8860"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:1d9b5ee46dcb498fa3e46d4dfabcb531e1f2e76b477e0d99ef114f17bbd38453"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:563646d74a4b4456d0cf3b714ca522e725243c603e8254ad85c3b59b7c0c4bf0"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e626b864725680cd3904414d72e7b0bd81c0e5b2b53a5b30b4273034253bb41f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:485301ee56ce87a51ccb182a4b180d852c5cb2b3cb3a82f7d4714b4141119d8c"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:42f712b4668831c0cd85e0a5b5a308700fe068e37dcd24c0062904c4e372b093"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c9141af27a4e5819d74d67d227d5047a20fa3c7d4d9df43037a955b4c748ec5"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef750a20de1b65657a1425f77c525b0183eac63fe7b8f5ac0dd16f3668d3e64f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1a0ffc39f51aa5f5c22114a8f1906b3c17eba68c5babb86c5f77d8b1bba14d1"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f4c179a7aeae10ddf44c6bac87938134c1379c49c884529f090f9bf05566c836"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:176287bb998fd1e9846a9b666e240e58f8d3373e3bf87e7642f15af5405187b8"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6446002739ca29249f0beaaf067fcbc2b5aab4bc7ee8fb941bd194947ce19aff"}, + {file = "rpds_py-0.10.3-cp311-none-win32.whl", hash = "sha256:c7aed97f2e676561416c927b063802c8a6285e9b55e1b83213dfd99a8f4f9e48"}, + {file = "rpds_py-0.10.3-cp311-none-win_amd64.whl", hash = "sha256:8bd01ff4032abaed03f2db702fa9a61078bee37add0bd884a6190b05e63b028c"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:4cf0855a842c5b5c391dd32ca273b09e86abf8367572073bd1edfc52bc44446b"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:69b857a7d8bd4f5d6e0db4086da8c46309a26e8cefdfc778c0c5cc17d4b11e08"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:975382d9aa90dc59253d6a83a5ca72e07f4ada3ae3d6c0575ced513db322b8ec"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35fbd23c1c8732cde7a94abe7fb071ec173c2f58c0bd0d7e5b669fdfc80a2c7b"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:106af1653007cc569d5fbb5f08c6648a49fe4de74c2df814e234e282ebc06957"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ce5e7504db95b76fc89055c7f41e367eaadef5b1d059e27e1d6eabf2b55ca314"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aca759ada6b1967fcfd4336dcf460d02a8a23e6abe06e90ea7881e5c22c4de6"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5d4bdd697195f3876d134101c40c7d06d46c6ab25159ed5cbd44105c715278a"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a657250807b6efd19b28f5922520ae002a54cb43c2401e6f3d0230c352564d25"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:177c9dd834cdf4dc39c27436ade6fdf9fe81484758885f2d616d5d03c0a83bd2"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e22491d25f97199fc3581ad8dd8ce198d8c8fdb8dae80dea3512e1ce6d5fa99f"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:2f3e1867dd574014253b4b8f01ba443b9c914e61d45f3674e452a915d6e929a3"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c22211c165166de6683de8136229721f3d5c8606cc2c3d1562da9a3a5058049c"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40bc802a696887b14c002edd43c18082cb7b6f9ee8b838239b03b56574d97f71"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e271dd97c7bb8eefda5cca38cd0b0373a1fea50f71e8071376b46968582af9b"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:95cde244e7195b2c07ec9b73fa4c5026d4a27233451485caa1cd0c1b55f26dbd"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08a80cf4884920863623a9ee9a285ee04cef57ebedc1cc87b3e3e0f24c8acfe5"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763ad59e105fca09705d9f9b29ecffb95ecdc3b0363be3bb56081b2c6de7977a"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:187700668c018a7e76e89424b7c1042f317c8df9161f00c0c903c82b0a8cac5c"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5267cfda873ad62591b9332fd9472d2409f7cf02a34a9c9cb367e2c0255994bf"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:2ed83d53a8c5902ec48b90b2ac045e28e1698c0bea9441af9409fc844dc79496"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:255f1a10ae39b52122cce26ce0781f7a616f502feecce9e616976f6a87992d6b"}, + {file = "rpds_py-0.10.3-cp38-none-win32.whl", hash = "sha256:a019a344312d0b1f429c00d49c3be62fa273d4a1094e1b224f403716b6d03be1"}, + {file = "rpds_py-0.10.3-cp38-none-win_amd64.whl", hash = "sha256:efb9ece97e696bb56e31166a9dd7919f8f0c6b31967b454718c6509f29ef6fee"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:570cc326e78ff23dec7f41487aa9c3dffd02e5ee9ab43a8f6ccc3df8f9327623"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cff7351c251c7546407827b6a37bcef6416304fc54d12d44dbfecbb717064717"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:177914f81f66c86c012311f8c7f46887ec375cfcfd2a2f28233a3053ac93a569"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:448a66b8266de0b581246ca7cd6a73b8d98d15100fb7165974535fa3b577340e"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bbac1953c17252f9cc675bb19372444aadf0179b5df575ac4b56faaec9f6294"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9dd9d9d9e898b9d30683bdd2b6c1849449158647d1049a125879cb397ee9cd12"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c71ea77536149e36c4c784f6d420ffd20bea041e3ba21ed021cb40ce58e2c9"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16a472300bc6c83fe4c2072cc22b3972f90d718d56f241adabc7ae509f53f154"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9255e7165083de7c1d605e818025e8860636348f34a79d84ec533546064f07e"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:53d7a3cd46cdc1689296348cb05ffd4f4280035770aee0c8ead3bbd4d6529acc"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22da15b902f9f8e267020d1c8bcfc4831ca646fecb60254f7bc71763569f56b1"}, + {file = "rpds_py-0.10.3-cp39-none-win32.whl", hash = "sha256:850c272e0e0d1a5c5d73b1b7871b0a7c2446b304cec55ccdb3eaac0d792bb065"}, + {file = "rpds_py-0.10.3-cp39-none-win_amd64.whl", hash = "sha256:de61e424062173b4f70eec07e12469edde7e17fa180019a2a0d75c13a5c5dc57"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:af247fd4f12cca4129c1b82090244ea5a9d5bb089e9a82feb5a2f7c6a9fe181d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3ad59efe24a4d54c2742929001f2d02803aafc15d6d781c21379e3f7f66ec842"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642ed0a209ced4be3a46f8cb094f2d76f1f479e2a1ceca6de6346a096cd3409d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:37d0c59548ae56fae01c14998918d04ee0d5d3277363c10208eef8c4e2b68ed6"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad6ed9e70ddfb34d849b761fb243be58c735be6a9265b9060d6ddb77751e3e8"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f94fdd756ba1f79f988855d948ae0bad9ddf44df296770d9a58c774cfbcca72"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77076bdc8776a2b029e1e6ffbe6d7056e35f56f5e80d9dc0bad26ad4a024a762"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87d9b206b1bd7a0523375dc2020a6ce88bca5330682ae2fe25e86fd5d45cea9c"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8efaeb08ede95066da3a3e3c420fcc0a21693fcd0c4396d0585b019613d28515"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a4d9bfda3f84fc563868fe25ca160c8ff0e69bc4443c5647f960d59400ce6557"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d27aa6bbc1f33be920bb7adbb95581452cdf23005d5611b29a12bb6a3468cc95"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ed8313809571a5463fd7db43aaca68ecb43ca7a58f5b23b6e6c6c5d02bdc7882"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:e10e6a1ed2b8661201e79dff5531f8ad4cdd83548a0f81c95cf79b3184b20c33"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:015de2ce2af1586ff5dc873e804434185199a15f7d96920ce67e50604592cae9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae87137951bb3dc08c7d8bfb8988d8c119f3230731b08a71146e84aaa919a7a9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bb4f48bd0dd18eebe826395e6a48b7331291078a879295bae4e5d053be50d4c"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09362f86ec201288d5687d1dc476b07bf39c08478cde837cb710b302864e7ec9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821392559d37759caa67d622d0d2994c7a3f2fb29274948ac799d496d92bca73"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7170cbde4070dc3c77dec82abf86f3b210633d4f89550fa0ad2d4b549a05572a"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5de11c041486681ce854c814844f4ce3282b6ea1656faae19208ebe09d31c5b8"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:4ed172d0c79f156c1b954e99c03bc2e3033c17efce8dd1a7c781bc4d5793dfac"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:11fdd1192240dda8d6c5d18a06146e9045cb7e3ba7c06de6973000ff035df7c6"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f602881d80ee4228a2355c68da6b296a296cd22bbb91e5418d54577bbf17fa7c"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:691d50c99a937709ac4c4cd570d959a006bd6a6d970a484c84cc99543d4a5bbb"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24cd91a03543a0f8d09cb18d1cb27df80a84b5553d2bd94cba5979ef6af5c6e7"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fc2200e79d75b5238c8d69f6a30f8284290c777039d331e7340b6c17cad24a5a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea65b59882d5fa8c74a23f8960db579e5e341534934f43f3b18ec1839b893e41"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:829e91f3a8574888b73e7a3feb3b1af698e717513597e23136ff4eba0bc8387a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eab75a8569a095f2ad470b342f2751d9902f7944704f0571c8af46bede438475"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:061c3ff1f51ecec256e916cf71cc01f9975af8fb3af9b94d3c0cc8702cfea637"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:39d05e65f23a0fe897b6ac395f2a8d48c56ac0f583f5d663e0afec1da89b95da"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eca20917a06d2fca7628ef3c8b94a8c358f6b43f1a621c9815243462dcccf97"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e8d0f0eca087630d58b8c662085529781fd5dc80f0a54eda42d5c9029f812599"}, + {file = "rpds_py-0.10.3.tar.gz", hash = "sha256:fcc1ebb7561a3e24a6588f7c6ded15d80aec22c66a070c757559b57b17ffd1cb"}, +] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-colorama" +version = "0.4.15.12" +description = "Typing stubs for colorama" +optional = false +python-versions = "*" +files = [ + {file = "types-colorama-0.4.15.12.tar.gz", hash = "sha256:fbdfc5d9d24d85c33bd054fbe33adc6cec44eedb19cfbbabfbbb57dc257ae4b8"}, + {file = "types_colorama-0.4.15.12-py3-none-any.whl", hash = "sha256:23c9d4a00961227f7ef018d5a1c190c4bbc282119c3ee76a17677a793f13bb82"}, +] + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "uritemplate" +version = "4.1.1" +description = "Implementation of RFC 6570 URI Templates" +optional = false +python-versions = ">=3.6" +files = [ + {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, + {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "93a682429eaabe2d42ae9b5bc496ca28b230cb8f1e3bef84b86a9c74fd095d50" diff --git a/gcalendar/provider/__init__.py b/gcalendar/provider/__init__.py new file mode 100644 index 000000000..8ba6b4f04 --- /dev/null +++ b/gcalendar/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/gcalendar/provider/app.py b/gcalendar/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/gcalendar/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/gcalendar/provider/client.py b/gcalendar/provider/client.py new file mode 100644 index 000000000..cd4aad8d4 --- /dev/null +++ b/gcalendar/provider/client.py @@ -0,0 +1,77 @@ +import logging +import os +import datetime + +from flask import current_app as app +from google.auth.transport.requests import Request +from google.oauth2.credentials import Credentials +from google_auth_oauthlib.flow import InstalledAppFlow +from googleapiclient.discovery import build +from googleapiclient.errors import HttpError + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +client = None + + +class GoogleCalendarClient: + DEFAULT_SEARCH_LIMIT = 20 + SCOPES = [ + "https://www.googleapis.com/auth/calendar.readonly", + ] + + def __init__(self): + creds = None + # Handle Authentication + if os.path.exists("token.json"): + logger.debug("Found token.json file") + creds = Credentials.from_authorized_user_file("token.json", self.SCOPES) + + # If there are no (valid) credentials available, let the user log in. + if not creds or not creds.valid: + logger.debug("No valid credentials found") + if creds and creds.expired and creds.refresh_token: + creds.refresh(Request()) + else: + flow = InstalledAppFlow.from_client_secrets_file( + "credentials.json", self.SCOPES + ) + creds = flow.run_local_server(port=0) + + # Save the credentials for the next run + with open("token.json", "w") as token: + token.write(creds.to_json()) + + self.service = build("calendar", "v3", credentials=creds) + + def _request(self, request): + try: + return request.execute() + except HttpError as http_error: + raise UpstreamProviderError(message=str(http_error)) from http_error + + def search_events(self, query): + now = datetime.datetime.utcnow().isoformat() + "Z" # 'Z' indicates UTC time + request = self.service.events().list( + calendarId="primary", + timeMin=now, + maxResults=self.DEFAULT_SEARCH_LIMIT, + singleEvents=True, + orderBy="startTime", + q=query, + ) + + search_results = self._request(request).get("items", []) + + return search_results + + +def get_client(): + global client + if client is None: + client = GoogleCalendarClient() + + return client diff --git a/gcalendar/provider/provider.py b/gcalendar/provider/provider.py new file mode 100644 index 000000000..5601f2eaf --- /dev/null +++ b/gcalendar/provider/provider.py @@ -0,0 +1,54 @@ +import logging +import base64 +from typing import Any + +from .client import get_client + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + gcalendar_client = get_client() + search_results = gcalendar_client.search_events(query) + + results = [] + for event in search_results: + result = serialize_result(event) + results.append(result) + + return results + + +def flatten_dict(d, parent_key="", sep="_"): + flattened = {} + for k, v in d.items(): + new_key = f"{parent_key}{sep}{k}" if parent_key else k + if isinstance(v, dict): + flattened.update(flatten_dict(v, new_key, sep=sep)) + else: + flattened[new_key] = v + return flattened + + +def serialize_result(event): + data = flatten_dict(event) + stripped_data = { + key: str(value) + for key, value in data.items() + if isinstance(value, (str, int, bool)) + } + + if "description" in stripped_data: + stripped_data["text"] = stripped_data["description"] + del stripped_data["description"] + + if "summary" in stripped_data: + stripped_data["title"] = stripped_data["summary"] + del stripped_data["summary"] + + if "htmlLink" in stripped_data: + stripped_data["url"] = stripped_data["htmlLink"] + del stripped_data["htmlLink"] + + return stripped_data diff --git a/gcalendar/pyproject.toml b/gcalendar/pyproject.toml new file mode 100644 index 000000000..2b05bf83c --- /dev/null +++ b/gcalendar/pyproject.toml @@ -0,0 +1,32 @@ +[tool.poetry] +name = "gmail" +version = "0.1.0" +description = "Connects Cohere to GMail" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +flask = "2.2.5" +requests = "^2.31.0" +google-api-python-client = "2.92.0" +google-auth-httplib2 = "0.1.0" +google-auth-oauthlib = "1.0.0" +gunicorn = "^21.2.0" + + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-colorama = "^0.4.15.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/gdrive/.env-template b/gdrive/.env-template new file mode 100644 index 000000000..39bb2aaa0 --- /dev/null +++ b/gdrive/.env-template @@ -0,0 +1,6 @@ +# For Service Account Authentication +GDRIVE_SERVICE_ACCOUNT_INFO= +GDRIVE_CONNECTOR_API_KEY= +# Optional Configuration +GDRIVE_FOLDER_ID= +GDRIVE_SEARCH_LIMIT= diff --git a/gdrive/.gitignore b/gdrive/.gitignore new file mode 100644 index 000000000..f5c20a528 --- /dev/null +++ b/gdrive/.gitignore @@ -0,0 +1,3 @@ +credentials.json +token.json + diff --git a/gdrive/README.md b/gdrive/README.md new file mode 100644 index 000000000..4dd262874 --- /dev/null +++ b/gdrive/README.md @@ -0,0 +1,110 @@ +# Google Drive Quick Start Connector + +This project demonstrates how to create a simple connector for Google Drive that can be used in Cohere's API. + +## Limitations + +Currently this connector can only search for Google Docs, Google Sheets, and Google Slide files. It does not support searching for other file types. + +## Authentication + +This connector supports two types of authentication: Service Account and OAuth. + +### Service Account + +For service account authentication this connector requires two environment variables: + +#### `GDRIVE_SERVICE_ACCOUNT_INFO` + +The `GDRIVE_SERVICE_ACCOUNT_INFO` variable should contain the JSON content of the service account credentials file. To get the credentials file, follow these steps: + +1. [Create a project in Google Cloud Console](https://cloud.google.com/resource-manager/docs/creating-managing-projects). +2. [Create a service account](https://cloud.google.com/iam/docs/creating-managing-service-accounts) and [activate the Google Drive API](https://console.cloud.google.com/apis/api/drive.googleapis.com) in the Google Cloud Console. +3. [Create a service account key](https://cloud.google.com/iam/docs/creating-managing-service-account-keys) and download the credentials file as JSON. The credentials file should look like this: + +```json +{ + "type": "service_account", + "project_id": "{project id}", + "private_key_id": "{private_key_id}", + "private_key": "{private_key}", + "client_email": "{client_email}", + "client_id": "{client_id}", + "auth_uri": "{auth_uri}", + "token_uri": "{token_uri}", + "auth_provider_x509_cert_url": "{auth_provider_x509_cert_url}", + "client_x509_cert_url": "{client_x509_cert_url}", + "universe_domain": "{universe_domain}" +} +``` + +4. Convert the JSON credentails to a string through `json.dumps(credentials)` and save the result in the `GDRIVE_SERVICE_ACCOUNT_INFO` environment variable. +5. Make sure to [share the folder(s) you want to search with the service account email address](https://support.google.com/a/answer/7337554?hl=en). + +#### `GDRIVE_CONNECTOR_API_KEY` + +The `GDRIVE_CONNECTOR_API_KEY` should contain an API key for the connector. This value must be present in the `Authorization` header for all requests to the connector. + +### OAuth + +When using OAuth for authentication, the connector does not require any additional environment variables. Instead, the OAuth flow should occur outside of the Connector and Cohere's API will forward the user's access token to this connector through the `Authorization` header. + +To use OAuth, you must first create a Google OAuth client ID and secret. You can follow Google's [guide](https://developers.google.com/identity/protocols/oauth2/web-server#creatingcred) to get started. When creating your application use `https://api.cohere.com/v1/connectors/oauth/token` as the redirect URI. + +Once your Google OAuth credentials are ready, you can register the connector in Cohere's API with the following configuration: + +```bash +curl -X POST \ + 'https://api.cohere.ai/v1/connectors' \ + --header 'Accept: */*' \ + --header 'Authorization: Bearer {COHERE-API-KEY}' \ + --header 'Content-Type: application/json' \ + --data-raw '{ + "name": "GDrive with OAuth", + "url": "{YOUR_CONNECTOR-URL}", + "oauth": { + "client_id": "{GOOGLE-OAUTH-CLIENT-ID}", + "client_secret": "{GOOGLE-OAUTH-CLIENT-SECRET}", + "authorize_url": "https://accounts.google.com/o/oauth2/auth", + "token_url": "https://oauth2.googleapis.com/token", + "scope": "https://www.googleapis.com/auth/drive.readonly" + } +}' +``` + +With OAuth the connector will be able to search any Google Drive folders that the user has access to. + +## Optional Configuration + +This connector also supports a few optional environment variables to configure the search: + +1. `GDRIVE_SEARCH_LIMIT` - Number of results to return. Default is 10. +2. `GDRIVE_FOLDER_ID` - ID of the folder to search in. If not provided, the search will be performed in the whole drive. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Next, start up the search connector server: + +```bash + $ poetry flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/gdrive/poetry.lock b/gdrive/poetry.lock new file mode 100644 index 000000000..ad567aa46 --- /dev/null +++ b/gdrive/poetry.lock @@ -0,0 +1,1606 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "async-timeout" +version = "4.0.3" +description = "Timeout context manager for asyncio programs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachetools" +version = "5.3.2" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, + {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "google-api-core" +version = "2.13.0" +description = "Google API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.13.0.tar.gz", hash = "sha256:abc1da067c9026c6cd15dfbd4f6ad07735a62eeadc541d1cc296314447fc3aad"}, + {file = "google_api_core-2.13.0-py3-none-any.whl", hash = "sha256:44ed591f6c3a0c1ac7a91867d2b3841f92839f860f3d3fe26c464dbd50f97094"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] + +[[package]] +name = "google-api-python-client" +version = "2.107.0" +description = "Google API Client Library for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-python-client-2.107.0.tar.gz", hash = "sha256:ef6d4c1a17fe9ec0894fc6d4f61e751c4b859fb33f2ab5b881ceb0b80ba442ba"}, + {file = "google_api_python_client-2.107.0-py2.py3-none-any.whl", hash = "sha256:51d7bf676f41a77b00b7b9c72ace0c1db3dd5a4dd392a13ae897cf4f571a3539"}, +] + +[package.dependencies] +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0.dev0" +google-auth = ">=1.19.0,<3.0.0.dev0" +google-auth-httplib2 = ">=0.1.0" +httplib2 = ">=0.15.0,<1.dev0" +uritemplate = ">=3.0.1,<5" + +[[package]] +name = "google-auth" +version = "2.23.4" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-auth-2.23.4.tar.gz", hash = "sha256:79905d6b1652187def79d491d6e23d0cbb3a21d3c7ba0dbaa9c8a01906b13ff3"}, + {file = "google_auth-2.23.4-py2.py3-none-any.whl", hash = "sha256:d4bbc92fe4b8bfd2f3e8d88e5ba7085935da208ee38a134fc280e7ce682a05f2"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = ">=3.1.4,<5" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] + +[[package]] +name = "google-auth-httplib2" +version = "0.1.1" +description = "Google Authentication Library: httplib2 transport" +optional = false +python-versions = "*" +files = [ + {file = "google-auth-httplib2-0.1.1.tar.gz", hash = "sha256:c64bc555fdc6dd788ea62ecf7bccffcf497bf77244887a3f3d7a5a02f8e3fc29"}, + {file = "google_auth_httplib2-0.1.1-py2.py3-none-any.whl", hash = "sha256:42c50900b8e4dcdf8222364d1f0efe32b8421fb6ed72f2613f12f75cc933478c"}, +] + +[package.dependencies] +google-auth = "*" +httplib2 = ">=0.19.0" + +[[package]] +name = "google-auth-oauthlib" +version = "1.1.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "google-auth-oauthlib-1.1.0.tar.gz", hash = "sha256:83ea8c3b0881e453790baff4448e8a6112ac8778d1de9da0b68010b843937afb"}, + {file = "google_auth_oauthlib-1.1.0-py2.py3-none-any.whl", hash = "sha256:089c6e587d36f4803ac7e0720c045c6a8b1fd1790088b8424975b90d0ee61c12"}, +] + +[package.dependencies] +google-auth = ">=2.15.0" +requests-oauthlib = ">=0.7.0" + +[package.extras] +tool = ["click (>=6.0.0)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.61.0" +description = "Common protobufs used in Google APIs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.61.0.tar.gz", hash = "sha256:8a64866a97f6304a7179873a465d6eee97b7a24ec6cfd78e0f575e96b821240b"}, + {file = "googleapis_common_protos-1.61.0-py2.py3-none-any.whl", hash = "sha256:22f1915393bb3245343f6efe87f6fe868532efc12aa26b391b15132e1279f1c0"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "httplib2" +version = "0.22.0" +description = "A comprehensive HTTP client library." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc"}, + {file = "httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81"}, +] + +[package.dependencies] +pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0.2,<3.0.3 || >3.0.3,<4", markers = "python_version > \"3.0\""} + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "joblib" +version = "1.3.2" +description = "Lightweight pipelining with Python functions" +optional = false +python-versions = ">=3.7" +files = [ + {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, + {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, +] + +[[package]] +name = "jsonschema" +version = "4.19.2" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.2-py3-none-any.whl", hash = "sha256:eee9e502c788e89cb166d4d37f43084e3b64ab405c795c03d343a4dbc2c810fc"}, + {file = "jsonschema-4.19.2.tar.gz", hash = "sha256:c9ff4d7447eed9592c23a12ccee508baf0dd0d59650615e847feb6cdca74f392"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "mypy" +version = "1.6.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e5012e5cc2ac628177eaac0e83d622b2dd499e28253d4107a08ecc59ede3fc2c"}, + {file = "mypy-1.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d8fbb68711905f8912e5af474ca8b78d077447d8f3918997fecbf26943ff3cbb"}, + {file = "mypy-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a1ad938fee7d2d96ca666c77b7c494c3c5bd88dff792220e1afbebb2925b5e"}, + {file = "mypy-1.6.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b96ae2c1279d1065413965c607712006205a9ac541895004a1e0d4f281f2ff9f"}, + {file = "mypy-1.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:40b1844d2e8b232ed92e50a4bd11c48d2daa351f9deee6c194b83bf03e418b0c"}, + {file = "mypy-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:81af8adaa5e3099469e7623436881eff6b3b06db5ef75e6f5b6d4871263547e5"}, + {file = "mypy-1.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8c223fa57cb154c7eab5156856c231c3f5eace1e0bed9b32a24696b7ba3c3245"}, + {file = "mypy-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8032e00ce71c3ceb93eeba63963b864bf635a18f6c0c12da6c13c450eedb183"}, + {file = "mypy-1.6.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4c46b51de523817a0045b150ed11b56f9fff55f12b9edd0f3ed35b15a2809de0"}, + {file = "mypy-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:19f905bcfd9e167159b3d63ecd8cb5e696151c3e59a1742e79bc3bcb540c42c7"}, + {file = "mypy-1.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:82e469518d3e9a321912955cc702d418773a2fd1e91c651280a1bda10622f02f"}, + {file = "mypy-1.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d4473c22cc296425bbbce7e9429588e76e05bc7342da359d6520b6427bf76660"}, + {file = "mypy-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59a0d7d24dfb26729e0a068639a6ce3500e31d6655df8557156c51c1cb874ce7"}, + {file = "mypy-1.6.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cfd13d47b29ed3bbaafaff7d8b21e90d827631afda134836962011acb5904b71"}, + {file = "mypy-1.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:eb4f18589d196a4cbe5290b435d135dee96567e07c2b2d43b5c4621b6501531a"}, + {file = "mypy-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:41697773aa0bf53ff917aa077e2cde7aa50254f28750f9b88884acea38a16169"}, + {file = "mypy-1.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7274b0c57737bd3476d2229c6389b2ec9eefeb090bbaf77777e9d6b1b5a9d143"}, + {file = "mypy-1.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbaf4662e498c8c2e352da5f5bca5ab29d378895fa2d980630656178bd607c46"}, + {file = "mypy-1.6.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bb8ccb4724f7d8601938571bf3f24da0da791fe2db7be3d9e79849cb64e0ae85"}, + {file = "mypy-1.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:68351911e85145f582b5aa6cd9ad666c8958bcae897a1bfda8f4940472463c45"}, + {file = "mypy-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:49ae115da099dcc0922a7a895c1eec82c1518109ea5c162ed50e3b3594c71208"}, + {file = "mypy-1.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b27958f8c76bed8edaa63da0739d76e4e9ad4ed325c814f9b3851425582a3cd"}, + {file = "mypy-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:925cd6a3b7b55dfba252b7c4561892311c5358c6b5a601847015a1ad4eb7d332"}, + {file = "mypy-1.6.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8f57e6b6927a49550da3d122f0cb983d400f843a8a82e65b3b380d3d7259468f"}, + {file = "mypy-1.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:a43ef1c8ddfdb9575691720b6352761f3f53d85f1b57d7745701041053deff30"}, + {file = "mypy-1.6.1-py3-none-any.whl", hash = "sha256:4cbe68ef919c28ea561165206a2dcb68591c50f3bcf777932323bc208d949cf1"}, + {file = "mypy-1.6.1.tar.gz", hash = "sha256:4d01c00d09a0be62a4ca3f933e315455bde83f37f892ba4b08ce92f3cf44bcc1"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "nltk" +version = "3.8.1" +description = "Natural Language Toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "nltk-3.8.1-py3-none-any.whl", hash = "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5"}, + {file = "nltk-3.8.1.zip", hash = "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3"}, +] + +[package.dependencies] +click = "*" +joblib = "*" +regex = ">=2021.8.3" +tqdm = "*" + +[package.extras] +all = ["matplotlib", "numpy", "pyparsing", "python-crfsuite", "requests", "scikit-learn", "scipy", "twython"] +corenlp = ["requests"] +machine-learning = ["numpy", "python-crfsuite", "scikit-learn", "scipy"] +plot = ["matplotlib"] +tgrep = ["pyparsing"] +twitter = ["twython"] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "protobuf" +version = "4.25.0" +description = "" +optional = false +python-versions = ">=3.8" +files = [ + {file = "protobuf-4.25.0-cp310-abi3-win32.whl", hash = "sha256:5c1203ac9f50e4853b0a0bfffd32c67118ef552a33942982eeab543f5c634395"}, + {file = "protobuf-4.25.0-cp310-abi3-win_amd64.whl", hash = "sha256:c40ff8f00aa737938c5378d461637d15c442a12275a81019cc2fef06d81c9419"}, + {file = "protobuf-4.25.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:cf21faba64cd2c9a3ed92b7a67f226296b10159dbb8fbc5e854fc90657d908e4"}, + {file = "protobuf-4.25.0-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:32ac2100b0e23412413d948c03060184d34a7c50b3e5d7524ee96ac2b10acf51"}, + {file = "protobuf-4.25.0-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:683dc44c61f2620b32ce4927de2108f3ebe8ccf2fd716e1e684e5a50da154054"}, + {file = "protobuf-4.25.0-cp38-cp38-win32.whl", hash = "sha256:1a3ba712877e6d37013cdc3476040ea1e313a6c2e1580836a94f76b3c176d575"}, + {file = "protobuf-4.25.0-cp38-cp38-win_amd64.whl", hash = "sha256:b2cf8b5d381f9378afe84618288b239e75665fe58d0f3fd5db400959274296e9"}, + {file = "protobuf-4.25.0-cp39-cp39-win32.whl", hash = "sha256:63714e79b761a37048c9701a37438aa29945cd2417a97076048232c1df07b701"}, + {file = "protobuf-4.25.0-cp39-cp39-win_amd64.whl", hash = "sha256:d94a33db8b7ddbd0af7c467475fb9fde0c705fb315a8433c0e2020942b863a1f"}, + {file = "protobuf-4.25.0-py3-none-any.whl", hash = "sha256:1a53d6f64b00eecf53b65ff4a8c23dc95df1fa1e97bb06b8122e5a64f49fc90a"}, + {file = "protobuf-4.25.0.tar.gz", hash = "sha256:68f7caf0d4f012fd194a301420cf6aa258366144d814f358c5b32558228afa7c"}, +] + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "pyparsing" +version = "3.1.1" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, + {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "regex" +version = "2023.10.3" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.7" +files = [ + {file = "regex-2023.10.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c34d4f73ea738223a094d8e0ffd6d2c1a1b4c175da34d6b0de3d8d69bee6bcc"}, + {file = "regex-2023.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8f4e49fc3ce020f65411432183e6775f24e02dff617281094ba6ab079ef0915"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4cd1bccf99d3ef1ab6ba835308ad85be040e6a11b0977ef7ea8c8005f01a3c29"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:81dce2ddc9f6e8f543d94b05d56e70d03a0774d32f6cca53e978dc01e4fc75b8"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c6b4d23c04831e3ab61717a707a5d763b300213db49ca680edf8bf13ab5d91b"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c15ad0aee158a15e17e0495e1e18741573d04eb6da06d8b84af726cfc1ed02ee"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6239d4e2e0b52c8bd38c51b760cd870069f0bdf99700a62cd509d7a031749a55"}, + {file = "regex-2023.10.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4a8bf76e3182797c6b1afa5b822d1d5802ff30284abe4599e1247be4fd6b03be"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d9c727bbcf0065cbb20f39d2b4f932f8fa1631c3e01fcedc979bd4f51fe051c5"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:3ccf2716add72f80714b9a63899b67fa711b654be3fcdd34fa391d2d274ce767"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:107ac60d1bfdc3edb53be75e2a52aff7481b92817cfdddd9b4519ccf0e54a6ff"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:00ba3c9818e33f1fa974693fb55d24cdc8ebafcb2e4207680669d8f8d7cca79a"}, + {file = "regex-2023.10.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f0a47efb1dbef13af9c9a54a94a0b814902e547b7f21acb29434504d18f36e3a"}, + {file = "regex-2023.10.3-cp310-cp310-win32.whl", hash = "sha256:36362386b813fa6c9146da6149a001b7bd063dabc4d49522a1f7aa65b725c7ec"}, + {file = "regex-2023.10.3-cp310-cp310-win_amd64.whl", hash = "sha256:c65a3b5330b54103e7d21cac3f6bf3900d46f6d50138d73343d9e5b2900b2353"}, + {file = "regex-2023.10.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:90a79bce019c442604662d17bf69df99090e24cdc6ad95b18b6725c2988a490e"}, + {file = "regex-2023.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c7964c2183c3e6cce3f497e3a9f49d182e969f2dc3aeeadfa18945ff7bdd7051"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ef80829117a8061f974b2fda8ec799717242353bff55f8a29411794d635d964"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5addc9d0209a9afca5fc070f93b726bf7003bd63a427f65ef797a931782e7edc"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c148bec483cc4b421562b4bcedb8e28a3b84fcc8f0aa4418e10898f3c2c0eb9b"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d1f21af4c1539051049796a0f50aa342f9a27cde57318f2fc41ed50b0dbc4ac"}, + {file = "regex-2023.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b9ac09853b2a3e0d0082104036579809679e7715671cfbf89d83c1cb2a30f58"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ebedc192abbc7fd13c5ee800e83a6df252bec691eb2c4bedc9f8b2e2903f5e2a"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d8a993c0a0ffd5f2d3bda23d0cd75e7086736f8f8268de8a82fbc4bd0ac6791e"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:be6b7b8d42d3090b6c80793524fa66c57ad7ee3fe9722b258aec6d0672543fd0"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4023e2efc35a30e66e938de5aef42b520c20e7eda7bb5fb12c35e5d09a4c43f6"}, + {file = "regex-2023.10.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0d47840dc05e0ba04fe2e26f15126de7c755496d5a8aae4a08bda4dd8d646c54"}, + {file = "regex-2023.10.3-cp311-cp311-win32.whl", hash = "sha256:9145f092b5d1977ec8c0ab46e7b3381b2fd069957b9862a43bd383e5c01d18c2"}, + {file = "regex-2023.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:b6104f9a46bd8743e4f738afef69b153c4b8b592d35ae46db07fc28ae3d5fb7c"}, + {file = "regex-2023.10.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bff507ae210371d4b1fe316d03433ac099f184d570a1a611e541923f78f05037"}, + {file = "regex-2023.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be5e22bbb67924dea15039c3282fa4cc6cdfbe0cbbd1c0515f9223186fc2ec5f"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a992f702c9be9c72fa46f01ca6e18d131906a7180950958f766c2aa294d4b41"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7434a61b158be563c1362d9071358f8ab91b8d928728cd2882af060481244c9e"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2169b2dcabf4e608416f7f9468737583ce5f0a6e8677c4efbf795ce81109d7c"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9e908ef5889cda4de038892b9accc36d33d72fb3e12c747e2799a0e806ec841"}, + {file = "regex-2023.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12bd4bc2c632742c7ce20db48e0d99afdc05e03f0b4c1af90542e05b809a03d9"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bc72c231f5449d86d6c7d9cc7cd819b6eb30134bb770b8cfdc0765e48ef9c420"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bce8814b076f0ce5766dc87d5a056b0e9437b8e0cd351b9a6c4e1134a7dfbda9"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:ba7cd6dc4d585ea544c1412019921570ebd8a597fabf475acc4528210d7c4a6f"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b0c7d2f698e83f15228ba41c135501cfe7d5740181d5903e250e47f617eb4292"}, + {file = "regex-2023.10.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5a8f91c64f390ecee09ff793319f30a0f32492e99f5dc1c72bc361f23ccd0a9a"}, + {file = "regex-2023.10.3-cp312-cp312-win32.whl", hash = "sha256:ad08a69728ff3c79866d729b095872afe1e0557251da4abb2c5faff15a91d19a"}, + {file = "regex-2023.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:39cdf8d141d6d44e8d5a12a8569d5a227f645c87df4f92179bd06e2e2705e76b"}, + {file = "regex-2023.10.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4a3ee019a9befe84fa3e917a2dd378807e423d013377a884c1970a3c2792d293"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76066d7ff61ba6bf3cb5efe2428fc82aac91802844c022d849a1f0f53820502d"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfe50b61bab1b1ec260fa7cd91106fa9fece57e6beba05630afe27c71259c59b"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fd88f373cb71e6b59b7fa597e47e518282455c2734fd4306a05ca219a1991b0"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3ab05a182c7937fb374f7e946f04fb23a0c0699c0450e9fb02ef567412d2fa3"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dac37cf08fcf2094159922edc7a2784cfcc5c70f8354469f79ed085f0328ebdf"}, + {file = "regex-2023.10.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e54ddd0bb8fb626aa1f9ba7b36629564544954fff9669b15da3610c22b9a0991"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:3367007ad1951fde612bf65b0dffc8fd681a4ab98ac86957d16491400d661302"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:16f8740eb6dbacc7113e3097b0a36065a02e37b47c936b551805d40340fb9971"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:f4f2ca6df64cbdd27f27b34f35adb640b5d2d77264228554e68deda54456eb11"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:39807cbcbe406efca2a233884e169d056c35aa7e9f343d4e78665246a332f597"}, + {file = "regex-2023.10.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:7eece6fbd3eae4a92d7c748ae825cbc1ee41a89bb1c3db05b5578ed3cfcfd7cb"}, + {file = "regex-2023.10.3-cp37-cp37m-win32.whl", hash = "sha256:ce615c92d90df8373d9e13acddd154152645c0dc060871abf6bd43809673d20a"}, + {file = "regex-2023.10.3-cp37-cp37m-win_amd64.whl", hash = "sha256:0f649fa32fe734c4abdfd4edbb8381c74abf5f34bc0b3271ce687b23729299ed"}, + {file = "regex-2023.10.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9b98b7681a9437262947f41c7fac567c7e1f6eddd94b0483596d320092004533"}, + {file = "regex-2023.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:91dc1d531f80c862441d7b66c4505cd6ea9d312f01fb2f4654f40c6fdf5cc37a"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82fcc1f1cc3ff1ab8a57ba619b149b907072e750815c5ba63e7aa2e1163384a4"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7979b834ec7a33aafae34a90aad9f914c41fd6eaa8474e66953f3f6f7cbd4368"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef71561f82a89af6cfcbee47f0fabfdb6e63788a9258e913955d89fdd96902ab"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd829712de97753367153ed84f2de752b86cd1f7a88b55a3a775eb52eafe8a94"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00e871d83a45eee2f8688d7e6849609c2ca2a04a6d48fba3dff4deef35d14f07"}, + {file = "regex-2023.10.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:706e7b739fdd17cb89e1fbf712d9dc21311fc2333f6d435eac2d4ee81985098c"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:cc3f1c053b73f20c7ad88b0d1d23be7e7b3901229ce89f5000a8399746a6e039"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6f85739e80d13644b981a88f529d79c5bdf646b460ba190bffcaf6d57b2a9863"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:741ba2f511cc9626b7561a440f87d658aabb3d6b744a86a3c025f866b4d19e7f"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e77c90ab5997e85901da85131fd36acd0ed2221368199b65f0d11bca44549711"}, + {file = "regex-2023.10.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:979c24cbefaf2420c4e377ecd1f165ea08cc3d1fbb44bdc51bccbbf7c66a2cb4"}, + {file = "regex-2023.10.3-cp38-cp38-win32.whl", hash = "sha256:58837f9d221744d4c92d2cf7201c6acd19623b50c643b56992cbd2b745485d3d"}, + {file = "regex-2023.10.3-cp38-cp38-win_amd64.whl", hash = "sha256:c55853684fe08d4897c37dfc5faeff70607a5f1806c8be148f1695be4a63414b"}, + {file = "regex-2023.10.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2c54e23836650bdf2c18222c87f6f840d4943944146ca479858404fedeb9f9af"}, + {file = "regex-2023.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:69c0771ca5653c7d4b65203cbfc5e66db9375f1078689459fe196fe08b7b4930"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ac965a998e1388e6ff2e9781f499ad1eaa41e962a40d11c7823c9952c77123e"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c0e8fae5b27caa34177bdfa5a960c46ff2f78ee2d45c6db15ae3f64ecadde14"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c56c3d47da04f921b73ff9415fbaa939f684d47293f071aa9cbb13c94afc17d"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ef1e014eed78ab650bef9a6a9cbe50b052c0aebe553fb2881e0453717573f52"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d29338556a59423d9ff7b6eb0cb89ead2b0875e08fe522f3e068b955c3e7b59b"}, + {file = "regex-2023.10.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9c6d0ced3c06d0f183b73d3c5920727268d2201aa0fe6d55c60d68c792ff3588"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:994645a46c6a740ee8ce8df7911d4aee458d9b1bc5639bc968226763d07f00fa"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:66e2fe786ef28da2b28e222c89502b2af984858091675044d93cb50e6f46d7af"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:11175910f62b2b8c055f2b089e0fedd694fe2be3941b3e2633653bc51064c528"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:06e9abc0e4c9ab4779c74ad99c3fc10d3967d03114449acc2c2762ad4472b8ca"}, + {file = "regex-2023.10.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fb02e4257376ae25c6dd95a5aec377f9b18c09be6ebdefa7ad209b9137b73d48"}, + {file = "regex-2023.10.3-cp39-cp39-win32.whl", hash = "sha256:3b2c3502603fab52d7619b882c25a6850b766ebd1b18de3df23b2f939360e1bd"}, + {file = "regex-2023.10.3-cp39-cp39-win_amd64.whl", hash = "sha256:adbccd17dcaff65704c856bd29951c58a1bd4b2b0f8ad6b826dbd543fe740988"}, + {file = "regex-2023.10.3.tar.gz", hash = "sha256:3fef4f844d2290ee0ba57addcec17eec9e3df73f10a2748485dfd6a3a188cc0f"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.12.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46"}, + {file = "rpds_py-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e"}, + {file = "rpds_py-0.12.0-cp310-none-win32.whl", hash = "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29"}, + {file = "rpds_py-0.12.0-cp310-none-win_amd64.whl", hash = "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c"}, + {file = "rpds_py-0.12.0-cp311-none-win32.whl", hash = "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10"}, + {file = "rpds_py-0.12.0-cp311-none-win_amd64.whl", hash = "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b"}, + {file = "rpds_py-0.12.0-cp312-none-win32.whl", hash = "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978"}, + {file = "rpds_py-0.12.0-cp312-none-win_amd64.whl", hash = "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c"}, + {file = "rpds_py-0.12.0-cp38-none-win32.whl", hash = "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595"}, + {file = "rpds_py-0.12.0-cp38-none-win_amd64.whl", hash = "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0"}, + {file = "rpds_py-0.12.0-cp39-none-win32.whl", hash = "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31"}, + {file = "rpds_py-0.12.0-cp39-none-win_amd64.whl", hash = "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4"}, + {file = "rpds_py-0.12.0.tar.gz", hash = "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80"}, +] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "tqdm" +version = "4.66.1" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.1-py3-none-any.whl", hash = "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386"}, + {file = "tqdm-4.66.1.tar.gz", hash = "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "types-requests" +version = "2.31.0.10" +description = "Typing stubs for requests" +optional = false +python-versions = ">=3.7" +files = [ + {file = "types-requests-2.31.0.10.tar.gz", hash = "sha256:dc5852a76f1eaf60eafa81a2e50aefa3d1f015c34cf0cba130930866b1b22a92"}, + {file = "types_requests-2.31.0.10-py3-none-any.whl", hash = "sha256:b32b9a86beffa876c0c3ac99a4cd3b8b51e973fb8e3bd4e0a6bb32c7efad80fc"}, +] + +[package.dependencies] +urllib3 = ">=2" + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "uritemplate" +version = "4.1.1" +description = "Implementation of RFC 6570 URI Templates" +optional = false +python-versions = ">=3.6" +files = [ + {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, + {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "e54db92fc89ed7bd4b7bd785599a9f2f06ab1e20b742ebc33d90f90e90a167c5" diff --git a/gdrive/provider/__init__.py b/gdrive/provider/__init__.py new file mode 100644 index 000000000..2dfc6a1f5 --- /dev/null +++ b/gdrive/provider/__init__.py @@ -0,0 +1,35 @@ +import logging +import os +import nltk + +import connexion +from dotenv import load_dotenv + +load_dotenv() + +# download nltk data +nltk.download("stopwords") +nltk.download("punkt") + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message): + self.message = message + + def __str__(self): + return self.message + + +def create_app(): + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + + return flask_app diff --git a/gdrive/provider/app.py b/gdrive/provider/app.py new file mode 100644 index 000000000..dc055420a --- /dev/null +++ b/gdrive/provider/app.py @@ -0,0 +1,38 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, request, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) +AUTHORIZATION_HEADER = "Authorization" +BEARER_PREFIX = "Bearer " + + +def get_access_token() -> str | None: + authorization_header = request.headers.get(AUTHORIZATION_HEADER, "") + if authorization_header.startswith(BEARER_PREFIX): + return authorization_header.removeprefix(BEARER_PREFIX) + return None + + +def search(body): + try: + data = provider.search(body["query"], get_access_token()) + except UpstreamProviderError as error: + logger.error(f"Upstream connector error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"GDrive config error: {error}") + abort(502, f"GDrive config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/gdrive/provider/async_download.py b/gdrive/provider/async_download.py new file mode 100644 index 000000000..010dff657 --- /dev/null +++ b/gdrive/provider/async_download.py @@ -0,0 +1,36 @@ +import functools +import asyncio +import aiohttp +import logging + +TIMEOUT = aiohttp.ClientTimeout(total=15) +loop = asyncio.get_event_loop() +logger = logging.getLogger(__name__) + + +def perform(id_to_urls: dict[str, str], access_token: str) -> dict[str, str]: + return loop.run_until_complete(_download_files(id_to_urls, access_token)) + + +async def _download_files( + id_to_urls: dict[str, str], access_token: str +) -> dict[str, str]: + async with aiohttp.ClientSession() as session: + tasks = [ + _download(session, id, url, access_token) + for (id, url) in id_to_urls.items() + ] + id_to_texts = await asyncio.gather(*tasks) + return functools.reduce(lambda x, y: x | y, id_to_texts) + + +async def _download( + session: aiohttp.ClientSession, id: str, url: str, access_token: str +): + headers = {"Authorization": f"Bearer {access_token}"} + try: + async with session.get(url, headers=headers, timeout=TIMEOUT) as response: + return {id: await response.text()} + except Exception as e: + logger.error(f"Error fetching {url}: {e}") + return {} diff --git a/gdrive/provider/provider.py b/gdrive/provider/provider.py new file mode 100644 index 000000000..c4444d1dd --- /dev/null +++ b/gdrive/provider/provider.py @@ -0,0 +1,147 @@ +import logging +from flask import current_app as app +from nltk.corpus import stopwords +from nltk.tokenize import word_tokenize +from google.auth.transport.requests import Request +from google.oauth2 import service_account +from google.oauth2.credentials import Credentials +from googleapiclient.discovery import build +from googleapiclient.errors import HttpError + +from . import UpstreamProviderError, async_download + +CSV_MIMETYPE = "text/csv" +TEXT_MIMETYPE = "text/plain" +SCOPES = [ + "https://www.googleapis.com/auth/drive.metadata.readonly", + "https://www.googleapis.com/auth/drive.readonly", +] +SEARCH_MIME_TYPES = [ + "application/vnd.google-apps.document", + "application/vnd.google-apps.spreadsheet", + "application/vnd.google-apps.presentation", +] +DOC_FIELDS = ( + "id, name, mimeType, webViewLink, lastModifyingUser, modifiedTime, exportLinks" +) + +logger = logging.getLogger(__name__) + + +def process_data_with_service(data, request_credentials: Credentials): + results = [] + files = data.get("files", []) + if not files: + logger.debug("No files found.") + return results + + id_to_urls = extract_links(files) + id_to_texts = async_download.perform(id_to_urls, request_credentials.token) + + for _file in files: + id = _file.get("id") + if id is None: + continue + + text = id_to_texts.get(id) + if text is None: + continue + + title = _file.pop("name", None) + url = _file.pop("webViewLink", None) + modifiedTime = _file.pop("modifiedTime", None) + lastModifyingUser = _file.pop("lastModifyingUser", None) + + data_to_append = _file + data_to_append["text"] = text + if title: + data_to_append["title"] = title + if url: + data_to_append["url"] = url + if modifiedTime: + data_to_append["modifiedTime"] = modifiedTime + if lastModifyingUser and "displayName" in lastModifyingUser: + data_to_append["editedBy"] = lastModifyingUser["displayName"] + results.append(data_to_append) + + return results + + +def extract_links(files) -> [str, str]: + id_to_urls = dict() + for _file in files: + export_links = _file.pop("exportLinks", {}) + id = _file.get("id") + if id is None: + continue + + if TEXT_MIMETYPE in export_links: + id_to_urls[id] = export_links[TEXT_MIMETYPE] + elif CSV_MIMETYPE in export_links: + id_to_urls[id] = export_links[CSV_MIMETYPE] + return id_to_urls + + +def split_and_remove_stopwords(text: str): + # Tokenize the input text + words = word_tokenize(text) + stop_words = set(stopwords.words("english")) + filtered_words = [word for word in words if word.lower() not in stop_words] + + return filtered_words + + +def request_credentials(access_token=None): + if service_account_info := app.config.get("SERVICE_ACCOUNT_INFO"): + logger.debug("Using service account credentials") + credentials = service_account.Credentials.from_service_account_info( + service_account_info, scopes=SCOPES + ) + if credentials.expired or not credentials.valid: + credentials.refresh(Request()) + + return credentials + elif access_token: + logger.debug("Using oauth credentials") + return Credentials(access_token) + else: + raise AssertionError("No service account or oauth credentials provided") + + +def search(query, access_token=None): + service = build("drive", "v3", credentials=request_credentials(access_token)) + + # Google Drive's API search will attempt to match the search query exactly + # which leads to poor results. We split the query into words and remove stop words + # to improve the search results. + query_words = split_and_remove_stopwords(query) + + conditions = [ + "(" + + " or ".join([f"mimeType = '{mime_type}'" for mime_type in SEARCH_MIME_TYPES]) + + ")", + "(" + + " or ".join([f"fullText contains '{word}'" for word in query_words]) + + ")", + ] + + if gdrive_folder_id := app.config.get("FOLDER_ID", None): + conditions.append(f"'{gdrive_folder_id}' in parents ") + + q = " and ".join(conditions) + page_size = app.config.get("SEARCH_LIMIT", 10) + fields = f"nextPageToken, files({DOC_FIELDS})" + try: + search_results = ( + service.files() + .list( + pageSize=page_size, + fields=fields, + q=q, + ) + .execute() + ) + except HttpError as http_error: + raise UpstreamProviderError(message=str(http_error)) from http_error + + return process_data_with_service(search_results, request_credentials(access_token)) diff --git a/gdrive/pyproject.toml b/gdrive/pyproject.toml new file mode 100644 index 000000000..6cbdf397b --- /dev/null +++ b/gdrive/pyproject.toml @@ -0,0 +1,28 @@ +[tool.poetry] +name = "gdrive" +version = "0.1.0" +description = "" +authors = ["Eugene Pavletsov"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = { version = "2.14.2", extras = ["swagger-ui"] } +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +google-api-python-client = "^2.100.0" +google-auth-httplib2 = "^0.1.1" +google-auth-oauthlib = "^1.1.0" +gunicorn = "^21.2.0" +aiohttp = "^3.9.0" +nltk = "^3.8.1" + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/github/.env-template b/github/.env-template new file mode 100644 index 000000000..5e8ac4a78 --- /dev/null +++ b/github/.env-template @@ -0,0 +1,4 @@ +GITHUB_TOKEN= +GITHUB_QUERY_TEMPLATE={query} in:file +GITHUB_RESULTS_PER_PAGE=5 +GITHUB_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/github/README.md b/github/README.md new file mode 100644 index 000000000..c5a715a2d --- /dev/null +++ b/github/README.md @@ -0,0 +1,66 @@ +# Github Quick Start Connector + +This package is a utility for connecting Cohere to GitHub. + +It uses GitHub's REST API to perform a code search and return matching files. + +## Limitations + +The Github connector supports the query syntax defined by `GITHUB_QUERY_TEMPLATE`. By default, it searches for code within a file and returns the matching results (up to 5, by default). You can, however, use the syntax allowed by Github's search, check https://docs.github.com/en/rest/search/search?apiVersion=2022-11-28#search-code for more details. + +## Configuration + +First, create a `.env` file based off the `.env-template`. + +To use this connector, you must have a GitHub account, and configure an access token. It is recommended to create a fine-grained personal access token so you can give explicit access to certain resources to this connector. See: [Github Authentication](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens) for more details. +Use this value for the `GITHUB_TOKEN` environment variable. + +You can optionally modify the other environment variables to customize the search behavior. + +The default `GITHUB_QUERY_TEMPLATE` performs a general search across GitHub for the matching keywords. You can +customize the value to restrict the search to certain repositories using the GitHub syntax. + +``` +GITHUB_QUERY_TEMPLATE="{query} in:file language:js repo:jquery/jquery" +``` + +The above query template would perform the search in Javascript files in the jquery repo. + +The `GITHUB_RESULTS_PER_PAGE` value defaults to 5 in this search connector, although the GitHub default is 30. The +maximum number of results per page supported by GitHub is 100. A separate API call is required for each result, +as this search connector retrieves the full content of each search result. Therefore, it is suggested to keep the number +of results relatively low, if possible. + +This search connector does not currently retrieve more than one result page, so the maximum number of results is +effectively 100. + +## Development + +Before running the Flask server, you must create a `.env` file with a GitHub token, or set it as a regular +environment variable. + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "LLM" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/github/poetry.lock b/github/poetry.lock new file mode 100644 index 000000000..90d8d8f9a --- /dev/null +++ b/github/poetry.lock @@ -0,0 +1,833 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.5" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.5-py3-none-any.whl", hash = "sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548"}, + {file = "click-8.1.5.tar.gz", hash = "sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "platformdirs" +version = "3.9.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.9.1-py3-none-any.whl", hash = "sha256:ad8291ae0ae5072f66c16945166cb11c63394c7a3ad1b1bc9828ca3162da8c2f"}, + {file = "platformdirs-3.9.1.tar.gz", hash = "sha256:1b42b450ad933e981d56e59f1b97495428c9bd60698baab9f3eb3d00d5822421"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.1" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.1.tar.gz", hash = "sha256:3de667cffa123ce698591de0ad7db034a5317457a596eb0b4944e5a9d9e8d1ac"}, + {file = "types_requests-2.31.0.1-py3-none-any.whl", hash = "sha256:afb06ef8f25ba83d59a1d424bd7a5a939082f94b94e90ab5e6116bd2559deaa3"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.13" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.13.tar.gz", hash = "sha256:3300538c9dc11dad32eae4827ac313f5d986b8b21494801f1bf97a1ac6c03ae5"}, + {file = "types_urllib3-1.26.25.13-py3-none-any.whl", hash = "sha256:5dbd1d2bef14efee43f5318b5d36d805a489f6600252bb53626d4bfafd95e27c"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "37be14571df08e0a3ea3c7a408d14db753a2b8ad92a6ef9454d949c6ae6a5191" diff --git a/github/provider/__init__.py b/github/provider/__init__.py new file mode 100644 index 000000000..5f648e84b --- /dev/null +++ b/github/provider/__init__.py @@ -0,0 +1,30 @@ +import connexion # type: ignore +import logging + +from dotenv import load_dotenv + + +load_dotenv() + + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + flask_app.config.from_prefixed_env("GITHUB") + return flask_app diff --git a/github/provider/app.py b/github/provider/app.py new file mode 100644 index 000000000..4859ac64a --- /dev/null +++ b/github/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + + return {} diff --git a/github/provider/provider.py b/github/provider/provider.py new file mode 100644 index 000000000..8eeb3afe0 --- /dev/null +++ b/github/provider/provider.py @@ -0,0 +1,91 @@ +import logging +from base64 import b64decode +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +GITHUB_SEARCH_CODE_URL = "https://api.github.com/search/code" +DEFAULT_RESULTS_PER_PAGE = 5 +DEFAULT_QUERY_TEMPLATE = "{query} in:file" + + +def serialize_result(result): + content = fetch_and_decode_content(result["url"]) + + if not content: + return None + + data = {"text": content} + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_resource = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if (title := result.get("path")) is not None: + data["title"] = title + + if (url := result.get("html_url")) is not None: + data["url"] = url + + return { + **stripped_resource, + **data, + } + + +def fetch_and_decode_content(url) -> str | None: + assert (token := app.config.get("TOKEN")), "GITHUB_TOKEN must be set" + + response = requests.get( + url, + headers={ + "Authorization": f"Bearer {token}", + "Accept": "application/vnd.github+json", + "X-GitHub-Api-Version": "2022-11-28", + }, + ) + + if not response.ok: + logger.error(f"Error fetching GitHub file: {response.json()}") + return None + + return b64decode(response.json()["content"]).decode() + + +def search(query) -> list[dict[str, Any]]: + assert (token := app.config.get("TOKEN")), "GITHUB_TOKEN must be set" + + response = requests.get( + GITHUB_SEARCH_CODE_URL, + headers={ + "Authorization": f"Bearer {token}", + "Accept": "application/vnd.github+json", + "X-GitHub-Api-Version": "2022-11-28", + }, + params={ + "q": app.config.get("QUERY_TEMPLATE", DEFAULT_QUERY_TEMPLATE).format( + query=query + ), + "per_page": app.config.get("RESULTS_PER_PAGE", DEFAULT_RESULTS_PER_PAGE), + }, + ) + + if response.status_code != 200: + message = response.json().get("message", f"Error: HTTP {response.status_code}") + raise UpstreamProviderError(message) + + results = [] + for item in response.json()["items"]: + result = serialize_result(item) + if result: + results.append(result) + + return results diff --git a/github/pyproject.toml b/github/pyproject.toml new file mode 100644 index 000000000..ad36ef5be --- /dev/null +++ b/github/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "github" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = {version = "2.2.5", extras = ["swagger-ui"]} +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/gitlab/.env-template b/gitlab/.env-template new file mode 100644 index 000000000..5416a7f9f --- /dev/null +++ b/gitlab/.env-template @@ -0,0 +1,5 @@ +GITLAB_TOKEN= +GITLAB_SCOPE=projects +GITLAB_RESULTS_PER_PAGE= +GITLAB_SEARCH_URL= +GITLAB_CONNECTOR_API_KEY= diff --git a/gitlab/README.md b/gitlab/README.md new file mode 100644 index 000000000..50e4a4892 --- /dev/null +++ b/gitlab/README.md @@ -0,0 +1,76 @@ +# GitLab Connector + +This package is a utility for connecting Cohere to GitLab. + +It uses the GitLab REST API to perform a code search and return matching files. + +## Configuration + +To use this connector, you must have a GitLab account, and configure an access token. + +The GitLab access token must be configured as an environment variable when the Flask server is run. This is required. +Additional environment variables may be set to customize the behaviour of this search connector. These +environment variables can optionally be put into a `.env` file. + +``` +GITLAB_TOKEN= +GITLAB_RESULTS_PER_PAGE=5 +GITLAB_SCOPE= +GITLAB_SEARCH_URL= +``` + +The `GITLAB_SCOPE` variable is used to control what to search. Possible values include: + +- `projects` +- `issues` +- `merge_requests` +- `milestones` +- `snippet_titles` +- `users` +- `blobs` +- `commits` +- `notes` +- `wiki_blobs` + +The availability of certain scopes is dependent on the GitLab plan you are subscribed to. Scopes +requiring ElasticSearch integration are not available on the free tier. + +By default, this search connector will search the SaaS version of GitLab. If you have a locally hosted, +self-managed version of GitLab, you can configure this search connector to use your self-managed GitLab +by changing the `GITLAB_SEARCH_URL` variable. + +Please consult the GitLab documentation +for more information about scopes and configuring access tokens. + +Finally, to protect this connector from abuse, the `GITLAB_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Before running the Flask server, you must create a `.env` file with a GitLab token, or set it as a regular +environment variable. + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/gitlab/poetry.lock b/gitlab/poetry.lock new file mode 100644 index 000000000..e3fd643d0 --- /dev/null +++ b/gitlab/poetry.lock @@ -0,0 +1,813 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.5" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.5-py3-none-any.whl", hash = "sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548"}, + {file = "click-8.1.5.tar.gz", hash = "sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "platformdirs" +version = "3.9.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.9.1-py3-none-any.whl", hash = "sha256:ad8291ae0ae5072f66c16945166cb11c63394c7a3ad1b1bc9828ca3162da8c2f"}, + {file = "platformdirs-3.9.1.tar.gz", hash = "sha256:1b42b450ad933e981d56e59f1b97495428c9bd60698baab9f3eb3d00d5822421"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.1" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.1.tar.gz", hash = "sha256:3de667cffa123ce698591de0ad7db034a5317457a596eb0b4944e5a9d9e8d1ac"}, + {file = "types_requests-2.31.0.1-py3-none-any.whl", hash = "sha256:afb06ef8f25ba83d59a1d424bd7a5a939082f94b94e90ab5e6116bd2559deaa3"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.13" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.13.tar.gz", hash = "sha256:3300538c9dc11dad32eae4827ac313f5d986b8b21494801f1bf97a1ac6c03ae5"}, + {file = "types_urllib3-1.26.25.13-py3-none-any.whl", hash = "sha256:5dbd1d2bef14efee43f5318b5d36d805a489f6600252bb53626d4bfafd95e27c"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/gitlab/provider/__init__.py b/gitlab/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/gitlab/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/gitlab/provider/app.py b/gitlab/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/gitlab/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/gitlab/provider/provider.py b/gitlab/provider/provider.py new file mode 100644 index 000000000..51ba78d7b --- /dev/null +++ b/gitlab/provider/provider.py @@ -0,0 +1,39 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +DEFAULT_SCOPE = "projects" +DEFAULT_SEARCH_URL = "https://gitlab.com/api/v4/search" +DEFAULT_RESULTS_PER_PAGE = 5 + + +def search(query) -> list[dict[str, Any]]: + url = app.config.get("SEARCH_URL", DEFAULT_SEARCH_URL) + assert (token := app.config["TOKEN"]), "GITLAB_TOKEN must be set" + + response = requests.get( + url, + headers={ + "PRIVATE-TOKEN": token, + }, + params={ + "search": query, + "scope": app.config.get("SCOPE", DEFAULT_SCOPE), + "per_page": app.config.get("RESULTS_PER_PAGE", DEFAULT_RESULTS_PER_PAGE), + }, + ) + + if response.status_code != 200: + message = ( + response.json().get("message") or f"Error: HTTP {response.status_code}" + ) + raise UpstreamProviderError(message) + + return response.json() diff --git a/gitlab/pyproject.toml b/gitlab/pyproject.toml new file mode 100644 index 000000000..01f219a6b --- /dev/null +++ b/gitlab/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "gitlab" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/gmail/.env-template b/gmail/.env-template new file mode 100644 index 000000000..b56a91c2c --- /dev/null +++ b/gmail/.env-template @@ -0,0 +1,3 @@ +GMAIL_USER_ID=test@example.com +GMAIL_SEARCH_LIMIT=5 +GMAIL_CONNECTOR_API_KEY= diff --git a/gmail/README.md b/gmail/README.md new file mode 100644 index 000000000..7bf5ff684 --- /dev/null +++ b/gmail/README.md @@ -0,0 +1,58 @@ +# Gmail Connector + +Connects Cohere to Google Gmail. It uses the Gmail messages API to search +for emails. + +## Configuration + +The following configuration variables should be set as environment variables, or put into a `.env` file +to control the behaviour of this connector: + +``` +GMAIL_USER_ID=scott@lightsonsoftware.com +GMAIL_MAX_RESULTS=10 +``` + +## Credentials + +To use this connector, you will need to turn on the Gmail API in a Google Cloud project. There are a couple of steps to follow, please refer to the following [guide.](https://developers.google.com/gmail/api/quickstart/python) + +You will need to: + +1. Enable the API +2. Configure Oauth consent: use the user with the same email as the `GMAIL_USER_ID` environment variable +3. Create credentials for your app, and download the credentials.json file, making sure that you've whitelisted your hosted server's address as the redirect uri for the credentials + +Once this is done, save the `credentials.json` file into this directory. + +This connector will also require a `token.json` file that is generated automatically once you authorize the app. After you deploy it, head to your hosted connector server's `/ui` page. For example, `https://myconnector.com/ui`, and trigger an initial `/search` request. This will bring up the Google OAuth page, where you can login to the same email as step 2 earlier. + +## Development + +This search connector has no test data and can only be used with an existing Gmail account. + +Copy the `.env-template` file to `.env` and edit the values accordingly. + +```bash +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry: + +```bash +poetry install +poetry run flask --app provider run --debug +``` + +Once the Flask server is running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/gmail/credentials.json-template b/gmail/credentials.json-template new file mode 100644 index 000000000..8db6bb8dd --- /dev/null +++ b/gmail/credentials.json-template @@ -0,0 +1,11 @@ +{ + "installed": { + "client_id": "myclientid", + "project_id": "myproject", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_secret": "mysecret", + "redirect_uris": ["http://localhost"] + } +} diff --git a/gmail/poetry.lock b/gmail/poetry.lock new file mode 100644 index 000000000..d1bab6b05 --- /dev/null +++ b/gmail/poetry.lock @@ -0,0 +1,1090 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachetools" +version = "5.3.1" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.1-py3-none-any.whl", hash = "sha256:95ef631eeaea14ba2e36f06437f36463aac3a096799e876ee55e5cdccb102590"}, + {file = "cachetools-5.3.1.tar.gz", hash = "sha256:dce83f2d9b4e1f732a8cd44af8e8fab2dbe46201467fc98b3ef8f269092bf62b"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "google-api-core" +version = "2.12.0" +description = "Google API client core library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-core-2.12.0.tar.gz", hash = "sha256:c22e01b1e3c4dcd90998494879612c38d0a3411d1f7b679eb89e2abe3ce1f553"}, + {file = "google_api_core-2.12.0-py3-none-any.whl", hash = "sha256:ec6054f7d64ad13b41e43d96f735acbd763b0f3b695dabaa2d579673f6a6e160"}, +] + +[package.dependencies] +google-auth = ">=2.14.1,<3.0.dev0" +googleapis-common-protos = ">=1.56.2,<2.0.dev0" +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.0 || >4.21.0,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" +requests = ">=2.18.0,<3.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.33.2,<2.0dev)", "grpcio (>=1.49.1,<2.0dev)", "grpcio-status (>=1.33.2,<2.0.dev0)", "grpcio-status (>=1.49.1,<2.0.dev0)"] +grpcgcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] +grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"] + +[[package]] +name = "google-api-python-client" +version = "2.92.0" +description = "Google API Client Library for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-api-python-client-2.92.0.tar.gz", hash = "sha256:f38a6e106a7417719715506d36f0a233ec253335e422bda311352866a86c4187"}, + {file = "google_api_python_client-2.92.0-py2.py3-none-any.whl", hash = "sha256:e0b74ed5fa9bdb07a66fb030d3f4cae550ed1c07e23600d86450d3c3c5efae51"}, +] + +[package.dependencies] +google-api-core = ">=1.31.5,<2.0.dev0 || >2.3.0,<3.0.0.dev0" +google-auth = ">=1.19.0,<3.0.0.dev0" +google-auth-httplib2 = ">=0.1.0" +httplib2 = ">=0.15.0,<1.dev0" +uritemplate = ">=3.0.1,<5" + +[[package]] +name = "google-auth" +version = "2.23.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "google-auth-2.23.0.tar.gz", hash = "sha256:753a26312e6f1eaeec20bc6f2644a10926697da93446e1f8e24d6d32d45a922a"}, + {file = "google_auth-2.23.0-py2.py3-none-any.whl", hash = "sha256:2cec41407bd1e207f5b802638e32bb837df968bb5c05f413d0fa526fac4cf7a7"}, +] + +[package.dependencies] +cachetools = ">=2.0.0,<6.0" +pyasn1-modules = ">=0.2.1" +rsa = ">=3.1.4,<5" +urllib3 = "<2.0" + +[package.extras] +aiohttp = ["aiohttp (>=3.6.2,<4.0.0.dev0)", "requests (>=2.20.0,<3.0.0.dev0)"] +enterprise-cert = ["cryptography (==36.0.2)", "pyopenssl (==22.0.0)"] +pyopenssl = ["cryptography (>=38.0.3)", "pyopenssl (>=20.0.0)"] +reauth = ["pyu2f (>=0.1.5)"] +requests = ["requests (>=2.20.0,<3.0.0.dev0)"] + +[[package]] +name = "google-auth-httplib2" +version = "0.1.0" +description = "Google Authentication Library: httplib2 transport" +optional = false +python-versions = "*" +files = [ + {file = "google-auth-httplib2-0.1.0.tar.gz", hash = "sha256:a07c39fd632becacd3f07718dfd6021bf396978f03ad3ce4321d060015cc30ac"}, + {file = "google_auth_httplib2-0.1.0-py2.py3-none-any.whl", hash = "sha256:31e49c36c6b5643b57e82617cb3e021e3e1d2df9da63af67252c02fa9c1f4a10"}, +] + +[package.dependencies] +google-auth = "*" +httplib2 = ">=0.15.0" +six = "*" + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +description = "Google Authentication Library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5"}, + {file = "google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb"}, +] + +[package.dependencies] +google-auth = ">=2.15.0" +requests-oauthlib = ">=0.7.0" + +[package.extras] +tool = ["click (>=6.0.0)"] + +[[package]] +name = "googleapis-common-protos" +version = "1.60.0" +description = "Common protobufs used in Google APIs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "googleapis-common-protos-1.60.0.tar.gz", hash = "sha256:e73ebb404098db405ba95d1e1ae0aa91c3e15a71da031a2eeb6b2e23e7bc3708"}, + {file = "googleapis_common_protos-1.60.0-py2.py3-none-any.whl", hash = "sha256:69f9bbcc6acde92cab2db95ce30a70bd2b81d20b12eff3f1aabaffcbe8a93918"}, +] + +[package.dependencies] +protobuf = ">=3.19.5,<3.20.0 || >3.20.0,<3.20.1 || >3.20.1,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4.21.4 || >4.21.4,<4.21.5 || >4.21.5,<5.0.0.dev0" + +[package.extras] +grpc = ["grpcio (>=1.44.0,<2.0.0.dev0)"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "httplib2" +version = "0.22.0" +description = "A comprehensive HTTP client library." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc"}, + {file = "httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81"}, +] + +[package.dependencies] +pyparsing = {version = ">=2.4.2,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.0.2 || >3.0.2,<3.0.3 || >3.0.3,<4", markers = "python_version > \"3.0\""} + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e"}, + {file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "protobuf" +version = "4.24.3" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.24.3-cp310-abi3-win32.whl", hash = "sha256:20651f11b6adc70c0f29efbe8f4a94a74caf61b6200472a9aea6e19898f9fcf4"}, + {file = "protobuf-4.24.3-cp310-abi3-win_amd64.whl", hash = "sha256:3d42e9e4796a811478c783ef63dc85b5a104b44aaaca85d4864d5b886e4b05e3"}, + {file = "protobuf-4.24.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:6e514e8af0045be2b56e56ae1bb14f43ce7ffa0f68b1c793670ccbe2c4fc7d2b"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:ba53c2f04798a326774f0e53b9c759eaef4f6a568ea7072ec6629851c8435959"}, + {file = "protobuf-4.24.3-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:f6ccbcf027761a2978c1406070c3788f6de4a4b2cc20800cc03d52df716ad675"}, + {file = "protobuf-4.24.3-cp37-cp37m-win32.whl", hash = "sha256:1b182c7181a2891e8f7f3a1b5242e4ec54d1f42582485a896e4de81aa17540c2"}, + {file = "protobuf-4.24.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b0271a701e6782880d65a308ba42bc43874dabd1a0a0f41f72d2dac3b57f8e76"}, + {file = "protobuf-4.24.3-cp38-cp38-win32.whl", hash = "sha256:e29d79c913f17a60cf17c626f1041e5288e9885c8579832580209de8b75f2a52"}, + {file = "protobuf-4.24.3-cp38-cp38-win_amd64.whl", hash = "sha256:067f750169bc644da2e1ef18c785e85071b7c296f14ac53e0900e605da588719"}, + {file = "protobuf-4.24.3-cp39-cp39-win32.whl", hash = "sha256:2da777d34b4f4f7613cdf85c70eb9a90b1fbef9d36ae4a0ccfe014b0b07906f1"}, + {file = "protobuf-4.24.3-cp39-cp39-win_amd64.whl", hash = "sha256:f631bb982c5478e0c1c70eab383af74a84be66945ebf5dd6b06fc90079668d0b"}, + {file = "protobuf-4.24.3-py3-none-any.whl", hash = "sha256:f6f8dc65625dadaad0c8545319c2e2f0424fede988368893ca3844261342c11a"}, + {file = "protobuf-4.24.3.tar.gz", hash = "sha256:12e9ad2ec079b833176d2921be2cb24281fa591f0b119b208b788adc48c2561d"}, +] + +[[package]] +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] + +[[package]] +name = "pyasn1-modules" +version = "0.3.0" +description = "A collection of ASN.1-based protocols modules" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1_modules-0.3.0-py2.py3-none-any.whl", hash = "sha256:d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d"}, + {file = "pyasn1_modules-0.3.0.tar.gz", hash = "sha256:5bd01446b736eb9d31512a30d46c1ac3395d676c6f3cafa4c03eb54b9925631c"}, +] + +[package.dependencies] +pyasn1 = ">=0.4.6,<0.6.0" + +[[package]] +name = "pyparsing" +version = "3.1.1" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, + {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.10.3" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.10.3-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:485747ee62da83366a44fbba963c5fe017860ad408ccd6cd99aa66ea80d32b2e"}, + {file = "rpds_py-0.10.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c55f9821f88e8bee4b7a72c82cfb5ecd22b6aad04033334f33c329b29bfa4da0"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3b52a67ac66a3a64a7e710ba629f62d1e26ca0504c29ee8cbd99b97df7079a8"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3aed39db2f0ace76faa94f465d4234aac72e2f32b009f15da6492a561b3bbebd"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:271c360fdc464fe6a75f13ea0c08ddf71a321f4c55fc20a3fe62ea3ef09df7d9"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ef5fddfb264e89c435be4adb3953cef5d2936fdeb4463b4161a6ba2f22e7b740"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a771417c9c06c56c9d53d11a5b084d1de75de82978e23c544270ab25e7c066ff"}, + {file = "rpds_py-0.10.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:52b5cbc0469328e58180021138207e6ec91d7ca2e037d3549cc9e34e2187330a"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6ac3fefb0d168c7c6cab24fdfc80ec62cd2b4dfd9e65b84bdceb1cb01d385c33"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8d54bbdf5d56e2c8cf81a1857250f3ea132de77af543d0ba5dce667183b61fec"}, + {file = "rpds_py-0.10.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cd2163f42868865597d89399a01aa33b7594ce8e2c4a28503127c81a2f17784e"}, + {file = "rpds_py-0.10.3-cp310-none-win32.whl", hash = "sha256:ea93163472db26ac6043e8f7f93a05d9b59e0505c760da2a3cd22c7dd7111391"}, + {file = "rpds_py-0.10.3-cp310-none-win_amd64.whl", hash = "sha256:7cd020b1fb41e3ab7716d4d2c3972d4588fdfbab9bfbbb64acc7078eccef8860"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:1d9b5ee46dcb498fa3e46d4dfabcb531e1f2e76b477e0d99ef114f17bbd38453"}, + {file = "rpds_py-0.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:563646d74a4b4456d0cf3b714ca522e725243c603e8254ad85c3b59b7c0c4bf0"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e626b864725680cd3904414d72e7b0bd81c0e5b2b53a5b30b4273034253bb41f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:485301ee56ce87a51ccb182a4b180d852c5cb2b3cb3a82f7d4714b4141119d8c"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:42f712b4668831c0cd85e0a5b5a308700fe068e37dcd24c0062904c4e372b093"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c9141af27a4e5819d74d67d227d5047a20fa3c7d4d9df43037a955b4c748ec5"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef750a20de1b65657a1425f77c525b0183eac63fe7b8f5ac0dd16f3668d3e64f"}, + {file = "rpds_py-0.10.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1a0ffc39f51aa5f5c22114a8f1906b3c17eba68c5babb86c5f77d8b1bba14d1"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f4c179a7aeae10ddf44c6bac87938134c1379c49c884529f090f9bf05566c836"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:176287bb998fd1e9846a9b666e240e58f8d3373e3bf87e7642f15af5405187b8"}, + {file = "rpds_py-0.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6446002739ca29249f0beaaf067fcbc2b5aab4bc7ee8fb941bd194947ce19aff"}, + {file = "rpds_py-0.10.3-cp311-none-win32.whl", hash = "sha256:c7aed97f2e676561416c927b063802c8a6285e9b55e1b83213dfd99a8f4f9e48"}, + {file = "rpds_py-0.10.3-cp311-none-win_amd64.whl", hash = "sha256:8bd01ff4032abaed03f2db702fa9a61078bee37add0bd884a6190b05e63b028c"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:4cf0855a842c5b5c391dd32ca273b09e86abf8367572073bd1edfc52bc44446b"}, + {file = "rpds_py-0.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:69b857a7d8bd4f5d6e0db4086da8c46309a26e8cefdfc778c0c5cc17d4b11e08"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:975382d9aa90dc59253d6a83a5ca72e07f4ada3ae3d6c0575ced513db322b8ec"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35fbd23c1c8732cde7a94abe7fb071ec173c2f58c0bd0d7e5b669fdfc80a2c7b"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:106af1653007cc569d5fbb5f08c6648a49fe4de74c2df814e234e282ebc06957"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ce5e7504db95b76fc89055c7f41e367eaadef5b1d059e27e1d6eabf2b55ca314"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aca759ada6b1967fcfd4336dcf460d02a8a23e6abe06e90ea7881e5c22c4de6"}, + {file = "rpds_py-0.10.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b5d4bdd697195f3876d134101c40c7d06d46c6ab25159ed5cbd44105c715278a"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a657250807b6efd19b28f5922520ae002a54cb43c2401e6f3d0230c352564d25"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:177c9dd834cdf4dc39c27436ade6fdf9fe81484758885f2d616d5d03c0a83bd2"}, + {file = "rpds_py-0.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e22491d25f97199fc3581ad8dd8ce198d8c8fdb8dae80dea3512e1ce6d5fa99f"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:2f3e1867dd574014253b4b8f01ba443b9c914e61d45f3674e452a915d6e929a3"}, + {file = "rpds_py-0.10.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c22211c165166de6683de8136229721f3d5c8606cc2c3d1562da9a3a5058049c"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40bc802a696887b14c002edd43c18082cb7b6f9ee8b838239b03b56574d97f71"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e271dd97c7bb8eefda5cca38cd0b0373a1fea50f71e8071376b46968582af9b"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:95cde244e7195b2c07ec9b73fa4c5026d4a27233451485caa1cd0c1b55f26dbd"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08a80cf4884920863623a9ee9a285ee04cef57ebedc1cc87b3e3e0f24c8acfe5"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:763ad59e105fca09705d9f9b29ecffb95ecdc3b0363be3bb56081b2c6de7977a"}, + {file = "rpds_py-0.10.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:187700668c018a7e76e89424b7c1042f317c8df9161f00c0c903c82b0a8cac5c"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5267cfda873ad62591b9332fd9472d2409f7cf02a34a9c9cb367e2c0255994bf"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:2ed83d53a8c5902ec48b90b2ac045e28e1698c0bea9441af9409fc844dc79496"}, + {file = "rpds_py-0.10.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:255f1a10ae39b52122cce26ce0781f7a616f502feecce9e616976f6a87992d6b"}, + {file = "rpds_py-0.10.3-cp38-none-win32.whl", hash = "sha256:a019a344312d0b1f429c00d49c3be62fa273d4a1094e1b224f403716b6d03be1"}, + {file = "rpds_py-0.10.3-cp38-none-win_amd64.whl", hash = "sha256:efb9ece97e696bb56e31166a9dd7919f8f0c6b31967b454718c6509f29ef6fee"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:570cc326e78ff23dec7f41487aa9c3dffd02e5ee9ab43a8f6ccc3df8f9327623"}, + {file = "rpds_py-0.10.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cff7351c251c7546407827b6a37bcef6416304fc54d12d44dbfecbb717064717"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:177914f81f66c86c012311f8c7f46887ec375cfcfd2a2f28233a3053ac93a569"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:448a66b8266de0b581246ca7cd6a73b8d98d15100fb7165974535fa3b577340e"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bbac1953c17252f9cc675bb19372444aadf0179b5df575ac4b56faaec9f6294"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9dd9d9d9e898b9d30683bdd2b6c1849449158647d1049a125879cb397ee9cd12"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8c71ea77536149e36c4c784f6d420ffd20bea041e3ba21ed021cb40ce58e2c9"}, + {file = "rpds_py-0.10.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:16a472300bc6c83fe4c2072cc22b3972f90d718d56f241adabc7ae509f53f154"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:b9255e7165083de7c1d605e818025e8860636348f34a79d84ec533546064f07e"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:53d7a3cd46cdc1689296348cb05ffd4f4280035770aee0c8ead3bbd4d6529acc"}, + {file = "rpds_py-0.10.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22da15b902f9f8e267020d1c8bcfc4831ca646fecb60254f7bc71763569f56b1"}, + {file = "rpds_py-0.10.3-cp39-none-win32.whl", hash = "sha256:850c272e0e0d1a5c5d73b1b7871b0a7c2446b304cec55ccdb3eaac0d792bb065"}, + {file = "rpds_py-0.10.3-cp39-none-win_amd64.whl", hash = "sha256:de61e424062173b4f70eec07e12469edde7e17fa180019a2a0d75c13a5c5dc57"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:af247fd4f12cca4129c1b82090244ea5a9d5bb089e9a82feb5a2f7c6a9fe181d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3ad59efe24a4d54c2742929001f2d02803aafc15d6d781c21379e3f7f66ec842"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642ed0a209ced4be3a46f8cb094f2d76f1f479e2a1ceca6de6346a096cd3409d"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:37d0c59548ae56fae01c14998918d04ee0d5d3277363c10208eef8c4e2b68ed6"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aad6ed9e70ddfb34d849b761fb243be58c735be6a9265b9060d6ddb77751e3e8"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f94fdd756ba1f79f988855d948ae0bad9ddf44df296770d9a58c774cfbcca72"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77076bdc8776a2b029e1e6ffbe6d7056e35f56f5e80d9dc0bad26ad4a024a762"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87d9b206b1bd7a0523375dc2020a6ce88bca5330682ae2fe25e86fd5d45cea9c"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8efaeb08ede95066da3a3e3c420fcc0a21693fcd0c4396d0585b019613d28515"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a4d9bfda3f84fc563868fe25ca160c8ff0e69bc4443c5647f960d59400ce6557"}, + {file = "rpds_py-0.10.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d27aa6bbc1f33be920bb7adbb95581452cdf23005d5611b29a12bb6a3468cc95"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ed8313809571a5463fd7db43aaca68ecb43ca7a58f5b23b6e6c6c5d02bdc7882"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:e10e6a1ed2b8661201e79dff5531f8ad4cdd83548a0f81c95cf79b3184b20c33"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:015de2ce2af1586ff5dc873e804434185199a15f7d96920ce67e50604592cae9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae87137951bb3dc08c7d8bfb8988d8c119f3230731b08a71146e84aaa919a7a9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bb4f48bd0dd18eebe826395e6a48b7331291078a879295bae4e5d053be50d4c"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09362f86ec201288d5687d1dc476b07bf39c08478cde837cb710b302864e7ec9"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821392559d37759caa67d622d0d2994c7a3f2fb29274948ac799d496d92bca73"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7170cbde4070dc3c77dec82abf86f3b210633d4f89550fa0ad2d4b549a05572a"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:5de11c041486681ce854c814844f4ce3282b6ea1656faae19208ebe09d31c5b8"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:4ed172d0c79f156c1b954e99c03bc2e3033c17efce8dd1a7c781bc4d5793dfac"}, + {file = "rpds_py-0.10.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:11fdd1192240dda8d6c5d18a06146e9045cb7e3ba7c06de6973000ff035df7c6"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f602881d80ee4228a2355c68da6b296a296cd22bbb91e5418d54577bbf17fa7c"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:691d50c99a937709ac4c4cd570d959a006bd6a6d970a484c84cc99543d4a5bbb"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24cd91a03543a0f8d09cb18d1cb27df80a84b5553d2bd94cba5979ef6af5c6e7"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fc2200e79d75b5238c8d69f6a30f8284290c777039d331e7340b6c17cad24a5a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea65b59882d5fa8c74a23f8960db579e5e341534934f43f3b18ec1839b893e41"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:829e91f3a8574888b73e7a3feb3b1af698e717513597e23136ff4eba0bc8387a"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eab75a8569a095f2ad470b342f2751d9902f7944704f0571c8af46bede438475"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:061c3ff1f51ecec256e916cf71cc01f9975af8fb3af9b94d3c0cc8702cfea637"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:39d05e65f23a0fe897b6ac395f2a8d48c56ac0f583f5d663e0afec1da89b95da"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eca20917a06d2fca7628ef3c8b94a8c358f6b43f1a621c9815243462dcccf97"}, + {file = "rpds_py-0.10.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e8d0f0eca087630d58b8c662085529781fd5dc80f0a54eda42d5c9029f812599"}, + {file = "rpds_py-0.10.3.tar.gz", hash = "sha256:fcc1ebb7561a3e24a6588f7c6ded15d80aec22c66a070c757559b57b17ffd1cb"}, +] + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-colorama" +version = "0.4.15.12" +description = "Typing stubs for colorama" +optional = false +python-versions = "*" +files = [ + {file = "types-colorama-0.4.15.12.tar.gz", hash = "sha256:fbdfc5d9d24d85c33bd054fbe33adc6cec44eedb19cfbbabfbbb57dc257ae4b8"}, + {file = "types_colorama-0.4.15.12-py3-none-any.whl", hash = "sha256:23c9d4a00961227f7ef018d5a1c190c4bbc282119c3ee76a17677a793f13bb82"}, +] + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "uritemplate" +version = "4.1.1" +description = "Implementation of RFC 6570 URI Templates" +optional = false +python-versions = ">=3.6" +files = [ + {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, + {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "93a682429eaabe2d42ae9b5bc496ca28b230cb8f1e3bef84b86a9c74fd095d50" diff --git a/gmail/provider/__init__.py b/gmail/provider/__init__.py new file mode 100644 index 000000000..8ba6b4f04 --- /dev/null +++ b/gmail/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/gmail/provider/app.py b/gmail/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/gmail/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/gmail/provider/client.py b/gmail/provider/client.py new file mode 100644 index 000000000..6f85b1ea7 --- /dev/null +++ b/gmail/provider/client.py @@ -0,0 +1,120 @@ +import logging +import os + +from concurrent.futures import ThreadPoolExecutor, as_completed +from functools import lru_cache +from flask import current_app as app +from google.auth.transport.requests import Request +from google.oauth2.credentials import Credentials +from google_auth_oauthlib.flow import InstalledAppFlow +from googleapiclient.discovery import build +from googleapiclient.errors import HttpError + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +CACHE_SIZE = 256 + +client = None + + +class GoogleMailClient: + SCOPES = [ + "https://www.googleapis.com/auth/gmail.readonly", + ] + + def __init__(self, user_id, search_limit): + self.user_id = user_id + self.search_limit = search_limit + + credentials = None + + # Handle Authentication + if os.path.exists("token.json"): + logger.debug("Found token.json file") + credentials = Credentials.from_authorized_user_file( + "token.json", self.SCOPES + ) + + # If there are no (valid) credentials available, let the user log in. + if not credentials or credentials.expired or not credentials.valid: + logger.debug("No valid credentials found") + + if credentials and credentials.expired and credentials.refresh_token: + credentials.refresh(Request()) + else: + flow = InstalledAppFlow.from_client_secrets_file( + "credentials.json", self.SCOPES + ) + credentials = flow.run_local_server(port=0) + + # Save the credentials for the next run + with open("token.json", "w") as token: + token.write(credentials.to_json()) + + self.service = build("gmail", "v1", credentials=credentials) + + def _request(self, request): + try: + return request.execute() + except HttpError as http_error: + raise UpstreamProviderError(message=str(http_error)) from http_error + + @lru_cache(maxsize=CACHE_SIZE) + def search_mail(self, query): + request = ( + self.service.users() + .messages() + .list( + userId=self.user_id, + maxResults=self.search_limit, + q=query, + ) + ) + + search_results = self._request(request) + + return search_results + + @lru_cache(maxsize=CACHE_SIZE) + def get_message(self, message_id): + request = ( + self.service.users() + .messages() + .get(format="full", userId=self.user_id, id=message_id) + ) + + message = self._request(request) + + return message + + def batch_get_messages(self, message_ids): + # Use ThreadPoolExecutor for I/O bound tasks + with ThreadPoolExecutor() as executor: + future_to_message_id = { + executor.submit(self.get_message, id): id for id in message_ids + } + results = [] + + for future in as_completed(future_to_message_id): + id = future_to_message_id[future] + + try: + data = future.result() + results.append(data) + except Exception as e: + logger.info(f"Error fetching message with id {id}: {e}") + + return results + + +def get_client(): + global client + + if client is None: + assert (user_id := app.config.get("USER_ID")), "GMAIL_USER_ID must be set" + search_limit = app.config.get("SEARCH_LIMIT", 5) + client = GoogleMailClient(user_id, search_limit) + + return client diff --git a/gmail/provider/provider.py b/gmail/provider/provider.py new file mode 100644 index 000000000..254a18127 --- /dev/null +++ b/gmail/provider/provider.py @@ -0,0 +1,65 @@ +import logging +import base64 +from typing import Any + +from .client import get_client + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + gmail_client = get_client() + + search_results = gmail_client.search_mail(query) + + # Prepare message IDs and perform a batch GET using multi-threading + search_result_messages = search_results.get("messages", []) + message_ids = [message["id"] for message in search_result_messages] + messages = gmail_client.batch_get_messages(message_ids) + + results = [] + for message in messages: + results.append(serialize_result(message)) + + return results + + +def decode_base64_raw(raw): + return base64.urlsafe_b64decode(raw).decode("utf-8") + + +def serialize_result(message): + data = {} + payload = message["payload"] + + # Find subject title + if (headers := payload.get("headers")) is not None: + # Get miscellaneous header values in K-V format + headers_dict = {header["name"]: header["value"] for header in headers} + stripped_headers = { + key: str(value) + for key, value in headers_dict.items() + if isinstance(value, (str, int, bool)) + } + + data.update(stripped_headers) + + if "Subject" in data: + data["title"] = data.pop("Subject") + + # Build text + if (part := payload.get("parts")) is not None: + if (body := part[0].get("body", {}).get("data")) is not None: + text = decode_base64_raw(body) + data["text"] = text.replace("\r\n", "") + + # Remove metadata fields + METADATA_PREFIXES = ["ARC", "DKIM", "X"] + data = { + key: value + for key, value in data.items() + if key.split("-")[0] not in METADATA_PREFIXES + } + + return data diff --git a/gmail/pyproject.toml b/gmail/pyproject.toml new file mode 100644 index 000000000..2b05bf83c --- /dev/null +++ b/gmail/pyproject.toml @@ -0,0 +1,32 @@ +[tool.poetry] +name = "gmail" +version = "0.1.0" +description = "Connects Cohere to GMail" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +flask = "2.2.5" +requests = "^2.31.0" +google-api-python-client = "2.92.0" +google-auth-httplib2 = "0.1.0" +google-auth-oauthlib = "1.0.0" +gunicorn = "^21.2.0" + + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-colorama = "^0.4.15.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/guru/.env-template b/guru/.env-template new file mode 100644 index 000000000..ea52ecc55 --- /dev/null +++ b/guru/.env-template @@ -0,0 +1,3 @@ +GURU_USER_EMAIL= +GURU_API_TOKEN= +GURU_CONNECTOR_API_KEY= diff --git a/guru/README.md b/guru/README.md new file mode 100644 index 000000000..4d3340314 --- /dev/null +++ b/guru/README.md @@ -0,0 +1,43 @@ +# Guru Quick Start Connector + +Connects Cohere with Guru. + +## Limitations + +The Guru connector currently features full-text search of Cards by title and body. + +## Configuration + +This search connector requires that the environment variables `GURU_USER_EMAIL` and `GURU_API_TOKEN` be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +Finally, to protect this connector from abuse, the `GURU_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/guru/poetry.lock b/guru/poetry.lock new file mode 100644 index 000000000..916bf5192 --- /dev/null +++ b/guru/poetry.lock @@ -0,0 +1,770 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b55d50738c4db7b91f9337422a7cabb20f8e71e9cc9bd9798d5216fcbf621d60" diff --git a/guru/provider/__init__.py b/guru/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/guru/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/guru/provider/app.py b/guru/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/guru/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/guru/provider/provider.py b/guru/provider/provider.py new file mode 100644 index 000000000..8821f8ae9 --- /dev/null +++ b/guru/provider/provider.py @@ -0,0 +1,38 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def extract_card_data(card_json): + return { + "text": card_json["content"], + "highlightedBodyContent": card_json["highlightedBodyContent"], + "highlightedTitleContent": card_json["highlightedTitleContent"], + "permalink": "https://app.getguru.com/card/" + card_json["slug"], + "author": " ".join( + [ + card_json["lastModifiedBy"].get("firstName", ""), + card_json["lastModifiedBy"].get("lastName", ""), + ] + ), + } + + +def search(query: str) -> list[dict[str, Any]]: + url = "https://api.getguru.com/api/v1/search/query" + headers = {"accept": "application/json"} + params = {"searchTerms": query} + auth = (app.config["USER_EMAIL"], app.config["API_TOKEN"]) + + response = requests.get(url, headers=headers, auth=auth, params=params) + + if response.status_code != 200: + raise UpstreamProviderError(f"Failed to query Guru: {response.text}") + + return [extract_card_data(card) for card in response.json()] diff --git a/guru/pyproject.toml b/guru/pyproject.toml new file mode 100644 index 000000000..e9861eee9 --- /dev/null +++ b/guru/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "guru-connector" +version = "0.1.0" +description = "Connects Cohere with Guru." +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/hackernews/.env-template b/hackernews/.env-template new file mode 100644 index 000000000..a9059b318 --- /dev/null +++ b/hackernews/.env-template @@ -0,0 +1,2 @@ +HACKERNEWS_SEARCH_LIMIT= +HACKERNEWS_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/hackernews/README.md b/hackernews/README.md new file mode 100644 index 000000000..e2864ef4c --- /dev/null +++ b/hackernews/README.md @@ -0,0 +1,37 @@ +# HackerNews Connector + +Connects Cohere to HackerNews, the social news website focusing on computer science and entrepreneurship. + +## Configuration + +Add a `HACKERNEWS_CONNECTOR_API_KEY` to secure your connector in production environments, otherwise no configuration needed. + +You can optionally modify the `HACKERNEWS_SEARCH_LIMIT` variable to modify the maximum number of results returned per search query. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/hackernews/poetry.lock b/hackernews/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/hackernews/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/hackernews/provider/__init__.py b/hackernews/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/hackernews/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/hackernews/provider/app.py b/hackernews/provider/app.py new file mode 100644 index 000000000..9e6dec59e --- /dev/null +++ b/hackernews/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/hackernews/provider/client.py b/hackernews/provider/client.py new file mode 100644 index 000000000..1abd386d8 --- /dev/null +++ b/hackernews/provider/client.py @@ -0,0 +1,52 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class HackerNewsClient: + BASE_URL = "https://hn.algolia.com/api/v1" + + def __init__(self, search_limit): + self.search_limit = search_limit + + def search(self, query): + url = f"{self.BASE_URL}/search" + params = { + "query": query, + "hitsPerPage": self.search_limit, + } + response = requests.get( + url, + params=params, + ) + + if response.status_code != 200: + raise UpstreamProviderError( + f"Error searching HackerNews with query: `{query}`." + ) + + return response.json()["hits"] + + def get_item(self, item_id): + url = f"{self.BASE_URL}/items/{item_id}" + response = requests.get( + url, + ) + + if response.status_code != 200: + return {} + + return response.json() + + +def get_client(): + global client + search_limit = app.config.get("SEARCH_LIMIT", 5) + if client is not None: + return client + + client = HackerNewsClient(search_limit) + return client diff --git a/hackernews/provider/provider.py b/hackernews/provider/provider.py new file mode 100644 index 000000000..76a8264be --- /dev/null +++ b/hackernews/provider/provider.py @@ -0,0 +1,43 @@ +import logging +from typing import Any + + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + hn_client = get_client() + + search_results = hn_client.search(query) + + results = [] + for page in search_results: + results.append(decorate_and_serialize_search_result(page)) + + return results + + +def decorate_and_serialize_search_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_result = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + # Fetch content, fails gracefully if none found + hn_client = get_client() + content = hn_client.get_item(stripped_result.get("objectID")) + + if content: + if content.get("text") is not None: + stripped_result["text"] = content["text"] + else: + text_list = [child.get("text") for child in content.get("children")] + + if len(text_list) > 0: + stripped_result["text"] = "".join(text_list) + + return stripped_result diff --git a/hackernews/pyproject.toml b/hackernews/pyproject.toml new file mode 100644 index 000000000..9cbd39ff0 --- /dev/null +++ b/hackernews/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "hackernews" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" +flask = "2.2.5" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/helpscout/.env-template b/helpscout/.env-template new file mode 100644 index 000000000..3e1893dec --- /dev/null +++ b/helpscout/.env-template @@ -0,0 +1,8 @@ +# HelpScout Authorization +HELPSCOUT_APP_ID= +HELPSCOUT_APP_SECRET= +# HelpScout search fields +HELPSCOUT_SEARCH_FIELDS=subject,body,tag +HELPSCOUT_CONNECTOR_API_KEY= + + diff --git a/helpscout/README.md b/helpscout/README.md new file mode 100644 index 000000000..572f68706 --- /dev/null +++ b/helpscout/README.md @@ -0,0 +1,48 @@ +# HelpScout Connector + +Connects Cohere to a HelpScout. + +## Configuration + +To use this connector you will need to create an application in your HelpScout account. +To start, head over to your HelpScout account, and from the top-right profile icon > My Apps > Create My APP create new +one. +This one will be used for the `HELPSCOUT_APP_ID` and `HELPSCOUT_APP_SECRET` environment variable. +Also, please note - the API returns only first 25 results. +`HELPSCOUT_CONNECTOR_API_KEY` is the API key for your HelpScout connector. + +### Optional Configuration + +To customize the search fields, you can set the following environment variables: HELPSCOUT_SEARCH_FIELDS +The query parameter will be splitted by spaces and each word will be searched in the fields specified by OR condition. +By default, the search fields are: subject and body. Example: HELPSCOUT_SEARCH_FIELDS=subject,body +All available search fields can be found +here: [Query fields](https://developer.helpscout.com/mailbox-api/endpoints/conversations/list/#query) + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/helpscout/poetry.lock b/helpscout/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/helpscout/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/helpscout/provider/__init__.py b/helpscout/provider/__init__.py new file mode 100644 index 000000000..7d77ca6dc --- /dev/null +++ b/helpscout/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/helpscout/provider/app.py b/helpscout/provider/app.py new file mode 100644 index 000000000..a06b6c985 --- /dev/null +++ b/helpscout/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"HelpScout search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"HelpScout config error: {error}") + abort(502, f"HelpScout config error: {error}") + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/helpscout/provider/client.py b/helpscout/provider/client.py new file mode 100644 index 000000000..5f1de57a6 --- /dev/null +++ b/helpscout/provider/client.py @@ -0,0 +1,82 @@ +from typing import Any + +import requests +from flask import current_app as app + +from .provider import UpstreamProviderError + +client = None + + +class HelpScoutClient: + """ + A client for the HelpScout API. + """ + + BASE_PATH = "https://api.helpscout.net" + API_VERSION = "v2" + OAUTH_TOKEN_END_POINT = "oauth2/token" + CONVERSATION_END_POINT = "conversations" + + def __init__(self, app_id: str, app_secret: str, search_fields: str) -> None: + self.app_id = app_id + self.app_secret = app_secret + self.search_fields = search_fields + + def _get_access_token(self) -> str: + url = f"{self.BASE_PATH}/{self.API_VERSION}/{self.OAUTH_TOKEN_END_POINT}" + response = requests.post( + url, + data={ + "client_id": self.app_id, + "client_secret": self.app_secret, + "grant_type": "client_credentials", + }, + ) + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + return response.json()["access_token"] + + def _prepare_query(self, query) -> str: + result_query = "" + if self.search_fields and query: + query_params = [] + for field in self.search_fields.split(","): + for keyword in query.split(): + query_params.append(f'{field}:"{keyword}"') + if query_params: + result_query = " OR ".join(query_params) + result_query = f"({result_query})" + return result_query + + def get_conversations(self, query) -> list[dict[str, Any]]: + query = self._prepare_query(query) + url = f"{self.BASE_PATH}/{self.API_VERSION}/{self.CONVERSATION_END_POINT}" + response = requests.get( + url, + headers={ + "Authorization": f"Bearer {self._get_access_token()}", + }, + params={ + "query": query, + }, + ) + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + return response.json() + + +def get_client(): + global client + assert (app_id := app.config.get("APP_ID")), "HELPSCOUT_APP_ID must be set" + assert ( + app_secret := app.config.get("APP_SECRET") + ), "HELPSCOUT_APP_SECRET must be set" + search_fields = app.config.get("SEARCH_FIELDS", "subject,body") + if client is not None: + return client + + client = HelpScoutClient(app_id, app_secret, search_fields) + return client diff --git a/helpscout/provider/provider.py b/helpscout/provider/provider.py new file mode 100644 index 000000000..272276fe6 --- /dev/null +++ b/helpscout/provider/provider.py @@ -0,0 +1,24 @@ +import logging +from typing import Any + +from . import UpstreamProviderError +from .client import get_client + +logger = logging.getLogger(__name__) + + +def process_response_data(data) -> list[dict[str, Any]]: + results = [] + if "_embedded" in data and "conversations" in data["_embedded"]: + for conversation in data["_embedded"]["conversations"]: + results.append(conversation) + else: + logger.error(f"HelpScout search error: {data}") + raise UpstreamProviderError(f"HelpScout search error: {data}") + return results + + +def search(query) -> list[dict[str, Any]]: + scout_client = get_client() + data = scout_client.get_conversations(query) + return process_response_data(data) diff --git a/helpscout/pyproject.toml b/helpscout/pyproject.toml new file mode 100644 index 000000000..c1bc90c11 --- /dev/null +++ b/helpscout/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "helpscout" +version = "0.1.0" +description = "" +authors = ["Eugene Pavletsov"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/hubspot/.env-template b/hubspot/.env-template new file mode 100644 index 000000000..6984f52ad --- /dev/null +++ b/hubspot/.env-template @@ -0,0 +1,4 @@ +HUBSPOT_ACCESS_TOKEN= +HUBSPOT_HUB_ID= +HUBSPOT_CONNECTOR_API_KEY= +HUBSPOT_SEARCH_LIMIT= diff --git a/hubspot/README.md b/hubspot/README.md new file mode 100644 index 000000000..72d14c848 --- /dev/null +++ b/hubspot/README.md @@ -0,0 +1,70 @@ +# HubSpot Quick Start Connector + +This package is a utility for connecting Cohere to HubSpot CRM. + +## Limitations + +The HubSpot connector features full-text search of companies, contacts, notes, and tasks in your organization. + +## Configuration + +This search connector requires the following environment variables: + +``` +HUBSPOT_ACCESS_TOKEN + +This variable should contain the access token for the HubSpot CRM. +``` + +To generate an access token, follow the instructions [here](https://developers.hubspot.com/docs/api/private-apps) + +``` +HUBSPOT_HUB_ID + +This variable should contain the Hub ID for the HubSpot CRM. +Hub ID can be found in the URL of the HubSpot CRM. +``` + +``` +HUBSPOT_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional configuration + +``` + +HUBSPOT_SEARCH_LIMIT + +This variable may contain the maximum number of results to return. By default, it is set to 20. +``` + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/hubspot/poetry.lock b/hubspot/poetry.lock new file mode 100644 index 000000000..9ea243c9e --- /dev/null +++ b/hubspot/poetry.lock @@ -0,0 +1,703 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "hubspot-api-client" +version = "8.1.0" +description = "HubSpot API client" +optional = false +python-versions = ">=3.7" +files = [ + {file = "hubspot-api-client-8.1.0.tar.gz", hash = "sha256:e8c25c2a12ab3801a6ab051ad7b25766a2e743928ed6ce9a309672c53b973044"}, + {file = "hubspot_api_client-8.1.0-py3-none-any.whl", hash = "sha256:2b255b6330770b263995baa07a831940f8bd6a692e8462a3a83771f65e718736"}, +] + +[package.dependencies] +certifi = "*" +python-dateutil = "*" +six = ">=1.10" +urllib3 = ">=1.15" + +[package.extras] +dev = ["black", "pytest"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "2359579e1de0db50c1ef5204ba0a8713006cf4e2161894eb7bab56166121433f" diff --git a/hubspot/provider/__init__.py b/hubspot/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/hubspot/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/hubspot/provider/app.py b/hubspot/provider/app.py new file mode 100644 index 000000000..e5836197a --- /dev/null +++ b/hubspot/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Hubspot config error: {error}") + abort(502, f"Hubspot config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/hubspot/provider/provider.py b/hubspot/provider/provider.py new file mode 100644 index 000000000..f8ae7ac0b --- /dev/null +++ b/hubspot/provider/provider.py @@ -0,0 +1,116 @@ +import logging + +import hubspot +from flask import current_app as app +from hubspot.crm.contacts import PublicObjectSearchRequest + +logger = logging.getLogger(__name__) +client = None + + +def search_contacts(query): + global client + search_request = PublicObjectSearchRequest( + query=query, limit=app.config.get("SEARCH_LIMIT", 20) + ) + response = client.crm.contacts.search_api.do_search( + public_object_search_request=search_request + ) + results = [] + for result in response.results: + contact = { + "type": "contact", + "id": result.id, + "title": result.properties.get("firstname", "") + + " " + + result.properties.get("lastname", ""), + "first_name": result.properties.get("firstname"), + "last_name": result.properties.get("lastname"), + "email": result.properties.get("email"), + "url": f"https://app.hubspot.com/contacts/{app.config['HUB_ID']}/contact/{result.id}", + } + results.append(contact) + return results + + +def search_companies(query): + global client + search_request = PublicObjectSearchRequest( + query=query, limit=app.config.get("SEARCH_LIMIT", 20) + ) + response = client.crm.companies.search_api.do_search( + public_object_search_request=search_request + ) + results = [] + for result in response.results: + company = { + "type": "company", + "id": result.id, + "title": result.properties.get("name"), + "domain": result.properties.get("domain"), + "url": f"https://app.hubspot.com/contacts/{app.config['HUB_ID']}/company/{result.id}", + } + results.append(company) + return results + + +def search_notes(query): + global client + search_request = PublicObjectSearchRequest( + query=query, + properties=["hs_note_body", "associations.contact"], + limit=app.config.get("SEARCH_LIMIT", 20), + ) + response = client.crm.objects.notes.search_api.do_search( + public_object_search_request=search_request + ) + results = [] + for result in response.results: + note = { + "type": "note", + "id": result.id, + "text": result.properties.get("hs_note_body"), + } + results.append(note) + return results + + +def search_tasks(query): + global client + search_request = PublicObjectSearchRequest( + query=query, + properties=["hs_task_subject", "hs_task_body", "hs_task_status"], + limit=app.config.get("SEARCH_LIMIT", 20), + ) + response = client.crm.objects.tasks.search_api.do_search( + public_object_search_request=search_request + ) + results = [] + for result in response.results: + note = { + "type": "task", + "id": result.id, + "title": result.properties.get("hs_task_subject"), + "text": result.properties.get("hs_task_body"), + "status": result.properties.get("hs_task_status"), + } + results.append(note) + return results + + +def search(query): + global client + + if not client: + assert ( + access_token := app.config.get("ACCESS_TOKEN") + ), "HUBSPOT_ACCESS_TOKEN env var must be set" + assert app.config.get("HUB_ID"), "HUBSPOT_HUB_ID env var must be set" + client = hubspot.Client.create(access_token=access_token) + + companies = search_companies(query) + contacts = search_contacts(query) + notes = search_notes(query) + tasks = search_tasks(query) + + return [*contacts, *notes, *tasks, *companies] diff --git a/hubspot/pyproject.toml b/hubspot/pyproject.toml new file mode 100644 index 000000000..22d2c5835 --- /dev/null +++ b/hubspot/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "hubspot-connector" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +hubspot-api-client = "^8.1.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/intercom/.env-template b/intercom/.env-template new file mode 100644 index 000000000..a6d4c6943 --- /dev/null +++ b/intercom/.env-template @@ -0,0 +1,2 @@ +INTERCOM_ACCESS_TOKEN= +INTERCOM_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/intercom/README.md b/intercom/README.md new file mode 100644 index 000000000..eea8ad95a --- /dev/null +++ b/intercom/README.md @@ -0,0 +1,40 @@ +# Intercom Connector + +Connects Cohere to Intercom, the customer support portal. + +Currently, this connector only searches within Conversations. + +## Configuration + +To use this connector, follow these steps: + +1. Create a [new Intercom developer app here.](https://app.intercom.com/a/developer-signup) +2. Retrieve your app's Authentication Access token. Use this value for the `INTERCOM_ACCESS_TOKEN` environment variable. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/intercom/poetry.lock b/intercom/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/intercom/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/intercom/provider/__init__.py b/intercom/provider/__init__.py new file mode 100644 index 000000000..8ba6b4f04 --- /dev/null +++ b/intercom/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/intercom/provider/app.py b/intercom/provider/app.py new file mode 100644 index 000000000..4859ac64a --- /dev/null +++ b/intercom/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + + return {} diff --git a/intercom/provider/provider.py b/intercom/provider/provider.py new file mode 100644 index 000000000..a5293422b --- /dev/null +++ b/intercom/provider/provider.py @@ -0,0 +1,78 @@ +import logging +import re +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.intercom.io" + + +def strip_html_tags(html_text): + clean = re.compile("<.*?>") + plain_text = re.sub(clean, "", html_text) + return plain_text + + +def serialize_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + data = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if (raw_body := result.get("source", {}).get("body")) is not None: + data["text"] = strip_html_tags(raw_body) + + return data + + +def search(query) -> list[dict[str, Any]]: + url = BASE_PATH + "/conversations/search" + assert ( + token := app.config.get("ACCESS_TOKEN") + ), "INTERCOM_ACCESS_TOKEN must be set" + + headers = { + "Authorization": f"Bearer {token}", + } + data = { + "query": { + "operator": "OR", + "value": [ + { + "field": "source.body", + "operator": "~", + "value": query, + }, + { + "field": "source.subject", + "operator": "~", + "value": query, + }, + ], + } + } + + response = requests.post( + url, + headers=headers, + json=data, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + search_results = response.json()["conversations"] + results = [] + for result in search_results: + results.append(serialize_result(result)) + + return results diff --git a/intercom/pyproject.toml b/intercom/pyproject.toml new file mode 100644 index 000000000..990e02515 --- /dev/null +++ b/intercom/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "intercom" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/jenkins/.env-template b/jenkins/.env-template new file mode 100644 index 000000000..14254e55e --- /dev/null +++ b/jenkins/.env-template @@ -0,0 +1,6 @@ +JENKINS_SERVER_URL=http://localhost:8080/ +JENKINS_USER_NAME=ep +JENKINS_API_KEY= +JENKINS_CONNECTOR_API_KEY=abcdefg1234567890 +JENKINS_FOLDER_DEPTH= +JENKINS_FOLDER_DEPTH_PER_REQUEST= diff --git a/jenkins/README.md b/jenkins/README.md new file mode 100644 index 000000000..ee58df7af --- /dev/null +++ b/jenkins/README.md @@ -0,0 +1,90 @@ +# Jenkins Connector + +This project connects Cohere with Jenkins. + +## Configuration + +The search connector requires the following environment variables: + +``` +JENKINS_SERVER_URL + +This variable should contain the URL to the Jenkins server. +``` + +``` +JENKINS_USER_NAME + +This variable should contain the username for the Jenkins server. +``` + +``` +JENKINS_API_KEY + +This variable should contain the API key for the Jenkins server. +``` + +``` +JENKINS_CONNECTOR_API_KEY + +This variable should contain the API key for the Jenkins connector. +``` + +### Optional configuration + +``` +JENKINS_FOLDER_DEPTH + +Number of levels to search. By default 0, which will limit search to toplevel. +``` + +``` +JENKINS_FOLDER_DEPTH_PER_REQUEST + +Number of levels to fetch at once. By default 10, which is usually enough to fetch all jobs using a single request and still easily fits into an HTTP request. +``` + +## Development + +To set up Jenkins locally use next docker command from dev folder: + +```bash +docker network create jenkins +docker build -t myjenkins-blueocean:2.414.2-1 . +docker run --name jenkins-blueocean --restart=on-failure --detach \ + --network jenkins --env DOCKER_HOST=tcp://docker:2376 \ + --env DOCKER_CERT_PATH=/certs/client --env DOCKER_TLS_VERIFY=1 \ + --publish 8080:8080 --publish 50000:50000 \ + --volume /jenkins-data:/var/jenkins_home \ + --volume /jenkins-docker-certs:/certs/client:ro \ + myjenkins-blueocean:2.414.2-1 + + +``` + +Create a virual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app solr --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/jenkins/dev/Dockerfile b/jenkins/dev/Dockerfile new file mode 100644 index 000000000..aa4498c92 --- /dev/null +++ b/jenkins/dev/Dockerfile @@ -0,0 +1,12 @@ +FROM jenkins/jenkins:2.414.2-jdk17 +USER root +RUN apt-get update && apt-get install -y lsb-release +RUN curl -fsSLo /usr/share/keyrings/docker-archive-keyring.asc \ + https://download.docker.com/linux/debian/gpg +RUN echo "deb [arch=$(dpkg --print-architecture) \ + signed-by=/usr/share/keyrings/docker-archive-keyring.asc] \ + https://download.docker.com/linux/debian \ + $(lsb_release -cs) stable" > /etc/apt/sources.list.d/docker.list +RUN apt-get update && apt-get install -y docker-ce-cli +USER jenkins +RUN jenkins-plugin-cli --plugins "blueocean docker-workflow" \ No newline at end of file diff --git a/jenkins/dev/jenkins-data/README b/jenkins/dev/jenkins-data/README new file mode 100644 index 000000000..6402c50c7 --- /dev/null +++ b/jenkins/dev/jenkins-data/README @@ -0,0 +1 @@ +folder for jenkins data diff --git a/jenkins/dev/jenkins-docker-certs/README b/jenkins/dev/jenkins-docker-certs/README new file mode 100644 index 000000000..440c0c9c2 --- /dev/null +++ b/jenkins/dev/jenkins-docker-certs/README @@ -0,0 +1 @@ +folder for jenkins certs \ No newline at end of file diff --git a/jenkins/poetry.lock b/jenkins/poetry.lock new file mode 100644 index 000000000..6672c8685 --- /dev/null +++ b/jenkins/poetry.lock @@ -0,0 +1,614 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "multi-key-dict" +version = "2.0.3" +description = "Multi key dictionary implementation" +optional = false +python-versions = "*" +files = [ + {file = "multi_key_dict-2.0.3.tar.gz", hash = "sha256:deebdec17aa30a1c432cb3f437e81f8621e1c0542a0c0617a74f71e232e9939e"}, + {file = "multi_key_dict-2.0.3.zip", hash = "sha256:3a1e1fc705a30a7de1a153ec2992b3ca3655ccd9225d2e427fe6525c8f160d6d"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pbr" +version = "5.11.1" +description = "Python Build Reasonableness" +optional = false +python-versions = ">=2.6" +files = [ + {file = "pbr-5.11.1-py2.py3-none-any.whl", hash = "sha256:567f09558bae2b3ab53cb3c1e2e33e726ff3338e7bae3db5dc954b3a44eef12b"}, + {file = "pbr-5.11.1.tar.gz", hash = "sha256:aefc51675b0b533d56bb5fd1c8c6c0522fe31896679882e1c4c63d5e4a0fccb3"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "python-jenkins" +version = "1.8.1" +description = "Python bindings for the remote Jenkins API" +optional = false +python-versions = "*" +files = [ + {file = "python-jenkins-1.8.1.tar.gz", hash = "sha256:ff5f1d92539d903f869b02eaf2b1314447e6d6d78f767edcfdd92967d532b9c6"}, + {file = "python_jenkins-1.8.1-py3-none-any.whl", hash = "sha256:10bc846108ec546922178a8029735147c9bffbd85f737db4e254e664ed4764a9"}, +] + +[package.dependencies] +multi-key-dict = "*" +pbr = ">=0.8.2" +requests = "*" +setuptools = "<66" +six = ">=1.3.0" + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "65.7.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-65.7.0-py3-none-any.whl", hash = "sha256:8ab4f1dbf2b4a65f7eec5ad0c620e84c34111a68d3349833494b9088212214dd"}, + {file = "setuptools-65.7.0.tar.gz", hash = "sha256:4d3c92fac8f1118bb77a22181355e29c239cabfe2b9effdaa665c66b711136d7"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b2c9b237de2d210bcf6f1225da7f018ed4675f30a0a6644d91510ce3f2007e5d" diff --git a/jenkins/provider/__init__.py b/jenkins/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/jenkins/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/jenkins/provider/app.py b/jenkins/provider/app.py new file mode 100644 index 000000000..10ef141f4 --- /dev/null +++ b/jenkins/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Solr config error: {error}") + abort(502, f"Solr config error: {error}") + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/jenkins/provider/provider.py b/jenkins/provider/provider.py new file mode 100644 index 000000000..66a2346d8 --- /dev/null +++ b/jenkins/provider/provider.py @@ -0,0 +1,40 @@ +import logging + +from flask import current_app as app + +import jenkins + +logger = logging.getLogger(__name__) + +client = None + + +def filter_jobs_by_keywords(jobs, query): + filtered_jobs = [] + keywords = query.split() + for job in jobs: + if any(keyword.lower() in job["name"].lower() for keyword in keywords): + job["text"] = job.pop("fullname") + job["title"] = job.pop("name") + filtered_jobs.append(job) + + return filtered_jobs + + +def search(query): + global client + assert (host := app.config.get("SERVER_URL")), "JENKINS_SERVER_URL must be set" + assert (user_name := app.config.get("USER_NAME")), "JENKINS_USER_NAME must be set" + assert (api_key := app.config.get("API_KEY")), "JENKINS_API_KEY must be set" + folder_depth = app.config.get("FOLDER_DEPTH", 0) + folder_depth_per_request = app.config.get("FOLDER_DEPTH_PER_REQUEST", 10) + + if not client: + client = jenkins.Jenkins(host, username=user_name, password=api_key) + + jobs = filter_jobs_by_keywords( + client.get_jobs(folder_depth, folder_depth_per_request), + query, + ) + + return jobs diff --git a/jenkins/pyproject.toml b/jenkins/pyproject.toml new file mode 100644 index 000000000..78a324db4 --- /dev/null +++ b/jenkins/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "connectors-jenkins" +version = "0.1.0" +description = "" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +gunicorn = "^20.1.0" +python-dotenv = "^1.0.0" +python-jenkins = "^1.8.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/jira/.env-template b/jira/.env-template new file mode 100644 index 000000000..a8583e50a --- /dev/null +++ b/jira/.env-template @@ -0,0 +1,9 @@ +# Authentication +JIRA_USER_EMAIL=user@example.com +JIRA_API_TOKEN= +JIRA_ORG_DOMAIN=https://space.example.com + +# Optional +JIRA_ISSUE_KEY=EX +JIRA_SEARCH_LIMIT=10 +JIRA_CONNECTOR_API_KEY= diff --git a/jira/README.md b/jira/README.md new file mode 100644 index 000000000..96d528c9d --- /dev/null +++ b/jira/README.md @@ -0,0 +1,57 @@ +# Jira Quick Start Connector + +This package is a utility for connecting Cohere to Jira. + +## Limitations + +The Jira connector will perform a full-text search based on the subject and description of the tickets in your org, by default it will return a maximum of 10 results. + +## Configuration + +This connector requires the following environment variables to enable Jira's search API. + +``` +JIRA_USER_EMAIL +JIRA_API_TOKEN +JIRA_ORG_DOMAIN +``` + +It uses Basic Auth with a user email and API token pair. To create an API token, click on your top-right profile icon, select Manage Account > Security > Create API Token. The org domain is the URL for your organization's Jira board, including the https:// scheme. You will need to put these environment variables in a `.env` file for development, see `.env-template`. + +In order to use the `dev/load_data.py` script to load test tickets, the additional env var `JIRA_ISSUE_KEY` should be set. The key is typically a two-letter sequence that forms part of the issue number. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +To load some test issues into Jira, this repo provides a `load_data.py` script in `dev/`. Be careful not to run this script on a real Jira project! + +```bash + $ poetry shell + $ python dev/load_data.py +``` + +Next, start up the search connector server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/jira/config.py b/jira/config.py new file mode 100644 index 000000000..72c3c1ee5 --- /dev/null +++ b/jira/config.py @@ -0,0 +1,17 @@ +class Config(object): + JIRA_USER = None + JIRA_PASS = None + JIRA_URL = None + JIRA_KEY = None + + +class DevConfig(Config): + pass + + +class TestConfig(Config): + pass + + +class ProdConfig(Config): + pass diff --git a/jira/dev/load_data.py b/jira/dev/load_data.py new file mode 100644 index 000000000..28fa6ec51 --- /dev/null +++ b/jira/dev/load_data.py @@ -0,0 +1,37 @@ +import csv +import os +import random + +from atlassian import Jira +from dotenv import load_dotenv + +load_dotenv() + +# Set your Jira details here +jira = Jira( + url=os.environ.get("JIRA_PRODUCT_URL"), + username=os.environ.get("JIRA_CLIENT_USER"), + password=os.environ.get("JIRA_CLIENT_PASS"), +) +project_key = os.environ.get("JIRA_ISSUE_KEY") + +with open("../testdata/bbq.csv", "r") as csv_file: + reader = csv.DictReader(csv_file) + for i, row in enumerate(reader, start=1): + issue_key = f"{project_key}-{i}" + summary = row["Name"] + description = f"Brand: {row['Brand']}\nColor: {row['Color']}\n\n{row['Description']}\n{row['Features']}" + + issue_fields = { + "project": {"key": project_key}, + "summary": summary, + "description": description, + "issuetype": {"name": "Task"}, + } + + new_issue = jira.issue_create(fields=issue_fields) + + if i % 20 == 1: + jira.issue_transition(new_issue["key"], "Done") + if i % 50 == 0: + jira.issue_transition(new_issue["key"], "In Progress") diff --git a/jira/poetry.lock b/jira/poetry.lock new file mode 100644 index 000000000..7594d257a --- /dev/null +++ b/jira/poetry.lock @@ -0,0 +1,814 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "atlassian-python-api" +version = "3.39.0" +description = "Python Atlassian REST API Wrapper" +optional = false +python-versions = "*" +files = [ + {file = "atlassian-python-api-3.39.0.tar.gz", hash = "sha256:69c556b2485224fdc8b4ff1c071d68c81de6c65526a418fb81d99cc34a5d288c"}, +] + +[package.dependencies] +deprecated = "*" +oauthlib = "*" +requests = "*" +requests_oauthlib = "*" +six = "*" + +[package.extras] +kerberos = ["requests-kerberos"] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.4" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, + {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "deprecated" +version = "1.2.14" +description = "Python @deprecated decorator to deprecate old python classes, functions or methods." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, + {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, +] + +[package.dependencies] +wrapt = ">=1.10,<2" + +[package.extras] +dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.0-py3-none-any.whl", hash = "sha256:b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60"}, + {file = "jsonschema-4.18.0.tar.gz", hash = "sha256:8caf5b57a990a98e9b39832ef3cb35c176fe331414252b6e1b26fd5866f891a4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +optional = false +python-versions = ">=3.6" +files = [ + {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, + {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, +] + +[package.extras] +rsa = ["cryptography (>=3.0.0)"] +signals = ["blinker (>=1.4.0)"] +signedtoken = ["cryptography (>=3.0.0)", "pyjwt (>=2.0.0,<3)"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "requests-oauthlib" +version = "1.3.1" +description = "OAuthlib authentication support for Requests." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-oauthlib-1.3.1.tar.gz", hash = "sha256:75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"}, + {file = "requests_oauthlib-1.3.1-py2.py3-none-any.whl", hash = "sha256:2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5"}, +] + +[package.dependencies] +oauthlib = ">=3.0.0" +requests = ">=2.0.0" + +[package.extras] +rsa = ["oauthlib[signedtoken] (>=3.0.0)"] + +[[package]] +name = "rpds-py" +version = "0.8.8" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.8-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:cea42c2f52e37877e6b877bce64d109a6b0213e32545ecc70d4492d2a4641b8f"}, + {file = "rpds_py-0.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b189640d59afa8aeff59865fa9d314bca97987c378950f215297e15d64ae1124"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87d74c2526115daa9d805a66377997602185a837ff7ecceed9d27e625c383572"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:db71c665fc7ddb9ac53d7b69dc588493c0b71635b28fc8ff64b31eb9db5b3461"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2d6a26953d3b291dd7e79e43bb203ed134ca889e63c8ebbc65e3ff98154303ef"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3660bd2afb23e1ca685df0d3092208fe6c7b2cae8c0be199b3da6d1a4bc91dc5"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b5164fdad37847e90683d3748dca7c4604f47ecd21e2d651dafc80393d1d314"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dfec14a64759186153115d987f9e60b1fa7e8e14a00004a02482e696199e554"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d6696c2a002e982e89975063939a2579623d6d6b24634b147848ec9f35dad7d6"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13aed64f2e0bef04a0eae6d1d1295f901f6c1640d1e20264dc3b19d62ef1721d"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:316a66b0379a9e954872593aa2eb6d61949da2ecc8f572b4dafb07aa0e247171"}, + {file = "rpds_py-0.8.8-cp310-none-win32.whl", hash = "sha256:e4e11f71673905d9e8735b8dd4ef8fa85a82e6003851fe46f9bdc51aebc2cd5d"}, + {file = "rpds_py-0.8.8-cp310-none-win_amd64.whl", hash = "sha256:6b1b235b890373f785507f8f6a644a4f191b7195939e7f6108dc0e5e4fab57fd"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:d4334405f6c73c29ff94521f78ad53ebb76a9c1b8dafea75852f9f64c3679cf7"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df2ae878fd99342415a42659f3bcee34b12441a509033e0ab04c6e301895607"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2f8666fde7cfd9cdbc6c223876b39697d387f0215d12ed25147e9efec2dff5a"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ea8c4a1232c7bacf73366b0490dda7f67d25958aec1c2f099b6753c8bfe84427"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5cbcbd6451a4af2048fc0b21c15981462f6a378cb039aa53612c6e39958064e"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d418d2fd8c0fffe2897bc3e15a2e2ec87abf29076f0c36898cc33fb7881c2cbe"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97e4cbe722474d17c309ee49e09331ceffe345bb72e2b10c6c740788871b122"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1f60a7eb96fedcc5bf59761d33ac0f2f127d75f8c4b99ed0f138fc0f3601c537"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b3ed0d3498b69159db0d5db1393c8bae4df51cf936b2ef5cda53d800acab0019"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:22afed13c6ad4ccdc650ad44cbc06f835f4f30de201bd4ee2afc09bde06a357a"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:78c5577f99d2edc9eed9ec39fae27b73d04d1b2462aff6f6b11207e0364fc40d"}, + {file = "rpds_py-0.8.8-cp311-none-win32.whl", hash = "sha256:42eb3030665ee7a5c03fd4db6b8db1983aa91bcdffbed0f4687751deb2a94a7c"}, + {file = "rpds_py-0.8.8-cp311-none-win_amd64.whl", hash = "sha256:7110854662ccf8db84b90e4624301ef5311cafff7e5f2a63f2d7cc0fc1a75b60"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:d00b16de3c42bb3d26341b443e48d67d444bb1a4ce6b44dd5600def2da759599"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d7e540e4f85c04706ea798f47a86483f3d85c624704413bc701eb75684d35a5"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54a54c3c220e7c5038207912aab23443f829762503a4fcbc5c7bbffef7523b13"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22d5bef6f9942e46582610a60b8420f8e9af7e0c69e35c317cb508c30117f933"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fccd5e138908ae6f2db5fbfc6769e65372993b0c4c047586de15b6c31a76e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:502f0bee154fa1c13514dfddb402ef29b86aca11873a3316de4534cf0e13a1e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cfd2c2dbb0446ec1ba132e62e1f4880163e43e131dd43f58f58fd46430649b"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f12e679f29a6c2c0607b7037e7fce4f6430a0d304770768cf6d8036386918c29"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8f9d619c66dc7c018a22a1795a14ab4dad3c76246c9059b681955254a0f58f7c"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f9e70c04cc0402f8b14fec8ac91d1b825ac89a9aa015556a0af12a06b5f085"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d72757c0cb6423fe73ecaa2db3adf0077da513b7fe8cb19e102de6df4ccdad0c"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:d7e46f52272ceecc42c05ad869b068b2dbfb6eb5643bcccecd2327d3cded5a2e"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7628b2080538faa4a1243b0002678cae7111af68ae7b5aa6cd8526762cace868"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657348b35a4c2e7c2340bf0bc37597900037bd87e9db7e6282711aaa77256e16"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ac1e47ee4cb2dbd714537e63c67086eec63f56b13208fe450ae5be4f3d65671"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cafbfa8f3a27e592bdcc420497e0c9a957c9f812b6c6ebfb7f961409215ba82d"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9af40bb89e40932e04c0cc1fb516249d6b3ae68ceebd984fdc592a6673244e50"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b7c87503843a036f898d44c47326a117d23b6269a9f1574adf83d7bb051b839"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0fe018430e5e8e1d8b513bcbccdb0ea34b9fd81c32b3a49c41a109fade17cfb"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c7019b2522af6b835118177b6b53f7ed08da28061aa5d44e06286be09799e7a4"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ac596301c7723809ecb6ec4cb2564b2cadc06f8c07b6348a56fcbf1ae043d751"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f8a1cc37e2395002381510a6862c29634acd67edfe5774661a6c48d8617acae7"}, + {file = "rpds_py-0.8.8-cp38-none-win32.whl", hash = "sha256:e261fa453ad50fe1d9287fa21d962cdbcd3d495cf1160dd0f893883040c455b6"}, + {file = "rpds_py-0.8.8-cp38-none-win_amd64.whl", hash = "sha256:e1700fba17dd63c9c7d5cb03cf838db23cf938dd5cdb1eecb6ba8b8da62c3e73"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:25a4b357ba7540d7cc709915699d67d505c8177cdb30824127092e1b4886b504"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f81a570a20f9fce617d728f4e3bdc05bfbb68afa2e795ec0c52544a7923de517"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:246a410e540ce7f635c6ad1b7aa00b7dcfc966c5f97217e41092c3f764dac4bf"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfe98ad05400e7ac7a1df791645db08c66adc92d7a6449a406111303a265b71a"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb5226b11f4fce98c6e47c07819fbbfdda6d3fd529cd176ad8a1e0b98a70b05"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ee396f63a1f540fb3aecb8cc698180d30573a661be47fb3fff45cbd2b5d4686"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e85ea159f2d2132d4fcb71abb7df9683314f6073bf8ee9f9bd576440245e59c"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ed823997c3300b541da0fcc9eee8fbe6740e07939ffa432824cfca287472d652"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4333b5c2801e44bf342207a7700378a1013f300116c9553ce1ffbc73047d2a02"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:681ef7a21e6990583533c3a3038b7176f5e51e5d345fe2d9109b54f6bffcabcd"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1891903e567d728175c0475a1f0ffc1d1580013b0b265b9e2f1b8c93d58b2d05"}, + {file = "rpds_py-0.8.8-cp39-none-win32.whl", hash = "sha256:ee42ce4ef46ea334ce8ab63d5a57c7fd78238c9c7293b3caa6dfedf11bd28773"}, + {file = "rpds_py-0.8.8-cp39-none-win_amd64.whl", hash = "sha256:0e8da63b9baa154ec9ddd6dd397893830d17e5812ceb50edbae8122d8ecb9f2e"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ecc79cd61c4c16f92521c7d34e0f534bc486fc5ed5d1fdf8d4e6e0c578dc7e07"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d43e4253469a6149f4dae91189ccbf832dcd870109b940fa6acb02769e57802b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9985927f001d98d38ad90e0829d3e3c162ce42060bafb833782a934bf1d1d39b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7af604c6581da01fd5f89a917c903a324779fdfa7b3ae66204865d34b5f2c502"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53ed81e3a9a0eb3dfd404ee097d4f50ec6985301ea6e03b4d57cd7ef239179f9"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6b93a8a17e84a53fa6636037955ba8e795f6645dab5ccbeb356c8dbc9cb371"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:592b9de8d82e919ffbf069e586808f56118a7f522bb0d018c54fa3526e5f2bed"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af0920c26fe3421f9e113975c185f7c42a3f0a8ead72cee5b4e6648af5d8cecc"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:28ce85916d7377b9734b280872fb456aa048712901edff9d60836c7b2e177265"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:cbbb26ac4dade6fdec22cb1155ca38d270b308f57cfd48a13a7a8ecc79369e82"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8469755965ff2aa1da08e6e0afcde08950ebba84a4836cdc1672d097c62ffdbd"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1c84912d77b01651488bbe392df593b4c5852e213477e268ebbb7c799059d78"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:180963bb3e1fcc6ed6313ece5e065f0df4021a7eb7016084d3cbc90cd2a8af3e"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e1251d6690f356a305192089017da83999cded1d7e2405660d14c1dff976af7"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:36266e2e49b36ec6cc148e36667030d8e7f1c009edd2ca978ab09ed9c5a7589a"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bd8dbc1c63668124e5e48e601d32f1053cfd5a86004ae0e55dc9ba8b1e7de29"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c62fdb01111da948e8446caaefebf2ca4307a58fcbc10039b48d0db7205397c"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79ac819182795a2168ed11075c7362de368f360244fb7cea8274c222b2d55365"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b949e86affe17c8828d82936c51d7aa9b686511f9ac99a4b1de596d7140c8083"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:fffd98c1fd6b38df35e471549c2486d826af0fda6ca55c0bbbb956b291e7f2ae"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:9b331fa451d725258c1ad0ae6816cf36d55294e5cb68338cf91550b9a448a48f"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:18a97bb7f211b247346983092186927c517153ac155c611f43ca83d5ee93a3e2"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:df3097abf5fd09bfcd8f6fd02d052b25cc3e160b3ee71b6fbd831b2cd516c958"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:961828c668140796c4963edb14cd968666d5414b9b5829997a4f475fd917906e"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a55fd01f61df19e4f53fd67b63ca9bf47559632c3f7d4037faa06d3a6fed54"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f64ef5700ff8fded62b12d1ea55463031cc5a353b670ed7146126c6cbf28788"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a747477838a90b9264f434b5399309f9badb32c80ff3e9c4f6d5b87fddcbaa09"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:358c7a976482537d26fcbdc7808e7cc25f64816fe89681f9aa8bef13e16c7370"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e086610118163400a1822af0ee857581c0e047aa50a9c3543d17fbe65183a339"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:755a837fb7053dbf511fba26343423bd80d3b75a5d7f57f6e407c2fe5ae46682"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:247a1fd9bcdb373380cb8c0041417c9995fc163c9d88a39f5ec3d960114aca22"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c26b1a0425c038cc23cf5770a47d7a7382fe68d6d10fb2a52c2896ca94e72550"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4c66a5f9ca9c5fcb2527ad969541521f7216db713a7bd63aee52c3f5efa5924a"}, + {file = "rpds_py-0.8.8.tar.gz", hash = "sha256:300b8579740b06e246238b730e636f314a7d8dc475be1868650f5d3ddc29a0d8"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "wrapt" +version = "1.15.0" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "326f8ac83343d5e54a8593c5e72efd3b8647e64d92d021e7b058c7dd2abbbe11" diff --git a/jira/provider/__init__.py b/jira/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/jira/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/jira/provider/app.py b/jira/provider/app.py new file mode 100644 index 000000000..bdd3e99ef --- /dev/null +++ b/jira/provider/app.py @@ -0,0 +1,29 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/jira/provider/client.py b/jira/provider/client.py new file mode 100644 index 000000000..3faad7e13 --- /dev/null +++ b/jira/provider/client.py @@ -0,0 +1,21 @@ +from atlassian import Jira +from flask import current_app as app +from . import UpstreamProviderError + +client = None + + +def get_client(): + global client + + if not client: + try: + client = Jira( + url=app.config["ORG_DOMAIN"], + username=app.config["USER_EMAIL"], + password=app.config["API_TOKEN"], + ) + except Exception as e: + raise UpstreamProviderError(f"Error initializing Jira client: {str(e)}") + + return client diff --git a/jira/provider/provider.py b/jira/provider/provider.py new file mode 100644 index 000000000..c205fdb6b --- /dev/null +++ b/jira/provider/provider.py @@ -0,0 +1,46 @@ +import logging + + +from flask import current_app as app +from .client import get_client + +logger = logging.getLogger(__name__) + +DEFAULT_SEARCH_LIMIT = 10 + + +def serialize_result(issue): + data = {} + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_resource = { + key: str(value) + for key, value in issue["fields"].items() + if isinstance(value, (str, int, bool)) + } + + data.update({**stripped_resource}) + + if (task_name := issue.get("key")) is not None: + data["title"] = task_name + data["url"] = f"{app.config['ORG_DOMAIN']}/browse/{task_name}" + + if (description := issue.get("fields", {}).get("description")) is not None: + data["text"] = description + + return data + + +def search(query): + client = get_client() + + issues = client.jql( + 'text ~ "' + query + '"', + limit=app.config.get("SEARCH_LIMIT", DEFAULT_SEARCH_LIMIT), + )["issues"] + + results = [] + for issue in issues: + result = serialize_result(issue) + results.append(result) + + return results diff --git a/jira/pyproject.toml b/jira/pyproject.toml new file mode 100644 index 000000000..bb1d19e4d --- /dev/null +++ b/jira/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "connector-jira" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +atlassian-python-api = "^3.39.0" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/kendra/.env-template b/kendra/.env-template new file mode 100644 index 000000000..fb76ca461 --- /dev/null +++ b/kendra/.env-template @@ -0,0 +1,4 @@ +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +KENDRA_INDEX_ID= +KENDRA_CONNECTOR_API_KEY= diff --git a/kendra/README.md b/kendra/README.md new file mode 100644 index 000000000..4dc79b773 --- /dev/null +++ b/kendra/README.md @@ -0,0 +1,51 @@ +# Kendra Connector + +Connect Cohere to AWS Kendra. + +## Configuration + +To use this connector, you must first configure AWS Kendra. Once you have Kendra configured, you +will need to set three environment variables in order to use this connector: `AWS_ACCESS_KEY_ID`, +`AWS_SECRET_ACCESS_KEY` and `KENDRA_INDEX_ID`. + +The `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` correspond to an IAM user configured with access +to Kendra. The `KENDRA_INDEX_ID` value corresponds to the Kendra index that you would like this +connector to search. The value can be found on the Kendra Index Settings page in AWS Management Console. +You may optionally set the other AWS environment variables that are used by Boto3. + +The environment variables can optionally be placed in a file called `.env`. See `.env-template` for a +full list of available options. This file can be copied to `.env` and modified. Options that are +left empty will be ignored. + +The Kendra index and returned data can be extensively customized in the AWS Management Console. + +Finally, to protect this connector from abuse, the `KENDRA_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/kendra/poetry.lock b/kendra/poetry.lock new file mode 100644 index 000000000..81533d153 --- /dev/null +++ b/kendra/poetry.lock @@ -0,0 +1,898 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "boto3" +version = "1.28.26" +description = "The AWS SDK for Python" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "boto3-1.28.26-py3-none-any.whl", hash = "sha256:63619ffa44bc7f799b525c86d73bdb7f7a70994942bbff78253585bf64084e6e"}, + {file = "boto3-1.28.26.tar.gz", hash = "sha256:a15841c7d04f87c63c9f2587b2b48198bec04d307d7b9950cbe4a021f845a5ba"}, +] + +[package.dependencies] +botocore = ">=1.31.26,<1.32.0" +jmespath = ">=0.7.1,<2.0.0" +s3transfer = ">=0.6.0,<0.7.0" + +[package.extras] +crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] + +[[package]] +name = "botocore" +version = "1.31.26" +description = "Low-level, data-driven core of boto 3." +optional = false +python-versions = ">= 3.7" +files = [ + {file = "botocore-1.31.26-py3-none-any.whl", hash = "sha256:74d1c26144915312004a9f0232cdbe08946dfec9fc7dcd854456d2b73be9bfd9"}, + {file = "botocore-1.31.26.tar.gz", hash = "sha256:e68a50ba76425ede8693fdf1f95b8411e283bc7619c03d7eb666db9f1de48153"}, +] + +[package.dependencies] +jmespath = ">=0.7.1,<2.0.0" +python-dateutil = ">=2.1,<3.0.0" +urllib3 = ">=1.25.4,<1.27" + +[package.extras] +crt = ["awscrt (==0.16.26)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jmespath" +version = "1.0.1" +description = "JSON Matching Expressions" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, + {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, +] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "s3transfer" +version = "0.6.1" +description = "An Amazon S3 Transfer Manager" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "s3transfer-0.6.1-py3-none-any.whl", hash = "sha256:3c0da2d074bf35d6870ef157158641178a4204a6e689e82546083e31e0311346"}, + {file = "s3transfer-0.6.1.tar.gz", hash = "sha256:640bb492711f4c0c0905e1f62b6aaeb771881935ad27884852411f8e9cacbca9"}, +] + +[package.dependencies] +botocore = ">=1.12.36,<2.0a.0" + +[package.extras] +crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "923c3f80654fbab8af7288571167408639403bc49e0b6575a4bbf9e3c1702435" diff --git a/kendra/provider/__init__.py b/kendra/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/kendra/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/kendra/provider/app.py b/kendra/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/kendra/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/kendra/provider/provider.py b/kendra/provider/provider.py new file mode 100644 index 000000000..023b9a1da --- /dev/null +++ b/kendra/provider/provider.py @@ -0,0 +1,24 @@ +import logging +from typing import Any + +import botocore +import boto3 +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + assert (index_id := app.config.get("INDEX_ID")), "KENDRA_INDEX_ID must be set" + + kendra = boto3.client("kendra") + + try: + response = kendra.retrieve(QueryText=query, IndexId=index_id) + except botocore.exceptions.ClientError as err: + raise UpstreamProviderError(str(err)) from err + + return response["ResultItems"] diff --git a/kendra/pyproject.toml b/kendra/pyproject.toml new file mode 100644 index 000000000..ad456d4bd --- /dev/null +++ b/kendra/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "kendra" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +boto3 = "1.28.26" + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/klaviyo/.env-template b/klaviyo/.env-template new file mode 100644 index 000000000..f2aecdb92 --- /dev/null +++ b/klaviyo/.env-template @@ -0,0 +1,4 @@ +KLAVIYO_API_KEY= +KLAVIYO_CAMPAIGNS_CREATED_AFTER= +KLAVIYO_USE_TEMPLATES_FOR_SEARCH=0 +KLAVIYO_CONNECTOR_API_KEY=abcdefg1234567890 \ No newline at end of file diff --git a/klaviyo/README.md b/klaviyo/README.md new file mode 100644 index 000000000..c47ea6ac0 --- /dev/null +++ b/klaviyo/README.md @@ -0,0 +1,68 @@ +# Klaviyo Connector + +This package is a utility for connecting Cohere to Klaviyo. + +## Configuration + +This connectorrequires the following environment variables: + +``` +KLAVIYO_API_KEY +``` + +This variable should contain the API key of the Klaviyo account. +To get the API key, use the instructions [here](https://developers.klaviyo.com/en/docs/retrieve_api_credentials) + +``` +KLAVIYO_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +### Optional configuration + +``` +KLAVIYO_CAMPAIGNS_CREATED_AFTER +``` + +This variable may contain the date after which campaigns should be considered for search. +Date format is `YYYY-MM-DDT00:00:00Z`. If not set, defaults to `2022-01-01`. + +``` +KLAVIYO_USE_TEMPLATES_FOR_SEARCH +``` + +This variable may be set to `1` to use Klaviyo campaign templates for search. If not set, defaults to `0`. +Please note using templates for search may have a negative impact on search response time. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/klaviyo/poetry.lock b/klaviyo/poetry.lock new file mode 100644 index 000000000..867d40631 --- /dev/null +++ b/klaviyo/poetry.lock @@ -0,0 +1,888 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aenum" +version = "3.1.15" +description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants" +optional = false +python-versions = "*" +files = [ + {file = "aenum-3.1.15-py2-none-any.whl", hash = "sha256:27b1710b9d084de6e2e695dab78fe9f269de924b51ae2850170ee7e1ca6288a5"}, + {file = "aenum-3.1.15-py3-none-any.whl", hash = "sha256:e0dfaeea4c2bd362144b87377e2c61d91958c5ed0b4daf89cb6f45ae23af6288"}, + {file = "aenum-3.1.15.tar.gz", hash = "sha256:8cbd76cd18c4f870ff39b24284d3ea028fbe8731a58df3aa581e434c575b9559"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "klaviyo-api" +version = "6.0.0" +description = "Klaviyo Python SDK" +optional = false +python-versions = ">=3.6" +files = [ + {file = "klaviyo-api-6.0.0.tar.gz", hash = "sha256:44921caffa134d6b0c11f79ac4f7c646a922eb147932628670338adbe750e079"}, + {file = "klaviyo_api-6.0.0-py3-none-any.whl", hash = "sha256:17750b0c4f95fc1a0e0272105bdf005238e1233349e2d86f58a9ef1204fd7060"}, +] + +[package.dependencies] +aenum = ">=3.1.11" +pydantic = ">=1.10.5,<2" +python-dateutil = ">=2.5.3" +setuptools = ">=21.0.0" +tenacity = ">=8.0.0" +urllib3 = ">=1.25.3" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "pydantic" +version = "1.10.13" +description = "Data validation and settings management using python type hints" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic-1.10.13-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:efff03cc7a4f29d9009d1c96ceb1e7a70a65cfe86e89d34e4a5f2ab1e5693737"}, + {file = "pydantic-1.10.13-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3ecea2b9d80e5333303eeb77e180b90e95eea8f765d08c3d278cd56b00345d01"}, + {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1740068fd8e2ef6eb27a20e5651df000978edce6da6803c2bef0bc74540f9548"}, + {file = "pydantic-1.10.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84bafe2e60b5e78bc64a2941b4c071a4b7404c5c907f5f5a99b0139781e69ed8"}, + {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bc0898c12f8e9c97f6cd44c0ed70d55749eaf783716896960b4ecce2edfd2d69"}, + {file = "pydantic-1.10.13-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:654db58ae399fe6434e55325a2c3e959836bd17a6f6a0b6ca8107ea0571d2e17"}, + {file = "pydantic-1.10.13-cp310-cp310-win_amd64.whl", hash = "sha256:75ac15385a3534d887a99c713aa3da88a30fbd6204a5cd0dc4dab3d770b9bd2f"}, + {file = "pydantic-1.10.13-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c553f6a156deb868ba38a23cf0df886c63492e9257f60a79c0fd8e7173537653"}, + {file = "pydantic-1.10.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e08865bc6464df8c7d61439ef4439829e3ab62ab1669cddea8dd00cd74b9ffe"}, + {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e31647d85a2013d926ce60b84f9dd5300d44535a9941fe825dc349ae1f760df9"}, + {file = "pydantic-1.10.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:210ce042e8f6f7c01168b2d84d4c9eb2b009fe7bf572c2266e235edf14bacd80"}, + {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8ae5dd6b721459bfa30805f4c25880e0dd78fc5b5879f9f7a692196ddcb5a580"}, + {file = "pydantic-1.10.13-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f8e81fc5fb17dae698f52bdd1c4f18b6ca674d7068242b2aff075f588301bbb0"}, + {file = "pydantic-1.10.13-cp311-cp311-win_amd64.whl", hash = "sha256:61d9dce220447fb74f45e73d7ff3b530e25db30192ad8d425166d43c5deb6df0"}, + {file = "pydantic-1.10.13-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4b03e42ec20286f052490423682016fd80fda830d8e4119f8ab13ec7464c0132"}, + {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f59ef915cac80275245824e9d771ee939133be38215555e9dc90c6cb148aaeb5"}, + {file = "pydantic-1.10.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a1f9f747851338933942db7af7b6ee8268568ef2ed86c4185c6ef4402e80ba8"}, + {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:97cce3ae7341f7620a0ba5ef6cf043975cd9d2b81f3aa5f4ea37928269bc1b87"}, + {file = "pydantic-1.10.13-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854223752ba81e3abf663d685f105c64150873cc6f5d0c01d3e3220bcff7d36f"}, + {file = "pydantic-1.10.13-cp37-cp37m-win_amd64.whl", hash = "sha256:b97c1fac8c49be29486df85968682b0afa77e1b809aff74b83081cc115e52f33"}, + {file = "pydantic-1.10.13-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c958d053453a1c4b1c2062b05cd42d9d5c8eb67537b8d5a7e3c3032943ecd261"}, + {file = "pydantic-1.10.13-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c5370a7edaac06daee3af1c8b1192e305bc102abcbf2a92374b5bc793818599"}, + {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d6f6e7305244bddb4414ba7094ce910560c907bdfa3501e9db1a7fd7eaea127"}, + {file = "pydantic-1.10.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3a3c792a58e1622667a2837512099eac62490cdfd63bd407993aaf200a4cf1f"}, + {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c636925f38b8db208e09d344c7aa4f29a86bb9947495dd6b6d376ad10334fb78"}, + {file = "pydantic-1.10.13-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:678bcf5591b63cc917100dc50ab6caebe597ac67e8c9ccb75e698f66038ea953"}, + {file = "pydantic-1.10.13-cp38-cp38-win_amd64.whl", hash = "sha256:6cf25c1a65c27923a17b3da28a0bdb99f62ee04230c931d83e888012851f4e7f"}, + {file = "pydantic-1.10.13-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8ef467901d7a41fa0ca6db9ae3ec0021e3f657ce2c208e98cd511f3161c762c6"}, + {file = "pydantic-1.10.13-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:968ac42970f57b8344ee08837b62f6ee6f53c33f603547a55571c954a4225691"}, + {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9849f031cf8a2f0a928fe885e5a04b08006d6d41876b8bbd2fc68a18f9f2e3fd"}, + {file = "pydantic-1.10.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:56e3ff861c3b9c6857579de282ce8baabf443f42ffba355bf070770ed63e11e1"}, + {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f00790179497767aae6bcdc36355792c79e7bbb20b145ff449700eb076c5f96"}, + {file = "pydantic-1.10.13-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:75b297827b59bc229cac1a23a2f7a4ac0031068e5be0ce385be1462e7e17a35d"}, + {file = "pydantic-1.10.13-cp39-cp39-win_amd64.whl", hash = "sha256:e70ca129d2053fb8b728ee7d1af8e553a928d7e301a311094b8a0501adc8763d"}, + {file = "pydantic-1.10.13-py3-none-any.whl", hash = "sha256:b87326822e71bd5f313e7d3bfdc77ac3247035ac10b0c0618bd99dcf95b1e687"}, + {file = "pydantic-1.10.13.tar.gz", hash = "sha256:32c8b48dcd3b2ac4e78b0ba4af3a2c2eb6048cb75202f0ea7b34feb740efc340"}, +] + +[package.dependencies] +typing-extensions = ">=4.2.0" + +[package.extras] +dotenv = ["python-dotenv (>=0.10.4)"] +email = ["email-validator (>=1.0.3)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "setuptools" +version = "68.2.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-68.2.2-py3-none-any.whl", hash = "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a"}, + {file = "setuptools-68.2.2.tar.gz", hash = "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tenacity" +version = "8.2.3" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, + {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, +] + +[package.extras] +doc = ["reno", "sphinx", "tornado (>=4.5)"] + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "fccdeeb52d4b1fde041077fb22ea1e71b757d632d6cd427eb31e2190866416aa" diff --git a/klaviyo/provider/__init__.py b/klaviyo/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/klaviyo/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/klaviyo/provider/app.py b/klaviyo/provider/app.py new file mode 100644 index 000000000..14354e115 --- /dev/null +++ b/klaviyo/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Klaviyo config error: {error}") + abort(502, f"Klaviyo config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/klaviyo/provider/client.py b/klaviyo/provider/client.py new file mode 100644 index 000000000..f9dbecaca --- /dev/null +++ b/klaviyo/provider/client.py @@ -0,0 +1,14 @@ +from flask import current_app as app +from klaviyo_api import KlaviyoAPI + +client = None + + +def get_client(): + global client + assert (api_key := app.config.get("API_KEY")), "KLAVIYO_API_KEY must be set" + + if not client: + client = KlaviyoAPI(api_key) + + return client diff --git a/klaviyo/provider/provider.py b/klaviyo/provider/provider.py new file mode 100644 index 000000000..379852c7e --- /dev/null +++ b/klaviyo/provider/provider.py @@ -0,0 +1,182 @@ +import logging +from functools import reduce + +from flask import current_app as app + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def get_dict_value_by_dotted_key(dictionary, keys, default=None): + return reduce( + lambda d, key: d.get(key, default) if isinstance(d, dict) else default, + keys.split("."), + dictionary, + ) + + +def search_by_keys_in_dict(dictionary, keys, query): + for key in keys: + value = get_dict_value_by_dotted_key(dictionary, key) + value = value.lower() if isinstance(value, str) else "" + query = query.lower() + keywords = query.split() + if any(keyword in value for keyword in keywords): + return True + return False + + +def check_result_by_campaign_attributes(result, query): + campaign_searchable_attributes = ["attributes.name"] + return search_by_keys_in_dict(result, campaign_searchable_attributes, query) + + +def check_result_by_message_attributes(result, query): + message_searchable_attributes = [ + "attributes.label", + "attributes.content.subject", + "attributes.content.preview_text", + ] + for message in result["messages"]: + if search_by_keys_in_dict(message, message_searchable_attributes, query): + return True + return False + + +def check_result_by_template_attributes(result, query): + templates_searchable_attributes = [ + "attributes.name", + "attributes.html", + "attributes.text", + ] + for template in result["templates"]: + if search_by_keys_in_dict(template, templates_searchable_attributes, query): + return True + return False + + +def search_results_by_query(results, query): + search_results = [] + + for result in results: + if ( + check_result_by_campaign_attributes(result, query) + or check_result_by_message_attributes(result, query) + or check_result_by_template_attributes(result, query) + ): + result = serialize_record(result) + search_results.append(result) + + return search_results + + +def get_campaigns_messages(client, campaign): + messages_params = { + "fields_campaign_message": ["content", "label"], + "fields_template": ["name", "text", "html"], + "include": ["template"], + } + campaign_messages = client.Campaigns.get_campaign_campaign_messages( + campaign["id"], **messages_params + ) + return campaign_messages + + +def serialize_record(record): + # serialize record attributes + if "attributes" in record and record["attributes"]: + record["title"] = record["attributes"]["name"] + record[ + "url" + ] = f'https://www.klaviyo.com/campaign/{record["id"]}/reports/overview' + for record_attribute, record_val in record["attributes"].items(): + if isinstance(record_val, dict): + for record_val_key, record_val_val in record_val.items(): + record[f"{record_attribute}_{record_val_key}"] = str(record_val_val) + elif isinstance(record_val, str): + record[record_attribute] = record_val + record.pop("attributes") + record.pop("relationships") + record.pop("links") + # serialize messages + if "messages" in record and record["messages"]: + for message in record["messages"]: + if "attributes" in message and message["attributes"]: + if "content" in message["attributes"]: + for message_attribute, message_val in message["attributes"][ + "content" + ].items(): + record[f"message_{message_attribute}"] = str(message_val) + record.pop("messages") + # serialize templates + if "templates" in record and record["templates"]: + for template in record["templates"]: + if "attributes" in template and template["attributes"]: + for template_attribute, template_val in template["attributes"].items(): + record[f"template_{template_attribute}"] = str(template_val) + record.pop("templates") + record["text"] = ( + record["message_preview_text"] + if "message_preview_text" in record and record["message_preview_text"] + else record["message_subject"] + ) + return record + + +def prepare_campaigns_to_search(client, campaigns, channel, results): + if campaigns[channel]["data"]: + use_templates_for_search = app.config.get("USE_TEMPLATES_FOR_SEARCH", 0) + for campaign in campaigns[channel]["data"]: + record_to_append = campaign + record_to_append["channel"] = channel + if use_templates_for_search == 1: + campaign_messages = get_campaigns_messages(client, campaign) + campaign_templates = ( + campaign_messages["included"] + if "included" in campaign_messages + else [] + ) + campaign_messages = ( + campaign_messages["data"] if "data" in campaign_messages else [] + ) + + record_to_append["messages"] = campaign_messages + record_to_append["templates"] = campaign_templates + else: + record_to_append["messages"] = [ + message + for message in campaigns[channel]["included"] + if message["relationships"]["campaign"]["data"]["id"] + == campaign["id"] + ] + record_to_append["templates"] = [] + results.append(record_to_append) + return results + + +def search(query): + campaigns_created_after = app.config.get( + "CAMPAIGNS_CREATED_AFTER", "2022-01-01T00:00:00Z" + ) + + client = get_client() + + campaigns = { + "email": [], + "sms": [], + } + all_results = [] + message_channels = ["email", "sms"] + for channel in message_channels: + params = { + "filter": f'equals(messages.channel,"{channel}"),greater-or-equal(created_at,{campaigns_created_after})', + "include": ["campaign-messages"], + "fields_campaign_message": ["content", "label"], + } + campaigns[channel] = client.Campaigns.get_campaigns(**params) + all_results = prepare_campaigns_to_search( + client, campaigns, channel, all_results + ) + + return search_results_by_query(all_results, query) diff --git a/klaviyo/pyproject.toml b/klaviyo/pyproject.toml new file mode 100644 index 000000000..f9fd11ec2 --- /dev/null +++ b/klaviyo/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "klaviyo" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" +klaviyo-api = "^6.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/knowledgeowl/.env-template b/knowledgeowl/.env-template new file mode 100644 index 000000000..39f3c43a7 --- /dev/null +++ b/knowledgeowl/.env-template @@ -0,0 +1,2 @@ +KNOWLEDGEOWL_API_KEY= +KNOWLEDGEOWL_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/knowledgeowl/README.md b/knowledgeowl/README.md new file mode 100644 index 000000000..1824dc822 --- /dev/null +++ b/knowledgeowl/README.md @@ -0,0 +1,35 @@ +# Knowledge Owl Connector + +Connects Cohere to Knowledge Owl, the planning and collaboration tool. + +## Configuration + +To use this connector you will require a Knowledge Owl organization. Then, head to your Account > API and generate an API key. Cohere will only require the `GET` permissions. Use this value for the `KNOWLEDGEOWL_API_KEY` environment variable. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/knowledgeowl/poetry.lock b/knowledgeowl/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/knowledgeowl/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/knowledgeowl/provider/__init__.py b/knowledgeowl/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/knowledgeowl/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/knowledgeowl/provider/app.py b/knowledgeowl/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/knowledgeowl/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/knowledgeowl/provider/client.py b/knowledgeowl/provider/client.py new file mode 100644 index 000000000..4c65116cc --- /dev/null +++ b/knowledgeowl/provider/client.py @@ -0,0 +1,46 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class KnowledgeOwlClient: + base_url = "https://app.knowledgeowl.com/api" + article_base_url = "https://app.knowledgeowl.com/kb/article/id" + + def __init__(self, api_key): + self.auth = (api_key, "X") + + def search_articles(self, query): + url = f"{self.base_url}/head/article.json" + data = { + "name": { + "$regex": query, + "$option": "i", + } + } + + response = requests.get( + url, + auth=self.auth, + data=data, + ) + + if response.status_code != 200: + raise UpstreamProviderError( + f"Error querying articles with query: `{query}`." + ) + + return response.json()["data"] + + +def get_client(): + global client + assert (api_key := app.config.get("API_KEY")), "KLAVIYO_API_KEY must be set" + if client is not None: + return client + + client = KnowledgeOwlClient(api_key) + return client diff --git a/knowledgeowl/provider/provider.py b/knowledgeowl/provider/provider.py new file mode 100644 index 000000000..09d9aad23 --- /dev/null +++ b/knowledgeowl/provider/provider.py @@ -0,0 +1,43 @@ +import logging +from typing import Any + + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + knowledgeowl_client = get_client() + + search_results = knowledgeowl_client.search_articles(query) + + results = [] + for page in search_results: + results.append(serialize_search_result(page)) + + return results + + +def serialize_search_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_result = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "name" in stripped_result: + stripped_result["title"] = stripped_result.pop("name") + + if "summary" in stripped_result: + stripped_result["text"] = stripped_result.pop("summary") + + # Both fields required to build URL manually + if all(key in stripped_result for key in ["project_id", "id"]): + knowledgeowl_client = get_client() + stripped_result[ + "url" + ] = f"{knowledgeowl_client.article_base_url}/{stripped_result['project_id']}/aid/{stripped_result['id']}" + + return stripped_result diff --git a/knowledgeowl/pyproject.toml b/knowledgeowl/pyproject.toml new file mode 100644 index 000000000..8fc11cebc --- /dev/null +++ b/knowledgeowl/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "knowledgeowl" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/linear/.env-template b/linear/.env-template new file mode 100644 index 000000000..0685578fa --- /dev/null +++ b/linear/.env-template @@ -0,0 +1,3 @@ +LINEAR_API_KEY= +LINEAR_SEARCH_LIMIT= +LINEAR_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/linear/README.md b/linear/README.md new file mode 100644 index 000000000..ac5835146 --- /dev/null +++ b/linear/README.md @@ -0,0 +1,62 @@ +# Linear Connector + +This package is a utility for connecting Cohere to Linear. + +## Configuration + +The search connector requires the following environment variables: + +``` +LINEAR_API_KEY +``` + +This variable should contain the API key of the Linear account. +This connector uses the Personal API key, which can be found in the Linear settings page. +To get the API key, use the +instructions [here](https://developers.linear.app/docs/graphql/working-with-the-graphql-api#personal-api-keys) + +``` +LINEAR_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +### Optional configuration + +``` +LINEAR_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return from Linear. Default value is 20. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/linear/poetry.lock b/linear/poetry.lock new file mode 100644 index 000000000..f3e7f4ef7 --- /dev/null +++ b/linear/poetry.lock @@ -0,0 +1,739 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/linear/provider/__init__.py b/linear/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/linear/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/linear/provider/app.py b/linear/provider/app.py new file mode 100644 index 000000000..34d4718a5 --- /dev/null +++ b/linear/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Linear config error: {error}") + abort(502, f"Linear config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/linear/provider/client.py b/linear/provider/client.py new file mode 100644 index 000000000..aef9c49f2 --- /dev/null +++ b/linear/provider/client.py @@ -0,0 +1,101 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class LinearApiClient: + API_URL = "https://api.linear.app/graphql" + + def __init__(self, api_key, search_limit): + self.headers = {"Authorization": f"{api_key}"} + self.search_limit = search_limit + + def get_search_limit(self): + return self.search_limit + + def post(self, params={}): + response = requests.post(self.API_URL, headers=self.headers, json=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def search_issues_by_term(self, term): + query = """ + query SearchQuery($term: String!, $first: Int) { + searchIssues(term: $term, first: $first) { + nodes { + id + title + description + url + updatedAt + archivedAt + assignee { + active + avatarUrl + email + displayName + name + organization { + id + name + } + } + branchName + comments { + nodes { + id + documentContent + { + id + content + } + url + } + } + completedAt + createdAt + cycle { + id + name + startsAt + scopeHistory + } + dueDate + priority + previousIdentifiers + startedAt + state { + id + name + type + color + description + } + trashed + } + } + } + """ + params = { + "query": query, + "variables": {"term": term, "first": self.search_limit}, + } + return self.post(params) + + +def get_client(): + global client + assert (api_key := app.config.get("API_KEY")), "LINEAR_API_KEY must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + + if not client: + client = LinearApiClient(api_key, search_limit) + + return client diff --git a/linear/provider/provider.py b/linear/provider/provider.py new file mode 100644 index 000000000..032b6317c --- /dev/null +++ b/linear/provider/provider.py @@ -0,0 +1,20 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data): + serialized_data = [] + results = data.get("data", {}).get("searchIssues", {}).get("nodes", []) + for issue in results: + issue["text"] = issue.pop("description") + serialized_data.append({k: str(v) for k, v in issue.items()}) + return serialized_data + + +def search(query): + client = get_client() + + return serialize_results(client.search_issues_by_term(query)) diff --git a/linear/pyproject.toml b/linear/pyproject.toml new file mode 100644 index 000000000..93fe0ecdf --- /dev/null +++ b/linear/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "linear" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/medium/.env-template b/medium/.env-template new file mode 100644 index 000000000..f98537e24 --- /dev/null +++ b/medium/.env-template @@ -0,0 +1,5 @@ +MEDIUM_SEARCH_API_TYPE= +MEDIUM_API_TOKEN= +MEDIUM_GRAPHQL_ENTITIES=["users","tags","posts","publications","lists"] +MEDIUM_CONNECTOR_API_KEY= +MEDIUM_GRAPHQL_SEARCH_LIMIT=10 \ No newline at end of file diff --git a/medium/README.md b/medium/README.md new file mode 100644 index 000000000..fa16c9e30 --- /dev/null +++ b/medium/README.md @@ -0,0 +1,83 @@ +# Medium Connector + +Connects Cohere to Medium. +This connector uses two types of APIs for searching. +The REST API only allows searching the current user's publications, +The GraphQL API allows a more general search but please note +that this API is not an official API and may change in the future. + +## Configuration + +This connector requires the following environment variables: + +``` +MEDIUM_SEARCH_API_TYPE +``` + +This variable may contain the type of search to perform. It can be either `graphql` or `api`. +If `graphql` is used, the GraphQL API will be used to search for entities. +If `api` is used, the REST API will be used to search for entities. +If this variable is not set, the default is `graphql`. + +``` +MEDIUM_API_TOKEN +``` + +This variable should contain the API token for the Medium account. +This token will be used if the `MEDIUM_SEARCH_API_TYPE` is set to `api`. +To get the API token, use the +instructions [here](https://github.com/Medium/medium-api-docs#21-self-issued-access-tokens) + +``` +MEDIUM_GRAPHQL_ENTITIES +``` + +This variable may contain a comma-separated list of entities to search for. +The valid entities are `users`, `tags`, `posts`, `publications`, `lists`. +If this variable is not set, defaults is `["posts", "publications"]`. + +``` +MEDIUM_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +``` +MEDIUM_GRAPHQL_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return for a GraphQL search per entity. +If this variable is not set, the default is 10. + +This connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/medium/poetry.lock b/medium/poetry.lock new file mode 100644 index 000000000..e1b7f749a --- /dev/null +++ b/medium/poetry.lock @@ -0,0 +1,742 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + { file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04" }, + { file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" }, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.10.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + { file = "black-23.10.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:f8dc7d50d94063cdfd13c82368afd8588bac4ce360e4224ac399e769d6704e98" }, + { file = "black-23.10.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:f20ff03f3fdd2fd4460b4f631663813e57dc277e37fb216463f3b907aa5a9bdd" }, + { file = "black-23.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3d9129ce05b0829730323bdcb00f928a448a124af5acf90aa94d9aba6969604" }, + { file = "black-23.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:960c21555be135c4b37b7018d63d6248bdae8514e5c55b71e994ad37407f45b8" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:30b78ac9b54cf87bcb9910ee3d499d2bc893afd52495066c49d9ee6b21eee06e" }, + { file = "black-23.10.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:0e232f24a337fed7a82c1185ae46c56c4a6167fb0fe37411b43e876892c76699" }, + { file = "black-23.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31946ec6f9c54ed7ba431c38bc81d758970dd734b96b8e8c2b17a367d7908171" }, + { file = "black-23.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:c870bee76ad5f7a5ea7bd01dc646028d05568d33b0b09b7ecfc8ec0da3f3f39c" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:6901631b937acbee93c75537e74f69463adaf34379a04eef32425b88aca88a23" }, + { file = "black-23.10.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:481167c60cd3e6b1cb8ef2aac0f76165843a374346aeeaa9d86765fe0dd0318b" }, + { file = "black-23.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74892b4b836e5162aa0452393112a574dac85e13902c57dfbaaf388e4eda37c" }, + { file = "black-23.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:47c4510f70ec2e8f9135ba490811c071419c115e46f143e4dce2ac45afdcf4c9" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:76baba9281e5e5b230c9b7f83a96daf67a95e919c2dfc240d9e6295eab7b9204" }, + { file = "black-23.10.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:a3c2ddb35f71976a4cfeca558848c2f2f89abc86b06e8dd89b5a65c1e6c0f22a" }, + { file = "black-23.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db451a3363b1e765c172c3fd86213a4ce63fb8524c938ebd82919bf2a6e28c6a" }, + { file = "black-23.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:7fb5fc36bb65160df21498d5a3dd330af8b6401be3f25af60c6ebfe23753f747" }, + { file = "black-23.10.0-py3-none-any.whl", hash = "sha256:e223b731a0e025f8ef427dd79d8cd69c167da807f5710add30cdf131f13dd62e" }, + { file = "black-23.10.0.tar.gz", hash = "sha256:31b9f87b277a68d0e99d2905edae08807c007973eaa609da5f0c62def6b7c0bd" }, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + { file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9" }, + { file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + { file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d" }, + { file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786" }, + { file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df" }, + { file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c" }, + { file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e" }, + { file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a" }, + { file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884" }, + { file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2" }, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + { file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28" }, + { file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" }, +] + +[package.dependencies] +colorama = { version = "*", markers = "platform_system == \"Windows\"" } + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + { file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" }, + { file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c" }, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + { file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" }, + { file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" }, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + { file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36" }, + { file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646" }, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = { version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\"" } +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf" }, + { file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0" }, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + { file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0" }, + { file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033" }, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + { file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" }, + { file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4" }, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + { file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" }, + { file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417" }, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + { file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44" }, + { file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a" }, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" }, + { file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852" }, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema-4.19.1-py3-none-any.whl", hash = "sha256:cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e" }, + { file = "jsonschema-4.19.1.tar.gz", hash = "sha256:ec84cc37cfa703ef7cd4928db24f9cb31428a5d0fa77747b8b51a847458e0bbf" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + { file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1" }, + { file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb" }, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431" }, + { file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb" }, + { file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0" }, + { file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5" }, + { file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2" }, + { file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba" }, + { file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad" }, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + { file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d" }, + { file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" }, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + { file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" }, + { file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5" }, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + { file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20" }, + { file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" }, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + { file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e" }, + { file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3" }, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + { file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba" }, + { file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a" }, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + { file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a" }, + { file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d" }, + { file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515" }, + { file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290" }, + { file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924" }, + { file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007" }, + { file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc" }, + { file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673" }, + { file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b" }, + { file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741" }, + { file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28" }, + { file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9" }, + { file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0" }, + { file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4" }, + { file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54" }, + { file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df" }, + { file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c" }, + { file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585" }, + { file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa" }, + { file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3" }, + { file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba" }, + { file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867" }, + { file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696" }, + { file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735" }, + { file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6" }, + { file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206" }, + { file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8" }, + { file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0" }, + { file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c" }, + { file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5" }, + { file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c" }, + { file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486" }, + { file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43" }, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + { file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf" }, + { file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0" }, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + { file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f" }, + { file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" }, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.10.6" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + { file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6" }, + { file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d" }, + { file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9" }, + { file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063" }, + { file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad" }, + { file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069" }, + { file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80" }, + { file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066" }, + { file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281" }, + { file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116" }, + { file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6" }, + { file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9" }, + { file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d" }, + { file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586" }, + { file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02" }, + { file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53" }, + { file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13" }, + { file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b" }, + { file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801" }, + { file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1" }, + { file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5" }, + { file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647" }, + { file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3" }, + { file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d" }, + { file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487" }, + { file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977" }, + { file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403" }, + { file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971" }, + { file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50" }, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + { file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575" }, + { file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516" }, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + { file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" }, + { file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84" }, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + { file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" }, + { file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe" }, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/medium/provider/__init__.py b/medium/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/medium/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/medium/provider/app.py b/medium/provider/app.py new file mode 100644 index 000000000..0f620c991 --- /dev/null +++ b/medium/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Medium config error: {error}") + abort(502, f"Medium config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/medium/provider/client.py b/medium/provider/client.py new file mode 100644 index 000000000..6855f1b02 --- /dev/null +++ b/medium/provider/client.py @@ -0,0 +1,1338 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class MediumApiClient: + API_URL = "https://api.medium.com/v1" + USER_ENDPOINT = "/me" + PUBLICATIONS_ENDPOINT = "/publications" + USERS_ENDPOINT = "/users" + POSTS_ENDPOINT = "/posts" + GRAPHQL_ENDPOINT = "https://medium.com/_/graphql" + + def __init__( + self, + api_token, + use_graph_ql=False, + graphql_entities=["posts", "publications"], + search_limit=10, + ): + self.use_graph_ql = use_graph_ql + if use_graph_ql: + self.search_limit = search_limit + self.graphql_entities = graphql_entities + self.API_URL = self.GRAPHQL_ENDPOINT + self.headers = { + "graphql-operation": "SearchQuery", + "Content-Type": "application/json", + } + else: + self.headers = { + "Authorization": f"Bearer {api_token}", + "Content-Type": "application/json", + } + + def is_graph_ql_used(self): + return self.use_graph_ql + + def get(self, url, params={}): + response = requests.get(url, headers=self.headers, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def post(self, params={}): + response = requests.post(self.API_URL, headers=self.headers, json=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def get_user(self): + url = f"{self.API_URL}{self.USER_ENDPOINT}" + return self.get(url) + + def get_user_publications(self, user_id): + url = ( + f"{self.API_URL}{self.USERS_ENDPOINT}/{user_id}{self.PUBLICATIONS_ENDPOINT}" + ) + return self.get(url) + + def get_graphql_results(self, query): + ql_query = """ + query SearchQuery($query: String!, $pagingOptions: SearchPagingOptions!, $searchInCollection: Boolean!, $collectionDomainOrSlug: String!, $withUsers: Boolean!, $withTags: Boolean!, $withPosts: Boolean!, $withCollections: Boolean!, $withLists: Boolean!, $peopleSearchOptions: SearchOptions, $postsSearchOptions: SearchOptions, $tagsSearchOptions: SearchOptions, $publicationsSearchOptions: SearchOptions, $listsSearchOptions: SearchOptions) { + search(query: $query) @skip(if: $searchInCollection) { + __typename + ...Search_search + } + searchInCollection(query: $query, domainOrSlug: $collectionDomainOrSlug) @include(if: $searchInCollection) { + __typename + ...Search_search + } + } + + fragment Search_search on Search { + people(pagingOptions: $pagingOptions, algoliaOptions: $peopleSearchOptions) @include(if: $withUsers) { + ... on SearchPeople { + pagingInfo { + next { + limit + page + __typename + } + __typename + } + ...SearchPeople_people + __typename + } + __typename + } + tags(pagingOptions: $pagingOptions, algoliaOptions: $tagsSearchOptions) @include(if: $withTags) { + ... on SearchTag { + pagingInfo { + next { + limit + page + __typename + } + __typename + } + ...SearchTags_tags + __typename + } + __typename + } + posts(pagingOptions: $pagingOptions, algoliaOptions: $postsSearchOptions) @include(if: $withPosts) { + ... on SearchPost { + pagingInfo { + next { + limit + page + __typename + } + __typename + } + ...SearchPosts_posts + __typename + } + __typename + } + collections( + pagingOptions: $pagingOptions + algoliaOptions: $publicationsSearchOptions + ) @include(if: $withCollections) { + ... on SearchCollection { + pagingInfo { + next { + limit + page + __typename + } + __typename + } + ...SearchCollections_collections + __typename + } + __typename + } + catalogs(pagingOptions: $pagingOptions, algoliaOptions: $listsSearchOptions) @include(if: $withLists) { + ... on SearchCatalog { + pagingInfo { + next { + limit + page + __typename + } + __typename + } + ...SearchLists_catalogs + __typename + } + __typename + } + __typename + } + + fragment SearchPeople_people on SearchPeople { + items { + __typename + ... on User { + algoliaObjectId + __typename + id + } + ...UserFollowInline_user + } + queryId + __typename + } + + fragment UserFollowInline_user on User { + id + name + bio + mediumMemberAt + ...UserAvatar_user + ...UserFollowButton_user + ...userUrl_user + ...useIsVerifiedBookAuthor_user + __typename + } + + fragment UserAvatar_user on User { + __typename + id + imageId + mediumMemberAt + membership { + tier + __typename + id + } + name + username + ...userUrl_user + } + + fragment userUrl_user on User { + __typename + id + customDomainState { + live { + domain + __typename + } + __typename + } + hasSubdomain + username + } + + fragment UserFollowButton_user on User { + ...UserFollowButtonSignedIn_user + ...UserFollowButtonSignedOut_user + __typename + id + } + + fragment UserFollowButtonSignedIn_user on User { + id + name + __typename + } + + fragment UserFollowButtonSignedOut_user on User { + id + ...SusiClickable_user + __typename + } + + fragment SusiClickable_user on User { + ...SusiContainer_user + __typename + id + } + + fragment SusiContainer_user on User { + ...SignInOptions_user + ...SignUpOptions_user + __typename + id + } + + fragment SignInOptions_user on User { + id + name + __typename + } + + fragment SignUpOptions_user on User { + id + name + __typename + } + + fragment useIsVerifiedBookAuthor_user on User { + verifications { + isBookAuthor + __typename + } + __typename + id + } + + fragment SearchTags_tags on SearchTag { + items { + id + algoliaObjectId + ...TopicPill_tag + __typename + } + queryId + __typename + } + + fragment TopicPill_tag on Tag { + __typename + id + displayTitle + normalizedTagSlug + } + + fragment SearchPosts_posts on SearchPost { + items { + id + algoliaObjectId + ...PostPreview_post + __typename + } + queryId + __typename + } + + fragment PostPreview_post on Post { + id + creator { + ...PostPreview_user + __typename + id + } + collection { + ...CardByline_collection + ...ExpandablePostByline_collection + __typename + id + } + ...InteractivePostBody_postPreview + firstPublishedAt + isLocked + isSeries + latestPublishedAt + inResponseToCatalogResult { + __typename + } + pinnedAt + pinnedByCreatorAt + previewImage { + id + focusPercentX + focusPercentY + __typename + } + readingTime + sequence { + slug + __typename + } + title + uniqueSlug + ...CardByline_post + ...PostFooterActionsBar_post + ...InResponseToEntityPreview_post + ...PostScrollTracker_post + ...HighDensityPreview_post + __typename + } + + fragment PostPreview_user on User { + __typename + name + username + ...CardByline_user + ...ExpandablePostByline_user + id + } + + fragment CardByline_user on User { + __typename + id + name + username + mediumMemberAt + socialStats { + followerCount + __typename + } + ...useIsVerifiedBookAuthor_user + ...userUrl_user + ...UserMentionTooltip_user + } + + fragment UserMentionTooltip_user on User { + id + name + username + bio + imageId + mediumMemberAt + membership { + tier + __typename + id + } + ...UserAvatar_user + ...UserFollowButton_user + ...useIsVerifiedBookAuthor_user + __typename + } + + fragment ExpandablePostByline_user on User { + __typename + id + name + imageId + ...userUrl_user + ...useIsVerifiedBookAuthor_user + } + + fragment CardByline_collection on Collection { + name + ...collectionUrl_collection + __typename + id + } + + fragment collectionUrl_collection on Collection { + id + domain + slug + __typename + } + + fragment ExpandablePostByline_collection on Collection { + __typename + id + name + domain + slug + } + + fragment InteractivePostBody_postPreview on Post { + extendedPreviewContent( + truncationConfig: {previewParagraphsWordCountThreshold: 400, minimumWordLengthForTruncation: 150, truncateAtEndOfSentence: true, showFullImageCaptions: true, shortformPreviewParagraphsWordCountThreshold: 30, shortformMinimumWordLengthForTruncation: 30} + ) { + bodyModel { + ...PostBody_bodyModel + __typename + } + isFullContent + __typename + } + __typename + id + } + + fragment PostBody_bodyModel on RichText { + sections { + name + startIndex + textLayout + imageLayout + backgroundImage { + id + originalHeight + originalWidth + __typename + } + videoLayout + backgroundVideo { + videoId + originalHeight + originalWidth + previewImageId + __typename + } + __typename + } + paragraphs { + id + ...PostBodySection_paragraph + __typename + } + ...normalizedBodyModel_richText + __typename + } + + fragment PostBodySection_paragraph on Paragraph { + name + ...PostBodyParagraph_paragraph + __typename + id + } + + fragment PostBodyParagraph_paragraph on Paragraph { + name + type + ...ImageParagraph_paragraph + ...TextParagraph_paragraph + ...IframeParagraph_paragraph + ...MixtapeParagraph_paragraph + ...CodeBlockParagraph_paragraph + __typename + id + } + + fragment ImageParagraph_paragraph on Paragraph { + href + layout + metadata { + id + originalHeight + originalWidth + focusPercentX + focusPercentY + alt + __typename + } + ...Markups_paragraph + ...ParagraphRefsMapContext_paragraph + ...PostAnnotationsMarker_paragraph + __typename + id + } + + fragment Markups_paragraph on Paragraph { + name + text + hasDropCap + dropCapImage { + ...MarkupNode_data_dropCapImage + __typename + id + } + markups { + ...Markups_markup + __typename + } + __typename + id + } + + fragment MarkupNode_data_dropCapImage on ImageMetadata { + ...DropCap_image + __typename + id + } + + fragment DropCap_image on ImageMetadata { + id + originalHeight + originalWidth + __typename + } + + fragment Markups_markup on Markup { + type + start + end + href + anchorType + userId + linkMetadata { + httpStatus + __typename + } + __typename + } + + fragment ParagraphRefsMapContext_paragraph on Paragraph { + id + name + text + __typename + } + + fragment PostAnnotationsMarker_paragraph on Paragraph { + ...PostViewNoteCard_paragraph + __typename + id + } + + fragment PostViewNoteCard_paragraph on Paragraph { + name + __typename + id + } + + fragment TextParagraph_paragraph on Paragraph { + type + hasDropCap + codeBlockMetadata { + mode + lang + __typename + } + ...Markups_paragraph + ...ParagraphRefsMapContext_paragraph + __typename + id + } + + fragment IframeParagraph_paragraph on Paragraph { + type + iframe { + mediaResource { + id + iframeSrc + iframeHeight + iframeWidth + title + __typename + } + __typename + } + layout + ...Markups_paragraph + __typename + id + } + + fragment MixtapeParagraph_paragraph on Paragraph { + type + mixtapeMetadata { + href + mediaResource { + mediumCatalog { + id + __typename + } + __typename + } + __typename + } + ...GenericMixtapeParagraph_paragraph + __typename + id + } + + fragment GenericMixtapeParagraph_paragraph on Paragraph { + text + mixtapeMetadata { + href + thumbnailImageId + __typename + } + markups { + start + end + type + href + __typename + } + __typename + id + } + + fragment CodeBlockParagraph_paragraph on Paragraph { + codeBlockMetadata { + lang + mode + __typename + } + __typename + id + } + + fragment normalizedBodyModel_richText on RichText { + paragraphs { + ...normalizedBodyModel_richText_paragraphs + __typename + } + sections { + startIndex + ...getSectionEndIndex_section + __typename + } + ...getParagraphStyles_richText + ...getParagraphSpaces_richText + __typename + } + + fragment normalizedBodyModel_richText_paragraphs on Paragraph { + markups { + ...normalizedBodyModel_richText_paragraphs_markups + __typename + } + codeBlockMetadata { + lang + mode + __typename + } + ...getParagraphHighlights_paragraph + ...getParagraphPrivateNotes_paragraph + __typename + id + } + + fragment normalizedBodyModel_richText_paragraphs_markups on Markup { + type + __typename + } + + fragment getParagraphHighlights_paragraph on Paragraph { + name + __typename + id + } + + fragment getParagraphPrivateNotes_paragraph on Paragraph { + name + __typename + id + } + + fragment getSectionEndIndex_section on Section { + startIndex + __typename + } + + fragment getParagraphStyles_richText on RichText { + paragraphs { + text + type + __typename + } + sections { + ...getSectionEndIndex_section + __typename + } + __typename + } + + fragment getParagraphSpaces_richText on RichText { + paragraphs { + layout + metadata { + originalHeight + originalWidth + id + __typename + } + type + ...paragraphExtendsImageGrid_paragraph + __typename + } + ...getSeriesParagraphTopSpacings_richText + ...getPostParagraphTopSpacings_richText + __typename + } + + fragment paragraphExtendsImageGrid_paragraph on Paragraph { + layout + type + __typename + id + } + + fragment getSeriesParagraphTopSpacings_richText on RichText { + paragraphs { + id + __typename + } + sections { + ...getSectionEndIndex_section + __typename + } + __typename + } + + fragment getPostParagraphTopSpacings_richText on RichText { + paragraphs { + type + layout + text + codeBlockMetadata { + lang + mode + __typename + } + __typename + } + sections { + ...getSectionEndIndex_section + __typename + } + __typename + } + + fragment CardByline_post on Post { + ...DraftStatus_post + ...Star_post + ...shouldShowPublishedInStatus_post + __typename + id + } + + fragment DraftStatus_post on Post { + id + pendingCollection { + id + creator { + id + __typename + } + ...BoldCollectionName_collection + __typename + } + statusForCollection + creator { + id + __typename + } + isPublished + __typename + } + + fragment BoldCollectionName_collection on Collection { + id + name + __typename + } + + fragment Star_post on Post { + id + creator { + id + __typename + } + __typename + } + + fragment shouldShowPublishedInStatus_post on Post { + statusForCollection + isPublished + __typename + id + } + + fragment PostFooterActionsBar_post on Post { + id + visibility + allowResponses + postResponses { + count + __typename + } + isLimitedState + creator { + id + __typename + } + collection { + id + __typename + } + ...MultiVote_post + ...PostSharePopover_post + ...OverflowMenuButtonWithNegativeSignal_post + ...PostPageBookmarkButton_post + __typename + } + + fragment MultiVote_post on Post { + id + creator { + id + ...SusiClickable_user + __typename + } + isPublished + ...SusiClickable_post + collection { + id + slug + __typename + } + isLimitedState + ...MultiVoteCount_post + __typename + } + + fragment SusiClickable_post on Post { + id + mediumUrl + ...SusiContainer_post + __typename + } + + fragment SusiContainer_post on Post { + id + __typename + } + + fragment MultiVoteCount_post on Post { + id + __typename + } + + fragment PostSharePopover_post on Post { + id + mediumUrl + title + isPublished + isLocked + ...usePostUrl_post + ...FriendLink_post + __typename + } + + fragment usePostUrl_post on Post { + id + creator { + ...userUrl_user + __typename + id + } + collection { + id + domain + slug + __typename + } + isSeries + mediumUrl + sequence { + slug + __typename + } + uniqueSlug + __typename + } + + fragment FriendLink_post on Post { + id + ...SusiClickable_post + ...useCopyFriendLink_post + __typename + } + + fragment useCopyFriendLink_post on Post { + ...usePostUrl_post + __typename + id + } + + fragment OverflowMenuButtonWithNegativeSignal_post on Post { + id + visibility + ...OverflowMenuWithNegativeSignal_post + __typename + } + + fragment OverflowMenuWithNegativeSignal_post on Post { + id + creator { + id + __typename + } + collection { + id + __typename + } + ...OverflowMenuItemUndoClaps_post + ...AddToCatalogBase_post + __typename + } + + fragment OverflowMenuItemUndoClaps_post on Post { + id + clapCount + ...ClapMutation_post + __typename + } + + fragment ClapMutation_post on Post { + __typename + id + clapCount + ...MultiVoteCount_post + } + + fragment AddToCatalogBase_post on Post { + id + isPublished + __typename + } + + fragment PostPageBookmarkButton_post on Post { + ...AddToCatalogBookmarkButton_post + __typename + id + } + + fragment AddToCatalogBookmarkButton_post on Post { + ...AddToCatalogBase_post + __typename + id + } + + fragment InResponseToEntityPreview_post on Post { + id + inResponseToEntityType + __typename + } + + fragment PostScrollTracker_post on Post { + id + collection { + id + __typename + } + sequence { + sequenceId + __typename + } + __typename + } + + fragment HighDensityPreview_post on Post { + id + title + previewImage { + id + focusPercentX + focusPercentY + __typename + } + extendedPreviewContent( + truncationConfig: {previewParagraphsWordCountThreshold: 400, minimumWordLengthForTruncation: 150, truncateAtEndOfSentence: true, showFullImageCaptions: true, shortformPreviewParagraphsWordCountThreshold: 30, shortformMinimumWordLengthForTruncation: 30} + ) { + subtitle + __typename + } + ...HighDensityFooter_post + __typename + } + + fragment HighDensityFooter_post on Post { + id + readingTime + tags { + ...TopicPill_tag + __typename + } + ...BookmarkButton_post + ...ExpandablePostCardOverflowButton_post + ...OverflowMenuButtonWithNegativeSignal_post + __typename + } + + fragment BookmarkButton_post on Post { + visibility + ...SusiClickable_post + ...AddToCatalogBookmarkButton_post + __typename + id + } + + fragment ExpandablePostCardOverflowButton_post on Post { + creator { + id + __typename + } + ...ExpandablePostCardReaderButton_post + __typename + id + } + + fragment ExpandablePostCardReaderButton_post on Post { + id + collection { + id + __typename + } + creator { + id + __typename + } + clapCount + ...ClapMutation_post + __typename + } + + fragment SearchCollections_collections on SearchCollection { + items { + id + algoliaObjectId + ...CollectionFollowInline_collection + __typename + } + queryId + __typename + } + + fragment CollectionFollowInline_collection on Collection { + id + name + domain + shortDescription + slug + ...CollectionAvatar_collection + ...CollectionFollowButton_collection + __typename + } + + fragment CollectionAvatar_collection on Collection { + name + avatar { + id + __typename + } + ...collectionUrl_collection + __typename + id + } + + fragment CollectionFollowButton_collection on Collection { + __typename + id + name + slug + ...collectionUrl_collection + ...SusiClickable_collection + } + + fragment SusiClickable_collection on Collection { + ...SusiContainer_collection + __typename + id + } + + fragment SusiContainer_collection on Collection { + name + ...SignInOptions_collection + ...SignUpOptions_collection + __typename + id + } + + fragment SignInOptions_collection on Collection { + id + name + __typename + } + + fragment SignUpOptions_collection on Collection { + id + name + __typename + } + + fragment SearchLists_catalogs on SearchCatalog { + items { + id + algoliaObjectId + ...CatalogsListItem_catalog + __typename + } + queryId + __typename + } + + fragment CatalogsListItem_catalog on Catalog { + id + name + predefined + visibility + creator { + imageId + name + ...userUrl_user + ...useIsVerifiedBookAuthor_user + __typename + id + } + ...getCatalogSlugId_Catalog + ...formatItemsCount_catalog + ...CatalogsListItemCovers_catalog + ...CatalogContentMenu_catalog + ...SaveCatalogButton_catalog + __typename + } + + fragment getCatalogSlugId_Catalog on Catalog { + id + name + __typename + } + + fragment formatItemsCount_catalog on Catalog { + postItemsCount + __typename + id + } + + fragment CatalogsListItemCovers_catalog on Catalog { + listItemsConnection: itemsConnection(pagingOptions: {limit: 10}) { + items { + catalogItemId + ...PreviewCatalogCovers_catalogItemV2 + __typename + } + __typename + } + __typename + id + } + + fragment PreviewCatalogCovers_catalogItemV2 on CatalogItemV2 { + catalogItemId + entity { + __typename + ... on Post { + visibility + previewImage { + id + alt + __typename + } + __typename + id + } + } + __typename + } + + fragment CatalogContentMenu_catalog on Catalog { + creator { + ...userUrl_user + __typename + id + } + ...CatalogContentNonCreatorMenu_catalog + ...CatalogContentCreatorMenu_catalog + __typename + id + } + + fragment CatalogContentNonCreatorMenu_catalog on Catalog { + id + viewerEdge { + clapCount + __typename + id + } + ...catalogUrl_catalog + __typename + } + + fragment catalogUrl_catalog on Catalog { + id + predefined + ...getCatalogSlugId_Catalog + creator { + ...userUrl_user + __typename + id + } + __typename + } + + fragment CatalogContentCreatorMenu_catalog on Catalog { + id + visibility + name + description + type + postItemsCount + predefined + disallowResponses + creator { + ...userUrl_user + __typename + id + } + ...UpdateCatalogDialog_catalog + ...catalogUrl_catalog + __typename + } + + fragment UpdateCatalogDialog_catalog on Catalog { + id + name + description + visibility + type + __typename + } + + fragment SaveCatalogButton_catalog on Catalog { + id + creator { + id + username + __typename + } + viewerEdge { + id + isFollowing + __typename + } + ...getCatalogSlugId_Catalog + __typename + } + """ + variables = { + "query": query, + "pagingOptions": {"limit": self.search_limit, "page": 0}, + "withUsers": "users" in self.graphql_entities, + "withTags": "tags" in self.graphql_entities, + "withPosts": "posts" in self.graphql_entities, + "withCollections": "publications" in self.graphql_entities, + "withLists": "lists" in self.graphql_entities, + "peopleSearchOptions": { + "filters": "highQualityUser:true OR writtenByHighQulityUser:true", + "numericFilters": "peopleType!=2", + "clickAnalytics": True, + "analyticsTags": ["web-main-content"], + }, + "postsSearchOptions": { + "filters": "writtenByHighQualityUser:true", + "clickAnalytics": True, + "analyticsTags": ["web-main-content"], + }, + "publicationsSearchOptions": { + "clickAnalytics": True, + "analyticsTags": ["web-main-content"], + }, + "tagsSearchOptions": { + "numericFilters": "postCount>=1", + "clickAnalytics": True, + "analyticsTags": ["web-main-content"], + }, + "listsSearchOptions": { + "clickAnalytics": True, + "analyticsTags": ["web-main-content"], + }, + "searchInCollection": False, + "collectionDomainOrSlug": "medium.com", + } + return self.post( + {"query": ql_query, "variables": variables, "operationName": "SearchQuery"} + ) + + +def get_client() -> MediumApiClient: + global client + assert (api_token := app.config.get("API_TOKEN")), "MEDIUM_API_TOKEN must be set" + + search_api = app.config.get("SEARCH_API_TYPE", "graphql") + searchable_entities = app.config.get("GRAPHQL_ENTITIES", ["posts", "publications"]) + search_limit = app.config.get("SEARCH_LIMIT", 10) + use_graph_ql = search_api == "graphql" + + if not client: + client = MediumApiClient( + api_token, use_graph_ql, searchable_entities, search_limit + ) + + return client diff --git a/medium/provider/provider.py b/medium/provider/provider.py new file mode 100644 index 000000000..aac2d3c65 --- /dev/null +++ b/medium/provider/provider.py @@ -0,0 +1,115 @@ +import logging +from functools import reduce + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def get_dict_value_by_dotted_key(dictionary, keys, default=None): + return reduce( + lambda d, key: d.get(key, default) if isinstance(d, dict) else default, + keys.split("."), + dictionary, + ) + + +def search_publications(publications, query): + results = [] + keywords = query.split(" ") + if "data" in publications: + for publication in publications["data"]: + if any( + keyword.lower() in publication["name"].lower() for keyword in keywords + ) or any( + keyword.lower() in publication["description"].lower() + for keyword in keywords + ): + publication["title"] = publication.pop("name") + publication["text"] = publication.pop("description") + results.append({k: str(v) for k, v in publication.items()}) + + return results + + +def serialize_graphql_results(data): + results = [] + if peoples := get_dict_value_by_dotted_key(data, "data.search.people.items"): + for people in peoples: + item_to_append = people + item_to_append["title"] = people.pop("name") + item_to_append["text"] = people.pop("bio") + url = get_dict_value_by_dotted_key(people, "customDomainState.live.domain") + if url: + item_to_append["url"] = f"https://{url}" + else: + item_to_append["url"] = f"https://medium.com/@{people['username']}" + results.append({k: str(v) for k, v in item_to_append.items()}) + if tags := get_dict_value_by_dotted_key(data, "data.search.tags.items"): + for tag in tags: + item_to_append = tag + item_to_append["title"] = tag.pop("displayTitle") + item_to_append["text"] = tag.pop("id") + url = tag.pop("normalizedTagSlug", None) + if url: + item_to_append["url"] = f"https://medium.com/tag/{url}" + results.append({k: str(v) for k, v in item_to_append.items()}) + if posts := get_dict_value_by_dotted_key(data, "data.search.posts.items"): + for post in posts: + item_to_append = post + item_to_append["title"] = post.pop("title") + paragraphs = get_dict_value_by_dotted_key( + post, "extendedPreviewContent.bodyModel.paragraphs" + ) + if paragraphs: + all_text = "" + for paragraph in paragraphs: + all_text += paragraph["text"] + item_to_append["text"] = all_text + url = post.get("mediumUrl", None) + if url: + item_to_append["url"] = url + results.append({k: str(v) for k, v in item_to_append.items()}) + if publications := get_dict_value_by_dotted_key( + data, "data.search.collections.items" + ): + for publication in publications: + item_to_append = publication + item_to_append["title"] = publication.pop("name") + item_to_append["text"] = publication.pop("shortDescription") + url = publication.pop("slug", None) + if url: + item_to_append["url"] = f"https://medium.com/{url}" + results.append({k: str(v) for k, v in item_to_append.items()}) + if catalogs := get_dict_value_by_dotted_key(data, "data.search.catalogs.items"): + for catalog in catalogs: + item_to_append = catalog + item_to_append["title"] = catalog.pop("name") + if "text" not in item_to_append: + if text := catalog.get("description"): + item_to_append["text"] = text + else: + item_to_append["text"] = item_to_append["title"] + + creator_name = catalog["creator"].pop("username", None) + if creator_name: + item_to_append[ + "url" + ] = f"https://medium.com/@{creator_name}/list/{catalog.get('id')}" + results.append({k: str(v) for k, v in item_to_append.items()}) + + return results + + +def search(query): + client = get_client() + if not client.is_graph_ql_used(): + user = client.get_user() + if not user: + return [] + user_publications = client.get_user_publications(user["data"]["id"]) + search_results = search_publications(user_publications, query) + else: + search_results = serialize_graphql_results(client.get_graphql_results(query)) + + return search_results diff --git a/medium/pyproject.toml b/medium/pyproject.toml new file mode 100644 index 000000000..fae7ed89a --- /dev/null +++ b/medium/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "medium" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/milvus/.env-template b/milvus/.env-template new file mode 100644 index 000000000..cb817e1dd --- /dev/null +++ b/milvus/.env-template @@ -0,0 +1,6 @@ +MILVUS_CLUSTER_HOST=localhost +MILVUS_CLUSTER_PORT=19530 +MILVUS_COLLECTION=bbq +MILVUS_VECTOR_FIELD=summary +MILVUS_COHERE_APIKEY= +MILVUS_COHERE_EMBED_MODEL=embed-english-light-v2.0 diff --git a/milvus/README.md b/milvus/README.md new file mode 100644 index 000000000..4d946803b --- /dev/null +++ b/milvus/README.md @@ -0,0 +1,57 @@ +# Milvus Quick Start Connector + +This package is a utility for connecting Cohere to a Milvus database. + +It relies on the `pymilvus` package for managing establishing the connection and performing vector searches. This implementation also uses Cohere's embedding API to generate search vectors. + +## Limitations + +Currently the search is performed by embedding the search query with Cohere's embedding API. + +## Configuration + +The search connector requires that an environment variable `MILVUS_COHERE_APIKEY` be set in order to run. This environment variable can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the other environment variable that are used by this demo. + +Finally, to protect this connector from abuse, the `MILVUS_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Start the test Milvus cluster and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +After running the `data-loader`, the Milvus containers will continue to run in the background. If you need to start them again later, the Milvus cluster can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Finally, start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/milvus/dev/bbq_embeddings.json b/milvus/dev/bbq_embeddings.json new file mode 100644 index 000000000..ec01f5e0a --- /dev/null +++ b/milvus/dev/bbq_embeddings.json @@ -0,0 +1 @@ +{"B08Z7K4VZ9": {"id": "B08Z7K4VZ9", "original": "Brand: Royal Gourmet\nName: Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver\nDescription: \nFeatures: High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance.\nSpacious Cooking Area: Consists of primary cooking area \u2013 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space \u2013 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering.\nSear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups.\nGreat Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time.\nHassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.\n", "embedding": [-1.4560547, 0.49072266, 1.4677734, 0.38012695, 0.048339844, 1.8447266, 0.61621094, -1.40625, -1.2666016, 1.0966797, 1.3369141, -1.1396484, -0.24719238, -2.6347656, 0.77978516, -0.06112671, 0.97314453, 0.7861328, 1.1435547, -0.39819336, 0.6015625, 1.5009766, 3.5410156, 0.16186523, 0.28051758, 2.1074219, 2.7382812, -3.9375, -0.071899414, -0.7714844, 2.7636719, 0.1809082, 0.3383789, 2.0058594, -3.1191406, -1.8769531, -2.0683594, 0.42578125, -2.7832031, 1.1279297, 0.7519531, -1.4482422, 0.54003906, 1.4824219, -3.0820312, -0.32421875, -0.13122559, -0.023834229, -2.0390625, 0.028366089, 0.7949219, 1.2373047, -1.1464844, 0.7470703, -0.39233398, 2.0097656, 1.9140625, -1.0664062, 0.9814453, 0.113708496, 3.2695312, -0.6274414, -2.5585938, -0.58203125, -1.1308594, -0.99853516, -0.24169922, 0.15808105, 0.14672852, -0.8432617, 2.2050781, -0.5449219, -1.0019531, 0.68652344, -0.29736328, -1.0068359, -1.5986328, 2.5976562, 0.79296875, -0.16418457, -3.0625, 1.9433594, 1.0605469, -2.59375, -0.5756836, 0.95410156, -0.24780273, -1.4238281, 1.3857422, 1.2958984, -0.00983429, 2.8183594, -3.1835938, -3.6542969, 2.5703125, -1.5888672, 2.0351562, 1.7324219, 0.21740723, 1.1015625, -0.34960938, -1.3945312, -2.6582031, -1.0107422, -0.56689453, -2.3203125, 1.3642578, 0.6118164, -3.7304688, -2.0644531, -1.75, 0.7661133, 1.1542969, -0.31518555, 0.99316406, -0.022247314, -0.2298584, 3.2109375, 1.5566406, 0.6357422, 2.0878906, -0.9399414, 1.2773438, -1.5117188, 0.042388916, 1.3417969, -1.5, 2.640625, 6.21875, -2.3691406, -1.3769531, -1.8994141, 2.6152344, -0.8305664, -0.5488281, -1.8271484, -2.203125, -0.98535156, -3.5097656, 0.56152344, -2.3066406, 1.5634766, 1.3779297, -0.11004639, -3.1074219, -0.44750977, -0.5307617, 0.91064453, -0.28222656, -0.6411133, -0.58154297, -1.4453125, 2.1835938, -3.3496094, 1.9169922, -1.2363281, -0.7963867, -1.5341797, 3.2753906, 0.9194336, 1.1328125, -2.3359375, -0.7089844, 1.9082031, -1.5058594, -0.55566406, -1.1318359, 3.0800781, 0.82714844, 1.1298828, 0.27783203, -1.4707031, 0.2770996, -0.28100586, 0.28149414, -1.1806641, -0.9838867, 2.0585938, 1.2363281, -0.49414062, -1.4101562, -3.8632812, -0.46923828, 1.0615234, 1.3613281, -1.0048828, 1.3613281, 1.3085938, 1.0751953, -1.0693359, 1.0683594, -0.060699463, 0.72314453, 0.43115234, -0.39868164, -0.41015625, -0.8935547, -1.3935547, -0.6591797, -0.03149414, -0.1538086, -0.17248535, -0.053344727, 1.1513672, -3.1621094, -4.6054688, -0.13232422, -3.984375, 1.5439453, 0.9370117, 2.3691406, -2.2304688, 0.18664551, -1.6640625, -0.035095215, -2.3671875, 2.2675781, -1.171875, 2.1972656, 1.7880859, -0.3112793, 0.52685547, 1.6787109, 1.0712891, 1.0078125, 0.9277344, 0.20874023, 1.6347656, -2.0253906, -0.99609375, 2.4257812, -0.064697266, 0.15148926, 1.34375, -1.0185547, 1.6992188, -1.2451172, -1.9306641, -0.35986328, -0.48486328, -0.52685547, -1.2294922, -0.64404297, -1.2304688, 0.5019531, 0.78125, -1.8076172, 1.9746094, 0.7758789, 0.91259766, -0.40454102, 1.5341797, 0.6044922, 0.09112549, -0.30297852, -0.33666992, -1.2314453, 0.7324219, -0.97265625, -2.2890625, 2.4179688, -1.1865234, -0.75390625, -0.58935547, 0.0848999, -2.2695312, 3.1796875, 1.0644531, -2.171875, -1.5205078, -0.28759766, -0.69384766, 2.1542969, -1.2519531, 0.9658203, 2.6445312, -1.3476562, 3.4589844, -1.6210938, 1.4677734, -0.096069336, -1.6523438, 1.8359375, -2.3164062, -0.22424316, 0.8461914, 1.1757812, -0.77734375, 0.050811768, 0.66845703, 4.0742188, -0.98095703, -3.2695312, 2.578125, -1.1347656, -1.7099609, 2.4726562, -0.7348633, 0.09710693, 0.6015625, 1.8789062, 0.07171631, 1.7841797, 0.19335938, -1.3916016, -1.96875, 0.50683594, -1.3154297, -1.4580078, 0.7783203, 0.07196045, -0.96972656, -2.1191406, 0.43823242, -1.6289062, -0.66503906, 3.234375, -2.3984375, 1.1943359, 0.5522461, 1.6552734, 1.4960938, -1.6582031, -1.5800781, -0.13562012, 0.47045898, -1.7070312, -0.61376953, -0.00894165, 0.122802734, 0.19396973, -0.4248047, -0.5527344, -1.4345703, -2.609375, -0.5263672, -4.1289062, -2.5097656, -0.5317383, -2.0039062, -1.1757812, 0.71435547, -3.5, -0.43701172, -0.31958008, -4.1367188, -1.640625, -2.140625, -1.2177734, 0.03643799, 0.27124023, 0.10180664, 0.082214355, -2.6992188, 0.49047852, -1.2773438, -1.2675781, 0.5205078, 0.30371094, -0.59375, -0.30371094, -1.4501953, -0.72314453, 1.9824219, 0.8286133, -1.140625, -1.3154297, -3.2519531, 0.61816406, -1.9316406, 0.11706543, -1.0195312, 1.4003906, -2.5878906, -1.5078125, -0.8105469, -0.5996094, 3.5820312, -0.3388672, 1.7617188, 0.35546875, 1.328125, 1.1708984, 0.4958496, -2.0019531, -1.0410156, 1.3193359, -3.3378906, -3.2597656, -3.234375, 0.41235352, -0.46069336, -0.18933105, -0.4272461, 2.5214844, -1.2304688, 0.89941406, -0.9003906, -0.8720703, 0.45336914, 1.4765625, -0.73291016, -1.0058594, -2.2617188, -0.7734375, -0.9682617, -0.69628906, 0.09442139, 2.6855469, -1.8271484, 1.3730469, 0.74316406, -0.060638428, 0.6748047, -1.1972656, -1.6777344, 3.6132812, 0.8144531, -1.9980469, 2.7617188, -1.4130859, -3.1445312, -0.9082031, 0.19335938, 2.5332031, 1.5078125, 3.046875, 0.99853516, 1.6962891, 0.62060547, 1.9570312, 0.84228516, -0.0625, -0.5722656, 2.8320312, -0.9326172, -2.3652344, 0.9609375, 2.6992188, -1.5068359, -1.2294922, 2.8691406, 1.7724609, 3.6367188, 1.6318359, 0.9897461, 0.49047852, -1.3613281, 2.2792969, 1.5654297, 0.7548828, -0.01789856, -1.0839844, 1.0927734, -2.2226562, 1.1738281, 2.6015625, -0.3244629, 2.265625, 1.2119141, 0.23168945, -0.44848633, 0.28076172, 1.6142578, 2.6757812, 0.85595703, 1.7177734, -0.27001953, -0.1149292, -0.2310791, -1.3652344, 0.34521484, -2.9980469, -0.06359863, 1.7529297, -0.46850586, 1.09375, 0.8129883, 1.0263672, 0.35327148, 0.14624023, 0.01651001, -1.5742188, -0.2052002, 1.2226562, 0.15979004, 0.421875, -2.203125, 1.2939453, -1.4111328, -1.1337891, 0.02532959, 3.7578125, -2.2324219, -0.9741211, 2.1796875, -0.12817383, -1.0263672, 1.5058594, 0.35009766, -1.5517578, 1.1816406, -2.4863281, 0.82177734, 0.24816895, -1.5537109, -0.010726929, -1.1318359, -0.027755737, 0.35058594, 0.96875, 0.26513672, 1.7304688, -0.9169922, 0.027069092, -3.9082031, 0.08154297, -0.077819824, -1.6210938, -0.8652344, 2.5390625, 0.9321289, 1.1474609, -1.2431641, 3.1386719, -0.070739746, -0.69140625, 1.7353516, -3.7753906, -2.015625, -3.7832031, -4.1835938, 0.65771484, -1.2167969, -1.6269531, 1.8681641, 0.5629883, -0.14160156, 1.4980469, -0.3100586, -1.4150391, -0.81591797, -1.3408203, -0.25805664, -0.3659668, -0.9682617, 0.6176758, -0.14648438, -1.8222656, -2.7246094, -0.30371094, 0.0149002075, 1.5, 1.9013672, -2.6757812, 1.9628906, -2.5117188, 0.14428711, -0.47631836, -1.5195312, 1.9599609, -1.8037109, -0.11999512, -2.9414062, 1.3203125, 0.38452148, -0.6411133, 1.8769531, 1.5859375, 0.09802246, -2.7714844, -1.9541016, 1.3613281, 3.6855469, -0.5830078, -1.953125, -1.6865234, 1.2011719, 0.21289062, -2.15625, -0.09173584, -1.5546875, -1.3427734, -0.55126953, 3.0917969, 1.6806641, 1.4072266, 1.0136719, -2.1484375, -0.32617188, 0.20788574, -1.8095703, -1.6777344, -1.0927734, 0.6958008, 0.24255371, -0.85791016, -1.5234375, -0.19104004, -1.8710938, -0.33398438, -3.0214844, 2.9082031, 2.3417969, 0.93115234, 2.4394531, -1.3984375, 0.21557617, 0.4819336, 0.32202148, -1.1474609, 1.5107422, 0.9423828, -0.53759766, 1.3339844, -0.0602417, -2.0332031, 0.2220459, 2.4140625, -1.7265625, -0.11456299, -0.11114502, 0.47973633, -0.5493164, -0.08251953, 2.0273438, -0.82470703, 2.9726562, -0.13183594, -0.5234375, 0.70703125, 0.26904297, -1.6240234, 0.7675781, -0.074401855, 0.0647583, 0.013809204, 1.6816406, 1.4775391, -0.37719727, -0.080322266, -1.265625, 2.9550781, 0.16369629, 0.8833008, -0.5991211, 1.5683594, -0.23486328, -1.9804688, 1.4990234, 2.7480469, -0.37304688, 3.5976562, 1.8818359, -2.8710938, 1.7324219, 0.37304688, -2.2246094, -0.1472168, 0.60302734, 0.58203125, 0.6567383, 0.7138672, -2.9589844, -1.2685547, 1.7353516, -0.58154297, 0.6621094, -0.14660645, -1.9882812, 0.7182617, -0.5415039, -0.19226074, -0.84765625, 0.9550781, -1.5566406, 0.19580078, 0.55859375, -1.1630859, 0.8847656, 2.21875, -0.30395508, -1.4814453, 3.4589844, -0.09991455, 1.7128906, -0.19604492, -0.07952881, -2.1132812, -0.05606079, 4.0859375, 0.6503906, 1.8916016, 1.0908203, 1.4433594, -2.2753906, 0.8623047, -2.5332031, 4.1328125, -1.0546875, -1.0488281, 2.96875, -4.375, 0.5317383, -2.1425781, 1.9316406, -0.71484375, 1.6259766, 2.0761719, -0.4633789, 0.8046875, 1.0283203, -2.2871094, -3.5058594, -1.6181641, 1.1533203, 0.22814941, -0.3059082, 0.97265625, -1.6445312, 1.0322266, 0.7841797, -0.6826172, -3.0644531, -0.014419556, -0.6503906, -1.2587891, -2.046875, 0.4404297, -0.23425293, 2.3730469, 0.63183594, -0.19384766, 1.2578125, -3.9199219, -0.71728516, 0.3425293, -1.2402344, 0.37451172, 2.8242188, 0.4921875, 0.31640625, -0.03866577, -0.10925293, -2.1191406, 1.9345703, -1.5234375, -0.10437012, 1.1884766, -0.91064453, 0.013206482, -1.2607422, -1.3740234, 0.05718994, -0.6176758, 0.8178711, 1.9052734, -0.39233398, -0.08258057, 1.7783203, -0.75341797, -1.578125, 0.50390625, -0.3461914, -0.21191406, 1.3300781, -1.7724609, -0.9238281, -1.5234375, -1.8251953, -0.87353516, -2.5683594, 0.63671875, -1.4990234, 0.6713867, 1.0410156, -0.20361328, 0.26245117, 0.62841797, -0.9902344, -0.10394287, 0.46923828, -1.1308594, 2.8085938, 1.9765625, -1.5166016, -0.17163086, -1.0439453, 0.82714844, 2.5351562, 0.89941406, -0.45751953, 0.17126465, 1.0693359, -0.1538086, -0.7319336, 0.51416016, 1.5175781, -0.61035156, -1.6757812, 1.6728516, 3.9902344, 0.31396484, 1.3164062, 0.6152344, 0.74609375, 0.31298828, 5.1171875, -0.4260254, -1.8554688, 1.3359375, -2.7050781, 1.9160156, 0.70751953, -0.97998047, -0.21972656, -1.6005859, -1.9277344, -2.2167969, 0.019088745, -2.6347656, 1.4912109, 2.0488281, -1.3320312, -0.52685547, 1.6201172, 0.9194336, 1.1152344, 2.3691406, 0.8955078, 0.1907959, 1.2285156, -0.87890625, -0.6621094, 1.1914062, -2.1015625, 1.9345703, 2.84375, -1.3740234, -1.3535156, 3.4707031, 0.02029419, 1.5751953, 1.9560547, 0.38598633, 1.4042969, 2.1308594, 2.9902344, 0.28930664, 1.6416016, 0.7026367, -0.95703125, 1.2607422, 1.3896484, 3.0039062, 0.3395996, -0.032348633, 2.1035156, -0.9370117, -1.6513672, 1.0751953, 0.6953125, 0.99609375, -2.2851562, 1.6445312, 0.040985107, 0.9482422, -1.7695312, -1.1357422, -0.47998047, -1.2675781, -0.94091797, 0.75878906, 3.6308594, -1.6494141, 1.0410156, -0.58740234, -0.7026367, 2.0351562, -4.4179688, 1.7705078, 2.0898438, 0.0725708, 0.8232422, -0.02015686, 0.77197266, 0.39672852, 0.6425781, 1.3212891, 1.1484375, 1.3427734, 0.6430664, -1.8125, 0.92626953, 0.60302734, 3.0214844, -0.080444336, -0.061431885, 3.71875, -2.7285156, -2.5546875, -4.2226562, 4.1328125, 2.1875, 0.38378906, 2.1191406, -1.7128906, 3.0527344, -0.08648682, 0.33081055, -1.7324219, 0.93847656, 0.84814453, -2.5351562, -2.0332031, 1.703125, -0.17834473, 2.1738281, 1.3974609, -1.0351562, 1.2080078, 0.15136719, 0.6430664, 2.1542969, 2.6074219, -0.15686035, 0.64208984, 0.2631836, 1.546875, -0.29370117, -1.3359375, -3.4941406, 2.8671875, 1.0292969, -0.31884766, 0.65478516, -0.25024414, -0.7050781, -0.6088867, 0.10144043, 0.62939453, -2.8886719, -1.6933594, 0.33569336, 0.2841797, -1.2890625, -0.40942383, 2.7597656, 1.0107422, -2.03125, 0.16223145, 1.7275391, -1.6083984, 1.4863281, 0.67578125, 0.1821289, 0.49121094, -1.3662109, 0.80615234, 0.44677734, -1.8681641, 0.097717285, -0.09088135, 1.9199219, -2.1347656, 0.06756592, 0.27319336, 0.012321472, -0.008682251, 0.8178711, -1.2148438, -0.06439209, 3.4179688, -0.8173828, 0.33520508, 3.0019531, -0.41186523, 0.58154297, -2.9570312, -2.3984375, -0.21850586, -0.67626953, 0.28344727, 1.4648438, 2.9472656, 2.8964844, 0.2758789, -1.7451172, -3.78125, 0.3149414, -1.0224609, 1.0537109, -0.9873047, -0.59277344, 0.44848633, 1.7333984, 1.3398438, -0.053497314, -2.8085938, 0.32666016, -1.6845703, 0.08654785, 0.18591309, 2.2226562, -0.46606445, 1.265625, 0.29736328, 2.125, 1.0498047, -1.046875, 1.0527344, 3.1503906, 0.021911621, -1.7353516, 2.96875, -0.73876953, 0.16772461, 0.8144531, 0.1739502, 1.7392578, 0.6459961, 1.6386719, -0.05807495, -3.6972656]}, "B08588PLK8": {"id": "B08588PLK8", "original": "Brand: NOMADIQ\nName: NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel\nDescription: Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
Grilling Surface: 226.3 square inches
Total BTU: 9,200
Gas Type: Propane\nFeatures: \u2705 TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual\n\u2705 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant.\n\u2705 ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners.\n\u2705 OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required!\n\u2705 SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.\n", "embedding": [-1.5078125, 1.9589844, 0.81347656, 2.5058594, -0.8251953, 0.9140625, 0.14538574, -0.38989258, -1.3027344, 2.6679688, 0.51220703, -0.47265625, 1.3105469, -2.6464844, 0.6176758, 1.3671875, 2.3359375, 1.1757812, 1.6552734, 0.9189453, 3.2578125, -0.70751953, 0.83447266, -1.3798828, 1.6484375, 0.7104492, 4.0234375, -2.6796875, -0.75146484, -1.8789062, 1.5136719, 0.16796875, -0.71240234, 1.6347656, -1.7060547, -1.2939453, -3.0625, 0.9785156, -1.0712891, -1.4306641, -0.7871094, -0.9399414, 3.0292969, -0.9848633, -2.7910156, -0.21264648, 0.04284668, 2.4082031, 0.5239258, -0.89697266, 1.2207031, -0.9482422, 0.84716797, 1.1582031, -1.4238281, -0.087768555, 0.5336914, -3.421875, 0.8955078, 0.54785156, 1.5576172, -0.5776367, -1.5419922, 0.002948761, -1.3095703, -1.4169922, -0.009231567, -0.68896484, 1.0263672, -1.875, 3.5800781, 0.8779297, -0.71484375, 0.64208984, -0.032226562, -0.27661133, -1.7900391, 0.56103516, 2.5058594, 1.0615234, -1.3398438, 2.4921875, 1.796875, -1.4189453, 1.0234375, 2.0429688, -1.0283203, -0.9404297, 2.0839844, 2.4824219, -1.6259766, 1.8623047, -0.75, -3.7949219, 0.89160156, -0.29956055, -0.29882812, 1.1621094, -0.3972168, 1.8789062, -0.5180664, 0.20300293, -0.54833984, -0.37573242, -1.9355469, -1.5820312, 0.94091797, 0.33813477, -2.0839844, 2.0136719, -0.8232422, -0.42163086, 2.2734375, -0.05908203, 0.5996094, -0.6508789, -0.25732422, 1.3330078, 3.0585938, 1.6220703, 5.390625, 0.6743164, 0.93115234, -0.9868164, 0.6972656, 0.038146973, -1.609375, 2.0410156, 4.1757812, 0.9169922, -0.2697754, 0.96777344, 1.6601562, -0.78564453, -2.2304688, -2.71875, -0.063964844, -3.3691406, -4.5273438, 0.7661133, -2.4707031, -0.78515625, 2.5117188, -1.1162109, -3.8164062, -0.77246094, -0.59228516, 1.6972656, 1.2978516, -1.6035156, -0.40527344, -1.4072266, 0.171875, -0.6958008, 1.6953125, -1.6777344, -1.9970703, -0.5571289, 3.546875, 1.3212891, 2.4648438, -2.1503906, -2.2988281, 0.47802734, 1.8642578, -2.6074219, 0.30419922, 2.6816406, 1.0947266, 0.7036133, 0.2980957, -2.9101562, 1.1640625, 0.08074951, 1.5859375, -2.7207031, -0.37670898, 1.609375, 2.0234375, -2.0429688, -2.7519531, -3.0585938, 1.546875, 0.04827881, 1.3417969, -1.8818359, -0.5058594, 0.9536133, 0.5073242, -1.8974609, -0.016296387, 0.60546875, -0.2668457, 1.2714844, -0.5410156, -1.0527344, -1.5507812, -1.1132812, 0.9760742, 1.7685547, -1.0615234, -0.026504517, -1.5878906, -0.13830566, -2.1464844, -2.7851562, -1.5195312, -1.2539062, 0.33325195, 2.2480469, 1.1894531, -0.65185547, 2.1191406, 0.81347656, 0.41430664, -0.5546875, 1.9287109, 2.1464844, 1.7773438, 2.0585938, -0.0982666, -1.4833984, 0.8535156, 2.5507812, 1.5390625, 2.15625, -0.79345703, -1.1376953, -1.6884766, -1.5292969, 3.4765625, 0.1616211, -0.171875, 0.5834961, -1.4667969, 3.1914062, 1.2070312, -0.578125, -1.3144531, 0.78466797, -1.2890625, -1.8349609, -1.765625, -2.3945312, -2.609375, -1.0966797, -2.0214844, 1.7060547, 3.1367188, 1.390625, -1.4726562, -0.10675049, -0.2626953, -0.2824707, -0.16503906, 1.0009766, 0.52783203, 2.0644531, -1.3095703, -2.1445312, 1.3427734, 1.8398438, 1.2617188, 0.91552734, 1.5341797, -0.9038086, 2.859375, 0.16796875, -2.6738281, -0.26293945, 1.9257812, 1.4453125, 0.6796875, 0.7397461, -0.35229492, -0.9970703, -0.4116211, 1.7822266, -0.3786621, 2.5976562, 1.3027344, -0.63964844, 0.45263672, -3.5039062, -1.7783203, -0.79248047, 0.6977539, -0.08996582, 0.7763672, 1.6201172, 2.9394531, 0.9423828, -2.9648438, 2.65625, -1.3671875, 0.70410156, 2.6132812, -0.3251953, 0.4182129, 0.38720703, 0.6816406, 0.59472656, -2.6757812, 1.8144531, -0.7192383, -1.2929688, -0.9003906, -2.6640625, 2.0136719, -0.5126953, -0.92822266, 0.5649414, -0.8520508, 1.9931641, -0.90478516, -0.4206543, 1.46875, -1.8515625, -0.25952148, 3.1757812, 0.44140625, -0.94433594, -1.5039062, -2.5898438, -0.94140625, 0.58154297, -0.78759766, 0.20483398, -0.0024642944, -0.43823242, 1.0341797, -0.47021484, 1.9394531, -3.21875, -1.7539062, -1.5771484, -2.6542969, -2.1289062, 1.6289062, -2.3574219, -1.4150391, 1.4248047, -1.5195312, 0.30371094, -0.3791504, -2.0820312, -0.7739258, 0.69677734, -0.72265625, 0.028701782, 0.25854492, 0.1586914, 2.0546875, -4.890625, -1.0537109, 1.2080078, -0.32739258, 0.7006836, -2.1230469, 1.6357422, -1.7070312, -0.5834961, 0.3791504, 0.4411621, 0.18933105, -1.8554688, 0.42822266, -4, -0.047424316, -2.0761719, 0.3388672, -0.5654297, -0.19042969, -3.6640625, -1.7001953, 0.3166504, -1.3447266, 3.5410156, -1.1494141, 0.5175781, -0.35986328, -0.5600586, 0.88916016, 0.23059082, -3.8105469, -3.6835938, 0.008773804, -2.28125, -2.15625, -3.0625, -0.57373047, 0.9277344, -0.67333984, -0.32861328, 0.8173828, -2.5039062, 2.296875, -1.7890625, 0.16479492, -0.042053223, 1.3652344, 0.9638672, -2.1328125, -1.9150391, -1.0820312, -0.7939453, -0.40551758, -0.81152344, 1.2373047, -0.85595703, 0.9848633, 0.66503906, 0.30371094, -1.0126953, -0.5263672, -4.8125, 1.9375, -0.7001953, -1.8662109, 1.6494141, -0.12561035, -0.60253906, -3.921875, -0.8852539, 3.4511719, 1.2226562, 2.4960938, -0.17858887, 0.36572266, 1.9462891, 1.0136719, -0.24108887, -0.49414062, -0.08081055, 2.5175781, -4.0820312, -0.36206055, 0.044952393, 3.1855469, -2.0273438, -0.38110352, 1.1914062, 0.16186523, 2.3769531, -0.10443115, 0.9458008, 0.32885742, -0.08807373, 0.18798828, 0.8457031, -0.73779297, 0.43554688, 0.42382812, -0.6176758, -1.1396484, 1.609375, -0.5073242, 0.51708984, 1.6142578, 2.7890625, 0.32202148, -3.265625, 0.8691406, -0.45214844, 0.5239258, -0.62109375, 3.90625, -0.7739258, -0.47998047, -0.5546875, -0.67578125, 0.9589844, 0.1373291, -0.8691406, 2.3457031, 2.7109375, 0.08508301, -0.4741211, 1.4550781, 0.21826172, 0.059936523, 1.4082031, -0.84375, -1.1123047, 1.1796875, -2.9199219, -2.359375, -1.3964844, 1.7753906, -0.94677734, -1.9970703, 1.0517578, 1.5380859, -2.359375, -1.8066406, -1.1894531, 0.30322266, -1.3623047, 3.3085938, -0.08807373, -2.4785156, 0.3955078, 0.5410156, 0.4958496, 2.984375, 0.16992188, -0.5913086, -0.6459961, 0.39624023, -1.2939453, 0.67529297, 1.9394531, 0.7988281, -2.6679688, -0.24133301, -3.0058594, 1.4121094, -1.1503906, -0.29223633, 0.7709961, 0.93847656, 1.9794922, 1.9951172, -1.6484375, 4.5742188, -0.03881836, 0.40966797, 0.40698242, -3.2519531, -0.77734375, -3.6425781, -4.8242188, 3.4394531, -1.0703125, 0.86328125, 2.1621094, -0.55371094, -0.6743164, 0.45239258, 0.7290039, -1.7646484, -1.6621094, -2.2734375, 1.3369141, -2.5175781, 1.1972656, 1.9765625, 0.30273438, -3.1621094, -0.64501953, -0.88378906, 0.31933594, 1.8798828, 1.3398438, -0.42358398, 0.5136719, -2.1835938, 0.5332031, -2.1171875, 0.12426758, 0.890625, -1.3212891, -0.28442383, -2.3457031, 1.6806641, 0.041534424, -1.1337891, 0.31103516, -0.27490234, 1.0097656, -2.0175781, 0.036376953, 1.5039062, 2.8867188, -1.0214844, -2.171875, -2.1113281, -0.1373291, -1.6074219, -0.5029297, -0.099487305, -0.92041016, -3.5585938, 1.28125, 0.9370117, 2.5820312, 3.2871094, -0.48535156, -2.0253906, -0.12060547, -0.29956055, -3.4375, -1.6152344, 0.40795898, -0.71240234, -0.6147461, -1.4648438, -1.6132812, 0.90234375, -1.1923828, -0.66259766, -0.9838867, 1.7275391, 2.3046875, 1.9091797, 2.3515625, 0.19689941, 0.54003906, 2.6933594, -0.9506836, -0.28515625, 1.4394531, -0.5449219, 0.33325195, 1.9453125, 1.1660156, -1.7900391, 1.1728516, 1.5019531, -1.9482422, -0.5551758, -0.26098633, 1.8789062, -2.0917969, -2.359375, -0.52001953, -1.484375, 2.7207031, -2.7890625, 1.6738281, 0.21850586, 0.42504883, -1.3222656, 0.8598633, 1.7021484, 1.9267578, 0.5678711, 0.65478516, 2, -0.8979492, -0.040527344, -0.016174316, 2.8476562, -2.6503906, -0.45703125, 0.56347656, 0.2232666, -0.45385742, -0.07501221, 2.2675781, 1.9658203, -0.13269043, 1.6855469, -0.26953125, -1.8496094, 2.0253906, 0.6689453, -1.3710938, -0.009300232, -0.10095215, -1.140625, 0.82421875, 0.16796875, -3.5996094, -0.50683594, 0.53027344, -1.2304688, 1.2158203, -0.61376953, -1.2001953, -0.11853027, -2.6191406, -1.8759766, -0.8720703, -2.671875, 0.1907959, -2.2832031, -0.2668457, 0.60009766, 2.015625, 1.9726562, -1.7216797, 0.39648438, 2.3867188, 0.36328125, 0.82177734, -0.5595703, -2.8984375, -2.4648438, 0.12670898, 1.7744141, 2.5742188, 2.2265625, -0.13464355, -0.09509277, -2.3046875, -0.8725586, -1.8222656, 2.484375, -1.3310547, -0.5864258, 2.2324219, -0.7314453, 0.28808594, -1.8310547, 1.1835938, 0.29077148, 3.8496094, 2.125, -0.35888672, -1.9033203, -1.453125, -2.7734375, -5.4296875, -0.8154297, 1.8232422, -0.46240234, 0.3203125, 1.1191406, -1.2744141, -1.3828125, -0.47460938, 0.12756348, -1.3417969, -1.0175781, -0.22473145, -1.1582031, -1.1484375, 0.82666016, -1.203125, 0.7885742, 2.5292969, 1.1816406, -0.84472656, -3.1777344, -0.30249023, 1.15625, 0.77978516, -1.3876953, 0.9667969, -1.0664062, -1.703125, 1.0146484, 1.5166016, -2.0410156, 3.3457031, -3.4296875, 0.69628906, -0.38183594, -0.671875, 1.6064453, -0.6435547, -1.0322266, 0.8461914, -2.1679688, 4.2695312, -0.6699219, 0.5883789, 0.75634766, 1.7226562, -1.0351562, 0.3659668, 1.0810547, -1.2402344, 2.0273438, 1.8642578, 0.08709717, -0.5654297, -1.2216797, -2.7890625, 1.1894531, -2.4667969, -0.11114502, -1.6728516, 1.1445312, -0.21459961, 2.1484375, 0.67285156, 0.123168945, -0.29614258, -1.0205078, 1.6972656, 1.6845703, 2.2070312, 2.5605469, -3.0722656, -3.484375, -2.2070312, 1.7744141, -0.34838867, 0.14074707, 0.1973877, -0.18127441, -0.10662842, 0.6455078, -1.2998047, 2.6152344, 3.7636719, 0.9345703, -1.4882812, -0.5126953, 1.8476562, -1.5234375, 0.96533203, 1.3857422, 2.7109375, 0.64453125, 3.609375, -1.2617188, -0.82128906, 0.83935547, 0.24731445, 2.7304688, -2.3808594, -1.9775391, 0.025894165, -1.8505859, -1.2490234, -1.4111328, -1.1044922, -2.0800781, 2.8457031, 1.0292969, -0.5253906, 1.1806641, 3.3925781, -0.06506348, 0.51220703, 1.6494141, 2.3105469, -0.09991455, 1.5380859, -1.5869141, 1.484375, 0.014022827, -0.74560547, 2.2246094, 2.7246094, 0.49243164, -0.42944336, 4.1367188, 2.4199219, 2.1855469, -0.7480469, 2.0917969, 2.8496094, 0.69921875, 2.4082031, 0.6953125, 0.77246094, 2.3496094, -2.6230469, 0.11981201, 3.1347656, 1.6357422, -0.45581055, -2.2363281, 2.4550781, 0.38842773, -1.2519531, -0.9760742, -0.17565918, 0.9399414, -3.703125, 1.4111328, -0.34692383, -0.027374268, -2.3183594, 0.78466797, -1.6699219, -0.35766602, 0.19641113, 0.117492676, 1.9101562, -1.4677734, -0.06518555, 0.5073242, 0.40185547, 2.9023438, -2.859375, 0.31835938, -0.375, -1.5087891, -0.6801758, 2.4296875, 2.4179688, 1.4423828, -0.6611328, 2.1738281, 1.5361328, 0.7441406, 2.9882812, 1.0078125, 0.8588867, -1.1992188, 2.4042969, 1.2080078, -1.4169922, 0.93310547, -1.1083984, -2.6347656, -3.2402344, 1.3964844, 1.5546875, 0.7890625, 0.21923828, -2.8222656, 1.2744141, 0.29370117, 0.7001953, -1.3525391, 0.9169922, -1.7226562, -3.140625, -0.56347656, 1.0087891, 0.49731445, 3.0917969, 1.7832031, -3.6074219, 2.0703125, 2.4179688, 1.3222656, -0.39697266, 0.42895508, -0.87890625, 1.5546875, -1.8369141, 1.9023438, 0.99902344, -1.3964844, -0.36157227, 2.0839844, 1.3378906, 0.35888672, -0.29418945, -0.46044922, -0.22814941, -0.5239258, -0.21008301, -0.24353027, 0.8964844, 0.13842773, -1.0849609, 0.59814453, -1.2392578, 0.04626465, -0.13598633, 2.7246094, -2.5234375, 0.15246582, -0.12536621, -0.17919922, 0.57958984, 0.18164062, -1.3193359, 0.70703125, 0.074645996, 1.0019531, -0.21777344, 0.23120117, -0.08544922, -1.1503906, 1.3496094, 0.017501831, 0.75439453, -1.3740234, -0.12719727, 0.95947266, 1.2392578, -0.15588379, -2.3554688, 1.7294922, -1.2109375, 1.6679688, 4.4453125, 0.06347656, -0.56640625, -1.9140625, -0.5644531, 0.87353516, -1.65625, -0.68066406, -0.69433594, 5.2460938, 1.1132812, 0.11212158, -2.1796875, -3.3574219, -0.2644043, -1.1503906, 2.0332031, -1.3769531, -1.4521484, 1.7958984, 0.33422852, 1.9804688, 0.09661865, -0.85058594, 0.079711914, 2.3867188, 1.6894531, 0.6386719, 0.4885254, 2.2597656, -0.8574219, 0.024978638, 1.4179688, 2.6269531, 0.84277344, 2.09375, 0.08251953, -0.22424316, -3.1894531, -0.47338867, -3.4824219, 1.5839844, 2.4003906, 0.015060425, 2.6367188, -0.38500977, 0.13684082, -1.8496094, -1.7080078]}, "B082HG76CB": {"id": "B082HG76CB", "original": "Brand: MASTER COOK\nName: MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves\nDescription: Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean\nFeatures: \u2764 STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob\n\u2764 FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving\n\u2764 PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming\n\u2764 ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill\n\u2764 MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking\n", "embedding": [-3.5859375, 1.6328125, 1.3515625, 1.5429688, -0.6899414, 1.1533203, 1.1767578, -0.58251953, 0.16125488, 1.0722656, 0.8852539, -1.1513672, 0.86035156, -2.1289062, 1.8134766, 0.59277344, 0.5444336, 0.47729492, 1.8486328, 1.8974609, 1.1357422, -0.4970703, 0.9321289, -1.0458984, 0.90527344, 0.24047852, 1.3779297, -4.71875, 0.2097168, -1.3730469, 2.328125, -0.51708984, -0.49804688, 2.4628906, -3.8613281, -1.1796875, -2.5097656, 1.7304688, -3.046875, 0.045074463, -0.23730469, -1.6650391, 2.5800781, 0.024673462, -1.8779297, 0.5546875, -0.46826172, 1.3173828, -1.5927734, -1.6601562, 1.1054688, 1.953125, 1.0224609, 0.7963867, -0.7495117, 0.47460938, 1.2265625, -1.3466797, 1.7607422, 0.30639648, 1.8076172, -0.98291016, -2.4296875, 0.3293457, -1.9130859, -1.1708984, -0.1217041, 1.0595703, -0.8779297, 0.22790527, 2.0664062, -0.32373047, -1.4003906, 0.008804321, 0.35009766, -2.2832031, -2.2324219, 1.0019531, 1.2929688, 0.02267456, -1.875, 2.3515625, 1.4716797, -1.4785156, -0.5361328, 1.3447266, -1.1865234, -0.953125, 1.0673828, 1.4833984, -0.9638672, 2.2949219, -2.5097656, -1.4394531, 2.7832031, -1.8515625, 0.70214844, 0.578125, 0.53125, 1.3115234, -0.23718262, 0.43896484, -2.3320312, 0.91748047, -2.6835938, -1.4003906, 1.4072266, 0.52197266, -2.8066406, 0.29345703, -0.80126953, 0.55126953, 1.2666016, -0.83447266, 0.74902344, 0.7426758, -1.0839844, 2.5527344, 3.9433594, 2.7089844, 3.7597656, 0.24047852, 0.01033783, -0.8588867, -0.49194336, 1.6953125, -1.5292969, 3.6582031, 4.2148438, -3.0820312, -0.09844971, -3.046875, 2.0058594, 0.8041992, -1.3261719, -1.9707031, -2.4667969, -0.01838684, -5.359375, 1.6650391, -2.15625, 1.3164062, 1.5136719, -0.8652344, -4.0195312, -0.51123047, -0.7573242, 0.8979492, -0.51171875, -1.46875, -0.4958496, -1.7001953, 0.20178223, -2.0820312, 1.625, -2.046875, 0.13317871, -2.1230469, 5.21875, 1.2695312, 0.92333984, -3.2441406, -2.0917969, 1.2314453, 1.4208984, -2.6445312, -1.4287109, 2.6933594, -0.068359375, 1.4257812, -0.43969727, -2.1230469, 0.38012695, 0.33520508, 1.4238281, -1.0830078, 0.2211914, 2.9414062, -0.28735352, -1.1494141, -0.91259766, -2.7363281, 0.63916016, 1.8808594, -0.98828125, -1.4941406, -0.34838867, 0.640625, 0.27197266, -1.0429688, 0.010063171, 0.64208984, 0.21447754, 0.77001953, -1.2451172, -0.9682617, -2.7011719, -1.1318359, -0.50146484, -0.2397461, -0.69189453, -0.97509766, 0.026535034, 0.016235352, -2.2109375, -2.6699219, -0.2944336, -2.0507812, 1.0498047, 1.9121094, 1.0595703, -2.9941406, 1.4863281, -1.8466797, 0.57958984, -1.7236328, 2.25, 1.5009766, 1.1884766, 3.4785156, -0.110839844, -0.78466797, -0.28881836, 2.4277344, -0.66015625, 2.7597656, 1.5429688, 0.29589844, -1.1474609, -0.4206543, 2.0058594, -0.23181152, 0.2006836, 0.37768555, -1.1855469, 1.8398438, 0.8823242, -2.6621094, -0.18530273, -0.23510742, 1.4023438, -2.0332031, -1.3808594, -2.3652344, -0.5214844, 0.11920166, -1.1962891, 1.4785156, 2.5292969, 1.03125, -0.19299316, 0.06274414, -0.28979492, -0.5209961, -0.42285156, 0.63720703, 0.22277832, 0.75390625, -2.5214844, -2.2265625, -0.55322266, 0.93847656, 0.19689941, 0.71191406, 1.8017578, -1.59375, 3.9003906, -0.11608887, -3.4121094, -1.9511719, 1.9121094, 0.10461426, 0.9350586, 0.3100586, 1.8515625, 0.68066406, -1.3642578, 2.9746094, 0.9199219, 1.1923828, 0.0016860962, -1.015625, 2.3789062, -2.3847656, -0.63720703, 1.3759766, 1.2392578, 1.1298828, 0.44458008, 0.77001953, 5.6132812, 0.17565918, -3.1171875, 2.6230469, -1.0830078, 1.3427734, 0.8383789, -0.67822266, -1.4296875, -0.7207031, 1.3769531, 1.4824219, 0.103393555, 2.1445312, -1.6943359, -1.4541016, 0.34716797, -1.1621094, -1.0644531, 0.09918213, -1.4326172, -0.32250977, -2.5488281, 1.0107422, -0.1772461, -1.140625, 3.0351562, -1.9472656, 0.3786621, 0.6796875, 1.1728516, 2.0449219, 0.06854248, -1.6074219, 0.50097656, 0.76123047, 0.5214844, -0.035308838, 0.43041992, -0.79345703, 1.0625, -1.7675781, 2.8535156, -2.2695312, -3.9589844, -0.7001953, -3.1503906, -2.8027344, -0.7626953, -0.7060547, -0.7705078, 0.7792969, -2.7441406, 0.6191406, -0.78759766, -2.765625, -1.5253906, -0.088256836, -1.1328125, 0.6791992, 0.24633789, -0.006134033, -0.76904297, -1.5498047, 0.75390625, 1.234375, -0.8383789, 0.9477539, 0.07293701, -0.48828125, -1.0644531, 0.4921875, -0.02746582, 0.11627197, 0.8779297, -0.9057617, 0.59472656, -4.0859375, -0.9682617, -3.0039062, -0.25927734, -0.68359375, 0.6088867, -2.265625, -1.2177734, -1.2246094, -1.5556641, 3.4355469, -0.5546875, 0.5395508, -0.671875, -0.7910156, 1.6591797, -1.2841797, -2.3144531, -1.8134766, 1.8203125, -1.7324219, -0.29736328, -1.5986328, 0.20141602, -0.8833008, 0.33740234, -1.3017578, 1.9482422, -3.7460938, 1.6298828, -2.0195312, -1.0136719, -0.6586914, 2.8496094, -0.040039062, -1.7929688, -2.59375, -0.6118164, -1.2128906, -1.1083984, -0.7631836, 1.5634766, -1.1230469, 0.44189453, 2.7910156, -1.4179688, 1.421875, -1.703125, -2.6953125, 2.3339844, 1.1708984, -2.8183594, 2.5917969, -0.8544922, -2.4570312, -2.1953125, -1.6142578, 3.0917969, 0.45410156, 2.328125, -0.4555664, 0.8208008, 1.0976562, -0.4416504, -0.06378174, -1.7617188, 0.24890137, 2.8339844, -2.7519531, -1.1103516, 1.7548828, 3.5449219, -1.9472656, -1.1796875, 2.4199219, 2.5976562, 1.4042969, 2.9316406, 2.2109375, 1.5429688, -1.5605469, 2.4667969, 1.3535156, 0.99121094, 0.012557983, -1.2333984, -0.47607422, -0.37182617, 2.7285156, 2.015625, 0.5698242, 2.5996094, 1.4902344, 0.25268555, -3.0996094, 0.9692383, 0.21594238, 2.6464844, 1.2832031, 2.6835938, -1.2392578, -0.1640625, -0.26782227, -0.35839844, 0.3708496, -2.4550781, -0.2397461, 0.8984375, -0.9291992, -0.29638672, 0.042266846, -0.39672852, 0.81103516, -1.6650391, 0.8979492, -1.0576172, -0.60791016, 1.0664062, -0.2770996, -0.10321045, -0.8623047, 1.5810547, -0.69677734, -2.2949219, 0.98291016, 3.34375, 0.55322266, -1.8828125, -0.87353516, 1.0732422, -2.3789062, 3.4003906, -0.7524414, -2.2109375, 0.8955078, -1.4775391, 2.0292969, 1.0283203, -1.7324219, -0.76708984, 1.234375, 0.35668945, -0.37451172, 0.67089844, 2.4238281, 0.69433594, -2.9042969, 0.19250488, -3.8535156, 0.89208984, 0.54003906, -1.4951172, -0.9794922, 3.3300781, 1.703125, 2.4902344, -1.7607422, 3.7851562, -0.27172852, -2.2949219, 1.0214844, -3.5644531, 0.05014038, -3.3886719, -3.8671875, 1.3525391, -0.71240234, -1.0849609, 1.7929688, 0.4555664, 0.11932373, 1.828125, 0.58740234, -4.7734375, -1.5761719, -1.4150391, 0.32177734, -1.9775391, -1.1025391, 0.8383789, 1.7519531, -0.7685547, -1.9980469, 0.09362793, -0.54589844, 2.0976562, 1.7128906, -2.0800781, 1.4443359, -1.7451172, 0.5620117, -0.04724121, -0.2927246, 0.85498047, -1.5029297, 0.41918945, -3.140625, 1.8193359, 1.2070312, -1.1513672, 0.72753906, 1.4765625, -0.10284424, -1.265625, 0.9458008, 1.5908203, 3.1171875, -0.85595703, -2.3671875, -1.0712891, 0.37719727, 1.4101562, -0.5097656, -0.78759766, -1.0136719, -2.3691406, 1.7617188, 1.0771484, 1.2558594, 1.8574219, -0.14807129, -2.125, -0.039978027, 1.9970703, -2.3847656, -0.59228516, 0.0869751, -1.1074219, -1.4794922, 0.16467285, -1.7666016, 1.2646484, -3.2285156, -0.4477539, -3.1699219, 3.8378906, 1.1669922, 2.1621094, 3.0878906, -0.5854492, -1.5166016, 0.05053711, -1.2109375, -0.26611328, 1.3525391, -0.37939453, 0.8208008, 1.5039062, -0.24707031, -1.7617188, -0.98095703, 2.8339844, -2.984375, -1.0498047, -1.2080078, 0.7861328, -0.5366211, -1.2939453, 1.5039062, -1.3203125, 3.7890625, -0.22851562, 0.3894043, 1.2285156, -0.6035156, -1.8232422, 0.35961914, -0.31396484, -0.2770996, 1.6572266, 2.4648438, 1.9511719, -1.7792969, -0.06518555, -0.57958984, 2.1699219, -0.52978516, -0.21484375, -0.01902771, 0.22351074, -1.6572266, -1.5927734, 0.25732422, 2.4199219, -0.5673828, 3.7539062, 1.6015625, -1.1015625, 3.3828125, -0.0158844, -1.3242188, -0.6645508, 0.3791504, -0.42358398, 1.6201172, -0.3244629, -3.7851562, -0.60498047, 2.6464844, -1.6083984, 1.2402344, -0.45361328, -1.6601562, -0.010429382, -3.3300781, -0.81347656, 0.25170898, -0.48779297, 0.0011291504, -0.6557617, 0.86083984, -1.5039062, 1.9394531, 3.359375, -0.98828125, -2.2890625, 2.984375, -0.107421875, 2.2753906, -0.51416016, -1.4248047, -2.7773438, 1.0820312, 3.9023438, 1.0107422, 1.5146484, 1.0078125, 1.1201172, -3.0292969, -0.0021572113, -0.1538086, 3.9003906, -1.2226562, -0.0124435425, 2.6699219, -2.0625, 0.5805664, -3.1054688, 1.9179688, -1.1992188, 3.3085938, 1.7607422, 0.9013672, -0.9770508, 0.26586914, -0.73291016, -4.875, -1.0869141, 1.8662109, 0.2939453, -0.47509766, 0.90234375, -1.4150391, 0.39331055, 1.4492188, 0.5214844, -2.6328125, -0.025360107, -0.6074219, -1.3183594, -1.3105469, 1.4863281, -0.7963867, 0.2277832, 0.43603516, 0.15075684, -0.44189453, -4.9140625, -1.7177734, 1.1337891, -2.6230469, 0.15612793, 0.5161133, -1.0166016, -0.16772461, 2.4980469, -0.17077637, -1.78125, 2.1152344, -1.2861328, -0.24279785, 1.0849609, -0.15014648, 0.08392334, -0.78808594, -0.3881836, 0.35986328, -0.5878906, 0.3293457, -0.2084961, -0.036102295, -0.37573242, 1.5820312, -0.31884766, -0.33740234, -0.21032715, 0.27392578, 1.5341797, 1.3632812, -1.2021484, -0.77441406, -1.9248047, -2.2402344, -0.40576172, -1.5908203, 0.033416748, -1.3457031, 1.2978516, 1.6298828, 0.33374023, -0.6455078, 0.984375, -0.0256958, -0.98291016, 0.43310547, -1.59375, 1.0644531, 0.2064209, -1.0058594, -1.96875, -1.0419922, 1.2216797, 0.5576172, 1.4667969, -1.4003906, 0.29125977, -1.0068359, 1.7128906, 1.1357422, 0.13342285, 3.6972656, 0.70947266, -1.3710938, 1.2636719, 2.4824219, 0.64404297, 0.103881836, 0.59228516, 0.40844727, -0.060424805, 4.9804688, -0.19104004, -2.4199219, 1.7246094, -2.5136719, 0.22937012, -0.6425781, -1.2402344, 0.8208008, -3.1445312, -1.2324219, -3.7675781, -2.015625, -3.8789062, 2.5214844, 0.7084961, -0.46655273, -0.46533203, 3.0566406, 0.7373047, 1.6357422, 2.5683594, 1.3378906, 0.93066406, 1.3691406, -0.6333008, -0.8095703, 2.015625, -3.3476562, 1.9472656, 1.0458984, -0.7109375, -0.515625, 3.1582031, 1.9941406, 2.6503906, 1.0615234, 0.9580078, 3.5820312, 1.4921875, 3.7441406, 0.68896484, 1.1435547, 2.5234375, 0.06933594, 0.4868164, 3.109375, 2.3613281, 0.3581543, -0.37524414, 2.8574219, -1.9599609, -1.1318359, -0.90234375, -0.07672119, -0.6098633, -1.4453125, 1.9003906, -0.20178223, 0.47143555, -2.0175781, -1.078125, -1.1689453, -0.46240234, -1.0615234, 0.35351562, 1.1230469, -2.2089844, 0.110839844, -0.86083984, -0.42211914, 2.3671875, -2.7460938, 2.0390625, -0.3762207, -0.64453125, 0.3635254, 0.7583008, 0.14990234, 0.31958008, -0.011001587, 1.4794922, 1.2871094, 1.9013672, 0.7084961, -0.8208008, 1.4912109, -0.30078125, 2.4238281, -0.28222656, -1.4892578, 1.1494141, -1.7910156, -2.6445312, -3.6503906, 2.2949219, 1.4179688, 0.7993164, 1.0322266, -2.5859375, 1.3095703, -0.25195312, 2.2128906, -3.0566406, 0.9667969, -0.47387695, -4.171875, -0.85791016, 0.6381836, 0.39624023, 2.6152344, 1.3183594, -1.1708984, 2.5996094, 1.5576172, 1.9560547, 1.6269531, 1.0878906, 0.28833008, 1.28125, -0.46948242, 2.9433594, 1.3183594, -0.8251953, -0.012649536, 1.9296875, 0.45361328, 0.035003662, 0.88671875, -1.8457031, -0.39892578, -1.1210938, -1.9326172, -0.49731445, -1.8017578, -1.4091797, -0.25976562, 0.72216797, -1.0839844, -1.3017578, 1.2373047, 1.2519531, -1.1279297, 1.3017578, 1.5517578, -0.6479492, 1.8691406, -0.06921387, -1.1005859, 0.69140625, -0.17321777, 1.4189453, 0.008743286, -1.4365234, 0.20214844, -0.72265625, 2.0566406, 0.39453125, -0.2919922, 0.32666016, -0.5371094, -1.0449219, 0.62597656, -0.015853882, -0.7026367, 1.6308594, -0.4802246, -0.32617188, 2.2011719, -0.6230469, -0.49438477, -2.5058594, -2.4492188, 0.09008789, -1.0683594, -1.0800781, 1.0078125, 4.5625, 1.046875, 1.578125, -0.61376953, -4.5507812, -0.9057617, 0.29003906, 2.8378906, -1.7119141, -1.2216797, 0.6743164, 1.3984375, 1.6914062, -1.3173828, -1.84375, -1.0244141, -0.4411621, 0.12188721, 0.28271484, 2.5410156, 1.5292969, 0.6723633, 0.29882812, 0.95751953, 1.5605469, -1.1787109, 1.1855469, 1.3554688, 0.08770752, -2.9785156, 1.8378906, 0.1932373, 0.3635254, -0.375, 0.32348633, 2.0078125, 0.12524414, -0.28759766, -1.7353516, -1.9648438]}, "B07P8RTTWP": {"id": "B07P8RTTWP", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black\nDescription: \nFeatures: 443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether.\n39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push.\nSide burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience.\nGlossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look.\nGrease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.\n", "embedding": [-1.9707031, -0.060272217, 1.2421875, 0.8051758, -0.91796875, 2.0703125, 1.4296875, -0.5288086, -0.19787598, 0.6040039, 1.4882812, -0.26782227, 0.60546875, -2.7949219, 1.7470703, 0.7363281, -0.0814209, 1.3925781, 0.7753906, 0.38745117, -0.23181152, 0.6020508, 2.3398438, -0.7011719, 0.6010742, 1.9052734, 3.0039062, -4.7929688, -0.22998047, -0.8823242, 2.4296875, 0.1965332, 0.038848877, 2.9453125, -3.2363281, -0.9169922, -1.6884766, 0.84277344, -2.0859375, 1.5087891, -0.10809326, -1.5830078, 0.5102539, 1.4228516, -2.4980469, -0.33374023, 0.21655273, 0.875, -1.2958984, 0.24035645, 0.8828125, 1.9736328, -0.7504883, 0.5263672, -0.054656982, 1.9082031, 1.3974609, -1.8222656, 1.4179688, 0.30810547, 2.8066406, -0.25073242, -2.578125, 0.68359375, -0.45703125, -0.9067383, -0.28637695, 0.34936523, -0.72265625, -1.3339844, 2.4355469, 0.52734375, -0.3479004, 0.30639648, -0.27490234, -0.23632812, -2.1074219, 1.7773438, 1.9208984, -0.32592773, -2.4257812, 1.5751953, 0.8417969, -1.6757812, -0.78564453, 0.40722656, -1.3710938, -0.48413086, 1.2392578, 1.0732422, -0.11816406, 2.3144531, -2.3554688, -4.0664062, 2.2949219, -0.5888672, 1.0224609, 1.7490234, 0.5722656, 0.6826172, 0.5, -1.4892578, -1.5019531, -0.6635742, -1.2880859, -1.1992188, 0.86376953, 1.4746094, -2.1445312, -0.4116211, -1.1923828, 0.7475586, 2.1640625, -0.8076172, 0.52197266, 0.8574219, -1.0253906, 1.8535156, 1.8173828, 0.4560547, 2.921875, -0.8125, 1.5039062, -1.9824219, 0.14733887, 1.1523438, -1.6601562, 1.2412109, 5.2421875, -2.5800781, -0.49658203, -2.6640625, 2.8496094, -0.10913086, -1.8945312, -1.8251953, -1.7128906, -0.68896484, -2.6328125, 0.26953125, -2.2851562, 0.39111328, 2.4707031, -1.4169922, -3.0605469, -0.4387207, -0.36279297, 2.1445312, -0.76904297, -1.234375, 0.23583984, -1.4765625, 1.5283203, -2.5722656, 1.6220703, -1.7001953, -0.33544922, -1.6669922, 3.859375, 0.20349121, 0.90234375, -3.1054688, -1.5390625, 0.5419922, -0.28735352, -0.6777344, -1.0390625, 2.5605469, 1.8554688, 2.4648438, 0.008033752, -0.9477539, -0.8959961, -0.47631836, 0.5239258, -0.45361328, -1.1103516, 2.0058594, 1.2480469, -0.43969727, -1.2128906, -1.8974609, 0.01586914, 1.4248047, 0.9501953, -1.1767578, -0.30029297, 0.39453125, 1.0546875, -0.68359375, 0.8129883, 0.52783203, 0.20141602, 0.8574219, -1.5488281, -0.5083008, -0.54589844, -1.1035156, -0.6611328, 0.55078125, -0.86035156, -0.3864746, 0.14855957, 0.9057617, -3.4140625, -3.4003906, 0.72265625, -2.6914062, 1.4365234, 1.7109375, 1.7294922, -2.5742188, 0.5991211, -0.77246094, 0.67285156, -2.3242188, 2.3945312, 0.011413574, 1.8076172, 2.6347656, 0.5239258, 0.1907959, 0.39233398, 1.3916016, 0.03326416, 1.4824219, 0.60595703, 1.2626953, -2.2910156, -0.33422852, 2.3359375, -0.2788086, -0.3618164, 0.6826172, -1.5351562, 0.9873047, -0.4650879, -2.3671875, -0.91503906, -0.09063721, -0.37304688, -1.8925781, -0.40185547, -1.2998047, -0.5644531, 1.6425781, -1.1835938, 1.5244141, 2.1347656, 0.32373047, 0.12322998, 1.3457031, 0.9633789, 0.07336426, -0.56152344, -0.72558594, -0.57666016, 1.1396484, -1.4306641, -1.8662109, 1.7851562, -0.07574463, -0.15283203, -0.82714844, 1.3037109, -2.0371094, 2.1777344, 1.1445312, -2.484375, -1.3369141, 0.09680176, 0.05960083, 2.1386719, -0.51220703, 1.6699219, 1.8916016, -1.3320312, 2.7460938, -1.875, 0.44384766, 0.2944336, -1.1142578, 1.0214844, -1.9716797, -0.35327148, 0.97314453, 0.5810547, -1.3945312, -0.1352539, 1.5976562, 4.90625, -1.1162109, -2.1171875, 3.2421875, -1.5605469, -0.80908203, 0.86279297, -0.61816406, -1.6962891, 0.36376953, 1.6347656, 0.71728516, 1.1074219, 0.41992188, -0.20812988, -2.4179688, 0.66796875, -2.1328125, -0.51953125, -0.1439209, -0.3659668, -1.8076172, -2.0058594, -0.15893555, -0.93408203, -1.5419922, 2.0429688, -2.8808594, 1.7363281, 0.020889282, 1.609375, 1.6601562, 0.016830444, -1.8398438, -0.78466797, 1.2089844, -0.8051758, 0.2541504, -0.08862305, 0.13879395, -0.5522461, -0.76171875, -0.057800293, -1.4794922, -3.25, -0.76123047, -2.9101562, -2.2792969, -0.09893799, -2.0566406, -1.0078125, 0.51953125, -2.0800781, -0.21105957, 0.24389648, -3.8769531, -1.1650391, -1.4306641, -2.2929688, 0.8051758, -0.6635742, 0.1583252, -0.44360352, -2.0332031, 0.6347656, -0.11895752, -0.49902344, 0.7607422, 0.3100586, -0.7651367, -1.1962891, -1.6171875, -0.50390625, 0.1953125, 0.9321289, -0.9560547, 0.5161133, -3.1757812, 0.2902832, -1.5449219, -0.27929688, -1.2861328, 0.24133301, -2.6582031, -0.89404297, -0.6826172, -1.0546875, 4.2539062, -0.7685547, 0.42407227, -0.2902832, 0.27954102, 2.4335938, -1.5878906, -2.1230469, -1.6542969, 0.8613281, -3.0253906, -2.9960938, -1.9345703, 0.08691406, 0.022964478, 1.359375, -1.140625, 2.875, -0.6147461, 1.6337891, -1.0644531, -0.89941406, 0.07531738, 0.82373047, 0.1895752, -0.95654297, -1.5478516, -0.87939453, -0.5083008, -1.4179688, 0.66259766, 1.8105469, -0.58203125, 1.0498047, 0.87841797, -0.73779297, 0.24255371, -0.43408203, -2.4863281, 3.4765625, 0.8964844, -2.2421875, 2.5976562, -0.7578125, -2.9550781, -0.91845703, -0.13220215, 3.3789062, 1.9853516, 2.9980469, 0.6245117, 1.5976562, 0.29101562, 1.1572266, -0.4338379, -0.7104492, -0.59033203, 3.2070312, -2.2148438, -2.3242188, 1.0927734, 1.671875, -1.6142578, -1.3457031, 2.1894531, 1.1337891, 2.7226562, 1.1455078, 2.0605469, 1.6142578, -1.3701172, 1.3837891, 0.7441406, -0.8300781, -0.38330078, -1.3623047, 0.77001953, -0.5019531, 1.6738281, 2.0859375, -0.09112549, 2.5546875, 0.99560547, 0.2849121, -1.4208984, 0.76708984, 0.9243164, 3.7558594, 1.3095703, 1.4697266, 0.16003418, 0.3083496, 1.1552734, -0.60498047, -0.078186035, -3.9277344, 0.08154297, 1.1660156, -0.98876953, -0.61816406, 1.3320312, 0.73828125, 0.6274414, -0.57373047, 0.5366211, -1.4150391, -0.25195312, 0.8955078, -0.6582031, -0.9477539, -1.8925781, 1.2509766, -0.86816406, -1.7587891, 0.52441406, 2.7539062, -1.2070312, -1.9746094, 1.3613281, 0.4326172, -1.2626953, 2.7988281, -0.23852539, -1.0947266, 0.89941406, -1.6503906, 1.2705078, 0.76123047, -1.0947266, -0.7338867, -0.9140625, -0.8613281, 0.28442383, 0.12512207, 2.09375, 1.8115234, -1.6230469, 0.19152832, -4.40625, 0.84033203, 0.48339844, -1.6103516, -0.6430664, 2.6230469, 0.7739258, 1.5351562, -2.3222656, 3.5410156, 0.1116333, -0.56103516, 1.9892578, -3.5429688, -1.9042969, -4.2734375, -3.390625, 0.6245117, -1.2255859, -1.0244141, 1.9628906, 0.99609375, -0.1295166, 1.7978516, 0.6694336, -2.1210938, -1.5039062, -2.0039062, 0.5571289, -1.3505859, -1.140625, 0.68652344, 0.023422241, -2.3652344, -1.8818359, -0.36132812, 0.03289795, 2.0136719, 1.9980469, -2.4609375, 1.4775391, -2.5, 0.28393555, 0.10046387, -1.1572266, 1.1904297, -1.0947266, 0.5073242, -2.8828125, 1.6962891, 1.3261719, -0.6347656, 1.7412109, 1.9492188, -0.15454102, -2.0332031, -0.12402344, 1.2773438, 4.1601562, -0.62109375, -2.4023438, -2.078125, 0.3635254, 0.35595703, -1.5615234, -0.95214844, -1.5537109, -1.2636719, -0.32470703, 2.3144531, 1.6943359, 0.9614258, 1.0986328, -2.3222656, 0.56884766, 0.38134766, -0.91748047, -1.3369141, -0.8339844, 0.19396973, 0.26342773, -0.61083984, -1.2675781, 0.75341797, -2.25, -0.24621582, -2.0898438, 3.109375, 2.78125, 0.5864258, 2.7324219, -1.2773438, -0.3618164, -0.11193848, -0.63623047, -0.061676025, 1.3134766, 0.39013672, 0.32641602, 1.9023438, 0.18188477, -1.6767578, -0.47485352, 1.3867188, -1.7294922, -0.03967285, 0.084228516, 0.92578125, -0.15209961, -0.16467285, 2.1542969, -1.2089844, 2.9414062, -0.8359375, -0.005378723, 0.51953125, 0.18591309, -1.6044922, 0.9614258, 0.1998291, 0.87597656, 0.82470703, 1.2412109, 2.1113281, -1.7197266, 0.7885742, -1.3125, 1.7285156, -1.1601562, 1.2841797, -0.008377075, 0.8828125, -0.8276367, -1.2333984, 0.83496094, 2.2675781, -0.8457031, 4.3203125, 1.8759766, -1.9394531, 1.5751953, 1.0595703, -1.921875, 0.41381836, -0.0748291, 0.0049858093, 1.7099609, 1.3085938, -3.609375, -1.3173828, 2.5039062, -1.1621094, 1.0527344, -0.6665039, -1.2744141, 0.6767578, -1.4228516, -0.3696289, -1.1425781, 0.7519531, 0.25195312, -0.33129883, 1.1669922, -1.6513672, 0.7944336, 2.2324219, -0.15161133, -1.6582031, 2.5957031, -0.99316406, 1.9384766, 0.32495117, 0.20739746, -1.9619141, -0.30126953, 3.6933594, 0.39746094, 1.5625, 0.76904297, 0.6953125, -3.3242188, -0.22314453, -2.1484375, 3.1972656, -0.93652344, 0.11779785, 3.6679688, -3.5175781, 1.2480469, -1.7607422, 0.7548828, -0.72753906, 2.2441406, 1.2998047, -0.45874023, -0.8022461, 1.1152344, -1.7353516, -3.0546875, -1.7167969, 1.1542969, -0.3635254, -0.45141602, 0.47827148, -1.0546875, -0.004470825, 0.5625, -0.42407227, -1.8886719, -0.20678711, -1.9394531, -0.4572754, -1.4111328, 0.60595703, -0.5932617, 2.0117188, -0.27026367, 1.2841797, 1.0283203, -3.65625, -2.625, 1.859375, -2.2539062, 0.75683594, 2.6191406, 0.43920898, 0.26391602, 0.4736328, -0.5102539, -2.1835938, 2.3417969, -1.6503906, -0.33251953, 0.5175781, -0.58251953, 0.6899414, -0.6274414, -1.2109375, 0.2524414, -0.5253906, 0.7089844, 0.73291016, -0.1796875, -0.30029297, 2.0039062, -0.62060547, -1.5800781, 0.83935547, 0.8823242, -0.09112549, 1.6962891, -2.234375, -0.15673828, -2.0996094, -2.5996094, -1.1367188, -1.9423828, 0.25634766, 0.07989502, 0.9194336, 1.5, -1.0419922, 0.038970947, 1.1513672, -0.056243896, -1.0625, 0.25195312, -1.5527344, 1.7802734, 1.2851562, -1.6279297, -0.8588867, -1.0107422, 1.0019531, 1.5429688, 1.8017578, -1.171875, 0.27368164, 0.061676025, -1.0292969, -0.09832764, 0.059020996, 1.7695312, 0.048553467, -0.8066406, 2.0546875, 3.6679688, 0.57910156, -0.17004395, 1.6201172, 0.7084961, -0.15820312, 5.2890625, -0.91796875, -1.7236328, 1.0029297, -2.3320312, 2.0644531, 0.3869629, -1.2900391, 0.96240234, -1.2333984, -2.0292969, -2.9296875, -0.8803711, -2.0703125, 1.0800781, 1.6630859, -1.1103516, -0.8305664, 2.5957031, 1.3769531, 1.3632812, 2.1582031, 0.39697266, -0.77001953, 0.75683594, -0.4892578, -0.5878906, 1.3925781, -2.2324219, 2.1582031, 1.2695312, -1.2304688, -1.5400391, 3.2109375, -0.86621094, 2.8164062, 2.7304688, 1.0488281, 1.2617188, 1.8417969, 2.6640625, 0.12866211, 1.1699219, 0.9458008, -0.7602539, 2.6972656, 2.0449219, 2.9414062, 0.03213501, -0.2775879, 1.8847656, -0.81591797, -2.4921875, 1.1152344, 0.3071289, 0.7133789, -1.5839844, 1.265625, 0.4699707, 1.2763672, -1.5283203, 0.79833984, -0.51904297, -1.8105469, -0.8642578, 0.73046875, 2.8359375, -1.9130859, 0.48486328, -0.27905273, 0.41430664, 1.9736328, -4.0625, 1.1181641, 2.1035156, -0.8925781, 0.18066406, 0.9638672, 0.81347656, -0.44604492, 0.6401367, 1.1455078, 1.1875, 0.21679688, 0.27807617, -0.1920166, 0.44628906, 0.24157715, 2.9238281, -0.71435547, -0.8041992, 2.7167969, -1.7744141, -2.3417969, -4.640625, 3.640625, 1.5478516, 1.6230469, 2.3203125, -1.1181641, 1.8974609, 0.89404297, 0.8564453, -2.1054688, 0.515625, 0.13928223, -2.1191406, -1.9414062, 1.3818359, -0.17797852, 2.4101562, 1.8720703, -0.74316406, 1.6953125, 0.5571289, 0.70166016, 1.4501953, 2.1621094, -0.41796875, 0.9165039, -0.22058105, 2.4140625, -0.23864746, -2.1425781, -2.0097656, 2.2480469, 1.4892578, -0.27563477, 0.46435547, -0.6357422, -1.7382812, -0.6147461, 0.07220459, 0.12365723, -2.9980469, -2.109375, 0.42700195, -0.08929443, -1.4355469, -1.9716797, 1.7617188, 1.1230469, -0.6928711, 0.20483398, 3.1347656, -0.13647461, 1.6708984, 0.92285156, -0.117004395, 0.029663086, -1.4296875, 0.4399414, 0.26831055, -2.1796875, 0.31201172, 1.0517578, 1.6357422, -0.7392578, -0.41870117, 0.47192383, -0.0914917, -0.06793213, 1.2216797, -1.125, -0.9770508, 1.6357422, -1.0898438, -1.1279297, 2.3808594, 0.08123779, -0.022857666, -2.1992188, -2.6738281, -0.8076172, 0.5229492, -0.40307617, 0.8852539, 3.6503906, 1.9550781, 1.2167969, -1.5214844, -4.2070312, -0.3395996, -0.41870117, 1.7431641, -2.2949219, -0.039398193, 0.8027344, 1.2539062, 2.2402344, -0.5258789, -2.5273438, -0.78027344, -2.6894531, 0.5185547, -0.049926758, 2.5273438, -1.6083984, 0.78125, -0.1550293, 1.1474609, 2.2480469, -0.77490234, 1.3466797, 2.8691406, 0.4794922, -1.6904297, 2.3984375, 0.25097656, -0.1373291, 0.2775879, -0.09161377, 0.80078125, 0.54345703, 0.72998047, -1.1171875, -3.4394531]}, "B08XTGT9J1": {"id": "B08XTGT9J1", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver\nDescription: \nFeatures: Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time.\nHigh Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat.\nSear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces.\nHassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\nDurable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.\n", "embedding": [-1.2695312, 0.8803711, 0.91064453, -0.09881592, 0.059814453, 1.9287109, 1.4433594, -1.4628906, -0.89208984, 1.1572266, 1.1542969, -0.6855469, 0.55126953, -3.2246094, 0.7631836, 0.9458008, 0.8574219, 0.63916016, 1.5830078, 0.12109375, 0.053894043, 1.2949219, 3.3261719, -0.72021484, -0.23132324, 1.5048828, 2.5878906, -4.7851562, -0.24902344, -1.3925781, 2.875, 0.34179688, -0.18164062, 1.5097656, -3.5390625, -0.8300781, -1.6689453, 0.88671875, -3.0703125, 1.53125, 0.34960938, -1.8623047, 1.2705078, 0.98535156, -2.3710938, 0.4194336, -0.08190918, -0.19140625, -1.8535156, -1.0136719, 1.2421875, 1.4824219, -0.53125, -0.13220215, -0.52001953, 1.8037109, 1.1728516, -1.2412109, 1.5683594, -0.21655273, 2.9414062, 0.026031494, -1.7822266, -0.12030029, -0.35791016, -0.9970703, -0.49438477, 0.2310791, -0.4736328, -1.0410156, 2.2910156, 0.19226074, -1.6025391, 0.25317383, -0.028564453, -1.4296875, -2.5800781, 2.4121094, 1.0068359, -0.58935547, -2.8378906, 2.2109375, 1.6474609, -1.6142578, -0.52490234, 1.6376953, -1.1357422, -1.2724609, 1.9257812, 0.86621094, 0.37158203, 3.3203125, -3.0410156, -3.4589844, 2.7832031, -1.7480469, 1.9482422, 1.6259766, -0.016784668, 0.8286133, 0.18579102, -1.1748047, -2.4492188, -1.8242188, -0.5566406, -1.421875, 1.4433594, 0.22631836, -2.8222656, -0.86376953, -1.8759766, 1.3408203, 1.7929688, -0.8144531, 0.63183594, 0.7050781, 0.12683105, 2.4121094, 1.7148438, 0.26708984, 2.3417969, -0.32666016, 1.8486328, -1.9804688, 0.5888672, 0.45532227, -1.5976562, 2.1777344, 4.4570312, -2.25, -1.4921875, -2.5722656, 2.0117188, -0.4194336, -0.95410156, -1.6298828, -2.2597656, -0.7963867, -3.1484375, 0.6381836, -2.2382812, 0.83935547, 2.5800781, -0.08026123, -3.2128906, -0.082458496, -0.73779297, 1.3583984, -0.26635742, -1.1328125, 0.46118164, -1.7880859, 1.1513672, -2.6816406, 1.9570312, -1.3837891, -0.20117188, -1.609375, 4.3359375, 0.099853516, 0.5175781, -3.0136719, -1.0380859, 1.0878906, -1.2529297, -0.8173828, -0.87597656, 2.8769531, 1.2148438, 1.6269531, -0.04348755, -1.3701172, 0.061157227, -0.5390625, 0.61376953, -1.2734375, -1.0253906, 1.5800781, 0.3383789, -0.35473633, -1.6552734, -2.5097656, 0.32226562, 0.8964844, 1.1279297, -1.6240234, 0.5493164, 0.5883789, 0.7128906, -0.77978516, 0.4819336, -0.29101562, 0.0056152344, 0.11260986, -1.6474609, -0.30371094, -0.7265625, -1.3300781, -0.30444336, 0.8100586, -1.0126953, -0.012924194, -0.38842773, 0.87597656, -3.015625, -4.0625, -0.40429688, -2.2753906, 1.6054688, 1.1367188, 1.8427734, -1.7880859, 0.5161133, -0.93115234, 0.61816406, -1.0732422, 2.2109375, -0.042938232, 1.3496094, 2.9785156, -0.030532837, -0.2322998, 1.7207031, 2.0507812, -0.2442627, 1.8271484, 0.38085938, 1.4316406, -1.4160156, -1.3935547, 2.1367188, -0.16235352, 0.70654297, 1.5292969, -0.9824219, 2.1035156, -0.72802734, -1.890625, -0.44311523, -0.33813477, 0.08428955, -1.8369141, -0.9658203, -2.1425781, -0.15563965, 1.3222656, -1.4365234, 1.8876953, 1.6894531, 0.79345703, -0.7949219, 0.31762695, 0.78564453, 0.23376465, -0.20483398, -0.1262207, -0.97314453, 1.2910156, -1.5898438, -2.5234375, 2.0449219, -0.20227051, -0.04977417, -1.0380859, 0.5698242, -1.7607422, 2.5664062, 0.9658203, -3.0800781, -1.5429688, -0.021652222, -0.42651367, 2.0703125, -1.4794922, 0.85302734, 1.640625, -1.2939453, 3.1308594, -0.82177734, 0.9238281, 0.6586914, -0.8359375, 2.0820312, -2.4238281, -0.6723633, 0.5307617, 2.3535156, -1.1181641, -0.11187744, 1.1337891, 4.421875, -1.1611328, -3.21875, 2.6191406, -1.4755859, -0.7182617, 2.1386719, -1.1689453, -0.3737793, 0.35375977, 1.828125, -0.38500977, 1.8769531, 0.6303711, -0.7734375, -1.9287109, 0.95996094, -1.9423828, -0.67285156, 0.31103516, 0.30200195, -1.1542969, -2.2519531, -0.5883789, -0.86376953, -1.5693359, 2.8710938, -3.3398438, 1.9746094, 0.5678711, 1.9365234, 1.3417969, -1.0986328, -1.3056641, -0.8466797, 0.6455078, -1.1083984, -0.28588867, -0.060546875, -0.36108398, 0.2319336, -0.88916016, 0.37597656, -2.0917969, -2.7246094, -0.66503906, -2.9042969, -2.1191406, -0.6875, -3.1132812, -1.265625, 0.74560547, -2.7539062, 0.41601562, -0.47973633, -4.9179688, -0.96533203, -1.1445312, -1.6464844, 0.21020508, -0.12487793, 0.16333008, -1.3330078, -2.5527344, 0.5161133, -0.6948242, -0.5185547, 1.1992188, 1.3486328, -0.9482422, -0.7319336, -0.92822266, -0.84375, 0.7006836, 1.0927734, -1.7705078, -0.5864258, -3.5703125, 0.30981445, -2.7832031, 0.28466797, 0.21325684, 1.0664062, -2.4765625, -1.4199219, -0.67089844, -1.5205078, 3.5625, -0.08581543, 0.6801758, 0.10522461, 0.22851562, 1.3232422, -0.0231781, -2.734375, -0.6699219, 0.22314453, -2.7109375, -3.0585938, -2.0898438, 0.47998047, -0.31201172, 0.3581543, -0.8027344, 3.1132812, -1.9892578, 1.2529297, -1.5341797, -0.7260742, 0.3022461, 1.7851562, -0.31347656, -0.35107422, -2.4160156, -0.6743164, -0.8647461, -0.76904297, 0.14685059, 2.6992188, -1.0683594, 1.2734375, 0.30859375, -0.61816406, 0.9140625, -0.9165039, -2.1679688, 3.7285156, 2.125, -2.3144531, 3.2421875, -1.8554688, -2.9414062, -1.6416016, -0.42895508, 2.6914062, 1.6875, 2.8457031, 0.31323242, 1.5517578, 0.3996582, 1.6201172, 0.18774414, -0.89941406, -0.8925781, 2.5761719, -1.4814453, -2.5742188, 0.8388672, 2.6542969, -2.2050781, -0.8618164, 2.8359375, 2.3222656, 3.7226562, 1.5605469, 1.8095703, 1.8017578, -0.69873047, 1.5537109, 1.0058594, 1.0439453, 0.20227051, -0.6958008, 0.7602539, -0.8276367, 1.2451172, 1.9335938, -0.24633789, 2.4941406, 1.8242188, 0.88964844, -1.2783203, 0.5527344, 1.4677734, 2.6074219, 0.5415039, 1.5986328, -0.53759766, 1.2607422, -0.1340332, -1.1962891, 0.13183594, -2.3085938, -0.12176514, 1.7578125, 0.18676758, 0.74658203, 1.7382812, 1.140625, 0.68896484, -0.103637695, 0.22387695, -1.2890625, 0.14929199, 0.3173828, -0.24499512, -0.19299316, -2.0488281, 1.2216797, -0.9506836, -2.5820312, 0.029037476, 3.1601562, -0.8823242, -2.0019531, 1.9042969, 0.24938965, -0.98291016, 2.3984375, 0.5058594, -1.1474609, 0.1965332, -1.671875, 1.3134766, 0.30371094, -0.9609375, -1.4111328, -1.0507812, -0.20690918, 0.79589844, 0.15905762, 1.5800781, 2.234375, -2.5, 0.082336426, -4.1875, 0.052978516, 0.6542969, -1.8945312, -0.87890625, 2.1308594, 0.77001953, 1.5283203, -1.328125, 3.6601562, 0.43115234, -0.54541016, 1.6660156, -2.6308594, -1.4931641, -4.2265625, -4.0585938, 0.83935547, -1.1621094, -1.9423828, 1.5429688, 0.46411133, -0.81347656, 2.03125, -0.47265625, -1.6601562, -1.0439453, -1.4775391, 0.019989014, -1.1074219, -0.6274414, 0.86816406, -0.2746582, -2.5195312, -3.0507812, -0.7026367, 0.39282227, 1.9775391, 2.2285156, -3.6679688, 1.9853516, -1.9375, 0.38061523, 0.071899414, -0.76904297, 1.8271484, -1.6259766, 0.25683594, -3.2011719, 0.9926758, 0.96533203, -0.20263672, 2.6933594, 2.1699219, 0.5839844, -2.4042969, -0.5292969, 1.1230469, 4.0546875, -0.75390625, -2.8378906, -2.0214844, 1.4912109, -0.09631348, -1.2841797, -1.09375, -1.5224609, -1.3261719, -0.83447266, 2.9335938, 2.0703125, 1.3769531, 0.38916016, -2.859375, -0.8408203, 0.22998047, -2.4785156, -1.4931641, -1.3144531, 1.5078125, -0.5234375, -1.2802734, -1.2822266, -0.5864258, -1.6064453, -0.32910156, -2.4453125, 3.6738281, 3.2539062, 1.2148438, 2.6621094, -0.9370117, -0.07269287, 0.96240234, 0.2836914, -1.5351562, 1.1601562, 0.40893555, 0.31884766, 2.0273438, 0.54345703, -1.7646484, -0.74121094, 2.1933594, -2.6914062, -0.67626953, -0.53564453, 0.4814453, -0.12634277, -1.078125, 2.109375, -0.75439453, 2.8027344, -0.53759766, -0.62109375, -0.3071289, -0.02330017, -1.5595703, 0.42016602, 0.20898438, 0.6791992, 0.46142578, 2.0742188, 2.2460938, -1.6269531, 0.20898438, -1.484375, 2.1523438, -0.35229492, 0.46044922, -1.0585938, 0.81884766, 0.5917969, -1.3984375, 1.4287109, 2.0332031, -0.0748291, 3.6269531, 1.8300781, -2.65625, 1.4980469, 0.5493164, -2.0390625, -0.5546875, 1.7148438, -0.3474121, 1.0634766, 0.9453125, -4.2773438, -0.96728516, 2.2382812, -1.0947266, 1.4433594, -0.26513672, -1.7529297, 1.5380859, -0.5024414, -1.2578125, -0.6118164, 1.1210938, -0.28759766, 0.2919922, 0.27001953, -2.21875, 0.8955078, 2.2753906, -0.49658203, -1.7724609, 3.2246094, -0.33984375, 1.9189453, -0.7788086, 0.56347656, -2.15625, 0.34765625, 3.2890625, 1.2861328, 1.9228516, 0.46972656, 1.1181641, -2.3691406, -0.00894928, -2.2832031, 4.234375, -1.8242188, -0.3503418, 3.4667969, -2.8554688, 1.2568359, -3.234375, 0.33569336, -0.45092773, 2.0429688, 1.5351562, -0.27929688, -0.35009766, 0.86376953, -1.5839844, -3.6796875, -1.671875, 1.5927734, 0.5366211, 0.038635254, 0.86083984, -1.3828125, 0.4050293, 0.3005371, 0.004524231, -1.9257812, -0.41577148, -1.4931641, -0.9213867, -1.0839844, 0.9916992, -0.61035156, 0.9326172, -0.06414795, 0.8955078, 1.2861328, -3.9902344, -2.2441406, 1.0859375, -1.7724609, 0.76904297, 2.7792969, 0.7050781, 0.077697754, 0.5541992, 0.1104126, -2.1523438, 2.0292969, -1.7265625, 0.15991211, 1.1552734, -0.40673828, 0.90185547, -0.8041992, -1.4560547, 0.14086914, -1.9863281, 0.60595703, 1.4277344, 0.39819336, -0.59375, 1.5039062, -0.31347656, -1.5859375, 0.5253906, -0.27929688, 0.9350586, 1.8535156, -2.1328125, -0.53808594, -1.7880859, -1.6523438, -0.5644531, -2.8066406, 0.30297852, -0.61572266, 0.62597656, 0.9814453, -0.33007812, 0.41455078, 0.47631836, -0.71728516, -0.72558594, 0.41430664, -1.6582031, 2.3007812, 2.0449219, -1.7421875, -0.49951172, -1.2207031, 0.4711914, 2.0722656, 1.1699219, -0.27026367, -0.20117188, 0.5527344, -0.33496094, -0.18273926, 0.6826172, 2.1660156, 0.25, -2.1621094, 1.7929688, 4.1289062, 0.7348633, -0.036743164, 0.94091797, 0.5541992, 1.2744141, 5.203125, -0.17028809, -1.9189453, 1.3916016, -2.0136719, 1.8017578, -0.25146484, -1.8398438, 0.7944336, -1.6992188, -1.9716797, -3.1894531, -1.2539062, -2.5097656, 1.5654297, 1.7158203, -0.6401367, -0.45898438, 2.6855469, 0.49926758, 1.7011719, 1.9970703, 0.93408203, 0.38842773, 0.6411133, -1.1933594, 0.009475708, 1.7587891, -2.5605469, 2.3886719, 1.4121094, -0.8046875, -1.2998047, 3.5878906, 0.46826172, 2.1835938, 1.5917969, 0.89501953, 1.3701172, 1.890625, 3.6601562, 0.16479492, 1.4873047, 1.3740234, -1.0898438, 2.3359375, 2.6601562, 3.7832031, -0.19226074, -0.14880371, 2.4394531, -1.046875, -1.7294922, 0.78027344, -0.14941406, 1.7148438, -2.0585938, 1.8798828, -0.0037841797, 0.50390625, -1.8193359, -0.21130371, -0.033996582, -1.5488281, -1.7089844, 0.7661133, 2.4863281, -0.5800781, 0.74316406, -0.14099121, 0.057769775, 1.8564453, -3.8320312, 2.015625, 1.3886719, -0.4182129, 0.24707031, 1.1162109, 1.3398438, 0.27416992, 0.90966797, 2.296875, 1.1435547, 1.4130859, 0.5493164, -0.7885742, 0.52246094, 0.32177734, 3.1855469, -0.5136719, -1.0097656, 2.5878906, -1.9306641, -2.0644531, -4.71875, 3.7050781, 2.3886719, 0.7207031, 2.09375, -1.2451172, 2.1582031, -0.6069336, 1.2001953, -2.0898438, 0.56933594, 0.047668457, -3.1601562, -1.4375, 0.42456055, -0.030273438, 1.4570312, 2.2226562, -1.0888672, 2.0625, 0.5151367, 0.96240234, 2.0761719, 1.5634766, -0.53564453, 0.6977539, -0.7216797, 1.8994141, 0.0340271, -2.2226562, -2.2128906, 2.3457031, 0.9873047, -0.12225342, 0.59716797, -0.19799805, -1.1962891, -1.6259766, -0.7207031, -0.1829834, -2.9355469, -2.3242188, 0.22741699, -0.7138672, -1.6542969, -2.2304688, 2.0058594, 1.0947266, -1.0566406, -0.46850586, 3.0273438, -0.6972656, 1.6181641, 0.47338867, 0.38134766, 0.26757812, -1.4267578, 0.9033203, 0.5800781, -1.6347656, 0.08178711, 0.5996094, 1.1904297, -1.0429688, -0.51660156, -1.0595703, -0.42163086, 0.57128906, 1.4833984, -0.9355469, -0.4326172, 2.4726562, -0.91845703, -0.34106445, 3.1035156, 0.113098145, -0.43188477, -1.9453125, -2.5605469, 0.31811523, -0.5473633, -0.6035156, 1.0009766, 4.2890625, 2.4863281, 0.39941406, -2.1621094, -3.3691406, 0.103637695, -1.3300781, 0.9873047, -1.4775391, -0.2980957, 0.17919922, 0.7705078, 2.1445312, -0.093444824, -2.125, 0.32202148, -1.3876953, 0.40795898, 0.082336426, 2.9238281, -0.8334961, 1.1533203, 0.25952148, 2.4785156, 2.6796875, -0.99902344, 1.2529297, 2.3925781, 0.08514404, -2.8320312, 1.8193359, -0.033813477, 0.35058594, 0.41015625, 0.81591797, 1.4082031, 0.5908203, 1.5576172, -1.0722656, -3.5976562]}, "B091F5ND56": {"id": "B091F5ND56", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "embedding": [-0.6616211, 0.35717773, 0.9189453, 0.17211914, 0.6542969, 2.0742188, 0.70703125, -1.3212891, -1.2890625, 0.23461914, 0.6850586, -0.056488037, 0.6323242, -3.7949219, 0.25830078, 0.4501953, 0.4729004, 0.109558105, 1.6386719, -0.18408203, -0.14538574, 1.9453125, 2.9609375, 0.82373047, -0.2890625, 1.3886719, 3.5957031, -3.1210938, -0.3737793, -1.2832031, 3.4726562, 0.5283203, -0.6826172, 1.1416016, -3.5722656, -0.94433594, -1.6875, 0.7470703, -1.6640625, 1.5761719, 0.6801758, -1.9853516, 0.4987793, 1.4462891, -2.578125, 0.1307373, -0.4255371, 0.31835938, -1.7324219, -1.1162109, 0.9970703, 1.2548828, -0.7392578, 0.13085938, -1.0273438, 1.9169922, 1.3505859, -2.03125, 1.1132812, 0.5, 2.7558594, -0.120910645, -1.8320312, -0.51464844, -0.8466797, -0.99560547, 0.7006836, 0.29516602, -0.4831543, -2.0410156, 1.8095703, 0.4855957, -1.6757812, 0.17651367, 0.20031738, -0.69140625, -2.1054688, 1.7021484, 1.6162109, -1.0576172, -1.5175781, 2.0078125, 1.2314453, -2.1542969, -0.011650085, 1.0380859, -0.75146484, 0.2722168, 2.359375, 1.4326172, 0.43554688, 2.5664062, -3.2734375, -4.1054688, 2.8710938, -1.8095703, 0.023132324, 0.90625, 0.25512695, 1.8896484, 1.2832031, -1.4072266, -2.0957031, -1.3330078, 0.6274414, -1.2099609, 1.2402344, 0.29370117, -2.2734375, -1.5371094, -2.5449219, 0.5361328, 0.8256836, -0.36035156, -0.17687988, 0.53222656, 0.10675049, 1.7294922, 1.4638672, -0.38134766, 1.6044922, -0.5234375, 1.4179688, -1.1933594, 0.4482422, 0.47460938, -1.1826172, 2.015625, 4.0742188, -1.3300781, -2.3984375, -2.0273438, 2.0566406, -0.45043945, -0.8071289, -1.65625, -2.4902344, -1.3027344, -3.5566406, 0.47583008, -2.1347656, 0.9614258, 2.4160156, 0.034118652, -3.0625, 0.60253906, -0.21948242, 1.4130859, -0.67822266, -0.005756378, 1.6894531, -1.9550781, 0.5205078, -3.2265625, 1.6484375, -0.91796875, -0.083496094, -1.8271484, 2.796875, 0.23803711, 1.1494141, -3.140625, -1.5732422, 0.9746094, -0.44604492, -1.0175781, -1.3017578, 2.4570312, 1.1855469, 1.5224609, 1.1064453, -1.5800781, 0.5229492, -0.08337402, 0.28979492, -1.7519531, -1.1992188, 2.234375, 0.89208984, -0.18762207, -1.4892578, -2.8554688, -0.20288086, 0.9404297, 1.1992188, -1.4287109, 0.8027344, 0.4189453, 0.5888672, -0.3293457, 1.3701172, -0.5708008, -0.1730957, 0.66308594, -0.8183594, -0.65771484, -0.21728516, -0.4416504, -1.4169922, 0.5175781, -1.3417969, 0.3840332, -0.22766113, 0.92871094, -3.3183594, -3.734375, -0.5732422, -1.2988281, 2.0273438, 2.015625, 1.5625, -1.7841797, 0.41748047, -0.92041016, 0.9663086, -1.5673828, 1.8945312, -0.2208252, 1.0429688, 2.2636719, 0.4892578, 0.7207031, 0.46606445, 2.1269531, 0.14758301, 2.3320312, -0.5908203, 1.9863281, -1.7041016, -1.4863281, 2.515625, 0.23400879, 0.08276367, 0.51220703, -1.1259766, 1.9482422, -0.5527344, -1.5449219, -1.1650391, -0.06732178, -0.13867188, -2.2304688, -1.2705078, -1.5058594, 0.19506836, 1.1640625, -2.1308594, 1.7695312, 1.6142578, 0.9614258, -1.4199219, 0.9086914, 1.7949219, 0.7944336, 0.11590576, 0.32617188, -1.1972656, 1.5146484, -2.0605469, -0.98876953, 1.3417969, 0.04989624, -1.6230469, -0.9248047, 0.35766602, -1.5683594, 2.6914062, 0.74902344, -2.2910156, -2.0996094, -1.0771484, -0.62841797, 1.9853516, -0.41259766, 0.8149414, 1.0517578, -1.4736328, 2.2050781, -1.4960938, 0.51904297, 0.9277344, -0.5673828, 2.3339844, -1.625, -0.70751953, -0.39257812, 1.8232422, -1.4121094, 1.1708984, 1.8613281, 4.4609375, -1.4863281, -3.2167969, 3.2089844, -1.1933594, -1.3261719, 0.8959961, -0.79785156, -0.19604492, -0.33618164, 1.9492188, 0.28149414, 1.3203125, 0.5410156, -0.65966797, -1.3408203, 0.11279297, -1.3232422, -0.94189453, 0.026000977, -0.124816895, -1.3818359, -1.8417969, 0.43798828, -1.0126953, -2.1914062, 1.8144531, -2.3222656, 2.1152344, 0.609375, 1.5419922, 1.7978516, -1.0839844, -1.8066406, -0.9272461, -0.13684082, -1.21875, -1.0136719, 0.44018555, -0.7836914, 0.15551758, -0.037231445, 0.6855469, -1.5595703, -2.6269531, -0.3708496, -2.53125, -1.2373047, -0.60839844, -2.4941406, -1.7753906, -0.08746338, -2.6777344, 0.49731445, -0.32910156, -4.4296875, -1.5419922, -0.75390625, -0.57421875, 1.0888672, -0.07739258, -0.111694336, 0.44482422, -3.796875, 0.16967773, 0.015731812, -0.6279297, 0.42773438, -0.9628906, -1.0322266, 0.12194824, -0.57128906, -0.9086914, 0.20593262, 1.2138672, -0.2854004, -0.71972656, -3.4882812, 0.5761719, -2.2109375, 1.3164062, 0.014091492, 1.0546875, -2.265625, -0.5385742, 0.16491699, -1.9804688, 4.2851562, -0.7138672, 1.7587891, -0.41333008, 0.15112305, 1.1582031, -0.057525635, -2.2753906, -1.7353516, -0.49023438, -3.0585938, -3.4941406, -2.0722656, 0.02960205, -0.49169922, -0.08984375, -0.91503906, 2.4277344, -1.8183594, 1.6416016, -1.40625, -2.328125, 0.89501953, 1.2294922, -0.076416016, 0.62353516, -1.1230469, -1.140625, -1.4228516, -0.8354492, 0.6645508, 3.3515625, -0.26757812, 2.2636719, -0.2220459, -0.7246094, -0.31201172, -0.46826172, -2.9394531, 3.2441406, 2.4648438, -2.6757812, 2.3964844, -0.9760742, -2.4003906, -1.234375, 0.26367188, 2.7285156, 1.9521484, 2.9160156, 0.47705078, 1.9521484, 1.4150391, 3.0410156, 0.6904297, -0.2800293, -0.55566406, 2.0996094, -1.4277344, -3.2109375, 0.4855957, 1.8037109, -1.3798828, -1.6162109, 1.1503906, 1.9628906, 3.9902344, 1.5800781, 1.7675781, 1.4648438, -1.09375, 1.4160156, 0.69921875, 0.5683594, -0.85791016, -0.43310547, 1.3144531, -0.23999023, 0.4104004, 2.921875, 0.13000488, 2.1210938, -0.3100586, 0.9633789, -1.0097656, 1.1542969, 1.3603516, 2.5351562, 0.15490723, 0.57666016, -0.08709717, 1.5361328, 1.2587891, -0.7944336, 0.0418396, -3.1660156, 0.26708984, 1.53125, 0.37573242, 0.39770508, 1.2011719, 0.93066406, 0.91748047, 0.32006836, -0.53808594, -1.5683594, 0.06359863, -0.1986084, -0.3322754, -1.1640625, -2.5585938, 2.5214844, -0.5078125, -2.2167969, 0.2746582, 2.8359375, -1.1767578, -1.1162109, 2.2597656, 0.39208984, -1.1738281, 1.5917969, 0.87353516, -0.80810547, 1.2265625, -1.5371094, 0.46801758, 1.0888672, -0.6621094, -0.40185547, -1.9736328, 0.50097656, 0.30664062, 0.45507812, 1.6708984, 1.2480469, -1.5908203, -0.13305664, -2.9667969, -0.05795288, -0.033203125, -1.7480469, -0.5288086, 1.6855469, 0.34448242, 0.92041016, -1.8242188, 4.6601562, 0.56591797, -1.3046875, 1.8974609, -2.7382812, -2.5214844, -4.3242188, -3.5390625, 0.79296875, -0.7915039, -1.5195312, 1.8417969, 0.62646484, -0.24633789, 2.5722656, 0.2824707, -1.8017578, -0.7871094, -0.69140625, 0.5649414, 0.08514404, -0.90527344, 1.6787109, -1.0986328, -2.796875, -2.4648438, -0.2770996, -0.13684082, 1.7734375, 1.96875, -2.5351562, 2.0585938, -1.9453125, 0.84228516, -0.58691406, -1.1015625, 0.8881836, -1.53125, 0.44335938, -2.8339844, 1.9150391, 1.3613281, -1.3417969, 0.9008789, 0.5883789, 0.79541016, -2.6210938, -0.58203125, 0.57373047, 3.7167969, -0.43945312, -2.7167969, -1.8925781, 0.3383789, 0.006500244, -1.3613281, -0.44311523, -0.5292969, -1.9628906, 0.5942383, 2.4023438, 1.0693359, 1.7646484, 0.6665039, -3.7792969, -1.4267578, 0.5229492, -1.4550781, -1.3789062, -1.6855469, 1.1005859, -0.030197144, -1.1552734, -1.0986328, 0.3293457, -2.3847656, -0.50878906, -2.3222656, 3.6972656, 2.421875, 0.69140625, 3.1464844, -1.1767578, -0.075805664, 0.89208984, 0.111328125, -1.3173828, 1.5205078, 0.023498535, 0.56884766, 1.4609375, -0.15673828, -1.875, -0.4296875, 1.8017578, -1.5117188, 0.22521973, -0.5444336, 0.17529297, -0.6899414, -0.66259766, 2.9628906, -0.26635742, 2.1542969, -0.6557617, 0.14001465, 0.14294434, 0.10772705, -1.3847656, 1.3046875, -0.45043945, 1.5234375, -0.88623047, 1.7392578, 1.4580078, -1.9716797, -0.8222656, -0.7871094, 1.2294922, -0.1821289, 0.70214844, -0.3239746, 0.23254395, 0.25683594, -1.9736328, 1.9550781, 2.3808594, 0.19506836, 3.5273438, 0.828125, -2.046875, 2.0644531, -0.5385742, -1.7480469, 0.4597168, 1.2041016, -0.15991211, 0.6386719, 0.82666016, -3.6523438, -1.1796875, 2.640625, -0.68359375, 0.9501953, -0.35498047, -1.6640625, 1.1044922, -0.5576172, -0.7836914, 0.33154297, 0.49145508, -0.39575195, -0.8466797, 0.40966797, -2.3085938, 1.2646484, 2.03125, 0.042022705, -2.28125, 3.0664062, -0.96875, 1.0009766, -0.8413086, 0.55908203, -2.4414062, -0.07507324, 3.4726562, 1.34375, 1.7949219, 0.96728516, 0.96728516, -2.9726562, 0.5332031, -2.5, 3.8222656, -2.4472656, -0.4387207, 2.7460938, -2.6132812, 1.9570312, -2.1152344, 0.31518555, -0.8222656, 2.3339844, 1.78125, -0.069885254, 0.22473145, 1.0322266, -1.4541016, -3.5449219, -2.3535156, 0.93847656, -0.10211182, -0.69384766, 1.3261719, -1.6767578, 0.9116211, 0.921875, -0.051574707, -1.6992188, -0.29492188, -1.7109375, -1.4765625, -1.5205078, 0.02218628, -1.53125, 0.85839844, -0.4519043, 0.14550781, 0.9873047, -3.6660156, -1.7734375, 1.6455078, -2.0214844, 1.0947266, 2.7597656, 0.4638672, -0.40429688, 0.15185547, -0.27563477, -1.0146484, 1.5175781, -1.6445312, 0.8364258, 1.0351562, -0.68652344, 1.4785156, -1.2900391, -1.2929688, 0.049468994, -1.2451172, 0.9614258, 0.6953125, 0.50439453, 0.35180664, 0.9116211, -1.1738281, -2.5234375, 0.59033203, -0.11645508, 0.71484375, 1.5517578, -2.0195312, -0.98291016, -1.9746094, -2.453125, -1.1640625, -2.6835938, 0.4880371, -0.56347656, 0.38916016, 0.45239258, -0.7182617, 0.39794922, 0.048461914, 1.0927734, -0.66796875, 0.15722656, -1.5703125, 2.3320312, 1.7392578, -2.7382812, -0.13537598, -0.6958008, 1.1318359, 2.1210938, 1.2412109, 0.04928589, -1.171875, -0.48779297, -0.38134766, -0.28320312, 0.66308594, 2.3847656, -0.8364258, -0.32006836, 1.0761719, 2.7578125, 1.3808594, 0.14746094, 1.5546875, 0.94921875, 0.44482422, 4.484375, -1.2441406, -2.2910156, 1.2646484, -2.2519531, 2.8398438, 0.54296875, -2.4589844, 1.6044922, -1.3388672, -1.7470703, -2.3027344, -0.6772461, -3.0507812, 1.8720703, 1.6669922, -0.053985596, -1.1494141, 2.9550781, 1.0986328, 1.6162109, 1.234375, 0.04486084, 0.23474121, 0.2565918, -0.6958008, -0.53808594, 1.4785156, -1.7294922, 2.2128906, 1.7832031, 0.021362305, -0.85791016, 3.4023438, 1.140625, 2.2226562, 1.84375, 1.3955078, 2.2695312, 2.6542969, 2.6816406, 0.5522461, 1.4238281, 0.89501953, -1.0800781, 2.7871094, 2.21875, 3.6191406, -0.5307617, -0.6196289, 2.96875, -0.09802246, -1.03125, 0.21936035, 0.49023438, 0.51464844, -1.1640625, 1.1816406, 0.6821289, 0.6508789, -1.9765625, 0.3605957, -0.61328125, -0.9375, -1.4443359, 0.69873047, 3.0566406, -0.3413086, 0.26245117, -0.59765625, -0.42773438, 2.3105469, -3.7148438, 1.0351562, 1.9082031, 0.07244873, 0.19433594, 1.3886719, 1.2304688, 0.2084961, 1.1152344, 1.4775391, 0.51904297, 0.828125, 1.1796875, -1.1298828, 0.9189453, 0.3708496, 3.1132812, -1.3457031, 0.15917969, 2.2753906, -1.0810547, -2.1035156, -4.6757812, 2.9882812, 1.5800781, 1.3427734, 1.8271484, -1.6787109, 1.9980469, 0.20178223, 1.1982422, -1.9316406, 0.8510742, -0.38842773, -1.9296875, -2.0488281, 0.8227539, 0.6665039, 1.7392578, 1.4003906, -1.5654297, 1.7675781, -0.16308594, 0.8535156, 2.3398438, 1.6728516, -0.23498535, 0.17358398, -0.27978516, 2.0273438, 0.2052002, -1.2539062, -0.59716797, 1.5507812, 1.1601562, -0.74902344, -0.030853271, 0.046936035, -1.7558594, -0.4189453, -0.8378906, -0.7631836, -2.3710938, -2.3007812, 0.6689453, 0.4050293, -2.4101562, -1.7529297, 0.81347656, 0.41064453, -0.30615234, -0.38720703, 2.2148438, -1.1552734, 1.6699219, 1.4648438, -0.099731445, 0.84277344, -2.2460938, 1.1230469, 1.6542969, -2.1210938, -0.04574585, 0.47924805, -0.3618164, -1.3925781, 0.080078125, -0.12927246, -0.53027344, 0.82373047, 1.4111328, -0.6801758, -1.7041016, 1.2949219, -1.5449219, 0.5541992, 3.0351562, 0.037322998, -0.21276855, -2.5546875, -1.8916016, -0.75878906, -0.039489746, 0.20349121, 1.5068359, 3.5390625, 2.5410156, -0.027786255, -1.7871094, -2.8203125, 1.3193359, -0.7993164, 1.4111328, -1.5400391, -0.14807129, 0.25585938, 0.6533203, 2.9765625, -0.33007812, -2.140625, -0.38208008, -2.1796875, 0.36767578, -0.13098145, 2.0722656, -0.33276367, 1.3417969, 0.39257812, 1.6425781, 2.1660156, -0.2397461, 1.4794922, 2.6679688, 0.29418945, -1.9257812, 2.6738281, -0.93896484, 0.8989258, -0.24182129, 0.6123047, 0.72509766, 1.3417969, 1.7548828, -0.55078125, -2.6757812]}, "B091F4D7FF": {"id": "B091F4D7FF", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver\nDescription: \nFeatures: High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time.\nSufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "embedding": [-2.0605469, 0.33813477, 1.53125, -0.19689941, -0.058807373, 1.6708984, 1.0566406, -1.0546875, -1.3388672, 0.55126953, 1.3681641, -1.1933594, 0.46264648, -2.3886719, 0.25268555, -0.39746094, 0.44702148, 0.3701172, 0.85498047, 0.46923828, 0.18139648, 1.5136719, 3.4921875, 0.119140625, 0.36767578, 1.6005859, 2.4628906, -4.0117188, -0.13427734, -0.61083984, 2.9433594, 0.28515625, 0.0121154785, 1.7070312, -2.9257812, -1.7832031, -1.7050781, 0.35766602, -3.1113281, 0.26831055, 0.7919922, -1.5927734, 1.3955078, 0.7973633, -2.4550781, 0.6435547, 0.3383789, 0.019088745, -2.3300781, -0.22167969, 1.3125, 0.9902344, 0.23583984, 0.48657227, -0.9008789, 1.8652344, 1.390625, -1.5410156, 1.2421875, 0.45581055, 2.5820312, -0.0076026917, -2.0410156, -0.086242676, -0.50634766, -1.2695312, 0.76416016, 0.041046143, -0.43823242, -1.0058594, 1.3310547, -0.53515625, -1.4072266, 0.5336914, -0.4831543, -1.9619141, -1.7226562, 1.8789062, 0.7421875, -0.1661377, -3.1132812, 2.1484375, 1.2451172, -2.0507812, -0.93359375, 0.8803711, -0.8745117, -1.0605469, 1.5048828, 0.90185547, 0.06329346, 2.0703125, -3.2578125, -3.9433594, 3.0234375, -1.5634766, 1.0058594, 1.2890625, 0.2944336, 2.1386719, -0.4868164, -1.2802734, -2.7460938, -1.4570312, -0.5317383, -2.3710938, 1.4257812, -0.118652344, -3.3515625, -1.2539062, -1.3134766, 0.75439453, 1.0625, -0.70654297, 1.0761719, 0.20080566, -0.3408203, 2.1660156, 2.0214844, 0.2980957, 1.8847656, -0.28808594, 1.8408203, -1.5810547, 0.74560547, 1.0585938, -2.0605469, 2.3242188, 5.3632812, -2.171875, -1.8886719, -2.625, 1.8935547, -0.88134766, -0.6928711, -2.3496094, -2.7128906, 0.12561035, -3.6074219, 0.75878906, -2.3066406, 1.1933594, 1.9443359, 0.30859375, -2.6425781, -0.0496521, -0.67041016, 1.0234375, -0.088134766, -1.0175781, 0.24157715, -1.7119141, 0.8984375, -3.4023438, 2.0761719, -1.2539062, -0.29174805, -1.8935547, 3.9238281, 0.67529297, 1.0537109, -3.3222656, -0.7705078, 1.4814453, -0.95751953, -0.9067383, -0.9707031, 3.8066406, 0.8623047, 1.7363281, -0.12487793, -1.7275391, 0.16918945, -0.82714844, 0.43725586, -0.5341797, -1.1630859, 2.3652344, 0.86816406, -0.7290039, -1.9755859, -2.9335938, 0.17541504, 0.2939453, 1.1914062, -1.4853516, 1.2333984, 1.2373047, 1.2636719, -1.0097656, 0.07702637, 0.29907227, -0.120910645, 0.33740234, -0.46850586, -0.38500977, -0.67089844, -1.4863281, -0.7216797, 0.011985779, -0.30664062, 0.045410156, -0.052001953, 1.3710938, -3.4785156, -3.390625, -0.3334961, -3.1503906, 1.9521484, 1.6064453, 1.9345703, -1.6708984, -0.19824219, -1.7197266, -0.15979004, -1.9824219, 2.2597656, -0.45703125, 1.9228516, 2.4960938, -0.6796875, 0.55371094, 1.0429688, 2.1738281, 1.0537109, 1.2353516, 0.6508789, 1.1816406, -1.4599609, -1.0449219, 2.1269531, 0.021636963, 0.68066406, 1.7783203, -1.1376953, 2.2539062, -0.7128906, -2.359375, -0.5493164, -0.2442627, 0.64453125, -1.9003906, -0.85253906, -1.5136719, -0.33618164, 0.94677734, -1.7880859, 2.3261719, 1.7529297, 1.0361328, -0.27172852, 1.4638672, 0.86816406, 0.22949219, -0.19384766, -0.32250977, -1.0732422, 0.44970703, -1.2324219, -1.4462891, 1.9277344, -0.59814453, -0.46240234, -0.77246094, -0.3095703, -1.9150391, 2.921875, 0.8647461, -2.3398438, -1.7832031, -0.07928467, -0.93115234, 2.3691406, -1.3085938, 1.1005859, 2.3417969, -1.6982422, 2.6035156, -1.3525391, 0.8671875, 0.5214844, -1.0117188, 1.7001953, -1.9423828, -0.17456055, 0.6953125, 1.8427734, -0.96533203, 0.5097656, 1.1201172, 4.2148438, -0.88671875, -3.265625, 2.3691406, -1.8867188, -1.3388672, 1.9179688, -0.7363281, 0.1328125, 0.0127334595, 1.4775391, 0.42260742, 1.5166016, 0.10870361, -1.1962891, -1.3310547, 0.62646484, -1.4394531, -0.9746094, 0.2932129, 0.67285156, -0.6635742, -2.6191406, -0.02909851, -1.5068359, -1.0507812, 3.0449219, -2.2480469, 1.625, 1.5253906, 1.6425781, 1.1445312, -1.7636719, -1.8046875, 0.1303711, -0.0070495605, -1.4501953, -0.3449707, -0.17456055, 0.13098145, -0.39624023, -0.546875, -0.19750977, -2.0957031, -2.4140625, -0.25097656, -3.2050781, -1.4941406, -1.1474609, -2.6269531, -1.2587891, 0.2680664, -3.609375, -0.41918945, -0.5888672, -4.0117188, -0.99365234, -1.8798828, -0.93359375, 1.0175781, 0.6513672, -0.055541992, 0.033996582, -3.2148438, 0.38720703, -1.1777344, -0.27319336, 0.9057617, 1.1865234, -0.5932617, -0.16418457, -1.5449219, -0.31591797, 1.2607422, 0.70996094, -1.3144531, -1.2988281, -3.8417969, 0.52490234, -1.5087891, 0.3527832, -0.48779297, 1.8291016, -2.171875, -1.4140625, -1.1201172, -1.0800781, 3.46875, -0.51904297, 1.2939453, 0.5175781, 0.70703125, 1.6660156, -0.25268555, -1.7460938, -1.2636719, 1.0761719, -2.9277344, -3.1035156, -2.6972656, 0.50439453, -0.328125, -0.07006836, -0.8125, 2.1035156, -1.2529297, 1.1708984, -1.7294922, -2.3242188, 0.45776367, 1.5380859, -0.44311523, -1.0576172, -2.0839844, -1.2744141, -0.87646484, -1.0126953, 0.37231445, 2.7929688, -1.546875, 1.2421875, 0.8901367, 0.011199951, 0.32250977, -1.3037109, -1.5996094, 4.03125, 0.63378906, -1.8037109, 2.1796875, -1.5566406, -3.1171875, -1.2773438, 0.31860352, 2.5527344, 0.7001953, 2.7988281, 0.5546875, 2.3867188, 0.9345703, 2.0175781, 1.3642578, -0.82714844, -0.62939453, 3.1171875, -0.16699219, -2.4042969, 0.28051758, 2.0820312, -1.5830078, -1.2216797, 2.5410156, 1.5634766, 3.1503906, 1.9443359, 1.4179688, 0.94433594, -1.28125, 1.8261719, 1.8095703, 1.2919922, -0.19519043, -0.97558594, 0.63623047, -1.2216797, 1.0917969, 2.890625, 0.20373535, 2.3046875, 0.4597168, 0.60498047, -1.1611328, 1.1152344, 1.8525391, 2.65625, 0.61328125, 1.9667969, -0.26586914, -0.09387207, -0.16333008, -1.7470703, 0.06781006, -2.3261719, 0.15637207, 1.8652344, -0.43188477, 1.1738281, 0.99121094, 1.0644531, 0.09857178, -0.072631836, 0.48242188, -0.97802734, 0.15307617, 1.0195312, 0.47753906, 0.6376953, -2.2792969, 2.2617188, -0.8828125, -1.1298828, 0.07800293, 2.8535156, -1.234375, -1.8847656, 1.4101562, 0.15844727, -1.2333984, 2.3457031, 1.0585938, -1.6289062, 0.7207031, -2.3222656, 1.0175781, -0.3684082, -1.0429688, -0.1451416, -1.1445312, -0.4873047, -0.04135132, 1.4306641, 1.4589844, 2.109375, -1.0283203, 0.40429688, -3.6035156, 0.52197266, 0.3022461, -1.9667969, -1.9492188, 1.9882812, 0.44799805, 0.8696289, -1.8144531, 3.484375, -0.3552246, -0.90478516, 1.7949219, -3.0332031, -1.6767578, -4.1640625, -3.8261719, 1.1865234, -1.5175781, -2.1484375, 1.625, -0.037200928, -0.79003906, 1.7226562, -0.051940918, -1.2753906, -0.6074219, -0.7338867, -0.6196289, -0.012260437, -1.2519531, 1.2861328, -0.21911621, -1.8261719, -2.1621094, 0.1665039, 0.10827637, 1.3203125, 1.5820312, -2.6269531, 2.1582031, -2.8320312, 0.45092773, 0.22351074, -1.9033203, 1.2792969, -2.25, 0.22766113, -3.8984375, 1.5332031, 1.1123047, -1.3457031, 1.3447266, 1.8134766, 0.56347656, -2.2734375, -1.8330078, 0.9682617, 4.4375, -0.6845703, -2.1992188, -2.3457031, 1.390625, -0.3425293, -2.2167969, 0.10675049, -1.5722656, -1.7226562, 0.1027832, 2.484375, 1.6855469, 1.2597656, 0.8564453, -1.9130859, -1.3535156, 0.5625, -1.6386719, -1.8037109, -1.1425781, 0.8017578, 0.26123047, -1.1181641, -1.3330078, -0.30688477, -1.6728516, 1.0488281, -2.5839844, 3.5742188, 1.9443359, 1.5390625, 2.9980469, -1.3837891, 0.2590332, 0.67822266, 0.3330078, -1.5302734, 2.0351562, -0.0006685257, -0.24401855, 1.6650391, 0.45166016, -1.5185547, -0.14892578, 2.4375, -1.4716797, -0.30297852, -0.49047852, 0.2998047, -0.43554688, 0.031219482, 1.9033203, -0.052612305, 2.7539062, -0.2878418, -0.76904297, 0.06329346, 0.9458008, -1.4052734, 0.70166016, -0.01373291, -0.54248047, -0.33862305, 1.3994141, 1.2626953, -0.69873047, 0.5810547, -0.77685547, 2.6582031, 0.36816406, 0.4831543, -0.8886719, 0.96240234, -0.026824951, -2.2871094, 1.5986328, 2.671875, 0.071899414, 3.4980469, 1.7421875, -2.2285156, 2.2128906, -0.30810547, -3.0527344, -0.77783203, 0.92041016, 0.5551758, 0.64990234, 1.5126953, -3.0644531, -1.1962891, 1.9755859, -0.82666016, 0.7368164, 0.29907227, -2.5234375, 0.97802734, -1.1503906, -0.31640625, -0.42578125, 0.99609375, -1.0722656, -0.19921875, 0.63720703, -1.0039062, 0.92626953, 1.7216797, -0.17358398, -2.3457031, 3.6914062, -0.33740234, 1.609375, -0.44018555, 0.6694336, -2.3300781, 0.2763672, 4.3515625, 1, 2.2480469, 0.87353516, 1.8955078, -2.4238281, 0.9453125, -2.6191406, 4.375, -1.7294922, -0.8911133, 3.1445312, -4.0664062, 0.25585938, -2.2089844, 1.1943359, -0.40283203, 1.4042969, 1.4355469, -0.6855469, 0.32958984, 1.1123047, -1.8427734, -3.7050781, -2.0585938, 1.0429688, 0.17346191, -0.9707031, 1.0517578, -1.3652344, 1.2373047, 0.31298828, -0.044403076, -2.9140625, 0.3642578, -1.1738281, -1.3193359, -1.9257812, 0.3347168, -0.5004883, 1.1064453, -0.11968994, -0.060546875, 0.77490234, -4.0234375, -1.2861328, 1.453125, -1.2060547, 1.0175781, 2.4316406, -0.13867188, 0.17944336, 0.61328125, -0.3774414, -1.6494141, 1.0029297, -1.4414062, 0.37597656, 0.953125, -0.0121536255, -0.012016296, -0.9301758, -1.3300781, -0.09454346, -0.76416016, 0.36816406, 1.4414062, -0.37402344, 0.20800781, 0.8076172, -0.28076172, -1.7539062, 0.39282227, -0.58496094, -0.020111084, 1.4804688, -1.4785156, -1.1435547, -1.96875, -2.2363281, -0.66552734, -2.6191406, 0.7182617, -1.4130859, 1.1972656, 1.4160156, -0.31811523, 0.8540039, 0.27441406, -0.05819702, -0.1977539, 0.5654297, -1.1376953, 2.859375, 1.0849609, -1.2333984, -0.48364258, -1.1494141, 0.71728516, 2.0253906, 1.0761719, -0.89990234, 0.22033691, 0.30297852, 0.0038604736, -0.37890625, 0.640625, 1.6259766, -0.8432617, -1.6025391, 1.2919922, 4.1484375, 1.0791016, 0.9458008, 0.74853516, 0.4663086, 0.7705078, 4.8164062, -0.039031982, -1.5136719, 1.5576172, -2.3007812, 1.9931641, 0.3322754, -0.83203125, 0.22619629, -1.3779297, -1.8242188, -1.3935547, -0.3869629, -2.5273438, 1.2617188, 2.5292969, -1.2695312, -0.4831543, 2.0175781, 0.98535156, 1.7685547, 2.4453125, 0.69384766, 0.13391113, 1.8769531, -1.1308594, -0.12976074, 1.2089844, -1.9013672, 1.3681641, 2.2050781, -0.89746094, -1.5869141, 3.3417969, 0.054718018, 2.2480469, 1.6396484, 0.40234375, 1.9013672, 2.421875, 3.2070312, 0.16125488, 1.015625, 0.066589355, -0.72314453, 1.3046875, 1.7998047, 3.2460938, -0.42700195, 0.62353516, 2.1757812, -1.3183594, -0.9555664, 0.6567383, 0.47216797, 1.2285156, -2.0371094, 1.8095703, 0.20019531, 0.75878906, -1.2753906, -0.609375, -0.44799805, -1.2265625, -1.0341797, 0.75390625, 2.8066406, -1.3740234, 0.8203125, -0.90185547, -0.20910645, 2.0820312, -2.5351562, 0.9711914, 1.2753906, 0.12200928, 0.6977539, 1.2138672, 1.6416016, 0.4152832, 0.23486328, 1.4736328, 0.7895508, 1.2626953, 1.1191406, -1.25, 1.4501953, 0.12841797, 2.9433594, -1.3115234, 0.44677734, 3.3007812, -2.484375, -2.3125, -4.125, 3.0351562, 2.796875, 0.6357422, 2.8144531, -1.4804688, 3.4589844, -0.30249023, 0.5649414, -2.0039062, 0.76953125, -0.5522461, -1.6621094, -1.5214844, 0.73535156, -0.17822266, 2.2539062, 2.046875, -0.8535156, 0.7841797, 0.37304688, 0.56347656, 2.53125, 2.3417969, 0.012954712, 1.5097656, 0.3696289, 1.7490234, 0.39770508, -1.2255859, -2.7988281, 2.1308594, 0.86328125, -0.57714844, 0.66308594, -0.15917969, -0.8466797, -0.86572266, -0.6533203, 0.44702148, -2.4746094, -2.3554688, -0.21459961, -0.2980957, -1.5048828, -1.3242188, 2.6386719, 0.15026855, -1.2783203, -0.23278809, 1.6582031, -2.0761719, 1.5732422, 0.98046875, 0.9580078, 0.4909668, -1.390625, 0.8964844, 0.88378906, -1.7685547, 0.14355469, -0.40600586, 1.9931641, -1.9707031, -0.065979004, -0.09637451, 0.43066406, 0.6972656, 0.74121094, -0.90722656, -0.61083984, 2.5097656, -0.8173828, -0.071777344, 2.8613281, -0.34106445, 0.46313477, -2.6582031, -3.0019531, -0.46923828, -0.45776367, -0.6010742, 0.8383789, 2.7304688, 3.2070312, -0.09259033, -2.0761719, -4.09375, -0.3515625, -0.9321289, 0.55615234, -1.0859375, -0.43603516, 0.56591797, 1.0341797, 2.4238281, -0.07281494, -2.3027344, -0.25146484, -0.8623047, -0.3022461, -0.59375, 2.75, -0.6225586, 1.96875, -0.29516602, 1.6669922, 1.4921875, -0.98779297, 1.2441406, 3.109375, 0.19384766, -2.5761719, 2.8339844, -0.99365234, 0.23791504, 0.0129776, 1.1777344, 1.5449219, 0.7050781, 1.5957031, -0.7753906, -2.6621094]}, "B091F4VJLR": {"id": "B091F4VJLR", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "embedding": [-0.73046875, 0.36889648, 0.97998047, 0.15563965, 0.45166016, 2.0039062, 0.70214844, -1.2207031, -1.2763672, 0.20812988, 0.8383789, -0.17297363, 0.6875, -3.7539062, 0.40429688, 0.1986084, 0.39892578, -0.14013672, 1.6357422, -0.1607666, -0.08105469, 1.8691406, 2.8945312, 0.75341797, -0.3647461, 1.5742188, 3.5585938, -3.0976562, -0.34887695, -1.1767578, 3.5273438, 0.42700195, -0.5839844, 1.1757812, -3.5292969, -1.0302734, -1.6904297, 0.87597656, -1.6044922, 1.6171875, 0.8652344, -1.8779297, 0.34570312, 1.4404297, -2.5898438, 0.061340332, -0.25439453, 0.51220703, -1.59375, -0.9555664, 0.99316406, 1.1552734, -0.77685547, 0.18078613, -1.1347656, 2.0234375, 1.4130859, -2.0410156, 1.0791016, 0.39111328, 2.7363281, -0.021728516, -2.0214844, -0.51171875, -0.8881836, -0.96777344, 0.82714844, 0.421875, -0.30810547, -2.0332031, 1.6894531, 0.4501953, -1.5107422, 0.036895752, 0.15161133, -0.63378906, -1.9804688, 1.6923828, 1.5771484, -1.0751953, -1.6269531, 1.84375, 1.2958984, -2.1484375, -0.008682251, 0.9428711, -0.8149414, 0.24072266, 2.4589844, 1.4453125, 0.35327148, 2.5527344, -3.2402344, -4.140625, 2.7578125, -1.7441406, 0.07897949, 0.8833008, 0.3371582, 1.8154297, 1.109375, -1.4023438, -2.0351562, -1.3291016, 0.6147461, -1.3525391, 1.0537109, 0.24865723, -2.3125, -1.5419922, -2.4765625, 0.49951172, 0.6977539, -0.39624023, -0.08898926, 0.4716797, -0.0053901672, 1.7304688, 1.5205078, -0.48876953, 1.7900391, -0.625, 1.5009766, -1.2412109, 0.50927734, 0.5888672, -1.1347656, 2.015625, 4.09375, -1.453125, -2.3710938, -2.2265625, 2.171875, -0.5527344, -0.88916016, -1.6269531, -2.5078125, -1.1484375, -3.7089844, 0.33007812, -2.0839844, 0.8256836, 2.3925781, 0.14160156, -2.9902344, 0.53808594, 0.05441284, 1.5429688, -0.6875, -0.04168701, 1.6923828, -2.0429688, 0.56347656, -3.1757812, 1.5820312, -1.0654297, -0.22509766, -1.8544922, 2.8476562, 0.15673828, 1.0761719, -3.2539062, -1.5009766, 1.0947266, -0.61083984, -0.87890625, -1.3222656, 2.6289062, 1.0673828, 1.5390625, 1.0800781, -1.4892578, 0.5473633, 0.030807495, 0.34033203, -1.6621094, -1.0009766, 2.3222656, 0.8305664, -0.22338867, -1.4267578, -2.796875, -0.21875, 0.9589844, 1.2080078, -1.3857422, 0.88183594, 0.5834961, 0.47314453, -0.22692871, 1.3164062, -0.6352539, -0.08685303, 0.60302734, -0.6772461, -0.5439453, -0.015975952, -0.54296875, -1.6054688, 0.45117188, -1.1582031, 0.45947266, -0.20605469, 0.84228516, -3.3476562, -3.796875, -0.4182129, -1.3564453, 1.8613281, 1.9580078, 1.6044922, -1.8671875, 0.31762695, -0.98339844, 0.8676758, -1.4707031, 1.6953125, -0.24584961, 1.0722656, 2.2265625, 0.38232422, 0.75683594, 0.59228516, 2.0800781, 0.14123535, 2.2148438, -0.68603516, 2.0957031, -1.6796875, -1.5966797, 2.5078125, 0.17895508, -0.06439209, 0.5258789, -1.0566406, 1.8945312, -0.55078125, -1.5371094, -1.0341797, -0.24157715, -0.1743164, -1.8798828, -1.1455078, -1.5878906, 0.15209961, 1.2236328, -2.09375, 2.03125, 1.5654297, 1.1845703, -1.3837891, 0.8378906, 1.7578125, 0.7475586, 0.09094238, 0.4020996, -1.0048828, 1.6230469, -1.9326172, -0.94433594, 1.2451172, -0.24072266, -1.6728516, -0.859375, 0.26831055, -1.4482422, 2.7988281, 0.6035156, -2.2695312, -2.078125, -1.0644531, -0.6611328, 1.9111328, -0.2697754, 0.7709961, 1.2246094, -1.3691406, 2.0136719, -1.6474609, 0.41479492, 0.765625, -0.48242188, 2.1679688, -1.6533203, -0.85839844, -0.30517578, 1.5761719, -1.3808594, 1.1669922, 1.9970703, 4.4023438, -1.4306641, -3.2597656, 3.2890625, -1.1572266, -1.2246094, 0.7446289, -0.62890625, -0.25073242, -0.31591797, 1.8007812, 0.390625, 1.2275391, 0.4567871, -0.5996094, -1.2695312, 0.14587402, -1.0341797, -0.8696289, 0.0637207, 0.0146484375, -1.4296875, -1.8544922, 0.58251953, -1.2265625, -2.2910156, 1.9433594, -2.2597656, 2.2070312, 0.5756836, 1.5371094, 1.8974609, -1.0986328, -1.7666016, -0.8691406, -0.09906006, -1.2294922, -1.0595703, 0.3869629, -0.78808594, 0.31884766, -0.11627197, 0.6616211, -1.5048828, -2.5644531, -0.4128418, -2.3554688, -1.421875, -0.47143555, -2.3183594, -1.8154297, -0.044921875, -2.703125, 0.3972168, -0.48779297, -4.5546875, -1.6044922, -0.9086914, -0.64746094, 1.171875, -0.06298828, -0.11187744, 0.54541016, -3.8359375, -0.0519104, -0.12005615, -0.55615234, 0.4807129, -0.7871094, -1.0546875, 0.047332764, -0.7758789, -0.9375, 0.33081055, 1.1982422, -0.1116333, -0.76953125, -3.3417969, 0.5361328, -2.2597656, 1.3857422, 0.053253174, 0.98828125, -2.1972656, -0.70458984, 0.08679199, -2.0136719, 4.3203125, -0.69433594, 1.7167969, -0.57128906, 0.2286377, 1.2402344, -0.13415527, -2.2832031, -1.8486328, -0.51123047, -2.984375, -3.3476562, -1.96875, 0.06567383, -0.45581055, -0.07354736, -0.9628906, 2.4140625, -1.8320312, 1.5917969, -1.3867188, -2.4003906, 0.92041016, 1.171875, -0.16040039, 0.66308594, -1.0029297, -1.0791016, -1.4072266, -0.9033203, 0.60058594, 3.3710938, -0.2614746, 2.2949219, -0.0869751, -0.6694336, -0.28271484, -0.4892578, -3.046875, 3.2890625, 2.4921875, -2.7050781, 2.3027344, -0.95996094, -2.6230469, -1.3730469, 0.45654297, 2.640625, 1.9853516, 2.9492188, 0.68359375, 2.1816406, 1.4111328, 3.0683594, 0.58154297, -0.4716797, -0.59814453, 2.203125, -1.4521484, -3.2890625, 0.68603516, 1.8388672, -1.4472656, -1.5195312, 1.0507812, 1.9882812, 3.8007812, 1.4511719, 1.8662109, 1.2939453, -1.1699219, 1.4726562, 0.80126953, 0.46655273, -0.96972656, -0.43896484, 1.2324219, -0.125, 0.5263672, 2.9785156, 0.14526367, 2.1289062, -0.2467041, 0.91796875, -0.7680664, 1.078125, 1.3886719, 2.4082031, -0.00082683563, 0.5805664, -0.034454346, 1.5488281, 1.1503906, -0.7783203, 0.01828003, -3.2148438, 0.15893555, 1.5761719, 0.3894043, 0.46606445, 1.3554688, 0.8256836, 0.93847656, 0.33496094, -0.60839844, -1.5205078, -0.007545471, -0.16015625, -0.24975586, -1.2470703, -2.6601562, 2.5410156, -0.5888672, -2.2226562, 0.21655273, 2.9042969, -1.0673828, -0.99609375, 2.03125, 0.46606445, -1.3623047, 1.4511719, 0.9916992, -1.0097656, 1.1005859, -1.5605469, 0.5678711, 1.0800781, -0.6166992, -0.49780273, -1.9033203, 0.47875977, 0.22558594, 0.42407227, 1.7128906, 1.2548828, -1.5908203, -0.11206055, -2.8769531, -0.0574646, 0.02734375, -1.9111328, -0.5258789, 1.6455078, 0.33032227, 0.8510742, -1.8320312, 4.5703125, 0.5336914, -1.2363281, 1.8261719, -2.8339844, -2.4160156, -4.3242188, -3.4375, 0.7607422, -0.70996094, -1.4550781, 1.9853516, 0.55078125, -0.2697754, 2.4746094, 0.099487305, -1.9296875, -0.8095703, -0.75390625, 0.6743164, 0.04901123, -0.7871094, 1.8095703, -1.0478516, -2.8808594, -2.4980469, -0.23583984, -0.025924683, 1.8105469, 1.9394531, -2.5722656, 2.1601562, -1.8574219, 0.84228516, -0.45874023, -1.1269531, 0.9716797, -1.6875, 0.63623047, -2.7460938, 1.8066406, 1.2138672, -1.3769531, 0.8989258, 0.70703125, 0.8022461, -2.6875, -0.56152344, 0.57714844, 3.5273438, -0.30371094, -2.5898438, -1.9111328, 0.23498535, -0.036468506, -1.3046875, -0.37402344, -0.5864258, -1.9912109, 0.5390625, 2.4101562, 1.2216797, 1.9521484, 0.68408203, -3.8339844, -1.4707031, 0.36010742, -1.4541016, -1.3642578, -1.6298828, 1.1640625, -0.01739502, -0.99121094, -0.9790039, 0.115600586, -2.2285156, -0.40429688, -2.3183594, 3.5507812, 2.5097656, 0.6542969, 3.0078125, -1.2041016, -0.21386719, 0.69140625, 0.15466309, -1.3115234, 1.4746094, -0.12036133, 0.62597656, 1.3173828, -0.2980957, -1.8388672, -0.42138672, 1.7548828, -1.6220703, 0.2800293, -0.5961914, 0.022201538, -0.7915039, -0.9145508, 2.8730469, -0.17993164, 2.1855469, -0.67871094, -0.02557373, -0.018478394, 0.17053223, -1.4960938, 1.1845703, -0.49780273, 1.7294922, -0.8051758, 1.7978516, 1.5683594, -1.9970703, -0.6669922, -0.6845703, 1.2587891, -0.08685303, 0.75683594, -0.35205078, 0.35888672, 0.29101562, -1.9394531, 2.0839844, 2.1640625, 0.16308594, 3.6582031, 1.0195312, -2.046875, 1.9599609, -0.7050781, -1.7236328, 0.33154297, 1.2724609, -0.1505127, 0.79541016, 0.7885742, -3.5351562, -1.3144531, 2.609375, -0.7260742, 0.93310547, -0.26953125, -1.5917969, 1.0361328, -0.66796875, -0.8535156, 0.48999023, 0.4802246, -0.31445312, -1.0078125, 0.3696289, -2.3203125, 1.2294922, 2.1328125, 0.06945801, -2.2695312, 3.1425781, -1, 0.98339844, -0.8305664, 0.53027344, -2.4472656, -0.011306763, 3.6601562, 1.2578125, 1.9238281, 0.8720703, 1.2060547, -3.015625, 0.52734375, -2.3476562, 3.7597656, -2.3222656, -0.484375, 2.8710938, -2.671875, 1.7109375, -2.1992188, 0.24865723, -0.90478516, 2.3398438, 1.7861328, 0.074157715, 0.18811035, 1.0224609, -1.4082031, -3.4589844, -2.3105469, 1.0449219, -0.20239258, -0.8823242, 1.4707031, -1.5185547, 0.9477539, 0.92089844, -0.16699219, -1.7324219, -0.3947754, -1.5712891, -1.4248047, -1.6738281, 0.10809326, -1.4580078, 0.93847656, -0.23535156, 0.10864258, 0.9663086, -3.6640625, -1.5507812, 1.6396484, -1.9746094, 1.0419922, 2.8964844, 0.60253906, -0.33447266, 0.15844727, -0.3425293, -1.1181641, 1.5361328, -1.5517578, 0.671875, 1.0087891, -0.72558594, 1.3642578, -1.1875, -1.1542969, 0.049438477, -1.1845703, 0.8540039, 0.79833984, 0.49072266, 0.48657227, 0.92089844, -0.9941406, -2.5664062, 0.50341797, -0.024490356, 0.6303711, 1.6416016, -2.046875, -0.9790039, -1.9111328, -2.5429688, -1.1806641, -2.5898438, 0.54541016, -0.5175781, 0.6538086, 0.49951172, -0.4753418, 0.45117188, -0.027252197, 1.1679688, -0.5756836, 0.08886719, -1.5888672, 2.2246094, 1.4980469, -2.765625, -0.13537598, -0.6118164, 1.2353516, 2.265625, 1.3330078, -0.05102539, -1.0458984, -0.48510742, -0.26367188, -0.27807617, 0.6479492, 2.2304688, -0.9448242, -0.29956055, 1.25, 2.7460938, 1.3525391, 0.0758667, 1.5791016, 0.8979492, 0.31713867, 4.4023438, -1.2519531, -2.1171875, 1.3515625, -2.2402344, 2.6855469, 0.3244629, -2.3476562, 1.4511719, -1.2451172, -1.7324219, -2.28125, -0.6298828, -3.0742188, 1.8417969, 1.6503906, -0.057617188, -1.0751953, 2.7734375, 1.0400391, 1.6132812, 1.3955078, 0.17883301, 0.009994507, 0.3076172, -0.84375, -0.46679688, 1.5449219, -1.5673828, 2.2617188, 1.9316406, -0.06677246, -0.9658203, 3.4257812, 1.1015625, 2.2285156, 1.9228516, 1.2919922, 2.2675781, 2.640625, 2.75, 0.6459961, 1.4765625, 0.92333984, -0.97998047, 2.7792969, 2.3574219, 3.5585938, -0.4230957, -0.4724121, 3.0410156, -0.064819336, -1.1035156, 0.40673828, 0.59814453, 0.52246094, -1.2890625, 1.1962891, 0.4880371, 0.6147461, -1.8837891, 0.45458984, -0.5629883, -0.92626953, -1.2988281, 0.5761719, 3.1074219, -0.46875, 0.33520508, -0.4519043, -0.4572754, 2.3652344, -3.8183594, 0.74609375, 1.8378906, -0.09246826, 0.16577148, 1.4619141, 1.1201172, 0.096191406, 1.1083984, 1.4453125, 0.57177734, 0.76416016, 1.0859375, -1.3300781, 0.89208984, 0.37719727, 3.140625, -1.2792969, 0.07385254, 2.3222656, -1.2792969, -2.0058594, -4.4296875, 2.890625, 1.5683594, 1.3730469, 1.7099609, -1.6708984, 1.9169922, 0.20568848, 1.2705078, -1.9179688, 0.8256836, -0.34326172, -2.1308594, -2.1367188, 0.8227539, 0.50634766, 1.8779297, 1.2705078, -1.5263672, 1.6787109, -0.2722168, 0.96728516, 2.3535156, 1.6542969, -0.26000977, 0.21582031, -0.3239746, 2.0605469, 0.18688965, -1.2324219, -0.6142578, 1.5058594, 1.1738281, -0.6821289, -0.10028076, 0.08093262, -1.9082031, -0.33520508, -0.7495117, -0.86035156, -2.5078125, -2.2304688, 0.67871094, 0.39794922, -2.3144531, -1.6796875, 0.85546875, 0.07678223, -0.42260742, -0.51220703, 2.1425781, -1.0449219, 1.6591797, 1.3632812, -0.2286377, 0.8964844, -2.3164062, 1.2275391, 1.6337891, -2.1621094, -0.0129852295, 0.4765625, -0.21594238, -1.2919922, 0.0071144104, 0.001625061, -0.53759766, 0.71777344, 1.3232422, -0.6533203, -1.5683594, 1.2167969, -1.5507812, 0.6430664, 2.8847656, 0.060638428, -0.41333008, -2.6992188, -2.078125, -0.81689453, -0.14196777, 0.27172852, 1.4511719, 3.5175781, 2.546875, 0.072021484, -1.8203125, -2.7460938, 1.4130859, -0.8027344, 1.3554688, -1.5234375, -0.16503906, 0.30737305, 0.7373047, 2.9785156, -0.37695312, -2.109375, -0.33007812, -2.0625, 0.56640625, -0.119018555, 2.1015625, -0.3190918, 1.2792969, 0.36865234, 1.6816406, 2.1269531, -0.33081055, 1.3251953, 2.609375, 0.17407227, -2.0371094, 2.8085938, -0.9711914, 1.0146484, -0.099121094, 0.45385742, 0.7402344, 1.3623047, 1.7519531, -0.546875, -2.7226562]}, "B08YLPZZ65": {"id": "B08YLPZZ65", "original": "Brand: Bunker Up Fishin\nName: Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue\nDescription: Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2\" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!\nFeatures: Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking\nElectric Start - Simply push a button to start the burner on this mini travel smoker grill\nConverts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use\nBuilt in Thermometer - Barbeque to perfection with the easy to read temperature gauge\nFast and quick set up - Very simple to install and remove - makes the perfect boat accessories\n", "embedding": [-3.3945312, 3.0507812, 1.8037109, 2.125, 1.4082031, 1.0576172, 1.9619141, -1.3271484, -0.1586914, 2.125, 0.2626953, -0.30322266, 0.9848633, -3.1035156, -0.26171875, 1.1464844, 1.4423828, -0.0051002502, 1.7236328, 0.3942871, 2.4980469, 1.6982422, 2.0175781, -0.5126953, 1.2080078, -0.7084961, 1.9824219, -0.17993164, 0.71972656, -0.24194336, 2.5878906, 0.09069824, 0.16394043, 1.6972656, -3.3496094, -1.1884766, -1.9306641, 1.5371094, 0.39672852, -0.8642578, -0.8051758, -0.74853516, 3.0605469, -0.19042969, -2.9863281, -0.0044136047, -1.1425781, 2.5410156, -1.3867188, -0.96240234, 2.0527344, 2.3398438, -0.07397461, 1.7236328, -2.4316406, -0.8442383, -0.5029297, -3.9238281, 0.7001953, -1.3017578, 2.2109375, -0.028213501, -0.8486328, 1.3369141, 0.9277344, -0.49121094, -1.0771484, -0.17041016, -0.84472656, 0.8129883, 1.8339844, 0.5517578, -1.0478516, 0.20739746, -0.61865234, -0.09875488, -2.5292969, 2.3046875, -0.053863525, -0.38452148, -3.6035156, 2.2402344, -0.8027344, -0.96777344, 0.16394043, 0.7104492, -4.1992188, -0.4074707, 4.1835938, 0.6279297, -1.5029297, 2.5039062, -2.2226562, -3.6582031, 0.8808594, -0.33081055, 1.6015625, -0.7421875, 0.3486328, 2.6835938, 0.02067566, 2.6425781, -2.4765625, -0.7446289, -0.65966797, -1.4052734, 0.38256836, 0.3815918, -2.5507812, 0.46289062, -1.09375, 0.7714844, 1.3896484, 0.91845703, 0.69677734, 0.50634766, -0.79003906, 1.6904297, 2.6191406, 2.1269531, 5.6640625, -0.25317383, 1.1601562, -0.24865723, 0.58447266, 0.08526611, 0.35229492, 1.1992188, 3.3632812, -1.3398438, -0.082336426, -2.2402344, 1.5195312, -0.032928467, -1.8896484, -2.6035156, -0.42016602, -3.0078125, -4.0703125, 0.85546875, -1.2998047, 2.1132812, 2.0683594, -0.10418701, -3.984375, -0.9794922, -0.8413086, -0.097473145, 0.57421875, -2.484375, 1.2470703, -1.4404297, 1.0019531, -0.7626953, 2.4179688, 0.6152344, -0.30932617, 0.06286621, 2.7421875, 0.30419922, 1.3447266, -3.4570312, -0.9111328, 0.6875, 0.5996094, -2.4296875, -1.5751953, 2.3652344, 0.17858887, 0.030914307, 1.7275391, -1.8818359, 2.2246094, -0.4963379, 1.5380859, -0.52978516, -0.40405273, 4.0195312, 0.86328125, -1.4101562, -0.8129883, -4.6015625, 0.73876953, 0.671875, 1.4609375, -0.49536133, -0.4580078, 0.6118164, 0.04486084, -2.5488281, -0.27539062, 2.2050781, -0.3203125, 1.1679688, 1.8056641, -2.9042969, -2.6445312, -0.15209961, 1.5390625, 1.9628906, -1.3964844, 0.14355469, -1.0800781, 0.46435547, -2.0292969, -4.4882812, -1.0898438, 0.5097656, 0.04345703, 2.0195312, -0.7182617, -1.1054688, 2.7324219, 0.11743164, -0.41601562, -2.4921875, 1.7568359, 0.41601562, 2.8632812, 2.4277344, -0.79541016, -1.1357422, 0.6948242, 2.1035156, 1.3876953, 1.5146484, -1.0634766, -0.73046875, -1.1484375, 0.53466797, 2.0371094, -1.1259766, 0.7836914, 0.21081543, -0.32885742, 2.6191406, 1.1357422, -2.1953125, -0.46948242, 0.46972656, 0.017684937, -2.0058594, -2.6601562, -2.03125, -0.59765625, -0.15466309, -2.5761719, 1.0400391, 1.8779297, -0.4802246, -0.98095703, 0.8178711, -0.8510742, 0.8520508, -1.6630859, 1.5771484, -1.2050781, 0.06100464, -2.8164062, -2.4355469, 1.6210938, 1.5683594, -0.7685547, 0.9736328, 1.390625, -0.22143555, 2.2714844, 0.76953125, -4.1796875, -1.5488281, 2.2265625, 2.1308594, 1.5791016, 0.5288086, 2.0625, 0.21459961, -2.6679688, 2.5625, 0.71240234, 1.8144531, -0.62353516, -0.05126953, 2.6894531, -2.3632812, -2.0820312, 0.20019531, 1.5087891, -2.2382812, 1.4208984, 0.6142578, 4.1523438, 0.71533203, -1.8876953, 2.9042969, -1.2490234, 0.08898926, 1.5419922, -1.4121094, 2.4863281, 0.7675781, 1.7109375, 1.625, -1.4824219, 1.9804688, -0.5830078, -0.86572266, -1.6025391, -2.9550781, -0.100097656, 2.0214844, -0.92578125, 0.18286133, -0.5258789, 1.5214844, -1.734375, -1.84375, 0.8808594, -0.66259766, 1.0839844, 2.546875, -0.5239258, -0.6982422, -0.2680664, -3.046875, -0.44702148, 0.8276367, 0.6401367, -1.3574219, 1.6552734, -0.80371094, -1.0214844, -0.62597656, 1.2607422, -1.5595703, -1.4746094, -1.9785156, -2.9785156, -1.7851562, -0.9038086, -0.5053711, -1.5068359, 0.5698242, -1.734375, 1.6171875, -0.2866211, -3.3808594, -0.3005371, 2.046875, 0.11315918, 0.95654297, 0.08734131, 0.34960938, 1.0820312, -3.7441406, 0.265625, 1.7587891, 1.1054688, 1.0986328, -0.59716797, 0.63134766, -2.1445312, 0.26489258, 0.75341797, 1.5273438, 1.0126953, -1.4228516, 1.1767578, -3.6542969, 1.0205078, -1.2128906, -0.1586914, -1.8447266, 0.7089844, -1.0517578, -1.9736328, -0.7441406, -2.0898438, 2.6328125, -0.6201172, 0.48706055, -1.9287109, 1.3779297, -0.020324707, -0.20446777, -4.0234375, -0.26489258, 1.1464844, 0.060760498, 0.17456055, -3.6210938, -0.10534668, -0.375, -0.97509766, -0.36572266, 1.6845703, -2.4648438, 2.1679688, -0.45947266, 0.4675293, 0.008880615, 0.16992188, -0.22741699, -0.7553711, -0.69921875, -0.3112793, -0.5239258, 0.6225586, -1.6767578, 1.7646484, -2.1757812, -0.045074463, 0.0025348663, 1.0615234, 0.4934082, -1.8486328, -2.6875, 1.9775391, -1.0458984, -2.0703125, 2.0664062, -0.08685303, -0.22729492, -3.3339844, -1.9804688, 2.5761719, 0.8066406, 2.1914062, -0.87109375, -0.9790039, 0.9160156, 0.9873047, 0.34936523, -0.25390625, 0.03994751, 3.3789062, -3.5957031, -0.9716797, -0.4267578, 3.9257812, -0.99853516, 1.1425781, 1.5761719, 1.3964844, 1.1582031, 0.5136719, 0.6665039, -0.74365234, -2.1914062, 0.29882812, 0.85253906, 1.0693359, 0.47045898, -1.2871094, -0.6640625, -0.65283203, 0.35107422, -0.9160156, 0.69677734, 1.890625, 2.3359375, -1.1953125, -1.2558594, 1.8496094, -0.30932617, 0.49731445, -0.19458008, 2.6464844, -0.087524414, -1.1982422, -0.4099121, 0.33007812, 1.0126953, -1.4570312, -0.05218506, 1.5185547, 1.6074219, 0.0362854, -1.7070312, 0.2919922, -0.9057617, -1.5556641, 0.8442383, -0.9824219, -1.4697266, 1.9970703, -1.3056641, -2.0429688, -1.2675781, 0.36083984, -2.1601562, -2.1425781, -0.20324707, 1.0166016, -1.7021484, -1.8144531, -1.9892578, -2.3613281, -0.6088867, 3.734375, -0.46850586, -0.4794922, 1.0605469, 0.52978516, 1.8476562, 0.87841797, -0.17810059, -1.2714844, -0.025634766, -0.40795898, -0.75390625, 0.6972656, 1.1259766, -0.42260742, -2.6835938, -0.08203125, -1.3828125, 2.40625, 0.05618286, -1.3154297, -0.30517578, 2.96875, 1.6787109, 1.4589844, -1.0449219, 2.8183594, -1.4394531, -0.56933594, 1.8945312, -2.8652344, -1.3271484, -3.5976562, -3.5449219, 1.4433594, -2.3203125, -1.2226562, 1.7304688, 1.5947266, -0.7885742, 0.7973633, -0.091674805, -1.4931641, -1.0107422, -1.5712891, 1.1748047, -1.6162109, 0.75, 2.3144531, 1.890625, -1.3662109, -2.1914062, -0.52978516, 0.33911133, 1.3681641, 1.5380859, 0.19787598, 1.6064453, -2.5722656, -0.95703125, 0.42236328, -1.0390625, 0.76660156, -2.0039062, -1.1279297, -0.8857422, 1.7832031, 1.1269531, 0.11999512, -1.5595703, 0.46557617, 0.6020508, -0.17980957, -1.2900391, 0.03744507, 2.6308594, -1.0595703, -2.7929688, -2.3925781, -1.6708984, -0.4128418, 1.0800781, -0.20117188, 0.7807617, -3.6953125, 0.6254883, 0.62402344, 1.2773438, 1.3095703, 0.18640137, -1.0498047, -0.64404297, -1.0478516, -1.4208984, -2.3847656, -0.044708252, 0.45751953, -1.0800781, -0.16442871, -2.2089844, -0.09136963, -0.5415039, -3.8769531, -1.2060547, 3.4003906, 1.1826172, 2.390625, 4.8945312, 1.1308594, -1.2460938, 2.6425781, -0.39697266, -2.2929688, 1.9179688, -2.15625, -1.7958984, 1.6337891, 1.5078125, -1.8837891, -0.7084961, 0.111083984, -1.5869141, -0.2631836, -0.23828125, 1.9892578, -2.8886719, -0.12988281, 1.0957031, -1.3496094, 2.4609375, -1.8339844, 0.055419922, -0.2939453, 1.2578125, -0.77685547, 1.4101562, -0.056427002, 0.7182617, 0.8486328, 1.9277344, -0.37817383, 0.2944336, -0.18005371, -0.63671875, 0.46191406, -2.7421875, 0.35913086, -1.6923828, -0.8432617, -0.72509766, -0.53222656, 1.2724609, 4.8710938, 0.36279297, 2.2558594, -0.50634766, -1.5302734, 0.74121094, 0.38916016, -3.6230469, 0.082336426, 0.62841797, -2.5605469, 0.62060547, -1.5390625, -2.4160156, 0.12420654, 1.9238281, -1.1162109, 0.5678711, -0.6948242, -0.24890137, 2.2558594, -2.828125, -0.7758789, -0.7138672, -1.7890625, 1.5722656, -1.9228516, -0.41357422, 0.78466797, 1.0917969, 1.6318359, -1.0117188, -0.5439453, 2.328125, 0.12902832, 0.76708984, 1.8378906, 0.76953125, -2.5058594, -0.29907227, 2.0605469, 1.9511719, 1.9326172, 1.0029297, 1.0644531, -0.7919922, -0.30932617, -2.390625, 2.7324219, -1.3349609, -0.062683105, 2.6601562, -0.67089844, 0.64697266, -2.6679688, 0.3388672, -0.14050293, 1.5800781, 2.1660156, -1.0517578, -0.021255493, -0.34838867, -3.2363281, -4.7851562, 0.09753418, 0.71191406, -0.20605469, 0.52783203, 2.3359375, -1.4179688, -1.2392578, -0.11785889, 0.8886719, -1.3759766, 1.5341797, -0.44506836, -0.9008789, -1.515625, 1.0087891, -0.22009277, 0.6611328, 0.95996094, 1.2363281, -0.005264282, -3.3867188, -0.640625, 0.7158203, -1.1181641, -1.5605469, 1.4892578, -0.73291016, -0.0284729, 0.051940918, 1.9853516, -1.8173828, 2.4101562, -2.7558594, 0.012626648, 0.42016602, 0.30566406, 0.14709473, -0.4658203, -2.1542969, 1.1933594, -2.609375, 1.0654297, -1.5263672, 0.024154663, -0.14880371, 1.5839844, -0.2998047, -1.8076172, 0.4584961, -0.5029297, 2.7519531, -0.5600586, -1.6376953, -0.44140625, -2.4511719, -3.6601562, -0.3786621, -3.3320312, 0.05255127, -3.1054688, -0.2993164, 1.8671875, 1.0205078, 1.3457031, 0.98535156, 0.74853516, -0.5566406, 0.124816895, -0.9277344, 1.0234375, -0.17663574, -0.6503906, -2.4980469, -1.7089844, -0.085754395, -0.87158203, -0.46435547, 1.1035156, 0.97021484, -2.1953125, 1.2167969, -1.1181641, 3.5449219, 2.1542969, 0.14294434, -1.8369141, -0.61328125, 1.6621094, -1.4462891, 2.0683594, 0.6660156, 1.0009766, -0.08648682, 3.8261719, -1.9013672, -1.2587891, 1.2666016, -0.23754883, 1.1279297, -0.80078125, -2.1640625, 1.0673828, -2.1835938, -0.4489746, -2.2519531, -1.4580078, -1.9472656, 2.0800781, -0.3864746, -0.9946289, -0.9394531, 2.8085938, -0.15454102, 0.047729492, 1.09375, 0.9394531, 0.2709961, 1.0009766, -0.42358398, 0.2006836, 1.0527344, -1.0263672, 0.79785156, 1.1337891, 0.7998047, -1.3828125, 4.4179688, 1.0224609, 1.9570312, 0.06726074, 3.3476562, 3.7949219, 1.2285156, 4.5585938, -0.52783203, 1.1884766, 3.6835938, -1.2871094, -0.6333008, 2.3320312, 1.0761719, -1.2421875, -0.9633789, 0.5493164, 0.39404297, -0.42358398, 0.08013916, 1.8056641, 1.4277344, -3.6132812, 4.1015625, 0.9550781, 0.9658203, -1.4550781, -0.011985779, -2.3066406, 0.0064315796, -1.2607422, 1.3789062, 1.2265625, -1.0087891, 0.5004883, -1.0595703, 0.5317383, 0.12536621, -2.7792969, 1.8574219, 0.2548828, 0.20922852, -1.4238281, 2.078125, 0.9980469, -0.0024871826, -0.15490723, 2.2929688, 1.5068359, -1.3417969, 1.9052734, -1.3554688, 1.2304688, -0.54003906, 2.9628906, 1.5722656, -1.6845703, 1.3535156, -0.72558594, -1.3134766, -2.1171875, 2.7421875, 1.1884766, 0.5786133, 0.6479492, -3.4941406, 2.3417969, -0.77490234, 2.9550781, -0.94189453, 1.4511719, -2.0253906, -3.0058594, -2.7421875, -0.091796875, 0.5878906, 2.515625, 1.1972656, -2.4277344, 3.2265625, 1.2216797, 2.1464844, 0.65283203, 1.4628906, -0.15563965, 1.5996094, 1.5419922, 2.5585938, 0.76953125, -1.9824219, -2.0332031, 3.2148438, 0.43115234, 0.7558594, -0.37304688, -1.1464844, 2.0019531, 0.9379883, 0.06021118, 0.3581543, -1.515625, -1.640625, -0.44873047, 0.3256836, -0.63134766, -0.23168945, -0.3137207, 2.2792969, 0.058624268, 2.9570312, 0.4753418, -0.77246094, 3.3691406, 0.7241211, -0.48950195, -1.3261719, 0.3786621, -0.16992188, -1.6884766, 0.47631836, 0.14660645, 0.41601562, 1.8251953, -2.09375, 0.72314453, -2.3867188, 1.5292969, -0.32006836, -1.3095703, -0.27734375, -0.47998047, 2.2363281, 0.47192383, 1.1484375, 4.2109375, -1.3027344, -1.8291016, -2.3320312, -1.7382812, 2.4199219, -1.3779297, -0.21362305, -0.13830566, 3.9335938, 1.2519531, -1.2255859, -2.4179688, -3.0371094, 1.4931641, -2.2539062, 2.9628906, 0.5888672, -1.9628906, 1.5634766, -1.2226562, 1.7587891, -1.0449219, -0.6088867, 0.8017578, 0.83935547, 0.4482422, 0.04168701, 0.8100586, 2.1308594, 1.5390625, -0.89990234, 3.6445312, 1.1230469, 2.6640625, 1.7929688, 2.1660156, 0.6669922, -1.7089844, 0.43920898, -1.2353516, 1.5214844, 1.5009766, 0.33740234, 2.6953125, 1.0576172, -0.41918945, -1.6259766, -2.5761719]}, "B071NWQ8Q9": {"id": "B071NWQ8Q9", "original": "Brand: MASTER COOK\nName: MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel\nDescription: \nFeatures: \u25ba36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner\n\u25baThis propane gas grill has integrated piezo ignition system ensures quick and reliable startups\n\u25ba400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack\n\u25baStylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control\n\u25baStable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want\n", "embedding": [-2.34375, 0.22619629, 2.1679688, 1.4697266, 0.16809082, 1.3818359, 1.0029297, -0.4645996, -0.50683594, 2.171875, 1.5996094, -0.74658203, 0.8515625, -1.125, 0.5517578, 0.053894043, 0.94384766, 0.640625, 1.3076172, 1.203125, 0.7192383, -0.58984375, 1.3583984, -1.4804688, 0.9638672, 1.2275391, 2.8457031, -4.0195312, -0.34106445, -1.2353516, 1.4511719, -0.33642578, -0.7338867, 1.4882812, -3.2480469, 0.28710938, -2.3203125, 1.3115234, -3.7128906, -0.3876953, 0.36791992, -0.97021484, 1.7626953, 0.034942627, -3, -0.10101318, 0.090270996, 1.3007812, -2.0449219, -0.6855469, 0.95751953, 2.6289062, 1.5439453, 0.9453125, -0.55126953, 1.0146484, 1.0634766, -1.1494141, 1.5322266, 0.045440674, 2.6640625, -0.06921387, -1.8027344, -0.8466797, -1.8056641, 0.39379883, 0.058410645, 0.8588867, -0.5625, 0.30249023, 1.7197266, -0.7246094, -1.1542969, 0.10882568, -0.25830078, -2.7910156, -2.7910156, 1.7802734, 0.8120117, -0.6845703, -1.3818359, 2.0644531, 1.1318359, -2.4453125, 0.36083984, 0.3173828, -0.6479492, -2.3378906, 1.109375, 1.1435547, -1.3164062, 2.5644531, -2.0039062, -2.3535156, 2.5664062, -1.3505859, -0.41235352, 1.0400391, 0.52978516, 1.7695312, -0.06945801, 1.2207031, -2.0507812, -0.23669434, -2.2988281, -1.9150391, 0.097595215, 1.0957031, -3.5292969, -0.5209961, -1.6845703, -1.46875, 0.53808594, 0.10784912, 1.1259766, 2.5996094, -0.39086914, 1.203125, 2.8203125, 1.7470703, 2.8574219, -0.32836914, -0.5776367, -0.18518066, -0.02708435, 2.7714844, -1.1318359, 4.1601562, 4.234375, -2.3847656, -0.35180664, -2.2675781, 3.4433594, 0.33032227, -0.8935547, -2.4296875, -3.3359375, -0.48120117, -4.765625, 1.7216797, -2.3242188, 1.4199219, 1.4257812, -0.7324219, -3.0136719, -1.3505859, -0.31298828, -0.38500977, -0.5991211, -2.1757812, -0.089660645, -2.0390625, 1.4023438, -1.9306641, 2.2949219, -1.6054688, -0.005016327, -2.71875, 4.875, 1.8095703, 0.8222656, -3.59375, -1.0439453, 2.1875, 0.038391113, -2.0136719, -1.4960938, 3.9140625, 0.18798828, 0.8354492, -0.13879395, -1.7470703, 0.2166748, -0.7753906, 0.42163086, 0.23132324, 0.37573242, 3.71875, 0.5751953, -0.6015625, -1.8115234, -3.7890625, 0.8408203, 0.9296875, 0.38354492, -2.1191406, 0.51416016, 0.21862793, 0.47265625, -1.1445312, -0.30371094, 0.8574219, 0.13464355, 0.88427734, -0.40551758, -0.008758545, -1.7851562, -1.3652344, -0.08453369, -0.9213867, -0.92822266, 0.43286133, -0.37670898, 0.33618164, -3.1015625, -3.3828125, 0.63134766, -2.6308594, 1.4375, 3.1308594, 1.5224609, -2.1367188, 1.2490234, -1.9414062, 0.89501953, -2.6445312, 1.1523438, 1.0976562, 2.2363281, 2.671875, 0.23486328, -0.8027344, 1.3867188, 1.7470703, -0.9223633, 2.1738281, 1.3486328, 0.46313477, -1.2822266, -1.3457031, 2.0976562, -0.06939697, -0.17163086, 0.28759766, -0.9628906, 2.4550781, 0.38671875, -2.6113281, -0.61035156, -0.12322998, 1.6806641, -2.6894531, -1.5869141, -1.4501953, 0.41015625, 0.7211914, -1.8896484, 1.6728516, 2.7949219, 1.6689453, -0.27563477, 1.2109375, 0.23828125, 0.96435547, -1.2626953, 0.93408203, -0.12780762, 0.22814941, -2.3085938, -2.2304688, 0.55908203, 0.20275879, 0.4453125, -0.11853027, -0.30126953, -0.5126953, 3.8203125, 0.24768066, -2.2734375, -2.7636719, 1.9462891, -0.2109375, 2.2304688, -0.25927734, 1.4160156, 2.1738281, -1.2636719, 2.9121094, 0.013191223, 1.1826172, 0.60791016, -0.06939697, 2.2246094, -2.7167969, -0.5473633, 1.2519531, 0.6899414, 0.52734375, 0.6435547, 0.7285156, 4.8320312, 0.109436035, -3.4121094, 3.3613281, -1.6708984, -0.3984375, 0.36889648, 0.28466797, -1.0273438, -0.5786133, 2.0644531, 2.6484375, 0.04446411, 2.1113281, -1.4541016, -1.4072266, -0.14709473, -0.5932617, -0.0881958, -0.38745117, 0.6713867, -0.1899414, -2.3671875, 0.31860352, -1.0029297, -0.7011719, 3.6621094, -1.96875, 0.5683594, 0.6948242, 1.0605469, 1.0585938, 0.3466797, -1.4570312, 1.5820312, 0.0501709, 0.5786133, 0.17346191, 0.36157227, -0.13696289, -0.69189453, -0.64208984, 0.8901367, -1.0136719, -3.0136719, -0.01776123, -2.46875, -2.8144531, 0.7661133, -0.43823242, -0.8676758, 0.52441406, -3.7265625, 0.15991211, -0.94189453, -2.4296875, -2.5234375, -0.6479492, -0.8027344, 0.011650085, 0.28271484, 0.66308594, -0.8095703, -3.8632812, 0.9863281, 1.0195312, -1.8125, 0.45092773, 0.30419922, -0.07220459, -0.46240234, -0.8808594, 0.4584961, 0.7597656, 1.2255859, 0.5517578, 0.44311523, -4.046875, -0.6870117, -3.3886719, 0.3671875, -0.85498047, 0.23242188, -1.6396484, -1.4052734, -0.8989258, -0.421875, 3.4121094, -0.45385742, 0.09887695, 1.0400391, 0.4321289, 1.6884766, -1.4287109, -2.4042969, -0.79248047, 1.3837891, -1.5253906, -1.6787109, -2.0273438, 1.2392578, -1.7128906, 1.3916016, -1.984375, 1.1230469, -2.8066406, 1.2626953, -1.7333984, -1.0722656, -0.37646484, 1.7929688, -0.22058105, -1.3955078, -2.2753906, -0.97998047, -1.6005859, -0.4716797, -1.1191406, 1.2226562, -1.9091797, 0.99853516, 2.2519531, -0.390625, 1.0039062, -2.078125, -2.6914062, 2.4023438, 0.05886841, -2.21875, 0.8935547, -1.3271484, -3, -1.5849609, -1.1083984, 2.4042969, 0.15356445, 2.6484375, 0.03967285, 0.5239258, 1.2792969, 1.0556641, 2.1972656, -1.734375, -0.8901367, 2.0664062, -2.2675781, -1.5273438, 0.59033203, 2.7207031, -0.7548828, -1.7246094, 1.7617188, 1.3134766, 1.1738281, 1.7851562, 0.8598633, 0.2565918, -1.1582031, 2.6640625, 1.8027344, 0.9628906, 0.9628906, -1.0117188, 0.35205078, -0.03265381, 2.0058594, 2.2011719, 0.39916992, 2.1152344, 0.8798828, 1.3583984, -2.4570312, 1.1533203, 0.40551758, 2.5117188, 0.28735352, 1.9150391, -0.87841797, 0.2541504, -0.1303711, -0.8076172, -0.34375, -1.4101562, 0.21691895, 0.84521484, 0.16101074, 0.73779297, 0.62939453, 0.41381836, 0.6870117, -1.4326172, 1.1748047, -0.27026367, -1.0576172, 0.42407227, -0.31958008, -0.34472656, -2.1953125, 1.7431641, -0.13464355, -0.16516113, 1.2148438, 3.2324219, 0.06488037, -1.9277344, 0.15026855, 1.0664062, -1.4873047, 1.9462891, -0.07183838, -2.1640625, 1.4912109, -2.21875, 0.5551758, 0.6254883, -2.1640625, 0.5395508, 0.28857422, 0.6220703, -1.3837891, 0.8520508, 2.5800781, 1.1474609, -2.5722656, 0.54541016, -5.1210938, 0.62353516, -0.8041992, -1.8193359, -1.7304688, 2.5117188, 0.9326172, 2.2519531, -1.0566406, 3.7617188, -1.0830078, -2.3398438, 1.2451172, -3.8359375, -0.5942383, -3.0566406, -3.9570312, 1.4775391, -1.2050781, -1.2373047, 1.5410156, -0.08520508, 0.203125, 1.8193359, 0.043914795, -3.5703125, -2.7734375, -0.8510742, 0.37890625, -1.5683594, -2.2109375, 1.2646484, 0.7006836, -1.2939453, -0.7285156, 0.85302734, 0.15246582, 2.4453125, 1.0996094, -3.1816406, 1.3398438, -2.3691406, 0.62646484, -0.53125, -1.3291016, 1.4521484, -1.2294922, -0.031143188, -3.0253906, 0.80126953, 2.4140625, -2.1269531, 0.47583008, -0.31152344, 0.4885254, -1.5195312, 0.08404541, 1.3623047, 2.3164062, 0.035339355, -2.6621094, -1.0625, 0.49536133, -0.089538574, -0.3322754, -0.30932617, -0.43823242, -2.6738281, 0.21472168, 1.6835938, 1.4404297, 2.0019531, 0.20825195, -1.4414062, -1.1201172, 0.75146484, -1.5429688, -1.0605469, 0.6064453, -0.49975586, -1.5771484, -0.6118164, -1.2724609, 0.13806152, -3.0136719, -0.5366211, -3.7363281, 3.0253906, 2.2519531, 1.7841797, 3.1621094, -1.5185547, -2.4785156, 0.3720703, -1.1054688, -0.5126953, 1.7285156, -0.37573242, 0.7260742, 0.12182617, 0.10449219, -1.6962891, -1.4257812, 2.8457031, -2.7011719, -1.421875, -0.5410156, -0.3935547, -1.3378906, -0.47583008, 0.9267578, -0.62646484, 3.3574219, -0.8876953, -0.5053711, 0.6010742, 0.00894165, -0.9814453, 0.86279297, -0.7685547, -0.55029297, 0.62841797, 2.7167969, 2.0371094, -0.74560547, -0.95654297, -0.5097656, 2.7636719, 1.8652344, 0.89208984, -0.97021484, -0.26660156, -1.4101562, -2.4082031, -0.12231445, 2.5390625, -0.030090332, 4.1835938, 1.6064453, -2.0117188, 1.6181641, -0.5078125, -2.8613281, -0.9902344, 0.44848633, 1.8320312, 1.4599609, -0.7919922, -3.8867188, -1.9873047, 2.0019531, -1.4326172, 2.2246094, 0.29467773, -1.5839844, -0.25756836, -3.2929688, -0.63427734, -0.019104004, -0.41381836, -0.91552734, -1.0878906, 1.0400391, -1.1708984, 0.8720703, 3.28125, -0.32983398, -3.0136719, 3.8457031, -0.52001953, 1.7060547, -0.68408203, -0.23120117, -1.4199219, 0.9379883, 4, 2.0117188, 1.3193359, 2.3886719, 2.5195312, -2.59375, 1.8466797, -0.7832031, 3.9746094, -1.6777344, -0.8017578, 3.8574219, -2.734375, 0.4958496, -3.2695312, 2.2578125, -1.9960938, 1.9101562, 2.3457031, 0.15808105, -1.0283203, 0.53125, -1.2646484, -3.8730469, -1.4013672, 0.6621094, 1.3125, -1.6210938, 0.73291016, -1.6503906, 2.1621094, 0.48339844, -0.0619812, -2.9804688, 0.6142578, -0.765625, -1.5214844, -0.8300781, 0.94189453, -0.48828125, 0.08178711, 1.2695312, -0.5214844, -0.8486328, -3.8886719, -1.8603516, 2.296875, -1.4619141, 0.07611084, 1.3583984, -0.20654297, 0.20715332, 1.171875, -0.36254883, -2.5332031, 1.9248047, -1.0761719, -0.21484375, 1.9697266, 0.5419922, 0.26904297, -0.9609375, -2.1269531, -0.25024414, 0.0579834, -0.36621094, 0.18432617, -1.0556641, -0.5732422, 0.15808105, -0.5541992, -0.9916992, 0.61279297, 0.28442383, 0.96533203, 1.1787109, -1.0576172, -0.36791992, -1.2958984, -1.5478516, -0.5600586, -1.8867188, 0.35961914, -1.4521484, 1.828125, 1.5742188, -0.05050659, -0.7426758, 1.2060547, 0.61083984, 0.8203125, 0.59765625, -1.5634766, 1.8095703, 1.625, -0.43579102, -1.4804688, -1.0351562, 1.7851562, 0.6411133, 2.4492188, -1.8193359, 0.24963379, -1.609375, 1.7177734, 0.56103516, 1.4462891, 2.2675781, 0.47802734, -0.7285156, 1.2119141, 2.4746094, 0.5957031, 0.8989258, 0.5307617, 0.10394287, 0.041534424, 6.1289062, 1.4042969, -1.4091797, 1.2587891, -2.1445312, 0.06341553, -0.3803711, -0.24560547, 0.88427734, -3.78125, -1.5400391, -2.6074219, -1.9316406, -3.4570312, 1.6630859, 1.4775391, -1.2451172, -0.8232422, 2.0761719, 0.28295898, 2.3242188, 2.8046875, 0.69873047, 0.9375, 1.1943359, -0.39916992, -1.6601562, 0.98095703, -2.6738281, 2.4511719, 1.0087891, -0.68603516, -1.2167969, 3.3945312, 1.7714844, 2.9570312, 1.9228516, 0.47729492, 2.6523438, 2.7226562, 3.125, 1.0263672, 1.7685547, 2.3769531, 0.021499634, -0.10394287, 1.8759766, 1.8964844, -1.1796875, 0.28295898, 1.8847656, -0.6796875, -0.87939453, -0.5463867, 1.2802734, 0.41015625, -2.1054688, 2.1386719, -0.57910156, 1.6396484, -1.4814453, -1.9150391, -1.9384766, -0.2602539, -0.36206055, -0.02394104, 1.8789062, -1.9882812, 0.39770508, -0.4873047, 0.2290039, 1.2509766, -2.8164062, 0.43139648, 0.06933594, 0.0069351196, -0.054595947, 0.35961914, 0.48999023, -0.734375, 0.41015625, 0.77783203, 1.1845703, 1.4238281, 0.97216797, -1.3916016, 0.35717773, -0.16906738, 1.8867188, -1, -0.41430664, 1.5966797, -2.4746094, -2.3613281, -3.5019531, 2.4101562, 3.1191406, 1.8037109, 0.85498047, -1.2392578, 2.1738281, -0.7817383, 1.9501953, -2.5644531, 1.7460938, 0.31762695, -2.2324219, -0.46972656, 1.4091797, -0.2607422, 3.1503906, 1.7148438, -1.9443359, 2.8710938, 1.7685547, 1.5585938, 2.2363281, 1.3867188, 0.24401855, 1.0039062, 0.011009216, 2.0917969, 2.0761719, -0.3388672, -1.2646484, 3.0292969, 1.4306641, 0.3947754, 0.064208984, -1.2802734, -0.58935547, -0.69189453, -0.49047852, -1.4111328, -2.0136719, -1.7255859, -1.4160156, 0.28808594, -0.8364258, -1.828125, 2.0566406, 0.54589844, -1.6533203, 1.1494141, 0.6425781, -0.828125, 2.0019531, -0.5961914, -0.86279297, 1.4257812, -1.3417969, 1.2177734, -0.3725586, -1.1894531, 1.0810547, 0.026947021, 1.8125, -1.3447266, -1.328125, -0.26782227, 1.0517578, -0.55908203, -0.07318115, 1.0273438, -0.68408203, 2.9257812, -1.5244141, 0.24304199, 0.7128906, -1.4931641, -0.50097656, -2.5390625, -2.6054688, -0.79248047, 0.91845703, -2.1191406, 1.9785156, 3.28125, 1.9716797, 0.55029297, -1.8154297, -3.5058594, -0.7207031, -1.0849609, 2.8710938, 0.4658203, -0.30078125, 0.90283203, 0.2697754, 1.6337891, -1.2509766, -2.7265625, -0.8544922, -1.0458984, -0.09338379, 0.4794922, 2.9257812, 0.89990234, 1.1542969, 0.5004883, 1.9033203, 2.0957031, -1.9150391, 0.5864258, 0.9995117, -0.5175781, -2.2285156, 1.9189453, -0.5522461, 0.38305664, 0.8046875, 0.65625, 2.0820312, 0.38110352, 0.23815918, -2.9609375, -2.2988281]}, "B091TKS5XG": {"id": "B091TKS5XG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver\nDescription: \nFeatures: High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power.\nSufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "embedding": [-2.1210938, 0.9291992, 1.7460938, -0.009239197, 0.75439453, 1.5917969, 0.9970703, -1.5800781, -0.8935547, 0.9169922, 0.8833008, -0.23583984, 0.7895508, -2.4257812, 0.016098022, 0.36987305, 0.6328125, 0.53466797, 1.2851562, 0.79296875, -0.005844116, 0.60791016, 3.578125, -0.27319336, 0.2697754, 1.1171875, 1.9648438, -4.3789062, -0.41210938, -1.1904297, 3.25, 0.41137695, -0.56689453, 1.828125, -3.9277344, -0.47705078, -1.3134766, 0.7319336, -3.0175781, 0.75927734, 0.7685547, -1.5742188, 1.4599609, 0.74658203, -2.7109375, 0.95166016, 0.3708496, 0.7158203, -2.3164062, -0.8574219, 1.2148438, 1.5185547, -0.13745117, 0.35473633, -0.34277344, 1.5224609, 1.1035156, -1.5673828, 1.6152344, -0.06549072, 2.9316406, -0.34228516, -1.9697266, 0.20666504, -0.15600586, -0.50341797, 0.38354492, 1.0625, -1.2626953, -0.8779297, 1.2363281, -0.6274414, -2.1464844, 0.70947266, -0.578125, -1.9306641, -2.6953125, 2.0878906, 0.73291016, -0.42163086, -3.2304688, 2.4511719, 1.5097656, -1.5117188, -0.6772461, 1.2167969, -0.6464844, -1.4570312, 1.1728516, 0.9975586, 0.9086914, 2.4375, -2.9472656, -3.1425781, 2.4804688, -1.9101562, 1.2392578, 1.0166016, 0.40771484, 1.4462891, -0.12658691, -0.98583984, -2.0878906, -1.2080078, -0.12939453, -2.0917969, 1.7480469, -0.2524414, -3.0136719, -0.3725586, -1.515625, 1.2910156, 0.94091797, -1.0966797, 1.0263672, 0.65283203, -0.09490967, 1.8876953, 2.1972656, 0.40820312, 2.6074219, 0.6245117, 2.1835938, -2.1835938, 0.19116211, 1.1767578, -1.8535156, 2.5644531, 5.0820312, -2.28125, -1.3417969, -3.0527344, 2.234375, -0.05142212, -0.7919922, -2.0820312, -2.9472656, -0.33813477, -3.7128906, 1.2851562, -2.9785156, 1.390625, 2.3984375, -0.40844727, -2.4277344, -0.07104492, -1.0966797, 0.97021484, -0.40576172, -1.0664062, 0.5805664, -1.9667969, 1.0078125, -3.0429688, 2.2910156, -1.7841797, -0.00039434433, -1.6826172, 4.3359375, 0.5595703, 0.056274414, -3.5703125, -0.7714844, 0.7783203, -1.0712891, -0.8666992, -1.3505859, 3.4550781, 0.99853516, 1.5458984, 0.24816895, -1.234375, 0.5649414, -0.61376953, 0.6020508, -1.1152344, -1.2568359, 2.6425781, 0.6323242, -0.2121582, -1.3798828, -3.0195312, 0.53808594, 0.89208984, 0.7426758, -1.4355469, 0.7939453, 0.6801758, 1.1201172, -1.1923828, -0.23327637, 0.13647461, 0.1772461, 0.047943115, -0.734375, 0.028167725, -0.9013672, -1.0810547, -1.2568359, 0.42944336, -0.59277344, -0.3095703, -0.32299805, 1.0556641, -3.1367188, -3.8164062, -0.7636719, -3.1367188, 1.5234375, 1.4443359, 2.0605469, -2.0371094, 0.44750977, -1.1738281, 0.69970703, -1.5849609, 2.5039062, 0.08770752, 1.4951172, 2.6699219, 0.19274902, -0.07336426, 1.4394531, 1.609375, 0.32592773, 1.7177734, 0.33984375, 1.0458984, -0.76953125, -1.3896484, 2.2421875, -0.36987305, 0.47583008, 1.4355469, -1.5429688, 2.3925781, -0.76953125, -2.9140625, -0.52783203, -0.031555176, 0.9692383, -2.4511719, -0.9785156, -2.1425781, -0.27246094, 1.3652344, -1.4238281, 2.2792969, 1.8339844, 0.6801758, -0.59716797, 0.95751953, 0.95166016, 0.22595215, -0.32348633, 0.09100342, -0.6982422, 0.6958008, -1.5898438, -2.3125, 1.6289062, -0.2524414, -0.71728516, -1.2890625, 0.7553711, -1.7177734, 2.7480469, 0.7426758, -2.8417969, -1.7236328, -0.47680664, -0.7216797, 2.4121094, -1.9492188, 1.3847656, 2.2089844, -1.8535156, 2.9824219, -1.0341797, 1.2382812, 0.5048828, -1.5078125, 2.7910156, -2.4941406, 0.09893799, 0.49682617, 2.1152344, -0.9189453, 0.63671875, 1.0595703, 4.265625, -1.4541016, -3.4160156, 2.8515625, -1.7519531, -1.5732422, 1.8095703, -0.6401367, -0.53222656, -0.03515625, 1.6044922, 0.17272949, 1.8173828, 0.5644531, -0.97021484, -1.2158203, 0.5786133, -2.3828125, -0.91015625, 0.56933594, 0.21081543, -1.2773438, -2.2910156, -0.5136719, -1.0175781, -1.6259766, 3.1171875, -2.5371094, 2.0917969, 0.8413086, 1.7001953, 1.1044922, -1.6279297, -1.7382812, 0.014465332, 0.25878906, -1.4863281, -0.5751953, -0.5913086, 0.13598633, 0.03277588, -1.0849609, -0.093933105, -2.3847656, -2.5253906, -0.71484375, -3.2167969, -1.7802734, -0.9848633, -2.6523438, -0.94970703, 0.22436523, -3.6601562, 0.09680176, -0.59716797, -4.078125, -0.66845703, -0.8925781, -1.1992188, 1.1484375, -0.034454346, 0.096191406, -0.47631836, -3.3242188, 0.41455078, -0.49804688, 0.27734375, 1.4638672, 1.4248047, -0.8129883, -0.7919922, -0.22790527, -0.6542969, 0.83984375, 1.0566406, -0.8461914, -0.9086914, -3.8828125, 0.2220459, -2.3125, 0.40014648, -0.054718018, 1.2880859, -2.4941406, -1.2177734, -0.72558594, -1.4755859, 4.0273438, -0.41455078, 1.0214844, 0.13623047, 0.38793945, 1.1347656, -0.6279297, -2.1347656, -0.8330078, 0.7548828, -1.7636719, -2.7988281, -1.7207031, 0.8598633, -0.24804688, 0.25463867, -0.75146484, 2.5351562, -0.9824219, 1.1650391, -1.7558594, -1.375, 0.19299316, 1.8847656, -0.24133301, -1.1650391, -2.4628906, -1.4628906, -0.5341797, -0.49682617, -0.5136719, 2.8144531, -1.2255859, 1.2207031, 0.67333984, -0.075927734, 0.71533203, -1.5693359, -2.1601562, 3.7988281, 1.5058594, -2.578125, 2.3632812, -1.6953125, -2.3183594, -1.6787109, -0.10736084, 2.2851562, 0.9921875, 3.2128906, 0.13806152, 1.6826172, 0.75, 2.3242188, 1.5058594, -1.1132812, -1.359375, 2.8652344, -0.72802734, -2.4707031, 0.61376953, 2.4023438, -2.4394531, -1.1660156, 2.4707031, 2.4511719, 2.421875, 1.9511719, 1.7890625, 1.6621094, -1.0761719, 1.8173828, 1.1992188, 1.7021484, -0.28393555, -1.0800781, 0.86376953, -1.2939453, 1.0683594, 1.9208984, -0.19995117, 1.859375, 0.7919922, 0.083618164, -2.2246094, 0.609375, 1.6640625, 2.3730469, 0.9663086, 1.4033203, -0.39916992, 0.42773438, -0.34692383, -1.8300781, -0.118774414, -2.671875, 0.05053711, 1.5107422, -0.10656738, 1.2763672, 1.2050781, 0.8017578, 0.15039062, -0.39404297, 0.37451172, -1.2128906, 0.29467773, 0.40649414, -0.6118164, -0.23498535, -1.2392578, 1.6044922, -0.78222656, -1.8408203, 0.3400879, 3.3789062, -1.2236328, -1.5224609, 1.6943359, 0.5698242, -0.8129883, 2.6679688, 0.5625, -1.4199219, 0.67089844, -2.1679688, 1.3359375, 0.5058594, -0.7138672, -0.63916016, -0.8232422, -0.6586914, 0.17297363, 0.2956543, 1.9082031, 2.0742188, -1.2382812, 0.089538574, -4.1445312, 0.42041016, 0.8310547, -1.8896484, -1.2617188, 1.7539062, 0.734375, 1.6005859, -1.6972656, 2.9335938, 0.46289062, -0.40356445, 1.7333984, -2.9960938, -1.3574219, -4.078125, -3.3652344, 0.90625, -0.9433594, -1.6953125, 1.0537109, 0.17297363, -1.1083984, 2.2363281, -0.048553467, -1.9023438, -0.25390625, -1.3017578, -0.51416016, -0.5175781, -0.9501953, 0.63916016, 0.3190918, -1.2802734, -2.9238281, -0.19750977, 0.34936523, 2.015625, 1.5, -3.2011719, 2.3867188, -2.4628906, 0.46264648, 0.036132812, -1.4287109, 1.3007812, -1.9970703, 0.57470703, -3.4003906, 1.5234375, 1.1074219, -0.73046875, 1.8994141, 1.7871094, 0.7001953, -2.3339844, -1.4423828, 1.0458984, 3.9121094, -0.7832031, -3.0117188, -1.4931641, 1.9921875, -0.09643555, -1.6025391, -0.5395508, -1.9443359, -1.8583984, -0.81152344, 2.3242188, 1.7851562, 1.1748047, 0.37841797, -2.5195312, -1.2851562, 0.6323242, -2.0527344, -1.4716797, -1.4560547, 0.92529297, 0.14611816, -1.2929688, -1.578125, 0.39575195, -1.9941406, -0.21032715, -3.0058594, 3.8203125, 2.59375, 1.3876953, 3.5292969, -1.1523438, 0.37451172, 1.0878906, 0.19238281, -1.7099609, 1.8173828, 0.25219727, 0.4104004, 1.5429688, 0.671875, -1.5585938, -0.5576172, 2.0859375, -2.2675781, -1.0791016, 0.035461426, 0.7426758, -0.08618164, -0.9243164, 2.7539062, -0.8618164, 2.6074219, -0.7495117, -0.73291016, -0.083984375, -0.22399902, -2.1425781, 0.8613281, -0.5073242, 0.17797852, 0.08294678, 1.6923828, 1.984375, -1.2763672, -0.26904297, -1.3017578, 2.2089844, 0.066589355, 0.4248047, -1.4414062, 0.9003906, -0.17150879, -1.5566406, 1.0371094, 2.5742188, -0.023635864, 3.3730469, 1.7158203, -2.2578125, 1.7587891, -0.4165039, -2.5449219, -0.328125, 0.9511719, -0.04333496, 0.85546875, 1.3671875, -3.4550781, -1.1376953, 2.2167969, -0.984375, 1.1347656, -0.06854248, -1.8710938, 1.1826172, -1.3203125, -0.6689453, 0.17529297, 1.3642578, -0.38598633, -0.5678711, 0.81640625, -1.3154297, 0.64941406, 2.4160156, -0.08392334, -2.3242188, 3.3085938, 0.05496216, 1.5878906, -0.49853516, 1.0800781, -2.0605469, 0.90625, 3.8808594, 0.8598633, 2.5234375, 0.79589844, 1.9023438, -2.7578125, 0.8129883, -2.0078125, 4.515625, -1.3662109, -0.22375488, 3.5019531, -3.0683594, 0.98828125, -2.8789062, 0.97314453, -0.40820312, 1.6005859, 1.28125, -1.1044922, -0.21435547, 0.70654297, -1.6279297, -3.1855469, -1.1201172, 1.3671875, 0.2524414, -0.77246094, 0.92529297, -1.7314453, 0.8203125, 0.8305664, -0.33666992, -2.2070312, -0.7792969, -1.2167969, -0.90771484, -1.2070312, 0.5932617, -1.0292969, 1.1083984, -0.3642578, 0.40966797, 0.5732422, -4.5742188, -2.3574219, 2.0820312, -1.8212891, 0.9165039, 2.3496094, 0.11743164, -0.13757324, 0.63378906, -0.44311523, -1.6259766, 1.0800781, -1.7021484, 0.36791992, 1.1171875, -0.04699707, 1.0507812, -0.8227539, -1.1230469, 0.19128418, -1.9619141, 0.49609375, 1.3398438, 0.49169922, 0.13256836, 1.4160156, 0.02949524, -2.0351562, 0.8256836, -0.4423828, 1.2480469, 1.6123047, -1.7998047, -0.09503174, -1.8486328, -1.9033203, -0.31811523, -2.5839844, 0.65185547, -0.3864746, 0.38916016, 0.6875, -0.2841797, 0.5888672, 0.07513428, -0.11248779, -0.75097656, 0.4165039, -1.4453125, 2.2382812, 1.7460938, -1.640625, -0.44921875, -0.8779297, 0.6894531, 1.1376953, 1.7382812, -1.0263672, -0.041931152, -0.15856934, 0.30444336, -0.34277344, 0.6064453, 2.5683594, -0.2746582, -1.8486328, 1.7841797, 4.125, 1.3574219, 0.20825195, 1.203125, -0.07537842, 0.8203125, 5.421875, -0.1529541, -1.2353516, 1.3867188, -1.8388672, 1.7792969, 0.06512451, -1.015625, 0.52783203, -1.7998047, -1.9003906, -2.9375, -1.2978516, -2.7539062, 1.7568359, 1.7050781, -0.4716797, -0.2368164, 2.5078125, 0.91015625, 1.7646484, 2.0429688, 0.24707031, 0.42236328, 1.2304688, -1.2685547, -0.36499023, 1.7431641, -2.7871094, 1.9667969, 0.89501953, -1.0263672, -1.7070312, 3.3125, -0.019317627, 2.28125, 1.5507812, 0.96191406, 1.2529297, 2.4570312, 3.71875, 0.18981934, 1.0302734, 1.0488281, -0.72021484, 1.5878906, 2.3710938, 3.3574219, -0.63916016, 0.4519043, 2.2070312, -1.0078125, -1.4345703, 0.47192383, -0.06921387, 1.1855469, -2.5429688, 1.5263672, 0.4736328, 1.6386719, -1.7597656, -1.046875, -0.10418701, -1.5029297, -1.5800781, 0.2631836, 2.921875, -1.0566406, 0.51708984, -1.0839844, 0.14672852, 1.6289062, -2.8945312, 1.8232422, 1.0273438, -0.35620117, -0.2064209, 0.90771484, 1.7646484, 0.15454102, 0.5258789, 2.0136719, 1.0166016, 1.3544922, 0.45654297, -0.6347656, 0.9770508, 0.33764648, 3.2871094, -0.70751953, -0.43798828, 2.3007812, -2.3867188, -2.0410156, -4.1640625, 2.8808594, 3.0097656, 1.2275391, 2.3300781, -1.8339844, 2.5, 0.10003662, 1.2128906, -2.0683594, 0.46972656, 0.08917236, -2.125, -1.0058594, 0.85253906, 0.24157715, 2.1328125, 2.5058594, -1.4208984, 1.2412109, 0.66308594, 0.10595703, 2.3359375, 1.375, -0.99853516, 0.9873047, 0.50634766, 1.40625, 0.045532227, -2.0839844, -1.7558594, 1.5175781, 0.91503906, -0.16271973, 0.53027344, -0.55371094, -1.0654297, -0.9970703, -0.765625, -0.10235596, -2.8476562, -2.5703125, 0.36010742, -0.3779297, -1.5273438, -1.9511719, 2.6933594, -0.1616211, -1.2021484, -0.28271484, 1.8232422, -1.1162109, 1.9160156, 0.69873047, 0.42578125, 0.81152344, -1.9560547, 1.3173828, 0.6201172, -1.5302734, 0.5473633, 0.4128418, 1.6611328, -1.3759766, -0.02748108, -0.18774414, 0.6645508, 1.0009766, 0.98095703, -0.73339844, -0.5786133, 2.1972656, -0.7836914, -0.48535156, 2.5410156, -0.07965088, -0.33911133, -2.1367188, -3.0097656, 0.09820557, 0.14709473, -1.0449219, 0.9272461, 3.28125, 3.4863281, 0.23046875, -1.9355469, -2.9765625, -0.0020370483, -0.7944336, 0.93603516, -1.2382812, -0.64990234, 0.23278809, 0.328125, 1.9980469, -0.11743164, -2.5175781, -0.44555664, -1.0546875, -0.30297852, -0.68408203, 2.3535156, -0.43847656, 1.2011719, -0.38891602, 2.2929688, 2.5683594, -0.91308594, 1.1230469, 2.8046875, 0.63720703, -2.4882812, 2.5722656, -0.4711914, 0.16479492, 0.13647461, 1.0136719, 1.6943359, 0.31958008, 1.2792969, -0.95654297, -3.1582031]}, "B000W8JNLC": {"id": "B000W8JNLC", "original": "Brand: XtremepowerUS\nName: XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator\nDescription: Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24\"(L) x 14\"(W) x 5\"(H) Package Contents: Propane Stove Regulator Hose\nFeatures: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on\nDurable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting\nPortable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors\nSafe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage\nPowerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.\n", "embedding": [-2.2558594, 2.1464844, 1.6113281, 0.7285156, -0.9560547, 1.4082031, 1.6669922, -2.0234375, -2.0996094, 1.3544922, -0.18811035, 0.021484375, 0.73339844, -2.9140625, -0.4555664, 0.8808594, -0.82373047, 0.06896973, -0.34155273, 1.84375, 1.859375, 0.5522461, 2.8105469, -1.2851562, -0.1340332, -0.5756836, 2.8164062, -2.8945312, -0.5996094, -1.5449219, 2.21875, 0.07867432, -0.68408203, 2.4082031, -3.4628906, -0.080444336, -0.95996094, 0.08215332, -3.921875, -0.7558594, -1.0449219, -0.6958008, 3.3886719, -0.8647461, -2.2050781, -0.8696289, 0.53222656, 0.22717285, -1.2060547, 0.1340332, 0.45288086, 0.07366943, -0.55566406, 1.5097656, -2.0019531, -0.56933594, -0.24145508, -1.5361328, 2.46875, 0.72509766, 2.8886719, 0.8828125, -2.6992188, 1.4697266, -0.39746094, 0.39990234, 1.2910156, -0.6923828, -0.89501953, 0.18334961, 2.4121094, 0.27148438, 0.2614746, 0.2824707, -0.0017738342, -0.17700195, -3.5488281, 1.1162109, 3.71875, -0.10559082, -2.265625, 2.6210938, 1.4013672, -0.12683105, 0.69384766, 1.4931641, -1.1660156, -0.70458984, 2.3613281, 1.3017578, -2.609375, 3.0371094, -1.8134766, -4.25, 1.8544922, -0.50634766, 1.6474609, 0.86328125, -0.5566406, 1.1914062, -0.67285156, 0.41552734, -1.2880859, 0.36865234, -2.0234375, -0.39624023, 2.0644531, 2.3867188, -3.078125, 1.8339844, -2.4609375, -0.39379883, 0.70458984, -0.09844971, 0.7973633, -1.0732422, -1.3662109, 0.04510498, 4.546875, 0.38745117, 4.65625, -0.50634766, 1.6572266, -1.1035156, 0.42333984, 2.296875, -0.6870117, 0.7963867, 2.5957031, -0.41748047, -1.2949219, -1.3789062, 1.015625, -0.4326172, -1.1279297, -1.7421875, -1.2792969, -3.1503906, -4.375, -0.43823242, -3.15625, 0.83935547, 1.4824219, -0.69433594, -4.1445312, -0.6875, -0.24255371, 1.8027344, 1.4335938, -1.6542969, -0.20947266, -1.5517578, 0.28808594, -2.4941406, 2.8632812, 0.49316406, -0.7504883, -1.5195312, 3.21875, 0.88134766, 0.2746582, -2.3378906, -3.0429688, 2.3964844, 0.31176758, -2.9023438, 0.15820312, 1.4511719, -1.3964844, 0.8847656, 0.05871582, -2.8417969, 0.13842773, 0.19567871, 1.2236328, -0.8198242, -1.4501953, 2.2480469, 0.73876953, -1.4755859, -2.7441406, -2.4375, 1.3828125, 1.1162109, 0.39941406, -0.56152344, 0.70654297, -0.30126953, -0.3269043, -2.3867188, -0.81591797, 1.1191406, -0.88378906, 0.050476074, 0.5317383, -1.8935547, -1.7753906, -2.4394531, 0.88671875, 1.7675781, -1.2548828, -0.8901367, -0.71875, 1.5908203, -2.4238281, -0.9428711, 0.77783203, -0.28588867, 1.9150391, 2.5644531, 0.21240234, -0.64990234, 2.6835938, 0.078186035, -0.5078125, -1.7402344, 2.53125, 1.5429688, 1.4199219, 1.8544922, 0.09661865, -1.5546875, 0.84033203, 2.3359375, 0.48901367, 2.6914062, 0.21264648, -1.0136719, -2.4589844, -1.3291016, 2.4902344, 1.2001953, -0.73828125, 1.2929688, -0.7001953, 2.9023438, 1.7529297, -0.6616211, -0.019241333, 0.080200195, 0.7211914, -1.7949219, -0.3474121, 0.0035324097, -2.0820312, 0.27929688, 0.46264648, 0.80615234, 3.1347656, 1.0429688, 0.07574463, 0.14562988, 0.37670898, -0.74658203, -0.7060547, -0.41625977, 0.73291016, -0.0077209473, -1.9023438, -1.8525391, 1.9453125, 1.8056641, 0.22595215, 1.6162109, 0.32617188, -0.22875977, 4.0820312, 0.57128906, -2.6054688, 0.3112793, 0.69970703, 1.7763672, 2.5039062, 0.07385254, 2.4296875, -1.3291016, -1.1386719, 2.3457031, 0.40893555, 1.9160156, 1.0712891, -3.7050781, 2.3496094, -2.1757812, 0.58251953, -0.014373779, 3.2792969, -0.1751709, -0.23071289, -0.06121826, 6.0664062, -0.48510742, -2.0957031, 2.1425781, -1.6972656, 0.63720703, 0.44677734, 0.52734375, 1.5693359, -0.23327637, 2.2460938, -0.4482422, -1.1953125, 1.9121094, -1.5595703, -0.36499023, 0.6425781, -2.4277344, -0.17260742, 1.3369141, -0.10180664, -1.6621094, -1.4228516, 1.2978516, -2.0566406, -1.1630859, 1.9628906, -2.8300781, 1.3925781, 2.7089844, 0.1854248, 0.71875, -0.4086914, -2.0820312, 0.33081055, 0.7890625, -0.14685059, 2.2832031, 1.3466797, -0.7416992, -1.0830078, -2.1699219, 0.64697266, -2.15625, -1.5683594, -0.17541504, -0.8222656, -2.4609375, 0.8461914, -1.7480469, -0.65527344, 0.7128906, -2.2207031, 1.0507812, -0.10406494, -2.5878906, -0.265625, 0.49316406, -0.8100586, -0.9824219, 0.9394531, 2.0449219, -0.35961914, -2.3125, -0.47338867, -0.5078125, -0.05291748, 0.2277832, -1.6679688, 1.1103516, -0.58691406, 0.9291992, -0.119628906, 0.02659607, -0.048736572, -3.2480469, 1.3515625, -4.6015625, -0.19299316, -0.52490234, 0.8725586, -0.45336914, -0.05899048, -1.6923828, -0.875, -0.121032715, -1.1943359, 3.4433594, -1.4355469, 1.3583984, -1.6962891, -1.5253906, -1.0048828, -1.8144531, -2.8457031, -0.32592773, -1.2626953, -2.2265625, -0.8652344, -3.5390625, 0.44628906, -0.82373047, -0.32641602, -0.7114258, 0.60546875, -1.3251953, 0.97216797, -0.578125, -0.7480469, 0.35107422, -1.4462891, -0.8857422, -2.5292969, -1.2763672, 0.08917236, -1.1376953, 0.06072998, 0.9614258, 0.19958496, 0.50097656, 0.20056152, 2.1113281, 1.0400391, -0.31079102, 0.4711914, -3.8984375, 2.2285156, 1.4033203, -0.83984375, 1.3457031, -0.9707031, -0.46020508, -2.2207031, -2.2011719, 2.8046875, 1.3027344, 2.5839844, -0.3725586, -0.63427734, 1.5800781, 1.5683594, -1.2880859, -2.0253906, -0.53222656, 4.6640625, -3.9101562, -1.2871094, 1.8154297, 2.7851562, -2.3984375, 0.013420105, 0.7832031, 1.2646484, 2.4296875, 1.5117188, 0.19848633, -0.8515625, 0.07086182, -0.28466797, 2.7675781, 0.19909668, 0.35864258, -0.45092773, -0.029510498, -0.24035645, 0.36914062, 0.28320312, 1.0576172, 1.9980469, 2.3984375, 1.3789062, -2.5957031, 0.42382812, -0.2998047, 1.3154297, 0.7216797, 2.5917969, -0.15161133, -1.4248047, -1.9824219, 0.013381958, 1.4775391, -0.5541992, 0.4567871, 0.45166016, 1.8837891, 0.5444336, 0.30639648, -0.53027344, 0.43017578, -1.15625, 2.1054688, 0.6850586, -0.66503906, 1.3652344, -0.8120117, -0.78515625, -2.3945312, 1.4335938, -1.1953125, -1.8330078, 0.7636719, -0.20507812, -3, -2.1445312, -1.2958984, -0.2890625, -1.125, 4.9179688, 1.0810547, -1.4726562, -0.24584961, -1.0371094, -0.3322754, 2.9921875, -1.2539062, -0.41479492, -0.8496094, -0.61865234, -0.25195312, 0.15258789, 1.1298828, 0.7944336, -0.94921875, -0.18945312, -3.0488281, -1.1943359, 0.32226562, -1.8759766, 0.50927734, 1.6494141, 0.08325195, 1.6445312, -0.9482422, 4.2617188, -2.3574219, -2.0644531, 1.5488281, -3.0898438, -0.97216797, -3.5175781, -3.6445312, 1.9833984, -1.2148438, 0.037841797, 3.03125, -0.43432617, -0.6191406, 1.0214844, 0.74609375, -1.8837891, -1.5595703, -0.9863281, 1.5878906, -2.765625, 0.45532227, 1.5615234, 0.92626953, -1.5390625, -0.82958984, 0.44335938, -0.31811523, 1.0273438, 1.078125, -2.5175781, 1.4101562, -0.7626953, 0.8071289, -0.70654297, -0.82470703, 1.1611328, -1.5449219, -0.43164062, -1.4384766, 1.2705078, 1.6210938, 0.32226562, 0.08117676, 3.5898438, 1.0859375, -0.58251953, -0.5019531, 2.1386719, 2.8339844, 0.11151123, -1.9169922, -1.2792969, -0.66748047, -1.7998047, 0.3095703, 0.15710449, -0.90283203, -1.9746094, 1.8583984, 0.69189453, 1.3066406, 1.9941406, 0.6899414, -1.8232422, 0.5239258, 0.9453125, -3.4492188, -1.4345703, -0.9213867, -0.12597656, -1.7304688, 0.39916992, -0.8935547, -0.6899414, -1.1767578, -1.4238281, -1.375, 2.3769531, 1.2900391, 1.0673828, 1.8710938, -0.57421875, -2.1445312, 0.90527344, -0.5551758, -1.4111328, 1.8378906, -0.5209961, -0.19946289, 2.4238281, 1.1455078, -0.46801758, -1.0810547, 1.1904297, -1.9492188, -0.84228516, 0.036499023, 2.0664062, -1.0195312, -2.0703125, 1.5839844, -0.27734375, 1.984375, -1.1884766, 0.23583984, 0.9711914, 0.28759766, -2.15625, -0.6850586, 0.45507812, 1.4121094, 0.42626953, 0.9760742, 0.70751953, 0.17150879, 1.6074219, 0.9008789, 2.8398438, -0.16333008, 0.16784668, -0.105041504, -0.028259277, -1.1533203, -0.90478516, 0.89208984, 1.6308594, 1.0234375, 3.5117188, 0.70996094, -1.1865234, 2.1738281, 0.09460449, -2.0683594, -1.3789062, 0.088012695, -0.9458008, 2.1269531, 0.026489258, -2.5996094, 0.32983398, 2.5175781, -0.5385742, 0.9682617, -0.5620117, -1.2617188, 0.26611328, -3.6660156, -0.99365234, -1.3808594, -1.5458984, 1.7636719, -2.4765625, 0.9165039, 0.21057129, 2.296875, 2.4609375, -0.99902344, -0.1887207, 1.7265625, -0.3696289, 1.0673828, -0.5517578, -1.0996094, -3.78125, 1.0029297, 1.6396484, 0.77197266, 1.7617188, 1.4648438, -0.3010254, -0.99853516, -1.5126953, -1.5488281, 1.7558594, -1.8427734, 0.074157715, 2.15625, -0.14465332, 1.2001953, -0.71533203, -1.7548828, -1.390625, 2.5019531, 1.0039062, 0.1763916, -0.68652344, -0.4506836, -2.4042969, -6.3203125, -0.9550781, 1.1503906, -0.18432617, -0.8066406, 0.019348145, -1.0888672, -0.33789062, 0.50146484, 0.6972656, -2.453125, 0.6953125, 0.6220703, 1.2060547, -1.5195312, 0.3046875, 0.6386719, 2.3730469, 1.4199219, 0.052856445, 0.35229492, -1.2597656, -1.9882812, 1.4257812, -2.2421875, 0.9526367, 0.62158203, -0.79833984, 0.03189087, 1.9970703, -1.1171875, -1.265625, 2.3769531, -2.2246094, 0.17468262, -0.3334961, -1.59375, 1.4726562, 1.0976562, -0.49975586, 1.2167969, -0.75634766, -0.10430908, 0.29858398, 1.7226562, 0.06414795, 1.9179688, -0.16186523, -1.5615234, 0.8408203, 0.06933594, 0.9838867, 2.046875, -0.00056934357, -1.7080078, -3.0253906, -3.3144531, 0.62841797, -0.93408203, -0.0018987656, -1.6474609, 1.4326172, 0.2265625, 0.5551758, -0.13562012, 0.20837402, 0.062927246, 0.28173828, 1.078125, -0.96777344, 3.5488281, 0.5107422, -1.4150391, -3.8613281, -2.5546875, 0.81884766, -0.60498047, 1.0693359, -1.2089844, 0.26635742, -0.76416016, 1.1074219, -0.3125, 2.7773438, 2.4101562, 1.2880859, -1.1904297, 0.92529297, 1.9716797, -0.48632812, 0.23083496, 0.19018555, -0.78564453, -0.20788574, 2.9707031, 1.5947266, -0.3503418, 1.6748047, -0.24389648, 2.0449219, -0.18566895, -2.4550781, 1.5214844, -2.1132812, -1.2539062, -2.2792969, -2.0136719, -1.5634766, 1.9111328, 1.7011719, 0.1776123, -0.16381836, 2.9101562, -0.3190918, 0.33813477, 1.9580078, 1.0546875, -0.099121094, 1.6201172, -0.6513672, -0.08117676, 1.9580078, -2.125, 0.79785156, 1.4160156, -0.032989502, 0.059020996, 2.7070312, 1.4238281, 2.7460938, 1.4833984, 1.9433594, 2.6171875, 1.5664062, 3.7128906, -0.0013942719, 2.6015625, 2.3164062, 0.023086548, -0.34643555, 2.0371094, 1.3271484, -1.4375, -1.3896484, 1.3515625, -0.48754883, -1.4414062, -1.1992188, -0.039215088, 0.7631836, -3.4257812, 1.4082031, 0.23876953, 0.80371094, -0.5727539, 0.9140625, -1.3398438, -0.5810547, 0.5083008, 0.5751953, -1.453125, -0.8125, -0.11553955, -1.0478516, 0.21655273, 0.9453125, -3.2128906, 0.33813477, -1.5410156, -1.9785156, 0.15576172, 2.4179688, -0.15209961, 1.2910156, 0.30126953, 2.0566406, 0.52197266, -0.44750977, 2.2519531, -1.7685547, 0.98876953, -1.1123047, 3.1699219, 0.55078125, -1.1035156, 2.0859375, -2.0546875, -2.3554688, -4.03125, 2.7128906, 0.109375, 0.60302734, 1.2509766, -1.9912109, 2.8359375, 0.58740234, 1.6894531, -2.6152344, 1.6982422, -0.45629883, -1.6796875, -0.6279297, 0.7714844, 0.140625, 3.6015625, 1.9814453, -1.2519531, 1.1044922, -0.16259766, 0.4267578, -0.7714844, 0.8730469, -0.14331055, 0.50439453, -0.9868164, 2.6308594, 2.2128906, -2.4082031, -0.71435547, 3.2480469, 1.46875, 1.2822266, -0.9189453, -1.6816406, 1.4824219, -0.016693115, -0.48510742, -0.32910156, -0.2878418, -1.4902344, -1.03125, -0.35864258, -1.2822266, -2.7148438, 0.31347656, 1.4580078, -1.7910156, 1.3115234, 1.9052734, -0.4428711, 0.66845703, -0.13171387, -1.0205078, -0.14111328, -0.9848633, 1.1396484, -3.1464844, -1.9736328, -0.11364746, 0.60791016, 1.6357422, -0.75878906, -0.4975586, -0.17016602, -0.3791504, -0.11230469, 1.5869141, -0.55859375, 0.80371094, 0.85009766, -0.2529297, -0.19421387, 3.3359375, -0.20227051, 0.07598877, -1.4472656, -3.0722656, -0.7636719, -1.1044922, -1.3076172, 1.6542969, 3.0175781, 1.3310547, 0.9355469, -2.7382812, -2.5996094, -1.3408203, -0.50146484, 1.6005859, 0.21826172, -0.73339844, 0.97265625, 1.0556641, 2.8398438, -1.1816406, -0.32055664, -0.6328125, 1.2207031, 0.39135742, 0.96533203, 2.0253906, 0.73828125, 0.6230469, -0.89160156, 3.3398438, 1.8564453, 0.16674805, 1.7001953, 1.1308594, 0.5336914, -2.7011719, 0.56591797, -2.203125, 0.23425293, 1.0664062, -1.4072266, 2.9257812, 2.65625, -1.0878906, -2.8691406, -1.984375]}, "B00004TBJ4": {"id": "B00004TBJ4", "original": "Brand: Char-Broil\nName: Char- Broil Standard Portable Liquid Propane Gas Grill\nDescription: \nFeatures: Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don't have to wait for the grill to cool down to move it\nCook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that's easy to clean and dishwasher safe\n11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders\nQuality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill\nGreat for grilling and indirect cooking at low temperatures - just close the lid and you'll get even heat and low flare-ups\n", "embedding": [-1.6708984, 1.2753906, 2.4179688, 1.0146484, -1.2871094, -0.6376953, 1.8535156, -0.8911133, -1.109375, 1.4248047, 0.39501953, -2.296875, 1.9384766, -3.015625, -0.17053223, 0.12298584, 1.5732422, 1.6318359, 3.1230469, 0.3635254, -0.5107422, 1.4404297, 1.4960938, 0.05758667, 0.4663086, 0.27929688, 2.890625, -1.6142578, 0.24353027, -2.2382812, 1.8583984, -0.93408203, -0.6611328, 1.4003906, -2.4101562, -1.4853516, -2.1308594, 1.8955078, -2.5800781, 0.032043457, 0.023010254, -0.8041992, 2.421875, -0.8227539, -1.8564453, -0.8623047, -0.4428711, 0.7397461, 0.91259766, -0.44067383, 2.0371094, 1.0371094, 0.69140625, 0.9580078, -2.0664062, 1.3330078, 0.71875, -1.6914062, 0.73779297, -0.36645508, 2.4882812, 0.64501953, -1.4853516, 0.25683594, -1.9384766, -0.05731201, 0.06512451, -0.54833984, 0.19396973, -1.0859375, 2.3378906, -0.39575195, -2.0371094, 0.08392334, 0.77197266, 1.0751953, -1.2539062, 1.9130859, 0.6123047, 0.05319214, -1.2832031, 3.6582031, 0.06378174, -1.6523438, 0.05883789, 0.12451172, -0.84375, -1.3105469, 2.1328125, 1.1816406, -0.07946777, 2.7988281, -0.64501953, -3.0820312, 2.3945312, -0.85302734, 2.1699219, -0.048034668, 0.016174316, 1.6728516, -0.71240234, -0.4880371, -2.5097656, -2.46875, -2.8867188, -1.6191406, 1.1083984, 0.56640625, -2.0996094, 1.7363281, -1.5214844, -0.5527344, 2.4238281, 1.3183594, 0.42871094, -0.73828125, 0.059753418, 4.6015625, 1.3544922, 1.2832031, 4.34375, -0.6567383, 1.4794922, -0.83203125, -0.25976562, 0.46240234, -0.7988281, 1.625, 4.8710938, -0.8251953, -0.6713867, -1.2441406, 2.5683594, 1.1123047, -1.9677734, -1.7001953, -1.3417969, -2.1191406, -4.1171875, 1.7880859, -2.4316406, 1.0634766, 0.9501953, -0.12988281, -2.7324219, -0.8666992, 0.55810547, 2.0566406, -0.01902771, -2.1835938, 1.1337891, -2.1132812, 0.43896484, -1.9453125, 1.0263672, 0.77441406, -2.0097656, -1.1835938, 3.703125, 1.3818359, 2.0253906, -1.5351562, -1.0234375, 2.1386719, 1.3720703, -0.89941406, 0.35424805, 1.2714844, -0.36523438, 1.4208984, 0.48242188, -3.0566406, -0.5551758, 1.7978516, 1.2568359, -1.9453125, -0.27783203, 2.6191406, 0.22827148, -0.65722656, -0.72021484, -2.7675781, 1.1484375, 0.6040039, 0.055633545, -1.1572266, -0.24084473, 1.0644531, -0.29882812, -1.5693359, 1.1308594, -0.9321289, -0.40014648, -0.06896973, -0.09484863, -0.9458008, -1.0732422, -0.85058594, 0.49853516, 1.1650391, -1.7333984, -0.0826416, -0.11755371, -0.20874023, -2.4648438, -3.0058594, 0.74658203, -1.7226562, 0.04663086, 0.62402344, 0.41503906, -1.6796875, 1.1640625, -0.37768555, -0.11004639, -1.8642578, 1.5390625, 0.085876465, 2.5546875, 1.8505859, 1.046875, -0.9189453, -0.5415039, 2.2070312, -0.14025879, 2.7167969, -0.18127441, 0.8779297, -1.3447266, -1.2421875, 2.6796875, 0.7270508, 0.24951172, -0.17810059, -0.48901367, 1.5966797, -0.6635742, 0.70458984, -1.1308594, 0.31713867, -1.3349609, -0.7324219, -0.23596191, -2.6660156, 0.114868164, 0.35742188, -1.8515625, 3.2421875, 1.8583984, -0.25927734, -0.35009766, 0.32592773, 0.55615234, 1.3740234, -0.27807617, 1.3808594, -0.1083374, 1.3222656, -2.3515625, -1.5898438, 0.22167969, 1.6171875, 0.15136719, -0.6044922, 1.0341797, -1.6416016, 2.53125, 2.0859375, -1.2734375, -0.91015625, 0.7011719, 1.9609375, 0.0736084, -1.1572266, 1.3349609, 0.6118164, 0.12042236, 3.75, 0.70654297, 0.24121094, 1.125, 0.20837402, 2.0214844, -1.4248047, -1.8847656, 1.0058594, 1.7177734, -1.1933594, 0.010299683, 0.2854004, 4.3828125, 0.6357422, -2.609375, 2.8046875, -1.2714844, 1.1689453, 2.1132812, 0.05996704, -0.117248535, 0.6274414, 3.4355469, 0.7348633, -0.296875, 1.0898438, -2.7324219, -2.453125, 0.51953125, -1.0849609, -0.7446289, 1.2255859, 0.1427002, 0.45898438, -1.6142578, 1.0751953, -2.6816406, -1.6220703, 1.46875, -2.7304688, -0.15405273, 1.7880859, 0.95703125, 0.9057617, 0.06719971, -2.4003906, -0.41259766, 1.7294922, -0.89697266, 0.71240234, 0.47558594, -0.5698242, -0.5678711, 0.4807129, 0.640625, -1.125, -3.1679688, -1.3134766, -1.8710938, -3.6171875, 1.4833984, -1.3427734, -1.9814453, 1.8378906, -1.8398438, 0.77734375, -0.07281494, -3.6679688, -0.4609375, -0.078063965, -0.74609375, -1.6972656, 0.10040283, 0.30493164, 0.23132324, -4.3515625, -0.6044922, -0.2590332, 0.37158203, -1.2519531, -0.9482422, -1.2832031, 0.42626953, -1.0068359, -1.0009766, 1.8691406, 0.70947266, -2.140625, -0.49365234, -2.4433594, 2.2363281, -2.9375, 0.091552734, -1.6083984, 0.96875, -3.8613281, -2.171875, -0.14282227, -1.5664062, 3.4375, -0.9477539, 0.9584961, 0.4255371, -0.40551758, 0.30664062, 0.1496582, -3.6269531, -0.79052734, -0.3696289, -1.2568359, -2.7011719, -3.4746094, -0.4572754, 0.74365234, -1.0908203, -0.6582031, 0.28442383, -3.7285156, 2.2597656, -2.8632812, -0.39746094, -1.5966797, 1.8056641, -0.45581055, -1.2763672, -1.0351562, -0.13891602, -1.4414062, -1.2265625, -0.9428711, 1.0429688, -0.9760742, 1.2128906, 1.9921875, 0.43676758, 1.1416016, -1.2070312, -4.4882812, 3.3867188, 1.1806641, -2.4355469, 3.0078125, -0.093933105, -1.9541016, -3.6386719, -0.7792969, 2.5878906, 1.9404297, 3.75, 1.9550781, -0.5620117, 3.1308594, 0.8105469, -0.52490234, -0.98095703, 0.13903809, 2.3066406, -2.6972656, -1.8994141, 0.16784668, 3.8183594, -1.5, -1.0498047, 4.09375, 0.69189453, 2.8417969, 2.0039062, 1.0371094, 0.7260742, -0.41674805, 2.4804688, 1.2177734, 1.0078125, 0.17956543, 0.0042152405, -0.82421875, 0.48095703, 1.0341797, 0.9042969, 0.031799316, 1.8271484, 2.0136719, 0.30664062, -1.6748047, 1.1142578, -0.41601562, 0.22790527, -0.14355469, 1.1328125, -1.6835938, 0.13684082, -1.1123047, 0.019943237, 0.3881836, 0.046783447, -1.7177734, 1.8203125, 0.5317383, 0.11279297, 0.067993164, 0.95996094, 0.093933105, -0.21643066, -0.85791016, -1.0410156, -0.24438477, -0.25048828, -1.9501953, -0.21020508, -0.5078125, 1.2558594, -1.8017578, -2.1132812, 0.74658203, 2.1113281, 0.020507812, -1.3271484, 0.8417969, 0.5786133, -1.109375, 2.8632812, 1.5976562, -2.2929688, 1.9091797, -1.1552734, 0.62890625, 1.5107422, -2.2011719, -0.953125, -2.0820312, 0.7573242, -0.13452148, 1.7060547, 1.7988281, 0.46435547, -2.6835938, -0.038085938, -3.9726562, 0.013137817, -1.1289062, -1.5947266, -2.1640625, 3.3378906, 2.0585938, 0.6948242, -0.96533203, 2.59375, 0.32250977, -1.0849609, 1.3847656, -2.6484375, -1.3447266, -3.6191406, -5.0234375, 1.0771484, 0.16455078, -1.0175781, 2.6933594, -0.8417969, -0.57421875, 1.3916016, 0.8457031, -0.7529297, -0.5703125, -1.7949219, -0.13354492, 0.045715332, 1.0136719, 2.2480469, 1.8310547, -2.1445312, -2.5820312, -1.4033203, -0.796875, 2.0957031, 3.1855469, -1.6425781, 1.53125, -2.5390625, 0.9428711, -1.9160156, -1.2255859, 1.1689453, -1.2480469, -1.1328125, -2.7128906, 0.34472656, 0.79052734, 0.032470703, 1.9072266, 1.7753906, 0.59716797, 0.41845703, -1.0683594, 1.9208984, 2.4277344, -0.17004395, -3.0742188, -2.7929688, -0.97265625, -1.1074219, -0.28588867, 0.29370117, -1.3808594, -1.9121094, 1.8652344, -0.064819336, 0.6591797, 2.2304688, 0.85009766, -2.1816406, -0.5361328, -0.3227539, -1.6259766, -1.7470703, -0.5986328, -0.5185547, -0.25024414, -0.6557617, -2.6054688, -0.124572754, -1.5732422, -0.81396484, -2.171875, 3.3105469, 2.9648438, 2.0019531, 2.3496094, -1.1816406, 0.3474121, -0.48706055, -0.97802734, -1.3310547, 1.2285156, 0.28051758, 1.5205078, 0.8769531, 0.75634766, -2.6386719, -0.296875, 1.2792969, -3.3457031, -1.8378906, -2.5683594, 1.3701172, -2.5371094, 0.36865234, -0.3635254, -1.7734375, 3.6679688, -0.74609375, -0.48291016, 0.6220703, 1.0029297, 0.08001709, 0.07965088, 0.7807617, 1.2041016, 0.7470703, 0.6176758, 0.08673096, -1.1113281, -0.55908203, -1.0615234, 2.390625, -0.7104492, 0.4921875, -0.28930664, 0.30639648, -1.7509766, -0.6401367, 0.6254883, 3.2285156, 0.36401367, 2.8554688, 1.1728516, -2.3691406, 1.6660156, 1.7578125, -3.0371094, -1.0419922, -0.93359375, -1.8935547, 1.0546875, -1.0097656, -4.9101562, 0.4272461, 1.5185547, 0.007499695, 1.0078125, -0.52246094, -0.6123047, -0.1048584, -1.8828125, -0.9199219, -0.6533203, -1.1308594, 0.29370117, -0.031707764, -0.38134766, -0.88720703, 0.9584961, 2.9257812, -0.29541016, -0.056732178, 1.5546875, -1.0078125, 0.98291016, -0.22131348, -1.5634766, -2.8457031, -0.2763672, 1.3574219, 1.1972656, 2.4394531, 0.76708984, 1.1923828, -2.8730469, -0.80029297, -1.9873047, 2.9648438, -2.0234375, -0.859375, 1.5175781, -2.2265625, 0.9838867, -2.9785156, 0.23254395, 0.06185913, 2.4199219, 1.9550781, -0.44091797, -1.0488281, -0.11828613, -2.9316406, -5.7617188, -2.8125, -0.52197266, 0.72558594, 1.0634766, 1.6767578, -1.0722656, 0.8574219, -0.11932373, 0.10308838, -1.1992188, 1.3378906, -1.1552734, -0.6479492, -0.43725586, -0.14208984, -1.3476562, 1.4472656, 0.52001953, 1.8779297, 1.2841797, -2.5507812, -1.0957031, 0.9067383, -3.0136719, -0.105651855, 0.875, -0.13745117, -0.85253906, 0.088378906, 0.5073242, -1.6738281, 3.1796875, -0.48583984, 0.19067383, 1.1425781, -0.43164062, -0.6855469, -0.25561523, -2.4121094, 0.6875, -0.6904297, 1.6142578, 0.1854248, -0.19934082, 0.054229736, 1.6210938, -1.3847656, 0.15808105, 1.2871094, 0.9267578, 1.3261719, 1.9052734, -1.4238281, 0.5361328, -2.171875, -3.0351562, 0.17346191, -2.3769531, -0.6166992, -2.5019531, 0.3803711, 0.8935547, -0.40527344, 0.9033203, 0.2902832, 0.28198242, -0.8017578, 0.7167969, -0.94384766, 2.6230469, 2.6757812, -1.6416016, -2.5820312, 0.36865234, 0.7446289, 1.9921875, 0.24816895, -0.7338867, 1.0273438, -0.9995117, 0.27661133, -0.52246094, 3.1582031, 1.3730469, -0.8432617, -0.6821289, 1.1171875, 3.5488281, -0.54248047, 0.51660156, 0.71484375, 1.8251953, -0.17114258, 3.6308594, 0.36108398, -1.8642578, 0.48876953, -2.3867188, 1.2822266, 0.022338867, -1.9511719, -0.07165527, -2.640625, -1.9541016, -1.0771484, -0.5527344, -2.7011719, 1.1621094, 1.1376953, -2.0820312, 2.1289062, 3.2988281, -1.9023438, 2.2792969, 1.6884766, 2.1699219, 0.18847656, 1.5664062, -1.2431641, 0.4260254, 0.5283203, -3.7089844, 1.2753906, -0.02217102, -0.57666016, -0.63964844, 2.8261719, 1.7285156, 2.7167969, 1.7392578, 2.546875, 3.6992188, 1.8291016, 3.5019531, -0.6069336, 1.8261719, 2.6757812, -1.7998047, 1.6181641, 3.0136719, 1.3398438, -0.6040039, -1.2265625, 2.203125, -0.6611328, -1.9101562, -0.7763672, 0.7661133, 1.4863281, -4.2617188, 1.7744141, 0.7138672, 0.37158203, -1.9580078, 0.8017578, -0.3479004, -0.97265625, -1.3398438, 0.09661865, 2.7558594, 0.15698242, 0.84765625, -0.3671875, 1.1796875, 1.5488281, -3.0976562, 0.69921875, 0.6020508, -0.81396484, 0.4177246, -0.21691895, 0.81103516, 1.4716797, 0.77783203, 0.59765625, 1.4892578, -0.3022461, 2.875, -1.5097656, 0.57470703, 0.6201172, 1.2255859, -0.9291992, -2.4765625, 1.0625, -0.83154297, -2.6679688, -2.8417969, 1.1396484, 1.4853516, 2.671875, 0.30151367, 0.21740723, 2.984375, -0.24047852, 2.0761719, -1.8691406, 0.93896484, -1.0185547, -4.1992188, -2.4492188, -0.6743164, -0.3791504, 3.578125, 0.6357422, -1.0703125, 1.8896484, 0.44873047, 1.7822266, 1.1650391, 1.6240234, 0.27490234, 0.97558594, 0.48876953, 2.3300781, -0.014595032, -0.2536621, -1.3916016, 2.2363281, 0.88671875, 0.15820312, 0.95458984, -1.3808594, 1.3779297, -0.42895508, -0.3552246, -0.26245117, -0.9926758, -2.0273438, -0.15258789, 0.921875, -1.2753906, -1.4306641, 0.8979492, 1.5302734, -1.9365234, 0.9272461, 1.8408203, 0.50634766, 1.5966797, 0.19665527, -1.4824219, -0.80078125, -0.42163086, 1.7080078, -0.03665161, -0.25805664, -1.3232422, -0.765625, 1.1005859, 0.68310547, -0.040130615, -0.52978516, -1.0146484, 0.43310547, 0.72216797, -1.3515625, -0.9008789, 1.1171875, -0.031555176, -1.0498047, 1.5839844, 0.50927734, -0.055755615, -1.8115234, -0.36791992, -0.7553711, -0.35131836, -0.76220703, 1.5, 3.1054688, 1.9443359, 0.21887207, -1.1679688, -2.5214844, -1.3408203, -2.0019531, 1.4931641, 0.58691406, -0.85546875, 1.2636719, -0.70458984, 2.5664062, 0.13000488, -0.80908203, 1.9433594, 0.828125, 1.7255859, 1.7753906, 0.31176758, 1.3554688, 0.4741211, -0.10632324, 2.0117188, 2.1015625, 1.1123047, 1.078125, 0.29956055, 0.99609375, -0.68066406, 0.019424438, -1.2285156, 0.20410156, 0.42871094, 2.4433594, 2.1132812, 0.29492188, 0.34155273, -1.6533203, -2.796875]}, "B07GJQRH3K": {"id": "B07GJQRH3K", "original": "Brand: Boshen\nName: Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ\nDescription: NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

Why choose it?

This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

Specifications:

Material: Cast Iron
Color: Black
Energy Type: LPG
Size(Lx Wx H): 9.45\" x 9.45\" x 4.72\"
Weight: 4.19 lbs
Load-bearing: 22 lbs

Package included:

1 x Single Burner Camp Stove (regulator not include)
1 X Screw (for oxygen control valve)
2 x Screw (for gas pipe, the pipe is not included )
2 x Screw (for gas valve)
4 x Screw

Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
2. Gas line and regulator Not Included.\nFeatures: Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included\nCompact and portable design: size(Lx Wx H): 9.45\" x 9.45\" x 4.72\", easy to install and use, good for small cooking\nSafety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions\nFlame adjustable, 4 detachable legs, save space, convenient to carry and transport\nPackage List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.\n", "embedding": [-1.8212891, 1.7783203, 1.8095703, 1.2382812, -1.1669922, 1.359375, 2.0390625, -2.2363281, -2.3574219, 2.3574219, 0.671875, -0.7944336, 0.87939453, -3.3769531, 0.039855957, 0.32617188, -0.99316406, 0.29589844, -0.6796875, 1.296875, 3.2089844, 0.0803833, 0.83447266, -1.1015625, 0.81884766, 0.34204102, 4.046875, -2.8398438, 0.37329102, -3.1367188, 1.9785156, 0.56103516, 0.10119629, 2.0761719, -3.9238281, -0.64746094, -1.3115234, 1.2001953, -3.0859375, 0.22875977, -0.057403564, -0.65185547, 3.0117188, -0.0124053955, -2.4257812, 0.93603516, 0.5234375, 0.89746094, -0.087768555, 0.69091797, 0.28076172, 1.0449219, 0.41503906, 1.6933594, -1.9990234, -0.18457031, 0.4128418, -1.5449219, 1.0449219, -0.94140625, 2.3496094, 1.2568359, -2.0566406, 1.4082031, 0.058441162, -0.5004883, 0.7089844, -2.0039062, -1.7763672, 0.56933594, 2.1171875, -1.0224609, -0.48413086, -0.15734863, 1.9199219, -0.6035156, -2.7324219, 1.4335938, 3.7558594, -0.06463623, -2.7011719, 3.0488281, 1.2246094, 1.0234375, -1.0234375, 0.50878906, -1.8525391, -0.11230469, 2.0605469, 0.8886719, -1.3564453, 2.6523438, -2.1210938, -4.2890625, 2.1542969, -0.6689453, 1.2832031, -0.9277344, -0.16088867, 1.7685547, 0.20935059, 0.70458984, -1.6005859, -0.5541992, -1.8828125, -0.77978516, 3.1503906, 2.1855469, -1.4248047, 1.0332031, -3.09375, 0.35107422, 0.74658203, 1.0166016, 0.7631836, 0.54248047, -1.6074219, 1.3876953, 3.7265625, -0.31030273, 5.2617188, -0.3930664, -0.1463623, -2.5214844, 1.2001953, 2.2460938, -0.93652344, 0.6357422, 2.3847656, -1.6806641, -1.0654297, -1.5751953, 0.9423828, -0.69433594, -1.3886719, -1.4150391, -1.7402344, -1.6005859, -4.8007812, 0.68603516, -3.2753906, 2, 1.5830078, -1.2568359, -3.7929688, -0.074035645, 0.14282227, 2.203125, 0.5, -1.1367188, -1.0302734, -1.15625, -0.6855469, -0.96972656, 2.3027344, 1.0683594, -1.2558594, -1.3896484, 3.0117188, 0.51416016, 0.1730957, -2.7148438, -1.625, 2.5585938, -0.74902344, -1.6445312, -0.19934082, 1.3125, -1.2246094, 1.9013672, 1.3554688, -2.6269531, 0.47680664, 0.49072266, 0.5620117, -1.0234375, -2.2363281, 3.1445312, 0.7260742, -1.3251953, -1.7675781, -3.6640625, 3.5234375, 1.9179688, -0.068725586, -2.34375, -0.013702393, 0.5703125, -0.83203125, -0.8569336, -1.5253906, 0.59716797, 1.4775391, -0.099243164, 0.36743164, -0.81396484, 0.60839844, -1.8759766, -0.5698242, 1.0322266, -1.9511719, -0.82421875, -0.50146484, 1.3876953, -3.9140625, -1.6162109, 0.16748047, -0.04953003, 2.5566406, 1.9443359, 0.56933594, -0.042663574, 1.9462891, -0.29858398, -0.60253906, -1.1914062, 2.7226562, 0.3791504, 1.7060547, 2.3515625, 0.21911621, -1.7021484, 1.1816406, 1.5966797, 1.1455078, 3.1660156, 0.68066406, -0.15258789, -0.30493164, -0.7597656, 3.3105469, 0.39941406, -0.95214844, 0.9482422, -1.1210938, 3.8964844, 0.65234375, -0.7373047, 0.8984375, -1.7822266, -0.27514648, -2.1113281, -0.7089844, -0.35229492, -2.1777344, -1.2246094, 0.25512695, 0.7998047, 3.2910156, -0.37353516, -1.0224609, 0.7319336, 0.48266602, 0.7158203, -1.2119141, 0.19836426, -0.03213501, -0.84814453, -2.3203125, -1.1855469, 1.5019531, 2.5371094, -1.0322266, 1.1005859, 1.2597656, -1.8476562, 2.1425781, 1.0126953, -3.0058594, 1.5175781, 1.2089844, 1.0048828, 3.5488281, -0.9033203, 1.4785156, -1.6318359, -1.1884766, 2.6523438, 1.3300781, 1.9570312, -1.4169922, -2.2773438, 2.6308594, -3.484375, -0.85253906, 0.08050537, 2.4414062, -0.37695312, -0.64697266, 0.09338379, 6.953125, -1.8007812, -2.25, 2.6777344, -2.4414062, 0.066833496, 0.4765625, 0.2788086, 0.99560547, 0.40014648, 1.2421875, 0.93310547, -0.10784912, 1.8916016, -2.65625, -1.6152344, 0.38354492, -3.265625, -1.0068359, -0.083496094, -0.51416016, 0.27514648, -1.7929688, 1.2246094, -2.8046875, -1.1289062, 0.8955078, -2.1914062, 1.0673828, 0.6538086, 0.11206055, 0.33398438, -1.2255859, -2.4707031, 1.0283203, 1.0917969, 0.60302734, 2.3261719, 0.8466797, -1.1923828, -1.7138672, -2.0957031, 1.0917969, -1.3798828, -2.3652344, -1.6767578, -0.14733887, -1.9609375, 1.7744141, -1.3251953, 0.22961426, 2.2207031, -3.8964844, 0.80126953, -1.1123047, -3.6015625, -0.47827148, 0.009941101, -0.6767578, -0.6489258, 1.5439453, 2.1660156, -0.98876953, -4.59375, -2.921875, 0.05001831, 0.609375, -0.7758789, -0.32250977, 1.4091797, -0.3540039, 1.7529297, -0.37817383, 0.6425781, 0.34057617, -1.4160156, 0.6660156, -3.703125, 0.6855469, -0.42504883, 0.30297852, -0.9453125, 0.1239624, -2.0097656, -0.11340332, -0.44213867, -1.1650391, 4.8945312, -1.0722656, 2.109375, -2.2050781, -0.85791016, -0.85058594, -1.4667969, -2.515625, -1.1347656, -0.57373047, -1.2734375, -0.3527832, -4.4921875, -0.03253174, -1.4140625, -0.45751953, -1.9238281, 1.2958984, -2.0332031, 0.8417969, -1.7431641, -0.33032227, -0.4814453, 0.05670166, 0.7001953, -0.5307617, -2.0546875, -1.3398438, -0.13085938, 1.6474609, 2.3984375, 1.2412109, -0.11254883, -0.07751465, 1.8193359, 0.7963867, 0.21838379, 0.64453125, -4.015625, 2.484375, 1.6289062, -1.1943359, 0.96777344, -1.1552734, 0.9790039, -2.3085938, -0.9477539, 2.4277344, -0.2919922, 3.4003906, -0.17102051, -1.5917969, 1.1777344, 2.9296875, -1.3408203, -1.9902344, 0.8510742, 2.8496094, -3.8183594, -1.609375, 1.1875, 2.4902344, -2.1503906, 0.51953125, 1.0488281, 3.3125, 1.5996094, 0.90625, 0.9345703, -0.7373047, -0.48461914, -0.033416748, 2.7304688, 1.1972656, -1.0546875, 0.15332031, 0.59033203, -0.67529297, 1.4892578, 0.6816406, 1.4130859, 1.0302734, 3.1738281, 2.9589844, -2.1152344, 0.46362305, -1.2871094, 0.7265625, -0.84716797, 3.6875, -0.46484375, -0.69433594, -0.97509766, -1.375, 2.0234375, -1.5185547, -0.72753906, 0.6821289, -0.23217773, 0.15100098, -0.49902344, -0.21923828, -1.9648438, -1.4072266, 0.6557617, 0.15710449, -1.5849609, 1.1894531, -1.3662109, 0.2376709, -2.1464844, 0.86279297, -1.7001953, -2.4921875, 0.92822266, -0.23144531, -1.2392578, -2.2753906, -1.3935547, -0.105773926, -1.0126953, 3.9511719, -0.48706055, -2.1796875, -0.40576172, -1.6630859, 0.070129395, 1.9453125, -0.103637695, -1.3037109, -2.0683594, -0.1673584, -0.4423828, 0.9663086, 1.1035156, 1.15625, -1.4892578, 1.2089844, -2.8027344, -1.9365234, 0.47680664, -2.5566406, -0.8222656, 1.7392578, 0.23596191, 0.9741211, -1.0488281, 3.75, -2.9824219, -2.2558594, 1.3974609, -2.96875, 0.6635742, -2.1855469, -3.2988281, 1.4736328, -0.018051147, 0.46728516, 1.7246094, 0.83447266, -0.88916016, 1.0117188, 0.76904297, -2.7714844, -1.0839844, -0.8183594, 2.3203125, -1.9462891, 0.011024475, 1.4716797, 1.9990234, -1.2060547, -2.328125, 0.6928711, -1.6787109, -0.3088379, 1.140625, -3.1777344, 0.47827148, -0.13049316, -0.12249756, -0.044006348, -1.0253906, 0.9399414, -0.1829834, 0.18310547, 0.1161499, 1.6347656, 1.9404297, 0.9399414, 0.5048828, 2.5273438, 1.5429688, 0.06439209, -0.6147461, 0.92529297, 2.2636719, -0.1315918, -1.6328125, -1.0703125, -0.05819702, -1.5087891, -0.71484375, 0.8232422, -0.16784668, -2.3398438, 2.1796875, 0.74072266, 2.1972656, 2.5957031, 0.60791016, -0.48095703, 0.5307617, -0.12384033, -2.0976562, -2.4296875, 1.1044922, 0.20031738, -1.1494141, 1.8115234, -1.6484375, 1.0605469, -1.6455078, -0.87353516, -2.2714844, 3.1386719, 2.34375, 1.5244141, 2.8632812, -1.6748047, -2.8925781, 0.33398438, -1.7412109, -1.3486328, 1.4023438, -0.4025879, -0.7758789, 2.5820312, 0.9223633, -0.7338867, -1.5742188, 2.3164062, -1.9453125, -1.5712891, -1.2744141, 1.0859375, -1.7070312, -1.0654297, 0.4086914, -0.20861816, 1.2548828, -0.06781006, -1.3886719, 0.5673828, 1.015625, -1.8466797, -2.5800781, -0.018676758, -1.1982422, 0.27783203, 1.2822266, 1.1123047, -0.025238037, 1.3359375, 0.39770508, 3.4257812, -0.67089844, 0.4724121, -1.0488281, -0.11621094, -0.56347656, -0.9633789, 0.8310547, 2.390625, 0.81591797, 3.0996094, 0.74609375, 0.013946533, 2.6933594, 1.6826172, -0.39746094, 0.16625977, 0.20947266, -1.4248047, 1.171875, 0.2980957, -4.109375, 0.20837402, 3.2929688, -0.19299316, 1.9804688, -0.91259766, -0.016281128, -0.38354492, -1.8603516, 0.060638428, -1.5478516, -0.46606445, 0.9892578, -0.4807129, 0.31420898, -0.41577148, 2.359375, 3.4941406, 0.46118164, -0.0077590942, 3.4941406, -0.3828125, 0.76123047, -0.32739258, -1.3789062, -2.6503906, 0.5810547, 2.3261719, 0.81933594, 2.40625, -0.50390625, 1.2285156, -1.3994141, -0.6020508, -0.7416992, 1.0556641, -2.7070312, -0.5605469, 1.3867188, 0.5708008, 0.82373047, -1.2646484, -0.3857422, -1.7265625, 2.3261719, 0.48413086, -0.07006836, -1.7226562, -0.2163086, -1.9453125, -4.6601562, -0.46044922, 0.54785156, 0.86328125, -0.1920166, -0.018737793, -0.6738281, -0.8330078, 0.86621094, 0.5649414, -1.484375, 1.5595703, 0.35766602, 0.1953125, -2.2285156, -0.040039062, 0.036224365, 0.7792969, 1.1416016, 0.5913086, 0.27294922, -2.2851562, -1.0507812, 1.1679688, -1.6318359, 0.14404297, -1.28125, -0.115112305, 0.48120117, 2.3085938, 0.06677246, -1.4130859, 2.1660156, -1.0712891, 0.91796875, -0.12207031, -1.4550781, 2.3789062, 0.34985352, -1.4619141, 0.9921875, -1.6308594, -1.265625, -1.0087891, 0.36572266, 0.91015625, 1.7441406, 0.014251709, -1.125, 1.6132812, -0.016906738, 1.8720703, 1.9394531, -0.080322266, -1.9765625, -2.3730469, -2.2421875, -0.4296875, -0.31201172, -0.8105469, -1.9306641, 1.5068359, 1.5175781, 0.4428711, 0.04144287, 0.009994507, -0.9838867, -0.21105957, 1.9443359, -0.3635254, 3.4335938, 0.15734863, 0.0022277832, -3.9316406, -3.1054688, 0.48486328, -0.13171387, 0.8720703, -1.8193359, 0.1665039, -1.5830078, -0.26586914, 0.3540039, 1.8662109, 3.4433594, 0.8720703, -1.390625, 2.5429688, 2.2480469, -0.3071289, 0.70751953, 0.06524658, 1.5439453, -0.9370117, 3.453125, 1.4980469, -0.18151855, 3.0429688, -1.4052734, 1.7988281, -0.7368164, -1.4580078, 0.29003906, -1.4892578, -1.6552734, -2.8300781, -1.4824219, -2.7167969, 2.0800781, 0.49194336, 0.01977539, -0.25561523, 2.9179688, -1.4980469, 1.2480469, 2.9179688, 2.3789062, -0.21606445, 1.0849609, -0.25756836, 0.116882324, 2.390625, -1.6308594, 0.50097656, 1.5244141, -0.32202148, 0.1282959, 1.4228516, 2.15625, 3.0917969, 1.7089844, 1.0224609, 1.6621094, 2.390625, 3.5449219, -0.88964844, 1.3085938, 3.046875, 0.1237793, -1.2197266, 1.9482422, -1.0673828, -1.1630859, -0.28466797, -0.0715332, -1.4707031, -1.8759766, -0.79248047, -0.609375, 1.3066406, -4.2382812, 2.5351562, -0.44140625, 2.15625, 0.054260254, 1.3037109, -0.10345459, -0.29125977, -0.859375, -1.0595703, -0.78222656, -0.43847656, -0.46044922, -1.1523438, 1.6074219, 1.1953125, -3.5292969, 1.1171875, -1.7802734, -1.9980469, -0.25708008, 1.1259766, 1.2382812, 1.5458984, 0.29223633, 4.3164062, 1.7666016, -0.9716797, 1.46875, -0.6064453, 0.03970337, 0.609375, 2.7617188, 0.703125, -0.25170898, 1.5800781, -1.7714844, -3.5292969, -2.0898438, 2.7285156, 1.4394531, 1.1376953, 2.1191406, -0.46044922, 1.7304688, 0.05618286, 2.9550781, -1.7988281, 2.359375, 1.2138672, -2.3339844, -2.359375, 0.3955078, 0.4440918, 2.1855469, 1.1240234, -2.0195312, 0.74902344, 0.18139648, 1.0410156, 0.93359375, -0.8227539, 0.05999756, 0.92285156, -0.90625, 2.8027344, 0.25878906, -1.5869141, 0.56689453, 3.5761719, 2.7246094, 0.4675293, 0.43530273, -1.9453125, 1.5654297, -0.8520508, -0.12408447, -0.028839111, -0.13122559, -2.3867188, -1.34375, 0.28198242, -1.5166016, -1.1171875, 1.9882812, -0.39282227, -0.30322266, 1.2998047, 1.7626953, -1.3486328, -0.11541748, 0.87353516, -0.51171875, 0.082336426, -1.0107422, 0.76708984, -1.625, -1.3369141, 0.055877686, 0.1430664, 3.4140625, -0.7685547, 2.0917969, -1.7197266, 0.48535156, 0.93896484, 0.3527832, -2.125, -0.47265625, 0.9868164, 0.33032227, -1.4775391, 2.8691406, -0.5107422, -0.73046875, 0.6948242, -2.234375, -0.6123047, -0.9355469, -0.83740234, -0.20666504, 3.3632812, 0.5029297, 0.07128906, -2.1269531, -4.3789062, -1.8251953, -1.3886719, 0.5673828, 0.7626953, -2.0976562, 0.19152832, -0.22363281, 2.7792969, -0.59521484, -0.6484375, -0.35986328, 1.0917969, 0.28735352, -0.3557129, 1.2128906, -0.25, 1.1806641, -1.09375, 3.7636719, 1.5625, -0.004337311, 1.6767578, -0.9790039, 1.5419922, -2.875, 0.36108398, -1.5410156, 0.60839844, 0.9501953, -1.2089844, 1.5908203, 0.5102539, -0.58154297, -2.9160156, -1.8085938]}, "B01KJGBC6A": {"id": "B01KJGBC6A", "original": "Brand: Char-Broil\nName: Char-Broil Portable 240 Liquid Propane Gas Grill\nDescription: \nFeatures: 240 Square inch cooking area and built to travel\nSturdy legs for stability on a Table or the ground, carrying handles for easy transport\nLid-mounted temperature gauge, painted porcelain body\nFor use with 1Lb propane tanks, (Sold Separately)\n", "embedding": [-1.9863281, 0.92529297, 2.7792969, 0.46166992, -1.9755859, -0.61279297, 1.4931641, -0.6772461, -1.4658203, 2.2988281, 0.89697266, -1.109375, 1.4130859, -3.4667969, 0.6357422, 0.23376465, 1.5253906, 1.9296875, 2.7128906, -0.38598633, 0.3408203, 1.3330078, 0.13830566, -0.48388672, 0.48535156, 0.05215454, 3.7734375, -1.9921875, -0.2409668, -1.9443359, 1.3603516, -0.69873047, -0.009269714, 1.8525391, -1.4091797, -2.9414062, -2.2519531, 1.9453125, -2.7363281, 0.36938477, -0.6743164, -0.21533203, 1.9853516, -0.050445557, -1.8554688, -1.2304688, 0.64160156, 0.40820312, 0.4284668, -0.5253906, 2.7109375, 0.7163086, -0.23156738, 0.89404297, -1.9560547, 1.2050781, 0.95458984, -0.9892578, 0.9584961, -0.047454834, 1.3076172, 0.14819336, -1.8613281, 0.7080078, -1.7998047, 1.6552734, -1.2460938, -0.4428711, -0.25073242, -0.58496094, 2.0234375, -0.083984375, -1.3779297, 0.2322998, 1.2402344, -0.09875488, -2.5214844, 1.0019531, 0.49316406, -0.0140686035, -1.7666016, 2.7480469, -0.92041016, -1.6611328, -0.036895752, -0.7207031, -0.53515625, -1.0107422, 1.2783203, 1.0869141, -0.47509766, 2.1503906, -0.27783203, -3.5957031, 0.8666992, -1.1914062, 1.3466797, 0.98583984, -0.037750244, 1.6855469, -0.27270508, -0.953125, -1.7939453, -1.9619141, -2.6738281, -1.3378906, 0.71484375, 0.4819336, -2.0625, 2.3496094, -1.4072266, -1.4912109, 1.9550781, 1.1064453, -0.124694824, 0.6479492, -0.35864258, 3.7167969, 1.5351562, 1.6220703, 4.5078125, -0.03314209, 1.2548828, -0.8823242, 0.093444824, 0.12805176, -0.45263672, 2.0488281, 4.0742188, -1.7392578, -0.36889648, -0.89404297, 3.2792969, -0.12286377, -2.7792969, -1.9609375, -1.3056641, -1.7636719, -4.0273438, 0.43554688, -2.3828125, 1.0048828, 0.6254883, 0.2298584, -2.2851562, -1.6230469, 0.51123047, 2.1972656, -0.4633789, -2.4511719, 0.23364258, -2.7695312, 0.3737793, -1.046875, 0.4658203, 1.2861328, -1.9472656, -1.8837891, 3.2402344, 1.8916016, 2.03125, -1.2910156, -0.5253906, 0.8720703, 1.7285156, -0.40576172, 0.9916992, 0.6816406, -1.1025391, 0.80810547, 0.32348633, -1.3310547, -0.515625, 1.2978516, 1.5117188, -1.9658203, -0.45141602, 2.8730469, 1.1132812, -1.2919922, -0.53222656, -2.5136719, 0.84033203, -0.25463867, 0.4182129, -1.0703125, -1.0703125, 0.71728516, -0.054534912, -0.36645508, 1.4755859, -0.18884277, -0.85302734, -0.25952148, 0.52685547, -1.171875, -1.6025391, -1.2070312, 0.9873047, 1.6474609, -1.4863281, 0.51708984, -0.43969727, -0.027297974, -2.0234375, -2.5625, 0.87353516, -1.3857422, 0.3876953, 0.87890625, 0.16174316, -1.4667969, 1.9619141, -0.4104004, 0.4658203, -2.6660156, 2.3144531, 0.5698242, 2.5117188, 1.9589844, 0.73046875, -0.85595703, -0.87890625, 1.6064453, -0.13146973, 2.0097656, 0.39013672, 0.45410156, -1.6464844, -0.8569336, 3.40625, 0.86279297, -0.07757568, 0.36621094, -0.16430664, 1.2675781, -0.43676758, 0.19482422, -1.1152344, 1.0605469, -0.53759766, -0.6166992, 0.8930664, -2.2773438, 0.2824707, 0.12561035, -1.4003906, 2.7421875, 1.8466797, 0.79052734, -0.9863281, 0.38598633, 0.00037789345, 1.53125, 0.2512207, 1.9785156, -0.27368164, 1.4794922, -1.0869141, -2, -0.25927734, 1.3828125, 0.5336914, -0.6176758, 1.1943359, -1.5058594, 3.1621094, 1.8525391, -1.5449219, -0.9404297, 0.034088135, 2.2011719, 0.2939453, -0.52978516, 1.7919922, 0.9707031, -1.1035156, 3.1835938, 0.53222656, 1.3427734, 1.1894531, -0.44799805, 2.2109375, -1.8632812, -1.0976562, 0.7006836, 1.2402344, -0.90527344, -0.40551758, 1.5410156, 4.3007812, 0.4736328, -2.2871094, 3.8886719, -0.7836914, -0.07537842, 2.1210938, 0.41333008, -0.93652344, 0.68359375, 3.140625, 0.3918457, -0.43041992, 2.0878906, -1.2792969, -1.7392578, -0.3557129, -1.9199219, -0.7573242, 1.0195312, -0.3461914, -0.32202148, -1.2128906, 0.9082031, -2.6933594, -1.53125, 1.796875, -2.7910156, 0.48120117, 1.6103516, 0.22399902, 0.16137695, 0.3203125, -2.5878906, -0.8334961, 1.6992188, -1.8447266, 1.1591797, -0.057006836, -0.23925781, -1.1425781, -0.0020122528, 0.28833008, -1.8994141, -2.5585938, -0.9111328, -1.9755859, -4.3085938, 2.1289062, -1.3964844, -2.4707031, 1.7910156, -1.4453125, 1.0830078, -0.3942871, -3.5546875, 0.4099121, 0.54541016, -0.66064453, -1.8251953, 0.67285156, 1.0410156, 0.11785889, -4.8398438, -0.11853027, -0.4272461, -0.7192383, -0.4387207, -2.7109375, -0.91845703, 0.8100586, -1.2802734, -1.0195312, 0.33129883, 0.030166626, -2.1113281, 0.77001953, -3.0625, 1.7119141, -1.6582031, 0.07763672, -1.2353516, 0.67871094, -3.6015625, -2.7617188, 0.3466797, -1.5185547, 4.03125, -0.4819336, 0.7636719, 0.66748047, -0.5805664, 0.6386719, -1.5644531, -3.515625, -0.058410645, -0.5292969, -1.2939453, -2.6699219, -3.4453125, 0.17578125, -0.12451172, 0.14404297, -0.09387207, -0.7788086, -2.3320312, 0.9638672, -2.3652344, -0.79833984, -1.8408203, 1.1230469, -1.1337891, -0.19799805, -0.4194336, -0.44018555, -1.3154297, -0.8569336, -2.5371094, 1.3115234, -0.46533203, 1.9248047, 1.7529297, -0.14575195, 1.9746094, -1.3701172, -3.7285156, 3.4902344, 0.8666992, -1.1943359, 1.9130859, -0.5053711, -3.0898438, -2.9804688, -0.68310547, 2.7011719, 2.203125, 4.953125, 1.6689453, -0.62060547, 2.0625, 0.8676758, -0.46728516, -0.9448242, 0.19311523, 3.2226562, -1.8417969, -1.1035156, -0.16040039, 2.640625, -1.9384766, -1.8007812, 2.6425781, 1.0732422, 2.0605469, 1.9658203, 0.93603516, 0.09899902, -0.50439453, 2.4023438, 2.1210938, 1.3300781, -0.15698242, 0.14489746, -0.49316406, 1.3535156, 0.8510742, 0.85791016, -0.34179688, 1.2285156, 1.0986328, 0.36547852, -3.0820312, 1.2568359, -0.7573242, 0.14782715, 0.29882812, 1.2705078, -0.8208008, 0.44458008, -0.7915039, -0.79541016, 0.2734375, 0.5214844, -0.94873047, 1.5576172, 0.7709961, -0.3918457, 0.7158203, 0.70214844, -0.2758789, -0.7294922, -0.6796875, -0.9926758, 0.099853516, 0.31030273, -3.0644531, 0.24938965, -0.8901367, 1.9443359, -1.4990234, -1.6699219, 0.9892578, 2.5292969, 0.09814453, -2.0507812, 1.1289062, -0.1751709, -0.5541992, 3.4707031, 2.0058594, -2.4355469, 1.8164062, 0.35009766, 0.2512207, 1.3964844, -1.8173828, -1.1269531, -1.6132812, 0.5883789, 0.095947266, 1.3564453, 2.3613281, 1.0595703, -2.7695312, -0.2841797, -3.0722656, -0.4633789, -0.22680664, -2.1367188, -2.0292969, 3.1328125, 1.1855469, 1.9921875, -0.4189453, 2.7617188, -0.734375, -0.6254883, 2.0429688, -1.9160156, -0.5551758, -2.9355469, -5.0195312, 1.5253906, -0.07751465, -1.4121094, 3.0957031, -1.1230469, -0.78027344, 1.2783203, 1.3095703, -2.2382812, -1.2158203, -1.4716797, -0.109558105, -0.7583008, 1.3339844, 2.4746094, 1.9296875, -2.8125, -1.5556641, -0.53027344, -0.19787598, 1.5126953, 1.7451172, -2.0371094, 0.8232422, -3.328125, 1.4960938, -2.2929688, -1.0185547, 1.8203125, -0.9711914, -0.5996094, -2.9140625, 0.49243164, 1.5771484, -0.41674805, 2.4550781, 2.3144531, 0.9736328, -0.08666992, -1.1367188, 1.4501953, 1.9580078, -0.032592773, -2.2890625, -2.9765625, -1.5722656, -1.2265625, 0.051727295, 0.5732422, -1.0742188, -1.8837891, 1.2568359, -0.32006836, 0.50634766, 2.078125, 0.921875, -1.4082031, 0.35595703, 0.20654297, -0.93652344, -1.4794922, -0.8666992, 0.6044922, -0.9165039, -0.4814453, -1.9560547, -0.5649414, -1.0742188, -0.6953125, -2.8847656, 2.3847656, 2.0761719, 1.8027344, 2.5820312, -1.484375, -0.19348145, -0.90966797, -0.46533203, -0.4716797, 1.3369141, 0.18078613, 1.5996094, 0.69140625, 1.2382812, -2.9746094, -0.1697998, 0.5698242, -2.3515625, -1.6689453, -1.3828125, 0.37646484, -2.2734375, -0.5600586, -0.5463867, -1.1923828, 3.2050781, -0.7705078, -0.81933594, -0.6899414, 1.1210938, -0.8125, 0.69628906, -0.044830322, 0.6230469, 0.68847656, 0.4819336, -0.59228516, -0.21276855, 0.17749023, -1.4355469, 2.6875, -0.8540039, 0.0513916, 0.2854004, -0.3227539, -1.5703125, -0.7919922, 1.0458984, 3.3828125, 0.7270508, 3.1289062, 1.0888672, -1.9755859, 2.7578125, 2.1679688, -2.2871094, -0.32250977, -2.109375, -1.2167969, 1.3173828, -1.0048828, -5.1640625, 0.32006836, 2.3085938, 0.19226074, 1.2080078, -0.17810059, -0.42211914, -1.0039062, -2.9121094, -1.2177734, -0.7753906, -1.2431641, 0.08111572, 0.23364258, -0.35546875, -1.2958984, 1.21875, 2.9902344, -0.4873047, -0.32910156, 1.7773438, -0.9711914, 0.5991211, -0.3232422, -1.140625, -2.7734375, -1.2285156, 2.4179688, 0.5366211, 1.6464844, 0.6767578, 2.0273438, -3.3886719, -0.7626953, -2.0214844, 2.2441406, -2.3261719, 0.22143555, 1.5546875, -1.4101562, 0.6542969, -2.4414062, 0.3413086, -0.35083008, 1.8134766, 1.3828125, 0.23999023, -0.8095703, -0.5517578, -2.7753906, -4.6523438, -2.7988281, -0.7890625, 1.2070312, 0.78759766, 1.2548828, -1.9609375, 0.7211914, -0.46875, 0.031433105, -0.5654297, 0.5864258, -2.1074219, -0.71972656, 0.5683594, -0.7792969, -0.96240234, 2.234375, 0.32861328, 0.89404297, 0.23754883, -1.8564453, -1.6064453, 0.78759766, -2.3242188, 0.61279297, 0.43798828, 0.578125, 0.32202148, -0.1328125, 1.4355469, -2.2207031, 3.0761719, -0.7426758, 0.81933594, 0.7558594, -0.9316406, -0.20288086, -0.4008789, -2.3808594, 0.46264648, -0.3630371, 2.9121094, 0.76708984, -1.0605469, -0.20251465, 1.0820312, -0.70458984, 0.06591797, 2.8066406, 0.89160156, 2.4238281, 1.6914062, -1.1445312, 0.3383789, -1.8105469, -2.2460938, 0.78466797, -1.4921875, -0.67578125, -1.59375, 0.48828125, 1.4287109, 0.4230957, 0.15039062, 0.3479004, 0.73291016, -0.5180664, 0.49316406, -1.0810547, 3.2539062, 3.1152344, -0.73095703, -2.8808594, -0.55322266, 1.5673828, 2.2246094, 0.75927734, -1.8525391, 0.04876709, -2.3457031, 0.27319336, -0.7626953, 2.7773438, 0.75634766, 0.35791016, -0.21777344, 1.8105469, 2.6738281, -0.059539795, -0.12207031, -0.052612305, 3.0605469, -0.4404297, 3.0410156, 1.3662109, -2.4316406, 0.4597168, -2.109375, 1.8203125, -0.20593262, -0.9746094, 0.6640625, -2.1289062, -1.5234375, -1.1445312, -0.5229492, -2.4785156, 1.5703125, 1.4160156, -2.3730469, 1.7333984, 2.3691406, -2.2890625, 2.1015625, 2.03125, 1.2949219, -0.7324219, 0.9682617, -1.0751953, 0.51904297, 1.0742188, -3.1269531, 1.8701172, -0.036102295, -0.9042969, -0.3630371, 2.7070312, 0.63964844, 2.8417969, 2.875, 3.0488281, 3.5820312, 1.2246094, 3.3222656, -0.64208984, 1.6611328, 2.8007812, -1.9580078, 1.4238281, 2.8730469, 1.2998047, -0.96533203, -2.109375, 1.4394531, -0.49438477, -1.4248047, -1.1171875, 1.3544922, 2.0664062, -4.2851562, 1.6689453, 0.8691406, 0.9135742, -1.7353516, 2.0175781, -0.32836914, -0.8041992, -0.6850586, -0.10003662, 2.0957031, -0.62841797, 1.0400391, 0.49145508, 0.47143555, 0.4008789, -2.8789062, -0.16564941, 0.050323486, -2.4648438, -0.9399414, -0.5854492, 0.7294922, 1.1728516, 0.29663086, 0.6640625, 1.7470703, -0.34106445, 2.2226562, -0.2849121, 0.6098633, -0.5239258, 1.0048828, -0.5996094, -2.6035156, 0.62109375, -1.6728516, -1.7050781, -2.4511719, 0.671875, 0.9428711, 2.3886719, -0.38256836, 0.51953125, 2.6289062, 1.3134766, 1.9091797, -1.5585938, 0.4777832, -0.77783203, -2.6308594, -1.4716797, -0.97265625, 0.2076416, 3.671875, 0.5625, -0.29907227, 2.0566406, 0.5126953, 1.8798828, 0.9135742, 0.24035645, 0.84033203, 1.4335938, 0.62060547, 2.3808594, -0.44580078, 0.008110046, -1.0703125, 2.3691406, 1.8554688, -0.21801758, 0.51464844, -2.1816406, 1.453125, 0.17871094, -0.2052002, -0.9350586, -2.0859375, -1.1289062, 0.5908203, 0.9399414, -0.7558594, -1.59375, 0.9057617, 1.21875, -2.0390625, 1.7744141, 1.4980469, -0.041290283, 2.015625, 0.17675781, -0.98779297, -0.8457031, 0.26342773, 1.0771484, -0.53125, 0.040802002, -1.09375, 0.20043945, 1.0488281, 0.28955078, -0.3762207, -0.22753906, -1.4169922, 0.02520752, 1.1240234, -1.4423828, -1.0332031, 0.5151367, -0.7919922, -0.9375, 1.8007812, -0.13781738, 0.06939697, -1.6474609, -0.38598633, -0.8847656, 0.21899414, -1.4716797, 1.6269531, 3.5664062, 1.1640625, 0.08886719, -1.7246094, -3.2558594, -1.6201172, -1.3408203, 1.359375, 0.6064453, -1.1445312, 1.109375, -1.5117188, 2.5039062, 0.056274414, -1.1923828, 1.9970703, 0.021560669, 1.3691406, 1.6582031, 0.9086914, 1.2871094, 1.1484375, 0.52001953, 2.2050781, 2.5058594, 1.4423828, 0.3544922, 0.41235352, 0.8461914, -1.2597656, -0.38598633, -0.89697266, -0.099487305, 0.29101562, 2.2421875, 2.3867188, 0.89990234, 0.44360352, -2.203125, -2.6894531]}, "B07BLHCHX6": {"id": "B07BLHCHX6", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Arrives fully assembled\nPUSH-BUTTON IGNITION: For matchless lighting\n", "embedding": [-1.8671875, 0.3671875, 0.7236328, 0.921875, -1.1699219, -0.14099121, 1.2392578, -0.3659668, -1.4609375, 1.3554688, 0.6635742, -1.3212891, 0.78808594, -3.2792969, -0.19506836, 0.057739258, 1.2451172, 1.9355469, -0.54589844, -0.55615234, 1.8720703, -0.6870117, 0.9975586, -0.62353516, 0.0071029663, 0.41210938, 4.2890625, -4.6875, 0.25683594, -0.52197266, 1.4560547, 0.14038086, -0.33544922, 3, -1.8574219, -1.3134766, -2.7988281, 1.7216797, -2.7285156, 0.32299805, -0.8144531, -0.31762695, 1.7490234, 0.7573242, -0.51660156, -0.33276367, 1.9316406, 0.6274414, -0.4819336, -0.74658203, 1.2128906, 1.2373047, 0.30615234, -0.35546875, -0.6538086, 0.3474121, 0.02003479, -0.36621094, 0.7597656, 0.05316162, 2.09375, -0.54052734, -2.5351562, 0.90185547, -1.2832031, 0.4453125, 0.5678711, 0.2277832, 0.17602539, -0.98828125, 4, 0.107666016, -2.1699219, -0.5366211, -0.14929199, -0.8989258, -3.4863281, 0.02444458, 0.48095703, -0.97753906, -0.88720703, 1.5712891, 0.20532227, -2.0058594, -0.51171875, 0.9189453, -1.3671875, -0.67285156, 1.9511719, 1.5048828, -0.8383789, 1.1035156, -2.6230469, -4.171875, 0.4633789, -0.122680664, 0.5966797, 1.0458984, -0.11273193, 0.5292969, -1.2773438, -0.079833984, -1.9423828, -0.3857422, -3.4492188, -0.44384766, 2.5039062, -0.76416016, -2.2246094, 2.6191406, -2.4257812, -2.2558594, 3.1992188, 1.2714844, 0.31567383, 0.08465576, -0.1348877, 1.8603516, 2.5507812, 1.4072266, 4.2148438, -0.92529297, 2.1933594, -0.9433594, -0.87841797, 1.2470703, 0.3491211, 0.9819336, 3.671875, -0.45703125, -0.093322754, 0.31958008, 3.2480469, -0.20117188, -3.5488281, -1.9892578, -1.5107422, -1.3798828, -3.5429688, -0.7265625, -0.7324219, 0.04321289, 3.2558594, 0.0023384094, -4.3007812, -1.0429688, -0.78759766, 1.4394531, -0.4807129, -0.9926758, -0.23950195, -1.2646484, -0.25927734, -0.04876709, 1.9482422, -0.3527832, -1.34375, -0.8286133, 4.3398438, 0.37597656, 1.2832031, -1.0419922, -1.7177734, 0.38476562, 2.4101562, 0.13635254, -0.8129883, 1.4667969, -0.101745605, 1.6318359, 0.2010498, -2.2480469, 1.0136719, 0.41235352, 1.6611328, -0.93115234, 0.0736084, 2.6464844, 1.0253906, 0.1784668, -1.2529297, -1.75, 0.4897461, -0.059814453, 0.18383789, -1.7949219, -1.15625, -0.005405426, 0.23791504, -1.8144531, 1.4628906, -0.49194336, 0.6489258, 1.046875, -1.2607422, -0.38427734, -0.66064453, -0.41015625, 1.4287109, 1.4140625, 0.20275879, 0.079589844, -0.2434082, 0.82714844, -1.7792969, -3.1542969, -0.49267578, -2.3613281, 1.125, 0.8911133, 1.7070312, -0.19116211, 2.0859375, -1.1679688, -0.74560547, -2.6113281, 1.4326172, 0.39892578, 1.8779297, 2.4609375, 1.0214844, -0.78564453, -0.5888672, 1.0224609, -0.42016602, 2.1875, 0.38989258, 0.24450684, -0.95214844, -1.125, 2.7578125, 2.3808594, -1.8261719, 0.07409668, 0.6538086, 1.9970703, -0.007835388, -1.1318359, -0.4423828, 0.32128906, -0.4819336, 1.3779297, 0.02432251, -2.0859375, 0.19067383, -0.24743652, -2.3164062, 2.6542969, 2.0839844, 0.8339844, -0.041107178, 0.80078125, -0.625, 2.6503906, -0.5625, 2.28125, -0.58251953, 1.2177734, -1.3574219, -2.5859375, 0.29296875, 2.015625, -0.8725586, -0.020614624, 0.6455078, -0.18530273, 2.4296875, 1.1474609, -2.1835938, -0.25830078, 1.7333984, 0.8105469, 0.26953125, 1.7460938, 1.7294922, -1.6777344, -0.296875, 2.1601562, 0.6357422, 2.5703125, 0.018630981, 0.10028076, 1.9970703, -2.4980469, -2.2207031, 0.48657227, 0.17626953, 0.082092285, -1.4189453, 1.7792969, 3.2597656, 0.5864258, -2.2207031, 4.1679688, -3.171875, 0.87060547, 0.7446289, -0.21069336, -1.4511719, 0.3137207, 2.7519531, 0.8022461, -0.76171875, 2.1621094, -3.8867188, -0.21582031, -0.6401367, -3.6074219, 0.9453125, -0.3894043, -0.6777344, -1.6806641, -2.0625, 0.58740234, -1.2246094, -0.93115234, 1.1835938, -2.4824219, 0.85058594, 2.6386719, -0.12768555, 0.9350586, 0.16894531, -1.3212891, 0.2763672, -0.43017578, -1.7626953, 1.3603516, 1.1142578, -0.9199219, -0.039367676, -0.26904297, 1.6787109, -2.1347656, -3.4570312, -0.6616211, -0.45776367, -3.4414062, 2.0742188, 0.05984497, -1.8837891, 1.0908203, -1.5146484, 2.3066406, -2.3261719, -2.3125, 1.1748047, 1.234375, -0.73828125, -0.8359375, -0.19445801, 0.6748047, 0.51953125, -3.3554688, -0.33251953, 0.17077637, 0.22131348, -0.70703125, 0.35473633, -0.07904053, 0.11218262, 0.10614014, -0.6464844, 0.8408203, -0.81640625, -2.1972656, 0.7558594, -3.2832031, 0.55371094, -3.3359375, -0.296875, 0.30810547, 0.022979736, -3.3378906, -1.234375, 2.0097656, 0.58740234, 5.3828125, -0.49316406, 1.28125, 0.3515625, -1.375, 0.8745117, -1.2783203, -2.9375, -0.70996094, 1.21875, -0.05090332, -3.0898438, -2.5507812, -0.94140625, 0.02267456, 0.19348145, -0.14331055, 0.7573242, -0.63916016, 1.1738281, -2.0429688, 0.6777344, -0.018829346, 1.9033203, -0.52685547, -1.0585938, -1.3466797, 0.107421875, -1.1855469, 0.012924194, -1.3642578, 0.6557617, 0.1743164, 1.0126953, 1.25, -0.22888184, 1.5117188, -0.49072266, -4.0703125, 3.1914062, 0.5708008, -1.5078125, 2.6699219, -2.125, -2.328125, -4.4492188, -1.0556641, 1.4648438, 2.7636719, 2.4257812, -0.5683594, -0.5913086, 1.2119141, 0.6557617, -1.3007812, 0.58203125, -1.0605469, 4.0351562, -1.7646484, -2.4902344, 1.0859375, 1.8837891, -2.921875, -2.8710938, 1.2871094, 0.703125, 1.2001953, 3.7480469, 1.5859375, 0.113586426, -0.042236328, 1.03125, 2.0117188, -0.5385742, -0.9008789, 1.3310547, -1.09375, 1.5693359, 2.0429688, 0.21411133, 0.3762207, 0.7241211, 0.8222656, 2.4296875, -1.0644531, 1.5371094, 0.7314453, 0.6113281, 2.4375, 2.7324219, -1.3994141, 0.20373535, -0.11407471, -0.99560547, 0.8120117, -0.23022461, -0.014389038, 2.9199219, 0.98535156, -0.84472656, -0.01512146, 0.00096416473, 1.6679688, -0.7050781, 0.0026874542, -1.4667969, -0.5136719, 0.43164062, -2.7851562, -2.1367188, -1.9189453, 2.7167969, -0.7607422, -2.421875, 1.4482422, 3.8496094, 0.003604889, -3.0546875, -2.1972656, 0.71728516, 0.038146973, 2.6777344, 1.0517578, -0.85058594, 1.1083984, 0.105041504, 1.1982422, 2.0585938, -1.1074219, -0.97802734, -2.2539062, -1.3232422, 0.1394043, 0.54052734, 1.1425781, 0.3894043, -2.5292969, 0.77978516, -3.5097656, 0.8925781, 0.77441406, -2.5039062, -0.8022461, 3.5175781, 0.42944336, 0.90771484, -1.0087891, 2.8867188, -1.6171875, -0.04849243, 0.68603516, -0.6513672, -0.99121094, -2.4023438, -2.4335938, 1.3251953, -1.5732422, -0.6147461, 2.453125, -0.4326172, 0.0793457, 0.66748047, 0.6254883, -1.4726562, -2.5195312, -2.4257812, -0.7294922, -1.9111328, -0.04498291, 0.12719727, -0.5102539, -2.3125, -2.5371094, -1.90625, 0.62597656, 1.5078125, 2.1894531, -1.5332031, 0.24511719, -1.8603516, 1.3574219, -0.21020508, -1.0332031, 0.105407715, 0.25683594, 0.1875, -4.59375, 0.7607422, 1.7167969, -0.13085938, 2.9589844, 1.6425781, -0.3034668, -2.3476562, 1.7382812, 1.7324219, 0.60791016, 0.38183594, -1.6767578, 0.22668457, -1.6298828, -2.0820312, -0.36694336, 0.008384705, -0.058807373, -1.7001953, 0.7597656, 1.1914062, 2.3300781, 1.8359375, 0.30517578, -1.7148438, 1.3789062, 0.7109375, -2.3574219, -2.2753906, -1.0615234, -0.4794922, -1.9179688, 0.7783203, -1.4384766, -1.6894531, 0.054138184, -1.296875, -2.6699219, 1.8339844, 1.9609375, 2.1640625, 2, 1.0283203, -0.3642578, 0.87841797, -0.6064453, -0.58496094, 0.5292969, -0.41064453, 0.6738281, 0.72314453, 1.7207031, -1.3789062, -1.4511719, 0.54541016, -3.234375, -0.84716797, -1.390625, 0.096191406, -2.03125, 0.33935547, -0.45751953, -0.9814453, 2.4863281, -1.7167969, 0.8803711, 0.32177734, 0.8046875, 0.2512207, -0.016433716, -0.04953003, 0.7602539, 1.4189453, 0.10455322, -0.00667572, -1.2880859, 0.6586914, -1.1123047, 1.4501953, -1.6728516, -0.3088379, 1.6640625, -1.2871094, -1.5566406, -0.99365234, 1.1787109, 1.921875, 1.0957031, 3.046875, 1.0771484, -1.4365234, 1.0498047, 1.2714844, -1.1035156, 0.61621094, -0.2849121, 0.6948242, 1.1699219, -1.5332031, -3.5878906, -0.171875, 2.0429688, 0.2758789, 0.67529297, 0.2277832, 0.47802734, -1.0644531, -3.6464844, -0.77441406, -0.021820068, -1.1181641, 0.26342773, -2.2050781, -0.24987793, -1.7568359, 1.9023438, 3.1367188, -0.46142578, -1.1210938, 1.8066406, -1.1308594, 0.65185547, -1.9873047, -0.5415039, -3.25, -1.3085938, 1.921875, 0.1538086, 0.34179688, 0.2602539, 1.4589844, -1.3662109, -0.29614258, -2.2597656, 1.9990234, -2.1347656, -1.015625, 1.1699219, -1.2324219, 0.24645996, -2.203125, 0.6245117, -0.20092773, 2.6777344, 0.7324219, -0.86865234, -0.6225586, 1.4716797, -2.171875, -3.9101562, -2.0722656, -0.6791992, 0.42529297, 0.028182983, 2.65625, -2.2441406, -1.1191406, -0.71435547, -0.50146484, -0.7294922, 0.019180298, -0.91308594, -1.0634766, 0.4638672, 0.3984375, -0.32202148, 0.9169922, 1.6035156, 1.7929688, 0.063964844, -3.7324219, -2.328125, 0.56152344, -1.15625, 1.0546875, 1.1845703, -0.20446777, -0.8442383, -0.81591797, 1.796875, -0.014137268, 2.828125, -0.3022461, -1.0390625, 1.1357422, -1.1630859, -0.37402344, 0.045410156, -1.9384766, 0.83740234, -1.0009766, 2.3730469, 0.35913086, 0.79785156, -1.3017578, 1.3779297, 0.99609375, -0.037384033, 1.4423828, -0.13146973, 2.3085938, 1.0712891, -0.05819702, -0.8569336, -0.9941406, -2.3300781, -0.10559082, -1.4667969, -1.0869141, -2.1113281, 2.0449219, 1.9394531, 2.6191406, 0.41796875, 1.84375, 1.3378906, -0.45996094, 0.8300781, -0.39746094, 3.0351562, 3.3652344, 0.054840088, -1.9082031, -0.30078125, -0.035217285, -0.24890137, 1.8779297, -1.1445312, -0.890625, -2.1601562, -0.67285156, -1.3388672, 2.140625, 1.6074219, 1.7070312, -1.1289062, 2.6015625, 3.8203125, -0.69189453, -0.48266602, 0.19396973, 2.4433594, -1.6103516, 3.4277344, -0.06317139, -2.1640625, 1.4267578, -2.0292969, 1.9482422, -0.7841797, -0.23486328, 0.64160156, -0.97216797, -0.50146484, -2.0507812, -1.0996094, -2.4453125, 2.2265625, 0.4404297, -1.7392578, 1.4794922, 2.0488281, -1.2490234, 1.4101562, 2.0839844, 1.1640625, -0.8730469, 0.8466797, -0.6660156, -0.66503906, 0.8647461, -2.9648438, 4.9570312, -0.4091797, -0.51464844, 0.15844727, 3.1132812, 0.56347656, 3.5429688, 2.8203125, 2.2324219, 3.3242188, 1.1484375, 3.3613281, 0.9794922, -0.4609375, -0.28588867, -1.1640625, 0.17993164, 3.3691406, 1.84375, 0.34985352, -1.9355469, 1.2050781, -1.2285156, -0.5058594, -1.1220703, 0.77441406, 0.5913086, -3.6289062, 2.7324219, 1.4667969, 2.0292969, -1.5166016, 0.29418945, 0.7885742, 0.27514648, -0.71533203, 0.16772461, 1.4746094, -2.0957031, 1.1054688, -0.75878906, 0.21984863, 2.4941406, -2.1679688, -0.9296875, -1.4404297, -1.3798828, -1.0019531, -1.1582031, 1.4306641, 0.13671875, 1.0507812, 1.2958984, 1.5214844, -0.5395508, 0.5385742, 0.06137085, 1.2412109, 1.2167969, 2.8925781, -0.6425781, -1.2060547, 0.7949219, -1.0654297, -1.8056641, -4.1992188, 1.7626953, 0.30126953, 1.0771484, 1.5439453, -2.3535156, 1.75, 1.3544922, 1.9726562, -1.6337891, 2.1113281, -0.7114258, -1.9394531, -1.9853516, -0.10424805, 1.7246094, 2.7285156, 1.4179688, -0.9135742, 1.5966797, 0.44726562, 2.3574219, -0.89160156, 0.23901367, 1.4462891, 1.7304688, -1.9990234, 1.1318359, -0.29467773, 1.3193359, -0.07922363, 1.0410156, 2.7167969, -0.6689453, -0.5336914, -1.4121094, 0.6948242, -0.18835449, -1.7509766, -0.8491211, -1.1259766, -1.5537109, 2.0253906, 1.0400391, -0.60546875, -0.8144531, 1.6855469, 2.9921875, -2.28125, 1.9824219, 1.9394531, 0.88378906, 2.1308594, -2.1367188, -1.2431641, -1.2138672, 0.6225586, 0.85302734, 0.25219727, -1.1884766, 1.2509766, 0.734375, -0.83740234, -0.43530273, 0.38134766, -0.75439453, -0.2746582, -1.8798828, 1.5146484, -0.66796875, -1.1347656, 0.10888672, 0.21472168, 0.9453125, 1.578125, -1.1308594, -0.5966797, -0.7788086, -2.3710938, -0.4230957, -2.6035156, -0.062469482, 0.3942871, 3.9707031, 1.0888672, 1.5976562, -3.1914062, -2.5488281, -1.9042969, -0.57177734, 3.1386719, 1.5126953, -1.5332031, 0.5620117, 0.22668457, 1.8251953, -1.6582031, -0.9511719, 0.13049316, -1.3789062, -0.16967773, 0.16088867, 0.31176758, 1.1054688, -1.0087891, 0.15942383, 1.6982422, 1.7890625, 2.1640625, 1.4189453, -1.2646484, -0.05581665, -1.8349609, 0.60253906, 0.33032227, -1.5009766, -1.4892578, 1.3740234, 2.78125, 1.7060547, -0.118774414, -2.2890625, -1.6679688]}, "B01BW4K0LG": {"id": "B01BW4K0LG", "original": "Brand: MARTIN\nName: MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan\nDescription: Compatible with both high and low pressure lines \u2013 ideal for trailers \u2013 this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That\u2019s why we created the\u00a0MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat \u2013 or vegetable \u2013 you\u2019re grilling which means you\u2019ll be able to get that delicious \u201cseared on the outside, juicy on the inside\u201d performance\u00a0every time. Thanks to the closing lid you\u2019ll find it\u2019s much easier to get evenly-cooked food and keep the bugs away while you\u2019re cooking.\u00a0

Product details:
  • Adjustable cooking temperature
  • Large porcelain cooking grid
  • Piezo igniter
  • Heat indicator
  • Folding support legs
  • Brushed stainless steel cover
  • Grease pan
  • Certified for USA and CANADA
Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.\nFeatures: U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go\nFOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute\nADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking\nGREASE PAN - Quick clean grease tray keeps your grilling area clean\n354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source\n", "embedding": [-0.93408203, 1.1259766, 0.78222656, 2.0097656, -0.45288086, 2.5214844, 2.171875, -0.17980957, 0.07006836, 2.3964844, 0.051940918, -0.3413086, 0.18493652, -2.0507812, 1.6806641, 1.0185547, 1.4072266, 0.7285156, 1.4101562, 2.5136719, 1.6953125, 0.9345703, 0.5498047, -0.38232422, 0.43359375, 0.67578125, 2.9492188, -2.0683594, -0.1730957, -2.0410156, 1.4228516, 0.24780273, -0.15576172, 1.6230469, -2.3398438, -1.2587891, -2.0625, 1.9716797, -1.7470703, -0.9189453, -0.9423828, -0.8642578, 3.2636719, -0.22888184, -2.5566406, -1.3623047, -0.5996094, 1.7226562, -0.5761719, -2.2539062, 2.046875, 1.1914062, 0.7607422, 1.4726562, -1.0341797, 0.60546875, 0.41967773, -1.765625, 1.5371094, -0.01121521, 1.1972656, 0.11444092, -1.6855469, 0.94189453, -2.0644531, -0.62353516, -0.6689453, -0.32373047, 0.43920898, -1.0419922, 2.8105469, 0.26245117, -0.8544922, 0.33691406, 0.25097656, -2.1796875, -1.1386719, 1.2128906, 0.90283203, 1.0703125, -1.28125, 2.4667969, 0.81884766, -1.2041016, 0.041107178, 0.01272583, -0.9375, 0.9370117, 1.8076172, 2.3027344, -0.46264648, 4.2382812, -3.3378906, -3.9394531, 2.8164062, -1.1669922, 1.265625, 1.4433594, 0.27929688, 3.1328125, -0.68652344, 1.3359375, -2.1777344, 1.0585938, -3.0019531, -1.0400391, 1.9941406, 0.22131348, -1.4296875, 0.29101562, -1.8730469, 0.52001953, 1.1630859, 0.20983887, 2.0058594, -0.76953125, -0.3076172, 1.7080078, 3.4003906, 2.9042969, 3.9648438, 0.53564453, 1.7880859, -0.8071289, 0.06549072, 0.4399414, -2.1796875, 1.296875, 4.5078125, -2.0332031, -1.3017578, -1.8359375, 1.6630859, -0.5727539, -1.6445312, -3.1640625, -0.5102539, -3.0195312, -4.2070312, 0.2220459, -2.0644531, 0.9682617, 1.3554688, -0.8276367, -3.2167969, 0.3076172, -1.2070312, 1.1181641, -1.2861328, -2.34375, 1.6806641, -2.0253906, 0.53808594, -0.9296875, 1.5361328, -0.78564453, -0.5878906, 0.09234619, 3.3886719, -0.71777344, 2.8125, -2.1679688, -1.8027344, 1.7480469, 1.4541016, -3.3574219, -0.8647461, 2.7949219, -0.6855469, 2.5703125, 0.8071289, -2.1269531, 0.072753906, 0.101867676, 1.0722656, -1.75, -0.17687988, 1.8769531, 1.8037109, -1.7666016, -1.2392578, -3.9003906, -0.3256836, -0.28466797, -0.1161499, -0.10827637, -0.10626221, 0.0032520294, 0.050964355, -1.453125, -1.7519531, 2.5449219, 0.4206543, 0.39135742, 0.0418396, -2.5136719, -1.7675781, -1.7275391, -0.028915405, -0.23925781, -0.77490234, -0.8564453, -1.0917969, 0.17468262, -1.6689453, -3.0039062, -0.4802246, -0.39697266, 0.5498047, 2.4707031, -0.23547363, -1.8173828, 2.5292969, -0.66259766, -0.7246094, -1.6533203, 1.3505859, 1.3095703, 0.72314453, 2.1777344, -2.0332031, -0.12561035, 1.3759766, 3.7480469, 0.22216797, 2.0175781, 0.9472656, -0.4230957, -3.5175781, -1.609375, 2.3476562, -0.48535156, -0.91503906, -0.5307617, -0.27807617, 2.6347656, 0.2331543, -0.4296875, 0.8647461, 0.45703125, -0.7470703, -2.3085938, -1.1132812, -2.5664062, -0.9326172, 1.4345703, -1.8935547, 0.6533203, 0.98339844, -0.21313477, -0.55126953, 0.18554688, 0.9116211, 0.4177246, -0.5371094, 0.9921875, -0.28173828, 1.7236328, -3.328125, -1.7353516, 0.6879883, 1.1152344, -0.76708984, 0.81152344, 1.8779297, -1.5136719, 3.5332031, -0.796875, -2.3027344, -0.059020996, 3.4335938, 0.10900879, 0.7294922, -0.6274414, 1.4941406, -1.4335938, -1.2089844, 2.5742188, 1.3046875, -0.19140625, 0.37548828, 1.2470703, 0.17260742, -2.8554688, -1.7910156, 0.7792969, 1.3203125, -0.14318848, 0.8051758, -0.33203125, 4.265625, 0.8935547, -2.3808594, 3.4003906, -0.68359375, 1.2578125, 2.0214844, -0.6826172, 1.4931641, -1.1640625, 1.6767578, 2.8632812, -0.54003906, 2.171875, 0.076171875, -1.2177734, -0.18310547, -2.5390625, -0.10583496, 0.17614746, -0.5673828, 0.43164062, -1.359375, 1.7177734, -1.5683594, -1.8339844, 0.76416016, -2.2871094, -0.1899414, 0.9946289, 1.5302734, 1.5888672, -0.52441406, -2.0136719, 0.98876953, 0.80908203, 0.3972168, 1.4365234, 0.30444336, -0.3232422, -0.25170898, -1.8691406, 2.4433594, -2.4433594, -4.3007812, -0.5102539, -3.3476562, -2.5683594, 0.6958008, -1.4951172, -2.4824219, 1.6259766, -1.9541016, -1.3896484, -2.2148438, -2.1210938, -1.5517578, 1.0742188, -0.7265625, -0.6166992, 0.9716797, 0.8491211, 0.4260254, -3.0039062, 0.009384155, -0.3852539, -0.46362305, 0.47143555, 0.04800415, 0.5361328, -1.9951172, 0.60595703, -0.66845703, -0.1373291, -0.11053467, -1.0927734, -0.58154297, -3.1542969, -0.16711426, -2.484375, -0.87646484, -0.9765625, -0.7158203, -1.5898438, 0.72998047, -1.5732422, -0.81689453, 3.4882812, -1.1142578, 1.5009766, -2.2050781, 0.04837036, 0.36108398, -0.21484375, -1.8740234, -2.1171875, 0.062561035, -1.4101562, -2.4414062, -1.3701172, -0.5234375, 0.50683594, 0.071777344, -1.5458984, 1.1767578, -2.5605469, 1.2294922, -2.0761719, 1.0849609, 0.12646484, 1.9589844, 0.4711914, -1.9208984, -1.8740234, -1.3476562, -1.4121094, -0.60009766, -0.35546875, 1.3496094, -1.3984375, 1.4160156, 1.4101562, -0.16516113, 1.1757812, -0.21533203, -2.3457031, -0.37280273, -0.37109375, -2.3261719, 1.0097656, -0.07849121, -0.9819336, -3.5839844, -0.80615234, 3.1835938, 0.76904297, 2.3632812, -0.06793213, -0.046661377, 0.84716797, 0.05758667, -0.19836426, -1.1738281, 0.15161133, 2.3496094, -2.0253906, -1.2119141, 1.4365234, 1.2861328, -1.4716797, -0.74658203, 3.2675781, 2.078125, 1.0488281, 1.2958984, 3.1757812, 0.53759766, -0.70751953, 2.9609375, 1.6503906, 1.3203125, -0.5292969, 0.1665039, 0.65771484, -0.037841797, 2.5078125, 0.40527344, 0.43920898, 1.6630859, 2.0644531, 0.6113281, -3.9355469, 1.9550781, -1.1582031, 0.5517578, -0.056365967, 2.75, -0.9667969, 0.18103027, 0.22741699, -0.55908203, 1.1142578, -1.140625, -1.4248047, 1.6650391, 1.4404297, -0.068847656, -0.8017578, -1.1591797, -1.5693359, -1.6298828, 0.10333252, 0.31469727, -0.9033203, 0.8574219, -1.9511719, -1.6308594, 1.3154297, 1.0644531, -1.1386719, -2.8671875, 0.90966797, 1.9560547, -1.1240234, -2.3515625, 1.1601562, -0.10839844, -0.5175781, 4.328125, 0.671875, -1.4384766, 0.77197266, -0.5996094, 0.7207031, 2.2519531, -0.5205078, -0.6791992, -1.5966797, 0.45410156, -0.24951172, -0.8183594, 1.0673828, 0.75634766, -3.1113281, -0.20922852, -2.7792969, 1.1669922, -0.9941406, 0.29101562, 0.30126953, 0.92041016, 1.7851562, 2.3164062, -1.6494141, 3.6953125, -0.44140625, -1.59375, 1.1376953, -3.3984375, -0.06921387, -3.2441406, -3.7460938, 1.2490234, -0.4182129, 0.48779297, 1.7763672, 0.8208008, 0.90527344, 1.3115234, -0.39501953, -3.4199219, -1.0087891, -1.2880859, 1.1484375, -1.9833984, -0.3322754, 1.4326172, 1.7226562, -0.8334961, -1.3369141, -1.1269531, 0.8354492, 2.0839844, 1.5996094, -1.9892578, 2.0683594, -2.1699219, -0.8911133, -0.014060974, -1.3056641, 0.09851074, -0.9790039, -0.21679688, -1.5917969, 2.1289062, 0.28320312, -0.97802734, -0.19140625, 0.5878906, 0.8779297, -0.8642578, -0.16894531, 2.6074219, 3.5234375, -0.6801758, -2.0351562, -1.9667969, -0.7783203, -0.37329102, -0.4946289, -0.70751953, -0.84716797, -2.6367188, 1.3730469, -0.02482605, 1.0507812, 0.26123047, -0.115722656, -1.0966797, -1.2011719, 1.1259766, -2.9003906, -1.2216797, -1.1679688, -0.38378906, -1.3173828, -1.0175781, -2.7871094, 1.0029297, -2.8535156, -1.7773438, -3.0058594, 3.7441406, 0.3791504, 1.84375, 2.0839844, -0.61816406, -0.23535156, 1.2841797, -1.9423828, -1.7226562, 0.021957397, 0.26489258, 0.6635742, 1.8876953, 2.9824219, -0.8144531, -0.3215332, 1.9667969, -2.3789062, -1.4326172, -1.0224609, 1.984375, -3.3417969, -1.2949219, -1.3720703, -1.2089844, 2.1894531, -0.9296875, 2.2519531, 0.76464844, 1.1367188, -1.2646484, 0.10821533, 0.8022461, 0.7583008, 0.9345703, 2.1777344, 1.8378906, -1.0390625, 0.6147461, -0.3815918, 1.6337891, -2.2148438, 0.7192383, -1.1171875, -0.24938965, -1.4267578, -2.4570312, 1.1279297, 3.0449219, -0.6230469, 2.0195312, -1.3798828, -2.5527344, 1.8144531, 1.3330078, -1.8349609, 0.6894531, 0.018737793, -1.4833984, 0.8574219, -0.1854248, -2.71875, 0.29907227, 1.3779297, -0.40649414, 0.35083008, 0.27416992, 0.3479004, 1.0449219, -2.0761719, -1.6074219, 1.1123047, -1.0185547, -0.05670166, -1.2509766, 0.11029053, -0.29492188, 1.4892578, 1.3896484, -1.1347656, -1.9208984, 3.6484375, -0.031280518, 1.4052734, 0.60546875, -1.1416016, -2.2480469, 0.5605469, 2.5761719, 0.27490234, 1.3066406, -0.43530273, 0.5727539, -2.9179688, -1.2246094, -2.6953125, 1.3955078, -0.5415039, 0.48217773, 2.2714844, -1.7431641, 2.3300781, -1.4208984, 1.0605469, -0.80615234, 2.0371094, 1.1328125, 0.24169922, -0.98876953, -0.60839844, -1.9433594, -4.6992188, -2.296875, 1.5498047, -0.11437988, 0.07885742, 0.82421875, -2.0839844, -0.23706055, -0.15478516, 0.7426758, -1.9189453, 0.24328613, -0.62353516, -1.7744141, -1.3662109, 0.8955078, -0.4333496, 0.23266602, 1.4257812, 0.6591797, -0.82958984, -3.4804688, -1.2871094, 0.40771484, -1.4257812, -1.8564453, 0.3671875, -0.58251953, -1.1445312, 0.9165039, 2.2402344, -2.0058594, 3.1035156, -2.4453125, -0.43188477, 1.2373047, 0.2722168, 0.23120117, -0.14575195, -2.4609375, 1.8251953, -1.6025391, 0.25610352, -0.07928467, -0.091918945, -1.3164062, 2.5136719, -0.60058594, -0.4033203, 0.42578125, -0.11437988, 3.7070312, 1.4814453, -0.7011719, -1.4755859, -2.78125, -3.9570312, 0.107543945, -1.8056641, 0.46923828, -3.4707031, 0.26708984, 2.1367188, 0.1340332, 0.17858887, 0.9370117, 0.8076172, -0.5913086, 1.0546875, -1.9365234, 2.09375, 1.5703125, -0.46118164, -1.140625, -1.0146484, 1.9921875, -0.69873047, 1.0898438, 0.22253418, -0.16088867, -1.2626953, -0.03050232, -0.5131836, 1.8291016, 2.953125, -0.0491333, -1.8183594, 1.1533203, 1.8603516, -0.5805664, 1.7558594, 1.2080078, 1.078125, -0.45239258, 3.8710938, 0.40161133, -2.6679688, 2.4589844, -1.6816406, 1.8242188, -1.484375, -2.0820312, 0.80126953, -1.9101562, 0.12792969, -1.9599609, -0.8222656, -3.3730469, 2.9667969, 1.0917969, -0.43041992, 0.9082031, 3.8261719, -0.15563965, 1.2783203, 3.4882812, 0.09454346, 0.03164673, 2.2792969, -1.5117188, 0.42016602, 1.7080078, -2.8632812, 1.3652344, 1.7724609, -0.38110352, -1.1923828, 2.9355469, 1.2236328, 2.5273438, 0.6972656, 1.9628906, 3.5976562, 0.9316406, 2.8964844, -0.066101074, 1.0585938, 3.03125, 0.6923828, 0.3618164, 1.5292969, 1.6367188, -0.31762695, -0.71435547, 2.0371094, 0.20056152, -2.9746094, -1.0341797, 0.8227539, -0.87939453, -4.7851562, 2.9023438, -0.8930664, 0.10290527, -2.1425781, -0.63916016, -2.2285156, -0.58984375, -1.4345703, 0.45898438, 3.2578125, -0.7294922, 0.35205078, 1.4072266, 0.1237793, 1.1904297, -2.1425781, 1.7041016, 0.50341797, -0.5722656, -0.3095703, 1.7675781, 1.6376953, 2.3398438, 0.54052734, 0.77246094, 1.5488281, -0.42456055, 0.84033203, -0.85058594, 1.0712891, -0.04260254, 3.5527344, 0.14953613, -0.68603516, 1.3925781, -1.4541016, -1.9101562, -2.7285156, 1.8388672, 1.3496094, 1.0966797, 0.8769531, -2.6855469, 0.44482422, -0.22814941, 0.60839844, -2.046875, 1.5742188, 0.6699219, -2.7421875, -2.3027344, 0.51220703, 0.57128906, 2.8613281, 0.87939453, -2.0273438, 2.3242188, 1.6220703, 2.3535156, 1.390625, 0.2998047, -0.2084961, 1.2001953, -2.390625, 2.1699219, 2.796875, -0.8510742, -1.3457031, 1.7246094, 2.5175781, 0.9013672, 0.18395996, 0.4423828, -0.8925781, 0.15356445, -1.1318359, -1.6601562, -1.0498047, -1.5947266, -1.7607422, 0.9916992, -0.8955078, -2.2773438, 0.85595703, 2.21875, -1.9960938, 2.1035156, -0.05886841, -1.1992188, 1.8291016, -0.26245117, -0.79248047, 0.5834961, 0.55078125, 1.25, -1.5800781, -0.28564453, -0.19812012, -0.27929688, 2.0234375, 0.078063965, 0.99560547, 0.6640625, -0.36743164, -0.07336426, 2.0253906, -0.83154297, -1.7587891, 2.0683594, -0.37573242, 1.6171875, 3.0039062, -1.0800781, -0.5595703, -1.484375, -1.1425781, 0.2944336, -2.4355469, -0.3425293, 1.2197266, 4.6757812, 1.3691406, 1.1425781, -2.078125, -2.7597656, 1.7929688, -0.39575195, 3.7207031, -1.3115234, -1.2363281, 1.6796875, -0.3293457, 2.2675781, 0.95703125, -1.3193359, 0.4597168, 1.0019531, 1.0058594, -0.4091797, 2.0703125, 3.0839844, -0.42114258, 0.7817383, 1.9521484, 1.9863281, -1.7128906, 1.765625, 1.28125, 1.2070312, -2.6074219, 1.3046875, -0.6616211, 0.75097656, 0.6489258, 0.79248047, 2.3984375, 0.6323242, 0.6347656, -1.5771484, -1.4072266]}, "B07XVBJT3R": {"id": "B07XVBJT3R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L90000 40\" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface.\nComponent package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack.\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nPackage Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "embedding": [0.5151367, 0.016189575, 0.8881836, -0.58740234, -0.77734375, 0.35009766, 1.8925781, -1.7607422, -0.5708008, 1.8574219, -0.63671875, 0.16662598, -1.2226562, -2.8300781, 0.57470703, -1.6064453, -0.57714844, 2.5683594, 1.09375, -2.4140625, -0.7910156, 0.07897949, 3.21875, -0.15075684, 0.008270264, 0.50097656, 3.7714844, -3.8535156, -0.3395996, 1.2509766, 1.6943359, 1.3173828, -0.71728516, 1.5458984, -3.2265625, -1.8818359, -0.7294922, 0.9941406, -2.7832031, 0.19555664, -0.13891602, -0.5913086, 1.5869141, -0.25024414, -1.5361328, -0.9404297, -0.33422852, 0.8696289, -2.1933594, -1.2460938, 2.0996094, 1.0117188, -0.34057617, 0.24328613, -1.8417969, 2.765625, 1.3583984, -0.2680664, 1.9560547, 0.23840332, 1.4794922, 1.3251953, -0.5986328, -0.7475586, -1.1337891, -1.03125, -0.9736328, -1.5732422, 1.0585938, -0.57421875, 3.9511719, 1.0263672, -1.6757812, -1.9765625, 1.0771484, -0.47680664, -2.796875, 2.0117188, 0.71875, -0.035827637, 0.20422363, 4.3398438, 2.1972656, -2.703125, -0.49365234, 1.3193359, -1.984375, -0.3869629, 2.6289062, -0.7988281, 0.55566406, 2.4589844, -2.1542969, -4.0273438, 2.7070312, -0.16833496, 0.037841797, 1.3369141, -0.36035156, 1.0712891, -0.5083008, 0.8623047, -1.53125, -0.83984375, -0.28271484, -2.4414062, 0.6333008, 0.2220459, -3.0898438, -0.08703613, -2.4179688, -1.2382812, 1.9199219, 1.1660156, 1.5839844, 2.1328125, -0.2175293, 1.6191406, 0.5957031, -0.0033016205, 2.9277344, -1.3925781, 0.44848633, -0.8876953, 0.09057617, -0.6245117, -1.9199219, 2.6464844, 4.1445312, -0.9848633, -1.3876953, 0.037994385, 1.4833984, -0.80810547, -0.9042969, -1.0898438, -1.8076172, -0.8618164, -2.7832031, 1.2568359, 0.5058594, 1.4277344, 1.9003906, -1.1142578, -4.7382812, -1.2060547, -1.2783203, 0.97509766, 1.2607422, -2.7519531, -0.05355835, -2.03125, 0.7402344, -2.3867188, 1.2851562, 0.2553711, -2.546875, -0.7270508, 2.0527344, 0.4765625, -0.93066406, -1.8486328, -0.8828125, 0.69873047, -1.2480469, -1.2392578, 0.097839355, 0.5991211, 1.015625, 1.2294922, -0.19445801, -1.7939453, 0.38232422, -0.19897461, 0.4387207, -1.1582031, -1.2861328, 0.50439453, -0.09631348, -0.88916016, -0.9291992, -3.0996094, -1.0078125, 0.45922852, -0.012290955, -1.1191406, 2.6347656, -1.4521484, 1.3613281, -0.7211914, 1.3476562, -1.2890625, -0.375, -0.13867188, -0.30908203, -1.4863281, -0.3527832, -0.08673096, 2.9589844, -0.8261719, -0.3684082, -0.37963867, -0.28295898, 0.43969727, -2.8007812, -3.0292969, -2.9433594, -2.265625, 1.7412109, 1.65625, 1.6220703, -1.3632812, 1.9853516, -1.1494141, -0.71240234, -4.2890625, 0.25976562, -0.7871094, 1.5390625, 1.7392578, 0.12878418, -0.8598633, -1.5244141, 3.0390625, -0.53271484, 0.96484375, 0.31762695, 0.35766602, -2.8027344, 0.19628906, 2.1210938, 0.3269043, 0.9213867, 0.10760498, -0.6074219, 0.025283813, 0.6220703, -1.8300781, -0.34887695, 0.029937744, 0.05331421, 0.5756836, -0.68896484, -0.5449219, -0.5004883, 0.12988281, -0.7480469, 3.8613281, 2.0058594, 0.30517578, 0.024124146, -1.7958984, -0.13317871, 1.6523438, -1.1171875, 1.8076172, -0.9819336, 1.15625, -1.0791016, 1.3369141, 1.7880859, -0.7348633, 2.1074219, -0.18457031, 0.03225708, -1.5898438, 2.6464844, 0.7133789, -1.5771484, -2.5761719, -0.8876953, 0.25585938, 1.5556641, -0.6347656, 1.6533203, 1.2539062, -0.31469727, 1.7783203, -0.2163086, 2.5234375, 0.1998291, 0.8208008, 1.3828125, -2.9277344, 0.034118652, 0.29663086, -0.021514893, -1.1640625, -1.2695312, 1.9716797, 4.5742188, -0.6743164, -3.1582031, 2.0332031, -1.4658203, 0.4387207, 0.9165039, -1.671875, 0.9482422, 1.6826172, 1.5537109, -1.2480469, 1.8388672, 1.6416016, -0.3408203, -0.24768066, -0.41015625, -1.8271484, 0.18615723, 2.1640625, 0.44018555, -0.7993164, -0.48486328, 1.9794922, -2.2011719, -1.0400391, 3.5703125, -3.3398438, 1.6269531, 0.6591797, 1.6162109, 1.7958984, -0.90771484, -2.0800781, -1.4658203, -0.6953125, -1.1132812, 0.6567383, -1.2978516, -1.5117188, 0.72998047, -0.10479736, 0.84814453, 0.66845703, -1.0546875, -0.20715332, -0.3227539, -1.2080078, 0.15234375, -0.9243164, -0.59716797, 1.9619141, -1.4638672, 0.12683105, -0.9038086, -3.3710938, -2.234375, -1.0478516, 1.4404297, 2.9804688, -0.13183594, -0.54296875, -0.31396484, -5.1210938, 0.08203125, -1.8222656, 0.5805664, -0.49609375, -1.5537109, -1.8525391, 1.4716797, -0.51660156, -0.52734375, 1.8544922, 0.72265625, -1.1845703, 1.1259766, -3.0625, 0.32470703, -4.6640625, 0.41992188, 0.8354492, 2.3886719, -2.1113281, -1.7050781, -1.7890625, -1.3027344, 3.2578125, 0.3479004, 1.7148438, 0.5126953, 0.020584106, 2.2246094, -1.0351562, -2.1386719, 0.095336914, 0.14611816, -1.2636719, -1.1210938, -3.5664062, 1.8525391, -2.7480469, -0.44482422, -1.8525391, 1.8037109, -2.1347656, 2.4414062, -2.0800781, 0.21264648, 1.5996094, 0.7451172, -1.5751953, -0.33911133, -1.9150391, 0.09313965, -1.8007812, 0.296875, -1.421875, 1.8027344, -1.3251953, -0.9555664, -0.1217041, 0.18811035, -0.10321045, -0.75927734, -3.7949219, 4.3789062, 0.6879883, -1.4736328, 2.1074219, -0.96533203, -1.4267578, -3.5390625, 0.9379883, 1.921875, 2.1894531, 1.8691406, -0.45361328, 0.99072266, 1.0566406, -0.80859375, 0.6567383, 1.5302734, 1.0009766, 2.4550781, -0.94140625, -1.0078125, -0.5048828, 3.1289062, -3.3300781, -0.5449219, 2.4355469, 0.61328125, 2.796875, 2.1113281, 3.3164062, 0.36914062, -1.3388672, 1.421875, -1.0410156, 1.1660156, -0.35424805, -0.20825195, 0.19506836, -1.2929688, 1.1464844, 2.7910156, 0.6333008, 0.5991211, 2.875, 2.078125, -0.17199707, 0.47558594, -1.0058594, 1.015625, -2.7734375, 1.7333984, -1.3486328, 1.0126953, -0.38476562, -0.94628906, -1.3632812, -1.0175781, -0.64453125, 2.546875, 0.39624023, 1.4072266, 0.83154297, 0.6635742, 0.91845703, -0.9116211, -0.45507812, -1.6865234, -1.3886719, -0.058166504, -0.61083984, -1.59375, -1.1464844, 1.7451172, -0.17871094, -1.3427734, -0.8178711, 3.8554688, 0.27490234, -2.125, 2.1875, -1.2353516, -0.6010742, 3.3691406, -0.81396484, -1.2480469, 0.95996094, -0.71484375, 2.5507812, 0.43774414, -1.4902344, -0.3774414, -3.1386719, 0.8364258, 0.5727539, 0.15698242, 1.1416016, -0.4633789, -0.87060547, 1.0068359, -1.4394531, -0.055267334, -0.89990234, -1.3271484, -2.3730469, 0.5214844, 0.29663086, 2.7167969, 0.82910156, 3.1386719, -1.3398438, 0.2980957, 1.3378906, -2.7832031, 0.55126953, -2.8496094, -2.9316406, 0.84375, -0.9580078, -2.1464844, 3.78125, -1.765625, 0.32861328, 1.8427734, 0.018493652, -1.4609375, -1.1787109, -0.8779297, 0.6933594, -1.2685547, 1.2802734, -1.3300781, 1.7050781, 0.15234375, -1.1669922, -0.84277344, -0.6147461, 0.47216797, 1.5996094, -2.8945312, 1.5976562, -2.1542969, -0.028884888, -1.2568359, -1.171875, 1.2841797, -0.3713379, 0.6635742, -2.1386719, 1.1923828, 0.42626953, -0.92626953, 2.2734375, 1.0791016, -0.77490234, -1.1142578, -1.2597656, 1.2880859, 2.8398438, 1.5546875, -1.5244141, -2.7480469, 0.95996094, 0.5048828, -0.26513672, -0.22851562, -0.8745117, -1.2177734, -0.3762207, 1.6806641, 0.5566406, 1.5449219, 0.14831543, -1.2431641, -0.5415039, 1.7099609, -1.8720703, -1.9033203, -0.041931152, -0.14160156, -1.6660156, 2.2832031, -0.53125, 0.265625, 1.3222656, 0.5629883, -2.1679688, 1.0859375, 1.6367188, 1.4179688, 2.0839844, 0.65625, 0.38867188, 1.0478516, -0.5566406, -1.1083984, 1.2460938, -0.7963867, 0.64697266, -0.3779297, 0.06213379, -2.8144531, -0.81152344, 0.890625, -2.3886719, 0.32641602, -0.71777344, 0.29614258, -1.3291016, -1.1337891, 0.26342773, -1.2138672, 1.2021484, -1.8837891, 0.28955078, 0.7597656, 0.9658203, 0.49389648, 1.3828125, -0.7973633, 0.28466797, -0.2919922, 0.8520508, 1.2255859, -0.85498047, 0.8408203, -1.6669922, 0.8691406, -1.1650391, -0.9042969, 0.22009277, 0.030319214, -0.8408203, -1.8378906, 2.6308594, 1.1083984, -0.02218628, 2.2226562, 1.234375, -0.6269531, 0.27124023, -0.04724121, -3.1757812, -0.12384033, 0.4802246, 0.7026367, 1.890625, 1.0888672, -3.6210938, 0.04046631, 1.9960938, -0.2479248, 1.6191406, 1.8320312, -0.6171875, -0.6430664, -2.4375, -1.3984375, -1.6611328, -1.0068359, 0.79003906, -0.059570312, -0.78222656, -1.484375, 0.7084961, 1.9707031, -1.2714844, -0.8544922, 1.1259766, -0.3269043, 0.6142578, -1.6660156, -0.6220703, -1.1972656, 0.33447266, 2.6367188, 1.7617188, 0.7480469, 0.22937012, 1.6748047, -2.4003906, 0.3803711, -2.2441406, 3.1269531, -1.3037109, -0.90234375, 2.0546875, -3.3925781, 0.8574219, -3.1699219, 0.05480957, -0.3815918, 2.9472656, 0.96972656, -0.24316406, -1.5410156, 1.4570312, -0.9145508, -3.8144531, -2.5, -1.2041016, 2.3066406, -2.0566406, 0.9296875, -2.2304688, 1.5996094, -0.6489258, 0.17749023, -1.2548828, 0.4934082, -2.8808594, -1.1953125, -1.3535156, 0.1430664, -0.18029785, 0.5541992, 0.7294922, -0.1427002, 2.1777344, -3.4101562, -0.45507812, 0.36791992, -0.19799805, -0.27319336, 2.6445312, 2.1503906, 0.4248047, 0.27001953, 1.0869141, -3.5820312, 1.5292969, -1.1230469, -0.27734375, 2.2519531, -1.0849609, -0.8803711, 1.1845703, -3.3339844, 0.24523926, -0.34936523, 1.4296875, -0.51220703, -1.3720703, 0.03591919, 0.64160156, 0.15795898, -0.43701172, 2.0234375, 1.5498047, 0.6933594, 1.8808594, -0.87841797, -1.3242188, -1.3574219, -1.8154297, 0.8203125, -3.7539062, 0.28344727, -0.90771484, 0.9555664, 1.5722656, 0.1829834, 0.47583008, 2.0175781, 0.025650024, 0.3515625, 1.6552734, -0.97509766, 3.921875, 2.7714844, -0.6567383, -0.30322266, -1.8925781, 0.5361328, 3.4824219, 0.59228516, -0.032958984, 0.37597656, -1.0039062, -1.0742188, -0.8701172, 2.2128906, 0.32885742, 1.3183594, -1.8623047, -0.110839844, 3.8808594, -0.16381836, 2.0273438, -0.2854004, 2.0507812, -1.8427734, 4.2382812, 0.53466797, -3.1679688, 1.5830078, -0.17163086, 0.984375, -0.13867188, -2.3789062, -0.2861328, -0.10144043, -0.6376953, -1.1708984, -0.059539795, -2.2460938, 0.39868164, 0.86083984, -0.69091797, -1.1953125, 1.4306641, -0.09063721, 3.1074219, 1.2734375, 0.32080078, 0.7939453, -0.070129395, 0.24682617, -0.035064697, 0.81396484, -1.4931641, 2.0195312, 0.25634766, -0.17358398, -1.2587891, 3.3847656, 2.6347656, 2.0058594, 0.5053711, 0.8881836, 1.3134766, 2.40625, 0.5996094, -0.54003906, 2.4003906, -0.31958008, 0.1451416, 1.0449219, 1.9716797, 2.9082031, 0.65234375, -0.9663086, 2.234375, -1.3427734, -0.8828125, -0.59375, -0.6069336, 1.90625, -1.4785156, 2.0175781, 1.4326172, -0.9482422, -0.7739258, -0.81640625, -0.5488281, -0.90722656, 1.8710938, 1.8427734, -0.16174316, 2.2636719, 2.2929688, -1.1689453, 0.03161621, 0.60009766, -1.9550781, -2.1542969, 0.6738281, -1.0234375, -1.3681641, 0.31420898, 1.0898438, 0.69921875, 0.92871094, 0.7988281, 2.8730469, 1.9208984, 0.7602539, -1.4501953, -0.06896973, -0.1463623, 4.8984375, 0.010757446, 1.0400391, 1.1318359, 0.25878906, -3.1992188, -2.8027344, 3.4335938, 0.4777832, 2.5195312, 0.65527344, -2.2421875, 2.5898438, -1.359375, 2.0703125, -2.4960938, 1.7207031, -0.921875, -1.1083984, -0.84716797, 0.04699707, 3.4863281, 0.3256836, -0.49365234, -0.4934082, 0.45385742, -0.057647705, 2.453125, 1.03125, 3.5273438, 2.4804688, 1.6699219, -0.12915039, 2.0078125, 0.01889038, -0.04537964, -2.3320312, 2.0507812, 1.4599609, 0.30126953, 0.8354492, -0.7397461, 0.9868164, 0.051940918, 0.28344727, -0.953125, -1.3984375, -1.6806641, 0.32983398, -0.0927124, -1.2314453, -0.96875, 1.7685547, 1.1416016, -0.23522949, 0.17382812, 1.6337891, 0.098083496, 3.2050781, -0.90625, -1.2324219, -0.8833008, -0.515625, -0.9086914, 0.36279297, -2.0449219, -0.49902344, 1.8222656, -1.0019531, -1.9755859, 0.024978638, -1.6191406, -1.2197266, 0.5644531, 0.4963379, -1.2363281, -0.5541992, 3.8105469, 1.9160156, -0.5854492, 2.9707031, -0.16772461, 0.37841797, -1.9511719, -0.4909668, -2.1347656, -0.96875, -0.61865234, 1.7246094, 3.4003906, 2.4960938, -0.671875, -1.7666016, -2.7285156, -1.6240234, -2.890625, 2.546875, -1.1796875, -0.49291992, 0.3955078, -2.578125, -0.6845703, -1.5634766, -2.4628906, 0.7597656, 0.71240234, 0.4272461, 0.41577148, -0.0574646, 0.9868164, -0.5253906, 2.0292969, 1.4501953, 2.3515625, 1.2441406, 1.0595703, 0.95751953, -0.3696289, -1.6269531, -1.0947266, 0.19958496, -0.1920166, -0.859375, 0.28515625, 0.32373047, 0.93603516, 0.59521484, -0.038116455, -1.1552734]}, "B07BLH19MX": {"id": "B07BLH19MX", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black\nDescription: \nFeatures: GRILLING POWER: Up to 20,000 total BTUs\n3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control\nLARGE GRILLING AREA: 285 sq. inches\nEASY SETUP: Sturdy quick-fold legs and wheels\nTHERMOMETER: Integrated design for accurate temperature monitoring\n", "embedding": [-3.1855469, 0.1126709, 0.90283203, 1.7304688, -1.3955078, -0.4519043, 1.171875, -0.26611328, -1.4130859, 1.3164062, -0.011413574, -1.3916016, 0.019165039, -2.9609375, -0.70166016, -0.24035645, 0.55029297, 2.1972656, -0.49291992, -0.46166992, 1.8007812, -1.34375, 0.9892578, -0.7363281, -0.17028809, -0.07836914, 3.8398438, -5.3085938, -0.089416504, -0.3112793, 1.6865234, -0.012145996, -0.8569336, 2.2402344, -2.1503906, -1.171875, -3.1445312, 1.328125, -3.2539062, -0.16345215, -0.97509766, 0.13256836, 2.0019531, 0.7397461, 0.2388916, -0.0132369995, 2.0371094, 1.0302734, -0.40307617, -1.3046875, 1.2382812, 1.5771484, -0.46313477, -0.14807129, -0.5097656, 0.38183594, 0.5126953, -0.2536621, 0.87402344, -0.19995117, 2.0097656, -0.18017578, -2.2519531, 0.9916992, -1.1162109, -0.32250977, 0.32739258, 0.5839844, -0.41064453, 0.015586853, 3.6015625, 0.5053711, -2.0566406, -1.1015625, 0.43652344, -0.59277344, -2.5527344, -0.9111328, 1.4189453, -1.0458984, -1.9580078, 2.3457031, 0.22741699, -0.9916992, -0.9213867, 0.6040039, 0.10870361, -0.2163086, 1.3701172, 1.5507812, 0.31982422, 1.3476562, -2.3574219, -2.9824219, 0.9975586, -0.2861328, 1.0810547, 0.8339844, -0.47143555, 0.3088379, -1.5371094, 0.83691406, -2.7949219, -0.10656738, -4.0117188, -0.8051758, 3.328125, -0.6489258, -2.0722656, 2.8828125, -2.4472656, -1.4853516, 2.4921875, 1.3378906, 0.25219727, 0.10131836, -0.8071289, 2.4121094, 2.6210938, 2.796875, 4.5351562, 0.04006958, 2.8730469, -0.7207031, -1.2050781, 1.8251953, 0.4892578, 0.38867188, 3.9804688, 0.07055664, -0.83154297, 0.21008301, 3.21875, -0.30273438, -2.6328125, -2.7148438, -1.7587891, -1.046875, -3.6972656, -1.0898438, -1.0341797, 0.061279297, 3.3027344, 0.22290039, -4.828125, -0.6948242, 0.00869751, 1.203125, -0.5625, -1.0126953, 0.6303711, -1.9072266, -0.5078125, -0.26171875, 1.7880859, -0.546875, -0.6621094, -0.51171875, 4.09375, 0.13256836, 1.0917969, -0.81591797, -1.7519531, 0.13928223, 2.0761719, 0.19335938, -0.82373047, 0.89990234, -0.51416016, 1.2753906, 1.0673828, -3.3300781, 1.2119141, 0.6064453, 2.1074219, -1.3271484, 0.028381348, 1.9521484, 0.27734375, 0.8359375, -1.7236328, -1.2763672, 0.20129395, 0.3034668, 0.094177246, -1.8574219, -0.5722656, 0.43237305, 0.82128906, -0.8696289, 0.7607422, 0.22717285, 0.6928711, -0.14660645, -1.453125, -0.95703125, -0.32763672, -1.4462891, 1.0039062, 1.1269531, 0.15734863, -0.4296875, 0.84277344, 0.46850586, -2.2617188, -3.3457031, -1.1298828, -2.3476562, 0.62158203, 1.7236328, 2.1230469, 0.19104004, 0.9555664, -1.7714844, -0.9511719, -2.5410156, 1.8046875, 0.90527344, 1.7949219, 1.9794922, 1.015625, -0.93115234, -1.0878906, 0.4794922, -0.9902344, 2.0585938, 0.85839844, -0.16784668, -0.7993164, -0.8261719, 2.4921875, 1.8769531, -0.83447266, 0.54589844, 0.203125, 1.2324219, 0.09387207, -1.0625, -0.91748047, 0.8886719, -0.56884766, 0.8305664, -0.76123047, -2.2089844, -0.2512207, 0.0513916, -1.0292969, 2.25, 2.0273438, 0.56591797, 0.1875, 1.4257812, -0.57128906, 1.5742188, -0.24804688, 1.1630859, -0.56152344, 0.23791504, -1.6992188, -2.953125, 0.4958496, 2.2285156, -0.3425293, 0.52734375, 0.8100586, 0.0143966675, 2.4414062, 1.8408203, -2.0039062, -0.6386719, 1.7392578, 0.4946289, -0.01084137, 2.2910156, 1.5380859, -1.1162109, 0.31030273, 2.2675781, 0.5395508, 2.109375, 1.2285156, 0.6230469, 0.9404297, -2.4902344, -2.3691406, 0.81689453, 0.44262695, -0.03225708, -0.9501953, 1.9902344, 3.9667969, -0.3310547, -2.2890625, 3.2480469, -2.4101562, 1.7568359, 2.3847656, 0.1887207, -1.140625, 0.0056419373, 2.9980469, 0.07556152, -1.46875, 0.7890625, -3.2675781, -0.16638184, 0.17321777, -3.2851562, 0.80615234, -0.74902344, 0.15258789, -0.2590332, -2.2148438, 0.95214844, -0.15917969, -1.1123047, 1.609375, -1.7900391, 1.8076172, 2.5351562, 0.0048599243, 1.3847656, 0.84228516, -2.140625, 0.4831543, -0.31103516, -1.2890625, 1.0957031, 0.47045898, -0.31079102, 0.46313477, -0.74560547, 2.7949219, -1.8925781, -3.3789062, -0.6850586, 0.022338867, -3.703125, 1.6201172, 0.1743164, -1.9179688, 1.3535156, -1.1474609, 2.671875, -2.1445312, -2.1191406, 0.8652344, 0.97021484, 0.20422363, 0.09503174, 0.26611328, 0.6772461, 0.30981445, -2.375, 0.115112305, -0.29296875, -0.12261963, -0.46362305, 0.29589844, -0.9267578, -0.49023438, -0.13879395, -0.86035156, 0.9682617, -0.22644043, -2.0664062, 1.5068359, -3.4257812, 0.49316406, -3.8886719, -0.60498047, 0.27270508, -0.14111328, -3.1640625, -1.78125, 1.3486328, -0.053131104, 4.484375, -1.0341797, 0.31396484, -0.4501953, -1.0761719, 1.3789062, -0.6386719, -2.4550781, -1.5097656, 0.7939453, -0.43188477, -2.7519531, -2.7402344, -1.5605469, 0.23706055, 0.6088867, -0.42114258, 0.47705078, -1.5957031, 1.6230469, -3.1171875, 0.26416016, -0.6489258, 1.4667969, -1.1484375, -0.1451416, -2.0429688, 0.06750488, -0.65283203, -0.030334473, -1.0283203, 0.05432129, 0.3623047, 0.70410156, 0.13916016, -0.30004883, 2.1992188, -1.3544922, -4.5742188, 2.1113281, 1.5195312, -1.328125, 3.0566406, -2.2929688, -2.796875, -4.28125, -2.2265625, 2.3242188, 1.5253906, 1.8574219, -1.8076172, -1.1318359, 1.5595703, -0.059295654, -1.203125, 0.61865234, -1.8691406, 4.0234375, -2.0292969, -2.9746094, 1.0966797, 2.6171875, -3.8125, -2.0410156, 1.84375, 0.88671875, 1.1796875, 4.1679688, 0.85498047, 0.55126953, -0.21044922, 1.5693359, 2.5234375, -0.19152832, -2.0800781, -0.29516602, -0.5966797, 1.5917969, 1.8417969, 0.19995117, 0.640625, 1.609375, -0.012390137, 2.1796875, -1.8154297, 0.75439453, 0.16564941, 0.32836914, 1.7558594, 2.8046875, -0.55078125, 0.43847656, -0.8535156, -0.41870117, 1.2412109, -0.7451172, -0.4008789, 2.2988281, 0.73046875, -0.41723633, 0.7001953, -0.28979492, 1.1777344, -0.66748047, 1.0244141, -1.3349609, -0.29541016, 1.5908203, -3.1503906, -2.1601562, -2.1484375, 3.1425781, -1.7861328, -2.4121094, 1.9619141, 4.0820312, -0.87158203, -2.8066406, -2, 0.14892578, -0.048675537, 2.578125, 1.09375, -1.3691406, 0.40185547, 0.08734131, 1.4287109, 1.8701172, -0.47705078, -1.3525391, -1.09375, 6.9737434e-05, -0.1697998, 0.23364258, 0.7915039, 0.48486328, -2.2363281, 1.0244141, -3.8496094, 1.8173828, 0.37353516, -1.8378906, -0.45092773, 3.5351562, 0.50390625, 0.8828125, -0.067871094, 3.8457031, -1.390625, 0.34936523, 1.0722656, -1.1503906, 0.34350586, -2.5878906, -2.5898438, 0.7573242, -2.546875, -0.6430664, 2.4414062, -0.3359375, 0.20397949, -0.1081543, 1.2880859, -2.09375, -2.6171875, -2.8613281, -1.0595703, -2.0761719, 0.07800293, 0.8769531, -0.04196167, -2.5625, -2.7382812, -2.2636719, 0.22827148, 1.8085938, 2.4453125, -1.7050781, 0.54003906, -0.9511719, 1.1572266, 0.5576172, -0.24072266, 1.0673828, -0.26049805, 0.56396484, -4.3515625, 0.3256836, 2.4023438, 0.27490234, 2.5332031, 0.57373047, 0.57910156, -2.4550781, 1.7001953, 1.8320312, 0.53515625, 0.25732422, -1.1445312, -0.20471191, -0.8417969, -0.49414062, -0.58203125, -0.065979004, 0.066711426, -1.8876953, 1.8662109, 1.0869141, 2.7148438, 0.0044555664, -0.39892578, -2.4414062, 1.4111328, 0.46655273, -2.34375, -2.3691406, -0.80078125, -0.4963379, -1.6806641, 0.28979492, -1.65625, -1.6015625, -0.38134766, -1.0751953, -2.8046875, 2.5878906, 1.1689453, 2.71875, 1.234375, 1.7226562, -0.5761719, 0.49291992, -1.1591797, -1.7939453, 0.55859375, -0.6567383, -0.09313965, 0.77685547, 2.078125, -2.1152344, -1.7207031, 0.6171875, -3.0800781, -1.3320312, -2.0761719, 0.47973633, -2.8515625, 0.19702148, 1.2919922, -0.20861816, 3.2148438, -1.4228516, 0.79589844, 1.5419922, 0.13879395, -0.11541748, -0.035217285, -0.38427734, 1.4111328, 2.0058594, 0.79248047, -0.27294922, -1.2226562, 0.082458496, -1.4638672, 1.8046875, -2.0351562, -0.12030029, 2.3886719, -0.8208008, -1.6621094, -1.0224609, 0.6977539, 1.2304688, 0.7319336, 3.3398438, 1.0771484, -1.3369141, 0.00067424774, 0.33447266, -1.4990234, 0.45288086, -0.2836914, 0.2956543, 2.1933594, -0.74902344, -3.8339844, 0.13220215, 2.4003906, 0.07067871, 1.0556641, 0.74658203, -0.20251465, -0.8120117, -3.0527344, -0.71728516, 0.24255371, -0.57128906, 1.2607422, -1.8964844, -0.22619629, -1.9931641, 1.625, 2.7714844, -0.54541016, -1.0390625, 2.0683594, -2.0625, 0.4650879, -1.7861328, -1.4111328, -3.3222656, -1.3320312, 2.1816406, 0.6269531, 0.8671875, 0.5410156, 1.3759766, -2.1132812, -0.6899414, -2.4589844, 2.4882812, -1.9257812, -1.6582031, 0.6352539, -1.6357422, 0.5058594, -1.5859375, 0.07733154, -0.79003906, 2.7421875, 1.2792969, -0.45776367, -0.8486328, 1.2011719, -2.1679688, -3.3515625, -1.5693359, -0.13427734, 0.06213379, -0.27734375, 3.3652344, -1.9785156, -1.375, -0.20874023, -1.6621094, -1.0361328, -0.4963379, -0.52246094, -0.9086914, -0.22338867, 1.03125, -0.4033203, 1.5488281, 1.6621094, 2.2519531, -0.2220459, -3.6386719, -2.5507812, 1.2392578, -0.77197266, 1.1806641, 0.51123047, 0.12512207, -1.1152344, -1.0878906, 0.9355469, -0.74365234, 2.7695312, -1.2832031, -0.46655273, 1.5166016, -1.6630859, -0.61621094, 1.0449219, -2.1113281, 1.3544922, -0.64501953, 2.796875, 0.65966797, -0.2993164, -1.5, 1.9111328, 0.52441406, 0.20996094, 1.3408203, -0.81152344, 2.859375, 0.65283203, -0.4501953, -1.6357422, -1.4716797, -2.65625, 0.5048828, -1.7519531, -1.1914062, -2.3671875, 2.7246094, 1.0087891, 1.7666016, 0.35766602, 0.97509766, 0.7138672, -0.99902344, 1.0517578, -0.11029053, 3.2753906, 2.5195312, 0.23803711, -2.6328125, -0.16247559, -0.63378906, 0.42236328, 1.8896484, -0.83691406, -1.0751953, -1.4394531, -0.15881348, -0.5332031, 2.6699219, 1.5703125, 1.9228516, -1.1523438, 1.9501953, 4.3710938, -0.19555664, -0.54833984, 0.56591797, 2.6347656, -1.8388672, 2.8183594, 0.10046387, -2.9589844, 1.6347656, -1.8818359, 1.3574219, -1.1259766, -0.63378906, 0.4699707, -1.390625, -1.4306641, -1.9892578, -1.0410156, -2.2929688, 2.9101562, 0.017684937, -2.046875, 1.2099609, 2.0605469, -1.1025391, 2.0527344, 1.8759766, 0.59277344, -0.14807129, 1.4628906, -0.18139648, -1.2626953, 1.2792969, -3.0332031, 3.9355469, -0.16772461, -0.37353516, 0.6435547, 2.8183594, 0.42358398, 4.5351562, 2.4472656, 2.1425781, 3.4023438, 0.7788086, 3.8378906, 0.39501953, -0.09515381, -0.23217773, -0.8198242, 0.60253906, 3.1621094, 2.4296875, -0.2121582, -1.4472656, 0.23986816, -0.72753906, -1.0869141, -1.53125, 0.97558594, 0.3010254, -3.9433594, 1.8652344, 1.6611328, 0.56884766, -1.6044922, 0.30615234, 0.8378906, 0.3623047, -1.5322266, 0.34155273, 1.7568359, -1.453125, -0.016525269, -2.046875, -0.11138916, 2.3554688, -1.453125, -0.8720703, -1.1074219, -1.4853516, -1.3085938, -0.27612305, 1.4394531, 0.5810547, 1.0859375, 1.6582031, 0.1381836, -0.1862793, -0.17163086, -0.5527344, -0.034362793, 1.5263672, 2.8476562, -0.06311035, -1.1943359, 1.6445312, -1.2275391, -1.6943359, -4.03125, 1.6484375, 0.14135742, 1.5595703, 1.6611328, -2.0898438, 1.3574219, 1.3964844, 2.2363281, -1.3740234, 1.6513672, -1.6669922, -1.1982422, -0.92871094, 0.84814453, 1.5068359, 2.9003906, 1.6445312, -1.484375, 1.6904297, 0.22473145, 2.3984375, -1.0507812, 0.10290527, 1.2753906, 1.8603516, -1.140625, 2.2109375, 0.3461914, 1.5322266, -0.4855957, 1.5419922, 2.4667969, -0.78222656, -0.86621094, -1.2929688, 0.8154297, -0.038879395, -0.4333496, -0.72265625, -2.3828125, -1.2919922, 1.28125, 0.16174316, -0.5957031, -0.9355469, 1.2607422, 2.4882812, -2.1542969, 1.3955078, 2.3945312, 1.5585938, 2.53125, -1.421875, -1.7431641, -1.4677734, 0.1262207, 1.2939453, 0.6328125, -1.7158203, 0.94628906, 1.2861328, -0.13317871, -0.48364258, 0.68115234, -1.171875, -0.3474121, -2.1914062, 1.8916016, -0.50097656, -1.0058594, 0.24841309, 0.049468994, 0.27294922, 1.9902344, -0.67578125, -0.3190918, -0.95410156, -2.1230469, 0.26123047, -2.4785156, -0.17810059, 0.8149414, 4.0195312, 1.1269531, 1.7607422, -1.890625, -2.0839844, -2.4648438, 0.028778076, 3.3613281, 0.1751709, -1.6699219, 0.296875, -0.017684937, 1.1171875, -1.0742188, -0.44018555, -0.074279785, -0.76416016, -0.14904785, 0.27612305, 0.72753906, 1.5664062, -0.51708984, -0.14221191, 1.9179688, 1.6972656, 2.7421875, 1.2148438, -1.6025391, 0.6484375, -2.4335938, 0.31762695, 0.8774414, -1.4072266, -1.8535156, 2.1972656, 3.0996094, 1.6035156, -0.50878906, -1.8847656, -1.8056641]}, "B01HITNEEE": {"id": "B01HITNEEE", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black\nDescription: \nFeatures: 360 square inches of cooking space over porcelain-coated grates. Convectional cooking system\n170 square inch porcelain-coated swing-a-way rack for warming\nThree stainless steel in-line burners for cooking performance\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\n", "embedding": [-2.1464844, 0.7714844, 1.6972656, 0.12438965, -0.36572266, 0.49902344, 0.40625, -1.1816406, 0.6821289, 1.375, 1.0097656, -0.32055664, 1.40625, -2.1328125, 1.390625, 0.63134766, 0.4633789, 1.4111328, 0.8828125, 0.28710938, 0.3942871, 1.5722656, 1.1542969, -1.2470703, 0.04837036, 1.2412109, 3.4589844, -3.1816406, 0.40185547, -0.96435547, 2.2636719, 0.20458984, 0.6113281, 2.4824219, -2.9863281, -1.4990234, -1.3447266, 1.1738281, -1.7958984, 1.5107422, -0.051116943, -0.6621094, 2.0703125, 0.41674805, -2.5683594, 0.18115234, 0.56933594, 1.2490234, -1.78125, -0.10748291, 2.1230469, 1.3984375, -0.27246094, 0.52734375, -0.7631836, 2.9726562, 1.2646484, -0.84228516, 1.4560547, 1.0458984, 1.3046875, 0.13146973, -2.4746094, 0.33813477, -3.2949219, 0.3671875, 0.0072021484, 0.46435547, -0.734375, -0.032989502, 1.8876953, -0.2932129, -1.6025391, 0.44677734, 1.0810547, -0.09838867, -2.5078125, 1.8496094, 0.88964844, -0.50439453, -1.4755859, 1.9492188, 0.7939453, -1.09375, 0.36816406, -0.9042969, -0.27514648, -2.2890625, 1.4257812, 0.28173828, 0.47851562, 1.7558594, -1.34375, -3.8320312, 2.4082031, -1.1132812, 0.8383789, 0.11975098, -0.47265625, 1.4550781, -0.46264648, -0.046691895, -1.5048828, 0.06567383, -3.3125, -0.90771484, 0.7705078, 0.76464844, -2.9902344, 0.76708984, -1.6201172, 0.90234375, 1.5322266, 1.1816406, 1.9199219, 1.4316406, 0.4243164, 1.8085938, 1.0019531, 0.3869629, 3.4160156, 0.34106445, 0.6010742, -0.61376953, -0.77490234, 0.101745605, -0.83251953, 2.0410156, 4.9140625, -2.3027344, -0.9423828, -1.1728516, 2.578125, -0.7421875, -2.4414062, -1.3300781, -1.4814453, -0.9086914, -3.6425781, 0.44311523, -2.0527344, 0.8544922, 0.57373047, -0.6459961, -3.0820312, -1.3652344, 0.75439453, 2.0371094, 0.08074951, -1.5625, 0.17980957, -2.7246094, -0.017700195, -1.4833984, 0.5463867, -0.3605957, -1.546875, -1.96875, 3.2753906, -0.06311035, 0.0070610046, -2.9921875, -0.57958984, 1.4433594, 0.10333252, 0.34375, -0.40307617, 0.49951172, 0.87158203, 0.9321289, 0.27490234, -1.0742188, 0.8823242, -0.5317383, 0.2783203, -0.43652344, -0.69384766, 1.7568359, 0.42236328, -0.18017578, -1.1601562, -2.2871094, 0.4560547, 0.26342773, 0.5991211, -1.5058594, 0.75927734, 0.92822266, 0.85009766, -0.5366211, 0.6582031, 0.40625, 0.42504883, 1.65625, -0.8334961, -1.4658203, -0.11871338, -0.09246826, 0.31958008, 0.4814453, -1.3486328, 0.16113281, 0.19580078, -0.052215576, -1.9550781, -3.984375, 0.22753906, -1.7207031, 2.1523438, 1.8242188, 1.8583984, -1.609375, 0.9980469, -1.1298828, 1.1289062, -2.78125, 1.4160156, -0.87646484, 2.6171875, 1.6220703, -0.43652344, 0.17480469, 0.39575195, -0.029052734, -0.14025879, 1.4609375, 0.83447266, 1.15625, -2.3105469, -1.0947266, 1.5107422, 0.34448242, 0.55078125, 0.40771484, 0.17834473, 1.3193359, 0.57421875, -1.1992188, -0.32910156, -1.0009766, -1.2001953, 0.49951172, -0.9067383, -2.2890625, 1.1542969, 1.5957031, -2.7050781, 2.4003906, 1.8261719, 1.3203125, -1.2578125, -1.1523438, 0.08502197, 0.01260376, -0.9003906, 0.7080078, -1.015625, 1.0322266, -0.5703125, -1.765625, 0.1875, -0.1071167, -0.1920166, -0.105285645, 1.4316406, -1.4111328, 2.5058594, 1.6347656, -1.3417969, -1.2695312, 1.1132812, 0.48217773, 1.7324219, -0.77685547, 1.7646484, 1.7998047, -0.70947266, 3.8984375, -0.56396484, 1.4453125, 1.9101562, -0.28588867, 2.0390625, -2.140625, -0.76904297, 1.0898438, 0.6176758, -1.4882812, -0.22790527, 0.59765625, 5.4804688, -1.1738281, -2.046875, 3.5800781, -0.7050781, -0.1472168, 1.4726562, -0.85302734, -2.0546875, 0.6352539, 3.3398438, 0.26757812, 0.9580078, 1.1650391, -1.9873047, -0.84521484, 0.8696289, -0.78271484, -1.6044922, 0.57470703, -0.30737305, -0.7236328, -1.2685547, -0.07696533, -1.8349609, -0.40722656, 2.8789062, -1.6201172, 1.5, -0.24902344, 1.9404297, 1.1132812, -0.1751709, -2.3535156, -1.0839844, 1.1171875, -2.015625, 0.17785645, 0.07446289, -0.61621094, -0.54248047, -0.7421875, 0.2722168, -1.4082031, -2.5410156, -0.85595703, -1.9648438, -3.0371094, 0.12310791, -1.9941406, -0.68310547, 1.1669922, -2.6035156, 0.6035156, -1.2441406, -3.4941406, -1.0390625, -1.6142578, -0.90478516, -0.3395996, 0.60058594, 0.33081055, -0.55908203, -4.90625, 0.21984863, 0.5649414, -0.16540527, -0.16320801, -2.0097656, -0.9042969, 0.9213867, -0.35839844, -1.3291016, 0.6503906, 1.0078125, -1.9873047, -0.33691406, -2.6132812, 0.58203125, -2.7226562, -0.0927124, -1.4003906, 1.1376953, -3.9746094, -1.3935547, -1.3398438, -2.0078125, 5.421875, 0.25170898, 0.5253906, 1.40625, 0.06088257, 1.6875, -0.27954102, -2.9003906, -0.6113281, 0.36254883, -0.8803711, -3.3828125, -3.1210938, 0.5805664, -1.1308594, -0.28125, -1.4394531, 0.47583008, -0.9560547, 0.97021484, -2.7402344, -1.34375, -0.5229492, 0.15441895, -0.023269653, 0.5180664, -1.4003906, -0.4375, -2.1484375, -0.6772461, -0.46118164, 2.1835938, -0.43408203, 2.359375, 1.7998047, -1.0205078, 0.99072266, -1.2753906, -3.3339844, 3.3554688, 1.0644531, -1.9140625, 1.390625, 0.10424805, -3.0878906, -1.8847656, -0.98339844, 2.9824219, 2.0878906, 3.0039062, 1.2304688, 0.3828125, 1.3330078, 1.7099609, 0.8540039, -0.8071289, -0.15490723, 3.0039062, -1.9287109, -2.2734375, 0.37451172, 2.5214844, -2.0839844, -2.2558594, 3.1308594, 0.2775879, 1.7421875, 2.28125, 1.2900391, 0.13330078, -1.9140625, 3.4492188, 1.3125, -0.06518555, 0.3166504, 0.19848633, 0.16833496, 0.36499023, 0.28808594, 1.5810547, -0.6152344, 2.109375, 1.1279297, 0.1430664, -2.0683594, 0.58935547, -0.72558594, 0.11682129, -0.57470703, 1.3486328, 0.26586914, 0.9916992, 0.39697266, -1.4052734, 0.7324219, -1.6630859, -1.1162109, 1.7490234, -0.025939941, -0.042755127, 1.390625, 0.9428711, 1.3330078, 0.42797852, -0.34545898, -1.7636719, 0.03463745, 0.4104004, -0.4411621, -1.6455078, -1.2167969, 0.75341797, -2.1738281, -2.6328125, 0.49023438, 3.7304688, -1.5908203, -0.9794922, 2.2519531, 2, -0.33911133, 1.6162109, 0.43945312, -1.9365234, 2.2285156, -1.3007812, 0.045135498, -0.35375977, -1.1533203, -0.15881348, -1.4208984, 0.23132324, -0.35961914, 1.7558594, 0.8227539, 1.1464844, -2.5253906, 0.10882568, -2.4609375, -0.21508789, -0.06903076, -2.5292969, -0.9580078, 3.0742188, 0.5883789, 1.6201172, -0.71728516, 3.7578125, -0.5932617, -1.3183594, 2.515625, -2.1621094, 0.2939453, -2.8203125, -4.0898438, 1.6396484, -0.23156738, -1.1123047, 2.578125, 0.61328125, -1.1083984, 2.5703125, 0.03942871, -2.9960938, -1.1152344, -1.4628906, -0.29418945, -0.79003906, -1.4472656, 0.6640625, 0.4892578, -2.7304688, -1.671875, -0.19506836, -0.3803711, 1.3388672, 1.9697266, -1.7666016, 0.17749023, -1.7783203, 1.203125, -0.7885742, -0.5942383, 0.49291992, -1.1601562, -0.08099365, -3.3046875, 1.3691406, 1.7246094, -0.8227539, 2.2734375, 2.1855469, 0.625, -1.2792969, -0.8989258, 1.5039062, 3.0195312, 0.28808594, -3.0722656, -3.0664062, 0.32983398, -1.1308594, -0.77783203, 0.21911621, -1.3730469, -1.8105469, -1.25, 1.6054688, 0.72802734, 1.5390625, -0.19824219, -2.2285156, -0.46679688, -0.113708496, -0.75146484, -0.27490234, -0.3642578, 0.18737793, 0.3425293, 0.68652344, -2.8417969, 1.9423828, -1.7636719, -0.35888672, -2.171875, 3.4863281, 1.2675781, 2.1796875, 3.0605469, -0.6508789, -0.23120117, -0.61083984, -0.8383789, -0.50683594, 1.5986328, -0.96533203, 1.5839844, -0.49072266, -0.17626953, -2.7324219, -0.14501953, 0.9868164, -1.8271484, -0.3527832, -1.5673828, -0.3659668, -1.6113281, -0.77783203, 1.6552734, -1.15625, 2.8515625, -1.0683594, -0.33666992, 0.13903809, 1.6494141, -0.40893555, 0.26464844, -0.71972656, 0.7114258, 0.7294922, 1.0019531, 0.20910645, -1.3242188, 0.4465332, -1.7177734, 1.5292969, 0.21435547, 0.44311523, 1.0820312, 0.1418457, -0.71435547, -2.2324219, 2.2617188, 3.6425781, -0.26757812, 4.3828125, 1.8359375, -3.4765625, 2.8769531, 0.70410156, -3.7246094, -1.0830078, -0.5605469, 0.3852539, 1.2119141, -0.4963379, -5.2070312, 0.037139893, 2.1347656, -0.765625, 0.8989258, 0.8754883, -1.8857422, -0.86376953, -2.4003906, -0.61035156, -1.2080078, -0.16137695, -0.33911133, 0.013687134, -0.26708984, -2.6777344, 1.3369141, 3.7734375, -0.9326172, -1.2441406, 2.2421875, -0.5996094, 1.0400391, -0.21691895, -1.5400391, -1.0986328, 0.4267578, 3.1035156, 0.27294922, 2.3027344, 0.32055664, 2.4960938, -3.1835938, 0.14086914, -0.84228516, 4.2304688, -1.8535156, 0.44262695, 1.5966797, -3.234375, 1.2617188, -2.375, 1.0703125, 0.39379883, 3.34375, 1.6083984, 0.40771484, -0.64208984, 0.34106445, -1.4296875, -3.8242188, -1.3896484, 0.18481445, 0.09539795, 1.0439453, 1.1464844, -1.0517578, 1.75, 0.2956543, -0.9536133, -1.2763672, -0.14880371, -1.6738281, -0.88916016, -0.9814453, 0.39697266, -0.5107422, 0.72509766, 1.3789062, 0.022003174, 0.7495117, -2.5449219, -0.78125, 2.1816406, -2.3925781, 1.2753906, 2.5527344, 0.55566406, 1.1503906, 0.984375, 1.4023438, -1.5292969, 3.3125, -0.921875, 0.31933594, 0.44311523, 0.015174866, 0.105529785, -0.88378906, -0.9794922, -0.3527832, -0.09039307, 2.0078125, 0.95410156, -0.43310547, -0.703125, 0.2614746, -1.0527344, -0.7939453, 0.9291992, 1.0253906, 2.1621094, 0.97753906, -3.1992188, 0.12310791, -0.6166992, -1.5341797, -0.3918457, -2.5351562, -0.6713867, -1.3740234, -0.35302734, 1.1044922, -0.8676758, 0.19689941, 0.6279297, 0.16723633, -0.47314453, -0.8515625, -2.2363281, 3.1386719, 2.2519531, 0.07397461, -0.8588867, -0.14990234, 1.6357422, 2.34375, 0.89697266, -1.7490234, 0.5019531, -1.9179688, 0.41601562, 0.43139648, 0.70458984, 1.3710938, -0.5126953, -1.1982422, -0.093933105, 3.3046875, 0.9194336, 0.5131836, 1.3310547, 1.4619141, -1.1933594, 4.1054688, 1.0585938, -2.6757812, 2.6464844, -2.4941406, 1.3398438, -0.08343506, -0.73095703, 0.8339844, -2.0410156, -2.15625, -2.4140625, -1.015625, -2.4023438, 2.5117188, 0.3544922, -2.7382812, 0.3623047, 0.5932617, -1.1523438, 2.7773438, 1.046875, 1.2558594, 0.04058838, -0.2697754, -1.0957031, -0.30737305, 1.5488281, -3.7910156, 1.4550781, 0.8071289, -1.5888672, -0.11010742, 3.1621094, 1.71875, 2.1230469, 2.4453125, 1.671875, 2.8574219, 2.0214844, 1.8535156, -0.19726562, 2.4121094, 2.2421875, -1.9794922, 1.4326172, 1.9511719, 2.3203125, 0.83154297, -1.6279297, 3.0351562, -1.0361328, -2.3144531, -0.059570312, 0.13586426, 0.37158203, -2.5019531, 1.6494141, 1.3769531, -0.46948242, -2.0429688, -0.9375, -0.89208984, -0.53125, -0.8334961, -0.5336914, 3.6757812, -0.9033203, 0.52490234, -0.3076172, 1.640625, 0.93310547, -3.7539062, 0.43676758, 2.2519531, -1.2216797, -0.13781738, -0.85839844, 0.6401367, 0.3984375, 0.69140625, 1.4824219, 2.0019531, 1.7509766, 0.5600586, -0.74853516, -0.33422852, -0.33251953, 1.5517578, -1.046875, -2.4238281, 1.0585938, -2.2128906, -3.0742188, -4.09375, 2.2246094, 0.9663086, 2.3144531, 1.65625, -1.5966797, 2.8847656, 0.7915039, 1.4833984, -2.3007812, -0.17297363, -0.36401367, -3.8652344, -2.390625, -0.28100586, 0.05630493, 2.7382812, 0.7548828, -1.4785156, 1.2177734, 0.80859375, 2.7324219, 1.3300781, 1.4101562, 0.54052734, 0.8305664, -0.19360352, 2.0039062, -0.7866211, -0.39697266, -0.87109375, 1.3847656, 1.5234375, -0.33813477, 1.0244141, -1.8447266, -0.33544922, -0.33276367, -0.21069336, -0.16760254, -2.5253906, -1.6611328, 0.1965332, 0.2446289, -1.2900391, -1.1445312, 2.8222656, 0.4013672, -0.921875, 0.5205078, 2.0117188, -0.81103516, 2.0117188, 1.6523438, -0.14953613, 1.1230469, -0.83691406, 1.1435547, 0.11853027, -1.484375, 0.3125, 1.6142578, 0.5917969, 0.54248047, -0.14709473, -0.0021896362, -1.4746094, -0.027328491, 0.025802612, -1.84375, -1.5058594, 2.03125, -0.27490234, -0.020401001, 2.3164062, -0.66748047, 0.3466797, -2.7871094, -0.032592773, -0.86816406, -0.91503906, -0.49389648, 1.7861328, 3.28125, 1.0615234, 0.23083496, 0.20751953, -2.9042969, -1.5947266, -1.6503906, 2.0839844, -0.6010742, -0.3642578, 0.81396484, 0.21435547, 1.8261719, -1.5595703, -2.0800781, 0.5839844, -2.3632812, 1.7138672, 0.25317383, 1.2568359, 1.4453125, 1.4335938, 0.9711914, 0.3083496, 1.7949219, 0.58691406, 0.96435547, 2.5214844, 1.2460938, -1.2773438, 1.2705078, -0.5551758, 0.8676758, 0.042022705, 0.35595703, 1.1474609, 0.6088867, 0.5878906, -1.2402344, -3.6933594]}, "B07BLHC2G2": {"id": "B07BLHC2G2", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Sturdy quick-fold legs and wheels\nPUSH-BUTTON IGNITION: For matchless lighting\n", "embedding": [-1.5185547, 0.24108887, 1.3115234, 1.265625, -1.2734375, -0.55908203, 1.1201172, -0.68359375, -1.4189453, 1.3066406, -0.07293701, -0.6435547, 0.7050781, -3.7109375, -0.40600586, 0.43432617, 0.99316406, 2.0449219, -0.3461914, -0.29467773, 2.0957031, -0.3425293, 1.3886719, -0.5239258, -0.116882324, 0.09954834, 4.0820312, -4.6171875, -0.44311523, -0.5283203, 1.8945312, -0.14477539, -0.32080078, 2.2382812, -2.3769531, -1.3652344, -2.8007812, 1.6142578, -2.2910156, 0.13000488, -1.3046875, -0.5942383, 1.3984375, 0.6538086, -0.75634766, -0.37231445, 1.9345703, 0.95654297, -0.39697266, -1.3798828, 1.9287109, 0.9350586, -0.19042969, -0.3125, -0.36987305, 0.6796875, 0.85546875, -0.64941406, 0.9838867, 0.18017578, 1.7226562, -0.62109375, -2.171875, 0.8432617, -1.125, -0.000957489, 0.5214844, -0.0038814545, 0.32592773, -1.1591797, 3.7519531, 0.2211914, -2.7304688, -0.41845703, 0.017852783, -0.32250977, -3.2109375, 0.046173096, 0.60058594, -1.2753906, -1.1796875, 1.8085938, 0.5473633, -1.1552734, -0.67333984, 0.6977539, -1.2832031, -1.0683594, 1.8369141, 1.4082031, -0.50878906, 1.6396484, -2.2441406, -4.1523438, 0.65625, -0.4892578, 0.68603516, 0.8222656, -0.38305664, 0.6591797, -0.99072266, 0.13696289, -2.0507812, -1.0224609, -3.125, -0.60546875, 2.5742188, -0.22302246, -1.9951172, 2.8964844, -2.5976562, -1.9375, 2.5605469, 1.4287109, 0.43530273, 0.12854004, -0.6088867, 1.9248047, 2.8164062, 1.8701172, 4.2929688, -0.36816406, 2.4941406, -0.6147461, -1.3183594, 1.7822266, 0.6899414, 1.4296875, 3.4882812, -0.69677734, -0.031204224, 0.43310547, 2.7441406, -0.12200928, -2.953125, -2.359375, -1.5537109, -1.1982422, -3.7285156, -0.48632812, -0.9057617, -0.10632324, 3.1035156, 0.26342773, -4.4765625, -0.35913086, -1.3466797, 1.0820312, -0.52246094, -0.9707031, 0.44726562, -1.5419922, -0.39575195, -0.055480957, 1.8876953, 0.33813477, -1.1845703, -1.3671875, 4.3320312, 0.12792969, 1.0888672, -1.0234375, -1.5185547, 0.24658203, 2.3671875, -0.103393555, -0.6298828, 0.94628906, -0.70654297, 1.4863281, 0.35913086, -3.1269531, 1.0634766, 1.0546875, 2.140625, -1.8310547, -0.3942871, 2.8300781, 0.06298828, -0.13513184, -1.8652344, -1.6923828, 0.75683594, 0.23840332, 0.55615234, -0.7011719, -0.5834961, -0.62060547, 0.6040039, -1.0009766, 1.6494141, -0.27612305, 0.23120117, 0.38256836, -1.2128906, -0.6845703, -0.70996094, -0.67871094, 1.6445312, 1.6669922, -0.25219727, 0.61865234, 0.07696533, 1.2939453, -1.4863281, -2.5957031, -0.9863281, -2.2695312, 0.37426758, 0.88378906, 2.7402344, 0.026809692, 2.1699219, -1.7060547, -1.0957031, -3.0566406, 1.3515625, 0.16455078, 2.234375, 2.7714844, 0.8876953, -0.74853516, -1.2275391, 0.8198242, -0.6196289, 2.0625, 0.10614014, 0.27246094, -0.80371094, -0.62109375, 2.7011719, 2.2636719, -1.8408203, -0.05227661, 0.53759766, 2.0195312, -0.13635254, -1.3037109, -1.1689453, 0.33007812, -0.9609375, 1.2832031, -0.19250488, -1.8759766, -0.09124756, -0.6425781, -1.3984375, 2.5585938, 2.3535156, 0.4194336, 0.044799805, 0.6801758, -1.0683594, 2.5253906, -0.12963867, 2.0722656, -0.6347656, 0.7109375, -1.6679688, -2.2167969, 0.53808594, 1.7880859, -0.84228516, 0.03390503, 0.53564453, -0.23718262, 2.4746094, 1.6328125, -2.1347656, -0.8613281, 1.2490234, 0.30981445, 0.8486328, 1.9804688, 1.7226562, -1.2294922, -0.33569336, 2.1699219, 0.7192383, 2.4746094, 0.90185547, 0.3232422, 1.7050781, -2.2753906, -2.359375, 0.77246094, 0.10418701, -0.2019043, -1.109375, 1.1201172, 3.7382812, 0.42260742, -2.4355469, 3.9707031, -2.9199219, 1.2646484, 0.8774414, 0.17358398, -1.0507812, -0.22058105, 2.59375, 0.18640137, -1.1347656, 2.3769531, -4.015625, -0.59277344, -0.5996094, -3.234375, 1.1230469, -0.46289062, 0.03274536, -1.2177734, -2.2773438, 0.8154297, -0.92871094, -0.89208984, 1.6523438, -2.2753906, 0.67626953, 2.9238281, 0.15844727, 0.5151367, 0.9091797, -0.88964844, -0.60791016, -0.38110352, -1.9794922, 1.2216797, 1.0429688, -0.56103516, 0.23010254, -0.46118164, 1.9189453, -1.7626953, -3.3085938, -0.36938477, 0.049102783, -3.5605469, 2.0136719, 0.16711426, -2.2109375, 1.1152344, -1.1210938, 2.7050781, -2.2265625, -2.75, 0.43286133, 0.3857422, 0.33447266, -0.36767578, 0.39453125, 0.79345703, 0.38378906, -3.6445312, -0.21679688, -0.14624023, -0.21057129, -0.40478516, -0.13635254, -1.2197266, 0.36376953, 0.15966797, -0.51953125, 0.51708984, -0.6376953, -2.6328125, 0.27270508, -3.0546875, 0.5395508, -3.5292969, -0.24560547, 0.5620117, 0.58251953, -3.0800781, -1.3974609, 2.1464844, 0.5151367, 5.7695312, -0.6538086, 1.1474609, 0.14465332, -0.7426758, 1.3095703, -1.1357422, -2.6445312, -0.6254883, 0.76904297, 0.12011719, -2.5546875, -3.2050781, -0.9716797, -0.060272217, 0.09222412, -0.26586914, 0.28808594, -1.6826172, 0.9995117, -1.8525391, 0.32373047, 0.22875977, 1.1259766, -1.0205078, -0.67871094, -1.4248047, -0.43408203, -1.1484375, 0.09698486, -1.1289062, 0.36767578, 0.49853516, 0.39575195, 1.1806641, -0.14782715, 1.5927734, -0.5703125, -4.4765625, 2.8671875, 1.5322266, -0.6777344, 2.5195312, -2.0605469, -2.6054688, -4.5234375, -1.4296875, 1.9658203, 2.2519531, 2.2441406, -0.5136719, -0.6738281, 1.0703125, 1.4169922, -1.0966797, 0.48461914, -1.1689453, 4.2304688, -1.4580078, -2.6757812, 0.84228516, 2.3027344, -3.8164062, -2.609375, 0.98583984, 0.5517578, 1.9511719, 3.4726562, 1.5634766, 0.04272461, -0.48779297, 1.1152344, 2.4746094, -0.11218262, -1.0888672, 0.8129883, -0.6972656, 1.9433594, 1.7636719, 0.37719727, 0.15246582, 0.9970703, 0.67333984, 2.5449219, -0.8227539, 1.1914062, 0.31152344, 0.12658691, 2.2734375, 2.5683594, -0.83691406, -0.30981445, 0.21386719, -0.62597656, 1.0664062, -0.096069336, -0.33129883, 2.8398438, 0.69677734, -0.5361328, 0.14160156, 0.071777344, 1.3652344, -0.80322266, -0.25268555, -1.5039062, -0.20776367, 0.58984375, -3.0761719, -2.0664062, -2.390625, 2.5859375, -0.62890625, -2.5996094, 1.4003906, 4.0585938, -0.88378906, -2.6035156, -1.765625, 0.98339844, 0.43432617, 2.0878906, 1.3798828, -1.4326172, 1.2509766, -0.24780273, 1.7460938, 2.3828125, -1.0253906, -1.0107422, -1.5195312, -1.0869141, -0.41870117, 0.41064453, 1.8115234, 0.47851562, -2.5175781, 1.1123047, -3.6992188, 1.0673828, 0.49682617, -1.6220703, -1.171875, 3.1660156, 0.0871582, 0.63427734, -0.40185547, 3.625, -1.0419922, -0.1586914, 1.4423828, -0.41088867, -0.5131836, -2.6347656, -2.6621094, 1.3984375, -0.8046875, -0.76464844, 2.8203125, -0.78271484, -0.36547852, 1.2744141, 0.67285156, -1.4902344, -2.6621094, -1.8183594, -0.7236328, -1.3886719, 0.5283203, 0.8876953, -0.114990234, -2.2988281, -1.9326172, -1.8935547, 0.18334961, 1.4892578, 2.6230469, -1.703125, 0.28637695, -1.5244141, 1.0732422, -0.08105469, -1.2988281, 0.86376953, 0.61865234, 0.24316406, -3.6933594, 0.5888672, 2.1074219, -0.103393555, 2.4296875, 1.5585938, 0.07055664, -2.1894531, 1.9091797, 1.5634766, 0.6713867, 0.18713379, -1.1308594, -0.32104492, -1.6123047, -2.0410156, 0.5234375, -0.03656006, -0.34106445, -1.7167969, 1.6972656, 1.0888672, 2.515625, 1.6835938, -0.060150146, -1.9902344, 1.375, 0.53564453, -2.8691406, -1.8066406, -1.4609375, -0.5629883, -1.546875, 0.7182617, -1.1142578, -1.6699219, -0.09094238, -1.4052734, -2.8164062, 1.765625, 1.1621094, 1.9042969, 1.8876953, 1.2441406, -0.06286621, 0.15368652, -0.55371094, -0.63720703, -0.34155273, -0.7163086, 0.5419922, 0.29541016, 2.3535156, -1.1894531, -1.7402344, 0.8432617, -3.2382812, -0.9814453, -1.9150391, 0.4111328, -2.4628906, 0.37573242, 0.045196533, -0.7084961, 1.9892578, -1.4658203, 0.64453125, 0.5053711, 0.45410156, 0.36743164, 0.52490234, -0.09063721, 1.3710938, 1.8251953, -0.14013672, -0.57177734, -1.3945312, 0.30908203, -1.3828125, 1.7597656, -1.7724609, -0.34838867, 2.234375, -1.7705078, -1.5595703, -0.50927734, 0.39086914, 1.6845703, 1.2890625, 3.0898438, 1.4326172, -1.2275391, 1.2333984, 0.73291016, -0.30322266, 1.0742188, -0.60791016, -0.08868408, 1.4472656, -1.7802734, -3.9355469, -0.24145508, 1.5732422, 0.029724121, 0.67041016, 0.01953125, 0.07342529, -1.1455078, -3.0839844, -0.37158203, 0.35351562, -1.7998047, 0.9472656, -2.0292969, -0.29223633, -2.1855469, 1.6484375, 2.1855469, -0.6826172, -1.0537109, 1.5830078, -1.4169922, 0.6738281, -1.4667969, -1.1142578, -3.5566406, -0.97265625, 1.2929688, 0.31152344, 0.40893555, 0.62353516, 0.8574219, -1.7900391, -0.24645996, -1.8925781, 2.2480469, -2.7382812, -0.81884766, 1.1464844, -1.7363281, 0.67041016, -1.9501953, 0.22766113, -0.26098633, 3.1503906, 0.9238281, -0.6513672, -1.0585938, 1.421875, -2.5078125, -3.1035156, -1.5908203, -0.38208008, 0.07055664, -0.030441284, 2.2636719, -2.4433594, -0.6904297, -0.00015556812, -0.38500977, -0.48339844, -0.37426758, -0.8613281, -0.7192383, 0.24780273, 0.40405273, -0.49975586, 1.4033203, 1.5292969, 1.859375, -0.26708984, -2.9316406, -2.7792969, 0.39648438, -1.890625, 1.0830078, 1.625, 0.014839172, -0.7036133, -0.74609375, 1.2529297, -0.5078125, 2.1328125, -0.8515625, -0.2824707, 1.4082031, -1.0546875, -0.41430664, 0.4375, -2.0214844, 0.64501953, -1.7011719, 2.6894531, 0.43432617, 0.6323242, -1.3984375, 1.5449219, 0.87646484, -0.29711914, 1.9951172, -0.63378906, 2.4863281, 0.79589844, -0.26586914, -0.91259766, -1.0673828, -2.6542969, 0.29418945, -1.4765625, -0.97998047, -1.9169922, 2.3632812, 0.78125, 2.5351562, 0.11633301, 1.1767578, 0.9970703, -0.6972656, 1.1513672, -0.20446777, 3.3242188, 3.0585938, 0.19055176, -2.0273438, -0.10510254, 0.13769531, 0.26611328, 1.7841797, -0.81884766, -0.91845703, -1.9599609, -0.15441895, -1.5322266, 2.1699219, 2.0253906, 1.609375, -0.64941406, 2.7304688, 3.5800781, -0.8310547, -0.8129883, 0.21862793, 2.8007812, -1.7226562, 2.7148438, -0.024429321, -2.3398438, 1.4277344, -2.0273438, 1.6103516, -0.6323242, -0.00982666, 1.3271484, -1.5820312, -0.94970703, -1.8994141, -0.31347656, -2.5566406, 2.0292969, 0.5415039, -2.2441406, 1.6523438, 1.9121094, -1.3359375, 1.6777344, 1.9482422, 1.3320312, -0.52001953, 0.8828125, -0.45092773, -0.71875, 1.8027344, -3.1601562, 4.296875, -0.22338867, -0.27246094, 0.7163086, 2.8007812, -0.5776367, 3.5214844, 2.484375, 2.3691406, 3.6074219, 1.7197266, 3.0117188, 0.7207031, 0.06781006, -0.22460938, -1.4238281, -0.022979736, 3.5664062, 1.9902344, 0.32617188, -1.8349609, 0.67822266, -0.76416016, -0.29370117, -1.1289062, 0.5864258, 0.19604492, -3.8808594, 2.3769531, 1.9853516, 1.9091797, -1.7607422, 0.67285156, 0.5053711, 0.030334473, -1.2675781, 0.47387695, 1.8857422, -1.5664062, 0.6826172, -1.0615234, -0.67529297, 2.1855469, -1.8974609, -0.46240234, -0.88427734, -1.3984375, -1.1757812, -1.1992188, 1.1328125, -0.07623291, 0.7939453, 1.1152344, 0.9165039, -0.41674805, -0.06188965, -0.19006348, 0.82714844, 1.3232422, 2.2050781, -0.52734375, -1.0947266, 0.5654297, -1.265625, -1.3095703, -3.5878906, 1.5703125, 0.32128906, 1.0585938, 1.8095703, -2.5800781, 1.4521484, 1.0761719, 1.6044922, -1.4726562, 2.6835938, -0.6220703, -1.7011719, -1.4472656, -0.26660156, 1.7646484, 2.6152344, 1.3671875, -0.8227539, 1.9140625, -0.20349121, 2.2519531, -1.0878906, 0.9477539, 1.0585938, 1.9775391, -1.578125, 1.7304688, -0.9272461, 1.1210938, -0.50927734, 1.0390625, 3.1230469, -0.68603516, -0.35302734, -1.2539062, 0.8457031, -0.058563232, -1.0234375, -1.5224609, -1.3076172, -1.3496094, 1.7402344, 0.5053711, -0.7915039, -0.28051758, 0.73339844, 3.3378906, -1.6787109, 1.8251953, 1.8203125, 1.2724609, 1.8222656, -2.2773438, -1.5478516, -1.4052734, 0.44018555, 1.3642578, 0.016860962, -1.1367188, 0.8725586, 0.98876953, -1.1210938, -0.11242676, 0.39282227, -0.6640625, -0.49047852, -1.8574219, 0.8022461, -0.72314453, -0.5810547, 0.7036133, 0.07928467, 1.0546875, 1.7890625, -1.0703125, -0.6220703, -0.57177734, -2.1855469, -0.53564453, -2.234375, 0.16784668, 1.7050781, 3.9355469, 1.0585938, 1.2460938, -3.1328125, -2.0683594, -2.3066406, -0.9067383, 2.84375, 1.3232422, -2.2382812, -0.2980957, 0.6435547, 1.6865234, -0.77978516, -0.69140625, 0.06530762, -1.25, 0.33984375, 0.14099121, 0.42626953, 1.3457031, -0.98876953, 0.06903076, 2.0859375, 1.3466797, 2.0371094, 1.1289062, -1.2685547, 0.26489258, -2.1699219, 0.4086914, 0.055145264, -1.046875, -2.1132812, 1.515625, 2.6738281, 1.6689453, -0.090148926, -2.1894531, -2.0097656]}, "B07NR9G7BC": {"id": "B07NR9G7BC", "original": "Brand: Masterbuilt\nName: Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel\nDescription: \nFeatures: 288 sq. inches of total cooking surface\n10,000 BTU stainless steel \"U\" shaped burner for maximum heat distribution\nFolding legs and locking lid make moving grill easy\nChrome-coated warming rack_Stainless steel construction and cooking grates\nPush-button ignition lights burner quickly and easily\n", "embedding": [-3.1503906, 1.1494141, 2.7265625, 0.29882812, -1.3515625, -0.21276855, 0.6738281, 0.6044922, -1.6572266, 2.3359375, 1.3535156, -1.4033203, 0.016555786, -0.91503906, 1.1396484, 0.53271484, 1.3876953, 0.77197266, 2.7207031, 0.35620117, -0.02645874, 0.099243164, 0.5678711, -2.2734375, 0.92871094, 0.26879883, 4.1992188, -4.8476562, -0.62646484, -1.8603516, 1.0507812, 0.74072266, 0.91796875, 1.7421875, -1.9003906, 0.010154724, -3.6191406, 0.6767578, -4.59375, -0.0061035156, -0.17236328, -1.1455078, 1.7626953, 0.5336914, -2.6582031, 0.46533203, 0.37963867, 1.8447266, -2.2851562, -0.9814453, 1.6132812, 2.1953125, 0.24938965, 0.89746094, -0.7163086, 1.1191406, -0.4177246, -1.8310547, 1.0419922, -1.2617188, 2.0390625, -1.4716797, -0.828125, -0.73046875, -1.0195312, 1.2158203, -0.23498535, -0.20654297, 0.38720703, 0.35083008, 0.10723877, -0.8769531, -0.5126953, -0.94384766, 0.17919922, -2.3457031, -3.7871094, 0.18066406, 0.76123047, -1.9775391, -1.7001953, 2.6796875, 0.4855957, -1.3007812, -0.22021484, -0.0009069443, 0.07336426, -1.1806641, 2.0546875, 1.4101562, -0.5371094, 1.1445312, -2.4160156, -3.3125, 1.9345703, 0.1381836, -0.19763184, 1.2197266, 0.4724121, 1.6523438, -0.3828125, 1.6904297, -1.7050781, 0.093444824, -1.9013672, -0.9902344, 0.6254883, 0.8105469, -2.8828125, 0.21191406, -1.8828125, 0.6381836, 0.77490234, -0.7089844, 0.5644531, 1.9013672, 0.35083008, 1.1582031, 1.8535156, 2.859375, 3.5742188, -1.03125, -0.40698242, 0.0625, -0.59375, 2.1542969, -0.5986328, 3.0175781, 4.5859375, -1.9111328, 0.81396484, -1.7246094, 2.1191406, 0.6669922, -1.1328125, -1.6386719, -1.6298828, -0.56689453, -3.3222656, 0.37304688, -0.8955078, 2.0761719, 0.60546875, -1.2265625, -2.9804688, -1.7851562, 1.4990234, -0.28857422, -1.7617188, -0.5078125, 0.32470703, -1.5927734, 1.1894531, -0.43896484, 0.88427734, -1.1123047, -0.78808594, -0.38745117, 3.4609375, 2.3613281, 1.8945312, -1.1660156, -2.1484375, 0.7558594, -0.37597656, -1.7148438, -0.8798828, 2.0820312, 0.029724121, 1.6923828, -0.51708984, -1.7158203, 0.4753418, -1.0585938, 1.09375, 0.45898438, 0.41992188, 3.4355469, -0.30004883, -1.1210938, 0.86621094, -3.0019531, 0.44726562, 1.71875, 0.9550781, -3.8515625, 0.22973633, 0.07366943, 1.5585938, -1.3359375, 0.111328125, 1.7314453, 0.97802734, 0.52978516, 0.43847656, -0.6567383, -1.9296875, -3.8105469, 1.9091797, -0.5107422, -1.2158203, -0.35131836, 0.10321045, -1.0039062, -1.2246094, -2.8457031, -1.6210938, -1.59375, 1.4804688, 2.7753906, 0.88623047, -2.2734375, 0.72558594, -2.1542969, 0.8823242, -3.2675781, 0.22595215, 0.88378906, 1.4648438, 2.7441406, -0.9848633, -0.9213867, 0.7163086, 2.109375, 0.13330078, 1.5498047, 0.6533203, 1.0195312, -1.3662109, -1.1904297, 2.2109375, 1.3847656, 0.30273438, 1.6845703, -0.8256836, 2.1074219, 2.9277344, -1.8203125, -0.52783203, -0.6323242, 1.2949219, -0.37719727, 0.5683594, -2.6523438, 0.11804199, -0.1126709, -2.7207031, 0.69677734, 1.5488281, 0.26660156, -1.3271484, 0.6738281, 0.5205078, 1.1308594, -1.9228516, 1.4814453, -0.79541016, -1.0976562, -1.0810547, -3.5644531, 1.2177734, 0.13305664, -0.7705078, 0.26538086, 0.19702148, -0.79296875, 5.1367188, 1.4853516, -2.703125, -1.3339844, 2.125, 0.44995117, 1.9648438, -0.69140625, 1.8535156, 1.8779297, -2.0800781, 3.2109375, 1.1796875, 0.90625, 0.0021476746, 0.13659668, 2.7558594, -2.9257812, -1.3300781, 0.11968994, 1.59375, 0.5444336, -2.0097656, 0.8198242, 4.7460938, 1.3603516, -0.75390625, 3.2890625, -1.6972656, 0.64501953, 2.6132812, -1.34375, 0.5449219, -0.9033203, 1.5039062, 1.7460938, 0.5800781, 0.24401855, -1.7011719, -1.6367188, 0.25195312, -0.65234375, 0.30664062, 1.1044922, 0.3762207, -1.2128906, -2.6953125, 0.9892578, -1.4824219, -0.54345703, 2.0683594, -3.3027344, 1.4941406, 0.46777344, 0.7949219, 1.0654297, -0.85546875, -0.9082031, 1.2138672, -0.1661377, 1.5283203, 1.8710938, 1.3867188, -1.2070312, -0.17089844, -0.22497559, 1.0947266, -1.1044922, -2.3300781, 0.17077637, -3.2070312, -3.1855469, 1.2148438, 0.3864746, 1.2001953, 1.8378906, -3.5976562, 0.14562988, -1.1630859, -3.2246094, -0.9482422, 0.12939453, -0.46801758, -1.1484375, -0.36791992, 1.1757812, -0.21838379, -4.6679688, 0.59228516, 0.7895508, -0.2915039, 0.5932617, 1.3164062, -0.38745117, -0.4638672, -0.4501953, 0.34814453, 0.8251953, 1.0029297, -1.3037109, 0.6694336, -3.3476562, -0.46533203, -2.5449219, -0.69384766, -1.0332031, -0.24255371, -1.15625, -2.3613281, -1.2753906, 0.38476562, 3.2382812, 0.36279297, 1.3212891, -0.26464844, 0.4892578, 2.3632812, -0.75439453, -2.203125, -0.8154297, 1.4228516, -1.8515625, -1.2949219, -2.6328125, 0.7807617, -0.73583984, 0.59765625, -1.1445312, 1.5791016, -2.1015625, 1.2431641, -1.9414062, -0.38085938, -0.4921875, 1.1220703, 0.2467041, -0.6455078, -2.4707031, 0.44335938, -1.3027344, -1.1748047, 1.0908203, 1.4902344, 0.20275879, 1.5009766, 0.43164062, -1.3447266, 0.98828125, -2.0898438, -2.8632812, 3.5019531, -0.23059082, -1.8808594, 0.80859375, -1.5224609, -2.2851562, -1.6279297, -1.7587891, 3.4570312, -0.3881836, 2.625, -0.2006836, 0.2475586, 0.33666992, -0.7285156, -0.08026123, -1.1044922, -1.1503906, 1.6484375, -1.8203125, -2.2773438, 1.1669922, 3.0878906, -2.2011719, -0.6899414, 2.6816406, -0.12902832, 0.5029297, 1.3398438, 0.4934082, -0.017791748, -0.60498047, 4.3242188, 1.2529297, -0.97314453, 1.1083984, -1.3349609, 0.9033203, 0.59228516, 2.046875, 2.9296875, 0.8183594, 2.578125, 0.10626221, 1.4052734, -2.671875, 0.30615234, 0.34936523, 1.7246094, 0.9892578, 2.234375, -1.7626953, -0.033111572, -0.328125, 0.6611328, 0.1899414, -2.1679688, -0.47753906, 2.1035156, -0.5288086, 0.23535156, -0.22265625, 1.0361328, 0.5541992, -1.1826172, 1.2138672, -1.2714844, -1.9775391, 1.8359375, -0.4560547, 0.041412354, -2.2421875, 1.4453125, -0.3935547, -0.20861816, 0.4560547, 2.7773438, 0.32177734, -2.1933594, 0.025344849, -0.7583008, -0.34155273, 0.7753906, -0.5209961, -1.9326172, 0.61328125, -1.0351562, 1.2236328, 0.55859375, -0.8725586, 0.8535156, -0.13024902, 0.12658691, -1.0634766, 0.72802734, 1.0849609, -0.050201416, -2.6015625, 0.37353516, -3.8671875, 0.49365234, 1.0126953, -2.203125, -0.5620117, 2.1210938, 0.39160156, 1.9902344, -1.0410156, 2.4492188, -0.8066406, -1.4189453, 1.1162109, -3.2050781, -1.0566406, -3.9824219, -2.5332031, 0.2836914, -2.7675781, -0.51220703, 1.4189453, -0.23339844, 0.19152832, 1.0185547, -0.38183594, -3.1367188, -1.2871094, -1.0527344, -0.3540039, -2.9726562, -1.1445312, -0.31567383, 1.4599609, -1.8261719, -1.2958984, 1.1689453, 1.5585938, 2.9375, 1.0097656, -2.6894531, 1.1875, -0.8901367, 0.59277344, -0.87060547, -0.57714844, 3.1875, -0.77246094, -0.11853027, -3.1347656, 2.1132812, 0.5605469, -1.1835938, 0.46899414, 1.8076172, -0.7167969, -2.2070312, 0.38500977, 0.9091797, 2.0898438, -1.5703125, -2.1679688, -1.1972656, 0.08984375, 0.48779297, 0.1619873, 0.2709961, 0.09643555, -2.3066406, 0.06854248, 1.2646484, 1.2099609, 2.6191406, 0.3725586, -0.6489258, -0.14819336, -0.0635376, -2.0898438, -2.0996094, 0.2783203, -0.41259766, -1.875, 0.54296875, -1.3076172, 0.05999756, -3.2109375, -0.89941406, -2.2421875, 2.9394531, 2.3691406, 2.4003906, 3.5273438, -0.6777344, -1.8515625, 1.5136719, -0.6982422, -1.2001953, 1.8076172, 0.052886963, -0.19152832, 2.4414062, 1.0888672, -2.8300781, 0.27661133, 1.9462891, -2.1757812, -1.0683594, -1.2480469, 0.64453125, -0.46899414, -1.0615234, 1.2910156, -1.6210938, 2.0195312, -0.29101562, -0.5488281, -0.99609375, 0.5917969, -0.023635864, -0.7050781, -0.2854004, -2.2402344, 2.9375, 1.5576172, 1.1308594, -1.5439453, 0.3383789, 0.11047363, 1.7060547, -1.3134766, 0.6738281, -0.44067383, 1.3183594, -1.0097656, -1.3984375, 0.15515137, 1.5634766, -0.5307617, 4.875, 1.9101562, -0.9199219, 2.8105469, 1.1171875, -3.9375, 0.10601807, 0.55566406, 0.6425781, 2.2871094, 0.69921875, -2.3339844, -1.3320312, 2.9570312, -0.6113281, 0.3935547, -0.31396484, -0.953125, 0.17675781, -3.9394531, -0.72558594, -0.7207031, 0.0635376, -1.5751953, -1.5654297, -0.13598633, -0.3347168, 2.4453125, 3.0996094, -1.1748047, -1.8378906, 3.0429688, -0.6123047, -0.21362305, -0.10546875, 1.125, -1.8535156, 0.0597229, 3.3515625, 2.1757812, 1.6923828, 0.9448242, 0.35913086, -0.671875, 2.2675781, -1.4833984, 4.4140625, -1.3808594, -1.4785156, 2.6621094, -1.6533203, -0.3173828, -3.0292969, -0.030883789, -2.8027344, 1.0595703, 2.703125, -0.1730957, -0.6245117, 0.5214844, -0.96728516, -3.3105469, -0.7583008, -0.23400879, 0.5258789, 0.72998047, 1.4804688, -2.0078125, 0.10491943, 0.8300781, -0.28808594, -1.1923828, 0.6689453, -0.24291992, -1.2783203, 0.8095703, 0.2705078, -0.86376953, -0.57910156, 1.9316406, 1.0253906, -0.7817383, -3.4902344, -2.4257812, 0.90625, -0.64697266, 0.82177734, 1.6210938, 0.7885742, 0.61621094, 1.5839844, 0.796875, -1.6699219, 2.3242188, -0.42114258, -1.1962891, 2.2792969, -0.46289062, -0.68359375, 0.008232117, -2.2617188, 0.61621094, -1.4296875, -0.17126465, 0.43725586, -0.23291016, -1.4228516, -0.42041016, -0.2878418, -0.17871094, -0.052734375, 0.5957031, 0.70996094, 1.7021484, -0.016189575, -0.43725586, -2.3769531, -2.4804688, -0.05883789, -2.6523438, -1.0507812, -1.6210938, 0.22058105, 2.8105469, -0.5131836, -0.37524414, 2.3710938, 0.6899414, -0.94140625, 0.7988281, -1.6035156, 2.6875, 2.4667969, -0.76416016, 0.27978516, -1.4335938, -0.5644531, 0.7495117, 1.6328125, -1.5166016, 0.33007812, -1.8349609, 0.6176758, 0.5722656, 1.7236328, 1.4990234, -0.29614258, -1.0625, 1.5009766, 2.9179688, -1.0214844, 1.9609375, 0.19567871, 2.3671875, -0.17785645, 5.8867188, 0.10040283, -1.0498047, 1.8095703, -2.4316406, 0.4416504, -1.0322266, -1.3535156, 0.70458984, -2.953125, -1.8535156, -1.8613281, -1.8076172, -3.1933594, 0.46801758, 1.6064453, -0.63427734, -0.19067383, 1.4248047, -0.3317871, 2.6582031, 2.484375, 1.0263672, 1.0244141, 2.3183594, -0.104003906, -0.84765625, 1.0439453, -2.4179688, 2.6796875, 0.7260742, -0.5830078, -1.8867188, 1.4599609, 0.5488281, 2.3984375, 2.7519531, 0.44677734, 2.7246094, 0.5205078, 2.8457031, 0.27490234, 1.3515625, 3.6328125, -0.1550293, 0.017242432, 2.0019531, 1.4960938, -0.08203125, -1.5537109, 0.5810547, -1.8613281, -1.0908203, -1.7285156, -0.4387207, 1.5820312, -1.4765625, 0.7368164, -0.42529297, 2.109375, -1.2460938, -0.8232422, -1.2070312, -0.31225586, 0.33691406, -0.12243652, 2.5976562, -1.0185547, 1.5273438, -0.14221191, -0.47753906, 1.4570312, -2.2988281, 0.61816406, 0.11541748, -0.6074219, -0.7216797, 0.08306885, 0.67041016, -0.65771484, 0.076538086, 0.10015869, 2.0390625, 0.3173828, -1.1601562, -1.7636719, -0.72314453, 1.9541016, 1.6337891, -0.00063467026, -0.035095215, 0.10687256, 0.4206543, -1.4785156, -2.984375, 2.6542969, 0.74853516, 1.4765625, 0.58203125, -2.296875, 1.9462891, -0.5566406, 1.3349609, -1.2128906, 0.103271484, -0.8989258, -2.8554688, 0.06008911, 1.4287109, 0.17700195, 2.3867188, 0.86816406, -0.68066406, 3.2226562, 0.8935547, 1.2861328, 1.1689453, 2.0058594, 0.7836914, 1.71875, -0.93896484, 2.1679688, 0.18811035, -0.89501953, -0.92578125, 2.5019531, 2.234375, 0.0045700073, 1.2158203, -2.2988281, 0.21557617, 0.5566406, -0.8149414, 0.0803833, -1.4277344, -0.8666992, -0.79003906, 0.47094727, -1.2021484, -2.7148438, 3.3046875, 1.1933594, 1.1064453, 1.6787109, 0.6225586, -0.83251953, 2.3632812, -0.66503906, -0.2244873, -0.32177734, 0.35913086, 0.20996094, -0.1751709, -2.5625, -0.17895508, 2.1171875, 1.59375, -0.99072266, -1.5126953, -1.6503906, 0.7885742, -1.2138672, 0.6933594, 0.27416992, -1.3896484, 1.7851562, 0.12194824, 0.048675537, 0.8198242, -0.5239258, 0.19543457, -2.4570312, -1.7822266, -0.11657715, 0.48779297, -0.46240234, 0.6489258, 1.9404297, 0.2902832, -0.24255371, -1.0058594, -3.5527344, -1.1523438, -1.4462891, 3.8730469, -0.018325806, -1.7333984, -0.70996094, 1.3974609, 2.0898438, -0.9536133, -1.0302734, -0.26757812, -1.5351562, -0.082092285, 0.5942383, 0.3852539, 0.96484375, 1.4960938, 0.19873047, 2.0214844, -0.92578125, -0.6123047, 2.1894531, 2.984375, -0.32177734, -3.2265625, 0.58691406, 0.13134766, 0.0051574707, -1.2373047, 0.5385742, 1.4863281, 1.4345703, -1.0449219, -2.3515625, -1.0214844]}, "B07JZV24HV": {"id": "B07JZV24HV", "original": "Brand: Char-Broil\nName: Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Power Source: Propane/ liquid petroleum gas. The propane tank is not included.\nExclusive Stainless Steel finish for increased style and durability\nReliable electric ignition to fire up your grill and 10, 000 BTU side burner\nPorcelain-coated grease pan is durable and can be removed for easy cleaning\nStainless Steel burners emit flame from the top to allow for even cooking\n", "embedding": [-2.3535156, 0.5961914, 2.1308594, 1.0507812, -0.0049858093, -1.4404297, 1.0341797, -1.5595703, 0.7636719, 0.8852539, 2.0820312, -1.4150391, 2.0371094, -2.4726562, 0.048675537, 0.013160706, 1.3398438, 1.2919922, 1.3837891, 0.0056991577, -0.44702148, 0.80078125, 1.0957031, -0.7397461, 0.16821289, 1.5458984, 3.2949219, -2.3632812, 0.27124023, -3.0605469, 1.5683594, -0.73339844, 0.028656006, 1.3994141, -2.9160156, -1.6328125, -1.4658203, 2.1875, -3.8769531, 0.9716797, -0.30615234, 0.13952637, 1.6552734, -0.030776978, -2.4296875, 0.013938904, -0.16821289, 1.0839844, -1.6845703, -1.4169922, 1.4902344, 2.0878906, -0.6621094, 0.58935547, -1.9111328, 1.6044922, 0.29516602, -0.46044922, 1.1435547, -1.2207031, 2.5332031, 0.44848633, -2.4335938, -0.5932617, -2.0761719, 1.2207031, -0.11437988, 0.7265625, -0.67626953, 0.9589844, 2.6386719, -0.21643066, -0.5058594, 0.23071289, 0.6586914, -1.0117188, -3.4980469, 2.546875, 0.16333008, -0.6479492, -1.2392578, 2.0019531, -0.2211914, -2.3007812, -0.14685059, 0.16003418, -0.095703125, -1.3613281, 1.7392578, 0.77734375, -0.7470703, 2.2148438, -0.1665039, -2.1914062, 1.765625, -0.2401123, 0.87158203, -0.2680664, 0.33618164, 1.6748047, -1.3349609, -0.7871094, -1.6757812, -1.015625, -3.0839844, -1.1464844, 1.4814453, 0.49365234, -3.5117188, 0.5258789, -1.7666016, 0.08001709, 1.4599609, 1.1738281, 0.7451172, 1.4384766, 0.17089844, 3.1367188, 0.85009766, 0.33544922, 5.078125, -0.5102539, 1.0615234, -1.0253906, -0.4958496, 1.453125, -1.3398438, 1.4716797, 5.390625, -1.9277344, 0.8984375, -1.4003906, 3.1835938, -0.09124756, -2.0078125, -1.640625, -2.4804688, -1.5009766, -3.7832031, 1.1630859, -2.2480469, 2.0429688, -0.52246094, -0.3227539, -3.25, 0.6035156, 0.7709961, 1.3681641, 0.4333496, -2.6855469, 1.0957031, -2.7128906, 1.2558594, -1.6132812, 2.0996094, 0.3869629, -2.3984375, -2.2089844, 4.3046875, 0.67089844, 1.0947266, -1.6699219, -0.5371094, 2.6601562, -0.6230469, -0.34887695, -0.97314453, 0.57421875, -0.77978516, 0.79541016, -0.09979248, -1.4990234, -0.98535156, 0.29101562, 0.7207031, -0.5546875, 0.3232422, 3.2265625, -0.3486328, -0.6958008, 0.26220703, -3.7460938, 0.8833008, 0.30810547, 0.52734375, -1.7431641, 1.2529297, 0.98535156, 0.020828247, -0.24584961, 0.73095703, 0.07751465, -0.18762207, -0.19946289, 0.44091797, -1.4755859, -1.0283203, 0.18933105, 0.92529297, -0.40844727, -1.0410156, -0.30273438, 0.30517578, 0.59814453, -1.4238281, -2.9335938, 0.13635254, -2.4140625, 0.3244629, 0.73583984, 1.8095703, -2.0625, 0.51171875, -1.4716797, 0.65771484, -3.0097656, 1.0019531, -0.73535156, 2.0410156, 2.6640625, 1.1103516, -0.7363281, 0.48510742, 0.52685547, -0.15222168, 1.8408203, -0.1381836, 0.99853516, -1.1357422, -1.7744141, 2.4199219, 0.09588623, -0.3876953, 0.019119263, -0.24816895, 1.2880859, 0.5761719, -0.29248047, -0.68847656, -0.7104492, 0.2467041, -0.4255371, 0.21118164, -2.59375, 1.4072266, 1.5732422, -1.1416016, 1.8046875, 1.6064453, 0.71777344, 1.1542969, -0.19311523, 0.7548828, 1.7763672, -1.4472656, 1.3847656, -0.79345703, 1.0126953, -1.2285156, -2.0390625, 1.671875, 1.8222656, 0.091552734, -1.3525391, 0.6508789, -1.0253906, 2.9980469, 2.2226562, -1.8369141, -1.7197266, -0.3334961, 1.0673828, 0.8779297, -2.6191406, 1.3056641, 2.8554688, -0.062561035, 4.1289062, 0.99121094, 1.5429688, 0.77734375, -1.1396484, 3.2949219, -2.7617188, -0.77246094, 1.1054688, 2.4648438, -1.0732422, -0.7265625, 0.52490234, 5.46875, -0.9145508, -1.8740234, 2.8105469, -0.6826172, 0.49487305, 1.1484375, 0.49536133, -1.4707031, 0.62109375, 2.90625, 0.5131836, 0.8339844, 1.8027344, -1.1972656, -1.3183594, 0.4802246, -0.8769531, -0.82910156, 2.0078125, -0.04776001, -0.023376465, -1.3828125, -0.019989014, -2.75, -1.7675781, 2.5605469, -2.3222656, 1.0224609, -0.00078582764, 1.1923828, 1.3164062, 0.13513184, -1.6445312, -1.0527344, 1.2587891, -1.0546875, 0.11090088, -0.40820312, 0.13110352, -0.40649414, -0.67089844, -0.18725586, -1.3886719, -2.5859375, 0.25073242, -2.5273438, -4.4179688, 0.8652344, -1.3164062, -1.3085938, 1.8974609, -2.1914062, 0.77001953, -1.1308594, -2.2675781, -1.3310547, -0.054595947, -0.76416016, -1.4414062, 0.70410156, 0.9692383, -0.3466797, -3.609375, -0.2770996, -0.44799805, -0.54296875, -0.7792969, -1.2041016, -1.8388672, 0.8588867, -0.121520996, -1.2460938, 1.5283203, 1.4179688, -1.3808594, -0.18811035, -1.8896484, 1.9501953, -3.3339844, 1.6650391, -1.1015625, 1.4716797, -3.40625, -2.6347656, -1.3300781, -0.113098145, 2.828125, -0.019119263, 1.2460938, 0.8598633, -0.36669922, 0.68408203, -1.0390625, -2.9042969, 0.5292969, 1.078125, -0.77978516, -1.7587891, -3.0351562, 1.0849609, -0.8588867, 0.31079102, -0.17077637, 0.37890625, -2.5957031, 0.8227539, -1.7167969, -0.35595703, -1.2685547, 0.98339844, -0.23706055, -0.9667969, -1.3261719, 0.8334961, -1.1181641, -0.9272461, -1.328125, 0.70751953, -1.4013672, 1.7597656, 1.7050781, -0.11883545, 1.8408203, -1.7421875, -3.2089844, 2.8261719, 0.5756836, -3.0488281, 2.6738281, -1.6445312, -1.3984375, -2.5078125, -1.3798828, 2.6308594, 2.9003906, 3.9179688, 0.77001953, 0.08355713, 2.4609375, 0.15966797, 0.52734375, -1.8476562, -1.0693359, 2.0996094, -2.0585938, -2.5878906, 0.33325195, 3.2578125, -2.5175781, -1.3007812, 3.0351562, 0.8227539, 1.7099609, 2.9023438, -0.69921875, -0.5234375, -0.9277344, 2.5527344, 1.1015625, 1.5058594, 0.84228516, -0.8486328, 0.59228516, 0.76416016, 0.8457031, 1.6923828, -0.77246094, 1.1035156, 1.3769531, 1.4082031, -2.3339844, -0.5214844, -0.93847656, -0.8823242, 0.36865234, 2.1738281, -1.6181641, 0.9667969, -1.1542969, -0.2602539, -0.3635254, -1.0927734, -1.0595703, 1.8583984, -0.48364258, 0.3569336, -0.43920898, -0.053649902, 0.68066406, -1.7304688, 0.6430664, -1.0703125, 0.17016602, 0.5488281, -0.18566895, 0.5625, -0.70947266, 0.8925781, -2.2617188, -2.1015625, -0.43481445, 2.9238281, -0.033599854, -1.6962891, 1.3886719, 0.9770508, -1.1542969, 2.078125, 0.76123047, -2.2460938, 2.5371094, -0.86328125, 0.90771484, 0.13293457, -2.6523438, 0.03604126, -1.0380859, 0.96435547, -1.0732422, 0.91845703, 1.3222656, -0.007160187, -3.0566406, -0.019851685, -3.7441406, -0.5024414, -1.0107422, -1.5683594, -3.6152344, 2.1367188, 1.7988281, 1.3359375, -0.31420898, 2.453125, -0.13537598, -0.3984375, 1.6767578, -3.3300781, -0.91064453, -3.3867188, -3.3769531, 1.0292969, 0.578125, -0.9277344, 2.2792969, -0.62158203, -1.2841797, 2.546875, 0.34960938, -2.8613281, -0.48779297, -0.82910156, -0.09283447, 0.73535156, -0.3713379, 2.6171875, 1.3193359, -1.2304688, -3.0449219, -0.16271973, -0.43115234, 0.9902344, 2.6347656, -2.0195312, 1.2744141, -1.7607422, 0.38745117, -0.88623047, -2.0664062, 0.27563477, -0.4567871, 0.12359619, -3.1015625, 0.7167969, 2.3222656, 0.39819336, 2.1679688, 1.875, 1.3007812, 0.36743164, -1.2587891, 0.6640625, 1.4443359, 0.70996094, -3.4394531, -2.0234375, -0.33032227, 0.84033203, -0.22741699, 1.6074219, -0.7128906, -1.6044922, 0.20910645, 0.34716797, 0.46533203, 2.7128906, 0.0069770813, -2.171875, -0.8515625, -0.060638428, -1.578125, -0.9819336, -0.17419434, 1.5859375, -0.3310547, -0.049041748, -2.0449219, 0.42016602, -0.98779297, -1.1201172, -4.1523438, 2.6113281, 3.9433594, 1.9394531, 2.7734375, -1.6757812, -0.15258789, -1.0605469, -0.3671875, -0.96533203, 0.99560547, -0.41430664, -0.10021973, -0.16503906, 0.75878906, -2.5097656, -1.8066406, 1.4931641, -2.3515625, -1.6416016, -2.1660156, 0.79345703, -2.1542969, -0.67041016, 1.0322266, -1.078125, 3.2480469, 0.32592773, -1.1650391, 0.041625977, 0.47485352, -0.3786621, -0.41918945, -1.2636719, 1.9550781, 1.3115234, 2.0605469, 1.8339844, -0.7524414, -0.4338379, -1.7705078, 2.5839844, 0.8930664, 0.9995117, 0.44995117, 0.7866211, -1.2841797, -0.8305664, 1.2275391, 4.1054688, 0.8232422, 3.5644531, 2.0898438, -2.9804688, 1.8710938, 0.49194336, -3.7128906, -0.41601562, -1.1513672, -1.2734375, 1.3808594, -1.0800781, -4.4375, -0.57470703, 2.0664062, -0.41723633, 1.0615234, -1.1611328, -0.6508789, -0.67333984, -2.0488281, -1.0478516, -0.92626953, 0.58691406, -0.38134766, 1.3583984, -0.02331543, -1.6230469, -0.11633301, 3.0820312, -0.29101562, -0.07904053, 1.7646484, -0.32006836, 1.2792969, -0.828125, -0.6201172, -1.6953125, 0.44750977, 2.2324219, -0.7807617, 2.8847656, 0.5498047, 2.4824219, -2.46875, 0.26416016, -1.1386719, 3.5097656, -2.1015625, -0.7495117, 1.6787109, -3.3046875, 1.0839844, -2.9335938, 0.74902344, 0.18041992, 1.5576172, 1.4365234, -1.0615234, -1.3017578, -0.36816406, -2.03125, -5.125, -1.8535156, 0.2454834, 1.6484375, 0.6586914, 1.2294922, -0.5839844, 1.4785156, -0.6508789, 0.101867676, -1.2763672, 0.76660156, -1.0322266, -0.06732178, -0.3544922, 0.37524414, -1.2451172, 1.2558594, 0.67871094, 1.4140625, 1.7197266, -2.2734375, -2.015625, 0.578125, -2.4375, 0.73535156, 0.9921875, 0.65234375, -0.7558594, 0.65527344, 0.6508789, -2.484375, 1.9892578, 0.48950195, 0.140625, 2.2734375, -0.85546875, -1.0419922, 0.70751953, -1.9658203, -0.09820557, -0.45410156, 0.31445312, 0.36889648, -0.5683594, 0.18823242, 0.47875977, 0.049560547, -0.44848633, 1.4238281, 0.38745117, 1.6132812, 1.2685547, -1.71875, 0.11340332, -2.3984375, -1.921875, 0.3774414, -2.0410156, 0.3527832, -2.0234375, 0.92089844, 0.5488281, 0.1116333, 0.5463867, -0.46044922, -0.59228516, -0.50878906, 1.1191406, -1.2324219, 3.9394531, 3.6074219, -1.5966797, -2.1308594, 0.111328125, 1.4775391, 1.9716797, 0.65478516, -1.0595703, 0.6958008, -0.052124023, 1.2041016, 0.16699219, 2.140625, 0.9404297, 0.43188477, -1.0419922, 1.2080078, 3.3359375, 0.1574707, 0.019165039, 0.98339844, 0.5888672, -0.18579102, 3.7148438, 0.9868164, -3.4082031, 1.7294922, -2.0898438, -0.7265625, 1.4746094, -0.93359375, -0.92578125, -3.0449219, -2.0644531, -1.8037109, -0.8261719, -2.7128906, 0.96484375, 1.5117188, -1.6552734, 1.2451172, 1.0693359, -2.2148438, 2.4492188, 2.3046875, 2.0097656, -0.82128906, -0.01586914, 0.4104004, -0.020248413, 1.9082031, -4.4609375, 1.4960938, -0.42626953, -0.4362793, -0.61328125, 2.7402344, 0.43139648, 1.7304688, 1.5888672, 2.0214844, 3.2792969, 2.0664062, 3.5117188, -0.10345459, 2.3359375, 1.8466797, -0.7104492, 0.2409668, 2.2441406, 1.6289062, 0.2993164, -1.0136719, 1.8300781, -0.9609375, -2.2714844, -0.6767578, 1.3769531, 0.91259766, -3.4023438, 2.1523438, 0.32421875, -0.34643555, -2.1171875, -1.1210938, -0.4716797, -2, -0.015403748, -0.31396484, 3.8554688, -0.46923828, 1.6679688, 0.09106445, 0.6591797, 1.4833984, -4.6367188, 0.5708008, 0.06744385, -0.25830078, 0.203125, -2.3164062, -0.039123535, 0.7192383, 0.7163086, 0.39501953, 1.7568359, 0.44604492, 0.7861328, -2.9824219, 0.030166626, 0.99902344, 2.5410156, -0.3166504, -1.7021484, 1.6757812, -2.140625, -2.1152344, -3.3222656, 2.9765625, 1.6328125, 3.3378906, 0.92333984, 0.28100586, 2.7148438, -1.4326172, 1.9814453, -2.1503906, 0.76123047, 0.4963379, -3.5898438, -0.5283203, 0.20568848, -0.52978516, 3.1933594, -0.011833191, -1.5234375, 2.2929688, -0.5957031, 1.5292969, 1.2597656, 1.0185547, 1.2050781, 0.27612305, 0.78466797, 2.5410156, -0.8642578, -0.49243164, -0.71728516, 1.8515625, 0.89160156, 0.45385742, 0.9433594, -1.7705078, 1.1806641, -1.1171875, 0.87841797, 0.29907227, -2.0878906, -2.1367188, -0.9145508, 0.5180664, -0.42333984, -1.7685547, 2.78125, 0.8510742, -1.2412109, 0.6933594, 1.6767578, -1.0361328, 2.46875, 0.16577148, -0.71484375, -0.42797852, 0.058685303, 1.1591797, 0.47143555, -0.7607422, 0.24731445, 0.6176758, 0.69970703, -0.1772461, -0.12841797, 0.54833984, -1.234375, 0.14294434, 0.82373047, -0.89697266, -1.1865234, 2.2148438, -0.19311523, -1.9775391, 1.7675781, -0.20874023, 0.8261719, -2.9316406, -2.0410156, -1.4755859, 0.40185547, -1.2041016, 0.31860352, 1.9462891, 0.15490723, 0.7680664, 0.18896484, -3.8007812, -0.4086914, -2.3046875, 1.3056641, 0.2861328, -1.2460938, 0.7089844, -0.5048828, 1.9746094, -0.55810547, -1.5996094, 1.4228516, 0.5751953, 0.11413574, 0.24475098, 2.0292969, -0.43164062, 1.7324219, -0.105041504, 2.6816406, 1.7207031, -0.19799805, 0.17272949, 1.5283203, 0.08013916, -1.0507812, -0.022598267, 0.12927246, -0.4699707, 0.4638672, 1.2861328, 1.8134766, 0.34716797, -0.12145996, -1.4951172, -3.46875]}, "B00BFPMLI8": {"id": "B00BFPMLI8", "original": "Brand: Char-Broil\nName: Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill\nDescription: \nFeatures: Road worthy and built to travel easy\nCast aluminum firebox and lid with dual stainless steel latches and temp gauge\nHigh-impact frame with legs and carry handles\nNo flare-up TRU-Infrared cooking system\n200 square inch stainless steel grilling grate\n", "embedding": [-2.3691406, 0.43920898, 1.8222656, -0.052093506, -1.3867188, -0.69677734, 0.8198242, -1.65625, -1.1328125, 1.078125, 1.3847656, -1.4404297, 1.0136719, -2.9003906, 0.14941406, 0.072265625, 1.6240234, 0.7338867, 2.7519531, -0.1282959, -0.42797852, 2.2402344, 1.0527344, -0.19970703, 0.021469116, -0.35009766, 3.7929688, -2.1582031, -0.13024902, -3.0332031, 2.2558594, 0.6347656, 0.7001953, 1.8515625, -1.1933594, -2.28125, -3.0839844, 1.9316406, -2.2871094, -0.26000977, -1.1279297, -0.17541504, 1.59375, -1.234375, -2.6308594, -0.85058594, 0.7895508, 0.8598633, -1.5253906, -1.2402344, 1.4726562, 0.53515625, -0.52490234, 0.79345703, -1.5859375, 1.5175781, 0.6640625, -0.6113281, 0.6123047, -0.96875, 1.0458984, -0.81396484, -1.9267578, -0.16333008, -1.2998047, 0.54052734, -0.17443848, 1.109375, 0.54541016, -1.4755859, 2.5429688, -0.0008702278, -1.2783203, -0.09338379, 1.0947266, 0.13208008, -2.2558594, 0.7446289, 0.55078125, 0.09051514, -0.9013672, 3.4941406, -0.7060547, -1.5478516, 1.2753906, 0.18969727, -0.5776367, -1.0751953, 2.9296875, 1.6865234, -0.44433594, 2.9082031, -0.8666992, -3.0488281, 0.6777344, -0.29541016, 1.8125, 1.3925781, -1.1914062, 1.9091797, 0.59228516, -1.2490234, -0.9423828, -0.69384766, -2.8007812, -1.0478516, 0.5180664, -0.6699219, -1.4677734, 1.9560547, -2.8007812, -0.5058594, 1.0439453, 1.2724609, 0.18920898, -1.0566406, -0.49658203, 3.4296875, 0.86865234, 2.359375, 3.796875, -0.020401001, 0.43603516, -1.1806641, -0.6479492, -0.25073242, 0.49658203, 0.70703125, 3.9296875, -0.5205078, -0.21911621, -0.017410278, 2.7636719, 1.0771484, -2.5957031, -2.4179688, -2.515625, -3, -3.2753906, -0.87841797, -2.7871094, 0.17651367, 1.1005859, 0.5341797, -2.3457031, -1.1123047, 0.6489258, 3.1660156, 0.48461914, -1.8339844, 0.04232788, -3.0761719, 1.0976562, -1.4619141, 1.9589844, 1.3808594, -2.5566406, -1.1298828, 2.8066406, 1.5341797, 2.2988281, -0.62646484, -0.80029297, 0.82177734, 1.3183594, -1.4277344, -0.9301758, 1.0703125, -1.6328125, 1.0683594, 0.2019043, -2.4121094, -0.7792969, 0.3400879, 0.91503906, -2.4140625, 0.18762207, 1.7509766, 0.6748047, -0.42871094, -0.5263672, -0.9638672, 0.04977417, 1.8203125, 0.13745117, -1.4511719, -1.4853516, 0.99316406, -0.7988281, -1.6074219, 3.2070312, -0.5732422, -1.2578125, 0.09265137, 0.33789062, -0.9008789, -2.0585938, -0.33618164, 1.0927734, -1.1503906, -1.3935547, -0.06970215, -1.3398438, 0.30688477, -1.8310547, -4.109375, -1.2470703, -1.4453125, 0.16027832, 1.625, 0.49926758, -1.4931641, 1.3535156, -0.25195312, -0.44799805, -2.2851562, 1.1396484, 1.2207031, 2.2207031, 0.57910156, -0.24401855, -0.484375, -0.38989258, 3.1855469, -0.9824219, 2.7070312, -0.6879883, 0.07727051, -1.3505859, -1.9169922, 2.9511719, 1.0703125, -0.5258789, -0.83154297, 0.061431885, 2.6269531, -0.18066406, 0.65234375, -1.8300781, 0.93896484, -1.0771484, -0.13598633, 0.44018555, -1.1855469, -0.15002441, 0.5419922, -1.5556641, 3.0292969, 1.3583984, 0.36206055, 0.5991211, 1.0458984, 1.3261719, 2.3085938, 1.3095703, 2.3671875, -1.4248047, 1.9033203, -2.5058594, -2.3867188, 0.75634766, 1.7578125, 0.60302734, 0.5620117, -0.012535095, -0.6879883, 2.9941406, 2.5058594, -1.1396484, -0.61865234, 0.47998047, 1.8164062, -0.22827148, -0.11529541, 2.7050781, 1.6914062, -0.8334961, 2.2480469, 0.3371582, 1.6318359, 1.1289062, -0.29418945, 2.1640625, -1.9472656, -1.5556641, 0.038635254, 0.44458008, -0.6982422, -0.55078125, 1.7646484, 3.7558594, 0.68652344, -2.9316406, 4.3164062, -1.6660156, 0.9091797, 2.2441406, 0.7451172, -0.35766602, 0.6669922, 3.4179688, 1.4375, 0.09375, 2.9257812, -0.88183594, -0.65771484, 1.5273438, -2.578125, -0.3947754, 2.6269531, -0.05682373, -0.040924072, -1.6464844, 0.08660889, -2.4746094, -2.1464844, 1.8857422, -2.4824219, 0.88183594, 2.1855469, 0.09661865, 0.45581055, -0.4025879, -1.5214844, -1.4199219, 1.7089844, -0.29223633, -0.16723633, 1.2998047, -0.21838379, -2.1386719, 0.59277344, 0.2244873, -0.97558594, -1.1152344, -1.0644531, -2.0371094, -4.0273438, 1.9560547, -0.63427734, -3.0566406, 2.125, -0.6748047, 0.20129395, -0.7963867, -4.1367188, 0.3479004, 0.89746094, -1.1171875, -2.1503906, 0.18823242, 0.4572754, 0.40600586, -4.09375, 0.33203125, -0.9604492, -0.39672852, -0.80371094, -3.5273438, -0.44628906, 1.4296875, -0.48754883, -1.4970703, 1.5654297, 0.32470703, -1.5029297, 0.18713379, -1.7431641, 0.5493164, -2.9121094, 0.3305664, -1.7246094, 0.45166016, -3.1308594, -2.5253906, 0.9638672, -0.24658203, 2.4082031, 0.05722046, 1.0087891, 0.6386719, -1.4296875, 0.7866211, -0.91259766, -3.2558594, -1.4296875, -0.050964355, -1.4580078, -4.2109375, -3.5546875, -0.73779297, 0.4609375, -0.023269653, 0.88720703, 0.17443848, -1.9033203, 2.0683594, -2.4042969, -0.99658203, -0.12878418, 0.61572266, 0.0104522705, 0.3930664, -0.25048828, -0.94628906, -1.75, -1.4521484, -1.2431641, 0.546875, -0.072265625, 1.2353516, 0.9863281, -0.46191406, 1.2099609, -0.35131836, -3.1328125, 1.6464844, 0.24047852, -1.1015625, 2.3574219, 0.2854004, -1.6191406, -3.125, 0.1796875, 3.2207031, 2.7519531, 3.5410156, 2.0136719, -0.3696289, 2.578125, 1.6181641, -1.5615234, -0.56347656, -0.004852295, 2.40625, -2.1582031, -1.6210938, -0.51464844, 2.1542969, -2.1679688, -1.7626953, 3.3398438, 0.4255371, 2.1503906, 1.3935547, -0.40307617, -0.26245117, -0.043151855, 2.2480469, 0.6401367, 0.13793945, -0.17163086, -1.0605469, -0.9926758, 1.4375, 1.5146484, 1.5498047, -0.2668457, 2.2304688, 1.3027344, -0.38305664, -0.39916992, 0.58447266, -0.3166504, 0.5805664, -0.109436035, 1.2011719, -0.6142578, 0.42163086, -0.66259766, -0.19909668, 1.6552734, 0.6645508, -1.2441406, 1.4755859, 1.5126953, -0.062683105, 0.38354492, -0.053710938, 0.5185547, 0.029769897, 0.3076172, -1.6425781, -1.6914062, -0.4321289, -2.4179688, -1.3076172, -3.0117188, 2.2871094, -1.6035156, -1.5283203, 0.45776367, 2.4316406, 0.23815918, -1.4941406, 0.9760742, 0.7001953, -0.99853516, 1.8134766, 1.7568359, -1.6630859, 2.9511719, 0.60595703, 0.85302734, 1.3339844, -0.17272949, -1.0732422, -1.1777344, 0.46166992, -0.08532715, 0.64404297, 1.5234375, -0.38110352, -1.2441406, 0.13122559, -2.8554688, -1.1015625, 0.27661133, -1.5283203, -1.6347656, 2.9882812, 1.6796875, 1.4384766, -1.7998047, 2.9667969, -0.13989258, -0.36865234, 1.5039062, -2.6835938, -2.5, -2.6992188, -4.2148438, 1.0224609, -0.91796875, -0.13134766, 3.5214844, -1.1621094, -0.7216797, 1.9472656, -0.5029297, -1.0234375, -2.4902344, -2.1230469, -0.30444336, 0.04019165, -0.08166504, 2.453125, -0.021224976, -2.0507812, -2.1972656, -0.99072266, 1.0517578, 1.6816406, 2.4609375, -1.6220703, 0.47924805, -3.421875, 1.1464844, -1.4824219, -0.9916992, 1.3837891, -0.38452148, -0.68652344, -2.609375, -0.18981934, 0.39941406, -0.5048828, 1.5, 2.4199219, -0.04397583, 0.6567383, 0.37182617, 1.1132812, 0.80859375, 0.22521973, -3.4394531, -2.1113281, -1.3134766, -1, 0.5205078, 0.6435547, -0.3095703, -0.7446289, 1.7470703, -1.1621094, 0.5415039, 3.0273438, 2.4296875, -2.5117188, -0.4477539, -0.51953125, -1.7148438, -1.1835938, -1.1933594, 1.9580078, -0.17114258, -1.4130859, -1.0849609, -0.22692871, -2.0332031, -1.7841797, -1.8818359, 2.1503906, 2.7109375, 1.4785156, 2.6132812, -1.71875, 0.21496582, 0.06262207, 0.22058105, -0.74072266, 0.70996094, -0.95166016, 2.0253906, 2.0175781, 0.37426758, -2.1074219, -0.47216797, 0.2524414, -2.3632812, -1.6865234, -2.5039062, 1.0595703, -2.9453125, -1.3623047, 0.8144531, -1.1152344, 4.1367188, -0.77734375, -0.39160156, -1.2910156, 0.20019531, -0.7348633, -0.29858398, 0.1953125, 1.0566406, 0.44995117, 1.0722656, 0.24536133, -0.61376953, -0.00022292137, -1.4023438, 2.8476562, 0.021331787, -0.14550781, 0.52001953, 0.18786621, -1.7802734, -0.671875, 1.1083984, 3.2792969, 0.60498047, 2.0742188, 0.23120117, -1.3095703, 1.0634766, 1.5107422, -3.4042969, -0.95654297, -1.6689453, -1.1796875, 1.1982422, -1.3779297, -4.1679688, -0.5683594, 1.4052734, -0.014480591, 0.72265625, -1.2050781, 0.09338379, -0.0071868896, -2.921875, -0.2590332, -0.50097656, -1.1630859, -0.5708008, -0.32958984, -0.1796875, -0.9091797, 2.0371094, 1.9277344, -1.2958984, 0.42456055, 0.43554688, -0.7998047, 0.78466797, -1.0478516, 0.08081055, -3.7207031, -1.7666016, 2.2617188, 0.765625, 0.9135742, 0.11608887, -0.022476196, -2.6132812, 0.35961914, -2.8554688, 2.0410156, -1.8720703, -0.39135742, 1.9726562, -2.3496094, -0.50390625, -2.4570312, -0.39404297, 0.07702637, 3.2578125, 2.0546875, 0.63623047, 1.1357422, -0.3449707, -2.6308594, -5.4257812, -2.0878906, -0.00064754486, 1.7949219, 0.32250977, 2.4257812, -1.6552734, -1.1201172, -0.33276367, 0.63916016, -0.71240234, -0.19067383, -0.16894531, -0.049713135, 0.6303711, -1.625, -0.88134766, 2.1054688, 1.8398438, 0.94628906, 1.15625, -1.3291016, -1.3671875, 0.39746094, -2.6679688, 0.8989258, 1.7060547, 0.9692383, -0.5527344, -0.11999512, 0.8286133, -1.5527344, 3.3046875, -0.48901367, 0.7294922, 1.3115234, -1.0966797, 0.6176758, -0.66259766, -1.4521484, 0.9716797, -0.98291016, 2.2675781, 1.1103516, -0.21655273, -0.37695312, 0.35180664, -1.5175781, -1.1660156, 0.7001953, 1.2021484, 1.6347656, 0.20544434, -1.5390625, 0.6801758, -2.3320312, -3.609375, 0.37573242, -2.1894531, 0.24291992, -2.4960938, 1.3125, 1.2275391, 1.5449219, 0.16772461, 0.61376953, 0.6826172, -2.1171875, 0.84375, 0.75341797, 3.2617188, 4.4414062, -1.3613281, -1.9072266, -0.0135650635, 0.15759277, 1.3769531, 0.29101562, -0.9057617, 0.6064453, -1.7216797, -0.5151367, -0.8105469, 2.7617188, 0.66259766, -0.24523926, -0.29467773, 1.4277344, 2.9941406, -0.37597656, -0.02128601, 0.37963867, 3.1328125, 0.40356445, 2.9042969, -0.9692383, -2.375, 1.1191406, -0.89746094, 1.0664062, 0.75927734, -2.0605469, -0.06567383, -1.8339844, -0.6772461, -1.2080078, -0.57177734, -1.8955078, 2.1992188, 0.90234375, -0.8876953, 1.5126953, 2.0058594, -0.50634766, 2.5429688, 2.4980469, 2.4355469, 0.5576172, 0.5361328, -0.78125, 0.42993164, 0.17016602, -3.0839844, 2.671875, -0.6040039, -0.4477539, -0.28051758, 3.5292969, -0.8432617, 2.8144531, 2.6816406, 2.3242188, 2.3808594, 1.3691406, 2.6191406, 1.0664062, 2.1582031, 3.0644531, -2.1933594, 1.6796875, 3.1054688, 2.1542969, 0.26879883, -1.6064453, 2.6972656, 0.11328125, -2.2929688, -0.79541016, 0.15698242, 0.63964844, -3.2558594, 2.2617188, 1.3789062, 0.70703125, -2.4179688, 1.7246094, -0.36450195, -0.7451172, -1.0664062, 0.9213867, 2.8964844, -0.8300781, 1.3662109, 0.40161133, -0.6533203, 1.6621094, -3.703125, -0.69970703, 1.6875, -1.1035156, -0.2902832, -0.6323242, 0.9633789, 0.8959961, 0.7651367, 0.6791992, 2.2207031, 0.8227539, 0.9980469, -0.13476562, 0.28857422, -0.082458496, 1.5205078, -1.7392578, -1.7226562, 0.47827148, -1.265625, -2.2011719, -2.9023438, 2.1972656, 0.007537842, 2.0742188, 0.9033203, -0.056549072, 3.4296875, 0.12347412, 2.2285156, -1.1074219, 1.4785156, -1.6113281, -2.4570312, -1.1132812, -0.3474121, 1.0820312, 4.21875, 1.3759766, -0.035186768, 2.7851562, 0.34448242, 2.7460938, -0.41259766, 1.5068359, 0.19958496, 0.25268555, 0.19348145, 1.3408203, -0.5522461, -1.3994141, -0.9326172, 1.6259766, 0.8540039, -0.61816406, 0.9116211, -2.2773438, 0.76953125, -0.9379883, 0.08483887, 0.22180176, -1.9433594, -1.5693359, 0.084106445, -0.6376953, -0.2705078, 0.24963379, 0.7416992, 2.9375, -0.3149414, 0.58203125, 0.5546875, 0.113342285, 2.9785156, -0.019592285, -1.7597656, -0.8022461, 0.79052734, 0.38012695, -1.0283203, -1.0371094, -0.019821167, 0.57958984, -1.1464844, -0.16308594, -1.0234375, 0.8613281, -0.41088867, -0.33129883, 1.9921875, -0.67626953, -0.35131836, 0.4897461, -0.67041016, 0.2763672, 2.3105469, -0.48510742, 1.1708984, -3.2089844, -1.4404297, -1.3544922, -0.08441162, -0.79833984, -0.48120117, 3.0957031, 0.8574219, 0.7519531, -1.3642578, -3.9101562, -1.1347656, -0.071777344, 1.9990234, 0.29223633, -1.2246094, 0.6123047, -1.0029297, 3.140625, -1.1074219, -0.79003906, 0.89746094, 0.42211914, 0.359375, 1.2089844, 0.9692383, 0.20568848, 0.44970703, 0.13098145, 2.3417969, 0.7080078, 0.59472656, 1.5322266, -0.6376953, -0.71191406, -1.9404297, -0.6401367, -1.7402344, 1.0458984, 0.6411133, 0.04321289, 2.6308594, 1.9677734, -0.018218994, -1.5410156, -2.9628906]}, "B01ENX3VX2": {"id": "B01ENX3VX2", "original": "Brand: Royal Gourmet\nName: Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black\nDescription: \nFeatures: Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast\n316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6\u2019\u2019 L x 13.4\u2019\u2019 W and 3.5 mm thickness. 15 patties can be cooked altogether at once\nPiezo Ignition: Durable stainless steel control panel with piezo ignition system\nOil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use\nPerfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors\n", "embedding": [-1.1201172, 0.20751953, 0.74853516, 1.2929688, -1.4726562, 2.1425781, 1.5175781, 0.046844482, -1.6162109, 0.7578125, 1.5683594, -0.0067214966, 1.1425781, -2.078125, 1.734375, 0.78222656, 0.55322266, 0.9350586, 0.6616211, 0.6611328, 0.8696289, 1.5917969, 2.5429688, -0.59472656, 0.109191895, 1.3193359, 2.5996094, -4.1015625, -0.13012695, -0.9741211, 2.6191406, -0.5527344, 1.2480469, 1.9921875, -2.5253906, -0.48266602, -1.4667969, 0.9316406, -1.7910156, 0.20800781, 0.06793213, -1.2763672, 2.21875, -0.28100586, -2.7832031, -1.3603516, 0.3203125, 0.71777344, -0.42871094, -0.66796875, 1.9423828, 0.24206543, -0.5908203, 0.42626953, -1.0244141, 1.9589844, 1.6103516, -1.7675781, 1.4892578, -0.24401855, 3.0585938, 0.5151367, -2.6777344, -0.17480469, -0.76464844, -1.578125, -0.28173828, 0.66064453, 0.57910156, -2.1503906, 2.3398438, 0.5678711, -0.19702148, 0.084106445, 0.0927124, 0.17626953, -1.609375, 1.6494141, 2.6601562, 0.8286133, -2.4140625, 1.9121094, 0.6855469, -1.6044922, 0.5004883, 0.042633057, -1.6933594, -1.0605469, 1.5244141, 1.0107422, -0.25170898, 2.4746094, -3.0332031, -4.3359375, 3.4042969, 0.056732178, 0.87841797, 1.7324219, 0.7763672, 1.6279297, 0.5805664, -0.56396484, -1.1005859, -1.0830078, -1.7255859, -1.1210938, 1.3027344, 0.31298828, -2.7558594, -0.4416504, -1.2392578, 0.25976562, 2.5664062, -0.39013672, 0.3569336, -0.40356445, -1.0009766, 2.7636719, 2.2480469, 0.22875977, 2.5292969, -1.3544922, 1.8154297, -1.0429688, 0.12420654, 0.046966553, -1.4951172, 1.7128906, 5.3125, -1.7324219, -0.7109375, -1.0859375, 2.3652344, -0.1977539, -3.1542969, -2.6542969, -1.0517578, -1.3339844, -2.5292969, -0.5864258, -1.6816406, 0.9238281, 2.5957031, -0.4453125, -2.96875, -0.16748047, -0.09954834, 1.2392578, -0.328125, -0.82421875, 0.19042969, -1.3994141, 0.48168945, -2.2988281, 1.09375, -1.3134766, -1.2070312, -0.099853516, 4.453125, 0.5239258, 1.2285156, -2.546875, -1.2324219, 1.0126953, 0.3244629, -0.7919922, -0.4807129, 3.2636719, 1.28125, 2.2304688, -0.671875, -1.8388672, -0.94384766, -0.10858154, -0.025024414, -1.5761719, -0.8388672, 1.1826172, 0.8510742, -1.6660156, -1.1318359, -2.6308594, -0.27148438, 0.6044922, 1.2958984, -1.8535156, -0.69189453, 0.011802673, 0.25268555, -1.8955078, 0.86035156, -0.2010498, 0.41308594, 1.3955078, -0.33740234, -1.0751953, -0.5917969, -2.0429688, -0.46191406, 0.52246094, 0.13745117, -0.2290039, 0.3930664, 0.17651367, -2.5117188, -3.4570312, 0.1541748, -3.2011719, 1.2226562, 1.4609375, 0.8066406, -2.8085938, 0.81396484, -0.7475586, 0.24865723, -1.9931641, 1.0361328, -0.36499023, 1.6640625, 2.1640625, -0.5336914, 0.13977051, 0.8066406, 2.2929688, 0.101989746, 1.6103516, 0.15063477, 0.57128906, -2.1152344, -0.38842773, 2.2578125, 0.23620605, -1.0419922, 0.3190918, -0.41796875, 0.8808594, -0.8100586, -2.3847656, -0.24804688, -0.55859375, -1.4716797, -0.8535156, -0.47485352, -1.265625, -0.6171875, 1.3984375, -1.5322266, 1.5175781, 1.1748047, 0.50927734, -0.8491211, 0.2705078, 0.87890625, 0.38012695, -0.89160156, -0.4736328, -0.38745117, 1.3300781, -0.9428711, -1.984375, 1.8964844, 0.55371094, -0.16186523, -1.4306641, 0.73828125, -1.4072266, 3.2070312, 1.6679688, -1.6699219, -0.03024292, 0.67871094, 0.43774414, 2.0097656, 0.32226562, 1.1884766, 0.8178711, -2.0214844, 2.7265625, -1.1328125, 1.9804688, 0.43310547, -1.1269531, 0.4741211, -2.1796875, -0.9536133, 0.49389648, 1.2431641, -0.6376953, 0.84521484, 1.2080078, 4.6875, -0.66552734, -2.4648438, 3.1953125, -2.2890625, 1.3349609, 0.8588867, -0.66259766, -0.8300781, 0.07305908, 0.7397461, 1.5693359, 0.42749023, -0.015258789, -1.0908203, -2.5058594, -0.084228516, -1.3144531, -0.65283203, 0.35302734, -0.36914062, -1.1806641, -1.7089844, 0.7573242, -1.2060547, -1.0585938, 1.1767578, -2.9609375, 1.5771484, 0.3491211, 1.5166016, 1.8554688, -0.5073242, -1.2324219, -1.0390625, 0.27148438, -0.6899414, 0.24584961, 1.1484375, -0.5078125, -0.063964844, -0.37719727, 0.38916016, -1.5146484, -2.9003906, -0.087402344, -2.6953125, -3.8476562, 0.7402344, -2.4980469, -1.015625, 1.3095703, -1.46875, 0.64453125, 0.45629883, -4.2109375, -1.4511719, -1.2460938, -3.0625, -0.2097168, -0.18969727, 0.2512207, -0.17272949, -2.9023438, 0.18652344, -0.3149414, 0.06604004, 0.24291992, 0.07086182, -0.8383789, -1.015625, -2.0175781, -0.42260742, 0.7133789, 0.27807617, -1.8828125, -0.24389648, -2.1191406, -0.08111572, -1.4648438, -0.5517578, -1.2041016, 0.14050293, -1.8037109, -0.19763184, -0.08685303, -0.62109375, 3.8359375, -0.83691406, 0.50439453, -0.32128906, 0.77490234, 1.9365234, -0.101745605, -3.046875, -1.671875, 0.07678223, -3.6621094, -4.3320312, -2.8652344, -0.6269531, 0.6977539, 1.1220703, -1.2070312, 2.2460938, -2.1601562, 2.0351562, -2.4042969, -0.44995117, 0.032287598, 0.69384766, -0.26782227, -1.2910156, -0.45874023, -0.2578125, -0.9536133, -1.5927734, 1.1484375, 1.3505859, 0.25146484, 1.1054688, 0.8364258, -1.0458984, -0.5078125, 0.31396484, -2.8242188, 2.1601562, 0.20666504, -1.9853516, 3.203125, -0.4716797, -2.46875, -2.2792969, -1.0800781, 3.1992188, 1.1503906, 2.5058594, 1.2265625, 0.76464844, 0.40551758, 1.3828125, -1.0742188, -1.09375, -0.70214844, 3.5390625, -1.953125, -1.5683594, 1.6103516, 2.2597656, -1.3212891, -0.16992188, 2.9179688, 0.6977539, 2.4511719, 1.234375, 3.1035156, 0.11364746, -0.6542969, 0.26391602, 1.8300781, -0.96533203, 0.20910645, -1.0634766, -0.6274414, -0.6425781, 2.1933594, 0.79785156, 0.12017822, 2.5371094, 1.2226562, 0.80371094, -1.6220703, 1.3339844, 0.56103516, 2.4042969, 1.7666016, 1.9462891, 0.13830566, 0.06817627, 0.22875977, -0.28100586, 0.5629883, -2.4746094, 1.140625, 1.6894531, 0.064331055, -0.5810547, 0.66796875, 1.0126953, -0.097351074, 0.095947266, 0.79785156, -1.9482422, -0.53759766, 1.1933594, -1.2666016, -1.0341797, -1.9443359, 0.9741211, -1.9677734, -1.5039062, 1.9345703, 2.9199219, -1.9726562, -1.9521484, 1.1904297, 0.19897461, -1.5390625, 2.0957031, -0.34472656, -1.1542969, 0.3713379, -1.203125, 1.1416016, 0.038269043, -1.3984375, 0.20629883, -0.9091797, -1.6523438, -0.8222656, 0.7114258, 1.3222656, 0.96240234, -1.4462891, 0.6347656, -3.7988281, 1.2412109, 0.11444092, -1.4287109, -0.52685547, 2.5175781, 1.0595703, 1.6103516, -2.3222656, 3.546875, 0.41137695, -0.578125, 2.078125, -3.5820312, -2.4199219, -3.8085938, -3.2441406, 1.4267578, -0.25146484, -0.66503906, 2.4707031, 0.5776367, -0.3894043, 1.9960938, -0.24560547, -1.6259766, -1.5400391, -1.7939453, 0.20568848, -3.0800781, -0.93310547, 1.2333984, -0.034942627, -2.4023438, -0.6767578, -0.6225586, 0.56689453, 1.4082031, 2.6621094, -2.78125, 0.88964844, -1.9638672, -0.014297485, 0.48706055, -1.0371094, 1.6943359, -0.51464844, -0.51171875, -2.9570312, 1.0087891, 0.35498047, -0.3293457, 1.0273438, 2.1757812, 0.40844727, -2.0253906, 0.17041016, 2.4453125, 3.7988281, -0.2734375, -2.109375, -2.5898438, 0.68115234, -0.12683105, -1.0205078, -0.3930664, -1.6728516, -1.2832031, 0.5957031, 2.5332031, 1.2695312, 1.1396484, 2.0019531, -0.8071289, 0.08148193, 0.31225586, -2.0097656, -0.38378906, -0.7426758, 0.2052002, 0.22290039, -1.7285156, -1.34375, 0.22741699, -2.5253906, -0.08282471, -0.5678711, 3.9277344, 2.2265625, 0.6489258, 2.5703125, -0.7636719, -0.4892578, 0.38110352, -0.64941406, -0.91748047, 1.0478516, -0.015365601, 1.7412109, 2.421875, 0.5517578, -1.5673828, 1.1865234, 1.1162109, -2.3242188, -0.5205078, -0.4255371, 1.21875, -0.8125, -0.64453125, 1.2392578, -1.0107422, 3.2714844, -0.72216797, 0.5629883, 0.53125, 0.6538086, -1.1074219, -0.703125, 0.27392578, 0.63964844, 0.8203125, 0.7036133, 1.9921875, -1.9550781, 0.8730469, -0.44262695, 2.4726562, -0.4987793, 1.0214844, 0.37304688, 0.44580078, -0.5493164, -0.89746094, 0.5288086, 2.2207031, 0.28955078, 4.4140625, 1.0048828, -1.9423828, 2.2402344, 1.5, -1.3642578, -1.0517578, 0.11608887, -0.60546875, 0.8823242, 0.7416992, -3.0390625, -0.1472168, 1.9316406, -1.4248047, 0.7705078, -0.5317383, -0.25317383, -0.6796875, -1.1904297, -1.1806641, -0.20043945, -0.21582031, -0.041748047, 0.16186523, 0.05871582, -0.029403687, 2.265625, 1.9609375, 0.08648682, -0.8100586, 2.8886719, -1.6044922, 1.9570312, 0.028533936, -0.02027893, -3.6191406, -0.06921387, 3.9140625, 0.6376953, 1.2675781, 0.55859375, 0.022750854, -3.015625, -0.40039062, -2.6796875, 2.6464844, -1.2373047, -0.3959961, 2.4335938, -3.7558594, 0.17529297, -1.7646484, -0.8051758, -0.99365234, 2.9121094, 1.8466797, -0.8876953, -0.97314453, 1.3095703, -1.3515625, -4.5820312, -2.0351562, 1.1933594, -0.3630371, 0.75439453, 1.3183594, -1.6943359, -0.015342712, -0.14331055, -0.3881836, -2.3125, 0.17028809, -1.4677734, -0.2861328, -2.0214844, 0.4897461, -0.24438477, 1.5332031, 1.1523438, 0.6123047, 1.1865234, -2.3105469, -1.6855469, 2.2558594, -1.703125, 0.38427734, 2.453125, -0.08111572, -0.20922852, 1.3798828, 0.9194336, -2.5, 2.53125, -1.4521484, -0.36987305, -0.21875, -1.0898438, 0.5942383, -0.6899414, -0.92578125, 1.1982422, -0.45996094, 1.6279297, 1.21875, -0.7495117, -0.86279297, 1.5849609, -0.94628906, -1.3115234, 0.06298828, 0.33129883, -0.27148438, 0.39208984, -1.9970703, -1.4404297, -1.046875, -2.0722656, -1.1728516, -0.9794922, 0.08660889, -0.47387695, 0.5800781, 2.3847656, -0.93115234, -0.09472656, 0.4699707, -0.83496094, -0.6323242, 1.0234375, -1.4404297, 2.0644531, 2.03125, -1.4111328, -0.4506836, -1.2021484, 0.8041992, 1.4072266, 0.6323242, -0.11669922, 0.085876465, -0.7260742, -1.484375, 0.5625, 0.62402344, 2.8242188, -0.33251953, -1.109375, 1.1445312, 2.9511719, -0.5917969, 1.0800781, 1.3964844, 1.1103516, -0.9394531, 5, -1.2587891, -2.578125, 0.6225586, -2.8613281, 2.7558594, 0.26342773, -1.4462891, 0.03527832, -0.21325684, -1.9990234, -1.8134766, -0.25390625, -2.0585938, 0.6953125, 1.9443359, -1.0166016, 0.35205078, 1.9951172, 0.99365234, 1.2822266, 2.3613281, 1.3193359, -1.0087891, 1.6357422, -0.48413086, 0.36206055, 1.1337891, -3.15625, 2.7792969, 2.5253906, -1.9248047, -1.4228516, 3.8007812, -1.3779297, 3.2246094, 2.0507812, 0.6738281, 2.2519531, 1.5429688, 2.8222656, 0.4819336, 0.68603516, 1.5439453, -0.061645508, 3.0234375, 1.4716797, 2.2636719, 0.57910156, -1.15625, 1.5712891, -0.06573486, -2.1796875, 0.47973633, 0.8413086, 1.5595703, -3.03125, 1.9726562, 0.5859375, 1.1337891, -1.6416016, 0.25439453, -1.2890625, -1.2558594, -1.2070312, 0.9980469, 3.3847656, -1.6142578, 0.103881836, 0.70703125, 0.5751953, 2.1425781, -3.6601562, 1.1767578, 1.9443359, -0.8041992, 0.9091797, 0.7583008, -0.2890625, 0.5605469, 1.1835938, 0.83935547, 1.4189453, 0.30786133, 0.1977539, -0.65234375, 0.80029297, 0.6791992, 2.4003906, -0.12347412, -1.0224609, 2.7480469, -2.0429688, -2.4941406, -4.3632812, 3.9140625, 1.96875, 1.2929688, 1.5957031, -1.2626953, 2.3398438, 0.1743164, -0.018417358, -2.6367188, 1.0644531, -1.2919922, -2.6640625, -2.0351562, 1.1513672, 0.105529785, 3.0507812, 0.94970703, 0.066467285, 1.921875, 0.76416016, 1.1171875, 0.4345703, 1.5292969, 0.33789062, 0.8359375, -1.3339844, 1.546875, -0.33935547, -2.3046875, -1.7148438, 2.1601562, 2.4472656, 0.11621094, 0.42919922, -0.2692871, -1.0830078, -1.2392578, 0.21569824, 0.53564453, -1.7714844, -2.1113281, -0.28442383, -0.65478516, -1.1884766, -1.5332031, 1.984375, 1.0361328, -1.3105469, -0.0713501, 1.8271484, -0.24304199, 2.3105469, 1.4287109, 0.22338867, -0.53222656, -1.4384766, 0.17236328, 0.021224976, -1.4707031, 0.9975586, 0.40185547, 1.4316406, -0.7402344, -0.30078125, -0.4477539, -0.24841309, 0.3479004, 1.2060547, -1.8515625, -1.0742188, 1.2402344, -0.5673828, -0.43237305, 3.9277344, -0.83203125, 0.6821289, -2.2480469, -1.9462891, -1.1826172, -2.171875, 0.65625, 0.7661133, 3.1269531, 2.0957031, 1.2353516, -0.6074219, -4.0195312, -0.7963867, -1.2021484, 1.5898438, -0.5288086, -0.6796875, 0.83740234, 1.4003906, 1.8105469, 0.4892578, -1.6962891, 0.75634766, -2.1679688, 0.81396484, 0.03012085, 2.8554688, 0.18591309, 0.6508789, -0.027801514, 1.4892578, 0.7866211, -0.94970703, 2.171875, 2.2480469, -0.61328125, -1.9511719, 2.0546875, -1.3671875, 0.04046631, 0.013031006, -0.09802246, 1.3359375, 0.79248047, 1.8095703, -0.6479492, -3.3125]}, "B06XY4SHXG": {"id": "B06XY4SHXG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel\nDescription: \nFeatures: 5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor\nPorcelain-enameled cooking grates and warming rack offer a total of 797\u00a0square inches\u00a0cooking area,\u00a0which is consisted of\u00a0a\u00a0primary cooking area\u00a0of 598\u00a0square Inches and a secondary cooking area of 199\u00a0square inches\nHeavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement\nElectronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space\nRemovable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters\n", "embedding": [-1.5166016, 0.31445312, 1.2324219, 1.328125, -0.15075684, 1.1962891, 0.41918945, -0.55615234, -1.2802734, 0.81396484, 1.6914062, -1.7128906, -0.25830078, -2.4863281, 1.1630859, -0.62402344, 0.58740234, 1.1123047, 0.72802734, 0.4177246, 0.13793945, 0.9433594, 3.2285156, 1.1181641, 0.3635254, 1.4169922, 2.7480469, -3.5878906, 0.7553711, -0.9550781, 2.484375, -0.099243164, 1.1777344, 2.4648438, -2.7519531, -1.2197266, -2.453125, 0.6347656, -2.4003906, 0.57714844, 0.32055664, -1.2646484, 0.5966797, 1.0566406, -3.0898438, -0.6425781, 0.3305664, -0.24523926, -2.7207031, 0.9511719, 0.88964844, 1.5107422, -0.7548828, 1.2929688, -1.2001953, 1.8574219, 2.0742188, -1.2236328, 0.8696289, -0.20239258, 2.9179688, -1.2539062, -2.46875, -1.1513672, -1.3046875, -0.83447266, 0.15625, 0.76904297, -0.06713867, -0.52783203, 1.8037109, -0.6381836, -0.2709961, 0.43066406, -0.75927734, -1.1484375, -1.8691406, 2.4140625, 0.87353516, 0.65771484, -2.59375, 1.4042969, 0.88378906, -3.0292969, -0.49243164, 0.74121094, 0.109191895, -1.0019531, -0.0070877075, 1.7167969, -0.08282471, 2.5117188, -2.7988281, -3.2207031, 2.5117188, -0.8286133, 0.82128906, 1.6181641, 1.2441406, 1.9589844, 0.92285156, -1.5214844, -2.3203125, -0.6777344, -0.122558594, -2.1445312, 0.43701172, 0.7260742, -4.0625, -2.0195312, -2.1757812, 0.28710938, 0.9633789, -0.17272949, 0.030014038, 0.5888672, -0.4338379, 3.0820312, 1.1630859, 0.7583008, 1.8652344, -1.5, 0.009857178, -1.453125, 0.44458008, 1.7539062, -1.7441406, 2.8886719, 6.7617188, -2.5019531, -0.70947266, -2.3769531, 1.8964844, -0.46557617, -1.5283203, -1.6914062, -1.8212891, -0.80371094, -2.9160156, 0.030792236, -2.7871094, 1.8984375, 1.4482422, -0.106933594, -2.5820312, -0.39526367, -0.24072266, 1.0419922, -0.7241211, -1.1660156, -0.9189453, -2.0410156, 2.453125, -3.2636719, 2.6328125, -1.8242188, -0.2614746, -1.6123047, 3.1503906, 1.1640625, 1.6806641, -2.7304688, -1.4912109, 1.9716797, -1.8447266, -0.29418945, -1.2119141, 2.7578125, 1.8515625, 1.1152344, 0.12335205, -0.46557617, 0.5917969, 0.23657227, -0.32543945, -0.7084961, -0.08081055, 2.5039062, 1.6796875, -0.46142578, -1.3046875, -3.8964844, -0.6533203, 0.96777344, 0.66845703, -1.8115234, 1.4902344, 0.7685547, 0.27563477, -0.7817383, 1.125, -0.75390625, 0.60253906, 0.4880371, -0.16674805, -1.1152344, -0.7817383, -1.3642578, -1.0273438, -0.5522461, -0.31958008, -0.06958008, 0.1508789, 0.10266113, -3.34375, -4.1835938, -0.51904297, -3.8964844, 1.3662109, 1.8935547, 2.234375, -1.3828125, -0.010375977, -2.9882812, 0.26245117, -2.8574219, 1.8710938, -0.88427734, 2.546875, 1.6552734, -0.51660156, 0.7910156, 1.5185547, 0.5493164, 0.7133789, 1.0039062, 0.5102539, 1.2646484, -1.3554688, -1.4931641, 2.0996094, -0.64453125, 0.10760498, 1.4404297, -1.0859375, 1.6367188, -1.0097656, -2.2695312, -0.6513672, -0.6796875, -0.17443848, -1.4755859, -0.7529297, -0.5161133, 0.07489014, 0.3725586, -1.7128906, 1.1425781, 1.7070312, 0.46435547, -0.67578125, 1.8876953, 1.2265625, 0.5493164, -0.014343262, 0.3413086, -1.0908203, 0.7919922, -0.45825195, -2.6035156, 1.9228516, -1.4248047, -0.68652344, -1.8056641, -0.4169922, -1.5410156, 3.375, 0.37109375, -2.6660156, -1.4638672, 0.1204834, -0.24230957, 3.0761719, -0.82666016, 1.4179688, 2.8554688, -2.40625, 2.5703125, -1.9267578, 1.6660156, 0.6245117, -1.2685547, 2.2246094, -3.2011719, -0.48706055, 0.8183594, 0.98583984, -0.8833008, 0.48266602, 1.4941406, 5.0390625, -1.5615234, -3.765625, 3.6269531, -1.7998047, -2.1738281, 2.5019531, -0.40576172, -0.48168945, -0.38305664, 1.4902344, 0.6635742, 2.0820312, 0.47680664, -1.2822266, -2.2363281, 0.06652832, -0.64160156, -1.5205078, -0.36157227, -0.97265625, -1.4130859, -2.9121094, 0.7338867, -1.7978516, 0.04598999, 4.1015625, -2.4472656, 1.3007812, 0.00856781, 1.0839844, 1.3398438, -1.5664062, -1.5078125, 0.7680664, -0.23254395, -1.2402344, -1.2626953, 0.44506836, 0.52783203, 0.029190063, -0.23254395, 0.20568848, -1.4287109, -2.875, -0.081604004, -4.1015625, -2.4257812, -0.46118164, -1.2539062, -0.7182617, -0.4013672, -4.1171875, -0.15808105, -0.19384766, -3.375, -1.4023438, -1.4228516, -1.1376953, 0.26293945, -0.26733398, 0.5439453, 0.41015625, -2.46875, 0.41479492, 0.24682617, -0.9194336, 1.1132812, -0.112854004, -0.6269531, -0.3395996, -1.3398438, -0.5253906, 2.1914062, 0.7397461, -0.8300781, -0.37451172, -3.3261719, 0.8613281, -1.7617188, -0.12573242, -1.5966797, 1.5410156, -2.1699219, -1.7294922, -0.48828125, -0.9423828, 3.3027344, 0.18347168, 1.3623047, 0.39648438, 1.0830078, 1.4091797, -0.45336914, -1.4746094, -1.9091797, 2.046875, -3.5566406, -4.1640625, -3, 1.4394531, -0.87109375, 0.19433594, -0.7910156, 2.7675781, -1.6005859, 1.1484375, -1.2890625, -0.71240234, 0.52441406, 1.2880859, 0.088256836, 0.4506836, -1.6767578, -1.0976562, -1.2773438, -1.453125, 1.0166016, 2.5722656, -1.5742188, 0.84521484, 0.9111328, -0.17346191, -0.09564209, -0.6894531, -2.1914062, 3.1074219, 1.3828125, -1.9755859, 2.5683594, -0.6010742, -3.0351562, -0.6401367, 0.23364258, 2.5390625, 1.0732422, 2.5234375, 0.7939453, 1.7246094, 2.2578125, 2.4765625, 0.31079102, 0.14196777, -0.45361328, 1.8828125, -0.98095703, -1.9609375, 0.71875, 2.6269531, -1.0908203, -1.4746094, 2.7167969, 0.9013672, 3.6738281, 1.8769531, 1.0087891, 0.061340332, -1.3037109, 2.5234375, 1.9472656, -0.22973633, -0.3400879, -1.4394531, 0.90771484, -1.8232422, 0.9135742, 2.8027344, 0.48950195, 2.3085938, 0.83203125, 0.66259766, -0.21606445, 0.8876953, 1.6513672, 2.9277344, 0.43603516, 2.0859375, -0.39672852, 0.10083008, -0.8232422, -0.66259766, -0.38232422, -3.4804688, 0.6904297, 1.6933594, -1.1425781, 0.6591797, 0.76464844, 1.0537109, 0.7470703, -0.46923828, 0.15856934, -2.2558594, -0.9355469, 0.5083008, 0.6303711, -0.08215332, -3.0527344, 2.2714844, -1.5654297, -0.43725586, 0.2479248, 3.3574219, -2.2851562, -0.87597656, 1.6982422, -0.8496094, -1.5537109, 1.4833984, 0.27172852, -1.9980469, 2.0332031, -2.390625, 1.0917969, 1.0615234, -1.0791016, 0.64404297, -0.6591797, -0.12200928, -0.30541992, 0.95654297, 0.5932617, 1.2265625, -0.4309082, 0.42041016, -3.9316406, 0.8305664, -0.05480957, -1.8378906, -0.67333984, 2.15625, 0.3840332, 2.1386719, -1.9375, 3.0820312, -0.6660156, -0.7783203, 1.2421875, -4.453125, -2.5546875, -3.6445312, -3.84375, 0.59765625, -1.2255859, -1.4697266, 2.1132812, 0.38085938, -0.6513672, 1.1591797, -0.33984375, -1.9580078, -0.99365234, -1.2529297, -0.4177246, -1.1191406, -1.3867188, 0.15148926, -0.70654297, -1.6669922, -1.4345703, 0.27490234, 0.061035156, 1.9335938, 1.9492188, -2.7167969, 1.9589844, -2.1386719, 0.53808594, -0.63964844, -1.0166016, 2.8144531, -1.8818359, -0.3034668, -2.9960938, 2.2363281, 0.4567871, -1.1015625, 1.7763672, 1.6542969, 0.05529785, -3.6171875, -0.9355469, 1.0234375, 3.6503906, -0.53759766, -2.3691406, -1.5917969, 0.7651367, -0.048217773, -2.5664062, 0.47973633, -2.3671875, -1.2060547, -0.8535156, 3.0644531, 1.1679688, 1.9794922, 0.45629883, -1.3105469, -1.0898438, 0.8208008, -1.9296875, -1.7353516, -1.1347656, 0.32836914, 0.16955566, -1.9130859, -1.6757812, -0.87597656, -2.6269531, 0.10760498, -2.6542969, 3.9960938, 2.3164062, 0.6796875, 2.5429688, -1.6855469, 0.8051758, 0.33447266, -0.32910156, -0.29956055, 1.5058594, 1.2128906, -0.5830078, 0.93408203, 0.17260742, -2.2265625, 0.13085938, 2.4707031, -1.9785156, -0.101135254, 0.13330078, 0.6098633, -0.64990234, -0.5942383, 2.6972656, -1.0898438, 3.2285156, -0.50927734, -0.27954102, -0.43554688, 0.8076172, -0.99658203, 0.6855469, -0.5522461, -0.3935547, 1.0097656, 1.6943359, 1.5751953, 0.012718201, 0.10510254, -0.8847656, 2.8320312, 0.4399414, 0.57910156, -0.060058594, 1.3554688, -0.0949707, -1.4521484, 0.38012695, 2.8378906, -0.014701843, 4.28125, 1.9072266, -3.2851562, 1.4199219, -0.10217285, -2.0566406, -0.36132812, 0.9428711, 0.79296875, 1.2246094, 0.39086914, -2.953125, -2.5996094, 1.2851562, -0.7626953, 0.8129883, -0.5126953, -1.8183594, 1.0400391, -0.2578125, -0.3005371, 0.12451172, 0.4963379, -1.2539062, 0.03704834, 0.97216797, -1.6425781, 1.0722656, 2.0332031, -0.06829834, -2.4257812, 2.8632812, 0.011566162, 1.7568359, 0.06341553, -0.17651367, -2.03125, 0.33544922, 4.5742188, 0.54345703, 1.6269531, 1.1533203, 2.1777344, -2.3789062, 1.9521484, -2.3691406, 4.5820312, -1.5478516, -1.3125, 2.5195312, -3.8398438, 0.24487305, -2.1367188, 2.0996094, -1.1816406, 1.5439453, 2.6171875, -0.09814453, -0.73339844, 0.6118164, -1.4755859, -3.9003906, -1.5019531, 0.73095703, 0.2944336, -0.3869629, 0.5991211, -2.453125, 1.6894531, 0.8173828, -0.95996094, -3.1425781, 0.12927246, -0.25830078, -1.5820312, -1.9169922, 1.0976562, -0.22644043, 2.7890625, 1.0595703, -0.75927734, 0.0914917, -4.109375, -1.7148438, 1.5986328, -1.4697266, 0.89746094, 2.4921875, 0.48291016, 0.96435547, 0.59521484, -0.8925781, -2.0078125, 1.7753906, -1.8583984, -0.20410156, 0.82958984, -0.65234375, 0.5522461, -0.65185547, -1.7119141, 0.5410156, 0.21691895, 0.7109375, 0.53222656, 0.65234375, -0.24072266, 1.3369141, -0.49731445, -1.1835938, 0.07141113, -0.2854004, -0.71435547, 1.1494141, -1.2324219, -0.8955078, -1.3408203, -1.5908203, -1.2851562, -2.6679688, 0.19274902, -0.9145508, 0.9692383, 1.2148438, -0.078063965, -1.0732422, 0.5307617, -0.32006836, 0.09576416, 0.32910156, -2.0878906, 1.9970703, 1.3779297, -1.7373047, -0.2010498, -0.2290039, 0.9370117, 1.5722656, 0.58496094, -0.10821533, 0.4580078, -0.09777832, 0.60302734, -0.058654785, 0.7885742, 1.8369141, -0.71484375, -1.0146484, 1.4824219, 4.59375, 0.51123047, 1.7236328, 1.0058594, -0.06866455, 0.38208008, 4.9648438, -1.625, -2.3164062, 1.4316406, -2.7480469, 1.1630859, 0.3942871, -1.0039062, 0.27661133, -2.015625, -2.1015625, -2.1894531, 0.18310547, -3.2753906, 1.2919922, 1.9013672, -1.6611328, -0.90966797, 2.3457031, 0.91015625, 0.8959961, 2.375, 0.46362305, -0.23901367, 1.4130859, -1.1748047, 0.013160706, 0.9003906, -1.9873047, 2.1777344, 3.40625, -0.8125, -1.2021484, 4.4726562, -0.22741699, 1.7460938, 2.5917969, 0.15197754, 1.2158203, 2.140625, 3.2011719, 0.78515625, 0.30371094, 1.0478516, -0.7949219, 1.3447266, 1.4794922, 3.0488281, 0.41455078, 0.30932617, 2.1777344, -0.6894531, -1.9384766, 0.66015625, 1.0478516, -0.12597656, -1.1777344, 1.6171875, 0.30810547, 1.7246094, -1.1552734, -0.51171875, -1.6181641, -1.9580078, -0.30444336, 0.7783203, 3.125, -1.7138672, 1.0292969, 0.13146973, -0.50634766, 1.6455078, -3.8261719, 1.6435547, 1.8017578, -0.117614746, 1.3457031, 0.9111328, 0.83984375, -0.4182129, 0.33325195, 1.5917969, 1.1708984, 1.2939453, 0.6958008, -1.9785156, 1.7646484, 0.7133789, 2.6757812, 0.10021973, 0.14208984, 3.8808594, -1.6757812, -1.8164062, -4.2617188, 4.5234375, 1.1191406, 0.8354492, 1.9443359, -1.9765625, 2.3261719, 0.18408203, -0.026107788, -2.4335938, 0.8095703, 0.2836914, -2.6953125, -2.2167969, 2.4179688, 0.19970703, 2.6660156, 1.8828125, -0.7973633, 1.7402344, 0.4802246, 0.47607422, 1.859375, 2.28125, -0.3972168, 1.1777344, 0.20629883, 2.953125, -0.7651367, -1.1054688, -3.0039062, 3.78125, 1.2802734, -1.1054688, 0.7402344, -0.37280273, -0.70654297, -0.46069336, 0.09283447, 0.41430664, -2.984375, -1.9990234, 0.06329346, 0.4169922, -1.2802734, -0.18908691, 2.703125, -0.38964844, -1.8642578, 0.026382446, 1.7167969, -1.8154297, 1.8388672, 0.75878906, 0.42700195, 0.7421875, -1.4892578, 1.7060547, 0.10675049, -3.1503906, 0.7871094, -0.11236572, 1.7138672, -2.1582031, 0.28759766, 0.6411133, 0.6352539, -0.35205078, 0.69189453, -1.2294922, -0.67041016, 2.4921875, -0.35058594, 0.50390625, 2.9316406, -0.43041992, 0.59277344, -2.9042969, -2.6914062, -0.09075928, -0.2446289, -0.15332031, 1.2324219, 2.03125, 2.4160156, 0.95410156, -0.84472656, -3.78125, 0.6118164, -1.2714844, 1.1445312, -0.5854492, -0.42822266, 0.73291016, 1.8007812, 1.9765625, -0.23327637, -3.1914062, -0.3955078, -1.8154297, -0.25952148, 0.28442383, 2.6953125, -0.5546875, 0.9892578, 0.31860352, 2.078125, 1.3876953, -1.2558594, 1.0136719, 2.8808594, -0.67333984, -2.2636719, 3.1679688, -1.2392578, 0.47705078, 0.93847656, 0.32592773, 1.5800781, 0.22021484, 1.3867188, -0.5449219, -3.921875]}, "B01FTD8JB4": {"id": "B01FTD8JB4", "original": "Brand: Royal Gourmet\nName: Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22'' L, Black\nDescription: \nFeatures: SPACIOUS COOKING SURFACE: 22.4\" L x 21.7\" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly.\nPOWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total.\nQUICK START-UP: Electronic ignition system offers a reliable spark at every simple push.\nNO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup.\nEASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.\n", "embedding": [-1.2900391, -1.1894531, -0.12573242, 2.2363281, -0.6723633, 1.9482422, 0.5078125, -0.54785156, -1.7783203, 0.9394531, 1.4345703, 0.79785156, 0.34838867, -1.4677734, 0.6464844, 1.2949219, 1.1757812, 0.56347656, 0.77001953, -0.43139648, 0.08691406, 0.91015625, 2.7929688, -0.47998047, -1, 2.0859375, 3.6816406, -3.984375, 0.33984375, -0.6308594, 3.0234375, -0.24230957, 0.9526367, 1.8505859, -2.1816406, -0.7631836, -1.7636719, 1.3798828, -2.3574219, 1.1464844, 0.24169922, -0.41479492, 1.1582031, 0.6982422, -2.71875, -1.1191406, 1.1884766, 0.49169922, -2.3554688, 0.30493164, 2.203125, 0.6513672, -0.4267578, 0.5649414, -0.9267578, 2.2265625, 1.4746094, -0.17407227, -0.3503418, -0.3347168, 3.2597656, 0.2536621, -2.5878906, -0.2529297, -0.18481445, -0.9838867, 0.0048561096, 0.8129883, -0.13769531, -2.9257812, 2.2714844, -0.8510742, -0.91503906, 0.023849487, -0.0018262863, -0.69677734, -1.7695312, 0.8276367, 1.9423828, 0.41552734, -0.9926758, 1.9130859, 0.74853516, -2.5332031, 0.68359375, 0.4868164, -0.5341797, -0.95654297, 1.3076172, 0.77246094, 0.5493164, 1.2128906, -2.9355469, -3.9238281, 1.7177734, -0.6635742, 1.7197266, 1.7304688, -0.98779297, 1.6943359, 0.4465332, -1.6972656, -1.7685547, -0.92285156, -2.0546875, -1.296875, 1.8779297, -0.52978516, -2.484375, -1.3525391, -1.8710938, -0.11584473, 2.1894531, -0.14794922, 0.7739258, -0.73095703, 0.10308838, 3.0488281, 1.2919922, 0.28466797, 1.4960938, -1.140625, 1.4931641, -1.0888672, -0.23059082, -0.20959473, -0.3310547, 1.2675781, 5.2265625, -2.5097656, -0.5126953, -1.7636719, 4.0546875, -0.04220581, -1.8388672, -2.6328125, -1.625, -0.27783203, -2.6738281, -0.06262207, -1.8642578, 0.53271484, 1.6103516, -0.6166992, -3.2988281, -0.35229492, 0.3251953, 0.5683594, 0.0041542053, -0.20959473, -0.09649658, -1.4882812, 1.5634766, -2.7363281, 1.3134766, -1.796875, -1.0742188, -0.7402344, 4.2539062, -0.029586792, 0.578125, -2.8183594, -0.7739258, -0.08709717, -1.4335938, 1.2285156, -1.4384766, 3.8222656, 1.2373047, 1.6953125, -0.6855469, 0.6352539, -0.18371582, -0.6640625, 0.20825195, -0.7910156, -1.3310547, 0.8173828, 1.4111328, -1.6142578, -2.0507812, -4.0273438, -0.9741211, 0.3540039, 1.265625, -1.0351562, -0.15405273, -0.2121582, 1.6298828, -0.7133789, 0.2578125, -0.42895508, 1.3388672, 0.8027344, -0.0211792, -0.75341797, -1.5283203, -2.0507812, -0.07739258, 0.80029297, 0.06585693, 0.11010742, 0.07489014, 0.03213501, -2.4941406, -3.4042969, -0.124816895, -2.5683594, 1.6298828, 1.5966797, 1.1865234, -3.21875, 1.1357422, -1.4052734, -0.083984375, -1.9560547, 2.1894531, 0.20666504, 1.9882812, 2.2480469, -1.3818359, -0.21362305, 1.1367188, 1.9707031, 0.10040283, 0.9692383, 0.7128906, 1.2070312, -2.9179688, -0.7758789, 1.5908203, 0.3857422, -0.42382812, 0.91748047, -0.88916016, 1.1962891, -0.72021484, -1.1699219, -0.16699219, -0.8120117, 0.3959961, -0.59033203, 0.31176758, -0.2668457, 0.006752014, 2.9355469, -2.2226562, 1.8349609, 1.0615234, 0.15563965, -0.081848145, 1.9257812, 1.5224609, 0.2154541, -1.2294922, 0.4182129, -1.0722656, 0.45141602, -1.0410156, -3.4179688, 1.8857422, -0.27392578, -0.83691406, -1.7470703, 1.1884766, -1.4960938, 2.4511719, 0.9140625, -1.6074219, -1.1943359, -0.1459961, -0.4025879, 2.3867188, -0.009315491, 1.1201172, 1.2929688, -1.4667969, 3.5371094, -1.0097656, 1.1425781, 0.68896484, -1.7822266, 1.5546875, -1.3037109, -0.3630371, 1.5361328, 1.5136719, -0.39086914, -0.2902832, 1.5761719, 4.8359375, -0.4873047, -3.0488281, 3.5019531, -2.0058594, -0.39233398, 2.1699219, -0.9379883, -1.6035156, 0.47485352, 1.6298828, 0.48266602, 1.3388672, 0.010498047, -1.3232422, -2.3339844, -0.21411133, -0.68603516, -1.8701172, 1.6972656, 0.54296875, -1.6464844, -1.9697266, 0.73779297, -1.5957031, -0.43139648, 1.8789062, -2.4101562, 2.6582031, 0.026016235, 1.9921875, 1.4550781, -0.26391602, -0.49267578, -1.0361328, -0.19262695, -0.72998047, 0.41796875, 1.3740234, -0.484375, -0.4243164, 0.41333008, -0.3503418, -1.0068359, -2.9101562, 0.50390625, -2.6972656, -4.2617188, 0.7792969, -2.0195312, -0.83691406, 0.79833984, -1.640625, 0.5214844, 0.14990234, -3.9511719, -1.8173828, -1.9550781, -2.3164062, -0.52441406, -0.36669922, -1.2255859, -0.6723633, -2.609375, -0.5703125, -1.2578125, -0.95410156, 0.2956543, -0.1529541, -1.140625, -1.0302734, -2.2558594, -0.81933594, 0.33813477, -0.028533936, -0.20861816, -0.3244629, -2.5839844, 0.48266602, -1.0449219, -0.94677734, -1.4189453, 0.015365601, -2.0371094, -0.34838867, -0.63134766, -1.1132812, 3.9492188, -1.3105469, 1.4277344, -0.029373169, 1.3642578, 1.8740234, -0.71484375, -1.5703125, -1.1738281, 1.9384766, -3.0351562, -4.3320312, -1.3027344, -1.4619141, 1.0498047, 0.41552734, -1.5185547, 1.5341797, -0.6616211, 1.9677734, -2.4609375, -1.1630859, 1.0634766, 1.796875, -0.9501953, -1.3535156, 0.06488037, -0.88427734, -0.6328125, -1.5263672, 0.49829102, 2.03125, -0.32104492, 1.4619141, -0.48046875, -1.1962891, -0.084350586, -0.64990234, -2.6171875, 3.0664062, -0.98095703, -2.9277344, 4.3242188, 0.47729492, -2.3730469, -2.6933594, -1.0976562, 2.9277344, 1.0498047, 2.6113281, 0.81640625, 1.1220703, 1.6132812, 2.3808594, 0.0036830902, -0.92529297, -1.2548828, 2.1777344, -0.375, -2.7851562, -0.0012626648, 1.1650391, -1.4970703, -0.49194336, 2.7792969, 0.41552734, 3.5351562, 1.4990234, 1.7460938, 0.23937988, -1.7021484, 1.4960938, 1.0693359, -1.1152344, 1.4716797, -0.546875, 1.109375, 0.04638672, 1.6943359, 1.5869141, -0.22387695, 2.390625, -0.04232788, 0.9140625, -1.3447266, 1.5517578, 1.0429688, 2.4140625, 1.8261719, 1.7636719, 0.09552002, 0.79833984, 0.5126953, 0.40625, 0.2775879, -2.2011719, -0.12976074, 2.2167969, 0.6557617, -0.015083313, 0.27197266, 1.0029297, 0.7080078, 0.94677734, 1.2382812, -2.1640625, -1.3671875, -0.04852295, 0.17749023, -0.4321289, -2.8027344, 2.5351562, -2.3671875, -1.3789062, 0.5571289, 3.2207031, -1.9814453, -1.4970703, 2.4355469, 0.4621582, -1.0947266, 1.8925781, 1.0693359, -1.8193359, 0.8149414, -0.85498047, 0.9975586, -0.61083984, -0.5859375, 0.037475586, -0.99072266, 0.026870728, -0.74658203, 0.6665039, 1.1953125, 0.47705078, -0.68896484, -1.1279297, -3.4414062, 0.7319336, 0.32250977, -1.4824219, -1.0009766, 2.6894531, 1.0458984, 0.5888672, -0.8198242, 3.1113281, -0.5961914, -0.9243164, 1.1884766, -3.0605469, -2.3183594, -4.0742188, -3.03125, -0.14208984, -1.0380859, -1.0800781, 2.4238281, 0.10205078, 0.1394043, 2.5253906, -0.5541992, -1.4121094, -0.15148926, -1.4013672, 0.18432617, -1.4892578, -0.72998047, -0.3540039, -0.18249512, -1.9970703, -0.6538086, 0.72558594, -0.24987793, 1.1513672, 1.9345703, -4.0507812, 0.39624023, -3.1777344, 0.57714844, 0.4873047, -0.20043945, 1.5693359, -0.69970703, -0.117248535, -3.3007812, 0.7861328, -0.1274414, -0.49072266, 1.2792969, 1.0234375, 0.34204102, -2.4316406, -0.4321289, 1.140625, 3.6601562, -0.08917236, -1.7451172, -2.5332031, 2.0019531, -0.3076172, -1.34375, -1.3847656, -1.75, -0.39770508, -1.8300781, 2.2128906, 0.9951172, 1.7490234, 2.3417969, -1.2724609, -0.67041016, 0.09277344, -1.6875, -1.5722656, -0.111694336, 0.7182617, -0.06695557, -1.9970703, -1.7597656, -0.0037975311, -2.7773438, -0.48095703, -2.1132812, 4.0742188, 1.7099609, 0.28735352, 2.3242188, -1.5732422, -0.14245605, 0.6503906, -0.6308594, -2.3886719, 0.7426758, -0.35302734, 1.0673828, 1.984375, 0.7832031, -1.3300781, 0.6796875, 1.3349609, -2.7792969, 0.05871582, -1.0410156, 0.35546875, -1.3642578, -0.44482422, 2.3222656, -0.29956055, 2.9765625, -0.7661133, -0.63134766, 0.6821289, 1.1523438, -1.2216797, 0.70751953, 0.66259766, 0.31518555, 0.95458984, 1.2861328, 1.7470703, -2.3535156, 0.578125, -0.5913086, 2.25, -0.25439453, 1.2412109, -0.64160156, 1.1972656, -0.45385742, -1.2666016, 0.8808594, 1.6738281, -0.07287598, 3.3652344, 1.2041016, -3, 1.7207031, -0.21008301, -2.8730469, -0.9243164, 0.85791016, 0.20947266, 0.19543457, 1.6660156, -2.8378906, -0.8989258, 1.3457031, -1.3300781, 0.9223633, 0.8256836, -0.6567383, -0.3059082, -0.20361328, -1.6054688, -0.73583984, 0.38256836, -1.0761719, 0.076049805, 0.33764648, -0.37963867, 1.1826172, 1.9384766, -0.35131836, -3.0898438, 2.75, -0.8588867, 1.4882812, 0.09442139, 0.6694336, -2.4863281, -0.50683594, 3.7636719, 0.02973938, 1.0585938, 1.2373047, 0.19250488, -2.8691406, 1.9003906, -2.6308594, 3.03125, -0.6411133, -1.7177734, 2.5722656, -4.0429688, -0.79345703, -2.8808594, 0.7402344, -0.9794922, 2.5097656, 2.3320312, -0.03930664, -0.39086914, 2.3769531, -1.5634766, -3.96875, -1.4775391, 1.0146484, 0.5776367, -0.7319336, 0.96728516, -1.7617188, 0.44311523, 0.12402344, -1.9238281, -2.453125, -0.014152527, -1.5429688, -0.9350586, -1.9511719, 0.41748047, 0.4375, 1.8125, 1.6826172, 0.56591797, 1.1074219, -2.5917969, -1.8681641, 1.4345703, -1.3193359, 0.92626953, 2.9121094, 0.109436035, 0.12805176, -0.23083496, -0.15563965, -1.6728516, 2.2480469, -2.4589844, -0.09918213, 0.3779297, -0.60058594, 0.44970703, -0.68896484, -1.4091797, 1.0185547, -0.42260742, 1.0595703, 2.0625, -0.61621094, -0.72265625, 1.7285156, -1.0966797, -1.8369141, -0.8745117, 0.36328125, -0.36547852, 0.4501953, -2.7421875, 1.3232422, -1.8652344, -1.4775391, -0.33813477, -2.3007812, 1.1240234, -0.21154785, 0.6513672, 2.8144531, -0.23400879, -0.11279297, 0.5932617, -0.7558594, 0.6953125, 0.25195312, -1.6328125, 2.1386719, 1.6298828, -1.1738281, 0.101257324, 0.2709961, 0.8535156, 1.6464844, 1.8613281, -0.30859375, -0.51171875, 0.029876709, -0.5986328, -0.22888184, 0.40649414, 2.7441406, -0.7714844, -1.0566406, 0.6269531, 3.6855469, -0.26000977, 1.2382812, 1.5527344, 0.5942383, -0.67333984, 6.3554688, -0.55029297, -2.7304688, 0.6591797, -2.8144531, 2.265625, 0.44970703, -0.3330078, -0.6748047, 0.13659668, -1.6279297, -2.2128906, -0.5839844, -2.6054688, 1.0126953, 1.7363281, -1.4306641, -0.44213867, 1.2929688, 1.7392578, 2.5234375, 2.5136719, 1.1806641, 0.09307861, 1.7900391, -0.9370117, -0.09442139, 0.5834961, -1.9658203, 2.2304688, 2.4101562, -0.89501953, -2.0019531, 1.5380859, -1.4697266, 2.7519531, 2.4628906, 0.5390625, 1.7392578, 1.6914062, 2.4941406, 0.69970703, 0.77197266, 0.48413086, 0.19909668, 1.6259766, 1.5693359, 3.1621094, 0.7089844, -1.1591797, 1.2255859, -1.2773438, -2.4296875, 1.5097656, 0.3486328, 1.7158203, -3.2226562, 1.8242188, 0.7192383, 1.0048828, -1.828125, -1.1308594, 0.5727539, -1.0996094, -0.30444336, 1.7304688, 4.1640625, -0.14428711, 0.88183594, 0.73876953, -0.9008789, 2.96875, -2.9726562, 0.8203125, 2.4511719, -0.8198242, 1.4121094, 0.74316406, -0.101379395, 0.1105957, 1.4511719, -0.033050537, 0.4482422, 0.3251953, -0.46435547, -1.2539062, 1.03125, 0.7788086, 2.0390625, 0.14367676, -1.3105469, 2.9707031, -2.7851562, -1.6728516, -2.7070312, 4.1132812, 2.5527344, 0.72998047, 1.9892578, -1.4667969, 2.2539062, 1.1308594, 0.22717285, -3.2597656, 1.1660156, -1.4492188, -1.7685547, -0.9868164, 1.4589844, 0.29614258, 1.9902344, 1.3681641, -0.8330078, 2.8007812, -0.084106445, 0.9638672, 1.3974609, 2.3496094, -0.3996582, 0.1953125, -0.5527344, 0.9013672, -0.9326172, -3.2363281, -2.4765625, 2.359375, 0.9638672, -0.5756836, 0.9765625, -0.6982422, -1.5488281, -1.5771484, 0.6738281, 0.8642578, -2.6992188, -1.5888672, 0.6855469, -0.33569336, -1.0097656, -2.1308594, 2.6738281, 0.87109375, -1.4560547, -0.8510742, 2.3808594, -0.10205078, 3.0742188, 0.43725586, 0.3112793, -0.08081055, -1.6425781, -0.17919922, 0.47338867, -2.40625, 0.9370117, 1.3710938, 1.5292969, -1.4951172, -0.79785156, -0.89697266, 0.6328125, 1.234375, 0.94091797, -1.5410156, -1.1279297, 2.078125, -0.95654297, -0.24133301, 3.2226562, -1.2802734, 1.1201172, -2.8535156, -2.1953125, -0.5048828, -0.4321289, -0.013442993, 1.2236328, 3.2285156, 3.8691406, 0.80371094, -0.92529297, -2.6054688, -0.26171875, -1.6181641, 1.4160156, -1.3466797, 0.12792969, 0.3618164, 1.8710938, 2.5527344, -1.0283203, -1.9472656, 1.3232422, -1.7304688, 0.6333008, 0.6850586, 2.9804688, -0.16345215, 0.16491699, 0.24487305, 1.1699219, 1.1591797, -1.2089844, 1.0302734, 3.0644531, -0.39135742, -3.0957031, 3.1484375, -1.1269531, 0.13195801, 0.3857422, 0.60058594, 2.0175781, 1.2470703, 1.7070312, -0.14282227, -2.4355469]}, "B08689LFJ9": {"id": "B08689LFJ9", "original": "Brand: Grand patio\nName: Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle\nDescription: Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

Note:
The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
Glass stones shown in photos are decoration only, and are NOT included.
Batteries: 1 AA battery required (NOT included).

Dimensions: 43.3\" (L) x 29.1\" (W) x 24.2\" (H)
Package Includes:
1 x 43 inch gas fire pit table
1 x Hose regulator valve set (assembled)
1 x Hardware and tools
1 x Assembly & user manual

Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.\nFeatures: Ambience: 18\" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires.\nMaterials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included.\nFeatures: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included).\nDual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off.\nDimensions & Packing Included:Overall Table Size :43.3\" (L) x 29.1\" (W) x 24.2\" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.\n", "embedding": [-1.1494141, 0.35131836, 1.1884766, -1.5527344, 1.890625, 1.4580078, 0.9897461, -2.2460938, -0.4489746, 3.3710938, -0.17199707, 0.71484375, 0.5703125, -4.1953125, 2.5839844, -0.12585449, -0.002456665, 1.0410156, 2.6503906, -1.921875, 2.6992188, -0.34057617, 0.87841797, 0.07116699, 0.3774414, -1.0820312, 2.6445312, -3.40625, -0.10583496, -0.12145996, 1.1269531, 0.91845703, -0.6088867, 1.4960938, -1.8818359, -1.8447266, -1.1357422, 2.0195312, -2.4882812, 0.6401367, -1.7558594, -2.3203125, 3.4453125, 1.3554688, -1.5556641, 0.8701172, 1.5644531, 0.20043945, 0.5419922, -1.4003906, 0.83154297, 1.2646484, 1.7714844, 0.20214844, -2.7851562, 2.0878906, -0.61621094, -2.796875, 2.3632812, 0.97802734, 1.8837891, -1.7021484, -1.0537109, 2.515625, -1.3935547, 1.7363281, -0.6357422, 0.69677734, -0.23132324, 0.8046875, 1.7333984, 0.3552246, -0.78027344, 0.45922852, 1.1523438, -0.78271484, -2.7148438, 1.6279297, 2.796875, -1.6005859, 0.6323242, 2.2792969, 1.1855469, -2.1640625, -0.22619629, -0.57958984, -1.8798828, -0.30688477, 1.0478516, 2.4882812, -1.1689453, 3.8105469, -1.6660156, -3.0488281, 1.1933594, -1.2695312, 0.67578125, 1.4814453, -0.6791992, 1.2304688, 1.7724609, -0.13122559, -1.4716797, -0.52783203, -2.0273438, -0.6616211, 1.4023438, 0.2286377, -1.1005859, 0.52490234, -1.09375, 0.8359375, 2.1738281, -1.8242188, -1.2089844, 2.2773438, 0.39916992, 3.3320312, 3.0820312, -0.14343262, 4.7421875, 0.2866211, 1.0097656, -1.0400391, 0.66552734, -0.12756348, -1.3857422, 2.7070312, 0.9013672, -1.2861328, 0.6479492, -2.953125, 0.6376953, 2.2363281, -2.828125, 0.017059326, -1.6425781, -1.3759766, -5.0898438, 0.10235596, -2.0175781, 1.1494141, 1.6328125, 0.7651367, -4.0195312, -0.88378906, -0.7133789, 2.34375, -0.38012695, -2.0800781, 1.1054688, -0.65283203, 0.57666016, -2.8125, 0.03591919, -2.3789062, 1.8369141, -2.4589844, 3.4179688, 0.48364258, 1.9716797, -2.1035156, -0.85595703, 1.7255859, 0.44482422, 0.11199951, 2.3417969, 0.49853516, 1.7548828, 1.9794922, -0.24914551, -0.54541016, 0.11651611, 1.0507812, 0.045074463, 1.1875, -0.48388672, 2.296875, 2.7617188, 0.7636719, -0.50097656, -1.0898438, -0.19274902, 1.0898438, -0.2006836, -2.7890625, -2.0820312, -2.7617188, 0.29882812, -1.1162109, -1.3525391, -0.9580078, -2.6132812, -1.1513672, -1.2099609, -2.3613281, -3.5898438, -1.2509766, 1.2753906, 0.41918945, -1.0322266, 1.2558594, -1.9404297, 0.15466309, -3.9921875, -1.9326172, -0.51660156, 1.7998047, 1.3808594, 1.21875, 0.26293945, -1.2949219, 1.1650391, -0.08947754, 0.3059082, -0.49780273, 2.1757812, 1.0058594, 1.4511719, 2.8847656, -0.03845215, -0.2310791, 0.63623047, 3.6464844, 0.65283203, 2.1699219, 0.7788086, 1.0058594, -2.2695312, -2.7851562, 2.5195312, -0.6713867, 0.81640625, 1.6259766, -1.3388672, 2.6523438, 0.6791992, -1.6533203, 1.6025391, -0.4494629, -0.12225342, -2.3339844, 0.33813477, 0.015945435, -0.1817627, 1.5078125, -1.9628906, 1.2685547, 1.7978516, -0.14318848, -1.5146484, -0.36010742, 1.8554688, 0.20129395, -0.76123047, 0.2397461, -0.6225586, 0.7416992, 0.83447266, -3.0585938, 0.8754883, 1.2949219, 0.5522461, -0.8022461, -0.33618164, -2.9394531, 2.4511719, -1.0419922, -4.7890625, 0.12445068, -0.2944336, 0.6352539, 2.3242188, 0.32641602, 0.66552734, -0.6777344, -1.4394531, 2.4394531, -0.66796875, 2.2011719, -1.0859375, 0.1116333, 3.109375, -1.2636719, -0.20263672, -0.5703125, 1.2919922, 0.19421387, -0.32421875, 2.2207031, 3.3144531, 0.001083374, -2.1503906, 1.3886719, -0.55126953, -0.20874023, 0.8613281, -0.66748047, 0.12231445, -0.7885742, 0.3395996, 2.0664062, 0.2854004, 2.4472656, -2.828125, -0.58251953, 0.023666382, -2.5273438, 0.90478516, 0.29956055, -0.7158203, -2.0566406, -1.0585938, 0.9375, -1.7753906, -2.25, 2.7949219, -2.84375, 2.3886719, 1.5634766, 0.20483398, 1.0234375, -2.8085938, -1.3320312, -0.23791504, 1.0175781, -1.6679688, 0.053527832, 0.1842041, -0.78027344, -0.15466309, -1.6748047, 1.9404297, -3.40625, -2.1386719, -1.9052734, -2.2421875, -0.50439453, -1.9814453, -1.9013672, -0.3786621, 0.03262329, -2.0488281, 0.27807617, -1.8115234, -0.79541016, 1.1728516, 2.3457031, -3.7832031, 0.25708008, 0.17260742, 2.7011719, -0.18847656, -1.8867188, 0.8125, 1.3183594, 1.1611328, 1.4414062, 0.7832031, -0.7368164, -1.7607422, 1.4765625, 1.1025391, -2.1425781, 1.234375, -2.9902344, -0.35229492, -3.796875, 1.0742188, -0.69433594, -0.45581055, -0.26904297, 1.0488281, -2, -0.41137695, 0.8457031, -2.2070312, 3.7167969, 1.7382812, 1.3085938, -0.16882324, -0.7636719, 2.2265625, -1.4296875, -3.3339844, -0.052581787, 0.07006836, -0.9165039, -2.4570312, -1.4248047, -0.059417725, -1.9863281, -0.59228516, 0.27172852, -0.15979004, -0.11315918, 0.53515625, -2.5839844, -0.3154297, -2.5175781, 1.9238281, 1.2041016, -0.09020996, -1.6289062, -2.0488281, -1.1708984, -1.1416016, -0.082458496, 3.1035156, -0.90966797, 1.8466797, 1.4619141, -1.5048828, 0.7080078, -0.20385742, -4.84375, 2.2578125, 3.2675781, 0.80078125, 0.86572266, -2.5546875, -1.2333984, -1.4667969, 0.57128906, 2.0605469, 1.5820312, 0.92578125, 0.07879639, 2.0019531, 0.9741211, -0.57958984, -0.9169922, 0.117492676, -0.68896484, 2.6464844, -2.3027344, -0.22436523, 0.3071289, 3.5546875, -2.9257812, -1.3544922, 1.484375, -0.6640625, 1.2080078, 0.002368927, 0.6455078, 0.88134766, 0.11193848, 2.2402344, 0.6191406, 2.5664062, 0.51904297, -0.3605957, 1.5537109, 2.3789062, 2.734375, 1.5244141, 1.1230469, 1.3173828, 2.0878906, 1.3037109, -2.5917969, 0.7470703, 1.6660156, 1.7460938, 0.57177734, 1.3779297, -1.9589844, -0.34204102, 0.8408203, -0.012878418, 0.5410156, -2.4824219, 1.2382812, 0.8857422, 1.4228516, -1.5566406, -0.9375, 1.0175781, 1.5224609, -2.90625, 1.0712891, 0.3088379, -0.028121948, -0.8491211, -2.1523438, 0.5307617, -0.73583984, 3.84375, 0.20837402, -3.5332031, 0.82714844, 2.1582031, -0.07354736, -2.0449219, 0.4638672, -2.140625, -2.5234375, 5.6679688, 0.21228027, -1.3330078, 0.17785645, -2.1015625, 1.8339844, 1.0292969, -0.119018555, 0.34448242, 1.0117188, -0.7470703, -1.9755859, 0.4807129, 1.1230469, 1.5791016, -2.7753906, 0.71777344, -0.49169922, -0.70751953, 2.578125, -2.3046875, -1.3017578, 2.4433594, -0.4050293, 0.6689453, -1.1484375, 2.0820312, -0.7314453, -0.8198242, 2.1738281, -0.42211914, -1.4433594, -2.2246094, -4.0585938, 0.37280273, -2.890625, -1.4785156, 1.4960938, -0.46166992, 0.07684326, 0.6660156, -2.3632812, -3.2773438, -1.4833984, -1.7060547, 0.009056091, -4.5546875, -1.1933594, 0.14978027, -0.30859375, -0.88427734, -1.5263672, 0.2208252, 2.9726562, 1, 1.6640625, -0.52685547, 1.5390625, -2.7265625, 0.32202148, 0.69140625, 0.9692383, -1.4765625, -1.890625, 0.8574219, -2.8007812, 1.8720703, 1.6552734, -1.5302734, 2.0449219, 2.3007812, -0.4716797, -0.81689453, 1.3427734, 0.057647705, 4.8203125, -1.0849609, -3.296875, -0.5625, 0.095581055, -0.10089111, -0.81396484, -2.2050781, 0.37353516, -1.8251953, -1.1621094, 0.019897461, 2.7851562, 0.7373047, 0.7714844, -3.7382812, -0.2208252, -0.2998047, -1.6621094, -1.296875, -1.0273438, -0.25341797, -1.0136719, -1.1757812, -2.0839844, -0.6196289, -2.4199219, -1.0351562, -1.3544922, 4.0976562, 2.5273438, 2.8847656, 3.9296875, -1.4189453, 0.03302002, 1.8613281, -1.3662109, 0.6123047, 2.5429688, 0.69384766, -0.15722656, 2.125, -0.36743164, -1.7070312, -0.8149414, 2.2675781, -2.8222656, -0.9145508, 0.53564453, -1.4287109, -0.12561035, -1.1220703, -1.8535156, -1.6259766, 1.2958984, -2.4511719, -0.546875, -2.0019531, -0.546875, -1.2148438, 0.6430664, 0.3232422, 0.04348755, 1.4121094, 1.9287109, -0.1373291, 0.91845703, 3.0078125, -0.10656738, 2.7851562, -2.5371094, -1.1601562, -0.82470703, 0.17663574, -1.7744141, -1.65625, 0.2705078, 2.0585938, -1.8652344, 2.5019531, 0.9609375, -3.0957031, 3.8046875, 0.72216797, -1.5849609, -0.41088867, 0.5209961, 0.5209961, 1.3291016, 0.089416504, -3.3203125, 0.21484375, 1.4931641, -0.18725586, 2.0273438, 1.0136719, -1.5986328, 0.34350586, -2.2753906, -0.796875, -0.1842041, -1.1318359, -1.6826172, -1.5908203, -0.08569336, -3.5546875, 0.8461914, 2.2109375, -2.078125, -1.9238281, 2.6152344, 2.0175781, -0.71777344, -0.43896484, 0.99316406, -1.5302734, 1.0419922, 0.24230957, 0.78125, 0.9135742, -1.6455078, 0.9248047, -2.2714844, -0.23876953, -2.0917969, 3.9453125, -1.8623047, 0.10644531, 4.0234375, 0.81640625, 2.6386719, -3.8046875, 0.79833984, -0.078430176, 1.2529297, -0.4868164, 0.20727539, -0.7348633, -1.2636719, -1.9033203, -1.8828125, -0.23657227, -0.4946289, -3.2089844, -0.0725708, -1.2314453, -0.010627747, -0.12646484, 0.85253906, -0.6098633, -1.6875, -0.82421875, -1.2910156, -0.28100586, -0.8745117, 0.86328125, 1.03125, 0.8808594, -1.0332031, -0.5258789, -0.5600586, -3.4375, -0.88916016, 2.5664062, -1.34375, 2.0585938, 1.8320312, -1.6738281, 1.5507812, 2.1269531, 0.12731934, -0.5571289, 1.5234375, -0.8852539, -0.20544434, 2.9433594, -1.7685547, 2.4433594, 0.69970703, -0.6953125, 1.6191406, -1.9970703, 0.43188477, -0.99853516, 1.8408203, -0.5527344, 0.48876953, 0.17602539, -0.86279297, -0.16809082, 0.15307617, 3.1640625, 2.4472656, -2.4414062, -0.7602539, -1.5146484, -0.78271484, -2.0175781, -2.3652344, -1.15625, -1.2861328, -0.6538086, 1.6894531, 0.7993164, 0.34423828, 1.9169922, 0.44677734, -2.7109375, 0.5551758, -1.4140625, 2.2695312, 0.81591797, -1.7802734, -1.8984375, -3.359375, -0.61376953, 1.9628906, 0.66748047, -1.1318359, 0.27368164, -3.0136719, 1.9023438, -0.13354492, 1.1396484, 2.1445312, 1.5966797, -1.1884766, 0.65625, 1.4716797, 0.46411133, 1.4091797, -0.52685547, 1.78125, -0.22692871, 2.3828125, 1.7607422, -1.8496094, 0.65185547, -1.3525391, 1.0625, -1.0126953, -1.1044922, 2.0371094, -2.5488281, -1.6972656, -2.8535156, -0.47851562, -4.171875, 0.80615234, 1.6679688, 0.88671875, -0.7524414, -0.21936035, 0.13952637, 1.3154297, 1.1494141, -0.8017578, 0.12902832, -0.8178711, -1.0966797, 0.98535156, 1.8789062, 0.06011963, 1.6044922, -0.265625, -0.39868164, -1.3300781, 2.2246094, -0.6225586, -0.63671875, 1.8271484, 1.3154297, 2.2324219, 1.2236328, 3.6328125, -0.5332031, 1.7480469, 1.8291016, -1.1796875, -0.32055664, 1.6162109, 3.9082031, 0.9296875, 0.7988281, 0.85546875, 2.3300781, -1.5400391, -1.1875, 0.21679688, 0.28979492, -1.859375, 1.5039062, -1.0722656, 3.0917969, -1.7412109, 0.48217773, -0.77197266, 0.6689453, -0.6855469, -1.1845703, 2.3027344, -0.5205078, -1.1513672, 0.5908203, 0.9926758, 0.59033203, -3.203125, 2.6015625, -0.6665039, -2.2773438, -0.46826172, 3.6152344, 1.1298828, 0.8857422, -0.28686523, 2.3300781, 1.2617188, 1.9150391, 2.3417969, -0.5175781, 0.11968994, 1.5527344, 1.9833984, 1.1523438, -2.03125, -1.8222656, 1.1542969, -1.2578125, -3.4472656, 0.87939453, 1.3466797, 1.0283203, 1.1660156, -1.3359375, 0.9736328, 1.9990234, 1.1025391, -2.0917969, -0.97216797, -0.9975586, -2.3535156, -0.15722656, 0.9345703, -1.6796875, 2.7363281, 2.2050781, 0.42504883, 2.9628906, 2.5410156, 0.5878906, 0.86865234, 0.5722656, -2.2324219, 0.35498047, -1.6181641, 1.4013672, 1.0234375, 0.38598633, 1.8222656, 1.2490234, 2.203125, -0.66845703, 0.3708496, -2.8007812, -1.4804688, -0.2998047, -1.6552734, 0.62353516, -1.1806641, -1.6953125, 1.65625, 1.5361328, -0.20166016, -3.2597656, 1.6074219, 0.71777344, -2.09375, -0.12084961, 0.93359375, -0.83740234, 2.1035156, -1.3037109, -0.37353516, 0.8334961, -0.51171875, 2.6757812, -0.9013672, -1.2177734, -1.1845703, -0.08154297, -0.3371582, 0.03756714, -1.3193359, 0.16674805, 0.12017822, 0.47802734, 4.3085938, -1.4746094, 0.30029297, -1.46875, 0.34472656, 0.44580078, 2.3515625, -1.1015625, -1.7021484, -1.21875, -4.5820312, 0.8930664, 0.086364746, -1.9765625, -0.19189453, 6.140625, 3.8261719, 0.27441406, -1.0195312, -4.0351562, -0.48486328, 0.76660156, 2.8632812, -0.5, -0.26123047, -0.37963867, 1.6191406, 4.9179688, 0.040802002, -0.64501953, -1.1435547, -1.0761719, 1.3261719, -0.5878906, 1.8408203, 1.2021484, 1.0419922, 0.6254883, 1.6611328, 2.5898438, 0.20788574, 1.1201172, 3.2070312, -0.20983887, -2.8066406, 1.4238281, -1.3525391, 0.007534027, 1.7871094, 1.5771484, 1.0058594, -1.3525391, -0.21362305, -4.234375, -0.70410156]}, "B0098HR1FI": {"id": "B0098HR1FI", "original": "Brand: Weber\nName: Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual\nGrill dimensions: Lid Open - 63\"H x 52\"W x 32\"D. Lid Closed - 45.5\"H x 52\"W x 24\"D. Grilling area dimensions: 529 square inches\nPropane gas grill works with Standard 20 lb LP tank (sold separately).\nOther specifications: BTU-Per-Hour Input \u2013 32,000. Stainless Steel Burners \u2013 3. Side tables \u2013 2 (Stationary) Swivel Casters \u2013 2\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\n", "embedding": [-1.9931641, 0.89404297, 1.8681641, -0.9667969, -1.7871094, 0.9848633, -0.75927734, -0.40551758, 2.09375, 1.0253906, 3.3496094, 0.82421875, 0.89160156, -4.6054688, 0.6660156, 1.0585938, 2.4628906, 2.0644531, 0.6904297, 0.14086914, 0.70458984, 0.19311523, 1.4697266, -1.4414062, 1.5087891, 1.1591797, 3.2617188, -5.1015625, 0.10992432, -2.3867188, 1.2128906, 1.4179688, 0.4074707, 2.2265625, -3.65625, -1.8066406, -3.0761719, 1.2070312, -2.78125, 0.5732422, -0.18408203, -1.2783203, 1.4404297, -0.68652344, -1.2070312, 0.6308594, 0.74853516, 0.9379883, -0.7373047, -1.0400391, 2.3183594, 1.765625, -0.57470703, 0.8491211, -1.6796875, 1.6855469, 1.1425781, -1.7900391, 1.3466797, -0.11846924, 2.6503906, -0.22070312, -2.8417969, -1.4707031, -1.3066406, -0.2211914, 0.55078125, 0.16015625, -0.42041016, -0.1776123, 3.3886719, -1.1738281, -0.65478516, 1.3779297, 1.1455078, -1.9228516, -2.015625, 2.7148438, 0.30004883, -1.2080078, -1.0263672, 2.6386719, 1.8691406, -2.1542969, -0.17199707, 0.9160156, 1.3759766, -1.4814453, 1.4511719, 1.0673828, -0.77197266, 1.4931641, -2.4355469, -3.4453125, 1.9023438, -0.030334473, 2.2949219, 0.8432617, -0.76464844, 0.8930664, -1.7587891, 1.6875, -1.3662109, -1.1689453, -2.3027344, -1.0058594, 0.7050781, 0.18615723, -2.5195312, -0.49194336, -0.8251953, 0.022903442, 0.8120117, 1.0419922, 0.3239746, 1.921875, 0.14733887, 2.6542969, 0.07922363, 0.8510742, 3.6035156, -1.3388672, 0.21984863, 0.11773682, -2.0234375, -0.6503906, -0.0574646, 2.4824219, 2.3984375, -1.7382812, -1.2226562, -0.32299805, 3.7480469, -0.18322754, -0.4243164, -1.3027344, -0.78515625, -1.2548828, -3.3339844, -0.54785156, -1.0673828, -0.19873047, 1.7275391, -1.9892578, -4.0625, 0.15576172, 0.421875, -0.15856934, 0.8183594, -1.0253906, -0.79541016, -0.96972656, -2.4863281, -2.1132812, 1.6132812, 1.0039062, -0.18652344, 0.43676758, 3.2558594, 2.9316406, 2.3261719, -0.8486328, -2.4199219, -0.54248047, 1.0927734, 0.48999023, 1.6337891, 0.43286133, -1.0927734, 0.7368164, 0.61328125, -0.19714355, -0.14611816, 1.3427734, 1.4111328, -1.734375, -0.71435547, 1.4785156, -0.15100098, -0.79052734, -1.6757812, -1.2001953, -0.27856445, -0.5991211, 0.16040039, -0.6904297, -0.54785156, 0.13061523, 1.0498047, -1.5136719, 1.0253906, -0.30908203, 0.6069336, 0.39160156, 1.5673828, -2.125, -1.4804688, -2.0175781, 1.2734375, 0.6411133, -0.78564453, -1.4882812, 0.9980469, 1.3925781, -1.0625, -1.9472656, -0.1138916, -2.7910156, 0.3918457, 1.1689453, 1.4931641, -1.5341797, 1.3427734, -0.7895508, 1.4882812, -1.2636719, 2.7070312, 1.2519531, 1.328125, 1.5458984, -0.22216797, -0.36816406, 0.4440918, 2.5, 1.4296875, 0.17541504, 0.51464844, 1.1835938, -3.3261719, -0.8413086, 3.140625, 0.17944336, -0.23449707, 0.8149414, 0.44995117, 2.6582031, 0.17504883, 0.20751953, -0.61328125, 0.3564453, 0.76660156, 1.21875, -2.953125, -1.2910156, -0.115356445, -1.7900391, -1.4541016, 1.8095703, 1.3173828, 0.49047852, 1.4912109, 1.1191406, 1.0957031, 2.4082031, -0.4020996, 1.1259766, -1.3085938, 2.4160156, 0.69628906, -1.2158203, 0.9819336, 0.6484375, 0.05432129, 0.4243164, 1.4960938, -1.1582031, 0.9267578, 2.4160156, -1.7011719, -0.9790039, 1.1054688, 0.07299805, 0.17944336, -1.0556641, 2.5429688, 1.1337891, -1.6416016, 2.6308594, 1.1259766, 0.58984375, 0.44873047, -2.2519531, 1.5380859, -4.1132812, 0.10028076, 0.004169464, 1.2265625, -2.3300781, -2.453125, 0.8300781, 4.2578125, -0.8388672, -1.9931641, 2.8144531, -2.0058594, 0.86816406, 2.3457031, 0.55322266, -0.9145508, 1.8554688, 3.015625, 0.42260742, 1.1259766, 1.5546875, 0.009231567, -1.3085938, 0.94189453, -3.5605469, -0.41137695, 1.21875, -1.0380859, -0.9213867, -1.1083984, 1.296875, -1.9697266, -2.390625, 2.3496094, -2.7148438, -0.69091797, -0.72509766, 2.5410156, 0.25854492, -0.62939453, -0.15454102, -0.61621094, -0.39257812, -1.0019531, 1.8662109, 0.0051498413, -1.3945312, -0.7446289, 0.42651367, 0.014801025, -2.4414062, -2.0585938, -1.2773438, -2.5859375, -2.3984375, 2.5800781, -2.1875, -0.12976074, 1.0546875, -2.8574219, 0.06201172, 0.7089844, -2.84375, -0.14099121, -0.048858643, -0.6142578, -1.046875, 1.0771484, 1.3222656, -1.6044922, -2.5332031, -0.17907715, 0.5444336, 1.5566406, 0.47753906, -1.4287109, -0.33642578, 1.25, 0.49560547, -0.69970703, 1.40625, 1.7949219, -1.8994141, 0.9663086, -3.6933594, -1.4775391, -2.5957031, 0.68115234, -0.5649414, 1.3183594, -3.1503906, -2.3222656, -1.7832031, -0.2232666, 5.421875, -0.3869629, 1.4697266, -0.01928711, 0.13085938, 0.8378906, -2.2734375, -1.8515625, 0.81933594, 1.2529297, -2.1738281, -1.3115234, -3.1953125, -0.6582031, -3.0742188, -0.54052734, 0.42138672, -0.90234375, -0.9453125, -0.34326172, -1.8056641, -1.4550781, -0.9995117, 0.29125977, -0.024139404, -1.4072266, -1.8730469, -1.0839844, -1.5341797, -0.34228516, -1.9677734, 1.0605469, -0.54833984, 0.63671875, 1.3847656, -0.0024967194, 0.94628906, -1.7421875, -3.4980469, 3.6992188, 0.65185547, -3.5175781, 1.2304688, -2.6972656, -1.8535156, -1.2851562, -0.19628906, 2.1445312, 2.4257812, 1.8583984, 1.2480469, 1.8173828, -0.7915039, -2.1054688, 0.88671875, -1.3496094, 1.4785156, 4.5390625, -2.7480469, -0.6767578, 0.94970703, 0.79248047, -2.5507812, -1.1953125, 2.34375, 2.5410156, 2.2714844, 1.7207031, 1.9804688, -1.5087891, -1.6123047, 2.0214844, 1.3134766, -1.390625, 0.46289062, 0.3552246, 1.0263672, -1.3525391, 1.6113281, 1.640625, 0.4177246, 2.3828125, 1.7714844, 0.26245117, -1.1796875, -0.014450073, 0.078308105, 1.5751953, -0.92041016, 1.3691406, -0.2553711, 0.02571106, -0.98828125, -0.39916992, -0.46264648, -0.22485352, -1.578125, 3.1542969, 0.02508545, -1.0498047, 0.45166016, 1.4287109, 1.9248047, -0.5722656, -0.3161621, -1.6181641, -1.1054688, 1.9033203, -1.9580078, 0.87646484, -1.7949219, 0.9902344, -0.18566895, -1.6484375, 1.6279297, 3.4941406, -2.5566406, -1.2939453, 1.3476562, -1.2636719, -0.23010254, 2.3144531, 1.2685547, -0.8203125, 1.6015625, -2.3046875, 1.0478516, 0.53125, -1.1005859, -1.3496094, -0.4741211, 2.0449219, 0.29370117, 1.3740234, 2.1660156, -0.101257324, -3.4042969, 0.1965332, -3.1171875, -1.3837891, 1.03125, -2.5585938, -0.80566406, 2.9980469, 0.33544922, 0.6845703, 0.69433594, 2.9003906, -1.515625, 0.43676758, 2.0898438, -2.4824219, 0.6118164, -4.1445312, -3.5722656, 0.87060547, -1.5439453, 0.36279297, 1.40625, 0.24938965, 0.29736328, 3.5371094, 1.9091797, -2.5078125, -1.2490234, -0.51464844, 0.265625, -0.6386719, 0.1472168, 0.093688965, -0.5629883, -2.9277344, -2.8671875, -0.17492676, 0.57666016, 1.4511719, 2.2519531, -3.4765625, 0.07446289, -1.6865234, -2.0234375, -2.1914062, -0.3317871, 1.3232422, -1.2089844, 0.24621582, -3.5, 1.5371094, 1.8349609, -0.99316406, 1.7832031, 2.7597656, 0.22619629, -2.4082031, 2.0371094, 0.36816406, 2.640625, -1.2792969, -2.7070312, -0.1315918, -0.13586426, -0.57714844, -0.89990234, 0.43725586, 1.7412109, -0.9741211, 2.4238281, 1.5830078, 0.43310547, 0.47827148, 0.33007812, -2.8359375, 1.0957031, -1.1601562, -1.2773438, -1.6074219, -1.109375, 0.37573242, -1.1826172, 0.5078125, -3.125, 1.4765625, -1.3144531, 0.640625, -3.9628906, 3.4492188, 2.8007812, 3.6875, 2.4238281, -1.1796875, 0.117492676, -0.48901367, -0.10681152, -1.359375, 1.0849609, 0.24108887, -0.34448242, 2.6152344, 1.0039062, -2.2519531, -0.32763672, 0.43017578, -2.1542969, -0.8129883, -2.5644531, -1.1621094, -1.5175781, 0.14941406, 0.10650635, -0.21887207, 2.6953125, -0.59716797, -0.32592773, -0.22424316, 1.3105469, -1.3916016, 0.020080566, 0.96240234, 0.22937012, -0.44604492, 0.9614258, 0.6640625, 0.048828125, 0.9790039, -1.8066406, 1.8173828, 0.030136108, -0.0970459, 2.0195312, -0.39453125, -0.6748047, -0.82421875, 1.234375, 2.5625, 1.1552734, 2.6699219, 0.58984375, -2.2753906, 2.0625, 1.5273438, -3.6816406, 0.98535156, 0.9848633, 1.3457031, 2.5058594, 0.3359375, -3.8085938, 0.5107422, 0.75439453, -0.3564453, 0.031463623, -1.5498047, -0.8076172, 2.1230469, -1.5273438, -0.40478516, -0.46484375, -0.5595703, 0.9067383, 3.046875, 0.12200928, -1.1816406, 1.734375, 3.2539062, -1.3876953, -1.7539062, 0.6870117, -1.2851562, 1.0820312, -3.1210938, 0.5283203, -2.0566406, -0.20898438, 2.4511719, 1.4970703, 1.0527344, 0.44140625, 2.1171875, -2.6308594, -1.0498047, -2.2695312, 1.7587891, -2.109375, -0.00081920624, 1.0810547, -2.4609375, 0.58740234, -2.3808594, -1.3623047, -0.20947266, 2.2792969, 1.2363281, 0.060638428, -1.3085938, 1.3388672, -1.2568359, -3.5722656, -1.6972656, -0.40234375, 0.27319336, 1.0195312, 2.0429688, -0.6088867, 1.8183594, -0.10662842, 1.0751953, -1.4853516, 1.2548828, -0.6845703, -0.27661133, 0.19763184, -0.92578125, -1.6054688, -0.4338379, 0.7763672, 1.1650391, 1.0888672, -2.9042969, -1.2822266, 0.22155762, -1.5, 0.5107422, 2.0058594, 1.6240234, 0.31640625, 0.122924805, 1.6347656, -2.140625, 1.9277344, -2.5488281, -1.3955078, 0.8378906, -0.9667969, 0.97509766, -0.8989258, -1.7324219, 0.42504883, 0.84277344, 2.0761719, 1.1201172, -0.63671875, -1.3964844, 0.46264648, -1.0791016, -1.5976562, 0.3918457, -0.05923462, 0.70214844, 1.3652344, -1.7460938, -0.9238281, -0.44604492, -1.8056641, 1.2080078, -2.4335938, -0.6098633, -1.3222656, 0.69628906, 0.89941406, -0.21862793, -0.9135742, 3.171875, -1.0214844, -1.9667969, 1.2626953, -0.4309082, 4.1328125, 3.1582031, 0.4338379, -1.2519531, -1.7392578, 0.73291016, 3.0878906, -0.022750854, -1.2753906, 0.9482422, -0.5253906, 0.3322754, -0.2866211, 2.0644531, 1.8720703, -0.09814453, -0.62841797, 1.5703125, 2.9824219, -0.8901367, 1.0546875, 0.97021484, 2.2773438, 0.4638672, 3.0664062, 0.8305664, -3.2304688, 1.6943359, -2.0136719, 2.1113281, -1.0722656, -1.3154297, -0.6225586, -0.7421875, -2.0996094, -2.2070312, -2.1367188, -2.6328125, 1.6054688, 1.6181641, -2.5078125, -1.1748047, 0.8261719, -0.4362793, 3.6191406, 0.6640625, 1.40625, -1.6416016, -0.87353516, -0.45410156, 0.10882568, 0.7426758, -4.3710938, 1.9140625, 1.5742188, -0.5229492, -1.9882812, 1.6669922, 2.2402344, 1.8408203, -0.15795898, 2.4902344, 2.9238281, 1.59375, 2.4121094, 0.15283203, 2.6699219, 1.4707031, -1.0644531, 1.0644531, 1.5722656, -0.45532227, 0.6972656, -1.6464844, 1.9443359, -1.7060547, -1.7089844, -0.7446289, -0.73095703, 1.5664062, -1.9697266, 0.5415039, 0.9199219, 2.4980469, -1.1699219, -0.7758789, -0.46899414, -1.2080078, 1.1757812, -0.20056152, 1.7197266, 1.1171875, 0.20605469, -1.8994141, -0.2927246, 2.2109375, -4.2109375, 1.0615234, -0.45898438, -1.4394531, -1.2470703, -2.2011719, 2.5429688, 1.3007812, -0.32861328, 0.010643005, 4.515625, -0.3239746, 1.4042969, -2.0546875, -0.6635742, -1.1630859, 2.4511719, 0.5444336, -1.6347656, 0.22717285, -1.1337891, -4.0859375, -3.5097656, 3.5917969, 2.1679688, 0.70166016, 0.84765625, -1.28125, 3.5429688, 0.87353516, 2.2265625, -0.3005371, -1.0283203, -1.0380859, -3.3867188, 0.9316406, 0.09326172, -0.5761719, 1.4521484, -0.05670166, 1.4863281, 0.8208008, 1.5605469, 1.2470703, -0.030838013, 1.6953125, 3.203125, 1.1357422, -1.2509766, 0.60058594, -1.2587891, -1.7607422, -2.4453125, 3.1367188, 1.6181641, 0.51171875, -0.35717773, -1.1689453, 0.030792236, -1.828125, -0.16894531, -0.3166504, -2.2148438, -0.71972656, 1.3730469, 1.8173828, -1.8837891, 0.73876953, 1.9091797, 1.6152344, -1.6191406, 2.2207031, 3.1738281, -0.76660156, 0.6982422, 0.6010742, 0.46826172, 0.5732422, 0.6274414, 0.7001953, -0.7685547, -0.43066406, 0.6826172, 1.6123047, 0.8100586, -0.18041992, 0.3154297, -0.7944336, -1.4511719, -0.5332031, 0.24829102, 0.8286133, -1.7285156, 2.8222656, 0.21960449, -1.7246094, 0.96777344, -0.6308594, 0.98535156, -2.2441406, -2.2871094, -1.2568359, -0.81152344, -1.0332031, 1.9892578, 4.421875, 0.43359375, 0.18286133, -2.0332031, -4.0859375, -0.7402344, -2.8867188, 2.8066406, -1.1035156, -2.1132812, -0.6123047, -0.08404541, 2.5058594, -1.4091797, -0.012710571, -0.5463867, -2.1777344, 1.2724609, -0.2475586, 1.3222656, -0.09442139, 0.16503906, 2.4941406, 2.3359375, 1.6279297, 1.2539062, -0.64208984, 2.1171875, -0.75878906, -2.4960938, -1.2568359, 0.45263672, -0.7011719, 0.021514893, 0.21533203, 2.1210938, 1.2021484, -1.0429688, 0.044433594, -3.0644531]}, "B00RFXS1Z6": {"id": "B00RFXS1Z6", "original": "Brand: Weber\nName: Weber 51010001 Q1200 Liquid Propane Grill, Black\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nDimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\nEasy-start electronic ignition and infinite control burner valve settings\nCare instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)\n", "embedding": [-0.21276855, 0.3413086, 1.5683594, 0.021453857, -2.4355469, 0.6977539, -0.29467773, -0.5307617, 0.22436523, 1.8300781, 2.3378906, -0.25219727, -0.5966797, -3.5195312, 0.7949219, 0.23596191, 2.2949219, 1.0224609, 0.13989258, -0.015068054, 1.0478516, 1.0341797, 1.1601562, -1.5410156, 2.0507812, 1.5166016, 4.7148438, -5.1757812, -1.1738281, -1.8134766, 0.27246094, 1.8173828, 1.359375, 1.875, -3.1582031, -1.1630859, -3.1738281, 1.6259766, -2.21875, 0.44555664, -0.7788086, -2.2714844, 1.4189453, 0.017944336, -2.2011719, 1.40625, 1.4785156, 0.13232422, -0.7080078, -0.24194336, 2.2578125, 1.0712891, -0.58203125, 0.734375, -0.51660156, 2.3867188, -0.18322754, -1.8535156, 1.0234375, -0.43115234, 2.2070312, 0.40844727, -2.8261719, -0.5288086, -1.2861328, -0.07757568, -0.81591797, -0.8857422, 1.4804688, -0.30151367, 3.4316406, -1.9003906, -0.8730469, 0.19995117, 1.8183594, -1.390625, -2.1953125, 2.3066406, 0.83935547, -0.7182617, -0.5473633, 2.3027344, 1.0410156, -2.2773438, 0.047302246, 0.42211914, 0.11834717, -2.28125, 3.0175781, 2.1699219, -0.12670898, 1.5009766, -2.6230469, -4.6757812, 1.7050781, 0.054504395, 1.0498047, 1.1181641, 0.5776367, 0.9838867, -1.5517578, 1.0703125, -1.6337891, -1.4179688, -2.671875, -1.1337891, 0.9121094, 0.06921387, -3.9355469, -0.88916016, -1.1103516, 0.6298828, 0.76171875, 1.2294922, 1.15625, 0.9658203, 0.03564453, 2.2636719, 0.9746094, -0.24047852, 2.5410156, -1.9189453, 0.43896484, -1.6591797, -1.2089844, 0.003698349, -0.62890625, 0.2631836, 2.828125, -2.3417969, -0.5253906, 0.3034668, 3.8007812, 0.51953125, -0.80810547, -0.51220703, -1.2578125, -0.47729492, -1.7949219, -0.9770508, -1.7666016, 0.8544922, 1.1328125, -0.9199219, -4.0898438, -0.86376953, 0.7036133, 1.0976562, 0.31030273, -1.9228516, 0.057678223, -1.2666016, -0.79052734, -1.0488281, 1.4453125, 0.8955078, -1.8623047, -0.27148438, 3.4667969, 2.8203125, 1.3867188, -0.19140625, -0.32080078, 0.4152832, 0.02468872, 0.49609375, 1.8085938, 1.9199219, -0.63134766, 1.2705078, -1.1064453, -1.3828125, -0.52490234, 0.5786133, 0.9345703, -1.5517578, -0.32666016, 2.0488281, -0.49145508, -0.7451172, -1.4648438, -2.6425781, -0.13024902, -0.74853516, 0.56152344, -1.0107422, -0.38085938, -0.9145508, 1.1826172, -1.6855469, 0.24597168, 0.2998047, 2.1464844, -0.49609375, 0.5151367, -1.0566406, -0.34643555, -2.0878906, 1.2216797, -0.12359619, -1.0087891, -1.7382812, 1.0927734, 0.71191406, 0.047790527, -2.3847656, -0.2142334, -2.6894531, 1.0537109, 1.1328125, 1.8037109, -1.9931641, 0.66796875, -0.75, 0.52197266, -1.9316406, 1.4023438, -0.25097656, 0.5605469, 2.5917969, -2.0175781, -0.23522949, 1.0195312, 1.3603516, 0.9296875, -0.50634766, 0.24768066, 0.6845703, -3.4433594, -1.0107422, 3.2929688, 0.7680664, -1.1865234, 0.17272949, 0.5341797, 2.921875, 0.96435547, -0.4399414, 0.34448242, -0.73876953, 0.18066406, 0.9472656, -2.296875, -1.2851562, -0.030395508, -0.16271973, -2.2265625, 1.9433594, 0.91552734, 0.1697998, -0.080200195, -0.39038086, 0.2939453, 1.2148438, -1.3457031, 0.7104492, -1.8867188, 1.7861328, 0.15600586, -2.7832031, 1.5839844, -0.008644104, 0.2631836, -0.07385254, 0.86083984, -1.1865234, 2.5195312, 1.7714844, -1.6416016, -0.9213867, 0.7441406, 0.33911133, 0.03881836, -0.9868164, 1.4375, 1.8974609, -2.3320312, 3.0253906, 0.32250977, 0.6821289, 0.3869629, -1.171875, 1.609375, -3.6484375, -0.25024414, 0.16394043, 0.21728516, -1.2763672, -2.5605469, 0.15405273, 3.3027344, -0.2607422, -1.9785156, 2.9726562, -2.4570312, 1.1201172, 1.6835938, -0.34301758, -0.30004883, 0.5517578, 1.8779297, 0.10510254, 0.53808594, 1.5957031, 0.16577148, -2.3320312, 0.023880005, -4.2929688, 1.1064453, 1.6113281, 0.08947754, -0.921875, -1.6132812, 1.5351562, -3.0527344, -1.59375, 1.9716797, -4.375, 0.015602112, -1.3984375, 2.1367188, 0.2565918, -0.97314453, -0.6279297, -1.3652344, -0.25610352, -0.7739258, 0.8828125, 0.4897461, -2.2265625, -1.0009766, -1.265625, -0.48779297, -1.6337891, -1.4160156, -1.7148438, -1.7792969, -2.7871094, 1.9355469, -1.3359375, 0.047698975, 2.3554688, -2.8320312, -0.21838379, 0.040618896, -3.109375, -0.27734375, -1.5087891, -1.0087891, -1.1542969, 1.2011719, 0.9716797, -1.53125, -4.3085938, 0.6357422, -0.3269043, 0.47607422, -0.9194336, -0.77685547, 0.060668945, 0.87353516, 0.048706055, -0.67822266, 0.68847656, 1.6884766, -1.7822266, 0.55126953, -2.0429688, 0.70214844, -1.890625, 0.7607422, 0.7729492, 0.7416992, -3.1230469, -1.9960938, -0.43847656, -0.20666504, 3.6816406, 0.08929443, 1.2988281, 0.4116211, 0.8510742, 1.4326172, 0.1105957, -2.0527344, 1.0332031, 1.1923828, -1.8457031, -1.7431641, -3.4882812, -1.0117188, -2.8046875, -0.24597168, 0.4404297, -0.060394287, -1.9414062, -0.4489746, -0.6254883, -0.40405273, 0.119140625, 0.32836914, -0.14294434, -1.5214844, -2.7617188, -1.1113281, -1.5859375, 0.06707764, -1.4882812, 1.6894531, -0.15393066, 1.2333984, 2.5195312, -0.6875, 2.1289062, -0.55029297, -4.1328125, 3.8652344, -0.3059082, -2.7207031, 1.09375, -2.7753906, -2.1679688, -1.7275391, 0.22888184, 2.2265625, 2.3398438, 2.7109375, 2.2617188, 1.5380859, -0.11462402, -1.3164062, -0.12768555, -1.3652344, 1.1513672, 3.0273438, -2.6894531, -2.1269531, 1.0947266, 1.1503906, -3.5722656, -0.7993164, 2.5917969, 1.6376953, 1.4042969, 1.7597656, 1.3144531, -0.7631836, -0.83447266, 1.1337891, 1.9111328, -1.171875, 0.83691406, -0.12756348, 0.36914062, -0.46801758, 1.3466797, 2.7871094, 1.3583984, 1.3935547, 3.2324219, 1.0791016, -0.31420898, -0.31958008, 0.5385742, 1.6240234, 0.4560547, 1.7792969, -1.2451172, 0.17089844, -0.5966797, -1.3525391, 0.45458984, -0.49291992, -0.7104492, 3.6542969, 0.37646484, -0.7729492, 1.0947266, 1.9492188, 1.1240234, -0.82421875, -0.47729492, -1.0878906, -0.14538574, 2.4589844, -0.62939453, 0.73291016, -1.6289062, 1.09375, -0.0035190582, -1.9091797, 0.02079773, 2.890625, -1.4638672, -1.4003906, 0.059295654, -1.2666016, 0.33935547, 1.7509766, 0.66308594, -0.9003906, 0.5966797, -2.3066406, 0.91845703, -0.38623047, -1.0810547, -0.97558594, -1.6689453, -0.017440796, 0.5957031, 2.0292969, 2.0234375, -0.016967773, -2.1875, 0.4946289, -3.6933594, -1.9707031, 0.9082031, -2.4726562, -0.5957031, 1.3740234, -0.011985779, 1.3476562, 0.28198242, 2.0214844, -1.5039062, 0.82714844, 1.5585938, -2.6113281, -0.4543457, -2.9667969, -3.9042969, -0.15246582, -0.6489258, 0.33398438, 1.5683594, -0.25219727, 0.2939453, 2.8027344, 0.7402344, -1.5087891, -0.9746094, -1.2587891, 0.8828125, -1.2431641, 1.1337891, 0.80908203, -0.43164062, -1.8886719, -1.5771484, 0.27490234, 0.4658203, 1.2861328, 1.5810547, -3.4628906, 0.1850586, -1.1660156, -0.5332031, -0.26904297, -0.6279297, 1.4941406, 1.1162109, -0.1998291, -2.0976562, 1.8291016, 0.11981201, 0.5517578, 2.6289062, 2.5839844, -0.3515625, -3.2890625, 0.3017578, 1.1162109, 2.9824219, -0.20300293, -1.7207031, -0.1237793, 0.72802734, -1.0761719, -0.008880615, 0.4284668, 0.7167969, -1.2109375, 0.83935547, 0.89746094, 0.8833008, 1.6318359, 1.3613281, -1.8515625, 0.22509766, -0.008766174, -2.4101562, -1.9912109, 0.3203125, 1.0810547, -1.3291016, 0.84277344, -2.0566406, 0.25219727, -0.5292969, -0.5571289, -3.9296875, 3.2636719, 4.109375, 2.1875, 2.5585938, -0.8354492, 1.1230469, -0.20837402, -0.2614746, 0.34692383, 0.18017578, -0.50878906, 0.17114258, 3.0449219, 1.5390625, -0.83935547, 0.36547852, 1.4638672, -1.3759766, 0.13220215, -1.8300781, 1.0214844, -0.75683594, 0.13903809, 0.66503906, -0.5541992, 1.6835938, -0.4404297, -0.40600586, -0.60791016, 0.52783203, -1.5859375, -0.36157227, 0.28198242, -0.020141602, 0.078063965, 0.71533203, 1.8330078, -0.77246094, -0.005619049, -0.5673828, 1.1503906, -1.7207031, 0.09692383, -0.4326172, 0.7338867, -1.1171875, -0.2770996, 2.1484375, 2.1152344, 1.2646484, 3.1855469, 2.390625, -1.7402344, 1.5566406, 1.8515625, -2.15625, 1.6816406, 1.0371094, -0.6640625, 2.2089844, 0.36035156, -3.8339844, -0.57373047, 1.3535156, 0.63964844, 1.0683594, -1.5957031, -0.20788574, 1.5449219, -1.5605469, -0.625, -0.6557617, -1.0771484, 0.53222656, 0.60498047, 0.09613037, -1.2236328, 1.625, 2.3515625, -1.0595703, -1.9433594, 1.1542969, -1.2783203, 0.18701172, -1.0527344, -1.5634766, -1.4775391, -0.6982422, 2.9160156, 1.0458984, 1.5263672, 0.5463867, 1.6259766, -1.1591797, -0.31713867, -1.0712891, 2.0859375, -2.7207031, -0.42895508, 1.65625, -3.7265625, -0.066345215, -2.0664062, -1.0185547, -0.08856201, 1.1787109, 1.3564453, -0.6225586, -0.5341797, 1.0546875, -1.6933594, -4.0703125, -0.8300781, -0.37719727, 0.4873047, 1.1748047, 1.0439453, -0.609375, 1.1289062, -1.0917969, -0.25219727, -0.92041016, 0.0018024445, -0.96435547, -0.21508789, -0.10998535, 0.3840332, -0.9003906, 0.61621094, 0.1459961, 1.3134766, 0.7915039, -1.4160156, -0.11804199, 0.057891846, -0.59814453, -0.0027313232, 2.703125, 1.6035156, 0.011543274, 1.2861328, 1.5712891, -3.3339844, 2.9375, -1.7949219, -2.2070312, 1.0419922, -0.47338867, 0.35327148, -0.27905273, -0.6542969, 0.20349121, -0.29589844, 1.5996094, 1.2763672, -0.8671875, -0.7841797, -0.084472656, 0.21228027, -0.055877686, 1.3027344, 0.67822266, 0.49047852, 1.6660156, -1.1054688, -1.1689453, -1.3183594, -2.609375, 0.41723633, -1.3515625, -0.8833008, -2.1230469, 0.8930664, 1.7246094, 0.7416992, -0.7441406, 2.7949219, -0.8305664, 0.06304932, 1.6308594, 0.3996582, 5.2695312, 3.6582031, -1.2763672, -0.24963379, -1.3691406, 0.5004883, 2.0332031, -0.03515625, -1.0214844, -0.25170898, -0.97802734, -0.21386719, 0.15991211, 1.2109375, 0.81103516, 0.42285156, 0.0418396, 1.2958984, 3.5703125, -2.1035156, 2.3652344, 0.6333008, 1.0585938, -0.85595703, 4.3398438, 1.0976562, -2.7558594, 1.6445312, -2.1621094, 2.2363281, -1.2392578, -1.015625, -1.1279297, -0.34838867, -1.4609375, -1.2285156, -1.0849609, -2.7050781, 1.5390625, 1.7080078, -1.7431641, -0.57958984, 1.0458984, -0.5336914, 2.4316406, 2.0019531, 2.3125, -1.2929688, 0.24987793, 0.25097656, 0.7548828, 1.6669922, -3.7324219, 1.8017578, 0.98535156, -1.3730469, -1.6289062, 1.1816406, 0.3203125, 2.1582031, -0.15515137, 2.5820312, 1.9365234, 1.6826172, 2.7773438, 0.89941406, 3.9277344, 1.1787109, -0.5229492, 0.6899414, 1.2617188, 0.08605957, 1.15625, -2.5273438, 1.3222656, -0.90234375, -0.91308594, -0.11431885, -0.45410156, 1.4189453, -2.0078125, 0.73583984, 0.13061523, 2.5273438, -0.3647461, -1.0839844, -0.082336426, 0.5419922, -0.095214844, -0.7211914, 2.6132812, 1.1708984, 0.0960083, -0.4428711, 0.06866455, 0.70166016, -4.4453125, 1.1328125, 0.9760742, -1.1757812, 0.71191406, -1.8583984, 1.9970703, 0.4350586, -0.4038086, 0.5644531, 3.9414062, 0.98876953, 1.1943359, -1.4091797, -0.55126953, 1.2724609, 3.7636719, -0.000104248524, 0.037384033, 0.33911133, -0.5283203, -4.1367188, -4.4140625, 3.3652344, 1.9775391, 0.79785156, 0.46557617, -0.4440918, 4.1601562, -1.2441406, 0.8095703, -0.765625, 0.7011719, -0.021911621, -3.5898438, 0.87060547, 0.4350586, -0.94677734, 1.4179688, 0.062805176, 0.5395508, 0.96972656, 1.4091797, 1.1064453, 0.14733887, 1.1708984, 2.4785156, 1.5439453, -2.5292969, 2.140625, 0.11175537, -1.4882812, -1.6015625, 2.5917969, 1.5732422, 0.17956543, 0.38476562, -1.4091797, 0.32592773, -1.7919922, -0.0947876, -0.039398193, -2.4648438, -0.17163086, 1.0917969, 0.7050781, -0.7998047, -0.037261963, 3.0820312, 1.5566406, 0.1538086, 0.80078125, 2.7480469, -1.3242188, 1.4482422, -0.81689453, 0.8466797, -0.3046875, 1.7060547, -0.3552246, -0.35546875, -0.91015625, 1.2158203, 2.0996094, 0.6118164, -1.0058594, -0.37646484, -1.2441406, -1.0253906, -0.6010742, 0.28271484, -0.029190063, -2.1074219, 2.6191406, -0.55810547, -1.3935547, 1.0966797, 0.34301758, 0.04776001, -2.2070312, -2.5371094, -1.3222656, -0.67333984, -1.1191406, 1.6738281, 3.9492188, -0.42236328, -0.033569336, -1.7558594, -3.5507812, -1.6376953, -3.0429688, 2.1601562, -1.0224609, -1.6132812, -1.5292969, 0.36547852, 1.5908203, -0.98095703, -0.4729004, 0.13635254, -1.9882812, 0.9741211, -0.6274414, 0.05581665, -1.0917969, -0.17053223, 1.1162109, 2.8652344, 0.92285156, 0.5415039, 0.032318115, 2.6582031, -0.31030273, -2.2207031, -0.6899414, 0.86816406, 0.8017578, -0.5288086, 0.3569336, 2.2304688, 0.010719299, -0.9008789, -0.6176758, -3]}, "B07P7M1NH8": {"id": "B07P7M1NH8", "original": "Brand: Megamaster\nName: Megamaster 820-0065C Propane Gas Grill, Red + Black\nDescription: \nFeatures: Assembly required (Easy!)\nFoldable legs and soft handles\nDurable high-grade stainless steel main burner\nStrong steel frame with a heat-resistant coating finish\nA cooking power of 11,000 total BTU's with even and consistent heat\n", "embedding": [-0.61035156, -0.119506836, 2.2539062, 0.51123047, -1.1572266, 0.4519043, -0.4572754, -0.050231934, -0.14819336, 1.7587891, 0.73535156, 0.36010742, -0.66552734, -1.6054688, 1.2958984, 1.1591797, 1.3857422, 0.79345703, 2.0214844, 0.40478516, 0.9042969, 0.16882324, 0.35107422, -1.6279297, 2.0195312, -0.3137207, 3.8378906, -3.2617188, -0.2746582, -0.68115234, 0.46166992, 0.46142578, 0.18713379, 1.7910156, -1.7382812, -0.32763672, -3.2597656, 1.0839844, -3.0039062, 1.4345703, 0.6699219, -1.0771484, 1.0371094, -0.33862305, -2.1816406, -1.3466797, 0.875, 0.4609375, -2.0410156, -3.890625, 0.7475586, 2.1796875, -0.5527344, -0.33251953, -0.8647461, 0.38964844, 0.4326172, -0.9008789, 1.3691406, -0.016098022, 1.4394531, -1.9335938, -0.66796875, -0.96972656, -2.015625, -0.35083008, -0.066589355, -0.98583984, -0.18261719, -1.5078125, 1.1816406, 0.42456055, -2.9199219, 0.48120117, -0.11303711, -1.2929688, -3.7148438, 1.0195312, -0.3479004, -0.87890625, -1.0341797, 3.4414062, 1.0400391, -0.95458984, 0.09442139, -0.3112793, -0.20410156, -1.2558594, 1.1855469, 1.0585938, -1.8164062, 0.86621094, -1.7871094, -4.921875, 3.5117188, 0.44921875, 0.9428711, 0.51220703, 1.3925781, 1.9892578, -0.32641602, 1.3583984, -0.8779297, -0.058776855, -2.1289062, -1.40625, 0.16345215, 1.3037109, -4.2070312, 1.6806641, -1.5263672, -0.5048828, 0.47729492, 0.42163086, -0.22973633, 0.8178711, 1.9179688, 1.7421875, 2.9863281, 2.3125, 3.3027344, -1.0048828, 2.015625, 1.0019531, -0.6904297, -0.17797852, -0.44555664, 2.890625, 4.1367188, -2.4335938, 1.5517578, -0.72021484, 2.0195312, 1.2744141, -0.7060547, -2.7167969, -1.5810547, -1.2119141, -3.5761719, 0.5571289, -0.70458984, 2.3242188, 1.3730469, -0.6035156, -5.1289062, -1.3583984, -0.7963867, -0.32055664, -1.0556641, -1.1503906, 0.27783203, -1.4892578, -1.6220703, 0.3239746, 0.8652344, -0.5942383, -1.3662109, -1.1845703, 2.7714844, 1.390625, 1.9628906, 0.23461914, -2.6132812, -0.023361206, 0.24084473, -1.4111328, -0.23803711, 1.3662109, -0.64404297, 0.65771484, -0.27270508, -1.6503906, 0.86035156, -1.3935547, 0.22790527, -0.09814453, 0.1932373, 3.7539062, -0.94433594, -1.75, -1.2880859, -2.6816406, -0.09613037, -0.68603516, 0.7504883, -1.3496094, 0.43798828, -1.0908203, 1.6972656, 0.0035133362, -0.56152344, 1.2929688, -0.45874023, 1.3398438, 0.038909912, -2.4804688, -2.6757812, -1.1289062, 2.453125, -0.11187744, -1.7734375, 0.5649414, -0.22387695, 0.671875, -1.0224609, -2.6757812, -0.06964111, -0.32470703, 1.2587891, 1.5791016, 1.4726562, -1.8583984, 1.2958984, -1.46875, -0.61816406, -2.7324219, 0.5625, 0.097351074, 1.6621094, 3.6054688, -0.27197266, 1.0908203, 0.6386719, 1.0947266, 0.15991211, 1.2832031, 0.87402344, 2.1523438, -3.6875, -2.8203125, 2.0214844, 1.7265625, -0.11431885, -0.73828125, 0.27075195, 2.1796875, 0.5620117, 0.3034668, -0.92626953, -0.34814453, 0.30151367, 0.45996094, -0.73828125, -2.5742188, 0.49291992, -0.31274414, -1.9482422, 2.0058594, 0.14416504, 1.9765625, 0.20214844, 2.1953125, 0.44848633, 1.6806641, -0.34106445, 2.2265625, -0.57958984, 0.009033203, -0.26489258, -1.9013672, 0.92333984, -0.24975586, -0.95214844, 0.042999268, 1.8642578, -0.9472656, 4.625, 0.3330078, -1.6132812, -1.9355469, 3.4492188, 1.2089844, 1.3417969, 0.47216797, 2.3359375, 2.5253906, -1.3398438, 3.203125, 1.6748047, -0.6147461, 0.32788086, -0.2565918, 2.0703125, -2.2128906, 0.69433594, -1.0166016, 2.2578125, 0.7001953, -1.2158203, 1.4335938, 3.6679688, 1.3388672, -1.8945312, 2.4804688, -1.4267578, 1.6367188, 2.5214844, -0.20715332, 0.58740234, -0.6801758, 2.4785156, 1.4179688, -0.35424805, 1.2050781, -0.1661377, -2.0722656, 0.07104492, -0.12573242, 0.06945801, 1.8916016, 1.2148438, -0.5527344, -1.6201172, 0.28173828, -1.3613281, -0.40063477, 2.1699219, -2.3222656, 0.47583008, 1.5986328, 2.9746094, 1.7822266, 1.3916016, -0.6850586, 1.7636719, 0.3623047, -0.58251953, 1.3916016, 2.0507812, -0.6376953, 1.4775391, -0.049804688, 0.61572266, -1.4033203, -1.6914062, 0.9248047, -1.6201172, -2.6953125, 0.9536133, -0.40966797, 0.8486328, 0.6767578, -2.234375, 1.3642578, -0.27124023, -2.078125, -2.5566406, -0.12524414, 1.0820312, -1.0302734, -0.039398193, 1.0888672, -0.41625977, -5.2460938, -1.0800781, 2.3300781, -0.66308594, 2.4316406, -0.63183594, -0.2364502, 1.1855469, -0.5913086, 0.5498047, -0.53759766, 1.2216797, -2.6894531, 0.7294922, -2.9667969, 0.3762207, -2.3847656, 0.050842285, -0.75390625, 0.765625, -1.7851562, -1.9042969, -0.70458984, 0.2866211, 4.15625, -0.5004883, 1.2363281, 0.2010498, 0.6689453, 2.3125, -1.5, -2.4355469, -0.25512695, 1.9238281, -1.1396484, -1.0654297, -2.0390625, 0.66748047, -0.56347656, 0.5229492, 0.045562744, 1.2783203, -2.2207031, 2.2441406, -1.15625, -0.7963867, -0.46069336, 0.0513916, 0.21228027, -1.6865234, 0.19335938, -0.7758789, -1.2216797, -2.3535156, -0.034454346, 1.1416016, -0.42285156, 0.984375, 0.54052734, -1.0976562, 1.4736328, -0.92285156, -3.5449219, 4.0195312, -1.1347656, -1.7822266, 0.107177734, -0.7714844, -3.1582031, -1.8691406, -2.0097656, 3.1035156, 0.6166992, 2.1875, 0.78027344, -0.5024414, 0.76123047, -0.5732422, 0.9291992, -0.8588867, -0.29345703, 3.2148438, -0.59277344, -2.3222656, 0.41845703, 2.1757812, -3.5742188, -2.765625, 2.5175781, 0.43945312, 2.1816406, 1.3427734, 0.70166016, -0.5288086, -0.10461426, 3.3203125, 0.08929443, 0.37451172, 0.42944336, -0.72509766, 0.5395508, 1.0625, 1.8144531, 2.5371094, 0.36523438, 2.1035156, -0.5786133, 0.8041992, -2.0039062, -0.6225586, -0.49414062, 0.8300781, 0.50439453, 1.0224609, -0.82421875, 0.4267578, 0.4230957, 0.44189453, -0.05706787, -1.7666016, 0.5488281, 1.5908203, -0.8125, 0.39672852, -1.0214844, 0.5463867, 1.0820312, -1.1484375, 0.59716797, -2.4082031, -1.2636719, 1.5087891, 0.54248047, -1.2548828, -2.1074219, 1.484375, 0.47729492, -0.62402344, -0.21899414, 2.3808594, 0.61376953, -1.3525391, -0.2619629, -0.39379883, -2.296875, 0.9169922, -0.24414062, -0.9506836, 2.2988281, -1.8134766, 1.1328125, 2.2695312, -0.9941406, -0.057617188, -0.5229492, -0.33276367, 0.1932373, 0.54296875, 1.9179688, 0.28393555, -1.9042969, -0.1862793, -3.265625, 1.0537109, 0.7373047, -2.1738281, -1.2783203, 1.1513672, -0.38891602, 1.8828125, -0.5957031, 2.7753906, -0.48901367, -0.50878906, 1.1474609, -2.8183594, -1.4179688, -3.2597656, -2.5234375, 0.9970703, -2.171875, -0.12841797, 2.7851562, -0.69921875, 0.73876953, 2.2636719, 0.8417969, -3.2441406, -2.1582031, 0.08117676, -0.13415527, -0.40698242, -0.75097656, -0.11651611, 0.9477539, -2.1171875, 1.3544922, 0.77783203, -0.7675781, 2.2558594, 0.44750977, -0.97558594, 0.16552734, -0.6665039, 0.5859375, -1.1796875, -0.92041016, 0.30541992, -0.94873047, -0.45874023, -2.7363281, 2.0761719, 0.79785156, -0.79345703, 0.48413086, 1.703125, -0.40673828, -2.4960938, 0.4987793, -0.17285156, 0.41992188, -1.3828125, -2.3085938, -1.2890625, -0.9042969, -0.44750977, 0.39624023, 0.9321289, -0.61572266, -1.6044922, 0.8095703, 0.6347656, 1.2392578, 2.0019531, -0.22314453, -1.8925781, 0.13562012, 0.6660156, -2.6796875, -0.5727539, 0.1015625, -0.2775879, -0.63134766, -0.41845703, -1.125, -0.4675293, -1.2392578, -0.45703125, -2.2792969, 1.9980469, 2.0449219, 1.9824219, 4.0585938, 0.09887695, -0.71777344, -0.9692383, -1.0341797, -0.53759766, 0.8696289, -0.24645996, 0.66015625, -0.05239868, 2.0117188, -2.6210938, -0.6982422, 2.3496094, -2.7597656, -0.5883789, -1.4667969, 1.0722656, -0.921875, -0.27172852, 0.00082731247, -0.54589844, 2.2695312, -0.53222656, 0.9560547, 0.3293457, 1.1298828, 0.12030029, 0.9633789, -0.16235352, -1.8671875, 2.8457031, -0.14038086, 0.9794922, -0.42016602, 0.17260742, 0.69189453, 1.7382812, -0.5395508, 0.5263672, 0.41333008, -1.3554688, -1.8730469, -1.9804688, -0.43603516, 1.3632812, 0.61621094, 1.9179688, 1.3916016, -0.6586914, 2.5449219, 1.2275391, -2.2636719, 0.24853516, -1.5351562, 0.3425293, 1.2431641, -0.1899414, -2.203125, -1.2460938, 1.7089844, -0.4243164, 0.56152344, 0.07733154, -1.7265625, -0.55322266, -2.2109375, -0.5708008, 0.11804199, -1.4296875, -0.81396484, -1.4873047, 0.45141602, -1.2910156, 1.3447266, 4.1015625, -0.46166992, -1.7578125, 2.1035156, -1.0703125, 1.3222656, -0.11578369, -0.7163086, -2.5449219, 1.0332031, 2.7402344, 1.3427734, -0.52197266, 1.796875, 0.57958984, -2.8691406, 1.5703125, -1.0507812, 2, -2.3046875, -2.9179688, 1.5517578, -2.0976562, 1.1982422, -1.9648438, 0.60253906, -1.5546875, 2.1582031, 3.1796875, 0.058410645, -2.4101562, 1.9326172, -2.3359375, -3.6855469, -2.453125, -0.31591797, 1.9091797, -0.5053711, 1.8671875, -1.3105469, 2.4960938, 1.1240234, 0.62841797, 0.059051514, 0.8442383, -0.76464844, -0.07373047, -1.1689453, -0.65234375, -0.71484375, -0.9189453, 1.9921875, 0.5214844, 0.33935547, -2.6621094, -3.6269531, 1.2480469, -0.5341797, -0.31079102, 1.8769531, 1.1367188, -0.29858398, 1.5078125, 0.8574219, -1.9013672, 0.5883789, -2.2871094, -1.0751953, 1.8369141, 0.4104004, -0.19848633, 0.14978027, -1.8203125, -0.20483398, -1.2021484, 1.7207031, -0.14379883, -0.72998047, -1.9804688, 0.05923462, -0.8027344, -0.005203247, -0.17114258, -0.8696289, 1.6943359, 1.4833984, -0.6694336, 0.099609375, -1.3769531, -3.09375, 0.359375, -2.3320312, -0.22009277, -0.26416016, 0.5839844, 0.46240234, 0.64746094, 0.9970703, 0.8198242, 2.0800781, -0.3256836, -0.2685547, -1.5371094, 1.6943359, 2.8261719, -0.23144531, -1.9208984, -2.5605469, -0.609375, 2.1308594, 1.2207031, -1.1210938, -0.1607666, -2.234375, -0.54833984, -0.6479492, 1.78125, 1.8554688, -0.5317383, -2.2949219, 1.7900391, 2.9511719, -1.3701172, 1.9941406, 1.2636719, 2.1210938, -1.6777344, 3.0761719, 0.35302734, -1.4082031, 1.6660156, -0.86083984, 0.13061523, -0.7685547, -0.9301758, 0.3347168, -1.9384766, -1.7207031, -0.67285156, -0.5678711, -3.6933594, 1.0761719, 1.9980469, -1.9453125, -0.049438477, 1.2871094, -1.7705078, 3.3945312, 2.3359375, 1.5195312, 0.25561523, 1.0019531, -1.3046875, -1.1064453, 1.0703125, -3.3007812, 2.671875, 0.37329102, -1, -0.26879883, 2.5078125, 1.1113281, 1.3037109, 2.1347656, 1.9511719, 3.6699219, 0.22167969, 1.3408203, 1.1835938, 1.3408203, 2.7949219, -0.07147217, 0.8666992, 0.6870117, 1.0537109, 1.5195312, -0.97216797, 1.2832031, -0.9604492, -1.0742188, -1.1103516, -0.30786133, 0.121520996, -1.0986328, 0.03945923, 0.02230835, 0.8544922, -2.1210938, -0.28710938, -1.5615234, -0.6152344, -1.796875, 0.27685547, 2.2578125, 0.29711914, -0.5126953, -0.7504883, -2.3710938, 0.67041016, -1.8779297, 1.3486328, 0.17651367, 0.47875977, -0.5439453, -0.9550781, -0.11517334, 0.012130737, 0.4165039, -0.11669922, 0.07489014, 0.7573242, -0.5048828, -1.4082031, 0.8417969, 0.18798828, 0.9111328, -0.033081055, -0.85595703, 2.6816406, -0.70654297, -1.0605469, -2.9785156, 1.8974609, 1.7236328, 0.3540039, 1.421875, -1.5673828, 1.4189453, -0.79052734, 1.15625, -2.6054688, 0.66748047, -0.65722656, -2.5566406, 0.875, 1.4414062, 1.3212891, 2.4316406, -0.019561768, -0.64160156, 1.0009766, 1.3847656, 1.5400391, 0.69921875, 1.1611328, 1.6826172, 2.2363281, -1.6650391, 2.265625, -0.46142578, -0.52978516, -3.7148438, 2.6699219, 3.046875, 1.03125, 0.7163086, -1.1064453, 0.06951904, 0.39379883, -0.89208984, -1.2949219, -2.4785156, 0.12414551, -0.9038086, 0.62646484, -0.3955078, -2.609375, 1.7666016, 1.6386719, -0.42456055, 0.40893555, 0.24267578, -0.85498047, 1.3427734, -0.93652344, -1.1357422, -0.61328125, -0.31396484, 1.0537109, 0.16027832, -1.3759766, 1.5351562, 1.4433594, 0.8666992, -1.5283203, -0.57128906, 0.011985779, 0.54003906, -0.99902344, 0.9814453, -0.45703125, -2.3554688, 2.125, 0.78515625, -0.05831909, 1.7636719, -0.36645508, 0.22644043, -0.8652344, -1.0087891, 0.15234375, 0.32104492, -0.2211914, 1.7529297, 1.9423828, 0.37353516, -0.19445801, -1.7880859, -2.9277344, -1.4824219, -1.9892578, 3.7539062, -0.11895752, -1.5820312, -1.015625, 1.8378906, 3.2539062, -1.5175781, -1.0625, -0.29345703, -1.4960938, 0.13696289, 0.97802734, 0.7246094, 1.5175781, 1.1523438, 0.14208984, 2.3417969, 1.0400391, 0.43188477, 1.2509766, 2.9667969, 0.31054688, -2.2421875, 0.18286133, -0.7001953, -0.52734375, -0.77490234, -0.28930664, 2.109375, 0.7661133, -1.1503906, -1.7324219, -1.0214844]}, "B01ENV3UDA": {"id": "B01ENV3UDA", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black\nDescription: \nFeatures: Combination of gas grill and griddle with two individual cooking zones | Easy assembly required\nProduct dimensions \u2013 66.1\" L x 21.8\" W x 43.7\" H | Clearance space around product \u2013 36\u201d | Product weight \u2013 103.6 lbs. | Cooking area (Two) \u2013 292 sq. inches each | Gas tank size \u2013 20 lb. | Burners output (4) \u2013 12,000 BTU each\nAutomatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel\nTwo fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach\nWith fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup\n", "embedding": [-2.4296875, 0.7675781, 0.87109375, -0.33691406, 0.15356445, 1.4101562, 1.7402344, -0.19372559, -2.5761719, 0.97216797, 1.1962891, -0.20947266, 1.3378906, -2.7890625, 1.6533203, -0.0463562, 0.6484375, 0.7998047, 1.6337891, -0.4013672, 1.9501953, 0.37573242, 3.0117188, -0.029312134, 0.8227539, 1.4267578, 3.6464844, -4.4570312, 0.5258789, -0.7792969, 2.6621094, -0.17651367, 1.640625, 1.4550781, -2.1816406, -1.8193359, -1.3085938, 1.7226562, -1.8710938, 0.41748047, 0.3852539, -1.6582031, 2.9550781, 0.40771484, -3.0390625, -1.3447266, 0.12646484, 1.2988281, -0.9824219, -0.28564453, 2.0917969, 1.1826172, 0.35253906, 0.65185547, -1.6582031, 1.3886719, 2.4453125, -2.1074219, 1.1435547, -0.1239624, 2.7402344, 0.27197266, -1.8408203, 0.039886475, -0.81152344, -1.2578125, 0.05419922, 0.9711914, -1.125, -2.9863281, 2.2675781, 0.76708984, -1.5654297, 0.63183594, 0.12213135, -0.6425781, -1.9746094, 1.9277344, 1.5507812, 0.5258789, -3.1914062, 2.2539062, 0.8066406, -2.0898438, 0.3474121, -0.3149414, -0.22167969, -0.9482422, 1.2851562, 1.671875, -0.23181152, 2.8496094, -2.5703125, -3.9238281, 1.8212891, -0.23303223, 1.1982422, 1.5068359, 0.3244629, 2.2597656, -0.32641602, -0.765625, -0.8491211, -1.3632812, -0.74365234, -2.6503906, 1.5224609, -0.1842041, -2.5820312, -0.25097656, -2.4824219, 0.106933594, 1.8867188, -0.89453125, 0.0131073, 1.1503906, -0.52734375, 3.4804688, 2.1191406, 0.53759766, 3.6660156, -0.17822266, 2.0664062, -0.47924805, 0.95654297, -0.006008148, -1.6015625, 2.8691406, 5.7460938, -2.0605469, -1.5292969, -0.7861328, 2.6894531, -0.5341797, -2.1425781, -3.0507812, -0.61279297, -1.9267578, -3.9199219, 0.5439453, -2.2753906, 1.2080078, 2.5917969, -0.076660156, -2.8808594, -0.8256836, -0.8754883, 1.6835938, -1.0810547, -0.4453125, 0.12243652, -1.4863281, 1.1943359, -2.4082031, 2.375, -2.7480469, -1.1181641, -0.024795532, 3.4628906, 1.2519531, 2.7285156, -3.0429688, -1.6542969, 0.24621582, 0.17150879, 0.1796875, 0.17675781, 3.5664062, 1.2880859, 1.5146484, 1.421875, -0.8925781, -0.6064453, -0.25097656, -0.013648987, -0.9638672, -1.0488281, 1.71875, 0.97509766, -0.27734375, -1.0537109, -2.7539062, -0.7260742, 0.53759766, 2.0058594, -2.2226562, -0.42773438, 0.36157227, -0.4177246, -0.3569336, 0.21875, -1.4179688, -1.078125, 1.2529297, -0.12054443, -0.8964844, -2.21875, -0.7626953, -0.48217773, 1.7431641, -0.8979492, -0.10229492, -0.3569336, 0.2919922, -3.484375, -3.9316406, 0.41455078, -3.0507812, -0.015350342, 0.52490234, 0.17578125, -1.0146484, 0.47021484, -1.0878906, 0.91845703, -1.6269531, 1.328125, 0.8276367, 2.2519531, 1.2900391, -0.5566406, -0.39916992, 0.83154297, 1.78125, 0.7402344, 1.8886719, -0.75634766, 1.5273438, -1.7753906, -1.265625, 2.2167969, -0.9506836, 1.5800781, 1.7753906, -2.1914062, 0.9951172, -0.5517578, -0.7597656, -0.65185547, 0.57421875, 0.57177734, -1.0908203, -0.60009766, -1.2548828, -0.27490234, 1.4345703, -1.015625, 1.7246094, -0.15942383, 1.1787109, -2.2441406, 1.3007812, 0.66845703, 0.15722656, -0.21899414, 1.1455078, -0.04067993, 1.3603516, -0.80371094, -2.2753906, 0.49536133, 0.5336914, -0.60009766, -0.8696289, 1.3837891, -1.9052734, 1.9375, 0.091308594, -1.7373047, -0.3227539, 0.6772461, 0.28759766, 2.2441406, -0.70214844, 1.4296875, 1.0332031, -1.9902344, 1.9550781, -1.7275391, 2.1738281, 0.54785156, -1.3974609, 0.33789062, -2.1230469, 0.09338379, 0.3137207, 1.4179688, 0.1574707, 1.3359375, 1.6757812, 3.7910156, -0.94921875, -2.6386719, 2.9023438, -1.9814453, 0.359375, 2.2617188, -1.4091797, -0.10699463, 0.44067383, 0.18884277, 0.6699219, 1.0898438, 1.2285156, -1.3007812, -1.1728516, -1.7021484, -1.7431641, -0.32226562, 0.9975586, -0.9194336, 0.015853882, -0.93847656, -0.828125, -0.3071289, -1.5722656, 2.4628906, -2.0644531, 1.8691406, 0.90185547, 1.2314453, 0.20581055, -1.1152344, -2.9101562, -0.095214844, -0.81884766, -0.0030441284, 0.051086426, 0.85009766, -0.12609863, 1.3144531, 0.5839844, 0.55810547, -2.5019531, -3.4082031, 0.5385742, -3.9453125, -3.2070312, 2.0136719, -1.4541016, -0.609375, -0.09680176, -2.2753906, 0.38110352, 0.40356445, -4.2734375, -0.8173828, 0.87841797, -2.4882812, -0.33862305, -0.46923828, -0.7270508, 0.703125, -3.1777344, -0.24084473, 0.5751953, 0.38427734, 1.4755859, 0.2939453, -1.4013672, -1.5449219, -1.5390625, -1.0546875, 0.49389648, -0.11175537, -2.203125, -0.7426758, -3.6308594, 0.4296875, -1.2832031, -0.9272461, -0.4194336, 0.12365723, -2.0605469, -1.9482422, -0.7504883, -1.2714844, 3.7285156, -1.9208984, 0.82373047, 1.1269531, 0.59033203, 1.4082031, -1.2373047, -2.5058594, -2.9042969, 1.0048828, -2.6191406, -3.453125, -1.6308594, -0.28173828, 0.86816406, 1.9746094, -1.4296875, 3.4609375, -2.2109375, 2.6171875, -3.09375, -0.5097656, -1.5820312, 1.6103516, -0.057495117, -0.57910156, -0.97216797, -1.0791016, -0.40356445, -2.109375, -0.7324219, 2.3105469, -1.0976562, 1.5166016, -0.42114258, -0.54345703, -0.021636963, -0.14245605, -2.3320312, 3.2324219, 0.31079102, -2.4707031, 3.2421875, -1.1269531, -2.1894531, -2.828125, -0.61328125, 3.5488281, 0.56396484, 3.0761719, -0.098083496, 0.71777344, 1.7910156, 2.3886719, -1.2890625, 0.040649414, -1.2832031, 2.6386719, -1.78125, -1.0039062, 1.2675781, 1.1865234, -1.8300781, -0.61865234, 2.5214844, 1.3222656, 1.8193359, -0.47216797, 2.2226562, 0.36083984, -0.82177734, 1.3847656, 1.7158203, 0.30126953, 0.95410156, -0.6298828, 0.08013916, -0.9267578, 1.8613281, 0.7578125, -0.5161133, 3.1386719, 0.37060547, 0.8520508, -1.8164062, 1.5390625, 0.5024414, 1.9462891, 0.8334961, 1.9345703, -0.81396484, 0.7167969, 0.65283203, -1.7099609, -0.52441406, -2.7695312, 0.9160156, 1.703125, 0.14404297, 0.72216797, 0.6064453, 0.42114258, 0.59033203, 0.5214844, 1.3310547, -2.5605469, -0.7607422, 0.72509766, -2.0273438, -0.78759766, -2.5703125, 2.6875, -2.4003906, -0.4025879, 1.9912109, 2.96875, -1.2988281, -0.5498047, 1.9199219, -0.16845703, -1.5888672, 2.1484375, 0.0018444061, -1.484375, 1.4775391, -0.7817383, 0.55371094, -0.17700195, 0.4555664, -0.25683594, -0.18383789, -0.21154785, -1.6357422, -0.9399414, 0.81591797, 1.0039062, -2.7128906, 0.13171387, -2.8046875, 0.76660156, -0.0670166, -2.171875, -1.0683594, 0.83496094, 0.9238281, 1.2148438, -3.2128906, 3.6015625, -0.34960938, -0.34423828, 2.0371094, -4.3554688, -2.0507812, -3.9570312, -3.3457031, 1.1103516, -0.8671875, -0.8022461, 2.4394531, 0.11981201, -0.35009766, 2.1289062, -0.48535156, -1.6875, -0.09454346, -1.5371094, -0.6098633, -3.2148438, -0.046783447, 0.9169922, 0.42529297, -1.3388672, -1.9296875, 0.68115234, 1.5146484, 2.671875, 1.9980469, -3.6445312, 1.0664062, -2.5429688, -0.51708984, -0.39672852, -0.43725586, 1.7724609, -1.6425781, -0.04434204, -3.390625, 2.359375, 0.73291016, -0.5439453, 0.38183594, 0.77001953, 0.49609375, -1.8886719, -0.08618164, 1.2255859, 3.3769531, -0.6567383, -3.0546875, -2.7324219, 0.88671875, 0.27441406, -1.0507812, -0.9165039, -1.1660156, -1.2167969, -0.15014648, 2.2148438, 1.4111328, 1.2451172, 1.1542969, -1.0175781, 0.4790039, -0.99072266, -1.7685547, -1.7001953, -1.2978516, 1.0292969, 0.4074707, -2.5273438, -1.9228516, 0.13903809, -3.9570312, -0.6533203, -1.1884766, 3.6074219, 1.6503906, 0.86279297, 3.5371094, -1.2451172, 0.07775879, 1.3818359, -0.7626953, -3.0976562, 2.9785156, -0.025924683, -0.30981445, 1.9199219, 0.19189453, -2.8671875, 1.5097656, 1.7412109, -2.2285156, -1.4853516, 0.014312744, 1.3056641, -0.98779297, -1.5244141, 1.3007812, -0.44018555, 3.0195312, -0.6201172, 0.9321289, -0.26782227, 0.27368164, -1.5097656, 0.3684082, -0.26391602, 0.3491211, 0.46606445, 1.1181641, 1.0810547, -1.4658203, 0.5493164, -1.2636719, 3.0214844, 0.09429932, 0.44726562, 0.7529297, 0.7324219, -0.089416504, -1.2451172, 0.81152344, 2.8164062, -0.23388672, 2.9550781, -0.096191406, -2.1230469, 2.296875, 0.28100586, -2.1542969, -2.5644531, 0.38085938, 0.016235352, 0.15002441, -0.121276855, -3.4355469, 0.06793213, 2.0214844, -1.1865234, 0.4736328, 0.6689453, -0.5527344, 0.123046875, -0.94433594, 0.31420898, -0.22521973, -0.7626953, -0.5209961, 0.5498047, 1.3603516, -0.6254883, 1.3085938, 1.2490234, -0.29833984, -0.7573242, 2.1660156, -0.8574219, 1.4257812, 0.4958496, 0.7163086, -2.7851562, 0.19921875, 3.3261719, 1.2314453, 1.7548828, 0.6376953, 1.4042969, -2.2441406, 0.21801758, -3.0683594, 2.828125, -1.7275391, -0.73291016, 3.0839844, -2.3125, -0.5830078, -2.2597656, 0.8823242, 0.21203613, 2.7324219, 2.7734375, 0.18005371, -0.64404297, 0.4663086, -1.4003906, -3.8964844, -1.3662109, 0.88964844, -0.07373047, -0.4892578, 1.3554688, -2.6152344, 0.1138916, -1.0820312, -0.51660156, -2.4179688, -0.65771484, -1.7265625, -1.3212891, -1.2978516, 0.8466797, 0.25732422, 1.3847656, 1.0361328, 0.30688477, 0.61376953, -4.0507812, -0.41503906, 1.9160156, 0.17651367, 0.30249023, 1.2822266, -1.2490234, -0.36889648, -0.85791016, 0.1640625, -2.7070312, 3.0332031, -2.2363281, 0.3330078, 0.072631836, -0.91064453, 1.2998047, -0.4074707, -2.0214844, 0.4387207, -0.8876953, 3.1601562, 1.2167969, -0.97998047, -0.81933594, 1.5449219, -0.72558594, -2.0527344, 0.6459961, -0.7421875, 0.5683594, 1.2626953, -2.7128906, -0.5234375, -1.1152344, -1.2548828, -0.7207031, -1.6435547, 0.1730957, 0.4177246, -0.65625, 1.1943359, -1.4130859, -0.16589355, -0.09832764, -1.2109375, 0.0099487305, 0.5415039, -1.5, 1.7832031, 1.5351562, -1.0429688, -0.4724121, -0.8120117, 0.56884766, 1.9052734, 0.6660156, 0.3930664, -0.31982422, -1.0859375, 0.4038086, -0.8354492, 0.5439453, 1.9726562, -0.23522949, -0.66552734, 1.53125, 3.3242188, 0.94189453, 1.4755859, 1.2519531, 1.078125, -0.9355469, 5.1640625, -1.1162109, -2.4570312, 0.49023438, -1.8632812, 3.3417969, -0.9741211, -0.84521484, -0.4765625, -0.4013672, -1.5263672, -2.953125, -0.5385742, -1.9746094, 2.0546875, 1.6210938, -0.61865234, 0.13720703, 1.1777344, 0.7729492, 0.15026855, 1.3925781, 0.47265625, -0.83203125, 1.8212891, -1.1474609, 0.9995117, 0.23913574, -0.24194336, 1.5625, 3.1015625, -0.38476562, -1.9257812, 3.1015625, -0.7246094, 2.7050781, 2.5800781, 0.13330078, 3.5976562, 1.0068359, 2.8515625, 0.7363281, -0.032073975, 1.6757812, -0.33618164, 1.6884766, 2.234375, 3.5488281, -0.56884766, -0.6611328, 1.0839844, 0.7348633, -1.9306641, 0.20361328, 0.89990234, 1.7070312, -1.8457031, 2.25, 1.0458984, 1.1855469, -1.6015625, 0.041931152, -1.2099609, -1.8330078, 0.36938477, 0.5292969, 3.4570312, -1.0048828, -1.0185547, -0.49389648, 0.15551758, 2.2734375, -3.3066406, 1.046875, 1.2910156, -0.025405884, -0.17736816, 2.3691406, 0.8339844, 0.40893555, 1.6318359, 1.2050781, 1.3232422, 0.50927734, 0.19519043, -0.9482422, 1.1855469, 0.7553711, 2.4570312, 0.24169922, -1.2636719, 3.0839844, -0.96533203, -0.75878906, -3.7285156, 2.9394531, 2.859375, 1.0302734, 1.3242188, -1.6044922, 2.0117188, 2.2226562, 0.19946289, -2.7363281, -1.2011719, -1.2441406, -2.6894531, -1.1318359, 0.21374512, -0.16467285, 3.1894531, 2.7539062, -0.7739258, 2.9960938, 1.3710938, 0.74072266, 0.7758789, 1.0507812, -1.3417969, 1.1386719, -0.23364258, 0.4169922, -0.14123535, -1.8535156, -1.2773438, 1.3779297, 2.0683594, -1.4013672, 0.65722656, 0.016464233, -1.4677734, -0.49658203, -0.09112549, 0.0019664764, -2.53125, -1.0888672, -0.24133301, -0.48876953, -1.4462891, -3.1933594, 1.2949219, 0.7163086, -1.3798828, -0.02557373, 0.88427734, 0.18151855, 2.6933594, 0.48876953, 0.6489258, 0.84521484, -1.7246094, 0.9477539, -0.16540527, -1.0751953, 1.2431641, -0.9272461, 1.1103516, -1.6044922, -0.2524414, -1.5009766, 0.0126571655, 0.30395508, 1.2851562, -1.7607422, -1.1855469, 0.75341797, -0.27416992, 1.0361328, 4.3945312, -0.8222656, 0.24829102, -2.8554688, -2.28125, 0.53271484, -0.63671875, -0.29174805, -0.8276367, 4.0390625, 3.1503906, 0.72753906, -1.9521484, -3.078125, 0.030273438, -1.0439453, 2.2871094, -0.32543945, 0.007335663, 0.084106445, 1.6669922, 2.7792969, 0.5209961, -0.7348633, 0.87841797, -0.7138672, 0.33740234, 0.30639648, 2.2070312, 0.8876953, 0.4477539, 0.6796875, 0.86816406, 3.0214844, 0.98095703, 1.5322266, 3.1015625, -1.8173828, -2.7265625, 2.2167969, -1.7519531, 0.28442383, 1.5, 0.04611206, 2.4082031, 0.83740234, 2.6601562, -1.3730469, -2.7734375]}, "B07G6Z2MLN": {"id": "B07G6Z2MLN", "original": "Brand: Wadoy\nName: Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter\nDescription: COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy\nFeatures: WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank\nGREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances\nMAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install\nEASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening.\nPACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge\n", "embedding": [-1.7080078, 1.5957031, 1.7050781, 1.4316406, 0.68652344, 0.42114258, 1.9384766, -0.99316406, 2.4003906, 1.1894531, 2.3007812, -0.18322754, 2.1230469, -3.1738281, 2.4921875, 0.9013672, 0.6040039, -0.5058594, 1.0009766, 1.2041016, 2.8515625, 1.1953125, 1.8994141, -0.42626953, 2.1132812, -0.44433594, 2.9609375, -1.6113281, -0.98095703, -0.7192383, 1.8554688, -0.5288086, 0.8671875, 0.99658203, -1.7255859, -0.82421875, 0.21081543, -0.057678223, -2.8242188, -0.41845703, -2.6699219, 0.99902344, 0.52685547, 0.87060547, -2.3671875, -1.8398438, 0.34326172, 1.0976562, 0.86328125, -1.671875, -0.07910156, 2.3476562, -1.4433594, 1.4951172, -2.0546875, 1.4785156, -0.23840332, -2.7617188, 0.38842773, 1.9755859, 1.0449219, -0.42626953, -2.0566406, 0.6044922, 0.08013916, 0.25683594, -1.0839844, 0.47827148, 1.6220703, 1.4433594, 0.734375, -0.14794922, 1.203125, -1.1191406, -0.9814453, 1.3212891, -1.9873047, 1.6132812, 2.4804688, 0.84472656, -0.88720703, -0.2722168, -0.5683594, -2.2167969, -0.5839844, 0.20837402, -0.4663086, 1.6425781, 0.23034668, 1.2548828, -1.7597656, 1.7314453, -3.5175781, -3.9863281, -0.39916992, 0.6621094, -0.6328125, 0.49560547, 1.7802734, 1.5537109, -0.3959961, 0.4284668, 0.6323242, 2.1484375, -1.9492188, -0.7104492, 0.35913086, 0.35791016, -3.4824219, -0.1965332, 0.88964844, 0.22143555, 1.3457031, -2.1054688, -0.5883789, -1.0742188, 0.22290039, -2.0566406, 2.6621094, 2.1464844, 3.8320312, -0.55126953, 1.1044922, -0.0075798035, -0.42919922, 0.59814453, 1.0117188, 0.95410156, 3.7910156, -0.57714844, 1.2080078, 0.6958008, 2.5742188, -0.44506836, 0.45776367, -1.3339844, -1.1679688, -3.4003906, -1.7636719, -0.44018555, -3.0195312, 0.3605957, 1.0800781, 1.0878906, -2.2792969, 0.1920166, -1.3789062, 0.7963867, 0.82666016, -1.5400391, 2.3808594, -2.7539062, -0.30200195, -0.0063934326, 1.0839844, 3.0898438, -1.6787109, -2.3085938, 3.5546875, 1.3417969, 0.49243164, -2.0332031, -1.9658203, 0.859375, 1.1259766, -0.67578125, -0.6142578, -0.22570801, 0.19128418, 1.5380859, 0.8955078, -1.6542969, 2.4375, -0.25390625, 1.6445312, -1.7910156, -0.02835083, 3.0839844, 2.6152344, -0.13952637, -3.0332031, -2.1523438, -1.5263672, -1.1386719, 1.8330078, -0.8310547, -2.265625, -0.2130127, 1.1005859, -2.9511719, -1.5693359, 2.8144531, 0.8886719, 0.15026855, 0.32641602, -2.0273438, -4.2382812, -1.1972656, -0.9086914, 1.1826172, 0.7192383, -2.265625, 0.94140625, -0.6040039, -0.578125, -1.1474609, 1.328125, -2.2695312, 0.43408203, 0.05419922, -0.40161133, -0.22827148, 2.6738281, -0.46899414, -0.035980225, -1.7285156, 0.23925781, 1.8525391, 1.0703125, 1.6386719, -0.11743164, 1.0986328, 1.1142578, 1.6552734, 2.4335938, 0.6640625, 0.015007019, 0.03778076, -0.75878906, -0.03982544, 2.9433594, 0.50634766, -0.8486328, -0.5019531, -1.1142578, 2.2890625, 1.0615234, -2.2851562, 0.54589844, -0.50341797, -1.5400391, -1.3759766, -0.6269531, -0.546875, -0.1574707, -1.2890625, -2.3183594, 0.6972656, 2.09375, -2.0820312, 0.98339844, -0.39501953, -1.3828125, -2.3632812, -2.6855469, -0.3623047, 0.32592773, 1.2470703, -0.6845703, -3.0566406, 3.375, 0.3635254, -1.3203125, 0.7524414, 1.2392578, 1.7724609, 1.0136719, 1.3339844, -2.3730469, 0.43554688, 1.0800781, 1.8447266, 0.80078125, -0.51416016, 1.6474609, 3.5429688, -0.43725586, 3.2285156, -0.39453125, -0.7441406, 2.0097656, 0.07788086, 0.2602539, -2.6171875, 0.6533203, 1.5791016, 0.54345703, 0.11816406, -1.5703125, 0.87158203, 3.2207031, -3.1601562, -3.4765625, 3.7011719, 1.6533203, 1.6923828, 1.5976562, -1.2734375, -0.7470703, 1.0664062, -0.24194336, 2.2753906, -2.421875, -0.22399902, 2.6894531, -0.17333984, -0.94189453, -2.0761719, 1.2822266, 0.89746094, -1.4345703, 0.39208984, -2.7246094, 0.5722656, -0.38549805, -2.3222656, 2.1796875, -3.2949219, -1.2724609, 1.9453125, 0.34423828, 1.0742188, 2.2441406, -1.2685547, 0.54003906, 1.7470703, -1.203125, -1.4091797, -0.47973633, 2.234375, 1.8662109, -0.7207031, 0.5800781, -2.4296875, -0.3864746, 0.7216797, -2.6875, -4.2148438, 0.37695312, -1.5185547, -1.1015625, -0.7783203, 0.10217285, 3.3496094, 0.9003906, -0.6279297, -0.5131836, 0.9897461, -0.48168945, -2.4902344, 0.048828125, 2.6875, -0.07458496, -3.640625, -0.16101074, 0.5415039, -0.234375, 2.8339844, -2.7304688, -0.043884277, -1.0263672, -0.7661133, 0.7246094, 0.5708008, -0.75146484, -1.4355469, 1.3837891, -2.5234375, 0.81103516, -1.1054688, 1.9033203, -0.9121094, 1.0683594, -2.8085938, 0.13842773, -0.044158936, -1.0546875, 4.1601562, -0.45239258, 2.2714844, -1.7890625, 1.3291016, -0.58740234, -0.46289062, -1.9785156, -1.4853516, -0.81591797, 0.5185547, -0.1977539, -2.9804688, 0.2553711, -2.2734375, 0.88183594, -0.6191406, -0.5209961, -1.3720703, -0.65234375, 0.8666992, 1.3564453, -0.39257812, 3.2304688, -0.6586914, -1.1757812, -1.3525391, 1.1679688, -0.36889648, -2.03125, -1.0566406, 1.0566406, -0.25683594, -0.26733398, -0.26733398, 1.6279297, 1.5703125, -1.1064453, -3.2832031, 1.4414062, 2.8652344, 0.5566406, 0.9863281, -0.62060547, -0.93408203, -0.9375, 0.0836792, 4.0078125, 3.1777344, 3.2363281, -1.1826172, 2.2695312, -1.8164062, 0.41845703, -0.14526367, -0.7006836, -0.4140625, 2.84375, -3.6464844, -3.0097656, -0.7753906, 1.1845703, -2.1914062, 1.4375, 0.33276367, 0.75634766, 2.5644531, 1.3652344, -1.1542969, -0.78808594, -1.1542969, 1.6142578, -0.6357422, -0.53564453, 0.21398926, -0.73291016, -0.113464355, -2.4101562, -1.4921875, 1.1044922, 1.2529297, -0.13378906, 0.21105957, 1.1113281, -1.4501953, 0.59228516, -0.7163086, 0.6274414, 1.6357422, -0.052215576, 0.03933716, 0.58251953, 0.115356445, 2.0332031, 1.1220703, -3.1738281, -1.1201172, 0.83691406, 3.5625, -1.1611328, -0.18188477, -1.1728516, -0.020568848, -0.4326172, -0.1616211, -0.00064086914, 0.75146484, 2.0449219, -1.9375, -0.5654297, -1.4111328, 0.6484375, -1.2607422, 0.8339844, 0.20214844, -0.61035156, -2.1933594, -1.5595703, -0.9711914, -0.7963867, -2.046875, 1.9355469, 1.1318359, -0.77783203, -0.5888672, -0.27001953, 2.3144531, 1.3984375, -2.4199219, -0.5288086, -2.0546875, -0.83935547, -0.63720703, -0.012931824, 1.96875, 2.5195312, -2.125, 0.24743652, -0.6748047, 1.4199219, -0.0050811768, 0.5292969, -2.0097656, -0.93066406, 1.2041016, 1.5917969, -0.035186768, 2.8867188, -0.6777344, 0.6401367, 1.0849609, -2.0957031, -0.103393555, -0.5654297, -5.6796875, 1.9677734, -2.4042969, -0.042144775, 1.7197266, 2.0097656, -1.4882812, 0.49145508, 0.96240234, -1.9140625, -0.9902344, -1.9199219, 1.7285156, -3.2519531, 0.36035156, 3.2714844, 1.5419922, -0.70654297, -2.0195312, -1.4658203, -0.47436523, 0.1619873, 0.32910156, 0.8808594, 2.0742188, -2.1640625, -1.5126953, -1.4833984, 0.4729004, -0.039978027, 0.45703125, -1.7470703, -1.4794922, 2.515625, 0.62646484, 0.66308594, -1.3544922, 2.8007812, 2.9960938, -0.072143555, -0.28588867, -0.3256836, 3.6210938, -0.5678711, -1.4755859, -0.39160156, -0.9980469, -0.31933594, -0.4494629, 0.86083984, -0.08862305, -1.4042969, 1.4072266, 0.16809082, 2.375, 0.7050781, -1.2724609, -3.4667969, 0.56591797, 0.7211914, 0.15771484, -0.8955078, -1.3632812, -0.50146484, 0.1772461, -0.5083008, -1.3369141, -0.9379883, 0.39404297, -0.17041016, -3.8183594, 2.3789062, 2.2695312, 1.4248047, 0.54589844, -1.5878906, -0.43823242, 0.2763672, 0.1583252, 0.4482422, -0.39135742, -0.055786133, 0.5566406, 0.6020508, 3.1367188, -0.6113281, -0.8989258, 0.26757812, 0.017929077, 1.1494141, -0.3046875, 1.1347656, -0.76220703, -1.34375, -0.24511719, -0.70458984, 2.8535156, -3.1582031, 1.2333984, 3.3691406, 0.7685547, -3.6425781, 0.23583984, 2.0839844, 2.1074219, -0.3815918, -0.34399414, 1.1074219, 0.8847656, 0.5024414, 0.4736328, 0.5317383, -1.8046875, 0.5571289, -0.26953125, 1.8378906, -1.1953125, -0.06451416, 2.09375, 1.2246094, 1.1767578, 0.16760254, 1.5507812, -1.2949219, 1.1171875, 1.5126953, -0.33935547, -0.9291992, 0.72998047, -0.6645508, 2.4824219, -2.1640625, -0.76708984, -0.36523438, 2.8417969, 0.5395508, 2.5644531, 1.4121094, 1.2548828, -0.06311035, -4.34375, -1.8613281, -0.32861328, 0.10864258, 1.6455078, -0.07897949, 0.21459961, -0.47216797, 1.1914062, 2.59375, -0.037078857, 1.3056641, -1.2041016, -0.14746094, -1.1865234, 0.9506836, -1.2265625, -3.2207031, -0.98583984, -0.2364502, 2.7949219, -0.9995117, 2.6660156, 1.34375, -1.2080078, -2.296875, -1.5380859, 2.0957031, -1.9326172, 0.50390625, 1.921875, 2.7246094, -0.7421875, -0.2800293, 0.2524414, -1.4101562, 0.37353516, 2.7988281, -1.5478516, -0.93115234, 0.24121094, -1.8740234, -4.2539062, -0.9277344, 2.375, 0.60009766, 0.4814453, -1.4726562, -0.69091797, 0.05758667, -1.4990234, -1.2636719, -2.7226562, 2.7011719, -1.3242188, -0.2244873, 0.89501953, 1.1992188, -0.3154297, -0.3659668, -1.1972656, 0.49438477, -2.0625, -2.3007812, -1.4863281, -1.4785156, -2.0214844, -1.3544922, 1.2636719, -0.29663086, 0.25561523, 0.2512207, 1.9414062, -1.6835938, 2.1054688, -1.3349609, 0.21496582, 1.9277344, -1.4355469, 1.7519531, 0.045715332, -0.70458984, 0.08721924, 1.9804688, 1.625, -1.9140625, -0.51953125, 0.6870117, -0.56640625, -0.7236328, -1.8554688, -0.062042236, 0.11639404, 3.6210938, 0.5761719, -1.0742188, 0.003522873, -2.6953125, -2.7246094, 0.6152344, -1.9716797, 0.23449707, -1.0478516, 1.0654297, 0.98583984, -0.85009766, 0.20678711, 0.02017212, -1.1337891, -2.5488281, 0.2253418, -1.0527344, 1.7089844, 0.6201172, -1.7011719, -3.3417969, -1.390625, 1.7236328, 1.5244141, -0.5361328, 0.5151367, 0.07940674, -0.6586914, 1.0332031, -0.6904297, 2.0625, 0.15026855, 0.45532227, 0.087646484, -0.94628906, 1.2001953, -3.1054688, -0.31591797, 1.6933594, -0.4362793, -0.96240234, 1.8076172, 1.2177734, -2.015625, 0.07574463, -1.0458984, 0.25463867, -1.3349609, -0.70458984, 0.021850586, -2.4667969, 0.9682617, 0.484375, -2.4804688, -1.171875, 3.5214844, -0.07727051, 0.33544922, 1.4931641, 1.8007812, -0.33422852, -1.21875, 2.2695312, -0.7705078, -1.3642578, -1.7519531, -1.7626953, 0.50634766, 1.7431641, -1.4111328, 0.13183594, 2.2109375, 3.4160156, 0.94189453, 0.30981445, 0.1842041, 2.6289062, 1.0478516, 2.5957031, 3.8222656, 0.49609375, 2.734375, 1.9121094, 1.7695312, 3.6542969, -1.1298828, 1.1269531, 0.14660645, 1.3525391, 1.5576172, -2.5175781, -0.02947998, -0.066711426, 1.6914062, 0.33251953, 0.11364746, 2.8339844, -3.0839844, -0.007698059, -1.2226562, 0.61816406, -4.8125, 1.015625, -1.40625, 0.71191406, -1.9794922, 1.0224609, 0.7548828, 0.31079102, 0.013252258, 0.9863281, 1.3212891, 1.3925781, -2.0625, -1.6308594, -2.2011719, -1.2998047, -0.48095703, 1.5478516, 1.9023438, 0.29638672, 1.1337891, 0.96777344, -1.0029297, -0.5097656, 2.1074219, -2.0761719, 0.46948242, -1.4462891, 1.0869141, 2.203125, -0.9326172, 2.7011719, -0.6113281, -0.3251953, -3.1875, 1.109375, -0.42407227, 0.70458984, -0.041015625, -4.8359375, 0.4519043, -1.1591797, 1.8447266, -3.1582031, 0.28076172, 0.1463623, -3.5664062, 2.1015625, 0.5239258, -2.4824219, 2.09375, 0.63623047, -1.9814453, -0.6669922, 1.734375, 0.8432617, 1.2294922, 0.08666992, -0.8955078, -0.20837402, -1.1767578, 3.2441406, -2.0488281, -2.140625, -1.5175781, 1.6269531, -0.4958496, 1.2275391, -0.95751953, -0.7578125, 1.0097656, 0.39794922, 0.98046875, 0.13354492, -2.1230469, 0.44995117, -0.22070312, -0.11645508, -0.101623535, 1.4550781, -0.44018555, 0.92529297, -1.2011719, -1.1064453, -0.6347656, -0.37109375, 2.4609375, 0.57470703, -0.6845703, -0.6357422, 0.94140625, 1.5791016, -1.9804688, 0.78515625, 0.04751587, -0.051513672, -0.7089844, -2.2304688, 0.15917969, 1.0859375, 0.609375, -0.75634766, -0.20739746, 0.2578125, -1.2304688, -0.97021484, -3.5527344, 2.2636719, 2.5078125, 0.96484375, 0.88134766, -0.6142578, -0.3713379, 1.5966797, -0.2775879, 0.99853516, 1.0039062, 1.5019531, 1.0839844, 0.67578125, -0.72998047, -2.1875, -0.7548828, -3.8398438, 0.4296875, 1.8759766, -1.7236328, 1.6240234, 0.1998291, 1.5917969, -1.2109375, -0.7558594, -0.11975098, -2.0117188, 1.3730469, -2.6953125, 1.265625, 0.6870117, 0.9819336, 1.1533203, 1.9755859, 1.9023438, -1.2373047, -1.1357422, 2.203125, -1.0273438, -1.171875, -0.9272461, 0.35058594, -1.3583984, -0.12988281, 2.3574219, 3.390625, 0.05102539, -1.6679688, -1.5507812, -0.8671875]}, "B01HID4Y7Q": {"id": "B01HID4Y7Q", "original": "Brand: Char-Broil\nName: Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: 2-burner, 24,000-BTU Cabinet Gas Grill\n300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates\nStainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional\nElectronic ignition for fast and reliable startups. Metal side shelves fold down when not in use.\nConvenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.\n", "embedding": [-3.2773438, 1.3652344, 2.21875, 1.5761719, 0.2668457, -1.2050781, 0.58496094, -1.3789062, -0.54003906, 1.7890625, 1.9003906, -1.5009766, 1.5029297, -2.28125, 0.93652344, -0.039764404, 1.7861328, 1.984375, 1.6972656, 0.23352051, -0.0713501, 1.3564453, 0.8959961, 0.8105469, 0.07885742, 1.046875, 3.2929688, -2.1542969, 0.41381836, -2.2265625, 1.9208984, -0.37329102, 0.0008125305, 2.0214844, -2.7519531, -1.6171875, -1.9785156, 1.1523438, -2.9121094, -0.0647583, -0.28149414, -0.73779297, 2.0371094, 0.5102539, -2.5332031, -0.07305908, -0.4970703, 0.20153809, -1.1015625, -0.28466797, 1.5761719, 1.6083984, 0.27856445, 1.6113281, -1.8730469, 1.8447266, 1.0039062, -0.91015625, 1.0859375, -0.92626953, 2.6992188, 0.05340576, -2.0722656, -0.42773438, -2.4863281, 0.8598633, 0.5517578, 1.2070312, 0.2467041, 0.5439453, 1.7021484, -1.0625, -1.3945312, 0.5097656, 1.0664062, -0.44702148, -2.5429688, 2.0429688, 1.2568359, -0.056640625, -1.9003906, 2.421875, 0.27807617, -3.0078125, 0.19702148, 0.02330017, 0.4309082, -1.2705078, 0.19934082, 1.7558594, -0.6298828, 2.2050781, -0.7529297, -2.4023438, 2.0605469, -0.88964844, 0.8076172, 0.3486328, -0.055267334, 2.2363281, -0.9824219, -0.43774414, -2.2421875, -1.0419922, -3.0195312, -1.9550781, 0.14782715, 0.29638672, -3.0078125, 0.5239258, -2.1289062, -0.6098633, 0.79003906, 1.0126953, 0.6464844, 1.5058594, 0.022918701, 3.6953125, 1.2441406, 1.7890625, 3.7011719, -0.22802734, 0.26489258, -0.9604492, -0.023162842, 0.9091797, -0.8676758, 2.5195312, 5.4960938, -1.9384766, -0.13220215, -2.6308594, 3.1777344, 0.59814453, -1.7080078, -1.9462891, -2.6289062, -1.0908203, -4.515625, 1.0986328, -2.875, 1.5859375, 0.116760254, 0.04638672, -2.5175781, -1.3613281, 0.12548828, 2.0273438, -0.28588867, -3.5722656, 0.55810547, -2.8574219, 0.95410156, -1.4287109, 1.5976562, 0.33520508, -1.5410156, -2.1269531, 3.171875, 0.6772461, 0.43164062, -2.1015625, -0.2467041, 2.46875, -0.20324707, 0.13586426, -1.2978516, 1.7050781, -0.61572266, 0.86279297, 0.088134766, -2.1054688, 0.24401855, 1.1601562, 0.33764648, -1.390625, -0.014312744, 3.6777344, 1.4882812, -0.33618164, -0.37524414, -3.828125, -0.23791504, 0.8408203, 0.20874023, -0.63378906, 0.4794922, 1.0634766, -0.22497559, -1.1152344, 1.6552734, -0.35888672, -0.16125488, 0.10546875, 0.94433594, -0.89746094, -2.1074219, 0.008804321, -0.72265625, 0.07910156, 0.25463867, 0.122802734, 0.18981934, 0.87646484, -2.5058594, -2.9746094, 0.47924805, -2.3808594, 0.9746094, 1.5302734, 2.2089844, -1.3876953, 1.4179688, -2.375, 0.5151367, -2.2929688, 1.8359375, -0.7207031, 2.40625, 1.7998047, 0.49926758, -0.83203125, 0.117492676, 0.9614258, 0.18566895, 1.5039062, 0.4946289, 0.7114258, -0.76904297, -1.4853516, 2.0449219, -0.31323242, 0.6142578, 0.014450073, -0.29858398, 1.6523438, -0.105285645, -2.2636719, -1.0195312, -0.60839844, 0.75634766, -0.9926758, -0.15588379, -1.4248047, 1.5244141, 0.9614258, -2.1269531, 2.453125, 1.9707031, 1.1962891, -0.10809326, 0.054901123, 0.875, 1.9814453, -0.640625, 1.6083984, -0.5996094, 1.0449219, -0.78271484, -3.2460938, 0.8828125, 0.19812012, 0.20959473, -1.1728516, -0.53125, -0.6010742, 3.0058594, 1.6152344, -1.7832031, -1.5644531, 0.26904297, 1.0683594, 2.0097656, -1.8007812, 1.6201172, 2.3339844, -0.39941406, 3.3828125, 0.058624268, 1.1816406, 0.8901367, -0.60839844, 3.6640625, -2.9160156, -0.5805664, 1.1962891, 0.9057617, -0.4086914, -0.19018555, 1.1464844, 4.7929688, -0.15966797, -4.0507812, 4.6132812, -0.85839844, -1.1376953, 1.2011719, 0.60253906, -1.1767578, 0.61572266, 3.5703125, 1.3125, 0.9736328, 2.1640625, -2.6816406, -1.4511719, 0.2841797, -1.2236328, -1.6826172, 1.2089844, -0.34399414, -0.16149902, -2.2890625, 1.0078125, -3.2597656, -0.65771484, 4.0546875, -1.9638672, 0.8984375, 0.25463867, 0.5830078, 0.52441406, -1.2226562, -2.0273438, -0.5283203, 0.6508789, -0.82177734, -0.5991211, 0.036712646, -0.039398193, -0.44360352, -0.23083496, 0.7348633, -1.765625, -2.109375, -0.66748047, -2.1796875, -3.9355469, -0.16503906, -0.20690918, -0.42333984, 1.125, -3.8339844, 0.6923828, -0.6333008, -3.3769531, -1.5556641, 0.48217773, -0.44360352, -0.6088867, 0.5341797, 0.5991211, -0.27026367, -3.7832031, -0.06915283, 0.85009766, -0.4255371, -0.4543457, -2.1367188, -0.37573242, 0.57373047, -0.06524658, -1.0410156, 2.3339844, 1.0742188, 0.15234375, 0.07739258, -2.75, 1.140625, -3.4863281, 0.90771484, -1.3466797, 1.5703125, -3.0878906, -2.4609375, -0.37817383, -1.4609375, 3.3828125, 0.22106934, 1.3994141, 1.0966797, -0.74365234, 0.6870117, -0.93652344, -3.2695312, -0.7114258, 1.0361328, -0.93115234, -3.21875, -3.4804688, 1.3916016, -1.0751953, -0.24511719, -0.6928711, 0.019073486, -2.2460938, 0.32617188, -1.6259766, -1.0742188, -0.53564453, 1.5361328, -0.44433594, -0.8251953, -1.7431641, 0.28149414, -1.5947266, -0.04547119, -0.83251953, 1.7832031, -1.2861328, 1.5234375, 1.6005859, -0.13549805, 1.3613281, -2.1894531, -3.6171875, 3.0078125, 1.4042969, -1.5175781, 1.7851562, -1.0566406, -2.6972656, -2.1855469, -0.13537598, 2.3066406, 2.4628906, 2.7675781, 0.9765625, -0.7285156, 3.0585938, 1.4101562, 0.2388916, -0.7998047, -0.14990234, 2.7128906, -2.28125, -1.9873047, 0.50927734, 3.7949219, -2.2578125, -2.09375, 2.7265625, -0.11419678, 2.9023438, 3.0292969, 0.026565552, -0.018463135, -1.3583984, 3.1523438, 2.0410156, 0.7944336, -0.62158203, -1.203125, 0.19348145, -0.40014648, 0.83496094, 2.0644531, -0.39404297, 1.0673828, 1.5273438, 0.80566406, -2.5488281, 0.5019531, -0.37353516, -0.03466797, -0.91064453, 1.59375, -1.2773438, 0.98828125, -2.4726562, -0.7939453, -0.5307617, -1.2255859, -0.49487305, 2.8222656, 0.25952148, 0.47631836, 0.31640625, -0.08831787, 0.85302734, -1.2978516, -0.08068848, -1.4462891, 0.060180664, -0.12133789, -0.5834961, 0.17651367, -1.4580078, 1.8007812, -2.0019531, -0.7011719, 0.21862793, 3.671875, -0.48364258, -1.6171875, 0.5751953, 0.47802734, -1.6992188, 2.90625, 0.86279297, -2.5429688, 2.8945312, -1.0361328, 0.53222656, 1.0185547, -2.8066406, -0.006248474, -0.84716797, 1.2138672, -0.44360352, 1.3583984, 1.3261719, 0.03955078, -1.8710938, 0.81347656, -3.5703125, -0.32885742, -0.48828125, -1.8505859, -3.078125, 2.8632812, 1.3554688, 1.6035156, -0.5776367, 2.8925781, -0.7236328, -0.9951172, 1.4013672, -3.78125, -1.2519531, -2.2167969, -4.40625, 1.0625, 0.05670166, -1.140625, 2.4863281, 0.18554688, -1.4589844, 1.3320312, -0.45141602, -3.6601562, -0.36523438, -0.7324219, -0.71777344, -0.2319336, -0.35742188, 1.7880859, 0.6894531, -2.3261719, -1.6494141, -0.3972168, 0.094177246, 1.2333984, 3.2949219, -2.3789062, 1.7324219, -2.5292969, 0.5649414, -2.1484375, -1.5673828, 1.9023438, -1.0214844, -0.0758667, -3.2109375, -0.064941406, 1.2919922, -1.1044922, 1.7402344, 2.0117188, 0.5786133, -0.9453125, -0.62060547, 1.5244141, 1.5419922, 0.24072266, -3.5195312, -1.6962891, -0.28393555, 0.28881836, -1.0751953, 1.1152344, -0.60253906, -2.1269531, 0.51660156, 1.0419922, -0.21911621, 2.5371094, -0.14404297, -1.8388672, -1.421875, 0.7836914, -1.0966797, -1.6318359, -0.17480469, 0.5053711, -0.20263672, -0.64941406, -2.3671875, 0.39868164, -1.9267578, -1.3417969, -4.0429688, 3.140625, 2.1875, 2.1191406, 2.3574219, -1.3925781, 0.71240234, -0.78271484, -1.1220703, -0.38232422, 1.6904297, -0.29467773, 0.68115234, -0.08404541, 0.30322266, -2.6113281, -1.3388672, 1.4091797, -3.0292969, -0.99365234, -1.5947266, 0.1652832, -1.7998047, -1.1689453, 1.5478516, -0.70996094, 2.8613281, -0.76904297, -1.2207031, -0.875, 1.4228516, -0.5546875, 1.6386719, -1.1738281, 0.78808594, 0.8544922, 1.8203125, 0.52783203, -0.2614746, -0.5336914, -1.8505859, 2.5976562, 1.0048828, 0.04623413, 0.3244629, 0.6401367, -0.9765625, -1.2890625, 0.7026367, 4.8945312, -0.11505127, 3.8808594, 1.1669922, -2.8691406, 1.7255859, 0.12841797, -3.9355469, -0.31079102, -0.8120117, -0.12548828, 1.6376953, -0.62353516, -4.7617188, -0.76953125, 1.0419922, -0.084228516, 0.5419922, -0.7753906, -1, 0.6171875, -2.5273438, -1.0273438, 0.24121094, 0.29174805, -1.4169922, 0.77197266, 0.4645996, -2.0253906, 0.38989258, 3.1308594, -0.62841797, -1.9648438, 2.2988281, 0.0055732727, 1.3125, -1.3662109, -1.1279297, -1.7119141, 0.07556152, 2.8867188, 0.41845703, 2.3320312, 0.92822266, 2.0410156, -2.34375, 0.5620117, -0.78271484, 3.7871094, -2.3925781, -0.6923828, 1.7431641, -1.8964844, 0.41381836, -2.9140625, 1.1669922, -0.86621094, 2.5898438, 2.1015625, 0.5708008, -1.0507812, 0.099609375, -1.4404297, -5.5625, -1.1640625, -0.16955566, 0.4880371, 0.43530273, 1.2626953, -2.2246094, 2.7402344, 0.46533203, -1.0527344, -1.75, -0.049438477, -0.7680664, -1.4736328, -0.005508423, -1.3349609, -0.5917969, 1.9404297, 1.140625, -0.029632568, 0.45947266, -2.890625, -1.5537109, 1.7353516, -2.1464844, 1.5380859, 0.9868164, 0.40722656, 1.0830078, 1.1806641, 0.058898926, -2.4082031, 1.5351562, -0.38842773, 0.21057129, 1.5830078, -0.08331299, -0.88964844, -0.23901367, -1.9082031, -0.10601807, -0.07128906, 0.7504883, 0.05505371, -0.31323242, 0.12915039, 0.72314453, -0.31420898, -0.6201172, 0.78515625, 1.1318359, 1.6035156, 0.38891602, -0.8618164, 0.32641602, -2.3261719, -1.6328125, 0.44995117, -3.1660156, -0.1661377, -2.1328125, 0.38256836, 1.015625, -0.024551392, -0.3095703, 0.31958008, -0.124816895, -0.44995117, 0.89453125, -1.3652344, 2.7265625, 2.171875, -0.70214844, -1.4140625, 0.37060547, 1.3837891, 1.2216797, 1.2236328, -1.1777344, 0.9633789, -1.7509766, 1.6289062, 0.16918945, 2.5566406, 1.6171875, -0.67822266, -1.3818359, 1.0957031, 3.9453125, 0.5185547, 1.0732422, 0.35595703, 0.8071289, -0.33544922, 3.7714844, 0.34692383, -2.6777344, 1.3027344, -2.6777344, 0.39135742, -0.08325195, -0.7939453, 0.75146484, -3.1992188, -2.5742188, -1.6816406, -0.8691406, -2.7363281, 2.6953125, 2.0019531, -1.9960938, 0.83496094, 1.9765625, -1.46875, 2.4140625, 2.4414062, 1.9355469, -0.65234375, 0.60546875, -0.98095703, -0.21166992, 0.49487305, -3.7773438, 0.55908203, 1.0976562, 0.7158203, -0.6826172, 3.5957031, 1.1787109, 1.6591797, 2.4453125, 1.2138672, 3.0410156, 2.0566406, 3.0488281, -0.5727539, 0.7446289, 1.7587891, -0.1850586, -0.21496582, 2.1816406, 1.8417969, -0.2841797, -1.0009766, 2.2441406, -1.1757812, -1.6328125, -0.20874023, 1.2402344, 0.6723633, -3.53125, 2.0195312, -0.2680664, 1.0341797, -1.3378906, -0.96875, -0.42211914, -1.7060547, -0.09399414, -0.32885742, 3.3574219, -0.6484375, 1.3740234, 0.31689453, -0.09979248, 1.6357422, -4.1445312, 0.5209961, 0.14013672, -0.7871094, 0.022766113, -1.2578125, 1.4912109, 0.19958496, 0.4399414, 0.5966797, 1.0810547, 0.9291992, 1.5029297, -2.8925781, 0.7705078, 0.26513672, 2.3066406, -0.66552734, -0.75439453, 1.1484375, -1.8623047, -2.75, -2.7851562, 2.328125, 1.0566406, 2.9746094, 0.04006958, -0.32617188, 2.9628906, -0.005264282, 2.7304688, -1.9169922, 1.1611328, -0.070495605, -4.1445312, -1.0507812, 0.54589844, -0.64746094, 3.5644531, 1.1933594, -1.2373047, 2.1269531, 0.63964844, 1.7529297, 1.2626953, 0.7128906, 0.26098633, 1.1162109, 1.4492188, 1.9355469, -0.7128906, -0.31884766, -1.6767578, 2.9003906, 0.42285156, -1.3847656, 1.5859375, -1.4951172, 1.2138672, -0.7885742, 0.50097656, -0.056243896, -2.9003906, -1.3427734, 0.50634766, 1.7587891, -0.9165039, -0.49780273, 2.1875, 0.4411621, -2.7421875, 0.32885742, 1.3242188, -1.2255859, 2.609375, 1.1064453, -0.21960449, 0.9160156, 0.01322937, 1.6298828, -0.115478516, -1.7910156, 0.0006623268, 0.484375, 0.6269531, -0.5541992, -0.69189453, 0.49829102, -0.3955078, 0.090270996, 0.7763672, -0.21606445, -1.0742188, 1.59375, -0.63134766, -0.5239258, 1.7324219, -0.9370117, 0.43139648, -3.3769531, -1.4042969, -1.6259766, 1.0283203, -0.9790039, 1.6445312, 2.7617188, 1.5585938, 0.8930664, -0.22949219, -2.6757812, -0.38232422, -1.3818359, 1.9589844, 0.99365234, -0.60253906, 1.1757812, -1.4189453, 2.0273438, -1.1582031, -2.3691406, 1.0546875, 0.13867188, 0.26782227, 0.23535156, 0.83691406, 0.6113281, 1.4082031, 0.13891602, 2.7011719, 1.65625, 0.026062012, 0.07495117, 1.3554688, 0.50146484, -0.95703125, 1.5322266, -0.7705078, 0.80029297, 1.4091797, 1.7226562, 1.8964844, -0.068359375, 0.5996094, -1.6171875, -3.8945312]}, "B01HITNEEY": {"id": "B01HITNEEY", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black\nDescription: \nFeatures: 280 square inches of cooking space over porcelain-coated grates\nTwo stainless steel in-line burners for cooking performance;Assembly Required\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\nPiezo ignition system for fast and reliable startups. Cooking System: Convectional\n", "embedding": [-1.359375, 1.0292969, 1.7050781, 0.2668457, 0.34033203, 1.5146484, 0.63183594, -1.078125, 0.52783203, 1.09375, 1.6025391, 1.1572266, 0.9785156, -1.4023438, 0.90234375, 0.9794922, 0.81591797, 1.125, 0.5698242, 0.9746094, -0.011886597, -0.0013217926, 1.1152344, -1.5341797, 0.84765625, 1.3515625, 3.8261719, -3.6621094, -0.1005249, -0.89990234, 1.6748047, 0.6850586, 0.26171875, 2.0175781, -2.4609375, -0.9941406, -0.58935547, 0.54052734, -2.1972656, 1.6396484, -0.25097656, -0.6586914, 2.3066406, 0.28198242, -1.8808594, 0.27197266, 0.81689453, 1.4619141, -2.0078125, 0.15234375, 2.2246094, 1.4580078, -0.2680664, 0.49682617, -0.23291016, 2.1308594, 1.1484375, -0.51953125, 1.5693359, 1.5722656, 1.7617188, 0.39770508, -2.4316406, -0.38305664, -1.4003906, 0.014656067, 0.08203125, -0.58203125, -0.6015625, -0.3076172, 2.2128906, -0.31835938, -1.1894531, 0.7675781, 0.18310547, -0.73828125, -2.765625, 1.8164062, 0.82421875, -1.1767578, -1.6875, 1.7568359, 0.8647461, -1.3740234, 0.5151367, -0.043029785, 0.29785156, -1.9677734, 1.1972656, 0.26708984, -0.58984375, 1.1005859, -1.7607422, -4.2929688, 1.6875, -0.004638672, 1.1337891, 1.8496094, 0.15063477, 1.5146484, -1.0947266, 0.06173706, -0.84814453, 0.15673828, -2.359375, -1.1865234, 1.1962891, 0.86572266, -3.4628906, -0.04928589, -1.0332031, 0.8564453, 1.5927734, 0.48168945, 2.0625, 0.6791992, 1.2216797, 0.7216797, 1.6552734, 0.61083984, 2.6992188, 0.29296875, 0.2854004, -0.21081543, -0.7426758, 0.011657715, -0.75683594, 2.3496094, 4.8085938, -2.5664062, -0.8691406, -0.41455078, 2.7207031, -1.1044922, -1.3105469, -1.9638672, -1.1621094, -1.5478516, -3.0332031, 0.05218506, -2.0625, 0.15002441, 1.0820312, -0.859375, -4.015625, -0.8666992, 1.0976562, 1.0986328, 0.24206543, -1.7880859, 0.6694336, -2.3964844, 1.0058594, -1.1220703, 1.3105469, -0.60253906, -0.81640625, -1.7099609, 3.4492188, 0.3166504, 0.13769531, -2.6835938, -0.43017578, 0.54833984, 0.15710449, -0.36791992, -0.15185547, 1.5361328, -0.103149414, 0.37304688, -0.30688477, -1.0371094, 0.67333984, -0.6020508, -0.25024414, -0.10668945, -0.38671875, 0.95947266, 0.18603516, -0.578125, -2.5742188, -1.3623047, 0.58154297, -0.22094727, 0.6557617, -1.1162109, 0.14501953, 0.80615234, 1.3779297, 0.0715332, -0.55078125, 1.1533203, 0.21765137, 1.4609375, -0.84375, -1.4960938, -0.1427002, -0.28881836, 0.9536133, 0.7685547, -0.9785156, 0.36572266, -0.59277344, 0.5625, -1.8632812, -3.4863281, -0.011077881, -1.4199219, 2.4042969, 2.1054688, 2.53125, -1.4804688, 1.5498047, -1.5, 0.8823242, -2.265625, 1.6123047, -0.87158203, 2.0957031, 1.3291016, -0.39672852, -0.18591309, 1.2128906, 0.84375, 0.06262207, 0.92089844, 1.3759766, 0.9296875, -3.4648438, -0.7446289, 0.7578125, 0.70214844, 0.4321289, 0.76660156, -0.04876709, 0.90722656, 0.2166748, -1.0283203, -0.33203125, -0.5629883, -0.38061523, 0.10595703, -1.1835938, -1.9833984, 0.59033203, 1.9208984, -3.2382812, 2.0234375, 0.83251953, 0.9428711, -0.9580078, -0.051452637, 1.0175781, 0.3959961, -1.3203125, 0.98046875, -0.9970703, 1.2529297, -0.44018555, -1.8525391, 1.6699219, 0.26000977, 0.16027832, 0.31030273, 2.1210938, -0.80029297, 2.3339844, 0.5629883, -1.1210938, -1.4199219, 1.3867188, -0.035705566, 1.9003906, -0.8491211, 1.8730469, 1.2773438, -1.7617188, 3.53125, -0.16674805, 1.5625, 1.5253906, -0.5253906, 1.4150391, -2.703125, -0.09350586, 1.2373047, 1.0351562, -0.9277344, -0.7392578, 0.8105469, 4.8828125, -1.1044922, -1.9902344, 3.3730469, -0.33740234, -0.68066406, 1.8388672, -1.3837891, -2.0253906, 1.1552734, 2.6269531, 0.17602539, 0.68310547, 1.1308594, -0.58740234, -1.3251953, 0.3630371, -0.7084961, -0.2763672, -0.11218262, 0.045318604, 0.10180664, -1.3554688, -0.3737793, -1.8554688, -0.85058594, 1.7646484, -1.6367188, 1.4365234, -0.37402344, 1.6494141, 1.2333984, -0.11871338, -2.1777344, -1.0683594, 0.74121094, -0.9350586, 0.8510742, 0.06402588, -0.7807617, -0.6303711, -0.50927734, -0.026168823, -2.0664062, -2.0800781, -0.060394287, -2.3671875, -2.5253906, 1.0019531, -2.5078125, -0.33789062, 1.3828125, -2.9863281, 0.47143555, -1.6669922, -3.1386719, -1.1621094, -1.6533203, -1.1601562, -0.28857422, 0.93115234, 0.8808594, -0.29345703, -4.5742188, 0.22277832, -0.07458496, 0.01914978, 0.4633789, -1.0253906, -1.0302734, 0.2836914, -0.18017578, -0.6376953, -0.35302734, 0.7451172, -1.3740234, 0.19335938, -3.671875, 0.04196167, -2.8378906, 0.31420898, -1.1337891, 1.609375, -3.3886719, -1.0341797, -2.1347656, -1.7841797, 5.171875, -0.37890625, -0.22827148, 1.1611328, -0.93310547, 1.4375, -1.0224609, -2.546875, -1.3066406, 1.2177734, -0.9970703, -2.8613281, -2.7988281, 0.5620117, -0.9951172, -0.2121582, -1.5224609, 0.7285156, -1.0625, 0.68408203, -2.4902344, -1.0029297, 0.0927124, 0.1361084, 0.20153809, -0.7734375, -1.765625, -0.29711914, -2.0214844, -0.51464844, -1.0107422, 2.4335938, -0.5732422, 1.7626953, 1.8417969, -0.35131836, 0.6225586, -0.9838867, -3.4160156, 2.5664062, 0.54589844, -2.2324219, 1.2246094, -0.39404297, -2.6347656, -2.4453125, -0.9663086, 3.3144531, 2.2382812, 2.375, 0.5151367, 0.8261719, 0.85546875, 0.75439453, 0.9458008, -0.93847656, -0.5551758, 3.5644531, -1.6884766, -1.5556641, 0.35131836, 1.7919922, -2.8242188, -2.1796875, 2.8085938, 0.34692383, 2.3222656, 1.9326172, 1.7675781, 0.25195312, -1.6523438, 2.6035156, 0.5600586, -0.72998047, 0.54345703, 0.28588867, 0.6557617, -0.9526367, 0.37109375, 1.4980469, -0.13195801, 2.5527344, 0.51220703, 0.46069336, -1.9697266, 0.5410156, -1.1123047, 0.5253906, -1.0224609, 1.8710938, 0.13647461, 1.0732422, 0.38305664, -1.3623047, 0.6015625, -1.5556641, -0.54541016, 1.8710938, 1.2753906, 0.18127441, 1.0205078, 1.1962891, 1.3701172, 0.025802612, 0.21472168, -1.1103516, -0.25097656, 0.9277344, -0.47314453, -1.2783203, -1.5126953, 0.7807617, -1.8339844, -2.8613281, 0.18469238, 4.2773438, -2.2988281, -0.84472656, 1.8759766, 1.3154297, 0.25878906, 1.9775391, 0.56396484, -1.1640625, 1.6777344, -0.8486328, 0.1854248, -0.066711426, -0.08679199, 0.08465576, -1.3339844, 0.84277344, 0.005622864, 0.8564453, 1.3164062, 0.64160156, -3.1523438, -0.007850647, -2.6542969, 0.31298828, 0.39892578, -2.3105469, -1.4726562, 2.2636719, 0.055847168, 2.0800781, 0.21081543, 4.28125, -1.1660156, -1.7890625, 2.3476562, -2.0878906, 0.10809326, -2.6230469, -3.921875, 1.0761719, -1.5126953, -1.046875, 3.4414062, 0.095336914, -0.24267578, 2.2324219, 0.4182129, -3.2402344, -1.7519531, -1.3212891, -0.29663086, -0.99902344, -2.6230469, -6.610155e-05, 0.022338867, -2.6328125, -1.3251953, 0.21362305, 0.053253174, 1.1796875, 1.3125, -2.8945312, -0.10357666, -1.0136719, 0.87597656, 0.20800781, -0.8618164, 1.2021484, -1.6582031, -0.01008606, -3.4453125, 0.9140625, 1.796875, -1.5751953, 2.2539062, 1.5595703, 0.43139648, -1.8857422, -0.20935059, 0.88134766, 3.296875, 0.05218506, -2.4375, -2.359375, 0.9970703, -0.7211914, -0.7207031, -1.0390625, -0.48266602, -1.8007812, -1.4560547, 2.4550781, 1.2783203, 1.203125, -0.08312988, -2.4414062, -0.10632324, -0.43164062, -1.8173828, -1.1210938, -0.64746094, 0.66796875, 0.40283203, 0.61083984, -2.4472656, 1.7958984, -1.3154297, 0.27075195, -2.1582031, 3.515625, 1.0273438, 2.5332031, 2.4589844, 0.11279297, -0.28710938, 0.13366699, -0.7402344, -0.6894531, 0.859375, -0.9086914, 0.9560547, -0.3725586, 0.4741211, -2.2597656, -0.10876465, 1.0878906, -1.953125, 0.39135742, -0.99609375, -0.46142578, -1.2363281, -1.0673828, 1.1328125, -0.6064453, 2.4257812, -1.4833984, -0.58203125, -0.08215332, 1.1210938, -0.31323242, 0.5913086, -0.6542969, -0.13293457, 0.9868164, 1.4121094, 0.63134766, -0.7480469, 0.7988281, -1.6660156, 1.5683594, -0.3918457, 0.9941406, 1.2490234, 0.0791626, -0.06060791, -1.8046875, 2.0273438, 3.4765625, 0.25268555, 3.6328125, 0.9941406, -3.5449219, 2.1328125, 0.9848633, -3.8496094, -1.5009766, 0.0871582, 2.0175781, 0.6015625, -0.42504883, -4.53125, 0.33081055, 1.4082031, -0.9980469, 1.3417969, 1.2373047, -1.5673828, -1.1367188, -2.7890625, -1.3681641, -1.0673828, -0.040771484, -1.3769531, -0.4765625, -0.11553955, -2.1621094, 1.0664062, 3.3027344, -0.34570312, -1.2304688, 1.9345703, -1.0810547, 2.1308594, -1.0683594, -0.9926758, -1.3349609, 0.7182617, 3.4375, 0.7294922, 1.0859375, 0.25927734, 2.3535156, -3.2890625, 0.69921875, -1.1289062, 3.59375, -1.3339844, -0.20263672, 1.4560547, -2.8066406, 0.6699219, -2.5332031, 0.8466797, -0.17932129, 4.1484375, 1.7470703, 0.38110352, -1.2373047, 0.4711914, -1.4482422, -4.3554688, -1.3916016, 0.34570312, 0.38671875, 1.0761719, 0.41845703, -1.2382812, 2.2636719, 0.083740234, -0.42016602, -0.80615234, 0.14440918, -1.4970703, -1.7851562, -1.4023438, 0.25854492, -0.5473633, -0.033233643, 2.0878906, -0.4399414, 0.11981201, -2.4941406, -1.3730469, 1.6875, -0.3125, 0.47558594, 3.0585938, 0.16125488, 0.35351562, 0.27075195, 1.7119141, -2.8984375, 2.3867188, -1.9511719, -0.16113281, 0.7421875, -0.21069336, -0.38867188, -0.078063965, -0.7841797, 0.28637695, 0.08203125, 2.0175781, 1.1162109, -0.92285156, -1.4013672, 0.4489746, -0.7885742, -0.58740234, 1.15625, 0.61621094, 1.7275391, 1.4189453, -3.5742188, -0.5444336, -0.14685059, -1.6513672, 0.11932373, -2.5976562, 0.2626953, -1.0332031, 0.24902344, 1.3447266, 0.15710449, -0.07220459, 1.2714844, -0.44458008, -0.5654297, 0.39819336, -1.7802734, 3.3847656, 3.2011719, 0.7055664, -0.75146484, -1.4199219, 1.5478516, 1.859375, 1.3623047, -1.3603516, -0.4963379, -0.9526367, 0.84375, -0.25952148, 0.13110352, 1.921875, 0.48535156, -1.7324219, -0.7216797, 3.3945312, 0.43847656, 0.63134766, 1.3457031, 1, -0.96728516, 4.7578125, 0.53125, -2.0683594, 2.3125, -0.8334961, 2.1601562, -0.84716797, -0.14709473, -0.29296875, -1.8359375, -1.7070312, -2.2714844, -1.4033203, -1.7373047, 2.7246094, 1.0800781, -2.3945312, 0.31518555, 0.6821289, -0.6298828, 2.6054688, 1.1826172, 0.5576172, -0.0045814514, -0.087768555, -0.70214844, -1.0986328, 0.78125, -3.390625, 1.359375, 1.5566406, -1.4658203, -1.2617188, 3.2246094, 2.0761719, 3.0546875, 1.4150391, 1.4951172, 2.40625, 1.5888672, 1.8417969, 0.7158203, 1.6464844, 1.2880859, -1.5087891, 1.2470703, 1.8203125, 2.2636719, 1.1347656, -1.4726562, 1.8798828, -1.7089844, -2.4355469, 0.12335205, 0.019332886, 0.6694336, -2.5742188, 1.7373047, 1.2021484, -0.19311523, -1.1806641, -1.5791016, -0.7973633, -0.71191406, -0.025787354, -0.4482422, 3.5664062, -0.33422852, 0.328125, -0.27075195, 0.5703125, 1.4882812, -3.2382812, -0.20666504, 1.5595703, -1.4736328, -0.14257812, -0.036071777, 1.3242188, 0.46850586, 1.3027344, 1.4394531, 2.0703125, 2.0195312, 0.25610352, -0.47607422, -0.2788086, -0.6323242, 2.6679688, -0.27905273, -1.8261719, 1.6337891, -1.7626953, -3.21875, -4.7148438, 1.8867188, 0.6044922, 1.8398438, 2.1347656, -2.1269531, 1.9013672, 0.33251953, 0.49902344, -2.8027344, 0.46972656, -0.18945312, -3.4355469, -1.1611328, 0.5234375, 0.3178711, 2.2636719, 1.0078125, -1.8447266, 1.4599609, 1.2207031, 1.8007812, 0.20251465, 1.1914062, 1.4248047, 1.5566406, -0.88964844, 2.2304688, -0.041290283, -1.2373047, -1.7773438, 1.4716797, 1.5166016, -0.9868164, 0.5541992, -1.3613281, -0.007621765, -0.35498047, 0.25927734, -0.2286377, -2.6191406, -1.1416016, 0.17492676, 0.46923828, -1.3378906, -1.7607422, 3.4609375, 1.1767578, -1.6240234, -0.3046875, 2.6132812, 0.047088623, 2.1699219, 0.05508423, 0.2109375, 0.2454834, -0.6899414, 1.2226562, 0.10247803, -1.5283203, 0.34399414, 2.4277344, 0.4506836, -0.48168945, -0.40014648, -0.7060547, -1.2548828, 0.14733887, -0.11834717, -1.0263672, -2.015625, 2.7558594, -0.5996094, 0.68652344, 2.5722656, -1.8017578, 0.17126465, -2.5253906, -0.6459961, 0.07861328, -0.76123047, -0.8154297, 1.5527344, 4.140625, 0.83984375, 0.2265625, -0.85595703, -2.6953125, -1.0371094, -2.1914062, 2.2636719, -2.1054688, -0.13244629, -0.3359375, 0.50390625, 1.6552734, -2.015625, -2.0703125, 0.4255371, -1.9072266, 1.2001953, -0.4189453, 2.1914062, 1.4111328, 0.43554688, 1.0527344, 0.33813477, 2.0449219, -0.3630371, 0.58935547, 3.3613281, 0.024108887, -1.9492188, 1.6074219, 0.06402588, 0.3388672, 0.7426758, 0.48779297, 1.3925781, 1.0439453, 0.55615234, -1.0185547, -3.1699219]}, "B07B8SPXTG": {"id": "B07B8SPXTG", "original": "Brand: Blaze\nName: Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP\nDescription: Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...\nFeatures: Blaze Grills offers a best-in-class Lifetime warranty\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef\nFull-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\nCast stainless steel Linear Burners for durability and longevity\n", "embedding": [-1.6269531, 1.3056641, 2.1679688, -0.9223633, 0.45629883, -0.2763672, 0.9501953, -0.4855957, -1.0664062, 2.5605469, 0.1373291, -1.7910156, 1.5751953, -3.2050781, -1.5634766, -0.1850586, 0.85498047, 0.57421875, 2.2597656, 0.00894928, 0.8095703, 0.73339844, 0.95654297, -0.7895508, 1.0214844, -0.26879883, 2.9472656, -3.625, -1.0605469, -1.5488281, 2.0898438, -0.6791992, -1.3193359, 1.1914062, -4.078125, -0.8745117, 0.5073242, 1.2568359, -2.1015625, -1.6162109, -1.0126953, -1.3945312, 2.3925781, 1.2070312, -2.2226562, -0.2866211, -0.22619629, 1.2353516, -2.0761719, -1.0458984, 1.3984375, 1.4648438, 0.6386719, 0.1361084, -0.91064453, 0.7167969, 0.92822266, -0.7753906, 1.5351562, 0.2944336, 3.5371094, 1.453125, -2.9804688, 0.10070801, -2.0917969, -0.68603516, 1.3105469, -0.38623047, 0.27978516, -0.17736816, 1.8125, 0.5888672, -0.8769531, 0.9477539, -0.4345703, -0.49804688, -3.1015625, 2.1484375, 1.3212891, -0.32666016, -0.8925781, 4.0625, 0.5517578, -1.7861328, -0.0592041, 0.75634766, -0.9482422, 0.08215332, 2.1074219, 0.055725098, -0.9477539, 0.8959961, 0.46191406, -2.8476562, 3.0214844, -2.5039062, 2.2402344, 0.46118164, -0.62890625, 1.5976562, -1.6533203, 0.50097656, -0.83203125, 0.08239746, -2.5273438, -1.3994141, 2.5332031, 1.6894531, -1.4794922, 0.7626953, -2.5410156, -0.45825195, 2.4023438, 0.46850586, 1.3242188, 0.67333984, 0.35009766, 1.5419922, 1.4697266, 2.0332031, 2.0253906, -0.921875, -0.20117188, -1.921875, 1.0419922, 0.20996094, -0.2956543, 1.3486328, 3.6972656, -1.0742188, -1.1992188, -0.55810547, 3.8574219, -0.36083984, -0.71777344, -2.2167969, -2.140625, -0.8256836, -3.5253906, -0.92626953, -1.3798828, 1.4199219, 2.2988281, -0.29833984, -2.9316406, -0.81347656, -0.3083496, 0.828125, -0.23583984, -1.6894531, 1.4804688, -0.7319336, -0.107910156, -3.9296875, 1.6621094, -0.7988281, -0.9350586, -2.1621094, 3.6054688, 0.7133789, -0.73095703, -2.1914062, -0.39208984, 2.0449219, -2.03125, -2.6152344, -0.07006836, 2.3515625, 0.23522949, 1.5205078, 0.11383057, -2.1835938, 0.84277344, -0.375, 1.9863281, -2.1113281, -1.9951172, 1.6025391, -0.1348877, 0.54345703, -1.3974609, -1.1171875, 0.7426758, 0.37329102, -0.014579773, -0.20812988, -0.07366943, 0.7338867, 1.6015625, -1.9619141, -0.41259766, 2.4277344, -0.5566406, 0.69921875, -0.6064453, 1.0673828, -1.71875, 0.2956543, 1.4375, -1.2089844, 0.085754395, -1.7578125, 0.79833984, 0.31079102, -2.046875, -3.0800781, -1.4355469, -1.546875, 0.12695312, 2.0273438, 1.2568359, -1.6992188, 2.9492188, -0.4987793, 1.1464844, -1.3769531, 0.4790039, 1.5917969, 1.9863281, 0.9868164, 0.81640625, -1.7246094, 0.5473633, 4.8789062, -0.18859863, 0.20861816, 1.0478516, -0.24487305, -2.5800781, -1.3789062, 1.3681641, 1.6855469, 0.7651367, -1.0498047, -1.6464844, 2.7128906, 1.3261719, -0.33618164, 0.28222656, 0.22717285, 2.2539062, -0.64160156, -2.3027344, -1.7382812, -0.52978516, 0.061340332, -1.8251953, 1.9941406, 0.83496094, 0.2705078, 0.74658203, -0.74658203, 3.1367188, 2.1523438, 0.06933594, -1.0771484, 1.4140625, 1.4042969, -1.7363281, -1.8183594, 1.9375, 0.38720703, -1.1171875, 0.105651855, -0.8754883, -0.65527344, 1.7919922, 1.6337891, -1.3925781, -0.7036133, -1.0400391, -0.19543457, 1.3564453, -0.22839355, 0.72802734, 3.0800781, -1.0654297, 1.8652344, -0.33813477, 2.3535156, 0.92041016, 0.064819336, 2.3417969, -2.6347656, -1.1083984, 0.46679688, 1.0703125, -1.3554688, -0.55810547, -0.42626953, 4.5820312, 0.6176758, -3.5332031, 2.8105469, -2.2304688, 0.07220459, -0.61083984, 0.005428314, 0.90771484, 0.89746094, 1.7480469, 1.0107422, -0.107299805, 0.9399414, -0.2626953, 0.73876953, 0.8833008, -1.8974609, 0.009124756, 1.5976562, 0.38452148, 0.0949707, -2.2636719, -1.140625, -0.58154297, -1.5410156, 3.7167969, -2.2949219, 2.1425781, 1.734375, 1.0615234, 2.109375, -0.23852539, -1.2246094, -0.9091797, 0.93896484, -0.51904297, 0.020568848, -0.3684082, -0.4975586, -2.5976562, -1.234375, -0.13916016, -1.7880859, -0.19995117, -1.7226562, -0.9785156, -2.8378906, -0.64697266, -3.5429688, -0.8613281, 0.29223633, -2.1386719, 0.33374023, -1.8183594, -3.9765625, -0.9291992, -1.3017578, -1.1816406, 1.25, -0.2697754, 0.47753906, 0.070739746, -2.71875, 1.0576172, -1.6269531, 1.0029297, 0.63427734, -0.8935547, -0.3828125, -1.3125, -0.4519043, -0.9707031, 0.8310547, 1.15625, -0.2368164, -0.4621582, -4.1757812, -1.1757812, -2.0097656, 1.3466797, -1.5048828, 0.93066406, -2.3964844, -1.3212891, -1.8662109, -0.17260742, 1.9609375, -1.0800781, 0.24633789, -0.49560547, -0.78271484, 0.921875, 0.2824707, -2.3710938, -0.39819336, -0.30786133, -1.4140625, -3.1445312, -2.7402344, 0.09112549, 0.11456299, 0.76904297, -1.5839844, 0.050567627, -0.57128906, 1.9951172, -2.1171875, -1.546875, 0.0018815994, -0.05053711, -0.6972656, -1.4755859, -2.2246094, -1.3291016, -1.5615234, -1.8046875, -0.80078125, 1.3095703, -0.09301758, 1.3076172, 1.7470703, 0.48779297, 0.6074219, -0.71533203, -3.6328125, 1.2490234, 0.5444336, -2.8847656, 1.7734375, -0.2783203, -0.9042969, -1.6494141, -0.9765625, 3.3359375, 2.3535156, 1.1289062, -0.7114258, -1.3798828, 2.5800781, -0.8017578, -0.090270996, -0.08166504, -1.0273438, 3.9257812, -2.9355469, -2.4238281, -1.4560547, 2.7753906, -2.0449219, -2.2695312, 3.9101562, 0.7426758, 0.047454834, 1.5117188, 3.5859375, 0.43798828, -1.3027344, 0.4946289, 0.050720215, 0.66845703, 1.3925781, -2.2675781, 0.47680664, -0.15563965, 0.44140625, 2.3242188, 0.62841797, 0.7675781, 3.3847656, 0.7739258, -0.3059082, 0.5888672, -0.01600647, 2.7207031, 1.5048828, 2.3222656, -1.0283203, -0.32055664, -0.50634766, -0.38793945, 0.7446289, -0.0031929016, -0.9663086, 1.5068359, 1.9238281, 0.24804688, 1.484375, 2.0136719, 0.578125, -0.87109375, 2.2246094, -1.7929688, -0.3034668, 0.9370117, 0.5932617, -0.89453125, -3.8945312, 0.48583984, -0.76416016, -1.3125, -0.04272461, 1.5595703, 2.1777344, -2.4257812, 1.5058594, 2.4140625, -0.5395508, 2.5195312, 0.21350098, -0.0023403168, 0.62109375, -1.3955078, 1.9394531, -1.0478516, -1.7441406, 0.28222656, -1.8076172, 1.5429688, -1.3447266, 1.2236328, 2.3183594, -1.3408203, 0.9453125, 0.2578125, -2.6425781, -0.018554688, -0.31860352, -2.4570312, -3.4765625, 1.7480469, 0.24768066, 1.8417969, -0.5161133, 2.6425781, 0.6855469, -1.3652344, 2.8320312, -3.5371094, -1.1650391, -2.6308594, -4.7773438, 2.1210938, -0.91503906, -1.6376953, 1.8378906, 0.11224365, -0.54541016, 0.41967773, -0.46948242, -3.28125, -1.6679688, -0.4584961, -1.0771484, 0.7675781, -1.5537109, 2.53125, 0.8286133, -2.0859375, -3.3984375, -0.28710938, -0.67578125, 0.890625, 2.46875, -2.1875, 0.89404297, -1.9580078, -0.43798828, -0.7167969, -1.5908203, 0.6645508, -2.5117188, -0.3083496, -3.7714844, 0.07446289, 2.9140625, -0.15820312, 2.125, -0.46777344, 1.0410156, 0.7089844, -0.7866211, 2.6367188, 3.4648438, 0.97753906, -3.5117188, -1.5742188, 2.3554688, 1.8359375, -1.3017578, -0.52490234, 0.023925781, -2.296875, 2.7675781, -0.28295898, 0.85546875, 1.3681641, 0.421875, -4.203125, -1.1005859, 0.07495117, -1.8417969, -1.3779297, 0.5390625, -0.26660156, 0.9472656, 2.1660156, -1.4824219, -0.20141602, -1.5400391, 0.2607422, -3.7792969, 0.53808594, 2.2773438, 2.4648438, 2.4199219, -0.11657715, -1.9550781, 0.8364258, -0.42211914, -1.4970703, 1.2460938, -3.21875, -0.16467285, 2.5332031, 1.4892578, -0.38305664, -1.3691406, 0.8774414, -3.2226562, -0.8754883, -0.26831055, -1.8310547, -2.2734375, 0.40234375, 1.7402344, -0.51220703, 2.984375, -2.953125, -2.4238281, 0.5292969, 1.0751953, 0.17907715, 0.14685059, -0.26904297, 0.46313477, 0.35864258, 3.6757812, 1.9462891, -0.5625, -0.30029297, -1.1259766, 2.125, -0.30541992, 0.8120117, -1.9082031, -0.23913574, -0.79541016, -1.4804688, 2.0878906, 2.4882812, 1.6074219, 1.7988281, 0.61376953, -2.2871094, 2.1113281, 0.52001953, -4.65625, -1.2519531, 0.7866211, -1.4501953, 0.52441406, 0.8901367, -3.828125, -1.0859375, 3.5644531, -0.9506836, 1.1611328, 1.8916016, -2.0507812, -0.4260254, -0.92285156, -0.31860352, -0.6074219, -0.50439453, -0.6040039, -0.35791016, 0.31274414, -1.8388672, 1.4296875, 2.53125, -1.1884766, -2.6152344, 1.3828125, -0.77490234, 0.5366211, -0.31225586, 0.6152344, -1.2988281, -0.6826172, 1.1523438, 0.025680542, 2.3046875, 1.3847656, 2.8984375, -3.9648438, 0.8544922, -2.0917969, 2.7832031, -2.8847656, -0.21716309, 2.2148438, -1.3857422, -1.3046875, -2.8535156, 0.1083374, -1.2880859, 1.0703125, 1.7431641, -0.8457031, -2.0117188, 1.7607422, -2.9394531, -5.453125, -1.8164062, 0.62939453, -0.11450195, 0.16552734, -0.08935547, -1.3857422, -0.018005371, 1.4501953, -1.7763672, -0.57421875, -0.1940918, -2.1601562, -0.78125, -1.2177734, 1.2792969, 0.46362305, -0.5517578, 1.7890625, -1.2490234, 1.9306641, -3.9296875, -0.9589844, 2.6289062, -1.8154297, 0.42333984, 1.5078125, -0.9916992, 0.5258789, 1.9199219, -0.6044922, -2.1347656, 1.7265625, -1.3837891, 0.71435547, 0.4296875, -1.2744141, 0.028121948, -0.32177734, 0.8935547, -0.2902832, -0.38916016, -2.0175781, 0.8666992, -0.2878418, -0.96875, 0.7285156, -0.1418457, -2.1679688, 1.8671875, 0.8798828, 0.9272461, -0.16503906, -1.0292969, -0.09429932, -2.1992188, -3.2519531, 0.69091797, -2.4101562, 0.8652344, -0.07067871, 2.3222656, 1.2597656, 0.5029297, 1.4589844, 0.43823242, 0.07421875, -1.6796875, 0.026870728, 0.10180664, 3.7734375, 2.9257812, -2.7070312, -0.7138672, -2.1914062, 1.7646484, 0.49902344, 0.0012512207, -1.5859375, -0.31811523, -1.9414062, 0.42236328, 0.27441406, 2.0957031, 1.8134766, -0.30541992, -1.2578125, 1.6992188, 2.5292969, 0.091552734, 1.9775391, 0.0925293, 0.47338867, 0.1953125, 3.8789062, -0.6855469, -2.5742188, 1.0576172, -1.0566406, 1.2851562, 1.3818359, -1.7275391, -0.4621582, -2.0585938, -0.3671875, 0.18884277, -1.4521484, -2.2558594, 3.1777344, 1.4277344, 0.46533203, -0.95214844, 2.6660156, -0.2487793, 3.2714844, 0.44921875, 0.3461914, 0.88427734, 0.33251953, 1.0517578, -0.93603516, 1.3115234, -2.7714844, -0.08355713, -0.5595703, -0.65283203, -1.0644531, 2.8730469, 1.9423828, 2.796875, -0.9189453, 2.0546875, 1.6953125, 2.1074219, 2.1679688, -0.41723633, 1.703125, -0.07873535, -0.8408203, 0.9902344, 1.7197266, 2.8769531, 0.31396484, -0.92285156, 2.1894531, -1.3359375, -1.3447266, 0.47705078, 1.1835938, 2.0585938, -3.6328125, 2.4726562, -0.55810547, 0.80810547, -1.9970703, -0.95214844, 0.055023193, -0.58935547, -1.4882812, 2.8300781, 3.2070312, -0.32299805, 1.6689453, -0.7597656, -0.54541016, 0.85058594, -3.1894531, -1.5546875, 0.3527832, -0.6352539, -1.3173828, 0.066711426, 2.1074219, 1.1826172, 0.3581543, 0.5605469, 2.3769531, 1.9394531, 1.4433594, -0.68359375, -0.30297852, -1.0166016, 3.8144531, -2.2753906, -1.8183594, 1.4121094, -1.1044922, -4.2382812, -4.0078125, 2.4570312, 0.75341797, 2.2558594, 1.4189453, -1.4912109, 2.5214844, -0.34399414, 2.1347656, -1.8105469, 1.6826172, -0.7705078, 0.8647461, -0.6645508, 1.4707031, 1.8261719, 1.5849609, 1.3964844, -2.1386719, 1.1962891, -0.5727539, 2.0683594, -0.38891602, 0.2154541, 2.5488281, 0.113708496, 0.27392578, 1.7753906, 2.0058594, -0.68847656, -0.9916992, 2.1367188, 1.6582031, 0.9067383, 0.7890625, -0.07244873, 1.0546875, -1.3173828, -0.30737305, -0.0869751, -1.4228516, -1.9580078, -0.63964844, -0.08880615, -1.5449219, -1.8056641, 0.41137695, 2.0644531, 0.46362305, 0.41064453, 2.0058594, -0.8461914, 2.8457031, 2.2167969, 0.46044922, -0.35668945, 0.09234619, 0.17077637, 1.3632812, -2.0371094, 1.5068359, 1.7685547, 1.1552734, -1.7832031, 0.24279785, -0.7988281, 1.3632812, 0.84228516, 1.09375, -0.5024414, 1.4677734, 2.2441406, 0.09613037, -0.29370117, 1.9003906, -0.2878418, 1.1005859, -1.1083984, 0.16333008, -1.6533203, 0.8769531, -2.1464844, 1.3222656, 2.5566406, 2.25, -0.12976074, -1.6806641, -2.5644531, -0.9091797, 0.41552734, 0.5229492, -1.6933594, -0.08325195, 0.14111328, -1.9501953, 2.1191406, -1.7607422, 0.75, 1.2451172, -0.9321289, 0.86328125, 1.7421875, 2.6347656, -1.0029297, 0.2253418, 0.76123047, 0.6166992, 1.3554688, 0.36254883, 1.6416016, 1.5800781, 1.2197266, -2.7304688, 0.8901367, -2.1074219, 2.4667969, 0.7885742, 1.2685547, 0.16357422, 1.4013672, -0.099243164, -1.8251953, -0.5834961]}, "B00DYN0438": {"id": "B00DYN0438", "original": "Brand: Blackstone\nName: Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36\u201d Outdoor Griddle Station with Side Shelf, 36 Inch, Black\nDescription: \nFeatures: Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain.\nReplace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nRestaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nControllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf\nDurability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze\n", "embedding": [-1.2001953, 1.6621094, -0.19067383, 0.2548828, 0.32592773, -0.85253906, 1.4140625, -0.32299805, -2.1855469, 1.5917969, 0.21569824, -0.37719727, 0.22241211, -1.3935547, -0.13256836, -0.24267578, -0.2319336, 0.26879883, 0.16552734, 1.0742188, 2.6445312, 1.0029297, 1.3154297, -1.8730469, 1.0292969, 0.5131836, 3.1191406, -4.9492188, 1, -1.1337891, 1.8710938, -0.12902832, 0.5800781, 1.0966797, -3.9648438, -2.0644531, -0.79003906, 2.7988281, -2.4863281, 0.8647461, 0.45922852, -0.2841797, 3.1269531, 0.55859375, -2.9785156, 0.54589844, 0.53564453, 0.2548828, -2.4960938, -1.3466797, 0.4501953, 3.1933594, 1.0800781, 0.09063721, -1.7246094, 1.7011719, 1.2919922, -1.7578125, 1.625, -0.50390625, 2.4921875, 0.7963867, -2.7597656, 0.40722656, -1.5917969, -1.1689453, 1.4677734, 0.41870117, 0.6977539, -1.1298828, -0.21325684, -0.15405273, -1.5253906, 0.11834717, 1.3886719, -2.1894531, -2.3300781, 2.203125, 0.65771484, -0.3930664, -2.1738281, 2.4824219, 1.0439453, -3.6445312, -0.51953125, 0.9550781, -0.091308594, 0.03277588, 1.6523438, 0.06652832, -1.3359375, 2.2148438, -2.6640625, -3.1523438, 1.5820312, -1.2607422, 0.79296875, 0.19946289, -1.8583984, 2.3125, -1.4248047, -0.12030029, -2.359375, 1.2109375, -3.2578125, -0.66064453, 3.484375, 1.2392578, -3.0449219, 1.125, -2.3125, 0.2590332, 2.6542969, 0.19165039, 2.3710938, 0.8720703, 0.7792969, 1.1064453, 1.2148438, 1.0175781, 3.3261719, -0.62939453, 0.6616211, 0.10595703, -0.48510742, 0.92578125, -1.2509766, 0.8696289, 4.015625, -2.4355469, -0.10534668, -3.3046875, 3.2539062, -1.1396484, -2.6875, -1.6591797, -0.39013672, -0.5390625, -3.7890625, 0.8642578, -1.0058594, 1.8310547, 1.4746094, -1.7617188, -4.5585938, -0.70166016, 0.17126465, 1.3046875, -0.010810852, -2.4160156, -0.5102539, -2.5683594, -0.39575195, -1.7109375, 2.1835938, -2.2421875, -0.83984375, -1.9941406, 4.296875, -0.81103516, 0.2668457, -1.8701172, -0.87060547, 1.5898438, 1.3974609, 0.012161255, 0.2770996, 1.9462891, -0.2998047, 2.7929688, 0.25146484, -2.5878906, -0.98046875, 0.014770508, 1.9013672, -1.2626953, -1.1826172, 2.3945312, -0.5024414, -0.78515625, -1.0878906, -3.1171875, 1.1386719, -0.71728516, -0.3798828, -2.2910156, 1.7587891, 1.2607422, 0.609375, -1.1054688, 0.017547607, -0.2927246, -0.068237305, 0.12902832, 0.1463623, -1.8730469, 0.66796875, 0.18127441, 2.1289062, -0.52197266, -0.18859863, -1.6621094, 1.1171875, 1.3730469, -2.9648438, -2.4570312, 1.1621094, -2.4023438, 2.8300781, 0.50439453, 1.0078125, -1.3759766, 1.1103516, -1.1865234, 0.15893555, -1.8583984, 1.0585938, 0.0184021, 1.3515625, 1.9775391, 1.0234375, -2.2363281, -1.7373047, 1.0986328, 0.9375, 3.2910156, 1.3212891, 0.74560547, -2.0761719, -0.3334961, 2.1738281, 0.8613281, -0.6767578, 1.3271484, -0.7373047, 3.3886719, 0.81640625, -1.3847656, -0.28344727, -0.35083008, 1.2841797, -1.2626953, -0.48339844, -1.0273438, -1.390625, 1.4960938, -1.6269531, 2.0605469, 0.3684082, 0.25073242, -2.3457031, -0.27783203, 1.8183594, 1.3652344, -0.49243164, -0.6777344, -0.79833984, -0.051940918, -2.5605469, -1.7558594, -0.296875, 1.5332031, -0.7602539, 1.546875, 1.4052734, -0.93066406, 1.0566406, 1.8701172, -2.4960938, -0.3503418, 2.1835938, 0.43725586, 2.2480469, -0.32226562, -0.13708496, 1.1298828, -1.2011719, 2.7578125, 0.052459717, 0.6923828, -0.42651367, -1.2792969, 1.5771484, -2.7617188, -0.23828125, 0.90527344, -0.030303955, 1.4238281, 0.28027344, 0.5097656, 5.0898438, -1.7285156, -2.5761719, 3.3769531, -0.80908203, 0.87939453, 1.2421875, -1.3798828, -0.22229004, 1.4443359, 2.21875, 1.2919922, 0.49560547, 1.4765625, -2.1777344, -0.79003906, 0.24536133, -3.1347656, -1.5175781, 2.0136719, 0.63623047, -0.25146484, 0.04574585, 1.1513672, -0.28735352, -0.8989258, 0.6772461, -1.5039062, 1.9873047, 2.6035156, 3.3398438, 2.046875, -1.0058594, -2.0839844, -0.7597656, -0.7836914, -0.3322754, 1.7148438, -0.021987915, -1.8544922, -0.84228516, 0.23181152, 0.06021118, -1.0039062, -3.8984375, -1.3408203, -0.65283203, -1.6220703, -0.3317871, -2.6933594, -1.8378906, 1.2539062, -1.609375, 0.94384766, -1.1308594, -2.2636719, -0.9765625, -0.3798828, -0.796875, -0.9448242, 1.2158203, -0.75, -1.6777344, -2.0273438, -0.60791016, -0.79589844, 1.1464844, -1.6386719, -0.72509766, 1.0888672, -1.5751953, 0.78027344, -0.33325195, 0.8955078, 0.47583008, -0.7998047, -0.17810059, -3.0390625, 0.83251953, -1.6992188, -0.5131836, -1.9472656, -0.46679688, -2.5136719, -1.2490234, -0.78759766, -0.9121094, 3.140625, -1.3300781, 0.66845703, -0.85058594, 0.30664062, 0.5463867, -0.32055664, -2.1855469, -0.34204102, -0.047607422, -1.3574219, -2.6914062, -3.4648438, 0.20861816, -0.5942383, -0.17993164, -1.8007812, 1.8212891, -1.9101562, 0.83935547, -1.1425781, 0.20202637, 0.6689453, 0.34375, 0.09063721, -2.6074219, -2.5976562, -0.14916992, 0.56689453, -1.6982422, 1.1679688, 1.3535156, -1.2636719, -0.12512207, 2.1816406, -0.55810547, -0.4477539, -1.1630859, -3.2890625, 2.0546875, 0.5629883, -4.2890625, 3.8828125, -1.7910156, -0.9716797, -2.0839844, -0.69384766, 3.4648438, 1.2353516, 0.9238281, -0.20166016, -0.82666016, 1.6777344, 0.27685547, -0.091918945, -1.4023438, -0.43554688, 2.3027344, -1.0761719, -1.9345703, 0.6333008, 2.0898438, -1.8964844, -0.7729492, 1.7314453, 0.61621094, 1.3154297, 2.796875, 2.3261719, -0.6044922, -1.9179688, -1.2324219, 0.7817383, 0.63623047, -0.059173584, -1.0820312, 0.9604492, -1.2089844, 1.9492188, 0.6899414, -0.10308838, 1.9150391, 2.0585938, 2.1933594, -2.2226562, -0.60058594, -1.0058594, 1.0839844, 2.3417969, 2.2148438, -0.546875, 0.14196777, -0.08428955, -0.23583984, 2.3789062, -1.7441406, -0.09857178, 3.2792969, -1.2978516, 0.014778137, -0.1821289, 0.42382812, -0.5126953, -0.5654297, 0.42041016, -0.8310547, -0.64941406, 0.7783203, 0.29736328, -1.4003906, -2.6777344, 0.8857422, -2.6992188, -2.4921875, 0.77490234, 2.2890625, -0.49609375, -1.6845703, -0.30810547, -0.07745361, -0.6245117, 2.8183594, 0.23620605, -1.7216797, 0.21081543, -1.7060547, 1.2412109, -1.0966797, -0.5151367, 0.45947266, -0.25952148, 0.53027344, -1.3652344, -0.19360352, -0.31274414, -0.17480469, -1.2324219, -0.9121094, -2.5683594, -0.15100098, -1.2275391, -0.97509766, -2.0351562, 2.7929688, 1.3691406, 1.1298828, -0.6542969, 2.2421875, -0.13891602, -0.93652344, 1.2763672, -5.0039062, -0.63720703, -2.0058594, -3.5683594, 0.91259766, -0.39379883, -0.25512695, 1.3457031, 1.0009766, -0.3154297, 1.9267578, 0.73828125, -5.4335938, 1.4775391, -1.0449219, -0.8911133, -1.7587891, -1.2568359, 0.6586914, -0.12585449, -1.359375, -1.1826172, 1.2919922, -0.3034668, 0.7753906, 1.1464844, -2.1210938, 0.38745117, 0.14123535, -1.1015625, -0.49365234, -0.04638672, 0.32763672, -1.0283203, 0.12670898, -1.1699219, 0.65527344, -0.25268555, 1.2431641, 1.234375, 0.10308838, -0.25976562, -2.265625, -0.32861328, -0.16687012, 2.0585938, 0.38720703, -0.8935547, -0.42382812, 2.1757812, 2.0722656, -1.7158203, 0.07330322, 0.6323242, -2.078125, -0.8178711, 1.1445312, 1.1201172, 2.1171875, 0.5830078, -1.84375, -0.081726074, 1.03125, -1.8681641, -1.8085938, 1.5458984, 0.12133789, -1.7587891, 0.060302734, -2.78125, 0.39501953, -1.3457031, 0.16894531, -1.5693359, 4.8515625, 2.1933594, 2.5078125, 3.0019531, 0.20239258, -1.4560547, 1.8583984, -0.91503906, -2.3554688, 2.8203125, 0.39233398, -1.3535156, 2.9785156, 0.53515625, -1.4638672, -0.12976074, 3.0410156, -1.4560547, -0.49414062, -1.0517578, 0.021835327, -2.3925781, 0.81103516, 0.5263672, -0.22509766, 1.0566406, -0.0016288757, -0.33276367, 1.6992188, 1.5087891, -0.61621094, 0.89941406, 0.11651611, 0.1529541, 1.5234375, 0.6982422, 2.296875, -1.7607422, 0.7416992, 0.34985352, 2.078125, 0.030258179, -0.20996094, -0.35229492, 0.4013672, -1.3896484, -0.6694336, 2.046875, 3.7871094, 0.5263672, 1.7246094, 0.9321289, -3.0976562, 1.6425781, -0.3618164, -3.1972656, -2.296875, 0.8125, -0.34375, 0.94189453, 1.1435547, -3.4746094, 0.60302734, 3.1113281, -2.0078125, 0.5566406, 1.171875, -0.6977539, 0.83496094, -1.9697266, 0.31396484, -0.4165039, 1.0546875, -0.8310547, 0.375, 0.7885742, -0.7236328, 1.1132812, 2.7636719, -0.16149902, -0.10638428, 1.8642578, -0.73046875, 1.7148438, -0.43066406, -0.24389648, -2.0898438, 0.99121094, 2.5078125, 0.75634766, 2.0195312, 0.09313965, -0.07989502, -2.2441406, -0.49243164, -0.8803711, 3.25, 0.18286133, -1.4492188, 0.63134766, -1.6123047, -0.29638672, -1.9970703, 1.0087891, 0.43066406, 1.0595703, 0.85546875, -0.40478516, 1.2412109, 0.6279297, -1.3007812, -5.3867188, -0.43798828, 0.5541992, -0.3623047, -0.1427002, 0.25927734, 0.38354492, 0.9321289, 1.3964844, -0.8232422, -2.0449219, -0.18908691, 0.02520752, -0.74658203, -1.3945312, -0.49169922, 0.43798828, 0.29663086, 1.2197266, -0.25048828, 1.4433594, -2.3320312, 0.26782227, 1.9902344, -1.3955078, 0.098083496, 1.5488281, 0.76660156, -0.2919922, 2.5878906, 0.39160156, -2.2871094, 2.4316406, -5.0429688, -0.44921875, 0.10662842, -1.4707031, -2.0410156, -0.10949707, -0.25512695, 1.3896484, -1.3222656, -1.1513672, -0.3857422, -0.9863281, -0.76123047, 2.6523438, -1.5322266, -1.3173828, 1.5888672, -0.23291016, 0.7685547, 0.0949707, -1.0546875, 0.3461914, -2.7617188, -1.9970703, 0.8261719, -1.5849609, 0.3408203, -2.7402344, 0.51220703, 2.0527344, 0.49731445, -0.7397461, 1.9892578, -0.83251953, -1.7646484, 0.15307617, -1.3847656, 2.5585938, 0.66845703, -0.8129883, -1.0712891, -1.8964844, 0.5078125, -0.31640625, 0.9189453, -1.1826172, -0.46191406, 0.6088867, 1.9912109, -0.70654297, 2.2636719, 3.3261719, 0.75878906, -1.5, 0.048431396, 1.7539062, -0.053009033, 3.1542969, 2.421875, 0.99560547, -1.0898438, 4.6523438, 0.95751953, -3.8359375, 2.2890625, -1.9628906, 1.9892578, 0.65966797, -0.85546875, 0.5078125, -1.9580078, -0.8330078, -1.8769531, -1.7382812, -3.5507812, 1.6630859, 1.2568359, -2.3085938, 0.23059082, 1.3759766, 0.40893555, 2.1816406, 2.6367188, 1.0410156, -0.28222656, 0.30566406, -1.1748047, -0.10632324, 1.1542969, -2.0351562, 0.39257812, 1.1123047, -0.5444336, -2.6308594, 0.8876953, 1.0283203, 2.8359375, -1.2724609, -0.045715332, 3.6289062, 1.1191406, 3.0996094, -0.44726562, 0.6279297, 1.2011719, 1.7373047, -1.2060547, 1.4248047, 3.2734375, -1.1650391, -1.7617188, 1.9726562, -1.0039062, -1.4960938, -0.49365234, 0.1451416, 2.1308594, -4.453125, 3.09375, 0.42626953, 0.6245117, -0.7832031, -2.8886719, -0.5751953, -1.7353516, 0.9614258, 1.2998047, 2.1699219, -0.29248047, 1.4667969, -1.5869141, -0.047058105, 1.3535156, -3.34375, 0.09429932, 0.6542969, -0.88134766, 0.13647461, 0.07775879, 2.4433594, 1.1123047, 1.2207031, 1.3037109, 2.4277344, -0.9111328, 1.9492188, -1.1210938, -0.6484375, 0.95751953, 3.3847656, 0.6245117, -0.75146484, 2.421875, -0.19091797, -2.7714844, -3.3925781, 3.2265625, 2.8496094, 1.6621094, 0.96533203, -0.7910156, 2.3476562, 0.51171875, 2.7871094, -3.0839844, 2.5234375, -0.91259766, -2.3164062, -1.109375, -0.22802734, 0.26171875, 1.3134766, 0.03781128, -0.97314453, 2.7148438, 0.7709961, 1.7285156, 1.4082031, -0.0049438477, 1.4833984, -1.0322266, -0.1451416, 1.7773438, 0.16479492, -0.72998047, -0.9638672, 1.0224609, 2.6210938, 1.140625, 1.0439453, -0.49414062, -0.83251953, -0.50634766, -1.5439453, 0.95410156, -0.2442627, -0.9160156, 1.5771484, 0.06341553, -0.11218262, -2.875, 2.4121094, 0.41992188, -0.08178711, -0.95410156, 1.3369141, 0.54248047, 1.9433594, 1.2236328, 0.59814453, 0.7451172, -0.6694336, 0.21069336, 0.81640625, -1.203125, 0.014533997, 1.2177734, 0.13562012, -0.72558594, 0.36010742, -2.5585938, 1.1132812, -1.3046875, 1.2294922, -2.4277344, -0.34960938, 1.8769531, -0.36987305, 0.50439453, 2.8613281, -0.07342529, -0.21154785, -1.4345703, -0.9091797, -0.82958984, -1.5126953, -0.6489258, 0.4650879, 3.921875, 2.3808594, 0.5756836, -1.7890625, -2.1152344, -0.5102539, -0.2602539, 2.6445312, -0.5527344, -0.9863281, -0.44067383, 1.2607422, 1.875, -1.8339844, 0.4729004, -0.11810303, -0.3701172, 1.015625, 0.7319336, 1.9150391, -0.088378906, -0.68847656, -0.53759766, 2.4550781, 2.2949219, 0.6098633, 2.0078125, 1.7578125, -1.6259766, -2.7324219, 0.8540039, -0.000151515, 0.25878906, -1.3398438, 0.64697266, 1.0751953, 1.9541016, 1.0292969, -1.4638672, -1.0957031]}, "B01N1G04RL": {"id": "B01N1G04RL", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black\nDescription: \nFeatures: Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs.\nPortable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts.\nAutomatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel.\nNo Fussy Cleanup: Removable oil management system facilitates easy cleanup.\nAmple Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach.\n", "embedding": [-1.6806641, 0.17565918, 0.8076172, 0.50878906, -0.48388672, 1.2714844, 1.3134766, -0.53027344, -1.9248047, 0.9902344, 1.2490234, -0.81396484, 1.3232422, -1.8330078, 0.81396484, -0.32543945, 0.28955078, 0.69677734, 1.1396484, 0.072265625, 2.2050781, 0.4284668, 3.1582031, -0.061523438, 0.23730469, 1.8037109, 3.5859375, -4.4492188, 0.38134766, -0.7973633, 2.2246094, -0.515625, 1.5712891, 1.4570312, -2.765625, -1.4501953, -1.78125, 1.4833984, -1.8974609, 0.17333984, 0.6323242, -1.5908203, 2.4238281, 0.6333008, -2.9121094, -1.1894531, 0.60009766, 0.9379883, -1.7871094, 0.021713257, 1.7177734, 1.6425781, 0.26391602, 0.6699219, -0.9838867, 2.3476562, 1.5957031, -1.8388672, 1.2460938, -0.265625, 3.296875, 0.5698242, -2.2363281, -0.31274414, -0.94628906, -1.3974609, 0.44018555, 1.2412109, -1.0732422, -2.5039062, 2.1152344, 0.34472656, -1.1855469, 1.0302734, -0.007621765, -0.5991211, -2.0742188, 2.1132812, 1.2802734, 0.22814941, -2.6953125, 2.2949219, 1.1210938, -2.5507812, -0.07293701, -0.45751953, 0.30200195, -1.3134766, 1.1308594, 1.0664062, 0.035369873, 2.6132812, -2.7265625, -4.1992188, 1.9941406, -0.7866211, 1.5126953, 1.8886719, 0.26123047, 2.1992188, -0.015838623, -0.26098633, -0.68115234, -1.7861328, -1.3574219, -2.046875, 1.6923828, -0.061798096, -2.890625, 0.3540039, -2.4980469, -0.30078125, 2.1992188, -0.09893799, 0.5878906, 0.4140625, -0.54589844, 3.0234375, 1.3457031, -0.1430664, 2.5527344, -0.6381836, 1.8779297, -1.2285156, 1.0751953, 0.83251953, -1.7880859, 2.4082031, 5.9609375, -1.9140625, -1.4394531, -0.26708984, 2.7519531, -0.71435547, -1.5761719, -3.1386719, -1.1992188, -1.703125, -2.9453125, 0.6933594, -1.8398438, 0.8803711, 2.8789062, -0.8432617, -2.9609375, -1.0175781, -0.7182617, 1.2929688, -0.71435547, -0.8535156, 0.5136719, -2.0527344, 0.9995117, -2.734375, 2.5195312, -2.3222656, -1.3623047, 0.1953125, 3.5429688, 0.5566406, 2.2441406, -2.7792969, -1.6865234, 0.57128906, -0.10095215, 0.13781738, -0.09051514, 3.6738281, 0.89160156, 1.2060547, 0.34814453, -1.2568359, -0.65478516, -0.9716797, 0.29956055, -1.3769531, -0.5600586, 1.4238281, 0.09246826, -0.40307617, -1.796875, -2.7011719, -0.5620117, 0.7763672, 1.4794922, -1.3417969, 0.047180176, 0.31811523, 0.3486328, -1.2988281, -0.4399414, -1.1699219, -0.51953125, 0.4440918, -0.1796875, -0.9394531, -1.2666016, -0.5058594, -0.6933594, 1.1748047, -0.48388672, -0.22473145, 0.018875122, -0.009773254, -3.2089844, -3.90625, 0.43701172, -3.1796875, 1.2568359, 1.0126953, 0.94970703, -0.92578125, 1.1337891, -1.0205078, 0.48120117, -1.4306641, 0.60546875, 0.5551758, 2.2753906, 1.1572266, -0.29907227, -0.81689453, 0.80126953, 1.9824219, 0.17687988, 1.5146484, 0.04336548, 1.5566406, -1.7294922, -2.6484375, 2.6171875, -0.47460938, 0.44702148, 1.46875, -1.8037109, 1.1132812, -0.7158203, -0.91064453, -0.796875, -0.21594238, 0.28466797, -0.984375, -0.1697998, -1.2910156, -0.546875, 1.3398438, -1.2080078, 2.4160156, 0.5522461, 0.953125, -1.6689453, 1.1865234, 1.3896484, 0.0236969, -1.2373047, 0.051330566, -0.5102539, 0.7739258, -1.5566406, -1.8759766, 1.5058594, 0.50439453, -0.5522461, -1.0761719, 0.69384766, -1.7060547, 1.8027344, 0.3239746, -1.3837891, -0.22668457, 1.0654297, -0.064086914, 2.5117188, -0.06665039, 2.0292969, 0.8564453, -1.5371094, 2.34375, -1.6953125, 1.9902344, 1.0839844, -1.0722656, 0.8754883, -2.4296875, -0.85302734, 0.6333008, 1.46875, -0.27172852, 1.3681641, 1.1513672, 3.9667969, -1.9189453, -3.7988281, 3.5097656, -2.1308594, 0.3605957, 2.453125, -1.125, -0.82373047, 0.46533203, 0.37353516, 1.0664062, 0.6381836, 1.3457031, -1.8085938, -1.7548828, -0.35009766, -1.2675781, -1.3310547, 0.89990234, 0.011505127, -0.9199219, -1.5576172, -0.27148438, -0.22351074, -1.5332031, 2.2480469, -1.7060547, 2.2382812, 0.39257812, 1.6630859, 0.43579102, -0.68652344, -1.8476562, -0.2680664, -0.8979492, -0.53271484, 0.018936157, 0.15075684, -0.08215332, 0.85302734, 0.49438477, -0.046539307, -2.1289062, -2.9980469, 0.49829102, -2.953125, -3.2890625, 1.7011719, -2.1035156, -0.5473633, 0.28735352, -2.3945312, 0.09552002, 0.16308594, -3.8925781, -1.7431641, -0.22790527, -2.9433594, -0.58935547, -0.24450684, -0.90234375, 0.0024337769, -3.3632812, -0.19152832, 0.40527344, -0.12548828, 1.2050781, 0.4038086, -1.3632812, -1.4306641, -1.7832031, -0.94873047, 0.83203125, -0.16235352, -2.0234375, -0.60302734, -3.0390625, 0.9345703, -1.6865234, -0.7548828, -0.48120117, 0.29858398, -2.3808594, -1.6269531, 0.074157715, -0.66552734, 3.0976562, -1.1708984, 0.47338867, 1.4775391, 0.7270508, 0.8598633, -0.35351562, -1.8125, -2.1503906, 0.68603516, -3.0429688, -3.8808594, -1.4140625, 0.0042381287, 0.67041016, 1.3603516, -1.0517578, 2.4648438, -1.9023438, 2.5625, -2.1992188, -0.28466797, -0.2956543, 1.6650391, -0.1262207, -0.7871094, -0.5444336, -1.34375, -0.6386719, -1.8046875, -0.39233398, 1.703125, -0.8305664, 1.6533203, -0.006542206, -0.13085938, -0.5805664, 0.15551758, -2.5097656, 3.3125, -0.0038547516, -2.4375, 2.796875, -0.51171875, -2.3496094, -3.1894531, -0.6489258, 3.2050781, 0.24609375, 3.4667969, 0.41503906, 0.15478516, 2.0898438, 2.84375, -0.75, -0.17822266, -1.6474609, 2.3613281, -1.1083984, -1.6328125, 0.9199219, 0.6923828, -2.296875, 0.0009908676, 3.0117188, 1.0654297, 2.5078125, 0.61035156, 1.9375, 0.28881836, -0.9433594, 1.0839844, 2.5625, -0.14868164, 0.31298828, -0.6772461, 0.35253906, -0.6352539, 1.3300781, 1.1376953, -0.20471191, 2.9707031, 0.92822266, 0.8676758, -1.6367188, 1.2919922, 0.43579102, 2.0410156, 0.9223633, 1.7783203, -0.113342285, 0.9272461, 0.20922852, -1.0234375, 0.22229004, -2.1386719, 0.88671875, 1.6289062, 0.28271484, 0.2479248, 0.7988281, 0.3125, 0.24084473, 0.96240234, 1.4404297, -2.828125, 0.019927979, 0.5800781, -1.3935547, -0.7651367, -2.4394531, 1.5351562, -1.9873047, -0.68310547, 1.9189453, 2.8339844, -2.0292969, -0.62060547, 2.109375, 0.45092773, -0.96972656, 1.6210938, 0.50341797, -1.1582031, 1.2080078, -1.8623047, 0.68896484, -0.6401367, 0.2763672, -0.11981201, -0.39257812, -0.10882568, -1.2333984, -0.2854004, 0.87402344, 1.0917969, -2.0917969, 0.37817383, -3.7871094, 0.75634766, -0.76416016, -1.6865234, -0.6645508, 1.6845703, 1.0625, 0.84472656, -3.0019531, 3.4335938, -0.30981445, -0.45483398, 1.7402344, -3.9140625, -1.9482422, -3.9023438, -3.2246094, 1.0625, -0.4411621, -0.5966797, 2.4277344, 0.19628906, -0.16296387, 1.8144531, -0.3798828, -1.5048828, 0.022872925, -1.3349609, 0.018966675, -2.4902344, -0.3642578, 0.69677734, 0.41577148, -1.7441406, -1.8652344, 0.5390625, 0.49072266, 2.0507812, 1.7939453, -3.84375, 0.5908203, -1.9560547, -0.46411133, 0.18408203, -1.2294922, 1.8388672, -1.0908203, -0.30249023, -2.7910156, 1.7109375, 0.7270508, -0.13806152, 0.58984375, 0.9682617, 0.8833008, -2.1347656, -0.13305664, 1.4931641, 2.9433594, -0.48657227, -3.15625, -2.2246094, 0.80810547, 0.41479492, -1.484375, -0.022094727, -1.7958984, -1.0058594, 0.38427734, 2.7167969, 1.4462891, 1.5253906, 1.7939453, -0.69384766, -0.08514404, -0.7211914, -2.3261719, -1.5634766, -0.8911133, 1.4423828, 0.23327637, -2.3984375, -1.9375, 0.14697266, -2.7578125, 0.10015869, -2.046875, 3.7910156, 2.1796875, 0.4650879, 3.2011719, -1.4287109, 0.30566406, 0.41967773, -0.63623047, -2.7773438, 1.9111328, 0.19128418, 0.67529297, 1.9208984, 0.6777344, -2.2207031, 1.5849609, 1.2773438, -2.453125, -0.69921875, -0.44726562, 1.4882812, -1.5175781, -0.8598633, 1.8457031, -0.058013916, 3.5917969, -0.82714844, 0.38964844, 0.5205078, 0.5708008, -0.7988281, -0.19140625, -0.2401123, -0.23474121, 0.6435547, 1.4609375, 1.1572266, -1.4570312, -0.043151855, -1.0986328, 2.9296875, 0.28833008, 0.5698242, -0.103637695, 1.3339844, -0.3774414, -1.3837891, 1.2158203, 2.2519531, -0.26049805, 3.5214844, 0.36010742, -2.3867188, 1.1708984, -0.7128906, -2.2050781, -2.4082031, 0.19812012, -0.09631348, 0.796875, 0.8432617, -2.9863281, -0.7080078, 1.9423828, -1.1513672, 0.30200195, 0.70654297, -0.4260254, -0.45922852, -0.66259766, -0.22216797, 0.21362305, -0.042999268, -0.042022705, 0.8925781, 1.1503906, -0.75341797, 1.1240234, 1.9882812, 0.6020508, -1.0009766, 1.9746094, -1.6367188, 2.3886719, -0.22814941, 0.37670898, -2.8046875, 1.0322266, 3.5546875, 0.9042969, 1.6757812, 1.4541016, 0.984375, -2.7382812, -0.25439453, -2.8300781, 3.4121094, -1.2646484, -0.38671875, 2.90625, -3.1699219, -0.6621094, -2.5117188, 0.40600586, 0.030853271, 2.0507812, 2.5195312, -0.32202148, -0.58740234, 1.0986328, -1.7392578, -4.2421875, -1.6220703, 1.1982422, 0.7260742, -0.062683105, 0.93896484, -2.5195312, 0.44799805, -0.9199219, -0.6479492, -2.3457031, 0.015686035, -1.3261719, -1.046875, -1.5361328, 1.1240234, -0.13500977, 1.7587891, 1.5742188, 0.31079102, 0.98046875, -3.4238281, -0.92578125, 2.0761719, -0.2133789, 0.15942383, 2.5546875, -0.9379883, -0.5800781, 0.21459961, -0.10308838, -2.8515625, 2.5507812, -2.1445312, -0.08850098, 0.2244873, -0.6352539, 0.8251953, -0.020767212, -1.7275391, 0.80126953, -0.9116211, 2.2890625, 1.5869141, -0.70458984, -0.58935547, 1.9765625, -0.5722656, -1.6865234, 0.62939453, 0.07867432, -0.058654785, 0.36035156, -2.4550781, -0.6430664, -1.6972656, -1.4394531, -0.070251465, -1.4355469, 0.9223633, 0.36010742, 0.29492188, 1.6044922, -0.7109375, -0.02418518, -0.23083496, -1.2763672, 0.6176758, 1.1210938, -1.4453125, 2.2226562, 1.7558594, -0.9980469, -0.23486328, -0.3359375, 0.515625, 1.5654297, 1.0703125, 0.96875, -0.5541992, 0.10192871, -0.18457031, -0.61376953, 0.6015625, 2.1425781, -0.80859375, -0.58935547, 1.9833984, 3.2753906, 0.35327148, 1.0683594, 1.4560547, 0.76660156, -1.2236328, 5.234375, -1.0654297, -2.4824219, 0.53564453, -2.0566406, 2.6191406, -0.5473633, -0.7324219, -0.5136719, -0.734375, -1.3496094, -2.3222656, -0.5761719, -2.2148438, 1.4931641, 1.3349609, -0.7817383, -0.27954102, 1.7998047, 1.4248047, 0.46826172, 1.9267578, 0.28149414, -1.4609375, 1.8476562, -0.74658203, 0.23327637, 0.053588867, -2.046875, 2.1464844, 2.6699219, -0.5073242, -1.4130859, 3.2226562, -0.92578125, 3.0136719, 2.0019531, 0.076660156, 2.90625, 1.4326172, 2.6425781, 1.3457031, 0.38964844, 1.6376953, -0.2355957, 1.9765625, 2.0878906, 2.5917969, -0.40551758, -1.0078125, 1.1630859, -0.1541748, -2.2324219, 0.21264648, 1.3017578, 1.0078125, -2.9746094, 1.9453125, 1.0146484, 0.27026367, -1.8769531, -0.39868164, -1.1269531, -1.8388672, -0.3786621, 0.26831055, 3.4453125, -0.74658203, -0.9868164, -0.51953125, -0.4831543, 2.1289062, -3.3105469, 1.3828125, 1.9501953, 0.37817383, 0.5722656, 1.2089844, 0.7426758, 0.9116211, 0.90234375, 1.0253906, 1.5390625, -0.11029053, -0.39501953, -1.8681641, 1.0439453, 0.45654297, 3.1992188, -0.15686035, -1.2617188, 3.1992188, -1.6337891, -1.0751953, -3.8710938, 3.5332031, 3.3417969, 1.0117188, 1.3994141, -1.5595703, 2.5859375, 1.3232422, 0.6586914, -3.0761719, 0.1607666, -0.76416016, -2.7128906, -1.3369141, 1.0039062, -0.17077637, 2.5878906, 2.0351562, -0.9663086, 2.9550781, 0.27001953, 0.78271484, 1.140625, 1.5712891, -0.44555664, 0.46948242, -0.3232422, 0.33374023, 0.1887207, -1.8359375, -1.7626953, 1.7509766, 2.2480469, -0.25317383, 0.80322266, 0.7573242, -0.49121094, -1.5117188, 0.27075195, -0.3347168, -2.6484375, -1.4287109, -0.68408203, -0.91552734, -1.0732422, -2.5, 1.7861328, 0.28271484, -1.3564453, -0.80566406, 0.8691406, 0.35375977, 2.4492188, 0.9916992, 0.90722656, 0.06463623, -1.7626953, 1.2607422, 0.26367188, -1.4472656, 1.1748047, -0.4880371, 0.67626953, -1.3359375, -0.49023438, -1.4912109, 0.33496094, 0.8208008, 1.2021484, -2.0585938, -0.7133789, 1.5351562, -0.7392578, 0.32299805, 3.2753906, -0.9121094, 0.37768555, -2.3925781, -1.8017578, -0.00035500526, -0.6328125, -0.07824707, -0.11291504, 3.0117188, 2.9707031, 0.58740234, -2.0996094, -2.7558594, 0.2524414, -1.5009766, 1.4589844, -0.13562012, 0.35107422, -0.01612854, 0.6176758, 2.1445312, 0.42871094, -1.2226562, 0.94970703, -1.3251953, 0.29223633, 0.12365723, 2.6875, 0.30932617, 0.46533203, -0.15466309, 0.7319336, 1.9873047, 0.3630371, 1.6972656, 2.8789062, -1.1240234, -2.1933594, 2.0917969, -1.4619141, 0.41333008, 0.75, -0.20227051, 2.296875, 1.2822266, 2.0820312, -0.47509766, -2.859375]}, "B00FGEINVI": {"id": "B00FGEINVI", "original": "Brand: Weber\nName: Weber 57060001 Q3200 Liquid Propane Grill,White\nDescription: \nFeatures: Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nGrill-Out handle light. Battery type: AAA\nEasy-start electronic ignition and infinite control burner valve settings\nOperates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75\n", "embedding": [-0.3605957, 0.23010254, 1.6972656, -0.26660156, -1.75, 0.6166992, 0.34375, -0.47045898, -0.38012695, 1.3974609, 2.6171875, 0.16247559, 0.1149292, -3.1972656, 0.98046875, 0.49853516, 2.21875, 1.3457031, 0.6557617, -0.026351929, 1.0576172, 0.578125, 1.9863281, -2.375, 1.8359375, 1.6308594, 5.2148438, -5.09375, -0.93896484, -2.0820312, 0.6694336, 0.39135742, 0.26000977, 0.54248047, -2.7753906, -0.7036133, -4.0820312, 1.5234375, -2.5234375, 1.09375, -0.5029297, -2.3066406, 0.95654297, 0.18066406, -1.3066406, 0.9980469, 0.6591797, -0.71777344, -0.6464844, 0.04425049, 2.4902344, 1.0654297, 0.34960938, 1.0771484, -0.24902344, 2.3476562, 0.014167786, -1.3525391, 1.6318359, -0.120666504, 2.4902344, -1, -2.953125, -0.90478516, -1.1240234, -0.45458984, -1.1308594, -0.5908203, 1.625, 0.20861816, 4.3867188, -1.8789062, -1.3779297, 0.5307617, 1.2734375, -1.3115234, -1.59375, 3.0039062, 1.7089844, -0.5493164, -1.4775391, 2.2285156, 0.85302734, -1.8623047, 0.046020508, 1.0683594, -0.0062446594, -2.9082031, 2.3203125, 2.2382812, 0.06304932, 1.4443359, -2.4667969, -3.46875, 1.3847656, -0.61035156, 0.8491211, 0.92285156, -0.117004395, 0.79296875, -1.5449219, 1.0537109, -1.375, -2.2871094, -3.3203125, -0.3474121, 1.3837891, 0.2434082, -2.859375, -0.67626953, -0.9194336, 0.7084961, 1.4082031, 1.9882812, 1.3115234, 1.4589844, 0.83154297, 2.7558594, 1.2646484, 1.6181641, 2.7890625, -1.6738281, 0.32641602, -0.6699219, -1.4619141, 0.16723633, -0.56933594, 0.5908203, 2.8574219, -1.7070312, -0.9399414, 0.48339844, 4.515625, 0.1508789, -0.31176758, -0.69970703, -1.1181641, -0.67089844, -2.6230469, -1.1259766, -0.27197266, 0.16137695, 1.2373047, -0.80615234, -4.125, -1.1474609, 0.6015625, 0.7626953, -0.100097656, -0.6958008, -0.21325684, -1.9589844, -0.96533203, -0.046875, 0.5004883, 0.3984375, -1.6943359, 0.8979492, 3.4550781, 1.4130859, 1.4707031, -0.578125, -0.80566406, -0.0904541, 0.3293457, 0.91015625, 1.9726562, 1.6826172, 0.11077881, 1.5380859, -0.24780273, -1.0830078, -0.48901367, 0.073913574, 1.1113281, -1.28125, -0.21875, 1.4667969, -0.5258789, -1.0009766, -1.0439453, -1.6240234, -0.11657715, -0.68847656, 0.4814453, -0.16589355, -0.78808594, -1.5712891, 1.28125, -2.1992188, 0.8022461, -0.296875, 1.3603516, -0.91845703, 0.064208984, -0.96533203, -1.0859375, -2.2246094, 0.83251953, -0.55566406, -0.46826172, -1.7578125, 1.4003906, 0.7211914, 0.02204895, -2.5898438, -0.9682617, -2.4199219, 1.8525391, 0.69091797, 1.7929688, -1.5068359, 1.8720703, -1.2744141, 0.18786621, -2.5292969, 2.9179688, -0.08526611, 0.23742676, 2.3183594, -2.0273438, 0.023620605, -0.15270996, 2.2597656, 0.33618164, -0.095947266, 0.8959961, -0.20336914, -3.1601562, -0.60253906, 3.5332031, -0.08441162, -0.26489258, -0.26049805, 0.22705078, 2.2148438, 1.21875, -0.5136719, -0.04373169, -0.80078125, 0.119140625, 0.78125, -1.2841797, -1.4853516, 0.21704102, 0.43847656, -3.2539062, 1.7177734, 0.8388672, 0.2421875, 1.0185547, -0.8364258, 0.8022461, 1.0068359, -0.8779297, 0.60302734, -2.4804688, 1.03125, -0.80029297, -3.3378906, 1.7607422, 0.7368164, -0.097961426, -0.10040283, 1.2685547, -1.9667969, 2.7773438, 2.7382812, -1.4550781, -1.0283203, 0.5341797, 0.48168945, 0.4025879, -0.55810547, 1.2119141, 1.5107422, -1.6591797, 1.7568359, -0.2763672, 1.0615234, 0.63378906, -0.6245117, 1.0996094, -2.5390625, -1.7470703, 1.0537109, 0.53515625, -1.0898438, -2.578125, 0.26416016, 3.1523438, -0.22314453, -2.8828125, 3.4628906, -2.4511719, 1.40625, 2.1308594, -1.1972656, -1.3496094, 0.9658203, 2.6191406, 0.5517578, 1.0039062, 0.99121094, -0.47192383, -0.9477539, 0.48950195, -3.8730469, 0.9057617, 1.5673828, -1.0273438, -1.1777344, -1.8515625, 2.1308594, -2.7382812, -1.5263672, 1.859375, -3.734375, 1.6572266, -1.7333984, 1.6679688, 0.4140625, -1.6767578, -0.19995117, -1.8623047, -0.64746094, -1.0283203, 0.70947266, 0.011726379, -2.96875, -1.0390625, -0.7324219, -0.19665527, -1.8242188, -1.5068359, -1.8652344, -0.953125, -2.5644531, 1.5898438, -1.3349609, -0.41333008, 2.2363281, -2.8476562, 0.9399414, 0.7919922, -3.3339844, -1.1464844, -1.4697266, -1.4628906, -0.9189453, 0.953125, 0.6982422, -1.3994141, -3.0546875, 1.1738281, 0.68603516, 0.9199219, -0.64160156, -1.2197266, -0.5703125, 0.55029297, -0.7392578, -0.7871094, 0.94628906, 1.5195312, -0.32421875, 1.2353516, -2.2382812, 0.6279297, -2.3515625, 1.0849609, 0.15917969, 1.4863281, -3.2207031, -1.7226562, -0.9663086, -0.27197266, 3.5761719, 0.7607422, 1.6074219, 0.6298828, 0.21105957, 1.3427734, -0.37939453, -1.6923828, 0.77978516, 0.4794922, -1.6826172, -0.7524414, -2.8144531, -1.1865234, -2.8203125, 0.6323242, 0.8647461, -0.2524414, -0.8017578, -0.48950195, -1.8535156, -0.026367188, -0.5126953, 0.3984375, -0.6928711, -1.4511719, -3.5683594, -0.38378906, -1.2910156, 1.3232422, -1.1835938, 1.9287109, 0.8720703, 1.3496094, 1.8496094, -0.6064453, 0.8798828, -1.4414062, -4.2265625, 4.0820312, 1.4091797, -2.3359375, 0.99121094, -2.671875, -2.5214844, -1.5078125, -0.78271484, 2.7128906, 2.9667969, 2.0546875, 0.89990234, 1.4599609, -0.8203125, -0.95654297, -0.47827148, -1.6816406, 0.18041992, 2.4433594, -3.78125, -1.9443359, 0.5854492, 1.1015625, -2.5878906, -1.3642578, 2.3535156, 2.0253906, 1.8984375, 2.6210938, 2.2148438, -0.24731445, -0.2709961, 0.46923828, 1.6923828, -0.921875, -0.23303223, -0.7441406, 0.9248047, -0.38085938, 1.3457031, 1.6425781, 0.14782715, 1.5322266, 2.7089844, 1.5087891, -0.31225586, -0.57958984, -0.46362305, 0.34277344, 0.122924805, 1.9013672, -0.9667969, 0.69091797, -0.9584961, -0.8911133, -0.3864746, -0.31176758, -1.5400391, 2.1054688, 1.5185547, -0.5390625, 1.5478516, 1.7177734, 1.5078125, 0.30029297, 0.038848877, -1.2138672, -0.66015625, 2.1855469, -0.44921875, 0.40356445, -1.2207031, 0.50390625, -1.0927734, -2.6328125, 0.65625, 3.5878906, -1.609375, -1.5839844, 0.48608398, -0.76953125, -0.6567383, 1.1279297, -0.3630371, -0.30664062, 0.19445801, -1.4287109, 1.3916016, -0.6743164, -1.359375, -1.5126953, -0.86279297, 0.7524414, 0.36010742, 2.0117188, 1.9316406, 0.87402344, -2.8300781, 0.097351074, -3.578125, -1.9453125, 1.1503906, -2.1914062, -0.7475586, 2.2539062, 0.4555664, 1.8701172, 0.17468262, 2.5390625, -1.4814453, 0.9272461, 1.6826172, -2.2929688, -0.21313477, -4.0742188, -3.3554688, 0.12731934, -1.3378906, -0.5078125, 1.5742188, 0.3942871, 0.16955566, 1.8564453, 0.81933594, -1.8232422, -0.88378906, -1.9482422, 0.1895752, -0.18444824, 1.9189453, 0.3388672, -0.9667969, -2.3105469, -2.2753906, 0.2019043, -0.12805176, 0.7714844, 1.6210938, -3.1035156, -0.14343262, -2.1289062, -1.0195312, -1.5791016, 0.24609375, 1.0732422, 1.3535156, 0.070617676, -1.7060547, 1.4511719, 1.2900391, 0.24401855, 3.2714844, 1.9609375, -0.4423828, -3.5722656, 0.33374023, 2.3085938, 3.1367188, -0.52734375, -2.1367188, -0.21411133, 1.1455078, -0.93408203, 0.11621094, -0.010757446, 0.9458008, -0.8466797, 1.0917969, 1.5019531, 1.2333984, 0.84033203, -0.109069824, -2.8964844, 0.61328125, -0.38598633, -2.1660156, -1.8710938, 0.37280273, 1.2402344, -1.6337891, -0.039276123, -1.4580078, 0.6425781, -1.2871094, -0.69140625, -3.5175781, 4.0625, 4.4101562, 1.9277344, 2.5761719, -1.2841797, 0.9873047, -0.76464844, -0.8857422, 0.022415161, 0.5263672, -0.53466797, -0.22314453, 2.7441406, 1.2412109, -1.8457031, -0.79296875, 0.59814453, -2.0761719, 0.24780273, -2.2988281, 0.76123047, -1.1132812, -0.08654785, 0.96191406, -0.7133789, 2.7773438, -0.10064697, -0.06463623, -0.24438477, 0.5024414, -1.3916016, -0.18066406, -0.4584961, 0.4296875, 0.6464844, 1.2041016, 1.3183594, -0.8935547, -0.16003418, -0.45483398, 0.5205078, -1.6328125, 0.3046875, 0.46142578, 0.7211914, -0.29858398, -1.4492188, 1.453125, 1.0722656, 1.59375, 2.6152344, 2.2148438, -1.4072266, 2.03125, 1.1494141, -1.9619141, 2.0742188, 0.6923828, -1.4179688, 3.0761719, 0.43896484, -4.359375, -0.10650635, 1.1220703, -0.17675781, 0.7158203, -1.2392578, -1.4287109, 1.4326172, -1.7373047, -0.30151367, -0.2277832, -0.47143555, 1.2998047, 0.8076172, 0.57177734, -1.640625, 1.3876953, 2.375, -1.0341797, -1.3642578, 0.9638672, -1.4941406, 0.42700195, -0.5551758, -1.0869141, -2.0136719, -1.0039062, 3.0214844, 1.0302734, 1.5097656, 0.8051758, 1.4794922, -0.77001953, -0.6401367, -1.5302734, 2.78125, -2.2578125, -0.89453125, 0.62646484, -4.0820312, -0.41625977, -2.4824219, -1.1074219, -0.42456055, 1.0341797, 2.2109375, 0.48095703, 0.17810059, 1.2998047, -1.5019531, -3.640625, -0.39526367, 0.09375, -0.19567871, 0.67089844, 1.6337891, -1.2900391, 0.45483398, -0.43237305, -0.31347656, -0.97558594, 0.34765625, -1.3271484, 0.13977051, 0.4177246, 0.47583008, -1.6650391, 1.2070312, 0.8989258, 1.9189453, 0.53125, -1.7558594, -0.08673096, -0.014030457, -1.5097656, -0.23803711, 3.0097656, 2.140625, -0.90185547, 1.1240234, 1.8271484, -2.984375, 3.046875, -1.7246094, -1.2783203, 1.375, -0.5410156, 0.31396484, -1.0800781, -0.6791992, -0.2915039, -0.29223633, 2.3847656, 1.6962891, -1.3828125, -1.5107422, -0.25634766, -0.093322754, -0.23925781, 0.4494629, 0.58251953, 0.19958496, 1.6542969, -1.8427734, -1.15625, -1.6787109, -2.7851562, 0.70751953, -2.4160156, -0.8457031, -1.2871094, 0.21166992, 1.7509766, 0.82421875, -1.1679688, 1.7578125, -1.2626953, -1.7480469, 0.89990234, 0.020599365, 4.6210938, 3.8339844, -1.2353516, -0.24230957, -2.6289062, 0.81152344, 1.4189453, 0.57177734, -0.62646484, -0.0019397736, -0.30859375, -0.041046143, 0.2130127, 1.4082031, 1.5664062, 0.62353516, 0.05871582, 1.2353516, 3.2714844, -1.7402344, 1.4462891, 0.82958984, 1.4472656, 0.012428284, 4.0117188, 0.13562012, -2.7109375, 1.4462891, -2.9746094, 2.1386719, -0.96875, -2.0683594, 0.25756836, -1.171875, -2.0332031, -2.4472656, -1.2636719, -1.46875, 1.9980469, 1.4052734, -1.9423828, -1.0302734, 1.8076172, 0.08581543, 2.6601562, 1.1904297, 2.3652344, -1.8916016, 0.014724731, 0.76660156, -0.012580872, 2.5214844, -3.9257812, 2.3691406, 0.83691406, -0.765625, -2.3203125, 1.8701172, 0.68066406, 1.9238281, -0.007457733, 1.1972656, 2.7832031, 1.4355469, 1.8681641, 1.3251953, 2.34375, 1.6474609, -0.48535156, 1.6611328, 1.6230469, 0.6801758, 0.72216797, -1.6347656, 1.6933594, -0.9345703, -0.5942383, 1.0195312, -0.6425781, 1.1435547, -1.4414062, 0.34350586, 0.49072266, 1.4335938, -1.0058594, -0.6308594, 0.78222656, 0.13964844, 0.5800781, -0.38256836, 2.8007812, 0.87597656, 1.3105469, -0.3552246, -0.103515625, 1.7373047, -4.2421875, 1.4384766, 0.6821289, -0.6538086, -1.3691406, -2.4726562, 1.6035156, 0.10083008, -0.97753906, 0.16821289, 3.6035156, 0.27514648, 0.86035156, -1.6923828, -1.6640625, 0.12646484, 3.6328125, -0.018554688, 0.6098633, 0.34106445, -0.21276855, -4.078125, -3.6894531, 3.3222656, 1.9394531, 0.7832031, 0.2241211, -0.890625, 3.2558594, -0.7963867, 0.23059082, -1.2480469, 0.61035156, -0.7529297, -3.8964844, 0.62646484, 0.30004883, 0.1574707, 0.8520508, 0.43603516, 0.88964844, 1.5527344, 1.2587891, 1.8964844, 0.70214844, 0.7402344, 1.9042969, 1.0585938, -1.5126953, 1.6210938, 0.24731445, -1.6396484, -0.9301758, 2.5234375, 0.859375, -0.74560547, -0.049926758, -1.2802734, 0.0435791, -1.7275391, -0.049987793, 0.9692383, -2.7265625, -0.5551758, 0.9638672, 1.0341797, -1.4765625, -0.22692871, 3.2089844, 2.7714844, -0.3972168, 0.6665039, 2.5664062, 0.20727539, 1.7900391, -0.37158203, 1.1542969, -0.5283203, 1.6943359, 0.74853516, 0.39282227, -0.5625, 0.55566406, 1.2158203, 0.6279297, -0.59375, -0.4020996, -1.4785156, -1.1494141, -0.96435547, 0.54345703, -0.23388672, -1.390625, 2.6914062, -0.99121094, -1.2519531, 1.8779297, -0.02961731, -0.3112793, -2.8359375, -1.8720703, -1.3066406, -0.68066406, -0.46826172, 2.8457031, 3.703125, -0.64453125, -0.08868408, -1.9150391, -2.3417969, -1.7832031, -2.4121094, 2.640625, -1.2509766, -1.6132812, -1.4619141, 0.1541748, 0.88623047, -1.2373047, -0.20324707, 0.055877686, -2.2265625, 1.2890625, 0.45703125, 0.94140625, -0.69677734, -0.30078125, 1.9433594, 2.0039062, 0.33813477, 1.0380859, 0.61621094, 2.6582031, 0.4975586, -1.8808594, 0.46533203, 0.8569336, -0.2709961, -1.3945312, 1.5888672, 2.1699219, -0.46606445, -0.5205078, 0.4338379, -3.4414062]}, "B07PJS4B4X": {"id": "B07PJS4B4X", "original": "Brand: Napoleon\nName: Napoleon TQ285XBL1 Propane Gas Grill, Blue\nDescription: \nFeatures: Blue portable grill with scissor cart\nMaterial Type: Cast Iron\n", "embedding": [-1.0361328, 0.04724121, 3.0742188, 0.45654297, 1.0791016, -1.3427734, 0.6464844, -1.1582031, 1.1103516, 1.0771484, 2.4140625, 0.5605469, -1.3378906, -1.1533203, 0.60009766, 0.17553711, 2.0273438, 1.9287109, 0.40551758, -1.0654297, 1.7558594, 0.66796875, 1.9267578, -1.9296875, 1.0585938, 1.0429688, 6.15625, -2.6269531, 1.703125, -3.1191406, 0.93066406, 0.09698486, 0.46118164, 0.20166016, -2.5546875, -0.7836914, 0.22631836, 1.7285156, -3.1914062, 1.453125, -0.7841797, -0.86572266, 2.3808594, 1.5449219, -2.0449219, -0.5336914, -1.4443359, 0.39526367, -1.5449219, -3.1015625, 0.81640625, 1.6679688, 0.26635742, -0.14208984, -1.6298828, 1.1552734, 0.23840332, -0.68310547, -0.052581787, -0.69970703, 1.6298828, 0.46606445, -0.8066406, 0.66259766, -1.4628906, 2.46875, -0.5, -0.30126953, -0.51660156, -0.122802734, 1.8720703, 0.61376953, -2.3027344, -0.27246094, -0.9975586, -3.1191406, -3.5722656, 0.8071289, -0.20251465, -0.029251099, -0.17529297, 1.5048828, 1.5087891, -2.2832031, -0.7910156, 0.56103516, -0.5991211, -1.3066406, 0.23205566, -0.1550293, -1.4648438, 0.5883789, -1.2695312, -4.6054688, 2.2890625, -0.5722656, -1.0273438, 1.4541016, -0.41430664, 0.9140625, 0.17016602, -0.9375, -0.44433594, -0.5498047, -1.3671875, -0.40234375, 2.9765625, 1.3212891, -3.0332031, 1.2753906, -2.3242188, -0.37597656, 1.1386719, 0.33984375, 0.56152344, 0.9316406, 1.4736328, 1.890625, -0.30566406, 0.43798828, 3.8867188, -1.8535156, -0.76904297, 0.28198242, -1.0371094, 0.60058594, -1.6132812, 1.5947266, 5.0039062, -0.059020996, 1.7578125, 1.6171875, 1.9101562, -0.2631836, -2.0664062, -2.4570312, -0.88623047, -2.15625, -3.046875, -0.3076172, -1.515625, 0.41186523, 0.20483398, -1.2988281, -3.5820312, -0.91748047, -0.7910156, -0.36767578, -0.6503906, -1.0419922, -1.1738281, -1.546875, -0.85595703, 0.77197266, 1.1445312, -1.2441406, -1.5273438, -1.171875, 2.2949219, 1.6650391, 2.625, -0.19641113, -2.1191406, 1.6660156, -0.22937012, -2.2207031, -1.2431641, 1.4492188, 0.17993164, 2.3222656, -1.1503906, -2.4472656, -0.88964844, -0.20581055, 0.20507812, 0.20117188, -1.0009766, 1.3955078, -0.19384766, -0.4326172, 0.14904785, -1.5869141, 0.76220703, -0.7192383, 0.7089844, -1.5087891, -0.94873047, -1.8867188, 0.7138672, -1.3984375, 1.3935547, 1.4443359, -0.9921875, 1.7138672, -1.1201172, -1.6875, -1.5341797, -0.20983887, 1.3085938, 0.13110352, -1.6689453, 0.061065674, -0.40551758, 0.17041016, -1.5419922, -2.8671875, -2.9550781, -0.31103516, 0.76123047, 1.6992188, 2.9707031, -1.3164062, 1.4238281, -0.68310547, 1.3320312, -2.9824219, 2.5195312, -0.7626953, 0.6777344, 2.2539062, -0.43139648, -0.17797852, -0.8925781, 3.0136719, -0.15686035, 2.0351562, 0.8652344, 1.5126953, -2.7324219, -0.8046875, 1.6757812, 0.57128906, -0.46313477, 0.35131836, 0.5961914, 0.8901367, 1.0058594, -0.484375, -1.8417969, 0.18371582, -0.55078125, -1.4619141, -1.1132812, -1.5625, 0.84765625, -0.043029785, -1.6552734, 0.5253906, 1.6826172, 1.5117188, -0.31445312, 1.7958984, 0.9838867, 1.2675781, -1.5380859, 2.6796875, -0.19567871, 0.5600586, -1.3828125, -3.4394531, 2.3554688, 1.765625, -0.28149414, -0.14953613, 1.8154297, -0.94970703, 3.7929688, 0.7260742, -1.9160156, -0.8613281, 0.8911133, -0.42529297, 1.8945312, 1.3320312, 0.9277344, 0.070739746, -1.6982422, 3.125, 0.59033203, 2.0429688, -0.05041504, 0.87060547, 3.0839844, -2.6386719, -1.7207031, -1.3076172, -0.33129883, -0.03552246, -1.9287109, 1.2509766, 4.3828125, -0.7988281, -0.83251953, 3.5039062, -0.5288086, 1.2949219, 2.7441406, -1.1464844, -1.6269531, -1.421875, 3.2285156, 0.92822266, 1.7773438, 1.703125, -1.1386719, -1.1787109, -0.015136719, -3.484375, -0.5307617, -1.6445312, -1.671875, 0.8598633, -0.60253906, 1.9111328, -0.5, -0.14208984, -2.5527344, -3.0800781, 2.2480469, -0.9194336, 1.9785156, 1.5576172, 0.8671875, 0.73339844, 0.26000977, 0.93896484, -1.9267578, 3.46875, 0.5180664, -0.99609375, 0.37451172, 0.6230469, 0.92626953, -2.0566406, -2.6308594, 1.9082031, -2.7597656, -1.1982422, 0.06378174, -1.3408203, 0.3076172, 1.6494141, -3.2832031, 2.7851562, -1.1201172, -3.46875, -0.06414795, 1.5791016, -1.0039062, -0.9169922, 0.29003906, 0.22009277, -0.060455322, -3.8261719, -0.29296875, 0.13513184, -1.34375, 2.0429688, -2.0058594, 1.1201172, 0.11956787, 0.5415039, -0.7285156, -2.40625, 0.019104004, -1.6601562, 1.3076172, -1.4238281, 0.6796875, -3.4785156, 0.4230957, -0.8232422, 1.2333984, -3.3046875, -1.7607422, -2.1503906, 0.140625, 2.9199219, 0.61279297, 0.63916016, 1.1201172, -2.5078125, 2.1914062, -1.3251953, -1.5224609, -0.35668945, 1.2119141, -0.1430664, -1.5068359, -3.21875, 0.16882324, -1.3427734, 0.9140625, 0.22729492, 1.9833984, -2.9394531, 2.3789062, -3.0429688, 0.9145508, -2.2441406, 0.49169922, -0.24829102, -0.3791504, -0.45776367, -0.53222656, 0.6176758, -0.03640747, 0.0390625, 1.8720703, 0.52734375, 0.7163086, 1.3447266, 0.546875, 1.4570312, 0.77685547, -4.1132812, 0.42944336, -0.4675293, -2.0292969, 0.51660156, -2.7675781, -0.36621094, -1.9355469, -0.99560547, 3.2675781, 2.2011719, 2.5136719, 0.9291992, -0.6850586, 0.5444336, -0.32080078, -0.9199219, -0.43286133, 1.0478516, 1.8867188, -0.8100586, -1.0849609, -0.6542969, 1.7900391, -1.9619141, -2.0859375, 0.6113281, 0.6479492, 0.92089844, 2.0800781, -1.5605469, 0.028884888, 0.60253906, 2.171875, 0.5859375, -1.3037109, -0.53222656, 0.9091797, -0.39453125, 0.90722656, 1.6435547, 1.4355469, -0.7114258, 1.796875, -0.35717773, 1.2167969, -3.5878906, -0.13781738, -0.8208008, 1.8525391, 0.61279297, 1.9316406, -0.9746094, 2.0234375, -0.17773438, -0.28051758, 1.7880859, -2.1367188, 1.1875, 1.5458984, -0.36865234, -0.89697266, -0.6176758, 0.89697266, 1.2451172, -0.73583984, 1.6816406, -0.5776367, -0.82177734, 0.08996582, -0.11602783, -1.6474609, -2.0488281, 2.4121094, -0.7734375, -2.15625, 0.39135742, 1.9482422, -0.01398468, -1.8212891, 0.27416992, 0.39453125, -0.029220581, 1.7060547, -0.52734375, -0.78125, 2.8027344, -0.3395996, 0.56347656, -0.003967285, -3.0585938, 0.5776367, -0.56347656, -0.47680664, 1.0927734, 0.68896484, 0.25097656, 2.0410156, -3.2714844, 0.6958008, -2.3476562, -0.41235352, 0.30517578, -1.0380859, -1.1298828, 0.43676758, 0.29296875, 2.5917969, -0.77001953, 3.2617188, -1.0126953, -1.9394531, 1.0615234, -2.3476562, 0.2211914, -2.40625, -2.1210938, 1.0703125, -1.0009766, -0.18188477, 1.8505859, 0.9589844, 0.24731445, 3.1523438, 1.3320312, -3.2675781, -0.1697998, -1.421875, 0.18737793, 0.04849243, -1.8125, 0.8300781, -0.37451172, -2.3652344, -0.8598633, 0.56591797, -0.31201172, -0.059539795, 1.7607422, -2.9160156, -0.044128418, -0.36499023, 1.5498047, 0.43701172, -0.081726074, 0.6347656, 0.1619873, -0.9140625, -1.8564453, 1.9404297, 2.4414062, 0.6904297, 1.7255859, 0.5986328, 0.6616211, 0.10253906, 0.75927734, -1.2451172, 3.2871094, -0.2607422, -2.4140625, -0.80810547, -0.43066406, -0.15551758, -1.6328125, 1.9404297, -0.07086182, -1.7724609, 0.36499023, 1.4980469, 0.4633789, 0.91308594, -0.09460449, -2.5742188, -0.18591309, 2.3300781, -2.5996094, 0.119384766, 0.35473633, 0.1517334, -0.16699219, 0.12866211, -1.3896484, 0.062561035, -1.4589844, -1.3974609, -1.2011719, 3.3046875, 1.6552734, 1.7119141, 1.5078125, -1.4072266, 0.30664062, -1.2128906, 0.6669922, 0.8881836, 1.109375, -1.0019531, -1.5380859, -0.26489258, 2.5332031, -2.5214844, -1.9648438, 2.0058594, -1.8671875, -1.078125, -1.2675781, 1.03125, -1.8339844, -0.96435547, -0.49804688, -0.6977539, 2.3105469, -0.9794922, -1.0751953, 1.0371094, 0.26391602, 0.21020508, -0.052124023, -0.8955078, 0.67871094, 2.2304688, 1.2685547, 0.56689453, -0.8300781, 0.49389648, -0.3388672, 0.97265625, -0.8613281, -0.68896484, 0.4560547, -0.7866211, -0.85058594, -3.0292969, 1.4375, 2.7109375, 1.5361328, 3.0058594, 0.031707764, -2.46875, 2.1660156, 0.07562256, -1.9267578, 0.48046875, -0.6401367, -0.045440674, 1.2402344, -0.6069336, -3.984375, 0.053863525, 1.7382812, -1.1513672, 0.8466797, 1.2880859, -0.92822266, -2.2949219, -2.3710938, -0.4597168, -0.1751709, -0.0670166, -0.44848633, 1.3945312, 1.4775391, -1.2861328, -0.8569336, 4.3125, -1.3212891, 0.57128906, 1.4472656, -0.09753418, 1.3886719, 0.4177246, -1.0419922, -0.45776367, -0.55029297, 2.375, 1.8662109, 1.4082031, 0.4951172, 0.21533203, -2.3984375, 0.57373047, -0.9160156, 2.2675781, -2.0546875, -1.4267578, 1.0888672, -0.046783447, 1.7480469, -0.64160156, 1.3632812, 0.45043945, 1.8125, 2.6152344, -0.10015869, -1.7177734, -0.48657227, -2.7617188, -3.5429688, -2.5410156, 1.2197266, 3.2460938, 1.1660156, -0.19628906, -1.9492188, 0.24279785, -0.28173828, 0.1895752, -1.1787109, -1.1298828, 0.08502197, -0.37451172, 0.9345703, -0.2746582, -1.4296875, 0.44091797, 0.8046875, -0.17419434, 1.5361328, -2.0507812, -4.2617188, 1.3798828, -1.4960938, -0.90625, 1.0039062, -0.6875, -1.4951172, 1.8203125, 2.015625, -1.2978516, 1.8632812, -0.8618164, 0.16027832, 2.4140625, -0.036499023, 0.18334961, 0.058532715, -1.6269531, 0.7573242, -1.9570312, 3.4453125, -0.7402344, -1.2285156, 0.71972656, 1.390625, -0.7480469, 0.30859375, 0.8178711, -0.53759766, 1.7099609, 0.37451172, -0.47216797, -1.4804688, -1.6298828, -2.5761719, 0.58935547, -1.5380859, 0.22180176, -1.8720703, 0.19128418, 1.1318359, -0.09063721, 0.13476562, 1.6191406, 2.0605469, -1.1308594, 1.8398438, -1.3027344, 1.9150391, 3.2890625, -1.2998047, -2.7714844, -2.4472656, -1.4970703, 1.6191406, -0.7788086, -0.41992188, -2.9140625, -0.5786133, -0.48632812, -0.023345947, 0.7216797, 2.5175781, 1.2382812, -0.48999023, 1.6132812, 2.4765625, -0.4987793, 2.2695312, -0.21850586, 4, -1.234375, 2.8867188, -0.49316406, -2.5175781, 2.6738281, -1.8613281, 0.9770508, 1.5078125, -1.9160156, 0.20751953, -2.0117188, -0.48242188, -2.8945312, -1.6416016, -2.2128906, 0.9345703, -0.03326416, -0.29052734, 0.7841797, 2.3164062, -0.4165039, 0.9321289, 1.7119141, 0.9785156, 0.6640625, 0.79052734, 1.0820312, 0.61816406, 1.5019531, -2.7753906, 3.3535156, -0.057128906, 1.0107422, 0.11907959, 0.8359375, 1.9648438, 2.2011719, 0.62939453, 1.4619141, 4.7617188, 2.2988281, 1.53125, -0.003440857, 1.0214844, 2.7070312, -0.7026367, 0.8979492, 0.9238281, 1.4101562, -0.16345215, -0.32177734, 0.9458008, 1.1513672, -1.1708984, -2.7148438, 0.045166016, -0.20593262, -0.11102295, 2.0195312, 0.046020508, 0.73339844, -2.1347656, -0.0390625, -1.6542969, 0.21777344, 0.59814453, -0.9970703, 2.140625, 0.2915039, 1.4833984, 0.71728516, -1.046875, 1.7304688, -3.25, -0.21875, -1.1630859, -0.6508789, -0.62646484, -3.1640625, 0.80566406, -0.005859375, 0.7060547, 0.82714844, 1.5195312, 1.0585938, -0.047027588, -1.9326172, 0.7285156, 1.0576172, 1.2548828, -1.5458984, 0.21875, 3.0019531, 0.08654785, 0.061035156, -4.609375, 2.3789062, -0.006095886, 1.4726562, 3.1425781, -1.3466797, 1.7070312, 1.0966797, 1.515625, -2.1699219, 2.5605469, 0.87890625, -3.2050781, 0.67041016, 0.5600586, 0.6298828, 2.4960938, 0.6972656, -1.4033203, 3.0175781, -0.9794922, 3.5527344, 0.0715332, 1.3398438, 1.796875, -0.024841309, -2.0214844, 2.4667969, -0.4387207, -0.19555664, 0.1586914, 3.4902344, 2.2402344, -0.24047852, 1.6328125, -0.13000488, 0.7397461, -0.039733887, -1.1230469, -0.10687256, -0.20825195, 0.054107666, -0.45581055, 1.7255859, -0.8833008, -1.6279297, 1.8974609, 1.7011719, -1.6230469, 0.26293945, 2.8085938, -1.3173828, 2.4179688, -0.8642578, -0.9169922, -1.0605469, 0.29003906, 1.0888672, 0.4560547, -1.0947266, 0.29296875, 0.5878906, -0.4206543, -1.2158203, 0.7753906, 0.005065918, -0.46142578, -1.546875, 1.0136719, -2.6015625, -3.0390625, 1.5595703, -0.13513184, -0.48364258, 0.31933594, -0.083984375, -1.3642578, -2.0097656, 0.22009277, 0.15478516, -0.4169922, -1.1855469, -1.1875, 3.2617188, -0.2878418, 1.0410156, -2.3339844, -5.0820312, -0.47338867, -2.0800781, 3.765625, -0.19335938, -1.5644531, -0.8071289, -0.0657959, 2.5117188, -2.4335938, -1.5576172, 0.21740723, -0.7578125, -0.3256836, -0.7055664, 1.4365234, 1.5371094, -0.66503906, 0.14648438, 1.25, -0.012138367, 2.3320312, 0.8833008, 1.4716797, -0.024841309, -1.7099609, 0.62060547, -1.9833984, 0.13378906, -1.4980469, -0.101379395, 0.84472656, 1.1455078, 0.87646484, -0.9433594, -1.8261719]}, "B087HNGXRB": {"id": "B087HNGXRB", "original": "Brand: Megamaster\nName: Megamaster 720-0988EA Propane Gas Grill, Black/Silver\nDescription: \nFeatures: Assembly required\nDurable high-grade stainless steel main burner\nStainless steel control panel with two large easy to transport wheels\nHeavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area\nA cooking power of 30,000 total BTU's with strong, even and consistent heat\n", "embedding": [-0.72509766, -0.5239258, 1.5273438, 0.22802734, -1.4443359, 1.3095703, -0.26123047, 0.7480469, 0.026687622, 1.8789062, 0.74853516, -0.06329346, -0.4543457, -1.3554688, 1.2324219, 1.5517578, 1.1523438, 0.11859131, 1.8867188, 1.2509766, 0.5415039, 0.2166748, 0.22851562, -1.875, 2.0410156, -0.108947754, 3.9121094, -3.3613281, 0.12524414, -0.3149414, 0.7993164, -0.19189453, 0.2993164, 1.8554688, -1.9658203, -0.7807617, -3.7792969, 1.5859375, -3.3535156, 1.4892578, 0.71484375, -0.89404297, 1.2373047, -0.3544922, -1.59375, -0.87890625, 0.99853516, 0.26611328, -2.2050781, -3.7128906, 1.0419922, 1.9755859, -0.6665039, 0.056365967, -0.72314453, -0.19677734, 1.1796875, -0.54833984, 1.1386719, 0.45239258, 2.0742188, -1.9951172, -1.2158203, -1.1044922, -1.7382812, 0.41308594, 0.13208008, -0.9448242, -0.14868164, -1.5585938, 1.3710938, 0.41577148, -2.2089844, 0.88720703, -0.4880371, -2.0019531, -2.7578125, 0.6894531, -0.048828125, -0.6855469, -1.6943359, 2.6308594, 0.5864258, -1.1826172, 0.36328125, -0.26782227, -0.17773438, -1.4267578, 0.6147461, 0.61083984, -2.0546875, 0.7114258, -2.3105469, -4.6210938, 3.9472656, 1.0185547, 0.33276367, 0.44702148, 1.5195312, 2.1699219, -0.3161621, 0.8930664, -1.5820312, 0.5029297, -3.2167969, -1.2646484, 0.61572266, 0.8120117, -4.09375, 0.9589844, -0.890625, -0.050933838, 0.4873047, 0.27807617, -0.37036133, 0.44433594, 2.4960938, 1.2001953, 2.8300781, 2.7519531, 3.1796875, -0.68310547, 1.7138672, 1.0888672, -1.1650391, -0.35717773, -0.8461914, 3.3183594, 4.4101562, -3.1191406, 0.671875, -1.3398438, 2.3300781, 1.2021484, -0.37695312, -2.890625, -1.6162109, -1.0341797, -3.1308594, -0.12683105, -1.2841797, 2.3613281, 0.57373047, -0.8828125, -4.8007812, -1.2216797, -0.39135742, -0.6665039, -0.93603516, -0.4404297, -0.25805664, -1.4726562, -1.3330078, 0.17126465, 0.7260742, -1.6005859, -1.1494141, -0.42700195, 2.8046875, 1.3583984, 2.1933594, -0.016357422, -3.3183594, 0.05380249, 0.73583984, -1.2177734, -0.6875, 1.3251953, 0.59521484, 0.88623047, -0.16259766, -1.0869141, 1.1425781, -0.9975586, 0.4411621, 1.0019531, -0.04751587, 3.265625, -0.81591797, -2.9472656, -0.46557617, -2.3496094, -0.41210938, -0.69140625, 0.04296875, -2.1894531, 0.50634766, -0.8925781, 1.8896484, -0.64990234, -0.9926758, 1.8710938, 0.21289062, 1.0458984, -0.078430176, -2.3027344, -3.0839844, -1.8837891, 2.3535156, -0.7363281, -1.1435547, 0.72998047, -0.23425293, 0.13244629, -1.2314453, -3.3183594, -0.4831543, -1.0888672, 1.7080078, 1.1748047, 1.9404297, -2.5332031, 1.234375, -2.3457031, -0.8461914, -2.2089844, 1.1533203, 1.2021484, 1.8310547, 3.4628906, -0.32983398, 1.2558594, 0.70703125, 1.2285156, -0.035491943, 1.5185547, 1.2333984, 1.7529297, -3.3203125, -3.1484375, 2.4101562, 1.4091797, -0.14343262, -0.42797852, 0.7207031, 1.7724609, 1.2578125, 0.29760742, -0.5107422, -0.2775879, 0.19372559, 0.5488281, -0.3395996, -3.09375, 0.28588867, 0.22473145, -2.6699219, 1.828125, 1.3515625, 2.1464844, 0.020736694, 1.8876953, 0.15002441, 1.671875, -0.71435547, 1.2099609, -1.1972656, 1.0351562, -0.050567627, -2.6464844, 1.3115234, -0.36254883, -0.77685547, -0.45239258, 2.6875, -1.0683594, 4.6796875, 0.5708008, -2.21875, -1.7587891, 3.4550781, 0.6069336, 0.78466797, 0.74658203, 2.5527344, 2.1582031, -0.84033203, 4.2890625, 1.2060547, 0.035186768, 0.5439453, -0.74072266, 1.2949219, -1.5654297, 0.51904297, -0.28393555, 2.4179688, 0.99658203, -1.5810547, 1.7578125, 3.5332031, 0.90234375, -2.4609375, 2.8925781, -1.5478516, 1.1796875, 2.9589844, -0.7680664, 0.33862305, -0.17871094, 2.1386719, 1.359375, 0.024551392, 0.7290039, 0.025619507, -1.5087891, 0.079711914, -0.10662842, -0.6586914, 1.5849609, 0.29418945, -0.5776367, -1.5517578, 0.5913086, -1.5419922, 0.2697754, 2.3535156, -1.9892578, 1.4013672, 1.0302734, 2.890625, 1.5390625, 0.7832031, -0.68603516, 1.7373047, 0.53271484, -0.98095703, 0.93359375, 1.2958984, -0.7675781, 0.67041016, 0.20422363, 0.29077148, -0.9838867, -2.9238281, 0.6352539, -2.5234375, -2.5136719, 1.3271484, -0.7055664, 0.8989258, 1.0048828, -2.5253906, 1.0683594, -0.6401367, -2.6308594, -2.5390625, -0.54833984, 0.6196289, -1.5556641, 0.18896484, 0.8964844, 0.3371582, -4.4648438, -1.1240234, 2.15625, -0.6977539, 2.3886719, -0.48364258, 0.26879883, 0.68310547, -1.3359375, -0.043945312, -0.76904297, 0.8359375, -2.4042969, 1.1416016, -3.5253906, 0.4650879, -2.4707031, 0.02406311, -1.5351562, 0.78515625, -2.0429688, -1.8486328, -0.84033203, -0.17321777, 4.6054688, -0.7602539, 1.7626953, -0.07763672, 0.9086914, 2.0332031, -2.0488281, -1.5791016, -1.1210938, 2.0820312, -1.8935547, -0.8598633, -1.3740234, 1.0839844, -1.0126953, 0.90625, -0.40600586, 0.9008789, -2.0019531, 2.1679688, -1.4648438, -0.0859375, -0.20751953, 0.18835449, 0.02558899, -1.6054688, -0.41601562, -0.055145264, -0.7890625, -2.3339844, 0.6508789, 1.4179688, -0.77490234, 0.91015625, 0.3010254, -1.2392578, 1.3085938, -0.8105469, -3.0957031, 4.078125, -1.5419922, -2.2871094, 1.5351562, 0.32348633, -3.5957031, -2.1699219, -2.3730469, 3.3515625, 1.2158203, 2.265625, 0.1772461, 0.16833496, 0.92822266, -1.0576172, 1.7578125, -1.4091797, -0.9589844, 3.4453125, -0.45043945, -2.203125, 0.20361328, 2.0683594, -3.5371094, -2.6152344, 2.7324219, 1.0771484, 2.3417969, 2.3847656, 0.72509766, -0.26293945, -0.7558594, 3.3828125, 0.7084961, -0.19384766, 0.6225586, -0.5415039, 1.5517578, 1.0488281, 1.4619141, 2.515625, 0.2220459, 1.9013672, -0.52490234, 0.5722656, -2.140625, -0.38671875, -0.5283203, 0.2902832, 0.052856445, 1.3837891, -0.3112793, 1.0830078, 0.58447266, 0.17773438, -0.59277344, -1.8935547, 0.15441895, 1.4296875, 0.06317139, 0.5463867, -0.8647461, 0.039978027, 0.93310547, -0.8442383, 0.18322754, -2.9980469, -1.2744141, 1.8369141, 1.4140625, -1.1240234, -1.390625, 1.453125, 0.028244019, -0.9086914, -0.11541748, 2.0097656, 0.7182617, -2.1699219, -0.46313477, -0.60595703, -1.6357422, 1.0117188, -0.1796875, -1.1865234, 1.8056641, -0.87939453, 1.3095703, 1.9599609, -1.0917969, 0.51123047, -0.46850586, 0.18127441, -0.08538818, 0.7871094, 1.6953125, 0.8598633, -2.1503906, -0.29711914, -3.0390625, 0.87060547, 0.40356445, -2.1054688, -0.4963379, 1.3203125, 0.49389648, 2.7675781, -1.3144531, 2.6523438, -0.64990234, -0.65722656, 0.5551758, -3.1660156, -1.4169922, -4.0195312, -2.5507812, 1.1005859, -3.015625, -0.33520508, 2.2324219, 0.059051514, 0.8886719, 1.2822266, 1.1513672, -3.6582031, -2.09375, 0.14282227, -0.01007843, -0.2890625, -1.1474609, 0.072509766, 0.8041992, -2.2246094, 1.1455078, 0.85791016, -0.45092773, 1.8583984, -0.053710938, -0.62353516, 0.7260742, -1.28125, 0.14941406, -0.58740234, -0.7421875, 0.080566406, -1.4570312, -0.28271484, -3.3046875, 2.2871094, 0.7524414, -0.8911133, 0.57910156, 2.0703125, -0.6357422, -2.5996094, 0.39233398, 0.5605469, 0.14733887, -0.85546875, -2.5800781, -1.2011719, -0.5571289, 0.0027561188, 0.07409668, 1.1777344, -1.2685547, -1.8369141, 0.17834473, 0.8491211, 0.6616211, 1.1679688, 0.022598267, -1.7626953, -0.2944336, 0.52490234, -2.8496094, -1.2695312, -0.36743164, -0.3557129, -0.89501953, -0.46875, -1.4326172, -0.46020508, -1.9970703, -0.18322754, -3.1035156, 1.9658203, 2.1660156, 1.8486328, 4.0390625, -0.037109375, -1.1152344, -1.5654297, -0.18615723, -0.21984863, 1.5185547, 0.34155273, 0.6196289, -0.2590332, 1.8427734, -3.0683594, -0.6538086, 2.2285156, -2.9394531, -0.22229004, -1.3945312, 1.1650391, -0.82373047, -1.0029297, 0.20214844, -0.14916992, 2.4804688, -0.56884766, 1.6298828, 0.050445557, 0.73828125, -0.6699219, 1.5283203, -0.13537598, -1.8212891, 3.0019531, 0.44140625, 1.4765625, -0.92529297, 0.21350098, 1.0576172, 1.0800781, -0.9692383, 0.703125, 0.25805664, -0.18981934, -1.75, -1.7734375, 0.23498535, 1.7646484, 0.62158203, 2.5703125, 1.6748047, -0.9199219, 2.7050781, 0.7524414, -2.1640625, 0.031082153, -1.3583984, 0.50146484, 0.9003906, 0.3359375, -2.2265625, -1.3359375, 2.1601562, -0.35351562, 0.54248047, 0.005279541, -1.6337891, -1.2099609, -2.859375, -0.67822266, 0.4501953, -0.9472656, -0.24304199, -1.1591797, -0.12054443, -0.93115234, 1.9570312, 3.7578125, -1.6679688, -2.0722656, 2.7265625, -0.58740234, 1.5107422, -0.16223145, -0.03955078, -1.8867188, 0.94921875, 2.7636719, 1.2509766, 0.37670898, 1.8720703, 0.22302246, -3.3457031, 2.1445312, -0.86328125, 2.0546875, -1.7763672, -2.4121094, 0.9472656, -2.6777344, 0.9897461, -1.9335938, 1.5400391, -1.5195312, 2.4667969, 2.6425781, 0.125, -0.81591797, 1.7568359, -1.5654297, -3.7402344, -3.0214844, -0.29858398, 1.7646484, -0.022537231, 1.8271484, -1.7216797, 2.0371094, 1.4169922, 0.39282227, -0.27490234, 0.80078125, -0.8227539, -0.25024414, -1.1943359, -0.19299316, -1.015625, -0.54248047, 1.8583984, 0.7729492, 0.5932617, -2.9453125, -3.4453125, 0.65771484, -0.53271484, -0.43481445, 1.9404297, 1.4248047, -0.66015625, 1.1816406, 1.3505859, -1.7490234, 1.4208984, -1.5556641, -1.0371094, 1.4375, 1.2666016, -0.23571777, 0.24365234, -2.1269531, 0.16210938, -0.8803711, 1.9912109, -0.056549072, -0.37182617, -2.3730469, 0.3876953, -0.9038086, 0.20373535, -0.56103516, -0.13647461, 2.3222656, 1.7373047, -1.0810547, -0.29711914, -1.3310547, -3.6347656, 0.52734375, -2.3105469, 0.1607666, -0.41870117, 0.91552734, 0.37304688, 1.1298828, 0.76220703, 0.5546875, 1.8916016, -0.1661377, -0.7963867, -1.2724609, 1.6875, 2.4511719, -0.17321777, -2.2617188, -2.1484375, 0.3996582, 2.1464844, 1.6845703, -1.0546875, -0.61865234, -1.4521484, -0.7011719, 0.2421875, 1.1542969, 1.5361328, -0.6616211, -2.4277344, 1.1982422, 3.0527344, -0.31152344, 2.2773438, 0.7807617, 2.0136719, -2.2363281, 3.6777344, 0.13549805, -0.93310547, 2.6796875, -1.46875, 0.76416016, -0.69921875, -1.6318359, 0.15112305, -1.7158203, -1.5029297, -0.9526367, -0.8886719, -4.2773438, 1.5400391, 1.3984375, -1.8193359, -0.24353027, 1.1816406, -1.0849609, 3.4199219, 3.1796875, 1.0888672, 0.49609375, 1.6259766, -1.2119141, -1.1298828, 0.24450684, -3.1269531, 2.3027344, 0.40405273, -1.4804688, -1.0419922, 2.53125, 1.1962891, 1.671875, 1.5078125, 1.6572266, 2.7636719, -0.29663086, 1.1572266, 1.6367188, 1.1962891, 2.7480469, -0.16088867, 1.0136719, 0.6557617, 0.7753906, 1.3984375, -0.7915039, 1.3857422, -1.3867188, -1.9462891, -0.5859375, 0.35180664, 0.004611969, -0.98779297, 0.2697754, 0.045898438, 0.56396484, -2.5566406, -0.5551758, -1.0458984, -0.8417969, -1.4716797, 0.5317383, 1.9716797, 0.42285156, 0.036468506, -0.5258789, -2.3945312, 0.8823242, -1.7236328, 0.75146484, -0.16027832, 0.43823242, -0.8305664, -0.8984375, 0.110839844, -0.45385742, -0.16809082, 0.32006836, 0.85791016, 0.062286377, -0.8105469, -1.6884766, 0.31762695, -0.39916992, 1.7734375, -0.21105957, -0.34399414, 3.3515625, -0.921875, -0.94677734, -3.1777344, 1.6142578, 1.6640625, -0.16027832, 1.8642578, -1.4296875, 1.5166016, -0.57910156, 0.3395996, -2.8984375, 0.36694336, 0.051483154, -1.7109375, 0.44726562, 1.6845703, 1.2216797, 2.5800781, -0.04244995, -0.79248047, 0.7949219, 1.3779297, 1.6474609, 1.1708984, 1.0527344, 1.7900391, 2.2578125, -1.4990234, 1.9580078, 0.7363281, -0.9819336, -3.4707031, 2.2675781, 3.1875, 0.6738281, 0.5307617, -1.8427734, -0.26098633, -0.1373291, -1.1220703, -1.0595703, -2.5371094, 0.10455322, -0.74853516, 0.97802734, -0.40942383, -2.4101562, 2.421875, 1.0908203, -0.72216797, 0.93603516, 0.6875, -0.67578125, 1.8554688, -0.120910645, -0.92626953, -0.019943237, -0.10284424, 0.4621582, 0.35742188, -1.8242188, 1.6044922, 1.3115234, 1.3271484, -2.1386719, -0.76416016, 0.5708008, 0.19934082, -1.0458984, 1.5966797, 0.28393555, -2.3652344, 2.5039062, 0.54003906, -0.30566406, 1.6210938, -0.08770752, 0.48754883, -1.7216797, -0.5854492, -0.43286133, 0.16357422, -0.13623047, 2.0917969, 1.5615234, 0.8120117, 0.060760498, -2.2597656, -2.5195312, -1.5458984, -2.0449219, 4.2929688, -0.7133789, -1.0615234, -0.95947266, 1.1972656, 2.9785156, -1.7773438, -0.97021484, -0.39160156, -1.1650391, 0.6254883, 1.3164062, 0.7807617, 1.6337891, 0.97216797, 0.77001953, 1.6103516, 0.77978516, -0.09649658, 1.3320312, 2.6386719, 0.6303711, -2.2949219, 0.37182617, -0.4716797, -0.82373047, -0.67041016, -0.28710938, 2.5175781, 0.7192383, -1.2490234, -1.1650391, -0.8588867]}, "B00FDOON9C": {"id": "B00FDOON9C", "original": "Brand: Weber\nName: Weber 54060001 Q2200 Liquid Propane Grill , Gray\nDescription: \nFeatures: Total cooking area = 280 Square Inches\nStainless steel burner puts out 12,000 BTU-per-hour\nPorcelain-enameled, cast iron cooking grates\nElectronic ignition with built in thermometer\nTwo folding work tables\n", "embedding": [-0.9628906, 0.15979004, 2.2382812, -0.47265625, -1.4248047, 0.7060547, -0.07116699, -0.8720703, -0.7519531, 2.2128906, 2.7792969, 0.67626953, -0.44335938, -2.7050781, 0.5751953, 0.020141602, 2.4414062, 0.36206055, 0.78027344, 0.50390625, 0.29858398, 0.70166016, 1.3818359, -2.4785156, 2.0644531, 1.1953125, 4.9101562, -4.8671875, -0.61572266, -1.7138672, 0.8701172, 1.1953125, 0.9238281, 0.49853516, -2.7207031, -0.78222656, -3.3984375, 1.4404297, -1.8496094, 0.99609375, -0.29833984, -2.8378906, 1.578125, 0.66308594, -1.7373047, 0.62597656, 0.76464844, -0.55859375, -1.5048828, 0.034851074, 3.1132812, 0.7573242, 0.20080566, 0.91308594, -0.48583984, 1.8496094, -0.31640625, -1.8515625, 1.1396484, 0.7480469, 2.1347656, -0.9448242, -2.5019531, -0.61376953, -0.8798828, 0.086242676, -0.3623047, -0.92822266, 1.84375, -0.0037555695, 3.5410156, -2.8515625, -1.7607422, 0.7915039, 1.46875, -1.9033203, -1.3349609, 1.9023438, 1.6230469, -0.6323242, -1.3476562, 2.2832031, 0.43237305, -2.1992188, -0.21228027, 0.7626953, -0.30615234, -3.3730469, 2.4628906, 1.9775391, 0.18847656, 1.0019531, -2.4199219, -4.1757812, 1.9238281, -0.6586914, 0.80322266, 1.3701172, -0.30688477, 0.60302734, -1.4775391, 1.1933594, -1.0507812, -1.4521484, -3.2597656, -0.59765625, 0.9628906, -0.21374512, -2.4882812, -0.640625, -1.0849609, 0.12176514, 1.5625, 1.7958984, 0.57373047, 1.9287109, 0.42333984, 2.7128906, 1.4101562, 1.3525391, 2.4277344, -1.3691406, -0.1003418, -0.52490234, -0.92333984, 0.45654297, -0.8623047, 1.2509766, 3.0683594, -2.9628906, -0.5175781, 0.0107421875, 4.375, 0.74853516, -0.5258789, -1.1708984, -2.0136719, -0.042816162, -2.5566406, -0.32910156, -0.8173828, 0.28320312, 0.6894531, -0.44018555, -3.2460938, -1.2792969, 0.76708984, 1.515625, -0.034423828, -1.5683594, -0.36083984, -1.1464844, -1.0058594, 0.18188477, 1.234375, -0.21166992, -1.3271484, 0.41137695, 3.3457031, 1.4941406, 1.9238281, -0.86865234, -1.0185547, -0.1772461, 0.9375, 0.42236328, 1.4550781, 2.4960938, -0.07476807, 2.2226562, -0.17907715, -0.7363281, -1.1396484, 0.18408203, 0.7988281, -1.171875, 0.17260742, 1.5087891, 0.7480469, -0.66748047, -0.44580078, -2.1582031, 0.15222168, -0.44970703, -0.28833008, -0.77197266, -0.71728516, -0.7451172, 2.3632812, -1.9228516, 0.35180664, 0.35205078, 1.0390625, -0.5229492, 0.39941406, -0.5751953, -2.0058594, -2.3183594, 1.0019531, -0.032043457, -0.43310547, -0.18737793, 1.1435547, 0.41137695, 0.19396973, -2.3828125, -0.5913086, -1.5556641, 2.5078125, 1.4111328, 2.0507812, -1.7675781, 1.4667969, -0.7011719, -0.024765015, -2.1855469, 2.1503906, 0.7861328, 0.5463867, 2.375, -2.296875, -0.32739258, 0.67871094, 2.0019531, 0.13671875, -0.00045108795, 0.46289062, 0.17687988, -2.8613281, -0.37597656, 3.8300781, -0.2088623, 0.015945435, 0.06008911, 0.07513428, 2.0429688, 1.2490234, -1.0498047, -0.44067383, 0.008514404, 0.40429688, 0.6645508, -0.9951172, -1.5195312, 0.29101562, 0.19311523, -2.6210938, 2.0117188, 1.3671875, 0.3642578, -0.26879883, -0.05899048, 0.8071289, 1.2060547, -0.8339844, 1.203125, -2.2851562, 1.1796875, -0.49951172, -3.6640625, 1.4443359, 0.086364746, -0.19030762, -0.030761719, 1.2197266, -1.0332031, 2.9589844, 2.1855469, -1.7646484, -0.99365234, 0.48217773, 0.19372559, 0.2734375, -0.8925781, 1.7226562, 0.8227539, -1.8769531, 2.5683594, -0.011314392, 0.14404297, 0.27026367, -0.5253906, 0.87402344, -2.6640625, -1.3271484, 0.99072266, 0.9042969, -0.86376953, -2.0449219, 0.033294678, 3.0917969, -0.12487793, -2.7207031, 3.9375, -2.0996094, 0.37231445, 1.8193359, -0.48291016, -1.1474609, 1.2373047, 2.4453125, 0.9301758, 1.0058594, 0.90185547, -0.51171875, -1.3984375, 0.59277344, -2.7929688, 1.1650391, 1.2939453, -0.6357422, -0.98095703, -2.21875, 1.7558594, -2.5, -1.5722656, 1.8623047, -4.1601562, 0.8569336, -0.84277344, 1.4560547, -0.10638428, -1.7734375, -0.09967041, -1.6191406, 0.35107422, -0.40820312, 1.2001953, 0.6176758, -2.2441406, -1.1865234, -0.13928223, -0.49047852, -1.4189453, -1.5390625, -1.0166016, -1.5615234, -3.0527344, 1.6552734, -1.0605469, -0.3076172, 1.8085938, -2.9882812, 0.3984375, 0.103271484, -3.4199219, -0.7114258, -0.95947266, -1.8164062, -1.5371094, 0.85302734, 0.80126953, -1.3847656, -4.2929688, 0.18811035, 0.5991211, 0.40112305, -0.8071289, -1.0625, -0.70751953, 0.5600586, -0.61621094, -0.60595703, -0.16833496, 0.6640625, -1.0234375, 1.3779297, -1.5683594, 0.92871094, -2.1835938, 0.6464844, 0.5449219, 0.5073242, -3.0566406, -2.2597656, -0.73095703, -0.54345703, 4.0351562, 0.6508789, 1.3164062, 0.6035156, 0.89501953, 0.796875, -0.45361328, -1.6191406, 0.35205078, 0.88671875, -1.5751953, -1.5400391, -2.1953125, -1.2011719, -2.1621094, 0.064208984, 0.6328125, -0.3828125, -0.8071289, -0.83935547, -1.5878906, -1.2099609, -0.8798828, 0.2199707, -1.0175781, -0.94628906, -2.6894531, -0.87109375, -1.3974609, 1.2070312, -1.0908203, 2.3945312, 0.6660156, 1.9033203, 2.3613281, -0.9238281, 1.265625, -1.5888672, -3.8046875, 3.5566406, 0.22351074, -1.4814453, 0.79589844, -2.6210938, -2.9609375, -1.4277344, -0.16992188, 3.0253906, 2.8925781, 1.8105469, 1.4208984, 0.8720703, 0.21435547, -0.9160156, -0.59472656, -1.3681641, 0.41015625, 2.8085938, -2.9707031, -1.8339844, 0.010482788, 1.2890625, -2.7460938, -1.1542969, 2.4042969, 1.7441406, 1.7685547, 2.0957031, 1.6962891, 0.0005097389, -0.74121094, 1.1005859, 2.0761719, -0.9453125, 0.009635925, 0.022750854, 1.4316406, -0.19665527, 1.59375, 2.5625, 0.20471191, 1.9902344, 2.1210938, 2.0898438, -1.0537109, -0.48168945, -0.064697266, 0.65722656, 0.7866211, 1.4960938, -0.83251953, 0.4008789, -0.6386719, -1.7646484, -0.3215332, 0.1381836, -1.6279297, 2.5292969, 1.1787109, -0.8022461, 0.96191406, 1.3183594, 1.4707031, 0.32885742, 0.028747559, -0.5864258, -0.43164062, 2.0214844, -0.8613281, -0.09197998, -1.5351562, 0.9301758, -0.75878906, -2.1386719, 0.7285156, 3.7128906, -1.6279297, -1.4121094, 0.82177734, -1.6962891, -0.02406311, 0.69921875, 0.5332031, -0.8339844, -0.38598633, -1.2529297, 1.15625, 0.2775879, -0.9614258, -1.0400391, -0.6118164, 0.5864258, -0.05343628, 1.9619141, 1.84375, 0.69433594, -2.3085938, 0.3684082, -3.9082031, -1.7529297, 2.1210938, -2.3320312, -0.58691406, 1.8955078, -0.18249512, 1.2236328, -0.36645508, 2.4472656, -1.9970703, 0.43481445, 1.5693359, -2.5703125, -0.81347656, -3.96875, -3.4941406, -0.039611816, -1.4277344, -0.3630371, 1.4931641, 0.24194336, -0.21972656, 2.2539062, 0.97802734, -2.0078125, -1.2802734, -1.6787109, 0.3647461, -1.3486328, 1.3388672, 1.0654297, -0.42163086, -2.2519531, -1.1533203, 0.8510742, 0.40405273, 1.7480469, 1.2275391, -3.4335938, -0.37817383, -2.1835938, -0.034576416, -1.1806641, 0.15930176, 1.5322266, 0.48608398, 0.33276367, -1.7832031, 1.0888672, 0.6953125, -0.6386719, 3.2851562, 2.4492188, -1.09375, -3.6582031, 0.6933594, 1.6884766, 3.3261719, -0.8535156, -2.3632812, -0.3857422, 0.4477539, -1.1601562, 0.18041992, 0.2133789, 0.71777344, -0.7470703, 1.1230469, 1.7548828, 1.4667969, 0.82421875, 0.49560547, -3.0371094, 0.88134766, -0.42651367, -2.453125, -2.1425781, -0.13781738, 1.3564453, -1.15625, -0.33496094, -1.7705078, 0.72998047, -0.6196289, -0.8354492, -3.1230469, 4.0859375, 4.3984375, 2.0136719, 3.4746094, -1.1523438, 0.8520508, -0.28515625, -0.6948242, 0.18859863, 0.5444336, -0.26098633, -0.061706543, 3.2871094, 1.4560547, -2.1601562, -0.3984375, 0.92871094, -2.3710938, -0.05279541, -2.5195312, 0.69677734, -0.8647461, -0.3671875, 0.8574219, -0.9785156, 1.9638672, -0.42456055, -0.6928711, -0.25, 0.65722656, -0.7011719, 0.7050781, 0.14489746, -0.19030762, 0.22827148, 0.890625, 1.1630859, -1.0400391, 0.0758667, -0.29833984, 1.0654297, -0.79052734, 0.115112305, 0.19519043, 0.67626953, -1.1542969, -1.5605469, 1.3789062, 1.6347656, 1.1533203, 3.703125, 2.3125, -1.8935547, 1.9589844, 1.0351562, -2.5371094, 1.7060547, 0.57958984, -0.9682617, 1.6894531, 0.48413086, -4.0117188, -0.02217102, 1.15625, -0.047973633, 1.2519531, -1.1191406, -0.61083984, 1.2167969, -1.6279297, -0.28686523, -0.21875, -1.2695312, 1.1953125, 0.1661377, 0.44970703, -2.3476562, 1.6025391, 2.2460938, -1.5703125, -1.7441406, 1.2402344, -1.7724609, 0.18200684, -0.5390625, -0.4177246, -2.3105469, -1.3417969, 2.5019531, 1.1230469, 0.3527832, 0.5029297, 1.2470703, -1.1474609, 0.31298828, -1.5273438, 2.8339844, -2.3203125, -0.44213867, 1.0058594, -3.2695312, -1.1386719, -2.1035156, -0.52246094, -0.8720703, 0.9272461, 2.53125, 0.5395508, -0.037017822, 1.0185547, -1.3857422, -3.4179688, -0.0034427643, 0.27441406, 0.23657227, 0.9116211, 0.9135742, -2.0996094, 0.9975586, -0.31518555, -0.7446289, -0.64160156, 0.017227173, -1.6181641, -0.7426758, 0.6977539, 0.2512207, -1.0615234, 0.77490234, 0.41918945, 1.5185547, -0.4169922, -1.1005859, -0.86572266, -0.030059814, -0.94677734, -0.07293701, 2.2753906, 2.2792969, -0.1796875, 1.3056641, 2.0351562, -2.4667969, 2.7421875, -1.5917969, -1.0205078, 1.2148438, -0.4897461, 0.39794922, -0.4025879, -0.78466797, 0.08929443, -1.2412109, 1.1435547, 2.3398438, -1.3916016, -1.5791016, -0.009101868, -0.7163086, -0.7495117, 0.37768555, 0.48779297, 0.8598633, 1.5585938, -1.4023438, -0.60791016, -1.4091797, -2.8261719, 1.3222656, -2.515625, -1.3193359, -1.4707031, 0.58691406, 2.3066406, 1.1289062, -0.7241211, 2.2988281, 0.41210938, -1.1210938, 1.4482422, -0.14123535, 4.1914062, 3.9042969, -1.1181641, -0.49951172, -2.1035156, 0.5263672, 2.0996094, 0.69091797, -1.9365234, -0.5473633, -0.76416016, -0.06402588, 0.39038086, 0.71972656, 1.1650391, 0.82421875, 0.8901367, 2.1035156, 3.3066406, -1.9892578, 2.0644531, 0.77490234, 1.8935547, -0.50390625, 4.6015625, 0.061309814, -2.8789062, 1.6484375, -2.5585938, 2.0117188, -0.9580078, -1.1142578, -0.24621582, -1.1289062, -1.9697266, -2.2851562, -1.4833984, -1.4775391, 2.2089844, 2.5800781, -1.6816406, -1.2255859, 2.2070312, -0.37280273, 2.109375, 1.3720703, 1.8369141, -1.5898438, 0.20825195, -0.46826172, 0.21362305, 1.8779297, -3.7460938, 2.8300781, 1.1972656, -0.6845703, -2.2207031, 1.1865234, 0.45166016, 2.4648438, 0.52001953, 1.9150391, 2.8242188, 1.3583984, 2.3320312, 1.2080078, 2.6894531, 1.2060547, -1.6015625, 0.39624023, 1.5332031, 0.83251953, 0.6196289, -0.65478516, 1.9208984, -0.5913086, -0.3869629, 0.3474121, -0.58691406, 1.2177734, -2.5546875, 0.6953125, 0.63134766, 2.28125, -0.46435547, -0.77441406, 0.31103516, 1.140625, 0.265625, -0.67578125, 1.7148438, 1.2539062, 1.9443359, -0.32885742, -0.65283203, 1.6552734, -4.2070312, 1.3935547, 0.54052734, -0.86865234, -1.5410156, -1.4453125, 0.92871094, 0.117492676, -0.30688477, 0.030410767, 3.4492188, 0.9897461, 1.4267578, -1.1972656, -1.5175781, 0.30371094, 2.1972656, -0.29638672, 0.22290039, 0.25512695, -0.46679688, -3.46875, -3.8164062, 3.3867188, 2.1171875, 1.4501953, 0.3474121, -1.2060547, 3.7246094, -0.14562988, 0.48266602, -1.4287109, -0.2783203, -0.4501953, -3.7539062, 1.015625, 0.13830566, -0.35131836, 1.7529297, -0.19189453, 0.46313477, 1.4648438, 0.7817383, 1.2646484, 0.96191406, 0.2446289, 1.6064453, 0.5913086, -1.8574219, 2.0039062, -0.546875, -1.3535156, -1.90625, 2.3574219, 1.2734375, -0.22521973, 0.19519043, -1.3154297, -0.33129883, -1.6005859, -0.18579102, 0.6826172, -2.8105469, -0.39746094, 1.4414062, 1.3486328, -1.6025391, -1.1269531, 2.5703125, 1.7070312, -0.48608398, 1.3701172, 3.1054688, -0.29858398, 2.0546875, -0.39868164, 1.8105469, -0.16467285, 1.4560547, 1.0849609, 0.09857178, -1.4121094, 0.34228516, 1.4755859, 0.16687012, -0.77978516, -0.7128906, -1.2246094, -1.1933594, -0.5761719, 0.7705078, -0.43188477, -1.6074219, 1.6230469, -1.5449219, -1.2792969, 1.9316406, -0.11669922, -0.044677734, -2.609375, -1.7519531, -1.5351562, 0.17114258, -1.1328125, 2.8164062, 4.2421875, -0.2619629, -0.3449707, -2.1464844, -3.0976562, -1.9414062, -2.2617188, 1.9052734, -0.8598633, -1.1416016, -1.0820312, 0.046966553, 1.7802734, -1.1259766, -0.68896484, 0.3828125, -2.4980469, 0.8852539, -0.5419922, 0.22509766, -0.67871094, 0.0038204193, 1.4980469, 2.2421875, 1.03125, 0.9121094, 0.21716309, 2.7695312, 0.3425293, -2.2773438, 0.09503174, 0.81347656, 0.016738892, -0.92333984, 1.2617188, 1.8574219, -0.19165039, -0.82910156, -0.5029297, -2.625]}, "B077JTCMKQ": {"id": "B077JTCMKQ", "original": "Brand: Weber\nName: Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates\n529 Square inches of cooking space over three burners. Left Table down width - 42 inches\n30, 000 BTU-per-hour input main burners with fuel gauge\nOpen cart design with six tool hooks and two large wheels.Built-in lid thermometer\n", "embedding": [-1.8876953, 0.3227539, 1.7109375, -1.046875, -1.1689453, 1.0146484, -0.18188477, -1.0273438, 0.6948242, 1.5976562, 2.8554688, 0.71728516, 0.796875, -3.7246094, 0.3371582, 0.59277344, 2.125, 0.49072266, -0.21459961, 0.54052734, 0.76171875, 0.059753418, 2.6464844, -1.6337891, 1.65625, 0.9511719, 4.1992188, -4.9101562, 0.18554688, -1.8623047, 1.6601562, 0.74658203, 0.9848633, 1.9140625, -3.796875, -0.83984375, -2.9960938, 1.4599609, -2.546875, 1.1113281, -0.06506348, -1.6972656, 0.72753906, -0.7060547, -1.78125, 0.58935547, 1.3076172, 0.7192383, -1.5, -0.21594238, 2.4257812, 1.3398438, -0.67626953, 0.9404297, -0.9970703, 2.3671875, -0.23181152, -1.3105469, 2.5429688, 0.1496582, 2.7617188, -0.41381836, -2.8027344, -1.7763672, -1.3017578, 0.27246094, 0.75097656, 0.51904297, -0.16894531, -0.38012695, 3.8691406, -1.8398438, -1.6826172, 1.3691406, 1.1416016, -2.2890625, -2.4941406, 2.7929688, 0.8911133, -1.4765625, -1.96875, 2.0332031, 0.8730469, -1.6376953, 0.015052795, 0.62158203, 0.3798828, -2.1289062, 2.2988281, 1.1777344, -0.48828125, 1.1816406, -1.5927734, -4.265625, 2.34375, -0.052947998, 1.7333984, 1.0605469, -0.07232666, 1.1279297, -1.3017578, 1.3681641, -0.8691406, -1.2070312, -2.4589844, -0.15270996, 1.9755859, 0.56884766, -2.578125, -0.60546875, -1.4462891, -0.55566406, 0.65771484, 1.53125, 0.81640625, 2.2851562, 0.5019531, 2.0253906, 0.7841797, 0.29516602, 3.109375, -0.9609375, 0.22521973, -0.44970703, -1.9892578, 0.07885742, 0.0015926361, 1.5478516, 3.8007812, -2.5292969, -1.0917969, 0.8432617, 3.609375, 0.19665527, -1.2402344, -1.4716797, -1.7851562, -1.0019531, -2.6816406, -0.57910156, -0.66015625, 0.60595703, 1.5322266, -1.3710938, -2.8457031, -0.21520996, 0.58154297, -0.17370605, 0.7138672, -1.1015625, -0.60253906, -1.5576172, -1.9052734, -1.5107422, 1.8769531, 0.051483154, -0.4260254, 0.24645996, 3.40625, 2.1484375, 1.5888672, -1.4072266, -2.1699219, -0.61572266, -0.2130127, 0.99609375, 1.5205078, 1.8105469, -0.42700195, 1.4785156, -0.1751709, 0.45239258, -0.09741211, -0.4501953, 0.74853516, -0.9897461, -0.40405273, 2.2011719, -0.20617676, -0.16442871, -0.5810547, -1.40625, -0.78271484, -0.22180176, 0.5996094, -0.98876953, -0.099487305, 0.036132812, 1.9941406, -1.6728516, 0.4736328, 0.07305908, 0.8491211, 0.09881592, 1.4042969, -1.1748047, -1.3154297, -2.2949219, 1.2304688, -0.34326172, -0.9633789, -0.8310547, 0.6538086, 0.27661133, -0.9926758, -3.078125, -0.45239258, -1.8759766, 1.4082031, 1.8662109, 1.9257812, -1.6210938, 1.0048828, -0.8769531, 1.328125, -2.3847656, 2.2539062, 0.81884766, 1.4404297, 1.6738281, -1.0371094, -0.33740234, 1.0107422, 2.5234375, 0.32299805, 0.15576172, 0.2866211, 0.40551758, -2.9238281, -0.72021484, 3.2480469, -0.10217285, -0.55029297, 0.14709473, 0.7290039, 3.2089844, 1.5458984, -0.46240234, -1.1640625, -0.62597656, 0.46728516, 0.9355469, -2.1015625, -0.86816406, -0.095703125, -0.26953125, -1.6875, 2.1621094, 0.9213867, 0.49902344, 1.5947266, 0.32177734, 1.6132812, 1.953125, -1.0244141, 0.7973633, -2.0625, 1.9140625, 0.062683105, -1.7158203, 1.9921875, 0.28271484, 0.3815918, -0.013511658, 0.6113281, -1.3017578, 1.9589844, 2.7851562, -0.9711914, -0.7475586, 0.5883789, 0.41552734, 0.61572266, -0.5, 2.1953125, 1.5654297, -1.5087891, 2.6601562, 0.12854004, 1.0117188, 0.27514648, -0.5214844, 1.3642578, -2.8632812, -0.107299805, 0.15576172, 0.95410156, -2.0292969, -2.140625, -0.22009277, 4.53125, -1.1923828, -2.8671875, 2.9082031, -2.6445312, 0.115722656, 1.8007812, 0.3857422, -0.7011719, 1.5595703, 3.0039062, 0.44921875, 1.5400391, 1.4482422, -0.36083984, -1.0761719, 1.4238281, -2.53125, 0.22912598, 1.2294922, -0.48413086, -0.7553711, -1.2373047, 1.0615234, -2.5488281, -2.0546875, 2.1386719, -2.4375, 0.91064453, -0.7661133, 2.0390625, -0.43481445, -0.81640625, 0.44970703, -1.4941406, 0.030548096, -1.9091797, 1.2236328, 0.31323242, -1.8066406, -1.4160156, 0.22912598, -1.6015625, -1.8837891, -1.4570312, -1.7421875, -1.2226562, -3.7011719, 2.5097656, -2.1894531, -0.640625, 1.1699219, -2.3398438, -0.49291992, 0.3256836, -3.0097656, -0.49121094, -0.67871094, -1.1396484, -1.5009766, 0.86816406, 0.6176758, -1.578125, -3.7324219, 0.0023612976, 0.45288086, 0.89746094, -0.10015869, -2.1269531, 0.2512207, 1.0673828, -0.2956543, -0.46875, 1.0732422, 1.4677734, -0.9897461, 1.2509766, -3.3496094, -1.2216797, -2.4726562, 0.5029297, 0.29345703, 0.9609375, -3.4355469, -1.8994141, -1.9326172, 0.2331543, 4.4296875, 0.44482422, 1.3320312, 0.9375, 0.88183594, 1.1630859, -1.8554688, -1.7685547, 0.9746094, 1.1103516, -1.2929688, -1.5361328, -1.1464844, -0.12011719, -2.7949219, 0.048217773, 0.27563477, -0.2536621, -0.35375977, -0.055389404, -2.2714844, -1.84375, -1.1142578, 0.11212158, 0.023147583, -1.2783203, -2.0039062, -0.8808594, -1.1865234, 0.074157715, -1.5458984, 1.3486328, -0.018447876, 1.3398438, 1.8769531, -0.27514648, 1.3271484, -0.9916992, -3.140625, 3.1738281, -0.31518555, -3.3417969, 1.6269531, -2.4296875, -2.3222656, -1.5566406, -0.1784668, 2.0292969, 2.3105469, 1.4970703, 0.5917969, 2.1875, -0.7128906, -1.2939453, 0.40063477, -1.1171875, 0.42211914, 3.4726562, -2.7226562, -1.7460938, 0.30639648, 0.62353516, -2.5449219, -1.21875, 1.703125, 2.0644531, 1.4814453, 1.3486328, 1.3388672, -0.96191406, -1.7451172, 1.3740234, 1.59375, -1.1660156, 0.6166992, -0.010383606, 1.9443359, -0.40844727, 0.94091797, 1.7861328, 0.68603516, 2.5292969, 2.2871094, 1.53125, -1.2226562, 0.32543945, 0.01914978, 1.0898438, -0.46948242, 1.5214844, -0.6347656, -0.08660889, -0.8803711, -1.1201172, -0.6689453, -0.9165039, -1.7177734, 2.7265625, 0.8613281, -0.5566406, 0.6455078, 1.1943359, 1.234375, 0.08544922, 1.0517578, -1.8847656, -1.375, 1.7421875, -0.5048828, -0.15112305, -1.6044922, 0.7006836, 0.31054688, -1.5761719, 0.6669922, 3.7285156, -1.59375, -1.5517578, 1.1259766, -0.30688477, -0.012451172, 0.9194336, 0.5541992, -0.38891602, 1.3027344, -2.2734375, 0.7919922, -0.31933594, -0.609375, -0.8017578, -0.20349121, 0.83203125, 0.42773438, 1.6357422, 1.1728516, -0.9692383, -2.5039062, 0.24108887, -3.9023438, -1.546875, 1.3710938, -2.6464844, -0.7910156, 2.5039062, 0.38452148, 0.65527344, -0.5136719, 2.890625, -1.578125, 0.60839844, 2.4609375, -2.7773438, -0.48657227, -4.2421875, -3.1347656, 0.6459961, -1.0849609, 0.067871094, 1.6240234, 0.32055664, 0.63623047, 3.5136719, 0.78125, -2.765625, -1.6318359, -0.5625, -0.33081055, -0.7133789, -0.26708984, 0.546875, -1.1767578, -2.5097656, -2.4121094, 0.29711914, 1.1230469, 1.2236328, 1.5439453, -2.9199219, -0.10406494, -1.9462891, -1.3007812, -1.8457031, -0.5336914, 1.3847656, -0.28125, 0.6088867, -2.4628906, 0.7792969, 1.0224609, -0.9140625, 1.9941406, 1.9179688, -0.35913086, -2.3144531, 1.46875, 0.6010742, 2.7929688, -0.37768555, -3.1933594, -0.6669922, 0.8666992, -0.28442383, -0.60009766, 0.6586914, 1.0107422, -0.70654297, 1.0517578, 1.6230469, 0.7548828, 0.49731445, 0.85791016, -3.0605469, 0.27441406, -0.8100586, -0.84228516, -1.96875, -0.59716797, 1.0332031, -1.1591797, 0.87109375, -1.8251953, 1.4453125, -0.9980469, 0.18859863, -3.6835938, 3.4375, 3.3515625, 2.5488281, 3.2460938, -1.6953125, -0.24047852, -0.3359375, -0.01651001, -1.1220703, 1.1308594, -0.2446289, -0.6357422, 2.4980469, 0.54052734, -2.0058594, -0.84472656, 0.5317383, -2.0429688, -0.23425293, -2.2109375, -0.9428711, -1.4443359, -0.10986328, 1.0185547, -0.5205078, 2.6289062, -1.2089844, -0.31958008, -0.23828125, 1.46875, -0.5751953, -0.671875, -0.43139648, 0.24865723, 0.42089844, 0.93847656, 0.64208984, -1.0517578, 0.45141602, -1.7207031, 1.0771484, 0.17114258, 1.1845703, 1.0146484, -0.30810547, -1.0253906, -1.3515625, 1.6308594, 2.2363281, 1.5537109, 3.671875, 0.8642578, -2.3886719, 1.7607422, 0.90966797, -3.546875, 1.6064453, 1.3076172, 0.18322754, 1.5488281, 0.7973633, -4.1679688, -0.73876953, 1.9814453, -0.5488281, 0.5097656, -1.7998047, 0.122558594, 1.8525391, -1.6220703, -0.20666504, -0.088134766, -0.6010742, 1.0654297, 1.9238281, 0.29418945, -1.71875, 1.3320312, 2.4375, -1.5722656, -1.5761719, 1.0888672, -1.8398438, 1.1464844, -1.7734375, 0.11578369, -2.1523438, -0.38989258, 3.3164062, 1.1142578, 1.0097656, 0.27148438, 1.953125, -2.0566406, 0.42944336, -2.4296875, 2.6191406, -1.765625, -0.1328125, 1.0400391, -3.2441406, 0.35253906, -1.8476562, -0.7739258, -0.57421875, 1.5332031, 1.1904297, 0.5336914, -0.99365234, 1.5439453, -1.0488281, -3.1035156, -1.0751953, -0.39916992, 0.10253906, 0.8491211, 1.5888672, -0.8984375, 1.6582031, 0.008308411, 0.36083984, -0.6645508, 0.66796875, -1.375, -0.03857422, -0.14050293, -0.32006836, -1.40625, 0.7739258, 0.87597656, 0.828125, 0.62890625, -1.6738281, -0.8310547, 0.56640625, -1.3037109, 0.37231445, 2.3066406, 1.9833984, 0.039642334, 0.9267578, 1.5517578, -2.875, 2.3105469, -1.9160156, -1.5283203, 1.0146484, -1.1435547, 1.8398438, -0.9243164, -1.2490234, -0.027999878, -0.1381836, 1.1630859, 1.3505859, -1.5605469, -0.8251953, 0.20410156, -0.56591797, -2.3964844, 0.4453125, 0.27368164, 0.8720703, 0.5214844, -1.5751953, -0.21350098, -0.5625, -2.25, 0.82421875, -2.5019531, -0.57421875, -0.95996094, 0.85302734, 1.4746094, 0.17663574, -0.5673828, 1.5, -0.44018555, -1.8408203, 0.7104492, -0.39282227, 4.5117188, 4.65625, -0.5473633, -0.92333984, -2.25, 0.51953125, 2.4101562, 0.90234375, -1.6005859, 0.44018555, -1.1689453, -0.11364746, -0.24951172, 1.3681641, 1.6123047, 0.12719727, 0.015541077, 1.7041016, 3.0117188, -1.4091797, 1.6210938, 0.9301758, 2.2246094, 0.2529297, 4.5429688, 0.46362305, -2.9375, 1.5683594, -2.3125, 1.6435547, -0.008308411, -1.1357422, 0.29248047, -0.24951172, -1.640625, -2.28125, -1.2695312, -2.0820312, 1.3173828, 1.8095703, -1.8779297, -1.2705078, 0.3605957, -0.4189453, 3.7558594, 1.1142578, 1.7373047, -1.8369141, -0.55078125, -0.22363281, 0.10882568, 0.16442871, -3.1640625, 2.4765625, 0.92529297, -1.5888672, -1.9287109, 1.8574219, 0.43847656, 2.2929688, 0.10211182, 1.9345703, 2.1367188, 2.5664062, 2.2363281, 1.3447266, 2.9667969, 1.0537109, -1.4052734, 0.61865234, 1.4326172, 0.7426758, 0.5683594, -1.2324219, 2.15625, -0.58984375, -1.25, -0.17651367, 0.058288574, 1.6767578, -1.8759766, 1.2109375, 1.5107422, 2.8144531, -1.4941406, -1.6142578, -0.06298828, -0.7529297, 0.8730469, -0.5229492, 1.9511719, 1.3652344, -0.18273926, -1.2841797, -0.7578125, 1.2519531, -4.6640625, 0.68603516, 1.3945312, -0.93652344, -1.265625, -1.5898438, 1.859375, 0.49804688, 0.13769531, -0.14111328, 3.9179688, 0.10235596, 0.92285156, -2.3417969, -1.8310547, -0.17419434, 2.6523438, -0.13964844, -0.71972656, 0.59375, -1.5136719, -3.9375, -3.2714844, 3.9394531, 3.0839844, 1.5683594, 1.4599609, -0.40942383, 3.5605469, 0.0026931763, 1.4511719, -0.35375977, -0.8696289, -0.20751953, -2.5605469, 0.113342285, -0.0075149536, -0.2467041, 1.4941406, 0.2758789, 1.0712891, 1.6259766, 0.9013672, 1.0449219, 0.7211914, 1.1152344, 2.3984375, -0.3137207, -1.2138672, 0.28515625, -1.4970703, -2.0996094, -2.328125, 2.8984375, 1.8505859, 0.09063721, 0.15930176, -0.9511719, -0.46435547, -1.9628906, 0.24560547, 0.26391602, -2.703125, -1.0273438, 0.2154541, 1.1318359, -1.4804688, -0.4567871, 2.0605469, 1.3125, -0.29418945, 1.7587891, 2.9667969, -0.36108398, 1.6347656, 0.7602539, 0.79541016, 0.075683594, 0.41430664, 0.1239624, -0.21020508, -1.2587891, 1.6298828, 1.7431641, -0.038024902, -1.0712891, -0.14489746, -1.5302734, -0.4555664, -0.24353027, 1.0625, 0.22583008, -1.125, 2.0722656, -0.30297852, -1.7705078, 1.6894531, -0.8017578, 0.7392578, -2.3867188, -2.2148438, -1.5253906, 0.16015625, -0.9848633, 0.9848633, 3.6171875, 0.6508789, -0.034942627, -2.1230469, -3.3496094, -1.0322266, -2.5898438, 2.2460938, -1.1103516, -1.6494141, -0.96191406, -0.625, 2.2363281, -1.3251953, -0.014709473, -0.4794922, -3.046875, 1.0869141, -0.26660156, 1.5253906, -0.77978516, 0.013046265, 1.7919922, 2.6132812, 1.5292969, 1.03125, 0.36914062, 3.1796875, -0.3515625, -2.2734375, -0.5644531, -0.20056152, 0.12182617, -0.18469238, 0.0848999, 1.6679688, 0.55322266, -0.53222656, 0.39892578, -2.7207031]}, "B004H4WWA6": {"id": "B004H4WWA6", "original": "Brand: Cuisinart\nName: Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red\nDescription: \nFeatures: Portable gas grill with 145-square-inch grilling area and foldaway legs\nCooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish\nPowerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate\nAluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure\nPronounced briefcase-style carrying handle; weighs 13.5 pounds\n", "embedding": [-1.8027344, 1.8535156, 3.0800781, 0.11444092, -0.92578125, -0.6279297, 1.4628906, -1.2226562, -1.0712891, 2.1601562, 1.2958984, -0.44140625, 0.81396484, -0.54345703, 1.4902344, -0.953125, 1.6181641, 0.78271484, 0.41552734, 0.28198242, 1.1435547, 0.7265625, 1.5957031, -0.89453125, 0.4638672, 0.57666016, 4.5859375, -2.9335938, 0.16442871, -2.7539062, 2.171875, -0.6826172, -0.11651611, 0.9160156, -1.5947266, -1.6152344, -0.91259766, 1.1855469, -1.7402344, 0.2800293, 0.3166504, -0.6958008, 1.6962891, -0.8466797, -2.859375, -0.3034668, 0.6855469, 2.4960938, -0.41455078, -0.5839844, 2.1835938, 0.12805176, -0.23999023, -0.20605469, -0.35913086, 1.6816406, -0.37036133, -1.7353516, -0.062316895, -0.08874512, 1.6611328, -0.92333984, -1.3496094, 0.12609863, -1.3662109, -2.4335938, -0.57177734, -0.046844482, 0.6425781, 0.7602539, 2.3242188, 0.37670898, -0.6245117, -0.008033752, -1.1464844, -0.95996094, -2.3710938, 2.5117188, 0.3852539, 0.44604492, -1.1621094, 2.3300781, 1.3720703, -2.3066406, -0.44433594, 0.3684082, -0.123168945, -1.3945312, 1.4609375, 1.9941406, -0.8720703, 3.5351562, -2.5292969, -3.4609375, 1.8232422, -0.12792969, -0.12249756, 1.7939453, 0.62060547, 1.9765625, 0.3725586, -0.68066406, -0.9765625, -0.921875, -0.97265625, -0.69091797, 1.3632812, 0.4428711, -3.5742188, 2.1679688, -1.3935547, -0.75439453, 0.8754883, 0.8442383, 0.41259766, -0.7758789, 0.27172852, 2.1445312, 1.5273438, 0.9892578, 4.4375, -0.50927734, 0.6464844, 0.13513184, -0.72802734, 0.6328125, -1.4902344, 2.7265625, 4.6875, -1.0849609, -1.1503906, 1.2470703, 1.8818359, 0.43432617, -2.4042969, -3.2480469, -0.9926758, -2.953125, -2.78125, 1.5664062, -2.2246094, 0.7861328, 1.5390625, -0.56347656, -3.8085938, -1.2949219, -0.14587402, 1.6152344, 0.24572754, -1.4042969, 1.0458984, -1.1933594, -0.49047852, -0.63378906, 2.3515625, -1.6289062, -1.6435547, -1.4306641, 3.0625, 0.4831543, 3.8691406, -2.3378906, -2.0429688, 0.6020508, 1.4501953, -0.91259766, 0.40649414, 2.6992188, -0.984375, 0.45996094, -0.26000977, -2.1835938, 0.58935547, 0.9863281, 0.51220703, -1.6113281, -0.053009033, 2.0859375, 1.5615234, -1.3564453, -0.47875977, -3.15625, 0.5957031, 1.2646484, 0.8701172, -1.5947266, 0.19995117, -0.4428711, -1.2558594, -2.3398438, 1.6660156, -0.609375, -1.1474609, -0.5415039, 0.8520508, -0.97753906, -0.8378906, -0.796875, 0.059326172, 0.29296875, -0.5566406, 1.1132812, -0.76171875, 0.8173828, -2.5449219, -3.4375, -0.23510742, -1.2910156, 0.7939453, 2.953125, 1.8056641, -1.2851562, 1.9873047, -1.0566406, 0.22241211, -2.1679688, 1.703125, -0.421875, 1.2958984, 1.5800781, -0.65527344, -0.7553711, -0.1418457, 2.4101562, 0.73046875, 1.2285156, 0.0035495758, 0.35791016, -0.73779297, -1.2949219, 3.1367188, -0.47143555, -0.95654297, -0.06149292, 0.07928467, 2.4335938, -0.7817383, 0.24914551, -2.0214844, 0.5332031, -0.61279297, 0.21606445, -1.1298828, -1.3515625, -0.8305664, 0.3779297, -3.0742188, 3.1230469, 2.4628906, 0.72216797, -1.109375, 0.7807617, -0.25439453, 1.4746094, -0.48046875, 1.6796875, -0.26293945, 1.2919922, -0.9033203, -2.6152344, 0.5961914, 1.0126953, 0.44213867, 1.0175781, 1.1835938, -0.8540039, 3.5058594, -0.31518555, -1.3535156, -0.9628906, 1.5664062, 0.63427734, 0.8286133, 0.62402344, 1.3427734, -0.2709961, -1.1494141, 1.9003906, -0.77685547, 1.3730469, 0.6508789, -0.86816406, 1.6162109, -2.3671875, -0.92822266, -0.19506836, 0.9790039, -0.24291992, 0.8779297, 1.1787109, 4.5976562, -0.6660156, -2.5351562, 4.4921875, -1.1074219, -0.024749756, 1.0009766, -0.44921875, -0.85302734, -0.51660156, 2.5898438, 0.37109375, -0.46411133, 2.2617188, -1.2607422, -1.3779297, 0.024124146, -1.4765625, -0.47021484, -0.15856934, -0.69091797, -0.02960205, -2.0820312, 2.0410156, -0.30200195, -1.5117188, -0.42651367, -1.8896484, 1.2529297, 1.0185547, 1.9003906, 1.6601562, -0.8105469, -0.67578125, -0.6723633, 1.2539062, -1.0253906, 0.63916016, 0.7675781, -1.9277344, -0.15612793, 1.0449219, 2.0117188, -3.1386719, -3.3125, -0.48828125, -1.4482422, -3.4023438, 1.2470703, -0.9663086, -1.5390625, 0.6328125, -1.1259766, -0.51708984, -1.2001953, -1.9511719, -0.86865234, 0.8144531, -1.7089844, -1.4628906, -0.15283203, -0.08502197, -0.40454102, -4.703125, 0.3461914, 0.8364258, 0.7324219, 0.47460938, -1.09375, -0.9692383, 0.021087646, -0.041656494, -0.16784668, 0.9033203, -0.2043457, -3.1679688, 0.3071289, -2.1757812, 0.2746582, -2.9492188, -1.0439453, 0.19152832, 0.5913086, -3.5878906, -0.45874023, -0.08129883, -0.38842773, 3.8515625, -1.1376953, 1.4853516, 1.5146484, 0.8774414, 1.4472656, -1.5996094, -2.9941406, -1.453125, 0.5991211, -0.38671875, -2.5136719, -2.5566406, -0.57373047, -0.609375, -0.14172363, -0.84521484, 0.7602539, -2.2949219, 2.0839844, -2.7480469, -0.5600586, -0.8569336, 0.46972656, 0.21533203, -0.81152344, -1.7763672, -0.4387207, -1.6689453, 0.8774414, -0.50927734, 0.89746094, 0.081726074, 1.2783203, 0.35131836, 0.047210693, -0.43701172, -0.31347656, -4.0664062, 1.7929688, -0.16430664, -1.1523438, 1.0966797, -0.37963867, -2.1796875, -2.71875, 0.22143555, 2.34375, 1.8818359, 2.453125, 1.4404297, 0.09680176, 0.80126953, 1.6933594, 0.09265137, 0.093322754, -0.28295898, 3.1835938, -1.9345703, -1.0332031, 0.6323242, 2.7792969, -2.0117188, -1.4804688, 2.3691406, 1.1679688, 1.3798828, 1.2714844, 2.3320312, 0.015312195, -1.1962891, 1.8183594, 1.3066406, 0.87939453, -1.7275391, 0.48510742, -0.62597656, -0.34472656, 2.6523438, -0.40478516, 0.39990234, 2.3457031, 1.0908203, 0.7871094, -1.9492188, 0.7885742, -0.56884766, 0.19580078, -0.029663086, 2.0527344, -0.94189453, -0.37060547, 0.5258789, -1.7060547, -0.47607422, -1.2802734, -0.33081055, 1.65625, 0.2890625, 0.26708984, -0.56396484, 0.7109375, 2.1738281, 0.046142578, 0.18920898, 0.6538086, 0.01864624, 0.8925781, -2.4433594, -2.1445312, -0.9892578, 1.421875, -1.1191406, -2.5507812, 1.6064453, 1.7333984, -1.5185547, -2.0683594, 0.6743164, -0.37475586, -1.2587891, 1.1923828, 0.10412598, -1.7695312, 3.0800781, 0.1508789, 0.37109375, 1.6982422, -0.7265625, -0.4650879, -0.59033203, -0.5595703, 0.3930664, 0.5395508, 0.734375, 0.2692871, -3.8261719, 0.67578125, -2.9824219, -0.29663086, -0.6713867, -1.0927734, -0.8676758, 1.2177734, 1.4775391, 2.3632812, -0.9946289, 2.4628906, -0.5, -1.1083984, 1.0732422, -2.8691406, -0.90234375, -3.5351562, -3.8261719, 1.2148438, -0.8300781, -0.6845703, 3.2988281, -0.07244873, 0.7055664, 3.0136719, -0.29589844, -2.6601562, -2.4277344, -2.25, 0.3701172, -2.0429688, 0.24121094, 0.58154297, -0.27612305, -1.4003906, -1.3574219, -0.1373291, 0.18518066, 1.3134766, 2.3203125, -2.4199219, 1.5029297, -1.6210938, 0.06732178, -0.87353516, 0.046661377, 1.6669922, -1.2148438, -0.10443115, -1.6503906, 0.98828125, 1.2451172, -1.3242188, 0.8725586, 1.9169922, 0.64160156, -1.5585938, 1.3535156, 1.453125, 2.4941406, -0.07788086, -2.4082031, -2.2363281, 0.29516602, -0.053222656, 0.7973633, -0.5522461, -0.73828125, -2.1503906, -0.078125, 1.6972656, 2.0175781, 0.9736328, -0.4111328, -2.0195312, -0.27612305, -0.16955566, -2.5996094, -0.91796875, -1.0566406, 1.0703125, 0.37329102, -1.0595703, -1.5683594, -0.32348633, -0.7480469, -0.92578125, -0.8413086, 3.9453125, 0.4814453, 1.7197266, 2.5859375, -0.3215332, -0.16503906, 1.3398438, 0.13391113, 0.42285156, 1.0214844, 0.025558472, 1.5507812, 0.8017578, 0.7807617, -2.3417969, 0.13623047, 1.09375, -2.0097656, -0.04046631, -2.1796875, 0.8754883, -1.2285156, -1.4375, 0.4946289, -1.1738281, 3.0800781, -0.7133789, -1.2294922, -0.7675781, 0.18005371, -1.0693359, -0.06298828, -0.50390625, 0.9091797, 0.65771484, 0.18640137, 0.9692383, -0.87890625, -0.19177246, -0.5419922, 1.8964844, -0.48364258, 0.35961914, -0.15222168, -1.2998047, -2.4355469, -2.0664062, 0.6855469, 2.390625, -0.25439453, 3.5, 0.16918945, -1.2353516, 1.8496094, 0.72314453, -1.4775391, -1.3505859, -0.28271484, 0.7128906, 0.92822266, -0.70410156, -3.6074219, -0.3774414, -0.120788574, -1.8310547, 0.9946289, 0.0009994507, -0.049468994, -1.5039062, -1.4091797, -1.6865234, -0.59716797, -2.0273438, -1.4755859, -2.0410156, -0.12011719, -1.1298828, 0.4567871, 3.4765625, 0.46704102, 0.12902832, 2.1992188, -0.68652344, 1.7011719, -0.8466797, 0.32299805, -2.5585938, 1, 2.7070312, 1.1572266, 1.0009766, 0.016571045, 0.54052734, -1.5595703, 0.57421875, -2.6953125, 2.9570312, -1.5185547, -0.5600586, 0.5366211, -0.9145508, 1.2929688, -2.9765625, 0.027420044, 0.65722656, 3.2324219, 2.390625, -0.47998047, -2.4082031, -0.4597168, -1.8837891, -3.6054688, -1.0351562, 0.017349243, 0.8769531, -0.2854004, 1.8427734, -0.5878906, 0.020874023, 0.44140625, 0.50341797, -1.5712891, -0.31713867, -1.0400391, -2.0332031, 0.050964355, 0.017669678, -1.3671875, 1.8496094, 2.1640625, -0.15844727, 0.039093018, -1.9199219, -2.0996094, 1.3564453, -2.8378906, -1.1552734, 3.03125, -0.7294922, -0.34545898, -0.64501953, 2.328125, -2.3183594, 1.6513672, -1.0712891, -1.3808594, 0.6591797, -0.08892822, 1.5917969, -0.84228516, -2.2753906, 1.0097656, -1.46875, 3.4589844, 0.72509766, 0.34277344, -0.5595703, 1.8378906, 0.44067383, -0.34033203, 1.2724609, 0.2927246, 0.8769531, 1.8916016, -2.6601562, -0.1204834, -0.7910156, -1.6601562, 0.17895508, -1.1162109, 0.17199707, -0.8383789, 0.73535156, 0.69970703, 0.070373535, -0.97265625, 0.091796875, 1.0332031, -0.18945312, 1.6044922, -1.2207031, 1.8222656, 3.2675781, -0.7109375, -2.1269531, -2.9023438, 1.3466797, 1.1601562, 0.5571289, -0.55322266, -2.0371094, -1.0947266, 0.30371094, -1.2919922, 1.3671875, 2.6171875, -0.7060547, -0.5126953, 1.4746094, 2.8339844, -0.70166016, 0.29858398, 1.9472656, 1.9853516, -1.3476562, 4.4179688, -0.77490234, -1.5527344, 1.3164062, -1.3193359, 1.9873047, -1.2109375, -0.54296875, 0.4831543, -1.7480469, 0.011520386, -2.6660156, -1.9130859, -3.0625, 1.5810547, 1.0185547, -1.1533203, 0.32226562, 3.4863281, 0.034698486, 1.6162109, 1.5029297, 0.28149414, -0.0597229, 1.7246094, -1.0771484, -0.5810547, 1.3349609, -2.8398438, 2.9707031, 2.3828125, -0.92089844, -1.1259766, 4.3945312, 1.5458984, 2.71875, 2.4882812, 1.4287109, 2.703125, 1.3876953, 3.6621094, 0.7861328, 1.9199219, 2.34375, -0.064819336, 0.8989258, 3.8847656, 1.7734375, -0.08660889, -1.5195312, 2.1757812, 0.6689453, -2.2324219, -1.515625, 1.0927734, 0.55078125, -3.1582031, 1.8369141, 1.0488281, 1.2353516, -2.8730469, 0.2770996, -0.54833984, 0.06762695, -0.1694336, -0.7265625, 1.4316406, -1.0097656, 0.053955078, -1.4033203, 0.7558594, 0.6269531, -2.2460938, 0.96728516, 0.45263672, -1.7246094, -1.6464844, -0.53808594, 0.87353516, 0.52246094, 0.69091797, 1.4287109, 2.7890625, 1.4589844, 2.2441406, -1.0087891, 1.7060547, -0.21008301, 2.5664062, -0.010498047, -0.21020508, 1.5634766, -1.9707031, -1.0722656, -2.4082031, 1.3125, 1.2558594, 1.2246094, 0.80029297, -1.4003906, 1.4208984, 1.8769531, 1.4755859, -0.9394531, 2.1386719, -1.0888672, -4.0703125, -1.5683594, -0.19213867, -0.038757324, 3.1679688, 1.0605469, -0.8803711, 3.46875, 1.1132812, 2.7402344, 0.64501953, 0.45385742, 0.953125, 2.3496094, -1.5273438, 0.1817627, -0.9638672, 0.0635376, -0.016052246, 2.7617188, 2.3847656, -0.45703125, 0.18615723, -0.8227539, -0.83740234, 0.5073242, -0.27026367, -0.5786133, -1.6699219, -1.4306641, 0.15710449, 1.9365234, -1.0888672, -1.1230469, 2.4785156, 0.4440918, -1.8896484, 0.6220703, 0.09320068, 0.23327637, 2.3027344, -1.1396484, 0.023590088, -0.9838867, -1.4296875, 1.2744141, 0.09710693, -1.6210938, 0.27026367, -0.48046875, 0.49829102, -0.74853516, -0.50439453, 0.51416016, -0.9291992, 0.2253418, 0.36401367, -2.6796875, -1.8310547, 0.39038086, -0.640625, -0.0077705383, 2.5683594, -0.9145508, 0.22265625, -3.2128906, -1.3398438, 0.6225586, -1.7724609, -0.24658203, 0.765625, 4.1445312, 1.1171875, 1.2666016, -2.96875, -2.9628906, -0.24255371, -0.88671875, 3.2148438, 0.18481445, -1.0546875, 1.1318359, 0.6982422, 1.6767578, -1.03125, -0.54003906, 0.1953125, -0.5878906, 0.66845703, -1.1748047, 1.2226562, 1.8164062, -0.2578125, 0.59521484, 2.0332031, 0.8779297, 0.3527832, 1.6904297, 1.9277344, -0.19812012, -1.9511719, 2.0976562, -1.1640625, 0.2788086, 0.76416016, -1.1044922, 2.3242188, 0.8066406, 0.3876953, -1.3476562, -3.3515625]}, "B00FDOON9W": {"id": "B00FDOON9W", "original": "Brand: Weber\nName: Weber 53060001 Q2000 Liquid Propane Grill,White\nDescription: \nFeatures: One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D\nPush-button ignition and infinite control burner valve settings\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\n", "embedding": [-0.41601562, 0.59277344, 1.6972656, -0.29467773, -1.8564453, 0.49902344, -0.2956543, -0.9506836, -0.35205078, 1.3359375, 2.9863281, 0.12420654, -0.13439941, -3.5703125, 1.0566406, 0.46240234, 2.7363281, 1.7177734, 0.8442383, -0.14196777, 0.8515625, 0.7373047, 1.3447266, -1.8798828, 1.9472656, 1.6113281, 5.0078125, -5.3789062, -0.9770508, -2.28125, 0.1484375, 0.9560547, 0.13696289, 0.81884766, -2.9667969, -0.12585449, -3.8398438, 1.3300781, -2.7714844, 1.0371094, -0.4008789, -1.9306641, 0.7158203, 0.10028076, -1.3994141, 0.78027344, 0.83935547, -1.2558594, -0.37036133, -0.41967773, 2.7578125, 0.9824219, -0.007499695, 0.87841797, -0.39819336, 1.8574219, -0.3161621, -1.3056641, 1.0722656, -0.40942383, 2.6933594, -0.56884766, -2.9648438, -0.5571289, -0.93115234, -0.21008301, -1.1552734, -0.8623047, 1.7265625, 0.4567871, 4.1132812, -1.9345703, -1.3720703, 0.48217773, 1.3388672, -1.1191406, -1.9892578, 3.2910156, 1.5488281, -0.8208008, -0.9135742, 2.6777344, 0.89501953, -2.140625, 0.10961914, 0.58251953, 0.4428711, -2.1953125, 2.0625, 2.0917969, 0.25463867, 1.3544922, -2.2734375, -4.0117188, 1.3408203, -0.28442383, 1.3925781, 1.0830078, 0.115356445, 0.7158203, -1.3212891, 1.1728516, -1.3564453, -1.9892578, -2.7539062, -0.5986328, 1.1318359, 0.10986328, -3.1660156, -0.87646484, -1.4638672, 0.78515625, 1.3652344, 1.4990234, 1.4697266, 1.109375, 0.79052734, 2.8769531, 0.7421875, 0.8955078, 2.8164062, -1.6943359, 0.29833984, -1.1513672, -0.9560547, 0.5336914, -1.1943359, 0.76660156, 2.7480469, -1.7148438, -1.0234375, 0.21875, 4.140625, 0.70751953, 0.24267578, -0.70996094, -1.2773438, -0.7397461, -1.8398438, -1.0390625, -1.0898438, 0.49487305, 0.81347656, -0.7138672, -4.3242188, -1.3125, 0.37524414, 1.1103516, -0.31762695, -2.0351562, 0.056518555, -1.5361328, -0.89208984, 0.049682617, 1.3046875, 0.49682617, -1.5068359, 0.4387207, 3.625, 1.8261719, 1.5869141, -0.16235352, -0.6196289, 0.64941406, 0.047210693, 0.8251953, 1.8183594, 1.6689453, -0.10900879, 1.7021484, -0.43164062, -0.7602539, -0.26098633, 0.8066406, 1.328125, -1.3378906, -0.14672852, 1.8183594, -0.4831543, -0.4711914, -1.578125, -1.9492188, -0.30615234, -0.8017578, 0.68408203, -0.50146484, -0.62158203, -1.4091797, 1.7597656, -1.8974609, 0.7524414, -0.046020508, 1.4267578, -0.6538086, 0.1977539, -0.6269531, -1.3007812, -2.0742188, 1.0625, -0.09197998, -0.64941406, -1.4697266, 0.9160156, 0.79785156, -0.13500977, -2.359375, -0.30493164, -2.1542969, 2.03125, 1.1669922, 1.9667969, -1.609375, 1.6357422, -1.3544922, 0.06616211, -2.4589844, 2.4570312, -0.028503418, 0.059417725, 2.2167969, -1.7988281, -0.04812622, 0.045440674, 2.1347656, 0.8955078, -0.093688965, 0.99658203, 0.19689941, -3.2558594, -0.5917969, 3.203125, 0.6074219, -0.41503906, -0.3876953, 0.68115234, 2.4589844, 1.2089844, -0.99365234, -0.10015869, -0.6123047, 0.85839844, 0.9873047, -1.9238281, -1.8544922, 0.4091797, 0.38427734, -2.9863281, 2.09375, 0.6816406, 0.22460938, 0.29345703, -0.042388916, 0.75439453, 1.1181641, -0.8051758, 0.9399414, -1.9052734, 1.2929688, 0.17858887, -3.375, 2.1035156, 0.4963379, -0.20812988, -0.65185547, 1.2128906, -1.4169922, 2.4589844, 2.0976562, -1.6875, -0.89404297, 0.33642578, 0.6850586, 0.28466797, -0.84472656, 0.9267578, 1.5751953, -1.9941406, 1.9433594, 0.12988281, 0.82666016, 0.9453125, -0.94970703, 1.6386719, -2.9042969, -1.3535156, 0.8598633, 1.0439453, -1.0332031, -2.9882812, 0.14172363, 3.3046875, 0.33520508, -2.6582031, 3.0761719, -2.4140625, 0.796875, 2.2265625, -1.1191406, -1.0927734, 0.8691406, 2.3339844, 0.2286377, 0.6904297, 0.95458984, -0.29003906, -1.8349609, 0.8198242, -3.9238281, 1.2207031, 1.8974609, -0.67041016, -1.2421875, -2.2597656, 1.6416016, -2.9765625, -1.6171875, 1.7705078, -4.0273438, 1.515625, -1.6601562, 2.0429688, 0.43920898, -1.2675781, -0.390625, -1.6679688, 0.030166626, -1.2158203, 1.0527344, 0.5488281, -2.3730469, -0.9663086, -0.94433594, 0.22814941, -1.9814453, -1.6523438, -1.8720703, -0.77001953, -2.6230469, 1.5039062, -1.1757812, -0.4074707, 2.4199219, -3.3066406, 0.90722656, 1.1113281, -3.3691406, -0.79003906, -1.5419922, -1.3125, -1.1142578, 0.6591797, 1.1494141, -2.2460938, -3.9042969, 0.59277344, 0.13806152, 0.44384766, -0.8339844, -0.87353516, -0.39648438, 0.73876953, -0.8730469, -0.65478516, 0.78466797, 1.3164062, -0.60058594, 1.6738281, -1.9365234, 0.17321777, -2.1621094, 0.7583008, -0.07562256, 1.3203125, -3.3515625, -1.8339844, -0.44384766, -0.95996094, 3.9082031, 0.6074219, 1.7255859, 0.49780273, 0.71533203, 1.1611328, -0.6333008, -1.765625, 1.6416016, 0.81152344, -1.8251953, -1.4257812, -2.9238281, -1.0410156, -2.7714844, 0.49853516, 0.44702148, -0.20495605, -0.90185547, -0.8120117, -1.2060547, -0.8334961, -0.13574219, 0.16772461, -0.9477539, -1.7285156, -2.8027344, -0.62841797, -1.4716797, 1.2636719, -1.1035156, 1.5478516, 0.7939453, 1.6210938, 2.21875, -0.5332031, 1.1796875, -1.25, -4.46875, 4.2148438, 0.7368164, -2.6445312, 1.3740234, -2.6640625, -2.4804688, -1.6425781, -0.33007812, 2.1113281, 3.0410156, 2.0957031, 1.7714844, 1.5224609, -0.52490234, -1.3623047, -0.097473145, -1.1767578, 0.7138672, 2.2519531, -3.125, -2.2089844, 0.7470703, 1.8046875, -3.1523438, -1.4189453, 2.34375, 1.8681641, 2.2363281, 2.7695312, 1.5996094, -0.40795898, -0.20092773, 1.2021484, 1.4228516, -0.7314453, -0.07879639, -0.14025879, 1.4375, -0.22314453, 1.3095703, 2.3242188, 0.8046875, 1.6552734, 3.1601562, 1.9179688, -0.7001953, -0.46655273, -0.21594238, 1.3466797, 0.13623047, 1.8466797, -0.8588867, 0.64501953, -0.8857422, -1.1464844, -0.10668945, -0.42041016, -1.2119141, 2.7988281, 0.84375, -0.7495117, 1.4160156, 2.0429688, 1.2148438, -0.06939697, 0.18981934, -0.8515625, -0.35791016, 2.3945312, -0.38085938, 0.38720703, -1.1484375, 1.0527344, -0.85058594, -2.09375, 0.0657959, 2.8945312, -1.9931641, -1.8925781, 0.22558594, -1.3945312, -0.49902344, 1.9599609, 0.42163086, -0.59375, -0.02558899, -2.0957031, 1.3544922, -0.24389648, -1.2421875, -0.85302734, -1.3173828, 1.0478516, 0.79589844, 2.2167969, 2.2890625, 0.7114258, -3.1132812, -0.06530762, -3.609375, -2.0546875, 1.2636719, -2.1679688, -0.6508789, 1.7421875, 0.18896484, 1.5703125, 0.44140625, 2.4628906, -1.4023438, 0.5595703, 1.3789062, -1.9345703, -0.5878906, -3.6269531, -4.0273438, 0.14941406, -1.7753906, -0.28881836, 1.3320312, 0.062927246, 0.22973633, 1.7998047, 0.84277344, -1.7138672, -0.7753906, -2.0644531, 0.37280273, -0.81591797, 1.8466797, 0.26464844, -0.7998047, -2.2011719, -2.2089844, 0.45996094, -0.2376709, 0.6977539, 1.9248047, -4.0273438, -0.021331787, -1.9765625, -0.69091797, -1.4794922, 0.20532227, 1.6386719, 1.2167969, -0.22216797, -2.0625, 1.6142578, 1.3417969, 0.11505127, 2.796875, 2.1308594, 0.03744507, -3.8066406, 0.19970703, 1.8955078, 2.9023438, -0.60595703, -1.625, -0.71972656, 1.1845703, -1.1728516, 0.50927734, -0.0869751, 1.0751953, -1.2353516, 0.7583008, 1.7294922, 1.6289062, 0.69091797, 0.2553711, -2.6113281, 0.6660156, -0.24206543, -2.4492188, -2.0996094, 0.38549805, 1.09375, -1.9765625, -0.11053467, -1.8330078, 0.3623047, -1.0136719, -0.89941406, -3.6152344, 3.4667969, 4.3007812, 1.9853516, 2.6523438, -1.1787109, 0.73291016, -0.8535156, -0.47387695, 0.45166016, 0.06451416, -0.8383789, -0.05947876, 2.7363281, 1.0996094, -1.5917969, -0.2919922, 1.0888672, -1.7460938, 0.20373535, -2.4824219, 0.65625, -0.7705078, -0.02218628, 0.4946289, -0.6855469, 2.2167969, -0.3894043, -0.22717285, -0.57373047, 0.7939453, -1.5126953, 0.24450684, 0.29003906, 0.1517334, 0.1373291, 0.921875, 0.98095703, -0.55078125, -0.19396973, -0.84716797, 0.5810547, -1.3261719, 0.08459473, -0.1217041, 0.82714844, -0.5493164, -0.9370117, 1.4267578, 1.5224609, 1.2011719, 2.828125, 2.28125, -1.7568359, 1.4804688, 1.4648438, -1.8144531, 1.8095703, 1.1699219, -1.1240234, 2.8769531, 0.50146484, -4.0429688, -0.4650879, 1.125, 0.028823853, 0.9560547, -1.1748047, -1.1162109, 1.4560547, -1.9101562, -1.0019531, -0.11407471, -0.9199219, 0.73095703, 0.5102539, -0.0546875, -1.2041016, 1.2919922, 2.7773438, -1.2988281, -1.6542969, 0.60595703, -1.3105469, 0.16906738, -1.0605469, -1.3632812, -1.8925781, -0.9716797, 2.6816406, 0.87402344, 1.2373047, 0.46118164, 1.890625, -0.8857422, 0.036010742, -1.3271484, 2.0546875, -2.5, -0.9526367, 1.0126953, -3.9023438, -0.17663574, -2.2910156, -0.75341797, -0.5805664, 1.4101562, 1.7783203, 0.65283203, 0.26220703, 1.6875, -2.2089844, -3.7890625, -0.89160156, -0.1619873, 0.37646484, 0.6660156, 1.4833984, -1.0068359, 0.84375, -0.7402344, -0.025436401, -1.0244141, 0.36694336, -0.9746094, -0.16992188, 0.3388672, 0.18395996, -1.3808594, 0.296875, 1.1474609, 1.7685547, 0.27148438, -1.3583984, -0.60839844, -0.051971436, -0.5810547, -0.27612305, 2.5996094, 1.9931641, -0.7167969, 0.44189453, 1.7392578, -3.7011719, 2.8144531, -2.0664062, -1.7109375, 1.0009766, -0.6152344, 0.52441406, -1.0576172, -0.76220703, 0.36938477, 0.109802246, 2.1191406, 1.40625, -0.79833984, -1.3574219, -0.7236328, 0.8457031, -0.07647705, 0.35424805, 0.8442383, 0.36791992, 2.5761719, -1.9912109, -1.015625, -1.8066406, -2.4023438, 0.8696289, -2.3847656, -1.2011719, -1.3886719, 0.36450195, 1.4882812, 0.5878906, -1.0224609, 2.0996094, -0.9213867, -1.2148438, 1.2011719, -0.51904297, 4.921875, 3.8691406, -1.4033203, -0.59033203, -1.8466797, 0.9506836, 1.5703125, 0.31835938, -0.39990234, -0.5761719, -0.116882324, -0.48168945, -0.001364708, 1.7255859, 1.2080078, 1.1005859, -0.08679199, 1.7294922, 3.4785156, -1.671875, 1.8007812, 0.6484375, 1.5058594, -0.2668457, 3.8574219, 0.80566406, -2.6523438, 1.2441406, -2.6523438, 1.9511719, -1.0654297, -1.4599609, -0.35302734, -0.7626953, -1.5546875, -2.2167969, -1.6220703, -1.6660156, 2, 1.4365234, -2.4199219, -0.83447266, 1.4199219, -0.10119629, 2.6269531, 1.9365234, 2.4824219, -1.6337891, 0.58984375, 0.43188477, 0.10357666, 2.3984375, -4.2929688, 1.9648438, 1.1503906, -0.5991211, -2.3984375, 1.4726562, 1.0019531, 2.5605469, 0.57177734, 2.3203125, 2.1679688, 1.8466797, 2.15625, 1.140625, 3.0175781, 1.3759766, -1.0136719, 1.6181641, 1.765625, 0.5732422, 0.87353516, -2.0898438, 1.2890625, -0.93310547, -0.77490234, 0.10736084, -0.6464844, 0.9121094, -1.5634766, 0.34301758, 0.08947754, 1.6552734, -0.72998047, -0.5996094, 0.74072266, 0.61083984, 0.24157715, -0.90722656, 2.7753906, 1.5195312, 0.7426758, -0.18493652, -0.46899414, 1.3847656, -4.3242188, 1.4589844, 0.33935547, -1.4238281, -0.73828125, -2.5546875, 2.0351562, 0.17224121, -0.49267578, -0.04345703, 3.6894531, 0.9873047, 0.8652344, -1.5849609, -0.76904297, 0.47314453, 3.6035156, -0.17529297, 0.46069336, 0.12756348, 0.2854004, -4.3242188, -3.9375, 2.9667969, 1.9941406, 0.9526367, -0.121032715, -0.7548828, 3.4472656, -0.69384766, 0.12683105, -1.2216797, 0.7373047, -0.61572266, -3.9863281, 0.8574219, 0.037109375, -0.39257812, 1.2216797, 0.3701172, 0.9350586, 1.4306641, 1.3125, 1.4199219, 0.8515625, 0.77490234, 2.1210938, 1.265625, -2.0722656, 2.2910156, -0.1517334, -1.5859375, -1.1523438, 2.6210938, 1.2080078, -0.3996582, 0.27172852, -1.1308594, 0.1574707, -1.5302734, 0.12420654, -0.13195801, -2.21875, -0.36132812, 1.0859375, 1.2578125, -1.3867188, -0.66015625, 2.9921875, 2.2167969, -0.81884766, 0.5541992, 2.8613281, -0.44189453, 1.25, -1.0419922, 0.8613281, -0.2763672, 1.3896484, 0.6230469, 0.18847656, -1.2294922, 0.6982422, 1.6914062, 0.32836914, -0.83691406, -0.21130371, -1.5712891, -1.3691406, -0.80029297, 0.69091797, 0.5131836, -1.6962891, 3.125, -0.9970703, -0.87841797, 1.7519531, -0.24926758, -0.41552734, -2.2109375, -2.0273438, -1.1152344, 0.04647827, -0.9272461, 2.6757812, 3.9414062, -0.38867188, -0.0026187897, -1.8398438, -2.9453125, -1.6552734, -2.8125, 2.4863281, -1.0107422, -1.6181641, -1.3310547, 0.0259552, 1.25, -1.0341797, -0.026794434, 0.2685547, -1.8681641, 1.0253906, 0.27246094, 0.2927246, -0.9897461, -0.21350098, 1.7890625, 2.9902344, 0.62939453, 0.7597656, 0.23791504, 2.8847656, 0.16235352, -2.2539062, 0.24731445, 0.8647461, -0.4272461, -1.421875, 0.9760742, 2.4277344, -0.33618164, -0.59375, -0.05810547, -3.2265625]}, "B083QN4Z6H": {"id": "B083QN4Z6H", "original": "Brand: Generep\nName: Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack\nDescription: \nFeatures: Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding.\nThis propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter.\nHigh-quality brass construction gas gauge meter, you'll never have to worry about leaks or running out of propane again.\nMonitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nComing With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.\n", "embedding": [-1.9990234, 1.9482422, 1.9238281, 1.7734375, 0.42871094, 0.36767578, 1.1679688, -1.9824219, 2.8535156, 0.1829834, 1.4580078, -0.1315918, 1.9853516, -1.1015625, 1.6171875, 0.9555664, 0.85253906, 1.5146484, 0.43017578, 2.2617188, 1.6386719, 0.5751953, 1.9267578, -0.81347656, 2.0839844, 0.25512695, 2.7265625, -3.0820312, 0.07476807, -0.5654297, 2.3007812, -0.5161133, 0.46655273, 0.8535156, -1.6660156, -1.7324219, -0.26049805, -0.98535156, -3.703125, -0.84033203, -1.6113281, 0.9770508, 1.4335938, 0.0041007996, -1.0078125, -0.99072266, -0.1965332, 0.3305664, -1.0214844, -0.63671875, 1.1621094, 2.5488281, -1.0185547, -0.3071289, 0.33081055, 0.69140625, 1.6591797, -0.76464844, 1.1396484, 2.1660156, 1.3173828, -0.78027344, -2.3964844, -0.42919922, -0.15710449, -0.0960083, 0.050994873, -0.7651367, 1.2255859, 2.1386719, 2.2792969, 0.54785156, 0.72265625, -1.2070312, -1.4628906, -0.19116211, -0.2253418, 0.671875, 1.6005859, 1.3251953, -1.6728516, -0.03778076, 0.21313477, -2.4375, -0.025817871, -0.30419922, -0.4091797, 0.9091797, 0.5810547, 0.45898438, -1.0263672, 2.328125, -2.7890625, -3.2636719, 1.8027344, -0.27783203, -0.47583008, 0.1459961, 1.40625, 2.3789062, -1.2695312, -0.6845703, -0.8339844, 1.8740234, -3.2285156, -0.8720703, 0.7919922, 0.9711914, -3.1542969, 0.43847656, 1.0498047, -0.20629883, 1.6455078, -0.72753906, -0.4243164, -0.7397461, 0.24121094, -1.5712891, 2.7597656, 2.4335938, 3.8242188, -0.8808594, 0.47338867, 0.6923828, -0.6948242, 0.8989258, 0.75878906, 0.79833984, 3.6621094, 0.07183838, 1.7285156, 0.09716797, 1.2587891, -0.8017578, -1.1494141, -1.0605469, -1.6621094, -3.9316406, -2.1054688, -1.3564453, -3.6542969, 0.4399414, -0.73046875, 0.7597656, -2.9121094, 1.2695312, -2.7285156, 1.8603516, 1.9199219, -0.59277344, 3.7851562, -2.1171875, -0.84814453, 1.1640625, 1.65625, 2.3515625, -1.2900391, -2.7441406, 3.9648438, 2.2109375, 1.0078125, -1.6767578, -1.8173828, 0.07751465, 0.75878906, -0.6430664, -0.94970703, 0.7290039, 0.19970703, 0.7524414, 0.72216797, -1.6181641, 0.4951172, -0.06518555, 0.515625, -2.4199219, 0.94091797, 3.2070312, 2.4277344, -1.0644531, -2.7285156, -2.0097656, -1.0634766, -3.484375, 2.0234375, 0.38842773, -1.3085938, -0.6352539, 1.2783203, -2.0175781, -2.2792969, 1.6689453, -0.4716797, 1.3779297, -0.58251953, -3.1347656, -4.265625, -1.5380859, -0.36035156, 1.2392578, -0.7553711, -1.1503906, 1.2050781, 0.045166016, -0.36987305, -2.8398438, 2.3984375, -1.7265625, 0.9663086, 0.92089844, 0.7871094, -1.5351562, 3.3945312, -0.20166016, 0.50634766, -2.5507812, 0.4963379, 1.9619141, 0.39941406, 1.9785156, -0.55810547, -0.38623047, 2.3808594, 0.8720703, 0.97509766, 1.2851562, 0.42114258, 0.17358398, -2.7382812, -1.1787109, 2.9199219, 0.39916992, -1.0830078, -1.7802734, 0.43432617, 2.6875, 0.0084991455, -1.3564453, 0.26489258, -0.12408447, -0.73828125, -1.6416016, -1.8691406, -2.9589844, -0.47094727, -0.70654297, -0.94140625, 0.7324219, 2.0332031, -1.7373047, 1.7724609, -0.5854492, -1.6728516, -1.2460938, -2.7949219, 1.5898438, 1.1123047, 2.1308594, -0.55078125, -2.1699219, 2.4707031, 1.4619141, -0.6538086, -0.13659668, -0.28637695, 0.5283203, 0.6958008, 0.45776367, -1.1552734, 0.3371582, 1.5527344, 0.69189453, -0.1081543, -0.28857422, 3.5429688, 1.6796875, -1.4765625, 3.7949219, 0.042175293, 0.06161499, 1.4052734, -1.0488281, 1.2675781, -3.3476562, 1.46875, 1.5195312, 0.9550781, -0.21569824, -2.3300781, 1.2851562, 4.3359375, -2.1601562, -2.3632812, 2.9492188, 1.4003906, -0.18310547, 1.6210938, -0.5385742, -1.4853516, -0.83691406, 1.0195312, 1.2451172, -1.5234375, 0.40527344, 2.7324219, 0.15551758, 0.1270752, -0.0670166, 0.31860352, 0.41625977, -1.2822266, 1.3955078, -2.7792969, 1.5839844, -0.15466309, -0.78466797, 2.8769531, -3.5390625, -0.041534424, 2.2109375, 1.3808594, 3.3945312, 0.6196289, -1.7021484, 0.15893555, 2.7011719, -1.9550781, -0.4658203, -0.6088867, 2.1210938, 2.421875, -0.6308594, 0.68896484, -0.41455078, -1.7460938, 0.9736328, -2.7382812, -3.3183594, -0.7915039, -1.7841797, -1.7011719, 0.6279297, -1.2285156, 3.2402344, -0.24121094, 1.2021484, 0.35864258, 0.4152832, 0.12548828, -2.8886719, 0.59765625, 3.2871094, -0.8544922, -2.3828125, 0.38061523, -0.19067383, -0.45239258, 1.7939453, -1.0498047, 0.90185547, -1.6826172, 1.4736328, 1.2646484, 1.1455078, -0.9873047, -1.5761719, 1.9394531, -2.9121094, 0.04220581, -3.2558594, 1.9414062, -1.1455078, 0.85058594, -2.8261719, -1.4931641, 0.3466797, -0.9716797, 3.0371094, -0.013893127, 1.7646484, -2.2265625, 1.1210938, 0.87939453, -0.9379883, -2.6542969, -0.69970703, 0.3708496, 0.21557617, -2.109375, -2.7636719, 0.38720703, -0.0390625, 0.6333008, 0.6464844, -0.80810547, -2.2167969, 0.63378906, -0.5463867, 0.30395508, 0.0064201355, 2.0234375, -0.121520996, -1.5351562, -0.8876953, 0.38208008, -0.8027344, -2.4980469, -2.2617188, 1.5751953, 0.70166016, -0.08782959, -0.31811523, 1.4023438, 2.2324219, -1.34375, -3.3515625, 0.9692383, 2.1328125, -0.31591797, 2.2050781, -1.5136719, -1.2548828, -1.6142578, -0.52734375, 4.03125, 2.4101562, 1.7978516, -1.3066406, 0.75341797, 0.03527832, 0.23486328, -0.34228516, -1.21875, -0.6123047, 2.0136719, -2.0664062, -2.4980469, -0.9970703, 2.1757812, -2.2226562, -1.8496094, 1.6787109, 1.3691406, 2.9921875, -0.0826416, -1.0224609, 0.9746094, -1.0625, 1.7744141, -0.040802002, -0.86572266, -0.39233398, -0.84228516, 0.3972168, -3.3613281, -0.84814453, 1.8417969, 0.06359863, 0.61083984, 0.30419922, 0.6323242, -0.9785156, -0.09240723, -0.042419434, 0.53515625, -0.1763916, 0.92529297, -0.3293457, 0.5908203, 0.5180664, 0.6821289, 2.5996094, -2.1953125, -1.2197266, 0.6972656, 1.6171875, -1.4433594, -0.43017578, -2.0195312, 0.70654297, 0.6479492, -0.77734375, 0.24194336, 1.1230469, 1.1806641, -0.7607422, -1.2861328, -2.0273438, 0.41674805, -1.5888672, -0.63623047, 0.2454834, 0.39111328, -2.625, -2.4921875, 0.6040039, -0.80322266, -1.9833984, 1.1279297, 0.7338867, -0.03387451, -0.23913574, -0.8120117, 1.2177734, 1.6357422, -0.89453125, -1.0546875, -1.5849609, -1.7412109, -0.38232422, 0.30419922, 1.65625, -0.20056152, -2.7929688, -0.12121582, -2.7480469, 1.8710938, 0.6821289, 0.87597656, -2.1152344, 0.76464844, 1.0683594, 2.6875, -0.5449219, 1.9580078, 0.69384766, 0.21435547, 0.94970703, -2.4960938, -0.64404297, -1.2861328, -5.0117188, 1.9638672, -2.0117188, -0.22570801, 1.1689453, 0.9614258, -0.15112305, 1.1279297, 1.5576172, -3.5, -2.0605469, -0.5498047, 1.9570312, -1.4296875, -0.96240234, 1.8691406, 1.9775391, -0.15332031, -2.3769531, -1.8994141, -1.8701172, -1.1933594, 0.1850586, 2.0644531, 1.3154297, 0.59814453, 0.3034668, -1.0683594, -0.26464844, -0.6791992, -0.6352539, -1.5205078, -2.9199219, 2.4257812, 1.1269531, 0.28442383, -1.5039062, 3.2597656, 3.0722656, -0.8574219, 0.47631836, -1.7861328, 2.2792969, -0.0859375, -0.26586914, -0.17370605, -1.3828125, 1.2207031, -0.5751953, -0.8930664, -1.3447266, -1.2236328, 0.49072266, 0.69628906, 1.9492188, -0.14587402, -0.74560547, -2.1933594, 0.6645508, 2.6035156, -1.1230469, 0.36669922, -1.6904297, -0.8935547, -0.75, -0.82958984, -1.6728516, -0.6220703, -0.06137085, -0.84228516, -5.2578125, 2.9960938, 2.4960938, 1.0224609, 0.9272461, -0.08288574, 0.11462402, 1.2832031, 1.7382812, -0.9038086, 0.19824219, -0.2980957, 0.123168945, -0.8959961, 2.2773438, -1.2099609, -1.3623047, 2.1035156, -0.8310547, 0.32592773, 0.16796875, 0.2998047, -2.0976562, -0.14953613, -1.2705078, -0.54248047, 3.2207031, -1.4179688, 0.075805664, 1.9326172, 0.44311523, -1.1767578, 1.0976562, 1.59375, 3.140625, 0.24377441, 0.42871094, 0.95166016, 0.6142578, 1.2753906, -0.6035156, 0.055267334, -1.1435547, 0.92871094, -0.005584717, 0.55810547, -1.9199219, 0.4699707, 1.1933594, 2.6582031, 0.40039062, 1.7050781, 1.4335938, -1.4453125, 2.2402344, 1.59375, -0.6347656, -1.2880859, 0.24853516, -0.0063819885, 1.1386719, -0.87060547, -1.7001953, -0.4855957, 1.2705078, 0.66064453, 2.9980469, 1.8125, -0.7192383, -2.0449219, -2.5859375, -2.9726562, -0.3544922, -0.9667969, 0.7133789, -0.018630981, -0.49121094, -1.2441406, 0.7866211, 1.0400391, 0.19018555, 0.52734375, 0.3154297, -0.26391602, 0.56591797, -0.5024414, 0.44091797, -1.9902344, 0.4465332, 0.7446289, 1.4257812, -0.9116211, 1.4453125, 2.6035156, -1.6230469, -2.484375, -0.48413086, 2.1835938, -0.6767578, -1.6845703, 1.9667969, 1.5820312, 0.49658203, -0.32299805, 0.2770996, -1.5205078, 0.5361328, 3.6230469, 0.9555664, -1.6523438, 0.60498047, -1.3720703, -4.890625, -0.50878906, 1.5380859, 0.56103516, 0.6308594, -1.4589844, -0.5131836, 0.8486328, -1.15625, -0.9370117, -2.7070312, 2.9121094, -1.7275391, -0.74560547, -1.2978516, 1.1171875, -0.73583984, -1.2001953, -1.1328125, 1.0742188, -2.0332031, -2.9121094, -3.0097656, -1.0410156, -1.5390625, -1.1962891, 0.14294434, -0.61865234, 0.9267578, 1.2890625, 1.6298828, -1.3857422, 1.4833984, -0.63671875, -0.28979492, 2.0371094, -0.4519043, 0.7260742, 2.9414062, -0.024414062, 1.3076172, 2.8125, 1.7314453, -2.2265625, -0.87939453, 0.37451172, 0.74365234, -0.66064453, -1.1650391, -0.1829834, -0.9423828, 2.9492188, -0.097595215, -0.69873047, -1.4873047, -2.3886719, -3.2246094, -0.13574219, -1.3945312, 0.8149414, -1.0234375, 1.0341797, 1.7021484, -0.31860352, 0.1373291, -0.19042969, -0.46289062, -1.7285156, 1.3398438, -0.875, 1.7792969, 0.6689453, -1.4589844, -3.3613281, -2.3476562, 1.2255859, 1.7773438, -0.9326172, 0.71777344, 0.0871582, -0.62402344, 1.7666016, -0.47216797, 2.1171875, -0.32910156, 0.14196777, -1.9394531, 0.47338867, 2.4746094, -0.84765625, 0.43115234, 1.0537109, -1.3603516, -0.30322266, 2.4863281, 0.7573242, -1.9082031, 1.3701172, -3.4453125, -0.24536133, -1.0566406, -0.9926758, 0.96972656, -3.2871094, 0.0758667, -0.3630371, -2.3046875, -1.9199219, 2.2988281, -0.10675049, -1.0996094, -0.28930664, 2.6894531, -0.96533203, -0.6411133, 2.0703125, 0.38793945, -2.3710938, -2.03125, -1.2763672, 1.1171875, 2.3769531, -3.5019531, 0.2619629, 2.4316406, 2.3457031, -0.2084961, 1.3261719, -0.79003906, 2.7148438, 0.59277344, 2.3984375, 4.6484375, 0.484375, 1.4326172, 1.2148438, 0.8618164, 4.0820312, -1.7304688, 1.6416016, 0.90722656, 0.61816406, 0.7192383, -1.8408203, -0.2849121, -1.9970703, 0.3540039, 0.32373047, -0.93115234, 1.4746094, -2.5488281, 0.040222168, -0.5102539, -0.07922363, -3.2480469, 0.07220459, -0.671875, 0.49951172, -2.6484375, 1.8271484, 1.6728516, 0.061157227, 0.6958008, 0.31982422, -0.21594238, 2.2617188, -1.7070312, -1.2080078, -1.2431641, -1.1914062, -0.046936035, 3.0566406, 0.047210693, 0.21447754, 0.47558594, 0.7753906, -1.9853516, 0.29589844, 1.3203125, -1.5175781, 0.7373047, -0.5229492, 1.6728516, 1.0683594, -0.5878906, 3.7480469, -0.1459961, 0.07385254, -3.3554688, 2.7480469, -1.3720703, 1.2099609, -1.0488281, -5.2460938, 1.1220703, -2.2460938, 1.4335938, -2.2226562, 1.4355469, -1.1103516, -1.5, 1.6855469, 0.92041016, -1.9013672, 1.8779297, 1.4306641, -2.7148438, 0.28100586, 2.3359375, 1.2558594, -0.61572266, 0.6323242, -0.15368652, 0.73095703, -1.7705078, 2.4492188, -1.4414062, -0.640625, -2.2929688, 1.3525391, 0.23474121, 0.49023438, -1.6660156, 0.025177002, 0.29882812, 1.0712891, 0.09729004, 1.1660156, -2.3847656, 1.3339844, 0.7944336, 0.025405884, 0.96875, 0.9458008, 0.76708984, 2.0234375, -2.4414062, -1.8642578, 0.49829102, -0.86621094, 1.2548828, 0.7636719, -1.8857422, -1.8134766, 0.0056152344, 1.2783203, -1.7138672, 1.3173828, 0.15185547, 1.3017578, -0.8261719, -2.4355469, -0.13378906, 2.1875, -0.18493652, -0.23388672, -1.1435547, -1.2275391, -0.32641602, -0.91015625, -2.0195312, 1.5, 2.9277344, -0.4309082, 0.33691406, -0.59228516, -0.6386719, 2.8710938, -1.6923828, 0.76953125, 0.66796875, 1.6894531, 1.4394531, 1.3310547, 0.17260742, -1.9277344, -1.4453125, -3.1972656, 1.6064453, 0.7661133, -0.25073242, 0.8720703, 1.6533203, 2.1972656, -0.6357422, -0.56884766, 0.6166992, -1.4472656, 0.83251953, -2.9609375, 1.4023438, 1.1435547, 0.4020996, 0.95410156, 2.2285156, 1.2167969, -1.6650391, 0.26513672, 2.4140625, -1.0332031, -0.49267578, 0.07086182, -0.203125, -0.3232422, 0.36206055, 3.2421875, 3.3125, 0.04006958, -0.9121094, 0.3125, -0.7661133]}, "B07YBLSF7M": {"id": "B07YBLSF7M", "original": "Brand: Monument Grills\nName: Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer\nDescription: Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.\nFeatures: \u2605STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance\n\u2605STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking\n\u2605LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space\n\u2605TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation\n\u2605BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.\n", "embedding": [-3.109375, 0.7290039, 1.0839844, 1.3134766, -0.58740234, 0.96240234, 0.11462402, -0.6982422, -0.17468262, 1.4658203, -0.5751953, -1.1972656, -1.4804688, -2.3730469, -0.11004639, 1.6201172, 0.70166016, 0.94189453, 1.3779297, 1.0400391, 0.5888672, 0.033050537, 1.2412109, -1.6220703, 0.88623047, 0.18444824, 2.9511719, -4.046875, 0.9560547, -0.94189453, 3.0527344, 0.43969727, 0.17919922, 1.3876953, -2.3964844, -1.3105469, -3.1855469, 0.59765625, -2.203125, -0.7211914, 0.390625, -0.44799805, 2.6640625, -0.54248047, -2.0292969, -0.088134766, 0.87890625, 0.9848633, -1.4599609, -1.9160156, 3.4042969, 1.0410156, 0.8798828, 0.7348633, -0.38671875, 0.82714844, 2.6230469, -0.29858398, 1.5410156, 0.69628906, 1.3642578, -0.9291992, -2.2753906, 0.24157715, 0.08251953, -1.5712891, 0.013877869, -0.40722656, 0.5683594, -1.8574219, 2.7441406, 0.07232666, -0.32641602, 2.046875, 1.7958984, -2.2363281, -1.7978516, 1.4179688, -1.2363281, -1.6621094, -1.578125, 4.2734375, 0.9370117, -0.046417236, 0.37719727, 1.4375, -1.0517578, -0.30273438, 1.4472656, 0.93603516, -1.2900391, 2.5351562, -2.1132812, -2.6171875, 1.7880859, -1.0751953, 1.6347656, 0.6152344, -1.1796875, 0.55126953, -0.71435547, 1.5292969, -2.5527344, 0.34570312, -3.1015625, -2.125, 1.9912109, -0.64404297, -0.94091797, 0.039367676, -0.6245117, -1.4765625, 1.3798828, 0.69091797, 1.1962891, -0.41625977, -0.009605408, 2.3339844, 1.9628906, 2.3925781, 3.34375, 1.2431641, 0.7167969, 0.21032715, -0.75634766, -0.7504883, -1.3320312, 3.4414062, 3.9277344, -2.9316406, -0.22473145, -1.5302734, 3.3183594, -0.099243164, -2.5917969, -2.0800781, -0.36157227, -1.453125, -4.4648438, 0.46533203, -1.0849609, 2.1953125, 1.8125, -0.28320312, -4.0390625, -0.9160156, -1.5498047, 1.2207031, -0.25805664, -0.23937988, 0.36279297, -1.6806641, -0.2697754, -1.0400391, 2.2089844, -1.8925781, -0.23156738, 0.18261719, 4.765625, 1.6464844, 2.8691406, -2.0410156, -1.2509766, 0.0791626, 2.0585938, -2.671875, -1.7001953, 2.5195312, 0.96484375, 1.6201172, 0.2253418, 0.55126953, 0.9785156, 0.31176758, 2.0097656, -1.4423828, -1.1005859, 2.3203125, -0.017105103, -1.9404297, -1.2177734, -3.6679688, 0.80810547, -0.9667969, 0.20495605, -2.6484375, -0.28100586, 0.15600586, -0.5522461, -0.55810547, -0.40551758, 1.6621094, -0.4741211, 1.7333984, 0.20922852, -1.5322266, -3.1464844, -2.4511719, 0.58154297, 0.28979492, -0.6816406, -0.7294922, -1.9306641, -0.22558594, -1.3789062, -3.125, -0.63623047, -1.0966797, 0.57958984, 0.6455078, 1.2246094, -1.5771484, 1.3710938, -0.87939453, 0.16564941, 0.031311035, 2.640625, 0.59716797, 1.4931641, 2.1816406, -0.78808594, -0.8808594, 0.17565918, 3.1582031, 0.5361328, 2.3808594, -0.47192383, -0.70751953, -1.6914062, -1.6611328, 2.1757812, -0.51416016, -0.032073975, 0.40844727, 0.5083008, 3.5917969, -0.030471802, -0.3166504, -0.91748047, -0.3708496, -0.68896484, 0.66308594, -0.26489258, -2.9589844, -1.2910156, -0.7915039, -2.4160156, 2.21875, 1.6699219, 0.8598633, -1.4414062, -0.19165039, 0.81884766, 1.3896484, -0.86376953, 0.87646484, 0.80615234, 1.9658203, -1.2382812, -2.7851562, 0.30395508, 1.2988281, -0.4116211, 0.00065374374, 1.9794922, -1.1982422, 2.8222656, 0.062683105, -2.90625, -0.8364258, 2.8925781, -0.89453125, 0.012771606, -0.022079468, 2.0722656, 0.49609375, 0.26489258, 3.4589844, 2.0722656, 0.93652344, 0.6074219, 0.28222656, 1.4228516, -3.0664062, -2.0820312, 0.62060547, 0.4008789, -0.3317871, 0.092285156, 1.5605469, 3.5195312, 2.2167969, -2.9589844, 2.7363281, -2.8222656, 0.52197266, 1.2470703, -2.7851562, -0.359375, 0.5229492, 1.4384766, 0.9277344, -0.31176758, 1.9003906, -1.8427734, -0.70458984, -0.028045654, -1.8203125, -0.58154297, 0.36816406, -1.4355469, -0.6972656, -1.5195312, 1.1855469, -0.8881836, -0.5058594, 3.2167969, -3.4394531, 0.91796875, 1.890625, 2.8398438, 0.85009766, -0.122558594, -2.0195312, 1.5087891, -0.3876953, 0.28881836, 1.3095703, 1.0351562, -1.1357422, 2.7109375, 0.28637695, 2.3105469, -2.3691406, -2.8945312, -0.9399414, -4.0703125, -2.5546875, 1.1582031, -0.6010742, -0.54248047, 1.1982422, -2.2910156, -1.296875, -2.4550781, -1.4443359, 0.20715332, -0.20275879, -0.90966797, -1.4882812, -0.3569336, -0.18664551, 0.8520508, -3.7402344, -0.45483398, 0.5048828, -0.12524414, 0.9951172, -0.070739746, -0.53564453, -2.359375, 0.7895508, 0.48754883, 1.1621094, 1.4833984, -0.66845703, -0.5209961, -3.2597656, -1.0771484, -2.640625, -0.76708984, -2.9941406, -1.0908203, -2.3300781, -2.7578125, -1.0742188, -0.10101318, 2.7441406, -1.1396484, 1.8027344, 0.073791504, -0.2607422, 1.2617188, -0.28344727, -2.09375, -1.6181641, 1.7871094, -2.3457031, -4.546875, -2.84375, -1.203125, 1.0888672, -0.20690918, -0.14978027, 0.4267578, -1.9345703, 2.3535156, -2.5898438, -0.38623047, -0.46533203, 1.5234375, 0.007019043, -0.93652344, -1.9707031, -0.47094727, 0.9638672, -0.8041992, -1.4511719, 0.4807129, -0.5683594, 1.7519531, 0.13500977, 0.61328125, 0.68896484, -0.9980469, -3.9550781, 1.7548828, 0.59814453, -2.9160156, 3.8027344, -1.0898438, -2.3339844, -4.5, -1.8652344, 2.015625, -0.6586914, 1.6572266, -1.1103516, -0.06726074, 2.3515625, -0.022613525, 0.7480469, 0.12060547, -0.7475586, 1.5458984, -3.0566406, -1.0615234, 1.0947266, 2.5253906, -1.3046875, -0.8125, 3.0078125, 1.9785156, 0.81152344, 1.3095703, 1.7949219, -0.19543457, -0.8745117, 3.0683594, 1.8486328, 0.09295654, 0.4272461, -0.91259766, 0.9707031, 0.58935547, 1.5166016, -0.25097656, -0.11846924, 2.4414062, 0.5805664, -0.6147461, -3.0351562, 0.27416992, 0.5102539, 1.2265625, 1.0615234, 2.5957031, -1.9931641, -0.45361328, -0.09625244, 0.8823242, 1.2646484, -0.010902405, -1.1796875, 1.5136719, 0.6147461, 1.4492188, -0.0017547607, 0.48120117, 0.17993164, -0.16101074, 0.64208984, -1.6943359, -1.390625, 1.4775391, -0.027450562, -2.0644531, -0.6171875, 1.5361328, -0.68847656, -1.4335938, -0.16564941, 2.53125, 0.33862305, -2.5429688, 0.7114258, -1.2998047, -0.6816406, 3.9902344, 0.23120117, -1.0527344, 0.6748047, -1.7138672, 1.890625, 2.0507812, -0.55615234, -1.8339844, -0.88720703, -0.045654297, -0.6645508, 0.51171875, 1.6630859, -0.18908691, -1.2255859, 0.08074951, -2.5996094, 0.3840332, 0.41455078, -1.2753906, -0.6118164, 2.453125, 1.9511719, 0.03540039, -1.7695312, 3.4394531, -0.3305664, -0.45385742, 1.5517578, -2.7480469, -0.6274414, -4.8476562, -2.7402344, 1.8876953, -3.2792969, -0.09448242, 1.6123047, 0.1282959, -0.78808594, 0.6621094, 0.37719727, -3.0546875, 0.09472656, -1.8017578, 0.11151123, -2.5859375, -1.2900391, 0.7128906, 2.3652344, -1.2832031, -1.6328125, -0.6118164, 1.5400391, 2.6992188, 1.171875, -1.0888672, 0.9160156, -2.90625, -0.53808594, -1.8173828, -0.054229736, 0.72509766, -1.0029297, -0.15185547, -2.6445312, 2.1308594, 0.08807373, -0.5673828, 1.4345703, 0.81689453, -0.49194336, -0.44970703, 1.1796875, 0.6982422, 1.8876953, -0.84277344, -2.2246094, -1.1806641, -0.041381836, 0.52490234, -0.76464844, -0.19250488, -1.1992188, -3.4140625, 0.08203125, -0.83496094, 1.2783203, 0.7832031, -1.9052734, -1.8876953, 0.4194336, 0.13183594, -3.7792969, -2.1464844, -0.97265625, -2.2578125, -1.4873047, 0.39770508, -2.8066406, 0.89404297, -3.4941406, 0.57470703, -2.6210938, 3.7167969, 1.1982422, 3.2070312, 3.4863281, -0.39135742, -1.3105469, 2.5253906, -1.5976562, -1.8496094, 1.6386719, -0.9082031, 0.18969727, 2.2988281, 0.5419922, -2.3613281, 0.93359375, 2.7949219, -1.6943359, -3.1171875, -0.10455322, 0.38989258, -2.8964844, -0.8310547, -0.087524414, -1.8388672, 2.5234375, -1.9130859, 2.0195312, -1.3261719, 0.15515137, -0.28759766, 0.71728516, -0.3623047, -0.18383789, 2.7832031, 1.3144531, 2.0195312, -1.8505859, 0.49316406, -1.4892578, 2.4453125, -0.62939453, 1.0175781, 0.9038086, -0.8833008, -1.8007812, -1.2548828, 1.9921875, 3.9589844, -1.3535156, 1.5673828, -0.4716797, -3.1582031, 1.7470703, 1.3662109, -3.6328125, -0.15454102, 0.49780273, 0.41357422, 1.5107422, -0.0881958, -2.4980469, 0.46948242, 1.6035156, -2.2851562, 0.98828125, -0.12176514, -1.2177734, 0.7832031, -1.5820312, -1.3095703, 0.2265625, -2.2597656, 0.31347656, -1.7099609, -0.09918213, -1.3818359, 2.3847656, 1.6113281, -1.3476562, 0.13903809, 2.9492188, 0.20483398, 1.3671875, 0.7519531, -0.39160156, -1.1416016, -1.2978516, 0.3684082, 1.8789062, 0.5019531, 0.7709961, 2.9433594, -1.6386719, -0.5991211, -2.4492188, 4.3554688, -0.58251953, -0.2919922, 1.0195312, -0.6381836, 0.8071289, -1.9794922, 0.36767578, 0.47045898, 3.0175781, 2.8964844, 0.328125, 0.52783203, -0.06109619, -1.1835938, -3.7460938, -0.3552246, -0.3786621, -0.28320312, 0.50927734, 2.5566406, -1.515625, -0.93359375, 1.515625, 0.37890625, -1.2158203, 0.53515625, 0.3256836, 0.5288086, -1.6162109, 1.2041016, 0.4555664, 0.08026123, 2.9238281, 1.3017578, 0.16418457, -4.5351562, -1.921875, 1.0068359, -0.028945923, -1.2919922, -0.46704102, 0.091552734, -1.0966797, 1.5146484, 0.45336914, -0.25195312, 2.6855469, -2.4492188, 0.1538086, 1.4453125, 0.07141113, 1.9921875, -0.8808594, -1.7333984, 2.5585938, -1.0136719, 1.3164062, -0.19641113, -1.0390625, -2.4453125, 2.3144531, -0.0044021606, -0.5957031, 0.6245117, -1.6943359, 3.0292969, 1.8681641, 0.5698242, 0.44189453, -0.54541016, -3.7929688, 1.2587891, -3.21875, -0.3215332, -1.9101562, 0.60058594, 2.0332031, 0.77978516, 0.1541748, 0.85595703, 0.41235352, -0.15686035, 0.84375, -0.048858643, 0.8964844, 1.5771484, -1.6035156, -1.4306641, -1.1494141, 0.58251953, 1.4453125, 0.82470703, -0.90234375, 0.20910645, -1.3583984, -0.09460449, 0.4038086, 2.3242188, 0.9223633, -1.5917969, -2.4316406, 1.7929688, 4.5039062, -0.9526367, 3.1835938, 1.2763672, 2.6152344, -0.6713867, 3.4355469, 2.0371094, -1.1611328, 0.56103516, -1.5351562, 0.23620605, -2.171875, -0.55859375, -1.0996094, -1.6982422, -1.8515625, -2.4511719, -1.2861328, -2.7324219, 1.9707031, 1.0361328, -0.2709961, 2.2285156, 3.1347656, 0.12866211, 1.8837891, 1.8125, 1.4423828, 0.3840332, 0.91064453, -2.328125, 0.54541016, 0.7314453, -3.0410156, 1.5927734, 1.6367188, -0.003786087, -1.7128906, 2.8242188, 1.1123047, 2.7734375, 0.31152344, 1.2744141, 1.890625, -0.15136719, 2.4472656, 0.4621582, 0.6088867, 1.6748047, -1.5419922, 0.01335907, 1.3154297, 2.3671875, 0.3112793, -0.5625, 1.5380859, -0.05065918, -2.3164062, -2.3105469, -0.8330078, 1.4375, -2.6699219, 2.1894531, 1.4511719, 0.66748047, -0.9135742, -0.32617188, -2.1621094, -0.12060547, -0.86816406, 0.19152832, 2.8769531, -1.4287109, -0.14331055, 0.6074219, -1.4619141, 1.9892578, -3.265625, 1.3476562, 0.47094727, -1.7880859, -1.0332031, 2.5722656, 2.5039062, 1.2460938, 0.97314453, 0.6791992, 1.7832031, 0.5083008, 0.62939453, 0.0055618286, 1.0791016, 0.4794922, 3.0800781, -0.46826172, -2.4804688, 1.2841797, -1.1943359, -2.4042969, -0.92578125, 2.6445312, 0.5449219, 0.33203125, 0.82128906, -3.3789062, 0.43701172, 0.24389648, 1.3359375, -3.7167969, -0.6147461, -0.42944336, -1.7578125, -1.4521484, 0.1003418, 0.74609375, 1.2236328, 2.078125, -0.93066406, 1.2480469, 2.0097656, 1.9091797, 1.5878906, 1.1650391, -0.7866211, 2.0546875, -1.1904297, 2.171875, 0.30932617, -1.6621094, -3.1425781, 2.0292969, 1.3007812, 0.24267578, -0.14929199, -1.4638672, -1.4902344, -1.3554688, -2.4609375, -1.171875, -0.20825195, 0.7265625, 0.13427734, 0.6425781, -0.9248047, 0.8413086, 0.67333984, 3.0566406, -0.6821289, 1.0087891, 0.4567871, 0.36523438, 1.8652344, 0.85009766, -1.4746094, 1.3984375, -0.1472168, 2.0566406, -0.1328125, -1.5517578, 0.011192322, 0.23339844, 1.3603516, -0.40942383, -0.27954102, -0.7963867, 0.97265625, -1.0341797, 1.1894531, -1.0351562, -0.5253906, 1.1005859, -0.20495605, 1.0537109, 4.0625, 1.1171875, -0.7421875, -2.0585938, -0.79541016, 0.9550781, -1.5898438, -0.58691406, -0.39819336, 4.7617188, 2.6523438, -0.3244629, -2.5214844, -2.6328125, -0.63134766, -1.1767578, 2.4941406, -1.1591797, -1.0800781, 0.5332031, 0.14758301, 2.0019531, -0.05227661, -0.2939453, -0.56152344, -0.024673462, 0.71484375, 0.8066406, 1.4404297, 2.3007812, 0.23144531, 0.6176758, 0.96728516, 2.0605469, 1.2626953, 2.1035156, 2.4921875, 0.084228516, -2.9160156, -0.24621582, -1.4882812, -0.56396484, 1.2138672, 0.34692383, 2.3535156, -0.034423828, 0.36499023, -1.8320312, -1.7021484]}, "B07H636NBH": {"id": "B07H636NBH", "original": "Brand: Weber\nName: Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit\nEquipped with the powerful Gs4 high performance grilling system\nUse the side burner to Simmer BBQ sauce or saut\u00e9 veggies; Infinite control burner valves\nSear station creates an intense heat zone to quickly add sear marks on meat\nDimensions: Lid Open 62\"H x 59\"W x 31\"D || Lid Closed 47\"H x 59\"W x 29\"D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches\n", "embedding": [-1.5537109, 0.023132324, 1.7548828, -1.1171875, -1.25, 1.0595703, -0.49389648, -1.1757812, 0.6152344, 1.359375, 2.2753906, -0.87402344, 1.6083984, -2.8554688, 0.68847656, 0.32763672, 1.8271484, 1.65625, -0.68408203, -0.21972656, 1.4765625, 0.15222168, 0.67822266, -1.90625, 1.3740234, 1.7158203, 4.8125, -6.40625, -0.81347656, -0.6069336, 2.0039062, 0.62890625, 1.2978516, 2.4355469, -3.0742188, -1.3984375, -2.5683594, 1.2490234, -2.671875, 1.0380859, -0.12731934, -1.2841797, 1.4091797, -0.2475586, -1.6689453, 0.90625, 0.56347656, -0.1616211, -1.6416016, 0.08685303, 4.1601562, 1.3486328, 0.18286133, 0.65283203, -0.5019531, 2.6738281, -0.5805664, -1.2363281, 2.421875, 0.3359375, 2.375, -0.47973633, -2.6816406, -1.5263672, -1.4033203, -0.30004883, -0.074401855, -0.059509277, 0.9770508, -0.29614258, 3.6445312, -0.7319336, -1.3271484, 0.28442383, 0.85791016, -2.0996094, -2.3398438, 1.1533203, 0.47607422, -1.8408203, -1.7646484, 2.203125, 1.4609375, -3.2402344, -0.7348633, -0.15490723, 1.15625, -2.2558594, 2.0175781, 1.5244141, -0.6586914, 0.94921875, -1.3535156, -4.1210938, 2.0527344, -0.93359375, 1.7333984, 1.5810547, -0.14782715, 1.6689453, -1.0976562, 1.0214844, -1.5029297, -1.3076172, -4.15625, -1.3925781, 1.4667969, 0.0078048706, -2.1289062, -1.0205078, -1.7519531, -0.19152832, 1.7373047, 2.1171875, 1.1328125, 1.7568359, -0.070495605, 1.9443359, 0.5732422, 0.50146484, 3.2246094, -1.6386719, 0.86865234, -0.6972656, -0.95947266, -1.1533203, -0.22180176, 0.5341797, 3.9863281, -1.8730469, -0.33569336, 1.5234375, 4.3828125, 0.0848999, -0.90625, -1.1884766, -1.0439453, -1.1240234, -3, -0.040802002, -0.31982422, 0.29418945, 1.8242188, -1.2412109, -3.3496094, 0.21789551, 0.030944824, 0.2722168, 0.07470703, -1.8847656, 0.041656494, -0.98779297, -0.7138672, -1.1494141, 1.6162109, 0.9301758, -1.7314453, 0.22924805, 3.0507812, 1.9970703, 1.1523438, -1.3554688, -0.54833984, -0.640625, 0.046081543, 1.2998047, 1.3046875, 1.9931641, -0.4584961, 1.3916016, 0.94384766, -1.5908203, -0.92333984, -0.55908203, 2.1894531, -1.8408203, -0.5126953, 0.9458008, -0.453125, 0.58984375, -1.8417969, -1.2675781, 0.030914307, -1.1298828, 0.60595703, -0.875, -0.7158203, -0.06915283, 2.2167969, -0.64990234, 0.20227051, -0.75683594, 0.58447266, 0.2401123, -0.20861816, -1.8964844, -0.8618164, -1.0048828, 2.1738281, -0.89208984, -1.3242188, -0.7890625, 0.95214844, 1.46875, -1.0927734, -2.453125, -0.42895508, -2.3574219, 1.4111328, 2.109375, 1.5273438, -1.1337891, 0.98339844, -1.34375, -0.35888672, -1.7666016, 2.453125, 0.9926758, 1.3691406, 0.91259766, -0.5864258, -1.3564453, 0.36523438, 1.8847656, 0.7392578, 0.79589844, 0.95214844, -0.9614258, -3.8554688, -0.6791992, 2.4726562, 0.06945801, 0.4645996, 0.67822266, 0.9111328, 2.9726562, 0.6977539, -0.66796875, 0.1385498, 0.5415039, -0.4399414, -0.16101074, -2.3183594, -1.8095703, -0.19885254, 0.7480469, -1.6015625, 2.8085938, 0.28564453, 0.94384766, 1.3554688, -1.0380859, 1.3417969, 1.2939453, -0.57910156, 0.60595703, -1.0761719, 1.7216797, 0.5131836, -2.4589844, 1.4550781, 0.96728516, 0.50146484, 0.67285156, 0.9458008, -1.5576172, 1.6552734, 2.9472656, -1.1630859, -1.7929688, 0.4482422, 0.6074219, 0.48632812, -0.31713867, 2.3554688, 2.4121094, -1.3007812, 2.7734375, 0.053771973, 0.79003906, -0.7368164, -0.89208984, 0.87646484, -3.2890625, -0.09631348, 0.5541992, 1.2646484, -1.0771484, -2.2695312, -0.07928467, 4.5078125, -0.60302734, -2.5878906, 2.828125, -1.9970703, 0.43041992, 1.4072266, -0.4638672, 0.36743164, 1.3652344, 2.2246094, -0.3864746, 1.3457031, 0.6713867, -0.40429688, -0.54345703, 1.2548828, -2.5195312, 0.46948242, 1.3886719, -0.8203125, -0.72021484, -1.7568359, 1.2265625, -2.0371094, -1.1025391, 1.9716797, -3.1464844, 0.74560547, -1.1757812, 2.1679688, 0.79541016, -2.1621094, -0.96875, -0.7211914, 1.0957031, -1.0654297, 1.1884766, 0.20739746, -1.9902344, -0.76220703, -0.55078125, -0.68066406, -2.3027344, -1.5068359, -2.2871094, -2.1328125, -3.6542969, 1.4970703, -1.3632812, -1.0693359, 1.5712891, -1.8046875, -0.08251953, 0.68847656, -3.3652344, -0.4814453, -1.1591797, -1.0029297, -1.9228516, 1.1904297, 0.9951172, -1.7744141, -2.8808594, 0.46704102, -1.6318359, 1.3613281, -1.0283203, -0.7705078, 1.2724609, 0.5839844, -0.35302734, -0.41601562, 1.0175781, 1.6220703, -0.21936035, 2.0058594, -2.5683594, -0.18701172, -1.8310547, 1.7021484, 0.47973633, 1.0634766, -3.6582031, -1.9160156, -0.8154297, -1.1972656, 3.9863281, 0.8520508, 0.8305664, 0.62109375, 0.9482422, 1.3046875, -1.1894531, -1.8291016, 1.2001953, -0.25708008, -1.8730469, -1.7304688, -2.7441406, -0.8691406, -3.0683594, 0.5336914, 0.057769775, -0.66259766, -1.3447266, -0.4255371, -2.375, -1.4345703, -1.1689453, -0.3701172, 0.30395508, -2.0292969, -2.1835938, -0.33544922, -1.7978516, 0.25585938, -1.3056641, 1.8417969, -0.27929688, 0.65478516, 1.6816406, -1, 1.3876953, -0.57958984, -3.7265625, 3.1210938, -0.50146484, -2.5996094, 2.0566406, -2.703125, -1.2373047, -2.8378906, -0.07940674, 3.2597656, 2.5175781, 1.0029297, 1.3339844, 1.8095703, -1.1738281, -0.96240234, 0.2602539, -1.2480469, 0.9941406, 2.3554688, -2.3769531, -1.4130859, 0.64990234, 1.2988281, -2.6015625, -1.8408203, 2.4726562, 1.9492188, 1.9208984, 1.1279297, 1.1982422, -0.06048584, -1.0410156, 0.50341797, 1.1894531, -0.4658203, 1.1191406, -0.5205078, 0.72509766, -0.5415039, 1.3896484, 1.3007812, 0.3544922, 1.0712891, 3.28125, 1.8222656, 0.0552063, -0.41552734, -0.5683594, 0.22351074, -0.7783203, 1.6328125, -1.8535156, 0.16491699, -0.25390625, -1.1748047, 0.7192383, 0.15576172, -0.9375, 2.8476562, 0.118652344, -1.40625, 1.1826172, 2.2832031, 0.8461914, -0.12585449, -0.17443848, -1.1875, -1.6552734, 1.4501953, -0.71533203, 1.0654297, -2.515625, 0.17700195, -0.90527344, -3.0898438, 0.7451172, 3.6289062, -1.9257812, -1.0263672, 0.35620117, -1.5654297, -0.8618164, 1.8769531, 1.3203125, -1.6318359, 0.2368164, -1.5791016, 0.69384766, 0.25854492, -0.41601562, -1.6689453, 0.05230713, 1.1816406, 0.58154297, 1.2832031, 1.3046875, 0.45385742, -2.3496094, 0.36035156, -4.3867188, -1.9921875, 0.95654297, -2.9277344, -1.8876953, 2.5996094, -0.27270508, 1.0742188, 0.14562988, 3.4707031, -1.8994141, 0.91796875, 2.4628906, -1.6992188, 0.86865234, -3.1660156, -3.4433594, 0.22802734, -0.94677734, 0.011177063, 1.6855469, -0.69628906, 1.4003906, 3.2597656, 0.95458984, -2.2714844, -1.2744141, -1.0117188, 0.30004883, -0.18811035, 0.7368164, 0.27270508, -1.0078125, -3.0878906, -2.0078125, -0.18725586, 0.25073242, 0.6777344, 2.1503906, -3.6835938, 0.3737793, -1.0390625, -0.66503906, -2.1308594, -0.5371094, 1.4248047, 0.06384277, 0.55566406, -2.7246094, 1.046875, 1.5429688, -1.1015625, 2.2558594, 2.0742188, -0.23583984, -2.484375, 0.54296875, 1.3310547, 3.1210938, -0.6899414, -2.5527344, -1.2216797, 1.6435547, 0.07196045, -1.1787109, -0.01071167, 0.5541992, -0.84521484, 0.84765625, 1.5244141, 1.4609375, 0.9628906, 0.22167969, -2.5273438, 0.6845703, -1.2783203, -0.30297852, -1.7431641, 0.3112793, 2.0039062, -1.1601562, 0.98291016, -2.0292969, 1.6621094, -1.0595703, 0.14245605, -4.0507812, 2.25, 3.7109375, 3.3203125, 2.8945312, -1.0410156, 0.43798828, -0.044677734, -0.9770508, -0.39453125, 1.0791016, -1.2949219, -0.4272461, 2.640625, 0.6352539, -2.0058594, -0.9736328, 1.140625, -2.0566406, 0.070739746, -2.0683594, -0.45776367, -1.0380859, -0.008659363, 0.9785156, -1.1191406, 3.1621094, -0.7910156, -1.2558594, 0.45141602, 2.1777344, -0.21936035, 0.56933594, 0.7495117, 0.3383789, -0.56396484, 0.8178711, 1.3935547, -1.0546875, 0.86572266, -1.6640625, 0.6669922, -1.0869141, 0.81884766, 0.7890625, -0.07110596, -0.5761719, -0.60009766, 2.1503906, 2.140625, 2.0195312, 2.7753906, 2.4589844, -2.9472656, 2.53125, 1.0458984, -3.7167969, 1.4560547, 0.4572754, 0.23474121, 2.0898438, 1.7138672, -3.6210938, -0.17504883, 1.8369141, 0.07891846, 1.640625, -1.4033203, -0.58203125, 2.2089844, -1.9951172, -0.96972656, -0.25463867, -0.4248047, 0.78759766, 1.2841797, -0.12939453, -2.1914062, 1.4130859, 2.5292969, -1.2421875, -2.4960938, 1.4970703, -1.4189453, 0.60546875, -2.0019531, -1.0849609, -2.0273438, -0.2133789, 2.3945312, 2.0488281, 1.5371094, 0.28442383, 1.7333984, -1.7939453, -0.22595215, -2.1992188, 1.8320312, -2.1660156, -1.4658203, 0.62353516, -2.8417969, 0.24523926, -1.5195312, -1.1054688, -0.48754883, 1.1367188, 1.2890625, 0.97509766, -1.4570312, 1.0029297, -1.9785156, -3.0527344, -1.3154297, -0.008483887, 0.116760254, 0.54833984, 0.83740234, -1.3408203, 0.38745117, -1.1757812, -0.048339844, -1.109375, 1.0908203, -0.93652344, -0.62646484, -0.6567383, -0.53808594, -1.2714844, 0.60546875, 0.80566406, 0.031585693, 0.5673828, -1.9179688, -0.9711914, 0.89208984, -0.94677734, 0.60009766, 1.6035156, 0.7895508, -0.68603516, 1.7470703, 0.9638672, -2.5703125, 2.5957031, -1.9257812, -1.3994141, 0.98339844, -0.81640625, 1.6230469, -0.83154297, 0.4345703, -0.25317383, -0.0129470825, 1.6894531, 2.046875, -2.0214844, -0.49536133, 0.43041992, 0.4741211, -0.56396484, 1.6103516, -0.19213867, 0.3876953, 1.3984375, -1.4238281, -1.0419922, -1.6474609, -1.7109375, 1.2382812, -3.1699219, -0.89697266, -1.359375, 0.48242188, 2.3632812, -0.08520508, -1.1416016, 2.8066406, -0.4008789, -1.3007812, -0.12347412, -0.8203125, 5.1992188, 4.359375, -0.5625, -0.7260742, -1.4501953, 0.98339844, 2.0527344, 0.6953125, -2.1171875, 0.4416504, -1.4521484, 0.005542755, 0.17126465, 1.6328125, 1.0039062, 1.1025391, -0.859375, 0.7988281, 3.5253906, -1.2763672, 1.3154297, 1.0322266, -0.18652344, 0.22924805, 3.9335938, -0.15393066, -4.0195312, 1.2890625, -2.1835938, 2.0761719, 0.13537598, -1.2363281, 0.51416016, -0.5654297, -1.9814453, -2.0585938, -2.2226562, -2.0097656, 1.3779297, 2.4707031, -2.5917969, -0.9448242, 1.3203125, -0.6699219, 3.8886719, 1.4179688, 1.9394531, -2.0332031, -0.3708496, -0.62402344, 0.2052002, 0.25854492, -4.1914062, 1.2255859, 1.2246094, -1.6396484, -1.5839844, 1.8564453, 0.39404297, 1.8935547, 0.9628906, 1.7304688, 1.5996094, 2.0253906, 1.5908203, 1.2080078, 2.6230469, -0.35351562, -0.8618164, 0.19909668, 1.9345703, 1.3779297, 0.79052734, -0.89404297, 2.5253906, -1.6123047, -0.006526947, 0.07324219, -0.61376953, 1.6220703, -2.3691406, 0.5698242, -0.051971436, 2.0039062, -0.4658203, -1.0517578, 0.81689453, 0.35473633, 0.734375, 0.5107422, 1.8095703, 1.3623047, 1.4960938, -1.0683594, 0.29370117, 2.1503906, -3.5917969, 0.84472656, 1.2666016, -0.54785156, -1.5, -1.2890625, 2.4960938, 0.86279297, -0.65478516, 0.51416016, 3.2402344, 0.94384766, 0.78271484, -2.5351562, -1.0839844, 0.09423828, 3.3476562, 0.21582031, -0.032165527, 0.7807617, -0.9614258, -4.2617188, -3.765625, 3.7109375, 2.90625, 2.2207031, 0.10479736, -0.58251953, 3.109375, -0.60839844, 1.3876953, -0.6098633, 0.49389648, -1.2216797, -2.9941406, -0.30932617, 1.3740234, -0.43164062, 0.9628906, 0.60546875, 0.11932373, 1.2412109, 1.1757812, 1.9619141, 0.87646484, 0.6225586, 2.1523438, 1.1015625, -0.92285156, 1.3681641, 0.005680084, -1.1640625, -2.0507812, 3.1367188, 1.2792969, 0.43554688, -0.19628906, -1.1455078, 0.17443848, -0.84521484, -0.2052002, 1.359375, -2.6425781, -0.88427734, 0.7553711, 0.17102051, -1.2324219, -0.67333984, 1.9921875, 2.859375, -0.6689453, 1.1435547, 3.5859375, -0.78466797, 1.3203125, 0.7236328, 0.609375, -0.061828613, 0.55615234, -0.74072266, 0.37158203, -1.1826172, 1.5556641, 1.7431641, -0.4465332, -0.75341797, 0.18066406, -1.7470703, -1.1845703, 0.04321289, 0.33276367, 0.04333496, -1.2402344, 2.7148438, -0.6508789, -1.4658203, 2.5820312, -0.6743164, 0.19812012, -2.8183594, -2.0605469, -1.2226562, -0.6484375, -1.0957031, 1.0722656, 3.7070312, -0.06335449, 0.2368164, -1.3242188, -3.4140625, -1.3916016, -2.8359375, 2.0585938, -1.8095703, -1.6640625, -1.8242188, 0.44702148, 1.9814453, -0.123168945, 0.0017976761, -0.34228516, -2.8320312, 1.5283203, 0.23352051, 0.69433594, -1.0126953, 0.59277344, 2.1992188, 2.8339844, 1.4023438, 0.77734375, 0.3034668, 2.5175781, 0.41601562, -1.6552734, -0.53564453, 0.42895508, 0.73779297, -0.7636719, 0.86328125, 1.4970703, 0.090026855, -0.6435547, 0.50146484, -2.5058594]}, "B07H5RHYCF": {"id": "B07H5RHYCF", "original": "Brand: Weber\nName: Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel\nDescription: \nFeatures: GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\n7mm diameter solid stainless steel rod cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\nCompatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature\n", "embedding": [-1.3232422, 0.47509766, 1.8945312, -0.8955078, -0.9716797, 1.2333984, -0.08734131, -1.1015625, -0.030715942, 1.5917969, 1.3818359, -1.2949219, 1.234375, -2.6425781, -0.92871094, 0.15551758, 2.0097656, -0.0037975311, -1.2197266, 1.1201172, 1.1699219, -0.82128906, 2.1796875, -1.1132812, 1.5019531, 1.3105469, 4.4335938, -6.015625, -0.86328125, -1.0429688, 2.3164062, 1.0078125, 1.421875, 1.6123047, -3.3535156, -1.2529297, -2.6523438, 1.5419922, -2.5039062, 0.61865234, -0.13134766, -1.7636719, 0.4248047, -0.5727539, -1.75, 1.5693359, 1.1767578, 0.8613281, -3.1933594, 0.2770996, 3.6660156, 1.2910156, -0.02947998, 1.4521484, 0.32714844, 2.9394531, -0.7685547, -0.5151367, 2.5078125, -0.2800293, 2.7792969, -0.48388672, -2.9824219, -1.7988281, -0.82421875, -0.9169922, 0.98535156, 0.66845703, 0.51416016, -0.59033203, 3.4941406, -1.8945312, -1.9951172, 0.796875, 0.7026367, -2.8886719, -2.7167969, 1.3730469, 0.09893799, -1.3945312, -2.5039062, 2.4902344, 1.1611328, -2.1230469, -0.32861328, 0.5708008, 1.0703125, -2.4257812, 2.4667969, 1.4179688, -0.73828125, 0.68847656, -1.3320312, -3.7480469, 1.6259766, -0.5703125, 1.8632812, 0.6538086, -0.4206543, 0.9794922, -2.0234375, 1.5986328, -0.60253906, -0.6269531, -3.0410156, -1.3720703, 2.6875, -0.4387207, -2.7597656, -1.1298828, -1.6269531, -0.07287598, 1.015625, 1.9296875, 1.9462891, 1.1816406, 0.40039062, 1.7548828, 0.86816406, 0.8666992, 2.9394531, -0.6972656, 0.09710693, -1.6181641, -1.5478516, 0.17858887, -0.67333984, 1.0009766, 4.4414062, -3.0078125, -0.38793945, 1.2011719, 3.640625, 0.60546875, -0.609375, -1.4238281, -1.2675781, -0.3178711, -2.9746094, 1.21875, -0.8417969, 0.85595703, 1.4199219, -0.9609375, -3.1464844, 0.38720703, -0.1550293, 0.5253906, 0.16137695, -1.1767578, 0.16088867, -1.2285156, 0.044799805, -1.4609375, 2.4257812, -0.19555664, -0.9165039, 0.25439453, 3.296875, 1.5683594, 1.4257812, -1.2587891, -0.7788086, -1.0429688, -0.0635376, 1.2910156, 0.6113281, 2.3613281, 0.17248535, 1.4736328, -0.19628906, -0.19592285, -0.41601562, -1.0703125, 2.0800781, -1.7929688, 0.19799805, 1.4882812, -0.92041016, 0.84375, -0.5708008, -2.875, 0.09765625, -1.0830078, 1.0371094, -1.1230469, 1.1923828, 0.87890625, 2.2832031, -1.2460938, -0.35009766, -0.3540039, 1.2890625, -0.6201172, 0.7211914, -0.6894531, -0.9086914, -1.8544922, 1.3027344, -1.859375, -1.4755859, -0.9394531, 0.80908203, 0.49658203, -1.3896484, -3.3613281, -1.0703125, -2.0742188, 1.2011719, 2.2539062, 2.5039062, -0.8642578, 0.035858154, -1.3183594, -0.13769531, -2.4550781, 2.5742188, 0.69677734, 0.6538086, 1.3056641, -1.1992188, -1.1113281, 1.0771484, 1.3144531, 0.38134766, -0.014678955, 0.90185547, -0.59375, -2.6152344, -1.7226562, 2.3457031, -0.40405273, 0.17456055, 0.3996582, -0.026885986, 3.3613281, 1.3066406, 0.08807373, -0.7832031, -0.045837402, 0.12841797, -0.0007071495, -2.2734375, -1.390625, -0.7397461, 0.17321777, -2.7226562, 2.7421875, 0.030700684, 0.95458984, 1.4648438, 0.07891846, 1.6796875, 0.90722656, -0.6010742, 0.8383789, -1.3300781, 1.2617188, -0.41381836, -3.0957031, 2.2226562, 0.14929199, -0.10772705, 0.07727051, 0.78759766, -1.7978516, 2.6035156, 2.4414062, -1.0244141, -2.0136719, 0.6020508, 0.064453125, 0.7138672, -1.5449219, 2.3007812, 2.9589844, -1.3173828, 3.4238281, 0.6870117, 0.94189453, 0.103027344, -0.40576172, 1.6884766, -2.5898438, -0.62597656, 0.37060547, 1.4355469, -1.390625, -1.9335938, -0.6074219, 4.3671875, -0.60839844, -3.3554688, 1.8037109, -2.2988281, 0.32592773, 1.7207031, 0.13769531, -0.4482422, 1.1152344, 1.5722656, -0.6791992, 1.3164062, 1.3085938, -0.6953125, -0.22045898, 0.77734375, -1.8466797, 0.12084961, 1.4580078, -0.105041504, -1.1923828, -2.1464844, 0.69873047, -2.7832031, -1.90625, 2.4257812, -2.6035156, 0.97558594, -0.8803711, 2.0625, 0.19335938, -1.7480469, -0.03955078, -1.1152344, 0.35253906, -0.99072266, 0.081604004, 0.37451172, -1.9248047, -1.0566406, -0.4543457, -2.0683594, -1.8740234, -1.3916016, -1.9833984, -2.2304688, -3.6601562, 1.4853516, -1.6074219, -1.1074219, 1.7158203, -2.078125, -0.62939453, 0.72998047, -2.5683594, -0.7089844, -1.25, -1.4189453, -1.4345703, 0.8520508, 0.73583984, -1.2978516, -3.1542969, -0.11218262, -1.5917969, 0.65234375, -0.92333984, -0.54785156, 0.50927734, 1.2734375, -0.42944336, 0.33911133, 1.6298828, 1.7304688, 0.14038086, 0.87939453, -3.0410156, -0.6435547, -2.8613281, 0.8935547, 0.87353516, 1.4765625, -3.6992188, -1.2978516, -0.6435547, -0.41870117, 2.8984375, 0.9970703, 1.7265625, 0.7241211, 1.2832031, 0.73828125, -0.9379883, -1.0771484, 1.390625, 0.7915039, -1.6074219, -0.24121094, -1.0341797, -0.25927734, -1.7685547, 0.5629883, 0.25854492, -0.7524414, -1.3183594, 0.2319336, -1.9277344, -1.8574219, -0.9277344, 0.38305664, 0.46362305, -1.7949219, -2.6972656, -0.51220703, -1.8925781, 0.02331543, -1.7197266, 1.2568359, -0.32543945, 1.3203125, 1.4853516, -0.5097656, 1.0136719, -1.1298828, -2.9824219, 3.125, -0.7553711, -3.1074219, 3.0683594, -2.5839844, -1.9765625, -2.0097656, -0.15686035, 2.7011719, 1.1376953, 1.2158203, 0.5527344, 1.4824219, -0.48583984, 0.12634277, 1.2685547, -1.9228516, -0.40673828, 1.5888672, -2.3652344, -1.9599609, -0.050720215, 1.2597656, -2.7363281, -1.4697266, 2.7890625, 2.8066406, 1.0703125, 1.125, 0.14477539, 0.95703125, -2.4765625, 1.0429688, 0.96484375, -0.13464355, 1.0166016, -1.3945312, 1.3359375, -0.6982422, 1.0791016, 1.2128906, 0.76171875, 2.109375, 2.2324219, 2.2402344, 0.15698242, -0.19897461, 0.27368164, 0.5546875, -0.03149414, 1.8359375, -2.046875, -0.27124023, -0.58251953, -2.2988281, 0.40063477, -0.703125, -1.9228516, 2.3535156, -0.03265381, -0.17614746, 0.25341797, 1.8681641, 0.9008789, 0.0032444, 0.68310547, -1.9140625, -0.88964844, 1.8300781, 0.21777344, -0.33666992, -1.5292969, 0.17041016, -0.48706055, -2.4355469, 0.55371094, 3.5175781, -1.0927734, -0.77197266, 0.15344238, -1.1123047, 0.15368652, 0.9824219, 0.93652344, -0.5292969, 0.9863281, -2.3027344, 1.6796875, 0.07019043, -0.20397949, -1.0214844, -0.23986816, 0.95166016, 0.039916992, 1.3623047, 1.0859375, -0.33789062, -2.1875, 0.20727539, -4.5351562, -1.5273438, 1.0986328, -2.6894531, -1.5595703, 2.0195312, 1.0703125, 0.13586426, -0.5864258, 2.9746094, -1.2460938, -0.02017212, 2.2636719, -3.4179688, -0.3071289, -4.0351562, -2.6542969, 0.004928589, -1.4111328, 0.20422363, 1.3398438, -0.0637207, 0.78125, 2.90625, 0.79003906, -2.0605469, -1.2119141, -0.921875, -0.8828125, -0.12683105, 0.28173828, 0.0960083, -0.9453125, -1.7119141, -2.3828125, 0.359375, -0.13464355, 1.0048828, 1.6669922, -3.9316406, 0.6352539, -1.8574219, -0.8857422, -1.359375, -0.8203125, 1.3291016, -0.6669922, 0.9003906, -2.203125, 1.1376953, 0.9433594, -0.5883789, 1.8837891, 1.7333984, -0.9477539, -2.5859375, 0.6796875, 1.3037109, 2.40625, -0.26708984, -2.7460938, -0.8046875, 2.1953125, 0.6772461, -1.1796875, 0.28198242, -0.03326416, -1.5371094, 0.7446289, 1.0947266, 1.2939453, 1.6259766, 0.79296875, -2.8808594, -0.5126953, -1.4589844, -0.7739258, -2.6484375, -0.44702148, 1.9648438, -0.80078125, 0.45043945, -1.4658203, 1.6611328, -0.8359375, 0.020874023, -3.9746094, 2.5585938, 3.6777344, 2.3496094, 2.5839844, -2.1894531, 0.92333984, 0.50390625, -0.33129883, -0.8642578, 1.1162109, -0.8955078, -1.1308594, 2.640625, 0.79052734, -1.7441406, -1.2285156, 1.1005859, -1.7958984, 0.06365967, -1.9570312, 0.08404541, -0.7080078, 0.059051514, 1.7734375, -0.86328125, 3.3984375, 0.32177734, -1.6533203, 0.92871094, 1.4482422, -0.62939453, -0.06506348, -0.47631836, 0.78222656, 0.5390625, 1.1298828, 1.9785156, -0.9638672, -0.110839844, -0.4753418, 0.85253906, -0.4255371, 1.4414062, 0.15429688, 0.3696289, -1.3164062, -0.8574219, 2.6269531, 1.9306641, 2.4199219, 2.9960938, 1.4833984, -2.5957031, 2.0117188, 0.62353516, -4.0117188, 1.9726562, 1.0390625, -0.18103027, 1.4804688, 1.4345703, -3.5703125, -1.2568359, 2.2792969, -0.33544922, 1.0400391, -1.5654297, -0.5083008, 2.4921875, -1.0058594, -0.12548828, 0.6870117, 0.2241211, 0.7578125, -0.035217285, -0.15722656, -2.2109375, 1.3085938, 1.8554688, -1.2978516, -1.6767578, 1.9570312, -1.6992188, 1.4726562, -1.1054688, -0.45947266, -1.4453125, 0.122802734, 3.4453125, 2.0644531, 1.2802734, 0.6328125, 1.6855469, -0.6635742, 0.75097656, -2.6953125, 3.2050781, -2.0253906, -1.7714844, 0.24768066, -3.1679688, -0.359375, -1.640625, -0.7368164, -0.88427734, 0.44604492, 1.4326172, 0.97753906, -0.8388672, 1.3876953, -1.75, -2.8339844, -0.21765137, 0.0491333, 0.59814453, -0.12646484, 1.8574219, -1.3837891, 0.61376953, 0.59521484, 0.03466797, -0.64746094, 0.5917969, -0.31982422, -0.45581055, -0.49389648, 0.032714844, -1.6621094, 1.6201172, 1.3798828, 0.41210938, 1.0244141, -2.296875, -1.09375, 0.15283203, -0.45410156, 0.7241211, 1.5683594, 1.4091797, -1.7519531, 1.5859375, -0.2368164, -2.2265625, 2.2285156, -1.9511719, -1.4462891, 1.6054688, -0.8051758, 1.9765625, -0.21130371, -0.546875, -0.056549072, -1.4296875, 0.85791016, 2.0410156, -0.8652344, -0.30151367, 1.0791016, 0.32714844, -2.4101562, 1.0361328, -0.8046875, 1.2089844, 0.3984375, -1.2900391, 0.047851562, -1.6074219, -2.28125, 1.8056641, -2.9941406, -0.27001953, -1.1064453, 0.86572266, 2.2792969, 0.37475586, -0.39038086, 1.375, -0.55029297, -1.5888672, -0.11883545, -0.20898438, 4.921875, 4.2304688, -0.7055664, -0.51416016, -1.5615234, 0.30371094, 1.9013672, 1.3496094, -2, 0.4387207, -0.70996094, 0.34960938, -0.4272461, 1.7304688, 1.484375, 0.06903076, -0.74560547, 1.2099609, 3.7402344, -0.7807617, 1.7207031, 1.2890625, -0.56884766, 0.5546875, 4.984375, 0.11352539, -2.7558594, 1.3583984, -2.0273438, 1.5878906, 0.71240234, -0.77734375, -0.3076172, -1.3115234, -1.1376953, -2.3828125, -2.2460938, -1.6591797, 0.96875, 2.0078125, -1.6044922, -0.9086914, 1.4628906, -0.23425293, 3.484375, 2.1464844, 2.3886719, -1.9599609, 0.5371094, -0.71240234, 0.46166992, 0.35766602, -3.5800781, 1.3837891, 0.94384766, -1.1699219, -1.8222656, 1.5771484, -0.0892334, 2.9804688, 0.23620605, 1.3769531, 1.3984375, 2.7910156, 2.0058594, 1.5419922, 1.9248047, 0.024398804, -0.8251953, -0.4477539, 1.0566406, 0.98095703, 0.9394531, -0.028305054, 2.0605469, -1.9677734, -0.36767578, 0.2692871, -0.40844727, 1.3007812, -2.4296875, 0.17822266, 1.5507812, 2.2949219, -1.3183594, -1.5585938, 0.57910156, -0.25268555, 0.26660156, -0.59277344, 2.5996094, 0.97314453, 1.6054688, -1.5371094, -0.8779297, 1.5126953, -3.9726562, 1.2587891, 1.6513672, -0.18347168, -1.3808594, -1.4765625, 1.5986328, 0.49536133, -0.16174316, -0.07208252, 3.453125, 0.7167969, 0.3503418, -2.8496094, -0.70458984, 0.50146484, 4.2578125, -0.5361328, 0.23388672, 1.5449219, -1.6396484, -4.46875, -2.8398438, 3.8125, 2.3925781, 1.9550781, 0.5625, -1.1972656, 3.0488281, -1.6835938, 1.5800781, -0.73095703, 0.32202148, 0.026306152, -2.4785156, 0.056274414, 0.83496094, -0.3840332, 0.54589844, 0.69384766, -0.06732178, 1.2197266, 0.46704102, 1.0634766, 0.54296875, 1.1289062, 1.3457031, 1.1806641, 0.2565918, 1.7119141, -0.15393066, -1.2910156, -2.0039062, 2.859375, 1.2265625, 0.44506836, 0.3125, -0.8642578, -0.40576172, -1.0693359, -0.38085938, 1.9541016, -2.1230469, -1.3935547, 0.38891602, 0.47802734, -1.0722656, -1.2626953, 2.2714844, 2.6152344, 0.34887695, 1.6337891, 2.4882812, -0.6694336, 1.5498047, 0.34985352, 0.75439453, -0.20373535, 0.5527344, 0.11254883, 0.27514648, -1.9462891, 1.8623047, 1.4443359, 0.08081055, -1.2744141, -0.11236572, -1.4443359, 0.12646484, 0.46044922, 0.6225586, -0.44140625, -0.6582031, 2.6835938, -0.24133301, -1.1181641, 2.2539062, -0.76708984, 0.52783203, -2.3417969, -2.796875, -1.2832031, 0.11621094, -1.0019531, 0.39233398, 2.7851562, 0.828125, -0.037506104, -1.9541016, -2.6230469, -1.3085938, -2.5175781, 1.3466797, -2.5175781, -2.1621094, -1.3984375, 0.3828125, 1.7207031, -0.13500977, -0.0012340546, -0.022125244, -2.2402344, 0.9326172, -0.44360352, 0.83447266, -0.8334961, -0.042816162, 1.5195312, 2.8574219, 0.8227539, 0.07763672, 0.09460449, 3.0898438, 0.32543945, -2.1601562, 0.23925781, -0.2602539, 0.41064453, 0.35229492, 0.99560547, 1.4560547, 0.02432251, -0.9760742, 0.28710938, -2.3457031]}, "B002BCSX0Y": {"id": "B002BCSX0Y", "original": "Brand: Weber\nName: Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch\nDescription: Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.\nFeatures: 580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates\nFront-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people\nSide burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner\nEnclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only\nDimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D\n", "embedding": [-1.1875, 2.0273438, 1.4726562, -0.94384766, -1.0263672, 1.0185547, -0.5498047, -1.6259766, 1.7060547, 2.3125, 3.6347656, -0.28051758, 0.84277344, -3.5664062, -0.98779297, 0.8466797, 1.5908203, -0.26904297, 0.7651367, 2.1113281, 0.3046875, -0.4482422, 3.0664062, -2.65625, 1.3720703, 0.9008789, 3.1347656, -5.125, -1.9951172, -1.3222656, 1.3349609, 1.2734375, 1.5566406, 2.0253906, -4.09375, -0.39453125, -3.1894531, 0.16809082, -3.1972656, 0.7290039, -0.76708984, -1.8583984, 1.0185547, -1.0068359, -2.3046875, 0.9916992, 1.5244141, -0.30029297, -1.0087891, -0.8510742, 2.2382812, 0.71533203, 0.3630371, 2.8085938, -0.171875, 2.0214844, 1.2744141, -1.9873047, 1.8398438, 0.6772461, 3.1230469, 0.50439453, -2.8945312, -1.1240234, -1.9794922, -1.6132812, -1.1855469, -0.58984375, 1.1171875, 0.97998047, 3.5546875, -2.0449219, -2.09375, 0.8725586, 2.53125, -1.5009766, -2.7324219, 2.7558594, 0.74072266, -1.5429688, -2.515625, 1.6523438, 0.46362305, -0.9067383, -1.0761719, 1.5859375, 0.43725586, -2.3652344, 1.1494141, 1.9326172, -0.41479492, 1.8662109, -1.8330078, -3.0273438, 2.0527344, -1.5185547, 2.4023438, 0.9790039, -0.4416504, -0.10803223, -2.34375, 2.5488281, -0.80810547, -0.80566406, -2.6308594, -2.2246094, 1.6943359, -0.3815918, -3.0429688, -1.9951172, -1.5898438, 1.1777344, 1.140625, 1.1162109, 0.7109375, 1.3759766, -0.55322266, 2.5585938, 1.5429688, -0.15930176, 2.4453125, -0.69433594, 0.59375, -1.2792969, -1.6074219, 1.1064453, -1.9267578, 2.0644531, 2.7070312, -2.3730469, -2.0097656, -0.8754883, 4.3476562, 0.93066406, -0.06210327, -0.7709961, -2.5273438, -0.084106445, -3.0800781, -0.6176758, -1.5185547, 1.1015625, 0.84521484, -1.4785156, -3.8710938, 0.14099121, 0.51904297, -0.22094727, -0.14074707, -1.1582031, -0.26245117, -2.2949219, -0.30810547, -2.9160156, 1.3564453, -0.11755371, -0.68603516, 0.37817383, 4.0625, 2.3847656, 1.3486328, -1.1269531, -0.8569336, 0.027267456, 1.0029297, -1.1357422, 0.7949219, 1.7890625, -0.1665039, 1.3876953, 0.031951904, 0.3395996, 0.18493652, 0.6870117, 1.5888672, -1.2226562, -0.953125, 2.9648438, -0.58154297, 0.3149414, -0.99316406, -2.9980469, 0.21618652, -0.8486328, 0.3046875, -1.3017578, 1.7382812, -0.064331055, 1.5830078, -1.0888672, -1.3154297, 0.7495117, 2.2832031, -1.1201172, 0.41674805, -0.59521484, -1.5263672, -3.0097656, 0.69628906, -0.75, -0.7714844, -1.0283203, 1.1171875, -0.2824707, -0.62109375, -2.3632812, -0.4104004, -1.6796875, 0.7578125, 2.0449219, 0.08807373, -1.6162109, 1.1191406, -1.5605469, 0.046447754, -1.4130859, 2.8691406, 1.4970703, 1.2607422, 1.9238281, -0.8413086, -0.69628906, 1.7636719, 2.1210938, 0.70214844, 0.75927734, 0.28344727, -0.3930664, -2.6796875, -0.9941406, 2.9824219, -0.35742188, 0.4621582, 1.5029297, -0.26635742, 3.0058594, 1.1494141, -0.93066406, 0.6191406, -1.1435547, 0.80810547, 0.68896484, -2.0488281, -2.0800781, -0.51904297, -0.6767578, -1.796875, 1.0673828, 2.3300781, 0.6352539, 0.22729492, -1.1328125, 2.0097656, 1.7333984, -0.96777344, 1.0810547, -1.8242188, 0.14135742, -0.22241211, -2.4414062, 3.03125, 0.54003906, -0.11779785, -0.31933594, 0.8647461, -1.6113281, 1.8232422, 2.203125, -2.2089844, -2.0273438, 0.6586914, 0.33764648, 1.2275391, -1.9863281, 1.3242188, 1.5888672, -1.1816406, 3.6953125, 0.97021484, 0.4699707, 1.3457031, -1.0947266, 1.8369141, -3.359375, -0.040649414, 0.4404297, 2.1328125, -1.1171875, -1.5546875, -0.5253906, 4.5390625, -0.3955078, -2.5839844, 1.5117188, -2.1347656, 0.23962402, 1.53125, -0.025009155, 0.12561035, 0.40161133, 2.3769531, -1.1367188, 0.7026367, 1.5478516, -0.45874023, -1.7412109, 1.0947266, -2.84375, 1.3847656, 0.9223633, -2.0097656, -0.6254883, -2.0507812, 2.6660156, -2.015625, -0.9116211, 4.5039062, -3.5839844, 1.0566406, -1.1621094, 2.9023438, 0.0011024475, -1.4960938, 0.27661133, -0.8618164, 0.39892578, -0.80810547, 0.25048828, 0.20629883, -0.85498047, -0.2841797, -0.71191406, -1.0146484, -2.6523438, -1.1816406, -1.578125, -3.7128906, -2.6621094, 1.2988281, -1.6474609, -0.11663818, 2.2148438, -3.5, -1.2929688, -0.21020508, -2.1015625, -0.45336914, -0.9692383, 0.13427734, -0.24389648, 1.0546875, 1.2470703, -0.35864258, -3.3691406, 0.64697266, -0.43676758, 0.67822266, -2.1132812, -1.7919922, -0.28955078, -0.70410156, 0.5229492, -1.1113281, 1.2880859, 2.78125, -1.4638672, 0.4675293, -3.5058594, 0.54248047, -3.2324219, 1.6923828, -1.0224609, 2.3730469, -3.6738281, -1.9306641, -1.0263672, -0.86816406, 4.46875, 1.7880859, 1.7255859, 0.8515625, 0.7885742, 0.7636719, 0.101379395, -1.7148438, 1.171875, 2.2070312, -1.1220703, -0.6767578, -2.1933594, 1.0146484, -3.9453125, 0.4543457, 0.03237915, 0.2097168, -1.1113281, -0.8129883, -1.7167969, -1.4091797, -0.66015625, 0.32055664, -0.5234375, -1.7490234, -2.7011719, -1.0400391, -1.3828125, -0.09326172, -0.42529297, 1.6777344, -1.3935547, 1.8007812, 1.546875, -1.7373047, 1.1630859, -1.9541016, -3.7949219, 3.8105469, 0.5810547, -2.5097656, 2.8339844, -3.0703125, -2.4160156, -1.0908203, -1.1337891, 2.1972656, 0.8959961, 1.1474609, 0.41015625, 2.1152344, -1.0947266, -1.9941406, 0.39257812, -1.3330078, 0.52685547, 3.0488281, -4.3945312, -1.6542969, 0.6870117, 2.3183594, -3.7089844, 0.44067383, 3.0175781, 1.4609375, 2.28125, 3.0839844, 0.22802734, 0.19250488, -2.59375, 0.85302734, 2.0117188, -0.6635742, 0.8432617, -0.5444336, 1.4306641, 0.04171753, 0.47021484, 2.3730469, 1.5517578, 2.7578125, 3.0878906, 1.8261719, -1.5908203, -0.61035156, 0.076171875, 1.1826172, 0.20703125, 1.515625, -1.7763672, -0.42260742, -2.2402344, 0.60595703, -0.47875977, -0.03540039, -1.0332031, 2.0332031, 0.18151855, 0.35888672, 0.7636719, 1.4824219, 0.96484375, -0.89697266, 0.46972656, -1.3925781, -1.7412109, 2.1503906, -1.21875, 0.48242188, -1.6855469, -0.01727295, -0.6196289, -2.8867188, 0.71728516, 2.7402344, -1.4882812, -1.2089844, -0.28588867, -0.29248047, 0.31640625, 2.4550781, 1.7402344, -0.77001953, 0.09240723, -2.9121094, 1.5830078, 0.890625, -1.0595703, -1.2978516, 0.15539551, 1.5703125, 0.41064453, 0.68359375, 2.3320312, 0.2734375, -2.3359375, -0.12042236, -4.0039062, -1.4082031, 1.4726562, -2.5800781, -0.76953125, 2.3398438, 0.7714844, 0.8334961, -0.44921875, 3.0058594, -1.7832031, 0.3527832, 1.6552734, -1.9482422, 0.14831543, -4.28125, -3.6484375, 0.6191406, -1.6591797, -0.059692383, 1.3632812, 0.18591309, -0.15234375, 1.8398438, -0.0692749, -1.7548828, -0.43847656, -1.15625, 0.3894043, -0.9892578, 0.52441406, 0.33398438, 0.03564453, -1.5722656, -2.3164062, 1.2519531, 0.87890625, 1.7470703, 0.8208008, -4.3125, 0.27783203, -2.3554688, -0.45996094, -0.4387207, -0.89453125, 0.9272461, -0.27075195, -0.044067383, -3.1210938, 1.7958984, 1.4130859, -2.0742188, 1.578125, 1.5683594, -0.81933594, -2.1074219, -0.1652832, 1.5849609, 3.0332031, -0.515625, -1.6953125, 0.61376953, 0.5498047, 0.2944336, -0.34228516, 0.58447266, 0.4970703, -2.1308594, 1.5263672, 1.7402344, 1.3886719, 1.5507812, 0.19091797, -3.09375, 0.24133301, -0.06072998, -1.1152344, -2.2128906, -0.7026367, 1.046875, -2.0644531, 0.94970703, -2.6640625, 1.2158203, -0.85498047, 0.4892578, -3.7304688, 2.7851562, 4.1289062, 2.75, 2.125, 0.1965332, 0.8105469, -0.8618164, 0.26220703, -0.7241211, 1.4736328, -0.38330078, -0.7006836, 2.4882812, 0.41918945, -0.9736328, -0.53564453, 1.3964844, -1.5859375, -0.3881836, -1.3535156, 1.2275391, -1.4833984, 0.32666016, 1.3007812, -0.03829956, 2.8046875, -0.32885742, 0.33398438, 0.11151123, 1.1191406, -3.1796875, 0.46435547, -0.83691406, -0.18969727, -0.14697266, 1.7275391, 1.7900391, -1.2382812, -0.06173706, -1.6435547, 1.8847656, -0.9111328, 1.2480469, 0.032287598, 1.1328125, 0.09185791, -1.7919922, 1.6298828, 2.4160156, 1.1298828, 2.7949219, 2.0800781, -3.0058594, 1.9960938, 1.0556641, -3.7988281, 1.7900391, 1.8779297, -0.67529297, 2.3808594, 0.5234375, -3.8457031, 0.578125, 2.765625, -0.9555664, 1.1542969, -1.0273438, -1.171875, 2.3125, -1.8261719, -0.074401855, 0.6269531, -0.5253906, 1.4970703, 0.8041992, 0.63623047, -2.3847656, 1.9208984, 1.2207031, -2.4589844, -1.4560547, 1.671875, -1.6367188, 0.35864258, -0.85058594, -1.1914062, -1.7880859, 0.16137695, 3.359375, 1.2851562, 1.0947266, 0.9868164, 2.4472656, -1.1669922, -0.112854004, -1.7060547, 3.3652344, -2.6191406, 1.859375, 1.5556641, -3.5019531, -0.4645996, -1.5693359, -0.4880371, -0.6982422, 1.953125, 1.3486328, 0.7011719, 0.74560547, 0.93115234, -1.6894531, -4.9453125, -0.14294434, -0.13928223, -0.2331543, 0.8510742, 1.5488281, -0.6333008, 2.1972656, 0.82470703, -1.3623047, -1.5029297, 0.79345703, 0.36816406, 0.2944336, -1.0273438, -0.18945312, -1.0029297, 0.027282715, -0.10632324, 1.921875, 0.05996704, -2.1679688, 0.52197266, 0.6069336, -1.0976562, 0.29711914, 1.6865234, 1.03125, -0.48583984, 0.70947266, 0.9399414, -1.7041016, 2.3222656, -2.4882812, -1.71875, 1.4306641, -1.4697266, 0.6245117, -0.020095825, -0.8251953, 1.046875, -0.68896484, 1.5947266, 2.0332031, -0.9160156, -1.2294922, -0.8647461, -0.01852417, -1.5830078, 1.4384766, -1.4775391, 0.92822266, 3.3808594, -1.3955078, -1.4326172, -1.3408203, -3.1738281, 1.9541016, -2.734375, -1.2050781, -2.765625, 1.015625, 1.4707031, 0.1385498, -0.43603516, 0.3857422, -1.0029297, -0.8491211, 0.89941406, -0.59033203, 5.9765625, 2.390625, -1.8544922, 0.98046875, -0.5703125, 0.44433594, 3.1835938, 0.010879517, -2.359375, 0.95410156, -0.5732422, 2.6875, -0.036834717, 1.21875, 1.25, 1.0566406, -0.39746094, 0.8540039, 3.3808594, -0.6982422, 2.4199219, 1.4511719, 0.087646484, -0.0020694733, 3.9765625, 0.9614258, -3.2265625, 2.3691406, -1.5917969, 0.57177734, -0.8613281, -1.1572266, -0.37060547, 0.6074219, -1.7070312, -2.8378906, -1.8544922, -1.4365234, 2.0742188, 2.2011719, -2.1601562, -0.75683594, 1.2197266, -0.114746094, 2.0253906, 1.5166016, 1.9970703, -2.0332031, 0.6435547, 0.6767578, 1.1835938, 0.8798828, -4.0429688, 1.4511719, 1.4990234, -0.375, -0.7763672, 2.4394531, 1.7167969, 2.3984375, -1.6474609, 0.31103516, 1.3583984, 1.5693359, 2.25, 0.6977539, 4.109375, 1.4746094, -0.93310547, 0.11694336, 1.3701172, 1.1435547, 0.45361328, -0.8857422, 1.984375, -1.2685547, -0.1484375, 0.10632324, -0.4873047, 0.68603516, -1.2607422, 0.33764648, 0.7109375, 0.4399414, -0.80371094, -0.84228516, -1.6738281, -0.45043945, -0.3996582, -0.24157715, 2.6621094, 0.38720703, 0.79541016, -1.6435547, -0.19616699, 0.69970703, -5.2539062, 0.11419678, 0.64697266, -0.24853516, -0.87060547, -1.3388672, 1.2861328, 1.0058594, -1.7119141, 0.22253418, 4.78125, 0.2446289, -0.08129883, -2.5683594, -0.48461914, -0.734375, 5.0546875, 0.31445312, -0.7871094, -0.13452148, -0.35986328, -4.4609375, -3.5957031, 2.9804688, 3.7753906, 1.421875, 0.9350586, -1.0458984, 3.1464844, -1.4541016, 0.68359375, -1.4384766, -0.31274414, -0.3618164, -2.1582031, -1.1416016, 0.35742188, -0.47729492, 0.1472168, 0.4321289, 1.3964844, -0.019836426, 0.8701172, 1.7539062, 2.015625, 1.375, 2.2480469, 1.1484375, -2.2675781, 3.6523438, -0.02557373, -1.5302734, -2.0996094, 2.2519531, 0.06414795, -0.5620117, 0.54345703, -1.4902344, -0.21948242, -2.3359375, 0.48828125, 0.30664062, -1.7685547, -0.9067383, 0.16442871, 0.04901123, -1.0761719, -0.28198242, 1.2705078, 2.2050781, 0.20166016, 2, 2.0019531, -1.1103516, 1.6328125, 0.38354492, -0.3232422, 0.026016235, 1.5693359, 0.6855469, 0.7480469, -1.8183594, 0.890625, 1.5644531, -0.25024414, -1.2988281, 0.70703125, -2.2382812, -1.4736328, -1.6259766, 1.1777344, 0.79296875, -1.5048828, 3.8613281, -0.35961914, -0.0154953, 1.5683594, -0.31054688, -0.5629883, -1.9228516, -2.0703125, -0.8886719, 0.1427002, -1.4833984, 1.2763672, 3.7226562, 0.5078125, -0.84472656, -0.25512695, -3.4941406, 0.08880615, -2.5664062, 1.8623047, -2.3261719, -1.484375, -1.2138672, 0.19177246, 0.33618164, -0.3642578, -0.8120117, -1.0810547, -1.8632812, 0.30029297, -1.2636719, 1.1787109, -0.80126953, 0.15234375, 1.5351562, 3.71875, 2.1445312, 0.24719238, 0.46191406, 4.421875, 0.5288086, -2.484375, -0.9355469, 0.38378906, 0.36083984, -1.1298828, -0.4008789, 2.7695312, -0.40625, -1.5185547, -0.6850586, -2.1152344]}, "B010ILB4KU": {"id": "B010ILB4KU", "original": "Brand: Weber\nName: Weber 51040001 Q1200 Liquid Propane Grill, Red\nDescription: \nFeatures: One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area\nPorcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body\nBuilt-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan\nDimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings\nUses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box\n", "embedding": [-0.35546875, 0.39819336, 1.7177734, 0.091918945, -2.109375, 0.85546875, -0.4777832, -0.95654297, 0.1005249, 1.8203125, 2.5332031, 0.53027344, 0.2088623, -3.4199219, 1.2363281, 0.5678711, 2.640625, 0.9316406, 0.36499023, 0.15063477, 0.44921875, 1.1181641, 1.3779297, -1.3496094, 1.9287109, 1.5732422, 4.6679688, -4.9414062, -1.6601562, -2.2011719, 1.0673828, 1.8681641, 0.92871094, 1.2998047, -3.0742188, -0.8496094, -3.6464844, 1.8183594, -2.1484375, 0.7246094, -0.86816406, -2.0410156, 1.0371094, -0.0034503937, -2.1191406, 0.7729492, 0.9658203, -0.22851562, -0.7597656, -0.5942383, 2.7539062, 1.1367188, -0.76416016, 1.4833984, -0.7167969, 2.4277344, -0.4958496, -1.6455078, 1.4296875, -0.41992188, 2.1269531, -0.64501953, -2.7070312, -0.52001953, -1.1083984, -0.0076675415, -1.1435547, -0.98535156, 1.9160156, 0.43164062, 3.6269531, -2.1933594, -0.8959961, 0.30444336, 1.9160156, -1.0849609, -2.1933594, 2.3867188, 1.3427734, -1.4746094, -1.1503906, 2.3808594, 0.6767578, -2.6035156, -0.08300781, 0.6933594, 0.06665039, -2.3476562, 3.2773438, 2.8222656, -0.15441895, 1.4199219, -2.5488281, -3.9472656, 1.5898438, -0.7055664, 1.1298828, 1.3457031, 0.7685547, 1.2373047, -2.1542969, 0.9472656, -1.7392578, -2.2167969, -2.5429688, -1.1523438, 0.82470703, 0.45581055, -3.6621094, -1.6738281, -1.5498047, 0.671875, 0.5600586, 1.2373047, 1.1201172, 1.0849609, 0.25512695, 1.9658203, 1.0625, 0.28759766, 2.6699219, -1.1064453, 0.2709961, -1.1259766, -0.4729004, 0.11804199, -0.9223633, 1.0791016, 2.6855469, -2.3320312, -1.1337891, -0.09832764, 3.9960938, 0.32617188, -0.40722656, -0.29492188, -1.6660156, -0.9145508, -1.9765625, -0.22009277, -1.1855469, 0.9248047, 0.8779297, -0.3010254, -3.9121094, -0.3959961, 0.5629883, 1.1083984, 0.19384766, -1.5966797, 0.67578125, -1.6767578, -0.6435547, -0.5996094, 1.5595703, 1.0166016, -1.6396484, -0.07159424, 3.5644531, 1.8242188, 1.3925781, -0.74853516, -0.59814453, 0.53759766, 0.59716797, 0.8286133, 1.4453125, 1.5, -0.99365234, 1.4033203, -0.5083008, -1.0898438, -0.6640625, 0.9355469, 1.0625, -1.921875, 0.3149414, 1.9580078, -0.5053711, -0.6791992, -1.5791016, -2.5820312, -0.048217773, -0.14355469, 0.4711914, -0.7055664, -0.20263672, -0.7480469, 1.34375, -1.7744141, 0.703125, 0.34155273, 1.7529297, -1.25, 0.5463867, -0.9946289, -0.5878906, -2.2519531, 0.85791016, -0.009101868, -0.5957031, -0.93408203, 1.1572266, 0.9746094, -0.14453125, -2.3164062, -0.5107422, -2.1035156, 1.1835938, 1.5087891, 2.3691406, -1.8681641, 1.1699219, -1.1591797, -0.18823242, -2.5722656, 1.8759766, 0.007194519, 0.71435547, 2.0898438, -2.1835938, -0.21716309, 0.7602539, 2.5351562, 0.94091797, -0.52734375, 0.47827148, 0.3190918, -3.2675781, -0.50439453, 3.2675781, -0.015029907, -0.6767578, 0.09515381, 0.6303711, 2.875, 1.2822266, -0.49414062, -0.012741089, -0.7128906, 0.13049316, 0.9667969, -1.6816406, -1.6630859, 0.0045928955, -0.12939453, -2.5175781, 1.5732422, 1.2060547, -0.040527344, -0.0847168, -0.51123047, 0.6928711, 1.1845703, -0.79833984, 0.98828125, -2.078125, 1.2568359, -0.21801758, -2.8125, 2.2617188, 0.1427002, -0.40283203, 0.13012695, 1.1367188, -1.2353516, 2.8027344, 2.5722656, -1.6396484, -1.1679688, 0.671875, 0.1862793, 0.52685547, -1.2255859, 1.3994141, 1.6816406, -1.7519531, 2.3789062, 0.80566406, 0.46313477, 0.2866211, -0.89697266, 1.8085938, -3.5117188, -0.53515625, 0.1640625, 0.35009766, -1.4306641, -2.3808594, -0.14648438, 3.515625, 0.39916992, -2.2617188, 3.6679688, -2.4414062, 0.5957031, 1.6552734, -0.37573242, -0.43139648, 0.22363281, 2.0117188, 0.10986328, 0.21838379, 1.3183594, 0.14575195, -2.0976562, 0.097839355, -3.7988281, 1.1845703, 1.8046875, -0.62109375, -1.1386719, -2.4238281, 1.6132812, -2.5058594, -2.5117188, 2.1132812, -4.578125, 0.2619629, -1.5419922, 2.2675781, 0.19763184, -1.4570312, -0.7167969, -1.5849609, -0.18078613, -0.9091797, 0.51660156, 0.42236328, -1.9316406, -0.4880371, -0.6875, -0.22607422, -1.7666016, -1.3339844, -1.5234375, -1.9189453, -3.3105469, 1.9941406, -1.0859375, 0.013717651, 2.0898438, -3.046875, 0.28979492, 0.9145508, -3.4746094, -0.64453125, -1.6767578, -0.8666992, -1.2832031, 1.1943359, 1.015625, -1.4355469, -4.265625, 0.7470703, -0.30737305, 0.41992188, -0.8105469, -0.7680664, -0.7114258, 0.9238281, -0.48364258, -0.6176758, 0.80371094, 1.9638672, -1.46875, 1.046875, -1.8994141, 0.5083008, -2.4199219, 0.9511719, 0.39819336, 0.7753906, -3.3164062, -1.7050781, -0.9707031, -0.6401367, 3.9726562, 0.2685547, 1.2861328, 0.38916016, 1.5205078, 1.4824219, -0.15002441, -1.96875, 1.2441406, 0.56640625, -1.6972656, -1.5546875, -3.6894531, -1.2578125, -2.9726562, 0.11352539, 0.43676758, -0.042785645, -2.2832031, -1.0410156, -0.6430664, -1.0507812, -0.19848633, 0.24267578, -0.96191406, -1.3798828, -2.5742188, -0.9140625, -1.6113281, 0.91064453, -1.1035156, 1.9677734, 0.61376953, 1.6162109, 2.4511719, -0.4975586, 1.7626953, -1.2871094, -4.609375, 4.0234375, 0.83984375, -2.8847656, 1.2490234, -2.2382812, -3.0566406, -1.3652344, -0.04031372, 2.3222656, 2.2792969, 2.5117188, 2.1367188, 1.328125, -0.4494629, -1.1005859, 0.32495117, -1.3457031, 1.2675781, 3.125, -2.6835938, -2.0195312, 0.8022461, 1.4072266, -3.546875, -1.2060547, 2.1054688, 1.6162109, 2.859375, 1.7314453, 1.9453125, -0.68847656, -0.6845703, 1.78125, 2.0273438, -0.8417969, 0.1517334, -0.20361328, 1.1923828, -0.45214844, 1.3457031, 2.5195312, 0.7558594, 1.4248047, 2.8242188, 1.3046875, -0.13208008, -0.49145508, 0.03579712, 0.8383789, 0.4020996, 2.0351562, -1.0263672, 0.15124512, -0.6020508, -0.87402344, -0.08892822, -0.35180664, -1.0390625, 3.3574219, 0.8066406, -0.66064453, 1.2695312, 2.078125, 1.2216797, -0.36694336, -0.20788574, -0.66552734, -0.27319336, 2.5742188, -0.87353516, 0.039398193, -1.3173828, 1.03125, 0.07196045, -2.1347656, 0.18920898, 3.15625, -1.8652344, -1.2919922, 0.2705078, -1.3535156, 0.14538574, 1.6337891, 1.1044922, -1.1220703, 0.59375, -2.4707031, 1.6689453, -0.12487793, -1.3798828, -0.8642578, -1.2597656, 0.6621094, 0.49731445, 1.8652344, 2.5449219, 0.17687988, -2.421875, 0.4169922, -4.0351562, -2.5625, 0.81591797, -2.5332031, -0.82470703, 1.3125, -0.19824219, 1.5322266, 0.29077148, 2.3828125, -1.0810547, 0.55078125, 1.7900391, -2.0371094, -0.7368164, -3.5722656, -4.3164062, -0.18444824, -0.9790039, -0.27661133, 1.5878906, 0.06689453, 0.07232666, 2.7421875, 0.7060547, -2.1035156, -1.1533203, -1.3974609, 0.52197266, -0.56591797, 1.6396484, 1.5556641, -0.6953125, -2.0332031, -1.9189453, 0.12463379, 0.40405273, 1.3730469, 1.5244141, -4.5273438, 0.57177734, -1.6679688, -0.37451172, -1.0439453, -0.17053223, 1.4296875, 1.7529297, 0.093933105, -2.0976562, 1.8847656, 0.44458008, -0.050323486, 2.7089844, 2.3730469, -0.5786133, -3.5039062, 0.62939453, 1.8007812, 3.1855469, -0.6254883, -1.7871094, -0.73828125, 0.9555664, -0.9345703, 0.8261719, 0.09313965, 0.79589844, -1.0097656, 1.2060547, 1.6660156, 1.5673828, 1.4853516, 0.6010742, -2.1894531, 0.63916016, -0.28027344, -3.125, -1.6289062, 0.12432861, 0.671875, -1.1416016, 0.29492188, -2.0136719, 0.69873047, -0.38671875, -0.6118164, -4.1289062, 3.375, 3.8359375, 2.2695312, 2.4726562, -0.8515625, 1.0605469, -0.4416504, -0.44140625, 0.12561035, -0.12670898, -0.26171875, -0.12219238, 2.8769531, 1.1035156, -1.4169922, 0.050476074, 1.6113281, -1.5947266, 0.04333496, -2.3339844, 1.1923828, -1.1650391, -0.28027344, 0.71484375, -0.6220703, 1.5722656, -0.27001953, -0.57666016, -1.1328125, 0.69433594, -1.1337891, 0.14660645, 0.18615723, 0.3955078, -0.21899414, 0.5644531, 1.3447266, -0.9458008, -0.62402344, -1.09375, 0.97265625, -1.4111328, 0.033569336, 0.29418945, 0.8261719, -0.78515625, -0.6567383, 1.3183594, 2.2089844, 1.6269531, 3.3730469, 2.3476562, -1.6337891, 1.8730469, 1.1484375, -1.9150391, 2.0976562, 1.0927734, -0.94433594, 2.5644531, 0.09741211, -4.3671875, -0.17590332, 1.2148438, 0.32055664, 0.61816406, -1.7333984, -0.70996094, 1.390625, -1.796875, -0.6850586, -0.46313477, -1.0175781, 0.6948242, 0.25219727, 0.28637695, -1.4902344, 1.5390625, 2.1054688, -1.1962891, -1.7783203, 1.3261719, -1.5048828, 0.48339844, -1.0166016, -1.3867188, -2.0410156, -0.70751953, 2.3359375, 1.1142578, 0.76220703, 0.18774414, 1.9208984, -0.77441406, -0.016448975, -1.0810547, 2.3613281, -3.3046875, 0.032562256, 1.3173828, -3.8417969, -0.078552246, -2.2226562, -1.1679688, -0.059295654, 1.6992188, 1.7441406, -0.27148438, -0.09454346, 1.2519531, -1.7421875, -3.5625, -0.6274414, 0.10809326, 0.13415527, 1.1308594, 0.93310547, -0.9238281, 1.4951172, -0.5493164, 0.080444336, -0.57958984, 0.60839844, -0.73583984, -0.3034668, 0.21911621, 0.4333496, -1.4355469, 0.6069336, 0.5317383, 1.4599609, 0.42700195, -1.28125, -0.37841797, 0.27270508, -0.9555664, -0.023757935, 2.609375, 1.5927734, -0.52783203, 0.9526367, 1.5166016, -3.59375, 3.0117188, -2.0957031, -2.0253906, 1.0351562, -0.36914062, 0.9526367, -0.80566406, -0.6479492, 0.06402588, -0.5957031, 1.5039062, 1.3408203, -0.64453125, -0.72216797, -0.21520996, 0.20361328, -0.5209961, 1.1533203, -0.30981445, 0.30859375, 2.4296875, -1.0253906, -1.0351562, -1.5625, -2.7949219, 0.64697266, -2.1308594, -1.2783203, -1.7919922, 0.25146484, 1.6845703, 0.87646484, -1.4707031, 2.3222656, -0.92089844, -1.0546875, 1.3916016, -0.4934082, 5.0585938, 3.9414062, -1.2792969, -0.22766113, -1.3613281, 1.1279297, 2.1523438, 0.025527954, -1.1894531, -0.18554688, -0.45410156, 0.30615234, -0.27661133, 1.4111328, 1.3505859, -0.1262207, -0.016616821, 1.3896484, 3.6367188, -1.96875, 2.09375, 0.7602539, 0.99902344, -0.04736328, 3.7734375, 0.11053467, -2.6542969, 1.1777344, -2.5371094, 1.7480469, -1.4824219, -0.9633789, -0.29785156, -0.62890625, -1.9423828, -2.2324219, -1.7363281, -2.1308594, 1.7216797, 2.2246094, -1.8691406, -0.72558594, 1.5898438, -0.52197266, 2.1445312, 1.8466797, 1.8183594, -1.3974609, 0.19104004, 0.068115234, 0.44360352, 1.8896484, -4.1679688, 2.1621094, 1.5283203, -0.45874023, -2.0761719, 1.8398438, 0.021713257, 1.6113281, -0.19177246, 2.2519531, 2.0117188, 2.1308594, 2.4003906, 0.9589844, 3.8203125, 0.86816406, -1.0244141, 0.79248047, 1.6152344, 0.5566406, 1.2138672, -2.0332031, 1.8076172, -1.6152344, -0.50146484, -0.14855957, -1.21875, 1.5947266, -2.2363281, 0.92626953, 0.80810547, 2.0625, -0.63720703, -0.44091797, -0.17016602, 0.47216797, 0.25708008, -0.8227539, 2.9960938, 1.2236328, 0.48828125, -0.1673584, -0.0118255615, 1.2382812, -4.1289062, 1.3007812, 0.7783203, -1.8212891, -0.7836914, -1.9335938, 1.5703125, 0.2479248, -0.42944336, 0.39746094, 3.7011719, 0.9746094, 1.0859375, -1.5888672, -0.8457031, 1.0458984, 3.5585938, 0.3803711, -0.043762207, 0.21618652, -0.49023438, -4.1757812, -3.7695312, 3.3378906, 2.6777344, 1.1289062, 0.057159424, -1.5839844, 3.9902344, -0.8666992, 0.26220703, -0.68310547, 0.64404297, -0.01550293, -3.9511719, 0.7211914, 0.008377075, -0.6376953, 0.88134766, 0.22729492, 1.0761719, 0.9223633, 1.3496094, 1.3642578, 0.38012695, 1.6103516, 2.3808594, 1.5566406, -2.0996094, 2.4785156, -0.6635742, -1.8730469, -1.4267578, 2.2910156, 1.4111328, 0.11383057, 0.24365234, -1.546875, -0.12536621, -1.2978516, -0.033996582, -0.38085938, -2.1855469, 0.6748047, 1.1884766, 0.6069336, -1.2978516, -0.19702148, 2.3222656, 2.2382812, -0.1161499, 0.72265625, 2.7109375, -0.98291016, 1.3808594, -1.1865234, 0.7338867, 0.17675781, 1.4755859, 0.75097656, -0.07409668, -0.9458008, 0.20422363, 1.7236328, 0.2175293, -0.7944336, -0.059692383, -0.95751953, -0.9868164, -0.43041992, 0.025909424, 0.1772461, -2.15625, 2.6660156, -0.49414062, -0.7373047, 2.0195312, -0.1373291, -0.05545044, -2.6132812, -2.5253906, -1.2460938, -0.22473145, -0.77978516, 2.1679688, 3.5625, -0.625, -0.29858398, -1.7265625, -3.3828125, -1.1542969, -3.4160156, 2.0703125, -0.8486328, -1.7441406, -1.6552734, 0.58984375, 1.4980469, -0.44921875, -0.44995117, -0.28979492, -2.3554688, 1.203125, -0.7895508, 0.11968994, -1.0976562, -0.022994995, 1.7109375, 2.9804688, 0.89697266, 0.6064453, 0.15161133, 3.1660156, -0.3828125, -2.1015625, -0.025039673, 1.1796875, 0.75927734, -0.80908203, 0.7211914, 2.1425781, -0.17590332, -0.30908203, -0.35595703, -2.8007812]}, "B07H5Z54J8": {"id": "B07H5Z54J8", "original": "Brand: Weber\nName: Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "embedding": [-1.5869141, -0.10522461, 1.9716797, -0.44873047, -1.1835938, 1.0332031, -0.29077148, -1.0917969, 1.4228516, 0.55810547, 1.5078125, -1.3105469, 1.5703125, -3.0195312, 0.078063965, 0.23632812, 2.3535156, 1.8857422, -1.3183594, 0.58496094, 1.8134766, -0.6591797, 0.7314453, -1.4501953, 1.0009766, 1.4335938, 4.3398438, -6.78125, -0.5991211, -0.8652344, 2.2050781, 0.5654297, 1.0654297, 2.6503906, -2.65625, -1.59375, -2.078125, 1.3251953, -2.8164062, 1.453125, -0.3564453, -1.1083984, 1.4863281, -0.32080078, -0.88964844, 1.2744141, 0.5839844, 0.42749023, -1.8574219, 0.29418945, 4.1132812, 1.5556641, 0.05053711, 0.87890625, -0.12298584, 2.46875, -0.37109375, -1.0078125, 2.2539062, 0.29077148, 1.6474609, -1.3271484, -2.84375, -1.4667969, -1.2646484, -0.4267578, 0.8857422, 1, 0.4008789, -0.859375, 4.3671875, -0.5517578, -1.7695312, 0.61376953, 0.59521484, -2.4960938, -1.8066406, -0.03967285, 0.60253906, -1.4355469, -1.9013672, 2.5761719, 1.9921875, -3.1113281, -0.0847168, 1.2919922, 1.3271484, -2.4882812, 1.6464844, 0.6875, -0.35742188, 0.058441162, -1.4150391, -3.0546875, 1.6220703, -0.31518555, 1.578125, 1.1865234, -1.2597656, 2.03125, -1.4619141, 1.1748047, -1.4677734, -1.1103516, -3.9082031, -2.0195312, 1.4316406, -0.5078125, -2.0898438, -0.9580078, -1.3603516, 0.49047852, 1.7529297, 2.1679688, 1.4033203, 1.6357422, 0.13244629, 1.5, 0.32836914, 0.94433594, 3.1171875, -1.5449219, -0.11621094, -1.1982422, -1.3789062, -2.3007812, 0.22644043, 0.79785156, 3.8769531, -2.0800781, -0.37695312, 0.51953125, 4.21875, 0.28100586, -1.59375, -1.7050781, -0.73535156, -0.703125, -3.4160156, 0.5019531, -0.39257812, -0.4868164, 1.4433594, -1.2509766, -3.3867188, 0.29663086, -0.953125, 0.19396973, 0.45239258, -1.7402344, 0.72265625, -1.046875, -0.80615234, -1.3808594, 1.7167969, 0.18518066, -1.0195312, 0.86376953, 2.59375, 2.3457031, 2.2675781, -1.1933594, -1.4306641, -2.0683594, 1.6914062, 1.59375, 0.72753906, 1.4873047, -0.37890625, 1.7763672, -0.6430664, -1.5029297, -0.70996094, -0.006252289, 1.9091797, -2.59375, -0.80566406, 0.58203125, -0.31518555, 1.0751953, -0.9506836, -0.80322266, 0.31811523, -1.4589844, 0.3071289, -0.44921875, -0.2076416, 0.31054688, 2.8222656, -0.75390625, 0.5449219, -0.7597656, 1.2861328, 0.2866211, -0.14294434, -1.5966797, -1.4599609, -0.3840332, 2.53125, -1.3574219, -0.7207031, -0.7290039, 1.1533203, 1.0214844, -1.09375, -2.703125, -1.8369141, -2.6757812, 1.0146484, 1.3105469, 1.5820312, -0.6196289, 0.7885742, -1.2978516, -0.4934082, -0.98779297, 3.1132812, 1.7470703, 0.7109375, 1.2177734, -0.8417969, -1.4628906, 0.37841797, 1.1113281, 0.22692871, 1.3300781, 1.3720703, -0.6088867, -3.7773438, -1.1425781, 2, -0.40698242, 0.34228516, 0.55859375, 1.1289062, 2.78125, 1.078125, -0.98876953, -0.22143555, 0.72509766, -0.63378906, 0.32421875, -2.6855469, -1.8339844, -0.6542969, 0.05267334, -1.5527344, 2.6464844, 0.27124023, 1.1220703, 0.44873047, -0.4946289, 1.4404297, 0.43017578, 0.38330078, 0.58251953, -1.1591797, 2.1503906, 0.62841797, -2.6777344, 1.7998047, 0.8823242, 0.36108398, 0.5004883, 0.8935547, -1.4248047, 1.2216797, 2.7011719, -1.3115234, -1.6777344, 1.3183594, -0.033081055, 0.48291016, -0.54248047, 2.7402344, 1.9960938, -0.48413086, 2.7304688, 0.07409668, 1.4072266, -0.4921875, -0.8125, 0.89501953, -3.03125, -0.13793945, 0.28833008, 0.9082031, -1.6777344, -1.8027344, 0.65966797, 3.7421875, -0.5571289, -2.6542969, 2.78125, -1.3759766, 0.36083984, 1.8564453, -0.41479492, -0.14892578, 1.1787109, 1.8291016, -0.40625, 1.9570312, 0.96484375, -0.2849121, 0.3095703, 1.0146484, -2.4042969, 0.3330078, 1.4589844, -1.2880859, -1.0478516, -1.8408203, 1.5224609, -2.3691406, -0.69921875, 1.8330078, -3.1972656, 1.0234375, -1.6796875, 2.6875, 0.52978516, -2.5800781, -0.98828125, -1.0722656, 0.29077148, -0.9814453, 1.0302734, 0.36010742, -2.7226562, -0.26879883, -0.40185547, -0.5341797, -2.7070312, -1.2490234, -2.0566406, -2.2480469, -2.796875, 1.1435547, -1.203125, -0.77246094, 1.1630859, -1.6015625, 0.6635742, 0.97753906, -2.6660156, -0.11279297, -0.19018555, -0.25634766, -1.1005859, 1.0097656, 0.5649414, -1.0078125, -1.8662109, 0.5336914, -1.9619141, 1.5292969, -0.4399414, -0.08062744, 1.2949219, 1.2402344, 0.6123047, 0.020248413, 1.3896484, 1.8974609, 0.27905273, 2.2070312, -2.4609375, -0.8076172, -3.3554688, 1.3457031, -0.0060157776, 1.1142578, -3.4980469, -1.9384766, -0.18566895, -1.5478516, 3.6542969, 1.0029297, 0.6879883, 0.4777832, 0.76464844, 1.2138672, -1.7724609, -1.4091797, 0.40722656, 0.5336914, -2.0292969, -1.1445312, -1.9042969, -1.4921875, -2.0195312, 0.57421875, 0.42089844, -1.2001953, -2.4355469, 0.3647461, -2.2753906, -0.73828125, -0.92041016, 0.14025879, 0.00051259995, -2.3476562, -2.2382812, -0.015541077, -1.6611328, -0.96484375, -1.4013672, 1.2841797, -0.19348145, 0.28759766, 1.1992188, -1.7539062, 1.4355469, -1.0214844, -4.5625, 2.4003906, -0.28686523, -2.9980469, 2.8339844, -2.6679688, -1.6005859, -3.5546875, -0.46484375, 3.0058594, 2.0917969, 0.20446777, 0.79833984, 1.4873047, -0.8491211, -1.0800781, 0.7988281, -1.5517578, 0.3059082, 2.8398438, -2.5566406, -0.54003906, 0.80810547, 1.1132812, -1.8925781, -2.2539062, 3.0058594, 2.484375, 2.2109375, 0.94970703, 2.1660156, 0.73339844, -1.5458984, 0.36450195, 0.4399414, -0.49975586, 0.5751953, -0.39233398, 0.63964844, -1.8203125, 2.6054688, 1.1240234, 0.87890625, 1.0478516, 2.3554688, 1.3554688, 0.28222656, -0.5439453, -0.21972656, -0.2133789, -0.5678711, 2.234375, -2.0058594, -0.007610321, 0.32885742, -1.5048828, 0.8515625, -0.0904541, -1.3613281, 2.8300781, 0.5019531, -1.5361328, -0.18103027, 2.40625, 1.3603516, 0.5957031, -0.4494629, -1.8876953, -1.515625, 1.6650391, -0.9716797, -0.22607422, -2.3457031, 0.012397766, -1.6113281, -2.9160156, 1.2763672, 4.0078125, -1.1464844, -1.4072266, 1.0654297, -1.7158203, -0.67041016, 2.3105469, 0.94873047, -1.6816406, 0.50146484, -1.7636719, 1.4277344, 0.28979492, -0.39111328, -1.1552734, 0.42504883, 0.37890625, -0.6635742, 1.6953125, 1.84375, 0.06414795, -1.7021484, 0.72509766, -3.9746094, -1.8291016, 0.5805664, -2.3066406, -2.1601562, 3.6367188, 0.3701172, 1.0654297, -0.51171875, 3.7714844, -1.1103516, 0.88134766, 2.3691406, -2.6953125, 1.3525391, -3.734375, -2.9472656, -0.38061523, -1.0439453, 0.38867188, 1.7304688, 0.27905273, 1.0087891, 2.8320312, 1.515625, -2.015625, -0.7524414, -0.9770508, -0.2734375, -0.8964844, 0.16101074, -0.41479492, -1.1230469, -2.6367188, -2.2636719, -1.2763672, -0.953125, 0.048706055, 3.0585938, -3.4511719, 0.61328125, -0.42895508, -1.3144531, -2.5585938, -0.043670654, 1.7685547, 0.0690918, 0.70751953, -2.7382812, 0.6176758, 0.85839844, -0.97509766, 2.2949219, 1.9365234, -0.82128906, -2.6035156, 1.4921875, 1.4335938, 3.3300781, -1.2871094, -2.96875, -0.48242188, 2.34375, 0.73339844, -1.5693359, -0.12512207, 0.79785156, -1.3222656, 1.28125, 0.8120117, 1.7392578, 1.6591797, -0.2902832, -2.5117188, 0.48339844, -0.6269531, -0.0047569275, -1.4228516, -0.048950195, 1.0878906, -1.4277344, 0.35424805, -2.2441406, 3.2421875, -1.6386719, -0.099853516, -4.3945312, 2.4550781, 3.6289062, 2.8671875, 3.0253906, -1.4160156, 0.9013672, 0.84228516, -0.60595703, -0.7685547, 1.2773438, -1.8027344, -0.70751953, 2.8613281, 0.29077148, -1.9208984, -0.92333984, 1.0576172, -1.6123047, 0.6948242, -1.9111328, -0.7866211, -0.8105469, 0.28515625, 1.4228516, -0.75634766, 4.015625, -1.1035156, -0.8564453, 0.7548828, 1.5449219, 0.19116211, 1.4941406, 0.8652344, 0.7495117, -0.42626953, 1.4042969, 1.765625, -0.8125, 1.5126953, -1.7558594, 0.2602539, -2.1425781, 0.6381836, 1.6337891, 0.20275879, -0.6147461, -0.22045898, 1.5273438, 2.7714844, 2.3671875, 2.4003906, 1.9042969, -2.7148438, 2.65625, 0.9140625, -3.5859375, 1.9179688, 1.2734375, 1.0292969, 2.1933594, 1.9824219, -3.3339844, -0.029785156, 2.1738281, -0.037750244, 0.86865234, -1.0585938, -0.6435547, 3.0019531, -1.8525391, -1.3408203, -0.2866211, -0.5258789, 0.9589844, 0.94628906, 0.14819336, -2.5, 1.3056641, 2.5761719, -1.4179688, -2.8261719, 1.5693359, -0.8745117, 0.3647461, -2.2011719, -0.5234375, -1.7021484, -0.3515625, 2.8632812, 2.2792969, 1.4306641, -0.2536621, 1.2001953, -1.4736328, -0.4633789, -2.5273438, 1.7685547, -1.9599609, -1.8779297, 0.6118164, -2.8339844, 0.5859375, -1.7470703, -1.8671875, -0.625, 1.0234375, 0.44995117, 0.5878906, -1.2236328, 0.92626953, -1.5234375, -2.6210938, -0.7084961, 0.48632812, 0.1850586, 0.8305664, 1.8779297, -1.3007812, 0.049865723, -0.66259766, -0.05493164, -1.6982422, 0.671875, -1.0039062, -1.1103516, -1.0712891, -1.0087891, -1.7958984, 0.9448242, 1.9677734, 0.08099365, 0.9609375, -3.0488281, -0.5600586, 0.86865234, -0.7495117, 1.1181641, 1.6435547, 0.56103516, -0.5649414, 1.2832031, 0.7338867, -2.0957031, 2.59375, -2.0878906, -0.87060547, 1.5029297, -0.2878418, 1.2265625, -0.47558594, 0.25854492, -0.1920166, -0.8027344, 2.2304688, 2.0839844, -1.7861328, -0.73095703, 1.6523438, -0.57177734, -1.0292969, 0.74609375, -0.047332764, 1.1845703, -0.08496094, -1.4658203, -0.49926758, -1.6015625, -1.6386719, 1.7773438, -3.4824219, -0.73339844, -0.9296875, 0.63378906, 1.9902344, 0.37109375, -1.6894531, 2.5097656, -0.5722656, -1.6728516, 0.0058059692, -0.20251465, 4.1875, 4.1328125, -0.01411438, -0.32421875, -1.2021484, 0.40161133, 1.3300781, 1.3476562, -1.6914062, 1.2167969, -1.3154297, -0.57470703, 0.16040039, 1.703125, 0.97998047, 0.5834961, -1.2304688, 0.17468262, 3.5957031, -0.8105469, 0.9838867, 1.2861328, -0.4013672, -0.2388916, 3.546875, -1.03125, -4.3554688, 1.2578125, -2.3359375, 1.8164062, 0.10015869, -1.375, 0.38549805, -1.0068359, -2.6289062, -2.6699219, -2.8710938, -2.2109375, 1.2958984, 2.1757812, -2.3359375, -0.875, 1.5820312, 0.006477356, 4.9179688, 1.296875, 2.6660156, -2.2363281, -0.52685547, -1.0732422, 0.41455078, 0.046783447, -4.8398438, 2.3085938, 1.0107422, -1.6835938, -2.109375, 2.1230469, 0.17053223, 2.15625, 0.703125, 1.2910156, 1.9785156, 2.1523438, 1.0175781, 1.0859375, 1.4443359, -0.52978516, -0.7753906, -0.20373535, 1.5849609, 0.8754883, 1.7128906, -1.265625, 2.8046875, -2.859375, -0.1262207, -0.4892578, -1.2158203, 2.3769531, -2.7050781, 0.11987305, 0.6894531, 2.3378906, -1.0917969, -1.2412109, 0.6044922, 0.48583984, 0.48120117, 1.0195312, 2.1191406, 1.1835938, 0.9638672, -1.4306641, 0.11401367, 2.5234375, -3.8769531, 0.5180664, 0.8105469, -0.85839844, -1.9384766, -1.8154297, 2.0292969, 0.7758789, -0.6953125, 0.38964844, 2.7929688, 0.5234375, 0.6142578, -2.8027344, -0.7236328, -0.88378906, 3.6582031, 0.30371094, -0.37890625, 0.63427734, -1.2529297, -4.1210938, -3.3457031, 3.8945312, 1.3837891, 1.4726562, 0.053344727, -1.2636719, 2.9003906, 0.04006958, 2.2382812, -0.9042969, 0.875, -1.8232422, -3.2578125, -0.38061523, 1.0878906, -0.40966797, 0.63720703, 0.47607422, -0.056732178, 0.9980469, 1.5283203, 1.5917969, -0.05731201, 0.6845703, 2.6210938, 1.4619141, 0.13098145, 1.2949219, 0.19921875, -1.4365234, -1.5048828, 2.328125, 1.5478516, 0.51660156, 0.2866211, -0.9790039, 0.43554688, -0.1352539, -1.3369141, 2.3867188, -2.4316406, -0.36767578, 1.1660156, 0.70166016, -1.1699219, -0.51708984, 2.8398438, 2.984375, -0.25073242, 0.61035156, 3.3515625, -0.068725586, 1.8798828, 1.0136719, 0.06738281, -0.2211914, 1.2734375, -1.4521484, 0.6713867, -1.1533203, 1.6914062, 1.2734375, -0.45043945, -1.1318359, 0.08886719, -0.9868164, -1.0839844, -0.04675293, -0.18688965, -1.0283203, -1.6337891, 2.7109375, -0.2854004, -1.5478516, 2.8339844, -0.35620117, 0.35742188, -3.2988281, -2.4589844, -0.6152344, -1.7675781, -0.42749023, 0.9765625, 3.7421875, 0.54248047, 0.09350586, -0.63427734, -3.3984375, -1.7050781, -2.859375, 2.6816406, -2.3691406, -1.7558594, -1.8134766, 0.3852539, 1.8798828, -0.54248047, 0.36132812, -0.45263672, -2.9433594, 1.5400391, -0.1940918, 0.7753906, -0.70410156, 0.7207031, 2.1308594, 2.5253906, 1.0537109, 0.8491211, -0.33447266, 2.1191406, 0.03604126, -1.1347656, -1.1660156, 0.8256836, 0.46850586, 0.035583496, 1.1650391, 1.4804688, 0.087768555, -0.6972656, 0.98583984, -1.7539062]}, "B077K1MK8N": {"id": "B077K1MK8N", "original": "Brand: Weber\nName: Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color\nGrill dimensions: Lid Open - 57\"H x 48\"W x 26\"D. Lid Closed - 44.5\"H x 48\"W x 27\"D. Each cooking grate is 10.16\u201d x 17.5\", for a combined measurement of approximately 20.32\" x 17.5\"\nPropane gas grill works with Standard 20 lb LP tank.\nFeatures: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame\nTwo burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system\n", "embedding": [-2.5625, -0.0017375946, 2.0976562, -0.7890625, -2.3632812, 1.3154297, -0.39160156, -0.42578125, 1.2705078, 1.1826172, 2.7285156, 0.7529297, 0.9536133, -4.2070312, 0.04763794, 0.58740234, 2.2578125, 1.3632812, 0.9291992, 0.22912598, 1.3349609, 0.46289062, 1.1572266, -0.53271484, 1.4482422, 1.2265625, 3.640625, -5.0351562, -0.008773804, -3.0820312, 1.3027344, 0.8925781, 0.5185547, 2.3652344, -3.140625, -1.7646484, -2.9902344, 1.1875, -3.2246094, 0.33276367, -0.08337402, -0.85498047, 1.3847656, -0.74316406, -1.7353516, 0.8178711, 0.64404297, 0.9663086, -1.2128906, -0.11437988, 2.6328125, 0.94628906, -0.1817627, 1.4482422, -1.2529297, 2.4726562, 0.43798828, -1.9003906, 1.8105469, -0.24536133, 2.359375, -0.077819824, -2.8359375, -1.6425781, -1.2363281, 0.18774414, 0.7182617, 0.6513672, -0.64990234, -0.47143555, 3.6640625, -1.9824219, -1.40625, 0.89746094, 1.4453125, -2.4550781, -2.4785156, 2.2402344, 1.109375, -1.3789062, -0.52197266, 2.7792969, 0.91796875, -1.5048828, -0.05706787, 1.5703125, 1.5302734, -1.1474609, 2.1191406, 1.1923828, -0.23474121, 0.5541992, -2.0546875, -3.0917969, 1.328125, -0.5385742, 3.0097656, 1.0400391, -1.1054688, 0.69189453, -2.1210938, 1.1396484, -1.5742188, -1.6289062, -2.5917969, -0.44506836, 0.8984375, 0.37060547, -1.46875, -0.7890625, -1.6621094, -0.49487305, 0.82470703, 0.79052734, 0.8178711, 2.2617188, 0.20812988, 2.4648438, -0.17810059, 0.84765625, 3.4550781, -1.0048828, 0.3034668, -0.3984375, -1.9990234, -0.7729492, 0.78125, 1.90625, 3.3027344, -1.53125, -0.9707031, 0.4855957, 3.7617188, 0.31103516, -0.6152344, -1.5390625, -1.21875, -1.1914062, -2.5605469, -0.07952881, -1.796875, -1.1025391, 1.3515625, -1.8818359, -3.2851562, -0.5986328, 0.44140625, -0.24890137, 0.81103516, -2.2363281, -0.96533203, -1.3232422, -1.5986328, -1.7695312, 2.1796875, 0.8232422, -0.03741455, 0.37182617, 2.7539062, 2.4433594, 1.4296875, -2.1113281, -1.6337891, -0.6196289, 0.54541016, 0.76123047, 1.7470703, 0.3256836, -0.4013672, 1.5976562, 0.6538086, 0.22241211, 0.296875, 0.56152344, 1.6767578, -2.7988281, -1.2392578, 1.796875, 0.035369873, -0.2578125, -2.0976562, -0.83935547, -0.22473145, 0.7060547, 0.051361084, -0.8222656, -0.74853516, 0.84228516, 2.2148438, -1.5664062, 0.49316406, -0.34033203, 1.3603516, -0.29467773, 1.8486328, -1.8339844, -1.1767578, -1.9824219, 1.8330078, 0.5415039, -1.15625, -1.0634766, 0.41479492, 0.5786133, -1.3984375, -1.7119141, -1.2070312, -2.5957031, 1.3984375, 2.2089844, 1.1796875, -1.8720703, 1.2480469, -0.94189453, 1.3183594, -1.4619141, 2.875, 0.94677734, 1.4521484, 1.3125, -1.1162109, -0.6767578, 0.99121094, 3.5722656, 0.73046875, 0.6401367, 0.10211182, 0.24597168, -3.3007812, -0.5444336, 2.4453125, -0.1998291, 0.20910645, 1.0214844, 0.41601562, 3.1328125, -0.008560181, -0.22351074, -1.2353516, 0.8496094, 0.9946289, 0.73876953, -2.0585938, -0.80371094, 0.25341797, -0.8173828, -1.7646484, 2.7519531, 0.8330078, -0.12310791, 1.5029297, 0.78808594, 2.34375, 2.4121094, -0.12915039, 1.2558594, -1.7607422, 2.1894531, 0.19030762, -1.8535156, 1.5546875, -0.051574707, -0.053009033, 0.66064453, 0.89453125, 0.04989624, 1.1669922, 3.0664062, -1.6347656, -0.96435547, 0.5957031, -0.44140625, 0.17370605, -0.97753906, 2.7402344, 0.9633789, -1.0927734, 1.4746094, 0.57128906, 0.6948242, 0.63720703, -0.66748047, 2.2929688, -4.3632812, -0.16369629, 0.69384766, 1.3466797, -2.203125, -2.4238281, 0.47045898, 3.8144531, -0.9926758, -2.2539062, 3.109375, -2.2226562, 0.06262207, 2.0292969, 0.9707031, -0.39331055, 2.5722656, 2.7089844, -0.5800781, 1.2998047, 1.4101562, 0.101867676, -1.0390625, 1.6748047, -2.8847656, 0.103881836, 1.5400391, -0.38793945, -0.60839844, -1.1005859, 0.55078125, -2.2558594, -2.453125, 2.7851562, -2.8691406, -0.117004395, -0.4362793, 1.90625, -0.4099121, -1.2587891, 0.20727539, -1.3242188, -0.47753906, -0.6201172, 2.078125, 0.66308594, -1.5166016, -1.1611328, 0.87353516, -0.7915039, -2.3144531, -1.6416016, -1.2304688, -1.6367188, -3.3828125, 2.8144531, -2.4667969, -0.29785156, 1.4921875, -2.5859375, -0.13061523, -0.32885742, -2.9550781, -0.3112793, -0.62646484, -0.11791992, -1.3427734, 0.7128906, 0.008483887, -1.2929688, -3.3515625, 0.31762695, -0.17199707, 1.6669922, 0.49560547, -2.4960938, 0.92041016, 1.2099609, 0.3852539, -0.515625, 1.5703125, 1.4316406, -1.2216797, 1.0966797, -4.0507812, -1.1787109, -2.8007812, 0.7294922, -1.3164062, 1.0419922, -3.40625, -2.8886719, -1.6259766, -0.12023926, 3.9394531, -0.16516113, 1.5820312, 0.39746094, 0.1459961, 1.3017578, -1.8212891, -1.9003906, 0.40454102, 1.4121094, -1.5517578, -2.1074219, -2.4960938, -0.98339844, -3.3066406, -0.50439453, 0.21228027, -1.1201172, -0.52246094, -0.22802734, -2.1308594, -2.6386719, -1.1601562, 0.71191406, -0.60595703, -1.0048828, -1.8486328, -0.8300781, -1.2353516, -0.5332031, -1.6201172, 1.8857422, -1.0537109, 1.3476562, 0.72753906, -0.10949707, 1.6503906, -2.3125, -3.7675781, 2.8085938, 0.22619629, -3.2675781, 1.8320312, -3.2714844, -2.0625, -3.0351562, -0.46362305, 2.0351562, 2.1894531, 1.3095703, 1.0175781, 1.5654297, -0.29663086, -1.4667969, 0.70166016, -0.80810547, 0.95703125, 4.3515625, -3.0566406, -0.6845703, 0.6166992, 1.5234375, -2.0332031, -1.4853516, 1.8251953, 1.9570312, 2.9492188, 1.4697266, 1.4375, -1.3740234, -1.234375, 1.8564453, 1.6787109, -1.5214844, 0.7167969, -0.26416016, 1.5634766, -0.7055664, 1.0810547, 2.4570312, 0.63623047, 2.0878906, 2.9726562, 0.78564453, -0.49658203, 0.51220703, -0.040649414, 1.7285156, -0.50634766, 2.1835938, -1.0029297, 0.24377441, -1.4033203, 0.016326904, -0.6333008, 0.16491699, -1.4521484, 3.5410156, 1.1962891, -1.6396484, 0.51171875, 2.1796875, 1.4335938, -0.3425293, 0.8232422, -1.2470703, -1.1904297, 1.6572266, -1.1259766, 0.49780273, -3.2832031, 1.4970703, -0.81103516, -1.1279297, 1.0742188, 4.0546875, -2.0957031, -1.8876953, 1.0703125, -0.42773438, 0.20446777, 2.1308594, 2.3828125, -0.8510742, 0.9121094, -2.7265625, 1.5224609, -0.10662842, -0.3317871, -1.75, -0.061553955, 2.0488281, 0.026031494, 0.9628906, 1.4072266, -0.9584961, -2.9394531, 0.06500244, -2.7851562, -1.6679688, 1.765625, -2.640625, -1.9404297, 3.1152344, -0.43481445, -0.22387695, 0.4025879, 3.9199219, -1.6289062, 0.8803711, 1.7978516, -2.1074219, 0.43188477, -4.2382812, -3.7324219, 0.14697266, -1.4189453, 0.51416016, 1.9521484, -0.16186523, 1.2148438, 3.1152344, 1.6015625, -2.9589844, -1.4082031, -0.87841797, -0.30810547, -0.9555664, -0.73095703, 0.2479248, -1.3535156, -3.4335938, -2.3515625, 0.1270752, 0.9560547, 2.1738281, 2.0390625, -3.421875, -0.15307617, -1.8339844, -1.2822266, -2.46875, -0.0027713776, 2.3378906, -1.1494141, 0.036895752, -3.3535156, 0.62109375, 1.2509766, -1.1972656, 2.3945312, 2.2558594, 0.27954102, -1.5380859, 2.2324219, 0.5678711, 2.2734375, -1.0019531, -3.53125, -0.45825195, 0.93115234, -0.60253906, -0.93408203, 0.5097656, 0.9995117, -1.1669922, 2.3046875, 1.3886719, 0.62060547, 1.2099609, 0.8647461, -3.2070312, 0.5961914, -1.9804688, -0.60839844, -1.8320312, -1.0390625, 0.35009766, -1.4863281, 0.16491699, -2.890625, 1.5371094, -1.4912109, 1.1621094, -4.1171875, 2.9335938, 3.0332031, 4.0195312, 2.7382812, -1.5683594, 0.1381836, 0.49682617, -0.52246094, -2.0351562, 0.65478516, -0.50439453, -0.55029297, 2.5273438, 1.2578125, -2.0546875, -0.8232422, -0.15307617, -1.9150391, -0.74121094, -2.828125, -0.8149414, -1.3789062, -0.17041016, 1.5146484, -0.27197266, 3.3125, -1.5136719, -0.8442383, -1.9121094, 1.40625, -0.9692383, 0.7758789, 0.4650879, -0.061401367, -0.68652344, 0.65966797, 0.3076172, -0.71484375, 0.890625, -2.3496094, 1.4179688, -0.36157227, 0.26098633, 1.7226562, 0.12225342, -0.62060547, -1.3818359, 0.99853516, 3.2539062, 1.4824219, 2.9433594, 0.18908691, -2.8144531, 2.0253906, 1.5703125, -4.1523438, 0.63378906, 1.6357422, 1.3759766, 2.0820312, 1.046875, -4.5820312, -0.34887695, 1.2832031, -0.32226562, 0.43676758, -1.6865234, -0.32910156, 2.5039062, -2.0898438, -0.7470703, -1.3466797, -1.2998047, 0.16833496, 2.8671875, -0.34277344, -1.21875, 1.2734375, 2.7128906, -1.0693359, -1.9238281, 1.1025391, -1.0136719, 0.76904297, -3.125, 0.07659912, -2.1386719, -0.21362305, 2.6425781, 0.95996094, 0.58691406, 0.63916016, 2.4550781, -2.3789062, 0.056396484, -2.8378906, 1.7197266, -1.3544922, -0.3708496, 0.91259766, -2.3359375, -0.62060547, -3.1621094, -1.1787109, -0.54296875, 2.2382812, 1.7070312, 0.26098633, -1.2421875, 1.4423828, -1.7197266, -3.7167969, -1.3330078, -0.17614746, 0.5239258, 1.4169922, 2.1777344, -0.6904297, 1.6259766, -0.32983398, 0.5078125, -0.8330078, 0.7060547, -1.0869141, -0.24182129, 0.19592285, -1.4951172, -1.5234375, -0.33544922, 1.0859375, 0.29174805, 0.41430664, -2.6210938, -0.33935547, 0.58447266, -0.93603516, 1.0273438, 1.8193359, 1.5615234, -0.1763916, 0.17614746, 1.7226562, -1.4794922, 2.2460938, -3.4785156, -0.77978516, 1.1240234, -1.7626953, 1.3623047, -1.2929688, -1.265625, 0.44750977, 1.5458984, 1.8535156, 1.0429688, -2.3769531, -0.56152344, 0.13513184, -0.75683594, -1.9707031, 0.19116211, -0.06585693, 0.66748047, 0.9765625, -0.37329102, -0.18920898, -0.80322266, -1.5820312, 1.1113281, -2.0273438, -0.5136719, -1.1015625, 0.30664062, 1.6132812, 0.12133789, -0.6738281, 2.3925781, -1.1220703, -2.8457031, 1.3916016, 0.24987793, 4.296875, 4.0859375, -0.36401367, -0.9399414, -1.5019531, 1.0175781, 2.515625, -0.1451416, -1.3056641, 1.1337891, -0.5390625, 0.16577148, -0.33666992, 3.1757812, 1.7597656, 0.104003906, -0.875, 0.87158203, 3.3808594, -1.5244141, 1.7558594, 0.74853516, 1.9970703, 0.036224365, 3.53125, 0.2368164, -3.6542969, 0.9116211, -2.0429688, 1.5693359, -1.1894531, -1.1142578, -1.0908203, -0.5209961, -1.9072266, -2.0136719, -1.2392578, -1.9169922, 2.2207031, 1.8056641, -2.1933594, -0.8261719, 1.4423828, 0.047790527, 4.0859375, 0.86621094, 1.9140625, -0.921875, -1.2041016, -1.1884766, -0.46166992, -0.28759766, -4.1796875, 2.1171875, 0.6201172, -0.9345703, -2.3242188, 2.2753906, 1.4404297, 1.5126953, 0.08569336, 2.5957031, 2.328125, 1.9755859, 2.40625, 0.27514648, 2.7734375, 1.0517578, -1.2548828, 0.31762695, 1.9365234, 0.21252441, 0.8544922, -1.4248047, 1.9033203, -1.53125, -1.2363281, -0.79833984, -0.65527344, 2.2050781, -2.7265625, 0.90185547, 1.1494141, 2.7539062, -0.51123047, -1.3769531, 0.0013780594, -0.78759766, 1.1015625, -0.10614014, 2.4863281, 1.1416016, 0.40942383, -1.2363281, -1.2060547, 1.4306641, -4.1875, 1.1074219, 0.77783203, -1.9121094, -0.9892578, -0.8227539, 2.6015625, 1.3535156, -0.05380249, -0.4885254, 3.9609375, 0.8383789, 1.1699219, -1.734375, -0.6347656, -0.79589844, 3.0898438, 0.49829102, -2.1308594, -0.3178711, -1.1865234, -4.234375, -3.1152344, 3.7519531, 2.4570312, 1.8505859, 0.9506836, -0.7949219, 3.9433594, 0.40356445, 2.2636719, -0.42626953, -0.7963867, -1.59375, -2.7207031, 0.52197266, 0.25195312, 0.064331055, 0.9975586, 0.17138672, 1.484375, 1.28125, 1.1318359, 0.9584961, 0.32177734, 1.6015625, 3.3144531, 0.4658203, -1.0625, 0.01449585, -1.703125, -2.5820312, -2.2460938, 3.1503906, 0.92041016, 0.30126953, 0.54589844, -1.4921875, 0.4724121, -2.1855469, 0.39038086, 0.18261719, -2.5605469, -0.9614258, 1.3251953, 2.0214844, -2.1386719, 1.1806641, 2.2832031, 1.9863281, -0.83447266, 1.3964844, 3.0273438, -0.48657227, 1.0273438, 0.5239258, 1.1894531, 1.3544922, 0.7451172, 0.24987793, -0.9272461, -0.7314453, 1.0791016, 2.2597656, 0.48291016, -0.5991211, -0.062561035, -1.3242188, -0.46606445, -0.049438477, 0.29248047, 1.8320312, -1.7070312, 2.7167969, 0.07421875, -1.1962891, 1.5126953, -0.50878906, 1.0107422, -2.5742188, -2.2851562, -1.2177734, -0.3942871, -0.82958984, 2.1523438, 5.0390625, 1.3652344, -0.33666992, -1.0703125, -3.5039062, -0.86083984, -2.7910156, 2.6113281, -1.2558594, -2.2597656, -1.1347656, -1.1279297, 1.9326172, -1.4091797, -0.32226562, 0.4807129, -1.6542969, 1.3896484, -0.52490234, 1.2470703, -0.008308411, 0.30493164, 2.0351562, 3.03125, 1.9111328, 0.88720703, -0.25170898, 2.8320312, -0.66259766, -2.9785156, -1.2294922, 0.14624023, -0.5620117, 0.26611328, 1.0537109, 1.3886719, 0.86035156, -0.52978516, 0.10522461, -2.6503906]}, "B00AB7SDC4": {"id": "B00AB7SDC4", "original": "Brand: Huntington\nName: Huntington 30040HNT Liquid Propane Gas Grill,Black\nDescription: \nFeatures: Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust\n30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty\n430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack\nA 10,000 BTU burner allows you to prepare mouth-watering side dishes\nEasy to maintain porcelain coated cooking grid\n", "embedding": [0.22875977, 0.94091797, 2.7636719, 2.2050781, -0.1743164, 0.20507812, 0.12768555, -1.484375, 0.57666016, 1.3261719, 0.4609375, 0.6748047, -0.16503906, -3.4824219, 0.23413086, 0.9868164, 0.96191406, 1.5673828, 0.5097656, -0.77246094, 1.1445312, 0.40722656, 1.8320312, -2.3574219, 1.3828125, 0.6557617, 3.796875, -3.3417969, 0.73095703, -0.7607422, 2.0839844, 1.7724609, -0.40698242, 1.9570312, -1.9482422, -1.6572266, -1.9394531, 1.0439453, -4.984375, 0.7871094, -0.8911133, -1.3466797, 2.1738281, 1.4628906, -2.1816406, 0.7241211, -0.53125, 0.34545898, -1.4794922, 0.4663086, 2.2773438, 1.4501953, -1.1923828, -0.51708984, -0.50146484, 1.6308594, 0.42871094, -3.2089844, 0.7993164, -0.42456055, 1.5595703, -1.2236328, -1.8896484, 0.49487305, 0.008407593, -0.62158203, 1.2167969, 0.35668945, -0.7451172, -0.19055176, 2.5703125, -0.82470703, -1.9042969, 0.7836914, 0.24035645, -1.5449219, -1.8320312, 1.4375, 0.5263672, -1.4609375, -2.1738281, 3.765625, 0.93847656, -1.1689453, 0.036743164, 0.7236328, -0.6582031, -1.8623047, 1.6230469, -0.45117188, -0.8154297, 1.5703125, -1.7158203, -4.7304688, 1.3623047, -0.036010742, -0.64453125, 1.8574219, -0.60302734, 0.7714844, 0.03137207, -0.7167969, -2.1035156, -0.3491211, -2.5, -0.48510742, 0.37548828, 1.0908203, -2.5195312, 0.34375, -1.0029297, 1.6230469, 0.8823242, 0.74853516, 1.4599609, 1.7558594, 0.44995117, 1.0654297, 1.5224609, 2.8164062, 2.7285156, -1.3652344, 1.5576172, -1.1103516, -0.27905273, 1.3857422, -0.0043792725, -0.06286621, 4.125, -2.3535156, 1.0087891, -0.39208984, 2.9863281, -1.734375, -1.6943359, -2.4628906, -0.4897461, -0.7270508, -2.7363281, 0.30615234, -0.72753906, 0.48754883, -0.034210205, -0.80615234, -3.7246094, -1.7490234, -0.90527344, -0.16174316, -0.63183594, -1.5322266, 0.028167725, -1.8349609, 0.06719971, -0.89453125, 2.8144531, -0.9765625, -1.2949219, -0.92529297, 2.5898438, -0.12182617, 1.5283203, -0.515625, -3.5507812, -0.14660645, 1.3515625, -2.2207031, -1.2929688, 1.8232422, 0.3010254, 3.0898438, -0.93408203, -1.5087891, -0.07373047, -0.87402344, 1.0195312, -0.8598633, 0.33203125, 2.5976562, -0.52197266, 0.8300781, -1.0986328, -2.1953125, -0.06750488, -0.8598633, 1.1484375, -2.4804688, 0.45288086, -0.06890869, 1.1298828, -1.3466797, 1.4785156, 0.6508789, 1.0849609, 0.15307617, -0.5488281, -2.3144531, -1.9375, -2.21875, 3.5820312, 0.97216797, -0.9604492, -0.37524414, -0.07385254, 0.7451172, -1.6943359, -2.5332031, -0.58203125, -2.3984375, 0.5805664, 0.7993164, 1.9882812, -0.9580078, 2.5488281, -0.6298828, 1.2382812, -3.2070312, 3.7285156, 0.9213867, 1.1074219, 2.3203125, -0.1171875, -0.8671875, 0.4963379, 2.1308594, -0.91259766, 1.109375, 0.42871094, 0.6381836, -3.359375, 0.71875, 3.15625, 0.068725586, 1.2734375, 0.8442383, -0.2685547, 1.6962891, 0.7832031, -0.35961914, -0.38110352, 0.12890625, 0.34448242, 0.44604492, -1.8144531, -1.6445312, 1.0957031, 1.8046875, -2.1171875, 1.9755859, 1.9248047, 1.2509766, -0.96240234, -0.42797852, 0.62841797, -0.5673828, -0.11456299, 0.039886475, -0.18554688, 0.73876953, -0.2919922, -2.9179688, 0.20324707, -0.76660156, 0.29101562, 0.3798828, 0.09423828, -0.48779297, 2.3066406, 1.1044922, 0.006980896, -0.9824219, 1.1972656, 0.83935547, 2.0058594, -1.2011719, 2.5253906, 0.9111328, -0.5683594, 4.4648438, 0.15454102, 2.046875, 1.2402344, 0.2980957, 2.40625, -2.7226562, -0.81103516, 0.9902344, 0.9423828, -2.1367188, -1.3828125, 1.4042969, 4.3632812, -0.4243164, -2.4277344, 2.2226562, 1.1376953, 0.74316406, 1.9707031, -3.1074219, -1.2265625, -0.32373047, 2.1074219, 0.7861328, 0.27783203, 2.1054688, -1.7675781, -1.7333984, -0.5932617, -1.2783203, -0.13696289, 0.24255371, -1.5703125, -0.76708984, -0.6152344, 0.90771484, -2.0585938, -0.6508789, 2.0039062, -3.4199219, 1.6787109, -0.6479492, 1.1289062, 0.7573242, -0.71533203, -0.6220703, 0.31640625, 0.8774414, -0.7285156, 1.9091797, 0.36035156, -2.7519531, 0.6567383, -1.5117188, -0.057800293, -1.3203125, -2.0019531, -1.3613281, -4.3632812, -2.0800781, 0.94970703, -1.1445312, -1.0830078, 1.0634766, -3.0429688, 0.15148926, -1.6894531, -1.7871094, -1.1552734, -0.5048828, -1.0693359, -0.28930664, 0.012054443, 0.49047852, -0.09173584, -3.5957031, -1.2021484, 0.57373047, 0.4489746, 0.66503906, -1.5419922, -1.4775391, 0.85058594, -0.4909668, -0.099609375, 1.0859375, 0.06414795, -0.10876465, 0.9296875, -4.7304688, 0.41259766, -2.890625, 0.64453125, -1.7763672, 0.70214844, -2.5429688, -1.1816406, 0.8774414, 2.1875, 4.421875, -0.67333984, 1.0019531, 2.5039062, -0.09429932, 0.8730469, -1.2480469, -2.1386719, -1.0458984, 2.3964844, -2.3222656, 0.056854248, -4.1640625, 0.4885254, -1.3125, -0.39697266, 1.7548828, -0.64160156, -1.2138672, -0.6196289, -0.59033203, -1.2490234, -1.296875, -2.0371094, 0.38354492, -0.5917969, -1.5859375, -0.17456055, -0.22839355, -1.4589844, -1.5419922, 1.4560547, -0.12243652, 1.3183594, 1.2236328, 0.059814453, 1.5195312, 0.26416016, -3.7832031, 4.2460938, 1.265625, -2.9921875, 2.5214844, -1.8818359, -2.0722656, -2.5703125, -0.39746094, 2.0546875, 1.8105469, 1.8916016, 0.2758789, 0.20605469, 2.2363281, 1.7011719, 1.1708984, -1.25, -1.5380859, 3.0625, -2.8085938, -2.5488281, 0.40234375, 2.3144531, -2.9804688, -2.1757812, 2.9804688, 1.5888672, 2.1191406, 1.7089844, 1.4121094, 0.2614746, 0.67333984, 1.0517578, 0.07965088, 0.048339844, 0.21447754, -0.22241211, 2.2460938, -0.14904785, 1.6865234, 2.3359375, -0.7158203, 3.5019531, 0.29223633, 0.46972656, -0.012939453, -0.81689453, -0.44018555, 1.1064453, -0.27539062, 2.640625, -1.1376953, -0.24731445, 1.1894531, -0.671875, 1.2685547, -1.1972656, -1.5332031, 1.1875, -0.042785645, 0.55859375, -0.17712402, 1.3242188, 2.3222656, -0.44970703, 0.20690918, -1.3417969, 0.21020508, 1.9257812, 0.32250977, 0.10675049, -0.27416992, 0.33569336, -1.3417969, -3.0644531, -1.78125, 2.3085938, -2.4257812, -0.047607422, -0.058929443, -0.46533203, 1.0185547, 2.4765625, -0.71972656, -0.82958984, 0.072631836, -0.56884766, 0.76171875, 0.28588867, -0.7265625, 0.9902344, -1.015625, 0.26098633, 0.42163086, 1.2441406, 0.5390625, -0.10614014, -1.21875, -0.18054199, -1.4443359, -1.1191406, -0.26342773, -1.78125, -0.9116211, 4.1171875, 1.8261719, 0.92626953, -0.45092773, 3.2246094, 0.31860352, -1.4882812, 2.703125, -0.61572266, -0.0011081696, -3.3164062, -3.7675781, 0.8823242, -0.9765625, -1.6318359, 2.2578125, 0.4519043, -0.040618896, 0.6791992, 2.4179688, -2.1816406, -0.7451172, -1.3818359, -0.19384766, -0.6123047, -0.77783203, 0.47607422, 2.5664062, -4.2226562, -1.7568359, -0.46118164, -0.29345703, 0.41992188, 0.6855469, -1.5927734, 1.0859375, -0.97998047, 0.12780762, -1.8603516, -0.6748047, 0.7807617, 0.27685547, -0.11102295, -1.5742188, 1.9970703, 0.5966797, -0.5810547, 2.0898438, 2.0742188, -0.6323242, 0.25756836, -0.18371582, 1.6484375, 3.0527344, -0.035949707, -2.4414062, -1.6904297, -0.4326172, 2.7441406, -0.46362305, 0.2076416, -0.6279297, -1.4169922, 0.1652832, 0.35839844, 0.30932617, 1.0976562, -0.70947266, 0.12164307, 1.8339844, 0.5048828, -1.0625, -1.2158203, 0.2175293, -0.83691406, -1.6347656, 0.3293457, -1.1308594, 1.0605469, -2.2890625, -1.1318359, -1.9726562, 3.609375, 2.9882812, 1.7832031, 1.3154297, -1.0546875, -1.5537109, 0.23571777, 0.27685547, -0.09466553, -0.2775879, 0.032165527, -0.47070312, 0.37109375, 0.6357422, -2.328125, -0.29638672, 0.8588867, -1.4199219, -0.8989258, -1.8378906, -1.2246094, -0.9121094, 0.05026245, 0.91845703, -1.78125, 2.5722656, -1.2919922, 0.9082031, 0.26757812, -0.21911621, -0.43481445, -0.5864258, 0.12976074, 0.5258789, 1.9072266, 0.36743164, 1.4472656, -0.42944336, 0.26733398, -0.9609375, 2.5351562, -0.7319336, 1.9746094, 1.2900391, 0.6298828, -0.24560547, -2.3222656, 2.59375, 2.5957031, 0.12939453, 2.8867188, 1.1142578, -2.1855469, 2.2988281, -0.40893555, -2.484375, 1.4013672, 2.4980469, -1.2890625, 2.7167969, 0.4909668, -2.7832031, -0.18554688, 2.5449219, -1.9023438, 0.25097656, 0.020507812, -0.7265625, 0.7421875, -2.6503906, -1.5673828, -0.7783203, 0.85302734, -0.8354492, -1.6015625, 0.54833984, -0.49804688, 1.7773438, 2.4960938, -1.7128906, -0.56152344, 2.9667969, 0.74853516, 1.6044922, 0.5444336, -0.24597168, -1.3173828, 1.2001953, 2.7714844, 0.8886719, 0.55859375, 0.40283203, 1.6601562, -1.2412109, -0.43359375, -0.74658203, 3.5195312, -2.6816406, -0.32666016, 0.68896484, -2.5839844, -1.6953125, -3.1269531, -1.8769531, -1.9960938, 1.5595703, 2.8066406, 0.5727539, -0.19702148, 0.07019043, -1.7822266, -3.2617188, -0.7470703, 0.11450195, -0.40576172, 0.8120117, 1.6162109, -1.6464844, -0.33691406, 0.0015411377, 0.60839844, -1.0849609, 0.77734375, -0.6401367, -0.02583313, -1.4658203, -0.7270508, -0.26953125, 1.4667969, 1.7001953, 0.32006836, 2.6542969, -3.2636719, -1.9453125, 0.14318848, -0.09106445, -0.46435547, 0.45410156, 1.9560547, 0.26586914, 2.0546875, 0.47924805, -1.8710938, 3.3730469, -1.8027344, -0.65234375, 2.6425781, -1.0810547, -0.8442383, 0.9394531, -0.9086914, -1.6425781, -0.07727051, 2.5429688, 0.52441406, -1.1904297, -1.3554688, 2.3710938, -0.24267578, -0.54541016, 1.8095703, 1.3203125, 2.0371094, 1.0820312, -0.77685547, -0.22595215, -1.7871094, -3.078125, 0.07611084, -3.828125, 0.50634766, -1.4140625, 0.6381836, 0.53808594, 0.9199219, 0.93310547, 0.6982422, 0.12188721, -1.0273438, 1.1464844, 0.11639404, 3.2324219, 2.5214844, -1.8935547, -0.65625, -0.5214844, -1.6132812, 2.2363281, 0.9042969, 0.44067383, 1.3476562, -0.19177246, -0.95996094, -1.2607422, 0.03265381, -0.119628906, 0.44628906, -2.2871094, 0.7861328, 3.4453125, -0.44677734, 0.32666016, 0.2854004, 1.6318359, -0.9067383, 3.7246094, 0.24719238, -0.37670898, 1.9658203, -1.7539062, 1.453125, -1.3388672, -1.7949219, 1.0292969, -1.4658203, -1.0566406, -1.7246094, -2.1738281, -1.90625, 1.1806641, -0.23962402, -1.2236328, 0.10656738, 2.4765625, 0.6069336, 3.4140625, 0.48266602, 1.8808594, -0.89941406, 0.4243164, -0.9189453, 0.26953125, 0.91796875, -2.3398438, 2.7792969, 0.15344238, -0.24377441, -3.0859375, -0.29858398, 0.54541016, 1.9091797, 1.8701172, 2.9003906, 2.6113281, 1.09375, 0.4736328, 1.2529297, 1.0292969, 2.3222656, -2.4804688, 0.46362305, -0.07373047, 1.0976562, 1.3740234, -1.5332031, 3.1582031, -2.1523438, -2.703125, 0.37231445, -0.37109375, 0.024032593, -2.1796875, 1.2939453, 0.8652344, 0.20532227, -1.8857422, -0.72998047, -1.1601562, -0.7763672, -1.0029297, 0.22912598, 2.6464844, 1.4707031, 1.5654297, -0.9238281, -1.7148438, 1.7832031, -3.734375, -0.5908203, 1.1767578, -0.37524414, 0.26733398, -1.6982422, 1.7021484, 0.6508789, -0.40966797, -1.4394531, 0.8364258, 0.095214844, 0.58740234, -1.3935547, 1.5273438, 0.61279297, 2.234375, -0.06689453, -0.034484863, 1.9707031, -1.3632812, -0.6152344, -4.2851562, 3.7265625, 2.0429688, 1.7773438, 0.16345215, -1.2060547, 1.5966797, -1.5605469, 2.7382812, -3.0703125, 1.6728516, -0.25097656, -2.1464844, -2.2421875, -0.38183594, 0.20263672, 0.89941406, -0.17956543, -1.3818359, 1.9638672, 0.5473633, 0.57666016, 0.7651367, 2.3710938, 1.8222656, 1.6640625, 0.042755127, 2.4121094, 1.4453125, -1.6513672, -0.85546875, 1.2558594, 0.3515625, -0.87939453, 0.79248047, -1.7763672, 1.2402344, 1.1054688, -0.93408203, 0.2866211, 0.34716797, -1.4423828, 0.44384766, 1.4707031, -1.75, -1.7109375, 2.5117188, 1.4443359, -1.4443359, 0.36376953, 2.2910156, 0.16308594, 1.9755859, -0.12207031, -0.34326172, -0.8251953, -0.20288086, 0.80078125, 0.31518555, -1.8339844, 0.25512695, 1.6269531, 0.35205078, -0.98828125, -0.85839844, -1.3554688, -0.40063477, -1.3818359, 0.8930664, -0.36450195, -1.2949219, 2.0585938, 0.30029297, -1.21875, 4.1367188, -1.1875, -0.8432617, -2.8945312, -1.8925781, -0.7216797, -0.7216797, -2.3300781, 2.2480469, 4.6601562, -0.22351074, 0.08831787, -2.6621094, -3.9101562, -1.4746094, -3.4472656, 0.14196777, -2.0292969, -0.5444336, 0.72753906, 0.35717773, 0.91845703, -0.52197266, -0.28027344, -0.68359375, -0.96875, 2.2773438, -0.9584961, 2.1757812, 0.52246094, 0.37817383, 0.7397461, 1.1591797, -0.13439941, 1.46875, 0.24511719, 5.4140625, 0.9477539, -2.5488281, 0.49365234, 0.3408203, -0.5463867, 0.31518555, 0.36376953, 0.59228516, 1.6142578, -0.9301758, -0.57666016, -3.7617188]}, "B004BH7T5W": {"id": "B004BH7T5W", "original": "Brand: Weber\nName: Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Island not included\nPlease reference building guide for Weber model number 7360001 prior to building island\n9 mm diameter stainless steel rod cooking grates\nStainless steel Flavorizer bars\nSnap-Jet individual burner ignition system\n", "embedding": [-0.26586914, 0.6220703, 2.6796875, -2.6054688, 0.08288574, 1.2822266, 0.031341553, -2.671875, 1.3691406, 1.4990234, 1.5341797, -1.9511719, -1.4707031, -3.0898438, 0.3305664, 1.2470703, 1.5019531, 0.38745117, 0.60302734, 0.40551758, 1.6269531, 0.9038086, 2.1582031, -1.8828125, 2.6464844, 1.1123047, 4.4296875, -4.6914062, 0.3334961, -0.6611328, -0.49731445, 1.6308594, 1.9326172, 1.1669922, -2.3242188, -1.1845703, -3.0605469, 0.91552734, -2.8554688, 0.75439453, -0.09686279, -2.1445312, -0.00015258789, -0.31323242, -2.2480469, -1.1904297, 0.7138672, 0.44873047, -1.8857422, -0.091796875, 3.0878906, 1.046875, -0.2524414, 1.2734375, -1.6201172, 1.21875, -1.0566406, -3.7382812, 1.9970703, 0.029006958, 1.6923828, -0.86083984, -2.5507812, -1.5117188, -1.4511719, -1.6435547, -1.5410156, -0.5546875, 1.5898438, 1.6796875, 1.5332031, -0.8046875, -2.0722656, 0.23571777, 0.5805664, -2.3359375, -2.7402344, 0.54833984, 0.6357422, -2.0742188, -2.1171875, 1.0527344, 1.0185547, -1.2480469, -0.13757324, 0.70947266, -1.5371094, -2.6386719, 0.6044922, 0.11639404, -1.9003906, 0.18322754, -0.80078125, -4.4609375, 0.9189453, -1.75, 0.1895752, 1.7402344, 0.19897461, 0.6113281, -0.25097656, 3.7539062, 1.1738281, -0.76660156, -2.2949219, -1.8564453, 2.1542969, -1.2431641, -2.5097656, -1.7685547, -2.0019531, -0.5415039, 1.3710938, 1.5458984, 0.9423828, 1.2041016, 0.8359375, 2.0273438, 1.4951172, 0.97021484, 2.6972656, -0.7246094, -0.6879883, -1.0917969, -0.8959961, -0.22460938, -1.1005859, 1.1328125, 4.0195312, -2.5800781, 0.54785156, 0.6015625, 3.625, 1.4541016, -1.0175781, -1.703125, -0.6118164, -1.1152344, -2.0722656, 0.06137085, 0.19616699, 1.2373047, 0.8154297, -1.1015625, -1.9580078, -0.12805176, -0.7446289, -0.49072266, -0.09240723, -1.4394531, -1.4306641, -2.1210938, 0.10272217, -0.96875, 1.1601562, -0.68066406, -1.1757812, -0.13452148, 3.1210938, 2.2929688, 0.8388672, -0.5136719, -0.75, -0.46411133, 1.7392578, -1.7890625, 0.70996094, 2.1484375, 0.55322266, 1.1044922, -0.69628906, -1.0058594, 0.97802734, 1.0546875, 1.2802734, 0.19628906, -0.6411133, 2.2519531, -0.6196289, 0.46362305, -0.26879883, -2.4101562, 1.1289062, -0.12207031, 1.4677734, 0.0970459, 0.5649414, -0.8828125, 0.57714844, -0.50439453, 0.066467285, 0.8408203, 1.1464844, 0.40966797, 0.58935547, -1, -3.1582031, -2.4433594, 1.6123047, -0.35839844, -1.5966797, -0.69091797, 0.88134766, 0.13916016, -0.38598633, -2.0507812, -1.4882812, -0.48583984, 1.2529297, 1.5996094, 1.4082031, -0.61035156, 1.1054688, -0.8725586, 0.28686523, -1.4423828, 1.9472656, 1.1699219, 0.390625, 1.0136719, -1.2539062, 0.61083984, -0.049804688, 1.1113281, 1.6035156, 0.5463867, -0.13452148, 0.64501953, -2.6425781, 0.46020508, 4.2773438, 0.018859863, -0.20996094, 1.2509766, 1.0097656, 3.1953125, 1.4677734, -1.953125, 0.61279297, -0.65722656, 0.48388672, 0.6533203, -0.98535156, -0.84228516, 0.031799316, -0.9897461, -2.0039062, 0.94433594, 2.0664062, 1.2148438, -0.83691406, -0.023223877, 0.113464355, 1.0263672, -0.7675781, 1.8027344, -1.9091797, 0.32714844, -0.53271484, -2.3066406, 2.4941406, 1.1894531, 0.54003906, 0.7026367, 1.9970703, -2.9042969, 0.8100586, 0.7470703, -2.2558594, -1.9267578, 0.028289795, -0.50634766, 1.3808594, -1.65625, 3.1855469, 0.8413086, -1.5722656, 1.7578125, 0.39672852, 0.46044922, -0.015342712, -0.35473633, 1.7529297, -2.9824219, 0.2836914, -1.1064453, 0.29345703, -0.67089844, -1.6972656, 1.2304688, 4.1328125, -1.1015625, -2.6757812, 1.8144531, -1.6142578, 0.3474121, 1.9003906, -0.64208984, 0.09686279, 0.6010742, 0.80322266, 0.16723633, 0.48950195, 2.9785156, -1.1474609, -1.2109375, 1.6591797, -3.2128906, 0.8642578, 0.52490234, -1.6796875, 0.36767578, -1.7753906, 1.8671875, -0.6044922, -1.0917969, 1.0292969, -4.0703125, 0.5546875, -0.18164062, 1.4716797, 0.43945312, -2.125, 1.2939453, 0.19995117, 1.0185547, -0.4831543, 0.3955078, 1.6591797, -0.9921875, 0.8178711, -1.5722656, -1.6513672, -2.9609375, -1.7792969, -1.1386719, -3.8652344, -1.6455078, 2.1855469, -1.1328125, 1.4160156, 1.0371094, -2.1054688, -1.5292969, -0.29345703, -2.6503906, -0.23474121, -0.62597656, 0.8154297, 0.31054688, 0.64208984, 0.75878906, 0.4375, -5.7929688, -0.12243652, -0.17468262, 1.3505859, -0.75634766, -0.47460938, 0.14648438, -1.0322266, 0.8798828, -1.0498047, 0.21777344, 0.96191406, -0.95410156, 0.22497559, -1.84375, -0.34985352, -2.8710938, 1.1582031, -0.97265625, 2.9902344, -2.8789062, -2.34375, 0.33935547, -0.41601562, 6.0390625, 1.9941406, 1.2597656, -0.8388672, 1.0478516, 0.058258057, -1.9277344, -0.39160156, 0.44580078, 1.2255859, -0.65625, 0.35131836, -1.0078125, 1.3398438, -2.8222656, -1.4121094, 0.8642578, -0.60058594, -1.5068359, 0.1394043, -0.58935547, -1.1289062, -2.6503906, -1.1865234, 0.09460449, 0.11816406, -2.8574219, -0.8022461, -0.37475586, 0.7158203, -0.71533203, 2.3964844, -1.6269531, 0.22094727, 1.0761719, -1, 0.63134766, -0.36279297, -3.1152344, 3.4960938, -1.0927734, -1.8857422, 2.3183594, -2.7460938, -1.1787109, -1.96875, -0.2824707, 2.6777344, 0.40698242, 0.33032227, 0.07019043, 1.7832031, -0.6074219, -1.5791016, -0.37158203, -1.7753906, 0.3864746, 2.8691406, -2.5410156, -1.4902344, -0.42773438, 1.3623047, -3.5839844, 1.0820312, 1.2841797, 2.8359375, 2.265625, 1.5498047, -0.20739746, 1.0507812, -1.9189453, 0.99609375, 0.6118164, 1.0371094, 0.23364258, -1.6689453, 0.7426758, -0.7109375, 0.48242188, 1.4628906, 1.5097656, 2.7441406, 1.4160156, 1.2949219, 1.1630859, -1.3847656, -0.18383789, 0.8701172, -0.42919922, 1.8388672, -1.59375, -0.32080078, -0.19555664, 0.20568848, -0.085510254, -0.7260742, -0.8955078, 1.7939453, 0.04244995, -0.26660156, -0.7270508, 1.0986328, 1.8017578, -0.81152344, 0.671875, -1.2402344, -1.3730469, 1.7910156, -0.68652344, 0.21020508, -1.2275391, 0.61865234, -0.1472168, -2.9785156, 0.3762207, 2.8105469, -1.6230469, -0.99853516, -0.8486328, -1.3828125, 0.7470703, 1.1738281, -0.88378906, 0.14245605, 0.82421875, -0.77978516, 1.3974609, 1.2021484, 0.671875, -0.09844971, 0.8071289, 0.95703125, -0.37963867, 1.6796875, 2.2304688, 1.1113281, -3.0664062, 0.049957275, -2.8496094, -1.6201172, 1.6982422, -1.0214844, -1.2382812, 2.3242188, 1.2861328, 0.33666992, -1.7080078, 2.6503906, -2.1210938, -0.103881836, 2.0195312, -1.5761719, 0.22009277, -3.578125, -2.3320312, 0.7792969, -2.4511719, 0.88916016, 0.19750977, 0.9350586, -0.6069336, 2.34375, -0.090026855, -1.5800781, -1.3535156, -0.13330078, 0.984375, -0.82666016, -0.40039062, -0.6142578, 0.095336914, -2.7246094, -1.2509766, 1.2666016, 0.04559326, 1.4990234, 0.72753906, -4.7578125, -0.14160156, -0.56884766, -0.2614746, -1.1328125, -0.47583008, 0.76123047, -0.11785889, -0.24023438, -0.8720703, 3.1757812, 0.76708984, -0.8330078, 0.89746094, 2.0488281, -0.6977539, -2.0566406, 0.6147461, -0.25976562, 2.3027344, -1.2265625, -1.0166016, -0.8095703, 0.18774414, 1.4716797, 0.74560547, 0.46044922, 0.76464844, -1.9169922, 1.3242188, 1.8222656, 2.078125, 1.2373047, 0.53271484, -1.7109375, 0.72802734, -0.09509277, -0.052337646, -2.8496094, 0.02204895, 0.38964844, -1.6376953, 0.7397461, -2.8496094, 2.1152344, -0.24682617, -1.6699219, -3.296875, 0.88378906, 3.8183594, 1.1005859, 1.6767578, -2.0605469, 0.4597168, 0.068237305, 0.52734375, 0.33984375, 1.7705078, -0.64501953, -2.0214844, 1.875, 0.67285156, -2.0839844, 0.07385254, 0.37060547, -0.29223633, -0.87353516, -2.4101562, 0.23217773, -0.20703125, 1.1650391, -0.890625, -1.3505859, 2.0976562, 0.45117188, -0.0847168, 1.1113281, 2.7636719, -2.359375, 0.11212158, -1.5107422, 0.17614746, 0.61328125, 1.0371094, 0.75683594, -0.7373047, 0.6743164, -1.4130859, 2.2929688, -1.8652344, 1.1328125, 0.122680664, 1.2304688, 0.043426514, -1.6767578, 2.6289062, 3.0527344, 1.7685547, 2.6601562, 0.91015625, -3.6308594, 2.1972656, 0.7084961, -2.5234375, 1.3544922, 0.3708496, -1.0605469, 0.5732422, 0.21948242, -3.7460938, 0.6660156, 3.2089844, -0.52734375, 1.0791016, -0.57910156, -0.3557129, 1.0332031, -1.7529297, -0.17468262, 1.1269531, -0.015808105, 0.8876953, -0.6635742, 0.33642578, -0.95458984, 2.1289062, 1.2636719, -2.8027344, -0.8125, 1.4707031, 0.1541748, 0.62841797, 0.265625, 0.26416016, -1.1162109, -0.7080078, 3.3476562, 1.0244141, 0.083984375, 1.5380859, 1.9042969, -0.77685547, -0.051940918, -2.2011719, 1.6064453, -3.3027344, 0.072509766, 0.22912598, -2.6445312, -1.2949219, -1.2285156, -0.34643555, 0.10821533, 3.1210938, 1.7841797, 0.5239258, 0.37817383, 0.18347168, -2.0566406, -3.0976562, 0.08428955, -0.49145508, 0.5546875, 1.5791016, 1.4277344, -1.3095703, 1.4277344, 0.39916992, -0.52441406, 0.92822266, 0.53271484, 0.3449707, 0.30639648, 0.16235352, -1.6171875, -1.1083984, -0.6689453, 0.44262695, 0.8071289, -0.021942139, -1.9169922, 0.30615234, -0.36767578, 0.89697266, 0.7602539, 1.5419922, 1.4707031, -0.15344238, 0.055725098, 1.6982422, -2.3476562, 1.6035156, -2.1523438, -1.1542969, 2.6015625, -1.1650391, 2.578125, 0.8540039, -0.7636719, 0.20605469, -3.0117188, 0.9404297, 0.5761719, -0.11816406, 0.15905762, -0.12390137, 1.6386719, -1.2675781, 0.6113281, -0.6220703, 0.73095703, 1.6611328, -0.92871094, 0.19445801, -1.2753906, -2.65625, 2.1816406, -2.9257812, -0.20727539, -1.3476562, 0.42578125, 1.6347656, 0.91552734, -0.42333984, 1.5830078, -0.041503906, -1.0507812, 1.2314453, -0.2746582, 3.6054688, 2.5175781, -1.7001953, -0.81884766, -1.0917969, 0.25976562, 2.5332031, 0.7597656, -1.5625, 0.35742188, -0.8881836, 1.0361328, -0.36645508, 1.2314453, 1.5214844, 1.2890625, -1.8544922, 1.6279297, 3.3339844, -0.029708862, 1.7451172, 0.95458984, 1.2148438, -0.28881836, 3.1992188, -0.19628906, -1.4082031, 3.1074219, -2.2695312, 0.8413086, -0.6557617, -2.4941406, -1.0185547, 0.9819336, 0.05596924, -2.4960938, -0.5908203, -1.6171875, 1.1308594, 1.1582031, -1.8779297, -0.28735352, 0.6298828, 0.23046875, 2.2753906, 0.5390625, 2.9335938, -1.5996094, 0.42504883, -0.6171875, 0.6875, 0.15942383, -1.6816406, 0.32666016, 2.1171875, 0.5410156, -0.19787598, 2.125, 2.4023438, 1.8466797, -1.1982422, 0.87646484, 2.5117188, 1.2265625, 2.2539062, 1.1259766, 1.9238281, 2.3007812, -1.6425781, -1.1318359, 0.8359375, 0.7792969, 1.0556641, 0.16748047, 1.3876953, -1.1855469, -0.9248047, -0.017440796, 0.38183594, 0.5571289, 0.5913086, 0.81640625, 0.5126953, 1.2587891, -1.3466797, -1.4355469, -1.7451172, 1.1240234, 0.5595703, -0.7783203, 1.9863281, 0.6801758, 2.5722656, -1.0107422, -1.2763672, 0.60253906, -3.3164062, 0.7080078, 0.7373047, -1.0449219, -1.9980469, -1.515625, 1.8808594, -1.28125, -0.23791504, 0.38916016, 3.828125, 0.21313477, -0.5019531, -2.2421875, 0.64746094, -0.2631836, 3.4746094, 0.34057617, -0.9091797, -0.2614746, 0.41088867, -2.5429688, -3.4941406, 3.390625, 1.6796875, 1.3759766, 1.1884766, -1.7519531, 1.9169922, -0.8227539, 1.7060547, -2.3007812, -0.15808105, -0.14343262, -3.1992188, -2.6054688, 0.3552246, -1.1933594, -0.12731934, 0.10168457, 1.4199219, 0.115600586, 1.1201172, 0.9453125, 1.5722656, 2.1054688, 1.9433594, -0.2199707, -1.7753906, 3.1601562, 1.5078125, -1.3769531, -2.5332031, 1.9970703, 1.984375, -0.65185547, 0.6845703, -0.8881836, 0.19848633, 0.27294922, 1.1787109, -0.48388672, -1.7060547, -0.86083984, 0.087524414, 1.7392578, -1.4091797, -0.36108398, 2.90625, 2.1875, 1.7158203, 2.7246094, 0.5913086, -0.90478516, 1.5175781, -0.72265625, -0.93359375, -1.2949219, 1.4716797, 2.0449219, 1.2382812, -0.40283203, -0.29345703, 0.27490234, 0.29492188, -0.8876953, 0.56933594, -1.7373047, 0.30126953, -1.5244141, 0.1574707, 0.48291016, -1.4667969, 2.9726562, 0.25561523, 0.37280273, 2.7265625, -0.80078125, -0.47998047, -1.6035156, -0.5541992, -1.3261719, 0.37841797, -0.94433594, -0.4584961, 4, -1.5507812, -0.17614746, -1.2910156, -3.9472656, -0.3022461, -2.9648438, 1.0556641, -2.3046875, -2.5957031, -2.0253906, -0.103637695, 1.4521484, -0.30517578, 0.20837402, -1.7109375, -1.3398438, 2.2128906, -1.6015625, 1.2734375, -0.48120117, -0.7294922, 1.1738281, 3.953125, 0.95947266, 1.0615234, 0.92041016, 3.9316406, 0.50683594, -2.3710938, -1.0058594, 0.54296875, 0.14208984, -0.3894043, -1.1044922, 0.4375, -0.46240234, -1.5263672, -0.3022461, -1.3222656]}, "B089D4KPM3": {"id": "B089D4KPM3", "original": "Brand: KitchenAid\nName: KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel\nDescription: \nFeatures: Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited\nFlush side burner cover creates extra workspace when the side burner is Not in use\nIncludes removable rear-acceSS catch pan, warming rack and caster wheels.\nConvertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003\n", "embedding": [-0.8276367, 0.9506836, 2.796875, 0.36010742, -0.2199707, 0.010055542, 0.2121582, -0.3984375, 0.002538681, 1.3623047, 2.1933594, 1.7490234, -0.22375488, -1.8642578, 0.8100586, 1.0917969, 1.3466797, -0.13427734, 1.7216797, 0.73876953, 0.91748047, 1.0371094, 0.9458008, -1.3691406, 1.9443359, 1.3242188, 3.8183594, -3.8613281, -1.0947266, -1.3789062, 1.5195312, 0.25073242, -0.018066406, 0.81689453, -2.6054688, -1.5195312, -2.7167969, 2.4667969, -2.5703125, 1.4082031, -1.3027344, -0.65722656, -1.3623047, 0.6689453, -3.3613281, 0.03555298, 0.7001953, 1.5615234, -3.0117188, -0.6796875, 1.703125, 2.3359375, -0.42895508, 1.2128906, -2.2304688, 1.5771484, 0.4777832, -2.7226562, 1.2236328, -0.12878418, 2.5429688, -0.3071289, -1.4462891, -0.50146484, -2.0175781, -0.013793945, 1.8330078, 0.38720703, -0.11779785, -0.13342285, 2.2871094, -0.1829834, -0.5253906, 0.5864258, -0.90771484, -2.4511719, -2.2773438, 1.7304688, 0.12756348, -1.7099609, -3.4003906, 0.9350586, 0.32641602, -2.1171875, 1.7929688, 1.3896484, -1.328125, -1.9130859, 0.92285156, 0.9453125, -1.7451172, 1.3984375, -3.0859375, -3.4570312, 1.5830078, -0.19091797, -0.9296875, 0.45288086, 0.77197266, 1.8388672, -2.2109375, -0.48657227, -0.8310547, -0.1541748, -1.9013672, -0.86035156, 0.9169922, 1.1992188, -4.765625, 0.029525757, -1.3867188, -0.11975098, 1.2001953, 0.040924072, 0.6640625, 0.6333008, 1.2617188, 1.8867188, 2.7636719, 2.1386719, 4.4882812, -0.089904785, 0.26586914, 0.25878906, 0.10668945, 1.9785156, -2.2109375, 2.8574219, 5.9492188, -2.4667969, 0.47045898, 0.5161133, 2.3789062, -0.77490234, -1.4990234, -2.7207031, -0.25756836, -1.6904297, -2.6542969, 1.4931641, -1.7646484, -0.46289062, 1.0244141, -2.5859375, -4.140625, -0.26708984, -0.67822266, 0.88720703, -0.98535156, -1.5576172, -0.40600586, -1.171875, -0.019500732, -1.7021484, 3.5390625, -0.60546875, -1.3203125, -2.6289062, 2.8671875, 1.3007812, 1.6162109, -2.0371094, -1.7578125, 0.6176758, 1.5576172, 0.39331055, -0.6567383, 1.0117188, -0.8305664, 1.8339844, -1.4980469, -1.7734375, 0.6328125, 0.11456299, 0.21765137, -0.2783203, -0.10949707, 1.3310547, -0.20166016, -0.63964844, -1.09375, -3.9511719, 1.6181641, -0.8432617, 2.3378906, -1.7548828, 2.0546875, 0.7285156, 2.828125, 0.44970703, 0.3515625, -0.23535156, 0.35253906, -0.34472656, -0.1977539, -1.8212891, -2.1523438, -1.4736328, 1.1386719, 0.7788086, -0.9863281, -0.32104492, 0.0011253357, 1.1171875, -1.2119141, -2.5429688, -0.7167969, -1.6835938, 1.1083984, 1.5341797, 3.4121094, -1.9042969, 0.9243164, -2.3242188, -0.74902344, -3.3066406, 1.9189453, 0.62646484, 2.3613281, 2.6992188, -0.0004608631, 0.20751953, 0.08660889, 1.2246094, -0.0736084, 1.1865234, 1.4472656, 1.8046875, -1.1201172, -0.4580078, 1.7421875, 0.86328125, -1.2167969, 1.0869141, -0.005241394, 2.8964844, 0.83984375, -1.5537109, -1.1240234, -0.05718994, 1.2304688, -1.2304688, -0.08605957, -1.6904297, -1.2763672, -0.3293457, -2.7421875, 1.0087891, 1.4765625, 2.0039062, -0.56103516, 0.7368164, -1.2402344, 1.8183594, -0.22460938, 1.5654297, -0.35253906, 0.6113281, -0.6191406, -1.4492188, 1.0576172, 1.0058594, -1.7724609, -0.46142578, 1.9638672, -1.5664062, 3.0253906, -0.5576172, -2.0644531, -2.2558594, -0.32543945, 0.40649414, 2.2480469, -0.14282227, 0.7919922, 1.8320312, -2.2460938, 3.1894531, 0.8276367, 1.7822266, 0.6274414, -0.60253906, 2.3632812, -1.4267578, 0.6123047, 1.6074219, 0.72509766, -0.8339844, -1.4824219, 1.9082031, 5.4296875, -0.06939697, -2.7304688, 3.4042969, 0.61816406, 0.7216797, 1.9013672, -0.3659668, -0.890625, 0.29858398, 0.08898926, 0.86035156, 0.21740723, 2.7109375, -0.08843994, -1.8359375, -1.1816406, -0.9169922, 0.19677734, 1.4951172, -0.765625, -0.41381836, -1.9697266, 1.7392578, -1.2470703, -0.9121094, 2.5097656, -1.6181641, 0.55029297, 0.31201172, 0.21203613, 1.21875, -0.47338867, -0.48901367, -1.2470703, -0.8417969, -1.0683594, 0.71728516, -0.035736084, -1.5195312, -1.2246094, 0.6801758, 0.5126953, -2.2871094, -2.203125, -0.24694824, -3.0546875, -1.5644531, 1.1591797, -2.3242188, -0.81396484, 1.2216797, -1.0644531, 2.5097656, -0.67529297, -2.75, -2.9902344, -0.38134766, -0.34057617, -0.66259766, 0.17236328, 0.5371094, 0.42578125, -3.5761719, 0.39331055, 0.5419922, -0.4921875, 1.5380859, -2.4296875, -0.4099121, 1.2861328, 0.86621094, 1.0585938, 0.15039062, 0.84521484, -1.7509766, 0.9116211, -3.265625, -0.21130371, -3.3984375, 0.9584961, -0.8779297, 1.6005859, -2.0449219, -1.1894531, -0.98828125, -0.103393555, 4.9453125, -0.69970703, 0.63671875, -0.10015869, 0.75927734, 1.8535156, -1.0410156, -1.0488281, -0.73779297, 0.21740723, -2.2382812, 0.6850586, -2.9765625, 0.5917969, -0.9213867, 1.5830078, -1.1982422, 0.6201172, -2.2636719, 0.80566406, -1.4091797, 0.119018555, 0.3371582, 0.0045394897, 0.4729004, -1.1943359, -1.5888672, -0.36157227, -2.2285156, -1.609375, -0.72265625, 1.4941406, -0.9926758, -0.7026367, 0.7260742, -0.9277344, 1.1337891, -0.5493164, -3.9785156, 1.5761719, 0.8144531, -2.8046875, 1.9824219, -1.9970703, -1.6748047, -2.1425781, -0.003835678, 4.40625, 0.90185547, 2.3945312, -0.5, 1.1865234, -0.7236328, 1.2548828, 1.484375, -1.2998047, 0.45361328, 3.8007812, -1.2626953, -1.1162109, 0.81103516, 1.5839844, -2.8945312, -1.6757812, 1.2880859, 0.21313477, 2.6503906, 1.4257812, 1.9472656, -0.7910156, -1.4951172, 1.8974609, 1.0117188, 0.25146484, -0.032684326, 0.46533203, -0.38916016, -1.46875, 1.3945312, 1.4580078, 0.48486328, 2.2578125, 1.078125, 2.6582031, -1.0146484, -1.9169922, -0.27734375, -0.16027832, -0.9707031, 2.9511719, -1.2441406, 0.5600586, 0.5317383, -0.5317383, 0.12042236, -1.9404297, -0.0129470825, 2.5039062, -1.5175781, 0.08123779, -1.3603516, 0.3972168, 0.69628906, -1.9892578, 0.79248047, -2.0722656, -0.12670898, 1.2666016, 0.19592285, -0.62109375, -1.28125, 1.0253906, -0.26049805, -1.2529297, -1.5214844, 3.6015625, -2.6640625, -1.5742188, -0.101501465, -0.58154297, -1.5322266, -0.5444336, 0.6376953, -1.6503906, 1.9150391, -0.4099121, 0.5283203, 2.0878906, -0.54345703, 1.3105469, -0.40063477, 1.5517578, -0.6191406, 1.1416016, 2.3339844, 0.69970703, -4.0390625, -0.35961914, -3.0625, 0.24108887, -0.6225586, 0.4333496, -2.4101562, 0.48583984, 0.9946289, 2.5253906, -1.9931641, 3.3886719, -0.18896484, -2.3144531, 1.2519531, -2.9179688, -0.56103516, -3.34375, -4.125, 1.4550781, -1.1669922, -0.11810303, 1.4892578, 1.2050781, 1.0166016, 3.1738281, 0.7060547, -3.2246094, -1.7207031, 0.765625, -1.2587891, -0.15649414, -0.7944336, 1.4091797, 0.3022461, -2.1035156, -1.5449219, 0.30664062, 0.14379883, 1.4091797, 1.2890625, -2.7851562, -0.106933594, -1.1748047, 1.1972656, -1.5166016, -1.7226562, 0.46923828, -0.46166992, 0.6713867, -3.984375, 2.5742188, 0.8808594, -0.09838867, 1.171875, 3.3867188, -0.22521973, -2.921875, 0.56347656, -0.9277344, 1.6181641, -1.3691406, -1.1904297, -0.8100586, 1.0585938, 0.45483398, -0.00856781, 1.3525391, -1.2832031, -2.4726562, 1.5380859, 1.7509766, -0.074157715, 2.7519531, -1.0908203, -1.9960938, 0.48901367, 0.9760742, -3.1757812, -0.032836914, 0.21777344, 0.27075195, -0.8388672, 0.030151367, -1.8447266, 1.1757812, -1.0986328, -1.5234375, -4.5195312, 2.265625, 2.46875, 0.95410156, 2.2695312, -1.2324219, -0.2043457, -0.6694336, 0.42016602, 0.16308594, 0.39672852, -1.7529297, -0.16882324, -0.72753906, 0.6064453, -1.6894531, -0.5673828, 1.3330078, -1.7988281, 0.05050659, -2.2265625, 0.11871338, -0.45361328, -2.5019531, 0.55566406, -0.7758789, 1.6181641, -0.61035156, -1.3535156, 0.5151367, 0.5527344, -1.1210938, 2.5234375, 0.27685547, -0.19616699, 1.1738281, 0.7734375, 2.3652344, 0.08911133, 0.2298584, 0.15100098, 1.5507812, -0.30810547, 0.14245605, 2.4355469, 0.2705078, -1.5927734, -0.78808594, 1.3251953, 3.0976562, 1.5078125, 2.8847656, 1.4433594, -2.4550781, 3.4648438, 0.5517578, -1.9736328, -0.2783203, -0.3022461, 0.028656006, 1.2285156, -0.35302734, -2.8398438, -0.3359375, 2.2109375, -1.2695312, 0.7758789, 0.4206543, -1.9003906, -1.1298828, -2.6757812, -0.54833984, 0.1697998, -1.1005859, -0.057495117, -0.8286133, 0.56640625, 0.11022949, 1.6513672, 3.3339844, -0.6586914, -1.9521484, 2.5214844, -1.3447266, 0.8935547, 0.117004395, -0.43139648, -1.3476562, 0.76708984, 3.53125, 1.6337891, 1.2626953, 0.609375, 0.7988281, -1.4951172, 1.9521484, -0.33666992, 4.0546875, -1.7255859, -1.2578125, 1.4492188, -2.4667969, 0.36157227, -3.1484375, 0.85839844, -1.0341797, 3.5898438, 2.21875, 1.1435547, -1.5927734, 0.2902832, -1.4179688, -2.8691406, -0.9667969, 0.81103516, 0.1274414, 0.12634277, 0.37548828, -0.9838867, 1.1103516, 0.029678345, 0.08276367, -1.0537109, -0.22705078, 0.97509766, -2.1464844, -0.13427734, -0.113220215, -1.5664062, 0.84814453, 2.109375, -0.5961914, 0.25756836, -2.6113281, -2.4375, 1.9042969, -2.0039062, -0.16442871, 2.1855469, 0.70703125, -0.4572754, 0.3305664, 1.7099609, -2.7226562, 1.2744141, -2.2753906, -0.44628906, 1.5761719, -0.5073242, -1.1552734, 0.11627197, -1.1914062, -0.16479492, -1.2197266, 2.8964844, -0.35864258, 1.5332031, 0.79541016, 0.82666016, -1.3984375, -1.1474609, 0.5073242, 0.41308594, 1.3232422, -0.08001709, -3.3398438, 0.95410156, -1.3564453, -2.296875, 0.7910156, -2.7871094, 1.3417969, -1.3613281, -0.7211914, 1.1005859, 0.78759766, -0.6958008, 0.6303711, -0.96972656, -0.23535156, 0.55029297, -1.3730469, 3.3652344, 3.2832031, -0.0736084, -0.65527344, -2.8710938, 0.2479248, 0.97509766, 0.72314453, -1.9355469, -0.11401367, -0.7939453, 1.1777344, -0.3461914, 0.43530273, 3.1914062, 0.23010254, -0.7011719, 0.52734375, 2.7460938, -0.9458008, 1.2519531, 0.17297363, 1.5800781, -0.49804688, 5.3125, 0.57421875, -2.8535156, 1.4677734, -1.3867188, 1.0371094, 0.1361084, -0.9399414, 0.27539062, -3.0371094, -0.5024414, -2.6171875, -1.1464844, -2.4335938, 2.3671875, 1.0839844, -1.8828125, -0.48999023, 2.1425781, 0.22644043, 2.3613281, 2.3847656, 1.0839844, -1.21875, 0.37060547, 0.05996704, 0.36450195, 2.0585938, -2.5, 1.3232422, 1.4111328, 0.20544434, -1.9140625, 3.2792969, 2.1289062, 2.5878906, 0.48217773, 2.0839844, 3.1035156, 1.875, 2.7539062, 1.1210938, 1.3076172, 1.6259766, -0.10058594, -0.52001953, 0.5991211, 1.2285156, 0.88623047, -2.2832031, 0.38549805, -2.0800781, -1.2714844, 0.81347656, -0.16711426, 0.640625, -2.1386719, 0.79003906, 0.96728516, 0.45166016, -2.2773438, -0.085510254, -0.76953125, -0.99560547, 1.2207031, 0.07043457, 3.390625, -0.21081543, 0.99072266, -1.3095703, -0.4675293, 2.0488281, -2.1210938, 0.46484375, -0.3515625, -0.23986816, -1.125, 0.048736572, 1.03125, -0.31713867, -0.30371094, 0.3388672, 1.4140625, 0.92871094, -0.07543945, -1.3046875, 1.9257812, 1.2636719, 2.1015625, 0.8847656, -1.1738281, 2.28125, -1.0839844, -2.0625, -3.7460938, 3.25, 1.421875, 1.1328125, 0.50878906, -3.8144531, 0.46728516, -0.46533203, 0.6230469, -1.3144531, 1.875, -0.3317871, -3.046875, -0.23327637, 0.017684937, 0.0054016113, 2.1113281, 0.5131836, -2.1289062, 2.6132812, 0.31640625, 1.6259766, 0.9716797, 1.2978516, 0.8144531, 1.2412109, -0.40527344, 3.5703125, -0.08416748, -1.4296875, -1.1767578, 2.3984375, 2.2519531, 0.25268555, 2.5585938, -1.7207031, -0.609375, 0.7241211, 0.5859375, -0.7705078, -2.2226562, -0.2668457, -0.47558594, 1.4697266, -1.6826172, -1.9296875, 3.9765625, 2.2109375, 0.4802246, -0.14147949, -0.05899048, -1.4775391, 1.7714844, -0.9042969, -0.40234375, -1.6855469, -1.1337891, 1.8085938, 0.2680664, -1.7177734, -0.19042969, 1.2626953, 0.5180664, -1.5810547, -1.046875, -0.3173828, -0.24511719, -0.5136719, 0.34228516, -0.39282227, -2.8125, 3.0996094, -0.12548828, 0.796875, 3.7441406, -1.1171875, 1.0673828, -1.6367188, -0.8173828, -0.23742676, -0.09576416, -1.3945312, 1.9072266, 3.4121094, -0.17602539, -0.5253906, -1.953125, -3.28125, 0.03253174, -1.2509766, 2.7246094, -0.9604492, -2.9882812, -1.4980469, 1.3779297, 2.0957031, -1.8398438, -0.7285156, -0.5234375, -0.5263672, 1.7246094, -0.28735352, 0.031066895, -0.34570312, 0.4284668, 0.36743164, 1.6582031, 0.9404297, -0.6542969, 0.46801758, 3.2011719, -1.921875, -3.359375, 0.7583008, 0.71972656, 0.50878906, 0.5566406, 0.23449707, 0.8666992, 1.6054688, -0.5776367, -0.41186523, -2.34375]}, "B08F27PWFS": {"id": "B08F27PWFS", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating\nDescription: \nFeatures: \u3010Grill and Griddle Combo\u3011--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA]\n\u3010Rapid Heating\u3011--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious.\n\u3010Easy Cleaning\u3011-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use.\n\u3010Anti-deformation Surface\u3011-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature.\n\u3010Power Source Type\u3011--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.\n", "embedding": [-1.0107422, 0.8779297, 0.25439453, 0.7993164, -0.4255371, 0.36035156, 1.0644531, -0.58935547, -1.4794922, 1.7021484, 0.78515625, -0.20605469, 1.2304688, -2.9082031, -0.35107422, 1.2890625, 1.4384766, -0.7832031, 1.3017578, -1.640625, 2.2265625, 0.16210938, 1.8056641, -0.7988281, -0.009346008, 0.3112793, 4.2695312, -3.234375, 0.70654297, -0.14318848, 3.4316406, -1.0869141, 0.94384766, 1.8730469, -2.9394531, -0.42895508, -2.046875, 2.1679688, -1.5654297, -1.0898438, -1.015625, -1.0771484, 3.6953125, -0.24243164, -2.8125, -2.5625, 1.0048828, 2.5253906, -0.23132324, -2.1523438, 0.7084961, 0.9145508, 0.37841797, 1.1669922, -2.6367188, 1.5302734, -0.18103027, -1.3447266, 0.80859375, -0.30371094, 1.5791016, 0.8256836, -2.5839844, 0.8417969, -1.125, -2.0546875, 0.6098633, -0.19042969, 0.5678711, -2.2890625, 2.0234375, 0.25463867, -1.4560547, -0.9091797, 0.29956055, -0.21020508, -2.3027344, -0.16101074, 2.2109375, 0.8911133, -1.3662109, 3.2226562, 0.8510742, -3.265625, -0.2734375, 1.5292969, -0.80322266, 0.38745117, 2.0722656, 0.81884766, -1.2421875, 2.1855469, -3.8398438, -2.7753906, 0.6899414, -0.6220703, 0.99853516, 0.81640625, 0.3166504, 1.5126953, -1.9541016, -0.028015137, -0.37646484, -0.53271484, -3.9082031, -0.52490234, 3.1289062, -0.96777344, -3.7675781, 0.054107666, -2.1171875, 0.6347656, 2.6210938, -0.22668457, 1.2070312, -1.046875, -0.75878906, 1.0302734, 2.7089844, 1.6230469, 3.7929688, 0.7392578, 0.76953125, -0.23730469, 0.33032227, 0.33618164, -0.44726562, 3.328125, 3.6972656, -1.1396484, -1.5175781, -1.0175781, 4.15625, -0.09887695, -1.21875, -3.5917969, -0.92529297, -1.3496094, -2.4746094, 1.0830078, -1.8398438, 0.31054688, 2.0292969, 0.9838867, -5.8554688, -0.6879883, 1.0683594, 1.8544922, 1.7412109, -0.8725586, -0.6459961, -2.6660156, -0.21948242, -2.2597656, 1.6865234, -1.2558594, -1.6357422, -0.5336914, 4.1210938, 0.41088867, 1.6162109, -1.9863281, -2.1132812, 0.4375, 0.8354492, -2.9257812, -0.9628906, 2.6621094, 0.74902344, 1.5849609, -0.7578125, -2.2734375, 0.703125, -0.515625, -0.17211914, -1.3007812, 0.29663086, 1.3369141, 2.4882812, -0.23596191, -1.6787109, -2.2460938, -0.42041016, 2.09375, 0.5004883, -1.421875, -0.000726223, 0.6791992, -0.42016602, -1.0791016, -1.0566406, 1.25, -1.7949219, -0.21020508, -1.6855469, -2.1582031, -1.9833984, -1.6816406, 0.22949219, 1.2724609, 0.50439453, -0.7890625, -0.6953125, 0.5541992, -1.4316406, -2.4902344, -0.7895508, -1.6171875, 0.44335938, 0.7558594, 1.7841797, -1.0537109, 1.5380859, -0.9121094, -1.6787109, -0.6845703, 2.2050781, 0.3256836, 2.4082031, 1.7998047, -0.38842773, -0.38964844, 0.16430664, 2.4960938, 2.3066406, 0.73583984, -0.06713867, 0.984375, -1.6230469, -0.56884766, 2.2128906, 0.29907227, -1.7822266, -0.20568848, -1.2705078, 1.9023438, 0.9814453, -1.8808594, -0.19421387, 0.041931152, 0.70703125, -1.2099609, 1.2128906, -0.8979492, 0.40307617, 2.2871094, -2.2167969, 2.296875, 2.0546875, 1.4394531, -1.0634766, 0.0021457672, -0.59277344, -0.953125, -0.2409668, 0.3491211, -0.1928711, 0.52490234, -1.84375, -3.5273438, 1.3583984, 1.4414062, -1.8144531, 0.72216797, 2.5136719, -0.26831055, 2.8378906, 1.4853516, -2.546875, 1.296875, 1.1796875, 0.6977539, 2.171875, -1.046875, 0.6533203, -0.42871094, -0.36083984, 1.9394531, 0.58691406, 1.9121094, 0.4580078, -1.2851562, 1.7421875, -1.2441406, -0.32910156, 0.15185547, 0.036865234, 0.23242188, -0.67333984, 2.1347656, 4.4414062, -0.2290039, -2.7011719, 3.9316406, -0.24108887, 2.3085938, 2.6152344, -1.8134766, 0.3791504, 1.234375, 1.1533203, 1.0839844, -0.51708984, 1.8535156, -2.0175781, -1.1748047, -0.73828125, -3.5859375, -0.28173828, 2.7832031, -0.6982422, 0.6928711, -1.4169922, 0.77978516, 0.02809143, -0.31469727, 1.5517578, -1.2021484, 1.8457031, 1.7285156, 0.045562744, 0.7133789, -0.91503906, -1.6005859, 0.34814453, -0.036865234, -1.5849609, 0.41308594, 1.7792969, -0.9482422, 0.4501953, 0.1385498, 1.1191406, -1.6855469, -2.6972656, -1.5449219, -1.8662109, -3.1425781, 1.4912109, -0.21838379, -0.7783203, -0.16479492, -0.88183594, 1.625, -0.46606445, -2.6425781, -1.3476562, -0.44433594, -1.6787109, -0.3034668, -0.35131836, 0.45092773, -0.43164062, -3.1445312, -0.9321289, -0.66845703, -0.6401367, -0.0135650635, -1.1015625, 1.2470703, -2.1210938, -0.7988281, 0.47607422, 0.6591797, -0.15246582, -1.5419922, 0.6591797, -2.1933594, 1.3662109, -0.7348633, -0.0814209, -2.1386719, -0.07733154, -1.9140625, -0.97998047, 0.1204834, -1.8007812, 2.703125, -1.0527344, 0.31469727, -0.9716797, -0.7270508, 0.15283203, -0.24377441, -1.8193359, -1.0976562, 0.22265625, -2.4316406, -4.0039062, -4.2304688, -1.2539062, 0.5136719, -0.28320312, -2.1464844, -0.7548828, -3.0273438, 1.3837891, -1.8730469, 1.4101562, -0.19445801, 1.734375, -1.0625, -1.6679688, -0.7529297, 0.7446289, -0.035186768, -0.80615234, 0.19274902, 0.9785156, -0.61083984, -0.74560547, 0.5234375, -1.1884766, -1.5048828, -2.0917969, -3.4667969, 2.296875, 0.8417969, -0.76171875, 2.4550781, 0.7158203, -1.7851562, -3.9101562, -0.7529297, 3.4960938, 2.125, 2.4140625, 0.9042969, -1.0195312, 1.9384766, -0.00472641, -0.4794922, -1.3203125, -1.3300781, 3.7910156, -1.6357422, -1.2880859, 1.2519531, 2.1367188, -2.7753906, 1.1582031, 0.79785156, 0.5629883, 3.3183594, 1.5429688, 2.1757812, 0.9477539, -1.7919922, -0.14172363, 1.8183594, -1.4257812, -0.02835083, -0.8286133, -0.3708496, 0.025604248, 1.0888672, -0.578125, 1.0947266, -0.027511597, 0.47607422, 1.1513672, -2.6210938, 1.6494141, -0.0814209, -0.4074707, 1.9042969, 1.6708984, -0.13500977, 0.34545898, -0.06854248, 0.2866211, 0.0034122467, -1.8623047, 0.60253906, 1.3955078, 0.4267578, -0.15332031, 0.33740234, 0.27905273, 1.1865234, 0.7783203, 1.7763672, -2.2265625, -1.7099609, 2.1699219, -1.6650391, -2.1210938, -1.5449219, 1.2617188, -2.0078125, -2.2773438, 2.078125, 1.2636719, -0.16357422, -1.3056641, -0.61865234, 0.25512695, -1.2431641, 2.703125, 1.96875, -1.0849609, 0.3239746, 0.36621094, 1.8671875, 1.5791016, -1.2001953, -1.7685547, -2.7089844, 0.46142578, -1.1679688, 0.17602539, 1.2333984, 0.87353516, -1.7929688, -1.1523438, -2.4296875, 0.034851074, -0.87939453, -0.93652344, -0.34936523, 1.8056641, 2.5703125, 1.4169922, -0.44628906, 3.0625, -1.3564453, -0.8803711, 1.4277344, -3.8085938, -0.84033203, -2.078125, -4.6484375, 2.328125, 0.38378906, -0.7060547, 0.8261719, 1.0751953, -0.1161499, 1.5371094, -0.10028076, -3.0839844, -0.28515625, -2.3105469, 0.8261719, -2.9257812, 1.6162109, 0.45458984, 0.21166992, -1.1152344, 0.13244629, -0.022262573, 0.2680664, 1.8320312, 1.8037109, -1.3671875, 1.1435547, -0.8378906, 0.27612305, 0.43139648, 1.1855469, 1.1191406, -0.4008789, -0.6845703, -2.4121094, 0.859375, -0.6166992, 1.2626953, -1.1708984, 0.5083008, 0.6899414, -0.5551758, -0.9614258, 1.6679688, 2.6953125, -0.59716797, -2.4199219, -3.296875, 0.35302734, -1.1113281, 0.13208008, -1.8837891, 0.18518066, -2.625, 0.05267334, -0.022369385, 1.1083984, 2.7070312, 0.27612305, -1.6464844, 1.0625, 1.0996094, -2.671875, -2.0429688, -0.67578125, -0.53759766, 0.101745605, -3.0117188, -1.5458984, 0.7470703, -1.5605469, -0.5419922, -0.8779297, 2.2988281, 1.0390625, 1.1279297, 3.1816406, 0.09832764, -1.6005859, 2.0019531, -1.1679688, -1.0810547, 1.3242188, 0.35131836, -0.16699219, 2.5917969, 0.5576172, -1.2158203, -0.14343262, -0.33642578, -3.3925781, -0.10772705, -1.6787109, 1.8984375, -0.39331055, -0.7788086, 0.98779297, -0.19970703, 2.4882812, -1.1240234, 0.3737793, 2.046875, 0.7246094, -0.85009766, 0.95703125, 1.4580078, 1.1923828, 0.13464355, 0.2290039, 0.76220703, -1.9091797, 0.5859375, 0.30029297, 3.1503906, -1.1123047, -0.98046875, -0.4104004, 0.8857422, -0.5966797, -0.61376953, 1.5800781, 0.9667969, 0.84716797, 1.9287109, 0.7709961, -1.5097656, 2.3632812, 0.38452148, -1.7519531, -2.765625, 0.30932617, -1.4462891, 0.32788086, -1.1787109, -3.7773438, 0.7050781, 1.0703125, -0.55615234, 0.82714844, 0.8300781, 0.095336914, -0.9921875, -1.9443359, -0.14416504, 0.020996094, 0.13574219, -0.60546875, -0.6269531, 0.26586914, 0.9868164, 0.8979492, 3.5058594, -0.13208008, 0.40673828, 2.2460938, 0.10070801, 1.1386719, -0.5888672, -0.7084961, -3.3789062, -0.71972656, 1.9814453, 1.1962891, 1.6298828, 0.67578125, -0.6738281, -2.4003906, -0.7104492, -3.0390625, 3.6757812, -2.3457031, -0.121154785, -0.2524414, 0.25439453, -2.2734375, -1.8515625, 0.2680664, 1.2021484, 3.484375, 1.6279297, -0.25, 0.20410156, 0.70410156, -1.5957031, -6.3632812, -0.113220215, 1.03125, 0.2619629, 0.16821289, 0.33862305, -1.8701172, 1.1132812, -0.06976318, 0.16040039, -2.5253906, 0.58935547, -0.93066406, -0.030456543, -0.29101562, -0.32714844, 0.5263672, 1.6972656, 2.1289062, 0.4020996, -0.24304199, -3.4824219, -0.5449219, 0.9838867, -2.3027344, -0.31201172, 1.2285156, -0.97753906, 0.08526611, 0.5678711, 0.86816406, -1.8056641, 2.8359375, -1.7265625, 0.34887695, -0.30371094, 0.22570801, 0.65234375, 0.9638672, -0.54785156, 1.0683594, -0.76464844, 1.1992188, 1.7714844, 0.023117065, -0.625, 1.5439453, -0.7783203, -0.6665039, 0.8334961, 0.17163086, 1.78125, 0.86865234, -1.0126953, -0.6904297, -2.7617188, -2.8339844, 0.50439453, -2.3105469, -0.14428711, -1.5566406, 1.7822266, 1.5791016, -0.6279297, 0.117492676, -0.0025367737, 0.56103516, -1.0507812, 0.8720703, -0.94140625, 1.8798828, 2.1679688, -1.3876953, -2.2539062, -3.0019531, 1.2148438, 0.2277832, 1.8779297, -0.056854248, 0.7084961, -1.6162109, 1.3886719, -0.63134766, 1.2763672, 2.734375, 0.01927185, -0.5209961, -0.12988281, 1.5537109, -0.60546875, 1.8701172, 1.0136719, 1.1230469, -1.5849609, 4.2617188, -0.3317871, -1.9433594, 2.5117188, -1.0507812, 2.1738281, -1.2285156, -1.0214844, -0.79296875, -1.7480469, -0.045959473, -0.85498047, -0.92578125, -2.5410156, 3.5488281, 0.75683594, -0.107177734, 1.0283203, 2.5527344, -0.29614258, 1.1953125, 2.1875, 1.0087891, 0.65527344, 1.7998047, -1.2255859, -0.27954102, 0.39624023, -1.4003906, 0.62109375, 1.9355469, 0.74316406, -1.9394531, 2.4824219, 0.6791992, 1.9277344, 1.5751953, 1.2167969, 3.5039062, 0.78222656, 3.1269531, 0.828125, 1.28125, 0.98291016, 0.37280273, 0.13745117, 2.5996094, 2.1601562, -0.48413086, -2.4023438, 0.78515625, 0.030014038, -0.9042969, -0.0077400208, -0.25390625, 1.2373047, -4.8632812, 1.3691406, -0.2602539, 1.2285156, -2.5058594, 0.62597656, -1.1982422, -0.49804688, -0.17541504, -0.13989258, 0.80810547, -0.9272461, 0.8779297, 0.8725586, 0.4958496, 1.8183594, -3.2324219, -1.3037109, -0.46655273, -1.7685547, -0.8588867, 1.4238281, 1.3828125, 1.5107422, 0.9091797, 1.1210938, 1.75, 0.625, 1.3955078, -1.1992188, 1.0419922, -1.0498047, 2.9316406, -0.15148926, -2.5664062, 2.8867188, 0.65185547, -1.8134766, -2.6289062, 1.0566406, 1.3974609, 0.7583008, 1.2617188, -4.4101562, 2.8574219, 0.11804199, 2.0410156, -2.4375, 2.8242188, -1.2929688, -4.1289062, -1.3261719, 0.033477783, 1.1425781, 3.1640625, 0.95703125, -1.3310547, 2.578125, 0.27539062, 1.9042969, 1.0605469, 1.8330078, -1.3779297, 0.49267578, -0.53759766, 2.1152344, -0.007347107, -0.7167969, -0.64990234, 1.8486328, 1.375, 0.11352539, -0.2619629, -1.9521484, 0.58203125, -0.5029297, -0.24902344, -0.5498047, -1.3339844, -1.8701172, 0.46191406, 0.38745117, -1.2626953, -1.6523438, 0.7285156, 2.2851562, -2.2402344, -0.15100098, -0.23779297, 1.3476562, 3.828125, -0.73876953, -1.1523438, -0.9213867, -0.21435547, 0.97314453, 1.1445312, -0.7270508, -0.028640747, 0.60058594, 1.3994141, -1.5712891, 1.1621094, -1.1806641, 0.60839844, 1.03125, 0.51708984, -2.046875, -2.3046875, 0.39208984, -1.0400391, 0.71191406, 3.6816406, -0.13269043, 0.1161499, -2.2792969, -0.5029297, -1.4345703, -1.4912109, -1.1640625, 0.37890625, 3.21875, 3.28125, 1.6513672, -1.1503906, -1.4140625, -1.2089844, -0.8540039, 3.8203125, 0.84814453, -1.1923828, -0.052703857, 1.3232422, 0.9604492, -1.4794922, -0.81933594, 0.35180664, -0.7866211, 0.9589844, 0.48413086, 1.71875, 1.9335938, -0.31591797, -0.32592773, 1.9833984, 0.73828125, -0.021392822, 2.0097656, 2.2539062, -0.7783203, -2.0898438, 0.44750977, -1.5683594, -0.43969727, 1.4882812, 2.8496094, 4.0820312, -0.2722168, 0.0791626, -2.9667969, -0.21875]}, "B01LPY9R8U": {"id": "B01LPY9R8U", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nProvides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.\n", "embedding": [-0.81396484, 0.9638672, 0.29296875, 0.9638672, -0.56103516, 1.7119141, 1.4853516, 0.80859375, 0.9555664, 1.4121094, 2.4785156, 0.7866211, 3.2226562, -3.2773438, 1.140625, 3.0527344, 0.8886719, -0.9042969, 2.8886719, 1.1386719, 4.5820312, 2.1484375, 0.16333008, -1.1171875, 1.5292969, -1.5087891, 1.796875, -2.0820312, -1.6074219, -0.23571777, -0.114746094, -1.4511719, -0.74902344, -0.18896484, -2.921875, 1.7509766, 0.99902344, 0.3466797, -0.6816406, -0.7504883, -1.1591797, 0.076049805, 3.0253906, 0.9501953, -2.4375, -2.5644531, 0.23413086, -0.28125, -0.80615234, -0.29736328, 0.92041016, 3.6445312, -0.43603516, 1.7558594, -2.109375, 1.0195312, 0.90185547, -3.6171875, 0.4362793, 1.4833984, 1.3173828, 1.7568359, -3.2246094, 0.46899414, 1.1044922, -0.7446289, -0.018814087, -0.4189453, 0.08569336, -0.13903809, -0.70751953, 1.2470703, 0.2626953, -0.99072266, -1.5449219, 0.67285156, -4.0234375, -1.1132812, 2.2265625, -1.2832031, -2.8808594, 1.0722656, 1.796875, -0.3100586, -0.3479004, -0.15612793, -0.8046875, 0.7807617, 2.2246094, 0.31274414, -1.4794922, 1.078125, -4.3710938, -2.2753906, 0.019805908, 0.10638428, 2.8945312, 3.0839844, 4.078125, 0.37329102, -0.43554688, 0.6928711, 0.8955078, 0.61279297, -2.71875, -0.70410156, 0.123413086, 1.5400391, -1.1152344, -1.3251953, -1.4814453, 2.2265625, 3.5722656, -1.4785156, -0.6196289, -1.0839844, -0.058044434, -0.84765625, 1.1767578, 0.60009766, 1.8173828, -0.43969727, 0.51660156, 0.14074707, 1.5996094, 1.9384766, -0.5986328, 2.6972656, 2.2128906, 0.38256836, -0.17883301, 0.9086914, 2.7246094, -1.8017578, 3.4863281, -3.1171875, -2.3964844, -2.1445312, -0.95654297, 0.3701172, -3.2285156, -0.42211914, 0.35205078, -0.8364258, -4.4375, -0.42236328, -2.4765625, -0.17565918, 0.39892578, -2.109375, -1.0292969, -2.5605469, 1.4560547, -0.42749023, 3.2382812, 1.0976562, -0.2322998, 0.15258789, 0.99072266, -0.34692383, 0.7573242, -1.4511719, -1.7275391, 3.0625, -0.2565918, -5.6640625, 0.051605225, 1.1171875, -1.6425781, 1.0888672, 0.14929199, -2.5253906, 2.2519531, -2.6933594, 1.3222656, -1.8886719, 2.1230469, 1.1171875, 0.83496094, -0.33862305, -4.8164062, -1.1113281, 0.61572266, 0.01965332, 1.2802734, 2.3066406, -0.76416016, 0.9472656, 2.5136719, -0.06756592, -1.9003906, 1.3876953, 0.2211914, 2.5332031, 0.6020508, -1.8515625, -5.1328125, -1.4189453, 0.024398804, 2.03125, -2.4023438, -1.4775391, -0.27001953, -0.46679688, -1.0429688, 0.54296875, -0.5673828, -0.4567871, 0.8017578, 1.0908203, -0.16101074, -0.54785156, 2.65625, -1.9833984, -0.9628906, -1.0429688, 0.62402344, 1.5859375, 1.9619141, 1.8144531, -2.515625, 0.58203125, 2.2207031, 2.4082031, 2.1992188, -0.4489746, -0.099609375, 2.9414062, -2.4199219, -0.030685425, 1.7958984, 1.2216797, -1.0556641, 0.20275879, -1.9599609, 3.4863281, 1.1220703, -0.97802734, 0.37573242, 3.1640625, 1.3037109, -0.20837402, -0.2824707, -2.4082031, -0.9301758, -1.8623047, 0.007144928, 1.796875, -1.3671875, -0.36132812, 0.61816406, -0.14282227, -0.16418457, -3.2050781, -2.0664062, 0.04421997, 0.37939453, 0.53271484, 0.74316406, -1.2001953, 3.4882812, -3.5175781, 1.6992188, 0.20007324, 0.105773926, -0.08660889, 2.7265625, -2.3710938, -1.5517578, -0.26538086, 0.25854492, 2.5136719, 1.4277344, -1.2314453, 1.0839844, 1.3203125, -1.7558594, 2.34375, 0.5527344, 1.8242188, 1.9306641, -1.7617188, 2.4863281, -1.3154297, 0.9399414, 1.8945312, 2.2753906, -0.49853516, -0.7861328, -0.5917969, 2.5605469, 1.3945312, -1.4111328, 2.2324219, 3.6386719, 0.6977539, 0.5185547, 1.1484375, 0.24023438, 0.25683594, -1.4892578, 0.31884766, -2.46875, 2.46875, 2.2421875, 0.14038086, -0.8989258, -1.9472656, 1.1455078, 2.3535156, -0.9555664, 0.24609375, -0.75634766, -1.2832031, -2.8378906, -1.9277344, 1.9833984, -0.6147461, -1.1865234, 1.2304688, -0.81689453, 0.9145508, 0.93115234, -0.2705078, -0.49414062, -0.45581055, -1.6318359, 0.5332031, 0.58935547, 1.1914062, 1.4472656, -1.5283203, 0.74365234, -0.51953125, -1.7109375, 2.0039062, -2.3027344, -3.3066406, -0.015571594, -1.1220703, -0.72021484, -2.8632812, -1.2080078, 1.3310547, 0.24414062, -0.9682617, 0.28759766, 1.4316406, 0.52734375, -2.0527344, 0.25219727, 2.28125, -1.4794922, -3.0078125, 0.19641113, -0.80566406, -0.4946289, 2.59375, -1.5078125, 0.7158203, -0.5493164, 1.9033203, -0.55029297, -0.46142578, -0.4663086, -1.2304688, 0.6074219, -1.9785156, -2.1503906, -0.23925781, 0.6201172, -0.5830078, 1.8925781, -0.87890625, -1.5107422, -0.14465332, -0.86816406, 1.1162109, 0.2043457, -0.11444092, -0.23913574, -0.6347656, -0.049804688, -1.7695312, -3.078125, -1.1669922, 1.6601562, 0.30664062, -0.05529785, -4.8632812, -0.2409668, -0.9116211, 0.49853516, -1.5791016, -0.5229492, 0.59521484, -2.0546875, 2.5390625, -0.57666016, 0.4104004, 0.5390625, 0.14807129, -0.9223633, 0.41137695, 3.0078125, -0.41723633, -1.3945312, -0.31176758, -1.0595703, -0.12408447, -2.6484375, 1.2050781, -0.11639404, 0.6713867, 0.6640625, 0.32958984, 0.8466797, 1.3984375, -0.20166016, 3.1933594, 0.0059165955, 0.41088867, -4.6796875, -0.66552734, 2.4082031, 2.5546875, 2.5546875, 1.0488281, 0.6171875, 0.8198242, 0.64160156, 0.16174316, -0.3190918, -2, 3.53125, -3.8808594, 0.024368286, -0.8652344, -0.60009766, -3.8476562, 0.6279297, 0.7416992, 0.6816406, 3.3964844, -1.0830078, 1.5615234, -1.0458984, -0.7705078, 0.9580078, 0.8071289, 1.09375, -0.1809082, -0.3959961, -0.4008789, -0.84814453, 0.057006836, 1.3535156, 1.7841797, 0.28759766, 1.1035156, 0.9121094, -0.58203125, -0.08282471, -1.4638672, 1.3964844, 0.10949707, 1.7236328, -0.77978516, -0.21105957, -2.0273438, -0.8286133, 1.2841797, 1.2734375, -1.5029297, 0.66308594, 2.6640625, -0.74560547, 0.57373047, -0.8232422, 0.59521484, -0.5776367, 1.4296875, 1.5361328, 0.7993164, -0.047912598, -1.9541016, -0.89501953, -1.5722656, 0.96435547, -0.10668945, 1.1455078, -0.7211914, -0.97558594, -1.7460938, -1.0136719, -1.6708984, 0.98095703, 0.21972656, 1.8652344, 2.7597656, 0.09790039, -1.0859375, -0.05029297, 0.47314453, 1.3339844, 0.31860352, -1.2265625, 0.40039062, 0.8208008, -0.60498047, -0.29516602, 0.9008789, 0.5097656, -2.7421875, -1.0986328, -1.1601562, -1.1269531, -1.0185547, -0.74658203, 0.49951172, -0.9916992, -0.87060547, 0.80078125, -0.29101562, 2.3046875, 0.8935547, -1.8222656, 1.140625, -2.8828125, -0.38183594, -0.2368164, -5.9882812, 2.1425781, 0.15368652, 1.1630859, 2.4589844, 0.088378906, 0.85302734, 2.3085938, 1.0927734, -5.2890625, -1.4638672, -1.4501953, 0.9716797, -3.2773438, -1.0947266, 1.7128906, 3.6015625, 0.68652344, 0.05999756, 0.082214355, -2.2734375, -0.4506836, -0.3569336, -1.1953125, 1.8134766, 1.5136719, -0.16345215, -0.4658203, -1.7207031, 2.1289062, -0.37939453, -2.2929688, -1.9257812, 1.5732422, 2.3261719, 0.46118164, -1.6171875, 1.7236328, 2.3554688, -0.7114258, -1.9599609, -0.14245605, 3.8007812, -0.5175781, -2.9785156, -2.0976562, -0.7236328, -0.22949219, -0.23449707, -0.36621094, 0.5678711, -0.42358398, 0.92578125, -0.42333984, 0.4650879, 1.5849609, -0.8769531, -2.5859375, 0.19177246, 0.12695312, -2.9082031, -0.25048828, -0.9770508, 0.7763672, -1.5488281, 0.067871094, -1.9726562, 1.9345703, 0.9399414, -2.4160156, -3.0761719, 0.53759766, -1.9238281, 1.6298828, 0.8779297, -1.4599609, -1.15625, 0.94384766, 0.5751953, -0.48632812, -1.5351562, -1.1103516, -2.3554688, -1.0869141, 2.328125, 1.6777344, -1.6757812, -0.20703125, 0.54296875, -1.3554688, 1.3974609, 2.1191406, -2.2441406, -1.4042969, -0.12658691, -0.9316406, 3.3515625, -2.6972656, 0.68408203, -0.55615234, -0.41064453, -3.8183594, 1.0888672, 0.9140625, 0.34228516, -1.0673828, 1.4941406, 2.3613281, 0.51220703, 0.11444092, 0.5800781, 0.68359375, -0.44140625, 0.6069336, -0.19006348, 1.890625, 1.7158203, 3.1503906, 2.125, 2.6035156, -0.1965332, -0.6323242, 0.546875, -1.5322266, 1.3261719, 0.1227417, 0.5551758, -2.2734375, -0.2998047, -1.15625, 0.45898438, -0.28466797, -1.8408203, 2.0488281, 2.953125, -0.29052734, -0.40893555, -1.1914062, -1.5253906, -1.3183594, -2.8769531, -2.1601562, 0.515625, -2.1230469, 0.72216797, 0.59814453, -0.030090332, 0.7729492, 1.3486328, 2.2714844, -0.7636719, -0.6484375, 0.19628906, -1.2402344, -2.9160156, -0.70947266, -2.7460938, -1.4619141, 1.3779297, 1.7470703, 3.1171875, -0.08673096, 0.054473877, -1.3349609, 0.57128906, -1.2294922, 0.35498047, 2.21875, -0.67578125, -0.18481445, 3.8613281, -1.3291016, -1.5068359, -0.85839844, 0.07281494, -0.61328125, 1.8759766, 0.75146484, -0.64501953, -1.3574219, 1.2099609, -2.3828125, -6.5625, 0.31420898, 1.8505859, 2.1777344, 0.8701172, -1.4257812, -1.8007812, 0.2607422, -0.7832031, -0.3725586, -2.1523438, 1.7324219, -2.53125, -1.1953125, -1.1542969, -0.3647461, 1.0068359, -0.65771484, 2.2714844, -2.9277344, 0.14868164, -4.4101562, -0.80615234, 1.0126953, 1.1054688, -0.6748047, -0.20568848, -2.9082031, -0.104003906, -0.52001953, 1.1064453, -3.7890625, 0.5576172, -2.3085938, 2.046875, -0.22277832, -1.3652344, 0.6303711, -0.13391113, 0.9638672, 0.68115234, 2.8359375, 1.125, -0.6274414, -0.75683594, -2.046875, 0.13391113, -0.44335938, -0.24316406, 0.73046875, 0.54296875, 2.7324219, 2.3808594, -1.9365234, -2.8847656, -2.3378906, -0.3100586, 0.16259766, -1.5458984, 2.8320312, -0.75, 2.0585938, 1.0830078, 0.13146973, -0.5942383, -0.9116211, -1.6884766, -0.28100586, 1.5195312, -2.1699219, 3.4707031, -0.9291992, -0.033813477, -1.0966797, -0.91796875, 0.83447266, 1.6386719, -0.9355469, 0.8173828, -0.15563965, 1.015625, -0.04067993, 0.47265625, 3.2148438, 1.1640625, 2.0722656, -1.4912109, -0.5395508, 1.4970703, -2.6328125, -0.7524414, 1.5263672, -1.3066406, -1.1591797, -0.016326904, -0.001953125, -3.8320312, 0.6357422, 1.3642578, 0.15258789, -1.2304688, 1.2421875, 0.3840332, -3.4726562, 0.34985352, 0.35961914, -3.5917969, -0.81347656, 3.6035156, -0.09234619, 0.43408203, -1.2431641, 3.6640625, -0.80615234, 0.92871094, -0.8222656, -1.6044922, -1.1240234, -0.6015625, 0.2277832, -0.17626953, 0.10229492, -1.3134766, 0.98535156, 1.2929688, -0.24914551, 0.7084961, -0.7441406, 1.4560547, 2.09375, 0.095581055, 3.8554688, 1.4501953, 1.7832031, 2.2558594, 1.3300781, 2.5664062, 2.1191406, 0.23730469, -0.51464844, -0.10888672, -1.7626953, 0.8510742, -1.921875, 1.7988281, -1.0195312, 1.3701172, 1.34375, -0.25830078, 1.4511719, -4.59375, 0.016738892, -2.0859375, -0.10333252, -2.8730469, 0.92578125, -0.7993164, -0.07098389, -0.103271484, 1.6103516, -1.2832031, 2.5605469, 0.51660156, 0.57470703, -0.14624023, 2.2480469, -0.56152344, -0.3239746, -0.4658203, -0.66748047, 0.43969727, 0.86035156, -1.1367188, 0.48266602, 0.94628906, 1.3105469, -0.30493164, -0.6171875, -0.007843018, 0.61865234, -0.6586914, -1.7558594, 2.6386719, 1.6582031, 0.9121094, 3.53125, 0.3479004, 0.16455078, -2.75, 1.3544922, -1.2714844, -0.24914551, 0.17687988, -4.1679688, 1.7226562, -1.0507812, -1.8212891, -2.0390625, 0.46191406, 2.6464844, -0.71435547, 1.7353516, 1.2421875, -0.1262207, -0.43066406, 1.1035156, -1.4042969, 2.5605469, -0.72753906, -0.24926758, 1.890625, 2.2128906, 0.90283203, -0.8125, -1.3115234, 3.9863281, 0.08605957, -0.48828125, 0.2208252, 0.9526367, 1.0810547, 1.1914062, -0.5996094, -0.99072266, 1.859375, 1.2939453, -0.38916016, -0.10900879, -1.3105469, 0.26733398, -0.70703125, -1.6611328, -0.2944336, -2.6523438, 0.5576172, 1.4990234, -1.03125, 0.10333252, 1.5341797, -1.9033203, 2.2871094, 2.3613281, -0.80078125, -0.105651855, -0.73095703, 1.9345703, -2.953125, 1.4501953, 1.3515625, -1.3623047, -0.46899414, -2.09375, -0.59521484, 0.15844727, -1.6582031, -0.18554688, 0.93359375, 0.34448242, -0.5830078, -1.4306641, -1.2490234, 1.1962891, 3.7460938, 1.2822266, 0.06463623, -0.060272217, -0.062316895, 2.3808594, -0.10595703, -3.0820312, 0.8535156, 1.9013672, 1.0185547, 2.0722656, -1.4345703, -2.2089844, -0.0793457, -1.8710938, 2.1855469, -0.13757324, -2.3125, 1.0078125, 2.2304688, 0.84765625, 1.8759766, -0.056671143, 0.13000488, 0.16748047, 0.45239258, -1.9453125, -0.74072266, 1.1875, 0.60839844, -0.08917236, 4.6054688, 1.3369141, -1.0390625, 0.16882324, 3.8691406, -1.3359375, -1.8085938, 0.48950195, -1.6464844, 0.328125, 2.140625, 0.65185547, 0.9057617, 0.52490234, -1.8417969, -2.9453125, 1.8359375]}, "B00FDOONEC": {"id": "B00FDOONEC", "original": "Brand: Weber\nName: Weber 50060001 Q1000 Liquid Propane Grill,Chrome\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches\nPush-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately)\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes\n", "embedding": [-0.23547363, -0.09991455, 1.4492188, -0.47583008, -2.2382812, 0.6953125, -0.05810547, -1.1376953, -0.14099121, 2.0078125, 3.1992188, -0.18469238, -0.40307617, -3.2792969, 1.3408203, 0.7973633, 2.4726562, 1.4726562, 0.55322266, -0.28515625, 1.1162109, 0.6669922, 1.0390625, -1.5449219, 1.8759766, 1.9521484, 4.6054688, -5.3554688, -1.1904297, -1.8085938, 0.7392578, 1.4042969, 0.6582031, 1.4804688, -3.0917969, -1.0664062, -3.6542969, 1.7148438, -2.4394531, 0.66552734, 0.03756714, -1.6132812, 1.0791016, 0.21264648, -1.34375, 1.0292969, 0.88964844, 0.49389648, -0.69921875, -0.35424805, 2.5683594, 0.79003906, -0.7182617, 0.5932617, -0.9370117, 2.6757812, -0.29736328, -1.4873047, 0.9580078, -0.31835938, 2.5410156, -0.08105469, -2.984375, -1.4599609, -1.5654297, 0.1194458, -0.9916992, -0.6972656, 1.2988281, -0.4272461, 3.8964844, -2.4433594, -1.0664062, 0.99365234, 1.8125, -1.3388672, -2.3867188, 2.6191406, 0.9277344, -0.73583984, -0.8310547, 2.4746094, 0.92041016, -2.3007812, -0.10046387, 0.49316406, -0.021392822, -2.1152344, 2.3652344, 2.2578125, 0.26123047, 1.578125, -2.4121094, -3.7851562, 1.6123047, 0.21606445, 1.3759766, 1.3564453, 0.87060547, 0.7128906, -2.0253906, 1.1074219, -1.3242188, -1.7451172, -2.8945312, -1.1484375, 1.0322266, 0.10430908, -3.7460938, -0.25952148, -0.99609375, 0.7285156, 0.75439453, 1.1445312, 1.2607422, 0.47265625, 0.025024414, 3.5703125, 0.78515625, 0.27124023, 3.015625, -1.4326172, 0.31958008, -1.2275391, -1.5947266, 0.33447266, -1.0927734, 1.1376953, 3.1777344, -2.3066406, -0.6074219, 0.421875, 4, 0.63720703, -0.20458984, -0.67333984, -1.7089844, -0.77783203, -1.9414062, -0.2512207, -1.3085938, 0.52978516, 0.97021484, -0.8256836, -3.7246094, -0.39331055, 1.0957031, 0.93310547, -0.21264648, -2.6796875, -0.1105957, -1.1152344, -0.7553711, -0.84521484, 1.3574219, 0.22216797, -1.8710938, 0.2746582, 3.6503906, 2.0214844, 1.4951172, -0.23059082, -0.40112305, -0.12927246, 0.53515625, 1.1816406, 2.1386719, 2.03125, -0.65966797, 1.3359375, -0.7680664, -0.5600586, -0.45825195, 0.42333984, 1.8115234, -1.7119141, 0.23962402, 1.6669922, -0.50683594, -0.53466797, -1.0019531, -2.53125, -0.12524414, -0.16699219, 0.24938965, -0.90722656, 0.25585938, -0.18017578, 1.6982422, -1.6904297, 0.7182617, 0.30493164, 1.8789062, -0.6879883, 0.47973633, -1.2871094, -0.4272461, -1.9697266, 1.0380859, -0.85058594, -0.46166992, -1.0869141, 1.4335938, 0.7553711, -0.30688477, -2.3554688, -0.0072364807, -2.7597656, 0.87939453, 1.8466797, 2.078125, -1.7949219, 1.0556641, -0.36108398, -0.22216797, -1.9921875, 1.7480469, -0.13415527, 0.4831543, 2.6738281, -1.5673828, -0.5131836, 0.8901367, 1.7744141, 1.4951172, -0.3005371, 0.6796875, 0.30297852, -3.1621094, -0.5180664, 3.1660156, 0.5654297, -0.46850586, 0.06274414, 0.546875, 2.5683594, 0.9506836, 0.04852295, -0.11175537, -0.23718262, 0.3137207, 1.4453125, -2.0410156, -1.8310547, -0.074157715, 0.13146973, -2.0214844, 2.3359375, 1.1015625, 0.052612305, 0.13916016, 0.27905273, 0.39331055, 0.9848633, -1.1435547, 0.7216797, -1.7363281, 1.5292969, 0.19750977, -2.7753906, 1.2822266, 0.000161767, -0.1965332, -0.3322754, 1.2490234, -1.4052734, 2.7617188, 2.0839844, -1.4970703, -1.2158203, 0.6225586, 0.30078125, -0.03189087, -1.2539062, 1.3623047, 1.6582031, -1.4697266, 2.0292969, 0.19262695, 0.5336914, 0.13647461, -0.9580078, 1.5839844, -2.8808594, -0.8510742, 0.6660156, 0.7836914, -1.4804688, -2.3457031, 0.48168945, 3.3222656, 0.32128906, -2.8671875, 3.140625, -2.734375, 1.5605469, 2.296875, -0.9194336, -0.30859375, 0.94628906, 2.328125, 0.09631348, -0.20776367, 0.71728516, 0.0107040405, -2.3496094, 0.65966797, -3.7949219, 0.9394531, 1.6347656, -0.65234375, -0.5649414, -1.2548828, 1.5693359, -3.0859375, -1.6347656, 1.453125, -4.1367188, 0.34814453, -1.4277344, 1.8017578, 0.4033203, -0.99560547, -0.6586914, -1.0566406, -0.09863281, -1.2929688, 1.0761719, -0.6196289, -1.8310547, -0.59375, -0.9165039, -0.15319824, -1.6181641, -1.5947266, -1.7470703, -1.7871094, -2.7871094, 2.2050781, -0.85791016, -0.39501953, 1.7207031, -2.7578125, -0.27929688, 0.57177734, -3.3242188, -0.19934082, -1.7412109, -1.7841797, -0.99853516, 0.37158203, 1.3886719, -1.8789062, -3.7421875, 0.50097656, -0.53271484, 0.11975098, -0.7241211, -0.92871094, -0.3491211, 0.62939453, -0.7084961, -0.6333008, 1.0546875, 2.0585938, -1.0390625, 1.2158203, -1.4873047, 0.5546875, -2.1757812, 0.56640625, 0.060913086, 0.93847656, -3.6816406, -2.4570312, -0.45361328, -0.40307617, 4.2773438, -0.16491699, 1.0126953, -0.035949707, 0.85498047, 1.7236328, 0.068237305, -1.3583984, 0.71435547, 1.0908203, -1.9863281, -0.68847656, -3.296875, -0.98828125, -1.8955078, -0.3972168, 0.22033691, -0.2166748, -2.4257812, -0.57470703, -1.4794922, -0.53222656, -0.54833984, 0.21264648, -0.77246094, -1.3115234, -2.7617188, -0.8305664, -2.203125, 0.24438477, -1.6162109, 1.4931641, 0.33789062, 1.2285156, 2.8554688, -0.69189453, 2.1308594, -1.1298828, -4.9179688, 3.65625, 0.06378174, -2.46875, 1.1269531, -2.6308594, -2.3183594, -1.9589844, -0.16625977, 2.265625, 2.6328125, 2.2519531, 2.4160156, 2.0644531, -0.6386719, -1.2138672, 0.65771484, -1.59375, 0.6669922, 3.2148438, -2.6328125, -2.25, 0.5883789, 1.4306641, -2.9511719, -1.0488281, 2.7050781, 1.8544922, 1.7763672, 2.4609375, 1.6748047, -0.09741211, -0.7792969, 1.6591797, 1.5166016, -0.62060547, 0.09362793, 0.52246094, 1.4550781, -0.6171875, 1.9189453, 1.9892578, 1.3339844, 1.7207031, 2.4707031, 1.265625, -0.7832031, -0.5180664, -0.077819824, 1.6054688, -0.08312988, 1.8447266, -0.9189453, -0.21374512, -0.82421875, -1.7470703, 0.16442871, -0.33129883, -0.73876953, 3.5039062, 0.40600586, -1.1171875, 1.3642578, 2.3183594, 0.9916992, -0.16101074, -0.0038108826, -0.9194336, -0.3503418, 2.5820312, -0.9560547, 0.515625, -1.4511719, 0.94921875, -0.07928467, -2.1542969, 0.3557129, 2.7988281, -1.4375, -0.93847656, -0.004108429, -1.5996094, 0.07800293, 1.3623047, 0.68847656, -0.92333984, 0.22314453, -2.1660156, 1.3691406, -0.02053833, -1.0976562, -0.7841797, -1.390625, 0.34643555, 0.2783203, 1.9111328, 2.2890625, 0.3618164, -2.6757812, 0.24536133, -4.015625, -1.9980469, 1.1064453, -2.6289062, -1.0644531, 2.0683594, 0.2626953, 1.3144531, -0.21936035, 2.1699219, -1.0615234, 0.6401367, 1.8925781, -2.734375, -0.47387695, -3.4472656, -4.4296875, -0.02330017, -1.34375, 0.12731934, 1.5380859, -0.34179688, -0.010467529, 2.2460938, 0.98095703, -1.6074219, -0.9296875, -1.6074219, 0.51220703, -0.8203125, 1.6455078, 1.0244141, 0.1328125, -1.5478516, -2.1816406, 0.01701355, -0.25463867, 1.5664062, 2.0546875, -3.640625, 0.31713867, -1.7314453, -0.80810547, -0.5463867, -0.57958984, 1.7119141, 0.9165039, -0.21362305, -2.1875, 1.9511719, 0.27807617, 0.15063477, 2.34375, 1.8095703, -0.2861328, -3.5175781, 0.25756836, 1.5625, 2.8398438, -0.74316406, -1.1933594, -0.75, 1.7373047, -0.7475586, -0.21582031, 0.25390625, 0.26489258, -1.6455078, 1.6337891, 1.2412109, 1.7236328, 0.8613281, 0.56347656, -2.5878906, 0.96875, -0.48706055, -2.3027344, -1.7392578, 0.20739746, 1.078125, -1.1513672, -0.10064697, -2.5078125, 0.50439453, -0.5493164, -1.1845703, -3.5917969, 2.8125, 4.2929688, 2.53125, 2.3242188, -1.359375, 1.1533203, -0.66503906, -0.6855469, 0.14501953, 0.78759766, -0.9165039, -0.34326172, 3.2421875, 0.98828125, -1.4160156, 0.3022461, 1.2871094, -2.1679688, -0.13769531, -2.546875, 1.21875, -0.7089844, -0.29516602, 0.38720703, -1.3876953, 1.9951172, -0.49145508, -0.7260742, -0.37280273, 0.9057617, -0.8022461, -0.38085938, 0.7104492, 0.36523438, 0.23461914, 1.2392578, 2.1601562, -0.734375, -0.052001953, -0.8964844, 0.9584961, -1.5253906, 0.38452148, -0.1875, 0.75097656, -1.015625, -1.0263672, 1.7910156, 1.9736328, 1.3486328, 3.0820312, 2.6074219, -2.2539062, 1.7089844, 1.4267578, -1.9199219, 1.5996094, 1.1738281, -1.0664062, 2.234375, 0.38989258, -2.9902344, -0.26000977, 1.3251953, 0.29370117, 1.4023438, -1.5683594, -0.4716797, 1.2763672, -1.6054688, -0.48046875, -0.26416016, -1.1289062, 0.5756836, 0.9633789, 0.5097656, -1.3759766, 0.9970703, 3.0292969, -1.3701172, -1.8359375, 1.3339844, -1.5263672, 0.42797852, -0.9448242, -1.7011719, -2.4394531, -0.9863281, 2.4824219, 0.82910156, 1.5019531, -0.19689941, 1.7929688, -1.4746094, -0.117492676, -1.4970703, 2.5839844, -1.9726562, -0.6088867, 0.73828125, -4.0976562, -0.35717773, -2.2675781, -0.7338867, -0.22180176, 1.0400391, 1.8955078, -0.4152832, -0.5292969, 0.75683594, -1.7744141, -3.7851562, -0.74658203, -0.11828613, 0.08746338, 1.0585938, 1.5888672, -0.88720703, 1.5029297, -0.11053467, 0.22033691, -1.3740234, 0.38085938, -0.93115234, -0.2421875, -0.050323486, 0.43945312, -1.0683594, 0.51953125, 0.49414062, 1.5224609, 1.3759766, -1.5839844, -0.7314453, -0.6953125, -0.703125, -0.2602539, 2.0332031, 1.4013672, -0.8774414, 1.2724609, 1.4697266, -3.9296875, 2.5605469, -1.8164062, -2.0039062, 1.6376953, -0.9560547, 0.71191406, -0.1998291, -0.88964844, -0.064819336, 0.06335449, 1.1982422, 1.7929688, -1.3710938, -1.1240234, 0.058563232, 0.70410156, -0.43139648, 0.51708984, 0.2861328, 0.76904297, 2.03125, -1.5830078, -1.0820312, -1.3203125, -2.8535156, 0.93310547, -2.2285156, -0.8120117, -1.9482422, 0.5449219, 1.5126953, 0.5493164, -0.6796875, 2.4042969, -0.8510742, -0.6225586, 0.5991211, -0.8466797, 4.9960938, 3.8613281, -1.4091797, -1.0478516, -1.7070312, 0.37768555, 2.0214844, 0.20336914, -1.0009766, -0.33569336, -0.46435547, -0.5073242, -0.13366699, 1.3876953, 0.26635742, 0.56884766, 0.16796875, 1.6347656, 3.3769531, -1.8525391, 2.1523438, 0.97021484, 1.3720703, -0.5498047, 4.0195312, 0.6489258, -2.7382812, 1.1660156, -2.3242188, 2.1640625, -0.92089844, -1.2021484, -1.0732422, -0.23388672, -1.5048828, -1.8925781, -1.5537109, -2.1894531, 1.4892578, 1.9414062, -2.1386719, -0.34423828, 1.0019531, -0.32836914, 2.4648438, 1.6884766, 2.3027344, -1.9306641, 0.98779297, -0.07940674, 1.0966797, 1.4150391, -4.2851562, 1.5771484, 1.3828125, -1.1513672, -1.4306641, 1.7685547, 0.40234375, 2.5078125, -0.0037899017, 2.5976562, 2.4628906, 1.6699219, 2.34375, 1.2480469, 3.3554688, 0.6591797, -1.1425781, 0.7788086, 1.1943359, 0.5917969, 1.1123047, -1.4726562, 1.4736328, -1.2480469, -1.0576172, -0.50634766, -0.6508789, 0.8857422, -2.2089844, 0.13793945, 0.55126953, 2.0820312, -0.9707031, -0.3173828, -0.05392456, 0.44018555, 0.20251465, -0.35302734, 3.1152344, 0.921875, 0.28710938, -0.48535156, -0.3840332, 1.2382812, -4.25, 1.0791016, 1.1533203, -1.0009766, -0.10638428, -2.2851562, 1.7285156, 0.8496094, -0.7475586, 0.49658203, 3.9785156, 1.2236328, 1.15625, -1.8652344, -0.7114258, 1.0839844, 3.2792969, 0.29223633, 0.41748047, 0.77734375, -0.41333008, -4.5625, -4.046875, 2.8613281, 2.1875, 1.2216797, 0.3149414, -0.31201172, 3.9238281, -1.3466797, 0.37280273, -0.96533203, 0.61572266, -0.20739746, -4.0039062, 0.63623047, 0.36889648, -0.50341797, 1.2529297, -0.08300781, 0.5205078, 0.81152344, 1.2851562, 1.7529297, 0.5839844, 1.2431641, 2.5351562, 1.7314453, -2.2324219, 2.3828125, -0.29052734, -0.9633789, -1.609375, 3.21875, 0.80615234, -0.23388672, 0.4650879, -0.6508789, 0.32348633, -1.0878906, 0.039031982, 0.058898926, -2.4707031, -0.07556152, 0.6899414, 1.3378906, -1.7119141, -0.21911621, 2.8964844, 1.4609375, -0.21179199, 0.6455078, 2.2226562, -0.7026367, 1.8447266, -1.1386719, 0.671875, -0.42089844, 1.2949219, 0.40649414, 0.24865723, -0.8051758, 0.8720703, 1.1767578, 1.4375, -1.0410156, -0.5024414, -0.35302734, -1.2832031, -0.19311523, 0.3671875, 0.07800293, -1.7744141, 2.6503906, -1.0458984, -0.5649414, 1.7734375, 0.40576172, 0.04647827, -2.4023438, -2.1464844, -1.2470703, -0.58740234, -1.1689453, 1.7587891, 3.9785156, -0.17248535, 0.019561768, -2.15625, -3.8066406, -1.6259766, -3.0390625, 2.3007812, -1.671875, -1.1181641, -1.2460938, 0.2097168, 1.1113281, -0.62402344, -0.25146484, -0.05291748, -2.0625, 0.81884766, -0.25756836, 0.14794922, -0.55322266, 0.19689941, 1.3359375, 2.0683594, 0.80908203, 0.21875, -0.15197754, 2.6347656, -0.1694336, -1.7744141, 0.21875, 0.5336914, -0.04989624, -0.95458984, 0.9501953, 2.0390625, -0.45141602, -0.9741211, 0.3881836, -2.875]}, "B07L93KFNN": {"id": "B07L93KFNN", "original": "Brand: Fuego\nName: Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray\nDescription: \nFeatures: New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling\nNew easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray\nUpgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall\n346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit\nCompact 21\" X 21\" (Lid closed) footprint perfect for the Small patio/balcony\n", "embedding": [-0.7441406, -0.41235352, 0.7285156, -0.78466797, -0.76708984, -1.0839844, -0.4477539, -1.7958984, 0.9433594, 1.1357422, 1.3056641, -0.38916016, 0.31298828, -2.7734375, 2.1210938, -0.14343262, 3.0351562, 3.1054688, 0.49145508, -0.38085938, 1.4208984, 1.2900391, -0.9707031, -1.28125, 0.9291992, 1.0458984, 5.203125, -4.4804688, 0.11932373, -0.36376953, -0.3996582, 1.5224609, -1.1367188, 2.0703125, -1.2890625, -2.0195312, -0.19543457, 1.4355469, -3.2363281, 0.52490234, -0.28466797, 0.06707764, 1.3320312, 2.5722656, -1.3144531, 1.1191406, 0.13427734, 0.24194336, -0.828125, -2.5332031, 2.4570312, 2.0332031, -0.4975586, -0.37426758, 0.9609375, 1.4667969, -0.94873047, -1.9951172, 0.9375, 0.02230835, 1.3808594, -1.1132812, -1.8867188, 0.5551758, -1.7519531, -1.2763672, 1.3828125, 0.3503418, -0.19335938, -0.96777344, 3.0039062, -1.5400391, -1.5537109, 1.6572266, -0.7871094, -1.4990234, -2.5996094, -0.25756836, 0.50878906, -0.7597656, -0.6777344, 2.9667969, 2.6113281, -3.4648438, 0.37451172, 1.4707031, -0.01965332, -1.671875, 0.80322266, 1.7177734, 0.080200195, 2.1328125, -1.25, -3.7890625, 2.2929688, -0.23925781, -0.5332031, 2.2480469, -0.1986084, 0.50390625, -0.8334961, 0.7285156, -2.6777344, -1.4609375, -3.5097656, -1.0263672, 1.6152344, -0.9975586, -2.859375, -0.059051514, -1.8925781, 0.10235596, 0.5732422, 0.38183594, 1.6132812, -0.21166992, 1.8964844, 0.76464844, 0.4428711, 2.703125, 1.5791016, -1.2431641, -0.035736084, 0.39086914, 0.115234375, 0.16760254, -0.07543945, 0.7294922, 3.4023438, -1.6689453, 1.3544922, 0.8076172, 2.1796875, -1.1855469, -1.8925781, -2.3867188, -1.0458984, -3.3671875, -4.6367188, -1.6513672, -1.2783203, 1.4609375, 1.5732422, -0.4345703, -3.765625, -0.34204102, -0.9609375, 1.8242188, 0.40698242, -2.3730469, 0.3083496, -0.031921387, -0.8886719, 0.08642578, 1.5117188, -1.0732422, -0.81103516, -2.1914062, 3.2363281, 0.0066452026, 2.0371094, -0.8676758, -0.5517578, 0.7026367, -0.009979248, 0.25976562, -0.44848633, 1.9072266, -1.7236328, 3.0292969, 0.048797607, -3.3574219, 1.3671875, 0.24694824, 1.5273438, -2.7792969, -0.79345703, 2.2460938, 0.63183594, 0.8095703, -1.3007812, -2.2167969, 1.7578125, 0.84033203, 1.8681641, -0.6220703, -0.9555664, -0.68603516, 1.1611328, -1.1894531, 1.5166016, -0.1685791, -0.8173828, 1.4238281, -1.2236328, -2.1113281, 0.030593872, -0.28051758, 1.3808594, -0.578125, -0.32055664, -0.10211182, -0.13061523, 1.1005859, -0.71484375, -1.3398438, -0.7211914, -1.3603516, 0.90527344, 0.39819336, 3.7050781, -0.90966797, 1.4599609, 0.079589844, 1.6992188, -0.9399414, 2.0078125, 1.1035156, 1.3339844, 1.09375, -0.1673584, -1.0507812, -0.38891602, 2.4296875, 1.3291016, 1.0585938, 0.47680664, 0.53466797, -3.0996094, -1.4785156, 2.7773438, 1.3271484, -0.5541992, -0.22216797, 0.29760742, 2.265625, -0.30419922, -0.9667969, -1.0244141, 0.87841797, 1.9482422, -1.2871094, -2.0859375, -1.0185547, -0.97802734, 1.7089844, -1.1708984, 2.0234375, 0.24072266, 2.0722656, 1.3007812, 2.4199219, -0.33862305, 1.2392578, 0.9267578, 0.6455078, -0.23803711, 2.4511719, -0.9511719, -0.9121094, -0.2541504, 1.4453125, -0.5576172, 1.7910156, -1.7597656, 0.13000488, 2.7167969, 0.45898438, -0.45532227, -1.4833984, 1.203125, 0.9716797, 2.9140625, 0.31689453, -0.2319336, 1.375, -1.2675781, 1.4570312, -0.16015625, 0.69140625, -0.69189453, -1.0068359, 2.5917969, -2.8789062, 1.7480469, -1.3007812, 1.1103516, -1.0683594, -2.4082031, 0.3894043, 3.046875, 0.8041992, -2.5527344, 3.9453125, -1.5761719, 0.5214844, 0.4020996, -1.9394531, -0.98779297, -1.75, 1.3242188, 0.2064209, -0.03652954, 0.6850586, -0.6669922, 1.5253906, 0.33984375, -1.6220703, 0.57177734, 1.0810547, -0.99121094, -0.24694824, -1.2890625, 1.3515625, -0.9770508, -1.5673828, 2.4589844, -1.6992188, 1.5195312, 1.0205078, 0.8569336, 1.7675781, -0.25097656, -0.43066406, 1.5283203, 0.06512451, 0.11102295, 2.4433594, 0.49023438, -3.1367188, -1.2021484, -0.1373291, 0.5073242, -1.3027344, -1.5888672, -1.2763672, -2.6582031, -1.7626953, 1.0625, -2.3222656, 0.5600586, -0.55322266, -2.7050781, 0.9472656, -1.1240234, -2.9433594, -1.3964844, 0.4165039, -0.12042236, -0.87597656, 0.32763672, 1.328125, -0.6123047, -3.7695312, -0.5083008, 1.0966797, -0.38208008, 0.5083008, -1.3701172, 1.4394531, 1.5976562, -0.013580322, 0.7128906, -0.76220703, 0.050628662, -0.28051758, -2.0996094, -3.40625, 0.16918945, -2.4277344, 0.15551758, -0.68652344, 0.4621582, -3.9863281, -1.8867188, -0.9838867, -0.70654297, 5.7734375, -1.0800781, 1.4970703, -1.2509766, -1.484375, 1.1611328, -0.41967773, -0.88623047, 1.2216797, -0.032073975, -1.7529297, -3.1933594, -3.4570312, -0.22888184, -0.5449219, -0.72802734, 0.04510498, 0.34228516, -3.171875, 0.02104187, -1.6318359, -0.8208008, -2.1210938, -0.050323486, 0.50878906, -0.4765625, -0.15637207, -0.62158203, 0.09277344, -2.1523438, -1.0117188, 1.8457031, 0.027297974, 0.10583496, 0.9941406, -0.36010742, 0.56152344, -0.03414917, -4.8085938, 2.8730469, 0.63720703, -3.0527344, 0.3239746, -1.4912109, -1.6855469, -1.4306641, -1.8408203, 4.21875, 1.3232422, 1.6220703, 1.1699219, 0.04156494, 0.81347656, 0.6352539, -0.06744385, -0.5883789, 1.1435547, 2.1601562, -2.4570312, -2.2929688, 1.1865234, 1.8408203, -3.3125, -2.1777344, 1.9365234, 0.5209961, 2.1660156, 2.0097656, 1.7236328, 1.2675781, 0.095825195, 1.9287109, 0.8173828, 0.5834961, -1.40625, -0.35058594, 0.44799805, -0.25634766, 1.3066406, 1.7431641, -0.6591797, 1.9726562, 1.3105469, -0.9692383, -1.2792969, -0.056152344, 0.21850586, -0.24047852, 0.17163086, 2.2460938, -1.1259766, 1.2763672, -0.23840332, -0.78027344, 0.36499023, 0.43432617, -0.22143555, 1.7373047, 0.42333984, 0.22924805, 0.5097656, 2.6953125, 0.39233398, -0.37426758, 2.4179688, -2.0351562, -0.6074219, 1.25, -1.0615234, -0.6772461, -2.0546875, 1.7060547, 0.2310791, -1.3339844, 0.50341797, 2.2871094, -0.7294922, -2.0605469, 1.0595703, -0.8959961, -0.3552246, 0.5390625, -0.08111572, -2.1972656, 1.0419922, -0.6972656, -0.8017578, 0.1739502, -0.47485352, -0.012840271, -1.6083984, 0.12976074, 0.10534668, 0.9814453, 1.0615234, 1.3535156, -1.4980469, -0.3779297, -1.6044922, -1.4804688, -0.20593262, 0.14160156, -2.1386719, 2.8359375, -0.02822876, 2.0019531, -0.021224976, 2.2109375, -0.921875, -1.5361328, 1.9677734, -2.5449219, -1.2060547, -0.5131836, -3.3828125, 0.048736572, -0.8383789, -0.24304199, 1.9609375, 1.40625, -0.8979492, -0.008430481, 0.114868164, -4.5, -0.8183594, -0.10003662, 0.51708984, -1.5302734, -1.1347656, 0.6611328, -0.1373291, -2.8691406, -0.8330078, -0.32617188, -1.0673828, 0.8984375, 3.7207031, -1.5146484, 0.11047363, -0.5996094, -0.24731445, -0.3996582, -0.07421875, -0.12365723, -1.2421875, -0.2783203, -1.0996094, 2.0019531, 1.2832031, -1.3457031, 0.037200928, 0.49951172, -0.25732422, -1.6660156, 1.1230469, 0.5776367, 1.0332031, -0.08319092, -1.7910156, -1.0742188, 0.5756836, -0.11883545, -1.4111328, 0.46704102, 1.171875, -0.7861328, 0.82714844, 1.1738281, 0.1463623, 2, 0.94140625, -1.7158203, -0.4440918, -1.2314453, -1.9902344, -0.2130127, 0.5522461, 0.12609863, -1.390625, -0.21118164, -1.8457031, 0.65283203, -1.8828125, 0.34423828, -2.2753906, 2.3105469, 2.359375, 2.2773438, 1.8652344, -1.8603516, -1.4912109, 0.8652344, -1.0234375, -1.2128906, 0.7817383, -0.8041992, 0.55566406, 1.9785156, 0.93652344, -0.7504883, 1.2871094, 0.9746094, -1.4589844, 0.828125, -1.9189453, -1.5996094, -1.9306641, 0.0040283203, 0.030029297, -0.7055664, 2.1640625, -3.6855469, -1.3740234, -1.3720703, -0.06665039, -0.38427734, 1.5800781, 1.2509766, 0.38354492, 1.5107422, 0.7392578, 0.2355957, 0.16772461, 1.6640625, -1.1367188, 1.1181641, -1.1347656, -1.4482422, -0.078430176, -0.9765625, -1.4375, 0.12005615, 1.9726562, 1.3583984, 1.3066406, 0.90185547, -0.13415527, -1.9316406, 3.3476562, 1.7861328, -3.1855469, -0.5263672, -0.6772461, -0.96972656, 1.6455078, 1.7519531, -3.2226562, 0.7973633, 0.93359375, 0.3190918, 0.7397461, -0.041259766, -2.2558594, -0.5083008, -0.8017578, -1.2763672, -0.7158203, -1.84375, -1.6435547, -0.31884766, 0.113708496, -1.2207031, 1.2304688, 3.9023438, -1.5292969, -2.1875, 1.2480469, 0.09185791, 0.24108887, -0.5175781, -0.77246094, -1.0703125, -0.3322754, 2.78125, 1.6865234, 1.6269531, 0.39648438, 0.27197266, -1.1621094, -0.4753418, -1.9882812, 2.0664062, -2.9082031, -1.3652344, 1.0546875, -0.9604492, -1.21875, -1.5537109, -0.059265137, -0.33520508, 1.4003906, 2.2539062, 0.6616211, 0.049804688, 0.5756836, -2.7226562, -3.4667969, -0.41479492, -0.79785156, -0.93115234, -0.20922852, 1.0527344, -0.36254883, 0.35009766, -0.54785156, 0.24450684, 0.15161133, -0.6347656, -1.2451172, -2.171875, -0.51171875, -0.23718262, -0.19018555, -0.13110352, 3.1152344, 0.7705078, 0.09210205, -3.1660156, -1.6132812, -0.3293457, -1.0869141, 0.23156738, -0.33276367, 0.5527344, 0.16101074, 1.1865234, 1.5048828, -1.3369141, 0.5703125, -1.2519531, 0.3552246, 1.2236328, -1.1855469, -0.37231445, 0.11505127, 0.32836914, 0.25830078, -0.7944336, 1.7324219, 1.1181641, -0.07354736, 0.035705566, 2.1992188, -0.3034668, 0.5493164, 0.0054626465, 0.3190918, 0.20861816, -0.14172363, -0.80371094, -0.17980957, -2.4316406, -3.515625, 0.7988281, -2.5195312, -0.86035156, -1.3144531, -0.7050781, 1.4873047, -0.084228516, 1.1083984, 2.4238281, 2.0878906, -2.0976562, 0.20495605, 0.06878662, 2.0839844, 2.5859375, -0.90527344, -2.1542969, -2.9003906, 0.6357422, 1.1953125, 0.76123047, -1.0908203, -1.4775391, -1.4013672, 0.6035156, -0.6254883, 2.203125, 0.7636719, -0.3034668, -2.3066406, 2.171875, 2.2363281, -0.45654297, 1.2890625, 0.8017578, 4.0273438, -0.16223145, 2.6191406, 1.4199219, -1.3300781, 1.0449219, -0.3317871, 2.1171875, -1.1875, -0.41674805, -0.6464844, -3.3867188, -0.98779297, -0.8984375, -2.6445312, -2.2558594, 1.7333984, 1.7675781, -0.65283203, -0.20263672, 0.9145508, 0.5605469, 2.1113281, 1.4238281, 2.4902344, -0.20898438, 0.44360352, -1.0185547, 1.2519531, 1.53125, -3.1582031, 1.7207031, 0.42358398, 0.06262207, -0.9584961, 0.25927734, 1.3632812, 2.4023438, 1.9365234, 2.5917969, 2.0800781, 0.9189453, 1.4892578, 0.33935547, 0.6801758, -0.46142578, -1.6289062, -0.48168945, 1.4052734, 1.6835938, 0.92626953, -1.03125, 1.2373047, -0.03237915, -1.4863281, -0.45410156, 0.50341797, 1.1416016, -2.8125, 0.82373047, -0.35107422, 0.17016602, -0.9555664, 1.3759766, -0.96972656, 1.0498047, 0.41088867, 0.5107422, 1.6992188, 0.74902344, 1.7861328, -1.2802734, -0.8847656, 1.9736328, -1.2880859, 0.94873047, 0.15344238, -1.2001953, -0.8066406, -0.21118164, 1.4306641, 0.87890625, 0.92871094, 0.68896484, 2.4179688, 1.7333984, 0.36279297, -1.7841797, 1.484375, 0.6464844, 2.6230469, -0.18103027, -1.1103516, 0.48535156, -0.3322754, -2.8222656, -2.0722656, 2.171875, 1.2988281, 1.7871094, 0.17578125, -0.9790039, 3.1054688, 1.2929688, 1.8798828, -1.5302734, 2.6914062, -1.0966797, -1.5722656, -1.1181641, 0.7285156, 0.6118164, 2.4882812, 1.7519531, -0.061065674, 1.6738281, 0.40478516, 1.7304688, 0.46923828, 2.375, 0.58935547, 0.05206299, -0.57470703, 2.2636719, 1.9658203, -0.9868164, -1.5458984, 1.71875, 2.5234375, -1.4277344, 0.2705078, -0.46923828, 2.1660156, 1.7568359, 0.047546387, -0.17419434, -1.8085938, -0.47924805, 0.046966553, 1.5029297, -0.40014648, -1.9804688, 1.3652344, -0.11608887, -1.1318359, 0.41430664, 1.5332031, -0.37719727, 1.8876953, 0.6333008, 0.34399414, 0.2890625, -1.9833984, 2.0175781, -1.4228516, -1.2832031, 0.29516602, 1.1337891, 0.7915039, 0.0053901672, -0.22851562, -0.4885254, -0.9213867, -0.59472656, 1.5869141, -0.9838867, -1.0439453, 0.45410156, -0.09637451, -0.06524658, 2.4335938, -1.1416016, -0.19421387, -2.3085938, -0.5986328, 0.4724121, 1.6582031, -1.1269531, 1.2304688, 3.5, 1.8408203, -0.38427734, -2.8789062, -3.9257812, -0.8330078, -1.4697266, 1.796875, -0.9584961, -0.7973633, -1.3203125, -0.8725586, 1.6816406, -0.40576172, -1.0078125, 0.014778137, -1.4365234, 1.2216797, 0.81347656, 1.453125, 0.5834961, 1.1503906, 0.859375, 2.1523438, 2.1894531, 0.76171875, 1.3056641, 1.2587891, -0.7080078, -3.3378906, 1.7578125, -0.8330078, 1.0039062, 1.4355469, 1.0351562, 1.5908203, -0.28149414, -0.2467041, 0.32836914, -2.5703125]}, "B0070U0KXA": {"id": "B0070U0KXA", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills L75625 32\" Propane Grill\nDescription: \nFeatures: 830 square inches of cooking surface\n75,000 total BTUs\nPremium solid stainless steel cooking grates\nSize: 32?\nstainless steel smoker head with polished edges\n", "embedding": [-0.7583008, -0.09008789, 2.5195312, 0.5839844, -1.8251953, -1.1191406, 1.53125, -0.98291016, -0.6088867, 1.2089844, 0.21020508, -1.2880859, -2.4960938, -2.2832031, 1.2734375, -0.8071289, 1.4570312, 1.234375, 2.1738281, -0.47973633, -1.3027344, 0.08721924, 3.1738281, -1.5800781, 0.43408203, 0.3515625, 5.5195312, -3.1601562, 0.12536621, -0.051971436, 0.6123047, 1.6494141, 0.9482422, 1.2509766, -1.953125, -2.2753906, -1.8222656, 1.4472656, -2.6542969, 0.16064453, 0.3388672, -0.734375, 1.7060547, 1.1650391, -0.79248047, -0.061798096, 0.44555664, 0.9267578, -3.8378906, 0.06262207, 2.4277344, -0.3701172, -0.27197266, 0.55029297, -0.54345703, 2.9492188, 0.3774414, 0.28588867, 0.51123047, 0.5571289, 1.9052734, -0.055755615, -1.5341797, -0.96484375, -1.8359375, 0.07055664, -0.62597656, -1.7070312, 2.4375, -0.7421875, 2.96875, 0.10644531, -1.9355469, -1.1513672, 0.79785156, -1.8271484, -3.2597656, 1.0126953, -0.3154297, -0.3088379, -0.14135742, 3.6171875, 1.5419922, -2.8789062, -0.3942871, 0.20300293, -1.7441406, -1.9599609, 1.9580078, -1.8515625, 1.1601562, 2.1933594, -2.3261719, -3.3398438, 2.4804688, -1.0097656, 0.7949219, 1.9580078, -1.8691406, -0.2541504, 0.4765625, 0.8984375, -0.8457031, -1.546875, -1.5302734, -1.8330078, 0.7519531, -0.17016602, -2.6796875, 0.2680664, -1.1298828, -1.2958984, 2.2773438, 1.1005859, 2.1894531, 1.1357422, 0.453125, 1.9013672, 1.7207031, 1.6367188, 3.0292969, -1.6669922, 0.091674805, -0.69628906, -0.62402344, -0.21582031, -1.2675781, 1.4306641, 4.8359375, -2.3261719, -0.42895508, -1.5517578, 3.5058594, -0.4140625, -1.5634766, -1.5527344, -2.0722656, -0.06604004, -2.0449219, 0.30615234, -0.10974121, 0.8388672, 1.7265625, 0.115722656, -4.7851562, -2.7011719, -0.9394531, 1.7392578, 0.022903442, -2.265625, 0.03579712, -1.0810547, 0.20336914, -0.203125, -0.04019165, -0.7055664, -1.9960938, -0.79296875, 2.2324219, 0.7348633, 1.78125, -1.3798828, -1.234375, 1.0849609, -1.0488281, -1.390625, -0.30297852, 0.96484375, 1.2177734, 2.2460938, 0.40112305, -0.8251953, 0.24645996, 0.35595703, 0.43920898, -0.14013672, -0.61865234, 1.1376953, 0.39868164, -0.96191406, -0.12719727, -3.0253906, -0.61865234, -0.71191406, 0.43701172, 0.120910645, 1.7138672, -2.0117188, 2.2363281, -1.0146484, 0.8647461, -0.016159058, -0.13598633, 0.5541992, -1.3896484, -1.7392578, -1.7451172, -2.2011719, 2.4863281, -1.1455078, -1.140625, -0.22033691, 0.20117188, -0.29614258, -1.7519531, -3.6328125, -3.1953125, -1.8046875, 2.7460938, 1.3984375, 2.0859375, -2.6621094, 1.7275391, -1.7011719, -0.007671356, -3.5, 0.6381836, 0.6176758, 1.9697266, 2.6445312, -0.4560547, 0.49902344, -0.6796875, 2.9082031, -1.2392578, 0.17895508, 0.69873047, 1.3964844, -2.7265625, -0.33007812, 2.9121094, 0.73876953, 0.025131226, -0.1217041, -0.86816406, 0.9550781, 1.6884766, -1.1376953, 0.08618164, -0.25952148, 0.091308594, 1.5136719, 0.28979492, -0.8666992, -0.12939453, -1.0419922, -2.40625, 3.1113281, 2.6171875, 0.38305664, -1.1542969, 0.09082031, 0.09472656, 1.7294922, 0.0017499924, 1.0849609, -1.4775391, 0.34545898, -0.53564453, -1.9150391, 1.3349609, -1.0820312, 0.75439453, -0.27124023, 0.095458984, -1.1835938, 4.1210938, 0.26635742, -1.7558594, -1.8115234, 0.09436035, -0.6640625, 1.1103516, 0.51220703, 1.8837891, 0.42114258, -1.046875, 2.7734375, -0.3166504, 1.7695312, -0.55371094, 1.859375, 2.171875, -3.25, -1.8681641, -0.026641846, -0.15234375, -0.18408203, -2.40625, 1.4160156, 4.0820312, 0.6660156, -2.7070312, 2.8144531, -1.0605469, 0.5180664, 1.2480469, -1.8925781, 0.6274414, 0.43823242, 0.11425781, 0.07891846, 2.0039062, 2.0878906, -0.6875, -0.58984375, 0.49951172, -2.234375, -0.52978516, 0.1998291, -0.42578125, -2.0605469, -2.2304688, 1.8125, -1.4394531, -0.013435364, 2.8027344, -3.5605469, 1.9833984, 0.7246094, 2.6835938, 0.55566406, 0.00466156, -0.8823242, -0.90478516, 0.9765625, -1.8583984, 0.98291016, 0.203125, -1.9042969, 0.13049316, -1.2128906, 0.85839844, -0.92089844, -1.5908203, -0.29516602, -1.3017578, -1.7265625, -0.045135498, -1.2246094, 0.28955078, 2.1640625, -1.6220703, 1.6386719, -1.5429688, -4.6171875, -1.078125, -1.1181641, -0.8076172, 2.1308594, -0.49658203, 0.16894531, 0.42260742, -5.6054688, -0.36547852, -0.27856445, 0.57958984, -1.015625, -0.81933594, -1.8037109, 0.7910156, -1.859375, -0.8183594, 0.1862793, 0.8510742, -1.1367188, 0.96484375, -2.2128906, 0.07171631, -3.5957031, -0.43139648, -0.45898438, 1.6416016, -1.9394531, -2.3320312, -2.7519531, -0.7216797, 3.78125, 0.90722656, 1.9101562, 0.18896484, 1.0263672, 2.0566406, -1.2050781, -2.4472656, -0.62890625, 0.96533203, -0.48535156, -2.5, -2.7792969, 1.1054688, -2.0351562, 0.011352539, -1.0849609, -0.37695312, -0.8496094, 2.7695312, -2.0332031, -0.14294434, 1.8730469, -0.38549805, -0.99316406, 0.34204102, -1.6914062, 0.27197266, -1.1757812, -0.26391602, 0.5703125, 1.9169922, -0.45239258, 1.2763672, 0.23718262, -0.34594727, 1.5068359, -2.015625, -2.8457031, 4.6289062, 0.3803711, -0.36083984, 2.4003906, -1.9882812, -2.6464844, -2.796875, -0.07952881, 2.6289062, 3.0527344, 1.6083984, -0.70654297, -0.33007812, 1.3291016, -1.4677734, -0.3076172, -0.4260254, 0.41186523, 3.6777344, -1.4003906, -0.91308594, -1.3544922, 2.359375, -3.046875, -1.0878906, 2.6367188, 0.6069336, 1.953125, 1.7060547, 3.421875, -0.11291504, -1.7314453, 3.0585938, -0.5048828, 1.3144531, -0.27905273, -0.27441406, 1.0449219, 0.43530273, 1.9755859, 2.5742188, -0.16418457, 1.1201172, 1.9130859, 1.4345703, 0.8828125, 0.7866211, -0.1508789, 1.3066406, -0.6040039, 2.1835938, -1.4404297, 0.9609375, 0.03967285, 0.44921875, -0.46020508, -0.9116211, -1.2568359, 2.8632812, 0.14770508, 1.1748047, 0.53564453, -0.1459961, 0.02507019, -1.0166016, -0.17260742, -1.609375, -0.48046875, 0.6801758, 0.31518555, -0.84472656, -0.99609375, 1.5966797, -0.93408203, -1.4785156, 0.40698242, 2.984375, 1.4892578, -2.6933594, 2.5175781, -1.2177734, -1.1044922, 2.53125, -0.5439453, -1.5361328, 0.16955566, -1.0859375, 3.359375, 0.91796875, -1.4140625, -0.60546875, -1.8261719, 1.0488281, -0.4909668, 0.82910156, 1.2382812, -0.48266602, -1.7324219, -0.7441406, -1.6523438, 0.38134766, -0.31079102, -2.3183594, -1.7695312, 1.3974609, 0.11706543, 3.3691406, 0.2467041, 2.3105469, -2.0078125, 0.5004883, 1.3388672, -2.3847656, -0.37719727, -3.4921875, -2.0742188, 1.2685547, -1.9814453, -1.7695312, 4.28125, -0.6191406, -0.7109375, 1.3671875, -0.016952515, -2.0214844, -0.62841797, -1.3427734, 0.0826416, -1.9775391, 0.23937988, -1.1591797, 0.9921875, -1.171875, -0.71435547, 0.30493164, -0.38989258, 0.3701172, 0.8276367, -2.4023438, 0.6538086, -1.8681641, -0.22692871, -1.1416016, -1.1523438, 2.4804688, -1.5537109, 0.25390625, -2.8828125, 0.09674072, 0.58691406, -0.9868164, 4.3203125, 2.4863281, -0.78759766, -0.8666992, -0.09887695, 1.1533203, 2.4160156, 0.41967773, -2.5078125, -2.1171875, 1.1523438, -0.8745117, -0.4350586, -0.0569458, -0.3100586, -1.6074219, -0.21289062, 0.64160156, 0.20568848, 0.54589844, 0.014335632, -2.0136719, -0.28759766, -0.6621094, -1.7753906, -0.7832031, -0.04537964, -0.38549805, -0.69628906, 3.0917969, -1.0927734, 0.51464844, 0.2705078, 0.8984375, -1.328125, 2.4121094, 1.4980469, 2.0019531, 2.625, -0.022476196, -0.79052734, 0.07879639, -1.1123047, -0.4519043, -0.41333008, -0.88671875, 0.6557617, 0.6621094, 2.1640625, -3.3125, -1.0966797, 0.3720703, -3.2558594, -0.5595703, -1.9794922, 0.8930664, -1.6044922, -1.1152344, 1.0009766, -1.8291016, 2.4394531, -0.64160156, 0.65771484, -0.8383789, 0.75634766, -0.76660156, 1.1162109, -0.97265625, -0.22595215, 1.3632812, 0.16760254, 0.5, -0.88916016, 1.6943359, -0.30249023, 1.6455078, -2.4355469, -0.8076172, -0.7890625, 0.3581543, -1.5957031, -1.5888672, 1.7158203, 1.9599609, -0.013061523, 2.9453125, 1.2929688, -2.328125, 0.7421875, 1.5146484, -3.5917969, 0.25683594, 0.6308594, -0.37841797, 1.8388672, 1.3740234, -4.5039062, -0.31762695, 1.8339844, -1.2099609, 0.08148193, 1.7714844, -1.453125, -1.7587891, -1.6142578, -1.1269531, -1.3242188, -1.8085938, 0.1472168, -1.8808594, 0.36450195, -2.34375, 1.0078125, 2.7226562, -0.9453125, -1.8398438, 2.1660156, -0.28955078, 0.45776367, -1.4384766, 0.81933594, -0.6347656, -1.1650391, 2.1171875, 1.7460938, 0.42236328, 0.60839844, 2.0195312, -2.3574219, 0.9501953, -3.4003906, 3.6953125, -1.3115234, -0.5805664, 1.3554688, -3.7148438, -1.6425781, -2.9882812, 0.64990234, -1.0576172, 2.3164062, 1.6845703, 0.49658203, -0.8730469, 1.4648438, -1.0185547, -4.109375, -2.3730469, -0.26416016, 0.47705078, -0.003698349, 1.4726562, -3.21875, 0.77685547, 0.84228516, -0.7763672, -1.5146484, -0.054992676, -2.5742188, -0.71875, -0.053100586, 0.62060547, 0.47094727, 1.4716797, 1.5957031, 0.93359375, 1.3339844, -3.1972656, -1.6015625, 1.1650391, -0.64160156, 0.35888672, 3.53125, 2.1035156, 0.9453125, 0.70410156, 1.9003906, -2.1054688, 1.6269531, -0.22790527, -0.23364258, 1.8134766, -0.1239624, 0.8198242, 1.4541016, -3.0332031, 0.6171875, -1.1337891, 1.5878906, 0.0010242462, -1.5605469, -1.6376953, 1.5517578, 0.3564453, -0.59375, 1.3261719, 1.4980469, 0.19458008, 0.83740234, -1.8730469, -0.60595703, -1.7138672, -3.2734375, 1.015625, -3.4628906, -0.15551758, -0.8671875, 1.3955078, 2.9082031, 0.43481445, 0.94628906, 2.5878906, 0.6567383, 1.1064453, 1.5947266, -1.203125, 2.8691406, 2.5410156, -0.18139648, -0.20532227, -1.8339844, 0.18859863, 3.0742188, 0.10290527, -0.45483398, 0.76171875, -0.4711914, -0.25024414, 0.5566406, 1.7763672, 0.81933594, 0.1418457, -1.6767578, 0.4465332, 3.90625, -0.07946777, 2.7636719, 0.21582031, 1.515625, -0.93896484, 4.25, -0.40405273, -2.0644531, 2.6875, -1.2353516, 0.8354492, -0.105529785, -1.6240234, -0.12792969, -1.1074219, -1.6298828, -1.1191406, -0.55029297, -3.03125, 1.0302734, 0.86328125, -0.3720703, -0.99072266, 1.8964844, -1.2226562, 2.1777344, 1.4375, 1.1259766, 1.0615234, 1.0654297, 0.2376709, 0.36572266, 2.0664062, -2.7988281, 1.8798828, 0.20446777, -0.43237305, -1.5175781, 3.8515625, 2.3574219, 1.7714844, 0.015563965, 1.0791016, 1.7460938, 0.7133789, 1.1767578, -1.0957031, 1.890625, 1.2070312, -1.7617188, 1.1328125, 2.0097656, 2.8066406, 1.140625, -0.27490234, 1.3183594, -0.75683594, -1.3056641, -0.25463867, 0.44384766, 1.7373047, -3.2109375, 2.2089844, 0.5541992, -0.3330078, -1.8398438, -1.2802734, -0.41015625, -0.40722656, 1.4726562, 1.1513672, 0.80029297, 0.7636719, 2.4492188, 0.45825195, -1.2724609, 0.55371094, -2.6992188, -0.77246094, 0.72753906, -1.6914062, -1.7011719, -0.59765625, 0.6044922, 0.41870117, 0.7939453, -0.08068848, 3.2890625, 1.4121094, 1.1845703, -1.5361328, 0.56347656, 0.93847656, 3.1796875, -1.3623047, 0.22741699, 0.8642578, -0.3684082, -1.9775391, -2.7949219, 3.6367188, -0.5239258, 2.4140625, 1.0595703, -2.1171875, 2.3046875, -1.2587891, 0.70166016, -2.1445312, 1.1044922, -0.98583984, -1.6904297, -0.98583984, -0.47631836, 2.8164062, 1.5136719, -0.9291992, -0.4868164, 1.7802734, -0.47924805, 2.921875, 1.3457031, 2.078125, 1.8447266, 2.2714844, -0.95703125, 2.3925781, -0.10253906, 0.22729492, -1.5322266, 2.0761719, 2.0859375, 0.34326172, 1.1630859, 0.5019531, 0.37353516, -0.09454346, -1.1523438, -0.73876953, -1.4355469, -0.5859375, -0.06567383, 1.5205078, -0.63378906, -0.9584961, 2.8925781, 1.7207031, -1.0136719, 1.4765625, 2.1464844, 0.29711914, 3.1855469, -1.1806641, -0.030029297, -1.2138672, 0.36938477, 0.12023926, 1.0341797, -2.1152344, -0.6982422, 2.3183594, 0.3322754, -1.1796875, -0.14318848, -0.32299805, -0.34887695, -0.70166016, 0.33569336, -1.8652344, -1.4736328, 3.1953125, 1.2226562, -0.5097656, 0.65966797, 0.25170898, -0.3395996, -2.2929688, -0.18432617, -1.5488281, -1.0390625, -0.10784912, 2.5820312, 2.8847656, 0.9580078, -0.50927734, -1.6162109, -3.8730469, -3.5175781, -1.7910156, 3.3867188, -1.2207031, -0.46264648, 0.7661133, -0.51220703, 0.5834961, -2.6855469, -1.3867188, 1.7539062, -0.05706787, 0.40234375, 0.5283203, 0.31225586, 0.5385742, -0.074279785, 1.8994141, 1.2265625, -0.31396484, 1.2773438, 1.9960938, 0.69970703, 1.1572266, -2.5605469, -1.203125, 0.5180664, 0.2298584, -1.2363281, 0.93115234, 0.030456543, 0.3876953, -0.6123047, -1.6279297, -0.8486328]}, "B007WH7S4A": {"id": "B007WH7S4A", "original": "Brand: DOZYANT\nName: DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection\nDescription: \nFeatures: Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks\nLong lasting high quality material provides secure, air-tight connection between propane tank\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low\nThis propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter\nNo tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances\n", "embedding": [-2.46875, 1.6113281, 1.6738281, 1.7666016, 0.5800781, 0.24133301, 0.4140625, -0.26049805, 1.9101562, 1.7744141, 2.1269531, -0.9111328, 1.5302734, -1.1640625, 2.2441406, 0.53125, 0.55322266, 1.3251953, 1.7021484, 1.2216797, 2.6875, 0.8305664, 0.58935547, -1.28125, 1.7216797, -0.17199707, 2.1015625, -1.7529297, -1.2929688, -1.6240234, 1.7851562, -0.52246094, 0.42895508, 0.9580078, -1.1064453, -0.77490234, 0.65283203, -0.33496094, -2.9902344, -1.4814453, -2.3457031, 1.03125, 0.3305664, 0.5673828, -2.2226562, -3.2109375, -1.7216797, 0.80322266, 0.4658203, 0.05480957, 1.3173828, 3.265625, -0.8671875, 1.0566406, -0.97265625, 1.2949219, 1.5556641, -2.734375, 1.1074219, 1.9492188, 0.734375, 0.08239746, -2.5996094, -0.56640625, -0.5317383, -0.76708984, 0.45336914, 0.50634766, 2.5273438, 1.2578125, -0.35253906, 0.5488281, 1.3554688, -1.484375, -1.8447266, 1.2929688, -1.5556641, 1.0351562, 1.8144531, 1.0097656, -0.41308594, -0.47875977, 0.30541992, -2.1855469, 0.14978027, -1.0175781, 0.55029297, 1.1416016, -0.008766174, -0.1640625, -2.1484375, 2.2597656, -2.3632812, -2.5644531, 1.3779297, 0.0058403015, 0.2220459, 0.7714844, 1.1162109, 1.1845703, -1.2910156, -0.083862305, 0.70751953, 1.8798828, -2.234375, -0.85009766, 0.23620605, 1.1162109, -3.1113281, -0.6035156, 0.59521484, 0.49780273, 1.2041016, -1.4082031, -0.9082031, -0.47314453, 1.4326172, -1.1025391, 2.4648438, 1.9697266, 2.9511719, -1.1464844, 0.703125, 0.6196289, 0.94677734, 0.65234375, 1.0976562, -0.049102783, 3.1640625, -0.070739746, 0.79296875, -0.033569336, 1.3164062, -1.0283203, 0.3569336, -1.6396484, -0.1340332, -3.703125, -2.2148438, -0.43945312, -3.609375, -0.21765137, -0.4345703, 0.69677734, -2.4277344, 0.124816895, -2.2324219, 1.7978516, 1.4628906, -1.8164062, 2.7871094, -1.6328125, -0.091308594, -0.059417725, 1.4990234, 2.3632812, -2.8925781, -2.5332031, 3.6171875, 1.2226562, 0.22521973, -1.4111328, -1.9033203, 1.0087891, 1.9023438, -2.5039062, -0.62402344, 0.41308594, 0.2705078, 1.2509766, 0.6303711, -2.7050781, 1.4648438, -0.41308594, 1.3740234, -2.8164062, 1.4365234, 2.9726562, 2.2871094, -0.32226562, -4.1210938, -1.7685547, -0.6010742, -1.9824219, 1.5048828, 0.20385742, -1.3769531, 0.016647339, 0.9951172, -3.1425781, -1.9238281, 2.7773438, -0.50927734, 0.95166016, -0.07684326, -2.3476562, -4.4375, -0.2709961, -0.4091797, 1.1044922, 1.4541016, -2.1425781, 0.8046875, -0.39868164, -0.28735352, -0.49047852, 2, -1.6044922, 1.1455078, 0.53222656, 0.43017578, -1.0058594, 3.3398438, -1.0517578, 0.2006836, -1.8935547, -0.8989258, 3.53125, 1.4414062, 1.6738281, -0.28735352, -0.19799805, 1.9785156, 1.2832031, 0.50683594, 1.359375, 0.42797852, 1.0947266, -1.6777344, -0.94433594, 2.890625, 0.4880371, -0.13061523, -2.0566406, -0.6826172, 2.9296875, 0.9580078, -0.9716797, 0.6352539, 0.68359375, -1.4023438, -0.80859375, -0.9970703, -0.40795898, -0.9511719, -2.4296875, -1.6513672, 0.9243164, 2.2929688, -1.9873047, 0.26098633, -0.57470703, -1.7021484, -1.9882812, -2.2480469, -0.31762695, 1.0996094, 1.1875, -0.1616211, -2.5566406, 1.6621094, 0.37963867, -1.0126953, 0.061279297, -0.089782715, 1.8085938, 1.3574219, 1.1269531, -0.78222656, 1.0263672, 1.1689453, 2.6347656, 0.6328125, -0.72314453, 1.71875, 2.7285156, -1.4462891, 2.6894531, -0.48828125, -0.29370117, 1.8398438, 0.1361084, 0.56689453, -2.2695312, 0.6582031, 1.3144531, -0.3774414, 0.9633789, -2.1953125, -0.19348145, 3.0175781, -2.0039062, -3.8886719, 3.5195312, 2.6699219, 1.5283203, 0.95947266, -1.7109375, -0.30297852, 0.04171753, -0.5175781, 2.0371094, -2.5761719, 0.4091797, 2.8300781, -0.20349121, -1.4960938, 0.13769531, 0.030792236, 0.52685547, -0.9194336, 0.92529297, -3.1289062, -0.11993408, -0.29589844, -2.4550781, 1.6308594, -3.5058594, -1.5927734, 3.0859375, -0.031036377, 2.578125, 1.1708984, -1.4023438, 1.4355469, 1.2236328, 0.36206055, -0.8520508, -0.050628662, 2.0292969, 2.3964844, -0.29052734, 0.8798828, -1.0068359, -1.3398438, 0.36743164, -2.7890625, -4.5039062, -0.3449707, -2.1835938, -2.0332031, -0.5678711, 1.2587891, 3.3222656, 0.28979492, 0.37475586, -1.7509766, 0.6928711, 0.16271973, -3.7695312, 0.71240234, 3.4433594, 0.26904297, -3.2382812, 1.1328125, 0.25195312, -0.5083008, 2.7460938, -3.0195312, 0.52490234, -1.7412109, 0.5214844, 1.7832031, 2.1347656, -1.1787109, -1.4716797, 0.22937012, -2.6582031, 0.5444336, -1.6914062, 1.5117188, -1.5371094, 0.8671875, -1.3378906, -0.7817383, 0.43286133, -0.41088867, 2.3789062, -1.0507812, 1.9833984, -1.03125, 0.57177734, 1.09375, -0.66308594, -3.8730469, -1.0810547, -0.11645508, -0.71972656, -1.2949219, -4.5429688, 0.94140625, -1.1660156, 1.0078125, -0.21411133, -0.27685547, -1.8818359, 0.33618164, 1.2304688, 0.117370605, -0.55126953, 1.3740234, -0.6713867, -1.3652344, -1.0263672, 1.4111328, -0.6064453, -3.2480469, 0.18847656, 1.0185547, 0.2084961, 0.20227051, 0.24365234, 1.1767578, 1.3818359, -0.7709961, -2.7734375, 0.6923828, 1.6982422, -0.6201172, 1.8867188, -0.80908203, -0.7939453, -1.6699219, -0.6845703, 4.71875, 1.9287109, 2.7636719, -1.7285156, 1.0058594, -0.60791016, 0.7944336, -0.38964844, -0.45629883, 0.36401367, 1.6767578, -3.4042969, -2.4433594, -1.3515625, 0.93359375, -1.7490234, -0.49291992, 1.109375, 0.8544922, 3.0820312, 0.6010742, -1.6328125, -0.7529297, -0.2878418, 1.9746094, 0.05758667, -0.63623047, 0.75683594, -1.8505859, -0.90185547, -2.8378906, -0.6352539, 1.5673828, 0.7885742, 1.0683594, 0.42089844, 1.3759766, -0.37158203, -1.2060547, -0.3557129, 0.2397461, -0.1619873, 1.5419922, -0.27197266, 0.4152832, -0.42504883, 0.54248047, 1.6435547, -1.7919922, -0.32910156, 0.86572266, 3.2226562, -0.035583496, -0.31445312, -1.2666016, 0.5986328, 0.021697998, 0.051513672, 1.1005859, 1.5849609, 1.1210938, -1.6240234, -1.9824219, -2.4003906, 0.21484375, -1.2861328, 0.83691406, 0.08404541, -0.4248047, -2.9667969, -1.4306641, 0.08660889, -0.45581055, -1.4082031, 0.29541016, 0.7993164, -0.35913086, -0.2199707, 0.609375, 1.7978516, 2.53125, -2.2265625, -0.63916016, -2.4804688, -0.9199219, -0.88623047, 0.43115234, 2.0371094, 1.8164062, -2.5410156, -1.0400391, -2.5585938, 0.7397461, -0.8959961, 0.8935547, -2.2851562, -0.6298828, 1.3974609, 1.5712891, -0.31274414, 2.0039062, 0.40429688, -0.38208008, 0.4880371, -2.4375, 0.08709717, 0.118896484, -4.96875, 2.3613281, -2.6601562, -0.30371094, 1.5185547, 0.88134766, -0.46923828, 0.21948242, 1.7617188, -4.0820312, -1.4404297, -1.8007812, 2.3945312, -1.9492188, -0.32226562, 3.59375, 1.7685547, 0.00081300735, -1.9619141, -1.6611328, -0.30664062, -0.107177734, 0.17419434, 1.8173828, 1.71875, -0.59521484, -0.66503906, -2.5292969, 0.6850586, -0.40600586, -0.06048584, -1.3398438, -1.7451172, 2.5371094, 0.31225586, 0.29956055, -1.7617188, 2.8457031, 3.0605469, 0.26538086, -0.27734375, -1.6708984, 2.3046875, 0.064697266, -2.578125, -0.10040283, -0.99072266, 1.0898438, -0.014907837, -0.3322754, -0.21887207, -1.78125, 1.7636719, -0.08581543, 1.3994141, -0.02507019, -0.7246094, -1.8388672, 0.7050781, 1.2890625, -0.67871094, 0.08111572, -1.3701172, -2.0273438, -0.017227173, 0.08654785, -0.8901367, 0.921875, 0.67529297, -1.4707031, -3.8613281, 1.0595703, 3.296875, 1.0644531, 0.11730957, -0.68408203, -0.7036133, 0.88916016, 1, -0.091674805, -0.42651367, -1.0820312, 0.053375244, -0.23852539, 1.7998047, -0.79248047, -1.4619141, 0.62646484, -0.14672852, 0.47973633, -0.53466797, 0.20214844, -0.8720703, -1.0175781, -0.37060547, 0.0418396, 1.9658203, -1.8769531, 0.49365234, 2.2246094, 0.35620117, -2.7773438, 0.6274414, 2.5996094, 3.4394531, -0.82470703, -0.2722168, 2.21875, 0.6352539, 0.55322266, 0.4267578, 0.92529297, -1.8847656, 0.63623047, -0.67089844, 1.8359375, -1.5800781, 1.6025391, 1.109375, 2.3652344, 0.74853516, 0.4074707, 1.7080078, -2.2167969, 2.2402344, 1.4521484, 0.05340576, -1.5332031, 0.53759766, -1.390625, 1.5751953, -2.2792969, -0.9741211, 0.3647461, 2.8613281, -0.22351074, 2.1289062, 1.5673828, 0.14550781, -2.5332031, -3.5195312, -2.7363281, -0.095336914, -0.55859375, 1.7529297, -0.11303711, 0.13867188, 0.1932373, 1.796875, 2.3789062, -0.12646484, 1.7060547, 0.26000977, -0.5019531, -0.5180664, 0.13842773, -0.3737793, -2.1113281, 0.34887695, -0.27246094, 1.9824219, -0.54785156, 2.0566406, 1.5498047, -0.578125, -2.8886719, -0.62939453, 2.078125, -2.0078125, -1.5058594, 1.9277344, 1.7382812, -1.3134766, -0.4477539, 0.6010742, -1.9873047, 0.8774414, 4.2382812, -0.3305664, -0.20019531, 0.90283203, -1.4394531, -3.921875, -0.7944336, 1.2041016, 0.62060547, 0.26660156, -1.9160156, 0.20178223, 0.95947266, -0.62109375, -1.6728516, -2.4902344, 3.1523438, -1.7216797, 0.2590332, -0.008842468, 0.6586914, -0.04824829, -0.40649414, -0.78027344, -0.99609375, -1.8466797, -2.4257812, -2.6835938, -0.5151367, -1.3378906, -1.1083984, 0.76123047, -1.3544922, 1.5546875, 1.5166016, 0.66064453, -2.359375, 2.2871094, -0.20483398, -0.009292603, 2.0390625, -1.4501953, -0.051208496, 1.2109375, 0.05041504, 0.0736084, 3.0019531, 1.8320312, -1.9755859, -1.0429688, 0.34399414, 0.1817627, -0.90478516, -1.9697266, 0.8027344, -0.5966797, 2.8496094, 0.05883789, -0.8408203, -0.61816406, -2.484375, -2.1972656, -0.05545044, -0.8574219, 0.38842773, -0.22094727, 1.1152344, -0.17480469, -0.8076172, -0.09259033, 0.50634766, -1.0048828, -3.40625, 0.99316406, -0.16723633, 2.3652344, 0.7026367, -1.6142578, -2.5488281, -2.2597656, 2.484375, 1.8173828, -0.90478516, 0.46362305, -0.46850586, -0.5214844, 1.9648438, -0.6245117, 3.1015625, -1.0566406, -0.79833984, -0.1295166, -0.115478516, 1.6767578, -2.3007812, -0.23522949, 1.7880859, -1.7441406, -0.6713867, 1.8603516, 1.0273438, -2.0195312, 0.9785156, -1.3818359, -0.9951172, -2.0625, -1.2216797, 0.8286133, -3.1113281, 0.36938477, 1.6572266, -2.4296875, -1.9316406, 3.3046875, -0.5258789, -0.3071289, 0.55810547, 2.7792969, -1.1503906, -1.4619141, 1.0410156, -1.4316406, -2.15625, -0.77685547, -1.3095703, 0.56591797, 1.7792969, -1.8691406, 0.05267334, 2.4003906, 2.03125, -0.07104492, 1.390625, -0.4897461, 2.0625, 0.8544922, 2.7363281, 4.0234375, 0.52441406, 1.2451172, 1.4277344, 1.8261719, 5.078125, -1.8046875, 1.2402344, 0.09820557, 0.5439453, 1.046875, -1.8095703, 0.18322754, -0.06561279, 0.18237305, -0.4260254, 0.80322266, 2.4179688, -2.3632812, -0.5800781, -1.8544922, -0.21142578, -5.1640625, 0.66259766, -1.9667969, 0.4272461, -2.1972656, 2.40625, 0.9526367, -0.43969727, 0.9794922, 0.6503906, 0.4609375, 2.109375, -1.1582031, -1.4023438, -1.6835938, -0.54589844, -1.34375, 1.5771484, 1.1914062, 0.10308838, 0.53466797, 0.65234375, -1.1298828, -0.7182617, 1.4755859, -2.1113281, 0.2775879, -1.2265625, 1.3701172, 1.3730469, -1.4306641, 3.7949219, 0.7963867, 0.43432617, -2.7128906, 0.96191406, -1.2871094, 1.6484375, -1.7333984, -4.4375, 0.6035156, -2.5625, 1.4248047, -2.4765625, 1.1328125, 0.062347412, -1.9970703, 2.0390625, -0.22888184, -0.92089844, 2.2285156, 0.5756836, -2.3554688, 0.640625, 1.7402344, 1.8955078, 0.009483337, -0.41601562, -0.72216797, 0.3552246, -1.0097656, 3.0507812, -1.0771484, -1.1884766, -0.79296875, 1.5839844, -0.77490234, 0.6254883, -2.4433594, -0.12475586, 1.1181641, 0.35351562, 1.296875, -0.8989258, -1.4648438, 1.3505859, -0.20751953, -1.1962891, 0.59375, 1.0058594, 0.0836792, 1.8740234, -1.4648438, -1.5888672, 0.9379883, -0.14440918, 2.0449219, 1.0947266, -1.2304688, 0.18469238, 0.8671875, 2.0859375, -1.7705078, 1.2939453, 0.10974121, -0.24511719, -1.1074219, -1.3701172, -1.0878906, 1.9628906, -0.31274414, 0.8154297, 0.30932617, 0.4819336, 0.49365234, -0.5917969, -2.8535156, 2.7558594, 3.7304688, 0.40161133, 0.9272461, -0.45214844, 0.8730469, 1.5244141, -0.44580078, 0.94140625, 0.42358398, 1.7285156, -0.24206543, 0.4885254, 0.3010254, -2.9121094, -1.6513672, -3.9511719, 0.11828613, 0.72314453, -0.1751709, 1.4736328, 0.75927734, 0.8598633, 0.18908691, 1.2636719, -0.14294434, -1.8486328, 1.6738281, -1.5009766, 1.3173828, 0.49291992, 1.0048828, 0.98876953, 1.7148438, 2.53125, -2.3007812, -0.49560547, 2.1679688, -2.3339844, -1.0283203, -0.27197266, -0.62060547, -0.6269531, 1.7558594, 3.3164062, 2.0605469, 0.14025879, -2.0097656, -0.43774414, -0.61572266]}, "B078VTH8B7": {"id": "B078VTH8B7", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.\n", "embedding": [-0.8520508, 0.8535156, 0.20214844, 0.97314453, -0.72753906, 1.7617188, 1.6953125, 0.37109375, 0.7416992, 1.4472656, 2.4277344, 0.69140625, 3.1582031, -2.9941406, 0.82666016, 2.8457031, 0.59228516, -1.1230469, 2.546875, 1.5136719, 4.5117188, 2.0585938, 0.82128906, -0.8979492, 1.6777344, -1.546875, 1.8310547, -2.0273438, -1.3896484, -0.2076416, -0.10089111, -1.703125, -0.7788086, -0.3869629, -3.0703125, 1.5585938, 0.7988281, 0.3737793, -0.9057617, -0.7368164, -1.15625, 0.14196777, 2.953125, 0.98583984, -2.2382812, -2.5859375, 0.29541016, 0.010215759, -0.99902344, -0.3400879, 1.125, 3.5039062, -0.3942871, 1.7509766, -1.8642578, 0.88378906, 0.7602539, -3.7148438, 0.625, 1.5673828, 1.4072266, 1.7851562, -3.1835938, 0.3083496, 0.82373047, -0.78466797, 0.18395996, -0.31396484, -0.27001953, 0.055725098, -0.6669922, 1.3017578, 0.41455078, -1.1621094, -1.7802734, 1.0654297, -3.7890625, -0.9033203, 2.5585938, -1.0888672, -2.9667969, 0.98291016, 1.9599609, 0.021484375, -0.05834961, -0.13232422, -0.89160156, 0.9033203, 1.9765625, 0.49682617, -1.4921875, 0.8027344, -4.4921875, -2.2695312, -0.05166626, 0.27905273, 2.6953125, 2.9589844, 4.3203125, 0.84375, -0.5678711, 0.6352539, 1.0527344, 0.9589844, -2.984375, -0.65771484, 0.38427734, 1.7011719, -1.3964844, -1.1953125, -1.3261719, 2.2578125, 3.3691406, -1.4267578, -0.7597656, -1.0576172, 0.091308594, -0.9897461, 1.1835938, 0.5654297, 2.2617188, -0.5024414, 0.29003906, 0.19421387, 1.6875, 1.8808594, -0.7553711, 2.5390625, 2.1074219, 0.42333984, -0.44848633, 0.9057617, 2.4609375, -1.5292969, 3.0976562, -2.8964844, -2.3984375, -2.421875, -0.90234375, 0.3095703, -3.109375, -0.33398438, 0.23217773, -0.89453125, -4.1640625, -0.31713867, -2.9394531, -0.08703613, 0.7163086, -2.0410156, -0.65966797, -2.7890625, 1.0888672, -0.22253418, 3.28125, 1.0830078, -0.20471191, 0.15039062, 0.7841797, -0.23352051, 0.8359375, -1.6318359, -2.1132812, 3.1191406, -0.032165527, -5.3710938, 0.0345459, 0.98779297, -1.4873047, 0.9921875, 0.35839844, -2.1757812, 2.3671875, -2.5332031, 1.3857422, -2.0097656, 1.9414062, 1.3896484, 1.1923828, -0.42578125, -4.3984375, -1.4755859, 0.3852539, 0.0070877075, 1.1171875, 2.3105469, -1.0771484, 1.0058594, 2.3085938, -0.48608398, -1.9707031, 1.4326172, 0.018371582, 2.4121094, 0.54589844, -1.8339844, -5.4101562, -1.3085938, 0.31958008, 1.7626953, -2.1542969, -1.1777344, -0.117248535, -0.53222656, -1.0283203, 0.31469727, -0.42382812, -0.6542969, 0.71240234, 0.82128906, -0.28881836, -0.61865234, 2.7363281, -1.7558594, -0.9604492, -1.0634766, 0.625, 1.8222656, 1.9384766, 1.9082031, -2.7148438, 0.57128906, 2.6464844, 2.3925781, 1.9658203, -0.43725586, -0.26635742, 2.8691406, -2.265625, 0.111083984, 1.8076172, 0.94140625, -0.88720703, 0.18554688, -1.9257812, 3.5703125, 0.86279297, -0.91259766, 0.033813477, 3.0859375, 1.5146484, -0.1081543, -0.28881836, -2.5664062, -1.0625, -2.1230469, 0.16723633, 1.6689453, -1.0488281, -0.79052734, 0.53125, -0.23303223, -0.023101807, -3.1074219, -2.1210938, -0.014526367, 0.18066406, 0.59033203, 0.58935547, -1.2978516, 3.1132812, -2.8496094, 1.6162109, 0.24084473, 0.026000977, -0.023956299, 2.3867188, -2.21875, -1.2626953, -0.0011091232, 0.11291504, 2.2636719, 1.2236328, -1.1240234, 1.0615234, 0.9355469, -1.7148438, 2.4394531, 0.5517578, 1.6621094, 1.8896484, -1.6982422, 2.4550781, -1.3554688, 0.9321289, 1.828125, 2.5175781, -0.37841797, -0.53466797, -0.3762207, 2.7851562, 1.1513672, -1.6748047, 2.2324219, 3.8046875, 0.87939453, 0.68603516, 1.2255859, 0.16369629, 0.5185547, -1.5029297, 0.3010254, -2.5449219, 2.5917969, 2.2675781, 0.27294922, -0.6425781, -2.0097656, 1.2675781, 2.3925781, -0.9536133, 0.30151367, -0.7416992, -1.1367188, -2.6152344, -2.0253906, 2.1777344, -0.86083984, -1.3867188, 1.6210938, -0.78271484, 0.93652344, 0.7319336, -0.21655273, -0.5395508, -0.31201172, -1.4814453, 0.5239258, 0.49291992, 1.3222656, 1.8945312, -1.5917969, 0.5415039, -0.30981445, -1.8564453, 2.0683594, -2.2617188, -3.4589844, -0.14697266, -1.1171875, -0.98779297, -2.7128906, -1.1582031, 1.4580078, 0.17590332, -0.67822266, 0.31713867, 1.5214844, 0.59521484, -1.9628906, 0.30737305, 2.1367188, -1.6210938, -2.9472656, 0.21130371, -0.5756836, -0.3017578, 2.4667969, -1.6738281, 0.7192383, -0.69091797, 2.1855469, -0.88134766, -0.38452148, -0.6586914, -1.3916016, 0.6147461, -1.8730469, -1.7246094, -0.47802734, 0.6435547, -0.43530273, 1.6552734, -1.0957031, -1.4345703, 0.017807007, -0.765625, 1.2177734, 0.37329102, 0.12658691, -0.47216797, -0.48828125, -0.14013672, -1.7109375, -3.1542969, -1.4736328, 1.6425781, 0.4741211, -0.10882568, -4.6484375, -0.2956543, -0.7919922, 0.31225586, -1.3710938, -0.45239258, 0.5107422, -2.1328125, 2.59375, -0.54003906, 0.47070312, 0.81347656, -0.14746094, -0.9189453, 0.27929688, 2.9511719, -0.33251953, -1.6162109, -0.33544922, -0.8613281, -0.07141113, -2.5410156, 1.3525391, -0.006603241, 0.45947266, 0.5136719, 0.026046753, 0.82373047, 1.3847656, -0.023132324, 2.9921875, -0.1541748, 0.4230957, -4.5195312, -0.7734375, 2.4355469, 2.4960938, 2.4628906, 0.7138672, 0.68359375, 0.8227539, 0.80126953, 0.05697632, -0.4921875, -2.1523438, 3.4707031, -4.0078125, -0.3190918, -1.0644531, -0.3708496, -3.8984375, 0.72998047, 0.6616211, 0.6669922, 3.5292969, -0.859375, 1.6191406, -1.1787109, -0.63720703, 1.2626953, 0.69970703, 0.9404297, -0.19091797, -0.17651367, -0.52001953, -1.1279297, 0.1005249, 1.2011719, 1.8710938, 0.105163574, 0.9628906, 1.0390625, -0.83203125, -0.08215332, -1.5449219, 1.2558594, 0.23950195, 1.8544922, -0.5932617, -0.18798828, -1.828125, -0.6635742, 1.4052734, 1.4697266, -1.6591797, 0.3605957, 2.9082031, -0.7036133, 0.66503906, -0.90185547, 0.62890625, -0.44067383, 1.1914062, 1.4082031, 0.82128906, 0.33618164, -1.9150391, -1.0771484, -1.6962891, 0.8847656, -0.46484375, 1.0146484, -0.5595703, -1.1552734, -1.7402344, -1.0947266, -1.6318359, 0.91015625, 0.24865723, 1.7587891, 2.8535156, 0.101379395, -1.1152344, 0.024139404, 0.7441406, 1.0439453, 0.38793945, -1.2880859, 0.12084961, 0.6713867, -0.6689453, -0.16467285, 0.8027344, 0.68603516, -2.8398438, -0.85839844, -1.1328125, -0.90722656, -1.0361328, -0.58691406, 0.24169922, -0.8173828, -0.6557617, 0.9526367, -0.5004883, 2.5195312, 0.7939453, -1.9365234, 1.34375, -2.8867188, -0.56689453, -0.49536133, -6.0859375, 1.8066406, -0.09851074, 1.3730469, 2.5429688, 0.2376709, 0.57421875, 2.3867188, 1.0957031, -5.0351562, -1.3183594, -1.53125, 1.1835938, -3.3105469, -1.1962891, 1.8378906, 3.5878906, 0.87597656, -0.19836426, -0.23144531, -2.2441406, -0.52246094, -0.46899414, -0.56884766, 1.7958984, 1.1884766, -0.22814941, -0.31420898, -1.5302734, 1.8515625, -0.24560547, -2.3320312, -2.0332031, 1.5273438, 1.9179688, 0.18310547, -1.5869141, 1.6054688, 2.375, -0.80810547, -2.1640625, -0.22216797, 3.7304688, -0.5361328, -2.8574219, -2.1152344, -0.8730469, 0.02432251, 0.049957275, -0.27416992, 0.64697266, -1.1240234, 0.7807617, -0.22351074, 0.64746094, 1.6425781, -0.9394531, -2.6933594, -0.09710693, 0.54052734, -2.9160156, -0.30078125, -0.84814453, 0.8598633, -1.6318359, -0.012542725, -1.9550781, 1.8779297, 0.67626953, -2.4570312, -3.3652344, 0.93359375, -1.9345703, 1.5625, 1.046875, -1.3828125, -1.1113281, 1.046875, 0.8515625, -0.6875, -1.3164062, -0.91308594, -2.5566406, -0.70751953, 2.2871094, 1.65625, -1.7675781, 0.07366943, 0.39038086, -1.3017578, 1.421875, 2.1679688, -2.2636719, -1.4921875, -0.17895508, -0.97753906, 3.5039062, -2.6230469, 0.8125, -0.41601562, -0.3322754, -3.8671875, 0.94189453, 1.0341797, 0.5595703, -1.3886719, 1.5615234, 2.4609375, 0.4519043, 0.5878906, 0.6855469, 0.42211914, -0.4873047, 0.6953125, -0.015548706, 1.8525391, 1.6425781, 2.8984375, 1.8603516, 2.6308594, 0.0021953583, -0.72216797, 0.33374023, -1.5224609, 1.6396484, 0.010810852, 0.6748047, -2.1308594, -0.0947876, -0.9589844, 0.5571289, -0.27856445, -2.0976562, 1.9160156, 2.78125, 0.018096924, -0.25219727, -0.94873047, -1.2626953, -1.3662109, -2.7636719, -2.1464844, 0.58251953, -2.1015625, 0.8388672, 0.4194336, 0.048339844, 0.8413086, 1.3544922, 2.3222656, -0.6123047, -0.6015625, 0.11651611, -1.0595703, -2.8339844, -0.62402344, -2.3886719, -1.6962891, 1.2402344, 1.5322266, 3.2128906, 0.0635376, 0.5415039, -1.453125, 0.67089844, -1.3857422, 0.050689697, 2.3671875, -0.5419922, -0.54589844, 3.5546875, -0.9838867, -1.3896484, -0.56347656, 0.15588379, -0.8383789, 1.546875, 1.1962891, -0.5888672, -1.3320312, 1.1103516, -2.4296875, -6.6875, 0.3466797, 2.2304688, 2.1660156, 0.8461914, -1.359375, -1.5742188, -0.019485474, -0.69433594, -0.6040039, -2.3808594, 1.7558594, -2.4394531, -1.1074219, -1.2597656, -0.31201172, 1.1513672, -0.78515625, 2.0820312, -2.671875, 0.13671875, -4.1523438, -0.81347656, 0.69677734, 0.9223633, -0.82373047, -0.4260254, -3.0625, -0.011993408, -0.48168945, 1.3320312, -3.5546875, 0.52001953, -2.3945312, 2.1835938, -0.1496582, -1.4521484, 0.6044922, -0.14990234, 0.50097656, 0.5361328, 2.6875, 1.3554688, -0.73339844, -0.7182617, -2.171875, 0.18261719, -0.5078125, -0.40893555, 0.7285156, 0.6220703, 2.8671875, 2.4785156, -1.9013672, -2.7578125, -2.3417969, -0.74365234, 0.16625977, -1.8388672, 2.875, -0.71533203, 2.0039062, 1.1337891, 0.03869629, -0.24169922, -0.95410156, -1.6767578, -0.35766602, 1.4023438, -2.0566406, 3.609375, -1.1435547, 0.011146545, -1.3447266, -1.1992188, 0.88623047, 1.8671875, -0.7480469, 1.1806641, -0.35180664, 0.90722656, 0.0014677048, 0.6743164, 3.0800781, 1.1044922, 2.2011719, -1.8759766, -0.5854492, 1.3476562, -2.3027344, -0.96728516, 1.7041016, -1.3896484, -1.53125, -0.06726074, -0.3918457, -4.1367188, 0.84228516, 1.1845703, 0.013450623, -1.3652344, 0.87597656, 0.2434082, -3.3867188, 0.4543457, 0.20446777, -3.5859375, -0.74316406, 3.9199219, 0.12573242, 0.4345703, -1.0214844, 3.5390625, -0.94189453, 1.1171875, -0.5126953, -1.3691406, -1.3486328, -0.81103516, 0.08099365, -0.19836426, -0.025100708, -1.4130859, 0.5493164, 1.3613281, 0.16638184, 0.68408203, -0.5029297, 1.8710938, 2.0371094, 0.078430176, 3.8300781, 2.0917969, 1.5761719, 2.1953125, 1.3935547, 2.4960938, 2.4140625, 0.1751709, -0.46166992, -0.15270996, -1.515625, 1.2001953, -1.9570312, 1.9023438, -1.1435547, 1.1132812, 1.3876953, -0.17895508, 1.5351562, -5.171875, 0.16540527, -1.9199219, -0.09906006, -2.9140625, 0.68603516, -0.8598633, 0.3154297, -0.3408203, 1.8300781, -1.203125, 2.5566406, 0.17297363, 0.41601562, -0.28930664, 2.4023438, -0.87841797, -0.55322266, -0.63623047, -0.5600586, 0.39868164, 1.0654297, -1.1689453, 0.65771484, 0.9140625, 1.8935547, -0.28735352, -0.8276367, -0.052886963, 0.75634766, -0.7451172, -1.7939453, 2.7695312, 1.4755859, 0.80566406, 3.6386719, 0.625, 0.27441406, -2.8867188, 1.3710938, -1.3242188, -0.12658691, 0.3544922, -4.3164062, 1.6142578, -0.8930664, -1.6503906, -2.3476562, 0.54248047, 2.6132812, -0.87158203, 1.6269531, 1.2988281, -0.15856934, -0.28100586, 0.83203125, -1.8681641, 2.3398438, -0.84033203, -0.14990234, 2.0644531, 2.0175781, 0.84277344, -0.6074219, -1.3974609, 3.8515625, 0.19116211, -0.49414062, 0.171875, 0.58984375, 1.3222656, 0.9301758, -0.83496094, -1.2148438, 1.8125, 1.1162109, -0.47436523, 0.03164673, -1.2480469, 0.3190918, -0.8847656, -1.2294922, -0.24169922, -2.3925781, 0.7026367, 1.5693359, -1.2802734, -0.02128601, 1.5761719, -2.0234375, 2.1308594, 2.7265625, -0.44921875, 0.07891846, -0.96435547, 1.8779297, -3.1523438, 1.3828125, 1.2519531, -1.6855469, -0.7348633, -2.5996094, -0.44580078, 0.18969727, -1.5654297, -0.09863281, 0.81103516, 0.12573242, -0.63916016, -1.6210938, -1.3730469, 1.4238281, 4.015625, 1.3662109, 0.045196533, -0.21618652, -0.36157227, 2.6210938, -0.40405273, -2.75, 0.9189453, 1.9873047, 1.3564453, 2.1308594, -1.1914062, -2.1679688, -0.17700195, -2.1269531, 2.4921875, -0.04296875, -2.5117188, 0.9428711, 2.3535156, 1.1865234, 1.4550781, -0.14892578, 0.23876953, 0.07562256, 0.6723633, -2.0175781, -0.4946289, 1.2548828, 0.6904297, 0.13806152, 4.5429688, 1.5117188, -1.0761719, -0.08477783, 3.6777344, -1.359375, -1.7880859, 0.49609375, -1.6777344, 0.107177734, 2.109375, 0.88134766, 1.0927734, 0.46240234, -1.6611328, -2.7578125, 1.6171875]}, "B0098HR0PY": {"id": "B0098HR0PY", "original": "Brand: Weber\nName: Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required\nGrill dimensions: Lid Open \u2013 63\" H x 50\" W x 32\" D | Lid Closed \u2013 45.5\" H x 50\" W x 24\" D | Primary cooking area \u2013 360 square inches | Warming rack area \u2013 90 square inches | Total cooking area \u2013 450 square inches/20.4\u201d W x 17.5\u201d D | Weight \u2013 113.8\nHeavy-duty caster wheels for easily moving your grill on grass or a patio\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system\n", "embedding": [-2.0527344, 0.6064453, 1.7460938, -1.4257812, -1.7792969, 1.3652344, -0.9692383, -0.61572266, 1.4658203, 1.8535156, 2.4042969, 0.32739258, 0.9902344, -4.515625, 0.87939453, 0.6777344, 1.7558594, 2.0820312, 1.4091797, 0.08337402, 1.2392578, 0.6113281, 1.1445312, -0.5839844, 1.2392578, 1.4082031, 3.3984375, -4.78125, -0.5410156, -3.1699219, 1.2744141, 0.8417969, -0.015434265, 2.2304688, -3.3046875, -1.8564453, -3.515625, 1.7050781, -3.3183594, 0.6147461, -0.5053711, -1.1621094, 1.2861328, -0.20654297, -1.3203125, 0.84228516, 0.66503906, 0.9746094, -0.23034668, -0.8730469, 2.8691406, 0.8979492, -0.05227661, 1.3759766, -0.89404297, 1.78125, 0.9794922, -1.9296875, 1.1806641, 0.28735352, 2.7519531, -0.37573242, -2.4179688, -1.5957031, -1.3408203, -0.1274414, 0.2993164, 0.2590332, -0.53125, -0.37719727, 3.9433594, -1.2255859, -1.3759766, 1.7041016, 0.93359375, -2.4023438, -1.8828125, 2.109375, 1.6669922, -1.8925781, -0.46411133, 2.6972656, 1.6435547, -1.5742188, -0.5698242, 0.8955078, 1.5595703, -1.5771484, 1.4716797, 1.0078125, -0.020812988, 1.0957031, -2.3359375, -2.9355469, 1.4228516, -0.46435547, 3.15625, 1.4804688, -0.8696289, 0.49658203, -1.7910156, 1.5400391, -1.7949219, -1.5908203, -2.8046875, -0.69970703, 1.3105469, 0.20678711, -1.7451172, -0.7446289, -1.46875, -0.30126953, 0.089660645, 0.8378906, 0.34033203, 1.5478516, 0.3857422, 2.9707031, 0.13049316, 0.73095703, 2.9101562, -0.5229492, -0.59521484, 0.14941406, -1.5791016, -1.2216797, 0.30517578, 2.4609375, 3.1660156, -1.0546875, -1.4316406, -0.19689941, 3.1464844, -0.37280273, -0.29882812, -1.0224609, -0.7207031, -0.95751953, -3.2890625, -0.36816406, -1.9306641, -0.97216797, 1.0390625, -1.7587891, -3.3710938, 0.3815918, 0.44702148, -0.60839844, 0.8955078, -0.7480469, -0.9921875, -0.93066406, -1.4589844, -1.8330078, 1.6621094, 0.63623047, -0.49975586, -0.050750732, 2.8632812, 2.9355469, 2.1796875, -1.8349609, -1.6982422, -0.5419922, 0.97753906, 0.26586914, 2.0136719, 0.014770508, -0.8964844, 1.4941406, 1.0703125, 0.53271484, 0.5180664, 1.1757812, 1.3408203, -2.6035156, -0.984375, 1.5449219, 0.22277832, -0.92578125, -2.2597656, -1.7304688, -0.29736328, 0.6118164, 0.3696289, -0.12384033, -0.8256836, 0.30078125, 1.3232422, -1.4990234, 0.8046875, -0.16687012, 1.0429688, -0.15441895, 2.0625, -1.9433594, -1.4707031, -1.9443359, 1.1074219, 0.67822266, -0.96728516, -1.4082031, 1.0205078, 0.5283203, -1.1220703, -1.7070312, -0.921875, -2.0625, -0.038238525, 1.6347656, 1.2685547, -1.3623047, 1.421875, -1.0283203, 1.1484375, -0.26000977, 3.046875, 0.9980469, 1.2666016, 1.5634766, -1.4921875, -0.48388672, 1.4267578, 3.0957031, 1.0126953, 0.7714844, -0.23669434, 1.1835938, -3.3359375, -0.94921875, 3.25, -0.6074219, 0.13989258, 1.4199219, 0.78466797, 3.0625, -0.48754883, 0.44995117, -0.50146484, 0.40429688, 0.91748047, 0.63964844, -2.6113281, -1.0029297, -0.1159668, -0.7895508, -1.8408203, 2.5390625, 1.1103516, -0.2590332, 1.3720703, 0.82128906, 2.4667969, 2.8789062, 0.08758545, 1.1787109, -1.390625, 2.3808594, 0.2529297, -1.2050781, -0.21533203, 0.51123047, -0.0053520203, 0.37158203, 1.1904297, -1.2099609, 1.2099609, 1.8427734, -1.3964844, -1.4589844, 0.53027344, -0.59765625, 0.107421875, -1.0546875, 2.703125, 0.3630371, -0.9169922, 2.0019531, 0.6489258, 0.5756836, 0.85253906, -1.6611328, 1.9296875, -3.9257812, 0.09234619, 0.30322266, 1.7373047, -2.28125, -1.7080078, -0.13330078, 4.2890625, -1.0410156, -2.5234375, 3.4726562, -1.7353516, 0.6123047, 2.78125, 1.0654297, -0.024932861, 1.5498047, 2.6601562, -0.6738281, 1.0244141, 1.8007812, -0.13232422, -1.1845703, 1.5507812, -3.1210938, 0.032104492, 1.0800781, -1.3027344, -0.72509766, -0.6796875, 0.93066406, -2.1171875, -2.2421875, 2.3769531, -2.8632812, -0.6616211, -1, 1.5029297, 0.14501953, -1.6728516, 0.014480591, -0.25097656, -0.47924805, -0.75390625, 1.6152344, 0.39575195, -1.7949219, -0.60009766, 0.25756836, 0.06933594, -2.4316406, -2.4609375, -1.7744141, -2.4296875, -3.0117188, 3.1816406, -2.5839844, -0.4169922, 0.42797852, -2.7792969, 0.07373047, -0.3388672, -2.8886719, -0.2548828, -0.22009277, -0.17138672, -1.0400391, 0.76904297, 0.89160156, -0.8334961, -2.734375, 0.67822266, 0.24829102, 1.4589844, -0.18225098, -1.6572266, 0.1295166, 0.9375, 1.0976562, -0.7470703, 1.3642578, 2.1269531, -1.6894531, 0.40283203, -4.3476562, -1.3349609, -2.5195312, 0.8544922, -1.2285156, 1.1728516, -3.9140625, -2.4511719, -1.4716797, -0.40844727, 4.328125, -0.3857422, 2.4199219, -0.32861328, -0.17077637, 1.0029297, -2.03125, -2.3144531, 0.6982422, 1.6337891, -1.6572266, -1.6865234, -2.9628906, -1.171875, -3.3691406, -1.0517578, 0.5180664, -0.7290039, -0.36132812, -0.51220703, -2.1875, -2.1914062, -1.3623047, -0.06439209, -0.7607422, -0.9091797, -2.59375, -1.1123047, -2.0175781, -0.64501953, -1.4990234, 1.6123047, -1.09375, 0.96533203, 0.89208984, -0.22631836, 1.9472656, -2.2207031, -3.9980469, 2.8828125, 1.2099609, -3.0429688, 1.8388672, -2.6054688, -1.4355469, -2.6582031, -0.27539062, 2.3359375, 1.8320312, 1.3027344, 1.2138672, 2.0078125, -0.89746094, -1.2636719, 0.5019531, -1.0664062, 1.8896484, 3.9785156, -3.3789062, -0.19555664, 0.7055664, 0.9970703, -1.9658203, -1.3193359, 2.4003906, 2.0957031, 3.1601562, 1.8427734, 1.6015625, -1.5058594, -1.8564453, 2.15625, 1.5742188, -0.87939453, 0.54541016, 0.5644531, 1.7548828, -0.81396484, 2.4550781, 1.6904297, 0.4074707, 2.25, 1.8554688, -0.04559326, -0.40356445, -0.046325684, -0.8178711, 1.3857422, -1.2138672, 1.6025391, -0.6660156, 0.29492188, -0.86035156, -0.2758789, -0.7192383, 0.18103027, -1.6972656, 3.140625, 0.61572266, -0.86083984, 0.3022461, 1.9267578, 1.8574219, -0.22436523, 0.25048828, -1.1982422, -1.0859375, 1.4296875, -2.6035156, 0.74121094, -3, 1.0332031, -0.34155273, -1.7255859, 1.4873047, 3.5859375, -2.7714844, -1.9130859, 1.5751953, -0.6669922, 0.0056114197, 2.7402344, 1.9472656, -1.5791016, 1.7539062, -2.59375, 1.5048828, 0.32885742, 0.16369629, -2.8183594, -0.14990234, 1.9277344, -0.75, 0.76708984, 2.0527344, 0.27856445, -2.8085938, 0.05218506, -2.3105469, -1.4853516, 1.5830078, -2.3769531, -1.3017578, 3.0859375, -0.09136963, -0.062042236, 0.72998047, 3.6035156, -1.9599609, 0.63623047, 1.9873047, -2.3125, 0.5932617, -3.9824219, -3.6875, 0.40966797, -1.8105469, 0.8095703, 1.7724609, -0.1763916, 0.6044922, 3.3984375, 1.0351562, -2.5585938, -1.1835938, -0.90283203, 0.10015869, -1.0224609, -0.33642578, 0.6777344, -1.0888672, -3.15625, -2.9316406, -0.69970703, 0.2487793, 1.6191406, 2.2910156, -3.7246094, -0.13269043, -1.8144531, -1.7421875, -2.5839844, -0.026275635, 1.6279297, -1.3613281, 0.23266602, -3.3867188, 1.5400391, 1.2392578, -1.2099609, 1.6806641, 1.9716797, 0.36132812, -2.0195312, 3.2304688, 0.39916992, 2.0566406, -1.4570312, -2.75, -0.6035156, 0.69384766, -0.5253906, -0.65771484, -0.19665527, 0.8076172, -1.3408203, 2.28125, 1.90625, 1.390625, 0.7338867, 0.105285645, -3.0839844, 1.1455078, -1.9755859, -1.1376953, -1.875, -0.56396484, 0.3798828, -1.6142578, 0.15991211, -3.5351562, 1.9599609, -1.3242188, 0.8417969, -3.8789062, 3.3222656, 3.0683594, 3.7070312, 2.5019531, -1.3535156, 0.03237915, 0.0803833, -0.37719727, -1.640625, 0.9511719, -0.1932373, -0.5385742, 2.9550781, 1.1435547, -1.9814453, -0.84716797, 0.5439453, -2.0390625, -0.80029297, -3.0898438, -0.5419922, -1.7324219, -0.048431396, 0.9506836, -0.6010742, 3.0097656, -1.1474609, -0.9213867, -0.9975586, 0.57958984, -1.5419922, 0.8149414, 1.4599609, -0.21911621, -0.6875, 1.1767578, 0.7451172, -0.56933594, 1.2636719, -2.1914062, 1.5136719, -1.0517578, 0.3100586, 2.1054688, 0.33666992, -0.5371094, -0.6010742, 1.1806641, 3.0214844, 1.5751953, 2.6777344, 0.17150879, -2.9433594, 2.2714844, 1.9042969, -3.1640625, 0.82421875, 1.2294922, 1.4482422, 2.4667969, 0.4777832, -3.8125, 0.70166016, 0.43017578, 0.024932861, 0.23364258, -1.6210938, -0.0814209, 2.453125, -1.8623047, -1.1025391, -0.7939453, -0.76708984, 0.50146484, 3.1757812, 0.75, -1.3105469, 1.3300781, 2.4414062, -1.3007812, -2.234375, 1.2236328, -1.1269531, 0.5756836, -3.4648438, 0.30297852, -2.4746094, 0.047576904, 1.828125, 1.2871094, 1.0703125, 0.35766602, 2.1777344, -2.7773438, -1.1210938, -2.5957031, 1.4550781, -1.6464844, -0.2076416, 0.5600586, -2.0195312, 0.3305664, -3.0820312, -1.5332031, 0.023651123, 2.8242188, 1.4492188, 0.54541016, -0.87353516, 1.1494141, -1.3369141, -2.5527344, -1.0791016, -0.2758789, 0.29418945, 1.4921875, 2.3613281, -0.38110352, 1.2167969, 0.089416504, 0.8076172, -1.609375, 0.6230469, -0.5756836, -1.0859375, -0.21020508, -0.7241211, -1.4169922, -0.41748047, 0.8564453, 1.0986328, 0.7763672, -2.7929688, -0.36328125, 0.20910645, -1.2900391, 0.5317383, 1.9335938, 1.3466797, 0.18054199, 0.059143066, 1.3935547, -1.203125, 2.2285156, -2.96875, -0.52978516, 1.3388672, -1.6669922, 1.9433594, -0.98779297, -1.2714844, 0.57958984, 0.7192383, 2.3359375, 1.2490234, -1.4521484, -1.2001953, 0.63671875, -0.24707031, -1.3789062, 0.41455078, -0.5878906, 0.87060547, 1.1904297, -0.79541016, -0.90283203, -0.26123047, -1.7744141, 1.1435547, -1.8662109, -1.1103516, -1.3710938, 0.028869629, 0.8569336, 0.10089111, -1.3095703, 2.5859375, -0.9658203, -2.390625, 1.1152344, 0.17993164, 4.125, 3.3242188, -0.8701172, -1.0205078, -1.6484375, 1.3642578, 2.7285156, 0.10852051, -1.1904297, 0.8930664, -0.7939453, 0.43408203, -0.42138672, 3.3515625, 2.2890625, -0.22802734, -0.9370117, 0.4086914, 3.5058594, -1.5419922, 1.9677734, 0.9716797, 2.390625, -0.35839844, 3.2402344, 0.61816406, -3.5429688, 1.3798828, -1.9580078, 1.7314453, -1.7949219, -1.140625, -1.1884766, -0.5185547, -1.9394531, -2.1933594, -1.515625, -2.6503906, 1.7490234, 1.03125, -2.09375, -1.0791016, 0.8442383, -0.25805664, 3.7890625, 0.5449219, 1.7910156, -0.3347168, -1.3857422, -1.2568359, 0.09484863, -0.011581421, -3.7519531, 1.7041016, 1.3486328, -0.74365234, -2.0234375, 1.8564453, 1.9765625, 1.109375, -0.23010254, 2.4492188, 2.5253906, 1.4501953, 1.9785156, 0.3100586, 2.1464844, 1.1943359, -0.95166016, -0.21520996, 2.2519531, -0.12390137, 0.50439453, -1.2773438, 2.0722656, -1.2099609, -1.6884766, -0.5048828, 0.026641846, 1.8017578, -2.125, 0.26831055, 0.85498047, 3.0117188, -0.8652344, -1.0195312, -0.8676758, -1.40625, 1.1357422, 0.0892334, 2.6875, 0.63134766, 0.67089844, -1.8935547, -0.56640625, 2.2128906, -3.9277344, 1.7900391, 0.43066406, -2.1738281, -1.703125, -0.9057617, 2.3359375, 1.9130859, -0.5283203, 0.8100586, 3.9980469, 0.2475586, 1.5361328, -1.9707031, -0.42626953, -1.3642578, 3.109375, 1.1220703, -2.1601562, -0.9067383, -0.6875, -4.2929688, -2.6035156, 3.6054688, 2.2617188, 1.8183594, 1.6054688, -1.6005859, 3.3984375, 1.1416016, 1.8945312, -0.90478516, -1.0732422, -1.6308594, -3.3222656, 0.4272461, 0.5756836, -0.1159668, 1.4433594, 0.22644043, 1.3525391, 1.1279297, 1.8554688, 1.2441406, 0.13293457, 2.0390625, 3.0195312, 0.16381836, -1.2695312, 0.14526367, -1.4736328, -2.2890625, -2.1777344, 3.09375, 1.4150391, 0.3232422, 0.5986328, -1.1513672, 0.11260986, -1.7304688, 0.5864258, 0.25195312, -2.4082031, -1.2304688, 1.2861328, 2.7695312, -2.5625, 0.86035156, 1.8789062, 2.125, -1.0546875, 2.0859375, 2.0761719, -0.43017578, 0.9042969, 0.9033203, 0.8334961, 1.46875, 0.7504883, 0.09918213, -1.1162109, -0.32983398, 0.8828125, 1.5009766, 0.69140625, -0.027130127, 0.008895874, -1.0292969, -0.77490234, -0.16369629, 0.20251465, 1.3984375, -1.5498047, 2.5898438, 0.5175781, -0.89501953, 1.5615234, -0.33251953, 0.67822266, -2.3066406, -2.3222656, -0.5654297, -0.77001953, -0.8076172, 1.9492188, 4.8125, 1.3642578, -0.29663086, -1.5361328, -3.0390625, -0.55029297, -3.1582031, 2.6328125, -1.3828125, -2.1269531, -0.9082031, -0.6689453, 2.1289062, -0.8154297, -0.23034668, -0.38305664, -2.0117188, 1.6757812, -0.09460449, 1.0566406, 0.3684082, 0.26293945, 2.2109375, 3.1269531, 2.1464844, 0.5805664, -0.25146484, 2, -0.45288086, -3.2792969, -1.0732422, 0.14648438, -0.4765625, 0.33813477, 0.6616211, 1.9365234, 0.7709961, -0.78515625, 0.6694336, -2.6328125]}, "B07H636NBG": {"id": "B07H636NBG", "original": "Brand: Weber\nName: Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "embedding": [-1.1699219, -0.15209961, 2.0449219, -0.33520508, -1.0214844, 1.2402344, -0.008766174, -1.3066406, 0.8261719, 0.8095703, 1.4970703, -1.1660156, 1.6015625, -3.09375, 0.2253418, 0.2578125, 2.3613281, 1.578125, -1.4716797, 0.44360352, 1.6767578, -1.1757812, 0.9472656, -1.3828125, 0.99316406, 1.4716797, 4.1992188, -6.5429688, -0.7475586, -0.94970703, 2.4003906, 1.0273438, 1.3251953, 2.0488281, -2.6113281, -1.4638672, -2.1777344, 1.7285156, -2.609375, 1.7207031, -0.69921875, -0.7207031, 1.4013672, -0.8149414, -0.98876953, 1.2158203, 0.6455078, 1.1240234, -1.9316406, -0.003929138, 4.75, 1.2978516, -0.30444336, 0.9321289, -0.22155762, 2.4667969, -0.55371094, -0.79785156, 2.4199219, 0.40820312, 1.65625, -1.2255859, -2.7851562, -1.5146484, -0.94628906, -0.22375488, 0.3935547, 1.0722656, 0.6982422, -0.77490234, 4.4492188, -0.38183594, -2.1523438, 0.049438477, 0.053985596, -2.46875, -1.9775391, -0.5473633, 0.6621094, -1.7275391, -2.1015625, 2.4003906, 1.8085938, -3.4824219, -0.109436035, 1.3046875, 1.4501953, -2.3964844, 1.4658203, 0.93115234, 0.04901123, 0.4934082, -1.7021484, -3.0214844, 1.1933594, -0.7426758, 1.6699219, 1.1845703, -1.0966797, 1.9169922, -2.0039062, 1.0302734, -1.7470703, -1.1845703, -4.3710938, -2.1503906, 1.9951172, -0.06738281, -2.1054688, -0.9091797, -1.7558594, 0.38964844, 1.3144531, 1.7558594, 1.2021484, 1.1240234, -0.18688965, 1.53125, 0.7832031, 1.1914062, 3.4179688, -1.1103516, -0.13671875, -1.5029297, -1.5644531, -1.6591797, 0.37426758, 0.35180664, 4.0039062, -2.4648438, -0.46557617, 1.0566406, 4.5820312, 0.7832031, -1.8134766, -1.8408203, -0.8671875, -0.9277344, -3.0019531, 0.7402344, -0.16320801, -0.12030029, 0.98876953, -0.7480469, -3.5449219, 0.4243164, -0.88916016, 0.9472656, 0.7207031, -1.3974609, 0.49072266, -1.1054688, -1.5322266, -1.0087891, 1.8408203, 0.69970703, -0.76171875, 0.76904297, 2.6464844, 2.6445312, 2.2890625, -0.8203125, -0.8964844, -1.7695312, 1.5429688, 1.8613281, 0.96777344, 1.578125, -0.35205078, 2.109375, -0.38305664, -1.2021484, -0.48388672, 0.45703125, 1.8056641, -2.6386719, -0.7363281, 0.54833984, -0.93896484, 0.7128906, -0.6040039, -1.3271484, 0.7519531, -1.15625, 0.5097656, -0.00843811, 0.14648438, 0.55810547, 2.4316406, -1.2724609, 0.94677734, -0.49536133, 1.8066406, -0.19091797, -0.15893555, -1.6015625, -1.0263672, -0.35791016, 2.1679688, -1.4111328, -0.61279297, -0.5864258, 0.7402344, 1.1640625, -1.2714844, -2.8515625, -2.0664062, -2.4023438, 0.9057617, 1.2617188, 1.9150391, -0.57666016, 0.43652344, -1.8876953, -0.73339844, -0.9995117, 2.7929688, 1.8574219, 0.39624023, 0.67041016, -0.84716797, -1.6572266, 0.3876953, 1.1240234, 0.3046875, 1.1689453, 1.0400391, -0.9379883, -3.2753906, -0.91748047, 1.8232422, -0.33789062, 0.1616211, 0.77001953, 0.63134766, 2.8261719, 1.2070312, -1.5888672, 0.09991455, 0.41625977, -1.0136719, 0.64208984, -2.6679688, -1.6103516, -0.5839844, -0.052825928, -1.5517578, 2.7714844, 0.4465332, 1.0683594, 0.6611328, -0.9301758, 0.9267578, 0.1887207, 0.5541992, 0.80371094, -1.2197266, 2.0292969, 0.7685547, -2.8867188, 1.6386719, 0.65966797, -0.10333252, -0.1361084, 0.74365234, -1.3027344, 1.6591797, 2.4433594, -1.2587891, -1.75, 1.6298828, -0.29736328, 0.5214844, -0.47802734, 2.5898438, 2.234375, -0.27026367, 2.7871094, 0.25439453, 1.7158203, -0.49389648, -0.5107422, 0.8745117, -3.1699219, -0.027572632, 0.7504883, 0.96484375, -2.0429688, -1.6904297, 0.5288086, 3.5292969, -0.7451172, -2.7109375, 2.7714844, -1.7929688, 0.8408203, 1.8085938, -0.37304688, -0.11431885, 1.0820312, 1.8007812, -0.38623047, 1.5869141, 0.72021484, -0.7573242, 0.35766602, 0.8510742, -2.3769531, 0.4260254, 1.2548828, -1.7490234, -1.0478516, -2.03125, 1.1367188, -2.3320312, -0.87890625, 1.9384766, -3.2128906, 1.1601562, -1.4941406, 2.4746094, 0.38232422, -2.6757812, -1.0595703, -0.7861328, 0.75878906, -0.9946289, 0.69921875, 0.5883789, -2.8242188, 0.20581055, -0.53466797, -0.26586914, -2.5644531, -1.1376953, -1.9667969, -1.515625, -3.6191406, 1.9033203, -0.5029297, -0.18322754, 1.46875, -1.6171875, 0.51123047, 0.63134766, -2.5078125, 0.08477783, -0.19250488, -0.24963379, -0.89746094, 0.90966797, 0.6381836, -1.2919922, -2.2578125, 0.32373047, -2.1464844, 1.3320312, -0.8178711, 0.08807373, 1.3876953, 1.4716797, 0.8466797, 0.27954102, 1.75, 1.8828125, 0.4580078, 1.9404297, -2.5683594, -0.6796875, -3.640625, 1.2636719, 0.20739746, 1.3886719, -4.078125, -1.9785156, 0.22753906, -1.8515625, 4.2773438, 0.9633789, 1.0302734, 0.28125, 0.3696289, 1.6191406, -1.9443359, -1.4492188, 0.34399414, 0.9892578, -1.5615234, -0.7109375, -2.2109375, -1.6914062, -1.6943359, 0.76220703, 0.5629883, -1.0654297, -2.8066406, 0.120666504, -2.453125, -0.3461914, -0.47729492, 0.19677734, -0.3869629, -1.9111328, -1.6533203, -0.10681152, -1.8154297, -0.5913086, -0.9580078, 1.2011719, -0.00497818, 0.22741699, 1.3642578, -1.8759766, 1.8388672, -0.9482422, -4.6210938, 2.2695312, -0.69433594, -2.6191406, 2.765625, -2.8457031, -1.4345703, -4.015625, 0.0579834, 2.5078125, 2.1152344, 0.003900528, 0.34448242, 1.6123047, -0.78466797, -1.1240234, 0.7783203, -2.0742188, 0.4724121, 3.1855469, -2.2617188, -0.9926758, 0.86279297, 0.86376953, -2.0234375, -1.8623047, 2.7597656, 2.7148438, 2.1445312, 1.0341797, 1.8691406, 1.6464844, -1.6669922, 0.60791016, 0.69433594, -0.47314453, 0.828125, -0.30664062, 0.27294922, -1.6210938, 2.0273438, 0.8359375, 1.5087891, 0.87060547, 1.8164062, 1.4033203, 0.5073242, -0.7319336, -0.17590332, -0.10998535, -0.85595703, 2.5585938, -2.015625, -0.27294922, 0.07849121, -2.109375, 0.9091797, -0.27563477, -1.5224609, 2.8359375, 0.017562866, -1.8691406, -0.048736572, 2.2070312, 2.0839844, 0.65771484, -0.40551758, -2.0136719, -0.92285156, 1.8828125, -1.6777344, 0.07067871, -1.6523438, 0.5317383, -1.46875, -3.0683594, 1.5, 3.7519531, -1.2578125, -1.6113281, 0.85839844, -1.4638672, -0.7705078, 2.1308594, 1.0605469, -1.9365234, -0.3857422, -2.2109375, 1.5341797, 0.3449707, -0.7578125, -1.109375, -0.09375, 0.4555664, -0.46435547, 1.6210938, 1.6025391, 0.105041504, -1.5703125, 1.2285156, -4.15625, -1.9785156, 0.41748047, -2.3398438, -1.7099609, 2.9472656, 0.39819336, 0.69140625, -0.35742188, 4.0859375, -0.9970703, 0.68896484, 2.1660156, -2.7402344, 1.2070312, -3.9511719, -2.9140625, -0.47802734, -1.1181641, 0.31958008, 1.5869141, -0.171875, 0.44091797, 2.6582031, 1.1826172, -2.40625, -0.6645508, -1.0390625, -0.35791016, -0.34033203, 0.2722168, -0.40722656, -0.6152344, -2.6835938, -2.4609375, -1.3808594, -0.7216797, 0.12866211, 3.5253906, -3.3496094, 1.0126953, -0.38452148, -1.0244141, -1.8847656, -0.37841797, 1.9638672, 0.65478516, 0.98779297, -2.7285156, 0.3930664, -0.026184082, -1.2392578, 2.4960938, 1.984375, -0.99853516, -2.4003906, 1.5878906, 1.6630859, 2.9628906, -0.7207031, -2.5292969, -0.21594238, 2.4238281, 1.1357422, -1.4775391, -0.08526611, 0.7739258, -1.6025391, 0.9057617, 0.87109375, 1.6796875, 1.953125, -0.0925293, -2.59375, 0.8886719, -0.46020508, -0.17089844, -1.5224609, 0.28344727, 1.5878906, -1.3085938, 0.48510742, -1.7783203, 3.1660156, -1.5546875, -0.6948242, -4.390625, 1.9345703, 3.5214844, 2.8886719, 2.4980469, -1.5429688, 0.6567383, 1.2285156, -0.44873047, -0.73779297, 0.79541016, -2.1542969, -0.70654297, 2.6386719, 0.37109375, -2.1640625, -1.0332031, 0.921875, -2.1601562, 0.2932129, -2.0742188, -0.80615234, -0.62353516, 0.2932129, 1.6474609, -0.5161133, 3.6835938, -1.3994141, -0.9628906, 0.9013672, 1.8408203, 0.0982666, 1.2548828, 0.17578125, 0.77783203, -0.7138672, 1.1425781, 1.7880859, -0.67626953, 1.4501953, -1.2089844, 0.14135742, -2.4550781, 0.34692383, 1.6064453, 0.82128906, -0.40649414, -0.24035645, 1.2412109, 2.2207031, 2.5117188, 2.21875, 1.8007812, -2.4042969, 2.7207031, 0.8339844, -3.2304688, 2.3359375, 1.2607422, 0.921875, 2.0507812, 2.0625, -3.3496094, -0.113098145, 2.2792969, -0.25170898, 1.2265625, -1.1572266, -0.6557617, 2.3203125, -2.1191406, -1.6611328, -0.61328125, -0.7475586, 1.1191406, 0.71484375, -0.14819336, -2.0292969, 1.0566406, 2.4960938, -1.4248047, -2.7128906, 1.5791016, -0.7138672, -0.04446411, -1.7871094, -1.0087891, -1.2304688, -0.37060547, 2.9570312, 2.3164062, 1.2265625, -0.5126953, 1.5371094, -1.2871094, -0.5258789, -2.3828125, 2.1171875, -1.8144531, -1.8105469, 0.34936523, -2.5859375, 0.11505127, -2.2441406, -1.7460938, -0.27929688, 1.6035156, 0.8828125, 0.58251953, -0.84765625, 0.3347168, -1.6191406, -2.1191406, 0.020324707, 0.17028809, 0.06951904, 0.5800781, 2.0996094, -1.3320312, -0.3876953, -0.57958984, -0.10620117, -1.6142578, 0.36914062, -0.91503906, -0.9350586, -1.1357422, -0.55322266, -1.6425781, 1.2011719, 2.1230469, 0.22668457, 1.1269531, -3.0253906, -0.13769531, 0.46801758, -0.5209961, 1.5185547, 1.3154297, 0.79003906, -0.22009277, 1.0322266, 0.9277344, -2.125, 1.9599609, -1.8671875, -0.9448242, 1.9658203, -0.47607422, 1.6035156, -0.020462036, 0.40966797, -0.3564453, -1.0820312, 2.0585938, 2.0761719, -1.7451172, -0.5058594, 1.5927734, -0.09454346, -0.54785156, 0.7783203, 0.10839844, 1.5341797, -0.043395996, -0.98876953, -0.80810547, -1.4580078, -2.0859375, 2.015625, -3.4316406, -0.640625, -0.81884766, 0.7519531, 1.7910156, -0.072143555, -1.1953125, 2.3769531, -0.91503906, -1.3115234, -0.2854004, -0.23034668, 4.4570312, 4.1054688, -0.16027832, -0.28149414, -0.89990234, 0.4597168, 1.2138672, 1.3408203, -1.5546875, 0.8745117, -1.3271484, -0.4086914, -0.05267334, 1.4921875, 0.6064453, 0.7060547, -1.2460938, 0.90478516, 4.1132812, -0.7944336, 0.43652344, 1.3017578, -0.5678711, -0.5185547, 3.3730469, -1.0419922, -3.9042969, 0.9067383, -2.4941406, 1.6728516, -0.13244629, -1.2460938, 0.32617188, -0.79589844, -2.6660156, -3.1855469, -2.2382812, -2.1914062, 1.3486328, 1.6679688, -2.5117188, -0.875, 1.3144531, -0.19091797, 4.2070312, 0.9736328, 2.6230469, -2.0078125, -0.096069336, -1.4814453, 0.4873047, 0.058898926, -4.6445312, 1.9355469, 1.1425781, -1.2529297, -2.0292969, 2.1972656, -0.16662598, 1.8808594, 0.8046875, 1.5722656, 1.7314453, 2.3359375, 1.0839844, 1.3251953, 1.9990234, -0.8051758, -0.9375, -0.7290039, 1.3789062, 0.9243164, 2.3105469, -0.7895508, 2.3359375, -2.5546875, 0.23425293, -0.4963379, -1.0244141, 2.0585938, -3.1464844, 0.11987305, 0.6582031, 2.34375, -1.1035156, -0.95166016, 0.8071289, 1.1005859, 0.41088867, 1.0703125, 2.1347656, 0.8496094, 1.1650391, -1.4638672, -0.27270508, 2.3554688, -3.7050781, 0.30737305, 0.78027344, -0.4765625, -1.6855469, -1.8486328, 1.9072266, 0.8178711, -0.98339844, 0.50146484, 2.5488281, 1.0078125, 0.6430664, -2.6308594, -0.72753906, -0.2746582, 3.7109375, 0.7246094, -0.45874023, 0.80615234, -1.4667969, -4.1523438, -3.1113281, 3.6757812, 1.828125, 1.4902344, -0.06750488, -1.0820312, 3.1054688, -0.19055176, 2.3222656, -0.54785156, 0.97265625, -1.3984375, -3.8222656, -0.23303223, 0.7392578, -0.5019531, 0.66015625, 0.5385742, -0.57421875, 0.9716797, 0.89501953, 1.4316406, 0.37109375, 1.2197266, 2.515625, 1.9257812, 0.022018433, 1.3027344, 0.098083496, -1.0927734, -1.328125, 2.2480469, 1.2460938, 0.48535156, -0.059753418, -1.2714844, 0.43286133, 0.48339844, -1.34375, 2.75, -2.2734375, -0.2709961, 1.4951172, 1.1054688, -0.92626953, -0.0076522827, 2.6328125, 2.5195312, 0.3322754, 0.8535156, 3.1328125, 0.049041748, 1.7919922, 0.7685547, 0.45703125, -0.76220703, 1.1259766, -1.2070312, 1.0292969, -0.9658203, 1.3789062, 1.1494141, -0.58154297, -1.3925781, 0.19946289, -0.7963867, -1.2529297, 0.33325195, -0.35375977, -1.0136719, -1.5917969, 2.7753906, -0.2211914, -1.7265625, 2.7441406, -0.54248047, -0.32739258, -3.5273438, -2.6289062, -0.82958984, -1.9580078, -0.3137207, 1.28125, 3.5019531, 0.36914062, 0.68896484, -1.1113281, -3.4921875, -2.015625, -2.9726562, 2.65625, -1.703125, -1.7744141, -1.7900391, 0.15246582, 1.3027344, -0.24487305, -0.11621094, -0.54248047, -2.109375, 1.7236328, -0.796875, 0.65722656, -0.5209961, 0.42895508, 2.2382812, 1.9755859, 0.5019531, 0.4794922, -0.23669434, 1.8671875, 0.099853516, -1.2792969, -0.99853516, 0.99560547, 0.14416504, -0.58154297, 1.3652344, 1.3701172, -0.47094727, -0.6323242, 0.8725586, -1.5595703]}, "B07H6193C8": {"id": "B07H6193C8", "original": "Brand: Weber\nName: Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\nThe built-in fuel gauge lets you see how much fuel is left in the tank\n", "embedding": [-0.7441406, 0.3383789, 1.2587891, -0.23254395, -0.94628906, 0.25317383, -0.18530273, -0.85595703, 0.6357422, 1.2216797, 2.3105469, -0.57714844, 1.3232422, -3.3320312, 0.0982666, 0.45043945, 2.234375, 1.3349609, -0.49267578, 0.61621094, 1.3046875, 0.45043945, 1.0644531, -1.75, 1.2958984, 1.8164062, 3.6269531, -5.9140625, -1.0507812, -0.65771484, 1.6318359, -0.2770996, 1.1201172, 1.9511719, -2.8378906, -2.3613281, -2.3613281, 1.4296875, -3.3320312, 1.296875, -0.5385742, -1.5097656, 1.3896484, -0.77197266, -1.2080078, 1.2021484, 0.45654297, 0.17456055, -1.7763672, -0.03817749, 3, 2.1679688, -0.32104492, 0.4506836, -0.59472656, 2.5, 0.31445312, -1.8203125, 1.9052734, 0.17822266, 1.7685547, -0.18798828, -3.0507812, -1.9736328, -1.0390625, -0.48266602, -0.6088867, 0.27978516, 0.6821289, -0.038757324, 4.25, -0.3461914, -0.79785156, 0.3935547, 0.44458008, -1.1816406, -1.6660156, 1.3554688, 0.34643555, -0.8510742, -1.2441406, 2.2167969, 1.6660156, -2.8613281, 0.1361084, 0.89501953, 0.67529297, -1.7363281, 1.9882812, 1.1943359, -0.7192383, 1.0595703, -2.0214844, -3.3144531, 1.5722656, -0.67871094, 1.4033203, 1.9550781, 0.053100586, 1.6503906, -1.2294922, 1.3320312, -1.5800781, -0.6201172, -4.0390625, -1.6425781, 1.4404297, -0.027191162, -2.9433594, -0.87158203, -0.80566406, 0.6669922, 1.8613281, 1.8798828, 1.3857422, 1.4755859, 0.8901367, 2.0546875, 0.43945312, 0.8461914, 3.7148438, -1.7861328, 0.7607422, -0.96533203, -1.3857422, -1.2802734, -0.578125, 0.59716797, 3.5527344, -2.4882812, -0.19909668, 1.5507812, 4.125, 0.062347412, -1.1005859, -1.4951172, -0.28295898, -1.4599609, -3.1523438, 0.08319092, -0.9111328, 0.2388916, 0.75683594, -1.1064453, -3.8847656, 1.3701172, -0.32373047, 0.08898926, 0.6660156, -1.4384766, 0.22668457, -1.1982422, -0.80566406, -1.7128906, 1.5224609, 0.7807617, -1.1591797, 0.71484375, 3.5878906, 2.2871094, 1.8193359, -0.7998047, -0.6357422, -0.5834961, 0.35229492, 0.6723633, 1.9072266, 1.3056641, -1.0703125, 0.80371094, 0.34179688, -1.6347656, -1.0302734, 0.62939453, 1.8964844, -2.1816406, 0.20715332, 1.0400391, 0.103393555, -0.6225586, -1.2871094, -1.6943359, -0.04800415, -1.4404297, -0.26953125, 0.045410156, 0.06982422, 0.70214844, 1.7949219, -1.5820312, 0.55566406, -0.45385742, 1.0322266, -0.5019531, 0.49438477, -2.4765625, -1.2626953, -1.2382812, 2.6367188, -0.9472656, -0.70166016, -1.1044922, 1.3300781, 1.7783203, -1.0380859, -3.0800781, -0.46118164, -3.4121094, 0.79052734, 1.8710938, 1.4990234, -1.4443359, 1.1210938, -1.1083984, -0.46044922, -1.1572266, 2.2011719, 0.7578125, 0.36108398, 1.2177734, -0.8178711, -1.0908203, 1.0615234, 1.234375, 1.3828125, 0.47680664, 0.9555664, -0.08483887, -4.3203125, -0.7597656, 2.9101562, -0.3371582, -0.013336182, 1.109375, 0.68603516, 2.5195312, 0.50341797, -0.42358398, 0.097961426, 0.24865723, -0.93066406, 0.9980469, -2.5683594, -1.6845703, -0.6635742, 0.13769531, -1.4082031, 2.5332031, 0.29516602, 0.44555664, 1.1386719, -0.72802734, 1.2597656, 0.74609375, -0.7294922, 0.7211914, -1.5224609, 1.7695312, 0.37231445, -2.2988281, 2.1210938, 1.6279297, 0.1743164, 1.0712891, 0.5776367, -1.6806641, 1.3701172, 2.7578125, -1.0126953, -1.3408203, 0.7998047, 0.8442383, -0.3881836, -1.9472656, 2.3847656, 2.15625, -1.3515625, 3.6992188, 0.13549805, 1.25, -0.1920166, -1.9443359, 0.9375, -2.8261719, -0.53515625, 1.2578125, 1.4384766, -1.2001953, -2.4316406, 0.12548828, 4.4023438, -0.8388672, -2.7128906, 2.1289062, -1.0996094, 1.4384766, 2.2402344, -0.30859375, -0.5097656, 2, 2.4277344, 0.054107666, 0.97558594, 1.1367188, 0.04562378, -0.5932617, 0.91748047, -2.4375, 0.9038086, 1.8027344, -0.6074219, -0.5678711, -1.2929688, 1.8945312, -2.6054688, -1.3847656, 2.2734375, -2.7519531, 0.5180664, -0.7026367, 2.0273438, 0.44140625, -1.9414062, -0.2298584, -1.578125, 0.45288086, -1.1318359, 1.4111328, -0.35302734, -1.9931641, -0.1706543, -0.59765625, -0.025558472, -1.9853516, -1.4238281, -1.1894531, -2.0273438, -3.4765625, 1.4003906, -1.625, -1.0195312, 1.6425781, -1.8271484, -0.18566895, 0.48779297, -1.7675781, -0.31445312, -0.20922852, -0.8486328, -1.8632812, 1.1113281, 1.4677734, -1.7177734, -1.9267578, -0.0048713684, -1.5546875, 1.4003906, -0.3388672, -0.13232422, 0.95947266, 0.31445312, 0.8598633, -0.43725586, 1.1972656, 1.4882812, -0.85253906, 2.0175781, -2.5429688, 0.11767578, -2.421875, 2.1074219, -0.121276855, 0.83251953, -3.1835938, -1.9746094, -0.59765625, -0.43481445, 3.359375, 0.7817383, 1.3466797, 0.3503418, 0.24389648, 0.9951172, -0.9638672, -2.2734375, 0.5371094, 0.16442871, -2.4453125, -0.3623047, -2.75, -1.0244141, -2.5273438, 0.2524414, 0.6621094, -0.56396484, -2.4414062, -0.45214844, -1.3388672, -0.14318848, -0.74121094, 0.4230957, 0.29101562, -2.2480469, -2.8105469, 0.2409668, -0.99121094, -0.033355713, -2.21875, 1.2011719, -0.30151367, 0.19958496, 1.4785156, -0.7001953, 0.8930664, -0.9121094, -3.7480469, 2.0605469, -0.04953003, -2.4101562, 2.6699219, -3.0488281, -1.0917969, -3.1191406, 0.041503906, 2.8183594, 2.0585938, 0.8051758, 1.8671875, 1.9042969, -0.5004883, -1.9003906, 0.33032227, -1.3261719, 0.3569336, 2.9785156, -3.1464844, -1.2744141, 0.3010254, 1.4267578, -2.7441406, -1.2685547, 3.25, 1.7138672, 2.4179688, 1.6318359, 1.2783203, 0.49536133, -1.3320312, 0.5415039, 1.1748047, -0.81103516, 1.0527344, -0.12683105, 0.9785156, -1.3339844, 1.5556641, 0.8461914, 0.68408203, 1.3310547, 2.5351562, 1.4414062, 0.16552734, -0.75683594, -0.5024414, 0.49365234, -1.1464844, 2.2695312, -1.6464844, -0.068359375, -0.7001953, -0.48266602, 0.6489258, 0.18334961, -1.2841797, 2.21875, 0.6748047, -1.4882812, 0.28344727, 1.5380859, 1.4072266, 0.4116211, 0.1508789, -0.9536133, -0.6328125, 1.7949219, -0.88916016, 0.7495117, -2.0429688, -0.1038208, -1.1923828, -3.21875, 0.44604492, 4.46875, -1.7177734, -1.5722656, 0.43310547, -1.75, -0.6982422, 2.3847656, 0.013587952, -0.66845703, 0.4621582, -2.0585938, 1.2773438, 0.59033203, -0.43017578, -1.2958984, -0.3190918, 1.2724609, -0.38793945, 1.3564453, 1.5664062, 0.094055176, -3.265625, 0.31347656, -3.90625, -1.2470703, 0.2644043, -2.3984375, -1.5576172, 2.6523438, 0.33740234, 1.2734375, -0.06500244, 3.0058594, -1.4013672, 0.9008789, 2.6152344, -2.6523438, 0.86279297, -3.4355469, -3.5234375, 0.08758545, -1.6582031, 0.2536621, 1.8505859, 0.22961426, 0.5600586, 2.8222656, 1.0185547, -2.7089844, -1.3867188, -0.7246094, 0.10064697, 0.18566895, 1.375, 0.15368652, -0.30004883, -2.5800781, -2.6230469, -0.41918945, -0.05230713, 0.039245605, 1.8164062, -3.265625, 0.6616211, -1.1533203, -1.4677734, -2.2050781, -0.30932617, 1.2509766, 0.18005371, 0.60546875, -2.2636719, 1.4414062, 0.8535156, -0.4736328, 2.3769531, 1.6650391, -0.14880371, -2.9433594, 0.8701172, 0.70410156, 3.4101562, -0.75927734, -2.5175781, -1.3164062, 0.9560547, 1.2060547, -2.0429688, -0.3581543, 1.2763672, -1.1894531, 0.61376953, 1.3935547, 1.6923828, 1.7929688, -0.024642944, -2.40625, 0.58740234, -0.0022964478, -0.47729492, -2.5878906, -0.03955078, 1.4697266, -1.5449219, 0.36865234, -2.3535156, 1.4550781, -1.3554688, -0.4375, -4.7070312, 2.5351562, 3.8808594, 3.6269531, 1.9863281, -1.9013672, 0.84765625, 0.28710938, -0.4423828, -0.9350586, 1.2177734, -0.7246094, -1.1738281, 3.0058594, 0.4206543, -1.7949219, -0.44213867, 0.7548828, -2.4042969, -0.37304688, -1.6103516, -0.5410156, -1.6210938, 0.40600586, 0.21057129, -0.7114258, 3.6054688, -0.44750977, -0.8569336, 0.8881836, 1.3427734, -0.15563965, 0.21374512, 0.5395508, 0.8173828, 0.10571289, 1.4375, 2.3789062, -0.32836914, 1.2910156, -1.4863281, 0.9609375, -1.4970703, 1.3671875, 1.6318359, 0.35375977, -0.29614258, 0.57177734, 2.5195312, 2.2011719, 2.8652344, 2.3144531, 1.9365234, -2.9257812, 2.1054688, 0.5253906, -2.7148438, 1.8027344, 0.9243164, 0.023147583, 2.2792969, 1.1259766, -3.7988281, -0.46020508, 1.8261719, -0.33398438, 1.1240234, -0.79345703, -0.22009277, 1.8408203, -0.8847656, -0.92871094, -0.032318115, -0.3010254, 1.0800781, 2.0722656, -0.4182129, -1.8085938, 1.4990234, 2.2480469, -1.1005859, -1.4375, 1.7451172, -0.4248047, 0.28759766, -2.0234375, -0.78808594, -1.3779297, 0.01600647, 2.0351562, 1.5439453, 1.9121094, -0.4321289, 1.4072266, -2.09375, -0.94628906, -1.9160156, 2.0097656, -1.9638672, -1.3574219, 0.2109375, -3.5683594, 0.68066406, -1.7128906, -1.9003906, -0.7368164, 1.0576172, 1.3339844, 1.2402344, -1.3974609, 0.21154785, -1.9257812, -3.34375, -0.74853516, 0.42578125, 0.2631836, 0.7524414, 1.3134766, -1.7490234, 0.66503906, -0.47631836, 0.22229004, -1.8896484, 1.2763672, -1.5078125, -0.6035156, -1.1123047, 0.22827148, -1.5185547, 0.25610352, 1.265625, 0.15429688, 0.7919922, -2.8691406, -0.19677734, -0.3618164, -0.63378906, 0.23168945, 1.6630859, 0.87646484, -1.0009766, 1.4453125, 1.1357422, -3.15625, 2.5878906, -2.3515625, -1.3964844, 2.2519531, -1.1289062, 0.43310547, -0.3696289, -0.17285156, -0.5131836, 0.013549805, 1.4667969, 0.9951172, -1.2783203, -1.0908203, 0.9692383, -0.5859375, -0.76123047, 1.1826172, 0.001493454, 1.3388672, 0.9892578, -1.3964844, -1.3554688, -1.4882812, -1.7714844, 0.87646484, -3.359375, -0.86279297, -1.7304688, 1.4033203, 1.9375, 0.12359619, -1.0761719, 2.6035156, -1.3652344, -2.2988281, 0.43554688, -0.8725586, 4.8203125, 3.609375, -0.70166016, -0.8256836, -2.328125, 0.79785156, 0.9453125, 0.37475586, -1.0605469, 0.38793945, -0.32104492, 0.5546875, -0.04260254, 2.1601562, 0.69970703, 0.94677734, -1.0546875, 0.50146484, 3.4238281, -1.5, 0.98876953, 1.4814453, -0.46069336, -0.08105469, 3.8144531, 0.22106934, -4.0742188, 1.0263672, -2.1230469, 1.6904297, 0.12023926, -1.2324219, 0.019729614, -0.8911133, -1.7988281, -2.1640625, -2.0195312, -2.5820312, 1.5283203, 2.2636719, -2.3359375, -1.1728516, 1.1083984, -0.6254883, 3.3378906, 1.5322266, 1.9267578, -2.0527344, -0.75341797, -0.58447266, 0.94628906, 0.85839844, -4.0390625, 1.5732422, 1.7431641, -2.1601562, -1.4589844, 1.0410156, -0.18444824, 2.1972656, 0.03463745, 2.2558594, 3.1484375, 1.4052734, 1.8496094, 0.9423828, 2.1210938, 0.93066406, -0.66259766, 0.39501953, 1.1640625, 0.6591797, 1.5878906, -1.4716797, 2.890625, -2.2773438, -0.7661133, -0.27856445, -0.97021484, 1.9736328, -2.8613281, 0.63623047, 0.20898438, 1.5625, -0.6879883, -1.0498047, 0.31152344, -0.09613037, 0.59521484, 0.26879883, 1.9257812, 1.2832031, 1.1552734, -0.9267578, -0.07763672, 2.7109375, -4.5273438, 0.97802734, -0.47827148, -0.7661133, -0.6640625, -1.0380859, 1.8076172, 1.1132812, -0.3486328, 0.8442383, 3.109375, 0.54833984, 1.1523438, -3.0351562, -1.6171875, -0.34033203, 4.2539062, 1.5517578, -0.43652344, 1.5947266, -1.3925781, -4.2304688, -3.5859375, 3.3984375, 1.9111328, 1.3925781, 0.4272461, -0.5576172, 2.5332031, -0.8671875, 1.4443359, -1.796875, 0.63720703, -0.9267578, -3.9609375, -0.4519043, 0.9248047, -0.9350586, 0.42529297, 0.2758789, 0.08782959, 1.3193359, 1.1523438, 2.0136719, -0.005870819, 0.97998047, 2.1132812, 0.8964844, -0.60009766, 1.8242188, 0.36865234, -1.4970703, -2.7304688, 2.6992188, 1.4423828, 0.1899414, -0.37475586, -0.94433594, 0.5317383, -1.2636719, -0.51904297, 1.9326172, -2.0292969, -0.16552734, 0.8911133, 0.5546875, -1.2050781, -0.06555176, 2.4863281, 3.0527344, -0.6166992, 0.8144531, 3.7929688, -0.54541016, 0.8847656, 1.1416016, 0.68896484, -0.13916016, 1.1640625, -0.28515625, 0.079711914, 0.20410156, 1.3974609, 1.8095703, 0.3293457, -0.96533203, -0.09484863, -1.1826172, -1.2470703, -0.14416504, 0.3395996, -0.5566406, -1.2119141, 3.1347656, -0.34106445, -1.453125, 2.4980469, -0.78515625, 0.56347656, -2.5820312, -3.1523438, -0.98535156, -1.5957031, -0.26586914, 0.93408203, 4.3554688, -0.67285156, 0.34838867, -1.2578125, -3.4628906, -1.1152344, -3.9765625, 2.3964844, -1.8818359, -2.5136719, -1.1357422, 0.8105469, 1.8789062, -0.48266602, -0.55566406, 0.14782715, -1.8115234, 1.4326172, -0.4152832, 1.3271484, -0.5756836, 0.35131836, 2.0664062, 1.8671875, 1.8525391, 0.40454102, -0.62646484, 2.2070312, -0.55908203, -1.4042969, -0.7421875, 0.78125, -0.35546875, 0.09301758, 1.0244141, 1.4804688, -0.4152832, -1.0429688, 0.7626953, -2.2929688]}, "B08GSDFS67": {"id": "B08GSDFS67", "original": "Brand: AVAWING\nName: AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover\nDescription: AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42\"x20\"x25\" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction\nFeatures: \ud83d\udd25Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience.\n\ud83d\udd25High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control.\n\ud83d\udd25Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame.\n\ud83d\udd25Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.\n", "embedding": [-0.40576172, 2.5898438, 1.7167969, -2.0917969, 1.3076172, 1.8007812, 0.74609375, -1.6298828, 0.16955566, 3.2207031, -1.78125, 0.23059082, -1.0605469, -3.6972656, 1.9541016, 1.0976562, -0.7915039, 0.7553711, 1.7509766, -0.3857422, 1.9365234, 0.2614746, 0.9428711, -0.6923828, 0.85058594, -1.0625, 3.1484375, -3.0507812, -0.10870361, -1.2929688, 1.4082031, 1.4023438, -0.16552734, 1.9814453, -2.9199219, -1.0458984, 1.0078125, 2.0527344, -1.6650391, -0.7739258, -1.2402344, -1.7480469, 3.8242188, 1.9941406, -2.0566406, 1.3037109, 1.0703125, -0.88134766, 0.27563477, -1.546875, 0.6879883, 1.1982422, 1.7128906, 0.0043296814, -1.7734375, 2.2285156, -1.1904297, -3.2324219, 1.7783203, 1.1796875, 1.2021484, -0.37939453, -1.2285156, 2.6210938, -1.3769531, 0.9067383, 0.021270752, -0.6567383, 0.79052734, -0.3100586, 0.6738281, 0.41674805, 0.6635742, 1.9863281, -0.41381836, -1.3916016, -2.90625, 2.9394531, 3.0898438, -1.21875, -0.021652222, 1.4833984, 0.2944336, -1.7070312, -0.7915039, 0.33666992, -1.1572266, -1.4902344, 0.8652344, 2.1796875, -0.45532227, 2.4628906, -1.9326172, -4.4765625, 0.4013672, -1.1152344, 0.11468506, 0.38793945, -2.0644531, 1.0986328, 0.34106445, 1.1787109, -0.5834961, 0.9506836, -2.8457031, -0.24047852, 0.67529297, 0.7011719, -0.23962402, 0.19995117, -0.88378906, -0.20483398, 0.57373047, -0.76464844, 0.4104004, 2.1933594, 0.5751953, 0.5698242, 3.390625, -0.12286377, 4.7617188, 0.3527832, -0.25610352, -1.3642578, 1.1152344, 0.48168945, -1.0019531, 1.6689453, 1.65625, -2.640625, 0.59716797, -2.5507812, 1.1621094, 0.6113281, -2.7207031, -0.21972656, -1.9804688, -1.6738281, -3.7207031, 0.26123047, -2.6054688, 0.25585938, 0.50146484, 0.17871094, -2.3242188, -1.5693359, -0.9272461, 3.3496094, -0.30908203, -2.3867188, 1.0517578, -0.8256836, 0.048034668, -2.6835938, 0.5722656, -0.7290039, 0.6347656, -3.9296875, 3.6425781, 0.5913086, 1.2958984, -1.8535156, 0.37109375, 1.3525391, -0.60058594, -1.6328125, 2.359375, 1.1386719, 0.20581055, 0.38671875, -0.45239258, -1.1269531, 0.32617188, 0.60546875, 0.04348755, 0.7270508, 0.7597656, 1.5996094, 3.4179688, 0.33740234, -1.3720703, -1.3505859, 0.63720703, 0.44189453, 0.10852051, -2.1152344, -1.5771484, -1.8242188, 0.5395508, -2.0507812, -2.4980469, 1.2958984, -2.375, -0.14318848, -0.6635742, -3.0332031, -2.7167969, -2.1308594, 1.4902344, 1.3837891, -0.15100098, -0.027908325, -1.2578125, 0.7475586, -2.9628906, -1.84375, -2.8144531, 1.3486328, 0.96972656, -0.004055023, -0.4711914, -1.1826172, 2.3476562, 1.2509766, -0.13562012, -0.59765625, 1.5927734, -0.1418457, 1.4375, 0.54296875, -0.09991455, -0.17590332, 2.3769531, 2.3300781, 2.0683594, 1.2861328, 1.2900391, 0.18432617, -2.0410156, -1.6220703, 2.390625, -0.08673096, -0.6123047, 1.2861328, -1.5537109, 2.9375, 0.97998047, -0.6459961, 1.8486328, -2.0488281, 0.90185547, -1.7792969, -0.01965332, 0.7216797, 0.5805664, 0.40649414, -0.71533203, 1.6728516, 2.0859375, 0.7026367, -1.1162109, -0.85791016, 0.62597656, 0.24316406, 0.044525146, 1.8183594, 0.093688965, -0.53808594, 0.43115234, -1.2314453, 1.5703125, 0.44335938, -0.6074219, 0.6928711, -0.59814453, -2.3808594, 2.1191406, 0.7709961, -3.0214844, -0.4572754, -0.22045898, 0.16772461, 3.2558594, 0.6645508, 0.36889648, 0.63623047, -1.5595703, 2.3203125, -0.18359375, 3.0078125, 0.16870117, -1.4345703, 2.4335938, -1.0947266, 0.953125, 0.35791016, 1.0039062, 0.73876953, -1.1210938, 0.4111328, 3.7128906, -0.28271484, -1.8720703, 2.3710938, 0.5966797, -0.035125732, 1.0371094, 0.061035156, -1.0136719, -0.50097656, 0.82373047, 1.8349609, -0.1505127, 2.5585938, -2.3964844, -0.075683594, 0.9086914, -3.640625, 0.07824707, -0.1451416, -0.52441406, -1.7841797, -0.22595215, 1.1669922, -3.7695312, -1.9199219, 2.0039062, -1.8652344, 1.6748047, 1.0332031, -0.61572266, 2.1582031, -2.8613281, -0.6821289, -0.72021484, 1.5996094, -1.4365234, 0.6533203, 0.012176514, -0.84277344, -2.6054688, -1.3564453, 1.0605469, -3.2519531, -0.8203125, -2.4199219, -1.2216797, -0.5253906, 0.15063477, -2.1171875, 1.2626953, 0.03463745, -1.2548828, 0.47509766, -1.4199219, -2.2070312, 0.28564453, 1.0341797, -2.2773438, 0.42407227, 1.3027344, 2.5664062, 0.6635742, -2.6542969, 0.23083496, 0.20959473, -0.15551758, 1.2851562, 0.13146973, 0.18811035, -2.7714844, 1.3154297, 1.4316406, -2.1640625, 0.28857422, -2.1777344, -0.89208984, -3.8828125, -0.04107666, 0.31396484, -0.026794434, 1.4326172, 0.7583008, -1.0683594, -0.88671875, -0.17443848, -0.93896484, 4.0390625, 0.88378906, 1.9746094, -0.39575195, -1.9082031, -0.75927734, -0.14050293, -2.359375, 1.3349609, -1.4785156, -0.7993164, -3.046875, -1.765625, 0.02053833, -1.1953125, -1.0917969, 0.4501953, 1.4394531, 0.86376953, -0.57177734, -1.4267578, -0.37695312, -1.2480469, 0.97021484, 0.8022461, 0.52441406, -1.9082031, -1.109375, -0.66503906, -0.21484375, -0.6328125, 2.78125, -1.0517578, 1.6455078, 2.0058594, -0.6035156, 0.48486328, 0.6855469, -2.0820312, 1.5742188, 3.5488281, 1.4326172, 0.6772461, -1.0712891, -0.8383789, -1.4892578, 1.0273438, 2.7949219, 2.2109375, 0.6694336, -0.5761719, -0.08996582, 0.6010742, 0.10345459, -0.30688477, -0.6503906, -0.9863281, 3.7714844, -2.7949219, 0.06762695, 1.1572266, 2.5566406, -3.9921875, -0.5761719, 1.4648438, -1.3896484, 0.77001953, -0.92333984, 1.1992188, 1.5, -0.6020508, 1.0507812, 0.09460449, 3.1269531, 0.40600586, -1.140625, 0.06744385, 1.1933594, 0.032989502, 1.6162109, 0.34301758, 0.41015625, 3.1875, 0.26635742, -3.0703125, 0.5810547, 0.46240234, 1.1230469, 0.89160156, 1.7441406, -1.5048828, 0.101745605, 0.13134766, 1.0009766, 0.73876953, -1.2773438, 0.36572266, 0.39282227, 0.94140625, -0.5913086, -1.2568359, 0.18383789, 0.96728516, -2.6933594, 1.5751953, -1.3955078, -0.15405273, 1.1054688, -1.6523438, 0.18188477, -0.64160156, 2.9765625, -0.017730713, -2.4296875, 0.2578125, 1.1376953, -0.85546875, -1.078125, 0.78271484, -2.7695312, -0.0046920776, 3.7070312, -0.3071289, -0.73828125, -0.34545898, -2.0097656, 0.17211914, 2.1835938, -0.062561035, 0.18017578, 1.5761719, -0.88671875, -1.5849609, 0.7451172, 1.1152344, 0.90478516, -1.4814453, 0.7504883, -0.24291992, -1.3964844, 1.6269531, -2.2753906, -1.53125, 0.74121094, 0.6894531, 1.6464844, -0.14416504, 1.1933594, -0.59814453, -2.6972656, 2.2226562, -0.23706055, -0.54296875, -1.2568359, -4.6640625, -0.010658264, -1.6357422, -1.2539062, 1.7753906, 0.04638672, 0.6484375, 0.30249023, 0.2927246, -2.7304688, -1.8535156, -1.1835938, 0.21972656, -4.25, -0.7685547, -0.07702637, -0.4169922, -1.1875, -0.25097656, 0.72314453, 2.7050781, 0.6376953, 1.6083984, -0.23327637, 0.8466797, -2.1796875, 0.9980469, 0.6635742, 0.8486328, -0.6142578, -1.5058594, 0.14074707, -1.7617188, 2.5351562, 1.1328125, -1.6923828, 1.1591797, 3.6484375, -0.15979004, -1.2744141, -0.08428955, 0.87402344, 4.046875, -0.7705078, -2.4023438, -0.8828125, -1.4121094, -0.24560547, -0.5756836, -1.1269531, 1.0205078, -2.3203125, 0.4519043, 0.65722656, 1.6865234, 1.5976562, 0.3779297, -3.921875, 0.46679688, -0.5834961, -2.7304688, -1.9775391, -1.2441406, -0.31225586, -1.4238281, -0.42382812, -2.3710938, -0.8041992, 0.81396484, -1.2548828, -1.1201172, 2.2753906, 1.1796875, 2.1269531, 3.9785156, -1.7275391, -1.3886719, 1.9873047, -0.68603516, 1.6025391, 2.515625, 0.7729492, -0.3383789, 0.15783691, -0.5751953, -1.6972656, -0.69189453, 0.27392578, -0.80908203, -0.86376953, -0.03366089, -0.75, -1.2773438, -1.1953125, -0.9350586, -1.0966797, 0.4248047, -2.7871094, -0.61328125, -1.3554688, 1.2773438, -0.6723633, 0.19848633, -1.234375, -0.32666016, 0.53222656, 2.953125, 0.19140625, 1.0898438, 3.0449219, -0.25756836, 2.3203125, -1.203125, -0.69091797, -1.0888672, -0.3317871, -0.6040039, -1.6757812, 1.5830078, 1.4375, -1.2080078, 2.5722656, -0.080078125, -1.9433594, 2.7226562, 0.65966797, -1.4863281, -0.34716797, -1.0009766, -0.8642578, 0.95458984, -1.3310547, -1.6240234, 0.1694336, 1.9082031, -0.61328125, 1.1484375, 1.1240234, -0.921875, -0.12988281, -1.7607422, 0.16699219, -0.50390625, -0.48217773, -1.5683594, -2.5917969, 0.49243164, -1.2041016, 1.4228516, 1.3212891, -0.9086914, -1.0791016, 2.3886719, 0.24621582, -0.69970703, -0.20812988, -0.080566406, -0.44140625, 0.5214844, 0.73339844, 0.17590332, 2.0332031, -0.7128906, 0.16186523, -1.2714844, -0.07531738, -0.25512695, 2.7441406, -2.2167969, 0.85791016, 2.5078125, 0.75097656, 1.6923828, -2.3945312, 0.10284424, -0.55859375, 0.9658203, -1.4726562, 1.0332031, -0.6166992, -2.3417969, -2.5449219, -2.3125, -0.81103516, -0.3791504, -3.8359375, 0.17529297, -0.82373047, -0.45361328, -1.1181641, 0.068359375, 0.02607727, 0.017288208, -0.76708984, -0.31982422, -0.69384766, -1.0253906, 0.6826172, 1.7978516, 2.3613281, -0.044189453, -0.390625, -0.47045898, -2.1289062, -0.040222168, 1.9824219, -1.7558594, 2.078125, 1.5986328, -1.1123047, 1.9931641, 3.0351562, 0.5546875, -0.59277344, 1.0917969, 0.32836914, -0.4892578, 1.7851562, -2.0195312, 1.6230469, -0.1227417, -1.6865234, 1.0185547, -0.42578125, -1.2558594, 0.32592773, 2.4765625, 0.7451172, 1.5888672, 0.2607422, -0.38378906, 0.0049591064, 1.0947266, 2.8808594, 1.3359375, -1.8623047, -1.5107422, -1.6552734, -2.6894531, -1.5585938, -3.0214844, -0.30249023, 0.040374756, 0.21533203, 0.5336914, 0.61279297, 1.6337891, 1.7255859, 1.3535156, -1.6337891, 1.6347656, -0.15551758, 2.5917969, 1.3242188, -1.6826172, -2.484375, -2.7773438, -0.06036377, 0.8227539, 1.1484375, -0.6347656, -0.019805908, -3.1464844, 1.2714844, -0.22912598, -0.2331543, 2.0742188, 1.0703125, -0.6870117, 0.77734375, -0.06365967, -0.10473633, 1.9628906, 0.026062012, 2.0800781, 0.13574219, 2.6601562, 2.03125, -0.4038086, 2.2578125, -1.4892578, 1.7431641, -1.8818359, -0.74902344, 0.7783203, -2.4726562, -1.4052734, -1.6240234, 0.04559326, -2.0996094, 1.6054688, 1.0839844, 1.4199219, -0.03427124, 0.89941406, -1.3847656, 0.8574219, 2.3535156, -1.2919922, 0.17895508, -0.87890625, -1.5019531, 0.15246582, 1.7783203, 0.71240234, 0.17468262, 0.6098633, 0.5185547, -1.5527344, 1.0400391, 0.12561035, -0.25195312, 1.3720703, 3.5742188, 0.69433594, 0.31201172, 3.0195312, -0.34570312, 1.2802734, 2.4667969, 0.41235352, -0.020889282, 2.0546875, 3.5800781, -0.8925781, -0.34106445, 0.58203125, 1.3974609, -1.0449219, -0.43164062, -0.80566406, 0.88720703, -2.6953125, 1.8330078, -1.9726562, 1.3828125, -1.4931641, 0.68896484, -0.7866211, -0.02229309, 1.0166016, -0.6191406, 1.4169922, -1.3408203, -0.4326172, 0.8286133, 1.0273438, -1.4003906, -3.1386719, 2.5136719, -0.44628906, -2.6503906, -0.09991455, 3.8359375, 1.3466797, 0.7939453, -1.9365234, 0.93115234, 0.5410156, 2.2519531, 2.4257812, 1.0449219, 1.1455078, 0.10235596, 1.7460938, 1.8505859, -0.99658203, -1.0615234, 0.84277344, -1.9169922, -4.2148438, 1.3623047, 0.41137695, 0.3359375, 1.0195312, -2.5605469, 0.7729492, 2.0136719, 1.3613281, -2.9648438, 0.28173828, 0.6333008, -1.7949219, 0.52197266, 0.68652344, -1.2275391, 4.109375, 2.8789062, 0.20129395, 1.6083984, 1.2089844, 0.70703125, 0.2915039, 0.47583008, -2.0195312, -0.34448242, -0.61621094, 0.7402344, 2.3417969, -0.93115234, -0.036376953, 1.90625, 1.6630859, -0.19384766, -0.005355835, -2.0625, 0.37646484, 0.99316406, -0.70458984, -1.1230469, -0.5600586, -1.4873047, -0.2421875, -0.09832764, 0.40454102, -3.03125, 1.3134766, 0.17004395, -2.7226562, -1.7734375, -0.05810547, -1.8583984, 1.9863281, -0.12561035, -0.46655273, -0.6166992, -0.4892578, 2.3789062, -1.7080078, -2.5703125, -1.1708984, 0.55322266, 0.22802734, 0.47143555, -0.38427734, 1.1162109, 0.06365967, 0.3395996, 3.171875, -2.5332031, 0.79052734, -0.91015625, 0.6567383, -0.6821289, 1.3798828, 0.21154785, -1.0429688, -0.11273193, -3.6308594, 1.0732422, -0.76708984, -2.6816406, 1.7958984, 3.8164062, 3.5273438, -0.23999023, -2.4765625, -2.7910156, -0.6772461, 1.2011719, 3.8066406, -0.012611389, -0.61816406, 0.22583008, -0.0041770935, 4.4179688, -1.1416016, -0.95703125, -0.28686523, -1.6845703, 1.8681641, -1.0478516, 0.6401367, 0.2644043, 1.0371094, 1.0253906, 1.3291016, 1.90625, 0.76708984, 2.2480469, 2.0644531, 0.44018555, -2.4023438, 0.7446289, -1.4238281, 1.1621094, 2.546875, 0.117126465, 1.5068359, 0.05493164, -0.9501953, -4.9921875, -1.1181641]}, "B07QGL9CPQ": {"id": "B07QGL9CPQ", "original": "Brand: PANTIN\nName: Pantin (Propane Gas) 13\" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU\nDescription: Pantin PCWR-D13 compact single burner 13\" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual \u201cL\u201d shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.\nFeatures: 16 guage one piece stainless steel stove top extended to front and two sides with forming technology.\nPropane Gas 13\" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat).\n100% stainless steel and heavy gauge reinforced steel angle chassis.\nHeavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability.\nCast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16\"W x 18\"D x 30\"H; We provide curbside delivery only.\n", "embedding": [-3.4296875, 1.0400391, 3.3164062, 1.0449219, -0.5317383, 1.3720703, 1.3154297, -0.85302734, -1.6962891, 1.4394531, 0.28955078, 0.2919922, 1.6201172, -1.5507812, 0.53027344, 1.1484375, -0.30004883, 1.4501953, -0.62060547, 3.0371094, 3.3671875, 0.5488281, 1.3710938, -1.7490234, -0.17480469, 1.0068359, 4.2617188, -2.1074219, -0.6928711, -3.5585938, 1.3818359, 0.17211914, 0.9790039, 1.9335938, -3.546875, -1.3417969, -0.38623047, -0.06842041, -3.2363281, 0.21728516, -1.1601562, 0.26733398, 2.6914062, -1.4033203, -3.7285156, -0.77783203, -0.3232422, 0.66064453, -0.25805664, -0.15820312, 0.38354492, -0.47094727, 0.4975586, 1.6865234, -0.97998047, 2.1601562, -0.20983887, -1.4511719, 1.8134766, -0.04232788, 2.7246094, 2.2011719, -2.4628906, 0.62597656, -0.66845703, 0.08703613, 0.074157715, 0.41186523, 1.1025391, 0.6821289, 2.453125, -0.5830078, 0.3408203, 0.80371094, 0.85253906, -1.9199219, -2.7324219, 0.1796875, 3.5644531, 0.98095703, 0.08190918, 2.3046875, 1.6572266, -1.7353516, -1.3574219, -0.44458008, 0.7416992, -0.6376953, 0.039001465, 2.3964844, -2.2910156, 3.5761719, -2.1015625, -4.3007812, 2.4863281, -0.3725586, -0.16418457, 1.7851562, 0.07751465, 0.6567383, -0.25976562, -0.09881592, 0.10040283, 0.65478516, -2.7480469, -0.4675293, 1.0107422, 1.6386719, -4.0898438, 0.8261719, -3.2402344, -1.7119141, 0.90722656, -0.51904297, 1.0439453, -0.58496094, -0.5395508, 0.60546875, 1.3886719, -0.39331055, 4.1992188, -1.0361328, -0.6455078, 0.2565918, 0.5097656, 0.9355469, -1.9990234, 0.7348633, 4.3476562, -2.9667969, 0.054748535, -0.5527344, 2.5917969, -1.4306641, -1.5498047, -2.1347656, -0.85253906, -1.8486328, -3.6972656, -0.29077148, -2.1230469, 0.98828125, 0.12634277, 0.39624023, -3.9257812, 0.17797852, 0.17468262, 1.1708984, 0.7807617, -0.5546875, 1.2695312, -0.5620117, -1.3583984, -1.796875, 1.8642578, 0.18481445, 0.3334961, -2.1679688, 4.1796875, 0.6508789, 2.1347656, -1.3769531, -1.9248047, 2.9589844, -0.1829834, -0.16955566, -1.3085938, 1.6523438, 0.18774414, 0.8696289, 0.36499023, -0.9941406, -0.54785156, -0.16589355, -0.22961426, -0.8647461, -1.8789062, 1.3847656, 1.0185547, -2.4316406, -2.9824219, -4.1757812, 1.0634766, 0.6567383, -0.9223633, -1.9521484, -1.0449219, 0.36865234, 0.6616211, -0.62060547, -0.021133423, 0.5673828, 1.7070312, -1.1269531, 0.6826172, -2.5214844, 0.5097656, -1.5517578, 0.39404297, 1.3349609, 0.2244873, -0.25585938, 1.140625, 0.5756836, -0.94384766, -0.34277344, -1.3359375, -1.1982422, 2.0039062, 2.4921875, 1.578125, -1.5615234, 0.47436523, -1.6318359, 0.13977051, -2.1367188, 1.5205078, -0.10498047, 0.45483398, -0.013549805, 0.50683594, -0.5102539, -0.0027770996, 2.1445312, 2.2460938, 3.1171875, 1.2451172, -1.2851562, -0.58154297, -0.3708496, 2.7773438, 0.5083008, -1.6445312, 1.8691406, -1.4589844, 2.8828125, 1.4404297, -2.0605469, 1.4794922, -0.09851074, 1.5615234, -0.43432617, 0.049743652, -0.15698242, -1.4023438, 0.35351562, -1.2324219, 0.10522461, 2.5839844, 2.3261719, -0.87939453, -1.3808594, -0.33154297, -1.5634766, -0.43603516, -1.3564453, -1.4013672, 1.359375, -0.9794922, 0.006996155, 2.7910156, 0.06744385, -0.5761719, 1.2568359, 0.115234375, -0.26245117, 2.8398438, 1.6191406, -2.2050781, 0.6870117, 2.1835938, -0.50439453, 3.7207031, -0.18786621, -0.19494629, 0.6796875, -1.1298828, 2.5527344, -0.20239258, 0.68652344, 2.0234375, -0.9736328, 2.1953125, -2.5058594, 0.020050049, 2.640625, 2.6230469, 0.30981445, 1.0048828, 0.9614258, 4.4492188, -0.3256836, -2.7207031, 3.1621094, 0.6689453, 1.015625, 0.2902832, -0.056671143, 0.80126953, -0.81591797, 0.46411133, 3.2304688, -0.4855957, 0.30981445, -1.5205078, -2.2363281, 0.5620117, -1.8974609, -0.42041016, -1.4931641, 0.028427124, -1.21875, -2.015625, 2.4101562, -2.7363281, 0.12231445, 2.21875, -0.9765625, -0.37280273, -2.1289062, -0.39624023, 0.78125, -0.6513672, -0.86035156, 0.79589844, 0.60546875, 0.24255371, 0.4206543, -0.40795898, -0.35083008, -2.2148438, -0.75341797, 0.34887695, -1.3916016, -1.1318359, 1.1826172, -0.8041992, -1.6669922, 1.1367188, -1.4951172, -0.3076172, 2.6464844, -2.2636719, -0.08868408, -0.7680664, -3.5410156, -1.03125, 0.44677734, 0.3203125, -0.49951172, 1.9824219, 1.0957031, -1.9707031, -4.1953125, -0.13793945, -0.5097656, -1.8427734, 0.4855957, -0.2064209, 0.6323242, -0.74072266, -1.5791016, 1.5976562, -0.859375, -0.4152832, -0.6074219, 0.4152832, -3.1132812, 1.1435547, -0.3955078, 1.4560547, -1.0234375, -0.20251465, -3.2929688, 1.8837891, -1.2568359, -1.1318359, 5.5429688, 0.40722656, 1.5908203, -0.4025879, -0.49926758, 0.17297363, -1.4931641, -0.3479004, -0.37353516, -1.78125, -1.2929688, -3.3652344, -5.6601562, -0.91796875, -2.8808594, 0.34692383, -0.5366211, 1.1015625, -1.8603516, 0.9628906, -1.1445312, -0.7011719, -0.5151367, 0.63671875, -0.4560547, -1.9892578, -1.7265625, 0.578125, -0.10418701, 0.8588867, 2.5917969, 0.8666992, 0.29223633, 1.1699219, 1.8623047, -0.4724121, -0.062469482, -0.3564453, -2.390625, 0.8461914, 0.92041016, -0.5439453, -0.01940918, -0.8647461, 0.20581055, -1.7304688, -1.9521484, 2.7988281, 2.2207031, 2.671875, -0.54833984, -0.734375, 0.25463867, 0.9560547, 0.013183594, -1.0185547, 0.40698242, 2.890625, -3.28125, -1.2636719, 1.8583984, 0.9555664, -2.7226562, -0.21325684, 2.328125, -0.42163086, 1.578125, 1.0527344, 2.2480469, -1.9785156, -1.4609375, 4.1796875, 2.7949219, -0.19506836, -1.6992188, -0.6904297, -1.1533203, -0.85058594, 0.88720703, 2.7929688, 0.6123047, -0.63623047, 1.921875, 2.9238281, -3.15625, -0.06304932, -1.5136719, 1.1474609, 0.23962402, 2.65625, 1.0927734, -0.6796875, -0.87158203, -1.359375, -0.24291992, -2.3085938, 0.30615234, 0.62353516, 1.3164062, -0.36499023, -1.1513672, 0.69091797, 0.64501953, -1.8642578, 1.3583984, -0.69970703, 0.35742188, 1.8798828, 0.58984375, 0.98535156, -0.86865234, 0.99853516, -0.09765625, -3.0996094, 0.30029297, 0.06317139, -1.8964844, -2.2578125, -0.44799805, -0.89208984, -1.3740234, 1.5302734, -0.15917969, -1.4326172, -1.3925781, -2.078125, -0.74121094, 0.57373047, -2.2617188, 0.60253906, -0.109436035, -0.22509766, -0.3334961, 1.5117188, 1.9375, 1.1669922, -0.96240234, -0.008804321, -1.7597656, -0.18603516, -0.6225586, 0.03164673, -2.1425781, -0.7055664, 0.5644531, 1.3457031, 0.11767578, 4.5351562, -0.13293457, -0.38500977, -0.50927734, -2.734375, -0.59228516, -2.2167969, -4.0429688, 1.4765625, -1.9042969, -0.44482422, 3.8632812, -0.124816895, -0.19494629, 1.2080078, 1.3740234, -3.0605469, -1.9804688, 0.3725586, 1.5732422, -2.6113281, 0.024429321, 2.3320312, -0.17700195, -1.8662109, -1.5048828, 2.1621094, -0.28344727, 0.94677734, 0.2163086, -2.0996094, 2.2304688, 0.82958984, 0.038146973, 0.22717285, -1.4121094, 0.1809082, -0.82958984, -1.0507812, -1.9599609, 1.2470703, -0.44262695, 0.23132324, 0.78515625, 3.5664062, 1.2636719, -0.5566406, -0.22741699, 1.2324219, 3.5449219, -0.084472656, -0.8334961, -0.9121094, -0.13464355, -0.44335938, -1.0546875, 0.19165039, -1.0117188, -2.25, 0.11810303, -0.94970703, -0.6513672, 2.0292969, 0.81347656, -2.21875, 0.8613281, 0.7236328, -3.078125, 0.46728516, 0.5605469, 0.6982422, -1.2109375, 1.3994141, -2.4296875, 0.51708984, 0.04559326, -0.57128906, -2.9785156, 1.9658203, 2.2773438, 0.9550781, 2.6347656, -1.6230469, -1.1376953, -1.5, -0.13122559, -0.25073242, 1.640625, -0.05697632, 0.24536133, 1.3300781, 1.0927734, 0.033569336, 0.6665039, 1.4589844, -0.41601562, -0.54296875, 0.38110352, 0.24707031, -0.7207031, -2.6660156, -0.44970703, -0.5498047, 2.0820312, -1.7783203, -1.3349609, 1.0732422, 0.9916992, -2.2753906, -0.23400879, -0.7246094, 1.0654297, -1.3183594, -1.0595703, 0.45361328, 0.6816406, 1.1777344, -0.73535156, 1.4677734, 0.23547363, 0.76416016, -0.14294434, -0.14660645, -1.8349609, -2.015625, 1.9257812, 1.9277344, 0.96533203, 3.2285156, 2.0898438, -2.6992188, 0.86328125, 0.7026367, -1.1279297, -0.77978516, -0.8911133, 0.31933594, 1.2714844, 0.30615234, -0.3227539, 0.4609375, 1.1220703, -0.96240234, 1.7275391, -0.11071777, -0.95654297, -1.6083984, -2.671875, -3.3105469, -0.8798828, -1.3662109, -1.0107422, -2.0292969, 0.10003662, -0.84814453, 1.6533203, 3.140625, 0.42822266, 0.34472656, 2.4921875, -0.3984375, 0.8120117, -0.3022461, -2.9179688, -1.8095703, 1.5810547, 2.9472656, 1.8574219, 0.23339844, 0.9428711, 1.1542969, -1.9306641, -0.4885254, 0.93896484, 1.7871094, -1.6923828, 0.93408203, 1.9882812, -1.9580078, 0.12384033, -1.9257812, -0.2902832, -2.1933594, 2.296875, -0.6142578, -2.1445312, 0.43017578, -1.2421875, -1.4794922, -5.0234375, -0.43530273, 1.8408203, -0.21008301, -0.64208984, 0.0847168, -1.3554688, 0.54589844, 0.028823853, -0.328125, -2.4765625, 1.1835938, -0.09777832, -0.83691406, -1.7548828, 0.16796875, 1.5585938, -0.22167969, 0.5317383, -0.8432617, 0.24963379, -1.0322266, -1.2382812, 2.5742188, -1.8886719, -0.06500244, -0.48266602, -0.7973633, 1.2333984, 1.6962891, 0.97558594, -2.4726562, 1.7597656, -2.7363281, -1.0361328, 0.52783203, -0.75634766, 0.71972656, -0.81152344, -1.6054688, 0.5175781, 0.97021484, -2.0039062, -1.5234375, -0.9091797, -0.044036865, 0.1348877, 1.1044922, -0.27001953, 1.5615234, 0.21374512, 1.9931641, 1.8769531, -0.052581787, -2.4101562, -1.9443359, -1.7929688, -0.0028591156, -0.7470703, -1.3164062, -0.69091797, 0.7558594, 2.7929688, -0.94140625, -0.9458008, 0.073791504, -1.6474609, -0.2932129, 1.9794922, -2.6269531, 4.8203125, 1.6591797, -0.7363281, -2.7578125, -2.234375, 1.9130859, -1.453125, -0.59375, -2.3398438, 0.24841309, -0.9511719, 0.7055664, -0.7114258, -0.022079468, 1.7783203, 1.8447266, -1.2822266, 1.1337891, 2.9765625, -0.98046875, 0.7675781, 0.9379883, 0.57958984, -1.1904297, 3.1894531, 0.95654297, -0.8334961, 1.4560547, -0.87060547, 1.7695312, -1.9882812, -0.18786621, -0.16381836, -1.0722656, -1.5810547, -1.4365234, -2.3300781, -3.3886719, 1.2460938, 2.2050781, 1.1435547, 0.52197266, 2.7753906, 0.75439453, 0.5991211, 2.4082031, 2.8066406, -0.49682617, 1.0058594, -0.83740234, 2.0332031, 2.8828125, -1.4472656, 0.33740234, 2.3398438, 1.5273438, -1.3203125, -0.63916016, -0.17675781, 1.9267578, 1.1767578, 1.0214844, 3.5195312, 2.3125, 3.3242188, -0.014816284, 2.46875, 2.390625, 1.9511719, -0.77978516, -1.0810547, 1.8535156, -0.21179199, -1.4736328, 1.5878906, -2.4804688, -0.32495117, -1.4462891, 1.7871094, 0.93408203, -4.15625, 2.9160156, -1.6884766, -0.7807617, 0.023147583, -0.83984375, 0.23413086, -1.0683594, -0.6821289, -0.1697998, 1.7958984, -0.87158203, -0.67041016, -0.31567383, 0.5649414, 0.8261719, -3.0761719, -0.28125, -1.1337891, -1.2929688, 0.61621094, 1.4023438, 2.1816406, 1.2197266, 1.0087891, 0.5727539, 1.5957031, 0.7163086, 0.2841797, -0.3317871, 0.79589844, 0.46679688, 3.4941406, 0.4873047, 2.8710938, 0.018310547, -2.5957031, -0.71191406, -2.4707031, 3.1679688, 3.1386719, 1.2617188, 1.9169922, -1.9814453, 1.0820312, -0.16845703, 0.25952148, -1.1464844, 3.4257812, 0.17700195, -2.7597656, 0.010406494, 1.2714844, 0.4091797, 2.0390625, 0.95654297, -1.2490234, 0.6098633, -0.3256836, 1.2089844, 1.9726562, -0.5205078, 0.86865234, 0.52441406, -1.2099609, 3.8339844, -0.01940918, -1.2744141, -0.72314453, 2.9394531, 2.1972656, 1.0107422, 0.09039307, -1.8847656, 0.84033203, -0.5986328, 0.6816406, 1.3125, 0.021697998, -0.74902344, -0.93603516, 0.59716797, -0.41723633, -0.18981934, 2.2304688, -1.109375, -1.7695312, 1.1445312, 0.6484375, -2.5078125, 1.1318359, 0.8798828, -0.18200684, 1.1865234, -0.26171875, 1.0488281, -0.6425781, -2.015625, -0.09051514, 0.35498047, 2.5058594, -1.3642578, 0.68896484, 0.5541992, 0.5341797, -0.62158203, 1.9072266, -1.0830078, -1.4375, 0.57470703, -1.6162109, -0.10089111, 2.9121094, -2.3125, 1.2753906, -0.13110352, -2.7851562, -2.2636719, -0.26171875, 0.25634766, 1.2392578, 2.2832031, -1.1210938, 1.9726562, -0.8701172, -2.9472656, -0.62402344, -2.75, 1.5175781, 1.0634766, -1.0253906, 0.090026855, 0.29663086, 0.94433594, -1.0585938, -0.43774414, -0.072143555, -0.52441406, 0.96484375, -1.9853516, 2.1210938, 0.23071289, 0.23840332, -0.7792969, 2.3183594, 2.5605469, -0.89746094, 0.52441406, 0.44873047, -0.34838867, -2.5214844, -0.07299805, -0.6064453, 2.3964844, -0.49951172, 0.9316406, 1.3310547, 1.1533203, -0.030090332, -0.09063721, -3.3710938]}, "B07D1G6QQ1": {"id": "B07D1G6QQ1", "original": "Brand: MCP Island Grills\nName: MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover\nDescription: Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.\nFeatures: 304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section.\nComes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36\" skewer and motor.\nLarge 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free.\nPower Req: 110v/60hz. Overall Size: 154\" W (122.5\" W without side tables installed), 24.75\" D x 35.5\" Countertop H. Overall Height 52\" (Top of faucet head). Main Grill Section: 55\" W x 46\" H (overall) x 26.5\" D (Including knobs). Countertop 35.5\" H x 24.75\" D.\nRefrigerator/Wine Cooler Section: 49.5\" W (with Side Table) or 33.5\" W (without Side Table) x 25\" D x 35.5\" H. Sink Section: 49.25\" W (with Side Table) or 33.5\" W (without Side Table) x 28\" D x 35.5\" Countertop H or 52\" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.\n", "embedding": [-1.3076172, 0.77197266, 1.5205078, 0.5029297, 1.7099609, 0.48291016, 0.6513672, -2.7851562, 0.5908203, 1.5751953, 0.47607422, 0.062683105, -0.86865234, -1.9716797, 0.9326172, 1.0644531, -0.1071167, -0.26000977, 1.9248047, -0.1730957, 0.97216797, 1.2285156, 2.1386719, 0.83691406, 1.2666016, 1.0322266, 3.1699219, -2.3144531, 0.64501953, 0.20690918, 0.9560547, 1.1416016, -0.51220703, 2.1289062, -2.9628906, -1.2646484, -1.6552734, 1.6777344, -0.51220703, 3.015625, 0.008049011, -1.3027344, 1.5205078, 0.36254883, -4.21875, -1.0507812, 0.72021484, 1.7236328, -1.2138672, -2.5117188, 0.9379883, 1.2724609, -0.15490723, 0.1182251, -1.9042969, 0.44604492, -0.4650879, -2.90625, 1.2832031, -0.08441162, -0.14538574, 0.5371094, -2.0917969, -0.08862305, -2.9453125, -2.359375, -0.66503906, -0.117614746, 0.9038086, 0.09887695, 1.3427734, 2.3945312, -2.0351562, -0.65625, 0.30297852, -0.22094727, -2.2480469, 0.5527344, 2.5644531, -0.51171875, -2.1035156, 1.5693359, 0.98046875, -1.7011719, 0.8183594, 1.5136719, -2.1269531, 0.44555664, 0.83691406, 0.11248779, -1.8603516, 1.8798828, -3.7539062, -3.4433594, 0.09667969, -2.6464844, 0.68359375, 1.0048828, 0.94433594, 2.234375, 0.6977539, 0.2368164, -0.33642578, -1.3310547, 0.026123047, -1.0429688, 1.3457031, 0.28564453, -3.0625, 0.13879395, -3.1289062, 1.7011719, 2.4921875, 0.20385742, 1.5917969, -0.022125244, 0.6723633, 2.2011719, 1.6015625, 1.2324219, 2.1445312, 0.13696289, 0.05596924, -0.6801758, 0.062072754, 0.29077148, -1.4365234, 2.0371094, 4.2382812, -0.83935547, -0.7451172, -0.17248535, 1.3291016, 0.56347656, -1.9287109, -1.7695312, -1.9052734, -1.5078125, -3.609375, 1.0634766, -0.7709961, 1.4902344, 1.7529297, -0.4814453, -3.96875, -1.3222656, -0.34936523, 0.30810547, 0.87646484, -1.5009766, 0.3449707, -2.9746094, 2.015625, -0.64746094, 0.32421875, -1.3613281, -0.029006958, -2.6503906, 3.0976562, -1.2519531, 0.68359375, -2.9960938, -2.6503906, 1.5654297, -0.77978516, -2.0332031, -1.3828125, 0.99316406, 0.24658203, 0.92333984, -0.37402344, -2.6523438, 0.9277344, 0.29467773, 1.0126953, 1.0478516, -0.5292969, 1.9521484, 0.31201172, 0.47460938, -0.2866211, -2.2070312, 1.0341797, 2.0449219, 0.6459961, -0.95410156, -0.57177734, -0.045837402, 0.9404297, -1.3691406, 0.48413086, -1.9072266, -0.10064697, 0.87109375, 1.1328125, -1.8251953, -2.6132812, -1.0136719, 1.1230469, -0.6088867, 0.59814453, -0.67529297, -1.2158203, 0.70410156, -2.0078125, -2.4589844, -1.4384766, -1.5439453, 2.5722656, 2.1992188, 2.0566406, -1.4492188, 0.34960938, -1.4804688, 0.5473633, -3.0546875, 1.6289062, -0.8227539, 0.36816406, 1.5253906, 0.7451172, 1.2080078, -0.875, 3.1972656, 0.2680664, 1.5546875, 0.43579102, 0.9433594, -2.5664062, 0.6010742, 2.7128906, 0.10626221, 0.8129883, 0.7133789, -0.60839844, 1.2832031, 0.66015625, -3.3574219, -0.26000977, 0.38330078, 0.09649658, -1.7880859, -0.10144043, -1.6875, 0.48217773, 3.4101562, -3.6074219, 2.1894531, 1.6601562, 0.55615234, -2.4609375, -1.3720703, 0.13928223, 0.10229492, -0.13146973, 0.38354492, -0.86035156, 0.34204102, -2.8789062, -2.2304688, 1.3623047, 0.06817627, 0.07165527, 1.0009766, 0.36645508, -1.9121094, 2.578125, -0.5917969, -4.9179688, -1.4521484, 0.63183594, 0.23999023, 1.8466797, -0.21289062, 0.57177734, 0.19543457, -0.20568848, 2.0878906, -0.03640747, 1.3964844, 0.8930664, 0.36083984, 2.7441406, -3.4980469, 0.12805176, -0.6074219, 0.21948242, -1.0908203, 0.36108398, 0.69970703, 4.40625, -1.1542969, -3.1289062, 1.3320312, -0.60546875, 0.82666016, 0.41259766, -2.2714844, -0.5029297, -0.6503906, 1.140625, 0.4152832, -1.1035156, 1.1328125, -2.2597656, -2.2558594, 1.1035156, -1.9521484, 0.40356445, -0.99365234, -0.011238098, -0.45898438, -1.8671875, 1.3154297, -0.08441162, -2.5429688, 2, -1.7890625, 0.6484375, 0.43652344, 1.1289062, 0.32885742, -2.9804688, -1.0302734, -1.5556641, 0.7763672, -1.1640625, 0.56152344, 0.54003906, -2.0527344, 2.0410156, -1.2607422, 2.2910156, -2.3242188, -1.5332031, -1.6240234, -3.2460938, -0.5410156, -0.5029297, -0.37036133, -0.5024414, 1.0742188, -2.0742188, -0.96875, -1.0029297, -2.4726562, -1.78125, -0.52001953, 1.15625, 2.4550781, -0.023010254, -1.8066406, 0.80859375, -6.5273438, 0.60253906, -0.8432617, 0.1574707, 1.1777344, -1.4990234, 0.8339844, -2.1210938, -0.074157715, -1.1025391, -0.8466797, 0.5019531, -0.07458496, 0.009277344, -3.5761719, 0.04522705, -4.1015625, 1.1806641, -2.1171875, 1.0839844, -3.4980469, -0.13977051, 1.2148438, -1.9794922, 3.0800781, -0.047821045, 0.38061523, -0.35351562, 1.9072266, 1.5078125, -0.46289062, -2.1503906, -1.3320312, 0.99560547, -2.4101562, -2.0195312, -1.1435547, 0.5751953, -0.8457031, -1.2988281, -0.37817383, 1.9589844, -1.5166016, 1.3837891, -1.5976562, -1.1865234, -0.4963379, 1.0800781, -1.4404297, -0.24768066, -1.8007812, -0.29370117, 0.17895508, -1.6162109, 0.22924805, 2.0039062, -1.2529297, 1.46875, 0.67333984, -1.0996094, 0.11053467, -0.89208984, -4.578125, 1.4101562, 0.90478516, -2.9667969, 1.0771484, 0.20678711, -1.8984375, -3.53125, -1.5283203, 1.34375, 0.7265625, 2.4960938, -0.25024414, 1.3330078, 2.0742188, 0.51708984, 0.6191406, 0.3371582, 0.6953125, 2.7226562, -1.3574219, -0.6333008, 1.4941406, 3.0449219, -2.0273438, -0.023040771, 0.98095703, 0.92578125, 2.5058594, 1.5820312, 2.5585938, 1.5087891, -1.1142578, 0.65966797, 0.12231445, 1.1875, -0.35620117, -2.6699219, 1.4160156, -1.0859375, 1.6269531, 0.57958984, -0.107543945, 1.8046875, 1.2939453, 0.9819336, -2.3417969, -0.21936035, 0.45166016, -0.43359375, -1.7724609, 3.0839844, -1.2753906, -0.18737793, 1.1240234, 0.5854492, -0.25048828, -1.7685547, 0.8129883, 1.6972656, -0.2548828, 1.0253906, -0.16625977, 0.6425781, 0.7290039, -0.8251953, -1.3613281, -0.8071289, -1.0126953, 2.0332031, -1.6298828, -1.4384766, -1.2910156, 1.5048828, -1.0664062, -2.7285156, -0.34448242, 3.0078125, -1.8574219, -1.0283203, -0.5058594, 1.5654297, -1.6972656, 2.4804688, -1.1367188, 0.8701172, 0.39257812, -1.8876953, 1.4677734, 0.09893799, 0.6357422, 0.79541016, 0.42456055, 2.0839844, 1.1767578, -0.1348877, 1.9345703, 0.60302734, -2.859375, -1.1484375, -2.5683594, 0.96728516, -0.5415039, -0.2763672, -1.3662109, 3.7597656, 1.2939453, 3.5703125, -1.4853516, 3.2285156, 0.64697266, -1.7802734, 0.99121094, -2.6640625, 0.8515625, -2.8984375, -3.6679688, 0.9550781, -0.107177734, 0.46728516, 2.6132812, 1.5058594, -0.5571289, 2.015625, 0.11907959, -4.1953125, -0.9926758, -0.43408203, 0.89501953, -0.26757812, -0.28125, 1.5898438, -0.036102295, -2.6035156, -0.5620117, -0.7236328, 0.7739258, 2.2226562, 1.0419922, -2.390625, 2.7792969, 0.20788574, -0.6982422, -1.2460938, 0.0074806213, 1.4990234, -0.91259766, -0.31689453, -1.0908203, 2.515625, -0.13928223, 0.4111328, 0.3256836, 0.45092773, -0.49414062, -0.48291016, -1.5058594, 0.85009766, 2.5449219, 0.04827881, -0.5566406, -1.9208984, -0.0927124, 2.0722656, 0.66845703, 0.43701172, 0.081970215, -3.5253906, -0.7084961, 0.7553711, 0.7915039, 2.3417969, -0.68652344, -1.2490234, -0.45898438, 0.62158203, -0.6801758, -0.8300781, -0.026306152, -0.46655273, -1.3671875, 0.7089844, -1.7011719, 1.3544922, -0.83740234, -1.5273438, -2.3027344, 2.0429688, 2.5058594, 2.6210938, 1.6464844, -1.9306641, -1.4042969, 0.8339844, -0.9946289, 0.46142578, 0.28735352, -1.3232422, -0.045928955, -1.0273438, 0.10192871, -1.3457031, 0.27978516, 0.23168945, -1.3154297, -0.4267578, -0.8720703, 0.47680664, -1.015625, -0.07696533, 0.6191406, -0.7519531, 3.6582031, -3.1484375, 1.2978516, 1.6308594, 1.2919922, -2.6386719, 0.8232422, -2.4941406, 2.4335938, 0.97998047, 1.9433594, 0.17749023, -1.3964844, 0.22009277, 0.27856445, 1.5576172, -0.23522949, 0.20727539, -1.2363281, -0.47973633, 0.14208984, -2.5, 2.3710938, 4.6992188, 0.5546875, 1.2314453, 0.7607422, -3.3945312, 2.3457031, -0.3864746, -1.5009766, 0.35498047, -0.3359375, -0.2536621, 1.6074219, 1.1054688, -4.3398438, 0.6713867, 3.1328125, -1.2109375, 0.0050315857, -0.109802246, -0.67871094, 1.0205078, -1.8603516, -1.1904297, 1.8193359, 0.29248047, -1.171875, -2.3515625, -0.41308594, -1.0839844, 1.46875, 3.1171875, -2.15625, -1.0136719, 2.2519531, 1.2099609, 1.1337891, -1.1884766, -1.3388672, -1.4609375, 0.14123535, 4.890625, 0.41259766, 0.8959961, 0.84277344, 2.6425781, -1.8652344, 0.13269043, -2.5, 2.7109375, -1.9335938, 0.86865234, 1.8994141, -2.8964844, 0.31835938, -2.4453125, 0.41918945, 0.28027344, 3.0859375, 2.2421875, -0.5390625, 0.7368164, -0.23864746, -1.8828125, -4.1015625, -1.5410156, 0.62597656, -0.5878906, -0.7006836, 0.53759766, -1.7744141, -0.14807129, -0.5390625, -0.15942383, 0.068115234, 0.5805664, -0.4567871, -1.6904297, -1.4599609, 0.25634766, -1.6582031, 0.30273438, 0.44873047, -0.9760742, 0.7265625, -5.2226562, 1.1025391, -0.10614014, -0.32080078, -0.5756836, 2.4179688, -0.8413086, 0.5756836, -0.7939453, 1.3261719, -1.6083984, 2.0917969, -3.2539062, -0.16491699, 0.7573242, 0.24279785, 1.2460938, 0.0058631897, -0.3791504, -0.6508789, -2.6347656, 1.4433594, -1.1083984, -1.15625, 0.45458984, 1.0126953, -0.32739258, 0.27001953, -0.1451416, 0.8105469, 1.0742188, 1.5332031, -0.72558594, -0.83251953, -2.0410156, -1.5839844, -0.14355469, -2.2636719, -0.80322266, -2.2910156, -0.17224121, 2.8652344, 0.8847656, 0.8466797, 1.7412109, 0.7597656, -0.47631836, 0.68896484, -1.3808594, 1.9189453, -0.37670898, -2.7011719, -1.1328125, -2.0136719, 0.20947266, 0.9604492, 1.0087891, -0.53466797, -1.7734375, -1.6621094, 0.59765625, -0.015037537, 1.515625, 3.0957031, 2.3457031, -2.5078125, 1.2041016, 3.6152344, -0.40893555, 1.4335938, 1.1357422, 1.5458984, 0.1472168, 4.6601562, -1.9648438, -2.8671875, 2.5820312, -1.9091797, 0.5341797, -0.64941406, -3.3027344, 0.46826172, 0.07519531, 1.2607422, -2.3222656, -0.8964844, -1.9228516, 1.9150391, 0.21728516, 0.24853516, 0.46240234, 0.7861328, 2.9667969, 2.734375, 0.9082031, 1.1914062, -0.4873047, 0.90722656, 0.24621582, 0.49926758, 1.0019531, 0.023147583, 0.5541992, 1.8476562, -0.23925781, -1.5253906, 3.4082031, 1.2568359, 0.3737793, 0.28198242, 0.60302734, 2.9042969, 2.2714844, 3.0351562, 1.2060547, 2.203125, 2.46875, 0.28979492, -0.94628906, 1.5517578, 3.296875, 1.0839844, -1.6601562, 2.2246094, 0.5864258, -2.3398438, 0.31933594, 2.0527344, 1.5175781, -1.3105469, 2.7128906, -0.9116211, 0.1640625, -1.7011719, -0.08709717, -0.61279297, 0.5180664, -1.6826172, 1.0185547, 2.375, 0.6196289, 1.6523438, 0.35864258, -0.5205078, -0.1083374, -3.4257812, 1.0878906, 1.8603516, -1.8388672, -0.13024902, 2.1875, 2.4160156, 1.2001953, 0.3178711, 1.7958984, 1.0908203, 2.0605469, 0.14575195, -0.30029297, 1.1748047, -0.17883301, 2.8808594, -0.27416992, -1.0537109, 0.62060547, -0.097717285, -3.0273438, -4.375, 2.1757812, 1.3886719, 1.6376953, 0.56884766, -2.8378906, 0.7392578, 0.23925781, 2.8496094, -1.6210938, 1.8564453, -0.46044922, -3.5253906, -2.0039062, 1.125, 1.6210938, 1.2841797, -0.7001953, -1.4580078, 1.7011719, -0.48535156, 1.6816406, 3.640625, 3.6464844, 0.99365234, -0.9038086, -0.3630371, 3.6503906, 2.4121094, 0.12646484, -0.8696289, 0.53808594, 1.5898438, 0.31152344, -0.14819336, -2.171875, 1.234375, 1.078125, -0.45483398, -0.90722656, -1.4248047, -0.2866211, 0.83935547, 0.5410156, -0.7626953, -0.5654297, 0.79345703, 2.4921875, -0.26245117, 1.3222656, -0.35961914, -1.4414062, 3.1503906, 0.5722656, -1.9472656, 0.64941406, -0.42285156, 2.0214844, 2.1660156, -1.7089844, 1.0136719, 0.23010254, 0.47192383, -0.4086914, 0.7475586, -1.6542969, 0.69189453, -0.6225586, -0.119384766, 0.3076172, -2.7265625, 2.2539062, 0.38012695, -0.140625, 3.1035156, -0.038391113, -0.92626953, -3.9609375, 0.9941406, -1.6738281, -1.0722656, -0.40820312, 1.4736328, 5.6796875, 0.42626953, 0.79003906, -0.52246094, -3.5527344, 0.70166016, -1.3164062, 2.8847656, -0.8779297, -0.59033203, -0.0102005005, -0.8515625, 2.5078125, -0.91748047, -2.484375, -0.82470703, -0.38427734, 2.2226562, 0.55322266, 1.2480469, -0.06298828, -0.43359375, 1.0302734, 2.7988281, 3.078125, -0.052978516, 0.82373047, 3.8105469, 1.5947266, -1.8779297, 1.4355469, 0.5205078, 0.5786133, 0.7036133, -1.1611328, 0.6928711, -0.87353516, -0.42529297, -1.2226562, -2.6796875]}, "B07S1KMJQH": {"id": "B07S1KMJQH", "original": "Brand: Best Choice Products\nName: Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown\nDescription: Specifications:
Overall Dimensions: 52\"(L) x 34\"(W) x 24.75\"(H)
Dimensions w/ Glass Partition: 52\"(L) x 34\"(W) x 30.25\"(H)
Glass Partition: 27.75\"(L) x 12\"(W) x 5.5\"(H)
Weight: 73 lbs.
Table Material: Aluminum, Wicker
Cover Material: 300D Oxford Fabric
BTU: 50,000
Assembly required (with instructions)
NOTE: Works with standard 20-pound propane tanks

Package Includes:
Fire pit table
Glass rocks
Glass wind guard

BCP SKU: SKY5268

\nFeatures: ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop\nGLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze\nCONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU\nENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire\nDURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52\"(L) x 34\"(W) x 24.75\"(H)\n", "embedding": [-1.2011719, 2.4394531, 1.2138672, -1.7558594, 1.7841797, 1.9550781, 0.8305664, -2.7675781, 0.20141602, 2.234375, -1.1679688, 0.85498047, 0.12658691, -5.3398438, 0.9423828, 0.7607422, 0.060516357, 0.9248047, 1.7470703, -0.0758667, 2.5976562, -0.5917969, 1.7939453, -0.23913574, 1.7548828, -0.13244629, 2.890625, -3.765625, -1.0292969, -1.5478516, 1.9423828, 2.0839844, -0.4729004, 2.6582031, -2.5605469, -1.7001953, -0.23217773, 2.1328125, -1.6855469, -0.038909912, -1.7246094, -1.7070312, 4.3515625, 1.6806641, -2.0449219, 1.4960938, 0.64697266, -0.5004883, 0.69873047, -2.5117188, 1.0751953, 1.4521484, 1.3007812, -0.24572754, -2.4296875, 2.875, -1.3652344, -2.7929688, 0.8330078, 0.9604492, 0.89990234, -0.27441406, -1.3261719, 1.6953125, -1.171875, 1.8330078, 0.039001465, 0.4152832, 0.44091797, 1.8251953, 1.1972656, -0.45385742, -0.86376953, 1.4882812, 0.49682617, 0.06317139, -3.0449219, 2.7910156, 3.0742188, -0.9897461, 1.5039062, 3.0175781, 0.6958008, -0.9423828, 0.17614746, -1.3759766, -1.2675781, -0.6699219, -0.077819824, 1.5048828, -0.7084961, 4.1171875, -2.046875, -3.2285156, -0.26342773, -2.0683594, 0.5385742, -1.0097656, -1.7373047, 0.33081055, 1.1220703, 0.036315918, -0.6767578, 1.1474609, -2.1503906, -0.84521484, 1.078125, 0.67285156, -0.59375, -0.3083496, -1.8300781, 0.059265137, 0.91259766, -0.9091797, 0.19628906, 1.9335938, 0.77685547, 1.9697266, 2.9882812, 1.0429688, 5.1171875, 0.45239258, -0.12963867, -1.0244141, 1.0107422, 0.07305908, -1.2216797, 1.5029297, 0.8779297, -2.1347656, 0.14025879, -1.3349609, 1.7060547, 0.72558594, -2.3300781, -0.63183594, -1.2089844, -1.5, -5.2148438, 0.3474121, -2.2617188, 0.875, 0.42236328, 0.6699219, -3.2324219, 0.37475586, -1.3125, 2.6289062, -1.4453125, -2.1875, 1.2265625, 0.048736572, 0.6533203, -1.5585938, 1.3291016, -1.7490234, 2.0898438, -2.3378906, 3.7402344, 1.7675781, 1.4462891, -1.8769531, -0.25830078, 2.1464844, -0.55810547, -0.11413574, 2.4375, 0.5756836, 0.85791016, 0.48242188, -0.24060059, -0.8979492, 0.78515625, 1.5527344, 0.53222656, -0.0031337738, 0.4741211, 2.2597656, 3.53125, 0.13183594, -1.1738281, -2.2148438, 0.10913086, 1.2851562, -0.98339844, -3.046875, -1.2490234, -1.9033203, 0.3178711, -2.0527344, -0.24853516, -0.36157227, -1.5888672, -0.1373291, -0.9277344, -2.4355469, -3.5820312, -1.3320312, 1.3320312, 1.4267578, -1.2666016, 0.26123047, -2.1953125, 0.4868164, -3.5585938, -2.3964844, -1.8574219, 1.9121094, 1.5693359, -0.0032730103, -0.26831055, -0.9790039, 1.8652344, 0.62939453, 0.33984375, -1.0615234, 2.0371094, 0.2763672, 1.3359375, 0.30419922, 0.034118652, 0.096069336, 1.4169922, 2.7558594, 1.6210938, 1.5390625, 0.6479492, 0.40039062, -0.8901367, -2.2851562, 2.2382812, 0.8808594, -0.1472168, 1.3945312, -1.5761719, 3.6679688, 1.8212891, -1.0605469, 1.3740234, -1.4501953, 0.6328125, -0.96728516, -1.0449219, 0.6870117, 0.43066406, 0.2265625, -0.6923828, 1.7041016, 2.1503906, -0.10064697, -1.0048828, -0.33691406, 0.5805664, 0.3725586, -0.33764648, 1.3652344, -0.58251953, -0.23278809, 0.7265625, -1.8632812, 0.06689453, 0.24450684, -0.4350586, 0.2277832, -0.6308594, -1.9707031, 1.5058594, 1.1464844, -3.8378906, -0.3779297, -1.109375, -0.30395508, 2.4589844, 0.8901367, -1.0839844, -0.3269043, -1.9716797, 1.7304688, 0.19311523, 2.1347656, -0.21032715, -0.9238281, 2.5878906, -1.3232422, 0.14465332, 0.7836914, 2.4042969, 0.25512695, -0.43945312, 0.4453125, 4.0273438, -0.5473633, -2.0761719, 2.0664062, -0.3581543, 0.4350586, 0.6611328, -0.0848999, 0.85009766, 0.19140625, 1.1806641, 2.6054688, 0.17541504, 2.0117188, -3.0722656, -0.023223877, 0.1307373, -3.8125, 0.26513672, -0.29101562, -0.6875, -1.9794922, -0.18005371, 1.2724609, -3.1875, -1.6875, 2.234375, -2.5058594, 1.4150391, 0.004749298, -0.29174805, 1.6259766, -2.3789062, -1.0400391, -0.51123047, 1.9414062, -1.4609375, -0.6201172, -1.0351562, -0.06347656, -1.0869141, -1.0185547, 2.5449219, -3.2949219, -0.9628906, -1.8476562, -1.4267578, -0.21594238, -0.43310547, -1.5146484, 0.18286133, 0.50878906, -2.2753906, 1.5107422, -0.6533203, -2.4550781, 0.6113281, 2.140625, -2.46875, -0.3762207, 0.16577148, 1.9580078, -1.0517578, -3.2421875, 0.14477539, 1.3603516, 0.68847656, 1.3701172, 0.2479248, -0.7236328, -1.7509766, 1.3779297, 1.8134766, -0.97998047, 0.36254883, -1.6152344, -1.3662109, -4.8125, 0.8144531, 0.26416016, -1.1728516, 0.47021484, 0.44799805, -2.5078125, -0.76220703, 1.1308594, -1.1865234, 5.015625, 0.76708984, 2.6972656, -0.87109375, -1.15625, -0.21362305, -0.36889648, -3.8847656, 0.91259766, -0.107666016, -0.38330078, -3.3710938, -2.3574219, 0.43896484, -2.5605469, -1.4111328, 0.010444641, 0.6069336, 1.2832031, 0.06524658, -2.3300781, -0.13977051, -1.7246094, 2.3085938, 1.0058594, 0.5136719, -2.171875, -0.8120117, -1.5488281, -0.5444336, -0.35595703, 2.4765625, -1.3046875, 1.6679688, 2.1953125, -0.5654297, 1.2070312, -0.093933105, -2.8964844, 0.93066406, 4.7539062, -0.17407227, 0.95703125, -1.3339844, -0.44311523, -1.7783203, 0.8925781, 2.7167969, 2.1269531, -0.058563232, -0.5288086, 0.9824219, 1.0996094, -0.46240234, 0.33325195, 0.82910156, -0.24572754, 3.53125, -3.5800781, -1.1123047, 1.3144531, 3.2714844, -3.5273438, -0.93652344, 0.7495117, -0.8671875, 0.5209961, -0.9980469, 0.008468628, 1.0517578, -0.08758545, 1.4726562, -0.18640137, 3.8007812, 0.7397461, -0.4814453, 0.6489258, -0.058624268, 1.8183594, 1.6113281, 1.3027344, 0.22558594, 2.1992188, 0.45410156, -2.8925781, 0.9663086, 1.3574219, 1.6083984, -0.17297363, 1.3300781, -1.1435547, -0.38378906, 0.36816406, -0.046447754, 1.0605469, -2.2304688, -0.7890625, 1.0361328, 1.0058594, -0.9277344, -1.4375, 0.1315918, 0.40600586, -3.1191406, 1.1152344, -0.51220703, 0.19055176, 0.1227417, -2.4238281, 0.67333984, -0.5078125, 2.8378906, -0.22607422, -3.3652344, -0.3203125, 1.7128906, 0.27685547, -1.3925781, 0.3239746, -2.0429688, -1.5146484, 4.6328125, 0.23413086, -0.7397461, 0.20825195, -1.5185547, 1.8007812, 1.9023438, -0.9584961, 0.20178223, 0.85498047, -1.0693359, -0.62109375, 1.1757812, 0.52490234, -0.5419922, -2.5898438, 1.2822266, 0.11541748, -0.86035156, 2.7792969, -3.8007812, -1.2255859, 1.5410156, 0.22131348, 1.4345703, 0.14770508, 2.2460938, 0.375, -1.1904297, 3.0546875, -0.77001953, -0.45922852, -1.015625, -5.4414062, 0.13928223, -1.9550781, -0.49975586, 1.5039062, -0.81884766, 0.6098633, 0.7133789, -0.60791016, -3.3808594, -1.3554688, -2.2441406, -0.6479492, -5.1640625, -1.1728516, -0.63183594, -1.5849609, -1.1552734, -2.1328125, 0.8227539, 1.9111328, 0.55908203, 1.9765625, 0.017868042, 2.5488281, -2.5664062, -0.019256592, -0.30908203, 1.125, -1.0556641, -2.1621094, 0.2927246, -1.5722656, 3.4316406, 0.8769531, -1.6269531, 2.6464844, 2.7402344, -0.2841797, -0.8286133, 1.1660156, 0.36376953, 4.2109375, -0.21936035, -3.5800781, -0.05871582, -0.92626953, 0.6479492, -0.0014791489, -1.5009766, 1.7109375, -1.640625, -0.6040039, 0.5175781, 1.84375, 0.5004883, 0.09857178, -4.8046875, -0.12475586, -0.8691406, -1.7353516, -2.0527344, -1.7431641, -0.50439453, -1.0410156, 0.19274902, -2.6308594, -0.016082764, -0.6220703, -2.1757812, -0.7441406, 3.3007812, 1.5078125, 2.9765625, 4.2578125, -2.1992188, -0.056854248, 2.9765625, -1.0957031, 0.30078125, 2.0175781, 1.2773438, -0.5498047, 1.1289062, 0.5571289, -1.9228516, -2.1523438, 1.0957031, -2.1816406, -0.5776367, -0.17224121, -1.1513672, -0.9423828, 0.03668213, -0.5214844, -1.8027344, 1.4589844, -3.21875, 0.122924805, -0.5620117, 0.71191406, -1.5302734, 0.31860352, 1.1152344, -0.27685547, 1.4921875, 2.4296875, 0.8227539, 1.203125, 2.6796875, -0.53515625, 2.4355469, -0.95214844, 0.41088867, -0.64941406, 0.2397461, -1.5039062, -1.5351562, 1.9453125, 1.9648438, -0.7705078, 3.1113281, 0.5878906, -2.5644531, 3.2871094, 1.2089844, -1.0302734, 0.36889648, 0.07556152, 0.0715332, 0.46020508, -0.5830078, -2.15625, -0.43603516, 1.1308594, -1.1376953, 2.0625, 0.07800293, -1.2744141, 1.5839844, -1.796875, -0.17712402, 0.029159546, -1.25, -2.109375, -1.6738281, 0.25708008, -1.4560547, 0.7104492, 2.4199219, -1.0058594, -0.9980469, 1.8740234, 1.3994141, -0.17053223, -0.7163086, -0.9291992, -0.76708984, 0.13781738, 0.65234375, 1.2558594, 2.2148438, -1.7041016, 1.7138672, -1.7333984, -0.1237793, -2.3769531, 2.5097656, -2.28125, 0.1394043, 2.125, 1.3378906, 1.2392578, -3.2929688, 1.3828125, -0.53759766, 0.4921875, -0.6040039, 0.46533203, -0.7651367, -1.4248047, -1.8134766, -2.421875, -0.56933594, -1.4921875, -2.1425781, -0.32714844, -1.4980469, -0.40844727, -1.2705078, -0.7651367, -0.7319336, -0.7705078, -0.76708984, -1.0488281, -1.1582031, -1.09375, 1.1875, 0.70947266, -0.17211914, -0.40234375, -0.6796875, -1.3925781, -3.6035156, 0.17138672, 2.1347656, -1.2304688, 2.1855469, 1.5439453, -1.9130859, 2.3320312, 2.9511719, 0.008178711, -0.1875, 1.6552734, -0.35424805, -0.18493652, 2.1679688, -2.4570312, 2.1757812, -0.9345703, -2.0585938, 1.0537109, -1.0683594, -0.68652344, -1.0605469, 2.1757812, -0.07531738, 0.7216797, 1.15625, -0.66503906, -0.34204102, 0.23693848, 3.3144531, 2.8515625, -2.8457031, 0.0019264221, -2.3378906, -1.6533203, -2.078125, -3.4785156, -0.96435547, 0.11590576, 0.12310791, 1.2773438, 0.19250488, 1.3730469, 2.4492188, 0.52685547, -1.5195312, 0.8828125, -0.35620117, 2.6191406, 1.8544922, -1.9794922, -3.140625, -1.2119141, 0.02911377, 1.1962891, 0.72753906, 0.041412354, -0.91259766, -2.7089844, 0.31347656, -0.19165039, 0.6933594, 2.0058594, 1.1621094, -1.4833984, 0.09661865, 1.0458984, 0.6430664, 1.9013672, -0.7705078, 1.5791016, -0.51464844, 1.9912109, 1.8466797, -1.2285156, 1.3828125, -1.1884766, 0.8720703, -1.1806641, -0.87890625, 0.5883789, -2.5507812, -1.7363281, -2.9042969, -0.42993164, -3.34375, 2.2167969, 1.0136719, 0.76220703, 0.19470215, 0.8623047, -1.4824219, 1.0498047, 1.8730469, -0.47558594, -0.16137695, -1.5966797, -0.19543457, -0.23132324, 1.5996094, 0.9194336, 0.17443848, 1.2539062, -0.42236328, -1.0791016, 1.0527344, -0.3569336, 0.18676758, 1.4697266, 3.3203125, 1.7900391, 2.1601562, 3.125, -0.010910034, 1.3769531, 2.96875, -0.6386719, -0.8100586, 2.2636719, 3.8613281, -0.09161377, -0.28515625, 0.19238281, 1.2460938, -0.32617188, -1.2617188, -0.6044922, 1.7080078, -2.5136719, 2.0820312, -1.6787109, 3.2480469, -1.1464844, 0.50146484, -0.10601807, -0.5307617, -0.124816895, -0.99658203, 2.6933594, -0.6611328, -0.36547852, 0.42529297, 0.8222656, -0.8432617, -4.1914062, 2.78125, -0.14135742, -2.9160156, -0.51464844, 2.9863281, 2.1035156, 0.47802734, 0.008895874, 1.9160156, -0.08062744, 1.9521484, 1.3046875, 1.1884766, -0.11212158, 1.1787109, 1.9365234, 2.2929688, -2.0898438, -2.4921875, 0.98828125, -1.3007812, -3.2402344, 1.6738281, 1.4267578, 1.8427734, 1.3085938, -2.3769531, 0.57714844, 2.0507812, 1.2041016, -2.4570312, -0.1217041, 0.5102539, -2.078125, 0.4008789, 0.9067383, -0.3269043, 3.234375, 2.7988281, -0.07244873, 3.0214844, 0.88916016, 0.04437256, 0.42114258, 0.06555176, -2.4628906, 0.0131073, -0.4699707, 1.2988281, 1.2617188, -0.41064453, 1.3808594, 1.4638672, 1.3681641, -0.82666016, 1.2080078, -3.4316406, -0.5620117, 0.12176514, -1.9199219, -1.2080078, -0.47631836, -1.796875, 0.32666016, 0.74853516, -0.6503906, -3.4511719, 0.9760742, 0.09106445, -1.8212891, -0.3659668, 0.8354492, -2.1308594, 1.3183594, -0.08679199, -0.69873047, 0.8886719, -0.32788086, 2.5664062, -1.5292969, -2.3632812, -0.95703125, 0.68603516, 0.032165527, -0.4033203, -0.8066406, -0.45825195, 1.1826172, 0.59375, 3.3554688, -1.9980469, 0.5546875, -0.03616333, -0.27392578, 0.030181885, 1.6279297, -0.20617676, -1.7900391, -0.8251953, -3.9746094, 0.18920898, -0.21972656, -1.7998047, -0.17211914, 6.0195312, 3.1015625, 0.37451172, -1.28125, -3.5195312, -0.63916016, 0.10205078, 3.4179688, 0.6538086, -1.1523438, -0.56640625, 0.8925781, 4.5585938, -0.30786133, -0.5390625, -1.1982422, -1.1484375, 1.5048828, -0.80078125, 0.60546875, -0.25390625, -0.7558594, 1.3476562, 2.4550781, 3.3730469, 1.0078125, 2.1816406, 2.5546875, 0.8417969, -2.4609375, 0.84814453, -1.4609375, 0.640625, 2.4101562, 0.5234375, 1.4316406, -0.052581787, -1.0068359, -5.4335938, -2.34375]}, "B00KCNV9KU": {"id": "B00KCNV9KU", "original": "Brand: Broil King\nName: Broil King 922164 Baron 440 Liquid Propane Gas Grill\nDescription: \nFeatures: 4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly\n10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length\n644-sq in total cooking area, including 444 sq. in of primary cooking space,\nReversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs\nDurable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces\n", "embedding": [-2.9941406, -0.75390625, 2.0039062, 1.0927734, -0.86376953, 0.13708496, 0.81933594, -0.5625, 0.04260254, 1.4658203, 1.6542969, -2.7734375, 0.1105957, -2.4121094, 0.13549805, -0.4104004, 0.5053711, 1.5419922, 2.453125, -0.13452148, 0.027511597, 1.6972656, 1.4462891, -1.390625, -1.3681641, 0.29638672, 3.4335938, -3.5136719, -0.24682617, -1.5732422, 2.1542969, -0.41333008, 0.6845703, 1.0791016, -2.5820312, -2.0957031, -1.7773438, 0.67529297, -4.28125, -0.24743652, 0.22009277, -2.8339844, 0.6689453, 1.53125, -0.68847656, 0.74902344, 0.40454102, 0.26538086, -1.2568359, 0.1517334, 2.7714844, 2.5039062, -0.21960449, 1.5322266, 0.38916016, 2.59375, 0.49291992, -0.5180664, 1.0556641, -1.4853516, 1.9140625, 1.1835938, -2.4707031, 0.70996094, -0.33496094, 0.7207031, 0.69189453, 0.34375, 0.34692383, -0.1430664, 1.6005859, -1.7851562, -0.93310547, -0.24243164, 0.5761719, -1.1835938, -2.0488281, 1.0234375, 0.32910156, -0.94433594, -1.3623047, 2.6210938, 0.9736328, -2.6269531, -0.4411621, 0.47680664, -0.38305664, -2.5507812, 1.3027344, 1.0908203, 1.1601562, 1.0341797, -1.6367188, -2.3632812, 2.6289062, -1.1269531, 1.9794922, 1.4746094, 0.36254883, 1.2861328, -0.29907227, -0.35302734, -3.4199219, -1.5507812, -2.5292969, -2.9023438, 1.3183594, -1.2890625, -2.5136719, 0.12231445, -0.6538086, -0.96191406, 1.6083984, 1.4619141, -0.023132324, 0.5048828, -0.91064453, 6.3398438, 0.6088867, 1.0136719, 2.6425781, -1.2607422, 1.8867188, -1.2109375, 0.54296875, 0.5908203, -1.0712891, 1.7695312, 7.0078125, -0.7475586, -0.2915039, -2.8515625, 3.5996094, -0.6044922, -0.24975586, -2.1855469, -1.1533203, 0.97509766, -4.8515625, 0.44873047, -0.7573242, 0.056243896, 0.31518555, 0.19311523, -2.6757812, -2.5058594, -0.56347656, 0.07098389, -1.5585938, -3.4101562, -0.37109375, -1.8896484, 2.5253906, -2.2402344, 1.1845703, -0.4140625, -2.0664062, -2.1484375, 2.7460938, 0.88623047, 0.38012695, -2.765625, -0.14416504, 0.9609375, -1.234375, -0.37353516, -0.9291992, 2.7851562, -0.29882812, 1.8007812, 0.8232422, -0.4736328, -1.2587891, -0.3630371, 0.7270508, -0.53564453, -1.3496094, 0.8286133, 0.09442139, 0.40698242, -1.3876953, -4.1679688, -0.23071289, 0.62597656, 1.0878906, 0.118652344, -1.0683594, 0.83691406, 2.3613281, 1.265625, 0.16357422, 1.6572266, 0.41552734, 0.49609375, -0.93652344, 0.039215088, -1.171875, -1.046875, 2.421875, -0.19604492, 0.02078247, -0.48095703, 0.12548828, -0.3227539, -1.9628906, -2.3984375, -0.7475586, -3.1601562, 1.0068359, 1.3378906, 1.09375, -1.1796875, 0.54785156, -2.0351562, 0.52246094, -2.4277344, 0.7451172, 1.3398438, 1.8251953, 2.9414062, -0.65478516, -0.8457031, 1.046875, 1.8613281, -0.93652344, 0.1694336, 1.0917969, 1.7929688, -3.0039062, 0.108947754, 1.0976562, -0.4892578, 0.58496094, 1.9765625, -0.70166016, 0.8828125, -0.5917969, -1.5654297, 0.3010254, -0.2475586, -1.046875, 0.12390137, -0.82666016, -3.3222656, -0.54296875, 0.41723633, -1.5449219, 2.5136719, 1.2363281, -0.3161621, -1.0351562, 0.34326172, 0.45458984, -0.3486328, -0.08868408, 0.015075684, -0.6425781, -0.066467285, -1.1708984, -2.7207031, 1.2324219, -0.45214844, -0.8696289, -0.5678711, -0.24438477, -1.8740234, 3.53125, 2.3125, -2.3652344, -2.46875, -0.6303711, -1.0996094, 0.9560547, -2.5214844, 1.1181641, 0.6879883, 0.08148193, 4.0039062, -0.2722168, 0.74658203, 0.24060059, 0.2927246, 0.33813477, -1.6699219, -0.86865234, 1.6513672, 1.7353516, -1.0097656, 0.46264648, 0.5151367, 4.4882812, 0.27075195, -2.9765625, 2.5292969, -1.2734375, -0.086364746, 3.3671875, -0.042053223, 0.13513184, -0.6171875, 1.9345703, 0.45532227, 1.5722656, 0.45776367, -2.15625, -2.0117188, 1.6875, 0.43188477, -0.6245117, 1.0439453, -0.053741455, -0.20825195, -2.7792969, 2.3417969, -1.0800781, -1.9414062, 3.3378906, -3.9355469, 1.7373047, -0.18005371, 0.6352539, 1.9697266, -0.39624023, -1.9628906, 0.34033203, 0.1586914, 0.6772461, 0.64208984, -0.5205078, 0.43945312, -1.8583984, -0.8071289, -0.7006836, -1.2783203, -2.4980469, 0.32836914, -1.984375, -2.9160156, 1.5380859, -1.3896484, -0.6225586, 2.15625, -2.1738281, -0.77490234, 0.33618164, -4.2929688, -1.6816406, -0.25756836, -0.2697754, -1.6484375, 1.3291016, -0.50634766, 0.10601807, -3.5292969, 1.5341797, -1.46875, 0.8461914, 0.4724121, -0.25341797, -1.9726562, 1.1054688, -1.8505859, -1.1630859, 0.49194336, 1.1445312, -1.0927734, 1.6142578, -0.9458008, 2.0117188, -3.0507812, -0.058807373, -1.0214844, 0.22729492, -2.9355469, -2.6601562, -1.6367188, -0.8676758, 3.0683594, -0.59765625, 1.6298828, 1.1220703, 0.42114258, 1.9873047, 0.46142578, -1.6416016, -0.20153809, 1.1152344, -2.1523438, -0.5288086, -2.9003906, 0.031280518, 0.14282227, -1.0751953, -1.4267578, 0.7944336, -2.1113281, 1.0058594, -2.1464844, -1.0585938, -1.7597656, 3.2734375, -2.5917969, -2.2460938, -2.3867188, -1.6005859, -3.0507812, -0.6557617, -0.59228516, 0.6347656, -2.4160156, 0.8901367, 1.1376953, -1.0410156, 3.2734375, -2.6875, -2.453125, 3.0878906, 0.27783203, -0.75, 3.2519531, -1.4414062, -1.6894531, -2.5898438, -0.8510742, 3.7578125, 0.9711914, 2.0039062, 0.064697266, 0.36987305, 1.484375, 0.49438477, 0.62060547, -0.64746094, -0.92333984, 2.9257812, -1.1533203, -2.6347656, 0.8510742, 2.9648438, -2.3886719, -1.3095703, 3.8945312, 1.8232422, 2.46875, 3.109375, 0.6933594, 0.6694336, -1.3466797, 2.9628906, 2.8144531, 1.2382812, 0.81933594, -0.47729492, -0.27685547, -0.39770508, 2.1328125, 2.4082031, -0.26293945, 2.1074219, 1.2119141, -0.6879883, -0.35205078, 0.58740234, -0.74365234, 1.1289062, -0.031799316, 1.4160156, -1.6142578, 1.0253906, -1.2119141, -1.1630859, 0.55078125, -0.5366211, -0.3557129, 2.84375, 1.0976562, 0.21936035, 0.49316406, 1.0224609, -0.8095703, -1.5253906, 0.94970703, -1.2070312, 1.0791016, -0.578125, -0.17810059, 1.2558594, -1.2734375, 1.8027344, -0.46728516, -0.875, 0.39160156, 3.0292969, 0.10626221, -1.1171875, 2.6992188, -0.45751953, -0.18835449, 1.3105469, 1.6445312, -2.2460938, 1.28125, -1.4960938, 0.9682617, -0.8066406, -2.4785156, 0.80566406, 1.3710938, 1.3632812, -0.053527832, 1.0195312, 1.8427734, 1.2783203, -1.9501953, 1.1650391, -4.6953125, -0.3828125, -0.65527344, -1.6035156, -1.6660156, 3.5605469, 0.47094727, 1.8935547, -0.28930664, 3.4257812, -0.9902344, 0.31225586, 1.3007812, -1.9492188, 0.40161133, -4.1796875, -2.625, 1.1074219, -0.5258789, -1.1533203, 0.59814453, -1.2949219, 0.4116211, 2.1640625, -0.5366211, -0.5473633, -0.53125, -1.6875, -0.15966797, -0.4008789, 1.2871094, 0.72753906, 1.0751953, -1.8076172, -2.9003906, -0.42236328, -1.1025391, 2.3867188, 3.0507812, -3.0429688, 0.09197998, -0.48364258, 0.18566895, 0.8935547, -0.35864258, 2.6835938, -0.5864258, 0.48535156, -2.7148438, 0.93066406, 2.3574219, 0.039855957, 2.2636719, -0.23461914, 0.024780273, -1.7734375, -1.4482422, 1.2714844, 3.4140625, -0.7109375, -3.5039062, -3.2597656, 1.9248047, -0.64501953, -1.1777344, 2.0390625, -1.9345703, -0.9584961, 1.8037109, 0.7182617, 0.82470703, 1.4033203, 0.07098389, -2.015625, -0.9580078, -0.5185547, -1.3632812, 0.4230957, -0.085754395, 0.3605957, -2.15625, 1.0117188, -3.0566406, -0.24536133, -2.3945312, -0.21777344, -5.0585938, 3.6113281, 3.9863281, 2.4726562, 2.5, -2.0332031, -0.1182251, -1.2480469, -0.8461914, -1.4375, 1.4550781, -1.1660156, 0.796875, 1.7050781, -0.4650879, -1.8642578, -0.6464844, 2.0292969, -2.4296875, -1.5332031, -2.0292969, 1.4863281, -1.9619141, -1.609375, 1.8261719, -1, 4.1171875, -0.73779297, -1.3476562, 0.83203125, 1.3701172, -0.33032227, -0.4633789, -0.97314453, 0.2319336, 0.2211914, 1.7265625, 2.0898438, -0.3046875, 0.5161133, -1.9033203, 1.8310547, -0.7705078, 0.59814453, 0.19274902, 0.43359375, -1.0058594, -1.84375, 1.328125, 1.7978516, 0.11627197, 3.1074219, 1.6533203, -2.2949219, 1.3447266, -0.28076172, -4.6289062, -1.1044922, 0.89990234, -1.5751953, 1.7783203, -0.33666992, -3.4941406, 0.2998047, 2.0957031, -0.25268555, -0.047424316, -0.35009766, -0.68115234, 1.9697266, -1.7958984, 0.2709961, -0.69921875, 0.8652344, -0.033203125, 0.27148438, 1.0722656, -1.9628906, -0.3544922, 0.73876953, 0.18579102, -2.0742188, 2.4335938, -0.4477539, 0.14099121, -0.6635742, 0.07336426, -2.4355469, -0.4494629, 2.2148438, -0.15100098, 1.1015625, 1.2109375, 1.6767578, -2.7460938, 1.1132812, -1.7021484, 3.125, -1.2519531, -1.5664062, 2.4296875, -4.0898438, 0.84375, -2.5117188, 0.9189453, -1.0888672, 1.8642578, 2.4414062, -0.63916016, -1.1386719, 1.3320312, -2.3007812, -4.0859375, -3.5214844, 0.7050781, 1.6103516, 0.23266602, 1.7822266, -1.8564453, 0.79003906, -0.74365234, -1.0458984, -2.0976562, 0.1697998, -1.6572266, -2.0546875, -1.1396484, 0.93066406, -0.13879395, 1.5019531, 1.0439453, 0.08227539, 1.1621094, -2.2207031, -1.1962891, 2.0234375, -3.1503906, 0.72021484, 1.9365234, -0.72021484, -0.6069336, 1.3261719, -0.8417969, -2.0839844, 3.4433594, -0.18249512, -1.0205078, 2.7363281, 0.39160156, -1.5107422, 0.3635254, -2.8828125, 1.0410156, -1.3496094, 0.9770508, 0.8774414, -2.203125, -1.0878906, 1.4169922, -2.1699219, 0.2529297, 0.9975586, 1.3515625, 0.296875, 2.3769531, -2.0371094, 1.0351562, -1.0839844, -1.2626953, 0.765625, -3.5214844, -0.5078125, -1.5019531, 0.1607666, 2.8144531, -0.5488281, -0.65771484, 0.73828125, -1.0488281, 0.27539062, 1.7900391, -2.3691406, 3.6054688, 2.5976562, -0.9448242, -0.09503174, 1.8359375, -0.1607666, 1.8808594, -0.17102051, -1.6074219, 0.47216797, -0.47216797, 0.76123047, 0.6582031, 0.8847656, 2.2910156, -0.21154785, 0.15966797, 2.2890625, 4.4023438, 0.52978516, 2.2851562, -0.037475586, -0.6645508, 0.6899414, 5.8085938, 1.9042969, -2.3164062, 0.50439453, -0.50927734, 1.4775391, 0.75683594, -0.66845703, -1.6572266, -1.9423828, -2.4375, -0.7792969, -1.6044922, -4.3828125, -0.51171875, 0.57177734, -2.4179688, 0.42626953, 1.6220703, 0.16967773, 2.2929688, 2.625, 1.8535156, -0.21203613, 0.69091797, -0.06390381, -0.2265625, 1.5947266, -4.0976562, 2.6601562, 0.39648438, -0.73583984, -1.5566406, 2.6503906, 0.008483887, 1.6152344, 1.8583984, 0.56152344, 2.3828125, 0.92822266, 2.8652344, -0.29589844, 2.2226562, 1.8134766, 0.23608398, 0.061645508, 1.5673828, 3.1816406, -0.36035156, -0.41723633, 2.3652344, -1.7021484, -1.3076172, -0.28637695, 0.32177734, -0.5571289, -1.4980469, 3.5664062, 0.22033691, -0.9682617, -0.6298828, -0.9165039, 1, -0.3713379, -0.15710449, -0.0056991577, 3.5058594, -1.3330078, 3.6015625, 0.021026611, 0.21179199, 2.7460938, -1.7119141, 0.9770508, 0.14489746, -0.44458008, 0.7158203, -0.16027832, 0.056274414, 0.9873047, 0.22949219, 0.53759766, 1.8740234, 0.5048828, -1.1884766, -1.6044922, 1.6914062, 0.25048828, 2.4355469, -1.0488281, -1.4580078, 2.8925781, -1.1728516, -2.9394531, -4.8398438, 3.09375, 0.8696289, 0.80322266, 1.3681641, -0.7270508, 2.953125, -0.49487305, 1.1855469, -3.4863281, 0.43041992, -0.43823242, -2.7695312, -0.6958008, 1.4541016, -0.37841797, 2.5390625, 2.1855469, -0.9472656, 1.3164062, -0.24438477, 1.1445312, 2.4179688, 0.56347656, 1.2841797, 1.1083984, -0.51220703, 3.0390625, 0.2939453, 0.20800781, -2.6132812, 2.6503906, -0.10876465, 0.6953125, 1.9892578, -1.7929688, 0.50683594, -0.33666992, 0.96240234, 0.8046875, -2.9355469, -1.4580078, -0.3154297, -0.04800415, -0.014480591, -2.8203125, 3.203125, 1.9892578, 0.16345215, 0.59375, 3.7421875, 0.58740234, 1.0644531, 1.0810547, 0.45385742, -0.37963867, 1.4013672, 0.671875, 0.82666016, -1.9335938, -0.59472656, 0.7573242, 1.4248047, -0.6821289, -1.7910156, -1.4414062, -0.4116211, -0.96728516, 1.0898438, -1.0888672, -1.3857422, 2.9101562, -0.21557617, -0.68066406, 2.1425781, 0.36572266, 1.015625, -3.3339844, -1.2255859, -0.9707031, -0.08605957, -1.2050781, 0.5209961, 1.7783203, 1.1083984, -0.46899414, -0.31713867, -3.3066406, -0.9633789, -1.4267578, 1.5449219, -1.90625, -1.2021484, 0.76904297, -0.6489258, 1.6796875, 0.2775879, -2.1269531, 1.5615234, -0.66064453, 0.9951172, 0.57714844, 1.6660156, -0.4111328, 1.21875, -0.27661133, 0.49365234, 1.4892578, 0.14953613, -0.63720703, -0.11303711, -0.25952148, -1.0800781, 0.5229492, 0.8154297, -0.37475586, -0.35327148, 2.7363281, 1.21875, 0.37768555, 0.21154785, -1.2353516, -4.0117188]}, "B08BF7G65N": {"id": "B08BF7G65N", "original": "Brand: SNAN\nName: 32\" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion\nDescription: \nFeatures: \u3010Easy to Assemble\u3011 This upgraded this 32 inch fire pit table to meet customers' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base.\n\u3010Excellent Accessories\u3011Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table.\n\u3010Safe And Test\u3011This 32 inch outdoor fire table is CSA certified. This propane fire pit table\u2018s heat output is 50,000 BTU. Every fire table's Ignition function is tested before leaving the factory and ignition device can easily adjust flame.\n\u3010High-class Materials & Quality Assurance\u3011The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life.\n\u3010Service\u3011It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.\n", "embedding": [-2.1210938, 3.1210938, 0.84521484, -1.5644531, 1.8359375, -0.38110352, 0.60009766, -0.9375, -0.21386719, 2.3710938, 0.18579102, -0.23596191, -0.9658203, -3.0722656, 1.2294922, 0.52246094, 0.09741211, -0.16027832, 1.1591797, -0.5546875, 1.6845703, -0.3034668, 0.84228516, -0.33520508, 1.0400391, -0.64941406, 2.4179688, -3.6308594, -0.78759766, -1.9423828, 1.3398438, 1.7070312, -0.875, 1.7548828, -1.5742188, -1.1210938, -0.24841309, 1.9208984, -2.3476562, -0.67089844, -1.84375, -0.45874023, 3.5585938, 0.1262207, -1.9492188, 1.4980469, 0.16601562, -1.5820312, -0.5888672, -0.6269531, 1.1826172, -0.064819336, 1.6064453, -0.10107422, -1.1835938, 1.9150391, -1.4101562, -3.25, 1.2958984, 0.3010254, 2.5136719, -0.65185547, -0.828125, 1.6240234, -1.6787109, 0.59228516, -0.09906006, -0.20361328, 0.7402344, 1.3388672, 1.6708984, 0.28393555, -0.49829102, 0.51904297, -0.71777344, -1.3603516, -4.21875, 2.6054688, 3.2597656, -0.61279297, 0.50634766, 1.3076172, 0.89501953, -3.1816406, -0.50878906, 0.13146973, -0.058807373, -1.3125, 0.012481689, 1.4804688, -1.7744141, 3.296875, -1.0595703, -3.6308594, 1.5957031, -1.4716797, -0.9111328, 0.03970337, -1.9189453, 0.25927734, 0.5288086, 0.52441406, -0.31982422, 1.8535156, -3.0292969, -0.14562988, 0.6274414, 1.6201172, -0.18164062, 0.51953125, -0.6791992, -0.34423828, 1.6533203, -1.7949219, -0.55078125, 1.7675781, 0.5258789, 1.3730469, 4.046875, -0.28637695, 4.8554688, 0.23168945, -0.2890625, -0.26464844, 1.9140625, 0.36889648, -0.64746094, 0.7651367, 2.1328125, -1.7119141, 0.55322266, -1.7597656, 1.0917969, -0.04071045, -2.7285156, -0.10058594, -1.2470703, -1.1484375, -4.1757812, 0.4111328, -3.0488281, 1.875, 0.89160156, 0.058044434, -3.1992188, -0.40527344, -0.515625, 2.4707031, 0.6411133, -2.5664062, 0.013832092, 0.4104004, -0.3269043, -2.5429688, 0.3005371, -2.421875, 1.0166016, -2.5898438, 4.0507812, 1.4873047, 1.4160156, -1.0107422, -0.19030762, 1.9951172, -0.9355469, -0.765625, 3.0234375, 1.2324219, 0.13110352, 0.28686523, -1.0195312, 0.5024414, -0.8178711, 0.3828125, -0.13891602, 0.63183594, 0.90234375, 2.2597656, 3.7675781, -0.72314453, -1.0048828, -1.4003906, 0.23901367, -0.6850586, -0.80566406, -1.6689453, -0.2758789, -1.8271484, 0.9663086, -1.7333984, -1.5048828, 0.82958984, -1.5722656, -0.16564941, 0.013725281, -1.7685547, -3.2949219, -3.1425781, 2.609375, 1.4169922, 0.0914917, 1.6923828, -1.9013672, 1.5859375, -3.203125, -2.6347656, -2.6113281, 2.3242188, 2.046875, 0.68603516, -0.27807617, -1.2060547, 1.6083984, 0.1895752, 0.17346191, -1.3984375, 1.1708984, 0.57714844, 0.31323242, 1.2441406, 0.3383789, -0.70751953, 2.4375, 1.5361328, 1.8173828, 0.9658203, 0.9472656, 0.46655273, -1.3271484, -1.3535156, 2.1894531, -0.047027588, 0.16687012, 1.6230469, -1.0185547, 2.1308594, 1.0400391, -0.5942383, 2.2597656, -1.5800781, 1.9863281, -1.8154297, -0.41088867, 0.36914062, 0.36254883, -0.36523438, -0.5073242, 2.0234375, 1.5761719, 1.4326172, -0.18139648, -0.55810547, -0.19152832, 1.2119141, -0.21130371, 1.28125, -0.31835938, -1.4287109, 0.8798828, -1.2910156, 1.6474609, 1.0087891, 0.5336914, 0.5629883, -0.94384766, -2.3046875, 1.8525391, 0.41552734, -1.9453125, -0.42163086, -1.4599609, -0.21325684, 3.4316406, 0.2088623, -0.45288086, -0.014198303, -1.1181641, 2.4628906, 0.5913086, 2.6835938, -1.0947266, -1.6113281, 2.0351562, -1.7597656, 1.2148438, 0.3815918, 1.3535156, 1.3476562, -0.9614258, 0.6669922, 3.0664062, -0.96484375, -2.1132812, 1.4501953, -0.60058594, -0.41015625, 1.1875, 0.84765625, 0.7988281, -1.0351562, 0.13586426, 2.6621094, 0.40307617, 3.03125, -2.7441406, 0.6772461, 0.77490234, -3.2910156, 0.35351562, -0.14746094, 0.6982422, -1.9931641, -0.8408203, 1.6748047, -2.4199219, -1.7851562, 1.7636719, -1.9804688, 0.79541016, 1.3271484, -0.0970459, 1.578125, -2.8984375, -0.18835449, -0.10797119, 1.9365234, -1.9960938, 0.7475586, 0.8227539, -0.4814453, -1.3164062, -1.5195312, 1.8291016, -3.2597656, -0.58447266, -1.9228516, -0.92333984, -0.84375, 0.2758789, -0.9033203, 1.1357422, 0.83154297, -1.546875, 0.3605957, -1.2568359, -1.8076172, -0.90234375, 1.6035156, -1.9599609, 0.061462402, 1.5273438, 4.1445312, 0.26904297, -1.3076172, -0.4104004, -0.13989258, 1.3310547, 1.8046875, 0.07574463, -0.7421875, -1.6240234, 1.3896484, 1.7099609, -0.6879883, 0.83251953, -3.2910156, -1.3291016, -3.7890625, -0.3708496, -0.7524414, -0.64746094, 0.76220703, 0.9277344, -1.5498047, -1.6201172, -0.35424805, -0.9165039, 4.3984375, 0.47705078, 2.7109375, -1.1533203, -0.8334961, 0.23608398, -1.1992188, -3.3710938, 1.3867188, -0.16333008, -0.6586914, -2.3632812, -0.9296875, -0.18322754, -0.59277344, -0.64746094, -0.41552734, 1.1816406, 1.4931641, 0.82958984, -1.0478516, -1.0429688, -0.65283203, 1.4892578, -0.19787598, -0.33813477, -1.5722656, -1.2744141, -0.5493164, -1.8505859, 0.03161621, 1.1503906, -0.8154297, 1.0742188, 0.88623047, 0.035125732, -0.52978516, -0.67529297, -2.9980469, 0.27807617, 2.6015625, -0.8955078, 1.328125, -2.0800781, -1.0498047, -3.2089844, 1.4677734, 3.1875, 2.21875, 0.5395508, -0.56591797, 0.4987793, 0.71435547, -0.3918457, -0.7836914, -0.27392578, -1.0400391, 3.3007812, -1.9960938, -0.44018555, -0.043395996, 2.546875, -3.4101562, -0.6972656, 0.4855957, -0.33740234, 0.86572266, -1.6289062, 0.63623047, 1.1738281, -0.32470703, 0.69433594, 0.015655518, 2.2714844, 1.0322266, -1.8505859, 1.0751953, 1.3701172, 1.1875, 1.9785156, 1.0585938, 0.80566406, 3.4667969, 1.6113281, -2.2734375, 0.86376953, 1.2753906, -0.075805664, -0.6801758, 2.6875, -1.6669922, -0.44018555, -1.28125, -0.30200195, 1.2441406, -1.6875, -0.50439453, 1.2871094, -0.27954102, -0.8330078, -1.4941406, 0.33081055, 1.3037109, -2.9179688, 2.7324219, 0.3630371, -0.95410156, 1.8789062, -0.58251953, 1.6865234, -1.4023438, 3.1914062, -0.74365234, -1.4570312, -0.11621094, 1.7060547, -0.027908325, -2.7910156, -0.18371582, -3.015625, -1.0332031, 4.2148438, -0.34716797, -0.42333984, -0.53271484, -1.0341797, 1.5576172, 1.9150391, -1.2128906, 0.94628906, 2.4199219, -1.1972656, -1.7529297, 1.09375, 0.36376953, -1.0712891, -2.1679688, 0.5073242, 0.29711914, -0.0826416, 2.2675781, -1.9697266, -2.0859375, 0.44140625, 0.95703125, 1.4082031, -0.2319336, 1.7255859, -0.36279297, -0.86083984, 1.8818359, -1.0214844, -1.3310547, -1.3398438, -3.9375, 0.8378906, -2.9589844, -0.54296875, 1.6210938, -0.52685547, 0.74609375, 1.421875, 0.72558594, -3.9023438, -2.3808594, -0.94873047, 0.089782715, -3.8105469, -1.296875, -0.5229492, 0.1574707, -0.099243164, 0.546875, 1.0136719, 2.5996094, -0.40307617, 1.0927734, 0.27563477, 1.2822266, -2.5742188, 0.9013672, 0.14929199, -0.076049805, 0.04776001, -1.3583984, 0.12768555, -3.2949219, 1.8330078, 1.4833984, -1.8173828, 0.9165039, 2.8496094, -0.0053482056, 0.15930176, 1.1142578, -0.18029785, 3.109375, 0.01209259, -2.3183594, -1.1533203, -0.9770508, -0.09460449, -1.1240234, -0.40893555, 1.2695312, -2.2246094, 0.6538086, -0.00869751, 2.3554688, 0.69140625, 0.59033203, -2.4589844, -0.114868164, -1.1738281, -2.375, -1.46875, -1.6386719, -0.49658203, -0.5644531, 0.6845703, -2.7402344, -1.296875, -0.83740234, -1.2460938, -1.1064453, 1.9912109, 1.5400391, 2.7832031, 3.2597656, -0.9692383, -0.57714844, 2.0722656, -0.5415039, 0.7001953, 2.546875, 0.89404297, -1.7099609, 1.1464844, -0.3774414, -1.0595703, -1.7275391, 0.9902344, -1.90625, -1.6074219, 0.18066406, -0.9848633, -1.5634766, -0.012245178, -0.8359375, -0.9658203, 0.31958008, -1.484375, -0.75927734, -1.1162109, 1.8095703, -0.57714844, -0.08416748, -0.72753906, -0.24206543, 1.1708984, 3.03125, -0.28930664, 1.4658203, 3.2910156, -0.4831543, 2.1132812, -0.59814453, 0.41479492, -0.2166748, -0.89160156, -1.5205078, -0.66552734, 1.7880859, 2.0292969, -1.6513672, 3.1640625, -0.24609375, -2.2519531, 3.0117188, 1.4882812, -1.5625, -0.31079102, -1.2490234, -0.9550781, 0.26391602, 0.038116455, -2.1445312, -1.3730469, 1.7207031, -1.5693359, 1.8076172, 0.2758789, -0.9199219, -0.8569336, -0.80126953, 0.092285156, 0.56640625, -0.828125, -3.2792969, -2.4609375, 0.6020508, -1.0683594, 0.77978516, 0.52246094, -1.0507812, -1.6396484, 2.3027344, -0.10473633, -0.5913086, -0.68408203, 1.1474609, 0.7451172, 0.8911133, 0.7426758, 0.7055664, 0.33789062, -2.4179688, 1.7734375, -1.1816406, -0.63183594, -0.76171875, 1.7880859, -0.9277344, -0.2783203, 2.4726562, 1.0322266, 1.9101562, -2.8671875, 0.8334961, -0.83496094, 1.4355469, 0.021392822, 1.3242188, -0.35107422, -1.0986328, -1.7412109, -3.0351562, -0.66552734, -1.4140625, -2.5390625, -0.6899414, -0.9746094, -0.8588867, -1.7539062, -0.24365234, -0.37036133, -0.1932373, -0.40576172, -1.3525391, -1.0195312, -0.35742188, 1.2529297, 1.59375, -0.92089844, 0.027694702, -1.2158203, 0.2854004, -2.484375, 0.10015869, 2.2851562, -0.5756836, 2.3886719, 0.3137207, -0.734375, 1.5283203, 2.5527344, 0.41552734, -0.53808594, 1.5048828, -1.7705078, -1.2509766, 2.3984375, -2.0136719, 0.671875, 1.1142578, -1.4560547, 0.8017578, -0.8979492, -1.3173828, -0.52441406, 1.6298828, 0.37768555, 1.4589844, 0.91552734, -1.2832031, -1.0048828, 0.36279297, 2.1152344, 1.8837891, -1.8681641, -0.73291016, -1.1699219, -1.2441406, -1.0507812, -2.59375, -0.13378906, -0.29663086, 0.29125977, 0.7685547, -0.33422852, 1.5195312, 1.9580078, 0.2368164, -0.28173828, 3.0898438, -0.70458984, 2.6894531, 1.4765625, -1.9541016, -3.0273438, -2.9980469, 1.0166016, 0.36889648, 0.7104492, -1.4238281, -0.17468262, -1.3837891, 1.4970703, -0.87158203, -0.7573242, 1.1738281, 1.2822266, -0.8979492, 1.0615234, 0.06365967, 0.103271484, 0.7290039, -0.86816406, 1.9775391, 0.9033203, 1.5224609, 3.0625, -1.8349609, 2.3476562, -1.8701172, 0.8725586, -1.5507812, -1.6425781, 1.2861328, -2.7539062, -1.984375, -1.1308594, -0.5913086, -3.3496094, 1.6064453, 1.3876953, 0.6225586, -0.14160156, -0.052947998, -0.87939453, 1.2509766, 1.8154297, -0.97558594, 0.2861328, -0.77734375, -1.2089844, 0.60839844, 1.8701172, 1.8447266, -0.06500244, 1.6220703, -0.1538086, -1.3701172, 1.0117188, -0.08850098, 1.1298828, 0.13964844, 2.9453125, 1.5615234, 1.5478516, 3.4589844, 0.20983887, 1.5419922, 2.6308594, 1.2363281, -0.2512207, 2.1386719, 2.4960938, -0.7973633, 0.22729492, -0.45117188, -0.014816284, -0.22253418, -0.88427734, 0.032562256, 0.17749023, -1.8447266, 2.5273438, -1.3583984, 2.0898438, -1.5878906, -0.42407227, -1.2177734, -0.39624023, 0.44604492, -0.32348633, 0.24536133, -0.11706543, -0.64941406, -0.3046875, 0.63378906, -0.46923828, -3.8984375, 1.9804688, -1.53125, -2.6015625, 0.28881836, 3.7539062, 1.8447266, 0.6586914, 0.12310791, 0.5214844, -0.27124023, 2.0644531, 2.3652344, 0.26220703, 1.3974609, 2.4589844, 2.1386719, 1.9433594, -0.66015625, -1.0605469, 0.9453125, -1.6523438, -3.2167969, 2.3652344, 1.4189453, 1.8447266, 1.0537109, -2.1855469, 0.6196289, 0.8383789, 0.9482422, -2.9414062, -0.23901367, 0.18237305, -0.87060547, 1.1484375, 1.1152344, -0.86083984, 3.0566406, 2.2949219, 0.46118164, 2.0273438, 1.3955078, 1.0810547, -0.48413086, 1.2958984, -0.9638672, 1.2099609, -1.4365234, 1.3916016, 1.03125, -0.7524414, -0.82373047, 2.8496094, 1.6669922, -0.5488281, 0.27685547, -2.703125, -0.08538818, 0.19812012, -1.4638672, -1.1279297, -0.4411621, -2.2441406, -0.25634766, 1.1416016, -0.12145996, -3.34375, 1.265625, 1.4248047, -1.8798828, -0.40527344, 0.5786133, -3.7949219, 2.1738281, -0.081604004, 0.13342285, -0.78466797, -0.6459961, 2.0410156, -0.8925781, -2.6445312, -0.75097656, 1.0761719, 0.41210938, 0.42993164, -0.85009766, -0.22265625, 0.78466797, 0.68603516, 3.921875, -0.75439453, 1.1630859, 0.35498047, 0.54003906, -0.91552734, 1.4238281, -0.9355469, -0.055480957, -0.6850586, -4.1640625, 0.40283203, -0.8671875, -2.3691406, -0.8198242, 4.7148438, 2.34375, 0.88183594, -1.3535156, -3.9609375, -1.5839844, 0.8022461, 3.5761719, 0.3581543, -1.2470703, -0.015556335, 0.87939453, 4.3476562, -1.0556641, 0.6772461, -0.9868164, -0.57373047, 2.2226562, -1.6123047, 0.21313477, -1.2138672, 0.07495117, 1.1982422, 2.4804688, 1.1191406, 0.78027344, 2.1210938, 1.6845703, 0.4921875, -2.9121094, 0.14526367, -2.1875, 0.90771484, 3.09375, 0.07922363, 1.6181641, -0.029220581, -2.0625, -4.7382812, -0.21533203]}, "B08T21432X": {"id": "B08T21432X", "original": "Brand: MCP Island Grills\nName: Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover\nDescription: *New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.\nFeatures: High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas!\nBlue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000.\n6 Burners each at 11,000 BTU's, 1 Cast Iron Side Burner at 12,000 BTU's, 1 Infrared Rear Burner at 12,000 BTU's, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides).\nOverall Exterior Grill Size: 89.5\" W x 25\" D x 47\" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24\" if you do not install the side towel racks on left / right side. Counter depth: 22.75\" not including the handles and knobs. Counter height: 35.5\", With the grill lid open overall height: 60\". If the side sink and side table are not installed Width: 58\".\nSink Basin Size: 10.5\" Wide x 12.5\" Deep x 7\" Tall. Rotisserie Size: Actual rod is 44\" long, but 38\" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38\" Wide x 18\" Deep. Warming rack on top is 37.5\" Wide x 6\" Deep. Side Burner: 13.25\" Deep x 10.5\".\n", "embedding": [-1.7558594, 0.23864746, 2.5839844, -0.19421387, 1.2705078, 0.26586914, 0.81640625, -2.2109375, -0.46704102, 1.1699219, 1.5986328, -0.029067993, -0.6123047, -0.9033203, 0.359375, 0.75341797, -0.14294434, 0.017150879, 0.9472656, -0.1743164, 1.2910156, 1.0117188, 0.94189453, -0.83251953, 1.8046875, 0.6274414, 2.2050781, -3.6621094, 0.11077881, -1.2119141, 0.3876953, 1.3027344, -0.15429688, 2.0996094, -2.5664062, -0.47753906, -1.765625, 1.2978516, -2.234375, 1.1875, 0.099609375, -0.26049805, 0.98779297, 0.25439453, -4.2382812, 0.5629883, 0.23010254, 2.0800781, -1.6601562, -1.5185547, 0.43115234, 1.6328125, 1.046875, -0.056884766, -2.0761719, -0.014450073, 0.08905029, -3.171875, 0.8779297, -0.80566406, 1.5253906, 0.29125977, -1.8574219, -0.13134766, -3.4921875, -2.8710938, -0.6489258, 0.59814453, -0.1965332, 0.81689453, 1.2402344, 1.7724609, -2.0917969, -0.93847656, 0.5361328, -1.9941406, -2.6035156, 1.0517578, 2.2109375, -0.32788086, -3.5, 2.4921875, 0.024398804, -0.9980469, 0.7416992, 2.8652344, -2.4199219, -1.3544922, 1.2871094, -0.6743164, -2.4394531, 1.4697266, -2.3808594, -2.9238281, 1.1015625, -3.0175781, 1.0332031, 0.98876953, -0.91796875, 2.390625, -0.3491211, 0.8354492, -1.0673828, -0.93359375, -0.12866211, -1.7744141, 2.6855469, 0.2944336, -3.3691406, 0.8588867, -1.9697266, 0.25195312, 1.71875, -0.40234375, 2.6171875, 1.2382812, 0.6088867, 1.2324219, 1.4160156, 1.6289062, 3.4863281, 0.2919922, 0.5019531, -0.7182617, -0.31103516, 0.35253906, -1.7597656, 1.1582031, 4.8242188, -1.9707031, 0.19152832, -0.87109375, 1.7080078, 0.34179688, -2.7363281, -2.3925781, -1.1367188, -1.4179688, -2.609375, 0.7421875, -1.6494141, 1.6425781, 1.0166016, -1.2236328, -3.8945312, -0.6582031, -0.5209961, 0.19506836, 0.40820312, -2.0800781, -0.6826172, -2.5390625, 1.6591797, -0.6323242, 1.0693359, -1.5322266, -0.83203125, -2.4316406, 3.8574219, -0.46850586, 0.12445068, -2.6230469, -2.2402344, 0.7841797, -0.23449707, -1.9726562, -1.5957031, 2.3730469, 0.16235352, 1.3886719, -1.1728516, -2.7539062, 0.09698486, -0.10290527, 1.1484375, 1.3417969, -1.5654297, 2.0839844, 0.059387207, 0.3293457, -0.5957031, -2.1816406, 1.7998047, 1.4902344, 0.8666992, -1.9160156, 0.17272949, 0.40478516, 0.49658203, -1.2998047, -0.33764648, -1.3408203, -0.08453369, 0.7294922, 0.47973633, -0.6933594, -2.3730469, -0.89941406, 1.5957031, 0.22998047, 0.6665039, -0.96191406, -0.38061523, 1.7929688, -1.3818359, -2.0820312, -1.7519531, -1.4951172, 1.4384766, 2.5449219, 1.6679688, -1.4892578, 0.6298828, -1.0742188, 0.47973633, -1.5839844, 2.0585938, -0.4519043, 0.83154297, 2.6230469, 0.4255371, 0.4128418, -0.52197266, 2.7128906, -0.6611328, 2.125, 1.8691406, 0.92578125, -1.5712891, 0.8276367, 2.9511719, -0.47851562, 0.63183594, 1.1513672, -0.2722168, 1.8964844, 1.4580078, -4.46875, -0.18664551, -0.5605469, 0.10601807, -2.203125, -0.4650879, -0.76171875, -1.0859375, 2.8027344, -3.4296875, 1.4169922, 1.0849609, 0.58447266, -1.3203125, -0.69091797, 0.55810547, 0.20349121, -0.25268555, 1.2861328, -1.0566406, -0.41137695, -3.1679688, -3.0605469, 1.765625, 0.9243164, 0.6533203, 1.3378906, 0.48120117, -2.3242188, 2.1425781, 0.17834473, -3.8515625, -2.1425781, 1.0966797, -0.09222412, 1.9121094, -0.68896484, 1.4365234, 1.5410156, 0.8544922, 1.8505859, 0.6220703, 0.73291016, 0.59375, -0.17492676, 3.3007812, -3.3730469, -0.02053833, -0.2746582, -0.31713867, -0.32543945, 0.23095703, 1.9208984, 5.3125, -0.6953125, -2.7636719, 1.3525391, -1.0878906, 0.5551758, 1.328125, -1.3173828, 0.41918945, 0.87597656, 0.8408203, 0.79248047, -0.29833984, 2.6738281, -0.9736328, -1.8300781, 1.0292969, -3.9238281, -0.027374268, -0.2548828, -0.83251953, 0.9477539, -2.3085938, 0.18225098, -0.08508301, -1.2167969, 2.8378906, -1.9892578, 0.4729004, 1.7763672, 0.79052734, 0.90234375, -2.4941406, -0.7529297, -0.70214844, 0.84814453, -0.70214844, 0.90283203, 1.4619141, -1.7470703, 1.0615234, -0.8989258, 1.2363281, -2.4824219, -1.2851562, -1.9248047, -4.1835938, -0.25195312, -0.27294922, -1.0214844, -0.4650879, 0.6621094, -1.9746094, -0.66015625, -1.15625, -2.4609375, -1.546875, -0.6459961, 0.32177734, 2.2226562, -0.36767578, -1.6542969, 0.070251465, -4.7617188, 1.4912109, -0.8955078, 0.27197266, 1.1113281, -0.42944336, 0.65722656, -2.0625, 0.44873047, -1.0039062, -0.35083008, 1.0478516, -0.76416016, 0.041046143, -2.4707031, -0.17077637, -4.2890625, 1.1054688, -1.9375, 0.49902344, -2.1992188, -0.62939453, -0.34277344, -1.2216797, 3.1738281, -0.671875, 0.3310547, 0.7988281, 1.6113281, 1.3203125, -0.30419922, -1.1123047, -0.84375, 1.4951172, -1.7744141, -1.7578125, -1.4628906, -0.36376953, -1.0273438, -0.8276367, -0.70703125, 2.3554688, -2.3457031, 1.5234375, -0.38745117, -0.734375, 0.43969727, 0.0340271, -0.7626953, -0.65722656, -2.6679688, -0.16223145, 1.1445312, -0.7993164, -0.52490234, 1.6074219, -1.8691406, 0.36132812, 0.68847656, -1.0771484, 0.03869629, -1.4453125, -3.5800781, 1.9384766, -1.1396484, -3.625, 1.8320312, -1.8828125, -1.1796875, -3.15625, -1.8740234, 2.3457031, -0.21350098, 1.5703125, -1.1484375, -0.5751953, 0.9135742, 0.49682617, -0.55126953, -0.6904297, -0.14770508, 4.0507812, -2.4648438, -1.0595703, 0.7109375, 3.1445312, -1.859375, 0.36645508, 1.9892578, 0.5205078, 1.7734375, 0.6611328, 2.1835938, 0.8491211, -1.1601562, 0.3022461, -0.41333008, 1.2373047, -0.00026226044, -3.390625, 1.0019531, -1.8105469, 2.1269531, 0.7631836, 0.29077148, 2.5839844, 2.2539062, 0.90722656, -1.5410156, -0.7163086, -0.17272949, 1.0390625, 0.07702637, 3.6542969, -1.953125, -0.43164062, -0.06329346, -0.6147461, -0.2590332, -1.1855469, 0.27026367, 2.703125, -0.15820312, 0.36621094, -0.703125, 1.3496094, 1.2714844, -1.3789062, 1.0253906, -1.515625, -0.97802734, 1.0595703, -0.48583984, -1.1552734, -1.5898438, 1.7226562, -0.9213867, -1.3330078, -0.98095703, 2.9472656, -0.7392578, -3.0585938, -0.5263672, 1.5380859, -2.15625, 1.3476562, -1.7021484, -0.05807495, 1.4443359, -2.3203125, 1.5908203, -0.5761719, 0.0056266785, 0.28466797, 1.1230469, 0.50683594, 0.4333496, 0.32763672, 1.6904297, 0.6894531, -2.5253906, -0.61279297, -2.8300781, 0.9555664, -0.26660156, -0.5004883, -2.4335938, 2.90625, 1.9423828, 3.5390625, -2.7167969, 3.5507812, 0.12408447, -1.0224609, 1.4873047, -3.6152344, 0.6850586, -2.78125, -3.3300781, 1.5439453, -2.1445312, -0.103759766, 1.4716797, 1.4541016, -0.2890625, 1.5146484, 0.3762207, -3.421875, -1.0947266, -1.1796875, 0.4897461, -0.52685547, -1.7636719, 1.5097656, 0.8808594, -1.9462891, -1.4990234, -0.38208008, 0.27929688, 1.8925781, 0.3154297, -2.125, 1.9335938, 0.46606445, -0.3935547, -0.92626953, 0.0059051514, 1.203125, -1.0332031, -0.47680664, -1.2314453, 1.1669922, -0.24121094, 0.75097656, 0.9433594, 1.78125, -0.45483398, -1.0322266, -1.8662109, 0.24731445, 2.3105469, -0.42773438, -0.61328125, -1.6367188, 1.421875, 1.5654297, 0.30786133, 0.9741211, -0.5805664, -3.5390625, 0.33276367, 0.78222656, 1.6240234, 3.4277344, -0.98046875, -1.0117188, -0.3371582, 1.3369141, -1.4130859, -1.2626953, 1.1201172, -0.39794922, -1.8662109, 1.2539062, -2.0371094, 1.5878906, -1.4912109, -1.8212891, -2.7285156, 2.0273438, 2.7167969, 2.5292969, 2.6933594, -1.4599609, -1.5615234, 1.4609375, -0.6064453, -0.099609375, 1.0439453, -2.0546875, -0.80615234, -0.41479492, 0.16479492, -1.5146484, -1.1376953, 1.4140625, -0.4567871, -1.3046875, -1.2304688, 0.4020996, -0.8095703, -0.56347656, 1.3261719, -0.7783203, 3.7402344, -2.8574219, 0.40966797, 1.5996094, 1.4111328, -2.8574219, 0.15344238, -1.1953125, 0.7128906, 1.1298828, 1.7578125, 0.97216797, -0.88964844, 0.30297852, -0.9345703, 3.1367188, -0.84814453, -0.046966553, -0.3005371, -0.4489746, 0.19946289, -2.3046875, 1.90625, 3.9589844, 1.1298828, 1.5078125, 0.3305664, -2.9941406, 1.8984375, -0.6074219, -2.9746094, -0.8354492, 0.33862305, -0.4970703, 1.0234375, 1.1191406, -4.2070312, -0.18737793, 4.0234375, -1.4033203, -0.04031372, 0.53271484, -1.2753906, 0.34057617, -1.6542969, -0.73876953, 0.16552734, 0.1574707, -0.5625, -1.8828125, 0.30419922, -1.7822266, 1.5537109, 3.5898438, -1.1035156, -1.9130859, 2.8300781, 0.35766602, 1.3994141, -0.7841797, -0.85546875, -1.359375, -0.19580078, 4.71875, 0.89990234, 1.5214844, 0.3154297, 3.0292969, -0.5805664, 0.7265625, -1.7929688, 3.3828125, -2.1347656, -1.328125, 2.609375, -2.9746094, -0.77978516, -2.4902344, 0.9560547, 0.33154297, 2.7441406, 3.2773438, -0.7895508, -0.41577148, 0.16589355, -1.3740234, -4.828125, -1.1484375, 0.9135742, -0.048583984, -0.48876953, 0.73339844, -0.51708984, -0.5908203, 0.11138916, 0.58203125, -0.6430664, 0.8076172, 0.38745117, -0.6640625, -0.6386719, -1.078125, -1.625, 0.86816406, 0.80566406, -0.2709961, 1.2832031, -5.2382812, 0.123535156, 0.3713379, -0.5078125, -0.2619629, 2.2851562, -0.07501221, 1.0410156, 0.4638672, 0.4423828, -2.8515625, 2.03125, -4.4023438, -0.05496216, 1.5644531, 0.11956787, 1.4482422, 0.8354492, -0.9086914, -0.42382812, -3.6796875, 0.52001953, -0.32714844, -0.76464844, 1.4824219, 1.0185547, -0.5854492, -0.30737305, 0.18151855, -0.05303955, 0.36694336, 1.1396484, -0.55078125, 0.41967773, -2.4628906, -1.6972656, 0.16210938, -1.9921875, -0.05215454, -2.3320312, 1.5644531, 3.5625, 1.3662109, 0.25170898, 1.5419922, -0.64404297, -0.65625, 1.5234375, -0.12200928, 2.2382812, 1.6894531, -2.3691406, -1.6748047, -3.0097656, -0.004432678, 0.19799805, 1.0439453, -2.4746094, -0.6323242, -0.7216797, 0.15100098, 1.0625, 1.9882812, 3.0332031, 1.7861328, -2.4648438, 0.6352539, 4.1367188, -1.1064453, 2.4980469, 1.3408203, 1.0761719, -0.29467773, 4.9101562, -0.53271484, -1.6689453, 3.09375, -2.3964844, -0.10394287, -0.24499512, -3.2773438, 0.9091797, -0.2487793, 0.47070312, -3.3984375, -0.8466797, -1.0117188, 2.5722656, -0.13708496, -0.5878906, -0.11218262, 1.1884766, 2.4101562, 3.2050781, 0.95996094, 2.296875, 0.6689453, 0.82128906, -0.83496094, 0.16418457, 1.1904297, -1.0380859, -0.4169922, 0.8535156, -0.9067383, -1.4892578, 4.2734375, 1.1132812, 1.1181641, -1.1767578, -0.3972168, 2.5488281, 1.9472656, 3.7929688, 0.6298828, 1.8007812, 2.9550781, 0.037200928, -0.70410156, 0.921875, 2.9160156, 1.4941406, -0.05206299, 1.5029297, -0.6464844, -1.3681641, 0.4572754, 0.6870117, 2.703125, -1.171875, 3.2128906, -0.3605957, -0.1463623, -1.6132812, -0.85498047, -0.984375, 0.0725708, -1.1904297, -0.11993408, 2.2089844, -0.90185547, 1.3564453, -0.79541016, -0.5366211, 0.95751953, -2.8007812, 1.0722656, 0.93652344, -1.2314453, -0.5214844, 0.55029297, 2.0976562, 0.017074585, 1.2675781, 1.9707031, 0.60302734, 2.8339844, 0.33984375, -0.74853516, 1.0849609, -0.18481445, 2.8691406, -0.9082031, -1.8535156, 1.4990234, -2.2246094, -3.0234375, -4.0859375, 2.4980469, 2.5566406, 1.2177734, 1.4003906, -2.71875, 1.7451172, -0.5385742, 3.5078125, -2.1386719, 2.4648438, -0.3881836, -2.1835938, -1.3447266, 0.7270508, 0.92822266, 0.59228516, 1.2216797, -1.1298828, 1.6416016, 1.0332031, 1.515625, 3.4707031, 2.6679688, 1.4003906, 0.55810547, -0.9560547, 3.6367188, 2.6152344, 1.1123047, -1.0214844, 1.0849609, 1.0888672, 0.58740234, 0.40185547, -1.6865234, 0.62109375, 1.2539062, -0.16992188, -0.11437988, -1.2314453, -0.6591797, -0.4501953, -0.35717773, 0.09899902, -1.5927734, 2.8984375, 3.5078125, 1.8183594, 1.1357422, -0.6621094, -1.6191406, 3.5058594, -0.46557617, -1.8994141, -0.71435547, -0.15344238, 0.9604492, 1.7587891, -1.1035156, 0.53125, -0.18725586, 2.4199219, -1.4765625, 0.60253906, -1.3134766, 1.8857422, -1.1923828, -0.57714844, 0.54003906, -2.3925781, 3.9082031, 0.6699219, -1.4833984, 3.0644531, -0.7373047, -0.20861816, -3.0820312, 0.47924805, -1.1220703, -1.4707031, -0.8432617, 0.60791016, 5.8164062, 0.984375, 0.7753906, -1.046875, -4.9023438, 0.070617676, -1.53125, 2.3554688, -0.26611328, -1.7119141, 0.16662598, -0.12890625, 2.1972656, -0.97558594, -1.3574219, -0.91259766, -0.51953125, 1.0488281, -0.5410156, 2.4042969, -0.93896484, 1.6289062, 1.0253906, 2.4882812, 1.8798828, 0.19677734, 1.8642578, 3.9609375, 0.50683594, -3.4238281, 1.4355469, 0.6113281, 1.5253906, 0.03778076, -0.30200195, 0.40551758, -0.7416992, -0.11193848, -1.359375, -2.03125]}, "B000BWFTJE": {"id": "B000BWFTJE", "original": "Brand: King Kooker\nName: King Kooker 24WC 12\" Portable Propane Outdoor Cooker with Wok, 18.5\" L x 8\" H x 18.5\" W, Black\nDescription: \nFeatures: Sport Type: Camping & Hiking\nCountry of origin : United States\nPackage weight : 10 Lbs\nProduct type : Outdoor Living\nPortable propane outdoor cooker with 24-inch bolt-together frame\n", "embedding": [-3.1269531, 0.7998047, 2.4511719, -0.7753906, -1.2998047, 0.38305664, 0.9301758, 0.3762207, -3.2734375, 1.5078125, 2.2265625, 0.095581055, 0.39672852, -2.578125, 1.3408203, 0.74072266, -1.8994141, 0.7871094, 0.6640625, 0.046051025, 2.328125, 0.1385498, 0.4675293, -1.8115234, 2.7421875, -0.35546875, 5.2460938, -3.7226562, -0.14916992, -1.9082031, 1.3457031, 0.7792969, 2.7109375, 1.4882812, -1.0566406, -0.65966797, -2.3496094, 1.3154297, -2.5644531, 1.6152344, -0.5307617, -1.7988281, -0.35375977, 1.2675781, -1.5761719, -2.3554688, 0.6347656, -1.1220703, -0.9213867, -0.22436523, 1.3779297, 0.013694763, 1.0390625, 1.5029297, -3.0898438, 1, -1.3886719, -1.3193359, 1.3300781, 0.016647339, 0.9399414, -0.9892578, -1.1425781, 1.7128906, -0.93896484, 2.0351562, 1.3027344, -0.1496582, 1.0966797, 0.68603516, 1.8759766, -0.8051758, -1.0273438, -1.0917969, -0.75927734, -0.9248047, -2.2988281, 0.6455078, 1.1679688, 0.9555664, -0.609375, 1.203125, -0.024627686, -2.7792969, -0.77246094, -1.4882812, -0.011108398, -1.1308594, -0.29711914, 2.4101562, -2.1503906, 1.5478516, -1.4003906, -3.3984375, 2.6425781, -0.4050293, -1.6474609, -0.1105957, 2.0058594, 0.8144531, 0.8691406, -0.875, 0.21447754, -0.4873047, -2.2949219, 0.1418457, 1.2158203, -0.6074219, -2.7421875, 1.3554688, -1.7695312, -2.7011719, 0.6201172, -0.2915039, 0.4033203, 1.3134766, -0.6635742, 1.796875, 0.87841797, 0.13427734, 4.015625, -1.0869141, 0.97998047, -0.9760742, 1.7304688, -0.5703125, -1.3359375, 0.9926758, 4.1015625, -1.0986328, 0.54345703, 0.86279297, 2.8398438, -0.35009766, -0.8730469, -2.3515625, 1.0996094, -1.9111328, -3.2011719, 0.6503906, -2.3945312, -0.84375, 2.7578125, -1.5292969, -4.1796875, -2.09375, -0.34301758, 0.98779297, -0.8486328, -0.7001953, -0.81103516, -0.4375, 0.5317383, 0.63671875, 1.6201172, -0.07543945, -1.6142578, -2.78125, 2.7597656, 0.72265625, 1.2363281, -0.46948242, -1.0966797, 1.9228516, 0.08874512, 0.1628418, -0.27514648, 1.2158203, -0.53271484, 1.0898438, -0.6748047, -1.4970703, 0.5410156, 0.13049316, -0.17834473, 0.15527344, -1.6992188, 1.0068359, 1.2236328, 0.79052734, -0.79248047, -4.6484375, -0.21887207, 1.8779297, 0.79541016, -1.6699219, -2.8847656, -2.3398438, 0.15405273, -1.015625, -0.69091797, 1.4130859, -1.2490234, -0.34375, 0.37426758, -1.1445312, -0.79003906, -1.8242188, 1.015625, 3.4472656, -0.7314453, -1.4892578, 1.4277344, -0.6538086, -1.9736328, -0.052520752, 1.0283203, -1.5009766, 2.2128906, 2.7929688, 1.0820312, -1.5185547, 1.5400391, 0.3305664, -2.0371094, -3.9179688, 0.16723633, 1.1572266, 1.7099609, 2.4101562, -0.2993164, -0.66259766, -0.87109375, 0.10369873, -0.95458984, 2.0136719, 1.6464844, 1.2119141, -0.42822266, -1.3183594, 1.7070312, 0.0715332, -0.4404297, 1.6806641, -1.4931641, 2.5976562, 2.4257812, -1.0644531, -0.011528015, 0.85791016, 1.0332031, -1.7568359, 0.67871094, -1.6982422, -3.2714844, -0.33911133, -1.1308594, 0.9243164, 0.73876953, 0.80029297, -0.84375, 0.71533203, -2.7597656, 0.20275879, 0.124938965, 1.6289062, 1.2080078, -0.2006836, -0.2265625, -1.2324219, 0.8515625, 1.6904297, -1.5927734, 0.92285156, -0.054382324, -0.56347656, 2.5957031, 1.09375, -3.1054688, -0.49658203, -0.13024902, 1.8828125, 2.1054688, 0.1772461, 1.5078125, 0.18688965, -0.38256836, 2.6894531, 0.36767578, 2.2148438, 0.017700195, -1.1992188, 0.5703125, -2.4882812, 0.15673828, 0.48168945, 0.023666382, -0.8383789, -0.7817383, 3.9335938, 5.5898438, -0.24804688, -2.3730469, 2.7851562, -0.8129883, 1.9335938, -0.08831787, -0.7182617, -0.23950195, -0.32202148, 0.99316406, 2.6640625, -0.31860352, 1.0380859, -2.125, -1.453125, 1.2509766, -1.7841797, 1.6240234, -0.28076172, -0.4482422, -0.6352539, -2.5644531, 2.0117188, -0.67089844, 0.08483887, 1.4746094, -3.6640625, -0.14477539, 2.6582031, -1.1669922, 1.3193359, 1.5957031, -2.7402344, 0.24621582, 2.9355469, 0.7817383, 2.3398438, 0.7998047, -1.0117188, -0.8588867, -0.92626953, 0.2619629, 0.0063056946, -2.7480469, -0.44140625, 0.035125732, -1.3232422, 1.0224609, -1.4306641, 0.34985352, 1.9072266, -0.7788086, -0.5649414, -1.5732422, -5.1796875, -1.0996094, -0.17126465, -1.9404297, -1.3193359, -0.15148926, 0.7661133, -0.86816406, -5.40625, 0.8823242, 1.0927734, 1.203125, 1.2929688, -2.4902344, 0.8754883, 1.7304688, -2.2675781, -1.1210938, -1.3681641, -1.0634766, -3.7109375, 1.8095703, -1.7236328, 2.5292969, -0.7519531, 1.1992188, 0.56396484, -1.6259766, -3.1445312, -0.9501953, 0.3996582, 0.3701172, 5.53125, -1.1269531, 1.5820312, -1.2070312, -0.5864258, 1.1953125, -1.1025391, -1.1552734, 0.14050293, -0.37329102, -0.35327148, -0.40795898, -2.7773438, -1.0205078, -2.1464844, -0.29760742, -1.6533203, 1.9560547, -0.34448242, 0.88720703, -2.1992188, 0.67529297, -2.8808594, 1.5449219, -0.5522461, -1.4453125, -3.1816406, -1.0869141, -2.1601562, -1.0576172, -0.38305664, 2.0898438, 0.13891602, -0.03086853, 2.2597656, -0.49072266, 1.5039062, 0.07519531, -2.9707031, 3.890625, 0.88964844, -0.10687256, 1.5292969, -3.0019531, -1.4628906, -1.0839844, 0.671875, 4.4140625, 0.1171875, 2.8378906, -1.3574219, 2.3652344, -1.3857422, 3.3828125, -1.1259766, -0.5385742, 1.875, 3.6523438, -0.16931152, -0.8149414, 1.8242188, 0.27954102, -2.7597656, 0.83691406, 0.91845703, 0.87109375, 0.7402344, 2.3242188, 1.6796875, -1.5986328, 0.076538086, 1.4033203, 3.6269531, 1.1513672, 1.3740234, -0.06149292, -1.0820312, 0.26733398, 1.0507812, 1.2099609, 1.0654297, 3.7441406, 3.3183594, 1.7177734, -1.7138672, -1.125, -0.58496094, 3.3984375, 0.9433594, 2.6738281, -0.8125, 0.25439453, -0.07745361, -1.3007812, 1.1513672, -1.6728516, 2.5058594, 2.1347656, -0.11633301, -0.9448242, 1.2089844, -0.71484375, -0.60302734, -2.7148438, 1.0546875, -2.0371094, -0.49145508, -0.17980957, -1.7880859, -0.5048828, -3.1484375, 2.0664062, 1.4892578, 0.29077148, 0.83154297, 1.8818359, 0.7495117, -1.3154297, -1.5322266, 0.29711914, -3.1777344, 1.6240234, 0.52783203, -1.2148438, 0.9472656, -0.22387695, 0.97753906, 0.9555664, -0.7714844, 0.68603516, 1.4882812, -0.52246094, 0.6279297, -0.16577148, 0.8701172, 0.6044922, -2.0527344, 0.5756836, -2.9023438, -0.5385742, 1.0302734, -2.9355469, -1.1152344, -0.6850586, -0.9223633, 1.6728516, -1.1816406, 3.2148438, -2.7050781, 0.18933105, 1.1064453, -1.7275391, -0.7392578, -0.9785156, -2.9140625, 2.0273438, -2.0351562, -0.49291992, 0.70654297, -1.7285156, 0.35742188, 1.4345703, 1.5175781, -0.7685547, -0.40551758, -2.4628906, 1.5078125, -2.484375, 1.8574219, 0.1907959, -1.2265625, -2.6992188, -2.5605469, 0.9902344, -0.9423828, 1.8925781, 1.1777344, -2.8769531, -0.17822266, -0.77783203, 1.0332031, -0.3322754, 1.2158203, 0.40063477, 0.38793945, 0.23425293, -1.8271484, 1.8388672, 3.0449219, -0.24572754, 1.7304688, 3.640625, 0.71533203, -1.0097656, -0.19750977, 0.21154785, 2.7558594, -0.25390625, -1.515625, -2.4023438, 0.95166016, -0.8017578, -1.1513672, 0.3815918, -0.28833008, 0.41918945, 0.84716797, 0.7861328, 1.3232422, 1.9775391, 0.57958984, -0.79248047, 1.2988281, 0.67871094, -0.6850586, 0.2199707, -0.59521484, -0.02319336, -3.0429688, 1.4072266, -1.4013672, -1.5634766, -1.0175781, 0.3623047, -1.8134766, 2.484375, 3.3164062, 2.2324219, 1.9365234, -2.2402344, -3.0273438, -1.3349609, 0.34350586, -0.92822266, 1.0009766, 0.84375, 0.10998535, 1.3369141, 0.7705078, -1.5078125, -0.33764648, 1.0878906, 1.8857422, 0.51123047, -2.3261719, 0.9951172, 0.16723633, -0.9189453, -1.3925781, -0.40649414, 2.7871094, -3.4257812, -1.7099609, 1.1884766, 0.32177734, -3.5644531, -0.1451416, -1.2783203, -0.6772461, 0.1628418, -2.3105469, 1.1738281, -0.12878418, 2.4550781, 0.052520752, 2.5195312, -0.22570801, -0.67626953, 1.1464844, 0.89746094, -2.171875, -1.6298828, -0.011260986, 0.9711914, 1.3378906, 3.3261719, 1.2363281, -0.81640625, 1.1816406, 1.3701172, -0.8769531, -2.2480469, -1.3388672, -1.0214844, 2.2402344, -1.1533203, -2.5644531, 0.09301758, 1.3779297, -0.16296387, 3.6230469, 0.18688965, -1.4785156, -2.4121094, -3.3535156, -0.5878906, -1.6279297, -1.6650391, 0.8691406, -1.3779297, 0.8432617, -2.2109375, 0.9868164, 2.3027344, -1.1875, -1.1152344, 1.2685547, -2.9511719, -1.0332031, 0.28027344, -0.05126953, -4.6875, -1.0263672, 1.9853516, 2.5976562, 0.7314453, 1.5175781, -0.04852295, -0.9082031, 1.1689453, -1.3847656, 1.5654297, -2.2851562, 0.17700195, 0.9921875, -0.8222656, 0.64990234, -3.5976562, 1.3408203, -1.921875, 1.7451172, 0.3149414, -1.2685547, -0.27197266, 0.9589844, -1.9511719, -1.2744141, -2.3867188, 0.29956055, 1.5986328, -1.2470703, 0.23583984, -2.25, -1.0009766, -1.3964844, -2.2578125, -2.0039062, -0.80859375, -0.51953125, -1.0654297, -0.38232422, 1.2109375, -1.3242188, -1.9511719, -0.6948242, -0.7285156, -1.6621094, -1.1054688, -1.7392578, 2.5527344, -0.5390625, -0.044891357, 0.42456055, -1.2744141, 1.2333984, 1.2734375, 1.8007812, -0.22717285, 3.0488281, -1.3378906, -2.3242188, 0.9868164, -1.5488281, 1.2148438, 0.13928223, -3.4238281, -1.125, -0.60498047, 1.6767578, -0.4033203, -0.09851074, 0.57714844, 0.65771484, 0.40722656, 0.46044922, 1.9716797, 0.21691895, 0.091674805, 2.0019531, -1.7607422, 1.6503906, -1.3164062, -0.9223633, 0.4555664, -1.0703125, -1.0986328, -0.015159607, 0.7885742, 2.4140625, 0.50927734, -0.9448242, 0.62890625, 0.32299805, -1.6513672, 0.8364258, -2.8535156, 3.2871094, 1.6347656, -2.6738281, -2.1640625, -1.8164062, 0.21154785, 2.21875, -0.7475586, -3.9726562, -1.5478516, -0.13476562, 1.3388672, -0.8120117, 2.5351562, 2.8535156, 0.4074707, -0.4621582, 2.2792969, 2.9785156, 0.13012695, 0.10870361, -0.035247803, 0.4284668, -1.7216797, 4.8242188, 1.3115234, 0.8457031, -0.31762695, -1.0673828, 1.6738281, -1.234375, -1.5742188, 1.1201172, -1.2041016, -0.30029297, -2.5644531, -0.6269531, -2.5585938, 0.17102051, 0.5029297, -0.51464844, 0.2602539, -0.9868164, 0.099731445, 0.27270508, 0.30859375, 1.2451172, -2.2226562, 0.65966797, 0.55908203, 1.1015625, 2.0898438, 0.24047852, 2.3730469, 0.30200195, -0.2644043, -0.7055664, 1.7070312, 0.2644043, 2.2617188, 3.8320312, 0.4194336, 2.3808594, 0.95654297, 1.9931641, 0.87109375, 1.3828125, 3.8964844, -0.28344727, 0.7006836, 1.7490234, 1.6494141, 0.14465332, -1.9755859, 1.8720703, 0.6586914, 1.2802734, 1.2822266, 1.6396484, 0.4284668, -1.9082031, 1.4804688, -0.8286133, 0.9169922, -0.28295898, 0.9008789, 1.4326172, 1.265625, 1.2382812, -0.6923828, 0.5024414, -2.2304688, 1.2753906, -0.20532227, 0.6230469, 1.0546875, -2.1796875, -0.9223633, 0.62109375, -2.640625, -1.8017578, 1.6425781, 0.4897461, 0.16918945, -0.29345703, 1.4082031, 2.3925781, -0.037231445, 1.2060547, -0.27954102, 1.3251953, 0.85498047, 1.3857422, 1.046875, -0.9628906, 2.7304688, 1.5224609, -2.3183594, -3.2109375, 1.4238281, 0.8251953, 0.7861328, 1.5478516, -1.6826172, 1.6679688, 0.6850586, -0.53808594, -2.1542969, 2.2851562, -0.88623047, -2.5039062, -0.9316406, -0.45654297, -0.03665161, 3.2480469, 1.8779297, 0.2770996, 1.0117188, 0.7607422, 2.6171875, 1.8056641, 0.5131836, -0.41796875, 1.6259766, -1.3134766, 2.9492188, 0.24414062, 1.9423828, -0.38671875, 3.03125, 1.9003906, 2.3515625, 1.1660156, -2.7265625, 0.081726074, 0.5410156, 0.93359375, -0.72558594, -2.2148438, -1.9707031, -0.6401367, -0.61816406, -1.7939453, -1.8046875, 3.6347656, 2.9492188, 0.82177734, 1.2666016, 1.4453125, -0.25195312, 1.3525391, -1.5224609, -0.70947266, -1.8496094, -0.9042969, 0.95458984, 0.98779297, -1.6943359, 0.49804688, 0.63916016, 1.4375, -0.84521484, -0.8935547, -1.7158203, 0.17370605, -1.5507812, 1.3564453, -0.9638672, -2.3496094, 1.109375, 0.30395508, 0.9951172, 2.7929688, 0.31469727, 1.4443359, -0.2788086, 0.24389648, 0.21044922, 1.0556641, -0.85595703, -0.20861816, 2.0488281, -1.8466797, -0.70214844, -1.7431641, -4.2890625, -2.8359375, -2.3125, 1.9013672, -0.11956787, -1.4072266, 0.84228516, 1.2324219, 1.6796875, -0.3256836, -0.3190918, 0.7651367, -0.4543457, 1.5029297, -0.64404297, 0.14831543, 1.0507812, 0.36108398, -0.87158203, 0.74853516, 2.2773438, 1.1386719, 0.57666016, 0.24206543, -0.3959961, -3.1191406, 0.83496094, 1.1591797, 0.29760742, -1.8339844, -1.1347656, 1.8076172, 0.34033203, -0.10546875, -2.34375, -3.5273438]}, "B01BEY69FA": {"id": "B01BEY69FA", "original": "Brand: Peaktop\nName: Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28\" x 28\", Gray\nDescription: \nFeatures: STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space.\nINCLUDES: 6. 6 lbs Lava Rock and PVC Cover\nAdjustable flames are the perfect addition to light up the garden.\nBURNING AREA: (W) 16. 93\" x (L) 16. 93\" x (H) 2. 95\"; BTU: 40, 000; ETL-listed\nDIMENSIONS: (W) 28\" x (L) 28\" x (H) 9. 05\" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA\n", "embedding": [-0.1895752, 1.1826172, 2.0390625, -2.8339844, -0.21875, 0.6171875, 0.640625, -3.2167969, -0.5732422, 0.79589844, -0.5263672, 0.46923828, -0.48486328, -4.2265625, 2.7539062, 0.8041992, -0.3857422, 1.9609375, 1.9404297, 0.2409668, 3.3867188, 0.21948242, 0.45581055, -0.6328125, 1.3798828, -0.71533203, 3.453125, -4.9140625, -1.3525391, -1.1523438, 0.78027344, 0.9580078, -0.6582031, 1.7314453, -3.0703125, -1.7265625, -0.2434082, 1.234375, -4.3320312, 0.6923828, -2.5996094, -1.7910156, 2.7304688, 1.9658203, -2.2363281, -0.8154297, 1.8154297, -0.8149414, 0.01663208, -2.2988281, 0.64208984, 1.6445312, -1.0410156, -0.7871094, 0.19897461, 1.3232422, -1.0048828, -2.2832031, 2.6972656, 1.4580078, 0.5546875, -1.4589844, -0.6640625, 2.4980469, -2.6679688, 1.0185547, -0.91503906, 0.42138672, 0.3190918, -0.47680664, 1.5068359, 1.1630859, -0.7138672, 0.36206055, -0.9238281, -2.234375, -2.7597656, 1.2089844, 3.2929688, -2.4375, -0.054473877, 3.5449219, 2.1035156, -1.4804688, -1.0048828, -0.46923828, -0.78027344, 0.011497498, -0.5136719, 0.94628906, 0.22912598, 2.6054688, -0.9379883, -3.2519531, 1.515625, 0.04031372, -0.0019874573, 1.9931641, 1.5898438, 1.7509766, 1.3779297, 0.4399414, 0.45874023, -1.2998047, -2.34375, -0.52246094, 1.0400391, -0.08496094, -0.1697998, 1.3535156, -2.1210938, 0.9301758, 2.7128906, -1.7695312, 0.4104004, 0.31396484, 1.1904297, 0.10357666, 3.7675781, 1.8779297, 5.0390625, -0.13757324, 0.60058594, -1.7587891, 1.6230469, -0.21850586, -2.0742188, 1.0439453, 1.4238281, -1.1943359, 1.34375, -0.71533203, 1.2255859, 0.33203125, -1.0878906, -0.38378906, -2.6308594, -1.5400391, -2.5761719, -0.55371094, -2.6699219, -0.1385498, 0.7026367, -0.32910156, -3.796875, 0.3359375, -2.3203125, 2.6464844, -0.119384766, -3, 0.93359375, -1.3193359, 0.26904297, -1.5507812, 1.5068359, -1.7177734, 1.2011719, -2.6132812, 2.2617188, 1.0722656, 1.0351562, -0.66796875, -1.7451172, 1.2265625, -1.4160156, -2.1777344, 1.6796875, 0.37963867, 0.98876953, 1.5400391, -1.5117188, -1.4482422, -0.3996582, 0.47314453, 0.26708984, -1.6132812, 0.08325195, 2.2871094, 2.0214844, 2.3457031, -1.2861328, 0.20837402, 1.2529297, 1.4824219, 1.0839844, -0.19714355, -1.7050781, -3.2285156, -0.8491211, -0.68408203, -0.48461914, 0.11853027, -2.7011719, -1.7333984, -2.2304688, -1.5195312, -2.8222656, -1.6181641, 2.3535156, 0.36694336, -1.4335938, 0.828125, -1.1943359, -0.32958984, -2.2441406, -0.60839844, -0.12042236, -0.5864258, 2.7324219, -0.11462402, 0.9223633, -0.9038086, 2.0234375, 1.6767578, 1.5263672, 0.1751709, 0.57373047, 1.4013672, 0.95458984, 1.3583984, 1.1210938, 0.3161621, 1.4423828, 3.0429688, 0.09967041, 1.7880859, 0.0019760132, 0.71191406, -2.5058594, -2.078125, 2.6445312, 1.7978516, 0.56152344, 1.1279297, -1.5351562, 3.53125, -0.06512451, -1.7119141, 1.6464844, 0.2487793, 1.5283203, -2.6992188, -2.3378906, -0.4645996, -2.0273438, 0.3701172, 0.3935547, 1.1416016, 2.1601562, -0.29125977, -1.46875, -0.47705078, 1.1738281, -0.47851562, 1.0390625, -0.44604492, 0.009361267, 2.1445312, 1.390625, -1.8388672, 0.6616211, 0.20410156, -0.9316406, 1.3007812, -0.1352539, -0.0087890625, 2.0390625, -0.67626953, -3.6210938, 0.21496582, -0.86376953, 0.80322266, 2.0488281, 0.6982422, 1.1015625, -0.13745117, -0.25341797, 1.6279297, 0.50683594, 3.65625, 0.20703125, -2.1992188, 2.3710938, -2.5839844, 0.51708984, -0.23669434, 1.7822266, 0.31201172, -0.3881836, -0.2800293, 4.7578125, -1.0205078, -2.6308594, 2.2636719, 0.29125977, 1.1972656, 0.7861328, -0.7807617, 0.3190918, -0.37963867, 0.5332031, 1.7519531, -0.32836914, 1.5869141, -1.1777344, -0.33520508, 1.7412109, -3.1035156, 1.1308594, 0.9946289, -0.52441406, 0.051361084, -1.4404297, -0.03173828, -1.6201172, -2.4042969, 1.7939453, -4.34375, 0.8955078, 0.6166992, -0.3486328, 1.5166016, -1.7802734, -2.3847656, 1.1728516, 3.0878906, -2.3515625, 1.5185547, 0.18688965, -0.82958984, -2.1425781, -2.234375, 1.1445312, -2.7792969, -2.3144531, -1.5185547, -0.95166016, 0.29370117, -0.40698242, -2.1445312, -0.25854492, 0.48608398, -0.9526367, 0.3408203, -0.88378906, -3.4277344, 0.7709961, 0.78759766, -3.1699219, 0.4326172, 0.9008789, 2.6542969, -1.7490234, -1.8691406, -0.6118164, 0.53466797, 0.30810547, 1.7275391, -1.2021484, 0.8149414, -1.3525391, 0.47338867, 0.52783203, -2.9121094, 0.46044922, -2.1484375, 0.1809082, -4.5117188, -0.24255371, -0.85791016, 0.4321289, 1.1679688, 0.9248047, -2.3730469, -1.6074219, -0.3305664, -1.4619141, 4.7070312, -0.90966797, 0.9580078, -2.5332031, -2.4375, 1.3017578, -2.3046875, -2.3027344, -0.9794922, -1.4072266, -1.1845703, -1.9892578, -1.5449219, 0.45703125, -1.25, 0.48242188, -0.31054688, -0.68359375, -0.6381836, 0.7246094, -1.0126953, 0.7998047, -1.7441406, 0.6274414, -0.6699219, 0.36889648, -1.6894531, -1.8173828, -1.6611328, -2.4492188, -0.21728516, 1.7109375, 0.40625, 0.54296875, 1.65625, -1.7255859, 1.4511719, 1.8896484, -3.7949219, 0.73339844, 4.0703125, 0.8671875, 1.1142578, -2.1582031, -1.3935547, -1.6835938, 0.21862793, 4.1054688, -0.875, -0.7050781, 0.29760742, -0.1159668, -0.77490234, -0.5283203, -0.5805664, -0.54003906, 0.10852051, 2.3554688, -0.97021484, 0.21044922, 1.3769531, 3.3105469, -3.890625, -0.83740234, 1.7148438, 1.2802734, 1.7050781, 0.012779236, 0.9350586, 0.5888672, 0.3474121, -0.23352051, 1.8164062, 2.8320312, -1.7353516, -0.35327148, 1.5449219, 0.9741211, 2.7773438, 1.4667969, 1.2509766, 0.40844727, 2.8261719, -1.8828125, -2.578125, 1.0029297, 0.42236328, 2.1640625, 0.3852539, 2.2382812, -0.76708984, -0.23156738, -0.03967285, 0.5053711, 0.13684082, -1.3720703, 1.2929688, 1.7714844, 0.5102539, -1.2529297, 0.9682617, 0.92089844, -0.18811035, -1.7089844, -0.015686035, -0.02708435, -0.18029785, 1.0078125, -0.83251953, 1.4296875, -0.2692871, 3.2714844, -0.3046875, -1.8730469, 1.984375, 2.7324219, -0.015701294, -1.5947266, 0.1060791, -0.8847656, -0.18249512, 4.125, 1.234375, -0.85839844, 0.27514648, -3.4511719, 2.2382812, 2.5039062, 0.9995117, 0.30664062, 2.5449219, 0.12817383, -0.22888184, 0.7416992, 2.046875, 0.98291016, -2.8769531, 1.6533203, -1.6181641, -0.33569336, 1.6142578, -1.6162109, -1.4951172, 1.71875, -0.6948242, 2.1738281, -0.43359375, 2.546875, 1.0849609, 0.70703125, 3.9375, 0.12573242, -0.09375, -1.2988281, -5.6875, -0.43041992, -1.2861328, -0.004497528, 0.76123047, 0.16796875, -0.5126953, 0.5991211, -1.0693359, -5.265625, -0.97753906, -2.0078125, -0.11999512, -4.2226562, 0.089660645, -1.0175781, -0.17089844, -0.71728516, -1.7080078, -0.009361267, -0.33544922, 1.0849609, 1.8837891, -0.8666992, 0.007286072, -0.21533203, 0.5673828, -0.86376953, -0.03125, -0.103271484, -0.9794922, 0.42016602, -1.7226562, 2.75, 2.2578125, -0.9970703, 2.0097656, 3.0859375, 1.2685547, -0.9824219, 1.0712891, 0.74316406, 4.2890625, -0.8256836, -3.3125, -0.3083496, 0.33691406, 0.7836914, -2.09375, -0.7392578, 0.23571777, -2.1523438, 2.0136719, 0.5175781, 0.5913086, 0.124816895, -0.43823242, -2.3730469, 0.15405273, 0.13305664, -1.2988281, 1.2568359, -0.45996094, 0.20007324, -2.0488281, -0.13574219, -2.9238281, 1.4882812, -0.95996094, -0.6220703, -2.5566406, 1.8300781, 1.8417969, 1.7509766, 2.03125, -1.5498047, -2.0722656, -0.66748047, 0.06677246, 1.1660156, -0.09094238, 0.018096924, 0.4555664, 2.6464844, 0.89501953, -0.53222656, 0.04208374, 2.1601562, -1.3417969, 1.0947266, -0.5205078, -0.6386719, -0.5449219, -1.7841797, -0.30029297, -0.7651367, 1.2783203, -0.35766602, -0.013374329, -2.2363281, -0.25024414, -3.2363281, 1.2177734, 0.40673828, -0.6220703, 1.3564453, 1.6591797, 1.6972656, 0.6274414, 2.8046875, 0.64208984, 2.5273438, -1.8164062, -1.7509766, -1.4697266, 0.043151855, -3.0449219, -0.77734375, 1.2167969, 2.8632812, -0.15722656, 0.4326172, 1.1611328, -1.5732422, 3.5351562, 1.0302734, -1.1132812, -0.8466797, -1.2617188, -0.94091797, 1.6611328, 0.050598145, -3.046875, -0.49609375, 1.1992188, 0.6972656, 2.8496094, 0.6586914, -0.85595703, -0.19250488, -1.9697266, -1.3330078, 0.3474121, -0.84716797, -0.80029297, -0.19921875, 0.57910156, -1.90625, 0.66015625, -0.10784912, -1.2480469, -1.6816406, 2.2148438, 1.2353516, -1.1142578, -1.8671875, 0.5053711, -2.2363281, 0.9609375, 0.47021484, -0.23144531, 1.8691406, -1.0400391, 1.9072266, -2.5839844, -0.60009766, -0.6694336, 1.6630859, -2.0820312, 1.0878906, 2.6464844, 0.68896484, -0.07537842, -2.3261719, 0.17626953, -0.42895508, 2.4179688, -0.8154297, -0.24145508, -1.1240234, -0.31689453, -1.7607422, -2.3222656, -0.60791016, -0.43115234, -1.8857422, 0.52246094, -1.8046875, -0.38793945, 0.3671875, 1.3271484, 0.7871094, -0.86376953, -0.085998535, -2.1914062, -0.8779297, -1.3320312, 0.17614746, 0.6791992, 0.07543945, 1.1572266, -1.2021484, -1.8642578, -3.265625, -1.4599609, 1.9580078, -2.125, 1.5664062, 0.4958496, -0.27246094, 1.6220703, 3.8769531, 0.3527832, -0.8876953, 1.4521484, -0.62597656, 0.05984497, 1.7138672, -0.97216797, 1.5195312, 0.81152344, 0.32788086, 0.8261719, 0.2680664, 0.18518066, -1.1484375, 1.4296875, -0.012168884, 0.11102295, 1.6972656, -0.14050293, 1.1855469, 1.9306641, 1.1591797, 0.9379883, -1.9589844, -1.8662109, -1.3154297, -0.3671875, -1.1474609, -2.7832031, -1.140625, -0.43579102, 0.7998047, 1.3808594, 0.042297363, 0.55322266, 1.6806641, 0.085998535, -1.6152344, 1.5136719, -1.0703125, 1.5644531, -0.009490967, -1.7802734, -2.9042969, -3.3632812, 0.80029297, 1.9013672, -0.13049316, 0.61279297, -1.2666016, -2.3847656, 0.6777344, 1.1992188, 0.9526367, 2.640625, 1.4658203, -1.6601562, 1.6132812, 2.7128906, 0.46728516, 3.0664062, -0.0637207, 1.5517578, -0.3972168, 1.8242188, 3.1679688, -2.4609375, 1.4277344, 0.04446411, 0.20288086, -2.2636719, -0.7211914, 1.3847656, -2.8691406, 0.27319336, -1.84375, -1.3466797, -3.8613281, 0.7285156, 0.9082031, 0.6665039, -0.25024414, 0.75390625, -0.7114258, 1.2880859, 2.0546875, -0.42749023, -0.53808594, 0.11071777, -1.5273438, 0.08886719, 2.8339844, -0.93066406, 0.059783936, 0.038238525, -0.6225586, -1.4951172, 0.53466797, -1.4726562, 1.53125, 1.2802734, 2.9824219, 1.5507812, 1.7236328, 1.9404297, -0.3408203, 2.0957031, 2.5332031, -0.51904297, 0.6254883, 1.7724609, 3.0703125, -0.66845703, 0.11578369, -0.1418457, 1.1259766, -1.6425781, -0.042144775, -1.0927734, 0.13879395, -2.0488281, 1.3193359, -1.6650391, 1.2763672, -2.0332031, 1.3476562, -0.72558594, -0.0546875, -1.1074219, -0.50927734, 0.8208008, -0.9267578, -0.5175781, 0.5385742, 0.0029296875, 0.015357971, -1.8496094, 0.43286133, 0.10223389, -3.3515625, -0.37963867, 2.6835938, 1.7333984, 1.4589844, -1.3232422, 3.6855469, 1.3388672, 2.1953125, -0.35546875, 0.7675781, 0.51171875, -0.037261963, 2.1738281, 0.2680664, -2.1015625, 0.03314209, 0.80029297, -2.546875, -4.1796875, 0.49389648, -0.24975586, -0.5395508, 0.9921875, -1.1191406, 1.515625, -0.033966064, 1.6816406, -3.1679688, 0.33251953, -0.20349121, -0.88427734, 0.13305664, 0.07678223, -0.2434082, 1.5185547, 1.4423828, 1.1269531, 1.4472656, 1.5341797, 1.5097656, 1.3847656, 2.1191406, -1.0478516, 1.3427734, -2.03125, 2.8652344, 1.8349609, -0.13793945, 0.87402344, 0.9682617, 3.1601562, 0.11260986, 1.0751953, -1.6923828, 0.5097656, -1.1748047, -2.0722656, -1.5068359, -1.8505859, -2.4570312, -0.61376953, 0.96728516, 0.6767578, -3.0527344, 2.4140625, 1.1132812, -0.40185547, -0.9580078, 1.5185547, -1.1425781, 1.4257812, 0.5805664, -1.6728516, 0.49389648, 0.19885254, 1.71875, -1.2490234, -0.85791016, 0.7421875, 1.7880859, 0.70703125, 0.47216797, -1.7724609, 0.4116211, -0.98828125, -0.5258789, 2.9316406, -1.140625, 0.63671875, -0.32739258, -0.18029785, 0.36694336, 1.2392578, 0.6425781, -1.7695312, 0.42041016, -2.0175781, 0.08886719, 1.3076172, -3.7890625, 0.06311035, 4.90625, 1.1943359, 0.4777832, -0.9638672, -3.5527344, -1.8339844, 0.6040039, 2.4160156, -1.8671875, -0.68310547, -0.66308594, -0.2854004, 2.7714844, 0.4580078, 0.11077881, -1.8271484, -1.9072266, 2.6679688, 0.27929688, 2.0292969, -0.5214844, 2.1445312, 0.48608398, 2.0019531, 3.3300781, -0.53759766, 1.0117188, 1.1855469, 0.23706055, -3.9570312, -0.42700195, -0.2175293, 1.2070312, 1.2939453, -0.6972656, 0.1295166, -0.27539062, -1.6611328, -4.515625, -0.7714844]}, "B074QQW4PC": {"id": "B074QQW4PC", "original": "Brand: Cuisinart\nName: Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill\nDescription: \nFeatures: COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power\nCOOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack\nCAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat\nPREP SPACE: Two 18\" x 13\" side tables provide ample space for food prep\nCONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.\n", "embedding": [-2.046875, 1.0800781, 3.6503906, -0.19543457, 0.06011963, -0.7084961, 0.8847656, -3.0625, -0.7451172, 2.0566406, 1.8886719, 0.5629883, 0.3918457, -1.3515625, 0.6801758, -1.2587891, 2.4101562, -0.22790527, -0.140625, 1.3027344, 0.49682617, -0.7426758, 3.3144531, -2.1503906, -1.4287109, 2.1191406, 4.6015625, -3.0390625, -0.97509766, -2.8652344, 1.1298828, -0.40673828, 0.9116211, 0.8496094, -3.2734375, -1.4746094, -1.9667969, 1.5117188, -2.2792969, -0.19189453, 1.1259766, -0.5263672, 1.5244141, 0.28344727, -1.6865234, 0.51123047, 1.4707031, 2.1914062, -2.0253906, 0.20361328, 2.2246094, 0.6582031, 0.31420898, 0.5439453, -1.1923828, 3.3398438, 0.23803711, -0.078186035, -0.085510254, -0.48657227, 2.9335938, 0.4116211, -1.9726562, -0.42163086, -1.25, 0.0836792, 0.6357422, 1.4697266, 0.23327637, 1.8007812, 2.8144531, -2.1191406, -1.8886719, 1.2265625, -0.76660156, -2.3125, -2.5332031, 1.9492188, 0.49926758, 0.2368164, -1.09375, 1.7294922, 0.8417969, -2.7558594, 0.32128906, 0.42358398, 0.24682617, -2.1660156, 1.4726562, 0.8198242, 0.27514648, 2.703125, -2.0878906, -2.90625, 1.6962891, -1.6162109, 0.08581543, 2.6503906, 0.094177246, 0.6743164, -0.48168945, -0.3166504, -0.78271484, -0.17736816, -2.8632812, -0.9770508, 1.8251953, 0.01626587, -4.2109375, 1.2646484, -0.8095703, -2.1171875, 0.61816406, 0.6694336, 1.2382812, 0.8432617, 0.1328125, 0.9770508, 1.5605469, -1.0429688, 2.703125, 0.5073242, 0.05154419, -0.54003906, -1.3369141, 1.2304688, -1.1669922, 1.5009766, 5.125, -2.25, -0.49487305, 0.5415039, 3.3847656, 0.4951172, -1.7402344, -2.7402344, -2.7890625, -1.8916016, -2.8515625, 1.8867188, -2.9902344, 1.0664062, 0.9711914, 0.045074463, -3.8925781, -1.9970703, -0.1538086, 1.9394531, -0.3996582, -1.3183594, 0.71972656, -1.8642578, -1.0244141, -1.4726562, 2.0722656, -2.1152344, -1.5976562, -3.2285156, 3.8789062, 0.6303711, 2.2109375, -2.3144531, -0.88378906, 1.3076172, -0.92822266, -0.8989258, -0.05239868, 2.46875, -0.22509766, 0.87841797, 0.5019531, -1.5361328, 0.53027344, 0.19897461, 0.59375, -0.048553467, -0.54833984, 3.1738281, 1.1269531, -1.0820312, -0.9770508, -3.2988281, 1.3300781, -0.16662598, 0.6538086, -1.3427734, 0.37060547, -0.38598633, 0.7758789, -1.5458984, 0.6689453, 0.28710938, 0.089660645, -0.8457031, -0.5385742, 0.40283203, -0.13769531, -1.1572266, -0.16113281, -0.7753906, -0.8022461, 0.9140625, -0.014694214, 0.42504883, -1.7998047, -4.0820312, -1.7519531, -1.3466797, 3.1601562, 1.9931641, 2.6152344, -1.4160156, 1.6054688, -2.4003906, 0.29736328, -1.6025391, 1.8300781, 0.10760498, 0.9863281, 0.9116211, -0.8823242, -0.7919922, 1.2949219, 1.0019531, -0.6738281, 0.49487305, 1.1962891, 0.85009766, -0.7890625, -2.0703125, 2.4277344, -0.48486328, -0.49169922, 0.1194458, 0.109191895, 2.9316406, 0.6303711, 0.15698242, -0.2553711, -1.3798828, 0.52685547, 0.78222656, -1.2070312, -0.37548828, 0.15441895, 1.9472656, -2.53125, 3.2539062, 3.0996094, 0.73339844, -1.5966797, -0.7607422, -0.17456055, 1.6894531, -0.72021484, 0.49609375, -1.1767578, 1.6835938, -0.15332031, -2.7441406, 2.3007812, 0.22058105, -1.1181641, -0.4975586, 0.4658203, -1.1787109, 2.6855469, 0.2775879, -1.6972656, -1.6621094, 1.8896484, -0.8178711, 1.8632812, -0.095581055, 1.6611328, 1.1230469, 0.0074157715, 2.4667969, -0.8486328, 1.3212891, 1.6699219, 0.50878906, 2.5722656, -1.8554688, -0.5073242, 0.6064453, 0.21057129, 0.33276367, 0.038024902, 0.47485352, 3.4746094, -2.2578125, -3.5703125, 4.1132812, -0.84472656, -1.0097656, 1.4296875, -1.2490234, -1.3964844, -0.7734375, 2.3183594, 0.50097656, -0.7573242, 2.53125, -1.8486328, -0.9560547, 0.12536621, -1.4697266, -1.0009766, 0.32714844, -0.15808105, -0.77685547, -2.4765625, 1.8378906, -1.3808594, 0.2578125, 2.4453125, -2.4609375, 2.5742188, -0.15429688, 2.3671875, 1.2607422, -1.0693359, -0.5488281, 0.09503174, 0.7763672, -2.6074219, -0.053833008, -0.68847656, -1.2451172, -1.3876953, -0.015899658, 0.49804688, -2.9003906, -2.7226562, -0.6621094, -0.4411621, -1.7470703, 0.5205078, -1.765625, -0.9555664, -0.020599365, -2.296875, -1.265625, -2.0761719, -2.5996094, -1.9570312, -0.042419434, -2.5566406, -0.6074219, 0.45263672, 0.24365234, -1.1152344, -4.4492188, 0.38427734, 0.42114258, 0.45898438, 0.31811523, 0.10491943, 0.3413086, -0.60253906, -0.6298828, -0.58251953, 0.19421387, 0.20092773, 0.33251953, 0.103881836, -2.4980469, 0.78515625, -4.1796875, -0.5810547, 0.1586914, 1.0625, -4.2929688, 0.11114502, -0.6669922, -0.34472656, 3.4199219, 0.10699463, 1.7910156, 1.90625, 1.7324219, 1.1816406, -1.7177734, -1.1855469, -0.69384766, 1.0410156, 0.41748047, -2.625, -1.1171875, -0.0836792, -1.9501953, -0.6928711, -1.8632812, -1.0126953, -1.03125, -0.07757568, -3.1210938, -0.7993164, -0.31420898, 0.7236328, 0.9067383, -0.3544922, -2.9433594, -0.40673828, -2.2890625, 1.5322266, -0.68896484, 1.3125, -0.9667969, 1.8662109, 0.28955078, -0.05178833, 1.0341797, -2.2539062, -2.6621094, 1.3251953, 0.50341797, -1.4628906, 1.2558594, -1.1132812, -2.4960938, -1.9248047, -1.1855469, 1.5498047, 2.6484375, 2.3066406, 0.98339844, -0.0579834, 1.4902344, 1.2470703, 1.4160156, -0.7973633, -2.0234375, 3.484375, -1.4960938, -1.7675781, 0.9814453, 2.2558594, -2.4199219, -1.3964844, 2.25, 1.2734375, 0.88623047, 2.6074219, 3.296875, 0.17736816, -1.7402344, 1.1220703, 1.9169922, 1.8554688, 0.4494629, -0.95458984, 1.6181641, -0.33203125, 1.1445312, 1.4521484, 0.04562378, 1.6835938, 1.0546875, 1.4980469, -1.6015625, 0.34521484, 0.31958008, -0.2421875, 0.54248047, 1.7001953, -0.98828125, -0.73095703, -0.1508789, -1.8085938, -1.1416016, -0.32128906, -1.8212891, 3.0019531, 0.59814453, 0.4243164, 0.21472168, 0.46899414, 1.0917969, 0.32055664, 0.47607422, 0.76171875, 1.9775391, 0.17541504, -0.61865234, -0.011131287, -1.8740234, 1.0722656, -1.1689453, -2.0527344, 1.0673828, 2.7148438, -0.2705078, -2.7148438, 1.8535156, 0.71484375, -1.1962891, 0.55322266, 0.56591797, -1.9423828, 2.3300781, -1.4335938, 0.8964844, -0.30126953, -0.57470703, 0.4650879, -0.28295898, -0.7446289, -1.0146484, 0.76123047, 1.0664062, 0.67333984, -2.1933594, 0.07800293, -2.7285156, -0.051452637, -1.0986328, -2.0078125, -1.1464844, 1.3876953, 1.1015625, 2.5585938, -1.1894531, 1.75, 0.20056152, 0.0105896, 1.0341797, -2.3652344, 0.8417969, -2.3398438, -3.0742188, 1.2314453, -0.7915039, -0.41601562, 2.7636719, 0.11114502, 0.27685547, 2.5683594, -0.23425293, -3.4863281, -1.9335938, -1.7324219, -0.6411133, -1.0029297, -0.87841797, 1.7695312, -0.48339844, -0.85253906, -2.0039062, 1.5195312, -0.67529297, 1.7851562, 1.6054688, -3.84375, 1.2373047, -0.9213867, 0.45898438, -0.078430176, -0.48291016, 2.5957031, -1.7324219, -0.050720215, -2.1171875, 0.5029297, 1.6396484, -0.7402344, 2.4355469, 1.5039062, 0.76416016, -2.3085938, 1.0927734, 0.6899414, 1.7099609, 0.5292969, -3.6464844, -0.8852539, 1.3789062, -0.0028972626, -0.8847656, 0.051513672, -1.3828125, -1.6484375, -0.23583984, 1.0996094, 1.7802734, 0.17480469, -0.66503906, -2.4101562, -0.92285156, -0.42504883, -2.3710938, -0.9814453, -0.19470215, 1.7783203, -0.77685547, 0.3203125, -1.4804688, -0.12249756, -0.74072266, -0.62939453, -3.4609375, 3.7421875, 1.8232422, 1.7480469, 2.9433594, -0.9165039, 0.41601562, 0.8701172, -0.26708984, 0.47485352, 1.0898438, -1.4199219, 1.2705078, 0.50341797, 0.3293457, -1.9619141, -1.3505859, 1.0927734, -2.8671875, -0.5800781, -2.3574219, 0.1842041, -0.98583984, -2.28125, 1.8154297, -0.76953125, 2.6953125, -2.1816406, -1.671875, -1.8837891, 1.0185547, -2.4472656, 0.6513672, -1.7226562, -0.1940918, 1.8808594, 0.5371094, 1.2509766, -1.4326172, -0.08770752, -0.15283203, 1.9521484, 0.68847656, 0.8925781, -1.7070312, -0.27026367, -2.328125, -1.7275391, 1.6240234, 2.078125, 1.1835938, 4.0585938, 1.8339844, -2.328125, 0.9580078, -0.6279297, -3.0390625, -0.5722656, -0.18127441, 1.1914062, 1.2949219, 0.30444336, -4.5195312, -0.875, 0.15197754, -1.2001953, 0.6464844, 0.82958984, -0.79052734, -0.67822266, -1.6875, -0.19763184, -0.33666992, -0.39282227, -1.3183594, -1.8076172, 0.5126953, -2.8046875, 1.0712891, 3.4199219, 0.5527344, -1.2353516, 3.2304688, 0.16271973, 1.2548828, -1.3359375, -0.25, -1.2558594, 0.5878906, 2.5234375, 0.69677734, 1.9238281, 0.7626953, 2.8261719, -2.0644531, 1.6669922, -1.6689453, 3.7167969, -0.5439453, -0.53808594, 1.3330078, -1.3056641, -0.34057617, -4.9804688, 0.44433594, 0.2512207, 1.3769531, 1.3984375, -0.8208008, -1.1181641, 0.08868408, -1.0908203, -3.9355469, 0.14526367, 0.19836426, 1.3076172, 0.18688965, 1.9091797, -0.6455078, 1.0136719, 0.8535156, -0.39501953, -1.9599609, -1.1572266, -1.8203125, -1.2871094, -0.79003906, 2.0136719, -0.82421875, 2.1367188, 2.0957031, 0.24438477, -0.22546387, -1.7578125, -1.5966797, 2.0507812, -1.7041016, 0.2824707, 4.0273438, -0.38745117, 0.6357422, 1.5644531, 1.7324219, -0.96191406, 1.5966797, -0.9536133, -1.0341797, 1.6865234, 0.2927246, 1.9160156, -0.56347656, -2.0039062, 0.015808105, -2.4023438, 0.4633789, 1.34375, 0.9316406, -0.6635742, 2.7734375, -1.2871094, -1.8603516, 0.9951172, 0.4716797, 1.4189453, 1.0488281, -3.4648438, -0.40283203, -0.22131348, -1.0878906, -0.14672852, -2.0136719, -0.031280518, -0.8408203, 0.61328125, 1.5371094, 1.0136719, -0.3540039, 0.2298584, 0.38208008, 1.0517578, 2.6074219, -0.7685547, 2.859375, 3.4238281, -1.1835938, -1.0292969, -2.9101562, 1.6113281, 0.4645996, 1.5449219, -1.5097656, -1.0507812, -0.5229492, 2.0019531, -0.87109375, 0.87841797, 1.6845703, -0.23583984, -0.28076172, 1.6572266, 3.875, 0.16894531, 0.9116211, 1.21875, 0.8149414, -0.20019531, 4.40625, 0.99121094, -1.7001953, 2.3925781, -0.6948242, 1.5800781, -1.4130859, -0.0072517395, 0.8408203, -1.65625, -0.48876953, -2.5644531, -2.3574219, -3.7539062, 1.7050781, 1.4306641, -1.1123047, -0.1328125, 2.2324219, -0.3996582, 2.1601562, 1.5810547, 1.5195312, -0.10308838, 0.96875, -1.0234375, -0.14428711, 1.9951172, -2.7695312, 2.7851562, 0.7832031, -2.1835938, -0.95996094, 3.1679688, 1.3398438, 2.09375, 1.4169922, 1.2353516, 1.9033203, 1.6279297, 3.7207031, 1.5097656, 2.1757812, 0.9838867, -0.12792969, -0.064819336, 1.7001953, 2.5605469, -0.7285156, -0.7373047, 2.4082031, -0.5493164, -1.8730469, 0.16125488, 2.0566406, 1.0654297, -4.2890625, 1.7275391, 0.08514404, 1.1650391, -3.0117188, -1.8183594, -0.056762695, -0.68408203, -0.3334961, 0.2133789, 2.3886719, -0.95947266, 0.85839844, -2.1152344, 1.2373047, 0.4477539, -2.7910156, 1.1875, 0.7783203, -2.4765625, -1.1689453, -1.4648438, 0.7080078, 0.55371094, 0.6035156, 0.6635742, 2.0449219, 1.359375, 1.6767578, -1.828125, 0.61279297, 0.6713867, 3.5644531, -0.22949219, -0.77490234, 0.5541992, -3.1699219, -1.4794922, -3.359375, 0.9838867, 2.3417969, 1.7470703, 1.1982422, -1.6181641, 2.1953125, 0.16845703, 1.2919922, -0.9291992, 1.5595703, 0.19934082, -4.1992188, -1.171875, -0.8100586, 0.42626953, 2.7929688, 1.7529297, -2.5800781, 2.0488281, -0.07891846, 1.4824219, 2.4355469, -0.21972656, 0.43041992, 1.6386719, -1.2011719, -0.5419922, -1.3242188, -0.7578125, 0.45776367, 2.2402344, 2.3691406, -0.45336914, 0.8066406, -1.3535156, -0.71240234, -0.6533203, 1.1318359, -0.42749023, -2.703125, -1.1328125, -0.4951172, 1.9570312, -0.7758789, -1.3251953, 3.6933594, -0.007774353, -1.6914062, -0.05758667, 0.13598633, 0.73779297, 3.3886719, -0.40551758, 1.0224609, -0.60058594, -0.78808594, 1.4316406, 0.7026367, -2.640625, 1.3046875, 0.57177734, 1.0419922, -0.4790039, -0.6665039, 0.30151367, 0.20678711, -0.02192688, 0.4091797, -1.8085938, -0.17541504, 0.76953125, -1.0107422, -0.5732422, 1, -0.74902344, -0.20166016, -2.4160156, -1.4902344, -0.42871094, -0.5605469, -1.3291016, 1.6015625, 3.5859375, 1.9697266, 0.8222656, -2.3046875, -2.203125, -1.3837891, -1.2128906, 3.2890625, 0.80810547, 0.08666992, 0.4104004, -0.96728516, 1.3085938, -1.8994141, 0.11743164, -0.6489258, -1.3671875, 0.23742676, -1.0019531, 1.3769531, 1.8867188, -0.16357422, 0.7675781, 2.5605469, 1.5654297, -0.7080078, -0.031555176, 1.7871094, 0.41748047, -1.8642578, 2.8515625, -0.34106445, 0.3347168, 0.42993164, 0.3173828, 1.8085938, 0.47802734, -0.20800781, -2.1542969, -2.6269531]}, "B00AB7SD9W": {"id": "B00AB7SD9W", "original": "Brand: Huntington\nName: Huntington 24025 Liquid Propane Gas Grill\nDescription: \nFeatures: Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves\nPorcelain coated wire cooking grids and stainless steel cooking system\nSure-Lite push button ignition system and Accu-Flow burner valves\nHeat resistant front mounted handle\nEZ-Q-Cart design and 5 stage quality enamel paint process\n", "embedding": [1.0605469, 0.8588867, 3.1328125, 0.9560547, 0.095947266, -0.03274536, 0.07574463, -0.9926758, 0.40014648, 1.4306641, 0.9736328, 1.1806641, 0.42456055, -3.4570312, 0.78808594, 0.62646484, 0.57714844, 1.6660156, 0.1932373, -0.60791016, 0.9394531, 0.48876953, 0.44506836, -1.7880859, 2.2871094, 0.97753906, 4.2070312, -2.7207031, 1.1044922, -1.1328125, 1.0683594, 2.0683594, -0.14733887, 0.8769531, -1.8789062, -0.9814453, -2.0527344, 1.4511719, -4.7382812, 1.0683594, -1.1279297, -1.2539062, 1.3164062, 1.1337891, -2.6894531, 0.94628906, -0.4296875, 0.48950195, -1.4023438, 0.014732361, 2.6191406, 1.4443359, -0.6791992, 0.033935547, -1.2109375, 1.0410156, -0.14355469, -2.6933594, -0.15356445, -0.24816895, 1.0908203, -1.6171875, -2.2382812, 0.7919922, -0.053955078, -0.0848999, 1.0322266, 0.19995117, -0.17272949, 0.7739258, 2.4296875, -1.8779297, -1.1777344, 0.38989258, 0.31860352, -1.4677734, -2.4511719, 1.2539062, 0.1340332, -1.1943359, -2.4609375, 3.6894531, 0.08050537, -1.9228516, -0.46533203, 0.44335938, -0.50097656, -2.0546875, 0.7114258, -0.24963379, -1.4853516, 0.94140625, -1.1591797, -5.2617188, 1.4033203, 0.33740234, -1.0146484, 2.1914062, 0.0541687, 1.4277344, -0.21862793, -0.25976562, -2.2441406, 0.15429688, -1.5966797, 0.61328125, 0.5654297, 1.3808594, -2.4902344, 0.24841309, -0.88427734, 0.97753906, -0.4296875, 0.27148438, 0.94970703, 1.1279297, 0.72265625, 0.2536621, 1.0898438, 2.4121094, 2.2851562, -1.0820312, 1.0185547, -0.3474121, -0.83203125, 1.3173828, 0.15222168, 0.018829346, 4.5273438, -2.2851562, 1.7744141, -0.014976501, 3.3535156, -2.1386719, -1.7373047, -2.3554688, -0.33618164, -1.2480469, -2.890625, -0.25317383, -0.9897461, 0.65283203, -0.13708496, -0.72802734, -3.2480469, -1.0253906, -0.78271484, 0.14648438, 0.06854248, -2.1992188, 0.03378296, -1.9794922, 0.73828125, 0.39086914, 3.2285156, -0.56347656, -2.1308594, -1.7744141, 2.5195312, 0.16699219, 2.0859375, -0.31811523, -2.7871094, 0.10522461, 0.9970703, -1.5166016, -0.88916016, 1.9277344, -0.6381836, 2.0917969, -0.7709961, -1.8496094, -0.56152344, 0.09716797, 0.74853516, -1.0585938, 0.40698242, 3.0019531, -0.5048828, 0.30517578, -1.3203125, -2.1152344, -0.13867188, -0.9667969, 1.9814453, -2.1367188, 0.39916992, 0.013626099, 0.12060547, -0.6323242, 0.5878906, 2.1132812, -0.3491211, 0.77441406, 0.4025879, -2.3417969, -2.0878906, -1.5029297, 2.7753906, 0.53515625, -0.43139648, -0.041290283, -0.28588867, 0.7729492, -1.5498047, -1.8652344, -0.096069336, -2.6855469, 1.2978516, 1.0664062, 2.2753906, -0.8022461, 2.421875, -0.7504883, 1.4140625, -4.0664062, 3.3066406, 0.73095703, 0.83154297, 1.9101562, -0.27661133, -0.014160156, 0.35473633, 2.109375, -0.4958496, 1.6113281, 0.7324219, 0.9057617, -3.8398438, 0.04067993, 3.421875, 0.29541016, -0.10974121, 0.21801758, 0.44702148, 1.6191406, 0.70996094, -0.5024414, -0.95996094, 0.11016846, 0.70947266, 0.3479004, -1.5185547, -1.2753906, 1.6386719, 1.4228516, -1.9921875, 1.8535156, 1.2753906, 1.8955078, -0.6274414, 0.23254395, -0.22473145, -0.2541504, -0.14660645, 1.4833984, -0.48291016, 0.99853516, 0.19799805, -3.1933594, 1.1796875, -0.4802246, 0.1361084, 0.27124023, 0.73779297, 0.46118164, 2.9492188, 0.6196289, -0.14013672, -2.0058594, 1.3251953, 0.88183594, 1.5126953, -0.51416016, 2.9160156, 1.2050781, -0.56884766, 3.8496094, 0.42260742, 1.46875, 1.15625, -0.3017578, 2.4511719, -3.0019531, -0.46679688, 0.91259766, 0.67578125, -1.8544922, -1.7363281, 1.0791016, 3.9667969, 0.0049362183, -2.5605469, 3.1757812, 1.6767578, 0.83740234, 1.8955078, -2.1679688, -1.8740234, -0.8442383, 2.6113281, 0.8745117, 0.08935547, 2.4609375, -0.5551758, -1.6064453, -0.45751953, -1.3642578, -0.35839844, 0.2175293, -1.8505859, -0.33276367, -0.6855469, 0.6582031, -2.4179688, -1.5136719, 1.3388672, -3.2089844, 1.5449219, -0.81884766, -0.18884277, 0.8442383, -0.3461914, -0.60791016, -0.29248047, 0.9291992, -0.9248047, 2.1992188, 1.0498047, -2.4628906, 0.52978516, -1.6777344, 0.03186035, -1.1679688, -1.1748047, -0.47338867, -4.3789062, -2.4667969, 1.9765625, -1.2197266, -0.7236328, 0.4350586, -3.2128906, 0.22094727, -1.4023438, -1.7324219, -0.9794922, -1.1806641, -0.45214844, -0.45751953, 0.75, 0.54003906, -0.23266602, -5.0859375, -0.78515625, 0.74072266, 0.5263672, 0.7758789, -2.1308594, -1.2158203, 1.6044922, -1.1171875, -0.018600464, -0.14978027, -0.17211914, 0.69091797, 0.87646484, -4.5546875, 0.8334961, -2.2128906, 1.4892578, -0.63671875, 1.2666016, -2.8769531, -1.4550781, 0.5283203, 1.3320312, 4.96875, -0.5151367, 0.4650879, 1.4833984, -0.0446167, 1.0185547, -1.6279297, -1.9472656, -0.45166016, 2.4238281, -1.4052734, -0.2849121, -3.875, 0.54589844, -1.4716797, 0.2927246, 1.71875, -0.70947266, -2.0703125, -0.84375, -1.125, -1.5029297, -1.7880859, -2.2128906, 0.8520508, -0.15270996, -0.71875, 0.26586914, 0.30810547, -1.4726562, -1.4697266, 0.9355469, -0.49560547, 0.70996094, 1.5761719, 0.4650879, 2.1054688, -0.0129470825, -4.5546875, 3.6992188, 0.7548828, -3.7070312, 1.3984375, -1.8066406, -1.9609375, -2.5742188, 0.20690918, 2.2207031, 2.3457031, 2.8261719, -0.2121582, 0.30688477, 2.609375, 1.1953125, 0.6870117, -1.6933594, -1.5732422, 2.6992188, -2.4121094, -2.4785156, 0.10284424, 1.5996094, -2.7871094, -1.9726562, 1.3535156, 1.0126953, 2.3808594, 1.8300781, 0.30444336, 0.28833008, 0.44335938, 1.2089844, 0.12005615, 0.31835938, 0.390625, 0.30786133, 1.8095703, 0.07702637, 0.77978516, 2.1796875, -0.44433594, 2.3554688, 0.054504395, 1.6503906, -0.8232422, -0.41674805, -1.0185547, -0.31713867, -0.45214844, 1.9003906, -1.0976562, 0.47631836, 0.80859375, -1.7216797, 0.044677734, -1.6494141, -1.0097656, 0.7949219, -0.34716797, -0.04244995, 0.16430664, 0.97021484, 2.1386719, -0.74072266, 1.1308594, -1.1699219, -0.0063476562, 1.6767578, -0.84375, -0.31835938, -1.0136719, 0.9394531, -0.7739258, -2.6074219, -2.0566406, 2.8261719, -2.4121094, -0.6645508, 0.083862305, -0.5522461, 0.4765625, 2.1210938, -0.24475098, -1.4785156, 0.40161133, 0.21923828, 0.2849121, -0.24353027, -0.91845703, 1.0341797, -0.82470703, 0.95947266, 0.39941406, 1.3339844, 0.96728516, 0.115600586, -1.359375, 0.21435547, -1.0498047, -0.62841797, -0.25585938, -0.78759766, -0.8696289, 2.5839844, 1.4814453, 1.6572266, 0.33618164, 3.5019531, 0.10076904, -2.1308594, 2.4804688, -1.0957031, -0.3461914, -2.7753906, -3.7832031, 0.37963867, -1.0283203, -1.3027344, 2.5136719, -0.29345703, -0.6689453, 1.5097656, 1.9199219, -2.9179688, -1.0419922, -0.91552734, -0.44726562, 0.028320312, -1.6191406, 1.2128906, 2.4042969, -3.4042969, -0.7939453, -0.0025482178, -0.6171875, 0.46850586, -0.33203125, -1.6777344, 0.67529297, -1.0097656, 0.92822266, -1.3964844, -1.0625, 1.4296875, 0.77783203, 0.10180664, -0.84375, 2.0507812, 1.3154297, -0.73583984, 1.9375, 2.8554688, -0.25317383, 0.3803711, -0.2631836, 0.8017578, 2.4042969, 0.13769531, -1.0634766, -1.7714844, -1.7255859, 2.546875, -0.5410156, 0.25390625, 0.28295898, -1.3310547, 0.4963379, 0.9301758, 0.6323242, 1.7578125, -0.5888672, -0.056884766, 2.0585938, 0.46728516, -1.6347656, -0.72021484, 0.6176758, 0.034088135, -1.5439453, 0.06359863, -0.5415039, 0.07208252, -1.8164062, -1.3876953, -2.3632812, 3.4023438, 3.3964844, 1.3935547, 1.5654297, -1.5625, -1.2158203, 0.040618896, 0.44384766, 0.07757568, -0.49658203, -0.4025879, -0.11303711, 0.2775879, 1.0205078, -2.921875, -0.45996094, 0.7548828, -0.4140625, -0.96191406, -1.9169922, -2.1914062, -0.7084961, 0.0859375, 0.08227539, -0.70654297, 2.1464844, -2.1542969, 0.3088379, 0.921875, 0.0036735535, 0.23388672, 0.050994873, -0.49560547, 1.0927734, 2.4003906, -0.073791504, 1.5126953, -1.0878906, -0.029663086, -0.8442383, 2.3730469, -0.3388672, 0.9848633, 1.3935547, 0.039123535, 0.10974121, -1.3339844, 2.0878906, 2.9121094, 1.3134766, 2.4394531, 0.78466797, -2.4707031, 3.1601562, -0.7133789, -1.296875, 0.5786133, 0.8173828, -1.3798828, 1.7958984, -0.2890625, -2.8378906, -0.9213867, 1.7402344, -1.7646484, 0.8876953, -0.010826111, -0.5527344, -0.036132812, -2.5195312, -2.0351562, 0.04989624, -0.12536621, -0.46240234, -1.4746094, 0.52490234, -0.4958496, 2.1738281, 2.734375, -1.78125, -0.7338867, 1.6728516, -0.13586426, 1.3613281, 0.99121094, -0.39990234, -1.8535156, 0.25317383, 3.5605469, 0.35253906, -0.21557617, 0.7495117, 1.8330078, -1.3671875, -0.12384033, -0.7104492, 2.3242188, -3.1679688, -0.0413208, 1.0634766, -2.1679688, -2.2753906, -2.8808594, -1.3251953, -1.5166016, 1.0966797, 3.3183594, 0.7270508, -1.0068359, -0.44848633, -2.453125, -3.8867188, -0.96728516, -0.2763672, 0.21643066, 1.2919922, 1.4033203, -1.1191406, 0.74658203, -0.78759766, 0.6464844, -0.3232422, 0.5473633, -0.75634766, -0.6542969, -1.2871094, -0.7763672, -0.5234375, 1.2666016, 1.4501953, -0.3059082, 1.5146484, -1.6845703, -2.3242188, 0.4182129, 0.4453125, -0.8334961, 0.8095703, 1.7285156, 0.06298828, 1.8330078, 0.80029297, -2.984375, 2.9570312, -1.4785156, 0.14575195, 2.0878906, -1.7021484, -0.83203125, 1.8876953, -0.78125, -1.5, 0.40307617, 2.7128906, 0.089660645, -1.2685547, -0.5751953, 1.8652344, -0.08605957, -0.42211914, 1.6816406, 0.7685547, 0.99121094, 1.2265625, -0.42285156, -0.2775879, -1.7041016, -3.1035156, 0.40478516, -3.2363281, 0.6484375, -0.93603516, 1.1855469, 0.39697266, 1.4580078, 1.1103516, 0.77441406, 0.11212158, -0.54296875, 1.359375, 0.06427002, 3.4121094, 3.1308594, -2.0761719, -1.6943359, -1.2246094, -0.96728516, 3.1464844, 0.4350586, -0.030014038, -0.30322266, -0.40771484, 0.66796875, -0.9501953, 0.28979492, -0.13134766, 1.6464844, -2.0820312, 1.4472656, 2.015625, -1.0146484, 0.18273926, 0.77441406, 2.6269531, -0.9448242, 2.9589844, 0.88134766, -0.13745117, 2, -1.6416016, 1.3271484, -0.93408203, -1.2392578, 1.7441406, -1.9335938, -0.76220703, -1.3613281, -0.87109375, -1.3154297, 1.4941406, 0.27441406, -0.91259766, 0.15515137, 1.3115234, 0.092041016, 2.0878906, 0.7392578, 1.6796875, -1.7666016, 0.37646484, -0.73828125, 0.3959961, 0.6220703, -2.1699219, 2.3535156, 0.40454102, 0.03302002, -1.9824219, 0.40039062, 0.85595703, 2.4082031, 2.4707031, 3.3730469, 2.625, 2.0703125, 0.5708008, 1.3115234, 1.0390625, 2.3417969, -2.9003906, -0.3010254, 0.40014648, 0.58496094, 1.5693359, -1.3125, 2.9042969, -0.65478516, -1.6835938, -0.43286133, 0.53759766, 0.11975098, -1.4375, 0.8574219, 0.99072266, 0.018829346, -1.6083984, -0.5161133, -1.1123047, -0.94628906, 0.035583496, -0.41430664, 2.3417969, 1.8642578, 1.5449219, -0.115234375, -2.1738281, 1.7783203, -3.2910156, -1.1259766, 0.6801758, -0.38623047, 0.36401367, -1.96875, 1.25, 0.09674072, -0.5029297, -0.68310547, 0.64990234, -0.15356445, 1.1259766, -1.2890625, 1.6621094, 0.76220703, 1.7060547, -0.2770996, -0.5751953, 1.7539062, -1.4482422, 0.23046875, -3.640625, 2.3066406, 2.3632812, 2.0371094, -0.020553589, -0.73291016, 1.5546875, -1.8808594, 2.3945312, -3.2089844, 1.0224609, -0.5263672, -2.7753906, -1.7675781, -0.44799805, -0.53271484, 1.8583984, -0.23596191, -1.2265625, 1.5664062, 0.18408203, 0.30493164, 0.80566406, 1.9960938, 1.8408203, 1.5351562, -0.19177246, 2.8828125, 0.26416016, -1.4345703, -1.234375, 1.4873047, 0.36279297, -0.6230469, 0.28710938, -1.1865234, 1.5898438, 1.7226562, -0.6044922, 0.06100464, -0.21533203, -0.63964844, 0.27294922, 1.3964844, -1.5410156, -3.125, 2.5625, 1.1171875, -1.3398438, 0.4921875, 1.7216797, -0.33666992, 2.3828125, -1.1083984, -0.44067383, -1.4033203, -0.52441406, 1.6699219, 0.7324219, -1.1083984, 0.43774414, 2.0820312, 0.087402344, -1.4091797, -0.88916016, -0.84765625, -1.2529297, -1.1669922, 0.37963867, -0.3100586, -1.4316406, 1.4833984, 0.7602539, -0.86572266, 4.0742188, -1.4550781, -0.6191406, -2.8671875, -1.2128906, -0.53466797, -0.01524353, -1.8261719, 1.7470703, 4.0507812, -0.84765625, 0.05883789, -2.3105469, -4.28125, -0.9824219, -3.3183594, 0.3557129, -1.5302734, -0.45239258, 0.45458984, -0.19958496, 1.3984375, -0.3371582, -0.7807617, -0.6738281, -0.34716797, 1.6552734, -1.6689453, 1.109375, 1.4335938, 0.7636719, 1.6064453, 1.1054688, 0.4711914, 1.8935547, 0.28686523, 5.7539062, -0.14025879, -2.2207031, 0.6435547, -0.37646484, 0.16308594, 0.60009766, 0.5185547, 0.8198242, 1.5351562, -0.0025787354, -0.49731445, -3.6796875]}, "B00F3BHB80": {"id": "B00F3BHB80", "original": "Brand: Cuisinart\nName: Cuisinart CGG-306 Chef's Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel\nDescription: \nFeatures: FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches.\nTWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling.\nSTAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat.\nLIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you\nIDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).\n", "embedding": [-4.2773438, 1.8066406, 2.9648438, 0.4736328, -0.6484375, -0.70458984, 1.2558594, -1.4667969, -1.3330078, 1.7626953, 1.4453125, -1.5761719, 0.94970703, -0.7363281, 0.22094727, -0.34814453, 0.6503906, -0.31933594, 0.8618164, 0.69873047, 1.1132812, -0.7055664, 1.6396484, -1.0703125, 0.6411133, 1.1962891, 4.296875, -4.0585938, -0.044555664, -2.3613281, 1.6865234, -0.55126953, 1.0419922, 0.56689453, -2.8027344, -1.4619141, -1.3691406, 1.2226562, -2.2578125, -0.38330078, -0.33251953, -0.69970703, 2.2382812, -0.578125, -2.6113281, -0.033233643, -0.27905273, 1.8603516, -1.3808594, 1.125, 2.0234375, 0.30322266, 1.3623047, 0.29907227, -0.71191406, 1.1669922, 0.32763672, -1.2089844, 0.7661133, -0.3388672, 2.8828125, -0.3017578, -2.4804688, -0.05508423, -0.6196289, -1.9550781, 0.44628906, 0.48095703, -0.5024414, 1.0830078, 1.8681641, -0.75683594, 0.5332031, 0.4128418, -1.0791016, -0.9472656, -1.8037109, 2.8085938, 0.7182617, 0.0021305084, -1.4824219, 1.2529297, 0.71435547, -1.9560547, 0.12286377, 0.75878906, 0.9458008, -0.25097656, 1.6123047, 1.3193359, -1.6113281, 2.6015625, -2.5917969, -3.3613281, 0.9580078, 0.030380249, 0.59472656, 1.5117188, -0.047973633, 2.4960938, -1.1445312, -0.4736328, -1.3554688, 0.27294922, -1.9394531, -0.7104492, 2.2890625, 0.40844727, -2.9628906, 0.79589844, -1.6396484, -0.91748047, 0.27905273, 0.2626953, 0.57373047, -0.30419922, -0.10406494, 2.1894531, 2.4238281, 1.3896484, 4.7890625, 0.3383789, 0.5390625, -1.9189453, -0.50878906, 2.0683594, -1.5507812, 2.25, 6.3710938, -1.9433594, -1.1601562, 0.25024414, 2.9375, 0.8286133, -0.7973633, -2.7539062, -1.0898438, -3.0351562, -3.40625, 2.6289062, -3.1679688, 1.6347656, 1.2314453, -1.28125, -3.5820312, -0.8364258, 0.091918945, 2.3261719, 0.40551758, -1.1181641, -0.7104492, -1.2919922, -0.07006836, -1.8271484, 2.5839844, -1.5478516, -2.1738281, -1.0019531, 4.0585938, 1.2373047, 2.4609375, -2.6210938, -1.8095703, 0.8417969, 1.6767578, -0.3022461, 0.6748047, 2.7890625, -0.21203613, 1.3095703, -0.47436523, -2.2109375, 0.7421875, 0.5292969, 0.46850586, -1.1875, 0.19042969, 2.8222656, 0.7578125, -1.1767578, 0.022857666, -3.1855469, 0.7285156, 1.5419922, -0.24816895, -2.78125, 1.4990234, 1.6728516, -0.2854004, -2.9726562, 0.23571777, 0.17993164, -0.11785889, -0.25952148, 1.1601562, 0.09020996, -1.7236328, -0.76171875, -0.60058594, 0.6015625, -0.5185547, 0.11279297, -1.3378906, -0.113464355, -2.2890625, -3.2128906, -1.5703125, -1.9804688, 0.8828125, 2.1367188, 1.6455078, -1.3291016, 1.4804688, -1.8798828, -0.08679199, -1.9697266, 2.0273438, 0.030822754, 1.4101562, 1.2626953, -0.20776367, -1.4326172, 0.47973633, 1.7578125, 0.765625, 2.6015625, 0.7055664, 0.44750977, -0.85498047, -1.2089844, 1.6865234, -0.38012695, 0.2199707, 0.9790039, -0.68359375, 1.9521484, 0.87841797, -0.043060303, -1.1835938, 0.015716553, 1.2890625, -0.49365234, -0.828125, -1.2412109, -0.80566406, 0.48828125, -2.1523438, 3.0839844, 1.9667969, 0.28833008, -0.9038086, 0.3659668, -0.1295166, 1.1123047, -1.0576172, 0.49926758, -1.0673828, 0.4111328, -0.7944336, -2.6230469, 1.5253906, 1.6005859, 0.65527344, 1.1835938, 0.921875, -0.6713867, 3.2851562, 0.18933105, -2.7558594, 0.6791992, 1.7988281, -0.21582031, 1.2695312, 0.49243164, 2.2792969, 0.6386719, -1.4833984, 2.0878906, -0.09967041, 1.2939453, 1.0146484, -0.39941406, 2.515625, -2.3730469, -0.5541992, 1.0605469, 0.38891602, 0.8378906, -0.63134766, 0.9873047, 4.6679688, -1.1279297, -3.2226562, 3.0527344, -1.5810547, 0.02545166, 0.5107422, 0.06414795, -0.765625, 0.26782227, 1.3134766, 0.53564453, -1.3330078, 1.5498047, -2.7128906, -1.6171875, 0.00667572, -0.98876953, -0.8227539, 0.2401123, -0.9536133, -0.09069824, -2.6660156, 1.6123047, -1.8457031, -1.6113281, 0.9038086, -1.4619141, 1.2773438, 0.9399414, 0.9580078, 1.9160156, -1.9101562, -1.2441406, 0.16491699, 0.8754883, -1.0830078, 0.34594727, 0.8251953, -1.1738281, -0.9946289, 0.22167969, 1.8466797, -3.0351562, -2.7363281, -0.33544922, -0.82714844, -3.1953125, 0.9550781, -0.10003662, -1.3730469, 0.49560547, -2.2304688, -0.6430664, -1.2236328, -2.5351562, -0.9604492, -0.51220703, -2.0449219, -1.1894531, 0.5996094, 0.42651367, 0.05593872, -3.9179688, 0.51220703, 0.38598633, 0.75097656, 0.8925781, -0.60302734, -0.6064453, -1.2207031, 0.2052002, -0.4868164, 0.8564453, -0.20007324, -1.8193359, -0.3828125, -3.5292969, -0.17651367, -2.921875, 0.043823242, -0.7241211, 1.2060547, -3.2460938, -1.1845703, -0.58251953, -0.63134766, 2.5527344, -0.9067383, 0.97802734, 0.52685547, 0.37719727, 0.76708984, -1.171875, -1.5, -1.6474609, 1.5273438, -1.2373047, -2.28125, -1.6425781, -1.7626953, -0.53808594, 0.4399414, -1.9101562, 0.91748047, -2.2617188, 2.1445312, -2.1972656, -0.23083496, -0.38012695, 0.80322266, 0.39819336, -0.60595703, -2.9394531, 1.2646484, -1.4726562, -0.42114258, 0.23632812, 1.3896484, -0.5708008, 1.3193359, 1.1416016, 0.54003906, -0.7963867, -1.7041016, -3.09375, 0.69873047, -0.22595215, -2.5214844, 2.7851562, -0.5805664, -1.9267578, -3.609375, -0.80029297, 3.015625, 1.4414062, 2.5039062, 0.39379883, -0.2512207, 2.4570312, 1.2529297, -0.28295898, 0.0736084, -1.3164062, 2.6054688, -3.0546875, -1.3457031, 0.9355469, 3.0546875, -1.6611328, -0.69091797, 2.6542969, 0.86328125, 0.9814453, 1.6904297, 1.7236328, 0.60058594, -1.1474609, 0.91064453, 2.328125, 0.94433594, 0.22973633, -1.2841797, -0.41601562, -0.6508789, 1.2734375, 0.4309082, 0.062408447, 2.5546875, 1.5175781, 2.2304688, -3.1015625, 0.06317139, -0.57910156, 0.83203125, 1.1572266, 3.1777344, -1.7431641, -0.80029297, -0.4519043, -1.3261719, -0.06542969, -1.2324219, -0.93847656, 1.8779297, 0.04776001, -0.1274414, -0.77197266, -0.08380127, 1.1816406, -0.31445312, 1.5419922, 0.60253906, -0.35302734, 1.1523438, -1.0107422, -0.9277344, -1.9306641, 1.6455078, -1.6083984, -1.9775391, 0.82666016, 2.4492188, -1.6787109, -2.0742188, -0.18896484, -0.06744385, -1.0615234, 2.0546875, -0.6484375, -2.0097656, 2.3554688, -0.9848633, 0.28442383, 0.69873047, -0.69628906, 0.07287598, 0.4560547, 0.7270508, -0.43554688, 0.5776367, 0.7426758, -0.8808594, -2.9023438, 0.8227539, -3.2167969, -0.39404297, -0.4411621, -1.2197266, -1.609375, 1.6113281, 1.7285156, 1.6035156, -2.3300781, 3.1660156, -0.87890625, -2.0917969, 0.3630371, -2.8554688, -0.9370117, -3.6015625, -4.2226562, 0.8730469, -1.1074219, -0.2668457, 3.5527344, 0.6567383, 1.0810547, 2.4941406, -0.6435547, -3.328125, -1.5078125, -2.0625, -0.4567871, -1.7236328, -0.5102539, 1.8017578, 0.3022461, -0.5571289, -2.140625, 0.60498047, 0.24694824, 1.7265625, 2.59375, -2.140625, 1.3876953, -1.3505859, 0.38916016, -0.087768555, -0.5600586, 2.6035156, -2.1660156, -0.17102051, -2.9453125, 1.1396484, 1.2539062, -0.7890625, 0.20922852, 1.8964844, 1.0771484, -1.5566406, 0.8364258, 1.8300781, 2.1894531, 0.14868164, -1.2529297, -1.5556641, 0.39672852, 0.18847656, -0.009277344, 0.21850586, -1.0859375, -1.7265625, 0.6972656, 1.4980469, 1.5410156, 2.375, -0.060760498, -2.2265625, -0.52685547, 0.2084961, -2.4375, -1.9638672, -0.26904297, 0.7216797, -0.2454834, -0.25805664, -1.421875, 0.53125, -2.21875, -1.1835938, -2.8378906, 3.609375, 1.3515625, 2.9394531, 2.828125, -1.1298828, -0.52197266, 1.8427734, -0.31274414, -0.94091797, 1.9775391, 0.49243164, -0.025100708, 1.3652344, 0.35791016, -1.8496094, -0.46240234, 1.2900391, -2.3769531, -0.068847656, -2.328125, 0.9663086, -1.71875, -1.3359375, 1.1123047, -0.4951172, 2.8671875, -1.0878906, -1.3808594, -0.75634766, 0.8857422, -0.65234375, -0.65283203, -1.0048828, -0.025894165, 1.2519531, 0.87597656, 0.9760742, -1.5634766, 0.1850586, -0.11431885, 2.4433594, 0.27929688, 0.6347656, -0.21130371, -0.004863739, -2.5957031, -1.2978516, 1.6308594, 3.5078125, -0.74365234, 3.609375, 0.49853516, -2.4179688, 1.1923828, -0.51708984, -2.9492188, -1.1601562, -0.42578125, 0.9272461, 0.35742188, 0.36499023, -2.9726562, -1.8017578, 1.3193359, -1.9560547, 0.84472656, -0.76416016, 0.091796875, -0.84521484, -2.3808594, -1.0556641, -0.9248047, -0.18322754, -1.0585938, -2.5566406, 0.24060059, -0.47851562, 1.2509766, 2.3300781, 0.6303711, -0.58691406, 1.6484375, -1.2851562, 0.5332031, -0.72753906, -0.8774414, -2.6875, 0.44067383, 3.3066406, 1.125, 2.1582031, -0.34887695, 1.2128906, -1.2011719, 0.9550781, -1.4658203, 3.5039062, -0.17626953, -1.2060547, 0.6645508, -1.5224609, 0.15270996, -3.4023438, 1.5917969, 0.054534912, 2.3789062, 1.1103516, -0.3088379, -2.375, -0.7324219, -1.3964844, -5.125, -0.6064453, 1.1279297, 1.0566406, -0.20117188, 1.5664062, -0.89208984, -1.4121094, 0.49389648, -0.014053345, -2.3203125, -0.4519043, -0.35839844, -1.7851562, 0.20593262, 1.7421875, -0.9941406, 1.9248047, 1.7714844, 0.23522949, 0.23925781, -3.8417969, -1.3291016, 1.03125, -0.9736328, -0.79052734, 1.3525391, -1.1591797, 0.35839844, 0.81689453, 1.5273438, -2.6972656, 1.8964844, -1.8007812, -1.1054688, 0.6298828, 0.15136719, 0.5493164, -0.5576172, -1.5722656, 1.1416016, -0.6254883, 1.5507812, 0.4609375, 0.7988281, 0.50927734, 2.5058594, -0.4946289, -1.0234375, 0.61816406, 1.1865234, 1.8603516, 1.1416016, -2.4140625, -0.6791992, -2.1777344, -2.1289062, -0.013183594, -1.2714844, 0.70410156, -1.4433594, 1.5859375, 1.1513672, 0.45825195, -0.6557617, -0.09729004, -0.6357422, -0.21643066, 2.6953125, -0.3947754, 2.5214844, 2.0878906, -0.9638672, -1.84375, -2.1640625, 0.9926758, -0.19165039, 1.3808594, -0.25390625, -0.36865234, -0.4609375, 1.5664062, -0.61816406, 2.015625, 1.9882812, -0.4699707, -1.2792969, 1.6318359, 3.1210938, -0.5805664, -0.47705078, 1.3417969, 1.6064453, -1.1875, 4.5, -0.7241211, -2.1796875, 2.0625, -1.3964844, 1.0986328, -0.43920898, -0.91796875, -0.031204224, -2.0839844, -0.15527344, -2.8730469, -0.8808594, -2.6621094, 2.2910156, 2.0839844, -1.0234375, 0.23327637, 3.1289062, 0.21960449, 1.6376953, 2.3671875, 0.6933594, 0.0056762695, 1.4345703, -0.91503906, -0.49145508, 0.46289062, -2.5742188, 1.2558594, 2.1464844, -0.78027344, -1.2832031, 3.2285156, 1.3291016, 3.0742188, 1.6230469, 1.4003906, 1.9550781, 1.1679688, 4.5703125, 0.39404297, 1.9355469, 2.296875, 0.80322266, -0.22912598, 2.9746094, 1.8720703, -0.6333008, -0.8925781, 2.328125, -0.5878906, -1.9169922, -0.6245117, 0.99560547, 0.5395508, -3.6367188, 1.7421875, 1.4121094, 1.0683594, -2.1269531, -1.9414062, -0.09741211, -0.36523438, 1.3359375, 0.4909668, 1.4140625, -1.3085938, -0.5546875, -2.4960938, 0.8828125, 1.3574219, -3.7089844, 0.75683594, -0.11871338, -1.5068359, -0.47924805, 0.8676758, 0.5517578, 0.9746094, 0.89941406, 1.3857422, 1.1992188, 1.6835938, 2.3789062, -1.2373047, 1.1445312, 0.2109375, 3.3632812, 0.80615234, 0.15100098, 2.4570312, -1.5371094, -1.8212891, -3.1230469, 1.9492188, 0.6386719, 2.2246094, 0.2409668, -0.85595703, 1.6220703, 2.1582031, 2.1621094, -1.84375, 1.9804688, -0.1307373, -3.8730469, -0.7055664, 0.35839844, 0.055267334, 3.8222656, 1.3457031, -2.8632812, 2.1679688, 0.58935547, 1.0859375, 0.6923828, 0.78466797, 1.1767578, 1.2929688, -0.4819336, 1.3466797, -0.8256836, -0.9194336, -0.7807617, 3.0605469, 1.1347656, -0.68847656, 0.46240234, -1.4101562, 0.1920166, -0.6694336, -0.3005371, 0.9243164, -1.8046875, -0.56591797, 0.030029297, 0.8378906, -1.0390625, -1.0478516, 2.5742188, -0.0064048767, -1.4160156, 0.33496094, 0.6542969, -0.21191406, 3.0429688, -0.7451172, 1.125, -0.4790039, -0.66845703, 1.6025391, -0.19592285, -1.9746094, 0.48950195, -0.5136719, 1.5419922, -0.7006836, -0.5522461, 0.05444336, -0.32080078, 0.7949219, 0.46362305, -1.6445312, 0.5966797, 0.3388672, 0.13330078, -0.421875, 2.7304688, -1.4326172, 0.5336914, -3.3242188, -1.7597656, 1.234375, -1.5644531, -0.76660156, -0.24475098, 3.828125, 1.7509766, 1.0566406, -2.0097656, -3.390625, -0.43579102, -0.6225586, 2.9648438, -0.21936035, -1.6318359, 1.3007812, -0.027755737, 1.9697266, -2.0039062, -0.10040283, -0.37109375, 0.7089844, 0.45483398, -0.8129883, 1.71875, 1.3271484, -0.13256836, 0.09729004, 2.015625, 0.7260742, -0.0927124, 1.3955078, 2.4882812, -0.61572266, -2.1660156, 2.3945312, -1.6845703, 1.1035156, 1.5214844, -0.034576416, 2.2363281, 1.7265625, 0.3347168, -1.5214844, -2.1015625]}, "B07ZZM9S3B": {"id": "B07ZZM9S3B", "original": "Brand: Napoleon\nName: Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black\nDescription: \nFeatures: The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner\nPrecise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing\nUse the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience\nThe stainless steel cooking grids are virtually maintenance free\nDurable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather\n", "embedding": [-3.0605469, 0.31958008, 3.0742188, 1.8876953, -0.017974854, 1.1630859, 0.6586914, -0.6464844, 1.8320312, 1.0488281, 2.109375, -1.5107422, 0.57666016, -0.21142578, 0.80029297, -0.10498047, 1, 1.7675781, 0.36010742, 0.11834717, 0.61035156, 0.71972656, 2.8554688, -2.0722656, 0.18286133, 0.4033203, 4.046875, -4.9335938, -0.16345215, -1.0527344, 1.3515625, 0.34838867, 0.3244629, 1.3212891, -2.4570312, -1.9873047, -0.9355469, -0.1595459, -3.2148438, -0.014770508, 0.27563477, -0.07330322, 2.4765625, 1.0019531, -1.9267578, -1.2861328, -1.0029297, 0.3256836, -2.0117188, -0.8496094, 0.94140625, 2.5859375, -0.04815674, 0.25634766, 0.8652344, 0.75878906, 1.2158203, -0.97802734, 1.859375, 1.3974609, 2.0292969, 1.5878906, -3.265625, -0.5263672, -1.1279297, 0.055358887, 0.1550293, -0.4255371, 0.26782227, -1.2246094, 1.0371094, 0.7104492, -0.15844727, 0.5883789, 0.55615234, -2.9648438, -2.4960938, 1.2275391, 0.66259766, -1.1835938, -1.3271484, 1.3232422, 1.8027344, -1.046875, -0.05407715, 0.56152344, -1.4140625, -1.6035156, 2.6191406, 0.19213867, -0.3972168, 0.7607422, -2.2246094, -4.7929688, 2.4023438, 0.039093018, 0.20776367, 0.7089844, 0.059387207, 1.2099609, -2.0058594, -0.6064453, -1.5273438, -0.15197754, -2.953125, -1.6679688, 0.64697266, -0.25708008, -2.0488281, 0.74609375, -2.1796875, -0.85546875, 2.3730469, -0.04058838, 1.2519531, 1.8671875, 0.19152832, 2.6367188, 0.63916016, 1.8398438, 2.4550781, -1.1982422, 1.7744141, 0.15795898, -0.6513672, 1.2871094, -1.9921875, 1.3359375, 4.1640625, -1.6035156, 1.0625, -1.8183594, 2.7558594, -0.3701172, -0.76123047, -1.5224609, -1.53125, -1.0664062, -3.3457031, 0.23303223, -1.1552734, 1.0126953, 0.6748047, -1.59375, -2.3945312, -0.5566406, -0.23510742, -0.32641602, -2.1796875, -1.4003906, -0.80908203, -1.4521484, -0.25073242, -0.81884766, 0.21325684, -0.33642578, -1.0107422, -1.7666016, 3.3945312, 0.60302734, 0.32250977, -1.7822266, -1.2431641, 1.3173828, -0.16125488, -0.8339844, -1.6962891, 2.5136719, 0.038085938, 3.4902344, -0.4494629, -2.3359375, -1.1132812, -0.6791992, -0.115478516, 0.3305664, -2.5019531, 1.75, 0.004802704, -0.15405273, -2.484375, -0.95751953, 1.5195312, -0.7890625, 1.2255859, -2.0429688, -0.3166504, 0.4555664, 1.1005859, -0.39404297, -0.12780762, 0.7504883, 0.21838379, 1.5771484, -1.0292969, -0.6694336, -0.49023438, -1.7373047, 1.0566406, -0.09991455, -1.5224609, -0.92871094, 2.0859375, 0.76416016, -2.4042969, -2.7617188, -0.6611328, -0.64453125, 1.7773438, 0.22363281, 2.8769531, -1.6025391, 0.69921875, 0.22912598, 1.2714844, -2.5546875, 1.6171875, -0.11529541, 2.1132812, 3.5917969, 0.31201172, -0.8652344, 0.10949707, 1.8447266, 0.25024414, 2.3847656, 1.5185547, -0.06842041, -3.3007812, 0.0053520203, 1.9902344, 0.057647705, -0.7944336, 0.6635742, 0.13464355, 2.8144531, -0.19311523, -2.6542969, -0.7011719, -0.3552246, -0.060668945, -1.8271484, -1.1855469, -1.4726562, 0.17211914, 1.2861328, -2.03125, 1.6816406, 1.2021484, 1.6464844, -0.43823242, 0.1081543, 1.4785156, 0.13085938, -1.1191406, -1.21875, -0.38183594, 1.2148438, -1.0341797, -1.3193359, 2.2773438, 0.8310547, 0.33569336, 0.18151855, 1.1699219, -0.060760498, 1.8925781, 1.7978516, -0.93066406, -0.3894043, 0.57666016, -0.5786133, 3.6601562, 0.39135742, -0.3527832, -0.05331421, -2.2832031, 2.9589844, -1.6679688, 2.0019531, -0.40551758, 0.78466797, 1.5488281, -3.15625, 0.14477539, 0.010261536, 1.2441406, 0.29370117, -1.1689453, 1.0927734, 4.0703125, -1.3525391, -1.6396484, 3.2421875, -1.2626953, -0.9838867, 1.0126953, -1.0097656, 0.16870117, -1.6630859, 2.0566406, 0.875, 2.1894531, 0.31811523, -0.91015625, -0.55029297, -0.019607544, -2.2753906, -0.082336426, -1.4443359, 0.96240234, -0.0670166, -1.0478516, 2.5976562, 0.13342285, 0.33325195, 0.859375, -3.4140625, 2.1855469, 0.10650635, 2.1328125, 1.7402344, -0.8105469, -1.6044922, 1.3779297, -0.18859863, -1.8759766, 2.5, -1.1796875, -0.25830078, -1.5546875, -1.5195312, -1.0253906, -2.0722656, -2.1015625, 0.7036133, -1.4775391, -2.3789062, -0.18408203, -2.0898438, -0.50390625, 1.1787109, -2.9199219, -0.14440918, -1.2626953, -4.2109375, -1.6416016, -2.0625, -1.5585938, -0.9003906, 1.7373047, 0.53222656, 0.21655273, -3.4648438, -0.72314453, -1.3671875, -1.7109375, 0.8618164, -0.19335938, 0.77441406, -1.4638672, -0.80615234, 0.4428711, -0.5883789, 0.65527344, -2.3847656, 1.2421875, -2.6308594, 0.98876953, -2.5957031, 0.32348633, -1.1464844, 0.27124023, -2.4375, -1.3144531, -2.8457031, -0.8276367, 3.3554688, -0.7441406, -0.94628906, 1.4892578, -1.2666016, 2.4042969, -2.03125, -1.4443359, -0.6870117, 0.77978516, -2.7753906, -3.2402344, -3.3164062, -0.0149383545, -1.1298828, -0.40063477, -1.8183594, 0.88720703, -2.3261719, 2.0625, -1.9072266, -0.6796875, -1.0644531, 0.24914551, -1.2138672, -1.7373047, -1.7958984, -1.2480469, -0.09307861, -1.6074219, 0.77783203, 2.2460938, -0.4206543, 1.5410156, 0.95996094, -0.37109375, 1.0322266, -0.390625, -1.9882812, 1.6171875, -0.7910156, -2.2128906, 2.0058594, -2.1640625, -0.4104004, -0.5541992, -1.2578125, 2.84375, 2.1308594, 1.5898438, 1.1826172, 0.5229492, 0.36572266, -0.18811035, -0.3791504, -0.40844727, 0.625, 3.8359375, -1.9873047, -1.5605469, 0.18359375, 2.0742188, -0.7553711, -1.1679688, 2.1601562, 0.8300781, 2.4824219, 2.1347656, 0.94384766, -0.0036258698, -2, 0.5878906, 1.1640625, -0.5727539, -0.37060547, -0.027770996, -0.3425293, 1.4072266, 0.8520508, 2.9746094, -0.64746094, 2.7460938, 1.2666016, 2.7929688, -1.4023438, 0.03225708, 1.0107422, 2.0429688, 0.11480713, 1.1552734, -0.06188965, 1.5166016, 0.19348145, -0.03149414, -0.043884277, -2.0878906, 1.0009766, 0.6152344, 0.05444336, 1, 0.40649414, 1.8925781, -0.05178833, 0.07861328, 2.2324219, -0.83740234, -1.2509766, 0.9819336, 0.55126953, -0.43188477, -2.1777344, 0.2890625, -1.0537109, -1.9228516, 0.3857422, 2.9941406, -1.5605469, -1.8476562, 1.2929688, -0.072631836, 0.044891357, 2.2832031, 0.55566406, -0.765625, 0.39331055, -0.40551758, -0.56103516, -0.35668945, -2.3867188, 0.5307617, -2.5664062, 0.27319336, -0.5214844, 0.9428711, 0.33813477, 2.6171875, -1.6826172, 0.42944336, -4.7695312, -0.37353516, 0.14050293, -1.0576172, -2.2519531, 2.484375, 0.22509766, -0.15246582, -0.75097656, 2.953125, -1.2158203, 0.120788574, 1.0996094, -2.7089844, 0.26879883, -3.4257812, -2.0488281, 1.8691406, -0.50097656, -0.7036133, 1.2949219, 0.16442871, -0.14501953, 1.6777344, -0.8691406, -2.1054688, -1.0078125, 0.20996094, -0.4946289, -0.9160156, -2.4375, 1.4199219, -0.27734375, -1.5117188, -1.6923828, 0.35961914, 0.47827148, -0.41723633, 2.7871094, -2.8984375, 0.22058105, -0.014389038, 1.2177734, 0.3227539, -0.9189453, 0.7763672, -1.2197266, -0.14685059, -4.5078125, 1.1171875, 1.8183594, 0.03881836, 1.1162109, 0.9682617, 1.0898438, 0.21875, -1.1943359, 0.4465332, 2.5566406, 0.5097656, -2.8925781, -0.7631836, 0.39990234, 0.90771484, -0.33764648, 1.2490234, -0.24694824, -1.3242188, 1.3808594, 1.96875, 1, 0.46655273, -0.47583008, -1.5410156, 0.14868164, 1.1513672, -1.1259766, -0.296875, 0.5595703, 1.0595703, 0.07922363, 0.6411133, -2.6738281, 0.29638672, -0.17407227, 0.22998047, -2.2773438, 4.0859375, 2.4335938, 1.7519531, 1.71875, 0.36010742, -1.5517578, -1.34375, 0.94921875, -0.3708496, 2.1367188, 0.6538086, 1.3193359, 1.1142578, 1.1523438, -0.67041016, -0.3137207, 2.8125, -2.3066406, -0.52441406, -0.5029297, -0.7368164, -1.5478516, 0.22729492, 1.0673828, -0.034362793, 1.9707031, -0.7246094, -0.68310547, 1.4912109, 1.8496094, -0.25170898, 0.43432617, -0.16113281, 0.43676758, 1.1728516, 0.63378906, -0.7104492, 0.19470215, 1.1191406, -0.61865234, 1.6240234, 1.6464844, 0.3876953, 0.13696289, 0.13623047, -1.4199219, -2.6386719, 2.3046875, 1.9931641, -0.38354492, 4.7851562, 1.6123047, -2.4550781, 1.8759766, 0.6513672, -5.2109375, -0.10876465, 0.7089844, 0.3190918, -0.34301758, 1.0322266, -3.5585938, 0.43554688, 2.8730469, -0.099121094, -0.14050293, 1, -0.29492188, 0.14379883, -2.0839844, -1.2294922, -2.59375, 1.7529297, -1.5068359, 0.7866211, 1.6894531, -0.8666992, -0.52197266, 1.9785156, -0.8178711, -0.89697266, 2.6074219, -0.44970703, 1.71875, -0.48779297, 0.28173828, 0.47460938, 1.2880859, 2.796875, -0.6513672, 1.9394531, -0.14086914, 1.2304688, -2.1699219, -1.1113281, 0.67041016, 2.9335938, -0.8125, -1.0791016, 3.5644531, -0.47875977, 1.53125, -0.08648682, 0.77197266, -1.9492188, 2.0214844, 1.4472656, -0.5541992, -0.9238281, 1.0371094, -2.4921875, -2.671875, -2.1933594, 1.3798828, 0.55566406, 0.66308594, -0.70214844, -0.7138672, 1.3642578, 0.15332031, -1.1777344, -1.7304688, 0.083862305, -1.1728516, -0.31274414, -0.7949219, 0.08898926, 0.3798828, 0.22753906, 0.6538086, -0.40942383, 0.16845703, -2.6601562, -2.2871094, 2.1054688, -2.2753906, -0.2175293, 2.4804688, -0.16894531, -1.4755859, 1.4238281, -0.26464844, -0.9589844, 2.0546875, -1.7714844, -1.3476562, 0.59765625, -0.11273193, -1.7324219, 1.0419922, -0.30737305, 0.79589844, -0.80322266, 0.51123047, 0.17407227, -0.77490234, 0.7685547, 0.40649414, -0.8208008, -1.1572266, 0.94628906, -0.35717773, 0.41748047, -0.53027344, -1.890625, -1.9804688, -1.0205078, -2.2207031, 1.0673828, -2.1953125, -0.012252808, -1.8935547, 0.5751953, 2.5058594, -0.39892578, 0.67089844, 1.7792969, 0.9711914, -0.2614746, 1.6728516, -1.2714844, 2.3261719, 1.8466797, 0.5253906, -0.7236328, -2.7949219, 0.12817383, 2.0585938, 0.76904297, -1.6123047, 0.4465332, -0.042114258, 0.58154297, 0.7866211, -0.031341553, 1.1767578, -1.0537109, -0.20727539, 0.47387695, 1.5986328, 0.032409668, 0.72802734, 0.12634277, -0.20410156, -0.7871094, 3.2402344, 0.5527344, -3.4257812, 2.3789062, -1.5878906, 1.5273438, 2.265625, 0.7089844, -1.1171875, -0.46533203, -1.8710938, -0.6147461, -1.0351562, -1.6796875, 0.79785156, 0.5566406, -1.2783203, 0.92333984, 1.7304688, -0.25610352, 2.4863281, 1.2382812, 2.0722656, -0.26098633, 0.04901123, 0.86376953, -0.7944336, 1.4228516, -2.2949219, 1.5947266, 1.3730469, -0.23913574, -1.4091797, 0.33642578, 2.2929688, 2.71875, 0.23425293, 0.20227051, 3.015625, 1.5693359, 1.7773438, -0.40649414, 1.0800781, 0.4387207, -0.57666016, -0.2154541, 1.5126953, 1.1162109, -1.8574219, 0.18676758, 0.8857422, -1.1611328, -1.8779297, 0.6567383, 0.18969727, 0.4951172, -1.421875, 2.8945312, -0.23278809, 0.48901367, -0.8510742, -1.4345703, -1.8642578, 0.37231445, -0.5029297, 0.72753906, 1.2929688, -0.84716797, 2.3574219, 0.015853882, 0.6933594, 1.1523438, -4.2734375, -0.22937012, 0.35473633, -0.9321289, 0.7885742, -0.7739258, 1.3994141, 0.88964844, 1.1591797, 0.8486328, 2.4941406, 0.78564453, 0.048614502, -1.9101562, -0.2076416, 0.13098145, 1.8955078, -2.2578125, 0.6303711, 2.6054688, -1.2207031, -2.453125, -5.796875, 2.8769531, 0.7597656, 1.6865234, 1.6376953, -1.1328125, 2.2890625, -1.5166016, 1.2226562, -2.3457031, 1.8105469, 1.1650391, -1.9726562, -0.8564453, 1.0263672, -0.32910156, 1.9755859, 1.4824219, -0.23779297, 1.1083984, -0.55908203, 2.484375, 0.0059165955, 1.3925781, 2.5273438, 0.3947754, -0.6855469, 1.8564453, 1.4042969, -0.82128906, -1.2832031, 3.1386719, 2.0742188, 0.28051758, 1.1669922, -0.087524414, -0.7084961, -1.4375, 0.10784912, -0.61621094, -1.5722656, -0.12182617, -0.26416016, 0.82128906, -0.9511719, -0.17236328, 2.8476562, 1.0273438, -2.15625, -0.7290039, 2.8984375, -1.0878906, 2.0917969, 0.28735352, -0.28198242, -0.67285156, -0.9560547, 0.3774414, 0.67822266, -2.8320312, -0.11456299, 0.7885742, 0.62646484, -0.95410156, -0.99609375, -1.5107422, -0.82958984, -0.84716797, 2.3125, -0.609375, -1.2832031, 2.8320312, -0.29589844, -0.5341797, 2.7558594, -0.55029297, 0.5576172, -1.6591797, -0.50439453, -1.3125, 1.0537109, -1.8320312, 0.28198242, 2.4414062, 0.04559326, 1.0507812, -1.3554688, -3.7675781, -0.9614258, -0.88964844, 2.2050781, -1.3125, 0.11633301, 0.6088867, 0.10015869, 2.9960938, -1.7519531, -1.3046875, 0.8857422, -2.3203125, 1.7324219, 0.23278809, 1.6376953, 0.08294678, 1.7275391, -0.6333008, 1.4228516, 1.3349609, -0.4921875, 0.70996094, 1.6591797, 0.5864258, -1.9082031, 1.5068359, 0.17321777, -0.8354492, -0.69091797, -0.7182617, 1.1210938, 2.5, -0.25927734, -0.3708496, -2.6386719]}, "B01J3S1NWI": {"id": "B01J3S1NWI", "original": "Brand: Cuisinart\nName: Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill\nDescription: \nFeatures: 146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use.\n8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability.\nCOMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more.\nNO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches.\nLOCKING LID: The lid latches down allowing for quick and easy transport\n", "embedding": [-2.4511719, 1.9169922, 2.609375, -0.45336914, -1.1738281, -0.44702148, 1.1904297, -1.9453125, -1.1494141, 2.2324219, 2.03125, -1.1025391, 0.85253906, -1.5830078, 0.55859375, 1.2460938, 2.28125, 0.5957031, 1.2949219, 1.4121094, 1.1474609, 0.69189453, 1.6396484, -0.8564453, 0.54248047, 1.1142578, 3.640625, -3.609375, -0.6254883, -2.0273438, 1.4072266, -0.21044922, 0.9433594, 1.4404297, -2.5878906, -1.4941406, -2.2910156, 1.640625, -2.4492188, -0.6928711, 0.3095703, -1.0244141, 1.8417969, -0.0869751, -2.3535156, 0.3647461, 0.25341797, 2.7050781, -0.20458984, -0.50878906, 1.5654297, 0.27929688, 1.15625, 1.1210938, -0.78466797, 1.5058594, -0.14465332, -0.8569336, 0.21313477, 0.19165039, 2.4941406, -0.26831055, -2.140625, -0.15930176, -1.4804688, -1.6191406, -0.122680664, 1.0449219, 0.55615234, 1.0292969, 2.84375, -1.0390625, -0.82373047, 0.53515625, -0.3701172, -1.3427734, -1.8896484, 1.6679688, 1.0712891, 0.42993164, -0.65625, 2.5625, 1.1933594, -2.6113281, 0.2705078, 0.4675293, 0.025650024, -0.5654297, 0.93359375, 1.0810547, -0.12988281, 2.921875, -3.1328125, -2.5, 0.859375, -1.0957031, 1.3251953, 2.6875, 0.52783203, 1.7685547, -1.1933594, 0.47314453, -1.8779297, -0.7705078, -2.9199219, -0.83691406, 2.5078125, 0.1763916, -3.6640625, 1.6152344, -0.5449219, -0.1706543, 1.0761719, 0.17614746, 0.7211914, -1.8798828, -0.40429688, 2.8242188, 2.8613281, 0.64746094, 3.7910156, 1.1142578, 0.73876953, -1.0195312, -0.8334961, 0.84521484, -1.1884766, 2.546875, 5.265625, -2.15625, -1.2285156, 0.41308594, 2.2382812, -0.050842285, -1.3574219, -3.8125, -1.5283203, -1.7470703, -2.8691406, 2.2363281, -3.2578125, 1.1152344, 2.0917969, -0.27148438, -4.3867188, -1.3222656, 0.18066406, 2.28125, 0.5151367, -1.3505859, -0.113342285, -1.2890625, -0.8574219, -1.1367188, 1.8212891, -0.57177734, -1.8789062, -0.9790039, 3.8320312, 1.2675781, 2.5566406, -1.8701172, -1.1865234, 0.62158203, 2.0390625, -2.0039062, 0.85302734, 3.8828125, -0.74121094, 0.7866211, -0.38110352, -2.0136719, 0.29907227, 0.29052734, 1.3056641, -1.4609375, 0.2878418, 2.1523438, 1.4667969, -1.9511719, -1.2695312, -3.0898438, 1.1845703, 0.6767578, 0.11920166, -1.8535156, -0.17895508, 1.2822266, 0.07312012, -2.4492188, 0.18041992, 0.78222656, 0.7832031, -1.3710938, 0.7783203, -1.0048828, -1.5947266, -1.9160156, -0.21057129, 0.06506348, -0.45825195, 0.03225708, -0.2088623, 0.5136719, -2.0351562, -3.7519531, -0.97314453, -2.0703125, 0.81884766, 2.0175781, 1.1083984, -1.0595703, 2.0878906, -1.9609375, -0.58935547, -0.8417969, 2.0703125, 1.0791016, 0.91552734, 1.5048828, -1.1035156, -0.64746094, 0.8378906, 2.7167969, 0.58496094, 1.5283203, 0.4724121, 0.44604492, -1.2958984, -1.0361328, 2.3359375, 0.5004883, -1.1962891, 0.3947754, -0.025009155, 2.5859375, 0.23864746, 1.1259766, -1.2548828, 0.041900635, 0.5048828, 0.20251465, -1.0732422, -1.0517578, -0.30566406, 0.31933594, -2.0898438, 3.578125, 2.265625, 0.53027344, -1.0693359, 0.65478516, 0.77441406, 1.9980469, -0.47924805, 0.46801758, -0.66503906, 1.1523438, -1.5537109, -2.8457031, 0.7705078, 1.0341797, -0.67333984, -0.18554688, 0.24719238, -1.0742188, 3.4746094, 0.6376953, -2.5019531, -0.98876953, 2.7089844, 0.24230957, 0.39501953, -0.029785156, 1.8505859, -0.08929443, -0.5185547, 1.8408203, 0.24926758, 0.09173584, 1.4414062, 0.040802002, 2.7324219, -2.5058594, -1.34375, 0.3383789, 0.56591797, 0.86572266, -0.3190918, 0.8129883, 4.6953125, -0.8803711, -3.3339844, 3.0839844, -1.6835938, 1.1533203, 2.3964844, -1.0400391, -0.31323242, 0.38256836, 1.3916016, 0.33642578, -1.9228516, 1.6308594, -1.6132812, -2.1855469, 0.29882812, -1.4042969, -0.9116211, 0.68652344, -0.9033203, -0.12384033, -2.2753906, 1.0244141, -1.0029297, -0.7963867, 1.4453125, -2.4648438, 1.3095703, 0.9506836, 1.1611328, 2.1894531, -1.6621094, -0.9819336, -0.3166504, 0.97265625, -1.5361328, 1.1357422, 0.09411621, -1.4023438, -0.7089844, 0.49023438, 2.8046875, -3.3105469, -3.1113281, -1.0683594, -1.6328125, -2.4101562, 0.99853516, -1.3300781, -1.046875, 0.6230469, -1.6455078, -1.0048828, -1.3017578, -2.359375, -0.5263672, -0.27539062, -1.8837891, -0.77978516, 0.29711914, 0.07232666, -0.5058594, -3.1992188, 0.4375, 0.4038086, 0.2644043, 0.39160156, -0.734375, 0.14099121, -0.97021484, -0.16430664, 0.15673828, 0.6225586, 0.546875, -1.6123047, -0.16235352, -2.9921875, 0.58203125, -2.5664062, -0.9238281, -0.9926758, 0.40234375, -3.1054688, -1.0517578, 0.18701172, -0.13061523, 3.0039062, -0.7246094, 1.9101562, -0.5385742, 0.39575195, 0.8803711, -0.3647461, -1.8896484, -1.6640625, 1.4414062, -0.95410156, -2.5566406, -2.4921875, -1.7578125, -0.45263672, 0.031677246, -1.9042969, -0.8105469, -2.9824219, 1.4609375, -3.1660156, -0.55566406, -0.30322266, 1.0273438, 0.18603516, -1.4462891, -3.1015625, -0.2746582, -2.1757812, -0.04421997, -0.62890625, 0.6142578, -0.25146484, 1.7861328, 0.9199219, -0.8544922, 0.86621094, -1.9951172, -3.8691406, 1.1796875, -0.07208252, -2.1445312, 1.9150391, -0.11920166, -2.6894531, -4.3398438, -1.0068359, 1.6025391, 1.0878906, 1.84375, 0.7314453, -0.43701172, 1.6708984, 0.36645508, 0.4519043, -1.0273438, -1.2070312, 3.2421875, -2.6835938, -1.2314453, 0.94384766, 3.5332031, -1.8037109, -1.2832031, 3.2675781, 0.39331055, 1.5732422, 2.8476562, 2.2714844, 0.77685547, -0.89697266, 2.1132812, 2.984375, 1.40625, -1.0546875, -0.6044922, -0.58203125, -1.1132812, 1.7226562, 0.42749023, 0.7402344, 2.1660156, 2.0019531, 0.109191895, -3.1035156, 0.7392578, -0.43920898, 0.41259766, 0.7158203, 2.5449219, -1.3447266, -1.0644531, -1.5595703, -0.6152344, -0.09863281, -0.18188477, -1.1816406, 3.328125, 0.69189453, -0.6928711, -0.6430664, 0.0037727356, 0.92822266, -0.35107422, 0.6064453, 1.0976562, 0.46484375, 0.55566406, -1.8623047, -1.0957031, -1.3271484, 1.6337891, -1.6191406, -2.3027344, 1.3916016, 1.9580078, -0.9038086, -2.1289062, 0.47875977, -0.21740723, -1.7783203, 1.4755859, 1.4765625, -1.9570312, 2.2285156, -0.99121094, 0.9658203, 1.1533203, -0.7216797, -0.69189453, -0.28320312, -0.5595703, -0.0112838745, 1.7265625, 1.3632812, -0.33935547, -3.625, 0.46899414, -2.6308594, 0.3017578, -0.4321289, -1.6064453, -1.0371094, 1.6347656, 1.6425781, 2.4082031, -1.6298828, 2.8535156, 0.4506836, -1.7685547, 0.60839844, -2.5039062, 0.085998535, -3.1015625, -4.75, 0.9711914, -1.8183594, -0.47485352, 3.1933594, 0.08331299, 0.7841797, 1.3515625, -0.15246582, -3.1367188, -1.9599609, -2.1660156, 0.2529297, -1.5214844, 0.26049805, 1.078125, 0.9824219, -1.2304688, -1.7304688, 0.6225586, -0.41992188, 1.7998047, 2.1210938, -2.7382812, 2.6171875, -2.2558594, -0.17529297, -0.6147461, 0.23852539, 1.8212891, -1.6171875, -0.6821289, -2.2285156, 1.8339844, 0.9345703, -0.6015625, 0.64404297, 1.2822266, 0.9946289, -2.6523438, 0.53466797, 0.9199219, 2.6542969, -0.74853516, -1.9033203, -2.1953125, 0.6425781, 0.064208984, -0.077819824, -0.46801758, -0.84277344, -2.8105469, 1.0351562, 0.64453125, 1.9443359, 1.4140625, -0.5654297, -2.7226562, -0.37353516, -0.06591797, -2.5136719, -1.5048828, -0.37646484, 0.08569336, -1.2490234, -0.45336914, -2.4472656, 0.46166992, -1.7832031, -0.6035156, -3.0136719, 3.8984375, 1.4580078, 2.3847656, 2.0917969, -1.4833984, 0.18188477, 1.734375, -0.3779297, -0.6357422, 0.89501953, -0.94628906, 0.5493164, 1.8740234, 1.2226562, -2.0820312, -0.68847656, 1.0810547, -2.8007812, -0.46606445, -3.4941406, 1.8652344, -1.4121094, -1.1455078, 1.0634766, -1.3271484, 3.1289062, -1.5087891, -1.1660156, -0.77001953, 0.3540039, -1.7148438, 0.6176758, 0.16625977, -0.04006958, 1.9804688, 1.0302734, 2.2246094, -1.4833984, 0.38549805, -0.59765625, 2.2636719, -1.4160156, 0.37451172, -0.4362793, -0.3618164, -1.8886719, -0.4807129, 1.1347656, 2.5683594, 0.5361328, 2.8496094, 1.0859375, -1.9794922, 0.45629883, 0.71777344, -2.5273438, -1.5820312, 0.27954102, 0.4675293, 1.5527344, -0.19726562, -3.4453125, 0.12817383, 0.94433594, -1.4970703, 0.57666016, -0.50146484, -1.2060547, 0.29248047, -2.2832031, -0.76953125, 0.025924683, -1.5625, -0.119140625, -1.2304688, 0.41796875, 0.18554688, 1.9287109, 3.6621094, 0.26123047, -1.2119141, 3.1992188, -1.2490234, 1.390625, -0.8935547, -1.8740234, -3.671875, -0.9995117, 2.2539062, 1.4160156, 1.9765625, 0.65625, 1.7070312, -2.9121094, -0.17407227, -2.3945312, 3.5019531, -1.28125, -1.15625, 0.49169922, -1.3183594, 0.18054199, -4.1992188, 0.39794922, -0.009986877, 2.0195312, 2.1113281, -0.60302734, -1.6035156, -0.6333008, -2.1132812, -6.3515625, -1.2148438, 1.1220703, 0.8779297, 0.27685547, 2.6054688, -0.984375, -0.0043563843, 0.8261719, 0.5415039, -2.8867188, 0.23657227, -0.453125, -1.6660156, -0.6879883, 0.9399414, -0.5234375, 1.1962891, 1.7314453, 0.10687256, -0.052520752, -3.0429688, -1.265625, 0.65625, -1.2255859, -0.4284668, 2.1894531, -1.1738281, -0.10479736, 1.3896484, 2.4511719, -1.5625, 2.2792969, -1.8115234, -1.4287109, 1.3066406, -0.18603516, 0.73339844, -0.5180664, -1.8886719, 0.92333984, -0.9501953, 2.0371094, 1.6982422, 0.97021484, -0.1583252, 2.7011719, -1.0097656, 0.26733398, 0.58447266, 0.98876953, 1.8222656, 1.3505859, -2.6835938, -0.4868164, -2.0683594, -2.1386719, -0.123535156, -1.6201172, 0.5102539, -2.09375, 1.4023438, 1.6904297, 0.53222656, -0.18066406, -0.24206543, -0.5, -0.78759766, 2.4609375, -0.39013672, 2.578125, 2.59375, -1.6132812, -1.9003906, -2.4453125, 1.1533203, 0.40283203, 0.43774414, -0.46484375, -0.5053711, 0.30249023, 1.1416016, -0.7397461, 3.0058594, 2.3535156, -0.2454834, -1.1660156, 1.40625, 3.5390625, -0.20422363, 1.3525391, 1.140625, 1.9619141, -0.50634766, 3.6484375, -0.07287598, -1.6640625, 1.7998047, -1.1953125, 1.6142578, -1.1240234, -1.3085938, 0.074035645, -2.0820312, 0.21789551, -1.9208984, -1.5751953, -3.3242188, 2.2363281, 1.4394531, -1.4892578, 0.16308594, 3.8808594, -0.40966797, 1.4228516, 1.7587891, 1.3193359, -0.6220703, 2.1269531, -1.6162109, 0.1784668, 0.625, -3.3730469, 1.6582031, 1.7646484, -1.4414062, -0.31640625, 4.1992188, 2.0820312, 2.9492188, 0.89990234, 1.6025391, 2.6464844, 0.6801758, 4.6328125, 0.7314453, 1.9082031, 2.4277344, -0.15368652, 1.4951172, 1.8925781, 2.4628906, -0.08062744, -1.7646484, 2.3359375, -0.83251953, -2.0039062, -0.83984375, 1.046875, 1.0351562, -4.4726562, 1.3349609, 0.7832031, 0.5786133, -2.3398438, -0.24182129, -0.29003906, -0.69628906, -0.47802734, 1.7822266, 2.828125, -0.625, -0.30639648, -1.4736328, 0.69921875, 1.2646484, -2.6210938, 0.9658203, -0.3088379, -1.7441406, -0.16186523, -0.10107422, 0.8251953, 0.8852539, -0.13464355, 1.7949219, 1, 1.2304688, 2.4902344, 0.057434082, 2.1855469, -0.3310547, 3.0039062, 1.0244141, -1.515625, 1.7304688, -1.7529297, -2.1855469, -3.0253906, 1.2148438, 1.4853516, 0.97558594, -0.090148926, -1.6474609, 2.3164062, 0.8066406, 1.3925781, -2.609375, 2.1953125, -1.4072266, -4.234375, -0.93359375, 0.03326416, 0.32958984, 3.1757812, 1.5400391, -1.7236328, 2.7070312, 0.6870117, 2.1054688, 1.5058594, 1.1669922, 0.97314453, 2, -1.0654297, 0.7993164, -0.3557129, -1.1748047, -0.84472656, 2.6425781, 0.8769531, -0.2770996, 0.87597656, -0.53466797, 0.36401367, -0.64453125, -0.5830078, 0.5175781, -1.5693359, -0.78271484, -0.26293945, 1.0625, -1.3779297, -0.80859375, 3.0410156, 0.26123047, -1.8427734, 0.6088867, -0.15441895, 0.7207031, 3.1835938, 0.06781006, 0.18444824, -0.7158203, 0.5761719, 1.8798828, -0.06161499, -1.0253906, 0.3947754, -0.8881836, 1.6025391, -0.97753906, -1.5029297, 0.45947266, -0.15319824, -0.28271484, 0.2322998, -1.2158203, -0.9785156, 1.5283203, -1.0332031, 0.69970703, 2.5371094, -1.6601562, -0.29492188, -3.3613281, -2.3613281, 0.97314453, -2.6601562, -1.0820312, 0.7714844, 4.7421875, 1.4638672, 1.0966797, -1.7392578, -2.6523438, -0.51171875, -1.5888672, 3.3027344, 0.0826416, -1.0097656, 1.1474609, 0.22619629, 1.2285156, -1.3466797, -1.6123047, 0.016616821, 0.14648438, 0.4711914, -0.609375, 1.7353516, 2.7324219, 0.34301758, 0.56689453, 2.328125, 1.1904297, -0.32788086, 1.328125, 2.1523438, -0.3359375, -2.6054688, 2.5917969, -1.2548828, 0.28198242, 0.5126953, 0.7939453, 2.3027344, 0.38085938, 0.10418701, -1.3486328, -2.2285156]}, "B07NBNPSLG": {"id": "B07NBNPSLG", "original": "Brand: Best Choice Products\nName: Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray\nDescription: Highlights:
Elegant Square Design
Easy to Use
Handles for Portability
Includes Matching Side Table/Tank Storage
Weather-Resistant Pit Cover

Specifications:
Overall Dimensions: 34.75\"(L) x 34.75\"(W) x 12\"(H)
Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
Weight: 70.6 lbs.
Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
BTU: 40,000
Note: The propane tank should be placed under the side table (tank not included)
Assembly required (with instructions)

Package Includes:
Fire pit
Side table
Glass Rocks
Pit cover
Hose

BCP SKU: SKY5230


Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75\"(L) x 34.75\"(W) x 12\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "embedding": [-1.6142578, 1.8330078, 1.1855469, -2.0292969, 2.6796875, 0.82470703, 2.09375, -2.3632812, 0.39892578, 1.6259766, -1.359375, 0.19628906, -0.02708435, -4.0664062, 1.8740234, 0.112976074, -0.2758789, 1.5371094, 3.1738281, 1.0234375, 2.0253906, 0.045074463, 2.3789062, -1.5205078, 1.6513672, -0.5629883, 2.8847656, -4.2734375, -1.4775391, 1.6210938, 2.0019531, 1.7451172, -0.921875, 2.2285156, -2.3125, -1.6035156, -0.30493164, 1.8056641, -1.6210938, 0.057891846, -2.6914062, -1.0869141, 4.3125, 1.1474609, -1.3857422, 0.58251953, 0.30029297, -0.97753906, -0.5410156, -2.0566406, 0.6381836, 1.0292969, 1.7587891, 0.05126953, -0.28515625, 0.5698242, -0.34814453, -2.3925781, 1.9697266, 1.0751953, 1.1123047, -0.56689453, -1.6835938, 2.5488281, -1.6425781, 1.7832031, -1.1904297, -1.2646484, 1.0117188, 1.9130859, 1.0683594, 0.8798828, -0.62353516, -0.19665527, 0.55908203, -1.2832031, -2.4941406, 2.2304688, 0.9711914, -1.0908203, -1.6972656, 3.1660156, 0.45874023, -1.1777344, -0.84375, -0.30615234, -1.6962891, -0.57470703, 0.09033203, 1.0878906, -0.8725586, 3.9882812, -1.8955078, -3.8730469, 0.013687134, -1.7919922, 0.8989258, -0.4338379, 0.29760742, 1.4355469, -0.115478516, -0.4013672, -0.43798828, 0.5864258, -3.1601562, -2.3554688, 0.37890625, 0.03387451, 0.49829102, -0.4951172, -1.2695312, 1.3056641, 1.9082031, -0.7661133, -0.10333252, 2.46875, 1.1044922, 2.1972656, 4.6523438, 2.484375, 5.46875, 1.0595703, 0.5019531, -1.6943359, 0.28076172, 0.8935547, -2.3007812, 2, 0.1105957, -1.6748047, 0.61279297, -2.0664062, 3.0390625, -0.16467285, -1.9257812, -0.78222656, -2.3984375, -0.9433594, -3.4316406, 0.12646484, -3.4980469, 2.1992188, 2.03125, 0.20776367, -2.9257812, -0.33520508, -1.4462891, 2.8105469, -2.0820312, -2.0332031, -0.63623047, 0.049682617, -0.25097656, -1.3134766, 0.44213867, -1.1845703, 1.7099609, -1.6875, 2.8125, 1.3486328, 1.4199219, -1.6162109, 0.4892578, 1.4326172, 0.2685547, -2.7597656, 2.4648438, 0.95947266, 0.51416016, 1.4541016, 0.61328125, -1.5244141, -1.1640625, 0.4951172, 0.33422852, 0.15612793, 1.2333984, 1.5839844, 2.9277344, 0.036346436, -1.3349609, -0.9580078, 1.0732422, 0.41577148, 0.009521484, -2.1015625, -0.1854248, -2.5703125, 0.09637451, -1.6875, -1.3271484, 1.0771484, -2.8144531, -2.1953125, -0.22521973, -2.0839844, -4.9335938, -1.7714844, 2.0605469, 3.0527344, -1.7480469, 0.28393555, -1.3339844, 0.4128418, -2.71875, -2.3730469, 0.30517578, 1.1621094, 1.140625, 0.53027344, -0.42797852, -0.21008301, 1.4716797, 0.4284668, -0.0071258545, -0.8828125, 2.4414062, 2.0429688, 1.6503906, 1.5986328, 0.08679199, -0.7685547, 1.4453125, 3.5449219, 2.0644531, 2.4804688, 0.6308594, -0.26293945, -2.6640625, -0.7529297, 1.6699219, 0.7558594, 0.7895508, 2.7148438, -2.2753906, 3.2207031, 0.44580078, -1.4501953, 0.875, -0.1907959, 0.515625, -1.3720703, -1.4873047, -0.033050537, -1.1582031, -0.054870605, -1.3144531, 1.53125, 1.9902344, 0.54785156, -2.171875, -1.8164062, 0.6381836, 0.4350586, 0.017166138, -0.14294434, -0.026885986, -0.33032227, 1.4003906, -2.0859375, 0.5957031, 1.8417969, 1.0107422, -0.4177246, -0.8808594, -1.7880859, 1.2412109, 0.09051514, -2.9765625, -0.42358398, 0.3154297, -0.21972656, 2.6679688, -0.36914062, -0.6923828, 0.6201172, -2.0566406, 1.8173828, -0.07165527, 2.7988281, -0.07312012, -1.0898438, 1.2089844, -1.7197266, 1.1494141, -0.055511475, 2.2851562, 0.64453125, 0.43969727, 0.7236328, 3.7851562, -0.7480469, -1.0898438, 2.2929688, -0.08392334, -0.5708008, 2.1914062, -0.3684082, 1.1025391, -0.28051758, 1.2675781, 2.6523438, 0.37475586, 2.921875, -2.6894531, 1.4638672, 0.1194458, -2.6289062, 0.81689453, 0.37597656, 0.03149414, -1.6025391, -0.5810547, 1.40625, -3.6035156, -0.61328125, 2.3125, -3.2558594, 2.1074219, 1.0546875, 0.375, 0.18395996, -2.140625, -2.6464844, 0.010047913, 2.5351562, -0.98339844, 0.5805664, -1.0322266, -0.33618164, -1.6875, -1.0791016, 1.6621094, -2.9980469, -1.0771484, -1.640625, -1.6796875, -0.4819336, -1.5039062, -1.6669922, -0.30078125, 1.390625, -1.5166016, 0.83447266, -1.8095703, -2.078125, 1.1025391, 1.6494141, -1.7099609, -0.7475586, 0.3310547, 2.1464844, -0.69091797, -2.7851562, 0.3305664, 1.2695312, 1.6259766, 0.6875, 0.28735352, -0.45239258, -2.2734375, 2.5292969, 1.4072266, -2.1992188, 0.67626953, -1.4941406, -1.4013672, -4.6289062, 0.9868164, -0.8652344, -0.48779297, -0.08868408, -0.18225098, -1.4736328, -1.2861328, 1.1865234, -2.0390625, 4.9804688, 1.1152344, 1.6044922, -0.14550781, -0.44921875, -0.39282227, -0.83935547, -3.1308594, -0.31274414, -0.98828125, -1.8671875, -1.9208984, -2.0410156, 0.8803711, -2.7480469, -0.6376953, 0.3544922, 0.3684082, -0.88134766, 1.7832031, -0.6850586, 0.47851562, -1.6826172, 1.1162109, 0.25268555, -1.2128906, -1.2060547, -0.9223633, -0.4880371, -0.025390625, 0.25952148, 3.2304688, -0.5986328, 1.5019531, 2.1054688, -2.1660156, 1.2265625, 0.9350586, -3.0878906, 0.7133789, 2.8867188, 1.1855469, 1.0458984, -1.7568359, -1.9160156, -2.2441406, 0.8364258, 1.7265625, 1.1748047, -0.056030273, -1.0136719, -0.7763672, 0.8457031, -1.1269531, 0.4951172, 0.97998047, -0.6123047, 2.96875, -2.7851562, 0.36328125, 0.022018433, 2.9648438, -3.6699219, -1.7148438, 1.890625, -0.27661133, 0.6430664, 0.009208679, 0.4501953, 0.4855957, 0.10333252, 0.92041016, -0.009048462, 1.9375, 0.6308594, -0.44555664, 0.27075195, 1.2841797, 1.4882812, 1.5566406, 1.4726562, 0.39819336, 1.71875, 0.5131836, -4.578125, -0.23205566, 1.5283203, 0.3630371, -0.36157227, 1.5527344, -1.0478516, 0.30322266, -0.23120117, -0.47631836, 0.80810547, -1.3115234, 0.58251953, 1.4003906, 1.4892578, -1.0849609, -0.8720703, -0.3791504, -0.95654297, -2.5859375, 1.5595703, 0.027908325, -0.13208008, 0.94677734, -2.7949219, 0.27539062, -0.55566406, 3.2246094, -1.4619141, -2.2714844, 0.171875, 2.6035156, -0.9560547, -2.1621094, 0.5366211, -2.6269531, 0.39160156, 5.28125, -0.52441406, -2.0429688, -1.1806641, -1.7226562, 1.2734375, 2.328125, -0.6347656, 0.3293457, 1.0654297, 0.015014648, -0.24511719, 0.16430664, 0.22949219, 0.87939453, -3.390625, 1.6601562, -1.7070312, -0.46411133, 2.9960938, -3.0625, -0.9199219, 1.3896484, -0.77978516, 2.4414062, -1.0263672, 1.6572266, 1.1484375, 0.14855957, 3.1757812, -0.8618164, 0.008300781, -1.7783203, -5.0429688, 0.6201172, -2.0859375, -0.87060547, 2.0839844, 0.05432129, -0.0736084, 0.13708496, -1.2177734, -5.46875, -1.5849609, -1.3847656, -0.6743164, -4.1054688, -1.2373047, 0.029678345, 0.77197266, -1.4873047, -1.9980469, 1.0458984, 1.9697266, 0.5644531, 0.18249512, 0.02178955, 2.8769531, -1.9238281, -0.5366211, -0.020431519, 0.7993164, -0.39257812, -1.3574219, -0.09899902, -1.3291016, 2.1289062, 0.23132324, -1.5888672, 2.0136719, 2.390625, -0.13964844, 0.05432129, -0.19091797, -0.16271973, 4.5820312, -0.24353027, -2.4316406, -0.2763672, -1.328125, 2.3613281, -0.45458984, -1.2255859, 1.3447266, -2.6621094, -0.8125, 0.6665039, 1.9736328, 1.5263672, 0.004966736, -3.3125, 0.77978516, -1.2089844, -1.0771484, -1.4052734, -1.4824219, 0.22314453, -0.6694336, 0.5883789, -2.7597656, -0.2253418, -1.3535156, -1.2880859, -1.0419922, 1.9501953, 1.1982422, 3.3847656, 3.2636719, -1.5058594, -0.73095703, 2.2519531, -0.75097656, 0.61328125, 2.3554688, 0.54052734, -0.5961914, 2.6210938, -0.9213867, -1.0976562, -0.53515625, 2.0566406, -1.8476562, -1.4619141, -0.0058250427, 0.13122559, -0.9458008, -0.8071289, -1.5976562, -1.8662109, 1.1289062, -0.796875, 1.7705078, -1.4423828, 1.4179688, -1.5888672, 2.4199219, 0.23181152, -0.2758789, 1.0820312, 1.9130859, 0.95947266, 1.1425781, 3.6230469, 0.47802734, 1.9755859, -1.3535156, 0.51123047, -1.4658203, 0.78125, -1.6328125, -2.1503906, 1.5820312, 4.5, -2.7910156, 0.70214844, 0.47094727, -1.9355469, 3.4980469, 0.40014648, -1.8847656, 0.0803833, 0.19042969, -0.91308594, 1.1992188, -0.85546875, -3.8378906, -0.61816406, 1.2070312, -1.7460938, 1.8798828, 0.75341797, -3.1503906, 1.7080078, -2.4902344, -0.52783203, -0.9433594, -0.8754883, -1.375, -2.4414062, 0.50878906, -1.0771484, 0.51708984, 2.0136719, -0.63964844, -0.5205078, 1.3300781, 1.0400391, -0.33520508, -0.76123047, 0.85546875, -0.3269043, 0.80566406, 0.20214844, 0.3095703, 2.4082031, -1.5605469, 2.25, -1.9628906, -1.7753906, -1.3164062, 2.8769531, -1.4472656, 0.76708984, 2.7578125, 0.3449707, 1.3701172, -2.2636719, 0.5078125, -0.2993164, 1.4501953, -1.0927734, 0.72021484, -0.11016846, -1.5146484, -2.5507812, -3.1347656, -0.37231445, -0.27075195, -2.6210938, -0.3137207, -1.5830078, -1.1298828, -0.6875, 0.5805664, 0.004558563, -1.1054688, -0.19836426, -1.5087891, -1.9609375, -0.3947754, 1.59375, 1.4404297, 0.56396484, -0.1394043, -1.0449219, -1.3007812, -3.8847656, -0.14953613, 1.1464844, -0.41918945, 0.89453125, 1.1416016, -1.7041016, 1.0986328, 2.2226562, -0.6064453, -0.40673828, 1.8798828, -0.5942383, 0.29223633, 2.28125, -1.7373047, 0.77441406, 0.04876709, -1.2617188, 1.8642578, -1.1425781, 0.9423828, -0.96533203, 1.0019531, -0.37963867, 0.8496094, 0.44262695, -0.11151123, 0.76220703, 0.7236328, 2.9199219, 2.2832031, -2.3007812, -0.37890625, -1.3378906, -1.5458984, -1.0664062, -3.3632812, -1.2705078, -1.2617188, -0.05984497, 0.9399414, -0.027999878, 1.8476562, 1.8330078, -0.08001709, -0.9975586, 0.7583008, -0.86083984, 2.0019531, -0.20605469, -1.3720703, -3.0097656, -3.5566406, 1.2607422, -0.5727539, 0.47338867, 0.21276855, -0.10784912, -2.7207031, 1.0166016, 0.23266602, 0.95947266, 1.2490234, 2.2441406, -1.5595703, 1.0214844, -0.6933594, 0.59472656, 2.0917969, -0.2109375, 1.7490234, 0.06298828, 2.0839844, 2.1523438, -1.8115234, 1.4326172, -0.025848389, 0.7607422, -0.73046875, -0.26757812, 1.2080078, -1.3964844, -0.50927734, -2.6523438, -1.0615234, -2.8886719, 1.7773438, 0.99072266, 1.1318359, 0.95654297, 0.52685547, -1.3759766, 0.56689453, 1.0791016, -1.3105469, 0.06665039, -1.5976562, -0.36621094, 0.42236328, 1.4160156, -0.2548828, 0.117248535, 0.8984375, 0.5395508, -2.4824219, 0.24560547, -1.1835938, 0.25854492, 0.5878906, 3.1132812, 2.2324219, 0.96240234, 2.3515625, -1.2421875, 2.9140625, 3.1347656, -1.6757812, -0.37963867, 1.9345703, 3.5625, -0.9370117, 0.117492676, 0.64208984, 1.1191406, -0.85498047, -0.4807129, 0.23620605, 0.0076522827, -3.7910156, 2.2695312, -1.0498047, 1.8085938, -0.85546875, 0.49975586, -0.87060547, -0.6411133, -0.9111328, 0.6958008, 1.3134766, -0.5102539, 0.24377441, 1.0283203, 0.7128906, -0.46923828, -2.5175781, 1.1953125, -0.16137695, -2.6777344, -1.2070312, 3.7558594, 2.0917969, 2.828125, -0.8769531, 2.0527344, -0.32299805, 1.4072266, 0.8613281, 2.2539062, -1.0605469, -0.32739258, 1.7890625, 1.9277344, -1.9111328, -0.6533203, 0.22631836, -0.5341797, -2.6132812, 1.4521484, 0.42651367, 1.578125, 0.16235352, -2.2460938, -0.8354492, 1.8583984, 0.20056152, -3.0546875, -1.2607422, -0.1817627, -2.3867188, 0.3696289, -0.43725586, -0.54345703, 3.5292969, 1.9052734, -0.7939453, 2.9140625, 2.5195312, 0.9550781, 0.59228516, 0.038604736, -1.7333984, 1.1230469, -0.41430664, 1.6005859, 1.0283203, -0.39257812, 0.20654297, 1.4833984, 1.25, -0.79589844, 0.09161377, -3.1699219, 0.3918457, -0.64501953, -2.671875, 0.9692383, -0.6567383, -1.2929688, 2.3046875, 0.12683105, 0.6044922, -2.1074219, 0.3359375, 0.10180664, -2.4765625, -0.4140625, 0.36499023, -0.7993164, 1.5351562, -0.37841797, -0.2548828, 1.2148438, 0.58203125, 1.6464844, -1.8291016, -0.21118164, -0.90771484, 0.99560547, -0.74658203, -0.85058594, -0.7167969, 0.4885254, -0.2512207, 1.1767578, 3.3613281, -2.3007812, 0.7265625, 0.78271484, -0.10345459, 1.1103516, 2.1894531, -0.48706055, -0.8378906, -0.9892578, -3.3203125, 0.46069336, 0.3720703, -2.5019531, 0.24182129, 5.8320312, 2.3007812, -0.5961914, -0.16674805, -3.5273438, -0.6982422, -0.2956543, 3.5, 0.047302246, -0.5517578, -0.26782227, 0.09057617, 4.875, 0.5107422, -0.73095703, -1.4121094, -0.23913574, 2.3183594, -1.3447266, 1.7939453, -0.5180664, -0.35791016, 1.7207031, 2.4042969, 3.6289062, 0.70458984, 1.3828125, 1.5234375, 0.09649658, -2.0722656, 0.25927734, -0.3137207, 0.49194336, 1.2919922, -0.009170532, 1.5576172, 0.052459717, -0.5839844, -5.5195312, -0.9345703]}, "B0836CBZN1": {"id": "B0836CBZN1", "original": "Brand: GASPRO\nName: GASPRO 1500\u2109 Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified\nDescription: The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

You can do so many dishes in the different heat zones:
Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
Seafood: shrimp, skewers, salmon filets.
Veggies: corn, potato chips, large pieces onion.
You can also make sandwiches, nachos, enchiladas, hamburgers.

The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

GASPRO infrared grill unique designed double-use connection:
1lb connection and standard grill connection (3/8\u201d male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
1.Uses disposable 16.4 oz LP cylinder (sold separately)
2.Uses big LP propane tank. (Propane hose sold separately)
3.Uses RV Propane tank. (Propane hose sold separately)

Product Specification:
Material: 304 Stainless Steel
Flow Capacity: 9000 BTU/hr
Fueled Type: LP Gas Propane
Ignition Type: Push Button Electronic Igniter
Product Dimension: 9.3\" W x 30.7\" D x 16.3\" H
Product Weight: 19.4 lbs
Temperature Range: 200-1500 Fahrenheit

Package Included:
Rod Grid x 1
Grease Tray x 1
Wooden Grid Tool x 1
Silicone Oven Mitts x 2
Sheet Metal Cooking Grid x 1
Product Manual x 1

Warning:
OUTDOOR USE ONLY
\nFeatures: Boasts the infrared cooking system reaches an incredible 1500\u00b0F, serves up steakhouse-quality steaks about 2 min per side.\n6-notches in the grill rack determined the grate's proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies.\nGives you multiple connection options, built-in a standard 3/8\u201d male flare fitting in the valve and regulator. It allows you to connect any 3/8\u201d female flare hose to a big propane tank.\nOpening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it.\nPass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.\n", "embedding": [-2.3945312, 1.1767578, 1.9326172, 0.91796875, -0.1394043, 1.4462891, 1.3212891, -1.140625, 0.23461914, 1.8994141, 0.19091797, -0.6020508, 1.1826172, -2.0800781, 1.8808594, 1.1796875, 1.2421875, 0.82421875, 1.9306641, 2.0585938, 1.6396484, 0.76416016, 0.06640625, -0.53564453, 1.2724609, 0.43823242, 2.9570312, -3.0195312, -0.046875, -2.0195312, 1.0400391, 0.08618164, 0.19140625, 1.0273438, -1.7333984, -0.28222656, -1.2226562, 1.4042969, -0.7290039, -1.1777344, -1.2021484, -1.0859375, 2.2753906, 0.37426758, -2.9550781, -0.20300293, -0.5498047, 2.7519531, -1.1621094, 0.036895752, 0.36206055, -0.1541748, -0.97265625, 0.33447266, -0.6386719, 0.88720703, -0.48388672, -1.5078125, 0.33862305, 0.04055786, 1.4648438, -0.48657227, -1.7636719, -0.07537842, -2.1367188, -2.2851562, 1.3476562, -1.3447266, 0.43554688, -1.3496094, 2.671875, -0.5830078, -1.8525391, -0.54541016, -0.18334961, -2.1640625, -2.484375, 0.7675781, 0.7207031, 0.36816406, -1.0292969, 2.6542969, 0.44995117, -2.53125, 0.6347656, 0.16638184, -1.484375, -0.42382812, 3.25, 1.0869141, -1.1425781, 2.8613281, -2.0097656, -3.9726562, 1.8291016, 0.1932373, 0.40039062, 1.6826172, -0.041168213, 2.3808594, 0.49072266, -0.68066406, -0.56591797, 0.49731445, -2.0039062, -0.17321777, 2.5917969, 0.064331055, -4.1757812, -1.2666016, -0.5571289, 0.012428284, 1.6123047, -0.35424805, 0.6958008, -0.51464844, -0.22241211, 1.8046875, 2.125, 1.0244141, 2.6074219, 1.1425781, -0.28686523, -0.77978516, 0.06903076, 0.6044922, -0.94628906, 2.2792969, 4.2148438, -0.3527832, -1.2988281, -1.6738281, 1.7568359, -0.6191406, 0.039733887, -2.65625, -1.7880859, -1.2470703, -4.8203125, 0.064086914, -4.1210938, 0.14648438, 0.41357422, 0.41381836, -3.9570312, 0.19726562, -0.15344238, 2.3085938, 1.2167969, -1.015625, 0.7788086, -1.3056641, 0.6879883, -1.3046875, 2.3632812, -0.97753906, -1.2275391, -1.4394531, 3.9179688, 1.9482422, 2.8554688, -2.296875, -1.6484375, -0.4260254, 2.5820312, -1.1835938, -0.72558594, 1.9316406, 1.5664062, 1.3662109, 0.12756348, -2.9667969, 0.3635254, -0.52490234, -0.56152344, -2.03125, 0.61572266, 2.265625, 1.2089844, -1.4189453, -1.5, -2.4453125, 1.2226562, 2.2851562, -0.09020996, -1.4628906, -0.69970703, 1.1318359, 1.1748047, -1.7998047, -0.2919922, -0.61328125, -0.3959961, 1.8144531, -0.54785156, -1.4482422, -1.4394531, -0.9770508, -1.0556641, -0.9326172, -1.7402344, -0.57421875, -0.8876953, -0.22460938, -1.2470703, -2.90625, 0.5205078, -1.0263672, -0.018447876, 2.8085938, 1.5683594, -0.19433594, 1.2392578, -2.1074219, 0.13122559, -3.0253906, 0.7583008, 2.1484375, 1.3671875, 2.3574219, -0.016616821, 0.90234375, 0.10357666, 2.09375, 1.2695312, 2.4570312, 0.32348633, 1.7314453, -2.5605469, -1.8203125, 3.8671875, -0.32250977, -0.21105957, -1.2734375, -1.1621094, 2.0332031, 1.46875, 0.74853516, -1.4902344, -0.21508789, 0.07147217, 0.3623047, -2.9316406, -1.0097656, -1.8681641, -0.5620117, -3.3867188, 1.5146484, 1.1757812, -0.17492676, -1.3359375, 0.359375, 0.059692383, -0.14611816, -0.42919922, 0.95410156, -0.07946777, 1.6943359, -2.7011719, -1.5087891, 0.93652344, 2.5019531, 0.04147339, 0.6933594, 0.8125, -0.73583984, 4.0390625, 0.80371094, -2.4726562, -1.7363281, 0.40576172, -0.27954102, 1.1923828, 0.43579102, 0.23913574, 0.76171875, -1.4130859, 2.3496094, 1.1162109, 0.78027344, 0.35717773, -0.93847656, 2.3945312, -2.2597656, 0.5625, 0.21850586, 0.74072266, -1.3125, -0.062164307, 1.3232422, 4.7070312, 0.029434204, -4.25, 3.3222656, 0.09289551, 0.18945312, 2.1054688, 0.09008789, -0.008094788, -0.8261719, 1.6279297, 1.0556641, -0.98046875, 1.171875, -0.23046875, -1.7080078, -0.7729492, -2.1875, -0.37597656, 1.1083984, -0.79052734, -0.39770508, -1.953125, 0.79003906, -1.3740234, -1.0976562, 2.7070312, -0.79589844, 0.64697266, 1.1640625, 1.4375, 2.2421875, -1.2441406, -2.0371094, -0.57373047, 1.1230469, 0.10205078, 0.8574219, 0.37426758, -3.1425781, -1.8320312, -0.3894043, 1.1748047, -1.25, -2.4414062, 0.4584961, -3.734375, -1.6367188, -0.14355469, -1.5771484, -3.3632812, 0.59277344, -1.0234375, -0.7133789, -0.6538086, -1.3076172, -1.0957031, -0.85009766, 0.48291016, -1, 1.34375, 0.43066406, 0.81884766, -4.515625, 0.13354492, 0.4807129, -0.4814453, -1.171875, -1.7578125, 0.3083496, 0.10284424, -0.3959961, 0.29052734, 0.20959473, 0.44799805, -1.5498047, -0.25268555, -3.8652344, 0.7836914, -3.5820312, 0.9033203, -1.6904297, 0.20751953, -2.1054688, -1.3173828, 0.15307617, -1.4443359, 2.6914062, -1.4707031, 1.4072266, -1.828125, -0.15026855, 1.2636719, -0.4555664, -0.8935547, -1.8144531, 0.76123047, -2.140625, -1.9306641, -1.7636719, -0.4206543, -0.22216797, -0.15783691, -1.4726562, -0.21362305, -2.6425781, 2.4414062, -1.1894531, -2.2871094, 0.1048584, 0.8227539, -0.23535156, -0.8300781, -2.8339844, -0.46655273, -1.671875, -1.2724609, 0.5131836, 0.83984375, -1.1582031, 1.15625, 2.3730469, -0.6376953, -0.60302734, -1.8994141, -4.0351562, 3.0058594, 0.10491943, -3.2324219, 2.5273438, -0.64501953, -1.4912109, -1.4072266, -0.15710449, 3.2480469, 3.5136719, 3.2558594, 0.15026855, -0.9555664, 2.9179688, 2.3261719, -0.6064453, -1.3759766, 0.42382812, 3.2558594, -1.2910156, -1.1542969, -0.33496094, 2.6582031, -2.8476562, -1.5703125, 2.2011719, 0.5258789, 4.296875, 1.2480469, 0.7441406, 1.6962891, -1.7158203, 1.7402344, 0.18322754, 0.34423828, 0.097351074, -1.6914062, 1.1064453, -0.4711914, 1.8066406, 2.4980469, 0.28857422, 2.8300781, 1.2431641, 0.19714355, -1.7988281, 1.5517578, 0.8876953, 0.94091797, -0.8803711, 1.9648438, -0.09625244, 0.27026367, -0.3959961, -2.1191406, -0.77685547, -0.7597656, -0.12097168, 2.5976562, 1.4179688, 0.83984375, -0.09301758, 1.1425781, 1.2685547, -1.5195312, 1.0986328, 0.26342773, -0.2993164, 0.6669922, -0.78564453, -1.6435547, -2.3691406, 1.7177734, -0.076416016, -0.7861328, 0.5859375, 1.1660156, -0.51904297, -1.1357422, 1.6914062, -0.33203125, -0.5625, 1.2617188, 0.7944336, -0.87158203, 2.3789062, -0.3425293, 1.6445312, 1.8330078, -0.21813965, 0.18811035, -1.7578125, 1.2441406, -0.77685547, 0.15454102, 2.015625, -0.08709717, -2.7832031, -0.051361084, -3.9394531, 0.14880371, 0.90234375, -1.9697266, -1.6259766, 1.5410156, 1.7900391, 1.4355469, -1.1220703, 2.7597656, 1.2871094, -2.046875, 1.3027344, -5.28125, -1.9404297, -3.3828125, -5.5390625, 1.5771484, -0.42797852, 0.0970459, 1.96875, 0.52783203, 0.5698242, 2.5039062, -0.7236328, -2.609375, -1.3623047, -0.49609375, 1.0927734, -1.2314453, -0.45410156, 1.3242188, 0.22192383, -1.2001953, -0.83447266, 0.32788086, -1.1943359, 1.1728516, 1.7685547, -2.046875, 1.4335938, -1.1972656, 0.55615234, -0.7397461, -1.8515625, 0.6879883, -0.8227539, 0.19836426, -2.3261719, 0.86572266, 1.5126953, 0.46044922, -0.96728516, 0.91259766, -0.007774353, -0.8105469, -0.21496582, 1.6142578, 2.4628906, 0.28271484, -1.0322266, -1.1181641, 0.96435547, 0.1529541, 0.56933594, -1.0341797, -0.037750244, -1.7753906, 0.5708008, -0.3540039, 1.3740234, 0.8955078, 1.6962891, -3.7265625, -1.3925781, -0.17028809, -2.1386719, -1.7089844, -0.55322266, -0.25732422, -1.3818359, -0.6616211, -1.3398438, -0.62841797, -2.0625, 0.5834961, -3.7675781, 3.0683594, 1.8300781, 2.0273438, 2.8613281, -0.89453125, -0.6015625, 0.6748047, 0.05508423, -1.4267578, 0.78027344, 0.34399414, 0.1665039, 1.0957031, -0.5834961, -2.1503906, -0.48950195, 2.7285156, -2.1230469, 1.3759766, -1.9638672, 1.53125, -1.1337891, -0.44848633, 1.7353516, -0.49023438, 3.3945312, -1.53125, 0.9658203, -0.4345703, 0.09790039, -1.4853516, 1.8466797, 1.1542969, 1.8984375, 1.1904297, 2.7265625, 2.1875, -0.8959961, 1.4931641, -1.5214844, 1.9121094, -0.71191406, 1.8535156, -0.8803711, 0.88378906, -1.1181641, -0.56933594, 2.2695312, 2.8027344, 0.085632324, 2.7226562, -0.12634277, -1.6699219, 2.0507812, 0.097351074, -2.5078125, -0.14978027, 1.4580078, -1.7324219, 0.31225586, -0.040863037, -3.4414062, 0.028823853, 2.5605469, 0.19042969, 1.0957031, -0.64501953, -2.1777344, 0.2915039, -2.2363281, -0.30541992, -0.054656982, -1.2978516, -0.2524414, -0.32958984, 0.024368286, -0.31323242, 1.8037109, 2.6777344, -2.3632812, -1.8955078, 1.3359375, -1.5263672, 2.3007812, -1.3300781, -1.7519531, -4.140625, -0.30541992, 3.078125, 0.4387207, 1.5205078, -0.08874512, 0.80322266, -1.9951172, -0.55322266, -2.0507812, 2.6347656, -1.4414062, -0.4169922, 1.1621094, -2.8515625, 0.40185547, -1.4667969, 0.3708496, -0.5517578, 2.5957031, 1.4833984, 1.1308594, 0.63427734, -0.7573242, -2.4257812, -6.7304688, -1.0966797, 2.2519531, 0.6352539, -0.019866943, 0.025100708, -1.0224609, 0.546875, 1.2587891, 1.3046875, -1.4462891, 0.71435547, -0.6152344, -1.203125, -2.296875, 0.71728516, -1.5292969, 1.3867188, 0.94921875, 0.5810547, 0.6665039, -3.9628906, -1.4931641, 0.15270996, -1.8662109, 0.45629883, 2.3652344, -0.31469727, -1.1542969, 0.3544922, 0.61279297, -3.8671875, 2.7578125, -1.9707031, -0.49316406, 1.1240234, -0.043914795, 0.7441406, 1.0126953, -0.17199707, 0.5175781, -1.3769531, 1.8466797, -0.49951172, 1.1015625, 0.28833008, 1.1240234, -0.8979492, -0.8144531, -0.028671265, 0.72021484, 1.4716797, 1.4228516, -3.3046875, -0.68408203, -2.2421875, -4.6875, -0.41430664, -0.15710449, 0.5078125, -1.5302734, 1.5517578, 1.9121094, 0.7524414, -0.016708374, -0.08215332, -0.41064453, -2.0078125, 1.1220703, 0.1652832, 3.09375, 2.9101562, -1.7255859, -2.40625, -2.2207031, 1.4228516, 1.9443359, -0.27075195, -0.7651367, -0.92285156, -1.1074219, 0.7597656, 0.35009766, 2.0839844, 2.6367188, -0.87890625, -0.60498047, 0.38598633, 2.0761719, 0.60546875, 2.3261719, 1.3388672, 1.5361328, 0.21862793, 4.2421875, -0.38183594, -2.0078125, 1.7001953, -2.0410156, 2.1757812, 0.20007324, -3.0039062, -0.33789062, -1.0634766, -0.6767578, -1.2080078, -1.8691406, -3.3828125, 2.90625, 1.1015625, -0.53515625, -0.74853516, 3.6601562, 1.0615234, 0.9707031, 1.7705078, 2.1269531, 0.21142578, 1.3662109, -1.0537109, -0.3930664, 0.97509766, -2.5410156, 0.73291016, 2.2011719, -0.52001953, -0.70458984, 3.8925781, 1.0839844, 2.6992188, 0.36816406, 1.6367188, 4.3515625, 1.7265625, 1.5048828, 2.1796875, 1.6669922, 3.1269531, -1.5751953, 0.24926758, 2.0996094, 1.3027344, 0.9506836, -1.2490234, 2.8007812, -0.32641602, -2.0703125, -0.5419922, -0.5654297, 0.40283203, -2.046875, 1.6777344, 2.1992188, 0.40844727, -2.4082031, 0.44140625, -1.4482422, -0.7675781, 0.2331543, 0.28173828, 2.7285156, -0.9477539, 0.3701172, -0.72314453, 0.37548828, 2.375, -3.4941406, -0.18078613, 0.92041016, -2.6445312, 0.30395508, 1.4912109, 0.15734863, 1.3105469, 0.8955078, 1.2167969, 1.4677734, 1.0947266, 2.3632812, -1.1025391, 1.0625, -1.5419922, 4.6132812, -1.5107422, -0.43823242, 1.5537109, -0.16503906, -3.6191406, -3.5019531, 1.875, 1.0664062, 0.6635742, 0.33276367, -3.7128906, 2.6914062, 0.06726074, 1.6611328, -1.9560547, 1.6171875, -1.8076172, -2.1269531, 0.027069092, 1.1396484, -0.20239258, 3.6464844, 0.9472656, -1.421875, 1.3457031, 1.3867188, 0.93310547, 0.14672852, 1.2480469, 1.4628906, 1.78125, -0.00021529198, 2.4335938, 0.9370117, -1.1386719, -1.0957031, 1.5029297, 1.1992188, 0.8330078, -0.08251953, -1.2421875, -0.37451172, -0.93408203, -1.5117188, -0.62353516, -1.6835938, -0.12597656, -0.2614746, -1.1875, -1.3867188, -0.4338379, 0.94873047, 0.61865234, -0.8486328, -0.10394287, 0.2265625, -0.82128906, 1.8642578, 1.3408203, -0.8979492, -0.52978516, -0.4248047, 1.2724609, 0.5727539, -1.3789062, -0.2565918, -0.7993164, -0.18200684, -2.3027344, 0.22521973, 0.5571289, -0.47021484, 0.18603516, 0.75341797, -2.0332031, -0.36499023, 0.70947266, -1.3193359, 1.5927734, 3.09375, -1.9677734, 0.81933594, -1.6894531, -1.4384766, -0.34423828, -1.3994141, -1.3027344, -0.0013990402, 3.59375, 1.6416016, 1.5185547, -0.70214844, -2.7617188, -1.0166016, -0.4104004, 1.9726562, -2.296875, 0.13012695, 0.5942383, 0.5175781, 2.3613281, -0.52734375, -0.31591797, -0.32983398, 0.1706543, -0.5229492, -0.32250977, 1.0439453, 1.4824219, 0.21142578, -0.49682617, 2.4042969, 0.66796875, -0.11151123, 2.0898438, 2.9121094, -0.7709961, -2.3769531, 2.1835938, -1.5068359, 1.6308594, 1.8583984, 1.8330078, 2.2128906, 1.2128906, 0.19836426, -0.87402344, -1.6425781]}, "B07NBM6V8X": {"id": "B07NBM6V8X", "original": "Brand: Best Choice Products\nName: Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown\nDescription: Highlights:
Elegant Rectangular Design
Easy to Use
Handles for Portability
Includes Matching Side Table/Tank Storage
Weather-Resistant Pit Cover

Specifications:
Overall Dimensions: 48\"(L) x 27.25\"(W) x 13.5\"(H)
Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
Weight: 84 lbs.
Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
BTU: 50,000
Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
Assembly required (with instructions)

Package Includes:
Fire pit
Side table
Glass rocks
Hose
Pit cover

BCP SKU: SKY5229


Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: The fire pit's classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48\"(L) x 27.25\"(W) x 13.5\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "embedding": [-1.1972656, 2.4589844, 0.6196289, -1.8427734, 2.09375, 0.36694336, 1.8427734, -2.7539062, -0.9824219, 1.8095703, 0.14416504, 2.5039062, 0.1105957, -4.9140625, 1.6523438, 0.41235352, -0.6826172, 1.4765625, 2.6523438, -0.24145508, 1.9013672, -0.033843994, 1.5556641, -0.85009766, 1.4628906, -1.0146484, 2.875, -3.6015625, -1.2929688, 1.4433594, 1.6455078, 2.1171875, -0.65625, 1.7988281, -1.8632812, -0.92626953, -0.086242676, 1.6679688, -1.2734375, 1.2714844, -2.6601562, -1.6347656, 4.296875, 2.4882812, -2.3125, 0.35888672, -0.13903809, 0.33740234, -0.57373047, -1.75, -0.025497437, 2.3710938, 0.6777344, 0.03945923, -1.7109375, 1.1337891, -0.08532715, -2.5683594, 0.20227051, 1.5126953, 0.60791016, -0.012794495, -1.3603516, 2.2089844, -1.2128906, 1.8505859, 0.7260742, -0.07763672, 0.22607422, 2.0175781, 1.8417969, -0.26757812, -0.7548828, -0.12261963, 0.37451172, -0.68359375, -3.0527344, 2.59375, 0.8808594, -1.4775391, -0.8989258, 4.2304688, 0.47753906, -0.48999023, -0.031707764, -0.112976074, -3.6386719, -0.008178711, -0.1907959, 1.2402344, 0.07745361, 3.3496094, -3.1542969, -3.7519531, 0.17492676, -1.3076172, 0.58740234, -1.5761719, 0.2565918, 1.4111328, 0.4477539, -0.16845703, -1.1230469, 1.0966797, -2.6308594, -1.7587891, 0.9897461, 0.10040283, -0.23181152, -0.43408203, -2.4414062, 0.7871094, 2.6289062, -0.5966797, 0.60058594, 1.4130859, 0.7871094, 1.0849609, 3.875, 1.9287109, 6.0039062, 1.2392578, 0.20227051, -0.6923828, 0.6855469, 1.7128906, -1.7529297, 2.8261719, 0.44091797, -1.6298828, 0.59765625, -1.7089844, 0.6225586, -0.203125, -1.7587891, -0.92822266, -1.9560547, -0.8276367, -3.7539062, 0.18518066, -2.8457031, 1.9785156, 0.055114746, 1.1875, -3.2441406, 0.58691406, -1.8701172, 2.5722656, -1.0341797, -2.8320312, 1.0244141, -0.5566406, 0.44213867, -0.97265625, 0.8041992, -1.515625, 2.1914062, -2.7285156, 2.0546875, 1.6025391, 1.4853516, -1.8701172, 0.8432617, 1.9882812, 0.35351562, -1.2802734, 1.8710938, 0.8144531, -0.28027344, 1.2685547, 0.8227539, -1.4697266, 0.040405273, 0.3647461, 0.68603516, -0.69677734, 1.4042969, 2.4316406, 2.7949219, -0.31469727, 0.30688477, -0.4140625, 0.7270508, 0.8930664, -0.037353516, -1.8876953, 0.4387207, -2.2851562, 0.70654297, -1.4814453, -0.9301758, 0.29174805, -1.7890625, -1.0927734, 0.5263672, -2.6835938, -2.9472656, -1.71875, 0.75634766, 1.3916016, -1.5126953, 0.27124023, -2.7382812, 0.64208984, -2.5996094, -0.92089844, 0.30419922, 1.2783203, 1.4423828, 1.0302734, 0.44384766, -0.48046875, 0.7866211, 0.8046875, -0.21618652, -2.3457031, 1.8359375, 0.17468262, 1.2431641, 0.9404297, 0.7426758, -0.054504395, 1.3339844, 3.1367188, 1.3408203, 2.2871094, 0.22167969, -0.085754395, -1.0742188, -1.3193359, 1.9863281, 0.16186523, 0.40307617, 2.0605469, -1.5371094, 2.6894531, 0.796875, -1.7392578, 0.6274414, 0.4189453, 0.44018555, -1.6152344, -1.8154297, 0.45483398, -1.3779297, 0.91308594, -1.3544922, 1.4394531, 1.4785156, -0.3334961, -1.8554688, -1.4394531, 0.35302734, -1.0673828, 0.1940918, 0.8222656, -0.8359375, -0.6303711, -0.1496582, -2.2441406, 0.41381836, 1.1289062, -0.9033203, -0.30004883, -0.29833984, -1.7910156, 1.5214844, 0.0018863678, -3.8828125, -0.56689453, -1.3916016, 0.2849121, 2.1347656, -0.5102539, -0.54003906, -1.0283203, -2.5742188, 1.9550781, -0.44189453, 2.96875, 0.38012695, -0.92285156, 1.4501953, -1.1826172, 0.51953125, 0.24645996, 1.3525391, 0.59472656, 0.5996094, 0.8876953, 5.5273438, -0.91748047, -1.6757812, 2.1660156, 0.22998047, 0.28515625, 0.4555664, -0.68408203, 1.7412109, 0.24694824, 1.3935547, 0.45117188, 0.9765625, 1.2207031, -2.0664062, 1.3632812, -0.103881836, -2.2207031, 0.85546875, 0.32641602, -0.22290039, -1.4199219, -1.1181641, 0.71875, -2.4589844, -1.3583984, 2.671875, -3.5371094, 1.4570312, 0.65283203, 0.087402344, 0.5800781, -2.3046875, -3.3378906, -0.22277832, 1.296875, -0.7446289, 0.5058594, -0.625, -1.8935547, -0.024536133, -1.8730469, 1.8232422, -2.2441406, -1.2246094, -1.5048828, -1.0869141, -0.5546875, -1.2568359, -1.0537109, -0.31103516, -0.06939697, -2.3378906, 1.1103516, -1.2460938, -1.1767578, 0.76464844, 2.5800781, -2.2636719, 0.6123047, 1.1923828, 2.7480469, -1.2529297, -4.1210938, -0.53466797, 1.3056641, 0.68310547, 0.7480469, -0.38598633, 0.022064209, -1.5800781, 2.8652344, 1.0166016, -1.8476562, 0.4794922, -0.7290039, -0.6113281, -4.296875, 1.3115234, -0.8754883, -0.5678711, -0.14282227, 0.46679688, -1.8144531, -1.1591797, 1.3974609, -2.5664062, 5.671875, 1.6113281, 2.4824219, -0.4831543, -0.2644043, 0.22607422, -1.0683594, -3.1640625, -0.43041992, -0.68603516, -1.921875, -0.71972656, -2.8046875, 0.74609375, -1.9355469, -0.40942383, -0.28564453, 0.80322266, -0.29516602, -0.081970215, -1.3789062, 0.45532227, -1.96875, 1.8574219, 0.08441162, -0.87402344, -2.3984375, -0.5859375, -1.0107422, -0.5649414, 0.53271484, 2.8339844, -0.7739258, 0.5229492, 2.4609375, -1.2294922, 0.7807617, 0.57910156, -3.3867188, 0.68896484, 3.6445312, 0.35009766, 0.6035156, -2.4921875, -1.2363281, -0.609375, 0.7163086, 3.1855469, 1.2373047, 0.32788086, -0.49487305, 0.734375, 0.5830078, -0.8388672, 0.1751709, 0.27685547, 0.02468872, 3.1542969, -3.5527344, 0.48364258, 1.2783203, 3.9570312, -3.0546875, -1.3447266, 1.0878906, -0.028213501, 0.6142578, 0.09197998, -0.3701172, 0.4934082, -0.34594727, 0.37475586, -0.14099121, 1.9599609, -0.16247559, 0.47583008, 0.7402344, 1.0195312, 1.1767578, 1.0976562, 2.0371094, 0.28881836, 1.5048828, 1.2587891, -3.3945312, 0.13085938, 0.24914551, -1.0869141, -0.045196533, 0.94873047, -1.6640625, -0.11517334, -0.7084961, -0.98779297, 0.32617188, -1.8515625, -0.27978516, 2.2402344, 0.43945312, -0.4970703, -0.3383789, -0.47338867, -0.8935547, -1.8017578, 1.5039062, 0.49243164, 0.05633545, 0.3696289, -2.4375, -0.65185547, -0.5366211, 3.1445312, -1.8486328, -2.6972656, -0.93359375, 3.4257812, -0.97558594, -2.0214844, 0.18469238, -1.5537109, -1.4003906, 5.0390625, 0.9897461, -2.1640625, -1.0126953, -1.9277344, 1.9541016, 2.6464844, 0.1105957, 0.113708496, -0.46362305, 0.734375, -1.0683594, 0.7758789, -0.43432617, 0.77734375, -2.7070312, 1.1367188, -2.0175781, 0.30981445, 2.7050781, -2.6132812, -0.32104492, 2.296875, -0.1607666, 2.5097656, -0.48461914, 3.0253906, 0.13464355, -0.2902832, 3.1328125, -1.2246094, 0.11468506, -1.2128906, -5.1601562, -0.23388672, 0.31762695, -0.63671875, 2.9316406, 0.097229004, -1.0058594, 0.60058594, -1.1484375, -4.7265625, -1.0605469, -2.2792969, -1.2158203, -4.25, -1.8330078, -0.5595703, 1.0410156, -0.63916016, -1.5878906, 0.74072266, 1.6503906, -0.021408081, 1.0185547, -0.98828125, 2.5390625, -2.0683594, -0.8178711, -0.33569336, 0.9135742, -0.44726562, -1.6640625, 0.6738281, -1.3876953, 2.6269531, -0.105041504, -1.1152344, 2.21875, 1.5498047, -1.2109375, -0.7451172, 0.39672852, -0.4987793, 3.3652344, -0.5366211, -2.1171875, -0.57177734, -0.80908203, 1.1308594, -0.46801758, -1.2685547, 1.6962891, -1.7529297, 0.060333252, 0.79052734, 1.9667969, 1.2724609, -0.6274414, -3.1992188, 0.2541504, -0.6074219, -0.6723633, -1.4091797, -1.8955078, 1.2451172, -0.6455078, 0.3935547, -1.8828125, -1.1298828, -0.44580078, -0.41455078, 0.5517578, 2.9589844, 1.7431641, 3.0976562, 3.9941406, -1.4208984, -0.61376953, 2.1953125, -0.42773438, 0.3388672, 2.2929688, 1.8125, -0.042633057, 2.3769531, -0.90722656, -1.3876953, -2.1308594, 1.6855469, -2.2734375, -1.1132812, -0.40844727, -0.69140625, 0.48535156, -0.8676758, -1.3740234, -1.6972656, 2.2050781, -0.6196289, 0.23254395, -0.58691406, 1.2685547, -2.1113281, 1.609375, -0.09069824, 0.7519531, 1.4355469, 1.6611328, 0.8964844, 0.1932373, 3.2675781, 1.2412109, 1.7265625, -0.9003906, -0.07824707, -0.61816406, -0.6044922, -0.6948242, -1.4404297, 2.2246094, 3.4550781, -1.5732422, 1.4931641, 1.3310547, -1.4492188, 3.296875, 1.1552734, -1.1103516, -0.1932373, 0.9326172, -0.22106934, 0.8154297, -0.12097168, -4.4765625, -0.92089844, 1.2001953, -1.0791016, 1.6220703, -0.43554688, -1.5869141, 0.98535156, -3.1699219, -0.08294678, -0.018737793, -0.59375, -0.5625, -0.4440918, -0.59228516, -0.33032227, 0.16430664, 2.6445312, -2.1835938, -0.46655273, 1.296875, 1.3759766, -1.0576172, -1.6484375, -0.14147949, -1.3652344, 0.27270508, 0.11303711, 0.1083374, 2.7109375, -1.8037109, 2.5136719, -1.640625, -0.9638672, -2.4257812, 3.7109375, -2.0820312, -0.26879883, 2.2207031, 1.2080078, 1.1464844, -1.4179688, -0.20031738, -0.44213867, 1.7529297, -1.0371094, 0.64990234, -0.29711914, -1.2871094, -2.3789062, -3.9160156, -0.15710449, -0.50683594, -2.1054688, -0.84765625, -1.1806641, -0.55566406, 0.117004395, -0.07788086, 0.4013672, -0.75341797, -1.1503906, -1.1445312, -2.0332031, -1.1953125, 0.91259766, 0.8769531, 0.12585449, -0.08929443, -1.3916016, -2.1699219, -4.0234375, 0.08734131, 0.7548828, -1.3125, 1.84375, 0.092285156, -0.98876953, 1.4462891, 2.421875, 0.19580078, -0.5488281, 2.265625, -1.1162109, 0.87402344, 2.3261719, -1.9072266, 1.1962891, 0.052978516, -0.74658203, 0.95410156, -2.1992188, 0.6557617, -1.8212891, 1.296875, 0.3479004, 0.4489746, -0.37109375, -0.49829102, 1.0927734, -0.34155273, 3.5683594, 3.421875, -2.2324219, -0.84472656, -2.0351562, -0.79052734, -1.2636719, -2.5507812, -2.0058594, -2.1855469, -0.5751953, 1.2236328, -0.22033691, 1.546875, 1.3476562, 0.37475586, -1.7138672, 0.9951172, -1.7080078, 1.6572266, 1.1152344, -1.0888672, -3.8691406, -2.3398438, 0.9423828, 0.63720703, 0.5107422, -0.056732178, -1.0849609, -2.5878906, 1.0058594, 0.30810547, 1.2128906, 2.2539062, 2.2285156, -0.7529297, 0.7011719, 0.080566406, 1.3427734, 0.98779297, -0.7651367, 1.0527344, 0.19470215, 1.6572266, 2.5234375, -2.1914062, 1.4443359, -0.17468262, 0.74560547, -0.63427734, -0.27514648, 0.15966797, -0.95410156, -0.19702148, -3.0253906, -0.8989258, -2.4414062, 3.2070312, 1.5830078, 1.0175781, 0.31274414, 0.2010498, -1.15625, 1.3417969, 2.0234375, -0.43603516, -0.5209961, -0.8828125, -0.60839844, 0.73876953, 1.6660156, -0.24829102, 0.0713501, 1.3613281, -0.33251953, -2.21875, 0.8803711, -0.11090088, 0.56933594, 1.9541016, 2.4023438, 3.5292969, 2.3144531, 3.1640625, -0.81591797, 2.3046875, 2.2460938, -0.46826172, -1.9482422, 2.1328125, 2.9257812, -0.20141602, 0.08984375, 0.63378906, 1.65625, -0.35913086, -0.40722656, -0.796875, 0.08190918, -3.5742188, 3.2675781, -1.8359375, 2.3769531, -1.9355469, 0.7871094, -0.5859375, -1.0839844, -1.0205078, -1.0605469, 1.0449219, 0.4116211, 0.19665527, 0.117126465, 1.7089844, -0.1640625, -3.0019531, 1.5429688, -1.0253906, -3.0683594, -0.6508789, 3.5839844, 1.703125, 2.2050781, 0.38842773, 2.0234375, -0.3930664, 1.4443359, 0.46240234, 0.7944336, -0.9785156, 0.6044922, 1.4775391, 2.0078125, -1.8955078, -2.1054688, 0.61865234, -1.6044922, -2.8769531, 0.5239258, 0.37719727, 2.5800781, 0.9746094, -2.9804688, -0.8569336, 0.6333008, -0.09075928, -2.71875, -0.87158203, 0.5439453, -2.2929688, -0.79296875, 0.6538086, 0.19238281, 4.0742188, 2.2265625, -0.82128906, 3.0625, 2.015625, 1.1757812, 1.3964844, 0.8964844, -1.7167969, 1.4521484, -0.55078125, 2.1015625, 1.0771484, -0.81884766, 1.8554688, 0.93115234, 0.8334961, -0.67822266, 0.16101074, -3.4316406, -0.82714844, 0.043395996, -3.7128906, -0.16625977, -0.8129883, -1.6601562, 0.73583984, 0.3256836, 0.18688965, -2.9296875, -0.25610352, 0.8574219, -1.71875, -0.46899414, 0.6772461, -1.3681641, 0.92626953, 0.5029297, 0.014533997, 0.56152344, -0.05041504, 2.4628906, -2.0722656, -0.41674805, -0.9291992, 1.9257812, -0.8022461, -0.46557617, -0.05947876, -0.1694336, -0.57373047, 1.1552734, 2.46875, -1.1445312, 0.28222656, -0.003276825, 0.17871094, 1.5429688, 3.3183594, -0.6821289, -0.78271484, -0.50390625, -4.0390625, 0.028427124, 0.6645508, -1.3613281, 0.3684082, 5.9492188, 0.90283203, 0.27514648, -0.42358398, -3.8867188, -0.4736328, -0.56103516, 3.2617188, 0.93066406, -0.27563477, -0.5917969, 0.5366211, 3.2578125, 1.4541016, -2.2773438, -0.30419922, -0.13781738, 1.2597656, -0.97998047, 1.1259766, 0.7260742, 0.5102539, 0.35473633, 2.5820312, 3.8496094, 0.10437012, 0.90185547, 2.5585938, -0.47094727, -2.2988281, 1.2841797, -0.28027344, -0.024398804, 0.8276367, -0.07116699, 1.6787109, -0.020431519, -0.9863281, -5.109375, -1.0527344]}, "B078FBVGX6": {"id": "B078FBVGX6", "original": "Brand: Broil King\nName: Broil King 814154 Gem 320 Liquid Propane Grill\nDescription: \nFeatures: 24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners\nStainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer\nTherma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert\nLarge 7\"/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish\n", "embedding": [-2.109375, -0.6875, 1.890625, 0.49267578, -0.9638672, 0.6503906, 0.29125977, -0.47387695, 0.32495117, 0.58447266, 1.7294922, -1.3154297, 0.17663574, -1.4541016, 0.9448242, -0.117492676, 0.7919922, 1.7822266, 1.8671875, -0.9819336, -0.014427185, 1.3984375, 0.23754883, -1.0332031, -0.66259766, -0.36279297, 4.7304688, -2.7753906, -0.8261719, -0.76123047, 2.5996094, 0.22753906, 0.37182617, 0.9399414, -2.5332031, -2.3554688, -1.8056641, 1.0888672, -4.1132812, 1.8466797, -0.48242188, -2.0996094, 0.7001953, 1.7021484, -1.3027344, 0.6459961, 1.3203125, -0.38500977, -1.9794922, 0.31079102, 1.3369141, 1.5771484, -1.3876953, 1.6210938, 0.5595703, 1.5458984, -0.17932129, -1.1123047, 1.8994141, -0.71777344, 1.4267578, -1.3505859, -2.6445312, 1.3183594, -1.4619141, 1.4267578, 0.95166016, -1.6308594, 0.7910156, 0.004962921, 2.4394531, -0.8154297, -1.2148438, -0.9296875, 0.002538681, -1.5205078, -2.4296875, 0.36010742, 1.3466797, -0.5546875, -1.7363281, 2.4179688, 0.22692871, -2.8886719, -0.7270508, 0.16223145, -0.08416748, -2.0195312, 1.3349609, 1.3232422, 0.7451172, 1.2363281, -1.0029297, -4.1914062, 3.34375, -1.1162109, 1.9570312, 0.2524414, 1.6552734, 1.9023438, -0.7949219, -1.3398438, -2.2226562, -1.7207031, -2.7226562, -1.9814453, 1.6201172, -0.030578613, -3.4863281, -0.023086548, -1.3076172, -0.20019531, 2.1914062, 1.5625, -0.5214844, 0.5883789, -0.4230957, 4.1601562, 0.27075195, 1.0888672, 2.6542969, -1.1542969, 1.9091797, -0.10797119, 0.26757812, 0.86572266, -1.1044922, 1.4414062, 5.6289062, -0.31054688, -0.31201172, -2.1640625, 3.921875, -0.27734375, -1.359375, -2.1230469, -0.99365234, -0.18139648, -3.9667969, -0.2980957, -1.4345703, 1.5097656, -0.22314453, -0.09313965, -3.2285156, -1.4677734, -0.043914795, 0.59228516, -1.1191406, -2.3378906, 0.57421875, -0.93652344, 0.6801758, -1.5849609, 0.18981934, 0.31835938, -2.3144531, -1.8662109, 2.1757812, 1.0244141, 0.60498047, -1.3681641, -0.91552734, 1.0400391, -1.8242188, 0.08441162, 0.26513672, 1.5966797, 0.079956055, 0.7211914, 0.8129883, -0.55078125, -1.3886719, 0.38256836, 0.80322266, -0.70410156, -0.79003906, 0.84228516, 0.56689453, 0.35253906, -0.4194336, -2.4570312, -0.9770508, 0.80371094, 1.2148438, -0.12194824, -0.03778076, -0.14501953, 2.9355469, 0.5449219, 0.04107666, 1.4472656, 0.27563477, 0.9248047, -1.1728516, 0.39208984, -1.4208984, -1.9648438, 3.0566406, -0.0014276505, 0.39111328, -0.21887207, -0.33740234, -1.3076172, -1.2900391, -3.2929688, -0.14746094, -2.3867188, 2.2089844, 1.4638672, 0.67089844, -1.5996094, 0.7709961, -2.1796875, -0.14880371, -2.7617188, 1.0332031, 1.7470703, 1.5810547, 2.9414062, -0.6904297, -0.18908691, 0.30981445, 0.8022461, -0.33374023, 0.40405273, 0.98535156, 2.328125, -4.0429688, -0.64697266, 1.7294922, 0.22497559, 0.10241699, 0.9272461, -1.0888672, -0.1751709, -0.69189453, -0.54003906, 0.29003906, -0.41381836, -0.8769531, -0.5678711, -0.23937988, -3.3398438, 0.7080078, 0.5629883, -1.5068359, 2.2421875, -0.52978516, 0.4567871, -0.7026367, 1.1757812, 0.46044922, 0.82421875, -0.07006836, 0.5649414, -0.76904297, 0.23864746, -0.796875, -3.5605469, 2.1699219, -0.5102539, -1.0722656, -0.15795898, -0.025817871, -2.1328125, 3.2910156, 2.234375, -2.5195312, -1.3291016, -0.3605957, 0.21057129, 0.64501953, -2.2089844, 1.2099609, 1.7021484, -0.65234375, 5.4140625, -0.38745117, 0.7211914, 0.2783203, -0.28320312, -0.09375, -1.0908203, 0.8779297, 0.89453125, 1.2216797, -1.2236328, -0.9448242, 0.7114258, 4.96875, 0.39916992, -2.6328125, 3.0371094, -0.8623047, -0.3310547, 3.125, 0.69189453, -0.47998047, -1.0253906, 2.9355469, 0.9399414, 2.3554688, 0.19494629, -1.8613281, -1.5947266, 2.453125, 1.6298828, -0.16052246, 0.62939453, -0.69677734, -0.103881836, -4.40625, 0.7285156, -0.9609375, -1.6464844, 2.5351562, -3.1542969, 1.7626953, -0.47338867, 1.1542969, 1.5390625, 0.09051514, -2.4453125, 0.8696289, 2.3359375, -0.88964844, 1.2949219, -0.7758789, -1.1210938, -1.6386719, -0.43115234, -0.9008789, 0.328125, -2.9667969, -0.53125, -1.7988281, -4.1796875, 1.1689453, -1.65625, -0.6508789, 2.0332031, -1.3027344, 0.6645508, -1.0146484, -4.1171875, -1.6494141, -0.8144531, 0.34643555, -1.6357422, 1.7929688, 0.67089844, -0.24633789, -3.6191406, 0.15100098, -0.8876953, -0.011016846, 0.37670898, -0.6928711, -1.2929688, 2.0292969, -1.6533203, -1.4326172, -0.40039062, 0.49365234, -2.6132812, 1.5576172, -0.72021484, 1.8144531, -2.3886719, -0.19555664, -1.8203125, -0.35546875, -2.4433594, -2.4472656, -0.9477539, -0.33374023, 3.3046875, -0.4506836, 1.3222656, 0.21069336, 0.5288086, 1.8271484, 0.54589844, -2.1308594, 0.67529297, 0.60009766, -1.9423828, -1.2978516, -2.84375, 1.3828125, 0.025177002, -1.2158203, -1.2392578, 0.5058594, -1.2529297, 2.140625, -1.7216797, -0.059661865, -2.0683594, 1.3251953, -1.2509766, -1.4150391, -1.4619141, -1.484375, -2.6816406, -1.6269531, -0.13757324, 1.4140625, -1.3662109, 1.4404297, 0.6513672, -0.7788086, 2.7324219, -1.1152344, -3.3710938, 4.515625, -0.35253906, -1.7294922, 2.4335938, -0.5996094, -2.125, -1.8828125, -0.5473633, 3.7734375, 1.578125, 3.5253906, -0.38623047, 0.12695312, 1.5097656, -0.08660889, -0.1328125, -0.84521484, 0.20861816, 3.0253906, -0.25463867, -2.7714844, 0.8798828, 2.4980469, -3.1933594, -1.2998047, 2.9785156, 1.9599609, 2.5195312, 2.9824219, 0.95166016, -0.16674805, -0.23339844, 2.0605469, 2.4472656, 0.22973633, 0.96484375, 0.27978516, 0.40478516, 0.6147461, 1.3632812, 2.9296875, 0.30786133, 1.3095703, 1.4111328, -0.20874023, -1.2763672, -0.33544922, -0.66259766, 0.5004883, -0.08343506, 0.5004883, -1.7490234, 0.8178711, -1, -1.0039062, 0.69628906, -1.4541016, 0.10534668, 3.1054688, 0.43530273, -0.79248047, 0.45776367, 0.36621094, -0.46191406, -1.0117188, 1.1689453, -1.6162109, 0.7861328, 0.6245117, 0.09680176, 1.5185547, -2.1171875, 1.7783203, -1.0498047, -0.37182617, 1.0146484, 3.1601562, 0.7109375, -1.4355469, 2.3261719, 0.33764648, -1.3789062, 0.15795898, 0.8598633, -2.2011719, 2.6191406, -0.86816406, 0.7270508, -0.34277344, -2.7382812, 1.0556641, 0.6044922, 1.6289062, 0.19482422, 1.0429688, 1.1201172, -0.56591797, -1.0947266, -0.0059394836, -4.4492188, -0.26904297, -0.25170898, -0.54003906, -2.4785156, 2.8945312, 0.07745361, 2.4765625, 0.06976318, 2.1132812, -0.27172852, 1.1845703, 1.7021484, -2.2421875, 0.30981445, -3.2148438, -3.1171875, 0.64746094, -0.85595703, -1.4970703, 0.44458008, -0.9609375, -0.65722656, 2.3730469, 0.49682617, -1.4707031, 0.0368042, -0.15551758, -0.38745117, -0.17810059, 0.37573242, -0.3605957, 0.609375, -1.8183594, -1.5429688, -0.09680176, -1.2382812, 2.4589844, 2.5273438, -2.5703125, 0.8203125, -0.07550049, -0.10736084, -0.38964844, -0.3359375, 2.8398438, -0.017822266, 0.65234375, -1.9150391, 1.7587891, 1.0556641, -0.56933594, 2.2695312, 1.2958984, -0.2705078, -1.2109375, -1.8730469, 0.63623047, 1.7460938, -0.11218262, -3.5390625, -2.3984375, 0.61083984, -0.52001953, -1.2470703, 1.6357422, -2.6152344, -0.86328125, 2.3886719, 1.6386719, 0.98339844, 0.8569336, 0.41967773, -2.0566406, -0.055267334, -0.47265625, -1.2929688, 0.64990234, 0.7348633, 0.45922852, -2.1445312, 0.85058594, -1.8828125, -0.5151367, -1.671875, 0.12310791, -4.1601562, 2.5136719, 3.9160156, 2.3457031, 2.3066406, -1.4912109, -0.9394531, -1.7099609, -0.83740234, -1.0380859, 0.9790039, 0.0027694702, 1.5253906, 0.6948242, -0.12072754, -2.109375, -0.41625977, 2.2597656, -1.7275391, -0.6196289, -2.234375, 1.9082031, -0.7285156, -0.6748047, 1.390625, -0.73535156, 4.0039062, -1.7011719, -0.5151367, -0.14624023, 2.4589844, -0.18884277, -0.0024719238, -0.9736328, -0.4494629, 1.4863281, 1.2148438, 1.5449219, -1.578125, 2.3652344, -0.6269531, 1.765625, -1.0634766, 0.24645996, -0.22558594, 1.4960938, -2.1308594, -1.1445312, 0.3486328, 1.0849609, 0.23022461, 3.1289062, 2.1992188, -1.4404297, 2.1445312, 0.31713867, -2.8886719, -0.36865234, -0.47558594, -2.0488281, 2.7480469, 0.5864258, -4.5664062, 0.09008789, 1.84375, 1.2177734, 0.8745117, -0.60009766, -0.6796875, 0.09094238, -1.8613281, 0.15515137, -0.15454102, 0.87353516, 0.23413086, 0.9511719, 1.0410156, -0.70214844, -0.60009766, 0.34301758, 0.17749023, -1.5195312, 1.3671875, -0.5888672, -0.14038086, -0.5834961, 0.06100464, -2.2304688, -1.1767578, 3.2207031, -1.25, 0.7446289, 1.2148438, 1.0419922, -3.359375, 1.9931641, -2.25, 1.7509766, -1.484375, -1.5996094, 1.0039062, -3.6035156, 1.1171875, -2.8457031, 0.8618164, -1.7998047, 1.6357422, 1.6464844, -0.47729492, -0.22375488, 1.5625, -2.4785156, -4.3007812, -3.4609375, 0.17907715, 0.64160156, 0.47827148, 1.0917969, -2.5234375, 0.9394531, -0.8100586, -1.6269531, -1.7070312, 0.7402344, -1.3476562, -1.4033203, -0.86035156, 0.47973633, -0.46606445, 0.87646484, 1.3691406, -1.0302734, 1.0966797, -1.9912109, -1.4130859, 1.5058594, -2.0605469, 1.1005859, 1.8955078, 0.013771057, -0.27246094, 1.1875, 0.43847656, -2.6054688, 3.3398438, -0.031036377, -0.5214844, 0.9970703, -0.6015625, -1.5996094, 0.8388672, -3.5, 0.6875, 0.37329102, 0.63427734, 0.7006836, -2.0019531, -0.66845703, 0.79589844, -2.5917969, 0.453125, 1.3056641, 1.7949219, 0.6586914, 2.2460938, -2.2226562, 1.1923828, -1.8085938, -2.0136719, 1.3798828, -3.4433594, 0.10290527, -0.5732422, 0.5488281, 2.2128906, -0.10668945, 1.0322266, 0.9868164, -1.0361328, -0.3083496, 0.48779297, -1.1572266, 3.7265625, 3.3203125, -1.3847656, -2, 0.5029297, 0.13952637, 3.1308594, -0.66015625, -2.2890625, -0.7548828, -0.14245605, 0.46362305, 0.6245117, 1.4238281, 2.5097656, 0.29345703, 0.22937012, 2.6484375, 4.1914062, 0.2932129, 1.9873047, -0.35083008, 0.15905762, -0.028274536, 5.015625, 1.3339844, -1.9716797, 0.9760742, -0.94628906, 0.26953125, -0.26049805, -0.9482422, -1.2773438, -2.578125, -1.765625, 0.4326172, -0.7480469, -5.3945312, -0.39501953, 1.0664062, -1.6621094, 0.9013672, 0.93652344, 0.51660156, 1.7802734, 2.4414062, 1.8212891, -1.1953125, 0.9350586, 0.50390625, -0.8925781, 1.0253906, -3.5917969, 2.8769531, -0.40771484, -0.89990234, -1.8466797, 3.1816406, -0.9970703, 2.0371094, 1.8476562, 1.3564453, 2.3789062, 0.03189087, 1.6259766, -0.20825195, 2.6835938, 1.8730469, -0.64746094, -0.012130737, 1.3330078, 2.3183594, 0.6352539, -0.9916992, 3.0195312, -1.2929688, -1.8994141, 0.73583984, 0.2944336, -0.6425781, -1.6875, 2.0410156, -0.6201172, -1.1650391, -1.8046875, 0.19934082, 0.90478516, -0.4165039, -0.21105957, -0.4243164, 2.75, -0.17102051, 2.890625, 0.19763184, 0.05709839, 2.4394531, -1.9892578, -0.75927734, 1.0087891, -1.4042969, -0.47143555, -1.2431641, 0.40112305, 0.060760498, 0.35229492, 0.953125, 0.9428711, 0.54003906, -0.46728516, -1.1064453, 0.24951172, 0.86035156, 1.8808594, -0.21032715, -1.4101562, 3.7597656, -1.0380859, -2.8945312, -4.71875, 2.1992188, 1.3710938, 0.26049805, 1.3378906, 0.2680664, 3.2597656, -0.16809082, 1.6005859, -2.0605469, 0.88916016, -0.97558594, -1.9316406, -0.5053711, 2.5605469, 0.18249512, 2.8710938, 0.7675781, -0.64208984, 1.6953125, -0.63183594, 1.8798828, 1.4931641, 1.4179688, 0.9091797, 0.9433594, -0.1854248, 2.3808594, -0.9868164, -0.32861328, -3.5527344, 2.734375, 1.2587891, 1.1308594, 1.1972656, -2.3789062, 0.9057617, -0.3330078, 0.37109375, 0.19116211, -3.0019531, -1.2646484, -0.09429932, 0.6586914, 0.12335205, -2.3945312, 2.859375, 1.7460938, -0.07092285, -1.0214844, 3.9726562, 0.4794922, 0.4025879, 0.35668945, -0.9091797, -1.1630859, 0.20690918, 0.53515625, 1.4414062, -1.9160156, -0.5102539, 1.1396484, 0.44750977, -0.7680664, -1.2949219, -0.25439453, -0.10003662, -0.5732422, 0.89941406, -1.2607422, -1.1210938, 2.4863281, 0.51708984, -1.1972656, 1.4052734, 1.1171875, 1.9033203, -3.2089844, -0.26391602, -1.0029297, -0.095825195, -1.1191406, 0.8203125, 1.6982422, 1.5947266, -0.3540039, -0.12322998, -3.4472656, -1.6757812, -1.5820312, 2.2578125, -1.2607422, -0.74365234, -0.0065307617, -1.5009766, 1.3417969, 0.0463562, -2.2128906, 1.4257812, -1.5068359, 1.3261719, 1.7529297, 1.1679688, -1.1328125, 0.42211914, -0.2619629, 1.1289062, 1.6757812, -0.18273926, 0.50878906, 0.4560547, 1.3017578, 0.43725586, 1.0800781, 1.1845703, -1.3105469, -0.44799805, 2.359375, 1.0664062, 0.23388672, 0.31103516, -1.5703125, -2.859375]}, "B07W4JX6QS": {"id": "B07W4JX6QS", "original": "Brand: Kohree\nName: Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper\nDescription: Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
PREMIUM
Made of 100% high quality brass, it is extra durable and strong for long-term usage.
Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
CONVENIENT
The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
Tips:
1. The indicator could not show the exact content of the tank but give an approximate value.
2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
Safe Protection
Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
Easy Installation
With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
Wide Application
Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
\nFeatures: \u30102 Way Propane Hose Splitter\u3011: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage.\n\u3010Clear Gauge Level Indicator\u3011 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank.\n\u3010Premium Quality\u3011: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using.\n\u3010Easy Installtion\u3011: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier.\n\u3010Wide Application\u3011: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.\n", "embedding": [-1.6259766, 1.296875, 1.3037109, 0.19799805, -1.7158203, 1.1064453, 1.25, -0.7680664, 0.43359375, 1.5712891, 1.6533203, 0.88720703, 2.3339844, -4.0195312, 1.1337891, 3.2578125, -0.056365967, -0.3269043, 3.0234375, 0.6401367, 4.7851562, 1.1337891, 1.5859375, 0.1730957, 2.7441406, -0.5395508, 2.5292969, -2.4316406, -0.7192383, 0.07147217, 0.74121094, -0.8964844, -1.7753906, -0.97265625, -2.9492188, 0.15307617, -0.74316406, 0.48754883, -1.8183594, -1.2685547, -1.640625, 0.4477539, 1.7041016, 1.5527344, -1.8222656, -1.8955078, 1.5556641, -1.0205078, 0.03086853, -1.1513672, -0.6723633, 1.9384766, -0.51171875, 1.1279297, -2.2578125, 1.1865234, -0.4116211, -3.5546875, 2.1386719, 1.6445312, 0.21557617, 1.8642578, -3.3125, 2.2363281, 0.91064453, -0.11218262, 0.2479248, -0.078186035, -1.3652344, 1.0146484, -0.21850586, 0.18225098, 0.43359375, -1.0205078, -2.8710938, -0.118774414, -2.4492188, -0.28759766, 2.3964844, -0.4868164, -3.0117188, 1.0527344, 1.4873047, 0.38989258, -1.0439453, -0.46069336, -0.9995117, 1.4521484, 0.90478516, 0.8256836, -1.5449219, 0.8071289, -3.4414062, -4.2851562, -0.38720703, -0.04876709, 1.5908203, 2.1035156, 4.8359375, 0.42944336, -1.2978516, 0.7373047, 0.030807495, 0.7832031, -2.3652344, -0.45141602, -0.11138916, 2.1601562, -3.0703125, -0.5722656, 0.13391113, 1.4296875, 2.2226562, -1.0400391, -0.34375, 0.22741699, -0.77441406, -0.7104492, 0.69433594, 1.1835938, 3.0214844, -0.55371094, 0.6635742, -1.0996094, 2.4121094, 1.2724609, -0.34545898, 1.7246094, 1.8251953, 0.3918457, 1.2587891, 0.67626953, 1.8330078, -0.9321289, 1.1484375, -2.3378906, -2.3671875, -2.5039062, -1.1855469, 0.047668457, -3.5859375, -0.2211914, 1.8554688, -1.3681641, -3.7773438, -0.7963867, -4.2304688, 0.24389648, 0.85009766, -0.5878906, -0.89208984, -1.4541016, 0.98583984, -0.5083008, 3.0898438, 2.0195312, 0.03378296, -0.89941406, 0.6376953, 0.4855957, 0.65185547, -0.3828125, -2.3730469, 3.0683594, -0.8125, -4.1992188, -0.4189453, 1.0546875, -1.640625, 1.2929688, 0.38745117, -1.84375, 2.4199219, -0.7270508, 0.55322266, -1.4404297, 0.7363281, 2.03125, 1.6123047, 0.77685547, -4.0546875, -2.7539062, 0.5126953, 0.921875, 1.6123047, 2.1132812, -1.3037109, 0.4885254, 0.9892578, -0.4074707, -1.484375, 1.5878906, -0.40307617, 1.15625, 0.46069336, -0.59814453, -5.3125, -0.42578125, -0.15014648, 1.1767578, -2.5429688, -1.5048828, 0.074523926, 0.60009766, -2.0351562, 1.0839844, -0.30151367, -1.734375, 0.027572632, 1.2910156, -0.40820312, -0.6904297, 2.8730469, -1.6289062, -0.35009766, -1.4160156, 0.5654297, 3.0253906, 1.5068359, 1.1455078, -1.9365234, 0.24658203, 2.7460938, 2.8339844, 2.4042969, -0.32299805, -0.2932129, 2.25, -1.3017578, -1.1601562, 2.5742188, 0.8574219, 0.06518555, 0.96728516, -1.6025391, 3.2128906, 1.0126953, -2.4023438, -0.032043457, 2.4003906, 2.828125, -0.86279297, -0.31640625, -2.4609375, -1.6328125, -0.03491211, 0.7241211, 0.6635742, 0.36865234, -1.3183594, 0.1385498, 0.0052871704, -0.4321289, -1.5097656, -2.5332031, 0.08215332, 1.2958984, 0.6347656, 1.4453125, -0.8774414, 2.5351562, 0.11505127, 0.060424805, 0.025314331, -0.2607422, 1.09375, 0.07397461, -2.3632812, -2.1210938, 0.07647705, -0.29077148, 1.5048828, 1.6582031, -0.82421875, 0.75097656, 0.26416016, -1.2041016, 2.296875, -0.05886841, 1.9287109, 2.3066406, -1.0107422, 1.6425781, -2.1875, 0.6845703, 2.2382812, 3.3457031, -1.0488281, 0.19592285, 0.54345703, 4.3007812, -0.10675049, -1.8007812, 3.0117188, 3.4238281, 0.77001953, 0.59814453, 1.3193359, -0.6767578, 0.42089844, -1.0722656, 0.5991211, -2.0527344, 1.2978516, 2.3730469, 0.56347656, -0.34399414, -1.0810547, 2.0292969, 1.4677734, -0.09539795, 0.7988281, -0.7753906, -0.4284668, -0.55078125, -2.453125, 2.1269531, -0.25976562, -1.1220703, 1.5390625, -2.0996094, 0.10644531, 0.57177734, -1.0175781, -0.3095703, 0.36328125, -1.3085938, 1.6191406, -0.46020508, 2.4433594, 1.4511719, -2.3710938, -0.117004395, -0.02709961, -2.1210938, 1.8642578, -0.95214844, -2.0898438, -0.032196045, -1.0117188, -1.1503906, -3.484375, -1.9228516, 2.1015625, 0.26220703, -1.0947266, 1.4521484, 2.1464844, 1.2851562, -0.0063667297, -0.22753906, 2.0175781, -1.5400391, -3.3632812, -0.20422363, -0.9741211, 0.45654297, 1.6162109, 0.4230957, -1.0664062, 0.4128418, 2.0585938, -0.80615234, -0.8310547, -1.8515625, -1.1103516, 0.88378906, -2.0703125, -1.2373047, -0.57128906, 1.5048828, -0.29614258, 0.5917969, -2.0585938, -0.92089844, 0.57666016, 0.265625, 1.3144531, -0.18896484, 0.20947266, -1.4287109, -0.54589844, -0.65966797, -2.2832031, -2.8515625, -2.3027344, 1.6357422, 0.6645508, 0.83935547, -3.5683594, -0.00045204163, -0.3701172, -0.07342529, -1.5966797, 0.9091797, 0.9135742, -0.85009766, 1.2470703, -1.2734375, -1.2480469, 1.7998047, -0.17333984, -0.71777344, 0.42236328, 1.2910156, -0.27856445, -0.95751953, -0.64501953, 0.087524414, -0.18078613, -2.1757812, 1.7998047, 1.3984375, 1.2587891, 1.5615234, -0.98046875, 1.3544922, 0.73291016, -0.7211914, 2.1953125, -1.84375, 1.0878906, -2.7285156, -0.77441406, 1.6679688, 2.5839844, 2.4199219, -0.21801758, 0.80126953, 1.2216797, 1.7558594, 0.53515625, -0.34838867, -1.1757812, 3.7636719, -4.4726562, -0.7416992, 0.07910156, -0.2064209, -3.8730469, 0.6191406, 0.21813965, 1.2832031, 3.171875, 0.40795898, 1.6689453, -1.5654297, -0.1472168, 0.5161133, 2.1054688, 1.5585938, -1.1123047, 0.005054474, -0.70166016, -0.52978516, 0.7573242, 1.9052734, 3.1191406, 0.13183594, 0.87890625, 1.2138672, -1.9033203, -1.4042969, -1.8916016, 1.7705078, -0.12011719, 1.6064453, -0.70458984, -0.27246094, -1.8320312, -1.8730469, 1.5283203, -0.8886719, -1.4589844, 0.22229004, 2.2128906, -0.84375, -0.05859375, -1.5351562, 0.10534668, -0.9995117, 1.2519531, 0.6767578, 0.2401123, 0.50341797, -2.1074219, -0.8720703, -1.4306641, 2.1738281, -1.15625, 1.6376953, -1.3027344, -1.0039062, -1.90625, -1.4873047, -2.5917969, 0.48779297, 0.8095703, 2.1777344, 1.5644531, -0.078552246, -0.9785156, -0.055145264, 1.0556641, -0.36376953, 1.4023438, -1.0244141, -0.8432617, -0.17712402, -0.32006836, 1.2958984, 0.24157715, -0.59375, -1.6933594, 1.1601562, -0.953125, -0.7480469, 1.1376953, -0.4333496, -0.68652344, -1.6865234, -1.5136719, 0.38500977, -0.45629883, 3.1816406, 0.77001953, -1.6083984, 1.5957031, -2.3066406, -0.30029297, -0.38378906, -5.1523438, 1.1494141, 0.30810547, 0.88378906, 1.75, -0.28320312, -0.4951172, 1.9921875, 1.3613281, -3.4746094, -0.82714844, -1.5429688, 0.7583008, -2.4082031, -1.7050781, 2.9628906, 2.7695312, -0.3984375, -2.6738281, 0.3178711, -2.3496094, -0.8198242, -0.39331055, -1.2744141, 0.7685547, 0.0073013306, 0.6035156, -0.072631836, -1.7685547, 0.6401367, 1.171875, -1.1767578, -2.4472656, 3.2929688, 2.3417969, 0.7504883, -0.43701172, 1.5302734, 2.9277344, -1.2109375, -1.3056641, -0.80908203, 3.4199219, -0.22106934, -1.6875, -2.3007812, -0.63183594, 0.3154297, -1.0224609, -0.31640625, -0.24584961, -0.8066406, 1.4326172, -0.8198242, 2.4628906, 1.1748047, -1.4375, -2.5390625, 0.94873047, 1.3300781, -2.234375, -1.0966797, -0.84716797, 0.11553955, -2.0898438, -0.19555664, -2.7714844, 0.39526367, 0.5859375, -1.0175781, -3.4824219, 1.7441406, -1.5849609, 2.2792969, 0.78466797, -2.4160156, -1.6386719, 0.5058594, 0.3623047, -1.3203125, -0.58740234, -1.2792969, -2.5976562, -0.6191406, 1.4169922, 0.71240234, -1.0556641, 0.0309906, 1.3359375, -0.08319092, 2.0371094, 2.1894531, -1.1982422, -0.97998047, 0.8457031, -0.107421875, 3.7714844, -2.828125, 0.7133789, 0.7548828, 0.04611206, -4.015625, 0.8676758, 0.6826172, 1.3046875, -1.4238281, 1.6660156, 3.0351562, 1.234375, 0.47192383, 0.021911621, 0.4326172, -1.3466797, 0.49243164, 0.07141113, 1.4453125, 0.7294922, 2.0117188, 1.8925781, 2.9277344, 0.31103516, 1.0263672, 1.5605469, -0.7788086, 1.3828125, -0.31347656, 0.6870117, -1.5234375, 0.35473633, -1.4794922, 1.3359375, -1.5732422, -1.9433594, 0.9003906, 3.3222656, 0.57714844, 0.6923828, -0.1472168, -1.2050781, 0.023208618, -3.2070312, -2.0878906, 0.6230469, -1.5507812, 1.2294922, -0.13439941, 0.23608398, 0.96875, 0.66308594, 2.2421875, -0.37963867, -0.96777344, -0.40893555, -1.6191406, -1.5996094, -1.0605469, -1.5097656, -3.2128906, 0.22094727, 2.2363281, 1.3144531, 0.625, -0.008468628, -1.5166016, 0.88623047, -1.5664062, 0.53027344, 0.70996094, -0.39672852, 0.16088867, 4.015625, -0.1986084, 0.9663086, -0.9008789, 0.048339844, -1.2910156, 1.0498047, 1.6328125, -0.9536133, -1.2363281, 0.18786621, -3.0214844, -6.1445312, 0.8046875, 2.8574219, 1.9042969, 1.6220703, -1.8076172, -1.5908203, 0.21264648, -0.4807129, -2.1503906, -2.8007812, 1.7041016, -1.3105469, -1.6025391, -1.0302734, 0.7910156, -0.41381836, -1.9082031, 0.5151367, -1.9980469, -0.5786133, -3.6582031, 1.3671875, 1.6298828, 1.2822266, -1.1552734, -0.5102539, -2.5742188, -0.9145508, -1.4658203, 1.3398438, -2.859375, 0.72265625, -2.0585938, 1.5722656, 1.2177734, -0.8071289, 1.0898438, 0.5776367, 0.24169922, 0.5419922, 1.8544922, 1.8349609, -1.2558594, -0.075927734, -1.4873047, 0.1986084, -0.93847656, -1.3242188, 0.7519531, 0.029388428, 1.4414062, 2.5273438, -1.0947266, -2.4199219, -2.3515625, -1.8134766, -0.09338379, -1.5634766, 2.0976562, -0.031204224, 2.9414062, 1.8154297, 0.13061523, 0.5756836, 0.40893555, -1.9492188, -0.66308594, 0.43603516, -1.8193359, 3.5429688, -1.4345703, -1.6347656, -1.8222656, -1.3466797, 0.5083008, 1.5205078, -1.3652344, 0.23498535, -0.006958008, 0.48632812, 0.28100586, -0.123168945, 2.8242188, 1.1748047, 3.3789062, -1.625, 0.31958008, 1.9921875, -2.6289062, -0.83935547, 1.2587891, -0.3935547, -1.5097656, 0.5698242, 0.50878906, -3.4804688, 0.6635742, 0.21936035, 0.6621094, -0.4987793, 1.1162109, 0.5620117, -1.9179688, 0.59375, -0.6875, -2.125, -1.5097656, 2.7246094, -0.23254395, 0.57128906, -0.6191406, 2.125, 0.74365234, 1.25, 0.21350098, -1.03125, -1.3007812, -1.6425781, 0.013793945, 0.09857178, -0.41357422, -1.2705078, -0.484375, 1.5332031, 1.8789062, 1.2617188, -1.8486328, 1.4980469, 2.9042969, 0.2619629, 3.5429688, 2.6269531, 0.7397461, 3.5703125, 2.0722656, 2.0605469, 1.9082031, -0.14624023, -0.5991211, 0.2998047, -0.8461914, 1.7695312, -2.5625, 1.7089844, -0.8823242, 1.9863281, 1.7246094, 0.82470703, 0.35791016, -5.1210938, 1.0878906, -1.9013672, -0.30200195, -1.3486328, 1.6513672, -0.62402344, 0.32763672, -0.26098633, -0.029418945, -0.34960938, 1.9619141, 0.6381836, 0.4128418, 0.5595703, 2.203125, -0.76123047, -0.9057617, -1.0722656, -0.3413086, 0.02015686, 1.1162109, -1.2802734, 0.82421875, -0.5229492, 2.046875, -0.4387207, -1.6113281, 0.9248047, -0.2626953, -0.06304932, -1.9970703, 2.8496094, 1.0390625, 0.37475586, 3.7558594, -0.0005931854, -1.6640625, -4.5664062, 1.4238281, -0.85253906, 0.25146484, 1.0771484, -3.7558594, 1.3603516, -1.6533203, -0.31152344, -2.8515625, -0.44873047, 1.6679688, -1.2568359, -0.06719971, 1.2558594, -1.4082031, -0.13781738, 2.2207031, -0.9482422, 1.5742188, -0.24633789, 0.1005249, 1.9414062, 2.2285156, 1.3642578, -1.5078125, -0.33862305, 2.0898438, -0.034362793, 0.00039291382, 0.3774414, 0.6376953, 0.5830078, 0.9111328, -0.69433594, -0.9394531, 1.2089844, 0.8901367, 0.5957031, 0.12225342, -1.140625, -1.015625, -1.0820312, 0.081604004, -0.5683594, -1.0351562, 1.1767578, 1.9404297, -1.2763672, -1.2021484, 0.48413086, -0.9423828, 1.6572266, 1.5566406, -1.6904297, 0.046875, -1.4804688, 0.81640625, -2.875, 0.6459961, 1.1035156, -1.28125, 0.008522034, -3.1777344, -0.5473633, -0.49658203, -0.14123535, 1.0332031, 1.7207031, -0.08306885, -1.0703125, -1.4160156, -0.8754883, 2.2363281, 3.859375, 0.7158203, -0.2175293, 0.40625, -0.5546875, 1.4423828, -0.3557129, -3.4238281, 0.6977539, 2.0664062, 1.9755859, 3.1835938, -2.1035156, -1.3603516, 0.4736328, -1.5224609, 2.3300781, 0.4567871, -3.1464844, 1.0126953, 0.6665039, 1.34375, 1.7451172, -1.2470703, -0.5756836, 0.97314453, 1.4121094, -2.4023438, -0.39282227, 0.087646484, 0.007637024, 0.70996094, 3.7597656, 1.6640625, -0.23718262, 0.68652344, 4.2890625, -0.109680176, -3.3945312, 1.28125, -0.98876953, -0.11773682, 1.9658203, -0.29003906, 1.453125, 0.0017118454, -1.0605469, -2.8867188, 0.4633789]}, "B07M6V9BMW": {"id": "B07M6V9BMW", "original": "Brand: Napoleon\nName: Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel\nDescription: \nFeatures: 80, 000 BTU's, 4 Stainless Steel main burners, 900 in\u00b2 total cooking area\nDimensions: 66.50\" W x 25.50\" D x 51.75\" H (Lid Closed) | Cooking Area: 17.75 x 28 in\nLed Spectrum night light control knobs and safety feature\nLift ease roll top lid. double doors for storage and easy roll locking casters\nInfrared rear rotisserie burner\n", "embedding": [-2.3496094, -0.41308594, 2.6542969, 0.97753906, -1.1162109, 0.55371094, -0.72265625, -0.8745117, -0.038116455, 1.7509766, 2.8476562, 0.6035156, -0.7519531, -1.0917969, 1.4140625, 0.50097656, 1.5419922, 0.84375, 0.5957031, 0.17785645, 0.28027344, 0.65478516, 2.1914062, -1.3544922, -0.4621582, 1.0078125, 4.5859375, -4.140625, -0.55371094, -1.8173828, 2.3183594, 0.8652344, 0.7661133, 0.45214844, -2.7363281, -1.1914062, -2.0351562, 0.7739258, -2.5859375, 1.0488281, 0.49609375, -1.5625, 2.2695312, -0.9980469, -2.0585938, -1.1552734, -0.6845703, -0.13232422, -2, -1.0195312, 1.1669922, 0.4025879, -0.671875, 0.6328125, -1.0429688, 1.0087891, 1.9707031, -0.14831543, -1.4257812, 0.5283203, 1.3359375, 1.0791016, -1.2382812, -0.79296875, -1.6904297, 0.3449707, -0.51464844, 0.8413086, 1.6582031, -0.1953125, 1.6435547, 0.24023438, -0.74121094, -0.77490234, 0.21765137, -2.34375, -2.5839844, 0.6665039, 1.9111328, -0.6401367, -1.2607422, 1.7304688, 1.0869141, -1.8886719, -0.72802734, 0.38793945, -1.6552734, -1.2558594, 0.8803711, 1.3935547, 0.79541016, 1.7421875, -0.8339844, -3.8710938, 3.3828125, -0.36572266, 0.99121094, 1.7119141, 0.90722656, 1.9013672, 0.65771484, 0.15600586, -1.0400391, -1.6005859, -1.828125, -2.546875, 1.6845703, 0.051086426, -2.2734375, -0.2993164, -0.765625, -1.1347656, 3.0546875, 0.6254883, 1.6230469, 2.6347656, 0.4909668, 2.3671875, 0.29077148, 0.72558594, 1.5917969, -1.0478516, 0.4416504, 0.2265625, -0.49951172, 0.83447266, -2.1992188, 1.6435547, 4.3320312, 0.20568848, 0.10369873, -1.5039062, 3.6074219, -0.22106934, -1.2880859, -1.8554688, -3.2011719, -0.49658203, -4.1132812, 0.2626953, -0.47485352, 1.4453125, 0.6352539, 0.13195801, -3.2460938, -0.40649414, 0.4350586, 0.16418457, -0.6020508, -0.703125, -0.041290283, -2.3886719, -0.31274414, -1.3955078, -0.12939453, -1.4121094, -0.9194336, -1.1552734, 3.7089844, 2.5253906, 2.4296875, -1.3974609, -2.4785156, 0.48779297, 0.14794922, -2.0585938, -0.8378906, 1.6210938, 1.1757812, 2.0703125, -0.52490234, -1.1357422, -0.73535156, 0.11804199, -0.25317383, 0.13024902, -0.53515625, 2.6074219, -0.11828613, -1.828125, -2.2773438, -0.8544922, 0.21948242, -0.07232666, 0.4020996, -1.0410156, -1.1191406, -0.43823242, 1.3710938, -1.7402344, 1.2646484, -0.7783203, -0.2770996, 1.2470703, -1.8642578, -2.2285156, 0.5908203, -1.7988281, 1.2314453, -0.6503906, -1.0927734, -0.7089844, -0.12719727, -0.2861328, -2.2949219, -3.4902344, -1.5517578, 0.5620117, -0.17358398, 3.1757812, 3.4609375, -1.5234375, 1.4248047, -1.8300781, 1.3525391, -2.0253906, 1.8994141, 1.4833984, 1.6035156, 2.7714844, -0.59716797, 0.52783203, -0.041168213, 3.3730469, -0.15917969, 2.5566406, 0.56689453, 1.4375, -2.3261719, -1.3017578, 3.0390625, 1.1757812, -0.8984375, -0.2602539, -0.08959961, 1.984375, 0.5546875, -2.0234375, -1.3457031, -0.9589844, -1.4082031, -1.2128906, -0.9633789, -0.6152344, -0.29614258, 0.453125, -2.0957031, 0.57714844, 1.9423828, 1.7626953, -0.35961914, 0.081604004, 1.7294922, 0.3947754, -0.04598999, 0.8823242, 0.5493164, 1.8662109, -1.4482422, -3.2460938, 1.4570312, 0.2467041, -0.63671875, -1.0068359, 1.03125, -1.1474609, 4.015625, 0.05895996, -2.7421875, -0.40771484, 0.47753906, -0.8886719, 3.6640625, 1.5117188, -0.23583984, 0.8491211, -3.0996094, 3.5195312, -1.3525391, 2.2050781, 0.31054688, 0.65625, 2.7753906, -2.6269531, -1.0898438, 1.0791016, 1.3964844, -1.2617188, -1.4931641, 1.9599609, 5.4023438, -1.0039062, -2.6503906, 1.8994141, -0.8691406, -0.609375, 2.1171875, -1.2773438, -0.004009247, -2.8671875, 1.5810547, 1.4208984, 1.6474609, 0.7949219, 0.84521484, -1.9355469, -1.1552734, -2.0195312, -0.8691406, -2.0507812, 0.3305664, -0.23095703, -1.7470703, 2.3808594, 0.5620117, -0.55615234, 2.15625, -2.5273438, 2.6992188, 0.07147217, 2.5917969, 1.9326172, -0.55322266, -0.5292969, -0.24609375, -0.24658203, -1.1542969, 1.4902344, -0.61083984, -1.2265625, 0.21582031, -0.49560547, 1.0351562, -2.1367188, -2.4121094, 0.08691406, -2.7109375, -1.1660156, -0.61083984, -2.4824219, -2.4414062, 0.8696289, -3.5195312, 1.6660156, -0.6040039, -5.0429688, -2.1210938, -1.2988281, -0.21203613, 0.60546875, 2.1640625, -0.22766113, -0.10003662, -3.8339844, 0.5385742, 0.32055664, -2.7988281, 0.34594727, -1.5537109, 0.22290039, -1.1494141, -0.72802734, -0.6479492, -0.025360107, 0.67041016, -2.1015625, 1.0390625, -3.2246094, -2.0507812, -4.1875, 0.33276367, -2.2246094, -0.034942627, -2.7128906, -1.2382812, -1.2265625, -2.3300781, 3.0078125, 0.7631836, 0.03451538, 0.5605469, -0.296875, 2.1796875, -1.8837891, -1.2998047, -1.2265625, 0.59814453, -2.2675781, -3.0039062, -2.6953125, -0.075927734, -1.2226562, -0.203125, -2.0898438, 1.0908203, -2.2167969, 3.1738281, -1.1044922, -1.8857422, -0.56884766, 0.5371094, -0.67578125, -0.23583984, -2.6445312, -0.9868164, -0.34570312, 0.22106934, 0.25097656, 0.7089844, 0.6816406, 1.4443359, 0.43041992, -1.2773438, -0.32006836, -1.1054688, -4.109375, 1.6220703, 0.7944336, -2.5703125, 1.828125, -1.9013672, -1.7675781, -1.3603516, -1.4023438, 1.2597656, 2.8671875, 1.3984375, 1.2578125, 0.8754883, -0.4169922, 1.4189453, -0.7138672, -0.011024475, 0.47094727, 2.5058594, -1.8037109, -1.5195312, -0.3256836, 2.7832031, -1.6513672, -2.0253906, 2.1210938, 1.3261719, 1.6835938, 1.0419922, 0.033325195, 0.47753906, -1.7724609, 1.1513672, 1.4287109, -0.26953125, -1.0917969, -1.2890625, 1.375, 0.6381836, 1.6748047, 4.2695312, 0.3334961, 1.5742188, 0.14086914, 1.2441406, -1.8164062, 1.0107422, 1.2207031, 2.4316406, -0.6875, 2.0878906, 0.30615234, 1.5087891, -0.7133789, 0.8491211, 0.18933105, -3.1171875, 0.64501953, 1.4521484, 0.93847656, 0.07397461, 0.22351074, 1.3916016, 0.43603516, 1.0341797, 2.6484375, -1.0253906, -0.3798828, 1.0380859, 0.31103516, -2.2324219, -1.4697266, 1.9150391, -1.5, -1.5107422, -0.08654785, 2.8164062, 0.63671875, -2.3359375, 0.4326172, 0.48608398, -0.44799805, 0.8701172, -0.5908203, -0.31591797, 1.9375, -0.93652344, 1.6591797, 0.39526367, -2.1035156, 0.78466797, -0.8574219, 0.16748047, 0.18115234, 0.85058594, 2.4804688, 1.3310547, -2.5507812, 0.44580078, -3.4160156, 0.6694336, -0.2763672, -2.71875, -1.5996094, 2.3984375, 1.0117188, 2.0195312, -2.0058594, 2.5566406, 0.37548828, -0.44873047, 1.6054688, -3.4746094, 0.12164307, -2.6875, -2.5605469, 1.9863281, -1.0664062, -0.050354004, 1.0224609, -0.8671875, -0.7709961, 2.0917969, -0.18481445, -3.9609375, -2.0117188, -1.7050781, 1.0429688, -1.1015625, -1.6914062, 1.9580078, -0.45825195, -3.7734375, -1.5878906, -0.55615234, 0.38085938, 1.9775391, 1.6865234, -2.0136719, 1.3476562, -1.8544922, 1.6435547, 1.8642578, -0.38671875, 1.3632812, -0.51220703, -0.49658203, -3.2304688, 1.5263672, 0.6533203, -0.7636719, 0.09106445, -0.46875, -0.2788086, -1.6357422, 0.47998047, 1.0507812, 3.1796875, 0.19812012, -2.7578125, -0.30932617, 0.63671875, 0.085876465, -0.40429688, -0.70214844, -0.90722656, -1.2724609, 1.0507812, 1.9267578, 0.1809082, 0.31884766, 0.796875, -2.9394531, -0.27978516, 1.3017578, -1.9482422, 0.49902344, 0.20031738, -0.4169922, 0.96191406, 0.84277344, -1.5087891, -0.21948242, -2.7128906, -0.42919922, -2.5, 3.8125, 3.0625, 3.1328125, 1.3798828, 0.20593262, -2.0742188, -0.81640625, 1.5009766, 0.39819336, 2.5800781, -1.3486328, -0.6245117, 1.0947266, 1.3818359, -2.0878906, -1.2734375, 2.9746094, -1.7666016, 0.4934082, -1.3134766, 0.39282227, -2.3144531, -1.0400391, 1.4658203, -1.1630859, 2.9238281, -1.2509766, 0.44433594, -1.3085938, 0.6660156, 0.7246094, 1.4023438, 0.47705078, 1.0498047, 2.6992188, 1.8193359, -1.0185547, -1.1679688, -0.21459961, -0.34301758, 2.4257812, -1.0166016, 1.3017578, -1.3535156, -0.46655273, -1.2470703, -2.7382812, 1.71875, 1.8798828, -0.34570312, 4.5078125, 1.9550781, -2.3867188, 0.95996094, 0.14501953, -2.9140625, 0.49609375, 1.3017578, 0.35742188, 0.46923828, 1.8037109, -4.1640625, 0.2763672, 2.96875, -0.76220703, 0.33569336, -0.7939453, -1.7880859, 0.17089844, -2.7929688, -0.014312744, -0.6879883, 1.0029297, -1.7695312, -0.2746582, 1.1650391, -1.2626953, -0.16882324, 2.6816406, -0.39990234, -0.9584961, 2.8476562, -0.09667969, 1.859375, -1.1923828, -0.45141602, -0.29785156, 1.1445312, 3.1875, 1.3066406, 1.6054688, 0.4111328, 0.9472656, -2.7246094, -0.42041016, -0.46435547, 3.5136719, -1.7666016, -1.5595703, 2.1660156, -0.57177734, -0.37939453, -0.74658203, -0.04348755, -1.1396484, 2.8242188, 1.8730469, 0.3725586, 0.3232422, 0.34277344, -1.3837891, -3.7109375, -1.5429688, 1.2636719, 0.4194336, -0.0051956177, 0.1463623, -0.8515625, 1.8632812, 0.7324219, -0.74560547, -2.8046875, -0.88427734, -0.36035156, 0.2310791, 0.2861328, 1.0068359, -1.2285156, 0.8959961, 0.13464355, 0.26635742, 1.1347656, -3.9785156, -2.6328125, 2.1171875, -2.1289062, 0.21044922, 3.0898438, -0.14550781, -0.24304199, 1.0537109, 0.7504883, -2.9746094, 2.9550781, -2.0078125, -0.5761719, 1.5087891, 0.71240234, 0.44018555, 1.0908203, -0.4177246, 1.875, -1.9775391, 1.3095703, -0.22998047, -0.6245117, 0.453125, 0.06378174, -1.0410156, -2.1113281, 0.8251953, -0.8359375, 0.5991211, 1.9023438, -1.2236328, -2.2675781, -0.7861328, -3.8476562, -0.36108398, -1.3261719, -0.24633789, -2.0957031, 1.7734375, 1.7675781, 0.41992188, -0.2614746, 1.0976562, 1.1923828, -0.36621094, 2.0839844, -1.6748047, 2.0839844, 2.5761719, -2.3828125, -0.5546875, -1.8798828, 0.6513672, 2.4179688, 0.8183594, -0.66503906, -0.37963867, -0.8339844, 0.74121094, 1.421875, -0.9243164, 2.671875, -0.39868164, -1.0742188, 1.2089844, 3.625, 0.9902344, 2.3671875, 0.9609375, 1.9804688, 0.015838623, 4.0078125, -0.085998535, -2.1171875, 2.8359375, -2.359375, 1.546875, 0.40844727, -1.1044922, 0.0018072128, -0.49438477, -1.8417969, -1.5810547, -1.1357422, -3.2617188, 1.109375, 0.046813965, -1.8212891, 0.43139648, 2.9453125, 0.60595703, 1.6474609, 1.5527344, 1.7597656, 0.9707031, 0.6123047, 0.64404297, 0.18347168, 2.2421875, -2.3125, 2.0625, 0.96875, 0.4428711, -0.86035156, 3.1171875, 1.1484375, 2.1542969, -0.012336731, 1.1992188, 3.1699219, 1.1123047, 1.2402344, 0.6274414, 1.4755859, 0.8071289, -0.099487305, 0.5786133, 1.9462891, 1.2773438, -0.31347656, 0.36010742, 2.1171875, -0.9194336, -2.7949219, -0.5600586, 0.22509766, 0.9477539, -0.890625, 1.15625, 0.56933594, 0.54345703, -1.5830078, -0.37402344, -3.0683594, -0.6220703, -0.44702148, -0.54541016, 1.7714844, -0.50683594, 0.77685547, -0.6928711, -0.41430664, 1.3300781, -3.6835938, -0.30639648, 0.95410156, -1.3242188, 0.9375, -0.04437256, 0.9238281, 0.37548828, 0.107910156, 0.17700195, 3.1796875, 1.8173828, -0.8779297, -2.1015625, 0.48999023, -0.13537598, 3.125, -0.8364258, 1.7109375, 1.828125, 0.7792969, -3.3183594, -4.7070312, 2.8027344, -0.18981934, 1.2128906, 2.9082031, -2.2617188, 2.8515625, -0.71728516, 0.9707031, -1.6982422, 0.6621094, 0.85058594, -2.3183594, -0.48168945, 1.0742188, 1.4140625, 2.0019531, 1.8105469, 0.049072266, 2.5859375, -1.3369141, 2.1894531, 0.5498047, 0.9008789, 2.2128906, 1.0185547, -1.1835938, 1.1210938, 0.20397949, -0.94970703, -0.60595703, 3.0722656, 2.5703125, 0.24438477, 0.7480469, 0.16845703, -0.7988281, -1.7607422, -0.3125, -0.7963867, -2.6308594, 0.16748047, 0.044311523, 0.50146484, -1.2070312, -0.4020996, 2.1386719, 0.5024414, -1.1152344, -0.5834961, 2.4824219, 0.41674805, 3.1113281, 0.7836914, -1.0761719, -0.80322266, 0.05545044, 0.7753906, 1.5703125, -1.9101562, -1.0332031, 0.6308594, 1.6904297, -0.3930664, 0.6347656, -0.6899414, -1.4638672, -0.2783203, 2.2226562, -0.95751953, -1.7617188, 1.578125, -0.32714844, -0.9238281, 1.5693359, -1.4863281, -0.72314453, -1.9707031, -0.29516602, -0.39160156, -0.3894043, -1.3925781, -0.3647461, 3.2890625, 0.44628906, 1.2548828, -1.7060547, -4.8828125, -1.3427734, -1.1630859, 2.8085938, -1.7734375, -0.9975586, 0.29370117, 0.23608398, 1.9863281, -1.8417969, -2.2617188, -0.45263672, -0.8598633, 0.65185547, 0.3894043, 1.0898438, 0.18273926, 0.08477783, 0.5004883, 1.7949219, 0.23828125, -0.5288086, 1.4023438, 2.0234375, 0.90527344, -2.3730469, 1.3701172, -1.9179688, 0.60253906, -0.9902344, 0.44702148, 1.5429688, 0.6308594, -0.24169922, -0.44580078, -2.1972656]}, "B01I32H5QI": {"id": "B01I32H5QI", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch\nDescription: This product is a 12\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.\nFeatures: Fire Pit Burner Ring, Diameter 12-inch\nRing Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "embedding": [-0.6142578, 0.4260254, -1.8232422, 0.7182617, -0.6147461, 0.067871094, 2.390625, -2.015625, -0.37695312, 0.91308594, -1.4384766, -0.7680664, 0.88623047, -3.4960938, -0.55322266, 0.8671875, -2.0429688, -0.4638672, 1.5673828, 1.3427734, 1.5976562, 1.1035156, 2.4335938, 0.24414062, 0.9995117, -0.4572754, 3.2929688, -2.1777344, -0.95166016, -1.1367188, 0.91796875, 0.5107422, 1.2666016, 0.5957031, -4.0625, -0.9291992, -0.34594727, -0.105285645, -2.6484375, -0.2705078, -2.375, -0.4111328, 1.3867188, 0.61035156, -2.890625, 0.9921875, 0.6567383, -1.5361328, -1.4384766, 0.98828125, 1.6035156, 1.5332031, -0.6279297, 0.48510742, -0.85595703, 1.4003906, -0.6279297, -2.2539062, 2.1699219, -1.03125, 1.7783203, 0.8823242, -2.4082031, 0.6010742, -0.47924805, 2.3945312, 0.31054688, 0.56347656, 0.06958008, -0.09033203, 2.0253906, -0.49438477, 1.3632812, -0.011306763, 2.8984375, -1.0458984, -2.5546875, 1.7041016, 1.9404297, -2.078125, -0.1862793, 2.7265625, 0.7050781, -0.36938477, -0.035888672, -1.1552734, -1.5361328, 0.15185547, 2.3945312, 1.0126953, 0.10040283, 2.4179688, -1.5615234, -3.4628906, 1.5400391, -0.6850586, 1.7578125, -0.2866211, -0.37939453, 0.17651367, 0.48388672, 0.95458984, -0.65478516, 0.8222656, -1.5644531, 0.04852295, 1.9101562, 1.3408203, -0.48217773, 0.9433594, -1.4902344, 1.78125, 3.5683594, -0.28076172, 0.24584961, 0.57958984, -0.7480469, 1.8251953, 3, -1.9404297, 4.1875, 0.93408203, 0.98291016, -1.3496094, -0.028457642, 0.2927246, -2.6679688, -0.07763672, 2.3144531, -1.7314453, 0.9223633, -1.7587891, 1.6875, -0.3334961, -1.8359375, -0.15612793, -0.5708008, -0.20349121, -2.0585938, -0.71484375, -3.4785156, 2.2539062, 0.15185547, -2.6699219, -3.9921875, 0.65966797, -1.0712891, 2.9667969, 0.21936035, -2.703125, 1.6435547, -0.8071289, 0.46166992, -1.4560547, 1.9199219, 0.6635742, -0.5283203, -1.859375, 3.1679688, -0.32885742, 0.25024414, -1.2568359, -0.06915283, 2.7597656, -2.3535156, -1.3486328, 0.81396484, 1.0390625, -1.9033203, 1.8681641, 1.9003906, -1.3085938, -1.8955078, -0.63427734, 0.7504883, -1.9130859, -1.6601562, 2.6816406, 1.5566406, 1.2353516, -2.3574219, -2.4316406, 3.1269531, 0.4934082, 0.036895752, -0.32055664, 0.69433594, -1.0400391, 0.80908203, 0.51904297, -1.9775391, -0.04623413, -0.28881836, -1.1230469, -0.8754883, -2.2753906, -1.2773438, -2.25, 1.203125, 2.1933594, -2.8066406, 0.41552734, 0.4411621, 0.42114258, -2.3066406, 0.09777832, 1.1337891, 0.9501953, 3.5625, 0.96533203, -0.19665527, -1.2509766, 2.4882812, 0.44726562, 1.4521484, -2.1660156, 1.59375, 2.0507812, 1.3027344, 3.2949219, 1.8027344, -0.5776367, 1.3613281, 1.4160156, 0.90283203, 1.7392578, 1.0175781, -0.13537598, -2.3007812, 0.45874023, 3.2636719, 0.6333008, -1.6074219, 1.9023438, -0.9482422, 2.5058594, -0.80322266, -1.6210938, 1.7021484, -2.1992188, -0.8774414, -2.8847656, -0.08050537, -0.6689453, -0.61865234, 0.28759766, -0.1149292, 0.0079193115, 1.0966797, -0.8730469, 0.12695312, 0.50146484, 2.9257812, 0.70214844, 0.67578125, -2.0078125, -0.31445312, 0.7451172, -0.40600586, -2.1894531, 1.8847656, 0.9326172, -1.4033203, 0.58740234, 0.7998047, -1.5703125, 1.0849609, -0.3100586, -2.5, 0.062286377, -2.0585938, 0.43359375, 0.88720703, 0.3154297, 2.3613281, 0.6557617, -1.1689453, 3.65625, 1.1738281, 0.9267578, 0.0055351257, 0.15441895, 2.9179688, -2.3847656, 0.75146484, 2.6582031, 2.5253906, -0.8925781, 0.031188965, 0.8955078, 4.578125, -1.3808594, -2.296875, 1.5693359, -1.0380859, 0.8803711, -1.0712891, 1.7080078, -0.13012695, -1.3310547, -0.16394043, 1.9775391, 0.44458008, 2.2480469, -0.7216797, -0.6098633, 2.2851562, -3.3613281, 1.4501953, -1.7441406, -0.049713135, -0.5522461, -1.5537109, 1.046875, -1.3925781, -2.6621094, 2.6894531, -2.8007812, 1.5097656, 0.8256836, 0.6489258, 1.9335938, 0.28588867, -1.2558594, -0.042175293, 1.6738281, -2.8398438, 2.34375, 0.6557617, 0.6933594, -2.4648438, -0.87109375, 0.6826172, -1.2011719, -1.078125, -1.8046875, -1.3652344, -1.9335938, 0.13464355, -3.2617188, -0.25390625, 2.09375, -1.8759766, 0.4807129, -1.1191406, -2.3691406, -1.1083984, -0.8745117, -2.4082031, -1.3984375, 1.2001953, 3.4453125, -2.2050781, -1.46875, -0.57666016, -0.11621094, 1.4296875, -0.64208984, -0.5073242, -1.1347656, -0.6020508, 1.0029297, -0.92333984, -1.1181641, 1.1298828, -3.3535156, 0.953125, -2.7246094, 2.1757812, 0.043914795, 0.2841797, -0.7128906, 0.96191406, -1.1318359, -1.3037109, 0.048217773, -0.35546875, 5.8242188, -1.3388672, 1.9267578, -1.5068359, -1.6611328, -1.5068359, -0.54785156, -2.0820312, 1.2724609, 0.8574219, -2.1660156, -3.5214844, -2.5, 0.24902344, -1.4863281, -0.74316406, -1.6982422, 0.70166016, -1.6611328, 0.19714355, 0.15527344, 0.43481445, 0.019607544, -0.1574707, -0.40966797, -0.92626953, -1.859375, -0.44702148, 0.17871094, -1.5546875, -0.5097656, -0.2800293, -1.5634766, 0.0657959, 1.5732422, -0.40112305, 0.9345703, 1.2861328, -2.6933594, 1.9560547, 2.4902344, -1.0341797, 1.7890625, -3.4609375, 0.16357422, -1.9804688, 0.37109375, 4.0664062, 1.421875, 0.29052734, -0.22241211, -0.94091797, 1.5498047, 0.022659302, -1.7744141, -0.4724121, 0.2479248, 4.609375, -2.9375, -1.625, 0.66748047, 1.9257812, -4.5546875, 0.6430664, 2.40625, 0.90722656, -0.023025513, 1.0058594, 0.57958984, -0.85058594, -1.3984375, -0.2076416, 1.3642578, 2.1601562, 0.3869629, -1.6542969, 1.4228516, 0.7192383, -0.171875, 2.5585938, -0.52197266, 1.4072266, 3.6835938, 0.8725586, -1.8896484, -0.3581543, -0.16320801, -0.25610352, 0.81591797, 0.96533203, -0.70751953, 1.1738281, -1.3144531, -0.12780762, 2.5859375, -2.5117188, -1.0429688, 1.3613281, -0.3232422, -2.1796875, 0.76123047, 1.3789062, -0.04559326, -2.734375, 0.18078613, -0.22558594, -0.21716309, 2.0371094, 0.69677734, 1.6533203, -2.7539062, 0.6665039, -1.7998047, -1.0029297, 0.21350098, 1.0830078, -0.42138672, -2.7832031, -0.042938232, -0.90478516, -0.9609375, 4.1992188, 0.4104004, -1.6386719, -0.3581543, -2.8652344, 1.1103516, 0.83251953, -1.3798828, 1.1992188, 0.49243164, -1.6582031, -0.54248047, -0.015380859, 1.1826172, -1.5761719, -1.5039062, 0.7553711, -2.7636719, -1.6074219, -0.2475586, -1.0361328, -3.2890625, 3.3632812, -0.031463623, -0.13208008, -1.2490234, 3.6855469, 1.0957031, -0.26342773, 3.1757812, -0.7363281, 0.26220703, -2.3691406, -4.0507812, 0.9345703, -2.5390625, 1.6953125, 0.87939453, 2.2597656, -0.50390625, 1.4755859, -0.5810547, -2.4472656, -1.53125, -0.6791992, 1.2792969, -2.8808594, -3.5722656, 0.38452148, 0.87890625, 0.1484375, -0.037353516, 0.23901367, 0.9614258, 1.3632812, 1.3095703, -1.4082031, 0.20715332, 0.3876953, -1.2978516, -0.49926758, -1.1533203, -0.29614258, 0.8457031, -0.5966797, -1.6298828, 1.2333984, 3.5859375, -0.07635498, 2.5996094, 2.0546875, 2.6425781, 0.47460938, 0.3400879, -0.42773438, 3.3808594, 0.21484375, -1.484375, 0.7109375, 0.80859375, 1.6738281, -1.1455078, 0.37304688, -0.5102539, -0.8769531, 3.2285156, -2.1152344, 0.49072266, 0.70214844, -0.064697266, -1.5566406, 0.55322266, -0.20080566, -1.6621094, 0.7705078, 0.5776367, -0.6044922, -2.4667969, 0.35498047, -3.2597656, 1.4257812, 0.7260742, -0.23242188, -3.7792969, 2.9472656, 2.5, 0.72802734, 4.8164062, -1.7158203, -0.5307617, -1, -0.25341797, -0.17004395, -0.5185547, -0.026367188, 0.19506836, 2.8203125, -0.27319336, -0.3491211, 0.15722656, 2.7988281, -0.45288086, -0.82714844, -0.95996094, 0.7548828, -1.4667969, 0.93310547, -0.26611328, -0.6982422, 0.8100586, 0.2775879, -0.32617188, 0.8125, 0.78515625, -1.6210938, 0.06964111, -0.21179199, 0.96777344, 1.1083984, 1.1884766, 1.515625, 0.95751953, 4.1992188, 0.9038086, 1.7412109, 0.41674805, 0.5810547, -0.7504883, 0.034484863, -3.0859375, -0.07873535, 0.3935547, 2.5878906, -0.5263672, 2.84375, 0.4506836, -2.4492188, 2.0175781, 0.038482666, -4.5390625, -1.2822266, -0.22998047, -3.1679688, 1.71875, 0.8208008, -1.1044922, -1.0986328, 1.8564453, -0.45043945, 2.7890625, -0.6269531, -1.5136719, -0.35498047, -0.4243164, -1.0976562, -2.1523438, -0.17541504, 0.9165039, -0.37695312, 1.0849609, -0.5732422, 1.7929688, -0.40698242, -0.15966797, -1.6347656, -0.6699219, -1.1083984, -1.5136719, -1.6875, -0.40942383, -0.36987305, 1.3916016, 0.22827148, -0.41430664, 1.4238281, -0.22521973, 2.0820312, -1.8984375, -2.4160156, -0.68896484, 2.4746094, -0.4453125, 0.19812012, 2.2285156, -0.36328125, 0.6513672, -0.3857422, -0.26464844, -1.5332031, 1.6376953, -0.7836914, 0.3137207, -0.33276367, 0.81689453, -1.9658203, -5.2929688, -2.0644531, 0.45874023, -0.10241699, 1.1591797, -1.3310547, 1.0068359, -0.0018854141, -0.9711914, -0.6591797, 0.15527344, 1.4941406, -0.20080566, 0.75390625, -1.9638672, 0.29516602, 1.3378906, -0.96972656, -0.66308594, -0.60791016, -0.8232422, -2.5253906, -0.5722656, 2.6777344, -2.7929688, 0.9277344, 1.7998047, 0.00015604496, 0.1697998, 3.6503906, 0.5576172, -1.0683594, 0.38085938, -3.6972656, -0.7807617, 0.3076172, -1.8583984, -1.7509766, 1.4160156, -1.6835938, 1.1298828, 0.98095703, -2.7382812, -2.3476562, 1.6777344, 0.6484375, 0.07891846, -0.76708984, -1.5332031, 1.3076172, 1.7880859, 0.41601562, 1.0458984, -2.0996094, -1.0908203, -2.1738281, -0.7246094, 0.68408203, -0.88964844, 0.5292969, -0.054504395, 0.39086914, 1.171875, -0.89208984, 0.13989258, 1.5664062, -1.1201172, -0.04156494, 2.3203125, -0.32983398, 4.0234375, -0.4230957, -2.1660156, -1.9599609, -1.9033203, 1.0439453, 0.86621094, -2.0761719, 0.09075928, -0.51123047, 0.43652344, 0.21691895, 0.97998047, 1.421875, 1.1953125, 1.7998047, -1.9794922, 0.95166016, 1.171875, 0.068603516, 1.8925781, 0.60058594, 0.36743164, -1.1445312, 1.1162109, 2.1191406, -2.8808594, 0.44384766, -1.7109375, -0.18701172, 0.2980957, -1.3291016, -2.2070312, -2.484375, -1.5664062, -0.23486328, -2.015625, -2.7675781, 0.8730469, 1.7246094, 0.74853516, 0.8955078, 1.8457031, -1.2509766, 2.1425781, 1.4160156, 0.89404297, -1.7119141, -2.5117188, -0.6977539, 0.90625, 2.7421875, -3.0585938, -1.1582031, -0.328125, -0.48095703, -0.2861328, 0.6044922, 0.74853516, 1.7480469, -1.0292969, 2.0878906, 1.9863281, 2.5253906, 3.5292969, -0.32836914, 1.2021484, 1.6337891, 0.073791504, -0.57958984, -0.29052734, 0.80322266, -0.35766602, -0.8222656, -0.28808594, -0.86035156, -2.8652344, -0.69873047, -0.57666016, 0.11932373, -3.1601562, 2.203125, -0.80566406, -0.98339844, -0.7583008, 1.4267578, -0.42211914, -0.8203125, -2.2480469, 0.39916992, 2.2265625, 0.58935547, -0.3232422, 0.73291016, 0.72021484, -0.6171875, -3.859375, 1.3359375, 0.1809082, -3.9140625, 0.49658203, 3.2558594, 0.23669434, 1.8427734, 1.3935547, 2.5625, 0.16088867, 0.39331055, -0.12915039, 1.1074219, 0.18371582, 1.421875, 2.6660156, -0.48242188, -1.3916016, -0.5390625, -0.028060913, -3.9179688, -4.5, 3.3222656, 0.0524292, 0.74365234, 0.61572266, -0.058654785, 1.5039062, -0.8305664, 0.77734375, -1.6875, -1.109375, 1.1181641, -1.0625, -0.23754883, 1.5566406, 0.22302246, 2.0351562, 1.2744141, -1.1787109, 0.5708008, 1.921875, 0.26098633, 2.7539062, -0.13305664, -0.56884766, 1.3408203, -1.7304688, 4.6132812, 2.2832031, 1.0322266, -0.98876953, 2.609375, 1.3095703, 1.7441406, 1.0488281, -0.9116211, 1.0292969, -1.5761719, -0.55615234, 0.2697754, -0.77978516, -2.5097656, -0.96533203, -0.95996094, 0.61621094, -1.1083984, 1.5410156, 1.9560547, -0.49853516, 0.87597656, 2.4511719, -2.4882812, 0.21130371, 0.7753906, 0.051727295, -2.2695312, 0.47875977, 2.3925781, 0.34960938, -2.3789062, 0.06500244, 3.0957031, -0.07635498, -1.7548828, -0.75878906, -0.63183594, 0.16784668, 0.26098633, 1.8417969, -0.6923828, -0.75634766, 2.6054688, 0.09399414, -2.703125, 1.6308594, -0.06555176, 0.49829102, -0.19665527, -2.1289062, -1.375, -0.5229492, -1.359375, 0.82714844, 3.5761719, -0.5673828, 0.31469727, 1.5976562, -3.5351562, -1.3300781, -0.13684082, 1.7001953, 0.6455078, -1.3515625, 0.3317871, -1.5878906, 3.8261719, -2.796875, 1.3085938, 1.1601562, -0.36499023, 1.0576172, -0.5908203, 2.9375, 0.95654297, 2.5214844, 0.054748535, 3.9335938, 2.8710938, -1.3662109, 0.9082031, 0.6401367, -0.5029297, -2.1386719, 0.29711914, 0.053253174, 0.09814453, -0.2578125, -0.49682617, -1.0273438, -0.67285156, -0.73779297, -3.3417969, -0.9277344]}, "B07ZQBMV2Y": {"id": "B07ZQBMV2Y", "original": "Brand: Mont Alpi\nName: Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV\nDescription: Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...\nFeatures: All components are constucted of 304 stainless steel for durability and longevity\nLarge storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank\nHeight adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans\nFaux-granite counter tops for prep and storage space while looking stylish\nIncludes built-in sink and outdoor refrigerator for added functionality and entertainment value\n", "embedding": [-0.2939453, 0.18054199, 2.1191406, -0.56591797, 2.8300781, 1.7753906, -0.10076904, -1.3925781, -1.3115234, 1.8310547, -0.3034668, -0.50341797, -1.7539062, -0.39160156, 0.30078125, 0.9892578, -0.6801758, 0.087890625, 1.7021484, -0.10638428, 1.6533203, 1.9960938, 1.0126953, 0.46240234, 2.3730469, 1.6591797, 4.4765625, -2.3710938, 1.53125, -1.4628906, 2.1347656, 0.5654297, -1.4023438, 1.3427734, -2.9335938, -0.92822266, -0.6020508, 0.3486328, -1.9257812, 0.52197266, 1.4091797, -1.3564453, 0.36523438, 0.20446777, -3.9472656, -1.2519531, -0.41015625, 0.5683594, -1.6367188, -1.3066406, 1.2041016, 1.2089844, -0.8305664, 0.022155762, -1.7441406, 0.03050232, 1.2167969, -2.1367188, 1.8349609, 0.67871094, -0.34204102, 2.0449219, -1.8535156, -0.3269043, -1.9628906, -2.2636719, -1.0488281, -0.4645996, 0.77978516, -0.40454102, 0.8808594, 1.0400391, -1.6337891, 0.39697266, 0.39672852, -2.140625, -1.7089844, 1.6240234, 1.8623047, -0.45288086, -2.2050781, 1.7695312, 1.2089844, -0.6801758, 1.6953125, 1.2871094, -2.3027344, -0.01184082, 0.13842773, -0.20349121, -2.0683594, 0.7548828, -2.125, -3.703125, 1.2060547, -3.7792969, 0.22045898, 1.8671875, -1.3222656, 1.7832031, -0.20581055, 0.92041016, -0.7211914, -1.1601562, 0.5751953, -1.1953125, 2.3769531, -1.1337891, -3.0117188, -0.1116333, -2.9414062, -0.28295898, 1.0751953, -0.23583984, 2.9960938, 0.2919922, 0.84472656, 1.5703125, 2.2128906, 0.46728516, 1.4599609, 0.18310547, -0.3659668, -0.30078125, -0.953125, 0.3125, -1.3818359, 0.6191406, 4.3398438, -1.5185547, -0.4885254, -1.1884766, 1.5693359, -0.23168945, -2.3886719, -3.3671875, -1.0078125, -1.1064453, -3.9746094, -1.4414062, -1.4150391, 1.5810547, 2.3125, 1.0732422, -2.8691406, -1.0166016, -0.14147949, 0.115600586, 1.9072266, -1.6279297, 1.5185547, -3.1933594, 1.9111328, -0.77001953, 0.7260742, -2.1523438, -0.37475586, -1.3945312, 2.7832031, 0.84472656, 0.15893555, -2.7226562, -0.39770508, 0.7001953, -0.6298828, -2.6777344, -0.5678711, 3.0839844, 0.2355957, 1.5185547, -1.6367188, -2.3203125, 0.96728516, 0.6069336, 0.06323242, -0.89208984, -0.7705078, 2.4101562, 0.8652344, 0.4873047, -1.9960938, -1.6367188, 0.7504883, 1.1748047, 1.2099609, -0.9370117, -0.1640625, 0.053588867, -0.94628906, -1.5820312, 0.8598633, 0.21533203, -0.6616211, 0.5966797, -1.7041016, -1.9521484, -2.4648438, -0.28515625, 1.4443359, 0.07336426, 0.39331055, -0.32226562, -1.46875, 0.81689453, -1.4052734, -3.5800781, -2.265625, -0.8935547, 0.82910156, 3.2011719, 2.9277344, -0.6484375, 0.49291992, -2.1621094, 1.0244141, -0.5410156, 2.6210938, -0.8330078, 0.60009766, 1.3945312, -0.30932617, 1.3173828, 0.05593872, 4.265625, 1.796875, 2.9550781, 0.26660156, 1.6269531, -1.8613281, 1.2050781, 2.9257812, -0.88671875, 0.20031738, 0.36376953, 1.4492188, 2.8945312, 1.3925781, -2.1914062, -0.04272461, -1.0097656, -0.3071289, -2.5585938, 0.2548828, -0.3173828, -0.6870117, 2.3847656, -2.6621094, 1.2763672, 2.6523438, 1.1054688, -2.4257812, -0.49975586, 1.6835938, -0.83691406, 0.6279297, 1.0556641, -0.44555664, 0.6772461, -1.5625, -2.3085938, 0.60253906, -0.6894531, 0.09777832, 0.3449707, 0.053131104, -1.9248047, 1.6279297, 0.5961914, -3.7675781, -1.4453125, 1.109375, -1.3095703, 2.2617188, 0.2376709, 0.42651367, -0.28149414, -0.31689453, 0.6645508, 0.09576416, 0.62158203, 0.8959961, 0.5361328, 2.4277344, -2.375, -0.9277344, -0.039489746, -0.17346191, -0.81103516, 1.3828125, 1.5898438, 5.3515625, -1.5654297, -4.3945312, 1.9677734, -1.4150391, 0.76464844, 0.79296875, -1.6630859, 0.7060547, -0.9501953, 1.1708984, -1.0771484, -0.53466797, 1.7011719, -1.8525391, -1.1953125, 0.019729614, -1.0302734, 0.5917969, -0.48242188, -0.059051514, 0.5517578, -0.77734375, 1.0263672, 0.30371094, -2.0078125, 1.7441406, -2.5742188, 2.234375, 0.9921875, 0.8691406, 1.7636719, -2.0273438, -0.65478516, -0.28295898, -0.30688477, -0.8100586, 0.13305664, 0.9589844, -1.3935547, 0.52197266, -0.15197754, 1.9257812, -3.8339844, -1.6455078, -0.72509766, -3.0507812, -0.8178711, 0.46728516, -0.8930664, -0.5878906, 0.4716797, -2.9316406, -0.68359375, -1.6337891, -3.0117188, -0.9995117, -1.0751953, 1.8203125, 2.1425781, 0.49316406, -1.4951172, 0.86328125, -6.3320312, 0.6538086, -1.5292969, -0.50634766, 0.66845703, 0.3076172, 0.65722656, -3.2675781, -0.44995117, 0.18273926, -0.09338379, 0.1796875, -0.005317688, 0.26757812, -3.4472656, 0.9003906, -3.1425781, 2.1601562, -2.0800781, 1.9355469, -1.7578125, -1.3798828, -0.08270264, -1.6679688, 4.96875, 0.49243164, -0.38842773, -0.46142578, -0.07574463, 0.8979492, -0.67822266, -0.8833008, -1.1279297, 1.2978516, -1.8701172, -2.8125, -1.7939453, 1.0996094, -1.1679688, -1.4453125, -0.66552734, 0.96728516, -3.0097656, 1.0322266, -2.0839844, -2.3476562, 0.25219727, -0.8178711, -1.5722656, 0.64746094, -2.8105469, -0.06713867, -0.03894043, 0.19030762, -0.5214844, 3.015625, -0.77978516, 2.0214844, -0.035095215, 0.5810547, -1.4433594, -0.39746094, -3.046875, 1.2119141, 0.35083008, -2.5820312, 0.7182617, -0.5283203, -1.0566406, -3.3457031, -1.8330078, 1.7089844, 0.57128906, 1.0087891, -0.32421875, 2.2832031, 2.2089844, 1.1015625, 0.049987793, 0.6557617, -1.4951172, 3.2949219, -2.0546875, -1.9560547, 0.9536133, 3.6875, -0.9394531, -1.5898438, 1.9941406, 2.1523438, 2.8574219, 0.81152344, 1.7138672, 0.86083984, -0.7573242, 0.6225586, 0.28686523, 0.6875, -0.7939453, -2.3496094, 0.2626953, 0.63720703, -0.11779785, 0.89746094, 0.7089844, 1.1738281, 0.32006836, 0.7441406, -0.56689453, 1.0253906, -0.37597656, 0.86035156, -0.4567871, 2.9414062, -1.6992188, 0.89453125, -0.07373047, 1.5068359, -0.6816406, -2.5390625, 1.7890625, 1.9794922, 0.46801758, 0.23022461, -0.94384766, 0.88134766, 1.9824219, -0.5317383, 0.98583984, -1.1279297, -0.6411133, 0.68408203, 0.4597168, -1.7949219, -1.2900391, 2.0644531, 0.13183594, -1.8535156, -0.8779297, 2.0546875, -1.6650391, -1.9707031, -0.49609375, 0.31176758, 0.7763672, 1.7109375, -0.29541016, 0.25146484, 1.0693359, -2.2070312, 1.1914062, -0.28857422, 0.5258789, 1.7236328, -0.3017578, 1.2402344, 0.14477539, 0.34155273, 2.28125, 1.0068359, -3.0957031, -0.35717773, -2.6035156, 0.75, -1.0859375, 0.08795166, -0.71972656, 3.0058594, 1.7421875, 2.8183594, -1.9697266, 3.7832031, 0.1706543, -1.8359375, 1.8964844, -2.2421875, 0.25219727, -4.2265625, -3.4921875, 1.5498047, -1.3945312, -0.24829102, 1.1035156, 0.40478516, -0.32495117, 0.8256836, -0.5517578, -3.2265625, -1.5341797, 0.06616211, 0.88183594, 0.117492676, -2, 2.6503906, 0.30249023, -3.4453125, -1.1279297, -0.40722656, 0.6879883, 2.3066406, 0.69970703, -1.5908203, 2.2226562, -0.75, -0.005744934, -0.6225586, -0.3864746, 1.3867188, -1.8681641, -0.012374878, -1.2011719, 2.3691406, -0.44458008, -0.4074707, 0.5078125, 0.27026367, 0.20703125, -0.4951172, -1.9707031, 0.012954712, 3.7949219, -0.5263672, -1.0576172, -2.3710938, 1.4667969, 1.5791016, 0.42041016, -0.06518555, -0.17663574, -3.4746094, -0.8598633, 1.3398438, 0.36547852, 2.6386719, -0.6777344, -2.4863281, -1.6533203, 2.5878906, -2.4707031, -1.4169922, 0.27490234, -0.51953125, -0.23254395, 0.41357422, -1.4560547, 1.2519531, -0.8598633, -1.9990234, -1.8398438, 0.9663086, 2.8066406, 0.6269531, 1.5830078, -1.6347656, -0.6948242, 2.9824219, 0.11102295, 0.52783203, 1.1240234, -1.890625, 0.35302734, 1.2099609, 0.9682617, -1.4873047, -0.27075195, 1.1445312, -1.0644531, -0.43408203, -0.6455078, -0.84716797, -1.1503906, -0.70703125, 1.3164062, 0.3828125, 2.7480469, -1.2070312, 0.64404297, -0.4716797, 0.42822266, -0.31298828, 0.29101562, -2.0039062, 2.4492188, 1.0263672, 2.1425781, 0.65478516, -1.2519531, -0.41992188, -0.6513672, 2.7910156, -0.9824219, 0.44677734, 0.40039062, -0.1282959, 0.81396484, -1.7548828, 3.3125, 2.9960938, 0.8955078, 2.1445312, 0.7763672, -3.9199219, 1.8632812, -1.578125, -2.1035156, 0.10858154, -0.20056152, -0.28881836, -0.609375, 0.53222656, -2.5839844, 0.26489258, 3.0234375, -1.5058594, 0.016189575, 1.2666016, -0.9086914, 0.49804688, -3.3242188, -1.5615234, 0.53515625, 1.3076172, -2.3769531, -2.5878906, -1.3730469, -0.1352539, 0.8417969, 1.3662109, -1.4257812, -1.4482422, 3.6269531, 1.5859375, 1.3339844, -0.5834961, -1.1767578, -1.8154297, 0.101623535, 4.5507812, 0.5708008, 0.25952148, 1.0732422, 2.9277344, -1.1474609, -0.2479248, -2.4199219, 2.8417969, -2.3027344, -1.5791016, 2.1816406, -1.9482422, -0.20300293, -0.85791016, 1.5019531, -1.4960938, 2.90625, 2.4199219, 0.0793457, -0.071899414, 0.8408203, -1.96875, -5, -2.1601562, -0.42651367, 0.24719238, -0.032348633, 1.5830078, -1.3378906, 0.30273438, -0.6699219, 1.0292969, -0.9682617, -0.5317383, -0.98876953, -1.2724609, -0.3251953, -0.33276367, -0.56396484, -0.76416016, 1.0185547, -0.8178711, 0.051330566, -4.2617188, -0.4025879, 0.39111328, 0.109802246, -0.69140625, 1.6738281, -1.4238281, 0.93408203, -0.07556152, 1.0195312, -3.1484375, 2.171875, -2.9980469, 0.40771484, 1.7070312, 1.109375, 1.359375, 0.6694336, -1.2988281, 0.8823242, -1.6201172, 0.7861328, -0.052886963, -1.5927734, 0.44458008, 0.9291992, 1.1435547, -0.3305664, -0.08459473, 0.046875, 1.2353516, 0.7529297, -0.4152832, 0.05065918, -2.0566406, -2.6660156, -0.30810547, -2.6621094, -0.28320312, -1.8154297, 0.68115234, 0.96777344, 0.08343506, 0.17871094, 1.5195312, 0.38330078, -0.51708984, 1.8623047, -0.1965332, 3.1386719, 0.7138672, -2.21875, -1.2041016, -3.0957031, -0.02545166, 0.7314453, 1.8388672, 0.14831543, -0.28515625, -0.95947266, 0.4501953, 0.8027344, 1.8935547, 2.4511719, 0.7446289, -3.6953125, 1.4550781, 3.390625, -0.33081055, 2.03125, 1.9472656, 1.6660156, 0.04849243, 2.859375, -1.9736328, -2.4570312, 3.9960938, -1.5996094, 1.2509766, -0.61621094, -3.1035156, 0.34399414, 0.09716797, -0.46289062, -2.1230469, 0.91796875, -1.0126953, 2.7832031, 1.7363281, -0.80615234, 0.29492188, 1.3242188, 1.9726562, 2.5273438, 1.3730469, 2.03125, 0.22814941, -0.2467041, -0.65478516, 0.40625, 1.0849609, 0.44360352, 0.20581055, 2.2792969, 0.76708984, -1.5722656, 5.6679688, 1.6269531, 0.19677734, -0.84814453, 1.0253906, 1.3203125, 2.3164062, 4.359375, 0.46655273, 2.2519531, 1.8603516, 0.9863281, -0.08685303, 1.5380859, 3.7949219, 0.28222656, -0.8613281, 1.2753906, -0.10595703, -2.6621094, -0.69628906, 0.11798096, 1.0166016, -0.0039138794, 2.9726562, -0.80566406, -1.4580078, -1.9726562, -1.6630859, -1.1601562, 0.28295898, -1.4130859, 1.0097656, 3.03125, -0.027664185, 0.30786133, -0.38867188, -3.4179688, 1.1875, -3.4003906, 0.89990234, 0.7578125, -0.46362305, 0.041107178, 2.4101562, 2.9257812, 0.7421875, 0.92285156, 1.4804688, 1.7353516, 3.3574219, 0.37524414, -0.8076172, 2.3691406, -0.66503906, 1.4648438, -1.8945312, -0.98779297, 0.9042969, -0.72216797, -1.9921875, -3.7988281, 2.8964844, 1.0419922, 0.74560547, 1.0039062, -2.6367188, 0.96777344, -0.8183594, 1.7548828, -3.0507812, 2.5703125, -0.63671875, -2.5371094, -1.7431641, 1.0097656, 1.7666016, 0.5151367, 0.28393555, -1.8154297, 2.6914062, 0.30151367, -0.8364258, 2.3710938, 1.5341797, 0.65478516, -0.27441406, -1.5996094, 4.3203125, 3.5605469, 0.6870117, -2.3261719, 2.0449219, 1.4951172, -0.8618164, 0.23828125, -1.3173828, 0.4099121, 1.9462891, -0.19091797, -1.0263672, -1.8613281, -0.4658203, 0.4416504, 0.64697266, -0.45141602, -0.7446289, 2.0195312, 0.8300781, -1.171875, 1.0693359, -1.1054688, -0.23254395, 1.7919922, -1.078125, -1.5986328, -0.0385437, -0.13000488, 1.3300781, 1.3017578, -1.8388672, -0.7504883, -0.3010254, 1.6396484, -0.9091797, 0.60302734, -1.5761719, 0.7314453, -0.30541992, 0.13146973, 0.7680664, -2.3027344, 2.4316406, 0.8959961, 0.56152344, 3.8515625, -1.6025391, -1.4951172, -2.2910156, -1.0048828, -0.08135986, -1.1191406, 0.4729004, 1.7441406, 5.0390625, 2.2109375, 0.9189453, -1.5820312, -2.5058594, 1.4287109, -0.7885742, 1.7138672, -1.3164062, 0.009048462, -0.38256836, -0.34228516, 3.2929688, -0.6748047, -2.0878906, -0.6972656, -0.68896484, 1.4130859, -0.20507812, 1.7646484, 0.5751953, 0.30273438, 0.21289062, 2.0449219, 1.3662109, -0.8046875, 1.6816406, 3.5351562, 0.3466797, -3.3515625, 0.5864258, -1.4482422, 1.2109375, 0.71435547, -0.15100098, -0.203125, -0.7080078, 0.5546875, -2.4121094, -1.9169922]}, "B07VLJZVB2": {"id": "B07VLJZVB2", "original": "Brand: Blaze Grills\nName: BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32\" Combination Door/Drawer Package Deal\nDescription: BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32\" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.\nFeatures: Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375\" W x 21.25\" D x 8.50\" H\nBest of Backyard Series USA MADE 304 Stainless Steel 32\" Combination Door/Drawer Combo. Cutout: 30.125\"W x 19.125\"H x 21\"D\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures\nFull-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\n", "embedding": [-1.2949219, 1.3837891, 1.5009766, -1.6757812, -0.23132324, -0.8027344, 0.4267578, -0.6982422, 0.35546875, 1.7480469, 0.3791504, -0.91845703, 0.9375, -4.1367188, -1.1748047, 0.9033203, 1.3339844, 0.9238281, 1.2988281, -0.6645508, 1.1289062, 0.8330078, 0.93896484, -0.86572266, 1.3398438, 0.037078857, 3.8457031, -4.46875, 0.4885254, -0.9770508, 1.3681641, 0.5864258, -1.7236328, 1.0615234, -3.5820312, -1.4238281, -0.23535156, 1.3701172, -1.3300781, -1.5888672, -1.2578125, -0.9760742, 2.7363281, 2.2871094, -2.3828125, -0.7915039, -1.0234375, 0.43676758, -0.9536133, -2.0214844, 2.1875, 1.8730469, 1.3349609, 0.9506836, -1.6044922, 1.3369141, 0.41357422, -2.2324219, 1.7011719, 0.097595215, 1.4736328, 0.14294434, -2.3886719, 0.5234375, -2.5859375, -0.25634766, 0.86816406, -0.62939453, 0.22192383, 1.015625, 1.6308594, 0.16125488, -1.8691406, 0.30273438, 0.08557129, -1.0537109, -3.0214844, 1.4521484, 0.8232422, -1.4980469, -0.6923828, 5.2226562, 1.0791016, -2.453125, 0.31884766, 1.3183594, -1.234375, 0.55810547, 1.6748047, 0.32543945, -0.7290039, 1.4101562, 0.52685547, -3.3730469, 1.6796875, -2.1289062, 1.3417969, -0.42773438, 0.23986816, 0.26757812, -0.6796875, 0.7661133, -1.8427734, -0.09484863, -1.3769531, -0.62841797, 1.5166016, 2.0898438, -2.0253906, 0.20141602, -2.1445312, 0.081726074, 3.0429688, 0.6845703, 0.9111328, 0.43847656, 0.48217773, 1.4980469, 1.6230469, 2.9433594, 0.98046875, -1.4775391, -0.7416992, -1.4648438, 1.5253906, -0.18933105, 0.0002772808, 2.3710938, 4.0742188, -1.7197266, -0.46704102, -2.125, 2.8242188, -1.0234375, 0.006996155, -2.0371094, -1.6542969, -0.32250977, -3.2089844, 0.15539551, -1.1503906, 1.3583984, 1.4003906, -0.9526367, -3.546875, -1.0644531, 0.36938477, 1.4824219, -0.05505371, -2.3105469, -0.4921875, -0.89501953, -0.6430664, -1.484375, 1.6875, -1.5126953, -0.8857422, -2.1660156, 3.7246094, 0.4807129, -0.7104492, -1.7128906, -0.13720703, 3.5429688, -1.5507812, -2.3164062, -0.33764648, 1.3515625, 1.0878906, 2.2070312, -1.6171875, -1.5009766, 0.21972656, -0.73095703, 1.2529297, -1.4980469, -1.2509766, 1.4892578, -0.42456055, 0.87158203, -0.66503906, -0.72216797, -0.037841797, -0.2397461, -1.1806641, -2.3007812, 0.6142578, 0.5209961, 0.78759766, -1.7490234, -0.21008301, 1.5351562, -0.35717773, 0.4921875, 0.7495117, 0.6142578, -2.15625, 0.3244629, 1.5253906, 0.121520996, 0.13171387, -1.2626953, 0.6479492, 0.49169922, -1.7353516, -1.6416016, -1.3349609, -1.3359375, 0.7944336, 0.59375, 1.9208984, -0.25317383, 3.3515625, -1.4384766, 0.22595215, -2.1328125, 0.84814453, 1.3154297, 2.7539062, 1.8134766, -0.064697266, -2.0957031, -0.8066406, 4.9804688, 0.3557129, 0.5336914, 1.3242188, -0.9033203, -2.3164062, -1.3144531, 0.7392578, 0.8828125, 0.7392578, 0.6640625, -0.47753906, 2.7832031, 2.0644531, -0.8642578, -0.20483398, 0.8251953, 2.3125, -0.3017578, -1.1337891, -1.6914062, -0.2722168, -0.5, -1.7216797, 2.2148438, 0.7792969, 0.10510254, 0.18286133, -0.34228516, 2.7460938, 1.3857422, -0.86083984, -0.37768555, 0.16186523, 0.86572266, -1.5185547, -2.1933594, 2.5683594, -0.49487305, -0.7661133, -1.3388672, 0.44262695, -0.21606445, 2.1953125, 0.81152344, -2.046875, -1.4326172, 0.37060547, -0.5527344, 2.0820312, -0.15258789, 1.125, 2.4804688, -0.41503906, 1.9707031, 1.3505859, 1.8330078, 1.9072266, 0.73828125, 2.3183594, -2.96875, -0.7163086, -0.21813965, 0.21069336, -1.0087891, -1.5888672, 0.7446289, 4.2773438, 0.19555664, -2.3964844, 4.3867188, -2.4960938, 0.21691895, 1.421875, -1.1308594, 0.1661377, -0.42773438, 2.671875, 0.4309082, -0.15771484, 0.6928711, -1.1542969, -0.21264648, 0.7944336, -1.6230469, -0.6074219, 1.6943359, -0.25976562, 0.49951172, -2.4414062, -0.42895508, -0.33740234, -1.4648438, 3.4394531, -3.0703125, 2.9921875, 0.29760742, 0.8623047, 2.5976562, -0.10211182, -0.9790039, -1.0253906, 0.30444336, -0.72314453, 0.8647461, -1.21875, -1.8994141, -0.8491211, -1.0898438, 1.3095703, -1.4248047, -1.6386719, -2.140625, -2.6054688, -2.9023438, 0.19042969, -2.1328125, -0.05883789, 0.9404297, -2.1054688, 0.93603516, -1.4912109, -3.6738281, -1.2451172, -1.1904297, -1.3837891, 0.1932373, -0.67041016, 0.45581055, -0.5776367, -2.671875, 0.44750977, -1.3330078, 0.20739746, -0.20837402, -0.4880371, -0.12976074, -1.1435547, -1.0117188, -0.7895508, 0.76953125, 1.3564453, -1.4492188, 0.6298828, -3.8984375, -0.71875, -2.0273438, -0.22192383, -1.8027344, 0.86816406, -2.5839844, -2.953125, -1.6054688, -0.8066406, 1.3798828, -0.35327148, 0.88916016, -0.11218262, -0.13549805, 1.2324219, 1.0957031, -1.9501953, -0.2841797, -0.08392334, -1.5595703, -2.5800781, -3.1425781, 0.09991455, -0.26342773, -0.017745972, -2.0644531, 0.69677734, -1.5712891, 1.8330078, -2.9023438, -1.15625, -0.54296875, 0.56640625, -0.88916016, -0.49169922, -1.6474609, -1.6552734, -1.6630859, -1.4931641, -0.43286133, 1.9707031, -0.6977539, 0.5942383, 1.5478516, 0.08917236, -0.05581665, -1.5126953, -4.2460938, 2.1503906, 1.2324219, -4.6601562, 1.7070312, 0.28320312, -1.3066406, -2.8359375, -2.2109375, 3.2382812, 0.82958984, 2.2519531, -0.7519531, -0.88916016, 2.3320312, -0.36816406, 0.81103516, -0.37036133, -0.7089844, 2.5195312, -3.234375, -2.4238281, -1.1494141, 2.5175781, -2.3417969, -1.3261719, 3.53125, 0.64453125, 0.9145508, 2.1601562, 2.6289062, 1.6425781, -0.6542969, 1.0605469, 1.1230469, 0.58447266, 1.0498047, -1.8779297, 0.57910156, 0.1484375, 0.7949219, 3.2558594, 0.8676758, 2.0410156, 3.2460938, 0.96533203, -0.61279297, 0.8491211, 0.14440918, 2.3515625, 0.59765625, 3.2050781, 0.23010254, 0.60546875, -1.4648438, -0.45336914, 0.10949707, -1.2402344, -1.0556641, 2.0097656, 0.54785156, -0.09069824, 1.484375, 1.4960938, 0.75341797, -2.0625, 1.484375, -1.7089844, -1.0322266, 0.6567383, 1.4052734, -0.90625, -2.6953125, 0.92529297, -2.2714844, -1.90625, 0.29370117, 1.2304688, 0.46606445, -1.6660156, 1.6962891, 1.7451172, -0.8286133, 3.2519531, 1.2363281, 1.0654297, -0.081970215, -0.37475586, 2.4980469, -1.0419922, -2.1230469, 0.37353516, -2.0917969, 0.85058594, -0.30908203, 1.7382812, 1.2109375, 0.27001953, 0.30395508, 0.51660156, -1.8222656, -0.04083252, 0.13623047, -2.8339844, -3.0078125, 1.5566406, 0.58691406, 2.3339844, 0.25268555, 2.6269531, 0.3947754, -1.7324219, 2.0976562, -3.0351562, 0.10650635, -1.6611328, -4.8007812, 2.3886719, -0.29858398, -1.2783203, 1.1484375, -0.56152344, 0.085632324, 0.4038086, 0.8041992, -3.4160156, -0.5263672, 0.18762207, -0.77490234, -0.70410156, -1.6044922, 1.359375, 1.203125, -1.9814453, -1.7763672, -0.46264648, -0.8901367, 2.0800781, 2.078125, -2.8496094, 1.0253906, -1.1884766, 0.1739502, -0.5888672, -0.7919922, 1.125, -1.8427734, -1.0585938, -3.109375, 0.63183594, 1.8408203, 0.42456055, 2.0371094, -0.3642578, 0.9091797, -0.6723633, -0.10095215, 2.21875, 3.5078125, 0.89746094, -3.5585938, -1.9433594, 1.6943359, 0.031677246, -0.4296875, 0.056518555, -0.98095703, -2.2304688, 1.7460938, -0.47094727, 0.46826172, 1.1953125, 0.41088867, -3.6308594, -1.2402344, 0.8232422, -2.2597656, -1.7714844, 0.86328125, -1.1269531, -0.45703125, 0.87060547, -2.765625, 0.82177734, -1.859375, 1.0058594, -2.6503906, 2.0410156, 2.2929688, 2.3789062, 2.5429688, -0.5419922, -0.68066406, 1.7734375, -0.99902344, -2.078125, 1.6259766, -2.7558594, -0.10345459, 0.8051758, 1.2041016, -1.2197266, -1.1572266, -0.07244873, -2.703125, 0.40283203, -1.9501953, -0.7397461, -1.2470703, 1.0830078, 1.2304688, -1.2529297, 2.4042969, -2.6601562, -1.6318359, 1.6171875, 2.3300781, 0.7675781, 0.81689453, 0.11260986, -1.0927734, 1.3515625, 2.9492188, 1.8808594, -0.61865234, -0.1538086, -0.18835449, 1.2753906, 0.28442383, -0.1381836, -1.2373047, 0.27026367, -0.18493652, -1.7246094, 2.6289062, 2.03125, 0.30371094, 1.4794922, 0.86279297, -3.0625, 1.5400391, 0.8569336, -4.7109375, -1.5048828, 0.6230469, -2.7734375, 0.60302734, 0.96777344, -3.5234375, -0.6069336, 3.9921875, -1.1494141, 1.28125, 0.34326172, -1.9267578, 1.1650391, -1.0283203, -1.3916016, -0.9057617, -0.87353516, -0.49536133, 0.7470703, -0.34301758, -2.1679688, 1.3007812, 2.3339844, -1.0703125, -2.2109375, 1.6904297, -0.82958984, 1.1933594, -0.1550293, -1.3935547, -1.5898438, -0.70166016, 2.4707031, 0.59228516, 1.6816406, 2.1328125, 2.8007812, -3.8125, 0.58740234, -2.2539062, 2.6074219, -2.9472656, -0.13830566, 2.4394531, 0.16625977, -1.5097656, -4.046875, 0.58984375, 0.35473633, 1.6611328, 2.3359375, -0.69140625, -0.7495117, 1.6162109, -1.9462891, -5.984375, -2.0566406, 0.7470703, -0.16845703, -0.080078125, -0.6435547, -0.72998047, 1.3720703, 0.15808105, -1.8955078, -0.31835938, 0.8046875, -2.1679688, -0.6645508, -0.12023926, 0.3569336, -0.15979004, -1.4716797, 1.3251953, -0.77490234, 0.31323242, -3.8164062, -0.7207031, 2.7285156, -2.2773438, -0.07873535, 1.7460938, 0.09069824, 0.6020508, 2.1445312, -0.24157715, -1.3574219, 2.2519531, -1.5830078, 0.80322266, -0.015365601, -0.9980469, -1.1533203, -0.5102539, -0.27197266, 0.25708008, -0.3244629, -0.74365234, 1.3134766, 0.62158203, -1.0224609, 0.6479492, 0.9194336, -0.3803711, 1.2646484, 0.017669678, 0.87646484, 1.2421875, -0.6323242, -0.20544434, -2.0234375, -1.2646484, 0.10479736, -2.8476562, 0.6328125, -0.1730957, 0.8041992, 1.4140625, 1.3095703, 0.79052734, 1.4550781, 0.12866211, -0.87402344, -0.25048828, -0.58447266, 3.4199219, 1.7753906, -2.4199219, -1.3037109, -0.70654297, 1.1416016, 1.3408203, -0.9296875, -0.57910156, 0.3527832, -1.3828125, 0.57421875, 0.17675781, 1.2841797, 2.171875, 0.31030273, -1.1044922, 1.1757812, 2.921875, 0.31225586, 3.046875, -0.7207031, -0.11767578, 0.10839844, 3.7148438, -0.12976074, -2.0234375, 1.7050781, -0.9868164, 0.7836914, 0.06109619, -1.765625, -0.95654297, -2.8828125, -0.37451172, -0.49609375, -2.1191406, -2.5976562, 2.15625, 0.8959961, -0.71972656, -0.82910156, 3.3535156, 0.07006836, 2.9824219, 1.46875, 0.18908691, 0.26000977, 1.0214844, -0.57470703, -0.66845703, 1.3740234, -2.3339844, 0.76464844, -0.63427734, 0.17810059, -1.5019531, 2.28125, 2.1796875, 2.6523438, -0.84375, 1.8662109, 2.0566406, 1.9824219, 1.6601562, -0.3671875, 1.8310547, -0.14587402, -0.40063477, 1.0722656, 2.2832031, 3.5273438, 0.091552734, -1.5234375, 0.9116211, -1.4208984, -0.7421875, -0.97558594, -0.12561035, 2.4609375, -2.3359375, 1.9873047, -0.8100586, 0.23718262, -1.0478516, -0.4597168, 0.19299316, -0.25048828, -0.48461914, 3.3613281, 1.9443359, 0.25976562, 2.0820312, -0.16918945, -0.39453125, -0.25317383, -2.0976562, -0.31054688, 0.46875, -1.8515625, -0.91552734, 1.1660156, 2.1074219, 0.8544922, 0.67529297, 1.1191406, 1.9716797, 1.4443359, 0.52685547, -1.4287109, 0.30322266, -0.35839844, 2.59375, -1.3085938, -2.1816406, 0.8442383, 0.36914062, -3.6503906, -3.3417969, 2.9121094, 1.8427734, 1.2158203, 0.37963867, -2.5195312, 2.75, -0.6821289, 2.3203125, -1.0800781, 1.921875, -1.2783203, -0.5800781, -0.051849365, 0.5488281, 1.0595703, 1.7480469, 1.7285156, -0.9213867, 1.1230469, 1.0380859, 3.2070312, 1.0761719, 1.5009766, 1.375, -0.4453125, -0.5024414, 1.9267578, 0.4411621, -0.85546875, -0.4753418, 2.1445312, 1.0332031, 0.3269043, 1.6464844, -0.7368164, 0.2220459, -1.8554688, 0.07287598, -1.0761719, -1.8701172, -2.0429688, 0.15612793, 0.32836914, -1.1318359, -1.7529297, -0.5107422, 0.58251953, 0.12390137, -0.5058594, 1.9658203, -0.7338867, 2.765625, 1.5869141, 0.45214844, 0.4699707, 0.03274536, 0.29663086, 0.71972656, -2.3515625, 1.3144531, 1.5400391, 1.296875, -1.1962891, 0.68896484, -1.0400391, 0.6694336, -0.79052734, 0.41845703, -1.1972656, 0.5727539, 2.1347656, 0.050323486, 0.05834961, 2.625, 1.4902344, 0.5527344, -2.3535156, -0.096191406, -1.6337891, 0.8305664, -2.8691406, 0.9194336, 3.25, 2.4492188, -0.15881348, -1.4013672, -2.3769531, 0.028137207, 0.55126953, 0.84277344, -0.14221191, -0.6791992, -1.0732422, -1.6708984, 1.9384766, 0.30322266, -0.22851562, 1.1474609, -0.22229004, 1.5205078, 2.2285156, 3.0644531, -0.53222656, -0.1159668, 0.31347656, 1.7802734, 1.6064453, 1.1171875, 1.1484375, 2.1015625, 0.8774414, -3.5488281, 0.5258789, -1.6171875, 1.8613281, 0.6347656, 1.6464844, 1.0927734, 0.023162842, 0.9291992, -1.2988281, -1.0869141]}, "B01I32H7NY": {"id": "B01I32H7NY", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch\nDescription: This product is a 18\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.\nFeatures: Fire Pit Burner Ring Diameter 18-inch\nRing Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "embedding": [-0.75341797, 0.27368164, -1.6992188, 0.99560547, -0.5595703, -0.024124146, 2.4003906, -1.8974609, -0.32714844, 0.84228516, -1.359375, -0.82177734, 1.0078125, -3.6367188, -0.3161621, 0.5541992, -2.28125, -0.36816406, 1.6240234, 1.3662109, 1.5742188, 1.0400391, 2.4550781, 0.0030822754, 0.90283203, -0.30859375, 3.4355469, -2.3203125, -0.95458984, -1.0507812, 0.8671875, 0.33496094, 1.2802734, 0.48413086, -4.0859375, -0.99560547, -0.49902344, -0.08001709, -2.8066406, -0.2244873, -2.4726562, -0.26245117, 1.3583984, 1.0117188, -2.7460938, 0.89404297, 0.7128906, -1.6435547, -1.5009766, 0.9238281, 1.7314453, 1.7246094, -0.6088867, 0.6513672, -0.94384766, 1.5087891, -0.51953125, -2.4609375, 2.2050781, -0.91552734, 2.0800781, 0.7167969, -2.3398438, 0.72802734, -0.33935547, 2.4082031, 0.0892334, 0.609375, 0.04626465, -0.2286377, 1.9521484, -0.3725586, 1.2871094, 0.19152832, 2.8808594, -1.0722656, -2.7480469, 1.6367188, 1.9404297, -2.4199219, -0.42797852, 2.6757812, 0.80322266, -0.24206543, -0.06585693, -1.0947266, -1.2607422, 0.118774414, 2.3730469, 0.92529297, 0.08508301, 2.6152344, -1.4521484, -3.34375, 1.6318359, -0.7089844, 1.6259766, -0.3059082, -0.33374023, 0.024658203, 0.41967773, 1.0898438, -0.69970703, 0.82373047, -1.9306641, 0.012931824, 1.765625, 1.2724609, -0.4248047, 0.9682617, -1.7021484, 1.7558594, 3.8007812, -0.17199707, 0.19958496, 0.8520508, -0.65625, 1.7353516, 3.0644531, -1.7216797, 4.4257812, 1.1025391, 0.9169922, -1.4345703, -0.08648682, 0.35107422, -2.4394531, -0.07623291, 2.3730469, -1.5126953, 0.8964844, -1.7617188, 1.6748047, -0.25439453, -1.8691406, -0.42749023, -0.484375, -0.16796875, -1.9570312, -0.6074219, -3.4609375, 2.2070312, 0.14794922, -2.7929688, -3.9355469, 0.7026367, -0.9746094, 2.9882812, 0.0071792603, -2.6601562, 1.5810547, -0.8129883, 0.6166992, -1.4296875, 1.7910156, 0.40649414, -0.55810547, -1.7900391, 3.0195312, -0.5292969, 0.23474121, -1.2304688, -0.005592346, 2.9042969, -2.6074219, -1.3056641, 0.8432617, 1.0791016, -1.6621094, 1.7851562, 2.1425781, -1.3867188, -1.8125, -0.5761719, 0.7705078, -1.7851562, -1.5429688, 2.6328125, 1.4208984, 1.4619141, -2.3261719, -2.5488281, 3.0117188, 0.66015625, 0.057159424, -0.2939453, 0.5839844, -1.0068359, 0.8364258, 0.53759766, -1.921875, -0.06414795, -0.35131836, -1.2773438, -0.98583984, -2.3359375, -1.3339844, -2.1914062, 1.2675781, 2.2011719, -2.8105469, 0.35473633, 0.8339844, 0.34545898, -2.1152344, 0.26757812, 1.1025391, 1.0361328, 3.4355469, 1.2275391, 0.031280518, -1.1416016, 2.4375, 0.3317871, 1.3466797, -2.2324219, 1.6435547, 2.0878906, 1.1835938, 2.9980469, 1.9150391, -0.4194336, 1.1289062, 1.4443359, 1.0351562, 1.7148438, 1.0625, -0.17932129, -2.1933594, 0.5957031, 3.3496094, 0.46972656, -1.1640625, 1.9873047, -1.0322266, 2.3300781, -0.71484375, -1.71875, 1.8056641, -2.2578125, -0.90771484, -2.8496094, -0.09844971, -0.81396484, -0.68359375, 0.50634766, -0.37597656, 0.13684082, 1.1806641, -0.9770508, 0.18359375, 0.44628906, 3.0136719, 0.93603516, 0.52783203, -2.0957031, -0.31030273, 0.56591797, -0.36938477, -2.2988281, 1.7978516, 0.9375, -1.265625, 0.62060547, 0.8989258, -1.6347656, 1.2929688, -0.53759766, -2.0527344, -0.033447266, -2.0332031, 0.53027344, 1.0761719, 0.46899414, 1.8789062, 0.49243164, -0.91845703, 3.5546875, 1.1142578, 0.9716797, 0.09490967, 0.3359375, 2.7695312, -2.1582031, 0.69091797, 2.7265625, 2.421875, -0.9067383, 0.27734375, 0.88134766, 4.8125, -1.2509766, -2.2539062, 1.8320312, -0.9316406, 0.86572266, -0.92333984, 1.7402344, 0.006385803, -1.4775391, -0.0029830933, 1.7939453, 0.49926758, 2.0800781, -0.6040039, -0.61376953, 2.2851562, -3.3886719, 1.4677734, -1.5683594, -0.26611328, -0.4638672, -1.5322266, 1.0771484, -1.1728516, -2.6503906, 2.6347656, -2.8945312, 1.9121094, 0.78759766, 0.70410156, 2.0488281, 0.33154297, -1.3603516, -0.039611816, 1.7089844, -2.6816406, 2.2480469, 0.625, 0.6176758, -2.2246094, -0.7783203, 0.9667969, -0.9770508, -1.4228516, -1.8740234, -1.1269531, -1.9443359, 0.17468262, -3.0566406, -0.24401855, 1.9746094, -1.8525391, 0.48266602, -1.3867188, -2.0605469, -1.1904297, -1.1298828, -2.4003906, -1.5126953, 1.0439453, 3.15625, -2.2207031, -1.5029297, -0.47973633, -0.33691406, 1.5039062, -0.5058594, -0.6196289, -1.3105469, -0.84228516, 1.1679688, -0.7597656, -0.99658203, 1.3134766, -3.2890625, 1.3144531, -2.6308594, 2.0390625, -0.29833984, 0.3076172, -0.6274414, 1.1435547, -1.21875, -1.5214844, -0.011054993, -0.5883789, 5.7929688, -1.3476562, 2.0625, -1.5009766, -1.2695312, -1.4746094, -0.5751953, -2.15625, 1.1074219, 1.0039062, -2.2617188, -3.4804688, -2.3730469, 0.5732422, -1.2412109, -1.0527344, -1.7197266, 0.80615234, -1.3164062, 0.22998047, 0.027008057, 0.38916016, -0.049194336, -0.26611328, -0.3552246, -1.0205078, -2.0175781, -0.22424316, 0.029205322, -1.53125, -0.43530273, -0.17199707, -1.4023438, 0.1739502, 1.1787109, -0.30517578, 1.1298828, 1.2480469, -2.8535156, 1.9414062, 2.5058594, -1.0664062, 1.7958984, -3.4511719, 0.38256836, -2.1757812, 0.072509766, 4.3398438, 1.4804688, 0.20275879, -0.72314453, -0.9355469, 1.4931641, 0.08099365, -1.8095703, -0.47265625, 0.18273926, 4.4648438, -3.25, -1.3583984, 0.5493164, 2.1328125, -4.4921875, 0.75634766, 2.1796875, 0.77783203, 0.17211914, 1.140625, 0.38208008, -0.9145508, -1.3740234, -0.33251953, 1.3886719, 1.8134766, 0.36499023, -1.8027344, 1.6035156, 0.91064453, -0.082092285, 2.578125, -0.4482422, 1.5927734, 3.7324219, 1.0058594, -1.7275391, -0.34643555, -0.25, -0.25024414, 0.7421875, 1.1835938, -0.69970703, 1.25, -1.2626953, -0.16516113, 2.7792969, -2.5273438, -0.9433594, 1.4365234, -0.3305664, -2.1210938, 0.6357422, 1.4130859, -0.121154785, -2.8574219, 0.24365234, -0.2680664, -0.27563477, 2.0703125, 0.55566406, 1.6787109, -2.5703125, 0.6694336, -2.0722656, -1.1123047, 0.22302246, 1.2197266, -0.28100586, -2.6796875, -0.049987793, -1.0634766, -1.1357422, 4.2773438, 0.3544922, -1.8476562, -0.33813477, -2.6699219, 1.1816406, 0.79345703, -1.1660156, 0.9995117, 0.66064453, -1.6152344, -0.71533203, -0.0925293, 1.1884766, -1.3681641, -1.5585938, 0.7363281, -2.8183594, -1.3740234, -0.22058105, -1.0898438, -3.2695312, 3.4296875, -0.20239258, -0.17773438, -1.3955078, 3.8183594, 0.88720703, -0.42797852, 3.2929688, -0.921875, 0.1060791, -2.5585938, -4.0664062, 0.7480469, -2.7070312, 1.9785156, 0.78759766, 2.3886719, -0.52490234, 1.5341797, -0.5996094, -2.6464844, -1.4619141, -0.8808594, 1.3007812, -2.9765625, -3.6230469, 0.4765625, 0.8486328, 0.06762695, -0.3034668, 0.3371582, 0.9291992, 1.4746094, 1.2900391, -1.4873047, 0.070739746, 0.6308594, -1.3476562, -0.43359375, -1.2382812, -0.12780762, 0.8354492, -0.671875, -1.71875, 1.1708984, 3.5625, -0.10272217, 2.5761719, 1.8896484, 2.6074219, 0.33276367, 0.42041016, -0.6166992, 3.3300781, 0.08880615, -1.5878906, 0.6401367, 0.78759766, 1.6865234, -1.1494141, 0.12683105, -0.49902344, -0.9765625, 3.2695312, -2.0429688, 0.49682617, 0.43188477, 0.018432617, -1.578125, 0.7392578, -0.28295898, -1.5810547, 0.71875, 0.828125, -0.6323242, -2.4394531, 0.2541504, -3.4296875, 1.4228516, 0.5410156, -0.40014648, -3.6582031, 2.7480469, 2.5917969, 0.56591797, 4.78125, -1.5625, -0.46850586, -1.3505859, -0.34448242, -0.19067383, -0.4567871, -0.036834717, -0.0619812, 2.8007812, -0.35913086, -0.4897461, 0.10644531, 2.5175781, -0.5541992, -0.81396484, -0.77685547, 0.9316406, -1.4570312, 0.765625, -0.2052002, -0.74365234, 0.8432617, 0.53125, -0.4794922, 0.8354492, 0.6948242, -1.8085938, -0.004634857, -0.20495605, 0.7246094, 1.2744141, 0.98095703, 1.6416016, 0.7763672, 4, 0.82177734, 1.5244141, 0.38256836, 0.6621094, -0.63623047, 0.048797607, -3.1367188, -0.56689453, 0.42211914, 2.6582031, -0.5917969, 2.8457031, 0.4404297, -2.5917969, 2.0527344, -0.027786255, -4.6875, -1.3359375, -0.43847656, -3.2070312, 1.7226562, 0.9121094, -1.2626953, -0.8989258, 1.6806641, -0.5097656, 2.8925781, -0.68066406, -1.7275391, -0.578125, -0.4399414, -0.9995117, -2.2050781, -0.019546509, 1.0703125, -0.39379883, 1.0419922, -0.68408203, 1.9902344, -0.17346191, 0.059173584, -1.6865234, -0.68847656, -1.1777344, -1.5, -1.8378906, -0.6538086, -0.26782227, 1.4257812, 0.14880371, -0.42407227, 1.7119141, -0.25683594, 1.8320312, -1.796875, -2.2832031, -0.5957031, 2.5410156, -0.11657715, 0.0044822693, 1.9521484, -0.3544922, 0.72314453, -0.36572266, -0.13879395, -1.4873047, 1.8662109, -0.62060547, 0.42333984, -0.47192383, 0.7294922, -1.9160156, -5.046875, -2.1269531, 0.5209961, -0.09240723, 1.1074219, -1.1914062, 1.1152344, -0.022644043, -1.1337891, -0.7597656, 0.07318115, 1.3105469, -0.07885742, 0.6958008, -1.8779297, 0.44848633, 1.5410156, -0.89697266, -0.4025879, -0.5019531, -0.69873047, -2.2734375, -0.5097656, 2.6113281, -2.6855469, 1.0117188, 1.59375, -0.03805542, 0.011497498, 3.84375, 0.58447266, -1.1113281, 0.15563965, -3.6074219, -0.61279297, 0.35107422, -1.9912109, -1.6884766, 1.4033203, -1.4697266, 1.3398438, 0.8339844, -2.7148438, -2.2363281, 1.5898438, 0.2685547, 0.09320068, -0.6230469, -1.6630859, 1.4570312, 1.6992188, 0.1550293, 1.1806641, -2.1542969, -0.8486328, -2.1816406, -0.6567383, 0.7036133, -0.97998047, 0.4501953, 0.00066041946, 0.16394043, 1.2910156, -1.0322266, 0.007881165, 1.7353516, -1.09375, -0.2944336, 2.3164062, -0.2166748, 3.8632812, -0.19763184, -2.4277344, -2.0117188, -1.9228516, 1.2880859, 0.8208008, -1.9443359, 0.06390381, -0.5488281, 0.48510742, 0.24987793, 1.0927734, 1.3945312, 1.2734375, 1.8115234, -2.0976562, 0.7841797, 1.0966797, 0.021911621, 1.9287109, 0.73095703, 0.24133301, -1.4228516, 1.1914062, 2.1171875, -2.9921875, 0.48535156, -1.7285156, -0.35961914, 0.060180664, -1.3857422, -2.1230469, -2.7167969, -1.4589844, -0.23168945, -2.296875, -2.5820312, 0.7783203, 1.6152344, 0.7729492, 0.8779297, 1.8291016, -1.1669922, 2.28125, 1.1210938, 0.79541016, -1.6445312, -2.4453125, -0.62841797, 0.77685547, 2.7050781, -3.1621094, -1.0634766, -0.1616211, -0.38989258, -0.4477539, 0.6635742, 0.7104492, 1.8691406, -0.8886719, 1.9697266, 1.8320312, 2.4746094, 3.5742188, -0.36157227, 0.79345703, 1.4589844, 0.14672852, -0.7246094, -0.25317383, 0.7910156, -0.5239258, -0.7919922, -0.32250977, -1.0195312, -3.1425781, -0.7211914, -0.41577148, -0.088134766, -3.0019531, 1.9599609, -0.9189453, -1.1298828, -0.81103516, 1.2822266, -0.47631836, -0.7939453, -2.3417969, 0.39770508, 2.4765625, 0.5161133, -0.26635742, 0.5449219, 0.9291992, -0.4609375, -3.5449219, 1.1894531, 0.19494629, -3.8886719, 0.13684082, 3.1738281, 0.3959961, 1.7822266, 1.5195312, 2.40625, 0.10333252, 0.55126953, -0.08972168, 1.1474609, 0.3088379, 1.7255859, 2.8457031, -0.32592773, -1.4755859, -0.43066406, 0.09277344, -3.9003906, -4.0898438, 3.6757812, -0.23632812, 1.109375, 0.80322266, -0.39379883, 1.2910156, -0.6225586, 0.7089844, -2.078125, -1.1210938, 1.1806641, -1.0537109, -0.42822266, 1.6435547, 0.18017578, 1.9931641, 1.1816406, -1.3544922, 0.61621094, 2.0800781, 0.5859375, 2.8300781, -0.28515625, -0.5761719, 1.2978516, -1.8447266, 4.6523438, 2.0722656, 0.99560547, -0.84033203, 2.6367188, 0.99072266, 1.5400391, 1.328125, -0.8642578, 1.0742188, -1.3320312, -0.4428711, 0.4477539, -0.9213867, -2.4824219, -0.88427734, -0.55126953, 0.68310547, -1.0478516, 1.8056641, 2.1289062, -0.23583984, 0.6425781, 2.2011719, -2.2167969, 0.23449707, 0.6503906, 0.03665161, -2.2363281, 0.5576172, 2.4980469, 0.61083984, -2.5546875, -0.06762695, 3.0742188, -0.15881348, -1.6904297, -0.6542969, -0.87353516, 0.2775879, 0.3095703, 1.8242188, -0.5683594, -0.84716797, 2.6035156, -0.016983032, -2.5800781, 1.6279297, -0.015327454, 0.26220703, -0.10491943, -2.0410156, -1.4521484, -0.13549805, -1.4726562, 0.83251953, 3.4667969, -0.6171875, 0.33374023, 1.6533203, -3.6113281, -1.6132812, 0.13134766, 1.8349609, 0.38842773, -1.3769531, 0.17822266, -1.7128906, 3.8515625, -2.7109375, 1.2890625, 1.2099609, -0.453125, 1.0322266, -0.4423828, 2.9667969, 0.98876953, 2.5390625, -0.09613037, 4.0429688, 2.8417969, -1.4316406, 0.92333984, 0.7324219, -0.11907959, -2.2167969, 0.11016846, -0.16577148, -0.02520752, -0.45458984, -0.5620117, -1.0820312, -0.625, -0.7519531, -3.2304688, -0.9892578]}, "B07MHT9TQX": {"id": "B07MHT9TQX", "original": "Brand: Napoleon\nName: Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel\nDescription: \nFeatures: 66,000 BTU's\n4 Stainless Steel Main Burners\n760 in Total Cooking Area\nNIGHT LIGHT Control Knobs with SafetyGlow\n7.5 mm Stainless Steel Iconic WAVE Cooking Grids\n", "embedding": [-1.8632812, -0.68603516, 2.984375, 1.2617188, -0.24279785, 0.4963379, -1.0693359, -0.7368164, 0.38232422, 1.0751953, 2.2167969, 0.32836914, -1.5351562, -1.1318359, 0.7919922, 0.6582031, 1.9394531, 1.2607422, 0.19396973, -0.19140625, 0.20654297, 0.15405273, 1.8828125, -0.8149414, -1.5566406, 1.6855469, 4.8007812, -3.3496094, -0.4494629, -1.8193359, 1.6767578, 0.59375, 0.4338379, 0.19641113, -2.828125, -1.1162109, -1.5351562, 0.49267578, -4.484375, -0.09710693, 0.082214355, -1.0693359, 1.8457031, -0.7294922, -1.1220703, -1.328125, -1.1220703, -0.9189453, -2.8417969, -1.9277344, 0.38378906, 0.9511719, -1.5537109, 1.1630859, -0.49267578, 1.8222656, 1.8095703, -0.1159668, -1.0683594, -0.012748718, 0.96533203, 0.7783203, -1.7763672, -0.1965332, -2.2285156, 1.1640625, -1.0400391, 0.8564453, 1.2148438, 0.8886719, 1.6630859, 0.42700195, -0.23596191, -1.0732422, -1.0712891, -2.5175781, -2.828125, 0.3474121, 1.3037109, -0.13098145, -1.0595703, 1.4140625, 0.83496094, -2.140625, -1.0087891, 0.7817383, -1.9853516, -1.3203125, 1.0917969, 0.8178711, -0.017288208, 1.8222656, -1.5380859, -3.5859375, 2.7636719, -0.64697266, 0.2121582, 1.0732422, 1.8330078, 1.7392578, 0.68603516, -0.10058594, -1.0048828, -1.5146484, -1.40625, -1.3720703, 2.2089844, 0.18640137, -3.8808594, -0.71728516, -1.5878906, -1.3193359, 2.9375, 0.69628906, 1.8896484, 2.5351562, 0.74609375, 2.7871094, 0.32543945, 1.9609375, 1.8115234, -1.6962891, 0.22436523, 0.25170898, 0.072509766, 1.3935547, -2.4941406, 1.7412109, 4.6914062, -0.024719238, 1.0429688, -1.4023438, 4.5429688, -0.34277344, -1.5947266, -2.0058594, -2.8847656, -0.97314453, -2.7128906, 0.28100586, 0.24804688, 1.2783203, 0.5683594, 0.43823242, -3.3164062, -0.34448242, 0.48779297, -0.70654297, -0.51416016, -0.6411133, -0.10882568, -2.8476562, 0.12176514, -1.0097656, 0.53125, -1.0185547, -0.7885742, -1.03125, 4.28125, 2.2148438, 1.4990234, -1.7539062, -2.6074219, 0.9086914, -0.19372559, -2.9003906, -0.8120117, 1.0800781, 1.7412109, 2.265625, -1.0898438, -0.9433594, -1.1220703, -0.6894531, -0.4194336, -0.15991211, -0.45532227, 2.9140625, 0.43481445, -1.875, -1.8154297, -1.1699219, -0.41015625, -0.24230957, -0.31762695, -0.9267578, 0.03677368, -0.22631836, 1.2480469, -1.8193359, 1.4775391, -0.38354492, 0.3112793, 1.1904297, -1.0625, -2.1835938, -0.19787598, -0.96240234, 1.4580078, -0.5390625, -1.0029297, -1.2509766, 0.076416016, -0.8671875, -2.3242188, -2.2890625, -2.1289062, 0.39575195, -0.32641602, 1.8398438, 3.4785156, -1.9814453, 2.7148438, -0.9116211, 0.34448242, -2.0820312, 1.4990234, 0.92871094, 2.3789062, 3.015625, -0.7705078, 0.3684082, 0.017654419, 2.6503906, 0.06008911, 1.9550781, 0.9638672, 1.5839844, -2.328125, -1.2851562, 3.0976562, 1.90625, -0.4428711, 0.057556152, 0.0024700165, 1.8876953, 0.6352539, -2.7890625, -1.1669922, -0.45092773, -0.8334961, -1.7041016, -0.80859375, -0.5810547, -0.39697266, 1.5820312, -2.1113281, -1.0957031, 0.6113281, 2.2890625, -0.06768799, 0.28808594, 0.91796875, -0.31274414, -1.4570312, 0.1875, -0.07635498, 1.5751953, -1.5292969, -2.453125, 1.6523438, -0.20727539, -1.109375, -1, 0.14013672, -1.0673828, 3.9980469, 0.2310791, -3.015625, -0.47705078, 0.14575195, -0.35229492, 3.4238281, 0.12213135, 0.5498047, 1.2861328, -3.1582031, 3.953125, -0.61328125, 2.046875, -0.24987793, 0.54833984, 2.5703125, -3.0019531, -0.1875, 1.2382812, 1.0244141, -1.0947266, -2.6328125, 2.546875, 5.3710938, -0.93603516, -2.7148438, 2.2871094, -1.375, -0.3803711, 2.0195312, -1.3671875, -0.33642578, -2.5820312, 2.5253906, 1.3447266, 1.2871094, 0.3959961, 1.2490234, -1.6806641, -0.98046875, -1.9160156, -0.18664551, -1.9238281, -0.7138672, -0.109069824, -2.3105469, 2.5136719, 0.9165039, -0.5751953, 1.1992188, -3.0234375, 1.7841797, 0.4165039, 1.5830078, 2.6191406, 0.53466797, -0.21728516, 0.5253906, -0.5883789, -0.53271484, 1.6523438, -0.52783203, -0.9926758, -0.28198242, -0.99560547, 0.7631836, -2.3496094, -1.7880859, 0.3269043, -3.0664062, -1.6318359, -0.16796875, -3.2597656, -1.8095703, 1.3095703, -3.5976562, 2.3007812, -0.39575195, -4.6328125, -1.7929688, -0.6743164, -1.3076172, 0.74609375, 1.6523438, -0.2866211, 0.14172363, -3.8925781, 0.9658203, -0.19226074, -2.8964844, 0.84814453, -0.46704102, 0.17041016, -0.97216797, -0.81884766, -0.5830078, 0.5649414, 1.1962891, -2.0058594, 1.6220703, -3.0097656, -1.9130859, -3.8242188, 0.10772705, -1.2431641, -0.062927246, -2.9628906, -1.2529297, -1.0537109, -0.9711914, 2.2539062, 0.43554688, 0.33007812, 0.0692749, -1.1494141, 2.3925781, -1.9326172, -1.4589844, -0.052642822, 0.64990234, -2.3515625, -2.4277344, -2.546875, -0.041046143, -0.71972656, -0.26635742, -1.9355469, 0.65771484, -1.8935547, 2.9746094, -0.65185547, -0.48461914, 0.3930664, 0.34936523, -1.0371094, -0.59277344, -2.2617188, -1.1171875, 0.29907227, 0.11859131, -0.08758545, 0.38989258, 1.3349609, 0.18896484, 1.6289062, -0.8564453, 0.62402344, -1.0839844, -4, 1.9443359, 0.9399414, -2.15625, 1.4921875, -1.6630859, -1.4726562, -1.3056641, -1.4726562, 1.7578125, 2.2050781, 1.4267578, 0.96435547, 0.4091797, -0.92089844, 1.1123047, -0.5214844, -0.55615234, 0.40185547, 2.3476562, -1.4960938, -1.59375, -0.4375, 2.4003906, -1.3798828, -1.1855469, 2.6757812, 1.3642578, 0.6040039, 1.1806641, -0.55908203, 0.65185547, -1.3574219, 1.1640625, 1.7412109, 0.6142578, -1.0078125, -0.85253906, 1.7021484, 0.28857422, 1.7773438, 3.6035156, 0.79541016, 1.8447266, -0.31933594, 1.0537109, -2.0214844, 1.0947266, 0.54589844, 2.7148438, 0.55126953, 2.5546875, 0.10510254, 1.7314453, -0.89208984, 1.9384766, 1.3632812, -2.5761719, 0.34814453, 0.8828125, 0.23815918, 0.25463867, 0.2878418, 1.4287109, -0.11584473, 1.7109375, 2.4902344, -0.9428711, -0.40039062, 0.8300781, 1.4580078, -1.7685547, 0.48950195, 1.1025391, -1.3837891, -1.4814453, 0.0035953522, 2.296875, 1.0712891, -2.3925781, 0.36938477, -0.2775879, -0.3371582, 0.5961914, -1.6630859, -0.15222168, 2.2285156, -0.7133789, 0.9370117, 0.47705078, -2.6972656, 1.0107422, -0.26464844, -0.52978516, 0.48510742, 0.91259766, 2.0507812, 1.40625, -1.5771484, 0.57910156, -3.6113281, 0.72558594, -0.74658203, -2.7480469, -2.1445312, 2.5742188, 0.86865234, 1.9511719, -1.4628906, 2.2949219, 0.22546387, -0.14111328, 1.4785156, -2.9238281, 0.5283203, -2.7285156, -2.7929688, 1.9179688, -1.0322266, -0.6542969, -0.45751953, 0.14941406, -1.0673828, 1.1699219, 0.109680176, -3.6523438, -0.9760742, -1.1621094, 1.3486328, -0.55029297, -1.2480469, 0.8652344, 0.3569336, -2.9140625, -1.5410156, -0.96191406, -0.42529297, 1.1015625, 1.21875, -1.7841797, 1.5390625, -2.3125, 2.2246094, 2.0136719, 0.2956543, 0.6875, -0.53466797, -0.671875, -2.4003906, 2.0742188, 0.6928711, 0.3137207, 0.27197266, -0.6376953, -0.0038757324, -1.2373047, 0.21179199, 1.8876953, 3.6269531, 0.23217773, -2.6289062, -1.1533203, 0.69384766, 0.35595703, -0.89208984, -0.48291016, -2.6699219, -1.2001953, 0.6821289, 2.3320312, 0.65625, 0.6225586, 0.17419434, -3.3164062, -0.09454346, 2.71875, -2.734375, 0.7836914, 0.640625, -0.2824707, 0.84716797, 1.0107422, -1.7998047, -0.30810547, -2.1074219, -1.2275391, -2.5644531, 3.6601562, 3.171875, 2.4296875, 0.5214844, 0.5136719, -2.9824219, -0.8925781, 1.3427734, 0.5986328, 1.9873047, -0.5048828, -0.75146484, 0.8955078, 2.21875, -1.0986328, -1.65625, 3.2480469, -1.7792969, 0.35205078, -1.6279297, 1.0097656, -3.8652344, -1.6240234, 0.69189453, -1.8027344, 1.890625, -0.76708984, -0.096069336, -0.052947998, 1.5351562, 0.71972656, -0.033111572, 0.026519775, 0.48706055, 2.7753906, 2.4140625, -0.5966797, -1.1601562, -0.5048828, -0.60839844, 2.6992188, -1.6464844, 0.45996094, -1.2832031, 0.10229492, -0.89404297, -2.5097656, 2.0332031, 1.4433594, -0.18151855, 4.6992188, 2.5449219, -2.5058594, 0.5996094, 0.7285156, -2.7363281, 0.80126953, 1.2753906, 0.12658691, 0.48461914, 2.1914062, -4.03125, 0.06756592, 3.9394531, -0.69921875, 0.13293457, -0.73291016, -1.2460938, -0.83740234, -3.3476562, -1.2353516, -0.578125, 2.3652344, -1.3417969, 0.068359375, 1.03125, -0.25878906, -0.57421875, 2.5839844, -0.2685547, -1.3271484, 3.1113281, 0.5053711, 0.75341797, -0.54833984, -0.40185547, -0.47924805, 1.7646484, 3.8710938, 0.5913086, 1.9160156, 0.06518555, 1.4160156, -2.9785156, -0.37939453, -0.78222656, 3.1445312, -1.7685547, -1.5078125, 1.2763672, -0.5024414, -0.06939697, -0.8466797, 0.22998047, -1.2597656, 1.6552734, 1.1367188, 0.21252441, 0.47314453, 0.13378906, -1.4667969, -3.2285156, -1.7490234, 1.5771484, 1.0117188, 0.46655273, -0.30126953, 0.45581055, 0.875, 0.9375, -1.5976562, -2.6582031, 0.031707764, 0.049835205, 0.8125, 0.8066406, 1.1884766, -1.3925781, 0.41577148, 0.1965332, -0.25195312, 1.1259766, -3.6542969, -2.8652344, 2.0859375, -3.2949219, 0.44970703, 2.1738281, 0.2861328, 0.026473999, 2.4140625, -0.12756348, -3.6660156, 2.9023438, -1.7929688, -0.8691406, 1.3759766, 0.22839355, 0.20605469, 0.7133789, -0.7807617, 1.9521484, -1.2089844, 0.7114258, -0.55078125, -0.46435547, -0.17749023, 0.44726562, -0.45996094, -1.7509766, 0.89990234, -0.8769531, 1.1982422, 1.6708984, -0.99853516, -2.0253906, -1.7011719, -2.9179688, 0.011360168, -2.0625, 0.8823242, -1.9287109, 1.4238281, 1.1396484, 0.18261719, -0.17529297, 0.23168945, 1.0351562, -0.5839844, 1.8027344, -1.5351562, 2.4238281, 2.9335938, -1.8828125, -0.25927734, -1.7382812, -0.26586914, 2.1152344, 1.3515625, -0.8408203, 0.18286133, -0.48291016, 0.29125977, 0.38183594, -1.2773438, 2.40625, -0.24572754, -1.8144531, 1.015625, 4.1953125, 0.5102539, 2.1464844, 0.85253906, 0.5283203, 0.2980957, 4.1523438, 0.0025196075, -1.0224609, 2.3945312, -2.0996094, 0.30639648, 1.3027344, -0.7763672, -1.0234375, -0.71777344, -0.7084961, -1.7353516, -0.7729492, -3.75, 0.15112305, -0.6401367, -1.5800781, 0.74365234, 3.546875, 0.4675293, 1.3320312, 1.6943359, 1.8076172, 0.6230469, 0.8461914, 1.4013672, 0.1907959, 2.6367188, -2.7265625, 2.4863281, 0.44213867, 0.3076172, -0.14428711, 2.9980469, 0.7578125, 1.8486328, -0.6088867, 1.5039062, 3.0234375, 0.99072266, 1.7451172, 0.37524414, 1.1591797, 1.3027344, -0.23144531, 1.3388672, 1.1953125, 1.6015625, -0.7836914, 0.88378906, 1.6972656, -1.7070312, -1.3720703, 0.060760498, -0.12878418, 0.6816406, -1.2011719, 1.4658203, -0.21411133, 0.4584961, -1.8554688, -0.5463867, -2.5136719, 0.4584961, -0.5541992, -0.51660156, 2.3925781, -0.40527344, 1.3105469, -0.4169922, -0.42626953, 0.35595703, -3.7597656, -0.011482239, -0.25585938, -1.4345703, 1.1357422, -1.3945312, 0.6274414, -0.2824707, 0.5332031, 0.8120117, 3.0761719, 1.4179688, -0.73828125, -2.4628906, 1.2919922, 0.56591797, 2.6542969, -0.18554688, 1.5615234, 3.1289062, 0.50439453, -3.7675781, -5.0234375, 3.3632812, 0.09643555, 1.4697266, 2.4941406, -1.7490234, 2.9941406, -0.3647461, 1.5732422, -1.9208984, 1.2138672, 1.7773438, -0.9350586, -0.80322266, 1.4042969, 1.0400391, 1.6943359, 1.2490234, -0.25878906, 1.6884766, -1.1123047, 2.4785156, 0.6777344, 1.3867188, 1.6474609, -0.5517578, -1.7021484, 1.6123047, 0.6508789, -0.08569336, -0.46020508, 2.6445312, 1.9804688, 0.78466797, 1.0273438, 0.19787598, -0.49316406, -1.5976562, 0.19995117, -0.35253906, -2.4648438, -0.30786133, -0.37597656, 0.21826172, -0.546875, -0.9526367, 2.3925781, 0.31396484, -0.52685547, -1.6162109, 3.3085938, 0.15356445, 2.296875, 0.56152344, -1.6591797, -0.8105469, 0.23278809, 0.79589844, 1.0712891, -1.6318359, -0.6323242, 0.3696289, 1.8759766, -0.65722656, 0.44970703, -0.6542969, -1.4091797, -0.08648682, 2.4414062, -1.609375, -0.94677734, 2.0039062, -0.5649414, -0.57470703, 0.21838379, -1.4609375, -0.5048828, -2.0429688, -0.34570312, 0.33740234, -0.061950684, -1.2773438, -0.076049805, 3.0507812, -0.18054199, 0.8129883, -2.8183594, -4.6484375, -0.671875, -1.6591797, 2.3847656, -1.5195312, -1.5996094, 0.6035156, 0.21264648, 2.2402344, -2.1328125, -2.2324219, -0.2668457, -0.7050781, 0.28735352, 0.17175293, 2.1386719, -0.6748047, 0.5566406, 0.76123047, 1.0957031, 0.30737305, -0.81591797, 1.5712891, 2.6855469, 0.43481445, -2.0527344, 1.0058594, -1.8837891, 0.021591187, -1.2109375, 0.43652344, 1.2949219, 1.0820312, 0.30004883, -0.11199951, -1.9316406]}, "B003WKUNLQ": {"id": "B003WKUNLQ", "original": "Brand: BULL\nName: Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane\nDescription: \nFeatures: 75, 000 BTU's of cooking power, heats up fast and can easily sear your favorite cuts of meat\n4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking\n304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n810 sq. Inches of cooking surface including warming rack\nReliable Piezo igniters on every valve plus twin lighting system\n", "embedding": [-0.6040039, 3.03125, 2.1835938, 1.0019531, -0.5439453, 0.10223389, 0.92578125, -2.0253906, -0.033935547, 1.9335938, 1.4619141, 0.19543457, -1.1464844, -2.4121094, 0.47973633, -0.8828125, 1.5244141, 1.4101562, 1.8193359, -0.046875, 0.46923828, -1.0966797, 3.9394531, -1.0683594, -0.55908203, 0.9394531, 3.6621094, -2.5410156, -0.5214844, -0.14550781, 1.5029297, 0.36914062, 0.5048828, 0.8491211, -1.6396484, -1.5947266, -1.0234375, 0.6538086, -3.390625, 0.13208008, -0.32714844, -0.54833984, 2.1503906, 1.8671875, -2.4160156, 0.9394531, -0.06213379, -0.99072266, -1.1923828, -1.4228516, 2.6054688, 0.9399414, -1.9082031, 0.8911133, -2.0605469, 1.7978516, 0.30737305, -2.6347656, 0.1418457, -0.6435547, 2.5976562, -0.5722656, -0.9199219, 0.9213867, -0.07098389, 0.44482422, -0.9145508, -0.8964844, 1.40625, 0.37646484, 2.7421875, -1.8007812, -1.3818359, 0.32250977, 0.83984375, -0.9350586, -3.4023438, 0.10296631, 0.74365234, -0.83740234, -1.6347656, 3.4882812, 0.61035156, -0.8901367, -0.18408203, 0.87890625, -2.7539062, -1.3232422, 2.5371094, -0.6069336, -0.10473633, 2.6289062, -2.7949219, -4.96875, 2.2421875, -0.45263672, 0.6088867, 0.28808594, -0.36645508, 0.9580078, 0.37695312, 0.4711914, -1.9296875, -0.83691406, -1.8896484, -0.39916992, 0.98828125, 0.2475586, -3.0976562, 0.8652344, -1.8896484, 0.53759766, 1.8945312, 0.6503906, 1.9726562, -0.4584961, -0.47436523, 1.6943359, 2.1035156, 2.3710938, 3.0019531, -1.2734375, 0.48657227, 0.2626953, -0.43798828, -0.6953125, -0.8457031, 1.828125, 5.3476562, -2.21875, 0.61865234, -2.1367188, 2.6992188, -0.99609375, 0.3317871, -0.8730469, -1.5380859, -1.2226562, -2.9882812, 0.18835449, -1.4619141, 0.8745117, 0.7138672, 0.5449219, -4.1679688, -0.50634766, 0.7553711, 0.010467529, -0.7597656, -2.6367188, 0.79541016, -1.9541016, 0.93603516, -1.5947266, 0.80908203, -0.036468506, -1.5078125, -0.41503906, 3.4023438, -0.5888672, 0.43286133, -1.7900391, -0.56396484, 0.23144531, -0.46264648, -2.3242188, -0.984375, 2.1464844, 0.4633789, 1.5947266, 0.3088379, -1.4296875, -0.010375977, 0.06451416, 0.10083008, -1.0751953, -0.5390625, 2.3261719, 0.36791992, -0.091308594, -2.3320312, -2.7578125, 0.61816406, 0.14868164, 1.4560547, -2.0761719, 0.32202148, -0.030181885, 1.1689453, -0.47558594, 0.5029297, 0.050842285, 1.1367188, 1.1962891, 0.7944336, -1.3828125, -0.95703125, -2.28125, 0.45703125, 0.54345703, -0.52978516, 0.24414062, -0.6821289, -0.14709473, -0.68896484, -2.5703125, -0.11608887, -2.1503906, 2.2519531, 1.7294922, 2.3339844, -2.2988281, 2.2617188, -0.21118164, -0.8666992, -1.9140625, 1.6289062, -1.6054688, 2.3476562, 2.1855469, -0.29736328, -0.03363037, 0.41723633, 1.8925781, 0.041412354, 0.43041992, 0.6176758, 1.5195312, -2.3320312, 0.05279541, 2.1914062, 0.6020508, -0.28320312, 0.9916992, -0.57421875, 0.014457703, 0.72314453, -3.140625, -0.0184021, -0.8383789, -0.9951172, -0.30566406, -0.30932617, -1.4814453, -0.34521484, 0.67333984, -1.6376953, 1.6621094, 0.66845703, 1.0361328, -0.39941406, 0.0045433044, -0.34887695, 0.67529297, -0.28808594, 0.5722656, -1.2783203, 0.64990234, -2.2246094, -1.2490234, 1.4316406, -1.9023438, -0.5288086, -0.26660156, -0.014762878, -0.9248047, 2.8203125, 1.3691406, -1.8515625, -1.9501953, 0.37597656, 1.3154297, 2.5371094, -1.3779297, 1.8320312, 1.1123047, -0.5698242, 3.5390625, 0.08526611, 0.70947266, -0.63427734, -0.2697754, 1.7939453, -2.0371094, -1.8691406, 0.41601562, -0.20861816, -0.4609375, -1.4208984, 1.6376953, 5.2265625, 0.6269531, -2.2382812, 2.6503906, -1.625, -0.55908203, 1.2041016, -1.2871094, 1.1650391, -0.5600586, 3.46875, -0.609375, 1.0683594, 1.4033203, -0.3623047, -2.1015625, 0.113342285, -3.1152344, 0.58251953, 0.7783203, -1.2070312, -0.087524414, -1.796875, 1.5107422, -2.7285156, -0.50341797, 1.0722656, -3.46875, 0.8100586, 1.2099609, 1.8007812, 0.13647461, -0.48413086, -2.1171875, -0.2927246, 0.86376953, -0.9189453, -0.52197266, 1.4277344, -1.7636719, -0.8095703, -0.8701172, -0.3256836, -2.5644531, -0.30371094, -0.7890625, -1.3681641, -1.3427734, 1.1328125, -1.4824219, -1.4931641, 0.9814453, -2.296875, 0.83984375, 0.036987305, -3.6738281, -1.1777344, -0.9370117, -0.40698242, -0.47436523, -0.38476562, 0.46142578, 1.2841797, -4.2890625, -0.29345703, 1.0556641, 0.6723633, -0.5605469, 0.72509766, 0.2705078, -0.3720703, -2.5917969, 0.010284424, 1.0009766, 1.328125, 0.40551758, 1.6054688, -3.7207031, 2.2851562, -3.1640625, 0.32836914, -0.13220215, -0.36083984, -3.2773438, -1.8779297, -1.3164062, -1.0146484, 3.3828125, 0.2705078, 0.8779297, -0.24035645, 0.5341797, 0.23010254, -0.03942871, -2.8261719, -0.8691406, 1.3496094, 0.36206055, -0.5463867, -3.7011719, 0.9291992, -0.30517578, 0.4326172, -0.52197266, -0.6958008, -0.33203125, 0.47143555, -0.8232422, -0.45239258, 0.6635742, -0.2529297, -1.359375, -1.0527344, -2.8164062, 0.28076172, -1.8115234, 0.6948242, 0.39160156, 1.9492188, -0.31176758, 0.6738281, 1.2167969, 0.018692017, 1.0244141, -2.4375, -2.7304688, 3.5136719, 2.1640625, -0.05682373, 1.71875, -1.7958984, -2.5703125, -1.9306641, 1.1884766, 2.65625, 2.6933594, 2.8632812, 0.3461914, -0.58984375, -0.76123047, -0.14355469, 0.21643066, -1.1757812, -0.53759766, 2.8652344, -2.4804688, -1.9365234, 0.6928711, 2.3613281, -1.8085938, -0.28051758, 0.9916992, 1.3173828, 2.7480469, 2.9179688, 1.6503906, 1.2255859, -1.7070312, 0.7133789, -0.2734375, 1.109375, 1.1933594, 0.15344238, 0.6503906, 0.15478516, 1.2070312, 2.0332031, 0.16662598, 2.3710938, 0.9169922, -0.8232422, 0.7944336, 1.2285156, -1.03125, 0.24816895, 0.7348633, 0.15283203, -0.44677734, -0.2208252, -0.2355957, -0.048736572, -0.14611816, -2.3144531, -2.46875, 2.7265625, 0.53515625, 0.83447266, 1.0537109, 1.5214844, -1.5839844, -0.85302734, 0.21203613, 0.45776367, 0.5024414, 0.4572754, -0.10064697, -0.08288574, -0.8925781, 0.4794922, -0.73779297, -2.0507812, -0.33325195, 1.9433594, -1.0849609, -1.0566406, 1.1376953, -1.4726562, -0.3334961, 2.3203125, 1.1826172, -0.96728516, -0.016174316, -2.0488281, 2.0878906, 0.5058594, -1.7167969, -1.3945312, -2.4941406, 0.29589844, 0.076660156, 0.98095703, 1.1083984, 0.9746094, -1.1669922, 0.55615234, -2.1035156, 1.734375, -0.3791504, -0.85791016, -1.1845703, 2.0390625, -0.41333008, 1.5, 1.2880859, 2.8613281, -1.0595703, 1.03125, 2.4707031, -2.5488281, -0.48583984, -2.9042969, -3.3554688, 0.43798828, -0.9873047, -0.41552734, 2.7851562, -0.7397461, 0.5283203, 1.9902344, 0.6767578, -1.6503906, -1.0898438, -1.9033203, -0.76904297, -0.1027832, -0.41967773, 0.07293701, 0.6010742, -1.6210938, -2.0800781, -0.94628906, -1.4423828, 0.3071289, 1.1347656, -2.1289062, 1.4511719, -1.8037109, 0.3449707, -0.98046875, -0.20739746, 3.1230469, -0.9013672, -0.40600586, -1.3105469, 0.74365234, -0.07507324, -1.3691406, 0.29003906, 3.3867188, -0.13391113, -0.8666992, -0.5332031, 1.3798828, 3.6894531, 0.90478516, -2.3339844, -0.3203125, 0.18737793, -1.1171875, -1.1279297, 0.14941406, -1.0009766, -1.1777344, -0.35107422, 2.7714844, 1.4326172, 1.2910156, -0.65966797, -1.640625, -0.4597168, -1.0839844, -0.95703125, -1.4101562, -0.20446777, 0.5078125, 0.030899048, 1.6123047, -1.5126953, -0.18127441, 0.35424805, 0.33032227, -1.5742188, 3.3164062, 1.9179688, 1.1943359, 3.3359375, 1.0478516, -0.95410156, 0.36254883, 0.031707764, 0.19494629, 0.050323486, -0.07141113, -0.18139648, 0.13256836, 0.74316406, -0.5805664, -0.48901367, 0.2524414, -2.1640625, -0.37426758, -1.2333984, 1.8203125, -1.5380859, -1.0556641, 2.1308594, -1.8974609, 2.7636719, -1.6279297, 0.5541992, -0.3779297, 2.2304688, -1.0078125, -0.49291992, -0.015365601, 0.16259766, 1.3876953, 0.8647461, 0.4243164, -0.91064453, 0.85546875, 0.2529297, 1.234375, -0.6464844, -0.23962402, -0.33740234, 0.796875, 0.45947266, 0.5253906, 2.0859375, 0.6166992, 1.3710938, 2.7695312, 2.4609375, -0.19189453, 0.5703125, 1.6728516, -2.9160156, 1.2041016, 0.43579102, -2.2070312, 1.7421875, 0.6772461, -3.421875, 0.6220703, 1.7138672, -0.6201172, 0.10974121, -0.7841797, -0.7397461, 0.64697266, -3.5546875, -2.5566406, -1.4277344, 0.45214844, 0.47729492, -0.023895264, 0.3334961, -0.51171875, 0.4296875, 1.8916016, -0.34423828, -0.43579102, 1.6923828, 1.0195312, -0.18969727, -0.5151367, -0.04248047, -2.8105469, 0.36987305, 3.4160156, 2.5957031, 1.6806641, 1.3955078, 1.4951172, -1.5146484, 1.2431641, -2.8320312, 3.828125, -2.2597656, -0.07800293, 1.2705078, -1.2705078, -1.578125, -3.4375, -0.3935547, 0.06817627, 2.9785156, 0.5883789, -1.3154297, 0.6088867, 0.37548828, -0.8442383, -4.5273438, -1.7871094, 0.22290039, -0.36889648, 0.19104004, 2.2753906, 1.1210938, 0.5551758, -1.6464844, 1.0898438, -0.023391724, 1.1191406, -1.8154297, -0.8930664, -0.85302734, 0.37841797, 0.40527344, 0.68652344, 0.11517334, 0.091308594, 0.24304199, -1.2314453, -1.6669922, 1.6650391, -2.9082031, -0.26098633, 3.4394531, 1.5791016, 0.36889648, 2.2363281, 0.2277832, -1.75, 2.6855469, -1.7148438, -0.38427734, 0.8276367, -1.2753906, 1.3154297, -0.3869629, -0.30249023, -0.17614746, -1.9746094, -0.32861328, 0.43164062, -1.5908203, 0.46289062, 1.7988281, 0.88671875, -0.4580078, 0.9345703, -0.5332031, 0.5654297, 1.6357422, -1.1298828, -0.24633789, -2.3613281, -2.3320312, -0.8745117, -2.6445312, -0.9008789, -2.2753906, 0.00058698654, 2.4355469, -0.4074707, 1.5820312, 0.2364502, 0.36450195, -0.79296875, 0.69384766, -0.6088867, 2.5742188, 2.1015625, -0.4951172, -1.2285156, -1.5537109, 1.1396484, 2.3613281, -0.30541992, -1.1914062, 0.61083984, -0.9921875, -0.59277344, -0.3564453, 1.5556641, 1.6796875, 0.44091797, -1.3642578, -0.35546875, 3.4257812, -0.27563477, 2.0605469, 0.8286133, 0.09710693, 1.3916016, 4.2539062, 1.59375, 0.026565552, 2.8691406, -0.9189453, 0.09423828, -0.4572754, -0.79541016, -0.5996094, -1.2578125, 0.049865723, -2.015625, -1.203125, -3.0449219, -0.44189453, 0.37597656, -1.9599609, 0.27490234, 1.9746094, 0.34204102, 0.9526367, 2.25, 1.515625, 0.41552734, -0.38134766, -0.7446289, 0.90966797, 2.2597656, -2.4804688, 2.4765625, -0.6035156, -0.79785156, -1.96875, 1.2255859, -0.9091797, 1.9814453, 1.7607422, 0.89501953, 2.5332031, 1.7666016, 2.546875, -0.03186035, 3.2109375, 0.35888672, -2.4511719, 0.38867188, 1.8330078, 3.3144531, -1.4326172, -0.7207031, 0.7758789, -0.9248047, -0.9140625, -0.4807129, -1.0966797, 1.0439453, -2.4609375, 1.9365234, 1.0888672, 0.47387695, -0.9399414, -0.041778564, -0.044799805, -0.45263672, -0.78222656, 1.1621094, 2.1425781, 0.46728516, 3.0644531, 0.117370605, -0.25390625, 0.7885742, -3.7695312, -0.03918457, 1.0439453, -1.6103516, -1.3359375, -0.6689453, 1.7373047, 1.0712891, 0.89453125, 0.9667969, 2.2050781, -0.6074219, 2.1171875, -2.53125, -0.47192383, 0.44433594, 3.0390625, -0.09326172, 0.04196167, 0.9140625, -1.1376953, -2.2578125, -3.7265625, 2.6132812, 2.3671875, 1.9023438, 0.9819336, -3.1855469, 2.7929688, -1.9824219, 2.1542969, -1.328125, 1.1220703, -0.08557129, -0.9589844, -1.4365234, -0.014091492, 0.25585938, 2.2363281, 0.71972656, -0.8046875, 0.79541016, 0.009819031, 0.9555664, 2.421875, 2.7753906, -0.4104004, 1.2705078, -0.72021484, 2.9042969, -0.057800293, -1.765625, -1.1171875, 2.6855469, -0.08288574, 1.5390625, 2.2148438, -0.51123047, -0.50878906, 0.6933594, -0.5966797, -0.96972656, -2.4003906, -1.3447266, -0.59472656, -0.2919922, -1.6357422, -0.8886719, 0.8076172, 4.5742188, 0.6591797, -0.40429688, 2.171875, -0.45043945, 1.5947266, -0.33984375, -0.7841797, -0.83984375, 1.0849609, 0.14953613, -0.46850586, -3.0292969, 0.27514648, 2.6953125, 0.064331055, -0.24963379, 0.5957031, -1.6347656, -0.71728516, -1.3369141, -0.4729004, -1.3779297, -1.0693359, 2.9785156, -0.49169922, -1.1123047, 0.46069336, 0.27197266, -1.0126953, -2.8554688, -0.77978516, -1.6289062, -0.12414551, -0.9272461, 2.1386719, 2.7089844, 0.69433594, -2.1152344, -3.1660156, -3.5976562, -1.8476562, -3.1503906, 0.6777344, -0.32836914, -0.23791504, 1.1025391, -0.24829102, 1.7285156, -1.9775391, -0.9135742, 0.83935547, -1.2617188, 1.1748047, 0.24804688, 0.47509766, 0.4814453, 0.6855469, 0.5517578, 1.9365234, 0.45507812, 0.8925781, 2.5976562, 2.1992188, 1.1943359, -0.8310547, 1.1005859, -0.097351074, -0.47070312, -0.71728516, 0.63183594, 1.3417969, 0.6298828, -1.1582031, -1.2998047, -2.8554688]}, "B00ISKDOES": {"id": "B00ISKDOES", "original": "Brand: Coleman\nName: Coleman Party Propane Grill\nDescription: \nFeatures: Compact, portable BBQ grill ideal for camping, picnics, and tailgating\nDelivers 8,000 BTUs of cooking power across grilling surface\nInstaStart push-button ignition for convenient matchless lighting\nPerfectFlow technology provides consistent performance even in extreme conditions\nDetachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area\n", "embedding": [-0.8183594, 0.40722656, 0.15942383, 2.0644531, -0.82373047, 0.48364258, 1.5126953, -1.2246094, -0.6894531, 1.7041016, -0.6044922, -0.9589844, 0.8544922, -2.9257812, -0.36254883, 0.03491211, 1.4091797, 1.5429688, 0.9819336, -0.09454346, 1.2783203, -0.9033203, 1.0966797, -0.72802734, -0.3330078, -0.6166992, 3.1894531, -5.625, -0.36865234, -0.015113831, 0.9458008, -1.7373047, -0.17541504, 3.1308594, -2.7675781, 0.3425293, -2.7792969, 1.6416016, -2.1816406, -0.7519531, -1.6972656, -1.2636719, 1.8779297, -0.43676758, -1.2539062, -0.3334961, 1.2998047, 0.11364746, -0.64990234, -1.8476562, 2.3515625, 1.5888672, 0.19360352, 0.19470215, -0.7504883, 0.5864258, -0.5913086, 0.052001953, 0.39819336, 0.33032227, 1.4326172, -0.07501221, -0.96728516, 1.59375, -1.1083984, 1.1132812, -0.2232666, -0.60546875, 0.6269531, -0.66064453, 3.0566406, -0.057006836, -3.2304688, -1.1503906, -0.35913086, -0.52001953, -4.0234375, -0.052459717, 0.77490234, -0.89990234, -1.140625, 1.8779297, 0.1809082, -2.7128906, -0.4506836, 0.5048828, -1.7939453, -0.3017578, 1.7890625, 1.1259766, -0.91259766, 1.3076172, -2.328125, -3.7421875, 1.1601562, -2.0605469, 1.8984375, 1.0566406, 0.5136719, 0.6298828, -0.47094727, 0.40698242, -1.5966797, -0.7583008, -3.1347656, -0.7167969, 1.9648438, -0.12548828, -3.390625, 2.3496094, -1.8740234, -1.1220703, 2.2285156, 0.7636719, 0.3725586, 1.1474609, 0.21032715, 2.6953125, 2.8144531, 1.0605469, 3.921875, 0.28710938, 2.2910156, -1.3339844, -0.67578125, 2.0664062, -0.48754883, 0.7416992, 2.6601562, -0.43823242, -0.6933594, 0.15258789, 3.625, 0.2644043, -2.4648438, -2.6582031, -1.9072266, -0.484375, -2.5722656, -0.28955078, -0.83740234, 0.011016846, 2.6191406, 0.10888672, -4.9453125, -1.0869141, 0.012451172, 1.4541016, -0.4399414, -2.0253906, 0.1081543, -0.8354492, -1.1611328, -0.99121094, 0.72265625, 0.48632812, -0.99560547, -1.3886719, 5.0859375, 1.1572266, 1.3037109, -1.3613281, -0.6044922, 1.4570312, 1.3847656, -0.875, -0.0413208, 0.4675293, 0.07208252, 2.3652344, 0.63964844, -3.1015625, 0.6123047, -0.03881836, 1.8310547, -0.9995117, 0.5957031, 2.6132812, 0.8691406, -0.47192383, -1.8173828, -3.0351562, 1.4228516, 0.2421875, 0.31762695, -0.6279297, -0.9589844, 0.093566895, 0.36914062, -1.8037109, 0.1508789, 0.18127441, 0.5527344, 0.3461914, -1.8876953, -1.0166016, -0.4182129, -1.4560547, 1.2148438, 1.4179688, -0.28710938, 0.023040771, -0.7475586, 0.88378906, -1.5039062, -2.171875, -0.7558594, -0.76708984, 0.32104492, 2.5585938, 1.8447266, -0.2019043, 1.4501953, -1.2900391, 0.029968262, -1.7275391, 0.38183594, 0.057922363, 2.3964844, 2.2695312, -0.084350586, -0.5620117, -0.26416016, 1.0976562, -1.3652344, 1.1728516, 1.0283203, 0.3720703, -1.2509766, -1.0546875, 1.3222656, 1.4775391, -1.9287109, 0.94921875, 1.1904297, 3.2070312, -0.23034668, -1.4882812, -0.51953125, -0.19299316, 0.17468262, -1.1347656, -0.80859375, -1.7529297, -0.20422363, -0.31469727, -1.28125, 1.4472656, 2.0703125, 0.4987793, 0.50097656, 0.5253906, -1.5664062, 3.1894531, -1.2773438, 1.1064453, -0.5878906, 0.093811035, -1.3964844, -3.0917969, 0.39624023, 2.5371094, -1.1132812, -1.2841797, 0.17004395, -0.6401367, 4.0976562, 0.44311523, -3.6894531, -1.7236328, 2.1015625, 1.2412109, 1.1445312, 2.3535156, 0.81933594, -0.9223633, -0.98876953, 1.5009766, 0.4111328, 0.63134766, 0.050231934, 1.4609375, 2.3808594, -2.2558594, -2.3046875, 0.3071289, 1.3574219, -0.8432617, -0.5966797, 0.7841797, 4.1210938, 0.020004272, -2.3320312, 3.6523438, -3.640625, 2.1015625, -0.37426758, 0.6254883, 0.38989258, -0.5644531, 3.1230469, 0.17285156, -1.7929688, 1.8808594, -2.9609375, -1.4238281, -0.6489258, -1.9921875, 0.8769531, -1.6308594, -0.49780273, -1.1689453, -1.7353516, 1.6445312, -0.13122559, -1.7138672, 2.2441406, -2.1777344, 0.62353516, 2.875, -0.058502197, 0.7675781, 1.0126953, -1.1621094, -0.2052002, 0.4963379, -1.7822266, 1.2646484, 1.3720703, -1.0166016, 0.85791016, -1.0556641, 1.9423828, -2.4433594, -3.2167969, -1.7597656, 0.9135742, -3.546875, 1.8066406, -0.6777344, -2.1074219, 0.051361084, -1.5400391, 1.6113281, -2.1054688, -2.1542969, 1.3085938, 0.8417969, -0.6328125, 0.7792969, -0.14831543, 0.07446289, 0.203125, -3.7832031, -0.58203125, 0.78515625, -0.9038086, -0.75, -0.3371582, 0.9199219, 0.0021343231, 0.8642578, 0.21496582, 0.9448242, -0.35864258, -1.5449219, 0.91503906, -3.1640625, 0.085754395, -1.9550781, -0.8564453, 0.92041016, 1.1914062, -2.2226562, -1.2939453, 2.0644531, -1.2646484, 4.7890625, -1.1103516, 0.6923828, -0.3173828, -0.93896484, 1.6601562, -0.57128906, -3.7304688, 0.097595215, 1.1259766, -0.095947266, -2.5292969, -2.4765625, -0.54052734, -1.1777344, 0.20874023, -0.82666016, 0.91259766, -1.6533203, 1.5078125, -2.5957031, 0.17675781, -0.5698242, 1.3476562, -0.48364258, -2.0507812, -2.7070312, -0.91503906, -0.6279297, -0.09436035, -0.8095703, 0.6611328, -0.69628906, -0.36938477, 1.8798828, -0.64453125, 2.3144531, -1.5966797, -4.140625, 3.5996094, 0.12384033, -0.9291992, 1.3359375, -1.8134766, -2.1621094, -5.28125, -0.93603516, 2.2460938, 2.0839844, 0.42504883, -0.51171875, 0.62646484, 1.2988281, 0.30371094, -0.65185547, -0.13439941, -0.3623047, 3.4765625, -2.0273438, -2.8847656, 0.074279785, 2.7167969, -2.0253906, -0.9868164, 2.6542969, 0.71240234, 0.8823242, 3.4453125, 0.7792969, 0.8457031, -0.28027344, 0.6328125, 2.5683594, -0.40966797, -0.4248047, -0.09942627, -1.8847656, 2.0292969, 2.1679688, -0.10357666, 1.2441406, 1.0507812, 2.3144531, 1.6464844, -2.4433594, 2.4238281, 0.7324219, 2.1328125, 1.5078125, 2.9316406, -1.40625, -1.3076172, -0.9892578, -0.8017578, 2.2734375, 0.17260742, 0.5732422, 3.2382812, 1.4511719, -0.40527344, 0.74316406, 0.40307617, 0.079833984, -0.28515625, -0.053344727, -0.55615234, -0.15307617, -0.8413086, -2.5605469, -1.7890625, -0.15039062, 2.0214844, -0.53759766, -2.2539062, 0.8378906, 3.1699219, 1.9414062, -3.171875, -2.4785156, 0.20581055, 0.03527832, 3.4277344, 0.37158203, -2.1445312, 0.20703125, -0.4946289, 1.4775391, 2.4628906, -1.4970703, -0.81933594, -0.54589844, -0.5908203, 0.4501953, 0.29736328, 2.3417969, 0.3479004, -2.1953125, 0.20861816, -4.015625, 1.1728516, -0.7739258, -3.0683594, 0.3786621, 2.5917969, -0.87353516, 0.8251953, 0.4724121, 2.9023438, -1.4560547, -1.2460938, 1.8525391, -0.7426758, -1.0273438, -2.0585938, -3.6503906, 1.3007812, -1.0878906, -1.0341797, 1.0136719, -1.4150391, -0.3930664, 1.1308594, 0.25, -2.7578125, -1.6552734, -1.8535156, -0.038360596, -1.3671875, 1.1630859, 0.81884766, -0.91748047, -2.5195312, -1.8095703, -2.2480469, -0.0007324219, 1.3691406, 2.3164062, -0.99853516, 1.7988281, -2.1191406, 1.6728516, 0.60546875, 0.3581543, 0.24279785, 0.085632324, 0.3876953, -2.9824219, 0.08294678, 1.8632812, -0.016723633, 0.96875, 1.3925781, 0.4584961, -3.0253906, 0.5810547, 1.7871094, 2.3457031, 0.09118652, -1.5585938, -0.52490234, -1, -1.3085938, -0.1060791, -0.7167969, -0.4580078, -2.0742188, 0.85253906, 0.6171875, 2.8046875, 2.1796875, -0.41967773, -1.9765625, 0.6298828, 0.45288086, -2.7304688, -1.4609375, -0.65185547, -0.8623047, -1.0126953, 1.0927734, -1.2939453, -0.22692871, 0.02671814, -0.9345703, -3.1132812, 1.9960938, 0.6166992, 2.9140625, 1.9589844, 0.06774902, -0.72753906, 1.6621094, -1.4785156, -0.73291016, 0.94189453, -2.125, -0.3413086, 0.34155273, 1.9746094, -1.0966797, -0.9238281, 0.0496521, -2.2734375, -0.9458008, -2.3730469, 1.6904297, -1.0791016, 1.0986328, -0.69628906, -1.1933594, 1.9326172, -2.828125, 0.4560547, -0.016967773, 0.6044922, -0.7705078, 0.25146484, 0.7636719, 1.5908203, 1.8583984, -0.45751953, 1.015625, -1.5849609, 1.1816406, -0.09875488, 2.0214844, -2.9765625, -0.7475586, -0.50878906, -1.4423828, -0.48510742, -0.5410156, 0.27026367, 1.8974609, 0.5986328, 2.0878906, 1.3134766, -1.0185547, 0.9760742, 1.3388672, -1.4111328, 0.87353516, 0.72509766, -1.4228516, 2.2070312, -0.44995117, -3.5234375, 1.3662109, 1.7382812, -0.44335938, 1.9101562, -0.2142334, -0.6308594, -0.3857422, -2.7558594, -0.14916992, 0.68115234, -0.328125, 0.8520508, -2.3769531, 0.7104492, -0.20935059, 1.0390625, 2.078125, -0.3251953, -2.9082031, 1.3525391, -1.1738281, -0.15490723, -1.8076172, -1.9775391, -2.7109375, -2.1425781, 1.8525391, 2.0332031, 1.5078125, 0.059143066, 0.64746094, -2.453125, -0.7182617, -2.9746094, 2.7070312, -3.4199219, -0.20910645, 1.5136719, -1.6953125, 0.96484375, -2.5722656, 0.74560547, -0.8989258, 1.8574219, 0.9667969, -0.38256836, -0.55078125, 0.7685547, -2.4492188, -3.8457031, -1.3847656, -0.26757812, 0.31860352, 0.7836914, 2.4296875, -1.6445312, -0.12084961, -0.35083008, -1.7421875, -0.9580078, -0.23388672, -1.6279297, -0.7910156, -0.16894531, 1.6962891, -1.8789062, 0.0513916, -0.59765625, 1.2910156, -0.8564453, -4.6484375, -1.3466797, 1.2695312, -0.7832031, -0.05508423, 1.9033203, -0.4104004, 0.0960083, 0.8930664, 1.5195312, -1.2148438, 2.4765625, -0.32104492, -0.7636719, 1.0742188, -0.28051758, -0.20947266, -0.033172607, -0.7939453, -0.12768555, -1.6601562, 1.5371094, 0.5917969, 0.010719299, 0.00085926056, 1.3261719, 1.1396484, 0.074279785, 1.3828125, 0.84765625, 2.484375, 0.5517578, -0.4970703, -1.3251953, -2.4433594, -3.484375, 0.31103516, -0.95166016, -0.7626953, -2.9472656, 1.8779297, 1.5498047, 2.640625, 0.32885742, 1.5234375, 2.2167969, -0.45532227, -0.070251465, -0.3244629, 3.2441406, 2.4375, -1.8251953, -1.4804688, -0.1427002, 0.93359375, 0.026031494, 1.4824219, 0.14855957, -1.0205078, -2.0996094, 0.8232422, -0.56689453, 3.9003906, 1.8837891, 1.0527344, -0.97314453, 1.3339844, 3.734375, -1.3447266, 0.5366211, 0.96875, 1.4541016, -0.010231018, 3.1269531, -1.1035156, -2.5546875, 1.9404297, -1.3964844, 1.3671875, -0.41210938, -1.4921875, 1.7851562, -1.4775391, -1.3125, -1.4628906, 0.21704102, -3.2070312, 2.9121094, 0.8466797, -1.6376953, 0.57470703, 2.5683594, -0.35498047, 0.44628906, 1.3720703, 0.8886719, 0.34033203, 0.44189453, 0.8354492, 0.07885742, 1.4140625, -1.7587891, 3.421875, -0.6352539, -2.4921875, 0.5107422, 3.3691406, 1.0039062, 2.6425781, 2.2558594, 2.3808594, 3.4082031, 1.8710938, 4.0234375, 0.4272461, 1.0302734, 1.4101562, -2.0078125, 0.047180176, 2.6523438, 1.8935547, 0.097961426, -0.6689453, 0.90625, -0.94384766, 0.2685547, -0.6152344, 2.4433594, 0.07366943, -3.7597656, 1.5, 1.5576172, 2.4375, -0.6230469, -0.50927734, -0.07763672, 0.34521484, -1.4775391, 0.29516602, 0.44189453, -1.0166016, 0.97558594, -0.07788086, -0.08850098, 1.2666016, -1.59375, -0.8730469, -0.7314453, -0.5161133, 0.6723633, 0.035827637, 1.2255859, 1.5771484, -0.36157227, 2.0859375, 0.64208984, -0.66259766, 1.6308594, 0.12817383, 0.78759766, 1.2089844, 2.1816406, 0.4892578, -1.1132812, 1.1572266, -0.15844727, -1.9990234, -4.3125, 0.8574219, 1.2373047, 0.29516602, 0.33813477, -2.078125, 1.5673828, 1.1152344, 2.4492188, -0.7993164, 2.8828125, -1.0283203, -1.3173828, -0.76953125, 0.34057617, 1.0820312, 2.3535156, 1.9101562, -1.1523438, 2.1621094, 0.21374512, 2.2753906, -0.27929688, 1.1347656, 1.5283203, 1.9765625, -1.7714844, 1.8007812, 0.5292969, 1.6484375, -1.1210938, 2.9609375, 1.1376953, 0.0335083, -0.12408447, -1.2705078, 1.4228516, -0.24609375, -1.6914062, -2.109375, -2.4648438, -2.0605469, 0.77734375, 0.9682617, -0.5136719, -0.22229004, 0.9404297, 2.2246094, -0.3395996, 1.5488281, 1.8037109, -0.19433594, 1.5078125, -1.3183594, -0.7558594, -1.3847656, 1.4111328, 1.2958984, 0.41381836, 0.11975098, 0.9370117, 1.4189453, 0.64501953, -0.55322266, 0.08984375, -0.8886719, -1.3466797, -0.8173828, 0.9145508, -0.1430664, -0.35253906, 0.20703125, 1.2773438, 0.95458984, 0.8833008, -0.8041992, -1.7929688, -1.1826172, -2.1074219, -0.064819336, -1.8847656, -1.0449219, 1.7548828, 4.1796875, -0.072509766, -0.2692871, -2.8222656, -2.8847656, -1.9384766, -1.2988281, 3.2617188, 1.1630859, -1.1689453, 1.1298828, -0.20495605, 1.6660156, -1.3066406, -0.7026367, 0.08306885, 0.9316406, 0.79296875, 0.9326172, 0.32617188, 1.8652344, -0.62158203, 0.14501953, 2.2734375, 1.3466797, 0.9013672, 2.4296875, -0.73291016, 0.94628906, -2.3652344, 0.6010742, -0.6855469, -1.6123047, -1.9101562, 2.7558594, 2.5644531, 0.59375, -1.2285156, -2.7480469, -1.4160156]}, "B09CKPH9ZJ": {"id": "B09CKPH9ZJ", "original": "Brand: Royal Gourmet\nName: Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver\nDescription: \nFeatures: Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways.\n2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle.\nHeat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking.\nCabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up.\nProtected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.\n", "embedding": [-0.8623047, 0.042266846, 2.7226562, 0.21435547, -1.9736328, 0.33813477, 1.5214844, -0.36035156, -0.81933594, 0.9975586, 0.5576172, -0.5292969, -0.06137085, -3.6679688, 1.4433594, -0.9291992, 0.5004883, 1.7216797, 2.0449219, -0.41967773, -0.06536865, 1.6279297, 1.9677734, -0.081970215, 0.024536133, 1.0322266, 3.6875, -3.65625, 0.5473633, -1.5009766, 1.3222656, -0.9033203, 0.23583984, 1.6269531, -1.6796875, -0.87841797, -1.4121094, 1.6777344, -1.5849609, 0.18066406, -0.52001953, -0.9301758, 2.2148438, 1.0419922, -1.9248047, -1.6669922, -0.5029297, 1.5429688, -1.2871094, -0.047851562, 1.2333984, 2.7089844, -0.0015573502, 1.4033203, -1.8173828, 2.4335938, 1.0439453, -0.8496094, 1.0839844, -0.13745117, 2.3867188, -0.42211914, -2.9257812, 0.4638672, -0.31958008, -1.5498047, 0.48901367, 0.90234375, -0.43432617, -0.8984375, 1.5585938, 0.24267578, -0.7524414, 0.55029297, -0.46728516, -1.1142578, -1.6865234, 2.4921875, 1.2587891, -1.0673828, -3.0976562, 2.5546875, -0.48388672, -1.3662109, -0.7397461, 0.16174316, -0.85302734, -0.36694336, 1.4404297, -0.08508301, -0.19567871, 1.1660156, -2.2089844, -4.5039062, 1.5166016, 0.2487793, 2.0039062, 1.1376953, 1.0585938, 1.2695312, 1.0078125, -0.85009766, -1.5029297, -1.1230469, -1.7548828, -1.1015625, 1.1386719, 1.4746094, -0.8330078, -0.025283813, -1.2236328, 0.7705078, 0.7705078, -0.8046875, -0.0014591217, 0.74316406, -1.0244141, 2.4316406, 0.31640625, 1.9287109, 2.2753906, -1.3193359, -0.084106445, -2.0644531, 1.6621094, 1.6972656, -0.7368164, 1.3974609, 6.4648438, -1.7001953, -0.15454102, -1.6201172, 1.3564453, 0.69189453, -0.58740234, -2.0546875, -3.2851562, -0.2084961, -3.1855469, 0.88183594, -1.7451172, 0.096069336, 0.55322266, -1.1875, -3.0898438, -1.21875, -0.25878906, 1.5751953, -1.4882812, -1.0341797, 1.0234375, -2.875, 1.0341797, -2.6367188, 1.7011719, -2.2851562, -0.6977539, -1.6660156, 3.8574219, 2.3007812, 1.6757812, -1.8740234, -1.4736328, 0.79589844, -0.5703125, -2.4550781, -1.25, 2.1972656, 0.077697754, 2.7617188, -0.6328125, -0.34643555, -0.96972656, -0.44555664, -0.23449707, -0.5102539, -1.0185547, 2.1269531, 0.1463623, -0.19055176, -0.8198242, -1.7880859, -0.80810547, 0.93896484, -0.2692871, -0.69091797, 0.09649658, 0.3425293, 1.7177734, -1.5820312, 0.28515625, 1.2158203, -0.11224365, 0.64501953, -1.0800781, -1.6435547, -1.0224609, -1.1357422, -0.5395508, 0.14501953, -0.4350586, 0.52783203, -0.2602539, -0.12670898, -3.4316406, -3.1757812, -0.7583008, -1.5644531, 2.3300781, 2.0507812, 2.3300781, -2.203125, 1.7099609, -0.84033203, -0.50390625, -2.4160156, 1.5693359, -0.33496094, 1.5126953, 2.3320312, -0.66308594, -0.11444092, 1.2373047, 3.2265625, -0.55908203, 2.2988281, 1.3710938, 1.2607422, -2.1875, -1.0332031, 0.9848633, 1.1123047, -0.16870117, 0.39501953, -1.0039062, 0.93115234, 0.3359375, -1.5332031, -0.8457031, 0.22265625, -0.080444336, 0.36035156, -1.328125, -0.37597656, 0.22399902, 2.203125, -0.5942383, 1.9960938, 0.6201172, -0.94970703, -0.7348633, 0.19458008, 1.2011719, -0.65722656, -0.27197266, 1.3642578, -0.30639648, -0.77441406, -0.8256836, -1.5957031, 1.8974609, -0.8979492, -1.171875, -1.1777344, -0.046020508, -1.6884766, 2.2949219, 0.8442383, -1.3798828, -1.2460938, 0.71533203, -0.12658691, 1.8623047, 0.25854492, 2.6738281, 2.0058594, 0.19995117, 1.4394531, -0.7050781, 1.1240234, 1.2558594, 0.3876953, 1.6054688, -2.5136719, -0.30419922, 0.1817627, 0.006816864, -1.8984375, -1.1787109, 1.2080078, 3.4726562, -1.1972656, -2.0332031, 3.5898438, -0.5209961, -1.4873047, 1.9169922, -0.89746094, -0.6040039, 0.69873047, 0.8198242, 1.0283203, 1.0849609, -0.2939453, -2.0527344, -2.1464844, 0.6352539, -1.2597656, -1.2177734, 1.0546875, -0.13635254, -1.9189453, -2.2734375, -0.3449707, -1.7978516, -0.64990234, 1.7578125, -2.734375, 2.2207031, 0.73095703, 1.3046875, 1.6845703, -1.1582031, -1.4609375, -0.9165039, 1.0146484, -0.31640625, 0.84765625, 0.8095703, -0.1484375, 0.49975586, -0.69433594, -0.2878418, -0.7324219, -1.9013672, -0.54345703, -2.4824219, -2.8066406, -0.54052734, -1.9208984, 0.49267578, -0.15429688, -2.8945312, -0.06518555, 0.08728027, -4.9453125, -1.6943359, -0.83691406, -2.6386719, 1.7607422, -0.9897461, -0.3581543, -0.19763184, -3.5507812, 0.22314453, -0.9140625, -1.7802734, 1.5224609, -0.6508789, -0.99902344, -0.5883789, -0.16699219, -0.5883789, 0.94091797, 0.4765625, -0.1821289, 0.8461914, -2.46875, 0.02027893, -2.8574219, -1.6591797, -2.7441406, 1.7783203, -2.1367188, -2.09375, 1.3847656, -0.7211914, 3.0585938, -0.28442383, 1.7773438, 0.82128906, -0.24438477, 1.3369141, -1.4033203, -1.5615234, -1.6513672, 1.5849609, -3.21875, -2.8359375, -2.1621094, -1.3066406, 0.17114258, 1.3916016, -0.69384766, 1.8222656, -0.9482422, 2.6464844, -1.2958984, -0.17297363, -0.26098633, 1.9746094, -0.19873047, -0.5942383, -0.2746582, -0.74658203, -1.2070312, -2.7929688, 1.3916016, 2.5566406, 0.23132324, 1.1855469, -0.079956055, -0.4428711, 0.9692383, -0.10772705, -3.2539062, 2.5097656, 1.0693359, -0.28295898, 3.3496094, -0.6323242, -2.6152344, -1.6591797, -0.04034424, 3.7753906, 1.7451172, 2.3769531, 0.9248047, 0.0748291, 0.9633789, 1.5214844, -0.64160156, -0.24707031, -0.8413086, 4.3164062, -1.7734375, -1.6083984, 1.9423828, 1.5634766, -1.6113281, -1.2568359, 2.8984375, -0.17810059, 3.2441406, 2.4609375, 0.099975586, 1.2509766, -0.6816406, 2.4804688, -0.06652832, -1.1503906, 0.96191406, -0.16467285, 0.83251953, -0.26245117, 1.5585938, 3.0214844, -0.27368164, 1.7783203, 1.3710938, 0.85595703, -1.6826172, 1.0166016, 0.3005371, 3.1914062, 0.19580078, 2.4824219, -0.39746094, 1.2050781, -0.56689453, -1.6533203, -0.00011175871, -2.6425781, 0.8642578, 1.9189453, -0.85009766, -0.030014038, 0.18225098, -0.056915283, 1.4150391, 0.27905273, 1.7744141, -3.2910156, -0.36279297, 1.4023438, -1.3310547, -1.1230469, -3.8085938, 1.7763672, -0.94189453, -0.08087158, 0.6142578, 3.4746094, -0.37695312, -2.1171875, 2.3144531, 0.75683594, -1.5634766, 2.390625, 0.6035156, -0.84228516, 1.3779297, -3.1484375, 1.6708984, -0.87158203, -0.033996582, 0.11578369, -0.2783203, -0.033935547, -1.5820312, 1.0361328, 1.2402344, 1.8583984, -2.1679688, -0.61083984, -3.3613281, 0.19262695, 0.20605469, -2.3828125, -1.3457031, 2.3417969, 1.2304688, 0.93359375, -1.6191406, 3.1230469, 0.17028809, -1.796875, 1.7851562, -3.390625, -1.6542969, -3.390625, -3.5195312, 0.3322754, -0.72265625, -2.0859375, 2.9570312, 1.5546875, -0.5024414, 1.3486328, 0.06951904, -2.6035156, -0.5786133, -1.4199219, -1.4951172, -1.0664062, -1.2021484, 1.7714844, -0.9135742, -2.8457031, -2.015625, -0.48217773, -1.8476562, 1.9160156, 2.0039062, -1.8066406, 1.859375, -1.3496094, 0.41333008, -0.4814453, -1.4892578, 1.3632812, -0.34594727, 0.39892578, -2.3886719, 0.6538086, 0.39746094, -0.40673828, 1.0068359, 1.7392578, -0.6464844, -0.56347656, -0.27563477, 1.1875, 2.9785156, -1.0195312, -3.3574219, -1.515625, 0.0713501, 0.64746094, -0.9741211, -0.02418518, -0.42504883, -0.72802734, 0.38085938, 2.1875, 1.9472656, 2.4160156, 0.7626953, -1.5117188, 0.6333008, -0.50683594, -1.7802734, -0.94970703, -0.63720703, 1.0703125, 0.046905518, -1.5966797, -1.1650391, 1.0439453, -1.3251953, -0.2932129, -2.3320312, 3.5488281, 2.6640625, 2.0878906, 2.6015625, -2.2089844, 0.32788086, 0.19702148, -0.20898438, -0.34179688, 0.18811035, -0.038879395, 1.1728516, 0.7651367, 0.64501953, -3.0097656, -0.04437256, -0.16418457, -1.5078125, 0.34716797, 0.051849365, 0.75927734, -1.8095703, -0.22631836, 1.4931641, -0.49316406, 2.515625, -1.7119141, -1.0712891, 0.20959473, -0.38989258, -0.43359375, 0.8774414, -0.34057617, 0.2548828, 0.9042969, 1.0087891, -0.7788086, -2.0703125, 0.2442627, 0.29833984, 1.515625, -0.26831055, 1.078125, 0.2788086, 0.8251953, -0.27124023, -1.4248047, 1.8710938, 2.2011719, -0.40893555, 3.234375, 1.3818359, -0.8417969, 1.7099609, -1.0712891, -2.8691406, 0.25219727, 0.45947266, -0.2890625, 1.6728516, 1.2792969, -3.9589844, -1.9580078, 2.2832031, -1.0136719, -0.12731934, -1.1884766, -1.890625, 1.1347656, -1.3574219, -0.67529297, -0.3154297, 0.8432617, -0.22485352, -0.5498047, 0.6376953, -1.8945312, 0.87841797, 2.9316406, 0.010871887, -2.4238281, 1.6025391, -0.17358398, 0.8378906, -0.115112305, -0.18908691, -2.5, -0.8232422, 4.140625, 0.92285156, 2.6484375, 0.1730957, 1.2041016, -1.7070312, 0.83984375, -1.4257812, 3.7617188, -2.3886719, -1.3076172, 2.4921875, -3.4257812, 0.59716797, -1.515625, 0.9716797, 0.7265625, 2.7441406, 0.5239258, -0.052490234, -0.7597656, 1.4013672, -2.5546875, -4.0585938, -2.703125, 0.7060547, 0.26660156, 0.25170898, 1.2626953, -1.1171875, 1.3144531, 0.5209961, 0.55029297, -1.8261719, -0.8520508, -3.0878906, -1.2363281, -1.4482422, 0.17822266, 0.6767578, 2.8984375, 0.75146484, 1.0742188, 0.9013672, -5.2851562, -1.6982422, 0.86279297, -2.2890625, 2.1210938, 2.0800781, 0.3881836, 1.4033203, 0.29370117, -0.21862793, -1.7929688, 2.2851562, -1.1103516, 0.53564453, 1.0527344, -0.6459961, -0.3251953, 0.08917236, -2.0039062, -0.099243164, -0.92089844, 1.5703125, 0.7915039, -0.2800293, 0.5942383, 1.9804688, -0.4272461, -1.59375, 0.6464844, 1.2773438, 0.81396484, -0.4658203, -0.92041016, -1.1083984, -1.9267578, -2.2089844, -0.69384766, -2.2402344, 0.75146484, -0.56152344, 1.5595703, 0.6333008, 0.42163086, 0.002439499, -0.04751587, -0.28149414, -1.4433594, 1.34375, -1.5019531, 1.6835938, 1.4980469, -1.4150391, -0.43481445, -0.6904297, 0.49414062, 0.8984375, 0.7158203, 0.2109375, 0.37109375, -0.06555176, -0.4140625, 0.45898438, 0.7495117, 0.4326172, 0.53515625, -0.8618164, 2.65625, 3.4335938, -0.93115234, 0.7949219, -0.03945923, 1.09375, -2.0800781, 3.5703125, -1.4511719, -2.3964844, 0.3408203, -1.9589844, -0.38085938, 0.6328125, -0.91015625, 0.18273926, -1.1533203, -1.9208984, -2.2753906, -0.18554688, -3.4511719, 1.4521484, 1.0410156, -1.8310547, -0.38964844, 2.8652344, 0.22692871, 2.1152344, 1.4150391, -0.008872986, -0.4423828, 1.1201172, -1.5107422, -0.5214844, 1.5419922, -2.2480469, 1.7607422, 0.24401855, -0.24865723, -1.4042969, 2.1582031, -0.2956543, 2.5625, 2.1210938, 0.9477539, 2.3105469, 2.0722656, 1.5234375, 0.49975586, 1.1875, 1.9912109, -1.0332031, 1.8837891, 1.953125, 3.3476562, 2.3515625, -0.6748047, 2.1289062, -0.6777344, -1.0097656, 0.54589844, 0.6191406, 1.5107422, -2.4238281, 2.0644531, 0.59521484, -0.01247406, -2.46875, 0.115722656, -0.71777344, -1.6894531, 0.42211914, 0.009788513, 3.5644531, -1.1738281, 1.1279297, 0.51660156, -0.27685547, 2.890625, -4.0195312, 0.2644043, 1.9746094, -1.3105469, -0.84472656, -0.29467773, 0.4111328, -0.103881836, 0.73046875, 0.69873047, 1.5644531, 1.3632812, -0.32763672, -1.7431641, 0.7319336, 0.30932617, 3, 1.0878906, -0.5126953, 1.1220703, -0.97021484, -1.0605469, -3.3320312, 2.8691406, 1.5546875, 1.2392578, 1.9755859, -2.2265625, 2.5429688, 0.13989258, 1.7216797, -1.5683594, 0.6826172, -0.3503418, -2.6796875, -0.9560547, 1.0488281, -0.15014648, 3.3867188, 1.25, -0.16748047, 2.8203125, -0.31420898, 1.3710938, 1.21875, 1.9179688, 0.20788574, 0.4831543, 0.55029297, 1.4648438, 0.6640625, -1.1630859, -1.6484375, 1.7431641, 0.8769531, 0.051849365, 1.3583984, 0.7758789, 0.26513672, 0.19262695, -0.4025879, 0.5629883, -2.4316406, -1.8066406, -1.0419922, 0.2536621, -0.7109375, -1.3183594, 1.2529297, 0.70214844, -0.91796875, 0.28808594, 3.7949219, -0.4543457, 3.2460938, 0.9790039, 0.021453857, -1.5986328, -0.4580078, 0.36914062, 0.27368164, -1.9384766, -0.36767578, 1.2470703, 0.6850586, -1.3203125, 0.1394043, 2.03125, 0.18408203, -0.076293945, 0.20117188, -2.2578125, -0.07714844, 1.3955078, -0.21252441, -1.1621094, 3.1445312, 0.97558594, -0.23071289, -1.3828125, -2.2636719, -1.3056641, -1.2929688, -0.72802734, 1.5673828, 2.1972656, 2.4746094, -0.15563965, -0.38452148, -4.9609375, -1.5478516, -0.3581543, 2.2363281, -0.9008789, -0.39770508, 0.38671875, -0.36523438, 1.7763672, 0.1385498, -2.4824219, 0.6635742, -1.5654297, 0.93652344, 0.41796875, 2.1796875, -1.0419922, 2.1269531, 0.72558594, 1.7138672, 1.6240234, -0.8051758, 0.71240234, 2.2890625, -0.5566406, -2.6582031, 1.5849609, -0.49853516, -0.093566895, -0.19946289, 1.1806641, 0.4633789, 1.4794922, 1.6181641, -0.32714844, -2.4121094]}, "B00O4D1CUG": {"id": "B00O4D1CUG", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 3\nDescription: The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600\u00b0 F.\nFeatures: \n", "embedding": [0.34765625, 1.6240234, 1.7519531, 0.05999756, 1.1054688, -1.5400391, 0.33007812, 0.3798828, 0.48779297, 0.3696289, 1.0371094, -0.9501953, -0.32910156, -2.3710938, -1.2314453, -1.6435547, -0.9970703, 1.1210938, 0.73291016, 2.5488281, 1.5566406, -0.35424805, 2.2558594, -2.7714844, 1.1894531, 1.2744141, 2.7304688, -1.6142578, 0.98583984, -1.5761719, 0.12573242, -2.671875, -0.8208008, 0.6508789, -1.8759766, 0.24169922, -0.54833984, -0.5473633, -3.4238281, -1.4199219, -1.5654297, 2.1621094, 3.3886719, -0.27172852, -0.7915039, 2.0136719, -1.5253906, 0.89501953, 0.25463867, 0.37475586, 1.3242188, 0.32128906, 0.0030536652, 0.08087158, 1.4482422, -0.48950195, 0.32128906, -2.7714844, 1.5605469, -0.54003906, 2.0371094, -0.04046631, -1.8164062, 0.58154297, 0.14611816, 1.0136719, -1.8544922, -0.3059082, 0.9057617, 0.55566406, 4.1054688, 2.5976562, 2.2675781, -0.80810547, 0.39038086, 0.65722656, -2.1484375, 1.9082031, 1.1181641, -0.3491211, 0.30029297, 1.3144531, 1.2841797, -1.4443359, 0.36010742, -0.77734375, -1.375, 1.0917969, 0.3864746, 0.97216797, -0.61816406, 1.5644531, -0.71191406, -3.0019531, 3.1308594, -0.38330078, -0.6699219, 1.2119141, 0.7504883, 0.05734253, 0.8149414, -1.46875, -2.7636719, -0.08618164, -1.1992188, 1.1630859, -1.0585938, 2.1210938, -1.421875, 0.7548828, -1.0039062, -0.18127441, 2.4765625, 1.5195312, -2.5566406, -1.5703125, 0.6303711, -0.35961914, 3.546875, 1.3515625, 2.9921875, -1.4755859, -0.53466797, -1.1181641, 0.20483398, 1.265625, -1.640625, 0.96484375, 2.8203125, 0.0012321472, -0.67285156, -1.5263672, 2.4863281, -1.1943359, -0.5683594, -1.2949219, -1.46875, 0.3996582, -3.0273438, -3.09375, -2.8378906, 2.4160156, 0.24645996, -0.52978516, -3.6074219, -0.6220703, -0.8984375, 1.1376953, 0.033721924, -1.5615234, 0.82910156, -1.3632812, -2.8222656, -0.00072288513, 1.8291016, 2.4238281, -1.6337891, -0.4404297, 3.9492188, 1.9492188, 1.4199219, -0.5053711, -1.1191406, 0.8652344, -2.1289062, -2.4765625, 1.3896484, 1.5996094, -1.78125, 2.1191406, 0.5341797, -2.5214844, -0.40600586, 0.97558594, -1.4667969, -2.3828125, 2.0820312, 3.8964844, 0.33203125, -0.2783203, -1.6347656, -1.453125, 2.5605469, -3.0585938, 0.41796875, -0.90771484, -1.3691406, -1.3134766, -0.15209961, -1.5488281, 0.3005371, -0.045898438, -0.22680664, 0.34521484, 1.4589844, -1.8154297, -1.390625, -1.8203125, 1.0107422, 1.4257812, -3.1679688, -1.5244141, 1.4541016, 1.890625, -2.6679688, -0.6118164, 2.203125, -0.68066406, 1.1533203, 0.5214844, -0.35961914, -0.05279541, 2.1621094, -2.3125, 1.7958984, -2.2480469, 1.09375, 0.5444336, 2.296875, 0.73583984, 1.2138672, -2.2070312, -0.29541016, 0.7871094, 2.8789062, 2.4960938, -1.1386719, -1.6269531, -1.0146484, -0.22460938, 0.89453125, 1.4082031, -0.91845703, -0.032928467, -0.26660156, 1.90625, -1.0576172, -1.4267578, 1.7705078, -1.0039062, -0.65771484, -0.74560547, -0.49023438, -1.203125, 0.9003906, 0.35205078, 0.5859375, -0.7055664, 0.7182617, 0.19018555, 1.8769531, -1.0830078, 1.6318359, -0.09338379, -1.2167969, -0.8378906, 0.11248779, 0.046936035, 1.1962891, -2.2128906, 2.2324219, 1.015625, -0.051727295, -1.7050781, 0.15808105, -2.0683594, 1.3681641, -0.47851562, 0.25610352, 0.64160156, 0.45532227, 1.4052734, 2.4003906, 1.1611328, 2.0449219, 1.8652344, -2.4316406, 2.5585938, -1.3066406, 0.75, 1.1162109, -0.8925781, 1.8095703, -3.7011719, -0.19958496, 0.75341797, 1.6533203, -0.3623047, -0.8754883, 0.7495117, 4.9492188, -0.82714844, -1.6357422, 2.3085938, 1.2460938, 2.78125, 1.9257812, 1.2089844, 0.17138672, -2.4824219, 3.5136719, 1.7138672, -1.2109375, 1.3769531, -1.4716797, 0.0140686035, -0.0033187866, -0.22070312, 1.6396484, -1.5498047, -1.0976562, 0.8666992, -1.0917969, 2.5, -3.2363281, -0.29516602, 1.4912109, -2.7285156, 0.9902344, 0.17163086, 0.42456055, 3.5605469, 2.1425781, -0.35009766, 0.6748047, -0.0076179504, -3.0820312, 2.5097656, 1.4345703, 0.25708008, 0.83691406, -2.8339844, 1.4140625, -1.6308594, 0.078186035, 0.54296875, -0.43896484, -3.34375, 1.7841797, -1.390625, -1.8515625, 2.9960938, -1.2802734, 2.9921875, -0.7675781, -0.9296875, -1.0683594, 1.4248047, -0.81933594, -1.265625, 0.95214844, 3.6660156, -1.0683594, -2.7324219, -0.6401367, -0.54541016, 0.40478516, 1.9833984, 0.13903809, 2.0859375, -0.23181152, -0.890625, -0.060150146, 1.21875, -0.124694824, -1.9619141, 3.0214844, -3.5507812, 0.9243164, -0.80078125, 3.6367188, 0.22302246, 1.3857422, -1.0976562, -0.32373047, 0.66796875, -1.3642578, 2.0234375, 1.2910156, 1.0810547, 0.6694336, -1.7363281, 0.07757568, -0.4970703, -3.2226562, 1.2958984, 1.2802734, -0.9658203, -2.8515625, -3.3339844, -0.34472656, -1.140625, -0.69091797, 1.109375, -0.3347168, -2.6230469, 0.29833984, -0.6699219, -0.6142578, 0.7871094, -1.328125, 0.21960449, -1.8916016, -0.3527832, 0.57470703, -0.7416992, 0.64501953, -1.6357422, 0.19567871, -0.33007812, 0.7841797, 0.08026123, 0.8925781, 0.26000977, 1.4638672, -3.1621094, 1.4658203, 0.77197266, -0.20568848, 0.6855469, -1.7861328, -0.23022461, -2.6503906, -1.0527344, 3.65625, -0.9199219, 0.14587402, 0.39892578, 1.2587891, 0.3076172, 1.2011719, -3.2636719, -1.1074219, -0.578125, 0.296875, -3.4921875, 0.1227417, 1.5107422, 2.0742188, -0.94433594, -0.43896484, 2.2949219, -0.6899414, 1.421875, 2.1679688, -0.42529297, 0.82470703, -1.0693359, -0.7783203, 2.2226562, -1.328125, -0.0053100586, 0.39672852, -1.0556641, 1.1923828, 0.6088867, -0.7558594, -0.36669922, 2.8828125, 2.1777344, 1.671875, -0.41479492, 0.66015625, -1.0400391, 0.9394531, 0.62939453, 0.9741211, -0.8334961, -0.82470703, -0.15197754, 0.6582031, 1.6035156, -1.2421875, -1.9765625, 0.25439453, -0.2529297, -1.2392578, -0.2010498, 0.94189453, -0.7753906, -1.0244141, 1.2421875, -0.17932129, 0.011001587, 0.42993164, -0.11529541, 3.328125, -1.5419922, 0.44702148, -1.6181641, -1.3261719, -1.0498047, -0.75927734, -1.8251953, -2.296875, -3.3378906, -0.70947266, -1.7333984, 4.5078125, 0.30004883, -2.0488281, -1.3017578, -0.7890625, -0.013954163, -0.2088623, -0.9370117, -1.0722656, -3.4316406, -0.9916992, 0.21801758, 1.5166016, 0.20751953, 0.52685547, 0.04269409, 2.5566406, -1.2597656, 1.9697266, -1.3496094, -1.4589844, -0.8251953, 1.4199219, -1.5830078, 1.2226562, 0.78222656, 2.0976562, -0.07165527, -2.4492188, 0.025939941, -0.15356445, -2.0253906, -2.7734375, -1.8447266, 1.2236328, -0.10656738, 1.8105469, 2.5507812, 0.11303711, -0.051361084, 0.5839844, 2.5664062, -1.6210938, -1.6904297, 1.1230469, 3.9863281, -1.859375, -2.2988281, 2.2714844, 0.29858398, -1.8818359, 0.14929199, -0.8515625, -1.5986328, -0.058135986, 1.234375, -0.9501953, 1.0068359, 0.19824219, 0.5727539, 0.19580078, -1.5214844, 1.0009766, -0.21520996, -1.0732422, -3.6679688, 0.8808594, 1.1982422, 0.76708984, 0.95410156, 1.890625, 3.7265625, -1.0439453, 0.7290039, 0.6777344, 3.9316406, 0.5073242, -1.8330078, 0.8779297, -1.5507812, 0.37963867, -3.0585938, -0.26245117, -0.94091797, -2.2675781, 2.9960938, 0.7705078, -0.23303223, 1.4931641, -0.32128906, -1.0820312, 0.875, 0.6357422, -2.5117188, 0.1282959, 2.2265625, -1.0791016, -1.3984375, 0.62158203, -1.3798828, -0.47924805, -0.14587402, 0.12792969, -1.3300781, -0.90966797, 3.3320312, 0.7998047, 0.054656982, -0.73339844, -2.0625, -2.2324219, 0.48583984, 1.1367188, 0.28466797, 0.52685547, 0.89746094, 1.8847656, -1.1279297, -0.67578125, 0.43017578, 1.3046875, -2.2675781, -1.4101562, 0.20239258, -1.2509766, -3.5664062, 0.40649414, -1.3046875, -1.4082031, 2.0507812, -1.0107422, -0.6816406, 1.2900391, 0.066101074, -0.47460938, -0.54833984, 1.5996094, 1.4091797, 0.7397461, 2.4902344, 2.453125, 0.13317871, 1.7792969, 0.5029297, 0.57910156, -0.1038208, 1.9287109, -0.33251953, 0.4416504, -0.56591797, -0.24316406, 1.2617188, -0.31396484, 0.8017578, 3.1914062, 0.515625, -0.73779297, -0.50097656, 1.9130859, -0.70703125, -0.78466797, -1.0185547, -2.4179688, 2.3222656, -0.02218628, -1.8037109, 0.6069336, 2.0019531, 0.83740234, 1.3632812, 0.46362305, 0.24694824, -0.95703125, -0.96484375, -2.7871094, -1.5341797, 2.4960938, 0.8930664, -0.23815918, 0.9970703, -0.21569824, 2.6875, 1.6855469, 1.8203125, -1.1259766, 0.40527344, -0.16625977, 0.7348633, 0.375, -1.3994141, -0.7944336, 3.21875, -0.57177734, 1.4912109, 0.7753906, 0.27319336, 4.0820312, -1.4462891, -1.3544922, -0.671875, 0.3491211, -2.6992188, -0.6425781, 1.9042969, 1.7412109, 1.3564453, -1.0888672, -2.2460938, -1.5996094, 0.6928711, -0.71972656, -0.8466797, -2.3046875, -0.89697266, -3.5, -4.8046875, -1.0693359, 0.0236969, 0.11682129, 0.6748047, 0.2019043, -2.0800781, 0.9458008, -2.4375, -0.19274902, -1.8818359, 0.19018555, -2.6992188, -0.43798828, -1.4863281, 0.81933594, -0.08929443, -0.09197998, -0.89941406, -0.6166992, 2.8261719, -2.6191406, -4.0625, 3.046875, -0.8857422, 0.42871094, 0.6479492, -1.8369141, 2.1777344, 3.7910156, -0.1730957, -1.6455078, 0.5908203, -2.2851562, -0.1430664, 0.5229492, -2.3710938, -2.640625, 2.4765625, 2.046875, 0.5258789, 4.5234375, 1.4658203, -2.28125, -0.4885254, 0.016784668, -1.09375, -0.015266418, 0.49780273, 1.6083984, -0.87841797, 1.2285156, 1.6582031, 0.9770508, -4.1328125, -0.38085938, 1.2060547, -1.09375, -1.6162109, 1.1582031, -1.0380859, 2.0410156, 0.35083008, 1.8193359, 0.2006836, -1.8886719, -0.3178711, 0.38842773, 2.2207031, -0.47509766, 4.4960938, -3.1132812, -3.1972656, -2.4199219, -1.5585938, 3.3789062, 0.7753906, -2.3046875, -0.0011777878, 0.8803711, -1.3603516, 0.33032227, 0.16491699, 0.06921387, 0.0066833496, 0.023803711, -2.65625, 0.9433594, 0.72998047, -1.5068359, -0.7558594, 1.2890625, -1.6357422, 0.2841797, -0.64404297, 1.8886719, -2.3359375, -1.375, -1.8916016, 0.20166016, -0.73095703, 0.22888184, 0.5410156, -1.6748047, -0.2220459, 1.2666016, 0.41918945, -2.3828125, -0.33374023, 1.0400391, -0.7973633, 1.5859375, 2.4082031, -2.203125, 0.7734375, 1.8007812, 1.5849609, -2.2832031, -0.052459717, -1.4404297, 1.6591797, 2.4238281, -2.5039062, 1.1083984, 2.0527344, 0.20922852, 0.017486572, 0.7416992, 0.9794922, 1.7958984, 0.60546875, 2.3203125, 1.1162109, 0.92822266, 2.4453125, 0.25610352, 0.7416992, 3.3671875, 0.6796875, 1.90625, 2.1074219, 0.06677246, -0.9902344, -0.4104004, 0.48413086, -1.53125, -1.4755859, -1.5498047, 1.8769531, -0.6816406, -2.0117188, -1.1435547, -1.3183594, -0.7558594, -0.10559082, 0.8598633, -2.5527344, -1.3417969, -0.18664551, 1.1816406, 1.3798828, 1.2480469, -1.9960938, -0.9277344, 0.35546875, 1.8291016, -2.8066406, 0.2010498, -1.6298828, -1.6767578, 1.0087891, 2.0078125, -0.2006836, 1.4746094, 1.3242188, 2.2890625, -0.23925781, 1.03125, 1.5986328, -2.0019531, -0.27148438, 1.2714844, 0.93847656, 0.07019043, -0.8203125, 0.5600586, 0.4501953, -0.90234375, -3.3125, 2.9335938, -0.31762695, -0.3425293, 0.9916992, -0.39086914, 0.08728027, -4.7773438, 3.1660156, -0.5932617, 0.5703125, 2.3417969, -4.2226562, 0.08331299, -0.14233398, 0.5839844, 3.9433594, 0.5058594, -2.1972656, -1.2539062, 0.09875488, 0.061828613, -0.97998047, -1.0058594, -0.24414062, 1.1513672, -3.3496094, 3.1582031, -0.48168945, -0.45776367, -0.37280273, 4.5585938, 1.7333984, 0.16552734, -1.2851562, -0.84716797, 2.265625, -1.625, -0.11254883, 2.1445312, 0.98583984, -1.453125, 0.5620117, 0.09802246, 0.34716797, 0.5854492, -0.41015625, 1.6816406, -4.2773438, -0.44506836, 1.8486328, -1.0439453, -0.23864746, 1.6757812, -1.5839844, -1.2480469, 1.1494141, 1.6347656, -2.1933594, -1.5253906, 0.23083496, 2.3710938, 0.5385742, 0.1303711, 0.96728516, -2.1035156, -0.8408203, 0.9453125, -0.42211914, -0.8798828, -0.9091797, 0.27978516, 0.28833008, -2.1230469, 0.25952148, 0.03274536, -0.7192383, 1.2158203, -4.40625, -1.0986328, -2.3320312, -0.8383789, 1.8115234, 2.3574219, -0.23083496, 1.9902344, 0.31103516, -3.1582031, 0.5048828, -1.7304688, -0.14770508, 1.0419922, -0.5913086, 2.0820312, 0.94433594, 3.1230469, -0.57373047, -1.4443359, -0.0690918, 1.1396484, 1.8554688, -0.7241211, 2.9160156, -0.42211914, -0.43139648, -0.58154297, 3.1425781, -0.62597656, -0.69677734, -0.98046875, 0.68847656, -0.39794922, -1.2236328, -0.38989258, -2.453125, 0.39916992, -0.58154297, 0.4086914, -0.09088135, -1.5400391, -0.5058594, -2.2226562, -0.96533203]}, "B00O4D1F44": {"id": "B00O4D1F44", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 6\nDescription: Standard propane fuel cylinder pack of 6 de bernzomatic\nFeatures: \n", "embedding": [0.36572266, 0.10723877, 0.84228516, -0.99658203, 1.59375, -0.33081055, 0.11853027, -1.5390625, -0.48242188, -0.6850586, 1.8798828, 0.5864258, -0.39331055, -1.6240234, 0.28125, -1.5546875, -1.6542969, 0.20007324, 1.7314453, 1.625, -0.24914551, -0.070617676, 1.8095703, -2.6425781, 0.23583984, 3.5332031, 8.828125, -0.4963379, -1.6240234, -0.8173828, -0.41967773, -1.5615234, -1.3779297, 0.8569336, -1.7548828, -0.80908203, 1.0263672, -2.0820312, -2.5917969, -0.52246094, 0.068115234, 1.4970703, 2.1425781, 0.9277344, -0.6640625, -1.1923828, -0.4091797, -1.8652344, 0.05178833, 0.20605469, 2.2246094, 1.8125, -1.3876953, 0.19140625, -0.98339844, 1.2890625, 1.9980469, 0.35131836, -0.8120117, 1.2714844, 1.2636719, -0.27416992, -0.80810547, -0.19848633, -2.3261719, 1.96875, -2.0371094, -0.06878662, 1.9609375, 0.80322266, 2.8496094, 1.0947266, -1.3261719, -1.5136719, 0.6459961, 0.4284668, -3.3554688, 2.6640625, 0.044525146, -3.1347656, -0.32055664, -0.94384766, 0.36254883, -2.5273438, -0.60009766, -0.5908203, -0.6044922, 0.04928589, 0.42919922, -0.22558594, -1.3339844, 0.2758789, 0.35961914, -4.515625, 2.4902344, -1.3564453, 0.27026367, 0.8881836, 0.0692749, 1.3310547, 1.0703125, -0.49291992, -0.87841797, 0.67578125, -1.2783203, -0.4086914, 0.2553711, 1.1582031, -0.12988281, -0.4267578, -2.4472656, -2.8496094, 3.7304688, 1.9394531, -0.0042648315, -1.1767578, 1.2470703, -0.42138672, 2.578125, -0.05114746, 2.4785156, -2, 0.34716797, 0.052734375, 0.14672852, 0.7602539, -1.2070312, 0.68847656, 4.0976562, -1.4912109, 1.1132812, -1.4462891, 3.7753906, 0.17236328, -0.20825195, -1.9560547, -2.2714844, -3.3125, -1.4726562, -1.4287109, -2.9804688, 1.1416016, 0.35864258, -0.28710938, -4.1835938, -0.1182251, 0.57373047, -0.047851562, 0.15881348, -1.2353516, 1.3994141, -2.9316406, -1.2617188, 0.11236572, 1.5830078, -0.31445312, -2.3496094, -1.4736328, 1.6503906, 3.0351562, 1.0546875, 0.52734375, 0.34106445, 1.8623047, -2.5839844, -3.546875, 1.7958984, 1.140625, -1.1923828, 2.1425781, 0.6855469, -2.0859375, 0.105773926, 1.1787109, -1.0927734, -0.91015625, 1.0097656, 1.7255859, 2.7890625, -0.77783203, -1.3896484, 0.17102051, 0.4494629, -2.9160156, 1.1904297, -0.5024414, 0.68066406, 0.055664062, 0.8808594, -0.1394043, -1.1601562, 0.33764648, -1.8193359, 0.72314453, 0.81933594, -2.4667969, -0.57910156, 0.18847656, 0.875, 1.9921875, -0.5126953, -0.32763672, 0.34765625, 1.2246094, -1.6669922, -2.0214844, 2.890625, -0.8051758, 1.4189453, 0.2409668, 1.3154297, 0.026290894, 2.3378906, -0.72509766, 0.0020561218, -2.0351562, 0.8378906, -0.38354492, 2.8457031, -0.70458984, 1.2480469, -0.8354492, 0.55371094, -1.1953125, 3.484375, 2.421875, 0.16296387, -2.0800781, -1.1152344, 0.041107178, 0.86279297, 1.9492188, -0.85302734, 0.81884766, 0.33496094, 2.2128906, 0.56884766, -1.4765625, 3.046875, -1.4287109, 0.03225708, 1.0595703, 0.2479248, -1.6845703, -1.0761719, 0.3076172, 0.38598633, 0.5073242, 1.8945312, 1.9755859, 1.3896484, -0.34765625, 1.2138672, -0.21044922, -1.1523438, -0.14025879, 0.66308594, 0.04949951, 0.93652344, -3.609375, 2.2753906, -1.1494141, -1.7763672, -1.9189453, 1.8779297, -1.3339844, 0.66259766, -1.0019531, -0.5385742, -0.26538086, 2.0019531, 0.71484375, 1.7597656, -0.5288086, 2.3164062, 1.3847656, -2.4863281, 2.8378906, -0.43286133, 0.94140625, -0.80859375, -1.3251953, -0.054229736, -2.5253906, 0.6464844, 0.7763672, 0.7739258, -0.17785645, -2.4589844, -0.12683105, 6.1054688, -2.8886719, -1.7646484, 3.3671875, 1.7207031, 2.09375, 0.44482422, -0.6538086, 0.09588623, -1.3193359, 0.953125, 1.5546875, 0.50927734, 2.6875, -1.4970703, -0.84277344, -0.7402344, 0.51904297, -1.2919922, -1.2050781, 0.4951172, 0.18286133, -2.6445312, 2.0976562, -2.4394531, -0.5341797, 1.6367188, -2.6113281, 1.2109375, 0.73828125, 1.0703125, 2.4511719, 1.2392578, -0.7788086, 0.84765625, 1.1308594, -2.1171875, 1.9443359, 1.5585938, 1.1064453, -0.38134766, 0.1484375, 0.5307617, -3.0351562, 0.29760742, 0.1116333, -2.4335938, -2.9121094, 1.0185547, -1.1757812, -1.0263672, 1.9785156, -2.3027344, 1.9804688, 0.9663086, -4.1640625, -1.9902344, 1.1591797, -0.7270508, -2.1738281, 0.2253418, 1.8847656, -0.53466797, -3.7753906, -2.3457031, -1.4892578, 0.23461914, 2.2558594, 0.28222656, 1.5185547, 0.90478516, -0.95703125, -1.8681641, 1.3300781, -1.3076172, 0.34423828, 1.7763672, -2.1289062, 1.9492188, 0.19482422, 4.0117188, -0.79785156, 2.5253906, -2.2871094, 0.57470703, 0.46166992, -1.6748047, 4.0234375, 0.72265625, 0.32617188, 1.2724609, 0.056549072, 0.04864502, -2.0996094, -4.28125, 0.9121094, 0.14038086, -0.38867188, -1.4189453, -3.1191406, -0.43579102, -0.26635742, -0.20690918, -0.97802734, -0.69140625, -2.4746094, -0.03753662, 1.0966797, 0.94384766, 1.4951172, -1.1806641, -0.4975586, -0.62158203, -0.88134766, 1.0605469, -0.59228516, 0.36816406, -0.9121094, 1.4394531, -0.27001953, 0.25463867, 0.9003906, -0.87597656, -0.43798828, 0.79833984, -2.7324219, 0.67041016, 0.32763672, 1.1689453, 3.265625, 0.1262207, -0.38012695, -1.5908203, 0.24035645, 3.5761719, 1.3144531, 0.90478516, 2.2988281, 0.58984375, 1.3183594, 1.40625, -1.4980469, -1.1923828, -1.0146484, -1.2666016, -0.5756836, -0.8881836, 0.34887695, 0.48364258, -0.3479004, -1.5986328, 3.0566406, -0.1550293, 2.5429688, 1.0996094, -1.0400391, 1.8154297, -0.56884766, -0.07208252, 1.8896484, -1.5029297, 0.86572266, 1.1416016, 1.3115234, 1.3984375, 0.75927734, 0.12597656, -0.5029297, 1.5771484, 0.099975586, 1.3730469, -0.6826172, 2.0449219, -0.88720703, 0.30249023, 0.6489258, 1.9355469, -0.52734375, 1.6875, 0.96777344, 1.6220703, 0.8520508, -0.95654297, -1.3232422, 1.4335938, -2.0957031, -0.55908203, 1.1796875, 0.13305664, -1.0439453, 0.13696289, 0.9301758, 0.7397461, -0.7939453, 0.3737793, -0.46557617, 1.7158203, -1.7910156, -0.421875, -0.81591797, -0.26245117, -0.2578125, -0.043273926, -0.7661133, -1.3007812, -1.7617188, -1.4667969, -0.80029297, 2.0683594, 1.6777344, 0.13708496, -0.61376953, 0.92578125, -0.06137085, 2.421875, -0.5756836, -0.34960938, -2.8925781, -0.2680664, 1.3251953, 0.5888672, 0.7163086, 1.109375, -1.8046875, 0.15283203, -1.5371094, 0.83740234, -2.7246094, -1.8828125, 0.41210938, 0.4169922, -0.20019531, 2.8886719, 0.02079773, 1.8701172, -0.37182617, -0.78515625, 1.9345703, -2.0800781, -0.9375, -2.046875, -2.078125, 1.3984375, 0.9326172, 1.2675781, 2.4121094, -0.056640625, 0.051361084, 1.1728516, 2.0976562, -2.9589844, -0.74121094, 0.70947266, 2.3632812, 1.0087891, -0.44848633, 1.8896484, 0.09881592, -2.9667969, -1.3496094, -1.0664062, -1.6894531, -1.4589844, -0.21972656, -0.86083984, 0.14611816, 1.2060547, -0.17541504, -0.033050537, -0.9267578, 2.140625, -2.4609375, -0.98291016, -1.2509766, 1.9208984, 1.7421875, 0.89453125, 0.32861328, 0.88427734, 2.6171875, -1.7568359, -1.1396484, -0.23071289, 2.9628906, -0.33911133, -2.6992188, -0.1574707, -1.4091797, -0.70703125, -3.5820312, 0.6010742, -0.61035156, -1.5283203, 0.98779297, 1.9560547, 0.22509766, 1.8916016, -0.47192383, -0.87158203, 1.2333984, 0.066589355, -1.7978516, 0.16589355, 0.23022461, 1.0390625, -0.17077637, 0.9482422, -2.0605469, -0.6274414, -0.45239258, -0.7324219, -2.5195312, -0.68896484, 1.5927734, -0.6738281, -1.234375, -0.5546875, -1.5273438, -0.93847656, 1.6972656, 2.6679688, 1.1572266, -0.15771484, -0.14501953, -0.72753906, -0.31054688, -1.0283203, -0.70654297, 1.4853516, -2.4902344, -0.0064697266, -0.34887695, 1.2158203, -2.5097656, -1.3349609, -1.8847656, -2.2070312, 2.703125, 0.3203125, -0.75927734, 2.3164062, 1.9707031, 0.7128906, 2.3535156, 2.2558594, -0.34570312, 1.0136719, 0.37524414, 0.90527344, -1.6904297, -0.54541016, 2.5703125, 0.1439209, 0.3203125, 0.8808594, -0.62890625, 0.40429688, -0.96728516, -0.14978027, 1.4521484, 0.007633209, 1.8515625, 2.234375, 1.0029297, -2.0859375, -0.578125, 0.69384766, 0.08905029, 0.09631348, -1.65625, -2.6679688, 1.0185547, 0.984375, -3.7890625, -0.40820312, 1.7304688, 0.22741699, 2.4414062, 0.49389648, -0.091308594, -1.7695312, -0.6010742, -2.5683594, -0.8618164, 3.4140625, 1.6171875, -0.066589355, -0.0047912598, 0.2770996, 0.09881592, 2.390625, 1.2236328, -1.8935547, 0.60302734, 1.5625, -0.8256836, -1.4648438, -0.41552734, -0.16845703, 2.2636719, -0.7128906, 1.5673828, 0.85546875, 1.6904297, 3.7011719, -2.1035156, 0.05444336, -2.4316406, -0.08026123, -2, -0.48266602, 0.88671875, -0.0914917, -0.20581055, -1.5976562, 0.99902344, -0.79541016, 2.1621094, 0.6850586, -0.6923828, -0.42504883, -0.03338623, -3.2089844, -5.1601562, -2.9667969, -0.71191406, 0.7055664, -0.20275879, -0.112976074, -1.2929688, 2.1503906, -0.98828125, 1.1220703, -2.828125, 0.7832031, -2.359375, -2.2421875, 1.0742188, -0.18981934, -0.6074219, 0.008041382, -1.9082031, -1.2666016, 2.2597656, -1.0273438, -4.765625, 2.1503906, -1.7578125, -0.57714844, 0.16040039, -1.2392578, 2.296875, 3.6113281, 2.1269531, -0.7192383, 1.2216797, -2.71875, -0.029632568, -0.11730957, -2.2285156, -1, 2.1777344, 1.2998047, -0.32348633, 4.5742188, 2.3886719, -1.9755859, -0.38232422, -0.032226562, -2.2265625, 0.9433594, 0.033813477, 3.3984375, -1.0371094, 0.81933594, 2.3613281, -0.71875, -2.6816406, 0.013694763, 0.92822266, -0.97802734, -1.4091797, -1.1845703, -1.3535156, 0.91259766, 1.3076172, 0.7753906, 0.40454102, 0.4951172, -0.5776367, 1.4199219, 1.5332031, -3.0332031, 3.421875, -0.6459961, -3.0488281, -3.296875, -0.64160156, 2.328125, 2.2460938, 0.18432617, 0.2421875, -0.8666992, -1.6357422, -0.3798828, 0.22509766, 0.027450562, 1.34375, -0.026672363, -0.13317871, 0.04425049, 1.9472656, -0.70410156, 0.93408203, 0.31176758, -0.49926758, -0.0546875, 1.3564453, 1.2304688, -0.7573242, -0.36010742, -2.7246094, 0.05178833, 0.6933594, 0.20751953, 0.83984375, -1.2792969, -0.10845947, 1.5126953, -0.21008301, -3.0996094, -0.43041992, -0.103759766, -1.2880859, 1.7265625, 1.4433594, -3.4277344, -0.10333252, 0.30493164, 0.95410156, -2.4628906, -0.38598633, -0.58496094, 1.4560547, 2.1015625, -2.4609375, -0.08630371, 1.5898438, 1.2128906, 0.060455322, -0.11340332, -0.41552734, 0.7548828, 1.8359375, 2.0136719, 1.5927734, 0.98828125, 0.58154297, -0.056640625, 2.1640625, 2.0800781, -1.7685547, 2.1992188, 0.99609375, 0.87109375, -0.4951172, -0.13928223, -0.1138916, 0.12512207, -0.3930664, -1.3505859, -0.07385254, -0.18920898, -2.2519531, -0.30419922, -1.1894531, -0.05935669, -0.08166504, -0.60058594, -0.9013672, -1.7744141, 0.91796875, -0.96484375, 1.8564453, 0.012260437, -0.17541504, 0.015434265, -1.1474609, 2.734375, -1.1640625, -1.3486328, -1.3251953, -1.7714844, 0.029663086, 0.06137085, -0.051574707, 0.5961914, 0.859375, 0.4296875, 0.80908203, -0.11932373, 2.7949219, -2.9355469, 1.5439453, 1.2490234, 0.6323242, -0.32861328, -0.8095703, 2.4101562, 1.4921875, -1.1064453, -1.8701172, 1.7910156, 0.74121094, 0.10650635, 0.6401367, -2.640625, -1.0322266, -3.1015625, 0.2409668, -0.828125, 1.6357422, 1.6591797, -3.203125, -0.14904785, 0.07910156, -0.004142761, 2.96875, 0.38867188, -1.1826172, -0.44580078, 0.63671875, 1.4326172, -0.8618164, 1.3183594, 0.78271484, 0.78466797, -3.8261719, 3.6933594, -1.0175781, 1.5595703, 0.18615723, 4.3242188, 3.1523438, 0.9038086, -0.9423828, -0.07910156, 1.5078125, -0.47192383, -0.6582031, 1.5380859, -0.45385742, -2.1894531, 0.95654297, -0.21325684, -0.21057129, -0.46948242, -0.14404297, 0.041168213, -1.75, -0.85546875, 2.34375, -1.5751953, -0.083862305, -0.16894531, -0.93896484, -1.9785156, 1.046875, 2.2089844, -1.5546875, -0.34838867, 0.48632812, 1.9375, 1.5615234, -0.16369629, 1.4746094, -0.103515625, -0.6923828, 0.8354492, -0.33447266, -2.7421875, -0.84228516, 1.5703125, -1.1123047, 0.34155273, -0.65478516, 0.93652344, -0.86328125, 0.32299805, -0.828125, -0.4868164, -0.3720703, 0.12188721, 1.1767578, 1.6660156, -0.64990234, 1.1474609, -0.0496521, -2.5625, -1.8095703, -2.8925781, 0.36914062, 1.6923828, -1.4716797, -0.24377441, 3.5039062, 4.8867188, -1.1708984, -0.97265625, 1.0283203, -0.9169922, 1.9658203, 0.7163086, 1.3125, -1.4306641, 0.11212158, 0.19567871, 3.1054688, 0.064819336, 0.75927734, -1.5087891, -0.4411621, -1.78125, 0.1194458, -0.5942383, -2.0429688, 0.0025959015, -2.7246094, -0.4975586, -0.6591797, -1.4980469, -0.13269043, -0.63671875, 0.6328125]}, "B08J3WDZCP": {"id": "B08J3WDZCP", "original": "Brand: SNAN\nName: SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification\nDescription: SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!\nFeatures: \ud83d\udd25\u3010 FASHION DESIGN\u3011This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc.\n\ud83d\udd25\u3010 SAFE & WARM BONFIRE EXPERIENCE\u3011 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere\n\ud83d\udd25\u3010DIMENSIONS & PACKING INCLUDED\u3011Overall table size : L32\" x W32\"x H25\", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual\n\ud83d\udd25\u3010CONVENIENTLY ASSEMBLE & MULTI-FUNCTION\u3011Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.\n", "embedding": [-2.75, 2.8710938, 0.7729492, -1.1835938, 2.3027344, -0.546875, 0.7685547, -0.6855469, 0.29467773, 2.7871094, 0.35986328, -0.8076172, 0.10620117, -2.5097656, 0.25561523, 1.0947266, -0.36938477, -0.071777344, 0.34179688, -1.1650391, 1.7792969, 0.26245117, 1.0351562, -1.7675781, 0.61816406, -0.29541016, 2.8339844, -3.2285156, -1.3203125, -2.5429688, 1.46875, 1.4130859, -0.67089844, 1.5966797, -2.2675781, -1.6943359, -0.96728516, 1.0332031, -1.2509766, -0.16699219, -1.2958984, -0.8383789, 2.578125, 0.5996094, -2.8164062, 1.09375, 0.5366211, -1.3203125, -0.74658203, -0.27368164, 1.109375, -0.08807373, 0.7211914, -0.20751953, -1.53125, 0.82128906, -0.45996094, -2.78125, 0.96728516, 0.20007324, 2.4492188, -0.38232422, -0.31884766, 1.8652344, -1.2519531, 0.9580078, -0.4921875, -0.43798828, 0.22387695, 0.77734375, 1.4746094, 0.51660156, -0.49121094, 0.8774414, -0.64160156, -1.1875, -4.2578125, 2.1523438, 2.6503906, -0.44677734, -0.12475586, 1.3554688, 1.6572266, -2.4570312, -1.4003906, -0.14123535, -0.20751953, -1.9833984, 0.31201172, 2.25, -1.1484375, 3.5097656, -0.32373047, -3.3105469, 1.9003906, -2.2460938, 0.32177734, 0.052825928, -1.6181641, 0.26538086, 0.6171875, -0.083496094, -0.34521484, 1.8027344, -2.9570312, -0.073791504, 1.0546875, 1.3544922, -0.0435791, 0.94970703, -1.0244141, 0.09954834, 1.5615234, -1.2363281, -0.39868164, 1.8896484, 0.11419678, 2.234375, 3.4179688, 0.34448242, 5.3007812, 1.1445312, 0.16760254, -0.16210938, 1.1630859, -0.4753418, -1.4814453, 0.3779297, 2.1777344, -1.9765625, 0.5229492, -2.2324219, 0.26757812, -0.43041992, -2.8554688, -0.87597656, -1.2587891, -1.3789062, -3.9765625, 0.32910156, -3.015625, 1.8085938, 1.0693359, 0.46362305, -3.1523438, -0.119262695, -0.8955078, 2.390625, 1.0244141, -2.7578125, -0.8183594, -0.41235352, -0.14929199, -3.1914062, 0.203125, -2.0800781, 1.0449219, -2.5019531, 4.3125, 1.5957031, 1.8623047, -1.2304688, -0.71435547, 1.2910156, -0.70751953, -1.5390625, 3.3027344, 1.7089844, 0.63183594, 0.81689453, 0.030639648, 0.2746582, -1.6474609, -0.029800415, 0.44335938, -0.13354492, -0.084228516, 2.0878906, 2.9980469, -1.4130859, -0.9448242, -1.703125, 0.9663086, -0.6254883, -1.4970703, -1.7363281, -0.012260437, -1.1357422, 0.35180664, -1.2011719, -1.3251953, 0.82128906, -1.7587891, -0.13745117, -0.35766602, -2.0703125, -3.3945312, -2.9140625, 2.7539062, 1.7929688, -0.034698486, 2.0742188, -2.2617188, 1.7871094, -3.2617188, -2.3261719, -2.1210938, 2.5859375, 1.8486328, 1.1630859, -0.29785156, -1.5917969, 1.9433594, 0.3232422, 0.82666016, -0.2241211, 1.7626953, 1.6933594, 0.38183594, 2.0585938, -0.079833984, -1.2890625, 2.078125, 1.4150391, 1.7167969, 1.2070312, 0.8491211, -0.50390625, -0.96191406, -1.6865234, 2.8339844, -1.0029297, -0.2861328, 1.3173828, -0.79003906, 3.5195312, 0.6816406, -1.1806641, 1.8808594, -1.546875, 1.9462891, -1.8710938, -0.95751953, 0.8515625, -0.11907959, -0.5527344, 0.66064453, 1.3525391, 1.6894531, 1.3574219, 0.064331055, -1.1376953, 1.0537109, 0.7158203, -0.11425781, 0.4807129, -0.31176758, -0.81152344, 0.5673828, -2.2265625, 1.7402344, 0.98876953, 1.2324219, 0.6381836, 0.065979004, -2.5898438, 1.9697266, 0.95214844, -1.4648438, -0.68115234, -1.5078125, -0.42456055, 3.3457031, -0.19958496, -0.57666016, -0.91845703, -1.1591797, 3.1699219, 0.71728516, 2.3007812, -1.3691406, -2.2695312, 1.2041016, -1.7646484, 1.0332031, 0.6142578, 1.0742188, 1.5214844, 0.040863037, 1.2890625, 3.1308594, -1.0849609, -2.0976562, 1.9931641, -0.8466797, -0.1463623, 0.52197266, 1.3271484, 0.91845703, -1.2998047, 0.37329102, 2.6816406, -0.14111328, 2.9375, -2.1386719, -0.23718262, 0.6142578, -3.5371094, 0.73046875, -0.64746094, 0.93896484, -1.8212891, -0.5805664, 1.7216797, -1.7568359, -1.8925781, 1.7490234, -1.9091797, -0.1694336, 1.6835938, 0.08203125, 0.9482422, -3.1054688, -0.86035156, -0.29785156, 2.59375, -1.5722656, 0.6982422, 0.3894043, 0.3671875, -0.79248047, -1.0029297, 1.4316406, -3.0976562, -0.9716797, -1.9052734, -1.3408203, -1.34375, -0.33398438, -1.7470703, 0.24230957, 0.94091797, -2.453125, -0.1821289, -0.72558594, -2.3613281, -0.76171875, 1.3671875, -2.0625, 0.38256836, 1.3730469, 3.5410156, 0.3166504, -1.7558594, 0.67041016, -0.113342285, 0.69091797, 1.9150391, -0.27929688, -0.39086914, -2.2148438, 1.2431641, 0.8852539, -1.4394531, 0.2055664, -3.6113281, -1.3291016, -3.2890625, 0.3161621, -0.6035156, -1.1367188, 0.8183594, 1.3291016, -2.0683594, -2.0878906, -0.22631836, -0.9291992, 5.3710938, 0.64501953, 2.4375, -0.93896484, -1.0507812, 0.0044403076, -1.4052734, -3.5800781, 1.3173828, 0.02218628, -1.1455078, -2.328125, -0.8803711, -0.28588867, -0.86865234, -0.48657227, -1.0917969, 0.94140625, 1.1494141, 0.6894531, -1.8808594, -0.8544922, -1.0625, 1.6298828, -0.57373047, -0.8955078, -1.7744141, -2.2265625, -0.14074707, -1.9091797, 0.064331055, 1.6269531, -1.3007812, 0.79345703, 0.8886719, -0.3310547, -0.6455078, -0.0395813, -2.7148438, 0.68652344, 1.5605469, -0.3322754, 1.2167969, -1.2607422, -0.6147461, -3.5585938, 1.1396484, 3.4296875, 2.1640625, 0.5942383, -0.5571289, -0.31518555, 0.72509766, 0.73095703, -0.65771484, -0.31689453, 0.026184082, 2.5625, -1.6591797, -0.09893799, 0.20336914, 2.109375, -2.671875, -0.25756836, 1.2207031, -0.09118652, 0.13330078, -1.4316406, -0.21118164, 0.8544922, -0.66845703, 0.6616211, -0.3947754, 1.3964844, 0.87597656, -1.3808594, -0.38427734, 2.8007812, 1.6484375, 1.4121094, 0.92041016, 0.9980469, 3.1464844, 1.1865234, -3.0585938, 0.06262207, 0.7714844, -0.68310547, -0.0024986267, 2.7617188, -1.4169922, -1.1855469, -2.2050781, -0.53466797, 1.25, -1.1630859, -0.11853027, 1.5986328, -0.6459961, -0.24658203, -0.79785156, 0.22314453, 1.5654297, -2.6210938, 2.5683594, 0.37304688, -1.0371094, 2.2988281, -1.3427734, 0.9506836, -1.3349609, 2.2636719, -0.93896484, -1.7890625, 0.47143555, 2.1523438, -0.2524414, -2.5546875, 0.5083008, -2.2617188, -1.2822266, 4.2539062, -0.26464844, -1.3701172, -1.0771484, -0.42773438, 0.265625, 2.2421875, -1.7216797, 0.5185547, 1.3144531, -1.7714844, -1.7753906, 1.0654297, 0.38842773, -0.1763916, -2.4511719, 0.75, -0.6923828, -0.08227539, 2.4082031, -1.6132812, -2.28125, 0.5292969, 1.5615234, 1.6259766, 0.10406494, 1.5146484, -0.23950195, -0.76708984, 2.6894531, -1.1572266, -0.8383789, -0.8701172, -4.0273438, 1.5253906, -2.1484375, -0.19042969, 1.0117188, -0.7026367, 0.07647705, 1.4072266, 0.5209961, -3.9160156, -2.6777344, -1.0537109, 0.36083984, -3.8242188, -1.1611328, -0.15625, 0.44067383, 0.12359619, 0.10064697, -0.19995117, 2.9785156, 0.11633301, 1.0263672, 0.93310547, 0.5332031, -2.7714844, 0.40527344, 0.8383789, -0.029815674, -0.14807129, -1.0458984, -0.105163574, -3.8457031, 1, 1.3867188, -1.5878906, 1.1865234, 2.640625, 0.13830566, 0.11975098, 1.0810547, -0.2467041, 3.453125, -0.43603516, -2.5527344, -1.2177734, -0.27416992, 0.62646484, -0.6381836, -0.96533203, 1.2070312, -2.3066406, 0.20739746, 0.2944336, 2.0996094, 0.6113281, -0.5253906, -2.8417969, 0.19262695, -0.8105469, -2.1933594, -1.453125, -1.0615234, -0.39868164, 0.5048828, 0.3947754, -3.390625, -0.82470703, -0.61816406, -0.80859375, -0.67871094, 1.7021484, 2.0742188, 2.9453125, 4.375, -1.2851562, -0.28735352, 1.8134766, -0.03604126, 1.4492188, 3.2382812, 0.5214844, -1.6347656, 1.4160156, -0.64453125, -1.1269531, -1.3769531, 1.7207031, -1.7470703, -1.34375, 1.28125, -0.67529297, -1.9365234, -0.69091797, -1.2275391, -2.0546875, 0.47070312, -0.46728516, -1.7050781, -0.5673828, 1.2685547, -0.69970703, -0.19067383, -0.3388672, 1.0205078, 0.6904297, 3.1992188, -0.25634766, 1.0058594, 3.1425781, -1.0322266, 1.9853516, 0.59228516, 0.46533203, -0.3347168, -0.85058594, -1.5693359, -1.1640625, 2.4335938, 1.1855469, -1.2666016, 2.7773438, -0.45214844, -2.5585938, 2.4453125, 2.0214844, -2.4003906, -0.69873047, -1.2773438, 0.18457031, -0.6855469, 0.65527344, -2.1679688, -1.6386719, 1.0546875, -1.6171875, 2.4921875, -0.34521484, -1.0273438, -0.14257812, -0.9692383, -0.4189453, 0.8017578, -1.1142578, -2.9453125, -2.1171875, 0.77734375, -1.3447266, 0.35498047, 0.9663086, -0.68359375, -2.2011719, 2.3886719, 1.3818359, -0.98876953, -0.22094727, 0.9223633, 1.3417969, 1.03125, 0.59521484, 1.078125, 0.34033203, -2.1425781, 1.7890625, -1.5947266, -1.0410156, -1.0742188, 2.1113281, -1.4199219, -0.6425781, 2.4082031, 1.3974609, 1.9003906, -2.0683594, 1.8974609, -0.71191406, 1.7441406, -0.51123047, 1.0732422, -1.4765625, -1.4853516, -1.9726562, -3.3730469, -0.7651367, -0.48291016, -1.5966797, -0.8720703, -1.7246094, -0.015571594, -1.7890625, -0.049987793, 0.23706055, -0.29785156, -1.3105469, -1.6064453, -0.7211914, -0.5751953, 1.0322266, 1.3144531, -0.77685547, 0.29833984, -1.0400391, -0.038970947, -2.8242188, -0.41186523, 2.7304688, -0.9345703, 1.25, 1.0146484, -0.34643555, 1.4658203, 2.8300781, 0.42749023, -0.17333984, 2.1015625, -3.1132812, -1.0771484, 2.2714844, -1.7167969, 0.3918457, 1.1572266, -0.83935547, 0.52783203, -1.1533203, 0.004966736, -0.18591309, 0.16711426, -0.115478516, 0.73876953, 0.6074219, -1.5146484, -0.6142578, -0.47729492, 3.0214844, 2.4863281, -1.5810547, -0.0791626, -0.82128906, -0.5, -0.7207031, -2.3183594, -0.052734375, -0.89160156, 0.22558594, 0.010559082, 0.07336426, 1.9394531, 1.4384766, -0.18884277, -0.37109375, 3.4785156, -1.5830078, 2.7050781, 1.671875, -1.3935547, -3.3574219, -3.3300781, 1.3085938, 1.1328125, 1.2255859, -1.7265625, -0.30249023, -1.3486328, 2.0136719, -1.9785156, -0.8935547, 1.5302734, 1.7050781, -0.96533203, 1.0341797, 0.24963379, 0.29370117, 1.9736328, -1.0849609, 2.3222656, 0.421875, 2.078125, 3.1582031, -1.8935547, 2.1132812, -1.3271484, 1.2900391, -0.5571289, -1.5214844, 2.0371094, -2.4316406, -1.8662109, -0.9145508, -0.9736328, -3.2617188, 2.09375, 1.6455078, 0.46533203, 0.28173828, 0.32592773, -0.99072266, 1.609375, 0.8876953, -1.0546875, 1.2558594, -0.6972656, -1.2753906, 0.73339844, 2.0019531, 1.5761719, -0.24243164, 2.2148438, -0.18811035, -0.65234375, 1.1904297, -0.09088135, 1.7109375, 0.4958496, 2.1894531, 1.171875, 1.0205078, 3.2382812, 0.35107422, 1.7939453, 2.2890625, 1.6054688, -0.54345703, 2.2734375, 2.9335938, -0.92333984, 0.6098633, -0.3696289, -0.15515137, -0.76123047, -0.6870117, -0.08905029, -0.1282959, -2.3300781, 2.1171875, -1.1533203, 1.7363281, -0.9140625, 0.13244629, -1.4287109, -0.04522705, -0.066223145, -0.10559082, -0.2536621, -0.99658203, -0.3034668, -0.6044922, 0.01965332, -0.29296875, -3.3808594, 1.7548828, -1.4814453, -2.2714844, 1.1552734, 3.4511719, 2.0019531, 1.5234375, 0.059661865, 1.4238281, 0.4350586, 1.4833984, 2.0566406, 0.6254883, 1.4707031, 2.4101562, 0.7714844, 0.8642578, -0.4736328, -1.4355469, 0.671875, -1.3310547, -3.5371094, 2.1386719, 1.6328125, 0.66845703, 1.8505859, -1.3867188, 1.1425781, 1.1533203, 0.9370117, -2.2714844, -0.080566406, 0.59765625, 0.20654297, 1.2197266, 0.73046875, -0.4350586, 2.0273438, 2.1914062, -0.5385742, 3.0507812, 1.2568359, 1.2275391, 0.30126953, 0.47680664, -1.0634766, 1.4355469, -2.375, 1.5507812, 0.97558594, -0.7919922, -1.7255859, 2.6191406, 1.6376953, -0.640625, -0.7709961, -1.7939453, -0.24633789, -0.31420898, -1.7207031, -0.82373047, -0.1270752, -2.9472656, 0.6513672, 1.2626953, 0.22460938, -3.0214844, 1.5371094, 1.4394531, -2.4550781, 0.8833008, 0.85839844, -3.0097656, 1.6992188, 1.0185547, 0.33862305, 0.5136719, -0.6870117, 2.4746094, -0.73339844, -1.8632812, -0.5834961, 0.12731934, 0.8564453, 0.6777344, 0.39990234, 0.11755371, 0.3071289, 1.3857422, 4.5, -1.0576172, 1.0917969, 0.71972656, 1.1796875, -0.8510742, 2.4121094, -0.77490234, -0.31445312, -0.027175903, -4.0195312, 0.51904297, -1.4580078, -2.7226562, -1.1474609, 5.1796875, 2.5371094, -0.16772461, -2.0371094, -4.234375, -1.8476562, 0.8510742, 3.3027344, 0.60253906, -1.1650391, 0.33666992, 0.6123047, 4.2929688, -1.0136719, 0.5341797, -0.6333008, 0.3798828, 2.4628906, -1.1708984, 0.5258789, -0.85058594, 0.8876953, 1.1689453, 2.421875, 2.7324219, 1.0332031, 2.0507812, -0.035736084, -0.5830078, -2.8105469, -0.36376953, -2.6582031, 1.1992188, 2.7480469, -0.80859375, 1.1025391, -0.7504883, -2.1269531, -4.1171875, -0.17236328]}, "B00S57U1QS": {"id": "B00S57U1QS", "original": "Brand: Coleman\nName: Coleman RoadTrip LX Propane Grill\nDescription: \nFeatures: Portable propane grill ideal for tailgating, picnicking, and camping\nDelivers 20,000 btus of heat with 2 independently adjustable burners\nSwaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately)\nPerfect flow technology provides consistent performance, even in extreme conditions\nCollapsible stand folds for compact storage; Tabletop setup lets you use grill without stand\n", "embedding": [-1.5058594, 0.6245117, 0.8339844, 1.0019531, -1.5498047, 0.09820557, 1.3134766, -0.91796875, -1.2109375, 1.8017578, -0.47558594, -1.5498047, 1.3066406, -3.4394531, -0.2705078, -0.18725586, 1.3964844, 1.3867188, 0.5732422, -0.96972656, 2.2128906, -0.037506104, 1.7832031, -0.5253906, 0.72998047, -0.45166016, 3.7441406, -4.8007812, 0.056762695, -0.48583984, 1.2490234, 0.22570801, -0.3779297, 3.3457031, -1.9628906, -1.5732422, -3.4921875, 1.9443359, -2.9570312, -1.0283203, -1.6376953, -0.7548828, 2.5566406, -0.051574707, -0.78808594, -1.0488281, 1.2695312, 1.8232422, -1.0878906, -0.97558594, 1.9570312, 1.1904297, 0.9741211, 0.61035156, -1.8339844, 0.6245117, -0.64941406, -0.35205078, 2.1953125, -0.44750977, 1.2285156, -0.52978516, -2.453125, 0.72216797, -1.2226562, 0.27148438, 0.10015869, -0.86621094, 0.48754883, -1.0087891, 3.1679688, 0.13342285, -2.375, -1.3847656, 0.018554688, -0.0925293, -2.7382812, 0.1508789, -0.03488159, -0.7607422, -0.3881836, 3.2910156, -0.1730957, -0.8076172, 0.061706543, 1.3808594, -1.7744141, 0.08557129, 2.9707031, 1.7412109, -1.0742188, 1.0527344, -1.9560547, -3.7558594, 0.7861328, -0.77246094, 1.3720703, 1.2568359, 0.2006836, 0.91064453, -1.3671875, 0.5214844, -2.046875, -0.37817383, -3.4335938, -0.22143555, 1.8681641, -0.9941406, -1.3867188, 2.0546875, -2.1582031, -1.7021484, 2.8769531, 0.8886719, 0.58984375, 0.796875, -1.6621094, 1.8847656, 2.1328125, 2.1699219, 5.046875, -0.37304688, 2.2578125, -1.0341797, -0.15112305, 1.7705078, 0.09051514, 0.66748047, 3.3925781, -0.8720703, -0.016326904, 0.44311523, 2.4667969, -0.30688477, -3.5878906, -3.3710938, -2.1503906, -0.9550781, -2.7265625, -0.48120117, -0.85595703, -0.6142578, 3.3828125, 0.7861328, -4.6796875, -1.1269531, -0.55078125, 1.4443359, -0.009269714, -1.5957031, -1.4794922, -2.546875, -0.27905273, -1.0009766, 2.1269531, 0.17102051, -0.93310547, -1.2871094, 4.515625, 1.0908203, 0.6508789, -0.7739258, -1.1523438, 0.6020508, 1.5878906, -1.1220703, -0.5493164, 1.5585938, -0.3852539, 2.1386719, -0.18603516, -2.5507812, 1.4277344, 0.49414062, 1.9453125, -1.2255859, 0.53808594, 2.5839844, 0.34179688, -0.69970703, -2.1445312, -1.3720703, 0.5908203, 1.0546875, -0.034057617, -2.2890625, -0.29370117, -0.14575195, 0.10595703, -1.8203125, 0.8334961, -0.03164673, -0.54052734, 0.27416992, -1.8320312, -1.2998047, -0.9584961, -1.46875, 2.4960938, 1.4189453, -0.42358398, -0.6665039, -0.7324219, 0.42944336, -2.4492188, -2.6621094, -0.31323242, -2.2949219, 1.5488281, 2.2304688, 1.9072266, -0.4489746, 0.94628906, -1.6445312, -1.3984375, -3.3632812, 1.5966797, 1.2324219, 2.9589844, 1.9902344, 0.026901245, -0.82714844, -1.4824219, 1.1074219, -0.8823242, 1.4931641, 0.14196777, -1.2011719, -1.0039062, -0.36254883, 1.3710938, 3.0625, -2.0625, 0.92626953, 0.04660034, 2.5761719, 0.6269531, -1.7890625, -1.3935547, 0.61083984, -0.34594727, -0.3803711, -0.09124756, -1.4052734, -0.27416992, 0.44750977, -1.6152344, 2.7675781, 3.0957031, 0.53808594, 0.05847168, 0.9199219, -0.50390625, 1.6191406, 0.0043029785, 1.9775391, 0.3630371, 1.1953125, -1.4404297, -1.7001953, 1.0097656, 2.1484375, -0.38208008, -0.26879883, 0.57421875, 0.30004883, 3.5234375, 1.4433594, -2.7695312, -0.30639648, 0.93408203, 1.6669922, 0.93896484, 1.2929688, 1.4697266, -1.2070312, -0.4633789, 1.8740234, 0.40722656, 3.2324219, 1.2070312, 2.4765625, 1.5029297, -3.2148438, -2.2441406, 0.88378906, -0.17602539, -0.3955078, -1.8955078, 2.3105469, 3.4960938, 0.5888672, -1.1230469, 2.7324219, -3.0546875, 1.3896484, 1.3369141, -0.9301758, -0.8408203, 0.42041016, 1.6455078, 0.3244629, -0.9135742, 2.0820312, -3.6894531, 0.03744507, -0.17810059, -2.9707031, 1.375, -0.02784729, -0.7402344, -0.98828125, -1.5927734, 0.51220703, -1.9492188, -1.3886719, 2.03125, -2.5351562, 1.5810547, 3.0625, 0.08050537, 0.80322266, 0.8720703, -1.4863281, -0.19262695, -0.24084473, -1.5810547, 1.2324219, 2.0429688, -0.19946289, 0.23986816, -0.57958984, 1.7216797, -0.97802734, -2.5878906, -1.3105469, -0.057647705, -3.6171875, 2.8828125, 0.10247803, -2.2128906, 0.7470703, -0.6308594, 2.2304688, -2.9570312, -2.7109375, 0.7050781, 0.796875, -0.8955078, -0.56347656, -0.8798828, -0.41064453, 0.77685547, -3.6757812, 0.22607422, -0.32226562, -0.64404297, -0.66015625, -0.7060547, -0.027709961, 0.28686523, 0.08483887, -0.53564453, 1.1064453, -1.0126953, -2.3125, 1.0039062, -3.546875, 0.6826172, -3.2441406, -0.45214844, -0.6176758, 0.54296875, -2.6230469, -1.7949219, 1.7294922, 0.32666016, 3.8378906, -0.88916016, 0.21923828, 0.8017578, -1.9238281, 1.4667969, -0.62353516, -2.8828125, -0.2709961, 1.0117188, -0.79003906, -3.1640625, -3.671875, -0.099243164, -1.4755859, 0.77001953, -0.5292969, 0.3125, -1.9365234, 1.7958984, -2.1894531, -0.42382812, 0.40014648, 0.6386719, -0.8457031, -0.030212402, -1.7392578, 0.8647461, -1.4824219, -0.5522461, -0.49658203, 0.45458984, -0.45776367, -0.38500977, 1.2089844, -0.50341797, 1.6044922, 0.023147583, -3.8515625, 1.5615234, 1.0175781, -1.5634766, 4.2382812, -1.6933594, -1.8916016, -4.71875, -2.015625, 2.078125, 2.7792969, 2.2265625, -0.6567383, -0.048583984, 1.3310547, 0.5205078, -1.875, 0.4650879, -1.0849609, 3.3867188, -2.3242188, -2.5410156, 0.57373047, 2.6328125, -3.0605469, -1.9072266, 0.90625, 0.5385742, 1.5, 3.3867188, 0.6767578, -0.16638184, 0.3251953, 1.0019531, 2.0429688, -0.6074219, -0.15893555, 0.8666992, -1.7666016, 1.7392578, 1.5751953, 0.5073242, 1.46875, 0.7216797, 1.5527344, 2.5117188, -0.8144531, 1.8574219, 0.07952881, 1.4628906, 1.7734375, 3.2773438, -1.9033203, -0.01461792, -0.8095703, -0.15930176, 1.0488281, -0.11999512, 0.37060547, 1.9599609, 0.8334961, -0.27929688, -0.0713501, -0.057373047, 0.55859375, -1.1816406, 1.2695312, -2.3378906, -1.1806641, 0.38500977, -2.3886719, -2.2265625, -2.1074219, 3.2304688, -0.8852539, -2.1308594, 1.0166016, 2.9238281, 1.0244141, -3.1738281, -3.109375, 1.4902344, -0.57470703, 2.5683594, 1.8632812, -1.1425781, 0.064208984, 0.43164062, 0.6040039, 2.4667969, -1.2304688, -1.0107422, -1.8330078, -0.29418945, 0.6166992, -0.25097656, 1.28125, 0.09057617, -2.1914062, 0.55029297, -2.6054688, 0.83740234, -0.23168945, -2.6171875, -0.73779297, 3.2519531, -0.16491699, 0.90625, -0.121276855, 3.6425781, -1.5898438, -0.7495117, 0.24353027, -1.0878906, -0.7114258, -2.2363281, -3.0664062, 1.6962891, -0.9770508, -1.0371094, 2.296875, -1.1894531, 0.10583496, -0.37548828, 1.0146484, -1.4208984, -1.8212891, -2.4609375, -0.7416992, -2.2324219, 0.5541992, 0.8925781, -0.98828125, -1.9814453, -1.7929688, -2.1367188, 0.54296875, 2.2929688, 1.7011719, -0.3100586, 1.0615234, -1.0546875, 1.8623047, -0.20568848, -0.75439453, 0.7363281, 0.31518555, -0.14880371, -3.9199219, -0.6357422, 1.1601562, 0.074645996, 2.1835938, 1.2753906, -0.80810547, -1.5136719, 0.95703125, 2.1171875, 1.3427734, 0.8691406, -1.6894531, -1.0664062, -1.2167969, -1.2216797, 0.21411133, -0.5727539, -0.019836426, -1.3730469, 1.5439453, 0.29345703, 1.7197266, 2.6425781, -0.088134766, -1.0556641, 1.4570312, -0.296875, -2.7207031, -2.4453125, -1.2392578, -0.57128906, -1.9267578, -0.38867188, -0.9013672, -0.8364258, -0.2775879, -1.0175781, -1.7177734, 1.5410156, 1.7851562, 2.703125, 1.2070312, 0.46655273, 0.009391785, 1.3994141, -1.2089844, -0.99072266, -0.79003906, -1.6875, 1.1933594, 0.6801758, 2.078125, -1.2490234, -0.79296875, -0.27294922, -2.2441406, -1.7324219, -1.0703125, 0.921875, -1.8925781, -0.16333008, -0.38916016, -1.1152344, 2.1210938, -2.2304688, 0.9355469, -0.96191406, 0.734375, 0.84228516, -0.5058594, -0.7714844, 1.7470703, 1.4101562, -0.2890625, -1.1230469, -1.7792969, 0.7182617, -0.62890625, 2.1933594, -1.6279297, -1.6269531, 0.89404297, 0.42919922, -1.4296875, -0.1463623, 0.83496094, 2.203125, 0.84033203, 2.7871094, 0.9145508, -1.1865234, 1.1728516, 0.46777344, -1.9902344, -0.124572754, 0.7158203, -1.0712891, 1.2597656, -2.0078125, -4.03125, -0.1472168, 1.9345703, -0.22753906, 1.2802734, -0.31860352, 0.24438477, -0.40795898, -3.4121094, -0.05807495, -0.31518555, -1.7041016, 1.3476562, -3.0253906, -0.47924805, -0.99560547, 2.1796875, 2.2636719, -0.29907227, -0.953125, 1.0283203, -1.2646484, 0.56103516, -1.1796875, -1.4365234, -3.2324219, -1.6972656, 1.9746094, 1.0029297, 0.2541504, 0.096191406, 0.5883789, -1.5429688, 0.69628906, -3.1953125, 3.0273438, -2.5625, 0.14245605, 2.8261719, -1.3730469, -0.3322754, -1.6728516, 0.22766113, 0.025924683, 2.5410156, 0.81884766, -0.29052734, -0.99121094, 1.1523438, -2.671875, -4.1171875, -1.4238281, -0.375, 0.18054199, 0.67626953, 1.3632812, -1.0703125, -0.44384766, -1.0341797, -0.38916016, -0.87060547, 0.43701172, 0.06427002, -0.64746094, -0.25952148, 0.83691406, -0.095947266, 1.6582031, 1.6943359, 1.8359375, -1.0644531, -3.2460938, -1.2070312, 0.86328125, -0.85791016, 0.93652344, 1.0966797, -1.3046875, -1.2851562, -0.68896484, 0.6323242, 0.048034668, 2.8183594, -0.5595703, -0.62158203, 0.33764648, -1.3359375, -0.43237305, 0.765625, -1.2841797, 0.86279297, -0.6665039, 2.2207031, 0.015068054, -0.6074219, 0.24035645, 1.5839844, 0.97265625, 0.67285156, 1.9589844, 0.1508789, 1.5390625, 1.1337891, 0.07385254, -1.9287109, -2.2421875, -3.5625, -0.14685059, -2.1054688, -0.16699219, -1.9433594, 2.7949219, 1.9707031, 2.8378906, 0.5488281, 0.18359375, 1.2470703, -1.0146484, 0.67626953, 0.11975098, 2.9101562, 3.0410156, -0.47827148, -2.4726562, -0.49243164, 0.19799805, 0.7133789, 0.81347656, -0.12609863, 0.40625, -1.5644531, 1.1396484, -0.71240234, 3.7167969, 1.1396484, 1.7744141, -0.37670898, 2.203125, 3.2988281, -1.1992188, -0.15649414, -0.25878906, 2.1230469, -1.2412109, 2.3828125, -0.98828125, -2.2011719, 1.5478516, -0.9707031, 1.3457031, -0.09857178, -1.1523438, 1.5908203, -1.1835938, 0.10406494, -2.1738281, -0.39208984, -2.5859375, 3.8183594, 1.1074219, -1.2988281, 1.5869141, 1.7080078, -0.4416504, 1.0380859, 1.9580078, 1.2197266, -0.68066406, 1.5488281, -0.54345703, -0.08605957, 0.7910156, -2.3105469, 3.6269531, -0.5415039, -0.3305664, 0.11468506, 3.2929688, 0.48339844, 3.1015625, 2.1191406, 1.6064453, 3.0742188, 1.6679688, 3.5566406, 1.0507812, 0.8222656, 0.4580078, -1.9521484, -0.039611816, 3.9101562, 2.296875, 0.100097656, -0.8076172, 1.0605469, -0.7807617, -0.052825928, -1.0683594, 0.77783203, 0.31982422, -3.7207031, 3.5058594, 1.3085938, 0.9013672, -1.7529297, 0.77197266, -0.14074707, 0.107910156, -0.38500977, 0.16381836, 1.0996094, -1.2744141, 1.9003906, -0.6323242, 0.11419678, 1.8447266, -1.2294922, -1.8251953, -0.47314453, -1.4472656, -1.3574219, -0.1850586, 1.6953125, 0.75439453, 0.9472656, 0.33129883, 1.5771484, -0.038024902, 0.6489258, 0.41259766, 0.5283203, 0.81591797, 3.2519531, -0.048431396, -1.4287109, 0.69091797, 0.25170898, -2.2265625, -3.7714844, 0.98779297, 0.2590332, 1.7773438, 0.23095703, -2.0449219, 1.8427734, -0.05239868, 1.4316406, -0.49853516, 1.8564453, -0.69189453, -2.3144531, -1.7128906, -0.9267578, 2.453125, 2.2246094, 1.4248047, -0.17797852, 2.6523438, -0.5449219, 2.515625, -1.0039062, 0.46777344, -0.39086914, 2.3300781, -1.7753906, 2.2949219, 0.41625977, 0.9741211, -0.39501953, 1.9892578, 1.7246094, -0.25756836, -1.4912109, -0.70654297, 1.3837891, -0.73339844, -0.38012695, -1.4794922, -0.34472656, -0.89160156, 1.0205078, 0.3720703, -0.13452148, -0.8208008, 0.70214844, 3.6074219, -1.7421875, 1.7128906, 1.4521484, 0.8989258, 2.7246094, -2.0898438, -1.9667969, -0.84277344, 1.2070312, 0.25805664, 0.5864258, -1.2539062, 0.515625, 0.67333984, -1.4121094, -1.1240234, -0.28442383, -1.2412109, -0.35766602, -1.0039062, 0.9223633, 0.33422852, -0.3947754, 0.2631836, 0.43823242, 1.1787109, 3.2304688, -0.9067383, -0.453125, -0.050231934, -1.4384766, -0.5708008, -1.8935547, -1.1005859, 0.15612793, 3.9628906, 0.76123047, 1.5908203, -2.4648438, -1.5927734, -2.171875, -0.37817383, 2.7773438, 0.48242188, -2.4453125, 0.64453125, -0.29907227, 1.1835938, -1.0742188, -1.1279297, -0.16723633, 0.30541992, 0.8383789, 0.48291016, 1.4550781, 1.125, -1.8183594, -0.03314209, 1.28125, 1.0234375, 1.4873047, 1.78125, -0.6455078, -0.47802734, -2.3046875, -0.5644531, 0.29370117, -1.4609375, -1.2431641, 2.0097656, 3.4707031, 2.2441406, 0.66015625, -2.8925781, -1.3300781]}, "B088KD4JJ4": {"id": "B088KD4JJ4", "original": "Brand: Saking\nName: Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)\nDescription: Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

MAIN FEATURES
\u2605 Made of 600D heavyweight oxford fabric with PVC layer
\u2605 Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
\u2605 Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
\u2605 Superb wrapped sewing makes it stronger and nicer look
\u2605 Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
\u2605 Come with 4 useful accessories to avoid being pierced by table's sharp corners

SPECIFICATIONS
- Brand: Saking
- Condition: New
- Colour: Black
- Material: Heavy-duty Oxford with PVC
- Shape: Square
- Dimensions:
29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

PACKAGE
1 x Square Fire Table cover
1 x Storage bag for the cover
4 x additional protective items

NOTE:
Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit\nFeatures: \ud83d\udd25 \u3010 Perfect Fit for 28x28 Tall Square Fire Tables \u3011Cover size: 29\" L x 29\" W x 25\" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit)\n\ud83d\udd25 \u3010 100% Waterproof Material \u3011 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables\n\ud83d\udd25 \u3010 100% Windproof Design \u3011 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly\n\ud83d\udd25 \u3010 Air Vents & Handles \u3011 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off\n\ud83c\udf81 \u3010 What You Get \u3011 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table's sharp corners\n", "embedding": [-0.20483398, 1.6708984, 1.6875, -2.3886719, 0.8041992, 1.8681641, 0.8154297, -2.4355469, 0.14208984, 2.9804688, -0.017715454, 0.56152344, 1.6699219, -3.2617188, 2.8320312, 0.75146484, -0.42578125, 1.7324219, 2.6425781, -1.2441406, 1.8544922, -1.5009766, 1.1767578, -1.8935547, 0.60253906, -0.97753906, 3.7109375, -4.4453125, -0.4909668, -0.72021484, 0.5625, 1.5449219, 0.54345703, 2.2089844, -1.7119141, -1.9267578, -0.07720947, -0.030975342, -0.30493164, 0.2932129, -1.8837891, -3.3554688, 3.2304688, 3.4082031, -1.7832031, 2.1269531, 0.6040039, -2.6015625, -0.019439697, -0.8461914, 0.4633789, -0.23962402, 1.9414062, 0.75390625, -1.0986328, 0.9902344, -1.1083984, -0.8774414, 0.9345703, 1.0341797, 3.1796875, -0.75634766, -0.3623047, 3.5117188, -1.2304688, -0.23156738, 0.059417725, -0.8774414, 0.2861328, 0.42260742, 1.3125, -0.72802734, 0.79248047, 0.84277344, 2.265625, -2.0410156, -4.28125, 2.0078125, 2.5625, -2.0175781, 0.26391602, 1.578125, -0.54785156, -1.5927734, -0.85546875, -0.14587402, -1.4726562, -1.9707031, -0.6958008, 1.4980469, -0.77685547, 3.3164062, -0.5107422, -3.3007812, -0.07147217, -2.7792969, 1.8945312, 0.66552734, -0.19750977, -0.88916016, -0.54785156, 0.63427734, 0.5527344, 2.0664062, -4.1210938, -1.8681641, 1.5585938, -0.0032081604, 0.14160156, 0.5932617, 0.051605225, -0.32177734, 0.5473633, -1.4726562, -0.23901367, 2.3867188, -0.8442383, 1.0683594, 3.0800781, 0.1149292, 4.4140625, 2.1269531, 0.026824951, -1.515625, 1.5429688, 0.13085938, -2.5234375, 1.671875, 1.4980469, -2.6191406, 0.6567383, -2.4804688, 0.6538086, -0.55810547, -2.6914062, 0.7602539, -3.3085938, 0.7211914, -2.8632812, 0.4921875, -2.03125, -0.7709961, 1.0087891, -0.5805664, -3.5234375, -0.75341797, -0.8847656, 4.046875, -1.8203125, -2.4667969, -0.16833496, 0.5410156, 1.0498047, -3.3066406, 0.41137695, -1.8232422, 1.5957031, -4.6054688, 3.0136719, 0.7714844, 3.1328125, -1.5009766, -0.1821289, 1.1982422, 1.6943359, -1.5566406, 3.2070312, 0.73828125, -0.55322266, 2.6230469, 0.48535156, -1.2783203, -0.84472656, 1.9013672, -0.097595215, 0.24902344, 0.54833984, 1.0722656, 1.3671875, 1.0126953, 0.08618164, 0.0021209717, 0.62890625, -0.117614746, -0.9267578, -1.4208984, -0.2421875, -2.1464844, 0.12817383, 0.06866455, -3.1210938, 0.63378906, -2.8828125, 0.28515625, -2.5976562, -2.1972656, -1.7324219, -2.4042969, 0.2467041, 1.6425781, -0.38891602, 0.75097656, -1.6181641, 0.85595703, -3.9550781, -1.234375, -0.48461914, 3.0820312, 2.6367188, 1.0195312, -1.0566406, -2.3203125, -0.59521484, 2.7617188, 0.60253906, 0.44580078, 1.5742188, 0.4897461, 0.7597656, 2.2851562, 1.7695312, 0.37060547, 2.0214844, 2.5917969, -0.030563354, 1.8955078, 1.7197266, 1.3691406, -1.8798828, -1.5517578, 1.4541016, 0.6298828, -0.5644531, 2.5429688, -2.953125, 1.6923828, 0.0053100586, -0.76904297, 2.359375, -1.1669922, 1.9472656, -2.03125, -2.1191406, 0.24414062, -0.40014648, 1.0400391, 0.98828125, 0.6274414, 1.1972656, -0.11053467, -2.1074219, 0.30859375, 1.6425781, 1.2207031, 0.22680664, 0.066467285, 0.9458008, -0.99902344, 1.3623047, -0.22094727, -0.55322266, 1.5800781, -0.7607422, 1.5244141, -0.50341797, -2.3769531, 1.0019531, -0.32910156, -2.4472656, -0.8413086, -0.026062012, -1.0136719, 2.3535156, -0.63671875, -0.10473633, -0.8588867, -0.13354492, 1.3925781, 0.5629883, 2.4023438, -0.19213867, 0.5888672, 2.234375, 0.3173828, 0.33862305, 0.3137207, 2.0019531, 1.5810547, 1.2832031, -1.0712891, 3.6445312, -0.11340332, 0.17980957, 1.5351562, 0.4609375, -1.1152344, -0.39038086, 0.13574219, -0.6948242, -1.5195312, -0.9194336, 2.6894531, 1.4941406, 2.375, -1.4501953, -0.10821533, 0.26879883, -2.7792969, -0.578125, 0.21276855, -0.8017578, -1.8164062, -0.071899414, 1.8701172, -2.8378906, -2.4257812, 2.5410156, -1.9199219, 0.0025234222, 0.84228516, 0.40429688, 0.7001953, -2.1445312, -1.7070312, 0.16674805, 3.3378906, -2.0644531, 0.012374878, 0.8876953, -0.74853516, -2.0625, -1.1787109, 0.62890625, -3.7773438, -2.5585938, -3.4453125, -2.6347656, 0.41967773, -0.45776367, -1.7441406, 1.3496094, 0.0960083, -1.2783203, 0.9394531, -0.23986816, -1.7050781, 0.69140625, 1.1474609, -3.4257812, 1.3222656, -0.16723633, 2.8828125, -0.16027832, -0.50683594, -0.98583984, 0.74902344, -0.2788086, -1.0039062, -0.9951172, -0.5571289, -1.5683594, 0.97802734, 1.2597656, -2.8730469, 2.0722656, -1.390625, -0.12573242, -3.2050781, 0.6035156, 0.7060547, -0.6538086, -0.3317871, 1.4443359, -2.8164062, -1.9150391, 0.2619629, -1.5400391, 5.8710938, 1.0566406, 2.8632812, -3.203125, -0.39086914, -1.1914062, -0.5830078, -1.0302734, 1.6132812, 0.08477783, -0.37548828, -1.6074219, -0.6245117, -1.5859375, -1.8574219, -1.4560547, -0.29858398, 0.4711914, -0.625, 0.93652344, -2.7148438, -1.40625, -1.8320312, 0.7270508, 0.60839844, -0.18139648, 0.26391602, -2.4921875, -1.5917969, -1.3457031, 0.9604492, 3.3652344, -2.3945312, 1.1181641, 2.1171875, -2.0390625, 2.7929688, 1.1484375, -2.8222656, 1.5292969, 4.1953125, 0.51708984, 0.84765625, -1.9169922, -2.7421875, 0.52734375, 0.69140625, 3.0488281, 1.0400391, -0.6591797, -0.54003906, -0.7446289, 0.086120605, -1.1826172, -0.93652344, 0.5097656, 1.2685547, 2.671875, -2.1855469, 0.086364746, 1.4990234, 1.9892578, -3.8789062, -0.2253418, 0.49975586, -0.60791016, 0.6069336, -1.0498047, -0.4182129, 0.9199219, -1.2988281, 1.6230469, -1.9511719, 2.2773438, -0.055755615, 0.103027344, 0.97998047, 2.3632812, 2.0605469, 2.9199219, 0.91796875, 2.6210938, 1.2441406, 2.0136719, -3.2226562, 0.22302246, 0.57958984, 1.0996094, 0.70166016, 1.8876953, -1.5146484, -1.1103516, 0.24621582, -0.8623047, 0.27514648, -1.6748047, 1.9208984, 0.9501953, -0.71191406, -0.8745117, -1.0029297, -0.52783203, -0.9663086, -2.8984375, 1.1621094, -1.8398438, -1.5097656, 3.3574219, -2.625, 0.5859375, -1.1337891, 3.5390625, 0.64746094, -2.5058594, 0.5161133, 2.546875, -0.8623047, -1.1279297, -0.24206543, -2.1464844, -1.1123047, 2.9199219, 1.1386719, -2.25, 0.62060547, -3.6875, 0.86572266, 2.5976562, -0.11956787, 0.2939453, 2.8886719, -0.8989258, -2.0898438, 1.8027344, -0.23486328, 1.1259766, -3.2128906, 0.36694336, -1.3105469, -1.8027344, 4.2734375, -2.1601562, -0.28027344, 1.9736328, 0.051452637, 0.8417969, -0.8027344, 3.0292969, -1.1796875, -2.1191406, 2.8066406, -0.28515625, 0.21362305, -0.099731445, -4.1914062, 0.40405273, -2.5292969, -0.044647217, 2.7714844, 2.1816406, 1.0644531, 0.32641602, -0.1907959, -2.59375, -1.375, -1.6572266, -1.1113281, -4.7148438, -1.7382812, -0.23266602, 0.48632812, 0.52441406, 0.27954102, 0.18432617, 0.5961914, -0.083496094, -0.40307617, -1.6962891, -1.6308594, -2.5136719, 0.23168945, 0.027496338, -0.034332275, -0.8051758, -1.2597656, -0.42163086, -0.87890625, 1.8818359, 1.5791016, -1.4023438, 1.0839844, 3.5488281, -0.69433594, -1.6494141, 0.47485352, 1.2646484, 2.5253906, -1.15625, -0.83935547, 1.3720703, -0.4501953, 3.2011719, -0.79345703, -1.7792969, 1.3808594, -3.1210938, 0.8334961, -0.7006836, 2.8164062, 0.8754883, -0.43823242, -3.3847656, 1.4482422, -3.2988281, -1.3066406, -1.2617188, -1.578125, -0.45141602, -0.10064697, -0.34277344, -2.7285156, 0.7392578, -0.8769531, 1.5478516, -0.8535156, 3.4726562, 0.70703125, 2.3652344, 4.0234375, -1.4091797, -0.53027344, 0.30859375, -1.9863281, 1.5253906, 1.1582031, 0.5292969, 0.4267578, 2.3847656, -1.1923828, -1.4970703, -2.4746094, 0.58740234, -1.6083984, -0.018341064, -0.4519043, 0.13757324, -0.8359375, -1.1611328, -1.9277344, -1.4833984, 0.73095703, 0.2319336, -0.67089844, 0.7011719, -0.51904297, -1.7236328, 0.8955078, 1.4121094, -1.0078125, 0.7192383, 1.8222656, -1.2617188, 1.8945312, 2.6113281, 0.0914917, 1.3369141, -2.0351562, -0.014190674, 0.9423828, 0.5307617, -1.5742188, -2.3671875, 1.0136719, 3.359375, -3.2304688, 1.7021484, -0.058807373, -0.73046875, 3.1347656, 3.0488281, -1.4775391, -0.26586914, -1.203125, 0.3544922, 0.54248047, 0.23425293, -3.3066406, -0.23522949, 0.9033203, -1.3798828, 1.9052734, 0.28637695, -4.1679688, 0.10479736, -1.1884766, -0.8569336, 0.97753906, -1.3193359, -2.2578125, -2.96875, 2.7402344, -2.8457031, -0.5419922, 2.7480469, -0.1171875, -2.6796875, 1.203125, -1.1220703, -0.41625977, -1.5341797, 0.35253906, -0.4128418, 0.036376953, 1.0283203, 0.6425781, 1.6650391, -0.66064453, 1.8613281, -0.8095703, 0.25341797, 1.9814453, 2.5625, -0.15148926, -0.27392578, 3.0878906, -0.39770508, 1.625, -1.2402344, 0.49414062, 0.14221191, 1.5126953, -0.86328125, 1.7958984, -0.046539307, 0.36279297, -2.8984375, -2.2050781, -2.5625, -1.9267578, -2.7148438, 0.7529297, -2.2109375, 1.4130859, 0.5800781, 0.43652344, 0.9667969, -0.1998291, -1.6416016, -0.96533203, -1.6152344, -2.9589844, -0.67578125, 1.7246094, 0.6352539, 0.03982544, 0.18054199, 0.45483398, -0.91503906, 0.8125, 2.921875, -1.9433594, 2.9238281, 0.6567383, -0.3840332, 2.1132812, 1.3515625, 0.43359375, -0.40649414, 1.4326172, 0.22143555, -1.2412109, 2.0800781, -1.9335938, -0.36694336, 1.7998047, -1.6279297, 2.5761719, -1.9179688, -0.75439453, 0.3413086, -0.18188477, 1.59375, 1.2324219, -1.3154297, -0.6074219, 0.82714844, 1.4589844, 0.8173828, 1.6513672, -2.8613281, -0.6801758, -0.6142578, -1.4560547, 0.36376953, -0.12109375, -2.7675781, -0.8041992, 1.3017578, 1.3095703, 0.86376953, 1.1533203, 1.6660156, 2.4863281, -1.1191406, 0.9970703, -1.1464844, 2.6894531, -0.3647461, -0.4284668, -1.7080078, -3.7890625, 0.8623047, 2.921875, 0.4650879, -1.8583984, -0.61621094, -1.4804688, 1.9638672, 0.8183594, -0.09136963, 1.5449219, 1.5253906, 0.17382812, 1.6367188, -0.30029297, 0.5991211, 3.4804688, -0.21459961, 2.5996094, -1.3037109, 0.59521484, 2.7871094, -3.6171875, 0.83740234, 0.20532227, 0.64941406, -1.3837891, 0.61621094, 0.3635254, -1.2646484, -0.36083984, -3.1503906, -1.8203125, -2.8789062, 0.8305664, 1.4560547, 0.32910156, -0.63964844, -0.38598633, -1.8017578, 1.8876953, 2.1660156, -1.4716797, -0.7548828, -1.3398438, -1.7773438, -0.8461914, 1.2226562, 1.1728516, -1.8886719, -0.09832764, 0.12164307, -0.14343262, 0.6352539, 0.6489258, 1.6503906, 1.8994141, 2.4960938, 1.2578125, 0.50634766, 2.2949219, -0.37329102, 1.140625, 1.6201172, -0.8041992, -1.5361328, 2.2910156, 3.328125, 1.1826172, 0.5839844, -0.15576172, 0.9916992, -0.43041992, 0.0026111603, 1.2685547, 0.80029297, -2.2226562, 0.8071289, -1.0244141, 1.1005859, 0.40039062, 1.4326172, -1.1064453, 0.1105957, 1.8222656, -1.7246094, 1.0488281, -3.3808594, -1.9453125, -0.48413086, 1.7773438, 0.6455078, -3.671875, 2.1757812, -0.62646484, -4.2734375, -1.1416016, 4.8359375, 1.4628906, 2.0703125, -1.7314453, 1.2753906, 1.1591797, 1.9296875, 0.47314453, 1.3007812, 1.0693359, -0.0074653625, 1.8964844, 1.0537109, -2.2402344, -2.265625, 1.0244141, -1.1337891, -2.6113281, 0.44702148, -0.033966064, 0.38891602, 1.0527344, -0.26513672, -1.3212891, 2.0253906, -0.14562988, -2.5585938, -1.25, 0.5541992, -1.0683594, -0.7993164, 0.6401367, -1.0488281, 1.9697266, 0.51123047, 0.09210205, 2.4375, 0.99316406, 1.515625, 2.1640625, -0.74609375, 0.07305908, 1.7460938, -1.6396484, 0.72998047, 3.0839844, 1.2070312, -0.98535156, 2.0722656, 1.5634766, -0.66845703, 0.35766602, -2.4101562, 0.23608398, 1.2636719, -0.6020508, 0.1328125, -0.43066406, -1.7587891, -0.70166016, 0.92871094, 1.0263672, -2.8300781, 0.6982422, 2.5078125, -1.4355469, -0.7519531, 1.7792969, -1.6367188, 0.80810547, 0.6958008, 0.90722656, -0.8701172, -0.62402344, 1.8691406, -0.71728516, -2.9980469, -2.6894531, 1.2060547, -0.47583008, -0.94628906, -0.07324219, 1.5234375, -0.92285156, 0.85839844, 3.7832031, -0.7397461, -0.56640625, -1.3896484, 0.6464844, -0.83691406, 0.97265625, 0.45043945, -1.6689453, 0.71533203, -1.8857422, 0.89697266, 0.78808594, -3.7324219, -0.5727539, 4.8867188, 3.3085938, -1.9667969, -0.32983398, -3.3789062, -0.93896484, 0.9458008, 3.3320312, -0.81591797, 0.3876953, -0.72558594, 1.2060547, 4.3359375, -0.9970703, 0.9477539, -1.046875, -0.6616211, 0.40454102, -2.2167969, 0.28808594, -0.070251465, 1.5263672, 1.7265625, 2.2246094, 3.4765625, -0.7314453, 0.8823242, 1.6728516, -0.99365234, -2.3125, 0.70458984, 0.04446411, 1.7568359, 2.3007812, -1.7294922, 0.31274414, -0.93310547, -2.2753906, -4, -0.090148926]}, "B08GY9MT25": {"id": "B08GY9MT25", "original": "Brand: Bluegrass Living\nName: Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181\nDescription: \nFeatures: ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction.\nGLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit.\nCONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space.\nPREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use.\nSTAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase\n", "embedding": [-0.5805664, 2.5859375, 0.7416992, -1.8300781, 1.9345703, 1.2060547, 1.1074219, -1.5742188, 0.16760254, 2.7988281, -1.8515625, 1.0537109, -1.8789062, -4.2109375, 0.9394531, -0.03665161, 1.8574219, 0.9707031, 1.3417969, -1.7480469, 2.1601562, -1.1162109, 1.1533203, 0.6347656, 1.8515625, -0.03930664, 2.6289062, -3.5097656, 0.17810059, -1.0703125, 2.7871094, 1.6767578, -1.2285156, 2.0976562, -2.8125, -2.453125, 0.54345703, 2.2578125, -1.7138672, 0.2142334, -2.84375, -1.2695312, 3.5644531, 1.9052734, -1.8544922, 0.40014648, 0.7089844, -1.9003906, -0.13366699, -2.1816406, 0.3125, 2.1972656, 1.609375, 0.27783203, -1.6699219, 1.9082031, -1.5292969, -1.59375, 1.7333984, -0.4453125, 1.4072266, -0.8510742, -1.0849609, 2.0292969, -2.0546875, 1.3320312, -1.4052734, -0.35375977, -0.3635254, 1.3085938, 1.0537109, 0.60302734, -1.4619141, 1.8857422, -0.44970703, -1.2958984, -3.1132812, 2.0390625, 1.375, -1.484375, 0.23791504, 2.3144531, 0.2010498, -1.5830078, 0.66064453, -0.7553711, -0.83154297, -0.9707031, 0.5913086, 1.3378906, -0.6801758, 2.1054688, -0.7055664, -4.328125, 1.0380859, -2.6269531, 0.6870117, -0.41723633, -2.2128906, 0.48413086, 0.99902344, 0.73291016, 0.20397949, 0.8413086, -2.5644531, -0.5913086, 1.3447266, 1.4072266, -0.28149414, -0.16149902, -1.5976562, 0.54833984, -0.50390625, 0.33154297, -0.6245117, 1.7675781, 0.2536621, 1.7226562, 2.1289062, 0.2668457, 3.8300781, -0.17285156, -1.0410156, -0.6201172, 0.6640625, -0.11767578, 0.3269043, 1.5117188, 1.6240234, -1.1318359, 1.1806641, -0.7919922, 1.3994141, 0.37548828, -3.1542969, 0.2631836, -1.0927734, -1.8525391, -2.5058594, 0.84472656, -1.7890625, 1.4306641, 0.41210938, -0.96972656, -4.0859375, -0.4033203, -0.24389648, 3.0878906, -0.5986328, -2.9453125, 1.1083984, -0.7763672, -0.17614746, -2.2460938, 0.18945312, -1.65625, 1.6796875, -2.4140625, 2.390625, 0.8652344, 1.2587891, 0.5961914, -0.17346191, 1.1386719, -2.3066406, -0.23083496, 2.5976562, 0.086120605, -0.95654297, 0.06665039, -1.7451172, -0.0012216568, 0.6333008, 0.9189453, 0.22058105, -0.28271484, 0.5058594, 0.96484375, 2.1992188, 0.5175781, -0.69970703, -1.6845703, -0.09283447, -0.44726562, 0.69677734, -2.4335938, -1.5478516, -1.9785156, 0.81591797, -2.1640625, -1.1005859, 0.107421875, -1.0458984, 0.5625, -0.1005249, -2.3535156, -3.8261719, -0.6582031, 1.6162109, 0.54052734, -0.29418945, -0.12927246, -1.8857422, 1.2529297, -2.7949219, -2.1484375, -1.2753906, 1.7138672, 2.2558594, 0.82373047, -0.46679688, -1.1308594, 1.6923828, 0.61328125, -0.4477539, -0.9321289, 0.9951172, -0.5722656, 1.4404297, 0.13464355, 0.80859375, -0.46313477, 1.7529297, 2.4511719, 2.0449219, 0.64404297, 1.8710938, 0.28515625, -2.5410156, -3.3789062, 1.5292969, 1.2988281, 0.18469238, 1.0888672, -1.4228516, 2.9179688, 0.49951172, -1.3496094, 1.6992188, -1.4179688, 0.13464355, -2.0957031, -2.5214844, 0.64208984, 1.9316406, 1.8154297, -1.2626953, 2.5351562, 1.4853516, 0.2705078, -0.90771484, 1.4960938, 1.6054688, 0.5932617, -0.25439453, 0.8105469, -0.61376953, -1.5488281, 1.1435547, -1.9375, 0.96728516, 1.1259766, -0.5600586, 0.0074043274, -0.62890625, -3.3789062, 1.0429688, -0.059539795, -2.6171875, -0.5336914, 0.1484375, 0.625, 2.7382812, 1.0273438, 0.0546875, 0.35595703, -1.3027344, 3.3046875, 0.6035156, 2.8242188, -0.68310547, -0.4230957, 1.6357422, -0.81396484, -0.23754883, 0.034088135, 1.3359375, -0.20227051, -1.5556641, -1.0966797, 3.3828125, -0.4248047, -1.8496094, 2.5253906, 0.10797119, -0.020401001, 1.9570312, -1.5722656, -0.65234375, 0.9633789, 2.8320312, 2.9550781, 1.0273438, 0.9658203, -1.5429688, 0.55908203, 0.35961914, -3.6699219, -0.7553711, 0.71728516, 1.2021484, -0.2824707, -0.049591064, 1.5234375, -2.625, -1.5546875, 2.0390625, -1.6865234, 2.2988281, -0.2836914, 1.5800781, 1.6210938, -2.3144531, -0.40185547, -0.2775879, 2.6289062, -0.32958984, 0.43823242, -0.124816895, -1.3808594, -1.6962891, -1.2207031, 1.9609375, -2.4023438, -1.0126953, -2.3808594, -1.4404297, -1.4277344, -1.5517578, -3.0058594, 0.5488281, 0.4453125, -1.6640625, 2.4726562, -0.9404297, -1.3222656, 0.67626953, 1.9628906, -1.9023438, 2.3652344, 0.4248047, 2.265625, -0.9560547, -1.6875, -0.1517334, 0.7260742, 1.2988281, 0.83984375, -0.022232056, 0.4091797, -0.66796875, 2.6816406, 0.65283203, -2.1152344, 1.6259766, -1.3681641, -1.8720703, -3.9277344, -0.013496399, -0.5161133, -0.28881836, 0.24389648, 0.26293945, -1.1357422, -0.6513672, 1.7070312, -0.92871094, 2.7441406, 1.8613281, 3.5351562, 0.64160156, -1.7353516, -0.1204834, -0.34570312, -2.9335938, 1.0859375, 0.54052734, -0.56884766, -2.4609375, -1.6279297, 0.88720703, -0.95410156, -1.2529297, -0.22094727, 1.1513672, 2.0195312, 1.4335938, -2.4921875, 0.56396484, -0.5332031, 2.0898438, 0.86621094, 0.7963867, -0.07702637, -0.09979248, -1.0615234, -0.42358398, -0.04058838, 3.0410156, -0.12072754, 0.49829102, 1.7236328, -0.6538086, 0.8388672, 1.0595703, -4.3632812, 0.4091797, 3.2753906, 0.36816406, 0.29418945, -1.4550781, -0.2770996, -0.8022461, 1.2333984, 3.0820312, 1.0214844, 0.43945312, -0.57714844, -0.18408203, 1.4824219, 1.1367188, -1.6279297, 1.0078125, -0.06402588, 2.984375, -2.0644531, -0.14697266, 0.52978516, 1.4677734, -3.5644531, -1.0761719, 1.3720703, -1.8037109, 0.8041992, -1.4257812, 0.34448242, 0.59277344, 0.24597168, 0.6699219, -0.7988281, 1.2021484, 1.4541016, -1.2802734, 0.33642578, 1.8271484, 0.45629883, 2.6054688, 1.0546875, 0.1784668, 0.9379883, 0.6044922, -2.9199219, -0.08831787, 1.0478516, 0.7246094, -0.38842773, 0.91259766, -1.1865234, -0.21777344, 0.27612305, -0.27148438, 1.9072266, -2.3964844, -0.8388672, 2.2460938, -0.16625977, -1.6875, -0.32666016, 0.0019512177, 0.14526367, -2.3515625, 0.40234375, -2.171875, -0.5161133, 0.7573242, -2.0039062, -0.7836914, -1.5732422, 3.9707031, -0.74365234, -2.5410156, -0.5180664, 2.3457031, -0.09844971, -1.0634766, 1.4931641, -1.1240234, -0.29882812, 4.6289062, -0.8413086, -1.4130859, 0.69873047, -1.4423828, -0.35424805, 1.3310547, -1.0419922, -0.1315918, 1.1220703, 1.0683594, 0.28198242, 1.2988281, -0.875, -0.87158203, -1.7597656, 2.1152344, -0.8154297, -1.0234375, 2.1386719, -2.1972656, -0.6538086, 1.7207031, -1.4375, -0.0043907166, 0.07733154, 1.5517578, 0.10357666, -0.83740234, 4.5859375, -0.94628906, -1.0351562, -0.62890625, -5.1757812, 0.6010742, -2.7109375, -0.6826172, 2.1152344, 0.8339844, 0.5239258, 0.87890625, 0.34570312, -3.3417969, -1.7177734, -2.078125, -1.6445312, -4.0859375, -2.2617188, -1.3457031, -0.78125, -1.2695312, 0.08166504, 0.108947754, 1.8779297, -0.4345703, 0.75146484, -0.8388672, 1.6337891, -1.7822266, 0.45458984, 0.9633789, 0.77197266, 0.58447266, -0.8979492, -0.0496521, -1.6601562, 2.4550781, 1.0175781, -1.8925781, 1.8271484, 2.1503906, -0.32910156, -0.0076065063, 0.6435547, -0.3959961, 3.4121094, -0.14099121, -3.0625, -0.90527344, -0.6586914, 0.38232422, -0.3149414, -1.3007812, 0.20349121, -1.5751953, 0.032836914, 0.079589844, 2.0429688, 0.81396484, -0.21264648, -2.2910156, 1.1113281, -1.0429688, -1.6474609, -1.3828125, -1.2646484, 0.25463867, -0.8251953, 0.39575195, -3.0859375, 0.63916016, 0.20605469, -0.40893555, -0.28808594, 2.8125, 1.1660156, 2.4355469, 4.7148438, -1.6523438, -1.8134766, 2.8105469, -1.4863281, -0.36938477, 1.8789062, -0.64746094, -0.5932617, -1.4238281, -0.27246094, -1.3486328, -1.4326172, 1.2568359, -2.3847656, -1.3027344, 0.31176758, -1.6972656, -1.1201172, 1.0214844, 0.1352539, -0.96972656, -0.20910645, -1.7871094, 0.76171875, 0.6972656, 1.1767578, -0.09875488, 0.6875, -1.1757812, -0.72021484, 2.15625, 2.7949219, 1.0976562, 0.9526367, 2.4257812, -0.1751709, 0.8886719, 0.23730469, -0.3642578, -1.5576172, -1.4052734, -1.3876953, -1.9150391, 2.6054688, 1.4931641, -2.1015625, 0.90771484, -0.6796875, -2.0859375, 4.2382812, 1.4560547, -1.5146484, -0.33325195, -1.4111328, -0.5449219, 1.6328125, -0.89453125, -2.7753906, -0.6713867, 2.5546875, -1.6621094, 1.4970703, 1.2822266, -0.27807617, 0.06616211, -0.9614258, 0.3005371, -0.26708984, -1.4238281, -1.3066406, -0.5541992, -0.50634766, -2.0703125, 0.08111572, 2.1796875, -0.8496094, -0.5019531, 1.2675781, 0.31152344, 0.50634766, -0.88623047, 0.1706543, 0.15014648, -0.16918945, 1.0927734, 0.70947266, 2.0039062, -0.6689453, 1.0878906, -1.8515625, -0.7470703, -2.1230469, 1.8525391, -0.92626953, -0.29589844, 2.78125, 0.7001953, 1.1181641, -3.0585938, -0.12976074, 0.89941406, -0.3371582, -0.081726074, 1.0625, -1.2705078, -2.0117188, -2.7402344, -2.4746094, -1.1777344, -1.8056641, -2.9550781, 0.6044922, -1.5087891, -0.41430664, -0.5703125, -0.4206543, -0.28881836, 0.24841309, -0.6953125, -0.52197266, -1.1279297, -0.25146484, -0.09881592, 0.46557617, 0.14660645, 0.17822266, -0.7739258, 0.19641113, -2.0078125, 0.5673828, 3.1289062, -0.5961914, 0.97802734, 1.2431641, -1.7763672, 2.0957031, 3.4257812, 0.03543091, 0.31396484, 0.99365234, -0.09423828, 1.0507812, 1.5, -2.15625, 1.5576172, -0.043395996, -1.7470703, 0.59521484, -2.6191406, 0.15527344, -0.076171875, 1.6005859, 0.78564453, 1.5673828, -0.20910645, -0.85302734, 0.82666016, 0.43188477, 2.7871094, 1.1328125, -1.6943359, -0.79589844, -1.6621094, -0.78808594, -0.69384766, -3.6933594, -1.3710938, -0.27294922, 0.07067871, 1.5761719, 0.22143555, 1.7333984, 1.4238281, 1.4638672, -2.0546875, 0.056121826, -0.33129883, 0.68652344, 1.0898438, -1.1796875, -2.6699219, -2.3222656, 1.1748047, 1.5273438, 0.005142212, -0.30029297, -1.1279297, -2.96875, 0.14904785, -0.092041016, 0.4345703, 2.8105469, 2.078125, -1.2939453, 1.7431641, -0.47094727, 0.64453125, 3.0546875, -0.019744873, 3.7714844, -1.4951172, 3.03125, 3.6347656, -2.1347656, 1.0576172, -1.7861328, 1.1474609, -1.4511719, -1.2744141, 0.5493164, -1.4140625, -1.046875, -1.4482422, -0.17822266, -2.8144531, 1.8173828, 0.26586914, 1.0029297, 0.09716797, 0.5180664, -0.21594238, 1.2060547, 2.140625, -2.0390625, -0.94433594, -1.4970703, 0.33154297, -0.4333496, 0.24597168, -0.56396484, 0.75439453, 0.65283203, 0.57910156, -1.1376953, -0.047668457, -0.43579102, 0.57910156, 0.99658203, 3.0039062, 0.83740234, 1.8525391, 2.1640625, 0.22851562, 1.9082031, 1.7617188, -0.47827148, 0.34228516, 2.3378906, 2.1152344, 0.2685547, -0.07171631, 0.9785156, 2.2753906, -0.7211914, -1.0800781, -1.5058594, 1.2509766, -3.1210938, 3.109375, -1.2353516, 2.7441406, -2.2773438, 1.3134766, -1.6962891, -1.0947266, -0.6381836, -1.8085938, 2.0644531, 0.08325195, -0.35961914, 1.9785156, 1.4794922, -1.3085938, -2.2148438, 2.5058594, 0.54052734, -2.28125, -0.41308594, 3.6953125, 2.2597656, 1.4179688, 0.18334961, 1.5878906, -1.8173828, 2.3867188, 0.9711914, -0.20141602, -0.17016602, 1.6943359, 1.1943359, 1.2949219, -2.1914062, -1.6074219, 0.7841797, -2.7929688, -3.1269531, 1.4423828, 1.2685547, 2.0976562, 1.6113281, -1.6513672, 0.12408447, 2.8144531, 1.2177734, -2.2382812, -0.96875, 0.77197266, -2.0195312, -0.4333496, 0.99609375, -0.73291016, 3.2285156, 1.6962891, -0.5239258, 2.2421875, 0.80371094, 1.1796875, -0.28930664, 0.7939453, -1.0429688, -0.17980957, -0.5488281, 1.3574219, 0.033691406, -0.6845703, 1.7402344, 1.75, 1.5224609, -1.0527344, 1.7236328, -1.8154297, 0.051940918, -0.63720703, -0.48364258, -0.32250977, 0.1496582, -1.6865234, -0.79003906, 0.2479248, -0.3774414, -2.5488281, -0.73583984, 0.32104492, -1.5664062, -1.3203125, 1.3544922, -2.359375, 1.2568359, -0.33911133, -0.46728516, -0.14379883, -0.71728516, 1.7617188, -0.6035156, -2.9121094, -0.46435547, 2.5097656, -0.5864258, -0.32617188, -0.33813477, -0.76171875, 2.4511719, 0.80029297, 2.5859375, -2.3144531, -0.09631348, -0.37695312, 0.5698242, -0.6171875, 1.3105469, -1.1132812, -1.7207031, 0.11602783, -3.0136719, -0.46240234, -0.37426758, -2.390625, -0.53466797, 5.0117188, 2.8085938, -0.029541016, -1.1621094, -2.6425781, -0.30664062, 0.66308594, 2.8847656, -0.0033893585, -0.55126953, 0.18615723, 0.9760742, 3.7246094, -0.6767578, -1.2880859, -0.5102539, -0.5473633, 1.0322266, -1.3730469, 1.4238281, -0.29882812, -0.5732422, 1.4716797, 0.8261719, 2.3242188, 2.6757812, 1.6914062, 2.4316406, 0.74853516, -1.7792969, -0.15344238, -1.5927734, 0.18347168, 1.7822266, -0.9589844, 1.5673828, 0.57128906, -0.31054688, -5.0859375, -1.0947266]}, "B002PJJ0MI": {"id": "B002PJJ0MI", "original": "Brand: GasOne\nName: Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor\nDescription: \nFeatures: \u2713 HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances\n\u2713 EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands\n\u2713 DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head\n\u2713 HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability\n", "embedding": [-1.1992188, 1.4130859, 0.7397461, 0.81884766, -0.31640625, 1.5, 1.2519531, -1.0195312, -0.7529297, -0.09753418, 0.13830566, -0.24133301, -0.05593872, -1.6142578, 1.3339844, 0.026123047, -0.2529297, 1.8330078, 0.40356445, 0.7265625, 2.203125, -0.2861328, 2.0546875, -1.9550781, -0.010627747, 0.7519531, 2.9863281, -3.8710938, -0.023590088, -0.7368164, 2.0214844, 1.0800781, -0.6357422, 1.9423828, -2.4589844, -0.73583984, -1.3212891, 1.0009766, -4.2578125, -1.2470703, -0.75683594, -0.7026367, 1.90625, 0.31860352, -1.2705078, 0.9555664, 2.4355469, 1.4189453, -1.6669922, 0.5209961, 0.4638672, 1.4306641, -1.4023438, 0.5336914, 0.17163086, 1.0195312, 1.2207031, -2.2089844, 0.22241211, 0.5839844, 1.0273438, 1.4550781, -2.8867188, 0.12609863, -2.0351562, -0.07110596, 1.2158203, -1.8857422, -1.2851562, -0.1116333, 2.8164062, -0.4309082, 0.0079956055, -0.05496216, 1.2568359, -1.2724609, -2.7539062, 0.7397461, 3.015625, -0.6796875, -1.3476562, 2.1035156, 0.75097656, -0.032714844, -0.7636719, 1.0546875, -1.2060547, -0.6640625, 1.5166016, -0.40698242, -3.171875, 3.6738281, -1.7675781, -3.7636719, 2.1445312, 0.55078125, 0.20080566, 0.7597656, 0.13439941, -0.18322754, -0.7558594, -1.015625, -1.6132812, 0.7182617, -1.1132812, -1.7236328, 2.0136719, 1.859375, -2.765625, 1.1982422, -1.6298828, -1.9619141, 0.91308594, -0.48217773, 0.8618164, -0.30786133, -0.02571106, -0.42163086, 4.078125, 0.19689941, 3.8203125, -1.3076172, 0.103393555, -1.5800781, -0.04724121, 2.3417969, -0.53027344, -0.3239746, 2.3261719, -1.5126953, -0.42407227, -0.68603516, 2.4433594, 0.60009766, -1.3339844, -0.6191406, -0.49658203, -1.640625, -3.5449219, -1.1757812, -2.3945312, 1.7714844, 0.7763672, 0.06732178, -4.28125, -0.55859375, -0.8803711, 3.2109375, -0.4260254, -0.8647461, 0.2944336, -1.1777344, -0.2602539, -1.5029297, 1.9179688, 1.1923828, -0.7836914, -2.9082031, 3.3164062, 1.5146484, 0.91845703, -0.46606445, -0.9321289, 2.3535156, 0.29370117, -1.5527344, 0.07977295, 1.0351562, -1.1318359, 1.2421875, -0.49487305, -2.0859375, -0.89501953, 1.1259766, -0.22912598, -0.69873047, -0.34301758, 3.2324219, -0.017852783, 0.20666504, -3.6835938, -2.5761719, 2.1171875, 0.5083008, 2.5664062, -1.5039062, 0.9667969, -1.2148438, -0.34887695, -1.3164062, -1.6191406, -0.19091797, 0.8803711, 0.38720703, -0.8183594, -1.8798828, -0.6850586, -1.9482422, -0.5917969, 1.0371094, -1.1328125, -1.0517578, -0.6665039, 1.2529297, -1.4746094, -1.6708984, -0.048034668, -2.2363281, 1.7109375, 1.7880859, 0.80322266, 0.28686523, 1.6083984, 0.080200195, -0.52734375, -2.2207031, 2.890625, 1.1914062, 2.6269531, 1.8886719, -0.111572266, -1.7773438, 1.7568359, 1.6142578, -0.3623047, 2.1230469, 1.7832031, 0.88720703, -1.9375, -1.8994141, 3.3339844, 1.6230469, -0.5761719, 0.1862793, -0.26342773, 3.0488281, 0.57128906, -0.34887695, -0.16711426, 0.4255371, -1.0712891, -1.1123047, -1.890625, 0.056793213, -2.3222656, -0.1538086, -0.4892578, -0.4020996, 2.421875, 0.21032715, 0.3840332, -0.24365234, -0.6635742, 0.20581055, -1.3496094, 0.72509766, 0.9946289, 0.75439453, -0.5732422, -1.7412109, 1.5693359, 0.921875, -0.18896484, 0.19372559, 0.012779236, -1.3525391, 3.4589844, 0.60498047, -2.0546875, 0.46606445, 0.91845703, 0.39990234, 3.3710938, -0.46533203, 1.8349609, 1.1601562, -1.8486328, 3.5527344, 0.3244629, 1.7128906, 0.12042236, -2.2773438, 1.5976562, -1.3740234, 1.3710938, 1.4150391, 2.5625, -0.73535156, -1.6533203, 0.8388672, 5.6796875, -0.28930664, -2.8496094, 1.234375, -1.7421875, 0.7421875, 0.94970703, 0.012756348, 0.03704834, -1.3339844, 2.3515625, 0.058807373, -0.14929199, 1.6640625, -2.1367188, 0.0949707, -0.65771484, -1.5556641, -0.8383789, 0.2475586, -0.49902344, -0.31518555, -1.7666016, 1.5371094, -2.5429688, 0.15026855, 2.546875, -3.1855469, 0.38989258, 1.3505859, 0.8691406, 2.34375, 1.28125, -1.375, 2.2480469, 1.3447266, 0.04034424, 1.3203125, 0.08959961, -1.1123047, -1.2851562, -1.34375, -0.33984375, -0.12927246, -1.4023438, 0.4987793, -0.80029297, -2.984375, 2.1132812, -2.3300781, -1.1132812, 2.7695312, -3.1914062, 1.3466797, -1.7851562, -2.4316406, -1.3320312, -0.0128479, -1.2451172, -1.1513672, 1.9042969, 3.0117188, -1.5888672, -4.2226562, -1.0185547, -0.25073242, -0.7661133, 0.58203125, -0.73095703, 1.3291016, 1.0517578, -0.27368164, 0.22290039, -0.33496094, -0.3232422, -2.0664062, 0.90625, -3.9824219, 0.43823242, -1.6054688, 0.19921875, -0.17016602, -0.46777344, -1.9013672, -1.1806641, 0.51123047, -0.06713867, 2.8535156, -2.1894531, 3.2421875, -0.5048828, -1.4375, 0.57714844, -2.5, -2.8828125, 0.44433594, 0.58496094, -2.0371094, -1.6552734, -4.5234375, 1.1943359, -1.3017578, -0.026016235, -0.63427734, 0.37036133, -1.4511719, 0.9609375, -0.94873047, -1.1171875, -0.67041016, -0.36791992, -0.0057907104, -0.7246094, -0.99658203, -0.7236328, -1.6132812, -0.14892578, 1.1806641, 1.4990234, 0.2697754, 0.38598633, 1.6269531, 0.8432617, 0.5527344, -0.23583984, -3.9648438, 2.4296875, 0.77441406, -0.008460999, 1.90625, -2.8984375, -1.2167969, -2.4179688, -0.5019531, 2.0527344, -0.40673828, 2.4511719, 0.17529297, -1.1044922, 0.94189453, 1.421875, -0.5541992, -2.5078125, 0.36108398, 3.0820312, -2.0605469, -1.7597656, -0.08050537, 2.8691406, -2.9414062, -0.40307617, 2.4726562, 0.9399414, 1.046875, 1.5742188, 0.48828125, -0.58984375, -1.3056641, 0.72265625, 1.7373047, 0.8466797, -0.107666016, -0.8071289, -0.3544922, -0.43554688, 0.75146484, 1.2441406, 1.1289062, 3.4667969, 1.7373047, 1.3613281, -0.97314453, 0.043029785, 1.3789062, 1.2998047, 0.017044067, 2.4257812, 0.38354492, -0.40185547, -0.99658203, -1.3144531, 0.42504883, -1.9511719, -0.036254883, 0.21166992, -0.7871094, 1.2099609, 0.16333008, 0.09942627, 0.38330078, 0.41992188, 1.8544922, -0.009803772, 0.9165039, 1.9892578, -0.036376953, 0.44335938, -1.4433594, 2.1796875, 0.16882324, -1.2412109, 0.19445801, 1.0166016, -2.6484375, -2.5585938, 0.48876953, -1.8330078, -0.13146973, 2.9550781, -0.76464844, -1.4345703, 0.80859375, -0.3486328, -0.007987976, 1.6914062, -0.7480469, 0.0440979, -2.3652344, -0.9790039, -0.47216797, 0.5288086, 1.0625, 1.9326172, -2.2421875, 0.8515625, -3.2851562, -1.265625, 0.48266602, -1.2666016, -1.0517578, 1.4833984, -1.0244141, 1.7900391, -0.8017578, 3.9609375, -1.1484375, -1.6103516, 2.1054688, -2.1972656, -0.6870117, -2.4042969, -3.6640625, 2.5, -1.4384766, -0.890625, 2.5761719, 0.8364258, -0.3474121, 0.7089844, 0.8261719, -2.9082031, -2.2324219, 0.008911133, 1.3896484, -2.1855469, -0.84472656, 0.88964844, 1.8388672, -2.2871094, -0.5625, -0.03125, -0.9199219, -0.7163086, 0.4140625, -2.4648438, 0.04272461, -1.1044922, 1.0175781, -1.7773438, -0.9272461, -0.5551758, -1.2578125, 0.15026855, -1.453125, 1.8105469, 1.1601562, -0.3413086, 0.8496094, 4.4414062, 1.2929688, 0.7216797, 0.78027344, 0.43115234, 0.7324219, -0.10723877, -2.6640625, -2.7382812, -0.9477539, 0.46191406, -0.6328125, 1.0185547, -1.9638672, -1.4257812, 2.2636719, 1.0273438, 0.86328125, 0.58447266, 2.015625, -1.0263672, 0.1607666, 0.04916382, -2.4140625, -0.7109375, -0.8105469, 0.9790039, -0.47924805, 1.0097656, -0.69921875, -0.51220703, -0.24157715, -0.8457031, -2.0390625, 1.1855469, 1.3222656, 0.29052734, 0.6816406, -0.98339844, -1.6611328, 0.16772461, -0.23571777, -0.3618164, 0.1505127, 0.36938477, 0.96875, 1.0439453, 0.265625, -1.3037109, -1.3173828, 2.1972656, -1.3740234, 0.29736328, -1.2587891, 0.89746094, -0.7607422, -0.5522461, -0.09576416, -0.28173828, 2.4980469, 0.52441406, 0.47998047, 0.18188477, 0.064697266, -1.9980469, -1.109375, 0.22375488, -0.26342773, 1.171875, 0.7470703, 0.4519043, 0.50439453, 1.3310547, 0.34106445, 2.9960938, 1.5078125, 0.3869629, 0.19616699, 1.1787109, -1.8544922, -0.51904297, 2.3222656, 1.7558594, 0.953125, 4.6367188, 0.28271484, 0.13989258, 1.7695312, 1.6611328, -1.0195312, -1.140625, -0.6064453, -1.3632812, 1.4384766, -0.6489258, -2.5, 0.99658203, 3.0058594, -1.3945312, 1.2558594, 0.87402344, -0.9946289, -0.29418945, -1.4941406, -0.4501953, -2.0410156, -0.15124512, -0.34838867, -1.8818359, 0.51123047, -1.3125, 2.5546875, 1.7861328, -0.15991211, 0.3684082, 2.1386719, -1.5986328, 1.8837891, 0.13085938, -0.8642578, -1.6552734, 2.0117188, 1.1953125, 1.1845703, 0.28076172, -0.25512695, 1.0976562, -0.8857422, -0.23693848, 0.14501953, 2.6328125, -3.3339844, -2.3828125, 1.1689453, 0.25878906, 0.39404297, -1.4414062, -1.2050781, -2.0097656, 3.0488281, 1.5742188, 1.2705078, -0.46362305, -0.062927246, -1.6757812, -4.5859375, -0.33691406, -0.039001465, -0.4169922, -1.1074219, -0.39208984, -0.7348633, -0.31201172, -0.36035156, -0.46484375, -2.2714844, 0.90966797, -1.1728516, 0.20568848, -1.2021484, 0.58984375, 0.6298828, 0.6074219, 0.7314453, 0.10699463, 0.8339844, -1.8457031, -2.2109375, -0.17590332, -1.1855469, 1.1455078, 1.1416016, -1.1914062, 0.26489258, 2.296875, -0.97753906, -2.2792969, 1.9082031, -0.73046875, 0.3010254, 1.203125, -1.6289062, 1.8173828, 1.4394531, -1.2539062, 1.2949219, -0.83935547, -0.12854004, -0.7050781, 0.033477783, 0.94873047, 1.4287109, -0.47265625, -1.0546875, 2.4726562, -0.5053711, 0.95654297, 1.8017578, -0.33007812, -2.78125, -1.1230469, -2.0546875, 0.011512756, -0.34179688, -0.59765625, -1.0390625, 1.7119141, 2.1875, -0.06744385, 1.2265625, 0.006416321, 0.68896484, 0.7133789, 1.6015625, -0.4794922, 3.4765625, 1.1972656, -0.40161133, -3.78125, -2.9003906, -0.05117798, 1.5517578, 0.68896484, -1.0117188, 0.2397461, -1.1181641, 0.22998047, -0.6635742, 1.1582031, 2.4882812, 1.0195312, -0.8725586, 1.7666016, 3.0957031, -0.51708984, 1.3945312, 0.25268555, 0.06555176, -0.76708984, 2.7167969, 3.0078125, 0.5810547, 1.7519531, -1.6259766, 2.0859375, -1.3505859, -1.3759766, 0.05505371, -1.8818359, -1.09375, -1.1337891, -1.4267578, -2.1269531, 0.96435547, 0.99121094, -0.41015625, 1.1728516, 2.1796875, -2.0507812, 0.8510742, 1.9980469, 2.6699219, -0.5932617, 0.9663086, -0.3137207, -0.08178711, 2.59375, -1.1416016, 1.0429688, 2.3515625, 0.44433594, -0.71484375, 1.5224609, 0.8964844, 3.515625, 1.0820312, 1.359375, 2.8789062, 0.36035156, 2.1835938, 0.5864258, 1.6171875, 3.6777344, -0.7753906, 0.25170898, 1.3085938, -0.35131836, -0.8769531, -0.96191406, -0.19641113, -0.16821289, -2.0898438, -0.6635742, 0.2076416, 0.7109375, -2.9902344, 0.7050781, 0.02142334, 1.1210938, -2.015625, 1.3496094, -1.2011719, -1.0625, 0.70947266, -0.8671875, 0.3010254, -0.9375, -1.1777344, -0.6347656, -0.6069336, 2.0078125, -2.0546875, 0.98876953, -1.1064453, -2.3652344, 0.1965332, 0.66503906, 0.30786133, 1.4746094, 0.86865234, 1.3857422, 0.14355469, -0.02947998, 0.9946289, -2.6152344, 0.69921875, 0.41918945, 2.7890625, -0.60253906, -1.3554688, 2.9238281, -1.6816406, -1.6445312, -3.0820312, 4.1328125, -0.11645508, 0.03781128, 0.6352539, -2.4296875, 2.234375, -1.3232422, 1.9443359, -2.8222656, 2.1542969, 1.1816406, -1.7226562, -0.027770996, -0.08496094, -0.77685547, 4.3984375, 0.6855469, -1.9287109, 0.49121094, 0.68652344, 0.085632324, 0.026184082, 0.8769531, 0.9394531, 1.5341797, -1.0097656, 3.0761719, 0.81152344, -1.5742188, -0.6777344, 2.0527344, 2.3320312, 0.62060547, 0.59375, -1.1220703, 0.23181152, 0.8144531, -1.1923828, -0.9394531, -1.2773438, -0.8261719, -1.3710938, -0.14868164, -1.5068359, -1.5488281, 2.3242188, 0.047424316, -0.41503906, 0.7548828, 2.4804688, -0.7988281, 0.30078125, -0.4831543, -0.8623047, -1.4296875, -1.5791016, 0.99560547, -2.6484375, -1.3251953, -0.12524414, 0.49438477, 1.0478516, -0.38671875, -0.15893555, -0.7861328, -0.25024414, 0.25219727, 0.9042969, -1.4941406, -0.47827148, -1.390625, 0.1015625, -1.0068359, 1.3398438, -1.0488281, 1.0351562, -0.625, -1.7714844, -1.2402344, -0.98339844, -0.31518555, 0.8569336, 2.7050781, 0.47265625, 2.0703125, -1.9550781, -4.4023438, -2.2558594, -2.265625, 0.24243164, -0.0362854, -0.6826172, 0.7216797, 1.6914062, 2.703125, -1.6005859, 0.5673828, -0.21398926, 0.08135986, 1.3466797, -0.76904297, 0.6230469, 0.45361328, -0.51660156, -0.7548828, 2.1972656, 1.5605469, -0.3305664, 2.1054688, 1.3720703, -0.3154297, -2.890625, 1.1123047, -1.5, -0.26000977, 0.5605469, 0.0126953125, 2.5996094, 1.9394531, -2.4882812, -2.2929688, -1.5839844]}, "B0836MR1K7": {"id": "B0836MR1K7", "original": "Brand: PATIOPTION\nName: PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills\nDescription: 1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
3. Concealed air vent design upgrade to prevent rain into your grill.\nFeatures: \ud83c\udf40\u3010Please measure your grill before purchase\u3011 30\" L x 24\" W x 44\" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis.\n\ud83c\udf40 \u3010Premium Sewing Technology\u3011Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity.\n\ud83c\udf40 \u3010Premium UV Resistant Fabric\u3011 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather.\n\ud83c\udf40 \u3010Secure Fit \u3011Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit.\n\ud83c\udf40 \u30102 Handles\u3011 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.\n", "embedding": [0.3972168, 1.7353516, 2.3535156, -2.0761719, -1.0683594, 0.50683594, 1.3232422, -1.8662109, 2.2519531, 2.4238281, -0.77246094, -1.2041016, 1.9433594, -5.078125, 1.5039062, 0.9980469, 0.9013672, 3.1035156, 3.6953125, -0.5551758, 1.5205078, 0.62402344, 0.105773926, 1.2519531, 0.8886719, -0.3930664, 4.1523438, -2.6484375, -1.0664062, -1.2978516, 1.6708984, 0.2298584, 1.1914062, 1.7480469, -2.2792969, -2.0976562, -2.1894531, 1.5996094, 0.34545898, -0.8881836, -2.5527344, -2.6289062, 3.3164062, 0.55029297, -2.8203125, 0.6567383, -2.2929688, -0.76904297, 0.02758789, -2.2226562, 0.9345703, 2.5410156, 2.0410156, 0.99658203, -2.6054688, 1.5507812, -0.07067871, -1.6191406, -0.99560547, -0.20727539, -0.3293457, 0.5019531, -0.70410156, 2.9257812, -1.1318359, -1.7167969, -0.5004883, -0.5786133, 1.1416016, 0.79003906, 1.7148438, 0.6933594, -1.09375, 0.53222656, 2.2734375, -0.81591797, -1.6269531, 1.0283203, 2.9785156, -1.0507812, -0.390625, 4.9570312, 0.007575989, -2.7304688, -0.47924805, -0.02532959, -2.0703125, -0.9790039, 2.0175781, -0.70410156, -0.9140625, 2.5136719, -1.5175781, -2.84375, 0.2944336, -2.6367188, 3.2695312, -0.27734375, 1.3652344, 0.58691406, -1.3193359, -0.35009766, -1.8125, 0.20874023, -3.2402344, -3.0019531, 1.9287109, -1.4628906, 0.17321777, 0.6254883, -0.8535156, 0.5854492, 0.043914795, 0.8203125, 2.3320312, 0.42749023, -1.1113281, 3.09375, 0.20397949, 2.0488281, 3.7792969, 0.30517578, -0.5151367, -2.6425781, 0.9667969, 0.4975586, -0.8876953, 0.7504883, 3.3710938, -0.6665039, 1.1445312, -1.4707031, 0.9716797, 1.9130859, -0.033996582, 0.10021973, -1.1582031, 0.1887207, -2.6835938, 2.3144531, -1.7988281, -1.7099609, -0.026306152, -1.7519531, -2.1035156, 0.6308594, -0.9604492, 4.578125, -1.1025391, -3.4863281, 1.3486328, -1.8125, 0.026947021, -0.61376953, 0.6323242, -0.078125, 1.203125, -2.6777344, 3.8964844, 2.2226562, 3.4414062, -1.7763672, 1.8300781, 0.4296875, 3.5175781, -2.2832031, 0.72753906, -0.34521484, 0.25854492, 1.9951172, -0.15026855, -1.1972656, 0.69873047, 0.30419922, 1.5947266, -1.3730469, 0.3840332, 2.0546875, 0.5527344, 0.7163086, 0.5673828, -0.9980469, 0.78808594, 1.1171875, -1.3417969, -1.0683594, 0.1607666, 0.88378906, 0.25732422, -1.0292969, -0.26464844, -0.3310547, -0.62158203, -0.4338379, -2.6914062, -1.5830078, -0.5488281, -1.203125, -0.41137695, 0.13793945, -1.7207031, -2.1152344, -1.6699219, 0.004699707, -3.0625, -0.63964844, -2.1289062, 1.0195312, -0.16259766, 0.21594238, 0.421875, -1.7929688, 3.0800781, 1.8242188, -1.0527344, 0.7055664, 1.6933594, 0.2734375, 0.8027344, 1.1533203, -1.7490234, 0.42407227, 0.9951172, 4.21875, -1.0556641, 1.3320312, 0.85058594, 0.39038086, -0.8178711, -1.3818359, 0.7104492, 0.7480469, -0.7241211, -0.1015625, -1.3447266, 0.43725586, -0.29638672, -0.9013672, -0.80810547, 1.2246094, -1.7910156, -2.5742188, -4.5976562, -1.2226562, 1.2226562, 0.8408203, -1.8193359, 2.2011719, 0.119262695, -1.4677734, -0.69433594, 0.7373047, -0.44555664, 0.14404297, 0.29785156, 0.3935547, 0.7998047, -0.6401367, -1.2070312, -1.0253906, -1.1347656, -0.4543457, -0.8574219, 1.0751953, -0.7895508, -0.5908203, 0.05050659, 1.359375, -3.0039062, -1.5996094, 1.3652344, 0.15124512, -0.6225586, -1.8076172, 1.2490234, -0.57128906, -0.23608398, -0.8300781, 1.2871094, -1.2089844, 0.24926758, 1.4707031, 2.7636719, -1.7871094, 0.4362793, 0.23327637, 0.46484375, -1.5419922, -1.2988281, 0.22973633, 3.4160156, 0.14538574, -1.2724609, 3.3125, -0.42529297, 0.6142578, 1.0771484, -0.6455078, -0.36547852, 1.7353516, 0.42919922, 1.40625, -1.2636719, 0.828125, -0.6616211, -1.7353516, 1.0585938, -2.8515625, -1.7871094, 1.5585938, 0.7841797, 0.8105469, -0.20568848, 0.035186768, -2.109375, -2.3945312, 1.9414062, -3.0410156, -0.3178711, 0.20129395, -0.07324219, 0.21984863, -2.6582031, -2.9550781, -0.055023193, 0.3083496, -2.1191406, -0.12261963, 0.9682617, -0.8720703, -0.48657227, -2.2851562, 1.7402344, -1.2070312, -2.1582031, -3.5214844, -2.40625, -0.8232422, -0.22924805, -1.5957031, 0.5805664, -1.421875, -3.0820312, 1.1376953, 1.9267578, -3.4550781, -0.11364746, 0.90527344, -1.9912109, 1.6201172, -0.734375, 0.10229492, -0.16796875, -4.3789062, 0.7861328, -1.8642578, -0.23742676, -0.64501953, -1.9121094, 0.28198242, -0.41967773, 0.45947266, 0.40966797, 1.3007812, 1.6982422, -0.9628906, 0.08337402, -3.2089844, -0.46923828, -1.5214844, -0.027328491, -1.3740234, 1.0898438, -4.1953125, -2.2207031, 0.671875, -0.8105469, 4.03125, 0.4645996, 1.0478516, -0.9082031, -1.5146484, 1.6152344, -0.3791504, -2.0917969, -0.27954102, 1.1064453, -1.9277344, 0.0390625, -3.7695312, -3.3925781, -1.7695312, -0.23022461, 0.26342773, -1.8320312, -0.17602539, 2.4902344, -2.4453125, -1.8681641, -1.8291016, 1.6650391, -1.3486328, -0.24780273, -1.609375, -4.03125, -2.6660156, -1.1455078, -3.2734375, 2.1054688, -1.7919922, 0.23425293, 3.2988281, -0.7919922, 4.3671875, -0.25683594, -4.296875, 1.3125, 2.0800781, 0.8769531, 3.0761719, -0.48217773, -1.1669922, -1.0742188, -0.18493652, 2.9511719, 0.6821289, 0.57470703, 2.5136719, 0.87060547, 1.1445312, -1.4150391, 0.99560547, -1.1708984, 1.7802734, 2.8027344, -0.8613281, 0.36083984, 0.4897461, 0.6333008, -1.4628906, 0.5097656, 2.6113281, -0.08496094, 0.20532227, 1.2744141, -0.06262207, 0.6875, -0.9008789, 2.4804688, -1.4121094, 3.0820312, 0.026443481, -0.3486328, 0.71533203, -1.1464844, 2.3242188, 2.5722656, 0.6069336, 0.30322266, 1.6806641, 0.2397461, -0.18530273, 0.6064453, 1.9199219, 1.4638672, -1.0400391, 2.1992188, -0.37597656, 0.06390381, 1.9980469, -2.6113281, 1.5605469, -1.1035156, -0.4243164, 2.8261719, -1.5644531, -0.43847656, -1.4521484, -0.17382812, -0.25341797, -2.6074219, -1.2324219, -2.5703125, -0.49169922, 0.49194336, -3.4609375, -1.3066406, -0.8154297, 2.5605469, 0.5864258, -2.3007812, 0.27783203, 2.2304688, -1.3613281, -2.1601562, 0.5029297, 1.7509766, -0.34472656, 2.5, 3.3320312, -1.8193359, 2.5429688, -3.0761719, 2.1074219, 0.9628906, -1.0644531, -0.24926758, 0.48339844, -0.5732422, 0.12426758, 2.3105469, 1.5195312, 1.9541016, -2.2617188, -0.65283203, -2.8828125, -0.54785156, 2.3769531, -1.3798828, -0.4958496, 1.4023438, 1.1005859, -0.07299805, -0.15942383, 1.796875, 0.7294922, -1.6152344, 1.84375, -1.3037109, -0.26049805, -0.5644531, -5.7070312, -0.26611328, -0.34399414, -1.8232422, 2.6230469, 0.58154297, 0.7734375, 1.4785156, -0.65185547, -1.59375, 0.21960449, -3.2167969, -1.6494141, -0.72558594, -0.47387695, 0.8989258, 0.43920898, -1.1328125, -2.0449219, -2.6074219, -2.3261719, 0.5263672, 0.37646484, 0.29077148, 0.83935547, -3.2265625, 0.58251953, -2.8984375, 0.29589844, -0.99560547, 0.49243164, -0.6328125, -0.63623047, 1.0478516, -0.33862305, 1.4707031, 0.8071289, 1.3134766, -0.69433594, -0.8647461, -0.35009766, 1.3369141, 3.8417969, -0.91503906, -3.1289062, -0.33935547, 0.9199219, 1.8632812, 0.15148926, -1.9482422, -0.63623047, -0.92285156, -0.13757324, -0.3569336, 2.4394531, 0.69970703, -1.1074219, -2.4179688, 1.8486328, -1.5917969, -1.6757812, -0.7558594, -0.65722656, 1.1972656, 1.7246094, -2.2929688, -2.9023438, 2.6113281, 0.21203613, -0.2232666, -2.5351562, 3.2109375, 2.2304688, 1.4550781, 2.9707031, -3.09375, 0.9008789, 0.117126465, -0.2166748, -0.47631836, 0.19030762, -0.65527344, 1.6542969, 0.99902344, 0.96777344, -2.4921875, -1.7714844, -0.9477539, -1.6669922, -0.6816406, -2.8242188, 2.9824219, 1.0537109, 0.99902344, 1.1025391, -2.3417969, 2.1113281, 0.009017944, 0.3959961, 2.1464844, -2.3007812, -0.1772461, 1.9599609, 1.6074219, 0.26171875, 0.9785156, 0.8828125, 0.2680664, -0.6152344, -1.3027344, -0.4560547, 1.5712891, -1.9521484, -0.3774414, 1.1240234, 1.5947266, -1.7490234, -1.6259766, 2.8671875, 3.6738281, -0.4165039, 1.9384766, 1.3613281, -1.34375, 2.1074219, 2.4726562, -0.76904297, 1.0664062, -0.41455078, -0.61376953, 0.8046875, -0.57128906, -2.625, -0.19128418, 1.0087891, -0.7553711, 1.8759766, -1.7539062, -1.3847656, 1.8945312, -1.6806641, -0.6855469, -0.029937744, -1.1484375, -0.5576172, 0.31860352, 1.8730469, -0.3190918, 0.9716797, 3.7050781, -1.1113281, -2.9042969, 1.5136719, -0.6533203, -0.30493164, -1.3369141, -1.3115234, -3.2226562, -0.8574219, 2.78125, 1.2412109, 1.5039062, 0.15234375, 1.8486328, -2.4570312, 0.49780273, 0.3540039, 1.9619141, -2.7070312, -0.8652344, 2.5410156, -2.0429688, -1.5166016, -2.3320312, 0.5410156, 0.9404297, 2.1113281, 2.0390625, 0.6796875, 0.1652832, -0.94628906, -2.9765625, -2.9199219, -1.0507812, 0.6220703, -0.9790039, 1.6240234, 0.12200928, 1.65625, 0.80566406, 0.09307861, -0.4416504, -0.6479492, 0.034942627, -1.7861328, -2.1191406, -0.89404297, -1.7392578, -1.2636719, 1.4960938, 0.014122009, 1.6269531, 0.3400879, -3.8320312, 0.14111328, 0.13146973, -3.7011719, -0.48999023, 1.6103516, 0.105773926, 1.1865234, 0.671875, -0.7993164, 0.16772461, 3.3847656, 0.5366211, -0.6166992, 2.3144531, -0.6064453, 0.7915039, -1.2617188, -1.1875, 2.0800781, -1.0644531, 0.28637695, 0.7026367, -1.7050781, 1.9277344, 2.0644531, 0.14624023, -0.5253906, 0.49267578, 1.4511719, 2.5917969, 0.9042969, -0.9638672, 0.21508789, -1.71875, -2.4296875, 0.62841797, -1.4462891, -2.2929688, -2.2832031, 0.46728516, 1.8613281, 1.6474609, 1.3193359, 1.6708984, 2.046875, -2.3417969, 0.009857178, -0.029876709, 4.1953125, 0.80371094, -2.2070312, -0.20336914, -1.1806641, 0.9926758, 1.8427734, -1.0078125, -0.72558594, -0.034606934, -1.2099609, -0.40234375, 1.1347656, 1.9462891, -0.29736328, 0.28344727, 0.09289551, 1.3886719, 2.8046875, -0.38793945, 1.0136719, -0.13598633, 1.8964844, -1.4931641, 2.5605469, 1.2050781, -3.2910156, -0.40771484, -0.81152344, 0.828125, -0.085998535, -1.4628906, -0.26708984, -1.5888672, -1.2246094, -1.9042969, 0.02545166, -4.0429688, 0.6660156, -0.022888184, -0.11102295, -0.5029297, 2.5839844, 0.058380127, 2.3710938, 1.9511719, 0.2705078, -0.34765625, -0.14868164, -1.4853516, -0.08679199, 0.8364258, -2.1582031, -0.56347656, -1.4980469, 0.26611328, 0.03225708, 0.17407227, 0.08453369, 1.0839844, 0.58935547, 3.0234375, 3.2695312, 2.1601562, 2.2480469, 0.23498535, 2.3164062, 0.34106445, -1.3769531, -0.16137695, 2.4394531, 1.7167969, 3.5722656, -1.1474609, -0.26586914, 1.1455078, -1.2099609, 0.6435547, -0.16271973, 1.9726562, -2.8398438, -0.0027561188, 0.94970703, 0.34423828, -0.90185547, 2.3613281, -1.3476562, -0.7841797, -0.022155762, -0.15808105, 4.0976562, -1.6289062, 0.5566406, 1.0410156, 1.8271484, 1.0410156, -4.4960938, 2.0039062, 1.3652344, -2.3671875, -0.6064453, 1.0693359, 1.5332031, 2.5429688, -0.56689453, 1.7177734, 1.5087891, 2.5273438, 1.2011719, -0.091918945, 0.8911133, -0.5385742, 2.3164062, 0.89160156, -1.4833984, -1.9365234, 0.1743164, -1.8115234, -1.8330078, 0.5263672, 1.0429688, 1.5380859, 1.7548828, -4.2460938, 2.1230469, 0.24658203, 2.3027344, -0.71972656, -0.1550293, -1.4433594, -3.0429688, -0.73339844, 0.8642578, -1.1191406, 2.203125, -0.2442627, 0.4897461, 2.9101562, 2.2050781, 2.1464844, 0.8208008, 1.265625, 0.2298584, 1.4902344, 0.6230469, 1.5253906, 1.4423828, -0.69873047, 0.44506836, 1.5732422, -0.61621094, 1.5253906, 2.1621094, -1.3144531, 1.4648438, 1.6054688, -1.5205078, 1.2080078, -0.69189453, -0.5263672, -0.30273438, 1.1220703, -0.3737793, -1.2021484, 1.1572266, 1.8574219, 0.48779297, 1.8056641, 1.1328125, -0.7788086, 3.1855469, 1.2724609, -0.14477539, -0.45996094, 0.7763672, 0.99658203, -0.87939453, 0.31689453, -1.1630859, -0.10864258, 0.07055664, -0.70654297, -0.86816406, 1.6240234, -1.5634766, 0.3564453, 1.9638672, -0.8808594, -1.2382812, -0.6269531, 0.13574219, 0.21508789, 1.5068359, 1.2490234, -2.140625, -1.953125, -1.7480469, -0.24633789, -1.3662109, -3.3710938, 1.7392578, 3.9492188, 1.4306641, -1.4599609, -1.1347656, -3.5546875, -0.6738281, -0.7675781, 1.6982422, 0.39013672, -0.36035156, -0.016082764, -0.15100098, 2.6660156, 0.859375, -1.8144531, 0.2685547, -0.11401367, 2.1230469, -0.8041992, -0.2614746, -0.89160156, 0.53027344, 1.6074219, 1.640625, 3.4394531, -0.58447266, 0.9848633, 3.2695312, -0.3178711, -2.6582031, 0.65966797, 1.1132812, 1.0800781, -0.58935547, 2.3632812, 0.63378906, -1.0849609, -0.5292969, -0.5854492, -2.1289062]}, "B0195MZHBK": {"id": "B0195MZHBK", "original": "Brand: Blackstone\nName: Blackstone 1650 Tabletop Grill without Hood Propane Fuelled \u2013 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black\nDescription: \nFeatures: Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use\nEasy to store - simply store the griddle top upside down on top of the griddle body After use to save space\nNo hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors\nSpacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability\nFast and even heating - this grill has a stainless Steel \"H\" Burner that heats up fast! The \"H\" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output\n", "embedding": [-1.3652344, 1.5927734, 0.67529297, 0.2619629, 0.21289062, 0.05795288, 1.1279297, -0.7207031, -2.8828125, 1.734375, -0.14929199, -0.5830078, 0.30029297, -1.8369141, -0.7246094, 0.35864258, 0.1015625, 1.1318359, 0.5776367, 0.0982666, 2.8808594, 0.8911133, 1.3466797, -1.625, 0.8588867, -0.33642578, 2.8085938, -4.3945312, 0.43554688, -1.1601562, 1.6806641, 0.7758789, 1.0195312, 2.4179688, -3.2128906, -1.7441406, -0.69140625, 1.9511719, -2.3730469, 0.6435547, 0.083984375, 0.7402344, 3.6972656, 0.58496094, -3.0195312, 0.5629883, 0.29223633, -0.375, -1.7939453, -1.2949219, 0.6801758, 1.8681641, 0.40722656, 0.46020508, -1.6884766, 0.7890625, 0.8413086, -1.5644531, 1.5117188, -0.94628906, 2.2207031, 0.60595703, -3.1523438, 0.5800781, -1.1464844, -0.8886719, 1.4863281, 0.15625, -0.28149414, -1.2158203, 0.53564453, -0.4819336, -0.58496094, -0.26000977, -0.15527344, -2.2871094, -2.4824219, 1.625, 1.0722656, 0.43554688, -2.0078125, 2.9394531, 0.4230957, -2.9296875, 0.7763672, 0.75878906, -0.3930664, -0.7470703, 2.0410156, -0.10461426, -1.1914062, 3.1328125, -3.4667969, -2.9296875, 1.5351562, -0.98828125, 0.6791992, 1.4335938, -1.8886719, 2.4550781, -0.6689453, -1.2119141, -1.4951172, 0.9970703, -3.7167969, -1.0947266, 3.6425781, 0.84033203, -3.1777344, 0.42822266, -2.5097656, -0.4892578, 2.4667969, 0.22729492, 2.3261719, 0.7319336, 0.18334961, 1.3603516, 1.9414062, 1.2207031, 3.5859375, -0.70214844, 0.3137207, -0.8691406, -0.5058594, 0.48779297, -0.59765625, 0.95214844, 3.3710938, -1.0664062, -0.26391602, -2.2246094, 2.6054688, -1.0664062, -3.6425781, -1.1542969, 0.17468262, -1.0957031, -4.171875, 1.0166016, -2.0332031, 1.5390625, 1.7695312, -0.9008789, -4.421875, -1.2080078, -0.066101074, 1.6210938, 0.010887146, -1.1630859, -0.89990234, -1.8916016, 0.90527344, -1.6845703, 2.9902344, -2.125, -0.46728516, -0.8178711, 4.03125, -0.061706543, 1.3320312, -1.9384766, -1.8359375, 0.9169922, 3.0761719, -1.0478516, 0.11968994, 2.5273438, -0.5756836, 1.9287109, 0.02281189, -2.3945312, -0.99072266, 0.13830566, 1.5957031, -0.6357422, -1.4501953, 2.5820312, 1.1425781, -1.2568359, -0.32910156, -3.0546875, 1.4697266, -0.33911133, -0.6298828, -2.8828125, 0.6503906, 0.38232422, 0.4958496, -1.6494141, -0.4765625, -0.096191406, -0.33544922, 0.7832031, 0.42919922, -2.0332031, -0.4267578, -0.35302734, 1.2958984, 0.3623047, 0.3088379, -0.39233398, 0.24658203, 1.2119141, -2.8066406, -2.5839844, 0.66796875, -1.8574219, 1.8740234, 0.23791504, 0.1484375, -1.4277344, 0.8149414, 0.5786133, -0.17053223, -2.1699219, 1.3183594, 0.8676758, 1.5751953, 1.3798828, 1.1503906, -3.2851562, -0.46923828, 2.0996094, 0.6972656, 2.7695312, 0.82666016, -0.06439209, -2.734375, 0.15124512, 2.5136719, 1.4541016, -0.63623047, 1.3349609, -0.57128906, 4.0625, 0.6826172, -0.3413086, -0.9370117, 0.30419922, 0.29760742, -1.1464844, -0.4465332, -0.90478516, -0.93652344, 1.09375, -1.4521484, 1.3212891, 1.1865234, -0.22167969, -2.5742188, -0.022384644, 1.0820312, 1.5009766, -0.53271484, 0.42529297, -0.24572754, -0.38012695, -1.9492188, -2.6972656, 0.40454102, 2.1386719, -0.49780273, 0.81396484, 0.39233398, -1.0107422, 1.7724609, 2.1386719, -2.1289062, 0.703125, 1.8378906, 1.5771484, 2.0175781, -1.2011719, -0.28588867, 0.009857178, -1.7216797, 2.9003906, 0.40014648, 1.7792969, -0.80322266, -1.7080078, 1.6191406, -3.5390625, -0.27612305, 0.055145264, 0.72802734, 1.1630859, -0.15905762, 0.86376953, 4.4257812, -0.6113281, -2.2109375, 3.6230469, -0.68066406, 0.5625, 0.8930664, -1.9980469, 0.5498047, 1.4394531, 1.3115234, 1.2548828, 0.023834229, 1.4521484, -1.7841797, -0.6040039, -0.06048584, -3.7675781, -0.9584961, 2.5, -0.76708984, -1.0761719, 0.41308594, 1.0791016, -0.87158203, 0.70947266, -0.11834717, -2.3671875, 0.7783203, 2.4414062, 2.0859375, 1.8789062, -1.9277344, -2.7714844, -0.79589844, 0.15405273, 0.07745361, 2.3613281, 0.7548828, -1.6396484, -0.25463867, 0.78271484, -0.18078613, -1.5595703, -3.4550781, -1.7207031, -1.7451172, -2.2109375, -0.20227051, -1.6435547, -2.3378906, 1.2744141, -1.2294922, 0.87402344, -0.83447266, -2.4042969, 0.13647461, -0.22351074, -1.2685547, -1.6005859, 0.7416992, 0.16442871, -0.77197266, -2.5722656, -1.0126953, -0.22595215, 0.64697266, -1.7617188, -0.6567383, 1.0380859, -1.3125, 1.4638672, -0.78125, 1.0107422, 0.6425781, -0.6479492, 0.2602539, -2.7636719, 1.5546875, -1.8984375, -0.8544922, -1.8779297, -1.0517578, -2.1054688, -0.68896484, -0.3486328, -0.18286133, 3.4453125, -1.4931641, 1.6601562, -0.47729492, 0.48901367, 0.28930664, -0.4387207, -2.5722656, -0.3786621, 0.9848633, -2.09375, -3.7988281, -3.8085938, -0.3671875, -0.23815918, -0.16223145, -1.1308594, 1.4755859, -0.9199219, 0.7167969, -1.6025391, 0.64697266, 0.11645508, 0.26611328, 1.2480469, -3.0449219, -2.9882812, -0.25317383, -0.47094727, -2.2382812, 1.7734375, 1.0917969, -1.1455078, 0.8779297, 2.5, -1.0800781, -0.074157715, 0.22912598, -4.1835938, 2.3125, 0.16906738, -3.984375, 3.2695312, -1.2919922, -0.40698242, -1.8232422, -0.109191895, 2.8085938, 1.4521484, 0.92529297, -0.25439453, -0.99365234, 1.7275391, 0.7167969, -1.1865234, -1.0195312, 0.37841797, 2.6035156, -2.0664062, -1.3349609, 1.0869141, 2.0546875, -1.8164062, -1.5791016, 1.9003906, 1.2734375, 1.2900391, 1.8173828, 1.9941406, -0.6894531, -0.8178711, -0.38671875, 0.75097656, 0.65966797, -0.31884766, -0.06036377, 0.69628906, -1.0361328, 1.8779297, -0.6113281, 0.86865234, 1.7607422, 2.203125, 2.3632812, -2.1757812, 0.27563477, -0.32763672, 1.1757812, 2.1425781, 3.2617188, -0.63964844, -0.16760254, 0.33618164, -0.1315918, 2.9511719, -0.8388672, 0.39233398, 2.7929688, -0.94921875, 0.2265625, 0.12756348, 0.4345703, -0.38183594, -1.3925781, 0.6958008, 0.171875, -1.9521484, 1.5244141, -1.4433594, -0.8823242, -1.7587891, 1.6113281, -2.0253906, -2.1347656, 1.2539062, 2.2089844, -1.2910156, -1.3447266, -1.2128906, -1.0146484, -0.65478516, 3.0449219, -0.75, -1.9804688, 0.7548828, -1.2685547, 0.3125, 0.30371094, -0.06542969, 0.3215332, -0.5620117, -0.10241699, -1.9199219, 0.076538086, -1.0722656, -0.7080078, -1.7363281, -1.1142578, -2.40625, -2.0351562, -0.2244873, -1.5380859, -1.2011719, 1.9394531, 0.9633789, 0.15466309, -1.6132812, 2.2910156, -1.0068359, -1.2685547, 1.1982422, -4.0976562, -1.1992188, -2.4414062, -3.8613281, 0.8833008, -0.9555664, 0.3100586, 1.125, 1.0263672, 0.4169922, 1.7802734, -0.15942383, -3.8105469, 1.3896484, -0.77978516, -0.04940796, -2.2050781, -0.9711914, 0.58203125, 0.0960083, -1.1210938, -0.075927734, 0.76416016, 0.73095703, 0.9682617, 0.8676758, -2, 0.60009766, -0.8305664, -0.47680664, -1.1162109, 0.116760254, 0.35961914, -1.2558594, -0.41748047, -1.0634766, 0.7451172, -0.30078125, 0.2861328, 1.2001953, 1.0302734, -0.9345703, -1.6757812, -0.40795898, 1.1230469, 2.1640625, -0.062164307, -1.4248047, 0.12158203, 1.0068359, 1.0878906, -1.0996094, -0.58740234, 0.7597656, -2.4882812, -1.3769531, 0.96240234, 1.4189453, 2.5195312, 0.8432617, -2.3222656, 0.18139648, 0.31518555, -2.5039062, -2.7636719, 0.9897461, -0.30541992, -0.8803711, 0.051116943, -2.6445312, 1.2929688, -1.2265625, -0.5473633, -0.9638672, 4, 2.1230469, 2.8085938, 3.4570312, -0.25952148, -2.0390625, 1.796875, -0.9824219, -2.1738281, 2.4667969, 1.3388672, -0.5883789, 3.5683594, -0.22741699, -1.5429688, 0.09790039, 3.2695312, -1.5087891, -0.25097656, -0.8623047, 0.2397461, -1.9433594, 0.1538086, -0.22766113, -1.5136719, 0.8564453, -0.3894043, 0.51171875, 0.81152344, 1.2568359, -1.7373047, 0.49291992, 0.057861328, 0.29296875, 0.8769531, 0.6713867, 2.0097656, -0.8598633, 1.2236328, 0.6645508, 2.7714844, -0.76660156, 0.33764648, -0.11798096, 0.25732422, -1.3496094, -0.6791992, 1.2578125, 4.015625, 0.6977539, 2.0449219, 0.171875, -2.2753906, 2.2460938, 0.6748047, -3.0683594, -1.8544922, 1.0478516, 0.4658203, 1.2597656, -0.25097656, -3.4511719, 0.8198242, 3.21875, -2.0019531, 0.60546875, 0.19396973, -1.0742188, 0.9501953, -2.5917969, -0.72216797, -0.5917969, 0.66503906, -0.54296875, -0.58740234, 0.9584961, 0.24133301, 1.7685547, 3.5078125, -0.33325195, -0.15820312, 1.8554688, 0.27197266, 0.9580078, 0.3227539, -0.27514648, -2.7832031, 0.51660156, 1.7587891, 0.40625, 1.8554688, -0.3791504, -0.50390625, -1.3828125, -1.0673828, -1.1728516, 2.3769531, -0.6220703, -2.0273438, 0.80029297, -1.2705078, -0.7675781, -1.6972656, 0.43188477, 0.09564209, 1.4716797, 1.3242188, -0.97216797, 0.94189453, -0.13220215, -1.6542969, -4.7773438, -0.40527344, 0.12426758, -0.23986816, -0.35498047, -0.28857422, -0.06365967, -0.6904297, 1.421875, -0.2454834, -2.3007812, -0.2298584, 0.33618164, -1.2548828, -1.609375, -0.53125, -0.093444824, 1.3535156, 2.4394531, 0.005996704, 1.2890625, -2.0175781, -0.07946777, 1.1152344, -1.0253906, 0.1026001, 0.9008789, 0.29638672, -0.2680664, 2.1777344, 0.54052734, -2.1972656, 3.5058594, -3.6523438, -0.70703125, 0.27856445, -2.0273438, -1.1044922, -0.8457031, -0.953125, 1.6962891, -1.1806641, 0.34765625, 1.0234375, 0.06945801, -0.91064453, 3.0566406, -1.6337891, -0.7089844, 1.0849609, 0.6904297, 1.3320312, 1.0664062, -1.3837891, 0.24841309, -2.2910156, -1.5507812, 0.3034668, -2.5820312, 0.75, -2.4414062, 0.029693604, 2.4003906, -0.005973816, -1.1640625, 2.5625, -0.58984375, -1.4453125, 0.24694824, -1.0957031, 2.8222656, 1.0712891, -0.46435547, -1.3652344, -2.1328125, 1.1806641, -0.2434082, 0.5732422, -1.8310547, -0.42626953, -0.8823242, 1.2744141, -1.1914062, 2.5546875, 2.9375, -0.16809082, -1.6083984, 0.5385742, 1.6679688, -0.23388672, 3.1269531, 1.9599609, 1.4472656, -0.81152344, 4.2304688, 0.055603027, -3.7089844, 1.4160156, -1.6738281, 2.2949219, -0.20593262, -0.92822266, 0.13757324, -0.70166016, -0.70458984, -1.734375, -2.1621094, -2.9492188, 2.2851562, 1.0419922, -1.3066406, -0.1340332, 1.6650391, -0.033843994, 2.2011719, 1.6845703, 0.9116211, -0.73046875, 0.9482422, -1.0371094, 0.3010254, 0.3720703, -1.5898438, 1.2392578, 2.1171875, -0.74121094, -2.609375, 1.7080078, 0.8232422, 2.84375, -0.6459961, 0.5571289, 3.0058594, 1.2207031, 3.859375, -0.12475586, 0.7866211, 1.5917969, 1.3525391, -0.83154297, 2, 2.828125, -0.80029297, -1.8681641, 2.5371094, -0.4790039, -2.3398438, -1.5175781, 0.5830078, 1.9912109, -4.8164062, 3.140625, -0.6542969, 0.97265625, -1.4140625, -1.8046875, -0.7314453, -0.80029297, 1.8671875, 0.47314453, 2.4980469, -0.50341797, 1.0888672, -0.63427734, 0.64941406, 1.4101562, -3.6113281, 0.30444336, 0.040161133, -1.6152344, -0.09979248, 0.20214844, 1.4091797, 1.1298828, 0.90283203, 2.0214844, 2.75, -0.67333984, 2.3359375, 0.12915039, 0.23461914, 0.7988281, 3.1933594, 1.1972656, -0.95214844, 1.8271484, -0.041412354, -2.7109375, -2.9140625, 3.3007812, 1.7236328, 1.4716797, 0.7392578, -1.328125, 2.2382812, 1.3935547, 2.125, -2.3300781, 1.7177734, -1.2919922, -2.6132812, -2.1289062, 0.90527344, 0.47143555, 1.7265625, -0.066833496, -0.85058594, 2.5410156, 1.40625, 1.9833984, 0.4416504, -0.13049316, 0.42749023, -0.70214844, -0.064453125, 1.0917969, 0.18005371, -0.9760742, -1.0947266, 1.9492188, 2.0585938, 1.2880859, 0.4650879, -0.8652344, -0.32080078, 0.5415039, -1.0830078, 0.9838867, 0.3564453, -1.6289062, 0.7998047, 0.14953613, -0.19311523, -2.2109375, 3.0507812, 1.2294922, -1.3798828, -0.33032227, 1.8867188, 0.12976074, 1.9677734, 1.2148438, -0.18334961, 0.34692383, -0.3269043, 0.04373169, -0.21447754, -1.4101562, -0.16662598, 0.33007812, 0.09326172, -1.0273438, 0.7939453, -2.078125, 0.74853516, -0.6850586, 2.0253906, -2.3730469, -0.9663086, 0.8408203, -0.20410156, 0.79589844, 2.8515625, 0.16796875, -0.09667969, -0.9370117, -1.7402344, -0.9194336, -2.2148438, -0.96191406, 0.070373535, 4.6601562, 2.1074219, 0.74121094, -1.6337891, -2.7617188, 0.006958008, -0.028320312, 3.1015625, -0.3083496, -1.5351562, -0.00687027, 1.9941406, 2.875, -2.3671875, -0.14294434, -0.82714844, 0.05102539, 0.93847656, 0.19750977, 1.3300781, 0.30493164, -0.08166504, 0.68847656, 3.7558594, 2.5097656, -0.10913086, 2.296875, 1.3642578, -1.0537109, -2.8554688, 1.3974609, -0.8491211, 0.009147644, 0.5756836, -0.21569824, 1.2304688, 1.8818359, 0.5854492, -1.6132812, -0.79052734]}, "B001NDK8C8": {"id": "B001NDK8C8", "original": "Brand: \nName: Propane Weed Burner Torch\nDescription: Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.\nFeatures: Measures roughly 22 1/2 long\n3 nozzles are included, 1-1/8\u201d, 1-3/8\u201d and 2\u201d\nHooks up to standard size propane tank with 60\u201d long attached hose\nBurns to 3000\u00b0F\nFlow control valve\n", "embedding": [-0.36108398, 2.4179688, 1.2636719, 0.25024414, -1.9755859, 1.390625, 2.2089844, 0.09838867, -0.31835938, 1.3916016, -1.4882812, -0.7661133, 0.79052734, -4.5039062, 0.83154297, -0.1743164, -0.066589355, -0.02494812, 2.2539062, 2.1601562, 1.3193359, 0.12524414, 1.8613281, -1.7763672, 1.6259766, -1.4404297, 3.0097656, -2.6660156, -0.07220459, -0.47192383, 1.1660156, -0.93115234, 0.07293701, 0.20202637, -3.5683594, 0.1394043, -1.6669922, 0.8486328, -3.3515625, -0.98095703, -1.6992188, 0.3930664, 1.4257812, 0.036590576, -0.6411133, 1.7177734, -0.50683594, 1.2822266, -0.42041016, -0.38110352, 1.8681641, -0.09326172, 1.4628906, 0.35253906, -0.2166748, -0.1496582, -1.4873047, -3.3339844, 1.1699219, 1.4716797, 2.5175781, 0.55615234, -1.9912109, 1.0751953, 0.76708984, 1.640625, 0.4609375, -0.78222656, 0.17211914, 1.0478516, 2.9296875, 1.2626953, -0.066223145, -0.7294922, -0.32958984, -0.030838013, -3.7695312, 2.578125, 2.0136719, 0.56347656, 0.17456055, 3.3730469, 0.14807129, 0.5097656, 0.2939453, -1.5957031, -2.3261719, -1.4716797, 1.4345703, 0.7714844, -1.6748047, 2.4355469, -2.7539062, -3.8261719, 2.8730469, 0.08831787, 0.23242188, -1.3037109, 0.98291016, 0.47583008, 1.1845703, -0.5209961, -1.3017578, 1.8994141, -2.7226562, 1.5810547, 0.48046875, -0.5024414, -1.2470703, 0.101257324, -1.3886719, -1.0195312, 1.8095703, 1.3720703, -2.7207031, -1.4482422, -0.11260986, 0.17663574, 4.046875, 0.63623047, 3.0898438, 0.101501465, 0.8461914, -0.25390625, 1.3955078, -0.31103516, -0.3552246, 0.6098633, 2.2480469, -2.0175781, 0.48168945, 0.8666992, 1.1005859, -0.6347656, -2.1640625, -1.1552734, -0.5175781, -0.7314453, -2.8964844, -2.296875, -2.6132812, 0.2319336, 2.4746094, -1.5214844, -3.0136719, -0.019332886, -1.2626953, 0.8984375, -0.65527344, -0.6098633, 0.13989258, -1.1318359, -2.4238281, -1.0458984, 1.4033203, 2.4863281, 0.30932617, -1.0673828, 4, 0.43139648, 1.9208984, -2.1464844, -0.8041992, 1.8251953, -0.82714844, -2.8359375, 1.7851562, 1.3056641, -0.3857422, 2.5625, 1.3339844, -1.1601562, -0.65966797, -1.1865234, 0.33129883, -2.4960938, 0.8256836, 1.8056641, -1.7138672, -1.1699219, -2.4765625, -0.75634766, 0.32885742, -0.6640625, 0.48510742, -1.9492188, -3.9023438, -0.9350586, 1.1376953, -1.6044922, -0.091918945, 0.13769531, -1.3808594, -1.2587891, 0.33032227, -1.4257812, -2.78125, -1.7011719, 2.7558594, -0.23291016, -2.953125, -1.7695312, 0.7705078, -0.49047852, -2.7675781, -0.04800415, -0.49389648, 0.7163086, 0.4267578, 2.234375, -0.87939453, -2.0585938, 2.1601562, 0.8676758, -1.3798828, -1.7675781, 2.3515625, 0.4165039, 1.5224609, 1.7490234, -0.41674805, -0.44189453, 0.55810547, 1.9091797, -1.1318359, 0.92871094, -0.9824219, -1.6230469, -1.0195312, -0.67285156, 1.1367188, -0.19311523, 1.5048828, -0.047729492, -0.43676758, 1.7138672, -1.2109375, -0.52197266, 0.4453125, 2.0585938, 1.5273438, -1.8583984, -1.0986328, -0.0025901794, -0.062805176, -0.6621094, 0.06695557, 2.6054688, -0.16467285, 0.30688477, 2.4746094, -1.9570312, 0.95703125, 1.0644531, -0.44433594, -0.14929199, 0.18188477, 1.1689453, 0.4296875, -1.7304688, 2.3789062, 1.8740234, -0.7290039, -0.5722656, 2.3847656, -2.0234375, 1.6494141, 0.98876953, -1.4472656, 0.37182617, -0.33789062, 1.6015625, -1.1328125, 2.8378906, 2.8203125, 0.3701172, -2, 1.8408203, 0.41235352, 1.4755859, 0.8354492, -0.2602539, 1.2373047, -2.8183594, 0.09698486, 0.76416016, 2.4765625, -1.5664062, -2.0195312, 0.86279297, 5.046875, 0.05630493, -2.6816406, 1.6533203, -2.0917969, 2.3925781, -0.5991211, 1.5673828, 0.5991211, 0.25048828, 1.8632812, -0.2355957, -1.7714844, 1.6474609, 0.4873047, 0.58203125, 1.3740234, -1.9736328, 2.3613281, 0.62402344, 0.5317383, 0.9370117, -1.2734375, 1.46875, -1.8085938, 0.34423828, 0.6479492, -4.3789062, 0.8808594, 0.36450195, 0.9550781, 1.8984375, 1.8984375, -2.0273438, -1.1318359, 0.11193848, -1.3144531, 0.87890625, 0.40942383, -0.953125, 0.40844727, -2.6972656, 0.29345703, -1.7626953, -1.625, -0.062194824, 0.8198242, -2.6640625, 2.5429688, -2.84375, -1.15625, 1.3085938, -0.12121582, 2.3984375, -0.65966797, -0.9746094, 0.39233398, 1.2207031, -3.1796875, -0.6118164, 0.42041016, 2.4902344, 0.48120117, -2.6523438, 0.50683594, -0.46948242, 0.18737793, 0.18286133, -2.4609375, 1.2626953, 1.1318359, -0.3310547, 1.484375, -0.5986328, 0.7895508, -2.7597656, 2.6933594, -3.0410156, -0.57128906, 0.24487305, 3.7382812, 0.2626953, 0.30859375, -0.84228516, -0.58691406, 0.21252441, 0.26538086, 2.4433594, 0.7763672, 2.7382812, -0.3100586, -2, 1.5097656, -1.6669922, -3.3945312, -0.0027008057, -1.421875, -1.9023438, -2.5195312, -2.8671875, -0.5859375, -1.3369141, -0.7602539, -1.015625, -0.75, -0.45458984, 0.9785156, -2.8808594, -1.7070312, 0.5341797, -1.8740234, 0.7832031, -1.9482422, -0.08947754, -0.46069336, -2.5898438, -0.8383789, -1.1933594, 1.328125, -0.94384766, -0.37158203, 1.5097656, 0.26904297, 1.1972656, 1.7333984, -2.4238281, 1.8964844, 0.8173828, 0.89208984, 0.9609375, -2.3652344, -1.8242188, -2.5175781, -0.3359375, 4.4296875, 0.05908203, -0.4489746, 0.021255493, 1.8300781, 1.5673828, 0.1998291, -3.2675781, -1.7080078, -1.578125, 3.6113281, -3.4003906, -0.8149414, 1.0429688, 3.3320312, -2.7792969, 0.47729492, 1.6367188, -0.50439453, 0.87597656, 3.1875, -0.1459961, -0.78271484, -0.61865234, -2.546875, 2.5351562, 0.24694824, 0.61279297, -1.4941406, -2.6816406, 2.1621094, 0.62939453, -0.3359375, 1.0488281, 1.9257812, 5.2929688, 0.30078125, -0.95166016, -0.0960083, -0.9423828, 0.2783203, 1.0126953, 0.8388672, -1.4775391, -2.0703125, 0.4868164, -0.9458008, 1.8691406, -1.140625, -1.0419922, 2.2226562, 1.7207031, -1.0751953, -0.2626953, 1.0625, -0.77246094, -0.4338379, 1.8193359, 0.56933594, -0.80908203, -1.0820312, -0.6328125, 1.7861328, -2.2402344, 2.0429688, -0.48095703, -3.5136719, -0.3215332, 0.16088867, -1.1455078, -2.6386719, -1.2871094, -0.27172852, -1.4921875, 5.3515625, 0.4675293, -1.0214844, -1.5791016, -0.65478516, -0.022949219, 0.49560547, -1.1660156, -2.0429688, 0.11029053, -0.6665039, -0.6660156, 1.8232422, 0.62060547, -0.25683594, -0.103759766, 1.1679688, -1.7050781, 0.9848633, 1.8193359, -1.7216797, -1.3847656, 2.0488281, -0.055114746, -0.38427734, 0.78466797, 3.8613281, -1.3505859, -0.8461914, 0.68652344, -0.13293457, -1.4257812, -2.7929688, -3.1191406, 1.7451172, -2.4316406, 1.96875, 2.96875, -0.48217773, 0.09197998, 0.6542969, 1.7011719, -0.027420044, -2.0839844, 0.7685547, 2.1269531, -2.7949219, -0.8051758, 2.21875, 0.021896362, -2.5195312, -0.26513672, -0.11669922, 1.3652344, 0.37646484, 0.5942383, -1.0693359, -0.5522461, 0.5175781, 0.74316406, 0.18847656, -0.45239258, 2, -0.40795898, 0.06097412, -3.0253906, 0.070739746, 1.7734375, -0.4411621, 2.5, 4.84375, 2.4296875, -1.0478516, 1.7763672, -0.047546387, 3.1445312, -0.9716797, -1.8085938, 1.1865234, 0.4897461, -1.1308594, -0.61865234, -0.21582031, -2.0625, -0.79003906, 1.6181641, -0.9926758, 1.1210938, 0.075805664, 0.13513184, -0.32763672, 0.30395508, -0.19470215, -1.9736328, -0.25634766, 1.1162109, -1.1044922, -3, 1.4492188, -2.1425781, -1.0058594, 0.8564453, 0.06677246, 0.05545044, 0.05178833, 2.3808594, -0.019332886, 2.1621094, 0.20007324, -1.5439453, -1.1259766, 0.4091797, -0.47021484, 0.3798828, -1.1054688, 0.07269287, 1.9013672, 1.5742188, 0.36987305, -0.64746094, 1.1376953, -2.9882812, -0.5786133, -0.5371094, 1.5488281, 0.47192383, 0.61035156, 0.9692383, -0.96777344, 3.4882812, -1.2109375, 0.1583252, 0.55859375, 0.056610107, -2.3554688, -0.17443848, 0.68652344, 0.94140625, 1.0791016, 0.0067100525, 3.0859375, 1.2080078, 2.9375, 2.0761719, 0.60595703, -1.6132812, -0.8823242, -0.3095703, -0.0129470825, -1.7451172, 0.0036239624, -0.0357666, -0.13708496, 0.7685547, 3.7597656, 2.0507812, -3.84375, -0.32958984, 3.2148438, -2.4257812, -0.41845703, -1.0439453, -1.1806641, 2.1132812, 0.4638672, -1.7626953, 0.37060547, 2.8046875, 0.37719727, 2.5019531, -1.5507812, -0.08795166, -1.2734375, -1.4208984, -1.2880859, -2.1640625, -1.25, 1.5566406, 0.31591797, -0.7993164, -0.4284668, 2.0664062, 0.13220215, -0.55908203, -0.17211914, 0.029403687, -3.4472656, -0.7338867, 0.2775879, -1.7529297, -2.9082031, 2.0976562, 0.7104492, 0.6533203, 1.1894531, 1.7226562, 1.3916016, -1.8994141, -1.0458984, 0.0793457, 1.1621094, -1.0185547, 0.8901367, 1.9365234, 0.36767578, 0.21704102, -1.953125, -2.7558594, -2.2539062, 0.7036133, 1.5761719, -0.023773193, -3.1621094, -0.50439453, -3.2519531, -3.6875, -1.234375, 0.3466797, -0.21228027, 2.4160156, -1.6445312, -0.97314453, -0.25878906, -1.421875, -1.0283203, -0.46264648, -0.04663086, -1.1445312, 1.1123047, -1.015625, 1.0537109, 0.49047852, 1.0751953, 0.80566406, 1.5605469, 0.24890137, -0.43139648, -2.8867188, 0.5957031, -0.77197266, 1.5888672, 1.4804688, -1.3847656, 0.24829102, 4.0664062, -1.3994141, -0.8417969, 0.41235352, -2.703125, -0.7729492, -0.78466797, -2.8847656, 0.5517578, -0.23449707, 0.28515625, 0.6479492, 1.9306641, 1.1923828, 0.58740234, 0.014625549, 0.017120361, -0.2529297, 0.4819336, -0.18493652, 1.2998047, -0.40649414, 2.5058594, 1.8974609, 0.40307617, -0.42333984, -1.2089844, -1.1386719, 1.96875, -1.09375, 0.9375, -0.1965332, 0.5854492, 0.6870117, 0.7915039, 1.8457031, -0.7470703, 0.7211914, -1.6367188, 0.31591797, -0.88964844, 4.2460938, 0.4345703, -2.765625, -2.0976562, -1.0654297, 1.9882812, 3.7597656, -1.7578125, -0.9902344, 0.2722168, -2.5195312, -1.5273438, 0.2475586, 0.8588867, 1.6035156, 1.9365234, -2.9296875, -1.5380859, 1.4824219, -1.2998047, -1.0224609, 0.47265625, -1.0878906, 0.08880615, 0.19616699, 1.7207031, -2.3945312, -0.8647461, -1.1660156, 1.1113281, 0.8808594, -1.1923828, -0.7963867, -1.1113281, 0.06933594, 0.076660156, -1.9902344, -2.6308594, 1.0263672, 2.9023438, -0.122802734, 1.3769531, 3.0996094, -1.7265625, 1.3671875, 2.6875, 1.9658203, 0.578125, -0.35302734, -1.8652344, 0.9707031, 2.2890625, -3.2402344, 1.9951172, 1.1542969, -0.60009766, -1.1328125, 1.2226562, 1.2568359, 0.86816406, 0.6484375, 2.6152344, 1.4785156, 0.45263672, 4.15625, 1.1337891, 1.4335938, 1.4101562, -0.2553711, 2.3964844, 1.9443359, 0.43969727, -2.0410156, 0.25170898, -0.3696289, -0.8544922, 0.4633789, -0.9628906, 0.32421875, 2.7304688, -2.5703125, -0.030792236, -1.078125, 0.42138672, -2.0820312, 1.6806641, -1.1230469, -0.43408203, 1.0859375, 0.2277832, -0.64941406, 1.96875, -1.0048828, -0.38110352, -0.8833008, 1.4326172, -3.0625, 0.62841797, -1.3144531, -1.1640625, 0.017669678, 2.4414062, 0.38623047, 1.9267578, -0.23791504, 0.03881836, -1.21875, 1.3173828, 0.7651367, 0.15454102, -0.2211914, 1.3466797, 0.0345459, 0.081726074, -0.45361328, 0.08355713, 0.18164062, -3.0117188, -4.0195312, 2.5195312, -0.62597656, -0.3466797, 0.40063477, -1.1181641, 1.9648438, -2.0488281, 0.8095703, -1.9423828, 0.04800415, -0.57714844, -1.3769531, -0.000105559826, 0.6850586, 1.2197266, 4.3046875, -0.7836914, -1.1191406, 0.30322266, 1.5488281, 0.3803711, -1.0419922, -0.24780273, 0.23779297, 0.75341797, -2.9257812, 3.3515625, 1.0488281, -2.5234375, 0.6738281, 4.5117188, 0.0011262894, -0.38842773, 0.30859375, -1.234375, 0.82958984, -1.5009766, -0.8979492, 1.8535156, -0.99365234, -2.1699219, 0.019439697, 0.48291016, -0.72802734, 0.35131836, 0.0703125, 3.8261719, -2.6445312, 1.4199219, 2.25, -0.8823242, -0.40942383, 1.3027344, -1.3447266, -1.8691406, -0.1262207, 1.4726562, -2.1328125, -0.8491211, 1.8867188, 1.7724609, -1.0576172, 0.75341797, -0.8339844, -2.1328125, -0.24853516, 0.67626953, 1.5175781, -0.26635742, 0.6225586, 0.86035156, 1.2089844, -1.6660156, 1.1679688, 0.43774414, -0.33618164, 1.2822266, -3.953125, -0.17797852, -1.0439453, -2.2460938, 2.7988281, 4.0664062, -1.0371094, 0.47485352, -2.5332031, -2.5410156, -0.21240234, 0.030517578, -0.54003906, 0.34423828, -0.12194824, 0.9345703, 0.6899414, 1.5380859, 0.22265625, 0.07342529, 0.49682617, -0.044067383, 2.0820312, 0.2553711, 1.1816406, 1.5839844, 1.4941406, -0.050933838, 2.2441406, 1.8007812, 0.9995117, 0.7836914, 0.28051758, 0.17822266, -2.6464844, -0.00035619736, -0.85009766, 0.86865234, -1.0126953, 1.4648438, 1.4648438, 1.4160156, -1.7275391, -2.1484375, -1.9492188]}, "B004FPZACE": {"id": "B004FPZACE", "original": "Brand: Bernzomatic\nName: BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch\nDescription: \nFeatures: Trigger-start ignition easily ignites the flame\nVersatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nAngled stainless steel burn tube\nFlame control valve easily sizes flame and extinguishes when finished\n", "embedding": [0.31982422, 2.7988281, 0.88183594, -1.4863281, 0.60498047, -1.2275391, 1.4140625, 0.11987305, -0.12805176, -1.1142578, 0.8466797, -1.2207031, 0.17272949, -2.1132812, -2.1152344, 0.8125, -2.3964844, -0.1237793, 0.78564453, 2.8164062, 0.6738281, 0.80078125, 2.3398438, -2.6914062, 0.60253906, -0.005344391, 3.9863281, -3.0625, -0.8300781, -1.6777344, 1.2578125, 0.041625977, 0.8095703, 0.9609375, -2.1132812, 1.2578125, -0.30371094, 0.042297363, -2.2148438, -2.3359375, -1.8759766, 1.5566406, 2.234375, 0.98535156, -1.9316406, 1.9199219, -2.0898438, 0.6010742, -0.1348877, 1.046875, 0.66015625, 0.6821289, -0.3251953, -0.18969727, 0.9868164, 0.27490234, -1.1572266, -2.3027344, 0.9321289, 1.3505859, 1.6523438, 0.77490234, -1.9804688, 1.1074219, 0.5136719, 2.4824219, -1.9775391, 0.6513672, 1.6865234, 0.48999023, 1.6142578, 2.3925781, 2.0859375, 0.3527832, 0.18444824, 0.92626953, -2.3535156, 1.2851562, 0.72314453, -0.21704102, 2.3125, 1.1162109, 0.6533203, -0.6899414, -0.1295166, -1.7783203, -0.7163086, 1.1064453, 1.1914062, 1.4960938, -0.52783203, 0.36376953, -1.4482422, -2.8925781, 2.3789062, 0.6713867, -0.3671875, 1.2783203, 0.69677734, 0.6459961, 1.4248047, -0.16259766, -0.2927246, 0.57958984, -2.4570312, 1.6103516, -0.8833008, 0.5390625, -0.27783203, -0.41210938, -1.9199219, 0.050109863, 1.8935547, 1.5332031, -1.8691406, -0.3737793, -1.0751953, -1.5009766, 3.6425781, 0.6582031, 2.5078125, -0.3322754, 0.11260986, -0.4111328, 0.7529297, -0.7495117, -0.46728516, -0.8901367, 1.4882812, 0.1842041, -0.16174316, -1.9296875, 3.2695312, 1.0380859, -0.17944336, -1.6162109, -0.46777344, -0.35595703, -2.2949219, -1.34375, -2.9667969, 2.2089844, -0.3161621, -1.5419922, -4.4648438, -1.1796875, 0.56689453, 0.8354492, 0.87939453, -1.1738281, 0.18725586, -2.4433594, -2.4335938, -1.2617188, 1.4140625, 2.0039062, -2.1484375, 0.1295166, 3.3125, 1.4951172, 1.5097656, 0.9116211, -0.39233398, 1.2880859, -2.0957031, -2.3125, 1.1933594, 1.4892578, -0.12036133, 2.4316406, 1.703125, -1.8740234, -0.11968994, -0.9404297, -0.6567383, -1.4169922, 0.060913086, 2.6640625, 0.8276367, -0.7192383, -1.4462891, -1.390625, 0.066101074, -2.1972656, 0.4086914, -1.3154297, -1.5927734, -0.27734375, 1.0986328, -1.2568359, 0.5864258, 2.0878906, 0.57128906, -0.77197266, 0.8725586, -3.6542969, -1.1660156, -2.6445312, 1.8544922, 1.0859375, -1.9560547, -2.2265625, 1.5283203, 1.3867188, -1.7460938, -0.2824707, 0.54785156, 0.4729004, 0.5541992, 1.2939453, 0.25708008, -1.3574219, 2, -1.296875, 1.1835938, -2.9140625, 1.5595703, 1.0283203, 1.4794922, -0.14208984, 0.88671875, -2.0332031, 0.41308594, 1.6669922, 1.7714844, 1.640625, -1.6425781, -1.7890625, -1.515625, -0.5361328, -0.53808594, 0.7553711, -0.3544922, -0.18017578, -0.8574219, 1.921875, 0.23083496, 0.14453125, 2.2011719, 0.6430664, -0.97802734, -0.2454834, 0.97753906, -1.1259766, 0.70751953, 0.5463867, -1.5546875, -0.32299805, 1.5166016, 0.84765625, 2.296875, 0.1274414, 2.2773438, 0.29589844, -3.0820312, -2.2558594, 0.47143555, -0.3059082, 1.0029297, -3.6640625, 2.7167969, 1.2636719, 0.27148438, -0.4638672, 2.0878906, -2.21875, 0.43579102, 0.65478516, -0.48242188, 0.62646484, 1.0966797, 1.4794922, 0.34716797, 0.4794922, 2.5234375, 2.9824219, -2.3125, 2.0195312, -0.46289062, 0.47631836, 0.73046875, -0.3552246, 1.4111328, -2.7792969, 0.45117188, 0.9453125, 2.0644531, -0.93066406, -2.2773438, 1.2490234, 5.375, -1.1230469, -2.671875, 2.0019531, -0.21850586, 3.8183594, 0.3959961, 0.27539062, 0.15246582, -2.1914062, 2.65625, 1.8037109, -0.15319824, 0.8774414, -0.3720703, -0.07897949, 1.234375, -2.5019531, 1.3212891, -0.21582031, 0.9145508, 0.5678711, -1.2353516, 1.671875, -3.3710938, -1.6337891, -0.21679688, -3.9648438, 1.2734375, -1.1484375, 0.9379883, 3.6015625, 1.6523438, -0.671875, 1.2958984, -0.94628906, -1.0390625, 1.9658203, 1.6542969, -0.3466797, -1.4003906, -2.0175781, 1.3486328, -2.7070312, -0.45654297, 1.5498047, -1.6552734, -5.1757812, 1.2021484, -1.4560547, -1.1894531, 4.1875, -1.8095703, 1.5742188, 0.58984375, -2.0253906, -0.3894043, 1.2158203, -1.5576172, -1.9990234, -0.41992188, 3.1445312, -1.2226562, -3.2167969, -0.72314453, 0.2368164, 0.41333008, 2.296875, -1.5742188, 1.515625, -0.33544922, -0.515625, -0.83447266, 0.9770508, 1.5390625, -4.1015625, 4.1835938, -2.7617188, 1.0498047, -1.2275391, 2.5351562, -0.7011719, 1.4589844, -1.3496094, 1.2392578, 0.5053711, -0.53515625, 2.5019531, 0.115356445, 1.5537109, 0.2376709, -2.4082031, 0.34350586, -2.1660156, -3.5097656, 2.2675781, -0.09399414, -0.4284668, 0.12524414, -2.6523438, -0.44628906, -0.84472656, -0.08117676, -0.2783203, -1.0419922, -0.8334961, 0.010391235, -1.4423828, 0.30859375, 0.64746094, -1.6640625, -0.8120117, -3.1523438, -2.5449219, -0.020858765, -0.87158203, -0.35791016, -1.71875, 0.31079102, 0.8149414, -0.14953613, 0.15759277, 0.36938477, -0.32006836, 1.7578125, -3.5761719, 0.61572266, 1.9433594, -0.5444336, 1.1630859, -0.20922852, 0.5288086, -1.8388672, 0.19104004, 2.734375, 0.42456055, 1.1630859, -0.26123047, 0.66503906, 0.6933594, 3, -1.0195312, -2.9785156, -1.0966797, -1.0722656, -2.6171875, -0.5996094, 1.0439453, 0.7631836, -2.6210938, -0.5527344, 2.0976562, -0.84521484, 1.0400391, 3.0527344, -2.4375, 1.7724609, -0.75683594, 0.13635254, 1.5449219, -2.5410156, 2.21875, 1.2841797, -0.053100586, 1.515625, 0.89404297, -1.3183594, -0.3239746, 1.4267578, 2.1464844, 1.5957031, -1.4453125, 0.2746582, -0.6855469, 2.53125, 2.078125, 1.8417969, 0.6430664, -0.42382812, 1.4335938, 1.3144531, 1.8505859, -2.0625, -1.3388672, -0.49194336, -0.20751953, -1.7890625, 0.7578125, 0.8339844, -0.65478516, -1.5742188, 0.6328125, 0.29882812, -0.48095703, -0.03552246, -0.3942871, 2.1113281, -3.3925781, -0.9199219, -1.7597656, -1.4189453, -0.49658203, -0.5371094, -0.94433594, -1.1914062, -2.234375, -0.051452637, -1.1337891, 4.8828125, 1.0244141, -0.7192383, -1.1513672, 0.22521973, -0.41430664, 0.39624023, -2.9785156, -0.87597656, -1.3759766, 0.38061523, 0.6621094, 0.70166016, -1.0507812, -1.3720703, -1.6054688, 2.8457031, -1.7421875, 1.8417969, -0.23291016, -2.640625, 0.7573242, 2.3046875, -1.7597656, -0.8989258, 1.3837891, 2.1152344, -1.4482422, -1.5019531, 1.3857422, -0.7089844, -2.3066406, -4.1171875, -2.8730469, 0.66845703, -0.052490234, 2.0664062, 1.9863281, 0.49804688, 0.88623047, -0.044281006, 2.1855469, -0.7026367, -1.59375, 0.09564209, 2.5019531, -0.50097656, -1.8701172, 1.9355469, -0.7504883, -2.0605469, 0.21313477, -0.6928711, 0.953125, 0.4724121, 1.6220703, -0.08880615, 0.11883545, 0.5761719, -0.6777344, -0.13220215, -0.28271484, 0.4013672, 0.032562256, -0.2220459, -2.2871094, 1.1992188, -0.026443481, 1.2666016, -0.012687683, 1.7929688, 3.1542969, -0.021270752, -0.19262695, 0.5498047, 4.3554688, 0.38623047, -2.3339844, 0.21289062, -2.4335938, 0.4477539, -1.34375, 1.7832031, -1.0009766, -1.8447266, 0.53271484, 0.52246094, -0.64160156, 0.9536133, -0.36328125, -2.390625, 0.36083984, 0.12310791, -2.4882812, -1.1425781, 0.98535156, 0.76123047, -0.64501953, 0.9501953, -0.99609375, 0.52734375, -0.6308594, -0.62841797, -1.1660156, 0.06750488, 3.5507812, 0.8173828, 1.4941406, -0.52685547, -1.5585938, -3.0878906, 1.5556641, -0.034088135, -0.46533203, 0.55371094, 0.94189453, 1.5253906, 1.4511719, 0.734375, -0.9345703, 1.484375, -1.4492188, -1.0117188, -0.14416504, 0.52685547, -1.8779297, 0.37402344, 1.3222656, -1.1757812, 0.9628906, -0.9243164, -0.07647705, 0.7182617, 0.8364258, -1.0195312, -0.021102905, 0.6796875, -0.15478516, 1.2216797, 1.3837891, 3.2675781, -0.67041016, -0.07098389, 2.578125, -0.2692871, -0.71435547, 2.2695312, -0.007858276, 0.23120117, -0.6791992, -1.5117188, 0.7104492, -0.5463867, 0.48046875, 2.9785156, -0.46948242, -0.89746094, -1.515625, 2.1054688, -1.7216797, -0.03677368, -1.6689453, -1.7011719, 2.5410156, 0.5048828, -0.5185547, 0.58984375, 1.7314453, -0.8881836, 1.9326172, -1.1152344, 1.4150391, 0.35668945, -2.4628906, -3.0957031, -0.7055664, 2.8203125, 1.8085938, -1.0585938, 0.61816406, 0.9453125, 2.296875, 0.91552734, 0.123535156, -0.6904297, 1.2666016, 0.3251953, -0.8857422, 0.47998047, -1.9804688, -0.19677734, 1.8271484, -0.53271484, 2.5703125, 1.1269531, 2.5898438, 0.59472656, -1.6728516, -1.4423828, -1.0361328, 0.7788086, -1.7314453, 0.8574219, 2.0800781, 0.98876953, 0.8183594, -0.79248047, -1.9140625, -2.7226562, 1.3251953, 0.1161499, -0.9941406, -1.7314453, -1.3164062, -2.9179688, -2.8300781, -0.4333496, 0.15185547, 0.09893799, 2.3339844, 0.24816895, -2.1132812, 0.20605469, -0.78759766, -0.9975586, -1.3027344, 1.0019531, -1.4707031, 0.29663086, 0.119628906, -0.6557617, 0.12536621, -1.3466797, -1.4130859, -0.5258789, 2.9238281, -1.7470703, -4.1875, 3.296875, -0.9033203, 0.7441406, 0.10241699, -0.08129883, 0.5830078, 3.140625, 0.38061523, -0.44555664, 0.88671875, -1.28125, -0.5493164, 0.33789062, -2.1953125, -1.2636719, 1.4101562, 0.3955078, -1.0439453, 2.3671875, 0.8256836, -1.1113281, -0.45043945, 0.20910645, -2.3203125, -0.46044922, -1.0830078, 1.0947266, 0.11993408, 2.5390625, 1.5673828, -0.77783203, -0.9790039, -0.9970703, 1.1015625, 0.32128906, -1.6826172, 2.8066406, 0.0027637482, 0.99121094, 0.42358398, 0.9873047, 1.1904297, -0.58496094, -0.859375, -0.8178711, 1.0566406, -0.6308594, 3.4980469, -2.9335938, -2.6660156, -1.0302734, -0.32055664, 3.4433594, 1.9365234, -0.20043945, -0.36621094, 1.1494141, -1.6503906, -0.87109375, 0.76660156, 0.5732422, 0.1116333, -0.42382812, -1.5390625, -1.9003906, -0.39013672, -1.7431641, -2.1542969, 1.8867188, -1.5097656, -0.36767578, 0.65185547, -0.7636719, -1.9082031, -0.76220703, -2.140625, -0.2697754, 0.62646484, -0.2076416, -0.7133789, -1.6669922, -0.1784668, 1.5439453, -0.37841797, -2.828125, 1.015625, 2.3847656, 1.1835938, 0.6694336, 2.2929688, -1.4365234, 0.87158203, 1.6474609, 0.4597168, -2.1152344, -1.4677734, 0.6044922, 1.5273438, 2.0722656, -1.8134766, 2.2382812, 1.6542969, 1.3447266, -0.7348633, 0.25732422, -0.97558594, 0.6748047, 1.2578125, 2.2617188, 0.3305664, 1.5400391, 1.3037109, -0.53808594, -0.3876953, 1.8105469, 1.5732422, 2.3886719, 1.0048828, 0.24023438, 0.041992188, -0.9345703, -0.3178711, -0.84814453, -0.80029297, -1.7783203, -0.06323242, -0.51416016, -2.9394531, -0.44311523, -0.7944336, 1.0527344, -0.85009766, 1.5117188, -1.1181641, -0.21325684, 0.7294922, 1.8193359, 2.4472656, 0.8261719, -1.4619141, -0.4501953, -0.045196533, 0.4506836, -4.3984375, -0.36743164, -1.2021484, -1.4482422, 0.2927246, 2.1933594, 0.41503906, 0.64160156, -0.19128418, 0.98291016, 0.33789062, -1.1386719, 1.0556641, -1.5488281, -0.60546875, 1.3203125, 1.7529297, -0.1583252, 0.91552734, -0.32958984, 1.25, -2.1679688, -2.4980469, 2.890625, 0.21850586, 0.29882812, 1.2460938, -0.4248047, 1.5566406, -2.0292969, 0.24377441, -0.77978516, 0.9296875, 1.0888672, -1.7861328, 0.2668457, 1.3994141, 0.52246094, 2.4902344, -1.9589844, -0.89990234, -0.9477539, -0.4892578, 1.4179688, -1.5517578, -0.033935547, -0.7080078, -0.9951172, -3.3535156, 2.9179688, 0.2541504, -3.4785156, -0.89208984, 3.9414062, -0.25976562, 1.7646484, 0.84277344, -2.1523438, 0.7602539, -3.203125, 0.060424805, 2.7128906, 0.31713867, -3.2285156, 0.8989258, 0.03768921, -0.16760254, -0.70751953, -0.21850586, 2.1582031, -2.2695312, 0.48632812, 1.9892578, -1.0703125, -0.07788086, 2.7910156, -0.83154297, -1.5136719, 1.9726562, 2.140625, -1.6816406, -1.3212891, 1.5361328, 3.2851562, -0.016571045, -0.35375977, 0.27172852, -1.4345703, -1.0400391, 1.5849609, 0.5546875, -0.6201172, -0.9628906, 1.2597656, -0.60253906, -1.3007812, 1.4394531, -0.7841797, 1.1796875, 0.64941406, -4.6992188, -1.3574219, -0.73095703, -1.0439453, 3.0410156, 2.0722656, -2.5214844, 1.2617188, -0.3095703, -2.6816406, 0.054260254, -2.0664062, -0.0047340393, 1.5595703, -1.8955078, 1.9541016, 0.8227539, 4.2226562, -3.5703125, -0.14660645, 1.1796875, -1.3808594, 2.5839844, -0.50146484, 3.6074219, -0.6113281, 0.17443848, -0.67578125, 3.2792969, -0.35009766, -0.21569824, -1.1884766, 1.5029297, 1.1982422, -1.5234375, -1.4072266, -3.2910156, 0.3581543, 0.024795532, 0.48486328, 0.92285156, 0.08477783, -0.8964844, -2.8105469, -1.9638672]}, "B00XOBY97C": {"id": "B00XOBY97C", "original": "Brand: Coleman\nName: Coleman Roadtrip X-Cursion Propane Grill\nDescription: \nFeatures: Made of the highest quality materials\nCamping cooking grills\nAnother quality Coleman Signature product\n", "embedding": [0.28466797, -0.56347656, -0.32617188, -0.31835938, -0.6455078, -0.08270264, 1.3017578, -1.7861328, -0.8779297, 0.83691406, -0.2208252, -1.2578125, 0.7993164, -4.03125, -0.14038086, 0.15722656, 0.7998047, 2.5566406, -0.63378906, -2.3066406, 2.1445312, -0.18566895, 1.3691406, -0.20251465, 0.48095703, 0.9448242, 3.9042969, -4.5390625, 0.27563477, 0.70410156, 0.6616211, 0.00048828125, -0.63623047, 3.3359375, -1.4257812, -1.3564453, -3.265625, 2.1269531, -1.7607422, -1.1835938, -1.6591797, -0.78271484, 1.1728516, -0.27294922, -1.2578125, -0.8413086, 1.9375, 1.0947266, -2.5976562, -1.8320312, 1.3183594, 1.171875, 0.4284668, 0.84472656, -1.3710938, 0.93066406, -0.77734375, 0.33642578, 1.5195312, -0.53759766, 0.4375, -0.6274414, -2.4003906, 0.27954102, -2.4199219, 0.98535156, 0.87060547, -0.20605469, 0.13256836, -0.8520508, 3.1347656, 0.10882568, -3.9257812, -1.4482422, 0.95166016, -1.9316406, -2.8398438, 0.9008789, -0.9194336, -0.6972656, -0.26513672, 1.9609375, 0.058502197, -1.5537109, 0.73046875, 0.79248047, -2.1875, -0.64453125, 1.9882812, 0.9477539, -1.1923828, 0.52734375, -1.0419922, -3.7949219, 0.33007812, -0.93896484, -0.55908203, 0.0059394836, 0.4284668, -0.8564453, -1.6445312, 1.2851562, -1.2324219, 0.07208252, -3.5175781, -0.3840332, 2.0253906, -0.8852539, -2.2753906, 2.1425781, -1.7050781, -2.9667969, 2.2226562, 1.5419922, 0.5756836, 0.72753906, -1.2587891, 1.1464844, 3.3984375, 0.0096588135, 4.5195312, -0.6899414, 1.3525391, -0.95410156, -0.53808594, 1.6269531, 0.8041992, 0.4794922, 2.6445312, -0.43701172, 1.9404297, 0.44189453, 3.9960938, 0.45263672, -4.4296875, -2.5703125, -1.2705078, -0.88183594, -1.6503906, -0.57714844, -0.5180664, -0.30664062, 3.6015625, 0.5883789, -5.2929688, -0.3864746, -0.06323242, 3.375, -0.6381836, -1.1669922, -2.4257812, -1.8388672, -0.19104004, 0.7758789, 2.1933594, -0.08972168, -2.2324219, -2.640625, 3.3339844, 1.7832031, -0.18383789, 0.13146973, 0.25268555, 0.63134766, 1.3867188, -0.8881836, -0.8334961, -0.60546875, -0.3178711, 2.140625, -0.90722656, -2.3457031, 1.6503906, 1.3955078, 1.7470703, 0.10455322, 0.9135742, 2.0449219, 0.859375, 0.47436523, -1.6728516, -1.6269531, 0.81103516, 0.6088867, 0.26757812, -2.515625, 1.1386719, -0.9472656, -0.67089844, -1.4765625, 1.6738281, -0.14355469, -0.51416016, 0.93066406, -2.0898438, -0.62353516, 0.30737305, -0.9711914, 1.7636719, -0.009780884, -1.2978516, -0.97021484, -0.7441406, 1.1416016, -1.6445312, -2.3554688, -0.66503906, -2.6523438, 1.5136719, 0.8208008, 2.1699219, -0.41479492, 0.87597656, -0.29003906, -1.8359375, -2.5800781, 0.19042969, 0.20483398, 2.9082031, 1.2851562, 0.875, 0.41333008, -1.3935547, -1.0693359, -1.1953125, 2.1855469, -0.01763916, -0.22094727, -0.14147949, -2.1054688, 1.1699219, 3.3417969, -3.5957031, -0.1303711, 0.53125, 2.9765625, 0.9145508, -1.5078125, -0.24853516, -0.48657227, -1.3789062, 0.72265625, -0.5595703, -0.42700195, 0.63964844, 0.5253906, -0.4296875, 0.69384766, 3.4609375, 0.37768555, 1.0097656, 0.6640625, -1.4072266, 2.2636719, 0.50683594, 2.7617188, -0.18017578, 0.74316406, -0.58251953, -1.7890625, 0.31201172, 1.9355469, -0.98535156, -1.2519531, 0.8227539, 1.0410156, 1.5546875, 1.0332031, -3.0957031, -0.8378906, 2.1015625, 1.5283203, 0.024093628, 1.8515625, 2.6152344, 0.48583984, -0.42529297, 2.0664062, 0.26831055, 2.2851562, 0.35253906, 1.5957031, 1.2773438, -2.3144531, -1.1181641, 0.47314453, -0.9926758, -0.55566406, -2.2324219, 2.5449219, 4.15625, 0.036468506, -1.4042969, 4.1601562, -2.3964844, 2.109375, 1.5566406, -0.4580078, -2.3457031, 0.46875, 2.4882812, 0.4453125, -0.7265625, 2.515625, -3.6777344, 0.73046875, -0.10986328, -2.9804688, 0.97753906, 0.20483398, -0.8408203, -1.8466797, -1.4453125, -0.87060547, -1.9208984, -0.37353516, 2.2597656, -3.5664062, 1.6386719, 3.4160156, -0.21838379, 1.1699219, 1.6074219, -1.8544922, 0.92578125, 1.2607422, -2.1777344, 1.5917969, 1.9794922, 0.21154785, 0.67041016, -0.17407227, 0.5209961, -0.22753906, -1.2207031, -1.0185547, 1.2148438, -2.7285156, 2.8144531, 0.36669922, -1.3476562, 0.021118164, -0.69433594, 1.3857422, -2.9589844, -2.7695312, 0.39990234, 0.6044922, -0.20983887, -0.043701172, -1.6591797, 1.0791016, 1.3583984, -4.5585938, -0.65722656, 0.008804321, -0.94873047, -1.2373047, 0.0033016205, -0.02809143, 1.6728516, -0.36376953, -0.8461914, 0.1817627, -1.2871094, -1.53125, -0.39404297, -2.5839844, 2.046875, -3.1347656, 0.765625, 0.5810547, 0.9790039, -3.296875, -2.7832031, 3.5957031, 0.37060547, 5.3554688, 0.18383789, 0.6196289, 0.51953125, -2.2246094, 0.4416504, -2.1152344, -3.1640625, -0.4255371, 1.0234375, 0.057373047, -1.7080078, -3.3222656, 0.28515625, -2.4042969, 0.4934082, -0.03390503, -0.6196289, -2.0097656, 2.7207031, -2.078125, -0.012519836, -0.4404297, -0.06286621, -0.2565918, 0.43603516, -0.39990234, 0.8564453, -1.4111328, -1.0888672, -1.5400391, 1.1923828, -0.62939453, -1.9716797, 1.4570312, -0.5493164, 1.5859375, -0.54589844, -4.7695312, 2.5976562, 0.7470703, -0.40185547, 3.0839844, -1.0595703, -1.0800781, -3.9140625, -0.4560547, 1.5283203, 3.2773438, 1.0478516, 0.26782227, 0.9633789, 0.7241211, 1.3847656, -0.6142578, 0.68359375, -0.19140625, 2.8730469, -1.0205078, -3.4140625, 0.062561035, 1.4091797, -3.375, -1.7724609, 1.2109375, -0.7011719, -0.19494629, 4.1171875, -0.6279297, 1.3105469, 0.19787598, 1.5791016, 1.7333984, -0.42773438, -0.88183594, 0.54785156, -2.3066406, 2.7460938, 0.91064453, 0.07116699, 1.7392578, 0.53564453, -0.21057129, 1.8603516, 0.4658203, 1.2675781, 1.1328125, 0.86621094, 1.1533203, 1.9208984, -2.6328125, -0.09552002, 0.44384766, -0.17199707, 1.7832031, 0.11730957, 0.012466431, 1.2714844, -1.0654297, -0.52246094, -0.16149902, -0.5908203, 0.9194336, -0.5336914, 1.4208984, -2.5625, -1.2294922, 0.57910156, -1.7900391, -3.9824219, -1.5537109, 4.15625, -1.1542969, -2.4726562, 0.6220703, 3.4824219, 1.1445312, -2.3203125, -3.5898438, 1.7587891, -0.83496094, 2.1289062, 1.7070312, -0.80810547, 1.296875, 0.47460938, 2.4179688, 2.2988281, -1.5820312, -0.9350586, -2.9667969, -1.3447266, 1.6816406, 0.65478516, 0.18408203, 1.2910156, -1.7871094, 1.9199219, -2.0410156, 0.6098633, 1.6396484, -3.7402344, 1.0458984, 3.3242188, -0.0309906, 0.66015625, -0.6166992, 3.9667969, -1.3417969, -0.22546387, 0.93359375, -0.9970703, -1.015625, -0.70458984, -1.6425781, 2.21875, -1.2792969, -0.72314453, 2.015625, -1.0986328, -0.87353516, 1.6162109, 0.62597656, 0.22583008, -2.2226562, -2.1484375, 0.09942627, -1.9453125, -0.31274414, -0.09588623, -1.4267578, -2.6113281, -1.9521484, -2.2148438, 0.089660645, 1.4794922, 2.078125, -0.84375, -0.10546875, -3.109375, 2.3574219, -0.3239746, 0.3112793, 0.27319336, 1.2460938, -0.1739502, -3.2382812, -0.049438477, 1.4130859, 1.1464844, 2.5566406, 1.75, 0.0027198792, -0.4765625, 2.1914062, 0.42382812, -0.37451172, 1.1445312, -1.7451172, 0.08782959, -2.7226562, -1.8779297, -0.921875, 0.31054688, 0.5385742, -1.2167969, 0.55322266, 0.36791992, 2.2910156, 2.2402344, 0.3425293, -0.47460938, 0.76660156, 0.7290039, -2.0234375, -1.8330078, -2.15625, -0.03555298, -1.9091797, -0.4128418, -0.20739746, -1.3007812, 0.6201172, -0.5493164, -0.7314453, -0.21069336, 2.015625, 1.4042969, 0.87597656, -0.70751953, -0.19470215, 1.359375, -1.7333984, 0.29541016, -0.26757812, -1.5507812, 0.20129395, -0.22973633, 0.9873047, -0.96484375, -1.4951172, -0.71777344, -2.4101562, -1.6669922, -2.3144531, 0.7783203, -0.94189453, -0.11755371, -1.6787109, -1.6396484, 1.2724609, -1.0175781, -0.48510742, 1.4179688, 2.0175781, -0.19592285, -0.9584961, -0.39648438, 0.7216797, 2.2714844, -1.0859375, -0.22692871, -1.8808594, 0.97558594, 1.1855469, 1.9257812, -0.484375, -0.5258789, 0.8666992, -0.31152344, -1.3056641, 0.62402344, 0.65234375, 1.7099609, 2.078125, 2.3398438, 1.2050781, -1.0839844, 1.1044922, 0.5439453, -0.41748047, 0.10772705, -0.6303711, -0.8520508, 0.71972656, -3.0957031, -4.1679688, -0.039642334, 0.99853516, -0.2163086, 2.546875, -0.70703125, 0.55078125, -1.8613281, -3.3984375, -0.51171875, -0.38500977, -1.40625, 1.5458984, -1.7587891, -0.28833008, -1.2070312, 2.9394531, 2.7578125, -0.24609375, -1.6357422, 0.31298828, -2.2246094, 0.7998047, -1.7353516, -1.65625, -2.9550781, -2.3847656, 1.5048828, 0.6147461, -0.7524414, 1.1582031, 1.25, -0.92089844, 0.1977539, -3.7207031, 1.6015625, -2.2910156, 0.086242676, 0.7910156, -1.3623047, -1.421875, -1.96875, 0.22790527, 0.2166748, 2.3359375, 1.1181641, -0.5810547, 0.64453125, 1.0830078, -2.6523438, -4.4453125, -1.2021484, -1.0576172, 0.69091797, -1.0761719, 2.65625, -0.8510742, 0.30639648, -0.24291992, -1.4794922, -0.36523438, 0.58984375, 0.47924805, 0.37817383, 0.058135986, 1.0585938, -0.22509766, -0.27197266, 0.33520508, 3.2148438, -1.0039062, -2.5214844, -2.4570312, 1.1542969, -1.3994141, 1.6796875, 1.7919922, -0.56640625, -0.12408447, -0.36621094, 1.4667969, 0.6245117, 2.8535156, 1.3457031, -0.19311523, 1.2167969, -0.7871094, 0.17382812, 1.2431641, -0.53466797, 0.89501953, 0.25756836, 1.4072266, -0.018341064, 0.19213867, 1.0869141, 1.0595703, 0.9472656, -0.5390625, 1.7978516, -0.5180664, 1.65625, 0.6166992, 0.94189453, -0.6274414, -1.4140625, -4.0507812, 0.91308594, -1.234375, -1.5703125, -2.0917969, 3.140625, 1.6582031, 3.5292969, 0.9194336, 1.3203125, 3.0664062, -0.54052734, 0.4104004, -0.99316406, 2.7695312, 3.0039062, -0.8720703, -2.4746094, -1.0292969, 0.20727539, 1.4111328, 1.2763672, -0.9633789, 0.4091797, -2.4199219, -0.4230957, 0.10864258, 2.3417969, 0.5996094, 2.1132812, -0.34521484, 2.6640625, 3.2890625, -1.2324219, 0.26391602, -0.41186523, 2.1738281, -2.0585938, 2.0839844, -0.8256836, -0.7426758, 1.7763672, -1.4804688, 0.84765625, 0.27856445, -0.41992188, 0.016098022, -0.68847656, 0.35888672, -1.6386719, -0.15112305, -3.1425781, 2.6601562, -0.07208252, -1.4375, 1.5957031, 0.32714844, -1.8525391, 1.4990234, 2.7851562, 1.6308594, -0.68115234, 0.9086914, -0.8691406, -0.29638672, 0.22595215, -2.3085938, 5.375, -1.390625, -0.36450195, 1.7753906, 2.8671875, 0.7451172, 2.8398438, 3.7402344, 2.15625, 2.5625, 1.3359375, 2.078125, 1.3115234, 1.1933594, 0.4724121, -2.6015625, -0.4675293, 2.8867188, 1.8173828, 1.5175781, -1.1455078, 0.84277344, 0.40039062, 0.6376953, -0.32421875, 0.3461914, -0.30615234, -2.484375, 2.1308594, 2.6738281, 2.2597656, -1.2324219, 1.1884766, -0.040496826, -0.5415039, -0.3996582, -1.3769531, 0.9404297, -0.37890625, 2.7949219, -0.70751953, 0.91308594, 1.2773438, -2.0371094, -2.5175781, -0.05404663, -1.8701172, -1.0546875, -0.60839844, 1.5263672, 0.2565918, 0.8461914, -0.34204102, 1.8603516, 0.37451172, -1.1191406, -0.6645508, 0.04925537, 1.21875, 2.8984375, -1.2451172, -2.9257812, 0.84521484, 0.25561523, -1.5449219, -3.6660156, 0.57958984, -0.32885742, 0.91015625, 2.1464844, -2.5390625, 2.0253906, 0.2442627, 2.5605469, -0.9248047, 1.8232422, -0.8618164, -2.859375, -2.140625, -1.6679688, 2.9941406, 3.3398438, 1.7841797, -0.68896484, 1.7138672, -0.11431885, 1.8671875, -1.5830078, 1.1767578, 0.030975342, 1.9863281, -2.1582031, 1.9013672, 0.16503906, 2.0078125, 0.7783203, 1.7558594, 2.1992188, 0.85058594, -1.3134766, -1.2607422, 1.7333984, -0.78564453, -0.4880371, -0.6743164, 0.23852539, -2.3847656, 1.9013672, 0.78515625, -0.54785156, 0.640625, 0.56933594, 2.0917969, -0.8935547, 1.7783203, 1.7421875, 0.33398438, 1.1015625, -2.421875, -1.7861328, -2.1601562, 0.6118164, 0.33642578, -0.703125, -0.76171875, 1.8925781, 1.2421875, -1.3076172, -1.0957031, 0.13476562, 0.3227539, 0.25073242, -1.0439453, 0.5185547, -0.75, -0.43969727, -0.2866211, 0.9946289, 1.0068359, 2.0019531, -0.43408203, -0.29125977, 0.16662598, -2.6953125, -2.1289062, -2.4589844, -0.13562012, 0.7167969, 3.1914062, 0.5366211, 1.2138672, -2.796875, -1.6708984, -2.9882812, -1.2089844, 3.4472656, 2.5722656, -2.2949219, 0.90185547, 0.44726562, 1.8574219, -1.1005859, -1.0351562, -0.20739746, 0.31298828, -0.07684326, 0.27563477, 0.66796875, 1.1347656, -2.6367188, -0.4284668, 2.9023438, 0.76660156, 2.046875, 1.65625, -1.4160156, -0.57910156, -1.4921875, 0.006980896, 0.3125, -1.7470703, -2.3183594, 0.19824219, 2.0878906, 1.7109375, -0.7783203, -3.9023438, -0.9711914]}, "B07CQ5ND65": {"id": "B07CQ5ND65", "original": "Brand: Blaze\nName: Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas\nDescription: The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that's normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that's perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)\nFeatures: Freestanding propane gas grill\n304 stainless steel grill body construction\n(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU\nflame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface\nOverall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU\n", "embedding": [-0.85498047, 1.8359375, 2.2402344, -0.7392578, 0.06878662, -2.0234375, 0.92871094, -0.97558594, -0.7651367, 2.4375, 0.23327637, -1.1914062, 1.1982422, -3.9394531, -1.3056641, -1.1113281, 1.8984375, 1.0332031, 2.1660156, 0.9794922, 0.6118164, -0.035491943, 0.5839844, -0.44433594, 0.09552002, -0.4975586, 3.7265625, -3.3476562, 0.3178711, -2.4570312, 0.24182129, -0.18652344, -1.1181641, 1.0585938, -3.4628906, -1.7900391, -0.92285156, 0.30908203, -1.40625, -1.7207031, -0.9819336, 0.061279297, 3.6875, 1.3007812, -2.7480469, -0.4477539, 0.17712402, 0.8413086, -0.60253906, -0.89160156, 1.3261719, 1.1884766, 1.5302734, 0.04324341, -1.2871094, 0.5917969, 0.61035156, -1.7724609, 1.3710938, -0.8671875, 2.4003906, -0.95654297, -1.9658203, -0.7114258, -2.8320312, -1.5908203, 2.5253906, -0.15222168, 0.06317139, -0.01020813, 1.7021484, 0.59472656, -0.5966797, 0.65771484, -0.113586426, -0.66064453, -3.5039062, 2.2597656, 1.0019531, -0.4111328, -0.8388672, 3.8691406, 1.3320312, -2.1738281, 0.2668457, 1.6152344, -0.18493652, 0.5800781, 1.1816406, 1.3945312, -0.6123047, 2.1367188, -0.04034424, -2.7753906, 1.9648438, -0.60498047, 2.0507812, 0.12426758, 0.4650879, 1.1162109, -1.1425781, 1.3017578, -2.0664062, -1.5136719, 0.044555664, -0.47558594, 2.7675781, 2.0078125, -1.4941406, -0.1295166, -2.4042969, 0.065979004, 1.2685547, 1.1884766, 0.61328125, 0.044158936, 1.9619141, 2.1777344, 0.86328125, 2.5507812, 0.9355469, -1.4121094, -0.91552734, 0.3486328, 0.85839844, -0.007980347, 0.17883301, 2.6015625, 2.9296875, -0.8378906, -1.5625, -0.58496094, 2.953125, -1.3574219, -0.24255371, -2.7988281, -0.8222656, -2.2890625, -3.3417969, -0.69091797, -1.1523438, 2.2363281, 0.9140625, -0.73828125, -4.3046875, -0.1307373, -0.057495117, 1.4375, -0.9941406, -2.1699219, 1.1230469, -1.2314453, -0.53271484, -2.8945312, 1.4570312, -1.2675781, -0.83935547, -2.0742188, 3.8164062, 0.32739258, 0.96972656, -0.8071289, -1.6005859, 2.4511719, 0.017959595, -1.3476562, 0.89990234, 0.53759766, -0.27075195, -0.49536133, -0.0435791, -2.9179688, 2.2675781, 0.83740234, 0.54003906, -2.2011719, -1.4921875, 0.86572266, -0.76416016, -0.09411621, -0.89208984, -1.3505859, 1.2519531, -1.0214844, -0.6220703, -0.41723633, -0.012535095, 0.5288086, -0.09442139, -2.7148438, -0.09643555, 1.6123047, -0.39526367, 0.93652344, 1.0751953, 0.018478394, -2.7480469, 0.24682617, -0.14648438, 0.27807617, 0.5625, -1.0019531, 0.5566406, 1.1425781, -1.4648438, -3.2285156, -1.4335938, -1.5839844, 0.07348633, 1.1787109, 1.2802734, -1.3701172, 3.3125, -1.7832031, 1.109375, -1.6777344, 1.1914062, 1.4970703, 3.2011719, 2.28125, -0.19262695, -2.2597656, -0.15844727, 3.3066406, -0.09185791, 0.484375, 1.8642578, -0.07775879, -2.6503906, -2.59375, 0.91552734, 0.099243164, 0.61376953, -0.79052734, 0.1538086, 3.1191406, 1.640625, 1.0390625, -1.3505859, 1.5419922, 2.3105469, 0.8930664, -2.21875, -1.7890625, -1.9052734, -2.4746094, -2.4628906, 1.625, 0.7861328, 0.37060547, -0.58203125, 0.31713867, 1.5908203, 2.9140625, -0.07965088, -0.2536621, 0.2097168, 1.7265625, -1.8330078, -2.9785156, 2.5292969, 1.4013672, -2.0058594, 0.23498535, -0.24926758, -0.3791504, 2.7890625, 1.390625, -1.890625, -0.080566406, 1.0234375, -0.015052795, 1.9501953, 1.2617188, 0.41455078, 0.98779297, -1.4160156, 2.3691406, 1.0566406, 2.25, 1.4746094, -0.3942871, 3.8066406, -2.65625, -0.5942383, 0.56152344, 1.0449219, -0.3774414, -2.5644531, 0.14050293, 4.5976562, 0.66552734, -3.6875, 4.6132812, -0.59472656, 0.04083252, 1.5, -0.32177734, -0.6958008, -0.36035156, 3.4179688, 1.6914062, -0.49194336, 1.5488281, -0.7817383, -0.63671875, 1.7373047, -1.2509766, -0.6074219, 2.3671875, -0.56396484, 0.3935547, -2.6367188, 0.74121094, -1.5, -1.1289062, 2.65625, -1.8847656, 2.2226562, 1.7578125, 1.2167969, 2.2207031, -0.9375, -0.57177734, -1.0234375, 0.2175293, -0.20202637, 0.82666016, -1.375, -2.2050781, -2.0410156, -0.6147461, 0.20117188, -0.9038086, -0.85839844, -1.3984375, -1.1367188, -3.4453125, 0.62158203, -2.2832031, -1.3066406, 0.6699219, -2.7226562, 1.1738281, -1.09375, -4.0429688, -0.8613281, -1.0410156, 0.8964844, 0.6274414, -0.2368164, 0.4284668, 0.65966797, -2.4179688, -0.36035156, 0.4074707, -0.17016602, 0.83447266, -0.9428711, 0.2692871, 0.20617676, 0.48535156, -1.0263672, 1.6230469, 1.2626953, -0.5361328, -0.9638672, -3.3144531, 0.5292969, -3.2011719, 0.50341797, -1.1523438, 0.5488281, -1.4091797, -1.9082031, -1.2363281, -1.1230469, 1.9882812, -1.3105469, 1.1757812, -0.051483154, -0.65771484, 0.1895752, 0.13708496, -1.3857422, -0.6308594, -0.23657227, -0.6772461, -3.1269531, -2.8671875, -0.35327148, 0.63427734, 0.44140625, -1.0166016, 1.7714844, -2.1289062, 2.1933594, -1.5732422, -0.5283203, 1.3466797, -0.25585938, -0.2775879, -0.016616821, -2.8945312, -0.67529297, -1.7900391, -1.6386719, 0.55566406, 1.9853516, 0.19592285, 0.8745117, 2.2011719, -0.16271973, -0.94921875, -0.26635742, -4.34375, 0.5048828, 0.37329102, -4.4570312, 0.7661133, 0.5107422, -1.4746094, -2.7910156, -1.8222656, 3.1542969, 0.5473633, 0.99609375, -1.3232422, -2.7578125, 3.1972656, 0.43017578, 0.21081543, 0.34594727, -1.3173828, 3.453125, -3.8339844, -2.3203125, -0.8232422, 2.2675781, -1.7998047, -2.890625, 3.0195312, -0.11254883, 2.171875, 2.6855469, 4.2148438, 0.19970703, 0.24694824, 2.1621094, 0.18347168, 0.18310547, 0.76708984, -1.0839844, -0.8027344, -0.67529297, 0.7006836, 1.0400391, 0.74853516, 2.6699219, 2.1230469, 1.7207031, -0.953125, 0.30273438, -0.7446289, 1.7890625, -0.045043945, 3.1894531, -0.34960938, 0.34985352, -2.2910156, -0.0002553463, 0.42822266, 0.66503906, -0.7260742, 1.5917969, 2.078125, 0.45922852, 0.45532227, 1.2177734, -0.3720703, -0.36132812, 1.6152344, -1.1728516, -0.15441895, 0.2163086, 0.09448242, -1.3837891, -3.9667969, 0.96484375, -1.2519531, -2.2070312, 0.14477539, 1.2978516, -0.62939453, -1.4814453, 1.6738281, 1.5585938, -0.14025879, 1.9404297, 0.6147461, -0.029129028, 1.7871094, -1.2558594, 0.44995117, -0.68847656, -1.6787109, 1.6162109, -1.3886719, 2.6523438, -0.390625, 1.8427734, 2.4492188, -0.7480469, -1.1425781, 1.203125, -2.1269531, -0.18823242, -1.3681641, -2.8457031, -2.7050781, 2.0371094, 1.1650391, 1.1679688, -0.76220703, 2.5957031, -0.98779297, -2.5214844, 2.0722656, -3.953125, -1.4902344, -1.6826172, -4.8984375, 1.3535156, -2.8261719, -1.5058594, 1.8925781, -0.0513916, 0.013938904, 0.044708252, 0.25439453, -2.953125, -0.75390625, 0.70410156, -1.1914062, 0.55908203, 0.2668457, 1.9570312, -0.23339844, -1.9414062, -2.4023438, 0.12121582, -0.59277344, 1.3974609, 2.6816406, -2.1796875, 1.2861328, -0.61865234, -0.9946289, 0.46679688, -0.81591797, 2.5253906, -2.5722656, -1.4882812, -4.109375, 0.10571289, 1.6259766, 1.2470703, 1.8359375, -0.55615234, 1.4433594, -0.8461914, -0.6044922, 2.6914062, 2.6308594, 0.57958984, -2.7011719, -1.6542969, 0.49731445, -0.5546875, -0.12768555, -0.042388916, 0.70654297, -2.4960938, 2.9296875, 0.19714355, -0.088256836, 1.8115234, -0.6743164, -4.1484375, -1.6142578, 0.5004883, -3.3632812, -1.5810547, 1.40625, 0.5180664, -0.68896484, 0.70947266, -1.0146484, 0.25268555, -3.4667969, -0.5361328, -3.4042969, 2.4746094, 1.3427734, 1.6513672, 2.0742188, -0.31567383, -1.7412109, 0.75878906, 0.08581543, -2.1367188, 1.8574219, -1.8330078, -0.2277832, 2.2539062, 1.1376953, -0.80029297, -0.6123047, 1.4863281, -2.2441406, 0.8125, -2.1445312, -1.6318359, -2.6347656, 0.4387207, 1.3525391, 0.3293457, 1.4150391, -2.7402344, -1.2158203, 0.32861328, 1.6748047, -0.9404297, -0.13110352, -0.55078125, 1.0634766, 1.1435547, 3.0644531, 1.4453125, 0.47460938, -0.6298828, -0.21728516, 1.7646484, -0.36645508, 0.56396484, -1.109375, -0.27075195, 0.64160156, -0.9838867, 0.9951172, 2.4140625, 1.9257812, -0.37036133, 0.14135742, -2.6914062, 0.78125, -0.81103516, -4.5625, -0.53466797, 1.3720703, -1.3222656, 0.7548828, -0.0904541, -2.8535156, -1.1894531, 3.2011719, -0.9873047, 0.42016602, 1.1191406, -1.9521484, 0.6743164, -0.53466797, -1.8085938, -0.3630371, -2.15625, -0.4428711, -0.50390625, -0.26416016, -1.4160156, 0.39160156, 2.1972656, -0.7470703, -1.6396484, 1.046875, 0.20373535, 0.4560547, -0.15881348, -0.35498047, -2.2089844, -0.65185547, 1.8857422, 1.5976562, 2.9160156, 1.2353516, 0.65185547, -2.5390625, 0.20410156, -2.2890625, 2.1445312, -3.8125, -0.5488281, 1.5009766, 0.49243164, -1.4453125, -1.5771484, 0.41796875, -0.37475586, 1.8144531, 1.4404297, -0.11279297, 0.020446777, -0.20861816, -1.6787109, -5.5976562, -1.7939453, 0.28930664, -0.85302734, -0.6435547, 0.37768555, -0.99121094, 1.1601562, 1.5078125, -0.8100586, -0.0836792, -0.78271484, -0.5605469, -1.03125, -0.76904297, 0.7885742, -0.4946289, -0.33984375, 1.5166016, 0.22595215, 1.4160156, -3.3203125, -0.6152344, 1.9970703, -1.4169922, 0.08294678, 2.1835938, 0.24291992, 0.03793335, 1.2910156, 0.7348633, -2.21875, 1.4833984, -1.9521484, 1.3837891, 1.1318359, -1.0214844, -1.6015625, -1.8710938, -0.6191406, 0.2368164, -1.9404297, -0.13647461, 0.14587402, 0.3881836, -0.8300781, 0.80078125, -0.51171875, -1.7382812, 0.92626953, 0.093322754, 0.9404297, 0.47460938, -1.8916016, -1.6582031, -1.7714844, -2.4101562, 1.1191406, -2.3066406, 0.90966797, -0.6142578, 0.99658203, 0.036956787, 1.2138672, 0.031951904, 1.0957031, -0.52246094, -0.80810547, 0.85009766, 0.36791992, 2.4101562, 1.7802734, -2.4003906, -1.9228516, -1.9570312, 1.5361328, 0.26586914, -0.16064453, 0.99853516, -1.6201172, -1.1787109, 0.43286133, 0.034942627, 2.6914062, 1.9267578, -0.92089844, -1.5556641, 0.46606445, 1.3701172, 0.5722656, 1.5898438, 1.0478516, 1.1572266, 0.17956543, 3.4570312, -1.0097656, -2.1230469, 1.5039062, -1.9589844, 1.7480469, 0.68847656, -2.6601562, -0.3227539, -2.2929688, -1.6025391, -0.6040039, -1.9814453, -2.8808594, 3.4550781, 1.2773438, -0.92871094, -0.27807617, 2.5253906, -0.87060547, 3.3847656, 0.8388672, -0.0927124, 1.8808594, 0.4411621, 0.1105957, -0.65478516, 1.5458984, -3.0625, 1.1689453, 0.3774414, -0.2783203, -0.23071289, 2.34375, 3.5292969, 2.515625, -1.7089844, 0.9057617, 3.7285156, 1.15625, 2.0058594, -0.19055176, 0.10882568, 1.3164062, -0.6220703, 2.3613281, 3.1035156, 2.3691406, 0.29736328, -1.3720703, 1.8261719, -0.77978516, -0.7241211, 0.12261963, 0.671875, 1.7441406, -2.5703125, 0.7607422, 0.2536621, 0.08911133, -2.1445312, -0.94091797, -2.3828125, -0.828125, 1.1875, 1.9052734, 3.2949219, -0.40014648, 0.95410156, -1.7060547, -0.27124023, 1.4511719, -2.2011719, 0.03756714, 0.15270996, -1.1074219, -0.1895752, 0.765625, 1.5722656, 1.1201172, 1.0517578, 1.1357422, 3.2714844, 1.2841797, 1.5810547, -1.7939453, 0.9897461, -1.1933594, 3.2226562, -0.68847656, -1.5136719, 0.6040039, -0.45336914, -3.9511719, -2.9921875, 2.7460938, 0.81640625, 0.60546875, 0.93408203, -0.7060547, 2.4199219, -0.23828125, 2.2890625, -1.6787109, 2.6582031, -1.2070312, -0.5991211, 0.42993164, 0.4255371, 0.6035156, 0.99121094, 1.1513672, -1.5654297, 2.1035156, -0.5205078, 3.5429688, 0.0104904175, 0.49291992, 2.0585938, 0.25219727, -1.2138672, 1.4013672, 1.1464844, -0.06311035, -0.3022461, 2.9179688, 1.2607422, -0.46069336, 1.2666016, 0.59228516, 2.0878906, -1.4335938, 0.22546387, -0.2915039, -1.7626953, -0.095458984, -1.140625, 0.6220703, -0.5107422, -0.8964844, 0.22888184, 1.5029297, -1.0419922, -0.10223389, 2.2675781, -0.6323242, 3.1953125, 2.0253906, 0.36791992, 0.00020194054, -0.0418396, 1.4541016, 0.17578125, -0.7290039, 0.8564453, 0.5175781, 1.0888672, -2.1894531, 0.50927734, -1.0859375, -0.41723633, -1.0546875, 0.6347656, -1.2548828, 1.5947266, 1.84375, 0.079711914, -0.5317383, 2.0898438, -0.08703613, 1.6679688, -1.7441406, 0.11602783, 0.2878418, 1.3642578, -1.6894531, 2.75, 3.0410156, 2.0859375, 0.1439209, -3.4042969, -1.5761719, 0.0859375, 0.44604492, 1.8359375, -1.1269531, -1.3876953, -1.2490234, -1.8505859, 2.0097656, 0.3010254, 1.1835938, 0.6635742, -0.6269531, 0.035705566, 2.6210938, 2.3066406, -0.22167969, -0.41845703, -0.56640625, 1.7597656, 1.2285156, 0.54589844, 0.39868164, 1.8779297, 0.11730957, -3.3261719, 1.6640625, -1.8369141, 2.8554688, 0.78466797, 0.8232422, 0.94628906, 1.7558594, -0.072265625, -0.9428711, -1.8046875]}, "B004BHEK5O": {"id": "B004BHEK5O", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill\nDescription: \nFeatures: 4 Stainless steel burners\n48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n4 Stainless steel burners\n", "embedding": [-2.046875, 1.1435547, 2.6972656, -0.7441406, -1.9199219, 0.2746582, -0.14880371, -1.6953125, 0.58154297, 2.1738281, 3.2304688, -0.32104492, -0.6166992, -3.1992188, 0.21801758, -0.0769043, 3.2460938, 0.022521973, 0.5722656, 0.9277344, 0.13769531, 0.60058594, 2.6992188, -2.4960938, 1.5800781, 0.8017578, 4.1679688, -5.265625, -1.7265625, -0.86572266, 0.8823242, 1.2441406, 1.8300781, 1.6552734, -3.2929688, -1.4462891, -3.0625, -0.24707031, -2.8496094, 0.9550781, 0.18041992, -2.6699219, 1.1015625, -0.7451172, -2.3164062, 0.21765137, 1.3339844, -0.9746094, -1.9980469, -0.67285156, 3.1074219, 0.8857422, -0.7084961, 2.5507812, -0.23461914, 2.4589844, 0.49853516, -1.8964844, 1.0087891, 0.25878906, 2.7304688, -0.34960938, -2.3828125, -1.4287109, -1.3789062, -0.26171875, -1.3583984, -0.22241211, 1.9892578, 1.2304688, 3.0605469, -3.4492188, -1.7939453, 0.4675293, 1.6835938, -1.5859375, -2.328125, 2.1777344, 0.24853516, -1.0957031, -2.1875, 2.1582031, 0.7866211, -1.7587891, -1.0029297, 0.70458984, 0.078186035, -3.3574219, 1.4052734, 0.9580078, -0.9272461, 1.7783203, -1.9794922, -3.7734375, 2.0878906, -1.0253906, 1.96875, 1.1181641, -0.3815918, -0.15625, -1.4130859, 2.421875, -0.40844727, -1.1992188, -2.6699219, -1.9033203, 1.6552734, -0.63964844, -3.6132812, -1.6904297, -1.6904297, 1.0566406, 0.44921875, 1.5410156, 1.1191406, 0.95996094, 0.13647461, 2.7519531, 1.1904297, 1.0351562, 2.3066406, -1.5761719, 0.5341797, -1.5732422, -1.3867188, 1.1132812, -1.4208984, 2.4394531, 3.6035156, -1.3837891, -0.70947266, -0.40356445, 4.7578125, 0.9301758, 0.87841797, -0.5366211, -2.9433594, -0.6015625, -2.5898438, -0.765625, -1.6904297, 1.8115234, 0.72558594, -0.89941406, -3.75, -0.6308594, 0.89208984, -0.6503906, -0.3527832, -1.6835938, -0.9375, -1.7695312, -0.48535156, -1.5898438, 1.1191406, -0.15637207, -0.6147461, 1.1513672, 3.6425781, 2.8320312, 1.7919922, -0.47387695, -1.6015625, -0.23168945, 1.4443359, -0.83935547, 1.1972656, 1.0322266, 0.4987793, 1.5898438, -0.2043457, -0.19189453, -0.15527344, 0.84228516, 1.3564453, -0.9370117, 0.09100342, 2.9921875, -0.31640625, 0.082092285, 0.49243164, -3.1972656, 0.30078125, -0.070617676, -0.0473938, -0.98291016, 1.8134766, -0.5239258, 2.4023438, -0.97265625, 0.36987305, -0.40893555, 1.390625, -0.9248047, 1.1230469, -0.27026367, -2.0996094, -2.5332031, 1.0693359, -0.5444336, 0.18225098, -0.7602539, 0.7944336, -0.70996094, -0.061553955, -2.640625, -0.9326172, -1.6650391, 0.47851562, 1.8398438, 1.484375, -1.6044922, 0.64941406, -1.9912109, -0.36743164, -1.4453125, 1.8486328, 0.8330078, 0.80566406, 2.4335938, -1.5869141, -0.3466797, 1.0957031, 0.9951172, 0.4423828, 0.32470703, 0.48217773, 0.859375, -2.5136719, -0.8022461, 4.203125, -0.09503174, 0.25756836, 0.64941406, 0.14990234, 2.046875, 1.5058594, -0.5644531, 0.32763672, -0.09088135, 0.8828125, 0.7841797, -1.7763672, -1.6542969, -0.14660645, -1.7617188, -1.6035156, 0.85253906, 1.6484375, 0.54296875, -0.3383789, 0.16003418, 1.1015625, 1.921875, -0.3671875, 1.2460938, -2.5234375, 0.40161133, 0.035308838, -3.7421875, 2.8261719, -0.45239258, 0.018188477, -0.16296387, 0.9916992, -1.6787109, 2.3867188, 1.6640625, -2.546875, -1.4394531, 0.35595703, 0.8330078, 1.0039062, -2.2070312, 1.9658203, 1.3505859, -1.8740234, 3.6972656, 0.9140625, 0.13391113, 0.36108398, -1.1142578, 2.3867188, -3.0683594, -0.24230957, 0.15930176, 2.2070312, -0.76953125, -2.2382812, -0.8154297, 4.1328125, -0.13916016, -2.2910156, 1.640625, -2.3164062, 0.5058594, 1.7412109, 0.4296875, -0.34985352, 0.25097656, 2.6601562, -0.72558594, 0.15576172, 2.078125, -0.71777344, -2.0253906, 1.1083984, -2.3203125, 0.30371094, 1.5253906, -1.6533203, -1.1748047, -2.5996094, 1.671875, -2.0429688, -0.88671875, 3.2597656, -3.6699219, 0.6430664, -0.4645996, 2.6015625, -0.64453125, -1.8535156, 0.79052734, -0.91552734, 0.5605469, -0.7392578, 0.48242188, 0.18811035, -0.60058594, -0.40844727, -0.72753906, -1.421875, -2.3613281, -1.2177734, -1.2080078, -2.9003906, -2.7519531, 1.4658203, -1.0791016, 0.47509766, 1.4951172, -4, -1.6699219, 0.4104004, -3.2089844, 0.13879395, -0.61572266, -0.39038086, -0.83203125, 0.56933594, 1.4453125, -1.0146484, -4.2617188, 0.6455078, 0.15014648, 0.053863525, -1.8232422, -0.5004883, 0.34985352, -0.2685547, -0.095947266, -0.9453125, 1.7695312, 1.7109375, -1.3417969, 0.54052734, -2.5195312, 0.28295898, -3.3085938, 1.0205078, -0.45092773, 1.7744141, -3.15625, -3.1132812, -0.31396484, 0.08843994, 4.3242188, 2.1328125, 2.1484375, -0.1270752, 1.4560547, 0.5229492, -0.23962402, -1.8232422, 1.4365234, 2.0273438, -0.91503906, 0.016296387, -2.125, 0.30786133, -2.8378906, 0.29785156, 0.052978516, -0.15270996, -0.7416992, -1.0458984, -0.98583984, -0.79589844, -0.69921875, 0.21020508, -1.0058594, -1.21875, -2.9101562, -0.83984375, -0.6953125, 0.7207031, 0.42260742, 1.5302734, -0.8105469, 1.4287109, 1.9960938, -1.2265625, 1.3544922, -1.9716797, -3.203125, 3.9121094, -0.39233398, -1.2802734, 2.1621094, -3.3066406, -2.7929688, -1.0878906, -0.51416016, 2.4453125, 1.1513672, 1.890625, 1.4033203, 1.5361328, -1.0664062, -1.4033203, -0.6928711, -2.0039062, 0.33422852, 3.6230469, -3.140625, -1.8759766, 0.3852539, 1.6503906, -2.9199219, 0.2626953, 2.9296875, 2.1367188, 1.734375, 2.5332031, -0.13293457, 0.96728516, -1.4863281, 1.2148438, 2.3125, -0.009361267, 0.8208008, -1.1103516, 2.15625, -0.45214844, 1.6484375, 2.6386719, 0.87841797, 2.6992188, 2.2988281, 2.5605469, -0.67285156, -0.78466797, 0.19799805, 1.625, 0.36865234, 1.5800781, -1.6181641, -1.3330078, -2.9003906, -0.32617188, -0.52685547, 0.2878418, -1.4316406, 1.7363281, -0.70947266, 0.33544922, 1.0136719, 0.33911133, 1.2421875, -1.3642578, 0.48608398, -0.62597656, -1.0478516, 1.8017578, -1.1171875, 0.6118164, -1.6386719, 0.3996582, -0.54541016, -2.1113281, 1.2070312, 2.46875, -1.5957031, -1.4716797, -0.45825195, -1.4736328, 0.4501953, 1.3730469, 1.0029297, -0.62060547, 0.40649414, -2.9667969, 1.6259766, 1.4101562, -0.26611328, -0.39501953, 0.17797852, 1.5605469, 0.7504883, 1.125, 2.4277344, 0.15332031, -1.7646484, -0.4716797, -4.6289062, -1.3144531, 2.1738281, -2.9023438, -0.72998047, 2.2714844, 0.7290039, 0.96533203, -0.24633789, 1.5751953, -1.1943359, 0.44360352, 2.0273438, -2.6699219, -0.6821289, -4.1875, -3.3339844, 0.19885254, -2.5390625, 0.33422852, 0.7348633, 0.64941406, -0.11260986, 1.7285156, 0.036621094, -2.1074219, -1.0849609, -1.2275391, 0.63720703, -1.0302734, 1.4365234, 0.5444336, 0.6201172, -1.9169922, -2.0175781, 0.8598633, 0.7084961, 1.7236328, 0.40234375, -4.2265625, 0.3251953, -1.9697266, -0.21557617, -0.9824219, -0.72314453, 2.1777344, -0.3046875, -0.1262207, -2.1015625, 1.734375, 0.42919922, -1.546875, 1.3242188, 1.9384766, -1.2460938, -3.1191406, -0.5678711, 2.3359375, 1.9443359, -0.57177734, -1.9882812, 0.15490723, 0.4921875, -0.07366943, 0.4140625, 0.7319336, 0.9892578, -1.6162109, 0.81152344, 1.7304688, 1.5605469, 0.7524414, 1.1884766, -3.296875, 0.63183594, 0.03451538, -1.6347656, -2.2675781, -0.7192383, 0.8076172, -2.1621094, 0.84814453, -2.0585938, 0.35668945, 0.32763672, -0.48876953, -2.9863281, 3.7714844, 3.90625, 1.9794922, 2.2167969, -0.65722656, 0.14257812, -1.6601562, 0.8017578, -0.53466797, 2.1738281, 0.19897461, -1.2080078, 2.5390625, 1.1728516, -1.4980469, -0.18103027, 0.7055664, -1.0380859, -0.7919922, -2.5996094, 0.6245117, -1.1777344, 0.6430664, 0.8696289, -0.3527832, 2.9296875, 0.41137695, -0.5571289, -0.05697632, 0.8442383, -2.3769531, -0.012077332, -0.87060547, -0.16101074, 0.34716797, 0.93408203, 1.4648438, -0.83251953, -0.3828125, -1.0058594, 2.6328125, -0.27490234, 0.32910156, -0.08557129, 1.8066406, -0.9970703, -1.0390625, 1.3251953, 2.1347656, 1.7705078, 3.5175781, 2.0371094, -2.4121094, 1.5751953, 1.6289062, -2.5117188, 2.1972656, 0.8828125, -1.2607422, 2.6367188, 0.5253906, -3.9238281, 0.5966797, 2.6503906, -0.9926758, 1.2939453, -1.7480469, -1.0244141, 2.2148438, -1.7294922, 0.044891357, 0.11907959, 0.37109375, 1.3964844, 0.9116211, -0.1484375, -2.0175781, 2.2363281, 1.9101562, -2.5, -0.8676758, 1.5380859, -1.3193359, -0.3203125, -1.4199219, -0.64746094, -1.8886719, -0.46533203, 3.7460938, 1.2167969, 0.6245117, 1.0537109, 1.8369141, -0.8227539, 0.16271973, -2.4257812, 2.9804688, -2.2128906, 0.7055664, 0.77490234, -4.1132812, -1.4501953, -1.5009766, -0.71484375, -1.4462891, 1.3818359, 1.7382812, 0.38256836, 1.296875, 1.2880859, -1.9355469, -4.5234375, -0.33642578, -0.73291016, 0.121276855, 0.9243164, 1.8515625, -1.0595703, 0.96191406, 0.9868164, -0.7084961, -1.4814453, 0.8696289, -0.12042236, 0.5595703, 0.11633301, -0.44873047, -0.83496094, 0.78564453, 0.42260742, 2.2050781, 0.53808594, -2.4453125, 0.06628418, 0.14501953, -1.1699219, -0.03186035, 2.1816406, 2.1972656, -0.7392578, 0.41918945, 1.0244141, -2.5195312, 3.0371094, -1.4589844, -1.3408203, 0.45117188, -1.6445312, 1.5205078, 0.42504883, -0.7265625, 0.6743164, -1.4667969, 1.3837891, 2.2285156, -0.45898438, -1.6767578, -0.5415039, 0.77246094, -1.7939453, 1.4082031, -1.09375, 0.95214844, 2.6660156, -1.2451172, -0.97021484, -1.3632812, -2.7382812, 1.6894531, -2.8632812, -1.5703125, -2.5566406, 0.5258789, 1.4384766, 1.1611328, -0.43652344, 1.2519531, -0.72265625, -0.98339844, 0.85498047, -0.6308594, 5.09375, 3.2382812, -1.3789062, 0.09625244, -1.2705078, -0.63720703, 3.1484375, 0.3190918, -2.3789062, 0.51953125, -0.0463562, 1.8583984, 0.121032715, 0.71972656, 1.03125, 0.9350586, -0.51708984, 1.6435547, 3.7207031, -0.31640625, 2.3515625, 0.7426758, 1.3212891, -0.61865234, 3.9003906, 0.7680664, -2.0722656, 2.6269531, -1.6015625, 0.9794922, -0.18164062, -1.3896484, -0.41088867, -0.43774414, -1.5136719, -2.5097656, -1.9199219, -1.3544922, 1.3349609, 2.2089844, -2.9101562, -1.3017578, 1.0214844, -0.5283203, 1.40625, 2.4101562, 1.6894531, -1.3857422, 0.8720703, 1.0107422, 0.7084961, 1.5097656, -4.0078125, 2.65625, 0.7573242, -0.73046875, -0.9370117, 1.5732422, 1.2392578, 2.234375, -0.014678955, 0.6484375, 1.6201172, 1.8310547, 2.4335938, 0.54052734, 3.6035156, 1.0556641, -1.7919922, 0.14587402, 0.78222656, 0.6567383, 0.33032227, -0.8442383, 1.234375, -1.7314453, 0.12695312, 0.47265625, -0.2697754, 0.59716797, -2.2148438, -0.22546387, 1.1357422, 1.5683594, -1.4648438, -1.7753906, -0.32495117, 0.119018555, -0.37158203, -0.26171875, 1.8837891, 0.5498047, 2.6875, -1.1484375, -0.5722656, 0.90283203, -4.5820312, 1.1201172, 0.11437988, -1.6416016, -1.4980469, -1.6767578, 0.671875, 0.23999023, -1.5957031, -0.4321289, 5.0546875, -0.14331055, 0.12121582, -2.4570312, -0.5180664, 0.2368164, 3.6269531, 0.20019531, -0.20617676, 0.2175293, 0.04751587, -4.4375, -3.5839844, 2.9902344, 3.0507812, 1.6347656, 0.9941406, -1.1982422, 3.0117188, -0.7421875, 0.6621094, -1.2900391, 0.39404297, -0.11383057, -1.6015625, -0.6640625, 1.0683594, -0.76708984, 0.97558594, -0.35351562, 0.88183594, 0.20117188, 0.29492188, 1.7363281, 1.7568359, 1.1318359, 1.9140625, 0.91552734, -1.0859375, 2.9628906, -0.6816406, -1.0908203, -1.7207031, 2.3007812, 1.4560547, -0.116882324, 1.1113281, -1.140625, 0.3251953, -1.9443359, 0.45629883, 0.39892578, -2.4238281, -0.859375, 0.8515625, 0.7158203, -1.8339844, 0.04019165, 2.4316406, 2.03125, 0.30859375, 2.3339844, 2.5996094, -0.73828125, 1.4208984, -0.35083008, 0.25195312, -0.34838867, 1.6669922, 1.2421875, 0.56396484, -0.91796875, 0.50439453, 1.1591797, 0.70751953, -0.6381836, 0.59716797, -2.0878906, -1.6386719, -1.3701172, 0.36376953, 0.080566406, -0.49414062, 3.46875, -0.96484375, -0.77197266, 1.0185547, -0.15710449, -0.5131836, -2.0527344, -1.7138672, -1.0244141, 0.35864258, -0.890625, 0.92822266, 3.0410156, -0.7680664, -0.06427002, -1.1308594, -3.3007812, -0.81591797, -2.6386719, 1.8046875, -1.6494141, -2.0117188, 0.14367676, 0.9194336, 1.2402344, 0.101989746, -0.8017578, -0.43603516, -1.5068359, 0.33642578, -1.0537109, 0.14819336, -1.1064453, -0.38012695, 0.7480469, 3.890625, -0.17944336, 0.33984375, 0.73095703, 3.6933594, 1.0800781, -1.5908203, -1.1308594, 0.97216797, -0.22814941, -1.1542969, 0.42114258, 2.8378906, -0.18225098, -1.7265625, -0.6850586, -2.5683594]}, "B009971BM6": {"id": "B009971BM6", "original": "Brand: Blackstone\nName: Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch\nDescription: \nFeatures: RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nTRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels.\nSATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!\n", "embedding": [-0.74853516, 1.5820312, -0.08148193, -0.0149383545, 1.0068359, 0.26879883, 1.6386719, -0.55029297, -2.6210938, 1.2001953, -0.46435547, -0.51416016, 0.5488281, -0.83496094, -0.73291016, 0.04498291, -0.23510742, -0.11444092, -0.6347656, 0.37963867, 3.2597656, 0.90527344, 1.2949219, -0.9091797, 1.3466797, 0.23620605, 3.6054688, -4.15625, 0.94628906, -0.86816406, 1.8955078, -0.82373047, 1.1787109, 1.3085938, -3.8808594, -1.3046875, -0.5214844, 2.4355469, -1.140625, 0.6904297, 0.10144043, 0.1965332, 3.3378906, 0.42285156, -2.734375, -0.5595703, 1.1933594, 0.17797852, -2.1699219, -1.2792969, 0.1895752, 2.8789062, 1.3212891, 0.16027832, -1.53125, 1.2714844, 0.83496094, -1.7304688, 1.5380859, -0.828125, 2.0332031, 0.49829102, -2.1171875, 1.3779297, -1.7255859, -1.1425781, 2.0742188, -0.6948242, -0.19189453, -2.4628906, -0.55371094, -0.10461426, -1.3427734, -0.32910156, 1.078125, -2.1601562, -1.2412109, 1.6289062, 0.097351074, -0.81103516, -1.7617188, 2.4570312, 0.7583008, -2.6386719, -0.012130737, 0.6347656, -0.27807617, 0.07623291, 1.0673828, -0.5488281, -1.1484375, 2.0253906, -2.3183594, -4.1601562, 1.078125, -1.5527344, 0.69140625, -0.15539551, -1.6884766, 2.5019531, -0.9838867, -0.57666016, -1.6220703, 1.5, -3.4199219, 0.13354492, 4.8828125, 0.92871094, -2.046875, 0.5751953, -2.2832031, -0.40893555, 2.1210938, 0.47631836, 1.1337891, 0.81591797, 0.24536133, 1.1621094, 1.3681641, 1.0996094, 3.8066406, -0.46484375, 0.45361328, -0.47143555, 0.12963867, 0.20019531, -0.28564453, 0.46606445, 3.5839844, -1.9658203, 0.03540039, -2.2695312, 3.0058594, -0.13354492, -3.4003906, -1.5693359, 0.069885254, -0.24401855, -2.7070312, 1.5859375, -0.26098633, 1.7519531, 2.0292969, -1.5478516, -4.3476562, -0.052368164, 0.703125, 2.0859375, -0.6772461, -2, -0.48999023, -1.8261719, -0.021774292, -1.359375, 2.5234375, -2.1523438, -0.36645508, -1.9287109, 3.6210938, -0.74365234, 0.54296875, -2.2714844, -0.6064453, 1.0810547, 2.1933594, 0.23779297, 0.1821289, 2.265625, -0.80615234, 2.25, 0.08868408, -2.4296875, -0.8852539, 0.3076172, 2.0644531, -1.4033203, -1.1943359, 1.5996094, -0.43701172, -1.2548828, -1.2744141, -2.6855469, 1.1123047, 0.50390625, -0.59228516, -2.0742188, 1.4833984, 0.9194336, 0.99560547, -0.3955078, -0.984375, -0.69921875, -0.25805664, 0.34814453, -0.50390625, -1.5224609, 0.87402344, 0.09375, 0.84228516, 0.38500977, -0.10675049, -1.0810547, 0.6074219, 1.0634766, -2.6660156, -1.1230469, 1.6201172, -1.2626953, 2.671875, 0.34106445, 0.59716797, -1.2207031, 0.6538086, 0.3515625, -0.44506836, -1.5664062, 1.0605469, -0.41845703, 1.21875, 1.2255859, 1.2470703, -2.6503906, -2.1152344, 1.1103516, 0.5136719, 2.84375, 1.09375, 0.8847656, -1.9804688, -0.89941406, 2.140625, 1.4013672, -1.1220703, 1.0722656, -0.7470703, 3.125, 0.5239258, -0.9433594, -0.28710938, 0.02281189, 0.3034668, -1.65625, -0.03527832, -0.5136719, -1.2197266, 1.0957031, -1.5556641, 1.8867188, -0.056030273, -0.6142578, -2.5019531, 0.60498047, 2.1875, 1.828125, -0.8359375, -0.20080566, -0.60839844, -0.45825195, -2.3808594, -2.5957031, 0.17480469, 1.6865234, -0.89453125, 1.3974609, 2.0410156, -0.8774414, 0.47021484, 2.46875, -1.9472656, 0.41992188, 1.9599609, 0.16784668, 2.0371094, -0.43774414, 0.6694336, 0.7548828, -1.4101562, 2.3476562, 0.11816406, 0.39916992, -1.2285156, -2.0097656, 0.85546875, -1.8925781, 0.08874512, 1.2197266, -1.6884766, 1.5605469, 0.76123047, 0.4086914, 5.0703125, -1.4677734, -2.1308594, 3.6972656, -1.2177734, 0.6538086, 1.0351562, -1.5039062, -0.6069336, 1.2792969, 1.5576172, 1.5712891, 0.6635742, 0.71728516, -2.6289062, -0.20324707, 0.44970703, -2.5996094, -1.2714844, 2.0585938, 0.65185547, -0.36767578, -0.6513672, 0.8959961, -0.66064453, -0.34448242, -0.99853516, -1.6259766, 1.9570312, 2.0859375, 2.4609375, 1.6582031, -0.6035156, -2.0839844, -0.6977539, -0.034057617, -0.09277344, 1.8154297, 0.58935547, -1.5859375, -0.20825195, 1.1865234, -0.72802734, -1.1455078, -3.8847656, -1.0927734, 0.7817383, -1.96875, 0.03201294, -1.953125, -1.6699219, 2.328125, -1.2011719, 0.9135742, -1.0742188, -2.2988281, -0.9042969, -0.14453125, -1.0322266, -0.9428711, 0.9121094, -0.6010742, -1.578125, -2.9238281, -0.76123047, -0.5991211, 1.3632812, -1.6894531, -1.3701172, 1.1582031, -1.6660156, 0.69189453, -0.5419922, 0.13745117, 0.010299683, -0.20043945, -0.32055664, -2.34375, 1.5195312, -1.109375, -1.1738281, -1.9208984, -0.27270508, -2.1835938, -0.83447266, -0.01991272, -1.1425781, 3, -1.8652344, 1.5429688, -0.75634766, 0.69140625, -0.16711426, -0.6430664, -2.671875, -0.17675781, -0.109802246, -1.53125, -2.4238281, -3.1425781, -0.3791504, -0.67626953, -0.57958984, -1.9394531, 1.4013672, -1.0957031, 1.7304688, -0.62402344, 0.60498047, 0.55810547, 0.40966797, 0.22375488, -2.2441406, -2.421875, -0.9296875, 0.546875, -1.9472656, 1.0273438, 1.5527344, -0.9169922, -1.0429688, 1.6279297, -0.91503906, -0.8144531, -0.09411621, -2.9707031, 2.4550781, -0.010299683, -3.8945312, 2.9550781, -0.63720703, -0.5102539, -2.4472656, 0.71875, 3.4609375, 0.82714844, 0.8901367, 0.45043945, -1.1083984, 1.7578125, 1.0166016, -0.44506836, -0.7573242, 0.31469727, 1.4726562, -0.37426758, -2.0742188, 0.33081055, 1.9785156, -2.4335938, -0.6635742, 1.2744141, 1.2714844, 1.2900391, 1.8486328, 2.0917969, -0.62841797, -1.8925781, -1.4648438, 0.6640625, -0.13513184, -0.44433594, -0.6464844, 0.57421875, -0.57910156, 1.5400391, 0.3696289, 0.4074707, 2.1230469, 1.4755859, 2.5820312, -2.1113281, 0.0982666, -0.65478516, 1.1943359, 2.0292969, 2.2167969, -0.2565918, -0.00020682812, 0.7001953, 0.23278809, 3.1582031, -1.3886719, 0.32080078, 2.6699219, -1.4707031, -0.13195801, -0.38842773, -0.18640137, -0.6386719, -0.2578125, -0.10803223, -0.7324219, -1.5791016, 0.5131836, -0.7495117, -1.7714844, -2.7753906, 1.6796875, -2.1308594, -2.5117188, 1.1113281, 2.6523438, -0.13415527, -1.0322266, -1.0732422, -0.1060791, -0.4260254, 2.4042969, -0.14477539, -1.6640625, 0.5214844, -1.578125, 1.0791016, -0.5366211, -0.34399414, 0.27539062, -0.55078125, 0.06958008, -1.5791016, -0.22436523, -0.3798828, -0.45581055, -2.0078125, -0.77001953, -2.6152344, -0.40039062, -0.6230469, -0.9902344, -1.3974609, 2.0625, 2.0546875, 0.3984375, -0.91845703, 3.0859375, -0.1809082, -1.4033203, 1.640625, -4.5195312, -1.0087891, -1.9755859, -3.1503906, 1.1533203, -0.54003906, 0.3984375, 1.3886719, 0.88183594, 0.33544922, 2.0742188, 0.2130127, -3.8496094, 1.0087891, -1.078125, -0.121276855, -2.4003906, -0.7314453, 0.039794922, -0.69140625, -1.1298828, -0.47485352, 1.34375, -0.054016113, 0.7817383, 0.84472656, -2.3691406, -0.21252441, -0.099121094, -1.375, -0.66259766, 0.89501953, -0.118774414, -1.2207031, 0.24365234, 0.11987305, 0.37646484, -0.33496094, 1.34375, 0.4033203, -0.23425293, -0.5986328, -1.2978516, -0.75927734, 0.055511475, 1.4970703, 0.2614746, -0.28271484, -0.65527344, 1.2402344, 2.0996094, -1.2070312, -0.32763672, 1.1201172, -1.671875, -1.1953125, 0.9277344, 0.9794922, 2.4316406, 1.1533203, -1.1298828, -0.42749023, 0.61035156, -1.5449219, -2.6152344, 0.5932617, 0.3852539, -0.7421875, -0.13574219, -2.5175781, 0.86816406, -1.0136719, 0.37402344, -0.05807495, 3.6621094, 1.4082031, 2.0429688, 3.640625, -0.77490234, -1.1210938, 2.3828125, -1.2246094, -2.1425781, 2.7304688, 0.59277344, -1.2646484, 2.6035156, 0.16638184, -1.4316406, -0.123168945, 2.9765625, -0.64746094, 0.06982422, -1.5478516, 0.73535156, -2.7265625, 0.67285156, 0.37719727, -0.12731934, 0.31152344, 0.17797852, -0.83154297, 2.1191406, 1.8779297, -0.8574219, 0.3671875, 0.5957031, -0.19604492, 1.171875, 0.3527832, 1.4111328, -1.7353516, 0.59375, 0.51220703, 2.2207031, 0.20288086, 0.7895508, 0.059753418, 0.4333496, -1.8769531, -0.25463867, 1.40625, 3.5332031, 0.21862793, 1.4160156, 0.26245117, -2.2011719, 2.1230469, -0.1315918, -3.0742188, -1.8994141, -0.013710022, -0.91796875, 0.70410156, -0.13183594, -2.8886719, 0.5942383, 2.4199219, -1.8496094, 1.265625, 0.92578125, 0.054260254, 0.98095703, -2.1269531, 0.3088379, -0.3154297, 0.29907227, -0.18737793, 0.4584961, 0.11730957, -0.4506836, 1.1640625, 2.7929688, 0.7685547, 0.34301758, 1.3505859, -1.5859375, 2.140625, -0.6118164, -0.5751953, -2.3007812, 0.66748047, 1.9189453, 0.83496094, 0.89990234, 0.31860352, 0.076293945, -1.6582031, -0.5571289, -1.7929688, 2.4082031, 0.06011963, -1.6015625, 0.8408203, -1.3095703, -1.2304688, -1.671875, 1.8310547, 0.38891602, 1.7001953, 1.3662109, -0.33544922, 0.72265625, 1.0322266, -0.98876953, -4.7539062, -0.18310547, -0.5527344, -0.022369385, -0.20446777, -0.17480469, 0.35888672, -0.24414062, 1.0751953, -1.2207031, -1.296875, 0.50683594, -0.12365723, -0.50146484, -1.5556641, -0.5073242, 0.38183594, 0.6225586, 1.8457031, 0.16320801, 0.8378906, -1.5634766, 0.24609375, 1.7109375, -1.2724609, 0.07122803, 1.2431641, 0.5654297, -0.6328125, 2.3730469, -0.031158447, -1.875, 2.6640625, -3.4667969, -0.36767578, -0.30786133, -1.2900391, -1.4560547, -1.2578125, -0.56640625, 1.7431641, -1.1650391, -0.8618164, 0.38989258, -1.6757812, -0.6665039, 2.2929688, -1.9091797, -1.7861328, 1.4082031, 1.0009766, 1.0449219, -0.14929199, -0.56103516, 1.1845703, -2.2421875, -1.7792969, 0.9326172, -1.2636719, 0.4008789, -2.3945312, 0.9057617, 1.8925781, 0.32177734, -0.7338867, 1.7949219, -0.52441406, -1.4912109, 0.22521973, -0.5703125, 2.2265625, 0.57666016, -0.013420105, -1.2226562, -1.9501953, -0.3203125, 0.056610107, 1.0585938, -1.1337891, -1.1992188, -0.17822266, 0.9941406, -0.81591797, 1.9189453, 3.1386719, 0.91308594, -0.5361328, 0.04940796, 1.7236328, -0.27929688, 3.4980469, 2.3652344, 1.5429688, -2.0859375, 4.1484375, -0.67089844, -3.390625, 2.2636719, -2.2089844, 2.3925781, 0.42456055, -0.6645508, -0.25512695, -1.1015625, -0.44482422, -1.34375, -1.8457031, -2.8125, 2.6835938, 0.77246094, -1.9599609, 0.34545898, 1.4101562, 0.16894531, 2.2070312, 2.5136719, 0.9091797, -0.7451172, 0.032348633, -1.2324219, -0.8100586, 0.23071289, -0.69970703, 0.08258057, 1.2070312, -0.32641602, -3.1132812, 0.48291016, 0.82910156, 3.671875, -0.49975586, 0.7861328, 2.6210938, 0.91064453, 2.8710938, 0.17382812, -0.14855957, 0.95410156, 1.9570312, -1.6035156, 2.2734375, 2.5371094, -1.5273438, -2.1367188, 1.6132812, -0.46923828, -1.4130859, -0.7211914, 0.19665527, 1.5058594, -4.2578125, 2.9355469, -0.068359375, 1.4912109, -1.0761719, -1.9853516, -0.6166992, -1.3916016, 1.2998047, 0.08795166, 1.6289062, -0.38452148, 1.671875, -0.8774414, -0.10223389, 0.93603516, -3.4335938, -0.32055664, 0.6352539, -0.91796875, -0.43798828, 1.6884766, 2.6308594, 0.79052734, 1.9082031, 1.5410156, 2.5175781, -1.6298828, 2.0410156, -0.6479492, -0.78027344, 1.3613281, 2.6386719, 0.13745117, -1.3535156, 1.6416016, -0.4033203, -2.5742188, -2.5742188, 2.4414062, 2.140625, 1.4707031, 1.5625, -1.1503906, 2.1601562, 1.7988281, 2.3945312, -2.9414062, 2.0429688, -1.0722656, -2.4667969, -1.5917969, 0.14099121, 0.7163086, 1.4208984, 0.033447266, -1.0917969, 2.8007812, 0.97753906, 1.7636719, 0.7236328, 0.09436035, 1.1279297, -0.57470703, 0.08178711, 1.59375, -0.22998047, -0.7104492, -1.3671875, 0.92333984, 1.9462891, 0.83496094, 1.1816406, -0.69140625, -0.89160156, -0.017654419, -1.3388672, 1.2255859, -0.06756592, -1.6865234, 1.1669922, -0.08428955, -0.055908203, -2.3457031, 1.8232422, 0.5131836, 0.80029297, -0.9277344, 1.5009766, 0.53271484, 1.7548828, 0.9604492, 0.8383789, 0.059265137, -0.5541992, 0.033050537, 0.30322266, -1.421875, 0.60009766, 1.2998047, -0.25024414, -0.23815918, 0.6855469, -2.1171875, 1.1640625, -0.38989258, 1.3876953, -2.28125, -1.4443359, -0.06665039, -1.1220703, 0.1973877, 2.0292969, -0.050445557, -0.14550781, -0.8774414, -0.22753906, -0.32861328, -1.4433594, -0.7661133, -0.31469727, 3.7617188, 2.0488281, 0.5761719, -2.0136719, -1.921875, -0.6230469, -0.31689453, 2.4179688, -0.03164673, -1.3251953, -0.9716797, 1.6103516, 2.3222656, -2.0429688, 0.7714844, -0.09631348, -0.4230957, 0.5341797, 0.515625, 1.2626953, 0.33154297, -1.1523438, -0.119140625, 2.71875, 2.1855469, 0.8935547, 2.2675781, 1.8964844, -1.2734375, -2.4921875, 0.9667969, -0.050109863, 0.23022461, -0.5449219, 0.052581787, 0.49389648, 1.7822266, 0.47094727, -1.2431641, 0.29858398]}, "B00LILH3V4": {"id": "B00LILH3V4", "original": "Brand: Amazon Basics\nName: Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze\nDescription: \nFeatures: Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios\nMade with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements\nPiezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided.\nSafety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility\nSecure the patio heater when not in use to avoid any potential damage to the patio heater\n", "embedding": [0.007949829, 1.2666016, 1.1416016, 0.23730469, -0.42333984, 0.052734375, 1.1376953, -2.15625, -0.64404297, 2.515625, 1.6445312, 0.22241211, 0.30664062, -4.1445312, 1.7617188, -0.92041016, 0.066589355, 1.0800781, 1.1347656, -0.15063477, 2.8554688, 0.2368164, 0.21411133, -1.1103516, 0.33276367, -0.63134766, 2.4589844, -2.1523438, -0.020568848, -1.3632812, -0.296875, 0.85058594, -0.6772461, 2.4824219, -1.3818359, -2.5507812, 0.8510742, 2.4199219, -4.953125, -0.5654297, -1.5546875, -1.9541016, 0.45922852, 1.0927734, -1.75, 0.8886719, 2.0644531, 1.6474609, 0.85253906, -1.3261719, 0.7236328, 0.40576172, 0.068603516, -1.1259766, -1.6904297, 0.49609375, -0.4663086, -3.5136719, 1.4931641, 0.13342285, 0.034057617, -0.72558594, -1.9912109, 1.7900391, -0.6113281, 2.1914062, 0.15783691, 0.8930664, -1.9101562, 0.30541992, 2.3476562, -0.13427734, -1.6328125, 0.73535156, -0.004421234, -0.95166016, -2.4902344, 2.0585938, 3.3476562, -1.1298828, -0.9033203, -0.70214844, 0.9785156, 0.67871094, -1.5986328, 0.7441406, -1.1953125, -0.7631836, 0.7578125, 0.6699219, -1.0839844, 1.7587891, -1.5605469, -1.7441406, -0.3244629, -0.8808594, 0.31079102, 1.3925781, -0.076660156, 1.7773438, 0.31958008, -0.37036133, -0.093933105, -2.0097656, -1.5664062, -1.8925781, 2.8007812, 0.31591797, -0.8330078, 2.9648438, -2.5917969, 0.26611328, 1.8164062, -1.6806641, -0.9472656, -0.14562988, 1.3564453, 2.046875, 3.7363281, 1.3427734, 3.5722656, -1.3779297, 2.0839844, -2.8417969, 0.23632812, -0.59375, -0.6020508, 1.4306641, 2.6191406, -1.0224609, 1.4824219, -1.3486328, 1.5664062, 0.47973633, -0.6567383, -1.2470703, -0.47607422, -0.9355469, -5.3085938, -1.2373047, -1.515625, 0.83740234, 1.0322266, 1.0341797, -4.1054688, -0.8208008, -0.25878906, 2.1210938, -1.8818359, -0.65478516, 0.3232422, -1.9902344, -0.52685547, -1.9667969, 0.050476074, 1.1757812, 1.5957031, -3.7519531, 3.2773438, 0.29736328, 1.7109375, -0.7348633, -0.83691406, 2.2792969, 0.5463867, -1.5419922, 1.0878906, 1.5898438, -0.42529297, 2.3222656, 0.30859375, -3.4082031, -0.99121094, 0.8222656, 0.30981445, -1.1933594, -0.7290039, 2.0703125, -0.4711914, 0.48657227, -2, -1.2177734, 1.1074219, 2.4609375, -0.11730957, -2.6757812, -2.3183594, -2.9355469, -0.92578125, -0.88134766, 0.2529297, -1.1132812, -0.43603516, -2.2148438, -0.0871582, -3.796875, -0.59521484, -1.6933594, 1.9902344, 0.73095703, -1.3574219, -0.10424805, -1.2617188, -0.8178711, -2.125, -1.9541016, 0.2932129, -1.8759766, -0.12695312, 0.32543945, 1.671875, 0.25170898, 1.8671875, -1.1025391, 2.3476562, -0.8496094, 2.3691406, -1.3125, -0.05947876, 2.3789062, 0.051879883, 0.26000977, -0.21569824, 0.8588867, -1.6123047, 2.5683594, 0.8100586, -0.035186768, -3.078125, -1.609375, 2.8730469, 2.0117188, -0.013153076, 1.1464844, -0.8100586, 3.4882812, 1.5712891, -0.05758667, 1.1708984, -0.8461914, 0.012748718, -1.3378906, -1.5273438, -0.9453125, -0.3955078, 2.5566406, 0.030395508, 0.8979492, 0.39746094, -0.22888184, 0.34814453, -0.9428711, -0.11450195, -1.0371094, 0.53222656, 1.4707031, 1.3125, 2.7207031, -0.8730469, -2.1035156, 1.3984375, 1.6455078, -1.4570312, -0.1619873, -0.08074951, -0.44482422, 4.1796875, 1.2539062, -2.8789062, -0.30932617, -0.80859375, 1.0126953, 1.7890625, 0.12298584, 1.9013672, 1.109375, -0.87841797, 2.9140625, -0.2788086, 1.6923828, 1.9736328, 0.1817627, 2.8359375, -1.5966797, -0.94140625, -0.27001953, 0.37475586, 1.4726562, -1, 2.3085938, 3.3574219, -0.048217773, -2.8066406, 2.1035156, -0.43017578, 2.9472656, 1.2421875, -0.58154297, 0.2866211, -2.0195312, 2.9296875, 0.103759766, -0.49829102, 2.6015625, -2.2851562, -0.6586914, -0.123168945, -2.4941406, 1.1425781, -1.1992188, -0.9472656, -1.2324219, -2.2949219, -1.2412109, -3.2089844, -1.6083984, 1.8183594, -3.4160156, 1.3378906, 1.6025391, -0.32250977, -0.061157227, -0.49487305, -1.6904297, 1.1972656, 2.0214844, -1.1738281, 0.8745117, -0.48266602, -1.4462891, -0.60253906, -1.7568359, 3.2089844, -2.9433594, -3.5117188, -1.1064453, -0.070373535, -0.3330078, 1.2265625, -1.2509766, 0.42919922, 1.0566406, -2.5390625, 1.0742188, -2.5761719, -2.0429688, -1.0214844, 1.3457031, -1.6171875, -0.079956055, 0.6513672, 0.13244629, -2.6796875, -3.7148438, -0.5883789, 2.125, -1.3554688, 0.7841797, -1.0644531, -0.06185913, -1.4570312, 0.48364258, 0.10864258, -0.4675293, -0.48632812, -1.5507812, -0.42773438, -5.40625, 1.5146484, -2.1757812, 0.32958984, -0.01209259, 1.6171875, -2.7265625, -0.80615234, 1.4335938, -0.5180664, 5.6875, 1.4824219, 1.5722656, -0.14147949, -0.6791992, 1.4970703, -0.4753418, -2.0703125, -0.3515625, -0.6113281, -1.4414062, -0.50390625, -2.2675781, 0.94921875, -1.7744141, -0.80859375, 0.50634766, -0.26123047, -0.95214844, -0.6855469, -1.6748047, 0.8691406, -2.7382812, -0.45776367, -0.22937012, 0.47802734, -3.6210938, 0.2578125, -1.4609375, -1.1347656, -1.2050781, 2.0585938, 1.9853516, 0.34472656, 3.0234375, -0.5800781, 2.2832031, 0.8208008, -4.7265625, 1.2236328, 3.3066406, -1.1123047, 0.1262207, -1.9990234, -1.5664062, -1.9677734, -1.0449219, 3.3535156, 0.1418457, 2.8359375, -0.32910156, 0.25, 0.52001953, 1.0322266, -0.6230469, -0.6352539, -0.62841797, 2.3125, -2.515625, -0.2319336, 2.0195312, 3.2363281, -2.5332031, -1.9511719, 2.03125, 0.7060547, 2.3027344, 2.1464844, -1.2871094, 0.7578125, 1.9785156, 1.1240234, 1.7832031, 1.0410156, -2.421875, -0.89453125, 1.2871094, 1.2148438, 3.2753906, -0.546875, 0.5932617, 1.1044922, 0.56396484, -0.47265625, -1.4462891, -0.10076904, 0.28833008, 0.20532227, 0.17138672, 1.0849609, -1.390625, 0.9199219, 0.77001953, 0.5473633, 0.1743164, -1.4179688, -0.5800781, 2.4472656, 1.1933594, -1.4101562, 0.3449707, -0.67871094, 1.0957031, -0.83251953, 0.4404297, -0.50634766, 0.9536133, -0.43017578, -1.6865234, -1.3691406, -0.6748047, 3.1582031, -0.1427002, -3.3964844, 0.17016602, 1.8857422, -0.7573242, -0.3076172, -1.4072266, -0.18591309, -1.2607422, 3.0058594, -0.41870117, -1.8613281, -0.16064453, -1.5927734, 1.6171875, 0.8588867, -0.9892578, -2.2460938, -0.6298828, -1.9365234, 1.75, 0.67041016, 0.58203125, 1.5087891, -2.2753906, -0.6020508, -2.3046875, -0.3388672, 0.9399414, -1.7412109, -0.44580078, 2.8574219, -0.5283203, 2.6855469, -1.5126953, 3.6152344, -1.3710938, -3.6796875, 1.0361328, -1.1220703, 0.44873047, -1.3818359, -5.4335938, 0.8354492, 0.4790039, -0.7714844, 1.8740234, 0.15942383, 0.3581543, 0.31640625, -0.9033203, -2.7246094, -2.7519531, -2.4355469, 0.63964844, -3, 0.2130127, 1.1289062, -2.3574219, -2.3398438, -3.3144531, 0.40893555, -0.28515625, 0.5595703, 2.1699219, -0.94384766, 0.73535156, -0.7910156, 0.81591797, 0.3305664, 0.5834961, -0.8071289, -1.3066406, 0.6738281, -0.921875, 2.1738281, 1.3183594, 0.9321289, 2.0390625, 3.1132812, 0.45532227, -1.6455078, 0.97753906, 1.0839844, 2.3964844, 0.15881348, -3.5019531, -0.40722656, -0.42114258, 0.32470703, -1.8984375, -0.21691895, 0.3635254, -1.2392578, 0.6826172, 2.2226562, -0.39208984, 2.8769531, 1.4433594, -3.4101562, -0.22021484, -0.29760742, -1.9755859, -1.9345703, -1.3583984, -0.40112305, -1.3681641, 1.2070312, -1.2236328, 0.1439209, -1.5996094, -1.8886719, -1.3847656, 0.90185547, 2.9121094, 2.2734375, 1.203125, -2.4921875, -0.55810547, -1.1523438, -0.21020508, 0.10430908, 2.203125, 0.5571289, 1.2001953, 0.7114258, 1.6894531, -2.5273438, 0.46923828, 1.0859375, -1.4404297, -0.25195312, -2.4199219, -0.43920898, -0.31201172, -2.0917969, 0.4555664, 0.67871094, 2.3515625, -1.9521484, -0.23730469, -1.6269531, -0.41577148, -1.5625, 0.34399414, -0.6401367, 0.1361084, 2.78125, 1.3173828, 0.68408203, -1.0683594, 2.0839844, -1.0917969, 3.3496094, -0.70166016, -1.1777344, -0.75634766, -0.28100586, 0.7495117, -0.7133789, 1.7402344, 0.7324219, 1.2744141, 2.9863281, 1.9433594, -0.16235352, 2.0800781, 1.0283203, -0.42236328, -0.09576416, 0.8354492, -0.47827148, 1.3476562, -1.4628906, -3.6464844, -0.3239746, 3.9746094, -0.33081055, 1.2128906, -0.2331543, -1.8466797, -0.80615234, -2.0644531, -1.4404297, -1.4902344, 0.9580078, -0.1439209, -0.12371826, 0.16040039, -1.3925781, 2.3847656, 3.8730469, -0.3474121, -0.20141602, 3.1132812, 0.10131836, -1.5351562, 0.2614746, -0.79541016, -0.09851074, 0.4794922, -0.07922363, 0.8911133, 2.5859375, 1.4189453, 0.03390503, -2.6152344, -0.18640137, 0.09057617, 3.8613281, -2.734375, -1.4775391, 1.4941406, 0.43823242, 1.4072266, -2.5371094, 0.58203125, -0.43286133, 1.3027344, -0.82666016, 0.8671875, 1.1035156, -2.3828125, -1.0576172, -3.5019531, -0.3022461, 0.84521484, -1.8544922, 1.0068359, -0.8535156, -2.5351562, 0.21728516, -0.32495117, -0.32080078, 0.63720703, -0.72509766, -1.5712891, 0.6665039, 0.07562256, -0.37524414, 0.35864258, 2.8398438, -1.0234375, -0.4494629, -0.55078125, -3.0703125, -1.828125, -0.64941406, -0.81152344, 1.7402344, -0.19616699, 0.17114258, 2.0136719, 3.8808594, 2.0703125, -2.1015625, 1.5546875, -0.26513672, 1.0859375, 3.6132812, -1.4677734, 1.1845703, 1.0400391, -1.1914062, -0.4699707, 0.31640625, -0.07702637, 0.08251953, 3.0917969, 0.11218262, 1.0507812, -0.40454102, 0.9008789, 0.94628906, -0.3215332, 3.1933594, 0.67529297, -2.5449219, -1.5234375, -2.5214844, -1.3876953, -2.5292969, -2.1503906, -2.7910156, -1.0820312, 1.4707031, 0.65966797, -0.13415527, -0.023803711, 0.19763184, 0.45263672, -2.3300781, -0.37060547, 0.3713379, 2.7304688, 1.2089844, -1.7529297, -4.109375, -2.5390625, -0.031921387, -0.63720703, 1.5205078, -1.6767578, -1.0986328, -2.6152344, 0.78466797, 0.18273926, 2.6074219, 2.8144531, 0.7324219, -2.5976562, 1.3691406, 2.0390625, -0.21081543, 0.06994629, -0.36572266, 2.5957031, -1.0820312, 4.375, 3.2753906, 0.70751953, 2.0820312, 0.34399414, 1.8857422, -0.40966797, -1.0322266, 2.7363281, -2.6972656, -0.46557617, -1.3417969, -1.0878906, -3.1738281, 0.48583984, 0.6479492, 0.038879395, -0.042633057, 1.4648438, -0.13659668, 0.8779297, 0.9213867, 0.9746094, 0.24047852, 0.17773438, -1.9609375, 0.31396484, 3.5429688, -0.3461914, 1.7041016, 1.3300781, -0.08483887, -1.9150391, 1.1162109, -0.62353516, 0.6298828, 3.2226562, 2.5585938, 3.7636719, 0.6845703, 2.4199219, 0.9453125, 0.45117188, 1.9726562, -1.2539062, 0.3173828, 1.3691406, 2.5488281, -1.0742188, -1.0517578, 0.70996094, 1.7792969, -1.6230469, -1.5625, 1.40625, 0.014785767, -1.0175781, 1.2763672, -0.49023438, 2.1582031, -1.5458984, 0.51416016, -0.28125, 0.60253906, -0.23339844, -1.0439453, 1.3818359, -1.1972656, -0.98828125, -0.06427002, -0.08288574, 1.3896484, -2.0898438, 1.5898438, 0.1821289, -1.0146484, -0.046661377, 1.8671875, 1.1845703, 1.0068359, 0.047332764, 1.4511719, 1.5185547, 1.2265625, -0.28637695, 0.2097168, -1.0498047, 0.9716797, 2.1425781, 2.7519531, -0.9428711, -0.7211914, -1.1933594, -1.0322266, -2.7832031, 1.4941406, 0.8105469, -0.59814453, 0.6074219, 0.28295898, 0.88427734, -0.21655273, 1.0957031, -2.1972656, 0.44873047, 1.4736328, -0.82714844, -1.4638672, 0.2006836, -0.8779297, 3.6035156, 1.3066406, 0.49682617, 1.4355469, -1.3183594, 0.44189453, 0.38793945, 1.3408203, -1.6767578, 2.0917969, -1.9638672, 2.2421875, 1.8398438, 1.4375, 0.95214844, -0.63720703, 2.0019531, -1.1845703, 0.61621094, -1.9404297, 0.2788086, -0.3413086, -0.1005249, -0.19665527, -1.59375, -1.4316406, 0.39697266, 1.1015625, -1.1210938, -1.1259766, 1.0722656, 0.13806152, -1.2626953, 1.8613281, 2.4316406, -0.5463867, 0.9609375, -1.2099609, -2.6425781, 0.5107422, -0.3071289, 0.18945312, -0.96533203, -0.58935547, -0.13171387, 0.6376953, 1.4238281, 1.4960938, 1.5546875, -1.6425781, -2.3027344, 1.0566406, 1.4443359, -0.46166992, -0.38623047, -0.10058594, -0.6767578, -1.5029297, 0.60009766, 1.1855469, -0.54248047, -1.5712891, -2.3984375, -1.5419922, 1.1416016, 0.09655762, 2.453125, 4.3046875, 0.40454102, 2.3261719, -1.3388672, -2.4824219, -1.6484375, 0.49902344, 2.4101562, -0.56933594, -0.26000977, 1.3447266, -0.9501953, 2.3261719, 0.6225586, -1.1289062, -0.85498047, -1.2607422, 2.3164062, -0.35327148, 2.1972656, 0.41918945, -0.55126953, -0.45776367, 2.640625, 0.9536133, 1.6416016, 1.8701172, 0.6333008, 0.0069389343, -4.5273438, 0.3215332, -0.9038086, -0.05871582, 0.18249512, 0.8227539, 1.4384766, 0.42529297, -0.2722168, -3.3964844, -1.6962891]}, "B075KQ1VV2": {"id": "B075KQ1VV2", "original": "Brand: Stansport\nName: STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black)\nDescription: \nFeatures: FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper!\nPORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center.\nDESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen!\nHIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike!\nNO MATCHES REQUIRED: The electronic igniter ensures you won't be eating a cold meal, even if you lose your matches during a long hike!\n", "embedding": [-2.0351562, 1.5380859, 1.6640625, 1.84375, -0.98535156, 1.6005859, 2.1425781, -0.86328125, -1.09375, 1.4541016, 1.0595703, -0.7890625, 0.97558594, -1.7138672, -0.5288086, 1.6220703, -0.4326172, 0.068481445, -1.2568359, -0.059295654, 1.7128906, -0.33691406, 2.5175781, -2.0820312, 0.12939453, -0.41992188, 3.3105469, -3.5683594, 0.6386719, -1.0507812, 2.15625, -0.14538574, 1.1875, 3.1015625, -3.1621094, 0.42016602, -1.9335938, -0.48486328, -2.734375, 0.18249512, -1.1113281, -0.7949219, 3.1582031, -0.85253906, -1.5458984, -1.5566406, 0.7949219, -0.122924805, -1.296875, 0.9555664, -0.2890625, 0.5522461, -0.058441162, 1.7841797, -1.6240234, -0.097595215, 0.40722656, -1.1494141, 1.5009766, 0.89404297, 1.5517578, -0.27172852, -1.8554688, 0.71875, -1.4462891, 0.11743164, 1.3808594, -0.21911621, -0.6455078, 0.4934082, 2.8496094, -1.5146484, 0.47485352, -0.81591797, 0.7915039, 0.64160156, -3.0898438, 1.8671875, 2.7753906, 0.5283203, -1.7275391, 2.9003906, 0.9555664, 1.140625, 0.3557129, 1.2451172, -1.0722656, -0.92529297, 0.5180664, 0.68359375, -2.5390625, 0.9291992, -1.6376953, -3.8613281, 2.0488281, -0.88916016, 2, 0.66796875, -0.18493652, -0.26220703, -0.35351562, 0.48413086, -0.92578125, 0.77197266, -1.7177734, 0.60009766, 3.3945312, 1.3603516, -3.1269531, 0.25170898, -2.3066406, -1.6230469, 1.5107422, 0.19384766, 1.0615234, 1.90625, -2.2539062, 0.4699707, 3.3222656, 0.875, 5.2773438, 0.10760498, 2.2304688, -0.46801758, 0.17041016, 2.0546875, -2.28125, 0.088012695, 3.140625, -0.62109375, -1.9912109, 0.3930664, 1.6240234, -0.29248047, -1.3984375, -1.6992188, -1.7421875, -2.1855469, -2.1132812, 0.26513672, -1.9638672, 0.2783203, 1.8310547, -0.14111328, -4.8945312, -0.7109375, -0.42871094, 1.4755859, 1.3388672, -1.6230469, -0.23791504, -1.78125, -1.1298828, -1.421875, 2.5761719, 0.33007812, -0.7167969, -0.5053711, 3.0332031, 0.84033203, 1.6621094, -1.6230469, -2.7773438, 1.3994141, 1.7949219, -2.6894531, -0.27197266, 1.8203125, -1.0146484, 1.2441406, -0.6948242, -2.0996094, -0.70703125, -0.95214844, 1.1523438, -0.45898438, -0.9941406, 2.5625, 1.5703125, -1.8505859, -1.5195312, -1.9462891, 0.85791016, 0.9897461, 0.13049316, -1.7158203, 0.6508789, 0.5966797, -1.1318359, -1.9677734, -1.0751953, 1.2099609, -0.8359375, -0.5229492, -0.6743164, -3.0175781, -1.3457031, -2.6308594, 0.32714844, 1.2871094, -0.63916016, -1.3613281, -1.0136719, 1.3740234, -2.2832031, -0.9638672, -0.3881836, -0.10827637, 1.0527344, 3.03125, 2.0039062, -0.23669434, 2.7714844, -0.2668457, -2.3925781, -2.2832031, 2.7988281, 1.2910156, 2.0566406, 2.5117188, 0.6298828, -0.46142578, 1.0234375, 1.1845703, 0.026885986, 1.2363281, 1.4619141, -1.296875, -1.4863281, -0.7060547, 2.3085938, 0.15002441, -1.2431641, -0.3540039, -0.59472656, 2.34375, 1.3876953, -1.3037109, -0.80859375, -0.42797852, 0.022232056, -0.7011719, 1.5322266, 0.8046875, -2.0976562, -0.89160156, 0.5991211, -0.31298828, 2.6621094, 1.4726562, 0.4465332, -0.65527344, 0.39013672, 0.47851562, -0.9042969, -0.828125, 0.7583008, -0.80859375, -1.7910156, -2.7441406, 2.9472656, 2.625, -0.18896484, 0.44140625, 0.16516113, -1.0488281, 2.6796875, 1.3583984, -2.2832031, 1.7607422, 0.77246094, 1.2333984, 2.2089844, -0.6777344, 2.4707031, -1.6132812, -0.94921875, 4.75, 0.39038086, 1.9462891, 0.16357422, -1.8417969, 2.1074219, -2.4296875, -0.5131836, 0.5361328, 3.0566406, 1.1025391, -1.2998047, 0.30029297, 6.09375, -1.2949219, -1.8603516, 0.93115234, -2.3203125, 0.45751953, 0.35180664, 1.0322266, 0.9555664, 0.2878418, 2.4335938, -0.7919922, -0.02696228, 1.4550781, -2.234375, -1.4023438, 0.80859375, -3.6210938, -0.59765625, 0.33447266, -1.1748047, -1.6660156, -0.3383789, 1.3466797, -1.390625, 0.4008789, 3.5644531, -3.0527344, 1.5878906, 1.9882812, 0.17736816, 0.56933594, -1.0664062, -0.82666016, 0.45336914, 0.4284668, -0.8984375, 2.46875, 1.5595703, 1.2587891, -0.3076172, -0.7861328, 0.7192383, -2.109375, -0.28833008, -0.22180176, -0.85839844, -2.8574219, 0.5732422, -1.34375, 0.025024414, 1.3681641, -2.7109375, 0.37670898, -0.90234375, -2.7636719, 0.073791504, -0.1652832, -0.90234375, -0.28295898, 1.5449219, 1.8203125, -0.3876953, -1.1904297, -1.2783203, 0.08477783, -0.03591919, -1.4619141, -1.6699219, 1.3398438, -0.41625977, 0.24707031, -1.1308594, 1.5205078, 0.3227539, -3.5742188, 0.6621094, -3.9667969, 0.1640625, -0.20056152, 0.39160156, -0.13476562, -0.060516357, -1.1455078, -1.3886719, 0.68115234, 0.08666992, 4.21875, -0.9121094, 1.0527344, -1.6181641, -1.5458984, -1.2294922, -1.3457031, -3.1757812, 0.6635742, -0.19702148, -1.8466797, -0.49658203, -2.7226562, -0.12438965, -1.921875, -0.02432251, -0.8588867, -0.077697754, -0.5810547, 0.22937012, -0.6665039, -0.33154297, 0.17712402, -0.3779297, -0.08251953, -2.2285156, -2.3398438, 0.08355713, -0.31176758, 0.91259766, 1.53125, 0.12109375, 0.14892578, -0.006072998, 1.9160156, -0.4309082, -0.044677734, -0.11138916, -2.8261719, 1.7167969, 0.5463867, 0.8774414, 1.7216797, -1.6884766, -1.6259766, -0.15075684, -0.7729492, 2.0605469, 0.97265625, 1.8710938, -0.16479492, -0.29370117, 0.3461914, 0.890625, -1.6601562, -2.1425781, -0.0064353943, 3.8574219, -2.53125, -1.0380859, 2.03125, 1.3037109, -2.4882812, -0.5991211, 0.1628418, 0.625, 0.98535156, 1.5283203, -0.66503906, -1.5878906, 0.39794922, -1.0224609, 2.1074219, 0.71972656, 0.063964844, -1.5488281, -0.23669434, -0.72509766, 0.23168945, 0.1496582, 1.4335938, 1.5341797, 1.4189453, 2.4804688, -2.953125, 0.7675781, 0.63427734, -0.23388672, 1.6259766, 3.3457031, -0.6279297, -0.33032227, -2.453125, 1.6435547, 2.3164062, -0.29125977, 0.23278809, 1.4316406, -0.08081055, -0.17028809, 1.2402344, -0.38842773, 1.3867188, -0.40722656, 2.8125, 0.2064209, -2.7753906, 1.203125, -0.43896484, -0.23388672, -2.0292969, -0.18896484, -1.1044922, -1.6435547, 0.99560547, 0.50146484, -1.7685547, -2.7421875, -2.1015625, -0.3334961, -1.1015625, 4.1523438, -0.076049805, -0.22839355, -0.14343262, -1.0761719, 0.4260254, 2.6777344, -1.5332031, -0.8305664, 1.3828125, 0.3137207, -0.8515625, 0.15563965, 1.0068359, 0.5786133, -0.8071289, 0.8911133, -3.2109375, -0.7553711, 0.4621582, -2.7128906, 1.3017578, 3.1074219, 0.39868164, 1.78125, -0.99658203, 4.359375, -2.1796875, -1.0185547, 2.1738281, -3.0136719, -0.5419922, -3.8476562, -2.7480469, 2.015625, 0.22216797, -0.75683594, 2.5019531, 1.4335938, -0.52001953, 0.44750977, -0.026428223, -2.0546875, -1.9150391, -1.2636719, 0.86572266, -2.484375, -0.6538086, 0.14685059, 0.42456055, -2.0136719, -2.1503906, 0.15258789, 0.5888672, 0.34350586, 0.7167969, -1.6298828, 0.36645508, -2.4589844, -0.26708984, -1.0068359, -0.37475586, 1.0058594, -0.33398438, -0.34057617, -1.4345703, 0.7294922, 3.2734375, 0.14111328, 0.38378906, 3.3378906, 1.0273438, -0.22558594, -0.29541016, 1.2607422, 1.6630859, 0.05545044, -2.4785156, -0.76904297, -1.8164062, -1.1992188, 0.1373291, 1.2607422, 0.030456543, -1.8525391, 2.2128906, 0.7919922, 0.6801758, 2.375, -0.23022461, -1.2832031, 0.6982422, 0.36279297, -1.84375, -1.2871094, -0.29003906, -0.2265625, -1.3105469, 0.9272461, -1.0751953, 0.0008864403, -1.7275391, -0.30029297, -0.82470703, 3.171875, -0.36914062, 1.6220703, 2.2519531, 0.4267578, -2.9511719, 0.8691406, -0.40429688, -0.7167969, 1.0732422, 0.7807617, -0.03540039, 2.96875, 1.5029297, -0.5776367, -3.5703125, 1.6523438, -0.76708984, -1.2128906, -0.7265625, 1.6523438, -1.8808594, -0.9628906, 0.9584961, -0.22973633, 2.0097656, -0.13439941, 1.1279297, 1.9189453, 0.82666016, -2.1074219, -0.9692383, -0.90771484, 1.2236328, 0.61279297, 0.51953125, -0.6274414, -0.80322266, 1.8603516, 0.8208008, 2.9160156, 0.4248047, 1.5429688, 1.3457031, 0.49169922, -0.89941406, -1.1455078, 0.53808594, 0.9946289, 0.07775879, 4.1132812, 1.2216797, -0.2746582, 1.9550781, -0.6621094, -2.0742188, -0.3137207, 0.2541504, -0.6689453, 2.4296875, 0.42089844, -2.9785156, 0.09466553, 2.9179688, -1.1474609, 1.4375, -0.94384766, -1.6298828, -0.29125977, -3.8378906, 0.02494812, -0.26782227, -0.3269043, 0.6152344, -1.5458984, 0.6196289, -0.984375, 2.28125, 1.8261719, -0.61376953, 0.40356445, 1.6064453, -1.2490234, 1.4384766, -0.1529541, -0.4921875, -2.6875, 1.4423828, 0.6582031, 1.1396484, 0.68652344, 0.4116211, -0.37451172, -0.7114258, -1.4746094, -2.296875, 2.3554688, -2.5292969, -0.81933594, 1.5117188, 0.026748657, 1.3867188, -0.17480469, -2.0917969, -2.8574219, 2.3867188, 0.50341797, 0.31640625, -1.2119141, 1.2041016, -1.9130859, -5.6523438, -2.1894531, 0.2849121, -0.23779297, -1.0634766, 0.029083252, -0.51171875, -1.3271484, 0.5673828, 0.70410156, -3.1230469, 1.6269531, 1.5029297, 1.9648438, -0.09527588, -1.1923828, 0.20336914, 1.4560547, 1.0546875, -0.083496094, -0.021972656, -1.6611328, -1.4765625, 2.0410156, -2.7695312, 1.2421875, -0.77685547, -0.86328125, -0.24121094, 1.3476562, 0.008934021, -1.0322266, 1.2734375, -1.4287109, -0.41845703, 0.52685547, -1.0644531, -0.071777344, 0.9897461, -1.8857422, 0.9267578, -1.046875, 0.10229492, 0.61328125, 1.4101562, 0.16821289, 0.5126953, -0.6455078, -0.8955078, 1.1386719, -0.17626953, 0.81396484, 2.3125, -0.77441406, -1.0546875, -3.2402344, -2.5898438, 0.17285156, -0.27392578, -0.035736084, -1.4550781, 1.5107422, 0.19152832, -0.20593262, -0.45239258, -0.4724121, 0.026535034, -0.045898438, 1.3525391, -1.2578125, 4.1953125, 0.7729492, -0.114990234, -1.6523438, -3.2988281, 0.31518555, 0.23425293, 1.3271484, -1.6962891, 1.40625, -0.3371582, 1.0830078, 1.3857422, 1.7519531, 2.8945312, 1.2910156, -1.5361328, 0.99902344, 2.5859375, 1.2402344, 0.07556152, 0.48632812, -0.0020999908, -0.7895508, 1.8642578, 0.58154297, -0.3864746, 2.4335938, -0.6977539, 0.8276367, -0.12976074, -2.4335938, 2.4824219, -1.3007812, -0.2824707, -2.6699219, -1.0996094, -0.7573242, 2.5117188, 3.171875, -0.29248047, 0.609375, 1.90625, -1.3066406, 1.3066406, 1.4248047, 1.1982422, -0.24804688, 0.19006348, 1.7011719, 0.6088867, 1.7041016, -1.8535156, 1.7939453, 0.03265381, 0.43310547, 0.68066406, 3.2558594, 1.5722656, 3.0820312, 0.7685547, 0.7397461, 2.0273438, 1.1357422, 3.0371094, -0.050445557, 1.6367188, 2.7988281, 0.4555664, 0.68652344, 0.8911133, 0.70166016, -1.2871094, -1.9511719, 0.84814453, -0.65478516, 0.18408203, -0.50146484, -1.4072266, 0.63183594, -3.8808594, 1.5664062, -0.19360352, 0.74072266, -0.7060547, 0.12646484, -1.5888672, -1.0302734, 0.7529297, 0.10900879, -0.8310547, -1.3886719, -1.1523438, -1.4775391, 0.08392334, 0.30908203, -2.7265625, 0.74072266, -2.6601562, -2.5332031, -0.7109375, 0.71484375, 0.19274902, 1.0888672, 0.41967773, 1.6728516, 1.8730469, -1.3457031, 0.75146484, -1.6220703, 1.3164062, -0.41210938, 3.0976562, 0.33618164, 0.045837402, 1.8515625, -0.34985352, -3.8222656, -3.1230469, 3.1132812, 0.50097656, 0.9165039, 1.2099609, -1.9892578, 2.2578125, 1.484375, 0.83496094, -2.4667969, 1.5458984, 0.4206543, -1.3818359, -1.2783203, 1.3935547, 0.3486328, 2.6269531, 0.48413086, -1.2001953, 1.6279297, -0.31103516, 1.4472656, 0.48950195, 0.13061523, 0.89404297, 1.1464844, -1.9599609, 2.0449219, 2.4316406, -1.2216797, -0.65771484, 3.4316406, 2.0234375, 0.46704102, -0.6044922, -1.8525391, 1.4023438, -0.86816406, -1.2587891, 0.1550293, -1.7158203, -1.6630859, -0.6308594, -1.6259766, -1.4511719, -2.96875, 0.22387695, 2.7109375, -1.9589844, 1.7304688, 1.7080078, -1.2695312, -0.05709839, 1.1728516, -0.3388672, -1.6816406, 0.25, 2.1015625, -0.78564453, -1.7148438, 0.41992188, 0.96728516, 2.1289062, -1.4970703, 0.8671875, -1.4736328, -0.7993164, -0.3996582, 1.1445312, -0.11010742, -0.54052734, 0.34448242, -0.60009766, -1.6669922, 2.9355469, -1.4257812, -0.4230957, -0.123046875, -2.7695312, -1.0195312, -2.015625, -0.18200684, 0.43945312, 2.0644531, 0.23913574, 0.54345703, -0.71191406, -3.8222656, -1.7207031, -0.68359375, 1.6611328, 1.1015625, -0.56152344, 1.2041016, 1.6953125, 2.5527344, -2.7363281, 0.12695312, -0.5493164, 0.31079102, -0.56640625, -0.55810547, 1.3105469, -0.13342285, 0.83691406, -0.34765625, 2.8066406, 0.47558594, -0.8984375, 1.6845703, 0.43481445, 0.58447266, -1.8154297, -0.375, -2.1933594, 0.3701172, -1.3525391, -1.5087891, 2.7597656, 1.9570312, -0.96728516, -2.8496094, -1.1269531]}, "B082MTXG5Z": {"id": "B082MTXG5Z", "original": "Brand: Flame King\nName: Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White\nDescription: \nFeatures: Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories\n", "embedding": [-2.4453125, 1.4355469, 1.4335938, 0.7270508, 0.4177246, -2.7871094, -0.3317871, -0.5698242, 0.083862305, -0.7602539, 3.0605469, -0.13549805, -0.5004883, -2.875, 2.3261719, 0.59765625, -0.86816406, 1.9980469, 1.4052734, -0.07525635, 1.0322266, 0.03918457, -0.27905273, -1.2333984, 0.98779297, -0.6040039, 2.3671875, -2.9511719, 0.16918945, 0.39379883, 0.52978516, -0.31469727, -0.05871582, 1.5234375, 0.34985352, -1.8046875, -0.10412598, -2.046875, -6.4726562, -0.29516602, -3.3222656, -0.7192383, 1.828125, -0.59375, -1.3105469, -0.21435547, 0.42163086, -1.7314453, 0.47973633, -0.88720703, 0.32250977, 2.40625, 0.20117188, 1.1005859, 0.25952148, -0.11230469, 1.2880859, -2.8066406, -0.18481445, 0.53125, 1.9755859, 0.42822266, -2.8261719, 1.7060547, 0.16674805, 1.4550781, -1.2539062, -0.054138184, 0.31811523, 1.7275391, 1.9677734, 1.5400391, 2.3671875, -1.4824219, -0.73828125, 0.9785156, -2.7148438, 0.6748047, 0.8154297, 0.16711426, -0.26342773, 3.3671875, 0.6376953, -1.7861328, -1.0341797, -0.63183594, 0.98876953, 2.0605469, 0.33325195, 0.83496094, -2.6152344, 1.7333984, -0.036315918, -4.3164062, 2.6152344, 0.94921875, 2.6074219, 2.1582031, 2.78125, 0.8413086, -0.056640625, 0.1472168, -0.089782715, 1.7675781, -1.4501953, -1.8574219, -0.14855957, 0.56884766, -2.6738281, 1.3554688, -1.0390625, 0.0038776398, 2.0390625, -0.12854004, -0.8286133, -0.45410156, 0.1071167, 1.5830078, 2.7050781, -0.040222168, 4.46875, -2.8671875, 3.21875, -0.69677734, 1.4257812, 1.4980469, -0.94091797, 1.6494141, 3.4511719, -0.6245117, 2.0957031, -0.9848633, 3.5957031, -0.8847656, 0.17700195, -1.6845703, 0.29003906, -1.6621094, -1.2060547, -2.4082031, -3.9902344, 0.8154297, 0.68359375, -0.43115234, -3.109375, -0.74853516, -0.062683105, -0.6142578, -0.8833008, -2.0839844, 1.4355469, -2.2226562, 0.24072266, -0.16088867, 2.0839844, 1.6630859, -2.0703125, -1.6552734, 1.3046875, 1.6630859, 2.2207031, 1.1650391, -0.14611816, 1.8183594, -0.76904297, -2.5136719, 1.1230469, -0.16723633, -0.68115234, 2.28125, 0.5786133, -1.8730469, -0.25146484, 2.1855469, -0.25048828, -0.53222656, 0.9580078, 1.9902344, 0.17504883, -0.20263672, -2.7519531, -0.012275696, -0.9926758, -1.1777344, 2.3261719, 0.61572266, -1.2753906, -0.7871094, 1.2548828, -0.91308594, -1.4189453, 2.1367188, -1.9628906, 0.6479492, 0.74365234, -1.7734375, -2.8886719, -3.5078125, 1.3798828, 1.578125, 0.14892578, -1.6435547, 1.3984375, -0.5859375, -1.8535156, -1.0380859, 1.8466797, -1.9296875, 1.0185547, 0.13171387, -0.51660156, -0.26049805, 1.3173828, -2.9648438, -0.5864258, -1.9511719, -0.07336426, 1.1035156, 1.4833984, 1.0751953, 1.3925781, 0.3557129, 1.1669922, 1.0849609, 1.5224609, 1.0449219, 0.7236328, 2.2578125, -3.9667969, -1.1396484, 1.0087891, 2.2207031, -0.34814453, 1.6103516, -1.9091797, 0.6767578, 0.8041992, -0.8676758, 1.0986328, -0.09490967, 0.52246094, 1.1289062, -1.3935547, -1.3984375, -2.140625, 0.23742676, -0.083618164, 0.27905273, 1.1289062, -0.6586914, 0.64501953, -0.16748047, -1.3730469, -1.0166016, -1.2109375, 0.13952637, 0.75634766, -0.017868042, 0.3935547, -2.1757812, 1.3759766, -0.80615234, -0.60302734, 0.6171875, -0.21374512, 1.2128906, 2.5585938, -0.6191406, -2.2324219, 1.6708984, 0.12536621, 1.8623047, 1.3359375, -0.88134766, 0.30322266, 3.2324219, -1.5683594, 3.1679688, -1.2783203, 1.7958984, 0.81591797, -1.1933594, 0.85058594, -2.796875, 0.54589844, 0.1239624, 1.8847656, -0.5917969, -2.0566406, 0.92089844, 4.859375, -1.0185547, -1.0800781, 0.9458008, 1.5537109, 2.7949219, 3.4804688, -1.7324219, 0.86279297, -1.3447266, 0.13964844, 0.37060547, -1.1806641, -0.10845947, 0.50341797, -1.6220703, 0.0725708, -0.14758301, 1.1005859, -0.72753906, -0.4152832, 0.56152344, -1.6416016, 0.69384766, -0.12524414, -1.0927734, 3.6640625, -3.4140625, 1.6953125, 1.6904297, 1.3916016, 1.5400391, 1.8662109, -1.6591797, 0.72216797, 1.7285156, -0.42871094, 2.6660156, -0.8769531, 0.85546875, 0.36621094, -2.1015625, 1.5058594, -0.69921875, -0.88378906, 1.9755859, -1.0166016, -2.7167969, 0.55908203, -2.2832031, 1.171875, 0.8046875, -1.8222656, 2.0761719, 1.1582031, -0.65966797, 0.33862305, 0.6699219, -0.12902832, -2.7832031, 0.68310547, 3.1953125, -1.1572266, -2.1796875, 0.7607422, 0.5126953, 0.5810547, 2.7539062, 0.44311523, -0.6298828, -0.12536621, -1.4951172, -0.9379883, -0.7392578, -1.4775391, -2.53125, 2.6757812, -2.5136719, 1.7822266, -1.4521484, -0.38867188, -2.3769531, -1.9277344, 0.04220581, -2.2089844, -0.53808594, -1.9208984, 1.0292969, 0.26586914, 2.0488281, -0.4543457, -1.2548828, 0.74560547, -2.0390625, -0.8408203, -0.9628906, -0.12854004, -1.9980469, -0.81933594, -4.6796875, 0.5566406, -0.9970703, -0.9472656, -0.4194336, 1.5146484, -1.9433594, -0.24230957, 0.96533203, 0.35205078, -0.32666016, 0.2006836, -1.1396484, -3.3242188, -0.42773438, 1.2939453, 0.6513672, -1.2314453, 0.093322754, 0.24316406, -0.22668457, -0.41625977, 0.6743164, -1.4560547, 0.69873047, 1.2080078, -3.34375, 1.3544922, 0.7402344, 0.5336914, 2.0332031, -2.6894531, -0.6254883, -1.75, -0.90966797, 3.4667969, 1.3496094, 0.9824219, 0.6166992, -0.9038086, -0.081970215, -1.2539062, -0.39013672, 0.71533203, 0.15356445, 2.3496094, -1.0390625, -0.35986328, 0.4489746, 3.03125, -3.9746094, -0.33569336, 1.1796875, -0.6923828, 1.2763672, 0.5732422, -0.5493164, -0.7397461, 0.42260742, 1.3867188, 2.9492188, 0.090026855, 0.25170898, -0.9135742, 0.43896484, -0.6328125, 0.22033691, 3.0039062, -0.28173828, 0.63134766, 1.9550781, 0.14904785, -0.58935547, -0.97998047, 0.07128906, 0.97558594, 0.45483398, 2.1171875, -0.27905273, 1.3125, -1.2294922, 0.87109375, -0.23962402, -1.5498047, 1.2314453, 0.8911133, 1.6308594, -0.0423584, -0.70214844, -0.13549805, -0.9584961, -1.5400391, 3.7109375, -1.5849609, 1.9824219, 1.390625, -0.8334961, 0.31884766, -2.546875, 2.1328125, -0.9111328, 0.4345703, -0.17651367, 0.9272461, -1.5664062, -2.90625, -0.38208008, -1.3466797, -1.3466797, 3.0664062, -0.5073242, -2.6992188, 0.119262695, -0.99902344, 0.89990234, 1.171875, -2.8886719, 1.7724609, -0.5180664, 0.112854004, -0.35253906, -0.6816406, 1.7900391, 0.7470703, -2.6503906, 1.6240234, -2.5410156, 2.390625, 0.7651367, 0.29638672, -0.41674805, 0.21276855, -2.0625, 3.2050781, -0.99560547, 3.3085938, -0.41137695, 1.5380859, 2.1113281, -0.7397461, 0.30126953, -1.8759766, -2.5058594, -0.019348145, -2.859375, -1.2626953, 1.9570312, -0.35107422, -0.4987793, -0.6977539, 1.1123047, -1.3212891, -1.2871094, -0.7470703, 2.7070312, -1.9775391, -0.27197266, 0.87597656, 2.765625, -3.1640625, -2.75, 1.1640625, -1.8662109, -0.6743164, -0.16638184, -1.5322266, 0.7211914, 0.04840088, -0.6635742, -0.8852539, -0.22802734, 1.1513672, -0.98291016, -0.7817383, -2.4023438, 2.90625, 2.2304688, 0.86083984, 1.7910156, 1.515625, 1.5048828, -0.18139648, -0.77685547, -0.8095703, 1.5117188, 1.0839844, -3.6679688, -1.6933594, -1.1533203, 0.30444336, -2.3183594, 0.56591797, -0.26904297, -0.11230469, 2.6289062, 0.19042969, 1.6552734, 0.52197266, 0.55859375, -0.4506836, 1.2988281, 1.171875, -0.053863525, 0.06945801, -1.1445312, -0.16625977, -0.91552734, 2.5449219, -1.9736328, -0.17382812, -2.703125, 0.99365234, -4.6445312, 0.47631836, 2.5957031, 2.546875, -0.7832031, 0.058380127, -1.5039062, 0.52441406, 0.04309082, 0.7607422, -0.13720703, 0.48583984, -1.5429688, 1.3457031, 1.4208984, 0.12792969, 1.7666016, 1.6464844, -1.4296875, -1.5097656, 0.4736328, 0.38989258, -1.1435547, 0.15344238, -0.99609375, 0.111450195, 3.5742188, -0.9746094, 1.1533203, 1.1464844, 1.5791016, 0.37548828, 2.0390625, 0.4506836, -1.2841797, 2.9902344, 0.07208252, 1.2763672, 1.5810547, 1.0380859, 0.8959961, 2.0273438, -2.6777344, -0.2902832, 0.09954834, 1.7421875, -0.8886719, 0.31103516, 1.1630859, 0.46069336, -0.8823242, 1.0009766, 0.8857422, 0.31689453, 2.0527344, 1.4619141, -2.4355469, -1.7490234, -1.3828125, -0.5029297, 2.9433594, -0.20251465, -2.8398438, -0.5292969, 2.1582031, -1.2216797, 0.22485352, 1.0800781, -0.41357422, -1.5244141, -2.4335938, -2.1699219, -1.5019531, 1.4394531, -0.09082031, 1.6132812, 0.2163086, -0.5600586, 1.0654297, 0.9379883, 0.85009766, 0.5761719, -0.87841797, 0.0016288757, 0.19628906, -1.3339844, 0.62597656, -1.5566406, 0.16833496, -1.0947266, -0.5644531, 0.21179199, -0.47387695, 2.6367188, -1.3574219, -0.018188477, -1.8818359, 1.3349609, -0.20056152, -0.4189453, 3.4414062, -1.7861328, 2.0859375, -0.22375488, -0.95996094, -1.8125, 1.0996094, 1.8564453, -0.53271484, -0.1628418, 0.8769531, -3.3007812, -4.4414062, -3.0585938, 0.47802734, -0.13232422, -0.052520752, -1.2783203, -2.0820312, 0.98291016, -0.06402588, -0.40039062, -2.5996094, 1.2216797, 0.11755371, -0.23486328, -0.1586914, 1.5371094, 0.44873047, 0.57421875, 1.5820312, -1.3984375, -1.1865234, -3.0195312, -2.5644531, 1.3916016, -0.4248047, 0.15625, 0.46923828, -1.5400391, 1.1259766, 1.875, -0.35791016, -4.2578125, 2.2480469, -2.2011719, -0.4375, 2.7753906, -2.5019531, -1.0302734, 1.5917969, -0.5283203, 0.99902344, 2.125, 1.5976562, -4, -1.8095703, -1.1933594, 0.6142578, -0.37841797, 1.6416016, 1.8398438, 1.0693359, 0.1817627, 2.8632812, -0.71240234, -2.1386719, -2.0429688, -0.72753906, -0.109313965, -1.3779297, -0.6669922, -0.7080078, 0.5546875, 0.6123047, -1.3886719, -0.2434082, -1.1044922, -0.9379883, -1.3164062, 2.6933594, -3.3359375, 1.6669922, 1.4824219, -2.3574219, -2.7460938, -0.5541992, 1.6035156, -0.1842041, -2.0097656, 0.22924805, 0.6245117, 0.6230469, 1.3974609, 0.25097656, 1.1474609, -0.6591797, 1.8701172, -1.5126953, -0.031219482, 3.3378906, -0.78027344, 1.2587891, 1.0341797, -2.0273438, 0.62939453, 2.40625, 2.8144531, -1.3310547, 0.7138672, 0.120910645, -1.328125, -0.14562988, -0.7807617, -0.2915039, -3.8847656, -1.0458984, 0.5175781, -0.44311523, -4.3984375, 0.8354492, -0.09057617, -0.84228516, 0.7402344, -0.79248047, -0.06842041, -0.81689453, 2.4863281, 0.87597656, -2.3574219, 0.14416504, 1.1826172, 0.55029297, 1.3623047, -1.8681641, 1.1513672, 1.7626953, 1.546875, -1.1699219, 0.22058105, -1.3408203, 1.7597656, 1.6494141, 2.0273438, 2.9472656, -1.7558594, 1.1201172, -0.9296875, 2.2949219, 4.0507812, -0.2208252, 0.5288086, -0.19274902, 1.0224609, 0.6274414, -1.0439453, 0.09838867, -0.8388672, 0.11279297, -1.3710938, 0.76416016, 1.3808594, -0.7080078, 0.91308594, -0.5966797, -0.296875, -0.6035156, 0.15454102, -0.49438477, -2.0371094, 0.14672852, 1.0654297, 1.3994141, -0.09075928, -0.5493164, 0.07635498, 0.64501953, 1.8027344, 0.19628906, -0.7817383, -1.3349609, -1.3505859, 1.7070312, 2.5351562, 1.1230469, 0.28295898, -0.26611328, -0.27490234, -1.1005859, 0.5961914, -1.5605469, -2.5859375, 1.1542969, 0.39892578, 1.4169922, 2.3066406, -0.81689453, 4.0820312, 1.1308594, 0.69873047, -3.59375, 2.421875, -1.7597656, -0.53125, 0.99853516, -2.5449219, 0.31445312, -1.9541016, 0.65527344, -4.3085938, 0.38916016, 0.7216797, -3.2597656, 2.2929688, 0.6123047, -0.71972656, 3.5839844, 1.546875, -0.34277344, -0.140625, -0.41430664, 1.5439453, 0.10467529, 0.026901245, 0.9355469, 1.3349609, -1.2998047, 3.6816406, 0.83251953, -0.6904297, -2.0605469, 1.6435547, 0.023590088, 0.36279297, 1.3759766, -0.8901367, 2.2519531, 0.015098572, -0.5317383, 0.48339844, -0.99902344, 0.67578125, -2.2363281, -1.609375, 1.6259766, -0.79052734, -0.36083984, 1.5419922, -1.2773438, -1.8320312, 3.8691406, -0.15332031, 0.07019043, -0.8466797, -1.9384766, -1.0615234, 1.6728516, 1.3867188, -2.0449219, -0.17980957, -0.082458496, 3.1640625, -0.109436035, -1.4316406, -1.7578125, -1.0537109, -0.69189453, -2.2929688, 0.6489258, -0.38305664, -1.3359375, 2.3144531, -0.86279297, -0.12768555, 1.0097656, -0.14611816, 2.0859375, -1.3417969, 0.5, -1.0039062, 0.68359375, -0.48120117, -1.0654297, 0.7919922, 0.06756592, 1.1035156, -0.57177734, -3.9980469, -1.8945312, -2.1523438, 0.61572266, -0.7680664, -1.0664062, 1.1542969, 1.9423828, 1.0253906, -1.3710938, 0.39770508, -0.4248047, 1.1083984, 1.1962891, -0.12670898, 2.3046875, -0.68408203, -0.28759766, -0.15966797, 1.7148438, 1.7167969, -0.7910156, -0.24047852, 1.5849609, -1.0771484, 0.3466797, -1.140625, 0.28320312, -1.2822266, 0.6376953, 1.0302734, 3.2636719, 1.1748047, -1.2207031, -2.0683594, -1.4345703]}, "B073SMX1TC": {"id": "B073SMX1TC", "original": "Brand: Outland Living\nName: Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21\u201d x W 21\u201d x H 9.5\u201d with total output of 58,000 BTU/HR.\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.\n", "embedding": [-1.4941406, 0.9511719, 0.8935547, -0.25927734, 1.0273438, 0.6748047, 1.8662109, -1.5810547, -2.2480469, 2, 0.42407227, -0.33422852, -0.82666016, -3.9121094, -0.66552734, -0.49023438, 0.03463745, 0.7246094, 0.56152344, -0.43945312, 3.0273438, -0.41137695, 1.296875, -1.15625, 1.9648438, -0.68603516, 3.1601562, -3.53125, -0.37182617, 0.48413086, 1.1083984, 0.96533203, 0.15539551, 2.3730469, -2.6757812, -0.6166992, -2.1308594, 1.0302734, -2.4882812, 0.029907227, -2.1132812, -2.4160156, 2.6367188, 0.5571289, -2.3085938, -0.703125, 2.0878906, -0.26245117, 0.54589844, 0.2849121, 0.88623047, -0.2548828, -0.0947876, 1.0566406, -3.0820312, 2.1953125, -0.4260254, -1.53125, 2.9785156, 1.4208984, 0.36987305, 0.5253906, -1.4091797, 2.5019531, -2.0957031, 0.27685547, 0.41015625, -0.4416504, 0.8652344, 0.7729492, 2.5058594, 0.30541992, -0.17016602, -0.30810547, -0.32421875, 0.074645996, -3.4648438, 1.0908203, 2.8613281, 0.3959961, -0.73046875, 2.5722656, 0.1328125, 0.40307617, -0.45874023, -0.080566406, -3.1796875, -0.2685547, 0.7631836, 1.8388672, -0.08312988, 2.3222656, -1.2392578, -4.1875, 2.0332031, -1.7470703, 0.29174805, 1.1962891, -1.1123047, 0.9765625, 1.375, 2.0664062, -0.54052734, -0.94091797, -2.9726562, -0.2668457, 1.2148438, 1.2832031, -0.2565918, 2.3984375, -2.2402344, -0.14538574, 2.5957031, -0.0058631897, -0.08093262, 0.9003906, -1.1142578, -0.20214844, 5.03125, -0.3803711, 4.8398438, 0.2841797, 0.6821289, -0.19848633, 1.3769531, 0.18518066, -1.2597656, 0.12475586, 2.0332031, -0.02281189, -0.31713867, -0.9243164, 1.640625, 0.32250977, -2.9414062, -1.5771484, -1.2832031, -0.7285156, -3.0097656, -1.1005859, -0.96777344, 0.44482422, 2.5292969, -0.1928711, -4.0859375, -1.4453125, -1.0009766, 1.6025391, -0.70458984, -4.203125, 0.7104492, -2.0214844, -0.45581055, -2.6484375, 0.97021484, -0.32763672, 0.35986328, -3.1425781, 2.8632812, 1.5087891, 0.090026855, -1.1591797, -1.1210938, 0.97558594, -1.4082031, -2.1074219, 1.1044922, 0.02986145, 0.47680664, 1.8564453, 0.20056152, -1.7568359, 0.35913086, 0.8486328, 0.67822266, -1.2255859, -0.15405273, 0.41870117, 2.3027344, 0.75439453, -3.1835938, 0.06463623, 0.04736328, 1.6113281, 1.3496094, -1.359375, -1.0996094, -1.0126953, -0.83251953, -0.47436523, -1.0136719, 1.5390625, -1.9863281, -1.7167969, -1.5527344, -2.7109375, -1.8896484, -3.109375, 2.25, 0.097839355, -0.6333008, 0.6484375, -0.5957031, 0.5029297, -2.5019531, -0.81396484, -0.85009766, 0.7421875, 2.1054688, 2.8496094, 0.24072266, -0.5229492, 1.3808594, 0.31298828, -0.5625, -1.3173828, 1.8037109, 0.7866211, 1.2646484, 2.25, 0.93310547, 0.82470703, 2.9746094, 2.5410156, -0.0009646416, 0.8535156, -0.20898438, -1.5292969, -1.3710938, -1.2402344, 2.421875, 0.004508972, -0.3852539, 1.5078125, -0.8535156, 2.9765625, 1.5644531, -1.5507812, 2.1132812, -0.8642578, -0.92041016, -1.6191406, 0.23718262, 1.1337891, -0.032196045, 0.14733887, -0.20629883, 1.0117188, 3.6054688, 0.64501953, -1.5263672, -1.1845703, 0.9794922, 0.9223633, -0.32788086, -0.9472656, -1.53125, 0.6381836, 0.14807129, -1.1884766, 1.2666016, 1.4414062, -0.64697266, 0.7285156, -0.58984375, -0.42285156, 1.9101562, 1.0722656, -3.7597656, 0.36938477, -0.9951172, -0.12731934, 2.6601562, 1.5488281, 1.1943359, -1.4492188, -0.38720703, 1.4960938, 0.7270508, 3.2773438, 0.9951172, 0.265625, 1.7080078, -2.0605469, -1.6337891, -0.45117188, 1.0439453, 0.32641602, -0.47631836, 1.8066406, 5.5820312, -0.007331848, -2.4589844, 0.80078125, -1.3769531, 1.2861328, 1.4140625, -0.24768066, 2.296875, -0.21655273, 1.9814453, 1.0703125, 0.22497559, 1.4970703, -1.0351562, 0.49145508, 0.5019531, -3.3925781, 0.6411133, -0.05126953, -0.7128906, -0.36791992, -1.5917969, 0.79833984, -0.6113281, -1.1181641, 2.328125, -2.7519531, 1.2294922, 3.0546875, -1.1289062, -0.2705078, -1.7617188, -1.5917969, 0.08441162, 2.25, -1.2636719, 0.49926758, 1.3613281, -1.8769531, -0.69677734, -2.1640625, 1.4667969, -2.2167969, -0.16040039, -1.765625, 0.34033203, -0.053710938, 0.49389648, -1.8476562, -0.14160156, 0.73046875, -0.91796875, 0.11883545, -0.90966797, -1.0761719, 0.16186523, 0.9897461, -2.2304688, 2.1132812, 0.91259766, 2.9589844, 0.20605469, -2.6601562, -0.5986328, 0.30078125, 1.4101562, 1.2236328, -1.4726562, -0.45092773, -1.1083984, 1.3847656, 0.40698242, -0.9848633, 1.4345703, -3.2675781, 0.39794922, -4.4453125, 1.0107422, -0.39868164, 0.8388672, -0.4255371, -0.019577026, -0.4128418, -1.3896484, 1.78125, -1.9033203, 3.2265625, 0.34643555, 0.42333984, -1.96875, -1.9814453, -0.8178711, -0.23840332, -3.4394531, -0.1161499, -0.5283203, -1.6533203, -2.7109375, -2.2519531, 0.09790039, -1.1132812, -0.53027344, -0.94677734, 0.34179688, -2.4042969, 0.015686035, -0.9399414, 0.4963379, -0.55029297, -0.18127441, -0.8701172, 2.046875, -1.5087891, -0.4206543, -0.8696289, -1.1367188, 0.90625, 1.7041016, -0.79296875, 0.6044922, -0.044036865, -0.3034668, 0.45239258, -0.38671875, -3.34375, 0.6230469, 1.9082031, 0.13952637, 1.2519531, -2.2617188, -0.9091797, -1.8359375, 0.6425781, 3.9628906, 0.9223633, 0.078186035, -1.2148438, -0.32788086, 1.4833984, 0.23364258, -1.5224609, -0.03652954, -1.3115234, 3.3398438, -4.4023438, -0.4411621, 1.3554688, 3.0117188, -3.7578125, -0.5053711, 0.39013672, -0.6303711, 2.390625, -0.32958984, 0.24963379, 0.3203125, 0.4650879, -0.64453125, 2.6445312, 1.4189453, 0.46826172, -0.6816406, -0.5551758, 2.078125, 0.66845703, 1.3701172, 0.95410156, 0.71777344, 1.9892578, 1.203125, -1.4960938, 0.95703125, -0.11779785, 0.16821289, 0.36743164, 1.3457031, -2.1191406, -0.9345703, -1.1552734, 0.8964844, 0.9291992, -0.8105469, -0.34375, 1.6669922, 0.90283203, -0.65625, -0.49243164, 1.3134766, -0.62597656, -0.8276367, 1.1416016, -0.07946777, -0.19482422, 0.63671875, -1.1640625, 0.31152344, -1.2695312, 2.3613281, -0.36083984, -1.6230469, -0.96533203, 2.2539062, 0.25268555, -2.6582031, -0.79003906, -2.8808594, -1.4501953, 4.3710938, 1.3476562, -1.8203125, -2.0078125, -1.3203125, 1.3701172, 2.1875, -0.43188477, -0.6142578, 0.35864258, 1.0634766, -0.7104492, 1.2460938, 2.0722656, 1.4501953, -2.0800781, 0.95410156, -1.1767578, 0.52001953, 1.7490234, -1.4765625, 1.328125, 3.3867188, -0.37036133, 0.88720703, -0.8041992, 4.0117188, -2.1621094, -0.30249023, 4.1679688, -0.091430664, -0.7675781, -2.4511719, -3.2265625, 0.67285156, -3.3242188, -0.6254883, 0.9301758, -0.0026073456, -0.85498047, 0.4025879, 0.17541504, -3.6152344, -3.4082031, -2.7949219, 1.7646484, -3.4765625, -1.0556641, -0.7685547, -0.26391602, -2.8789062, -0.9399414, -0.006980896, 2.1601562, 0.86376953, -0.72998047, -1.7304688, 1.2773438, -2.0195312, 0.4572754, 0.5136719, 0.010253906, 0.68652344, -0.8935547, 0.18383789, -1.171875, 0.12854004, 1.1542969, -1.4345703, 3.5488281, 2.890625, 0.83740234, -1.0507812, -0.11627197, 0.3059082, 4.2695312, -0.8647461, -2.0371094, -2.6679688, -0.79296875, -0.9404297, -0.3083496, -0.19885254, 0.6459961, -2.3164062, 2.2324219, 0.6035156, 1.0683594, 1.8974609, -0.54248047, -1.0175781, 0.103637695, -0.74853516, -1.8496094, -2.0097656, -1.8730469, 0.10107422, -2.171875, 0.30810547, -1.4316406, 0.29418945, -0.1463623, -0.11352539, -0.7558594, 1.8994141, 3.1035156, 1.9580078, 3.4316406, 1.0019531, -0.8676758, 1.5546875, -1.9541016, 0.6147461, 1.0117188, -1.5039062, -0.28222656, 2.5410156, -0.2553711, -0.50634766, -1.6630859, -0.8232422, -0.8354492, -1.3535156, -0.7651367, -1.0664062, -1.9755859, -0.95410156, -0.06890869, -0.52490234, 1.3662109, -1.84375, 0.43066406, -0.74560547, 1.4355469, -2.1328125, 0.3515625, -0.9238281, 1.6386719, -0.007850647, 2.4628906, 1.578125, -0.32006836, 2.4609375, 0.80615234, 2.7695312, -2.9179688, -0.51660156, -0.9379883, -1.1875, -1.4609375, 0.064453125, 0.97021484, 1.4501953, 0.17834473, 2.0683594, 0.5649414, -1.0878906, 1.6464844, 0.16040039, -2.5214844, -0.75927734, -0.026123047, -0.9604492, 1.2763672, 0.082214355, -3.6347656, -0.69677734, 1.7021484, 0.24938965, 1.640625, 0.13745117, -1.8427734, -1.2158203, -1.4228516, -1.6591797, -0.03100586, -1.6582031, 0.68603516, -1.6171875, -0.31030273, -1.8115234, 2.3183594, 0.61083984, 0.2734375, -0.9140625, 1.9414062, 0.043121338, -0.7709961, -0.75439453, 0.30249023, -1.6943359, -0.3095703, 0.07611084, 1.5673828, 1.5751953, -0.546875, 1.4755859, -1.4443359, -1.0087891, -2.2363281, 3.6757812, -1.9511719, -0.3623047, 1.6865234, 2.0488281, 1.3330078, -1.2265625, -0.52783203, -1.7919922, 2.796875, 0.43530273, 1.0527344, -1.2109375, -0.6245117, -1.1259766, -4.3203125, -1.0214844, -0.80810547, -1.7636719, 1.3818359, 0.17370605, -0.48046875, 1.0605469, -0.43896484, 0.08703613, 0.3408203, -0.2607422, -1.3857422, 1.2392578, -1.8964844, 0.5107422, 0.4975586, 1.4179688, 1.0595703, -0.36914062, -1.3515625, -0.7182617, -1.4765625, 2.453125, -1.1103516, 1.1035156, 0.6459961, -0.07244873, 1.59375, 2.5859375, 1.3183594, -0.051574707, 1.0136719, -1.7363281, -0.09387207, 1.1337891, -1.6416016, 1.5986328, 0.86572266, -0.6386719, 0.9892578, -0.52001953, 0.017318726, -1.4121094, 0.5180664, 0.2998047, 0.16186523, -0.57128906, -0.56591797, 1.7763672, 0.50390625, 0.22070312, 0.62109375, -0.4267578, -0.671875, -1.9638672, -2.3398438, -0.8486328, -2.6777344, -0.8149414, -0.7685547, 2.1191406, 1.5771484, -0.22460938, 1.7646484, 1.8164062, 1.1035156, -1.4960938, 1.3222656, -0.94091797, 2.8730469, 1.2226562, -2.3496094, -3.0117188, -3.0234375, 0.47436523, 2.015625, 0.6142578, -1.7714844, 0.2980957, -3.0351562, 1.8759766, 0.09857178, 2.9277344, 2.4257812, 1.2089844, -0.14086914, -0.04864502, 0.80126953, -0.22924805, 2.4179688, -0.024490356, 1.9121094, 0.21496582, 1.5087891, 2.2402344, -1.0947266, 1.5732422, -1.0058594, 1.09375, -2.2128906, -1.8349609, 2.2382812, -2.6679688, -0.76904297, -0.92089844, 0.5205078, -2.3496094, 3.1074219, 1.7421875, -0.29589844, -0.49145508, 0.89990234, -0.7026367, 1.4960938, 1.6357422, 1.4619141, 0.14477539, -0.16064453, 0.091674805, 0.91748047, 1.3876953, -0.70703125, 0.8017578, 0.70996094, -0.025177002, -0.31835938, 4.1835938, 1.7851562, 2.3613281, 1.765625, 2.0136719, 2.6953125, 0.016647339, 3.0488281, -0.5576172, 1.8808594, 1.8505859, -1.9257812, -1.3759766, 1.7636719, 2.828125, -0.54052734, 0.4794922, 2.0585938, 0.60009766, -0.5625, -0.89697266, -0.11303711, 0.14294434, -2.90625, 2.0625, -1.1875, 0.7783203, -2.1386719, 2.0820312, -1.1328125, 0.91259766, -0.27612305, 0.17114258, 0.112976074, -0.8510742, -1.0683594, -0.42358398, 0.43481445, -1.2734375, -2.5566406, 0.074645996, -0.80322266, -2.2578125, -0.43139648, 3.0527344, 1.3496094, 1.4248047, -0.2541504, 2.6875, 0.45214844, 2.2519531, 1.1826172, 0.6113281, 0.50927734, 0.19519043, 2.2753906, 0.14868164, -3.0371094, -0.69970703, -0.17883301, -2.7324219, -3.7167969, 0.84472656, 0.9760742, 1.171875, 0.4104004, -1.9267578, 1.0908203, -1.1416016, 2.0292969, -3.7617188, 1.03125, 0.6567383, -3.5800781, -2.203125, -1.6933594, 0.9482422, 1.4951172, 1.2939453, 0.20458984, 2.0429688, 0.5258789, 2.03125, 0.47851562, 0.7192383, -1.5166016, 1.8076172, -2.2929688, 2.9042969, 1.1503906, 0.07702637, -0.5419922, 3.2070312, -0.4260254, -0.1496582, -0.24401855, -1.8330078, 0.7421875, -0.87939453, -1.1132812, -0.1015625, -1.1279297, -3.0292969, -1.6308594, -0.3618164, -0.66064453, -0.9111328, 0.8930664, 3.4433594, -0.41357422, -0.49536133, 1.1132812, -1.0224609, 1.7167969, -0.8378906, -0.81640625, -1.2578125, 0.94921875, 1.7646484, -0.47045898, -2.8203125, -0.31298828, 2.0722656, 0.94140625, 0.19519043, -0.2121582, -2.0488281, 1.3056641, 0.68310547, 2.8222656, 0.87939453, -1.3427734, 1.8388672, 0.13903809, -0.031707764, 3.765625, -0.9248047, -0.703125, 1.1533203, -2.7265625, -0.7138672, 0.5541992, -0.74560547, 0.07055664, 5.890625, 0.6958008, -0.94677734, -1.4960938, -4.15625, -1.4990234, -1.3867188, 2.6464844, 0.57666016, -0.87646484, 0.83203125, -0.15429688, 2.2070312, -0.25610352, 0.22167969, -0.24609375, -1.0224609, 0.84765625, -0.91796875, 1.9580078, 1.9521484, 1.4287109, -0.22595215, 2.6230469, 1.6123047, 0.07397461, 0.90527344, 0.5053711, -0.38867188, -2.5058594, -1.0712891, -1.6806641, 0.7290039, 0.79833984, 0.87597656, 1.3544922, -0.016082764, -1.4101562, -4.7851562, -1.4345703]}, "B079YB3FTK": {"id": "B079YB3FTK", "original": "Brand: Flame King\nName: Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack)\nDescription: Larger 30 pound size for added use time on the job or at home.\nFeatures: High grade steel welded construction\nPremium OPD valve assembly\nX-ray and hydrostatic tested\nPowder coated for long lasting exterior protection\n", "embedding": [-1.6455078, 1.6347656, 1.5703125, 0.009864807, 0.21191406, -2.3769531, -0.49975586, 1.0273438, 1.6064453, -1.6640625, 2.4433594, 0.88671875, -0.7944336, -2.6347656, 1.6582031, 0.93603516, -1.2675781, 2.4160156, 0.86279297, -1.0302734, 2.1816406, 0.91796875, -1.4169922, -1.5419922, 0.5966797, -2.5214844, 3.4492188, -3.2851562, -0.9042969, -0.3269043, 0.9423828, 0.0904541, -0.022018433, 1.8378906, -0.6298828, -0.7807617, 1.6152344, -1.9023438, -5.0390625, -2.2109375, -2.6875, -0.6582031, 1.5488281, -0.95703125, -0.8173828, 0.77001953, -0.15600586, -2.6210938, 0.9760742, 0.85546875, 0.98291016, 1.4414062, -0.78222656, 1.0664062, 0.84277344, 2.6289062, 0.94677734, -3.2265625, -0.20019531, 0.72753906, 2.0722656, 0.31298828, -2.3125, 2.1933594, -0.47485352, 1.2392578, 0.27954102, -0.47387695, 0.89208984, 1.8623047, 0.8129883, 1.2216797, 2.3320312, -1.3818359, -0.91503906, 1.5273438, -3.6386719, 0.29882812, 1.2197266, -0.4633789, 0.5629883, 2.0957031, 0.09844971, -4.1835938, -0.58935547, -1.09375, -0.1652832, 0.32421875, 1.1943359, 0.33984375, -1.4580078, 2.5957031, 0.24353027, -3.6171875, 2.8046875, -0.6411133, 2.0996094, 2.1835938, 2.2246094, -0.10913086, 1.6806641, -0.30908203, -0.6586914, 0.89501953, -0.87060547, -1.1835938, 0.14697266, 0.90722656, -2.2207031, 1.7050781, -0.20739746, -0.14562988, 1.4511719, -1.3681641, -0.3725586, -1.6748047, -1.3798828, 1.8867188, 1.7402344, 0.13598633, 1.8867188, -1.6884766, 2.0605469, -1.0205078, 3.2089844, 1.6826172, -1.3066406, 0.22680664, 5.6796875, 0.7441406, 2.4472656, -0.5415039, 4.1367188, -0.94921875, 0.23657227, -2.6542969, 0.9707031, -1.640625, -1.5576172, -2.1425781, -3.9941406, -1.640625, 0.49169922, -0.5864258, -2.71875, -1.0908203, -0.12890625, 0.6118164, -0.96777344, -2.484375, 1.8935547, -0.7558594, 0.30541992, -0.5385742, 2.3769531, 1.1708984, -1.4619141, -4.0898438, 1.6582031, 2.1503906, 1.9335938, -0.20471191, 0.16333008, 0.04812622, -1.1796875, -2.5019531, 0.13598633, 0.9501953, -0.70458984, 3.0917969, -0.21887207, -1.4111328, -1.8652344, 1.7783203, -1.2089844, -0.8876953, 0.67333984, 1.9208984, -0.50634766, 0.036987305, -3.0742188, -0.089904785, -0.41333008, -1.7568359, 2.5273438, 0.09484863, -0.37280273, -1.0419922, 1.2617188, -0.107666016, -1.0234375, 1.4931641, -1.5, 1.1181641, -1.1972656, -0.9296875, -2.7539062, -3.2578125, -0.02015686, 1.8681641, 0.02444458, -1.4199219, 1.9169922, -0.6118164, -3.0410156, -0.7138672, 0.061523438, 0.72314453, 2.4726562, 1.1933594, 0.6821289, -0.5878906, 2.3320312, -3.1660156, -0.48388672, -2.2832031, -0.3203125, 2.3476562, 1.8652344, 0.6582031, 0.8886719, -1.1787109, 0.8461914, 0.6489258, -0.028198242, 1.0058594, 1.5917969, 1.5400391, -3.0292969, -1.6796875, 1.1884766, 2.1542969, 0.03829956, 0.5102539, -1.6621094, 1.0859375, -0.61279297, -1.4257812, 0.9897461, 1.0019531, -0.40014648, 0.51416016, -1.8476562, 0.55371094, -2.1601562, -0.24060059, 0.61083984, 0.12902832, 0.16003418, 0.43774414, 1.0986328, 0.25268555, -0.7988281, -0.51953125, -1.1787109, 0.25585938, 2.453125, 0.9433594, 0.5019531, -1.3974609, 2.578125, -2.0117188, -0.11315918, 1.0664062, -1.0644531, -0.59033203, 3.9140625, -1.5830078, -2.0234375, 1.0966797, -1.6152344, 0.66015625, 2.8398438, 0.96191406, 0.5942383, 1.7255859, -1.2773438, 3.4433594, -1.5458984, 1.8603516, 0.23742676, 0.33740234, 1.3466797, -2.4980469, 1.3701172, 0.007701874, -0.017868042, -1.3388672, -3.2363281, -0.11413574, 4.296875, -0.8642578, -1.8779297, 0.69628906, 0.47509766, 0.37719727, 2.859375, 1.1503906, 1.8994141, -0.796875, 0.3400879, 0.38964844, -1.5332031, -0.8701172, 0.3869629, -0.7260742, 0.9667969, -0.9980469, 0.15722656, -1.6152344, -2.0800781, 0.8798828, -1.9306641, 1.0449219, 0.12310791, -1.0234375, 1.5576172, -3.1582031, 1.6289062, 1.4658203, 0.703125, 3.5957031, 1.0146484, -1.3222656, -0.5957031, 2.1464844, -1.7685547, 1.7109375, -0.34472656, 0.86621094, 0.07293701, -1.6347656, 0.7216797, -1.4609375, -1.0341797, -0.16845703, -1.6640625, -2.8496094, 0.9501953, -2.9003906, 0.3232422, -0.14331055, -1.8867188, 1.3291016, 0.6665039, -1.5576172, -0.29492188, 0.40014648, -0.33325195, -2.1640625, 0.46240234, 4.0507812, -0.6767578, -3.1054688, 0.9970703, 0.022506714, -0.5366211, 1.9814453, -0.71777344, 0.05609131, -0.4650879, -1.0664062, -0.23999023, -0.91308594, -1.2060547, -2.5527344, 3.6035156, -2.1582031, 0.30078125, 0.7363281, -1.3876953, -0.6176758, -0.9814453, -1.6699219, -3.0976562, -0.36450195, -1.2675781, -0.3076172, 0.80029297, 1.2011719, -0.8701172, -0.99560547, 1.0498047, -1.9140625, -2.03125, 0.94091797, 1.3300781, -1.8134766, -2.6367188, -4.4335938, 0.59716797, -0.44433594, 0.07910156, -0.45214844, 0.8647461, -1.3017578, 0.7729492, 0.5942383, 0.4716797, -0.16882324, 0.67089844, -0.6635742, -3.2519531, 0.19812012, -0.55908203, -0.96484375, -2.15625, -0.50878906, 0.13476562, -0.3725586, -0.71533203, 0.9423828, -1.3476562, 2.3496094, 1.1083984, -3.7617188, 2.3203125, 1.171875, 0.34301758, 3.3945312, -2.7207031, 0.09197998, -1.4873047, -1.0878906, 4.7734375, 0.328125, 0.31518555, 1.3662109, -1.0625, -0.16455078, 0.41748047, -1.9990234, -0.14099121, 1.1298828, 4.3164062, -0.59033203, -0.5126953, 0.60058594, 1.5556641, -3.0078125, -0.43237305, 1.2744141, -0.18432617, 1.1416016, 0.6958008, -0.84765625, 0.6948242, -0.09265137, 0.23181152, 3.2324219, 1.6796875, -0.6665039, -1.1044922, 0.43579102, -1.15625, 0.6010742, 3.9375, -0.43432617, 3.1464844, 2.2675781, 1.3408203, 0.15148926, 0.16577148, 1.2744141, 1.3945312, 0.5576172, 2.2207031, -0.027923584, 0.9785156, -1.3417969, -0.4116211, 1.2402344, -1.6035156, 1.1015625, 1.3583984, -0.09832764, -0.28027344, -0.39331055, -0.37182617, -0.6713867, -2.1835938, 4.234375, -1.7099609, 2.3554688, -1.0722656, -2.2207031, 1.2158203, -3.1894531, 2.6113281, 0.4086914, 1.1523438, -1.5908203, -0.6411133, -0.89990234, -3.78125, -0.23596191, -1.484375, -1.6455078, 2.5488281, 1.1074219, -3.4824219, 0.40234375, -1.4824219, 0.55908203, 2.1699219, -3.3789062, 1.3046875, 0.82421875, 0.20153809, -1.8876953, -0.46264648, 1.0556641, 0.24768066, -1.6982422, 0.9711914, -1.0048828, 1.0585938, 0.1274414, 0.18261719, -0.92578125, 0.19714355, -1.9326172, 2.1640625, -0.26098633, 2.4960938, -0.15234375, 2.1542969, 1.8876953, -1.4648438, -1.15625, -0.37329102, -3.9511719, 1.7558594, -1.6835938, -0.375, 0.4892578, -0.94921875, 0.8691406, -1.4443359, 0.2232666, -2.0175781, -1.4755859, 0.23327637, 2.3867188, -2.9882812, -0.68408203, 0.055236816, -0.28051758, -3, -0.16381836, 0.2705078, -1.9580078, -0.5517578, 0.953125, -1.8027344, 0.42016602, 1.6650391, 0.7084961, 0.03845215, -1.2890625, 1.7929688, -0.20532227, -0.48120117, -2.2480469, 1.4550781, 2.4335938, 0.83691406, 1.2919922, 1.9023438, 1.7255859, -1.0546875, -0.6723633, -0.6152344, 1.3037109, 1.4335938, -3.6894531, -1.8349609, 0.79589844, -0.08874512, -4.1914062, 0.9316406, -1.859375, 1.8496094, 3.4746094, 0.59033203, 0.37524414, 0.3955078, -0.50634766, -0.71972656, 1.8515625, 0.19787598, -0.7792969, 1.9472656, -1.0869141, -1.2626953, -1.4169922, 2.0957031, -2.3144531, -0.44677734, -0.52246094, 0.34765625, -3.9746094, 1.0332031, 2.3242188, 2.4589844, -0.92871094, 0.06561279, -1.0517578, 0.6010742, 0.05090332, 0.24279785, -0.0769043, 0.29760742, 0.27368164, -0.06500244, 2.2089844, -1.3369141, 0.9145508, 1.7597656, -0.5136719, -0.9248047, -0.6743164, 0.6303711, -2.8359375, 1.0126953, 0.5722656, 0.35375977, 2.0253906, -1.2001953, -1.3876953, 0.34204102, -0.5307617, -0.37402344, 0.4194336, 0.19995117, 0.10272217, 3.3652344, -0.36279297, 0.19628906, 1.6552734, 1.7128906, -0.17614746, 2.2558594, -2.6328125, -0.7807617, -1.2695312, 1.4023438, -2.0605469, 1.5849609, 2.2636719, -0.09222412, -0.7363281, 2.6835938, 0.40551758, -0.43774414, 0.6503906, 0.8979492, -3.0351562, -2.7753906, -0.6928711, -0.23742676, 2.0117188, -0.21984863, -1.4228516, 0.73095703, 2.8457031, -0.20739746, 0.74658203, 0.5966797, -0.7573242, -1.9716797, -0.8354492, -2.078125, -1.5390625, 2.0273438, -0.29003906, -0.9296875, 1.7919922, -0.99365234, -0.5263672, -0.97265625, 1.7412109, -0.46899414, 0.11895752, -1.3574219, -0.50146484, -0.54833984, 0.48706055, -1.46875, -0.10064697, -0.3413086, 0.82958984, 0.51953125, -0.7470703, 2.078125, -0.22436523, 0.2890625, 0.13562012, 0.6870117, -0.6850586, -0.80322266, 2.9941406, -0.50341797, 1.2285156, -0.24511719, -0.32104492, -0.42626953, 3.4394531, 1.3681641, -0.2553711, -0.6323242, -0.19067383, -1.6855469, -2.96875, -2.796875, -1.7675781, -1.3164062, -0.011520386, -2.1660156, -0.43579102, 0.8125, -0.70751953, -1.8378906, -1.6044922, -0.87841797, -0.45043945, -0.78808594, -2.3828125, 0.42163086, -0.5410156, 0.32666016, 0.28930664, -2.3574219, 0.6977539, -2.5898438, -2.1601562, 3.21875, -0.51123047, 1.1318359, 0.6567383, -2.3984375, 1.2910156, 2.6054688, -0.88134766, -3.7910156, 2, -1.3486328, -1.1337891, 0.6689453, -2.6601562, -1.7773438, 1.6767578, 0.039611816, 2.6035156, 3.4980469, 1.2460938, -2.1230469, -1.3203125, 0.27978516, 1.0126953, 0.30932617, 1.625, 3.1582031, 1.5214844, -0.30810547, 1.6865234, -1.6337891, -1.3955078, -1.8300781, -0.8510742, 0.8022461, -0.14416504, 0.81591797, 0.53564453, 1.4443359, -0.49487305, -0.32714844, -0.0029850006, -0.84277344, -1.7988281, -0.94921875, 2.3339844, -2.4101562, 3.6289062, 2.8457031, -2.4394531, -1.0966797, -0.80078125, 0.12384033, 2.21875, -1.2441406, -1.9658203, 1.7021484, -0.5292969, 1.3710938, -0.046783447, 1.7685547, -0.11663818, 0.51220703, -0.41870117, 0.3425293, 3.9433594, -0.17590332, 2.5527344, -0.14831543, -0.92578125, 1.9228516, 1.734375, 3.5117188, -1.1845703, -0.60791016, -0.5332031, 0.30688477, -0.95703125, -1.2871094, -0.4741211, -2.3554688, -2.2089844, 2.2363281, 0.024902344, -4.3164062, 0.08227539, -0.08856201, -1.3759766, -0.45361328, 0.26879883, -0.6328125, -0.5180664, 1.328125, 0.56884766, -1.7714844, 0.78027344, 1.1347656, 0.60253906, 1.4404297, -1.0595703, 0.84716797, 1.2041016, -0.56933594, -0.8276367, 0.6035156, -2.6953125, 2.75, 0.5620117, 2.2421875, 1.5527344, -0.63916016, 1.6650391, 0.7495117, 1.0478516, 3.4394531, -0.29052734, 0.4921875, 0.15612793, 0.9736328, -0.034179688, -1.03125, -0.072753906, -1.1376953, 2.1386719, -0.67578125, -0.24206543, 2.5898438, -0.42504883, -0.45043945, -1.1640625, 1.1572266, -1.6074219, 2.1054688, -0.74365234, -0.86328125, 1.3574219, 0.34887695, 1.8632812, -1.0390625, 1.2382812, -0.7636719, 0.9633789, 1.2246094, 0.40161133, -1.8164062, -1.0195312, -2.6113281, 0.94677734, 1.4550781, 0.99853516, 0.09320068, 0.34960938, -0.72753906, 0.3317871, 0.107299805, -1.3300781, -1.8632812, 1.9824219, 1.5371094, 1.9150391, 1.4882812, -0.64160156, 3.421875, 2.2480469, -2.0566406, -3.0898438, 2.4863281, -1.1425781, -1.5214844, 1.28125, -0.8339844, 1.8261719, -2.1328125, 1.3193359, -2.4511719, 1.1435547, -1.1259766, 0.0050621033, 3.171875, 0.057739258, -0.7192383, 2.9492188, 2.8945312, 0.31298828, 1.2910156, 0.81103516, 1.1425781, -0.32299805, 0.117370605, 0.99072266, 0.5048828, -2.5371094, 3.3300781, 1.1923828, -0.13757324, -1.3955078, 1.9091797, 0.40234375, 0.42895508, 1.4257812, 0.58935547, 1.4912109, 1.3652344, 1.3769531, 0.041229248, -1.8574219, -0.20275879, -1.1103516, -1.0947266, 1.6484375, -2.7519531, -0.6269531, 1.3847656, -1.9726562, -2.1054688, 4.0273438, -1.1025391, 0.6533203, 0.51708984, -3.0117188, -2.8632812, 1.2246094, 0.60791016, -0.36743164, -1.1826172, 0.19958496, 2.5253906, -0.23168945, -0.80908203, -1.4628906, -0.36401367, 0.7973633, -1.6552734, 1.1044922, -0.035247803, 0.14660645, 0.48950195, -0.9086914, 0.9589844, 0.3803711, 0.18359375, 1.75, -0.76708984, 0.20935059, 0.2619629, 0.6894531, -3.2792969, -1.484375, 0.94189453, 0.8203125, 1.2080078, -0.52246094, -4.3671875, -2.7207031, -0.33569336, -0.3942871, -2.0097656, -0.50146484, 0.5644531, 1.7441406, 1.0722656, -0.48950195, 1.1298828, -0.26708984, 1.9667969, 1.7685547, -1.7529297, 0.54003906, -0.11743164, -0.47924805, -0.5102539, 2.6425781, 0.56689453, -0.8046875, -0.0758667, 1.7617188, -1.03125, 0.14611816, 0.15344238, -1.5800781, -0.2836914, 0.7314453, 0.75634766, 1.890625, 0.9448242, -0.12438965, -1.5478516, -0.25927734]}, "B07Q47ZGK4": {"id": "B07Q47ZGK4", "original": "Brand: Flame King\nName: Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White\nDescription: \nFeatures: High-grade steel welded propane cylinder\nPremium POL valve assembly\nX-ray and hydrostatic tested\nDot approved\n100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill\n", "embedding": [-1.1660156, 1.0302734, 1.8251953, 1.546875, 1.7978516, -2.0820312, 0.76220703, 0.39160156, 0.6777344, 0.14550781, 2.0839844, 0.2434082, -1.0234375, -3.0195312, 2.4941406, 0.2355957, 0.9165039, 1.3837891, 0.8574219, -0.034851074, 1.8603516, 1.0595703, -0.80615234, -1.4931641, 0.9165039, -0.7993164, 2.7011719, -2.6660156, -1.5, -1.3974609, 1.0126953, -0.47705078, -0.020141602, 1.1757812, -0.62597656, -2.2167969, 1.3701172, -1.1972656, -5.265625, 0.32592773, -2.2226562, -1.3505859, 0.24304199, -0.734375, -1.5957031, 0.50634766, 0.15551758, -1.0654297, -1.046875, 0.95996094, 0.26464844, 1.4990234, -1.5332031, 0.90966797, 0.1574707, 2.2929688, 0.5644531, -3.1601562, -0.75, -0.23132324, 1.4726562, 0.49902344, -3.2480469, 1.4306641, -0.2553711, 2.3320312, -0.0031337738, -1.4960938, 1.1982422, 2.3789062, 1.9404297, -0.18200684, 1.4287109, -1.9072266, -0.46557617, 0.79003906, -2.5390625, 0.13537598, 0.8183594, -0.5131836, 0.8647461, 0.89453125, 0.9091797, -3.3945312, -1.2939453, -2.0019531, 0.20056152, 0.5048828, -0.47607422, 0.9892578, -0.6767578, 1.2714844, -0.43432617, -2.875, 1.7998047, -0.07287598, 1.3769531, 2.421875, 1.4101562, -0.40625, 1.75, -0.0024299622, -0.5239258, -0.09136963, -1.1835938, -1.6005859, 0.85009766, 1.0361328, -2.3671875, 2.1914062, -0.44433594, -0.74316406, 2.6582031, 0.01737976, 0.7392578, -0.8388672, -0.08502197, 1.6367188, 1.6572266, -1.2998047, 3.6308594, -2.6347656, 1.9736328, -0.24560547, 1.5332031, 0.92871094, -0.42358398, -0.0029525757, 5.3359375, 0.9091797, 1.6162109, 1.1367188, 4.1171875, -2.0253906, -0.67871094, -1.8242188, -0.22399902, -1.34375, -1.3632812, -1.0791016, -3.4160156, 0.04260254, 1.6210938, -0.32128906, -2.9394531, -0.60595703, 0.9165039, -0.5488281, -1.3876953, -2.1816406, 0.78759766, -1.0986328, 1.078125, -0.2944336, 2.0566406, 1.2373047, -1.2148438, -3.3457031, 1.3525391, 0.95703125, 1.2304688, -0.08728027, -0.42993164, 1.2177734, -1.2333984, -2.0585938, 0.82470703, -0.6020508, -2.0976562, 2.0078125, 0.28881836, -1.8310547, -0.45239258, 1.3652344, 0.021026611, -0.77978516, -0.453125, 1.4052734, 1.0634766, 0.5546875, -3.2792969, -0.55615234, 0.7993164, -2.1953125, 1.6523438, 1.0664062, -0.6171875, -1.2587891, 1.8056641, -0.14404297, -2.0097656, 1.7792969, 0.6088867, 0.08746338, -0.18457031, -2.2949219, -2.0605469, -2.6855469, 1.0458984, 2.0253906, -1.1533203, -1.3496094, 1.4804688, -0.5253906, -2.6445312, -2.4238281, 0.20043945, -1.2783203, 1.421875, 1.6220703, -0.37573242, 0.057556152, 2.0546875, -1.9013672, -1.5478516, -2.7070312, -0.38085938, 2.0644531, 1.6669922, 2.4179688, 0.61865234, -0.32177734, 1.5537109, 0.2388916, 1.3300781, -0.50439453, 1.5947266, 2.2558594, -2.4960938, -1.3964844, 2.1171875, 1.9013672, -0.52001953, 1.4619141, -1.9199219, 1.828125, 0.12695312, -0.057006836, 0.8598633, 0.375, 0.024414062, 0.48876953, -2.0703125, -1.8417969, -3.625, -0.9760742, 0.29492188, 0.56884766, 0.61279297, -0.91259766, 0.8779297, 1.5332031, 0.033691406, -0.6269531, -1.6074219, 1.7314453, 0.8276367, 0.11566162, 0.40942383, -3.4589844, 1.9111328, -2.3105469, -1.0087891, 0.7636719, -1.1953125, -0.98339844, 3.0761719, -0.062683105, -2.1679688, 0.5996094, -0.9057617, 0.2980957, 2.8378906, -0.15881348, 0.43286133, 2.6855469, -0.70996094, 3.9472656, -0.92822266, 2.0253906, -1.0048828, -0.8808594, 0.8984375, -3.2988281, -0.0078086853, 1.2373047, 1.2949219, -0.26733398, -2.3847656, 0.7651367, 5.0859375, -1.5751953, -1.3974609, 1.5898438, 0.46655273, 0.89990234, 4.125, -0.19384766, 0.6826172, -1.4501953, -0.6123047, 1.1748047, -0.83740234, -0.24475098, 0.8076172, -1.1582031, 1.390625, -0.6298828, 1.0341797, -1.0244141, -0.85546875, 0.80810547, -1.5126953, 1.390625, -1.1259766, -0.30151367, 3.0820312, -3.0585938, 1.4785156, 2.3359375, 0.06842041, 1.8388672, 1.9013672, -0.55078125, 0.703125, 1.9082031, -2.8632812, 1.9472656, -0.51660156, 0.17041016, 0.36206055, -1.7314453, 0.99121094, -1.3164062, 0.2109375, 1.0009766, -0.60009766, -1.6181641, 0.029205322, -3.3496094, 0.1965332, 0.13208008, -1.1230469, 1.953125, -1.1972656, -2.0722656, -0.009178162, 0.16699219, -0.54589844, -1.7285156, 0.28442383, 4.0039062, -0.7949219, -2.3105469, 0.5708008, 0.52734375, 1.0302734, 2.8886719, -1.15625, 0.37036133, 0.41796875, -0.18017578, -0.69384766, -1.2900391, -0.83447266, -1.7509766, 3.4042969, -1.9189453, 2.7871094, -0.26049805, -0.036102295, -0.78759766, -1.140625, -1.4277344, -3.1386719, -0.4182129, -0.0038604736, 2.03125, 0.65283203, 2.5976562, -1.0947266, -1.2744141, 1.5185547, -0.75439453, -2.3671875, -0.0037021637, 0.4790039, -0.7495117, -1.4560547, -5.3710938, 0.078552246, -1.3476562, -0.38964844, -0.41748047, 0.23449707, -1.5751953, 0.10882568, -0.11065674, 0.7871094, 0.50341797, 0.06756592, -0.83154297, -1.9521484, -1.4169922, -0.2770996, -0.9614258, -1.328125, -1.1152344, -0.18481445, 0.003276825, -1.3808594, 1.2128906, -1.0429688, 1.9277344, 0.6567383, -3.5292969, 2.7695312, 2.7070312, 1.3496094, 2.1757812, -3.6074219, -0.5004883, -2.0996094, -0.5073242, 4.1289062, 2.0371094, 1.1699219, 0.84814453, -1.0302734, 0.64697266, 0.36621094, -0.7167969, 1.1015625, 0.71191406, 3.8769531, -0.16186523, -1.0273438, -0.20495605, 1.5087891, -4.125, -0.42773438, 1.3369141, 0.36450195, 1.625, -0.4621582, -0.10864258, -1.7539062, -0.42285156, 1.8486328, 1.5615234, 0.7182617, 0.5786133, -1.5898438, 0.6923828, -0.83447266, -0.55810547, 4.359375, 0.48046875, 2.2070312, 2.2773438, 1.1982422, 1.1523438, -0.8017578, 0.72802734, 1.3232422, 1.1748047, 1.9638672, -0.92529297, 1.8212891, -1.6210938, 0.26416016, 0.19714355, -1.1953125, 0.53466797, 1.921875, 1.8652344, -0.5361328, -0.10809326, -0.96875, -1.09375, -1.2568359, 3.3691406, -0.63427734, 2.6054688, 0.74121094, -0.9003906, 0.77685547, -3.5878906, 2.4804688, -0.6845703, 0.8388672, 0.18640137, 1.3222656, -1.5175781, -3.3730469, -0.5366211, -0.98046875, -1.7949219, 2.6152344, -0.22290039, -2.6386719, 0.32836914, -1.484375, 0.89404297, 1.6630859, -2.5703125, 1.9462891, 0.047454834, 0.8286133, -0.5366211, -0.4975586, 0.5654297, 0.7988281, -3.5117188, 1.1044922, -1.4726562, 1.453125, 0.41430664, 0.005153656, -0.96533203, 0.20983887, -2.2246094, 2.9804688, 0.31079102, 3.1738281, 0.2685547, 1.6259766, 1.7617188, -0.7792969, 0.48583984, -1.3789062, -3.0292969, 1.2714844, -2.8007812, -1.5634766, 1.4433594, -1.6972656, 0.5390625, 0.101135254, 0.85595703, -0.98535156, -0.4501953, -0.37353516, 2.4375, -1.4013672, 0.23742676, -0.11065674, 1.6914062, -1.7568359, -0.7890625, 0.39819336, -1.7949219, -0.5263672, 0.76171875, -1.5185547, 0.21081543, 0.61328125, -0.6401367, -0.1315918, -1.2216797, 1.1005859, -0.026748657, -0.97509766, -1.4228516, 3.8867188, 4.1796875, 0.49609375, 1.4169922, 2.0644531, 2.4648438, -0.58935547, -0.8046875, -1.5, 1.4003906, 0.22570801, -5.0664062, -1.5332031, 0.6904297, 1.0703125, -3.0820312, 1.2050781, -0.38745117, 1.1894531, 2.4082031, 0.6357422, 2.0683594, 0.45336914, 0.18127441, -0.9892578, 0.63964844, 0.140625, -1.6835938, 1.3095703, -0.38085938, 0.85009766, -1.1210938, 2.6171875, -2.6308594, -1.828125, -1.5361328, 1.6806641, -5.4453125, 1.3310547, 2.5078125, 2.5957031, -0.35253906, -1.5722656, 0.6196289, 0.11694336, -0.059417725, 0.27172852, -0.29956055, -0.8828125, -1.9433594, 0.75439453, 1.2109375, -0.7651367, 0.21655273, 2.0644531, -0.6542969, -1.1240234, -0.31982422, 1.6757812, -2.1796875, 0.4567871, -0.49023438, -1.1542969, 2.7148438, -1.5976562, -1.515625, -0.6621094, -0.011810303, -0.53271484, 0.8466797, -0.09100342, -0.79052734, 3.2246094, -0.109802246, -0.08843994, 2.171875, 2.03125, -0.19042969, 2.2675781, -2.1171875, 0.027023315, -0.74316406, 1.4501953, -1.4404297, 2.1855469, 1.0283203, 0.68847656, -0.23291016, 1.7001953, 0.5029297, -0.52783203, 0.5126953, 1.0771484, -3.0351562, -3.4804688, -0.49267578, -0.63427734, 3.3339844, -0.94189453, -1.9023438, -0.4411621, 1.6289062, 0.15637207, 1.9960938, 1.5175781, -1.1337891, -2.6679688, -1.4267578, -2.6269531, -2.09375, 0.07287598, -0.39038086, -0.098083496, 2.1289062, -1.9707031, -1.4199219, -0.13867188, 1.75, 0.6928711, -0.5185547, -0.6040039, -0.3173828, -0.08734131, -0.40185547, -0.96240234, -0.91503906, -1.1191406, -0.16418457, -0.008110046, -0.2421875, 3.203125, -1.1572266, -0.046691895, -0.8886719, 0.5966797, -1.2177734, -1.9375, 2.2382812, -0.83447266, 0.31225586, -1.2353516, -0.08123779, -1.2382812, 1.5595703, 2.0078125, -1.2851562, -0.8432617, 0.4116211, -2.7773438, -4.6132812, -0.9550781, -0.22766113, 0.3425293, -0.20898438, -2.4707031, -2.2207031, 0.9863281, -1.7353516, -1.2001953, -1.7861328, 0.4350586, -0.05923462, -0.5678711, -1.4335938, 3.0429688, -0.38745117, 0.30688477, 0.038391113, -0.57714844, -0.28295898, -1.6806641, -3.0371094, 1.5439453, -2.0292969, 0.96875, 0.52246094, -1.578125, 1.8535156, 1.9941406, 1.3085938, -3.5878906, 3.0878906, -2.5585938, -0.9042969, 2.4003906, -2.4160156, -2.4003906, 0.35327148, -1.0507812, 0.82470703, 2.7695312, 0.8417969, -3.4355469, -1.9277344, -1.2519531, 0.9838867, -0.6191406, 1.4560547, 3.2675781, 2.0175781, 1.1289062, 1.984375, -1.4414062, -2.0117188, -0.74072266, -0.38378906, 0.5175781, -1.4521484, -0.45996094, -1.0039062, 1.8066406, -1.1083984, -0.7807617, -1.2001953, -0.3659668, -0.8095703, -1.2705078, 3.203125, -3.2792969, 2.8183594, 3.2363281, -2.0234375, -2.6269531, -1.5830078, -0.27441406, 1.328125, -1.7236328, -1.0644531, -0.21691895, 1.2451172, 0.6669922, -0.8828125, 1.828125, 0.5097656, 0.80908203, -0.53564453, 0.37963867, 4.6523438, -0.9765625, 1.2148438, 0.03189087, -0.5385742, 2.1328125, 3.3105469, 1.4052734, -2.0507812, 0.16711426, 0.14172363, 0.1862793, -0.89697266, -0.18164062, -1.5009766, -3.1191406, -1.9765625, 1.9785156, -1.2216797, -4.15625, -0.40649414, -0.73535156, -0.5498047, 0.12915039, -0.31762695, -0.8720703, 0.004245758, 1.0957031, 0.57714844, -0.8261719, -0.24511719, 1.8056641, 0.5908203, 2.7070312, -1.6308594, 1.5273438, 0.7109375, -0.11437988, -0.10308838, 1.3056641, -1.359375, 2.9257812, 0.9111328, 2.2265625, 3.8886719, -0.5415039, 1.2666016, 0.4440918, 1.7167969, 3.1484375, -0.6464844, 0.84033203, 0.59375, 1.6484375, -0.08673096, -1.4697266, 0.020217896, -0.5751953, 0.9091797, -0.9995117, -0.16674805, 1.9912109, -0.6171875, 0.75341797, -0.81103516, -0.6870117, -1.4443359, -0.23779297, -1.3808594, -1.046875, 0.31323242, -0.6142578, 1.8251953, 0.20129395, 1.9941406, 0.08911133, 0.70214844, 0.8442383, 0.21142578, -0.48339844, -2.2128906, -2.0507812, 0.93408203, 0.88378906, 1.1777344, 0.029937744, 0.46850586, -0.60595703, -0.011543274, 1.1621094, 0.4790039, -0.8105469, 1.5478516, 1.8486328, 1.4824219, 1.3818359, 0.36401367, 5.1835938, 0.72802734, -0.33496094, -2.3457031, 2.5234375, -1.390625, -1.8662109, 1.3974609, -1.5712891, 0.053131104, -1.4375, 0.2788086, -3.9941406, 0.7783203, -0.15222168, -2.3046875, 2.4042969, 0.7451172, -0.6738281, 2.6972656, 2.4980469, -0.61376953, 0.47314453, -0.6098633, 1.1933594, 0.51171875, 0.50146484, 1.6435547, 2.0742188, -1.6660156, 4.4726562, -0.47998047, -1.0556641, -0.6230469, 2.3261719, 0.6845703, 0.7265625, 0.0042762756, -0.75927734, 1.9550781, -0.005393982, -0.092285156, 0.5830078, -1.7558594, -1.1005859, -2.1875, 0.16357422, 0.9042969, -2.4804688, 0.69091797, 1.0751953, -0.6308594, -1.9697266, 4.3515625, -0.97021484, -0.4477539, -0.34765625, -2.1894531, -2.6367188, 2.03125, 1.2744141, -2.1464844, -1.0976562, 0.45776367, 2.5195312, 0.6557617, -1.6962891, -0.85302734, 0.17895508, 0.55615234, -2.0019531, 0.8364258, -0.5131836, -1.1425781, 1.4833984, -0.059631348, -1.3876953, -0.16882324, 0.3293457, 1.8095703, 0.44189453, -0.97021484, 1.5527344, 0.7680664, -1.9873047, -2.4121094, 1.3085938, -0.51904297, 0.22814941, 0.7294922, -3.25, -0.94628906, -1.265625, 1.8222656, -0.72314453, -1.7705078, 1.0654297, 1.8681641, 1.6035156, -1.4619141, -0.00447464, -0.053649902, 1.3134766, 1.8388672, -2.4824219, 1.2197266, -0.14807129, 0.06958008, -0.5800781, 3.9179688, -0.14477539, 0.25341797, -0.5854492, 1.7119141, -1.4003906, -0.45703125, -0.6977539, -0.20043945, -1.1953125, 0.8955078, 1.0576172, 0.86865234, 0.18554688, -2.5214844, -2.5585938, -0.39282227]}, "B078HFRNPQ": {"id": "B078HFRNPQ", "original": "Brand: Blackstone\nName: Blackstone 36\" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black\nDescription: \nFeatures: NEW FEATURES - This unit comes equipped with Blackstone's new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone's new rear grease management system to help eliminate mess.\nRESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks.\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nHEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe\nTRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels\n", "embedding": [-0.8618164, 1.5185547, 1.46875, -0.2421875, 1.2822266, -0.035339355, 0.84716797, -0.17797852, -3.2519531, 1.2148438, 0.047180176, 0.73779297, 0.5102539, -0.92529297, -0.6328125, -0.49804688, -1.3935547, -0.94970703, -0.17565918, 1.1142578, 2.4726562, 0.59472656, 0.7060547, -1.3701172, 2.3769531, 0.93847656, 3.3417969, -3.6640625, 1.5380859, 0.093933105, 1.9814453, -0.4819336, 1.3320312, 1.1416016, -4.1640625, -1.3095703, -1.0400391, 2.890625, -0.9614258, 0.6166992, 0.30273438, 0.31054688, 3.8222656, 0.4880371, -3.8046875, -0.28295898, 0.60302734, 0.08660889, -2.7480469, -0.76953125, 0.8095703, 3.1542969, 1.9882812, 0.6464844, -1.2011719, 0.8901367, 1.1025391, -2.6191406, 1.0986328, -0.3149414, 1.5839844, 0.09851074, -2.3886719, 1.3925781, -0.8520508, -1.4736328, 1.8886719, -0.38232422, -0.15490723, -1.0673828, -1.6777344, -0.26342773, -0.84765625, -0.671875, 0.8520508, -1.9521484, -0.6352539, 1.6835938, -0.19348145, -1.0048828, -2.0058594, 2.2246094, 0.5004883, -2.8867188, -0.3100586, -0.22192383, -0.6591797, -0.32739258, 0.90283203, 0.1574707, -0.44384766, 2.7441406, -2.7734375, -4.46875, 2.015625, -1.5009766, 0.08026123, -0.57373047, -1.6904297, 3.3027344, -1.3271484, -0.1616211, -1.2890625, 2.8828125, -2.6523438, -0.8022461, 3.8730469, 1.0371094, -2.3105469, 0.04949951, -2.2617188, 0.43139648, 1.8955078, 0.32910156, 1.3398438, 1.1132812, 0.38256836, -0.21362305, 1.2490234, 0.7841797, 3.625, -0.19433594, 0.2692871, -0.45336914, -0.7841797, 1.1660156, -1.0498047, 1.1445312, 4.5, -2.3613281, 0.07873535, -2.7402344, 1.9326172, -0.45532227, -3.3417969, -2.0742188, -0.032470703, -0.95996094, -2.7910156, 1.1582031, 0.08392334, 2.1484375, 1.9873047, -1.9248047, -3.7597656, -0.29223633, -0.1953125, 2.0820312, -0.44604492, -2.0957031, -0.8100586, -1.1308594, -0.040405273, -1.25, 2.5859375, -1.9589844, 1.0214844, -1.9628906, 4.1640625, -1.03125, 0.36743164, -2.8828125, -1.2333984, 2.5527344, 2.1660156, -1.2099609, 0.26513672, 2.5800781, -0.23669434, 2.9316406, 0.50634766, -2.59375, 0.16772461, -0.28955078, 2.0488281, -0.8964844, -0.83251953, 2.0996094, -1.1894531, -0.85546875, -0.61816406, -3.3320312, 0.38427734, -0.08795166, -0.63916016, -3.3671875, 1.0048828, 0.03717041, 0.33276367, -0.828125, 0.15209961, -0.26782227, -0.13647461, 0.38232422, -0.101135254, -1.6044922, 0.52246094, -0.10809326, 0.84277344, 0.08135986, -0.54589844, -1.4824219, 0.9472656, 1.2822266, -1.9150391, -1.5166016, 0.9238281, -1.6513672, 2.8554688, 1.2617188, 1.1894531, -0.5522461, 0.3540039, -0.12915039, -0.765625, -2.3164062, 1.3007812, -1.1494141, 1.5566406, 0.6425781, 0.8574219, -2.4511719, -1.9082031, 1.015625, 0.8671875, 3.1035156, 0.8598633, 0.070007324, -0.89208984, -0.2932129, 1.7910156, 0.31225586, 0.2734375, 1.4716797, -0.88378906, 3.0664062, 1.2529297, -1.6142578, 0.07086182, 0.046722412, 0.59033203, -2.1210938, -0.011444092, -0.96533203, -0.74609375, 0.46313477, -1.2460938, 2.7871094, -0.70410156, 0.45947266, -2.9511719, -0.12854004, 1.6357422, 0.6796875, -0.6298828, -0.22302246, -0.75878906, -1.3125, -2.0703125, -2.5097656, 0.07763672, 1.5566406, 0.5366211, 1.1542969, 1.8720703, -0.6147461, 1.0791016, 1.9443359, -1.8417969, -0.15478516, 1.8417969, 0.2401123, 2.0605469, 0.039154053, 1.0566406, 1.5673828, -1.9863281, 2.1523438, 0.5541992, 0.5415039, -1.2568359, -1.4179688, 1.3554688, -2.4082031, 0.16308594, 0.80371094, -2.0527344, 1.6894531, 1.1728516, 0.3059082, 4.6835938, -1.2509766, -1.9394531, 3.1621094, -1.0039062, 0.49682617, 0.40649414, -1.3271484, -0.57910156, 0.3791504, 1.2363281, 1.703125, 0.5966797, 0.86572266, -2.6796875, 0.58496094, 0.30688477, -1.796875, -1.1015625, 2.2050781, 0.22460938, -0.89697266, -0.5136719, 1.4326172, -1.3857422, -0.33911133, -0.7504883, -1.0693359, 2.34375, 1.859375, 2.3867188, 2.0664062, -1.2519531, -2.4375, -0.546875, 0.5131836, -0.6508789, 0.41333008, 0.14672852, -1.6738281, -0.12237549, 0.2133789, -0.087890625, -0.9941406, -3.7402344, -0.9082031, 0.29516602, -1.6835938, 0.18310547, -1.0351562, -1.2470703, 1.9316406, -1.6308594, 0.9326172, -1.1455078, -2.21875, -0.40600586, -0.10046387, -0.390625, -0.35717773, 1.1621094, -0.70751953, -1.3935547, -3.6210938, -0.4399414, -0.45458984, 1.5771484, -1.9824219, -1.75, 1.1279297, -0.7578125, 0.22509766, -0.40673828, 0.47705078, -0.18261719, -0.006095886, -0.16687012, -2.5878906, 0.91748047, -0.86083984, -0.4831543, -1.71875, -0.083618164, -2.1679688, -0.63378906, -0.53564453, -0.60253906, 3.2441406, -1.1660156, 0.9042969, -0.8071289, 1.9414062, 0.10748291, -0.3635254, -1.0576172, 0.55371094, 0.2487793, -2.0117188, -2.5683594, -3.8144531, 0.24169922, -1.1679688, -0.30737305, -1.2880859, 3.171875, -1.8144531, 1.2871094, -1.1367188, -0.37060547, -0.40966797, -0.75878906, 0.5444336, -2.2871094, -2.8828125, -1.1894531, -0.72509766, -2.0957031, 0.81396484, 2.2753906, -1.4375, -0.79003906, 1.4033203, -0.4807129, -2.0410156, -0.022720337, -2.3320312, 2.375, -0.5957031, -3.3046875, 2.421875, -1.1875, -1.1455078, -1.46875, 0.22387695, 3.0332031, -0.453125, 0.4177246, 0.14819336, -0.70410156, 2.4511719, 0.8129883, -0.5053711, -0.5708008, 0.609375, 1.3017578, -1.0947266, -1.7246094, 0.22839355, 2.8828125, -1.5351562, 0.61865234, 0.9897461, 0.62402344, 0.8774414, 1.5917969, 1.9404297, -1.6679688, -2.0429688, -0.5708008, 1.2001953, 0.82470703, -0.18920898, -1.9228516, 0.7470703, -0.5600586, 0.53125, 0.4794922, 0.40185547, 2.5449219, 1.3867188, 2.3378906, -2.3945312, 0.005607605, -0.40771484, 1.2382812, 1.7509766, 2.2226562, -0.010826111, -0.26757812, 1.6611328, -1.2480469, 2.1542969, -2.3710938, 0.27368164, 2.28125, -1.5664062, 0.7138672, -0.4489746, -0.1685791, -1.1064453, -1.4960938, 1.0234375, -0.08770752, -2.1972656, 0.52685547, -0.51904297, -1.2714844, -2.2558594, 2.4238281, -2.0078125, -2.0957031, 0.70703125, 3.4804688, -1.7802734, -1.0136719, -1.4990234, 0.6489258, -0.5864258, 2.9824219, -0.27368164, -2.46875, 0.4807129, -1.5693359, 0.72021484, -2.125, -0.9379883, 0.5185547, 0.77978516, 0.52685547, -1.5791016, -0.63427734, -0.68603516, 0.42773438, -1.5009766, -0.63720703, -1.9365234, 0.3959961, -0.089782715, -0.32177734, -1.5771484, 1.3388672, 1.3007812, 0.44482422, -1.4355469, 3.1171875, -0.035736084, -1.7294922, 0.6015625, -3.8886719, -1.1582031, -1.7958984, -2.7851562, 1.1337891, -0.5957031, -0.0022716522, 1.15625, 0.8828125, 0.328125, 2.5761719, 0.7895508, -4.0703125, 1.1494141, -1.1982422, 0.06536865, -1.5810547, -0.76708984, 1.4404297, -0.15637207, -0.73095703, -0.609375, 1.9267578, 0.16772461, 0.7167969, 0.38452148, -1.7617188, -0.5024414, 0.037841797, -1.1445312, -0.60058594, 0.35205078, 0.9213867, -1.1835938, 0.30273438, -0.38208008, 1.5585938, -0.27001953, 0.8828125, -0.42797852, 0.48486328, -0.88916016, -2.203125, -1.1640625, 0.73046875, 1.2998047, -0.07287598, -0.0028896332, -0.46948242, 1.0966797, 1.7275391, -1.4873047, 0.41308594, 0.5419922, -2.8046875, -1.4355469, 1.3779297, 0.00932312, 2.2402344, 0.3059082, -0.7988281, -0.61572266, 1.6152344, -1.7802734, -1.9775391, 1.3691406, 0.18920898, -1.0351562, -0.30981445, -3.1445312, 1.6699219, -2.2128906, 0.002161026, 0.49902344, 3.7304688, 1.8251953, 2.5214844, 3.6386719, -0.66748047, -1.015625, 1.9619141, -1.3261719, -1.5458984, 2.0820312, 1.4443359, -0.91064453, 2.578125, 0.30273438, -1.3427734, -0.5576172, 2.296875, -0.080566406, -0.09777832, -0.9511719, 0.31445312, -2.2480469, 0.671875, 0.3293457, -0.61865234, 0.9448242, 0.39648438, -0.22180176, 1.7275391, 1.9150391, -0.29052734, 1.1035156, -0.042938232, 0.3425293, 1.0458984, 0.039367676, 1.6513672, -1.1064453, 0.82910156, -0.15710449, 2.3417969, 0.13879395, 0.3996582, 1.0742188, 0.5283203, -2.1875, -1.2109375, 2.0097656, 3.4882812, 0.13989258, 1.9560547, 0.86572266, -2.0996094, 2.2617188, -0.41430664, -2.9414062, -2.2949219, 0.37646484, -0.71533203, 1.3359375, 0.09436035, -2.5292969, 0.0009880066, 2.515625, -1.9267578, 0.61376953, 0.44311523, -0.15161133, 0.9350586, -1.9746094, 0.2758789, -0.07128906, -0.32641602, -0.8183594, -0.47216797, 0.18200684, -0.23474121, 1.3828125, 3.2734375, 0.34936523, 0.18127441, 1.5117188, -0.5961914, 2.2460938, 0.74121094, -1.2802734, -3.1972656, 1.5087891, 1.6474609, 0.7861328, 1.0791016, 0.5263672, 0.73095703, -0.46166992, 0.61035156, -1.7802734, 2.703125, -0.9448242, -1.0800781, 1.5664062, -2.1933594, -1.6230469, -1.8447266, 2.0878906, 0.5522461, 1.4335938, 1.1445312, -1.015625, 0.35375977, 0.5415039, -0.8666992, -4.421875, 0.7939453, 0.14477539, -0.49169922, -0.70947266, -0.5854492, -0.6401367, 0.048553467, 0.70703125, -1.4228516, -1.9160156, -1.1435547, 0.6269531, -1.2929688, -0.7548828, -0.13989258, 0.4807129, 0.8178711, 1.5947266, -0.2626953, 0.9321289, -2.1503906, -0.39746094, 2.6210938, -0.94677734, -0.40673828, 0.8671875, 0.42333984, 0.1895752, 1.8388672, 0.9243164, -2.5410156, 2.0839844, -4.0390625, -0.88623047, -0.3046875, -1.0537109, -1.5810547, -1.0205078, -0.43017578, 1.6054688, -1.9199219, -0.8256836, 1.0478516, -1.0615234, 0.24157715, 2.4199219, -1.0625, -1.6992188, 1.5478516, 0.5029297, 1.0214844, 0.14123535, 0.07861328, -0.08770752, -2.015625, -1.6142578, 1.1123047, -1.2001953, 0.105651855, -1.9306641, 0.7285156, 2.1015625, -0.8979492, -0.6308594, 2.0410156, -0.5756836, -0.43774414, -0.5385742, -0.72216797, 2.2871094, 0.15258789, -0.51953125, -0.93896484, -1.9013672, -0.057434082, 0.04940796, 0.45874023, -1.1044922, -0.40014648, -0.9667969, 1.2539062, -0.2220459, 1.6113281, 3.2011719, 0.34179688, -1.2509766, -0.62841797, 1.2744141, -0.16137695, 2.9257812, 2.0234375, 1.5683594, -1.9941406, 4.1015625, -0.73291016, -4.1367188, 1.5205078, -2.0449219, 2.8164062, 1.1865234, -0.8881836, 0.5341797, -0.7475586, -0.5419922, -2.2128906, -1.6201172, -3.1425781, 2.1757812, 1.1123047, -1.6904297, -0.07196045, 1.1748047, 0.3774414, 1.7597656, 3.1464844, 0.765625, -1.2216797, 0.16064453, -0.9604492, -0.34033203, 0.58984375, -0.60253906, -0.7050781, 1.3398438, -0.7583008, -3.6464844, 0.48950195, 0.87890625, 2.7128906, -0.4650879, 0.5107422, 3.6933594, 1.9072266, 3.4570312, -0.5830078, 0.29858398, 1.546875, 2.1328125, -1.2148438, 2.2734375, 2.8613281, -1.7373047, -1.546875, 3.015625, -0.33081055, -1.9746094, -0.8154297, 1.0332031, 1.1767578, -3.4140625, 3.6171875, -0.018096924, 0.83496094, -0.3005371, -2.0292969, -0.77734375, -1.1201172, 1.4033203, 0.18383789, 2.0273438, -0.49804688, 0.74609375, -1.3447266, 1.0244141, 0.71777344, -3.4589844, -0.21716309, 0.41845703, -0.13427734, -0.7265625, 2.2285156, 1.7832031, 0.93847656, 1.2519531, 0.75, 2.7050781, -1.015625, 1.8417969, -0.7651367, -0.101501465, 0.98583984, 1.9521484, 0.4333496, -1.6074219, 1.859375, -0.57128906, -1.6679688, -2.2167969, 2.7460938, 2.6953125, 1.8378906, 0.045013428, -2.0605469, 1.6474609, 1.5800781, 1.8476562, -2.7226562, 0.9892578, -0.95166016, -1.8896484, -1.4052734, -0.23608398, -0.20129395, 1.8642578, 0.16723633, -1.4628906, 2.1523438, 1.3037109, 1.7275391, 0.8754883, 0.07904053, 0.7734375, -0.11126709, 0.2692871, 1.9560547, 0.121032715, -0.50878906, -0.7421875, 1.5078125, 2.6425781, 0.54248047, 0.8027344, -1.5292969, -0.97265625, 0.121276855, -0.6567383, 1.3046875, -0.15185547, -1.2675781, 0.9916992, 0.21948242, 0.2376709, -2.5742188, 2.375, -0.00045347214, 0.5913086, -0.23242188, 0.44189453, -0.49438477, 1.4355469, 0.5776367, 0.36938477, 0.94140625, -1.7666016, -0.14733887, -0.45336914, -1.8544922, 0.6870117, 1.5, -0.2524414, -0.00084257126, 0.5800781, -2.3457031, 1.2578125, 0.35302734, 1.0351562, -2.03125, -0.5444336, -0.16625977, 0.79589844, 0.54296875, 1.9462891, -0.24560547, -0.62158203, -0.40600586, -0.22314453, 0.1394043, -0.7583008, -0.49438477, 0.1315918, 3.3613281, 1.8359375, 0.8720703, -1.8808594, -1.7958984, 0.5180664, -0.01134491, 2.4785156, 0.29711914, -1.6445312, -0.6904297, 1.2226562, 1.5097656, -1.2734375, 0.46923828, -1.40625, -0.40576172, 1.1113281, 0.69091797, 1.3183594, 0.48901367, -0.6333008, -0.13305664, 2.2988281, 2.7402344, 0.48657227, 2.0332031, 2.7050781, -1.7080078, -2.8320312, 0.8754883, 0.50683594, 0.66796875, -1.0693359, -0.21984863, 0.5097656, 1.5751953, 0.5800781, -1.2998047, -0.24047852]}, "B082XSFG73": {"id": "B082XSFG73", "original": "Brand: NEXCOVER\nName: NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.\nDescription: Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.\nFeatures: \u3010Upgraded Material\u3011: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice.\n\u3010Wide Compatibility\u3011: The upgraded grill cover measures 60\"(W)*23\"(D)*42\"(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering.\n\u3010Handles & Straps & Covered Air Vents\u3011: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off.\n\u3010Easy to Use & Clean\u3011: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering.\n\u3010Reliable Customer Service and Warranty\u3011: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.\n", "embedding": [0.35473633, 1.7138672, 2.7734375, -0.9741211, 0.26586914, 0.55078125, 0.47583008, -2.0234375, 3.3808594, 1.8359375, -0.7397461, -0.5986328, 2.1074219, -5.1992188, 0.7739258, 0.31420898, 1.0673828, 2.5214844, 2.5859375, -0.7841797, 1.7851562, 0.7138672, 1.2011719, 0.22021484, 0.46435547, -0.70654297, 3.7167969, -3.4160156, -0.7397461, -0.39916992, 1.7958984, 0.6694336, 0.010467529, 2.2480469, -2.0839844, -1.9355469, -1.8925781, 1.6650391, 0.7763672, -0.47583008, -2.5722656, -2.0117188, 2.8320312, 0.32348633, -1.6455078, 0.76464844, -1.9804688, 0.11706543, -0.9633789, -2.7363281, 1.6708984, 3.1464844, 2.2265625, 0.60839844, -1.9560547, 2.0644531, 0.05697632, -1.2177734, -0.2277832, -0.23242188, 0.2565918, -1.0332031, -0.65283203, 2.6757812, -0.9375, -0.88916016, 0.640625, -0.5917969, 1.0009766, 0.3774414, 2.4511719, 1.4677734, -2.0605469, 0.39282227, 1.390625, -1.1298828, -1.8251953, 0.73291016, 0.92529297, -1.2695312, -1.8203125, 5.7851562, 0.4658203, -3.5214844, -1.5664062, 0.10797119, -1.4492188, -1.3818359, 2.3105469, -1.3935547, -0.3034668, 0.87158203, -1.2919922, -3.453125, 0.5654297, -3.3378906, 2.3007812, -0.33984375, 0.5917969, 1.1738281, -2.5039062, 0.39111328, -2.2890625, 1.109375, -3.4882812, -3.5488281, 2.234375, -0.99658203, 0.024353027, 0.0184021, -0.3347168, 0.8227539, -0.2142334, 1.4902344, 2.9824219, 0.21166992, -1.7568359, 1.8261719, -0.024658203, 2.3613281, 3.4277344, -0.09729004, 0.1361084, -1.7373047, 0.3659668, 0.00082063675, -0.23840332, 0.40820312, 3.2832031, -1.2294922, 1.0527344, -1.5458984, 1.3876953, 0.77246094, 0.3215332, -0.6791992, -0.7807617, 0.19030762, -3.2773438, 2.0039062, -1.8623047, -1.4902344, 1.1298828, -1.7939453, -3.0078125, 0.46191406, -1.0087891, 3.0117188, -1.0136719, -2.4863281, 0.94628906, -2.0566406, -0.66259766, -1.3447266, 1.3330078, 0.1574707, 0.58203125, -3.1660156, 3.4511719, 2.7128906, 3.0332031, -1.703125, 1.0380859, -0.44213867, 2.6269531, -2.8417969, -0.27978516, -0.28100586, -0.8886719, 3.3027344, -0.10852051, -0.46655273, 0.671875, 0.8491211, 1.8759766, -1.2822266, -0.06500244, 1.4277344, -0.61572266, 1.5517578, 0.1973877, -0.9638672, -0.02142334, 0.014465332, -1.1943359, -1.5019531, 0.9213867, 0.26293945, 1.2080078, -0.4885254, -0.6850586, 0.52685547, -0.37548828, 0.37548828, -2.3828125, -1.3769531, -1.625, -0.059692383, 0.2927246, 0.12310791, -1.9726562, -2.15625, -1.5576172, 0.21508789, -3.2167969, -1.6845703, -1.9560547, 0.7675781, 0.6689453, 1.0537109, 0.54785156, -1.9267578, 2.421875, 2.3183594, -1.6953125, 0.51220703, 3.0566406, 0.98828125, 1.1201172, 0.25952148, -2.3886719, -1.3808594, 0.32055664, 4.0117188, -0.18640137, 1.5791016, 1.5810547, 0.1763916, -1.5996094, -1.3994141, 0.18713379, 0.953125, -0.26464844, 0.16711426, -0.56152344, 1.1230469, 0.9350586, -1.6142578, -1.1083984, 0.37231445, -1.8662109, -2.0253906, -3.5878906, -2.328125, 1.296875, 1.0400391, -0.6665039, 2.4785156, 0.5839844, 0.08312988, -0.46191406, 0.84716797, -0.23730469, -0.11773682, 0.18725586, 1.4306641, 1.046875, 0.8823242, -1.0361328, -1.5253906, -0.6401367, -0.31713867, -0.8823242, 1.3242188, -0.14428711, -0.9560547, -0.20349121, 1.3417969, -0.46142578, -2.3007812, 1.1552734, -1.1123047, 0.56152344, -1.8925781, 0.8413086, -0.15771484, 0.5024414, 0.96728516, 1.2841797, -0.2902832, 0.00037193298, 0.95654297, 1.7373047, -2.6132812, 1.2285156, -0.18786621, 0.30859375, -2.3164062, -1.4697266, 0.8925781, 3.53125, 1.0703125, -2.0976562, 3.2988281, -0.55126953, -0.083862305, 2.0039062, -0.9272461, -1.5654297, 1.8486328, 1.4941406, 1.4609375, -0.34472656, 0.59375, -1.3271484, -0.075683594, 1.1445312, -2.6191406, -1.4306641, 1.4238281, -0.65722656, -0.8330078, 0.28979492, 1.6464844, -1.6552734, -2.2363281, 0.9604492, -2.1621094, 0.0079574585, 0.3540039, 1.4179688, 1.0820312, -3.296875, -1.9492188, -0.0028762817, 0.19628906, -2.5429688, 0.3461914, 0.33032227, -0.50390625, 0.45703125, -2.2695312, 0.9013672, -1.0527344, -0.20300293, -3.1035156, -2.3769531, -1.6875, -0.6298828, -1.2685547, 0.7998047, -1.5810547, -3.8261719, 1.6513672, 1.6230469, -2.4550781, -0.7446289, 0.9560547, -1.5751953, 1.7304688, 0.089660645, 0.3942871, 0.5566406, -3.8222656, 0.8432617, -2.6328125, -0.19836426, -0.33496094, -0.6245117, -0.36645508, 0.81591797, 1.0292969, 0.045684814, 1.5292969, 1.7578125, 0.5, 0.87939453, -2.7871094, -1.0820312, -3.4414062, 0.37304688, -0.9926758, 0.92041016, -3.703125, -2.6425781, 0.87841797, -1.4980469, 4, 0.09484863, 1.2011719, -0.9711914, -1.984375, 1.2216797, -1.0683594, -2.6679688, 1.0898438, 1.5185547, -1.9423828, 0.21655273, -3.7773438, -2.7753906, -0.7998047, -0.29101562, 0.41381836, -0.97265625, -0.38549805, 1.5791016, -3.5527344, -1.4033203, -0.9165039, 0.86083984, -0.47851562, -1.0126953, -0.09240723, -4.0703125, -2.3515625, -1.5742188, -3.1289062, 2.0195312, -1.1933594, -0.43725586, 2.5839844, -0.45410156, 4.7265625, 0.1149292, -3.6171875, 1.0292969, 1.5439453, 0.066467285, 2.9980469, -0.035736084, -0.115600586, -1.4111328, 0.9785156, 2.4609375, 1.1113281, 1.1542969, 2.3457031, 1.3408203, 1.5380859, -0.18066406, 0.90478516, -2.03125, 1.9492188, 2.7675781, -0.41723633, -0.03265381, 0.4633789, -0.21887207, -1.4277344, -0.6508789, 1.9257812, 1.1884766, 0.62060547, 1.0996094, -0.60791016, 1.3515625, -1.6191406, 3.3925781, -1.4228516, 1.9414062, 0.22473145, 0.4831543, 0.9477539, -1.5722656, 2.4355469, 2.140625, 0.7260742, 0.89941406, 1.6835938, 0.03112793, -0.15771484, 0.07543945, 1.4082031, -0.034332275, -1.6542969, 2.34375, -0.69970703, 0.64697266, 2.5527344, -3.0585938, 2.3125, -1.6367188, -0.23730469, 1.4658203, -1.5253906, 0.6176758, -1.2802734, 0.21838379, 0.19543457, -2.2460938, -0.23815918, -3.3789062, -1.4023438, 0.5419922, -3.1484375, -2.09375, -0.3388672, 3.2382812, 0.5410156, -2.4121094, -0.3408203, 1.3652344, -1.0839844, -2.8007812, 0.9892578, 2.7753906, -0.18762207, 3.7675781, 3.0351562, -2.671875, 2.0507812, -3.1152344, 1.4541016, 0.31811523, -1.1914062, -0.40625, -0.16027832, -0.31274414, 0.19677734, 2.9238281, 1.015625, 2.5878906, -0.010887146, 0.21008301, -1.7919922, 0.56689453, 1.3544922, -1.7197266, -0.79003906, 2.390625, 1.7304688, 0.2685547, 0.56591797, 1.2324219, 0.13500977, -1.6318359, 1.5166016, -1.7871094, 0.71435547, -0.31567383, -4.1601562, -0.8432617, -0.42651367, -1.4599609, 1.2792969, -0.09716797, 0.58203125, 2.1875, 0.1083374, -1.4335938, 0.011299133, -2.5742188, -2.1484375, 0.7558594, -0.87158203, 0.9482422, 0.5258789, -1.8935547, -1.6455078, -3.6113281, -2.140625, 0.17419434, 0.33813477, -0.08703613, 1.1416016, -3.3574219, 0.8364258, -2.7890625, -0.51171875, 0.18408203, 0.88720703, -0.013916016, -1.9355469, 0.8623047, 0.14331055, 0.103271484, 0.42797852, 0.8149414, -1.1699219, -1.2285156, 0.32128906, 1.2714844, 2.9570312, -1.0449219, -3.2773438, -0.7973633, 0.52441406, 1.9121094, -0.91748047, -1.1513672, -0.33081055, -0.9301758, 1.0751953, 0.119628906, 2.3261719, 1.7539062, -1.1171875, -2.5039062, 0.62158203, -1.1699219, -0.54833984, -0.7529297, 0.19567871, 0.24645996, 1.3740234, -1.7431641, -3.0917969, 3.0820312, 0.089538574, 0.046966553, -2.0273438, 3.1621094, 2.1347656, 2.578125, 2.4960938, -2.65625, 1.0869141, 1.0332031, -0.44213867, -0.19433594, 0.2890625, -2.0019531, 1.1083984, 1.7744141, 1.3027344, -2.2421875, -1.9082031, -0.89746094, -0.33374023, -1.0966797, -2.328125, 1.6347656, -0.5449219, 1.7041016, 1.0830078, -2.1679688, 1.6240234, -0.3479004, -0.3449707, 2.859375, -2.3027344, -0.5649414, 1.0732422, 1.4042969, -0.2290039, 0.47485352, 0.22705078, 0.2783203, 0.017059326, -0.9399414, -0.058044434, 0.7788086, -1.6953125, -1.5283203, 1.3837891, 1.5751953, -1.7841797, -0.3959961, 3.8828125, 2.7617188, -0.7392578, 1.9873047, 1.6972656, -1.609375, 2.2441406, 1.1416016, -1.0146484, 1.765625, -0.14074707, -0.38500977, 0.8330078, -0.8022461, -2.1210938, -0.14440918, 1.421875, -0.33935547, 1.2246094, -1.1201172, -1.4257812, 3.9511719, -1.9189453, 0.0074386597, 0.5053711, -0.37231445, 0.034118652, -0.33740234, 2.5820312, -0.9902344, 1.0585938, 4.1367188, -1.2060547, -4.09375, 0.8144531, -0.64208984, -0.32836914, -2.3320312, -1.8847656, -2.4589844, -0.84033203, 2.3691406, 1.8740234, 0.7011719, -0.6953125, 1.8964844, -2.8554688, 0.43188477, -0.1005249, 0.84814453, -2.7636719, -0.6220703, 2.6582031, -2.2578125, -0.46411133, -0.9321289, 0.1161499, 1.6113281, 1.1669922, 1.5703125, 0.57714844, 0.03491211, -0.5761719, -3.9453125, -2.3554688, -0.60058594, 0.6635742, -1.1816406, 0.94140625, 0.06585693, 1.6074219, -0.12805176, -0.49072266, -0.87060547, -1.4589844, -0.2770996, -0.36376953, -2.109375, -1.5986328, -1.453125, -2.1230469, 0.26782227, 0.953125, 1.4804688, 0.9140625, -4.8046875, 0.17297363, 1.0058594, -3.3691406, -0.9897461, 2.078125, 0.21557617, 1.1308594, 0.5126953, -0.33032227, 0.43798828, 2.5859375, -0.86572266, -0.6098633, 0.79296875, -0.48413086, 0.734375, -0.2993164, -0.29589844, 2.1484375, -2.1835938, 1.7167969, 0.7260742, -0.5307617, 2.7421875, 2.3847656, 0.18847656, -0.40356445, 0.17126465, 1.4150391, 2.8847656, 0.7080078, -0.59716797, -0.35058594, -1.4804688, -3.1757812, 0.6635742, -2.4199219, -1.8398438, -2.03125, 0.021240234, 1.4511719, 2.125, 0.9863281, 1.6796875, 1.3583984, -1.1210938, 0.42114258, 0.8798828, 4.2226562, 0.9008789, -2.3964844, -0.31445312, -0.72558594, 0.3010254, 1.1572266, 0.7138672, -0.8666992, 1.1181641, -1.5458984, -0.24829102, 0.8642578, 1.9375, 0.27783203, 0.03173828, 0.55810547, 0.9765625, 2.3144531, -0.51464844, 1.0478516, -0.29174805, 1.8017578, -2.0332031, 1.4892578, 0.44018555, -3.0449219, -0.5488281, -1.7558594, 0.49560547, 1.2275391, -1.1337891, 0.2631836, -0.5097656, -1.1054688, -2.1777344, -1.2050781, -4.0820312, 1.4667969, -0.8564453, -0.94140625, -1.0039062, 1.1542969, -0.0008068085, 3.1386719, 1.7148438, 0.47192383, -0.8833008, -0.5292969, -2.3886719, -0.18310547, -0.30566406, -2.4960938, -0.17504883, -1.2294922, 1.2001953, -0.70703125, -0.34448242, 0.546875, 0.85839844, 1.5888672, 2.34375, 2.2695312, 2.3691406, 1.7490234, 1.1923828, 1.4619141, -0.37597656, -1.8876953, -0.60791016, 3.1855469, 1.9150391, 3.8476562, -1.4433594, 1.5644531, 0.1295166, 0.25561523, 0.38061523, -0.68115234, 1.7617188, -2.875, 0.41577148, 2.5703125, 1.2939453, -0.2890625, 0.8413086, -1.8173828, -1.0458984, 0.41918945, 0.06500244, 4.2070312, -1.1035156, 1.9189453, 0.61816406, 1.9375, 2.5058594, -3.09375, 0.9760742, 0.1159668, -2.7285156, -1.5097656, 0.17102051, 1.9931641, 3.0546875, -1.1132812, 1.8496094, 1.3496094, 2.1679688, 1.2421875, -1.0478516, 1.0966797, -1.015625, 2.6679688, 1.9169922, -2.234375, -1.2333984, -0.41870117, -2.0878906, -1.1220703, 1.3261719, 2.0566406, 1.2197266, 1.1132812, -4.1289062, 1.6650391, 1.671875, 3.3144531, -1.2744141, -0.48095703, -1.1591797, -2.5371094, -0.98828125, 0.25976562, -1.921875, 2.4003906, 0.7607422, -0.31201172, 2.6308594, 1.0673828, 2.1484375, 0.2626953, 1.8183594, -0.13757324, 0.85546875, 0.7636719, 1.34375, 1.7919922, -1.8544922, -0.28442383, 0.7836914, -0.19677734, 1.8408203, 0.5932617, -0.4729004, 1.8291016, 2.1347656, -0.7548828, 1.4277344, -0.08483887, 0.41967773, 0.19628906, 1.2900391, -0.32226562, -1.78125, 1.0107422, 2.9238281, 0.21740723, 1.9072266, 1.6210938, -0.81640625, 2.0449219, 0.22363281, -0.9057617, -0.7714844, 0.68115234, 0.7597656, 0.109802246, -0.5185547, -1.0576172, 0.4362793, -1.1992188, -0.25756836, -0.62060547, 0.8095703, -0.84375, -0.024627686, 0.80029297, -1.4072266, -1.5751953, -0.23168945, -1.0234375, -0.83203125, 2.3261719, 1.4365234, -1.8457031, -2.2050781, -1.5039062, 0.09887695, -1.1572266, -2.6894531, 0.8417969, 3.1347656, 2.2382812, -1.046875, -1.3095703, -2.9335938, -1.2197266, -0.86621094, 1.5751953, -0.7314453, -0.9511719, -0.6376953, -0.3161621, 3.359375, 0.13220215, -1.3681641, -1.4599609, 0.097595215, 2.1269531, -0.6557617, -0.38232422, -1.7460938, -0.39453125, 2.4726562, 1.2685547, 3.6386719, 0.63623047, 0.9326172, 3.375, -0.8647461, -2.671875, -0.7885742, 0.30371094, 0.37670898, -0.7260742, 1.3203125, 2.3398438, -0.7236328, -0.7338867, -0.28833008, -0.8828125]}, "B012RMROVG": {"id": "B012RMROVG", "original": "Brand: Hiland\nName: Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze\nDescription: \nFeatures: External Integrated Piezo Ignition. BTU's: 40,000. Uses a 20lb Propane Tank\nStainless Steel Lid Included\nCSA Regulator and Hose Included\nFireglass Included\nThermocouple and Anti Tilt Safety Devices\n", "embedding": [-0.37939453, 0.5566406, 2.5839844, 0.014793396, -1.0009766, 1.4169922, 0.92822266, -1.6240234, -0.25610352, 1.3105469, 0.7602539, 0.7636719, -1.5439453, -3.5917969, 1.3154297, -1.6650391, 1.1640625, 0.31884766, 1.6923828, 0.6411133, 2.3085938, 0.010032654, 1.4003906, -1.2832031, 1.3027344, 0.65771484, 5.0234375, -3.3417969, 0.3642578, 0.42260742, 0.55859375, 0.75927734, 0.48901367, 1.5947266, -1.8330078, -1.3925781, -0.98095703, 0.37817383, -3.6542969, 0.33911133, -2.3632812, -1.6113281, 1.0449219, 0.74853516, -1.7929688, 0.45117188, 1.6376953, 0.064331055, -0.5751953, 1.1123047, 1.2363281, 0.9086914, -1.3388672, 0.91015625, -1.046875, 1.4365234, -0.85839844, -1.3964844, 1.9003906, 0.117248535, 1.5605469, -0.5908203, -0.9458008, 0.8466797, -0.5629883, 0.7368164, 0.07513428, -1.5253906, 1.1347656, 0.95947266, 1.2226562, -1.0849609, 0.19384766, -0.81396484, -0.43896484, -0.3725586, -2.7597656, 0.82714844, 1.1923828, -1.03125, -0.6508789, 1.5478516, 0.21911621, -2.6621094, -0.80322266, -1.1894531, -0.020492554, -1.5986328, 0.63916016, 0.671875, -0.09124756, 2.7851562, -0.28125, -4.6015625, 0.86035156, -0.23803711, -0.15527344, 0.45385742, 0.79785156, 0.80371094, 0.51904297, 0.3425293, 0.38720703, -0.11883545, -1.3828125, -0.27148438, 1.0175781, 1.8867188, -1.2519531, 0.28320312, -1.4599609, 0.61816406, 1.2255859, -0.63134766, -1.9140625, 0.8354492, 1.7597656, -0.19360352, 3.1542969, 1.8076172, 3.7011719, -1.4179688, 0.6230469, -0.1784668, -1.1650391, 0.73535156, 0.5527344, 0.22961426, 1.6591797, -1.6582031, 1.9794922, -0.88623047, 2.4003906, -0.20544434, -1.3671875, -0.7104492, -2.5117188, -1.5029297, -3.4160156, -1.3964844, -0.49121094, 1.4609375, 1.0205078, -0.47387695, -4.5625, -0.77978516, -1.8632812, 1.6308594, 0.8100586, -2.1679688, 1.2792969, -1.3623047, 2.1230469, -1.5078125, 2.2304688, -0.3095703, -0.65478516, -1.7099609, 2.8378906, 0.9746094, 0.43554688, 1.1162109, -2.4472656, 0.6791992, -1.1708984, 0.30297852, 1.8417969, -0.0748291, 0.41186523, 2.7304688, -0.087890625, -2.0703125, -0.5004883, 0.35595703, 0.19592285, -0.9848633, 1.1318359, 1.9404297, 0.45141602, -0.016830444, -2.4257812, -2.1699219, 0.8154297, 1.0947266, 1.0205078, -0.8901367, 0.34399414, -3.5332031, -0.1282959, -0.9160156, -0.67529297, -0.46777344, 0.2746582, 0.8066406, -1.5703125, -2.7832031, -2.3964844, -2.8554688, 0.9692383, -0.42358398, -0.3227539, 1.1123047, -0.64453125, 0.46655273, -1.5791016, -0.76904297, 1.0058594, -0.53125, 3.8378906, 1.3525391, 1.9833984, -1.1445312, 1.9570312, 0.13586426, 0.55029297, -4.1914062, 1.1572266, 0.9477539, 0.9458008, 0.37939453, 1.2558594, 1.9521484, 0.8046875, 1.5332031, 0.13623047, 0.22680664, 1.0322266, 1.3876953, -2.8457031, -0.91845703, 2.4414062, 1.6064453, -1.1992188, 0.2680664, -0.34716797, 3.0605469, -0.11016846, -1.4042969, 1.390625, 0.08300781, -0.030059814, 0.32763672, 0.18334961, -0.10797119, -1.0361328, 0.9458008, 0.38793945, -0.5673828, 1.4306641, -0.4711914, 0.16577148, 0.40966797, -0.60791016, 1.9091797, -0.29003906, 1.7792969, -0.59472656, -0.8901367, 1.4951172, -2.7578125, 1.8632812, -0.14562988, -0.18896484, 1.3710938, -0.6479492, -0.6489258, 2.2773438, -0.43017578, -2.1933594, 0.23449707, 0.13354492, 0.2998047, 2.4023438, -0.10205078, 1.5273438, 1.2451172, -0.9638672, 2.1289062, 0.14575195, 1.5898438, 0.07678223, 1.0791016, 1.9707031, -0.8754883, -0.5541992, 1.2490234, 1.3027344, -0.32202148, -2.4492188, 0.018569946, 4.3125, -0.9770508, -1.6347656, 3.0195312, 1.03125, 1.234375, 1.0224609, -0.9526367, -2.5507812, -2.2207031, 1.0683594, 1.5263672, 0.7626953, 1.6552734, -1.1113281, -0.013832092, -0.23828125, -1.3349609, 0.38793945, 0.7363281, 0.020996094, 0.24584961, -2.8515625, 1.7509766, -2.9550781, -2.4277344, 2.3222656, -2.8847656, 0.2614746, -0.53515625, -0.4814453, 1.4277344, 0.11450195, 0.34521484, 0.15319824, 1.8505859, -1.4130859, 0.9746094, 0.921875, -1.015625, -1.4775391, -1.5205078, -1.0048828, -2.3632812, -1.578125, -0.13891602, -1.6630859, -2.3261719, 3.1621094, -1.8310547, -0.74609375, 0.83154297, -0.59228516, 1.625, -0.22668457, -2.1777344, -0.32080078, 0.13720703, -0.41601562, 0.32128906, -0.22473145, 2.984375, -1.53125, -3.9726562, -1.9482422, 0.5449219, 1.6630859, 0.19433594, -0.92822266, -1.0791016, 1.2099609, -0.02911377, 1.6611328, -1.1181641, -0.1538086, -1.171875, -0.25146484, -4.3085938, 0.51220703, -2.0332031, 1.1894531, -1.7929688, 1.0087891, -0.40966797, -1.1132812, 1.2851562, -0.84716797, 5.3984375, 0.55859375, 2.5761719, -0.6074219, 0.73339844, -0.21130371, -3.0664062, -2.6894531, 0.15319824, 0.09661865, -0.04852295, -0.62158203, -3.0761719, 0.2019043, -1.984375, 0.4399414, 1.109375, -0.42114258, -1.8916016, -0.06768799, -0.050750732, -0.11767578, -0.79296875, -0.9086914, 0.79589844, 1.3710938, 0.008956909, 0.036132812, -1.1650391, -0.6513672, 1.3632812, 1.4189453, 0.78027344, 0.15478516, 1.4140625, -0.7241211, 1.9560547, -1.4238281, -3.9765625, 2.0722656, 2.6210938, -0.79345703, 0.089416504, -1.7900391, -3.4277344, -1.6123047, 1.5, 2.828125, 2.7988281, 1.7548828, 0.027679443, -0.44580078, 0.7089844, 1.4667969, -0.5649414, -1.1982422, -1.1845703, 1.5439453, -3.3300781, -2.0390625, 0.90966797, 1.0654297, -4.8710938, -1.3242188, 0.57177734, -0.19238281, 2.5761719, 0.15942383, 0.08843994, 1.9140625, 0.48095703, 1.5058594, 0.1920166, 0.77441406, 0.33520508, 0.19299316, 1.2636719, 0.5527344, 0.8256836, 2.21875, 1.0341797, 1.0703125, 0.9316406, 1.0332031, -1.6201172, 0.16101074, 0.6220703, 0.036254883, -0.60498047, 1.7802734, -1.2705078, 0.33398438, 2.1953125, 0.21374512, -0.54052734, -1.7773438, 0.04248047, 0.1295166, -0.17456055, -1.1669922, -0.011077881, 0.33398438, 0.18579102, -0.65527344, 0.9165039, -0.50683594, -0.08050537, 0.14807129, -0.26416016, 1.1201172, -0.97021484, 3.0058594, -0.47729492, 0.053771973, -0.31103516, 1.5029297, -1.1308594, -1.2880859, -0.6010742, -3.6484375, 0.39746094, 1.7382812, 0.31640625, -1.0410156, 0.18981934, -2.0722656, 0.9243164, 1.5615234, -0.5761719, 0.61816406, 0.86279297, 1.1513672, -0.21606445, 0.64404297, 2.0839844, 0.40112305, -3.109375, 0.05593872, -2.0449219, -0.69433594, 2.8417969, -0.08441162, -0.54052734, 3.3339844, -0.49023438, 3.0878906, 0.17578125, 3.25, -0.8022461, -1.6669922, 2.4414062, -0.82470703, -1.7988281, -2.0664062, -3.6230469, -0.7163086, -2.6132812, -0.08618164, 1.7587891, 0.8774414, -0.5283203, -0.1508789, 0.99853516, -4.09375, -1.2646484, -1.5136719, 0.07513428, -1.8105469, -0.31445312, -0.036346436, 0.50146484, -2.7597656, -1.3105469, 0.9633789, 0.57714844, 0.019958496, -0.37841797, -1.6630859, 0.26489258, 0.6220703, 0.37719727, -0.20202637, -0.7270508, -0.42382812, -1.0097656, -0.048187256, -1.1923828, 4.0976562, 0.15722656, -0.7807617, 0.9272461, 5.0546875, 0.7480469, -0.45874023, 0.004634857, 0.39331055, 1.5, 0.3544922, -3.1445312, -0.93896484, -2.3535156, 0.67871094, 1.2333984, 0.6816406, 0.79785156, -1.5126953, 1.4521484, 0.9746094, 0.9267578, 0.50683594, 1.4355469, -1.0146484, 1.7382812, -0.39208984, -1.6943359, -0.8901367, -0.61035156, -1.0009766, -1.9560547, 0.20471191, -2.0410156, 0.32739258, -0.34570312, 0.63623047, -2.6386719, 2.2636719, 2.9472656, 1.1025391, 2.7265625, -1.7255859, -2.1464844, -0.042388916, -0.19677734, 0.90771484, 0.57714844, -1.2441406, 0.0725708, -0.21081543, -0.3359375, -0.6040039, 0.039764404, 0.5229492, -1.0185547, 0.50878906, -0.63623047, -0.8540039, -1.7382812, 1.1347656, -2.5136719, -0.77441406, 1.2861328, -0.1875, -1.3740234, 0.38134766, -0.18322754, -1.5332031, -0.38793945, -0.83154297, -0.04348755, 2.6464844, 0.3269043, 0.93310547, 0.8510742, 0.6503906, 1.4726562, 1.5341797, -1.9707031, 0.5908203, -0.44750977, 0.14477539, -2.1191406, 0.14587402, -0.6645508, 1.4814453, 1.1425781, 2.7011719, 0.3173828, -1.2294922, 1.8574219, 0.80615234, -0.84033203, 0.45996094, -0.63623047, -1.3154297, 2.4550781, -1.4609375, -2.5820312, -1.2041016, 0.94433594, -0.5078125, 1.4150391, 0.03326416, -1.8701172, -1.9697266, -1.4785156, -2.4414062, 0.8046875, -0.9160156, 0.13842773, -2.5722656, -0.49267578, -0.2512207, 1.9521484, 0.8540039, 0.52734375, -0.890625, 0.5449219, 0.12005615, -0.16333008, -1.0175781, 1.0263672, -0.92871094, 0.034973145, 1.9902344, 0.7866211, 0.028335571, 1.1162109, 1.75, -0.86621094, 0.32617188, -1.4091797, 2.3535156, -2.8691406, -0.26586914, 0.9238281, -1.2958984, -0.33544922, -1.9306641, -0.30395508, -2.7675781, 1.7958984, 1.5683594, 1.7255859, 0.20263672, -0.22558594, -2.5449219, -2.3769531, -1.7929688, -1.4091797, -1.5478516, 2.4667969, -0.12158203, -1.15625, 0.77978516, -0.006378174, 0.76953125, 0.32836914, 0.5283203, -0.9501953, 0.09320068, -0.47436523, -0.84033203, 0.30639648, 1.3398438, -0.92626953, -0.19616699, -1.1376953, -1.3886719, -3.6875, 1.8720703, -1.6513672, 1.5771484, 0.6513672, -0.0054855347, 1.8330078, 0.6738281, 1.4707031, -1.9365234, 1.7148438, -0.4177246, -0.1541748, 2.0449219, -0.42016602, 1.8261719, 1.109375, -1.4707031, -0.27929688, 0.13916016, 0.6958008, -1.3535156, 0.14587402, -0.11987305, -0.6977539, 0.3779297, -0.7739258, 0.98535156, 1.0898438, 1.1933594, 0.31591797, -0.7895508, -1.5185547, -1.2988281, -2.9628906, -0.54345703, -2.5761719, -0.3857422, -0.31420898, 2.0058594, 1.8066406, 0.33203125, 0.10992432, 0.56347656, -0.15637207, -1.0273438, 2.2773438, -0.55859375, 1.5761719, 1.8789062, -0.96777344, -3.6015625, -2.8105469, 0.5439453, 2.2480469, -0.8925781, -1.0703125, -1.4726562, -2.2714844, 0.19494629, 0.19177246, 1.1162109, 1.4189453, 0.07824707, -1.4882812, 1.7285156, 2.0429688, -0.90966797, 1.6162109, 0.61816406, 1.2236328, -1.0908203, 1.9140625, 0.11657715, 0.7636719, 1.3994141, -0.796875, 0.048583984, -0.1595459, -0.3894043, 1.7255859, -3.4804688, 0.5234375, -0.31054688, -1.6552734, -3.1152344, 0.5395508, 0.7915039, -0.7578125, 0.66308594, 0.37158203, -0.18139648, 1.2119141, 2.5332031, 1.53125, -0.32958984, -0.89404297, -1.3847656, -0.14782715, 1.3740234, -0.578125, 1.4755859, 0.9682617, 1.1298828, -1.5292969, 1.75, -0.25952148, 1.40625, 3.0839844, 3.6992188, 1.7441406, 1.8134766, 1.9609375, 0.49243164, 1.4492188, 1.9365234, -2.1035156, 0.08782959, 0.88378906, 0.75, 0.9238281, 1.2460938, -0.81396484, -0.03756714, -0.4885254, -1.5029297, 0.7841797, 1.0888672, -2.1445312, 1.3320312, -0.16101074, 0.38330078, -1.65625, 0.14331055, 0.02168274, 1.5976562, 1.3994141, -2.0917969, 1.8886719, 0.67822266, -0.072021484, -0.115356445, -0.8359375, 0.7734375, -2.9765625, 0.8691406, -0.077819824, -3.3085938, -1.4570312, 0.4794922, 1.0761719, -0.17358398, 0.44189453, -0.3088379, 0.9345703, 1.6044922, -0.41796875, -1.2275391, 0.8486328, 2.1875, 1.8066406, 1.2011719, -0.6508789, 0.7246094, -0.2631836, -0.8515625, -2.8691406, 1.4443359, 2.515625, 0.5996094, 0.39672852, -1.0351562, 0.7729492, -1.4208984, 0.3779297, -1.9091797, 0.87353516, -0.24584961, -1.0869141, -0.64404297, 1.3056641, -0.8901367, 2.4375, 0.7421875, 0.31225586, 0.81689453, -0.060516357, 1.15625, -0.17504883, 1.2011719, 1.6152344, 1.2314453, -0.9604492, 2.8535156, -0.08465576, -0.20056152, 0.9223633, 2.5917969, 1.3535156, 0.1628418, 0.828125, -2.3183594, 2.2011719, 1.0322266, 0.4934082, 0.05911255, -1.6132812, -3.1132812, -1.0683594, 0.5444336, -0.6376953, -0.85498047, 4.125, 1.4238281, -0.7363281, -2.5488281, 2.3300781, -0.1282959, 0.52197266, -1.8974609, -0.9501953, -1.7109375, -1.0849609, 2.46875, -1.828125, -1.6972656, -1.1210938, 2.0332031, 0.032287598, -2.2265625, -0.107177734, -0.21984863, 0.3305664, -1.3564453, 1.2314453, -0.55126953, -0.43652344, 0.16015625, 0.40234375, -1.0537109, 1.1875, -0.17150879, -0.65527344, -0.04260254, -1.0595703, -0.38671875, 0.7373047, -0.6352539, 0.73535156, 3.1796875, 0.33276367, 1.1083984, -1.8222656, -4.0820312, -1.9902344, -2.046875, 0.69873047, -0.20300293, -0.9370117, 0.2364502, 2.5234375, 2.7246094, -1.0683594, -0.7910156, 0.69677734, -1.3691406, 1.1152344, -1.6982422, 1.3203125, -0.2849121, 1.0654297, 0.62109375, 2.0332031, -0.2854004, 0.32250977, 2.0566406, 3.84375, 0.8041992, -1.1855469, -0.94873047, 0.20385742, 1.1757812, 0.8510742, 0.7163086, 1.1630859, 0.47509766, -1.5302734, -3.1230469, -2.2070312]}, "B08JG6NS6L": {"id": "B08JG6NS6L", "original": "Brand: WADEO\nName: WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17\" and 22\" Table Grill and Most LP Gas Grill with 3/8'' Connect Fitting\nDescription: ATTENTION!!!
Only Use for Low Pressure System.
Please keep away from children.
The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
DO\u00a0NOT\u00a0PUT\u00a0THE\u00a0HOSE\u00a0TOO\u00a0CLOSE\u00a0TO\u00a0THE\u00a0COOKING\u00a0AREA\u00a0OR\u00a0IT\u00a0MAY\u00a0CAUGHT\u00a0HOSE\u00a0MELTING\u00a0AND GAS LEAKAGE.\nFeatures: \ud83c\udf1fTwo ways to Use: If your grill is Blackstone 17 \"and 22\" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8'' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly.\n\ud83c\udf1fFits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8\" male flare connection. And it also suitable for Blackstone 17\u201d and 22\u201d table grill (Need to use the propane elbow adapter).\n\ud83c\udf1fGreat Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8'' male flare.\n\ud83c\udf1fMaterial: Durable material provides secure and safe connection from your grill to other appliances. and it's only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use.\n\ud83c\udf1fPlease Note: Working Temperature rang: -30\u2103~50\u2103, please keep your grill away from fire in case the hose melting and result in gas leakage; \u2757Only use for low pressure system, you cannot connect this kit on a high pressure application. \u2757Before buying, make sure the kit's size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.\n", "embedding": [-1.2685547, 0.71484375, 0.28808594, -0.24621582, -0.07861328, -0.35131836, 1.9990234, -0.48217773, 0.7246094, 1.5898438, 0.79785156, 0.34155273, 1.9345703, -3.9765625, 0.47216797, 0.39501953, 1.4023438, 0.70703125, 2.7480469, 0.025650024, 2.078125, -0.82714844, 2.8417969, -1.7958984, 1.2021484, -1.0146484, 2.9140625, -3.1757812, -0.035369873, -0.45825195, 0.7675781, 0.66308594, -0.07647705, 1.5722656, -3.9375, -1.3701172, 0.33764648, 1.7978516, -2.9863281, -0.93408203, -1.140625, 2.0058594, 2.4140625, 1.9267578, -2.9550781, 0.87890625, 0.27246094, 0.92871094, 0.82177734, -1.0703125, 2.0625, 2.1621094, 0.5698242, 0.5625, -1.8359375, 0.47558594, 0.56591797, -3.7089844, 1.5146484, -0.48364258, 1.890625, 0.10406494, -2.6230469, 0.9863281, -0.3984375, 0.85498047, 0.60009766, -0.09106445, 0.92285156, -0.0925293, 0.72021484, 1.3720703, -0.46679688, 0.03744507, -0.23754883, -0.27734375, -3.1015625, -0.45776367, 1.6591797, -0.067993164, -2.0488281, 3.3691406, 0.94140625, -3.2539062, 1.6191406, -0.38061523, -2.3476562, 2.0058594, 1.859375, 0.89941406, -2.6289062, 3.7441406, -3.1054688, -4.0859375, 1.6337891, 0.6464844, 0.24328613, 1.4658203, -0.984375, 0.8486328, -1.9189453, -1.4365234, -0.6308594, 1.1240234, -2.9570312, -2.0585938, 0.48608398, 0.95751953, -2.2773438, -0.4169922, -0.014442444, -0.19714355, 3.9042969, -0.44458008, 0.8730469, 0.13464355, -0.14770508, 0.8066406, 2.6484375, 2.0683594, 3.3457031, 0.09399414, 1.3671875, 0.26391602, 0.40161133, 0.22155762, -0.4802246, 0.98291016, 3.7578125, -0.5703125, 0.29052734, -3.0117188, 2.9179688, -0.43823242, -0.32739258, -2.3847656, 1.6035156, -1.7089844, -1.9814453, -1.6728516, -2.9570312, -0.42578125, 1.0644531, -0.40820312, -3.9199219, -1.2753906, -2.703125, 0.37695312, 1.3212891, -1.5693359, 0.37036133, -0.4555664, 0.86572266, -1.1669922, 1.8232422, 1.0693359, 0.24560547, -1.1162109, 4.3125, 1.2998047, 0.16503906, -1.4277344, -1.2919922, 1.6738281, 0.2467041, -1.7177734, -0.8984375, 1.6474609, -0.89208984, 1.0791016, 0.46972656, -2.8027344, 0.66845703, -0.43676758, 1.0107422, -0.65283203, 0.50634766, 2.3085938, 1.9765625, 1.8808594, -3.203125, -2.6894531, -0.71484375, -2.5664062, 0.96484375, -1.3261719, -2.0605469, -0.48632812, 2.3261719, -0.86376953, -0.9746094, 0.34106445, -0.09112549, 2.9609375, -0.5551758, -1.8896484, -2.8925781, -0.021316528, 2.046875, 1.0859375, -1.7714844, -1.8251953, 2.5058594, 0.07293701, -1.5234375, -2.1035156, -1.0302734, -0.39624023, -0.6713867, 1.2597656, -1.0195312, 0.03012085, 2.6855469, 0.27416992, 0.09490967, -2.1113281, 3.921875, 2.046875, 2.2929688, 0.9526367, 0.05407715, -0.4411621, -0.21276855, 2.7363281, 3.1757812, 0.9511719, -0.4074707, 1.1113281, -2.6953125, 0.59716797, 2.3046875, 1.7666016, 0.37817383, 0.08117676, -0.09362793, 2.9726562, 1.8681641, -0.32470703, 1.5859375, 2.9238281, -0.10369873, -1.5556641, -0.62890625, -2.2753906, 0.66552734, -1.4111328, -2.9804688, 2.1152344, 0.5761719, -0.26879883, 0.6977539, -0.22717285, -1.2714844, -1.6318359, -0.83935547, 0.8129883, -0.18762207, 1.3681641, -0.07989502, -0.96728516, 1.3876953, -0.8149414, 0.027893066, 2.5820312, 1.2617188, -0.31274414, 2.65625, -1.2519531, -2.2714844, -0.62939453, -0.47387695, 3.4765625, 2.1484375, -0.32250977, 0.11456299, 1.2373047, -2.4453125, 1.0478516, -0.79003906, 0.72021484, 0.47851562, -0.17590332, 1.5761719, -3.2558594, 1.4082031, 0.59765625, 0.72753906, 0.5761719, -1.8828125, 1.9677734, 3.7402344, 0.27270508, -2.5097656, 2.921875, 1.4951172, -0.26782227, 0.9394531, -1.2851562, 0.60791016, -0.15161133, 0.45336914, 1.5107422, -0.9863281, 2.7265625, 1.4580078, 0.10015869, -1.6708984, -2.8632812, 2.1992188, 1.7011719, -2.046875, -0.7973633, -0.78808594, 2.8496094, -1.6943359, -0.97021484, 1.1015625, -2.0488281, -0.4868164, 1.2470703, -0.96728516, 1.0400391, 0.4873047, -1.6904297, -0.47485352, -0.38867188, -0.8847656, 1.515625, 1.3046875, -0.7758789, 0.28076172, -0.57177734, -0.20837402, -2.4765625, -1.9511719, -0.21508789, -2.1035156, -2.5703125, -0.41259766, -2.203125, -2.6933594, 0.20898438, 0.12200928, 3.1035156, -0.17053223, -0.8041992, -0.35180664, 0.7192383, 0.07525635, -0.68847656, 0.62597656, 1.3388672, 0.17553711, -2.8710938, 0.2512207, -0.97216797, 0.97802734, 1.1357422, -1.3105469, 1.1259766, -0.31811523, 1.3642578, 0.29370117, 0.69873047, 0.7758789, -1.6777344, 2.2714844, -3.0761719, -0.93847656, 0.23303223, 2.2441406, -1.4960938, 0.8647461, -1.6572266, -1.0029297, 0.08935547, -1.3134766, 2.6308594, -1.2666016, 1.5693359, -0.12365723, -0.23791504, 1.3378906, 0.0026283264, -2.2382812, -0.56591797, 0.40112305, -0.94921875, -1.984375, -4.5234375, 0.030532837, 0.93066406, 0.12121582, 0.4699707, 0.43359375, -0.13183594, 0.23962402, -0.87597656, 0.5307617, -0.41259766, 1.1591797, 2.7109375, -2.3964844, -0.33862305, 0.5708008, -1.0097656, -1.0195312, 0.071899414, 1.734375, -1.4580078, -0.64697266, 0.4333496, -0.3544922, 1.5517578, 0.7661133, -2.9160156, 1, 1.1035156, -3.0625, 2.2675781, -0.5488281, -0.17041016, -2.4023438, -1.4941406, 3.5957031, 2.2480469, 1.9414062, -0.9848633, 0.71240234, 1.1484375, -0.8911133, -1.0302734, -0.29101562, -1.0576172, 3.9511719, -3.0605469, -0.17419434, -0.38549805, 1.2099609, -3.671875, 0.22912598, 2.7734375, -0.28833008, 0.6347656, 0.2244873, 2.5097656, -0.8383789, -0.3046875, 1.0126953, -0.006958008, -0.29638672, 0.9511719, 0.17700195, -0.9038086, -0.55371094, 1.3876953, 1.1396484, 1.0800781, 0.9555664, 0.83154297, 0.6894531, -1.1318359, 0.79541016, -0.83691406, 2.0996094, 1.9111328, 1.9199219, -0.15319824, -0.48706055, 0.1227417, 2.3457031, 2.921875, -2.1308594, -0.10406494, 3.0488281, 1.0800781, -2.015625, -0.62646484, -0.65185547, 0.35546875, -2.5761719, -0.8203125, -0.69384766, -0.07086182, 0.70166016, -1.1083984, 2.1464844, -1.0117188, 0.9042969, 0.20031738, -0.68408203, -2.0625, -0.98535156, -0.40576172, -1.4746094, -0.84765625, -4.21875, 0.17346191, 3.7636719, -0.13244629, 0.08319092, 0.16516113, 0.26904297, 0.6958008, 0.69140625, -0.096069336, -0.2890625, -0.8051758, -2.1328125, -0.13903809, -0.37158203, 0.78466797, -0.27978516, -2.0253906, -0.5419922, -0.107666016, -0.49145508, -1.2412109, -0.55566406, -3.2695312, -0.3815918, -0.21691895, -0.41918945, -0.4885254, 1.7773438, -2.3847656, -1.7822266, 2.2441406, -1.5478516, 0.15722656, -1.7431641, -5.1757812, 1.5634766, -1.9130859, 1.0205078, 1.2402344, 0.7993164, -0.28100586, 1.3212891, 1.8779297, -4.0625, 0.36669922, -0.89208984, -0.3642578, -2.9589844, -0.13769531, 2.6660156, 1.3789062, -0.5498047, -2.2363281, 0.67578125, -0.67578125, -0.53808594, 0.9477539, -1.7089844, -0.07006836, -1.3818359, -0.21704102, -1.7949219, -0.42260742, 0.55566406, -1.9111328, -0.76171875, -3.5703125, 1.4404297, 0.98876953, 0.7939453, 0.24938965, 3.6992188, 0.9321289, -1.2138672, 0.78222656, 0.51464844, 4.546875, -0.7763672, -2.9550781, -0.36987305, 0.010383606, 1.1708984, -1.5195312, -1.7294922, 0.50341797, -0.53564453, 0.41870117, 0.80810547, 1.5585938, 1.3974609, -0.7060547, -4.1015625, 0.83935547, 0.41601562, -1.5556641, -1.3779297, 0.09338379, -2.09375, -0.9326172, 0.25585938, -2.7617188, 0.81591797, -1.2910156, 0.013122559, -1.7363281, 1.9677734, 1.4775391, 2.53125, 2.9082031, -0.38110352, -0.5449219, 1.2304688, -0.32592773, -1.8701172, 0.21240234, -0.93115234, -1.5644531, 1.4335938, 1.3447266, -0.10021973, -0.77734375, -0.121520996, -0.97314453, -1.4414062, 0.8017578, -0.06451416, -0.40966797, -0.012413025, -1.4550781, -1.4638672, 3.2636719, -2.3964844, 2.2597656, 1.2402344, 0.14208984, -1.2695312, 2.5976562, 1.5517578, -0.05734253, -0.25097656, 1.1484375, 2.6132812, 3.3105469, 0.5776367, -0.07513428, 1.1845703, -2.0859375, -0.4716797, 1.0488281, -0.55908203, -0.63427734, 0.40551758, 1.203125, 1.6992188, 2.859375, 0.7236328, 0.64501953, -2.7675781, 1.9970703, 1.2617188, -2.7128906, -0.64501953, 0.44140625, -0.74365234, 1.71875, -0.54785156, -1.5390625, 1.2519531, 2.7460938, -0.9116211, 1.9267578, 0.83496094, -0.6489258, 1.5048828, -4.484375, -0.71484375, -2.2734375, -1.1484375, 0.5961914, -1.9160156, 0.3486328, -0.087402344, 1.0478516, 1.3554688, -1.3515625, -2.9785156, -0.6582031, -0.9291992, -1.1220703, -0.18945312, -2.7226562, -2.5703125, 0.044311523, 0.56103516, 1.8886719, 0.5786133, 0.33569336, -0.55810547, -1.5517578, -1.2099609, 0.37475586, 1.7519531, -2, -0.32666016, 3.4179688, 0.08343506, -0.24902344, -1.3984375, -0.34472656, -0.15905762, 1.7617188, -0.25976562, -0.20703125, -1.9287109, -0.4560547, -2.5625, -3.3417969, -1.375, 1.2226562, -0.6928711, 0.65283203, -1.9423828, -1.2607422, 0.64160156, -1.3720703, -1.0009766, -2.796875, 0.79296875, -1.2646484, -1.0546875, -0.4494629, 0.24133301, -0.028549194, -1.6806641, 1.0234375, 1.1611328, 0.14575195, -2.9863281, -1.4345703, 3.6582031, -0.8027344, -1.7197266, 1.7226562, -1.3515625, -0.23754883, 1.3134766, 0.5986328, -1.8632812, 1.8847656, -3.9550781, -0.38012695, -0.03338623, -1.5166016, -0.24633789, -1.3134766, -0.5258789, 0.33740234, 1.9121094, 2.9511719, -0.011688232, -0.1373291, 0.7363281, 0.58203125, -0.06933594, -1.1328125, -0.17626953, -0.34594727, 3.4511719, 1.1289062, -0.8652344, -0.06549072, -1.9873047, -1.1201172, -0.6923828, -2.6289062, 0.7944336, -0.11212158, 0.3630371, 2.1894531, 0.025146484, -0.20092773, -0.010696411, 0.82714844, -0.9272461, -0.06072998, -1.4453125, 2.4980469, 1.2900391, -2.3027344, -2.0605469, 0.6191406, 1.8837891, 2.3066406, -1.3613281, 0.062316895, 0.32226562, -2.09375, 0.78808594, -0.6958008, 1.5390625, 1.3828125, -0.12536621, -1.5927734, -2.0429688, 0.7758789, -2.953125, 1.5136719, 1.2285156, 0.54296875, -0.33032227, 2.1914062, 0.073791504, -2.5703125, 0.42944336, -0.33447266, 2.5292969, -0.81689453, -1.0488281, 0.9404297, -2.5019531, -0.49487305, -0.33666992, -2.7675781, -2.7675781, 1.6845703, 0.13745117, -0.37646484, 1.4326172, 2.0117188, -0.8222656, 0.09857178, 1.3408203, 0.044403076, -0.7055664, -0.97314453, -2.2871094, 0.86328125, 1.2509766, -0.6376953, 0.91015625, 1.5322266, 0.63720703, -0.63671875, -1.2255859, 0.90966797, 2.5625, -0.0993042, 2.8613281, 2.4785156, 0.97753906, 2.4785156, 0.7421875, 2.2949219, 0.46264648, -0.37280273, 1.1035156, 2.1855469, -0.48046875, 0.72265625, -1.1767578, 1.2373047, -1.7158203, 0.65283203, -0.10961914, -0.114746094, 3.1015625, -3.0664062, 0.81396484, -2.5722656, 0.19702148, -2.5722656, -0.74853516, -0.42163086, 1.2978516, 1.8818359, 2.1757812, 2.3007812, 1.4189453, -0.42382812, 1.9296875, 1.0195312, 2.2324219, -0.7363281, 0.6166992, -1.8300781, -1.3017578, 0.9975586, 1.078125, 1.78125, 0.19018555, 0.69091797, -0.3203125, 0.57421875, 1.0195312, 1.8037109, 0.18615723, -0.11102295, -0.94873047, 1.0009766, 1.5585938, -1.5917969, 0.43896484, 1.1152344, -2.1777344, -2.7636719, 3.3710938, 1.2363281, 0.8305664, -1.3417969, -3.6210938, 1.6796875, -0.5996094, 0.6118164, -2.0605469, 1.1162109, -0.08880615, 0.66748047, 0.16809082, -0.5107422, -0.2475586, 0.8774414, 1.9130859, -1.3896484, 0.74609375, 3.8125, 0.6279297, 0.5493164, 0.22094727, -0.07751465, -0.073791504, -0.7529297, 3.4746094, -0.46728516, -1.9257812, -0.14660645, 1.9580078, 0.87109375, 1.4052734, 0.08905029, -0.43554688, 1.0009766, 2.0605469, -0.4489746, -0.42285156, -0.06933594, -0.3527832, 1.1210938, -0.6479492, -0.023651123, -1.4921875, 2.1699219, 0.32006836, -0.93359375, 1.3291016, 0.4033203, -1.6943359, 2.203125, 0.16235352, -0.6191406, -1.4980469, 1.4296875, 0.43115234, -0.5131836, -0.875, 0.2998047, 0.22729492, -0.38598633, -1.3056641, -0.029083252, -1.4042969, -1.8916016, -3.5644531, -0.12768555, -0.62158203, -1.4785156, -0.40454102, -0.15673828, 0.97753906, 3.5117188, 1.4150391, -0.6254883, -0.40161133, -0.99121094, 0.85839844, -2.6621094, -1.3212891, -0.4868164, 1.3896484, 0.6069336, -0.4260254, -1.7578125, -2.8945312, -1.3115234, -0.7416992, 2.6386719, -1.2675781, -0.6538086, 1.1943359, 2.0019531, 2.9511719, -1.0136719, -1.6884766, -0.47387695, -0.15429688, 1.7216797, -0.52197266, 0.45532227, -0.15222168, -0.00806427, 1.4892578, 3.3671875, 2.6503906, 0.3269043, 0.022079468, 2.5078125, 0.7919922, -3.0722656, 0.3293457, 1.6464844, 0.1616211, 0.5732422, 1.7978516, 1.0458984, 0.7319336, -1.3310547, -1.3857422, 0.30297852]}, "B07Q7MCXNG": {"id": "B07Q7MCXNG", "original": "Brand: Flame King\nName: Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-1.8535156, 1.4970703, 1.4941406, 0.36669922, 1.125, -3.0878906, 0.066345215, 0.018325806, 1.0830078, -0.90478516, 2.0644531, 0.22668457, -0.0657959, -3.7792969, 1.4257812, 1.1494141, -0.88378906, 1.9736328, 1.3388672, 0.28833008, 2.1445312, 1.0878906, -0.50878906, -0.9111328, 0.5234375, -0.7397461, 2.5878906, -3.6484375, -0.7705078, 0.009864807, 0.9506836, 0.0015830994, 0.014541626, 2.1367188, -0.2479248, -1.5947266, 0.9199219, -1.5097656, -5.1445312, -0.30395508, -1.9472656, -1.3955078, 2.2480469, -1.2353516, -0.78222656, -0.20507812, 0.32250977, -1.2285156, -0.6044922, 0.15344238, 0.9892578, 2.0039062, 0.087768555, 1.3183594, 0.8334961, 1.7880859, 1.0830078, -3.1015625, 0.040252686, 0.62402344, 1.6357422, 0.29345703, -2.5507812, 2.4589844, -1.0605469, 1.5039062, 0.21142578, -0.22680664, 0.91308594, 1.8320312, 1.1962891, 0.109313965, 1.7851562, -1.6210938, -0.84521484, 1.0205078, -3.7226562, 0.009277344, -0.59277344, 0.61083984, 0.052581787, 2.8242188, 0.76123047, -2.6933594, -1.2011719, -0.57910156, 0.6015625, 1.1220703, 0.56152344, 0.50439453, -1.4326172, 1.9941406, -0.07366943, -3.7519531, 2.5097656, 0.4699707, 2.5214844, 2.8808594, 3.2304688, 0.08428955, 0.51904297, -0.14379883, -0.48901367, 1.1816406, -1.2480469, -1.6572266, 0.84521484, 0.8701172, -3.0664062, 1.8603516, -0.2626953, -0.5498047, 1.2324219, -0.5917969, -0.07659912, -0.32128906, 0.3071289, 0.98583984, 1.6728516, -1.4042969, 3.5898438, -2.8632812, 2.4941406, -1.2294922, 1.6181641, 1.5654297, -0.75, 0.36328125, 5.4257812, 0.15100098, 2.1035156, 0.19067383, 4.4804688, -1.921875, 0.07019043, -2.5058594, -0.1538086, -2.1132812, -2.1777344, -0.8310547, -4.390625, -0.042816162, 1.4580078, -0.13623047, -2.8847656, -0.9296875, -0.60009766, 0.15612793, -0.80126953, -2.3242188, 1.1035156, -1.6826172, 0.6928711, -0.9916992, 2.8652344, 1.3945312, -1.9248047, -3.1464844, 0.30517578, 1.3525391, 1.5976562, 0.13244629, 0.37841797, 1.9521484, -1.0585938, -2.4003906, 1.0849609, 0.15600586, -1.4804688, 1.6064453, -0.29003906, -1.6191406, -0.32080078, 1.8808594, -0.43774414, -0.8154297, 1.0556641, 1.5400391, 0.17883301, 0.22888184, -3.8222656, -0.2512207, -0.55810547, -1.7490234, 1.9091797, 0.43359375, -0.8808594, -1.2236328, 1.2714844, -0.6621094, -2.3066406, 1.8408203, -1.7949219, 0.5263672, -0.03591919, -2.0078125, -3.9667969, -2.3613281, 0.6152344, 2.1113281, 0.4326172, -1.2070312, 2.0410156, -0.42407227, -2.2675781, -1.5830078, 0.3330078, -1.1494141, 2.0703125, 0.7080078, -0.64160156, 0.5678711, 1.4443359, -2.1621094, -1.1757812, -2.7441406, -0.92529297, 2.4140625, 1.8310547, 1.0380859, 1.2167969, -0.41552734, 1.6962891, 0.39038086, 1.5664062, 0.3552246, 1.1650391, 1.9980469, -3.4824219, -1.8232422, 1.8242188, 1.2792969, -0.19641113, 0.9746094, -2.4316406, 1.5205078, 0.63720703, -0.8496094, 1.3476562, 0.55126953, 0.52978516, 0.84228516, -0.74853516, -0.6982422, -2.2714844, -0.65185547, 1.4013672, 0.4802246, 0.8564453, -0.56689453, 0.84375, -0.55126953, -0.8745117, -0.71777344, -0.60302734, 0.14685059, 1.3447266, 0.96240234, 0.78564453, -2.1757812, 1.5175781, -1.7626953, -0.76904297, 1.015625, -1.9306641, 0.12017822, 2.8261719, -0.8129883, -2.15625, 1.3779297, -1.6337891, 0.5834961, 2.4414062, -1.1660156, 0.54833984, 2.4472656, -1.8935547, 3.6210938, -1.2988281, 2.125, 0.035583496, -0.7714844, 1.3388672, -2.7636719, 0.56396484, 0.055267334, 1.1396484, -0.25732422, -2.7480469, 0.3083496, 4.4960938, -1.6962891, -1.984375, 1.6894531, 1.4316406, 1.0332031, 4.1953125, -0.36816406, 1.6503906, -0.48217773, 0.1743164, 0.092163086, -1.6650391, 0.39868164, -0.29223633, -1.3330078, 0.7006836, -0.35131836, 0.3786621, -0.2097168, -1.6787109, 0.6616211, -0.80029297, 0.20532227, 0.4753418, -1.1074219, 3.9921875, -3.3671875, 1.9355469, 2.0136719, 0.35083008, 1.6201172, 1.3027344, -1.4755859, -0.4645996, 1.1220703, -1.1425781, 1.9912109, -0.64697266, 0.8491211, -0.042053223, -2.1914062, -0.21740723, -1.0478516, -0.5180664, 0.9501953, -1.2138672, -2.8828125, -0.19897461, -3.2382812, 0.41357422, 0.066467285, -1.3447266, 1.1005859, 0.71728516, -0.9980469, 0.04019165, 0.071899414, -0.14123535, -2.3554688, 1.1728516, 4.1054688, -0.3803711, -2.5371094, 1.7451172, 0.54833984, 1.6191406, 2.9003906, -0.05682373, -0.24194336, -0.02357483, -0.048950195, -0.20629883, -0.5126953, -0.83154297, -2.9628906, 1.9101562, -2.3867188, 2.1738281, -0.3630371, -0.083862305, -1.0410156, -1.1728516, -1.0996094, -3.3398438, -0.6196289, -1.5712891, 0.043945312, 1.3066406, 2.0507812, -1.5517578, -1.3154297, 0.7182617, -1.2363281, -0.9892578, 0.016998291, 0.9609375, -1.5380859, -1.7363281, -4.578125, 0.6020508, -1.6601562, -0.7363281, -0.42822266, 0.092163086, -2.8046875, 0.35498047, 0.18322754, 0.33544922, -0.2644043, 0.022064209, -0.4411621, -3.2167969, -0.5859375, -0.24560547, -0.18615723, -1.1083984, -1.28125, 0.47583008, -1.7167969, -0.36401367, 0.54345703, -0.7919922, 2.2167969, 0.9589844, -3.3359375, 1.9873047, 1.3427734, 0.49951172, 3.1816406, -2.9082031, -0.38427734, -2.2578125, -0.79052734, 4.0117188, 0.69091797, 1.0117188, 0.5703125, -1.4238281, 0.7885742, -0.22143555, -0.04550171, 1.4228516, 0.035858154, 2.9570312, -1.4472656, -0.5263672, 0.4724121, 2.5429688, -4.3476562, 0.19885254, 1.0322266, -0.4321289, 1.3095703, 0.60839844, -0.36376953, -0.35961914, 0.6669922, 1.2509766, 3.1933594, 2.0996094, 0.5732422, -1.2216797, 0.3305664, -1.1396484, -0.51416016, 4.4257812, -0.6699219, 1.3935547, 2.4628906, 0.65722656, -0.31860352, -0.46875, 0.068725586, 0.8129883, 1.4267578, 2.1152344, -0.8754883, 1.0244141, -2.4140625, -0.17553711, -0.42358398, -1.0654297, 1.4101562, 0.9604492, 1.3261719, 0.28027344, -0.43701172, -0.66748047, -1.6425781, -1.5576172, 4.3828125, -1.4277344, 2.2871094, -0.09954834, -1.21875, 1.2001953, -3.5898438, 2.5566406, -0.50146484, 0.58691406, -0.12780762, 0.8178711, -1.4238281, -3.3867188, 0.5527344, -1.5751953, -1.0449219, 2.3886719, 0.25048828, -3.34375, -0.28466797, -2.0761719, 1.1464844, 1.1660156, -1.9277344, 1.7597656, 0.38208008, 0.4350586, -1.5380859, -0.7192383, 1.3525391, 0.79541016, -2.6308594, 1.3945312, -1.4345703, 1.7480469, 0.47875977, 0.7368164, -0.56152344, -0.099853516, -1.7919922, 2.6855469, -0.68603516, 3.3300781, 0.11016846, 1.7744141, 1.7119141, -1.4169922, 0.008148193, -0.74121094, -3.4453125, 0.7753906, -1.9707031, -1.1923828, 1.1191406, -1.3417969, 0.17736816, -0.89697266, 0.96191406, -1.0117188, -0.75439453, -0.4465332, 2.9726562, -2.0761719, 0.030517578, 0.3774414, 2.0332031, -2.8085938, -2.7636719, 0.9609375, -1.5478516, -0.4963379, 0.14318848, -1.9111328, 0.20593262, 0.9501953, -0.921875, -0.26513672, -1.3183594, 1.6103516, -0.34692383, -1.1230469, -1.9033203, 2.1152344, 2.5371094, 0.6748047, 1.9267578, 1.5869141, 1.4726562, -0.59814453, -1.0869141, -0.8857422, 1.2382812, 1.2490234, -4.6875, -2.3105469, -0.5283203, 0.1739502, -3.5253906, 1.4414062, -1.4775391, 0.8198242, 2.9882812, 0.051239014, 1.9667969, 1.4970703, 0.70654297, -0.5439453, 1.1904297, 1.2949219, -0.6689453, 0.60791016, -2.0039062, -0.6245117, -1.1601562, 2.7773438, -2.3769531, -1.4160156, -2.2109375, 1.765625, -4.8476562, 0.9404297, 2.0683594, 3.0449219, -0.6557617, -0.7392578, 0.9042969, 1.1132812, -0.14526367, -0.75146484, 0.57373047, -0.9038086, -1.3144531, 1.3603516, 1.1083984, -0.5371094, 0.81396484, 1.6621094, 0.015235901, -1.9023438, 0.36669922, 0.65625, -1.9355469, 1.4580078, -0.57666016, 0.31079102, 3.2792969, -1.8007812, -0.11340332, 0.9785156, 0.06100464, -0.24536133, 1.0595703, -0.50341797, 0.36938477, 2.0820312, 0.08325195, 0.9423828, 2.6191406, 1.625, -0.734375, 2.0175781, -2.3203125, 0.18188477, -0.7885742, 1.8710938, -1.8369141, 1.0878906, 1.7333984, 0.5488281, -0.41870117, 1.375, 0.63623047, -0.4597168, 1.2558594, 1.0537109, -2.8984375, -3.6308594, -0.98779297, -0.4790039, 3.2128906, -0.63720703, -2.6308594, 0.11273193, 3.5761719, -0.9301758, 1.2998047, 0.9140625, -0.7597656, -1.6552734, -1.8115234, -1.9726562, -1.1337891, 1.2636719, 0.7211914, 0.34692383, 1.078125, -1.4951172, 0.055358887, -1.0742188, 1.7871094, 0.4506836, -0.4897461, -0.86621094, 0.09222412, -0.15319824, 1.0097656, -1.0917969, 0.60791016, -0.9194336, -0.61376953, 0.7158203, -1.1396484, 2.6347656, -0.6245117, -0.5732422, -1.6298828, 1.4101562, -0.4267578, -0.7036133, 3.2089844, -1.1083984, 1.7695312, -0.7988281, -0.3474121, -1.4902344, 1.6572266, 1.7402344, -0.5253906, 0.42700195, 0.1694336, -2.9082031, -5.0703125, -2.1347656, 0.2836914, -0.12237549, -0.24255371, -2.0195312, -1.2246094, 0.42700195, -1.0195312, -1.8291016, -1.9931641, 0.06161499, 0.083984375, -0.5229492, -1.2978516, 1.9423828, -0.45385742, 0.3869629, 0.8486328, -2.4257812, -1.0507812, -2.4121094, -1.5898438, 1.8759766, -0.43359375, 0.9423828, 0.051971436, -2.5253906, 0.8149414, 1.7705078, -0.33544922, -3.5683594, 1.9648438, -2.1074219, -0.66503906, 2.0996094, -2.9589844, -1.6835938, 1.5976562, -0.35791016, 1.7119141, 2.5683594, 0.89990234, -2.7089844, -1.5771484, -0.77685547, 1.625, -0.8334961, 1.2119141, 2.4101562, 1.4980469, 0.14501953, 2.0253906, -1.0986328, -2.2988281, -1.4169922, -0.5136719, 0.04296875, -0.9511719, 0.23083496, -0.070373535, 0.5449219, -0.1772461, -0.796875, -0.38671875, -0.8364258, -1.4248047, -1.4462891, 2.8085938, -2.8808594, 3.1054688, 2.5273438, -2.4726562, -2.0371094, -0.7841797, 0.8305664, 0.92089844, -3.1367188, -1.2246094, 1.2802734, 1.0029297, 2.5761719, -0.8466797, 1.8798828, -0.47583008, 1.2021484, -0.6923828, 0.28198242, 3.7421875, -0.27392578, 1.9365234, 0.8569336, -3.1796875, 1.8095703, 1.9306641, 2.3417969, -0.86865234, 0.46972656, 0.2680664, -0.6269531, -1.0986328, -0.61083984, -0.109680176, -3.0351562, -0.96777344, 0.875, -1.0585938, -4.6445312, 0.28979492, 0.25146484, -0.82470703, -0.1003418, -0.6513672, -0.25830078, -1.1767578, 1.1181641, 0.4255371, -1.8349609, 0.67089844, 1.4130859, 1.0791016, 1.2998047, -1.7158203, 1.3095703, 0.8100586, 0.31347656, -0.64746094, 0.8984375, -2.1542969, 2.9589844, 0.5830078, 2.0859375, 2.8261719, -1.0537109, 1.578125, -0.8256836, 2.1660156, 4.1484375, -0.23937988, 0.48486328, -0.69873047, 1.5117188, 0.1427002, -1.3955078, 0.8823242, -0.921875, 1.4736328, -1.4169922, 0.58447266, 2.28125, -1.0263672, 0.6435547, -0.7841797, -0.6796875, 0.12365723, 0.7392578, -1.0253906, -1.2958984, 0.6748047, 0.90625, 1.578125, -0.13745117, 0.8598633, -0.7680664, 1.1884766, 1.0996094, 0.9394531, -0.8432617, -1.4345703, -2.1367188, 0.36108398, 2.6015625, 0.39941406, 0.4675293, 0.13635254, -1.03125, 0.10632324, 0.90722656, -1.15625, -1.4873047, 1.3242188, 0.7050781, 2.9238281, 2.4648438, -0.99853516, 4.7890625, 1.8730469, -0.076293945, -3.2324219, 2.8964844, -0.9526367, -0.4880371, 1.1005859, -2.2597656, 0.9589844, -1.4667969, 0.73095703, -4.0664062, 1.0371094, 0.62646484, -1.1777344, 2.5097656, 0.3293457, -1.1523438, 2.7871094, 2.3769531, -0.02557373, 0.34423828, -0.3864746, 0.78564453, 0.004634857, 0.49926758, 0.5527344, 0.54833984, -1.078125, 3.3261719, 0.36645508, -1.0517578, -0.8491211, 1.6054688, 0.3942871, 1.0527344, 0.46923828, -0.71240234, 2.3554688, 0.82373047, 0.640625, 0.5395508, -1.3818359, 0.21740723, -1.9414062, -1.1708984, 1.0087891, -1.9951172, -0.0109939575, 1.6210938, -1.5322266, -2.2714844, 3.4609375, -0.9946289, 0.5473633, -0.32421875, -1.8876953, -1.2353516, 0.8178711, 1.0068359, -2.0917969, -0.006336212, 0.34448242, 2.7519531, -0.65527344, -2.0234375, -0.68603516, -0.57666016, 0.4753418, -1.90625, 0.9267578, -0.89501953, -0.13916016, 1.6142578, -0.7714844, 0.9326172, 1.0888672, 0.80810547, 1.8691406, -0.7709961, -0.30981445, 0.36865234, 0.36083984, -2.0292969, -1.9755859, 0.1928711, 1.2412109, -0.36669922, -0.011741638, -3.9785156, -1.6884766, -1.9023438, 0.119506836, -1.0048828, -1.1689453, 1.3964844, 0.99658203, 1.1523438, -0.36157227, 0.41967773, -0.4104004, 1.9277344, 1.8740234, -1.7900391, 1.4414062, -0.20007324, -0.3798828, -0.97216797, 2.8164062, 2.3359375, -0.5942383, -0.37670898, 1.859375, -2.0664062, 0.034057617, -0.42895508, -0.9770508, -0.5371094, 1.2773438, 1.5605469, 3.3535156, 0.58740234, -0.5209961, -1.7695312, -0.36401367]}, "B07LBK17K9": {"id": "B07LBK17K9", "original": "Brand: Goplus\nName: Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)\nDescription: Product Description
This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

Features
Heavy duty cast iron body
Powder coating makes it is waterproof and anti-rust
Triple burner outputs a total whopping BTU of 225,000
Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
Adjustable firepower make your cook more delicious
Removable feet make it can be easily carried or stored
External valve CSA certification
Specifications
Finish: Black
Product Type: Triple burner
Material: Cast iron
Item Dimensions:34\u201dx17.5\u201dx28.5\u201d
Item Weight:33.5lbs
Hose Dimensions:0.5\u201dx51\u201d
Max: 250 Psig
BTU : 225,000
Package includes:
1 x Single burner stove
1 x Instruction
\nFeatures: \ud83d\udd25 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious.\n\ud83d\udd25 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you\u2019re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time.\n\ud83d\udd25 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more.\n\ud83d\udd25 Safety: This burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook.\n\ud83d\udd25 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.\n", "embedding": [-2.2050781, 2.2832031, 2.0234375, 0.71484375, 0.14758301, 2.5175781, 2.265625, -1.7910156, -1.7949219, 3.609375, -0.44799805, -0.5332031, 0.7241211, -3.4492188, 0.2548828, 1.125, -1.8173828, -0.052734375, -0.7089844, 0.8432617, 2.828125, -0.22570801, 1.6865234, -0.79589844, -0.5214844, 0.35546875, 3.4941406, -2.8476562, 0.5205078, -2.4042969, 2.6074219, 0.28100586, 1.1738281, 2.3183594, -4.515625, -0.90185547, -1.6083984, 1.9882812, -1.90625, 0.52197266, -1.4619141, -1.3388672, 2.1816406, -0.07501221, -1.9443359, -0.30151367, 1.7226562, 2.1230469, -0.88427734, -0.6118164, 0.044525146, 1.8496094, -0.38061523, 1.9199219, -2.0175781, 2.0664062, 0.44067383, -1.4892578, 1.9492188, -0.36279297, 1.9443359, 1.3876953, -1.6132812, 1.0126953, -1.1708984, -0.98535156, 0.7758789, -0.9794922, -1.4589844, -0.15539551, 3.1367188, 0.31323242, -1.2197266, 0.2692871, 0.7739258, -0.86865234, -3.3085938, 0.6533203, 3.9472656, -0.98583984, -2.6484375, 2.1152344, 1.8320312, 0.86572266, -0.37646484, 0.20593262, -0.85253906, -0.21948242, 2.4375, -0.0040893555, -2.0390625, 2.8554688, -3.0507812, -4.3828125, 1.6025391, -0.84228516, 2.4765625, 0.9272461, 0.66503906, 0.9301758, 0.22180176, 0.6879883, -0.8227539, -0.53808594, -1.6289062, -0.6640625, 3.6445312, 0.91064453, -1.9267578, 1.4052734, -3.5410156, -0.08569336, 1.1123047, -0.8051758, 0.27954102, 0.12432861, -1.4199219, 0.30297852, 3.3671875, 1.09375, 4.6132812, -0.048919678, 0.29003906, -1.4140625, 1.0068359, 1.3964844, -0.7973633, 0.6748047, 2.5136719, -1.5478516, -2.3515625, -1.4296875, 0.3774414, -0.5678711, -1.5595703, -0.29492188, -1.2392578, -1.7412109, -3.4570312, -0.56347656, -1.7324219, 1.5888672, 2.9023438, -0.58447266, -3.90625, -0.008255005, -0.11352539, 2.2363281, 0.39282227, -0.60595703, -0.51660156, -0.5498047, -0.38208008, -2.3164062, 2.2011719, 1.2285156, -0.47753906, -0.66308594, 3.2265625, 0.3178711, 0.3581543, -3.7988281, -1.703125, 2.0625, -0.51953125, -1.1875, 0.22045898, 0.3088379, -0.021057129, 1.5634766, 0.39526367, -1.3574219, 0.40966797, -1.3046875, 0.43481445, -1.1923828, -0.9824219, 2.8886719, -0.49169922, -0.74658203, -1.4228516, -2.0019531, 1.7070312, 3.234375, 0.5576172, -1.4833984, 1.1591797, -0.56396484, 0.25805664, -2.2421875, -1.2646484, -0.18920898, 0.79589844, -0.80078125, 0.12719727, -1.1416016, -0.24328613, -1.6445312, -0.18847656, 1.0400391, -0.87402344, -1.1943359, 0.36767578, 1.2851562, -2.7890625, -1.5009766, -0.42651367, -1.3310547, 2.9707031, 2.6230469, 0.27539062, -0.9165039, 1.9921875, -0.34399414, -0.8598633, -0.86279297, 2.7207031, 0.3178711, 2.1464844, 1.9833984, -0.43188477, -1.6953125, 1.0078125, 2.1113281, 0.08117676, 0.9370117, 1.0664062, -0.3173828, -1.296875, -0.28710938, 2.0234375, 0.10534668, -0.31176758, 0.13830566, -1.0800781, 3.8867188, 0.9814453, -1.3623047, -0.48120117, -0.9892578, -0.28442383, -1.6318359, -0.15820312, 0.49609375, -2.375, -0.4326172, -0.9711914, 0.72509766, 1.7900391, -0.6459961, -1.3017578, -1.4326172, 0.61279297, 0.5395508, -0.9794922, 0.5722656, 0.14770508, -0.95996094, -2.0332031, -2.5917969, 1.1455078, 1.6679688, -0.30688477, 0.46191406, 0.5966797, -1.8662109, 2.3046875, 1.0371094, -2.7832031, 1.0654297, 2.5117188, 0.38256836, 3.5019531, 0.45361328, 1.3193359, -1.1240234, -2.0761719, 2.6015625, 1.1865234, 1.5380859, -0.5756836, -1.3720703, 2.5976562, -2.78125, 0.59716797, 1.1376953, 2.2207031, -0.6254883, -0.10913086, -0.014152527, 5.5390625, -1.2617188, -2.7832031, 1.8681641, -2.8242188, 0.6347656, 0.265625, 0.6586914, 0.37329102, -0.31469727, 2.375, 0.4411621, 0.6357422, 2.5039062, -2.0234375, -1.84375, 0.8305664, -3.5722656, -0.18920898, 1.3740234, -1.0761719, -0.25268555, -1.4990234, 0.27148438, -2.8789062, -0.4333496, 1.9882812, -2.1523438, 1.6113281, 1.3271484, 0.88134766, 0.65625, -0.11566162, -2.7597656, 0.2052002, 0.059906006, -0.23339844, 1.2753906, -0.1550293, -1.5634766, -0.80029297, -2.5527344, 0.17407227, -1.2285156, -0.9873047, -0.4645996, 0.28637695, -2.8339844, 1.3300781, -0.59814453, -0.3947754, 0.9223633, -2.5332031, -0.073791504, -3.0585938, -3.96875, -0.25805664, 0.13720703, -0.54296875, -1.3164062, 1.140625, 1.1259766, -1.2607422, -5.6601562, -0.58251953, 0.09020996, 0.21826172, -0.31933594, -0.51708984, 0.9121094, -0.9707031, 0.1739502, -0.057678223, 1.3652344, 0.14831543, -1.8300781, 0.97558594, -4.4804688, 1.3740234, -1.0039062, 0.46948242, -0.19091797, -0.5341797, -2.5136719, 0.19445801, -0.54833984, -0.6557617, 3.5683594, -1.5117188, 1.4970703, 0.039367676, -1.0546875, 0.63427734, -2.0898438, -2.2792969, -0.77734375, -0.8105469, -1.0009766, -1.4677734, -3.9882812, -0.49829102, -2.0585938, 0.42163086, -0.87890625, 1.7353516, -0.7480469, 1.5146484, -1.84375, -0.2939453, 0.08850098, 0.34179688, -0.6816406, 0.17663574, -1.1748047, -0.7368164, -0.5649414, 1.0009766, 2.0644531, 1.2138672, 0.5605469, 0.71191406, 2.5273438, -0.2479248, 0.19177246, -0.6176758, -3.15625, 0.96435547, 1.8398438, 0.19763184, 1.5449219, -1.5419922, -1.9697266, -2.1816406, -1.2832031, 2.1777344, -0.65527344, 3.1660156, -0.29541016, -1.5498047, 0.7817383, 1.0869141, -0.17578125, -2.0625, 0.37280273, 4.2226562, -2.4472656, -1.2949219, 1.3867188, 1.9316406, -4.3359375, -0.49780273, 0.84472656, 2.3945312, 1.8125, 1.6308594, 1.9599609, -0.025405884, -1.0302734, -0.87597656, 2.7324219, 1.3154297, -0.46533203, -2.0019531, 0.4025879, -1.0263672, 0.96777344, 0.87597656, 2.03125, 1.7539062, 2.5761719, 2.3378906, -2.15625, 0.25024414, 0.058685303, 1.1162109, 0.041168213, 2.8515625, -0.2993164, -0.23730469, -1.3066406, -0.28881836, 0.8730469, -2.9296875, 0.9482422, 1.8867188, -0.04232788, 0.3708496, 0.12042236, -0.099121094, 0.66308594, -0.075805664, 0.95947266, -0.31469727, -0.80810547, 1.8193359, -0.5253906, -1.0273438, -1.2734375, 2.3261719, -0.6923828, -2.6074219, 1.1064453, 1.046875, -0.9140625, -2.9453125, -0.39868164, 0.09350586, -1.5371094, 5.0898438, -0.3515625, -1.0517578, 0.42456055, -1.9052734, 1.0712891, 1.0585938, -0.3310547, -0.5180664, -1.5742188, -0.3864746, -0.5366211, 0.43310547, 1.984375, 1.546875, -2.7734375, 0.2993164, -2.5605469, -0.02947998, 0.29296875, -2.3730469, -0.6459961, 2.2734375, 0.31030273, 0.9946289, -0.024810791, 3.6015625, -2.6054688, -0.3190918, 0.9848633, -2.9921875, -0.18640137, -3.5117188, -3.015625, 1.2978516, -0.94921875, -0.5283203, 3.2539062, -0.18591309, 0.14892578, 1.4101562, 0.3798828, -3.2871094, -1.5927734, -1.2861328, 1.2363281, -2.890625, 0.5830078, 0.21887207, 0.20361328, -1.21875, -1.6279297, 0.35913086, -0.36938477, -0.047424316, 1.1015625, -3.4589844, 1.4902344, -0.4807129, -0.53515625, -0.609375, -0.3713379, 1.4541016, 0.16333008, 0.6308594, -1.7177734, 1.1523438, 0.21240234, 0.62158203, 1.0410156, 3.2617188, 0.8359375, 0.7597656, -0.21459961, 1.1523438, 1.8476562, 0.09777832, -2.15625, -1.7285156, -0.31176758, -0.070373535, 0.16845703, 0.15930176, -0.6635742, -1.8222656, 1.4853516, 0.19897461, 0.6381836, 1.0566406, 1.2373047, -1.6269531, 1.0019531, 0.95654297, -1.6279297, -1.7675781, 0.93847656, 0.73583984, -1.7578125, 2.1835938, -0.85009766, -0.29296875, -0.09490967, -0.70703125, -0.61328125, 3.3769531, 0.65185547, 0.83935547, 3.0273438, -1.6435547, -2.8515625, 0.54296875, -1.3496094, -0.84716797, 1.1513672, -0.20483398, -0.47631836, 2.6269531, 0.33032227, -0.2310791, -0.77734375, 1.6240234, -1.9208984, -1.2119141, -1.1455078, 0.49169922, -1.3916016, -1.125, 1.7304688, 0.06304932, 2.578125, -0.94189453, 0.10845947, -0.7006836, 1.0722656, -2.2285156, -1.09375, -0.58251953, 0.37158203, -0.8041992, 0.043548584, 1.1289062, 0.27416992, 2.4667969, -1.0654297, 2.8867188, -0.2927246, 1.421875, -0.19543457, -0.4362793, -1.5732422, -0.6064453, 0.8310547, 1.6220703, 0.42895508, 2.6308594, 1.5283203, -0.5683594, 1.7314453, 0.7451172, -1.2919922, -0.24645996, 0.26635742, -1.0039062, 1.4345703, -1.71875, -2.1757812, 0.74853516, 2.3847656, -0.53466797, 0.87353516, -0.31323242, -0.2454834, -0.3659668, -1.9003906, -0.1394043, -1.9375, -0.82714844, -0.91552734, -1.0390625, 0.48535156, -0.48046875, 2.15625, 1.9990234, -0.08929443, -0.54345703, 2.5585938, -0.78515625, 1.9667969, 0.7192383, -0.5493164, -2.4042969, 0.43896484, 1.9755859, 1.7880859, 1.8994141, -0.5961914, 1.8886719, -1.5576172, -0.33618164, -1.8339844, 2.5351562, -3.2734375, -0.27319336, 2.6699219, -0.33520508, 0.40356445, -1.7558594, -1.3300781, -0.73339844, 2.9003906, -0.034118652, -0.89501953, -0.7841797, -0.23095703, -1.4404297, -3.3183594, -0.1887207, 0.38891602, -0.08843994, -0.8901367, -0.095947266, -1.6044922, -0.67089844, 0.15673828, 0.60302734, -1.6972656, 2.0097656, -0.17504883, 0.53466797, -1.4765625, 0.4423828, 0.9223633, 1.8847656, 1.1787109, 0.33325195, 0.13952637, -2.6855469, -1.1523438, 0.78027344, -1.8154297, 0.8535156, 0.29882812, 0.59716797, 0.6113281, 2.4199219, -1.2265625, -2.4179688, 1.7197266, -0.87646484, -1.3710938, -0.6166992, -1.2822266, 2.3710938, -0.16760254, -2.0429688, 0.98535156, -2.6855469, -1.8974609, -0.21350098, 1.7060547, -0.15307617, 0.95458984, 0.4951172, -1.1005859, 1.3710938, 0.50927734, 0.9194336, 0.98583984, -0.7890625, -2.1484375, -2.2285156, -2.765625, -0.92041016, -1.34375, -0.85595703, -0.0026512146, 0.40722656, 1.1201172, 0.14343262, -0.54052734, -0.04336548, -0.5004883, -0.5541992, 1.6982422, -0.26782227, 4.0898438, 0.4724121, 0.6821289, -2.5546875, -3.3554688, 0.6777344, -0.36645508, 0.7260742, -0.39746094, 0.33129883, -1.4755859, 0.04547119, -0.6850586, 2.1484375, 3.2636719, 1.4375, -1.7880859, 2.3496094, 3.125, -0.2980957, 0.8203125, 0.7788086, 0.38232422, -0.55078125, 3.7382812, -0.045318604, -0.48339844, 1.9121094, -1.2119141, 2.53125, -1.1054688, -1.484375, -0.3215332, -0.013282776, -1.1474609, -2.6875, -0.92578125, -1.0820312, 1.3251953, 0.8671875, -0.08129883, -0.43310547, 2.1738281, -0.6923828, 0.7832031, 1.8896484, 2.2304688, -1.4697266, 1.1376953, 1.2509766, 0.87060547, 2.0195312, -1.3427734, 1.7402344, 1.0185547, -0.6074219, -0.9765625, 3.0800781, 1.4189453, 2.7265625, 0.25683594, 0.6513672, 2.921875, 2.03125, 3.9570312, -0.05218506, 1.3095703, 2.1796875, 1.3574219, 0.3190918, 1.2119141, 0.4909668, -0.61279297, -0.9897461, -0.32128906, -0.8232422, -2.0234375, -0.13171387, 0.59521484, 3.0683594, -3.7226562, 3.4511719, 0.26416016, 2.2421875, -0.5151367, 1.0253906, 0.9057617, -1.6523438, -0.97021484, -0.5761719, -0.1665039, -0.64501953, -0.8222656, -1.1542969, 1.140625, 1.4023438, -3.5019531, 0.8256836, -1.0800781, -2.8222656, -1.6787109, 2.2402344, 2.1875, 0.41601562, 0.86279297, 2.7382812, 1.6806641, -0.82373047, 0.64746094, -1.3652344, -0.83935547, 1.1044922, 3.7265625, 0.30932617, 0.18249512, 1.4023438, -1.6972656, -2.5449219, -3.1171875, 2.7460938, 2.3378906, 1.4121094, 2.2363281, -1.5820312, 2.3203125, 0.5161133, 1.9316406, -0.72998047, 2.25, -0.32177734, -1.6416016, -0.74316406, 0.7504883, 1.0654297, 3.0429688, 1.84375, -1.2490234, 1.2304688, -0.13879395, 1.6962891, 0.52441406, -0.12207031, 0.4831543, 3.0039062, -0.04220581, 1.4931641, -0.096069336, -1.5644531, -1.0673828, 2.4648438, 3.0742188, -0.08093262, 1.2890625, -1.5449219, 1.8535156, -0.009109497, -1.0478516, -0.78125, -1.5722656, -2.0078125, -0.6928711, -2.109375, -0.6982422, -0.86621094, 2.0507812, -0.032226562, -1.0439453, 1.3554688, 0.9404297, 0.23034668, 1.265625, 1.3398438, -0.9682617, -0.16870117, -1.703125, -0.093322754, -1.2851562, -2.984375, 1.1630859, 0.13305664, 1.8115234, -1.7451172, 0.6923828, -1.2392578, -0.65527344, -0.45947266, 1.0810547, -1.8964844, -0.71191406, -0.42163086, -0.5493164, -0.2788086, 1.4775391, -0.6230469, -1.4570312, -0.011108398, -3.6230469, -0.484375, -0.22998047, -0.3112793, 1.390625, 3.2851562, 0.4440918, 2.2441406, -2.078125, -3.5136719, -1.2685547, -1.7255859, 1.2460938, -0.41430664, -0.42626953, -0.5493164, -0.1887207, 2.6015625, -1.3007812, -0.026611328, -0.6308594, -1.0478516, -0.69140625, -0.91259766, 0.609375, -0.083862305, 1.0029297, -1.8496094, 2.5527344, 2.7636719, -0.22912598, 2.0976562, 1.2236328, 0.7470703, -2.2929688, 0.50439453, -1.4628906, -0.9580078, -0.5551758, 0.22265625, 2.6503906, 0.7128906, -0.21020508, -2.8046875, -1.90625]}, "B081SMW6PL": {"id": "B081SMW6PL", "original": "Brand: WADEO\nName: WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More\nDescription: Length:12 Feet
3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting
Attention:ONLY use for low pressure propane appliance
Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
Please Note:
1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
\nFeatures: \ud83d\udc4912 Feet long propane hose, extended propane hose with 3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting, can meet your BBQ needs.\n\ud83d\udc49Convenience: 12FT propane appliance extension hose is convenient for you. You don't have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances.\n\ud83d\udc49Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting.\n\ud83d\udc49Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More.\n\ud83d\udc49Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.\n", "embedding": [-0.21411133, 1.3808594, 1.1503906, -2.1269531, -0.64697266, 0.017318726, 1.0527344, -1.1523438, 2.4707031, 1.1123047, -0.69091797, 1.328125, 2.5566406, -3.6230469, 1.1972656, 0.8613281, -0.3605957, 0.74316406, 1.5351562, 2.421875, 2.3515625, -0.57421875, 2.0976562, -0.35864258, 0.9042969, -2.6230469, 3.6269531, -1.7744141, -0.2565918, -0.16015625, 1.1630859, 2.0527344, -0.4724121, 0.19445801, -4.359375, -0.5209961, 0.08453369, -0.60302734, -3.4726562, -2.0566406, 0.036102295, -0.9121094, 3.078125, 0.42041016, -2.1894531, 0.60058594, 0.10845947, 0.9765625, 0.7607422, -0.7910156, 1.5537109, 0.35864258, 0.5444336, 0.73291016, -2.0039062, 0.9038086, 0.56103516, -3.8066406, 2.0292969, 0.8574219, 1.8515625, 0.020614624, -2.1601562, 0.19311523, -0.38745117, 0.38208008, 0.6665039, -0.5463867, 0.49975586, 0.39868164, 0.028182983, 1.1884766, 0.08441162, -0.08898926, 0.8486328, 0.29003906, -2.2167969, 1.2802734, 3.4394531, 1.6777344, 0.052001953, 3.6972656, 0.8461914, -2.9648438, 0.6616211, -1.7714844, -2.1875, -0.111206055, 0.54003906, 2.4863281, -1.9853516, 2.6445312, -2.8222656, -3.1777344, 1.9628906, -0.74853516, -0.81152344, 1.6621094, 1.6416016, 0.2861328, -0.29052734, -0.4987793, -0.79833984, 0.859375, -1.8623047, -1.7529297, -1.2714844, -0.101623535, -1.2080078, 1.4560547, 0.81591797, 0.16992188, 1.4267578, -0.9223633, 0.7949219, -2.7226562, -0.9897461, -2.4472656, 3.5996094, 1.1826172, 1.0380859, -0.5185547, 0.14147949, 1.0527344, 3.0390625, -0.55371094, -0.6064453, 1.6455078, 2.234375, -3.1035156, 1.1044922, -2.4960938, 1.2509766, -0.04574585, -0.7441406, -1.6933594, 0.30639648, -1.9921875, -2.3964844, -0.9145508, -2.4375, -1.2763672, 1.7001953, -0.9511719, -3.6679688, 1.2646484, -2.2304688, -0.12780762, 2.1523438, -3.2636719, 2.2421875, -1.8652344, -1.0722656, -0.6040039, 2.2753906, 1.2949219, 1.7275391, -1.4394531, 2.9882812, 2.6679688, 1.484375, -2.0019531, -2.2226562, 2.0761719, -0.016204834, -3.9765625, 0.5371094, 0.59033203, -0.54589844, 0.34350586, 0.25170898, -3.1660156, 2.4863281, -0.73583984, 0.6503906, -1.7382812, 1.1191406, 0.27148438, 2.6308594, 1.3955078, -2.1601562, -2.8339844, -0.25732422, -2.3730469, -0.3527832, 0.2479248, -1.9707031, -2.1210938, 2.9511719, -1.0341797, -2.0722656, 1.6103516, 0.4321289, 3.3964844, -0.5029297, -2.8671875, -2.8730469, 0.34716797, 1.1376953, 1.5927734, -2.0722656, -2.0390625, 0.91259766, 0.53466797, -1.9619141, -0.29174805, -0.49560547, -0.26538086, 1.9882812, 1.4609375, -0.5551758, -0.4128418, 2.703125, 0.53222656, 0.6977539, -1.1816406, 1.9199219, 1.3193359, 2.8398438, -0.14855957, -0.12597656, 0.17199707, -0.45361328, 1.1835938, 1.2001953, 0.8486328, -1.3867188, 1.0751953, -1.6757812, -1.7197266, 1.9941406, 0.53564453, -1.3300781, -0.046722412, 0.17651367, 1.8212891, 1.5117188, -0.5175781, 0.61376953, 4.7382812, 0.5751953, -0.734375, -2.2402344, -1.265625, 0.2442627, -0.9633789, -0.048553467, 0.4819336, 0.95214844, 0.11791992, 1.5175781, -0.82958984, -0.4453125, -1.7363281, 0.39746094, 0.59277344, 0.7441406, 2.4824219, -0.29174805, 0.50097656, 0.3581543, 0.1348877, 1.2324219, 3.2226562, 0.18286133, 0.8461914, 2.0234375, -1.0410156, -1.5, -1.7431641, -1.2470703, 2.9882812, 0.4189453, -0.2607422, 0.94091797, 1.6123047, -1.6679688, 0.52783203, -0.50878906, 0.9941406, 1.9414062, 0.1998291, 0.84814453, -2.65625, 1.9492188, 0.8432617, 2.28125, -0.124938965, -1.6464844, 1.3525391, 3, -0.32910156, -1.7646484, 2.34375, 2.0976562, 2.1230469, 0.14672852, 1.7412109, -0.22851562, -0.46850586, -0.16552734, 1.3115234, -1.1816406, 2.6523438, 1.890625, 0.4885254, 0.39770508, -2.1914062, 2.4023438, 1.6884766, -0.51220703, 0.87841797, -0.9970703, 1.4755859, -2.4121094, -2.2304688, 1.8212891, -1.1992188, -0.8852539, 2.2636719, 0.0022697449, 0.7036133, 1.4160156, -1.1972656, -1.1337891, 0.56347656, -0.6689453, 0.4675293, 2.4804688, -1.6484375, -1.1992188, -0.8286133, -0.7973633, -2.2285156, -1.6396484, 0.6933594, -1.4013672, -0.61816406, 0.45288086, -2.8808594, -1.5439453, -1.1591797, -0.1026001, 2.2910156, 0.6254883, -2.1386719, -0.16320801, 1.4658203, 0.68603516, 0.26611328, 0.16381836, 2.5351562, -0.45483398, -2.1738281, -0.5161133, 0.3930664, -0.16357422, 0.93066406, -3.0390625, 0.6977539, 1.2421875, 0.11608887, 0.72216797, 0.29296875, 0.6347656, -3.53125, 0.012527466, -3.6875, 0.39208984, 1.609375, 1.9794922, -0.32543945, 0.2619629, -1.953125, -1.1191406, 1.2148438, -1.0136719, 1.4501953, 0.6035156, 1.1083984, -1.1318359, -1.4804688, 1.0859375, 1.1669922, -1.6279297, -1.09375, -0.07977295, -1.1865234, -1.0986328, -4.1484375, 0.87841797, 0.33447266, 1.5927734, 0.98095703, -0.9082031, -2.1367188, -1.5527344, -0.5644531, -1.7441406, -0.40039062, -0.4206543, 0.40454102, -0.35766602, 0.45532227, -2.1953125, -1.4560547, 0.13183594, 0.1772461, 1.3242188, -1.2744141, -1.3974609, 1.5322266, 0.32104492, -0.34228516, -0.8276367, -2.9375, 0.5756836, 2.4472656, -0.83740234, -0.3388672, -1.5273438, -0.96533203, -1.4990234, -1.4169922, 2.6464844, 3.4003906, 1.75, 0.8261719, 1.7783203, 1.0478516, 1.1533203, -0.47558594, -1.9882812, -0.20715332, 4.125, -2.1132812, -0.43896484, -0.36987305, -0.019515991, -3.2460938, 1.3652344, 1.4433594, -0.034484863, 0.6020508, 1.3027344, 1.2285156, -0.103393555, 0.13269043, 1.0214844, 0.8378906, 0.15612793, 1.0449219, -0.80029297, -0.92333984, -0.7338867, 0.87597656, 1.1201172, 0.90527344, 1.7119141, 0.21398926, -0.58496094, 0.20336914, -0.71435547, -0.6879883, 1.9472656, 1.8955078, 0.69433594, -0.083740234, -0.8100586, 0.7661133, 0.9404297, 1.90625, -1.25, -1.109375, 1.2490234, 1.5302734, -1.1015625, -0.05645752, -1.984375, -0.60595703, -2.8632812, -0.88134766, -0.48046875, -0.074523926, 1.1259766, -0.82373047, 2.2324219, -0.6201172, 1.4462891, -0.17382812, -0.9863281, -1.7207031, -1.2548828, -0.84033203, -0.2944336, -0.59228516, -2.9707031, -1.5097656, 3.4160156, 3.2460938, -0.77783203, 0.82666016, -1.1230469, 1.7080078, 1.6220703, -0.6699219, -0.6464844, -0.028167725, -0.75146484, 0.6538086, -0.8647461, 1.1865234, -0.17041016, -1.5566406, 1.2578125, 0.43798828, 0.28588867, -0.0859375, 0.12310791, -3.4257812, -0.18603516, -0.22692871, -0.3059082, -0.22460938, 3.1308594, -1.2939453, 0.09448242, 2.6132812, -1.2802734, -0.8955078, -0.6772461, -5.5078125, 1.2695312, -1.6884766, 0.07116699, 3.046875, -0.9838867, -0.61621094, 0.5175781, 1.7705078, -2.6738281, -0.87353516, -0.62109375, 1.1494141, -2.4941406, -1.5341797, 2.5195312, 0.6772461, -1.6982422, -0.5805664, -0.23132324, -2.3046875, -0.42895508, 1.3984375, -0.5004883, -1.1152344, -2.4941406, -0.44677734, -1.3066406, 0.24133301, -0.32177734, -2.7480469, -0.51416016, -2.0761719, 2.1328125, 0.50390625, 0.39282227, -1.4794922, 3.5976562, 0.5527344, -0.9970703, -0.4404297, 0.21569824, 3.6914062, -0.2866211, -2.6777344, -0.4321289, 1.0029297, 0.02558899, -0.39453125, -0.2208252, 0.8959961, -0.8051758, 2.3046875, 0.64404297, 0.62646484, 0.8208008, 0.8442383, -5.1210938, -0.16577148, 2.1269531, -0.79833984, 0.107421875, -1.78125, -1.125, -2.4863281, 0.36547852, -1.7578125, -0.60791016, -1.2871094, 1.0859375, -1.7783203, 2.4824219, 0.5263672, -0.29760742, 1.9394531, -0.81591797, -1.2871094, -1.78125, 0.39697266, -1.2041016, -0.73583984, -1.7568359, -1.0410156, 1.1240234, 0.8046875, -0.13757324, -0.88916016, 0.046661377, -1.6416016, -0.5678711, -0.34326172, 0.06994629, -0.5, -1.0126953, -0.17407227, -1.1552734, 3.9472656, -2.1464844, 1.0498047, 0.45532227, -0.5263672, -0.546875, 1.0986328, 2.9433594, 0.36816406, -0.72216797, 0.50878906, 2.2539062, 4.3828125, 1.0761719, 0.34179688, 2.0820312, -0.4855957, 0.6611328, 0.7294922, -0.2442627, -0.6064453, -0.7963867, 0.6669922, 2.0976562, 3.4648438, 1.7421875, -1.15625, -1.5439453, 1.3964844, 2.9257812, -1.1884766, -0.89990234, 0.828125, -1.25, 1.5986328, -1.5517578, -0.72558594, 1.2080078, 3.3632812, 0.04269409, 2.1914062, 0.11206055, -0.28466797, -0.6352539, -3.5292969, -1.2988281, -0.7050781, -2.0136719, 2.7050781, -3.2519531, 1.7197266, 0.61865234, 1.09375, 1.8134766, -1.9609375, -1.6835938, -1.0820312, -1.9355469, -0.051971436, 1.2324219, -2.1601562, -3.5117188, 0.4008789, 0.88378906, 2.8398438, 0.19140625, 1.8173828, -0.96533203, -1.6533203, -1.78125, 0.06506348, 2.3125, -0.46142578, 0.20825195, 2.6269531, 0.6118164, -0.70458984, -0.80859375, 0.063964844, -1.046875, 2.4902344, 2.3261719, -0.4013672, -0.5727539, -1.8242188, -1.9970703, -4.1875, -1.9404297, 1.9306641, 0.25708008, 1.2792969, -1.7207031, -1.3535156, 0.45214844, -0.9863281, -0.21691895, -2.5136719, 0.9082031, -1.4101562, -0.50097656, -2.1445312, 2.2636719, -0.49829102, -2.3554688, -2.5332031, -1.3681641, -0.030349731, -1.6132812, -1.7509766, 3.7148438, -3.2246094, -2.1132812, 1.4033203, -1.2333984, -0.84814453, 2.3847656, 1.2382812, -1.1689453, 0.76708984, -2.7851562, 1.7353516, 0.45532227, -1.5839844, 1.2792969, -1.2373047, 0.27270508, -0.20410156, 2.0664062, 2.9726562, -0.45922852, -0.68115234, 1.2783203, 0.94873047, -1.2548828, -0.79785156, -0.25317383, 0.2841797, 3.6523438, 1.3378906, 0.17102051, -0.8100586, -2.3203125, -2.65625, -0.101257324, -2.7246094, 0.7651367, 0.6152344, 0.9633789, 0.4633789, -0.09161377, 1.4365234, -1.0556641, 0.8232422, -0.14367676, 1.0419922, -1.2519531, 2.1308594, 0.47583008, -0.8798828, -5.0664062, 1.6015625, 2.9570312, 4.3789062, -1.2490234, -0.4116211, 0.75341797, -1.8398438, -0.73583984, -0.8930664, -0.025756836, 2.3125, 0.42456055, -1.2060547, -1.9267578, 0.1977539, -1.8330078, 1.0224609, 0.49682617, -0.82958984, -2.2460938, 1.078125, 0.53808594, -2.3125, -0.58154297, 0.5415039, 1.3925781, -1.5195312, -2.0410156, -0.4140625, -4.6445312, -1.3095703, 0.80810547, -1.9140625, -3.1230469, 2.6054688, 0.22033691, -0.796875, 0.05316162, 2.6582031, -1.2285156, -0.27246094, 1.5927734, -0.020874023, -0.61621094, -0.97558594, -3.0996094, -0.21386719, 1.7890625, -1.8076172, 0.8925781, 0.7597656, 0.4645996, -0.101379395, 1.0498047, 0.9814453, 1.3681641, -1.3916016, 2.9003906, 2.1640625, 0.40283203, 1.4316406, 1.3847656, 1.9287109, 1.1679688, -1.2041016, 1.1767578, 1.6152344, 0.22399902, 1.9775391, -0.2866211, 1.0019531, -0.25561523, 0.75439453, 0.09222412, 0.7163086, 2.4667969, -3.2675781, -0.4165039, -1.3505859, -1.4736328, -2.6386719, 0.6582031, -1.6044922, 1.2402344, 0.7441406, 2.5605469, 1.4013672, 1.2578125, 0.5839844, 0.029418945, -0.31469727, 1.6621094, -0.95654297, -0.11755371, -1.0664062, -0.9165039, 1.7226562, 3.5195312, 0.9272461, 0.35302734, 0.037963867, -0.4987793, 0.041625977, 1.234375, 2.2890625, -0.052001953, 0.42163086, -2.0410156, 0.31933594, 0.5917969, -1.0742188, 0.49682617, 0.9951172, -1.5537109, -5.0703125, 3.3964844, 0.56347656, -1.2509766, 1.1962891, -3.6347656, 1.4443359, -2.4433594, 0.63623047, -2.0976562, -0.25048828, -0.121276855, 0.99902344, 0.21813965, 0.8984375, 0.1081543, 1.0898438, 1.3554688, -1.7695312, -0.73828125, 2.1484375, 0.5620117, -0.8442383, -0.20983887, 0.5102539, 0.9506836, -0.24487305, 3.3828125, 0.8491211, -0.6166992, 0.31982422, 2.5585938, 0.171875, 1.6171875, -0.31396484, -1.3476562, 1.2792969, -0.1071167, 0.48901367, -1.1083984, -0.73583984, -1.5742188, 0.24060059, 1.0625, -1.2919922, 0.6254883, 1.5683594, -1.1572266, -1.7421875, 2.2636719, 1.046875, -2.1953125, 2.3886719, 3.1816406, -0.6323242, -1.4707031, -0.67333984, 1.6591797, -1.6445312, 0.15661621, 1.6982422, -1.4472656, 0.66259766, -0.625, 0.5283203, -0.11553955, -1.7861328, -3.8886719, -0.41845703, -1.6660156, -1.4355469, -0.73095703, -2.3925781, 2.4316406, 3.9882812, 1.1855469, 1.3964844, 0.31274414, -1.5498047, 0.7651367, -2.5898438, -0.3564453, 1.4267578, 1.2695312, 2.1933594, -0.27734375, -3.1855469, -3.2539062, -0.22827148, 0.41308594, 0.26879883, -0.84228516, -0.14672852, 0.7993164, 2.6464844, 1.9755859, 0.00995636, -0.22436523, -0.15771484, -0.25512695, 2.4765625, -1.0078125, 1.9658203, -0.9892578, -0.98095703, 0.78271484, 1.3759766, 2.7207031, 0.023620605, -0.3059082, 0.80566406, 0.6308594, -1.34375, 0.078186035, 0.2524414, 1.1484375, 0.7363281, 2.9824219, 2.21875, 0.35229492, -1.8144531, -1.3027344, -0.63964844]}, "B004LZN5ES": {"id": "B004LZN5ES", "original": "Brand: Flame King\nName: Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-1.9375, 1.5253906, 1.3173828, 0.45458984, 1.2353516, -3.0839844, 0.10418701, 0.0597229, 1.1464844, -0.8300781, 2.1445312, 0.23535156, -0.0892334, -3.7910156, 1.4365234, 1.1425781, -0.82128906, 1.8818359, 1.3789062, 0.28076172, 2.0683594, 1.0029297, -0.49926758, -0.8959961, 0.4038086, -0.7529297, 2.6132812, -3.5605469, -0.7993164, 0.14562988, 0.97998047, -0.010765076, 0.030319214, 2.0546875, -0.2055664, -1.5771484, 0.9550781, -1.5302734, -5.0585938, -0.22668457, -2.0625, -1.4052734, 2.3027344, -1.1328125, -0.7836914, -0.20715332, 0.37036133, -1.1240234, -0.6977539, 0.11975098, 1.0019531, 2.1054688, 0.0128479, 1.3583984, 0.8457031, 1.8359375, 1.0751953, -3.0957031, -0.04724121, 0.5864258, 1.7265625, 0.24108887, -2.6074219, 2.4199219, -1.0585938, 1.6035156, 0.17199707, -0.3071289, 0.99365234, 1.8876953, 1.234375, 0.21276855, 1.7119141, -1.5898438, -0.8256836, 1.0693359, -3.7675781, 0.01574707, -0.53222656, 0.69433594, 0.0473938, 2.7539062, 0.6850586, -2.8046875, -1.1914062, -0.65234375, 0.54589844, 1.1855469, 0.5288086, 0.48095703, -1.4677734, 1.9355469, -0.07147217, -3.8007812, 2.5410156, 0.5571289, 2.5859375, 2.9375, 3.2167969, 0.11065674, 0.4477539, -0.10858154, -0.56689453, 1.2636719, -1.2324219, -1.7001953, 0.8310547, 0.8598633, -3.0996094, 1.8740234, -0.3251953, -0.50341797, 1.3466797, -0.5649414, -0.13867188, -0.46533203, 0.3071289, 0.9604492, 1.5800781, -1.5029297, 3.6425781, -2.8808594, 2.5761719, -1.2548828, 1.6572266, 1.6308594, -0.72753906, 0.46557617, 5.4570312, 0.094055176, 2.0214844, 0.13781738, 4.4882812, -2.0507812, 0.083740234, -2.4863281, -0.1328125, -2.1464844, -2.2636719, -0.80371094, -4.3164062, 0.040130615, 1.4541016, -0.06451416, -3.046875, -0.8203125, -0.49414062, 0.122924805, -0.8027344, -2.2929688, 1.0683594, -1.6318359, 0.72216797, -0.93310547, 2.859375, 1.4023438, -1.9707031, -3.0878906, 0.25195312, 1.2460938, 1.5712891, 0.16955566, 0.47216797, 1.96875, -1.0703125, -2.3105469, 1.0761719, 0.11456299, -1.4882812, 1.7285156, -0.30029297, -1.6054688, -0.3881836, 1.859375, -0.4248047, -0.8413086, 1.0458984, 1.5605469, 0.35009766, 0.26708984, -3.6210938, -0.2927246, -0.5229492, -1.8134766, 1.9521484, 0.51660156, -0.8276367, -1.1933594, 1.2158203, -0.66308594, -2.3789062, 1.7744141, -1.671875, 0.57666016, 0.010948181, -1.8378906, -3.9355469, -2.421875, 0.6425781, 1.9853516, 0.43774414, -1.1787109, 2.0859375, -0.27441406, -2.3125, -1.7070312, 0.29882812, -1.2099609, 2.0527344, 0.6772461, -0.6767578, 0.59814453, 1.5205078, -2.2714844, -1.2597656, -2.7929688, -0.875, 2.3359375, 1.8730469, 1.0478516, 1.1464844, -0.5229492, 1.7646484, 0.29516602, 1.6152344, 0.34545898, 1.1533203, 2.0410156, -3.5292969, -1.8085938, 1.8916016, 1.3339844, -0.18664551, 1.0058594, -2.4375, 1.5166016, 0.65234375, -0.9633789, 1.3740234, 0.53466797, 0.57421875, 0.85253906, -0.7919922, -0.7480469, -2.3105469, -0.48828125, 1.3173828, 0.4621582, 0.91308594, -0.5654297, 0.8457031, -0.55908203, -0.828125, -0.67089844, -0.59814453, 0.17675781, 1.3271484, 0.984375, 0.83154297, -2.3847656, 1.6132812, -1.7490234, -0.8881836, 1.0058594, -1.8398438, 0.11230469, 2.9082031, -0.86572266, -2.1738281, 1.3828125, -1.5878906, 0.57470703, 2.4472656, -1.3339844, 0.5776367, 2.3417969, -1.8798828, 3.7910156, -1.2851562, 1.9316406, -0.0009150505, -0.73583984, 1.3271484, -2.765625, 0.578125, 0.03564453, 1.1230469, -0.35595703, -2.6972656, 0.27368164, 4.5507812, -1.6572266, -1.9462891, 1.7167969, 1.3496094, 1.1445312, 4.1679688, -0.35083008, 1.5917969, -0.44482422, 0.13317871, 0.19104004, -1.6337891, 0.41601562, -0.40039062, -1.3349609, 0.72021484, -0.33544922, 0.453125, -0.21740723, -1.6826172, 0.6401367, -0.77734375, 0.18225098, 0.4645996, -0.96777344, 4.0273438, -3.3632812, 1.9794922, 2.0039062, 0.4338379, 1.5488281, 1.3183594, -1.4414062, -0.4934082, 1.1757812, -1.2460938, 1.9169922, -0.5546875, 0.8364258, -0.0030326843, -2.2070312, -0.22924805, -0.9296875, -0.41430664, 0.9165039, -1.1025391, -2.859375, -0.19641113, -3.1152344, 0.46801758, -0.0513916, -1.4248047, 1.1445312, 0.65625, -1.0703125, 0.12005615, 0.16491699, -0.21105957, -2.4042969, 1.1435547, 4.1210938, -0.30493164, -2.6523438, 1.5751953, 0.43481445, 1.6347656, 2.8554688, -0.019363403, -0.29052734, 0.08520508, -0.077941895, -0.21704102, -0.5209961, -0.7963867, -2.9160156, 1.9570312, -2.3203125, 2.2050781, -0.34423828, -0.22595215, -1.015625, -1.1572266, -1.1464844, -3.2675781, -0.62597656, -1.6816406, 0.12524414, 1.2333984, 2.1484375, -1.6220703, -1.3183594, 0.68652344, -1.1679688, -1.0029297, -0.024002075, 1.0253906, -1.4824219, -1.734375, -4.5390625, 0.5107422, -1.5888672, -0.76171875, -0.48632812, 0.17529297, -2.8066406, 0.30859375, 0.12445068, 0.39941406, -0.20910645, 0.0736084, -0.41845703, -3.1933594, -0.5449219, -0.2836914, -0.12121582, -1.1083984, -1.1875, 0.46704102, -1.7626953, -0.4399414, 0.49243164, -0.86083984, 2.1855469, 0.86621094, -3.3203125, 1.9453125, 1.3525391, 0.50927734, 3.1894531, -2.8691406, -0.44848633, -2.3203125, -0.75927734, 4.0507812, 0.6982422, 0.9707031, 0.49560547, -1.4472656, 0.83691406, -0.37353516, 0.007007599, 1.4101562, 0.07324219, 2.953125, -1.5107422, -0.51904297, 0.36328125, 2.5546875, -4.3398438, 0.18151855, 1.1728516, -0.45336914, 1.2558594, 0.6201172, -0.35229492, -0.3203125, 0.5966797, 1.2900391, 3.1503906, 2.0859375, 0.57373047, -1.2158203, 0.2208252, -1.2548828, -0.5048828, 4.3046875, -0.65771484, 1.5380859, 2.3847656, 0.6826172, -0.27075195, -0.44482422, 0.1665039, 0.7919922, 1.4550781, 2.0957031, -0.85791016, 1.046875, -2.4199219, -0.22973633, -0.4807129, -1.0556641, 1.359375, 1.1142578, 1.2958984, 0.26098633, -0.4326172, -0.61816406, -1.6845703, -1.5048828, 4.328125, -1.3916016, 2.265625, -0.1361084, -1.1816406, 1.1376953, -3.5722656, 2.5429688, -0.44360352, 0.5205078, -0.13562012, 0.78222656, -1.3710938, -3.4199219, 0.56933594, -1.6005859, -1.0595703, 2.5195312, 0.31274414, -3.3261719, -0.31835938, -2.0859375, 1.2333984, 1.2207031, -1.9091797, 1.7001953, 0.33569336, 0.44335938, -1.4785156, -0.6538086, 1.2929688, 0.78027344, -2.5976562, 1.3515625, -1.4462891, 1.7685547, 0.5415039, 0.65722656, -0.4699707, -0.06427002, -1.7998047, 2.6347656, -0.67871094, 3.3535156, 0.11639404, 1.8535156, 1.6728516, -1.4794922, 0.0025501251, -0.6850586, -3.3476562, 0.76416016, -1.9316406, -1.1845703, 1.1767578, -1.359375, 0.0993042, -0.86279297, 0.8881836, -1.0039062, -0.70166016, -0.4934082, 2.9941406, -1.9716797, 0.0690918, 0.3178711, 2.1308594, -2.7636719, -2.7910156, 1.0400391, -1.5996094, -0.5410156, 0.124938965, -2.0839844, 0.22839355, 0.9291992, -0.9213867, -0.3010254, -1.2646484, 1.6376953, -0.4807129, -1.1601562, -1.8261719, 2.0917969, 2.5097656, 0.7578125, 1.9599609, 1.5498047, 1.4501953, -0.63964844, -1.0634766, -0.8857422, 1.2666016, 1.2929688, -4.703125, -2.3007812, -0.51220703, 0.0793457, -3.5097656, 1.3867188, -1.4638672, 0.8540039, 2.8730469, 0.011177063, 1.9462891, 1.5458984, 0.6225586, -0.5678711, 1.2001953, 1.2958984, -0.68847656, 0.6035156, -1.8730469, -0.59472656, -1.1669922, 2.8320312, -2.3300781, -1.3671875, -2.1757812, 1.7333984, -4.8476562, 1.0498047, 2.0097656, 3, -0.6503906, -0.703125, 0.8041992, 1.1816406, -0.16381836, -0.7470703, 0.61328125, -0.92822266, -1.3564453, 1.3876953, 1.109375, -0.4892578, 0.7734375, 1.6337891, -0.05218506, -1.9052734, 0.35961914, 0.69140625, -1.8867188, 1.3876953, -0.50341797, 0.26538086, 3.296875, -1.7460938, -0.22583008, 1.1201172, 0.020614624, -0.17541504, 1.1005859, -0.44506836, 0.3869629, 2.0839844, 0.20019531, 1.0625, 2.6542969, 1.5820312, -0.68603516, 2.0625, -2.2441406, 0.18811035, -0.8178711, 1.8583984, -1.7832031, 1.109375, 1.7050781, 0.48046875, -0.41625977, 1.4052734, 0.5620117, -0.43725586, 1.2255859, 1.1777344, -2.9824219, -3.609375, -0.92871094, -0.5419922, 3.15625, -0.6611328, -2.6835938, 0.09979248, 3.4316406, -0.91845703, 1.3027344, 0.9848633, -0.71191406, -1.6865234, -1.7832031, -1.9003906, -1.1074219, 1.2060547, 0.78222656, 0.36914062, 1.0449219, -1.5859375, 0.018295288, -1.1025391, 1.71875, 0.41015625, -0.5024414, -0.88134766, 0.08093262, -0.19421387, 0.96777344, -1.0332031, 0.63427734, -1.0097656, -0.6347656, 0.6479492, -1.2382812, 2.7070312, -0.6826172, -0.55029297, -1.75, 1.4658203, -0.5283203, -0.76708984, 3.1386719, -1.0507812, 1.8886719, -0.7661133, -0.34594727, -1.5039062, 1.6337891, 1.7109375, -0.6230469, 0.40795898, 0.24621582, -2.9316406, -5.0820312, -2.0664062, 0.29174805, -0.06896973, -0.23840332, -1.9638672, -1.2792969, 0.3618164, -0.92089844, -1.9462891, -2.0332031, 0.048614502, 0.066589355, -0.58496094, -1.21875, 2.0957031, -0.41455078, 0.45385742, 0.9145508, -2.4003906, -1.0107422, -2.5, -1.5849609, 1.9375, -0.3852539, 0.94970703, 0.0075950623, -2.4707031, 0.8364258, 1.7939453, -0.44604492, -3.5410156, 1.9013672, -2.2480469, -0.66503906, 2.0390625, -2.9199219, -1.7011719, 1.6435547, -0.39624023, 1.6572266, 2.4238281, 1.0263672, -2.6992188, -1.6083984, -0.90478516, 1.7148438, -0.8886719, 1.2607422, 2.4003906, 1.5175781, 0.13842773, 2.0585938, -1.140625, -2.3574219, -1.4794922, -0.44384766, 0.010826111, -0.97216797, 0.0791626, -0.1928711, 0.6640625, -0.16235352, -0.76708984, -0.3581543, -0.89453125, -1.3378906, -1.4619141, 2.7324219, -2.9179688, 3.0898438, 2.5605469, -2.5136719, -2.0292969, -0.7836914, 0.83935547, 0.8544922, -3.0957031, -1.2294922, 1.2216797, 1.0820312, 2.4921875, -0.89746094, 1.8398438, -0.36987305, 1.0839844, -0.7524414, 0.17297363, 3.703125, -0.29785156, 1.9814453, 0.8808594, -3.1464844, 1.8183594, 1.9267578, 2.2441406, -0.8310547, 0.5175781, 0.39086914, -0.70410156, -1.0253906, -0.5234375, -0.17785645, -3.0175781, -1.0244141, 0.89404297, -1.1572266, -4.6875, 0.21374512, 0.21081543, -0.8642578, -0.1328125, -0.6230469, -0.22753906, -1.0712891, 1.1494141, 0.43115234, -1.8154297, 0.66503906, 1.4423828, 1.0361328, 1.3339844, -1.6806641, 1.2998047, 0.8598633, 0.19897461, -0.56689453, 0.87597656, -2.1132812, 2.9570312, 0.6386719, 1.9589844, 2.8925781, -1.0693359, 1.5693359, -0.8642578, 2.046875, 4.1523438, -0.27612305, 0.4465332, -0.6538086, 1.4960938, 0.1451416, -1.3916016, 0.8066406, -0.9399414, 1.5234375, -1.3769531, 0.49951172, 2.2832031, -1.0273438, 0.68652344, -0.7553711, -0.71777344, 0.103759766, 0.7236328, -1.1435547, -1.2558594, 0.65283203, 0.9609375, 1.53125, -0.21496582, 0.8671875, -0.6816406, 1.2392578, 1.0761719, 0.8623047, -0.86279297, -1.5146484, -2.1582031, 0.29760742, 2.5175781, 0.28881836, 0.40454102, 0.23999023, -1.0175781, 0.048980713, 0.85791016, -1.2148438, -1.4667969, 1.2929688, 0.7246094, 2.9375, 2.4785156, -1.0136719, 4.8242188, 1.7412109, -0.103149414, -3.2246094, 2.8339844, -0.9711914, -0.5341797, 1.1601562, -2.4160156, 0.9609375, -1.4345703, 0.6821289, -3.9921875, 1.1230469, 0.65771484, -1.2441406, 2.5332031, 0.3017578, -1.1826172, 2.828125, 2.4140625, -0.07537842, 0.41577148, -0.33618164, 0.90234375, 0.02696228, 0.5444336, 0.56347656, 0.58984375, -1.1054688, 3.4355469, 0.2680664, -1.0136719, -0.84228516, 1.6708984, 0.3762207, 0.99853516, 0.39648438, -0.7348633, 2.3066406, 0.8466797, 0.6459961, 0.6425781, -1.359375, 0.2010498, -1.9345703, -1.1025391, 1.0029297, -1.9492188, 0.0057525635, 1.6992188, -1.4804688, -2.2304688, 3.5039062, -1.0039062, 0.6152344, -0.33618164, -1.8886719, -1.1914062, 0.8911133, 1.0908203, -2.0722656, -0.073913574, 0.4663086, 2.84375, -0.6118164, -2.0761719, -0.7504883, -0.57128906, 0.4152832, -1.9570312, 0.9609375, -0.9238281, -0.2512207, 1.6191406, -0.71972656, 0.9086914, 1.1015625, 0.80078125, 1.8525391, -0.76904297, -0.36621094, 0.4248047, 0.46899414, -1.9228516, -1.9003906, 0.1262207, 1.2431641, -0.33935547, 0.021957397, -3.8945312, -1.6376953, -1.9814453, 0.16882324, -1.0302734, -1.2304688, 1.4501953, 1.0400391, 1.1640625, -0.3894043, 0.37402344, -0.38354492, 1.9453125, 1.8447266, -1.8925781, 1.5048828, -0.2548828, -0.3840332, -0.99365234, 2.8632812, 2.2167969, -0.56640625, -0.36621094, 1.7597656, -2.0546875, 0.11602783, -0.45581055, -0.9316406, -0.4128418, 1.2441406, 1.5283203, 3.296875, 0.65478516, -0.5566406, -1.8037109, -0.33666992]}, "B07PHRM55J": {"id": "B07PHRM55J", "original": "Brand: Hisencn\nName: Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills\nDescription: \nFeatures: \u3010Fits Charbroil Performance 4 Burner Grills\u3011Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills.\n\u3010Fits Charbroil Performance 5 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 \u3010Fits Charbroil Performance 6 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619.\nIf you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; \u25b2If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM.\nBurner Dimesion: 17 3/4\" x 3/5\", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16\" X 2 1/12\", Material : Stainless steel ; Original parts number: G470-0004-W1. \u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\nRepair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.\n", "embedding": [-1.3808594, 0.24401855, 1.6298828, -0.69091797, 0.083496094, -0.034698486, 1.2763672, -2.8339844, 0.9526367, -0.23547363, 1.4472656, 1.2714844, 2.9140625, -3.140625, -1.9580078, 0.8984375, 0.18615723, 0.66796875, 1.4130859, 0.5073242, 0.46484375, 1.3251953, 3, -1.1699219, 0.008361816, 1.4375, 7, -2.109375, 1.8291016, -1.1972656, 1.7861328, -1.5644531, 0.82470703, 2.734375, -2.7910156, -0.7451172, -0.96191406, 1.1308594, -3.078125, 1.0634766, -0.35302734, 1.8681641, 1.2753906, 0.3251953, -2.2539062, -2.328125, 0.029220581, 1.7265625, -1.5527344, 0.07556152, 2.8867188, 1.7910156, -0.095703125, -0.15551758, -1.3681641, 3.2578125, 0.16345215, -0.80078125, 0.5439453, -0.27783203, 2.140625, -0.04989624, -2.3398438, 1.2314453, -2.4941406, 2.7070312, 1.0664062, -0.45507812, 0.2626953, -0.65283203, 2.4726562, 0.11505127, -1.8027344, 0.4194336, 0.81103516, -1.0791016, -3.890625, 0.94384766, 0.97753906, -2.5019531, -1.5498047, 3.1894531, -0.76123047, -1.7460938, 1.5664062, -0.8808594, -0.5527344, -0.9316406, 3.6289062, -0.22460938, 0.32495117, 2.2148438, -0.57128906, -5.09375, 1.5439453, -2.0488281, -0.48364258, -1.7919922, 0.13317871, 1.7480469, -1.0400391, -1.0537109, -1.3994141, 0.28564453, -3.2011719, 0.3642578, 2.5800781, 1.8212891, -1.8544922, 0.1227417, -2.0507812, -1.53125, 2.4804688, 1.6035156, 0.21472168, 2.8359375, -0.8642578, 0.39990234, 1.09375, -0.48168945, 4.8476562, 1.3613281, -0.30419922, -0.25341797, 0.21728516, -0.034088135, 0.25390625, 1.0849609, 3.8652344, -0.43896484, 0.6328125, -0.21313477, 2.5429688, 0.8276367, -0.7734375, -2.3183594, -3.3808594, -1.0478516, -1.9082031, 2.6230469, -1.2177734, -0.32788086, 1.1679688, -0.72558594, -2.4648438, 0.5107422, -0.7836914, 1.6640625, -0.3305664, -1.4287109, 1.5839844, -3.7226562, -1.4082031, -2.8339844, 0.9042969, -0.1862793, -0.45092773, -1.7998047, 1.6640625, 2.1445312, 0.7006836, -2.6679688, -0.010948181, 2.4453125, -0.57373047, -0.6098633, -1.1699219, 0.5683594, 0.14916992, 1.9609375, 0.88134766, -0.26171875, -0.30004883, -1.1630859, 0.015686035, -1.4570312, -1.2402344, 1.8310547, -0.0014457703, 1.0390625, -0.69628906, -1.5351562, 0.34301758, -0.39990234, -0.085510254, -2.0332031, -0.4555664, 1.5791016, 1.6445312, 0.03265381, 0.24633789, -0.7763672, -0.46020508, 0.31835938, -1.0615234, -0.73339844, -0.06222534, -0.75927734, 0.9511719, 0.23449707, -2.6660156, 1.2226562, 1.2626953, -1.0380859, -2.1132812, -3.9824219, -0.24780273, 0.25854492, 1.7353516, 1.4970703, 1.8496094, -1.0771484, 1.4599609, 0.49536133, 1.0498047, -1.9814453, 1.7128906, -1.1376953, 0.7578125, 1.8378906, -0.1661377, 0.3569336, -0.51416016, 0.8701172, 1.484375, 0.8413086, 0.51220703, 1.2695312, -0.83935547, -1.7597656, 1.8837891, 0.1739502, -0.52441406, 1.5429688, 0.33520508, 2.6542969, 0.9526367, -0.26660156, -0.60058594, -0.76123047, -0.34423828, 0.10247803, -1.1455078, -1.7441406, 0.07763672, 2.5527344, -2.5039062, 3.3574219, 1.5761719, 0.10180664, -0.18286133, -1.6601562, 1.3857422, 0.33789062, -2.9335938, 0.34106445, -0.94873047, 1.2792969, -1.625, -0.92041016, 1.4228516, -0.3034668, -1.3300781, -1.3681641, 1.4345703, -1.5917969, 2.1621094, 2.7089844, -0.26635742, -0.99609375, 0.2861328, -0.56933594, 0.83740234, -1.8144531, 3.4433594, 2.609375, -0.82421875, 3.5390625, 0.17456055, -0.33374023, 1.4853516, 2.2734375, 2.1933594, -1.2705078, 1.1894531, 1.2304688, -0.21228027, -2.0859375, -0.5229492, 2.0058594, 3.4667969, -0.00058174133, -1.8837891, 3.71875, -1.6123047, 0.46362305, -0.49536133, 0.32128906, -0.7832031, -0.45532227, 0.984375, 1.4355469, 1.7822266, 0.14404297, -0.9897461, 1.1474609, 1.3046875, -2.0507812, -0.44140625, 1.7773438, -0.11602783, -1.1884766, -1.9628906, 1.1513672, -2.4296875, -2.1035156, 1.8085938, -2.3847656, 1.7353516, -0.8588867, 1.6826172, 0.7685547, -0.053100586, -2.1933594, 0.26171875, 0.9399414, -2.5996094, 1.3652344, 0.4650879, -0.043273926, 1.1582031, 0.17858887, -0.23156738, -2.5195312, -3.3476562, 0.47045898, -1.515625, -4.3984375, 0.19458008, -0.03515625, -1.0761719, 0.98291016, -1.0332031, 1.2001953, 0.8354492, -2.1835938, -2.1289062, -0.64990234, -1.4941406, -1.1464844, -0.765625, 0.43579102, -1.6660156, -4.5390625, 0.1887207, -1.7636719, 1.5869141, 0.22460938, -1.5078125, -1.7011719, 0.11077881, -1.3730469, -1.4052734, 1.2773438, 1.3828125, 0.109375, 0.79541016, -1.9365234, 1.1591797, -3.4277344, 0.96240234, -1.8837891, 2.8574219, -2.5683594, -1.7001953, 1.3896484, -0.68896484, 2.7539062, -0.20458984, 1.8193359, 1.3320312, 0.9560547, 0.76171875, -1.25, -2.8984375, 0.010116577, -0.60546875, -0.5942383, -2.8085938, -2.1914062, 0.22473145, -0.8535156, -0.76660156, -2.5429688, -2.0839844, -1.6474609, 0.88427734, -1.2910156, -1.3515625, -0.8051758, 1.109375, 0.8613281, 1.5, -1.5478516, -1.1904297, -1.7646484, -1.0253906, -1.7919922, 2.1738281, -1.3017578, 1.6542969, -0.36694336, 0.17602539, 2.640625, -0.26660156, -1.7617188, 2.7304688, 1.4208984, -3.0175781, 1.1259766, -0.33544922, -0.8149414, -3.8945312, -1.8994141, 2.4863281, 2.7890625, 2.7382812, 0.4934082, -0.10424805, 2.9941406, 2.8242188, 1.5654297, 0.3635254, -0.5566406, 2.2421875, 0.101867676, -3.3945312, 0.8144531, 1.2353516, -3.4375, -1.0507812, 2.9414062, -0.5288086, 1.7363281, 0.86328125, 0.17407227, 0.22924805, -1.3759766, 2.8222656, 0.66308594, 0.9091797, 0.5522461, -0.59228516, 0.4946289, 0.6323242, -0.8691406, 1.8603516, -0.10668945, 1.4560547, 0.8569336, 1.3974609, -2.34375, 1.3662109, -0.78759766, 0.38452148, 1.4736328, 1.7783203, -1.2236328, 1.5878906, -1.6972656, -1.5263672, -0.3803711, -1.1914062, -1.9228516, 1.9648438, 0.94189453, -0.94677734, 0.70166016, 1.9033203, -0.37231445, 0.1763916, -0.020507812, -2.0175781, 0.049346924, 0.6801758, 1.4316406, -0.39257812, -3.0175781, 2.6894531, -1.7773438, -0.2685547, -0.99316406, 1.6835938, 0.27685547, -1.9189453, 1.0927734, 0.8886719, -1.0947266, 1.4785156, 0.5161133, -1.0722656, 1.9941406, -1.6289062, 0.4658203, -0.16064453, -1.4443359, 0.82177734, -1.6679688, -1.78125, -0.95214844, 1.1474609, 1.1113281, -0.19470215, -2.3789062, -0.0836792, -3.6367188, -1.390625, 0.21740723, -2.5234375, -1.9003906, 0.80126953, 1.4814453, 0.61621094, -0.13891602, 3.8964844, -0.14526367, 0.53759766, 3.4804688, -2.9199219, 0.039886475, -3.3085938, -5.0039062, 2.4101562, -1.0380859, -0.41235352, 2.8984375, 1.9814453, -0.2097168, 4.2265625, 1.0537109, -1.9775391, -1.6152344, -0.7421875, -2.2421875, 0.38476562, -2.6367188, 1.8955078, 0.25463867, -0.7182617, -2.9179688, -0.76708984, -0.8330078, 2.3984375, 2.4550781, -3.2265625, -0.13769531, 0.024902344, 0.8251953, -1.2197266, -2.5234375, 0.21691895, -0.34936523, -0.21557617, -0.7167969, 1.2949219, 1.7929688, 1.1367188, 1.9492188, 1.3515625, 1.4042969, -0.24816895, -0.5336914, 0.27319336, 3.0390625, 0.9008789, -3.6074219, -2.6640625, -0.76708984, -1.0634766, -0.84472656, 0.47558594, -0.5332031, -1.6513672, -0.52783203, -0.5942383, 1.9951172, 3.0664062, 0.3317871, 0.02053833, -1.6220703, 1.2861328, -0.23510742, -1.7929688, -0.18334961, 0.6064453, -0.4152832, 0.9897461, -3.703125, 1.3447266, -1.4042969, 0.6567383, -3.4765625, 1.2851562, 2.1269531, 2.0585938, 3.6582031, -1.6699219, 0.9838867, -0.4411621, 1.0048828, -0.26708984, 0.9838867, -2.5078125, -0.2709961, -0.9458008, -0.097229004, -1.2402344, -0.6074219, -0.12084961, -0.72021484, -2.0957031, -1.8681641, 1.2636719, -2.7109375, -2.2851562, 2.140625, -0.45361328, 3.5976562, -1.8613281, -0.12194824, 1.7246094, 1.4775391, 0.21728516, 1.2128906, 0.27148438, 1.1621094, 0.57470703, 1.7138672, 2.5175781, -1.4746094, -0.15112305, -0.32861328, 0.47070312, 0.03060913, 0.6245117, -0.46777344, 0.50683594, -0.87158203, -0.35864258, 2.4707031, 1.7285156, 0.26220703, 4.6835938, 1.7666016, -2.296875, 0.8388672, 0.40527344, -5.3945312, 0.27856445, 1, -0.40527344, 0.36865234, 1.8984375, -3.8671875, -2.3261719, 2.2441406, 0.3203125, 1.7050781, -0.74121094, -1.0087891, -0.09838867, -0.72998047, -0.8305664, -1.2900391, -0.52734375, 1.0947266, -0.45141602, -0.6713867, -1.5, 1.4873047, 2.8769531, 0.21313477, -1.8876953, 0.98876953, -0.90283203, -1.4746094, -0.69873047, -2.1914062, -1.7333984, -0.17199707, 1.8496094, 1.1259766, 2.5117188, 1.9277344, 3.6210938, -2.2304688, 2.4511719, -1.3398438, 2.9082031, -1.7539062, -0.8598633, 1.2529297, -2.0742188, 1.4912109, -3.5058594, 0.37719727, 0.94677734, 1.6162109, 0.5625, -0.89160156, -0.03074646, 1.7480469, -1.484375, -3.5527344, -2.4707031, 0.9038086, 1.7871094, 1.0878906, 1.2978516, 1.4580078, 1.8554688, -2.1542969, 1.0976562, -1.1123047, 0.17810059, -1.859375, 0.9584961, -0.5214844, -0.27001953, 0.049316406, 1.1464844, 0.40966797, 2.7714844, 1.5097656, -2.5898438, -2.2324219, 0.27661133, -1.1933594, 0.40527344, -0.72802734, 0.7421875, 0.74609375, 0.57714844, 2.0742188, -2.15625, 2.1503906, -1.7441406, -0.7607422, 1.3349609, -1.4375, 0.7026367, 0.028274536, -2.6289062, -0.9560547, 0.010627747, 1.7109375, 0.71435547, 0.7739258, 0.9897461, -0.77734375, -1.0791016, -3.2460938, 0.22583008, 2.0527344, 2.2382812, -1.1660156, -0.18615723, 0.81152344, -2.5371094, -1.3925781, 1.7685547, -2.9667969, -0.3251953, -1.1054688, 0.796875, 0.4802246, -0.55078125, 0.8359375, 1.5761719, -0.34716797, 0.8173828, 0.25976562, -1.3144531, 3.3378906, 1.8896484, -2.171875, -2.7929688, -0.63183594, 0.60546875, 2.828125, 0.21362305, -1.0087891, 0.6899414, -2.1777344, 0.3017578, -0.15234375, 2.875, -0.7080078, -1.2373047, -0.123168945, 1.0429688, 4.3945312, 1.4228516, 0.55371094, 0.5307617, 1.7431641, -2.6933594, 3.3710938, 0.65771484, -3.6289062, -0.58691406, -3.1503906, -1.1113281, -0.07775879, -1.0078125, 0.009483337, -2.2714844, -1.4873047, -0.8798828, -1.796875, -3.7460938, 0.390625, 0.7792969, -1.4726562, 0.61865234, 3.3046875, -2.3144531, 3.7363281, 0.8808594, 2.4492188, -1.9287109, -0.4716797, -1.8417969, -0.42773438, 1.1914062, -1.6074219, -0.18164062, -0.7832031, 0.058380127, 0.5102539, 1.0625, -0.3647461, 2.0273438, 2.6152344, 2.0566406, 2.2792969, 1.8134766, 2.3671875, -0.049438477, 3.234375, 1.5039062, -1.6035156, 1.2021484, 0.7636719, 1.1318359, -0.19824219, -1.6005859, 1.2460938, -0.46972656, 0.7114258, -0.03286743, 0.30273438, 0.5541992, -2.7128906, 0.70214844, -0.7260742, 0.65283203, -2.0742188, -1.0146484, -0.80029297, -0.033111572, 1.2988281, -0.74658203, 3.4648438, -0.09802246, -0.11035156, -1.0703125, 1.2460938, 2.1347656, -4.5, -0.99658203, 0.5810547, -1.8505859, -0.9663086, 0.43408203, 0.39526367, 1.5322266, 2.9609375, 0.2084961, 0.99316406, 0.9008789, -0.43139648, -1.2294922, -0.85253906, 1.5839844, 1.4355469, -0.6904297, -0.89404297, 0.6586914, -1.3681641, -3.3847656, -2.5644531, 1.2939453, 0.37841797, 2.4667969, -0.17468262, -2.2460938, 3.2402344, 0.64941406, 1.6162109, -1.3105469, -0.026031494, -0.5839844, -1.9726562, -1.7216797, 0.24707031, 0.32348633, 0.8588867, 1.3154297, -1.8964844, 1.6601562, 1.2304688, 1.8408203, 1.3642578, 1.5761719, -0.029571533, 0.81103516, 0.20617676, 1.84375, -1.2978516, 1.7978516, -1.4580078, 1.6894531, 1.4921875, 0.8041992, 1.2011719, -2.0429688, -0.7397461, 1.1523438, 1.3095703, 0.92822266, -1.2070312, -2.5976562, -0.7910156, 2.234375, -1.1054688, -2.6757812, 1.3759766, 1.0136719, -0.31420898, 1.3388672, 0.89501953, -1.7949219, 3.4394531, -0.08355713, 0.015052795, -1.7626953, -1.4980469, -0.43310547, 0.26220703, -2.2421875, 0.93652344, 1.5136719, 0.05911255, -2.2617188, 0.32373047, 0.2133789, -0.7661133, 0.24829102, 0.37963867, -1.0742188, -1.2226562, 0.047821045, -0.75683594, -0.9033203, 2.1425781, 0.8964844, 0.39819336, -2.2363281, 0.6381836, -2.140625, -0.1340332, -1.6845703, 0.59277344, 2.0449219, 1.1396484, -0.2475586, 0.7602539, -1.6347656, -1.8398438, -2.2734375, 1.8007812, 3.125, -0.7524414, 0.41430664, -3.2988281, 3.375, -0.38452148, -1.5458984, 1.3916016, -1.6240234, 0.92822266, 0.22241211, 0.85595703, 0.56347656, 2.1113281, 0.40771484, 3.7246094, 2.1367188, 0.91796875, 0.2944336, 1.8369141, -0.5175781, -1.8378906, -0.33764648, -0.14196777, 1.296875, -1.0957031, 0.45043945, -0.35058594, -0.0075798035, 0.66552734, -0.8100586, -2.2792969]}, "B00T36LG5U": {"id": "B00T36LG5U", "original": "Brand: ADCO\nName: ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover\nDescription: \nFeatures: Fit's Double 20 LB propane tanks\nThe fabric is designed to look like a diamond plated steel and matches the plating on your vehicle\nSecures with an elasticized bottom hem and zipper\n1 cover per box\n", "embedding": [1.28125, 0.45410156, 1.9609375, -1.9023438, -0.6611328, -0.8833008, 1.0605469, -1.0791016, 1.8115234, 3.2910156, 1.3486328, 0.4658203, 0.3190918, -2.7792969, 1.8525391, -0.5419922, 0.75097656, 1.2089844, 3.8867188, 0.3137207, 0.9765625, -0.3178711, -0.7246094, 0.5288086, 0.59277344, -0.46142578, 3.1953125, -0.8310547, -1.7773438, 0.029144287, 0.37548828, 0.34423828, 0.61083984, 1.2724609, -0.032226562, -1.6611328, 0.5576172, 0.5600586, -4.2070312, 0.048309326, -2.6328125, -0.62158203, 1.5537109, 1.9580078, -1.5605469, -1.1523438, -0.875, -1.1582031, -1.3164062, -0.81152344, 1.7480469, 2.1933594, 2.5292969, 1.2958984, -0.7602539, 0.7050781, 0.15161133, -1.0673828, -0.30541992, 0.40185547, -0.8491211, -0.65722656, -2.3867188, 2.3554688, -0.122680664, 1.3769531, -1.5683594, -1.2626953, -0.10784912, 1.8476562, 0.24694824, 2.3613281, 0.72802734, -1.8828125, -0.3190918, -0.59228516, -0.6870117, 1.5449219, 0.5966797, -2.2167969, -0.13391113, 1.9287109, -1.7958984, -1.4394531, -2.0527344, -1.1992188, -0.67285156, -0.35620117, -0.4416504, -0.73046875, -1.7773438, 0.45288086, -1.8164062, -3.8378906, -1.1083984, 0.05050659, 1.8183594, 1.1894531, 2.2832031, 1.7382812, -0.1517334, -0.6982422, -0.7890625, 0.43066406, -1.7255859, -1.6660156, 2.3417969, -0.8417969, -1.1767578, 0.109191895, -1.078125, -0.22583008, 2.0390625, -1.4316406, 1.0048828, -0.39013672, 0.39990234, 1.9785156, 1.2880859, 0.62060547, 2.515625, -1.1181641, 0.9902344, -0.27270508, 2.5234375, 2.2832031, -1.8505859, -0.16503906, 2.4707031, -1.1328125, 0.65771484, 0.5078125, 1.2910156, -0.66259766, 0.6274414, -1.0175781, -2.0039062, -0.16906738, -0.6699219, 0.4736328, -2.7890625, -0.93652344, -0.85058594, 1.0810547, -2.8574219, -0.47485352, -2.1777344, 2.2363281, -1.0214844, -0.60302734, 0.93408203, -2.6972656, 1.3671875, -0.4963379, -0.15710449, 0.24389648, -0.03665161, -3.7792969, 1.0771484, 2.1210938, 1.8017578, -0.6791992, 1.6005859, 0.921875, 0.96191406, -2.7792969, 0.016616821, 0.4814453, -2.3789062, 0.8652344, -0.49072266, -1.8916016, 0.79785156, -0.06689453, -1.4316406, -0.5673828, 1.0634766, 0.34375, 0.75683594, -0.41479492, -2.2851562, -0.953125, -0.9033203, -0.72216797, 1.9335938, -0.001496315, -0.44677734, -1.5908203, -0.22241211, -0.88720703, -3.9609375, 1.4804688, -1.1591797, -0.20837402, -2.4628906, -2.1484375, -2.9082031, -1.5644531, 0.9604492, 0.49072266, -0.9536133, -1.7431641, -0.66796875, 1.140625, -2.7089844, -0.7441406, 1.8974609, 0.49560547, 1.28125, 0.06756592, 0.1640625, -0.41918945, 3.6230469, -1.0205078, -2.4824219, -1.8408203, 0.93603516, 0.5, 1.4511719, 1.8574219, 0.2866211, 0.9975586, -0.20141602, 1.4189453, 0.33544922, 2.859375, 2.3789062, 1.8876953, -2.671875, 0.5654297, 0.6430664, 2.2109375, -2.5527344, -0.46435547, -1.5400391, 0.6064453, -0.28808594, -1.6884766, 1.1503906, -0.32080078, 0.31811523, -0.78808594, -2.3515625, -1.3027344, 1.5351562, 1.1689453, -1.8291016, 2.4140625, 0.5102539, -0.13500977, 0.01600647, -0.8930664, 1.1943359, -0.40722656, -0.24914551, 2.1113281, 1.2070312, -0.9213867, 0.48583984, -3.2304688, 0.5571289, -0.4946289, -0.99121094, -0.85546875, -0.079711914, 1.0410156, 1.7988281, -1.8242188, -0.8457031, 0.68847656, 0.4633789, 1.4404297, -1.5556641, -1.40625, 2.0625, 2.1601562, -1.1201172, 2.6171875, 0.21472168, 2.1113281, 1.8603516, 0.4489746, 3.2207031, -1.8408203, 1.1513672, 2.7714844, 1.7480469, -0.32714844, -1.6962891, 1.1611328, 2.6972656, -0.37524414, -0.45776367, 2.3847656, 1.7011719, 2.1875, 2.5, 0.5307617, -2.8808594, -0.72314453, -2.4238281, 0.48291016, -0.22680664, 1.796875, 0.11553955, -1.484375, -0.021148682, 0.9482422, -0.6147461, -0.4074707, 0.5732422, -1.6523438, -1.9306641, -1.8847656, -2.2871094, -1.1025391, 2.9121094, -2.8164062, 1.6015625, 1.2539062, -1.1259766, 0.21972656, 0.49023438, -0.8666992, 0.9448242, 1.9628906, -1.2099609, 1.125, 1.1806641, 0.4321289, 0.765625, -0.3942871, 1.7890625, -0.3395996, 0.8959961, 0.55908203, -1.4746094, -0.9189453, 1.3486328, -2.0742188, 1.0751953, 0.09893799, -1.203125, 2.6386719, 1.0878906, -0.4633789, -0.5649414, 1.1035156, -1.5742188, -1.9824219, -0.2626953, 1.7548828, -0.78515625, -4.1875, -0.3010254, -0.25952148, -2.1347656, 1.3378906, -1.4501953, -0.7426758, 0.86865234, 0.578125, 1.4902344, -0.5395508, -1.9970703, -0.15197754, -0.16149902, -4.1992188, 2.1855469, -1.3867188, 0.8618164, -1.9492188, 1.7519531, -0.8540039, -1.2636719, 0.9472656, -2.0878906, 4.6132812, 1.2001953, 1.1464844, 0.75683594, -2.7929688, 0.55322266, -1.1025391, -2.1679688, 0.7036133, -0.7836914, -0.9238281, 0.18054199, -4.234375, -0.17333984, 0.2055664, -1.3525391, 0.077697754, -2.4804688, 0.38232422, -0.1451416, -1.1904297, -0.09240723, 0.36523438, 0.6972656, -0.90966797, -1.5830078, 1.3769531, -0.018493652, -0.8276367, -1.3134766, -0.7211914, 2.078125, -0.71240234, 0.45483398, 0.5541992, -1.3994141, 2.6191406, 0.5517578, -2.5214844, -0.08728027, 1.1113281, 2.4316406, 2.9472656, -1.2900391, -0.7182617, -0.9448242, 0.38134766, 4.140625, 2.7070312, 1.3671875, 1.3984375, 1.1328125, -0.36645508, 0.6665039, -0.05895996, -0.6538086, 0.21105957, 2.1152344, -0.36157227, -0.20727539, -0.9399414, 1.9482422, -2.6660156, -1.7597656, 2.3808594, -0.80908203, 2.7402344, 0.7817383, -2.2519531, 0.57910156, 0.44482422, 3.3378906, -0.49316406, 1.9677734, 2.0527344, 0.81152344, 2.0234375, 1.7919922, 0.96533203, 2.5429688, 0.7753906, -0.09063721, -0.7988281, 0.26953125, 0.48950195, -0.91552734, 1.2412109, -0.73046875, -0.7270508, 1.9492188, -0.67626953, 2.9375, 2.7539062, -0.35839844, 0.4711914, -2.4492188, 0.68603516, 2.3417969, 0.3828125, -0.5654297, 0.072265625, -1.8261719, 0.003982544, -2.734375, 1.5712891, -0.6723633, -0.18054199, -0.51660156, -2.5351562, 1.5136719, -1.7744141, 4.1054688, 0.3166504, -0.39111328, -0.20739746, 1.7724609, -0.8129883, -2.0625, 0.078125, 0.35595703, -2.1386719, 3.2949219, 2.4824219, -1.1425781, 0.63916016, -1.9931641, 1.7675781, 1.7578125, -1.5927734, -0.042297363, -1.3525391, 1.1132812, -1.3310547, -0.7441406, 0.3334961, 3.2324219, -2.6484375, -1.203125, -1.5205078, 0.7866211, -0.5576172, -0.15893555, -0.5209961, 0.02520752, -1.6523438, 1.2119141, 0.18115234, 3.5136719, -0.8540039, 0.4650879, 2.2890625, -0.0053634644, 0.11383057, 0.060333252, -0.8959961, -1.0302734, 0.41064453, -0.6796875, 3.8671875, 0.921875, 1.2148438, 0.66845703, -0.6269531, -2.3613281, -0.20715332, -1.7353516, 0.33032227, -0.9267578, -2.2480469, -0.13183594, 2.7167969, -1.0566406, -1.0634766, -0.4020996, -2.9863281, -0.9692383, -0.67333984, 1.0488281, 0.81689453, -2.25, 0.45458984, -0.91308594, -0.17285156, -0.07989502, -1.2685547, -0.8051758, -1.0859375, 2.9921875, -0.9584961, 0.16210938, 0.8979492, 4.1054688, 0.7416992, 0.6064453, 0.17993164, -1.0078125, 2.6347656, -0.4724121, -5.4296875, 0.17272949, -1.9726562, 0.98535156, -0.115234375, 0.3305664, 1.2822266, 0.2487793, 0.23828125, 1.2167969, 0.87841797, 1.7207031, -0.79541016, -1.6542969, 1.6757812, 0.8041992, -1.90625, 0.97558594, 0.23535156, 1.9355469, 0.6015625, -0.4790039, -1.2363281, 2.0898438, 0.40966797, 1.0341797, -4.6679688, 0.99609375, 2.3964844, 0.4008789, 1.71875, -2.4199219, -1.6367188, -0.88134766, 2.1835938, 0.7866211, -1.3916016, -1.2451172, 1.9882812, -1.6660156, 1.7861328, -2.2460938, -1.7568359, -0.002374649, -0.62841797, 0.51708984, -0.4465332, 0.72753906, -0.10662842, -0.9448242, -0.17980957, -1.0966797, 3.421875, -1.7304688, 1.0410156, 0.82910156, -0.9765625, -0.9008789, 4.2421875, -0.60791016, -0.24243164, 1.3222656, -1.2041016, 0.7426758, -1.4921875, 0.9580078, 2.65625, 2.2226562, -1.6162109, -3.2792969, 1.9833984, 2.5664062, 0.1920166, -0.29296875, 1.3867188, 2.6660156, 0.78222656, -0.48046875, 1.0869141, -1.1757812, 2.2597656, 0.8935547, -0.69091797, -0.6098633, -0.7949219, 0.46142578, 2.2929688, -1.2373047, -2.9589844, 1.1416016, 1.3769531, -0.6923828, 0.8276367, 0.5395508, -1.9482422, -2.7558594, -2.5585938, -3.1386719, 0.56640625, 0.42407227, -1.3632812, -0.90283203, -0.31762695, 0.7583008, 0.3828125, 2.8339844, 0.27172852, -1.9462891, -0.72021484, 0.5683594, -2.4707031, -1.7871094, -1.9414062, -2.1992188, 0.24450684, -0.7866211, 0.58984375, 0.073913574, 2.6894531, 3.2871094, -1.8720703, 1.0996094, -0.7583008, 1.3505859, -1.9873047, -0.53222656, 2.3515625, -1.2128906, -1.2753906, -0.2836914, 1.5195312, -1.1005859, 2.9179688, 2.1035156, 0.23950195, -0.73779297, -0.030593872, -4.6523438, -4.0859375, -1.2285156, 0.5493164, 0.21875, -0.35888672, -0.6035156, -1.3681641, -1.1445312, -1.8056641, 0.8798828, -1.4013672, 0.3491211, -1.0888672, -2.7167969, 0.95458984, -0.19335938, 1.0839844, 0.42285156, -0.88134766, -0.25463867, -1.2412109, -2.4277344, -3.4804688, 1.5175781, -2.2617188, 0.3071289, -0.12072754, -1.2958984, 3.21875, 1.5136719, 1.2880859, -1.0205078, 0.61572266, -0.20861816, 1.2011719, 1.7910156, -1.1923828, -1.4658203, 1.4941406, -0.9091797, 0.40844727, 3.7988281, 1.5048828, -1.9707031, -0.37158203, 0.3959961, -0.013938904, 0.43579102, 1.6464844, 1.1816406, 1.5283203, 2.9023438, 1.3349609, -0.9682617, -1.4550781, -2.4863281, -0.5371094, 0.24353027, -2.4863281, -1.7041016, 0.9941406, 1.9833984, 2.4082031, 0.07623291, 1.6152344, 0.4091797, 1.0029297, -2.1269531, 0.06726074, -2.5058594, 0.5654297, 1.0986328, -1.4648438, -2.7207031, -2.046875, 3.5039062, 0.61279297, 0.09234619, 2.0917969, -0.23583984, -1.3964844, 0.29736328, 0.3623047, 0.9707031, 0.5058594, 0.890625, -1.5644531, -0.2076416, 3.1875, -1.0068359, 0.71484375, 0.45288086, 1.1542969, -1.2763672, 1.8339844, 3.3632812, -2.6113281, -0.8051758, 0.72216797, -1.5742188, -0.91796875, 0.5541992, 0.020767212, -3.8984375, 0.12286377, -1.7939453, -0.25732422, -4.3984375, 1.4375, -1.1953125, 0.46142578, 1.1904297, 1.3066406, -1.2910156, -0.78515625, 2.7832031, 0.84716797, -0.96972656, -0.6845703, -0.6533203, -0.27148438, 1.9755859, -2.2070312, -0.37817383, -2.6992188, 1.8408203, -0.06951904, -0.9350586, -1.2880859, 1.0556641, 1.8134766, 3.328125, 2.4101562, 0.7207031, 1.0136719, -0.7578125, 1.2177734, 1.2548828, -1.5683594, 0.63720703, 0.53515625, 1.4375, 3.4453125, -1.0898438, -1.3613281, 0.008522034, 0.034851074, -1.0556641, 0.7246094, 1.8115234, -1.5712891, -1.3222656, -1.03125, -1.5595703, 1.4667969, -0.50927734, -1.0712891, -1.4326172, 0.55859375, -0.9238281, 2.8359375, -0.8222656, 0.8183594, 1.3291016, -1.0908203, 2.8691406, 0.32788086, 0.9448242, -1.4111328, -0.5229492, 0.47729492, -0.5620117, -0.11340332, 1.1513672, -0.3635254, 0.8935547, 0.8027344, 1.3310547, 0.15576172, 0.26342773, 1.8554688, -1.2109375, 0.9267578, 0.3635254, -2.71875, 0.9267578, 0.4790039, 0.8261719, -2.2675781, -0.5786133, 0.08392334, 0.045318604, -0.47070312, -3.7363281, 1.3222656, -0.4272461, 0.5288086, -2.9394531, -1.2705078, -0.010749817, -3.515625, 1.6318359, -0.058532715, -0.5283203, 2.6933594, 0.5385742, -1.1025391, 1.6171875, 0.44433594, 0.9707031, 0.64941406, 0.4711914, -0.04977417, 2.2480469, -0.8588867, 3.5820312, 1.1367188, -0.8442383, -0.14038086, 1.5957031, 0.5107422, 0.63671875, 1.5146484, -0.671875, 3.9804688, 0.8833008, 0.80859375, -0.26953125, -1.5556641, -0.13244629, -0.39624023, -0.054382324, 0.4013672, -0.33520508, 0.033294678, 0.12817383, -3.5097656, -0.46313477, 2.5917969, -0.5385742, 1.1757812, 0.21179199, -1.8671875, -1.671875, 0.15246582, 3.1074219, -2.1289062, 0.30249023, -0.921875, 0.8408203, -0.15625, -3.3828125, -2.9375, 1.4472656, -1.9316406, 0.044708252, 1.2119141, -0.7963867, -0.013015747, 0.1270752, -1.1503906, 0.11920166, 0.51660156, 0.1237793, -1.2890625, -0.62060547, 0.4296875, -0.3996582, 1.3564453, 0.921875, 2.0898438, 1.75, 1.3857422, 0.11242676, -0.030563354, -3.5390625, -1.2958984, -2.9121094, 0.99365234, 0.59228516, -1.1484375, -0.022521973, 1.5166016, 2.2382812, -2.1777344, -2.1074219, 0.33618164, 0.8017578, 0.86376953, -0.6669922, 0.609375, 0.5493164, 0.18969727, 2.3027344, 1.5136719, 1.2880859, -1.7382812, 1.0986328, 2.1113281, -2.6523438, -2.1679688, -1.2451172, -0.38305664, -0.9868164, 0.30444336, 2.6054688, 1.9677734, 0.32739258, 0.105407715, -2.1503906, 0.25634766]}, "B00GOW6VAQ": {"id": "B00GOW6VAQ", "original": "Brand: Camco\nName: Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "embedding": [0.6035156, 1.3349609, 3.1289062, -1.1347656, -0.9682617, -2.5507812, -0.058410645, -0.66503906, 1.140625, 1.9541016, 0.63378906, 0.5600586, 0.7832031, -3.8457031, 1.0507812, -0.31835938, 0.042266846, 1.4980469, 2.3867188, 0.6352539, 3.5175781, 0.40185547, -0.6274414, 0.07647705, 1.2880859, -0.2932129, 2.1914062, -1.4833984, -1.6005859, 0.5629883, 0.34033203, 0.29541016, -0.23425293, 1.9541016, 0.7246094, -1.9384766, -0.3869629, 0.13757324, -2.875, -0.14538574, -4, -0.89453125, 2.9628906, 0.45996094, -0.7807617, -0.8696289, -1.0927734, -2.3476562, 0.58691406, -1.8447266, -0.5385742, 1.5478516, 1.7128906, 1.6796875, -1.4619141, 0.52685547, 0.33496094, -1.1259766, 0.2244873, 1.4267578, -1.6123047, 0.4645996, -2.1894531, 1.7617188, -0.5546875, 1.3193359, -1.7138672, -0.91308594, -0.29101562, 2.1425781, 1.6318359, 1.5517578, 0.14501953, -1.1474609, 0.109680176, 0.6176758, -1.9882812, 1.6191406, 0.2919922, -1.6933594, -0.42700195, 1.7636719, -1.6015625, -2.2695312, -1.0625, -0.91796875, -0.15991211, 0.65527344, -0.3269043, -0.0703125, -0.8535156, 1.2246094, -2.6464844, -3.1777344, -1.3164062, 1.0449219, 1.6298828, 1.2880859, 3.5957031, 1.3916016, -0.18579102, 0.49902344, -1.25, 0.72314453, -2.8457031, -1.8740234, 1.7617188, -2.140625, -1.6445312, 0.76220703, -0.011520386, 0.5317383, 0.40649414, -1.6826172, -0.27661133, 0.5551758, 0.21081543, 0.6333008, 1.4169922, 1.3828125, 3.5253906, -1.5820312, 0.74560547, -1.1484375, 2.2714844, 1.8769531, 0.13574219, 1.0292969, 3.1210938, 0.14367676, 1.3808594, 1.0800781, 1.3417969, -0.45996094, 0.95214844, -0.70703125, -0.875, -1.7539062, -2.3144531, 0.60058594, -3.1035156, -0.44995117, 0.70703125, 0.7597656, -3.546875, -0.9663086, -1.4267578, 1.7734375, -0.859375, -1.6113281, 0.39208984, -3.0527344, -0.034606934, -0.9658203, 1.0693359, 1.3623047, 0.1776123, -3.2910156, 2.3476562, 2.9609375, 2.9746094, -0.94970703, -0.018630981, 1.2001953, 0.86328125, -2.8046875, 0.78808594, -0.31054688, -1.3896484, 1.1923828, -0.5913086, -1.6503906, 0.99072266, 0.890625, -1.2460938, -0.48657227, 1.4316406, 1.1044922, 1.2929688, -0.21948242, -3.5605469, -0.26342773, -0.44702148, 0.484375, 1.2734375, -0.34936523, -1.3173828, -1.1923828, -0.3737793, -0.7998047, -1.53125, 1.2255859, -1.1318359, -0.7602539, -0.19921875, -3.25, -2.6953125, -1.5058594, 0.4333496, 2.6210938, -0.9135742, -0.92871094, -0.82177734, 1.1396484, -2.0527344, -2.0175781, 1.8789062, 0.44311523, 1.0761719, 0.5180664, 0.625, -0.7475586, 2.7050781, -1.75, -1.7734375, -0.52001953, 0.51953125, 0.49072266, 1.8710938, 1.0742188, 1.3710938, 0.9707031, 0.3486328, 0.45654297, 0.5449219, 2.2890625, 1.3261719, 1.1015625, -1.1953125, -0.26391602, 0.049957275, 1.7861328, -1.8574219, -0.013977051, -1.1611328, 1.0859375, -0.34936523, -1.2001953, 0.019821167, -1.2138672, 1.1083984, 0.73046875, -1.4326172, -0.6723633, 1.9228516, 2.4296875, -1.3681641, 1.1064453, 1.8085938, -0.9941406, 0.6821289, 0.18408203, 0.17871094, -1.5087891, -0.5541992, 2.3710938, 1.4335938, -0.65625, 1.0341797, -3.515625, -0.29418945, 1.2626953, -1.5449219, -0.57714844, -0.091796875, 1.0419922, 0.31689453, -0.6347656, -2.296875, 1.2509766, 0.39697266, 0.84375, 0.60498047, -1.1582031, 1.6943359, 0.9404297, -0.60839844, 1.5224609, 0.9355469, 2.8027344, 1.9257812, -0.061920166, 0.68847656, -2.6347656, 0.8881836, 0.80126953, 2.9277344, 0.80078125, -2.6484375, 0.95703125, 2.265625, -0.4753418, -1.5947266, 1.9912109, 2.9375, 1.5292969, 2.6699219, 0.24328613, -0.6586914, 0.63623047, -0.91845703, -0.18896484, -0.90283203, -0.2680664, -0.35253906, -1.4384766, -0.8457031, -0.6699219, 2.0546875, 0.74316406, 0.8769531, -0.3840332, -1.1738281, -0.6694336, -1.5507812, -0.74560547, 4.3554688, -1.4150391, -0.13195801, 2.5605469, 0.52246094, 2.1855469, 0.12878418, -1.3642578, 0.8964844, 0.6665039, -2.21875, 1.1494141, 0.012397766, 0.5605469, 0.9213867, -2.4609375, 2.2539062, -1.1210938, 1.3037109, 0.76464844, -1.6240234, -0.8432617, 1.6572266, -1.3613281, 1.4140625, -1.2773438, -1.9648438, 2.7402344, 1.5253906, -0.8041992, -0.62841797, 2.0761719, -0.4375, -1.5771484, 0.25732422, 1.5390625, -0.70654297, -4.15625, 0.31347656, -0.083862305, -1.4433594, 2.2988281, -1.3496094, -0.21313477, 0.60302734, 1.3125, 1.7294922, -0.7133789, -1.875, -0.28466797, 1.4599609, -3.7773438, 1.9443359, -2.8144531, 0.7084961, -3.1601562, 0.7167969, -1.3837891, -2.5507812, 2.6601562, -1.5507812, 3.9394531, 0.9511719, 1.2412109, -0.36669922, -2.1015625, -0.3005371, -2.0957031, -1.9667969, 0.1829834, 1.3496094, -1.5517578, 0.8959961, -4.1679688, -0.76464844, -1.3447266, 0.3635254, -0.48461914, -1.8789062, -0.7973633, -1.2919922, -0.72998047, 0.053588867, 0.070739746, 2.6425781, -1.4570312, -1.5117188, -0.1328125, -0.3635254, -1.1660156, -0.24316406, -1.7773438, 1.0283203, -0.57910156, 0.0018234253, 1.0419922, -0.94189453, 1.7939453, -1.0732422, -3.640625, 0.12939453, 3.1914062, 2.0273438, 2.8925781, -1.4707031, -0.91308594, -1.6982422, 0.41845703, 2.875, 2.3066406, 2.1582031, 2.2890625, -0.09649658, 1.0234375, -0.3918457, 0.8540039, 0.9213867, 0.8222656, 3.7089844, -0.7104492, 0.25585938, 1.5136719, 2.9746094, -2.9414062, -0.77197266, 0.7949219, -0.85058594, 3.2851562, 2.4785156, -3.6523438, 0.36669922, 0.107910156, 2.1601562, -0.8925781, 1.2011719, 0.7631836, 0.38061523, 2.234375, 0.31835938, 0.2376709, 1.0546875, 0.2607422, -1.7382812, 0.6303711, 1.1855469, -1.2412109, 0.09832764, 1.0166016, -2.3730469, -0.5185547, 2.1171875, -0.5390625, 2.734375, 1.9335938, -0.37036133, -1.3945312, -2.125, 1.1113281, -0.2956543, 0.41723633, 0.18530273, -0.28637695, -1.3085938, 0.19750977, -1.7705078, 2.6425781, -1.0869141, -0.9355469, 1.3320312, -2.4160156, -1.3642578, -2.5234375, 3.2246094, -0.9667969, 0.65234375, -1.1181641, 2.6835938, -1.0136719, -3.171875, -0.62402344, -0.63720703, -2.34375, 3.8339844, 3.4042969, -1.3115234, -0.21472168, -1.4941406, 2.3222656, 1.2021484, -1.5488281, -1.2607422, -2.3632812, 1.9599609, -2.2402344, -0.31811523, 1.1103516, 2.578125, -3.0039062, 0.048675537, -0.13183594, 2.3828125, 1.0195312, -0.12182617, 0.36914062, 0.2286377, -2.546875, 2.0898438, 0.1161499, 1.7265625, 0.04434204, 1.6474609, 1.0380859, -0.01322937, 0.71240234, 0.21240234, -2.5449219, 0.10015869, -0.12298584, -0.30419922, 3.515625, -0.111206055, 2.1269531, 1.5302734, -0.22241211, -3.5957031, -1.7109375, -2.1992188, 0.2980957, -2.1835938, -1.7451172, 0.25439453, 0.58251953, -2.4589844, -1.9228516, -0.6533203, -2.6738281, -0.43945312, -1.1894531, 0.9633789, 1.3349609, -0.5097656, 0.25439453, 0.35107422, 0.42016602, 0.5678711, -0.11468506, -1.0683594, -2.2324219, 2.7539062, 0.46240234, -0.55566406, 0.37451172, 2.0019531, 2.2871094, -1.75, -0.7368164, -1.2802734, 0.328125, -1.1865234, -3.3886719, -1.2119141, -1.3925781, 1.5019531, -0.5834961, 0.3166504, 0.97265625, 1.5351562, 0.36767578, 0.7675781, 1.1835938, 1.2138672, -2.2871094, -1.75, 2.4863281, -0.97509766, -0.34277344, 0.72558594, -0.41577148, 1.4375, -0.58935547, -1.78125, -2.2675781, 1.1171875, 0.84033203, 1.1318359, -4.1835938, 1.1318359, 2.0546875, 2.375, 1.2822266, -0.98339844, -1.2802734, 1.2988281, 1.9736328, 1.9316406, -1.4140625, 0.47070312, -0.37817383, -0.82177734, 0.7651367, -2.625, -1.1621094, -0.39672852, -1.5107422, 0.43481445, -0.9770508, 0.69189453, -2.1699219, 0.058807373, 1.1748047, -1.0166016, 3.7597656, -1.6962891, 1.1669922, -0.5126953, -1.2832031, -1.8046875, 3.1367188, 1.1748047, 0.4543457, 2.0703125, -1.46875, -1.3232422, 0.60253906, 1.5976562, 0.5800781, 1.09375, -0.01197052, -1.7587891, 0.8417969, 1.0898438, 0.31835938, -0.92626953, 2.0800781, 2.3496094, 0.9399414, 0.3269043, 1.9550781, 1.1289062, 1.9052734, 0.018722534, -0.5644531, -1.3134766, -0.21459961, 0.92089844, 2.6113281, -2.6015625, -3.1875, 1.8076172, 0.41186523, -0.32861328, 1.3818359, 0.51464844, -1.2304688, -1.0019531, -3.3300781, -1.9453125, -0.10229492, 1.3691406, -0.90625, -0.765625, 0.7060547, 0.6279297, -0.041534424, 3.4921875, 0.8261719, -1.8378906, -0.53808594, 1.2929688, -1.65625, -2.6035156, -1.9794922, -3.5019531, -0.26342773, -0.3527832, 1.3271484, -0.7753906, 1.5859375, 2.4550781, -2.4394531, -0.68652344, -1.1289062, -0.04147339, -1.9101562, -1.2119141, 2.1738281, -0.26782227, -0.66748047, -0.18579102, 0.54296875, 0.42797852, 3.1523438, 1.6396484, -0.70214844, -0.41210938, 0.15649414, -4.1640625, -4.515625, -0.40185547, 1.0136719, -0.09136963, 0.44213867, -0.7636719, -1.71875, 1.4609375, -2.2109375, 0.19067383, -2.2597656, 0.47094727, -1.2568359, -1.3681641, -0.035095215, -0.50439453, -0.45825195, 0.49243164, -1.5429688, -0.24230957, -1.2734375, -4.328125, -3.078125, 0.85302734, -0.9199219, -1.2011719, 0.8071289, -0.4650879, 1.5820312, -0.26757812, 1.6689453, -1.8613281, 1.7958984, -1.3037109, 0.47802734, 1.7939453, 0.18408203, -2.3046875, 2.5761719, -0.27392578, 1.3056641, 2.3554688, 1.7119141, -3.296875, 1.7978516, 0.7998047, -0.016311646, 0.15441895, 0.98095703, 2.0585938, 0.8466797, 2.734375, 1.4628906, -1.5683594, -1.9794922, -1.3486328, -1.3017578, -1.46875, -2.3769531, -1.9365234, 0.2770996, 1.4316406, 0.94873047, 0.78759766, 0.82421875, 0.55908203, 0.5878906, -2.2949219, 0.9458008, -2.1210938, 0.8364258, 0.5385742, -1.6015625, -2.6289062, -2.6542969, 3.2207031, -0.72265625, 0.3659668, 1.5039062, 0.7446289, -0.7685547, 1.3007812, 0.20385742, 1.3417969, 0.7529297, 2.4140625, -1.5244141, 1.1748047, 3.2851562, -0.0059547424, -0.71240234, -0.47216797, 0.8276367, -0.8774414, -0.13427734, 2.3457031, -3.2382812, -0.51660156, 0.53271484, 0.08477783, -0.4152832, -0.234375, -0.3034668, -2.2480469, -0.19421387, -1.1855469, -0.75097656, -4.4453125, 3.2421875, -0.5966797, 0.040893555, 0.6430664, 0.5629883, -1.8369141, -0.77783203, 2.3339844, -0.10638428, -0.93066406, -1.2744141, -0.5053711, -0.084350586, 2.4238281, -3.3203125, 0.8105469, -1.1494141, 0.94091797, -0.24926758, 1.0722656, 0.6040039, 0.75439453, 2.9238281, 2.9101562, 4.7382812, -0.5566406, 2.3710938, 0.65625, 0.98095703, 2.0273438, -0.7817383, 0.62841797, 1.0488281, 1.6816406, 3.3378906, -1.7832031, -0.6621094, 1.2226562, -1.1103516, -1.1464844, 0.69873047, 0.8647461, -3.5742188, -1.0673828, -0.13330078, -1.0029297, 1.4384766, 1.5742188, -0.9584961, -2.3925781, -0.073791504, -0.8408203, 2.5292969, -0.40063477, 0.35742188, 0.48950195, 0.04864502, 2.1210938, -0.5097656, 0.39794922, -2.4414062, -1.2412109, -0.52197266, 0.5830078, 0.69091797, 1.1884766, -0.04586792, 1.2421875, -0.09326172, 2.0585938, -0.6542969, -2.0019531, 2.7480469, -1.6767578, 3.0703125, 2.5078125, -1.0390625, -0.07342529, 1.3789062, -0.4338379, -3.8398438, -0.8652344, 0.017547607, 0.5058594, 0.82714844, -4.078125, -0.31884766, -0.7949219, 1.3789062, -3.2949219, 0.20300293, -0.515625, -4.0859375, 1.3037109, 0.8911133, -0.40478516, 4.4648438, 1.6289062, -0.6074219, 1.1005859, -0.47875977, 0.2142334, -0.030151367, 0.19543457, 0.17016602, 0.55810547, -0.69091797, 2.7792969, 2.4335938, 0.044067383, -0.9291992, 2.5488281, 0.2536621, 0.14733887, 1.4013672, -2.1289062, 3.671875, -0.032196045, 0.12182617, 0.0079193115, -2.4511719, 1.6396484, 0.3203125, -0.021911621, 0.7519531, -0.075927734, -0.8808594, 2.0410156, -4.2382812, 0.24719238, 0.5883789, -1.3457031, 1.7275391, -0.11090088, -1.28125, -1.7021484, 0.03414917, 1.1933594, -2.2089844, 0.8769531, -1.8564453, 0.90722656, -0.10394287, -2.0800781, -1.2041016, 1.2080078, -0.9746094, -0.55126953, 1.2978516, 0.07385254, -0.13684082, -0.77246094, -0.54296875, 0.61865234, 0.15124512, 0.18041992, -0.1899414, -0.31933594, -0.16552734, 0.9716797, 0.6777344, -0.4423828, 0.25805664, 2.0527344, 1.9443359, 0.640625, 1.5683594, -1.8017578, -0.5996094, -3.8730469, 2.5136719, 1.2744141, -2.3027344, 0.84765625, 0.9873047, 2.5175781, -2.4140625, -1.1142578, -0.012634277, 0.45214844, 1.4248047, -1.7050781, 0.3996582, 0.4621582, -0.8881836, 0.68652344, 3.2089844, 2.4589844, -0.76220703, 0.1920166, 1.7255859, -2.8398438, -1.5068359, -1.3144531, -1.0888672, -2.7480469, 0.2602539, 2.9667969, 3.4199219, -0.15991211, -1.6142578, -2.7402344, -0.84277344]}, "B00GOW6V5G": {"id": "B00GOW6V5G", "original": "Brand: Camco\nName: Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit. Patented.\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "embedding": [0.0048332214, 1.2480469, 2.9746094, -1.0976562, -1.3652344, -2.828125, 0.083740234, -0.6791992, 1.7792969, 2.0351562, 0.8022461, 0.40405273, 0.7607422, -4.0859375, 0.9379883, -0.61083984, -0.36254883, 1.3447266, 2.5859375, 0.59716797, 2.4765625, 0.16333008, -0.7685547, -0.18395996, 0.95947266, 0.020965576, 2.5058594, -1.7666016, -1.9355469, 0.7504883, 0.87597656, 0.2619629, 0.01612854, 2.4570312, 0.83935547, -1.7822266, -0.05899048, 0.23730469, -3.09375, -0.040924072, -3.5039062, -0.9814453, 3.421875, 0.51416016, -0.7236328, -0.6567383, -0.9379883, -1.9853516, 0.90722656, -2.328125, -0.3618164, 1.5527344, 1.2226562, 1.5810547, -1.4902344, 0.36816406, 0.29736328, -0.8466797, 0.04574585, 1.4287109, -1.4580078, 0.59277344, -2.2070312, 1.5195312, -0.97802734, 1.0253906, -1.7919922, -0.59814453, 0.28198242, 1.7958984, 0.7421875, 1.7226562, 0.74365234, -1.5878906, 0.5058594, 0.5854492, -1.7763672, 1.2626953, 0.17956543, -1.5566406, -0.78515625, 2.5683594, -1.2666016, -2.3496094, -1.7353516, -1.1201172, 0.21447754, 1.0498047, -0.2770996, 0.3330078, -1.0478516, 1.3828125, -2.9003906, -3.3007812, -1.0458984, 0.81152344, 1.7207031, 1.2666016, 4.2304688, 1.9462891, -0.33544922, 0.18078613, -1.8398438, 1.5097656, -2.8945312, -2.1074219, 1.7158203, -1.9804688, -1.7304688, 0.8774414, -0.46557617, 0.51953125, 0.5410156, -1.7783203, -0.3486328, 0.69140625, 0.10095215, 1.0078125, 1.1054688, 1.4150391, 3.7871094, -1.6308594, 0.7631836, -1.5439453, 2.1367188, 1.7285156, -0.3642578, 1.1435547, 3.2636719, -0.1505127, 1.6796875, 0.9316406, 1.9111328, -0.19873047, 1.2548828, -0.7294922, -1.0546875, -2.0117188, -2.4550781, 1.296875, -3.6269531, -0.18823242, 0.47875977, 0.43408203, -3.6992188, -0.87353516, -1.6269531, 1.7529297, -0.75634766, -2.4570312, 0.27148438, -3.375, -0.22741699, -0.8286133, 1.3496094, 1.1113281, -0.32470703, -3.3359375, 1.5097656, 2.7109375, 3.2539062, -1.0908203, 0.06347656, 1.4179688, 0.9145508, -2.4609375, 0.3269043, -0.55615234, -1.7421875, 1.3730469, -0.6147461, -1.5537109, 0.3310547, 0.37158203, -1.5019531, -0.7128906, 2.0175781, 1.3203125, 1.1728516, -0.12548828, -3.1640625, -0.5004883, -0.5854492, 0.5048828, 0.8876953, -0.5932617, -1.4189453, -0.43774414, -0.31835938, -0.74072266, -1.4404297, 1.3671875, -1.2919922, -0.7192383, -0.34716797, -2.9902344, -2.5195312, -1.3886719, 0.21582031, 2.1621094, -0.84228516, -0.6621094, -0.26611328, 1.0439453, -2.4472656, -1.7226562, 2.1914062, 0.65625, 1.2490234, 0.25952148, 0.49023438, -1.0791016, 2.1191406, -1.7753906, -1.9882812, -0.4387207, 0.01586914, 0.42651367, 1.8076172, 1.2568359, 1.2138672, 0.42504883, 1.1816406, 0.45947266, 0.20825195, 2.8007812, 1.1113281, 1.2548828, -1.3525391, -0.7216797, -0.07696533, 1.5429688, -1.6484375, -0.25805664, -1.1259766, 1.6542969, -0.3864746, -1.3652344, 0.04736328, -0.8876953, 1.2382812, 0.7504883, -1.2246094, -0.88427734, 1.9179688, 2.609375, -0.89501953, 1.5185547, 1.7802734, -1.1689453, 0.62841797, -0.49536133, 0.2998047, -1.1542969, -0.5361328, 2.4179688, 1.5410156, -0.39135742, 0.68066406, -3.4902344, -0.42114258, 0.6591797, -1.2558594, 0.15881348, -0.20458984, 1.4023438, 0.22741699, -0.50146484, -1.9179688, 1.1503906, 0.46826172, 0.5654297, -0.030014038, -1.3544922, 1.9912109, 1.0839844, -0.2836914, 1.6201172, 0.75927734, 2.2929688, 1.3603516, -0.1796875, 0.91015625, -2.8730469, 1.5234375, 0.16674805, 2.6152344, 0.38427734, -2.6796875, 1.2177734, 2.3574219, -0.6020508, -0.8330078, 1.5351562, 3.3710938, 1.7148438, 2.984375, 0.71728516, -0.37451172, 0.94873047, -1.1943359, 0.028121948, -0.7182617, -0.048675537, -0.3708496, -1.5498047, -0.60791016, -0.50927734, 1.6582031, 0.80859375, 1.0195312, -0.2998047, -1.1875, -0.5288086, -1.4306641, -1.0722656, 4.4882812, -1.4853516, -0.0925293, 2.6230469, 0.8046875, 2.3476562, -0.06311035, -1.8037109, 1.1689453, 0.5961914, -1.5078125, 1.0859375, 0.5395508, 1.1328125, 0.68115234, -2.5273438, 1.6152344, -0.43603516, 0.9140625, 0.7216797, -2.015625, -1.2558594, 1.3730469, -0.97021484, 1.2509766, -1.5166016, -1.7265625, 1.9882812, 1.3916016, -0.6796875, -0.24194336, 2.0722656, -0.22229004, -2.2207031, 0.21166992, 1.6132812, -1.0283203, -4.3945312, 0.45776367, -0.35766602, -1.5488281, 2.3710938, -1.3564453, 0.064941406, 0.2841797, 1.7304688, 1.7705078, -0.31420898, -1.640625, 0.21374512, 1.3867188, -3.578125, 1.4179688, -2.6894531, -0.09283447, -2.6660156, 0.16906738, -1.4189453, -2.5644531, 1.9257812, -1.5068359, 3.5820312, 1.0292969, 1.3867188, -0.75341797, -1.9140625, -0.42919922, -1.9384766, -2, -0.31982422, 1.5488281, -1.6132812, 0.66015625, -4.2578125, -0.61328125, -1.8974609, 0.0317688, -0.75341797, -1.75, -1.1572266, -1.0117188, -0.69921875, -0.12878418, 0.091918945, 2.7617188, -0.93896484, -1.5419922, -0.21240234, -0.085632324, -0.9121094, -0.5229492, -1.6904297, 1.2792969, -1.2802734, 0.29614258, 0.53759766, -1.5615234, 2.2246094, -1.3945312, -3.5390625, 0.27807617, 3.0976562, 1.4501953, 2.7695312, -1.1230469, -1.2109375, -2.1738281, 0.2783203, 2.9082031, 1.9970703, 2.0332031, 2.5175781, -0.07696533, 1.0449219, -0.8652344, 0.96972656, 0.8588867, 1.296875, 3.3984375, -1.2363281, 0.25708008, 1.8525391, 3.4179688, -3.5742188, -1.0585938, 0.9199219, -0.89453125, 3.1425781, 2.5605469, -3.3378906, -0.0016908646, 0.3005371, 2.0292969, -0.6274414, 1.6796875, 0.5566406, 0.6503906, 2.1777344, -0.0051460266, 0.5390625, 1.6552734, -0.07324219, -1.5644531, 0.57910156, 1.1474609, -1.6679688, -0.21496582, 0.79541016, -1.9042969, -0.3623047, 2.0371094, -0.48632812, 2.7617188, 1.7597656, -0.9609375, -1.4951172, -2.1464844, 0.84277344, -0.2536621, 0.54052734, 0.0340271, 0.11895752, -1.6865234, 0.22888184, -1.9804688, 2.5566406, -1.1816406, -1.1669922, 1.2294922, -2.7304688, -1.296875, -2.203125, 2.9882812, -0.94140625, 0.37280273, -1.0478516, 2.3710938, -0.6176758, -2.4355469, -0.35546875, -0.80566406, -2.0996094, 4.0195312, 3.96875, -2.1894531, 0.13342285, -1.6660156, 2.5, 1.0673828, -1.3681641, -1.1708984, -2.0742188, 2.0742188, -2.1152344, -0.71972656, 1.0029297, 2.0058594, -2.6523438, -0.10015869, -0.31274414, 2.2578125, 1.0810547, -0.7138672, 0.014816284, 0.57470703, -2.5664062, 1.9736328, -0.04537964, 1.8466797, 0.032287598, 2.0625, 0.78808594, -0.5209961, 1.1523438, 0.3005371, -2.1191406, -0.5239258, 0.4333496, 0.0703125, 3.9589844, 0.054840088, 2.2402344, 1.5087891, 0.3149414, -4.1132812, -1.6269531, -2.3027344, 0.7709961, -2.3945312, -1.5166016, 0.7236328, 0.80078125, -2.5839844, -2.0175781, -0.5361328, -2.5097656, -0.06774902, -1.0976562, 0.45336914, 1.4082031, 0.07458496, 0.15808105, 0.3161621, 0.29223633, 0.8305664, -0.3317871, -1.0478516, -2.0390625, 2.4453125, -0.36523438, -0.5463867, 0.48364258, 1.7382812, 1.8808594, -1.9794922, -0.71972656, -1.7373047, 0.42919922, -1.0683594, -3.5859375, -0.8466797, -1.2636719, 1.8730469, -0.4970703, 0.056640625, 0.9511719, 1.5488281, 0.27685547, 0.6357422, 1.1425781, 1.4453125, -2.0097656, -1.5761719, 2.5175781, -0.5019531, 0.34423828, 0.5444336, -0.5678711, 1.2001953, -0.8857422, -1.1777344, -2.1640625, 1.0664062, 1.3886719, 1.0078125, -4.6328125, 1.6416016, 2.265625, 2.3339844, 1.1962891, -0.55566406, -1.3242188, 1.1279297, 2.2207031, 1.6455078, -1.3027344, 0.69677734, -0.22680664, -0.53759766, 0.6503906, -2.2167969, -1.2021484, -0.33569336, -1.890625, 0.43945312, -0.7949219, 0.6376953, -2.2890625, -0.01940918, 0.88134766, -0.5966797, 3.5410156, -1.9472656, 0.99853516, 0.14123535, -1.1796875, -1.6601562, 3.0878906, 1.4013672, 0.5253906, 2.015625, -1.8056641, -0.8432617, 0.21911621, 1.5849609, 0.6875, 0.8364258, -0.11273193, -1.8466797, 0.5444336, 1.3613281, 0.3684082, -1.2861328, 2.1835938, 2.4335938, 1.1523438, 0.1550293, 2.6210938, 0.77197266, 1.5605469, 0.3449707, -1.1972656, -1.1542969, 0.06341553, 0.82958984, 2.9707031, -1.9384766, -3.5449219, 1.5498047, 0.76660156, -0.21789551, 1.0615234, 0.26416016, -0.72265625, -0.7636719, -3.4082031, -1.6298828, -0.14086914, 1.9150391, -0.29614258, -0.4309082, 0.6152344, 0.16345215, 0.33325195, 3.7597656, 1.1445312, -1.6298828, 0.14587402, 1.6435547, -1.6386719, -3.2363281, -1.8935547, -3.9667969, -0.11425781, -0.37475586, 1.0839844, -0.46533203, 1.2636719, 2.5234375, -2.0820312, -0.36132812, -0.8964844, 0.11340332, -1.9580078, -1.0410156, 2.4335938, -0.5151367, -0.82666016, -0.3947754, 0.53759766, 0.6850586, 2.9433594, 1.8691406, -1.0556641, -0.9165039, 0.0013809204, -3.8945312, -4.7304688, -0.5786133, 1.1376953, 0.31640625, 0.22717285, -0.9086914, -1.3320312, 1.2216797, -1.8867188, 0.2364502, -2.4824219, 0.49804688, -1.1621094, -1.4072266, -0.21875, -0.63671875, -0.36010742, 0.73828125, -1.3867188, -0.64990234, -1.2451172, -4.4492188, -3.3652344, 1.0224609, -0.59814453, -1.0126953, 0.26049805, -0.39135742, 1.8339844, 0.3034668, 1.5166016, -1.4433594, 1.6865234, -1.1162109, 0.42114258, 1.9072266, 0.20935059, -1.8076172, 2.9492188, -0.23986816, 1.1806641, 2.0371094, 1.4091797, -3.1972656, 1.5712891, 0.7451172, 0.095581055, 0.14819336, 1.1132812, 2.3378906, 0.5595703, 2.2910156, 1.5146484, -1.5087891, -1.9677734, -1.0996094, -0.96972656, -1.5058594, -2.21875, -1.6064453, 0.12963867, 1.5605469, 1.5273438, 0.92285156, 0.80566406, 0.50341797, 0.7558594, -2.5019531, 0.6660156, -1.984375, 0.6430664, 0.9223633, -1.5058594, -2.6621094, -2.5585938, 3.2773438, -0.34228516, 0.46313477, 1.1191406, 0.86572266, -0.7885742, 1.8271484, 0.32495117, 0.7246094, 0.51171875, 2.3691406, -2.0625, 1.1582031, 3.4277344, 0.036254883, -0.96972656, -0.11633301, 0.09777832, -0.9291992, -0.3479004, 2.7929688, -3.1074219, -0.3449707, 0.8515625, -0.31469727, -0.3173828, -0.4909668, -0.13476562, -2.40625, -0.42163086, -1.4658203, -1.4228516, -4.5195312, 3.0722656, -0.26538086, -0.54248047, 0.27514648, 1.0166016, -2.4082031, -0.2310791, 2.2910156, 0.054992676, -1.0654297, -1.3769531, -0.75146484, -0.5048828, 2.265625, -3.3027344, 0.8203125, -1.2939453, 0.26538086, -0.5908203, 0.62158203, 0.37475586, 0.8588867, 3.1640625, 2.8027344, 4.5742188, -0.6972656, 2.6992188, 0.28930664, 1.1591797, 2.34375, -0.84375, 0.41308594, 0.74365234, 1.9726562, 3.4746094, -1.6816406, -0.080566406, 0.84472656, -0.86865234, -0.9194336, 0.47070312, 1.2783203, -3.2109375, -1.1328125, -0.22424316, -0.7138672, 1.8457031, 1.5537109, -1.2792969, -2.5136719, -0.7421875, -0.7504883, 2.2890625, -0.5727539, 0.062805176, 0.52490234, 0.21020508, 1.953125, -0.6694336, -0.058746338, -2.4140625, -1.2265625, -0.12854004, 0.86865234, 0.6411133, 0.9814453, 0.20507812, 1.1796875, -0.18688965, 1.9277344, -0.58740234, -1.8935547, 2.1621094, -1.6054688, 2.6191406, 2.7226562, -0.84521484, 0.40600586, 1.2773438, -0.3166504, -3.7226562, -0.95751953, 0.22131348, 0.6879883, 0.84033203, -3.5644531, -0.19067383, -0.9277344, 2.0605469, -3.0019531, 0.08203125, -0.41088867, -4.0742188, 0.9716797, 1.0390625, -0.55078125, 4.046875, 1.75, -0.51123047, 0.59716797, -0.12536621, 0.48046875, 0.20458984, 0.07159424, 0.3215332, 0.5048828, -0.7368164, 2.7617188, 2.234375, 0.23413086, -0.25756836, 2.5332031, 0.35229492, 0.24572754, 1.0996094, -2.140625, 3.4902344, 0.6586914, 0.18054199, 0.2619629, -2.6230469, 1.9384766, 0.3413086, 0.08514404, 1.3027344, -0.23535156, -1.1044922, 1.5078125, -3.6269531, -0.20373535, 0.59521484, -0.6069336, 2.3554688, 0.23547363, -1.0712891, -0.7734375, -0.015342712, 1.0751953, -2.2324219, 0.9501953, -1.2451172, 1.1621094, -0.25512695, -2.2265625, -1.3271484, 1.3720703, -1.0986328, -0.8774414, 0.9145508, -0.2006836, -0.35205078, -0.9970703, -0.21166992, 0.6484375, 0.30737305, 0.5385742, -0.57470703, -0.7006836, -0.19873047, 0.8569336, 0.7685547, -0.50878906, 0.008552551, 1.7724609, 1.8173828, 0.72509766, 1.8076172, -2.390625, -0.48291016, -3.7949219, 2.5, 1.0527344, -2.15625, 0.9111328, 1.1933594, 2.4296875, -2.3457031, -1.6064453, -0.44970703, 0.36572266, 1.2138672, -1.6376953, 0.11029053, 0.3010254, -1.1191406, 0.59472656, 3.6191406, 3.3808594, -0.74365234, 0.024673462, 1.5166016, -3.1757812, -1.5351562, -1.7128906, -0.7788086, -2.3496094, 0.43701172, 2.7617188, 3.6582031, -0.018188477, -1.203125, -3.0917969, -0.8232422]}, "B07YFKY7KV": {"id": "B07YFKY7KV", "original": "Brand: Pamapic\nName: PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze\nDescription:
Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

SPECFICATION:
SIZE: 88\" Tall, 32\" Reflector and 18\" Base.
COLOR: Bronze Hammered Finish
MATERIAL: Stainless Steel
HEAT SOURCE: Propane/Butane
BTU OUTPUT: 46000 BTUs
HEAT RANGE DIAMETER: 20sqm
Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced \"Pilotless\" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
\nFeatures: Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included).\nHeat range up to 18 feet in diameter.Emits 46,000 BTU's of steady warmth.\nReliable pulse ignition, tip over protection system and convenient wheel assembly.\nStainless steel burners and double-mantle heating grid for optimal durability.\nOUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32\" diameter dome x 18\" diameter base x 88\" high. Zips open and closed with ease.\n", "embedding": [-1.5244141, 0.37329102, 2.6699219, 0.6767578, -1.2753906, 1.046875, 1.2705078, -2.1933594, 0.9921875, 3.0527344, 0.19934082, 0.3701172, 0.32470703, -3.21875, 1.7548828, -0.4765625, 1.1650391, 0.3720703, 3.1210938, 1.0869141, 2.1054688, -0.51171875, -0.5253906, -0.80566406, -0.29760742, -0.95996094, 3.6992188, -1.9160156, -0.0048179626, -0.96875, -1.7714844, 1.0957031, -0.16564941, 2.0273438, -1.4882812, -2.7421875, -0.7495117, 1.6953125, -3.5, 0.8310547, -3.3164062, -3.0683594, 0.7397461, 1.2167969, -1.3583984, -1.1806641, 1.6044922, 1.7402344, 0.69140625, -2.1347656, 0.20031738, -0.92089844, -0.15563965, 0.74560547, -0.85498047, 0.21948242, 0.05895996, -2.4257812, 1.2685547, 1.6806641, -1.2246094, -0.057403564, -2.3710938, 3.7832031, -0.7973633, 1.3330078, -1.5185547, -0.18395996, -0.85546875, 0.8823242, 2.0859375, -0.7055664, -2.1113281, 0.6035156, 1.2167969, -0.9238281, -1.3583984, 1.0556641, 5.6523438, 0.53125, -0.15368652, 1.8076172, 1.0039062, 0.79345703, -2.3886719, 0.41552734, -0.91015625, 1.1904297, 0.9042969, 1.7558594, -0.95996094, 2.8359375, -1.7744141, -2.2363281, 0.28344727, -2.0976562, 1.5117188, 1.6230469, -0.0033874512, 0.6977539, 0.5107422, -0.36523438, -0.2854004, -0.46313477, -1.0029297, -0.67626953, 3.3945312, 0.034454346, -1.7119141, 0.91748047, -2.7226562, -0.034606934, 1.8828125, -1.6357422, -1.0888672, -0.17834473, 0.80566406, 2.3652344, 4.15625, 2.5507812, 2.7929688, 1.1367188, 0.6904297, -2.2695312, -0.13330078, 0.4177246, -0.79248047, -0.7714844, 2.6386719, -1.2167969, 0.32714844, -1.6337891, -0.17358398, 1.3144531, 0.40283203, -1.2685547, -1.6269531, -0.31860352, -4.7578125, 0.39501953, -2.4433594, 1, 0.53466797, 2.125, -4.2304688, -0.75439453, -0.8676758, 1.9863281, -1.6962891, -0.5600586, 1.671875, -1.8134766, -1.5751953, -1.9394531, -1.4707031, 0.5390625, 1.9667969, -3.6484375, 3.765625, 0.9980469, 2.4785156, -1.1503906, -1.1992188, 2.8730469, 0.3630371, -1.0332031, 1.46875, 0.00026917458, 2.3203125, 2.4941406, -0.24523926, -2.453125, -0.14697266, 0.45263672, -0.50878906, -1.9658203, -1.2001953, 1.9462891, -0.5957031, 1.1074219, -2.4335938, -0.69628906, 0.22387695, 1.0068359, -0.8305664, -1.4912109, -2.3710938, -2.0371094, -1.0595703, -1.0263672, -0.8901367, 1.1933594, 0.9296875, -1.0429688, -2.0371094, -3.4238281, -3.0488281, -2.5605469, 1.7148438, 0.44848633, -0.3269043, 0.1595459, -1.3339844, -2.0683594, -2.3691406, -2.7578125, -0.72753906, -0.9868164, -0.2927246, 2.9375, 2.6152344, -0.96875, 0.7182617, -1.6728516, 0.66845703, -0.7602539, 1.8398438, -0.72216797, 0.6821289, 2.859375, -0.119140625, 1.8583984, -0.7060547, 1.0966797, -1.5830078, 2.3222656, 1.2451172, -0.12158203, -1.0664062, -2.4785156, 2.0898438, -0.06732178, -0.35302734, 0.73828125, -0.47631836, 2.4472656, 0.99072266, 0.0118637085, 0.51660156, 0.10070801, 0.61328125, -1.4150391, -1.4755859, -0.84716797, 1.1435547, 1.6621094, -0.5058594, -0.010345459, 0.2142334, -0.06500244, 0.83496094, -1.7734375, 0.7895508, -1.3447266, -0.39086914, -0.5986328, 0.16186523, 2.1582031, -1.4267578, -3.0507812, 2.0253906, 0.45092773, -1.5644531, 0.52734375, -0.46923828, 0.9169922, 4.9648438, 0.7866211, -3.8417969, 0.3178711, 0.30664062, 1.0498047, 1.2617188, 1.4072266, 1.9941406, 0.5566406, -1.1689453, 2.1230469, 0.5234375, 0.45629883, 1.6650391, 1.0527344, 1.6806641, -1.3046875, -0.16235352, -1.2392578, 0.72802734, 0.69628906, -0.7495117, -0.52734375, 2.0722656, -0.7949219, -2.3398438, 1.1435547, 0.7368164, 1.7041016, 1.2753906, -0.38330078, 0.0034542084, -3.4082031, 2.7421875, 0.018920898, -1.8876953, 0.84521484, -1.6474609, -1.2851562, 1.2148438, -1.8955078, 0.41333008, -0.16992188, -0.37963867, -1.4814453, -4.7539062, -2.3125, -1.3564453, -1.4199219, 3.6054688, -3.0585938, -0.35424805, 1.2705078, -0.0025291443, -0.65771484, -1.4003906, -2.1289062, 1.2285156, 0.3696289, -0.29345703, 0.84033203, -0.031463623, -1.0419922, -0.26171875, -2.703125, 2.2597656, -2.6679688, -3.5566406, -0.6723633, -1.7265625, -0.34716797, 0.05908203, -1.8974609, -0.43798828, 0.43920898, -0.81933594, 0.60839844, -1.2158203, -2.4589844, 0.5678711, 1.4589844, -0.4309082, 0.5390625, 1.1933594, 0.3935547, -1.4228516, -4.671875, 0.48657227, 2.0019531, -2.1191406, -0.011497498, -0.6357422, 0.80566406, -1.3378906, 0.1484375, 0.40576172, -1.9863281, 0.453125, -1.6123047, 0.19592285, -5.203125, 1.0605469, -1.9804688, 0.03793335, -0.44848633, 0.9536133, -1.8867188, -1.2070312, 1.6132812, -1.0380859, 3.3203125, 1.8134766, 2.6933594, -0.46289062, 0.42407227, 2.8886719, -0.2915039, -3.0292969, -1.0058594, -1.09375, -0.81347656, -1.4345703, -2.5429688, 0.81591797, -2.0292969, -1.2167969, -0.39941406, -3.3261719, 0.023834229, -1.2480469, -1.5048828, -0.62939453, -2.0585938, -0.14648438, -0.64208984, 0.8129883, -4.25, -0.80078125, -2.8203125, 0.0390625, -0.1796875, 1.8515625, 0.26342773, 2.1308594, 2.7421875, -0.7553711, 2.0039062, -1.9892578, -4.9453125, 1.2861328, 3.9589844, 1.2753906, -1.4980469, -1.1386719, -1.828125, -0.24377441, -2.1601562, 2.4570312, 1.1289062, 2.8984375, -0.20410156, 1.09375, 1.2949219, -0.2998047, -0.124694824, -0.7470703, -1.5048828, 3.4140625, -1.7304688, -0.087524414, 1.8710938, 3.0332031, -1.671875, -0.13293457, 1.5703125, -0.60498047, 2.9121094, 1.6816406, -0.6010742, 0.7114258, 1.7060547, 3.4902344, 1.9794922, 1.8935547, -0.50634766, -2.7675781, 1.3867188, 2.1835938, 2.3222656, 1.6728516, 0.57373047, -0.43798828, 0.85009766, 1.1611328, -3.1679688, 1.8242188, 0.53515625, 1.390625, 0.4543457, 3.1386719, -0.54589844, 0.6538086, 1.2294922, 0.3955078, -1.7939453, -3.0507812, -0.5644531, 2.9375, 2.2304688, -0.6958008, -1.6904297, 0.13928223, 0.4506836, -1.5654297, 0.18237305, 1.1416016, 0.52246094, 1.2226562, -1.2060547, -0.6723633, 0.3798828, 2.4785156, 0.5996094, -3.4804688, 1.5341797, 2.3222656, 0.25756836, -1.0068359, -1.0458984, -0.8647461, -1.9130859, 3.265625, 0.043029785, -1.0673828, -0.27368164, -2.6210938, 2.4199219, 0.85498047, -1.6259766, -1.5751953, 0.2644043, -0.20385742, 0.8979492, -0.50634766, 1.1064453, 1.8691406, -2.625, -1.1757812, -2.6191406, -0.46899414, 1.6708984, -1.7568359, -1.0878906, 2.1894531, -0.55126953, 2.9277344, -0.24768066, 3.2382812, -1.0136719, -0.5698242, 1.5830078, -0.7949219, 0.30371094, -0.9760742, -6.8789062, 1.2900391, -1.2255859, -0.9267578, 2.3710938, -0.2376709, -0.0069389343, 0.41308594, -0.18615723, -4.4179688, -3.7675781, -1.53125, -1.0097656, -3.6738281, -0.17272949, 1.0498047, -1.6308594, -0.53125, -2.9589844, 0.44628906, -0.9213867, 0.5058594, 1.0214844, -0.4375, 0.58447266, -2.0546875, 1.8710938, 0.46679688, 1.1787109, -1.4121094, -0.9550781, 0.2602539, -0.5805664, 1.4365234, 1.2314453, 0.4189453, 1.1982422, 2.6679688, 0.19921875, -0.9482422, 0.9091797, 1.4082031, 3.3125, -0.42773438, -3.5703125, 0.22387695, -0.2232666, 0.7109375, -1.1894531, -1.1455078, 0.78271484, -0.9663086, 0.7583008, 1.2910156, 0.7397461, 0.7578125, 0.4963379, -4.9257812, 1.2089844, 0.13806152, -2.0957031, -1.0283203, -0.43139648, -1.9765625, 0.21459961, 1.0498047, -1.6240234, 0.035186768, -2.265625, -0.8364258, -3.0820312, 1.8857422, 1.4902344, 2.7089844, 1.9277344, -1.4609375, -0.24377441, -2.3847656, -0.80078125, 1.2998047, 0.05657959, 0.9458008, 1.2753906, 1.6777344, 2.7675781, -2.2578125, -0.23535156, 1.3046875, -2.25, 0.08300781, -1.1083984, 0.15856934, 0.3232422, -2.0214844, 1.65625, 0.5839844, 2.7949219, -1.9472656, 0.2199707, -1.3779297, -1.3613281, -2.2285156, 1.6044922, -1.5585938, -0.16967773, 2.1601562, 0.111206055, -0.028656006, -1.1582031, 0.47265625, -1.4414062, 2.9277344, -1.4111328, -2.2421875, -1.4404297, 0.45092773, -1.4853516, -0.10168457, 2.0957031, 0.37280273, 1.1259766, 2.9902344, 2.5117188, -0.00623703, 1.1083984, 1.6181641, -0.84716797, 1.1542969, 0.41186523, 0.11682129, 0.9658203, 0.26513672, -3.3828125, 0.61572266, 3.2617188, -1.03125, 1.3671875, -0.45874023, -2.4921875, 0.5102539, -3.0175781, -2.1484375, -0.41088867, 1.1025391, -0.18444824, -1.1972656, 0.055877686, -1.5722656, 2.9609375, 3.8652344, -1.1191406, -1.3271484, 2.5371094, 0.16564941, -1.3486328, 1.0107422, -2.1640625, -0.74560547, 0.41748047, 0.1673584, 0.6928711, 0.05114746, 2.1542969, 0.74072266, -2.0878906, 0.0028533936, -1.8417969, 2.8789062, -2.4960938, -0.15551758, 0.46972656, 1.0498047, 0.50927734, -2.9199219, 0.89990234, -1.2763672, 2.7421875, -1.7841797, -0.45239258, 0.6303711, -2.0410156, -1.2285156, -3.7050781, -2.0039062, 1.5869141, -2.3710938, 0.111328125, -1.6337891, -1.109375, 0.024887085, 0.4501953, 0.07904053, -0.22851562, -0.010406494, -1.6855469, 0.06323242, -0.2841797, 0.29858398, 0.5854492, 0.6245117, -0.78466797, -2.2109375, -1.8691406, -2.4101562, -1.3535156, 1.4072266, -0.859375, 1.8564453, 1.4882812, -1.5341797, 1.0244141, 3.4804688, 1.7353516, -0.90527344, 1.5361328, 0.24182129, 1.2851562, 2.7460938, 0.02571106, 1.3769531, 0.15759277, -0.18688965, -0.6689453, 0.68066406, -0.26293945, -0.16540527, 1.3857422, -1.1152344, 0.0043029785, 0.28833008, -0.024353027, 1.0107422, -0.24304199, 3.6503906, 1.5068359, -1.7597656, -1.1171875, -2.9199219, -1.0566406, -1.5537109, -0.68359375, -2.8535156, -1.2988281, 0.9482422, 1.96875, -0.5307617, 1.1210938, 1.1005859, 1.8837891, -2.6367188, 0.4909668, 0.19140625, 1.8740234, 0.24182129, -1.4560547, -3.5371094, -3.0371094, 0.35888672, 0.46777344, 0.8730469, -1.9248047, -0.20324707, -0.80371094, 2.453125, 0.4645996, 1.9521484, 1.8779297, 0.7319336, -2.3046875, 2.6152344, 2.5039062, 0.5595703, 2.046875, -1.0283203, 2.2324219, -1.4833984, 3.109375, 2.3847656, -0.25561523, 0.11682129, 1.0683594, 1.40625, -1.1972656, -1.5605469, 2.4296875, -3.5957031, -0.5991211, -0.23156738, -1.8076172, -4.125, 1, 2.4160156, 0.67626953, 0.9404297, 1.9765625, 0.7895508, -0.9946289, 1.9248047, -0.08294678, 2.2929688, 0.9658203, -0.7841797, 1.125, 3.125, -0.53027344, 1.3955078, -0.71240234, 0.49121094, -1.1435547, 2.0878906, -0.97509766, -0.14318848, 2.0507812, 1.6660156, 3.1582031, -0.27612305, 1.2861328, 1.1591797, 2.7089844, 0.61376953, -1.8642578, -0.67333984, 1.3720703, 4.3789062, 0.20910645, -0.13891602, 0.078125, 2.5957031, -2.1113281, -1.6269531, 1.9892578, -0.1665039, -0.117004395, 0.5209961, -1.25, 0.12548828, -1.5019531, -0.18688965, -0.9970703, 1.6865234, -1.7412109, -0.9121094, 1.8876953, -0.68066406, -1.2539062, 0.24816895, 0.46948242, 1.1777344, -2.2792969, 2.8359375, -0.12365723, -1.5107422, 0.024154663, 2.0175781, 1.6191406, 1.6552734, 0.60498047, 0.86035156, 1.9863281, 2.8144531, -0.046417236, 1.5507812, -2.0410156, -0.24487305, 2.4238281, 3.1699219, -0.09100342, -0.9589844, -0.22717285, -1.7353516, -2.0019531, 0.44482422, 0.7324219, -1.9521484, 1.4609375, -0.9506836, 1.3203125, -1.1484375, 1.7099609, -1.6328125, 0.5258789, 1.0673828, 1.3486328, -1.0888672, 0.81591797, -1.2021484, 3.5195312, -0.43969727, 0.45874023, 1.1875, -2.2558594, 0.2064209, 0.82373047, 0.78125, -0.5644531, 1.4453125, -1.3876953, 3.6191406, 1.8222656, 1.4648438, 0.6010742, -0.17419434, 2.1132812, 0.28222656, 0.79248047, -0.88671875, 0.8574219, 0.11254883, -1.5878906, -0.13378906, -2.1328125, -0.51123047, 1.0234375, 1.1767578, -0.6699219, -0.68359375, 0.94873047, 0.24035645, -1.5458984, 2.28125, 1.3935547, -0.7026367, 0.7260742, 0.6254883, -1.1826172, 1.390625, 1, 0.38964844, -0.32714844, -0.40234375, -1.0205078, 0.3544922, 1.6972656, 1.4082031, 0.29052734, -0.57666016, -1.4707031, 0.10333252, 2.0058594, 0.09716797, 1.4951172, -0.6035156, -1.3779297, -0.84472656, 0.97802734, 1.7119141, 0.41577148, -1.6484375, -2.6601562, -1.3691406, 0.4765625, -0.77734375, 3.0175781, 3.5703125, 0.11419678, 2.5175781, -0.23950195, -2.9296875, -2.4472656, -0.29589844, 1.9130859, -0.51904297, 0.34692383, -0.049194336, 0.08392334, 1.7636719, 1.1972656, -1.1523438, -0.80322266, -1.2148438, 2.1503906, 0.51220703, 2.4570312, 0.75341797, -0.9819336, -0.3330078, 2.2734375, 1.8183594, -0.13684082, 1.2548828, 1.0947266, 1.0029297, -3.9785156, -0.44726562, -0.6928711, -0.11303711, -1.0888672, 2.0976562, 1.2744141, -0.6352539, -0.23474121, -3.7539062, -1.2519531]}, "B002ZY0IU6": {"id": "B002ZY0IU6", "original": "Brand: Flame King\nName: Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White\nDescription: \nFeatures: High grade steel welded propane cylinder\nPOL valve assembly\nX-ray and hydrostatic tested\nDOT approved\nPowder coated for long lasting exterior protection\n", "embedding": [-0.99365234, 1.3320312, 1.7519531, 1.0625, 1.8994141, -1.8769531, 0.2939453, 0.18981934, 1.3300781, -0.4790039, 2.1464844, 0.5996094, -1.0810547, -3.2871094, 2.1875, 0.5473633, 0.15478516, 1.7617188, 0.7373047, -0.1973877, 2.1816406, 0.6972656, -1.1220703, -2.0585938, 1.0117188, -1.0039062, 3.4160156, -2.5117188, -1.4726562, -1.3144531, 0.61083984, -0.06677246, -0.12756348, 1.0400391, -0.60546875, -1.5410156, 1.4902344, -1.4384766, -4.8046875, 0.3828125, -2.2753906, -1.5117188, -0.21911621, -0.47314453, -1.34375, 0.8408203, -0.38232422, -1.7041016, -1.1904297, 1.1914062, 0.12121582, 1.4902344, -0.94628906, 1.1181641, 0.5932617, 1.8525391, 0.4921875, -2.8691406, -1.328125, -0.067993164, 1.4628906, 0.19458008, -3.4257812, 1.6464844, -0.8701172, 1.9306641, 0.359375, -1.7724609, 1.1572266, 2.6582031, 2.0039062, 0.3984375, 1.3310547, -1.5986328, -0.28271484, 0.9067383, -3.1914062, 0.47045898, 0.49829102, -0.9091797, 0.72314453, 1.0205078, 0.36132812, -3.2207031, -1.2675781, -1.9189453, 0.2697754, -0.15612793, -0.19433594, 0.8774414, -0.89941406, 1.3212891, 0.014915466, -3.515625, 1.484375, 0.26049805, 0.74316406, 1.8486328, 1.4804688, -0.58984375, 2.0683594, 0.04031372, -0.16821289, 0.2208252, -0.5541992, -1.3154297, 1.3027344, 1.2402344, -2.3574219, 2.3691406, -0.41552734, -1.0634766, 1.9921875, -0.27807617, 0.47729492, -0.8466797, -0.22460938, 1.4873047, 1.6933594, -1.7158203, 3.0820312, -2.6992188, 1.9951172, -0.03314209, 1.4560547, 1.1083984, -0.45532227, 0.0032157898, 5.5273438, 0.4375, 2.4082031, 1.2783203, 4.1601562, -2.2675781, -0.734375, -1.5488281, -0.3010254, -1.8212891, -1.5839844, -1.3251953, -3.1777344, -0.29052734, 1.3408203, -0.5175781, -2.46875, -0.7163086, 1.1464844, -0.05596924, -1.4267578, -2.0039062, 0.6723633, -0.7607422, 1.1464844, 0.22302246, 2.2128906, 1.3066406, -1.6738281, -4.0390625, 1.2851562, 1.2539062, 1.3486328, 0.24853516, -0.4729004, 1.0361328, -1.2792969, -1.8291016, 0.056365967, -0.39868164, -1.7578125, 2.0566406, -0.31298828, -2.0722656, -0.69384766, 1.5839844, -0.116882324, -0.46826172, -0.33935547, 1.5380859, 0.82958984, 0.70996094, -2.859375, -0.63427734, 0.94091797, -2.5800781, 1.9335938, 0.54345703, 0.3515625, -1.4003906, 1.6611328, 0.08190918, -1.7373047, 1.7109375, 0.3371582, 0.7685547, -0.54541016, -1.8847656, -2.2539062, -2.7578125, 0.72998047, 2.0429688, -1.2851562, -1.3837891, 1.3828125, -0.1541748, -2.5097656, -2.2675781, 0.10461426, -0.5073242, 1.9609375, 1.4980469, -0.078063965, 0.3178711, 2.3789062, -2.2949219, -1.1142578, -3.1992188, -0.29858398, 1.3818359, 1.7275391, 1.9560547, 0.7104492, -0.20129395, 1.6611328, -0.20153809, 0.9326172, 0.07409668, 1.6035156, 2.1113281, -2.4589844, -1.4160156, 1.9511719, 2.265625, -0.55859375, 0.9316406, -2.0039062, 1.8007812, 0.41064453, -0.6875, 0.5625, 0.42529297, 0.06750488, 0.5263672, -1.9560547, -1.4023438, -3.0722656, -0.8774414, 0.31396484, -0.026809692, 0.56640625, -0.14099121, 1.7822266, 1.5214844, -0.16491699, -0.073791504, -1.5664062, 2.1171875, 1.1494141, 0.27661133, 0.9082031, -3.3710938, 2.3066406, -2.2714844, -1.0361328, 0.5307617, -1.2617188, -0.88134766, 3.578125, -0.42700195, -1.75, 0.3696289, -0.8310547, -0.06793213, 2.7617188, -0.04953003, 0.81591797, 2.7539062, -0.80126953, 3.8769531, -0.5996094, 2.1894531, -1.1845703, -0.9975586, 1.0546875, -3.3339844, 0.81591797, 1.0878906, 0.63183594, -0.45947266, -2.4101562, 0.4489746, 5.0351562, -1.4287109, -1.1806641, 1.6337891, 0.3425293, 0.7861328, 4.3632812, 0.34570312, 0.1973877, -1.7177734, 0.0016927719, 1.0244141, -0.79833984, -0.56591797, 0.8798828, -0.9916992, 1.0673828, -0.40844727, 0.6479492, -1.2636719, -1.0664062, 0.7373047, -1.7285156, 1.6318359, -1.4541016, 0.13903809, 2.5039062, -3.0371094, 1.5166016, 1.9462891, -0.12768555, 2.5117188, 2.0449219, -0.5571289, 0.42358398, 1.4921875, -2.5410156, 1.9160156, -0.10083008, 0.040863037, 0.63720703, -1.8066406, 0.9692383, -1.3769531, 0.24511719, 0.6586914, -1.1054688, -1.78125, 0.35742188, -3.4609375, 0.69677734, 0.12768555, -1.1914062, 1.8232422, -0.82421875, -2.4414062, -0.42236328, 0.6669922, -0.66064453, -1.5371094, 0.6142578, 4.1132812, -0.65722656, -3.2675781, 0.2602539, 0.7548828, 0.31884766, 2.8945312, -1.1962891, -0.08087158, 0.6958008, 0.04220581, -0.57666016, -1.9208984, -0.9433594, -2.0410156, 2.515625, -1.9335938, 2.6425781, 0.12451172, 0.33203125, -0.5683594, -0.66259766, -1.9726562, -3.3710938, -0.4033203, -0.15222168, 2.59375, 1.1269531, 2.4472656, -1.2236328, -1.5400391, 1.2197266, -0.88623047, -1.9414062, 0.90527344, 0.796875, -0.8359375, -1.4824219, -5.28125, 0.18579102, -1.4287109, -0.23657227, -0.4765625, 0.15881348, -1.0332031, 0.50634766, -0.22766113, 0.5234375, -0.010757446, -0.024551392, -0.7753906, -2.1484375, -0.7236328, -0.38891602, -0.67578125, -1.5410156, -0.33813477, -0.30126953, -0.08605957, -1.0107422, 1.3203125, -1.0361328, 2.1113281, 0.6347656, -3.8886719, 3.4707031, 2.2363281, 1.1806641, 1.8105469, -3.5234375, 0.0541687, -1.6259766, -0.8154297, 4.4570312, 2.5195312, 0.5571289, 1.0927734, -0.87353516, 0.8198242, 0.44311523, -0.8359375, 0.45458984, 0.85791016, 3.3378906, -0.26611328, -1.3779297, -0.0690918, 0.8095703, -4.3320312, -0.8154297, 0.96777344, -0.053375244, 1.0097656, -0.20776367, -0.7402344, -1.0751953, -0.56347656, 1.5390625, 1.4814453, 1.1035156, 0.3166504, -1.5810547, 0.09246826, -0.79785156, -0.6069336, 4.4921875, 0.41210938, 2.2070312, 1.8623047, 1.3818359, 0.99365234, -0.58251953, 1.4453125, 1.2119141, 1.5410156, 1.515625, -0.796875, 1.9169922, -1.09375, -0.36010742, -0.04937744, -1.1708984, 0.1739502, 1.953125, 1.0859375, -0.44360352, -0.3137207, -1.1708984, -1.1806641, -1.265625, 3.4257812, -1.2275391, 2.2285156, 0.55810547, -0.8076172, 0.7626953, -3.8574219, 2.6679688, -0.1104126, 0.5185547, -0.4020996, 0.93115234, -1.5195312, -3.2851562, -0.17077637, -0.83447266, -1.8964844, 2.1054688, -0.3564453, -2.765625, 0.2709961, -1.5292969, 0.47314453, 1.6132812, -2.9414062, 1.828125, -0.21569824, 0.64453125, -0.62353516, -0.19604492, 0.50390625, 1.1523438, -3.0800781, 1.1484375, -1.0839844, 1.0019531, 0.57128906, 0.3166504, -0.76708984, 0.38061523, -2.0722656, 2.6523438, 0.5385742, 3.21875, 0.97802734, 1.5839844, 1.515625, -1.2539062, -0.1348877, -1.2792969, -2.8417969, 1.3701172, -2.6132812, -1.4042969, 1.1738281, -1.9882812, 0.47802734, -0.1685791, 0.42578125, -0.5708008, 0.07672119, -0.15209961, 2.5039062, -1.4277344, -0.53515625, -0.6513672, 1.4375, -1.65625, -0.1776123, 0.97802734, -1.7519531, -0.7993164, 0.7636719, -1.8964844, -0.11193848, 0.76171875, -0.21850586, 0.023727417, -1.3457031, 1.2060547, 0.44189453, -0.8833008, -1.4804688, 3.078125, 4.3164062, 0.44677734, 1.3730469, 2.4179688, 2.0488281, -0.0390625, -0.78222656, -1.9677734, 1.2099609, 0.6430664, -4.5664062, -1.3144531, 0.7680664, 1.09375, -3.1445312, 1.7597656, -1.1582031, 1.6328125, 2.578125, 0.39746094, 1.9443359, 0.4165039, 0.15356445, -0.9433594, 0.81347656, -0.024429321, -2.0273438, 2.3769531, -0.6977539, 0.8833008, -1.6064453, 2.1914062, -2.4511719, -1.7597656, -0.54052734, 1.6689453, -4.7695312, 1.140625, 2.8007812, 2.1015625, -0.24389648, -1.3056641, -0.020721436, 0.0592041, -0.37548828, 0.27441406, -0.07086182, -1.1484375, -1.4521484, -0.03677368, 1.2333984, -0.9916992, 0.4309082, 2.3183594, -0.93652344, -0.7841797, -0.25024414, 1.8730469, -2.3027344, 0.47045898, -0.35766602, -1.1201172, 2.859375, -1.7871094, -1.8183594, -0.057678223, 0.3425293, -0.30004883, 0.38378906, -0.38964844, -0.58203125, 3.7441406, -0.24658203, 0.18237305, 1.8066406, 1.7597656, -0.34521484, 1.8916016, -2.1269531, -0.3251953, -0.93652344, 1.1083984, -1.4716797, 1.6367188, 1.4179688, 0.38427734, -0.79589844, 2.2890625, -0.03353882, -0.20581055, 0.33154297, 1.3994141, -2.8847656, -3.5722656, -0.9819336, -0.5488281, 2.7636719, -0.7661133, -1.7666016, -0.24291992, 1.8144531, 0.17333984, 1.9804688, 1.0166016, -1.2832031, -2.8320312, -1.0361328, -2.7695312, -2.0117188, 0.4152832, -0.3701172, -0.24450684, 2.1953125, -1.9169922, -1.203125, -0.19970703, 1.6787109, 0.35742188, -0.890625, -1.3867188, -0.058654785, 0.20446777, -0.26513672, -0.9580078, -0.53515625, -0.8354492, -0.09246826, -0.51220703, -0.036010742, 3.1679688, -0.8046875, 0.45703125, -0.5395508, 0.4177246, -1.5419922, -1.9013672, 2.2753906, -0.5102539, 0.62109375, -1.2333984, 0.18273926, -0.3947754, 1.6494141, 2.2304688, -1.5380859, -1.0039062, 0.3251953, -2.7636719, -4.7695312, -0.9067383, -0.80126953, 0.23620605, -0.16638184, -2.1269531, -1.7919922, 1.2890625, -1.9589844, -1.2226562, -1.1611328, 0.116760254, -0.10015869, -0.36376953, -1.5898438, 2.5117188, -0.46069336, -0.23950195, -0.16906738, -0.48779297, 0.56591797, -0.95947266, -3.6074219, 1.6621094, -1.78125, 0.9267578, 0.31323242, -1.2128906, 2.0976562, 1.8779297, 0.69091797, -3.9257812, 2.5742188, -2.9277344, -1.2705078, 2.1933594, -2.2714844, -2.2753906, 0.66064453, -0.6635742, 0.85546875, 2.5820312, 0.8618164, -3.1289062, -1.71875, -0.6928711, 0.6689453, -0.86035156, 1.4521484, 3.59375, 1.9189453, 0.5908203, 1.8388672, -1.4013672, -1.6484375, -0.99853516, -0.44677734, 0.99609375, -0.8017578, -0.44360352, -0.71972656, 1.9980469, -0.9765625, -0.45288086, -0.5673828, -0.80908203, -0.87109375, -1.2949219, 3.4179688, -3.1660156, 3.1113281, 3.7558594, -2.2246094, -2.2597656, -1.4023438, -0.076293945, 1.8232422, -1.4130859, -1.6113281, -0.06323242, 0.95703125, 0.6118164, -1.1767578, 1.2607422, 0.25830078, 1.3535156, -0.4091797, 0.8823242, 4.1640625, -1.2353516, 1.4814453, -0.043273926, 0.36791992, 2.1796875, 2.9960938, 1.8339844, -1.3876953, -0.15454102, 0.11578369, -0.10321045, -0.50097656, 0.046661377, -1.5605469, -3.34375, -2.2089844, 2.0429688, -0.7270508, -3.5292969, 0.0032348633, -0.66845703, -0.6352539, 0.07366943, -0.41015625, -0.68408203, -0.2854004, 1.4707031, 1.1240234, -1.2441406, 0.1282959, 1.8388672, 0.44482422, 2.6484375, -1.6123047, 1.6035156, 0.8618164, -0.064453125, 0.4765625, 1.1367188, -1.3320312, 2.765625, 1.15625, 2.5507812, 3.9121094, -0.2142334, 0.6484375, 0.8359375, 1.4306641, 3.1230469, -0.93847656, 0.5854492, 0.8466797, 1.5605469, 0.17407227, -0.93603516, -0.13330078, 0.13366699, 1.3398438, -1.2587891, -0.43676758, 1.6582031, 0.022354126, 0.36889648, -0.6430664, -0.5996094, -0.89697266, 0.25854492, -1.34375, -1.1660156, 0.6616211, -1.0322266, 1.5458984, 0.27661133, 2.1796875, 0.30249023, 0.6044922, 0.8051758, 0.16357422, -0.3996582, -1.6894531, -1.8408203, 1.0849609, 0.38452148, 0.55908203, -0.50146484, 0.7753906, -0.7631836, -0.40771484, 0.59472656, 0.00970459, -1.1318359, 2.1015625, 2.5644531, 1.0185547, 1.1318359, 0.2322998, 4.5585938, 1.0371094, 0.05670166, -2.3027344, 2.75, -1.1943359, -2.140625, 1.5048828, -1.2675781, 0.60839844, -1.6123047, 0.7285156, -3.5722656, 0.765625, -0.28808594, -1.6464844, 3.1679688, 0.6503906, -0.7050781, 2.9160156, 2.2714844, -0.53222656, 0.53222656, -0.37768555, 1.2294922, 0.56396484, 0.39672852, 1.8007812, 1.5449219, -2.3925781, 4.453125, -0.66748047, -0.9042969, -0.62646484, 2.1953125, 0.3425293, 0.8666992, 0.3154297, -0.578125, 1.8671875, 0.046447754, 0.53515625, 0.98535156, -1.4990234, -1.2226562, -2.0371094, -0.3791504, 0.87402344, -3.4023438, 0.25048828, 0.4362793, -1.0351562, -2.5214844, 4.578125, -1.1005859, -0.90966797, -0.024475098, -2.2949219, -3.3203125, 1.5126953, 0.875, -1.4130859, -1.5214844, 0.66796875, 2.5625, 0.47045898, -1.9755859, -0.9794922, 0.20605469, 0.5761719, -1.8378906, 1.4033203, -0.68408203, -0.90185547, 1.2519531, 0.3359375, -1.0419922, -0.375, 0.34399414, 2.0292969, 0.62939453, -0.61279297, 1.0507812, 1.0751953, -2.2089844, -2.3222656, 0.99121094, -0.37890625, 0.2746582, 0.3696289, -3.5625, -1.1650391, -0.78222656, 1.1494141, -0.9189453, -1.2783203, 0.68310547, 2.2148438, 1.8964844, -1.3496094, 0.52441406, 0.13391113, 1.2412109, 1.6513672, -2.7363281, 0.82128906, -0.45214844, 0.2944336, -0.75634766, 3.5332031, -0.51904297, 0.7578125, 0.06665039, 1.6230469, -1.5302734, -0.30126953, -0.44726562, -0.5151367, -1.0878906, 0.96777344, 0.4951172, 0.8652344, 1.0009766, -2.4238281, -2.2734375, -0.57373047]}, "B00OXKQQYC": {"id": "B00OXKQQYC", "original": "Brand: Coleman\nName: Coleman Propane Grill Adapter, 1-Pound\nDescription: \nFeatures: Attaches to any full-size propane grill\nAllows for hook-up to a 1-lb. (0.45 kg) fuel cylinder\nAll brass construction\n", "embedding": [1.0283203, -0.8745117, 1.0820312, 1.0976562, -2.0039062, -0.21875, 1.0888672, -0.38623047, -0.4633789, 3.1855469, 2.0273438, 0.4260254, 0.46484375, -2.4882812, 0.22216797, 0.82373047, 1.2724609, 0.7734375, 1.4902344, -0.3947754, 3.5253906, 0.94189453, 0.8129883, -2.1367188, 1.3945312, 0.7685547, 4.9375, -3.3222656, 1.0019531, -1.2998047, 0.20874023, -0.7265625, 0.8378906, 1.7089844, -2.2792969, -1.0449219, -1.2714844, 1.6630859, -2.9589844, -1.5664062, -1.5009766, 0.9082031, 2.9941406, -0.66308594, -1.4492188, 0.41088867, 1.6494141, 1.0732422, -0.09515381, -0.34692383, 2.7617188, 1.9365234, 0.1529541, -0.7807617, -1.7607422, 2.0117188, 0.2788086, -2.5917969, -0.7128906, -0.38720703, 2.6054688, 0.7236328, -0.3269043, 0.33496094, -0.75927734, 1.2001953, -1.0302734, -0.8496094, 0.7246094, -0.59228516, 1.4189453, 0.87646484, -2.1933594, -1.0771484, -2.0175781, 0.87402344, -4.1601562, -0.35498047, 1.0419922, -0.8574219, -2.7011719, 1.1005859, 0.20898438, -2.6738281, -0.39038086, -0.21362305, -2.84375, 0.23095703, 1.7822266, 1.4580078, -0.5209961, 1.4443359, -1.8447266, -3.5839844, 0.25219727, -0.45043945, 1.5800781, 1.7910156, 1.5976562, -0.49902344, -1.6748047, -1.0957031, -1.59375, 0.7651367, -2.9921875, 0.064575195, 1.6044922, 0.22021484, -3.5097656, 0.5292969, 0.71533203, -0.7475586, 2.8417969, 0.12030029, 0.8491211, -1.1933594, -0.12188721, 0.4638672, 1.9199219, 0.90478516, 5.0039062, -0.44067383, 1.8408203, -0.5341797, -1.625, 0.97314453, 0.105529785, 1.3173828, 3.9707031, -0.546875, 0.42456055, 1.1787109, 3.4765625, -0.2709961, -0.89941406, -2.5625, -0.50146484, -1.2568359, -0.5175781, -0.35107422, -2.5585938, 0.034362793, 1.1123047, 0.30029297, -6.125, -0.41870117, -1.7480469, 0.74902344, -1.3544922, -1.6884766, -0.034057617, -1.6132812, -0.84472656, 1.5986328, 1.875, 1.4384766, -1.765625, -1.5966797, 3.5351562, 0.6982422, 0.64208984, -0.8339844, -0.26464844, 1.0957031, 1.265625, -0.22973633, 0.52490234, 0.41479492, -0.6196289, 2.0019531, 1.5458984, -2.5390625, 0.7128906, 1.3623047, 0.26123047, -0.48486328, 1.5253906, 1.5585938, -0.039276123, -0.38671875, -1.0576172, -2.3652344, 0.70214844, -1.1074219, 1.6435547, -2.4375, -2.3085938, -0.66064453, 1.1162109, -1.2949219, 0.58691406, 0.059661865, 0.19360352, 0.9448242, -0.7836914, -1.5009766, -1.4580078, -0.87841797, 0.64404297, 0.5410156, -1.359375, -0.5834961, 1.0888672, 0.3005371, -1.7773438, -2.6269531, 0.42236328, -1.6279297, 0.41870117, 2.5253906, 1.8789062, -0.9536133, 1.0546875, -0.3942871, -0.9902344, -2.4394531, 0.8510742, 1.0478516, 1.8789062, 1.6337891, -0.9921875, -0.40014648, 0.009765625, 0.09765625, -0.6972656, 1.2314453, -0.21740723, 1.5888672, -1.5146484, -0.3215332, 2.5839844, 2.5410156, -2.7832031, 0.9296875, 1.0224609, 1.9101562, 0.14916992, -0.5161133, -0.8989258, -0.19226074, -0.93896484, 1.0439453, -0.64941406, -2.6640625, -0.6738281, -0.22277832, -1.0537109, 1.9267578, 4.1601562, -0.5649414, -0.103149414, 0.85839844, -3.0078125, 0.48510742, -2.6191406, 2.0800781, -0.043426514, 2.0800781, -0.7944336, -3.0566406, 1.78125, 0.010871887, -0.46801758, -0.6894531, 2.0507812, 0.60009766, 3.3144531, -1.1904297, -3.1523438, 0.014091492, 1.9726562, 1.5136719, 1.140625, 0.49731445, 0.22021484, 0.7636719, -1.6445312, 2.6054688, 0.9013672, 1.6210938, 0.3894043, 0.84814453, 2.5332031, -2.8652344, -0.4350586, 0.57128906, 2.0800781, -1.2646484, -1.6728516, 2.0117188, 4.2460938, 0.19543457, -0.7348633, 4.0390625, -0.1381836, 1.6660156, -0.5239258, -0.05783081, -2.09375, -0.009307861, 2.2011719, 0.3894043, -1.6162109, 2.1582031, 0.11407471, -0.16015625, -0.5136719, -0.9506836, 1.9101562, -0.33911133, -1.1542969, -0.43603516, -1.8916016, 0.92626953, -1.9121094, -0.5151367, 0.39160156, -2.3671875, 1.5244141, 1.5097656, 0.48779297, 0.62353516, 0.7753906, 0.40771484, 0.17077637, 1.3974609, -1.9511719, 2.1894531, 1.1933594, 0.35717773, 1.3710938, -0.6513672, 1.6425781, -1.1279297, -3.7734375, 0.6928711, -0.9628906, -3.6796875, 2.3671875, 0.40527344, -2.5546875, 0.16418457, -0.4802246, 3.3789062, -2.1992188, -0.6191406, 0.67285156, 1.4316406, -0.8256836, -0.7314453, -0.7651367, 0.63427734, -1.5722656, -3.5410156, -0.03665161, -0.7216797, 0.5444336, 0.28979492, 0.50634766, 1.3457031, 0.91308594, 0.21655273, -0.6098633, 0.96728516, -1.4355469, -1.2490234, 1.6376953, -1.9638672, 0.049102783, -2.7832031, -0.6401367, -0.9892578, -1.3710938, -1.7705078, -2.1054688, 1.4160156, 0.5908203, 5.1015625, -0.875, 1.2080078, -0.08526611, 0.6767578, 2.3300781, -1.8574219, -3.3789062, -1.5615234, -0.04324341, 1.6884766, -0.75097656, -3.6425781, -0.16918945, -0.47998047, -0.19555664, -1.765625, 0.35595703, -1.8964844, 0.8730469, -0.31933594, 0.40771484, 0.38745117, 1.9199219, 1.1035156, -1.4277344, 0.39282227, 0.8305664, -2.3183594, -0.56884766, -1.4599609, 0.59472656, -0.15563965, -2.4726562, 1.0263672, -0.3137207, 0.8833008, -1.6542969, -3.4335938, 1.4150391, 0.7441406, -0.28393555, 2.3339844, -1.2167969, -2.5039062, -5.1054688, -1.2255859, 2.25, 2.1503906, 2.40625, 0.7480469, 1.703125, -0.61035156, 0.57373047, -2.09375, -0.3791504, -1.7021484, 4.8007812, -0.97753906, -3.0136719, -1.0068359, 2.3164062, -2.9492188, -0.24951172, 0.2121582, -0.123168945, 1.6269531, 2.4394531, 0.79052734, -0.68408203, -1.2558594, 0.17602539, 2.6738281, -0.87939453, 0.68603516, 1.1777344, -0.7993164, 0.4140625, 1.1845703, -0.49975586, 0.48754883, 0.7866211, 1.7128906, 1.4804688, -1.9277344, 0.8413086, -0.6123047, 0.49487305, -0.109802246, 2.0117188, -1.1835938, -1.0595703, -0.52978516, -0.61621094, 1.9482422, -0.76220703, -0.5498047, 3.2089844, 1.2861328, -1.2861328, 1.4814453, 0.90722656, 0.9975586, -0.13598633, -0.84228516, 0.546875, -0.39282227, -1.6396484, -1.2197266, -1.5644531, -1.8378906, 2.8867188, -0.37402344, -1.3144531, -0.5986328, 1.2919922, -0.37353516, -2.6523438, -3.4277344, -2.5214844, -0.83935547, 1.4130859, 1.1894531, -1.8339844, 1.6835938, 0.8623047, 2.7167969, 2.2460938, -3.09375, -1.4052734, -2.1289062, -1.3955078, -1.0693359, 0.07330322, 0.9350586, 0.97509766, -2.7890625, -0.5449219, -1.9970703, 1.8847656, -0.4921875, -1.5830078, -0.6142578, 0.93652344, -0.22570801, 0.8823242, -1.4785156, 2.5507812, -1.8554688, -0.68652344, 1.5537109, -2.3476562, -0.4951172, -1.1542969, -4.1914062, 1.265625, -1.1416016, 1.0214844, 2.4472656, 0.23254395, -1.0576172, 1.4736328, 0.29003906, -2.5507812, -2.2285156, -2.3925781, 0.81347656, -1.9121094, 1.1289062, 2.2929688, 0.10455322, -2.4511719, -1.9912109, -0.16955566, -1.4755859, 0.9145508, 1.0195312, -1.4003906, 0.20629883, -0.26049805, 2.4414062, -0.5878906, -0.734375, 1.359375, 0.44311523, -0.06616211, -2.2910156, 0.54785156, -0.18933105, 0.4296875, 1.1767578, 3.0859375, 1.9746094, -3.53125, 0.84521484, 0.6640625, 1.9443359, -0.06439209, -1.3291016, 0.62597656, -1.9130859, -1.2470703, -0.09313965, 0.85498047, -0.9848633, -2.2890625, 0.33496094, 2.2558594, 2.6386719, 1.7998047, -0.91748047, -2.0234375, -0.14379883, 1.3964844, -1.4667969, -1.4960938, -0.2631836, -1.3544922, -2.4804688, 0.26416016, -1.5302734, -0.35131836, 0.31982422, -2.6660156, -2.6992188, 1.2558594, 1.8388672, 1.5087891, 1.1533203, 0.2746582, -0.74365234, 0.56347656, 0.109680176, -0.36450195, -0.7817383, -1.0478516, -0.5102539, -0.5444336, 3.5742188, -0.32177734, -1.2597656, 0.6118164, -1.1914062, -1.2294922, -1.40625, 0.56152344, -1.8066406, 0.17919922, -0.52246094, -2.8261719, 2.6777344, -2.2011719, 0.8378906, -0.5966797, -0.3256836, -0.69433594, 0.6455078, 1.8164062, 0.80322266, 1.6025391, -0.58691406, 0.5932617, 1.0507812, 1.1035156, 1.8681641, 0.87060547, -3, -1.1669922, 0.48583984, -0.06939697, -0.7192383, 0.79052734, 0.0881958, 1.3554688, 2.1894531, 2.0039062, 1.7412109, -0.671875, 1.8398438, 1.4042969, 0.31298828, -0.42260742, -0.08843994, -0.6459961, 2.8769531, -2.5058594, -2.7851562, 0.21118164, 2.6367188, 0.04031372, 2.7597656, 1.6962891, 0.3864746, -2.4277344, -2.6113281, -0.765625, -0.8808594, -1.3037109, 0.29760742, -0.8828125, -0.29248047, 0.32202148, 0.734375, 2.7851562, -0.15039062, -1.8486328, 1.3056641, -2.6269531, -2.0527344, -1.1044922, -2.2871094, -2.5800781, -2.0703125, 0.20703125, 2.1796875, 0.55126953, -0.58691406, 0.98583984, -0.51464844, 1.0986328, -0.2529297, 1.7041016, -1.3193359, -1.7529297, 0.28686523, -1.0019531, -1.2978516, -2.5644531, 1.1630859, -0.5629883, 1.4873047, 2.0605469, 0.6411133, -2.3925781, 0.5541992, -2.1269531, -3.8984375, -1.4121094, -1.8554688, 0.9111328, 0.42626953, 0.66552734, -1.4628906, -0.19311523, -0.024810791, -2.0019531, -1.1777344, -0.12683105, -1.3291016, -0.47631836, 0.5600586, -0.33618164, -1.2695312, 1.3710938, 1.3798828, 2.6367188, -0.21728516, -2.8105469, -3.3476562, -0.4892578, -1.5019531, -0.78759766, 0.94873047, -0.25927734, -0.25805664, 0.6123047, 2.5332031, -1.0957031, 2.2695312, -0.36572266, 0.07824707, 1.7646484, 0.009849548, 0.31640625, 1.1904297, -2.7714844, 0.30200195, 0.09881592, 4.8945312, -0.53564453, 0.19421387, -1.3095703, -0.16552734, 0.26342773, 0.8149414, 1.3085938, -0.56591797, 3.1777344, 1.4013672, -0.15100098, -1.1982422, -2.1875, -0.8647461, 0.60595703, -0.57958984, -0.3125, -0.51904297, 2.0546875, 2.0117188, 1.8623047, 0.6381836, 0.6118164, 1.6162109, -0.012565613, -0.5756836, -1.3740234, 2.3398438, 1.4697266, -1.4912109, -2.5585938, -1.2275391, 1.1884766, 1.5625, -0.28881836, 1.1123047, -0.6953125, -1.2480469, -0.061584473, -0.66503906, 1.9814453, 2.3515625, 0.73095703, -0.71777344, 0.53759766, 4.7460938, -1.3544922, 0.6875, 1.09375, 1.0664062, -1.5566406, 1.6679688, -0.9453125, -2.7226562, 1.3339844, -1.4726562, -0.25732422, 0.1875, -0.27514648, 0.4169922, -2.2636719, -0.8989258, -0.9589844, -0.46728516, -3.3769531, 1.3798828, 0.09338379, -0.37231445, 2.0410156, 1.8798828, -2.2226562, -1.0341797, 1.3681641, 2.4453125, -0.7939453, 0.05987549, -1.6318359, 0.5942383, 1.3652344, -2.2480469, 2.5, -0.7392578, 0.7060547, 0.71728516, 1.0673828, 0.111206055, 2.8164062, 1.8691406, 4.328125, 3.8320312, 1.7460938, 3.0429688, 0.64404297, 0.69384766, 1.3144531, -3.0078125, -0.4951172, 1.53125, -0.2578125, 1.4355469, -1.4794922, -0.2524414, 0.14428711, -0.19921875, 0.3449707, 1.4941406, 3.9394531, -3.5761719, 0.012435913, -0.41259766, 2.8769531, -1.9941406, 0.7338867, 0.72216797, 0.70166016, -0.53759766, 0.2286377, 1.6679688, -0.015167236, -0.22705078, 0.29077148, -0.17700195, 2.1230469, -1.6181641, -1.3730469, -1.7167969, -0.6582031, -0.36621094, 0.20581055, -0.31274414, -0.87597656, 0.5620117, 2.5996094, 1.6650391, -0.60253906, 0.8911133, -1.5263672, 0.20959473, 1.9150391, 1.0585938, -0.21154785, -0.5073242, 2.5351562, -0.28588867, -3.6074219, -3.8027344, 1.1748047, -0.6147461, 0.5151367, 0.16552734, -2.4921875, 2.625, -0.60498047, 1.9726562, -0.9536133, 1.4082031, -0.43115234, -2.5214844, -1.1445312, -0.061828613, -0.5102539, 2.0859375, 2.2910156, -2.8066406, 1.2021484, 1.8759766, 1.1083984, 0.16064453, -0.34643555, 1.5039062, 2.9140625, -2.3730469, 2.7070312, -1.3105469, 2.4257812, -1.0966797, 3.71875, 4.3789062, 0.19152832, 0.72753906, -0.44995117, 1.2197266, 1.7695312, 0.8935547, -0.75634766, -1.6054688, -0.7294922, 1.0205078, 1.9013672, 0.36401367, -0.6040039, 2.9472656, 1.6679688, 0.037994385, 1.0068359, 0.6040039, -1.1630859, 1.453125, 0.19934082, -1.0019531, -3.03125, 1.6416016, 1.4892578, -1.2373047, 0.8105469, 1.2011719, 1.4794922, -1.0146484, -1.6367188, 0.3251953, -0.53759766, -0.4399414, -2.3027344, -0.43920898, -0.4794922, -1.1875, -0.2932129, 0.3659668, -0.01109314, 0.50878906, 0.5151367, -2.2773438, 0.014137268, -1.0527344, -0.0061035156, -2.5410156, -0.5307617, 1.3867188, 2.8984375, -0.45263672, 2.4101562, -3.1386719, -2.9238281, -3.2773438, -2.4960938, 3.9335938, 1.0888672, -2.4511719, 0.36547852, 0.15881348, 1.9550781, -2.7597656, -1.0986328, 0.85253906, -0.8310547, 0.796875, -0.6640625, -0.7475586, 2.5800781, 0.47998047, 1.6259766, 2.0117188, 1.9912109, -0.011116028, -0.4152832, -0.5576172, 0.0076675415, -1.6416016, 0.78466797, 0.6020508, -0.26635742, -1.9287109, 2.15625, 1.5957031, 0.33447266, -0.66259766, -1.9414062, -0.045898438]}, "B087N2JQD8": {"id": "B087N2JQD8", "original": "Brand: Hisencn\nName: Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W\nDescription: Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nFeatures: Burner Dimension: 12.6\" x 1.5\" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ;\nHeat Plate Dimension: 13\" x 4\" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ;\nFits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nRepair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order.\n\u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\n", "embedding": [-2.9433594, 0.81347656, 1.4189453, -1.6513672, 1.7490234, 0.10192871, 2.0625, -1.6914062, 2.5703125, 1.1552734, 0.80322266, -0.43139648, 2.40625, -2.3886719, -1.3701172, 1.3515625, 1.6191406, 0.3984375, 1.765625, -0.3828125, 0.76708984, 1.0917969, 1.2333984, -2.5078125, -1.2314453, 0.01763916, 5.6015625, -3.2480469, 1.7705078, -1.4882812, 2.3085938, -1.1689453, -0.18066406, 2.8710938, -3.0722656, -0.6899414, -0.4790039, 1.4833984, -3.5429688, 0.3334961, -1.2900391, 2.9980469, 2.6914062, 0.60302734, -2.0234375, -1.4482422, 0.52783203, 0.64453125, -2.3847656, -1.0263672, 1.1337891, 0.85253906, 0.47021484, -0.61572266, -0.16430664, 3.078125, -0.42773438, 0.5913086, 1.4394531, -0.45751953, 1.7763672, -1.1767578, -2.53125, -0.28710938, -2.0722656, 1.4082031, 1.9804688, -0.37231445, -1.8691406, 0.6425781, 0.009407043, -0.35083008, 0.77001953, -0.09429932, 0.39624023, -2.6230469, -2.9121094, 0.33325195, 0.45214844, -1.3935547, -1.4462891, 2.8339844, -0.78515625, -0.5498047, 0.32714844, -0.57910156, -0.3540039, -0.7578125, 3.2871094, 0.5942383, -1.1328125, 1.2519531, -1.6240234, -4.25, 1.2490234, -1.4492188, 1.0986328, -0.3166504, 0.11602783, 1.9042969, -3.0039062, -0.6171875, -2.5371094, 0.37451172, -3.0117188, -0.25610352, 2.0039062, 1.71875, -1.3710938, -0.6279297, -1.3691406, -1.296875, 1.6494141, 0.21459961, -0.13867188, 2.5019531, -0.9951172, 1.3515625, -0.037628174, -0.5932617, 5.5820312, 0.85253906, -1.0332031, -0.9897461, 0.67041016, -0.3166504, -0.10614014, 0.07196045, 5.0664062, -2.1777344, 1.296875, 0.47338867, 2.15625, 0.029922485, -0.6933594, -1.6640625, -4.2226562, 0.05206299, -2.84375, -0.07324219, -2.0820312, -0.2590332, 0.6376953, -0.6850586, -1.5498047, 0.71777344, -1.1357422, 2.84375, -0.6376953, -1.2607422, 1.9433594, -2.3066406, -0.8774414, -3.4394531, 1.6103516, 0.90185547, -0.3840332, -2.0898438, 2.1835938, 1.4785156, 1.2841797, -1.3095703, -0.7753906, 0.64501953, -0.5180664, -0.5839844, -2.0332031, 1.2734375, -1.0419922, 2.7011719, 0.41381836, 0.8798828, -1.078125, -1.4511719, -0.8618164, -0.6816406, 0.2578125, 2.7832031, -0.38720703, 1.2753906, -1.8095703, -1.0517578, -0.53271484, -1.7509766, -0.32983398, -0.8491211, -1.0107422, 0.7158203, 1.1113281, 0.6508789, 0.515625, 0.76464844, 0.043273926, 0.8149414, -2.0761719, -0.4711914, -1.4345703, -1.2783203, 1.59375, -0.30859375, -2.3183594, -0.24084473, 0.059265137, -0.65771484, -2.2753906, -2.7011719, -1.8691406, 0.3395996, 1.6289062, 0.9057617, 0.68408203, -0.66503906, 0.91064453, -1.6816406, 0.87841797, -1.7119141, 2.0097656, -0.49975586, 1.7587891, 2.1875, 0.2388916, -1.0400391, 0.23181152, 3.0214844, 1.1357422, 1.7138672, 0.88671875, 0.6723633, 0.059631348, -0.6201172, 1.09375, 0.55810547, -0.54296875, 1.203125, -0.33789062, 0.7631836, 1.5185547, -2.4082031, 0.59472656, -0.037963867, 0.9033203, -0.51953125, -1.4990234, -1.8798828, 0.3466797, 4.0351562, -3.0390625, 2.5214844, 1.3310547, 0.76953125, 0.07977295, 0.31274414, 1.3496094, -0.086242676, -2.2128906, 2.0273438, 0.14758301, 0.5, -0.4650879, 0.92822266, 0.90478516, -0.16699219, -1.0107422, 0.34765625, 0.43798828, -1.9082031, 2.0605469, 3.2695312, -0.41723633, -0.4362793, 0.66064453, 0.2631836, 1.4287109, -1.5498047, 1.8447266, 3.2519531, -1.4716797, 2.3535156, 1.6337891, -0.59521484, 1.8310547, 0.8305664, 2.6992188, -0.61572266, 0.95996094, 0.5551758, -0.5239258, -1.0927734, -0.34033203, -0.14855957, 3.6933594, -1.484375, -0.7792969, 3.4765625, -0.52490234, -1.0341797, 0.09362793, -1.1484375, -0.48095703, 0.55566406, 1.4453125, 1.9404297, 2.2519531, 1.0419922, -1.0634766, 1.0537109, 1.3486328, -1.0576172, -1.4091797, 3.1210938, -0.3779297, -1.34375, -1.3105469, 0.21130371, -1.4306641, -2.203125, 2.6503906, -1.6318359, 3.2363281, -1.2167969, 0.6933594, -0.10974121, -0.2529297, -0.9692383, -0.27197266, 0.4189453, -0.7475586, 1.546875, 0.62939453, 1.5341797, -0.4008789, -0.34228516, -0.9453125, -1.8154297, -1.8681641, 0.5942383, -1.2041016, -4.0976562, -1.0214844, 0.4790039, -0.19274902, 0.23999023, -0.5097656, 3.2128906, -0.45141602, -1.5107422, -2.3632812, -0.6430664, 0.8173828, -1.9267578, 0.5493164, 1.5488281, -2.1367188, -3.5117188, 0.46850586, -2.1074219, 0.4116211, 0.31347656, -0.46411133, -1.9316406, 1.3203125, 0.072143555, -0.7421875, 1.4580078, 1.6904297, -0.99072266, 0.8408203, -1.7753906, -0.9296875, -2.6210938, 1.1269531, -1.265625, 0.39233398, -3.0488281, -1.6181641, 1.1425781, 0.16394043, 2.7714844, -1.8964844, 0.4399414, 1.2636719, -0.1739502, 0.4777832, -1.875, -3.9589844, 1.6210938, 1.3515625, 0.1776123, -3.9921875, -3.8496094, -0.81347656, -0.33081055, -1.1494141, -1.7041016, -1.4697266, 0.59521484, 2.1875, -0.20483398, -1.2666016, -0.97509766, 1.2597656, 0.45336914, 1.9365234, 0.45214844, -1.1015625, -1.4189453, -0.10748291, -2.1816406, 1.5908203, -0.4501953, 0.27929688, 0.13977051, -0.09820557, 3.4863281, 0.013313293, -1.2832031, 1.8789062, 2.1445312, -2.3125, 3.0996094, -0.9003906, -0.4387207, -3.5507812, -0.5175781, 4.6171875, 0.6118164, 3.7617188, -0.107543945, -0.29077148, 2.53125, 1.2285156, 0.65722656, 0.025360107, -0.77001953, 2.9765625, -1.2841797, -3.1113281, 2.859375, 0.27514648, -2.421875, -1.5234375, 2.3007812, -0.25097656, 1.0419922, 1.6416016, 0.43017578, 1.1230469, -0.5209961, 2.5039062, 0.3972168, 1.7060547, -0.38916016, -0.035858154, 0.052978516, 2.1972656, 0.36767578, 2.7128906, -0.3972168, 0.95654297, -0.5019531, 1.8164062, -0.90771484, 0.13427734, -1.2802734, 1.6552734, 0.69921875, 2.2578125, -1.0791016, 2.0273438, -0.97021484, -1.0839844, 1.1289062, -2.3359375, -2.5136719, 1.4482422, 0.29614258, -0.9633789, -0.83496094, 1.6835938, 1.8115234, -0.6459961, 0.053649902, -1.4306641, -0.22399902, 1.9960938, 0.38989258, -0.18554688, -0.85302734, 1.9765625, -1.8740234, -0.5439453, -0.13586426, 0.8095703, 0.37963867, -2.7011719, 1.0185547, 1.8701172, -0.26708984, 1.6044922, 0.72802734, -1.5898438, 1.6357422, -1.4130859, -2.0800781, -0.16394043, -0.86816406, 0.24365234, -0.8618164, -1.3867188, -1.5419922, 1.2236328, 1.2060547, 0.63964844, -0.9633789, -0.20703125, -2.3515625, -1.3818359, 0.005935669, -1.8339844, -2.6367188, 1.7539062, 0.39453125, 0.19921875, 0.23120117, 4.4335938, -0.6899414, -1.7617188, 1.9697266, -0.86572266, 0.3713379, -2.2421875, -4.28125, 1.9365234, -0.14929199, -1.5839844, 1.9208984, 1.171875, -0.42236328, 2.7597656, 1.8457031, -2.4472656, -2.0859375, -0.5449219, -1.4550781, -0.7573242, -3.4472656, 1.7617188, 0.4338379, -1.2519531, -2.4726562, -0.6850586, -1.0703125, 0.9140625, 1.3105469, -3.0273438, 0.27539062, 1.2392578, 0.9941406, -0.0960083, -1.5869141, 0.6870117, 0.47583008, -0.29101562, -2.3945312, 2.0644531, -0.14929199, 0.5175781, 0.6796875, 2.1425781, 0.5878906, 0.07147217, -0.61328125, 0.99316406, 3.2695312, 0.30615234, -2.0273438, -3.1933594, -0.44213867, -1.1591797, -0.85595703, 0.3334961, -1.2216797, -1.3046875, -0.25732422, -0.84277344, 1.8085938, 2.390625, 0.65185547, -0.8769531, -0.87158203, 0.5205078, -0.6245117, -1.1611328, 0.13415527, 0.0345459, 0.53466797, 0.5048828, -4.2695312, 2.0097656, -1.4033203, -0.52734375, -2.9433594, 1.7832031, -0.99560547, 2.7714844, 2.7714844, -1.7851562, -0.5053711, -0.4975586, -0.18225098, -0.94091797, 1.7099609, -0.30297852, -0.7626953, 1.2880859, 0.41967773, -0.9926758, -0.11553955, 0.2076416, -1.4316406, -1.9912109, -0.42919922, -0.07598877, -3.1367188, -2.3808594, 1.4355469, -0.51708984, 2.5, -1.8095703, 0.9140625, 0.8696289, 0.59375, 1.03125, 0.04776001, 1.0449219, 0.31396484, -0.46264648, 0.59277344, 0.83496094, -1.1699219, -0.24609375, -1.9003906, -0.9194336, -0.54833984, 0.110961914, 1.3701172, 0.15820312, -0.8154297, 0.29418945, 3.1015625, 2.4628906, -1.8798828, 2.7226562, 2.0039062, -3.703125, 0.95751953, 1.1503906, -4.7734375, -1.4658203, -0.20007324, 1.0175781, 1.1787109, 1.2851562, -3.4160156, -1.921875, 3.6308594, 0.20385742, 1.0146484, -0.7680664, 0.111206055, 1.3642578, -2.7910156, -0.4128418, -2.5683594, -0.2980957, -0.40893555, -1.5566406, 0.66015625, -0.57177734, 2.4433594, 1.7539062, -1.375, -1.9208984, 0.8496094, -0.7548828, -1.0244141, -0.17956543, -1.5068359, -1.7792969, -0.4345703, 2.203125, 0.5859375, 2.2285156, 0.47143555, 2.3496094, -1.6259766, 3.1269531, -0.3786621, 2.9511719, -0.296875, -0.1875, 3.6191406, -2.0371094, 0.6621094, -2.1171875, -0.98339844, 1.1513672, 2.265625, -0.39794922, -0.7919922, -1.015625, 0.8017578, -0.87158203, -1.5615234, -2.4082031, 0.08496094, 1.9462891, 1.0947266, 0.9423828, 1.2695312, 0.9628906, -1.7890625, 1.6318359, -2.15625, -0.45263672, -0.8076172, 0.22753906, 0.70996094, -0.32861328, 1.0839844, -0.34350586, 0.64160156, 1.2255859, 0.90185547, -2.5273438, -1.2119141, 1.8310547, -2.2558594, 0.17236328, -1.2597656, -0.3779297, 0.5571289, 0.85839844, 1.0136719, -1.3330078, 0.42285156, -0.69677734, -0.7241211, 1.578125, -1.1230469, 0.84033203, 1.7363281, -2.0078125, 0.78808594, 1.0634766, 0.48632812, 1.3847656, 0.7558594, 1.3144531, 1.0205078, -0.11627197, -1.5595703, -0.74902344, 0.6459961, 2.0390625, -0.4724121, -1.4238281, 0.5053711, -2.828125, -1.078125, 0.1348877, -2.7988281, 1.4003906, -0.7470703, 0.9658203, 0.3022461, 0.5727539, -0.03503418, -0.06359863, 0.53564453, -0.54003906, 0.796875, 0.18078613, 3.8535156, 1.3681641, -0.94970703, -1.9892578, -0.5776367, -1.1533203, 2.0957031, 1.4667969, -0.29418945, 0.9169922, -2.4160156, 0.89990234, -0.76708984, 2, -2.1503906, -0.4260254, 0.6459961, 1.0205078, 4.2734375, 1.2744141, -0.3161621, -0.20373535, 0.0045814514, -2.8476562, 2.1601562, 0.16394043, -5.2539062, -0.42797852, -3.0585938, -0.85546875, -1.2011719, -0.31347656, 0.18054199, -2.46875, -1.5791016, -0.609375, -2.3164062, -2.7226562, 0.83935547, -0.15393066, -2.2285156, 0.4921875, 1.6142578, -2.0410156, 3.6113281, 0.9501953, 0.8203125, -1.265625, -0.36621094, -1.4052734, -2.3300781, -0.38012695, -3.1679688, -0.84716797, -0.55078125, 0.95947266, 0.4802246, -0.29956055, -0.65478516, 2.90625, 2.5, 1.5292969, 0.9423828, 1.2910156, 2.9570312, 1.4960938, 3.7929688, 0.15319824, -1.3740234, -0.6972656, 1.9794922, 0.515625, 0.9980469, -1.9951172, 0.90234375, -3.109375, -0.3334961, -0.43237305, -0.72753906, 1.2460938, -1.2402344, 1.0957031, -0.59033203, 0.9370117, -0.28710938, 0.43725586, -1.75, 0.6274414, -0.43017578, 0.34033203, 3.2734375, 0.1038208, 1.0419922, -2.1445312, 1.953125, 3.9238281, -3.28125, -1.0439453, 0.83447266, -0.18457031, -1.3095703, 0.1875, 1.2705078, 1.3740234, 1.7402344, -0.86328125, 1.5039062, 1.1210938, -0.3737793, -0.45776367, 0.89990234, 0.069885254, 2.0917969, 0.61279297, -1.1953125, 1.1435547, -1.2587891, -2.484375, -1.5703125, 2.7207031, 0.1776123, 3.3339844, 0.6767578, -2.5703125, 3.3867188, 0.057800293, 1.3164062, -2.1132812, 0.88916016, 0.8496094, -0.41088867, -1.3730469, 0.21569824, -0.04434204, 1.6611328, 1.1064453, -1.8935547, 0.8774414, 0.6772461, 2.0664062, 1.0048828, 2.4550781, -0.43579102, 2.0917969, 0.17175293, 2.0917969, -0.12322998, 0.18774414, -1.2548828, 1.5556641, 0.5883789, 1.2275391, 1.3691406, -1.7490234, 0.3251953, 2.3339844, 1.3486328, 1.5097656, -2.328125, -0.68847656, 0.32470703, 1.0703125, -0.52783203, -1.5107422, 2.4355469, 0.8466797, -2.6894531, 0.4560547, -0.17736816, -1.3896484, 2.078125, 0.9526367, -1.4267578, -2.015625, -1.6005859, -0.23181152, -0.1673584, -3.59375, -0.032409668, 0.60791016, -0.47729492, -0.33618164, -0.035614014, -0.51953125, -0.42407227, -0.6152344, 0.95458984, -0.21386719, -0.60546875, -0.01689148, -1.0566406, -1.6953125, 3.140625, 1.1308594, 0.080322266, -3.0195312, -0.34399414, -0.31298828, -1.0009766, -1.7832031, 0.15148926, 2.3671875, 1.7783203, 1.4550781, 0.40283203, -2.1660156, 0.061584473, -0.6113281, 1.5595703, 0.92041016, -2.40625, 0.78564453, -1.2861328, 3.2890625, -1.6591797, -1.5830078, 0.4765625, -1.5361328, 0.33374023, -0.61279297, 0.8857422, -0.2680664, 1.3837891, 0.6308594, 2.9863281, 2.0722656, 0.4621582, -1.40625, 0.9555664, 0.13793945, -2.5507812, -0.35131836, -0.44921875, 0.14172363, 1.2841797, 0.0048217773, 2.34375, 0.44506836, 0.20056152, -0.42578125, -0.78759766]}, "B096N8WRF6": {"id": "B096N8WRF6", "original": "Brand: Taslett\nName: Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case\nDescription: \nFeatures: Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up.\nTabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks.\nExtra Storage: Handy side pocket for your wand lighter or other BBQ accessories.\nPerfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25\u201d.\nStorage Case included.\n", "embedding": [0.5488281, 3.5859375, 2.9609375, -1.0214844, -0.66503906, -1.5166016, -0.43359375, -0.8466797, 1.2626953, 3.3730469, 0.6269531, 1.5800781, 0.8305664, -3.96875, 1.7978516, 0.328125, 0.8876953, 1.7148438, 2.9238281, 0.78808594, 2.1054688, 0.81640625, -0.46362305, 0.50683594, 0.62597656, -1.3730469, 2.6289062, -1.4873047, -1.5712891, -1.1240234, 0.91308594, -0.22680664, 0.12097168, 2.8046875, 0.3942871, -2.5039062, -0.9033203, -0.5527344, -2.4863281, -0.5571289, -1.9814453, -1.0332031, 2.4394531, 1.1738281, -1.3935547, 0.37426758, -2.09375, -0.081970215, -0.115478516, -0.9428711, 0.06890869, 2.0039062, 1.2285156, 0.87597656, -0.14025879, -0.82177734, 0.57666016, -2.3789062, -0.3540039, 1.0214844, 1.3125, -2.4042969, -1.1025391, 1.9287109, 0.6879883, -0.47973633, 0.22839355, -1.765625, 0.16625977, 1.03125, 1.9648438, 0.12512207, 2.8457031, -1.0117188, -0.70166016, -0.9238281, -2.1113281, 2.765625, 1.1142578, -0.69384766, 1.3496094, 3.6894531, -0.63427734, -0.703125, -0.69628906, -0.9003906, -0.17126465, -0.72216797, -0.46606445, 0.6191406, -1.6376953, 2.6992188, -2.4121094, -4.3085938, 0.51708984, -1.7353516, 2.9296875, 1.6269531, 2.53125, 0.5415039, 1.9941406, 0.77734375, -1.1210938, 0.75097656, -1.4619141, -1.3164062, -0.20385742, -0.57177734, 0.33544922, -0.9946289, -0.5942383, 0.2590332, 1.2646484, -1.1191406, -0.1772461, -0.37451172, 0.109069824, -0.6196289, 2.9667969, 4.2421875, 3.6328125, -1.1806641, 0.31933594, -1.0820312, 1.2753906, 1.4287109, -0.87646484, 1.1806641, 1.4023438, -1.4814453, 1.0273438, 0.32080078, -0.18078613, -1.0185547, 0.083496094, -0.9921875, -1.0185547, -1.5185547, -2.6347656, -0.28076172, -2.4082031, 0.22583008, 1.4189453, 0.21594238, -1.46875, -0.71484375, -1.4589844, 0.94921875, -0.09106445, -1.5263672, -0.23156738, -1.3632812, 0.16064453, -1.3476562, 1.8144531, -0.011383057, 1.6435547, -2.5683594, 2.3164062, 1.65625, 5.3398438, -2.2246094, -0.8876953, 2.3925781, 1.28125, -4.8867188, 1.6855469, 1.5244141, -1.4501953, 1.1005859, 1.0263672, -1.9521484, -1.2412109, 0.8701172, -0.21362305, -2.09375, 2.3710938, 2.3261719, 0.91064453, -0.42041016, -2.8046875, -1.7314453, -2.5332031, -0.46240234, -0.064331055, 0.84814453, -1.8212891, -2.3046875, -0.8510742, -1.4863281, -0.85595703, 2.4492188, -0.88134766, -1.8447266, -0.48657227, -2.859375, -3.8574219, -1.7441406, 0.640625, 0.6826172, -0.20532227, 0.091796875, -1.5078125, 1.5498047, -2.8125, -0.67822266, 2.3652344, -0.0993042, -0.7060547, 2.3457031, 0.5776367, 0.2763672, 2.2382812, -0.7949219, -0.58203125, -0.96777344, 3.6132812, 0.28125, 2.5585938, 0.875, 0.14794922, -1.1523438, -0.18933105, 4.5390625, 0.72509766, 1.7548828, 1.1835938, 0.97314453, -2.0253906, -0.28271484, 1.4042969, 0.3083496, 0.40478516, 0.003616333, -0.06100464, 2.8945312, -0.56933594, 0.10424805, -0.20788574, 1.9003906, 0.62597656, -0.6279297, -0.53515625, -0.47265625, 0.29541016, 0.69433594, -0.2697754, 1.9111328, 2.8867188, -0.73535156, 1.4863281, -1.0214844, 1.8007812, -1.0888672, -0.61572266, 1.2285156, 0.92333984, 1.8896484, -0.10144043, -2.9960938, 0.087890625, 0.86328125, -1.4833984, 1.4658203, 0.004295349, 0.9033203, 1.4003906, -0.6699219, -1.6425781, 1.3505859, -0.91308594, 1.5771484, -0.44702148, -0.5883789, 1.9697266, 0.11260986, -1.3310547, 2.6601562, -0.7392578, 2.1601562, 0.72509766, -0.59277344, 1.5117188, -2.4882812, -0.47827148, 0.0049057007, 3.3164062, 2.0976562, -1.3408203, -0.30444336, 3.1308594, 0.43896484, -0.28295898, 1.8671875, 1.6806641, -0.7949219, 1.0556641, -0.6699219, -1.2060547, -0.17956543, -0.5678711, -0.9970703, 0.06677246, 1.5908203, 0.5541992, -0.77685547, 0.2006836, -0.6381836, -1.0546875, 0.37719727, 0.36621094, -1.0126953, -0.14099121, 0.57910156, -2.6523438, -1.8339844, 2.6035156, -1.8193359, -1.0830078, 2.4375, 0.33398438, 1.8984375, -1.9414062, -1.1074219, 0.035095215, -0.6010742, -0.9345703, 1.0986328, -0.27392578, 1.3388672, 0.94628906, -2.9335938, 2.4199219, -1.8398438, -1.0332031, -0.3227539, -3.3457031, -2.078125, 0.7324219, -1.0097656, 0.8696289, -0.65722656, -2.5742188, 1.4882812, 0.7270508, -0.58496094, -0.43164062, 2.2949219, -2.3046875, -2.6835938, 1.5273438, 1.1337891, -0.21899414, -2.7167969, 0.10430908, 0.828125, -1.0478516, -0.057617188, -0.5131836, 0.06161499, -0.51416016, 0.75927734, 1.4775391, -1.1269531, -1.2607422, -0.6821289, 1.0117188, -5.1484375, -0.018325806, -1.9365234, 2.4179688, -1.5537109, -1.2167969, -0.19714355, -0.80322266, -0.15759277, -0.88671875, 4.3242188, 0.67333984, 2.4257812, -1.5058594, -0.4465332, -1.0117188, -2.3964844, -1.8544922, -1.0244141, 0.10296631, -1.8037109, -0.85058594, -4.4375, 0.7216797, -2.7421875, -0.94384766, 1.1171875, -0.17004395, -1.0820312, -0.82128906, -1.1679688, -1.421875, -0.48583984, 0.27172852, 0.22155762, -2.0371094, -1.0908203, -0.23815918, -0.5419922, 0.51416016, -0.6665039, 1.6787109, -0.24719238, 2.0839844, 1.0576172, -0.55322266, 1.7148438, 0.6171875, -1.8769531, 0.17895508, 2.5273438, 1.0839844, 0.87402344, -0.86376953, -2.9707031, -1.53125, 0.4975586, 1.8603516, 3.1210938, 0.13964844, 0.8569336, -0.5966797, 0.14819336, -0.69873047, 0.7788086, -0.7089844, 0.5395508, 1.9521484, -2.7441406, 0.16577148, 1.8056641, 2.8398438, -2.5195312, -1.7978516, 0.22790527, -0.6923828, 2.1660156, 0.64697266, -0.092285156, -0.5161133, -0.09313965, 1.5, -0.09539795, 1.859375, -0.7416992, 1.1201172, 1.7265625, 0.5341797, 0.7866211, 1.9023438, 0.48095703, -1.6660156, 2.1289062, 0.86083984, -1.7265625, 1.0732422, -0.20727539, -0.18933105, -1.2841797, 2.734375, -0.31811523, -0.6220703, -0.16662598, -0.28149414, -0.5800781, -1.6201172, 1.6894531, 1.1826172, 0.98828125, 0.07470703, -1.3232422, -1.9980469, 0.70458984, -3.3867188, 2.8789062, -0.11627197, -0.47070312, 1.9667969, -2.9121094, -0.5136719, -0.9975586, 3.0527344, -0.875, -1.0478516, 0.45141602, 1.5712891, -3.1582031, -2.8496094, 0.01852417, -1.4697266, 0.7216797, 3.3535156, -0.2849121, -1.9306641, 0.116882324, -1.7958984, 0.21594238, 2.7871094, -1.6152344, -0.63378906, 1.2333984, 0.24035645, -1.6035156, 0.31640625, -0.02986145, 0.74560547, -3.265625, -0.9067383, -1.2724609, 1.1044922, 0.9057617, 0.2553711, 0.36621094, 0.26733398, -0.32226562, 3.3378906, -0.6816406, 2.2382812, -0.29638672, -0.3046875, 0.7475586, -1.4228516, -0.031433105, -1.4960938, -3.3203125, -0.56933594, 0.032226562, -0.8725586, 4.265625, -1.6865234, 0.23461914, 0.52490234, 0.9116211, -2.8613281, -2.2851562, -1.2285156, 0.9008789, -2.5058594, -0.6743164, 0.61376953, 1.8603516, -1.9082031, -1.3876953, 1.3779297, 0.94873047, 0.19360352, -2.0878906, 0.19458008, 1.1738281, -2.1464844, -0.8457031, -1.9619141, -0.62402344, -1.0361328, 0.77197266, -1.1787109, -1.0595703, 3.5859375, -1.0732422, -1.5947266, 0.77001953, 2.0351562, 0.89160156, -1.1572266, -0.3100586, -0.0007324219, 2.2441406, -0.81396484, -4.0859375, -0.94628906, -2.0390625, 0.9550781, -0.27124023, -1.4941406, 0.6298828, -1.3505859, -0.4099121, 1.9238281, 1.8847656, 1.4443359, 0.9423828, -2.6464844, 2.1269531, 0.60498047, -1.0585938, -2.4472656, -0.42797852, 0.3161621, -0.11975098, -0.9194336, -1.859375, 0.8203125, -1.0966797, -0.5449219, -1.0654297, 2.0664062, 3.3769531, 2.5449219, 1.9394531, -2.1210938, -0.6425781, 1.3427734, 1.9101562, 2.0703125, 0.34887695, 2.2285156, 1.1455078, 3.8984375, 0.5703125, -1.7626953, -0.49926758, -0.033813477, -1.6933594, -0.113220215, 1.1376953, 0.2244873, -1.8974609, -2.1621094, -0.8100586, -2.03125, 3.5703125, -1.1445312, 1.3808594, -0.22583008, -0.5292969, -0.68652344, 2.25, -0.4255371, 1.1601562, 1.1923828, -0.6586914, -0.99365234, 0.9428711, 0.4597168, 0.9794922, 2.1074219, -1.9267578, 0.7006836, 0.9272461, 0.31933594, 0.16430664, -0.8339844, 1.1357422, 2.4238281, -0.27001953, 2.1191406, 1.3779297, -0.7661133, 0.29516602, 0.3630371, -0.39819336, -0.29223633, -1.1162109, 0.98876953, 2.796875, -2.2050781, -2.3710938, -0.19665527, 0.025299072, -1.7900391, 0.17041016, 0.17419434, -1.4746094, 0.33520508, -2.3398438, -2.9101562, 0.5449219, -1.4960938, -0.6220703, -2.3203125, 1.9130859, 1.5878906, 0.032928467, 2.9648438, -0.6533203, -1.8574219, 1.0400391, 1.0019531, 0.2331543, -0.61083984, -0.050323486, -2.9765625, 1.4628906, -1.3642578, -1.2460938, -0.66796875, 0.44213867, 2.1308594, -2.59375, 0.13671875, -0.6040039, 1.4443359, -3.3710938, 0.030212402, 2.7050781, -0.7636719, 0.25097656, -0.8696289, -1.4003906, -1.9023438, 1.1103516, 1.7783203, 0.3930664, -0.72265625, 0.38330078, -4.2265625, -4.3320312, -1.6171875, 0.43286133, -0.17053223, 0.3955078, -1.2021484, -2.3046875, -0.022155762, -1.2861328, 2.0410156, -2.1953125, 1.0712891, 0.5048828, -1.5126953, -0.53808594, -0.31762695, 1.4101562, 2.2792969, 0.5878906, 0.24304199, -1.6064453, -1.8017578, -2.0214844, -0.16210938, -0.9946289, 0.18188477, -0.58251953, 0.039215088, 1.2519531, 0.92626953, 0.5283203, -1.5380859, 0.70996094, -1.0625, -0.70166016, 2.3125, -2.0683594, -0.059570312, 0.6196289, -1.9365234, 1.6835938, 0.43701172, 0.8466797, -2.1679688, 1.1777344, -1.5390625, 1.3515625, 0.8925781, 0.8076172, 1.9892578, 1.5351562, 1.1230469, 3.1816406, 0.20251465, -1.7138672, -2.1445312, -1.7705078, -2.0214844, -1.8730469, -0.7792969, -0.87109375, -0.31103516, 0.84716797, 0.30639648, 0.44970703, 1.890625, 0.28271484, -2.0957031, 2.6132812, -1.7275391, 1.6982422, 1.0205078, -0.82666016, -2.8671875, -3.6035156, 3.8515625, 0.9116211, -1.1894531, 1.4101562, 0.625, -1.1591797, 1.6308594, -0.7480469, 1.3271484, 1.8115234, 2.3085938, -1.4599609, 0.14196777, 1.2099609, -1.0322266, -0.0736084, 0.5761719, 0.828125, 0.5698242, 1.3544922, 0.21643066, -3.0117188, -1.5332031, 1.109375, 0.97216797, -0.17565918, -0.30200195, 0.36816406, -3.3730469, 0.2578125, -0.5307617, -1.1357422, -2.984375, 2.5175781, 1.5917969, 0.49121094, 0.7504883, 2.1875, -1.0292969, 0.5366211, 1.3222656, -1.4248047, -0.9399414, -0.30932617, -0.9707031, 0.50439453, 1.2617188, -1.7148438, 2.2949219, 1.6279297, 0.81152344, -1.9824219, 1.7978516, 0.48168945, 0.74316406, -0.02029419, 3.7148438, 3.296875, 1.0625, 1.9433594, -0.91308594, 1.5976562, 1.9599609, -0.53808594, 1.09375, 1.9082031, 2.2070312, 1.1308594, -0.51660156, 0.17285156, 0.3503418, -1.1123047, -1.9667969, 1.7978516, -0.6220703, -1.6630859, 1.9130859, -0.71240234, -0.72216797, 1.1123047, -0.765625, -1.9023438, -2.0214844, -0.110961914, 0.1829834, 2.0136719, -0.74609375, 1.0996094, 1.3671875, -1.4599609, 0.9477539, -0.6274414, 1.1992188, -1.8339844, -1.7958984, -1.5410156, 1.9394531, 1.859375, 1.7138672, -1.2529297, -0.5839844, 1.3349609, 1.2558594, 1.7294922, 0.15441895, 2.4296875, -0.16699219, 0.14257812, 1.9853516, -1.3476562, -0.9921875, 1.2470703, 1.5224609, -3.734375, -0.109680176, -0.2775879, 1.4296875, -1.5214844, -2.8964844, -1.3623047, -1.1855469, 0.0597229, -3.6328125, -1.7011719, 0.6123047, -3.2304688, -0.2697754, 1.3457031, -1.3720703, 3.5722656, 0.070373535, 0.9707031, 2.5742188, 1.2421875, 1.3916016, 0.38061523, -0.92089844, -0.921875, 0.11578369, -0.027114868, 1.1123047, 1.7578125, -2.6425781, -1.1582031, 3.0097656, 1.0732422, 0.5175781, 0.7895508, -0.27368164, 2.0742188, 0.52197266, -1.0908203, 0.26342773, -0.59472656, 1.0908203, -0.3701172, 1.5019531, 0.7084961, -1.5351562, -0.97314453, 2.2382812, -3.96875, 0.42456055, 0.24560547, -0.8623047, 1.3808594, 0.9707031, 0.23242188, 1.2753906, -0.2631836, 2.0878906, -2.4121094, -0.31396484, -2.6210938, 0.6386719, -0.3840332, -1.7880859, -0.7939453, 1.1933594, -2.0371094, 0.53125, 2.2382812, 0.71728516, 0.6386719, -0.025222778, -1.28125, 0.13391113, 0.5986328, -0.81884766, 0.44580078, -0.63378906, -1.2734375, -0.15649414, 0.5966797, 0.08050537, 1.3857422, 3.5664062, 1.2919922, 1.1806641, 0.33520508, -2.0371094, 1.7197266, -1.0263672, 1.6396484, 0.32104492, -0.43237305, 0.7338867, -0.025909424, 3.0878906, -1.0703125, -1.6601562, -0.74902344, -0.7675781, 0.9160156, -0.8276367, 1.4189453, 1.3632812, -0.12097168, 0.7944336, 3.4082031, 2.6367188, -2.1503906, 1.6933594, 3.4492188, -2.0820312, -3.1230469, -0.97998047, -1.2197266, 0.0038452148, 0.98828125, 1.2285156, 2.0859375, 0.5546875, 0.17810059, -2.3359375, 0.25732422]}, "B00OMYK83O": {"id": "B00OMYK83O", "original": "Brand: Camco\nName: Camco 40572 Black Heavy-Duty Double Propane Tank Cover\nDescription: \nFeatures: Removable top panel provides easy access to gas valves\nHeavy-duty polypropylene\nFor two 20 pounds propane tanks\nEasy to install and highly durable\nProtect your propane bottles from flying debris\n", "embedding": [0.1817627, 0.86572266, 2.859375, -1.1171875, -0.97216797, -2.7070312, 0.7841797, -0.4489746, 1.8359375, 2.3203125, 0.46118164, 0.36010742, 0.9794922, -2.9433594, 1.609375, -0.83447266, 0.36132812, 1.6416016, 2.8554688, 0.7739258, 2.4023438, 0.04626465, -0.48046875, -0.609375, 0.59716797, -0.19641113, 2.9121094, -1.6806641, -1.7939453, 0.57958984, 0.7944336, 0.37548828, -0.061431885, 2.3613281, 0.9003906, -0.86572266, -0.009864807, 0.1772461, -3.8789062, 0.21264648, -3.7675781, -0.46069336, 3.0664062, 0.58691406, -0.26416016, -0.27807617, -0.30615234, -1.9765625, 0.5722656, -1.9345703, -0.29785156, 1.8144531, 1.5527344, 1.3535156, -1.4716797, 0.6044922, 0.14318848, -0.7841797, 0.2944336, 1.0107422, -1.3652344, 0.17651367, -2.7460938, 2.4082031, -1.0976562, 1.6904297, -1.6845703, -1.1396484, 0.53125, 2.0800781, 0.8911133, 2.1914062, 0.7080078, -1.4570312, 1, -0.42211914, -1.3320312, 1.2177734, -0.08453369, -1.4160156, -0.34765625, 2.5136719, -1.15625, -3.2324219, -1.6601562, -1.5712891, 0.24182129, 1.015625, 0.1295166, 0.3010254, -1.1738281, 1.1533203, -3.0195312, -3.2558594, -1.2783203, 0.99902344, 1.3222656, 1.3847656, 2.8378906, 2.5097656, -0.5708008, -0.28930664, -1.1630859, 1.5527344, -2.7304688, -2.0546875, 1.6738281, -1.6132812, -1.8447266, 1.1328125, -0.12683105, -0.5488281, 0.46411133, -1.2275391, 0.025543213, 1.3691406, -0.13171387, 1.1679688, 1.8105469, 0.52001953, 3.8242188, -1.6542969, 0.9140625, -1.2060547, 1.6708984, 1.9023438, -0.35253906, 1.2890625, 3.4472656, -0.1628418, 1.8476562, -0.3864746, 1.0283203, -0.017532349, 0.7626953, -0.48364258, -1.5595703, -1.1542969, -1.921875, 1.2763672, -3.3945312, -0.23205566, 0.55078125, 0.32763672, -3.5136719, -1.1279297, -1.765625, 2.4707031, -1.3134766, -3.1679688, -0.019760132, -3.5, 0.46020508, -0.4399414, 1.5683594, 0.7363281, -0.4519043, -3.5839844, 1.296875, 2.0546875, 3.5097656, -0.8105469, 0.6201172, 1.3417969, 0.6875, -1.8144531, -0.022705078, -0.83203125, -1.8476562, 2.0859375, -0.32006836, -1.9306641, 0.36767578, -0.07269287, -1.4960938, -0.5073242, 2.0898438, 1.4423828, 1.171875, -0.3310547, -3.3769531, -0.32910156, -0.35229492, -0.42333984, 0.5996094, -0.8833008, -1.1572266, -1.0195312, 0.07086182, 0.32299805, -1.9902344, 1.0722656, -1.2207031, -0.61376953, -0.6826172, -3.4902344, -2.2011719, -1.4384766, 0.5830078, 1.6855469, -1.1054688, -0.59033203, -0.73535156, 0.9238281, -2.7617188, -1.2919922, 2.40625, 1.7753906, 2.0566406, 0.37426758, 0.9628906, -0.78271484, 2.28125, -1.3837891, -2.0625, -1.234375, -0.07763672, 0.82666016, 1.6035156, 0.97314453, 1.2119141, 0.11804199, 1.1796875, 0.92822266, 0.49780273, 3.0898438, 1.1630859, 1.2548828, -1.4980469, -1.3818359, -0.022735596, 1.7412109, -2.9023438, -0.06628418, -0.7373047, 1.7021484, -0.09967041, -1.2773438, 0.35375977, -1.0488281, 1.1767578, 0.05859375, -0.97558594, -0.9580078, 1.8027344, 2.6347656, -1.046875, 1.9785156, 1.3398438, -0.5854492, 0.7685547, -0.06286621, 0.115478516, -0.5205078, -1.0097656, 2.65625, 1.3535156, -0.1126709, 0.07885742, -3.4433594, 0.46484375, 0.70654297, -1.0869141, 0.6665039, -0.24743652, 1.4335938, 0.3474121, -0.8330078, -2.09375, 0.73583984, 0.8666992, 0.80566406, 0.42138672, -0.75146484, 2.7167969, 1.6699219, -0.65966797, 1.7851562, 0.60498047, 2.5175781, 0.7734375, -0.19018555, 0.7578125, -2.7558594, 1.5683594, -0.078125, 2.90625, -0.012802124, -2.8496094, 0.85791016, 1.9833984, -0.43408203, -0.7128906, 2.0058594, 3.2910156, 1.1425781, 2.9941406, 0.69433594, -1.203125, 0.93603516, -1.2636719, 0.46533203, -0.6767578, 1.0283203, -0.9140625, -1.0019531, -0.62060547, -0.35473633, 1.5244141, 0.9399414, 1.5068359, -0.36206055, -1.2832031, -0.2578125, -0.7734375, -1.2109375, 4.1601562, -1.9970703, -0.019195557, 1.6816406, 0.84228516, 1.8798828, 0.2409668, -2.0390625, 1.9492188, -0.03817749, -2.21875, 1.296875, 1.0117188, -0.048828125, 0.46801758, -1.6699219, 1.3466797, -0.55908203, 0.6923828, 0.7060547, -2.1679688, -1.03125, 1.6308594, -1.0839844, 1.0566406, -1.6308594, -1.6777344, 2.6601562, 1.6054688, -0.4975586, -0.20141602, 2.4316406, -0.57421875, -2.484375, -0.09539795, 2.0292969, -1.1484375, -4.0820312, 0.6904297, -0.1373291, -1.4609375, 2.3769531, -1.2109375, -0.041748047, 0.26489258, 1.6455078, 1.921875, -1.0712891, -1.6035156, 0.32373047, 0.78759766, -3.6796875, 1.9277344, -2.2382812, 0.4663086, -2.1464844, 0.90625, -1.4423828, -2.0195312, 1.6416016, -1.5869141, 3.53125, 1.3339844, 1.3056641, -0.04248047, -2.6640625, -0.27734375, -2.0175781, -2.2695312, 0.116882324, 1.25, -1.5048828, -0.06970215, -4.375, -0.6660156, -1.8105469, 0.5546875, -0.6201172, -2.1074219, -1.4257812, -0.6796875, -0.87939453, 0.08178711, -0.077941895, 2.0175781, -0.45996094, -1.828125, -0.5361328, 0.33154297, -0.9458008, -1.4150391, -1.9902344, 0.8623047, -0.97021484, 0.16748047, 0.70166016, -0.9013672, 2.6113281, -1.5605469, -3.4101562, 0.74316406, 3.3496094, 1.5644531, 1.5351562, -1.4150391, -1.7958984, -2.1152344, 0.05569458, 3.1835938, 2.8496094, 1.5087891, 2.4375, 0.75390625, 1.5400391, -1.1777344, 0.8330078, -0.057800293, 0.8129883, 2.9824219, -1.1621094, -0.14416504, 1.7773438, 3.1289062, -3.2011719, -1.15625, 0.8510742, -1.3525391, 2.8632812, 2.171875, -2.7773438, -0.31640625, 1.1298828, 1.9970703, -0.52441406, 1.7021484, 0.65283203, 0.8222656, 2.3535156, -0.06439209, 0.3942871, 1.3007812, 0.31469727, -1.4013672, 0.30688477, 1.2783203, -1.1835938, -0.13891602, 1.1152344, -1.4111328, -0.12487793, 2.4628906, -0.76171875, 2.6523438, 2.3925781, -1.3115234, -1.2109375, -2.7910156, 0.9746094, -0.06298828, 0.87646484, -0.1887207, -0.3383789, -1.6103516, 0.19238281, -1.6992188, 2.5195312, -0.44970703, -1.4677734, 0.63916016, -2.7910156, -1.046875, -2.1191406, 3.2207031, -0.79589844, 0.35107422, -0.56103516, 2.09375, -0.23144531, -2.6855469, -0.81933594, -0.27856445, -2.875, 3.3730469, 3.8515625, -2.4804688, -0.47680664, -1.7382812, 2.0839844, 1.3212891, -1.2890625, -0.9326172, -2.2578125, 1.7568359, -2.296875, -0.8701172, 0.4975586, 1.5009766, -2.8808594, 0.047912598, -1.0224609, 1.5166016, 1.203125, -0.9838867, -0.31469727, 0.7861328, -2.9824219, 1.0507812, -0.011680603, 1.8984375, 0.050933838, 1.8310547, 0.45239258, -0.61279297, 0.8076172, 0.37963867, -2.5117188, -0.5253906, 1.2617188, -0.18164062, 3.8417969, 0.090148926, 2.203125, 1.5234375, -0.34326172, -3.8183594, -1.3525391, -2.0292969, 0.51171875, -2.3828125, -1.9033203, 0.62646484, 0.8286133, -2.2304688, -1.6845703, -0.19177246, -2.4570312, -0.90966797, -0.6640625, 0.39941406, 1.1347656, 0.1484375, 0.37060547, 0.7446289, 0.3022461, 0.37670898, -0.7211914, -1.3388672, -2.1855469, 1.8632812, 0.6484375, 0.24414062, 0.2758789, 2.1542969, 2.34375, -1.1035156, -0.2836914, -1.4707031, 0.51416016, -1.1308594, -3.2304688, -0.17541504, -1.015625, 1.8701172, -1.0439453, 0.0836792, 1.2939453, 1.9560547, 0.23205566, 0.33691406, 1.0917969, 1.6376953, -2.8613281, -1.6601562, 2.46875, -0.67333984, 0.13342285, 0.56689453, -0.46826172, 1.3671875, -0.6826172, -1.4619141, -2.7753906, 0.6611328, 1.5996094, 1.75, -4.8671875, 1.2783203, 2.1992188, 3.1308594, 1.40625, -0.7626953, -1.9355469, 1.2617188, 2.0429688, 1.5644531, -1.8408203, 0.3881836, -0.22302246, -0.6713867, 0.32592773, -1.9560547, -1.2216797, -0.041900635, -1.9794922, 0.3852539, -0.57958984, 0.6791992, -1.6972656, 0.21057129, 0.043304443, -0.6899414, 3.3105469, -2.2929688, 0.9511719, -0.68115234, -1.5996094, -1.1972656, 2.46875, 0.7504883, -0.01058197, 1.953125, -2.0859375, -1.3271484, 0.37573242, 1.6601562, 0.81689453, 0.9638672, -0.3618164, -1.9912109, 0.8574219, 1.0029297, -0.105651855, -1.4052734, 2.1582031, 3.1132812, 1.0332031, 0.31323242, 2.5742188, 0.17602539, 1.8027344, 0.90283203, -0.9511719, -1.6025391, 0.50927734, 1.0654297, 2.8535156, -1.4150391, -4.21875, 1.4208984, 0.80126953, -0.0053100586, 1.75, 0.32226562, -0.7421875, -1.4726562, -3.6523438, -1.3867188, -0.6142578, 1.8261719, -0.31103516, -0.08850098, 1.1054688, -0.38916016, 0.08544922, 3.4179688, 0.7910156, -1.0537109, 0.1340332, 1.2021484, -1.2871094, -3.1289062, -2.0136719, -4.1523438, -0.22766113, 0.22631836, 1.3125, -1.1220703, 1.7177734, 2.7773438, -2.359375, -0.74658203, -0.90966797, -0.203125, -2.2871094, -0.7055664, 2.4042969, -0.29223633, -0.8330078, 0.25268555, 0.9316406, 0.8666992, 1.9980469, 1.7080078, -0.7597656, -0.7817383, 0.14111328, -3.0566406, -4.65625, -0.72802734, 1.4277344, -0.41333008, 0.13671875, -1.6748047, -2.0058594, 1.5302734, -2.1347656, 0.41333008, -2.4472656, 0.34423828, -1.4277344, -1.2617188, -0.38330078, -0.1685791, -0.6328125, 0.78515625, -1.1132812, -0.6660156, -1.5166016, -3.5332031, -3.4160156, 2.0214844, -1.1826172, -0.4501953, 0.26049805, -0.8798828, 1.5527344, 1.1640625, 0.9423828, -1.421875, 1.4697266, -1.7783203, 0.3334961, 1.8447266, 0.7211914, -1.4941406, 3.8554688, 0.4333496, 1.6132812, 2.3964844, 1.1660156, -2.7988281, 1.4248047, 0.8076172, 0.19213867, 0.25073242, 1.3535156, 1.5947266, 0.75683594, 2.8457031, 1.6298828, -1.0361328, -1.8447266, -1.3916016, -0.8979492, -1.2666016, -1.7294922, -0.73095703, -0.048339844, 2.0527344, 2.40625, 0.9663086, 0.67089844, -0.22766113, 1.1552734, -2.3300781, 0.4362793, -2.0976562, 0.32910156, 0.12634277, -1.4785156, -2.9785156, -2.1816406, 2.8574219, -0.24475098, 0.19262695, 0.45996094, 0.80126953, -1.0908203, 1.9560547, 0.43798828, 0.5732422, 0.09277344, 1.5771484, -1.2382812, 1.2607422, 3.4277344, -0.3696289, -0.65771484, -0.59472656, -0.453125, -0.8515625, -0.2208252, 3.1445312, -3.4335938, -0.35180664, 0.3178711, -0.07110596, -0.29833984, -0.5493164, 0.8642578, -2.03125, -0.4111328, -1.7041016, -1.2324219, -3.8886719, 2.4570312, -0.3935547, -0.3552246, 0.40039062, 0.69189453, -2.1191406, -0.040161133, 2.5820312, -0.1394043, -0.6513672, -0.97558594, -0.96191406, -0.44604492, 2.1796875, -3.8105469, 0.6035156, -2.0976562, -0.30395508, -0.32226562, 0.33813477, -0.18981934, 0.63134766, 3.0546875, 1.890625, 3.8183594, 0.19165039, 2.9980469, 0.90185547, 0.8666992, 2.53125, -1.0527344, -0.4099121, 0.2824707, 1.0117188, 2.8007812, -1.5341797, 0.19885254, 0.8198242, -0.71875, -1.3964844, 0.074157715, 1.0263672, -3.0996094, -1.4619141, 0.09051514, -0.7236328, 1.8818359, 1.7705078, -1.6416016, -2.4589844, -0.054260254, -1.7890625, 2.1367188, -0.82373047, -0.014595032, 0.59228516, 0.60253906, 2.015625, -0.2590332, 0.050109863, -2.84375, -1.0205078, 0.14807129, 0.64160156, 0.04006958, 1.0527344, -0.021972656, -0.0031471252, -0.14001465, 1.2646484, -0.22229004, -1.5322266, 1.6396484, -1.6835938, 2.0957031, 2.2539062, -0.5600586, 0.93896484, 1.0048828, 0.09490967, -3.5097656, -0.5595703, 0.41357422, 0.61083984, 0.45776367, -3.0898438, 0.20349121, -0.4272461, 1.6005859, -2.9609375, 0.46362305, -0.28173828, -4.3789062, 1.1855469, 1.1035156, -0.8203125, 4.5195312, 1.109375, -0.33398438, 0.49609375, 0.23144531, 1.0888672, 0.5234375, 0.026550293, 0.3173828, 0.20507812, -0.6660156, 2.6054688, 2.15625, 0.35351562, 0.030090332, 2.6757812, 0.7988281, 0.48950195, 0.8955078, -1.6035156, 3.2949219, 0.96728516, -0.08532715, 0.19885254, -2.6367188, 1.6533203, -0.41064453, 0.8725586, 1.0683594, -0.118652344, -0.48364258, 2.0625, -3.3574219, -0.51220703, 0.37963867, -0.6958008, 1.0263672, -0.04031372, -1.0537109, -1.6601562, -0.14428711, 1.0595703, -2.3847656, 0.9038086, -1.2695312, 1.5400391, 0.3947754, -1.9628906, -1.4941406, 0.99560547, -1.0458984, -0.8300781, 0.71728516, -0.81152344, -0.77783203, -0.81689453, -0.16625977, 1.1884766, 0.2208252, 0.14807129, -0.44604492, -0.57177734, -0.25073242, 1.7519531, 1.3525391, 0.24938965, -0.034851074, 1.0224609, 1.296875, 0.63134766, 0.6430664, -2.2441406, -0.3618164, -4.2382812, 2.875, 1.4648438, -1.1455078, 0.75146484, 2.5410156, 3.0410156, -2.4882812, -1.359375, -0.03213501, -0.38598633, 1.2207031, -1.8847656, 0.30908203, 0.16809082, -1.2705078, 1.3789062, 3.7089844, 2.8554688, -0.703125, 0.22314453, 1.4941406, -3.1074219, -1.7871094, -1.359375, -0.8925781, -2.2089844, 0.4819336, 2.5195312, 3.9394531, 0.9746094, -1.1279297, -3.4804688, -0.45483398]}, "B07HCVSGFL": {"id": "B07HCVSGFL", "original": "Brand: GasOne\nName: GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC\nDescription: \nFeatures: \u2713 rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather\n\u2713 propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\n\u2713 Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\n\u2713 individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\n\u2713 high quality Regulator - the double burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "embedding": [-1.4404297, 1.4082031, 2.6875, -0.18664551, 0.19921875, 2.1523438, 0.7949219, -1.9541016, -0.28833008, 1.9365234, 0.6743164, 0.3178711, -0.75, -2.9511719, 1.3408203, 0.6381836, 0.65527344, 0.45214844, 1.5908203, 1.5878906, 2.515625, -0.27807617, 2.2910156, -0.42456055, -1.390625, 1.1025391, 4, -3.6875, -2.8066406, -2.0664062, 1.8554688, 0.5722656, -0.38354492, 2.3183594, -4.1835938, -0.6767578, -0.640625, 0.7832031, -3.1269531, -0.29711914, 0.0006866455, -0.8208008, 2.6152344, 0.77734375, -1.046875, 0.36914062, -0.15270996, -1.5019531, -1.1953125, 0.2524414, 0.6777344, 1.828125, -0.6225586, 0.9560547, -0.81933594, 2.7109375, 0.38427734, -2.4667969, 0.78027344, 1.0058594, 2, 0.57666016, -1.5791016, 1.3466797, -2.8046875, -0.36547852, -0.37304688, 0.22851562, -1.9853516, 0.58203125, 2.0625, 0.078125, -1.1445312, 0.4963379, 1.2441406, -1.0449219, -3.8261719, 3.2050781, 2.0351562, -1.4521484, -0.8666992, 3.0507812, 1.0859375, -0.34545898, -0.60791016, 0.19152832, -0.9609375, -0.04458618, 2.1425781, 1.2216797, -0.74316406, 2.7480469, -2.4980469, -3.9257812, 1.4951172, -1.1035156, 1.7783203, 0.29003906, 2.2285156, 0.8803711, 0.2052002, 0.23156738, -2.4511719, 1.4863281, -1.4580078, -1.4306641, 1.9892578, 0.15893555, -1.6923828, 0.1003418, -2.4628906, -0.7998047, 1.0976562, -0.6821289, 1.4951172, 0.55566406, -1.3037109, 2.4863281, 2.9003906, 1.6445312, 2.8925781, -1.1103516, 0.78466797, -1.234375, 1.2304688, 1.8203125, -0.90283203, -0.07867432, 3.6875, -2.0703125, -0.3232422, -2.1582031, 1.5117188, 0.5966797, -0.54248047, 0.044525146, -2.6503906, -2.7832031, -3.2949219, -0.27661133, -2.0859375, 1.2832031, 0.87890625, -1.0615234, -3.6113281, -0.17053223, -1.1894531, 2.2207031, -0.6538086, -2.8242188, 0.81347656, -2.671875, 0.5444336, -2.3554688, 1.3447266, -0.25268555, 0.0077590942, -2.8183594, 3.6289062, 0.8486328, 0.37304688, -2.3789062, -0.09753418, 1.4423828, -0.49267578, -1.7617188, 0.9213867, 1.0253906, -1.5117188, 1.7382812, -1.4189453, -1.4775391, 0.03753662, -0.69189453, -0.0793457, -1.0078125, -1.4072266, 2.7285156, -0.26293945, -0.77441406, -2.5371094, -3.3496094, 0.4387207, 1.2529297, -1.0039062, -1.5664062, -0.021316528, -1.2880859, 0.59033203, -1.6113281, -1.0234375, -0.32104492, 1.0908203, -0.66552734, -0.26391602, -2.3652344, -2.171875, -0.43017578, -0.12451172, 0.8222656, -0.71777344, -1.3603516, 0.12927246, 1.0400391, -2.9648438, -1.8466797, 1.3857422, -0.111328125, 1.1865234, 1.0527344, 0.7270508, -0.78515625, 3.4257812, 0.1583252, -1.1865234, -0.3395996, 1.6923828, 0.65625, 1.6328125, 2.4160156, -0.014305115, -2.1914062, 3.0859375, 2.7871094, -0.6616211, 3.2714844, 1.3769531, -0.86376953, -1.2919922, -2.359375, 0.8623047, 0.8071289, 0.09851074, 0.8774414, -0.33935547, 2.9609375, 1.03125, -1.796875, 0.8666992, -1.0039062, 0.2553711, -2.5625, -2.7382812, 0.18920898, -1.2519531, 3.609375, -1.265625, 0.48461914, 1.7041016, -0.7089844, 0.27856445, -1.109375, 1.1894531, -1.0019531, -1.2099609, -0.30566406, 0.4921875, 0.30908203, -1.0839844, -1.7822266, 1.3007812, 0.3083496, -1.0224609, -0.13000488, -0.009635925, -1.4306641, 2.3652344, 1.3974609, -3.3828125, -0.40625, 1.4775391, 0.77001953, 3.1757812, -0.89208984, 2.1816406, 0.66259766, -0.6875, 3.1230469, -0.013015747, 1.7851562, 0.84716797, -1.0771484, 2.0410156, -1.7675781, 0.77001953, 1.4287109, 3.1054688, 1.0068359, -0.89990234, 0.5410156, 4.375, -0.7314453, -2.4667969, 1.6923828, -1.4658203, -0.55029297, 0.034179688, -0.6616211, 1.4003906, -0.8779297, 1.7324219, -0.8911133, 0.042877197, 0.38378906, -0.0368042, -1.6367188, -0.36206055, -0.89697266, -0.047576904, 0.91552734, 0.4885254, -0.29003906, -1.6591797, 0.81689453, -2.5683594, -0.7895508, 3.2148438, -1.9853516, 0.78466797, 1.4150391, 2.2011719, 3.4121094, 0.5385742, -1.5048828, 1.0732422, -0.39526367, 0.3479004, 0.5004883, -0.4658203, -1.546875, -1.1757812, -2.4980469, 0.86328125, -1.8369141, -1.2060547, -0.96191406, -1.6748047, -2.8378906, 0.09918213, -2.171875, -0.10668945, 0.37695312, -3.2890625, 1.2548828, -0.06542969, -3.2109375, -1.4326172, 0.5854492, -2.4726562, -0.30371094, 1.1435547, 0.43798828, -0.8022461, -2.6816406, -0.109680176, -1.2421875, -1.0195312, -0.78759766, 0.03817749, 1.0439453, 0.12133789, 0.796875, -0.4621582, 0.025466919, 0.012039185, -1.1503906, 1.0380859, -4.703125, -1.0253906, -3.1523438, -0.4404297, -0.8779297, -0.04724121, -3.5, -1.3417969, -0.09741211, -0.7998047, 2.9570312, -0.6352539, 2.0644531, -0.41430664, -1.4697266, -0.37451172, -2.0644531, -3.1914062, -0.12487793, -0.10443115, -1.9101562, 0.8696289, -2.859375, 0.81152344, -1.265625, -1.2695312, -1.546875, 0.5229492, -0.64697266, -0.7167969, -1.6298828, -2.1503906, 0.46435547, 0.40771484, -1.1621094, -2.5976562, -2.8164062, -2.6445312, -2.3066406, 0.047576904, -1.7353516, 2.09375, -0.16748047, -0.3347168, 2.3125, -0.5058594, 1.3046875, -0.80126953, -2.6542969, 2.4902344, 2.2460938, -1.1201172, 2.6894531, -2.0214844, -1.0185547, -1.7304688, -1.3007812, 2.8808594, -0.95214844, 1.671875, 0.7001953, -0.11315918, -0.13879395, 0.8623047, 0.62597656, -1.5810547, -1.09375, 2.4199219, -2.8378906, -1.1669922, 1.2548828, 2.8535156, -2.0996094, -0.66308594, 2.5898438, 0.58691406, 1.7558594, 1.9248047, -0.25512695, 0.63134766, -0.20788574, -0.7241211, 1.0527344, 1.3017578, 0.6333008, 0.19067383, 2.2265625, -0.35083008, 2.3398438, 2.5859375, 1.6328125, 2.5800781, 2.9414062, 0.58447266, -1.7001953, -0.4033203, 0.54833984, 2.2871094, 0.99121094, 3.5585938, -0.32373047, 0.53759766, -0.5678711, -0.85595703, 1.0400391, -2.2558594, -0.37719727, 0.8491211, 0.40966797, 1.15625, 0.44091797, -0.020339966, 0.15588379, -0.96191406, 2.0800781, 0.32910156, -1.7070312, 1.5019531, 0.34765625, -0.5239258, -2.6933594, 2.1582031, 0.052520752, -1.1201172, 0.45117188, 2.1269531, -2.1152344, -3.0566406, 0.6166992, 0.32543945, -0.953125, 3.4492188, 1.2392578, -1.1582031, 0.37939453, -2.3964844, 0.89941406, 1.8642578, -1.1923828, -0.21008301, -1.4306641, -0.8022461, -0.76123047, 0.6201172, 0.99560547, 1.9238281, -2.1816406, 1.7548828, -2.96875, -0.27294922, 0.9277344, -1.71875, -0.5571289, 2.4003906, -1.4394531, 1.2392578, -0.39086914, 4.1367188, -1.4052734, 0.25708008, 2.1347656, -2.1171875, 0.96972656, -1.7607422, -3.8417969, 1.2998047, -0.12188721, -0.39404297, 3.1699219, 0.65722656, 0.54541016, 1.6191406, 0.42236328, -2.0683594, -0.31445312, -1.0478516, 0.42382812, -2.2636719, -2.1640625, 1.0742188, -0.29711914, -1.5898438, -2.0429688, -0.05795288, -0.62841797, 1.4326172, 0.6123047, -2.7675781, 0.55859375, -0.8300781, 0.7397461, 0.7495117, -0.67871094, 1.2167969, -1.1308594, -0.7373047, -1.4257812, 1.3369141, 1.4296875, -0.20446777, -0.049041748, 1.8974609, 1.1376953, -2.4257812, 0.41064453, 1.6708984, 1.7822266, -0.120788574, -2.9199219, -1.4824219, 1.9775391, 0.33911133, -0.97558594, -0.55859375, -2.5742188, -0.6508789, 1.5263672, 2.3417969, 2.3066406, 0.8647461, 0.2770996, -2.6210938, -0.1015625, 0.43041992, -2.3867188, -1.0878906, 0.5839844, 2.1816406, -1.2509766, -0.6269531, -3.5859375, 0.76123047, 0.6064453, -0.93603516, -2.2167969, 3.4433594, 2.4199219, 2.2871094, 1.6708984, -0.69091797, -0.68652344, 2.2109375, 0.47875977, 0.17602539, 1.0273438, -0.30566406, 0.5522461, 1.6503906, 0.63134766, -1.6269531, -1.2490234, 2.84375, -1.4482422, 0.9082031, -0.46142578, 0.71533203, -1.1298828, -1.1152344, 1.5556641, -0.8666992, 1.9160156, -1.1679688, -0.4855957, 0.13745117, 0.94140625, -2.4375, 0.4543457, 0.5751953, -0.93359375, 0.14746094, 1.5673828, -0.68652344, -0.80859375, 0.3046875, 0.0947876, 1.5322266, 0.21618652, -0.5136719, -0.38452148, 0.7138672, -0.87890625, -1.6103516, 2.4140625, 2.5683594, -0.12548828, 3.2617188, 2.3164062, -1.4716797, 0.6850586, 0.070739746, -2.1796875, -0.48486328, 0.38745117, -0.3256836, 1.7929688, 1.1630859, -3.0214844, 0.78515625, 3.9648438, -0.75146484, 1.5351562, 0.21936035, -1.2607422, 1.7607422, -2.4277344, -0.38427734, -1.9423828, 0.098083496, -0.75439453, -1.4189453, 1.8164062, -1.1064453, 1.140625, 2.5234375, -0.12561035, -2.609375, 3.7226562, 0.57128906, 0.35180664, -0.78027344, -1.0722656, -2.4140625, 1.7451172, 2.5078125, 1.796875, 1.1972656, 1.0576172, -0.16699219, -2.7539062, -0.44482422, -0.9277344, 2.2792969, -1.3632812, -1.4267578, 2.5742188, -0.58447266, 0.34936523, -1.4345703, -0.20141602, -0.42138672, 1.6171875, 0.26513672, 0.9536133, 0.11230469, 0.25170898, -2.9902344, -4.0703125, -0.8359375, 1.2509766, -1.1533203, -0.08868408, -0.8623047, 0.08288574, 1.3193359, 0.3955078, -0.39379883, -3.3496094, -0.25952148, -1.1025391, -0.6977539, -0.16174316, 0.15332031, 0.061676025, 1.1796875, -0.88623047, 0.15759277, 0.31689453, -2.0859375, -1.4355469, 1.59375, -1.5966797, 0.64160156, 0.7763672, 0.26489258, 1.3525391, 2.3789062, 0.07763672, -2.2285156, 2.5214844, -2.0507812, -0.21728516, 1.8642578, -1.3525391, 0.5527344, 1.2929688, -0.080322266, 2.2050781, -0.87060547, -1.1708984, -0.61083984, 0.5073242, -0.3894043, 0.859375, -0.5605469, -2.5683594, 1.171875, -0.29492188, 1.6025391, 2.0605469, -1.65625, -1.6425781, -0.9824219, -0.7758789, -1.0615234, -1.8691406, -0.5839844, -1.0644531, 0.15002441, 1.7646484, 1.0693359, 0.97802734, 0.7597656, 0.64990234, -1.2734375, 0.5839844, -1.0976562, 3.5976562, 1.6865234, -0.54248047, -1.7412109, -1.7412109, 0.09881592, 0.55908203, 1.4658203, -0.8383789, 0.9785156, -1.40625, 0.7910156, 0.26782227, 0.60009766, 2.6796875, 1.9824219, 0.60546875, 0.76708984, 3.7734375, -0.26220703, 2.4609375, 0.35107422, -0.47070312, -0.20458984, 2.6347656, 2.2832031, -2.1210938, 0.5258789, -1.9384766, 1.7841797, 0.18640137, -1.4208984, 0.6464844, -1.0117188, -1.5517578, -2.6992188, -1.6357422, -4.1484375, 1.3671875, 1.7480469, -0.9824219, -1.3349609, 1.9892578, 0.32617188, 1.7070312, 1.8056641, 1.8808594, 0.19104004, 0.5097656, -2.1953125, -1.5585938, 1.7929688, -2.5625, 0.9550781, 1.0488281, -0.9433594, -1.5703125, 2.6621094, 0.26708984, 2.8359375, 1.0742188, 1.7958984, 2.5859375, 0.2824707, 2.7421875, 0.8432617, 0.7167969, 2.3945312, 0.3720703, -0.18457031, 1.3896484, 2.0039062, 0.18847656, -0.66015625, -0.5083008, 0.61279297, -1.3398438, -0.2705078, -0.2927246, 1.0224609, -4.3320312, 0.54541016, -1.0322266, 1.2841797, -0.0002772808, 0.22155762, -0.70214844, -0.3330078, 0.27905273, -0.1361084, 1.7910156, -1.5839844, 0.31176758, -1.7333984, -0.19030762, 2.0449219, -1.8232422, 2.5996094, 0.17871094, -1.4599609, 1.4814453, 0.54785156, 0.39990234, 1.3457031, 0.38964844, 3.0058594, 0.7685547, 0.2010498, 1.3583984, -4.1484375, 1.1201172, 0.33251953, 2.8339844, 1.1162109, 0.234375, 1.2587891, -0.75390625, -2.8476562, -5.0234375, 3.1855469, 1.7607422, 0.5629883, 2.484375, -0.9086914, 2.4199219, -0.7529297, 1.4902344, -3.3945312, 0.5991211, -0.6689453, -0.43408203, -0.8300781, 1.1494141, -1.6201172, 2.9335938, 1.2841797, -1.6474609, 1.3730469, 0.8803711, 0.68847656, 1.0898438, 0.32543945, 1.3017578, -0.40063477, -1.9013672, 1.7451172, 2.1425781, -1.7666016, -0.99121094, 2.8007812, 1.6601562, 0.7133789, 1.8779297, 0.17492676, -0.14929199, -0.6533203, 0.116882324, 0.140625, -1.8632812, -1.1728516, -1.1796875, 0.1015625, -0.63134766, -2.0429688, 0.6279297, 1.0175781, -1.0146484, -0.3173828, 2.1933594, -0.8691406, 1.1933594, 0.72216797, -0.6176758, 0.021194458, -1.7177734, -0.65283203, -1.8925781, -1.8798828, -1.2832031, -0.34326172, 0.7573242, -0.39746094, -1.0009766, -1.1259766, -0.04067993, 1.4052734, 2.71875, -1.0322266, 2.1582031, 0.14147949, -0.6010742, -1.1015625, 2.2597656, -0.22680664, -0.35229492, 0.14501953, -2.6230469, 0.09698486, 0.30615234, -1.3623047, 0.69677734, 3.8476562, 3.59375, 0.14819336, -2.3867188, -2.6308594, -1.3496094, -1.2275391, 0.9375, -0.63671875, -0.18847656, -0.19763184, 0.89501953, 2.9960938, -1.1416016, -0.32592773, -0.7480469, 0.072265625, 1.4306641, 0.1973877, 1.4833984, -0.8359375, 0.63916016, 0.28930664, 3.140625, 3.3554688, -1.2714844, 1.2783203, 1.4580078, -0.6738281, -3.6289062, 0.9824219, -1.8310547, -0.07055664, -0.27270508, -0.64746094, 2.0410156, 0.73095703, -0.42456055, -2.0039062, -0.8803711]}, "B07F5233N1": {"id": "B07F5233N1", "original": "Brand: ICON\nName: ICON 12867 Deluxe Propane Tank Cover , Black\nDescription: \nFeatures: Improves the look & value of the RV\nPart number: 12867\nFit type: Universal Fit\nPackage Weight: 10.0 pounds\n", "embedding": [0.6191406, 0.72021484, 3.5859375, -0.5942383, 0.7475586, -0.18151855, -1.3046875, -1.6894531, 2.9804688, 1.4316406, 0.82177734, -1.1474609, -1.0224609, -1.0498047, 2.1289062, -0.42333984, -0.048431396, 2.7167969, 1.5625, -0.94189453, 2.8691406, -0.3347168, -0.56103516, -0.52978516, -0.14440918, 0.4819336, 4.8789062, -2.6269531, -2.1132812, 1.0791016, 1.0478516, 0.5234375, 0.10333252, 4.5039062, 0.5961914, -0.6171875, -0.66308594, -0.094177246, -2.2011719, -0.08843994, -2.9609375, -0.9267578, 2.1972656, 0.359375, -0.78759766, -0.8911133, -0.057434082, -1.1728516, -2.0039062, 0.6425781, 1.0878906, 1.4863281, 1.4697266, 1.8261719, -1.6992188, 3.8925781, -1.4365234, 0.57910156, 0.5551758, 1.6503906, 0.1274414, -1.8740234, -2.4609375, -0.43725586, -0.96972656, 2.8417969, -1.2841797, 0.35913086, 0.8886719, 1.4746094, 1.9248047, 1.7568359, 0.38598633, -3.0566406, 2.5, -0.45947266, -3.4492188, 0.8095703, 1.3271484, -1.5498047, 0.5498047, 1.2841797, -0.5048828, -2.2597656, 0.54052734, -1.2714844, -2.3632812, -1.2197266, -0.023666382, -0.484375, -2.2558594, 1.2304688, -2.7519531, -4.4960938, 0.050567627, 0.013282776, 1.1679688, 2.9609375, -0.7783203, 1.7666016, 0.78466797, -0.3461914, 0.93310547, -0.93066406, -1.2714844, -1.5712891, 1.0800781, -2.8808594, -1.9941406, -0.18933105, -0.35766602, -3.3378906, 1.6269531, -1.7265625, 2.0195312, -0.49804688, 1.7128906, 0.24487305, 0.6904297, -0.9145508, 2.6308594, -1.0458984, -0.10888672, -0.7265625, 0.9663086, -0.36938477, -1.8115234, 1.0615234, 3.9394531, -0.103149414, 1.1259766, 1.1826172, 1.0126953, -0.62158203, -1.4013672, -0.87353516, -0.38867188, -1.8417969, -1.5283203, 0.8305664, -1.1230469, -2.5, -0.28955078, 1.3115234, -3.2539062, -1.0117188, -1.5927734, 0.6899414, -1.4638672, -2.2089844, 2.3652344, -1.6621094, -1.9833984, -1.5507812, 1.0341797, 0.8256836, -0.8510742, -3.4960938, 1.4511719, 2.8164062, 3.7207031, -0.9160156, -1.1455078, -0.55615234, 0.88671875, -0.42041016, 0.81347656, -0.70214844, -1.6103516, 1.6513672, -0.9580078, -1.3554688, -0.50878906, 0.47509766, -0.05126953, -0.7583008, 0.4934082, 1.1552734, 1.2597656, 0.89453125, -2.6914062, -0.5678711, -0.4411621, -0.25976562, 0.22924805, -1.1611328, -0.59765625, -2.8027344, 0.47558594, 0.14685059, -2.1992188, 1.1083984, -1.0380859, -0.0209198, -1.1035156, -2.7089844, -0.8364258, -2.6074219, 0.09375, 2.1699219, -0.9267578, -1.2587891, -0.93847656, 0.34887695, -1.9257812, -2.234375, 0.9790039, 0.09088135, 1.3945312, 1.0527344, 0.8359375, 0.1862793, 2.0214844, -1.4189453, -2.0234375, -1.0166016, 0.35961914, 0.22851562, 0.6064453, 1.4863281, 0.08282471, -0.32104492, 0.7504883, 2.0917969, 0.061035156, 1.3916016, 1.359375, 0.7128906, -2.4140625, -1.9404297, 0.29663086, 1.8720703, -2.6054688, 0.65722656, -0.08215332, 1.9365234, 0.5854492, -0.84472656, 0.23901367, -0.6801758, -1.1552734, -0.97216797, -1.1474609, 0.5395508, -0.5415039, 1.0566406, -1.3203125, 0.7475586, 1.5117188, 0.3696289, -0.81347656, -2.4082031, 1.5322266, 0.38427734, 0.78027344, 1.5224609, -0.19348145, 1.8076172, 0.6723633, -2.0566406, 0.6040039, 0.13708496, -1.9785156, -0.50634766, 0.22668457, 0.48266602, 0.43676758, -0.12164307, -2.3242188, 0.3161621, 2.1816406, 0.64160156, 0.49438477, -0.120788574, 2.78125, 0.9194336, -0.4897461, 2.1972656, 0.74560547, 1.4951172, 1.3662109, -0.45263672, 1.7207031, -3.3632812, 0.34936523, -0.4194336, 1.6083984, -0.62060547, -1.9980469, 1.0302734, 1.6708984, -1.4003906, -1.7832031, 3.4355469, 0.70703125, 0.6171875, 1.8457031, 0.2614746, -0.074279785, 0.7290039, -1.484375, -0.37304688, 0.7265625, 2.1855469, 2.3105469, -0.5517578, -1.1171875, 0.5151367, -1.2792969, -1.0458984, -0.6870117, -1.6445312, -2.6660156, 1.3320312, -1.4238281, -0.08935547, 3.0605469, -1.2958984, -0.37109375, 1.7236328, 0.48510742, 0.57714844, -1.9570312, -1.1933594, 1.1064453, 1.578125, -3.9765625, 0.2006836, 1.2148438, 0.12792969, 1.0917969, -1.3730469, -0.3894043, -2.9433594, 2.4082031, -0.5878906, -2.8339844, -0.75683594, -0.04901123, -1.2988281, 0.97509766, -0.087524414, -0.43896484, 2.8808594, 1.8447266, -2.328125, 0.037841797, 1.4570312, -0.8964844, -1.4121094, 0.95410156, 1.5351562, -0.2244873, -2.8613281, 0.20739746, -0.3408203, -1.5048828, 0.49291992, -0.6323242, 0.7675781, 1.9599609, 0.7841797, 2.3027344, -0.0925293, 0.14050293, 0.20385742, 1.2851562, -4.015625, 0.97314453, -3.3574219, 0.8154297, -1.5986328, 1.0634766, -2.5742188, -0.8833008, 0.5283203, -1.0927734, 3.96875, 1.2597656, 1.3242188, -1.1679688, -0.76708984, 0.95214844, -2.6679688, -2.4960938, 1.4462891, 0.3466797, -1.2304688, -2.46875, -4.7421875, -0.091552734, -2.0683594, 0.43701172, 0.15710449, -2.8808594, -0.9658203, 0.5214844, -0.1706543, -0.4777832, 0.47338867, 0.43286133, -0.31640625, -1.7802734, -0.28442383, -0.72314453, -1.3105469, -1.6171875, -0.58447266, 1.546875, -1.1259766, -0.12225342, 0.109436035, -1.1142578, 2.9355469, 0.45288086, -3.1445312, 0.039123535, 2.8417969, 3.1660156, 2.875, -0.74658203, -2.1210938, -2.0332031, 1.4560547, 3.4824219, 0.58447266, 0.25683594, 1.9882812, -0.5395508, -0.5473633, -1.3623047, 0.5292969, 0.34301758, 0.9638672, 2.6660156, -1.4902344, 0.045440674, -0.5439453, 1.3808594, -1.3251953, -0.9316406, -0.01096344, -0.8847656, 4.2929688, -0.4345703, -3.4414062, -2.2714844, 1.1494141, 4.0664062, -1.5322266, 2.1757812, 0.90966797, 0.7895508, 1.6513672, -0.8378906, 2.234375, 2.59375, 0.52978516, -1.3701172, 0.93066406, 0.98046875, 0.21838379, 0.24230957, 0.97998047, -2.2070312, 0.32080078, 1.0751953, -1.4697266, 0.15612793, 0.9560547, 0.76416016, -0.7583008, -1.0859375, 1.5048828, 1.9833984, 2.9316406, -0.5942383, 0.2006836, -0.7788086, 0.5419922, -1.0488281, 2.4082031, 1.1279297, -1.7998047, 0.13684082, -2.2285156, 0.33789062, -2.4960938, 3.9121094, 0.44335938, 0.68896484, 0.12866211, 3.3242188, -2.359375, -2.4863281, -0.18676758, 0.15917969, -1.3730469, 1.625, 2.7910156, -0.7026367, 1.3701172, -2.1777344, 2.0644531, 3.7949219, -0.8100586, 0.05731201, -0.2927246, -0.74316406, -2.640625, 1.6220703, -0.18237305, 1.1708984, -2.8320312, -0.7421875, -0.71972656, 1.1132812, -0.080200195, -0.31176758, -1.8115234, 0.2421875, -1.9882812, 0.63964844, -0.68310547, 3.1777344, -0.5703125, 2.6582031, 0.22106934, -0.62939453, 1.4423828, 0.3869629, -2.4257812, 0.14758301, -0.59765625, 0.48217773, 3.3242188, -0.39208984, 0.6557617, 0.22338867, -1.046875, -3.3613281, -0.8203125, -1.2441406, -0.05682373, -0.9121094, -4.0039062, -0.54052734, -0.45898438, -1.9863281, -1.3261719, -0.43896484, -2.5371094, -2.1503906, -0.46948242, 0.1270752, -0.81152344, -1.1328125, 1.1064453, -1.6416016, -0.35424805, 3.6992188, -0.0016956329, -0.3569336, -2.0175781, 2.578125, 0.094177246, 0.060821533, 0.69091797, 3.3164062, 0.59765625, -0.6118164, -0.01826477, 0.52783203, 1.5068359, -0.51708984, -3.6484375, 0.24914551, -0.2512207, 0.12573242, -1.3554688, 0.96533203, 0.10882568, -0.52734375, 1.3837891, 0.2902832, 0.6044922, 1.4394531, -0.87890625, -2.078125, 1.5253906, -2.4414062, -0.20654297, -0.10345459, 0.1071167, 0.74365234, 0.5576172, 1.1308594, -2.6152344, 0.65527344, 0.31982422, -0.48779297, -3.8769531, 2.0429688, 0.99316406, 2.3769531, 0.14001465, -0.58740234, 0.75097656, -0.06567383, 0.77978516, 0.72021484, -1.0214844, -0.62939453, 1.4316406, -0.8808594, 2.0585938, -2.2734375, -1.9404297, -0.25341797, -0.52001953, 0.9682617, -1.9990234, -0.5341797, -2.4042969, -2.0175781, -0.5703125, -1.140625, 3.0527344, -2.1191406, 3.0976562, -1.1582031, -0.017211914, -1.3125, 3.0429688, 3.0605469, 0.8647461, 1.203125, -2.0507812, -2.1347656, -0.85546875, 1.9404297, -0.7192383, 1.9101562, -1.6025391, -0.75683594, 1.6513672, 0.8378906, -0.105529785, 0.2232666, 1.4833984, 2.4902344, 0.9941406, 0.16223145, 1.3867188, -1.2158203, 3.75, 2.0644531, -0.34326172, -1.0410156, -1.0683594, 1.8242188, 2.375, -1.1162109, -3.0410156, 0.2993164, 1.1337891, 0.12145996, 1.4580078, 0.78466797, -1.3330078, -2.4726562, -2.3613281, -1.6455078, -0.8520508, -0.47558594, -2.3710938, -0.51660156, 1.2470703, 1.6523438, 0.78271484, 2.3144531, 0.5864258, -0.8564453, 1.7988281, 1.765625, -1.6992188, -2.640625, -0.10797119, -2.5957031, 1.4033203, -1.6181641, 1.5205078, 0.91308594, -0.23608398, 2.6835938, -2.3457031, -0.4206543, -2.1523438, 1.5556641, -2.578125, -1.2128906, 0.28442383, -1.5, -1.0722656, -0.07501221, 1.1123047, -1.2753906, 1.6201172, 0.37280273, 0.2763672, 0.46801758, 0.18457031, -2.6660156, -3.4902344, -1.8310547, -0.039520264, 0.17626953, 1.4287109, -0.8232422, -1.0986328, -1.0605469, -0.61328125, -0.72021484, -2.0605469, 1.2431641, 0.12939453, -1.7724609, 0.12902832, -0.25927734, -1.1357422, 0.3840332, 0.40600586, -1.9423828, -1.625, -2.96875, -1.5400391, 1.0078125, -1.1103516, 0.6411133, 2.2832031, 0.171875, 1.9677734, -0.11773682, 1.8496094, -0.49169922, 1.7431641, -1.3398438, -1.3183594, 3.0273438, 0.29370117, 0.3071289, 2.015625, -0.17956543, 0.9736328, 1.0322266, 2.8925781, -2.4335938, 0.3996582, 1.5458984, -0.39624023, 0.14331055, 1.0908203, 1.6181641, 1.3466797, 1.1943359, 1.1972656, -1.8476562, 0.29052734, -1.5322266, -0.75634766, 0.1508789, -2.5410156, -1.7900391, -0.020217896, 0.85009766, 2.359375, 0.66748047, 0.171875, 0.22570801, 0.8310547, -1.1738281, 0.20605469, -2.0996094, 4.46875, 2.6542969, -1.1582031, -1.0332031, -1.9804688, 4.0195312, 0.0501709, -0.7158203, 0.11193848, 1.0537109, -1.3632812, 0.7529297, -0.15722656, 2.328125, 0.42919922, 0.27270508, -2.1386719, -0.070495605, 3.234375, 0.3564453, 2.3984375, -0.7944336, -0.35058594, 0.35961914, 0.07739258, 1.1738281, -5.140625, 0.60839844, 0.4345703, -0.8251953, 0.28051758, 0.08123779, -0.73046875, -0.101501465, 0.94677734, -0.19177246, -0.49145508, -5.8164062, 2.6992188, 0.4326172, -0.87353516, -0.2607422, -0.32470703, -1.3945312, 0.47558594, 0.90478516, 0.3762207, -0.43164062, -1.0488281, 0.9135742, 0.84765625, 0.44921875, -0.92089844, 1.0634766, -1.0810547, 1.2910156, 2.0898438, 1.2041016, -0.1237793, -0.11816406, 2.1503906, 3.3359375, 3.4824219, 1.5576172, 0.76953125, 0.50878906, 1.5458984, 2.6230469, -1.5322266, -0.8339844, 0.85791016, 1.8076172, 2.1816406, -1.6816406, 0.20935059, 0.96533203, -0.83984375, -1.265625, 1.0263672, 2.9570312, -2.1679688, 0.7363281, 0.25097656, -0.087646484, 0.6665039, -0.27807617, -1.5908203, -1.0117188, 1.4658203, -1.1171875, 2.1113281, -0.41357422, -0.7885742, 1.6572266, -1.4833984, 1.046875, -0.1586914, -0.65478516, -0.5625, -2.4824219, -0.9921875, -1.2929688, 1.9433594, 2.15625, -0.8129883, 1.7822266, 1.7109375, 0.5341797, -0.16748047, -2.796875, 1.9521484, -1.8378906, 2.4023438, 2.1953125, -2.0625, 0.19714355, 1.2158203, -1.3095703, -3.8457031, 1.6191406, 1.7373047, 1.4863281, 0.14819336, -3.7128906, 0.13769531, -0.37451172, 0.49365234, -1.0185547, 0.90234375, -0.6748047, -1.0966797, 0.7753906, -0.8388672, -0.7363281, 2.4863281, 0.0040740967, -0.23156738, 1.1777344, -1.2197266, 1.9941406, 0.24511719, 1.1757812, 2.5800781, 0.8754883, -1.5097656, 1.3945312, 1.9365234, -0.46728516, -1.5859375, 3.0722656, 3.640625, 1.1845703, 1.0185547, -2.1777344, 2.5839844, 1.3613281, -0.31469727, 0.47558594, -1.8388672, 0.66015625, -0.32177734, 0.6738281, 0.8569336, -0.4165039, 2.1113281, 3.0175781, -2.4628906, -0.36938477, 0.6977539, -1.2353516, 1.9052734, -1.0576172, -1.2958984, -2.4179688, 0.65283203, 1.4912109, -0.7211914, 0.07598877, -0.7504883, 1.0361328, 0.0067634583, -2.3574219, -1.3955078, 0.44335938, -1.0761719, -0.9892578, 2.2695312, -1.3964844, 0.6201172, 0.26464844, 0.28759766, 0.64501953, -0.099731445, -0.07281494, -1.4208984, 0.35302734, -0.023788452, -0.115600586, -0.36645508, 1.6445312, -0.10253906, 1.6542969, -0.072753906, -0.5605469, 0.4243164, -2.9277344, -0.84716797, -3.4902344, 1.4462891, 1.3339844, 0.5473633, -0.10491943, 1.4902344, 3.0585938, -3.03125, -1.2841797, -1.4794922, -0.75439453, 2.7167969, -0.84277344, 0.32080078, 0.4333496, 0.35375977, 2.4765625, 3.5253906, 1.5126953, -0.98535156, 0.56884766, 1.6591797, -2.765625, -1.6845703, -1.0878906, -1.359375, -0.87158203, 1.125, 2.1640625, 1.5527344, 0.97021484, -0.5395508, -1.5332031, 1.0742188]}, "B003UHVVV2": {"id": "B003UHVVV2", "original": "Brand: Flame King\nName: Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-2.4335938, 1.5820312, 1.2578125, 0.5332031, 0.6645508, -3.1425781, 0.050720215, -0.16723633, 1.0878906, -0.7973633, 2.9589844, 0.2052002, -0.17175293, -3.6523438, 1.8291016, 1.2109375, -0.80859375, 1.9150391, 1.1621094, -0.15368652, 1.4433594, 0.5449219, -0.9116211, -1.1914062, -0.35717773, -0.9819336, 2.5976562, -3.453125, -0.65722656, 0.49023438, 0.9165039, -0.42382812, 0.27490234, 2.0898438, 0.34545898, -1.7177734, 0.50097656, -2.0644531, -5.7304688, -0.3383789, -2.5175781, -0.97021484, 1.9150391, -0.5727539, -0.7871094, -0.05657959, 0.041015625, -1.0986328, -0.4338379, 0.08465576, 0.9042969, 1.9335938, -0.55322266, 1.2333984, 0.8754883, 1.2949219, 1.0371094, -2.7304688, -0.3010254, 0.51220703, 2.21875, 0.07873535, -2.7929688, 2.4042969, -0.82958984, 1.3740234, 0.16333008, -0.7817383, 0.47094727, 1.8027344, 1.7167969, 0.8984375, 2.2246094, -1.3896484, -0.9448242, 1.3212891, -3.6191406, 0.040924072, 0.20874023, 0.3413086, 0.10583496, 2.8867188, 0.31982422, -3.03125, -1.1396484, -0.57714844, 0.49731445, 1.2763672, 0.02027893, 0.66552734, -2.2089844, 2.0703125, 0.013755798, -3.7734375, 2.484375, 0.7636719, 2.4316406, 3.1542969, 3.1328125, 0.028213501, 0.4284668, -0.13806152, -0.6845703, 1.5175781, -1.8759766, -1.7753906, 0.9736328, 0.7270508, -2.6542969, 1.6972656, -0.34570312, -0.7919922, 1.7998047, -0.7832031, -0.35107422, -0.77490234, -0.00687027, 1.6318359, 1.5869141, -0.80322266, 3.8671875, -3.1054688, 2.4355469, -1.4785156, 1.8085938, 1.8515625, -1.2822266, 0.70166016, 5.1015625, -0.48364258, 1.9882812, 0.0413208, 3.8007812, -1.3984375, -0.31152344, -2.5566406, -0.10424805, -1.8837891, -1.9873047, -1.2705078, -3.8945312, 0.09326172, 1.1699219, -0.06665039, -3.1328125, -0.80908203, -0.4597168, 0.13000488, -0.9824219, -2.1484375, 1.3798828, -1.6328125, 0.8276367, -1.2392578, 2.6445312, 1.5361328, -1.8144531, -3.2011719, 1.0927734, 1.3613281, 1.9140625, 0.5234375, 0.3059082, 1.6347656, -0.40429688, -1.8603516, 0.8857422, 0.022567749, -1.2773438, 1.6328125, -0.23632812, -1.7998047, -0.66748047, 2.3339844, -0.2915039, -0.5698242, 0.8232422, 1.2119141, 0.3449707, 0.12902832, -2.6933594, -0.25439453, -0.63720703, -1.3994141, 1.8671875, 0.47827148, -0.92822266, -0.84228516, 0.9326172, -0.8227539, -1.6757812, 2.21875, -1.9404297, 0.30664062, -0.25976562, -0.9682617, -4.1640625, -2.84375, 0.72265625, 1.4970703, 0.5600586, -0.81591797, 2.0527344, 0.013214111, -2.3671875, -1.8007812, 0.49072266, -1.3623047, 1.7207031, 0.3852539, -0.49926758, 0.5732422, 1.8652344, -2.4179688, -1.5888672, -2.6210938, -0.63720703, 2.4238281, 1.9414062, 1.1279297, 1.2431641, -0.6616211, 1.5117188, 0.6616211, 1.4941406, 0.007637024, 1.46875, 2.0917969, -3.8730469, -1.0839844, 1.1699219, 1.5957031, -0.08850098, 1.1503906, -2.1523438, 0.91503906, 0.28637695, -1.5537109, 0.97021484, 0.38427734, 0.60009766, 1.0361328, -1.0507812, -0.5786133, -2.3339844, -0.36279297, 0.9746094, 0.34716797, 1.1220703, -0.47705078, 1.0136719, -0.2524414, -0.8364258, -0.63720703, -0.5029297, -0.015220642, 1.0429688, 0.49194336, 0.7734375, -2.1132812, 1.6953125, -1.8066406, -0.47070312, 0.95947266, -1.453125, 0.5991211, 2.4628906, -0.8588867, -2.5644531, 1.4707031, -1.5292969, 0.9580078, 1.9228516, -1.2841797, 0.2084961, 2.5644531, -1.7226562, 3.6289062, -1.4736328, 1.6152344, -0.10015869, -1.0263672, 1.3203125, -2.1679688, 0.515625, 0.2944336, 0.7416992, -0.5810547, -2.7050781, 0.82373047, 4.90625, -1.3740234, -1.828125, 1.4804688, 1.2626953, 1.6708984, 3.4414062, -0.40893555, 1.1142578, -0.04888916, 0.25585938, 0.34570312, -1.28125, -0.01209259, -0.6201172, -1.4169922, 0.94091797, -0.18273926, 0.47509766, -0.6142578, -1.1425781, 0.22143555, -1.4384766, 0.5439453, 0.53564453, -0.9111328, 3.6835938, -3.3710938, 1.9384766, 1.8330078, 0.38623047, 1.8251953, 1.7041016, -1.6054688, -0.3955078, 1.7373047, -0.8857422, 1.9648438, -0.37890625, 1.0214844, -0.07409668, -1.9501953, -0.05807495, -0.58447266, -0.5644531, 1.0009766, -0.88720703, -2.7089844, -0.19189453, -2.7070312, 0.22290039, 0.5961914, -1.0449219, 1.4785156, 1.0078125, -1.2832031, 0.20922852, 0.36035156, -0.33496094, -2.359375, 0.8691406, 4.359375, -0.6567383, -2.0253906, 1.4345703, -0.14648438, 1.1279297, 2.7753906, -0.2121582, -0.5541992, 0.30395508, -0.7236328, -0.51220703, -0.5996094, -0.74853516, -3.0722656, 2.4609375, -2.1230469, 1.9052734, -0.58203125, -0.27026367, -1.234375, -1.1660156, -0.91503906, -2.4824219, -0.43188477, -2.0976562, 0.50878906, 0.93603516, 2.0566406, -1.5019531, -1.2109375, 0.90771484, -1.3671875, -0.7890625, -0.57910156, 0.40698242, -2.1191406, -1.9570312, -4.4101562, 0.04837036, -1.515625, -0.6298828, -0.62060547, 0.56640625, -2.234375, 0.37768555, 0.27148438, 0.5371094, -0.08935547, 0.009674072, -0.6796875, -3.4335938, -0.3100586, 0.28686523, -0.30664062, -1.4208984, -0.6357422, -0.05706787, -1.2119141, -0.8203125, 0.64404297, -1.0888672, 1.9609375, 0.9892578, -3.40625, 1.6640625, 1.1982422, 0.9819336, 3.5976562, -2.4824219, -0.77783203, -2.1210938, -0.70410156, 4.2265625, 1.3496094, 0.73535156, 0.5131836, -0.9560547, 0.035736084, -1.0634766, -0.27807617, 0.90771484, 0.078186035, 3.6367188, -1.1982422, -0.5439453, 0.59521484, 2.8261719, -4.2460938, 0.056732178, 1.3427734, -0.79541016, 1.2929688, 0.88378906, -0.05307007, -0.22546387, 0.12402344, 1.5087891, 2.9101562, 1.2236328, 0.3330078, -1.2109375, 0.15612793, -0.7792969, -0.21777344, 4.015625, -0.31958008, 1.4560547, 2.0800781, 0.421875, -0.62890625, -0.47436523, 0.26489258, 0.97509766, 1.2353516, 1.9423828, -0.7529297, 0.64941406, -2.0410156, 0.09313965, -0.28198242, -1.0283203, 1.2167969, 1.65625, 1.2988281, -0.12756348, -0.8208008, -0.8129883, -1.3886719, -1.3759766, 4.46875, -1.4951172, 2.1269531, 0.30981445, -1.5039062, 1.2480469, -3.0585938, 2.21875, -0.45996094, 0.4777832, -0.50878906, 0.7373047, -1.2236328, -3.3964844, 0.6503906, -1.9208984, -1.2490234, 3.1367188, 0.030776978, -3.4335938, 0.062347412, -1.5439453, 1.3759766, 1.4326172, -2.6445312, 1.921875, 0.40405273, 0.43017578, -1.4199219, -0.47143555, 1.3955078, 0.7163086, -2.6191406, 1.4824219, -2.1347656, 1.7685547, 0.5888672, 0.7080078, -0.7158203, 0.062805176, -1.0185547, 2.78125, -0.8310547, 3.765625, -0.047058105, 1.7314453, 1.9101562, -1.2685547, 0.18591309, -1.3896484, -3.5292969, 0.6352539, -2.3164062, -1.4326172, 1.3232422, -0.8022461, -0.46435547, -0.76416016, 0.9580078, -0.7861328, -1.0507812, -1.0224609, 2.6464844, -2.4785156, 0.36157227, 0.22387695, 2.4375, -2.5234375, -2.7832031, 0.64404297, -1.515625, -0.7558594, 0.5888672, -1.6318359, 0.28173828, 0.98535156, -1.1191406, -0.3515625, -1.0166016, 1.7421875, -0.58203125, -0.96777344, -2.1074219, 1.7275391, 2.1621094, 0.7949219, 2.2988281, 1.8212891, 1.0761719, -0.4777832, -0.9584961, -0.6513672, 1.4970703, 0.8642578, -3.9941406, -2.5253906, -0.92626953, 0.044525146, -2.9375, 0.9008789, -1.2578125, 0.9448242, 3.3027344, 0.15844727, 1.8779297, 1.8798828, 0.51464844, -1.0371094, 1.546875, 1.7050781, -0.42407227, 0.2854004, -1.53125, -0.49047852, -0.9526367, 3.0488281, -2.171875, -1.453125, -2.3105469, 1.2138672, -4.5039062, 1.0117188, 2.3027344, 3.1113281, -0.6972656, -0.7841797, -0.31176758, 0.765625, -0.17578125, -0.33935547, 0.9501953, -0.25878906, -0.9819336, 1.5966797, 0.9091797, -0.27197266, 0.8857422, 1.6904297, -0.29711914, -1.6455078, 0.4248047, 0.61572266, -1.5878906, 0.78564453, -0.5551758, 0.43164062, 3.4902344, -1.5644531, -0.05758667, 1.7587891, 0.515625, -0.21472168, 1.4150391, -0.066711426, 0.5419922, 2.2949219, 0.31689453, 1.1640625, 2.359375, 1.9003906, -0.34570312, 2.2832031, -2.4414062, 0.3791504, -0.09863281, 1.5888672, -1.8369141, 0.8417969, 1.5654297, 0.97509766, -0.45654297, 1.3251953, 0.7363281, -0.4008789, 1.1425781, 1.2314453, -2.9238281, -3.1601562, -1.1044922, -0.26513672, 3.2265625, -0.55078125, -2.875, -0.0602417, 3.234375, -1.0722656, 0.63623047, 0.73876953, -0.3642578, -2.0605469, -1.7197266, -2.2578125, -1.4199219, 0.9169922, 0.81347656, 0.48461914, 0.61572266, -1.5839844, -0.24975586, -0.8173828, 1.6074219, 0.70458984, -0.6142578, -0.859375, -0.0446167, -0.40039062, 1.1259766, -1.3095703, 0.080078125, -1.4257812, -0.064331055, 0.6850586, -0.8671875, 2.0664062, -0.93847656, -0.21777344, -2.4609375, 1.3017578, -0.23449707, -0.71191406, 3.4921875, -1.3798828, 2.6464844, -0.7241211, -0.28759766, -1.5253906, 1.2685547, 1.6005859, -0.69970703, 0.061309814, 0.4194336, -2.8945312, -5.1953125, -2.6621094, -0.013977051, -0.27661133, -0.31201172, -1.7753906, -1.7548828, -0.46679688, -0.28076172, -1.5283203, -2.2265625, -0.052978516, 0.1685791, -1.1699219, -1.171875, 1.6083984, 0.07006836, 0.8925781, 0.9296875, -1.6572266, -0.3935547, -2.4609375, -1.8681641, 1.6435547, -0.76464844, 1.1191406, -0.2607422, -2.2460938, 1.6064453, 1.8623047, -0.58154297, -3.875, 1.9804688, -1.9990234, -0.7446289, 2.4707031, -2.6328125, -1.8554688, 1.546875, -0.59277344, 1.3837891, 2.1035156, 1.046875, -3.0292969, -1.4121094, -0.8227539, 1.9052734, -1.1103516, 1.6337891, 2.390625, 2.1210938, 0.00051403046, 2.3242188, -1.6132812, -1.8398438, -1.8925781, -0.68066406, 0.23022461, -1.3310547, 0.16918945, -0.24951172, 1.2246094, -0.025558472, -0.9658203, -0.43359375, -0.7363281, -1.6767578, -1.2226562, 3.2167969, -3.0917969, 2.7871094, 2.2167969, -1.9707031, -2.0800781, -0.66748047, 1.1503906, 0.7939453, -2.4980469, -0.98535156, 1.0654297, 0.87060547, 1.9990234, -0.30126953, 1.4375, -0.6894531, 1.4609375, -1.0615234, 0.21728516, 3.7988281, -0.5839844, 1.5712891, 0.82910156, -2.7265625, 1.6464844, 2.3808594, 2.1992188, -0.87939453, 0.3466797, 0.63623047, -1.0244141, -0.70703125, -0.41967773, -0.32617188, -3.0664062, -1.4267578, 0.77685547, -1.21875, -4.7421875, 0.46704102, -0.027328491, -0.8178711, -0.008682251, -0.3540039, -0.55810547, -0.78515625, 1.5908203, 0.67871094, -1.8164062, 0.13635254, 1.7099609, 0.7050781, 1.1660156, -1.7265625, 0.8041992, 1.2089844, 0.6748047, -0.6557617, 0.99121094, -2.1796875, 3.0898438, 1.0166016, 2.2011719, 2.7890625, -1.2509766, 1.9443359, -0.80810547, 2.4980469, 3.6660156, -0.1026001, 0.80126953, -0.5258789, 1.5478516, 0.58496094, -1.2675781, 0.69140625, -1.1005859, 1.6953125, -0.8334961, 0.6894531, 2.0136719, -1.1083984, 0.6069336, -0.6274414, -0.5283203, 0.064697266, 0.5883789, -0.890625, -1.1015625, 0.8852539, 1.1357422, 1.1328125, -0.703125, 0.19909668, -0.79833984, 1.0546875, 1.7158203, 0.14416504, -1.0595703, -1.4375, -2.3222656, 0.41748047, 2.2949219, 0.7060547, 0.3515625, 0.3347168, -0.63378906, 0.21362305, 1.0029297, -1.0957031, -1.6474609, 1.5205078, 0.5786133, 1.9931641, 2.5097656, -1.0683594, 4.828125, 1.2734375, 0.028381348, -3.7558594, 2.8945312, -2.0097656, -0.9067383, 1.4267578, -2.0996094, 1.0185547, -1.0683594, 0.71240234, -4.2695312, 1.4277344, 0.5185547, -2.0605469, 2.4609375, 0.5102539, -0.9819336, 3.3125, 2.2890625, -0.3605957, 0.37670898, -0.515625, 1.1708984, 0.2998047, 0.65478516, 0.9975586, 0.88720703, -1.2226562, 4.140625, 0.67041016, -0.63916016, -1.4736328, 1.9248047, 0.093322754, 0.9008789, 0.60791016, -1.1621094, 1.8242188, 0.96972656, 0.20385742, 0.75927734, -1.4902344, -0.18652344, -1.6142578, -0.96240234, 1.2050781, -1.9208984, -0.15661621, 1.5507812, -1.4228516, -1.8671875, 4.4414062, -0.44140625, 0.67333984, -0.05706787, -1.8291016, -1.6513672, 0.9589844, 1.4443359, -2.171875, -0.5776367, -0.32763672, 3.0136719, -0.36328125, -2.0195312, -1.5185547, 0.02218628, -0.12145996, -2.1933594, 1.3769531, -0.9975586, -0.15649414, 1.7021484, -0.9477539, 0.7080078, 1.1162109, 0.5419922, 1.8164062, -0.81884766, -0.5307617, 0.051605225, 0.44750977, -1.5390625, -1.8017578, 0.39404297, 1.3955078, -0.062927246, -0.3388672, -4.46875, -1.8935547, -1.5058594, 0.5058594, -1.1396484, -1.4003906, 1.2587891, 1.2314453, 1.0166016, -1.0605469, 0.36767578, -0.24804688, 1.6855469, 1.9619141, -1.3769531, 1.8876953, -0.5083008, -0.6777344, -0.75634766, 2.5644531, 1.1621094, -0.98876953, -0.75, 1.5888672, -1.6640625, 0.5307617, -0.65185547, -0.2644043, -0.1932373, 1.1240234, 1.5849609, 3.3261719, 1.1494141, -0.8647461, -1.7763672, -0.71875]}, "B06XWJPSDJ": {"id": "B06XWJPSDJ", "original": "Brand: GasOne\nName: GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black\nDescription: \nFeatures: High output - exerting up to 65, 000 BTU, gas one\u2019s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up\nHEAT ADJUSTABLE \u2013 control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank\n14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height\nSTEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use\nLow height strong frame \u2013 Gas one\u2019s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts\n", "embedding": [-0.6357422, 1.4023438, 2.2714844, 0.15454102, 0.49072266, 1.3017578, 0.21972656, -1.5439453, 0.06286621, -0.03793335, 0.10083008, 0.21325684, -0.019515991, -2.8144531, 0.026672363, 0.51123047, -0.12463379, 1.3681641, 0.984375, 1.8837891, 2.0117188, 0.60302734, 2.3300781, -1.5820312, -1.2558594, 1.2460938, 3.1074219, -3.5449219, -1.3515625, -1.5761719, 1.8193359, 1.6787109, -1.0380859, 0.18188477, -3.9824219, -0.24328613, -2.5703125, 0.66845703, -4.4414062, -0.20300293, -0.68652344, -0.23205566, 1.3847656, 0.5756836, -1.5869141, 2.1992188, 0.8769531, -1.0380859, -0.8300781, -0.97021484, 1.6523438, 2.0390625, -0.6484375, 0.49902344, 0.15856934, 0.56347656, 0.79833984, -2.734375, 1.4560547, -0.064697266, 2.2265625, 0.22216797, -2.3574219, -0.11694336, -1.4863281, 0.28515625, -1.2851562, 0.20410156, -0.55615234, 0.9589844, 2.8261719, 0.6694336, -1.4052734, 0.31884766, -0.04949951, -1.3837891, -2.3027344, 1.8984375, 1.9941406, -1.3955078, -1.8867188, 2.5058594, 1.5449219, -1.1894531, -1.1699219, 0.025985718, -1.2685547, -0.6958008, 2.5898438, 1.3037109, -0.84033203, 4.4648438, -3.1933594, -3.7011719, 2.9238281, 0.45532227, 0.13061523, 0.78271484, 0.67089844, 0.7631836, -0.8388672, -1.1074219, -2.2070312, 1.0546875, -1.2265625, -1.2402344, 1.1806641, 0.6611328, -3.0839844, 0.07550049, -2.4804688, -1.5693359, 1.6074219, 0.5600586, 1.3154297, 0.14367676, -0.28344727, -0.03918457, 4.0195312, 1.1503906, 3.4707031, 0.2800293, -0.049591064, 0.4128418, 0.6640625, 2.3613281, 0.2626953, 0.15844727, 3.0527344, -2.03125, -1.2548828, -2.3339844, 2.1757812, 0.45214844, 0.56591797, -0.94091797, -1.0078125, -3.1445312, -3.2441406, -0.70996094, -1.7666016, 1.7880859, 1.5634766, -0.50634766, -3.140625, -0.7265625, -0.3701172, 1.6298828, 0.6616211, -1.3447266, 0.17871094, -1.9316406, -0.4248047, -1.2910156, 1.8789062, 0.75927734, -1.3808594, -2.7246094, 4.875, 0.9370117, 0.2553711, -1.3583984, -1.2685547, 2.5488281, 0.97314453, -1.015625, 0.72998047, 0.70751953, -0.7084961, 0.75634766, -0.8408203, -2.09375, -1.1757812, -0.66796875, 0.328125, -0.35742188, -0.47314453, 3.0078125, 0.4567871, -0.39916992, -3.0644531, -2.7558594, 0.7910156, -0.9379883, -0.14550781, -1.3740234, 0.35913086, -0.019226074, 0.8671875, -0.6538086, -0.40405273, -1.4580078, 1.2539062, 0.55029297, 0.61328125, 0.11352539, -1.9482422, -0.5053711, -0.8925781, 2.171875, -0.9194336, -0.5800781, 0.7573242, 0.4987793, -2.3515625, -0.55566406, 0.9970703, -1.3876953, 0.6948242, -0.025802612, 0.55029297, 0.5004883, 2.6835938, -0.096191406, -1.0429688, -0.51953125, 2.2226562, 2.5429688, 1.8671875, 2.2265625, 0.37573242, -1.9013672, 1.4785156, 1.2216797, 0.21813965, 1.8730469, 0.38183594, 0.12683105, -0.65966797, -1.4228516, 2.6699219, 1.015625, 0.7919922, -0.38452148, 0.54248047, 2.9238281, 1.7724609, -1.5214844, 0.10681152, 0.21142578, 1.8271484, -2.3828125, -3.234375, -0.52783203, -2.3828125, 1.3056641, -1.3847656, 0.47680664, 2.1308594, 1.3349609, 1.0078125, -0.92089844, -0.95654297, -0.82958984, -1.5917969, -0.9223633, -0.9243164, 1.6455078, -1.3759766, -2.765625, 2.7402344, 0.113708496, 0.4033203, -0.1673584, 0.79296875, -1.1503906, 1.5957031, 1.1347656, -2.3027344, -0.76416016, 0.8457031, 0.61865234, 3.3359375, -1.28125, 1.8701172, 0.8911133, -1.8671875, 3.2226562, 0.7290039, 1.4003906, 2.3945312, -0.4350586, 1.0029297, -2.1210938, 0.81884766, 1.5908203, 3.0175781, -0.38598633, -1.1494141, 1.1845703, 3.8378906, -0.6503906, -2.4707031, 1.5361328, -1.8173828, 0.546875, 1.8388672, 0.51953125, 0.4921875, -0.85302734, 2.0527344, 0.2310791, -0.46606445, 1.2988281, -0.48120117, 0.07043457, -0.80859375, -1.0976562, 0.60058594, -0.15563965, 0.35351562, 0.3881836, -1.7373047, 2.0175781, -1.3017578, -0.58447266, 3.0957031, -2.6855469, 1.4755859, 0.54833984, 1.3310547, 3.2285156, 2.5507812, -1.3496094, 0.53564453, 0.7758789, 0.5463867, 0.3959961, -0.56396484, -1.1103516, -1.9716797, -2.0546875, 4.684925e-05, -1.2685547, -1.7861328, -0.29077148, -1.6103516, -3.2070312, 0.35766602, -2.5839844, -2.0078125, 1.7587891, -1.5498047, 1.8007812, -0.29223633, -2.5527344, -1.6630859, 0.0009646416, -1.3818359, -0.7446289, 1.828125, 1.0097656, -1.9189453, -1.9003906, 0.71240234, -0.2409668, -0.6826172, 0.18518066, 1.1171875, -0.15734863, 1.1132812, -0.7709961, -0.43920898, 0.8955078, 1.1787109, -1.8779297, 1.5146484, -3.5449219, -0.4387207, -2.0566406, 0.43579102, 0.38330078, -0.3725586, -3.0097656, -1.1572266, -0.27954102, -0.34692383, 2.4042969, -0.7446289, 1.8544922, -0.74072266, 0.16845703, 0.5385742, -1.9560547, -2.2207031, 0.5439453, -1.3388672, -2.1464844, -0.6171875, -4.0546875, 0.119262695, -0.8745117, -0.47998047, -0.37451172, 0.57666016, -1.1113281, 0.31396484, -0.5678711, -1.5302734, 0.36547852, 0.8725586, -0.75439453, -1.7080078, -2.8378906, -1.1044922, -2.0351562, 0.94677734, -0.38720703, 1.0390625, -0.37451172, -0.77246094, 2.0566406, 0.6713867, -0.46728516, -0.5058594, -1.8642578, 3.6972656, 1.4228516, -2.5996094, 2.6308594, -2.21875, -1.2021484, -1.7919922, -0.19665527, 2.6289062, -0.22314453, 3.0703125, 0.05923462, 0.00022315979, 0.14099121, 0.5439453, 0.39990234, -1.9794922, -0.46728516, 1.1962891, -3.0429688, -1.4794922, 0.12310791, 3.0546875, -1.9902344, 0.3569336, 2.9609375, 1.6035156, 2.1796875, 2.6054688, 1.2148438, -0.12719727, -0.3803711, -0.25073242, 3.1992188, 0.53515625, 0.38134766, 0.08416748, 0.88916016, 0.3388672, 0.96972656, 1.5712891, 0.5253906, 3.7617188, 2.65625, 0.99658203, 0.05987549, -0.30249023, 0.13232422, 1.4824219, 1.8486328, 3.7675781, 0.82421875, 0.91259766, -0.38671875, -1.1347656, 1.2470703, -2.7402344, -2.0332031, 0.3479004, 0.46850586, 1.1699219, 1.1435547, -0.15820312, 0.18371582, 0.63964844, 0.5708008, -0.33984375, -0.19128418, 0.94433594, 0.4284668, -0.21203613, -1.1611328, 1.5263672, 0.04763794, -0.99121094, 0.1899414, 1.3144531, -1.6162109, -2.421875, 0.9873047, -0.49365234, -0.44873047, 3.2753906, 0.7758789, -0.84765625, 0.8852539, -0.3774414, -0.51904297, 0.51660156, -2.1152344, -0.14538574, -2.8515625, 0.07098389, -0.19641113, 1.0214844, 1.8828125, 1.796875, -2.0957031, 1.8496094, -3.1054688, 0.2709961, -0.27075195, -2.1269531, -1.6621094, 1.1884766, -0.4897461, 0.2052002, -0.46044922, 3.8886719, -1.0849609, -0.28564453, 2.3261719, -2.8574219, 0.018035889, -2.1757812, -3.4941406, 1.2050781, -1.1181641, -0.5415039, 2.3808594, 0.5107422, 0.640625, -0.30639648, 1.7949219, -1.8222656, -1.3212891, -0.20153809, 1.2128906, -1.7392578, -1.0576172, 2.1523438, -0.5131836, -2.5078125, -2.453125, -0.26489258, 0.5498047, 0.515625, 1.6630859, -3.7167969, 1.09375, -0.9277344, -0.12902832, -0.5258789, -0.17883301, -0.07720947, -2.1660156, -0.121276855, -2.5917969, 0.9511719, 0.78027344, 0.3293457, 0.11468506, 3.1621094, 0.9658203, -1.5332031, 1.2460938, 1.296875, 2.2421875, 0.07019043, -2.1601562, -2.7421875, 1.5878906, -0.56347656, -0.51464844, -0.23547363, -2.1523438, -0.7451172, 2.5605469, 1.5722656, 1.2822266, 0.13024902, 0.98095703, -3.3847656, -1.4648438, 1.5673828, -2.5820312, -1.9326172, 1.4746094, 1.5605469, -1.7304688, 0.54052734, -1.9589844, -0.7182617, 0.23059082, -0.25097656, -2.4023438, 2.5820312, 2.4335938, 0.8330078, 1.5605469, -0.27685547, -3.171875, -0.06451416, 0.9213867, -1.4316406, 1.1699219, 0.15881348, 0.36767578, 1.8154297, 1.2226562, -1.5009766, -0.66845703, 3.3007812, -1.5390625, 0.94384766, -2.734375, -0.18017578, -1.1640625, -0.30200195, -0.4777832, -1.4287109, 1.7949219, 1.3183594, -0.84521484, 0.3083496, 1.1162109, -1.6484375, -0.26757812, 1.8447266, 0.17736816, -0.25170898, 1.9521484, 1.2871094, -0.50341797, 0.51123047, -0.00724411, 1.1386719, 1.8261719, -0.3486328, 0.14660645, -0.098083496, -0.36914062, -1.9667969, 2.7128906, 1.3701172, 1.2773438, 3.7324219, 1.7822266, -0.5522461, -0.5883789, 0.17089844, -3.0527344, -1.2978516, -0.26220703, -1.0605469, 1.5810547, -0.03564453, -2.1308594, 0.51464844, 4.6210938, -0.95166016, 2.5605469, 0.67578125, -0.9111328, 1.2890625, -1.9404297, -1.4023438, -2.4511719, 0.99072266, 0.51904297, -1.84375, 0.6743164, -1.9560547, 1.9326172, 1.6064453, 0.18811035, -0.88378906, 1.9638672, -1.1513672, 0.91845703, -1.0097656, -1.0615234, -2.4003906, 1.609375, 2.6503906, 3.0039062, 0.84814453, 1.2363281, 0.72265625, -1.1953125, -1.1679688, -0.36743164, 2.4824219, -2.2304688, -2.3925781, 0.96875, -0.43847656, 0.6557617, -2.3164062, -0.6796875, -0.34887695, 0.6459961, 1.4628906, 1.0615234, -0.118774414, 0.18664551, -1.4169922, -5.0859375, -0.7583008, 1.53125, -0.25390625, -1.0351562, -1.8964844, -0.7866211, -0.21643066, -1.2177734, -0.80566406, -2.5605469, -0.09454346, -1.9257812, 0.081970215, 0.9560547, 1.8300781, -0.74072266, -0.42041016, 0.94921875, 0.080566406, 0.8774414, -2.3320312, -1.8515625, 0.8408203, -1.5898438, 0.20996094, 1.4589844, 1.0126953, 0.39501953, 3.5546875, 0.3635254, -2.4355469, 2.859375, -2.0820312, -0.04321289, 0.6435547, -1.5517578, 0.59521484, -0.29003906, -1.1044922, 1.1816406, -1.5556641, -0.54833984, -0.6796875, 0.91503906, -0.80566406, 0.98095703, -0.30517578, -2.2207031, 1.8867188, -0.8286133, 1.4570312, 2.3828125, -1.1201172, -1.1191406, -1.4697266, -0.9067383, -0.48486328, -3.5898438, 0.18884277, -0.9453125, -0.28930664, 1.2392578, 0.38183594, 0.7451172, 0.5288086, -0.42211914, -0.7421875, 1.2890625, 0.18066406, 3.3046875, 1.796875, -2.3007812, -1.4023438, -1.4052734, 0.10644531, 1.4941406, 0.7158203, -0.5957031, 0.96191406, 0.5151367, 0.22460938, -0.5864258, 0.32202148, 2.7441406, 1.4316406, -1.1533203, 0.93115234, 3.7695312, 0.24475098, -0.5180664, 0.68115234, -1.0712891, 0.40185547, 3.0136719, 2.2324219, -0.46557617, 1.4277344, -2.8828125, 2.4296875, -0.45996094, -2.5136719, 0.37890625, -2.2089844, -1.3857422, -2.5292969, -3.2128906, -2.7753906, 0.032226562, 1.0107422, -2.234375, -1.0576172, 3.4257812, 0.099609375, 1.203125, 2.3222656, 2.8613281, -0.11798096, 0.95996094, -1.5439453, -0.81152344, 2.4492188, -2.5917969, 1.3476562, 1.4443359, 0.0770874, -1.0048828, 1.4140625, 1.4707031, 3.734375, 0.51464844, 1.4570312, 1.84375, 0.3696289, 2.8320312, 0.99609375, 1.0400391, 1.8232422, 0.4831543, 1.2216797, 0.8574219, 0.9785156, -1.1621094, -0.12054443, -0.14770508, -1.0400391, -0.7963867, 0.51660156, -0.45629883, 0.7138672, -3.8027344, 0.41308594, -1.2666016, 0.6064453, -2.0917969, 0.8774414, -0.7548828, -1.0048828, 0.38671875, 0.07196045, 0.2565918, -0.18286133, -1.0253906, -0.23327637, 0.22814941, 1.3085938, -0.95947266, 1.4169922, -0.8198242, -2.4140625, 1.0712891, 0.08001709, -0.087646484, 0.46948242, 0.7885742, 1.1621094, 0.33007812, 0.6640625, 2.3886719, -3.8027344, -0.19067383, 0.18261719, 2.0585938, 0.026535034, -0.7680664, 3.140625, -1.1181641, -2.1230469, -4.96875, 4.8710938, 1.1630859, 0.35791016, -0.059448242, -2.2910156, 2.5859375, -1.1865234, 1.3310547, -3.4707031, 2.1875, 0.36914062, 0.1270752, -0.64453125, 0.066101074, -1.9072266, 3.4257812, 1.6943359, -1.7060547, 0.46118164, 2.375, 0.91503906, 0.72265625, 1.0742188, 0.13232422, -1.7246094, -1.3447266, 2.5273438, 0.63623047, -2.3300781, 0.50146484, 2.2324219, 1.0332031, 1.2568359, 1.4521484, 0.056121826, -1.0712891, -0.98828125, -0.5722656, -0.79785156, -2.0429688, -1.2861328, -1.0019531, 0.35424805, -1.6982422, -2.0527344, 0.72216797, 0.22607422, -0.27905273, 0.41064453, 2.3085938, -0.40039062, 0.3017578, 1.1464844, -0.19616699, -0.0035076141, -1.0126953, 0.8022461, -1.4775391, -1.4267578, -0.72558594, -0.85595703, -0.88378906, 0.36499023, -0.24328613, -1.5849609, 0.03164673, -0.40942383, 1.2001953, -0.67041016, 1.1230469, 0.76416016, -1.4951172, -0.2866211, 2.5058594, -1.3330078, -0.18115234, 0.3388672, -2.609375, 0.20910645, -0.3083496, -1.2587891, 0.54541016, 3.5800781, 1.2822266, 1.5888672, -3.5410156, -2.3203125, -1.53125, -1.9677734, -0.34545898, -0.59814453, -1.0410156, 0.10430908, 1.6650391, 1.9648438, -0.53222656, 0.16223145, -0.35229492, -1.1630859, 1.4091797, 1.3046875, 2.1855469, -0.47314453, 0.53466797, -0.4741211, 2.2578125, 2.6210938, -0.74072266, 0.63378906, 1.0410156, -1.3222656, -3.8222656, 0.70996094, -0.79785156, 0.29223633, -0.21118164, 0.82910156, 2.6992188, 0.56689453, -0.5185547, -1.9511719, -1.8671875]}, "B010Y82OQU": {"id": "B010Y82OQU", "original": "Brand: Camco\nName: Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protect your propane bottles from flying debris\nCompatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top\nDimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D)\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer.\n", "embedding": [0.33666992, 1.1220703, 3.5761719, -0.4338379, -1.2275391, -2.2480469, 0.24182129, -0.4411621, 1.6904297, 1.8125, 0.82373047, -0.059753418, 0.47607422, -3.6054688, 1.5800781, -1.0292969, -0.5136719, 1.9169922, 2.9179688, 0.32055664, 2.2910156, 0.41674805, -0.5292969, -0.6196289, 0.78759766, -0.68847656, 3.0488281, -1.8574219, -2.1699219, 0.77246094, 1.1201172, 0.74072266, -0.19567871, 2.7402344, 1.0986328, -1.2910156, -0.4650879, 0.13110352, -3.1699219, 0.1940918, -3.7910156, -0.5546875, 3.7792969, 1.2314453, -0.69921875, -0.123168945, -0.30419922, -1.921875, 1.4169922, -2.2246094, -0.19006348, 1.5400391, 1.3798828, 0.86035156, -1.4492188, 0.16064453, 0.27416992, -1.3017578, 0.28466797, 1.7880859, -1.0253906, 0.09613037, -2.1542969, 1.3994141, -1.4257812, 1.0751953, -1.8994141, -0.96875, 0.5385742, 2.2714844, 1.28125, 2.0214844, 0.41674805, -1.8623047, 1.0175781, 0.35546875, -1.8828125, 0.5600586, 0.8623047, -2.1289062, -0.41577148, 2.8671875, -1.8974609, -2.4179688, -1.6455078, -1.5449219, -0.14990234, 1.0488281, -0.43359375, 0.6479492, -0.9560547, 1.6953125, -2.6289062, -3.5488281, -1.0810547, 0.5751953, 2.0410156, 1.5751953, 3.5136719, 2.7089844, 0.00063848495, -0.42822266, -1.9306641, 1.6953125, -2.8398438, -2.421875, 1.6542969, -1.8994141, -1.7021484, 1.4580078, 0.07373047, 0.3737793, 0.3972168, -2.1445312, -0.17773438, 0.68115234, -0.39233398, 0.14819336, 1.9326172, 0.6791992, 4.6328125, -0.81103516, 0.5996094, -1.2089844, 2.1269531, 1.5126953, -0.23876953, 1.5380859, 3.0644531, 0.18774414, 1.6044922, 0.44433594, 0.34570312, -0.38891602, 0.8383789, -0.01309967, -1.3505859, -1.3339844, -2.0996094, 1.1103516, -3.3964844, -0.015052795, 0.62597656, 0.55908203, -3.8164062, -0.93115234, -1.7148438, 1.671875, -1.0117188, -2.7460938, -0.26293945, -3.390625, -0.9838867, -0.9013672, 0.30419922, 0.72216797, -0.013748169, -3.9863281, 0.99365234, 2.5371094, 3.6464844, -0.78466797, 0.0004506111, 1.4511719, 0.84228516, -2.078125, 0.33154297, -0.53222656, -1.5292969, 1.0527344, -0.3239746, -1.5869141, 0.04498291, 0.58154297, -1.1552734, -0.35253906, 1.7675781, 1.2900391, 1.0283203, -0.39819336, -2.9160156, -0.2902832, -0.6411133, -0.76904297, 0.56152344, -0.90234375, -2.0488281, -0.93896484, -0.28051758, -0.3696289, -2.2050781, 0.6479492, -0.734375, -0.43481445, -1.1181641, -3.1796875, -2.0039062, -1.9003906, -0.024505615, 1.6181641, -0.50683594, -0.9189453, -0.69433594, 0.7216797, -2.3085938, -0.7114258, 2.6113281, 1.4648438, 1.359375, 0.5756836, 0.16711426, -0.5708008, 1.7177734, -1.796875, -2.0664062, -1, 0.30249023, 0.6508789, 1.3251953, 1.6181641, 0.78271484, 0.60595703, 0.91748047, 0.71533203, 0.69970703, 2.9667969, 0.84375, 1.2060547, -1.3007812, -0.7709961, -0.23840332, 1.6162109, -1.9121094, 0.17504883, -0.6357422, 1.3398438, -0.30029297, -1.1044922, -0.065979004, -0.78466797, 1.1201172, -0.04421997, -1.5839844, -0.7944336, 1.8671875, 2.7695312, -1.0957031, 1.9550781, 2.5273438, -1.1992188, 0.32617188, -0.7895508, 0.5957031, -1.109375, -0.77685547, 2.0683594, 1.1953125, -0.0026855469, 0.60791016, -3.3535156, -0.26733398, 1.1455078, -1.4667969, -0.077697754, -0.17211914, 1.7919922, 0.8105469, -0.48706055, -1.4160156, 1.4287109, 0.8251953, 0.14953613, -0.0017156601, -0.7104492, 1.3007812, 0.9838867, -0.025283813, 1.6806641, 0.9038086, 2.40625, 1.5302734, -0.2680664, 1.6542969, -3.2734375, 1.6347656, -0.105041504, 2.5058594, 0.041778564, -2.3066406, 0.6376953, 2.0761719, -0.004623413, -0.20788574, 1.7021484, 3.7753906, 1.2675781, 3.9296875, -0.52685547, -0.22558594, 0.97509766, -1.4824219, 0.23303223, -0.9321289, -0.06744385, -0.31860352, -1.0068359, -0.36279297, -0.71777344, 1.4931641, 0.7265625, 1.0371094, -1.1630859, -1.6181641, 0.17956543, -1.0136719, -0.90234375, 4.0898438, -2.1660156, -0.031341553, 2.1152344, 1.1210938, 2.4179688, -0.4020996, -1.8623047, 1.1679688, 0.7294922, -1.8125, 0.93847656, 0.8251953, 0.50341797, 0.50683594, -2.6289062, 2.5996094, -0.18322754, 0.46069336, 0.4892578, -2.3574219, -0.69091797, 0.73095703, -1.0644531, 1.0859375, -1.5039062, -1.9472656, 2.5390625, 1.0634766, -0.5996094, -0.40405273, 1.984375, -0.87646484, -1.2167969, 0.16625977, 1.8525391, -1.2167969, -4.3007812, 0.44262695, -0.17871094, -1.6904297, 1.9951172, -1.0166016, 0.44482422, 0.065979004, 2.2109375, 2.3613281, -0.7871094, -0.7915039, 0.21118164, 0.76123047, -3.6640625, 1.5400391, -2.8574219, -0.5776367, -3.0273438, -0.15026855, -1.8232422, -2.0761719, 1.7832031, -1.4628906, 3.4589844, 1.4228516, 1.6191406, -0.6899414, -1.5517578, -0.13098145, -1.5693359, -2.3027344, -0.24279785, 1.6103516, -1.8271484, -0.057434082, -5.1328125, -0.61279297, -2.453125, -0.50390625, -0.5444336, -1.5791016, -0.9638672, -0.5878906, -0.80615234, -0.37109375, -0.19946289, 2.640625, -0.34814453, -1.3730469, -0.26171875, 0.19348145, -1.1025391, -0.96875, -0.85009766, 1.3554688, -1.0917969, 0.34765625, 0.36987305, -1.4306641, 2.9511719, -1.4716797, -4.3398438, 0.57128906, 3.2851562, 1.3955078, 1.8496094, -1.4101562, -1.546875, -1.9423828, -0.5986328, 2.71875, 2.7695312, 1.8144531, 2.0371094, 0.103393555, 0.8261719, -1.0390625, 0.10827637, 0.17004395, 1.3242188, 2.9179688, -1.1953125, 0.49682617, 2.1074219, 3.6738281, -3.1855469, -0.9951172, 0.6977539, -1.9130859, 3.5039062, 2.7910156, -2.9882812, -0.9199219, 0.83154297, 2.2480469, -0.8041992, 1.8203125, 0.62646484, 1.4423828, 2.3535156, 0.6459961, 0.6040039, 2.1308594, 0.42236328, -1.2216797, 0.7651367, 1.1142578, -1.7900391, -0.16992188, 0.82128906, -2.3613281, -0.072387695, 1.9423828, -0.49072266, 2.4785156, 1.5058594, -1.2441406, -1.6855469, -2.2148438, 0.8173828, 0.44189453, 0.43920898, 0.14379883, -0.16882324, -1.2744141, 0.09942627, -1.9042969, 1.9326172, -0.7182617, -1.1318359, 1.4355469, -2.6445312, -0.7988281, -2.4511719, 3.4335938, -0.5986328, -0.32861328, -0.3034668, 1.7275391, -1.0908203, -2.2460938, -0.76220703, -0.44702148, -2.9492188, 3.9941406, 3.9785156, -3.2734375, -0.33764648, -2.15625, 2.5195312, 1.2519531, -1.0996094, -1.0644531, -2.5585938, 1.6923828, -2.2871094, -0.27416992, 0.57470703, 2.0058594, -2.3710938, -0.3022461, -0.3642578, 2.1738281, 1, -0.7910156, -0.5859375, 0.31445312, -2.8535156, 2.4160156, -0.25683594, 2.2441406, -0.076049805, 1.9121094, 0.5595703, -0.7597656, 1.4785156, 0.51171875, -2.6835938, -0.81152344, 0.13000488, -0.2109375, 4.8476562, 0.31982422, 1.5498047, 0.5991211, 0.39648438, -3.9941406, -1.1826172, -2.4082031, 1.1123047, -2.9082031, -1.6474609, 1.1679688, 0.91015625, -2.7617188, -1.7001953, -0.3955078, -2.1914062, -0.27978516, -0.796875, 0.46044922, 1.4316406, 0.36450195, -0.27124023, 0.37548828, 0.7602539, 0.29882812, -0.40063477, -1.1513672, -1.8847656, 2.4648438, -0.4255371, 0.41064453, 0.4794922, 2.2695312, 1.1494141, -1.4589844, -0.5654297, -1.859375, 1.0214844, -1.3730469, -3.2636719, -0.72314453, -0.46948242, 0.7236328, -0.23461914, -0.024017334, 1.2460938, 1.2509766, 0.37963867, -0.2512207, 1.0761719, 1.4355469, -2.8769531, -1.7822266, 3.0292969, -0.93359375, 0.61328125, 0.5185547, -0.35668945, 1.3007812, -1.3544922, -1.0048828, -2.6171875, 0.69091797, 0.5439453, 1.8056641, -4.7773438, 1.7978516, 2.546875, 2.8242188, 1.3925781, -0.21508789, -1.4658203, 0.8027344, 1.609375, 1.421875, -1.1767578, 0.47827148, 0.23254395, -0.6035156, 0.41503906, -2.4101562, -1.3173828, -0.55078125, -1.9794922, 0.44018555, -0.8676758, 0.93847656, -2.0390625, -0.6542969, 0.4243164, -1.6894531, 3.8085938, -2.2519531, 1.1923828, -0.24401855, -1.1005859, -1.640625, 3.0332031, 0.9013672, -0.19335938, 2.1660156, -2.2910156, -0.9199219, -0.19445801, 1.7607422, 0.63183594, 0.44262695, -0.84521484, -1.796875, 0.15966797, 1.0605469, 0.26171875, -1.5146484, 1.9150391, 2.8125, 1.1748047, 0.79541016, 3.0566406, 0.33007812, 1.6943359, 1.1142578, -1.140625, -1.1914062, 0.21691895, 1.6347656, 3.3808594, -1.4726562, -4.0742188, 2.359375, 1.2392578, -0.25927734, 1.4023438, -0.101989746, -0.90283203, -0.62939453, -3.8242188, -1.9599609, -0.44482422, 1.3554688, -0.19555664, -0.4663086, 1.0214844, -0.22290039, 0.60595703, 3.9414062, 1.0195312, -1.8447266, 0.12109375, 1.8203125, -2.4492188, -3.8457031, -1.9082031, -4.3984375, -0.27661133, -0.6977539, 1.4277344, -0.2265625, 1.3105469, 2.7265625, -2.1542969, -0.36010742, -0.58496094, 0.051483154, -1.8056641, -1.5625, 1.9355469, -0.1665039, -0.56689453, -0.0074310303, 0.5991211, 0.6508789, 2.5429688, 1.9169922, -0.6796875, -0.44702148, 0.36254883, -3.3046875, -4.7773438, -1.0771484, 1.0751953, -0.5415039, 0.5102539, -1.0029297, -1.3955078, 0.9116211, -2.0546875, 0.33544922, -2.1230469, 0.51464844, -1.0429688, -1.4375, -0.63134766, -0.3564453, -0.41235352, 0.6928711, -0.9213867, -1.0019531, -1.9306641, -3.6445312, -3.2890625, 1.4023438, -1.0068359, -0.22473145, 0.75146484, -0.004207611, 1.9345703, 1.0410156, 1.8076172, -0.8676758, 2.1582031, -1.3603516, 0.48242188, 2.4589844, 0.35375977, -1.4804688, 3.3652344, -0.30639648, 1.6367188, 2.0488281, 1.6748047, -2.8085938, 0.7402344, 1.0126953, -0.25610352, -0.70166016, 1.6074219, 2.4863281, 0.45043945, 1.4550781, 1.7597656, -1.6728516, -1.8193359, -1.2333984, -0.90625, -1.4570312, -1.6796875, -1.4785156, -0.43359375, 0.78125, 2.8046875, 0.7919922, 1.2832031, 0.5258789, 1.0986328, -2.3339844, 0.58740234, -1.6826172, 0.73291016, 0.57177734, -2.6113281, -2.4550781, -2.7695312, 3.4609375, 0.021957397, 0.46191406, 0.39453125, 0.55078125, -0.5888672, 1.9580078, 0.6191406, 0.86376953, 0.3605957, 2.5117188, -1.4335938, 1.1621094, 3.4140625, -0.24658203, -0.20495605, -0.96240234, 0.14501953, -0.76416016, -0.45825195, 3.2402344, -2.8007812, -0.3569336, 0.5678711, -0.17663574, -0.31640625, -0.9814453, 0.22180176, -2.5898438, -0.41064453, -1.4580078, -1.4101562, -4.5976562, 2.0957031, -0.3840332, -0.3227539, 1.4384766, 0.5541992, -2.2207031, -0.28564453, 2.3144531, 0.097473145, -0.99609375, -0.8828125, -1.109375, 0.08081055, 2.2890625, -3.1054688, 0.41235352, -1.890625, 0.61279297, -0.61328125, 0.22717285, 0.17980957, 0.48999023, 2.8378906, 2.2421875, 3.9785156, -0.23278809, 2.0957031, 0.2487793, 1.0419922, 2.5527344, -1.3535156, -0.23120117, 0.85498047, 2.3789062, 3.2636719, -1.578125, -0.029876709, 0.9326172, -0.8984375, -1.1728516, 0.81152344, 1.5800781, -3.6601562, -0.5727539, -0.4567871, -0.49682617, 1.7949219, 1.6572266, -2.203125, -2.6816406, -0.39111328, -1.1689453, 2.3886719, -0.5810547, -0.40698242, 0.65722656, 1.0849609, 1.5292969, -0.09051514, 0.17102051, -2.6542969, -1.7597656, -0.16516113, 1.1064453, 0.10308838, 1.1015625, -0.29614258, 1.1289062, -0.5805664, 1.4443359, -0.55859375, -1.4267578, 2.1425781, -1.2109375, 1.9130859, 2.4960938, -1.3544922, -0.115356445, 0.9453125, -0.3383789, -3.0195312, -0.56591797, 0.5805664, 0.7319336, 0.46435547, -3.7988281, -0.057495117, -0.87109375, 1.5849609, -2.78125, -0.26513672, -0.5048828, -4.4765625, 1.1435547, 1.6279297, -0.94140625, 3.6914062, 0.97998047, -0.41308594, 0.5053711, 0.29785156, 0.79785156, 0.72558594, -0.0010175705, 0.47998047, 0.4350586, -1.0175781, 2.8789062, 1.9267578, -0.14050293, 0.21655273, 2.4160156, 0.44360352, 0.49072266, 1.5292969, -2.1582031, 3.1171875, 1.0693359, -0.3330078, 0.7734375, -2.2226562, 1.6005859, -0.31347656, 0.69091797, 1.0644531, -0.27954102, -0.41748047, 2.0800781, -3.2695312, 0.24902344, 0.41748047, -0.3388672, 2.1992188, 0.70214844, -0.96484375, -1.2841797, 0.17272949, 1.2236328, -2.0039062, 0.7109375, -1.2226562, 1.6191406, -0.27612305, -1.4462891, -0.74658203, 0.9736328, -0.4387207, -0.49609375, 0.71777344, 0.14831543, -0.2722168, -0.69970703, -0.19726562, 0.6767578, 0.0690918, 0.72509766, -0.59472656, -0.6777344, -0.42260742, 0.8046875, -0.007041931, -0.046691895, 0.59716797, 1.75, 1.8271484, 1.0009766, 2.2636719, -2.4160156, -1.3300781, -3.8691406, 2.8632812, 1.4042969, -1.6875, 0.6303711, 1.8144531, 2.3242188, -2.0195312, -1.3369141, 0.041778564, 0.46948242, 1.5068359, -1.5917969, 0.5649414, 0.48266602, -0.6870117, 0.9873047, 3.8691406, 3.2246094, -1.078125, 0.08111572, 1.359375, -2.9023438, -2.1621094, -1.3046875, -0.32421875, -2.1386719, 0.27734375, 2.890625, 4.109375, 0.7734375, -0.8154297, -3.1503906, -0.796875]}, "B077RVXR9Y": {"id": "B077RVXR9Y", "original": "Brand: BroilPro Accessories\nName: BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder\nDescription:

BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


\u203bBroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
\u203bMaterial:Heavy Duty Vinyl With 300D Polyester lining.
\u203bDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
\u203bThis propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
\u203bEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

\nFeatures: Material:Heavy Duty Vinyl With 300D Polyester lining.\nDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.\nThis propane tank cover is prevent your cover from experiencing premature fading and damage from the sun.\nEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit.\nWarranty- 90 Days 100% Money Back and 24 Months Guarantee.\n", "embedding": [0.9819336, 2.7324219, 2.2519531, 0.30493164, -1.0429688, 0.011268616, 1.4335938, -1.1962891, 1.9169922, 2.1269531, 1.4462891, -0.055389404, 1.5429688, -4.8359375, 0.52001953, 1.1640625, -0.22229004, 1.9658203, 5.078125, 1.4189453, 1.8291016, 0.29516602, 0.61572266, 0.11138916, -0.5805664, -0.7558594, 3.609375, -2.2324219, -3.0292969, 0.74072266, 1.2978516, -0.7055664, -0.56103516, 1.4404297, -1.2050781, -2.3886719, -0.65283203, 0.6582031, -2.265625, -0.9086914, -2.6035156, -0.10107422, 3.2675781, 1.8271484, -1.7958984, 0.69921875, -1.484375, -0.31982422, -0.5415039, -1.7763672, 0.5185547, 1.5712891, 1.7939453, 1.7119141, -1.1533203, 1.9306641, -0.30615234, -1.4697266, -2.1777344, 0.14538574, 1.7744141, -0.82666016, -2.0449219, 2.25, -0.69873047, 1.1787109, -1.8134766, -1.1396484, 0.6303711, 1.5283203, 2.4707031, 0.49389648, -0.2536621, -1.4833984, 1.9296875, -0.94140625, -2.9824219, 0.22265625, 0.9555664, -1.8662109, 0.9741211, 5.2890625, -1.421875, -1.8017578, -0.7871094, -1.0810547, -2.3671875, 0.28808594, 1.9033203, 0.5336914, -0.8901367, 3.125, -1.7451172, -3.9902344, -0.11968994, -1.3242188, 3.9160156, 1.0566406, 3.3144531, 1.1542969, 0.47192383, -0.84033203, -2.71875, 0.9824219, -1.3623047, -1.6494141, 0.58203125, -1.5009766, -1.3222656, -0.43945312, -0.8540039, 0.49316406, 3.5253906, -0.68310547, -0.34179688, -0.5727539, -2.4589844, 1.8369141, 2.5703125, 2.7597656, 3.5449219, 0.01737976, 0.20019531, -1.7529297, 1.2597656, 1.2744141, -1.5849609, 1.2324219, 2.8300781, -1.1806641, 1.6005859, -1.65625, 0.9667969, -0.60009766, -0.33032227, -0.8383789, -2.1992188, 0.28320312, -2.5410156, 0.08892822, -2.2089844, -0.99853516, 0.3857422, -0.16113281, -3.1035156, 0.09124756, 0.1463623, 1.6181641, -0.7944336, -2.3203125, 0.49243164, -2.6425781, -0.10455322, -1.0302734, 1.5126953, 1.3447266, 0.21289062, -3.1640625, 2.4023438, 1.4501953, 2.296875, -2.3730469, 2.1777344, 2.1796875, 0.38842773, -3.0703125, 1.140625, 0.85009766, -0.60595703, 1.6357422, 1.0263672, -2.3730469, -0.7480469, 0.79248047, 0.34692383, -2.0878906, 0.9433594, 2.6953125, 0.032958984, -0.107421875, -2.6933594, -2.7050781, -0.40039062, 0.6142578, 0.12164307, -0.45898438, -2.4628906, 0.021133423, 1.3330078, -0.8256836, -1.9501953, 1.8291016, 0.41015625, -0.1694336, -0.8286133, -1.9990234, -1.6806641, -1.3896484, -0.54345703, 1.28125, -2.2207031, -1.4267578, 0.1237793, -0.4777832, -2.5449219, -0.8725586, 2.3007812, 0.17053223, 0.42211914, 2.1699219, -0.7416992, -1.6611328, 3.0253906, -0.9458008, -1.1621094, -0.8208008, 2.953125, 0.8046875, 1.9892578, 1.7666016, -1.1835938, -0.44726562, 1.0673828, 2.5761719, 1.7412109, 2.2050781, 0.8618164, 1.1865234, -2.3613281, 0.20263672, 0.47094727, 2.5, -0.76708984, 0.65185547, -2.0507812, 0.9428711, -0.059936523, -3.5957031, 0.84375, 0.5317383, 0.42651367, -1.296875, -1.4013672, -2.3222656, -0.38110352, 4.6679688, -1.8398438, 1.6650391, 3.1347656, -0.59033203, 0.65185547, -1.5195312, 2.4550781, -1.1230469, -0.52197266, 1.5380859, 0.63916016, 0.94140625, -1.5039062, -2.7949219, 0.984375, 0.6459961, -1.9248047, -0.009391785, -0.059661865, -0.23913574, 2.2441406, -0.013946533, -2.8535156, -0.7832031, 1.5732422, 1.0341797, -1.4208984, -2.2265625, 2.0371094, 1.1425781, -1.1181641, 2.671875, 0.13098145, 0.37109375, 1.1640625, 0.5493164, 1.7070312, -2.1074219, 1.1386719, 2.2871094, 2.4160156, -0.88671875, -1.3662109, 0.3972168, 4.296875, 0.3486328, -0.45410156, 3.1230469, 1.2597656, -0.65283203, 1.328125, 0.077819824, -0.68896484, -0.92041016, -0.6953125, 0.6064453, -0.27319336, 0.24890137, 1.5820312, -1.6181641, 0.101379395, -0.4091797, -0.6245117, 0.51708984, -0.11834717, -0.9243164, -1.6708984, 0.030075073, -1.4179688, -1.2568359, 2.875, -2.5195312, 1.2646484, 1.0273438, 0.29663086, 2.1621094, -0.17492676, -1.3583984, 0.9057617, 0.9628906, -1.6259766, 0.5107422, 1.0371094, -0.1895752, -0.57373047, -1.6220703, 2.5800781, -0.07122803, -1.2060547, 0.19873047, -2.5703125, -1.4501953, -0.0317688, -0.9160156, -0.03274536, -1.3759766, -2.3105469, 2.2382812, 0.8051758, -1.1669922, -0.51220703, 0.98828125, -1.4208984, -2.8203125, -0.04019165, 0.6323242, -0.087890625, -4.71875, 0.59521484, -2.0839844, -1.2558594, -1.4296875, -0.3864746, -0.47070312, -0.23181152, 0.40356445, 0.98291016, 0.6411133, -0.22216797, 0.2619629, 1.5830078, -3.7285156, 1.3828125, -2.6855469, 0.30810547, -2.8925781, -1.3085938, -2.9277344, -1.4375, 1.1787109, -1.9677734, 2.4082031, -0.005001068, 1.6484375, -1.1474609, -0.32739258, 0.64404297, -0.9350586, -3.5839844, -0.4831543, -0.43774414, -1.5205078, -0.3244629, -4.390625, -0.5708008, -1.5087891, -1.3837891, 0.04244995, -1.5224609, -1.1455078, -0.5024414, -0.82177734, -2, -0.60253906, 1.2294922, -0.049957275, -1.3466797, 0.30639648, -1.2197266, -2.5507812, -0.6333008, -1.5400391, 2.0527344, -2.1269531, 0.8833008, 0.67626953, -1.7695312, 3.5292969, -2.0996094, -3.3769531, 0.29638672, 2.6796875, 0.27246094, 1.7431641, 0.28735352, -1.703125, -1.921875, -0.58154297, 2.1777344, 2.4765625, 1.7880859, 2.6875, -0.49291992, 1.0595703, -0.37670898, 0.038208008, -0.7631836, 1.1494141, 3.6230469, -1.6132812, -0.31640625, 0.95947266, 3.6035156, -2.4550781, -0.058135986, 2.2011719, -0.20507812, 2.4355469, 1.6601562, -0.5620117, 0.11248779, 0.13635254, 1.3994141, 0.43969727, 2.0839844, 0.8129883, 1.3984375, 2.25, -0.08856201, 1.5908203, 2.9160156, 0.234375, -0.48120117, 1.2929688, -0.009986877, -1.1679688, 0.9042969, 0.61572266, -0.46777344, 0.97021484, 3.0800781, -0.8100586, 1.0800781, 0.03677368, -1.0751953, 0.2800293, -1.6494141, -0.3310547, 3.3847656, 0.58935547, -2.0449219, -0.7036133, -0.90234375, -0.3317871, -1.9619141, 0.8100586, 0.46704102, -1.2255859, 0.2783203, -1.7919922, 0.19909668, -1.3359375, 1.9179688, -0.9355469, -1.7421875, 0.16760254, 0.6118164, -1.8857422, -3.6152344, 0.080078125, -0.3359375, -2.5800781, 4.0742188, 2.6875, -2.6308594, 0.3935547, -2.7167969, 2.0175781, 2.5214844, -1.4697266, -0.70458984, -1.0048828, 0.41430664, -1.4189453, 0.21875, 1.5224609, 1.3662109, -2.6425781, -0.15197754, -1.4306641, 1.3105469, 1.0634766, -1.6953125, -0.72216797, 1.2841797, -0.08917236, 2.1855469, 1.9072266, 2.8144531, -0.41479492, 0.023925781, 1.0253906, -2.0917969, 0.66259766, -1.2900391, -4.0039062, -0.44726562, 0.31518555, -0.49194336, 2.8378906, 0.02130127, 0.32885742, 1.0234375, 0.3605957, -2.5527344, -0.27246094, -1.7617188, 0.60009766, -0.703125, -0.3100586, 2.3066406, 1.7958984, -1.4033203, -1.1630859, -0.0014305115, -2.1386719, 0.078125, 0.5395508, -1.5693359, 1.4619141, -1.7021484, 0.26782227, -1.5283203, -0.10595703, 0.56689453, 0.19396973, -1.3642578, -1.2666016, 3.0644531, -0.052093506, 0.58740234, -1.1376953, 1.5107422, 1.65625, -0.6645508, -0.19677734, 0.052246094, 2.4941406, -0.5083008, -2.1464844, -0.045776367, -0.40625, -0.19348145, 0.70751953, -1.6650391, -1.6943359, 0.2902832, -0.1583252, -0.29052734, 1.6132812, 2.4101562, 0.56640625, -2.2246094, 1.6005859, 0.06341553, -0.55859375, -1.2871094, 0.8276367, 0.54345703, -0.79541016, -1.0791016, -2.9296875, 0.4658203, -0.7524414, 0.115722656, -4.2382812, 3.0859375, 2.4179688, 2.3945312, 1.6835938, -1.0166016, 0.036132812, -0.0703125, 0.80615234, 0.72314453, -0.7504883, -0.90283203, 0.87939453, 1.5068359, 1.2197266, -1.2041016, -0.49414062, -0.0126571655, -2.4882812, -0.054901123, -0.4736328, 2.4765625, -2.1425781, -0.47460938, 0.80615234, -3.0761719, 3.8222656, -1.7001953, -0.037261963, 0.38842773, 0.5136719, -1.3466797, 2.3886719, 0.7524414, 0.38842773, 1.4404297, 0.38671875, 0.25805664, -1.4892578, 0.3449707, 1.1875, 1.2822266, -2.4042969, 0.034088135, -1.0478516, 2.1386719, -0.43359375, -0.119384766, 0.75390625, 2.6347656, 0.49438477, 1.5664062, 2.6816406, -0.890625, 1.3857422, 1.3212891, -2.2246094, 0.3005371, -0.28222656, -1.2451172, 2.1074219, -0.59814453, -3.7988281, 0.9682617, 1.1103516, -0.4716797, 1.3740234, -2.2636719, -2.609375, 0.34350586, -2.7988281, -1.8632812, -0.52685547, 0.03805542, 0.27954102, -0.43530273, 1.5986328, 0.61865234, 1.1210938, 2.5585938, 0.7832031, -2.6347656, 0.67626953, 0.546875, -1.0986328, -2.4003906, -1.1015625, -4.421875, 0.9824219, 0.10394287, -0.22033691, 0.089660645, 0.9379883, 1.7666016, -3.6640625, 0.24560547, 0.4716797, 1.4570312, -2.1367188, 0.6123047, 3.140625, -0.828125, -1.5185547, -2.1914062, -0.58447266, 0.375, 1.6835938, 0.7084961, 0.68896484, -1.0537109, -0.47875977, -4.1953125, -5.5, -1.7939453, 1.1425781, -1.1064453, 0.9667969, -0.64990234, 0.106933594, 1.1884766, -1.5898438, -0.098083496, -3.2480469, 1.5195312, -0.120910645, -1.7773438, -1.0859375, 0.29858398, 0.10821533, 0.66552734, -0.9682617, 0.74365234, -1.3935547, -2.8769531, -1.8085938, 0.12036133, -4.21875, 0.97509766, -0.79296875, -1.5507812, 2.2441406, 0.05831909, 0.3251953, -1.0400391, 1.3974609, -0.4111328, -0.4091797, 1.1611328, -0.16809082, -1.5849609, 2.0410156, 0.12420654, 2.4667969, 1.5087891, 0.66748047, -1.1826172, 0.9165039, 1.2734375, -0.60595703, -1.3154297, 1.1816406, 1.3388672, 1.0419922, 1.0615234, 2.7890625, -0.953125, -1.5224609, -2.7714844, -1.4638672, -0.97802734, -1.9492188, -1.2148438, -1.9794922, 0.4580078, 3.8574219, 1.0498047, 0.15100098, 0.5571289, 0.6088867, -1.5146484, 0.79345703, -1.4091797, 2.1386719, 0.6743164, -2.7753906, -2.7578125, -0.9667969, 3.4707031, 0.8183594, -0.7128906, -0.35058594, 1.3447266, -1.5068359, 0.5834961, -0.18395996, 2.4609375, 1.1074219, 0.7758789, 0.12200928, 0.48461914, 4.2304688, -0.890625, 1.4619141, -0.22351074, -0.8618164, -0.60791016, 2.1875, 0.9375, -2.3261719, -0.45410156, -0.5991211, -0.53564453, 0.9428711, -0.7583008, -1.6181641, -3.2109375, 0.52783203, -0.6459961, -2.5917969, -4.9492188, 0.9946289, 0.66308594, -0.1875, 0.2668457, 2.4277344, -0.15185547, 0.45117188, 2.5234375, 0.38012695, -0.4970703, -0.23583984, -1.3232422, 0.86376953, 2.0214844, -3.4785156, 1.4150391, -1.1201172, 0.96484375, -1.7548828, 1.5634766, -0.31079102, 1.3994141, 1.8232422, 3.7480469, 3.5996094, 0.124694824, 2.4863281, -0.0435791, 1.4648438, 2.2949219, -2.0878906, -1.34375, 2.8046875, 2.0214844, 2.0507812, -1.3388672, -0.5395508, -0.6010742, -0.6254883, -0.3828125, 1.3974609, 1.3232422, -2.2050781, 1.3583984, -0.78759766, 0.43286133, 1.4052734, 1.3349609, -0.4970703, -1.1845703, -0.46606445, 0.30200195, 3.6269531, -1.5195312, 1.3984375, 0.6660156, 0.6352539, 2.7324219, -0.89697266, 0.54003906, -1.2509766, -2.8261719, 0.05026245, 2.1035156, 0.06903076, 1.0585938, 0.546875, 1.515625, -0.48046875, 1.1748047, 2.0917969, -0.6347656, 2.0761719, -0.25048828, 3.0214844, 2.6855469, -2.5136719, 0.8300781, -0.5444336, -1.140625, -2.0644531, 0.64990234, 0.37573242, 2.0898438, -0.059906006, -3.7441406, 1.2216797, -0.95166016, 2.265625, -2.0605469, -0.17041016, -0.26049805, -3.4921875, -0.117492676, 2.2539062, -2.484375, 3.7167969, 0.9194336, -1.3525391, 2.1074219, 0.0031986237, 0.7519531, 1.7607422, -0.08807373, -0.42456055, 1.4716797, 0.47265625, 3.6582031, 1.28125, -1.9140625, -0.04135132, 3.375, 0.27954102, 2.1660156, 1.7978516, -2.0078125, 2.8574219, 1.0820312, -0.16003418, 1.5664062, -1.0693359, 0.028442383, 0.20996094, -0.7675781, 0.49047852, 0.2076416, 0.28564453, 1.53125, -1.6015625, 0.3449707, 1.3017578, -0.7890625, 1.8369141, 1.1279297, -1.1699219, -1.2373047, 0.49682617, 1.2431641, -1.5732422, -0.40698242, -1.8935547, 0.34301758, -0.4970703, -2.6230469, -0.75146484, -0.20544434, -0.8208008, -0.060516357, -0.0082473755, -1.0488281, -0.2475586, -0.08325195, -1.2001953, -0.37280273, -0.20800781, 0.40551758, -1.1572266, -2.1328125, -2.1113281, -0.7163086, 0.28515625, -2.2246094, 1.4375, 2.3398438, 2.3613281, -0.3359375, 1.6064453, -3.59375, -0.61816406, -2.2382812, 1.6591797, 0.57470703, 0.21008301, 1.1826172, -0.2310791, 4.1171875, -1.2158203, -2.5546875, 0.8383789, 1.4462891, 1.0810547, 0.67626953, 1.3085938, -0.8378906, 0.8808594, 1.1494141, 4.0742188, 2.5800781, -1.6601562, 1.5693359, 1.4267578, -0.7338867, -2.7675781, -0.58447266, 0.49609375, -0.9458008, 0.39135742, 2.2324219, 2.4726562, -1.2099609, -0.12371826, -2.1582031, -0.13635254]}, "B083J4G6BK": {"id": "B083J4G6BK", "original": "Brand: WADEO\nName: WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting\nDescription: Product Specification
Propane Burner Head :
Material: High quality Cast Iron
Negotiability: Air Shutter can control the amount of air coming in.
Propane Hose and High Pressure Regulator:
Length: 4FT/48inch
Inlet Pressure: 25-250PSIG
Outlet Pressure: 0-20PSIG
Type: High pressure LPG hose

Universality:
Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

Brass Fitting\u00a0:
Material: High Quality Brass
3/8\" flare M x 1/8\" MNPT
\nFeatures: \ud83d\udd25Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators.\n\ud83d\udd25Propane Regulator: Output pressure 0-20 PSI adjustable\u00a0with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8\"-18 UNF outlet connection.\n\ud83d\udd25Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting.\n\ud83d\udd25Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment.\n\ud83d\udd25Package Included: One cast iron high pressure burner head, one 3/8\" flare M x 1/8\" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.\n", "embedding": [-0.046844482, 2.0722656, 0.8544922, -0.46948242, -1.0869141, 0.46899414, 2.046875, -1.5957031, 0.2927246, 0.7290039, -0.21057129, 0.2866211, 2.0058594, -2.09375, -0.3203125, 0.3256836, 0.10522461, 1.1513672, 1.3447266, 1.9667969, 1.7519531, -0.6845703, 1.8261719, -2.7851562, 0.3779297, -0.06994629, 4.2070312, -2.4472656, -1.0009766, -1.7050781, 1.7949219, -0.042816162, 0.5410156, 0.41918945, -2.7207031, -0.7583008, 0.31884766, 0.6040039, -4.140625, -0.5449219, -0.07281494, 0.875, 1.3222656, 1.4433594, -2.5917969, 1.7919922, 1.3349609, 0.7636719, -0.14001465, 1.0595703, 0.7192383, -0.46655273, 0.49536133, 1.3671875, -0.70214844, 0.796875, 0.3071289, -3.2148438, 0.6508789, 0.071777344, 2.6425781, 2.140625, -2.5839844, 0.5527344, -0.32543945, 0.43554688, -0.16931152, -0.8754883, 1.1005859, 0.22570801, 1.3583984, -0.054229736, 1.0253906, 0.44628906, 2.75, -1.8466797, -2.8632812, 0.17565918, 4.515625, -0.79003906, -1.4658203, 1.9345703, 0.02279663, -1.4580078, -0.3503418, -0.15661621, 0.43359375, -0.33129883, 2.2363281, 1.6005859, -2.2402344, 2.6386719, -1.8759766, -4.9140625, 2.4902344, 0.85009766, 0.6503906, -1.25, -0.18334961, 0.0914917, -0.7573242, -0.7651367, -0.3774414, 1.4931641, -1.9316406, -0.1373291, 1.1494141, 2.0800781, -1.9013672, 0.9453125, -0.4152832, -0.8754883, 1.7792969, -0.8535156, 1.2763672, -0.4567871, -0.076293945, -1.4892578, 3.3964844, 0.43188477, 3.5195312, -1.1103516, -0.4140625, -0.3359375, 1.5488281, 1.5273438, -0.47387695, -0.16247559, 2.3691406, -2.71875, 0.2770996, -2.2773438, 2.1386719, -0.4416504, -1.2001953, -1.2646484, -1.1005859, -0.77001953, -2.9453125, -0.93310547, -3.0175781, -0.11816406, 0.37451172, -0.6069336, -2.6289062, -0.75390625, 0.046691895, 0.82128906, 0.2553711, -1.0791016, 1.0039062, -1.1826172, -0.30444336, -0.66064453, 1.6298828, 2.5898438, -0.24365234, -1.5009766, 3.3691406, 0.7919922, 0.22302246, -1.9160156, 0.06793213, 2.8457031, -1.6884766, -1.3076172, -0.1048584, 0.23828125, 0.5566406, 2.1132812, -0.22265625, -1.5771484, 0.06896973, -0.7207031, 0.7729492, -1.0361328, -1.0341797, 2.3183594, -0.62597656, 1.1943359, -4.0703125, -1.8173828, 0.45507812, -0.83447266, 2.3867188, -1.921875, -0.9199219, -0.77734375, 0.5678711, -1.8837891, -2.4121094, 0.6801758, 2.6542969, 0.9199219, -0.113586426, -1.8144531, -0.12524414, -2.4628906, 0.4020996, 1.6357422, -1.2324219, -2.609375, 0.91064453, -0.46240234, -2.7421875, 0.2849121, -0.68847656, 0.10559082, 1.5166016, 1.6474609, -0.79345703, -1.3935547, 2.3769531, 1.4492188, -0.20019531, -2.4453125, 2.203125, 0.61035156, 2.6425781, -0.02368164, -0.5175781, -0.3947754, 0.79248047, 1.65625, 2.2207031, 1.0175781, -0.8417969, -0.12017822, -1.0449219, 0.28881836, 1.4824219, 1.2597656, -1.2617188, 0.11645508, -2.0957031, 4.2109375, 0.36889648, -0.45532227, 0.49536133, 0.42407227, 1.34375, -0.47607422, -1.1074219, -1.1533203, -1.3818359, -1.1416016, -1.9169922, 1.6455078, 1.6660156, -0.67871094, 0.98779297, -1.6162109, 0.01966858, -0.9472656, -0.4880371, -0.6665039, 0.024215698, 0.38867188, -0.2512207, -1.0546875, 3.1582031, -1.0820312, -0.21496582, 1.109375, 0.52001953, -0.43676758, 2.3476562, 0.61572266, -1.2119141, -0.6953125, 0.4501953, 1.1708984, 2.7480469, 1.21875, 0.6147461, 2.4277344, -1.1201172, 0.35327148, -0.60302734, 1.6689453, -0.17541504, 0.14367676, 1.4648438, -2.4648438, 1.7714844, 1.4365234, 2.2539062, 0.32421875, -2.4238281, 2.5683594, 4.734375, -1.3046875, -2.984375, 1.6367188, 0.15844727, 0.5522461, 0.20178223, -0.2602539, 0.27783203, -1.0498047, 0.5415039, -0.017028809, -1.2666016, 2.2382812, -0.6713867, -0.53564453, -0.024551392, -0.83154297, 0.6113281, 0.38012695, -0.8378906, 0.09277344, -1.2753906, 2.5527344, -3.3164062, 0.07647705, 2.453125, -3.46875, 0.8618164, -0.5209961, 1.0029297, 1.4072266, 1.0498047, -0.7128906, 1.5488281, 1.2636719, -0.35839844, -0.043884277, 1.1416016, -1.5820312, -2.1582031, -1.2304688, -0.8833008, -1.3037109, -1.1650391, 0.7294922, -1.7421875, -2.0429688, 1.9853516, -3.0878906, 0.98779297, 2.3339844, -0.7729492, 1.4648438, -0.09124756, -2.0839844, -1.3837891, -0.59033203, -0.55078125, -0.1817627, 1.5917969, 2.1464844, -1.1474609, -4.5429688, -1.7011719, -0.75439453, -0.6948242, 0.44189453, -2.9824219, 1.8837891, -0.6088867, 0.3178711, 2.09375, 0.013046265, 1.6083984, -0.90234375, 1.8310547, -4.546875, 0.7026367, 0.7861328, 0.7841797, -1.4355469, 0.6660156, -2.1035156, 0.52734375, -1.125, -0.30566406, 2.40625, -1.5048828, 2.6894531, 0.12176514, -0.6948242, 0.29248047, -0.24230957, -2.4609375, 0.56933594, -1.3525391, -1.0996094, -0.6669922, -3.6953125, 1.3203125, -0.22998047, 0.03439331, 0.19482422, -0.12347412, -0.97753906, 1.0527344, -1.2734375, -0.62353516, 0.8300781, -0.7915039, 1.6542969, -1.0205078, 1.1308594, -0.36254883, -1.7382812, -0.9238281, 2.2441406, 2.4453125, -0.9453125, 1.0830078, 1.3994141, 0.05987549, 1.0390625, -0.07232666, -3.1386719, 1.0908203, 2.3007812, -0.6220703, 1.8583984, -1.9570312, -0.85009766, -2.5800781, -1.1914062, 2.3554688, 1.2685547, 2.0410156, -0.28295898, -0.34204102, -0.6196289, 0.5131836, 0.0046463013, -1.3642578, -0.21569824, 3.0078125, -2.1601562, -1.6396484, -0.13562012, 1.8476562, -3.7910156, 1.1699219, 2.7988281, -0.08996582, 0.20617676, 1.5673828, 0.9199219, -1.9199219, -1.3222656, 0.44189453, 1.4111328, -0.6279297, 1.2167969, -1.6279297, 0.4501953, 1.1171875, 0.024963379, 2.703125, 1.7167969, 1.8896484, 2.6328125, 1.4599609, -1.2685547, 0.25024414, 0.2626953, 2.2871094, 0.61572266, 2.203125, 0.23120117, 0.21972656, -0.5449219, 1.6152344, 0.9370117, -3.0996094, 0.18261719, 1.4384766, 1.8642578, -0.8510742, -0.06347656, 0.2019043, -1.2138672, -1.9550781, 0.22644043, -0.6899414, 0.5410156, 1.8007812, 0.3540039, 1.1962891, -1.0263672, 0.7734375, 0.5019531, -2.0410156, -0.6640625, 0.16040039, -1.4550781, -2.0332031, 0.76904297, -2.1015625, -1.5673828, 2.9492188, 1.2900391, 0.06427002, -0.08312988, -2.2988281, 1.5732422, -0.31201172, -1.3652344, 0.24072266, -0.6694336, -1.0976562, 0.3737793, -0.3322754, 1.8730469, 1.4257812, -1.2255859, -0.4753418, -1.4794922, 0.23779297, -1.8798828, -1.9570312, -3.3359375, -0.2541504, -1.3945312, 0.0034885406, 1.1152344, 3.1933594, -1.2138672, -0.17687988, 1.6884766, -0.45336914, -0.78466797, -1.9580078, -4.0742188, 0.5678711, -2.0390625, 0.61376953, 1.9150391, 0.22216797, -0.27978516, 1.1914062, 1.4765625, -2.8808594, 0.5776367, 0.6088867, 1.6298828, -2.421875, -1.2265625, 1.3330078, 0.053863525, -1.7236328, -0.73828125, 0.49316406, -2.09375, -0.2734375, 1.3066406, -1.8916016, 0.9682617, -1.1777344, 0.5317383, -1.3095703, -0.8647461, 0.21569824, -1.9912109, -0.06817627, -2.0332031, 1.5576172, 0.61572266, -0.8598633, -0.026550293, 3.4902344, 1.3964844, 0.7363281, 0.3203125, 0.5908203, 1.9599609, -0.14172363, -1.7744141, 1.0195312, 0.67041016, 0.12695312, -1.2792969, 1.3818359, -1.7666016, -1.03125, 1.7734375, 1.4580078, -0.39575195, 1.4091797, 0.8491211, -2.1738281, -0.59765625, -0.41748047, -1.6728516, 0.60253906, 0.5107422, 0.7885742, -1.4189453, 2.0566406, -1.3339844, -0.22375488, 0.90966797, 0.1427002, -1.0009766, 1.4833984, 2.5898438, -0.53564453, 0.70654297, -0.09161377, -2.5546875, -2.1347656, 0.20874023, -0.94677734, 0.01210022, -1.9609375, 0.38671875, 0.6542969, 0.9848633, 0.15856934, -0.44311523, 0.07928467, -2.2675781, 0.20031738, -1.0664062, 1.0576172, 0.20959473, -0.7109375, 0.39575195, -0.72753906, 2.0410156, -2.5546875, -0.30249023, -0.23364258, 0.19140625, -0.7832031, 0.123168945, 1.0966797, -1.8994141, 0.60546875, 0.03741455, 0.64404297, 1.8261719, 0.9003906, 0.22277832, 1.9677734, 0.5449219, -0.001294136, -1.5292969, 1.5693359, -0.070373535, -0.5546875, 0.84033203, 0.20117188, 2.4980469, 2.2734375, 0.984375, -1.7431641, 1.2480469, 1.5039062, -2.8378906, -0.3479004, 0.96972656, -1.8417969, 2.453125, 0.2932129, -1.0351562, 0.06719971, 3.5234375, -1.4736328, 1.0664062, 0.16113281, -0.61328125, -0.043395996, -1.4736328, -1.3496094, -2.3105469, -0.78027344, 0.90478516, -1.9091797, 0.7583008, 0.8408203, 1.3730469, 0.65771484, -0.6298828, -1.2744141, 0.63964844, -0.6816406, 0.5078125, 1.1630859, -2.9179688, -2.5019531, 1.5029297, 1.9306641, 2.015625, 1.2226562, 1.09375, 1.0087891, -1.9638672, 0.89160156, 1.7177734, 0.99853516, -1.7421875, 1.0292969, 3.7324219, -0.31689453, -1.0332031, -1.8710938, -1.1591797, -1.8261719, 2.078125, 0.37695312, -1.2412109, -0.8720703, 0.50439453, -2.7324219, -3.8046875, -0.5854492, 2.5957031, -0.77685547, 0.24108887, -2.1171875, -0.17956543, -0.2770996, -0.65234375, -0.2668457, -1.984375, 0.890625, 0.84814453, -0.0184021, -0.9472656, 0.3232422, 1.7138672, -0.57958984, 0.37695312, -0.69970703, 0.005821228, -1.8632812, -2.9570312, 3.2890625, -0.75927734, 0.29858398, 1.5380859, -2.9453125, 0.7192383, 3.796875, 0.35986328, -2.3671875, 1.0351562, -2.0820312, -0.28564453, -0.39135742, -1.6396484, 1.6220703, 0.20874023, 0.44140625, 0.39453125, 2.6171875, 0.7753906, -1.0966797, 0.19750977, 1.6757812, 0.08453369, 0.8833008, -1.4980469, 0.5517578, 0.03930664, 1.4482422, 1.2705078, 0.12670898, -0.7729492, -1.8535156, -2.03125, -0.074035645, -0.74560547, -0.5151367, 0.3088379, 1.4443359, 2.9238281, -0.4309082, 2.5058594, -1.7392578, -0.40454102, -0.2220459, 1.8173828, -0.9633789, 3.5273438, 0.76660156, -1.3964844, -3.1425781, -0.50097656, 1.1044922, 3.6191406, -0.15197754, 0.07879639, 0.87060547, -1.765625, -0.6870117, -0.27856445, 0.23925781, 1.9931641, 0.17041016, -1.6884766, -1.0634766, 1.8212891, -1.6904297, 1.6650391, 1.8798828, -1.6669922, -2.0273438, 1.9160156, 1.53125, 0.25976562, 0.3515625, -0.1772461, 0.8510742, -0.7294922, -1.234375, -0.43139648, -2.2773438, -1.2724609, -0.8803711, -1.3242188, -2.8867188, 0.61572266, 0.5834961, 0.36865234, 1.8417969, 1.7578125, -1.1103516, 0.71240234, 2.640625, 2.6523438, 0.5019531, 1.7822266, -1.8896484, 1.7900391, 2.09375, -1.8808594, 0.8457031, 0.39086914, 1.2841797, -1.0380859, -0.85253906, 0.5966797, 1.3945312, -0.52197266, 1.7783203, 0.7602539, 1.0957031, 1.3408203, 0.67333984, 2.8808594, 2.5175781, 0.9580078, 1.1816406, -0.31054688, -1.1826172, -1.4335938, -1.3359375, -0.14807129, -2.1796875, -0.18115234, 0.25170898, 0.105163574, 3.2089844, -2.6542969, 0.7993164, -1.9736328, -0.29785156, -2.3632812, 1.5449219, -1.2666016, -0.042633057, 0.10241699, -0.14660645, 2.2148438, 0.6582031, -0.9086914, -0.043395996, 0.010559082, 0.6166992, -2.78125, 0.4128418, -1.1689453, -1.1806641, 1.6640625, 2.1171875, 1.796875, 0.052581787, 0.10510254, -0.21948242, -1.5224609, 0.81152344, 0.38452148, -1.8359375, -1.3603516, 0.8979492, 2.8476562, 1.4082031, -1.4023438, 0.8730469, 0.33032227, -0.94189453, -3.0507812, 3.8847656, 2.4902344, 0.20654297, -0.6479492, -1.8017578, 1.2021484, -2.5722656, 0.90722656, -1.1435547, 0.6176758, -0.8359375, -0.003616333, -0.16064453, -0.046875, -0.07128906, 1.7529297, 0.3737793, -1.0439453, 1.2314453, 0.67089844, 1.2451172, 1.2167969, -0.01852417, -0.56933594, 1.5087891, -1.1201172, 2.4238281, 1.2578125, -3.703125, 0.93603516, 3.9023438, 0.4399414, 0.6513672, 0.9428711, 0.08465576, 0.9555664, -0.9584961, -0.6738281, -0.98535156, 0.43286133, -2.3945312, -0.8647461, -0.828125, -0.13952637, -0.921875, 0.8046875, -0.5205078, 0.42504883, -0.31518555, 1.59375, -0.95996094, 0.7885742, 0.88964844, -0.5800781, -1.2861328, -0.3310547, 0.32543945, -2.5351562, -1.75, 2.2285156, 2.1171875, 0.8466797, -1.4570312, 0.4963379, -1.0146484, 0.2376709, -1.4921875, 0.1159668, -1.0185547, -1.9638672, 1.0322266, -0.08850098, -0.19628906, 0.7348633, 0.15283203, -0.041931152, 0.94433594, -2.34375, -0.113098145, -0.4128418, -0.88427734, 1.4482422, 0.99072266, -0.08648682, -1.375, -1.8466797, -4.90625, -0.9433594, -3.1445312, 0.55029297, -0.6328125, -0.29541016, 0.3125, 0.5678711, 2.1503906, -0.35742188, 0.29492188, 0.28564453, -0.53466797, 1.9384766, -1.1523438, 1.0234375, 0.91796875, 0.69433594, -0.12609863, 1.6191406, 1.1591797, -1.5917969, 1.3232422, 2.7421875, 1.0517578, -2.4082031, -0.42089844, -0.7050781, -0.40600586, 0.15014648, 0.026321411, 0.85253906, 1.7705078, -1.8798828, -1.9189453, -2.3457031]}, "B0009PUR5E": {"id": "B0009PUR5E", "original": "Brand: Coleman\nName: Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner\nDescription: \nFeatures: COOKING POWER: Up to 10,000 total BTUs\nPRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions\nPERFECTHEAT DESIGN: More efficient cooking with less fuel\n1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan\nWIND BAFFLES: Shield burner from wind for maximum heat\n", "embedding": [-1.6552734, 1.2558594, 1.1503906, 2.328125, -0.93652344, 0.60546875, 0.28100586, -0.9760742, -1.4238281, 2.7617188, 1.6796875, -1.0458984, 0.05496216, -1.3847656, -0.21875, -0.6123047, -0.17578125, 0.75097656, -0.48779297, 0.51904297, 2.15625, -1.1171875, 0.9785156, -0.3491211, -0.875, 0.46655273, 3.3613281, -4.5703125, -0.24694824, -0.7138672, 1.7412109, -1.1611328, 0.7128906, 3.2304688, -3.2167969, -0.3215332, -2.3886719, 0.8198242, -2.9472656, -0.5097656, -0.8276367, 0.032348633, 1.7548828, -0.76660156, -1.5058594, -2.78125, 0.99072266, -0.7207031, -0.9916992, -0.09197998, 0.32617188, 1.3974609, -0.3605957, 0.2590332, -1.09375, 0.61279297, -0.43066406, 0.5078125, 0.7714844, 0.07745361, 0.23522949, 1.1943359, -2.015625, 0.90722656, -2.0351562, 1.4492188, 0.3557129, -0.6328125, -0.4169922, 0.7211914, 2.71875, 0.45361328, -1.1230469, -1.9746094, -0.28076172, 0.18969727, -3.4316406, 0.92578125, 2.1621094, -0.29736328, -0.7128906, 1.9169922, 1.2402344, -0.9428711, -1.4814453, 1.0351562, -0.765625, -0.625, -0.28710938, 0.6401367, -0.9511719, 1.2314453, -1.4130859, -2.8164062, 0.32104492, -1.4189453, 0.9873047, 0.31079102, 0.79052734, -0.34594727, -1.234375, 0.48266602, -1.2939453, 0.0071029663, -2.65625, -0.8173828, 4.078125, 0.6591797, -3.5898438, 0.5341797, -2.9042969, -2.8144531, 1.5507812, 0.51660156, 0.14660645, 0.56933594, -0.71191406, 1.6035156, 3.0117188, -0.018478394, 4.15625, -1.4414062, 2.5292969, -0.5878906, -0.63427734, 2.1152344, -1.8183594, -1.0292969, 2.9472656, 0.34985352, -1.5507812, 1.2158203, 3.5976562, -1.6230469, -2.5625, -0.83447266, -2.3378906, -3.21875, -3.71875, 0.063964844, -1.0302734, 1.5771484, 1.7011719, 1.671875, -5.2109375, -1.4931641, -0.038208008, 2.5664062, 0.78759766, -2.9785156, 1.1533203, -1.2490234, 0.41259766, -0.8457031, 1.4580078, 1.1503906, -1.3554688, -0.19628906, 4.3085938, 0.25976562, 1.0146484, -1.9423828, -1.3193359, 2.9296875, 1.0361328, 0.008399963, -0.38598633, 0.31469727, -2.6113281, 1.2783203, 0.41064453, -2.4140625, 0.6142578, 0.6118164, 0.8173828, -0.61816406, 0.34204102, 3.9472656, 0.117126465, -1.4150391, -3.1347656, -4.296875, 1.4228516, 0.94921875, 0.49560547, -0.4790039, -0.6376953, -0.35009766, 0.1303711, -2.3671875, -0.4477539, 0.734375, 1.0283203, -0.7626953, -1.0615234, -2.6289062, -0.8652344, -1.1367188, 0.8510742, 1.2880859, 0.66503906, 0.31176758, -0.98779297, 2.4648438, -1.8369141, -1.2978516, 0.06738281, -1.3759766, 1.3642578, 3.1015625, 2.1425781, -0.50341797, 2.0292969, -1.2148438, -2.3222656, -1.4257812, 1.0742188, 0.018981934, 2.3769531, 1.0507812, 0.6899414, -1.6679688, 0.85009766, 0.9013672, -0.7260742, 2.3378906, 2.1035156, -0.046081543, -0.72216797, -1.78125, 1.6689453, 1.8193359, -1.2666016, 0.25756836, 0.8461914, 3.5214844, 0.16662598, -1.8486328, -0.24560547, -1.3759766, -0.83447266, -0.6425781, 0.7133789, -0.109313965, -0.9746094, -0.44750977, 0.12414551, 0.27294922, 2.6015625, 1.21875, -0.37231445, -0.13916016, -1.6972656, 1.6181641, -2.9511719, 0.63378906, 0.56689453, -1.2675781, -1.0390625, -2.5664062, 1.1005859, 1.3671875, -0.9404297, -0.30419922, -0.53271484, -0.6245117, 2.2285156, 1.2451172, -2.9472656, 0.72021484, 0.97753906, 2.6269531, 2.25, 0.67333984, 1.2548828, -1.4345703, -1.2773438, 4.140625, -0.91503906, 2.9140625, 0.11175537, -1.8173828, 2.5566406, -1.9863281, -1.3183594, 1.7451172, 2.6191406, -0.11022949, -2.3261719, -1.4052734, 4.9375, -2.8847656, -3.0234375, 2.3183594, -3.0332031, 1.1582031, -0.5986328, 0.75927734, -0.17370605, -0.9692383, 2.7949219, -0.61083984, -0.68652344, 0.4921875, -3.6308594, -1.3115234, -0.51123047, -2.1699219, -0.105773926, 0.020080566, -0.02645874, -2.1855469, -1.7880859, 2.3359375, -2.15625, -0.28930664, 2.6347656, -2.5136719, 0.64697266, 1.5136719, 0.28930664, 1.9726562, -0.6621094, -0.54296875, 0.7392578, 0.7167969, -0.33374023, 2.8476562, 0.64501953, -0.4868164, -0.19970703, -2.1523438, 1.7597656, -1.3740234, -2.3261719, -0.07470703, 1.2421875, -5.4726562, 1.9638672, 0.10424805, -0.3791504, 2.9394531, -2.6796875, 3.0136719, -1.6689453, -1.1552734, 0.17700195, 1.8847656, 0.12011719, -0.35058594, 1.9326172, 1.4648438, -1.3486328, -3.2890625, -0.94921875, -0.17150879, -0.5048828, -2.2363281, 0.30200195, 1.0234375, 0.4506836, 0.41748047, -0.3474121, 0.84716797, -0.54003906, -2.0820312, 0.3857422, -2.7597656, 1.4169922, -1.0107422, 0.36645508, 0.6123047, 0.29760742, -2.3769531, -0.12878418, 1.8994141, 0.7661133, 4.0859375, -0.17834473, 2.28125, -0.6044922, -0.8027344, -0.4189453, -1.1240234, -3.8613281, 1.5820312, 1.0058594, 0.18725586, -0.28100586, -3.6875, 1.0029297, -1.4091797, 0.52978516, -1.0615234, 0.46655273, -0.5751953, -0.4375, -0.14624023, -0.59472656, -0.2364502, 0.63720703, -1.3369141, -2.9296875, -1.5976562, -0.5605469, -0.5957031, 1.6953125, 0.92089844, -0.008361816, 0.51904297, 0.25146484, 2.6328125, -0.12194824, 1.4091797, -1.4355469, -3.9765625, 2.2304688, 0.5439453, 0.5595703, 1.2636719, -1.3203125, -1.5869141, -2.984375, -1.0517578, 1.1845703, 0.6933594, 2.7519531, -0.16992188, 0.25, 0.49389648, 1.5527344, 0.32470703, -1.0703125, -0.52734375, 2.5820312, -1.9189453, -3.3984375, 1.9824219, 2.5800781, -2.5175781, -1.4589844, 0.50878906, 0.65722656, 0.9741211, 3.484375, -1.0058594, -0.7636719, 0.26049805, 0.7651367, 3.2539062, -0.56640625, 0.113708496, -0.41625977, -0.6621094, 1.0185547, 0.9741211, -0.06304932, 2.6601562, 0.06323242, 1.7314453, 3.6289062, -2.8378906, 1.3935547, -0.41992188, 0.9169922, 0.74121094, 3.1660156, -0.57958984, -0.51171875, -1.578125, -0.7216797, 2.2714844, -1.0761719, 1.2167969, 1.5976562, 1.3867188, -0.9379883, 0.2939453, -1.2255859, 0.6875, 0.24499512, 0.9946289, 1.7714844, -0.26049805, 0.3828125, -1.0927734, -1.7099609, -0.7680664, 2.40625, -0.92871094, -2.0449219, 1.6611328, 1.8554688, -2.7011719, -2.2226562, -2.8105469, 0.1104126, 0.32788086, 2.6679688, 0.37841797, -1.7558594, -0.3798828, -0.6044922, -0.34570312, 2.6816406, -2.5546875, -1.15625, -0.33520508, -0.33618164, -0.45239258, 0.34106445, 1.5068359, 1.1972656, -2.3496094, 1.6005859, -4.3125, 0.52734375, -0.6176758, -1.9306641, 1.6796875, 2.3359375, -1.3339844, 1.0507812, -0.6088867, 2.5859375, -1.875, -0.006286621, 0.8540039, -0.60253906, -0.63623047, -2.0097656, -2.9492188, 1.3134766, 0.21166992, -0.16418457, 1.4404297, -0.24401855, 0.8232422, 1.2470703, 0.6152344, -2.4179688, -1.7480469, -0.9863281, 0.2836914, -2.0625, 1.0732422, 0.08679199, -0.4909668, -2.5292969, -2.4316406, -0.9238281, -0.7739258, 0.37548828, 1.5390625, -2.1582031, 0.5629883, -1.3007812, 1.9580078, 0.87939453, -0.35913086, 1.3261719, -0.3798828, -0.5732422, -1.2421875, 1.3105469, 1.2001953, -0.8569336, 0.8388672, 2.4492188, 1.8925781, -2.3144531, 0.38720703, 2.6679688, 1.1357422, 0.16271973, -2.0546875, -1.1503906, -2.6816406, -1.5527344, 0.3395996, 1.2089844, -1.7998047, -1.5, 1.0283203, 2.5136719, 0.8691406, 1.3730469, -0.10064697, -0.96972656, 0.98583984, 0.33666992, -1.7226562, -1.2548828, -0.23547363, -0.4189453, -1.7978516, 1.4746094, -0.49804688, -0.8125, 0.65966797, -1.2197266, -3.0605469, 1.9140625, 0.6225586, 1.6132812, 1.6357422, -0.44335938, -3.1113281, 1.4648438, -1.0810547, 0.4050293, 0.5019531, 0.08087158, 0.06591797, 0.91845703, 1.7080078, -0.91503906, -1.7568359, 0.79541016, -2.2050781, -0.96728516, -1.3222656, 1.1835938, -2.0976562, 1.8554688, 0.40234375, -0.01689148, 1.3232422, -0.29589844, 1.2314453, 1.7216797, 1.671875, -1.5546875, -0.62109375, 0.77978516, 0.94433594, -0.020843506, -0.11004639, -0.44360352, -0.10803223, 0.92529297, -0.13366699, 1.8203125, 1.3417969, -0.5957031, 0.93652344, 0.5839844, -1.3691406, -0.101257324, -0.08380127, 0.24438477, 1.1757812, 3.2734375, 2.0097656, -1.2177734, 1.046875, 0.22473145, 0.20690918, 1.1689453, -0.47338867, -0.48242188, 2.796875, -0.93310547, -2.4804688, 0.70947266, 2.796875, -1.0595703, 1.0410156, 0.2331543, -0.60595703, -0.7631836, -3.6367188, -0.3317871, -0.80810547, -0.6196289, -0.4284668, -1.6357422, -0.625, -0.21838379, 0.8261719, 2.6484375, 0.0960083, -0.8989258, 1.8359375, 0.08782959, 1.375, -2.4765625, -2.3007812, -2.5605469, 1.7285156, 0.5361328, -0.04168701, 0.5546875, 1.1220703, 1.0126953, -2.3183594, -1.3232422, -1.7158203, 0.88916016, -3.3984375, -0.89453125, 0.64501953, -0.51904297, 0.4777832, -1.4384766, 0.58691406, -1.4384766, 2.2109375, 1.328125, -0.25878906, -1.4013672, 0.3671875, -3.6152344, -3.9824219, -0.4724121, -0.6557617, 0.10571289, -0.08337402, 1.1113281, -0.54052734, -0.82910156, -0.9970703, -2.0976562, -3.1054688, 1.0400391, 0.78222656, -0.19152832, -0.17407227, 0.69433594, -0.76416016, 0.46923828, -0.6953125, 0.5522461, -0.12390137, -1.6425781, -1.9111328, 1.3076172, -1.2734375, 0.45458984, 0.22521973, -0.46655273, -0.08911133, 0.2529297, 0.4362793, -0.39160156, 2.2148438, 1.2822266, -0.9555664, 1.4970703, -1.0615234, -0.0067825317, 1.0742188, -0.95751953, 0.93066406, -0.94091797, 0.35498047, 0.87109375, 2.2246094, 0.85253906, 0.9296875, 1.3388672, -0.77246094, 2.5898438, -0.6845703, 1.734375, 2.1230469, -0.14257812, -1.6611328, -2.6445312, -0.8256836, 0.02015686, -1.3945312, -1.2451172, -0.74853516, 2.2734375, 0.6381836, 1.8300781, -0.5175781, 0.9892578, 0.8330078, 0.2770996, 0.8676758, -1.8193359, 3.2363281, 1.2910156, 0.29833984, -2.09375, -1.1806641, 1.4716797, -0.8574219, 1.9414062, 0.5239258, -0.5673828, -1.7685547, 1.1435547, -1.0195312, 2.1582031, 2.6796875, 3.390625, -1.5273438, 2.7011719, 3.9316406, -0.2890625, -0.16589355, 0.46655273, -0.37719727, -0.90478516, 2.5527344, 1.0322266, -1.1728516, 2.1875, -1.4492188, 1.9716797, -0.9614258, -0.50341797, 1.1103516, -0.4152832, -0.56347656, -1.5429688, -0.36523438, -2.3476562, 2.1914062, 0.5541992, -2.2597656, 0.65771484, 1.6826172, -0.16125488, 0.67822266, 2.2929688, 1.1181641, -0.48291016, 1.015625, 1.0214844, -0.4255371, 2.0234375, -2.4667969, 2.5996094, 0.9873047, 0.3125, 0.5776367, 2.296875, 0.6191406, 2.8007812, 3.9140625, 2.2558594, 2.8320312, 0.96240234, 4.5742188, -0.16809082, 2.2402344, 1.0439453, 0.7495117, -0.5932617, 2.9042969, -0.37231445, -1.2412109, -1.1503906, 0.58447266, -0.17736816, -0.42651367, -1.8388672, 0.9526367, -0.26293945, -5.921875, 1.3251953, 0.2939453, 1.6162109, -0.32641602, 0.40649414, 0.72558594, -0.22631836, -0.12145996, -1.203125, -0.7788086, -1.6640625, 0.40454102, -1.3828125, 0.6142578, 1.3515625, -0.55371094, 0.46801758, -3.1191406, -1.3945312, 0.20129395, -0.08520508, 0.8330078, 1.2109375, 0.12817383, 2.6347656, 1.2324219, -0.5253906, -0.32006836, -1.9472656, 0.97265625, 1.6132812, 2.84375, 1.6162109, -0.94921875, 1.1982422, -0.44921875, -2.6464844, -4.46875, 1.9609375, 1.0009766, 2.0957031, 1.4589844, -2.015625, 2.6679688, 1.1474609, 1.9453125, -1.5810547, 2.4550781, 0.3935547, -1.6054688, -1.46875, 1.3828125, -0.55371094, 2.6386719, 1.3388672, -1.8916016, 1.4277344, -1.1972656, 2.3789062, -0.49609375, -0.3359375, 1.296875, 0.85498047, -1.2841797, 2.1953125, 1.7861328, -0.34570312, 0.53515625, 2.5058594, 3.015625, 0.87890625, -1.3134766, -1.4101562, 1.8369141, -0.21228027, 0.0335083, -1.5751953, -1.4160156, -1.7773438, 0.25146484, -0.35253906, -0.7963867, -2.2519531, 0.07800293, 0.96972656, -2.6542969, 1.5322266, 2.6796875, -0.19592285, -0.921875, -1.3173828, -1.1992188, -0.7788086, -0.43896484, 1.5029297, -1.7822266, -1.3056641, 0.3095703, 0.47875977, 0.54541016, -0.23730469, 1.4189453, -1.6513672, -1.2607422, -0.52441406, 0.7182617, -0.34399414, -0.6279297, -0.77246094, 0.515625, -0.7866211, 0.7207031, -1.4570312, -0.9086914, -0.38891602, -2.6660156, -0.80908203, -2.2089844, 0.39990234, 1.7470703, 1.9755859, -1.0478516, 2.1640625, -1.3115234, -1.5146484, -1.7734375, -1.8427734, 1.5234375, 2.6972656, -1.0820312, 0.9609375, 2.3632812, 1.4052734, -1.1503906, -0.83154297, -0.6401367, 0.33007812, 0.89746094, -1.4990234, 0.27270508, 0.9111328, -0.72753906, 0.10058594, 3.0039062, 1.4433594, -0.43798828, 1.0556641, -0.7470703, 0.65283203, -1.3505859, 0.79003906, -1.3076172, -1.5849609, -2.1035156, -0.31591797, 3.1738281, 0.7680664, -2.3828125, -2.0761719, -1.5244141]}, "B00Z4T34CI": {"id": "B00Z4T34CI", "original": "Brand: Red Ember\nName: Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks\nDescription: This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800\u00b0 Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.\nFeatures: Dimensions: 21L x 21W x 29.1H inches\nUses standard liquid propane gas tanks\nSteel frame and stainless steel burner\nFire-retardant, inorganic material exterior\n", "embedding": [0.3046875, 1.1367188, 1.3242188, -1.3310547, 0.29614258, 0.0036678314, 0.68115234, -2.0898438, -1.3232422, 1.2919922, -1.0058594, 1.9248047, -0.14526367, -4.6210938, 1.6396484, -0.38452148, -1.3378906, 0.8676758, 1.2890625, 0.32128906, 1.5351562, 0.50097656, 0.4099121, -0.29614258, 2.9902344, -0.34692383, 1.7226562, -3.8515625, -2.0839844, -1.5458984, 1.5537109, 1.3945312, -0.05731201, 1.0263672, -2.5253906, -2.5136719, -1.3164062, 2.71875, -3.0683594, 1.3837891, -2.421875, -1.5654297, 2.4863281, 1.4492188, -2.8945312, 1.1064453, 1.0283203, -0.4416504, -0.7421875, -3.0039062, 0.37548828, 1.6943359, 0.19055176, 0.1517334, -1.5498047, 1.6455078, -0.6616211, -2.8046875, 3.6464844, 0.51708984, 0.6274414, -1.1464844, -0.03475952, 2.5683594, -0.4296875, 1.0625, -2.4941406, -0.092041016, 0.50341797, -0.4645996, 0.84716797, -0.67333984, 0.2052002, 0.46533203, 0.92285156, -0.32861328, -1.2558594, 1.8505859, 1.4580078, -1.1972656, -0.67333984, 3.6816406, -0.20129395, -0.44555664, -0.17553711, -0.49047852, -2.765625, -0.66308594, -0.64941406, 0.4489746, 0.9746094, 2.8085938, -0.42211914, -2.6484375, 1.3466797, -0.9111328, -0.07647705, -0.5917969, -0.22570801, 2.3632812, -0.15551758, 1.3759766, -2.1152344, -0.5576172, -2.2109375, -0.7548828, 0.046936035, 1.3466797, 1.2705078, -0.05532837, -1.4589844, 1.8652344, 1.6074219, -0.09008789, 0.86865234, 0.73046875, 0.007171631, -1.3056641, 3.3085938, 1.0107422, 5.1171875, 1.171875, 0.25927734, -1.3388672, 0.0011854172, 0.84033203, -2.7441406, 2.5859375, 1.2861328, -2.5742188, 0.55615234, -1.4033203, 1.3632812, 1.7470703, -2.2382812, -0.76708984, -1.6855469, -1.2958984, -1.0097656, -1.0283203, -2.1386719, 2.828125, 1.0732422, 0.40063477, -4.0507812, 1.0810547, -1.6669922, 1.8740234, -0.31103516, -1.9853516, 0.43041992, -1.0546875, 0.4724121, -1.5283203, 1.7871094, -0.07775879, 1.5390625, -2.9882812, 3.3613281, 0.94189453, 0.7084961, -3.0019531, 0.09527588, 1.875, -1.4306641, -0.35302734, 1.5644531, -0.30444336, 0.39282227, 2.671875, -0.75439453, -1.8115234, 0.111694336, 0.62109375, 0.7265625, -1.2998047, -1.7861328, 1.6376953, 0.4416504, 1.0849609, -0.59277344, -0.7060547, 2.0019531, 1.0625, 0.5004883, -1.9189453, -0.28564453, -1.9648438, -0.74902344, -0.4724121, -0.9951172, 1.0986328, -1.8066406, -1.6699219, -1.0849609, -2.5351562, -2.0683594, -2.3105469, 1.3330078, 0.03857422, -1.8828125, 0.9926758, -2.1660156, 1.5986328, -1.9589844, -0.6611328, -0.21289062, 0.66308594, 2.0859375, 1.3994141, 1.0800781, -1.5283203, 0.79833984, 1.0810547, -0.46801758, -1.1171875, 0.34057617, 0.31762695, 1.8535156, 2.1386719, 0.53808594, 0.8149414, 1.5761719, 2.9179688, -0.032806396, 1.8310547, 0.047424316, -0.12609863, -2.7832031, 0.17248535, 2.0332031, 0.5488281, -0.82373047, 0.86083984, -1.5419922, 3.8222656, 0.69921875, -0.7158203, 1.8701172, -1.7939453, -0.6904297, -2.1328125, -1.7890625, 0.57666016, -0.8076172, 2.1054688, 0.37426758, 1.0664062, 1.5673828, 0.5830078, -0.81884766, -0.4777832, 1.8486328, 0.75634766, 0.76953125, -0.7871094, -1.9863281, 0.48657227, 1.8945312, -1.4111328, 0.7060547, 0.9121094, -2.3984375, 0.46704102, -0.65966797, -1.0419922, 0.6645508, 0.27807617, -4.1992188, 0.2578125, 0.42358398, 1.609375, 2.6601562, 0.17285156, 1.3828125, 1.0820312, -0.4970703, 1.8300781, 0.026565552, 2.9648438, 0.45532227, -0.7475586, 2.2148438, -1.9677734, 1.0761719, 0.90966797, 0.5439453, 0.04006958, -0.69384766, -0.04660034, 4.7382812, -0.7836914, -1.1054688, 1.3818359, -1.1035156, 1.0351562, -1.2011719, -1.0009766, 0.6816406, -0.16369629, 2.203125, 2.3085938, -0.2849121, 2.0058594, -0.6591797, -0.5541992, 1.75, -0.9404297, 0.3166504, 1.2236328, -0.32128906, -1.1015625, -1.9941406, 0.46679688, -2.0566406, -2.0351562, 2.2851562, -3.8730469, 0.7753906, 2.7207031, 0.5878906, 1.0341797, -1.1806641, -2.703125, 0.07574463, 2.7441406, -2.6210938, 1.1894531, -0.39379883, -0.59277344, -1.2548828, -3.09375, 1.1826172, -0.55029297, -1.2626953, -2.0371094, 0.7871094, 0.68896484, 0.09527588, -1.9384766, 1.3251953, 1.6025391, -1.2871094, 0.57958984, -0.93652344, -2.9296875, -0.32202148, 1.1328125, -1.4648438, 1.1767578, -0.029205322, 2.4394531, -0.4819336, -3.2480469, -0.4633789, -1.5585938, 1.5283203, 1.5585938, 0.109313965, -0.8305664, -1.9267578, 1.7080078, 0.42358398, -1.4980469, 1.4179688, -1.5527344, -0.5283203, -3.4394531, 1.0742188, -1.7431641, 0.7558594, -0.9091797, -0.13012695, -1.1904297, -1.8505859, 0.042785645, -1.5351562, 4.34375, 1.484375, 2.1679688, -2.5058594, -0.45581055, 0.1373291, 0.73095703, -3.0644531, -0.37817383, -1.5761719, -1.7705078, -2.5488281, -2.3339844, 0.35791016, -2.1933594, 0.31054688, -0.3864746, 0.5209961, -0.17834473, -0.35083008, -0.75, 1.3339844, -0.11431885, -0.97216797, 0.47973633, 0.39208984, -0.6357422, -1.3154297, -0.81689453, -2.3964844, 0.35107422, 2.3886719, -1.2890625, 0.52441406, 0.7607422, -0.72558594, 0.8076172, 1.1572266, -3.4472656, -0.15930176, 4.1835938, 0.031555176, 1.9941406, -1.796875, -1.8701172, -0.69628906, -1.5302734, 2.9980469, -1.8076172, 0.4580078, 0.51708984, 0.19580078, -0.69140625, -0.14782715, -0.5473633, -0.9921875, -0.04196167, 2.5605469, -2.21875, -0.47607422, 0.3635254, 4.109375, -3.2988281, -0.16052246, 0.57421875, 0.9238281, 0.9111328, -0.007358551, 0.9140625, 0.984375, -0.5083008, -0.21777344, 1.2402344, 1.6669922, -1.4501953, -0.6386719, 2.6660156, 2.2910156, 0.9379883, 2.046875, 0.23400879, 0.17626953, 2.6425781, -0.9067383, -1.8662109, -0.94921875, -0.45141602, 0.7583008, -0.8642578, 1.140625, -1.3388672, -1.1962891, 1.1933594, 1.1894531, 1.6865234, -0.56396484, -0.41601562, 0.46875, -1.2353516, -1.4365234, -0.8388672, 0.7207031, -1.1269531, -2.4238281, 0.6113281, -0.30810547, -0.078063965, 1.1132812, -1.9335938, 0.59716797, -1.0273438, 2.8496094, -1.4755859, -2.8222656, 1.234375, 3.0136719, 0.09039307, -2.3808594, 0.12573242, -2.2285156, -2.1933594, 4.1875, 0.37304688, -1.9287109, 0.55029297, -2.9101562, 2.4296875, 2.03125, 1.3486328, -0.009094238, -0.04272461, 0.5522461, -0.9741211, 1.1787109, 1.2792969, -0.28588867, -2.6894531, 0.76708984, -0.82470703, -0.21228027, 0.8173828, -1.1484375, -0.99365234, 2.9277344, -0.1262207, 0.34960938, -1.1308594, 2.9863281, 0.09692383, 0.29174805, 3.7617188, -0.008277893, -1.2871094, -2.0683594, -3.328125, -0.084472656, -2.1699219, 0.93408203, 0.5654297, -0.06341553, -0.48950195, 1.5224609, -0.56591797, -4.6445312, -1.6777344, -2.4414062, 1.1318359, -2.1875, -0.53515625, -0.2668457, 0.7758789, -0.6767578, -0.59521484, 0.11230469, 1.0341797, 1.6083984, 0.5263672, -0.22717285, 0.92041016, -2.2539062, -0.83203125, 0.060943604, -0.40478516, -0.35888672, -0.40307617, 0.6557617, -0.2607422, 1.2910156, 0.8881836, -0.6274414, 2.4003906, 2.6328125, 1.1572266, -0.45458984, 2.4707031, -1.4755859, 2.8183594, -0.20983887, -2.1425781, -0.9902344, 0.11853027, 0.8574219, 0.12976074, -0.8256836, 1.7783203, -2.7324219, 1.8251953, 0.73095703, 1.6738281, 1.3652344, -0.6274414, -1.6992188, 0.72216797, 0.6455078, -2.7773438, -0.72314453, -0.017715454, 2.0195312, -1.8525391, -0.9453125, -1.1738281, 1.40625, -1.0244141, -1.2841797, -2.6074219, 2.2851562, 2.1621094, 1.8554688, 3.921875, -2.5488281, -1.3447266, 0.79785156, -1.5634766, 0.8881836, 0.90478516, 1.4824219, 0.31933594, 1.9394531, 0.43066406, -0.5390625, -0.062683105, 1.0820312, -1.4902344, -0.9580078, 0.6088867, -1.0830078, -2.0976562, -0.7163086, 0.8701172, -0.28149414, -0.27783203, -1.6103516, -1.1162109, -2.9296875, 1.9511719, -0.76416016, 1.1572266, -0.55566406, -1.2207031, 1.7988281, 2.0566406, 2.4121094, -0.25610352, 2.2773438, -0.054656982, 2.3847656, -0.23815918, 0.21875, -0.23498535, -1.2480469, -1.7998047, 0.69140625, 0.49145508, 2.5351562, -0.1652832, 0.0826416, 0.80371094, -0.90722656, 3.2207031, 1.4619141, -1.6572266, 0.49487305, -2.7617188, -2.4804688, 0.41674805, 0.45092773, -4.6757812, -0.34887695, 2.0996094, -0.39770508, 2.5234375, -0.54833984, -1.4306641, 0.6791992, -0.53564453, -1.546875, -1.1679688, 0.08758545, 1.0048828, 0.81884766, 0.31762695, -2.421875, 0.56689453, 1.3525391, 0.46069336, -1.3544922, 2.3789062, 0.83691406, -1.4033203, -0.984375, 1.1367188, 0.42138672, 0.64453125, 0.16833496, 0.39501953, 2.2773438, -1.234375, 2.0253906, -1.6318359, 0.41870117, -0.9824219, 1.671875, -2.4902344, -0.2890625, 1.671875, -0.5566406, 0.67041016, -2.6015625, 0.55371094, -0.5214844, 1.859375, -1.3964844, 0.72802734, -1.5683594, -0.24047852, -2.6484375, -1.6347656, -0.7270508, -1.5595703, -1.7939453, -0.25, -1.9970703, -0.41845703, 0.56933594, 2.0996094, -0.24365234, 0.5102539, -1.171875, -1.0556641, -0.19616699, -1.9882812, 0.20336914, 1.1845703, 0.72021484, 1.3164062, 0.2734375, -2.1425781, -3.15625, -1.1054688, 2.7148438, -2.8183594, 1.7558594, 0.17150879, 1.3427734, 1.9287109, 3.7949219, -0.4104004, -1.4804688, 1.1455078, -0.03567505, 0.1821289, 2.1152344, -1.5371094, 0.55859375, 1.9638672, 0.60302734, 1.6533203, -1.3144531, -2.0292969, -1.4306641, 1.65625, 0.89746094, -0.06048584, 0.6166992, -0.08544922, 1.3369141, 0.09429932, 1.1660156, 1.4208984, -1.2578125, -1.3759766, -2.0898438, -1.8339844, -0.81103516, -2.8613281, -0.48413086, -1.5458984, 0.06842041, 1.5800781, 0.7597656, 1.1923828, 2.3046875, -0.25878906, -1.1074219, 1.7802734, -0.4716797, 1.3925781, 1.1962891, -2.1054688, -2.4765625, -4.5898438, 1.3759766, 1.9257812, -0.27905273, -0.984375, -0.14001465, -2.484375, 0.86865234, 0.83691406, 1.5166016, 2.7402344, 1.0546875, -1.921875, 0.59033203, 1.9277344, -1.3115234, 1.7451172, 0.2692871, 2.8242188, -0.36279297, 1.9023438, 2.8125, -1.8378906, 2.734375, -0.64697266, 0.32958984, -1.0371094, -0.25390625, 0.7939453, -2.7246094, -0.9267578, -1.9775391, 0.5673828, -2.2207031, 1.5507812, 1.4130859, -0.07751465, -0.10070801, 0.46484375, -1.6201172, 1.7568359, 1.5986328, -0.54296875, -0.36376953, -1.4824219, -2.1875, 0.07678223, 2.6757812, -1.6835938, -0.9892578, 0.4104004, -1.5205078, -1.234375, 0.69189453, -0.921875, 1.9931641, 1.1572266, 3.5175781, 0.88720703, 1.0136719, 3.1972656, -1.7705078, 2.2519531, 2.0488281, -1.4716797, -1.1748047, 1.0634766, 2.8554688, 0.36816406, -0.056671143, -0.45751953, 0.20605469, -2.703125, -0.6064453, -2.0605469, 0.32666016, -2.5429688, 1.6699219, 0.23071289, 0.025375366, -2.1992188, 2.5585938, 0.1418457, -0.39086914, -1.3886719, -0.2397461, 1.1884766, -0.055145264, -0.10449219, -1.1572266, 0.31591797, -0.18591309, -3.1855469, 1.9316406, 0.6220703, -2.8984375, -0.7426758, 4.171875, 1.2050781, -0.44335938, -0.94140625, 2.7851562, -0.46435547, 3.1933594, 0.78027344, 0.85253906, -1.6982422, 0.39672852, 1.6376953, 1.4326172, -2.3261719, 0.040740967, -1.1230469, -3.1738281, -1.9023438, -0.038848877, 1.3916016, 1.5810547, 1.4267578, -0.07305908, 0.66308594, 0.22644043, 2.1230469, -2.7265625, 1.1376953, 0.99658203, -1.9121094, 0.32910156, -0.22180176, 0.9584961, 0.9399414, 2.7675781, 0.4013672, 1.6640625, 0.61621094, 1.1855469, 1.0683594, 2.0820312, -2.46875, 0.9472656, -0.67529297, 4.0507812, 1.0507812, -0.5229492, -1.0595703, 1.9794922, 2.1933594, -0.14758301, 0.8276367, -2.1191406, -0.5107422, -2.203125, -0.42236328, -0.8701172, -1.4345703, -1.9716797, -0.25341797, -0.72509766, 0.5097656, -0.45458984, 0.79003906, 2.3398438, 0.031158447, -0.45629883, 2.4140625, -1.3212891, 1.4570312, -0.73828125, -1.0703125, 0.0927124, 0.14453125, 2.0800781, -0.9580078, -2.1542969, -0.39379883, 3.0429688, 0.05404663, 1.0429688, 0.16748047, 0.0670166, -0.0036373138, 0.9633789, 2.7558594, -0.4724121, -0.17590332, 1.9052734, 1.2910156, -0.7392578, 1.4570312, 0.8574219, 0.0010766983, 1.2255859, -3.3085938, -0.13635254, 1.1083984, -2.21875, 0.7807617, 3.9765625, 1.9423828, -0.3708496, -0.44360352, -5.6171875, -1.1337891, 0.37841797, 2.5449219, -0.8647461, -2.2910156, 0.00010061264, -0.36547852, 2.8515625, 0.062072754, -1.1933594, -0.83203125, -0.2788086, 0.46484375, -0.92285156, 3.9296875, -0.9326172, 1.2548828, -0.057678223, 2.4414062, 2.0820312, -0.39697266, 0.68359375, 1.7666016, 0.2902832, -3.65625, -0.26171875, 0.9584961, -0.57958984, 0.07159424, -1.5419922, -0.25708008, -1.2578125, -0.98876953, -4.4960938, -0.9770508]}, "B00KY4S388": {"id": "B00KY4S388", "original": "Brand: Outland Living\nName: Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19\u201d x W 19\u201d x H 11\u201d with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual\n", "embedding": [0.12200928, 1.2958984, 0.90966797, -0.5136719, 0.9760742, 1.2324219, 2.0410156, -1.4082031, -2.2402344, 2.2871094, 0.06100464, 0.053466797, -1.1083984, -3.1054688, -0.5102539, -0.3930664, -0.109375, 0.9038086, 1.0253906, -0.20507812, 2.8046875, -0.60498047, 2.4277344, -1.2128906, 1.6171875, 0.0046920776, 3.5039062, -2.9882812, -1.3759766, 0.6333008, 1.8085938, 1.5605469, 0.48413086, 1.7421875, -2.5761719, -0.12042236, -2.171875, 0.8720703, -3.1152344, -0.22265625, -1.7558594, -1.6689453, 2.671875, 0.16149902, -2.2636719, -1.0263672, 1.7216797, -0.34692383, 0.42358398, -0.32080078, 0.9941406, 0.4230957, 0.25195312, 1.6474609, -3.3339844, 2.4355469, 0.31323242, -1.0478516, 2.4550781, 1.5214844, 0.60058594, -0.032836914, -0.98046875, 1.6767578, -1.15625, 0.21594238, -0.07110596, -0.34838867, 0.06427002, 0.12512207, 2.4140625, 1.0263672, 0.91845703, -0.16503906, -0.002286911, 0.2421875, -3.6445312, 1.6005859, 3.1953125, 0.17944336, -0.0869751, 3.1914062, 0.70214844, -0.0032215118, -0.38427734, -1.4580078, -3.1523438, -0.6621094, 0.22241211, 1.2519531, -0.44433594, 2.3476562, -1.1767578, -4.3007812, 2.4824219, -0.9614258, -0.023025513, 1.6484375, 0.20141602, 0.37841797, 0.69384766, 2.3125, -0.49487305, -0.32714844, -2.1269531, -0.70166016, 0.9086914, 1.6992188, 0.2866211, 1.9326172, -2.1777344, -0.6269531, 3.1777344, 0.7705078, -0.85058594, 0.39990234, -1.828125, -0.20947266, 5.3046875, -0.05126953, 4.4257812, -0.9189453, 0.7290039, 0.1138916, 0.69677734, 0.22070312, -1.8720703, 0.33422852, 1.0341797, -0.05645752, -0.21386719, -1.0078125, 2.0195312, -0.16259766, -3.0820312, -1.5664062, -1.9619141, -2.1679688, -1.9882812, -1.3271484, -0.8828125, 0.2578125, 2.5371094, -0.36523438, -3.9882812, -0.95410156, -1.6191406, 2.1152344, 0.14050293, -4.9921875, 0.80371094, -1.5009766, -0.15454102, -2.1894531, 1.2607422, 0.2121582, 0.3779297, -3.2539062, 3.4316406, 0.77978516, 0.41137695, -1.9365234, -0.4958496, 0.84472656, -2.2363281, -2.765625, 1.7207031, 0.24291992, 0.014091492, 1.6230469, 0.5, -1.6591797, 0.38720703, 0.5083008, 0.6586914, -1.5615234, -0.24169922, 0.23205566, 2.2871094, 0.21740723, -2.9882812, -1.0263672, -0.5683594, 1.4199219, 1.3369141, -1.0332031, -0.97021484, -1.2441406, -0.8286133, -1.3740234, -1.8027344, 1.3339844, -2.2636719, -1.5429688, -1.4511719, -3.5253906, -1.7998047, -2.4589844, 1.7470703, 1.1376953, 0.08306885, 1.2431641, -0.49243164, 0.9458008, -2.5996094, -0.5, 0.6010742, 0.6464844, 3.203125, 2.9277344, -0.35717773, -0.625, 2.8515625, 1.2841797, -1.1982422, -0.97998047, 2.1640625, 0.9145508, 2.3125, 2.2792969, 1.7890625, 0.4284668, 2.3925781, 2.765625, 0.6196289, 1.0224609, 0.48828125, -0.75927734, -1.9658203, -1.0673828, 2.1171875, 0.2705078, -0.51416016, 0.71777344, -0.8955078, 2.4160156, 0.92285156, -1.3876953, 2.3984375, -0.66015625, -1.7578125, -1.3837891, -0.99560547, 0.65185547, -0.3569336, 1.1591797, 0.34716797, 0.41064453, 3.171875, 1.3076172, -0.6772461, -0.97998047, 1.3330078, 0.6328125, -0.36889648, -0.24853516, -0.74902344, 0.21606445, 0.3996582, -0.7416992, 1.1230469, 1.5068359, -0.69873047, 0.86865234, -0.27294922, -1.3212891, 0.72802734, 0.3552246, -2.5078125, 0.12426758, -1.3916016, 0.40063477, 2.0859375, 1.4140625, 2.4667969, -0.61328125, 0.3203125, 2.2402344, 0.5698242, 3.2363281, 1.2773438, -0.055603027, 0.87060547, -1.8564453, -1.4101562, 0.6459961, 1.3505859, 0.49926758, -0.7167969, 1.6279297, 5.8867188, -0.73828125, -1.9658203, 0.82177734, -1.0341797, 1.8740234, 0.8754883, -0.546875, 1.8056641, 0.47583008, 1.1162109, 1.0292969, -0.044891357, 1.8212891, -0.7558594, -0.016204834, 0.6503906, -3.625, 0.60009766, 0.05355835, -0.68603516, 0.3864746, -0.8359375, 1.1269531, -0.9272461, -1.2988281, 1.5410156, -3.1328125, 1.1142578, 3.4824219, -0.38208008, 0.85058594, -0.54296875, -2.3378906, 0.25219727, 2.7539062, -1.7890625, 0.69873047, 1.4082031, -1.1982422, -0.68310547, -2.1328125, 1.3466797, -2.4921875, -0.3774414, -1.6074219, 0.22167969, 0.18591309, 0.44018555, -2.5351562, -0.004650116, 0.7163086, -1.6132812, 0.87890625, -0.98876953, -1.5205078, -0.42211914, 0.8720703, -1.6455078, 1.5400391, 0.9916992, 2.7519531, -0.12109375, -2.4277344, -0.69433594, -0.07952881, 1.1210938, 0.8046875, -0.69189453, -1.3466797, -1.0683594, 0.4790039, 0.33813477, -0.17797852, 1.3613281, -3.2519531, 0.87939453, -3.9414062, 1.4960938, -0.6464844, 1.1787109, -0.6582031, -0.39746094, -1.1630859, -1.1132812, 1.6855469, -2.2519531, 4.25, -0.0008301735, 0.43945312, -2.0332031, -1.96875, -0.79345703, -0.93603516, -3.2753906, 0.077697754, -0.054901123, -1.4736328, -1.8417969, -2.546875, -0.19360352, -1.6240234, -1.3320312, -0.2232666, 0.66308594, -2.3046875, -0.08081055, -1.6005859, 0.86376953, -0.85302734, -0.65283203, -0.7133789, 0.59375, -0.86376953, -0.60791016, -1.0146484, -0.56933594, 0.68847656, 1.8066406, -0.86035156, 0.2993164, 0.4489746, -0.047058105, 0.31152344, 0.8203125, -4.2109375, -0.13195801, 2.3769531, 0.2607422, 1.4873047, -2.4765625, -1.2324219, -1.1767578, 0.5097656, 3.6992188, -0.3527832, 0.027664185, -0.47460938, -1.4423828, 0.73291016, 0.14050293, -0.9213867, 0.2800293, -0.7163086, 3.8964844, -3.9511719, -0.8510742, 0.6411133, 3.2988281, -4.4414062, -0.4091797, 0.85791016, 0.27075195, 1.4912109, -0.5004883, 0.5805664, 0.6015625, 0.56884766, -0.4765625, 1.9658203, 1.2363281, -0.14099121, 0.62109375, 0.44458008, 1.6064453, 1.1855469, 0.3581543, 0.7236328, 1.0957031, 1.1142578, 0.8095703, -1.7382812, 1.1015625, 0.14294434, 0.32470703, 0.19006348, 1.2685547, -1.0556641, -0.7001953, -0.113098145, 1.1484375, 1.1894531, -0.8935547, -0.43579102, 1.2666016, 0.83935547, -0.91015625, -0.19128418, -0.025039673, -0.9321289, -0.70458984, 0.63916016, -0.61816406, -0.1529541, 1.1982422, -2.2792969, 0.07507324, -0.37597656, 2.484375, -0.9716797, -1.484375, -0.32104492, 1.2529297, -0.63134766, -2.4199219, -0.6694336, -3.6953125, -1.2119141, 5.28125, 1.8222656, -1.6210938, -1.4570312, -0.6464844, 1.7988281, 2.6367188, -0.2487793, -0.5292969, 0.10479736, 0.9663086, -0.91064453, 0.94140625, 1.7177734, 0.45898438, -2.5546875, 2.0039062, -0.92871094, 0.6245117, 1.7871094, -2.03125, 0.73291016, 3.4453125, 0.37329102, 0.9404297, -1.75, 3.8085938, -2.46875, -0.18774414, 4.9960938, -0.21276855, -1.2910156, -2.6113281, -2.6621094, 1.5712891, -3.2441406, -0.45410156, 1.0244141, 0.76171875, -1.2333984, 0.109313965, -0.5419922, -3.3730469, -3.6015625, -3.09375, 1.8876953, -3.3164062, -1.5039062, -0.9042969, 0.6694336, -3.2714844, -1.0488281, -0.40454102, 2.0078125, 0.65625, -0.17749023, -1.4208984, 1.5263672, -3.0253906, 0.42138672, 0.5180664, 0.15026855, -0.34277344, -0.76660156, -0.49926758, -1.25, 1.0175781, 0.5073242, -1.8466797, 1.7929688, 3.3632812, 1.1474609, -0.67626953, 0.84521484, 1.0283203, 3.8515625, -0.47436523, -1.46875, -3.0117188, -1.0234375, -0.13549805, 0.16540527, -0.5805664, -0.010696411, -3.0605469, 2.1582031, 0.68408203, 0.94189453, 1.0517578, 0.20202637, -1.4208984, 1.3857422, -0.028167725, -1.8798828, -1.8427734, -1.5068359, -0.07891846, -1.7802734, -0.24841309, -1.1816406, 0.62353516, -0.99316406, -0.0914917, 0.43530273, 2.5019531, 1.5263672, 1.4492188, 4.2421875, 0.58691406, -1.4970703, 1.0390625, -1.3056641, 0.47143555, 0.7998047, -1.5107422, -0.50634766, 2.203125, 0.41992188, -1.0625, -0.61865234, 0.17553711, -0.91796875, -1.3408203, -0.6513672, -1.2509766, -3.0957031, -1.3505859, -0.99609375, -1.7324219, 2.2382812, -0.98583984, 0.36157227, 0.23852539, 0.9550781, -1.1796875, -0.83496094, -0.19445801, 1.75, -0.73095703, 2.2207031, 2.1542969, -0.20117188, 2.7519531, 0.6816406, 2.8457031, -2.0585938, 0.11230469, -0.36499023, -0.45654297, -1.3583984, -1.1806641, 0.5620117, 1.8017578, -0.13696289, 2.3984375, 0.47314453, -0.73828125, 1.9785156, 0.6171875, -2.03125, -1.1425781, -0.9995117, -0.66064453, 1.5322266, -0.16455078, -2.7832031, -0.41259766, 1.8232422, 0.08874512, 2.3730469, 0.5551758, -1.5908203, -1.6191406, -1.6806641, -1.9921875, 0.17980957, -0.6870117, 0.953125, -1.9287109, -0.2052002, -1.4189453, 1.3007812, 1.3623047, 1.0234375, -0.95458984, 1.5517578, -0.7348633, -0.765625, -0.15393066, 1.0390625, -0.82373047, 0.34716797, -0.55371094, 1.5185547, 2.0292969, -0.7158203, 1.3691406, -1.6269531, -0.68847656, -2.1484375, 3.03125, -2.0585938, -0.3942871, 1.1191406, 1.8896484, 0.8930664, -1.1699219, -1.0439453, -1.484375, 2.8945312, -0.048614502, 1.4765625, -0.9921875, -0.96875, -1.8896484, -3.8945312, -1.9208984, -0.73291016, -1.2167969, 0.7685547, -0.04562378, -1.1279297, 0.24719238, -0.61279297, -0.1451416, -0.72998047, -0.515625, -1.1767578, 0.8046875, -2.1445312, 1.2041016, 0.6333008, 1.7998047, 1.1044922, -0.10913086, -0.41967773, -0.18981934, -1.2792969, 2.5996094, -1.4970703, 1.0693359, 0.070007324, -0.0020198822, 1.3476562, 3.2363281, 1.7919922, -0.012588501, 0.7446289, -1.0615234, -0.7285156, 0.76416016, -2.1621094, 1.2167969, 1.5136719, -1.03125, 1.9941406, 0.18798828, 0.16699219, -1.4628906, 1.2871094, 0.13964844, -0.13000488, -0.9633789, -0.38256836, 1.3876953, 0.5961914, 0.3347168, 1.5537109, 0.61621094, -0.93115234, -1.0917969, -1.90625, -0.54052734, -2.6582031, 0.19921875, -0.5258789, 1.7109375, 1.1923828, -0.08288574, 2.1679688, 1.4013672, 0.52197266, -1.6992188, 1.1484375, -1.9462891, 3.4199219, 1.6083984, -2.3535156, -1.9101562, -2.7558594, 0.7416992, 1.9970703, -0.45532227, -0.4255371, 0.47851562, -2.0410156, 0.8520508, -0.04336548, 2.5527344, 2.6484375, 1.1621094, -1.1230469, -0.22802734, 1.5205078, -0.13769531, 2.5957031, 0.6611328, 1.8095703, -1.0458984, 1.9697266, 1.6142578, -1.1113281, 1.2958984, -1.1298828, 1.1005859, -2.3652344, -1.0908203, 1.2236328, -2.7265625, -0.79052734, -1.0380859, 0.16357422, -2.3242188, 1.71875, 1.7509766, -0.4921875, -0.5307617, 0.6982422, -0.9160156, 1.4482422, 1.3271484, 0.85058594, -0.7392578, -0.9589844, -0.058135986, 0.80859375, 1.0810547, -1.78125, 0.5395508, 1.2382812, -0.028503418, -0.2890625, 4.0703125, 1.9707031, 3.2402344, 1.6923828, 2.8867188, 1.765625, -0.33154297, 2.4609375, -1.0361328, 0.62109375, 1.2011719, -2.1269531, -1.1884766, 1.5634766, 2.2441406, -0.14624023, 0.5209961, 0.83984375, 0.24353027, -1.6210938, -1.6884766, 0.06549072, 0.11450195, -3.6640625, 2.2480469, -1.0341797, 0.51220703, -2.6660156, 2.0761719, -1.2871094, 0.8989258, -0.12359619, -1.2041016, 0.78564453, -1.1757812, -0.86376953, -0.3190918, -0.10412598, -0.5595703, -2.109375, -0.17224121, -0.22509766, -2.7265625, -1.0087891, 3.7402344, 1.3222656, 1.6796875, 0.14367676, 2.4335938, 0.8408203, 1.7089844, 1.046875, -0.4814453, 0.78564453, -0.24365234, 2.1347656, 1.0839844, -3.1523438, -0.11114502, -0.1998291, -2.7460938, -4.1445312, 1.0244141, 1.6386719, 1.7871094, 1.0185547, -2.0898438, 0.52734375, -0.8598633, 1.4775391, -4.046875, 0.72021484, 0.9316406, -2.5117188, -2.8417969, -1.1103516, 0.71533203, 2.2851562, 1.6484375, -0.06665039, 2.5019531, 1.1689453, 2.4316406, 0.47998047, 0.64697266, -0.9770508, 1.6503906, -2.4042969, 1.9492188, 1.5820312, -0.68652344, -1.1962891, 3.3242188, 0.16235352, 0.5102539, 0.36279297, -1.8642578, 1.1572266, -0.50146484, -1.1259766, -0.051696777, -1.1240234, -3.3417969, -1.3681641, -0.45092773, -0.81933594, -0.7314453, 1.4296875, 2.6464844, -0.7866211, -0.7246094, 1.5664062, -0.81152344, 2.1640625, -1.3369141, -1.5283203, -1.6621094, -0.16955566, 1.5859375, -0.56689453, -2.2519531, -0.9213867, 1.7421875, 0.48242188, -0.67626953, 0.23693848, -1.2099609, 1.1484375, 0.6254883, 2.1152344, 0.31152344, -1.0517578, 1.4873047, 0.11883545, -0.6953125, 3.7519531, -0.5131836, -0.25024414, 0.42504883, -2.34375, -0.56933594, -0.25195312, -0.5258789, 0.20568848, 4.9453125, 2.2011719, -0.6791992, -1.6582031, -5.28125, -1.5244141, -1.5703125, 1.6015625, 0.3334961, 0.33666992, 1.3388672, -0.6411133, 2.5839844, -1.0673828, 0.11364746, 0.18701172, -0.42651367, 0.6513672, -0.7055664, 1.9541016, 2.2636719, 1.4208984, -0.058258057, 2.53125, 1.8408203, 0.9663086, 0.7055664, 0.20605469, -0.96484375, -2.7421875, -1.921875, -1.6757812, 0.085754395, 0.9238281, 0.43603516, 1.1904297, -0.7080078, -1.5722656, -4.25, -1.5712891]}, "B01M4SA4PG": {"id": "B01M4SA4PG", "original": "Brand: GASPRO\nName: GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More\nDescription:

Product Specification

-High pressure LPG hose

-Inlet Pressure:25-250PSIG

-Outlet Pressure :0-20PSIG

-Flow Capacity :122000 BTU/Hr

-Certificate: CSA

-Length of hose:4feet/48inch


How to use it?

1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

3.Installs is not complex at all, even you don't need any tool required.

This is an essential part of converting your fire pit/table to a best flame


What equipment can it be used for?

\u00a0Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,\u00a0 turkey fryers,torches and variety of high pressure applications


Are you still worried about not being able to accurately adjust the temperature of the smoker/range? \u00a0

This regulator will not make your smoker/range temperature too high or low\uff0cYou can use it to precisely adjust the temperature of your device.


Are you still worried about the small flame of your grill?

\u00a0If you have this propane regulator,you can really crank up the flames for quicker\uff0cMade your grill heat better than when it was new.


Warm Tips

\u00a01. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

2.\u00a0Not suitable for appliances which need low pressure regulator

\nFeatures: [Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature.\n[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8\u201d male flare connector\n[Extra gift] Come with pipe fitting 3/8\" flare M x 1/8\" MNPT Orifice, it fits all Propane Appliances with 1/8 Male\n[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder.\n[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off\n", "embedding": [-0.28271484, 2.0195312, 0.9008789, 0.74902344, -1.0302734, 0.2290039, 2.0546875, -1.6513672, 1.3515625, 0.75878906, 0.40673828, 1.2333984, 2.2597656, -2.3027344, 2.8476562, 1.2138672, 1.0566406, 0.5732422, 1.7636719, 3.0058594, 0.7265625, -0.20910645, 2.7929688, -0.20214844, 1.4658203, 0.34692383, 3.3515625, -2.8496094, -0.8745117, -1.3085938, 1.6035156, 1.671875, -0.56396484, 0.43847656, -2.0527344, -0.2878418, -0.7714844, 1.7099609, -3.5742188, -1.2041016, -0.7626953, -0.18359375, 2.1953125, -0.1965332, -2.4316406, 1.328125, 0.86572266, 1.3789062, -0.12670898, -0.49829102, 1.7431641, -0.010345459, 0.7709961, -0.062683105, -1.578125, 0.34765625, 0.2878418, -0.89990234, 0.46362305, 0.99853516, 2.2636719, 0.4482422, -2.0683594, 0.51171875, -1.3017578, 0.08685303, 0.046417236, -0.2006836, 0.5229492, 0.38378906, 0.9404297, 0.7338867, 0.054718018, -0.8100586, -0.3708496, -0.36010742, -2.8417969, -0.10345459, 3.1308594, 0.52978516, -1.3339844, 2.59375, 1.4101562, -2.734375, 1.3212891, -0.390625, -1.4726562, 0.1270752, 2.3652344, 0.52246094, -2.4296875, 2.6542969, -3.1210938, -4.1054688, 2.1796875, 1.7363281, 1.6738281, 1.6689453, 2.140625, 0.7109375, -1.9414062, -1.9394531, 0.055236816, 1.015625, -1.9423828, -1.1132812, 0.10736084, 1.6191406, -3.953125, 1.0410156, 0.40356445, 0.6777344, 2.2070312, -1.421875, 1.6455078, -2.1679688, -0.57470703, -0.65966797, 2.8046875, 2.203125, 2.6933594, 0.77783203, -1.3046875, 0.15246582, 1.0576172, 0.4790039, -1.6425781, 0.30932617, 3.5878906, -2.0644531, 0.58740234, -3.3515625, 2.2519531, -0.15856934, 1.7207031, -3.1757812, -1.2148438, -2.6210938, -2.9238281, -0.14428711, -4.4179688, 0.018554688, 1.921875, -0.2800293, -3.5527344, 0.5727539, -2.4746094, 0.72216797, 2.8769531, -2.1054688, 1.6650391, -2.2460938, 0.5263672, -1.3212891, 2.0097656, 0.23864746, 0.16174316, -1.5009766, 2.3945312, 1.1875, 2.109375, -2.3046875, -1.9677734, 1.9677734, -0.24243164, -2.0898438, 0.24511719, 1.1835938, -0.6850586, 0.9345703, -0.75683594, -2.1953125, -0.32080078, -0.23632812, -0.43676758, -1.1289062, 1.4960938, 2.4804688, 2.2304688, 0.38110352, -4.125, -2.3203125, -0.33081055, -1.0136719, 1.0830078, 0.51660156, -2.2988281, 0.44970703, 2.2070312, -2.125, -1.1796875, -0.7026367, -0.3659668, 1.4609375, -0.2319336, -1.9746094, -3.4433594, -0.45751953, -0.89941406, 0.09307861, -1.8583984, -1.2119141, 0.10723877, 0.27490234, -2.2988281, -1.359375, 1.4453125, -0.89501953, 0.32617188, 2.8320312, -0.27148438, -1.0429688, 1.1640625, -1.0380859, -0.13659668, -2.4667969, 2.5761719, 1.9707031, 0.82373047, 1.2861328, -0.8828125, 0.6591797, 0.16015625, 1.6972656, 2.2324219, 0.91503906, -1.1464844, 2.9628906, -1.8798828, -1.3955078, 3.1367188, 0.19946289, -0.009033203, -1.4941406, -1.2792969, 1.7597656, -0.6953125, 0.7998047, 0.22790527, 1.3427734, 0.76660156, -0.5708008, -3.0761719, -0.63671875, -0.54296875, 0.9448242, -2.6464844, 1.7792969, 1.6396484, -0.18847656, 0.6557617, 0.41357422, -0.9785156, -1.9853516, -0.9970703, 0.05908203, 0.49316406, 2.8828125, -0.17956543, -1.8154297, 0.85546875, 1.4443359, 0.7114258, 2.9707031, 0.32617188, 0.22192383, 1.9121094, -2.1386719, -0.8491211, -0.1303711, 0.07849121, 2.5957031, 2.1289062, -0.97314453, 1.2304688, 0.02684021, -2.5703125, 0.5078125, 0.7060547, 1.5742188, 0.7558594, -0.5917969, 1.9580078, -3.7578125, 1.6591797, 1.7822266, 1.3056641, 0.43017578, -1.3310547, 0.5419922, 4.6484375, -0.27270508, -3.0488281, 0.98876953, 2.3398438, 1.0107422, 0.9135742, 1.4042969, 0.4506836, -0.71191406, 0.0013151169, 0.97509766, -1.6328125, 1.0683594, 2.3046875, -0.5541992, -1.2119141, -1.0205078, -0.2788086, 1.8574219, -0.671875, -0.61865234, -0.99121094, 2.0996094, -2.3652344, -2.7460938, 1.1728516, -2.125, -0.62939453, 1.2138672, 2.2441406, 1.2109375, 0.66015625, -2.4804688, -0.28857422, 1.3369141, -1.5126953, 1.5654297, 1.5800781, -0.52490234, -0.056488037, -1.2841797, 0.081726074, -2.5214844, -3.5332031, 2.046875, -2.6113281, -1.7773438, 1.1728516, -2.8730469, -3.2832031, -1.1855469, 0.1418457, 1.9511719, 0.89160156, -0.21166992, -1.9980469, -0.05996704, -0.65185547, 0.16833496, 0.14916992, 1.7832031, -0.40722656, -2.8730469, 0.84033203, 0.7421875, 0.19396973, -0.045776367, -1.8798828, 0.63427734, 0.96972656, -0.12609863, -0.13598633, 0.042541504, 1.3164062, -1.3496094, 0.8095703, -3.5527344, -0.47192383, -0.64990234, 1.7539062, -0.26000977, 0.49243164, -2.9921875, -0.1307373, 0.2064209, -1.7021484, 0.99316406, -1.5273438, 2.2773438, -1.6396484, 0.28027344, 1.9804688, -2.0371094, -2.3671875, -1.2597656, 0.32910156, -0.5048828, -0.13513184, -2.2949219, 0.55859375, -0.15466309, 0.6098633, 0.30688477, -2.1640625, -2.8691406, 0.7861328, 0.46972656, -1.7900391, -0.08129883, 1.4697266, 0.19433594, -1.7744141, -0.34985352, -0.52001953, -1.7177734, -0.63134766, -1.046875, 1.4404297, -0.96191406, 0.5708008, 1.4589844, 1.5263672, 0.82421875, -2.3964844, -3.9570312, 1.4892578, 2.1386719, -3.0234375, 0.8955078, -1.4697266, -1.6171875, -2.6308594, -1.8378906, 1.7421875, 3.1953125, 3.8398438, 0.68896484, 0.32714844, 1.4433594, 1.7763672, -0.33984375, -1.9638672, 0.6640625, 4.6679688, -2.0097656, -0.2890625, -0.49560547, 1.4804688, -3.3496094, -0.6738281, 2.3320312, 0.32788086, 2.9882812, 1.7480469, 2.7773438, 0.21533203, 0.3149414, 2.1542969, -0.023986816, -0.26635742, 0.28320312, 0.31958008, 1.1005859, -0.99560547, 2.8203125, 2.5585938, 1.0498047, 2.6210938, 0.06088257, -0.10839844, -2.0097656, 0.7788086, -0.25463867, 1.7558594, 0.5732422, 1.5644531, 0.044403076, -0.17663574, 0.08728027, -0.20776367, 0.5698242, -1.7636719, -0.1217041, 1.7646484, 1.1181641, -0.7109375, -0.25195312, -0.4663086, -0.9785156, -0.8989258, -0.4675293, 1.1240234, 1.5048828, 2.4628906, -0.98095703, 0.45703125, -1.6367188, 1.7392578, -0.5732422, 0.6904297, 0.32885742, 0.7807617, -1.3671875, -1.6660156, 0.3244629, -2.7285156, -1.2539062, 4.1796875, 1.921875, -1.1767578, 2.0195312, -1.4296875, 2.6269531, 1.6728516, -0.54589844, 0.37841797, -0.1899414, 0.67333984, -0.031799316, -0.5449219, 2.4511719, -0.6020508, -3.7265625, -0.19677734, -1.9609375, 1.3330078, 0.5605469, -0.017837524, -4.0625, -0.0021648407, -0.1928711, 1.7724609, -0.5571289, 3.4746094, 1.3505859, -0.83691406, 2.6894531, -4.4609375, -1.0029297, -2.2578125, -5.6210938, 0.052368164, -3.7675781, 0.6538086, 3.0429688, 0.27661133, 0.42456055, 2.2949219, 2.453125, -4.1484375, -0.56152344, -0.7524414, 1.4638672, -3.2109375, -0.05493164, 2.7363281, 0.94970703, -0.74658203, -1, -0.55859375, -2.7480469, -0.17578125, 0.7109375, -3.0429688, -0.25024414, -2.2753906, 0.7236328, -1.7685547, -1.6386719, 1.3740234, -1.2060547, -0.75341797, -2.9140625, 2.0195312, 0.29882812, -0.24084473, -0.92041016, 2.6484375, 1.8408203, -0.81396484, -0.19946289, 0.4572754, 3.4472656, 0.4326172, -1.3232422, -0.60302734, 1.3173828, 0.6557617, -0.65185547, -1.703125, -0.39233398, -1.2451172, 1.2548828, 1.3037109, 1.9375, 0.81689453, 1.4072266, -2.953125, 0.6816406, 0.7348633, -1.1357422, -0.43676758, -0.43969727, -1.3554688, -2.7128906, -0.24035645, -1.5400391, -2.0703125, -1.3886719, 0.056762695, -3.1035156, 2.9433594, -0.23510742, -0.09899902, 0.8935547, -2.1152344, -0.28027344, -1.7675781, 0.23278809, -1.5585938, -0.48120117, -1.3388672, 0.03353882, 2.6210938, 1.8505859, -0.69140625, -0.51220703, 0.51953125, -3.5, 0.15649414, -0.61279297, 2.6835938, -0.012374878, -1.0966797, 0.44189453, -2.1855469, 4.6523438, 0.17749023, 0.9067383, 0.24169922, -1.3603516, -2.2617188, 2.1777344, 2.5175781, 2.2949219, 1.21875, 1.1259766, 2.3808594, 2.8105469, 0.97021484, -0.8510742, 1.4941406, -0.50927734, 1.0341797, -1.5087891, 1.0830078, -2.1855469, -0.31591797, 0.075683594, 2.28125, 2.6035156, 2.9433594, 0.55371094, -1.6962891, 1.5751953, 1.0712891, -0.8847656, -2.0371094, 0.15771484, -1.6542969, 2.8203125, 0.04611206, -3.1054688, -0.17687988, 2.1328125, -0.6459961, 2.3554688, 1.1240234, -0.93847656, 0.7060547, -1.6220703, -0.99072266, -0.0022201538, -0.6557617, 1.5039062, -3.3398438, 1.0986328, 0.5600586, 1.0751953, 2.4667969, -0.47705078, -1.2626953, -0.51171875, -1.9775391, 1.1269531, -1.8105469, -1.4238281, -3.8242188, 0.23852539, 3.0214844, 1.09375, 0.19873047, -0.40722656, 0.068115234, -2.0917969, -1.3779297, -0.48950195, 1.6386719, -0.1373291, -0.54541016, 1.6347656, -2.6445312, -0.4152832, -2.3769531, -0.9946289, -0.56933594, 2.5429688, 2.5410156, 1.9716797, -0.1583252, -0.8222656, -3.0117188, -5.875, -1.5761719, 3.0878906, 0.9951172, 0.020263672, -2.1230469, -0.5126953, 0.9135742, -0.21594238, 1.2324219, -2.9453125, 0.38232422, -1.3291016, -1.1591797, -1.53125, 1.0410156, -0.81591797, 0.13684082, 0.123413086, -0.20251465, -0.14953613, -3.3007812, -2.7363281, 1.3925781, -2.46875, -1.1435547, 1.7333984, -1.6503906, -2.3476562, 1.1542969, 1.1728516, -3.3359375, 2.7050781, -3.3769531, 0.03161621, 0.8339844, -1.3378906, 1.6582031, 1.8916016, -0.48828125, 1.7265625, 1.6240234, 2.9453125, -1.1279297, -0.6088867, 0.6879883, 0.53027344, -0.24157715, -2.9121094, -1.0517578, 0.1104126, 1.6640625, 1.7216797, -1.9716797, -1.5878906, -1.5458984, -4.1171875, 0.45385742, -1.0673828, -0.73095703, -0.4182129, 1.4169922, 1.6455078, -0.12384033, 0.21313477, 1.2353516, -0.8701172, -1.1298828, 1.8144531, -0.8652344, 1.8759766, 2.6347656, -1.4580078, -3.2363281, -1.9785156, 2.8261719, 3.1855469, -0.38378906, 0.8149414, -0.18310547, -0.0135650635, 0.48046875, -0.25927734, 1.7119141, 1.4267578, 0.56396484, -1.6259766, -0.59228516, 3.234375, -1.4453125, 0.5810547, 0.6748047, 0.28759766, -1.3457031, 3.3984375, 2.7890625, -3.3828125, 0.39331055, -1.1914062, 1.6757812, -1.0712891, -2.6699219, 0.6503906, -2.640625, 0.26953125, -1.3388672, -2.7207031, -2.9902344, 2.0390625, -0.10772705, -1.5107422, 1.4550781, 2.9550781, 0.2553711, -0.5175781, 1.7890625, 1.1708984, 0.36083984, 0.28344727, -3.1425781, 0.0519104, 1.6875, -3.1914062, 0.022583008, 2.5898438, 0.5385742, -1.2109375, 1.4873047, 1.7822266, 3.875, -0.56103516, 2.8164062, 3.7128906, 0.62402344, 1.9345703, 1.6953125, 2.4960938, 2.90625, -0.88183594, 1.4785156, 1.1708984, 0.7792969, 1.2099609, -0.39331055, -0.46704102, 0.11273193, -1.2158203, -0.3083496, 1.4902344, 1.5576172, -3.1445312, -1.1513672, -0.40454102, -0.3334961, -3.7011719, -0.093811035, -1.9912109, -0.47924805, 0.00022602081, -1.1337891, 1.7548828, 1.6904297, -1.5800781, 0.51220703, 0.39379883, 3.53125, -2.0566406, -0.0017795563, -0.91796875, -3.4335938, 1.3564453, 2.6738281, 0.8354492, 0.44384766, 1.4121094, -0.17736816, -0.79248047, 2.59375, 2.8613281, -1.6425781, 0.42285156, -1.4267578, 4.3125, 1.6894531, -1.8974609, 2.2285156, 0.84033203, -1.8691406, -3.8183594, 1.4121094, 0.3696289, 0.0025539398, -0.3227539, -4.53125, 2.4101562, -1.2636719, 0.4025879, -1.9619141, -0.17492676, -0.6791992, -1.2529297, 0.9238281, 0.60839844, -1.6503906, 3, 1.6962891, -2.3457031, 0.9580078, 2.7734375, 1.1748047, -0.06738281, 0.1472168, 1.3613281, 0.7915039, -0.4165039, 2.9042969, -0.36499023, -1.2109375, 0.17749023, 2.0605469, 0.9716797, 0.8623047, -0.58251953, 0.7011719, 0.3840332, 1.1269531, -0.5600586, -0.8461914, -0.68359375, -0.9760742, 0.3166504, -0.13708496, -1.5898438, -2.3730469, 1.5976562, 1.2050781, -2.2539062, 0.32714844, 0.42163086, -0.14660645, 2.6796875, 0.5751953, -0.52441406, -0.89941406, -0.87841797, 0.14294434, -1.8085938, -0.24633789, 0.47729492, -0.73046875, -0.3088379, -2.5839844, -0.67041016, 0.87060547, -0.21325684, -1.1376953, 0.2154541, -1.9287109, -1.4560547, 0.10839844, -1.625, 2.0390625, 2.8535156, -1.2490234, 1.6689453, -0.71435547, -1.9111328, -0.45654297, -2.328125, -2.078125, 0.39111328, 2.6425781, 1.7822266, 1.6123047, -1.7167969, -2.4160156, -0.5996094, -1.9824219, 3.0117188, -1.2275391, -0.42358398, 0.67871094, -0.08734131, 2.9472656, 0.29248047, 0.1574707, 0.25952148, 0.6928711, 1.1933594, -1.9033203, 1.1865234, -0.55371094, -0.54052734, 0.6591797, 3.0800781, 2.3984375, -1.3857422, -0.3449707, 1.9951172, -0.16442871, -2.0898438, -0.28564453, -0.88183594, -1.2998047, 0.9980469, 2.4238281, 3.0351562, 1.1884766, -0.71191406, 0.078552246, -0.5605469]}, "B01M2DKPX0": {"id": "B01M2DKPX0", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure\nDescription: Features:
\u25cf Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

\u25cf Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

\u25cf Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

\u25cf Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

Specification:
- Low Pressure LPG hose
-Inlet Pressure: 25-250PSI
-Outlet Pressure: 11\"W.C.
-Flow Capacity: 95000 BTU/Hour
-Certificate: CSA -Hose Length: 6feet/72inch

Warning: Only for OUTDOOR Use.\nFeatures: \u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Diverse Use\u3011Fits for propane grill, camp stove, fire pit, heater, water heater, etc\n\u3010100% Safety\u3011Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank\n\u3010Control Gas Flow\u3011The Outlet Pressure of the regulator is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels\n\u3010Nice Length\u3011 6 FT long enough hose allows for flexible configurations\n", "embedding": [-0.86865234, 1.8535156, 0.080566406, -0.099243164, -1.7050781, 1.8662109, 1.8212891, -2.6484375, 1.7871094, 0.43432617, 0.028274536, -1.4433594, 1.9755859, -4.2148438, 2.8261719, 0.51660156, 0.5078125, 1.5742188, 1.6699219, 1.8994141, 1.6425781, -1.0439453, 3.4941406, 0.02734375, 1.2001953, -1.1386719, 2.4335938, -3.2871094, -0.48583984, -0.45703125, 1.171875, 1.0625, -0.010749817, 1.2929688, -2.4296875, -0.7426758, -0.9604492, 0.74853516, -2.5703125, -2.2617188, -1.5800781, -0.8652344, 2.5996094, 0.7026367, -2.0664062, 1.0664062, 0.8535156, 1.2460938, -0.046173096, -0.6616211, 0.38085938, 0.45166016, -0.54589844, 1.0927734, -1.8662109, -0.49902344, -1, -2.84375, 1.5263672, 1.2792969, 0.8881836, 0.016311646, -1.9101562, -0.14196777, -1.7060547, 0.9042969, 1.2314453, -1.1884766, -0.44580078, 0.6357422, 2.1386719, 0.96191406, -0.6660156, -1.1269531, 0.052215576, 0.81591797, -2.3554688, -0.3071289, 3.0449219, 0.44360352, -2.2167969, 3.046875, 2.0097656, -1.9931641, 1.4521484, -0.6176758, -2.9609375, -0.45117188, 2.0976562, 1.0458984, -2.1054688, 4.2265625, -3.4550781, -1.6269531, 1.2861328, 1.4726562, 1.7871094, 2.578125, 1.7236328, -0.6035156, -1.2548828, -1.3691406, 0.07086182, 0.47998047, -2.4707031, -1.2333984, 1.2158203, 1.9648438, -3.0332031, 0.16882324, 0.2866211, 0.2705078, 1.7011719, -1.09375, -0.109436035, -2.1269531, -0.6401367, -0.012809753, 3.9667969, 0.9604492, 3.4023438, 1.1855469, -0.013427734, -0.390625, 1.2451172, 0.24707031, -0.44628906, 0.79541016, 2.9335938, -0.9902344, 0.08081055, -3.1894531, 1.6318359, 0.4868164, 1.7216797, -2.9550781, -1.1699219, -2.46875, -3.1425781, 0.6977539, -3.8964844, 0.040618896, 0.9995117, -0.099731445, -4.4101562, 0.49169922, -3.03125, 1.90625, 3.4863281, -3.1875, 0.68310547, -0.89453125, 0.69628906, -1.7666016, 2.5292969, 1.2392578, 1.1787109, -1.7226562, 3.6113281, 1.8759766, 1.5673828, -1.6162109, -2.2167969, 0.55029297, 0.47143555, -3.0488281, 1.0371094, 0.92529297, -1.0224609, 0.5410156, 0.16027832, -4.140625, 0.5996094, -0.5283203, 0.62060547, -0.8901367, 1.2597656, 1.6259766, 3.1992188, 0.5073242, -4.1640625, -2.9140625, 1.0380859, -0.49414062, 1.4121094, -0.8300781, -0.41967773, 0.12030029, 1.1044922, -0.91845703, -1.5332031, -1.1494141, -1.0498047, 1.2783203, -1.1738281, -3.171875, -2.1660156, -1.2226562, 0.86865234, 1.5039062, -2.7558594, -0.828125, 0.7285156, 1.0771484, -2.4941406, -0.7705078, 1.9589844, -0.8378906, 0.38623047, 1.5664062, -0.09320068, -0.017654419, 2.0742188, -0.31225586, -0.46435547, -1.4492188, 2.2050781, 2.9335938, 2.3671875, 1.8974609, -0.2998047, 0.6723633, 0.74365234, 0.8652344, 2.0742188, 0.5986328, -0.7519531, 1.4521484, -1.8837891, -2.3398438, 3.0078125, 1.0859375, -0.02406311, -1.3046875, -1.1855469, 2.6640625, 0.6533203, 0.5917969, 0.3569336, 1.6494141, 0.05307007, -0.4560547, -4.0898438, -0.6928711, -0.87158203, -0.80810547, -0.51708984, 0.3137207, 2.4394531, -0.051727295, 1.1601562, 0.25219727, -0.9550781, -1.3496094, -0.5263672, -1, 0.8378906, 2.8964844, -1.1455078, -1.484375, -0.15478516, 1.8242188, 0.82714844, 2.5019531, 0.9165039, -0.9589844, 1.3837891, -1.5761719, -2.4160156, -0.25219727, -1.6542969, 3.3476562, 2.4472656, -0.5859375, 1.4277344, 0.4897461, -1.9394531, 0.67333984, 0.3095703, 0.50927734, 0.62060547, -0.81152344, 1.8955078, -2.3105469, 0.5800781, 1.3583984, 2.0097656, 0.16870117, -1.5761719, 0.67822266, 5.296875, -0.040527344, -2.2167969, 1.3662109, 1.3203125, 1.4287109, 0.90625, 1.0214844, 1.0859375, -1.5585938, 0.95166016, -0.31201172, -2.1757812, 1.6816406, 1.3505859, -0.54833984, -0.26660156, -2.5839844, 0.5966797, 0.7841797, -1.0986328, 0.2512207, -1.0029297, 0.34350586, -2.0566406, -1.8564453, 1.4882812, -2.2558594, -0.95703125, 3.0097656, 0.2121582, 0.24560547, 0.47216797, -3.1484375, 0.31420898, 1.2324219, -1.8798828, 2.1132812, 1.9414062, -1.2783203, 0.048095703, -1.4130859, -0.38378906, -2.4238281, -3.2148438, -0.14099121, -1.4833984, -1.9804688, 0.9604492, -2.0292969, -3.0566406, -0.67041016, -0.28637695, 3.3964844, 0.093566895, -0.96777344, -1.9492188, 0.55371094, -0.64501953, -0.36279297, 0.36572266, 2.4746094, -0.30981445, -1.3105469, 0.5488281, 0.77734375, 0.61328125, 1.4726562, -1.9296875, 1.1777344, 1.4101562, 1.0322266, -0.0065460205, 1.0214844, 0.89697266, -3.2363281, 0.85058594, -5.3164062, -0.4387207, -0.081604004, 1.4990234, -0.22424316, 0.7734375, -2.7226562, -1.796875, 0.20373535, -1.4140625, 1.6298828, -1.6914062, 1.9169922, -1.4667969, -0.6064453, 1.2851562, -1.8056641, -2.6816406, -1.3222656, 1.6474609, -2.0195312, 1.2451172, -2.1386719, 0.051483154, -0.086120605, 0.18444824, 0.07537842, -1.6699219, -2.5859375, 1.1044922, -0.19848633, -1.9121094, -1.0087891, 1.4238281, 0.69677734, -1.3642578, -1.7539062, -0.90722656, -2.0097656, -0.49438477, -1.2324219, 0.24987793, -2.09375, -1.0839844, 2.2363281, 0.8803711, 1.2324219, -1.1123047, -3.9511719, 0.90234375, 3.0546875, -1.7617188, 2.0332031, -1.6083984, -1.8730469, -2.5449219, -1.921875, 2.0820312, 1.1318359, 1.9882812, -0.11999512, -0.40942383, 1.9414062, 1.3466797, -1.0009766, -0.8544922, 0.64160156, 5.4140625, -3.359375, -0.22814941, -0.6513672, 1.5742188, -4.7382812, -0.74853516, 2.578125, -0.32910156, 2.6484375, 1.7353516, 0.9975586, 0.44458008, 0.6147461, 1.2470703, 0.87646484, 0.8334961, -0.020828247, 0.45898438, -0.02357483, -1.3876953, 2.6308594, 0.8051758, 0.8208008, 2.4628906, 0.359375, -0.7416992, -0.8310547, 0.3088379, 0.46411133, 1.0097656, 0.42626953, 2.3710938, 0.6118164, -0.5185547, -0.07891846, -0.22998047, 1.2148438, -1.7353516, -1.0507812, 1.0146484, 0.53222656, -0.7416992, 0.6298828, -1.6474609, -0.31347656, -0.4189453, -1.0390625, 0.9824219, 0.9345703, 1.7646484, -1.3808594, 0.78125, -1.6552734, 2.2265625, -1.3330078, -0.6401367, -0.3059082, 0.3815918, -1.296875, -1.1357422, -0.08502197, -3.0566406, -1.5126953, 4.0820312, 2.5410156, -1.2949219, 1.7734375, -0.33666992, 2.5234375, 2.7988281, -0.57910156, -0.21813965, -0.8769531, -0.091552734, -0.07318115, -0.33496094, 1.9921875, -0.059051514, -4.0820312, 0.059020996, -2.2089844, 0.10559082, 0.96875, -0.14343262, -3.1132812, 1.9326172, -0.4206543, 0.6176758, -0.625, 3.484375, -0.19042969, -1.7148438, 1.3574219, -3.9355469, -0.3840332, -2.1191406, -6.046875, 0.85253906, -2.3886719, 0.3046875, 1.703125, 0.05819702, 0.4909668, 1.4082031, 0.73583984, -3.3984375, -0.7519531, -1.0751953, 1.1113281, -2.9257812, 0.59277344, 1.3720703, 0.08709717, -1.0664062, -2.328125, -0.13195801, -3.0859375, -0.59814453, 1.9033203, -2.1738281, -0.61865234, -1.9335938, 0.65771484, -1.6943359, -0.54248047, 1.1376953, -1.4238281, -0.28100586, -3.4179688, 1.5673828, 1.7929688, 0.44311523, 0.0020637512, 2.7636719, 1.8027344, -1.2011719, 0.9345703, 0.21411133, 4.5625, -0.3762207, -2.5371094, -0.050994873, -0.31567383, 0.14770508, -0.6425781, -1.4179688, -0.51123047, -1.1660156, 1.9365234, 0.9379883, 2.4550781, 0.7836914, -0.013908386, -4.328125, 0.33422852, 0.49780273, -2.328125, -1.4521484, -1.3037109, -1.2333984, -2.5664062, -0.4790039, -1.9121094, -1.1894531, -1.4589844, 0.09283447, -2.6191406, 1.6298828, -0.2878418, -0.19628906, 1.0615234, -1.5, -0.22485352, -0.13952637, -0.70654297, -2.1757812, -0.8803711, -1.4179688, -0.84472656, 1.9287109, 0.98779297, -1.3623047, -0.68115234, 0.8730469, -3.4042969, -0.28686523, -1.6474609, 1.8730469, 0.89697266, -0.7363281, 0.48217773, -1.1103516, 4.1523438, 0.096069336, 0.9926758, 0.8535156, -0.47045898, -1.7587891, 2.2695312, 2.9765625, 2.21875, 0.7861328, 1.8779297, 3.4277344, 2.3476562, 2.3378906, 0.055511475, 2.3925781, -0.3371582, 0.46240234, 0.22570801, 0.7553711, -1.2861328, -0.024795532, -0.60546875, 1.6240234, 2.4101562, 3.0722656, 0.83984375, -1.4082031, 1.5224609, 1.2441406, -0.49291992, -1.1435547, 0.60058594, -1.5859375, 2.4960938, -0.7841797, -2.3515625, 2.0371094, 1.7763672, 0.017120361, 3.2089844, -0.14331055, -1.6865234, 0.25097656, -1.4052734, -0.53808594, -0.85546875, -1.6865234, 2.1660156, -2.3203125, 1.9013672, 0.040649414, 2.4707031, 2.0429688, -0.30078125, -0.69189453, -0.21069336, -1.7509766, 1.3837891, -1.0449219, -1.2890625, -3.8964844, 0.42260742, 1.4560547, 0.53222656, 1.6162109, -0.48095703, -1.0693359, -2.0605469, -1.765625, -0.09295654, 3.5722656, -1.3642578, -1.6826172, 1.9667969, -0.7060547, -0.71875, -2.2460938, -0.9926758, -1.0019531, 2.640625, 1.9433594, 1.9521484, -0.47753906, -1.7177734, -2.4375, -5.4570312, -0.91064453, 2.1269531, 0.94677734, 0.83984375, -2.4628906, -0.37768555, 2.4414062, -0.18566895, -0.36621094, -2.3671875, 1.0742188, -1.0488281, 0.36987305, -2.546875, 0.72558594, -0.7246094, 1.0126953, -0.0031776428, 0.984375, -0.5463867, -2.1972656, -2.8183594, 1.6230469, -2, -1.3740234, 3.4628906, -1.7421875, -1.6425781, 1.0429688, -0.18359375, -1.7617188, 1.9355469, -2.2246094, -0.9477539, 0.98046875, -2.1015625, 1.8125, 1.8066406, -0.82714844, 0.8652344, 0.3203125, 1.5166016, 0.0012989044, -0.6347656, 0.5131836, 2.1074219, -0.27148438, -1.8291016, -0.43920898, -0.5371094, 1.5996094, 2.6464844, -2.078125, -0.7363281, -1.4375, -3.5078125, -0.36401367, -1.828125, -0.79003906, 0.89160156, 1.2070312, 0.9291992, -0.31835938, 0.6098633, 0.48413086, 0.5605469, -1.1542969, 1.0703125, -0.5830078, 2.9785156, 1.3320312, -0.7128906, -4.0585938, -1.0898438, 1.9921875, 4.171875, -1.0507812, 1.09375, -0.57373047, -0.4296875, 0.68847656, -0.010391235, 1.6748047, 1.5595703, 1.1289062, -1.7773438, -0.5600586, 2.5878906, -1.3242188, 1.3164062, -0.016845703, -0.8051758, -0.4543457, 2.53125, 2.2949219, -2.3828125, 0.7163086, -0.8408203, 2.6816406, -0.8569336, -2.7558594, 0.25952148, -3.2148438, 0.80908203, -1.3496094, -2.7050781, -3.390625, 1.6933594, 0.79785156, -1.6083984, 1.1191406, 3.3632812, -0.31420898, -0.3869629, 0.95654297, 0.7939453, -0.5800781, 0.37036133, -1.8417969, -0.12890625, 1.3544922, -2.0976562, 0.35107422, 2.7871094, -0.97216797, 0.13305664, 2.0644531, 2.6679688, 2.5976562, 0.94189453, 2.2714844, 4.484375, 0.3359375, 2.4589844, 1.9414062, 1.9628906, 1.6240234, -1.8681641, 0.703125, 2.65625, 0.30541992, 0.65966797, -0.5883789, -0.23657227, -0.53222656, -1.5332031, -1.0771484, 1.0126953, 1.6953125, -2.4628906, -0.9824219, -0.28881836, -0.56103516, -3.4667969, 2.09375, -1.7988281, -0.64941406, 0.57373047, 0.8745117, 0.5410156, 0.8359375, -2.0703125, 0.13684082, -0.2133789, 2.0839844, -1.4873047, 0.3305664, -0.64208984, -2.8984375, 0.6069336, 2.6035156, -0.33544922, 0.29125977, 1.6230469, 1.5742188, 0.08850098, 2.4023438, 1.5166016, -2.3378906, 0.578125, -2.4492188, 3.5371094, 1.5664062, -2.8417969, 2.2148438, 1.3603516, -1.7929688, -4.0585938, 2.6347656, 0.4345703, -0.86328125, 0.20043945, -3.1269531, 1.7548828, -1.4648438, 0.13208008, -2.4609375, -0.14477539, 0.7680664, -1.2578125, -1.0205078, -0.5263672, -1.6201172, 3.1757812, 1.9033203, -1.3623047, 0.98876953, 2.9042969, 1.234375, -0.24047852, 1.1611328, -0.34594727, 0.47631836, -0.8745117, 2.8359375, 0.32348633, -0.95654297, 0.09643555, 2.96875, 0.39282227, 1.6835938, -0.5864258, -0.37231445, 0.30541992, 0.5439453, -0.7241211, -0.11242676, -1.7539062, -0.86572266, 0.47338867, 0.2668457, -1.8779297, -1.5400391, 1.8378906, 1.1816406, -1.5947266, 1.6083984, 1.3408203, -1.3583984, 2.3222656, 0.81152344, -1.1992188, -0.093933105, -0.13745117, -0.024612427, -2.625, -0.31811523, -0.035858154, -1.6933594, 0.3540039, -1.6494141, -0.15734863, -0.066101074, -1.7275391, -1.8300781, 0.5214844, -2.2539062, 0.09246826, -0.5957031, -0.22912598, 1.796875, 3.4863281, 0.44726562, 0.83740234, -1.5527344, -1.4882812, 0.67626953, -2.5585938, -1.9052734, 0.83984375, 4.0820312, 0.7915039, 1.3320312, -1.21875, -3.1484375, -0.33447266, -0.6484375, 2.1933594, -0.4765625, 0.036499023, 2.1132812, 1.3876953, 2.8242188, 0.2401123, -0.040771484, -0.2919922, 0.4099121, 1.7216797, -0.20690918, 1.8457031, 0.35546875, 0.07165527, -0.25195312, 3.9277344, 2.4589844, -0.5571289, 0.87646484, 0.56689453, -0.23254395, -2.5703125, 0.4501953, -1.2744141, -0.578125, 2.0273438, 1.5712891, 2.953125, 0.060638428, -1.1474609, -1.5722656, 0.057250977]}, "B08XYJP6DZ": {"id": "B08XYJP6DZ", "original": "Brand: Flame King\nName: Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray\nDescription: \nFeatures: Never run out of propane - Built-in accurate gauge\nThe HOG can be used both vertically and horizontally\nEZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges.\nNew design with built in wheels for ease of transport\nRugged, high grade steel welded construction\n", "embedding": [-1.5292969, 1.9794922, 0.50097656, 0.2644043, 1.0527344, -1.5244141, -0.47070312, 0.4482422, 0.79003906, -0.34057617, 2.4277344, 0.5786133, 0.29101562, -2.8125, 0.8432617, -1.1894531, -0.15136719, 1.2626953, 0.09429932, -0.30932617, 3.0097656, 0.6826172, 0.35351562, -1.7910156, 3.1132812, -0.45922852, 4.0820312, -2.1953125, -0.3894043, 1.0273438, 1.2080078, 0.11035156, 0.50927734, 1.6611328, -1.3378906, -2.0605469, 1.75, -1.2910156, -6.1796875, -1.671875, -2.7929688, -0.17175293, 0.6557617, -0.4248047, -0.9277344, 0.9223633, 1.0302734, -1.2490234, 0.17675781, 1.2236328, 2.5839844, 1.3886719, -0.7080078, 1.34375, -0.034851074, 1.4648438, 0.9736328, -3.9414062, 0.16003418, 0.5048828, 2.3808594, 1.0136719, -2.8144531, 1.3779297, -0.23950195, 2.1054688, 0.4350586, 0.5966797, -0.6040039, 2.8671875, -0.60009766, 1.6171875, 0.9458008, -1.6533203, -1.9160156, 0.9536133, -2.7382812, -0.14978027, 1.5195312, -0.27514648, -0.33276367, 1.7597656, 1.1708984, -1.6425781, -0.47851562, -2.1230469, 0.47192383, -1.0449219, 1.9316406, 0.37060547, -0.9746094, 1.5439453, 0.22167969, -4.6523438, 1.6640625, 1.0449219, -0.25170898, 0.50097656, 0.6777344, 1.9472656, 1.6025391, 0.8041992, -0.09240723, 0.041625977, -0.6381836, -1.3173828, 0.19482422, 0.70166016, -2.6289062, 3.0117188, -1.1503906, 0.12512207, 1.2734375, -0.20471191, -0.96240234, -0.61083984, 0.3046875, -0.2619629, 2.7460938, 0.32104492, 1.6943359, -2.7519531, 1.0322266, -0.8222656, 2.0742188, 0.2355957, 0.20117188, 0.7939453, 5.5117188, -0.49951172, 2.3007812, -0.37329102, 3.546875, -2.8789062, 0.1887207, -1.7646484, 0.28027344, -1.171875, -2.1894531, -1.7382812, -3.4394531, -0.6816406, 1.7617188, -0.5913086, -1.8300781, -0.51708984, -0.7080078, -1.0185547, 0.5566406, -1.7568359, 0.6616211, -0.83203125, 0.2565918, -0.20422363, 2.46875, 0.765625, -0.5913086, -2.0742188, -0.38549805, 0.6333008, 0.30566406, -1.0742188, -2.0273438, -0.7241211, -2.4121094, -2.1015625, 0.8305664, 0.8442383, -0.95214844, 2.7558594, 0.24206543, -0.45166016, -0.76123047, 0.6616211, -0.39379883, -1.0986328, 0.3684082, 3.0449219, -0.06262207, 0.2631836, -2.9257812, -0.8642578, -0.11999512, -1.7910156, 2.1386719, -1.765625, -1.3369141, -2.1738281, 1.6855469, -0.8208008, -1.4033203, 0.9628906, -0.18713379, -0.04888916, 1.9433594, -0.8652344, -2.2070312, -3.2675781, 1.6035156, 1.8769531, -1.4160156, -0.85302734, 3.0488281, -0.87060547, -2.5625, -0.38671875, 1.21875, -1.0742188, 1.8740234, 0.5258789, -0.34448242, 0.7363281, 2.8964844, -1.5322266, 0.06903076, -2.8417969, 1.0302734, 2.3046875, 1.5976562, -0.16113281, 0.41748047, -1.796875, 0.33325195, 0.5024414, 0.30126953, 1.3173828, 0.66796875, 0.87597656, -3.2109375, -1.7412109, 1.6542969, 2.296875, 0.94433594, 0.71191406, -1.7216797, 2.7890625, 0.4260254, -0.5859375, 0.14367676, 0.86816406, 0.4741211, 0.5175781, -1.8583984, -0.9169922, -2.1445312, 0.70214844, 0.07598877, 0.43139648, 1.5683594, 0.85302734, 0.44873047, -0.11932373, -0.87158203, -0.49047852, -0.7939453, 0.2685547, 1.8378906, 0.9506836, 0.73876953, -1.9775391, 1.5419922, -0.890625, 1.3398438, 0.60058594, -0.64404297, -0.40454102, 3.0566406, -1.0576172, 0.56689453, -0.058563232, -0.53466797, 0.7294922, 3.9101562, -0.5576172, 1.3759766, 2.515625, -1.5244141, 3.1953125, -0.98095703, 1.7822266, 1.5214844, 1.4462891, 0.9902344, -3.5625, 1.3759766, -0.29638672, 0.41601562, -0.6640625, -1.8867188, 0.009094238, 4.796875, -1.1279297, -1.5712891, 1.6035156, 1.7558594, 1.484375, 2.6972656, -0.53808594, 0.4831543, -1.1748047, 0.51416016, -0.24060059, -1.6054688, 0.21411133, 1.0996094, -0.22766113, 0.6694336, -0.25756836, 1.5087891, -0.13146973, -1.8925781, 1.2402344, -2.1152344, 2.0332031, -0.5732422, 0.0037136078, 3.0273438, -2.1074219, 1.484375, 1.2724609, 0.92578125, 0.9008789, 1.0888672, -1.4863281, -0.02456665, 2.0097656, -0.78466797, 1.953125, -0.11407471, -0.4650879, 0.029541016, -0.78564453, -0.107177734, -1.3515625, 0.11437988, -0.1083374, -2.6621094, -1.9326172, 1.3837891, -3.1386719, 0.6201172, -0.7026367, -2.8476562, 2.3632812, 0.4555664, -1.6542969, 0.69628906, -0.24621582, 0.7246094, -1.703125, -0.24475098, 3.4277344, -1.1699219, -4.1484375, -0.41333008, 1.4394531, 0.31103516, 2.2753906, -1.8427734, 0.1574707, 0.12890625, -0.7890625, -0.24804688, -1.09375, -1.3476562, -0.5341797, 2.2480469, -4.34375, 1.9404297, 0.009773254, 1.5322266, -0.37158203, 0.9926758, -2.3984375, -1.8886719, -0.8857422, -0.27807617, 2.0722656, 0.7832031, 0.3935547, 0.104003906, -0.13232422, 0.8598633, -1.3847656, -1.4189453, -0.40283203, 0.1348877, -0.8457031, -1.2001953, -4.2148438, 1.2294922, 0.7402344, 0.6904297, 0.14318848, -0.43432617, -2.4414062, -0.38208008, -1.2060547, -0.58154297, -1.609375, -0.51464844, -0.4267578, -2.7382812, 0.9067383, 0.19372559, -1.6484375, -1.9355469, -1.359375, 0.86816406, 0.49072266, -0.52783203, 1.3076172, -0.9223633, 1.6162109, 0.16381836, -4.4921875, 3.34375, 2.4355469, -1.1601562, 1.6816406, -2.8261719, 0.33789062, -2.5195312, -0.64208984, 4.5195312, -0.74609375, 0.99121094, 0.07849121, 0.31201172, 1.5957031, 0.6538086, -1.3095703, -0.53271484, 0.2064209, 2.7539062, -1.6591797, -1.0029297, -0.81347656, 1.2138672, -2.4863281, -0.5473633, 0.43041992, -0.080566406, 1.3291016, 0.24377441, -1.0429688, -1.015625, 0.40551758, 0.12225342, 2.4003906, 1.0625, -0.17333984, -1.109375, 0.6791992, -1.3974609, 0.043029785, 4.0351562, 0.25683594, 3.4296875, 0.55908203, 0.6435547, 0.59472656, -0.25634766, -1.0039062, 2.1621094, 0.99853516, 1.4042969, 0.4814453, 0.83203125, 0.18652344, -0.74316406, 1.234375, -1.3369141, -1.1113281, -0.14013672, 1.0097656, -0.7714844, 2.6757812, 0.24694824, -1.2207031, -0.7368164, 3.9160156, -0.85009766, 0.77978516, 0.4753418, -1.3251953, 1.8212891, -2.234375, 3.2753906, -0.67333984, 0.97802734, -1.0214844, -0.66503906, -2.3945312, -1.9912109, 0.022766113, -1.0908203, -1.9541016, 2.7265625, 0.8378906, -3.3203125, 0.040252686, -2.015625, 0.14819336, 0.2565918, -1.1035156, 0.6020508, 0.578125, 0.37426758, -0.08105469, -1.2275391, 1.6972656, 0.8149414, -0.5444336, 1.0957031, -0.9238281, 0.87402344, 0.33496094, 0.19177246, -1.8222656, 1.2138672, -2.0644531, 2.3222656, -0.38427734, 3.3710938, -0.6479492, 0.66308594, 2.703125, -0.92626953, -0.87597656, -1.9765625, -3.4667969, 1.546875, -2.6914062, -0.625, 2.171875, -2.3398438, 0.8569336, 0.25512695, 1.0986328, -1.2666016, -0.023880005, 0.10479736, 1.4794922, -2.4355469, -1.6962891, -0.15014648, 1.5517578, -2.90625, -0.024887085, 0.92529297, -1.9423828, -1.0595703, -0.31103516, -3.265625, 1.03125, 0.49047852, 1.1064453, -1.3164062, -0.7055664, 2.8496094, -1.7636719, -0.6464844, -1.3300781, 2.9863281, 1.3359375, -0.8276367, 0.30688477, 2.3339844, 2.0507812, -0.6948242, -0.30932617, -0.64697266, 2.4179688, 1.1669922, -2.6328125, -1.5654297, 0.56103516, 1.015625, -3.0351562, 0.8149414, -1.7636719, 0.92333984, 3.7402344, 1.2548828, 0.609375, 0.9379883, 0.25390625, 0.68066406, 0.73535156, 0.94873047, 0.31689453, 0.66259766, -1.140625, -1.5351562, -2.2304688, 1.3291016, -2.84375, -0.3034668, -0.4645996, 0.8774414, -1.9755859, 2.2402344, 0.7006836, 2.2832031, -1.1191406, 0.2919922, -0.31420898, -0.9536133, 0.5830078, -1.2617188, -0.04547119, -0.062408447, -0.9160156, -0.099731445, 0.0030002594, -1.5263672, 0.6298828, 2.0058594, 0.1427002, -1.0878906, -0.20202637, -0.038604736, -2.0976562, 1.3691406, 0.4465332, -0.31835938, 2.7910156, -2.1074219, -1.5322266, -0.35473633, -0.23010254, 0.18725586, 0.92871094, 0.18469238, -0.91796875, 2.8632812, -1.2236328, 0.32128906, 1.8398438, 1.0878906, -0.74609375, 1.2666016, -0.7685547, -1.4589844, -1.1591797, 1.3867188, -2.2167969, 1.5576172, 2.671875, 0.033081055, 1.4873047, 2.4726562, 0.10418701, 0.7270508, 2.0195312, 1.3115234, -2.5136719, -2.4804688, 0.39892578, -0.7841797, 1.6054688, -0.40112305, -1.6894531, -0.08093262, 2.4296875, -1.2148438, 0.99902344, 1.8623047, -1.5517578, -2.1113281, -0.70214844, -1.3525391, -1.0888672, 1.2402344, 0.5854492, -0.65478516, 2.1347656, -1.0742188, 0.91064453, -0.8808594, 0.6542969, 1.2373047, -0.7861328, -1.1621094, -0.5214844, 0.8261719, 0.9238281, -2.5703125, 1.0322266, 0.8857422, 1.7060547, 0.07348633, 1.3115234, 2.2929688, -0.8847656, -1.1601562, 0.31420898, 0.4194336, -0.5546875, -0.7651367, 2.8496094, -0.14331055, -1.4980469, -0.95703125, -0.8041992, -1.2480469, 2.1503906, 2.0292969, -0.52685547, -0.24902344, -0.8491211, -2.2148438, -3.3242188, -0.41723633, 0.17932129, 0.16149902, 0.110839844, -1.4804688, -0.93408203, 0.22070312, -0.5859375, -1.6181641, -1.2070312, -0.16552734, -1.5097656, -0.89990234, -1.0488281, -0.15527344, -0.49951172, 0.8125, -0.20861816, -1.7509766, 0.5214844, -1.03125, -2.8085938, 3.234375, 0.11791992, 0.05706787, -0.0104522705, -2.2382812, 1.53125, 4.2617188, -0.31591797, -4.078125, 1.8505859, -2.9902344, -0.052642822, 0.26245117, -3.2148438, -0.6972656, 1.1757812, -0.45166016, 0.86621094, 3.0625, 2.2636719, -0.9863281, -1.2587891, -0.1126709, 0.5629883, -1.1054688, 1.6425781, 2.5195312, 0.18725586, 0.51708984, 0.6977539, -0.32421875, -1.625, -1.5634766, -0.46362305, 0.37646484, -2.4550781, -1.2060547, 0.80126953, 1.5673828, 0.39501953, -0.66259766, 0.09326172, 0.12585449, -1.1826172, -1.2792969, 0.9482422, -2.0136719, 2.3632812, 2.0039062, -2.2207031, -3.34375, 0.057678223, 0.93115234, 2.15625, -1.4511719, -1.84375, 1.9248047, -1.7734375, 1.1933594, -0.3166504, 1.6884766, 0.85302734, 0.5029297, -1.3554688, -0.13098145, 2.9765625, 0.46899414, 2.2324219, -0.2944336, -0.44335938, 0.9277344, 1.0761719, 2.0625, -1.4726562, -0.3779297, -0.23034668, 0.92285156, -1.9833984, 0.50634766, 0.22485352, -2.4570312, -0.7211914, 1.5507812, -1.6748047, -3.28125, 0.16394043, -0.98583984, -1.3085938, 0.30932617, 0.39282227, 0.0082473755, -0.107421875, 1.0556641, 2.4003906, -1.5722656, -0.016921997, -0.050323486, 1.0136719, 0.82470703, -1.7421875, 1.1699219, 2.0273438, 0.50634766, -0.60009766, -0.08123779, -0.5620117, 2.2363281, 1.1923828, 2.5449219, 3.46875, -0.12463379, 1.4501953, 1.3115234, 0.06866455, 2.1640625, -0.7734375, 0.5385742, -0.39526367, 1.1767578, -0.9868164, -0.6542969, 0.96728516, -1.6484375, 0.6464844, -0.49194336, 0.78808594, 3.0175781, -1.0429688, 0.16430664, -0.35058594, 1.7910156, -1.2353516, 1.3876953, -0.8496094, -0.30078125, 0.4206543, 0.2788086, 0.15185547, 1.2763672, 0.8227539, -0.5942383, 0.21032715, 0.7661133, 1.0488281, -2.1386719, -0.6503906, -1.3779297, 0.5932617, 1.9316406, 1.1181641, 0.2836914, 0.03994751, -1.8808594, -0.47045898, -0.5942383, -0.8276367, -1.5507812, 1.0986328, 0.30566406, 1.8291016, 1.6689453, -0.85791016, 2.3183594, 2.3847656, -1.2998047, -2.9121094, 2.7324219, 0.74658203, -0.1829834, 0.27441406, -2.8085938, 1.1884766, -1.2441406, 1.4160156, -3.1074219, -0.5986328, -1.8232422, -0.16918945, 1.3457031, -0.67041016, -1.2158203, 1.7060547, 1.5205078, 0.07220459, -0.6611328, 1.4550781, 1.2158203, 0.27661133, 0.12792969, 0.008201599, 1.3076172, -0.9277344, 2.5859375, -0.8613281, -0.010437012, -0.1817627, 1.7861328, 0.11102295, -0.85302734, 1.7001953, -0.3876953, 1.484375, 1.2558594, 1.8222656, 1.2910156, -1.1044922, -1.1826172, -1.3320312, -0.4934082, -0.28295898, -2.4472656, -0.3786621, -0.045288086, -2.1152344, -2.15625, 1.1591797, -0.5551758, 0.5673828, 0.030090332, -2.3476562, -0.97753906, 0.98779297, 0.57373047, -0.21496582, 0.24780273, 1.6855469, 2.2363281, -0.9116211, -2.1367188, 0.12719727, -2.4550781, 1.3076172, -1.7998047, 0.2980957, 0.85253906, -1.9101562, 1.0351562, -0.10015869, 0.9433594, 1.375, -0.7988281, 0.49780273, 0.3930664, -0.23522949, -0.3605957, 0.9506836, -2.2519531, -1.6757812, 0.8041992, 0.234375, 1.421875, -0.9838867, -3.2734375, -1.6054688, -2.6035156, -0.81884766, -0.8911133, -1.1103516, 0.7973633, 1.1054688, 1.90625, -0.5292969, 1.7138672, -0.1817627, 1.2119141, 2.59375, -2.8535156, 1.1464844, 0.3466797, 0.23327637, -0.2705078, 2.2539062, 0.55810547, 1.5429688, 0.07727051, 1.9033203, -0.55371094, -2.2929688, -1.0126953, -1.7626953, -0.0960083, 0.40551758, 0.8671875, 0.8535156, 1.7265625, -1.0009766, -0.9379883, -0.8925781]}, "B07DP2KKWT": {"id": "B07DP2KKWT", "original": "Brand: Tonkin\nName: Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979\nDescription: Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.\nFeatures: Plastic Trailer\nAbout 6 Inches Long\nComes in Clear Plastic Box\nFore Ages 14 and up\n", "embedding": [-0.81396484, 2.2070312, 2.546875, 0.2993164, -1.5625, -2.421875, -1.0771484, -2.0605469, -0.1484375, 0.83496094, 2.6523438, 0.47143555, 0.94873047, -1.1367188, 0.53027344, 0.56347656, -0.8222656, 3.7109375, 0.19592285, 1.4550781, 2.6621094, 0.4777832, -1.7246094, -2.1835938, 2.9628906, -1.2490234, 5.0546875, -0.77197266, 2.2558594, -0.20910645, 0.19750977, -0.2734375, 1.0625, 2.2890625, 0.42211914, -0.5786133, -0.8623047, -1.1689453, -4.4609375, 1.1162109, -3.53125, 2.1835938, 0.80029297, 2.7949219, -1.3427734, -1.4804688, 0.5498047, -0.52246094, -0.74853516, -0.20715332, -0.22241211, 0.2956543, -1.140625, 1.7128906, -0.85253906, -1.1054688, -2.8984375, 0.70166016, -1.7246094, -0.3852539, 1.4560547, -1.2216797, -1.3486328, -0.1348877, -0.19702148, 3.3378906, -0.8876953, -2.1972656, 0.52685547, 2.3320312, 0.6376953, -0.18518066, 1.1464844, -1.6367188, -1.0068359, -0.027191162, -2.0058594, -0.14672852, 0.64501953, -1.4443359, 0.4855957, 2.4726562, -0.5698242, 0.15319824, -3.3144531, -2.9414062, -0.16174316, -0.31958008, 0.69433594, 4.3945312, -2.2519531, 0.33251953, 0.0146484375, -4.1367188, 0.44458008, -0.27978516, -0.28027344, 1.6210938, 1.4306641, 1.1054688, 1.5585938, -1.6982422, -1.3242188, 0.5024414, -2.4316406, -0.19848633, 2.0898438, 0.004108429, -2.3457031, 2.4941406, -0.44189453, -1.3759766, 1.0449219, -1.5556641, -0.9223633, -1.0429688, 1.8789062, -1.3935547, 0.28979492, 1.2890625, 4.3789062, -1.3300781, 2.6601562, -0.2824707, 2.2265625, -0.20214844, 0.47802734, 1.2285156, 1.6630859, -0.25952148, 1.8076172, 3.3613281, 0.74072266, -1.2988281, -0.6816406, -0.86376953, -0.13146973, -1.7900391, -1.2089844, -0.08453369, -0.4736328, -0.026138306, 0.7861328, 0.14123535, -2.5234375, -1.0820312, -0.9580078, -2.0859375, -0.0132369995, 0.41235352, 0.63720703, -2.5195312, 0.035003662, 1.9619141, 1.5820312, 1.9267578, 1.1621094, -1.6914062, -1.5, 3.4140625, 2.2519531, 2.984375, -1.3896484, 2.3417969, 0.64453125, -1.1845703, 0.46240234, -0.2590332, -1.3193359, 1.3251953, 1.1113281, -2.3144531, 0.8222656, -0.81103516, 0.23376465, -1.6533203, 0.39624023, -0.43725586, 0.48999023, -1.703125, -0.4255371, -0.5810547, -0.5336914, -2.0097656, 0.025558472, -0.020721436, -0.64208984, -2.5429688, 0.55126953, 1.1552734, 0.057891846, 1.4804688, 0.3227539, 0.17822266, -0.73291016, -1.8613281, -1.4746094, -2.8730469, 2.0332031, 0.7495117, -0.23669434, 0.5488281, 1.5341797, -1.4121094, -1.4619141, -1.8095703, 0.42260742, -1.4082031, -0.88623047, 0.90966797, -0.07165527, 0.30859375, 0.37841797, -1.6171875, 0.7871094, -2.5273438, -2.1152344, 3.9511719, 1.5507812, -0.12976074, -0.9614258, -0.9902344, -1.7822266, 0.95458984, 0.3034668, -0.08508301, 1.1894531, -0.31298828, -0.88378906, 0.9501953, -1.7832031, 1.171875, -0.59814453, 1.3740234, 0.9609375, 1.9755859, 2.3261719, 0.99072266, -0.17041016, 1.1884766, 0.47998047, 1.4775391, -1.2119141, -0.59228516, -0.028671265, 1.1865234, -0.82666016, 0.41918945, 1.6386719, 0.52490234, -0.421875, -1.1162109, 1.21875, -2.3476562, 0.19750977, 3.1523438, 0.55126953, 0.54248047, 0.13427734, -2.7226562, 1.9160156, 1.390625, -1.1611328, -0.041503906, 2.4160156, 2.40625, 1.7714844, -1.8779297, 1.7011719, 2.0058594, 0.26513672, -0.3798828, -2.7226562, -0.7685547, -0.3425293, 1.5966797, -0.29956055, 2.5039062, -1.4443359, 2.9765625, 0.28344727, -1.9033203, 1.2529297, -4.2382812, -1.0068359, -1, -0.97753906, 1.8300781, -1.2802734, 0.26049805, 3.1015625, -0.26879883, -0.56347656, 0.8432617, 0.98779297, 2.1875, 0.90966797, -2.4667969, 0.024765015, -0.5161133, -0.24572754, -1.0791016, -0.78466797, -1.3457031, 3.8476562, 1.7304688, 0.4326172, -0.21411133, 1.1777344, -0.28710938, 1.1503906, 0.13122559, -2.0878906, 1.5185547, 0.9741211, 0.5239258, 1.6884766, -2.0292969, 0.6298828, 0.24865723, -0.5834961, -0.20581055, -0.6503906, -2.0585938, 1.0419922, 2.9355469, -0.99658203, 1.1757812, -1.4199219, 1.1943359, 1.0957031, -0.69873047, 3.8535156, -0.39697266, -1.4951172, 3.1933594, -0.3178711, 0.20678711, -0.0970459, 0.20300293, 0.93066406, 0.24853516, -0.17089844, 0.16357422, 0.53271484, 0.04837036, -0.3154297, 3.6054688, -0.43920898, -0.39257812, -0.20861816, 2.0644531, -1.9052734, -3.2148438, -0.0014753342, -0.7319336, -1.2529297, 3.8007812, 0.57128906, -0.80908203, 2.6875, 0.80322266, 0.40625, -2.2832031, -0.82714844, 1.3818359, 0.5161133, -2.0761719, 2.4316406, 0.51171875, -0.77734375, -0.46777344, -0.88916016, -0.79589844, -1.4150391, 0.07165527, 0.6538086, 5.3242188, -0.73095703, -0.49365234, -0.3972168, -0.060180664, -0.22851562, -2.4941406, -1.0986328, -0.3623047, -0.53466797, -0.19165039, -0.6694336, -5.8984375, -0.5253906, -2.7734375, 0.2998047, 0.33374023, 0.5214844, 0.8017578, -0.8251953, -0.8598633, 0.18395996, -0.5463867, 0.6928711, 0.8066406, -0.71875, 1.0048828, 2.0605469, 0.73095703, -1.6875, -1.0849609, 0.14929199, -0.94140625, -0.88427734, 1.1132812, -1.6064453, 2.7851562, 0.2644043, -3.1113281, 1.6621094, 0.25830078, 2.7929688, -0.30078125, -2.6191406, 1.5361328, -1.7832031, -0.9506836, 2.9433594, 3.1621094, 0.3293457, 0.054107666, 2.0898438, -1.4599609, -0.22155762, -0.19665527, -0.60058594, 0.90966797, 0.6665039, -2.1933594, 0.32177734, 1.7832031, 0.53515625, -3.9042969, -1.2138672, 0.007801056, -0.7573242, -0.19152832, 1.2480469, -3.3320312, -4.0625, 1.9550781, 2.4980469, 1.4091797, -0.4819336, 0.36572266, 3.1445312, 0.059783936, 0.10253906, 0.8515625, -0.038269043, 2.4492188, -0.6796875, -0.101501465, 0.3852539, -0.57666016, 0.11376953, -2.3691406, -2.1210938, 0.10668945, 1.9755859, -0.77197266, 0.14465332, -1.015625, -2.3359375, 0.17358398, -0.87109375, -1.7880859, 0.15649414, 2.765625, -0.56347656, 1.6738281, -0.92529297, -0.89501953, -0.75927734, 2.7441406, -0.14001465, -3.09375, 1.1113281, -1.0664062, 2.1484375, 0.2788086, 2.6210938, -1.4160156, -0.93359375, -1.5771484, 0.2211914, -1.0878906, -1.9042969, 0.55810547, -0.90478516, -0.9194336, 1.4199219, 0.6928711, -3.625, 0.029067993, -1.7988281, 1.2861328, 0.69873047, -2.7148438, -0.8339844, 0.055145264, -0.5756836, 0.18469238, 0.58496094, -0.09832764, 1.8173828, -1.1425781, -2.890625, -0.6855469, -1.0800781, 0.67333984, -1.9560547, -0.99658203, -0.14331055, -2.4199219, 2.4589844, 1.5947266, 2.8769531, -0.3725586, 3.5097656, 0.3095703, 0.70654297, 2.6953125, -1.0429688, -1.4707031, -0.85839844, -0.68408203, -0.12841797, 3.78125, -0.77197266, -0.25805664, 1.8925781, -0.8286133, -1.8740234, -0.24621582, -2.9648438, 1.3720703, -1.6679688, -3.4980469, 0.6933594, 2.3808594, -0.15063477, -1.7324219, 0.8930664, 0.5292969, -1.7314453, -0.21826172, -0.23071289, 0.85058594, -0.85253906, -0.6713867, -0.9501953, 1.3710938, -1.2402344, 0.8100586, -0.7753906, -1.7880859, 3.0371094, 2.90625, -0.8198242, 1.28125, 0.83691406, 0.20129395, -0.99853516, 0.41748047, -2.2871094, 1.8193359, 0.4387207, -0.27124023, -0.57666016, -0.90771484, -0.87353516, 0.73535156, 2.1484375, 0.5932617, -1.3417969, 1.9960938, -1.1220703, 0.73876953, 1.4619141, -0.26586914, -2.8945312, -0.025115967, 2.1972656, 0.05810547, 1.5576172, -0.66796875, 1.484375, -1.0634766, 1.9804688, -1.3671875, -1.2333984, 0.4699707, 0.22802734, -1.3291016, 2.0566406, 2.0058594, 0.31933594, 1.5292969, 1.2148438, -1.9472656, -1.4453125, 1.4628906, -0.3137207, 0.4345703, 0.41186523, 0.50439453, 1.3330078, 2.09375, -0.5083008, -1.6679688, 2.4980469, -1.2617188, 0.6850586, -0.2548828, 1.4072266, -1.7304688, -2.6894531, 0.12902832, -2.0742188, 2.9511719, -2.8261719, -0.94091797, -1.3056641, 0.6743164, -3.6523438, 0.71484375, 1.0048828, 0.42529297, 3.1464844, -1.4335938, 0.10638428, -1.8261719, 1.2324219, 1.7744141, 0.34399414, -1.9677734, -0.59765625, -0.0362854, 0.24523926, 0.9506836, 1.2304688, 1.5664062, 0.70458984, 2.8886719, 1.1386719, 0.82470703, -1.2207031, 1.6552734, 3.6699219, -2.140625, -1.1982422, -1.1308594, 1.0341797, 3.0898438, -0.88378906, -2.7070312, 0.16638184, 0.40820312, -0.46850586, 1.7050781, -1.0644531, -0.6772461, -0.46484375, -1.6972656, -0.75, -1.2011719, -0.55566406, 0.4399414, -0.82666016, -1.0693359, -0.6899414, 1.1904297, 2.7363281, -0.6347656, 0.8232422, -0.8808594, 1.4570312, -3.0859375, -0.01889038, -1.0361328, -4.5859375, -1.1484375, -1.8271484, 2.6054688, -2.1738281, 2.7578125, 1.5849609, -2.7109375, 1.1279297, -1.4970703, -0.2614746, -2.8769531, -1.2597656, 0.99316406, 2.0898438, 0.88720703, -1.2070312, 0.45288086, -0.12194824, 1.1445312, 2.0527344, -3.0371094, -0.35766602, 2.0585938, -3.8769531, -2.2519531, -1.1289062, -0.8671875, 0.8588867, 0.74121094, -0.9746094, -2.1914062, -3.2890625, -0.89160156, 0.1850586, -1.3535156, 0.022994995, 2.7890625, -1.3789062, 0.60253906, 0.4309082, 1.7099609, -1.5546875, 0.9326172, -0.69140625, -2.703125, 0.46777344, -4.1132812, -0.05618286, -0.82177734, -2.2304688, -2.2871094, 1.0634766, -0.33374023, 1.2080078, 2.90625, -1.7841797, 1.2763672, -2.1601562, -1.0390625, 1.9072266, -1.4570312, 1.5517578, 0.15771484, 1.6201172, -1.3310547, 2.5019531, 3.1933594, -0.5307617, -1.1884766, -1.1425781, 0.29785156, 0.39233398, 2.3046875, 2.3359375, -0.37036133, 0.80371094, 1.4746094, -0.032684326, -1.9824219, -1.8095703, -1.6796875, 0.22619629, -2.3105469, -1.4228516, -0.35375977, 0.12854004, 0.88427734, 1.1298828, -0.29663086, -0.5698242, 1.7753906, -0.65771484, 1.3798828, -3.9628906, 3.6738281, 0.30249023, -1.8681641, -2.28125, -0.15405273, 1.640625, 0.67333984, -2.0722656, 0.53027344, -1.0263672, -1.6113281, 0.41186523, 0.38134766, -0.32983398, -0.20910645, 4.0625, -1.2675781, -0.15490723, 1.7539062, 1.6689453, 1.5800781, -1.8554688, 0.97021484, -0.8251953, 0.5576172, 0.8769531, -1.0175781, -0.6723633, 1.9824219, -0.42529297, -0.25683594, -0.11517334, 1.3710938, -3.0234375, 2.0527344, -1.3291016, -1.4638672, -1.9414062, 3.2734375, -0.48535156, 0.6225586, 1.7929688, 0.05706787, -1.2216797, 0.46533203, 2.6269531, 0.95654297, 0.15124512, -0.48339844, -0.31323242, 2.2441406, 0.46606445, -2.8085938, 3.4199219, 0.1673584, 2.2636719, 0.05606079, -1.3642578, -0.3269043, -1.0556641, 1.5214844, 1.4589844, 1.1113281, -0.9355469, 1.1445312, 0.07647705, 0.9248047, 5.1875, -1.4111328, 0.27978516, 0.4194336, 2.5214844, 1.6767578, -1.3291016, 1.4082031, -1.9335938, 1.7392578, -0.49731445, 0.56689453, -1.2490234, -1.2949219, 2.0351562, -1.8710938, -0.042297363, 0.042755127, 0.8203125, -1.5029297, -1.5214844, -1.2197266, 1.0361328, 2.96875, 2.8984375, -0.9555664, -0.5522461, -0.95654297, 0.46142578, 1.6630859, -3.1347656, -2.46875, -0.7871094, 0.085510254, -0.8769531, 2.5429688, 0.47705078, -0.35009766, 1.4882812, 2.7597656, -1.6367188, -0.74316406, 0.26904297, 2.6191406, 0.44677734, -2.2949219, 1.7421875, -1, 0.35327148, 0.6113281, 3, -1.7167969, -0.60302734, 0.07556152, -0.33935547, -0.15356445, -3.3613281, 0.7558594, -1.9306641, -0.45703125, -2.8964844, 0.60791016, -0.40795898, -2.7402344, 0.34033203, 1.1884766, -1.046875, 1.4746094, 1.8681641, -1.1699219, 0.42358398, 1.0712891, 2.5097656, 1.4521484, -0.36767578, -1.2490234, 2.6015625, -1.2324219, 2.4980469, 1.0664062, -0.3779297, 1.2949219, 1.3857422, -0.46411133, 0.48510742, 1.5117188, -1.4814453, 0.2644043, 0.87841797, -1.1328125, 1.0283203, -0.86816406, 0.44677734, -1.6660156, 1.2636719, 1.6904297, 0.31884766, 1.2617188, 0.6171875, -1.1748047, -0.56884766, -0.4423828, 0.9140625, 1.5136719, 0.25317383, -1.4638672, -0.15698242, 0.38256836, 3.0429688, -0.83154297, -0.74853516, 1.4228516, 1.0341797, 0.14672852, -2.7578125, -0.9589844, -0.20922852, -1.5839844, -1.3417969, 1.0234375, 0.61816406, 0.22009277, 1.0644531, -1.7285156, 2.3964844, 0.49975586, -2.4414062, 1.1621094, -0.3540039, 0.9086914, 1.7128906, -1.5556641, 0.48901367, -2.578125, -1.1992188, -3.0097656, 3.5878906, 0.23864746, -3.4101562, -2.5078125, -1.6728516, 0.13745117, 1.2744141, -3.0136719, -0.6816406, 0.20825195, 1.3525391, 1.0224609, -1.1630859, -0.16088867, 1.7451172, 1.0507812, 0.5722656, 0.47827148, 2.7421875, -1.2910156, -0.078125, 3.4511719, 1.4365234, 0.5444336, 0.7348633, 2.1367188, -1.2763672, -2.8515625, -2.6210938, -1.2949219, 1.2753906, -2.0371094, 0.25976562, 2.7226562, 0.19226074, 0.0067253113, -1.1689453, -2.5234375]}, "B01KGKFPM6": {"id": "B01KGKFPM6", "original": "Brand: GasOne\nName: Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose\nDescription: \nFeatures: Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\nRugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize\nAdjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\nIndividual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\nHigh quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "embedding": [-2.2890625, 1.2832031, 1.3027344, 1.5537109, -0.69189453, 1.3769531, 1.3212891, -0.9736328, -1.1484375, 0.42407227, 0.86621094, 0.48339844, -0.15075684, -0.8955078, -0.19006348, 0.0031051636, 0.31958008, 0.3786621, 0.8046875, 3.4355469, 1.8007812, -0.4243164, 2.7871094, -0.8510742, -1.0234375, 0.36865234, 2.5507812, -3.6054688, -1.2519531, -1.7753906, 2.1386719, 0.20935059, 0.06695557, 1.8154297, -3.4804688, -0.37304688, -0.7348633, 0.6323242, -5.3046875, -1.09375, -0.9897461, 0.8979492, 2.6015625, 0.3330078, -1.3447266, 0.7553711, 1.2226562, -0.10461426, -2.03125, 0.703125, 1.2197266, 0.09307861, -1.2607422, 0.7817383, -0.24841309, 0.6411133, 1.1474609, -2.5488281, 1.4560547, 0.27319336, 2.0410156, 1.7900391, -2.4785156, 0.0914917, -1.0693359, 0.26049805, 0.14819336, 0.28173828, -0.9433594, -0.0054092407, 1.8105469, -0.14709473, -0.36499023, 0.5551758, 0.36572266, -0.4140625, -2.6445312, 1.3056641, 3.4238281, -0.057373047, -1.9775391, 1.296875, 1.1416016, 0.2607422, -0.33618164, 1.3867188, -0.1328125, 0.17651367, 2.3261719, 0.55126953, -1.9521484, 2.3671875, -2.5683594, -3.2539062, 1.3115234, 0.07824707, 2.6738281, 0.36987305, 0.53564453, 0.3791504, -1.2871094, -0.6040039, -1.9462891, 1.1777344, -1.3984375, -1.3984375, 1.7246094, 2.4433594, -2.7871094, 0.89404297, -2.2246094, -1.3720703, 1.5693359, -0.4099121, 2.0546875, -0.60498047, -1.2539062, 1.3916016, 4.0585938, 0.7338867, 3.3066406, -0.6123047, 0.66064453, -0.22497559, 0.20666504, 2.2480469, -0.7036133, -0.10522461, 3.4101562, -2.0898438, -0.7817383, -2.3378906, 2.5527344, 1.2695312, 0.5605469, -1.3632812, -1.75, -3.1835938, -3.0214844, -0.29101562, -3.0234375, 1.5722656, 0.5493164, -0.6582031, -3.0175781, -0.60791016, -1.3330078, 1.4453125, 0.82421875, -3.0527344, 0.5698242, -2.0703125, 1.1826172, -2.3691406, 1.5537109, 0.4609375, 0.21118164, -1.6289062, 3.5644531, 1.3554688, -0.5546875, -1.8710938, -1.2763672, 1.8730469, -0.5805664, -2.2792969, 0.36376953, 1.2431641, -1.9599609, 0.99609375, -1.0888672, -1.6289062, -0.75, -0.18066406, -0.10797119, -1.8486328, -1.546875, 3.0058594, 0.88916016, -0.83935547, -4.0273438, -3.0820312, 1.3310547, 0.3564453, 0.6479492, -0.52246094, 0.5317383, -0.03164673, 0.69970703, -1.5439453, -1.1826172, -0.80810547, 1.4638672, -0.4423828, 0.22277832, -1.7177734, -1.9931641, -1.5234375, 0.38378906, 0.96972656, -0.42504883, -0.7973633, 0.38549805, 0.8496094, -2.0820312, -0.86376953, 0.55322266, -1.8554688, 1.265625, 2.1796875, 0.52734375, -1.1269531, 3.1464844, 0.20605469, -0.8286133, -1.21875, 2.4863281, 2.1601562, 1.5664062, 2.3144531, -0.59765625, -2.0390625, 2.0546875, 1.5683594, 0.25561523, 1.5039062, 0.87353516, -0.8383789, -1.90625, -0.9301758, 1.7070312, 1.8310547, 0.21459961, 0.8798828, -0.5214844, 2.5605469, 0.8496094, -1.546875, -0.12371826, 0.7260742, 0.20019531, -1.3896484, -1.7822266, 0.01600647, -2.3652344, 2.5546875, -1.0019531, 0.39379883, 2.2675781, -0.25805664, 0.58203125, -0.33032227, 0.609375, -1.5791016, -1.4160156, -1.2753906, 0.64941406, 0.2109375, -0.7080078, -2.2539062, 3.2890625, 0.24487305, 0.40625, 0.9448242, -0.7246094, 0.019714355, 2.5527344, 0.7866211, -2.4589844, -0.36572266, 0.62060547, 1.3730469, 3.3085938, -1.4697266, 2.5898438, 0.91552734, -2.4257812, 2.9257812, -0.34179688, 1.4179688, 1.1523438, -1.4472656, 2.0976562, -1.9013672, 1.4052734, 2.765625, 3.9746094, 0.9975586, -2.4257812, 0.41723633, 5.2070312, -0.45385742, -2.4941406, 1.1884766, -2.4394531, -0.8979492, -0.08062744, 0.81152344, 1.3222656, -1.2431641, 2.0332031, -1.0371094, -0.61035156, 0.28149414, -0.84375, -0.7973633, -0.19006348, -0.8886719, 0.0769043, 0.75, 0.18859863, -0.53564453, -1.3271484, 1.0537109, -3.1816406, -0.04385376, 2.515625, -2.34375, 1.1875, 1.6318359, 1.2597656, 1.8183594, 0.5390625, -0.68115234, 1.4375, 0.008918762, 0.4621582, 2.0644531, 1.2216797, -0.65966797, -2.0195312, -1.609375, 0.076293945, -1.6621094, -1.3222656, 0.8725586, -1.1855469, -4.140625, 1.0068359, -2.1484375, -1.5117188, 2.0136719, -2.5996094, 0.73828125, -0.44335938, -1.9375, -0.6772461, -0.25585938, -1.6318359, -0.9013672, 1.3447266, 0.61621094, -1.4199219, -1.6289062, -0.57910156, -1.9345703, -1.0498047, 0.5761719, -0.66259766, 1.5849609, -0.06958008, -0.011062622, -0.41088867, 0.30371094, -0.23364258, -2.2324219, 1.6210938, -3.6367188, -0.7973633, -1.2753906, 0.004463196, -0.9404297, 0.54833984, -2.4375, -1.5908203, -0.45898438, -0.22375488, 1.5019531, -1.6113281, 2.0332031, -0.14672852, -0.9838867, -0.040252686, -2.1054688, -3.2617188, 0.35717773, -0.08111572, -1.7246094, 0.56591797, -3.15625, 0.6801758, -0.9794922, -0.5361328, -1.1318359, -0.4008789, -0.3798828, -0.01234436, 0.061065674, -2.4902344, 0.3959961, -0.06707764, -1.2880859, -3.0390625, -2.0527344, 0.05706787, -1.5019531, -0.06549072, -0.43432617, 0.88623047, 0.16027832, -0.15686035, 1.7822266, 1.1855469, 0.10986328, -1.9921875, -2.6679688, 2.0234375, 1.1591797, -1.1523438, 2.5566406, -2.546875, 0.021316528, -2.9414062, -2.2929688, 2.34375, -0.24523926, 2.1582031, -0.14782715, -0.07446289, 0.2697754, 1.1767578, -0.3071289, -1.7226562, -1.4121094, 3.1425781, -2.9589844, -1.4570312, 0.9194336, 2.2382812, -2.4960938, -0.26904297, 2.4355469, 0.46166992, 2.1875, 2.0292969, 1.6396484, -1.0478516, -0.43798828, -0.9345703, 2.328125, -0.18041992, 0.9667969, -0.6176758, 1.1640625, -0.69433594, 1.4443359, 1.8134766, 1.3671875, 2.6738281, 2.1855469, 0.74658203, -0.91064453, 0.36791992, 0.22790527, 2.3066406, 1.2910156, 3.7734375, -0.40234375, -1.4355469, -2.4238281, -0.23901367, 1.9824219, -1.7148438, -0.82470703, 0.6713867, 0.40234375, 0.55566406, 0.8222656, 0.077697754, 0.014694214, -0.21081543, 1.9824219, 1.2675781, 0.0058059692, 2.1582031, 0.59521484, 1.1210938, -3.0234375, 1.4824219, -0.8305664, -0.30200195, -0.019104004, 1.6230469, -2.4785156, -2.9238281, -0.5390625, -1.5673828, -0.89501953, 3.7734375, 1.5830078, -1.4082031, 0.5810547, -0.75097656, 0.15979004, 1.1816406, -1.7041016, -0.2421875, -1.1152344, -0.5517578, -0.75634766, 0.12634277, 1.7880859, 0.44750977, -2.0078125, 1.3212891, -3.7792969, -0.5292969, 0.4489746, -0.99902344, -1.9824219, 2.5957031, -1.7275391, 0.8383789, -0.32739258, 4.25, -1.8232422, -0.06414795, 2.40625, -2.703125, -0.8027344, -2.9238281, -4.46875, 1.3613281, -0.9746094, -0.70751953, 3.2460938, 0.40771484, 0.49829102, 1.6484375, 0.9038086, -2.8398438, -0.49804688, -0.7841797, 0.05657959, -2.2167969, -1.6748047, 1.6699219, 0.0057678223, -1.3701172, -1.9199219, -0.25048828, -1.1171875, 0.95458984, 1.9462891, -3.2773438, 0.9379883, -1.2988281, 0.81396484, -0.40039062, -1.1484375, 1.0371094, -2.2792969, -0.68652344, -2.5742188, 0.9345703, 1.453125, -0.61376953, 0.008476257, 3.7773438, 1.9462891, -0.71875, 0.20373535, 1.8730469, 2.3476562, 0.11065674, -2.171875, -1.9199219, 1.484375, 0.20983887, -0.4489746, 0.11364746, -2.5390625, -1.0068359, 1.3916016, 2.53125, 1.2558594, 1.5751953, 0.72558594, -2.2050781, -0.1394043, 1.2568359, -2.4765625, -0.86865234, -0.46411133, 1.2021484, -1.4492188, 0.5649414, -2.1425781, -0.9213867, -0.09631348, -0.48364258, -3.0566406, 2.2988281, 1.0839844, 0.80371094, 1.6621094, -0.89501953, -2.0644531, 1.0234375, 0.9458008, -0.9194336, 0.6542969, -0.43066406, 0.028213501, 2.2011719, 1.2851562, -0.29882812, -1.1005859, 2.0703125, -1.1025391, -0.14282227, 0.044677734, 1.3007812, -0.24499512, -1.5117188, 1.6181641, -0.5917969, 2.9277344, -0.98339844, -0.050750732, 0.015350342, 0.61083984, -2.3632812, 0.07489014, 0.8432617, -0.71777344, 0.18103027, 1.6513672, 0.082092285, -0.33422852, 1.5791016, 0.68066406, 1.8583984, 1.2763672, 0.56152344, -0.4609375, 0.72558594, -0.5620117, -0.61816406, 1.3212891, 2.3652344, 1.4072266, 4.109375, 1.9716797, -0.8701172, 1.2373047, -0.18640137, -1.9619141, -1.2246094, 0.20019531, -0.81933594, 1.4404297, 1.5302734, -2.4101562, 0.74121094, 4.265625, -1.0292969, 1.6191406, 0.8823242, -0.4584961, 0.8222656, -2.3789062, -0.8725586, -2.2109375, -0.6323242, -0.32495117, -2.4160156, 0.69189453, -1.1757812, 1.2792969, 1.0576172, -0.070739746, -0.99902344, 1.9072266, -0.17932129, 0.72998047, -1.2333984, -1.390625, -1.9394531, 1.9921875, 2.4863281, 1.6416016, 0.95947266, 0.78271484, 0.035980225, -2.2539062, -0.6196289, 0.45263672, 2.328125, -0.80078125, -1.3681641, 1.7568359, -0.29760742, 0.23327637, -1.6289062, -0.88623047, -1.8085938, 2.2832031, 1.125, 1.3056641, -0.8183594, -0.10083008, -1.8642578, -5.4726562, 0.21655273, 1.5585938, -0.7871094, -0.85009766, -1.8710938, -0.6069336, 0.85498047, -0.82177734, -0.4387207, -3.1757812, 0.23547363, -1.1767578, -0.0049705505, -0.6826172, -0.27392578, 0.71533203, 1.46875, -0.31079102, -1.1738281, 0.53808594, -1.6787109, -1.5361328, 0.60253906, -1.6181641, 0.515625, 1.5234375, -1.0263672, -0.5292969, 3.2734375, -1.0107422, -2.5917969, 2.0449219, -2.8613281, 0.50097656, 1.2431641, -1.7216797, 0.9321289, 1.0878906, -0.27416992, 1.6699219, -0.0008802414, -1.6738281, -0.059753418, -0.16357422, 0.3334961, 0.83691406, -0.46411133, -3.4179688, 1.2421875, -0.78027344, 1.0068359, 2.0214844, -0.17163086, -1.8085938, -1.5664062, -1.6738281, 0.1496582, -1.4355469, 0.3005371, -0.7050781, 0.8613281, 1.9980469, 0.8647461, 0.7480469, 0.28222656, -0.5761719, -0.8198242, 1.3212891, -0.3005371, 3.4941406, 0.62402344, -0.2890625, -2.8632812, -1.4365234, -0.28930664, 0.35180664, 0.8305664, -0.6689453, 1.21875, -0.20288086, 0.78271484, -0.59033203, 1.4814453, 2.3652344, 2.4316406, -1.1777344, 0.39282227, 3.2402344, -1.1894531, 1.03125, 0.31152344, -1.8896484, -0.76660156, 3.3027344, 1.7695312, -1.3408203, 0.62597656, -2.1503906, 1.6513672, -0.12219238, -1.1386719, 0.71191406, -1.3496094, -1.3164062, -2.2539062, -1.8554688, -1.9892578, 0.8535156, 2.3964844, -1.0664062, -0.30566406, 3.8828125, 0.2800293, 1.0234375, 1.8818359, 2.9609375, 0.30297852, 1.6445312, -2.203125, -0.48999023, 2.4707031, -2.6230469, 0.21936035, 1.8896484, -0.42822266, -1.4990234, 1.3222656, -0.8564453, 3.3789062, 1, 1.3535156, 2.1972656, 0.16137695, 3.2304688, 0.67333984, 1.5458984, 2.0996094, 1.0898438, -0.07891846, 1.7001953, 0.19006348, -0.6845703, -0.5571289, -0.48095703, -1.4560547, -0.97753906, 0.48168945, -0.21911621, 0.71533203, -4.7890625, 0.72558594, -0.90625, 1.2919922, -0.8461914, 0.46972656, 0.050628662, -0.30541992, 1.1503906, 0.21496582, 0.1743164, -0.8798828, -0.6508789, -1.6435547, -0.8496094, 2.4082031, -2.4082031, 1.9677734, -0.9394531, -2.7792969, 1.5361328, 1.1660156, 0.21520996, 0.81396484, 0.90625, 0.86083984, 0.19702148, 0.60058594, 1.6308594, -3.3144531, -0.07318115, 0.117614746, 3.5996094, 0.6616211, 0.093444824, 2.6933594, -1.2998047, -2.5605469, -4.5039062, 4.4609375, 0.36279297, 0.9243164, 0.8100586, -1.9199219, 2.9277344, -0.33935547, 0.9794922, -3.1640625, 1.7099609, -0.6220703, -0.17541504, -0.39868164, 1.1015625, -1.0205078, 2.4960938, 1.7822266, -1.2529297, 1.5400391, 0.94091797, 1.1054688, 0.28320312, 0.55078125, 0.7089844, 0.22058105, -1.1064453, 2.5175781, 1.0761719, -1.7373047, -0.71484375, 2.8320312, 1.3671875, 0.55322266, 1.3642578, 0.50097656, 0.6386719, -0.84375, -0.40673828, 0.56152344, -1.3681641, -1.6416016, -1.0175781, -0.7475586, -1.6914062, -2.6621094, 1.1279297, 1.6367188, -0.65625, 0.6064453, 3.1171875, -0.63671875, 0.38842773, 0.8256836, -0.07116699, -0.8305664, -0.010177612, -0.16052246, -3.1191406, -1.8740234, -0.38720703, -0.00077724457, 0.8022461, -0.54833984, -0.7885742, -0.8574219, -0.04626465, 1.2265625, 0.9902344, -0.23803711, 0.9667969, 0.85595703, 0.51904297, -0.5722656, 3.4355469, -1.8310547, 1.8505859, -0.82666016, -2.0449219, -0.34204102, -0.70166016, -1.2578125, 0.9814453, 3.0488281, 1.8300781, 1.5322266, -2.3652344, -2.6875, -1.6494141, -2.5214844, 1.1162109, -0.68115234, -1.0380859, 0.35864258, 1.2919922, 2.1777344, -0.39794922, 1.0966797, 0.67089844, -0.4658203, 1.2539062, 0.060455322, 2.1074219, -0.47998047, 0.46289062, -0.4729004, 3.203125, 2.0683594, -1.6113281, 0.91552734, 0.9838867, -0.02999878, -3.7324219, 0.98828125, -1.7177734, -0.47680664, -0.28198242, -0.18041992, 2.0585938, 2.0976562, -2.0292969, -1.3945312, -1.4423828]}, "B07621BM5H": {"id": "B07621BM5H", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)\nDescription: Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs\nFeatures: Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood\nSuperior refractory ceramic logs are reinforced with steel rods for greater integrity\nEfficient design helps preserve and protect natural resources\nThis Peterson Real Fyre gas log set is designed for indoor use only\nIncludes Auto-Safety Pilot control valve and Flexible Gas Connection Kit\n", "embedding": [-1.3720703, 0.8989258, 0.16271973, 0.2088623, 2.2382812, 0.7988281, -0.17248535, -0.38476562, -0.22424316, 1.2177734, 2.1679688, 2.3710938, 0.74609375, -3.0683594, 0.7211914, -0.88623047, -1.7519531, 1.0488281, -0.30493164, -0.8364258, 0.9121094, 1.6025391, -0.17053223, 0.97216797, 0.92089844, -1.4648438, 3.234375, -1.7685547, 1.2480469, 0.6010742, 0.9199219, 0.46118164, -0.3232422, 1.0966797, -2.2988281, -1.6425781, -0.40234375, 0.32373047, -3.0878906, 0.34643555, -1.5126953, -0.92626953, 1.9775391, 0.82177734, -2.2792969, -1.3642578, 0.074279785, 0.5175781, -1.0566406, 0.8051758, 1.0888672, 2.3398438, -1.4863281, -0.5239258, 0.08972168, 0.38598633, 1.5800781, -3.6230469, 1.6689453, 1.2148438, 0.31225586, 0.6303711, -0.7265625, 1.1064453, -2.5, 2.203125, 2.0039062, -0.87353516, -0.025817871, 0.92089844, 2.2890625, 0.984375, 1.8574219, 1.0683594, -0.5283203, 2.4941406, -2.9472656, 1.3017578, 0.79833984, -0.17980957, 0.070617676, 0.18774414, 0.57421875, 0.2932129, 0.6425781, 0.0039253235, -2.9375, 0.6689453, 1.2919922, 1.7978516, 0.4814453, 0.6948242, -0.78564453, -4.7578125, 2.0996094, 0.16552734, -1.34375, -0.12768555, 0.07232666, 1.0566406, 1.6357422, 0.8417969, -1.1728516, 0.0635376, -1.4980469, 0.39208984, 0.11529541, 3.3632812, -1.3847656, 0.33276367, -1.5849609, -1.3115234, 1.6025391, 1.3935547, 0.3955078, 0.12841797, -0.01713562, -1.9462891, 1.0224609, -1.90625, 2.484375, 0.5859375, 0.43945312, 2.6269531, 1.5351562, -0.6191406, -0.5698242, 2.2265625, 0.07110596, -1.1806641, 0.17346191, -2.1777344, 1.6328125, -1.5449219, -2.0546875, 0.37670898, -0.43896484, -0.14416504, -1.8974609, -2.8632812, 0.3071289, 2.6523438, 0.67529297, 1.0175781, -1.6074219, 1.3808594, -2.6992188, 0.6176758, 1.6884766, -2.6699219, 1.4208984, -0.7338867, 0.2836914, -3.9023438, -0.9580078, 0.9873047, 2.0234375, -1.65625, 0.14611816, -0.62646484, 0.7373047, -1.8261719, -1.5146484, 1.1337891, -1.9648438, -1.2685547, 1.7402344, -0.94921875, -1.6914062, 0.9716797, 0.9770508, 1.0400391, 0.025619507, 0.08026123, -0.86328125, -2.8574219, 1.5234375, 2.8320312, 0.9794922, 0.17419434, -1.2695312, -0.49243164, 0.78515625, -0.19250488, -0.11651611, -0.10821533, 0.9658203, 0.60498047, -0.40893555, -1.4755859, -1.1650391, 1.1474609, -1.4472656, 2.0878906, -1.6708984, -3.2109375, -1.6806641, -1.3105469, 2.3164062, -2.4277344, -0.63623047, 1.9052734, 0.7470703, -0.34985352, -2.5957031, -0.7885742, 0.31567383, -1.4335938, 1.6425781, 2.1699219, 0.3449707, -1.2646484, 0.25073242, -0.13500977, -0.16027832, -3.7851562, 1.4355469, -0.5209961, 0.29345703, -0.64941406, 2.0214844, 0.7578125, 2.8300781, 0.78222656, 0.3125, 1.5029297, -1.2558594, 0.74658203, -2.0546875, -2.4785156, 0.5576172, -0.33813477, -0.8408203, -1.1015625, 1.0058594, 3.5371094, -0.40893555, -0.8432617, 0.040161133, 0.93603516, -0.6772461, -1.4394531, -2.6835938, 1.3847656, -0.41333008, -0.22375488, -2.0957031, 0.19030762, 1.9638672, 0.44580078, -0.10272217, 0.17053223, 2.5742188, 1.9150391, -0.6230469, -1.2060547, 0.058532715, -0.005252838, -0.22375488, -0.51123047, 1.890625, 1.2041016, 0.18310547, 1.171875, -0.8417969, -0.79052734, 2.1875, -0.8676758, 1.2216797, -0.890625, -0.7631836, -0.39672852, 1.6025391, 1.5273438, 2.5644531, -0.6591797, 0.30151367, 3.1210938, -0.6850586, 2.2578125, 0.6904297, -0.90185547, 3.1035156, -2.6660156, 0.11785889, -0.36206055, 0.36010742, -0.121032715, 1.4384766, 0.021575928, 5.5078125, -0.20349121, -1.7216797, 0.46289062, 0.062316895, 0.46557617, 0.2602539, 0.6455078, -0.3076172, -1.6308594, 1.6601562, 1.0761719, -0.6040039, -0.35327148, 0.47827148, 0.49316406, 1.0341797, -0.37280273, 1.1240234, -0.10406494, -0.53271484, -0.09234619, -2.1875, 0.88623047, -1.0234375, -0.75878906, 2.4453125, -2.7519531, 1.65625, -0.57714844, 0.4465332, 3.4375, 0.10687256, -2.1601562, -0.5966797, 0.8696289, -0.69873047, 0.40625, -0.09320068, -1.0302734, -0.7363281, -2.6386719, -0.5336914, -0.45410156, -0.52197266, 0.6879883, -0.081848145, -1.8144531, -0.49951172, 0.37231445, -2.2128906, 0.24072266, -0.7998047, 0.8852539, -0.4711914, 1.2324219, 0.43041992, -0.084472656, -0.38110352, 3.6464844, 1.5859375, 4.75, -1.0068359, -3.4492188, -1.3681641, 0.044830322, -1.4638672, 0.9741211, -0.5908203, 0.0031394958, 0.3359375, -0.17773438, 1.1005859, -1.9970703, 0.037322998, -1.8242188, 1.5869141, -2.7695312, 0.2927246, 1.6806641, 3.3789062, 1.0576172, 0.5341797, -0.7836914, -1.2353516, -0.9423828, -1.2890625, 1.4853516, 0.31567383, 1.3789062, 0.61279297, -1.5380859, -2.1308594, -2.3574219, -2.34375, -0.22802734, -0.4169922, -2.5039062, -0.7260742, -2.8164062, 0.27490234, -0.88623047, -0.003921509, 0.11956787, 0.515625, -2.2382812, -1.3359375, -0.6948242, -0.118652344, -0.115478516, -2.8300781, -1.9414062, 0.89501953, 0.009590149, 0.3544922, 0.25610352, -3.3769531, -0.050720215, 1.6220703, 2.4746094, 1.7226562, -0.44433594, 1.4697266, 0.23937988, 0.5991211, -3.3359375, 0.7138672, 2.1445312, -1.8232422, -0.35253906, -1.3798828, -0.68408203, -0.72265625, 0.9555664, 3.5253906, 2.953125, 0.48388672, 1.6308594, 0.8330078, 1.2050781, 2.4863281, -0.14233398, 0.7285156, 0.068603516, 2.2910156, -2.7539062, 0.56347656, -0.12988281, 1.6269531, -0.57128906, -0.70947266, 2.2597656, -1.1757812, 2.8496094, -0.7216797, 0.89160156, -2.1386719, -1.5078125, -0.35742188, 1.2783203, -1.6015625, -1.9335938, -0.25170898, 0.19689941, 3.0800781, 0.85839844, 1.7675781, 2.0039062, 2.0859375, 0.30615234, 0.026062012, 1.5117188, -0.0047798157, 0.25927734, 0.8876953, 0.9946289, -1.0019531, 0.51660156, 0.17260742, -0.48486328, -1.7988281, 0.6591797, -3.0585938, 1.9179688, 2.6816406, -0.030654907, 0.33422852, 0.6303711, 1.6220703, -1.0195312, 0.32666016, 2.3339844, -0.058776855, 1.4628906, 2.2910156, -0.057159424, -1.0537109, -2.6875, 1.8525391, 0.12249756, -1.6894531, 1.0810547, 2.6738281, -2.9296875, -1.2724609, 1.7089844, -1.7900391, -1.0878906, 3.0898438, 0.30786133, -0.65625, 0.6352539, -2.8671875, 0.6845703, 2.0195312, -0.4814453, -0.06994629, -1.2841797, 1.4726562, -1.1191406, 1.0683594, -0.6303711, 0.23876953, -2.3867188, 1.8984375, -1.4619141, 0.2244873, -1.8691406, -1.1640625, 1.6533203, 4.515625, -1.1855469, -1.5605469, 0.22058105, 3.7695312, 0.46289062, 0.9160156, 3.9140625, -0.375, -1.7070312, -1.5576172, -3.0214844, 1.4609375, -1.5302734, -0.84033203, 1.984375, -0.48413086, -0.0029277802, 2.2480469, 0.016616821, -3.4960938, -1.8261719, -0.99072266, 2.3027344, -3.2226562, -2.9101562, -1.3427734, -0.59228516, -1.8369141, -0.9160156, -1.7441406, 0.68603516, 0.06518555, 0.5078125, -2.6660156, 0.48339844, -2.7753906, -1.5390625, -0.027862549, -0.21594238, 3.296875, -0.72802734, 1.6054688, -0.49536133, 0.8125, 2.0273438, -0.49169922, 2.0039062, 1.9208984, 1.7880859, 0.5576172, 0.9042969, -1.2304688, 3.0117188, 0.62402344, -2.3789062, -3.7949219, 0.50683594, 0.09008789, -1.9492188, -1.2597656, -0.65722656, -1.3242188, 1.9443359, 2.0292969, 1.5791016, 0.19299316, -2.1035156, -0.3642578, 0.29614258, -2.4511719, 0.13671875, 0.7871094, -2.0332031, -0.30151367, -1.0791016, -0.29785156, -0.5708008, 0.14001465, -0.11224365, -0.7709961, 0.21398926, 4.3203125, 1.6230469, 1.3691406, 1.3662109, 2.0488281, -0.875, -0.3251953, -0.5131836, 0.16174316, 1.4863281, 1.1396484, -1.0107422, 1.2402344, -1.6376953, -1.0273438, -0.001832962, 1.7451172, 0.42236328, 0.7583008, -0.67285156, -2.0175781, -1.1601562, -0.5053711, 1.3857422, -1.2617188, 2.6132812, -1.1894531, -1.1240234, -0.30566406, 1.7324219, -1.4501953, 1.5800781, -0.67041016, 0.41137695, 0.18688965, 0.33789062, -0.8149414, 1.1816406, 1.9589844, 0.31811523, -0.43188477, 0.99072266, 0.36108398, -1.6357422, -0.79248047, -1.3974609, 1.3017578, 1.9023438, 1.1699219, 0.014961243, 3.1933594, 0.54345703, -1.8984375, 2.1992188, 2.9042969, -2.4296875, -0.10614014, 1.2314453, 0.36328125, -0.9423828, -0.38427734, -2.9726562, -0.42041016, 2.0917969, -1.2646484, -0.7661133, -0.26293945, -1.4257812, -0.92333984, -0.54589844, -2.0546875, 0.20214844, -2.3984375, 2.0253906, 0.6533203, -1.8779297, -2.5371094, 0.9819336, 0.1541748, -1.7470703, -1.4042969, 2.3164062, -0.94873047, -0.19616699, 0.21777344, 1.5146484, -1.4882812, 0.20153809, -1.0478516, -1.1845703, 1.0654297, 0.10217285, 0.76416016, -1.6650391, -1.4658203, -0.9863281, 0.9580078, -2.2929688, -0.5942383, 0.98095703, -0.35205078, 2.4121094, 0.16149902, -1.5888672, -0.9321289, 3.0429688, 1.0683594, -0.54296875, 0.6064453, -0.76660156, -3.5917969, -1.3466797, -2.2246094, 1.7314453, -2.0859375, -0.62939453, -0.73535156, -1.6650391, 2.1347656, -0.6489258, -0.96435547, -1.3935547, -0.94628906, -1.015625, -0.72753906, -1.7314453, 1.5068359, 0.34423828, -1.96875, 2.4335938, -1.6298828, -0.79248047, 0.62060547, -1.9414062, 2.2460938, 0.63427734, 0.921875, -0.7446289, 0.25463867, 1.0644531, 3.6386719, 1.5078125, -1.0439453, 0.67871094, -0.46923828, 0.3305664, 2.7539062, -2.7148438, 2.4667969, 0.030883789, 0.6870117, 0.77783203, 1.2148438, 1.5888672, -2.0390625, -0.107299805, -0.95410156, -1.6484375, -2.2988281, -1.1826172, 2.1972656, -1.1640625, -0.8598633, 2.2675781, 0.016281128, -2.0019531, -2.5039062, -2.5371094, 0.36791992, -2.1035156, -1.21875, 0.14758301, 1.8017578, -0.0061454773, -1.9111328, 1.5976562, 0.6020508, 0.4794922, -1.4873047, -0.5180664, -2.1269531, 2.2207031, 0.08013916, -2.3964844, -1.7197266, -1.9765625, 0.73339844, 1.9902344, -0.6923828, 0.33325195, -0.6464844, -1.3730469, -1.7880859, 0.8852539, 1.8056641, 1.6855469, 0.9091797, 1.1298828, -0.00060272217, 0.05657959, 0.49951172, 1.7041016, 0.7519531, 1.2412109, 0.6201172, 0.49853516, 2.9121094, -2.6542969, 0.7246094, -1.6123047, 0.4897461, 0.029220581, 0.1394043, 1.3642578, -1.4951172, -1.8515625, -0.47705078, 0.09490967, -0.8774414, 0.52490234, 1.9648438, 1.2529297, -0.61621094, 1.0429688, -0.06427002, 1.5439453, 0.09283447, 2.1230469, -1.8398438, -0.9741211, -0.51220703, -0.19848633, 2.0546875, -1.8007812, 1.1347656, 2.2617188, 0.12890625, -2.0117188, 1.0146484, 1.1279297, 2.2285156, 0.018341064, 2.6914062, 4.4023438, 1.1552734, 2.6289062, -0.19543457, 0.89501953, 2.4492188, -0.73828125, 0.36743164, 0.7504883, 1.6347656, 0.28930664, 0.26171875, 1.8398438, -0.64404297, -0.57128906, -0.87109375, 0.82910156, -0.0026168823, -2.5292969, 1.5742188, 0.6557617, -0.016983032, -2.0625, 1.1103516, -1.2099609, -0.71777344, -1.1425781, -2.1113281, 0.03842163, 0.73828125, -2.9335938, -0.9863281, -0.38232422, 0.40063477, -4.53125, 0.68115234, 0.6953125, -1.8212891, 1.2568359, 2.9277344, 0.017349243, 0.14733887, 1.1347656, 1.5947266, 1.7226562, 1.6689453, -0.049804688, -2.4941406, -1.1679688, -0.26049805, 0.28833008, -1.9150391, -1.0351562, 0.59228516, 1.3173828, -2.9824219, -4.5117188, 2.9785156, -2.2207031, 1.4189453, 1.6191406, -2.7128906, 1.8193359, -0.7602539, 0.81640625, -2.2988281, -2.1503906, 1.1142578, -0.041046143, -3.0703125, 0.045196533, -0.09313965, -0.103027344, -0.08526611, 1.1308594, 1.2353516, 0.25317383, 1.1230469, -0.36083984, 0.85302734, -0.80322266, -0.26049805, -0.75878906, 2.2832031, 1.7753906, -0.84472656, 0.4501953, -1.75, 2.0292969, -0.23815918, -0.97314453, 1.1630859, -1.8017578, 0.41259766, -1.8496094, -0.6772461, -1.4482422, -3.6582031, -0.40576172, 0.58935547, 1.2519531, -0.071899414, 0.22253418, 1.7880859, -1.8974609, -0.054840088, 1.6132812, -0.8027344, 0.1340332, 0.7104492, -0.08843994, 0.2746582, -1.8515625, 2.0585938, -2.3085938, -3.4453125, 1.546875, 2.3710938, -0.22509766, -1.0576172, 0.9794922, -0.62109375, -0.50097656, -0.46044922, 1.1699219, 1.1601562, -2.5644531, 0.33520508, -1.65625, 1.25, 3.2851562, -1.0625, 1.1181641, 1.2119141, -2.8496094, -0.13549805, 1.0400391, 0.9116211, 2.3457031, 3.0566406, 0.2619629, 0.9628906, -2.5566406, -1.171875, -3.0898438, -2.1621094, 0.7163086, -0.27514648, -0.9272461, 0.58251953, 0.018310547, 1.1230469, 4.2226562, -1.3544922, 2.0292969, -1.6425781, -0.14770508, 0.5996094, -0.7470703, 2.9550781, 2.90625, 0.059326172, 3.7089844, 1.9599609, 0.7895508, 1.0449219, 1.7597656, -0.51220703, -0.063964844, -0.26831055, -0.81347656, 0.4411621, -1.0683594, -2.0976562, 0.56347656, 0.72509766, -0.890625, -0.80566406, -4.0039062]}, "B07MCNNWW8": {"id": "B07MCNNWW8", "original": "Brand: kitma\nName: Kitma 13\" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU\nDescription:

KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

Commercial Liquid Propane\u00a0Work Range Feature:

\u25cfDurable stainless steel structure - gives the unit superior corrosion resistance and cleanability

\u25cfHeavy duty burners - provides stable flame to fry food quickly

\u25cfAdjustable stainless steel legs -adjusts the height of griddle to meet your needs

About Product:

Size: 34 ''\u00d720.8''\u00d717.9''

Total BTU: 95,000BTU/h

Intake-tube pressure: 10\u00a0in.W.C.

Nozzle No: #67

Package Includes:

Work Range*1(completely installed )

Instructions*1

\u2605About us:

We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform \u201cmaintenance staff on-site service\u201d within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

\nFeatures: \u3010Continuous Pilot\u3011Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs\n\u3010Powerful 95,000 BTU Burner\u3011This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you'll need to cook. And it measures 13\" in diameter to accommodate your different size wok\n\u3010Stainless Steel Construction\u3011This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service\n\u3010Easy to Load and Adjustable\u3011This unit's rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface\n\u3010Quality Warranty\u3011Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition\n", "embedding": [-1.7041016, 0.60791016, 3.1894531, 1.6025391, -1.0732422, 0.04437256, 1.6005859, 0.119018555, -2.8164062, 1.1982422, 1.5068359, 0.40307617, 0.12261963, -2.0253906, 0.73828125, -0.077819824, -1.5224609, 1.2148438, 0.9194336, 1.7626953, 2.2148438, -0.49316406, 0.94921875, -1.0878906, 0.75683594, 0.14562988, 4.1835938, -3.625, -1.1611328, -0.7060547, 2.3203125, 0.8227539, 0.921875, 0.30126953, -2.8378906, -1.2480469, -0.1739502, -0.37182617, -2.9042969, 1.5986328, -1.0009766, -0.21228027, -0.05303955, 0.8964844, -2.5546875, -3.4335938, -0.32861328, 0.5996094, 0.044952393, -2.8359375, 1.1396484, -0.859375, -0.46044922, 0.9145508, -1.0888672, 0.58203125, -1.0410156, 0.30810547, 2.2519531, 0.84228516, 1.9267578, 0.7451172, -1.7714844, -0.5800781, -0.28466797, 0.38720703, -0.53222656, -1.3857422, 2.2382812, -1.1279297, 2.0917969, -1.0722656, 0.20568848, 0.076538086, -0.9819336, -2.453125, -2.4023438, -0.8417969, 2.9394531, 0.6616211, -0.12164307, 1.9433594, 2.0195312, -3.7734375, -1.7275391, -0.2722168, 1.8320312, 0.35302734, -0.35498047, 3.0195312, -4.4765625, 4.3125, -1.1914062, -3.8632812, 2.4550781, -0.42700195, -1.0078125, 2.9726562, 1.7490234, 0.12609863, -1.4785156, 0.79785156, 0.07989502, 0.70410156, -2.4863281, -0.9038086, 0.45629883, 0.38598633, -5.1992188, 0.6323242, -2.1464844, -2.0175781, 1.2050781, -0.29589844, 0.7324219, 0.8803711, -0.16137695, 0.27612305, 1.8193359, 1.5673828, 2.8203125, -0.6323242, 0.22790527, -0.079711914, 0.61621094, 0.3720703, -2.8789062, 1.5136719, 5.1445312, -0.5883789, -1.4951172, -0.7817383, 2.6894531, -2.3339844, -1.0048828, -2.1503906, 0.515625, -2.4648438, -3.8691406, -0.5917969, -2.2070312, 1.7246094, 0.73291016, -0.22473145, -3.7675781, -0.953125, 0.20800781, 0.84472656, 0.13977051, -1.0078125, 1.5712891, -1.1972656, 0.9614258, -3.3574219, 1.7617188, -0.25756836, -1.2294922, 0.66308594, 3.6777344, 0.7988281, -0.0287323, -0.6928711, -0.15551758, 3.6523438, -0.35009766, -1.0712891, -1.4511719, 1.6416016, 0.00907135, -1.1230469, 0.3034668, -2.0546875, 1.2216797, 1.2226562, -1.0224609, -0.12817383, -0.57177734, 0.5058594, 1.484375, -0.9169922, -1.6582031, -3.6523438, -0.42797852, 1.4462891, -2.453125, 0.24865723, -1.0322266, -1.3632812, 1.5556641, -0.83203125, -0.31152344, 2.5429688, 1.375, -0.11236572, 1.5429688, -2.5, -1.3798828, -0.4375, 0.19909668, 1.8740234, 0.7392578, 0.59521484, 2.0273438, -0.82421875, -0.123291016, -0.93359375, -0.7441406, -1.5009766, 1.3486328, 3.4726562, 0.9692383, -2.4726562, 1.3496094, -1.9306641, -0.58154297, -1.4492188, 0.8876953, 1.2441406, 1.3134766, 1.3046875, 0.9272461, 0.52685547, -1.0332031, 0.9604492, 0.84716797, 2.4589844, 1.7509766, 1.4287109, -2.0957031, -0.5839844, 1.7958984, -0.72021484, -1.1113281, 0.6274414, -0.4453125, 1.0449219, 2.7324219, -1.8798828, 0.6894531, -0.7363281, 0.5800781, -2.3730469, 0.0859375, -1.5302734, -1.4667969, 0.24291992, -0.9975586, -0.13146973, 0.8803711, -0.42822266, -0.27246094, -1.078125, 0.81884766, -0.59716797, -0.9916992, -0.39013672, 0.06518555, 1.0517578, -0.10858154, 0.78515625, 2.5429688, 1.4287109, -0.5756836, 2.4902344, 0.14343262, -0.44335938, 4.21875, 0.8256836, -3.6191406, -2.2714844, 0.51904297, 1.5302734, 2.3964844, 0.06329346, -0.15014648, 1.0527344, -1.1396484, 3.6347656, 1.6767578, 1.6269531, 1.8935547, -0.4729004, 1.1992188, -1.4863281, 0.7368164, 2.1503906, 1.0527344, -0.18725586, -0.21789551, 2.9648438, 5.0195312, -0.27563477, -4.1679688, 2.2207031, 1.2744141, 1.1884766, 1.1699219, 0.19812012, 1.6689453, -1.9951172, 0.7504883, 3.0703125, -1.8320312, -0.25268555, -0.7011719, -1.7822266, 0.0014266968, -2.3496094, 1.1787109, -0.016738892, 0.12194824, -0.5283203, -0.45288086, 3.9140625, -1.7294922, -0.36743164, 2.2265625, -1.2373047, 0.25561523, -1.9121094, -0.91748047, 2.5195312, -0.4104004, -2.1230469, 1.0556641, 1.7236328, 0.30639648, 1.3808594, -0.51953125, 2.0175781, -1.4423828, -1.5771484, 2.6835938, -1.2080078, -3.1835938, 0.6064453, -0.9995117, -2.1601562, -0.057128906, -0.6381836, -0.72265625, 3.0117188, -1.7451172, -0.93408203, -1.8349609, -5.296875, -2.3808594, -1.3369141, 0.29663086, -1.2900391, 1.5517578, 1.6132812, 0.06524658, -4.1132812, 2.3613281, -1.9160156, -0.69970703, 0.79052734, -0.70458984, 0.6352539, -0.21069336, -1.3896484, 1.3544922, -0.8955078, -0.41967773, -2.5761719, 0.73876953, -3.2382812, 2.0332031, -1.4101562, 2.4414062, 0.20092773, -0.53515625, -3.1679688, 0.6669922, -1.4794922, -0.43041992, 5.0195312, 0.10925293, 0.49145508, -0.546875, -1.09375, 0.4987793, 0.81884766, 0.82910156, -1.0205078, -2.0390625, -1.2070312, -2.0429688, -3.3515625, -1.1777344, -2.5253906, 0.39257812, 0.46191406, 1.3701172, -0.16967773, -0.1303711, -1.703125, -0.122680664, -0.9121094, 1.6347656, -1.4033203, -1.1904297, -1.8408203, 2.6582031, -0.43139648, 0.8256836, 2.6210938, 2.6660156, -0.60595703, 1.6660156, 2.0683594, 0.3461914, -0.23144531, -0.8779297, -1.2910156, 1.0263672, -0.6225586, 0.055358887, 0.94677734, -2.0585938, -1.5976562, -0.9980469, -1.4550781, 4.0234375, 2.2949219, 2.765625, -0.8144531, 0.16552734, -0.55078125, 2.1191406, -0.13415527, -0.46142578, 0.062561035, 3.7226562, 0.23132324, -2.1875, 3.7265625, 0.8071289, -4.015625, 0.8198242, 2.7460938, -0.84472656, 0.66552734, 1.9326172, 2.3964844, -0.49414062, -0.3713379, 4.0664062, 1.8447266, 0.19628906, -0.34692383, 0.032440186, -0.6328125, -0.53125, 1.0175781, 2.2304688, 0.73095703, 0.31054688, 2.3945312, 2.828125, -3.734375, -0.59765625, 0.15063477, 2.6289062, -0.001865387, 1.6015625, 0.72509766, -0.43896484, -3.0957031, -0.5683594, -0.1484375, -2.3339844, 0.28173828, 1.203125, 1.0029297, -0.11468506, -0.8027344, -1.5732422, 1.9121094, -2.171875, 0.06542969, -0.99072266, -0.8852539, 1.3212891, 0.52490234, 1.3623047, -0.8984375, -0.3076172, 0.5986328, -1.4140625, 0.5966797, 0.86621094, -2.9160156, -1.0576172, -0.52197266, -1.2460938, -1.390625, 0.9550781, -1.0302734, -1.0068359, -1.1435547, -0.5991211, -1.6738281, 1.6474609, -2.2734375, 1.2402344, -0.24243164, 1.0439453, 0.82373047, 1.2421875, 0.56933594, 0.67333984, -1.2246094, -0.7602539, -2.4550781, 0.2319336, -0.32910156, -2.7148438, -1.109375, -3.2480469, -0.2211914, 1.2246094, 0.55615234, 2.4140625, -1.5751953, -0.7451172, 1.2705078, -2.6289062, -1.1132812, -1.6484375, -5.2421875, 1.8398438, -2.2558594, 0.46069336, 2.7734375, -0.1472168, -0.3449707, 1.1435547, 2.8359375, -1.5146484, -1.3007812, -0.8173828, 0.8745117, -2.1367188, 1.6025391, 1.9892578, -0.9038086, -1.578125, -1.7207031, -0.06939697, -0.09906006, 0.97509766, 3.4550781, -1.7285156, 1.0703125, 0.10827637, 0.0836792, -1.8808594, -0.18188477, -1.1845703, -1.6054688, -0.014709473, -3.2011719, 1.3925781, 1.2207031, 0.04837036, 0.20739746, 0.28125, 0.76464844, -2.4101562, 0.018341064, 3.7890625, 3.5742188, -0.04937744, 0.2854004, -1.6611328, 0.875, -0.890625, -0.62890625, -1.3427734, -0.78125, -1.6972656, 0.6035156, 0.18530273, -0.36987305, 1.96875, 0.7573242, -3.0761719, 1.484375, 2.0820312, -3.171875, 1.2890625, 1.4228516, 0.2824707, -1.5585938, 1.1533203, -1.3046875, -0.27172852, -0.9140625, -0.74072266, -2.9980469, 2.625, 1.2734375, 2.3183594, 3.7578125, -1.9296875, -3.1464844, -2.4628906, 1.1621094, -0.9692383, 0.77441406, 0.21643066, -0.8955078, 1.1796875, 0.40649414, -0.17675781, 1.1757812, 1.2685547, 0.7973633, 0.65625, -1.0214844, 0.7861328, 0.016708374, -1.3359375, -0.6328125, -1.9619141, 2.8300781, -2.0917969, -1.4863281, 1.5224609, -0.2680664, -1.9677734, 0.49853516, 0.52978516, 0.6586914, -2.2597656, 1.7695312, 1.703125, 0.3713379, 1.1074219, -2.2832031, 2.5605469, 1.1210938, 1.8710938, 0.7910156, 0.7973633, -2.5332031, -2.4472656, 1.4423828, 1.8173828, 1.2646484, 4.609375, 1.078125, -3.1953125, -0.04788208, 1.1289062, -0.81103516, -0.3178711, -0.5888672, -0.4880371, 2.6328125, 0.20605469, 0.38549805, 0.19824219, 2.5195312, 1.2607422, 2.5859375, -0.115356445, 1.0693359, -2.1152344, -4.3945312, -2.6601562, -0.890625, 0.7739258, -1.5117188, -1.3916016, -0.29711914, -0.39282227, 0.25341797, 1.8964844, -2.0917969, -0.08905029, 2.0332031, -2.3535156, -0.06262207, -1.0712891, -2.0683594, -3.0761719, 2.8242188, 2.8242188, 1.8828125, 1.0761719, 0.6542969, -0.8803711, -2.7773438, 0.6459961, -0.53759766, 0.7426758, -0.6479492, 0.45922852, 1.4804688, -3.734375, 0.5600586, -1.1191406, 1.1650391, -3.1308594, 1.7919922, -1.7402344, -0.30493164, 0.46435547, 1.3027344, -0.099731445, -3.8398438, -2.4941406, 1.8183594, -0.23327637, -0.7519531, -0.17578125, -2.1269531, 0.2142334, -0.9711914, -1.8935547, -2.3691406, 0.6923828, -0.4921875, -2.0683594, -2.6191406, 1.4267578, -0.27905273, -0.5732422, -0.35058594, 0.734375, -1.734375, -2.0566406, -2.1367188, 2.2050781, -2.8144531, -1.3105469, 0.35424805, -0.030471802, 1.7890625, 1.0302734, 0.734375, -3.1054688, 2.3613281, -2.7597656, -1.8642578, 1.3886719, -1.0517578, -0.9819336, -0.25878906, -0.8701172, -0.87939453, -0.045410156, -0.73876953, -1.4267578, -0.23901367, 1.1845703, -0.5317383, -1.3671875, -1.1181641, 1.1728516, 0.86279297, 2.4882812, 2.4960938, -0.35961914, -0.7832031, -2.59375, -0.88183594, 0.9394531, -2.8105469, 0.09680176, -0.89941406, -0.92089844, 1.3457031, 1.1162109, -0.97021484, 1.2148438, -0.5932617, -1.7890625, 1.3818359, -2.3515625, 4.1289062, 1.2841797, -1.7099609, -0.39404297, -1.2285156, 1.0839844, -0.13134766, 0.095336914, -1.96875, 1.4560547, -1.2675781, 0.48608398, -0.44506836, 0.7109375, 0.8574219, 1.4541016, -1.5839844, 0.1661377, 3.0546875, -2.4941406, 1.1679688, 0.34204102, 0.27001953, -0.93359375, 4.6953125, 0.5864258, -1.9257812, 2.5722656, -1.0898438, 1.0517578, -1.2714844, -2.4277344, 0.46777344, -1.5, -1.7207031, -1.4101562, -0.73291016, -1.8144531, -0.3203125, 2.9316406, -0.578125, 0.7241211, 1.9707031, -1.1210938, 2.1484375, 2.671875, 0.515625, 0.79541016, 0.24389648, -1.4492188, 1.7832031, 2.3964844, -0.875, -0.9453125, 1.1914062, 1.1552734, -1.3486328, 0.033203125, 0.06274414, 1.453125, 2.0410156, 0.9038086, 1.1308594, 1.1904297, 2.046875, 0.2734375, 1.4638672, 2.3320312, 2.5429688, 1.6865234, 0.27978516, 1.1835938, 0.7363281, -2.1699219, 3.4472656, -0.54345703, -0.5493164, 0.52441406, 3.0585938, -0.42211914, -3.5683594, 1.9716797, -2.9765625, -0.47924805, -0.77490234, -1.3554688, 0.40893555, -0.8642578, -0.31445312, 0.52197266, 2.1035156, -0.18408203, 1.3037109, -1.8017578, 1.4169922, 1.0341797, -4.15625, 0.6875, -1.1679688, -0.93603516, -1.5888672, 2.4257812, 0.56933594, 2.546875, 0.7416992, -0.5263672, 1.4326172, 2.9003906, 1.5400391, -0.99121094, -0.25952148, -0.45141602, 3.2382812, 0.94677734, 1.6708984, 1.6689453, 0.2409668, -1.8935547, -3.6601562, 2.6933594, 2.0859375, 1.8886719, 1.1318359, -2.8574219, 0.9902344, 0.234375, 0.12365723, -1.2402344, 3.21875, 1.8203125, -3.9257812, -0.16955566, 3.1640625, 0.8129883, 2.8007812, -0.07019043, -1.7578125, -0.7963867, -0.39038086, 2.1875, 2.7070312, -1.4453125, -0.5830078, 0.8828125, -0.22387695, 4.2421875, 1.3261719, 0.9160156, -1.5263672, 2.6328125, 0.6035156, 0.8701172, 0.75341797, -1.8105469, 0.54345703, 0.23034668, 1.8652344, -0.80566406, -0.21179199, -1.6074219, -1.5380859, -1.5722656, -1.4160156, 0.14367676, 2.6894531, 1.5947266, -0.48535156, -0.07299805, -0.8676758, -2.2910156, 1.7958984, 1.4658203, -0.8730469, 0.5024414, 1.0351562, -0.11224365, 0.8535156, -2.8046875, -0.068359375, 1.0136719, 0.40820312, -2.1855469, 1.3564453, -0.68359375, -0.91748047, -1.7011719, 1.4960938, -2.7988281, -2.4570312, 1.0566406, -1.5332031, 0.8388672, 2.3535156, -2.5058594, 1.8007812, -0.49829102, -0.6850586, -0.6738281, -0.022277832, 0.028305054, 1.1894531, 2.3808594, -1.1660156, 1.4619141, -0.78027344, -1.9023438, -0.82177734, -1.9365234, 2.7109375, -0.64160156, -2.0234375, 0.09320068, -0.1005249, 1.0751953, -0.1895752, -1.6943359, 0.43164062, -1.3916016, 0.17236328, -1.4335938, 1.7910156, 0.47143555, -2.1308594, -0.36987305, 2.9042969, 1.5810547, -1.9882812, 0.4309082, 1.0966797, 1.6240234, -2.2167969, 0.8183594, 1.8154297, 2.7617188, 1.2958984, 1.2900391, 1.0380859, 0.23059082, -0.60839844, -0.44604492, -1.5957031]}, "B00VG0S56Y": {"id": "B00VG0S56Y", "original": "Brand: Unicook\nName: Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More\nDescription: Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection\uff1a

\u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

\u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

\u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

\u25cf Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

Care and Use
\u25ba Allow grill to cool before covering.
\u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
\u25ba Air dry for next use.

Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Upgraded Material\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements.\n\u3010Handles and Straps\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5\u201d wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off.\n\u3010Covered Air Vents\u3011- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds.\n\u3010BBQ Grill Cover Dimension\u3011- 60 inch grill cover measures 60\" width by 23\" depth and 42\" height, fits most grills with 3 to 4 burners, width between 53\u201d and 58\u201d. \ufe61Not designed to cover the wheels entirely, the grill could be moved freely with cover on.\n\u3010Wide Selection\u3011 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"UNICOOK\" button on top to find the right cover to protect your grill.\n", "embedding": [-0.3564453, 2.2421875, 2.46875, -1.3623047, 1.3662109, -0.4020996, 0.062042236, -1.9384766, 2.3125, 2.1230469, -1.1474609, -1.4306641, 0.3779297, -4.3476562, 0.09161377, -0.1932373, -0.32617188, 2.4550781, 3.4785156, -0.34448242, 1.5380859, 0.84716797, 1.7646484, 0.09832764, 0.6333008, 0.6899414, 3.7324219, -2.6035156, -1.2617188, -0.29174805, 1.8115234, -0.8544922, 0.59033203, 1.3378906, -2.2753906, -1.7216797, -0.9506836, 0.9711914, 0.18884277, 0.31420898, -0.64208984, -1.9472656, 0.60791016, 0.7055664, -2.1816406, 1.1923828, -2.125, 0.2866211, -1.2792969, -3.1289062, 0.7944336, 2.5234375, 0.8955078, 0.4489746, -2.390625, 3.0722656, 0.6870117, -1.6875, -0.3449707, -1.125, 0.5053711, -1.453125, -1.2773438, 1.7880859, -1.9257812, -1.1640625, -1.2158203, -0.5214844, 0.31396484, 0.35473633, 1.9052734, 0.29052734, -1.8525391, 1.0625, 1.6289062, -0.23999023, -2.0332031, 1.1699219, 0.30419922, -1.2363281, -0.4494629, 4.7773438, 0.67529297, -3.6367188, 0.16027832, 1.3115234, -2.1386719, -2.0449219, 2.7617188, 0.7211914, -0.52685547, 2.0644531, -1.8779297, -4.9140625, 0.09625244, -2.3691406, 1.8974609, 0.7841797, 0.5756836, 0.70947266, -1.0732422, 0.3815918, -2.3378906, -0.039520264, -2.8007812, -1.6767578, 2.1796875, -1.7871094, -1.4414062, -0.55566406, -0.17114258, -0.9291992, -0.7661133, 0.6723633, 2.2558594, 0.51708984, -0.42407227, 1.9306641, -0.5390625, 0.9765625, 4.28125, -0.6118164, -0.38989258, -0.90478516, -0.37182617, -0.6972656, -1.4619141, -0.47216797, 4.359375, -0.640625, 1.9658203, 0.7241211, 0.27783203, 1.5830078, -2.2070312, 0.099975586, -2.2597656, -1.5283203, -2.3242188, 2.3769531, -1.5898438, -1.609375, 1.8017578, -1.1416016, -4.28125, 0.97509766, -0.2220459, 4.0273438, -0.5678711, -1.8798828, 1.7060547, -2.4589844, 0.10211182, -1.9238281, 1.0576172, -0.66796875, 0.52685547, -4.2539062, 3.7539062, 2.859375, 2.7207031, -3.0332031, 1.6005859, 1.5566406, 1.7988281, -0.99316406, -1.2695312, 0.26635742, -1.4931641, 0.9003906, -0.46557617, -0.99121094, 0.88427734, 1.4482422, 0.6352539, -0.95410156, 0.43139648, 2.1386719, 0.2993164, -0.1796875, -0.5107422, -1.8427734, 0.018951416, 2.5488281, -2.0058594, -1.2861328, -0.28393555, -0.35888672, 0.10266113, -0.7207031, -0.3786621, -0.07897949, -0.7758789, 1.2558594, -2.1054688, -0.79833984, -1.4033203, -0.81152344, -1.4316406, -0.10095215, -1.2636719, -3.2773438, -0.9682617, 0.53222656, -3.3671875, -2.7929688, -1.6494141, -0.36865234, 1.2880859, 0.6376953, 1.5009766, -1.5927734, 2.0429688, 3.3378906, -1.9814453, 0.74121094, 1.7177734, -0.6582031, 1.4003906, 1.1513672, -0.1619873, -1.9228516, -0.32714844, 3.0703125, 0.29101562, 3.4375, 1.5009766, -0.4807129, -1.2783203, -1.3886719, 0.23278809, 0.37426758, 0.79833984, 0.7290039, -0.8276367, 0.84472656, 0.57910156, -2.5917969, -0.8911133, -0.3955078, -2.75, -3.0664062, -3.0117188, -1.5419922, 0.9765625, 1.0947266, -1.2255859, 1.0146484, 0.22167969, -0.8046875, -0.9243164, 1.3037109, 0.48120117, 0.38745117, -0.101867676, 0.94433594, -0.08001709, -0.20751953, -2.0488281, -1.5898438, 0.11621094, 0.68310547, 0.5161133, 0.36401367, -0.6948242, -1.4482422, -0.05722046, 1.4785156, -2.5371094, -2.3730469, 1.8837891, 0.19482422, -0.45385742, -2.3691406, 1.2958984, 0.56347656, -0.27075195, 1.34375, 0.18395996, 0.5961914, -0.24255371, 1.09375, 1.8027344, -2.2304688, 1.2773438, -1.2822266, -0.86572266, -1.5078125, -0.38305664, 0.3125, 3.859375, -0.39038086, -2.0097656, 2.4082031, 0.31713867, -0.062164307, 1.3857422, 0.2578125, -1.7431641, 0.7602539, 1.2890625, 1.1669922, -0.67871094, 1.2539062, -2.3652344, -1.1005859, 1.8310547, -2.5253906, -0.7973633, 2.4375, 0.6821289, 1.8232422, -1.0527344, 1.1445312, -2.3925781, -2.8886719, 1.9853516, -1.3251953, 0.8027344, 0.6557617, 1.5908203, 0.7133789, -1.8496094, -1.9199219, -1.2705078, 0.4951172, -0.11450195, -0.21459961, 0.71533203, -0.37109375, -0.21813965, -1.71875, 0.8149414, -1.8867188, 0.17285156, -1.8623047, -2.8867188, -1.7480469, -0.37304688, -1.6640625, 0.9379883, -0.5180664, -2.2285156, 1.0507812, 1.0996094, -3.796875, -0.5708008, 1.1279297, -0.328125, 0.19116211, 0.4638672, -0.49804688, -0.27441406, -5.8945312, 1.7900391, -1.4326172, -0.6542969, -0.60546875, -1.1757812, 0.22460938, 0.34570312, 0.13464355, -0.01727295, 0.80615234, 1.0498047, 0.03378296, -0.38012695, -2.5742188, 1.8105469, -3.40625, 1.0478516, -0.1965332, 1.6708984, -3.7050781, -0.99853516, 1.1445312, -1.6191406, 2.8945312, 1.3554688, 1.2802734, -0.96435547, -1.4765625, 0.18249512, 0.12286377, -1.0878906, 0.48608398, -0.484375, -0.8930664, 0.5136719, -3.4648438, -2.2460938, -2.328125, -0.9394531, 0.65722656, 0.30639648, -0.6064453, 2.7792969, -2.8789062, -1.0361328, -0.0033187866, 0.9589844, 0.36132812, -2.2714844, 0.2697754, -2.65625, -1.8994141, -0.3955078, -2.1972656, 2.6308594, -2.2558594, -0.87402344, 2.9980469, -0.47509766, 3.4707031, -0.8964844, -3.2636719, 0.9897461, 0.47802734, 0.35595703, 2.0097656, -0.28051758, 1.4443359, -0.6147461, 1.3642578, 2.2480469, 0.31811523, 0.5566406, 2.7480469, 1.9960938, 1.4287109, -1.0761719, 1.9042969, -0.041229248, 2.2363281, 1.8818359, 0.18664551, -1.7197266, 0.60009766, 0.74609375, -0.81591797, 1.2412109, 0.8623047, 0.5214844, 0.028030396, 0.89208984, -1.109375, 1.7080078, -0.47875977, 1.5263672, -1.7734375, 2.0136719, 1.1884766, -0.035736084, -0.2479248, -0.91015625, 1.6533203, 2.2539062, 1.1865234, 0.89941406, 2.4023438, 0.009292603, -0.17883301, -0.41992188, 1.7363281, 0.63378906, -0.7836914, 1.90625, -1.5537109, 0.18261719, 1.0175781, -2.1953125, 2.0078125, -2.2207031, 0.50390625, 2.1660156, -2.0820312, 0.8457031, -1.1259766, -0.074523926, 0.35107422, -1.5537109, -0.07318115, -1.5654297, -1.7050781, 0.12854004, -3.8398438, -2.8867188, -1.125, 3.546875, 0.22851562, -2.3457031, 0.118896484, 1.5244141, -1.8251953, -1.8525391, 0.9121094, 2.7519531, -0.8989258, 3.2148438, 1.1005859, -2.015625, 2.1621094, -2.234375, 1.3417969, 0.63964844, -1.0166016, -0.48779297, -0.6855469, -0.4555664, -2.2402344, 1.8769531, 1.5830078, 2, -1.0634766, 1.7548828, -1.9931641, 1.0820312, 2.0605469, -0.7294922, -0.6542969, 1.8291016, 1.1699219, 0.9711914, 0.93115234, 2.5332031, -0.22644043, -0.25048828, 1.7568359, -2.65625, -0.6376953, 0.57666016, -4.1914062, -1.0537109, -0.63183594, -0.6425781, 3.6503906, -0.70703125, 0.80615234, 2.5351562, -2.0859375, 1.0097656, 0.39916992, -3.6933594, -1.6953125, 0.29052734, 0.5834961, 2.28125, 0.3947754, -1.6523438, -2.2089844, -2.9433594, -1.03125, -0.10467529, 2.265625, -1.2929688, 0.2944336, -1.984375, -0.5527344, -1.4550781, 1.1142578, 1.7890625, 1.1601562, 0.07977295, 0.05996704, 1.4619141, -1.6953125, 2.1601562, -0.421875, 1.6025391, -1.5029297, -0.23583984, 0.47998047, -1.25, 2.3105469, -1.1582031, -2.6015625, -1.0517578, 1.078125, 2.1113281, -0.765625, -0.50341797, -1.7236328, -0.7319336, 1.7148438, 0.86035156, 3.2714844, 1.7783203, -0.421875, -2.4589844, -0.54052734, -1.4160156, -1.328125, -1.3339844, 0.121032715, 0.64208984, 0.796875, -1.9169922, -1.5908203, 0.00819397, 0.9238281, 0.31518555, -0.05847168, 2.8769531, 1.4707031, 1.3339844, 1.8046875, -3.0039062, -0.24731445, 1.7109375, -0.76123047, 0.2446289, 0.47583008, -0.5107422, -0.64746094, 1.5898438, -1.640625, -1.7382812, 0.10168457, -0.87841797, 0.52490234, -0.13708496, -3.2109375, 2.7675781, 0.20178223, 0.6274414, 0.6435547, -2.6015625, 2.7421875, -1.2753906, -0.6152344, 2.0859375, -0.95751953, -1.5263672, 0.32641602, 1.2753906, 0.087402344, -0.26220703, -0.21032715, -0.98291016, -0.31030273, 0.05316162, -2, 1.578125, -0.7529297, -0.15722656, 1.1660156, 1.2978516, -1.3916016, 0.60839844, 3.1582031, 2.3417969, -0.8496094, 1.5615234, 1.6328125, -1.2431641, 0.6582031, 1.4355469, -1.7099609, 1.0566406, 0.05291748, -0.18469238, 1.1591797, -1.5927734, -1.5996094, 0.20092773, 1.6953125, -0.89746094, 1.1386719, -1.0351562, -1.7451172, 2.1503906, -2.3515625, -0.5332031, -0.921875, 1.6679688, -1.2832031, -0.17749023, 1.3740234, -0.17260742, 0.9692383, 3.3789062, -1.8066406, -2.1308594, -1.1552734, 0.3112793, -0.6074219, -0.6479492, -2.3125, -3.5429688, -0.63427734, 1.1865234, 3.1953125, 2.5585938, 0.11968994, 1.6455078, -2.5429688, 1.390625, -1.09375, 2.6464844, -1.5068359, -0.4572754, 2.4179688, -3.5195312, -1.6269531, -2.3457031, -0.1776123, 1.9853516, 2.0761719, 1.3623047, -0.9301758, 0.47875977, -0.32299805, -3.5664062, -2.1933594, -0.5751953, 0.13806152, -0.6611328, 0.83691406, 0.17102051, 1.6757812, 0.5048828, -2.2011719, 0.8588867, -0.49560547, -0.33935547, -1.4853516, -2.375, -0.07446289, -0.7661133, -1.7587891, -0.36010742, -1.5986328, 0.9472656, 0.82910156, -3.4707031, 1.4130859, 0.15661621, -2.9199219, -0.51123047, 3.6210938, 1.4257812, 1.0830078, -0.5102539, -1.1884766, 0.001039505, 2.7226562, -2.0390625, -1.1132812, 2.25, -1.578125, 1.6142578, -1.1894531, -1.4121094, 1.7109375, -2.703125, 0.30004883, 0.78466797, 0.44433594, 3.7363281, 1.8886719, -0.8051758, -0.44091797, -0.053894043, 1.3408203, 2.3886719, 0.46166992, -0.78564453, 1.0986328, -2.125, -2.09375, 1.7597656, -1.5341797, -1.4726562, -2.0136719, 0.71875, 1.5126953, 2.3183594, 1.0585938, 0.3317871, 0.8334961, -2.6738281, 0.08911133, 0.5371094, 3.4277344, 0.55126953, -2.1542969, -0.44433594, -1.7900391, 0.85839844, 1.9697266, -0.46142578, -0.64453125, 0.03842163, 0.9111328, 0.75439453, 0.029296875, 3.2675781, 1.1083984, 2.1621094, 0.8232422, 1.1582031, 2.6757812, -0.0029907227, 1.3681641, 0.39453125, 1.4052734, -0.2919922, 1.3769531, 1.0019531, -1.8544922, -0.6875, -0.041168213, 0.7348633, 1.0810547, -2.5449219, -1.5263672, -0.55078125, -1.2304688, -2.3320312, 0.6855469, -3.6757812, 0.7402344, 1.3769531, -0.6689453, 0.06555176, 0.8691406, 0.68896484, 2.53125, 2.484375, 2.2109375, -0.91064453, -1.4775391, -0.07104492, -0.066345215, 0.35913086, -1.5419922, -0.24816895, -0.7553711, 0.47021484, -0.64404297, 1.5009766, 0.3857422, 1.2431641, 0.22290039, 2.7050781, 2.4667969, 2.3515625, 2.390625, 0.6411133, 1.5439453, 1.2314453, -1.7226562, -0.3232422, 2.6425781, 2.5351562, 2.5214844, -0.359375, 1.2109375, 1.0898438, -1.0664062, 0.66845703, -0.12536621, 2.2441406, -1.8876953, 0.8046875, 1.6982422, -0.06726074, 0.13586426, 2.0351562, -1.1171875, -0.7885742, 0.5839844, 0.105529785, 2.7304688, -0.1640625, 3.21875, 0.16699219, 1.6533203, 2.5625, -4.609375, 1.8828125, -0.46557617, -3.4023438, -0.6044922, 1.5771484, 2.2207031, 1.9726562, 0.24780273, 1.4404297, 1.671875, 2.1113281, 3.0703125, -2.1464844, -0.0049057007, 0.16699219, 1.6191406, 0.2626953, -0.9296875, -1.4453125, -0.29956055, -2.7734375, -2.25, 1.4414062, 1.6552734, 2.5976562, 2.2519531, -3.1445312, 1.8164062, 0.8730469, 3.3300781, -0.46923828, 0.8520508, -1.8378906, -3.1621094, 0.4189453, 0.40844727, -2.0371094, 1.0478516, 1.0527344, -0.1484375, 2.9042969, 0.7939453, 0.7402344, 1.5625, 2.6269531, -0.40014648, 0.7548828, 0.4567871, 2.4960938, 2.1757812, -1.0458984, -1.8173828, 1.0341797, 0.033721924, 0.4934082, 2.3164062, -0.47875977, 1.9824219, 1.984375, 0.2454834, 0.9165039, -0.28833008, 0.8491211, -0.23217773, -0.7607422, 0.24926758, -0.5800781, 1.0478516, 0.5864258, -0.30200195, 0.7524414, -0.5678711, -0.41064453, 1.0419922, 0.37963867, -0.5761719, -1.9140625, -0.5336914, 0.49609375, -0.8227539, -1.3642578, -1.6533203, 0.6459961, -1.0195312, -1.2207031, 0.26367188, 0.18615723, 0.13134766, 0.012924194, 1.8486328, -1.3662109, -0.8105469, -0.68066406, -1.8662109, -0.043121338, 1.4101562, 1.6269531, -2.3164062, -0.47607422, -1.1347656, 1.4316406, -0.77441406, -1.8984375, 1.4238281, 2.5527344, 1.1757812, -1.3652344, -1.2255859, -2.2246094, -0.21154785, -2.4140625, 2.0683594, -0.15771484, -0.22167969, -0.38256836, 0.7524414, 2.9101562, -1.4472656, -2.3457031, -0.5019531, 1.4912109, 1.1992188, -0.9560547, 0.34423828, -1.1669922, 0.23376465, 1.1992188, 1.1435547, 4.328125, 0.11126709, 1.0810547, 2.3222656, -2.640625, -3.2753906, 0.43579102, 0.3635254, 0.0030784607, -0.10357666, 0.27026367, 3.1269531, -0.49975586, -0.65185547, -0.40551758, -0.50390625]}, "B001RU04XK": {"id": "B001RU04XK", "original": "Brand: Coleman\nName: Coleman Fold N Go + Propane Grill\nDescription: \nFeatures: Portable folding grill with built-in handle for easy transport and storage\nDelivers 6,000 BTUs of heat across 105 sq. in. of grilling surface\nAdjustable horseshoe burner for precise temperature control and even heating\nInstaStart button ignites grill without the need for a match or lighter\nRemovable dishwasher-safe cooking surface and grease tray for easy cleaning\n", "embedding": [-1.3076172, 0.890625, 0.56689453, 1.1533203, -1.3925781, 0.5390625, 0.4880371, 0.1895752, -1.5576172, 2.6074219, 0.45947266, -1.1289062, 0.79052734, -1.6025391, 0.14001465, -0.9433594, 1.0126953, 1.8925781, 1.7470703, -0.6538086, 1.9052734, -0.98046875, 0.37817383, 0.359375, 0.28588867, 0.4128418, 3.9121094, -5.0585938, -0.34228516, -0.028747559, 2.1113281, 0.28320312, 0.5209961, 3.4550781, -2.8867188, -1.2089844, -2.5957031, 2.1289062, -1.4335938, -1.1113281, -1.0888672, -1.4941406, 2.765625, -0.40063477, -1.4726562, -0.8232422, 1.6835938, 0.24963379, -0.8457031, -1.0712891, 2.6582031, 1.0517578, 1.6201172, 0.9746094, -0.9511719, 1.1464844, -0.010292053, -1.5751953, 1.6972656, -1.1455078, 0.5488281, -0.39135742, -1.4824219, 0.6879883, -1.2685547, -0.99853516, -0.08081055, -0.10131836, 0.6748047, -0.5097656, 2.5136719, 0.18066406, -3.4316406, -0.8881836, 0.26879883, -1.0048828, -2.4882812, 0.30493164, 1.6240234, 0.43676758, -0.67822266, 1.4091797, 1.5722656, -2.234375, -1.2539062, -0.46948242, -1.0498047, -1.9658203, 1.7363281, 1.7304688, -0.77685547, 1.4521484, -1.5566406, -3.7226562, 1.2226562, -1.6816406, 0.90234375, 0.8173828, -0.6123047, 1.3945312, -1.3388672, 1.1435547, -1.4541016, -0.6855469, -3.0292969, -1.2646484, 2.171875, 0.014511108, -2.0117188, 2.9746094, -1.5449219, -1.1035156, 3.0683594, 0.84814453, -0.22619629, 0.056274414, -0.5722656, 2.671875, 2.0605469, 1.3789062, 4.2734375, -1.3251953, 2.2617188, -0.7763672, -0.16357422, 1.0166016, -0.6743164, 1.5341797, 4.2070312, -1.5087891, -0.19128418, 0.51953125, 2.1601562, -0.013053894, -4.0898438, -2.6328125, -1.5498047, -1.0507812, -3.9375, 0.0018167496, -0.23547363, -0.024337769, 3.4375, -0.074157715, -5.28125, -0.5161133, 0.65234375, 2.5078125, -0.29907227, -2.671875, -0.46191406, -1.5234375, -0.0104599, -0.53125, 2.1113281, 0.5683594, -2.2109375, -1.5527344, 4.5546875, 0.74316406, 1.2822266, -0.6040039, -1.0966797, 1.2080078, 1.1923828, -0.6015625, 0.5854492, 1.4628906, -0.2208252, 2.5742188, 0.62353516, -3.5800781, 1.2441406, -0.052337646, 1.6367188, -1.5058594, 1.4511719, 2.1777344, 0.09069824, -1.3115234, -1.2685547, -2.1679688, 0.43969727, 1.5673828, 0.48413086, -2.3710938, -1.0214844, 0.3581543, 0.2919922, -1.4365234, 0.054840088, -1.6113281, 0.014930725, -0.11029053, -1.7060547, -1.0869141, -0.8676758, -0.032196045, 2.0820312, 0.9033203, 0.19995117, -0.39770508, 0.097473145, 1.4023438, -2.1875, -3.2890625, -1.0878906, -1.6416016, 2.0507812, 1.4882812, 2.4316406, 0.5107422, 1.3876953, 0.4736328, -1.6445312, -2.2832031, 0.07159424, 0.10797119, 2.5332031, 0.88671875, -0.30493164, -2.4433594, -1.0859375, 1.0849609, -1.2431641, 2.1738281, 1.1103516, -0.6269531, -0.18261719, -1.5546875, 1.4873047, 1.6425781, -1.8242188, 0.50146484, 0.43676758, 2.2441406, 0.45092773, -1.1416016, -1.0478516, 0.33618164, -0.16845703, -0.08642578, 0.85058594, -1.3554688, -0.43725586, -1.15625, -1.1904297, 2.5371094, 1.5927734, 0.7792969, -1.0166016, 0.69873047, -1.4248047, 2.4003906, -1.9511719, 2.2734375, -0.5576172, 0.019607544, -1.2753906, -2.921875, 0.02708435, 1.9726562, -0.23339844, 0.4440918, 0.2064209, -0.6064453, 2.8066406, 0.12036133, -2.8808594, -1.0478516, 2.2617188, 1.2246094, 1.4628906, 2.9023438, -0.002866745, -0.11328125, -1.3886719, 1.6220703, 0.068237305, 1.5966797, 0.20214844, 1.3427734, 2.4335938, -1.7597656, -4.1132812, -0.16137695, 0.17028809, -0.4033203, -1.5117188, 1.2001953, 4.03125, -0.1472168, -1.8896484, 3.0234375, -3.703125, 1.9677734, 1.8701172, -0.9682617, -0.7705078, 0.22302246, 2.5253906, 0.92822266, -0.05355835, 2.671875, -4.890625, -0.6357422, -0.42529297, -1.6660156, 1.3808594, -0.64746094, 0.09075928, -0.6113281, -1.9433594, 0.2836914, -2.0019531, -0.63916016, 2.3027344, -1.1835938, 1.8466797, 2.1757812, 0.31835938, 0.25073242, 0.17932129, -1.2802734, -0.19384766, 0.18701172, -1.6650391, 1.4326172, 0.5053711, -2.1953125, -0.5205078, -1.1064453, 2.8105469, -1.3496094, -1.8378906, -0.89990234, -0.09790039, -3.1816406, 1.3037109, 0.9628906, -1.4960938, -0.0496521, -1.7861328, 2.2089844, -2.3515625, -2.3652344, 0.7714844, -0.23986816, -1.0195312, -0.114990234, 0.18981934, 0.6279297, -0.4621582, -3.7109375, 0.10473633, 0.8496094, -0.1159668, -1.4599609, -1.2275391, -0.34692383, 0.5698242, 0.17700195, 0.1706543, 1.3320312, -0.9277344, -1.1748047, -0.5395508, -2.7519531, 2.2207031, -1.2421875, -0.3959961, -0.6542969, 0.24401855, -2.6699219, -1.8828125, 1.9472656, -0.7114258, 4.9609375, -0.11505127, 0.5830078, 0.4963379, -1.7802734, 1.5507812, 0.24560547, -4.1757812, -0.4399414, 1.5488281, 0.77978516, -2.1953125, -3.8203125, 0.2680664, -0.061920166, -0.8979492, -0.6879883, 1.6259766, -3.3183594, 1.4736328, -3.0976562, 0.8623047, 0.07421875, 1.6728516, 0.4375, -1.1396484, -0.6274414, -0.36791992, -1.4150391, 0.20043945, -1.7265625, 0.3010254, -0.33666992, -0.82177734, 1.7265625, -1.1816406, -0.064208984, -1.0576172, -4.2265625, 2.6601562, 0.64941406, -0.7246094, 2.2441406, -1.2529297, -2.6953125, -4.7460938, -0.8305664, 2.5117188, 1.0214844, 1.4345703, 0.26049805, -0.4453125, 2.9375, 1.46875, -1.4033203, 0.62890625, -1.1474609, 2.6269531, -1.3847656, -2.1660156, 0.06317139, 3.0195312, -2.9472656, -0.5263672, 2.7050781, -0.25073242, 1.1972656, 4.0390625, -0.16723633, 0.5004883, 0.029449463, 1.2236328, 3.2695312, -1.5429688, -1.2158203, -0.7036133, -1.4345703, 1.9453125, 2.6523438, -0.0075035095, 1.3115234, 0.9301758, 1.5, 1.2578125, -1.9189453, 1.0527344, 0.86572266, 1.0097656, 0.90771484, 2.7128906, -0.6279297, 0.4873047, -0.21044922, -0.80126953, 1.0351562, -0.8378906, 1.1064453, 3.7753906, 0.109436035, -0.8466797, 0.5288086, -0.06829834, 0.012428284, -0.7963867, 0.31835938, -1.1552734, -0.8051758, -0.49975586, -2.3183594, -2.8144531, -0.23718262, 3.6269531, -1.375, -1.5849609, 1.1113281, 3.3222656, 0.119384766, -2.4179688, -3.4277344, 0.04977417, 0.61083984, 2.0058594, 1.3974609, -1.9248047, 0.59521484, 1.3623047, 2.0253906, 1.2236328, -1.0146484, -1.0498047, -0.70703125, -1.2685547, -0.65234375, 0.31323242, 1.4472656, 0.32006836, -2.2519531, 0.4777832, -3.0898438, 0.9194336, 0.25463867, -1.8710938, 0.14831543, 1.4257812, 0.8208008, 0.44604492, -0.53808594, 2.484375, -2.9101562, -1.0947266, 0.07775879, -1.7128906, -1.1923828, -1.0751953, -2.890625, 1.1503906, 0.3347168, -0.7753906, 2.796875, -0.84814453, 0.22277832, 0.9536133, 0.044769287, -1.9570312, -1.6064453, -2.2851562, -1.0605469, -1.1015625, 1.6679688, 0.9238281, -1.0341797, -3.0859375, -1.2568359, -1.2988281, 0.30395508, 1.1894531, 2.2578125, -0.91796875, 0.25195312, -0.6982422, 2.9394531, 0.3413086, 0.1463623, 0.5756836, 0.66503906, -0.103881836, -2.9101562, 0.8598633, -1.0556641, -0.39819336, 0.26464844, 2.1875, -0.18762207, -2.5234375, 1.7148438, 1.6875, 0.061340332, -0.49902344, -2.1914062, -0.56396484, -1.8037109, -1.2363281, 0.3684082, -0.7026367, -0.51123047, -1.7470703, 0.61865234, 1.4003906, 1.5234375, 1.8798828, 0.9663086, -1.3134766, 0.54052734, 1.2529297, -2.7675781, -2.0273438, -1.0351562, -1.2568359, -2.0957031, -0.016799927, -1.4589844, 0.5258789, -0.18908691, -0.2998047, -0.6801758, 2.3359375, 3.1992188, 2.7519531, 2.6230469, 0.7373047, -0.20593262, 2.2636719, -0.73291016, 0.203125, 1.1435547, -1.9804688, 1.1044922, 0.2824707, 0.98583984, -1.8427734, -0.083496094, 0.11755371, -1.8759766, -1.5302734, -1.5908203, 1.6748047, -1.7402344, 0.24389648, -0.52490234, -1.0458984, 2.1640625, -2.296875, 1.0117188, 0.66308594, 0.47436523, 1.65625, -0.034423828, 0.6386719, 0.37963867, 1.0224609, -0.85791016, -0.06506348, -0.28173828, -0.1784668, -0.85546875, 2.265625, -2.0214844, -1.5507812, 1.1210938, 0.25927734, -2.0253906, -0.9580078, 0.34033203, 0.105285645, 0.66503906, 1.7890625, 1.3212891, -1.0302734, 0.6538086, 0.62109375, -0.40820312, -0.32714844, 1.0878906, -0.18371582, 2.21875, -1.28125, -3.8144531, 1.2988281, 0.56640625, 0.023773193, 1.5458984, -0.15698242, -0.38208008, -1.0078125, -2.8066406, 0.8051758, 1.0410156, -2.203125, -1.0683594, -1.34375, 0.16503906, -1.1894531, 0.8544922, 2.3554688, -0.75927734, -1.5947266, 1.4775391, -2.8242188, 0.75683594, -1.3046875, -2.7617188, -3.328125, -1.4140625, 1.8535156, 2.2871094, 2.1191406, -0.31445312, -0.25878906, -2.4804688, -0.4790039, -1.3671875, 3.3476562, -2.6894531, -1.2597656, 0.9794922, -1.0673828, -0.9399414, -2.3183594, 1.0458984, -0.3491211, 2.3652344, 1.0039062, 0.05114746, -0.5361328, -0.056762695, -2.75, -4.78125, -0.4543457, 0.22387695, 0.6303711, -0.18981934, 2.2128906, -2.2382812, -0.53222656, -0.98828125, -1.4541016, -1.0136719, -0.8154297, -0.17980957, -1.2119141, -0.3569336, 1.1035156, -1.1845703, 2.5019531, 1.6298828, 0.85546875, -0.22106934, -3.2519531, -1.1181641, 1.0029297, -0.58203125, -0.16845703, 2.2871094, -0.8901367, -1.2822266, 0.7402344, 1.2871094, 0.079833984, 2.1757812, -0.5419922, -0.80371094, 1.8388672, -0.79248047, -1.5712891, 1.3427734, -1.7666016, 0.5830078, -1.1640625, 2.2558594, 1.1142578, 1.1425781, -0.5073242, 1.2578125, 1.1855469, 0.77685547, 0.72265625, -0.21154785, 2.4121094, -0.28881836, 0.7089844, -1.6396484, -2.4394531, -2.7695312, 0.25317383, -1.4902344, -1.4912109, -1.6054688, 2.1914062, 1.7685547, 2.6015625, 1.6689453, 0.5317383, 1.8847656, -0.8300781, -0.3503418, 0.20715332, 2.4453125, 1.8164062, -1.5097656, -1.0859375, -0.17480469, 0.23498535, -0.28320312, -0.13012695, 0.85058594, -0.9511719, -1.8027344, 0.27416992, -1.5498047, 2.5957031, 2.3183594, 1.4501953, -0.4519043, 1.2871094, 2.796875, -1.4414062, 0.31030273, 0.21081543, 2.4589844, -2.0214844, 3.4375, -1.75, -2.0390625, 1.6347656, -2.4003906, 1.2314453, -0.7729492, -0.9345703, 0.54345703, -1.8613281, -1.4453125, -1.3310547, 0.51953125, -3.5507812, 1.8164062, 0.38134766, -0.54833984, 1.4257812, 1.5361328, -0.27270508, 0.49853516, 2.6132812, 1.9277344, -0.4086914, 0.8833008, -0.2331543, -0.68310547, 1.2373047, -2.0175781, 3.2773438, -0.18823242, -0.17980957, 0.13122559, 3.328125, 0.09729004, 2.9628906, 2.5410156, 2.4257812, 4.609375, 1.2353516, 3.2109375, 1.2636719, -0.01360321, 0.71728516, -1.7314453, -1.2382812, 3.1699219, 0.19848633, -0.7080078, -0.9003906, 1.2539062, -1.0126953, -0.49804688, -1.6591797, 1.1152344, 0.40527344, -3.984375, 1.7128906, 1.6396484, 1.9365234, -0.95996094, 1.0820312, 0.1829834, 0.515625, -0.2548828, 0.09741211, 2.2753906, -1.5625, 0.99365234, -0.11645508, 0.30932617, 1.9736328, -1.9785156, -1.3007812, -0.4230957, -0.2993164, 0.1607666, 0.4501953, 0.94384766, 1.9716797, -0.1817627, 1.1621094, 1.3603516, -0.50439453, 0.28979492, -0.13879395, 0.85302734, 0.86816406, 2.9628906, 0.8442383, -1.6679688, 0.5888672, 0.08618164, -1.6708984, -3.2753906, 0.16467285, 1.3085938, 0.44726562, -0.14477539, -1.5791016, 2.7148438, 0.9868164, 1.9121094, -1.2714844, 2.3007812, -1.9541016, -1.9951172, -1.8076172, 0.119628906, 0.5571289, 3.0742188, 1.6679688, -0.7246094, 3.1425781, 1.5136719, 3.6894531, -1.0966797, 0.8120117, 0.7080078, 1.9882812, -1.5009766, 2.0019531, 0.70996094, 1.5341797, -1.1728516, 2.4101562, 2.8496094, -1.078125, -0.28857422, -0.97558594, 1.2158203, 0.09490967, -1.1494141, -0.6879883, -1.7197266, -1.7460938, 0.57128906, 0.8769531, 0.056671143, 0.6982422, 1.9824219, 2.3183594, -0.11437988, 0.21691895, 0.8251953, 1.1542969, 1.9140625, -1.4228516, -1.2802734, -2.2558594, 0.29370117, 0.8461914, 0.6660156, -0.43896484, 0.88378906, 1.3574219, -1.1591797, 0.1697998, 0.6425781, -2.046875, -0.44091797, -0.7182617, 0.7944336, -0.79052734, -0.49194336, 0.058898926, 1.1914062, 0.26513672, 2.7148438, -0.7050781, -0.9121094, -0.77490234, -1.3408203, 0.3173828, -2.0644531, -1.3291016, 1.6474609, 3.8378906, 0.84814453, 1.3876953, -2.8808594, -2.3378906, -2.7226562, -1.6953125, 3.2226562, 1.4228516, -1.9453125, 0.17248535, 0.8979492, 0.98046875, -1.3271484, -0.9189453, 0.66308594, 0.45507812, 0.29711914, 0.5800781, 0.14697266, 2.7207031, -1.4628906, -0.3630371, 1.3085938, 0.48999023, 2.6523438, 2.2070312, -1.6689453, -0.5419922, -3.0195312, 0.031463623, -0.953125, -0.4765625, -2.4628906, 1.8134766, 2.1816406, 0.1640625, -0.05343628, -2.7207031, -1.9628906]}, "B00PHNN5VG": {"id": "B00PHNN5VG", "original": "Brand: Camco\nName: Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protects your propane gas tank from flying road debris\nCompatibility: Fits 20 lb. steel double tanks\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer\nDimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)\n", "embedding": [-0.059753418, 0.8461914, 3.8496094, -0.6621094, -1.2421875, -2.4160156, 0.77001953, -0.49316406, 2.1933594, 1.9716797, 0.69091797, 0.28955078, 0.51464844, -3.4960938, 1.3466797, -0.5541992, 0.11303711, 1.6630859, 2.78125, 0.8334961, 1.9462891, -0.42749023, 0.101867676, -0.92089844, 0.7050781, -0.8232422, 3.1855469, -2.015625, -2.6425781, 0.92089844, 0.86328125, 0.5932617, 0.16052246, 2.2539062, 0.9667969, -0.7524414, -0.4765625, -0.04522705, -2.796875, 0.44018555, -3.3574219, -0.3996582, 4.1210938, 1.0214844, -0.9692383, -0.44555664, -0.4814453, -1.5419922, 0.53027344, -2.1386719, 0.040222168, 2.1015625, 1.7519531, 1.5449219, -0.6254883, 0.11871338, -0.026504517, -1.03125, -0.15783691, 2.2167969, -1.0224609, -0.2746582, -2.6289062, 1.8847656, -1.4931641, 1.5419922, -1.8505859, -0.7167969, 0.12573242, 2.3300781, 0.89941406, 1.3691406, 0.42089844, -1.3388672, 1.5136719, -1.2441406, -2.2109375, 0.9458008, 0.23339844, -2.0839844, -0.45703125, 3.5449219, -2.1875, -1.7871094, -1.4052734, -1.5263672, 0.17443848, 0.8984375, -0.71533203, 0.53808594, -1.5917969, 1.1992188, -1.859375, -3.234375, -1.515625, 0.84472656, 2.1347656, 1.2597656, 3.328125, 2.3886719, -0.3161621, -0.076049805, -0.96484375, 1.3388672, -2.9941406, -2.671875, 1.4667969, -1.7636719, -1.6679688, 1.0927734, -0.27392578, 0.23474121, 0.5834961, -1.5087891, -0.041870117, 1.0078125, -0.9121094, -0.14343262, 1.7539062, 1.0068359, 4.8007812, -0.49316406, 0.94433594, -1.2724609, 2.5292969, 1.6865234, 0.01676941, 1.2841797, 3.0097656, -0.97216797, 1.3789062, 0.25268555, 0.54589844, -0.8808594, 0.9604492, -0.036315918, -1.7783203, -1.1035156, -1.1611328, 1.0439453, -3.1855469, 0.25439453, 0.7211914, 0.30908203, -3.9199219, -0.58740234, -1.7998047, 1.3701172, -1.3701172, -2.8867188, 0.09863281, -3.5742188, -0.6113281, -0.6845703, 0.95947266, 0.3786621, -0.23986816, -3.3945312, 1.1826172, 2.1992188, 3.40625, -0.091552734, 0.114746094, 1.6054688, 1.1347656, -2.4414062, 0.4675293, -0.07067871, -0.95947266, 1.296875, -0.8125, -1.3242188, 0.5913086, -0.014274597, -0.89941406, -0.16589355, 1.7900391, 1.5556641, 0.7885742, 0.26513672, -2.7519531, -0.41870117, -0.5444336, -1.0126953, 0.51220703, -0.62597656, -1.5820312, -0.70458984, 0.59765625, -0.39208984, -2.7460938, 1, -0.69628906, -0.35473633, -1.1894531, -3.0019531, -2.4042969, -0.8105469, -0.044311523, 1.4863281, -1.4619141, -1.1240234, -0.48608398, 0.89941406, -1.1826172, -0.80126953, 2.6269531, 1.2871094, 2.0136719, 0.39892578, 0.33569336, 0.3166504, 1.8505859, -2.2460938, -1.9169922, -0.66259766, 0.12176514, 1.1523438, 1.4863281, 1.9316406, 1.0351562, 0.72216797, 1.2177734, 0.28442383, 1.3837891, 2.9335938, 0.98095703, 1.2822266, -0.94873047, -0.5234375, -0.1295166, 1.5527344, -2.3398438, 0.07757568, -0.93896484, 1.5175781, -0.011116028, -1.4941406, 0.79248047, -0.57666016, 1.2304688, 0.019638062, -1.4824219, -0.98828125, 2.1796875, 2.5253906, -0.9135742, 1.9228516, 1.9960938, -0.55078125, 0.12420654, -0.5683594, 0.76953125, -0.9296875, -0.54589844, 2.2480469, 1.1953125, -0.3413086, 0.6435547, -3.3183594, -0.005443573, 1.1054688, -1.5878906, 0.25708008, -0.058746338, 1.7011719, 0.38232422, -0.5996094, -1.7900391, 1.0820312, 0.6845703, 0.88671875, -0.6254883, -0.49316406, 1.4951172, 1.6376953, -0.30786133, 1.4726562, 1.0097656, 1.7792969, 1.2861328, -0.19824219, 1.9638672, -2.7382812, 0.9916992, 0.19213867, 2.3203125, 0.32666016, -2.6015625, 0.7705078, 1.828125, -0.63916016, -0.61083984, 2.5449219, 3.3691406, 1.2216797, 3.828125, 0.028396606, -0.39135742, 0.57470703, -2.5234375, 0.7133789, -0.7998047, 0.79833984, 0.09906006, -1.6533203, -0.9614258, -0.5151367, 1.2724609, 0.8413086, 1.2373047, -0.9506836, -1.3349609, -0.67822266, -1.2880859, -0.6816406, 4.5234375, -2.3847656, 0.042510986, 2.2617188, 0.53808594, 1.8525391, -0.08642578, -1.8291016, 1.6376953, 0.19628906, -1.4658203, 0.72998047, 0.82666016, 0.109558105, 0.20446777, -1.9121094, 2.2519531, -0.5683594, 0.19885254, 0.6645508, -1.4355469, -0.70947266, 0.2133789, -0.4206543, 1.640625, -2.0351562, -1.2285156, 2.0703125, 1.4599609, -0.5605469, -0.32128906, 1.734375, -1.1191406, -1.3154297, 0.20812988, 2.4589844, -0.9243164, -4.0742188, -0.13146973, -0.265625, -1.0351562, 1.9960938, -1.5507812, 0.7988281, 0.12780762, 2.1738281, 2.1132812, -0.65478516, -0.8383789, 0.85498047, 1.0205078, -3.5039062, 1.7802734, -2.3613281, -0.59375, -2.6679688, 0.10699463, -1.3916016, -2.8828125, 1.5, -1.9492188, 3.2519531, 1.3085938, 1.9443359, -0.84814453, -1.6455078, -0.28833008, -1.6748047, -1.5976562, -0.86816406, 1.6972656, -1.2099609, -0.12420654, -4.6914062, -0.36206055, -2.1386719, -0.6274414, -0.46801758, -1.9853516, -1.0722656, -0.5, -0.8847656, -0.32421875, -0.021575928, 2.2832031, -0.07922363, -0.8696289, -0.3486328, -0.15722656, -1.375, -0.7783203, -0.7836914, 1.3632812, -1.5615234, 0.5102539, 0.41137695, -1.8652344, 3.1933594, -1.5361328, -3.5371094, 0.44262695, 2.6933594, 1.3916016, 2.1269531, -1.3134766, -1.5224609, -2.0859375, -0.08239746, 2.8085938, 2.8105469, 1.5068359, 1.1162109, -0.21899414, 0.66748047, -0.97314453, 0.61083984, -0.44702148, 1.0458984, 2.4199219, -1.9355469, 0.48510742, 2.3730469, 3.3613281, -3.5742188, -1.1953125, 0.86083984, -1.9677734, 3.3847656, 2.6015625, -3.171875, -0.5102539, 0.3840332, 2.5957031, -0.80029297, 1.9599609, 0.78125, 0.8803711, 2.1015625, 0.4465332, 0.26635742, 1.6923828, 1.0009766, -1.4990234, 0.35742188, 1.0712891, -1.9443359, -0.48291016, 0.45825195, -1.9550781, 0.35986328, 2.6582031, -0.50683594, 2.3203125, 1.0859375, -1.0800781, -1.1230469, -2.1484375, 0.5317383, 0.82177734, 0.52246094, 0.13293457, -0.46948242, -1.6621094, 0.23400879, -2.3710938, 1.7900391, -0.78564453, -1.484375, 1.4082031, -2.4394531, -1.1230469, -2.7734375, 3.6347656, -1.2158203, -0.046081543, -0.18115234, 1.6689453, -0.8466797, -2.078125, -1.1582031, -1.3964844, -2.1074219, 3.1972656, 3.7734375, -2.9140625, -0.5522461, -1.9511719, 2.875, 1.9296875, -0.62890625, -0.5991211, -2.1035156, 1.5917969, -2.3769531, -0.57910156, 0.9560547, 2.15625, -2.9980469, -0.064819336, -0.9272461, 1.8232422, 1.1474609, -0.7910156, -0.39208984, 0.5126953, -2.4941406, 1.6533203, 0.39160156, 3.1484375, -0.17468262, 1.7890625, 0.7949219, -0.77783203, 1.2402344, 0.3112793, -2.2460938, -0.96777344, -0.14904785, -0.43725586, 4.40625, 0.93603516, 1.5507812, 1.1992188, -0.02468872, -4.0078125, -1.3330078, -2.8828125, 0.51953125, -2.8164062, -2.0546875, 0.8828125, 1.5273438, -2.2871094, -1.7929688, -0.004371643, -2.6796875, 0.21472168, -0.95166016, 0.24731445, 0.92822266, -0.0014982224, -0.32373047, 0.40234375, 0.57958984, 0.5756836, -0.6333008, -0.94970703, -2.7421875, 2.5664062, 0.66503906, 0.50390625, 0.84277344, 2.3027344, 1.0722656, -1.4658203, -0.17773438, -1.7392578, 0.3798828, -1.4804688, -4.21875, -0.046173096, -0.34423828, 1.0791016, -0.6425781, 0.092041016, 2.4199219, 0.7470703, 0.50390625, -0.1430664, 0.9194336, 1.5253906, -2.09375, -2.0429688, 2.8984375, -0.7729492, 0.48510742, 0.29125977, -0.33203125, 1.4648438, -0.8183594, -0.50634766, -3.0136719, 1.2070312, 0.6269531, 1.8808594, -5.4804688, 1.8007812, 1.71875, 2.8554688, 1.2646484, -0.072631836, -1.6083984, 1.3447266, 1.5302734, 1.2919922, -1.1962891, 0.10626221, 0.11779785, -0.47216797, 0.21142578, -2.3046875, -1.4277344, -0.35375977, -1.5888672, -0.19104004, -0.5957031, 0.87841797, -1.4492188, -0.8408203, 0.5551758, -1.2119141, 3.2246094, -2.375, 0.91015625, -0.10211182, -0.5605469, -2.1738281, 3.3066406, 1.1152344, -0.45263672, 1.4794922, -1.8544922, -0.07507324, 0.21887207, 1.7460938, 0.9296875, 0.45581055, -1.1484375, -1.6210938, 0.8520508, 0.8935547, 0.16638184, -1.8847656, 1.7011719, 3.0253906, 0.9345703, 0.080322266, 2.3671875, -0.40112305, 1.6875, 1.6523438, -1.5761719, -1.1259766, -0.05130005, 1.2666016, 3.4785156, -1.3916016, -4.4726562, 1.8466797, 1.0341797, -0.55029297, 1.6279297, -0.70214844, -1.5371094, -0.27783203, -4.3085938, -1.4667969, -0.4946289, 0.7832031, 0.2939453, -0.64404297, 0.99902344, -0.019989014, 0.38208008, 4.0976562, 0.8017578, -1.4414062, 0.39868164, 1.3417969, -1.6201172, -3.609375, -1.9619141, -3.3007812, -0.5625, -0.6279297, 1.2880859, 0.27514648, 1.6152344, 2.6796875, -2.5117188, -0.9291992, -1.0429688, 0.09790039, -2.1738281, -0.97753906, 2.2832031, -0.14733887, -1.0917969, -0.24121094, 0.84277344, -0.24890137, 2.4667969, 1.8486328, -1.2285156, -0.21325684, 0.91015625, -3.2070312, -4.6953125, -0.69189453, 1.2919922, -0.08331299, 0.70458984, -0.79248047, -1.2011719, 1.375, -2.4628906, 0.3100586, -2.3085938, 1.0400391, -0.40820312, -1.2324219, 0.03756714, -0.3503418, -0.2322998, 0.56396484, -1.1015625, -0.7680664, -2.3007812, -3.7773438, -3.2382812, 1.4248047, -0.5644531, -0.03878784, 0.32983398, -0.087524414, 1.9443359, 0.6279297, 2.1328125, -0.38623047, 1.5458984, -1.5595703, 1, 2.8203125, 0.34765625, -1.5673828, 3.3984375, -0.06896973, 1.6904297, 1.8330078, 2.0449219, -2.6113281, 0.67529297, 0.5527344, -0.21032715, -0.1796875, 1.1357422, 1.8652344, 0.06762695, 2.1289062, 1.3427734, -1.296875, -2.1640625, -1.3789062, -0.79052734, -1.3310547, -1.5712891, -1.0380859, -0.8154297, 0.9033203, 2.3671875, 0.5019531, 0.9003906, 0.26220703, 1.140625, -1.8808594, 0.39501953, -2.5683594, 0.52783203, 1.2167969, -1.6962891, -1.6611328, -2.3320312, 3.3125, -0.5878906, -0.04849243, 0.2668457, 0.06994629, -0.2932129, 1.6806641, 0.61083984, 0.640625, 0.034576416, 2.3789062, -1.2216797, 1.0322266, 2.9023438, 0.29956055, -0.011566162, -0.88964844, -0.2541504, -0.3708496, 0.040161133, 2.6914062, -2.8417969, -0.4819336, 1.1015625, -1.1494141, -0.6010742, -0.62353516, -0.26635742, -2.5019531, -0.17663574, -1.71875, -1.4853516, -4.4101562, 2.265625, -0.8251953, -1.0761719, 1.0224609, 0.51171875, -2.3984375, -0.35839844, 2.4199219, -0.46484375, -0.94433594, -0.5800781, -1.4150391, -0.6479492, 2.2128906, -3.1230469, 0.18383789, -2.3242188, 1.2255859, -0.8432617, 0.039794922, 0.4020996, 0.8408203, 2.9628906, 2.5117188, 4.3867188, 0.0104599, 1.7822266, 0.51660156, 1.7236328, 2.4355469, -1.9462891, -0.59033203, 0.30932617, 2.2304688, 3.2089844, -1.8740234, -0.7216797, 0.23876953, -0.40649414, -1.5878906, 0.9628906, 0.9926758, -3.9785156, -0.23083496, -0.26831055, -0.50683594, 1.5966797, 0.79833984, -1.5996094, -2.5429688, -0.30688477, -0.8178711, 2.9667969, -1.359375, -0.46948242, 0.82373047, 0.006164551, 1.7138672, 0.26904297, 0.22558594, -2.2675781, -1.4609375, -0.18981934, 0.4243164, 0.15039062, 0.93896484, -0.12939453, 1.1904297, -0.5131836, 1.4238281, -1.0009766, -1.2939453, 2.3066406, -1.1894531, 2.1269531, 2.3359375, -2.2265625, -0.3395996, 1.328125, 0.57666016, -2.9550781, -0.9194336, 1.0019531, 0.39941406, 0.69189453, -3.8632812, -0.117370605, -0.80371094, 1.4150391, -3.0976562, -0.28173828, -0.27416992, -4.2773438, 1.5234375, 2.0976562, -1.0048828, 3.875, 1.2041016, -0.66503906, 0.859375, 0.48608398, 0.9160156, 1.2597656, -0.06414795, 0.4116211, 1.0771484, -0.86572266, 3.3691406, 1.9853516, -0.32373047, 0.80566406, 2.1425781, 0.76953125, 0.7055664, 1.0947266, -2.0253906, 3.1523438, 0.84033203, -0.7705078, 0.3869629, -2.28125, 1.6396484, -0.68359375, 0.26538086, 0.62939453, 0.39624023, -0.25854492, 1.1210938, -3.0625, 0.039855957, 0.066711426, -0.39282227, 2.3710938, 0.5878906, -0.8847656, -1.2822266, 0.3232422, 1.7099609, -2.1484375, -0.041748047, -1.4794922, 1.3505859, -0.20666504, -1.7763672, -0.8330078, 1.2705078, -0.8901367, -0.34399414, 0.2841797, -0.16357422, -0.6557617, -0.5488281, -0.5932617, 0.5415039, 0.5078125, 0.9345703, -0.98291016, -0.9863281, -0.105895996, 0.2133789, 0.2944336, -0.3317871, 0.3076172, 1.5009766, 1.6191406, 0.47705078, 1.7480469, -2.6054688, -1.2763672, -3.8710938, 3.0058594, 1.2626953, -1.2978516, 0.20336914, 1.5771484, 2.2539062, -1.578125, -1.2880859, -0.25024414, 0.19421387, 1.2441406, -1.9316406, 0.26464844, -0.15576172, -0.953125, 1.4716797, 3.7167969, 3.4238281, -0.5878906, 0.2939453, 1.0449219, -2.2460938, -2.1972656, -1.6308594, -0.19506836, -1.6835938, 0.88134766, 2.8027344, 4.1132812, 0.7734375, -1.4755859, -3.3339844, -0.39990234]}, "B00008ZA0C": {"id": "B00008ZA0C", "original": "Brand: BernzOmatic\nName: BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head\nDescription: \nFeatures: Manual start (light with a Bernzomatic Spark Lighter, sold separately)\nBasic pencil flame for small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nBrass construction for durability\nFlame control valve easily sizes flame and extinguishes when finished\n", "embedding": [0.43554688, 1.4365234, 0.04888916, -0.7519531, 0.34423828, -1.6015625, -0.27612305, 0.05429077, 0.14465332, 0.34301758, 0.79052734, -0.6723633, -0.7001953, -3.3417969, -0.8911133, 0.22741699, -0.72216797, 0.01789856, 1.9541016, 0.3388672, -0.33447266, 0.34472656, 2.0742188, -2.7539062, 0.7373047, 1.3837891, 5.375, -0.9682617, 0.47558594, -3.2226562, 0.46533203, -1.2509766, -1.1035156, -0.29370117, -1.6699219, 0.39208984, 1.7949219, 0.48364258, -3.4433594, -2.3046875, -1.5703125, 1.7871094, 0.8798828, 0.79052734, -1.2949219, 0.9135742, -2.2226562, 0.33520508, -0.5053711, -0.5307617, 1.875, 2.2128906, -1.109375, -0.8300781, 1.21875, -0.27514648, 0.27563477, -3.2480469, -0.28710938, -0.23474121, 2.0292969, 0.08874512, -2.1660156, 1.3740234, 1.3173828, 1.6083984, -1.5419922, -1.3115234, 0.5864258, 1.4365234, 1.7998047, 2.3417969, 2.0410156, -0.21166992, 0.7553711, -0.63671875, -1.6132812, 2.1289062, 1.0761719, -0.33862305, 1.078125, 0.6088867, -0.2319336, -1.3515625, -0.3244629, -1.1337891, -1.9931641, 1.0039062, 2.6777344, 0.62158203, -0.6796875, 0.75683594, 1.2246094, -3.5761719, 2.7636719, -0.58984375, -0.03277588, -0.9082031, 0.35083008, 0.8666992, 0.45922852, -0.001405716, -1.1025391, 0.3466797, -1.3974609, 0.47851562, 0.48291016, 1.921875, -0.29345703, -0.6953125, -1.890625, -0.3701172, 2.0371094, 1.09375, -2.5820312, -0.09429932, -0.6088867, -0.73876953, 2.1054688, 0.66796875, 2.3632812, -2.4042969, -0.9428711, -1.6289062, 0.8178711, 0.6855469, -0.16333008, -0.37451172, 2.3984375, 1.1367188, 1.5351562, -1.6025391, 3.8613281, -0.44140625, -0.9995117, -2.5742188, -1.8076172, -1.5273438, -2.1601562, -1.9003906, -3.1367188, 1.6279297, -1.1210938, -2.1015625, -3.3691406, 0.02180481, 1.0527344, 0.29614258, 0.7480469, -0.9394531, 0.6772461, -1.9267578, -2.1738281, -0.92041016, 1.0976562, 2.3027344, -1.6835938, -1.0302734, 3.5175781, -0.05697632, 1.1962891, 1.4638672, -0.58740234, 2.0664062, -2.9238281, -1.0107422, 0.92041016, 0.53515625, -1.2539062, 2.4746094, -0.04107666, -0.52734375, -1.6162109, 0.30151367, -1.1523438, -1.0214844, 0.5385742, 2.6191406, 2.6484375, 0.6791992, -1.0185547, -1.1699219, 2.0625, -2.7441406, 2.4648438, -1.0654297, -0.39086914, -1.046875, 0.6855469, -1.6689453, 0.53027344, 2.3300781, 0.69140625, -0.033843994, -0.36279297, -1.7060547, 0.09741211, -1.5058594, 1.2607422, 1.2324219, -1.7128906, -1.0507812, -0.5239258, 1.7861328, -1.5566406, -0.9584961, 0.13439941, 0.1932373, 3.1621094, 0.14086914, 0.3083496, -1.0800781, 3.0722656, -0.3334961, 1.3486328, -2.0898438, 0.71191406, -1.0546875, 1.8447266, 1.3359375, 1.3867188, -3.7226562, -0.7758789, 1.8261719, 1.8583984, 1.9648438, -0.66748047, -1.671875, -1.421875, -1.1523438, 0.37182617, 2.3125, -1.7041016, -0.43481445, 0.42285156, 0.93310547, -0.79296875, -1.5341797, 2.4414062, -1.7568359, -1.1552734, -0.44873047, 0.6977539, -1.5322266, 2.4628906, 0.43286133, -0.6166992, 0.80566406, 0.5449219, -0.7182617, 1.8632812, -0.15136719, 1.9091797, 0.42822266, -1.2597656, -0.6489258, 0.44384766, -0.74658203, 1.8691406, -1.4140625, 3.3203125, 2.4296875, -1.0439453, -1.0957031, 1.6738281, -1.2089844, 0.027130127, 0.30908203, 0.5258789, -0.9277344, 1.015625, 1.8046875, 1.3066406, -0.43774414, 2.3320312, 2.6425781, -1.1503906, 2.6230469, 1.5507812, 1.3115234, -0.37426758, -0.71972656, 1.8486328, -3.4296875, 0.5180664, -0.068603516, -0.14807129, -1.6523438, -2.7089844, 1.4169922, 4.6171875, -1.0332031, -1.1513672, 2.6699219, -0.36254883, 1.8847656, 0.6665039, -0.40771484, -0.15820312, -4.8632812, 2.2089844, 1.1542969, 0.89453125, -0.0725708, -0.08758545, -0.13195801, 0.32958984, -0.9501953, 1.2519531, 0.07159424, -0.13134766, 0.8330078, -1.140625, 1.8476562, -3.0253906, -0.45043945, -1.0429688, -3.59375, 1.5283203, 0.25341797, 3.0117188, 3.3457031, 2.0722656, -1.3613281, 0.49926758, 0.112976074, -1.8457031, 2.3027344, 2.6738281, -0.41381836, -2.1445312, -0.94433594, 0.5126953, -2.6191406, -0.83447266, 0.6401367, 0.26538086, -4.6679688, 0.6411133, -3.6308594, -0.7290039, 3.7109375, -1.8828125, 2.1855469, -1.6826172, -2.4765625, -1.6591797, 1.0400391, -0.9536133, -1.6513672, -0.8696289, 3.1113281, -0.68310547, -3.4023438, -1.8632812, -0.8466797, -0.77734375, 2.0820312, -1.9404297, 1.2695312, -0.56591797, -0.5, -0.68115234, 1.8466797, 0.515625, -2.8828125, 2.6425781, -2.9746094, 0.32958984, -0.80810547, 4.6875, -1.7207031, 0.66748047, -1.6533203, 0.18713379, -0.44213867, -0.36547852, 1.5703125, -0.38867188, 1.1191406, 0.7416992, -1.8974609, 1.2802734, -1.0439453, -3.8066406, 1.2617188, 0.59033203, -0.5019531, -0.90283203, -2.4609375, 0.26098633, 0.22546387, -0.9941406, 0.62109375, -2.0566406, -1.5683594, 0.5126953, -1.5703125, 0.87890625, 1.2324219, -2.421875, -0.16918945, -2.3476562, -0.8261719, -0.13061523, -0.8769531, 0.31201172, -0.85546875, 0.5908203, 0.53515625, -0.00058603287, -0.5991211, 1.6826172, -0.12524414, 1.1914062, -3.3046875, -0.38549805, -0.53564453, -0.38964844, -0.024017334, -0.98046875, 1.2675781, -0.109313965, -0.011314392, 2.8964844, 0.123046875, 1.8886719, -0.30444336, 0.15600586, -0.16809082, -0.6894531, -2.0898438, -2.2910156, 0.35253906, -0.64501953, -2.9082031, -0.5800781, 1.2099609, 0.6381836, -1.7802734, -0.37597656, 2.0761719, -1.7050781, 2.7089844, 1.0546875, -1.0712891, -0.1538086, -1.3232422, -2.3183594, 1.34375, -1.78125, 2.5429688, 1.5458984, 0.72265625, 1.6210938, 0.13769531, 0.39038086, -0.19396973, 0.53759766, 1.9169922, 1.1601562, 0.11071777, 0.22827148, -1.3740234, 1.5, 1.2431641, 1.9072266, -0.5415039, 0.84277344, 0.11553955, 0.80371094, 2.046875, -2.1230469, -1.5576172, 1.0458984, -0.27954102, -0.29516602, 0.014221191, 1.3095703, -1.3066406, -0.6152344, 0.51123047, 0.20166016, 0.33984375, 0.8095703, -1.2792969, 2.5351562, -1.9960938, -0.3347168, -0.89746094, -1.515625, -0.8779297, -0.6430664, -0.74658203, -2.5820312, -1.1035156, -0.79003906, 0.11138916, 3.3652344, -0.9970703, -1.4248047, -0.23571777, 0.5522461, -2.4472656, -1.2773438, -2.609375, 0.24975586, -2.4589844, -0.45336914, 0.93847656, 0.45043945, -1.2236328, 0.0037879944, -0.17407227, 1.8164062, -1.3212891, 1.2802734, -0.9555664, -0.91552734, -0.5078125, 1.984375, -0.92333984, -1.3427734, 0.23217773, 1.3183594, -1.0859375, -2.3144531, 1.0673828, -0.86376953, -2.3242188, -2.2363281, -1.7050781, 1.7001953, 0.6269531, 0.24841309, 0.83496094, -0.38012695, 0.6933594, 0.27539062, 2.6777344, -0.53466797, -0.6147461, 0.2890625, 3.3027344, -0.7192383, -2.4316406, 1.6367188, -0.07092285, -2.6113281, 0.43432617, -1.0185547, -0.6591797, -0.6088867, 2.515625, -0.24377441, 0.3022461, 1.3769531, 0.83203125, 0.4946289, -1.8613281, 1.2363281, -0.8886719, -0.9057617, -2.015625, 0.51220703, 1.0009766, 0.29589844, 1.0322266, 0.6386719, 3.5703125, -0.6123047, -0.99072266, 0.4658203, 2.9941406, -0.0010957718, -1.5039062, 0.018814087, -1.5068359, 0.9707031, -1.265625, 2.03125, -0.2298584, -2.2167969, 1.2695312, 0.57177734, 0.00819397, 1.8632812, 1.4433594, -1.8300781, 0.89501953, -0.19934082, -3.3710938, 0.25561523, 2.4980469, 0.578125, 0.33520508, 0.78027344, 0.15356445, 1.3496094, -0.096069336, -1.5751953, -1.0283203, -0.30371094, 3.0429688, -1.0810547, 0.96972656, -1.6416016, -2.2128906, -0.08892822, 1.71875, 0.22607422, 0.16821289, 0.5654297, 0.71777344, 0.8574219, 1.9804688, 0.34448242, 0.50146484, 2.0722656, -1.9189453, 0.030059814, 0.32958984, -0.52490234, -3.1777344, -0.16687012, 0.5317383, -0.55078125, 0.06744385, -1.6035156, -0.94873047, 0.48779297, 1.0292969, 1.1269531, 0.3935547, 0.5859375, 0.5830078, 0.8569336, 0.9140625, 2.2519531, -0.69384766, 0.61572266, 1.9355469, 0.014968872, -0.024734497, 0.81347656, 0.78222656, -0.73535156, -1.1328125, 0.30371094, 1.0439453, 0.5756836, 0.8955078, 2.0019531, -0.018417358, -0.65478516, -0.22131348, 1.3271484, -2.0996094, 0.6738281, -2.7753906, -1.5195312, 2.8105469, 0.89208984, -1.7431641, 0.34423828, 1.6611328, -0.35668945, 0.9169922, -0.08929443, 1.1591797, -1.7060547, -1.2470703, -3.1699219, -3.2910156, 3.0429688, 0.32128906, 0.42651367, -0.44702148, -0.0022335052, 1.6113281, 1.7265625, 0.87841797, -0.1706543, 0.7495117, 1.1826172, -0.27026367, 1.015625, 0.33276367, 1.6308594, 1.8916016, -0.34399414, 0.9814453, 1.9599609, 0.14880371, 3.1464844, -1.15625, -0.5571289, -1.1503906, 0.41748047, -0.8442383, 0.5307617, 2.8144531, -0.28466797, 0.99072266, -0.5019531, -0.7988281, -0.9770508, 1.4355469, 0.0013799667, -0.47875977, -3, -1.2685547, -2.9238281, -4.3710938, -1.8935547, -1.1962891, 0.0637207, 1.5, 1.2148438, -0.3491211, -0.33203125, -1.8574219, -0.017242432, 0.9404297, 1.0175781, -2.6328125, -0.7265625, 0.3125, -0.51708984, 1.21875, 0.036621094, -1.4833984, -0.16601562, 2.9882812, 0.49291992, -5.3046875, 3.7148438, -1.2460938, 0.40429688, -0.19177246, -0.3388672, 0.5493164, 3.4765625, 0.54589844, -0.9863281, 0.65771484, -0.48754883, 0.28833008, -0.3383789, -2.9960938, -1.0986328, 2.0527344, 1.5615234, -0.59716797, 4.2148438, -0.017929077, -3.8203125, 0.00982666, 0.018722534, -0.90771484, -0.3479004, -0.6972656, 1.6376953, 0.03237915, 0.9609375, 2.1777344, 0.6894531, -2.1914062, -0.94433594, 1.5019531, -1.2177734, -0.80859375, 1.8925781, -0.90185547, 0.89208984, -0.46557617, 0.80371094, 1.2617188, 0.26391602, -1, -0.2980957, 1.9433594, 0.24865723, 2.8710938, -1.1806641, -1.7441406, -2.6523438, -2.265625, 4.1601562, 1.7841797, -1.3447266, -1.0488281, 1.3925781, -0.69628906, -1.5927734, -0.25927734, 0.37475586, -0.6142578, 0.15014648, -1.09375, -0.09295654, 0.007972717, -3.265625, 0.33984375, 1.6855469, 0.74072266, -0.7944336, 1.9775391, 0.5361328, -1.8886719, -0.37524414, -2.8378906, -1.0136719, -0.68310547, 0.4951172, -1.4482422, -1.4804688, 0.6411133, 2.4980469, 0.7836914, -1.3076172, -2.0195312, 1.8955078, 0.51171875, 1.1425781, 3.2734375, -3.1933594, -0.47680664, 2.3828125, -0.2692871, -3.171875, -2.0078125, 0.17016602, 1.2460938, 2.2519531, -2.5234375, 2.2265625, 1.1933594, 2.3515625, -1.7197266, 0.7084961, 0.44262695, 1.0839844, 0.41748047, 4.203125, -0.25097656, 1.3691406, 1.6289062, -1.1191406, -0.56347656, 0.7246094, 0.21789551, 2.9316406, 2.0605469, 0.42260742, 0.10455322, -0.42041016, -2.1367188, 0.19433594, -0.33154297, -2.3515625, 1.1455078, 1.6171875, -2.2636719, 1.5283203, -2.2617188, -0.42016602, -1.3271484, 0.32983398, -1.5732422, 0.5932617, -0.27807617, 1.390625, 1.8779297, 1.4804688, -0.9296875, 0.09552002, 0.72216797, 0.8652344, -3.2089844, -0.3388672, -0.90283203, -0.72558594, -0.17797852, 2.5410156, 0.93896484, 0.61035156, 1.1416016, 2.6699219, 0.41259766, 0.4128418, 1.8330078, -1.2333984, 0.23876953, 2.2910156, 1.5947266, -0.8378906, -0.87060547, -1.4804688, 0.5004883, -0.09375, -1.2666016, 4.5664062, 0.26391602, 1.1386719, 0.77490234, -0.40161133, -0.82177734, -2.6660156, 0.72509766, 0.019241333, 0.8491211, 2.0039062, -2.5976562, -0.072143555, -0.2709961, 1.0693359, 2.9316406, -1.5234375, -1.859375, -0.38745117, -0.32592773, 1.0351562, -2.2421875, 0.49853516, 1.2460938, 0.15075684, -3.9023438, 4.2734375, -1.6630859, -1.1191406, -0.515625, 3.5507812, 0.6640625, 1.6503906, 0.7578125, -0.16992188, 1.0224609, -1.6835938, 0.69677734, 2.6328125, 1.9628906, -2.8007812, -0.051696777, -0.17138672, 1.0800781, -0.39013672, 0.40698242, 0.5209961, -1.8388672, -0.7685547, 2.4589844, -2.1074219, -0.25146484, 2.4492188, -1.1699219, -2.7363281, 1.0615234, 1.7480469, -1.6337891, -1.8857422, 0.8227539, 2.9238281, 0.49829102, -0.3310547, 1.03125, -1.9365234, 0.54003906, 2.5742188, -0.39086914, -0.9042969, -2.390625, 0.22497559, -0.76904297, -2.4042969, 1.5126953, -0.0052871704, 0.5283203, 1.21875, -2.8574219, -1.0361328, -0.94384766, 0.3491211, 2.1972656, 2.4277344, -1.9296875, 0.49609375, 1.0654297, -4.1484375, 0.43066406, -0.37548828, 0.05722046, 0.77441406, -1, 0.32861328, 0.4104004, 3.3730469, -2.890625, -0.25317383, 1.2285156, 0.53027344, 1.9736328, -0.40283203, 3.53125, -1.2275391, -0.2956543, 0.81640625, 3.0605469, -0.84033203, 0.9506836, -0.44506836, 0.12731934, 1.7363281, -1.0664062, -1.6816406, -1.6621094, -0.015167236, 0.043151855, 0.56884766, -1.03125, -0.33007812, 0.15661621, -2.3242188, -1.5791016]}, "B00FWKVGQ0": {"id": "B00FWKVGQ0", "original": "Brand: Outland Living\nName: Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU\nDescription: \nFeatures: PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\nNO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24\u201d x W 24\u201d x H 13\u201d with total output of 58,000 BTU/HR.\nBEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\nCOMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately.\nSIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual\n", "embedding": [0.16638184, 0.99902344, 1.2734375, -0.09185791, 0.85791016, 1.1074219, 1.6757812, -1.1425781, -2.265625, 2.5019531, -0.7416992, 0.32788086, -1.1328125, -3.3066406, -0.14660645, 0.05065918, -0.32617188, 0.97216797, 0.7871094, -0.46850586, 2.6425781, -0.49902344, 1.6640625, -1.0556641, 1.3759766, -0.29223633, 3.0644531, -3.3203125, -1.7832031, 0.82910156, 1.5429688, 1.5546875, 0.39672852, 1.4453125, -2.7011719, -0.47924805, -2.65625, 0.78759766, -3.4824219, 0.21411133, -1.9814453, -2.1074219, 2.5175781, 0.50634766, -2.1933594, -1.0507812, 1.7148438, -0.21276855, -0.14111328, -0.95166016, 0.44458008, 1.0195312, -0.34057617, 0.7939453, -2.9121094, 2.5546875, -0.19128418, -0.58496094, 2.078125, 1.9091797, 0.13916016, -0.48632812, -0.59033203, 1.3789062, -1.7714844, 0.6015625, 0.18432617, -1.0263672, -0.054656982, -0.06878662, 1.8867188, 0.8076172, 0.36987305, 0.18676758, 0.3840332, -0.5991211, -3.8671875, 1.1865234, 2.9433594, -0.19665527, 0.37573242, 3.7128906, 0.6767578, 0.31152344, -0.13513184, -0.94140625, -3.3964844, -0.86621094, 0.18225098, 1.4824219, -0.08428955, 2.1953125, -1.5263672, -4.2539062, 2.7929688, -0.6352539, 0.018722534, 1.5859375, 0.36206055, 0.38330078, 0.70654297, 2.2421875, -0.9506836, -0.63134766, -2.4140625, -0.47607422, 0.6069336, 1.3232422, -0.39038086, 1.6230469, -1.6367188, -0.29638672, 2.2011719, 0.60546875, -0.49145508, 0.7451172, -1.0986328, -0.22619629, 4.890625, 0.1239624, 4.2929688, -0.17150879, 0.8623047, 0.36669922, 0.61279297, -0.07574463, -1.5878906, -0.024047852, 1.0644531, -0.3876953, 0.0925293, -1.2392578, 1.4121094, -0.4428711, -3.3730469, -1.3769531, -1.7958984, -1.5390625, -1.7832031, -0.7470703, -1.046875, 0.30273438, 1.9179688, -0.12915039, -4.8359375, -1.4111328, -2.0175781, 2.140625, 0.16442871, -4.4648438, 0.8779297, -1.5214844, -0.018005371, -1.9179688, 1.3544922, -0.16955566, 0.9526367, -3.6933594, 3.2441406, 0.26733398, 0.5097656, -1.2792969, -0.8613281, 0.7236328, -2.8945312, -2.4609375, 1.2714844, -0.31689453, -0.24633789, 1.2880859, -0.097229004, -1.3134766, -0.23388672, 0.28271484, 0.6376953, -1.0185547, -0.34423828, -0.055023193, 2.515625, -0.095825195, -3.0507812, -0.53515625, -0.81591797, 1.6503906, 0.7949219, -0.80029297, -1.1933594, -1.9345703, -0.05606079, -1.0185547, -1.5087891, 1.5283203, -2.0117188, -0.6542969, -1.1523438, -3.4863281, -1.7441406, -2.9453125, 2.3671875, 0.7294922, 0.38916016, 1.0761719, -1.6640625, 1.2177734, -2.5136719, -0.4597168, -0.5864258, 0.91845703, 3.34375, 3.4980469, 0.20166016, -0.5805664, 1.9160156, 0.9609375, -0.7993164, -0.1796875, 1.5068359, 0.8618164, 2.4121094, 3.0253906, 1.6435547, 0.98291016, 2.7929688, 3.3808594, 0.05429077, 0.5678711, 1.0976562, -0.5371094, -3.0117188, -2.2734375, 2.5722656, -0.22631836, -0.6254883, 0.58154297, -0.57421875, 2.2578125, 1.3144531, -1.6416016, 2.6328125, -1.1064453, -1.8291016, -0.9926758, -1.2119141, 1.2558594, 0.1772461, 1.9785156, 0.088134766, 0.50634766, 2.7714844, 0.9921875, -0.90185547, -0.34301758, 1.3115234, 0.3400879, -0.29907227, -0.57666016, -1.0371094, -0.52001953, 0.6870117, -1.5458984, 0.7758789, 0.61035156, -0.46289062, 1.0136719, -0.23742676, -1.1904297, 1.7480469, 0.5576172, -3.0761719, -0.7758789, -1.2949219, 0.21533203, 1.8828125, 1.8994141, 1.8291016, -0.25878906, 0.27783203, 2.0859375, 1.09375, 2.703125, 0.484375, -0.38256836, 0.41064453, -1.3564453, -1.0234375, 1.0166016, 1.3486328, -0.01739502, -1.2353516, 1.0429688, 5.0585938, -0.5078125, -2.4804688, 1.1865234, -0.64208984, 1.2236328, 1.1582031, -1.2617188, 1.3935547, -0.02355957, 1.703125, 0.9526367, 0.10253906, 1.4267578, -0.57128906, -0.29663086, 1.4492188, -3.0683594, 0.095214844, 0.42700195, 0.43310547, -0.061401367, -0.85546875, 0.58984375, -0.099487305, -1.3642578, 3.0957031, -2.6894531, 1.3466797, 3.234375, -0.27612305, 0.56884766, -0.79541016, -1.8056641, 0.73046875, 2.859375, -1.4091797, 1.2216797, 0.77978516, -2.0703125, -0.67871094, -2.8242188, 0.95703125, -1.8056641, -0.0027751923, -1.8466797, 0.055267334, -0.22167969, -0.59228516, -2.859375, 0.09112549, 1.0292969, -1.7460938, 0.24536133, -1.3535156, -1.5175781, -0.6196289, 0.33276367, -1.0058594, 2.1894531, 0.8540039, 2.6582031, -0.36572266, -2.8203125, -0.17834473, -0.037841797, 0.85009766, 1.4716797, -0.13098145, -0.89160156, -1.0742188, 0.58935547, 0.36132812, -1.1083984, 1.5009766, -2.9628906, 0.45092773, -3.6757812, 1.4882812, -1.0771484, 0.7583008, -0.5004883, -0.6821289, -1.0087891, -0.55908203, 1.6152344, -1.7646484, 3.8710938, 0.44702148, 1.3222656, -1.0703125, -1.6357422, -0.7841797, -0.67089844, -3.046875, 0.096069336, 0.08068848, -1.8330078, -1.6621094, -2.2324219, -0.47314453, -2.0761719, -0.5205078, 0.22790527, 0.5644531, -2.328125, -0.20129395, -1.0751953, 0.7895508, -0.58984375, -0.8574219, -0.7763672, 0.16357422, -0.7368164, -0.9892578, -1.3779297, -0.7729492, 0.75927734, 2.0273438, -1.0517578, 0.01322937, 0.8798828, -0.06518555, 0.6948242, 0.3876953, -3.9824219, 0.3864746, 1.9482422, 0.34179688, 1.3583984, -1.9648438, -1.0458984, -1.6083984, 0.4326172, 3.7382812, 0.025787354, -0.34521484, -0.8901367, -1.6542969, 0.8051758, 0.06112671, -0.5805664, 0.3798828, -0.43066406, 3.8671875, -3.6328125, -0.6425781, 0.5673828, 3.8769531, -5.1992188, -0.5551758, 0.97753906, 0.09075928, 2.2871094, 0.10614014, 0.43920898, 1.5175781, 0.20739746, -0.022888184, 0.93359375, 1.2675781, 0.13952637, -0.3630371, 0.52490234, 1.6835938, 0.94628906, 1.2626953, 0.78222656, 0.6660156, 1.2626953, 0.8935547, -1.4560547, 0.46191406, -0.29101562, -0.14953613, -0.38745117, 0.7246094, -0.62402344, -0.32055664, -0.7314453, 0.73535156, 1.3554688, -1.1630859, -0.3696289, 1.4453125, 0.64697266, -0.61035156, -0.28125, 0.29248047, -0.34643555, -0.39892578, 0.9995117, -0.6748047, 0.1463623, 1.2783203, -1.6777344, -0.082092285, -1.1689453, 2.828125, -0.61621094, -1.0517578, -0.28320312, 1.7255859, 0.027893066, -1.8291016, 0.37451172, -3.2636719, -1.5585938, 4.1523438, 0.84228516, -1.3095703, -1.8544922, -0.6459961, 1.7871094, 2.46875, 0.014137268, -0.73339844, 0.025131226, 0.95410156, -0.33862305, 0.7885742, 1.1630859, 1.2509766, -2.5253906, 1.5429688, -1.2871094, 0.61083984, 2.1269531, -2.46875, 0.7182617, 3.5117188, 0.17773438, 1.140625, -0.55078125, 3.2421875, -2.1445312, 0.122924805, 5.0585938, -1.0585938, -1.2421875, -2.640625, -2.9980469, 1.3105469, -4.0664062, -0.66259766, 1.7949219, 0.49316406, -1.0537109, -0.10412598, -0.35107422, -3.609375, -3.6230469, -2.9003906, 1.7714844, -3.25, -1.5244141, -1.0371094, 0.83496094, -3.3769531, -0.29174805, -0.061035156, 1.4482422, 1.015625, -0.8442383, -1.5390625, 1.3740234, -2.1230469, 0.46166992, 0.92822266, 0.7089844, -0.33618164, -0.4741211, 0.14001465, -1.0273438, 0.93603516, -0.06451416, -1.5957031, 2.4707031, 3.4453125, 0.6699219, -1.3105469, 0.9472656, 0.39038086, 3.0488281, -0.35913086, -1.3867188, -3.6816406, -0.6147461, 0.6557617, -0.050231934, -0.67089844, 0.067993164, -2.1757812, 1.9091797, 0.42260742, 1.4931641, 0.6254883, -0.109375, -1.1904297, 1.1484375, -0.09777832, -2.0683594, -1.7890625, -0.90527344, 0.5698242, -1.7148438, -0.43066406, -1.2089844, -0.26513672, -0.30810547, 0.48388672, 0.17675781, 1.4365234, 1.5791016, 2.1289062, 3.8496094, -0.048187256, -1.0927734, 1.2402344, -1.2880859, 0.5097656, 0.9223633, -1.3876953, -0.31884766, 1.7607422, -0.5683594, -1.03125, -1.4365234, 0.53222656, -0.9404297, -0.9863281, -0.60253906, -1.4541016, -1.8222656, -0.85009766, -0.39379883, -1.1337891, 1.8320312, -1.6865234, 0.6801758, 0.80029297, 0.5390625, -1.0908203, 0.23742676, -1.0039062, 1.6005859, 0.31079102, 2.234375, 1.9394531, 0.2836914, 3.2285156, 0.5629883, 2.8339844, -2.2753906, 0.27294922, -0.45776367, -0.68896484, -1.3994141, -1.1972656, 1.3730469, 1.1611328, -0.39111328, 1.7226562, 1.0703125, -0.5727539, 1.5615234, 0.7285156, -2.0683594, -0.7402344, -1.3017578, -0.18835449, 1.4277344, 0.45263672, -2.7539062, -0.58203125, 1.9521484, 0.07891846, 2.0742188, 0.9628906, -1.5898438, -0.8408203, -1.5830078, -1.4960938, 0.10925293, -0.6015625, 0.15258789, -1.2646484, -0.7441406, -1.1152344, 1.0712891, 1.8007812, -0.0059432983, -1.8925781, 1.5742188, -0.008270264, -0.16503906, -0.31567383, 1.2470703, 0.15722656, 0.4411621, 0.33251953, 1.1083984, 1.9248047, -0.63964844, 1.6054688, -1.5322266, -0.7368164, -1.6943359, 3.015625, -1.9648438, -1.3330078, 0.7495117, 1.5683594, 0.37036133, -1.4160156, -0.8154297, -1.8417969, 2.7636719, -0.11444092, 2.0234375, -1.0703125, -1.1894531, -1.9189453, -3.328125, -1.7080078, -0.82470703, -1.6542969, 0.5258789, -0.19396973, -0.47143555, 0.88378906, -0.14794922, -0.12792969, 0.02394104, -0.54589844, -1.1962891, 0.62060547, -1.9882812, 1.0283203, 0.84716797, 1.5839844, 0.5888672, -0.19714355, -0.49902344, -0.6743164, -0.52490234, 2.15625, -1.890625, 1.1435547, 1.3828125, 0.51220703, 1.9882812, 2.8554688, 0.8442383, -0.111083984, 0.82958984, -1.0957031, -0.5, 1.3691406, -2.1035156, 1.3789062, 1.921875, -1.2460938, 1.2929688, -0.8588867, 0.06866455, -0.90478516, 0.6269531, -0.24658203, 0.16772461, -1.2080078, 0.14807129, 0.7104492, 0.117370605, 0.25878906, 2.0449219, 0.14428711, -0.6791992, -0.92822266, -2.4921875, -0.3017578, -3.5039062, -0.6069336, -0.57666016, 1.4179688, 1.6347656, 0.08215332, 2.8261719, 1.5107422, 0.6928711, -1.1914062, 1.0722656, -1.5185547, 3.1894531, 1.8017578, -1.9697266, -2.0703125, -2.90625, 0.7871094, 2.46875, 0.001745224, -1.2929688, -0.72509766, -2.0742188, 0.81689453, -0.42138672, 2.1542969, 2.6542969, 1.6347656, -0.9995117, 0.2836914, 1.3447266, 0.020645142, 2.9628906, 0.53515625, 1.7216797, -0.67285156, 1.8271484, 2.6660156, -0.6923828, 1.5175781, -0.8154297, -0.046081543, -2.3710938, -1.1201172, 1.4619141, -2.7636719, -0.76708984, -0.6635742, 0.6401367, -2.7109375, 1.7324219, 1.8837891, -1.1484375, -0.88378906, -0.022369385, -0.67871094, 1.8085938, 0.9370117, 1.5019531, 0.11846924, -1.0244141, -0.36401367, 0.59521484, 1.0517578, -1.6357422, 0.6171875, 0.9135742, -0.34350586, -0.7607422, 3.5996094, 1.6542969, 2.6992188, 1.8154297, 2.4453125, 2.3496094, -1.1132812, 1.8583984, -0.54589844, 1.4931641, 1.1533203, -1.7480469, -1.3945312, 0.9980469, 2.8613281, 1.0527344, 0.9277344, 1.1660156, -0.07696533, -1.6855469, -0.9111328, -0.2836914, 0.8388672, -4.0664062, 2.5175781, -1.5205078, 0.36523438, -2.7851562, 2.0253906, -1.1630859, -0.109191895, -0.875, -0.7236328, 0.5292969, -0.6533203, -0.9379883, -0.5996094, -0.86621094, -0.6513672, -2.0996094, 0.39746094, 0.3334961, -2.5664062, -1.0517578, 3.5703125, 1.1328125, 1.1376953, 0.04663086, 2.1894531, -0.47509766, 2.5664062, 0.7026367, -0.64404297, 0.033813477, 0.03918457, 1.7519531, 0.9140625, -2.8574219, -0.44799805, -0.07055664, -3.2753906, -4.2929688, 1.6865234, 1.9853516, 1.8564453, 1.2929688, -1.9384766, 0.96240234, -1.3623047, 1.9648438, -4.421875, 0.5761719, 1.3632812, -2.4863281, -2.1015625, -0.30078125, 1.2529297, 2.3242188, 1.578125, -0.14294434, 2.6386719, 0.8208008, 2.0332031, 1.1796875, 1.2177734, -1.3574219, 2.1210938, -2.1269531, 2.2929688, 1.9677734, -0.7602539, -1.9345703, 3.0742188, 0.05795288, 0.6533203, 0.51904297, -1.9609375, 0.73583984, -0.06378174, -1.9121094, -0.37573242, -1.5556641, -3.0136719, -2.0253906, -0.65625, -0.8051758, -0.9213867, 0.7109375, 2.9082031, -0.74853516, -0.3461914, 1.8691406, -0.89160156, 2.0039062, -0.91015625, -1.5126953, -1.4091797, -0.2364502, 1.7519531, -0.11907959, -2.6210938, -0.43652344, 2.0859375, 1.1005859, -0.9111328, -0.034851074, -0.64404297, 1.5644531, 0.53759766, 2.4824219, 0.25585938, -1.6064453, 1.3232422, -0.033996582, -0.22888184, 3.4277344, -0.7416992, -0.024246216, 0.62109375, -2.2578125, -0.6879883, -0.41210938, -0.87646484, 1.2949219, 5.2421875, 1.9658203, -0.54003906, -2.0585938, -4.765625, -2.3222656, -1.5380859, 2.0605469, 0.38745117, 0.65625, 0.5234375, 0.29907227, 2.4492188, -0.77246094, 0.099487305, 0.31298828, -0.30273438, 0.8442383, -0.64160156, 1.8085938, 2.1992188, 2.234375, 0.39282227, 2.3339844, 2.7578125, 0.05355835, 0.5498047, 0.96533203, -0.35327148, -2.7890625, -0.8408203, -1.0625, -0.45239258, 1.2695312, 0.25610352, 0.80029297, -1.3681641, -2.1269531, -4.4023438, -1.3105469]}, "B07GQZ1LGP": {"id": "B07GQZ1LGP", "original": "Brand: Jiesuo\nName: JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers\nDescription: ''JIESUO'' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

DIMENSIONS
This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

HEAVY DUTY MATERIAL
This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

WATERPROOF
The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

UV RESISTANT
UV and fade-resistant fabric material prevents damage from the sunlight.

WIND-RESISTANT
Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

GOOD STITCHING, EFFECTIVE PROTECTION
Superior textile process, 'Precision Two-Thread Stitching' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

SPECIFICATION
Material: 100% 600D polyester fabrics
Product Dimensions: 60\" L x 24\" D x 44\" H
Package Included:
1* JIESUO 60 In Gas Grill Cover
1* Storage Bag

JIESUO grill cover design concept is to solve past pain points, improve user experience.
You get what you pay off.
At last thank you for your purchase.\nFeatures: DIMENSIONS - This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.)\nUPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills.\nGOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, 'Precision Two-Thread Stitching' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it's sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it.\nConvenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain.\nEasy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.\n", "embedding": [-0.12719727, 2.8828125, 4.2773438, -1.71875, -0.43066406, 0.6015625, 1.0966797, -2.7226562, 1.4873047, 1.7509766, -0.55078125, -2.109375, 1.8037109, -5.2460938, 1.3076172, 1.2138672, 0.67626953, 2.3925781, 1.2734375, -0.17297363, 1.1855469, 0.10638428, 0.4633789, 0.66308594, 1.3193359, -0.5336914, 4.6992188, -4.34375, -1.1015625, -0.87890625, 1.9658203, 0.92626953, 1.1982422, 1.8564453, -2.3144531, -2.4140625, -1.3242188, 1.2460938, 0.09106445, -0.1862793, -0.82666016, -2.7851562, 1.9326172, 0.65478516, -1.0488281, 1.8173828, -2.6289062, -0.2668457, -1.5205078, -2.3320312, 2.2851562, 2.3574219, 2.28125, 1.3974609, -0.93359375, 1.5761719, -0.92333984, -0.9604492, 0.46044922, -0.26757812, 0.49145508, -0.30029297, -0.63964844, 1.8789062, -0.11126709, -2.3925781, 0.5620117, -0.45263672, 1.0205078, 0.50683594, 2.4667969, -1.2001953, -2.0585938, 1.0244141, 1.1669922, -0.96875, -2.1816406, 1.5507812, 1.4560547, -1.0058594, -0.6245117, 4.6757812, 1.3916016, -2.6191406, -0.064086914, 0.5463867, -1.40625, -1.6113281, 1.9277344, -0.12817383, -0.7944336, 1.0957031, -1.2695312, -4.3515625, 0.91503906, -2.2578125, 2.625, -0.0042800903, 0.7988281, 1.0585938, -2.1328125, 0.74316406, -1.7880859, 0.4741211, -3.9648438, -3.1035156, 2.109375, -1.3876953, -0.25732422, -0.26000977, -0.7519531, 0.39575195, -0.6074219, 0.19958496, 2.7675781, 1.1367188, -0.7866211, 2.0175781, 0.060333252, 0.6767578, 3.0683594, 0.20361328, -0.9760742, -2.2050781, 0.024673462, -0.87109375, -0.8564453, 0.35961914, 3.9726562, -2.3398438, 1.3017578, 0.29101562, 0.9785156, 0.8256836, -0.1204834, -0.88671875, -1.5742188, -0.37426758, -2.8085938, 1.7509766, -3.1894531, -0.8276367, 1.7470703, -2.1738281, -1.6962891, 2.0585938, -2.03125, 2.7539062, -0.62890625, -2.1230469, 1.7958984, -0.7338867, -0.47436523, -1.5107422, 1.3476562, -0.13659668, 0.34887695, -1.4833984, 3.1132812, 2.1054688, 2.0507812, -1.4052734, 2.0214844, -0.06817627, 2.4199219, -1.5683594, 0.29516602, 0.7573242, -0.7548828, 2.1640625, -0.52246094, -1.8232422, 0.69189453, 0.7817383, 2.40625, -1.8105469, -0.16357422, 1.9169922, -0.4482422, 1.5517578, -0.48657227, -0.96777344, 0.6308594, 0.58691406, -0.984375, -0.63378906, 0.06951904, -0.4111328, 2.2246094, -0.7416992, -0.08026123, -0.6958008, -0.23168945, -0.5131836, -0.55029297, -0.82373047, -1.3955078, -0.6425781, -1.1464844, -0.8520508, -2.1738281, -2.5214844, -0.45751953, 0.3515625, -2.5820312, -2.7773438, -2.7480469, 0.037506104, 0.68896484, 0.59375, 0.57958984, -1.7578125, 1.7695312, 1.7119141, -0.8774414, 0.7167969, 2.5683594, 0.29833984, 1.0205078, 1.3632812, -2.3945312, -0.4345703, 0.5698242, 3.8046875, -0.17858887, 1.890625, 1.8466797, -0.62158203, -2.5449219, -1.453125, 0.96972656, -0.25585938, -0.3149414, -0.19824219, -1.1591797, 1.4179688, 0.9560547, -1.7568359, -0.609375, -0.4699707, -0.87109375, -2.4453125, -4.1992188, -1.2861328, 0.20397949, 1.4101562, -0.4230957, 3.1386719, -0.33520508, -0.7475586, 0.6767578, 0.92089844, 0.5629883, -0.40527344, 0.08850098, 0.26049805, 0.78222656, 0.29077148, -0.78466797, -0.45092773, 0.020523071, -0.11456299, 0.14001465, 1.0527344, -1.2392578, -1.0761719, 0.08898926, 1.6474609, -2.0292969, -3.4335938, 2.1621094, -0.43652344, -0.0793457, -1.9707031, 2.3261719, 0.47998047, -0.11651611, 0.14074707, 1.5849609, 0.5395508, -1.3037109, 0.11627197, 0.8857422, -1.4648438, 1.2392578, -0.6513672, -0.21118164, -1.5634766, -0.91015625, -0.2746582, 4.296875, -0.15393066, -1.1806641, 3.7949219, -1.1855469, -0.99316406, 1.4570312, -0.1665039, -1.0068359, 1.3535156, 0.1315918, 0.8076172, 0.06677246, 0.64160156, -0.20837402, -0.113586426, 0.6459961, -2.7519531, -0.9355469, 3.1542969, 0.040863037, 0.3046875, 0.04397583, 0.7211914, -2.3945312, -1.1708984, 1.1289062, -3.4238281, 0.34399414, -0.6669922, 1.0273438, 1.4736328, -2.9160156, -2.7929688, -1.5361328, -0.3461914, -1.1708984, -0.32885742, 0.4489746, -1.8261719, -1.1132812, -1.5136719, 0.4814453, -2.1875, -0.6401367, -3.5429688, -2.2714844, -2.1933594, -0.057647705, -0.92333984, 0.34521484, -1.1542969, -3.1640625, 0.99072266, 0.96435547, -3.5078125, -0.43188477, 0.14697266, -1.5039062, 1.0009766, -0.39672852, 0.5107422, 0.068603516, -5.1757812, 1.7568359, -2.2753906, -0.0017623901, -0.3696289, -0.6689453, 0.84814453, 0.41625977, 0.27001953, 0.9790039, 1.0097656, 1.2753906, 0.109191895, 0.05090332, -2.9160156, -0.25170898, -2.1210938, 1.7441406, -0.20422363, -0.2788086, -4.2382812, -1.8173828, 0.7944336, -2.0683594, 3.7753906, 1.3476562, 0.7729492, -1.1767578, -1.4121094, 0.29663086, -0.63427734, -1.2509766, 0.021774292, 0.99853516, -1.5644531, 0.43823242, -3.2324219, -3.3769531, -2.5703125, 0.41503906, 0.91259766, -1.8505859, -0.38134766, 1.9716797, -3.484375, -1.78125, -1.3027344, 0.89208984, -0.5239258, -1.6191406, -1.2109375, -3.3085938, -2.0117188, -0.0099105835, -2.0800781, 1.6933594, -1.7080078, -0.38452148, 2.5078125, -0.16149902, 3.7714844, -0.29956055, -3.0859375, 1.6835938, 1.6025391, -0.46118164, 2.3320312, -0.99658203, -1.2470703, -0.5834961, 0.097473145, 2.6992188, -0.11834717, 0.87060547, 2.6308594, 0.8613281, 0.028137207, -0.99658203, 1.3007812, -0.73339844, 1.6445312, 2.5488281, -0.6123047, 0.16955566, 1.4433594, 0.17492676, -2.0859375, -0.8183594, 2.5859375, 1.7988281, -0.95703125, 0.5576172, 0.6245117, 1.7119141, -1.2978516, 1.8261719, -0.703125, 2.4140625, 0.4206543, -0.42333984, 1.359375, -2.2558594, 3.140625, 2.4765625, 1.1308594, 1.1181641, 1.9384766, 0.7783203, 0.031173706, -0.45996094, 1.2070312, 0.74121094, -1.5068359, 1.65625, -1.6689453, -0.78759766, 1.3505859, -3.3378906, 1.8320312, -1.3222656, -1.4560547, 2.078125, -2.1992188, 0.075805664, -1.0869141, -0.42529297, -0.23278809, -2.1171875, -0.14172363, -3.0683594, -1.1015625, 1.0673828, -4.3164062, -1.6269531, -1.9863281, 1.4560547, 0.79003906, -2.2539062, 0.36010742, 1.640625, -1.9023438, -1.6806641, 0.7739258, 1.2314453, -1.4707031, 2.8847656, 2.2441406, -1.9482422, 2.6542969, -2.8242188, 1.9599609, 0.65771484, -0.6567383, -1.1630859, -0.3630371, -1.0537109, 0.35058594, 2.3417969, 1.4306641, 1.8466797, -0.2685547, 1.0585938, -3.0449219, -0.4074707, 2.3828125, -1.5976562, -0.875, 1.6132812, 0.7714844, 0.953125, 1.3242188, 2.2519531, 0.28857422, -1.546875, 2.6171875, -3.1015625, 0.5317383, 0.47021484, -3.6796875, -0.47387695, -0.54589844, -0.56689453, 2.1210938, -0.3137207, 0.8720703, 2.1992188, 0.79003906, 0.3947754, -0.8769531, -2.0332031, -1.8105469, -0.54589844, -0.40600586, 1.8720703, -1.1445312, -1.7060547, -2.1542969, -1.8701172, -2.2265625, -0.109558105, 1.5546875, -2.1269531, 1.1748047, -2.1796875, -0.9609375, -2.9726562, -0.37963867, 0.96191406, 0.4724121, 0.2932129, -0.60058594, 1.5048828, 0.25024414, 1.0703125, -0.024124146, 1.2539062, -1.0625, -0.8535156, 0.95410156, 0.9316406, 3.3261719, -0.7475586, -3.1308594, 0.22338867, 1.8154297, 2.203125, -0.38452148, -1.4199219, -0.61816406, 0.3479004, 1.0996094, 0.13549805, 2.9882812, 1.1054688, 0.25854492, -1.5859375, 0.8803711, -2.2246094, -0.2800293, -1.6113281, -0.4663086, 0.6147461, 1.2490234, -1.7070312, -2.4472656, 2.7519531, 0.30859375, 0.32910156, -0.95458984, 3.3554688, 2.4707031, 2.2089844, 2.828125, -3.0136719, 1.6494141, 0.2783203, -0.8808594, -0.5625, 1.2099609, -0.4621582, 1.1923828, 2.4921875, 0.75390625, -1.6064453, -1.2792969, -0.8305664, -0.27026367, 0.73046875, -2.0605469, 1.7431641, 0.7763672, 0.97509766, 1.4042969, -1.3037109, 3.0195312, -0.82666016, -1.0195312, 1.6083984, -1.5986328, -0.74316406, 1.6982422, 2.5117188, -0.6069336, 0.8701172, 1.2890625, 0.30273438, 0.8183594, -1.0048828, -0.48608398, 0.43286133, -1.171875, 0.0028305054, 1.3232422, 0.6542969, -2.0644531, -0.3791504, 3.1367188, 3.0957031, -0.038757324, 1.3457031, 1.7373047, -0.7636719, 2.6269531, 2.7929688, -1.3583984, 1.3535156, -1.2119141, -0.46533203, 2.1933594, -0.0345459, -1.8876953, 0.032318115, 1.1123047, -0.7739258, 2.0605469, -3.140625, -0.7109375, 2.9589844, -2.1464844, 0.22070312, -0.7626953, -0.090026855, 0.16577148, 0.41479492, 2.1621094, -1.6474609, 0.98876953, 2.7734375, -0.6821289, -2.9550781, 1.7753906, -1.4101562, 0.8564453, -1.6884766, -0.9941406, -2.5605469, -0.078552246, 4.0390625, 2.4375, 1.2255859, -0.76171875, 1.7548828, -1.4492188, 0.30322266, -0.6142578, 1.8603516, -2.5410156, -0.076049805, 2.1582031, -1.7783203, -1.4150391, -1.5742188, 0.10235596, 1.1103516, -0.004463196, 0.2722168, 0.546875, 0.32983398, -1.0341797, -2.9375, -1.5712891, -0.3256836, 0.74072266, -1.4755859, 0.65625, -0.01612854, 0.64208984, 0.6220703, -0.32617188, 0.37353516, -0.92529297, -0.16345215, -1.7695312, -1.8496094, -1.0888672, -1.6162109, -1.0957031, 0.99609375, 0.42382812, 1.9306641, -0.39916992, -3.7167969, -0.484375, -0.25170898, -2.6953125, -0.5419922, 1.828125, 0.5854492, 1.4785156, 0.8647461, -0.9350586, -0.31445312, 2.4335938, -0.82714844, -0.6801758, 1.015625, -0.98828125, 1.9570312, -0.75341797, -0.16015625, 0.8647461, -2.5683594, 0.94140625, 1.7119141, -0.9658203, 2.6914062, 2.2851562, 0.20507812, -1.6064453, 0.6894531, 0.5883789, 1.7509766, 0.25048828, -1.453125, 0.6821289, -1.5488281, -3.25, 1.4648438, -1.8398438, -2.0136719, -1.6503906, 0.20178223, 2.3359375, 1.6171875, 0.47387695, 2.1582031, 1.8300781, -2.6347656, 0.5415039, 0.9482422, 3.7792969, 1.4472656, -1.4541016, 0.18481445, -2.3222656, 1.2832031, 2.609375, -0.23828125, -1.2285156, 0.98876953, -1.6767578, -0.47705078, 0.39990234, 1.4257812, 0.765625, 0.1809082, 0.043945312, 2.3222656, 2.6308594, -0.22424316, 0.5307617, 0.21740723, 0.73291016, -1.375, 3.2402344, 0.95214844, -2.7695312, -0.1270752, -1.5859375, 1.2324219, 1.5527344, -2.1367188, -0.9472656, -1.7089844, -1.3876953, -1.7431641, -1.46875, -3.2792969, 0.6201172, 0.21936035, -1.3867188, -1.5712891, 1.4785156, 0.4873047, 3.1308594, 2.0390625, 1.2294922, -2.2148438, -0.51953125, -0.9819336, -0.5883789, 0.62841797, -2.3417969, -0.10247803, 0.046203613, -0.5229492, -1.3662109, 0.4675293, -0.25952148, 1.3886719, 0.8564453, 2.4355469, 2.3105469, 2.5859375, 1.2138672, 1.0986328, 2.3476562, 0.890625, -1.6787109, -0.045654297, 2.0175781, 0.9370117, 3.9589844, -0.7133789, 0.16931152, 1.0849609, -0.08111572, 0.17541504, -0.6855469, 3.6230469, -2.7480469, -1.2070312, 1.3203125, 1.4648438, -0.30371094, 1.2783203, -0.90625, -1.3652344, -0.3408203, 0.6425781, 2.9414062, -0.4116211, 2.5976562, -0.074157715, 1.3740234, 1.6816406, -4.4023438, 2.1074219, 1.1777344, -1.8183594, -3.1816406, 1.2021484, 2.8925781, 2.3554688, -0.34326172, 1.7324219, 1.7167969, 1.5410156, 1.1875, -2.0761719, 0.057037354, -0.3371582, 2.7382812, 0.93066406, -0.91503906, -1.5693359, -1.0283203, -3.2480469, -2.0527344, 3.2421875, 0.67285156, 2.4140625, 2.3867188, -2.1425781, 2.0859375, 0.7729492, 1.4804688, -0.53271484, -0.31323242, -2.09375, -2.5058594, -0.13781738, 1.4169922, -1.3359375, 1.9892578, 1.2060547, 0.3725586, 2.7011719, 1.7050781, 0.045776367, -0.13842773, 0.9033203, 1.3076172, 1.5664062, 1.3164062, 1.6259766, 1.1708984, -1.3740234, 0.67871094, 1.0400391, -0.10058594, 1.2910156, 2.8476562, -0.3828125, 1.2001953, 1.8017578, -0.34375, 2.5507812, -1.6943359, -0.2998047, -0.120788574, 0.056854248, -1.5205078, -1.8535156, 1.0917969, 1.7382812, 0.28710938, 1.2900391, 1.6552734, -1.2568359, 2.1308594, 1.5087891, -0.64941406, -0.16784668, 0.054992676, -0.36450195, -0.8510742, -0.65185547, -0.7915039, -0.3005371, -1.3261719, -1.1455078, -0.40185547, -0.17053223, -1.0292969, -0.078430176, 1.8554688, -1.6308594, -0.90625, 0.37182617, 0.4321289, -1.1582031, 2.109375, 0.5678711, -0.81103516, -1.1943359, -3.1015625, 0.17712402, -1.5205078, -3.6679688, 1.2900391, 3.3027344, 1.5966797, -1.1132812, -1.6220703, -3.296875, -0.6855469, -1.1835938, 1.2539062, -1.1269531, -0.8432617, -1.7646484, 0.22180176, 2.9023438, 0.8330078, 0.7729492, -0.36376953, -0.52783203, 1.5869141, -0.27539062, -0.44360352, -0.8339844, 0.064086914, 1.6240234, 1.9462891, 3.2167969, 0.5551758, 0.98095703, 2.8378906, 0.40454102, -2.984375, 0.63916016, 0.93066406, 1.1132812, 0.42211914, 0.74560547, 0.77246094, -1.4208984, -0.6279297, -0.6425781, -1.4101562]}, "B07433QCTC": {"id": "B07433QCTC", "original": "Brand: SHINESTAR\nName: SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure\nDescription: Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8\" Male Flare Connector)

1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

Q: How do you know if you need a parallel or vertical low pressure regulator hose?
A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

Attention:
1.For Outdoor Use Only.
2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
4.Keeping the hose away from HIGH TEMPERATURE.

Product Specification:
Certificate : CSA
Outlet Pressure:11\u2019\u2019W.C.
Flow Capacity: 80000 BTU/Hr
Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
Please double check your appliance connection to see if it has a 3/8\u2019\u2019 Male Flare Fitting Connector.\nFeatures: \u3010Standard Connector\u3011 Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Durable & Sturdy\u3011 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank\n\u3010Control Gas Flow\u3011 The gas grill regulator and hose's Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n\u3010Perfect Length\u3011 Gives you plenty of length, allowing for flexible configurations\n", "embedding": [-1.3574219, 1.5390625, 1.4414062, 1.1757812, -0.9716797, 0.077697754, 2.0878906, -2.0019531, 2.7324219, -0.5761719, -0.11047363, 0.67871094, 1.4853516, -4.2695312, 2.4316406, 0.98876953, 1.1386719, 1.0488281, 1.5625, 1.4667969, 1.1201172, 0.7338867, 2.1328125, -0.2980957, 2, -1.5273438, 2.6015625, -2.3046875, 0.14526367, -1.7636719, 0.2052002, 0.86572266, -0.86621094, 1.1972656, -3.0253906, -1.4628906, -1.0458984, -0.22265625, -3.2734375, -1.0654297, -1.9306641, 0.7636719, 1.9736328, 0.17736816, -1.9609375, 1.8623047, 1.2539062, -0.3083496, -0.009475708, -0.24731445, 0.60498047, -0.040740967, 0.41381836, 1.2900391, -0.8515625, 0.8183594, -1.6113281, -4.6210938, 0.5756836, 0.8886719, 1.3144531, -1.0439453, -3, 2.1445312, -0.51708984, 1.421875, 0.89941406, 0.18603516, 0.40795898, 1.5322266, 1.0302734, -0.46777344, -0.7963867, -0.92333984, 0.41967773, 1.0107422, -2.625, -0.3515625, 1.8105469, -0.0004348755, -1.0068359, 2.9902344, 1.6689453, -1.1533203, 1.6328125, 0.37304688, -2.6308594, 1.4931641, 1.4316406, 2.1933594, -1.3134766, 3.8125, -3.1074219, -3.2714844, 1.6240234, 0.09802246, 0.83447266, 1.4101562, 0.98828125, -0.10290527, -1.2353516, -1.4931641, -1.2548828, 0.94628906, -1.4208984, 0.5917969, 0.7807617, 1.6953125, -2.6386719, -0.64697266, 0.37695312, 0.19384766, 1.7177734, -1.2763672, 0.0284729, -2.0957031, 0.8901367, 0.28686523, 3.2597656, -0.49731445, 2.9667969, 1.6328125, -0.27197266, 0.07873535, 0.49560547, 0.5024414, -0.1784668, -0.5957031, 2.0527344, -1.6445312, -1.0048828, -3.25, 1.6308594, -0.171875, 0.43530273, -2.8261719, -1.8085938, -1.3564453, -3.3125, 0.0758667, -4.0039062, -1.1210938, 1.8740234, 0.64404297, -3.6171875, 0.13195801, -2.8808594, 1.0859375, 2.2226562, -2.5136719, 1.2324219, -0.62646484, -0.6201172, -2.328125, 1.7929688, 1.4658203, 1.5761719, -2.015625, 4.1484375, 0.88183594, 1.9892578, -0.7675781, -2.9257812, 1.9169922, 0.75634766, -3.6445312, 0.12976074, 0.8520508, -0.8569336, 0.36083984, -0.2467041, -4.203125, -0.53515625, 0.3959961, 0.16271973, -0.86816406, 1.1542969, 1.1865234, 2.1328125, 0.8334961, -3.5, -1.7246094, 2.1054688, -1.8740234, -0.5161133, -0.6489258, -1.2744141, -1.6503906, 0.59521484, -0.38842773, -1.8125, -0.60009766, -1.0712891, -0.004173279, -0.9838867, -2.8320312, -2.5625, -1.7451172, 0.6044922, 0.75097656, -2.3378906, -0.35668945, -0.49438477, 1.0791016, -2.5214844, -0.2548828, 0.8305664, 0.9135742, 0.58154297, 3.1875, -0.05392456, -0.15856934, 0.9272461, -1.3466797, 0.5830078, -1.2314453, 2.578125, 2.3847656, 1.1240234, 1.8691406, -0.11151123, 1.8876953, -0.6977539, 0.83154297, 2.3730469, 0.9589844, -0.32910156, 1.0917969, -1.421875, -2.515625, 2.9902344, 1.4316406, -0.36767578, 0.11248779, -0.37548828, 3.3730469, 1.1582031, 0.92041016, 0.91796875, 1.9658203, 0.88671875, -0.94091797, -2.1015625, -0.6352539, -1.4072266, -0.6616211, -0.09094238, 0.15600586, 2.5683594, 0.07110596, 1.1533203, 0.058166504, -1.0009766, -0.27954102, -0.4501953, -1.4384766, 0.97753906, 2.7011719, -0.69873047, -2.0625, 1.9501953, 0.95410156, 0.86035156, 2.1953125, 0.15576172, -0.6411133, 2.28125, -1.0126953, -1.8388672, 1.1269531, -0.8798828, 2.0800781, 1.5087891, -1.1171875, 0.5205078, 1.25, -1.2128906, 2.125, 0.46704102, -0.39013672, 2.1660156, 0.9213867, 1.6054688, -2.2734375, 0.70214844, 1.7734375, 2.2402344, -0.5673828, -0.8227539, 1.4365234, 3.265625, -0.06427002, -1.8632812, 0.79589844, 1.8222656, 1.0185547, 1.9882812, 1.7167969, 0.95996094, -1.3847656, 0.9921875, 1.2275391, -1.6308594, 1.2353516, 1.6699219, -0.5175781, 0.79345703, -1.0439453, 0.7441406, 0.3203125, -1.3203125, -1.4199219, -1.8144531, 2.375, -1.5361328, -3.1835938, 2.0683594, -1.6015625, 0.14172363, 2.1503906, -0.6010742, -0.33129883, 0.58251953, -0.9848633, -0.31713867, 1.7070312, -2.0546875, 2.0507812, 1.4375, -0.33813477, -0.4074707, -1.2001953, 0.76464844, -2.9492188, -2.8378906, -0.44677734, -1.6181641, -1.5371094, 1.4384766, -2.5410156, -2.6621094, 0.40429688, 0.031585693, 2.8476562, 0.19384766, -0.32104492, -0.20935059, 1.7744141, 1.2851562, 0.060058594, -0.03439331, 2.390625, -0.09613037, -1.2402344, 0.4873047, -0.41235352, 0.2602539, 1.3955078, -1.4277344, 0.8442383, 1.4042969, 0.4399414, 0.3864746, 0.27270508, 1.0498047, -2.7265625, -0.6245117, -3.8203125, 0.14111328, -0.8432617, 2.4179688, -1.5605469, 0.9946289, -1.5488281, -2.609375, 1.4306641, -1.6503906, 1.5849609, -0.34887695, 2.0097656, -3.0195312, 0.074035645, 1.5400391, 0.14941406, -2.4316406, -0.58935547, 0.31225586, -1.5439453, -1.6591797, -2.4394531, -0.44799805, -0.38671875, 0.07080078, -0.6669922, -2.0097656, -1.484375, 0.7597656, -0.11590576, -1.8828125, -0.53515625, 1.4208984, 0.9121094, -1.5341797, -1.3535156, -0.47094727, -0.8857422, -0.7338867, 0.1239624, 0.625, -1.2324219, -0.6152344, 1.4277344, 1.4589844, 1.8564453, 0.09875488, -3.2675781, 0.7246094, 3.765625, -2.1347656, 1.1660156, -1.4873047, -0.11608887, -2.6523438, -1.3212891, 1.4208984, 1.4443359, 2.4414062, -1.0859375, 0.1953125, 1.5185547, -0.08441162, -1.8789062, -0.026947021, 0.2331543, 4.8828125, -3.0527344, -1.8310547, 0.41748047, 0.7919922, -3.7695312, 0.11541748, 0.7675781, -1.1464844, 2.6132812, 1.6962891, 0.5019531, -0.53222656, 2.0742188, 1.8710938, 1.5703125, 0.53466797, 0.39453125, -0.75146484, 0.27270508, 0.42749023, 1.8007812, 1.9833984, 0.3017578, 1.2216797, 0.39013672, 0.09820557, -0.4699707, 1.2861328, -0.06137085, 1.2851562, -0.11212158, 2.3144531, 0.03488159, -0.45825195, -1.6542969, 0.9165039, 1.7177734, -1.8544922, -1.8505859, 2.1269531, 1.4414062, -1.7470703, -0.38183594, -0.80810547, -1.0205078, -1.3125, -0.4309082, 0.45507812, 1.0136719, 1.1210938, -0.4399414, 0.3996582, -1.5273438, 4.046875, -0.8901367, -1.0791016, -0.9692383, 0.4008789, -1.2861328, -2.1445312, -0.28125, -2.8789062, -1.6308594, 2.5644531, 1.5136719, -1.1630859, 0.89453125, -1.7353516, 1.2246094, 2.2050781, -1.6738281, 0.07684326, 0.13330078, 0.013839722, -0.14160156, 0.105529785, 2.5820312, -0.19494629, -2.3867188, 0.52734375, -1.5673828, 0.05050659, 0.53222656, 1.1142578, -2.9628906, 0.12158203, -0.23034668, 0.7426758, -1.4179688, 4.09375, 0.038879395, -1.3066406, 0.7788086, -2.2050781, -0.5571289, -2.0019531, -5.453125, -0.22607422, -2.8613281, -0.6870117, 1.7998047, 0.453125, 0.09527588, 0.34765625, 1.734375, -2.609375, -0.6713867, -0.09844971, 0.7753906, -2.4492188, -0.36450195, 2.34375, 0.07165527, -2.3242188, -2.7265625, -0.6567383, -2.2734375, -0.26123047, 1.5644531, -2.265625, 0.18774414, -1.9970703, 0.003025055, -0.044891357, -1.8017578, 0.4958496, -0.67871094, -0.6245117, -3.1191406, 2.4199219, 1.6064453, 0.6875, -0.50146484, 2.8964844, 2.1289062, -1.1523438, 1.2949219, 0.8798828, 4.8476562, -0.028366089, -2.7851562, -0.6699219, -1.4882812, 0.19226074, -1.6611328, -0.6904297, 0.8144531, -1.5566406, 1.8935547, -0.83740234, 2.8203125, 1.2070312, -0.7807617, -5.359375, 0.13952637, 1, -2, -0.5625, -0.6640625, -2.3339844, -3.0175781, 0.9003906, -2.0917969, -0.5732422, -2.3515625, 0.6113281, -1.9638672, 1.0214844, -0.1348877, 1.3027344, 0.2175293, -1.6943359, -0.29638672, -0.3623047, -1.2246094, -1.6269531, -0.2548828, -1.6464844, -0.6738281, 1.7626953, 1.0195312, -0.7138672, -0.5078125, 0.16723633, -1.0439453, -0.6899414, -0.37573242, 0.2644043, -0.87109375, -0.98339844, 0.4038086, -0.48388672, 3.5136719, -1.4638672, 0.9199219, 0.92871094, -0.54785156, -1.1669922, 1.8271484, 1.8515625, 2.8886719, 1.1660156, 1.203125, 1.7685547, 2.0800781, 1.7001953, -1.7177734, 0.8125, -1.5166016, 0.19543457, 0.20532227, 0.19519043, -0.8544922, -0.15515137, 0.88964844, 1.3144531, 1.4482422, 2.21875, 0.076049805, -1.6123047, 1.4316406, 0.10333252, -1.2646484, -0.19482422, 0.7910156, -0.42700195, 3.5644531, -0.12683105, -2.0761719, 0.33007812, 3.1054688, -1.6289062, 2.6835938, 0.5991211, -2.6542969, 0.30908203, -2.0332031, -1.9990234, -0.4416504, -2.4902344, 0.8417969, -1.9052734, 1.1025391, -1.7294922, 3.2226562, 1.2890625, -0.55810547, -1.3320312, -0.4807129, -2.0429688, -0.2220459, -0.70654297, -1.3652344, -3.0039062, -0.21191406, 1.328125, 1.0810547, 0.375, -0.60791016, 0.31054688, -1.3955078, -1.5166016, -0.035095215, 2.3457031, -1.34375, 0.043548584, 2.1074219, 0.051696777, 0.52441406, -1.9414062, -1.5009766, -1.3271484, 1.9746094, 0.92626953, 1.9580078, 0.30078125, -1.4326172, -2.4648438, -5.9804688, -0.69140625, 1.703125, -0.8876953, 0.265625, -2.625, -0.5410156, 1.8867188, -0.7729492, 0.064086914, -1.0634766, 1.0712891, -1.9462891, 0.39331055, -1.7548828, 0.51416016, 0.22802734, 0.5776367, -0.51123047, 1.0117188, -0.058044434, -2.65625, -2.2675781, 1.8457031, -1.96875, -0.11907959, 2.4316406, -1.3183594, -0.46704102, 2.0214844, 0.71191406, -1.7773438, 1.4013672, -2.3320312, -0.09802246, 1.9414062, -2.9277344, 1.1259766, 0.6152344, -1.1660156, 1.3300781, 0.15808105, 1.5048828, -0.50634766, -0.5732422, -0.23876953, 0.9194336, -0.32617188, -3.0234375, -0.07751465, -0.62646484, 2.6855469, 2.2050781, -0.9038086, 0.02746582, -2.7011719, -2.9160156, 0.26757812, -1.0205078, -0.25463867, 0.15905762, 2.4316406, 0.28759766, -0.47802734, 0.99072266, 2.4082031, 0.7949219, -2.1230469, 1.953125, -0.5810547, 2.5917969, 0.8964844, -2.0507812, -3.0175781, -1.0410156, 0.76708984, 3.1464844, -1.8632812, -0.45654297, -0.0012044907, 0.4921875, 1.4033203, -1.0097656, 0.78808594, 1.2880859, 1.1591797, -1.1806641, 0.35327148, 1.3271484, -0.43945312, 1.0234375, 0.73291016, 0.73095703, -0.03164673, 0.5625, 2.1464844, -3.1660156, 0.6796875, -0.796875, 0.9785156, -0.9472656, -2.0820312, 1.5283203, -2.7617188, 0.4033203, -0.19506836, -2.7558594, -4.71875, 1.5380859, 1.0917969, 0.28833008, 0.4868164, 3.4414062, 1.0722656, 0.40600586, 0.8666992, -0.57958984, -0.3408203, -0.46411133, -1.7958984, 0.5986328, 3.0488281, -0.5229492, 1.3398438, 1.0800781, 0.8222656, 0.8769531, 0.022857666, 1.3408203, 2.953125, 0.8964844, 2.4414062, 3.4023438, 0.11804199, 3.1015625, 0.2697754, 2.3144531, 1.8261719, -1.8701172, 2.1601562, 1.4990234, 1.2509766, 1.2412109, 0.04019165, -0.15136719, -0.7753906, 0.63427734, -0.57666016, 1.3193359, 2.234375, -1.9560547, -1.2138672, -0.5961914, -2.3613281, -2.9433594, 3.0566406, -1.6992188, 0.8779297, 1.3916016, 1.2255859, -0.25463867, 1.4169922, -0.8979492, -0.3857422, -0.6982422, 2.7636719, -1.0996094, 0.3647461, -1.1318359, -2.46875, 1.3964844, 3.3125, 1.1630859, 1.1611328, 0.94140625, -0.10290527, 0.2919922, 1.4130859, 0.94140625, -0.53027344, -0.72802734, -0.67333984, 2.5566406, 1.4794922, -2.2578125, -0.3466797, 0.9580078, -1.0751953, -4.1445312, 3.2773438, -0.033355713, -0.6801758, -0.51220703, -2.53125, 1.9609375, -1.3271484, 0.17687988, -1.9111328, 0.033447266, 0.37719727, -0.7011719, -0.6328125, -1.3134766, -1.5361328, 1.4443359, 0.7392578, -0.90625, 0.66748047, 1.4130859, 0.81103516, 0.09313965, 1.0849609, -0.30639648, -0.5317383, -1.5888672, 3.8769531, 0.32788086, -2.2285156, 0.55615234, 2.6523438, -0.019622803, 1.1523438, -0.4567871, 0.13891602, 1.140625, 0.43945312, -1.2773438, 0.110961914, -1.6464844, -0.9448242, 0.32373047, 1.5839844, -0.8232422, -1.6513672, -0.014381409, 1.265625, -1.8378906, 2.1601562, 1.6689453, -1.5683594, 1.5888672, 1.9902344, -1.1923828, -0.54003906, 0.34570312, 2.0605469, -1.6269531, 0.028335571, -0.9897461, -0.421875, 0.26635742, -0.7817383, 0.018157959, 0.09185791, -1.7480469, -1.5849609, 1.3320312, 0.7783203, -0.47094727, 0.042022705, -1.1132812, 0.19274902, 2.5351562, 1.5175781, 1.8134766, -0.6972656, -1.1953125, 0.07977295, -2.5390625, -2.3398438, 1.1542969, 3.7265625, 0.78466797, -0.010627747, -1.1171875, -2.5878906, -0.28051758, -0.984375, 2.1230469, 0.35742188, -1.5263672, 0.70703125, 0.8144531, 2.0761719, 1.2363281, 0.81640625, -0.117126465, 0.40478516, 1.7724609, -1.3876953, 1.5175781, -1.1933594, 0.112854004, 1.0136719, 3.8847656, 1.6503906, -0.56591797, -0.36376953, 1.0898438, -0.44702148, -2.7519531, 0.44433594, 0.00075149536, 1.3300781, 1.3505859, 3.359375, 2.4882812, 0.16259766, -1.0458984, -2.5957031, -0.80859375]}, "B07CZ8H9V4": {"id": "B07CZ8H9V4", "original": "Brand: Goplus\nName: Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)\nDescription: Description
This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

Features
Heavy duty cast iron body
Powder coating makes it is waterproof and anti-rust
Equipped with a cast iron head, outputs a whopping BTU of 100000.
Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
Adjustable firepower make your cook more delicious
Removable feet make it can be easily carried or stored
External valve CSA certification

Specifications
Finish: Black
Product Type: Single burner
Material: Cast iron
Item Dimensions:15.5\u201dx15.5\u201dx17\u201d
Item Weight:13lb
Hose Dimensions:0.5\u201dx51\u201d
Max: 250 Psig
BTU : 100000
Package includes:
1 x Single burner stove
1 x Instruction\nFeatures: Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up.\nCast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious.\nCooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time.\nDetachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage.\nSafety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "embedding": [-2.1015625, 1.984375, 1.8251953, 0.51953125, 0.21044922, 2.5722656, 2.2714844, -2.2167969, -1.1416016, 3.5097656, -0.13952637, -0.46875, 0.031707764, -3.5351562, 0.42138672, 0.65478516, -1.5556641, 0.07098389, -0.74560547, 0.0791626, 3.3984375, -0.4399414, 1.2998047, -0.35839844, -0.50439453, 0.18701172, 3.4257812, -2.7441406, 0.35791016, -2.0917969, 2.4316406, 0.33422852, 0.7988281, 2.9316406, -4.2226562, -1.0488281, -1.3769531, 2.0195312, -2.0097656, -0.08917236, -1.5322266, -1.3330078, 1.6357422, 0.0385437, -2.0175781, -0.13623047, 1.6269531, 1.8320312, -0.88916016, -0.6035156, -0.07525635, 1.7451172, -1.0888672, 1.84375, -1.6826172, 1.7402344, -0.13500977, -1.7519531, 1.3701172, -0.40551758, 1.3037109, 1.5634766, -2.015625, 0.7597656, -1.5498047, -1.0048828, 1.1513672, -0.98828125, -1.8046875, 0.11437988, 3.2695312, 0.055511475, -1.3222656, 0.11401367, 0.98535156, -0.93359375, -3.7597656, 0.98535156, 4.453125, -0.89208984, -2.3183594, 2.6113281, 1.8154297, 0.82373047, -0.4543457, 0.22229004, -0.92285156, 0.31079102, 2.4238281, -0.4724121, -2.59375, 3.4003906, -2.9101562, -4.1015625, 1.0205078, 0.06726074, 2.7304688, 0.68408203, 0.086364746, 0.9707031, 0.1204834, 0.87060547, -0.8725586, -0.5371094, -1.3261719, -1.2207031, 3.765625, 1.0361328, -2.2871094, 1.5126953, -3.3164062, -0.6611328, 0.8144531, -0.8520508, 0.54003906, -0.48242188, -0.8286133, 0.059020996, 3.4472656, 0.54785156, 4.8398438, -0.33447266, 0.22387695, -1.3574219, 1.1337891, 1.1279297, -1.0302734, 0.48388672, 2.5859375, -1.5205078, -2.0449219, -1.1884766, 0.46679688, -0.6303711, -1.046875, 0.02355957, -1.1923828, -1.7724609, -3.4414062, -0.54248047, -2.4746094, 1.4667969, 2.6210938, -0.13330078, -4.1367188, 0.0715332, -0.25561523, 2.1796875, 0.018051147, -1.3984375, 0.26171875, -0.64697266, 0.12182617, -2.1640625, 2.5, 1.3447266, -0.48266602, -0.9223633, 2.671875, 0.1821289, 0.2692871, -3.4941406, -2.5585938, 2.4472656, -0.0046577454, -1.3300781, 0.38452148, 0.2397461, -0.11029053, 1.1640625, 0.32543945, -1.1806641, -0.03857422, -1.0839844, 0.4621582, -0.9633789, -1.2128906, 3.7441406, -0.7314453, -0.39624023, -2.6152344, -1.734375, 1.7021484, 2.984375, 0.8105469, -1.3427734, 1.5878906, -0.64453125, -0.49804688, -2.171875, -1.4472656, 0.29907227, 0.7216797, -0.7783203, 0.27905273, -1.3095703, -0.33447266, -1.8857422, -0.37402344, 0.578125, -1.4130859, -1.1787109, 0.024627686, 1.4570312, -2.8789062, -1.0761719, -0.37451172, -1.4794922, 2.4628906, 2.2871094, 0.4086914, -0.13354492, 1.9765625, 0.36254883, -1.0244141, -0.8178711, 2.3398438, 0.44726562, 2.2890625, 2.28125, -0.30664062, -2.1074219, 1.0009766, 2.0625, -0.059539795, 0.91308594, 0.8178711, 0.04714966, -1.1523438, -0.93896484, 2.4121094, 0.24389648, -0.1652832, 0.53125, -1.2285156, 3.9414062, 1.1894531, -1.3515625, -0.5756836, -0.9291992, -0.59033203, -1.9882812, -0.5810547, 0.6821289, -2.140625, -0.80322266, -0.8051758, 0.35424805, 1.8154297, -0.87841797, -1.0234375, -0.94384766, 0.22619629, 0.03845215, -1.2353516, 0.41064453, 0.31445312, -0.765625, -2.3359375, -2.7460938, 1.3115234, 1.4423828, -0.5102539, 0.93408203, 0.33984375, -1.4775391, 2.3789062, 0.89697266, -2.8457031, 1.0957031, 2.2597656, 0.36816406, 3.9765625, -0.019805908, 1.9121094, -1.1337891, -1.4765625, 2.0527344, 1.0986328, 1.9511719, -0.76464844, -1.5908203, 2.9707031, -2.9804688, 0.48339844, 0.7524414, 2.2167969, -0.13586426, -0.30688477, -0.07623291, 5.578125, -1.4707031, -3.0878906, 2.3984375, -2.3964844, 0.5498047, 1.4189453, 0.43969727, 1.0898438, -0.7451172, 1.9277344, -0.055480957, 0.25048828, 2.9394531, -2.0234375, -1.5722656, 0.44677734, -3.6230469, -0.33813477, 1.5078125, -1.375, 0.25268555, -1.6962891, 0.3840332, -3.59375, -0.11230469, 2.1386719, -2.0117188, 0.74072266, 1.4570312, 0.84716797, 0.15673828, -0.2836914, -2.6523438, 0.84228516, 0.30932617, -0.15808105, 1.6279297, 0.027801514, -1.2607422, -0.921875, -3.0253906, -0.05529785, -0.91308594, -0.91503906, -0.8388672, 0.10040283, -2.515625, 1.6416016, -0.45239258, -0.5517578, 1.0283203, -2.3671875, 0.7285156, -3.1855469, -3.5898438, -0.35302734, 0.29711914, -0.62109375, -0.6123047, 1.3310547, 1.8251953, -1.2080078, -5.5039062, -1.2929688, 0.21435547, 0.30371094, -0.39990234, -0.83154297, 1.4677734, -0.39257812, 0.3269043, 0.34643555, 1.0175781, 0.25854492, -1.6513672, 0.5683594, -3.9726562, 1.6044922, -0.6044922, 0.57666016, 0.30786133, -0.42089844, -2.7675781, 0.0473938, -1.0761719, -0.6826172, 3.6113281, -2.0195312, 2.0761719, -0.9892578, -0.8442383, 0.39501953, -1.7802734, -2.515625, -0.8642578, -0.7050781, -0.8676758, -1.0722656, -4.71875, -0.14916992, -2.2617188, 0.47338867, -1.0957031, 0.89160156, -1.0771484, 1.8896484, -1.2587891, 0.06286621, 0.5283203, 0.42944336, -0.4506836, 0.06896973, -1.3056641, -0.5566406, -0.49194336, 0.6611328, 2.3398438, 1.0205078, 0.33813477, 0.24291992, 2.5800781, 0.061157227, 0.85058594, -0.44335938, -3.7988281, 1.2304688, 1.5371094, 0.49023438, 1.7929688, -2.0371094, -1.3017578, -2.0351562, -0.9790039, 2.1132812, -0.22851562, 3.3320312, -0.053833008, -1.6025391, 0.66015625, 0.9057617, -0.041778564, -1.9716797, 0.8911133, 3.7558594, -2.59375, -1.7929688, 1.4140625, 1.6347656, -3.9863281, -0.09765625, 0.52490234, 2.0390625, 1.5976562, 1.1005859, 1.5, -0.09851074, -1.3388672, -0.2619629, 2.2578125, 1.5458984, -0.93847656, -2.0410156, 0.4807129, -1.4511719, 1.0175781, 0.51953125, 2.7089844, 2.0664062, 2.25, 2.2714844, -1.3095703, 0.28564453, 0.08850098, 1.2558594, -0.124938965, 2.7421875, -0.47998047, -0.45458984, -1.3808594, -0.51123047, 0.28295898, -2.8847656, 0.41796875, 1.6962891, 0.056793213, 0.58251953, -0.13537598, -0.34277344, 0.25878906, -0.03665161, 1.0927734, -0.018493652, -0.5517578, 2.2773438, -0.5986328, -1.3115234, -1.7607422, 2.6894531, -0.5600586, -2.0410156, 1.1679688, 0.6064453, -1.6210938, -2.7675781, -0.7290039, 0.0010128021, -0.96191406, 5.09375, -0.089904785, -1.6132812, 1.0126953, -1.7138672, 0.73583984, 1.6162109, -0.05810547, -0.22509766, -1.8945312, -0.0022392273, 0.023849487, 0.32202148, 2.1035156, 1.4804688, -2.3125, 0.36499023, -2.3222656, -0.15270996, 0.059020996, -1.7636719, -0.7109375, 1.9638672, 0.2088623, 0.6357422, 0.007156372, 3.9335938, -2.3515625, -0.43139648, 1.0410156, -3.09375, 0.03262329, -2.9863281, -2.9589844, 1.2265625, -1.0888672, -1.1357422, 3.0253906, -0.16333008, 0.11260986, 1.6992188, 0.5258789, -2.9238281, -1.0908203, -0.9941406, 1.3154297, -2.7011719, 0.89501953, -0.08380127, 0.41674805, -0.67871094, -1.5595703, 0.08337402, -0.6386719, -0.0847168, 1.2001953, -3.5078125, 1.0761719, -0.87109375, -0.42797852, -0.9555664, 0.027404785, 1.8046875, -0.008132935, 0.68359375, -0.7739258, 0.86865234, 0.4880371, 0.85791016, 1.4199219, 3.7167969, 0.6767578, 1.6123047, -0.56933594, 0.5488281, 1.6337891, -0.13659668, -2.5175781, -2.078125, 0.11016846, 0.064575195, -0.094055176, 0.15393066, -0.66308594, -1.8867188, 1.6679688, 0.79052734, 0.49926758, 1.1621094, 1.0419922, -1.0341797, 0.5913086, 0.3564453, -1.7382812, -2.2773438, 0.90527344, 1.0136719, -1.9316406, 1.8173828, -0.52246094, -0.59375, 0.16638184, -1.3564453, -0.49975586, 2.7070312, 0.49487305, 0.54541016, 2.2949219, -1.2246094, -2.5996094, 0.33764648, -1.5449219, -1.3740234, 0.72021484, -0.24145508, -0.46557617, 2.9394531, 0.44384766, -0.42285156, -0.66064453, 1.5498047, -1.9267578, -1.0253906, -1.0126953, 1.3212891, -1.0917969, -1.703125, 1.53125, 0.2626953, 2.0390625, -0.64501953, 0.28808594, -0.68359375, 1.5917969, -2.6289062, -0.9628906, -0.14489746, 0.20007324, -0.6660156, -0.3569336, 0.84375, 0.4892578, 2.8945312, -0.60009766, 2.7578125, -0.17224121, 0.6948242, -0.38598633, 0.36450195, -1.8076172, 0.31982422, 0.5698242, 1.7910156, 0.16833496, 2.453125, 1.5, -0.6586914, 1.4990234, 0.97314453, -1.5996094, -0.20532227, 0.58984375, -1.6933594, 1.8076172, -2.25, -1.9150391, 0.7739258, 2.8320312, -0.49780273, 0.71875, 0.1529541, 0.25317383, -0.40185547, -1.7089844, 0.029052734, -2.4882812, -0.82958984, -0.86572266, -1.7148438, 1.0458984, 0.14746094, 1.9873047, 1.7402344, -0.085632324, -0.28735352, 2.6035156, -0.6196289, 2.1054688, -0.015853882, -0.54785156, -2.9882812, 0.9370117, 1.4511719, 1.2998047, 1.9316406, -0.91845703, 1.7314453, -1.1113281, -0.87109375, -1.6494141, 2.4101562, -3.296875, -0.48901367, 2.4335938, 0.024627686, 0.3779297, -1.6259766, -1.2636719, -0.71777344, 2.8085938, 0.0056114197, -0.8408203, -0.84814453, -0.19677734, -1.5292969, -3.6992188, 0.18359375, 0.1661377, -0.2644043, -0.9819336, -0.4008789, -1.1806641, -0.50439453, -0.033233643, 1.1015625, -1.6494141, 1.7294922, 0.1439209, 0.7729492, -1.5478516, 0.6669922, 0.6772461, 1.7958984, 0.9682617, 0.5239258, 0.036895752, -2.5195312, -1.078125, 0.24060059, -1.4697266, 1.0458984, 0.5073242, 0.39575195, 0.71533203, 1.9287109, -1.6025391, -2.7949219, 1.7148438, -1.1025391, -0.82421875, -0.017608643, -1.5234375, 2.625, -0.14916992, -1.9697266, 1.0927734, -2.484375, -2.1113281, -0.84228516, 1.4716797, 0.5385742, 1.4052734, 0.53271484, -1.9082031, 2.1835938, 0.5488281, 0.8300781, 1.0029297, -0.63720703, -2.4023438, -2.0253906, -2.9296875, -0.5644531, -1.4794922, -1.1796875, -0.5776367, 0.43774414, 0.7597656, 0.11578369, -0.32080078, -0.24707031, -0.5517578, -0.6074219, 1.9697266, -0.44482422, 4.21875, 0.4868164, 0.8022461, -2.7324219, -3.578125, 0.37109375, 0.11090088, 1.0087891, 0.0579834, 0.56396484, -1.5302734, -0.14099121, -0.7529297, 1.9453125, 2.71875, 1.3535156, -1.5205078, 2.7109375, 3.1640625, -0.27270508, 1.2763672, 0.6352539, 0.117126465, -0.64208984, 3.7519531, 0.99609375, 0.08984375, 2.5136719, -0.5419922, 2.7558594, -1.3984375, -1.6484375, -0.27441406, 0.24560547, -1.0234375, -2.0898438, -0.7705078, -1.8955078, 1.3183594, 0.44873047, -0.50341797, 0.11791992, 1.8603516, -0.5800781, 1.0546875, 2.6660156, 2.578125, -1.2851562, 1.9599609, 0.6801758, 0.9316406, 1.9921875, -0.8408203, 0.48779297, 0.9003906, -0.083496094, -0.46606445, 2.8300781, 1.2451172, 2.9453125, 0.11755371, 1.1816406, 4.03125, 2.1035156, 3.5976562, 0.30419922, 1.7363281, 2.5273438, 0.9042969, -0.114746094, 1.6386719, 0.41845703, -0.91845703, -1.3085938, -0.9794922, 0.15966797, -1.3701172, -0.66552734, 0.02015686, 2.6152344, -3.2539062, 2.8886719, 0.37426758, 2.3691406, -1.1416016, 1.6142578, 0.2939453, -1.5244141, -1.0029297, -1.3544922, -0.26879883, -0.74316406, -0.9267578, -1.1591797, 1.0332031, 1.1992188, -3.6835938, 1.1103516, -1.6660156, -3.1601562, -1.3759766, 1.7675781, 2.1582031, 0.40234375, 1.5537109, 3.140625, 1.8222656, -0.5444336, 0.49926758, -2.2167969, -0.11450195, 1.1884766, 3.9492188, 0.32006836, -0.21020508, 1.7578125, -1.2089844, -3.1132812, -2.7480469, 2.8164062, 1.8261719, 1.1074219, 1.9199219, -1.7509766, 2.0039062, 0.13232422, 2.3925781, -1.0078125, 2.3515625, -0.4194336, -1.7392578, -1.0136719, 0.38476562, 0.546875, 2.9414062, 1.9306641, -1.4121094, 0.9848633, 0.1739502, 1.4892578, 0.67285156, 0.5234375, 0.18798828, 3.1269531, 0.16040039, 2.3183594, 0.30322266, -1.8808594, -0.16125488, 2.75, 2.9726562, 0.032928467, 0.6298828, -1.7822266, 1.8857422, 1.1855469, -0.66503906, -0.7216797, -1.0283203, -1.8330078, -1.3691406, -1.8544922, -1.1914062, -2.0585938, 2.0878906, -0.13562012, -0.5131836, 0.7817383, 1.1347656, 0.19348145, 0.65283203, 0.35131836, -1.2763672, -0.20153809, -1.7539062, -0.2668457, -2.2539062, -2.546875, 0.9975586, 0.84228516, 1.8056641, -1.828125, 1.3222656, -1.2353516, -0.4909668, -0.23840332, 1.1962891, -1.7373047, -0.5415039, -0.26342773, -0.33764648, -0.49438477, 1.7675781, -0.5566406, -1.1503906, 0.029205322, -4.1796875, -1.0927734, 0.0181427, -0.5317383, 0.89501953, 3.6542969, 0.27172852, 2.1972656, -2.3066406, -2.5742188, -1.4755859, -2.1621094, 1.5136719, -0.39648438, -0.29882812, -0.40014648, 0.57910156, 2.3261719, -1.1474609, 0.96191406, -1.0712891, -0.28759766, -0.57666016, -1.15625, 0.26367188, -0.21228027, 0.5805664, -2.0585938, 3.0957031, 2.3496094, -0.10357666, 1.9238281, 1.3789062, 0.37353516, -2.5976562, 0.5761719, -1.6962891, -1.0234375, 0.22888184, 0.5073242, 2.8046875, 0.70214844, -1.0507812, -3.0957031, -1.6142578]}, "B088CYL9WB": {"id": "B088CYL9WB", "original": "Brand: Grand patio\nName: Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table\nDescription: This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

The fire pit table has solid construction and is easy to assemble.

40,000 BTU propane gas fire pit, square steel firebowl.

Note:
The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
Lava rocks shown in photos are decoration only, and are NOT included.
Batteries: 1 AA batteries required (NOT included).

Product Specifications:
Chair materials: Powder-coated steel, olefin fabric
Chairs size: 27.5\" (W) x 30.5\" (D) x 33.7\" (H)
Load of chair: 200lbs-300 lbs
Chair package Includes: 4 Chairs, tools needed, assembly guide

Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
Firetable size: 31.8\" (L) x 31.8\" (W) x 24.2\" (H)
Firetable package included: 1 x 32 inch gas fire pit table

Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.\nFeatures: FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we'll sort you out in 24 hours.\nCOMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces.\nSTURDY & DURABLE: Chairs and table's frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles.\nFEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included.\nHIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.\n", "embedding": [-1.4794922, 0.8769531, 0.6347656, -2.9570312, 3.5371094, 1.171875, 1.1503906, -2.2050781, -1.6835938, 2.1464844, 0.3955078, 2.1777344, 0.9941406, -3.8222656, 0.9477539, -0.3618164, -0.122924805, 0.8754883, 1.4667969, -1.8027344, 2.5957031, -0.8378906, 1.0322266, -0.37475586, 0.32373047, -0.20532227, 3.171875, -3.1367188, 0.70458984, -0.63964844, 0.9199219, 0.31689453, 0.25805664, 0.68359375, -1.7138672, -2.2773438, -0.4658203, 1.4648438, -2.4003906, 1.3642578, -1.6474609, -2.4003906, 3.4960938, 1.7578125, -1.3681641, 0.9550781, 2.84375, 1.2080078, 0.033325195, -2.1171875, 1.3730469, 0.7158203, 0.34814453, -0.28222656, -3.8105469, 2.3027344, 0.6767578, -1.5917969, 1.9619141, 0.6430664, 2.2460938, -1.0195312, -1.0263672, 2.1582031, -2.0683594, 1.9941406, -0.07348633, -0.57470703, -0.54003906, -0.043762207, 2.046875, -0.10272217, -1.9238281, 0.47802734, 1.2734375, -0.87597656, -2.5078125, 1.0371094, 1.5791016, -1.3095703, -0.6933594, 1.2568359, 0.96728516, -1.7480469, 0.30297852, -0.85302734, -1.3457031, -0.15759277, 0.9370117, 2.5898438, -1.4189453, 3.1347656, -0.5600586, -3.3359375, 1.1523438, -0.7026367, 0.7651367, 1.3076172, -2.9785156, 1.0400391, 1.6845703, -0.5703125, -0.027893066, -0.6113281, -1.2080078, -1.0410156, 1.4804688, 0.8442383, -0.6611328, 0.7397461, -1.2597656, 0.4152832, 2.0449219, -1.0732422, -1.8808594, 2.8808594, 2.193451e-05, 2.5820312, 2.6640625, -0.8911133, 4.3867188, 1.1806641, 0.97265625, -0.91503906, 0.15319824, -0.20471191, -0.6894531, 3.1132812, 1.1132812, -1.7177734, -0.45874023, -2.5898438, 0.95751953, 2.6464844, -2.2617188, -0.35961914, -1.9111328, -0.9165039, -3.5390625, -0.5908203, -0.54785156, 1.5615234, 0.65185547, 1.7587891, -3.4257812, -0.19445801, -0.6894531, 2.6894531, -0.5649414, -2.1757812, -0.052001953, -0.1640625, 0.5698242, -3.3886719, 0.40014648, -2.640625, 1.1523438, -2.7226562, 2.9824219, 0.49609375, 1.4882812, -1.5273438, -0.81347656, 0.7841797, -0.6635742, 0.9785156, 1.5878906, 0.9848633, 1.4414062, 1.6542969, -0.17163086, 0.6713867, 0.1439209, 0.23986816, -0.58984375, 1.46875, -0.72216797, 2.0996094, 3.3496094, 0.7128906, 0.5053711, -1.2011719, 0.12213135, 0.6977539, 0.97558594, -2.2910156, -0.58154297, -1.6914062, -0.04626465, 0.29589844, -0.5546875, -1.1914062, -3.5917969, 0.90234375, -1.359375, -2.6152344, -2.515625, -0.56884766, 1.8232422, 0.66748047, -2.2070312, 0.84814453, -3.0703125, 1.3388672, -3.3886719, -2.3710938, 0.09472656, 2.46875, 1.2841797, -0.18969727, -1.1464844, -1.6464844, 0.07507324, 0.25708008, 1.4052734, -0.000664711, 3.6035156, 0.9916992, 1.1181641, 2.9707031, -0.49023438, 0.5708008, 1.6132812, 2.8496094, 1.5693359, 1.3486328, 0.22265625, 1.0214844, -2.4960938, -2.8359375, 2.3496094, -1.4462891, 1.2509766, 2.0957031, -1.5439453, 2.6953125, 0.058563232, -1.9208984, 1.6748047, -2.1640625, 1.0361328, -1.7207031, -0.22595215, 1.1347656, -0.82177734, 1.640625, -0.9326172, 1.0224609, 1.5419922, -0.5444336, -2.3476562, 1.65625, 2.3183594, 1.3359375, -0.64160156, 0.3737793, -1.6875, 0.51464844, 1.7529297, -3.4394531, 0.94677734, 1.0068359, 0.4650879, -0.9926758, -0.30249023, -3.1621094, 2.6582031, -1.1318359, -4.4414062, -0.4362793, 0.0044288635, -0.48779297, 1.8330078, -0.41723633, -0.29101562, -0.8227539, -1.6992188, 1.3388672, -0.09173584, 2.3046875, -1.5742188, -0.17895508, 2.9042969, -1.3037109, -0.73535156, -1.5175781, -0.14929199, 0.40307617, 1.9111328, 2.0273438, 4.3476562, -0.24963379, -2.5507812, 1.5703125, -2.1054688, -1.2011719, 1.4785156, 0.04321289, 0.44262695, -0.31811523, 0.8095703, 3.0527344, 1.1699219, 2.6542969, -2.2988281, -0.3635254, -0.28344727, -2.9902344, 0.1315918, 0.36132812, -1.9921875, -1.6884766, -0.59765625, 2.3203125, -1.8525391, -1.0136719, 3.3085938, -2.3515625, 2.375, 0.6308594, -0.08282471, 0.22827148, -2.2246094, -0.734375, -0.31884766, 1.9335938, -1.6494141, -0.22558594, 1.0664062, -0.3371582, -0.2668457, 0.24414062, 1.0556641, -4.1640625, -0.94433594, -0.79248047, -2.0136719, 0.9008789, -2.9941406, -1.4121094, -0.9838867, 0.5263672, -0.31152344, 0.1385498, -2.2363281, -0.88378906, 1.4990234, 2.7988281, -4.09375, 1.0039062, -0.34960938, 2.2558594, 0.035064697, -1.8623047, -0.22033691, 1.640625, 1.3242188, 2.7382812, -0.57421875, -2.0605469, -1.2363281, 1.7382812, -0.1381836, -1.6337891, 0.7495117, -2.671875, -0.21887207, -2.8476562, 1.5996094, 0.85595703, -0.9428711, 0.8066406, 2.921875, -2.1796875, -0.67529297, 0.91748047, -2.9277344, 3.1757812, 0.48828125, 1.6015625, 0.8027344, -0.28173828, 1.5097656, -1.8320312, -3.0800781, -0.5839844, 0.87939453, -1.0537109, -2.1191406, 0.1652832, 0.0340271, -2.6210938, -0.4248047, 0.15319824, 0.84521484, 0.08343506, 0.84277344, -3.0117188, 0.21618652, -1.6279297, 2.8144531, 1.5458984, 2.4882812, -1.1113281, -1.0263672, -0.58496094, -0.22021484, -1.5566406, 3.3476562, -0.22265625, 0.5595703, 0.5703125, -0.9042969, 0.2722168, 0.8100586, -4.0820312, 1.7685547, 3.1230469, 0.6772461, 1.3076172, -2.7558594, -0.9370117, -0.73535156, 1.375, 1.9130859, 0.5878906, 0.031982422, -0.24328613, 1.0996094, 1.5585938, 0.20947266, -1.9609375, 0.38305664, -0.25341797, 2.21875, -2.75, 0.12878418, 0.53808594, 3.2265625, -2.7695312, -0.9785156, 1.1757812, -0.6230469, -0.33520508, -1.1523438, -0.4008789, 0.4345703, -0.19921875, 2.3886719, 0.13830566, 2.4589844, -0.3798828, -0.50097656, 0.7504883, 2.6875, 3.1757812, 0.72802734, 1.2617188, 2.0859375, 0.8666992, 2.2070312, -3.0898438, 0.8647461, 1.8291016, 2.5742188, 0.54589844, 1.6191406, -2.09375, 0.08746338, -0.54052734, 0.734375, 0.9277344, -2.0019531, 2.1289062, 1.1748047, 0.5830078, -1.8662109, -1.0029297, 1.0449219, 1.7148438, -1.7539062, -0.003528595, -0.9482422, 0.3701172, -1.0732422, -0.9589844, 1.0917969, -1.1513672, 3.5449219, -0.2097168, -2.7421875, 0.97216797, 2.8203125, 1.3183594, -1.2246094, 0.72216797, -2.6386719, -2.4550781, 5.34375, -0.6982422, -1.6640625, -0.008018494, -2.2929688, 1.4013672, 1.4462891, 0.22277832, 0.29663086, 1.7861328, -1.5800781, -2.0390625, 0.9248047, 0.56689453, 0.16101074, -3.1367188, 1.0927734, -0.6816406, -0.8803711, 2.1816406, -3.4941406, -1.9414062, 2.8886719, 0.40234375, 0.8964844, -1.9375, 3.1289062, -0.62402344, -2.4277344, 2.9257812, -1.0605469, -0.62353516, -1.7929688, -3.8261719, 0.6152344, -2.765625, -1.4423828, 1.3642578, 0.10870361, -0.84277344, 1.4658203, -2.875, -3.0878906, -1.3671875, -0.9941406, -0.51220703, -4.0859375, -1.0644531, 0.46728516, -1.3310547, 0.2980957, -1.8828125, 0.5834961, 2.7871094, 1.1416016, 2.0175781, -1.1962891, 0.31860352, -2.421875, 0.62402344, 0.6665039, 1.4277344, -1.1230469, -2.5585938, 1.3007812, -2.3164062, 1.5615234, 1.9863281, -0.6171875, 2.7324219, 2.3515625, -0.46923828, -1.2441406, 1.1757812, -0.8745117, 5.34375, -0.7324219, -2.9511719, 0.39404297, 0.18518066, 0.18969727, -1.0820312, -1.921875, 0.14562988, -2.3632812, -1.3232422, 0.08111572, 3.2519531, 0.9433594, 0.28051758, -2.4785156, -0.77734375, -0.20812988, -1.3994141, -1.453125, -1.5234375, 0.075805664, -0.9921875, -1.2753906, -1.1474609, -1.4980469, -2.6738281, -0.9863281, -0.21325684, 3.5664062, 1.296875, 2.1210938, 5.0859375, -1.4326172, -0.3708496, 1.8945312, -2.7480469, -0.19567871, 2.9511719, 0.7236328, -1.0722656, 1.9716797, -1.2636719, -1.7929688, -1.3271484, 1.7021484, -2.4921875, -0.3527832, 0.03945923, -2.3125, -0.5341797, -1.4785156, -2.8105469, -1.3476562, 1.2441406, -1.6992188, -0.54541016, -0.17553711, 0.43188477, -2.3007812, 0.23132324, 0.0124435425, -0.39013672, 1.3457031, 3.1035156, -0.93896484, 1.96875, 2.9785156, 1.0605469, 2.1328125, -1.5742188, -0.05895996, -0.62109375, -0.69628906, -0.7026367, -0.31958008, 0.5800781, 1.6044922, -1.8007812, 2.1503906, -0.32788086, -3.2363281, 4.1445312, 0.52783203, -3.0859375, 0.4104004, -0.20446777, 0.3203125, 0.45654297, -0.53759766, -3.1171875, -1.2949219, 0.9423828, -0.5620117, 1.6865234, 1.8876953, -2.0039062, 0.44750977, -0.5859375, -0.1616211, 0.041229248, -1.5888672, -0.45336914, -1.2529297, -0.113098145, -4.5585938, 1.0166016, 0.90527344, -1.7714844, -1.0878906, 2.6386719, 1.5048828, -1.3330078, -0.7631836, 1.7041016, 0.41552734, 0.21826172, 0.5859375, 0.6972656, 1.1298828, -2.6542969, 2.3945312, -2.3496094, 0.41845703, -1.9189453, 3.2089844, -1.7949219, -0.42504883, 3.53125, 2.0683594, 2.9707031, -4.3164062, 0.92578125, 1.1835938, 1.3974609, -1.5449219, 1.3466797, -1.3681641, -0.36816406, -1.1445312, -1.6845703, -1.1074219, -0.3642578, -2.3691406, -0.25439453, -1.7744141, -0.38354492, 0.8857422, 0.2310791, -0.33203125, -1.1660156, -1.09375, -1.1123047, 0.4819336, -1.2099609, 1.4179688, 0.64941406, 0.5605469, 0.23815918, -0.28955078, -0.72021484, -2.734375, -0.5571289, 1.6904297, -1.4208984, 1.9921875, 1.6708984, -0.87939453, 1.5722656, 3.2167969, -0.6010742, -1.3378906, 0.49658203, -1.3574219, 0.22094727, 1.8974609, -1.4951172, 3.4003906, -0.4807129, -1.6416016, 1.9306641, -3.0703125, 0.7026367, -0.53125, 1.5439453, -0.37402344, 0.11755371, -0.9980469, -2.1386719, -1.3486328, -0.21984863, 2.2402344, 1.1533203, -3.4003906, -0.3359375, -0.81591797, 0.07574463, -2.3339844, -1.8789062, -0.76220703, -1.1767578, -0.3972168, 0.06524658, -0.23962402, -0.6386719, 0.9199219, 0.3244629, -1.6542969, 0.056884766, -1.4150391, 1.1611328, 0.66845703, -1.2978516, -2.5898438, -2.8378906, -0.92626953, 1.1679688, 1.5576172, -0.30200195, -0.7265625, -2.3085938, 1.5712891, 0.16687012, 0.40405273, 1.84375, 1.828125, -1.2089844, 0.29077148, 0.7944336, 1.5351562, 1.84375, -0.3256836, 2.53125, -0.2680664, 1.9228516, 2.1054688, -1.7275391, 1.1357422, -0.9394531, 0.48120117, -1.2021484, -1.0292969, 2.0625, -1.4052734, -0.8881836, -3.5332031, -0.114868164, -2.7929688, 0.90722656, 1.7548828, 0.8745117, -1.6357422, -0.13989258, -0.97265625, 1.4072266, 0.83984375, -0.91015625, -0.79003906, -0.8486328, -0.7084961, 0.9116211, 2.1132812, 1.0107422, -0.8178711, 1.4873047, -0.23754883, 0.32055664, 2.3847656, -0.42700195, -0.52978516, 2.1230469, 0.5317383, 1.4511719, 1.9755859, 3.7011719, 0.028747559, 2.0253906, 1.9365234, -0.77685547, -1.0039062, 0.8022461, 4.2265625, 0.5654297, 2.2675781, 0.5307617, 2.5, -0.98339844, -0.6953125, -0.9272461, 0.53027344, 0.44213867, 1.9072266, -1.0566406, 3.0449219, -1.4580078, 0.70996094, -0.8486328, 0.99609375, -0.43408203, -1.6416016, 2.2304688, 0.25854492, -1.9765625, 0.93115234, -0.2866211, 0.6923828, -3.46875, 2.5175781, -0.04446411, -1.7949219, -0.46557617, 3.2734375, 1.3544922, 0.44580078, -0.10003662, 3.078125, 0.3256836, 1.7363281, 1.8261719, -0.5546875, 0.030197144, 0.6455078, 0.49414062, 1.140625, -1.9453125, -1.5878906, -0.11773682, -1.6904297, -2.1347656, 0.1619873, 0.6821289, -0.2097168, 1.2568359, -0.30126953, 0.56689453, 2.9296875, 1.5576172, -1.6796875, -0.08630371, 0.4008789, -2.0253906, 0.8432617, 0.49072266, -1.0615234, 1.8125, 3.1738281, -0.5410156, 1.3759766, 2.9199219, 0.31420898, 1.5322266, -0.058441162, -2.609375, 2.1914062, -1.9316406, 1.0722656, -0.4362793, 2.0371094, 0.8417969, 1.2646484, 2.5683594, -2.0292969, -0.116882324, -2.2558594, -3.2597656, 0.7421875, -2.3769531, 1.2392578, -1.4335938, -2.0957031, 1.484375, 1.5976562, 0.17626953, -3.4335938, 1.8730469, 0.359375, -1.8945312, 0.047973633, 0.74609375, -0.59472656, 2.1914062, -2.15625, 0.32763672, 1.0292969, -0.4729004, 2.671875, -0.4345703, -1.8710938, 0.04864502, 0.61376953, 0.24157715, -0.6972656, -1.3857422, 0.44702148, 0.19189453, 0.07385254, 3.4101562, -1.3945312, -0.8798828, -1.5732422, 0.37060547, -0.3100586, 2.3574219, -2.2246094, -2.4570312, -1.9541016, -4.8515625, 0.7963867, 0.53759766, -1.8066406, -1.2128906, 6.2265625, 4.5664062, -0.37402344, -1.9501953, -2.9609375, 0.6928711, 0.49438477, 2.8945312, -0.37670898, -0.8046875, -1.6787109, 0.36914062, 5.0976562, 0.27416992, -0.23828125, -0.9238281, -1.4638672, 0.7211914, -1.3925781, 1.6552734, 0.20654297, 0.8618164, 0.83984375, 2.3652344, 2.8476562, 0.5932617, 1.1386719, 3.0019531, -0.8725586, -2.2539062, 1.390625, -2.6640625, 1.1416016, 1.8398438, 0.4182129, 0.14990234, -2.0898438, 0.66308594, -3.5878906, -0.9428711]}, "B00005OU9D": {"id": "B00005OU9D", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches\nDescription: \nFeatures: Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time\n2 adjustable burners: For precise temperature control\nWind-blocking panels: Shield burners from wind\nPressure regulator: Pressure-control technology for consistent performance, even in extreme conditions\nRuntime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)\n", "embedding": [-1.4287109, -0.027694702, 1.1425781, 2.8359375, -0.8588867, 1.6943359, 0.09741211, -0.73291016, -1.7832031, 2.5664062, 1.8242188, -0.7993164, 0.15649414, -0.8383789, -0.06347656, -0.4555664, -0.18920898, 1.0986328, -1.296875, 0.010848999, 2.0449219, -1.3212891, 0.26367188, -1.59375, -0.37719727, 0.39331055, 3.0136719, -4.8125, 0.37524414, -0.0769043, 1.0351562, -0.81689453, 0.045806885, 3.0175781, -2.828125, 0.19470215, -3.1074219, 0.9404297, -2.7480469, -0.55029297, -0.5214844, -0.75, 3.2519531, -0.16247559, 0.03753662, -1.0009766, 1.8330078, 0.23046875, -1.8994141, 0.5341797, 0.2902832, 0.78466797, 0.25390625, 1.0361328, -0.82470703, 0.27661133, -0.55810547, 0.01876831, 0.77685547, 0.6694336, 0.4638672, -0.14086914, -1.9033203, 0.3527832, -1.8154297, 1.2275391, 1.546875, -1.3652344, -1.1806641, -0.09655762, 3.5664062, -0.9868164, -2.3554688, -1.7861328, -0.44360352, -1.2646484, -3.5683594, 0.30029297, 2.2089844, -0.3725586, -0.71191406, 1.3203125, 1.2695312, -1.3222656, -0.6357422, 0.6513672, -1.5341797, -1.03125, -0.3137207, 0.6801758, -0.70214844, 0.7607422, -1.4033203, -2.4589844, 0.9326172, -2.0996094, 0.6503906, 0.9614258, -0.7060547, -0.46972656, -1.0537109, 0.7363281, -1.5683594, 0.23632812, -2.9296875, -0.8432617, 2.8007812, 0.62109375, -3.8085938, 1.5, -2.7929688, -2.6933594, 1.7666016, 0.7519531, -0.23657227, 1.3798828, -0.81884766, 0.33618164, 2.8828125, -0.54345703, 3.7851562, -0.8901367, 2.3085938, -0.57910156, -0.34887695, 2.03125, -0.6352539, -0.18554688, 2.2402344, -0.23400879, -1.7021484, -0.40234375, 3.1679688, -0.47680664, -3.1582031, -1.0917969, -1.6591797, -0.69970703, -4.1523438, -0.09631348, -1.4775391, 0.98583984, 2.1699219, 1.6542969, -5.7578125, -1.7587891, 0.0016460419, 2.7695312, 0.15698242, -3.34375, 0.6386719, -1.1484375, -0.45117188, 0.05621338, 1.625, -0.4116211, -0.56591797, -1.8964844, 5.0429688, 0.20776367, -0.21936035, -1.8525391, -1.7626953, 1.7753906, 0.12658691, 1.0419922, 0.31933594, 0.90283203, -1.0527344, 2.4550781, 0.6855469, -3.140625, 0.42797852, 0.92578125, 0.7524414, -0.48413086, -0.7104492, 3.3476562, 1.2041016, -1.3925781, -4.171875, -3.5683594, 1.5322266, 0.87158203, -0.13635254, -0.31811523, -0.95166016, 0.14404297, 0.19628906, -1.4560547, -0.65625, -0.33203125, 0.5214844, -0.6665039, -2.6347656, -2.2382812, 0.6508789, -1.1064453, 0.71972656, 1.4736328, 0.23205566, 0.8300781, -0.46166992, 2.5742188, -2.1171875, -0.44091797, 0.41357422, -1.6962891, 2.7851562, 3.7421875, 3.2832031, -0.2705078, 1.6474609, -1.5458984, -1.9716797, -1.2373047, 1.0605469, 1.1396484, 2.1503906, 2.1679688, 1.1904297, -0.3864746, 0.38623047, -0.2220459, -1.1982422, 2.1425781, 2.8125, -0.6088867, -0.69433594, -1.6914062, 1.6074219, 2.0371094, -1.7275391, 0.4025879, 0.7265625, 3.1542969, 1.5917969, -1.6494141, 0.36572266, -1.2724609, -1.2763672, -0.19396973, 0.8959961, 0.17370605, -0.3095703, 0.8417969, 0.22924805, 0.96728516, 3.9433594, 0.35864258, -0.5600586, -0.46972656, -1.5146484, 1.7363281, -2.4726562, 0.1048584, 0.7036133, -0.43896484, -0.30908203, -2.7089844, 0.5800781, 2.40625, -1.4970703, -0.3737793, -0.52490234, -0.070617676, 2.96875, 0.43554688, -2.8671875, 0.9111328, 1.234375, 1.1171875, 3.3457031, 0.921875, 1.8769531, -2.2207031, 0.26757812, 3.5703125, -0.3203125, 1.8056641, 0.4345703, -0.66552734, 2.8378906, -2.2714844, -1.8691406, 1.3710938, 3.0859375, 0.1381836, -1.2587891, -0.30664062, 5.0625, -2.2695312, -2.2636719, 2.5546875, -3.9023438, 0.5673828, -0.44677734, 0.6479492, -0.022491455, -1.0830078, 1.9599609, -0.5107422, 0.19348145, 0.50341797, -3.4550781, -0.5786133, -0.07635498, -2.046875, 0.9550781, -1.4355469, 0.3227539, -2.609375, -2.171875, 0.86816406, -0.43017578, 0.29125977, 4.0625, -2.4726562, 1.3476562, 2.09375, 0.6357422, 0.5546875, 0.03692627, -1.3144531, 0.43286133, 0.7861328, -1.1103516, 2.890625, 1.1181641, 0.40014648, 0.07611084, -2.9921875, 1.8173828, -1.4326172, -2.7695312, -0.6254883, 1.2431641, -3.3652344, 1.0361328, -0.05331421, -0.42114258, 1.9150391, -3.2050781, 3.0839844, -2.5820312, -2.6152344, 0.0211792, 1.0888672, -0.013473511, 0.6850586, 1.4599609, 1.3769531, -2.09375, -2.6835938, -2.0566406, -0.020629883, -0.7207031, -1.3759766, -0.28881836, 0.8754883, 1.1367188, 0.7363281, -0.21850586, 0.25634766, -0.79003906, -2.65625, 0.23583984, -3.0878906, 0.50439453, -0.82177734, 0.44262695, 0.87402344, -0.54345703, -1.9033203, -0.7988281, 2.0371094, -0.17651367, 5.6640625, -0.42041016, 1.0136719, -0.69970703, -0.63623047, 0.039642334, -2.0078125, -3.8378906, 0.5917969, 1.4931641, 0.16955566, -1.5654297, -3.8164062, 0.47998047, -2.4941406, -0.25073242, -1.8144531, 0.5229492, -1.2207031, 0.30493164, -1.4394531, -1.3574219, -0.04095459, 0.41210938, -0.46435547, -2.0878906, -2.2011719, -0.2775879, -1.25, 1.2011719, 1.9130859, 0.26245117, 0.6455078, 0.5366211, 2.6230469, -0.3647461, 1.8574219, -2.2910156, -4.3125, 3.3671875, 1.1982422, 1.1220703, 1.078125, -1.8964844, -1.953125, -2.8847656, -1.4287109, 1.2431641, 1.9003906, 1.625, -0.42333984, 0.8671875, 1.5664062, 2.9082031, 0.25805664, -1.2792969, -0.5234375, 3.90625, -2.5019531, -3.0683594, 2.609375, 2.3417969, -2.7207031, -1.7939453, 0.14440918, 0.21972656, 1.4306641, 3.1484375, -0.23669434, -1.2246094, 0.25561523, 0.16369629, 2.28125, -0.43530273, 0.69677734, 0.08239746, 0.9868164, 0.5576172, 0.6972656, 1.0332031, 2.03125, 0.11199951, 1.5664062, 3.6074219, -1.7597656, 1.9296875, 0.5527344, 0.5234375, 0.77441406, 3.4316406, 0.01499176, -0.28271484, -0.9604492, -1.3457031, 1.6171875, -1.2050781, 1.0205078, 1.9511719, 1.5722656, -0.79785156, 0.6899414, -0.20922852, 1.1923828, 0.29516602, 1.3496094, 0.5942383, 0.031433105, 0.6333008, -1.5371094, -1.609375, -0.9921875, 3.2792969, -1.3173828, -0.8022461, 1.6816406, 1.921875, -1.4785156, -2.6269531, -2.640625, 1.109375, -0.5209961, 3.0371094, 0.7426758, -1.8769531, -0.80126953, -0.8540039, 0.84277344, 2.1621094, -1.5029297, -0.88427734, -0.9550781, -0.16882324, -0.71972656, 0.022216797, 1.8847656, 1.4189453, -1.7861328, 1.6435547, -3.6757812, 0.31030273, 1.2666016, -3.7460938, 1.1044922, 2.6621094, -1.6992188, 2.0507812, 0.13244629, 3.8417969, -2.671875, -0.22277832, 1.0371094, -1.0097656, -0.55615234, -2.3984375, -2.5039062, 1.7373047, 0.06304932, -0.32470703, 1.4697266, -0.69189453, -0.23925781, 0.48583984, -0.019058228, -2.7128906, -2.5996094, -1.7060547, -0.12371826, -2.8867188, 0.08831787, 0.5888672, -1.5537109, -3.2949219, -1.484375, 0.08673096, -1.5263672, 1.0195312, 1.6650391, -1.9697266, -0.4975586, -1.5244141, 1.7128906, 1.2587891, -0.2397461, 1.3085938, -0.3701172, 0.18359375, -2.4414062, 0.19262695, 3.1523438, -0.56884766, 1.7089844, 2.0898438, 2.0703125, -2.9765625, 0.609375, 1.9121094, 2.1367188, -0.33740234, -2.296875, -0.79541016, -0.9868164, -2.0625, -0.06628418, 0.2836914, -0.9770508, -1.8564453, 0.7949219, 1.4472656, 1.7119141, 1.6806641, -0.44848633, -0.50683594, 0.3881836, -0.18115234, -1.4326172, -1.0439453, -0.49389648, -0.6791992, -1.0683594, 0.8852539, -1.4960938, -0.49243164, -0.24450684, -0.40112305, -3.0917969, 1.1210938, 0.19494629, 3.4453125, 2.1113281, 0.56396484, -2.8125, 1.90625, -2.171875, 0.9716797, 0.5654297, -0.9941406, 0.26831055, 1.2636719, 2.3964844, -1.2763672, -1.9169922, 0.5292969, -2.4394531, -1.2001953, -1.7802734, 0.9160156, -1.2783203, 0.5102539, 0.84033203, -0.23742676, 1.2412109, -1.3330078, 0.0524292, 1.0292969, 1.6943359, -1.3837891, -0.2524414, 0.5517578, 0.65966797, 0.32739258, -0.9980469, -1.0078125, -0.6640625, 2.1894531, 0.84814453, 2.1484375, 0.3149414, -0.40649414, 0.42700195, -0.34643555, -1.2949219, 0.06286621, 0.12548828, 0.83984375, 0.27416992, 3.7890625, 3.0957031, -0.5859375, 2.7226562, 0.12023926, 0.12756348, 0.024520874, -0.25390625, 0.8847656, 1.7617188, -0.6015625, -3.1679688, 0.86865234, 2.8417969, -0.5571289, 1.4677734, 0.6044922, -0.78222656, -0.96240234, -3.7519531, 0.31933594, -1.5283203, -1.0732422, -0.73095703, -2.109375, 0.12359619, -2.1679688, 0.8901367, 3.0292969, 0.3540039, -1.1474609, 2.1601562, -1.21875, 1.5078125, -2.6894531, -1.9599609, -3.3085938, 0.80615234, 0.35546875, 0.23303223, 0.7495117, 0.35058594, 0.5551758, -1.2900391, -0.6386719, -1.3886719, 1.1123047, -2.9082031, -2.0234375, 0.2590332, -0.37524414, 0.14489746, -1.9414062, -0.43579102, -1.7167969, 1.7802734, 1.2392578, 0.33129883, -1.1650391, 1.9208984, -1.9345703, -3.4863281, -0.42773438, -0.31567383, -0.61572266, -0.72314453, 0.5698242, -2.1035156, -1.046875, -0.7285156, -2.53125, -2.8046875, 0.12121582, -0.2866211, 0.40942383, -0.6542969, 1.6982422, -0.10467529, 0.20166016, -0.56933594, 0.7739258, -0.7368164, -1.8037109, -2.6855469, 2.328125, -0.18139648, 2.1503906, 0.7602539, -0.67529297, 0.42651367, 1.2578125, 0.42041016, 0.03366089, 1.4199219, 0.45751953, -1.203125, 1.4960938, -0.30688477, 0.9111328, 1.7890625, -0.8725586, 0.765625, -0.5708008, -0.73291016, 1.3173828, 1.390625, 0.24194336, 0.64453125, 1.2001953, -0.37646484, 1.9111328, -0.73046875, 1.7705078, 2.5722656, -0.7192383, -1.5849609, -1.4619141, -0.97558594, 0.17797852, -1.0859375, -1.9863281, -0.8388672, 1.8808594, 1.4492188, 1.4306641, -0.96435547, 1.1289062, 1.0556641, 0.47338867, 1.0507812, -2.3496094, 2.9160156, 0.49389648, -0.4909668, -1.7705078, -1.9960938, 1.7412109, -1.2568359, 2.40625, -1.2646484, 0.57958984, -2.1484375, 0.86865234, -0.41235352, 2.0761719, 2.6308594, 2.1777344, -1.484375, 2.8046875, 3.5507812, -0.0003848076, 0.7451172, 0.23461914, -1.4199219, -0.4975586, 3.3769531, 1.3759766, -0.98095703, 2.9160156, -1.9375, 1.515625, -1.6894531, 0.10699463, 2.59375, -0.84765625, -1.7128906, -1.6435547, -1.03125, -2.3417969, 2.6660156, 1.6416016, -2.0761719, 0.72314453, 0.82373047, -1.0302734, 0.8383789, 1.6494141, 1.4462891, -0.56347656, 0.9189453, 0.9370117, 0.12487793, 2.0234375, -1.5439453, 2.640625, -0.0925293, -0.45629883, 0.64746094, 3.1035156, 0.6386719, 2.9746094, 4.15625, 1.6181641, 2.7070312, 1.4296875, 2.8144531, 0.7597656, 2.015625, 0.3786621, -0.47851562, -1.8417969, 2.9082031, 0.17321777, -0.44384766, -0.99072266, 0.29907227, -0.26000977, 0.3256836, -2.2109375, 1.0791016, 0.3305664, -5.59375, 1.1542969, 1.0205078, 2.9902344, 0.46020508, -0.5546875, 1.1269531, -0.30737305, -0.2841797, -2.0800781, -0.5546875, -1.9863281, 0.69091797, -1.7412109, -0.24621582, 2.1074219, -0.55566406, 0.45043945, -3.5078125, -2.2929688, -0.89501953, -0.1194458, 0.60302734, 1.3164062, 0.8666992, 3.15625, 2.2089844, -0.033325195, 0.2763672, -1.5224609, 0.81152344, 0.48046875, 3.1269531, 0.37109375, -0.51464844, 0.89501953, -0.89453125, -3.2050781, -4.5664062, 1.4863281, 1.5302734, 2.0742188, 1.6289062, -2.3242188, 3.0195312, 0.40527344, 1.5302734, -1.8916016, 1.640625, 0.41674805, -2.5039062, -1.8398438, 0.8198242, 0.30126953, 3.4960938, 1.5292969, -1.4931641, 1.59375, -1.2021484, 1.3994141, -0.5283203, -0.6455078, 2.7148438, 2.1328125, -2.1503906, 2.3671875, 1.2509766, 0.27612305, 0.24389648, 2.2910156, 2.4980469, -0.06237793, -1.0791016, -1.3525391, 1.8935547, -0.5288086, -0.20800781, -0.7792969, -1.546875, -2.2949219, 0.9345703, 0.6279297, -0.94140625, -1.7226562, 0.80810547, 0.8125, -1.5761719, 1.8095703, 2.6699219, -0.8779297, -0.05517578, -1.2324219, 0.203125, 0.28100586, -0.22302246, 0.31396484, -1.140625, -1.4267578, 0.8051758, 1.0019531, 1.8789062, 0.100097656, 0.86328125, -1.3310547, -0.41455078, -0.2705078, 0.22851562, 0.7167969, -0.94873047, -0.20825195, 0.44799805, -1.1904297, 1.2558594, -2.2421875, -0.8041992, -0.26391602, -2.84375, -1.7880859, -2.4921875, -0.04901123, 2.3515625, 2.75, -0.8754883, 1.8037109, -0.18847656, -1.9775391, -3.4492188, -1.5859375, 2.03125, 1.7265625, -1.0615234, 0.9116211, 1.9257812, 1.8710938, -1.84375, -0.65966797, -0.42529297, -0.14904785, 0.21459961, -1.0605469, 0.4572754, 1.9091797, -1.1318359, 0.3449707, 2.875, 0.81640625, -0.22570801, 0.8286133, -1.390625, 0.30639648, -2.09375, 0.49853516, -1.0888672, -1.8339844, -2.7480469, 0.2631836, 2.640625, 0.5371094, -2.5234375, -3.4726562, -0.6894531]}, "B004FPZAA6": {"id": "B004FPZAA6", "original": "Brand: Worthington\nName: Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar\nDescription: \nFeatures: Engineered design for lightweight strength\nRugged, damage resistant all steel construction\nRust inhibiting Durabond powder coat paint\nInteriors that are clean, dry and scale free\nComfortable hand-holds in the collar for easier lifting\n", "embedding": [1.7695312, 2.5507812, 0.8208008, -0.25976562, 0.7294922, -1.8398438, 0.97753906, -0.87158203, -1.0458984, 0.21923828, 1.2861328, 2.0234375, 0.85302734, -2.3828125, -1.4541016, 0.73095703, -0.6694336, 1.0234375, 0.42041016, 1.3349609, 1.8632812, 0.08850098, -0.58691406, -1.4492188, 1.5214844, -0.7441406, 2.7246094, -2.1523438, -1.0595703, -1.9609375, 1.8115234, 0.8544922, 2.4667969, 1.1699219, -0.55566406, -0.8383789, -0.5239258, -0.7026367, -2.4570312, 1.2958984, -3.5195312, 1.6767578, 1.9335938, 0.16711426, -4.015625, 3.1992188, 1.4970703, -0.9082031, 0.8076172, -0.078125, -0.7915039, 0.9033203, 0.6176758, 0.24523926, 1.1464844, 1.2939453, -0.99316406, -2.1015625, 0.74853516, 1.3466797, 1.9560547, -0.33422852, -0.5390625, -0.53271484, -0.3388672, 3.0390625, -1.3916016, 0.31884766, 0.57666016, 2.0214844, 2.2421875, 1.5673828, 1.5546875, -0.8461914, 0.0046844482, 0.5732422, -2.8417969, 0.6455078, 0.007843018, -1.4736328, 0.5449219, 1.6484375, 0.75, -1.8105469, -4.1914062, -1.4882812, -0.5620117, -0.27905273, -1.1611328, 0.75439453, -2.3320312, 1.6611328, -2.1074219, -4.734375, -0.19226074, 0.64160156, -0.25390625, 1.9140625, 1.9560547, -0.42333984, 2.3222656, 0.2697754, -0.61328125, 0.625, -0.86376953, -0.53125, -0.07006836, 0.9086914, -2.5683594, 2.2480469, -1.9394531, 1.9609375, 1.7246094, -0.20031738, -0.5830078, -1.2773438, -1.9775391, 0.3557129, 2.8730469, 1.0888672, 2.8476562, -1.6484375, 1.0927734, 0.48706055, -0.72558594, 2.0078125, 0.65966797, 0.7895508, 2.1855469, -1.6513672, 3.8515625, -1.3867188, 3.6679688, 1.3408203, 0.63916016, -0.01309967, 2.0683594, -1.3007812, -0.57373047, -0.88671875, -1.8662109, 1.7216797, -0.13696289, -1.1240234, -3.0117188, -1.2783203, -0.016418457, -0.35083008, -0.54541016, -0.8618164, 0.22705078, -0.77246094, -0.81884766, 1.4746094, 1.8554688, 2.3125, -2.03125, -0.7133789, 2.8046875, 3.2890625, 1.7275391, 1.5029297, -0.35424805, -0.05255127, -1.5791016, -1.7363281, 0.828125, -0.3046875, -2.671875, 2.0234375, 0.8334961, 0.08721924, 0.6635742, 0.62646484, -0.16027832, -0.35546875, 1.4316406, 3.2929688, -0.23168945, 0.53027344, -1.3671875, -1.2714844, -0.6459961, -0.2166748, 1.8935547, 0.089416504, 0.01727295, -0.6069336, 0.31640625, -0.15881348, -1.6796875, 0.1607666, 1.8623047, -1.0205078, 0.6694336, -3.1015625, -1.1308594, -2.828125, 0.88671875, 2.2929688, -2.0878906, -2.7265625, 2.78125, -1.2890625, -2.0273438, -2.2792969, 1.6953125, -0.42138672, -0.2697754, -0.79833984, 0.29003906, -1.515625, 2.3027344, -1.6152344, 0.5644531, -3.28125, 1.1269531, 0.93310547, 1.6816406, -0.8105469, -0.26489258, -0.095336914, 0.42163086, -0.72265625, 1.4511719, 0.99560547, -1.1396484, 0.66552734, -0.49365234, -0.8496094, 1.9775391, 2.4414062, -1.7685547, 0.24707031, -1.2939453, 2.1152344, 0.5097656, -0.4519043, 1.1738281, -0.37036133, 0.9711914, 0.68115234, -0.81396484, -1.8388672, 1.7910156, -0.69189453, -2.1074219, 0.1418457, 2.8183594, 1.1005859, 1.2314453, -0.16113281, -0.78027344, 1.5898438, -1.9355469, 1.8076172, 0.4128418, 1.0722656, -1.2089844, -4.3085938, 1.78125, -1.3623047, -0.9682617, -1.1308594, 0.18859863, 0.0065727234, 2.4277344, 0.2668457, -2.765625, 0.33666992, -0.4494629, 1.3896484, 0.7993164, -2.1054688, 1.5712891, 3.5449219, -1.5224609, 4.5039062, -0.7211914, 0.99072266, 0.77246094, 1.1943359, 2.4804688, -3.0117188, 2.2773438, 1.2900391, 1.7333984, -0.11431885, -3.8847656, 1.4785156, 5.65625, -1.4003906, -0.98046875, 1.2275391, 1.6591797, 1.8085938, 3.7421875, 0.45776367, -0.61621094, 0.27905273, 0.99658203, 1.5263672, -0.28686523, -0.97753906, -0.07312012, -1.7861328, 0.9169922, -1.3798828, 2.421875, -1.8535156, -1.0625, 0.5859375, -1.5859375, 0.07989502, -3.2675781, 0.4013672, 0.9194336, -1.7919922, 2.4765625, -0.80615234, 0.7495117, 2.0019531, 1.5166016, 1.2890625, 0.64941406, -0.12988281, -1.6708984, 0.9707031, -0.014793396, 1.4414062, 0.875, -2.8339844, 1.2119141, -0.17260742, -0.74316406, 1.4316406, -2.8730469, -2.7871094, 0.8095703, -0.16516113, 2.1875, 0.9682617, -1.7822266, 1.1113281, 0.94677734, -0.76953125, -0.3425293, 0.9741211, -1.2431641, -3.46875, 0.2541504, 1.9453125, -1.6601562, -4.6757812, -3.0390625, 1.5136719, -1.0449219, 1.3398438, 0.7060547, -0.2565918, -1.1748047, -0.9423828, 0.1026001, -0.26513672, -0.35302734, -1.9365234, 2.5429688, -3.8574219, 3.4121094, -0.10522461, -0.4753418, -1.2617188, 0.7504883, -1.6630859, -1.5097656, 0.5131836, 1.0039062, 5.1914062, 1.2216797, 2.5546875, 0.8251953, -2.03125, -0.81591797, -2.1347656, -2.0820312, 1.5009766, 0.3371582, 1.2060547, 1.5791016, -3.0820312, -0.27026367, -1.6591797, 0.31835938, 1.7714844, 1.5009766, -0.18481445, -2.375, 0.39916992, 0.92285156, 0.7885742, 1.8261719, 0.24853516, -2.421875, 0.025543213, 1.3300781, -0.39648438, -0.6640625, -0.2286377, 1.2470703, 0.5859375, -0.70947266, 2.875, -2.3984375, 1.4013672, 0.7597656, -2.6464844, 2.421875, 2.4707031, 0.5830078, 2.3320312, -2.203125, -0.008560181, -1.1894531, -0.4584961, 2.0097656, 2.46875, 0.86083984, 1.2246094, 0.7373047, -1.2041016, 1.8291016, -0.22387695, -1.6689453, 0.6401367, 0.6894531, -1.2822266, -1.4384766, 0.5058594, 1.21875, -5.3710938, -0.11151123, 1.5361328, 1.2841797, -1.6289062, 1.7460938, -0.8955078, 0.32592773, -0.6040039, 1.1298828, 1.0058594, -0.19116211, -0.45922852, 0.7631836, 1.5439453, -0.5864258, 0.21435547, 2.0039062, -0.08654785, 0.05718994, 0.81396484, 1.0185547, -1.1738281, -0.67285156, 0.22351074, 0.5595703, 0.10479736, 1.4433594, -0.30322266, 1.0380859, 0.68310547, 0.10650635, 0.8701172, -4.234375, -2.0800781, 0.2692871, -0.63427734, -1.5380859, -0.082092285, -0.94433594, 1.6992188, -2.7773438, 0.40283203, -0.5522461, 0.5541992, 0.30126953, -1.9316406, 0.29125977, -1.0253906, -0.88427734, -0.9213867, -1.109375, -1.8886719, -0.2944336, -1.6513672, -1.9736328, -1.5566406, -0.63964844, -0.19238281, 4.296875, 0.8745117, -1.8164062, -0.7915039, 0.14550781, 2.3183594, 2.7265625, -2.5527344, -0.19042969, -1.0175781, 0.15649414, 0.16113281, 1.1464844, -0.8730469, -1.1894531, -3.4023438, 1.2402344, -0.034088135, 1.375, 0.3527832, -0.9194336, 0.95166016, 0.099121094, -1.4804688, 1.4414062, 0.7392578, 1.9111328, -0.19763184, 1.84375, 0.8857422, 0.047180176, 0.070373535, -1.7587891, -1.3193359, -0.65625, 0.32788086, 0.6791992, 1.5546875, -0.10961914, -0.68603516, -0.4428711, 0.123168945, -0.5761719, -1.7714844, -0.5, 0.546875, -0.53808594, -0.57421875, -0.41186523, -0.22106934, -2.4375, -1.3134766, 1.9257812, 0.15368652, 0.35888672, -0.5390625, -1.9765625, 2.6816406, -1.640625, -0.3395996, -3.0019531, -0.2529297, -0.83496094, 0.35961914, -0.13232422, -1.8496094, 3.1601562, -0.41992188, 1.3867188, 1.3837891, 3.2636719, 1.4423828, 0.057495117, 1.1435547, -2.2792969, 1.7626953, 0.30688477, -1.2685547, 0.59228516, -1.5576172, 1.1328125, -2.3183594, 0.3395996, -0.23522949, -0.2836914, 0.5708008, 0.42895508, -0.8383789, 0.7758789, -0.1081543, -1.5546875, 1.4677734, 1.2089844, -2.3105469, 0.31396484, -2.7558594, 1.1708984, -0.79052734, 1.5419922, -0.8588867, -0.9042969, 1.7041016, 0.3540039, -1.2041016, 2.2558594, 3.7695312, 1.171875, 0.5419922, 1.7148438, -2.2851562, -3.3984375, 2.6171875, 0.07946777, -1.4882812, 2.2460938, 0.1899414, -0.25976562, 2.8671875, -1.5517578, -0.97314453, 1.2998047, -1.2480469, -0.47851562, -1.6132812, 1.0244141, 0.97753906, 2.3476562, 0.6904297, -2.109375, 0.75, -1.6816406, -0.0769043, 1.5742188, 0.88134766, -1.6855469, 0.609375, 0.3527832, -1.9580078, 2.8652344, -2.296875, 0.6933594, -0.30908203, 0.27905273, 1, 1.3242188, -1.5185547, 1.2041016, -1.1513672, 1.1191406, 1.6445312, 1.2949219, 0.54833984, -0.7626953, 0.88671875, 2.1367188, 1.6259766, 0.20544434, -0.13110352, 1.7539062, -2.7167969, -0.6855469, -0.10131836, -1.3007812, 0.6611328, -0.9243164, -0.3166504, 1.0966797, 2.2617188, -1.3720703, 2.4453125, 0.33764648, 0.2310791, -0.2722168, -3.0878906, -2.5449219, 1.3554688, 1.1035156, 0.8955078, -1.0712891, 1.7275391, 0.31274414, 0.4177246, 1.6474609, -0.64697266, -0.6582031, 0.02029419, -1.0029297, 1.1357422, -1.3574219, -1.8779297, -3.171875, -0.27197266, -0.5234375, 1.9013672, -1.1787109, 1.6630859, 1.7792969, -1.5957031, -0.122558594, 0.1439209, 0.89746094, -2.8769531, -0.23205566, 2.0917969, 2.0429688, -0.39111328, -0.9394531, -2.4296875, -1.2861328, 0.59472656, 0.98095703, -0.8911133, -0.46801758, 0.25219727, -1.9521484, -2.953125, -0.032928467, 0.03817749, -1.3408203, 1.0458984, -1.4033203, -2.3261719, 1.7207031, -1.4550781, -0.76708984, -2.4101562, 0.4152832, 0.8574219, 0.40771484, -1.1162109, -1.59375, -0.38623047, -0.6879883, -1.3046875, 0.06781006, 1.1201172, -0.7104492, -2.1113281, 1.5234375, -0.3251953, 0.67822266, 1.1035156, -0.08251953, 1.5927734, 1.1201172, 1.3125, -1.2529297, 0.37719727, -1.1259766, -2.234375, 1.4482422, -1.1064453, -2.3144531, 0.29370117, 0.5180664, 0.14245605, 2.3710938, 1.4384766, -1.6611328, 1.1855469, 1.1972656, -1.5810547, 1.34375, 1.5830078, 2.8203125, 1.5351562, 3.4492188, 0.78808594, -0.75341797, -2.0859375, -2.6132812, 0.31396484, 1.2607422, -1.4970703, 0.5131836, 0.42138672, 1.7783203, 1.4130859, 0.09448242, 1.8935547, -1.4541016, -1.3632812, -0.7993164, 0.2878418, -4.15625, 2.4941406, -0.43579102, -2.1796875, -0.9482422, 2.2773438, 1.0625, 1.9736328, -0.79833984, -0.088134766, 1.1445312, -0.6621094, 0.004585266, -1.7568359, 0.46411133, 0.73046875, 2.6367188, -0.5805664, 0.23876953, 2.6074219, -0.76953125, -1.2910156, 1.6982422, -0.9902344, 0.099365234, 0.578125, 1.1220703, 0.62890625, -1.0253906, -0.97314453, 1.0966797, 1.2998047, -0.04421997, -1.1689453, -2.546875, -1.7177734, -1.2392578, -0.89404297, -3.4804688, 1.2607422, -0.02520752, 1.0019531, 0.38354492, 0.55810547, -2.4316406, -0.8989258, 0.022033691, 0.43286133, -2.1953125, -0.28759766, 1.0712891, 0.9614258, 2.2265625, -2.8867188, 2.765625, -0.12225342, 1.1308594, 0.3774414, -1.9072266, -0.97802734, 1.2373047, 0.59765625, 1.7441406, 2.9492188, 0.72314453, 0.15307617, 0.6582031, 0.48535156, 3.1523438, -0.123168945, -0.57128906, 1.0390625, -1.4746094, 1.1279297, -0.98291016, 1.1884766, -1.0712891, 1.2382812, 1.2841797, 0.8413086, 0.8623047, -4.078125, -0.57421875, -0.65185547, 1.8408203, -1.1064453, 0.9116211, 0.14929199, -1.6123047, 1.2744141, -0.51708984, 2.9433594, 1.7685547, 0.35107422, 0.2685547, -0.39038086, -1.0625, -1.1289062, -1.0146484, -1.1904297, -1.5058594, 0.23986816, 0.0048065186, 0.2878418, 0.13513184, -0.7792969, -0.9121094, 0.56689453, -2.1230469, -0.99560547, -1.6210938, -1.2958984, 2.3671875, -0.013450623, 2.1679688, 1.7285156, 1.7734375, 1.7851562, 0.65625, -3.828125, 1.1035156, 0.9116211, -0.84277344, 1.2910156, -1.3007812, 0.26733398, -2.6054688, 1.0263672, -2.2265625, -1.3955078, -0.65234375, -5.1601562, 0.6040039, 0.5175781, -1.5029297, 2.0488281, 1.4482422, 0.43188477, 0.69873047, 0.33911133, 0.36694336, 2.3417969, -2.5136719, -1.2255859, 1.8486328, -1.6611328, 1.7978516, 0.053863525, -2.0507812, -1.9765625, 2.2695312, 0.80078125, 1.1904297, 2.8398438, -0.47998047, 1.8945312, -1.1240234, 1.3886719, 0.7817383, -0.5541992, 0.5283203, 1.1621094, -1.1064453, 1.3720703, -0.95996094, -1.1162109, 0.50683594, -1.9394531, 1.4160156, 0.5180664, -1.4433594, -0.33154297, 0.027038574, -0.52001953, -2.4980469, 1.4658203, 1.7880859, 0.36083984, -0.45043945, -0.80322266, 2.6015625, -1.1953125, -1.3291016, -1.0048828, -1.2666016, -0.13378906, -1.3173828, -1.0585938, -0.16833496, -1.6474609, 1.7216797, -0.6455078, -0.6201172, -0.53466797, -0.047698975, 0.0033473969, 0.8491211, -0.4375, 0.23803711, -0.97753906, -1.0664062, 0.45751953, -0.8129883, -2.5273438, 2.390625, -0.5864258, -1.8183594, -2.0078125, -3.9277344, 0.5131836, -0.1776123, -0.19555664, 1.8427734, 1.3583984, 2, -2.4765625, -0.90722656, -0.93066406, 0.035125732, 0.5751953, -3.2832031, 0.7241211, -0.3479004, -1.3027344, -0.15405273, 2.9023438, -0.14025879, 0.13049316, -0.46850586, 4.0703125, -0.6855469, -0.8300781, -0.81103516, -0.671875, -2.1425781, -2.5683594, 1.6367188, 0.56689453, 0.17749023, -1.8515625, -1.7880859, -1.4091797]}, "B07RJDY54G": {"id": "B07RJDY54G", "original": "Brand: GasSaf\nName: GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS)\nDescription: Converts 1/4\" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

Please double check your propane appliance connection before you order.
(2 PCS)\nFeatures: Standard P.O.L. tank connection and 1/4\" male NTP to male POL, built-in excess flow protection(2 PCS)\nProvides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks\nUse for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly\nIt fit for BBQ, camping stoves, propane heater, or cooking outdoor\nEasy and quick to install to your propane equipment\n", "embedding": [-0.85595703, 2.2519531, 1.6240234, 0.76904297, -0.45532227, -0.9614258, 0.40722656, -0.25146484, 2.171875, 1.5214844, 1.2177734, -0.25927734, 2.0761719, -2.5390625, 1.6142578, 0.9838867, 1.2744141, 0.36547852, 1.6777344, 2.0039062, 1.5703125, -0.3955078, 1.890625, -1.6777344, 0.08111572, -1.4833984, 2.3515625, -1.9267578, 0.13623047, -0.5878906, -0.46069336, -0.5390625, -1.0791016, 1.6542969, -0.75341797, -2.1914062, -0.037628174, -1.0507812, -3.9511719, -1.4052734, -2.1367188, 1.4882812, 1.4287109, -0.890625, -3.2167969, -1.5791016, 0.79345703, -1.265625, 0.41455078, -1.5478516, -0.51171875, 1.3232422, -1.7548828, 0.92285156, -0.9951172, 0.2578125, 1.6259766, -1.8623047, -0.53564453, 2.6328125, 0.35620117, 1.3164062, -2.1386719, 1.7402344, 0.3305664, 0.7729492, 0.3947754, -1.4609375, 0.24255371, 1.0029297, 0.59277344, 2.1933594, 1.03125, -0.123535156, -1.84375, 2.0546875, -2.3496094, 0.75878906, 0.9091797, -0.22521973, -1.0039062, 0.8588867, -0.7006836, -3.3886719, -0.49780273, -1.0371094, -1.0771484, 0.6274414, 1.2275391, 0.5390625, -1.3564453, 1.4394531, -2.5566406, -3.1503906, 0.2932129, 1.8378906, 1.0927734, 2.4941406, 1.9726562, 0.53027344, -0.01713562, -0.26171875, -0.20861816, 2.1757812, -2.2480469, -0.5390625, -0.37231445, 1.6269531, -2.765625, 0.75146484, 1.5439453, -1.2236328, 3.5878906, -1.6162109, 0.6616211, -2.8613281, -0.92822266, -2.5195312, 2.2734375, -0.3388672, 4.5859375, 1.5957031, 1.4892578, 0.18017578, 1.8212891, 1.0693359, -1.8183594, -0.09088135, 1.5595703, -0.7338867, 0.88427734, -0.11755371, 2.421875, -1.9775391, 1.4228516, -2.390625, -0.79052734, -2.5175781, -1.4980469, -0.17443848, -3.5039062, -0.8095703, 1.8300781, -1.2070312, -3.9667969, 1.75, -2.6152344, 1.0849609, 2.0175781, -1.5341797, 0.9272461, -2.1640625, 0.30908203, -2.125, 3.2753906, 1.3681641, 0.9667969, -2.109375, 2.2226562, 1.2568359, 2.2773438, -1.6660156, -1.9248047, -0.3564453, 0.5727539, -3.8261719, 1.0683594, -0.021713257, -0.8461914, 0.94873047, 0.546875, -1.0488281, 0.5073242, 0.20031738, -1.4287109, -1.2783203, 2.5253906, 1.7460938, 1.5107422, -0.9550781, -5.3515625, -1.0244141, -0.3791504, -2.0332031, 1.0273438, 0.7080078, -0.16918945, -0.8754883, 0.40649414, -0.30981445, -3.1679688, 0.15393066, 0.98095703, 0.4567871, 0.01939392, -4.796875, -2.0957031, 0.42651367, 1.3515625, 1.3056641, -1.0429688, -0.44433594, -0.9692383, 1.1513672, -3.2167969, -1.1259766, 1.6132812, -0.24145508, 1.2509766, 2.8359375, 0.057434082, 0.027633667, 1.6513672, -0.21118164, -0.6699219, -1.2304688, 1.7246094, 3.34375, 1.9775391, -0.48486328, 0.85253906, 0.3479004, 1.1660156, 1.2373047, 3.265625, 0.10418701, -0.009498596, 1.1533203, -2.4042969, -0.22192383, 3.4570312, 1.5869141, -1.078125, 0.40185547, -0.022033691, 2.3671875, -0.17651367, -0.24816895, 1.2763672, 0.98583984, 0.096069336, -1.5478516, -1.9511719, -0.9897461, -0.9003906, -0.53222656, -1.2529297, 0.04345703, 0.8041992, 0.2208252, 0.62402344, 0.92041016, -0.029434204, -2.0097656, -2.8046875, 0.8515625, 1.7646484, 2.1816406, -0.34326172, 0.43408203, 1.3447266, 0.13317871, 0.48510742, 1.9941406, 1.8330078, 1.1611328, 1.9462891, -3.1347656, -0.52978516, 0.8417969, -1.09375, 2.8066406, 2.2519531, -0.49072266, -0.9321289, 0.96484375, -2.5351562, 1.8007812, 0.16809082, -0.091918945, 1.6005859, -1.7958984, 0.96972656, -3.0527344, 0.9838867, 2.2890625, 1.6142578, 1.0908203, -1.7929688, 0.37695312, 3.453125, -1.2832031, -1.3515625, 1.2939453, 3.8046875, 1.1269531, 2.4335938, 0.5126953, -0.6196289, 0.17578125, -0.8745117, 0.92529297, -1.6435547, 0.91064453, 3.375, -0.7548828, -0.8173828, -1.5820312, 1.2197266, 1.4150391, -0.72558594, -0.14245605, 0.07269287, 1.6816406, -1.7558594, -2.3984375, 1.4287109, -0.9970703, -1.3818359, 2.0078125, -0.4165039, 0.5800781, 0.18261719, -1.5185547, 0.11767578, 0.87841797, -2.4472656, 1.6289062, 0.046081543, 1.3525391, 1.5185547, -1.3730469, 0.69091797, -2.8613281, -0.28027344, 2.3964844, -1.4472656, -1.3046875, 2.2460938, -2.2128906, -1.5664062, -1.0253906, 0.43847656, 1.7060547, 1.2578125, 0.2553711, -2.3574219, -0.12121582, -0.31152344, -1.9130859, -0.57128906, 3.3574219, -0.068359375, -0.9272461, -0.008308411, -0.7319336, 0.33007812, 2.1152344, -2.0878906, 0.043273926, 0.6274414, -0.35205078, 0.70703125, -0.7504883, -0.28320312, -1.9462891, 1.3642578, -3.671875, -0.7973633, -0.32910156, 0.8232422, -1.5273438, -0.5683594, -0.87890625, -2.0136719, 0.12243652, -0.3642578, 1.4726562, -1.2109375, 2.4414062, -1.2197266, 0.07366943, 0.7441406, -2.0175781, -3.6855469, 0.22290039, -0.28466797, -0.7026367, 0.19592285, -3.2089844, 0.05154419, -0.39453125, -0.03668213, -1.6367188, -0.33569336, -0.033935547, -0.32495117, 3.0625, -0.5859375, 1.421875, 1.546875, -0.28271484, -0.9326172, -0.62890625, 0.0058059692, -0.034973145, 0.16906738, -1.8398438, 0.44873047, 0.066833496, -0.5332031, 1.7666016, 0.79345703, 0.075927734, 0.5966797, -1.2431641, -0.5991211, 1.0869141, -0.38305664, 1.03125, -0.5913086, 0.56689453, -1.6445312, -0.055633545, 4.1054688, 2.140625, 4.0585938, 1.2011719, 0.5136719, 0.44726562, -0.6069336, -0.89990234, -1.0527344, 0.19702148, 4.0078125, -1.5820312, 0.39233398, -0.36791992, 1.3105469, -3.3378906, 0.64404297, -0.1640625, -0.22314453, 3.8867188, -0.5986328, -1.2402344, 1.0244141, -0.9638672, 1.9492188, -0.091918945, 0.12927246, 0.37817383, -0.5473633, -0.16503906, 0.040222168, 1.3828125, 0.53564453, 0.27856445, -0.2529297, 0.8544922, -0.0007457733, 0.94384766, 0.07293701, -0.17248535, -0.9746094, 0.6035156, 0.91552734, 0.2524414, 2.0058594, -0.44726562, 1.0849609, 1.0439453, -2.1328125, 0.75097656, 1.1113281, 0.9838867, -0.9057617, -0.22607422, -0.7524414, -0.18139648, -0.29467773, 1.0595703, 1.9130859, 1.4130859, 1.2246094, -0.14221191, 0.14343262, -1.7441406, 1.9921875, -1.0136719, 1.8466797, -0.55126953, -0.6386719, -1.2138672, -2.1015625, -1.8466797, -3.8886719, -0.6586914, 3.4335938, 0.65722656, -1.1464844, 0.2993164, 0.75097656, 1.2480469, 1.5078125, -1.2734375, -0.15063477, -0.4321289, 0.4819336, -0.47631836, -1.2646484, 1.0732422, 1.0820312, -3.0449219, -0.16308594, 0.017410278, 2.4023438, -0.46289062, 0.8774414, -1.0664062, -1.3359375, -1.5273438, 1.2978516, 0.09503174, 1.7099609, -0.20422363, 1.7744141, 0.87158203, -1.5253906, -1.6113281, -0.80322266, -5, 1.0214844, -1.4521484, 0.14941406, 2.3320312, 0.7441406, -0.11975098, 2.46875, 1.7714844, -4.9570312, -1.1318359, -1.5068359, 1.7509766, -2.8554688, -1.5263672, 1.9833984, 2.6621094, 0.4284668, -1.1953125, -0.13061523, -1.7617188, -1.6337891, -1.5644531, -0.40966797, -0.5913086, -1.9736328, 1.0683594, -0.60498047, -1.8164062, 0.48095703, -0.47021484, -0.6582031, -2.8613281, 2.2011719, 0.99072266, 0.032196045, -0.52685547, 3.9472656, 3.5175781, -0.42504883, -0.78759766, -0.5151367, 2.4707031, -0.095336914, -3.5722656, -1.4941406, -1.2568359, 1.5380859, -1.5009766, -0.9091797, 0.8154297, 0.39282227, 0.12988281, 1.9794922, 0.67822266, 1.2050781, -1.0253906, -3.3710938, 0.6816406, 0.6064453, -1.1455078, -0.035308838, -0.56933594, 0.06573486, -0.10217285, -0.94091797, -3.5351562, 0.3828125, -0.23522949, 0.14221191, -2.1582031, -0.02053833, 0.7114258, 1.0996094, 0.009941101, 0.11669922, -0.36572266, -0.7084961, 1.9003906, -0.32788086, -0.42041016, -0.88183594, -1.7402344, 1.3496094, 2.3613281, -0.18896484, 0.4350586, 0.3413086, 1.2587891, 0.08520508, 0.45654297, 1.1376953, -1.921875, -0.5341797, 0.64941406, -2.1992188, 2.2539062, -0.2993164, 1.0761719, 0.7314453, -2.1347656, -1.9619141, 1.8837891, 3.0332031, 1.3417969, 0.42578125, 0.5488281, 1.7148438, 3.5917969, 1.1015625, 1.3320312, 0.51464844, -1.4882812, 0.09136963, 1.1494141, 2.53125, -2.2070312, 1.8388672, 1.8486328, 1.6425781, 2.5917969, 0.7548828, 0.6245117, -2.046875, 0.17504883, 0.37573242, -1.0625, -1.4658203, -0.62158203, -0.39746094, 1.2128906, -1.1591797, -1.7871094, 0.67041016, 1.2578125, -1.7949219, 1.4804688, 0.6010742, 0.36669922, -0.8388672, -3.4003906, -1.8378906, -1.5195312, -0.56591797, -0.2685547, -1.3183594, 1.7402344, 1.8134766, 0.9057617, 2.7460938, 0.3798828, -0.27954102, -0.8720703, -0.20141602, -0.3557129, -1.2695312, -2.3398438, -0.9501953, 0.6826172, -0.07891846, 0.28466797, -0.68359375, -0.28808594, 0.8071289, -2.4199219, -1.8974609, 0.21008301, 0.7944336, -0.13171387, -0.72558594, 2.7714844, -0.15612793, -0.5854492, -0.9975586, 0.037475586, -0.6894531, 2.8203125, 2.484375, 0.3569336, -1.1796875, -0.2709961, -3.0449219, -5.0351562, -0.68896484, 0.8339844, 1.0390625, 1.4775391, -3.6835938, 0.31811523, 2.6542969, -0.96728516, 0.6689453, -2.7246094, 1.3613281, -0.15820312, 0.16381836, 0.20483398, 1.0136719, -0.4790039, 0.5024414, -0.25732422, -1.6367188, -1.1582031, -3.3574219, -2.3320312, 2.0507812, -2.140625, -1.9589844, 2.1835938, -0.6870117, -2.1210938, -0.59814453, 1.3818359, -2.9238281, 0.80371094, -3.265625, -0.29614258, 1.1103516, -1.2119141, 0.3100586, 0.48339844, 0.23083496, 1.5859375, 2.4277344, 2.21875, -1.9609375, -1.0371094, -0.20983887, 0.6982422, -0.023391724, -0.7890625, 1.2431641, -0.7783203, 2.71875, 3.3710938, -0.6074219, -1.2636719, -1.3427734, -1.6816406, 0.5522461, -0.10406494, 0.51904297, -0.62597656, 1.0039062, -0.23608398, -0.7832031, -0.24023438, -0.6928711, -0.49829102, -0.90527344, 2.296875, -2.2988281, 2.2441406, 0.45581055, -1.7421875, -3.3828125, -0.5546875, 3.0664062, 1.0439453, -0.51464844, 2.0332031, -1.1435547, 2.0058594, 1.53125, -0.59765625, 1.5996094, -0.015007019, 0.33740234, -0.82666016, -1.6835938, 1.3857422, -2.171875, 0.8847656, 1.3720703, -0.3071289, 0.65527344, -0.35229492, 1.9648438, -2.0644531, -0.11853027, 0.5073242, 0.42260742, -2.3925781, 0.10070801, -0.62109375, -1.9462891, 1.3710938, 1.0527344, -3.0019531, -1.8681641, 1.9882812, -0.98779297, -1.0234375, 2.2851562, 1.8554688, -1.4775391, -2.2167969, 1.5498047, -1.0488281, -1.3007812, -0.5576172, -2.3886719, -0.42749023, 1.0048828, -2.8945312, 0.33984375, 1.0410156, 2.5449219, 0.5957031, 0.20031738, 1.5898438, 2.5507812, -0.2800293, 2.4746094, 3.8222656, -0.5366211, 1.5986328, 1.2119141, 2.8027344, 1.8632812, -2.8457031, 0.87060547, 0.7475586, -1.2519531, 0.7236328, -1.4160156, 0.390625, 0.055023193, 0.034606934, -0.7480469, -0.024932861, 2.5097656, -3.1738281, -0.32421875, 0.36743164, -2.3066406, -2.0605469, 1.6962891, -2.3632812, -0.40356445, 0.5307617, -0.4892578, 1.8613281, 0.50146484, -1.6269531, 0.01222229, 0.14807129, 2.5996094, 0.75439453, 0.8696289, -2.1757812, -3.0351562, 1.6328125, 2.4824219, 0.38330078, 0.7915039, 0.8232422, -0.7626953, -0.20275879, 1.71875, 1.1201172, -1.1376953, 1.6708984, -1.6708984, 1.7695312, 2.7421875, -0.49951172, 2.2890625, 1.0703125, -0.8183594, -4.1640625, 1.4316406, -1.4941406, -1.7734375, -0.59472656, -4.0859375, 0.3076172, -1.9277344, 0.4753418, -4.53125, 0.0635376, 0.60546875, -1.7421875, 2.0253906, -0.0892334, -1.6425781, 2.5703125, 0.8754883, -0.48876953, -0.6743164, 2.5253906, 1.6542969, -0.9448242, -0.111328125, 0.48046875, 0.45751953, -0.7861328, 4.2109375, 0.05886841, -0.39331055, -0.19750977, 0.35620117, 1.2490234, 1.9296875, -0.859375, 0.06933594, 1.6376953, 0.8017578, 0.15930176, -1.8447266, -0.9604492, 0.5058594, -0.3642578, -0.27856445, -0.7792969, -0.97021484, 0.4423828, 0.84375, -1.9697266, -0.33813477, 1.2109375, -2.7128906, 1.0517578, 1.2373047, -2.3769531, -0.5473633, -1.3066406, 1.1748047, -1.8886719, 1.2011719, -1.1708984, 0.67333984, -1.2246094, -0.21179199, -1.0869141, -0.5341797, -1.9589844, -0.9042969, 0.9785156, 1.5810547, -1.4033203, -0.76416016, -2.1074219, 1.9238281, 0.8076172, 0.70410156, 0.77441406, -1.171875, -0.72216797, 1.5498047, -1.2861328, -0.56591797, 0.054870605, 2.2167969, 0.62841797, 1.4638672, -0.9658203, -1.2734375, -0.9580078, -2.0019531, 0.84716797, -0.27954102, -1.8603516, 1.140625, 2.1640625, 2.3300781, -2.09375, -0.24682617, 0.75146484, 0.43066406, 1.8164062, -1.4472656, -0.99365234, 0.48095703, 0.80566406, 1.2451172, 2.3691406, 4.6640625, -0.5419922, -0.71875, 1.1455078, -1.3632812, -0.6323242, -1.4443359, -0.48291016, -0.99365234, 0.9057617, 1.4570312, 2.8710938, 0.04385376, -2.2871094, -1.2841797, 1.2529297]}, "B00L1RSKHQ": {"id": "B00L1RSKHQ", "original": "Brand: KitchenAid\nName: KitchenAid Built In Head Propane Gas Grill in Stainless Steel\nDescription: \nFeatures: Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions\nNo assembly required\nPackage Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H\nFull stainless Steel construction\n", "embedding": [-1.5117188, 0.8676758, 2.734375, 1.3027344, -0.3791504, 0.7421875, -1.8916016, -1.3359375, 0.009231567, 2.1835938, 0.6538086, -0.328125, -1.7851562, -1.4072266, 0.55615234, 0.053344727, 1.3476562, 0.9995117, 2.8710938, 0.6533203, 0.6347656, -0.019760132, 0.8232422, -0.55126953, 0.47436523, 0.99365234, 2.8144531, -3.4355469, 0.18579102, -1.6044922, 0.42529297, 0.6040039, 0.5541992, 0.48120117, -1.6591797, -1.4814453, -2.1171875, 0.7495117, -4.515625, -0.9033203, -0.9003906, -1.5986328, -0.08929443, 1.2890625, -2.1660156, 1.0019531, -0.41015625, 0.87646484, -2.8066406, -0.17297363, 0.95410156, 0.3449707, -2.0292969, 2.6699219, -0.99316406, 1.7333984, -0.12249756, -2.0957031, 0.34057617, -1.8154297, 2.625, 0.2668457, -1.5625, -0.5175781, -1.4853516, -0.64208984, 2.3066406, -1.1269531, 1.1054688, 0.35961914, 2.1464844, -1.6640625, 0.44384766, 0.32104492, -1.7666016, -2.4960938, -2.3027344, 0.24658203, 0.3786621, -0.020004272, -2.546875, 1.1650391, -0.57958984, -2.8007812, 0.37670898, 0.33569336, -0.9296875, -3.4023438, 0.5600586, 0.63427734, -0.2524414, 3.0371094, -2.8984375, -1.7480469, 1.2685547, -0.67041016, -0.16638184, 1.4296875, 0.43237305, -1.1513672, -1.1201172, 0.5625, -1.046875, -0.6899414, -0.76123047, -0.7993164, 1.5683594, 0.097473145, -4.6484375, -0.21386719, -0.39770508, -0.32177734, 0.57958984, -0.42993164, 1.0126953, -0.106933594, 1.8564453, 1.8125, 2.3378906, 3.9667969, 2.9179688, -0.12719727, -0.51171875, -0.24450684, -0.2265625, 1.6220703, -2.3730469, 2.6503906, 5.5507812, -1.8339844, -0.80615234, -2.1972656, 3.6679688, -1.0810547, -1.5820312, -1.4941406, -0.42749023, -0.8305664, -2.125, 0.88623047, -1.3476562, 0.7216797, 0.69091797, -0.17102051, -4.0351562, -1.7695312, 0.09680176, 0.88964844, -0.82714844, -1.7060547, 0.85791016, -1.8173828, 1.5439453, -0.91796875, 2.4257812, -0.6142578, -1.9355469, -2.0820312, 4.171875, 0.8901367, 1.3427734, -2.7539062, -1.3896484, 1.3955078, 1.7822266, -1.2509766, -1.0683594, 1.3212891, 1.1279297, 1.7138672, 0.5498047, -1.8310547, -0.78271484, -0.37353516, -0.4086914, -0.83203125, 1.0009766, 1.421875, 0.47387695, 0.97216797, -1.859375, -3.703125, 0.29125977, 0.8364258, 1.1845703, -0.96191406, 1.2939453, -0.066101074, 2.2695312, 0.046691895, 0.12866211, -0.36669922, 1.5908203, 0.041900635, 0.90234375, -1.0917969, -0.47070312, -1.3251953, 0.18457031, 0.32250977, -0.9194336, -0.87597656, -0.5214844, -0.43579102, -0.6352539, -1.4375, -0.83691406, -3.8769531, 1.2373047, 3.7128906, 3.171875, -2.2402344, 1.890625, -2.2773438, -0.40234375, -1.8349609, 0.9902344, 0.53808594, 3.1914062, 2.0078125, 0.10467529, 1.3417969, 0.7128906, 1.5146484, -0.06842041, 0.67626953, 1.4013672, 3.75, -0.83691406, -0.5083008, 2.5253906, 1.1308594, -0.5444336, 0.10192871, -0.71875, 1.7314453, 0.23144531, -1.0351562, -1.2441406, 1.4316406, 1.7158203, -1.0957031, -1.2470703, -3.0664062, -1.7988281, -0.16113281, -2.1289062, 0.116882324, 0.5180664, 2.4023438, -2.140625, 0.8720703, -1.2109375, 2.0917969, -0.116760254, 0.6645508, -1.2597656, 1.5986328, -0.61376953, -2.9433594, 0.5644531, -0.6586914, -2.015625, -1.1660156, 0.9145508, -0.83251953, 4.0039062, -0.35864258, -3.4609375, -0.9194336, -0.13757324, -0.3161621, 2.2480469, 0.13989258, -0.006313324, 2.25, -0.7451172, 3.5820312, 1.0576172, 1.1582031, -0.093444824, -0.16223145, 1.4179688, -2.3730469, 0.105529785, 0.79296875, 1.9306641, -0.76416016, -0.8691406, 0.3881836, 4.7773438, 0.2076416, -3.2363281, 2.8867188, -1.0322266, 1.7714844, 2.0898438, -0.56103516, -0.7060547, -1.3310547, 1.2802734, 0.50341797, -0.9511719, 1.5332031, -0.41992188, -2.7832031, 0.1348877, -0.45703125, 0.96240234, -0.68115234, -1.8964844, 0.6899414, -3.1621094, 1.7001953, -1.3173828, -0.41088867, 1.5097656, -3.3808594, -0.3088379, 0.9682617, -0.5161133, 1.6591797, -0.52490234, -1.3095703, -0.46826172, -0.047454834, 0.4272461, 0.92578125, -0.46142578, -2.0292969, -1.6220703, -0.9399414, 1.4072266, -0.9453125, -2.4765625, -0.2277832, -2.9882812, -1.5068359, 1.3515625, -2.4980469, -0.90625, 2.6484375, -1.6171875, 2.171875, -1.3388672, -2.9589844, -2.1230469, -0.27368164, -1.7910156, -0.28881836, -0.60058594, 1.2890625, 0.41333008, -4.34375, 0.09185791, 1.6572266, 1.6484375, 0.6557617, 0.113342285, -0.5214844, 0.69873047, -0.24157715, 0.47705078, 2.2558594, 1.9423828, -0.4321289, 1.1679688, -3.9609375, -0.8598633, -4.1132812, -0.60009766, -0.35375977, 0.6010742, -2.78125, -1.5078125, -0.81152344, 0.54248047, 2.7226562, -0.2788086, 1.1279297, -1.4492188, 1.484375, 0.9033203, 0.79541016, -0.7290039, -1.7333984, 1.6972656, -1.984375, -0.6098633, -1.1269531, 0.5732422, -0.4716797, 0.9838867, -0.73535156, 0.3947754, -1.3525391, 0.28710938, -0.85791016, -1.0449219, 1.0673828, -0.81347656, 0.0473938, -0.060943604, -2.0371094, 0.26782227, -3.2382812, -1.9980469, 1.4980469, 0.78027344, -0.8432617, 0.07244873, 3.4179688, -0.5410156, 2.1347656, -2.4472656, -2.6972656, 2.4882812, 1.3916016, -2.3242188, 1.5117188, -2.546875, -2.5839844, -2.3632812, -0.27441406, 3.2246094, 1.1269531, 1.7490234, -1.5703125, -0.11907959, -0.58984375, 1.2822266, 1.9980469, -3.0117188, -0.1026001, 4.28125, -1.6181641, -2.0800781, 1.8544922, 3.5957031, -2.3652344, -1.5195312, 2.6347656, 1.2158203, 0.24853516, 2.9765625, 1.7958984, 0.64697266, -1.5634766, 2.3867188, 1.7470703, 0.33666992, 0.054260254, -2.1503906, 0.23144531, -1.5966797, 2.7675781, 1.1591797, 0.28027344, 3.78125, 1.3916016, 0.4729004, 0.3371582, -1.6103516, -2.0878906, 0.2010498, -1.4033203, 2.328125, -1.7236328, -0.117126465, -0.8125, 0.43237305, 1.4736328, -0.67822266, -0.28271484, 3.0449219, 0.15563965, 0.82958984, -0.4880371, 0.5410156, 0.6796875, -0.71875, -0.29516602, -0.0037708282, 1.4667969, 1.0703125, 0.9433594, -0.21606445, 0.099121094, 1.1513672, -1.3183594, -0.4104004, -0.44213867, 2.4980469, -1.703125, -1.7382812, 1.0751953, -1.7080078, -0.7392578, -0.021057129, 0.13989258, -2.125, 1.171875, -1.7939453, 1.7265625, 0.69189453, 0.0104522705, 1.6259766, 1.2958984, 1.9765625, 0.036590576, 0.8984375, 2.5234375, -0.11425781, -1.8466797, -0.3737793, -2.6269531, 0.8569336, -1.1484375, -0.3857422, -3.3085938, 1.4882812, 0.48461914, 2.5410156, -1.0429688, 2.0976562, -0.47583008, -1.3876953, 1.1816406, -2.875, -0.5234375, -1.9707031, -3.9707031, 1.2197266, -2.9804688, -0.52734375, 0.9550781, 1.1806641, 0.6772461, 1.0810547, 2.1074219, -2.8808594, -1.2890625, -0.7265625, -0.04626465, -1.0146484, -0.10797119, -0.055847168, 0.3334961, -2.328125, -2.8476562, 0.8046875, -1.0498047, 1.6777344, 2.3417969, -2.6074219, 1.6650391, -1.3935547, 1.015625, -1.5292969, -0.5722656, 1.4433594, -1.8007812, 0.3881836, -2.8242188, 1.7529297, 0.8823242, -0.6064453, 1.8037109, 3.8769531, 0.29760742, -2.9609375, 1.2529297, 1.7519531, 1.7988281, -2.0371094, -1.5458984, -0.75683594, 1.5136719, 0.8540039, 0.4885254, 0.16088867, -2.3710938, -2.9589844, 2.8789062, 1.6132812, 0.0061531067, 0.17041016, -0.12194824, -3.6816406, 0.3786621, -0.06298828, -2.2246094, -0.74853516, 0.7011719, 0.54833984, -1.4423828, 1.2265625, -1.6816406, 1.2275391, -1.3730469, -1.5703125, -3.8652344, 2.3769531, 2.5039062, 0.9482422, 2.2050781, -0.0769043, -2.0527344, -0.7348633, -0.2746582, -0.15795898, 1.09375, -2.0546875, -1.4208984, 0.2770996, 0.59814453, -2.6152344, -0.14221191, 1.3193359, -2.1191406, -0.08514404, -3.9179688, 0.96191406, -0.24499512, -2.9824219, 1.4833984, -1.0644531, 2.3457031, -1.0126953, -1.5214844, -0.44555664, -0.0037822723, -0.93115234, 0.61376953, 0.56591797, 0.5673828, 0.79833984, 2.0527344, 1.8203125, -0.5654297, 0.48095703, -0.10455322, 3.5390625, 0.3701172, 0.4362793, 0.38330078, 0.99365234, -0.9248047, 0.42993164, 1.5546875, 2.7597656, 0.44921875, 3.4082031, 2.171875, -2.5, 0.43945312, 0.97021484, -2.0605469, -0.68310547, 0.71533203, -1.2773438, 2.3574219, -0.7558594, -2.2128906, 0.71435547, 3.5292969, -0.9760742, -0.63671875, -1.203125, -1.8251953, -0.6074219, -2.9570312, -2.0117188, 0.33374023, -0.6977539, -0.6201172, -2.1289062, 0.116760254, 0.62597656, 2.3007812, 3.1054688, -0.7871094, -1.9072266, 3.34375, -1.046875, 1.3125, -0.9248047, 0.5834961, -2.9179688, 1.2568359, 3.9746094, 1.4052734, 1.0605469, 0.30908203, 1.7490234, -0.5576172, 0.8691406, -0.89697266, 3.4746094, -1.2695312, -2.0527344, 0.85302734, -2.0332031, -1.1875, -3.21875, 0.02947998, -2.140625, 2.7558594, 2.3222656, -0.07385254, 0.5107422, 0.7910156, -0.98291016, -3.4140625, -0.8198242, 0.93652344, -0.7290039, 1.4746094, 3.2519531, -0.7158203, 0.58984375, -0.01864624, -1.1347656, -1.0175781, 0.040863037, 1.0507812, -2.0566406, -0.16516113, 0.2705078, -1.5058594, 1.0820312, 1.3808594, 0.14746094, 0.62841797, -3.25, -1.6113281, 2.7207031, -1.2626953, -0.22229004, 2.6132812, 1.0273438, 0.57714844, 0.6464844, 1.1259766, -3.2792969, 2.5703125, -1.3173828, -0.6933594, 2.3007812, -0.61376953, -0.5058594, 0.41308594, -0.90283203, 1.2666016, -0.81591797, 1.0078125, -0.1027832, 0.3310547, -0.005771637, 1.5625, 0.07940674, 0.38305664, 0.15991211, 0.61035156, 0.27246094, 1.2294922, -3.4609375, 0.43945312, -1.5976562, -1.5986328, 1.1279297, -3.2207031, 0.57666016, -1.9882812, -2.4746094, 1.6337891, -0.58251953, -0.7817383, 1.0898438, -0.89501953, 0.26586914, 1.9638672, -1.2519531, 3.0410156, 3.4960938, -0.6376953, 0.5629883, -1.0429688, 0.4182129, 0.8598633, 0.08337402, -1.3066406, 0.6772461, -0.17626953, 0.9238281, 0.41625977, 0.21887207, 3.2304688, -0.44433594, -3.9003906, 1.4189453, 4.0742188, -0.28295898, 2.6386719, 0.77685547, 0.5078125, 0.21557617, 5.140625, -0.3659668, -0.42358398, 1.2236328, -0.7265625, 1.3818359, -0.8515625, -1.6259766, -2.0253906, -4.5078125, -0.43017578, -2.265625, -1.1347656, -2.1054688, 0.78125, 0.12731934, -2.0644531, 0.3034668, 2.4941406, -0.8100586, 1.7900391, 1.9023438, 2.0527344, 0.21020508, 0.82714844, -0.71484375, 0.30859375, 2.5878906, -2.3457031, 1.6347656, 0.8339844, 0.1060791, -2.515625, 4.3515625, 2.0019531, 1.5087891, -0.27294922, 2.1347656, 2.3164062, 0.9658203, 3.0546875, 0.6503906, 0.59765625, 1.7236328, -0.2524414, 0.05770874, 1.1630859, 1.7197266, -0.11364746, -0.87646484, 0.4506836, -2.640625, -0.6899414, 0.1796875, 1.0869141, 0.47045898, -2.5273438, 0.49243164, -0.37353516, 0.2019043, -2.9804688, -0.69140625, -0.49975586, -1.0029297, 0.3869629, 0.8286133, 3.8886719, -1.3095703, 2.0449219, -1.4863281, 0.32885742, 0.6479492, -1.9257812, 2.0273438, -0.72265625, -1.4150391, -2.5449219, 0.52441406, 0.22570801, -0.9033203, -1.2597656, 0.66552734, 1.7363281, 1.2001953, -1.1025391, -0.7373047, 1.6572266, 1.2363281, 1.9921875, 0.5522461, -1.2753906, 1.6621094, -0.31835938, -2.9707031, -5.203125, 2.7832031, 0.35253906, 1.7109375, -0.23803711, -4.4765625, 1.1201172, -0.96972656, 1.1240234, -1.9951172, 1.2832031, -0.72802734, -2.7167969, -0.73535156, 2.0703125, 0.6826172, 3.7753906, 0.5019531, -1.9462891, 2.8183594, 0.46850586, 1.5722656, 2.0800781, 1.1474609, 0.8413086, 1.5341797, -0.005290985, 2.2988281, 0.84765625, -0.33911133, 0.11242676, 2.4804688, 1.5253906, 1.7011719, 2.6757812, -1.7470703, -0.24243164, 0.5463867, 0.47021484, -1.1660156, -2.6523438, -0.5878906, -0.49438477, 2.0234375, -2.0859375, -0.39086914, 4.1992188, 2.3496094, -0.019683838, -0.5732422, 0.9760742, -0.75341797, 0.9614258, -0.87841797, -0.7885742, -0.23242188, 0.0368042, 1.9277344, -0.8413086, -1.7373047, 0.16809082, 1.0292969, 1.9345703, -0.33276367, -0.49853516, -1.0458984, 0.45458984, -0.4387207, -0.43725586, -0.6328125, -0.9873047, 2.0859375, -0.016418457, 0.8642578, 1.6884766, -1.5498047, 0.3112793, -2.0800781, -1.0576172, -0.039093018, -0.6274414, -0.28466797, 3.1796875, 3.0292969, -0.0107803345, -0.39404297, -1.0625, -3.8339844, -0.31982422, -0.4152832, 0.75, -1.3808594, -2.8417969, -0.08294678, 1.3417969, 0.09625244, -0.53027344, 0.12670898, -0.046905518, -0.42993164, 0.9555664, -0.7753906, 1.2578125, 1.3427734, 0.7988281, -0.19042969, 1.3515625, -0.8569336, -1.9570312, 1.7929688, 1.1337891, -0.34521484, -2.5449219, 1.3867188, 0.26416016, 0.44848633, 0.9614258, 1.140625, 0.94189453, 1.4580078, -1.9658203, -1.1357422, -3.0527344]}, "B07P5KPZ1T": {"id": "B07P5KPZ1T", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.\nFeatures: \u3010Adjustable Propane Regulator\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "embedding": [-1.2597656, 2.4101562, 1.7324219, 0.020111084, -1.0019531, 0.28344727, 1.6875, -1.171875, 1.3662109, -0.50878906, 1.5292969, -0.3503418, 1.6962891, -0.8222656, 2.1835938, 0.9394531, 0.8432617, 0.5996094, 1.3837891, 3.3964844, 0.90234375, 0.4645996, 2.2148438, -0.45532227, 1.4863281, -0.6333008, 2.5332031, -3.3085938, -0.3725586, -1.015625, 2.40625, 0.9794922, 0.31274414, -0.19360352, -1.8251953, -1.3007812, -0.0592041, 0.8125, -2.7753906, -1.0224609, -0.7348633, -0.6298828, 1.4326172, -0.9951172, -1.9775391, 1.2060547, 0.5107422, 0.8881836, -0.83984375, 0.4934082, 1.5576172, -0.9711914, -0.64941406, 0.27294922, 0.10681152, -0.24731445, 0.57910156, -1.6904297, 1.8632812, 1.8916016, 2.0722656, 0.99560547, -1.7480469, -0.4663086, -0.99853516, -0.26464844, 0.1685791, -0.234375, 0.8017578, 0.9248047, 1.7226562, 0.70654297, 1.3554688, -0.1739502, -0.22851562, 0.8354492, -1.9707031, -0.31640625, 4.3789062, 1.2958984, -1.40625, 1.0625, 0.9555664, -2.4570312, 2.2441406, -0.28125, -0.93847656, 0.15930176, 3.7207031, 0.76416016, -1.3955078, 2.9414062, -3.4667969, -3.4960938, 2.0175781, 2.4648438, 1.7089844, 0.14489746, 1.5224609, 0.17822266, -1.1601562, -1.4130859, 0.06976318, 1.3505859, -1.6679688, -0.5644531, 0.13708496, 2.7851562, -3.9492188, 0.20324707, 0.59814453, 1.0703125, 1.8408203, -1.9169922, 1.1142578, -2.8808594, -0.6435547, -0.6328125, 2.9101562, 2.4375, 2.3574219, 0.41748047, -1.2949219, 0.36523438, -0.16809082, 0.31176758, -0.5229492, -0.035461426, 3.6738281, -1.5761719, 0.21606445, -3.5566406, 2.3222656, 0.25732422, 1.5976562, -2.0742188, -1.2099609, -2.3027344, -2.7929688, -0.4074707, -3.9511719, 0.8354492, 0.10473633, 0.17236328, -1.7050781, 0.9482422, -1.8710938, 0.73779297, 2.9472656, -2.0253906, 2.8261719, -1.421875, -0.55029297, -0.34277344, 1.1054688, 0.96191406, -0.09869385, 0.093566895, 2.203125, 1.7763672, 1.4619141, -2.4042969, -2.2421875, 1.7646484, 0.6425781, -1.2949219, 0.50878906, 0.025497437, 0.8208008, 1.7929688, -0.007457733, -1.890625, -0.79785156, 0.5620117, -0.73583984, -1.4746094, 0.83447266, 3.296875, 1.8857422, 0.39941406, -3.4765625, -2.3105469, -0.27392578, -0.08013916, 1.0332031, 0.050994873, -1.1542969, 1.0507812, 1.3310547, -2.2519531, -0.9345703, -0.02142334, -0.062805176, 1.0009766, -0.13500977, -2.5644531, -2.9980469, -1.65625, -1.9462891, 0.68066406, -2.2792969, -0.91308594, 0.8364258, -0.29248047, -2.0429688, -1.1298828, 0.81591797, -1.6513672, 0.21643066, 2.1113281, -0.033813477, -1.8564453, 0.91064453, -0.41796875, 0.54589844, -2.6582031, 1.4394531, 2.46875, 0.60253906, 1.3339844, -1.203125, 0.1394043, 0.9790039, 1.6708984, 2.0078125, 1.1972656, -1.0683594, 2.1367188, -1.8056641, -1.2978516, 3.3007812, 0.057647705, -0.8828125, -1.609375, -1.2851562, 1.6337891, -0.9370117, 0.5136719, 0.36987305, 0.9838867, -0.3569336, 0.011909485, -1.90625, -0.3779297, -0.66845703, 0.05441284, -2.0449219, 1.2900391, 1.7363281, -0.7260742, 1.2138672, 0.40966797, -0.30151367, -0.9848633, -0.984375, -0.7729492, 0.4182129, 2.1640625, -0.61621094, -1.5644531, 1.8427734, 1.3935547, 0.13586426, 2.9355469, 0.03744507, 0.6220703, 2.0097656, -1.3486328, -0.9584961, 0.35986328, 0.9589844, 2.4824219, 1.9882812, -0.50927734, 0.80859375, 0.09741211, -2.8730469, 1.1005859, 0.19934082, 0.59228516, 0.030075073, -0.38330078, 1.9091797, -2.25, 2.828125, 2.1933594, 1.7246094, 0.37573242, -1.90625, 0.24621582, 5.2773438, -1.2675781, -3.2207031, 1.2060547, 1.1445312, -0.14550781, 0.7504883, 1.7490234, 0.93847656, -1.3486328, 1.3007812, 0.21838379, -1.0410156, -0.08355713, 1.9482422, -0.14770508, -0.57128906, -0.22460938, -1.1386719, 1.9013672, -1.2636719, 0.28857422, -1.8779297, 1.8066406, -2.4160156, -1.6074219, 0.6972656, -2.1992188, -0.34814453, 0.68310547, 1.9570312, 2.0820312, 0.4206543, -1.8789062, 0.24902344, 2.0195312, -1.1083984, 1.3994141, 0.60253906, -1.5273438, -1.0224609, -1.5380859, -1.2646484, -1.7548828, -3.859375, 2.6367188, -3.5410156, -2.1289062, -0.17053223, -1.7705078, -3.4472656, 0.08984375, -0.5571289, 1.4589844, 1.125, -0.8925781, -1.2128906, -0.5756836, -0.3330078, -0.1706543, 0.75683594, 2.484375, -0.9091797, -2.1289062, 0.030593872, 0.48657227, 0.20471191, -0.7919922, -2.3789062, 1.2988281, -0.16125488, 0.34472656, 0.55322266, 0.8676758, 1.5400391, -3.4199219, 2.1757812, -2.7363281, -1.2324219, -0.32348633, 1.4785156, -1.1923828, 0.9814453, -2.1855469, -1.1074219, 0.31152344, -2.0839844, 1.1318359, -1.2480469, 2.9082031, -2.8828125, 1.53125, 1.6015625, -1.1552734, -2.6621094, -0.71240234, -0.37768555, -0.48291016, -0.29516602, -1.7265625, 0.24108887, 0.14196777, 0.49536133, 0.4645996, -1.8457031, -2.296875, 0.73339844, 0.6904297, -1.9150391, -0.38989258, 0.6801758, -0.052215576, -1.6572266, -0.08148193, 0.5566406, -2.4296875, -1.6220703, 0.4868164, 1.4423828, -0.5932617, 1.1542969, 1.1523438, 0.5878906, 0.060760498, -3.0058594, -2.5859375, 1.8554688, 1.8310547, -2.4902344, 1.7226562, -0.97216797, -1.5703125, -1.6699219, -1.9257812, 1.4970703, 2.0234375, 2.9824219, 0.42456055, -0.14196777, -0.64453125, 1.578125, -0.54833984, -2.5449219, 0.73876953, 3.8007812, -1.9033203, -1.5615234, -0.75390625, 1.7636719, -2.6464844, -0.4946289, 2.1386719, 0.26611328, 2.5214844, 1.1875, 2.1113281, 0.7631836, -0.71875, 1.8574219, 0.3623047, -1.1132812, 0.009346008, -1.0644531, 1.203125, -1.2724609, 1.8544922, 2.1679688, 0.19824219, 2.3515625, 0.3251953, 0.5800781, -0.89697266, 0.65771484, 0.64941406, 0.52978516, -0.02178955, 1.1210938, 1.0976562, -0.79785156, -0.50146484, -0.16918945, 0.7138672, -2.2421875, -0.048828125, 0.30493164, 1.1347656, -1.1318359, 0.1887207, -0.7397461, -0.22814941, -1.4296875, 0.12939453, 1.3730469, 1.7958984, 3.0683594, -0.5649414, 0.85839844, -1.8935547, 0.93603516, -0.39990234, 0.37280273, 0.24975586, 0.38964844, -2.7734375, -0.65966797, 0.06866455, -2.9746094, -1.4033203, 3.125, 1.8632812, -0.7216797, 1.5908203, -1.4755859, 1.7001953, 1.5878906, -2.3046875, 0.073791504, 0.20690918, 0.014465332, -0.44335938, -0.63623047, 1.9570312, -0.12231445, -3.765625, 0.15075684, -3.3164062, 1.7421875, 0.42236328, 0.6694336, -3.2792969, 1.265625, 0.62109375, 1.3515625, -0.121032715, 2.5292969, 0.62060547, -0.20483398, 2.2226562, -3.625, -2.0546875, -2.3730469, -5.6835938, 0.17797852, -2.2753906, 1.0966797, 2.2128906, 0.54052734, 1.2011719, 2.1972656, 1.5058594, -3.3652344, -0.83740234, 0.36816406, 1.8349609, -2.5898438, 0.24597168, 2.5644531, 0.39770508, -0.14672852, -1.3261719, -1.3613281, -3.2480469, -0.87109375, 1.296875, -1.4433594, 0.7109375, -1.8076172, 0.040130615, -1.1396484, -1.6650391, 0.671875, -1.5390625, -0.9609375, -3.0644531, 1.6630859, -0.17736816, -0.35205078, -1.1318359, 2.8808594, 2.3613281, -0.4423828, -0.61279297, 0.60009766, 2.515625, 0.6308594, -1.0390625, 0.4885254, -0.04260254, 0.23864746, 0.45581055, -0.9536133, -0.6669922, -0.9057617, 1.1796875, 1.9892578, 0.025939941, 0.8251953, 1.2646484, -2.6601562, 0.64160156, -0.3347168, 0.22961426, -0.17114258, -0.69140625, -1.3242188, -2.0566406, -0.22497559, -1.2998047, -1.4121094, -1.0302734, -0.63720703, -2.703125, 4.3007812, 0.32958984, -1.3261719, 1.0908203, -1.4345703, -1.1113281, -1.2089844, 0.92626953, -2.0898438, 0.40039062, -0.46899414, 1.2958984, 2.0351562, 1.1572266, -1.0048828, -1.0791016, 1.1826172, -3.5605469, 0.88378906, -1.5712891, 1.9257812, 0.47875977, 0.70996094, 1.9433594, -1.4716797, 3.3671875, 1.1826172, 0.20178223, 0.81152344, -1.0693359, -1.6181641, 1.0908203, 2.75, 1.7138672, 1.2988281, 1.0507812, 1.0234375, 2.2265625, 1.2617188, 0.66748047, 0.80859375, -0.04385376, 2.2832031, -0.81933594, 1.9248047, -2.1347656, 0.45483398, 0.40844727, 1.7333984, 1.9804688, 3.4882812, 1.3710938, -1.7089844, 0.9555664, 1.2236328, -0.6142578, -0.95458984, 0.021331787, -2.4980469, 1.2021484, 0.2475586, -1.7099609, -0.17614746, 2.8046875, -1.2636719, 0.98095703, -0.5004883, -1.0292969, -0.0015964508, -1.6816406, -1.1455078, -0.31518555, -0.5473633, 1.0625, -1.8203125, 0.021881104, -0.5751953, 0.58740234, 0.84228516, -0.075927734, -0.31860352, -0.04940796, -1.1884766, 0.80615234, -1.9433594, -0.86621094, -2.6679688, 0.86816406, 2.9179688, 1.1386719, 0.11657715, -0.58984375, 0.2487793, -1.2070312, -1.3935547, 0.19616699, 2.6582031, 0.8383789, 0.09643555, 0.5214844, -0.7290039, -0.74658203, -1.1679688, -0.74316406, -1.3271484, 3.6835938, 2.3378906, 1.4355469, -0.48413086, -1.3964844, -2.2890625, -4.8984375, -0.54833984, 3.4121094, -0.24841309, -0.17114258, -3.3808594, 0.30029297, 1.0458984, -0.70654297, 0.78808594, -3.1640625, 0.32202148, -1.3164062, -0.75683594, -1.4345703, 0.25708008, -0.2788086, 0.19567871, -0.6225586, 0.4086914, -0.26538086, -2.2480469, -2.1191406, 1.2744141, -3.5507812, -0.95166016, 2.1796875, -1.8339844, -1.4892578, 1.1425781, 1.1748047, -2.7128906, 2.1699219, -2.4179688, 0.20703125, 0.3244629, -0.9423828, 2.1152344, 2.1113281, 0.049041748, 1.2636719, 1.8847656, 1.3251953, -1.0712891, -0.7158203, 0.60839844, 0.5419922, -1.1650391, -2.7480469, -0.6044922, 0.08306885, 2.1347656, 1.6591797, -2.640625, -0.88183594, -1.1347656, -4.3554688, -0.119140625, -0.5605469, -1.0849609, -0.4140625, 1.2480469, 2.5800781, -1.5527344, 0.828125, 0.70751953, -0.74365234, -1.2363281, 1.6455078, -0.76464844, 1.8808594, 1.0224609, -0.057678223, -2.765625, -2.0332031, 2.4257812, 3.3964844, -0.5961914, 1.2138672, 0.21838379, -0.0062179565, 0.32910156, -0.63183594, 1.2519531, 2, -0.4855957, -1.3222656, -0.18164062, 2.3046875, -0.7758789, 1.4482422, 1.1708984, -0.91259766, -1.4833984, 3.5488281, 1.4082031, -2.4199219, 1.4257812, -1.7626953, 1.3740234, -0.19909668, -2.4609375, -0.49047852, -2.7460938, 0.29956055, 0.3203125, -2.3222656, -2.5273438, 1.5429688, 0.07159424, -1.8486328, 0.6113281, 3.6621094, 0.94677734, 0.020568848, 1.0751953, 1.828125, -0.640625, 0.05999756, -2.4238281, -0.75097656, 1.7617188, -2.5644531, -1.1464844, 2.3164062, 1.2539062, -2.0390625, 1.1445312, 0.7607422, 2.7460938, -0.09979248, 2.2558594, 3.7109375, -0.075927734, 2.2226562, 1.2324219, 2.25, 3.7773438, 0.32177734, 0.64990234, 1.9013672, -0.29296875, 0.61621094, -0.75683594, -0.0008673668, -0.7055664, -1.3710938, 0.14440918, 1.2275391, 1.4160156, -2.6796875, -1.0664062, -0.7392578, -0.23706055, -4.3242188, 0.043426514, -0.45166016, 1.0810547, -0.25317383, -0.043640137, 1.6259766, 1.1894531, -1.2460938, -1.4912109, 0.23266602, 2.7089844, -2.4824219, 0.59814453, -0.19714355, -3.8203125, 1.4716797, 3.6210938, 0.5605469, -0.20275879, 1.2832031, 0.032196045, -0.81347656, 1.6845703, 1.8066406, -3.1914062, -0.734375, -1.3525391, 2.6386719, 1.3789062, -1.8544922, 3.2636719, 1.1777344, -1.8876953, -3.0078125, 2.6894531, -0.7050781, 0.012306213, -0.29125977, -4.8867188, 3.03125, -1.9697266, 0.83984375, -1.7880859, 0.5644531, -0.80859375, -1.2597656, 1.0292969, 0.5571289, -2.0039062, 3.875, 0.8823242, -2.4804688, 0.095581055, 2.1015625, 1.8466797, 0.4309082, 0.21179199, 0.57958984, 0.6245117, -0.2578125, 2.5117188, -0.15979004, -2.53125, -0.40649414, 2.4179688, 0.5625, 0.6147461, -1.0673828, 1.1787109, -0.6098633, 0.8725586, -0.6459961, -0.6069336, -1.8945312, -0.7446289, -0.117004395, -0.5908203, -1.2714844, -1.1728516, 0.7348633, 0.061431885, -0.8378906, 0.5332031, 1.7910156, -0.68896484, 1.7626953, 1.2246094, -0.7211914, -1.5585938, -1.3769531, 0.6635742, -2.0566406, -0.83691406, 0.033843994, -0.9033203, -0.3347168, -1.9189453, -0.17175293, 1.0371094, -0.017868042, -0.56396484, -0.37939453, -1.7871094, -0.98046875, -0.31933594, -1.734375, 0.8540039, 2.7578125, -0.9638672, 2.5976562, -0.8720703, -1.5390625, -0.28930664, -1.5019531, -1.2519531, 0.69628906, 1.9472656, 0.49926758, 1.6816406, -0.9321289, -2.6191406, -1.0126953, -1.8623047, 2.3320312, -1.4550781, -0.8183594, 0.30688477, -0.016204834, 2.9042969, 0.5292969, 1.5498047, -0.021942139, -0.5493164, 1.1992188, -1.4511719, 0.5185547, -0.84228516, -0.2064209, -1.1210938, 2.8652344, 1.1894531, -2.2167969, 0.50097656, 1.7685547, 0.5292969, -1.5585938, 0.6098633, -0.82177734, -0.42260742, 0.72509766, 2.3496094, 1.7900391, 0.4506836, -1.3046875, 0.8232422, -0.31591797]}, "B085Y769KW": {"id": "B085Y769KW", "original": "Brand: TheElves\nName: TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch\nDescription: TheElves heavy duty waterproof Fire Pit/table Cover:
1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
3#. Waterproof design and air vents at sides can keep fire pit/table dry.
4#. Double stitched seams add the strength of cover.
5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
6#. Protect fire pit/table from UV, rain, dust, bird's dropping etc.
7#. Come with four useful accessories that prevent the cover from being scratched.

Package Include:
1 x Fire Pit Cover
1 x Storage Bag
4 x Accessories That Prevent The Cover From Being Scratched

TheElves Team:
---We are the producers of covers.
---We provide high quality covers.
---We provide efficient logistics.
---We provide satisfactory customer service.\nFeatures: Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table.\nDurable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant.\nWater-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry.\nWindproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated.\nExtra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.\n", "embedding": [0.09820557, 1.6914062, 1.6582031, -2.2441406, 1.1171875, 1.4199219, 1.2265625, -2.5800781, 1.2285156, 2.0839844, -0.63964844, 0.23693848, 0.2775879, -3.8496094, 2.4257812, -0.8691406, -0.04724121, 2.953125, 3.2539062, -0.1907959, 1.5029297, -2.0039062, 2.0234375, -0.73583984, -0.63427734, -0.56396484, 3.5664062, -2.9179688, -0.86865234, 0.24572754, 1.1308594, 1.4365234, -0.19177246, 2.3671875, -2.6191406, -1.5761719, 0.39135742, 0.3876953, -0.8652344, 0.040283203, -2.421875, -3.0605469, 3.5996094, 2.3613281, -1.5742188, 1.4042969, -0.47216797, -0.8105469, 0.078552246, -1.4550781, 2.2890625, 0.94189453, 1.5234375, 0.81933594, -1.3681641, 2.1386719, -0.79296875, -1.6279297, 0.796875, 0.7182617, 1.1865234, -0.37329102, -0.84375, 4.3945312, -2.1914062, -0.83740234, -0.8876953, -0.49023438, 0.28076172, 0.21508789, 1.7451172, 0.68847656, 1.0654297, 1.1972656, 1.6816406, -0.42407227, -3.4472656, 0.94921875, 2.7539062, -2.6640625, 2.0898438, 2.0527344, 0.8930664, -0.9667969, 0.4802246, -0.6982422, -1.7832031, -1.9042969, 0.5678711, 1.1083984, 1.0380859, 3.2675781, -0.7758789, -3.7480469, 0.7807617, -0.80371094, 2.0683594, 0.82128906, -0.8935547, 0.83154297, -0.62597656, 0.9189453, 0.41552734, -0.15979004, -2.9960938, -2.6015625, 2.3789062, -0.16357422, 0.5683594, 0.7216797, -0.40820312, -0.12792969, 1.359375, -0.78027344, -0.7602539, 1.7255859, -1.0410156, 1.6435547, 2.6074219, 1.3789062, 5.1210938, 1.2841797, 1.109375, -1.0820312, 1.921875, 0.39208984, -1.9912109, 0.88964844, 2.4667969, -2.3007812, 0.9458008, -2.921875, 0.5004883, -0.5107422, -2.3125, 1.4189453, -3.0605469, -0.047302246, -2.4296875, -0.53808594, -0.47558594, -1.4658203, 1.5712891, 0.28222656, -2.5410156, -0.31201172, -1.4707031, 5.0820312, -0.01234436, -1.8427734, 0.9345703, 0.9814453, -0.31030273, -2.3769531, -0.62939453, 0.1607666, 1.2832031, -3.5566406, 4.0351562, 0.5751953, 2.4453125, -1.9765625, 2.0039062, 0.4399414, 0.2298584, -0.9008789, 2.1738281, 0.30249023, -0.83691406, 2.8984375, 0.004310608, -1.265625, -1.5576172, 1.3515625, 0.14489746, -1.3681641, 0.9375, 0.55371094, 1.2978516, 0.92822266, -2.375, 0.4194336, 0.2998047, 0.49438477, -0.4086914, -0.34985352, -0.4333496, -2.4023438, 0.62402344, -0.45263672, -2.3613281, 0.032104492, -3.0898438, 0.65527344, -2.5214844, -2.8710938, -2.0390625, -2.0253906, 0.46557617, 0.4885254, -0.8852539, -0.10089111, -1.7275391, 0.39379883, -4.0585938, -0.025787354, -1.4189453, 1.6123047, 2.2207031, 0.66259766, -0.3947754, -1.4873047, 1.8466797, 3.4941406, 0.29541016, 0.5883789, 2.2675781, 0.9121094, 0.8183594, 1.4257812, 1.2792969, -0.27319336, 2.4785156, 3.7890625, 0.13659668, 1.9716797, 1.1445312, -0.11419678, -2.3769531, -1.9433594, 1.3847656, 0.7841797, -1.1152344, 0.8496094, -1.3544922, 0.92822266, 0.72021484, -1.6787109, 2.0722656, -0.83984375, -0.1217041, -1.9130859, -0.85058594, -0.30126953, -0.01637268, 1.5136719, 1.5732422, 0.8515625, 1.8876953, -0.027420044, -1.4423828, -0.20251465, 1.2041016, 0.5566406, 0.6621094, 0.39379883, 0.9482422, -0.23840332, 1.3037109, -0.96435547, -1.1171875, 1.0449219, -0.80566406, 1.5917969, -0.7890625, -2.2421875, 1.4003906, -0.9995117, -3.1914062, -0.7270508, 0.17492676, -0.96728516, 2.484375, 0.08190918, 1.6474609, -2.2832031, -0.7084961, -0.51171875, 1.1113281, 1.6201172, 0.2175293, 1.0244141, 2.1738281, -1.1826172, 0.36987305, 0.22265625, 2.7714844, 0.51464844, 0.9199219, -0.61328125, 3.6875, -0.46606445, 0.18444824, 1.3203125, -0.7011719, 0.115600586, -0.25073242, -0.51416016, 0.037384033, -1.5273438, -0.54003906, 0.95703125, 1.3994141, 2.8300781, -0.79052734, 0.8442383, -0.18603516, -2.0351562, 0.06774902, -0.055114746, -0.40234375, -1.0986328, -0.7651367, 1.4716797, -2.4238281, -2.6621094, 2.4433594, -1.7070312, 0.1463623, 0.5463867, -0.05709839, 1.2392578, -2.1035156, -1.6376953, 0.54345703, 1.5048828, -2.078125, -0.24951172, 0.41064453, -0.74853516, -2.1757812, -1.8105469, 0.68603516, -3.9023438, -1.0839844, -2.6855469, -2.5898438, -0.9453125, -0.16027832, -1.5976562, 0.52197266, -0.0637207, -0.7973633, 1.3496094, -0.6870117, -1.1103516, 0.49853516, 1.6738281, -2.4082031, 0.19897461, 0.074279785, 2.2714844, -0.55322266, -2.6777344, 0.16796875, -0.041625977, 0.44213867, -0.20031738, 0.2722168, -1.1845703, -1.6162109, 1.2294922, 1.6181641, -2.5878906, 1.3730469, -1.6103516, -0.6567383, -4.3867188, 0.88916016, 0.19482422, 0.58935547, 0.5444336, 0.7792969, -1.9580078, -1.625, 0.3449707, -1.9667969, 4.9453125, 1.0654297, 1.5283203, -2.1835938, -1.2744141, -0.61621094, -1.1494141, -1.6875, -0.06677246, -0.24719238, -0.4711914, -2.40625, -2.7382812, -1.7783203, -1.5576172, -1.8369141, 0.10748291, -0.3647461, -1.4189453, 1.1210938, -2.9589844, -0.3491211, -1.7998047, -0.07421875, 0.15771484, 0.26416016, 1.1269531, -2.8925781, -2.1835938, -0.27392578, -1.2802734, 2.7792969, -1.3369141, 0.6645508, 1.6533203, -2.0410156, 1.3017578, 0.92285156, -3.7871094, -0.23791504, 3.3496094, 1.2890625, 1.7373047, -1.8945312, -1.7773438, -0.4597168, 0.20043945, 3.078125, 0.6689453, -0.9326172, -0.01878357, -0.6772461, 1.3085938, -0.8017578, -0.5473633, -0.6669922, 0.2154541, 1.9707031, -2.625, 1.0273438, 1.1748047, 1.4013672, -3.4296875, -0.9863281, 1.5859375, -0.50927734, -0.45507812, -1.0527344, 1.0585938, 0.98779297, -1.0205078, 1.5078125, -0.8901367, 2.8671875, 1.015625, -0.33520508, 1.1240234, 2.4023438, 2.8066406, 1.5175781, 0.92822266, 0.64501953, 0.9111328, 1.2548828, -3.2753906, 0.9692383, 1.1269531, 1.6503906, 0.43969727, 1.3134766, -0.92822266, 0.33398438, 1.4941406, -0.6142578, 0.51464844, -0.8808594, 0.6640625, 1.2724609, 0.13720703, -1.5205078, -1.1083984, -0.9663086, -0.09075928, -2.0273438, 0.9902344, -1.3837891, -1.5498047, 1.0673828, -1.9960938, 0.2529297, -2.1035156, 3.7089844, -0.0035057068, -2.5019531, 0.5576172, 2.7558594, -1.0166016, -1.5078125, 1.7988281, -2.1210938, -0.29638672, 5.3125, 0.92529297, -2.0625, -0.3269043, -3.4746094, 0.6425781, 2.4882812, -0.43408203, -0.29516602, 1.3212891, -1.109375, -2.4609375, 1.3642578, 1.8359375, 1.7617188, -1.4599609, 1.5185547, -1.5273438, -2.7890625, 2.5800781, -1.8339844, -0.6333008, 3.2207031, -0.5473633, 1.2841797, 0.73095703, 3.2226562, -2.6582031, -0.99658203, 2.671875, -0.09423828, -0.5185547, -1.0927734, -4.1875, 1.0410156, -1.203125, -0.5576172, 2.171875, -0.30395508, 0.7832031, 0.5493164, -1.1582031, -3.2558594, -1.2216797, -1.0761719, -1.1464844, -4.0195312, -1.1523438, 1.0380859, 1.4677734, -0.20654297, -0.57177734, -0.53027344, -0.49267578, -0.61376953, 0.45458984, -1.5146484, -0.14282227, -1.7451172, 0.15942383, 0.21813965, -0.38720703, -0.55126953, -1.234375, -0.97021484, -0.29907227, 2.3339844, 0.30688477, -0.9873047, 1.015625, 4.3359375, -0.27026367, -0.5185547, 0.89941406, 0.82714844, 3.7011719, -0.5932617, -2.1777344, -0.062408447, 0.17614746, 2.1621094, -0.65185547, -2.1953125, -0.08947754, -1.8652344, 1.4453125, 1.2216797, 1.5214844, 0.94873047, -0.12200928, -2.5742188, 1.0527344, -2.2695312, -2.5058594, -0.7050781, -1.5166016, -0.6567383, -0.66748047, -0.85791016, -2.9199219, 1.2851562, 0.5551758, -0.1270752, -0.88134766, 2.8046875, 1.4814453, 2.1542969, 4.6328125, -1.3193359, -0.5180664, 0.9453125, -2.0488281, 1.9052734, 0.9316406, -0.6953125, 0.85839844, 2.3769531, -0.5175781, -0.9633789, -0.72998047, -0.04031372, -2.6035156, 0.0124053955, -0.18041992, 0.39208984, -1.3964844, -0.75683594, -1.5039062, -1.7919922, 0.8261719, -0.9604492, 0.2409668, 1.2587891, -0.40234375, -1.28125, 0.5107422, -0.1071167, -0.29760742, 0.21643066, 1.8056641, -0.296875, 1.6601562, 2.3828125, 0.7651367, 0.90771484, -3.4355469, -0.71484375, 0.6699219, -1.2373047, -2.1113281, -1.4267578, 0.81933594, 2.5527344, -2.1660156, 2.2871094, 0.23815918, -0.2861328, 1.2539062, 2.3535156, -2.4804688, -0.46801758, -1.0214844, 0.65283203, 0.101867676, -0.6982422, -2.9863281, 0.20666504, 1.0058594, -1.1152344, 1.3164062, 0.94921875, -2.8242188, 0.13330078, -1.3496094, -1.359375, -0.27246094, -2.3945312, -0.8803711, -3.1953125, 1.4042969, -3.3320312, 0.0015411377, 1.8720703, 0.23034668, -3.4101562, 0.8613281, -1.078125, -0.71435547, -1.8759766, 1.1347656, -1.2167969, 0.54785156, 0.93847656, -0.01713562, 1.2871094, -1.3251953, 2.1738281, -2.109375, 0.828125, 0.57421875, 3.2265625, -1.3027344, -0.890625, 2.8359375, 0.022964478, 2.1601562, -0.90478516, -0.69433594, 0.2529297, 3.1132812, -1.0966797, 0.91308594, -0.80908203, -0.5751953, -2.4921875, -1.4394531, -1.9345703, -1.5869141, -3.7207031, 0.4807129, -1.7470703, 1.5800781, 0.38232422, -1.8632812, -0.22668457, -0.91503906, -0.00021243095, -2.1171875, -1.3027344, -1.9550781, -0.07550049, 1.7197266, 0.32739258, 0.89160156, -0.48632812, 0.06262207, -2.4355469, -0.0519104, 2.6210938, -1.1464844, 1.6953125, 0.5571289, -1.5615234, 2.6914062, 1.2646484, 0.23547363, 0.5234375, 0.61865234, 0.8461914, -1.2714844, 2.1757812, -1.9511719, 0.36865234, 1.015625, -2.0332031, 3.2695312, -1.8544922, -0.9135742, -0.023834229, -0.49804688, 1.1679688, 0.5908203, -1.1015625, 0.04284668, 0.53466797, 1.5771484, 2.3515625, 1.7431641, -2.7753906, -0.7519531, -0.26000977, -1.6875, -0.043670654, -1.5097656, -2.3359375, 0.11187744, 1.8193359, 1.4736328, -0.94384766, 0.8886719, 1.8037109, 3.2207031, -1.4453125, 0.6923828, -0.7446289, 3.265625, -0.1328125, -0.6855469, -1.3720703, -3.8300781, 2.1074219, 2.6835938, -0.15979004, -1.0224609, -0.36401367, -2.7597656, 2.5488281, 0.67089844, 1.2626953, 0.93359375, -0.41430664, 0.8046875, 1.1416016, -0.10675049, 0.45361328, 3.03125, -0.9316406, 2.1699219, -0.78564453, 2.1738281, 1.9677734, -2.1640625, 0.36645508, -0.63183594, 1.6445312, -1.4345703, 0.89453125, 0.6196289, -1.8349609, -1.8261719, -2.4257812, -0.49243164, -3.1855469, 0.041412354, 1.1025391, 0.41357422, -0.78466797, 0.19348145, -0.33935547, 2.4414062, 1.9375, -0.8417969, -0.113220215, -1.6728516, -0.8754883, 0.7211914, 1.5996094, 0.2939453, -0.7089844, 0.49291992, -0.029342651, -0.68310547, 1.5009766, 0.15661621, 1.3818359, 2.3164062, 3.5625, 2.8203125, 0.26123047, 3.15625, -0.99609375, 1.484375, 0.6123047, -0.78125, -1.7255859, 2.7285156, 2.1816406, 1.2988281, 1.1728516, -0.31323242, 1.75, -1.1064453, -0.97802734, 0.2084961, 0.6748047, -2.3164062, 0.99560547, -0.40405273, 1.4873047, 0.46411133, 2.1230469, -0.60839844, 0.7060547, 1.2871094, -0.5888672, 0.62402344, -2.5234375, -0.7495117, 1.3173828, 1.6318359, 0.70410156, -2.8886719, 2.5332031, -1.4921875, -4.375, -1.6699219, 3.015625, 1.4267578, 2.5957031, -0.42797852, 1.4287109, 1.1572266, 2.7324219, 1.1611328, 0.8808594, 1.1542969, -0.005630493, 1.5927734, 1.6464844, -2.4609375, -2.9941406, 1.0917969, -1.9970703, -1.4541016, 0.79833984, 0.5727539, 0.75683594, 0.76708984, -1.2138672, 0.028839111, 1.0048828, 0.60546875, -1.8115234, -1.0039062, -0.1038208, 0.15588379, -0.6123047, -0.10333252, -0.097595215, 3.1796875, 0.58935547, -1.1689453, 1.7958984, 1.3232422, 1.9414062, 1.1435547, 0.5283203, -0.90771484, 1.9570312, -0.67285156, 0.7734375, 1.6708984, -0.06008911, 0.2709961, 1.1376953, 1.9794922, 0.16113281, -0.8227539, -2.578125, -0.28759766, 1.734375, -2.2089844, 0.3647461, -0.5102539, -1.6328125, -0.45776367, 0.31420898, 0.5834961, -2.7714844, 1.3789062, 0.58154297, -1.2470703, -0.86376953, 1.3076172, -0.37158203, 1.2558594, -0.21130371, -0.2866211, 0.32348633, -0.19885254, 1.2363281, -1.6269531, -2.5625, -2.2304688, 0.9628906, -1.0029297, -0.07080078, -1.5019531, 2.0703125, -0.7167969, 1.1240234, 4.0195312, -0.38061523, -0.28466797, -1.6875, -0.04916382, -0.95947266, 1.9755859, 0.44311523, -2.4101562, 0.43286133, -1.7802734, 0.37402344, -0.24841309, -3.1074219, 0.38452148, 4.3867188, 3.640625, -1.6054688, -0.00025177002, -3.59375, -1.4570312, 0.26220703, 2.6386719, 0.28320312, 1.8876953, 0.4038086, 0.72314453, 4.421875, -0.65527344, -0.6542969, -0.41723633, -0.24536133, 1.5351562, -2.2226562, 0.9926758, -0.111206055, 1.3994141, 1.3037109, 1.0693359, 2.6425781, 0.47460938, 1.6875, 1.5839844, -0.6850586, -2.8925781, -0.56640625, -0.099853516, 0.609375, 1.3779297, 0.71240234, 0.7529297, -0.8725586, -0.16992188, -3.7363281, 0.12597656]}, "B07W87SKTP": {"id": "B07W87SKTP", "original": "Brand: DOZYANT\nName: 5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More\nDescription: It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

Specification
- Length: 5 feet / 60 Inch/152.5 cm
- Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
- Inlet Pressure: 25-250PSIG
- Outlet Pressure: 0-20PSIG
- Max.flow capacity:136000BTU
- End Connector: 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

* The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
* There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
* This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

Note:
1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
\nFeatures: Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8\" flare M x 1/8\" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nAdjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator.\nHigh quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off.\n100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances.\nNo tools needed, easy and quick attachment for easier installation.\n", "embedding": [-0.4399414, 2.6679688, 1.5107422, 0.75878906, -0.63671875, -1.0117188, 0.67871094, -0.37597656, 0.60253906, 0.49951172, 1.9423828, 1.6601562, 1.7265625, -2.2558594, 1.4736328, 0.80126953, 1.5205078, -0.18676758, 1.9179688, 2.0761719, 0.328125, 0.20788574, 2.4570312, -1.0751953, 1.2568359, -0.21081543, 3.2226562, -2.1914062, -2.1171875, -2.1113281, 1.0136719, 1.4570312, -0.3671875, 0.24645996, -2.0820312, -0.8652344, 0.3017578, 1.1269531, -3.9765625, -0.82177734, -1.8027344, 1.5166016, 1.3359375, 0.21643066, -2.03125, 0.4658203, 0.47216797, 0.3918457, 0.42089844, -0.35302734, 1.8183594, -0.13134766, 0.9003906, 0.84033203, -1.2226562, 0.44458008, 0.08355713, -2.4257812, 0.76660156, 0.8046875, 2.1816406, 0.22668457, -2.4433594, -0.3852539, -0.8857422, -0.09729004, -0.019180298, 0.46191406, 2.3046875, 0.4633789, 0.6972656, 1.4238281, 0.44799805, -0.66015625, -0.8066406, 0.12231445, -2.8828125, 0.47998047, 3.6738281, -0.1743164, -1.1884766, 1.796875, 0.65722656, -2.5058594, 1.2451172, 0.056243896, -1.5703125, 1.3105469, 2.0410156, 1.2451172, -2.3984375, 2.453125, -3.1425781, -3.6914062, 1.0439453, 1.7246094, 1.8613281, 0.5698242, 1.34375, 0.2626953, -3.2050781, -1.8115234, -0.20739746, 0.82470703, -1.2333984, -0.61865234, -0.81152344, 2.0351562, -3.6855469, 0.23461914, 0.054870605, 0.5961914, 2.5703125, -1.1357422, 0.7910156, -3.3417969, 0.60791016, -0.4868164, 2.9492188, 1.6992188, 1.4570312, -0.23327637, -0.97753906, 1.0175781, 1.1621094, 0.7685547, -0.51953125, -0.8930664, 3.7148438, -1.8037109, 0.3383789, -3.2207031, 1.6191406, 0.057006836, 1.2666016, -3.2792969, -0.57958984, -2.2050781, -2.3789062, -0.6201172, -2.8964844, -0.73339844, 1.5400391, 0.5727539, -2.8242188, 0.07458496, -2.1875, 0.18029785, 2.6132812, -2.9667969, 1.7089844, -1.9453125, -0.16125488, -0.8623047, 1.6357422, 0.95166016, 0.20837402, -1.4990234, 2.8476562, 1.5097656, 1.6083984, -1.2363281, -1.7304688, 2.8300781, 0.033813477, -2.8632812, 0.44604492, 0.45288086, -0.8208008, 0.6743164, -1.4765625, -2.4042969, 0.011764526, 0.26538086, -0.36694336, -1.2714844, 0.95703125, 2.3574219, 1.9335938, 0.11431885, -4.921875, -1.7001953, -0.07171631, -1.7519531, 1.0039062, 0.32592773, -1.9677734, 0.21679688, 1.6367188, -1.9335938, -1.4345703, 0.6274414, 0.23376465, 1.3935547, -0.3317871, -1.7402344, -2.7597656, -0.9399414, -1.0078125, 2.234375, -0.49926758, -1.9316406, 1.0888672, -0.070495605, -2.1054688, -0.7573242, 0.109436035, 0.08703613, 0.42651367, 2.7246094, 0.5859375, -1.1787109, 2.3554688, -0.72998047, 0.26342773, -2.0761719, 1.9667969, 2.0820312, 1.5644531, 1.1826172, -1.3427734, 0.16760254, -0.17785645, 1.4931641, 1.953125, 0.79296875, -0.8105469, 2.6191406, -0.8417969, -1.4433594, 1.2978516, 2.2675781, -0.92822266, -1.2753906, -0.5751953, 2.765625, 0.7661133, 0.4477539, 0.44458008, 2.3027344, 0.50341797, -0.42895508, -1.9658203, -0.19787598, -0.5371094, 0.16711426, -2.6035156, 1.8427734, 1.0800781, -0.12756348, -0.14404297, 0.45239258, -1.2255859, -2.6796875, -0.6870117, -0.16503906, 0.6611328, 1.9013672, 0.040863037, -1.8886719, 2.8339844, -0.061431885, 0.1796875, 1.7402344, 0.11730957, 1.3662109, 2.8886719, -1.7861328, -0.6899414, -0.37768555, -0.046905518, 3.2109375, 2.0546875, -1.0214844, -0.12683105, 1.0253906, -2.8515625, 0.64697266, 0.10083008, 1.0351562, 2.2890625, 0.8144531, 2.2636719, -3.046875, 1.7919922, 1.6992188, 1.1738281, 0.41308594, -2.765625, 0.18237305, 3.8652344, -0.3400879, -3.0644531, 1.7412109, 1.5966797, 0.74121094, 2.2246094, 0.5527344, 0.70458984, -0.12536621, -0.28735352, 0.609375, -3.1523438, -0.6035156, 2.5410156, -0.5800781, -0.56396484, -0.024383545, -0.8261719, 1.0898438, -1.3691406, -0.55371094, -2.0546875, 1.765625, -2.5292969, -2.0019531, 1.1025391, -2.1289062, -0.18554688, 0.96435547, 0.89208984, 1.3955078, 0.95947266, -0.60839844, 0.2915039, 0.91015625, -1.5800781, 1.1484375, 1.7421875, -0.7089844, -0.32299805, -0.6298828, 0.8691406, -2.5976562, -2.8867188, 1.0917969, -2.1269531, -2.6367188, 0.91748047, -3.2910156, -2.765625, -0.53808594, 0.46411133, 3.3125, 1.671875, -1.0898438, -1.9619141, -0.5761719, 0.08081055, 0.13000488, -0.060943604, 2.34375, -0.70166016, -3.0859375, -0.28295898, -0.12237549, -0.34033203, 1.3115234, -4.1679688, 1.4267578, 1.1992188, -0.4104004, 0.15014648, 0.87353516, 1.4912109, -1.0615234, 0.70410156, -2.9941406, -1.2802734, 0.2854004, 0.9902344, -0.97265625, 1.7421875, -1.859375, -0.8588867, 0.2644043, -1.40625, 0.45507812, -1.5751953, 2.6640625, -1.2724609, 0.6791992, 2.5058594, -1.0263672, -3.34375, -0.33935547, -0.4038086, -0.65625, -1.3076172, -3.8515625, 0.61083984, 0.3173828, 0.8105469, -0.06842041, -1.2822266, -1.203125, -0.19689941, 0.88964844, -1.8251953, 0.734375, 0.7910156, 0.13891602, -1.5048828, 1.3662109, 0.2866211, -2.5390625, -1.5253906, 0.59033203, 0.9921875, -0.15991211, 0.69140625, 1.1914062, 0.5073242, 0.76171875, -1.7011719, -3.3632812, 0.5683594, 2.1152344, -2.6777344, 1.5839844, -0.9267578, -0.3786621, -2.9101562, -2.9199219, 1.9316406, 2.2285156, 3.4199219, -0.11468506, 1.1367188, -0.13464355, 0.97998047, -1.0966797, -1.5185547, 0.37353516, 4.2421875, -1.9052734, -1.5449219, -0.6669922, 1.0048828, -2.6835938, -0.26367188, 1.8691406, -0.76171875, 2.7324219, 1.3349609, 1.7324219, -0.6928711, 1.0107422, 2.4082031, 0.79052734, -1.4863281, 0.5644531, -0.5991211, 0.4584961, -1.5371094, 1.5136719, 2.1953125, 1.3652344, 1.8203125, 0.7705078, 0.8676758, -1.1074219, 0.3095703, 0.16687012, 0.7158203, 0.9213867, 2.2148438, 0.52001953, 0.24853516, -0.79248047, 0.5498047, 1.7753906, -2.0449219, 0.016067505, 2.4082031, 2.0839844, -1.3154297, -0.21472168, 0.5341797, -0.8178711, -1.2080078, -0.072509766, 1.0986328, 1.8007812, 2.3574219, -0.49536133, 0.5341797, -2.2578125, 1.9414062, -0.3540039, 1.0839844, -0.62158203, -0.21740723, -2.2871094, -1.8134766, -0.10296631, -3.0078125, -1.9931641, 1.9472656, 1.8154297, -0.07299805, 1.8457031, -1.1015625, 2.0898438, 1.7617188, -2.375, 0.5698242, -0.06323242, -0.49658203, 0.94628906, -0.48266602, 3.0429688, 0.46728516, -3.3066406, -0.75927734, -2.1582031, 1.0097656, -0.97802734, 0.3305664, -3.8144531, -1.1552734, -0.46069336, 1.2900391, 0.36499023, 3.1269531, 0.0055732727, -0.7832031, 1.6103516, -2.6054688, -0.79785156, -1.6621094, -5.765625, 0.7241211, -3.2675781, 0.4248047, 2.6582031, -0.28100586, 0.25756836, 1.8798828, 3.5351562, -3.5039062, -0.1977539, -0.5751953, -0.057769775, -2.5214844, 0.50146484, 3.3984375, 0.42919922, -0.86035156, -1.4326172, -1.3193359, -2.359375, -0.28076172, 1.0693359, -2.2285156, -0.28198242, -1.8925781, 0.6855469, -2.2441406, -0.5600586, 1.9716797, -1.7441406, -1.5996094, -3.078125, 2.0292969, -0.15820312, 0.5644531, -0.8540039, 2.921875, 2.2539062, -0.78759766, 0.51416016, 0.5810547, 3.3164062, 0.0657959, -1.5498047, 0.43164062, 0.9848633, -0.22802734, -0.36401367, -0.9892578, -0.1328125, -1.2001953, 1.8183594, 1.0332031, 0.6328125, 1.5830078, -0.07006836, -2.9023438, 0.22558594, 1.3681641, -1.8095703, 0.2788086, 0.14819336, -1.7949219, -1.890625, 0.42504883, -1.5654297, -0.4255371, -1.3134766, -0.52734375, -2.046875, 1.6445312, -0.26757812, -0.49023438, 0.4116211, -1.3642578, -0.8598633, -1.1513672, 0.28149414, -1.3876953, -1.0390625, -2.5878906, -0.7158203, 1.9228516, 2.3359375, 0.10369873, -1.1601562, -0.25927734, -2.0175781, 0.15649414, -0.46362305, 1.5019531, 0.8745117, -0.9555664, 1.1357422, -0.78027344, 3.7949219, -1.6025391, 1.0537109, 1.1386719, -1.1894531, -1.9179688, 2.4121094, 2.7832031, 1.9775391, 1.3037109, 0.6586914, 1.0966797, 2.0839844, 0.49609375, 1.2363281, 0.9794922, -0.43139648, 0.28833008, -0.41577148, 0.85498047, -0.67041016, 0.9555664, 0.37426758, 1.5888672, 2.5722656, 2.0078125, 0.9560547, -2.5566406, 1.2988281, 1.1826172, -1.1015625, -1.0205078, -0.030776978, -2.5996094, 3.2558594, -0.82714844, -2.3378906, -0.07196045, 2.4335938, -1.2148438, 1.4765625, 0.8540039, -1.6123047, -0.4128418, -1.9072266, -1.3251953, -0.41186523, -1.15625, 1.3876953, -2.4921875, 1.5283203, 0.58691406, 1.8544922, 2.1035156, -0.48217773, -0.5488281, -0.7895508, -1.7626953, 0.73828125, -1.9648438, -2.0019531, -3.2519531, 0.25805664, 2.2851562, 2.03125, 0.077819824, 0.0031814575, 0.37890625, -1.7246094, -1.4707031, 0.27294922, 1.7382812, -0.8701172, -0.60839844, 1.6240234, -0.67871094, -1.3095703, -2.1367188, -0.49682617, -0.3737793, 2.5449219, 2.3027344, 1.3779297, -0.06341553, -0.11004639, -2.6640625, -4.6601562, -1.6650391, 3.1757812, 0.06915283, 0.41870117, -1.9804688, -0.41601562, 1.7431641, -0.9663086, -0.41577148, -2.828125, 0.23730469, -1.3681641, -0.66552734, -0.1182251, 0.26342773, -0.46875, -0.32958984, -0.07836914, -0.3815918, -0.42749023, -2.3359375, -2.828125, 1.9550781, -2.4765625, -0.65722656, 2.1269531, -1.9726562, -0.625, 2.2089844, 1.4013672, -2.4453125, 2.4882812, -3.5351562, 1.2988281, 0.26000977, -2.3105469, 1.2480469, 0.32373047, -0.033721924, 0.8203125, 2.4394531, 3.1386719, -0.6542969, 0.030197144, 0.6689453, 0.4970703, 0.017929077, -2.7636719, -0.61865234, -0.20690918, 1.9511719, 1.3955078, -0.6015625, -0.9086914, -1.3369141, -1.7294922, 0.058685303, -1.0195312, -0.49902344, -0.30395508, 1.0556641, 1.1308594, -0.3112793, 0.78027344, 0.83935547, -0.47583008, -0.6611328, 1.3447266, -1.2822266, 1.7871094, 2.4316406, -1.7939453, -3.0253906, -0.953125, 2.296875, 3.4296875, -1.3076172, 1.2451172, -0.40429688, 0.3166504, -0.011772156, -1.3232422, 1.3095703, 1.4501953, 0.07952881, -1.4873047, -0.97265625, 2.6757812, -2.3496094, -0.23852539, 0.8935547, -0.58251953, -1.46875, 2.1230469, 1.6337891, -2.6679688, 0.20275879, -1.4658203, 0.5629883, -1.7363281, -1.8144531, 0.7944336, -2.6933594, 0.40283203, 0.79785156, -2.7011719, -2.4765625, 2.4023438, -0.18371582, -1.1269531, 1.6777344, 3.5195312, 0.092163086, -0.5395508, 1.0097656, 0.8046875, 0.24414062, 0.50097656, -3.2460938, 0.55810547, 2.5214844, -1.9160156, 0.48461914, 1.5654297, 1.140625, -0.8515625, 0.296875, 2.171875, 2.6386719, -0.048614502, 3.2011719, 3.3496094, -0.0670166, 1.2070312, 1.3554688, 2.7089844, 3.5605469, -1.1416016, 1.6533203, 1.734375, -0.26416016, 0.5805664, -0.28979492, -0.2770996, -0.4658203, 0.49414062, -0.5629883, 1.6474609, 2.875, -2.6582031, -1.40625, -1.6455078, -1.5859375, -4.0664062, 0.40161133, -1.5126953, 0.16381836, 0.7626953, 0.27368164, 1.8310547, 2.4902344, -0.89208984, 0.15283203, -1.0292969, 2.8457031, -1.4794922, 0.5234375, -1.1845703, -2.6640625, 1.5996094, 3.1113281, 1.6943359, -0.2565918, 1.0576172, -0.85498047, -1.9003906, 2.6640625, 1.8710938, -1.8164062, -0.097717285, -0.7832031, 1.8603516, 2.5097656, -1.8818359, 1.8720703, 1.0878906, -1.6660156, -3.7070312, 1.1132812, 0.068603516, -0.32128906, -1.5888672, -4.9960938, 1.7246094, -2.2949219, -0.0871582, -1.4257812, 0.3701172, -0.47485352, -1.0087891, 1.2216797, -0.50390625, -1.9208984, 3.046875, 1.4189453, -1.8125, 0.83251953, 2.5527344, 2.4082031, 0.26635742, -0.17492676, 0.5698242, -0.52246094, -1.5332031, 4.1289062, -0.23046875, -2.3769531, 0.7885742, 3.1816406, 0.18444824, 0.28173828, -0.2524414, 1.2773438, 0.6699219, 1.6123047, -0.44848633, -0.61572266, -1.1347656, -0.055480957, -0.021575928, -0.42138672, -0.7324219, -1.4179688, 0.23364258, 1.0380859, -1.9648438, 0.12176514, 1.5009766, -0.74121094, 2.5195312, 1.5869141, -0.66796875, -1.3251953, 0.37817383, 0.95214844, -2.1425781, -1.0429688, 1.1855469, -0.07116699, -0.19580078, -1.7568359, -0.67333984, 0.7651367, -0.39941406, -1.15625, -0.7441406, -0.11065674, -1.9892578, 0.18054199, -1.8310547, 1.7353516, 2.828125, 0.00019073486, 2.234375, -0.8330078, -0.7133789, 0.5942383, -1.9130859, -1.3671875, 1.6171875, 1.6572266, 0.2220459, 0.8901367, -1.4677734, -3.3457031, -1.0751953, -2.4277344, 2.0332031, -0.30297852, -1.3339844, 0.22790527, 0.015548706, 2.3710938, 0.82910156, 1.1357422, 0.6621094, -0.03930664, 1.8447266, -0.99365234, 0.4873047, -1.0820312, -0.36108398, 0.72558594, 4.4101562, 2.4726562, -1.5410156, -1.2998047, 1.4599609, -0.2631836, -2.4179688, -0.24938965, -0.6035156, -0.37402344, 1.2441406, 3.3574219, 2.4160156, 0.9819336, -1.9365234, -0.19897461, -0.5395508]}, "B095JY9XMN": {"id": "B095JY9XMN", "original": "Brand: Zovoty\nName: Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)\nDescription:

Have you already start the wonderful Barbecue party?
Is your grill still look as new as you bought it?

BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

How does the Grill Cover protect your expensive grill?

1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

3.Extra Larger Design Ensure to Fit Various Kinds of Grills
According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58\"x24\"x48\")fits most brands of grills, such as Weber, Char Broil etc.
And, it also fits well for the 2 3 4 burner gas grill.
Warm tips: Please measure your grill first before purchasing!

4.Handle,velcro straps, Vents
The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
The convenient velcro straps ensure tightness for extreme outdoor conditions. Don't worry the grill cover will be blown off.
The vents help keep you expensive grill ventilation.\nFeatures: FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58\"x 24\"x 48\") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly\nRIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring\n600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc\n100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don't allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area's all year's rainy day\n2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don't worry to have it outside on a typical wet and stormy day\n", "embedding": [1.3662109, 2.2636719, 3.7539062, -1.3417969, 0.9057617, 1.4482422, 0.8808594, -1.9736328, 0.44750977, 1.4404297, -0.93066406, -0.11773682, 1.2070312, -4.421875, 1.2705078, -0.15966797, 0.068847656, 2.9765625, 2.8847656, -0.057250977, 1.7197266, 1.0292969, 1.5849609, -0.048034668, 0.77978516, -0.087402344, 4.4257812, -2.9492188, -0.36767578, -1.2041016, 1.5771484, 0.55566406, 0.8647461, 1.6816406, -3.4589844, -0.9560547, 0.4333496, 1.3076172, -0.05722046, -1.0244141, -2.2246094, -2.4375, 2.8964844, 0.6435547, -1.3359375, 0.5083008, -2.0351562, -0.38623047, -0.43017578, -3.8535156, 1.359375, 1.9589844, 2.4902344, 0.46191406, -3.421875, 2.4960938, 0.83447266, -1.3232422, -0.03527832, -0.90527344, 0.31713867, -0.77685547, -0.8330078, 3.0117188, -1.0458984, -1.3066406, 0.16772461, -1.1748047, 2.0488281, -0.2763672, 1.3876953, 0.42529297, -0.6850586, 0.43554688, 1.3330078, -0.36743164, -1.8417969, 2.21875, 0.6879883, -1.0449219, -1.0576172, 4.5273438, 0.011260986, -1.8544922, -1.4941406, 0.5336914, -2.5136719, -1.5, 2.6738281, -1.4091797, 0.03213501, 0.76660156, -1.3027344, -5.0585938, 0.026168823, -2.5839844, 3.0449219, -1.2412109, 1.4189453, 1.1162109, -2.6289062, 0.58984375, -2.0390625, 0.8569336, -2.4375, -2.6933594, 1.9238281, -0.51660156, 0.8261719, -0.29467773, -1.0126953, 0.4584961, -0.68603516, 0.64453125, 3.2324219, 0.81347656, -1.3164062, 1.5986328, 0.56689453, 2.2421875, 4.0625, -0.5908203, -0.34521484, -2.59375, 0.69384766, 0.08721924, -0.37841797, 1.0400391, 3.5097656, -0.7128906, 1.4511719, -1.1757812, 1.1689453, 2.9726562, -0.40283203, -0.14440918, -1.5751953, -0.6425781, -3.0117188, 2.890625, -0.7138672, -1.6484375, 0.7084961, -2.4179688, -2.2460938, -0.08343506, 0.30273438, 3.6894531, -2.171875, -3.2089844, 0.8691406, -1.8115234, -0.4880371, -0.9326172, 1.0205078, -0.36816406, 0.36279297, -3.4609375, 3.3398438, 2.6425781, 2.6367188, -1.2734375, 1.6240234, 0.5097656, 1.6054688, -2.5332031, 0.04840088, 0.4987793, 0.2631836, 2.1132812, 0.19250488, -0.47265625, 0.6870117, -0.14526367, 1.5361328, -0.6743164, 0.77783203, 1.9794922, -0.10803223, -0.123046875, 0.8984375, -0.89501953, -0.84228516, 1.4609375, -1.1171875, -1.5244141, 0.89160156, 1.4609375, 1.0566406, -0.4880371, -0.9555664, 0.32885742, 0.53466797, 0.37231445, -2.2597656, -1.5664062, 0.7373047, -1.1875, -0.07519531, 0.32788086, -1.9453125, -2.6269531, -1.1806641, -0.9169922, -3.0449219, -1.3056641, -1.3535156, 0.8432617, 1.8173828, 0.58447266, 0.40527344, -2.6113281, 2.4042969, 3.2792969, -1.2099609, 0.234375, 2.1152344, -1.0126953, 1.2734375, 0.7416992, -1.3046875, -0.7519531, 0.32641602, 4.21875, -0.6982422, 1.8144531, 1.3212891, 0.33691406, -1.109375, -1.7216797, 0.42993164, 2.1894531, -1.046875, 0.07434082, -1.6503906, 0.8261719, -0.001039505, -1.25, -0.61621094, -0.4506836, -1.3828125, -0.9658203, -3.1835938, -1.7939453, 0.9003906, 0.72021484, -0.87939453, 2.4960938, 1.3007812, -1.1992188, -0.6269531, 1.9833984, 1.0576172, -0.24023438, -0.07312012, 1.5664062, 1.4511719, -0.34448242, -2.2226562, -0.9941406, -0.45092773, -1.0224609, -1.1367188, 0.9716797, 0.19934082, -0.48388672, 0.52783203, 0.9765625, -1.6445312, -1.7246094, 1.5908203, -0.28710938, -0.17883301, -1.9365234, 1.1767578, 1.3408203, 0.18188477, 0.3869629, 1.765625, 0.25683594, 1.0341797, 1.5917969, 1.3876953, -2.3632812, 1.28125, -0.045806885, 0.11633301, -2.2695312, -0.61621094, 0.11090088, 4.1875, 0.8286133, -0.4345703, 3.0957031, -0.31884766, 0.23168945, 1.8808594, -0.4580078, -2.1933594, 2.1347656, 1.1523438, 1.3759766, -0.6044922, -0.28637695, -1.8017578, -1.1523438, 1.0078125, -2.9082031, -1.3681641, 1.1826172, 0.7421875, 0.67285156, 0.5205078, 0.0904541, -2.671875, -2.3398438, 0.88623047, -2.9042969, 0.93603516, 0.26586914, 1.4853516, 1.1044922, -1.8808594, -2.0761719, 0.0064926147, -0.1529541, -2.2441406, 0.015716553, 0.44360352, -0.23266602, -0.19091797, -1.6132812, 0.6767578, -1.7470703, -0.7919922, -2.78125, -2.796875, -1.6816406, -1.9970703, -1.8671875, 0.5473633, -0.9135742, -3.0332031, 1.2939453, 1.5078125, -3.7011719, -1.7509766, 0.1394043, -1.796875, 1.3085938, -0.90234375, -0.22546387, -0.6557617, -3.96875, 0.5620117, -0.87402344, -1.8535156, 0.26513672, -1.4423828, -0.12365723, -0.640625, -0.056243896, -0.5756836, 1.7285156, 1.3857422, -0.3088379, -1.203125, -3.2246094, -0.2388916, -2.3027344, 0.3251953, -1.8554688, 0.3684082, -3.6347656, -1.4882812, 0.97802734, -0.5234375, 3.3789062, 0.00024604797, 0.8095703, -0.43725586, -1.8701172, 0.4086914, 0.08929443, -2.1699219, 0.84277344, 1.2265625, -0.96533203, 0.026382446, -4.0859375, -2.25, -0.9033203, 0.47070312, -0.0090789795, -0.44018555, -0.020141602, 2.8320312, -3.5546875, -1.2910156, -1.4003906, 1.2050781, -0.52685547, -0.76953125, -0.74609375, -3.3515625, -2.6464844, -1.0400391, -2.0878906, 1.7373047, -1.0429688, 0.25561523, 2.7558594, -0.31201172, 3.6269531, 0.38232422, -3.7578125, 0.52490234, 1.6191406, 0.7060547, 2.015625, 0.16101074, -0.4477539, 0.20263672, 0.5546875, 2.5058594, 1.4111328, 1.5761719, 2.1152344, 0.73876953, 0.15344238, -0.11395264, -0.14074707, -1.4472656, 2.6074219, 2.8300781, -0.17260742, -0.019638062, 0.43164062, -0.28955078, -1.2119141, -0.3203125, 2.0683594, -0.13378906, 0.022277832, 0.88623047, -1.3564453, 0.9321289, -0.029510498, 2.4257812, -0.9160156, 1.9697266, 0.8144531, 0.6113281, 0.99853516, -1.3691406, 1.9462891, 2.3691406, 1.2919922, 0.8496094, 1.8554688, 0.5209961, -0.64453125, 0.7260742, 1.8798828, 1.4169922, -0.5888672, 2.4824219, -0.34033203, 1.171875, 2.1914062, -3.1132812, 2.6269531, -1.3544922, -0.29541016, 1.3076172, -1.8291016, 0.83203125, -1.4023438, -0.31396484, 0.11035156, -1.7226562, -0.2939453, -2.828125, -1.875, 0.30322266, -3.3554688, -2.734375, -0.7182617, 3.1523438, 0.22668457, -1.6542969, -0.78466797, 1.21875, -0.43798828, -1.8056641, 1.2451172, 2.0957031, -1.0205078, 2.6777344, 2.3476562, -0.82177734, 1.7998047, -2.6738281, 1.5322266, 0.5205078, -1.5810547, -1.1494141, -0.31274414, -0.8623047, -1.1523438, 2.1542969, 1.0976562, 2.4980469, -0.40698242, -0.36621094, -2.5253906, 0.59228516, 1.7353516, -2.1386719, -0.20349121, 1.5966797, 0.6376953, -0.63427734, 0.60839844, 1.6396484, -0.20629883, -2.6074219, 1.7783203, -2.4863281, 0.0060310364, 0.07928467, -5.265625, -1.0341797, -0.12670898, -0.9848633, 2.3242188, -0.5336914, 0.56933594, 2.8378906, -0.546875, -0.49414062, 0.62109375, -2.6933594, -2.4726562, -0.18933105, -0.9223633, 2.3339844, 0.17993164, -2.234375, -1.7324219, -2.5429688, -1.8847656, 0.34448242, 0.68603516, -0.84033203, 0.3869629, -2.5996094, 1.1416016, -1.8652344, 0.6533203, -0.1965332, 0.1842041, -0.105651855, -0.08770752, 2.3046875, -0.23034668, 1.6044922, 0.7241211, 0.9321289, -0.94091797, -0.5185547, 0.019119263, 1.1660156, 3.2226562, -0.75634766, -3.6503906, -0.0059814453, 0.41674805, 1.8457031, -0.46264648, -0.30444336, -0.8598633, -0.97265625, 0.11639404, 0.80029297, 2.5449219, 1.0751953, -1.1298828, -2.4785156, 1.28125, -1.0117188, -2.0527344, -1.3720703, 0.734375, 0.8696289, 2.0585938, -3.1933594, -2.2109375, 2.0058594, 1.1914062, 0.30371094, -1.1650391, 4.2890625, 2.4414062, 1.1298828, 3.2050781, -2.1640625, 0.6557617, 0.8022461, -0.9350586, 0.5776367, -0.4716797, -1.3544922, 0.13354492, 1.1210938, 2.2382812, -1.90625, -1.359375, -0.53466797, -1.6044922, -0.41455078, -2.109375, 2.9472656, -0.22949219, 0.5029297, 0.03152466, -3.1347656, 1.3300781, -0.36376953, -0.21972656, 2.0664062, -1.7773438, 0.2746582, 0.09173584, 0.7241211, -1.1035156, 1.7919922, -0.03250122, -0.53027344, -0.34350586, -1.8798828, 0.31445312, 1.3203125, -1.2783203, 0.13720703, 0.80322266, 1.1464844, -0.55859375, -1.6259766, 2.7070312, 3.0507812, -0.7597656, 1.6220703, 1.2744141, -0.6352539, 1.6953125, 1.5351562, -0.80078125, 0.80615234, 0.47436523, -0.95214844, 2.0332031, -1.3232422, -2.0292969, -0.9765625, 0.984375, -1.3867188, 2.1484375, -1.8691406, -1.2402344, 2.1972656, -1.4335938, 0.48095703, -0.66748047, 0.009727478, 1.7675781, 0.1616211, 1.9746094, -0.73583984, 0.91748047, 4.3007812, -1.6728516, -2.0292969, 1.2070312, -1.2597656, -0.10223389, -1.0595703, -1.0654297, -3.6542969, -1.0654297, 2.5058594, 1.0908203, 1.6005859, 0.4453125, 2.5820312, -2.078125, 1.6767578, 0.29223633, 2.4355469, -1.9140625, -0.4567871, 3.1386719, -2.8105469, -1.0078125, -1.4580078, 0.44262695, 1.8730469, 1.1513672, 2.25, -0.4440918, -0.41088867, -0.90966797, -3.0546875, -3.3925781, -1.0664062, 1.1347656, -1.3730469, 1.0839844, -0.5292969, 1.9824219, 1.2265625, -0.5805664, -0.5908203, -0.53759766, -0.14770508, -1.5732422, -1.0117188, -0.78466797, -1.8085938, -0.85058594, 1.7617188, 0.40283203, 1.0957031, 0.5205078, -4.125, -0.36401367, 0.9248047, -3.5644531, -0.9946289, 1.4550781, 0.44360352, 0.7895508, 1.3144531, 0.09509277, 0.9814453, 2.7871094, 0.05065918, -0.11187744, 0.48266602, -1.4560547, 0.61865234, -1.1572266, -1.1474609, 1.4326172, -1.3193359, 0.23388672, 0.18762207, -1.1025391, 1.9316406, 1.3398438, -0.15722656, -1.1083984, 0.54003906, 0.55810547, 2.5136719, 0.53564453, 0.1451416, -0.5, -1.1015625, -2.8867188, -0.4152832, -0.8071289, -1.7617188, -2.3300781, 0.62353516, 0.4951172, 2.0585938, 1.7285156, 1.3642578, 1.0244141, -2.4433594, -0.54833984, 0.9213867, 2.5761719, 0.75634766, -2.7363281, -1.8896484, -0.4230957, -0.23657227, 1.1748047, -0.46411133, -0.7421875, 0.3996582, -1.1113281, -0.72558594, 0.8725586, 1.0126953, 0.80566406, 0.85302734, 1.1601562, 1.2177734, 2.3085938, -0.87060547, 1.1123047, -0.44555664, 1.8408203, -3.0273438, 2.546875, 0.46118164, -3.5820312, -1.1464844, -1.4638672, 0.20874023, 1.0097656, -1.9902344, -0.9003906, -0.34472656, -0.5463867, -2.7363281, -0.44848633, -2.3085938, 1.0566406, 0.31933594, -0.07165527, -0.08666992, 2.0527344, -0.4169922, 2.6582031, 1.5117188, 0.69091797, -1.4580078, -1.0673828, -0.64941406, -0.078308105, 0.78808594, -2.0410156, 0.25512695, -0.82470703, 0.55322266, -1.0039062, 0.14318848, 0.61083984, 1.4726562, 1.359375, 2.5449219, 2.5703125, 1.9443359, 1.6396484, 0.117492676, 0.49023438, 0.7246094, -1.8603516, -0.1508789, 3.1308594, 2.0546875, 3.4296875, -0.1640625, 0.55810547, 1.8945312, -0.115478516, 0.5029297, 0.31982422, 1.7919922, -3.4414062, 0.5571289, 1.6552734, 0.15563965, 0.11230469, 1.9541016, -1.5410156, -1.3457031, 0.2541504, -0.37402344, 3.7363281, -1.1845703, 3.2070312, 0.7109375, 2.3222656, 1.2138672, -4.1445312, 0.32104492, 0.76220703, -1.9580078, -2.0097656, 1.6630859, 1.4677734, 2.1835938, 0.22595215, 1.296875, 2.0683594, 2.5351562, 1.8701172, -0.8569336, 0.65527344, -0.17333984, 1.8027344, 0.7026367, -1.1210938, -0.99609375, -0.20300293, -1.8984375, -1.046875, 0.98779297, 1.3320312, 1.3847656, 1.8066406, -3.9335938, 1.1123047, 0.36328125, 2.2167969, -0.8510742, -0.9277344, -0.44677734, -2.4960938, -0.70214844, -0.08178711, -1.6025391, 2.703125, 0.51660156, -0.54589844, 1.5585938, 0.64746094, 2.1210938, -0.515625, 1.3378906, 0.12359619, 0.056121826, -0.2841797, 0.75439453, 1.3544922, -0.8027344, -0.6640625, 2.15625, -0.2866211, 1.5136719, 2.0332031, -0.0019550323, 1.3330078, 2.0664062, -0.27954102, 1.6376953, 0.57958984, -0.40551758, -1.0419922, -0.12878418, 0.06793213, -2.6074219, 1.0195312, 2.015625, 0.43432617, 0.55371094, 2.2246094, -0.6982422, 2.2304688, 0.8359375, -1.4433594, -1.6396484, 1.1005859, 0.48608398, -0.9770508, -0.6972656, -0.58154297, 0.6933594, -0.18896484, -0.67285156, -1.1152344, 0.42041016, -0.27075195, 0.41308594, 1.3447266, -2.4316406, -1.4511719, -0.34375, -0.3466797, 0.12512207, 1.4248047, 1.6728516, -0.82177734, -1.5537109, -0.95947266, 0.7001953, -1.0058594, -2.7675781, 1.3027344, 1.734375, 1.9072266, -0.44482422, -1.4296875, -2.2832031, -1.0742188, -0.6821289, 0.953125, 0.71777344, -0.38134766, -0.29882812, -0.94091797, 3.5019531, -0.58251953, -1.3662109, 0.4934082, 0.036621094, 1.5380859, -0.07611084, 0.021881104, -1.2314453, -1.5478516, 1.7177734, 1.9443359, 3.2265625, 0.10357666, 0.96435547, 2.5058594, -1.4960938, -2.609375, 0.1517334, 0.08123779, 0.87158203, -0.8745117, 1.7080078, 1.09375, -0.97216797, 0.2565918, -0.11376953, -1.6962891]}, "B07QP6RCJW": {"id": "B07QP6RCJW", "original": "Brand: GasSaf\nName: GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS)\nDescription: Propane Tank Gauge
Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
Easy to Attach
It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
Solid Brass Withstands Weather, Scratching, Denting and Corroding
Color Coded Dial for Easy Viewing
How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak\nFeatures: 1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks\n2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement.\n3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety\n4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy.\n5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "embedding": [-1.4238281, 1.7988281, 2.734375, 1.7978516, -0.68603516, -0.13708496, 1.0126953, -1.359375, 2.0644531, 1.4550781, 0.9790039, -1.2636719, 1.1152344, -1.7714844, 2.5332031, 0.76708984, 0.29052734, 1.4277344, 1.0878906, 2.8222656, 2.375, 1.0205078, 1.3847656, -0.8857422, 1.1982422, 0.11102295, 3.2246094, -2.4394531, -0.3894043, -0.5463867, 1.3603516, -0.28979492, -0.20861816, 2.3398438, -0.7631836, -1.6386719, -0.18981934, -0.05834961, -2.4863281, -1.375, -0.6567383, 0.3918457, 1.7216797, 0.6845703, -1.9765625, -1.1816406, -1.2646484, 0.3178711, 0.8442383, -1.4365234, -0.0046577454, 2.1132812, -1.2011719, 0.09881592, -0.7841797, 1.1669922, 2.3652344, -1.9267578, 1.5634766, 2.2753906, 1.6152344, 0.54541016, -1.8066406, -0.10046387, -1.125, -0.18151855, 0.6635742, -0.20568848, 0.19372559, 1.7861328, 0.60302734, -0.06088257, 1.6660156, -0.97314453, -0.82421875, 1.2548828, -2.203125, 0.9111328, 1.171875, 0.7573242, -0.5307617, -0.054748535, 0.11315918, -2.6875, -0.6850586, 0.43310547, 1.5537109, 1.2041016, -0.67626953, 0.17675781, -1.8544922, 2.1777344, -2.8535156, -4.3046875, 0.8623047, 0.24414062, 0.63623047, 1.5644531, 1.9511719, 1.4833984, -0.6928711, -0.22167969, -0.4140625, 2.6894531, -1.9560547, -1.1621094, -0.12976074, 1.3369141, -3.1503906, -0.3022461, 1.3183594, -0.21801758, -0.13317871, -1.7675781, -0.6870117, -0.28076172, 0.796875, -1.0283203, 2.9082031, 0.5336914, 3.53125, -1.2871094, 0.65234375, 0.57666016, 0.27392578, 0.56884766, 0.61572266, -0.40600586, 3.0800781, -1.7949219, 2.2304688, -0.15539551, 1.4765625, -1.3828125, -0.009506226, -1.4560547, -1.4287109, -3.9882812, -1.9316406, -0.03741455, -4.4414062, 0.5908203, -0.64453125, 0.14904785, -2.5214844, 0.47338867, -3.5019531, 1.8691406, 1.6220703, -1.2207031, 2.1054688, -1.8857422, 0.89746094, -0.23986816, 1.7705078, 1.1357422, -2.1738281, -3.40625, 2.5664062, 1.6318359, 1.671875, -1.2490234, -2.6191406, -0.41723633, 1.0058594, -2.4042969, 0.43188477, -0.053710938, -0.7392578, 0.6176758, 0.77783203, -1.78125, -0.38842773, 0.84716797, 0.25195312, -2.4121094, 1.9863281, 2.2109375, 1.8388672, -1.296875, -3.4003906, -2.0683594, -0.8955078, -1.203125, 1.5917969, 0.6040039, -1.5566406, -1.5957031, -0.8466797, -2.5136719, -1.5488281, 1.84375, -1.0185547, 0.031585693, 1.0107422, -2.3476562, -4.59375, 0.11273193, -1.4375, -0.18469238, 0.83496094, -1.4111328, 0.6328125, 1.3701172, -1.1552734, -1.9755859, 1.75, -1.8759766, 1.6396484, 1.4589844, -0.22436523, -1.2832031, 1.3984375, -1.2138672, 0.09967041, -1.4511719, -0.27807617, 2.34375, 1.0419922, 0.79248047, 0.16479492, -0.3010254, 1.9931641, 0.8095703, 2.1210938, 1.4921875, 0.65185547, 0.77490234, -2.4941406, -1.8652344, 2.6289062, -0.11126709, -0.2109375, -1.3808594, 0.11151123, 2.1894531, -0.5258789, -0.38305664, 0.5205078, -0.8955078, -0.6533203, -0.105651855, -2.0097656, 0.4260254, -1.484375, -1.7822266, -0.7260742, 1.0419922, 2.859375, -1.4560547, 0.9477539, -0.70214844, -1.7666016, -1.3486328, -2.6894531, 0.70751953, 1.0644531, 1.8535156, -0.16418457, -2.5214844, 1.3291016, 1.2431641, -0.6142578, 0.31591797, 0.1920166, 2.0195312, 0.010726929, 0.62646484, -0.86572266, 1.6953125, 1.3662109, 0.91259766, 0.83984375, 0.46069336, 0.828125, 1.8105469, -2.046875, 2.9902344, -0.14660645, 0.69433594, 1.0029297, -1.1699219, 1.6425781, -3.46875, 0.921875, 0.68066406, 0.8798828, 1.3417969, -1.9042969, -0.40844727, 3.6855469, -1.9931641, -3.2539062, 3.7207031, 3.8730469, 0.62109375, 1.5419922, -0.2902832, 0.119018555, 0.20690918, 0.7192383, 1.4169922, -1.796875, 1.3925781, 1.8642578, -0.49731445, -0.44311523, -0.87841797, -0.018600464, 1.0458984, -0.033843994, 0.5732422, -1.2636719, 1.1025391, -0.6821289, -2.2871094, 2.5351562, -2.9335938, -1.5234375, 2.640625, 0.8955078, 2.8125, 0.96435547, -1.8701172, -0.093444824, 1.5458984, -0.84814453, 0.4230957, -0.43969727, 2.0253906, 2.7148438, -1.1484375, 0.08502197, -1.4990234, -1.0195312, 1.6376953, -3.0566406, -3.4433594, 0.67333984, -2.109375, -0.98535156, -0.24731445, 0.5073242, 2.1484375, 0.78222656, 1.3798828, -2.1152344, 0.63183594, 0.83691406, -2.8886719, 0.4243164, 2.6679688, -0.06021118, -1.9550781, 0.39624023, -0.14379883, -0.22644043, 1.8496094, -0.8466797, -0.6069336, -0.7915039, 0.73291016, 0.9975586, 0.84472656, -0.9868164, -0.50097656, 0.67285156, -2.6054688, 0.6279297, -3.2910156, 1.7412109, -1.6796875, -0.76123047, -0.95458984, -1.8994141, 0.4260254, -0.49609375, 1.9550781, -0.38500977, 3.15625, -2.0449219, 1.0009766, 0.032196045, -1.8144531, -3.1308594, -0.453125, -0.56591797, -0.4885254, -0.19238281, -3.1660156, 0.042785645, -1.4619141, 0.50439453, -0.48095703, -0.33984375, -3.9628906, 0.40356445, 1.7802734, -0.20837402, -0.47509766, 2.6894531, -0.47680664, -1.8457031, -1.2607422, 0.4987793, -0.07946777, -1.2744141, -0.7104492, 1.625, -0.12573242, 0.39331055, 1.0751953, 1.5107422, 1.0712891, -0.81347656, -3.125, 0.77685547, 1.40625, -0.83935547, 0.99902344, -0.9692383, -1.7910156, -0.8696289, 0.14953613, 2.9003906, 2.6621094, 2.4082031, -0.77001953, -1.21875, 0.30786133, 0.35913086, -0.6567383, -1.0537109, 0.38305664, 2.1210938, -2.7148438, -1.7363281, 0.8041992, 2.2617188, -2.1660156, -0.5678711, 0.42700195, 0.029296875, 3.2597656, 1.5576172, -1.6777344, 0.13720703, -0.68408203, 1.7529297, 0.14465332, 0.24438477, -0.81640625, -0.60546875, 0.33911133, -2.2714844, -0.45092773, 1.6513672, 0.2849121, 0.29101562, 0.86279297, -0.453125, -2.5195312, -0.28759766, -0.21203613, -0.7314453, -0.23254395, 1.2480469, -0.46044922, 1.0527344, -0.26782227, 0.49658203, -0.15124512, -1.2265625, -0.07910156, 0.14978027, 2.1816406, -0.066345215, -0.38330078, -1.6318359, 0.41796875, -0.5683594, 1.6220703, 0.7866211, 0.18945312, 1.2324219, -1.4052734, -0.3100586, -1.7128906, 1.0800781, -2.4472656, 0.6748047, 0.37475586, 0.3515625, -2.8476562, -2.0644531, -0.39282227, -0.6850586, -0.95703125, 2.0917969, 0.46655273, -0.92285156, 0.07922363, -0.20544434, 2.3398438, 1.4375, -2.2285156, -0.07714844, -2.4179688, -0.3083496, -1.8623047, 0.014411926, 1.7988281, 1.6787109, -2.4238281, 0.56884766, -1.1152344, 1.734375, 0.35913086, 0.828125, -0.8354492, -0.9614258, 0.75097656, 2.6699219, -0.38671875, 2.1875, 1.2041016, 0.025848389, -0.13049316, -3.640625, -0.5283203, -0.625, -4.3984375, 0.72998047, -2.0175781, 0.0042686462, 1.9443359, 0.9692383, -0.22839355, 0.15344238, 1.078125, -4.5664062, -1.3095703, -1.0400391, 2.2929688, -1.9140625, -0.2631836, 2.6601562, 2.3398438, -0.68115234, -2.2832031, -0.59277344, -1.9160156, 0.5649414, -0.20031738, 1.671875, 1.3027344, -0.31860352, -0.11456299, -0.6533203, -0.984375, -0.40893555, 1.2753906, -1.0390625, -2.5566406, 2.6835938, 0.21557617, 0.8364258, -0.43969727, 2.6191406, 2.9003906, -0.99072266, -0.64208984, -0.65283203, 2.0761719, 0.37719727, -2.0507812, -1.0068359, -2.203125, 1.2734375, -1.4394531, 0.83984375, -0.8359375, -1.4599609, 1.4384766, -0.47680664, 2.0488281, 0.4255371, 0.23718262, -1.5830078, 0.52734375, 1.3701172, -1.0966797, -1.0664062, -0.76220703, -1.8037109, 0.006427765, 0.37768555, -1.96875, -1.5986328, -0.56152344, -0.11590576, -3.9316406, 2.0917969, 2.0253906, 1.0009766, -1.1298828, -0.70654297, 0.1763916, 1.0117188, 1.5253906, 0.23864746, 0.4621582, 0.56347656, -0.32055664, 1.3544922, 1.4941406, -1.5888672, -0.62060547, 1.1748047, -0.84521484, 0.80126953, 0.19116211, 1.546875, -1.9433594, 0.5019531, -1.3662109, -0.78271484, 2.3652344, -0.7998047, 0.47631836, 2.7910156, -0.070739746, -3.0488281, 0.5834961, 2.4667969, 3.3183594, -0.028457642, -0.2770996, 2.2304688, 2.4394531, 0.5073242, -0.23962402, -0.19311523, -1.8173828, 1.2646484, -0.79541016, 2.1464844, -2.2148438, 0.6064453, 0.8642578, 2.40625, 1.4375, 0.5180664, 1.3330078, -2.0351562, 2.0058594, 0.36914062, -0.35766602, -0.8198242, -0.47436523, 0.31396484, 2.5, -1.5927734, -1.7998047, -0.87646484, 2.0957031, 0.42944336, 1.9990234, 1.2978516, 0.23950195, -0.38793945, -2.2050781, -2.9003906, -0.1697998, -0.007457733, -0.16491699, -1.1425781, 0.103515625, -0.3864746, 1.6347656, 2.5097656, 0.78125, 0.15319824, 0.013626099, -0.19604492, 0.29418945, -0.9067383, -0.9165039, -1.2021484, 0.47094727, -0.3059082, 0.7680664, 0.48095703, 1.4482422, 2.1464844, -0.32543945, -2.5136719, -1.6777344, 1.2509766, -1.0605469, -1.0898438, 1.4707031, -0.42626953, 0.5834961, -0.39282227, 0.36669922, -1.7255859, 0.96728516, 3.6972656, -0.09039307, -0.21850586, -0.85302734, -2.8769531, -3.9160156, -1.28125, 0.4399414, 0.5654297, 1.4394531, -2.8769531, -0.41186523, 1.3017578, -0.15307617, 0.070007324, -3.0605469, 1.65625, -0.61865234, 0.060302734, -0.96191406, 1.3339844, -0.52490234, 0.9111328, -1.1220703, -1.0097656, -1.5068359, -2.65625, -2.015625, -1.6162109, -1.0341797, -0.37841797, 0.6323242, -0.9423828, 1.2041016, 1.2246094, 1.4404297, -1.6962891, 2.2441406, -1.3466797, -0.36206055, 3.1210938, -1.0146484, 0.7548828, 1.9550781, 0.021728516, 0.9892578, 0.9614258, 1.7255859, -1.6162109, -0.3557129, 0.5449219, 1.234375, -0.83740234, -1.3955078, 0.87597656, 0.10406494, 1.8525391, 0.73876953, -0.65771484, -1.7333984, -2.2773438, -3.1894531, 0.73779297, -0.048858643, 0.40356445, -0.75927734, 0.94677734, 0.8701172, 0.83251953, -0.27734375, 1.3066406, -1.8662109, -1.8984375, 2.4726562, -1.0146484, 2.1992188, 2.0800781, -2.0449219, -2.1914062, -3.140625, 2.9863281, 2.3632812, -1.1542969, 0.421875, -1.0957031, -0.18725586, 1.8339844, -0.27392578, 2.8417969, -0.093933105, 1.2246094, -0.30859375, -0.15490723, 2.5117188, -1.6035156, 1.4462891, 1.6298828, -0.97509766, 0.5463867, 1.4296875, 1.7421875, -2.1738281, 1.0322266, -2.2636719, -0.054229736, -1.6728516, -1.2333984, 0.6635742, -3.6503906, 0.12915039, -0.6352539, -1.6816406, -3.6582031, 2.3144531, -0.05734253, -1.2490234, 0.99658203, 2.0253906, -1.6845703, -0.74365234, 3.1601562, -1.4228516, -1.3203125, -1.3378906, -1.9550781, -0.26391602, 1.4277344, -3.0664062, -1.6796875, 3.7070312, 2.8925781, 0.19030762, 1.4970703, 0.34301758, 2.0253906, 0.029891968, 2.4492188, 4.2734375, -0.09667969, 2.3398438, 1.4140625, 1.9511719, 4.9296875, -1.8583984, 1.4277344, -0.06530762, 1.0810547, 1.9873047, -1.6777344, 0.03753662, 0.40014648, 0.47265625, -0.8129883, 0.26342773, 1.9824219, -3.4511719, 0.4711914, 0.029388428, 0.115356445, -3.1074219, 0.3725586, -2.0078125, -0.11029053, -0.5463867, 0.66259766, 1.1777344, -1.3261719, 0.15490723, -0.1381836, 1.0302734, 3.21875, -1.1308594, -0.31103516, -1.3740234, -2.8125, 0.27905273, 1.5712891, 0.5888672, 0.50927734, 0.059295654, 0.16479492, -1.4052734, -0.61621094, 1.7802734, -3.1816406, 0.95703125, -0.796875, 1.4707031, 1.7314453, -0.9716797, 2.6503906, 0.15270996, 0.5185547, -3.109375, 1.2900391, -1.3769531, 1.1435547, -0.16430664, -5.1875, 0.13195801, -1.8896484, 2.2558594, -4.0742188, 0.34033203, 0.40795898, -2.6132812, 1.8496094, 0.57421875, -1.9375, 2.1992188, 1.203125, -1.9716797, 0.0052490234, 1.4111328, 1.2509766, -0.91308594, 0.34692383, 0.3671875, 0.097961426, -1.3271484, 2.2597656, -0.32861328, -0.28979492, -0.61279297, 1.796875, -0.038146973, 1.1699219, -1.75, -0.25146484, 0.94091797, 0.48217773, 0.100097656, -0.5522461, -1.8388672, 1.2763672, 0.4206543, -0.3762207, 0.26757812, 0.64453125, 0.64208984, 1.2832031, -3.1269531, -2.0585938, -0.075805664, -0.47314453, 1.1064453, 0.7963867, -1.5917969, -0.7060547, -1.3056641, 1.2714844, -2.5996094, 1.0048828, -1.8144531, -0.19348145, -1.5527344, -1.9433594, -0.2619629, 2.6738281, -0.0024471283, 0.8959961, 0.22387695, -1.2119141, 1.1298828, -0.5102539, -2.9960938, 2.1542969, 1.6484375, 0.35083008, 0.9296875, -0.020248413, 0.2536621, 0.86816406, -1.0449219, 0.32958984, 0.90771484, 2.7832031, 2.296875, 0.92626953, -0.60595703, -1.2910156, -0.77685547, -2.9101562, 0.9658203, 0.23864746, -0.39208984, 0.5102539, 2.5917969, 1.8603516, -0.8051758, 0.95654297, -0.8051758, -0.055114746, 0.55322266, -1.9863281, 0.3190918, 0.98095703, 0.8076172, 0.7939453, 2.6816406, 3.5195312, -1.4384766, -0.50146484, 1.7373047, -1.6611328, -0.5341797, 0.67089844, -0.22546387, 0.66552734, 1.4521484, 1.5917969, 3.375, 0.16687012, -0.9321289, -0.63671875, 0.064575195]}, "B001DC5HBG": {"id": "B001DC5HBG", "original": "Brand: Stansport\nName: Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)\nDescription: \nFeatures: Handy five-foot Propane Hose and Regulator Assembly tube\nFunctions as an extension cord for your outdoor propane appliances\nDesigned for use with Stansport's cast iron propane stove models 208, 209, and 210\n11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity\nNot universally compatible with all brands, Use caution when using propane appliances, For outdoor use only\n", "embedding": [-0.84228516, 1.8339844, 0.6074219, 0.6821289, -1.0927734, 0.69384766, 2.1347656, -0.70458984, 0.72558594, -0.34375, 0.66796875, 1.0351562, -0.020858765, -3.3945312, 0.74121094, -0.11456299, 0.36499023, -0.73291016, 0.8354492, 1.6601562, 0.42114258, -0.3725586, 3.2207031, -2.2402344, 0.69970703, -0.9472656, 4.5703125, -1.8222656, -0.59472656, -0.6113281, 0.29248047, 1.5273438, 0.56152344, 1.8408203, -3.1679688, -0.3256836, -0.9243164, -0.9482422, -3.2128906, -0.04776001, -1.5019531, 2.2851562, 2.5742188, 0.4699707, -2.1074219, 0.12670898, 2.5214844, -0.56396484, 0.28857422, 0.27954102, 0.16040039, -0.0032310486, 0.23413086, 1.4189453, -1.0869141, -0.67626953, 0.38427734, -1.9453125, 1.0224609, 1.3789062, 2.6953125, -1.0126953, -1.8613281, -0.78027344, -0.6191406, 2.6015625, 0.42626953, -0.9501953, -1.1015625, 1.2275391, 1.4033203, 0.5708008, 0.60253906, -1.7705078, 1.0908203, 0.49389648, -3.484375, 1.0097656, 2.4726562, -1.3798828, -1.9912109, 2.328125, 0.27929688, -0.43798828, 0.3491211, -0.120788574, -2.7050781, -0.82910156, -0.39160156, 0.5439453, -4.2421875, 3.1679688, -2.640625, -4.0742188, 0.5703125, -0.29760742, 1.625, 0.90625, 0.23034668, -0.1574707, -0.45288086, -1.5039062, 0.5810547, 1.9863281, -0.6723633, 0.42895508, 2.0898438, 1.6201172, -2.2871094, -0.43066406, 0.08227539, -1.0185547, 1.5976562, -0.39794922, -0.5957031, -0.92871094, -1.2041016, -0.6982422, 3.6484375, 0.6660156, 2.6328125, -0.95214844, 1.3847656, 1.4453125, 0.39282227, 1.6796875, -1.0195312, 0.77490234, 2.5761719, -0.8486328, -0.26123047, -2.6152344, 0.75097656, 0.53808594, 1.0322266, -1.9423828, -1.4589844, -1.8642578, -0.72265625, -1.25, -2.8105469, -0.6850586, 0.8125, 0.20007324, -5.03125, -0.12573242, -0.9453125, 1.1132812, 1.4853516, -2.9960938, -0.75390625, -1.7158203, -0.46411133, 0.15478516, 2.3964844, 0.92333984, 2.4394531, -1.5888672, 1.4785156, 3.1191406, 1.8095703, 0.039794922, -2.2617188, 0.45385742, 0.5, -4.578125, 0.19873047, -0.14440918, -1.6484375, 1.0029297, -0.48461914, -2.5273438, -1.5585938, -0.9355469, 0.13342285, 0.9350586, 0.26538086, 2.4453125, 1.2402344, 0.0067634583, -2.09375, -1.6054688, 0.14099121, -2.1660156, 1.0361328, -1.8105469, -0.4963379, -1.6337891, 0.6279297, -0.0592041, -2.4648438, -0.29736328, -1.5371094, 0.5136719, -1.1064453, -2.8261719, -1.6914062, -2.1914062, 0.8623047, 2.640625, -2.546875, -1.7929688, 0.29003906, 0.8935547, -1.3681641, -1.8671875, 1.1826172, 2.0820312, -0.8442383, 1.9785156, 0.33813477, 0.25146484, 2.8730469, -1.5732422, -1.2705078, -2.6425781, 2.4667969, 2.1933594, 2.3027344, 2.0820312, -0.20288086, 1.0048828, 0.41381836, -0.2244873, 2.234375, 1.2734375, 0.55322266, 0.5864258, -2.6777344, -1.1708984, 1.8066406, 0.9824219, 0.14538574, -0.43969727, -0.02772522, 2.7988281, 1.4365234, 0.92871094, 0.32006836, 2.2285156, 0.45043945, -0.38012695, 0.121276855, 0.6069336, -0.57177734, -0.3840332, 0.17468262, -0.14074707, 1.2880859, 1.8017578, 1.1435547, 0.33251953, 0.8125, -0.35742188, 0.36499023, 0.16369629, 0.92578125, 0.38134766, -0.1307373, -2.2128906, 2.1113281, 0.34545898, 0.8051758, 0.012680054, 0.18908691, -0.84228516, 2.3515625, -2.1054688, -1.7519531, -1.0800781, -1.7744141, 2.21875, 2.0859375, -0.6191406, 1.9570312, 0.1821289, -1.8222656, 2.8457031, 0.88720703, 0.07086182, 1.0117188, 0.11022949, 2.4414062, -2.7421875, 2.1054688, 0.46435547, 2.2011719, 0.60546875, -2.796875, 0.24511719, 4.8085938, -0.58447266, -1.1416016, 1.8095703, 0.33251953, -0.22753906, 1.1318359, 2.0195312, -0.008705139, -1.6679688, 1.9746094, -0.1665039, -1.5634766, 1.2900391, 1.7685547, -0.5805664, 0.20935059, -3.015625, -0.92529297, 0.02720642, -2.0878906, -1.7519531, -0.90527344, 2.9296875, -2.4335938, 0.2467041, 1.9892578, -2.5898438, 1.6230469, 0.6015625, 0.4416504, 0.15698242, -0.32714844, -0.3869629, -0.12023926, 0.4338379, -1.7197266, 2.9570312, 2.4941406, 1.5498047, -0.328125, -0.83251953, -0.28979492, -3.2246094, -1.1113281, 1.2363281, -1.4003906, -1.1542969, 1.2587891, -1.4277344, 0.4182129, 1.2988281, -1.0888672, 2.7167969, 0.8540039, -2.2480469, -0.4404297, 0.59814453, 0.20581055, 0.023254395, 1.1845703, 2.6015625, -0.32250977, -0.70410156, -2.4101562, 0.17858887, -0.26367188, -0.46289062, -1.5908203, 1.3300781, 0.9921875, 0.7207031, -1.6826172, -0.011642456, 0.5878906, -2.1328125, 2.7148438, -4.1875, 0.8515625, 1.1542969, 0.8618164, -1.1552734, 1.4658203, -0.61328125, -3.1933594, 0.61572266, -0.09472656, 2.8867188, -0.58447266, 2.4492188, -1.6708984, -0.8178711, -0.2746582, -1.0429688, -2.9277344, 1.4902344, 0.08306885, -1.3017578, 1.0888672, -1.7041016, 0.43676758, -0.76171875, 1.1679688, 0.29589844, -0.6821289, -0.47851562, -0.5263672, 0.27148438, -0.8515625, 0.11383057, -0.040374756, 1.0537109, -0.82958984, -0.44580078, 0.61621094, -0.5073242, 0.96533203, 1.2744141, 0.059814453, -1.6679688, -0.45214844, 2.7226562, -0.0017318726, 1.5292969, 0.25683594, -2.8730469, 1.8798828, 2.5664062, -0.7675781, 2.5292969, -1.4208984, -1.8154297, 0.2548828, -0.96875, 1.9794922, 1.2636719, 1.3867188, -0.23535156, -0.18762207, 1.1542969, 0.30200195, -2.7929688, -2.6210938, -0.41992188, 4.0820312, -1.6416016, -0.37304688, 0.70654297, -0.74560547, -2.5703125, 0.040130615, -0.9301758, 0.1586914, 1.359375, 1.1982422, -0.72753906, -1.6367188, 2.0820312, 1.2070312, 0.8276367, 0.5805664, -1.2675781, -0.41455078, 1.3925781, -1.5654297, 0.6386719, 1.7451172, 0.8955078, 1.9121094, -0.38476562, 1.1494141, 0.6455078, 0.8222656, 1.1191406, -0.13049316, 0.9316406, 2.8027344, 1.0068359, 0.8930664, -1.9335938, 1.8867188, 1.7646484, -2.0605469, -0.85498047, 2.2304688, -1.2734375, -1.1894531, 0.81103516, -1.4375, 0.115112305, -1.2246094, 0.7036133, 0.08508301, -2.1328125, 0.5053711, -0.023849487, 3.1484375, -1.7050781, 2.8730469, 0.1328125, -0.26831055, -1.3544922, -0.92041016, -1.4345703, -1.6171875, -2.09375, -3.4082031, -0.72509766, 1.8115234, 2.2929688, 0.49536133, 0.35864258, -1.1806641, 1.3681641, 3.5019531, -1.5654297, 0.049713135, 0.8588867, -0.9868164, 1.3808594, -0.7402344, 1.9658203, 0.7973633, -1.8652344, -0.5307617, -1.9199219, -0.55566406, 0.7763672, -1.8867188, 0.171875, 1.2050781, -0.07800293, 1.390625, -0.4189453, 2.4726562, -1.6582031, -1.1123047, 1.1015625, -3.0996094, -0.34448242, -3.6640625, -3.2890625, 0.2722168, -1.7646484, 0.8613281, 1.7041016, 1.1523438, 0.62158203, 1.5019531, 1.6191406, -2.4316406, -0.90283203, 0.22167969, -0.32983398, -2.8261719, -1.2011719, 0.15771484, 0.33251953, -1.2255859, -1.7519531, 0.12005615, -2.4746094, -0.7944336, -0.65722656, -2.640625, -0.32739258, -1.1103516, -0.25756836, -0.9355469, -0.121520996, 1.9179688, -0.84814453, -0.49243164, -2.1152344, 1.4345703, 2.4082031, 1.5283203, -0.0826416, 2.890625, 0.1809082, -1.7080078, -0.2854004, -0.74853516, 1.8642578, -0.43969727, -0.9042969, 1.9433594, -1.2988281, 0.21777344, -0.47802734, 0.17248535, -0.076416016, -0.9394531, 0.21887207, 0.33642578, 0.22875977, 2.2714844, 0.14794922, -3.0527344, 0.9658203, 1.8945312, -1.1269531, -1.0585938, -1.4921875, -1.9824219, -1.5517578, 1.2236328, -1.6748047, -0.92529297, -2.0429688, 1.046875, -0.75146484, 1.9726562, -0.5498047, 0.04083252, 1.3144531, -0.53222656, -1.3330078, -0.6542969, -0.27441406, -0.9526367, -0.57666016, 0.20751953, -2.0058594, 2.1367188, 2.3828125, -0.8623047, -3.5683594, 0.35083008, -1.0058594, -0.89208984, -1.0107422, 1.1416016, -0.40722656, -0.32885742, 0.9453125, -0.90527344, 2.7851562, 0.001209259, 1.9482422, 1.1767578, -1.1259766, -2.2929688, 2.4101562, -0.12646484, 1.8740234, 2.0976562, 0.36035156, 0.6816406, 1.1621094, 2.2675781, 1.2119141, 2.1328125, -0.7011719, 0.97216797, 1.2802734, 1.1669922, 0.46142578, 0.54589844, -1.2578125, -0.1217041, 1.2001953, 2.8066406, 0.8564453, -1.4892578, 1.1083984, 0.27026367, -0.27563477, -0.0044021606, -0.48999023, -1.5673828, 3.84375, -1.7441406, -2.3613281, 0.48339844, 2.8554688, -0.60058594, 1.7919922, -1.1455078, -1.4052734, 0.5288086, -1.8466797, -0.76904297, 0.3725586, -0.4020996, 1.8779297, -1.2207031, 1.9746094, 0.14892578, 2.2363281, 1.3925781, -0.91308594, -0.043701172, -0.63378906, -1.6601562, 0.30566406, -0.51171875, -1.1015625, -3.7949219, 0.9897461, 0.03540039, 0.9814453, -0.22973633, 0.7763672, 0.6489258, -1.6884766, -0.77734375, -0.10510254, 0.75, -1.8681641, -1.0732422, 2.9179688, 1.0634766, 0.042236328, -0.8808594, -1.8730469, -1.2802734, 0.41259766, 0.72314453, 0.9082031, -0.36132812, -0.77001953, -1.75, -5.3554688, -2.4277344, 0.51904297, 0.42797852, -0.23339844, -2.2207031, -0.1373291, 0.73291016, -0.06774902, 0.43896484, -2.1523438, 1.3359375, 0.3876953, 2.2304688, -0.6767578, -1.3652344, -0.88427734, 1.7158203, -0.43188477, 0.7661133, -0.25146484, -0.7963867, -3.2695312, 2.1035156, -1.8740234, 0.41845703, 1.6083984, -0.83691406, -0.77685547, 1.8300781, -0.09790039, -1.2294922, 0.4794922, -3.3867188, -0.72558594, 0.8574219, -2.0839844, 0.87646484, 1.0888672, -1.8066406, 1.8134766, 0.37402344, 1.0947266, 1.0810547, -0.10913086, -0.02545166, 0.6298828, -0.25952148, -0.47753906, 0.47583008, -0.22680664, 2.4414062, 3.7949219, -0.6538086, -1.2207031, -2.1835938, -1.4589844, 0.15161133, -1.0615234, 0.7260742, 0.86279297, 0.5703125, 0.91748047, -0.10144043, 0.35717773, -0.5292969, 1.0322266, 0.92333984, 0.9848633, -2.0078125, 2.6503906, -1.0283203, -0.18310547, -2.25, -0.1270752, 0.5625, 2.4238281, -0.62939453, 0.26245117, 0.95996094, -0.61328125, 0.16210938, 0.11932373, 1.0595703, 2.34375, 2.5097656, -1.6689453, -0.28930664, 1.7890625, 0.28564453, 1.0087891, 1.0683594, -0.23486328, -1.8701172, 0.24780273, 2.6210938, -1.1025391, 0.39672852, -0.48706055, 1.1455078, -0.30297852, -2.1171875, 2.4648438, -1.9521484, 1.1191406, 0.047546387, -2.5253906, -2.5390625, 1.2851562, 2.09375, -1.6738281, 1.5966797, 2.4003906, -1.390625, -0.5185547, 0.7441406, 0.51220703, -0.22668457, -0.4572754, 0.31884766, 1.2304688, 2.2070312, -1.2685547, 0.8989258, 0.9921875, 1.5683594, -0.6323242, -0.32763672, 0.33374023, 1.7724609, 0.5102539, 1.0683594, 2.6074219, 0.48413086, 1.453125, 1.1386719, 1.7832031, 1.5058594, -0.26831055, 1.1982422, 1.2626953, -1.5097656, -0.6333008, -0.6401367, -1.0322266, -0.13867188, 0.2154541, -0.19421387, 0.58447266, 1.7167969, -2.1796875, -0.5932617, -0.12207031, 0.24450684, -2.6894531, 1.1992188, -2.1816406, -0.15393066, 3.1992188, 1.2998047, -0.32836914, 1.4580078, -1.296875, -0.01889038, -1.6777344, 1.0888672, -1.0625, 1.1142578, -2.9492188, -3.1210938, -0.24121094, 2.1816406, -0.20947266, -0.18432617, 0.16467285, 0.18908691, 0.61328125, 0.32592773, -0.28222656, -1.4306641, 1.0478516, 0.02319336, 1.6953125, 2.5292969, -1.7539062, 1.7734375, 2.3808594, -1.7353516, -3.2539062, 3.9648438, -0.1472168, -0.98876953, -0.14709473, -3.2128906, -0.2220459, -0.052520752, -0.6279297, -2.1835938, -0.94677734, 0.6152344, -1.078125, 0.7529297, -0.0914917, -0.7392578, 1.828125, 0.09082031, -0.7836914, 0.39990234, 1.4921875, 1.5, 0.57470703, 0.26904297, -0.9238281, -0.08251953, -2.9238281, 3.5605469, 1.2636719, -1.3417969, 0.7817383, 3.9648438, 1.0351562, 1.4316406, 0.44018555, -1.015625, 1.0419922, 1.1591797, -1.2832031, -0.6171875, -2.4296875, -0.9404297, 1.2587891, -0.8076172, -0.14489746, -2.0976562, -0.42578125, 0.39208984, -2.2578125, 3.1738281, 2.0175781, -2.0019531, -1.1113281, 0.08807373, -1.3134766, -2.3027344, 1.7910156, 1.9111328, -1.2167969, -1.3857422, 0.7348633, 2.1113281, 0.5419922, -2.8164062, 0.23986816, -0.44067383, -2.03125, -2.5957031, -0.21679688, -1.2783203, -0.7084961, 0.08544922, -0.90771484, -0.7871094, 0.8618164, 0.2722168, -0.053253174, -0.80810547, -1.7861328, 0.06112671, -1.7509766, -0.8564453, 0.8647461, 1.4423828, -1.6953125, 0.84375, -1.7949219, -2.0175781, -0.4970703, -0.82666016, 1.7646484, 0.5019531, -0.53271484, 0.68603516, 2.5703125, 3.3496094, -1.2880859, 0.4248047, -1.3251953, 0.6713867, 0.050323486, 0.033233643, 1.8398438, -1.8378906, -0.55859375, -0.26123047, 6.3984375, 1.2978516, -0.16723633, 0.56103516, 1.6455078, -0.59277344, -2.6933594, -0.89990234, -0.17504883, 0.1998291, -0.84765625, -0.10418701, 2.140625, 1.2568359, -1.6152344, -2.6953125, -0.27026367]}, "B00CRW6ZP8": {"id": "B00CRW6ZP8", "original": "Brand: Bull Outdoor Products\nName: Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head\nDescription: \nFeatures: 60, 000 BTU's of cooking power, Liquid Propane Outlaw Drop-In Grill Head\nUnit Dimensions: 32.25\" W x 24.12\" D x 21.25\" H | Cooking Grid Dimensions: 30 X 19\"\nWarming Rack 210 Sq. In. | Cooking Surface 810 Sq. In.\n5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking\n305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n", "embedding": [-1.3417969, 2.7910156, 2.21875, -0.09857178, -2.3339844, 0.07104492, -0.7211914, -1.6728516, 0.87939453, 2.6484375, 1.78125, 0.171875, 0.42504883, -3.8769531, -0.1352539, -0.3461914, 1.3515625, 1.9550781, 2.4003906, -1.3398438, 1.4267578, -0.38598633, 2.125, -2.0449219, 0.63378906, 0.5029297, 4.21875, -2.0507812, -0.17712402, 0.0071983337, 0.5986328, 1.5224609, 1.3984375, 1.1435547, -1.1738281, -0.421875, 0.45898438, 0.07763672, -3.7617188, -0.5029297, -2.0253906, -0.59472656, 2.7910156, 1.1992188, -2.4472656, 0.67333984, -0.8779297, -1.0966797, -0.17346191, -2.40625, 2.2324219, 0.72021484, -1.9033203, 1.8515625, -2.375, 0.94091797, 0.73583984, -3.1015625, 0.22851562, -0.8833008, 0.17175293, 0.4885254, -2.2675781, 2.1484375, -0.7651367, 0.83740234, -0.7919922, -0.3852539, 1.9541016, 1.1699219, 1.8818359, -1.4453125, -0.17285156, -1.2792969, 0.6245117, -0.025756836, -1.7851562, -0.78759766, 0.7211914, -0.21276855, -2.0058594, 4.21875, 0.52246094, -2.0136719, -0.30908203, -0.5151367, -1.5029297, -1.8154297, 2.09375, -0.07952881, 0.036376953, 3.0429688, -2.9296875, -4.4453125, 1.6162109, -0.2253418, 1.2480469, 1.75, -0.46435547, 0.8466797, 0.21936035, 1.0039062, -2.0703125, -1.0068359, -2.875, -0.46240234, 0.7651367, 0.8129883, -2.0058594, 0.37768555, -1.2773438, 0.65966797, 2.1953125, 0.33496094, 2.515625, -0.50146484, -1.5693359, 2.0898438, 1.6152344, 2.5625, 2.9765625, -0.27368164, 0.12231445, 0.79345703, -0.109802246, -0.5209961, -0.42260742, 0.20996094, 4.3320312, -1.5234375, 1.5410156, -2.03125, 2.7148438, -2.5585938, 0.15026855, -0.88623047, -0.5488281, -1.5576172, -1.7285156, -0.22729492, -3.4628906, 0.2939453, 0.78125, 0.3154297, -4.7578125, -1.7802734, -1.1572266, -0.05996704, 0.37597656, -3.3984375, 0.515625, -1.6767578, 0.03945923, -3.0175781, 1.9589844, -0.4248047, -2.2597656, -0.17553711, 3.4570312, -1.1777344, 0.08428955, -2.3378906, -1.0585938, 0.14355469, 0.33666992, -3.3398438, -0.5136719, 1.4912109, 1.296875, 2.3515625, 0.35107422, -2.1171875, -1.84375, 0.21728516, -0.13330078, -1.3203125, 0.3959961, 1.1308594, -0.5800781, -0.35961914, -1.7558594, -1.6347656, -0.5942383, 0.72021484, 2.0742188, -2.171875, 0.2956543, -0.46142578, 0.14074707, -0.9711914, -0.17175293, 0.6303711, 0.101135254, -0.39794922, -0.7368164, -1.2880859, -1.0644531, -1.8662109, 2.4199219, 2.4101562, -0.013198853, 0.3330078, -1.1416016, -0.12463379, -1.2314453, -0.68847656, -0.0826416, -3.3144531, 1.5332031, 2.1074219, 0.9067383, -1.5478516, 3.6972656, -0.3425293, -0.0065994263, -1.6503906, 2.0527344, 0.2524414, 2.6132812, 2.3476562, -0.99560547, -0.0059280396, -0.21228027, 1.0244141, 1.5224609, -0.5708008, 0.71728516, 0.53564453, -2.671875, 1.1005859, 2.1523438, 0.58740234, -0.3815918, 0.69628906, -1.6699219, -0.7060547, 1.3164062, -2.4277344, -0.48657227, 0.5654297, 0.99902344, -0.10632324, -1.1650391, -0.5473633, -0.3713379, 0.02293396, -1.2587891, 2.25, -0.5126953, 1.4462891, -2.1894531, -0.4169922, 0.4777832, -1.7685547, -0.27124023, -0.05255127, -0.80126953, 0.6621094, -1.7216797, -1.5625, 0.8510742, -1.2128906, 0.122680664, -0.4963379, -0.24865723, 0.39453125, 1.8867188, 1.1826172, -3.6816406, -2.625, -0.73291016, 1.6904297, 1.7373047, -0.52001953, 0.77783203, 2.3808594, -1.8564453, 2.5917969, 1.5078125, 2.0058594, 1.625, 0.8417969, 1.8544922, -1.9755859, -2.0664062, 0.6328125, -1.0068359, -0.08380127, -2.8398438, 0.90283203, 3.8554688, -0.12335205, -2.4589844, 1.7226562, -1.9853516, 1.2402344, 1.9423828, -0.92529297, 0.82470703, -0.033172607, 1.4277344, 0.24719238, 1.1699219, 2.4472656, 1.0957031, -2.6582031, -0.20129395, -3.25, 2.7675781, 2.3945312, -2.4472656, 0.9291992, -1.7050781, 1.1328125, -1.7392578, 0.46533203, 2.7890625, -4.1289062, 0.5649414, 1.7558594, 0.5341797, 0.86816406, -0.2783203, -3.984375, -2.2871094, 1.2431641, -0.3190918, 0.34765625, 1.5009766, -1.796875, -0.3725586, -1.2646484, 0.4387207, -0.88378906, -0.3581543, -0.84521484, -2.6230469, -1.2890625, 0.8334961, -0.4934082, -0.9506836, 2.0117188, -2.8300781, -0.55566406, 0.3623047, -3.6152344, -1.4414062, -0.32202148, -0.53271484, -1.4814453, -0.42114258, 0.72802734, 1.5107422, -4.6796875, 0.86376953, 0.3305664, 0.36279297, -0.075805664, 0.15563965, -0.71875, 0.47509766, -1.4199219, -1.3251953, 1.5185547, 2.234375, -1.1953125, 1.4101562, -3.5097656, 2.3984375, -0.6328125, -0.16699219, -1.2236328, -0.5864258, -3.3808594, -2.3339844, -0.22314453, -0.08538818, 2.0703125, -0.9638672, -1.1806641, -0.13769531, 0.54052734, 1.1621094, 0.3173828, -3.03125, -0.41748047, 0.76416016, -0.93847656, -1.3896484, -4.6640625, -0.43652344, -0.3876953, 0.88623047, -0.61865234, 0.37329102, -0.23913574, -0.5942383, -0.21008301, 0.019927979, 0.8618164, -0.5605469, -1.9775391, 0.22692871, -1.9130859, 0.26416016, -1.5742188, 0.3215332, 0.5097656, 1.0732422, -1.4208984, 0.025299072, 1.9052734, -1.0761719, 2.4492188, -2.8691406, -1.9667969, 1.5761719, 1.9072266, -0.92089844, 2.8125, -1.6777344, -0.45361328, -1.7988281, 0.64453125, 2.9863281, 0.98876953, 3.3027344, 0.62597656, -0.73828125, -0.7739258, -1.421875, -0.115234375, -0.23010254, -0.39013672, 4.9960938, -3.3105469, -1.5673828, 0.64990234, 2.8183594, -3.6875, 0.82421875, 1.7646484, 0.22265625, 2.2382812, 2.3515625, 0.81103516, 0.62353516, -0.64501953, 0.58740234, 0.6640625, -0.2052002, 1.3134766, -1.4746094, -0.5019531, 0.4645996, 2.2207031, 0.58447266, -0.15820312, 3.1699219, 0.9785156, 0.00044035912, -0.34326172, -0.103881836, -1.5957031, 0.5419922, 1.1083984, 0.29077148, -1.2441406, 0.7421875, -0.85595703, 0.6040039, 0.46899414, -1.9960938, -1.4541016, 2.0039062, 0.68359375, -0.27783203, 1.7421875, 2.1601562, -0.8457031, -1.0273438, -0.6953125, 0.055541992, 1.2714844, 1.1142578, -1.6923828, -0.090026855, -2.1601562, 1.7421875, -2.2480469, -1.0576172, -1.9707031, -0.089538574, -0.39379883, -1.7421875, -0.21350098, -1.5029297, 1.0458984, 2.7617188, 3.0429688, -0.9086914, 0.71191406, -0.52441406, 3.1445312, -0.42114258, -1.6162109, -0.38720703, -0.98339844, 0.4814453, 0.10473633, 0.16491699, 2.875, -1.0644531, -1.7275391, 0.6381836, -1.0498047, 1.9375, 0.49902344, -0.82177734, -2.7109375, 1.9296875, -0.41015625, 0.6191406, 1.0224609, 2.7832031, -1.3730469, 1.5625, 3.5136719, -1.7724609, 0.34765625, -1.4316406, -5.4296875, 0.32641602, -2.1484375, -1.4433594, 1.3417969, -1.0771484, 0.06518555, 1.2070312, 0.46362305, -2.4296875, -0.0758667, -2.8632812, -0.7290039, -1.4511719, -2.8125, -0.65771484, 1.8603516, -1.0175781, -1.9072266, -1.1025391, -1.5068359, 1.2705078, 1.3642578, -1.8857422, 1.0371094, -2.1699219, 0.96191406, -0.87939453, 0.3371582, 3.3925781, -0.47924805, -1.1113281, -2.4589844, 1.2099609, -0.18273926, -1.4082031, 1.6289062, 1.71875, 0.071899414, -0.61816406, 1.0351562, 1.1992188, 3.2011719, 0.86083984, -2.2285156, -1.0625, -1.3017578, 0.40405273, 0.3828125, -0.47631836, -1.1953125, -1.484375, 0.86035156, 1.0390625, 0.39111328, 0.21154785, -0.67529297, -1.3378906, 1.3027344, 0.47973633, -1.7978516, -0.8774414, 0.5761719, 0.5854492, -2.2050781, 1.3339844, -1.2236328, 0.078125, -0.06994629, -0.9243164, -1.1025391, 3.1191406, 1.5732422, 1.0810547, 2.8652344, 0.7661133, -2.0664062, 1.2138672, 1.8017578, 0.59228516, 0.7558594, -1.3320312, -0.3491211, 0.3413086, 1.7070312, -1.5986328, 0.3322754, 0.12768555, -1.8339844, -1.0712891, -2.0507812, 2.1933594, -1.25, -1.8720703, 2.4550781, -1.7431641, 2.7011719, -1.8818359, 1.7744141, -0.8574219, 2.09375, -0.71875, 1.8085938, 1.1816406, 2.2714844, 0.25097656, 1.6943359, 2.7226562, -0.59375, 0.99609375, -0.7128906, 2.2734375, -1.9912109, -0.073913574, 1.4951172, 0.7871094, 0.2878418, 1.0068359, 1.1005859, 1.9960938, 0.83496094, 1.6103516, 3.3945312, -0.7504883, 1.2744141, -0.015220642, -2.8359375, -0.4362793, -0.13110352, -1.5068359, 1.6748047, 0.11932373, -3.2324219, 1.4033203, 1.6982422, -1.7626953, 0.5854492, -1.109375, -1.2304688, 1.5634766, -3.1757812, -2.109375, -0.61865234, -0.6352539, 1.4501953, -0.3869629, 0.27441406, 0.9116211, 0.71533203, 1.7294922, -2.6269531, -0.453125, 0.77783203, 0.65478516, -0.95996094, 0.22827148, -0.9501953, -3.5585938, 0.32543945, 2.5292969, 1.9853516, 3.0664062, 1.0361328, 1.4560547, -1.7382812, -0.05206299, -2.796875, 2.6230469, -2.0585938, 0.0045204163, 2.6503906, -1.4130859, -3.6660156, -2.7421875, -0.43041992, 1.5439453, 3.6640625, 1.3837891, -1.0195312, 0.70458984, 0.2614746, -1.7841797, -4.7734375, -2.125, 0.10101318, -0.20837402, 0.24584961, 2.3164062, 1.4482422, 0.98339844, -2.9179688, 0.67871094, -1.8320312, 0.9033203, -0.5185547, -0.03616333, -0.91552734, -0.8457031, 1.4013672, -0.17590332, 1.3212891, -0.13659668, 0.4658203, -0.75927734, -0.60253906, 2.6289062, -1.1435547, -0.98876953, 2.5214844, 0.77246094, 1.7109375, 2.1503906, 0.63916016, -2.0800781, 1.8613281, -1.6289062, -0.09362793, 0.07446289, -1.9873047, -0.3840332, 1.0302734, -0.20788574, 1.078125, -0.23596191, 1.0654297, 0.6010742, -0.025924683, -0.22790527, 0.31347656, 1.3916016, 0.060546875, 1.3154297, -0.05419922, -0.5722656, 2.109375, -1, 0.71875, -2.5507812, -1.3427734, -0.9291992, -2.7753906, -0.8642578, -1.4140625, -0.11743164, 1.3564453, -0.9326172, 2.6054688, 1.0107422, -1.1523438, -1.1123047, 1.8583984, -0.2277832, 4.1171875, 2.3339844, -1.4716797, -0.3581543, -0.3059082, 1.7929688, 3.6269531, -1.3378906, 0.16064453, 0.4177246, -0.5131836, 0.43530273, 0.093444824, 1.9238281, 0.8535156, 1.8222656, -1.6738281, -0.20178223, 3.7421875, 0.093444824, 1.5224609, 1.1445312, 1.8876953, 0.31958008, 2.2207031, 0.9741211, 0.038879395, 1.5078125, -0.6064453, 0.3972168, -1.9941406, -0.9404297, -2.3007812, -1.546875, 0.8388672, -1.7255859, -1.359375, -1.8408203, -0.3623047, -0.29882812, -2.7070312, 1.8798828, 1.8544922, 0.110839844, 0.1953125, 1.4716797, 2.4238281, -0.7338867, -0.32348633, 0.6665039, 0.5229492, 1.9091797, -1.8662109, 0.42651367, -1.4111328, 0.25463867, -1.7734375, 1.2988281, -0.17028809, 2.5839844, 1.6777344, 1.9238281, 3.2460938, 0.6611328, 2.28125, 0.34960938, 4.2226562, -0.29101562, -2.4199219, 0.47729492, 1.5869141, 2.2519531, -0.4555664, -0.68847656, 0.43969727, -1.9794922, -0.80322266, -1.0048828, -1.8505859, 1.8427734, -2.1464844, 0.91015625, 0.8959961, -0.043395996, -1.3476562, 1.2802734, -0.06530762, -0.0552063, -0.50439453, 1.2519531, 3.0664062, 0.28222656, 1.5761719, -0.54052734, 0.5102539, 0.16967773, -2.4609375, -1.3300781, 1.1953125, -1.0810547, 0.4814453, 0.33203125, 1.8193359, 0.0032653809, -0.89746094, 0.7680664, 2.3632812, 0.7348633, 1.1220703, -0.2578125, 0.49072266, 0.40942383, 4.3476562, -0.2553711, -1.1650391, 0.3330078, 1.6865234, -2.0488281, -4.7773438, 1.8505859, 3.4160156, 2.4101562, 0.58203125, -3.5214844, 2.3183594, -1.4941406, 1.4375, -2.6992188, 0.47192383, -0.72998047, -1.1953125, -1.3730469, -0.3239746, 0.3564453, 1.9628906, 1.59375, 0.34765625, 1.7470703, 0.84765625, 2.5175781, 1.8916016, 3.1816406, -0.19226074, 2.5058594, -1.1171875, 2.4863281, -0.71533203, -0.91503906, -1.2695312, 1.7011719, -0.41137695, 1.1845703, 2.6015625, -1.6660156, 0.41601562, 1.2353516, -0.73779297, -1.4677734, -2.78125, 0.14318848, 0.5888672, -1.7470703, -1.1513672, -1.2724609, -0.05807495, 4.0976562, 0.8364258, -0.6069336, 1.0927734, 0.65283203, 2.9941406, 1.2177734, -0.82177734, -0.46655273, 1.2636719, 0.048706055, -0.7788086, -2.3027344, -0.453125, 1.7470703, 0.3959961, -0.73828125, -0.008666992, -3.3925781, -2.1835938, -1.7597656, -0.30444336, 1.0283203, -1.0400391, 3.21875, -0.86621094, 0.25561523, 2.0253906, 0.4272461, -0.57958984, -3.4824219, -0.3635254, -1.7802734, -0.27685547, -2.25, 2.4199219, 3.4277344, 1.1699219, -1.0458984, -1.9980469, -4.8554688, -2.265625, -4.1328125, 1.1035156, 0.020492554, 0.35546875, 1.1572266, 0.4699707, 0.828125, -0.234375, 0.48608398, 0.75439453, -0.49487305, 1, 0.2915039, -0.8066406, 1.4238281, 1.8242188, 0.037628174, 1.7275391, 1.3017578, 1.2070312, 1.8662109, 2.609375, -1.4707031, -1.6875, 1.0107422, 0.58740234, -0.4333496, 0.051849365, 0.93310547, 1.7119141, -0.5205078, -0.6171875, -1.6035156, -3.1054688]}, "B00IREGQAE": {"id": "B00IREGQAE", "original": "Brand: Weber\nName: Weber 62753 19-1/2\" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer\nDescription: Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.\nFeatures: 19-1/2\" Weber LP SEAR Burner Tube.\nFits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.\n", "embedding": [-2.0410156, 0.5698242, 0.55859375, -2.9902344, -1.1884766, 0.1673584, 0.73339844, -0.63427734, 1.2226562, -0.04071045, 1.9580078, -1.2255859, 2.2792969, -3.8828125, -0.77001953, 0.8881836, 1.8691406, 0.84472656, -1.203125, 2.1992188, 1.2744141, -0.12176514, 1.5673828, -2.2753906, 2.4355469, 0.12939453, 4.296875, -5.9179688, -0.4387207, -2.34375, 0.9111328, 0.06677246, 0.68115234, 3.21875, -2.984375, -0.6147461, -2.5332031, 0.8979492, -4.1523438, -0.3791504, -1.2539062, 2.1855469, 1.0439453, 0.42163086, -0.86328125, -0.09588623, -0.2454834, 0.77246094, -2.3222656, -0.5371094, 3.6894531, 1.703125, -1.2626953, 1.6416016, 0.8125, 0.2578125, 0.27978516, 0.043792725, 1.0800781, 1.203125, 2.015625, -0.11352539, -4.5976562, -0.4477539, 0.017074585, 1.5859375, 1.7548828, -0.014373779, 0.38549805, -1.0458984, 2.8886719, 0.3408203, -0.28051758, 1.2294922, 0.31420898, -1.8544922, -2.8847656, 0.79052734, 0.29248047, -0.38085938, -0.33666992, 3.1894531, -0.15222168, -2.4804688, -0.94677734, 0.109802246, -1.2177734, -0.85595703, 2.40625, 1.1025391, -0.53222656, -0.29785156, -1.0390625, -1.9677734, 2.9160156, 0.58691406, 0.3959961, 0.57373047, -0.48413086, -0.47485352, -1.1933594, 1.5527344, -3.2617188, 0.57128906, -3.2636719, -2.4316406, -0.22741699, -0.16894531, -1.6074219, -2.2421875, -0.36791992, -1.3261719, 2.6523438, 1.2988281, 1.1386719, 0.55322266, -2.1289062, -0.2746582, -0.8520508, 1.2539062, 2.6523438, -0.48242188, 0.8808594, -1.5722656, 0.1706543, -0.9970703, -1.2314453, -0.76904297, 3.0996094, -2.2597656, 0.62597656, 0.013000488, 3.6210938, -1.3759766, -0.41625977, -2.4003906, 0.44970703, -0.5493164, -2.3964844, -1.0458984, -1.3056641, 0.8017578, 1.8330078, -1.8164062, -2.9746094, 1.0419922, -2.5585938, 0.7363281, 0.484375, -1.1455078, 1.4492188, -1.1582031, -1.3730469, -0.09851074, 3.0917969, 1.3466797, 1.0390625, -0.05908203, 2.9804688, 2.6953125, 3.125, -0.58203125, 0.1986084, -0.1595459, -1.7138672, -0.34838867, -0.91845703, 1.9023438, -0.24865723, 2.6816406, -0.16052246, -0.42578125, -1.4423828, -0.10369873, 1.2832031, -1.4550781, 1.0322266, 1.6982422, -2.4199219, 2.3515625, -2.6054688, -1.9414062, -0.77783203, -1.8105469, 0.27124023, 0.011756897, -1.6074219, -1.1689453, 2.4355469, 0.3918457, -0.46704102, 1.1035156, 0.5673828, -2.1074219, -0.84716797, -1.046875, -2.3339844, -2.0410156, 1.6992188, -2.4179688, -2.9003906, -1.4453125, 2.2988281, 1.5517578, -2.1445312, -1.8017578, -1.0800781, 0.5576172, -0.03668213, 2.8886719, 0.60302734, 0.045043945, 0.74658203, -2.0332031, 0.09844971, -1.4873047, 3.2226562, 3.0234375, 1.9736328, 1.5166016, -1.6191406, -1.3183594, 0.101135254, 3.3398438, 1.7714844, 1.0078125, 1.1572266, -0.7319336, -3.3300781, -1.3125, 2.3144531, 0.80371094, -0.35839844, 1.1308594, 1.0117188, 4.1875, 1.0830078, -1.0673828, 1.7265625, -0.017105103, -0.98535156, -2.6015625, -1.5009766, -2.6582031, -1.7988281, 0.86621094, -2.1152344, 2.5097656, 0.8330078, 2.1796875, 1.6416016, -0.23522949, 1.4072266, -1.4355469, -0.88623047, 0.88964844, 0.31396484, 3.6933594, 0.71240234, -0.5019531, 4.2382812, -0.08117676, -0.5678711, 0.76708984, -0.39379883, -2.1503906, 1.6630859, 1.7714844, -1.1074219, -0.90234375, -1.3984375, 0.0049552917, 0.4819336, -0.64941406, 2.5546875, 3.0761719, -1.7431641, 2.6054688, 1.0185547, 0.5205078, -0.06921387, -1.6025391, 2.0996094, -3.2578125, 0.3022461, 1.1650391, 1.953125, -1.1601562, -2.3613281, 0.59277344, 4.71875, -0.14733887, -2.1308594, 2.5664062, -1.1894531, 0.29345703, 1.3759766, -1.1621094, 1.0820312, 2.1621094, 1.4453125, -0.07519531, 1.9042969, 0.25585938, 2.3945312, 2.2402344, 2.5917969, -4.0117188, 1.0478516, 2.4511719, -2.1035156, -0.13317871, -1.3291016, 0.27856445, -2.6347656, -0.55078125, 1.5273438, -2.9648438, 1.0263672, -2.3710938, 1.4697266, -0.44921875, -1.6494141, -1.5126953, 0.39819336, 0.6503906, -0.64697266, 1.2832031, 0.8076172, 0.40795898, -0.8413086, -1.5419922, -0.13891602, -1.3232422, -2.125, -1.5019531, -1.9443359, -3.6816406, 0.79052734, -1.7490234, 0.037994385, 2.4785156, -2.0527344, 1.2001953, 0.41308594, -0.48583984, 0.5732422, 0.3383789, -1.8544922, -1.453125, 0.23181152, 2.6601562, -2.6738281, -1.25, -0.20507812, -3.0195312, 2.1953125, -0.24475098, 0.71191406, 1.2685547, 2.4902344, -1.1376953, -0.12359619, 1.4384766, 3.4277344, -0.56640625, 2.3300781, -2.5761719, -1.6660156, -2.0253906, 2.5429688, -0.9746094, -0.44799805, -2.9726562, -1.5566406, 0.5600586, -1.5458984, 2.9667969, 0.12225342, 2.1015625, -1.9023438, 1.3027344, 0.5576172, -2.7265625, -1.4677734, 3.5878906, 0.6665039, -2.4355469, -3.2226562, -2.2597656, -0.08721924, -2.546875, 2.0585938, 0.024978638, -1.4873047, -0.10986328, -1.3525391, -1.9433594, -1.7148438, -0.70166016, -0.27368164, -0.6879883, -2.0644531, -0.20092773, -0.8955078, -0.28442383, -0.91259766, -1.7783203, 1.2773438, 0.34350586, -1.9589844, 0.13574219, -1.0839844, 1.8398438, 1.1914062, -3.0351562, 2.3574219, -0.048431396, -2.8300781, 3.921875, -3.0546875, -1.2392578, -3.4882812, 0.1895752, 2.5585938, 0.8120117, -0.74658203, 2.2753906, 1.4394531, -0.33984375, -1.4169922, 0.80078125, -0.9458008, 1.6542969, 2.5644531, -2.0078125, -1.0605469, 1.8017578, -0.43701172, -3.2734375, -0.5595703, 0.7583008, 2.2695312, 2.3535156, 0.49487305, 1.9082031, -1.2382812, -2.4648438, 0.8076172, 2.1523438, -1.9394531, -0.5419922, -0.69091797, 0.14355469, -0.22607422, 1.5107422, 0.96240234, 2.8476562, 0.7475586, 2.4453125, 2.671875, 0.83251953, 0.64501953, -0.55566406, 1.9306641, -1.375, 3.375, -1.3027344, -0.71533203, -0.9140625, 0.08972168, 2.1210938, -1.3984375, -1.8408203, 2.5234375, 1.5449219, -2.53125, 0.09814453, 1.7949219, 0.5214844, -0.7338867, 0.45654297, -0.88134766, -0.5209961, 2.2773438, 0.80126953, 0.91503906, -0.25830078, 0.42456055, -0.13378906, -2.0175781, 1.0263672, 1.5791016, -1.3476562, -2.8652344, 0.60839844, -3.6523438, 0.7109375, 3.0800781, 0.8457031, -2.015625, -0.20690918, -1.9863281, -0.40014648, -0.9790039, 0.18945312, -0.53759766, 0.7207031, 0.33007812, 0.26904297, 0.5620117, 1.4042969, -1.0009766, 0.04864502, 1.4716797, -2.7910156, -2.1035156, -0.46435547, -2.3320312, -0.8515625, 0.2019043, 0.39941406, -0.51953125, -0.4855957, 3.2753906, -2.1894531, 2.3984375, 2.5351562, -1.2392578, 0.7915039, -5.1757812, -2.9335938, 1.2373047, -2.5097656, 1.3613281, -0.56689453, 0.66552734, 0.13134766, 2.4296875, 1.1826172, -2.4355469, -1.9716797, -1.3564453, 1.4052734, -2.109375, -0.2265625, 0.16882324, -1.3525391, -0.3876953, -3.71875, 2.2617188, -0.34936523, -0.38330078, 0.6582031, -4.53125, 0.49804688, 1.8408203, -1.0126953, -1.2548828, -1.6884766, 1.796875, 0.62402344, 0.88623047, -2.5722656, 0.7133789, 1.9951172, -0.9975586, 1.2802734, 4.3046875, 0.2602539, -2.8671875, 0.9897461, 1.2041016, 3.8144531, -0.5463867, -2.4003906, 0.037841797, 1.2910156, 0.41723633, -2.9160156, -0.6982422, -0.52246094, -1.359375, 2.5878906, -0.78515625, 0.22851562, -0.14355469, 0.049072266, -1.8769531, -0.11248779, -1.4775391, 0.44091797, -1.0166016, -1.2109375, 0.53125, -1.6005859, 1.7480469, -3.2988281, 2.8320312, -0.65625, 0.9477539, -3.2636719, 0.5, 3.0039062, 2.2109375, 1.7041016, -0.018722534, -0.089538574, -2.1230469, -0.64941406, -2.640625, 0.7480469, -3.5839844, -1.2226562, 4.3125, 1.2998047, -0.13757324, -0.02909851, 2.1269531, -0.23864746, 0.9165039, 0.35205078, 0.2956543, -2.46875, 0.8305664, 1.9931641, 0.00023496151, 1.7890625, -1.4160156, 0.4909668, 0.6699219, 1.0732422, -0.5703125, 0.86279297, 2.1445312, 0.59765625, -0.7524414, 1.1513672, 2.4882812, -0.5810547, 0.51660156, -2.2851562, -0.11456299, -0.9897461, -0.09667969, 0.61572266, 2.8105469, -1.5292969, -0.4375, 3.203125, 2.9726562, -0.13647461, 2.3554688, 2.4121094, -3.3320312, 0.5415039, 0.80371094, -5.3632812, -0.28515625, 2.3085938, -0.009819031, 2.1503906, 2.28125, -1.0292969, -1.0800781, 2.5839844, -0.30273438, 1.0722656, -0.8491211, -0.42773438, 2.7988281, -2.1914062, -0.7392578, -2.1738281, -2.3359375, 0.8642578, 0.8105469, -0.3310547, 0.10406494, 2.0703125, 0.63378906, -2.3613281, -3.4628906, -0.062438965, -1.9560547, -0.23779297, -0.7216797, -1.1621094, -1.4736328, 0.87841797, 0.7753906, 0.87402344, 0.3840332, -0.26904297, 2.0039062, -1.140625, -1.25, -2.6972656, 1.0097656, -1.7216797, 0.6582031, 3.2070312, -2.0488281, -0.61376953, -0.11315918, -2.453125, -0.13696289, 0.0647583, -0.11553955, 0.9897461, -0.16210938, 0.7133789, -1.3701172, -0.69433594, 0.44311523, -1.3046875, 1.1337891, 0.9707031, -1.0273438, 0.22790527, -0.13623047, -0.69433594, 0.11010742, -1.921875, -0.26000977, 0.107666016, -0.21972656, -0.27734375, -0.65234375, -1.6796875, 0.5625, 1.9208984, 1.5410156, -0.8144531, -3.0839844, -0.6845703, 1.2197266, -0.2265625, 0.57470703, 1.25, -0.40283203, -0.20812988, 1.0048828, 0.2130127, -1.0039062, 0.3022461, -1.8164062, -0.8515625, 1.1386719, -1.7197266, 2.4238281, -0.07965088, 0.1685791, 0.6923828, 2.3164062, 1.2675781, 0.8261719, 0.36083984, -0.3935547, -0.13061523, 0.35058594, -2.4414062, -0.16845703, -0.79345703, 0.070373535, 1.0898438, -0.4362793, -1.2705078, -2.1191406, -2.2558594, 0.83496094, -2.875, 0.47680664, -0.82470703, 2.0488281, 2.0761719, -1.4042969, -0.96191406, 2.0078125, -0.3034668, 0.41333008, 0.12976074, -1.7382812, 5.3320312, 2.9453125, -0.42797852, -0.76123047, 0.5751953, 1.2832031, 2.4335938, 0.75878906, -1.1298828, 2.6035156, -2.0117188, 0.4658203, -1.1328125, 2.3632812, 0.9003906, 0.18896484, -0.57714844, 0.6953125, 2.625, -0.7441406, 1.3740234, 2.1894531, -1.6152344, 0.31225586, 1.4296875, 0.85839844, -2.4335938, 0.46972656, -0.5576172, 3.3730469, 0.48486328, -1.0488281, -0.036590576, -1.3466797, -1.0537109, -1.5361328, -3.1113281, -1.0419922, 0.8300781, 1.7167969, -1.8564453, -2.0976562, -0.08270264, -0.16784668, 2.1660156, 0.95751953, 2.4414062, -3.9335938, -0.18273926, -1.4902344, 1.4306641, 1.3828125, -5.109375, -0.5175781, 2.0722656, 0.88134766, -1.7265625, -0.25683594, 0.7133789, 2.3105469, -0.41625977, 1.3164062, 0.4333496, 1.796875, 1.3164062, 0.20837402, 3.0117188, -1.7402344, -0.87597656, -0.49609375, 0.9633789, -0.29223633, 0.6357422, -0.36914062, 1.734375, -2.1835938, 1.5751953, -0.6933594, -2.6953125, 2.9082031, -2.0371094, 0.34326172, -0.86376953, 1.7333984, -0.6870117, 0.74658203, -0.93115234, 0.6298828, -0.8359375, 1.3066406, 3.4628906, 0.56933594, 0.34716797, -1.1142578, -0.6567383, 1.6884766, -2.1855469, 1.5009766, 1.2685547, -2.0449219, -1.7705078, 1.1933594, 2.796875, 1.5810547, 0.19506836, -0.32666016, 3.4160156, -0.94921875, 0.17358398, -2.21875, 0.5229492, 1.0751953, 3.4667969, 0.13806152, -0.6826172, 0.64404297, -0.7167969, -4.2929688, -2.8164062, 3.1855469, -0.46264648, 1.4980469, -0.020599365, -1.7285156, 3.5273438, -1.3105469, 0.7529297, -2.5683594, 0.32495117, -0.6870117, -0.86279297, 0.040527344, -0.62841797, -1.3964844, 0.9951172, 1.5117188, 1.546875, -0.09124756, 1.6386719, 1.5341797, 1.0615234, 1.2539062, 0.9423828, 1.3066406, -1.2177734, 3.1445312, 0.24645996, -2.3769531, -0.17956543, 2.2695312, 0.6274414, 1.4023438, -0.70410156, -0.5986328, -0.15539551, 0.58691406, -0.27514648, 1.9433594, -0.9042969, 0.2939453, -0.6044922, 2.1914062, -0.93847656, -0.86865234, 1.4326172, 1.5351562, 0.19274902, 2.5644531, 1.8789062, -2.6289062, 1.9873047, 0.17321777, -1.5410156, -0.3408203, 0.5292969, -0.5756836, -0.65234375, -2.0097656, 2.4335938, 2.6914062, 0.3647461, -1.6376953, 0.19482422, -2.1855469, 0.031341553, -1.0664062, -0.76220703, 0.28442383, -2.1171875, 0.4189453, -2.1835938, -1.4072266, 2.6210938, 0.10357666, 0.49853516, -1.4716797, -2.2089844, -1.3105469, -0.43725586, -2.375, -0.51220703, 2.7011719, -0.29760742, -0.39111328, -1.3007812, -2.8984375, -1.390625, -0.7241211, 1.8310547, -2.2832031, -2.9433594, -1.4091797, 1.5546875, 1.9619141, 0.6640625, 0.9770508, -0.6821289, -2.2480469, 0.95654297, -0.80371094, 0.21679688, -1.4277344, 1.4111328, 1.5546875, 2.9453125, 2.0292969, -0.47485352, -0.5678711, 2.1875, 2.1914062, -2.8320312, -1.6132812, 0.76660156, 0.3947754, -1.3242188, 0.028030396, 2.2148438, 0.91015625, 0.3659668, 1.1875, -0.67529297]}, "B007O0MIIG": {"id": "B007O0MIIG", "original": "Brand: Hiland\nName: Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze\nDescription: \nFeatures: 39-Inch tall portable glass tube patio heater\nHammered Bronze finish. Quartz Glass Tube\nHeat output: 9500 BTU's. Electronic Ignition\nGas type: Propane\nUses a 1 lb propane tank (lasts 2-3 hrs. on high)\n", "embedding": [-1.6699219, 1.0507812, 2.0800781, -0.7285156, -0.6933594, 1.1386719, 1.6513672, -1.5498047, -0.93310547, 2.7480469, 1.3222656, -0.29907227, -0.9711914, -2.7304688, 0.9926758, -1.0742188, 2.1660156, 0.51416016, 1.5039062, -0.06311035, 2.2265625, -0.07141113, 0.45336914, -2.0898438, 0.8613281, 0.671875, 3.859375, -3.0449219, 0.50634766, -0.053619385, 0.37548828, 0.9345703, 0.29736328, 2.9160156, -0.7426758, -2.4609375, -0.77978516, 1.1279297, -4.1328125, -0.4267578, -2.0585938, -0.4284668, 0.63378906, 1.7236328, -0.27001953, -0.025222778, 0.8935547, 0.90771484, -0.07171631, 1.3330078, 0.0056762695, -0.18664551, -0.9238281, 0.1138916, -0.82714844, 0.5595703, -1.8496094, -2.3730469, 1.9550781, -0.83251953, -0.6230469, -2.1328125, -2.0117188, 1.5429688, -0.009223938, 0.98046875, -1.4501953, -1.2998047, -0.984375, 0.09399414, 1.9628906, -1.1035156, -0.026062012, -0.41992188, -0.19177246, -1.0429688, -2.3730469, 0.79296875, 2.9023438, 0.0042419434, -1.1611328, 0.23913574, 0.062561035, -0.42407227, -1.2412109, 0.09057617, 0.3486328, -0.7402344, 1.0419922, 2.0625, 0.57421875, 1.9560547, -0.76416016, -2.7949219, 0.060424805, -1.0019531, -0.3461914, 0.5336914, -1.7070312, 1.7841797, -0.1439209, 0.10101318, 0.06756592, -1.3837891, -1.5751953, -0.4716797, 1.6425781, 0.4128418, -0.25341797, 0.97216797, -1.5556641, -0.54833984, 2.4980469, 0.18249512, -1.7871094, -0.31396484, 1.3554688, 2.28125, 4.4921875, 3.3339844, 3.6757812, -1.1289062, 1.4150391, -1.3251953, -0.28051758, 1.1943359, 0.5498047, -1.0849609, 1.2666016, -1.2998047, 1.8193359, 1.7138672, 0.8833008, 0.04360962, -1.6533203, -1.4121094, -1.2285156, 0.06982422, -3.8945312, -0.84716797, -0.9453125, 1.5908203, 1.21875, 0.6743164, -4.0585938, -1.5849609, -0.9819336, 2.0527344, -1.4033203, -0.95703125, 0.2619629, -0.33569336, 0.6713867, -1.953125, 0.45336914, 0.64501953, 0.77197266, 0.11657715, 4.03125, 1.5126953, 1.5761719, 1.4287109, -2.7636719, 0.93408203, 0.18359375, 0.67626953, 1.9404297, 2.3691406, 0.6171875, 1.1162109, -1.1201172, -1.3251953, -0.72021484, -0.11883545, 0.38305664, -0.80371094, -0.4248047, 0.13000488, -0.019973755, 0.48388672, -2.7734375, -1.4228516, 0.12719727, -0.68115234, 1.4199219, -1.7607422, -2.8359375, -3.4707031, -0.28808594, -1.0302734, -0.016815186, 0.4189453, 0.33422852, -0.061828613, -0.76904297, -1.9179688, -3.828125, -3.0546875, 2.4375, 0.082458496, 0.22717285, -0.030059814, -0.62939453, -0.5576172, -1.8427734, -3.640625, -0.1015625, -1.4609375, 1.1962891, 1.9072266, 0.60253906, 0.1508789, 1.2050781, -0.080566406, 0.81591797, -2.4296875, 2.4101562, 0.47143555, 0.6152344, 1.4238281, 0.8930664, 0.0010137558, -2.4492188, 1.0634766, -0.19335938, 0.2746582, 2.6425781, -0.18066406, -2.4414062, -0.5078125, 2.5390625, 0.98535156, 0.20019531, 0.8120117, -0.59716797, 3.4648438, 1.1865234, 0.34228516, 1.9990234, -0.41430664, 0.5361328, 0.37646484, 0.38867188, -0.7636719, -0.42578125, 0.80126953, 0.4020996, 0.53271484, 0.5913086, -0.11480713, -0.8076172, -0.5649414, 0.61328125, -0.033172607, -0.73828125, 1.4453125, -0.6035156, 0.57177734, 1.203125, -2.7949219, 1.7763672, 0.05126953, 0.42773438, 0.27954102, -1.59375, -1.6025391, 3.28125, 1.9492188, -2.3925781, 2.40625, -0.20263672, 2.2519531, 1.2119141, -1.3642578, 1.2226562, 1.2167969, -1.578125, 3.3378906, -1.4257812, 1.6308594, 0.9863281, 0.23791504, 1.8867188, -1.7988281, -1.6337891, -0.07086182, 0.97265625, 0.7548828, -1.6904297, -0.097717285, 3.1699219, -0.7260742, -0.8833008, 2.4550781, -0.7416992, 1.328125, 1.8408203, -1.8808594, -1.3378906, -1.4326172, 2.46875, 2.0292969, 0.42114258, 1.5908203, -2.2851562, -0.34887695, -0.34277344, -1.7558594, 0.97558594, 1.25, 0.5673828, -1.3417969, -3.828125, 0.051086426, -4.3203125, -0.8286133, 2.9746094, -3.4882812, 1.0634766, -0.94873047, -1.2011719, -0.79589844, -0.6430664, -1.2871094, 0.23278809, 0.42822266, -0.6713867, 1.8056641, 0.50390625, 0.18835449, -1.8173828, -2.0371094, -0.03970337, -3.2539062, -2.8085938, 0.099731445, -1.7695312, -2.4375, 2.0390625, -2.4785156, 0.119262695, 2.2304688, 0.6386719, 2.1328125, -0.66015625, -1.9404297, 0.86376953, 1.7568359, -0.20898438, -1.1425781, 0.5800781, 1.3369141, -1.4638672, -3.7421875, -0.9692383, 1.3574219, 0.41259766, 0.9003906, -0.6147461, -0.3112793, 0.7709961, 0.07092285, 0.8173828, -0.703125, 0.34228516, -0.5410156, 0.19824219, -5.125, 1.1572266, -1.2490234, 1.8007812, -0.8823242, -0.4645996, 0.36914062, -0.6230469, 3.3300781, 1.3427734, 4.234375, 1.2607422, 1.8759766, -0.48754883, 1.3515625, 0.44702148, -1.5439453, -3.0527344, 0.3425293, -1.6191406, -1.3242188, -1.6689453, -2.5, 0.61621094, -1.2988281, -1.0664062, 0.95751953, -1.2548828, 0.3996582, 0.037078857, -1.2099609, -0.43310547, -1.6884766, -1.4804688, 1.5498047, 2.5097656, -1.3623047, 0.48510742, -1.2080078, -0.26733398, -0.8754883, 1.0390625, 1.4492188, 1.5527344, 2.1738281, -0.42797852, 2.1894531, 0.203125, -3.890625, 2.6757812, 2.7695312, 0.32470703, 0.25830078, -1.9248047, -2.5625, -1.2509766, 0.12902832, 2.5253906, 2.3945312, 2.1992188, -0.55078125, 1.0029297, 0.1907959, 0.68310547, -1.2294922, 0.31640625, -2.1152344, 1.703125, -2.4355469, -2.21875, 2.1582031, 2.296875, -2.7949219, -2.0195312, 0.9970703, 0.5019531, 1.4570312, -0.097717285, -0.2788086, 0.96484375, 3.0429688, 1.3496094, 0.85791016, -0.41064453, 0.2692871, -1.3984375, -1.0087891, 0.95654297, 2.375, -0.9135742, 0.4243164, 1.4072266, 0.64404297, 1.2236328, -3.0253906, 1.0283203, -0.4567871, 1.8955078, 0.5654297, 3.7636719, -1.5097656, 0.70703125, 1.9130859, 1.6308594, -0.60009766, -2.0996094, -1.3085938, 1.6835938, 2.1464844, -1.3896484, -1.4501953, -0.56689453, -0.3071289, -0.89453125, 0.25683594, -0.25048828, -0.9785156, 1.0517578, -1.3457031, -0.80810547, 0.23278809, 1.8105469, -0.48779297, -1.3417969, 1.0566406, 1.1943359, -0.59472656, -0.8852539, -1.4248047, -2.8164062, 0.42211914, 3.9433594, -2.8847656, -0.49780273, -1.0888672, -0.9711914, 0.097351074, 0.5131836, -0.11730957, -0.20678711, 0.6879883, -1.1591797, 0.8359375, -1.2763672, 0.53222656, -0.47094727, -2.1054688, -0.6899414, -2.2910156, -1.6210938, 2.71875, -1.8876953, -0.22424316, 1.203125, -0.07281494, 2.5253906, -0.90771484, 3.0527344, -2.1835938, -2.2675781, 0.49682617, -0.39233398, -0.10571289, -3.90625, -4.7890625, 0.44189453, -2.9609375, -0.5571289, 2.3125, -0.61621094, 0.7661133, -0.55566406, 1.0175781, -3.3769531, -2.296875, -2.2363281, -1.3623047, -4.0664062, 0.7685547, 0.15673828, 0.16149902, -1.9414062, -2.5839844, 2.046875, 0.25927734, 0.03869629, 0.64160156, 0.09362793, -0.070495605, -0.9316406, 0.46313477, -1.0771484, 0.97314453, -1.1708984, -0.35498047, -0.22460938, -0.69189453, 4.7890625, -0.8261719, -0.5800781, 1.2001953, 5.5078125, 0.64501953, -0.83447266, 0.22436523, 2.2148438, 3.2460938, -0.1784668, -3.2734375, -0.8432617, -1.8486328, -0.62158203, 0.14318848, 1.2060547, 0.48242188, -1.4238281, 1.2919922, 0.86865234, 0.30200195, 1.7050781, 1.6474609, -2.8769531, 1.5234375, 1.6650391, -3.1230469, -2.4667969, -0.22509766, -1.9873047, -1.4707031, 1.1757812, -1.3115234, 0.25830078, -2.1328125, -0.44873047, -1.796875, 0.64501953, 2.5410156, 3.4980469, 1.3330078, -2.4257812, -2.3769531, -0.5732422, -2.4140625, 0.33398438, 1.1533203, 0.6899414, -0.60839844, 1.8681641, 1.0292969, -1.7050781, 0.87841797, 1.6142578, -1.1298828, -0.1430664, 0.25195312, -1.6894531, -2.4863281, -1.9580078, -0.40454102, -0.1899414, 2.1152344, -1.2509766, 0.42626953, -0.4560547, -0.84521484, -1.9189453, -1.3222656, -1.2412109, 0.42407227, 1.7333984, 0.9501953, 1.4990234, -0.7963867, 1.1201172, -0.18823242, 2.3398438, -2.0078125, 0.4182129, 0.44555664, -0.1237793, -0.8251953, 0.10424805, 1.3710938, 0.6269531, 0.28442383, 2.1386719, 1.1992188, -0.5283203, 1.5615234, 0.6171875, -0.7373047, 1.3623047, 1.2451172, 0.19580078, 2.9667969, -1.3300781, -2.3769531, -0.91845703, 2.9902344, 0.14282227, 1.7880859, 0.97509766, -2.0273438, -0.9736328, -1.7207031, -1.3193359, -1.3974609, 0.17944336, 0.41186523, -1.9404297, 0.59716797, -0.19152832, 4.0117188, 1.7998047, -0.64697266, 0.11480713, 1.3623047, 0.41357422, -0.38183594, 1.5849609, 0.5991211, -1.8837891, -0.89404297, -0.27392578, 0.4033203, 0.6323242, 2.2910156, 0.22717285, -0.8701172, -0.07519531, -2.2421875, 2.1601562, -3.2167969, 0.17163086, 0.89941406, -0.2388916, -0.2434082, -2.3222656, -2.6757812, -1.9384766, -0.6142578, -0.5239258, 0.089660645, -0.33666992, -1.9335938, -2.421875, -3.203125, -1.2919922, -1.1210938, -1.7519531, 0.86083984, -0.09515381, -3.3496094, -2.3769531, 0.101867676, 1.2773438, 0.089660645, 0.6567383, -1.4257812, 0.25830078, 0.36572266, -0.12695312, 0.43066406, 1.8007812, -0.8852539, -0.28466797, 0.17114258, -1.6015625, -3, 0.8432617, 0.9321289, 2.2734375, -1.1542969, -0.26171875, 1.6884766, 2.6171875, 1.1123047, -1.5332031, 2.0839844, 1.5615234, -0.01739502, 3.078125, -0.8959961, 2.0449219, -0.26220703, -1.6015625, -0.44995117, 2.7363281, 1.0087891, 0.64208984, 2.0175781, -0.2121582, 1.2109375, 0.4182129, -0.1451416, -0.08996582, 0.01876831, 3.2363281, 0.89404297, -0.075805664, -1.3632812, -1.9716797, -1.5917969, -2.6015625, -2.2402344, -1.0722656, 0.15759277, 2.1835938, 1.1523438, 0.21289062, 0.10131836, 0.9667969, 0.8071289, -1.6826172, 0.82128906, -0.030288696, 2.1875, 0.9428711, -1.7441406, -4.453125, -1.5878906, -0.10522461, 1.0126953, 0.8310547, -1.4902344, -1.4511719, -2.2949219, -0.21899414, 0.0050964355, 1.2666016, 0.38330078, 0.22741699, -2.3984375, 3.0839844, 1.8056641, -0.8261719, -0.3942871, -0.060791016, 2.2949219, -0.83154297, 3.0800781, 1.3818359, -0.49609375, 0.32788086, -0.34399414, 2.1621094, -0.7319336, -1.5527344, 2.4316406, -2.6503906, 0.59472656, 0.7290039, -1.0429688, -2.1992188, -0.20092773, 0.9003906, -0.38208008, 0.765625, 0.6928711, 0.8535156, -0.056915283, 2.4023438, 0.70410156, -1.5195312, -0.2705078, -0.107910156, -0.19824219, 1.8007812, -0.67578125, 2.578125, 0.63378906, 1.0693359, -0.79345703, 1.2919922, -0.8256836, 1.2822266, 3.9746094, 2.1445312, 1.8466797, 0.7836914, 1.1396484, 0.75439453, 0.46484375, 1.1171875, -2.9160156, 0.7602539, 1.1220703, 1.9492188, -0.41210938, 0.3696289, 0.86035156, 1.0263672, -1.7236328, -2.6738281, 0.2680664, 1.0898438, -0.64160156, 0.98876953, -0.15966797, 0.5336914, -1.0996094, 0.69873047, 0.059387207, 2.140625, 1.0673828, -1.5703125, 1.6572266, 1.3330078, -0.4074707, 0.43164062, 0.30541992, 2.0097656, -1.65625, 1.0761719, 0.31103516, -1.4257812, -1.1503906, 1.1044922, 1.1484375, 1.0537109, 0.059417725, -1.8662109, 1.6123047, 2.0996094, -0.3425293, 1.0439453, 0.036376953, 0.5332031, 1.5419922, 2.8945312, -0.052612305, 0.41357422, -1.0185547, 0.6152344, -1.1318359, 1.6777344, 0.8671875, -0.53466797, -0.32836914, 0.22973633, 0.9404297, -0.96533203, 0.2746582, -1.7753906, 0.4399414, 1.0292969, 0.8227539, 0.22839355, 0.35424805, -1.8798828, 3.6699219, 0.74560547, 0.91259766, 0.0362854, -1.9277344, -0.5209961, -1.3457031, 1.0263672, -0.6176758, 1.9892578, -0.79345703, 2.78125, 0.15551758, -1.2382812, 1.4238281, 2.4042969, 1.6835938, -0.5073242, 0.74365234, -2.1679688, 2.4746094, 1.2431641, -0.53759766, 0.019638062, -0.29003906, -0.67871094, -0.043029785, 1.0527344, -0.7265625, -1.2441406, 2.59375, 0.2607422, -2.5566406, 0.83154297, 0.95947266, 0.12463379, -0.2939453, -1.8427734, -0.70703125, -0.17321777, -0.8442383, 1.1074219, -2.1445312, -1.1201172, -0.50878906, 1.28125, 2.2246094, 0.012428284, 0.15344238, -1.9892578, -0.25170898, -1.4003906, 2.1113281, -0.33032227, 0.72753906, -0.027923584, -0.5209961, -0.15808105, 1.375, 1.4658203, -0.5522461, -1.0019531, -2.3984375, -0.32641602, -1.4414062, -1.4003906, 0.8959961, 3.2460938, 0.6538086, 2.0273438, -1.8759766, -3.9550781, -0.5859375, -0.734375, 0.9560547, -1.1318359, -1.4453125, 0.9667969, 2.5742188, 2.2109375, 0.48608398, -0.48364258, 0.119506836, -0.91308594, 1.5205078, -0.42236328, 2.0371094, -0.85009766, -1.46875, 1.6191406, 1, -0.08380127, 1.4228516, 2.6503906, 1.734375, 0.19787598, -2.578125, -0.93115234, -0.46875, 0.08758545, 0.9301758, 1.28125, 1.9248047, -0.35913086, -2.125, -4.4765625, -1.2412109]}, "B001EHKQ2A": {"id": "B001EHKQ2A", "original": "Brand: Stansport\nName: Stansport Single Burner 5,500 BTU Propane Stove, Black\nDescription: \nFeatures: Durable heavy gauge steel with baked on enamel finish\nIndividual regulator on/off control knob adjusts burner up to 5500 BTU's\nStove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included)\nWind baffles supports cookware and shields burners\nLow profile base for stability\n", "embedding": [-1.3056641, 1.0615234, 2.0859375, 0.8041992, -0.82470703, 1.1171875, 0.7290039, -1.3222656, -0.80371094, 0.17053223, 2.09375, 0.23278809, -0.43847656, -1.4628906, -0.17285156, 0.80371094, 0.33813477, -0.16845703, -0.66552734, 1.1357422, 0.16748047, 0.5546875, 1.9267578, -1.7285156, 0.39379883, 0.8598633, 3.7695312, -3.4433594, -0.24841309, -1.7099609, 1.0654297, 0.94628906, 1.4023438, 2.4765625, -3.8535156, 0.09564209, -1.1689453, -0.64208984, -3.8300781, 1.2382812, -0.03781128, 0.32641602, 2.6171875, 0.50097656, -1.9189453, -0.9902344, 1.1777344, -1.8623047, -1.609375, 0.95214844, -0.14331055, 0.6845703, -1.1025391, 0.9589844, -1.0498047, 0.7817383, -0.24804688, -0.61572266, 0.07318115, 1.3056641, 1.9765625, -0.40893555, -2.3066406, -0.109436035, -1.3769531, 1.3427734, 0.9951172, -0.36254883, -0.0715332, 0.9370117, 2.4765625, -1.4091797, -0.7348633, -1.4052734, 1.6357422, -1.1142578, -2.6074219, 1.640625, 0.7290039, -1.6054688, -1.1220703, 1.5126953, 0.3671875, 0.13085938, 0.13757324, 1.5107422, -0.4802246, -1.5664062, 0.07519531, 0.11657715, -2.0253906, 2.0566406, -1.5195312, -3.8828125, 2.296875, -0.078552246, 1.6845703, 0.43188477, -1.0292969, 0.296875, 0.1850586, 0.4177246, -1.0302734, 0.3005371, -0.7138672, 0.55566406, 3.1074219, 0.8364258, -4.1640625, -0.86621094, -2.0195312, -0.98535156, 0.94433594, -0.030532837, 2.2070312, 2.015625, -1.2246094, 1.0185547, 2.6777344, 0.41992188, 3.0371094, -1.0449219, 1.9580078, -0.5390625, -0.4633789, 2.5097656, -1.6845703, 0.9458008, 4.578125, -1.8466797, -0.72802734, -0.6010742, 2.2597656, -0.32592773, -0.81640625, -0.97216797, -2.1191406, -1.4707031, -1.3632812, -0.24536133, -1.7880859, 0.7626953, -0.42089844, -0.9145508, -4.0351562, -1.3535156, 1.1962891, 0.546875, 0.12310791, -2.6816406, -0.36401367, -1.5292969, -0.47509766, -0.10827637, 1.9921875, -0.26367188, -0.3701172, -1.7910156, 2.4355469, 1.1962891, 0.88671875, -1.8251953, -2.1269531, 2.7695312, -0.6269531, -1.9755859, -0.64501953, 1.5791016, -1.5947266, 1.390625, -0.39526367, -1.53125, -0.9760742, -1.6835938, 0.56591797, 0.58740234, -0.9223633, 2.8925781, 0.78222656, -1.2988281, -1.78125, -2.4746094, 0.5205078, 0.38183594, 0.578125, -2.2675781, 1.7177734, 0.6972656, 1.3525391, -1.6972656, -1.6982422, 0.8144531, 0.578125, -0.04348755, -0.36499023, -2.2363281, -1.2480469, -3.1113281, -0.012992859, 1.0292969, -0.6020508, -1.1347656, -0.32104492, 1.2978516, -0.6713867, -1.6708984, 1.0078125, 0.068115234, 1.1220703, 1.4931641, 2.2363281, -0.65234375, 2.4296875, -1.1601562, -2.1054688, -2.390625, 1.9921875, 1.2089844, 2.1191406, 3.4453125, -0.32763672, -0.6777344, 1.4707031, 0.9682617, 0.11895752, 2.0371094, 2.6621094, 0.029953003, -2.7597656, -0.37890625, 2.2128906, 1.4326172, -1.5283203, 0.15698242, 0.51220703, 2.5839844, 1.9482422, -0.021011353, -0.89404297, -1.1240234, 0.19921875, -0.6616211, 1.3447266, 0.24206543, -0.66748047, -0.53515625, -0.3762207, 0.43164062, 2.0410156, 2.6542969, 0.14892578, 0.20983887, 0.44750977, 1.2626953, -1.1152344, -1.1064453, 1.0166016, -0.7236328, -0.72998047, -3.3671875, 3.7304688, 0.25805664, -1.1005859, -0.921875, -0.7504883, -0.86083984, 3.890625, 1.2480469, -2.6914062, 0.08050537, 0.52783203, 0.49121094, 2.5488281, -0.47631836, 1.9326172, 0.30541992, -0.94970703, 4.7304688, 0.20471191, 2.1230469, 0.32250977, -1.6572266, 3.0214844, -2.2226562, 0.58740234, 0.60302734, 2.3300781, 0.37402344, -2.6230469, -0.47875977, 6.578125, -1.171875, -1.5117188, 2.1171875, -2.1445312, -1.0185547, 1.140625, 0.4091797, -0.14758301, -0.3618164, 2.7480469, -0.6376953, 0.38671875, 0.28125, -1.1328125, -2.5683594, 1.2910156, -2.3730469, -0.59277344, 0.85302734, -0.2409668, -2.0625, -1.3984375, 2.0703125, -1.953125, 0.7338867, 2.0136719, -3.0117188, 3.3652344, -0.44360352, 1.328125, 2.2636719, -0.84521484, 0.4946289, 0.4074707, -0.13049316, -0.44921875, 2.6914062, 1.7734375, 0.71533203, -2.3691406, -1.1328125, 0.37597656, -2.015625, -0.8305664, 0.80322266, -1.5097656, -3.1230469, 0.71191406, -1.3251953, 0.9609375, 2.4414062, -3.6933594, 1.5517578, -0.2479248, -3.8339844, 0.39282227, -0.7895508, -1.2197266, -1.421875, 1.5722656, 0.99072266, -1.2578125, -1.9033203, -1.6894531, -0.28027344, -1.3818359, -1.6308594, -0.79052734, 1.8388672, 0.4645996, 0.3383789, -0.63134766, 0.7524414, 0.78027344, -2.0253906, 2.0253906, -3.4511719, -0.3918457, -0.23510742, -0.053009033, -0.3544922, 0.31054688, -1.3496094, -2.1132812, -0.12176514, 0.75390625, 4.6992188, -0.14526367, 1.3349609, -0.98535156, 0.7451172, -0.7241211, -1.1054688, -2.6953125, 1.5234375, -0.16442871, -2.0839844, -1.0429688, -2.7617188, 0.47680664, -1.9462891, 0.6923828, -0.9663086, 0.5444336, 0.35229492, 0.037872314, -0.8417969, -1.0859375, 0.31958008, -1.203125, -0.19970703, -1.1269531, -1.9277344, 0.32861328, -0.51464844, 0.35473633, 3.1074219, 0.49536133, 0.47924805, 0.4794922, 2.265625, -1.1416016, 0.6035156, 0.13110352, -2.8964844, 3.265625, 0.3881836, -0.2890625, 1.9658203, -2.3242188, -2.1464844, 0.55859375, -0.7685547, 2.3125, 0.37353516, 2.2695312, 0.23876953, -0.36889648, 0.8276367, 0.031585693, -1.2451172, -2.4238281, -0.66845703, 2.7363281, -2.0332031, -1.9775391, 2.203125, 1.6230469, -1.5908203, -1.0673828, -0.07165527, 0.26098633, 1.3261719, 1.6904297, -1.1855469, -1.8681641, 0.3449707, 0.64990234, 2.3203125, 0.4482422, 0.11260986, -0.6826172, 2.390625, -0.39575195, 0.3515625, 2.9394531, 1.2021484, 2.0761719, 1.0234375, 2.8183594, -1.7421875, 0.56396484, 1.5439453, 0.8413086, 0.39672852, 3.6894531, 0.052764893, 0.29736328, -1.7099609, 1.40625, 2.0019531, -1.9042969, 0.21520996, 1.6494141, -1.2304688, 0.07281494, 1.2324219, -0.35766602, 1.3613281, 0.08306885, 2.8125, -0.20544434, -2.2050781, 0.92578125, 0.7324219, 0.6069336, -2.3945312, 0.52978516, -0.66015625, -0.984375, -0.23083496, 0.18835449, -2.2089844, -1.9150391, -0.7446289, -0.16870117, 0.031402588, 1.4169922, 0.7138672, -0.6040039, -0.34936523, -1.5898438, -0.38378906, 1.8427734, -2.6074219, 1.0576172, 0.734375, 0.34936523, 0.15600586, 0.4946289, 0.39038086, 0.42797852, -1.0068359, 0.41186523, -3.9667969, -2.109375, 0.2097168, -2.6445312, 0.9736328, 3.1230469, -0.90283203, 2.1230469, -0.4868164, 3.2148438, -2.8457031, -1.5751953, 1.5546875, -2.0019531, -0.28173828, -3.7773438, -2.3261719, 1.2988281, -0.29125977, -0.87109375, 2.1347656, 1.3613281, 0.4802246, 1.2119141, 0.93408203, -1.9443359, -1.3886719, -0.9472656, -0.3671875, -1.8701172, -1.234375, 0.75097656, 0.05987549, -1.4501953, -0.93408203, 1.046875, 0.060516357, 0.85058594, -0.084472656, -3.0234375, -0.059387207, -1.0830078, 0.35009766, -0.5078125, -0.31347656, 2.3554688, -0.6513672, -0.79345703, -1.0556641, 0.95214844, 2.2949219, -0.085876465, 0.6191406, 3.265625, 0.5800781, -1.875, -0.8613281, 0.33129883, 1.2070312, -0.12719727, -1.2578125, 0.08483887, -0.5571289, -1.0058594, -0.2734375, 2.4570312, -1.2783203, -1.0800781, 0.4375, 1.4111328, 0.36938477, 1.2802734, 0.023727417, -1.2373047, 0.018554688, 0.5004883, -2.1308594, -0.4194336, 0.20825195, -0.44995117, -1.5673828, 1.5361328, -1.3671875, -0.48242188, -1.9697266, -0.4272461, -2.5273438, 3.2285156, 1.4541016, 1.3710938, 2.1015625, 0.53808594, -3.5253906, 0.33007812, 0.35180664, -0.11431885, 0.4975586, 0.43041992, 0.10595703, 1.765625, 2.4296875, -1.4707031, -2.9902344, 2.90625, -0.6074219, -0.4609375, -1.1289062, 0.61376953, -1.5078125, 0.08215332, 1.9648438, -0.20581055, 0.8911133, -0.22595215, 0.24694824, 1.3173828, 1.1894531, -1.3759766, -0.37768555, -1.0986328, -1.6542969, 1.6523438, 0.45654297, -1.0107422, -1.2568359, 1.7333984, 0.7651367, 1.8652344, 1.1289062, 0.67529297, 0.30517578, 0.8745117, -0.3774414, -1.9472656, 0.2861328, 0.5410156, -0.5878906, 4.9101562, 2.5839844, -1.2724609, 1.0078125, -0.6142578, -2.5390625, -0.25878906, 0.5991211, -0.6640625, 1.640625, 1.1328125, -2.4785156, -0.25195312, 4.140625, -1.8759766, 1.2480469, -0.99316406, -2.5839844, 0.7285156, -3.5371094, -0.20751953, -1.0615234, -0.05783081, 0.36206055, 0.06585693, 0.16369629, -1.4599609, 0.41430664, 2.0976562, -0.30981445, -0.7314453, 1.3388672, -0.2607422, 1.2197266, -1.2988281, -0.91552734, -2.2421875, 0.9995117, 1.8076172, 0.38964844, 0.69873047, 1.1689453, 0.52246094, -1.7128906, 0.5048828, -0.9736328, 1.8818359, -2.5976562, -0.9350586, 2.0234375, -0.68066406, 0.91064453, -0.53564453, -1.6181641, -1.9902344, 0.7285156, 0.6660156, -0.9838867, -0.5449219, 2.1640625, -1.1484375, -4.4414062, -2.1933594, 0.012397766, -0.06591797, -0.9008789, -1.2861328, 0.57373047, 0.082458496, -0.36816406, 0.3305664, -2.84375, 1.0957031, 0.34228516, 1.1796875, 0.5644531, -0.8745117, 0.006713867, 1.640625, 0.95654297, -0.06567383, 0.22021484, -1.2714844, -2.8378906, 1.9628906, -1.8574219, 2.3085938, 1.5439453, 0.62841797, 0.84716797, 1.7861328, 0.01210022, -1.6484375, 1.8740234, -1.4804688, -0.80859375, 1.1318359, -0.24060059, -0.8486328, 0.44433594, -1.9394531, 1.5957031, -0.21203613, -2.078125, 1.0371094, 1.2597656, -0.2541504, 0.25854492, -1.0361328, -0.6040039, 0.6464844, 0.5161133, 0.5385742, 2.1464844, -1.8291016, -1.2597656, -2.7949219, -1.8271484, -0.16442871, -1.1230469, 0.9741211, -1.0878906, 1.1298828, 1.7441406, -0.007537842, -0.5703125, 0.27563477, -0.36010742, 1.0771484, 0.57470703, -1.3476562, 2.7636719, 1.1689453, 0.3239746, -0.9291992, -1.4033203, -0.54345703, -0.34716797, 1.1621094, -1.9169922, 1.5429688, -0.19226074, 0.7553711, 1.03125, 1.4511719, 2.6757812, 0.58984375, -1.2382812, 1.4951172, 2.6992188, -0.5786133, 1.2011719, 0.40795898, -0.05493164, -0.75390625, 3.0234375, 1.5195312, 0.28881836, 3.2929688, -0.9902344, 0.890625, 0.78759766, -1.4814453, 1.8271484, -1.0996094, -1.8222656, -1.3203125, -1.7021484, -1.7226562, -0.12011719, 3.3339844, -0.83984375, -0.12963867, 1.5537109, -0.9067383, 0.9501953, 1.9121094, 1.6367188, -0.042785645, 0.47485352, 1.9677734, -0.37402344, 2.7988281, -1.8525391, 0.828125, 0.2130127, 0.39379883, -0.6196289, 1.3330078, -0.19873047, 2.3242188, 1.4990234, 0.6254883, 1.0410156, 1.6035156, 2.4726562, 0.1315918, 2.21875, 2.0546875, 0.16308594, 0.35717773, 0.3881836, 0.051361084, -0.9082031, -2.09375, 0.10040283, -0.2614746, 0.060791016, -0.7080078, -1.5439453, 1.3476562, -2.7949219, 0.94677734, -0.35742188, 1.6708984, -0.10046387, -0.63427734, -0.29614258, -0.5859375, 1.3574219, -0.040618896, 0.25048828, -0.41723633, -0.015388489, -1.2548828, -0.71777344, -0.021148682, -3.1796875, 1.7734375, -1.1630859, -2.6699219, 0.13977051, -0.63671875, -0.10095215, 0.09173584, 0.17053223, 1.4521484, 1.4169922, -0.7661133, 0.36206055, -2.1875, 0.9067383, 0.64404297, 1.6367188, 0.014785767, 0.6411133, 3.390625, -0.27856445, -3.5585938, -3.6328125, 5.3242188, 0.04522705, 0.83447266, 1.0810547, -1.2792969, 2.2363281, 0.5600586, 0.36816406, -1.8164062, 0.83447266, -0.32885742, -1.84375, 0.8276367, 1.1757812, -0.87597656, 2.734375, 0.1854248, -0.84521484, 1.1542969, -1.1611328, 1.3642578, 1.5175781, 0.34570312, 0.5029297, 0.3408203, -1.8671875, 3.0859375, 1.3759766, -2.4121094, -0.41186523, 3.5625, 2.9414062, 0.70751953, 0.46191406, -1.4423828, 0.76464844, 0.2944336, -0.11694336, -0.46313477, -2.5429688, -1.1464844, -1.0253906, -1.4707031, -0.17346191, -3.5625, 0.62841797, 0.4765625, -1.3925781, 0.9790039, 2.9863281, -2.0449219, -0.4609375, 0.6699219, -0.034576416, -0.98535156, 0.20739746, 1.1484375, -0.02607727, -3.3730469, 0.3022461, 2.0839844, 1.59375, -1.7636719, 0.20043945, -1.2099609, -0.6933594, -0.14501953, 0.6020508, -0.23828125, 0.07287598, 1.2626953, -1.0654297, -2.1679688, 0.48242188, -1.0283203, -0.062469482, -1.1484375, -2.5820312, -0.9555664, -0.38867188, -0.74316406, 0.72021484, 1.0371094, -0.7890625, 0.8588867, -1.0429688, -3.015625, -1.8105469, -0.6508789, 1.4677734, 0.5546875, -0.73876953, -0.21496582, 1.6826172, 3.6816406, -2.7734375, 0.048614502, -0.50634766, -1.6943359, -0.6879883, 0.11895752, 1.6152344, -1.9208984, 0.44604492, -0.23779297, 4.125, 0.10180664, -1.6025391, 0.79785156, 2.0195312, 0.41015625, -2.2441406, 0.38085938, -0.3642578, -0.40966797, -0.625, -2.2089844, 2.0507812, 2.4414062, -1.1279297, -2.0136719, -1.8476562]}, "B016YLUXLE": {"id": "B016YLUXLE", "original": "Brand: Coleman\nName: Propane Fuel Cylinders, 4 pk./16 oz.\nDescription:

Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

\nFeatures: 8.0 LBR\n310326 332418 335648 333264\n014045324069\n", "embedding": [-0.15356445, -0.03439331, 0.3449707, 0.8051758, -0.11340332, -1.1728516, -0.17712402, -2.2441406, -0.38842773, 1.4960938, 2.0449219, 0.9633789, 0.21704102, -3.1582031, -0.24853516, -0.55615234, -1.8857422, 2.5722656, -0.91748047, -0.8183594, 2.7675781, -0.28222656, 0.20239258, -3.6972656, 1.7597656, 1.5566406, 5.734375, -3.359375, -1.2958984, -0.19970703, -0.08709717, -0.7402344, -0.83154297, 2.5859375, -1.1787109, 1.0527344, -0.14697266, -0.38476562, -3.1640625, -1.6552734, -0.7519531, 0.8925781, 4.078125, 0.32495117, -0.062072754, -0.6308594, 1.5136719, -0.76123047, 0.12731934, -0.42285156, 1.8164062, 0.9711914, -0.97558594, -0.62158203, -2.1269531, 0.87646484, 0.84033203, -0.57714844, 1.2763672, 0.44360352, 0.5810547, -0.17626953, -1.3769531, 0.86035156, -2.3203125, 4.453125, -1.2558594, -1.3818359, -0.009483337, 1.1367188, 4.9140625, 0.12658691, -1.5117188, -2.9667969, -1.8886719, 1.0751953, -4.46875, 0.71191406, 1.2138672, -1.0810547, -1.2529297, 1.0976562, 0.5654297, -1.2324219, -2.1484375, -1.9726562, -1.1943359, 0.91845703, 0.8535156, 0.061676025, -1.6708984, -0.30688477, -0.10998535, -3.9335938, 0.89501953, -1.9394531, 1.1757812, 0.98779297, 1.6445312, -0.38500977, 0.07904053, -0.5800781, -1.3417969, 0.2607422, -3.109375, 0.26611328, 1.703125, 0.8930664, -3.3417969, 1.4121094, -2.3945312, -2.1992188, 2.5234375, 0.77783203, -1.2880859, 0.87841797, -0.5449219, -0.76904297, 4.3789062, -1.0859375, 3.9765625, -1.6806641, 0.60791016, -0.37475586, -0.23266602, 2.03125, 0.7944336, 0.68408203, 1.0888672, 0.09753418, 0.75097656, -0.16931152, 3.8515625, -0.96972656, -2.5761719, -1.09375, -2.2167969, -1.3339844, -2.8808594, -0.65625, -3.5117188, 0.013259888, 2.2734375, 0.21533203, -4.609375, -1.5332031, -1.3085938, 0.98339844, -1.3554688, -3.046875, 1.2255859, -1.3164062, -2.4765625, 0.203125, 1.1298828, 1.1259766, -2.3144531, -2.4042969, 3.84375, 1.9082031, -0.83203125, -0.23742676, 0.10992432, 2.0058594, -2.0839844, -0.8066406, 1.5917969, -0.05697632, -1.0351562, 0.96777344, 2.7382812, -1.6806641, 1.0351562, 2.7128906, -0.69970703, -0.28808594, 0.25708008, 2.8164062, 1.3603516, 0.72314453, -2.8027344, -0.4243164, 0.34716797, -0.66259766, 1.9794922, -0.77001953, -2.0527344, -2.3769531, 0.6425781, -1.4853516, -0.6621094, 0.33813477, -1.3798828, -0.12890625, -1.5673828, -0.4338379, 0.25610352, -0.05517578, 1.4238281, 2.3046875, -0.57714844, 1.140625, 1.2304688, 1.9179688, -1.4042969, -1.5361328, 3.4414062, -1.2871094, 1.6523438, 1.7792969, 1.3720703, -0.37524414, 2.4765625, -1.5439453, 1.1064453, -2.765625, -0.60009766, 1.0693359, 2.3085938, 1.1875, 1.8818359, 0.27661133, -0.30371094, -0.8535156, 1.765625, 1.1416016, 0.7182617, -1.0400391, -1.2509766, -1.0117188, 1.1943359, 3.3203125, -1.6181641, 0.2619629, -0.041534424, 3.3730469, -0.01890564, -1.8710938, 1.5976562, -1.7578125, -0.47827148, 1.6953125, -1.1113281, -0.92529297, 0.65771484, 0.6220703, -0.01889038, 0.25756836, 4.1953125, 0.24279785, 0.89941406, -0.8027344, -1.1513672, 0.27563477, -2.3613281, 0.17272949, 0.58984375, 0.9008789, -0.21032715, -3.2714844, 1.0644531, 0.65283203, -0.15283203, -2.1582031, 0.0519104, 0.015045166, 1.0605469, 0.16235352, -2.1347656, 1.2158203, -0.6113281, 0.25708008, 1.5654297, -0.71972656, 1.3603516, 0.95654297, -1.0224609, 2.53125, -0.10668945, 2.4472656, 0.17602539, -1.0322266, 1.6113281, -4.234375, 0.05065918, 0.84228516, 1.875, -0.13549805, -2.3691406, 1.2871094, 5.5703125, -1.8017578, -1.6191406, 4.8554688, -0.76123047, 1.9267578, 0.82714844, 1.1064453, -0.21179199, -0.84228516, 0.8691406, 0.69921875, -0.20397949, 0.6074219, -1.8886719, -0.48486328, -0.17041016, -1.4882812, 0.82666016, -1.5380859, -0.5004883, -0.64453125, -1.6640625, 1.5527344, 0.06976318, 0.18786621, 3.75, -2.6894531, 3.2402344, 1.4453125, 0.31225586, 1.2050781, 1.8349609, -0.96972656, 0.32470703, 1.9892578, -3.9726562, 1.6494141, 0.9550781, 0.16430664, 1.9238281, -2.2539062, 1.7285156, -0.8144531, -1.5126953, -0.2697754, 0.6015625, -4.0820312, 0.5493164, 0.2734375, -0.9511719, 1.7949219, -1.2236328, 3.6074219, -0.72216797, -0.5097656, 0.91308594, 1.2148438, -1.1845703, -1.5585938, 0.9194336, 1.9667969, -2.359375, -3.5292969, -1.2558594, -0.49487305, 0.048706055, 0.22265625, 0.09472656, 1.3427734, 0.15893555, -0.38378906, -1.2324219, -0.85253906, -1.3144531, -0.60253906, 1.9550781, -2.1328125, 2.6484375, -0.796875, 1.9638672, -0.47143555, 0.39868164, -1.1699219, -0.8828125, 1.828125, -1.3007812, 5.59375, 0.49121094, -0.5756836, 0.17407227, -0.17675781, 1.3046875, -2.3984375, -4.0039062, 0.56689453, -0.14941406, 0.06732178, -3.03125, -4.1757812, 1.8125, -1.8681641, 0.023452759, -0.6098633, 0.03237915, -1.7490234, -0.89160156, -0.9116211, -0.39160156, -0.34057617, 1.1611328, 0.11883545, -1.6484375, 0.020431519, 0.57421875, -1.7304688, 1.2314453, -1.4121094, 0.38427734, -0.3786621, 0.15039062, 0.62109375, -0.33325195, 2.3671875, -0.00016272068, -3.3085938, 2.9140625, 1.8505859, 0.94970703, 1.6640625, -2.890625, 0.17932129, -2.9453125, -1.5820312, 1.7099609, 2.9609375, 0.59521484, 1.6318359, 1.8476562, -0.9243164, 1.3388672, -0.27539062, 1.2382812, 0.46923828, 3.0488281, -1.2783203, -3.6152344, 0.61328125, 1.8867188, -3.0625, -2.46875, -1.0761719, 1.1425781, 1.4042969, 3.03125, 0.12133789, -1.4013672, -0.3486328, -1.6748047, 2.0332031, -0.2944336, 0.36938477, 1.4648438, 0.19702148, 2.3203125, 0.5292969, 0.79345703, 1.5166016, -0.31445312, 1.4951172, 2.6757812, -1.6210938, 1.4912109, -0.51464844, -1.0214844, 1.2246094, 1.2236328, -1.4570312, 0.7583008, 0.2927246, -0.16455078, 1.4453125, -1.2958984, 1.7988281, 1.4667969, 1.1523438, -1.5439453, 1.4824219, 0.32250977, 0.19482422, -0.9506836, -0.46923828, 0.19396973, 0.8027344, 1.1865234, -1.4179688, 0.65478516, -1.0283203, 3.40625, -1.6025391, -1.234375, 0.5957031, 1.1396484, 0.27734375, -2.8984375, -3.2460938, 0.6098633, -1.5654297, 2.0390625, 2.4492188, -2.1523438, -1.4638672, 0.1385498, 1.4394531, 2.1640625, -1.6855469, -0.55371094, -2.734375, -1.890625, 0.023605347, 0.21350098, 2.1914062, 2.7890625, -1.9736328, 1.3818359, -2.1835938, 1.5742188, -0.07043457, -1.9042969, 0.17919922, 0.2927246, -2.2207031, 2.6328125, 0.6225586, 2.0390625, -0.6977539, 1.9335938, 2.8046875, -0.5644531, 0.2076416, -1.3720703, -3.0078125, 1.9580078, 0.58935547, 0.5644531, 2.3515625, -1.6289062, -0.9667969, 0.048706055, 0.16748047, -1.9804688, -2.015625, -0.008270264, 1.0761719, -2.2226562, -0.7089844, 1.1435547, -0.9765625, -4.0117188, -2.7949219, -0.48266602, -2.3125, -0.6386719, 1.3300781, -1.1240234, 1.8818359, 1.140625, 1.6777344, 1.3642578, -0.5102539, 2.5058594, 0.54785156, 0.21875, -3.6386719, 1.1572266, 2.1660156, -0.06378174, 3.4238281, 2.1230469, 2.6972656, -2.4355469, -0.12164307, 0.2590332, 1.1318359, 0.796875, -2.5957031, 1.0830078, -1.6025391, -1.0673828, -1.7714844, -0.7597656, 0.32202148, -1.5927734, 1.2070312, 1.1611328, 2.2421875, 1.5146484, 0.34936523, 0.1607666, 2.34375, 1.5957031, 0.2524414, -0.5830078, -0.95214844, -0.7714844, -1.2998047, 1.6777344, -2.5273438, -2.2832031, 1.9863281, -0.11187744, -2.75, -0.89404297, 2.2890625, 1.6982422, 0.18835449, 0.6044922, -3.2851562, 0.48046875, 0.26953125, 1.6289062, 0.5488281, -1.6259766, -0.6879883, 0.15002441, 1.0029297, -0.7480469, -0.7495117, -0.9472656, -2.5898438, -1.2529297, -0.90625, 0.49121094, -1.7167969, 0.64941406, -1.6982422, -1.1210938, 2.7910156, -1.8994141, 1.0234375, 0.34375, 1.2529297, -1.2158203, 1.2070312, 0.8959961, 0.85253906, 1.6328125, -1.5947266, 2.5566406, -0.8544922, 2.3300781, 0.54052734, 0.99316406, -2.9375, -0.06616211, -1.5078125, -0.030334473, -0.08074951, 0.038024902, 0.11273193, 0.60058594, 1.3710938, 3.1542969, 4.0429688, 0.118896484, 2.3515625, 0.25048828, 1.5664062, -0.52490234, -0.40576172, -0.20336914, 2.9101562, -1.5234375, -2.8027344, 0.09741211, 1.4160156, 2.4140625, 2.4863281, 1.4248047, -0.47875977, -2.6386719, -1.0117188, -1.7089844, -1.46875, 0.8383789, 0.6430664, 0.4091797, 0.2680664, -0.5776367, 1.0810547, 3.4550781, 1.4003906, -2.8808594, -1.078125, -0.18432617, 1.4443359, -1.9912109, 0.016418457, -3.4433594, -0.8745117, -1.5859375, 0.32495117, 1.9980469, 0.6958008, 4.3789062, -3.25, -0.89160156, -0.8173828, 1.2314453, -2.8320312, -0.5756836, 1.2929688, 1.7285156, 0.7607422, -2.2265625, -0.02986145, -0.85839844, 1.453125, 0.20263672, -1.6542969, -1.1289062, 1.3330078, -3.6953125, -5.5859375, -0.54785156, -1.1708984, 0.43774414, -0.51904297, -1.7441406, -2.0390625, 1, -2.0644531, -1.3984375, -2.6113281, 0.50439453, -2.1660156, 0.2680664, -0.3095703, 1.1572266, -0.31030273, -1.5166016, -1.4980469, 1.2861328, -0.67285156, -2.3828125, -4.7851562, -0.14404297, 1.0810547, 0.44799805, 0.73828125, -0.63134766, 2.625, 2.6953125, 2.0019531, -0.8535156, 1.1943359, -1.1552734, -0.63427734, 0.32641602, -2.0507812, 0.69677734, 0.96972656, 1.1113281, 0.7480469, 2.5957031, 2.4121094, -2.4609375, -0.6166992, -0.10784912, -1.1962891, 3.15625, 1.2265625, 3.8203125, 0.12084961, 0.27856445, 2.5195312, -0.5214844, -1.7792969, -0.8959961, -0.34277344, -0.11090088, -1.1210938, -1.6923828, -1.25, 2.7519531, 0.9741211, 0.54589844, 0.43188477, 0.27197266, -0.39501953, 0.22741699, 0.75146484, -3.8886719, 3.5078125, 0.89160156, -2.1933594, -3.5585938, -1.1757812, 3.5273438, 1.0517578, 0.06414795, -1.1953125, -0.890625, -2.1015625, -0.4399414, -0.8203125, 1.4609375, 1.4462891, 3.0390625, -1.0507812, 2.7363281, 4.328125, 1.1425781, 0.6464844, -0.69091797, -0.37670898, -1.828125, 0.52783203, 1.2041016, -3.3066406, 0.5654297, -1.4101562, -0.048950195, -0.21228027, 0.049438477, 0.50927734, -1.5380859, 1.1025391, -0.37573242, 0.45825195, -3.0859375, 2.8632812, 0.004951477, -0.8925781, 1.6386719, 0.23693848, -3.3007812, -0.66796875, 0.5776367, 1.328125, -3.2167969, -1.0214844, 1.2109375, -0.01751709, 2.8105469, -2.7050781, 3.3378906, -0.75, -0.66845703, 1.3007812, 1.8076172, 0.1706543, 2.1152344, 3.1171875, 1.3037109, 3.5195312, 0.2763672, 1.6943359, 0.5102539, 2.3574219, 0.8359375, -1.7949219, -0.22595215, 1.9550781, 0.5185547, -0.4560547, 0.61328125, -0.18164062, 0.80126953, 0.35083008, -1.3447266, 2.4316406, 0.7753906, -3.203125, 1.0830078, -0.3959961, 2.6796875, 0.33544922, 0.5800781, 1.4140625, -1.0976562, -0.46435547, -0.34155273, 0.015136719, -0.6772461, 0.10626221, -0.08154297, -0.9199219, 1.4726562, -0.3449707, -2.6992188, -2.5097656, -2.8515625, -1.2050781, -1.1113281, 1.1230469, 0.23291016, 1.1386719, 2.7617188, 0.41992188, -0.34985352, 0.032928467, -1.7851562, 0.7988281, 0.54541016, 3, 0.10595703, -1.8886719, 1.7539062, 0.95751953, -2.4960938, -4.6679688, 0.30859375, 1.890625, 0.6113281, 1.3408203, -1.3046875, 0.1027832, -1.6240234, 2.6835938, -2.0039062, 1.5439453, 0.62597656, -3.6796875, 0.27807617, -0.74316406, -0.29248047, 2.4609375, 2.5371094, -1.6992188, 0.33154297, 0.026016235, 1.5488281, 0.039489746, -0.82714844, 1.6132812, 1.8945312, -2.5722656, 0.9555664, -1.1191406, 2.9746094, 0.1920166, 3.5585938, 2.8789062, -0.032287598, -0.63427734, -0.95214844, 3.0078125, -0.32910156, -0.66064453, -1.0761719, -0.73095703, -1.0419922, 2.0039062, 0.6069336, 1.0810547, -0.16345215, -0.09484863, 0.94970703, -2.5292969, -0.28637695, 1.8574219, -0.8613281, 0.12841797, -2.8300781, -1.2128906, -1.03125, 0.30688477, -0.359375, -1.3105469, -0.88720703, 1.2636719, 2.7519531, 0.55615234, -1.2578125, 0.29516602, -1.3330078, -0.099365234, -1.5830078, -0.27001953, -0.6323242, -1.1787109, 0.49267578, -0.9819336, 0.6879883, -0.90185547, -0.08850098, -1.1523438, 1.0185547, -0.1430664, -1.8955078, -1.4179688, -0.09222412, 0.42578125, 3.6386719, -1.3613281, 1.5986328, -0.6855469, -3.0488281, -1.75, -2.6640625, 1.796875, 1.3466797, -0.2298584, -0.35717773, 1.2724609, 1.9892578, -1.3857422, -0.6582031, -0.19030762, -0.6269531, 0.9350586, -0.4260254, 0.1776123, 0.6274414, -0.062438965, -0.2548828, 3.5898438, 2.1464844, 0.26904297, -0.2084961, -1.5664062, -1.0527344, -0.8071289, -1.0351562, 0.21069336, -1.9150391, -3.6914062, 1.5048828, 2.0136719, -2.0371094, -1.1533203, -2.2929688, -0.7866211]}, "B00NG14614": {"id": "B00NG14614", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5\", Bronze\nDescription: \nFeatures: Includes lid, stones, tank holder, gas hose and regulator\nSteel frame with rubbed bronze finish\nUses 20 pound propane tank (not included) and has a 50,000 BTU output\nSafe for wood decks and great for camping or tailgating\nDimensions are 18.5\" wide and 14.7\" high\n", "embedding": [0.1763916, 1.6523438, 2.9707031, -0.10845947, 0.47680664, 0.47070312, 1.4560547, -1.8681641, -0.53027344, 2.140625, 0.6401367, -0.43725586, -0.042938232, -3.5605469, 2.1074219, -0.16174316, 0.32861328, 1.53125, 2.2929688, -0.7192383, 1.7490234, -0.46826172, 2.0019531, -1.6083984, 0.8432617, -0.35253906, 4.421875, -2.6210938, -1.2080078, -0.60302734, 1.6875, 0.86328125, 0.4111328, 2.1035156, -2.7148438, -0.9121094, -1.8867188, 1.0058594, -2.7871094, 0.2553711, -1.0273438, -1.2138672, 2.3671875, 1.3369141, -1.8476562, 0.9272461, 0.6621094, -1.1806641, 0.68359375, -0.8989258, 1.5576172, 0.7602539, 0.18969727, 1.4130859, -1.3710938, 1.078125, 0.35986328, -2.4140625, 3.0117188, 0.8515625, 2.1074219, -0.4736328, -1.984375, 1.8613281, -0.63671875, 2.4453125, -1.8974609, -1.0712891, 0.21447754, 1.1542969, 1.5869141, 1.265625, -0.1875, -0.18798828, 1.2070312, -0.31591797, -2.6738281, 1.5712891, -0.43579102, -0.51220703, -0.65283203, 3.0449219, 0.5083008, -1.0058594, -0.21179199, -1.4384766, -1.5634766, -2.0585938, 0.7651367, 1.6669922, -0.23571777, 2.4824219, -1.3867188, -4.6054688, 2.015625, -0.23547363, 1.3945312, 1.2480469, 1.9101562, 0.6767578, 0.53808594, 0.07977295, -1.4511719, 0.3876953, -3.4765625, -0.24743652, 1.2597656, 0.9819336, -1.0644531, -0.037597656, -2.34375, -0.38427734, 1.4707031, -0.69384766, -1.5976562, -0.23522949, -0.01398468, -0.016738892, 3.84375, 1.3535156, 5.125, -0.59033203, -0.16711426, -0.4260254, 0.15246582, -1.0566406, -0.59472656, 0.82958984, 1.2724609, -1.0390625, 1.1083984, -1.7548828, 2.1035156, 1.0742188, -1.2880859, -1.7382812, -2.8085938, -3.0742188, -2.09375, -0.74072266, -1.4541016, 1.7958984, 2.3632812, -1.1357422, -3.2949219, -0.31274414, -1.3544922, 1.7607422, -1.3427734, -2.0078125, 0.61083984, -1.6074219, -0.39038086, -0.6948242, 0.82714844, 1.1396484, -0.12670898, -1.9638672, 3.5410156, 1.3154297, 0.79052734, -1.6416016, -0.8515625, 1.703125, -0.4506836, -1.6884766, 1.4023438, 1.0498047, 0.54589844, 2.2304688, 0.8442383, -2.2441406, 1.5664062, 0.04824829, 0.2788086, -0.8725586, 0.2890625, 1.6767578, 1.6884766, 0.45288086, -1.8847656, -4.1367188, -0.79296875, 0.73046875, 1.2089844, -2.0605469, -1.5068359, -2.4511719, -0.30541992, -0.80810547, 0.40454102, 0.68310547, -0.91552734, 0.020828247, -0.36743164, -2.7011719, -2.1484375, -2.7167969, -0.043273926, 0.45654297, -1.7265625, 0.5332031, 0.01586914, 1.9072266, -1.4326172, -2.5390625, 1.1933594, 0.7939453, 1.6777344, 0.5488281, 0.25878906, -0.59765625, 1.4472656, -0.7163086, -1.2587891, -2.796875, 0.5625, -0.91845703, 2.5058594, 2.328125, 0.63134766, 0.31030273, 1.0078125, 1.3632812, 0.57177734, 1.7412109, -0.2788086, -0.0368042, -1.7695312, 0.37597656, 2.3847656, 1.4599609, -0.5214844, 0.78027344, -0.9550781, 3.5898438, -0.62402344, -2.2890625, 2.6152344, -0.5444336, -0.84033203, -1.4003906, -1.0527344, 0.25439453, -0.079589844, 0.15393066, -1.3261719, 0.5209961, 2.6621094, -0.09338379, 0.54248047, -0.09979248, -0.8149414, 1.3710938, 0.18762207, 0.0154953, -0.24499512, 1.3251953, 0.48217773, -2.3515625, 1.8271484, 0.3791504, -0.99072266, 0.29003906, 0.67578125, -1.7021484, 1.1298828, -0.23034668, -2.1855469, 0.21533203, -0.17651367, 1.0351562, 2.5410156, 0.22033691, 2.0703125, 0.8857422, -0.94189453, 3.8183594, -0.47973633, 2.0566406, -0.80322266, -0.24084473, 2.3515625, -1.90625, 0.020263672, 0.061920166, 0.89990234, -0.31933594, -1.2714844, 1.6914062, 4.03125, -0.59033203, -1.0214844, 2.8007812, -0.014602661, 1.3759766, 0.6484375, -0.53027344, -0.53466797, -1.4208984, 0.6665039, 1.5419922, 1.2626953, 1.1386719, -0.63916016, -1.0693359, 0.0713501, -3.5722656, 0.07470703, 1.5458984, -0.0625, 0.5097656, -0.5498047, 1.4667969, -2.8125, -0.97265625, 1.2939453, -3.6347656, 0.77246094, 1.6513672, 0.80859375, 1.4082031, 0.6113281, -0.9633789, 0.2052002, 1.9980469, -1.1025391, 0.33740234, 0.8378906, -0.28759766, -0.76171875, -1.4824219, 0.83251953, -2.8222656, 0.06097412, -1.3769531, -1.0537109, -1.0166016, 1.296875, -1.4541016, 0.34692383, 1.0273438, -2.1015625, 1.0654297, -0.28393555, -2.2695312, -0.69091797, 1.8837891, -1.3925781, -0.7988281, -0.1239624, 2.3046875, -1.8291016, -3.3476562, 0.068481445, 1.0605469, 0.58984375, 1.1533203, -0.5058594, 0.8261719, 0.019470215, 0.5410156, -0.08355713, -0.75683594, 0.26708984, -1.1865234, 0.78564453, -4.546875, 2.2421875, -1.7851562, 0.7583008, -1.4101562, -0.22973633, -1.8779297, -1.2832031, -0.030014038, -1.09375, 5.1757812, 0.4621582, 1.3388672, -0.38745117, -1.4042969, -0.2277832, -1.2890625, -2.1660156, 0.17358398, -0.61328125, -0.036621094, -1.1152344, -3.84375, 0.51171875, -1.2919922, 0.026184082, 0.04611206, -0.8305664, -1.0957031, 0.40429688, -0.16906738, 0.48828125, -0.028945923, 0.375, -0.11047363, 0.20800781, -1.0039062, -0.5263672, -0.87402344, 0.1307373, 0.44921875, 1.3828125, -1.2939453, -0.06628418, 0.48583984, -0.42749023, 2.0488281, 0.25756836, -3.2675781, 2.2890625, 1.9179688, 0.11706543, 0.6538086, -1.9238281, -2.0429688, -1.8291016, 0.9941406, 2.4589844, 2.828125, 1.9736328, 0.9707031, 0.10992432, -1.1298828, -0.11846924, -0.07525635, -0.85791016, 0.44873047, 2.9882812, -3.4746094, -1.9042969, 0.16369629, 2.0878906, -3.6972656, -0.11859131, 1.5341797, 1.8828125, 1.6259766, -0.062561035, -0.5473633, 0.31225586, 0.72998047, 1.8876953, 1.6171875, 1.9121094, -0.25317383, 1.2119141, 1.0410156, 0.5732422, 0.89453125, 1.7197266, 0.06750488, 1.1894531, 1.6894531, -0.7714844, -1.3554688, 0.17773438, 0.5449219, -0.36328125, -0.2758789, -0.34033203, -1.9365234, -0.24084473, 0.7167969, 0.095703125, 0.6435547, -2.2910156, -0.4489746, 0.5966797, 0.118896484, -1.0136719, 0.3395996, 0.2590332, -0.9238281, -0.9145508, 1.2568359, -0.30200195, 0.34960938, 0.9140625, -1.7929688, 0.34521484, 0.21618652, 1.8251953, 0.5917969, -2.0820312, -0.6323242, 1.3183594, -0.31225586, -1.8164062, -1.7792969, -3.1054688, -1.5537109, 3.5058594, 0.91259766, -0.85839844, -0.5620117, -1.6435547, 1.0537109, 2.6015625, -1.4863281, -1.5458984, -2.3535156, 0.08105469, -0.32348633, 0.9394531, 2.0703125, 1.3017578, -2.9082031, 1.1015625, -2.328125, 0.92041016, 1.7207031, -0.0022640228, 0.13757324, 2.2421875, -0.67626953, 2.421875, 0.3647461, 3.4140625, -0.5439453, 0.5522461, 3.4355469, -1.0683594, -0.87353516, -2.8203125, -2.7558594, -0.13366699, -1.5341797, -0.42114258, 0.9897461, 0.05065918, -0.8466797, 1.7148438, -0.44335938, -3.2265625, -1.6328125, -0.5161133, 1.5527344, -2.109375, -0.55029297, -0.20507812, 1.0361328, -2.7832031, -2.0019531, -0.11431885, 0.061676025, 0.046783447, -0.28393555, -0.5703125, 1.8183594, -1.578125, -0.010925293, -0.27124023, -0.2631836, 0.6171875, -1.09375, -0.7314453, -1.4335938, 2.7695312, -0.21813965, -1.3671875, 2.2695312, 4.59375, 0.7236328, 0.24475098, -0.39916992, 0.23242188, 2.59375, -0.16271973, -3.7929688, -0.23010254, -1.4453125, -0.11553955, -0.88427734, 0.33447266, 0.4189453, -1.1396484, 1.1689453, 1.4775391, 1.2226562, 1.1494141, -0.74316406, -2.4335938, 1.2089844, -0.47705078, -0.5473633, -1.3378906, -0.2631836, 1.15625, -1.9013672, -0.034240723, -1.4570312, 0.5390625, 0.005607605, -0.7080078, -1.5771484, 2.2558594, 2.1875, 1.4492188, 2.8652344, -1.5488281, -1.65625, 0.30126953, -0.53564453, 0.056762695, 1.3349609, 0.4729004, -0.2866211, 1.6826172, 0.9838867, 0.6254883, 0.2479248, 1.3984375, -1.7744141, -2.0273438, -0.4777832, 0.8413086, -0.99072266, -1.2197266, -0.5991211, -1.84375, 2.3046875, -0.50634766, -0.38134766, -0.9506836, 0.96240234, -0.6972656, 1.6679688, 0.671875, -0.35913086, 0.94433594, 1.0009766, 1.3193359, -0.37817383, 1.6708984, 0.4333496, 0.98876953, -1.921875, -0.63183594, -0.7807617, 0.53759766, -1.8017578, -1.21875, -0.0035438538, 0.39379883, 0.117126465, 1.7802734, 0.5175781, -0.98095703, 1.8837891, 2.5898438, -1.359375, 0.14123535, -0.8071289, -2.7734375, 1.6123047, -0.16674805, -3.2714844, 0.6166992, 1.4052734, 0.23742676, 2.5957031, -0.14685059, -0.7871094, -0.41577148, -2.6367188, -1.8935547, -0.49194336, 0.32983398, 0.06225586, 0.19750977, -0.086120605, -0.7602539, 1.1142578, 2.6503906, 1.0302734, -1.2255859, 0.546875, 0.9765625, -0.94189453, 0.54541016, 0.52246094, -1.0361328, -0.9536133, 0.73095703, 2.1601562, 1.1845703, 1.203125, 1.7421875, -1.9902344, 0.43310547, -1.2841797, 3.5214844, -2.4804688, -0.4494629, 2.2363281, 1.5175781, 2.0273438, -2.6171875, 0.29223633, -1.0615234, 2.1796875, 2.4453125, 0.40673828, -1.5556641, -0.9941406, -2.7519531, -3.3867188, -1.5859375, -1.2011719, -0.21655273, 1.2822266, -1.1474609, -1.3535156, 1.078125, -0.32495117, 1.4033203, -0.7109375, -0.28833008, -1.1103516, 0.45581055, 0.21240234, 0.11999512, 0.8354492, 1.3876953, -1.1826172, 0.26782227, -0.5390625, -1.8583984, -4.8984375, 1.9326172, -2.0234375, 1.4990234, 0.9790039, 0.46972656, 1.4238281, 3.2011719, 1.2861328, -1.8193359, 1.5546875, -0.3383789, -0.15759277, 0.4189453, -0.93310547, 1.359375, 0.35913086, -0.7739258, -0.19885254, -0.93603516, 0.859375, -0.6542969, -0.9980469, 0.06842041, -0.54248047, -0.06756592, 0.2878418, 2.96875, 0.40795898, 1.1787109, 1.5996094, 0.47680664, -0.6352539, -1.6621094, -1.8017578, -0.40234375, -2.90625, -1.7177734, -1.4755859, 0.80371094, 1.9472656, -0.36035156, 1.9775391, 1.3828125, 1.2363281, -1.1132812, 1.0654297, -1.4521484, 1.4248047, 1.7519531, -1.703125, -2.9316406, -2.5722656, -0.5083008, 2.0234375, -1.1894531, -0.19091797, -0.6640625, -3.2109375, 0.48291016, -0.029373169, 1.1035156, 2.6269531, 0.7109375, -1.7255859, 0.61865234, 2.1386719, -1.3085938, 1.0644531, -0.15710449, 0.98291016, -0.16479492, 2.5996094, 2.1855469, -0.99072266, 1.2236328, -0.63378906, 0.5234375, -1.6728516, -0.5048828, -0.112976074, -4.1914062, -0.52685547, -1.5419922, -0.01524353, -3.8945312, 1.1826172, 1.2353516, -1.1689453, 0.7788086, 1.140625, -0.38793945, 0.10620117, 2.0429688, 1.9921875, -0.9921875, -0.2133789, -1.5810547, -0.12121582, 2.3242188, -2.0273438, -0.0715332, -0.040374756, 0.5673828, -1.9179688, 1.8300781, 0.4350586, 0.99072266, 2.1484375, 2.9453125, 1.5117188, 0.49658203, 1.2880859, -0.36108398, 1.5712891, 1.1455078, -2.2382812, 0.38232422, 0.82910156, 1.2285156, 0.055236816, -0.5078125, 0.03604126, 0.9057617, -1.0126953, -1.5966797, 0.08935547, 0.7109375, -4.4257812, 1.3037109, -0.7260742, 2.0839844, -0.21289062, 0.4658203, -0.7578125, 0.875, 0.94970703, -0.73046875, 1.2109375, 0.2770996, 0.42089844, 0.8745117, -0.33984375, 0.36279297, -2.0625, 1.2138672, -0.14611816, -2.1894531, -0.7734375, 3.2519531, 2.1601562, 0.8076172, 0.53125, 2.5644531, 1.9882812, 0.5751953, 0.9716797, -0.6977539, 0.55908203, 0.25854492, 1.3759766, -0.48901367, -2.2539062, 1.4628906, -0.37475586, -1.2324219, -3.3261719, 1.6738281, 1.3115234, 0.58154297, 1.2822266, -1.4375, 2.0117188, -1.046875, 0.75439453, -2.7109375, -0.24829102, 0.7055664, -3.1523438, -1.2480469, 0.2998047, -0.15612793, 2.9589844, 1.4755859, -0.13232422, 0.8984375, 0.5078125, 1.4287109, 0.9223633, 0.32226562, 0.043395996, 1.2324219, -1.7734375, 1.921875, -0.17163086, -0.26293945, -1.2646484, 3.375, 0.5498047, 0.3815918, 0.6489258, -2.3457031, 1.5136719, -1.3515625, 0.25048828, -0.41674805, -2.09375, -2.34375, 0.19091797, 0.48046875, -1.1611328, -1.3310547, 1.4677734, 1.7958984, -0.3359375, -0.21105957, 2.9609375, -1.4853516, 1.1152344, -0.32128906, -1.4482422, -1.0800781, 0.3059082, 1.1230469, -1.5058594, -1.5986328, 0.02885437, 1.6474609, -0.3701172, -1.6210938, -0.13708496, -1.2675781, -0.3881836, 0.9160156, 1.5175781, -0.7060547, 0.07043457, 1.171875, -0.8510742, -1.3730469, 0.41870117, -0.00029587746, -1.1728516, 0.2939453, -2.5058594, -0.36743164, 1.8583984, -0.7661133, -0.15991211, 3.359375, 0.15454102, 0.5551758, -2.0605469, -3.8730469, -1.6708984, -1.2441406, 1.9863281, 0.40698242, -0.7988281, -0.011924744, 0.7104492, 2.8691406, -1.2197266, -1.1083984, -0.13342285, -0.6479492, 0.11437988, -0.97558594, 1.6044922, 0.49804688, 0.1538086, 0.30371094, 2.4941406, 1.3974609, -0.19445801, 1.5966797, 2.1289062, 0.56933594, -1.2998047, -0.27001953, -0.06390381, 0.78564453, -0.21655273, -0.74853516, 1.8535156, -0.66552734, -1.734375, -2.078125, -1.21875]}, "B06WLHJ8GJ": {"id": "B06WLHJ8GJ", "original": "Brand: F Fellie Cover\nName: Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))\nDescription:
Fellie Cover BBQ Grill Cover---Provide full protection for your grill

Wide Compatibility:
This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill's dimensions for proper fit.

Adjustable Funtion (Wind-proof):
Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

Water-resistant:
This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

Durable Burner Gas Grill Cover:
Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

Firm Protection:
Double stitching (Sewing), which is more durable than one-line stitching.

Easy Installation:
You can easily put this grill cover on or off.

Easy to store/carry:
Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

Note: Please keep away from open flame and other sources of ignition.


Item Color: Black
Package included
1 * Grill Cover
1 * Packing Bag\nFeatures: Find the Perfect Cover - Measures 75\"Wx28\"Dx46\"H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill's dimensions for proper fit\nDurable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round\nEasy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds\nSecure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won't blow away in the wind\nEasy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage\n", "embedding": [0.92041016, 1.7685547, 3.25, -0.8203125, -0.34960938, 0.26660156, 0.27856445, -3.2265625, 0.9404297, 2.4804688, -1.0673828, -0.15161133, 1.3378906, -5, 0.5131836, 0.59277344, -0.20202637, 2.2148438, 3.7851562, -1.0361328, 1.9345703, 0.22424316, 1.1445312, 2.0234375, 0.11791992, -0.47070312, 4.3828125, -1.8398438, -0.70654297, 0.00932312, 0.87939453, 0.25219727, -0.45947266, 1.3330078, -2.7421875, -1.265625, -0.2644043, 1.0361328, 0.6118164, -0.75927734, -1.4238281, -1.7792969, 2.7402344, 1.0283203, -2.0390625, 1.6162109, -3.671875, -0.59033203, 0.13562012, -2.0898438, 1.1425781, 1.0058594, 2.7460938, 0.7651367, -3.9492188, 2.1992188, 0.64208984, -2.5078125, -0.61083984, -1.3554688, 1.5419922, 0.07171631, -0.36889648, 3.7929688, -1.2958984, -1.0332031, 0.11584473, -0.86035156, 0.81103516, 0.81347656, 1.1484375, -0.50878906, -1.3701172, 0.45239258, 1.5576172, -0.48583984, -2.7558594, 1.9082031, 1.4267578, -0.83203125, -0.9746094, 4.5625, 0.06524658, -1.7333984, -0.20703125, -0.12854004, -2.9257812, -2.0019531, 1.5185547, -0.8520508, 0.47607422, 3.0390625, -1.2988281, -4.2382812, 1.2861328, -4.5585938, 3.6015625, 0.66064453, 0.2376709, -0.38598633, -2.1992188, 1.0322266, -1.1416016, 0.5185547, -2.9277344, -2.3007812, 1.3886719, 0.1116333, 0.90283203, 0.7685547, -0.81933594, 0.17041016, 0.2932129, 1.6044922, 2.2578125, 0.6435547, -1.3613281, 1.7304688, 0.108947754, 2.0898438, 3.1074219, -0.36523438, 0.4375, -1.0234375, 0.29101562, -0.8959961, -0.49267578, -0.28686523, 2.046875, -1.3037109, 1.0976562, -1.359375, 0.90234375, 0.80615234, -1.3623047, 0.17553711, -2.3417969, -1.1044922, -3.7871094, 1.6201172, -0.16418457, -1.3779297, 0.7675781, -1.7080078, -2.328125, 0.2631836, -1.5068359, 3.109375, -0.5761719, -3.7226562, 0.64160156, -1.34375, 0.30029297, -0.6933594, 0.83447266, -0.4194336, -0.13745117, -3.4804688, 4.1171875, 2.1699219, 2.1914062, -1.9433594, 2.5996094, 0.34716797, 1.4794922, -2.2402344, 1.1542969, -0.49853516, -0.8354492, 2.6679688, 1.390625, -1.8974609, 0.40527344, 2.6230469, 1.6357422, -2.7851562, 0.72021484, 0.6821289, 0.37182617, 0.23449707, -0.21142578, -2.0566406, 0.3071289, 2.0605469, -0.6118164, -0.70996094, 0.47070312, 0.64501953, 0.5419922, -1.1474609, -1.6650391, 0.9628906, -0.7944336, 0.4987793, -2.609375, -1.8652344, -1.4111328, 0.2355957, -1.1445312, -0.124694824, -1.0253906, -0.94140625, -1.0507812, 0.25219727, -3.0410156, -0.90527344, -0.6801758, 0.5288086, 0.95751953, 1.9980469, -0.8486328, -3.1132812, 3.3574219, 2.78125, 0.28149414, 0.07659912, 2.359375, 0.81640625, 1.8984375, -0.24536133, -0.3317871, -0.41088867, 0.61816406, 4.2851562, -0.67529297, 0.96484375, 1.9550781, 0.14868164, -0.6201172, -0.2310791, 0.90478516, 0.5078125, 0.32666016, -0.59277344, -0.5126953, -0.094055176, 0.18273926, -2.4980469, 0.36132812, 1.609375, -1.5537109, -1.734375, -3.3515625, -2.0332031, 1.6445312, 2.0019531, -0.09106445, 1.3935547, 0.8959961, -1.1425781, -0.31347656, 0.5654297, 0.84277344, 1.0839844, 0.121276855, 0.50878906, 1.8701172, 0.01977539, -1.0615234, -2.5097656, -0.8857422, -0.74121094, -1.3886719, 2.3847656, -0.101745605, 0.19934082, 0.103515625, 1.9443359, -1.0253906, -1.7939453, 0.93359375, -0.890625, -0.34960938, -1.5957031, 0.5673828, -1.2226562, -0.15100098, 0.2849121, 0.8652344, 0.039764404, 0.65625, 1.9726562, 1.7636719, -1.5488281, -0.40014648, 0.8671875, 1.2675781, -2.2792969, -0.6166992, -0.37939453, 4.8125, -0.12237549, -1.1738281, 3.21875, 0.25390625, 1.3066406, 0.22460938, -1.0283203, -1.3945312, 1.6259766, -0.4086914, 0.8808594, -0.9995117, 1.3759766, -2.0664062, -2.1191406, 1.8115234, -3.5214844, -1.5322266, 1.4326172, 1.5644531, 1.4033203, -0.78564453, 1.4042969, -1.3388672, -3.1328125, 0.9321289, -2.1035156, -0.1928711, 0.10467529, 0.25976562, 1.703125, -1.6640625, -0.9555664, -1.7587891, 0.3305664, -1.0576172, 0.95214844, 1.3720703, -0.61816406, -0.1439209, -1.7724609, 0.38232422, -1.8427734, -0.8886719, -3.0703125, -3.0449219, -1.9423828, -0.5527344, -2.0761719, 0.50390625, -0.3017578, -2.7148438, 2.1621094, 1.1875, -2.6875, -1.1455078, 1.6425781, -1.3154297, 2.0644531, -1.0576172, 0.35327148, -0.040893555, -5.46875, -0.53466797, -1.0976562, 0.24633789, -0.96728516, -0.23901367, -0.8408203, 0.3762207, 0.71777344, -0.18237305, 1.5917969, 1.0771484, -0.047546387, 0.025177002, -2.5527344, -0.16137695, -1.5722656, 0.4086914, -1.7773438, 0.8613281, -3.3320312, -1.0009766, 0.6484375, -2.1523438, 4.9570312, -0.30419922, 0.37158203, -1.3476562, -0.037902832, -0.6645508, -0.7753906, -3.6542969, 0.3154297, 0.44384766, -0.1328125, 0.53564453, -4.1171875, -2.2753906, -0.44628906, -0.8232422, 0.37768555, -0.77490234, -1.7705078, 0.7944336, -5, -0.6088867, -1.9335938, 0.94873047, -0.7167969, -0.5473633, 0.14709473, -3.8535156, -1.6826172, -0.8022461, -2.2578125, 1.6875, -1.8134766, 0.86083984, 2, -0.24047852, 2.7558594, -0.93066406, -4.2460938, 1.7324219, 1.8828125, -0.31225586, 3.4921875, -0.3791504, -0.8803711, -0.83740234, 1.3818359, 2.3554688, 1.2880859, 0.07269287, 2.7480469, -0.6352539, 0.6738281, 1.1640625, 0.76904297, -1.4921875, 0.58154297, 2.8027344, -1.2158203, -0.7421875, 0.95947266, 0.68847656, -1.4707031, 0.52685547, 3.0703125, 0.421875, 0.33984375, 1.3554688, 0.4260254, 1.4453125, -0.8569336, 1.5126953, 0.22753906, 2.6191406, -0.070495605, 0.74365234, 0.42529297, -0.047912598, 2.7382812, -0.072387695, 1.2080078, 0.98828125, 1.3369141, 1.3662109, 0.29833984, 0.27416992, 0.024414062, 0.2368164, -2.2929688, 2.1367188, -0.7050781, -0.54003906, 1.4462891, -1.8769531, 1.1181641, -1.1660156, 0.71777344, 1.4492188, -1.9365234, 0.5776367, -1.7402344, -1.0751953, -0.2866211, -3.1699219, -0.8330078, -3.1113281, -1.2792969, 0.21447754, -4.0585938, -1.96875, -0.37402344, 2.9980469, -0.26464844, -1.9902344, 0.7661133, 1.4150391, -1.7958984, -2.4492188, 0.55859375, 1.5644531, 0.06311035, 2.9433594, 3.5273438, -0.6308594, 1.6386719, -2.8027344, 2.1386719, 0.16149902, -1.0341797, -0.56347656, -0.18737793, 0.7167969, -0.22363281, 2.6816406, 1.1796875, 2.0292969, -0.5419922, 0.13830566, -1.9433594, 0.8461914, 2.2832031, -1.8251953, -0.6557617, 1.6621094, 1.3515625, 1.0058594, 0.6611328, 2.4648438, -0.6660156, -2.7128906, 1.6669922, -1.0595703, 0.11151123, 0.6972656, -4.390625, -0.41137695, 0.7680664, -0.9663086, 2.2050781, 0.14318848, 0.2890625, 2.2402344, 0.23632812, -0.55908203, 0.3383789, -1.8632812, -2.1328125, 0.32763672, -0.8642578, 2.0039062, 0.29516602, -2.6992188, -1.3349609, -2.5019531, -1.6494141, 1.1171875, 0.92822266, -0.87060547, 0.31420898, -2.5878906, -0.24169922, -2.1679688, -0.8779297, 0.17565918, -0.453125, -0.98095703, -0.0836792, 1.9570312, -1.0830078, 1.0576172, 0.46557617, 0.7675781, -0.50390625, -0.5361328, 0.48046875, 2.6289062, 1.8964844, -0.70166016, -3.890625, -1.9101562, 1.1552734, 1.4960938, 1.2294922, -1.5546875, -0.63183594, -1.6035156, -0.35839844, 1.3769531, 2.6777344, 0.47436523, -0.8901367, -0.6713867, 1.5263672, -1.8837891, -2.1386719, -0.9355469, 0.37670898, -0.12200928, 0.44555664, -1.1601562, -2.828125, 2.4140625, -0.8208008, 0.23669434, -2.0644531, 4.5898438, 1.5351562, 1.7246094, 3.1230469, -2.6035156, 0.7001953, 1.0957031, -1.09375, -0.7133789, 1.1386719, -2.515625, 1.3369141, 1.7089844, 0.16052246, -1.4980469, -1.234375, -1.5527344, -0.73291016, -0.075805664, -2.421875, 2.3300781, -1.3623047, 1.6816406, 0.7084961, -2.9179688, 2.4628906, -0.20544434, -1.2246094, 2.8828125, -1.8603516, 0.8339844, 0.7402344, 0.34692383, -0.30200195, -0.21520996, 0.49438477, 0.07366943, -0.8222656, -1.2265625, 0.94091797, 0.98583984, -1.6640625, 0.2006836, 0.7451172, 0.75439453, -1.8154297, -0.010803223, 3.7382812, 2.1660156, 0.26611328, 1.7041016, 0.8886719, -1.1103516, 1.3212891, 2.2050781, -0.8979492, -0.6699219, -0.71533203, -0.6875, 1.4365234, -1.4296875, -2.8671875, -0.9848633, 1.5947266, -0.42504883, 2.1777344, -1.0087891, -1.7548828, 2.1347656, -1.3544922, -1.4443359, 0.2619629, -0.5175781, 0.23901367, -1.1455078, 1.453125, -0.018508911, 1.2753906, 2.9003906, -2.3222656, -3.8964844, 0.01878357, -0.8520508, -0.15356445, -0.33447266, -0.83447266, -3.0898438, 0.10101318, 2.4199219, 1.96875, 1.5019531, -0.07928467, 1.7695312, -1.1787109, 0.23461914, -0.109802246, 0.9316406, -3.3632812, -0.38134766, 0.8017578, -1.0126953, -1.859375, -2.15625, -0.31347656, 1.1611328, 3.3457031, 0.46362305, 1.4912109, 0.7324219, -0.5649414, -3.5761719, -2.0371094, -1.5810547, 0.52734375, -1.0380859, 1.9550781, 0.20581055, 1.2304688, 0.38623047, -1.203125, -1.3476562, -1.0576172, 0.19750977, -0.10998535, -1.5429688, -0.5996094, -1.6894531, -0.8286133, 0.28149414, 0.6040039, 2.1816406, 0.12536621, -2.59375, -0.7397461, 0.7709961, -3.5195312, -1.5058594, 1.2060547, 0.16455078, 2.3554688, -0.45043945, 1.203125, 0.63964844, 2.5449219, -1.3759766, -0.7480469, 2, -1.4892578, 1.6015625, -0.6347656, -1.9375, 1.2597656, -3.7011719, 0.9042969, 0.8544922, -0.48486328, 0.85009766, 1.1318359, -1.2265625, -2.109375, 0.38012695, 1.0273438, 3.1347656, 0.5493164, -0.34985352, 0.17126465, -1.2783203, -3.2226562, 1.0634766, -2.1308594, -0.9628906, -1.8544922, -0.45898438, 1.7021484, 0.95214844, 1.8105469, 2.4511719, 1.6464844, -0.23156738, -0.81933594, 0.13793945, 3.7832031, 0.4338379, -2.7675781, 0.062316895, -0.7729492, 0.3569336, 1.3984375, -0.2980957, 0.059753418, -0.09277344, -0.98876953, -0.43408203, 0.62402344, 1.4716797, 1.6748047, 0.3701172, 0.55029297, 1.2158203, 2.2792969, -0.6035156, 1.7050781, -0.6845703, 1.9101562, -1.9394531, 2.5917969, -0.64990234, -3.2539062, -0.7939453, -1.3378906, 1.1376953, 1.5253906, -0.8198242, -0.6816406, -1.9140625, -1.7392578, -1.9140625, -0.29541016, -3.3613281, 0.7734375, 1.1435547, -0.7788086, 0.5332031, 1.625, 0.26342773, 4.2851562, 1.5244141, 0.47973633, -0.18981934, 0.082214355, -2.5039062, 0.011405945, -0.43969727, -1.9570312, 0.42700195, 0.03656006, 0.87646484, -1.8115234, 1.3623047, 1.2119141, 0.79248047, 1.7099609, 3.1972656, 2.1289062, 1.7539062, 3.2363281, 0.058532715, 2.0722656, 1.1669922, -0.84472656, -0.68359375, 2.65625, 1.3349609, 3.4902344, -0.23901367, -1.1689453, 1.0869141, -0.5800781, -0.33398438, 0.26538086, 0.3125, -2.4824219, 1.0771484, 0.7675781, -0.28588867, -0.80615234, 1.2617188, -0.38867188, -0.50341797, 0.62939453, -1.1865234, 3.5214844, -0.59375, 2.5234375, 0.22937012, 2.2792969, 1.8916016, -3.4648438, 2.6269531, 1.3691406, -2.4199219, -2.4414062, 1.8535156, 1.2597656, 3.28125, -0.42944336, 0.3857422, 2.2539062, 1.7851562, 1.2148438, -1.6083984, 0.87841797, 0.66748047, 0.93847656, 2.0097656, -2.8535156, -1.9960938, 1.5585938, -2.3242188, -1.4003906, 1.25, 2.40625, 1.2822266, 1.3808594, -4.234375, 0.5371094, -0.070495605, 2.5878906, -0.61621094, -0.015670776, -1.15625, -0.5942383, -2.3261719, 0.4736328, -1.4091797, 2.3574219, 0.9628906, 0.0949707, 2.9589844, 0.74316406, 1.8476562, 0.43310547, 1.0576172, -0.38183594, -0.125, 0.24963379, 0.7915039, 1.8330078, -1.3671875, 1.0263672, 1.8818359, 0.077941895, 2.1191406, 1.9638672, -1.2988281, 1.8603516, 3.4960938, 0.57421875, 1.40625, 0.079589844, -2.6347656, -1.5380859, 1.1103516, -1.1464844, -1.8037109, 1.6396484, 2.6113281, 1.2792969, 1.3232422, 2.1972656, 0.0970459, 2.3144531, 0.19018555, 0.13720703, -1.3564453, -0.57128906, 1.2207031, -1.1650391, 0.19836426, -1.0058594, 0.2277832, -0.0061035156, -0.87060547, 0.34838867, -0.3383789, -0.31958008, 0.09564209, 1.03125, -1.1064453, -0.35058594, -0.59228516, -0.35424805, -0.5654297, 2.09375, 0.46826172, -1.4130859, -1.7285156, -0.94677734, -0.6699219, -1.8076172, -2.3691406, 2.0683594, 4.375, 1.9570312, -1.7607422, -0.6977539, -3.0546875, -1.8457031, -1.0517578, 0.5805664, 0.58251953, -1.3955078, -0.5703125, -0.39575195, 3.9550781, 0.57958984, -0.49047852, 0.0021686554, 0.07354736, 2.9179688, 0.49169922, -0.70703125, -0.22241211, 0.30859375, 0.49291992, 1.9824219, 2.8261719, 0.74853516, 1.2802734, 2.8574219, -0.88623047, -3.1953125, -0.2475586, 0.87109375, 1.4267578, -1.0039062, 1.0478516, 0.4362793, -0.9223633, -0.055358887, -0.48486328, -1.2978516]}, "B094MW12HR": {"id": "B094MW12HR", "original": "Brand: SIRUITON\nName: SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black\nDescription: Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)\nFeatures: DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill\nPROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.\nWATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank.\nEXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage.\nGREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.\n", "embedding": [0.44360352, 3.0371094, 3.5507812, 0.24230957, -0.89697266, -0.13330078, -0.51464844, -0.44995117, 2.4238281, 1.4335938, 1.1328125, 0.9082031, 0.96191406, -3.0820312, 1.0273438, 0.02368164, -0.36669922, 2.6367188, 3.2324219, 0.90478516, 2.1640625, 1.7822266, 0.74121094, -0.3347168, 0.12634277, 0.70458984, 3.1660156, -2.8789062, -1.296875, -0.24438477, 0.6015625, -0.24401855, 0.27954102, 2.4648438, -0.24121094, -2.15625, -1.6103516, -0.7788086, -1.8994141, -1.1376953, -2.0957031, -0.6933594, 3.0585938, 0.49047852, -1.296875, 1.1289062, -1.9990234, -1.7480469, -0.3618164, -0.5649414, -0.097351074, 0.87060547, 1.9296875, 1.1318359, -0.92089844, -0.054260254, 0.6972656, -1.4667969, 0.97998047, 0.9760742, 0.50927734, -1.6904297, -1.6230469, 1.8222656, 1.6083984, -0.5126953, -0.15783691, -0.26342773, 1.1025391, 1.6240234, 2.0898438, -1.0761719, 1.9013672, -1.0244141, 1.2519531, -1.1416016, -2.2949219, 1.6464844, 1.4326172, -0.48242188, 0.39379883, 3.2734375, 0.058013916, -1.9560547, -1.8486328, -0.99072266, -1.1396484, -0.25512695, 0.083496094, 0.32641602, -2.2675781, 1.6367188, -1.8271484, -4.6328125, 0.58740234, -1.9541016, 3.8710938, 1.6689453, 3.2480469, -0.21459961, 0.38891602, -0.09069824, -2.0332031, 1.2548828, -2.0761719, -1.2470703, 0.43408203, -0.93066406, 0.9863281, -0.56396484, 0.55126953, -0.35131836, 1.5761719, -1.7548828, 0.42919922, -0.57470703, -0.28173828, 0.24230957, 1.7441406, 1.1367188, 2.6386719, -0.7167969, 0.5239258, -1.3974609, 0.43896484, 0.16906738, -1.890625, 0.30908203, 3.5351562, -0.23510742, 1.1445312, -0.87841797, -0.5620117, -1.09375, -0.2902832, -0.69970703, -1.3212891, -1.1464844, -3.3828125, -0.077697754, -2.59375, -1.015625, 1.2421875, -1.2929688, -3.0136719, 0.0491333, -1.7783203, 1.2119141, -0.69140625, -2.1757812, 0.45507812, -1.2578125, -0.13928223, -0.9379883, 2.4375, 0.15710449, 1.2333984, -2.8183594, 1.7773438, 2.2988281, 4.3125, -1.6367188, 0.34765625, 1.3173828, 1.5605469, -4.0625, 0.70458984, 0.92041016, -1.1796875, 1.0742188, 1.3076172, -2.1191406, -0.40893555, 1.5224609, 0.3178711, -1.5400391, 1.2089844, 2.1933594, -0.96972656, -0.7626953, -3.6289062, -1.4433594, 0.25830078, -0.11004639, -0.40234375, 0.6035156, -2.03125, -1.9589844, -0.24572754, -0.16247559, -1.8789062, 0.9873047, -1.6816406, -1.0859375, -0.7421875, -2.5957031, -2.2695312, -1.5673828, -0.82910156, 1.0888672, -1.1796875, -0.82373047, -0.7475586, 2.3144531, -2.9296875, -0.30981445, 2.1289062, 0.8227539, 1.6816406, 2.40625, 0.8666992, -0.4416504, 2.2871094, -0.2322998, -1.2324219, -0.8027344, 2.7421875, 0.4453125, 0.9394531, 1.0498047, -0.45581055, -0.6826172, 0.72802734, 2.59375, 0.81591797, 3.3183594, 0.43115234, 0.49047852, -1.625, -0.74560547, 0.8652344, 1.4404297, -1.1025391, 0.97753906, -1.0048828, 2.3222656, -1.0292969, -0.53808594, -0.29711914, 0.1083374, 0.040161133, -1.1621094, -0.62402344, 0.049591064, -0.07739258, 2.5019531, 0.37475586, 1.2490234, 1.6367188, -0.82373047, 1.4472656, -1.8837891, 1.2285156, -1.2822266, 0.019317627, 1.5751953, 0.92871094, 1.2529297, -1.0107422, -2.0703125, 0.8857422, 0.64697266, 0.7290039, 0.7705078, -0.54052734, 0.64697266, -0.7553711, 0.08898926, -1.4892578, 0.7626953, -0.37841797, 0.54003906, 0.93408203, -0.97802734, 2.0644531, -0.40478516, -0.3371582, 2.1152344, 0.5078125, 0.5986328, 1.3398438, -0.9160156, 2.2851562, -3.3691406, 0.55908203, 1.3134766, 2.4277344, -0.06964111, -1.3876953, 0.91748047, 2.9921875, -0.5776367, 0.47827148, 2.546875, 2.2910156, -0.43066406, 3.2773438, 0.1541748, 0.09680176, -0.4165039, 0.03286743, 0.07678223, 0.18981934, 1.375, -0.3203125, -0.91796875, 0.5175781, -1.0341797, -1.1855469, 0.11627197, 0.05154419, -1.6396484, 0.28686523, 1.1728516, -2.2285156, -1.734375, 3.5917969, -2.0625, -0.6411133, 2.3710938, 0.83447266, 1.5791016, -0.88671875, -0.3815918, -0.85546875, 0.28808594, -1.1601562, 1.3808594, -0.016937256, 0.67529297, 0.81933594, -2.2324219, 1.9912109, -0.890625, 0.5708008, -0.81152344, -3.0742188, -1.1513672, -0.19934082, -1.8408203, -0.004211426, -1.3525391, -2.9257812, 1.1035156, 1.8339844, -0.7426758, -1.1044922, 1.1962891, -0.99853516, -1.1855469, 0.7480469, 1.7978516, -0.85595703, -3.9394531, 0.5600586, 0.1439209, -1.6435547, 0.3400879, -1.4814453, 0.8491211, -0.3095703, 0.69384766, 1.5107422, 0.06298828, -0.8022461, -1.109375, 0.6826172, -4.1679688, 0.8232422, -2.0019531, 0.7763672, -2.9003906, 0.033966064, -1.2519531, -2.5898438, 1.5673828, -1.03125, 4.8085938, 0.9794922, 1.734375, -1.4746094, -1.6103516, -0.65478516, -1.1542969, -2.2929688, 0.008285522, 1.5195312, -1.3867188, -1.2607422, -5.0039062, -0.40307617, -2.2597656, -0.71240234, 0.6723633, -0.5097656, -1.5712891, -0.3720703, -0.99072266, -2.2480469, -1.3398438, 0.9326172, 0.8666992, -3.1113281, -1.0986328, -1.2275391, -0.7089844, 1.2822266, -0.7675781, 1.1103516, -1.8193359, 0.5234375, 0.32299805, -0.87597656, 2.4785156, 0.10675049, -2.7382812, 0.7441406, 3.8222656, -0.18652344, 2.4414062, -1.2929688, -0.7553711, -1.2773438, 0.5263672, 1.2998047, 1.9619141, 1.4326172, 1.5888672, 0.090148926, -0.057922363, -0.18835449, -0.06817627, 0.62646484, 1.9257812, 2.6054688, -0.49121094, -0.027801514, 1.3789062, 2.75, -2.9765625, -0.43481445, 0.26391602, -0.26391602, 2.8183594, 0.32470703, -1.8789062, -0.98291016, -0.13830566, 1.7890625, -0.5024414, 1.3808594, 0.6308594, 0.124572754, 1.5263672, -0.48999023, 1.3603516, 2.9453125, -0.017028809, -0.47827148, 3.3066406, 1.0048828, -1.2363281, 0.08905029, 0.14343262, 0.4333496, -0.3515625, 2.6015625, -0.3972168, 1.0126953, 0.0022201538, -0.85595703, 1.1132812, -2.0117188, 0.7006836, 1.0429688, 1.0400391, -0.49047852, -1.2363281, -2.171875, -0.8442383, -2.546875, 1.2080078, 0.2709961, -0.32373047, 1.203125, -2.6816406, -0.53271484, -2.3515625, 2.3925781, -0.23034668, -0.8652344, -0.15539551, 1.5976562, -3.2988281, -2.7285156, -0.7558594, -0.4970703, -0.9511719, 2.8730469, 2.2578125, -2.1894531, 0.8232422, -2.2050781, 1.7216797, 2.1503906, 0.0032367706, 0.21130371, -0.42041016, -0.7963867, -1.8300781, -0.022338867, 0.90478516, 1.1748047, -3.5097656, 0.43823242, -0.20446777, 1.3632812, 2.1601562, 1.4814453, -0.80859375, -0.13879395, -0.7373047, 1.9443359, -0.20239258, 2.8066406, 1.0605469, 0.28076172, 0.54248047, -1.9912109, -0.36450195, -0.36083984, -2.0976562, -0.8491211, -0.55126953, -0.39379883, 3.8671875, -1.1748047, 0.59277344, -0.33642578, 0.9770508, -2.7675781, -2.1699219, -1.921875, 0.96484375, -1.5087891, -1.8115234, 1.1943359, 0.1381836, -2.8027344, -2.0703125, 1.6162109, -1.2324219, -0.27392578, -1.0927734, 0.2512207, 1.0068359, -0.8574219, -0.87402344, -2.2324219, -0.68847656, -0.12054443, 0.24804688, -1.1601562, -1.6132812, 2.8027344, -0.018722534, -0.3400879, 0.796875, 2.7148438, 0.9863281, -0.85546875, -0.10687256, -1.15625, 1.1162109, -0.8144531, -3.5722656, 0.5839844, -1.1367188, 1.6230469, -0.60302734, -1.9072266, 1.3320312, -0.38378906, 1.1962891, 1.6650391, 1.7138672, 1.1582031, 0.34594727, -3.1113281, 2.4160156, -0.8310547, -1.0556641, -1.53125, -1.2714844, -0.36279297, -0.18127441, -1.0087891, -2.5019531, 0.40234375, 0.60498047, 1.0205078, -1.5703125, 1.4433594, 2.7070312, 2.9257812, 0.81396484, -1.0615234, 0.1496582, 0.7363281, 1.3974609, 0.40820312, 0.19909668, 0.6113281, 0.59521484, 1.2724609, 0.94873047, -2.6855469, -0.1986084, -0.54541016, -1.2304688, -0.29541016, -0.0736084, 1.2119141, -1.7529297, -0.6958008, -1.2099609, -2.046875, 4.5507812, -1.8339844, 1.0302734, -0.46240234, -1.6699219, -0.7607422, 3.5410156, 1.9013672, 1.6816406, 1.6542969, -0.65722656, -1.2734375, -0.05770874, 1.0224609, 0.54003906, 1.7167969, -1.9033203, 0.22570801, 0.55126953, 1.9921875, -0.3569336, -0.49365234, 1.2080078, 2.8222656, 0.91503906, 1.2392578, 1.3261719, -0.7421875, 1.2128906, 0.37426758, -1.0332031, 0.31152344, 0.39404297, 0.92529297, 3.1523438, -1.3632812, -1.8125, 0.7758789, 0.20349121, -1.2441406, 2.1875, -0.61083984, -2.7460938, 0.62109375, -2.8203125, -3.0234375, -0.09240723, -0.8339844, -1.9462891, -0.3930664, 1.7363281, 0.41625977, 1.1416016, 2.0429688, 0.7314453, -2.1328125, 1.1748047, 0.76464844, 1.1972656, -1.9130859, -0.6220703, -3.5507812, 0.3569336, -0.74658203, -0.26000977, -0.24560547, 0.4897461, 2.4335938, -1.8691406, -1.3720703, -0.30859375, 1.9130859, -1.6044922, -0.025268555, 2.7753906, -0.7167969, -0.27856445, -0.52783203, -0.60791016, -0.47094727, 1.8232422, 1.3125, 2.0625, 0.6381836, -0.49975586, -4.5898438, -5.1953125, -1.3652344, 0.49829102, -0.82666016, 0.93066406, -1.1699219, -1.6083984, 0.7783203, -1.3105469, 0.44458008, -1.6884766, 0.59716797, -0.29736328, -1.3789062, -0.7324219, -0.52783203, -0.17370605, 1.3916016, -0.54541016, -0.3786621, -1.4892578, -2.5507812, -2.3789062, -0.12023926, -1.6210938, 1.2167969, 1.2275391, -0.38623047, 0.953125, -0.05053711, 1.5029297, 0.27978516, 0.87060547, -1.9287109, -0.67626953, 2.0585938, -1.6728516, -0.31640625, 1.5234375, -0.6904297, 2.7792969, 1.6542969, 2.2578125, -2.3847656, 0.033966064, 0.66503906, 1.0351562, -0.15820312, 0.41259766, 1.6904297, -0.15307617, -0.0904541, 1.9921875, -0.23266602, -1.1660156, -1.0996094, -0.28173828, -0.61621094, -0.97509766, -0.8232422, -1.5117188, 0.32128906, 0.9526367, 1.2265625, 0.37524414, 0.9169922, 0.2668457, -2.1425781, 2.5625, -1.8671875, 2.3105469, 1.3759766, -1.8242188, -0.99121094, -3.453125, 3.2636719, 2.2851562, -1.9316406, -0.02281189, 0.37060547, 0.4790039, 1.8427734, -0.61621094, 1.2333984, 1.171875, 2.4550781, -1.4208984, 1.4560547, 2.140625, -0.24279785, 1.1455078, 0.13977051, 0.82177734, -0.22216797, 0.17919922, 0.51220703, -3.453125, -0.8647461, -0.2232666, 0.47753906, 0.21472168, -0.84716797, 0.010314941, -2.03125, -0.083496094, -1.4599609, -2.0722656, -3.7675781, 1.8574219, 0.87060547, -0.20678711, 0.9394531, 1.5595703, -0.8305664, 0.52490234, 1.0019531, -0.1459961, -2.5625, -1.4726562, -1.5644531, 0.9536133, 1.5273438, -1.8007812, 1.6416016, 0.6694336, 1.1376953, -0.6196289, 1.46875, 0.54833984, 0.79833984, 0.8046875, 2.2734375, 3.8730469, 0.67626953, 1.5449219, 0.74316406, 0.6826172, 2.8964844, -2.0136719, 0.17468262, 1.5332031, 2.0136719, 1.8300781, -0.31762695, -0.3798828, -0.68652344, -0.93359375, -0.08526611, 2.0957031, 1.5859375, -2.3164062, 0.73535156, -0.18359375, -1.3408203, 2.1230469, 0.27661133, -2.2421875, -2.4921875, 0.05206299, 0.4729004, 2.640625, -1.0488281, 2.2675781, 0.72509766, -1.4160156, 1.8916016, -0.35424805, 0.9248047, -1.6318359, -2.8339844, -0.55126953, 3.2167969, 1.3652344, 2.2128906, -1.2451172, -0.16015625, -0.19165039, 0.28222656, 1.7734375, -1.1337891, 2.3066406, -1.0048828, 2.2011719, 2.09375, -1.7470703, -0.7050781, 0.13513184, -0.33325195, -4.140625, 0.8803711, 0.51416016, 1.1679688, -0.17089844, -3.5019531, -1.0585938, -2.4492188, 1.0478516, -2.6660156, -0.84277344, -0.58740234, -3.0175781, -0.054992676, 0.83251953, -2.6699219, 2.4511719, 0.2836914, 0.1784668, 2.8574219, 0.82910156, 0.26416016, 0.13354492, 0.48901367, 0.36547852, 1.0732422, -0.69970703, 1.5566406, 1.7958984, -2.2207031, -2.1328125, 3.4726562, 0.60009766, 1.0908203, 0.9794922, -0.4169922, 2.5625, 0.48242188, -0.86816406, 2.5, -0.30981445, 1.3476562, 0.2993164, 1.0341797, -0.115600586, -0.01713562, 0.03918457, 1.7832031, -3.4882812, 0.15270996, 0.37939453, -0.87353516, 0.69140625, 0.5390625, -1.0498047, -0.5332031, -0.36254883, 1.2871094, -2.7304688, -0.33081055, -3.1054688, 1.4667969, -0.6713867, -1.3974609, -0.35498047, 0.5673828, -1.7265625, -0.22705078, 0.44555664, 0.3256836, -0.57470703, -0.038635254, -0.7783203, -0.26635742, 0.9946289, 1.2207031, -0.028823853, 0.6972656, -1.28125, 0.05895996, -1.4013672, -0.8833008, 0.84228516, 2.4160156, 1.5478516, 0.3955078, 0.37036133, -2.1953125, -0.04473877, -2.8066406, 1.4765625, 0.062469482, 0.28833008, 0.49731445, 0.6694336, 2.5234375, -2.1621094, -1.1083984, -1.0957031, 1.2226562, 2.3378906, -0.54003906, 0.44555664, 0.90185547, 0.08972168, 1.0400391, 4.0429688, 3.4667969, -2.0058594, 0.5288086, 2.2832031, -2.6464844, -2.0019531, -0.28271484, -0.5415039, -0.27514648, 0.36621094, 2.6074219, 2.3808594, 0.8984375, 0.050720215, -1.4775391, -0.72802734]}, "B01MXN574C": {"id": "B01MXN574C", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

High Quality
The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

Fit More Brands
The barbecue grill cover fits many brands. The size is 72\u201d long * 26\u201d deep * 47\u201d high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

Advantages
1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
2.The grill cover inside has a weather proof liner so you don't have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

Easy to Install
Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

Package includes
1*BBQ grill cover
\nFeatures: Dimensions: This Homitt bbq cover measures 72\"L x 26\"W x 47\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHandles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "embedding": [0.6298828, 2.4550781, 3.3652344, -0.5786133, -0.3251953, 1.5849609, 1.1582031, -1.9589844, 1.2089844, 2.9355469, -1.0566406, 0.28393555, 0.91845703, -3.5957031, 0.52734375, 0.50927734, 1.2451172, 1.3173828, 3.9101562, -0.18774414, 3.0175781, -0.19714355, 1.765625, 0.54345703, -0.006641388, -0.9711914, 4.1171875, -2.2871094, -1.5537109, -0.41552734, 1.7773438, 0.13952637, 0.55322266, 2.8339844, -2.9824219, -1.6269531, -0.87353516, 1.1035156, -0.3076172, -1.0693359, -1.7246094, -2.4804688, 2.8554688, 2.5839844, -2.7890625, 1.0898438, -1.5703125, 1.2167969, -0.66015625, -1.5751953, 1.9013672, 2.734375, 1.3652344, 0.7216797, -2.4335938, 2.7519531, -0.1517334, -1.8466797, -0.47729492, -0.609375, 1.7998047, -1.3076172, -1.2685547, 2.0292969, -1.2724609, -0.23242188, 1.4541016, -1.1552734, 0.7631836, 0.4140625, 0.6738281, -0.14294434, -0.038330078, 0.6845703, 1.3134766, -0.44628906, -2.9453125, 2.5234375, 2.2480469, -1.3115234, -1.015625, 6.0351562, -0.8173828, -1.6210938, -0.16918945, -0.24597168, -2.6074219, -2.5136719, 2.5800781, -1.3554688, -0.28955078, 2.1113281, -2.8808594, -4.4453125, 0.1661377, -2.3710938, 3.1445312, 1.0605469, 2.453125, 1.0410156, -1.5527344, 0.22583008, -1.7939453, 1.8300781, -1.9648438, -2.3496094, 1.5195312, 0.7319336, -0.4621582, 0.074523926, -0.6074219, 0.3947754, -0.2475586, 1.0283203, 1.8935547, 0.4465332, -1.0253906, 1.3037109, 1.1552734, 2.4609375, 3.7792969, -0.94921875, -0.54248047, -1.3623047, 1.0039062, -1.1083984, 0.021850586, 1.2890625, 3.53125, -0.84033203, 1.5507812, -0.9472656, 2.0429688, -0.70166016, -0.5205078, 0.1282959, -1.9765625, -1.0712891, -3.6367188, 1.7509766, -0.74316406, -2.0527344, 2.09375, -1.6650391, -3.0410156, -0.056152344, -1.6669922, 1.9931641, -2.1679688, -3.0683594, 1.3291016, -1.9394531, 0.76660156, -1.5927734, 1.8037109, -0.53466797, 1.2470703, -2.4492188, 3.4296875, 1.9677734, 3.4238281, -2.2460938, 0.14282227, 0.56103516, 3.3496094, -3.0605469, -0.35791016, 1.6289062, 0.09283447, 2.0644531, 0.3334961, -1.5546875, 0.70703125, -0.028915405, 0.9213867, -1.078125, 0.98095703, 1.5390625, -1.3222656, -0.042175293, -0.5629883, -1.9335938, -0.10992432, 0.89501953, -0.98876953, -1.5332031, 0.15368652, -1.0488281, 0.53027344, -1.2490234, -1.0244141, -0.09051514, 0.80859375, 0.19055176, -1.6611328, -1.0351562, -1.8095703, -1.2851562, -0.02268982, 0.43017578, -0.6020508, -1.2626953, -1, -0.5917969, -2.6152344, -2.3085938, -0.7163086, 0.24121094, 0.28076172, 1.8330078, 0.48779297, -1.8261719, 2.6796875, 1.4501953, -1.2382812, -0.29882812, 2.8769531, -0.75439453, 1.7880859, 0.87890625, -0.66064453, 0.24023438, 1.03125, 4.515625, -0.74121094, 1.5878906, 1.1669922, 0.56689453, -0.9091797, -1.4521484, 0.4428711, 1.359375, 1.0048828, 0.5180664, -1.5214844, 1.6357422, -0.45385742, -2.140625, -0.038513184, 1.0712891, -1.828125, -1.5839844, -2.9375, -1.5703125, 0.5878906, 2.6699219, -0.71875, 0.4765625, 1.9648438, -1.1298828, -0.6333008, 0.7001953, 0.9082031, -0.3076172, -0.8857422, -0.16113281, 0.89208984, 0.22473145, -1.0146484, -1.9619141, 0.046966553, -1.5371094, -0.6298828, 1.7021484, -0.4453125, -1.0820312, 1.8457031, 0.55126953, -2.4433594, -1.5244141, 1.8115234, 0.16906738, 0.48950195, -1.6425781, 1.8222656, 0.25634766, -0.034240723, 1.7910156, -0.040405273, -0.3737793, 1.0605469, 2.1621094, 2.3828125, -1.1982422, 0.36767578, 0.8798828, 0.1928711, -1.6748047, 0.46191406, -0.18200684, 2.9433594, 0.15588379, -1.2314453, 3.1191406, 1.3310547, -0.25585938, 0.16479492, -1.5410156, -1.5458984, 0.6972656, -0.12646484, 1.2792969, 0.3083496, 1.8574219, -0.42822266, -1.1474609, -0.07196045, -1.71875, -0.25756836, 1.2275391, 0.29223633, -0.46850586, 0.5126953, 1.8652344, -2.3164062, -1.5195312, 1.984375, -2.3554688, -0.9296875, -0.037872314, -0.11102295, 0.28100586, -1.3964844, -2.1640625, -0.3256836, 0.49951172, -1.4472656, -0.14685059, 1.1220703, 0.28930664, -0.2788086, -1.8857422, 0.10632324, -1.1230469, -1.2783203, -2.4511719, -4, -2.1328125, -0.8203125, -1.8798828, -1.2099609, -0.27148438, -2.2363281, 2.8710938, 1.1152344, -2.5019531, -1.7070312, 1.2451172, -1.8115234, 1.6552734, -1.1816406, 0.10821533, 0.03717041, -4.6289062, 1.0517578, -0.0060043335, -0.43237305, 0.118896484, -0.7895508, -0.6982422, 0.54345703, 0.71875, 0.5683594, 1.1914062, 1.3339844, 0.85791016, 0.35791016, -4.0898438, -0.11395264, -1.8154297, -0.33569336, -3.0097656, 0.33935547, -3.3867188, -0.26831055, 1.1474609, -0.90234375, 2.03125, 0.4243164, 1.0185547, 0.7290039, -0.0072021484, 0.640625, -0.13085938, -2.046875, -0.4970703, 1.0224609, -0.67285156, 0.5517578, -4.1484375, -1.6953125, -1.4638672, -0.42163086, -0.19384766, -0.83496094, -0.45239258, 1.0205078, -2.453125, -0.91259766, -1.5214844, 0.9980469, 0.24658203, -0.8408203, -0.25390625, -2.6484375, -2.2871094, -1.0517578, -1.6396484, 1.8085938, -2.6933594, -0.061309814, 1.65625, -0.5957031, 2.9003906, -0.81396484, -5.4765625, 0.45141602, 2.0761719, -0.8466797, 1.578125, 0.15429688, -1.5839844, -0.7597656, -1.0390625, 1.9355469, 0.14611816, 0.12719727, 1.0205078, -0.07446289, 0.609375, 0.03274536, 1.84375, -0.36157227, 1.28125, 2.9160156, -1.5615234, -1.1191406, 1.1982422, 0.8300781, -1.859375, 0.6269531, 2.2578125, -0.45922852, 0.5698242, 1.2568359, 0.46948242, 0.040100098, -0.23425293, 1.3896484, -1.2988281, 1.2089844, -0.10595703, 0.37329102, 0.6542969, -1.1123047, 2.6328125, 1.9453125, 1.1162109, 1.0947266, 1.2001953, 0.5932617, 0.3022461, -0.101989746, 1.3808594, 2.0234375, -0.6826172, 2.0878906, -0.94921875, -1.3046875, 1.6474609, -1.4775391, 1.0068359, -0.84033203, -0.37475586, 1.9179688, -0.8647461, 0.13049316, -0.24731445, -0.19006348, -0.5053711, -1.5664062, -1.5087891, -1.5039062, -0.6640625, 0.5283203, -2.5195312, -2.1113281, -1.0732422, 3.7753906, -0.5932617, -1.3359375, -0.9433594, 1.9150391, -2.5449219, -1.25, -0.07928467, 2.1757812, -0.40356445, 2.4667969, 2.3300781, -2.0644531, 1.8300781, -2.8027344, 1.0517578, 1.2109375, -1.9042969, -0.15966797, 0.1282959, -0.24206543, 0.18054199, 0.984375, 1.3056641, 2.1464844, -0.7446289, -0.18676758, -3.2480469, 0.47436523, 0.17114258, -0.85302734, -0.47485352, 3.5175781, 0.54589844, 0.9008789, -1.4560547, 3.1074219, 0.38110352, -1.5283203, 1.8291016, -2.5214844, 0.65771484, -1.0830078, -5.1328125, -0.5722656, -1.1621094, -1.4375, 3.1523438, 0.6660156, 1.2119141, 1.125, 0.5878906, -0.9707031, -0.024475098, -2.8808594, -2.1738281, -1.5429688, -1.3222656, 2.3398438, 0.6171875, -2.7480469, -2.2617188, -2.59375, -2.0058594, 0.7128906, -0.6713867, -1.25, -0.4753418, -2.2402344, -0.20739746, -1.6669922, -0.5185547, 0.23339844, -0.36865234, -0.83203125, 0.42114258, 1.2509766, -1.8046875, 0.24328613, 0.7817383, 1.65625, -1.4902344, -1.8701172, 0.25756836, 2.0742188, 3.3769531, -0.8339844, -3.6132812, -1.3222656, -0.29052734, 2.6894531, 0.5878906, -1, -0.8027344, -1.375, 0.39868164, 0.77246094, 2.8222656, 1.3212891, -1.0605469, -2.3398438, 2.0214844, -0.9267578, -2.7285156, -1.9501953, 0.29858398, -0.53515625, 0.1595459, -2.2382812, -2.5761719, 1.9257812, -0.95214844, -0.14685059, -0.94921875, 3.6523438, 0.5888672, 1.5292969, 3.4863281, -1.7792969, -0.2668457, 1.5898438, -2.03125, -0.07611084, -0.6069336, -0.73779297, 0.62841797, 0.7426758, -0.5371094, -1.0175781, -0.32348633, -1.3378906, -0.5932617, -0.7915039, -1.8330078, 2.0527344, -0.73828125, -0.40551758, 1.9130859, -2.8398438, 3.6992188, -0.5908203, 0.2932129, 2.4609375, -2.0878906, 0.058013916, 1.0595703, 0.36254883, -0.19006348, 1.0908203, 0.9506836, 0.89990234, 0.9501953, -1.4423828, 0.5019531, 1.4433594, -1.9326172, 0.49121094, 0.72998047, 1.3554688, -0.47265625, -1.3925781, 2.5078125, 2.7089844, 0.038116455, 1.9960938, 0.4494629, -1.2929688, 1.6699219, 2.1855469, -0.74365234, -0.51416016, 1.6494141, -0.13256836, 2.671875, -1.5449219, -1.6220703, -0.86865234, 2.3164062, -1.4257812, 1.8144531, -0.44384766, -0.94189453, 0.84228516, -2.3046875, -0.45922852, -0.6557617, -1.3632812, 0.021972656, -1.4775391, 2.0488281, 0.75146484, 2.3769531, 3.4589844, -1.4140625, -2.9433594, 1.578125, -0.24914551, -0.4140625, 0.30932617, -1.2675781, -3.3964844, -0.15112305, 1.6630859, 1.0830078, 0.66748047, 0.875, 2.0742188, -1.9833984, 1.2158203, -0.03289795, 2.9628906, -2.3027344, -1.0234375, 2.9042969, -3.3964844, -2.4453125, -2.2773438, 0.31762695, 1.0214844, 1.1669922, 1.6757812, -0.14355469, -0.36523438, -1.1142578, -3.5605469, -1.9169922, -1.2285156, 0.49169922, -0.8642578, 2.3242188, -0.2783203, 1.0830078, -0.28588867, -0.50878906, 0.28051758, -0.99365234, 0.21484375, -1.6767578, -2.2851562, 0.15161133, -1.921875, -1.1455078, 2.5175781, 1.4355469, 1.6738281, 0.95703125, -3.4863281, -0.76123047, 0.8618164, -2.9472656, -1.3798828, 2.6113281, 0.48120117, 0.90771484, 0.5805664, -0.10784912, -0.65234375, 3.4257812, -0.70410156, -0.7109375, 1.9042969, -0.37182617, -0.17260742, -1.5019531, -1.546875, 0.97753906, -3.1289062, 1.6962891, 0.37182617, -1.0205078, 1.7226562, 1.7929688, -2.4667969, -0.64746094, 1.4765625, 1.5976562, 2.328125, 0.26171875, -1.3671875, 0.1854248, -1.3408203, -1.390625, 0.051574707, -2.5761719, -1.3935547, -1.2001953, 0.7363281, 1.4296875, 1.6923828, 1.7958984, 0.10180664, 1.7822266, -1.7519531, -1.2910156, 0.7319336, 2.3007812, 1.0019531, -2.5957031, -0.7495117, -0.9423828, 0.5996094, 1.0986328, -0.23522949, 0.38330078, -0.14440918, -0.9902344, -0.20751953, 0.5961914, 0.43041992, 1.4316406, 1.6572266, -0.15307617, 0.81152344, 2.6679688, -0.6801758, 1.3515625, 0.70410156, 1.1064453, -1.3554688, 1.4716797, 0.07006836, -3.1582031, -1.9345703, -0.7524414, 0.69873047, 0.4116211, -1.0048828, -0.29858398, -2.25, -0.9604492, -2.2832031, -2.1230469, -4.2734375, 0.81103516, -0.111572266, -0.30444336, 0.13586426, 3.2675781, 1.1611328, 3.515625, 1.4003906, 0.010231018, -0.46142578, -0.96484375, -0.9248047, -0.93359375, 1.0322266, -1.6455078, 0.61328125, -0.17382812, 0.34399414, -2.2695312, 1.3027344, 0.3623047, 1.0546875, 0.40307617, 2.8535156, 3.03125, 1.6582031, 2.1171875, 0.3046875, 1.0507812, 1.2285156, -0.8457031, 0.75390625, 2.4863281, 1.5166016, 3.3925781, 0.24511719, 1.0957031, 1.0712891, -1.7216797, 1.0527344, 1.3310547, 2.1230469, -3.1074219, 1.1455078, 0.5517578, 0.96240234, -0.92285156, 1.1855469, -1.8681641, -1.7050781, 0.27685547, -0.17675781, 3.5957031, -0.19042969, 0.26538086, 1.1220703, 1.9316406, 2.4921875, -3.0644531, 1.7822266, 2.4785156, -1.6025391, -1.7480469, 0.9067383, 1.8193359, 1.7978516, -0.06939697, 0.20568848, 1.7324219, 2.0039062, 0.83496094, -1.84375, 1.1953125, -0.20629883, 2.1132812, 0.69873047, -2.6972656, -1.2509766, -0.9472656, -1.8476562, -2.9414062, 1.2158203, 1.6552734, 1.6230469, 1.1308594, -4.7617188, 0.92578125, 0.6225586, 2.0605469, -1.3505859, -0.027786255, -0.49145508, -1.2255859, -1.8310547, 1.2539062, -1.984375, 1.7666016, 0.6533203, -2.3515625, 2.9414062, 1.3193359, 0.88183594, 0.6323242, 1.9853516, 0.09686279, 0.734375, 0.14379883, 1.2666016, 1.1943359, -0.28393555, 0.23693848, 2.8222656, 1.1679688, 1.6152344, 2.0273438, -0.6166992, 0.94140625, 2.6953125, 1.1728516, 2.0507812, -0.28344727, -1.0791016, -0.6582031, 1.1259766, -0.8964844, -2.1582031, 3.3613281, 2.6992188, -0.35791016, 1.7119141, 1.2275391, -0.63916016, 1.4550781, 0.8100586, -0.484375, -0.18530273, -0.55371094, 0.70166016, -1.0488281, -0.8964844, -1.4150391, 1.5869141, -0.023727417, -2.3339844, 0.101623535, -0.006904602, -0.5571289, -0.5776367, 0.95654297, -1.3291016, -0.72998047, -0.6020508, -0.34960938, 0.24328613, 1.9931641, 1.59375, -1.859375, -1.9355469, -2.1601562, 0.10083008, -1.5615234, -3.0195312, 2.3828125, 4.5039062, 0.96728516, -1.8896484, -1.6884766, -1.8203125, -0.2705078, -1.5722656, 1.0410156, 0.94140625, 0.009864807, -0.10491943, 0.9003906, 2.2460938, -0.2722168, -1.5927734, -0.49145508, -0.6459961, 1.6728516, -0.50341797, 1.0371094, -0.98339844, -0.059326172, 0.10638428, 1.8994141, 3.2675781, -0.36743164, 1.3291016, 3.2636719, -0.4128418, -3.1875, 0.51660156, 1.9208984, 1.5341797, 1.2207031, 1.5341797, 1.3603516, 0.8515625, -0.25439453, -0.9423828, -2.1835938]}, "B000WB2BH2": {"id": "B000WB2BH2", "original": "Brand: GasOne\nName: Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A\nDescription: \nFeatures: Regulator and hose ready to use\nHose length: 150cm (59in)\nConnecting outlet: 5/8\" Unf\nIncompatible with Bunsen burner\n", "embedding": [-1.3134766, -0.3100586, 0.46166992, -0.1060791, -0.32299805, 0.42651367, 1.5068359, -1.2255859, 0.92529297, -2.2773438, 0.13256836, 0.6538086, 0.93896484, -1.4970703, 2.8632812, -0.69091797, 1.7607422, 1.7919922, 1.6845703, 0.39453125, 0.53564453, -0.9316406, 2.5585938, -1.0117188, 0.5463867, 0.18652344, 4.171875, -2.8574219, -1.2617188, -1.1455078, 1.2177734, 2.6113281, -0.42504883, 1.4238281, -2.4296875, -1.8212891, 0.054504395, -0.4428711, -3.8222656, -1.6630859, -1.3955078, 2.0390625, 0.89160156, 0.6147461, -2.1660156, 0.16186523, 0.56152344, 0.17553711, -0.27270508, 0.07879639, 2.0488281, 0.9267578, -1.3964844, -0.07739258, 0.83154297, 0.8261719, 0.8339844, -2.9199219, 0.8300781, 0.51220703, 2.2285156, 0.82714844, -1.9667969, -1.25, -2.3066406, 1.2412109, 0.54785156, 0.9370117, -0.57470703, 0.3774414, 1.0644531, 0.91064453, -0.13500977, -0.39257812, -1.4101562, 0.39086914, -4.1757812, -0.37573242, 2.3867188, -1.8603516, -1.0722656, 2.0664062, 1.5390625, -1.5634766, 0.69433594, -0.63671875, -1.6992188, 0.2788086, 1.5751953, 0.7504883, -3.1015625, 3.6425781, -2.859375, -2.5664062, 1.5117188, 0.7211914, 0.49853516, 3.0917969, 1.8349609, -0.101135254, -2.3847656, -1.2509766, 0.41430664, 0.1895752, -0.44091797, -2.0488281, 0.78759766, 1.0957031, -2.6640625, 0.06451416, -0.45898438, -1.5742188, 1.3691406, -0.5209961, 1.1513672, -2.0019531, -1.1572266, 1.3857422, 2.4414062, -0.0748291, 3.2304688, -0.16894531, 1.0205078, -0.07885742, 0.9501953, -1.0771484, -1.2011719, 0.70703125, 3.0761719, -0.13378906, 0.72265625, -1.90625, 2.3144531, 0.019180298, 1.0947266, -2.3769531, -0.9165039, -4.390625, -0.9121094, -0.9111328, -2.625, 0.87646484, 1.1005859, -0.8461914, -4.1171875, 0.9536133, -3.7519531, 1.3193359, 2.2402344, -2.7988281, 0.72314453, -2.0253906, 0.9511719, -1.8867188, 1.4326172, 0.30517578, 0.3581543, -1.4072266, 3.2265625, 2.53125, 0.83691406, 1.1083984, -1.4775391, 1.7011719, -1.2636719, -2.234375, 0.79052734, 0.4506836, -2.3046875, -0.18029785, -0.9013672, -1.8388672, -0.9951172, 0.11755371, -0.47851562, -1.0722656, 1.6191406, 2.1738281, 1.5039062, 0.5654297, -3.7558594, -3.1640625, -0.37768555, -2.1660156, 1.3525391, 0.091552734, -1.2998047, -1.2841797, 1.8671875, -0.13830566, -0.52783203, -1.5009766, -1.0751953, 1.5185547, -0.7714844, -2.4550781, -3.6914062, 1.09375, -0.20837402, 1.9609375, -0.90185547, -0.58984375, 1.8320312, 0.74072266, -0.98535156, -2.3925781, 0.5854492, -1.5996094, -0.66845703, 1.2373047, -0.9267578, -0.11755371, 1.2773438, -0.6870117, 0.64697266, -1.2333984, 3.7421875, 2.6914062, 0.9897461, 1.5, -0.1586914, -0.37939453, 0.76464844, -0.31469727, 1.1162109, 0.6503906, -0.13745117, 0.734375, -2.2226562, -1.1132812, 2.3339844, 1.9902344, 1.046875, 0.7553711, 1.3789062, 1.7011719, -0.49169922, -0.69873047, 1.0234375, 1.5498047, 1.0361328, -2.0644531, -3.0839844, -1.4365234, -0.97314453, 1.4599609, -0.6333008, 0.19567871, 1.8105469, -0.7446289, 1.1865234, 0.69140625, -1.2363281, -1.0019531, -2.5664062, -0.6035156, 0.25732422, 2.8007812, -0.0054397583, -0.3256836, 2.1601562, 0.4650879, 1.4257812, 2.3847656, 0.49804688, -1.0488281, 1.9863281, -1.2148438, -1.5673828, -0.92871094, -2.6054688, 1.9492188, 3.1953125, -0.2890625, 1.6083984, 1.4511719, -2.921875, 1.3759766, -0.05557251, 1.1152344, 0.14538574, -0.9291992, 2.1972656, -2.3085938, 1.8037109, 0.7841797, 0.9946289, 0.7270508, -2.4023438, 0.9995117, 3.3222656, -0.24853516, -2.7128906, 2.6347656, 1.1845703, -0.19970703, 0.15393066, -0.56591797, 0.87841797, -0.20947266, 0.671875, 1.3710938, 0.035858154, 1.8320312, 2.1347656, 1.0068359, -1.8398438, -1.2265625, -0.13220215, -0.050476074, -1.1875, -0.61572266, 0.11047363, 1.875, -1.9570312, -1.6542969, 0.71484375, -1.8496094, -1.140625, 0.05001831, 0.5859375, 1.4394531, 0.26391602, -2.1464844, 0.72558594, 0.7558594, -0.5800781, 0.56152344, 1.1240234, 0.1932373, -0.5341797, -1.1025391, 0.10809326, -1.8320312, -1.6308594, 1.0429688, -1.9404297, -3.0761719, 0.92333984, -1.9394531, -2.7851562, 0.73046875, -0.9980469, 3.6699219, -0.72265625, -0.5317383, -2.1054688, -0.21557617, -1.5292969, -0.2763672, 0.9033203, 2.3574219, -0.14819336, -2.0371094, 0.57666016, 0.15478516, 0.35180664, 1.7294922, -0.8857422, 0.2841797, 2.4082031, -0.6538086, -1.171875, 0.046417236, 0.035217285, -1.9990234, 1.9638672, -3.6738281, -1.1640625, -0.08453369, 1.1787109, -0.02772522, 0.73095703, -2.6914062, -1.8007812, 0.94677734, -1.2412109, 1.9931641, -2.2871094, 1.8291016, -0.42700195, 0.06341553, 1.8242188, -2.5234375, -2.3769531, 0.796875, 0.7910156, -1.3193359, -1.46875, -3.4160156, 0.5234375, -0.6357422, -0.34545898, -1.3046875, -0.58251953, -1.2666016, 0.6201172, 0.6040039, -1.7060547, -0.40014648, 1.6064453, -0.08428955, -1.6289062, -0.61572266, 0.45703125, -1.3662109, 0.2529297, -1.0292969, 0.62890625, -0.53808594, -1.5185547, 0.8745117, 0.4152832, 0.22717285, -0.69091797, -2.4179688, 0.54833984, 1.0791016, -1.3320312, 1.71875, -2.1171875, -0.017425537, -2.4453125, -1.3125, 2.7617188, 0.0021629333, 2.65625, 0.114990234, 0.039764404, 1.0400391, 0.91552734, -1.7011719, -0.16064453, 0.93408203, 3.8867188, -2.609375, -0.21105957, -0.37597656, -0.3881836, -3, -0.24633789, 2.4960938, -0.04989624, 2.3535156, 0.57958984, 2.2050781, -1.3701172, 1.2861328, 1.921875, 0.004966736, -0.20239258, 0.5942383, 1.3525391, -0.9682617, -1.2294922, 2.0664062, 0.8466797, 1.6787109, 2.1777344, 0.20983887, -0.79296875, -1.0566406, -0.26953125, -0.012908936, 1.2119141, 0.0031967163, 1.6855469, 0.28808594, 0.07208252, -0.25463867, -0.07348633, 1.6777344, -2.6621094, -0.43676758, 1.1806641, 0.19458008, 0.31713867, 0.72265625, -0.7246094, -0.6411133, 0.09643555, -0.53759766, 1.1191406, 0.41259766, 1.6191406, -0.27392578, 1.9082031, -1.2246094, 1.6181641, -0.77490234, 0.6484375, -0.5229492, 1.5390625, -2.6640625, -1.3144531, -1.1152344, -3.6953125, 0.20043945, 2.0917969, -0.01965332, -2.6347656, 2.0390625, 1.0742188, -0.32543945, 2.0136719, -1.3046875, -0.46411133, -0.5961914, -0.9716797, -0.27197266, 0.35888672, 2.5585938, -1.5761719, -3.6074219, 0.8095703, -1.9570312, -1.2480469, 0.4350586, -0.09649658, -3.2304688, -1.3212891, -1.2753906, 0.9863281, -0.9946289, 3.5371094, -0.4169922, -0.0836792, 2.2949219, -2.4570312, 0.2019043, -1.4667969, -5.3398438, 0.5957031, -3.8789062, 0.6196289, 2.0859375, 1.2802734, 0.40112305, 1.7382812, 1.2470703, -2.1640625, -0.91748047, -0.19433594, 0.8691406, -3.2285156, -1.6181641, 2.0488281, 1.3623047, -1.2939453, -3.0058594, -0.95703125, -0.16467285, -0.35180664, 0.8261719, -3.2734375, -0.57128906, 0.46044922, 0.76416016, -1.6816406, -1.0380859, 1.0634766, 0.29492188, -0.60546875, -3.1621094, 2.1816406, 0.76220703, 1.5751953, 0.036193848, 4.4179688, 1.5107422, -1.2617188, 0.9824219, 0.25512695, 3.1738281, -0.34838867, -2.4609375, -1.34375, 1.0957031, 1.0644531, -1.0488281, -1.7392578, -1.796875, -1.2402344, 0.56396484, 0.4321289, 1.6611328, 0.3059082, 0.7109375, -1.4277344, 1.9150391, 0.71240234, -1.1533203, -0.8173828, -1.1152344, 0.39379883, -1.4316406, 1.3300781, -2.9726562, 1.1474609, -0.88916016, -0.057006836, -2.9082031, 0.16259766, 0.25170898, -0.7182617, 0.28393555, -1.4599609, -0.4716797, 0.8359375, 0.37402344, -0.4724121, -0.8334961, -1.5166016, -0.5019531, 1.7285156, 1.5058594, 0.15405273, -0.016616821, 0.26220703, -0.0413208, -0.06903076, 0.25341797, 0.97802734, 0.61279297, -1.7109375, -1.4316406, -1.4316406, 3.3476562, 0.2133789, 0.5551758, -0.030014038, -0.4765625, -2.234375, 2.0800781, 3.3710938, 2.2460938, -0.4489746, 1.21875, 2.4335938, 3.1230469, 1.1962891, 0.19958496, 0.5522461, -0.9736328, -0.9003906, 0.76660156, 0.8691406, -1.1669922, -1.0439453, 1.4648438, 2.6972656, 0.95947266, 2.453125, 0.89501953, -1.9023438, 0.30566406, 0.48461914, -0.578125, -1.7558594, -0.3466797, 0.28564453, 3.4667969, 0.3918457, -1.8740234, 0.96972656, 2.8984375, -0.4038086, 2.2539062, 0.48413086, 0.2010498, 0.3857422, -2.0527344, -1.0527344, -1.4355469, -0.76220703, 0.8823242, -2.8984375, 2.1972656, -0.31420898, 1.625, 0.7192383, 0.40112305, -0.35986328, 0.007801056, -0.8779297, -0.081970215, -0.76123047, 0.06713867, -1.6142578, 0.50439453, 0.73095703, 1.3378906, 0.86376953, -1.1113281, -0.6220703, -1.2421875, -1.5458984, 0.44848633, 1.6259766, -0.79785156, -1.6347656, 4.171875, -0.10290527, -0.14001465, -1.4814453, -0.7675781, -0.23913574, 3.8710938, 1.3828125, 1.78125, -0.37646484, -0.30371094, -1.1044922, -4.125, -0.46264648, -0.44018555, -0.22192383, 1.0664062, -2.9648438, -1.265625, 2.2578125, -2.3125, -0.91064453, -2.078125, 0.07623291, -1.9326172, 0.02961731, -0.8378906, -1.5322266, -0.8569336, 0.7548828, -0.08660889, 0.21948242, 0.25024414, -1.9853516, -2.4101562, 1.0117188, -0.09069824, -1.6650391, 1.8457031, -1.1640625, -0.27172852, 1.6738281, 0.72558594, -3.0449219, 1.5244141, -3.2148438, -0.8535156, 1.6826172, -2.3398438, 1.7773438, 1.4599609, -1.1748047, 2.1484375, 0.86621094, 1.8740234, -0.010498047, -1.8955078, 1.7490234, 1.0283203, 0.1307373, -2.0839844, 1.4746094, -0.9536133, 0.62158203, 1.9404297, -0.91064453, -1.5205078, -0.7861328, -1.0820312, -0.08679199, -1.4570312, 0.08898926, 1.2470703, 0.37670898, 0.1829834, -1.4042969, 0.5419922, 1.0361328, 0.60058594, 0.72265625, 1.2939453, -1.1328125, 2.7617188, 1.9003906, -0.1821289, -0.84814453, -0.24609375, 0.88964844, 3.6699219, -1.5332031, 0.78271484, -0.7817383, -1.4248047, 0.2722168, -0.6948242, 0.88916016, -0.01852417, 2.8632812, 0.026672363, -0.04989624, 2.40625, -1.2744141, 0.90722656, -0.47436523, 0.02381897, -0.79296875, 1.5576172, 2.1640625, -3.2714844, -0.36254883, -1.2060547, 3.2207031, -0.29418945, -1.4824219, 0.5131836, -1.7470703, 0.06286621, -0.25512695, -1.0332031, -3.4980469, 0.82373047, 0.82714844, -1.6181641, 0.8520508, 1.5615234, -0.10418701, 0.7788086, -0.50878906, 0.71728516, -1.8691406, -0.5073242, -1.5322266, -0.020141602, 0.40893555, -1.4023438, -0.44091797, 3.0449219, 0.6982422, -1.0664062, 0.6923828, -0.34545898, 1.9921875, 1.2285156, 0.6635742, 3.2558594, 0.09918213, 2.2070312, 1.0507812, 2.7304688, 1.7900391, -1.0634766, 0.625, 1.8642578, -0.0058174133, 1.3857422, 0.859375, -0.7036133, -1.2470703, -0.35253906, 0.52441406, 1.8115234, 0.86572266, -3.2480469, -0.017700195, -1.3535156, 0.86035156, -3.25, 0.4765625, -1.9248047, 0.24475098, 2.1796875, 0.30688477, 1.3632812, 0.9140625, -2.0429688, 0.6166992, 0.29248047, 2.4082031, -0.30371094, 0.06817627, 0.57421875, -2.4804688, 0.6279297, 0.70703125, 0.30615234, 1.2861328, 1.6416016, 0.22143555, -0.27661133, 2.0273438, 0.8769531, -3.15625, 0.3256836, 0.44213867, 2.3378906, 1.34375, -0.7895508, 2.0390625, 0.39257812, -1.5390625, -4.515625, 3.1230469, 0.23425293, -0.5449219, -1.2832031, -2.6738281, 1.4072266, -2.1347656, -1.796875, -2.34375, 0.13647461, 1.4775391, 0.14453125, -0.6503906, 0.96728516, -2.2304688, 2.3027344, 1.7275391, -0.6748047, 1.5703125, 2.9375, 1.6884766, 0.40551758, 1.2392578, 0.26049805, 0.57177734, -1.2597656, 2.7382812, 0.06561279, -0.47680664, -0.041229248, 2.7128906, 0.9272461, 0.5527344, 0.42529297, 1.2099609, -0.1739502, 2.1953125, 0.12432861, 0.19677734, -2.0371094, -0.036254883, -1.6826172, 0.1854248, -1.3789062, -0.5053711, 3.3007812, 1.5009766, -1.0341797, 1.3955078, 1.5507812, -1.7167969, 3.4355469, 0.087890625, -0.9589844, -0.45825195, 0.40478516, 0.07714844, -2.5546875, -1.0693359, -1.1308594, -0.42700195, -1.4794922, -0.5576172, -1.6210938, -0.014228821, -0.9951172, 0.2680664, 0.609375, -2.2519531, 1.0634766, 0.037322998, -0.70947266, 0.55126953, 3.1582031, -0.93066406, 1.9833984, -1.7421875, -0.2685547, -0.3203125, -1.0351562, -1.1669922, -0.10821533, 3.4980469, 0.7915039, 1.8105469, -1.8955078, -2.7441406, -1.0146484, -2.1796875, 2.0078125, -0.7055664, -0.20666504, 1.2636719, 1.4453125, 2.1484375, -0.35424805, -0.119140625, 0.19921875, -0.3955078, 1.7441406, -0.515625, 1.8251953, -0.64160156, 0.52197266, 0.84277344, 3.390625, 1.7919922, 0.095458984, -0.9819336, -0.20715332, -1.4072266, -2.0488281, 0.63183594, -0.5229492, 0.609375, 1, 0.515625, 2.2226562, 0.45361328, -1.4296875, 0.19458008, -0.14294434]}, "B00D3P0QAI": {"id": "B00D3P0QAI", "original": "Brand: Thermo Tiki\nName: Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel\nDescription: \nFeatures: \n", "embedding": [-0.9790039, 0.40551758, 2.7578125, -3.2929688, 1.0175781, 0.19885254, 0.46411133, -3.1132812, 2.2226562, 1.5908203, 1.0908203, 1.1318359, -0.6123047, -2.6132812, 2.1464844, -0.060455322, 1.2099609, 1.1259766, 0.94628906, 0.3515625, 2.1894531, -0.65478516, -0.25219727, -2.4628906, 1.7197266, 0.08514404, 6.6289062, -2.8261719, -0.17333984, -0.83447266, -0.04321289, 1.5136719, 0.91552734, 3.328125, -1.5458984, -1.5634766, -0.3227539, 0.83154297, -3.3886719, 0.7583008, -1.4511719, -1.0439453, -0.49975586, 1.8378906, -2.3886719, -1.0683594, 0.21411133, 0.9790039, -1.7363281, -0.51660156, 0.46362305, 0.27197266, -0.46899414, 0.43579102, -1.6035156, 0.3869629, -2.1289062, -1.9091797, 1.1318359, 1.0634766, 0.022613525, -1.8955078, -1.7431641, 1.4697266, -0.39868164, 1.8623047, 0.00048828125, -0.79541016, -0.7709961, 1.0390625, 1.4238281, 0.23901367, -1.2861328, 0.65478516, 0.9272461, -2.3046875, -4.203125, -0.22998047, 3.1132812, -1.6621094, 1.6748047, 0.8144531, 1.4726562, 0.13024902, -0.41333008, -0.6933594, 0.06512451, -0.4099121, -0.15075684, 1.7441406, -2.0644531, 0.86621094, 0.7709961, -4.3359375, -0.7060547, -0.27612305, 0.48901367, -0.0074882507, -0.8022461, 0.35009766, 1.6748047, 0.9838867, 1.3183594, -1.5703125, -1.5654297, -0.8154297, 1.9892578, 0.2529297, -1.2421875, 0.9980469, -2.8066406, -1.6953125, 1.4921875, 0.2434082, -0.49389648, 1.3759766, 1.0595703, 1.7216797, 2.7304688, 1.5439453, 4.453125, -1.2958984, 0.5161133, -1.0712891, 0.69433594, 0.4897461, -0.41479492, -0.5439453, 3.5078125, -2.4003906, 2.8046875, 1.3867188, 0.79003906, -0.35351562, -0.8623047, -2.109375, -2.3808594, -2.1523438, -2.546875, -1.9160156, -0.78515625, 0.49121094, 2.1503906, 0.22180176, -3.8183594, -0.5229492, -0.12890625, 2.5839844, -0.8852539, -1.8369141, 0.45922852, -0.4182129, -0.113708496, -1.3671875, -0.15197754, 0.85546875, -0.77490234, -1.0439453, 2.8046875, 1.2470703, 1.1767578, 0.7705078, -1.0625, 0.81640625, -0.8232422, -0.87353516, 0.7480469, 0.06854248, 0.53759766, 1.6347656, -0.37573242, -1.7607422, -0.20043945, -0.91308594, 0.34204102, -0.68408203, -0.064697266, 1.40625, 0.20471191, 1.0654297, 0.082214355, -0.3166504, 0.036132812, 0.5395508, 0.22924805, -1.9140625, -1.625, -2.9628906, 0.4008789, -0.43554688, 1.0146484, 1.7158203, -0.74316406, -0.3190918, -1.1416016, -2.2617188, -2.5820312, -1.4277344, 2.375, 0.15905762, -1.8251953, -0.88183594, -1.8339844, -0.43920898, -2.1757812, -3.6679688, -0.47851562, 0.34814453, 1.9023438, 0.92041016, 2.2402344, 0.9667969, 1.2929688, 0.38476562, 0.48632812, -2.4296875, 1.6083984, 0.4038086, 1.2470703, 2.359375, 0.94970703, 1.1083984, -1.9833984, 0.44458008, -0.37573242, 1.8251953, 0.22607422, 0.83496094, -1.9589844, -1.1152344, 2.75, 1.4746094, -0.76953125, 1.1337891, -0.43823242, 2.515625, 2.5273438, -0.5283203, -0.7314453, 0.44677734, 1.1972656, -1.0517578, 1.4072266, 0.10656738, -0.33789062, 0.37670898, -0.16271973, 0.42529297, 1.8574219, 1.1796875, -0.39135742, 0.38623047, 0.9951172, 0.3227539, -0.4025879, 1.4931641, 0.45458984, 1.0244141, 0.54296875, -1.6220703, 2.796875, 1.0263672, -1.2578125, 0.7290039, -0.84765625, -0.91015625, 3.7988281, 0.44384766, -3.2167969, -0.18676758, 0.3708496, 1.1416016, 1.2607422, 0.7817383, 2.3476562, 1.9208984, -1.6435547, 1.6123047, -0.48364258, 1.65625, 0.3630371, 0.7373047, 1.0527344, -0.7192383, -0.43041992, -1.2207031, -0.036224365, 0.8071289, -1.7060547, 0.5473633, 5.3789062, -0.953125, -0.8701172, 3.4453125, -1.3144531, 0.7548828, 1.0390625, -0.41430664, -1.4824219, -2.2109375, 1.3720703, 1.0400391, -0.75927734, 0.5253906, -1.4824219, -0.8857422, 1.2910156, -0.98095703, -0.48364258, -0.16137695, 0.2265625, -2.6621094, -1.8789062, -0.6689453, -2.5625, -1.0117188, 1.6748047, -2.7148438, 1.4160156, 0.3334961, -0.26538086, 0.42163086, 1.2910156, -0.01247406, 0.99658203, 1.0742188, -0.13098145, 1.8125, 0.28979492, -1.7109375, -1.1777344, -0.16674805, 1.3652344, -2.1640625, -2.0195312, 0.09588623, -0.9199219, -0.32006836, 1.7666016, -1.7197266, -0.50439453, 2.1582031, -0.9375, 0.06341553, -0.21716309, -3.1601562, 0.15893555, 1.2158203, 0.39697266, 0.11462402, 0.029251099, -0.3088379, -0.9145508, -6.359375, -2.1660156, 2.1269531, -1.9746094, 0.21276855, -2.8945312, 1.96875, 0.43652344, 0.5024414, 0.34375, -2.5722656, -0.6801758, -1.7197266, -0.6557617, -3.0683594, 2, -0.4182129, 1.5791016, 0.4350586, 1.9160156, -2.3417969, -2.203125, 0.24865723, -0.25317383, 6.015625, 2.1660156, 2.9394531, -0.60009766, -0.32104492, 0.54541016, -1.4931641, -1.0322266, -0.037506104, -1.4863281, -0.74609375, -1.4628906, -1.4052734, 1.1591797, -2.2207031, -1.2089844, -0.079956055, -0.5341797, -0.51123047, 1.6416016, -1.1435547, -0.4645996, -1.4716797, -1.9560547, 0.7036133, 1.3789062, -1.9443359, 0.41088867, -1.4482422, 0.1661377, -0.43286133, 2.4570312, -0.11932373, 2.3222656, 1.7509766, -0.50097656, 2.4746094, 0.6015625, -3.8339844, 1.5625, 1.8818359, -0.58496094, 0.39672852, -2.6367188, -1.7089844, -1.4501953, -0.6591797, 3.3808594, 1.1796875, 1.9414062, -0.5185547, 0.63623047, 0.04220581, -0.72558594, -0.49194336, 0.39086914, -0.015716553, 1.3896484, -1.5078125, -0.85791016, 1.0810547, 1.3896484, -3.3203125, -1.5908203, 0.8310547, 0.016098022, 1.9296875, -0.83740234, -2.375, 0.02998352, 1.3740234, 2.234375, -0.3203125, -0.42822266, -0.57421875, -1.4277344, 0.43725586, 2.3203125, 1.3798828, 1.9160156, 0.125, 0.45922852, -0.5083008, 0.74609375, -1.8046875, 0.3190918, 0.43823242, 1.4248047, -0.04296875, 1.4443359, -0.9770508, -0.13012695, 0.7792969, 0.1529541, -1.5, -1.8535156, 0.41918945, 3.5117188, -0.9291992, -1.4443359, -0.37646484, -0.9980469, 0.12145996, -0.8208008, 0.8198242, -1.9414062, -0.7729492, 0.7011719, -1.2744141, -0.22192383, -1.0703125, 2.1015625, 0.33325195, -2.671875, 0.16064453, 2.5019531, 0.103271484, -1.0234375, -0.39208984, -1.9560547, -1.4472656, 1.4101562, -1.3828125, 0.17346191, 0.23815918, -1.3291016, 0.22912598, 2.1621094, -0.41918945, 0.09698486, 1.1376953, -0.97558594, 2.203125, -0.14465332, 1.3935547, 0.96484375, -3.9082031, -0.29248047, -3.6582031, -2.5527344, 1.2734375, -2.1972656, -1.1542969, 2.0898438, -0.24707031, 3.7070312, 0.018722534, 4.0664062, -2.3632812, -2.03125, 2.3457031, -0.3942871, -0.6411133, -2.25, -4.0703125, 1.2041016, -1.3798828, 0.0032196045, 2.1601562, -1.0224609, 0.18823242, 1.1796875, -0.09222412, -1.8896484, -1.6708984, 0.45654297, 0.6845703, -3.2421875, 0.006134033, 1.0380859, -0.42114258, -2.4121094, -1.7558594, 1.2314453, 0.3232422, 0.81591797, 0.99853516, 0.13989258, -1.2431641, -1.3027344, 0.32006836, -0.30541992, -0.4104004, -0.64746094, -0.08618164, -0.9863281, -1.0693359, 2.9726562, 0.9169922, 0.16369629, 0.52246094, 4.265625, 0.5473633, -0.3232422, -0.72021484, -0.32055664, 1.0712891, -0.40795898, -3.1660156, -0.7114258, -2.0761719, 0.2253418, 0.5620117, 1.8583984, 0.68359375, -0.7158203, -0.19958496, 0.9321289, -0.24694824, 2.0039062, 3.0253906, -3.1367188, 1.09375, -0.040130615, -2.3457031, -1.2109375, -0.35180664, 0.19921875, -0.8442383, 2.1367188, -0.57714844, -0.11090088, -1.4902344, -1.9892578, -0.8286133, -0.1607666, 2.3632812, 2.0371094, 2.0371094, -2.2832031, -1.296875, -1.9833984, -0.7661133, 0.6611328, 0.86621094, -0.39990234, -0.52441406, 0.9013672, 2.0878906, -2.6621094, 0.63671875, 1.0683594, -1.2529297, 0.56884766, -1.2841797, -0.55566406, -0.14526367, -2.5039062, 0.81396484, -0.3671875, 2.4960938, -1.3007812, -0.9897461, -1.0800781, -0.51123047, -1.0302734, 0.4477539, -1.9248047, 1.0058594, 3.0214844, -0.17358398, 0.26660156, -1.5527344, 1.7246094, 0.2619629, 2.2675781, -1.0693359, -0.02998352, 0.5131836, -0.6123047, -0.34521484, -1.3330078, 2.7773438, 2.0410156, 0.42773438, 3.0566406, 0.98095703, -1.9472656, 1.3759766, 0.9013672, -1.125, 1.0175781, -2.4960938, -1.7128906, 1.6171875, -0.7451172, -3.6992188, -0.7626953, 3.203125, -1.0791016, 1.4365234, -0.29492188, -1.7021484, -1.7597656, -3.2636719, -1.9316406, -1.65625, -0.44726562, 0.99609375, -0.0947876, 0.045562744, -2.7734375, 1.4902344, 1.7041016, -1.0058594, 0.9482422, 0.6591797, -1.2373047, -1.7402344, 0.68847656, -0.35131836, -0.33911133, -0.5004883, 2.3691406, 0.052215576, -0.59375, 1.1582031, -0.08502197, -2.2246094, 0.36816406, -2.3476562, 2.578125, -1.6699219, -1.0283203, 1.4863281, 0.114746094, 1.1396484, -1.6816406, 0.15270996, -1.2207031, 0.91308594, 0.18432617, -1, -0.05645752, 0.21166992, -2.078125, -2.0039062, -1.1318359, -0.48779297, 0.5625, 0.23486328, -0.6845703, -1.3554688, -0.0013113022, -0.5751953, 0.41503906, 1.0498047, 0.4260254, -1.5546875, 1.0839844, 0.41552734, -0.3149414, 1.2626953, 0.390625, -1.6464844, -0.061553955, -0.61328125, -1.4863281, -3.8261719, 1.2490234, -1.6123047, 2.3964844, 0.9501953, -0.36914062, 1.0625, 2.984375, 1.5058594, -0.515625, 0.4584961, 0.10076904, 0.46777344, 2.6464844, -1.4375, 1.5039062, -0.05166626, -1.8671875, -0.4802246, -0.32421875, 0.7675781, 0.15515137, 0.5395508, 1.1357422, 0.42895508, 0.35791016, -0.23278809, 0.99316406, 1.5185547, 3.2246094, 0.61572266, -0.93408203, -0.55566406, -2.0898438, -1.8125, -0.41064453, -1.2753906, -0.19921875, -1.2998047, 0.93359375, 1.0390625, -0.05053711, 0.7919922, 2.53125, 1.7949219, -3.3476562, 0.6279297, -0.9824219, 2.6367188, 0.6333008, -0.90283203, -4.7890625, -3.9648438, -1.7802734, 2.2128906, -0.27856445, -1.6103516, -0.5576172, -1.8115234, 0.48583984, -0.6459961, 2.4707031, 1.0595703, 2.1113281, -2.1210938, 2.3808594, 1.5878906, -1.3544922, -0.8310547, 0.5571289, 3.1582031, -0.7416992, 2.5136719, 0.12597656, -1.6552734, 1.2958984, 0.2692871, 0.08685303, 0.109191895, -1.1064453, 1.6914062, -2.5996094, -1.0908203, -0.07922363, -1.7666016, -2.4882812, 0.21557617, 2.5, 1.2373047, 0.04901123, 0.75878906, 0.23120117, 0.4008789, 1.7636719, -0.13830566, 0.23278809, 0.06774902, 0.34448242, 0.0014219284, 2.2695312, -0.07720947, 2.046875, -0.016189575, 1.6035156, -0.063964844, 2.0429688, -1.6220703, 2.2480469, 3.0878906, 2.6171875, 2.7226562, 2.5195312, 0.8442383, 1.0996094, 2.9921875, 1.0839844, -2.234375, 1.2255859, 1.1972656, 3.1621094, 0.16223145, -1.2216797, -0.47509766, 2.0292969, 0.16503906, -1.5615234, 0.61083984, -0.041107178, 0.8588867, 0.44506836, 0.003206253, 0.39770508, -1.3505859, 1.8896484, -0.64990234, 2.0742188, 1.5341797, -1.6103516, 0.67578125, -1.0527344, 1.6396484, 0.4897461, -2.140625, 0.5830078, -3.6621094, 1.3115234, 1.4863281, -0.5629883, -2.0253906, 0.25073242, 1.7988281, 0.59277344, 1.1425781, -1.1328125, 2.3886719, 0.80322266, -0.15136719, 0.9638672, -0.53759766, -0.033843994, 0.23181152, 0.12768555, -0.5654297, -0.4729004, -0.22277832, 0.8979492, -3.1191406, 2.6601562, -0.06768799, -0.81396484, 0.7919922, 1.3525391, 1.3955078, 0.066467285, -0.039276123, -0.35595703, 0.9057617, 1.4189453, -1.4716797, 0.63134766, 0.3071289, 0.7236328, 2.7304688, -1.2490234, 0.030227661, 0.7626953, -2.4082031, 1.0341797, 0.04107666, 1.3359375, -0.29785156, 1.390625, -1.7675781, 4.4492188, 0.16625977, 0.3647461, 0.20239258, 1.7666016, 1.7402344, -0.48339844, 0.6879883, -1.7255859, 1.0634766, 1.0527344, -1.4248047, 0.75683594, -1.5625, 0.2993164, 0.6069336, 0.88720703, -0.63720703, -2.7695312, 0.91845703, 0.035369873, -1.3740234, 1.1982422, 2.7910156, -0.42333984, -0.03463745, -2.0058594, -0.81933594, -0.67041016, 1.2900391, 2.3828125, 0.1182251, -1.3076172, 0.23669434, 1.6865234, 1.2021484, -1.0214844, -0.083862305, 0.31567383, 0.06890869, -0.4453125, 2.4628906, -0.15393066, -0.9633789, 0.0736084, 0.22753906, -1.1210938, 0.74658203, -0.56103516, -0.48120117, 0.07824707, -1.4873047, -0.6923828, 1.9208984, -1.5693359, -0.5864258, 2.6855469, -0.34692383, 1.4560547, -1.8017578, -4.3046875, -0.921875, -0.16931152, 2.3632812, 0.20654297, -0.68066406, -0.61328125, 0.91015625, 3.3203125, -0.76904297, -0.3635254, -0.4333496, -2.4921875, 0.90771484, -0.5986328, 2.6054688, -0.25805664, -0.32104492, 0.3388672, 1.9140625, 0.119628906, 0.32006836, 2.1445312, 0.7504883, 1.5371094, -2.0175781, -2.3027344, -1.2949219, 1.8496094, 0.51171875, 0.17871094, 0.005191803, 0.23754883, -0.81396484, -4.0429688, -2.0957031]}, "B00ED9WMNC": {"id": "B00ED9WMNC", "original": "Brand: Camco\nName: Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black)\nDescription: \nFeatures: Replacement cap for new style RV propane tank covers\nFunctional design for easy access to both propane tanks and changeover regulator\nIncludes attachment hardware\nMade of heavy duty, UV stabilized polypropylene\nBlack\n", "embedding": [1.4326172, 0.24450684, 3.2207031, -1.0224609, -0.9267578, -2.0410156, 0.7324219, -1.7568359, 3.0527344, 0.5810547, 0.5996094, -0.46875, 1.2148438, -4.1679688, 2.2070312, -1.0869141, 0.7260742, 1.4492188, 1.5273438, -1.1210938, 1.625, -1.7275391, -0.3088379, -1.1464844, 0.24230957, -0.1105957, 4.2109375, -2.0195312, -1.2802734, 0.8251953, -0.3083496, -0.45458984, -0.33911133, 2.0859375, -0.060577393, -0.63427734, 0.6621094, -0.6723633, -2.7363281, 1.1484375, -2.5976562, 1.0888672, 1.953125, -0.22741699, -0.0069770813, -1.5400391, 0.059143066, -2.0371094, -0.1439209, -2.7363281, -1.3164062, 2.34375, 1.34375, 0.15148926, -0.2709961, 1.3867188, -1.0507812, -0.9506836, 0.23535156, 1.9824219, -1.6064453, -0.6791992, -2.6386719, 1.9355469, -1.9169922, 2.1679688, -0.5605469, -1.3935547, -0.0713501, 2.0625, 0.7583008, 1.5136719, 0.5522461, -1.6738281, 0.13024902, -1.0117188, -2.8671875, -0.2607422, -0.091918945, -1.5908203, -0.61279297, 2.9667969, -1.9726562, -3.4902344, 0.022735596, -1.7275391, -0.25854492, 2.0039062, 1.0429688, -0.3347168, -2.0410156, 0.4934082, -2.8496094, -3.2441406, -1.8037109, 0.2479248, 0.63134766, 1.1171875, 3.2714844, 1.7646484, -1.8378906, 0.5444336, -0.15429688, 0.55615234, -2.6484375, -0.5546875, 1.2148438, -2.1132812, -1.4589844, 0.3005371, -1.0517578, -1.5439453, 1.1738281, -2.03125, 0.18164062, 1.3242188, -0.5126953, -1.2519531, -0.13427734, -0.78027344, 3.9082031, -1.1337891, 1.4990234, -1.5068359, 1.8730469, 1.2431641, -1.5361328, 1.6035156, 2.5214844, 0.6870117, 1.9267578, 1.4443359, 1.2441406, -0.4140625, -0.08807373, -0.43017578, -2.4414062, -2.3632812, -0.55908203, 0.56884766, -3.1054688, -0.0025520325, 1.3339844, 0.35766602, -4.7226562, 0.0025119781, -2.0273438, 2.3378906, -1.0605469, -2.5117188, 1.6279297, -3.3085938, -1.0644531, -0.35205078, 1.3564453, 1.4589844, 0.8847656, -3.2480469, 0.99365234, 2.2441406, 2.3496094, -1.4384766, 1.2333984, 2.2265625, 1.0097656, -1.6533203, -0.35888672, -1.78125, -1.75, 2.7382812, -0.94970703, -1.9121094, 0.5019531, 0.6694336, -1.9121094, 0.28027344, 2.0976562, 2.1796875, 1.0693359, 1.8291016, -2.8222656, 0.68896484, -1.078125, -1.2539062, 0.8261719, -1.625, -1.5341797, -1.2919922, -0.68603516, 0.22607422, -1.2734375, 1.53125, -1.4628906, -0.4946289, -1.7207031, -5.0117188, -0.3461914, -0.49267578, 1.2675781, 1.7402344, -1.5322266, -1.4970703, -0.80029297, 1.4560547, -2.1699219, -0.80908203, 1.8730469, 1.1855469, 2.0507812, 0.8173828, 1.1601562, -0.6689453, 0.9819336, -0.8774414, -0.82128906, -0.78222656, -0.34179688, -0.14147949, 1.2548828, 1.6494141, 2.1347656, 2.0195312, 1.5117188, 0.21142578, 1.2382812, 2.1386719, 1.2675781, 1.2294922, -0.4477539, -1.8505859, 0.640625, 1.3994141, -3.9414062, -0.43579102, -0.7949219, 1.6474609, 0.63427734, -2.3984375, 0.3947754, -2.5058594, 0.88378906, -2.7324219, -1.0878906, -1.3408203, 2.9121094, 2.7558594, -0.71240234, 1.7919922, 0.74902344, 0.15710449, 0.8154297, 0.061950684, -0.7998047, 0.1348877, -0.8935547, 2.3828125, 0.7036133, -0.23278809, 0.21142578, -1.9121094, 1.3388672, 2.0332031, -1.9414062, 0.7788086, 0.15002441, 0.61376953, 0.48413086, 0.027770996, -1.6328125, 0.33813477, 0.21264648, 0.7128906, 2.1347656, 0.9902344, 1.3251953, 1.4492188, -0.2770996, 1.515625, 1.4853516, 1.7626953, 0.7602539, 1.2792969, 1.6396484, -3.8378906, 2.3457031, -0.9584961, 1.3378906, -0.5229492, -2.5996094, 1.2568359, 2.0703125, -1.5507812, -1.2236328, 2.3164062, 3.1992188, 1.3935547, 1.3330078, -0.3046875, -1.3916016, 0.87158203, -0.9301758, 0.7290039, -0.61572266, 0.9033203, -0.2154541, 0.0010080338, -1.8876953, -0.14086914, 0.75341797, 0.9472656, 0.38989258, -1.4941406, -0.8618164, 0.85302734, 0.359375, -0.9580078, 3.1074219, -2.2636719, -2.2285156, 0.99365234, 1.75, 2.3652344, -0.22143555, -2.2539062, 1.5605469, -0.32348633, -2.7734375, 0.94628906, 1.3710938, -0.17590332, 0.59716797, -1.28125, 1.3085938, -1.0976562, 0.5214844, 1.3535156, -0.8588867, -0.08099365, 1.0507812, -0.92285156, 1.3964844, -1.5947266, -1.3710938, 4.0664062, 0.22949219, -0.6044922, -0.5, 0.8515625, -0.27783203, -1.4238281, -0.23742676, 3.7441406, -0.68115234, -4.265625, -0.1595459, -0.7216797, -0.7480469, 0.7866211, -0.5786133, 1.3955078, 0.17333984, 1.6552734, 2.0507812, -1.0263672, -0.61083984, 0.67529297, 2.5019531, -2.7929688, 0.9794922, -2.0136719, 0.68603516, -2, 0.73583984, -1.9208984, -2.3417969, 1.1591797, -0.48291016, 3.9960938, 0.16320801, 0.79248047, -0.6586914, -1.4726562, 0.1083374, -2.3652344, -2.3398438, 0.62353516, 1.2431641, -1.4941406, -0.5805664, -3.4453125, -0.8588867, -2.1328125, 0.05154419, -0.9916992, -2.6171875, -1.3613281, -0.8041992, 0.097961426, -0.30126953, 0.81152344, 1.8681641, -0.47607422, -0.6044922, -0.3022461, 0.8955078, -0.44970703, -1.6289062, -1.0703125, 1.5771484, -0.9213867, -0.13842773, 0.55371094, -0.6328125, 2.5390625, -0.16369629, -2.7753906, 0.3251953, 2.5234375, 1.7871094, 1.3828125, -2.1972656, -1.8730469, -1.3486328, 1.5322266, 3.421875, 2.1601562, 2.5136719, 1.6640625, 1.1572266, 1.1943359, -0.99902344, 0.23596191, -0.15307617, 0.3996582, 3.4804688, -0.9448242, -1.4902344, 1.9287109, 1.6591797, -2.3144531, 0.62158203, -0.640625, -2.1796875, 3.1523438, 3.1171875, -4.0273438, 0.18164062, 2.5605469, 2.4785156, 0.37036133, 3.0078125, 0.115356445, -0.2602539, 2.1347656, 1.7207031, -0.077819824, 1.5458984, 1.0498047, -2.4082031, 0.25952148, 1.6660156, -1.0029297, 0.44433594, 1.9306641, 0.057525635, 0.5024414, 1.7910156, -0.5102539, 2.3535156, 1.5234375, -0.1385498, -0.084228516, -3.2480469, 1.4228516, 0.5131836, 0.9609375, -1.1699219, 0.16125488, -1.4560547, -0.020446777, -2.2226562, 2.6015625, -0.24206543, -0.43310547, 1.4707031, -1.078125, -2.0175781, -2.3066406, 4.015625, 0.07928467, 0.08239746, 1.3134766, 1.6357422, -0.7939453, -3.1074219, -0.65283203, -0.5136719, -2.6484375, 2.0917969, 3.2265625, -2.0722656, -0.07141113, -2.7363281, 0.97802734, 1.9707031, -1.6806641, -0.58203125, -1.3603516, 0.7988281, -2.1855469, 0.82373047, 1.3603516, 0.6899414, -1.4775391, -0.93359375, -0.9326172, 2.4042969, -1.0097656, -0.9121094, -0.7392578, -0.20837402, -2.9316406, -0.043670654, 0.20129395, 2.4667969, -0.07702637, 1.265625, -0.38110352, -0.5234375, 0.2565918, 1.4677734, -3.6523438, -0.6772461, 0.5517578, 0.7241211, 2.0039062, 1.8007812, 1.8291016, 3.15625, 0.6435547, -3.5449219, -1.2050781, -1.4101562, 1.5683594, -2.7734375, -3.7363281, -0.58447266, 1.1621094, -1.7138672, -3.0136719, 0.16418457, -1.2832031, -0.082336426, -1.3398438, -0.2685547, -0.08288574, 1.0927734, 0.83203125, 1.2705078, 0.23742676, 0.27026367, -0.17980957, -1.234375, -2.4375, 2.21875, 2.2734375, 1.2519531, -0.5209961, 1.5371094, 1.9824219, -2.1621094, -0.17138672, -2.3554688, -0.07550049, -1.2910156, -2.2382812, 0.68408203, -1.5205078, 0.35839844, -1.1513672, 0.6723633, 1.328125, 0.85302734, 0.8144531, -1.1513672, 0.76464844, 2.7226562, -2.3144531, -1.2714844, 2.6484375, -0.51904297, 1.9335938, 1.2207031, -0.4963379, 1.6943359, -1.625, -1.4355469, -1.7861328, 0.7470703, 1.3867188, 1.5195312, -4.1054688, 0.5698242, 1.1601562, 0.27612305, 1.0732422, -0.828125, -1.1074219, 1.0537109, 0.9482422, 1.7578125, -1.5673828, 0.41918945, 0.47973633, -0.83447266, 0.7631836, -1.6767578, -1.7451172, 0.08673096, -0.9892578, 1.0693359, -0.6176758, 0.93603516, -2.5625, 0.86279297, 0.3815918, 0.035614014, 2.7324219, -2.1445312, 2.0664062, -0.77978516, -1.5791016, -2.1679688, 2.9746094, 1.6220703, -0.2208252, 0.28173828, -1.7373047, -1.7861328, 0.9682617, 1.7861328, 0.012336731, -0.02053833, 0.5336914, -3.3515625, 1.6689453, 0.8198242, -0.45214844, -0.984375, 1.3583984, 2.390625, -0.31176758, 0.6953125, 1.4208984, -0.6323242, 1.2246094, 0.49072266, -0.9692383, -0.890625, 0.76464844, 0.98876953, 4.234375, -1.6621094, -4.2382812, -0.08972168, 2.1210938, 0.22509766, 1.6572266, -0.30200195, -0.5463867, -1.4648438, -3.5136719, -0.8442383, -1.0253906, 1.8779297, 0.1194458, -0.7631836, 1.8554688, 2.1074219, 0.6425781, 2.8183594, -0.5180664, -0.67041016, 1.0214844, 0.9584961, -2.1582031, -3.6679688, -2.1464844, -2.5234375, -0.6191406, 0.34423828, 0.060668945, -0.4104004, 0.18688965, 2.8007812, -2.0761719, -0.6958008, -0.7739258, -0.8491211, -1.7226562, -0.6635742, 4.2148438, 0.3256836, -0.33398438, 0.7602539, 0.7631836, 0.6586914, 1.4648438, 1.4628906, -2.0800781, -0.41918945, 0.9941406, -3.2675781, -4.4414062, -1.2617188, 0.96777344, 0.8383789, 1.1669922, -1.2373047, 1.2568359, 1.2587891, -2.6933594, -0.5473633, -1.7519531, 0.6972656, -0.22766113, 0.4116211, 1.4130859, 0.03704834, -0.9628906, -0.2010498, -1.9873047, -0.19885254, -2.046875, -3.5820312, -2.6542969, 2.3984375, -1.0410156, 0.5229492, -0.96972656, -1.5732422, 1.875, 0.32739258, 2.2578125, -0.95214844, 1.1152344, -1.5644531, -0.57666016, 2.359375, -0.74072266, -1.4882812, 3.7734375, 0.8959961, 2.3339844, 3.3242188, 1.2958984, -2.9277344, 1.6435547, 2.1796875, -0.06323242, -0.49267578, 0.75927734, 1.4072266, 0.28759766, 1.5195312, 1.0097656, -1.3681641, -0.9238281, -1.7939453, -0.5800781, -1.3740234, -1.6933594, -1.3525391, -0.36499023, 1.7431641, 1.3476562, -0.08843994, 0.07086182, 1.4013672, 2.6113281, -1.0957031, 1.2480469, -0.9584961, 1.3564453, 0.2319336, -1.1357422, -0.9194336, -2.1289062, 1.7617188, 0.97216797, 1.6113281, 1.2197266, 1.4228516, -0.18737793, 1.2099609, 1.2578125, 1.2509766, 0.11425781, 0.7993164, -0.7661133, 1.0791016, 2.7539062, 0.11016846, 0.26416016, 0.08337402, -0.17944336, 0.15576172, -0.5649414, 3.8046875, -4.4296875, 0.14782715, 0.66748047, -0.81103516, -1.3789062, 0.16821289, -0.18664551, -1.3076172, 0.4309082, -0.038970947, 0.34277344, -3.65625, 1.6113281, -0.92041016, -0.9042969, -0.39819336, -0.5805664, -2.7265625, -0.08807373, 1.8476562, -1.0595703, -0.4350586, -1.3115234, -0.8886719, -1.4814453, 0.51123047, -3.3515625, 1.2900391, -2.0625, 0.71777344, 0.6904297, 0.52001953, -0.24108887, -0.043273926, 3.7441406, 2.6289062, 3.9902344, 0.67041016, 3.0957031, 0.6147461, 2.5, 1.7158203, -0.4675293, -0.34594727, 0.7988281, 1.1855469, 1.6992188, -3.3828125, -0.36914062, 0.7089844, -0.50878906, -1.4541016, 0.14916992, 0.40161133, -2.4179688, -1.5742188, -0.91796875, -0.19140625, 0.5107422, 1.0488281, -3.5097656, -1.1328125, -0.4729004, -2.2363281, 2.6367188, -1.0068359, -1.5244141, 0.06402588, 0.017196655, 1.5302734, -0.08355713, -0.5024414, -2.1875, -1.8330078, 0.4921875, 0.7158203, 1.0224609, 0.59716797, 0.07647705, -0.099609375, -0.79833984, 0.8300781, -0.671875, -1.1660156, 1.4980469, -0.6723633, 1.8388672, 2.015625, -1.640625, 0.7729492, 1.4804688, -1.2675781, -3.3867188, 0.08758545, 1.2480469, -0.15112305, 1.1171875, -3.0625, 0.25854492, -0.9707031, 2.0429688, -2.78125, 0.14196777, 0.20739746, -2.4960938, 0.25195312, 1.4667969, -1.3408203, 5, 1.0175781, -0.6582031, 0.5332031, -0.16088867, 0.8955078, 0.94628906, 1.7958984, 0.20251465, 0.2536621, -1.2568359, 2.6542969, 2.5644531, 0.6386719, 1.1298828, 1.6464844, 1.1494141, 0.98779297, 0.28759766, -2.1503906, 2.2734375, 1.2333984, 0.26904297, -0.6582031, -2.6152344, 1.6914062, -0.3527832, 1.4472656, 0.9301758, -0.1427002, -0.8232422, 2.8007812, -2.2617188, -0.21936035, 0.27978516, -1.1757812, 0.9506836, 0.0814209, -1.6884766, -2.0976562, -1.2011719, 1.2373047, -1.4248047, -0.005264282, -0.39624023, 2.2128906, -0.082336426, -1.2763672, -1.2871094, 0.049957275, -0.6713867, -0.7133789, 0.7128906, -0.64160156, -0.9580078, 0.7080078, -0.57373047, -0.28320312, -1.9189453, 1.0888672, -1.2607422, -0.9716797, -0.36816406, -0.0034885406, 0.79003906, 0.5649414, 0.77685547, 1.5166016, 0.30541992, 0.59228516, 2.5996094, -2.8574219, -0.13830566, -2.6835938, 3.1386719, 2.4433594, -0.8881836, 0.6040039, 1.8388672, 2.9179688, -2.3476562, -1.4638672, -1.4472656, -0.86035156, 0.32617188, -2.8300781, 0.4675293, -0.70458984, -0.7236328, 1.5029297, 3.7734375, 1.5576172, 0.67871094, 1.1210938, 1.0205078, -2.6152344, -0.8569336, -0.4729004, -0.7138672, -2.6894531, 0.081604004, 0.96533203, 4.0742188, 0.7036133, -0.4951172, -3.1289062, 1.1259766]}, "B074W2B6M8": {"id": "B074W2B6M8", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: \nFeatures: DIMENSIONS: This Homitt bbq cover measures 60\"L x 28\"W x 44\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "embedding": [0.72753906, 1.8369141, 2.9667969, -0.38867188, -0.47265625, 1.3720703, 1.0566406, -1.7236328, 1.3779297, 3.3632812, -0.26098633, 0.014091492, 0.63964844, -3.9765625, 0.56933594, -0.095947266, 1.5917969, 1.3789062, 3.6386719, -0.8491211, 2.9960938, -0.22229004, 1.6386719, 0.15429688, 0.31420898, -0.98291016, 4.2734375, -2.3867188, -1.9160156, -0.6567383, 2.0449219, 0.29711914, 0.80615234, 2.8808594, -2.7011719, -1.8222656, -1.0517578, 0.8847656, -0.65283203, -1.2695312, -1.8300781, -2.3789062, 3.0039062, 2.1191406, -3.0390625, 0.5493164, -1.2490234, 0.8696289, -0.9628906, -0.8222656, 2.0449219, 3.1855469, 1.0634766, 0.62109375, -2.0820312, 2.84375, 0.004020691, -1.7529297, -0.6323242, -0.3828125, 1.1074219, -1.0761719, -1.1240234, 1.4345703, -1.5517578, -0.50878906, 1.0986328, -1.0410156, 0.87890625, 0.51660156, 0.049835205, -0.024597168, -0.2265625, 0.28930664, 1.34375, -0.31933594, -2.4179688, 2.4667969, 1.8105469, -1.7304688, -0.7949219, 5.8789062, -0.8652344, -1.8447266, -0.4020996, -0.20214844, -2.2773438, -2.3691406, 2.8886719, -1.3945312, -0.19616699, 2.1582031, -2.4785156, -3.6679688, 0.3083496, -2.2363281, 2.96875, 1.3261719, 2.5585938, 0.76464844, -1.3457031, -0.09820557, -1.8046875, 1.6777344, -2.1484375, -2.6074219, 1.28125, -0.011375427, -0.47851562, 0.13085938, -0.70166016, 0.578125, -0.11584473, 1.2695312, 2.1679688, 0.46777344, -1.5517578, 1.4121094, 0.8432617, 2.21875, 3.2773438, -0.9926758, -0.48999023, -1.3867188, 1.5166016, -0.7089844, 0.0440979, 1.0224609, 3.9648438, -1.2558594, 1.4091797, -0.47143555, 1.5869141, -0.6767578, -0.7158203, 0.34301758, -1.5351562, -0.7158203, -3.4550781, 1.4775391, -0.6020508, -1.7333984, 1.8125, -1.4980469, -2.8925781, 0.28027344, -1.6181641, 2.4257812, -1.7363281, -3.328125, 0.8515625, -1.7939453, 0.79296875, -1.6152344, 1.7011719, -0.7368164, 1.3466797, -2.5117188, 3.3574219, 2.1972656, 3.3378906, -2.0273438, 0.37768555, 0.7573242, 3.2285156, -3.0585938, -0.3737793, 1.1083984, 0.074401855, 2.2949219, 0.08984375, -1.8769531, 0.6713867, -0.2133789, 1.0654297, -1.1855469, 0.59716797, 1.6601562, -0.88964844, 0.25463867, -0.4260254, -2.0527344, -0.3083496, 0.61572266, -0.8623047, -1.3173828, -0.6069336, -1.5205078, 0.7207031, -1.0869141, -0.3623047, -0.5053711, 0.8911133, 0.122802734, -1.7646484, -1.1416016, -1.6152344, -1.6464844, 0.049041748, 0.9267578, -0.84033203, -1.4755859, -0.9838867, -0.7919922, -2.7148438, -2.1484375, -0.81591797, -0.01751709, 0.35131836, 0.89208984, 0.8623047, -1.5830078, 2.7402344, 1.3320312, -1.296875, -0.09667969, 2.5136719, -1.0917969, 1.5263672, 0.7319336, -0.8779297, 0.22241211, 1.1259766, 4, -1.0410156, 1.0263672, 0.9785156, 0.8408203, -0.90478516, -1.5166016, 0.63671875, 1.4570312, 0.66064453, 0.4855957, -1.3818359, 1.9023438, -0.7421875, -1.7177734, 0.0066108704, 0.4645996, -1.8945312, -1.2939453, -3.2890625, -1.609375, 0.53759766, 2.2792969, -0.6357422, 0.7988281, 1.7558594, -0.79003906, -0.5854492, 0.5649414, 0.7416992, -0.4675293, -0.90478516, -0.07763672, 0.5444336, 0.15783691, -0.7524414, -1.8046875, -0.5463867, -1.9716797, -0.79052734, 1.4541016, -0.6826172, -1.3574219, 2.0332031, 0.7324219, -2.1582031, -1.4335938, 1.1445312, 0.32373047, 0.5371094, -1.6523438, 1.6699219, 0.3552246, -0.1895752, 1.7177734, -0.24645996, -0.1965332, 0.6953125, 1.7275391, 2.3007812, -1.0546875, 0.6513672, 0.8720703, 0.07745361, -1.2695312, -0.09649658, 0.095214844, 2.7753906, 0.10522461, -1.2880859, 2.7773438, 0.875, -0.41601562, 0.24023438, -1.6630859, -1.3818359, 0.7504883, 0.060272217, 1.2978516, 0.6645508, 1.9394531, -0.15710449, -0.9794922, -0.16552734, -1.5664062, -0.37939453, 1.5722656, 0.57714844, -0.265625, 0.32006836, 1.9199219, -2.0644531, -1.4560547, 2.4472656, -2.3828125, -0.91064453, -0.0803833, 0.085632324, 0.1595459, -1.4609375, -1.8359375, 0.12432861, 0.26831055, -1.8974609, -0.14440918, 0.77734375, 0.27368164, 0.16894531, -2.2109375, 0.13439941, -1.0205078, -1.6982422, -2.5703125, -4.03125, -2.2421875, -0.36987305, -1.6474609, -0.93359375, -0.24902344, -2.6972656, 3.0292969, 1.0644531, -2.6464844, -1.4619141, 1.03125, -1.6494141, 2.0761719, -0.81347656, 0.41748047, -0.46923828, -3.7578125, 1.2148438, -0.25976562, -0.24182129, 0.31201172, -1.3994141, -0.7011719, 0.83496094, 1.0878906, 0.6982422, 1.7363281, 1.6181641, 0.6040039, 0.33642578, -4.5351562, -0.5839844, -1.8271484, -0.5449219, -2.5546875, 0.1105957, -3.5234375, -0.5527344, 1.4433594, -0.91064453, 2.3710938, 0.73876953, 0.7163086, 0.6333008, 0.009643555, 0.9824219, 0.011398315, -1.9980469, -0.028640747, 1.7324219, -1.2578125, 0.30932617, -4.3476562, -2.0996094, -1.4658203, -0.31518555, -0.06530762, -0.47851562, 0.022064209, 1.0996094, -2.6113281, -1.0595703, -1.5068359, 0.9970703, -0.24328613, -0.34765625, -0.27563477, -3.0273438, -2.6367188, -1.4345703, -2.1933594, 2.03125, -2.4355469, -0.07727051, 1.6933594, -0.90478516, 3.2226562, -1.0634766, -4.84375, 0.7167969, 2.0039062, -0.49853516, 1.9863281, -0.049682617, -1.6992188, -0.49853516, -0.9091797, 1.9394531, -0.23718262, -0.062561035, 1.6669922, 0.19299316, 0.703125, 0.026397705, 1.2246094, -0.1751709, 1.265625, 2.6875, -1.0263672, -1.3623047, 0.99560547, 0.9916992, -1.8681641, 0.2944336, 2.1152344, 0.1340332, 0.35864258, 0.6923828, -0.04159546, -0.2890625, -0.037902832, 1.640625, -1.5029297, 1.3037109, -0.2631836, 0.11517334, 0.68066406, -1.4736328, 3.015625, 2.3964844, 1.0869141, 1.2197266, 0.81933594, 0.25634766, 1.0019531, -0.62597656, 1.4853516, 1.9423828, -0.6767578, 1.8154297, -0.9165039, -0.52978516, 2.1972656, -1.1650391, 1.4599609, -1.078125, -0.22839355, 1.5566406, -1.3164062, 0.11853027, 0.38085938, 0.24975586, -0.4440918, -1.828125, -2.0234375, -1.4189453, -0.9682617, 0.7236328, -2.4414062, -2.1269531, -0.8330078, 3.9960938, -0.5131836, -1.4619141, -0.9970703, 2.3613281, -2.4414062, -1.1015625, -0.22521973, 1.7148438, -0.10644531, 2.3300781, 2.7382812, -2.0820312, 2.03125, -2.7148438, 0.93359375, 1.4306641, -1.8857422, -0.30688477, -0.08074951, -0.3178711, 0.43603516, 0.50927734, 0.7011719, 1.8037109, -0.8276367, -0.33203125, -3.0175781, 0.07324219, 0.74316406, -0.69189453, -0.00047373772, 3.7128906, 0.3388672, 0.70996094, -1.7646484, 3.1015625, 0.14221191, -1.2285156, 2.0488281, -2.0585938, 0.7109375, -0.88916016, -4.5273438, -0.38134766, -0.9868164, -1.4746094, 2.7167969, 0.5917969, 1.1875, 1.1279297, 0.6152344, -1.2080078, -0.24182129, -3.0683594, -2.4433594, -1.5488281, -1.4755859, 1.6835938, 0.6074219, -2.4023438, -2.2480469, -2.5742188, -1.8789062, 0.45410156, -0.54785156, -1.0224609, -0.47338867, -1.6992188, 0.061767578, -1.4912109, -0.45751953, 0.03225708, -0.35546875, -0.7480469, 0.3935547, 1.4990234, -1.5927734, 0.027435303, 0.6660156, 2.0703125, -1.5341797, -2.2910156, 0.35986328, 1.5976562, 3.3632812, -0.8256836, -3.5878906, -0.85791016, -0.28173828, 2.8066406, 0.4699707, -0.7392578, -0.35888672, -1.0166016, 0.58935547, 0.7050781, 2.6191406, 1.2802734, -0.83203125, -1.6865234, 2.1230469, -0.8647461, -2.3085938, -1.7587891, 0.05279541, -0.19787598, 0.63671875, -2.0214844, -2.5097656, 2.375, -0.83447266, -0.3347168, -1.4550781, 3.4589844, 0.9926758, 1.3398438, 3.3867188, -1.8457031, -0.15710449, 1.3779297, -1.6816406, -0.45751953, -0.51904297, -0.9682617, 0.63183594, 0.5097656, -0.24853516, -1.3632812, -1.2529297, -0.9238281, -0.58691406, -1.0380859, -1.7646484, 1.8798828, -0.47607422, -0.39794922, 1.8857422, -2.3085938, 3.3457031, -0.62353516, -0.05709839, 2.5527344, -2.234375, -0.08319092, 1.2666016, 0.7348633, -0.51464844, 1.1943359, 1.0498047, 0.41088867, 0.26049805, -1.7246094, 0.40307617, 1.6181641, -1.9248047, -0.097473145, 0.92822266, 1.4941406, -0.609375, -1.6865234, 1.9189453, 2.4082031, 0.49487305, 1.8769531, 0.6513672, -1.5458984, 2.0214844, 2.0351562, -0.22741699, -0.2619629, 1.6230469, 0.12597656, 2.4609375, -1.4755859, -1.7392578, -0.7207031, 2.2871094, -1.078125, 2.0410156, -0.28833008, -1.1904297, 1.0078125, -2.1308594, -0.22485352, -0.032073975, -1.7060547, -0.56689453, -1.1669922, 2.0820312, -0.034301758, 1.7099609, 3.6855469, -1.0380859, -2.9492188, 1.3056641, -0.11352539, -0.8071289, -0.14770508, -1.5947266, -2.8007812, -0.0993042, 1.5839844, 0.9355469, 0.59521484, 1.3974609, 2.2285156, -1.8095703, 1.2304688, 0.15527344, 2.9570312, -2.6074219, -1.3378906, 3.828125, -3.5800781, -2.8378906, -1.8007812, 0.6459961, 0.6274414, 1.3476562, 2.3359375, 0.038970947, -0.03616333, -0.8808594, -3.3671875, -1.2294922, -0.88916016, 0.54052734, -0.5913086, 1.7910156, -0.64746094, 1.0136719, -0.24072266, -0.31982422, 0.116882324, -0.82470703, 0.23242188, -1.3330078, -2.2949219, 0.14807129, -1.6171875, -1.4316406, 2.4667969, 1.2265625, 1.5146484, 1.1162109, -3.7539062, -0.890625, 0.9838867, -3.0097656, -1.3945312, 2.2890625, 0.80615234, 1.5292969, 0.6225586, 0.6279297, -1.0927734, 3.6132812, -0.45092773, -0.23803711, 2.0195312, -0.67333984, -0.45117188, -0.86328125, -1.2636719, 1.1464844, -2.2578125, 2.2949219, 0.88183594, -1.6357422, 1.5859375, 1.6064453, -1.828125, -0.41870117, 1.8300781, 1.5341797, 2.1582031, 0.35375977, -1.3183594, 0.28344727, -1.2304688, -1.0126953, -0.3071289, -2.7539062, -2.0527344, -0.96875, 0.6347656, 1.7763672, 1.8447266, 1.6171875, 0.33618164, 1.8701172, -1.6904297, -0.9746094, 0.5385742, 2.2539062, 1.4404297, -2.6054688, -0.5541992, -0.99902344, 0.66552734, 2.0800781, -0.3388672, 0.06750488, -0.37670898, -1.5253906, -0.47216797, 0.9008789, 0.375, 0.91259766, 1.3222656, 0.19030762, 0.7841797, 3.0058594, -0.84375, 1.0908203, 0.55566406, 1.5566406, -1.8154297, 1.3486328, 0.33496094, -3.5527344, -1.6777344, -0.9770508, 0.53564453, 0.44677734, -0.8105469, -0.14855957, -2.2460938, -1.2207031, -1.7783203, -2.0214844, -4.4765625, 0.7661133, -0.35424805, -0.22045898, -0.19421387, 2.8632812, 0.90478516, 3.2597656, 1.2939453, -0.19970703, -0.3317871, -1.2060547, -0.8574219, -1.3183594, 1.3310547, -1.4833984, 0.6542969, -0.020217896, -0.21850586, -1.6064453, 0.94677734, -0.10235596, 0.8378906, 1.3369141, 2.7460938, 2.7949219, 1.9853516, 1.9082031, 0.8100586, 1.0732422, 0.47607422, -0.5854492, 0.7426758, 2.1015625, 1.2285156, 3.3554688, -0.5341797, 0.97998047, 0.64404297, -1.2539062, 0.97021484, 1.1669922, 2.4023438, -2.7714844, 0.7583008, 0.5449219, 1.4570312, -0.7529297, 1.0400391, -2.34375, -1.5595703, 0.23840332, -0.02420044, 3.6503906, -0.43188477, 0.35058594, 1.0166016, 1.9589844, 2.1679688, -3.0097656, 1.6210938, 2.5410156, -1.0283203, -1.3310547, 0.6044922, 1.3242188, 1.5087891, 0.34960938, 0.26342773, 1.6835938, 2.6738281, 0.18334961, -1.8417969, 1.2324219, -0.05505371, 1.9541016, 0.6425781, -1.8789062, -1.3144531, -1.0263672, -1.5664062, -3.1445312, 1.1191406, 1.3554688, 1.2851562, 1.1025391, -4.8476562, 1.0292969, 0.93359375, 1.9375, -1.3896484, -0.5566406, -0.52246094, -1.40625, -1.2998047, 1.2519531, -2.15625, 1.71875, 0.31762695, -1.7636719, 3.0332031, 1.5068359, 0.9975586, 0.7949219, 1.8759766, 0.61621094, 1.109375, -0.22131348, 1.7753906, 0.95703125, -0.13989258, 0.24963379, 3.0410156, 1.375, 1.1630859, 2.1523438, -0.82714844, 0.76464844, 2.0566406, 1.3574219, 1.9951172, -0.7265625, -1.0625, -0.7597656, 1.5175781, -0.43310547, -1.7607422, 2.5332031, 2.3632812, -0.13110352, 2.0332031, 1.0644531, -1.3417969, 1.8105469, 0.8925781, -0.45410156, 0.10870361, -0.65966797, 1.0224609, -0.9213867, -0.60839844, -0.8881836, 1.4150391, -0.09857178, -2.1386719, 0.021209717, -0.2763672, -0.60253906, -0.7714844, 1.4160156, -1.2216797, -0.44384766, -0.68847656, -0.26098633, -0.25854492, 2.1484375, 1.7099609, -1.6777344, -1.8671875, -2.234375, -0.097351074, -1.5205078, -2.7714844, 1.7822266, 4.0546875, 1.1660156, -1.9052734, -1.3613281, -2.1367188, -0.35180664, -1.4833984, 0.9682617, 0.6098633, -0.25756836, 0.10852051, 1.2216797, 1.7705078, -0.33813477, -2.1621094, -0.5517578, -1.2304688, 2.1171875, -1.2744141, 1.1875, -1.1494141, -0.15185547, 0.4267578, 1.8945312, 2.9511719, -0.13391113, 0.9941406, 3.0078125, -0.81884766, -2.8027344, -0.15673828, 1.5859375, 1.6328125, 1.0683594, 1.0400391, 1.2177734, 0.7294922, -0.22155762, -0.99560547, -1.9921875]}, "B00KM9ATAA": {"id": "B00KM9ATAA", "original": "Brand: EDMBG\nName: EDMBG 3 Pack Gas LIGHTERS 11\" Refillable Butane BBQ Kitchen Fireplace Grill Utility\nDescription: BBQ Grill Lighters - Extended Reach - 11\" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!\nFeatures: Extended Reach - 11\" total length\nSafety Lock - to keep safe from the little ones\nFlame Size Regulator - for all condition\nRefillable\n", "embedding": [-0.68359375, 0.29174805, 0.28295898, 0.039733887, -0.3474121, 1.4316406, 1.1787109, -0.2734375, 0.9399414, 0.984375, 0.26513672, 1.2167969, 0.5385742, -2.8300781, 1.2353516, 1.3505859, 1.109375, 0.79248047, 2.8242188, -0.34716797, -0.6713867, 0.023025513, 0.72216797, 0.15222168, 0.8095703, 0.58984375, 4.4453125, -2.9707031, 0.18115234, -1.8867188, 2.1230469, 0.90771484, -1.1152344, 1.8574219, -3.4453125, -0.59716797, -0.016677856, 0.35668945, -2.875, -1.2138672, -0.69921875, 0.44189453, 2.390625, -0.515625, -3.8046875, -1.4033203, 1.7441406, -0.4807129, 0.38549805, -2.3144531, 2.4804688, 2.0195312, -0.6591797, 0.33251953, -2.03125, 1.2910156, -0.45166016, -3.6503906, 1.2685547, -0.75097656, 3.1113281, 0.7475586, 0.16467285, 1.2197266, -1.1542969, -1.2167969, -1.6894531, -0.22338867, -0.17541504, -0.9692383, 2.875, 0.064819336, -1.03125, -0.46777344, 0.03744507, 0.92089844, -1.3896484, 3.2246094, 0.42456055, -0.56396484, 0.11590576, 3.8652344, 0.17858887, -1.1171875, 1.4599609, -1.3164062, -1.6005859, 0.5288086, 1.6074219, 0.7548828, -1.2587891, 0.65966797, -1.6865234, -4.1679688, 3.5175781, -1.2568359, 1.4677734, 1.3632812, 1.2880859, 0.42797852, -0.48388672, 0.29248047, -0.24853516, 0.15979004, -0.45898438, -0.7963867, 0.18701172, 2.4179688, -1.8037109, -0.09564209, -2.3769531, 0.38232422, 1.2763672, 1.0869141, -0.4814453, -1.2744141, -0.3942871, 1.5800781, 3.0664062, 1.1582031, 2.7382812, -0.9667969, 0.7944336, -1.7451172, 0.8378906, -0.859375, -0.32714844, 2.578125, 2.4648438, 0.39111328, -0.077697754, -0.049346924, 2.5527344, -1.8603516, -2.1464844, -2.25, -1.4433594, -2.2519531, -1.7539062, -0.7236328, -2.5546875, -0.08459473, 2.7675781, -2.1425781, -2.1367188, 1.3125, -2.0625, 0.4790039, 0.32788086, -2.4121094, 1.9921875, -0.86279297, -1.2744141, -0.7578125, 1.8427734, 0.6152344, -0.5961914, -0.43896484, 3.5371094, 1.8183594, -0.10192871, -1.2636719, -0.71728516, 0.7714844, -0.21228027, -1.7490234, -0.007045746, 1.4921875, -0.0881958, 1.1640625, 0.36889648, -1.1132812, 0.8051758, -0.37841797, -0.1459961, -2.0429688, -0.7397461, -0.024276733, 0.69921875, -0.8256836, -2.5898438, -2.4921875, 1.0449219, 0.07305908, 1.7304688, 0.6533203, -1.0234375, -1.15625, 0.7636719, -1.5322266, 0.12023926, 1.4345703, -2.9023438, 1.3623047, -0.29760742, -0.33520508, -1.7246094, -1.3154297, 0.31713867, 0.9013672, -0.56396484, -1.1591797, 0.6665039, 1.2021484, -1.7001953, -3.1503906, -0.8930664, 0.03265381, 1.6748047, 1.6367188, -0.12890625, -0.56396484, 2.8007812, -0.10089111, 1.5419922, -2.1386719, -0.10357666, -0.390625, 2.203125, 2.1523438, -1.4326172, -1.0146484, 1.0419922, 2.6347656, 0.1862793, 1.9482422, 0.46533203, -0.028213501, -3.0605469, -2.28125, 1.1318359, 1.0800781, 0.07098389, 0.030395508, 0.28564453, 2.7382812, 0.101745605, -0.6142578, 0.81689453, -0.4169922, 0.001912117, -0.1973877, -0.8251953, -0.36401367, 0.5263672, -0.8852539, 0.6958008, 0.7602539, 0.7583008, -0.7104492, 1.7714844, 1.2783203, -0.20898438, 1.3544922, -0.49047852, 0.29614258, -0.26879883, 1.7255859, -0.9770508, -0.16296387, 2.5957031, 1.7460938, 0.09210205, 1.6347656, 0.1361084, -0.45141602, 2.0625, 0.1328125, -1.6308594, -1.8017578, 0.8076172, 1.5869141, 0.8120117, 0.078063965, 3.6679688, -0.30908203, -0.7607422, 0.9604492, 1.0253906, -0.24035645, -0.16894531, 0.018829346, 2.6796875, -1.0927734, -0.19116211, -1.2177734, 0.3400879, -1.2724609, -0.0066719055, 0.3190918, 3.7851562, 0.39208984, -2.4667969, 3.8496094, -2.203125, 1.4003906, 0.8984375, -0.29760742, 0.8725586, -0.50097656, 2.1992188, 0.66064453, -0.12286377, 0.75439453, -0.46289062, -0.47387695, 2.1191406, -2.6328125, -1.7089844, 1.8710938, -1.1660156, 1.6191406, 0.5205078, 1.0126953, -2.1152344, -1.015625, 1.5908203, -2.09375, 0.34033203, 1.1376953, 1.1611328, 1.4482422, -0.52490234, -1.6191406, -1.8466797, 1.5556641, -1.78125, 0.6269531, 0.6933594, 0.43408203, 0.20947266, -0.7973633, -0.32861328, -0.7636719, -2.0898438, -1.4003906, -1.9404297, -3.5058594, 0.28808594, -0.87646484, -1.1435547, 0.5385742, -1.21875, 2.4921875, 0.88964844, -2.8867188, -0.25854492, -0.546875, 0.81640625, -1.1533203, -0.26513672, 1.6621094, -0.8769531, -3.1210938, 1.1738281, -0.03390503, 1.6230469, 0.12548828, -2.1757812, 1.5458984, 0.052612305, -0.67089844, -0.94433594, 1.3955078, 0.31347656, -1.1289062, 1.4248047, -3.9453125, -0.51953125, -2.1054688, 0.69628906, -0.9604492, -0.0635376, -1.9589844, -0.64160156, -0.83203125, -2.5136719, 1.0732422, -1.9179688, 0.57470703, -1.4365234, -0.33544922, 1.6953125, 1.2050781, -2.5527344, -0.6425781, 0.056274414, -0.22070312, -1.1738281, -3.3515625, 0.47705078, -0.3190918, -0.9165039, -0.3388672, 1.1513672, -0.609375, -0.11328125, -3.0234375, 0.05569458, 0.28979492, -0.23461914, -0.15649414, -0.80029297, 0.5566406, -0.068847656, -0.23400879, -0.8154297, -1.0244141, 2.2050781, -0.98535156, -0.5288086, -0.83691406, -1.1005859, -0.48901367, 0.5073242, -4.8203125, 1.1738281, 0.3413086, -3.2871094, 0.1821289, -1.2011719, -1.2675781, -3.0273438, -1.3115234, 2.5976562, -0.1730957, 2.4003906, 1.4179688, 0.46557617, -1.6679688, 0.43115234, -1.1708984, -0.89453125, 1.5390625, 2.6660156, -3.5429688, -4.078125, 0.54589844, 1.8974609, -2.4667969, -0.103515625, 0.80029297, -0.5078125, 1.2119141, -0.68359375, 2.8007812, 1.0810547, 0.4440918, 0.29052734, 0.7207031, -0.2927246, 1.6650391, -0.18713379, -1.2167969, -0.9707031, 2.2871094, 1.0722656, 1.0283203, 1.0849609, 2.2675781, 0.23388672, -2.2871094, 0.46850586, -0.5488281, 1.2421875, -0.26953125, 0.86572266, -0.79052734, -1.6650391, 0.515625, 0.4255371, 0.8154297, -0.8828125, 0.6894531, 2.2207031, 1.7763672, -0.4272461, 0.7207031, 0.3972168, -0.69189453, -0.90771484, 0.8779297, -0.73876953, -1.1962891, -1.0175781, -2.1835938, -0.26757812, -3.3945312, 1.0830078, -1.2783203, -1.5605469, -1.3789062, 1.4042969, -1.3212891, -1.0263672, -0.83447266, 1.3896484, -1.3896484, 1.5751953, 0.40356445, -2.6875, 2.0703125, -2.1308594, 0.20861816, 2.40625, -0.89697266, -1.0429688, -0.609375, -0.5942383, -0.2668457, 0.45996094, 2.2402344, 0.16149902, -1.1894531, 0.94140625, -2.6113281, -0.15075684, 0.25561523, -1.4453125, -0.3515625, 2.8691406, 0.7319336, 0.7338867, -0.18237305, 2.6894531, 0.57666016, 0.5625, 3.0917969, -1.5214844, -0.93115234, -0.24731445, -4.6054688, 0.118896484, -1.890625, 0.64746094, 1.6767578, -0.08380127, 0.8598633, 3.3105469, 1.4082031, -0.69677734, -1.5263672, -1.2861328, 0.8774414, -2.0214844, 0.0061302185, 1.8867188, 0.72216797, -3.5078125, -1.6728516, -2.6992188, -1.7646484, 1.1738281, 0.8725586, -2.1582031, 1.84375, -0.30908203, 1.0361328, -0.99902344, -0.5517578, 0.5107422, -0.8417969, -1.2675781, -1.1181641, 1.5283203, 0.23669434, 0.08929443, 0.4111328, 1.5068359, 0.5078125, -1.9462891, -1.28125, 1.8417969, 2.4140625, -1.0390625, -2.3144531, -0.29882812, -0.3005371, -0.15795898, -1.4521484, -1.2626953, -0.29370117, -2.4941406, 1.5908203, -0.12200928, 1.9375, 3.3691406, 0.21813965, -1.6845703, 1.6474609, 1.6875, -2.4921875, -1.1083984, -0.17260742, -2.8183594, 0.21044922, 0.36816406, -1.7861328, 0.60546875, -1.7890625, -0.8540039, -0.828125, 1.7431641, 1.5625, 0.95654297, 2.921875, 0.027740479, -0.16894531, 1.8857422, -2.390625, -0.45214844, 1.1660156, -1.5527344, 1.4980469, 1.1806641, 0.8173828, 0.70703125, -0.09350586, 1.0654297, -1.2519531, 0.5800781, -0.5336914, 0.8359375, -0.6513672, 0.57666016, -0.3088379, 0.6953125, 2.3964844, -3.8359375, 0.26391602, 0.9194336, 1.0039062, 0.21826172, 0.20056152, 2.0546875, 1.6435547, -0.80859375, 1.5283203, 3.8183594, 0.3137207, 1.1875, -1.3291016, 0.7402344, -1.5712891, -0.4868164, 0.99902344, -0.48510742, -0.9448242, -0.21655273, 2.2402344, 1.1064453, 0.72998047, 2.1503906, -0.066589355, -2.0722656, 1.6337891, 3.0488281, -2.5605469, -0.33544922, -0.7182617, -0.9628906, 2.28125, -0.16418457, -0.9550781, -0.0602417, 1.1943359, -0.4543457, 2.5410156, 0.51904297, -1.9570312, 0.7348633, -0.953125, 0.01524353, -1.3056641, -2.71875, 0.80810547, -1.9921875, 0.11383057, -1.5703125, 1.0683594, 2.9726562, 1.7890625, -1.8183594, 1.4794922, -0.33496094, 0.19787598, 1.546875, -0.07965088, -2.5039062, 0.71240234, 0.42211914, 0.42260742, 2.1035156, 1.2128906, 2.640625, -2.2773438, -1.4550781, -3.171875, 1.3916016, -1.1875, -0.1418457, 3.5546875, -1.296875, 1.5048828, -2.2695312, -0.2709961, 0.38598633, 2.9863281, 1.2412109, -0.6430664, -2.2421875, 1.2021484, -2.4277344, -3.875, -1.4716797, -0.87158203, -0.24353027, 0.10308838, 0.21716309, -0.60498047, 0.90771484, -0.94628906, -0.24780273, -0.9379883, 0.14233398, -1.890625, -0.2927246, -1.46875, 0.33789062, -1.0214844, 0.34033203, -0.016082764, 0.8886719, 0.50927734, -3.4707031, -1.1347656, 1.1875, -3.0957031, -1.5605469, 1.9677734, -0.76123047, 1.0751953, 1.5107422, 1.3476562, -1.8300781, 1.8017578, -2.1464844, 0.34814453, -1.8271484, -2.4082031, 1.6933594, -0.9082031, -0.27807617, -0.020019531, -2.9648438, 1.6220703, -1.4716797, -1.3896484, 0.2927246, -0.22143555, -0.37695312, 0.10046387, 0.953125, 1.3779297, 0.4543457, 0.34375, 0.45874023, -0.056121826, -3.6699219, -1.4648438, -0.72216797, -1.3867188, 0.40161133, -1.9785156, 0.8486328, -0.4921875, -0.87890625, 0.009086609, 2.3320312, 1.3017578, -0.5957031, 0.3959961, 0.07476807, 2.4394531, 2.1210938, -0.46533203, -2.5605469, -1.484375, 1.6806641, 2.09375, -0.9223633, -0.50634766, 1.1064453, -2.9707031, -0.13305664, -0.25952148, 1.7773438, 1.8515625, 0.9716797, -2.6171875, -0.18554688, 2.0039062, -2.453125, 3.0078125, 1.9355469, 1.3242188, -1.8232422, 1.9804688, -0.8925781, -2.796875, 0.7265625, -0.8388672, 0.5961914, -1.2685547, -2.3320312, -0.18115234, -1.6611328, -0.7480469, -0.94091797, -0.8413086, -3.3085938, 2.09375, 1.1767578, -2.2949219, -0.7841797, 3.9121094, -0.41308594, 2.5429688, 2.7480469, -0.13891602, -1.6933594, -2.3652344, -1.9121094, -1.6513672, 2.5214844, -2.2089844, -0.16345215, 1.6318359, -0.80126953, -0.074035645, 2.46875, 0.2368164, 0.34423828, 1.4453125, 0.85839844, 0.4189453, 0.9213867, 2.53125, -0.38012695, 1.4765625, 0.47924805, -1.3007812, 2.0488281, 2.4101562, 1.4404297, 0.4597168, -1.2167969, 1.6757812, -1.3339844, 0.4284668, -0.4423828, 0.26489258, 2.1875, -2.0175781, 1.2460938, 1.1435547, 1.8251953, -2.140625, -0.68408203, -1.1044922, 0.8203125, -0.5419922, 3.5253906, 2.4003906, 0.1842041, 1.1796875, 0.94140625, 1.2587891, 2.6269531, -1.7998047, -0.23864746, 1.2148438, -1.6240234, -0.54296875, 2.8535156, 0.53515625, 1.2880859, 0.91308594, 1.921875, 0.4921875, 0.2824707, 2.2011719, 0.09466553, -1.0019531, -0.9472656, 1.9804688, 0.83447266, -1.3798828, -0.109069824, -0.5463867, -2.5605469, -2.6640625, 1.9052734, 0.27514648, 0.93847656, 1.0087891, -2.4648438, 2.0410156, -0.8388672, 1.4375, -1.84375, 1.3134766, -1.2480469, -1.09375, -0.6796875, 1.1708984, 1.0888672, 1.1591797, 1.1953125, -2.1035156, 0.8510742, 2.3476562, 1.6425781, -0.2364502, 1.1601562, 0.22094727, -0.0011873245, -1.7900391, 1.8798828, -0.9086914, 0.76220703, -0.84033203, 3.53125, 1.0908203, 1.5693359, 0.072387695, -0.3972168, 0.65478516, 0.8144531, 1.21875, 0.4116211, -1.2705078, -2.2753906, -1.0302734, -0.48168945, 0.30493164, -0.8989258, 0.671875, 1.7119141, 0.046722412, 0.04055786, 1.3603516, -1.8349609, 2.2519531, -0.21655273, -1.9765625, 0.890625, -1.21875, -0.27294922, -0.18579102, 0.56396484, 0.4255371, 1.9882812, 1.9404297, -2.1972656, 0.9980469, -0.013389587, 1.0849609, -0.024642944, -1.3876953, -1.765625, -1.7089844, 0.11517334, -2.5195312, 0.890625, 2.3828125, 0.93408203, -0.71777344, 0.16137695, -1.3515625, 0.16760254, -0.33642578, -1.09375, 1.28125, 4.1367188, 1.4003906, -1.3115234, -1.1347656, -0.8847656, 0.39990234, -1.7373047, 1.4394531, 0.05847168, -1.4472656, 0.5097656, 0.052856445, 2.3886719, -0.47387695, -0.32080078, -0.49609375, 0.31054688, 1.0664062, -0.41845703, 1.7861328, -0.69921875, -0.06451416, 1.3935547, 1.7021484, 2.9414062, 0.51464844, 0.90966797, 0.42236328, 1.1220703, -1.0966797, -0.068847656, -0.27490234, 2.8613281, -0.066833496, 1.375, 1.5722656, -1.4160156, 1.3203125, -0.5180664, 0.51708984]}, "B00IZCNOXK": {"id": "B00IZCNOXK", "original": "Brand: Flame King\nName: Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black\nDescription: \nFeatures: RV/TRAILER COMPATIBLE - Flame King\u2019s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are!\nCOMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface\nMOUNTABLE or FREE STANDING \u2013 The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping!\nSECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces\nPLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48\" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96\" Quick Connect Regulator Hose, Item LPRH8\n", "embedding": [-3.0566406, 1.2910156, 0.7089844, 0.4482422, 1.3349609, -1.0058594, 0.9199219, 0.3076172, -0.15649414, 2.0976562, 1.8701172, -0.4650879, -1.3515625, -4.8789062, 0.37646484, 1.2226562, 0.55615234, -0.20263672, 1.0556641, -0.39501953, 1.7080078, 0.76660156, 0.06341553, -0.515625, 0.024047852, -1.1503906, 3.765625, -2.28125, 0.5546875, -0.82421875, 2.3339844, 0.3232422, 0.9458008, 2.5078125, -3.3125, -0.64160156, -1.28125, 0.37670898, -2.171875, -1.5058594, -0.28222656, -3.8027344, 0.93847656, 1.2021484, -1.7382812, 0.12866211, 1.0859375, 1.2060547, -0.7060547, 0.32666016, 3.6328125, 1.8359375, -0.38598633, 2.2988281, -0.875, 1.4912109, -0.75683594, -2.5097656, -0.36889648, 0.028579712, 2.8984375, -0.55859375, -2.5507812, 2.1113281, -1.0683594, 0.46655273, 2.4140625, 1.1962891, 1.2001953, 0.42504883, 1.2460938, -0.6801758, -1.3417969, -0.68603516, -0.17736816, 0.7944336, -3.7421875, 1.3095703, 1.1865234, 0.0050582886, -1.2939453, 2.9082031, 0.16357422, -2.3671875, 0.64453125, -1.4169922, -0.45581055, 0.24084473, 1.8066406, 1.3613281, 0.16308594, 3.0644531, -1.28125, -2.8925781, 2.0742188, 1.03125, 2.4199219, 0.6176758, 0.8041992, 2.0273438, 0.45410156, 0.6855469, -0.97265625, 0.3474121, -1.8417969, -1.5205078, 1.9482422, -1.3125, -2.5488281, 0.8027344, -0.5761719, 0.10101318, -0.10070801, 0.41088867, 0.17126465, 0.7285156, -0.8183594, 3.1445312, 0.54785156, -0.13745117, 3.1660156, -0.86376953, 1.0996094, -1.4316406, 2.1972656, 0.34936523, -0.046936035, 2.7089844, 5.6953125, -0.5341797, -1.1757812, 0.9394531, 3.25, -1.0595703, -0.5595703, -3.2753906, -0.40063477, -0.56884766, -4.7421875, -0.2841797, -1.1230469, -0.33447266, 2.5839844, 0.1541748, -3.4355469, -0.5048828, -0.017456055, 0.18676758, -1.3691406, -1.5703125, -0.52490234, -1.6416016, 1.7353516, -2.2753906, 1.734375, 0.5361328, 0.1928711, -2.4160156, 1.40625, 0.8930664, 0.7573242, -1.7128906, -1.9648438, 1.3164062, -0.85546875, -3.0507812, -1.2783203, 2.8554688, 0.3955078, 1.9619141, -0.1295166, -1.3398438, 0.21777344, 0.07287598, 1.4482422, -0.28955078, -2.1503906, 1.1923828, 0.6796875, 1.5253906, -2.3984375, -1.9101562, -0.7324219, -0.6933594, 0.070617676, -0.63183594, -0.87841797, -0.44213867, 2.8984375, -0.5932617, -0.016677856, 3.1972656, -0.9741211, 0.46557617, -1.0009766, -0.20715332, -3.3007812, -2.9824219, 1.0742188, 0.7973633, -0.46875, -0.5551758, 0.96240234, -0.77441406, -3.1132812, -3.0566406, -1.8662109, -0.010314941, 1.2597656, 2.015625, -0.119628906, 0.47216797, 2.2734375, -2.0859375, -1.2607422, -1.2177734, -0.2211914, 2.3964844, 1.7392578, 2.6640625, -0.17150879, -0.97998047, 2.0722656, 2.8144531, -0.08996582, 0.93847656, 0.68310547, 0.8876953, -2.0996094, -1.4160156, 1.1689453, 0.068481445, 1.0419922, 0.4831543, -2.0429688, 2.1894531, 1.6621094, -1.6083984, -0.29907227, 2.1425781, -1.2841797, -1.4902344, -1.0595703, -1.0380859, -0.9736328, 0.54052734, 0.21948242, 0.60595703, 1.0849609, 0.32202148, -1.9326172, 1.0009766, 0.5776367, 0.0028152466, -0.0075187683, 0.04345703, 0.5830078, 0.95410156, -0.97265625, -2.8671875, 1.2949219, -0.6621094, -1.9501953, 2.2011719, -1.1982422, -1.3681641, 4.515625, 1.7861328, -3.3808594, -0.60009766, -1.2958984, -0.67285156, 1.9580078, -0.44580078, 1.8447266, 0.16088867, -0.8125, 3.7128906, 0.03756714, 0.51708984, -0.6069336, 0.46264648, 0.44848633, -2.0078125, -1.6083984, -0.9589844, -1.140625, -0.7207031, 1.3964844, 1.4794922, 3.8359375, 0.6508789, -3.8789062, 2.6503906, -1.0859375, 0.013404846, 2.8867188, -1.4169922, 2.2285156, 0.7626953, 0.63623047, 1.4189453, -0.66259766, 0.80566406, -1.2871094, -0.51171875, 0.95703125, -2.2148438, -0.20678711, 0.4321289, -1.8642578, -0.032714844, -2.7734375, 0.3293457, 1.3046875, -0.35131836, 2.5234375, -1.8164062, 1.2871094, 2.0214844, -0.8984375, 0.65234375, -0.23022461, -1.7070312, -0.38208008, 1.1220703, 0.09576416, -0.20483398, -0.2915039, 0.30273438, -0.14282227, -0.19909668, 0.80126953, -1.4628906, -1.5341797, -2.2519531, -0.7895508, -3.3789062, 0.64697266, -1.0507812, -1.2607422, -0.17944336, -1.8408203, 1.2460938, -0.4489746, -4.3242188, 0.4194336, 1.0048828, -0.49047852, 2.7109375, 0.08569336, 2.09375, 2.0742188, -2.1289062, 1.2148438, 0.14697266, 2.09375, 1.6982422, -1.7539062, 0.19348145, -0.9091797, -0.19482422, -1.2099609, -0.60546875, 0.578125, -1, 1.7519531, -2.3046875, 0.3408203, -1.2871094, -0.18945312, -0.59716797, -0.2705078, -2.3007812, -2.5839844, -0.22668457, -1.6738281, 1.5068359, 0.515625, 1.1601562, -2.1699219, 0.67041016, 1.0488281, 1.1445312, -0.6430664, -1.2695312, 0.61865234, -2.5546875, -2.9296875, -4.4453125, 0.035064697, 0.15319824, -0.119140625, -2.1796875, 0.48901367, -1.1875, 2.1875, -2.5625, 0.7993164, -0.99902344, 2.1640625, -1.3681641, -1.2773438, -2.2246094, -1.7822266, -2.2167969, -1.9189453, -2.5878906, 1.6669922, -1.7363281, -0.43041992, -0.28295898, -1.4150391, 1.2890625, -1.4208984, -4.0117188, 3.4667969, 0.89697266, -0.9394531, 3.1269531, -2.0429688, -0.81103516, -2.6328125, -1.7148438, 4.9570312, 0.8613281, 1.6113281, -0.87402344, -0.7373047, 1.8457031, 0.83203125, -0.43896484, 1.1787109, -0.5332031, 4.4882812, -1.9453125, -1.7822266, 0.20947266, 1.0517578, -2.4042969, 1.0224609, 1.4951172, -0.35742188, 1.3203125, 1.4199219, 2.2753906, -2.0136719, -0.7163086, 1.0419922, 2.5800781, 2.4160156, -0.5991211, -0.9667969, -0.6777344, -0.93847656, 1.0771484, 1.9326172, 1.3964844, 2.7871094, 1.8955078, 0.30859375, -0.98828125, 0.06744385, 0.28686523, 2.8808594, 1.0185547, 1.2958984, -0.61376953, -0.53808594, -1.5693359, -0.82470703, 1.0126953, -0.12133789, -0.96533203, 2.4160156, 1.7763672, 0.31103516, 1.0537109, -0.14440918, -2.0976562, -1.375, 2.5371094, -3.1464844, 0.9169922, 1.2929688, -2.6796875, -0.23278809, -3.984375, 3.2636719, -1.0214844, 0.51660156, 0.23120117, 1.9355469, -0.38330078, -1.0039062, 1.6416016, -0.22216797, -1.828125, 1.6083984, 1.3710938, -3.7578125, 0.64990234, -2.3671875, 1.1845703, 0.94677734, -1.3886719, 0.2849121, 1.3691406, 1.0810547, 0.27075195, -0.13110352, 1.3525391, 0.41723633, -0.44189453, 0.5395508, -3.2109375, 0.7705078, 0.5566406, 0.48754883, -1.5029297, 3.0507812, 0.5678711, 0.20056152, -1.9326172, 5.6523438, -1.1728516, 0.78515625, 2.6914062, -2.3554688, -0.27075195, -2.6367188, -3.984375, 2.1015625, -3.0585938, -1.7001953, 1.5048828, 0.60009766, -0.21386719, 0.61035156, 0.671875, 0.66845703, 1.1689453, -1.6142578, 0.7763672, -3.1699219, 1.2841797, 1.5664062, 0.45410156, -2.3105469, -2.0722656, -1.2294922, 0.19812012, 1.9160156, 2.6464844, -2.9199219, -0.27539062, -0.57714844, -0.73779297, 1.2167969, -0.14562988, 2.0976562, -0.65283203, 0.21655273, -1.4375, 1.9189453, 2.5664062, -0.3137207, 0.3022461, -1.1357422, -0.4423828, -2.1875, -2.7226562, 0.7373047, 3.1054688, -0.50146484, -3.3144531, -2.8105469, 0.96240234, -0.82910156, -2.359375, 1.2070312, 0.119384766, -1.3564453, 5.0585938, 0.4013672, 2.8359375, 1.5839844, -0.09649658, -1.8691406, -1.1601562, -0.6220703, -0.5522461, -1.2558594, -1.3417969, -0.48535156, -1.8134766, 0.42797852, -2.5351562, -1.1083984, -3.1152344, -0.45458984, -3.2890625, 2.2753906, 2.2675781, 2.8066406, 2.5957031, 0.6582031, 0.66845703, 0.81884766, -2.9316406, -2.4453125, 2.7089844, -1.0888672, -0.7368164, 2.3671875, -0.24584961, -0.4868164, -0.40576172, 1.6142578, -0.6464844, -1.8310547, -0.11071777, 0.80078125, -2.75, -0.5336914, 2.4589844, 0.5336914, 3.2285156, -2.6757812, -0.16259766, 1.8173828, 0.93652344, -0.73779297, 1.4462891, -0.32617188, 1.1582031, 1.8886719, 2.1464844, 1.2460938, -0.59716797, 1.3349609, -1.4970703, 2.2304688, -2.3457031, -0.2631836, -0.76171875, 0.45874023, -1.3222656, 0.2770996, 2.765625, 1.3808594, -0.4584961, 2.0234375, 0.20397949, -2.2753906, 0.8120117, 0.8852539, -4.5273438, -2.5820312, 0.5991211, -0.54589844, 2.9726562, -0.7597656, -3.0214844, -0.49536133, 3.0527344, 0.75146484, 1.0546875, 0.765625, -1.1894531, 0.18884277, -2.0527344, -0.107910156, -0.038116455, -1.0371094, 2.1113281, -1.3515625, 1.1865234, -1.8085938, 0.7348633, -0.5449219, -0.03250122, -0.86865234, 1.2666016, -1.8173828, -0.54833984, 0.95410156, 1.3925781, -3.0722656, -1.6875, 0.83984375, 0.7558594, 0.6875, 0.3540039, 0.8051758, -1.7675781, 0.38842773, -2.7011719, 2.2226562, -1.171875, -0.47851562, 2.2011719, -2.4804688, 1.7216797, -1.4189453, 1.2998047, -0.80566406, 2.0546875, 2.3105469, -1.8847656, 0.36621094, 0.10852051, -1.3671875, -4.1679688, -1.7617188, -0.5029297, 0.4182129, -0.0848999, 1, -1.7832031, -1.2880859, 1.0175781, -1.7861328, -1.0234375, -0.70947266, -1.6308594, 0.0770874, -1.1337891, 1.6845703, 0.14111328, 0.76904297, 1.5664062, 0.7949219, -0.3359375, -2.8886719, -0.6899414, 2.1796875, -0.6401367, 0.52783203, 0.5751953, -1.2207031, 0.60253906, 1.4833984, 0.65722656, -3.3300781, 3.2675781, -3.0859375, 0.75390625, 1.3808594, -1.5078125, -0.8330078, -0.20153809, -3.3242188, 1.3974609, -1.734375, 1.7675781, 0.2783203, -2.484375, -2.5195312, 2.0742188, -3.6464844, -0.6489258, 1.3095703, 1.5175781, 0.70947266, 0.35253906, -2.2382812, -0.8911133, -1.7421875, -2.4355469, 0.8613281, -3.6074219, -1.4326172, -0.89746094, 1.7861328, 0.119628906, -0.8334961, 0.30273438, 0.66308594, 0.21594238, -1.2294922, 0.9169922, -0.87353516, 3.1308594, 2.3847656, -1.0097656, 0.16381836, -1.0664062, -0.31225586, 1.8164062, 0.99560547, -1.8583984, -0.1081543, -1.0019531, 1.875, 0.13757324, 1.3310547, 2.6855469, 0.21984863, -0.17883301, 0.6020508, 3.1992188, -0.37280273, 2.7558594, 0.8051758, 1.3984375, 0.26123047, 3.4667969, 0.66552734, -3.0332031, 1.2119141, 0.17370605, 1.5742188, -0.7607422, -1.5654297, 0.47973633, -1.1542969, -2.7128906, 0.8847656, -2.3378906, -5.3671875, 2.3535156, 0.9970703, -1.2197266, -0.9082031, 1.8476562, 1.0263672, 1.6210938, 2.1484375, 0.6074219, 0.39379883, 1.0791016, -0.20336914, -0.33691406, 0.11273193, -1.4716797, 0.20410156, 1.3964844, -1.2929688, 0.09643555, 2.109375, -0.54345703, 3.5878906, 1.9248047, 0.7397461, 3.9589844, 0.2541504, 2.4453125, -0.5551758, 1.3457031, 2.1269531, 0.12902832, 0.44189453, 1.3837891, 3.4824219, -0.9277344, -1.9375, 2.046875, 0.72021484, 0.47436523, 0.40722656, 0.8564453, 0.30078125, -1.7626953, 2.2167969, -0.18566895, 0.2998047, -1.5732422, 0.5493164, -2.4472656, 0.28295898, -0.68847656, 0.84716797, 2.2382812, -0.23132324, 0.875, 0.28393555, 2.1542969, 0.9506836, -2.6914062, -1.1738281, 0.9169922, -0.8432617, -0.14123535, 1.9873047, 0.88183594, -0.35668945, 1.0195312, 1.9628906, 0.54296875, 0.07952881, -0.66796875, -1.3173828, 1.7060547, 0.068725586, 1.5898438, 0.22302246, -1.8916016, 1.8916016, -0.31152344, -3.25, -4, 2.3144531, -1.5400391, -0.8676758, 0.35205078, -1.9521484, 1.3330078, 1.2705078, 1.0039062, -2.6816406, 1.0693359, -1.4980469, -0.79785156, -0.48388672, 0.6850586, 0.11505127, 2.5058594, 1.3154297, -1.9599609, 2.3085938, 7.1525574e-06, 1.4228516, 1.8564453, 2.0507812, -0.74365234, 0.55859375, -1.2558594, 2.7324219, 0.54052734, -1.0537109, -0.9116211, 2.6738281, 0.85058594, -0.3618164, -0.1005249, -1.8496094, 0.2915039, -0.41381836, 0.53515625, 0.29663086, -2.6660156, -1.3720703, -1.3291016, 1.3505859, -0.52197266, -2.3085938, 0.0024909973, 2.4238281, -0.2565918, 0.4025879, 2.3632812, -0.5083008, 1.2402344, 1.2207031, -0.99072266, 0.09838867, 0.50878906, 0.8720703, 0.53271484, -1.8222656, 2.515625, 2.4433594, 1.34375, -1.2792969, 0.37402344, -0.8154297, 0.9350586, -0.74560547, 0.7519531, -1.2431641, -0.9067383, 1.1494141, -1.0615234, 1.3603516, 3.3242188, -0.42773438, -0.11846924, -1.6083984, -1.0957031, -1.1396484, 0.41503906, -2.2792969, -1.5732422, 2.3046875, 2.6972656, -2.0898438, -1.5107422, -2.8085938, 0.06817627, -0.49414062, 1.8154297, -0.7319336, -2.4550781, 0.57714844, -1.453125, 1.0888672, 0.7158203, -0.05368042, -0.6308594, -0.07397461, 1.0371094, -0.9316406, 1.7490234, 0.2084961, -0.18139648, -0.90283203, 2.0800781, 1.9482422, 1.0878906, 0.6791992, 0.5419922, -0.031921387, -0.9506836, -0.28295898, -1.7314453, 0.6459961, 0.48486328, 0.7519531, 1.6914062, 2.2070312, 0.38867188, -3.7167969, -2.0722656]}, "B00FL8LL7M": {"id": "B00FL8LL7M", "original": "Brand: Hiland\nName: Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb\nDescription: \nFeatures: Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it\nOur fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes\nHeat Rating: Higher temperature when compared to logs, lava rocks, stones, etc.\nIdeal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires\nAvailable in 10 and 20 pounds\n", "embedding": [-0.12194824, 1.4042969, 2.1972656, 0.20385742, 0.92578125, 2.6601562, -0.14831543, -1.2246094, -0.2166748, 1.7236328, -1.9833984, -0.97802734, -2.7441406, -2.5722656, 0.26733398, -1.2089844, 0.4333496, 0.24841309, 1.6669922, 0.4729004, 2.8984375, 0.91308594, 0.4008789, 1.3798828, 1.0205078, 0.53466797, 2.2148438, -2.1875, 1.2197266, 0.12084961, 1.6591797, 1.1367188, -0.9770508, 1.6132812, -1.3261719, -2.640625, 0.54052734, 1.6308594, -2.4394531, -0.39990234, -2.2519531, 0.20397949, 2.3691406, 0.7338867, -0.5805664, 0.78027344, 1.5585938, 0.80908203, -0.24279785, 0.0072021484, -1.4394531, 2.453125, -1.0507812, -0.55566406, -0.36450195, 1.7792969, -2.7734375, -3.5273438, 1.9414062, -0.7661133, 1.4833984, -1.3408203, 0.37670898, 0.58154297, 0.059326172, 0.6796875, -0.63916016, -1.4716797, 0.23510742, -0.3479004, 0.9980469, -0.6982422, 0.13391113, 0.95703125, -1.4365234, -0.6738281, -0.7246094, 2.5273438, 1.8583984, 0.25268555, 0.084472656, 1.3857422, 0.6772461, -1.7558594, -1.3603516, -0.5595703, 0.29638672, -2.0625, -1.0439453, 0.4230957, 1.6738281, 2.0683594, 1.0234375, -4.375, 1.3994141, -2.8320312, -0.01637268, 0.45532227, -0.53808594, 0.98583984, 0.9707031, -0.39819336, -0.59033203, 0.93115234, -2.8242188, 0.80078125, 1.6894531, 2.0996094, 1.0205078, 0.7841797, -0.4309082, 1.0527344, 1.2841797, 0.7495117, -0.18188477, -0.74072266, 2.2871094, -0.37670898, 0.8730469, 2.3515625, 2.4003906, -1.9804688, -0.27392578, -1.5214844, -1.1015625, 0.87646484, 0.5698242, -0.47729492, 1.03125, 0.09210205, 1.6982422, 0.73291016, 1.1464844, 0.51904297, -1.90625, -0.26220703, -0.87158203, -0.6044922, -3.7265625, -0.085754395, -1.7753906, 2.7617188, -0.5566406, -0.8027344, -2.9628906, 0.5756836, -1.5742188, 1.1162109, -1.5966797, -2.515625, 1.0244141, 0.5234375, 1.5898438, -1.9013672, 1.2226562, -0.9296875, 1.9970703, 0.054107666, 2.0566406, 0.7915039, -0.6982422, 0.78564453, -1.2939453, 0.7675781, -2.6933594, 0.18261719, 1.8242188, 0.42382812, -0.73046875, 0.6044922, -1.8564453, -1.609375, 0.006614685, 1.765625, 0.7871094, -0.4248047, 0.6484375, -0.5136719, 1.6914062, -0.107910156, -1.484375, -2.1914062, 1.5839844, -0.6279297, 1.0087891, -0.29663086, -1.3085938, -1.7216797, -0.25170898, -1.4277344, -0.7675781, 0.04949951, -0.9375, 0.8510742, -0.30517578, -0.07458496, -2.8457031, -3.0644531, 1.6601562, -0.54833984, -1.5214844, 1.4160156, 0.049072266, 1.2158203, -2.0371094, -1.1230469, -0.51953125, -0.4921875, 2.6328125, 0.82421875, -0.28979492, -0.5151367, 1.3115234, 1.5351562, 0.11193848, -2.5683594, -0.9741211, -0.08581543, 0.87158203, -0.060302734, 0.6040039, 0.19226074, 1.5810547, 2.0625, 0.92822266, 0.018630981, 2.0253906, 0.69189453, -2.8105469, -1.0605469, 2.6171875, 1.6914062, -0.4489746, 0.7246094, -0.22827148, 3.7109375, 0.37329102, 0.859375, 2.3632812, -1.3681641, -1.9902344, -1.1611328, -0.98291016, 0.17053223, -1.1816406, 1.9003906, 0.74072266, 1.6601562, 1.9130859, -1.8300781, -0.39404297, 2.171875, 1.4990234, 1.5703125, 0.90234375, -0.053100586, -0.9482422, -0.6430664, 1.7402344, -1.4375, 2.0078125, -0.25097656, 0.30371094, 0.7529297, -1.8339844, -2.7363281, -0.8125, 0.16113281, -1.2382812, -0.057922363, -0.14904785, 0.15917969, 2.3945312, -2.6425781, 1.2197266, -0.10913086, 0.121398926, 3.1660156, -0.6245117, 2.5683594, 0.17236328, 0.7109375, 1.2509766, -0.6513672, -1.4394531, 0.5517578, 3.3417969, -0.84765625, 0.19665527, -1.8984375, 3.6347656, -0.3635254, -0.8105469, 1.640625, 0.76904297, 0.65625, 1.5166016, -0.1763916, -1.59375, -0.68652344, 2.9160156, 2.0117188, 0.03857422, 0.8808594, -3.4921875, 0.5620117, 2.5078125, -1.2958984, 0.62939453, 0.83154297, 2.453125, 0.42138672, -2.1328125, 1.9394531, -5.234375, -0.4560547, 2.6796875, -1.0126953, 1.3056641, -1.2919922, 0.12438965, 2.7304688, -1.5097656, 0.05911255, -1.1191406, 3.078125, -1.6083984, 2.4472656, -0.27026367, 1.2636719, -2.8574219, -2.0742188, -1.9814453, -1.3759766, -0.80322266, -2.3613281, 1.2158203, -0.62597656, 2.0898438, -2.1074219, -0.27978516, 1.8554688, -0.26464844, 1.1064453, -1.1035156, -1.390625, -0.56689453, 1.625, 0.42163086, 1.0410156, 0.21679688, 2.765625, -1.40625, -2.4316406, -2.8632812, -1.4941406, 0.5234375, 0.5595703, 0.6328125, -0.32861328, 1.2304688, 0.27807617, 2.5898438, -1.6982422, -0.39404297, 0.78808594, -1.0361328, -4.8710938, 0.85302734, -2.2128906, 0.8222656, -1.0058594, -0.36279297, 0.07867432, -0.26635742, 0.61816406, 0.2541504, 2.9082031, 0.21801758, 3.1601562, -1.5234375, 0.2541504, -1.8916016, -0.111816406, -2.9863281, -0.5498047, -1.8212891, -1.2265625, -0.99072266, -2.6582031, 0.6376953, -0.63671875, -0.3046875, -0.04296875, 0.14978027, 0.23425293, 0.09313965, -0.921875, -0.117004395, -0.08117676, 0.43823242, -0.09350586, 2.3027344, 0.51220703, -0.765625, -1.515625, -1.1787109, 1.6181641, 1.0478516, -0.546875, 0.51416016, 0.8618164, 0.010536194, 0.5229492, 0.7631836, -3.2109375, 0.43603516, 2.9804688, -0.7836914, 1.8408203, -0.5908203, -1.6376953, -2.6171875, 1.4511719, 2.3476562, 1.109375, -0.2854004, 1.0712891, 0.61621094, 0.70751953, 0.76708984, -0.20788574, 0.3095703, -1.4902344, 1.484375, -2.8085938, -3.390625, 0.28442383, 2.6074219, -4.0195312, -1.3310547, 0.49194336, -0.4934082, 1.8271484, -1.0419922, 1.7041016, 1.6855469, -0.40966797, 0.34399414, -0.42895508, 0.84277344, 1.3974609, 0.4206543, 1.5576172, -0.06021118, -0.39160156, 1.0566406, 0.6010742, 1.0898438, 1.2636719, -0.35083008, -1.1943359, 0.57958984, -0.012649536, 0.55810547, -2.5449219, 1.8115234, 0.3239746, -0.6269531, 2.3320312, 0.28686523, 0.8925781, -1.4033203, -2.3632812, -1.1914062, -0.11053467, -1.9882812, -1.8144531, 0.7963867, -1.4238281, -1.9482422, -0.29467773, -0.5102539, 0.40405273, 0.053894043, -1.6191406, -0.23242188, -0.1899414, 2.8417969, -0.68896484, -0.9892578, -1.2763672, 2.3789062, -2.8378906, -0.74072266, -0.50683594, -2.1171875, 1.8388672, 1.8984375, -1.3837891, 0.9892578, 1.5673828, -2.5820312, -0.1817627, 0.93115234, 0.23352051, 1.7978516, -0.8779297, 0.5522461, -1.1279297, 1.5546875, 0.2939453, -1.078125, -1.8691406, 0.2064209, -1.5361328, -0.64501953, 2.2578125, -0.2220459, -0.31274414, 2.5761719, -0.29614258, 0.26904297, 0.24707031, 1.6367188, 0.68652344, -0.5966797, 1.1904297, 0.11364746, -1.1289062, -1.3789062, -3.5019531, -1.0166016, -3.1992188, 0.3557129, 1.3857422, -0.6904297, 0.29248047, 0.05911255, 1.5068359, -2.5078125, -1.5253906, -1.9912109, -0.921875, -1.1689453, 0.081970215, -0.17907715, 0.24804688, -3.0117188, -1.0703125, 0.91552734, -0.67871094, 0.30395508, -0.15136719, -1.5546875, 0.25683594, 0.10192871, -0.6645508, 0.41357422, 0.09112549, 0.05960083, -1.0478516, 0.42138672, -0.06866455, 4.3945312, -0.44970703, -1.15625, 1.6542969, 2.5605469, 1.2226562, -0.28271484, 0.3227539, 0.48413086, 2.7421875, 0.42407227, -1.3896484, -0.8466797, -0.85595703, 0.39770508, -0.29223633, 0.27661133, 0.0496521, -2.3222656, 1.6279297, 0.07635498, 1.5898438, 0.7915039, -1.0048828, -0.11102295, 0.21960449, -0.8618164, -1.3583984, -1.8232422, 0.11413574, -2.0722656, -1.4414062, 0.076171875, -1.7509766, 1.3291016, 1.4287109, 0.4489746, -2.9472656, 1.1191406, 2.4453125, 1.6826172, 2.3144531, -3.96875, -2.0820312, 2.7675781, -2.3769531, 0.31201172, 0.13781738, -0.25073242, 0.45361328, -1.0537109, -0.6020508, 0.97314453, -0.48413086, 0.71191406, -0.8491211, 0.31347656, -0.8144531, -2.8828125, -2.4414062, 1.7783203, -0.81591797, 0.043426514, 0.95654297, -0.8232422, -0.99316406, -0.4020996, 1.0585938, 1.1708984, -0.80908203, 0.12890625, 0.19824219, 2.8828125, 2.9355469, 1.2724609, 1.7958984, 1.5097656, 0.5463867, 2.2421875, -0.050079346, 2.0449219, -0.17492676, -1.1132812, -0.23522949, 0.52685547, 2.3007812, 1.6132812, -0.58203125, 1.6962891, -1.6962891, -0.6098633, 1.8339844, 0.99560547, -1.6689453, 1.4365234, -0.8754883, -2.6875, 2.2929688, -2.3417969, -1.0380859, -0.86035156, 1.8144531, -0.33276367, 2.6621094, 0.76123047, -0.5214844, 0.070739746, 1.0625, -1.5732422, -0.45581055, 0.2376709, -1.6386719, -0.54296875, -1.0166016, -0.40527344, 1.2802734, 0.36645508, 0.09338379, -0.3557129, 1.7714844, 0.85302734, 0.44091797, 0.03555298, 0.57128906, -0.7998047, 0.42236328, -0.6381836, 1.7509766, 1.8144531, 0.55566406, 3.1328125, -0.95166016, -0.60791016, -3.0175781, 0.44458008, -2.3730469, -0.2578125, 0.71777344, -0.98046875, 0.19836426, -2.9179688, -1.0097656, -1.1123047, -0.3876953, 2.0820312, 0.6015625, -2.0136719, -0.828125, -3.2070312, -1.7529297, -2.296875, -2.4609375, -1.9228516, 1.3242188, -0.4206543, -1.3457031, -2.3242188, 0.19238281, -0.013023376, 1.0039062, 0.3942871, -1.53125, -1.6689453, -1.1738281, -0.031433105, 0.2841797, -0.57958984, -0.05645752, -0.046447754, -0.15124512, -1.3232422, -0.921875, 1.1855469, -1.4785156, 1.0410156, 0.4658203, 0.39013672, 1.3359375, 2.171875, 0.19262695, -0.5756836, 2.7519531, 0.48217773, 1.8847656, 2.4511719, -1.3183594, 3.453125, -0.13684082, -1.484375, -0.22045898, 0.30932617, 0.42700195, -1.1416016, 0.07269287, 0.8378906, 1.3066406, -0.11816406, 0.8779297, 0.36621094, 1.0361328, 1.2841797, 1.0078125, -1.3183594, -0.6166992, -2.59375, -2.4765625, -2.2363281, -3.4160156, -0.43115234, -0.7392578, 3.8261719, 1.3505859, 1.0761719, 1.9316406, 2.7519531, -0.7470703, -1.2060547, 2.7441406, 0.7792969, 1.2939453, 1.0146484, -1.4033203, -4.0039062, -2.4472656, -0.9692383, 0.9921875, -0.47021484, -0.6303711, -1.7441406, -2.2128906, -3.2578125, 0.36547852, 0.9770508, 2.2597656, 1.7792969, -0.6855469, 1.6054688, 1.1757812, -2.2089844, 2.4960938, -0.17041016, 3.0683594, -1.2441406, 2.1738281, 1.4169922, -0.07598877, 1.5449219, -2.3261719, 1.5341797, -0.5444336, 0.020187378, -0.05697632, -1.9521484, 1.3125, 1.0166016, 0.69433594, -2.4375, 0.7338867, -1.0888672, -0.76464844, -0.24853516, 0.16699219, 0.122558594, 1.8164062, 3.2753906, 1.2851562, -1.2539062, -2.4238281, -1.1171875, -1.6796875, 0.5175781, -0.099731445, 0.05255127, 1.484375, -0.114990234, -1.8300781, -0.6933594, -0.4116211, 1.2265625, 1.7285156, 4.3945312, 0.671875, 1.9111328, 2.0117188, -0.66064453, -0.2529297, 2.8105469, -2.6074219, 0.14868164, 0.37158203, 1.5615234, 1.0341797, 1.6259766, -0.3100586, 0.3876953, -1.9033203, -2.0625, 0.13671875, -0.24145508, -2.09375, 2.3535156, -0.6171875, 0.28027344, -3.25, 1.4140625, -0.09460449, -0.84765625, 0.007297516, -1.5986328, 2.6171875, 2.0976562, -0.41088867, -0.9995117, 0.9707031, 2.2558594, -3.4980469, 1.2685547, 1.609375, -1.8583984, -0.42211914, 3.5722656, 1.1660156, 1.3710938, 0.20361328, 1.3466797, -0.36547852, 3.0625, 1.1103516, -0.9501953, 0.45361328, 1.8134766, 0.050872803, 0.9453125, -1.2832031, -0.06866455, -0.63671875, -1.765625, -2.1347656, 1.3486328, 1.4072266, 2.2636719, 2.40625, -1.6953125, 0.41674805, -0.017974854, 1.3173828, -2.9179688, -0.050109863, -0.6230469, -0.6381836, -0.9458008, 1.7265625, -0.96972656, 1.2763672, 1.9492188, -0.46704102, -0.080444336, 0.11633301, 0.21826172, -1.6738281, 1.9462891, 0.25805664, -1.7597656, -0.69140625, 1.6054688, 0.6074219, -0.5517578, -1.1416016, 3.5878906, 0.43969727, -0.5371094, 1.3876953, -0.7705078, 1.4648438, 0.027694702, 1.0546875, -0.5029297, 0.9916992, -4.515625, -2.2011719, 0.52978516, -0.85595703, -1.6064453, 3.7832031, -0.42333984, -2.0273438, -2.2226562, 1.2792969, -1.4970703, -0.24645996, -0.31762695, -1.1455078, -0.7836914, -2.2871094, 3.4472656, -1.6669922, -2.3515625, -0.35986328, 1.8330078, 1.9658203, -1.4941406, -0.36547852, -0.64746094, 1.9990234, -1.1435547, 1.71875, -1.3935547, -0.7705078, 1.2763672, -0.6977539, 0.25976562, 0.66015625, -0.5004883, -1.375, 1.90625, -1.3007812, 0.36547852, -0.4946289, -1.3183594, 0.91552734, 4.6015625, 3.1328125, 0.9067383, -1.3837891, -3.71875, -1.3945312, -0.36694336, 0.51904297, -0.60791016, -1.21875, 0.05996704, 1.1865234, 2.4121094, 1.3916016, -1.1552734, -0.3190918, -1.1210938, 2.5, -1.1835938, 2.796875, -0.2734375, -1.0380859, 0.3203125, 1.3720703, 0.08856201, 1.4423828, 2.3886719, 0.8173828, 1.2441406, -1.7490234, -0.9169922, -1.2519531, 1.75, 2.1679688, 0.15795898, -0.25610352, 0.6015625, -2.3867188, -3.8417969, -1.2265625]}, "B07Y337Y8T": {"id": "B07Y337Y8T", "original": "Brand: COSIEST\nName: COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover\nDescription: \nFeatures: \u2705\u3010 Great Bowls of Fire! \u3011: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party\u2019s just begun in patio space or backyard.\n\u2705\u3010 Rockin\u2019 Bowl \u3011: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob.\n\u2705\u3010 Fire is so Delightful \u3011: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady.\n\u2705\u3010 Weights and Measures \u3011: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you\u2019ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people.\n\u2705\u3010 Warranty and Service \u3011: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!\n", "embedding": [-1.1542969, 1.6806641, 1.6074219, -1.3378906, 0.06762695, -0.11206055, 1.1259766, -2.6152344, -0.011245728, 1.0917969, -1.1132812, 1.8242188, -0.18408203, -4.359375, 0.80566406, -0.6640625, -0.43017578, -0.3869629, 0.32836914, 0.6904297, 2.8632812, -0.69189453, 1.4589844, -0.7011719, 2.6933594, 1.4853516, 3.0097656, -4.2539062, -1.6191406, 0.15771484, 1.4238281, 1.0419922, -0.5366211, 1.6845703, -3.046875, -1.890625, -0.69970703, 2.4433594, -2.6875, 0.2553711, -1.9433594, -0.26879883, 2.7207031, 1.2900391, -2.9394531, 1.4335938, 0.38891602, 0.2084961, -0.4074707, -2.0019531, -0.114868164, 1.3505859, 1.2402344, 0.52783203, -1.4550781, 1.4423828, -1.0742188, -2.0957031, 3.5195312, 0.9301758, 0.98583984, -1.1181641, -1.4042969, 1.8066406, -1.3974609, 0.90722656, -1.2255859, -0.5473633, -1.0644531, -0.16491699, 0.54345703, 0.112854004, -0.09692383, 0.4333496, 0.4729004, -1.15625, -0.8066406, 0.8857422, 1.6767578, -0.82128906, -0.67578125, 3.3300781, 1.0292969, -1.1357422, 0.035186768, -0.11669922, -1.8603516, -0.28222656, -1.0683594, 0.68603516, -0.4333496, 2.484375, -0.90771484, -5.046875, 0.5473633, -1.8691406, 0.02709961, -1.2548828, -0.7241211, 1.0908203, -0.7709961, 1.1298828, -1.6152344, 0.26391602, -2.3671875, 0.18261719, 1.0732422, 0.24450684, -0.67285156, -0.9790039, -0.6015625, -0.05960083, 1.3515625, 0.29833984, 1.2060547, 1.3535156, 0.5620117, -0.4440918, 3.6347656, 0.40600586, 4.5664062, -0.5439453, -0.12585449, -1.1035156, 0.26391602, 1.9824219, -2.8515625, 1.4306641, 1.7197266, -2.0175781, 0.6401367, -0.68408203, 1.6279297, -0.17797852, -1.9628906, -1.203125, -1.5107422, -0.97509766, -2.0214844, 0.20800781, -3.4394531, 1.2666016, 1.0986328, -0.38110352, -4.4101562, 0.44799805, -1.9433594, 2.4511719, -0.3491211, -1.5917969, -0.062072754, -0.3203125, 0.049560547, -1.4394531, 2.6425781, -0.34960938, 0.18127441, -3.5800781, 2.7519531, 0.828125, 0.92626953, -2.5039062, 0.07098389, 1.0009766, -1.3730469, -0.5600586, 0.82666016, -0.093811035, 0.5966797, 1.8037109, 0.016708374, -1.9013672, -0.31225586, 0.9267578, 0.5917969, -0.9838867, -1.3916016, 1.1259766, 1.6416016, 0.2121582, -2.1328125, -0.63378906, 2.0019531, 0.7373047, 0.6669922, -2.0878906, -0.119384766, -2.2695312, -0.0015678406, -1.5820312, -1.4443359, 0.42797852, -0.90527344, -0.35058594, -0.5161133, -1.8505859, -1.5693359, -1.2734375, 1.5966797, -0.058685303, -1.3974609, 0.61035156, -1.9570312, 0.61865234, -2.53125, -1.5742188, 0.21533203, 1.0898438, 2.1035156, 2.2929688, 0.51953125, -0.15710449, 0.70996094, -0.3972168, -0.74853516, -2.2382812, 0.81396484, 0.77685547, 2.5429688, 2.1464844, 1.0390625, -0.29248047, 0.28564453, 1.8789062, 1.1025391, 1.4589844, 0.6738281, -0.1352539, -2.5175781, -0.47094727, 1.7617188, 0.15014648, 0.14099121, 0.97265625, -1.1074219, 3.0761719, 1.7392578, -1.0537109, 1.546875, -2.1601562, 1.1455078, -1.9550781, -2.0078125, 1.3212891, -1.3115234, 1.9726562, -0.33032227, 1.1357422, 2.4707031, 0.85595703, -1.4863281, -0.60498047, 0.95410156, 0.90185547, -0.4892578, 0.018371582, -1.5546875, -0.44848633, 1.5625, -0.92089844, 1.2919922, 1.7363281, -1.484375, 0.16003418, 0.38745117, -0.70703125, -0.4296875, -0.5727539, -3.7285156, -0.1262207, 1.9394531, 1.2558594, 2.3027344, 1.0361328, 0.5488281, 1.4345703, -0.0848999, 1.1689453, -0.17480469, 3.1660156, 0.018920898, -0.25708008, 0.11669922, -2.6582031, 1.2011719, 1.6113281, 0.2487793, 1.0166016, -1.5341797, -0.7636719, 5.5195312, -1.5058594, -1.3095703, 1.5058594, -0.19946289, 0.24902344, 0.16601562, -1.0400391, -0.06524658, 0.5644531, 0.8828125, 1.1054688, -0.8354492, 2.0058594, -0.34887695, -0.6220703, 0.84375, -0.28149414, -0.58691406, 0.14257812, -1.1367188, -1.0800781, -1.2314453, 1.2939453, -1.6660156, -1.1289062, 2.3007812, -1.8583984, 1.8974609, 3.3632812, 1.0292969, 1.6396484, -1.3291016, -2.1875, -0.4333496, 2.3671875, -1.9824219, 1.5869141, -1.09375, -0.7050781, -1.2763672, -1.0292969, 1.6152344, -2.4179688, -1.2451172, -1.7011719, -0.0014619827, 1.4316406, 0.53564453, -2.4082031, 0.84277344, 1.0185547, -0.3540039, 0.4243164, -0.8535156, -2.4941406, -0.9013672, 0.14233398, -0.28881836, 0.26733398, 0.17346191, 1.3359375, 0.03869629, -4.1640625, -0.9638672, -0.72558594, 0.7792969, 0.39697266, -0.38964844, 0.22705078, -1.3496094, 1.3378906, 1.9931641, -1.4882812, 1.0019531, -0.76464844, -0.8725586, -3.3769531, 2.296875, -1.8212891, 0.2614746, -1.1777344, 0.7104492, -1.4042969, -1.4853516, 0.38500977, -1.0322266, 4.3710938, 0.7919922, 2.5996094, -1.2900391, -0.46142578, -0.19360352, -0.107666016, -1.8183594, 0.17504883, -1.6992188, -2.0488281, -2.7675781, -1.5976562, 0.43188477, -2.828125, -0.051818848, -0.24230957, 1.3085938, -0.09851074, 1.0820312, -0.32104492, 0.03717041, -0.39916992, -1.3691406, 1.2529297, 0.11291504, -1.3027344, -1.0166016, -0.9604492, -1.8837891, 1.0800781, 2.8984375, -0.9189453, 0.96777344, 2.015625, 0.2368164, 0.045562744, 0.9980469, -3.1328125, -0.2680664, 3.8945312, -0.90771484, 2.2636719, -2.109375, -0.36499023, -0.8183594, -1.5205078, 3.0839844, -0.42089844, 1.2197266, -0.03366089, -0.3947754, 0.9736328, -0.4831543, -0.49560547, 0.081726074, 0.5073242, 2.7148438, -2.4453125, -0.95458984, 0.8417969, 4.65625, -2.5585938, -1.0996094, 1.0898438, 0.7661133, 1.1816406, 0.75146484, 1.1455078, 1.4365234, -0.80810547, -0.68408203, 1.0429688, 1.7822266, 0.609375, -1.1845703, 2.0351562, 1.2871094, 0.47338867, 2.8183594, -0.27954102, 0.47094727, 3.0664062, 0.5107422, -1.734375, -0.45458984, -0.0035858154, 0.8125, -0.3708496, 1.8046875, -1.5058594, -0.7338867, -0.17456055, 0.3942871, 1.0107422, -0.92089844, 0.16259766, 1.1240234, -1.1279297, -1.3515625, -1.1171875, -0.1998291, -0.94433594, -1.6708984, 2.1582031, 0.4182129, 0.11993408, 0.42504883, -1.6025391, 0.082458496, -0.6386719, 2.4453125, -2.1074219, -1.8945312, 0.63378906, 1.7460938, -0.90966797, -2.5839844, -1.0341797, -1.5859375, -1.6611328, 3.78125, -0.19763184, -1.1679688, 0.5732422, -2.0683594, 1.2939453, 0.82470703, 1.1953125, 0.53027344, 0.1697998, 0.44262695, 0.17553711, 1.5595703, 1.3242188, 0.34155273, -3.0175781, 0.9423828, 0.13208008, 0.064575195, 1.8095703, -2.1054688, -2.0976562, 2.2011719, -0.66259766, 1.7275391, 0.14355469, 2.5488281, 1.4990234, -0.8178711, 3.1679688, -0.83496094, -0.6713867, -2.3613281, -3.3710938, 0.31298828, -2.3808594, 0.52441406, 1.8691406, -0.29907227, -0.55810547, -0.076049805, 0.9511719, -4.9648438, -0.7866211, -1.2949219, 1.6943359, -2.1679688, -1.1181641, 0.3540039, 1.3134766, -1.2841797, -0.79785156, 1.4267578, 0.46069336, 1.9599609, 0.028640747, 0.17529297, 1.4521484, -1.3378906, 0.23950195, 0.13500977, -0.11224365, 0.6176758, -1.2880859, 0.28393555, -0.7060547, 1.1611328, 0.20861816, -0.82958984, 0.7963867, 2.7851562, 1.3134766, 0.058898926, 2.5410156, -1.1210938, 1.8027344, 0.026641846, -0.74121094, -0.9941406, 0.6352539, 1.2832031, 0.43920898, 0.48706055, -0.15625, -1.8632812, 0.7583008, -0.53222656, 0.95703125, 1.3896484, 0.4609375, -1.9033203, 0.79589844, 1.3037109, -1.0605469, -1.3935547, -0.060028076, 1.6298828, -2.984375, -1.2285156, -1.9423828, 0.3527832, -1.0224609, -0.32226562, -0.8857422, 2.3457031, 1.7490234, 2.1464844, 3.2167969, -2.7988281, -1.8720703, 1.2509766, -0.2163086, 0.73046875, 0.8652344, 0.059631348, -0.80859375, 0.60498047, 0.14685059, -1.1279297, -0.28588867, 0.5830078, -0.99121094, 0.28759766, -0.5595703, -2.1308594, -2.4511719, 0.69091797, 0.37817383, -0.3972168, 0.0826416, -2.3828125, -0.5439453, -2.1113281, 1.2910156, -0.8574219, 1.0009766, -1.3779297, 0.21606445, 3.0546875, 1.5712891, 1.8349609, 0.1895752, 3.2617188, 0.60009766, 2.4375, -0.4880371, 1.4238281, -1.0058594, -0.92285156, -1.7167969, 0.59521484, 0.67285156, 2.4824219, 0.20532227, 1.4345703, 1.2089844, -1.9121094, 3.3535156, 0.22839355, -2.5996094, 0.2668457, -2.5429688, -1.8349609, 0.6479492, 0.5053711, -3.3398438, -0.75390625, 2.9375, -0.96240234, 3.0195312, 0.6298828, -1.5625, -0.18066406, -1.1308594, -1.6279297, -2.3808594, -0.6230469, -0.234375, -0.42504883, 0.3503418, -0.703125, 0.24023438, 1.2763672, 0.96191406, -0.66064453, 1.6308594, 0.32470703, -0.06427002, -0.47827148, -0.48535156, -0.6694336, 0.78466797, 2.1484375, -0.62109375, 1.8203125, -1.2871094, 3.2871094, -2.0566406, -0.3203125, -1.6464844, 1.3837891, -2.4042969, 0.390625, 0.92578125, -0.04937744, 0.515625, -2.421875, 0.36743164, 0.091552734, 1.0976562, -1.4521484, 0.72216797, -1.4248047, 0.037078857, -2.8007812, -2.0292969, -0.47729492, -1.2636719, -1.4492188, 0.083862305, -2.8769531, 0.6015625, 0.6123047, 1.5068359, -0.4206543, -0.1784668, 0.05419922, -0.6645508, -0.27539062, -1.5146484, 0.66845703, 1.4550781, 1.7109375, 0.7011719, 0.04336548, -1.2675781, -3.2089844, 0.26367188, 1.7646484, -1.1201172, 1.3515625, 0.038116455, -0.8828125, 1.9921875, 2.9199219, -1.4609375, -0.9296875, 1.0224609, -1.1699219, -0.53466797, 1.5625, -1.3339844, 1.2910156, 1.8701172, -0.57177734, 2.1523438, -0.75683594, 0.44335938, -1.0517578, 2.4628906, 1.4814453, 0.6386719, 0.3881836, -0.34033203, 1.0878906, 0.01272583, 1.15625, 1.4853516, -1.5654297, -1.1582031, -1.7050781, -2.4433594, -0.5986328, -2.0058594, 0.08911133, -1.0908203, -0.3046875, 1.2773438, 1.359375, 1.5410156, 1.8554688, -0.34985352, -0.69189453, 0.9746094, -0.45288086, 2.0175781, 1.1455078, -2.8378906, -3.3359375, -4.109375, 1.5986328, 0.93847656, -1.0019531, -1.9384766, -0.24694824, -1.7216797, 1.171875, -0.07678223, 2.2714844, 2.3945312, 1.6748047, -2.3476562, 0.62402344, 2.078125, -1.7919922, 0.27075195, 0.9926758, 2.1308594, 0.009643555, 0.5253906, 1.2724609, -1.5048828, 3.2792969, -0.71435547, 0.0052261353, -0.49194336, 0.50341797, 0.7573242, -1.1025391, -0.20715332, -1.1298828, -0.22766113, -1.4921875, 1.71875, 2.1074219, 0.15197754, -0.10650635, 0.55126953, -0.4465332, 1.2431641, 1.9736328, -0.10638428, -0.6928711, -1.203125, -1.6933594, 1.0908203, 1.1542969, -1.1191406, -0.6308594, 0.5629883, -0.7026367, -1.4667969, -0.42333984, 0.036621094, 1.4697266, 0.3552246, 2.7578125, 0.89697266, 0.36523438, 2.7539062, -0.95410156, 2.5859375, 1.296875, -0.7729492, -1.5908203, 1.5703125, 3.3769531, -0.8798828, -0.1652832, 0.55908203, 0.75683594, -1.6787109, -0.6870117, -0.04272461, 0.91845703, -2.7597656, 1.4404297, 0.33251953, -0.53515625, -1.15625, 1.7285156, -1.1611328, -0.4724121, -0.22753906, -0.89941406, 1.2558594, 0.045410156, 1.4570312, -0.8623047, 0.34375, -0.15893555, -2.703125, 1.1611328, 0.50439453, -3.2265625, -1.5410156, 3.84375, 2.6699219, 0.44628906, -1.1630859, 1.8847656, -0.38208008, 2.0195312, 1.8476562, -0.14758301, -0.5571289, -0.25634766, 2.578125, 1.3222656, -1.1933594, 0.7114258, -0.6015625, -3.5742188, -2.7988281, 0.06750488, 2.3769531, 1.953125, 0.61865234, -1.2158203, 0.14648438, 0.22106934, 2.6386719, -2.5273438, 1.0673828, 0.045898438, -1.9023438, 0.3190918, -0.8647461, 1.3789062, 2.796875, 2.5429688, -0.7363281, 1.6660156, 0.3322754, 1.1220703, 1.4648438, 1.0351562, -0.039123535, 0.45288086, -0.4724121, 2.9921875, 0.030822754, -0.8149414, -0.24279785, 2.4902344, 1.3740234, -0.10021973, 0.49389648, -2.3203125, 0.70654297, -2.2519531, -1.4238281, -1.4755859, -1.2158203, -0.8100586, 0.15039062, -0.8564453, 0.49267578, -0.049865723, 0.15991211, 0.78125, -0.71777344, -1.5195312, 1.3261719, -1.3037109, 1.046875, -1.5351562, -0.88720703, -0.39038086, 0.15637207, 1.5839844, -0.6923828, -1.4550781, -0.22106934, 2.5917969, 0.12756348, -0.76904297, 0.35083008, 0.17736816, 0.91015625, 0.48364258, 2.7988281, -1.5751953, 0.8408203, 1.0332031, 0.6777344, -0.6557617, 0.45214844, -0.08868408, -0.6152344, 1.0693359, -2.2792969, -0.032806396, -0.4177246, -3.109375, 0.0069999695, 4.2929688, 1.6494141, -0.22705078, -1.1503906, -5.3203125, -0.42456055, -0.3059082, 2.7734375, -1.1298828, -2.0585938, 0.04647827, 0.0670166, 3.2675781, -0.8017578, -0.4428711, -0.63964844, 1.2929688, 1.2607422, -0.18322754, 3.5332031, -0.2998047, -0.060028076, -0.5180664, 1.6035156, 1.3789062, -0.122802734, 1.0146484, 2.8417969, 0.2944336, -3.3847656, 0.36450195, -0.13427734, -1.1181641, 2.125, -0.64501953, 0.8496094, -0.2685547, -1.4443359, -4.6015625, -1.1787109]}, "B07Z3MSPMV": {"id": "B07Z3MSPMV", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze\nDescription: This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.\nFeatures: \u2600LIGHT WEIGHT AND PORTABLE \u2013 This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU's\n\u2600SAFTY DESIGN \u2013The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident\n\u2600WILDLY USE \u2013 Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use\n\u2600EASY AEESEMBLY \u2013 BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour\n\u2600MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating\n", "embedding": [-1.9833984, 2.3320312, 3.0742188, -0.61816406, 0.06707764, 1.2470703, 1.2089844, -1.5576172, -2.2382812, 4.2851562, 0.22912598, 0.47705078, 0.5732422, -2.0722656, 1.1523438, 0.6191406, 0.56933594, 2.0429688, 3.1660156, -0.9267578, 2.046875, -0.9189453, -1.5996094, -1.4892578, 0.10443115, -0.34399414, 3.0390625, -2.1289062, 0.15612793, -2.921875, 0.2454834, 1.8857422, -0.22912598, 2.2773438, -1.21875, -2.2773438, -0.94970703, 1.8125, -4.2148438, 0.40722656, -1.4873047, -2.2167969, 1.3701172, 0.51220703, -2.4453125, 0.86572266, 1.1708984, 0.7807617, 0.95751953, -0.7973633, 0.92041016, 0.7626953, 0.014717102, -1.1806641, -2.3320312, -0.16186523, -0.4428711, -3.2304688, 2.6953125, 1.0126953, -1.2314453, 0.5185547, -1.6494141, 3.9492188, 0.42773438, -0.1138916, -1.2275391, -1.3554688, -0.33862305, 0.3935547, 2.5234375, -0.77734375, -1.0234375, 0.14465332, 1.3466797, 0.39648438, -1.2773438, 0.97265625, 2.7148438, 0.5761719, -0.7265625, 0.031204224, 1.2119141, 0.9975586, -1.7539062, 0.58935547, -1.2480469, 0.62841797, -0.051239014, 1.5556641, -1.4697266, 2.7363281, -0.8256836, -2.3964844, 1.2041016, -2.4941406, 1.5556641, 1, -1.9228516, 1.3037109, -0.0077781677, 0.5810547, -0.49609375, -1.5839844, -0.91064453, -0.8461914, 3.2148438, 0.057647705, -0.12512207, -0.30664062, -1.8193359, -0.5078125, 3.0722656, -0.08215332, -0.98828125, 0.76904297, 0.6411133, 3.8085938, 5.5234375, 2.40625, 4.5390625, 0.45483398, 1.4941406, -2.3339844, 0.515625, 0.19995117, -0.03677368, -0.32910156, 2.9394531, -1.0820312, 0.07550049, -2.1386719, 0.5415039, 1.5644531, -1.2167969, -1.0576172, -1.0791016, -1.265625, -3.5195312, -0.93408203, -1.2060547, -0.2512207, 2.5605469, 1.1767578, -3.5664062, -1.1298828, -0.6098633, 2.7246094, -0.18835449, -0.29882812, 0.4765625, 0.052642822, -0.47827148, -1.6933594, -0.06274414, 1.4814453, 0.16174316, -1.6875, 4.6367188, 0.625, 2.0253906, -1.5234375, 0.5810547, 2.0332031, 1.5634766, -0.5234375, 2.0136719, 2.0742188, 0.71777344, 0.38549805, -0.34057617, -3.0605469, -0.2130127, 0.1373291, -0.6171875, -1.2470703, -1.1826172, 1.8427734, 0.3395996, -0.27612305, -2.3808594, -1.6513672, 1.3369141, 1.8837891, 1.8310547, -2.2929688, -2.6953125, -1.2333984, -1.8085938, -1.4296875, -0.88671875, 0.05529785, 0.6269531, -1.90625, -0.4399414, -2.5117188, -3.7578125, -2.2089844, 2.3261719, 0.7026367, -0.41992188, -1.0771484, -1.8632812, -0.69189453, -3.1269531, -3.1816406, -1.8769531, 0.028030396, -1.3125, 0.4416504, 0.5830078, 0.028564453, 1.5097656, -0.8461914, 0.014572144, -0.9873047, 2.2265625, -0.10424805, 1.5859375, 2.84375, -0.007888794, -0.77197266, 0.095214844, 3.4863281, -0.34716797, 2.2304688, 1.53125, -0.11303711, -1.2861328, -0.6191406, 3.1953125, 1.2431641, -0.091308594, 1.9228516, -1.0869141, 2.6503906, 0.5991211, -0.3527832, 0.71533203, -0.62646484, 1.2724609, -2.0488281, 0.16345215, 1.015625, -0.9609375, 0.63183594, -0.06817627, 1.4248047, 1.5185547, -0.46240234, 0.04800415, -0.6669922, -0.14904785, -1.2871094, -0.73828125, 0.98828125, -0.13635254, 1.0664062, -1.9433594, -1.8193359, 1.6806641, 1.5234375, -0.62646484, 0.36621094, -0.44335938, -0.6323242, 3.734375, 1.9794922, -4.890625, 0.8256836, 1.8720703, 1.7802734, 0.83691406, 0.3791504, 0.8261719, -0.43359375, -2.0703125, 2.5605469, 0.28198242, 0.68896484, 0.35327148, -1.3818359, 3.0097656, -1.1767578, -1.421875, -0.13171387, 0.25976562, 0.35180664, -0.9145508, 1.5605469, 2.3808594, -1.1035156, -2.0332031, 0.6069336, -1.7783203, 0.9667969, 1.7607422, -0.7705078, 0.043670654, -0.1463623, 1.5195312, 1.4951172, -0.671875, 0.84277344, -2.3574219, -0.5078125, -0.9770508, -3.2324219, 1.1738281, 0.83740234, -0.79345703, -1.8398438, -2.1835938, 0.5073242, -2.765625, -1.9082031, 2.2167969, -3.3652344, 1.7460938, 1.7021484, -1.1992188, 0.2331543, -1.8632812, -3.2285156, 0.5126953, -0.15771484, 0.020584106, -0.34033203, -0.6503906, -1.1220703, -1.4335938, -0.7114258, 2.8066406, -1.9765625, -1.8701172, -0.8779297, -2.4375, -0.7519531, 0.8339844, -0.7080078, 1.1230469, 1.1992188, -0.9770508, -0.028640747, -1.1591797, -1.9248047, 0.25317383, 2.5878906, -1.3544922, -1.8564453, 1.4599609, 0.7451172, -0.77197266, -5.15625, -0.3479004, 1.2763672, -0.1015625, -0.04333496, 0.8095703, 0.42382812, -2.1035156, 1.7666016, 0.83496094, 0.080566406, -0.28295898, -3.15625, -0.60595703, -5.5390625, 2.8769531, -0.77685547, 1.7734375, -0.35131836, -0.11932373, -1.4404297, -0.26220703, 1.7646484, -0.46362305, 3.5058594, -0.16467285, 1.7695312, -1.0429688, -0.8330078, 1.5214844, 0.4260254, -3.5214844, -1.7734375, -2.4804688, -0.515625, 0.1315918, -3.1210938, -0.44458008, -1.0292969, -0.71875, -0.27954102, 0.026473999, 0.7944336, 1.171875, -0.57714844, 0.31713867, -1.8818359, 0.6591797, 1.1835938, 1.1845703, -3.1289062, -1.9082031, -1.0830078, 0.50390625, -1.078125, 1.3242188, -0.22924805, 0.21923828, 1.3056641, -0.31274414, 0.16101074, -0.3334961, -3.4765625, 0.97265625, 1.4140625, 0.48901367, 0.2536621, -0.66064453, -0.59375, -1.7558594, -0.74072266, 2.8925781, 0.3244629, 3.1113281, -0.7949219, 0.8598633, 0.1171875, -0.18579102, -1.1757812, 0.09814453, -1.4267578, 1.7382812, -2.953125, -0.67871094, 1.0429688, 2.8164062, -1.5722656, 0.24108887, 1.2197266, 1.0126953, 2.4902344, -1.4990234, -0.34545898, 2.1152344, 1.3681641, -0.15734863, 1.2607422, 1.2929688, 0.06451416, -3.2636719, -0.09307861, 1.0849609, 2.2089844, 0.47021484, 1.5078125, 0.93847656, 1.6835938, 1.7666016, -2.9472656, 1.1835938, -0.30688477, 1.8886719, 0.083862305, 3.7265625, -1.8310547, -0.5654297, 0.53466797, 1.2275391, -0.47998047, -2.5878906, -0.45776367, 2.3613281, 1.8496094, -0.85058594, -1.4638672, 0.22949219, -0.38623047, -0.7001953, 0.28808594, 1.6113281, -1.0458984, -0.1348877, -2.609375, -0.82470703, 0.14880371, 2.0214844, 0.9863281, -3.8027344, -0.62890625, 1.1591797, -0.59228516, -2.0800781, -2.4589844, -2.4257812, -1.0361328, 4.0859375, -1.8466797, 0.53027344, 0.16271973, -1.2998047, 1.4804688, 0.74121094, 0.25097656, -1.1337891, 0.006526947, -2.0507812, -0.62890625, -0.44921875, 1.0410156, -0.015411377, -3.1269531, -0.48901367, -2.5527344, -1.7558594, 0.36914062, -0.47192383, -0.57177734, 2.2910156, 0.34375, 1.7607422, -1.1708984, 3.1953125, -2.6484375, -2.3925781, 1.2529297, -0.6035156, -0.19506836, -1.9521484, -5.0195312, 1.3242188, -1.7382812, -0.47998047, 1.2636719, -0.5083008, 0.73779297, -0.7207031, -0.25268555, -1.4853516, -4.3320312, -0.9223633, -0.022277832, -2.6738281, 0.65625, 2.3125, -1.0947266, -0.29492188, -2.6113281, 0.8300781, 1.0869141, 0.046783447, 1.0878906, 0.105407715, 1.1044922, -3.59375, 0.84277344, -0.4111328, 1.4609375, -0.8442383, -0.75927734, -0.22741699, -0.4543457, 3.9121094, -0.6069336, 0.05215454, 1.4785156, 3.5703125, 1.3691406, -1.2304688, 0.04058838, 0.66552734, 3.5898438, -0.7993164, -3.6035156, 0.21911621, -1.7060547, -0.19665527, -1.3095703, -0.95996094, 1.7070312, -0.81933594, -0.3774414, 1.9628906, 0.3774414, 2.4257812, 1.7783203, -3.859375, 1.4560547, 0.57910156, -3.375, -3.4921875, -0.045288086, -0.68408203, -0.66064453, 1.2363281, -0.96240234, 0.91064453, -0.21069336, -2.2675781, -1.4394531, 1.3544922, 4.6289062, 2.9726562, 1.7285156, -2.5332031, -2.4433594, 1.2099609, -0.63134766, -0.48388672, 2.3105469, 2.0820312, 1.2509766, 1.4179688, 2.9414062, -0.44750977, -0.09667969, 0.7680664, -1.5302734, 0.030151367, -0.46166992, -0.01576233, -0.21154785, -2.5175781, -0.4416504, 0.7421875, 2.3496094, -1.7363281, 0.9291992, -1.0917969, 0.3701172, -2.6289062, 0.11273193, -0.64501953, 0.48046875, -0.103637695, 1.46875, 1.1171875, -1.7324219, -0.1899414, -0.61279297, 2.8535156, -3.2011719, -0.7421875, 0.7421875, -0.98291016, 0.35107422, -0.39770508, 1.7470703, 0.5761719, 0.00015330315, 1.5390625, 1.8291016, -0.9736328, 1.3320312, 0.1315918, -1.5439453, 0.65527344, 0.4399414, -1.2636719, -0.5683594, -0.2376709, -1.703125, 0.45776367, 2.8125, -1.5693359, 1.4287109, 0.21325684, -1.7744141, -0.16625977, -2.6445312, -1.6474609, -1.6044922, -0.49194336, -0.33422852, -0.023880005, -0.5488281, -0.6977539, 1.3554688, 2.2089844, -0.017242432, -0.05340576, 3.2910156, 1.3496094, -1.421875, 0.34033203, -1.2607422, -0.036621094, 0.24682617, 1.0693359, 1.8105469, 0.32617188, 1.3144531, -0.65722656, -1.6679688, -0.15490723, -1.1484375, 3.4179688, -2.15625, -0.7758789, 2.5410156, 2.0546875, 0.49658203, -3.703125, -0.092285156, -0.9838867, 1.59375, -1.0009766, 1.3408203, 0.2644043, -1.3603516, -2.1992188, -3.1582031, -1.0957031, -0.36401367, -1.9023438, -0.43237305, -0.6557617, -2.1699219, -1.2255859, -1, 1.078125, 0.1998291, -0.20837402, -1.4794922, -0.2154541, 1.3925781, -0.17858887, 0.62841797, 0.1529541, -0.9370117, 0.5649414, -1.3144531, -2.2949219, -1.28125, 0.7451172, 0.24401855, 0.9428711, 0.7998047, -1.3300781, 1.2744141, 2.8203125, 0.30493164, -1.3769531, 2.2089844, 2.0234375, -0.12512207, 2.3027344, -0.43066406, 1.7490234, -0.23010254, -0.8730469, 1.2275391, 0.2800293, -1.4169922, 1.1992188, 1.4248047, 0.07208252, 0.61572266, 0.58984375, 0.31982422, 1.1621094, -0.62841797, 1.7666016, 1.046875, -1.7529297, -0.21411133, -3.140625, -1.4541016, -2.9609375, -0.47705078, -2.2285156, -0.72558594, 1.0507812, 1.8925781, 0.11102295, 0.47314453, 1.2832031, 0.8383789, -3.0371094, 1.1699219, 0.42749023, 2.6542969, 1.4736328, -1.3359375, -2.2636719, -4.4570312, -0.81591797, 0.024108887, 0.5966797, -1.9335938, 0.38623047, -1.6054688, 1.2783203, -0.3605957, 2.5605469, 1.5439453, 0.8769531, -1.3994141, 1.2998047, 1.8535156, -1.4453125, -0.70703125, -0.32348633, 2.8730469, -0.6401367, 5.1796875, 1.3300781, 0.029785156, 1.9365234, 0.7626953, 2.3828125, -1.5615234, -1.2617188, 2.4199219, -2.734375, -0.99853516, -0.5317383, -0.32958984, -2.5234375, -0.62353516, 1.5673828, 0.7685547, -1.1904297, 1.9150391, 0.49487305, -0.86035156, 1.65625, 0.14013672, -0.041229248, -0.40966797, -0.31835938, 1.4707031, 3.5488281, 2.78125, 2.3125, 0.7055664, 0.6225586, -0.94970703, 1.7070312, -0.9921875, 1.8603516, 1.2216797, 1.0585938, 2.8769531, -0.07550049, 3.2207031, -0.11798096, 0.95214844, 1.6611328, -1.9335938, 0.6225586, 0.7680664, 0.86083984, -2.0332031, -1.7216797, 0.24682617, 1.4179688, -1.7402344, -2.8417969, 0.39111328, 2.5371094, -0.4140625, 0.76904297, -0.42333984, 1.6923828, 0.2607422, -0.37890625, 1.1025391, 1.4853516, 0.8701172, 0.87890625, 1.2451172, -0.13366699, -1.8769531, 0.08288574, 1.0107422, 1.0429688, -1.6455078, 2.0019531, -1.4482422, -0.060791016, -0.4326172, 3.4277344, 2.6621094, 1.453125, -0.008079529, 1.3867188, 1.9013672, 0.6269531, 1.0214844, 1.3066406, -0.1739502, -0.16003418, 2.6054688, 2.4511719, -0.026107788, -0.8598633, 0.123291016, -0.97265625, -1.4072266, 1.2724609, 0.35717773, 0.73779297, 0.10003662, -0.08972168, 2.0371094, -0.08087158, 1.0898438, -2.7792969, 1.4609375, -0.6064453, -0.12054443, -0.07550049, 0.4248047, -1.2197266, 1.4072266, 1.5283203, -0.33862305, 1.8310547, -0.009269714, -1.6083984, 0.29882812, 0.11260986, -1.6533203, 1.6113281, -0.6660156, 1.8125, 1.1464844, 0.21044922, -0.6538086, 0.6958008, 2.5019531, -0.44848633, 0.20300293, -1.8925781, 1.1025391, 0.49780273, 0.92333984, 0.14990234, -0.9223633, 0.042114258, 1.0283203, -1.5927734, -1.0517578, -2.2089844, 1.5273438, 0.86376953, -0.7104492, 1.046875, 0.71484375, -0.5, 0.69140625, -0.6538086, -2.1855469, 0.08258057, -0.20532227, -0.26098633, -1.7109375, 0.101135254, -1.2099609, 0.32373047, 1.90625, 1.3310547, 0.2836914, -2.453125, -2.3320312, 0.7446289, 3.0546875, -0.12695312, 1.0214844, 0.43603516, -0.0073051453, -1.9658203, 1.8720703, -0.30322266, -0.022079468, -0.16894531, -3.1425781, 0.62841797, -0.21240234, -0.95654297, -0.50097656, 3.0390625, 1.0166016, 0.18530273, -2.3144531, -3.4238281, -0.83154297, 0.01260376, 2.0996094, -0.50146484, 0.46020508, -0.3251953, -1.2685547, 2.9765625, 1.7509766, -0.71435547, -0.51123047, -0.08099365, 0.7788086, -1.1113281, 1.2441406, 0.32543945, 0.13330078, -0.22351074, 1.2636719, 2.3554688, 1.2714844, 1.8125, 1.5322266, 0.036254883, -4.2734375, 0.10003662, -1.921875, 0.46679688, 0.6464844, 1.7783203, 0.81103516, -1.7802734, -0.4650879, -4.2265625, -0.88671875]}, "B00I8IY6E2": {"id": "B00I8IY6E2", "original": "Brand: Flame King\nName: Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White\nDescription: \nFeatures: For use on propane powered floor waxing, burnishing and polishing machine that use propane.\nComes with convenient installed propane level gauge, so you can always tell how much propane you have.\nPowder coated for long lasting exterior protection\nNewly designed all-in-one multi valve\nPowder coated for long lasting exterior protection, high grade steel welded construction\n", "embedding": [-1.1416016, 0.90283203, 1.7304688, 0.13391113, 2.203125, -1.8837891, 0.32373047, -0.37451172, 1.9658203, 0.37451172, 2.2734375, -0.5053711, -0.56103516, -2.2167969, 1.3818359, 0.6020508, -0.16772461, 1.765625, 2.0644531, 0.7861328, 2.1113281, 0.53808594, -0.7675781, -1.4345703, 0.41308594, -1.1816406, 3.9199219, -2.9667969, -0.45996094, 0.26733398, 0.06573486, -1.0791016, 1.3759766, 0.74365234, -2.3242188, -1.7783203, 0.26635742, -0.50878906, -5.65625, -0.4584961, -3.0976562, -0.78271484, -0.32714844, 1.1484375, -0.79296875, 0.5991211, 1.3984375, -0.79345703, -1.0751953, -0.50683594, 0.0048713684, 0.9716797, 0.12487793, 1.7265625, -0.08337402, 2.1757812, 0.45458984, -2.4882812, -0.34204102, 0.52001953, 2.4960938, -0.7241211, -2.2597656, 1.3652344, -0.9760742, 1.5283203, -0.42504883, -1.140625, 1.2001953, 2.4726562, 1.3740234, 0.8413086, 0.73046875, -1.3466797, -0.42333984, -0.3684082, -0.8310547, 1.9492188, -0.13745117, 1.2734375, 0.5053711, 1.2148438, -0.86816406, -3.4667969, -0.38110352, -1.4746094, 1.0664062, 0.56933594, -0.9892578, 1.4951172, 0.08862305, 2.2558594, -1.4091797, -3.8125, 1.3330078, -0.23205566, 1.4599609, 0.8652344, 2.1503906, 2.0683594, 1.0078125, -0.29248047, -0.5185547, 1.2001953, -2.0195312, -0.8847656, 1.0576172, 0.6508789, -2.1660156, 2.171875, 0.49780273, -1.0498047, 0.9458008, -0.3955078, -0.050476074, -0.3388672, -0.14892578, 1.6777344, 1.4160156, 1.2265625, 2.7285156, -2.4335938, 0.87109375, -0.4091797, 1.2460938, -0.14111328, 0.18041992, 1.1992188, 5.6289062, -0.5864258, 1.9101562, 0.6411133, 3.2207031, -0.8417969, 0.20227051, -1.9580078, -1.3427734, -2.5625, -2.2832031, -2.6972656, -3.4570312, 0.42871094, 0.5878906, -0.44628906, -2.0351562, -1.3964844, -0.49560547, -1.5234375, -1.5839844, -1.5371094, -0.29077148, -1.5839844, 0.3828125, -0.8876953, 0.2878418, 1.4199219, -1.0566406, -2.15625, 0.6455078, 2.3144531, 1.8779297, -1.6210938, 0.27856445, 1.3808594, -1.2568359, -2.3925781, 0.025772095, 0.8828125, 0.07952881, 1.7509766, 0.47192383, -1.0078125, 0.5932617, 0.06707764, 0.036315918, -0.62060547, 0.4260254, 1.7607422, 0.5703125, -0.5263672, -1.0126953, -0.9511719, -1.0166016, -3.0019531, 1.9404297, 1.1748047, 0.018936157, -2.1953125, 1.9121094, -2.0664062, -1.3212891, 2.7695312, -0.064208984, 0.7211914, -0.9135742, -1.9189453, -3.9550781, -3.4277344, 2.1171875, 0.7207031, -0.90771484, -2.1113281, 1.8916016, -0.42456055, -2.0800781, -2.6503906, -0.21264648, 1.1835938, -0.2619629, 1.4316406, -0.12939453, -0.9199219, 2.5546875, -3.5566406, -0.9448242, -2.7871094, -0.26953125, 0.7104492, 0.9711914, 2.3769531, 0.020584106, -1.1103516, 1.2148438, -0.25073242, 0.26538086, 2.0761719, 0.39282227, 0.7519531, -4.328125, -1.1835938, 2.46875, 1.5722656, -0.032592773, 1.3300781, -2.2617188, 1.6220703, -0.5678711, -1.3037109, 0.64501953, 0.0357666, 0.29077148, -0.38354492, -2.0742188, -0.9580078, -1.8144531, -0.064086914, -0.7734375, 0.028076172, 0.27783203, -1.2675781, 1.1640625, 0.8720703, 1.8076172, 0.9082031, -1.2070312, 1.8525391, 1.4980469, 0.58496094, 0.42529297, -2.6230469, 3.7128906, 0.27490234, -0.703125, 0.3088379, -1.0517578, -1.3017578, 4.2070312, 1.1210938, -1.4863281, -0.53808594, -0.30810547, 0.25854492, 0.9506836, -0.35913086, 1.3837891, 2.6777344, -3.2714844, 4.3046875, -1.8339844, 1.5576172, -0.38061523, -0.06011963, -0.21459961, -2.6386719, 1.3769531, -0.55566406, -0.20959473, 0.52001953, -1.8847656, 0.7363281, 4.7890625, -1.2714844, -2.3496094, 2.9902344, 0.65966797, 1.0488281, 3.9472656, 0.79248047, -0.4482422, -2.1367188, 1.2441406, 0.61816406, -1.6679688, -0.6953125, -0.12036133, -0.55615234, 2.7929688, -0.62597656, 0.7133789, -0.6972656, -1.6835938, 1.7246094, -1.3916016, 2.1503906, -1.8974609, 0.08001709, 2.0253906, -3.3847656, 2.6210938, -0.3544922, 0.72021484, 3.25, 0.82666016, 0.5444336, 0.023239136, 2.6132812, -1.0019531, 1.3984375, -0.2553711, -0.50097656, 0.26757812, -0.5649414, 0.70996094, -1.1855469, -0.6298828, 0.8413086, -0.5703125, -2.578125, 1.1552734, -2.1484375, 0.27563477, -0.03152466, -1.2890625, 1.5712891, -0.63964844, -0.7290039, -0.56152344, -0.10852051, -0.27172852, -1.3173828, 0.3017578, 3.7871094, 0.8383789, -3.3242188, 0.01586914, 0.6479492, -1.7822266, 1.1923828, -1.0615234, 0.37231445, -1.6083984, 0.828125, -0.009544373, -1.7900391, -0.9663086, -1.7714844, 2.1328125, -2.7285156, 3.1679688, -0.9379883, -0.18432617, -0.52783203, 1.4638672, -1.8085938, -3.9335938, -1.6748047, -0.4169922, 2.28125, 3.6835938, 1.8789062, -1.2949219, -0.50439453, 0.21118164, 0.062805176, -0.6333008, -0.06188965, 0.70751953, -1.2304688, -1.2226562, -3.1152344, 1.2890625, -1.2001953, -0.69921875, -0.6826172, 0.9008789, -2.4394531, -0.84765625, -0.9370117, 0.4128418, -0.95996094, 1.2626953, -1.9296875, -1.5566406, -0.36621094, -1.6992188, 0.07696533, -1.1328125, -0.5708008, 1.3242188, -0.60839844, 0.027511597, 0.89941406, -1.2822266, 1.0263672, 1.2177734, -2.9609375, 2.7734375, 1.71875, -0.035064697, 0.9116211, -3.4511719, -0.25878906, -1.65625, -0.96777344, 4.59375, 0.6010742, 0.83740234, -0.8178711, -0.70166016, 1.7607422, 0.80810547, -2.8652344, 0.30981445, -0.37475586, 1.9580078, -1.0771484, -2.0859375, -0.5263672, 0.96484375, -1.8857422, 0.20202637, 1.9697266, 0.07354736, 2.296875, 1.4892578, -0.89990234, 0.24060059, 1.4492188, 2.4453125, 2.1132812, 0.19995117, -0.8339844, -0.15588379, -0.06762695, 0.59814453, 0.24975586, 2.6464844, 2.3964844, 2.2851562, 0.8613281, 1.0888672, 0.16687012, -0.8071289, -0.51708984, 1.8115234, 1.0361328, 1.5302734, -0.40307617, 1.5546875, -0.86865234, 0.5600586, 1.3261719, -2.8085938, -0.39135742, 1.1210938, 0.93115234, -0.9814453, -1.3652344, -1.3339844, -1.2441406, -1.0751953, 2.4414062, -0.8071289, 0.83203125, -0.11505127, -1.5, 1.0615234, -3.6308594, 3.3847656, -0.3474121, -0.62890625, 0.29882812, 0.8676758, -0.15075684, -3.2324219, 0.72558594, -0.38183594, -1.4160156, 1.4814453, 0.2512207, -2.890625, -0.09588623, -2.8984375, 0.057128906, 0.95166016, -1.5839844, 0.9428711, 0.11920166, 1.7763672, -0.64453125, -0.017410278, 1.0107422, -0.37695312, -2.3398438, 0.8149414, -3.5957031, 2.1933594, 0.10797119, 0.14404297, -3.2714844, 1.1083984, -1.5917969, 2.4726562, 1.0908203, 3.1464844, -1.4023438, 1.4248047, 1.5537109, -2.2070312, -0.92626953, -0.34033203, -4.921875, 0.9580078, -0.8261719, -0.6245117, 2.0078125, -0.36572266, 0.035491943, -0.07977295, 0.2824707, -1.8710938, -1.3671875, 0.4658203, 3.0859375, -2.4726562, -0.6386719, 0.98291016, 2.0664062, -2.0996094, -1.4003906, 0.20861816, -1.4726562, -0.24816895, 0.8823242, -2.2773438, -1.2666016, 0.4230957, 0.6557617, 0.5756836, -1.3496094, 1.3837891, -0.062438965, -0.9628906, -2.1269531, 1.1523438, 2.3964844, 0.02999878, 0.52978516, 0.44726562, 1.1005859, -0.78808594, -1.3837891, -0.88720703, 2.703125, 0.28857422, -2.6484375, -0.13476562, 0.8833008, -0.515625, -1.9257812, 0.9716797, -1.5107422, 1.1591797, 2.1542969, 0.69433594, 2.8378906, 1.8789062, 0.48535156, -0.7993164, 0.74365234, 0.6010742, -1.1630859, 0.67871094, -0.41577148, 0.10650635, -1.7470703, 0.74121094, -2.9453125, -1.4550781, -0.5751953, 0.31884766, -4.7421875, 2.1484375, 2.5800781, 1.9570312, 0.38891602, -2.4238281, 0.67333984, -0.6689453, 0.036071777, -0.19836426, 1.7539062, -0.37426758, -1.0878906, -0.13977051, 2.5078125, -1.4580078, 0.3564453, 1.2841797, -1.3476562, -0.8149414, -0.74609375, 0.7338867, -2.4667969, 0.06726074, 0.05480957, 0.59277344, 3.8300781, -1.2167969, -1.3007812, 1.2832031, 0.7866211, 0.08935547, 0.28564453, -0.39941406, 0.16687012, 3.7011719, 1.015625, 0.8847656, 0.25952148, 2.0488281, -1.0693359, 1.9091797, -1.2978516, 0.46679688, -1.8232422, 1.5947266, -1.2158203, 0.46948242, 1.7001953, 0.63720703, -0.0020427704, 1.0263672, -0.43139648, -2.5273438, 0.38305664, 1.625, -2.7460938, -2.6210938, -0.41064453, -1.5917969, 2.8535156, -0.67578125, -2.765625, -0.41674805, 2.7617188, -0.2298584, 2.0703125, 0.84716797, -0.87158203, -1.8261719, -2.0390625, -0.83496094, -1.4101562, 0.17370605, 1.4345703, 0.62402344, 0.7529297, -1.8164062, -0.18725586, -0.5698242, 0.2775879, -0.21594238, 1.1005859, -0.41186523, -0.9042969, 0.9038086, 0.6879883, -0.76171875, 0.20959473, -0.6665039, 0.86865234, 0.69628906, 0.5854492, 2.4257812, -2.140625, -0.07342529, 0.7607422, 1.6689453, -1.1992188, -1.4033203, 2.3945312, -0.9838867, 1.0371094, -0.58984375, 1.0449219, -0.52490234, 1.2998047, 2.5761719, -1.59375, -1.7763672, -0.30419922, -2.3867188, -3.9238281, -1.4433594, 0.95947266, 0.4013672, 0.81347656, -2.9296875, -1.4785156, 0.52783203, -1.8408203, -0.5332031, -1.1054688, 0.12414551, -0.9501953, -1.7382812, -0.1459961, 1.1806641, 0.36743164, 1.1591797, -0.13305664, -1.0908203, -0.34985352, -1.3496094, -2.3574219, 0.37573242, -1.2402344, 0.35327148, 0.5654297, -1.1210938, 1.6083984, 2.4785156, 0.7783203, -3.7011719, 2.984375, -3.7714844, 1.0947266, 1.8623047, -2.5664062, -1.1884766, 0.6279297, -1.0458984, 1.5439453, 1.9658203, 1.4296875, -1.0791016, -2.203125, 0.88378906, 0.63183594, -1.9111328, 0.56396484, 0.9580078, 1.4628906, 0.5703125, 1.3876953, -0.92626953, -0.15039062, -2.4355469, -1.6318359, 1.1689453, -2.5742188, -0.31103516, -1.8886719, 0.8408203, 1.1162109, -0.17102051, 0.40478516, -0.16259766, -0.9194336, -2.0605469, 1.4667969, -1.9414062, 2.5878906, 3.2890625, -1.3261719, -3.0957031, -0.60546875, -0.30395508, 0.77734375, -0.53759766, -0.9970703, -0.0027103424, -0.33032227, 1.9736328, -0.3173828, 1.1386719, 1.1240234, 1.140625, 0.012687683, 1.3349609, 1.3994141, -1.6533203, 2.5371094, 0.23095703, 0.086364746, 0.5175781, 2.9257812, 2.6894531, -3.2050781, 0.22253418, -1.2138672, 0.6982422, 0.35253906, -0.57128906, -0.7368164, -3.0800781, -0.73876953, 0.65283203, -0.89941406, -4.7226562, 0.49389648, 0.26586914, -1.5976562, -0.87890625, -0.75390625, -0.16882324, -0.12597656, 2.1367188, 1.5292969, -1.5175781, 0.7792969, 1.046875, -0.3791504, 2.9433594, -2.2714844, 0.94970703, 1.8808594, 0.45654297, -1.0546875, -0.17785645, -2.3632812, 1.5107422, 1.5654297, 0.3930664, 3.4863281, -0.88378906, 1.5351562, 0.4104004, 1.6328125, 3.671875, 0.8925781, 0.60791016, 0.9536133, 1.6816406, 1.4667969, -0.9707031, -0.10913086, -0.8046875, 1.2226562, -0.13293457, 1.1162109, -0.41015625, -0.54589844, 1.3945312, -1.9365234, -0.02027893, -0.36743164, 0.10864258, -2.7109375, -0.26391602, 0.39208984, 0.33129883, 0.57373047, 0.09698486, 2.7949219, 0.58691406, 0.38476562, 1.2773438, -1.2265625, -0.4987793, -1.6435547, -0.8095703, 2.0332031, 3.109375, 0.08300781, 0.74365234, -1.4160156, -1.3623047, -0.92578125, 0.2607422, 0.6308594, -1.3496094, 0.52197266, 1.2197266, -0.4716797, 2.3691406, -0.36938477, 3.1289062, 2.109375, -1.0410156, -2.8046875, 2.4941406, 0.6567383, -1.1845703, 0.9633789, 0.1463623, 0.016906738, -1.8564453, 0.6611328, -2.8027344, 0.99853516, -1.3242188, -0.55371094, 1.6318359, 1.2304688, -0.5859375, 2.5703125, 1.5654297, -1.1796875, 0.44555664, -0.69970703, 1.6083984, -0.34765625, 0.26782227, -0.35742188, -0.027267456, -2.8828125, 3.6640625, -0.15209961, 0.035095215, -2.40625, 2.4257812, 0.24084473, -0.3149414, 1.1054688, 1.0322266, 1.0947266, -0.45483398, 2.6933594, 1.3027344, -1.6171875, -0.69091797, -0.0025959015, 0.13000488, 1.4560547, -3.5292969, 1.8583984, -0.034057617, -2.3261719, -1.4189453, 2.0664062, -0.63427734, 0.29541016, 0.11920166, -1.6367188, -2.1601562, 1.2363281, 2.0058594, -1.3398438, -1.1582031, 1.1611328, 1.9082031, -0.76904297, -0.85302734, -0.33007812, 0.079711914, 0.22509766, -0.72558594, 1.6142578, -0.8408203, -1.0488281, 1.0683594, -0.0028038025, 2.1054688, 0.51464844, -0.5419922, 1.2529297, 0.5966797, -1.3603516, 1.2460938, 2.1035156, -1.2460938, -0.75, 1.8330078, 2.6777344, 0.6738281, -1.2822266, -3.234375, -0.8569336, -0.3005371, 0.8305664, 0.62353516, -2.2050781, -0.8300781, 1.0205078, 2.9082031, -0.3083496, -0.5473633, 1.1552734, 0.8432617, 1.5253906, -1.2177734, 3.203125, -0.19543457, -0.90283203, 0.2619629, 2.0527344, 0.09008789, -0.29370117, -0.37329102, 1.2460938, -1.1513672, -0.7871094, -0.7998047, -1.8408203, 0.54785156, 1.0957031, 2.4238281, 1.4677734, 0.9560547, -0.36572266, -1.203125, -0.37158203]}, "B014DAVHSQ": {"id": "B014DAVHSQ", "original": "Brand: ThermoPro\nName: ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer\nDescription: \nFeatures: 300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use\nDual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions\nFood and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ\nConvenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything\nHigh accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32\u00b0f to 572\u00b0f (0\u00b0c to 300\u00b0c) and high accuracy of 1. 8\u00b0f ( 1\u00b0c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings\n", "embedding": [-4.6835938, 1.6035156, 4.5195312, 1.09375, -0.3491211, 0.9472656, -1.0976562, 0.74365234, -0.23913574, 0.8857422, 0.56884766, 0.05340576, -0.9794922, -0.6035156, -0.12243652, 1.1953125, 0.075805664, 0.20959473, 1.3105469, 3.6542969, 1.8896484, 1.828125, -0.28979492, -0.7207031, 2.0058594, -0.3881836, 1.4628906, -2.2519531, -0.4152832, -1.6982422, 2.7714844, 3.15625, 0.43115234, 0.32885742, -1.4228516, -0.17199707, -0.6611328, 0.007183075, 1.4472656, -0.3557129, 0.11657715, 1.4453125, 0.29003906, 2.7714844, -3.3457031, -2.3828125, -1.0996094, 1.671875, -2.1035156, 0.49975586, 0.047424316, 1.7773438, -2.0214844, 0.40551758, 0.5078125, 0.6542969, 0.6972656, -2.3183594, 0.8745117, 1.3144531, -0.09625244, 0.31713867, -1.5029297, 0.5229492, 1.4052734, 0.0016126633, 1.1679688, -2.7929688, 0.23327637, -0.45092773, 0.55566406, 0.48632812, 0.66796875, 1.4511719, 1.4296875, -1.8662109, -0.5209961, 0.65771484, 2.0136719, 0.7128906, -0.21118164, 2.953125, 0.24475098, -1.3847656, 0.89208984, -2.1054688, 0.45288086, 0.71240234, 2.6855469, -0.92041016, -0.140625, 2.8417969, -2.2148438, -2.9433594, 1.3164062, -2.1503906, -0.9082031, -0.4140625, -1.2392578, 2.0878906, -0.9448242, -1.0722656, 0.108947754, 1.4628906, -2.0234375, -2.3457031, 0.8510742, 1.8066406, -3.6777344, -0.96875, -1.7041016, 1.5361328, -0.56396484, 0.07293701, -0.6274414, -1.2109375, -0.29736328, 0.9760742, 0.10522461, 1.4394531, 2.71875, -1.5419922, 0.9111328, -0.15625, -0.28076172, 0.74316406, 2.3710938, -0.17822266, 1.9550781, 0.103027344, -2.1074219, -0.6020508, 0.05456543, -1.0058594, 2.3828125, -2.3183594, -1.9990234, -1.6425781, -1.7373047, -1.2587891, -2.0625, 0.9008789, 0.20288086, 0.91015625, -1.3447266, -2.125, 1.3144531, 0.39648438, 2.9863281, -1.8037109, 0.89160156, -1.9013672, -0.2442627, -0.74121094, 1.9755859, 1.515625, -1.1748047, -0.13122559, 3.0683594, 1.2724609, 0.29785156, -1.2041016, -1.1376953, 0.31884766, 1.5478516, -0.93603516, -2.9492188, 1.5976562, 0.95654297, 2.9238281, 1.3320312, -0.74560547, 1.5703125, -0.42749023, 1.2578125, -3.5273438, 2.8515625, 3.3339844, 1.3632812, 1.5087891, -0.8671875, -1.0556641, 0.5678711, 1.2363281, -0.8847656, -2.8359375, -1.1132812, 1.2861328, 2.9316406, -3.0976562, 1.8681641, 2.4902344, 2.0175781, 0.26293945, 0.11071777, -0.671875, -1.015625, -2.9179688, 0.89990234, 1.2226562, -0.99853516, 0.50878906, -2.3984375, -3.3925781, -1.3564453, -1.7451172, -0.099853516, -0.38427734, 1.3681641, 1.2900391, -0.24938965, -2.8496094, 0.46899414, -0.7993164, 0.40844727, -2.4726562, 1.7841797, 0.121154785, -0.29882812, 1.8408203, -0.18432617, -0.21142578, 1.0722656, 3.3710938, -1.7490234, 2.9726562, -1.8349609, 1.578125, -1.6054688, -0.8730469, 2.9902344, -0.7416992, 0.66552734, -1.7246094, 0.015457153, 1.4873047, 0.9199219, -1.7412109, -1.1660156, 1.46875, -0.16564941, -2.203125, -0.10021973, -1.5087891, -1.1396484, -1.7910156, -1.3535156, 4.046875, 1.6191406, -0.8886719, -0.015930176, 0.55371094, 0.48876953, 0.46606445, 0.07727051, -0.28344727, -0.36889648, 1.1162109, -3.4824219, -1.7265625, 1.4951172, -0.7890625, -1.5976562, 2.0957031, 2.2519531, 0.39892578, 4.890625, 2.5214844, -0.9897461, -1.4130859, 0.088134766, -0.5073242, -2.09375, 0.32128906, 1.8730469, 1.2392578, 1.2099609, 0.2626953, 1.6074219, -2.3359375, 0.5229492, 2.28125, -1.0908203, -0.9370117, 0.8066406, 0.40966797, -1.5722656, -2.3554688, -0.65185547, 1.015625, 3.640625, 1.0322266, -2.9589844, 2.4570312, -3.6875, 1.6894531, -1.0722656, -0.9116211, 1.6347656, -1.5888672, 1.7431641, -0.014320374, -2.1953125, -1.0927734, 0.18713379, -0.6870117, 1.8447266, -1.6757812, 2.2226562, 0.72998047, 1.1572266, -1.2158203, -2.9511719, -0.29418945, -1.2119141, -3.2480469, -0.050689697, -2.6542969, 0.5839844, -1.1953125, 1.6953125, 2.8046875, 1.5292969, -0.84277344, 1.578125, 1.8837891, -0.13623047, 0.5463867, 0.9135742, -0.6699219, 1.3984375, -1.1074219, 0.6557617, -0.6933594, -2.9355469, 0.33569336, -1.2626953, -1.0517578, 0.2861328, 0.4736328, -2.2714844, 1.9414062, -1.8076172, -1.1279297, -0.8442383, -2.4238281, -0.49658203, -1.0585938, -0.29833984, -0.30737305, -0.061523438, -0.07116699, -0.28173828, -1.7333984, 1.5273438, 0.94091797, -1.3662109, 0.06274414, -3.0800781, 1.1181641, -2.5957031, -0.42626953, 0.49414062, 1.4355469, 0.70458984, -1.7324219, 1.5517578, -1.0224609, -0.37695312, -1.9755859, 0.11279297, -2.4121094, -0.39672852, -1.5644531, -0.7558594, 0.4597168, 1.4179688, 1.4111328, -1.859375, 3.6816406, -2.8632812, 1.3964844, 1.6933594, 2.2558594, -1.6806641, -2.3105469, 0.030014038, -2.4785156, -1.2246094, -3.4042969, 0.051635742, -0.17810059, 2.1484375, 0.09869385, 0.32861328, -1.4892578, 1.3017578, -1.7783203, -3.0253906, -0.33496094, 1.6318359, -2.0410156, -1.2363281, -2.4707031, -0.5834961, -1.8193359, -2.4042969, 0.53027344, 1.9375, 0.6171875, 3.3339844, 1.8818359, 0.39135742, -0.6489258, -0.2376709, -3.5097656, 0.86279297, 0.75683594, -2.9199219, -0.6616211, 0.19482422, -0.7416992, 1.1054688, 0.030014038, 3.4414062, 0.5883789, 3.9199219, -0.3413086, -0.0070228577, 2.0039062, 1.4130859, 0.39111328, -0.25024414, 1.8037109, 0.7602539, -4.8164062, -2.2324219, 0.4086914, 1.1523438, -0.9277344, -3.1777344, 0.9863281, 2.109375, 3.2460938, 0.6557617, -1.4560547, -0.93847656, -1.9013672, 1.6035156, -0.2006836, -1.6484375, -1.5996094, -0.26367188, 0.34643555, 0.93652344, 0.35839844, 3.6445312, -0.12390137, 2.2402344, 1.2773438, 0.7216797, -1.9511719, -2.671875, 0.63378906, 1.4794922, 1.3564453, 1.1640625, 0.515625, -0.98339844, -0.12243652, 1.3007812, 0.8544922, -1.5996094, -0.38232422, 0.9199219, -0.42529297, 0.87109375, 0.5029297, -0.36865234, -0.81152344, -2.3300781, -1.1875, 0.9863281, -0.8198242, 2.6855469, -0.43969727, -1.4863281, -1.8984375, 1.0068359, -0.16357422, 0.42651367, -0.87060547, 1.5908203, -1.2714844, -1.1044922, -0.064208984, 0.31079102, -0.40966797, -1.3085938, -0.17736816, 0.73095703, -0.9770508, -1.6875, 0.6113281, 2.0058594, -2.6289062, -2.1054688, -0.122680664, 2.21875, 2.3613281, 0.59277344, -0.4177246, -0.015571594, 0.12145996, -1.8496094, -3.6171875, 0.43579102, 1.4501953, -1.3769531, 0.8071289, 1.1728516, 2.3789062, 0.4255371, -1.1464844, 1.3486328, 0.30273438, -3.53125, 0.3317871, -2.7695312, -0.8378906, -2.1816406, -4.5234375, 1.7333984, -0.55078125, 2.0761719, 2.1464844, 0.9316406, 1.1279297, 1.828125, 1.7001953, -2.2949219, -1.7617188, -1.03125, -0.48339844, -0.39331055, -1.3076172, 6.1796875, 1.2929688, -0.1628418, -0.7998047, -0.99316406, 1.015625, 2.8496094, 1.4482422, 1.4892578, 0.3383789, -0.86083984, 0.1104126, -0.60302734, 0.4658203, 0.26464844, -0.75341797, -0.40966797, -0.8803711, 1.53125, -2.9726562, 0.0021705627, -2.6210938, 2.5195312, -0.117492676, -0.044281006, -1.0283203, 1.5107422, 1.5292969, -0.13928223, -1.171875, -0.42504883, -0.9873047, 2.140625, 0.14990234, -1.0136719, -0.79296875, -3.6484375, -1.3095703, -0.53564453, -0.6352539, 0.90527344, 1.8271484, -2.2382812, -0.21875, 0.5498047, -1.0908203, -1.6708984, -1.6015625, -2.9902344, -0.2319336, 1.2685547, 1.4423828, 1.0908203, -0.85302734, -0.8203125, -3.6367188, 3.3027344, 3.1699219, 1.0644531, 3.6074219, -0.07373047, -0.48266602, 0.20117188, -0.6538086, -0.5703125, -1.2314453, 0.7260742, -0.4465332, 0.05618286, 1.9228516, -1.8066406, -1.53125, 0.78027344, 0.71875, 0.6123047, -0.44189453, 1.4140625, -0.8198242, 1.0439453, 4.78125, 0.10211182, 3.6953125, -1.1005859, 1.640625, -0.25097656, -1.6806641, -0.1550293, 0.2163086, 0.82177734, 0.0904541, -0.78125, -0.4033203, 2.6972656, -1.0419922, 0.39575195, 0.67626953, 0.010513306, 1.3398438, 2.2753906, 0.68652344, 1.1464844, -2.6464844, -1.5253906, 2.6503906, 2.5058594, -0.6113281, 4.8125, 0.3400879, -2.1816406, -0.4716797, 2.7148438, -1.5517578, 1.8945312, -0.9501953, -2.0644531, 0.42016602, -0.9121094, -2.3125, 0.4387207, 3.5488281, -0.7480469, 2.2636719, -2.1269531, -1.1572266, 2.6308594, -3.5546875, -0.11791992, 0.25683594, -1.1435547, 3.1230469, -1.5566406, -2.2773438, -1.0898438, 2.3925781, 2.0214844, -1.7626953, -1.6318359, 0.35961914, -2.8867188, -2.0761719, -0.40234375, -2.0585938, -3.0820312, -1.2988281, 1.03125, -0.7011719, -1.2207031, 0.5527344, 1.6933594, -0.9033203, -0.6923828, -0.7607422, 4.0351562, -1.1708984, -0.43969727, -0.19714355, 0.63916016, -1.5205078, 0.64501953, 0.49194336, -2.1230469, 1.2207031, 2.1855469, -0.984375, -0.8183594, 0.011779785, -2.5097656, -3.7636719, -1.4511719, 1.2333984, 1.3046875, -0.7783203, 0.124938965, 0.31225586, -0.87890625, -0.97265625, 0.006088257, -0.6660156, 0.9345703, -0.77441406, 0.765625, -1.2851562, -0.1529541, -1.0058594, 1.0361328, 0.58251953, 1.2851562, -1.9960938, -2.7734375, -0.9267578, -0.4621582, -2.1875, -2.7792969, 1.0732422, 1.8603516, -2.4667969, 0.95947266, 0.037628174, -1.9072266, 2.6542969, -1.5292969, 0.9008789, 0.38232422, 0.39038086, 1.8447266, -2.4882812, 1.2851562, 1.3193359, -0.5449219, 0.20837402, 1.3896484, -3.0566406, 1.8291016, 0.37402344, -2.3515625, -2.3222656, -1.7060547, -0.42749023, 0.4326172, 0.18408203, 0.47558594, 1.6767578, -2.21875, -5.7890625, -0.81591797, -1.0654297, 0.3154297, -2.2324219, 0.6113281, 2.6367188, -0.35473633, 2.0878906, -0.25219727, 0.65722656, -3.2148438, 0.24951172, 1.7363281, 1.7939453, 0.48364258, -0.56396484, -0.58251953, -1.9101562, -0.46191406, 2.4707031, -1.0742188, -2.0019531, 0.5004883, -1.7128906, -1.4140625, 2.0664062, 3.1152344, -0.3803711, -1.8925781, 0.6879883, 0.11920166, 2.984375, -1.6572266, 0.22912598, 0.1932373, 2.6777344, -1.6953125, 4.09375, -0.6040039, -2.125, 0.46118164, -1.421875, -0.4897461, -0.59375, -1.0527344, 1.9863281, -1.2363281, -0.5600586, 1.5615234, -3.4335938, -0.55078125, 1.5244141, 2.8378906, -0.44335938, -0.6508789, 4.8164062, 1.2626953, 0.46850586, 2.3964844, -1.0908203, 0.87939453, -0.65771484, -1.4111328, -1.9765625, 1.4824219, -1.4960938, 0.43066406, 1.3125, 0.17883301, -2.5625, 2.6074219, 0.328125, 2.5507812, 0.9897461, 2.7519531, 2.5292969, 2.2011719, 2.7792969, 1.0644531, 3.0917969, 0.75683594, -1.5791016, -0.21777344, 2.0917969, 0.8334961, 0.39746094, -1.9472656, 1.2363281, -0.40551758, 0.26367188, 0.20373535, 1.2294922, -0.86328125, -0.24902344, 1.2666016, -0.035125732, 0.44140625, -4.4296875, -0.21044922, -0.2734375, 1.6757812, -2.84375, 3.7617188, 0.7133789, -1.8222656, 1.1542969, -0.5292969, -0.12854004, 1.0732422, -2.6992188, 1.5166016, 1.5576172, -1.4355469, -1.5419922, 1.6347656, 0.5205078, 1.7050781, 2.3417969, -0.7294922, -1.0527344, 0.85009766, 1.3798828, -0.13537598, -1.5537109, 0.048583984, 2.0800781, -1.0644531, -0.9301758, 0.64404297, -0.41723633, -3.6796875, 0.34545898, 1.890625, -0.84814453, 2.3339844, -1.6572266, -2.4472656, 2.0332031, 0.07678223, 0.43823242, -0.72509766, 0.32861328, 0.34838867, 1.7060547, 2.0878906, 1.4130859, 0.87939453, 1.5478516, -2.5683594, -2.6015625, -0.7392578, -0.9248047, 1.2216797, 2.0234375, 0.53515625, -0.9902344, 0.14746094, 1.0566406, 3.0683594, -0.98535156, -1.3203125, -2.6171875, 1.2587891, -0.7001953, 1.5517578, -0.20446777, -3.9921875, -0.73583984, -0.57373047, -2.1054688, -1.6894531, -0.1965332, 0.6982422, 0.7294922, -1.7089844, 0.52197266, 0.82958984, 1.8896484, 1.2744141, 0.7416992, 2.109375, 1.5976562, -2.0859375, 2.5175781, 1.3642578, -0.7783203, 1.4892578, 0.13562012, 1.6748047, -0.421875, 0.075927734, -0.3491211, 0.029800415, -0.22790527, 0.65771484, 0.37109375, 2.5859375, 0.7363281, 0.7158203, 0.57714844, -0.9238281, 0.71875, -2.109375, -3.1542969, 1.0839844, 2.1816406, 0.61816406, -0.015716553, -1.7734375, -0.5908203, -0.87646484, 0.27075195, 0.40039062, 1.4541016, 2.8964844, 2.4863281, -0.3647461, -0.8442383, -1.4150391, -1.3720703, -0.22741699, -1.9150391, -0.00031805038, 0.63378906, 1.4296875, -0.7553711, 0.6767578, 0.095825195, -0.5888672, -0.98828125, -2.1445312, 0.38305664, -1.6181641, 0.9589844, -0.72509766, 0.84375, 0.07946777, 0.8696289, 1.4316406, 1.7978516, 3.3203125, 3.1367188, 1.4306641, -2.7929688, -2.3886719, 2.0859375, 1.7021484, 0.72314453, 2.125, -0.47827148, -1.5380859, -1.1201172, -1.1992188, -0.80322266]}, "B000QYNUXE": {"id": "B000QYNUXE", "original": "Brand: Garcima\nName: GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro\nDescription: \nFeatures: Medidas: 400mm.\nColor negro.\nMuy pr\u00e1ctico y f\u00e1cil de usar.\nArticulo tambi\u00e9n conocido como hornillo, hornilla cocina, fuego paellas.\nIdeal para cocinar con paellera.\n", "embedding": [-1.6962891, 0.58984375, 1.9716797, 0.16967773, 0.16662598, 0.1307373, -0.99316406, -2.6230469, 1.2958984, 0.6269531, -0.08728027, 0.64208984, -1.2041016, -1.3339844, 1.3828125, -0.06964111, 1.7822266, 1.1630859, -0.015975952, 1.1210938, 3.1074219, -0.19262695, 1.0273438, -2.5371094, 2.1425781, 1.5390625, 9.3125, -0.70654297, 1.4355469, -0.3828125, 0.44458008, 0.7783203, -2.890625, -0.03829956, -1.0058594, -1.5576172, 1.8134766, -0.66259766, -1.4453125, 0.86328125, 1.2353516, 0.47753906, 0.124938965, 0.10211182, -1.2148438, 0.7260742, 1.2373047, 0.42041016, 0.18823242, 0.51171875, 0.9663086, 1.0634766, -3.0195312, -1.0507812, 1.9130859, 0.28833008, 0.7114258, -1.4365234, -1.4541016, 1.09375, 0.6166992, 1.765625, -0.52685547, 0.5205078, -0.62939453, 0.46850586, -1.6367188, 0.45825195, -1.1210938, 3.4863281, 1.9160156, -0.83203125, 1.5058594, 0.027252197, 0.37670898, -1.4482422, -3.3085938, 1.2041016, 1.4208984, -1.9511719, 0.94189453, -1.0615234, 2.4042969, -1.78125, -1.7207031, -2.4667969, -0.7495117, 0.0030937195, -1.1875, 0.5058594, 0.578125, 0.7783203, -1.2089844, -4.0351562, -0.11260986, -0.16247559, -3.0761719, 0.70166016, -0.6640625, 1.609375, 0.8017578, 0.75341797, 1.5029297, -0.27905273, -4.3242188, -1.1865234, 2.1601562, -0.46850586, -3.1972656, 1.2587891, -3.1425781, -2.2441406, 0.8691406, 1.6894531, 1.3085938, 1.6542969, 0.030914307, 0.89208984, 1.4238281, 1.0869141, 3.0898438, -1.3837891, 0.35229492, -0.3552246, 0.23352051, 0.5239258, -0.3503418, 1.03125, 2.8378906, -1.9912109, 1.0126953, 0.48461914, 2.5371094, -0.98291016, 0.33325195, -1.3476562, 1.2373047, -1.5673828, -1.3896484, -1.3154297, -2.9082031, 0.62646484, 0.20678711, -1.5839844, -2.328125, -1.5087891, -1.3339844, 1.4248047, -2.2167969, -2.3359375, -1.1689453, -0.60791016, 0.8491211, -0.015205383, 0.9667969, -1.5830078, -0.77734375, -3.3027344, 3.2558594, -0.9711914, 0.37402344, 0.09838867, -1.2314453, 0.5605469, -3.5507812, 0.80810547, -1.0068359, 1.8066406, -0.017837524, 0.734375, -1.6337891, 0.2565918, -0.7597656, -2.5996094, -0.84277344, -0.39672852, -0.5083008, 1.4833984, 1.8212891, 0.76171875, -0.14770508, -0.20837402, -0.36401367, -0.34228516, 1.3583984, -0.83984375, -1.1513672, -1.1835938, 0.072753906, -0.09277344, -0.08905029, -0.45361328, 0.375, 2.0078125, 0.10192871, -1.9091797, 0.4970703, 0.8330078, 0.12658691, 0.5854492, -2.7324219, -0.14941406, -0.49194336, 0.3359375, -0.9584961, 0.09112549, 0.8378906, -0.24523926, 0.21386719, -0.38842773, 3.4296875, 0.34033203, 2.5117188, 1.4091797, 1.8203125, -1.9384766, -0.38623047, -0.4086914, 1.1357422, 0.36645508, -1.4785156, -0.12890625, 0.38964844, -1.3300781, 1.5898438, 1.28125, -2.3242188, 0.058898926, -0.0592041, -2.2421875, 2.4121094, 1.3232422, 0.29858398, -0.1307373, 0.8076172, 0.48486328, -1.3740234, -0.23522949, 0.8017578, -0.80908203, 1.8847656, -0.0947876, -0.5625, -1.8144531, 0.93066406, -0.06335449, 0.21838379, -0.64697266, 0.3671875, 1.3349609, 0.18640137, 1.4140625, -1.3925781, -0.021392822, -0.8364258, -0.018600464, -0.9345703, 0.8105469, -0.44213867, -3.0019531, -1.4355469, -0.22436523, 2.9433594, 0.83447266, 0.2319336, -1.8564453, -0.41503906, -0.2590332, 0.43676758, 1.1542969, -0.14733887, -0.38208008, 2.6113281, -1.9619141, 1.90625, 1.53125, -1.1933594, 0.39404297, -0.9423828, 2.2558594, 0.03756714, -2.2402344, -0.7529297, -3.3867188, 1.8623047, -1.1591797, 0.15063477, -1.8017578, -1.8945312, 0.4345703, 0.8256836, -0.78027344, -2.5332031, 5.28125, 3.4375, 0.8652344, 2.1425781, 0.6040039, -1.9042969, -0.92626953, -1.2626953, 1.7158203, -0.44628906, 1.4511719, -0.25, -1.5859375, -1.0341797, 1.1484375, 1.7919922, -0.101501465, -0.5957031, 0.09881592, -0.32495117, 2.546875, -1.2871094, -1.6181641, 0.8203125, -0.0033874512, 0.9794922, -0.49780273, 1.7988281, 1.5673828, 1.1884766, -2.3222656, 0.1776123, 0.8959961, -2.5234375, 3.8183594, 0.51171875, -0.8457031, -1.3769531, -0.31103516, 0.6699219, -1.2890625, 0.01977539, 1.5029297, 0.099609375, -3.1152344, 3.5761719, -0.5595703, -1.1132812, -0.5996094, 1.03125, 0.5258789, -0.7993164, 0.69873047, -1.7011719, 1.2568359, 1.3544922, 0.35839844, 1.1083984, -1.6865234, -1.0703125, -2.5175781, -0.734375, 2.0976562, -0.15197754, 2.2890625, -1.3076172, 1.8271484, -0.16040039, 1.3886719, -0.091552734, -2.1152344, -3.1523438, 1.3564453, 1.1240234, -1.1259766, 2.1621094, -0.796875, 1.7685547, 0.7949219, 1.75, -2.7480469, -1.8359375, -0.5307617, 0.85595703, 9.109375, -0.7319336, 0.8833008, 0.046203613, 0.86865234, 2.7089844, -1.171875, -1.9101562, 1.1533203, 0.9404297, -0.6220703, -1.3408203, -0.1875, -0.11053467, 1.4199219, 0.6064453, -0.9008789, 0.62841797, 1.2587891, -0.44702148, -1.1914062, 0.1817627, -0.017593384, 0.9008789, 0.94873047, -1.3613281, 0.7163086, -0.50683594, -1.4023438, 0.76416016, -1.9550781, 2.34375, -0.6191406, -0.44799805, 2.9746094, -0.3828125, 1.2392578, 0.52441406, -2.3730469, 1.8564453, -0.12438965, -0.16064453, 1.3671875, -0.5371094, -0.21032715, 0.43847656, -1.8007812, 3.6542969, 0.80566406, 1.2880859, 2.2265625, -0.3515625, 1.6865234, -1.2587891, 0.47021484, 0.46728516, 0.4260254, -0.51660156, -0.27148438, -2.2324219, 1.2558594, 4.1914062, -4.6757812, -0.5390625, -0.45458984, -1.5097656, 0.019577026, 0.05859375, -0.19067383, 0.5395508, 0.27856445, 0.5957031, 0.5996094, -0.7583008, -1.4638672, 1.6689453, -0.27148438, 1.0439453, 9.87649e-05, 0.875, -1.9990234, 3.2675781, -0.9370117, 1.7919922, -0.020828247, 0.8461914, -1.1757812, 0.89941406, 1.6865234, 0.6459961, 1.1640625, 1.3242188, 4.9960938, -0.026290894, 0.8378906, -2.1679688, -0.4230957, 1.7041016, -1.171875, -1.9804688, 0.3803711, -1.2548828, -0.09411621, -1.6513672, -0.27392578, 0.7055664, -0.50634766, 1.7275391, -1.3046875, -2.0703125, -0.26831055, 2.1230469, 2.5585938, -0.9995117, -1.4775391, 2.3652344, -1.6630859, -1.6757812, 0.07745361, 0.9501953, 1.171875, 0.56884766, -1.6132812, -0.91308594, 1.1601562, -0.18603516, -0.49267578, 0.51708984, -0.80126953, 0.47265625, -2.4277344, -0.38842773, 0.47192383, -0.08679199, -0.36645508, 0.0690918, -2.8144531, 1.7539062, -1.53125, 0.37280273, 2.3632812, 0.6801758, -0.08343506, 0.15930176, -1.7148438, 0.5107422, -0.59228516, 2.5351562, -0.75, -0.18908691, 2.2421875, -0.9316406, -1.5087891, -0.6298828, -0.23205566, -0.2788086, -1.6933594, -0.64697266, 3.2421875, -0.1973877, -0.0016565323, 1.0341797, -0.7919922, -0.43041992, -3.7871094, 0.09753418, 1.3066406, -1.3964844, -0.7817383, -1.8271484, 0.9980469, -1.5966797, -1.7714844, 0.087402344, -2.828125, -2.1171875, 1.0410156, -0.16906738, 0.14331055, -0.51464844, 1.5517578, -0.42895508, -1.9775391, 0.76123047, -1.2529297, -0.23168945, -2.2871094, -0.7548828, 0.9892578, -1.2939453, -0.39746094, 0.3491211, 1.7783203, -1.5439453, 0.8027344, -2.0917969, -0.25439453, 0.6381836, -2.6601562, 1.1191406, 0.7709961, 0.56689453, -3.5820312, 0.21081543, -0.5029297, 2.4394531, 0.30395508, 1.5322266, 0.75634766, -2.0136719, 0.54541016, -1.0556641, 1.7695312, -0.22302246, -2.2460938, -1.3212891, -0.38354492, 0.47094727, 0.34033203, 1.7119141, -0.94189453, 1.7714844, 1.5732422, 0.734375, -1.3515625, -1.6347656, 0.9716797, -1.3486328, -1.8369141, -1.7978516, -2.2851562, -1.5488281, 2.5820312, 2.0664062, 0.50683594, 0.28076172, 0.890625, -2.4257812, 0.32983398, -0.84277344, -0.890625, 1.5996094, -1.8105469, 0.31445312, -2.0117188, -0.055755615, 1.1611328, 0.08880615, -1.5644531, 0.5253906, 4.265625, 0.5136719, -0.17236328, -2.6933594, 0.13244629, -1.2431641, 1.1796875, 0.8330078, 1.1435547, 0.35205078, -0.9057617, 1.1191406, 0.51953125, 0.50634766, 0.41357422, 0.20458984, -0.5620117, -0.6875, 0.8173828, -4.0117188, -2.0410156, -1.5839844, -0.02229309, 1.7695312, -0.4428711, 3.171875, 2.3046875, 1.2382812, 0.4284668, 1.7080078, -0.9506836, 1.640625, -1.5859375, -0.5185547, 0.07366943, 0.99560547, -1.9365234, -0.95458984, 1.3837891, -1.9941406, 2.1425781, 1.1728516, -0.8569336, -1.640625, -3.2929688, -2.0273438, -2.7734375, -0.9995117, -2.8964844, 0.60058594, 0.64404297, -0.4802246, 0.99072266, 1.5791016, 0.068847656, -1.3359375, 1.6503906, 0.4128418, -0.7597656, -1.3125, -2.5878906, -1.625, 0.25610352, 1.9521484, 0.3322754, 0.05722046, 1.6816406, 2.4453125, -2.1992188, 0.7392578, -1.0185547, -0.8364258, 0.5595703, -0.73535156, 2.1972656, -1.3222656, 0.093933105, -1.0898438, 0.7792969, 0.03817749, 0.75683594, -0.4116211, -0.5229492, -0.16320801, 0.26342773, -2.0332031, -2.5722656, -0.84277344, -0.515625, -0.4111328, -0.09472656, -1.3691406, 0.0236969, -0.16772461, -2.9082031, 0.5205078, 0.80322266, -1.4257812, -4.1484375, 0.0063209534, -0.020553589, 0.34155273, -0.45825195, 0.20349121, 0.20275879, 2.7226562, -0.08520508, -0.5966797, -4.9492188, 0.04916382, -0.12658691, -0.30981445, -0.84472656, 1.1035156, 2.0117188, 3.28125, 3.9355469, -1.6728516, 0.4284668, -1.9091797, -1.7148438, 0.77441406, -0.4753418, 1.4326172, 1.2382812, 0.73291016, 2.4296875, 1.1484375, 1.1572266, -0.9970703, 0.5371094, -0.28344727, 0.043273926, -0.57128906, 0.87841797, 1.4306641, 1.4707031, 3.1933594, 2.2246094, -1.2841797, -1.7021484, -0.42773438, 0.26611328, -1.2109375, -1.2578125, -1.5566406, 0.38793945, 1.5068359, 1.0234375, 0.40795898, 1.4941406, -0.4621582, 2.1171875, 0.59375, 2.5214844, -0.16589355, 1.7460938, 3.1074219, -1.9355469, -0.9506836, -2.5234375, 0.52246094, 3.0136719, 0.69384766, -2.40625, -2.2324219, -0.8256836, -2.3125, -1.6416016, -2.3515625, -0.15881348, -3.3457031, 0.10217285, 3.5976562, 1.4765625, -0.7504883, -1.4433594, -0.7373047, 3.7050781, -2.1367188, 0.75146484, 1.0791016, -0.3791504, 2.0820312, -0.6791992, 1.3076172, 0.16125488, -0.5854492, 0.6611328, -0.8745117, 1.7939453, 0.42333984, 1.4638672, -2.4921875, -2.1386719, -1.1835938, 0.05078125, 1.8837891, 0.35058594, -2.3964844, 1.4316406, 1.9941406, 2.734375, -2.2675781, -0.1361084, -1.3984375, -1.9560547, 2.5410156, -0.9296875, 1.6660156, 2.3417969, 0.3154297, -1.4208984, -1.9609375, -0.9453125, 2.2441406, 3.7519531, 2.9296875, 2.8203125, 1.8408203, 0.058807373, 1.9296875, 3.2949219, -1.3457031, -2.8417969, 1.7314453, -0.19238281, 0.9213867, 0.9658203, 0.5805664, 0.068359375, 1.4287109, -0.6982422, -0.54589844, -0.7705078, 1.3818359, -1.6962891, 0.43847656, 0.5625, 0.8730469, -1.9316406, 0.8256836, 0.9868164, 0.6621094, -0.94873047, -1.2587891, 1.2822266, -0.4428711, -0.24841309, -0.38916016, -1.5683594, -0.11920166, -2.9433594, 0.6542969, 0.28027344, -0.19995117, 1.1650391, 0.9213867, -0.29760742, -0.578125, 1.4453125, 0.73291016, 1.7861328, 2.7753906, -0.31054688, 0.5644531, 1.0283203, 0.98535156, 1.6513672, -0.93115234, 2.515625, -0.734375, -2.1386719, -1.0888672, 0.27075195, 1.2792969, 0.7324219, -1.8789062, 1.1611328, -1.8935547, 0.97265625, 1.9042969, 0.29736328, -2.7226562, 0.609375, 0.35668945, 1.4375, 0.6582031, 2.7167969, 0.4182129, 2.0878906, 0.80615234, -0.5673828, 0.45996094, 1.1611328, -0.10772705, 0.12548828, -0.2927246, 2.4082031, -0.09613037, -0.44311523, 0.7788086, -1.9453125, 0.44067383, 0.8432617, 1.8398438, 1.9658203, -0.94921875, -0.26708984, 1.7880859, -0.7871094, 0.65722656, -2.0019531, 0.70996094, -2.0917969, -0.5917969, -0.38476562, -0.46899414, -0.65527344, 0.37329102, 1.3378906, -1.8681641, -1.5634766, -0.028396606, -0.6269531, -1.2685547, 0.5805664, 0.28271484, 0.053100586, -0.78808594, -0.75146484, 0.2861328, -0.92578125, 0.39575195, 0.5654297, -0.32714844, -0.049346924, -0.30029297, 1.9013672, -1.6279297, 1.2060547, -3.0761719, 0.46801758, -0.52441406, -1.8808594, 0.41430664, 0.023330688, 0.6430664, -0.061706543, 0.08526611, -1.2519531, 0.8881836, 0.061920166, 0.4958496, -0.15112305, -0.43896484, -0.3659668, 0.83447266, -1.2275391, 2.4355469, -1.0488281, -1.7949219, -0.6430664, -1.4462891, 0.890625, 0.032226562, -0.5107422, 0.5595703, 2.6015625, 2.5683594, -1.7148438, -0.4345703, -1.0966797, -2.3242188, 1.6191406, -1.0810547, -1.1064453, 2.0410156, -1.8486328, -0.51416016, -0.5551758, 1.2011719, 2.2324219, -0.4333496, 0.87646484, -0.019363403, -1.7753906, 0.21582031, -0.67089844, 1.8632812, 0.17443848, 1, -0.11999512, -0.95703125, -1.9394531, -0.31762695, -2.3632812]}, "B07XKXSSND": {"id": "B07XKXSSND", "original": "Brand: SPARC\nName: SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty\nDescription:

Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

Lightweight, Heavy Duty Design

The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

Easy to Use Trigger Start

The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output. Effectively treat small and large areas with this torch.

A Safe Long-Reaching Handle

The handle reaches 34\u201d in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

One Year Warranty

Backed by our 1 year USA warranty against manufacturing defects. We are\u00a0based out of\u00a0Denver, CO, and offer customer service and support via phone, text, and e-mail.

\nFeatures: OUTDOOR UTILITY TORCH \u2714 Great for use in gardening, construction, grill ignition, and more.\nTRIGGER START \u2714 Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output.\nLIGHTWEIGHT, HEAVY DUTY \u2714 Slip-resistant foam handle for maximum comfort.\nLONG-REACH KEEPS YOU AT A SAFE-DISTANCE \u2714 Reaches 34\u201d in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire.\nPOWERFUL \u2714 20,000 BTU output, fully adjustable via knob.\n", "embedding": [-1.2304688, 3.0957031, 0.8359375, -0.25048828, -0.26611328, -0.00932312, 2.1523438, -0.5410156, 0.65185547, 0.11505127, -2.5351562, 0.0011558533, 0.55859375, -4.203125, -0.15563965, 1.5849609, -1.5302734, 1.1914062, 1.4853516, 1.2519531, 1.8212891, 1.0087891, 2.0859375, -1.3339844, 2.4609375, -0.85498047, 3.421875, -2.5, 0.2734375, 0.7368164, 1.6738281, 0.30932617, -0.61376953, 0.84228516, -2.9726562, 2.2832031, -1.4873047, 1.2617188, -2.2910156, -0.08502197, -2.5253906, -0.13574219, 2.4628906, -0.28027344, -1.1523438, 1.4873047, -0.7416992, 1.2236328, 0.69091797, -1.2392578, 0.15197754, -0.14819336, 0.6875, -0.29589844, -0.38500977, -1.0253906, -0.40161133, -2.2207031, 2.7773438, 1.6044922, 2.1035156, 1.0185547, -1.9306641, 1.8496094, -0.80029297, 1.5292969, -0.82373047, -0.9321289, -0.97558594, 0.056365967, 2.0078125, 1.6279297, 1.1523438, 0.38427734, -0.043518066, -0.04425049, -3.1347656, -0.041259766, 2.2011719, -0.3474121, -0.11425781, 3.8398438, 2.9160156, 0.5307617, 0.50146484, -0.57470703, -2.5761719, 1.1005859, 0.68847656, 1.2714844, -1.4716797, 1.2773438, -2.4082031, -5.4804688, 3.0527344, -0.36279297, 1.0703125, 0.17944336, 2.0488281, 0.42114258, 0.25341797, -0.05529785, -0.71777344, 1.0126953, -2.7050781, 2.1953125, 0.2290039, -0.60058594, -2.2617188, -0.75, -1.7666016, 0.14257812, 1.1298828, 0.8647461, -2.7324219, -0.8515625, -0.22998047, -0.23791504, 4.4453125, 1.2597656, 3.5292969, -0.2421875, -1.2158203, -0.1772461, 0.9291992, 0.7421875, 0.26586914, 0.6220703, 0.4987793, -1.1328125, 0.4650879, -0.89697266, 0.4465332, -0.6777344, 0.14831543, -1.0771484, -0.38720703, -1.4765625, -1.9912109, -0.056427002, -4.2070312, 0.39160156, 1.9248047, -0.30859375, -5.296875, 0.5698242, -2.7421875, 0.49072266, -0.55810547, -0.8823242, 1.484375, 0.08099365, -1.7988281, -3.0566406, 0.79589844, 0.87353516, -0.051330566, -2.0371094, 2.6738281, -0.6933594, 1.7958984, -1.8427734, -1.40625, 1.0664062, -0.671875, -3.7109375, 0.4580078, 0.81933594, 0.1619873, 0.3173828, 1.8574219, -0.81884766, -0.9848633, -0.5732422, -1.1435547, -1.9814453, 1.3251953, 1.8632812, -0.35302734, -0.10723877, -1.9140625, 0.6772461, -0.7207031, -0.13671875, 1.3125, -1.0634766, -2.6738281, -1.1835938, 0.072753906, -0.6894531, 0.53466797, 0.04840088, -1.3886719, -0.57421875, 0.21203613, -2.5742188, -2.0039062, -2.4003906, 0.42163086, 0.39111328, -3.6152344, -1.6025391, 0.27807617, 0.04083252, -2.9921875, 1.0947266, 0.96875, 1.109375, 0.17590332, 2.5683594, -0.02671814, -1.1533203, 0.75634766, -0.6455078, -0.49902344, -2.2832031, 0.91552734, 0.30151367, 1.8427734, 2.4375, 1.5117188, 0.49267578, 0.22314453, 1.5410156, 0.43969727, 1.7011719, -1.0859375, -0.38867188, -1.6103516, -2.4765625, 0.28320312, -0.004261017, 1.0966797, 0.13317871, -1.1367188, 1.7021484, -0.72753906, 0.1854248, 1.4306641, -0.15930176, 0.11462402, -2.0664062, -0.7036133, 0.6855469, 0.6435547, -1.5146484, -0.43945312, 0.9692383, 0.0597229, -0.12805176, 2.4570312, -0.4868164, 1.4785156, -0.1348877, -0.08166504, -1.1181641, 0.7241211, 1.1279297, -1.3398438, -1.5869141, 1.1738281, 2.9882812, -0.15124512, 0.9511719, 1.1875, -1.9853516, 0.2578125, -0.9838867, -0.42456055, 0.97314453, -0.022613525, 0.3955078, -0.020050049, 3.0214844, 2.4355469, 0.7783203, -0.6850586, 0.9272461, 0.9082031, 0.85009766, 0.61621094, 0.62109375, 2.1171875, -3.2460938, 0.2915039, -0.10546875, 2.6289062, -1.9023438, -0.9042969, 1.0244141, 3.90625, 0.7211914, -2.8886719, 1.2841797, 0.27246094, 2.6894531, 1.8486328, 2.15625, 1.0371094, -1.4414062, 2.3789062, 0.87841797, -0.2565918, 1.0722656, 0.96435547, 0.36157227, 1.8964844, -2.9628906, 1.4169922, 0.50097656, 0.37182617, 1.6025391, 0.26123047, 1.5986328, -1.7392578, -0.9091797, 1.7421875, -3.9550781, 0.07348633, 1.0458984, 0.6699219, 2.5058594, 0.81152344, -1.9199219, -0.0022201538, 0.38745117, -0.8071289, 1.6953125, 0.22058105, -0.8911133, -0.5058594, -2.0136719, 1.8095703, -2.7636719, -1.4287109, -0.035888672, -0.28515625, -2.640625, 1.4316406, -2.8203125, -0.93847656, 1.9169922, -0.1105957, 0.35229492, 0.7348633, -0.1550293, 0.5488281, 0.35327148, -0.7871094, -0.42041016, 0.67822266, 3.5722656, -0.56103516, -1.6689453, 0.1862793, 0.24853516, -0.2770996, 0.049865723, -0.578125, 2.4472656, -0.03967285, 1.1728516, 0.57666016, -1.0712891, 0.9277344, -2.9609375, 1.9746094, -2.2851562, -0.65185547, -1.4833984, 2.90625, 1.4677734, -0.07312012, -0.04373169, -0.9277344, 0.28515625, 0.1048584, 3.2578125, 0.4272461, 2.7285156, -1.9824219, -2.4824219, 1.1835938, -1.3574219, -2.6835938, -0.5917969, -1.4589844, -1.0078125, -1.359375, -1.2246094, -0.15808105, -0.984375, -1.6386719, -0.8071289, -0.3017578, -1.0126953, 1.3779297, -0.7294922, -0.62939453, -0.2536621, -1.0478516, 0.13513184, -3.5546875, -1.6806641, -0.076416016, -1.4648438, 0.20959473, -0.9223633, 1.0878906, -0.011054993, -1.0654297, 2.0351562, 1.1943359, 0.9379883, 1.9824219, -3.7324219, 1.2119141, 1.5732422, -0.87597656, -0.18566895, -2.6816406, 0.38305664, -1.6660156, 1.0732422, 2.8378906, 0.36206055, 0.9116211, -0.59033203, -0.63623047, 1.3876953, 1.2138672, -2.3398438, -0.9165039, 0.18225098, 2.6621094, -3.1953125, -0.02482605, 1.8056641, 2.1679688, -3.1542969, -0.00093603134, 0.703125, 0.0184021, 2.3007812, 3.4375, -1.2216797, 1.0332031, -0.8808594, -0.20947266, 1.1611328, 0.49975586, -0.117614746, 0.47021484, -1.0322266, 1.3486328, 0.20617676, -0.25830078, 0.24987793, 1.9238281, 3.7070312, 0.7216797, -2.1679688, 0.75927734, -1.1376953, 2.5078125, 0.3413086, 1.3105469, 0.29785156, -1.8066406, 0.19299316, -0.55322266, 1.4755859, -1.9960938, 0.10095215, 0.515625, 1.9238281, -0.5493164, 0.8588867, 0.71875, 0.5810547, -2.4785156, 1.9824219, -1.0751953, -1.2558594, -0.18701172, -0.40478516, 2.0625, -3.4082031, 2.4023438, -0.8310547, -1.8222656, 0.051086426, 0.6020508, 0.36547852, -1.1191406, -2.2988281, -0.73535156, -0.6220703, 5.3359375, 0.76464844, -1.2480469, -0.3708496, -2.7246094, 0.0625, 1.2509766, -1.5214844, -0.3984375, -0.19360352, -0.030166626, 0.0009937286, 1.2568359, 0.6796875, 0.32373047, -1.1953125, 2.4277344, -1.6962891, 3.0839844, 1.8798828, -1.2490234, 0.4140625, 1.5869141, -0.75683594, 0.23120117, 0.6142578, 3.4003906, -0.38793945, -0.6225586, 2.3085938, -2.6796875, -2.4433594, -3.1875, -3.3066406, 0.3737793, -2.0839844, 1.1074219, 2.84375, -1.2851562, 0.953125, 0.9399414, 0.24743652, -1.2402344, -3.4570312, 1.1240234, 2.0761719, -1.9990234, -1.703125, 1.1416016, 0.5395508, -1.5214844, -0.3984375, -0.7368164, 0.39038086, 1.1396484, 0.82373047, -0.01638794, 0.5317383, 0.48095703, 0.1116333, 0.3034668, -0.21679688, 0.70751953, -0.3942871, 0.21594238, -1.9794922, 1.5507812, -0.3190918, 0.46972656, 1.5029297, 2.9140625, 0.90771484, 0.12597656, 0.9814453, -0.41992188, 3.2753906, -0.4970703, -1.5742188, 0.24438477, -1.0898438, 1.4365234, -2.1035156, -0.8535156, -0.08703613, -1.6787109, 0.19250488, -1.2900391, 0.7626953, 0.4765625, 0.6191406, -2.6152344, 0.090026855, 1.6953125, -0.8725586, -0.49316406, 0.37231445, 0.1862793, -1.8925781, 1.1699219, -1.4130859, -1.0361328, 0.1083374, -0.88378906, -0.31835938, 0.60839844, 0.6591797, 0.9272461, 2.0273438, 0.89501953, -1.171875, -0.5551758, 0.6821289, -1.7304688, -0.81396484, 0.97021484, -1.0732422, 2.3398438, 1.0869141, 0.44580078, -1.0839844, 1.6484375, -2.3535156, -0.6274414, -0.32421875, 0.15161133, -0.22644043, -0.37890625, 0.6743164, -0.1227417, 1.0419922, -1.6191406, 1.4384766, 0.35473633, -0.52783203, -3.7578125, 0.21459961, -0.1394043, 0.6166992, 0.99609375, 0.5058594, 4.2109375, 0.4182129, 2.3085938, 2.0371094, -0.40576172, -3.015625, 0.41601562, 0.035095215, -1.1328125, -0.33276367, -1.5751953, 0.67333984, -0.15588379, 0.10180664, 2.2324219, 1.4345703, -1.4453125, 0.50683594, 2.0898438, -1.4863281, -0.40673828, -1.7265625, -1.6943359, 1.8701172, 0.072631836, -0.9394531, -0.49829102, 1.4873047, 0.89160156, 1.9814453, -0.54248047, 0.19714355, -0.265625, -1.1875, -2.6621094, -1.2177734, 0.25854492, 1.0615234, -0.5366211, -0.13000488, -0.24487305, 2.1933594, 1.8447266, -0.9379883, -0.106933594, -0.22753906, -1.5966797, 0.6489258, -0.4111328, -1.6777344, -3.90625, 1.6601562, 0.21728516, 0.014434814, 1.6269531, 1.2470703, 1.0976562, -1.0527344, -2.2636719, -0.85253906, 1.4082031, -1.9882812, 0.9243164, 2.4453125, 0.7636719, 2.4257812, -0.7480469, -1.5830078, -1.9091797, 2.0664062, 0.2331543, 0.6826172, -2.2109375, -0.22338867, -2.4863281, -3.9824219, -2.3066406, -0.17871094, -1.1738281, 1.9570312, -0.9741211, -0.70214844, 0.6484375, -0.5761719, 1.0693359, -0.17358398, 0.8725586, -0.9223633, 0.796875, -3.2382812, 1.1943359, -0.057495117, 1.0556641, -0.5073242, 1.0498047, -0.025772095, -2.0410156, -2.3398438, 0.41137695, -0.2548828, 0.3725586, 0.31103516, -1.2558594, 0.4494629, 2.8730469, -1.3515625, -1.0175781, -0.21289062, -2.25, -0.14038086, 0.2722168, -3.1777344, -0.6225586, 0.22521973, -0.8847656, 0.6201172, 0.5649414, 0.02079773, 0.14233398, 0.95751953, -0.81103516, -0.49316406, 0.3720703, -1.6230469, 0.66308594, -0.058502197, 0.8413086, 0.94140625, 0.89453125, -0.20983887, -0.72216797, -0.97216797, 1.4414062, -0.4711914, 1.1835938, -0.2631836, 0.7080078, -0.5473633, -0.65771484, 1.9697266, 0.37719727, 0.62353516, -2.1855469, -0.038116455, -0.83740234, 3.5039062, -0.6479492, -3.5039062, -1.9482422, -2.3925781, 1.7275391, 2.8105469, -0.40454102, -1.1103516, 1.1357422, -2.4570312, 0.032165527, 0.20666504, 1.6884766, 1.3671875, 1.1777344, -3.1601562, -1.5292969, 0.77197266, 0.3256836, -0.8227539, 1.1142578, 1.1689453, 0.0178833, -1.7080078, 1.4472656, -2.2617188, 1.5820312, -0.8300781, 0.0047073364, 0.28930664, -1.8642578, 0.44018555, -0.9301758, 0.79589844, -0.12182617, 1.1103516, -1.578125, 0.6855469, 2.6367188, 1.7412109, 0.6152344, 2.7460938, -0.14831543, 0.7661133, 2.1171875, 1.5361328, 0.8251953, -0.40063477, -2.3730469, 1.9238281, 2.1933594, -1.9003906, 1.4121094, 0.55078125, 1.3291016, -0.08544922, -0.1340332, 2.2402344, 0.328125, 1.4306641, 1.8496094, 1.328125, 1.4169922, 2.5820312, 0.38085938, -0.20483398, 0.9321289, 0.27929688, 2.2988281, 2.0664062, 0.9038086, 0.34326172, 0.09674072, -0.4873047, -0.9765625, -0.15454102, -0.9472656, -0.39160156, 0.19433594, -1.7275391, 1.8398438, -0.62353516, 1.171875, -1.3095703, 2.1777344, -1.6533203, -0.9633789, -1.3007812, 0.9428711, 0.027954102, 0.5126953, -1.6054688, 0.49047852, -0.90234375, -0.20568848, -2.9238281, 0.03503418, -2.9140625, -1.1953125, 1.0253906, 3.3125, 1.3105469, 1.9121094, 0.017456055, 1.6328125, -0.23950195, 0.50341797, 2.4511719, -0.08654785, -0.20336914, 0.17126465, 3.4609375, 0.42211914, -0.30029297, -0.30810547, 1.6298828, -2.4199219, -2.9296875, 1.5537109, -1.3369141, -1.4267578, 1.8798828, -3.2246094, 0.22949219, -2.3671875, 1.2539062, -2.4511719, 0.52685547, 0.15734863, -1.0556641, -0.00035476685, 0.8022461, 1.5048828, 3.1191406, -0.26416016, -0.89501953, -0.61572266, 1.0878906, 1.0585938, -0.92529297, 0.42333984, -1.1357422, 0.48339844, -2.9394531, 3.6152344, 0.34448242, -2.1972656, 0.3137207, 3.2246094, -0.16564941, 0.8886719, 1.0078125, -2.3652344, 0.4729004, -0.796875, -2.8242188, 0.5551758, -0.33813477, -2.3339844, 0.8642578, 0.80859375, -0.4440918, -0.6430664, -1.4863281, 3.1855469, -2.4082031, 0.6040039, 0.30419922, -0.17736816, -0.18432617, 2.0449219, -2.0839844, -1.9335938, -0.41796875, 1.0146484, -2.7558594, -1.8476562, 1.0546875, 1.5566406, -0.55322266, -2.1542969, -0.23071289, -0.65478516, 0.1628418, 0.6088867, 1.6210938, 0.06536865, 0.4411621, 0.78125, -0.3190918, -0.9926758, 1.0537109, -0.5883789, 0.89501953, 1.1542969, -4.5039062, -1.1572266, -0.9482422, -2.1660156, 1.609375, 3.5097656, -1.8720703, 1.4208984, -1.8105469, -1.3662109, 0.48120117, -0.3486328, 2.1289062, -0.06976318, -0.7104492, 0.3762207, 0.92041016, 3.0625, -0.097961426, 0.36254883, -1.4755859, 0.1965332, 0.26293945, 0.20043945, 1.0996094, 1.6816406, -0.15356445, -0.1640625, 3.0820312, 2.2304688, -0.22485352, 1.9013672, 1.4384766, -0.6328125, -2.7421875, -0.30371094, -2.5332031, 1.5742188, 0.55566406, 1.0292969, 2.1542969, -0.4074707, -1.9521484, -2.6933594, -1.8671875]}, "B07X6CJ99H": {"id": "B07X6CJ99H", "original": "Brand: WADEO\nName: WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More\nDescription: 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material\uff1aPVC\u3001cuprum
Length: \u00a04 Feet
Weight : 20.46oz
Inlet Pressre: 25~250 PSIG
Outlet Pressure: 0~30 PSIG adjutable
Gauge reading: 0 \u2013 60 PSI (1- 400 xkpa )\u00a0
Outlet Connection: 5/8\"-18 UNF Female flare swivel fitting( 3/8\" SAE)
Certificate: CSA
Max. flow capacity:
150,000 BTU/hr.
Works with QCC1/ Type 1 propane tank
\nFeatures: Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\nEasy and quick to install. Type 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch).\n3/8\u201d female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8\" male flare connector.\n3/8\" Female Flare Fitting has an outside diameter of 5/8\", come with pipe fitting 3/8\" flare M x 1/8\" MNPT.\nCSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "embedding": [-1.6347656, 2.1269531, 1.1621094, 0.027038574, -1.2255859, -0.008728027, 1.9208984, -0.57128906, 0.87402344, 0.87890625, 0.95458984, 1.734375, 2.5195312, -2.2089844, 1.1337891, 1.234375, 0.8959961, 0.6489258, 1.3691406, 2.6445312, 0.34643555, -0.89697266, 2.8476562, -1.1757812, 2.0078125, -1.3613281, 3.5625, -2.9726562, -1.1914062, -1.0683594, 1.3857422, 1.8837891, 0.5605469, 0.54296875, -3.15625, -0.8691406, 0.010322571, 0.016448975, -4.3476562, -1.2724609, -1.4511719, 0.7163086, 1.6425781, 0.640625, -2.9355469, 0.7636719, 1.2421875, 1.0107422, 0.068603516, -0.45141602, 1.1289062, -0.9511719, 0.7001953, 1.8417969, -0.60595703, -0.4387207, -0.46948242, -2.6328125, 1.2333984, 1.5742188, 1.6181641, 1.4023438, -2.4609375, -0.45874023, -0.28393555, 0.5625, 0.17211914, 0.12176514, 1.3808594, 0.6503906, 1.1376953, 1.1748047, 0.37841797, 0.4230957, 0.1373291, -0.117004395, -2.1269531, 0.6928711, 4.1523438, 0.7734375, -1.4628906, 2.5273438, 0.45507812, -3.5253906, 0.63183594, -0.47509766, -1.6757812, 0.24902344, 1.078125, 1.6269531, -2.0507812, 2.8613281, -3.2636719, -4.0039062, 2.0097656, 1.7138672, 1.2890625, 0.03845215, 1.6923828, 0.61376953, -2.1757812, -1.2431641, 0.86035156, 1.7734375, -1.8037109, -0.77001953, 0.22680664, 2.0625, -3.3613281, 0.67578125, 0.63720703, 0.022064209, 2.5195312, -2.0957031, 1.5, -2.1386719, -0.045837402, -0.77685547, 3.0175781, 1.5410156, 2.1835938, 0.984375, 0.12646484, 0.64160156, 0.96533203, 0.28979492, -1.0751953, 0.32202148, 3.8417969, -2.1113281, -0.018157959, -2.8203125, 2.578125, -0.14733887, 0.94677734, -2.6855469, 0.05328369, -3.0058594, -2.1738281, -0.49975586, -3.8476562, -0.33569336, 0.67626953, 0.053863525, -3.3164062, 0.40454102, -2.5644531, 0.03010559, 2.6914062, -3.2421875, 2.2578125, -1.6416016, -0.29882812, -1.3027344, 1.9296875, 1.3798828, 0.6958008, -0.5576172, 3.5390625, 1.6884766, 1.15625, -1.6074219, -1.8330078, 1.8710938, 0.081848145, -2.1328125, 0.1932373, 0.7783203, 0.29174805, 0.70654297, -0.10900879, -1.9550781, 0.08569336, -0.27929688, 0.27539062, -1.2412109, 0.23266602, 2.5058594, 1.9082031, 0.27124023, -3.9785156, -2.2890625, -0.7338867, -1.0585938, 1.3779297, 0.14782715, -2.4746094, -0.4970703, 1.65625, -1.9306641, -1.9394531, 0.35424805, 0.78808594, 1.5292969, -0.7182617, -2.0507812, -3.0761719, -1.1728516, -0.8720703, 1.7460938, 0.20617676, -1.7636719, 0.33789062, 0.046417236, -2.6640625, -0.69677734, -0.47558594, -0.74902344, -0.47045898, 2.1015625, 0.19543457, -1.0917969, 3.1835938, -0.04269409, 0.23742676, -2.4414062, 1.4013672, 2.59375, 1.1240234, 0.44970703, -0.2626953, 0.38305664, -0.02822876, 2.0546875, 1.8896484, 0.37304688, -0.93652344, 1.7480469, -1.3369141, -0.7602539, 1.9941406, 1.1367188, -1.1611328, -0.9770508, -0.4802246, 2.359375, 0.6176758, 0.32885742, 0.12939453, 2.2714844, 0.6225586, -0.75927734, -2.3691406, -1.1748047, -0.9873047, -1.0986328, -2.5488281, 1.9980469, 1.0791016, -0.91064453, 0.72753906, 0.33911133, -0.9121094, -1.2138672, -1.2314453, -0.39331055, 0.6899414, 1.6074219, 0.0051498413, -0.5239258, 2.640625, -0.203125, 0.5229492, 2.3945312, 0.69189453, 0.9716797, 1.8164062, -1.1113281, -1.6904297, -0.33251953, -0.96435547, 3.203125, 1.5771484, -0.78271484, 0.59814453, 1.1914062, -2.0703125, 0.9082031, -0.29052734, 0.73046875, 0.9296875, -0.30493164, 1.8847656, -2.4316406, 2.6191406, 1.5439453, 1.6435547, 0.00054216385, -2.5214844, 1.1113281, 4.1054688, -1.3037109, -3.2753906, 2.0117188, 1.5185547, 0.27539062, 1.3359375, 0.73779297, 0.78759766, -0.8510742, -0.41918945, 0.9921875, -2.9570312, 0.8286133, 2.4550781, -0.28637695, -0.31591797, -1.0136719, 0.8198242, 0.47998047, -1.5302734, -0.16223145, -1.0693359, 2.6601562, -1.7548828, -2.2441406, 1.9619141, -2.6601562, -0.2854004, 1.2050781, 0.45825195, 0.9448242, 0.8154297, -1.703125, 0.122680664, 2.0253906, -1.1923828, 1.3662109, 0.06323242, 0.28735352, -0.7285156, -1.8505859, 0.031921387, -2.7128906, -2.4589844, 0.5649414, -3.1113281, -1.9179688, 1.8857422, -2.6738281, -1.7636719, 0.19580078, -0.5185547, 1.9335938, 1.6914062, -1.1162109, -1.015625, -0.7241211, 0.029083252, 0.7714844, 0.76660156, 2.6660156, -0.7866211, -2.2304688, -0.43774414, -0.4580078, -0.4765625, 0.5966797, -3.46875, 1.3125, 0.19665527, 0.13513184, 0.19030762, 0.31176758, 1.2841797, -2.6835938, 1.7246094, -3.7519531, -1.4804688, 0.9560547, 1.4345703, -0.76953125, 0.81884766, -3.0332031, -0.9560547, 0.03378296, -0.9921875, 2.3789062, -1.515625, 2.6269531, -1.5869141, 0.05001831, 0.78564453, -0.66015625, -1.9785156, -0.38378906, -0.41357422, -0.2668457, -0.079833984, -2.7949219, 1.0791016, 0.7211914, 1.1083984, -0.23217773, -0.5288086, -1.2207031, 0.26049805, 0.47729492, -0.49145508, -0.19030762, 1.1025391, 1.0449219, -2.7148438, -0.20410156, -0.27490234, -2.0566406, -1.5527344, 0.19641113, 1.4443359, -1.1386719, 1.1416016, 1.71875, 0.61279297, 0.4885254, -1.1455078, -2.9394531, 0.50878906, 2.1484375, -2.2675781, 1.6044922, -1.1171875, -1.1542969, -2.2265625, -2.140625, 3.1289062, 2.3339844, 2.4199219, -1.0136719, 0.2388916, 0.30639648, 0.5961914, -0.2775879, -1.0771484, 0.22766113, 4.1601562, -2.6367188, -0.92041016, -0.17126465, 0.9873047, -3.9628906, -0.10369873, 2.0605469, -1.0429688, 1.4453125, 0.7441406, 2.0136719, -0.19055176, 0.10845947, 1.8789062, 0.032470703, -1.4189453, 0.6381836, -1.2128906, 0.22155762, -1.6220703, 0.6459961, 2.4511719, 0.9213867, 1.2148438, 1.4091797, 0.25024414, -1.1738281, 0.20593262, 0.10076904, 0.74560547, 1.0986328, 2.0878906, 0.78027344, -0.045043945, -0.37573242, 0.9848633, 0.97558594, -2.3613281, 0.055908203, 1.8466797, 1.9921875, -1.3076172, 0.23010254, -0.5102539, -0.4230957, -2.3378906, 0.014907837, -0.39404297, 1.0761719, 2.5957031, -0.5756836, 1.6738281, -0.8979492, 1.3574219, 0.85595703, 0.37060547, -0.7441406, -0.28173828, -2.7265625, -0.80859375, -0.1340332, -3.1542969, -1.2226562, 2.5332031, 1.3359375, -0.040039062, 0.8588867, -1.0810547, 1.6259766, 1.4804688, -1.5869141, 0.071899414, 0.7661133, -0.026412964, 0.9238281, -1.0751953, 2.5742188, 0.17749023, -2.8535156, -0.21679688, -2.3027344, 1.8496094, -0.4814453, -0.003856659, -3.6738281, -0.8701172, -0.48339844, 1.6054688, -0.20922852, 2.3515625, -0.57910156, 0.3100586, 2.3183594, -2.3769531, -0.54248047, -2.0039062, -5.859375, 0.7739258, -2.7421875, 0.80859375, 2.8339844, 0.093322754, 0.54248047, 0.5805664, 2.9492188, -3.8066406, -0.36206055, -0.33935547, 0.7060547, -2.5605469, -0.09411621, 2.0371094, 0.91748047, -0.81591797, -2.1503906, -0.46679688, -2.5878906, 0.022445679, 0.7841797, -0.9350586, 0.055847168, -2.5429688, -0.0881958, -1.8349609, -0.4675293, 0.40527344, -1.7099609, -1.3574219, -3.34375, 2.5019531, 0.5625, -0.095825195, -0.6845703, 3.0429688, 1.7353516, -1.1289062, 0.12347412, 1.7714844, 3.6835938, -0.48901367, -2.375, 0.1385498, 0.97216797, 0.5830078, -0.74853516, -1.2529297, -0.4440918, -0.6279297, 1.7490234, 0.63623047, 0.7866211, 0.70947266, 0.07879639, -3.6113281, 1.0683594, 0.96777344, -0.8203125, 0.6040039, -0.7817383, -1.5107422, -1.3271484, 1.0302734, -1.7998047, -0.03878784, -0.70947266, -0.030838013, -2.7167969, 2.3984375, 0.9423828, 0.1104126, 0.9897461, -0.28027344, -1.1757812, -1.3613281, 0.24487305, -1.5175781, -0.13122559, -1.5488281, -0.07928467, 0.91845703, 2.7578125, 0.29248047, -1.0703125, -0.8105469, -1.4609375, 0.08355713, -0.6152344, 1.7490234, 1.6132812, -0.53759766, 0.35961914, -1.140625, 3.9785156, -1.5068359, 1.7587891, 1.3955078, -0.7841797, -1.5205078, 2.78125, 2.4648438, 1.5302734, 0.77490234, 0.29541016, 1.2998047, 3.0507812, 0.3798828, 0.60009766, 1.4394531, -0.9604492, 0.1739502, 0.020843506, 0.9536133, -1.0712891, 0.18481445, 0.5048828, 0.79541016, 2.9863281, 2.1835938, 0.88134766, -2.4316406, 0.92626953, 1.328125, -1.1445312, -0.5932617, -0.18469238, -1.75, 2.4003906, -0.25463867, -1.1982422, 1.1445312, 2.6953125, -0.97265625, 1.8759766, 0.12670898, -0.6743164, 0.84033203, -3.2148438, -1.2001953, -0.9248047, -1.8984375, 1.375, -1.7822266, 0.7963867, 0.42504883, 1.2998047, 1.5185547, -0.8823242, -1.2958984, -1.4580078, -1.4707031, 0.80615234, -0.67333984, -2.390625, -3.4277344, 0.6171875, 1.828125, 2.0371094, 0.17553711, 1.3701172, 0.10821533, -2.3339844, -0.71875, 0.41015625, 1.9619141, -0.62890625, 0.27026367, 2.0449219, -0.57421875, -0.97802734, -1.2490234, 0.03164673, -1.2666016, 2.7929688, 1.4335938, -0.27124023, -0.6489258, 0.33154297, -2.6445312, -4.3164062, -1.9902344, 2.8554688, -0.73583984, 0.58251953, -2.7519531, -1.3847656, 1.5351562, -0.42285156, -0.93066406, -2.6933594, 0.3154297, -1.03125, -0.6621094, -0.5415039, 0.62890625, 0.19873047, -1.1113281, 0.37670898, 0.49291992, -1.3095703, -2.1523438, -2.4003906, 2.2363281, -2.3007812, -1.5273438, 2.5898438, -1.8974609, -1.546875, 1.8974609, 0.98876953, -2.7578125, 2.0429688, -3.3847656, 0.6347656, 0.54052734, -1.1767578, 1.6191406, 0.60839844, -0.047302246, 0.42041016, 2.1738281, 2.0761719, -0.76904297, -0.95751953, 0.7607422, 0.31958008, 0.16455078, -2.265625, -0.24609375, -0.46533203, 2.3671875, 2.0878906, -1.1308594, -0.32373047, -1.6083984, -2.8164062, 0.91503906, -1.8242188, 0.107177734, 0.68310547, 0.8461914, 1.8193359, -0.3762207, 1.4804688, -0.6669922, -0.5019531, -0.89453125, 0.91259766, -0.7246094, 2.2382812, 1.3720703, -1.6835938, -3.03125, -0.6425781, 2.6953125, 3.2617188, -1.0908203, 1.5009766, 0.14648438, -0.3701172, 0.11785889, -0.77978516, 0.4477539, 1.4013672, 0.19421387, -1.6601562, -1.8164062, 2.0292969, -1.3955078, 1.4423828, 1.671875, -0.3251953, -2.3476562, 2.09375, 0.38354492, -2.0273438, 0.4091797, -0.32714844, 1.4384766, -1.359375, -1.7578125, 0.31835938, -3.1796875, 0.4362793, 0.14941406, -2.0878906, -2.0761719, 1.9375, 0.77197266, -1.1962891, 1.4775391, 2.9785156, 0.20227051, -0.6665039, 2.0917969, 1.3017578, -0.7114258, 0.021087646, -1.9521484, 0.21325684, 1.8671875, -1.7060547, -0.20263672, 0.4855957, 1.6582031, -0.9135742, 0.20703125, 1.4707031, 2.7851562, -0.019989014, 2.5410156, 3.0390625, 0.1541748, 1.2080078, 1.3261719, 2.5820312, 2.8769531, -0.4482422, 1.7988281, 0.6274414, 0.045074463, 0.16931152, -0.9370117, 0.43041992, -1.1162109, 0.52978516, 0.4987793, 1.3603516, 2.5761719, -3.5742188, -0.89697266, -1.9160156, -1.390625, -4.4023438, 0.30322266, -1.0244141, 0.15734863, 0.75390625, 1.6191406, 1.53125, 1.1279297, -1.8183594, -0.12976074, 0.42797852, 2.5097656, -0.9794922, 0.7192383, -0.81933594, -1.78125, 1.2148438, 2.4160156, 1.7539062, 0.25732422, 0.24291992, -0.06719971, -1.1464844, 1.875, 0.96191406, -1.3574219, -0.18554688, -1.3427734, 2.6640625, 1.9121094, -1.9384766, 1.3652344, 1.4853516, -1.7460938, -4.515625, 2.5546875, 1.3662109, 0.27685547, -1.2128906, -5.03125, 1.7138672, -2.0625, -0.45654297, -1.71875, 0.94921875, -1.0058594, -1.3300781, 1.390625, 0.6738281, -1.2363281, 2.4277344, 1.2802734, -1.5878906, 0.046813965, 2.7265625, 2.0761719, 0.37695312, -0.39624023, -0.52685547, 0.82421875, -1.1484375, 3.3203125, 0.4560547, -2.671875, -0.5605469, 2.3964844, 0.18371582, 0.92822266, -0.53271484, 0.5161133, 0.7680664, 0.93847656, -0.27539062, -1.53125, -1.6162109, -1.0214844, -0.31420898, -0.28979492, -0.46044922, -1.6855469, 0.23571777, 0.21496582, -1.6630859, 0.7944336, 1.1279297, -0.7475586, 2.1953125, 2.0820312, -0.84716797, -1.7744141, -0.07281494, 0.93652344, -1.5693359, -1.1201172, 1.0117188, 0.25195312, 0.16955566, -1.7304688, -0.22229004, 0.20617676, -0.2980957, -1.5068359, -0.028518677, -0.8730469, -2.2890625, 0.10845947, -0.9472656, 1.0498047, 2.2128906, 0.375, 1.078125, -0.60791016, -0.3569336, 0.6020508, -1.0888672, -1.0439453, 0.82958984, 1.9423828, 0.578125, 0.6040039, -1.8486328, -2.9609375, -1.1396484, -3.0683594, 1.8457031, -1.1972656, -0.66064453, 0.43164062, 0.53564453, 2.125, 0.6791992, 0.41455078, 1.2431641, -0.56396484, 1.6523438, -1.234375, 0.7910156, -0.72216797, -0.48754883, 0.47338867, 2.6660156, 2.6152344, -1.3876953, -0.54003906, 2.3554688, 0.75, -1.6142578, -0.20288086, 0.25, 0.35205078, 0.91015625, 2.4589844, 2.5449219, 0.17224121, -2.3242188, -0.118652344, -1.6474609]}, "B01M2YIWRF": {"id": "B01M2YIWRF", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover\nDescription: \nFeatures: Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H\nGardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt\nClick-close straps snap at front to secure cover on the windiest days\nElastic hem cord for a tight and custom fit\nAir vents reduce inside condensation and wind lofting\n", "embedding": [1.2958984, 1.9560547, 4.2148438, -2.40625, -0.45898438, 1.2421875, 1.1083984, -0.5024414, 3.8847656, 3.4316406, 0.080322266, 0.7871094, 0.54296875, -3.0253906, 1.6699219, 0.62060547, 0.033416748, 3, 3.3046875, -0.98046875, 1.9306641, 1.4042969, -0.25170898, -0.5786133, 0.3569336, -0.8378906, 4.1289062, -3.3242188, -1.0927734, 1.9785156, 1.0771484, -0.21447754, 0.25976562, 2.2265625, -0.79541016, -2, -0.17138672, 0.44799805, -0.93408203, -0.7944336, -2.5546875, -1.3720703, 2.9023438, 0.6347656, -1.2880859, -0.9326172, -0.0847168, 0.07739258, 0.66845703, -1.5224609, -0.07525635, 1.6308594, 2.5585938, 0.9970703, -1.484375, 0.7758789, 0.7001953, -1.8408203, 2.9746094, 1.1113281, -1.6611328, -1.0556641, -2.0292969, 1.6347656, 0.20275879, -0.4465332, -0.4506836, -0.9042969, -0.09124756, 1.7285156, 1.7861328, 0.6430664, 0.3154297, -1.6806641, 0.6074219, -1.1005859, -1.9775391, 0.7626953, 1.1865234, -2.1074219, -1.8623047, 2.21875, -1.3339844, -2.5371094, -0.9951172, -1.6132812, -2.53125, -0.6953125, -1.0410156, -1.5166016, -2.6230469, 2.3867188, -1.9189453, -4.0664062, -0.35888672, -1.4404297, 2.6601562, 1.6972656, 2.1933594, 0.23620605, 0.009338379, 1.2998047, -0.7314453, 0.53027344, -3.0683594, -1.7021484, 0.2548828, -2.1132812, -0.13806152, -0.5229492, -0.11621094, -0.2849121, 0.9067383, -0.37548828, 0.45092773, 0.3317871, -1.0625, -0.07824707, 1.5986328, 0.10119629, 2.7597656, -0.8769531, 1.2490234, -0.76464844, 1.6767578, -0.40429688, -0.65283203, 1.8564453, 2.546875, -1.6240234, 2.078125, -0.27319336, 1.1181641, -0.009613037, -0.46118164, -1.9277344, -0.9916992, -1.2529297, -2.1757812, -0.5991211, -0.06994629, -0.7001953, 0.90771484, -0.124572754, -3.046875, -0.48535156, -1.2529297, 2.4179688, -0.90283203, -2.6953125, 0.56347656, -2.0214844, 0.67871094, 0.00605011, 0.43041992, 1.5019531, 0.49145508, -5.3398438, 1.4589844, 2.5332031, 2.828125, -1.6357422, 0.95214844, 0.25634766, 0.61621094, -1.9863281, 1.6103516, -1.0517578, -0.11987305, 1.5654297, -1.2236328, -2.0136719, 0.5317383, -0.45239258, 0.07562256, -1.2275391, 2.7011719, 1.0947266, 1.3476562, -0.30322266, -3.6269531, -0.48657227, -1.1855469, -1.3457031, 1.0712891, -0.08721924, -1.6015625, -1.4433594, 1.0751953, -0.16003418, -3.0117188, 0.82177734, -2.9804688, -0.28320312, -2.390625, -3.8925781, -1.6884766, -1.3984375, -0.08129883, 0.74853516, -2.2734375, -1.6328125, -1.1855469, 1.375, -2.6835938, -0.6767578, 0.06750488, -0.06756592, 0.65966797, 1.2314453, -0.031585693, -1.4248047, 2.3242188, -1.0986328, -0.9765625, -0.09667969, 1.2460938, 0.026809692, 2.7050781, -0.06088257, -0.52685547, 1.1904297, 1.1376953, 1.1308594, 1.2460938, 2.0429688, 1.1347656, 0.5957031, -3.1464844, -1.4150391, -0.19604492, 0.55859375, -0.3395996, 0.67822266, -0.5908203, 1.7871094, -0.44580078, 0.022720337, -0.01789856, -0.3125, -1.2626953, -1.8320312, -1.2919922, 0.8100586, 1.203125, 1.3681641, -1.2080078, 0.61083984, 1.3974609, -0.040924072, -0.15100098, -1.9814453, 0.30078125, -1.3115234, -0.19726562, 1.2119141, 0.9946289, 1.8574219, 1.7304688, -0.75146484, -0.32592773, 1.1542969, -1.5478516, -0.052581787, -1.3291016, -1.1679688, 0.006099701, 0.06542969, -2.5273438, -0.025863647, 0.50097656, 0.98876953, 1.9892578, 0.6772461, 1.2890625, 1.8847656, -0.8334961, 1.5429688, -0.9506836, 0.033843994, 1.8642578, -0.32763672, 3.0898438, -1.9150391, 2.0898438, 1.6542969, 1.6787109, -0.18896484, -1.7109375, -1.1435547, 3.3203125, -1.2783203, -0.38500977, 3.2324219, 2.65625, 1.2265625, 3.9765625, -1.2333984, -0.81884766, 0.3942871, -1.1162109, -0.4086914, -1.140625, 1.1015625, 1.1767578, -1.375, 0.027740479, -0.9916992, -0.51220703, -0.30444336, -1.0195312, -1.3291016, -0.33935547, 0.86621094, -3.1796875, -1.9335938, 4.1914062, -2.5917969, 0.27148438, 0.8222656, -0.67529297, 2.0332031, -1.2822266, -2.0976562, -0.67822266, 0.4248047, -2.5722656, 1.015625, 1.1289062, 1.3613281, 0.9238281, -1.4355469, 0.5209961, -0.5649414, -1.1269531, -0.3947754, -2.4824219, -0.7114258, -0.8261719, -1.3886719, 0.90771484, -1.1972656, -0.5996094, 1.609375, 1.9541016, -1.1181641, -1.3964844, 1.0009766, -1.0341797, -0.077941895, 0.5473633, 1.8232422, -1.0410156, -5.25, -0.20788574, -0.35595703, -2.203125, 0.69384766, -0.8808594, -0.19482422, -0.43310547, 1.1982422, 2.125, -0.57666016, -0.9067383, -0.33203125, -0.09655762, -3.7167969, 1.9306641, -0.74560547, 1.3828125, -2.4804688, 1.0527344, -0.84521484, -2.5097656, 0.24682617, -2.359375, 5.5390625, 1.7626953, 1.6611328, -1.0458984, -1.5585938, 0.9042969, -1.2353516, -1.7177734, 2.3417969, -0.35498047, -1.0986328, 0.54003906, -3.9804688, 0.5439453, -2.2421875, -0.6767578, 0.49243164, -1.1386719, -1.5019531, -0.16271973, -0.80615234, -0.4567871, -1.3798828, 0.4375, 0.14672852, -0.625, -0.42919922, -0.16125488, -0.22595215, 0.15966797, -0.5131836, 1.6376953, -1.4375, 0.05596924, 2.0546875, -1.8378906, 3.015625, 0.46044922, -3.6035156, -0.39379883, 2.6523438, 2.9960938, 2.7382812, 1.1494141, -2.5761719, -0.5488281, -0.27783203, 2.7695312, 1.2949219, 0.60839844, 0.48583984, 0.1619873, -0.66552734, -0.048736572, -0.8466797, -0.9794922, 0.050842285, 2.5078125, -0.016677856, 0.60839844, 1.8916016, 0.5078125, -3.234375, 1.2070312, 0.75, -2.171875, 3.2636719, 0.7138672, -1.5009766, 0.92333984, 0.19128418, 2.5175781, -0.41137695, 0.98828125, -0.3725586, -0.30786133, 1.0019531, -0.56689453, -0.062438965, 1.1025391, 0.25219727, -1.5976562, -0.41918945, 0.033172607, 0.71435547, 0.30249023, 1.3662109, -0.49365234, -0.85058594, 0.8598633, 0.19189453, 1.4638672, 0.92285156, -0.7011719, -0.05102539, -1.171875, 2.1152344, 1.4638672, 0.49267578, -0.7363281, -1.2880859, -2.6386719, 0.75097656, -2.2949219, 1.3525391, -1.1611328, -1.1396484, 0.27124023, -3.2324219, -1.1738281, -0.7050781, 2.3339844, 1.0273438, -1.9833984, 0.21496582, 1.9638672, -2.7832031, -1.9667969, 0.26586914, -1.6865234, -0.37475586, 1.5576172, 2.5039062, -1.7460938, -0.11291504, -2.4980469, 1.5048828, 3.2070312, -0.1003418, -0.6323242, -0.28051758, -0.14929199, -0.67529297, 0.52001953, 1.3154297, 1.8291016, -2.5390625, -0.44702148, -1.796875, 0.42456055, 2.7871094, 0.0289917, 0.6826172, -0.5385742, -0.04348755, 2.1816406, 0.50927734, 3.4453125, -1.0878906, -2.5644531, 1.1572266, -0.032836914, -0.22839355, -0.1595459, -3.6835938, -0.95214844, -0.025436401, -0.9169922, 2.5703125, 0.2692871, 0.65527344, 0.37841797, 0.58447266, -2.6230469, -1.1298828, -1.7158203, 1.1201172, -2.7597656, -1.7685547, -0.062316895, 0.42041016, -2.8359375, -0.8935547, 0.8383789, -2.4960938, -0.38354492, -0.14001465, 0.7680664, -0.87060547, -1.0996094, 1.0869141, -0.4165039, 0.65283203, -0.08581543, 0.26416016, -0.5883789, -2.2167969, 2.8378906, -0.13024902, -0.8618164, 0.95410156, 3.4960938, 0.69628906, -0.8808594, -0.15490723, -0.8959961, 1.9199219, -1.1240234, -3.1445312, -1.8789062, -1.1455078, 1.1914062, -1.1748047, -1.5830078, 0.0748291, -0.63183594, -0.9609375, 0.27270508, 0.78125, 1.1171875, -1.2412109, -2.9941406, 2.609375, -1.4619141, -0.13769531, -0.70703125, -0.21362305, -0.54589844, -0.17651367, -0.5390625, -1.6396484, 1.703125, 0.43066406, 0.82958984, -1.859375, 2.515625, 0.6323242, 2.1738281, 1.7998047, -3.0800781, -0.9926758, 1.8027344, 0.6801758, 1.9746094, 0.24389648, -0.7246094, 1.4951172, -0.66503906, 1.75, -3.3222656, 0.14916992, -1.8759766, -0.22106934, -0.72753906, -0.9194336, 1.5498047, -0.43701172, -0.8251953, -0.8730469, -2.0957031, 3.3300781, -2.640625, 1.7109375, 0.35424805, -0.23791504, -0.7216797, 2.8457031, 0.77197266, 1.8886719, 1.6611328, -1.5351562, -0.94091797, -0.0037193298, 1.1523438, 0.25390625, 1.1367188, -1.1289062, -0.3334961, 0.5546875, 1.1367188, 0.18237305, -0.33325195, 1.7265625, 2.9277344, 0.20678711, 0.99853516, 1.7880859, -1.7216797, 2.8105469, 1.0458984, 0.15576172, -0.19958496, -1.3291016, 0.73535156, 3.8242188, -2.0703125, -2.3671875, 0.375, 1.5810547, -1.1054688, 1.3388672, -0.040130615, -0.24926758, -1.1777344, -2.1464844, -2.7304688, -0.47558594, -0.3479004, -1.2441406, -0.7211914, 0.38745117, -0.8989258, 1.5654297, 1.8652344, -0.022079468, -1.6435547, 1.8613281, -0.36083984, 0.07421875, -2.0429688, -1.0214844, -1.8759766, 0.4086914, 0.055236816, 0.7036133, 0.33544922, 1.4716797, 1.3515625, -3.015625, -1.4609375, -0.49682617, 1.3730469, -2.5078125, -0.08459473, 2.6953125, -0.22644043, 0.30517578, -0.7788086, -0.3564453, -0.5097656, 0.88964844, 0.9741211, 2.0019531, 0.12463379, -1.5439453, -3.3496094, -3.8417969, -1.1777344, 0.5078125, -1.4443359, 1.8554688, -0.7036133, -1.4003906, 0.34521484, -1.4375, 0.7763672, -1.046875, 1.6025391, -0.5185547, -0.6845703, -1.7578125, -1.0947266, 0.46533203, 1.3710938, 0.31152344, 1.2470703, -1.6074219, -2.546875, -2.3027344, 0.94091797, -1.8037109, -0.23706055, 1.8632812, -0.61376953, 1.7216797, 1.7910156, 1.6621094, 0.10925293, 0.49365234, 0.24719238, -0.7866211, 1.5371094, -0.4741211, 0.5253906, 2.1132812, -1.2294922, 2.0722656, 2.375, 0.8569336, -0.62060547, -0.24707031, 0.7211914, 1.7851562, 0.6699219, 2.078125, 2.0898438, 1.4189453, 1.6611328, 0.69384766, -1.6240234, -0.31469727, -0.82470703, -1.4521484, -0.69970703, -3.3867188, 0.107299805, -0.17456055, 0.08227539, 1.8310547, 2.0546875, 0.60498047, 0.8432617, 2.0078125, -1.6621094, -0.10046387, -1.5703125, 1.7841797, 0.56152344, -0.14416504, -0.9140625, -3.5, 2.0566406, 2.9003906, -0.6142578, 0.9824219, 0.5385742, -2.3183594, -0.20251465, 0.06451416, 2.0234375, -1.0273438, 1.1298828, -2.3554688, 0.77441406, 1.6591797, -0.9116211, 2.6171875, 0.42529297, 0.55810547, -0.61083984, 2.5195312, 2.5429688, -3.6699219, 0.38500977, -0.39038086, 1.5263672, -0.37036133, -0.39941406, 1.6992188, -1.1787109, 0.3996582, -1.2958984, -0.3232422, -3.1777344, -0.27978516, 0.5595703, -1.4511719, 0.55859375, 0.10546875, -0.39746094, 0.6635742, 1.9589844, -0.91308594, -2.1367188, -0.81884766, 0.09240723, -0.1928711, 2.0019531, -0.83984375, 1.8359375, 0.78808594, 1.3769531, -0.19299316, 0.43164062, -0.42626953, 0.028198242, 1.9150391, 3.5742188, 2.8476562, 0.6098633, 1.7089844, 0.61279297, 1.9003906, 3.2441406, -1.7900391, 0.6879883, 1.1210938, 2.2636719, 2.6171875, -2.2558594, -1.8867188, 1.4140625, 0.2541504, 0.56884766, 1.7128906, 1.7333984, -3.5117188, -0.74365234, 0.47070312, -0.70458984, 0.4501953, 1.2373047, -1.4023438, -2.1972656, 0.47607422, -0.6508789, 2.2910156, -1.9238281, 1.4746094, 1.6650391, -0.77441406, -0.111572266, 1.2822266, 0.9013672, 0.24182129, -2.5722656, -0.125, 4.078125, 1.8632812, 1.9677734, -0.9345703, -0.32543945, 1.0761719, 1.4111328, -0.8569336, 0.54296875, 0.93115234, -2.2519531, 0.76123047, 3.7832031, -1.4423828, -0.74902344, 0.03213501, 0.78808594, -3.203125, 0.6621094, 0.8125, -0.059387207, 0.54345703, -4.5273438, -0.35205078, -1.0224609, -0.12988281, -2.5820312, -1.6611328, 0.010894775, -2.7988281, -1.2558594, -0.22521973, -2.953125, 3.0839844, 1.671875, 0.7973633, 2.1191406, 0.83691406, 0.66259766, 0.02909851, 0.79052734, -0.08306885, 0.2626953, -0.19006348, 3.234375, 1.9121094, -2.3359375, 0.008346558, 2.2480469, -0.3725586, 1.0224609, 1.2880859, -0.26489258, 3.9316406, 1.7685547, 0.58984375, 1.2890625, -1.3867188, 0.062194824, 0.8461914, -0.29052734, 1.9853516, -0.41479492, 0.75927734, 0.2244873, -3.7792969, -0.6074219, 0.97753906, 0.3166504, 0.8300781, -1.2451172, -1.9375, -1.1503906, -1.9824219, 1.5322266, -2.5429688, 1.4150391, -3.4023438, 1.2578125, -0.07128906, -1.9443359, -0.52001953, 2.0566406, -2.4785156, 1.0097656, 0.7036133, -0.39575195, -0.28808594, -0.7285156, -1.1601562, 1.0517578, 1.3818359, 1.5644531, -0.112854004, -2.3183594, -1.9560547, 0.62158203, 0.02293396, -0.05493164, 2.3222656, 2.4765625, 0.6503906, 0.80322266, -0.064086914, -0.73779297, 0.008163452, -1.8535156, 1.9423828, -0.26416016, -0.038635254, 0.6582031, 1.8876953, 2.3652344, -0.4970703, -2.4394531, -0.25073242, -0.35961914, 2.6210938, -1.2275391, -0.8300781, 1.4316406, 0.49414062, 1.6914062, 3.1933594, 1.8095703, -1.8847656, 0.68408203, 3.9667969, -2.3320312, -1.6357422, -0.27685547, 0.057128906, 0.80322266, 0.7529297, 3.2714844, 1.3955078, 0.9111328, 0.33251953, -2.3339844, -0.13330078]}, "B07263CMYG": {"id": "B07263CMYG", "original": "Brand: KIBOW\nName: KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection\nDescription: Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
Specifications:
-Hose Length: 4 Ft/48 Inch
-Inlet Pressre: 25~250 PSIG
-Outlet Pressure: 0~30 PSIG adjutable
-Outlet Connection: 3/8\" Female flare swivel fitting\nFeatures: Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose.\nBuilt-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it's defective itself.\nType 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL.\nEasy and quick to install. Perfect for propane forge/foundry.\nPlease DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.\n", "embedding": [-0.042297363, 2.6914062, 0.9448242, 0.49316406, -1.9414062, -2.4921875, -0.33789062, 0.37402344, 0.6772461, 0.4165039, 2.4609375, 0.6503906, 1.0927734, -2.109375, 2.2207031, 0.15979004, -0.15112305, 1.2607422, 1.8300781, 1.8330078, 1.1826172, -1.1123047, 3.328125, -1, 2.4433594, -0.70996094, 3.2519531, -3.140625, -1.3134766, -0.25341797, 1.3085938, 0.04776001, 1.0234375, 0.4128418, -0.8564453, -0.07318115, -0.19921875, -0.097473145, -3.5917969, -0.14672852, -2.2246094, 1.8457031, 0.4736328, -0.0892334, -2.2382812, 0.72558594, 1.0800781, -1.4501953, 0.5151367, -0.44873047, 0.12719727, -0.8027344, -0.031173706, 1.9443359, -0.24743652, -0.21813965, -0.44628906, -1.6445312, 1.9619141, 0.94970703, 0.7163086, 0.21398926, -1.7089844, 0.5654297, -0.8588867, 1.2607422, -1.0410156, -0.80908203, 0.8256836, 1.1914062, 0.084106445, 1.0947266, -0.17553711, -1.1621094, -0.6040039, 1.8183594, -2.25, 0.91308594, 2.1191406, 0.4868164, -1.6611328, 0.3701172, -0.48608398, -2.6582031, -0.13256836, 0.07055664, -0.93652344, 0.3334961, 1.7216797, 2.1113281, -1.9931641, 2.2832031, -2.6796875, -4.25, 1.5263672, 2.4785156, 0.045135498, 0.41796875, 2.8378906, 0.19030762, -2.2128906, -0.33862305, 0.50097656, 1.9765625, -1.5322266, -0.22729492, -0.6411133, 1.7734375, -2.4394531, 0.98339844, 1.2773438, -0.19189453, 1.3300781, -2.2988281, 0.29174805, -3.2441406, -0.39648438, -1.5126953, 2.9765625, 1.1005859, 2.1152344, 1.1269531, 0.26757812, 0.08905029, 0.6567383, 1.2587891, -0.50146484, -1.9042969, 4.125, -1.4238281, 0.90283203, -1.6835938, 1.6611328, 0.48120117, 0.1159668, -2.7929688, -0.8022461, -1.3183594, -1.7529297, -0.66503906, -4, -0.7080078, 0.9584961, -0.57421875, -2.5898438, 0.31884766, -2.1679688, -0.2541504, 2.0253906, -2.6132812, 1.2353516, -1.0273438, -1.0361328, -0.53515625, 1.5302734, 1.6484375, 0.96435547, -1.8251953, 2.0976562, 1.1347656, 0.038757324, 0.16015625, -1.3466797, 2.1503906, -1.6435547, -1.7070312, 0.37768555, -0.11206055, -1.125, 0.9243164, -0.8041992, -1.8515625, 0.29370117, 0.3388672, -0.73828125, -1.5664062, 0.46289062, 2.8671875, 1.8466797, 0.84375, -4.5273438, -2.6074219, -0.70458984, -2.5175781, 2.0859375, 0.30615234, -1.2578125, -3.1425781, -0.15100098, -1.7626953, -1.7529297, 0.4387207, 0.7524414, 0.86328125, 0.038208008, -1.9189453, -1.1591797, -1.8300781, -0.6098633, 1.7265625, -1.0087891, -2.2539062, 1.3730469, 0.36938477, -1.9570312, -0.17053223, 1.4335938, 0.1451416, 0.62597656, 3.4238281, 1.0673828, -0.6933594, 1.5009766, -0.58203125, -1.5458984, -2.2792969, 0.8935547, 1.8857422, 2.4628906, -0.5698242, -0.60009766, 0.29907227, 0.053131104, 0.94091797, 3.0800781, 0.4008789, -0.25732422, 1.3427734, -0.8222656, -1.3076172, 1.6162109, 2.6074219, -1.4423828, -1.4658203, -0.87646484, 3.0195312, 0.8535156, -0.7714844, 1.6308594, 0.36108398, 0.091796875, -0.6542969, -1.1582031, -1.1240234, -0.87158203, 0.11730957, -1.5878906, 0.7792969, 1.3212891, -0.23547363, 2.2636719, -0.8701172, -1.8300781, -1.2353516, -0.2541504, -0.69140625, 1.3740234, 0.15820312, 0.3540039, -2.0898438, 2.1484375, 0.74072266, -0.0102005005, 0.8847656, 1.9619141, 0.55859375, 0.29907227, -2.3066406, -0.79589844, 0.80371094, 0.046722412, 3.9140625, 2.7714844, 0.39819336, 0.99365234, 2.828125, -2.4941406, 1.6845703, -1.2080078, 0.7680664, 1.1865234, 0.35229492, 1.3671875, -2.1582031, 1.1640625, 1.2382812, 1.2646484, 0.053588867, -3.0292969, 0.42114258, 3.2207031, -1.5292969, -3.1835938, 1.6396484, 2.1015625, 0.27539062, 0.39086914, 0.18029785, 0.17285156, -1.328125, 1.0498047, 1.4140625, -1.1503906, -0.018478394, 2.3320312, -0.041137695, -0.65185547, 0.59375, -0.26464844, 0.64404297, -1.3095703, 0.5107422, -1.4121094, 3.0742188, -2.0859375, -1.2080078, 1.7353516, -2.5234375, -1.5800781, 1.7392578, 0.027618408, 1.0185547, 1.3076172, -1.4609375, 1.0263672, 1.7246094, -1.9980469, 1.1425781, 0.3334961, -0.7890625, -0.44506836, -2.5214844, -0.5678711, -2.0078125, -1.1220703, 0.82421875, -0.24963379, -2.9960938, 0.2722168, -1.7597656, -0.6113281, 0.21411133, 0.6069336, 2.6972656, 1.6533203, -0.6845703, -1.1103516, -0.3696289, -0.24816895, -0.64208984, 0.99365234, 3.0507812, -1.9423828, -3.0644531, -0.91308594, 0.5161133, 0.66259766, 1.2949219, -2.9238281, 1.6992188, 1.7119141, -0.12976074, 0.84716797, 0.47045898, 0.21118164, -0.8071289, 2.6621094, -2.8652344, 0.07623291, 0.41430664, 1.2988281, -0.16796875, 0.41967773, -1.4951172, -0.2758789, -0.95214844, -0.9472656, 1.0605469, -0.48217773, 2.5039062, -1.4677734, 0.4326172, 0.7705078, -1.5234375, -3.0585938, 0.4885254, -0.20715332, 0.7988281, 0.55322266, -1.8330078, 0.1928711, 0.07623291, 1.0917969, 0.25048828, -1.6181641, -0.23449707, -0.11663818, 1.6923828, -0.8955078, -0.24438477, 1.1015625, -0.2841797, -2.9824219, 1.1074219, -0.32641602, -3.5605469, -0.50341797, 0.63671875, 0.39501953, -1.5498047, -0.7475586, -0.14868164, 1.6142578, 1.3300781, -0.6767578, -1.1835938, 0.27685547, 1.7753906, -1.8837891, 1.4316406, -1.546875, -0.8183594, -0.9873047, -1.5302734, 1.9970703, 1.0996094, 1.9853516, -0.55322266, 2.4355469, -0.9472656, 1.3818359, -0.60302734, -1.8378906, 0.80322266, 2.828125, -1.3466797, -2.1503906, -0.04006958, 1.5527344, -3.9941406, 2.4472656, 2.5722656, 0.40234375, 0.91503906, 1.0751953, 0.4650879, -0.7661133, 0.2746582, 1.3671875, 1.3710938, -0.14562988, 0.14257812, -0.7597656, 0.3017578, -0.42919922, 0.64697266, 1.2919922, 1.8203125, 1.1982422, 2.109375, 1.3144531, -1.0019531, -0.68115234, 0.0072669983, 0.5551758, -0.6582031, 2.1914062, -0.20385742, -0.17749023, -0.5703125, 0.84814453, 1.7646484, -3.7070312, -0.9667969, 0.62402344, 1.0507812, -1.0693359, -1.0292969, -1.328125, -1.1220703, -0.9316406, 0.21044922, 2.1757812, 1.28125, 0.9506836, -0.7167969, 1.5126953, -0.32617188, 1.7851562, 0.013771057, 1.9121094, -0.87402344, 0.011878967, -0.90283203, -1.6416016, -2.0195312, -3.34375, -0.38476562, 2.3222656, 1.3378906, -1.2568359, 0.52490234, -0.27319336, 1.734375, 1.6171875, -0.88916016, 0.109558105, 0.8486328, -0.19348145, 0.11187744, -0.5463867, 1.4482422, -0.88916016, -1.2998047, -0.46533203, -1.8388672, 1.1757812, -1.0214844, -0.7192383, -1.6269531, -1.1796875, -1.6767578, 0.86328125, 0.15905762, 1.1357422, 0.35864258, 1.5537109, 0.84375, -2.2792969, -0.98339844, -1.3505859, -4.5976562, -0.66845703, -2.296875, 1.5810547, 1.2597656, 0.10620117, 1.4580078, 1.5888672, 2.9960938, -3.6367188, -0.23364258, -0.5961914, 0.6098633, -2.0019531, -0.52783203, 1.7197266, 0.4248047, -1.6015625, -1.6621094, 0.5810547, -3.1660156, -1.9111328, 0.071777344, -2.3398438, 1.1542969, -0.46923828, 0.8461914, -0.7158203, -1.5888672, 1.9394531, -0.79785156, -0.6928711, -1.9824219, 2.359375, -0.22290039, -0.018218994, -0.45458984, 3.0078125, 2.234375, -1.3623047, 0.1776123, 0.14257812, 2.9863281, -0.44335938, -1.0292969, 1.2353516, -0.38305664, 0.040130615, -1.3613281, -0.7104492, -1.6611328, 0.87158203, 1.8945312, 1.5283203, 0.8408203, 0.5727539, -0.12988281, -2.6679688, 1.5957031, 0.44873047, -0.45581055, 0.8598633, -1.2177734, -1.0371094, -1.1533203, 1.9521484, -1.0234375, -0.36865234, 0.8232422, 0.38623047, -2.4160156, 0.8886719, 1.0371094, 1.4414062, -0.5839844, -1.7851562, -1.4628906, -0.91259766, 1.1787109, -0.54003906, -0.9736328, -1.1054688, -0.49414062, 0.9633789, 1.8300781, 0.66064453, -1.1201172, -0.34423828, -0.66308594, 1.1669922, -0.58203125, 2.2539062, 0.38671875, -0.2536621, 0.46289062, 0.03756714, 3.125, -1.0244141, 0.08312988, 0.78125, -1.0625, -2.9023438, 2.0253906, 1.8134766, 0.82958984, 0.28930664, -0.9433594, 0.9458008, 1.8027344, 0.31054688, 0.26782227, 1.0712891, 0.06185913, -0.32128906, -0.7109375, 1.4794922, -2.8183594, 0.7631836, 0.6455078, -0.22509766, 2.3398438, 2.5039062, 1.0136719, -1.0146484, -0.20300293, 0.8310547, 0.49731445, -0.84472656, -1.1308594, -3.0507812, 3.4238281, -0.15209961, -0.9165039, 0.5913086, 2.9707031, -0.80078125, 2.0117188, 1.0722656, -0.6323242, 0.97998047, -2.2226562, -0.46166992, -0.4020996, -0.4897461, 2.0019531, -2.1191406, 1.2753906, 1.2255859, 1.6660156, 0.7553711, -0.36694336, -0.42797852, -1.9199219, -1.8945312, -0.45703125, -0.72509766, -2.4785156, -3.6269531, 1.1464844, 0.6142578, 2.8222656, 0.54345703, 0.7607422, 0.8017578, -1.7802734, -0.9321289, 1.34375, 0.24914551, -0.453125, -0.13195801, 2.875, -0.5620117, -1.8203125, -1.8125, -0.14733887, -0.5810547, 2.578125, 1.7167969, 1.5517578, -0.45336914, -0.90625, -3.5996094, -3.3730469, -0.25341797, 2.0898438, -0.3737793, 0.7573242, -2.6640625, 0.33203125, 1.3095703, -1.7519531, -1.6816406, -2.7363281, 0.1149292, -0.50097656, -1.7851562, 0.34594727, 1.0556641, -0.828125, -0.71728516, -2.6113281, -1.8564453, -0.066467285, -1.765625, -0.9609375, 2.1503906, -1.9248047, 0.18554688, 1.9443359, -2.9492188, 0.36254883, 1.0273438, 0.63623047, -1.9726562, 1.9794922, -2.5078125, -0.9873047, 0.29858398, -2.1015625, 0.44384766, 2.015625, 1.2910156, 0.29345703, 2.6210938, 1.6445312, -1.0664062, -1.2685547, 2.6621094, 0.46826172, 0.7167969, -0.87890625, 0.47460938, -0.59765625, 0.032928467, 2.765625, -0.8461914, -0.9189453, -1.3671875, -1.8681641, 1.2265625, -1.3212891, -0.21972656, -0.4489746, 1.2734375, 1.8818359, -0.0045547485, 1.3691406, 0.6972656, -0.20715332, -0.41748047, 2.1933594, -3.0722656, 1.7597656, 0.6435547, -3.3496094, -2.7734375, 0.07421875, 3.1503906, 2.671875, -1.8935547, 0.7519531, 0.40722656, 1.2705078, 1.6445312, -1.0556641, 0.6738281, 1.2851562, 0.2763672, -0.21716309, 0.26660156, 2.2128906, -1.5410156, 1.0595703, 0.9667969, -2.1054688, -0.5288086, 0.7207031, 2.1757812, -1.1054688, -0.38354492, -0.9536133, 0.84375, -1.8857422, -0.8510742, 0.6767578, -1.4248047, 1.5712891, 0.5864258, -0.7402344, -2.8125, 1.3242188, -0.73095703, -1.5546875, 2.0800781, 1.3974609, 0.06591797, -1.7568359, 2.5976562, 1.6152344, 0.21374512, -0.85253906, -2.6699219, 0.3786621, 2.0703125, -1.4326172, -0.62158203, 1.0810547, 1.9492188, -0.64501953, -0.83691406, 0.51904297, 1.8408203, 0.29858398, 1.9804688, 1.546875, -0.6894531, 1.6611328, 1.7597656, 2.5390625, 2.6601562, 0.20837402, 0.03591919, 0.2434082, -1.2021484, 0.703125, -0.41210938, -0.012939453, -1.0068359, 0.73828125, -0.29370117, 2.3925781, 1.8212891, -2.0839844, -1.6738281, -1.5898438, -0.83203125, -2.8203125, 0.5957031, -1.4785156, 0.45336914, 1.8183594, -0.42749023, -0.43554688, 1.2529297, -1.1972656, -0.19958496, -0.07672119, 2.375, 0.3984375, 0.33520508, -2.171875, -2.0449219, 1.3837891, 2.4433594, 1.0253906, 0.43359375, 0.4116211, -1.3857422, -0.7885742, 1.6044922, 0.6777344, -3.0136719, 0.4099121, -0.06317139, 2.7714844, 3.4648438, -1.6113281, 1.5585938, 2.0390625, -1.5058594, -2.8066406, 0.72021484, 1.0517578, -0.3334961, -0.4243164, -3.2363281, 0.88378906, -2.5332031, 0.24975586, -1.8408203, 0.19519043, 0.67822266, -2.2050781, 0.64990234, 0.013397217, -2.296875, 2.4863281, 1.0966797, 0.80810547, -0.71240234, 2.4863281, 2.7304688, 0.89160156, -0.45410156, -0.7993164, 0.37768555, -0.9633789, 3.8378906, -0.25097656, -0.8510742, 0.44067383, 3.0449219, 0.23352051, 1.4951172, 0.6821289, 1.8056641, 0.61328125, 1.1787109, 0.46655273, -0.97216797, -1.2910156, 0.20898438, -0.63671875, -0.41918945, -0.3618164, -1.2636719, 1.0410156, 0.42285156, -1.6025391, 0.30541992, 0.4020996, -1.046875, 0.2298584, 0.11138916, -2.7578125, -3.0820312, -0.5991211, 1.4140625, -1.9345703, -0.17749023, -0.31689453, 1.1767578, 0.025375366, -0.8417969, -1.4326172, -0.80126953, 0.45458984, -1.359375, -0.55371094, -0.10797119, -1.0576172, -0.062194824, -0.59765625, 1.0068359, 1.2392578, 0.26098633, 1.8359375, 1.5302734, -0.59375, 0.32373047, -0.93066406, -1.1318359, 1.0712891, -0.12182617, -1.7958984, 1.0058594, -0.0014619827, -3.4199219, -1.3408203, -2.6582031, 0.90185547, -0.7348633, -1.8427734, 0.51171875, 2.7011719, 2.0761719, 0.2319336, 0.5161133, 0.33789062, 0.70703125, 2.5859375, -1.8818359, 0.09753418, -0.16748047, -1.1787109, -0.3293457, 4.1445312, 1.3935547, -1.7626953, -1.0146484, 2.2519531, 0.53125, -1.7949219, 0.46606445, 0.36694336, -0.6489258, 0.5966797, 0.95947266, 2.9492188, 0.11035156, -2.3359375, -0.5786133, -0.4597168]}, "B07JNK5CHG": {"id": "B07JNK5CHG", "original": "Brand: LW\nName: High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU\nDescription: Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.\nFeatures: Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings\nPowerful 100,000 BTU/Hr + burner\nIncludes hose and regulator and only requires standard size propane tank\nDimensions: 13\" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs\nMatchless ignitor\n", "embedding": [-1.9775391, 1.0234375, 3.1621094, 0.8076172, 0.7089844, 1.0917969, 1.7060547, -0.9272461, -2.8769531, 1.6992188, 1.4208984, -0.6591797, 0.56347656, -1.8300781, -0.30932617, 0.57128906, -0.59814453, 0.7211914, 1.0869141, 0.84814453, 1.1064453, 0.48510742, 1.0595703, -1.3613281, -0.2800293, -0.49121094, 2.9121094, -3.6367188, -1.5361328, -2.1621094, 1.8623047, 0.6875, 1.1279297, 1.4082031, -3.3496094, -0.15588379, -1.1308594, 1.1289062, -4.0976562, 0.68603516, -1.3359375, 0.77734375, 1.5273438, 0.31567383, -2.2617188, 0.56103516, 1.2099609, 0.22912598, -1.8007812, 0.38085938, 0.6274414, -0.24157715, -0.7470703, 0.49145508, -1.2832031, 2.3867188, -1.1054688, -1.6679688, 0.4572754, -0.92578125, 1.8183594, 0.7973633, -1.8359375, -0.37060547, -0.53808594, 0.040771484, -0.32861328, -0.69091797, 1.8251953, 0.34643555, 1.5097656, -0.7480469, -0.15991211, -1.1152344, 1.4921875, -0.5126953, -2.4667969, 0.5419922, 3.7597656, -0.26831055, 0.5341797, 2.625, 0.3161621, -0.92089844, -0.037353516, 0.5683594, -0.75878906, -0.6557617, 2.2246094, 2.84375, -1.3037109, 3.828125, -2.890625, -3.015625, 2.7070312, 0.67041016, 1.8486328, 0.34545898, -0.2536621, 0.34692383, 1.2285156, -1.1923828, -2.4726562, 1.421875, -1.0927734, 0.36791992, 1.3349609, 1.5292969, -2.6445312, 0.9584961, -3.1660156, -0.7685547, 1.9658203, -0.52490234, 2.7832031, -0.06298828, 0.5058594, 0.3071289, 1.9326172, 0.9716797, 4.2109375, -0.8408203, 0.51464844, -0.62060547, 1.1708984, 0.5683594, -1.1015625, -0.023101807, 3.5234375, -2.4609375, -0.6953125, -0.15356445, 2.03125, -0.86328125, -0.7089844, -1.0947266, 0.17883301, -1.2246094, -2.6601562, -1.2519531, -2.3066406, 0.56640625, 0.17590332, -0.43139648, -3.203125, -0.043182373, 1.8955078, 0.6640625, -0.19909668, -1.3994141, 1.1474609, -1.4130859, -0.28295898, -0.44848633, 2.0742188, 0.43359375, 0.010017395, -0.03314209, 4.3984375, 0.57177734, -0.7285156, -1.5126953, -0.6816406, 3.9960938, 0.044311523, 0.20153809, 0.59814453, 0.99365234, 0.30493164, 1.3603516, -0.41870117, -1.4013672, 0.85791016, -0.18164062, 1.0205078, -1.3291016, -1.3779297, 2.2148438, 0.5029297, -1.9541016, -2.0898438, -2.7578125, 0.40771484, 2.1269531, -1.453125, -1.6123047, -0.3474121, -0.23620605, 1.9941406, -2.59375, 0.19226074, -0.9042969, 2.3847656, -1.6728516, 1.2724609, -1.6923828, -0.14697266, -2.8320312, -0.38964844, 1.4580078, -0.8520508, -1.2050781, 1.2373047, 0.096191406, -2.2148438, -0.92089844, -1.6230469, -0.6928711, 0.6274414, 2.5527344, 0.80322266, -0.48706055, 1.9697266, 0.68408203, -2.1796875, -2.2558594, 2.8339844, 0.31689453, 2.0898438, 0.6142578, -0.43823242, -1.9931641, 1.2626953, 2.2695312, 0.71484375, 0.7192383, 1.8945312, -0.3071289, -0.90966797, -0.9189453, 3.2675781, 1.0283203, -1.1054688, 0.1763916, -1.0986328, 2.7304688, 3.1289062, -0.19848633, 0.13439941, 0.13867188, 1.8505859, -0.052612305, 0.6567383, -0.8798828, -2.8808594, 0.03475952, -0.90283203, 1.3310547, 2.2871094, -0.5288086, -0.74072266, -1.0898438, 0.8876953, -0.40844727, -0.5473633, 0.2241211, -0.58203125, -0.7167969, -1.8574219, -1.7998047, 3.6484375, -1.4765625, -1.7832031, 1.4794922, -0.35107422, -1.3847656, 3.296875, 2.6660156, -3.2226562, -0.013931274, 0.68603516, 0.7026367, 2.6972656, -0.9916992, 1.4931641, 1.4335938, -0.5986328, 3.7324219, -0.092285156, 0.8051758, 1.0585938, -1.1386719, 3.2539062, -3.4257812, -0.99072266, 2.0800781, 3.375, -0.40649414, -2.3632812, 2.8632812, 5.4765625, -0.7060547, -2.7773438, 1.8076172, -2.3164062, -0.40014648, 1.2089844, 0.24621582, 2.3339844, -0.8886719, 1.3574219, 1.1132812, -0.86376953, 1.6503906, -1.4287109, -1.8916016, 1.2421875, -3.3554688, 0.43408203, -0.122558594, 0.25317383, -0.5102539, -0.9765625, 2.7089844, -2.8886719, 0.9199219, 3.0800781, -3.1816406, 2.6347656, -0.86035156, -0.48364258, 1.3925781, 0.53271484, 0.24365234, 0.9423828, 1.4082031, -0.92333984, 1.0292969, -0.6274414, -0.81152344, -2.1621094, -1.7421875, -0.17224121, -0.7963867, -1.328125, 0.07550049, -1.1162109, -2.1523438, 0.45458984, -1.1025391, -0.68603516, 2.2832031, -1.0546875, 0.77978516, -0.8984375, -4.0976562, -0.12561035, -1.7070312, -1.3691406, -0.6796875, 0.55810547, 1.7753906, -1.3193359, -2.9355469, 0.4333496, -1.5166016, -0.45239258, 1.0322266, -0.54833984, 0.94384766, 0.19665527, -0.60302734, 0.6694336, 2.4335938, 1.2675781, -1.3847656, 1.3535156, -3.4199219, 0.63964844, -0.63427734, 0.9199219, -0.10864258, -0.005332947, -2.5058594, 0.09680176, -0.60009766, -0.95458984, 2.7734375, -0.009246826, 2.4003906, -1.1474609, -0.12585449, 0.09863281, 0.4897461, -0.9790039, 0.4423828, -1.1582031, -1.1835938, -1.8837891, -4.7890625, -1.0273438, -3.2285156, -1.0703125, 0.4404297, 0.96533203, -0.29760742, -0.40673828, -1.5693359, -0.035491943, 0.70947266, -0.6069336, -0.6386719, -0.93115234, -2.6777344, -0.0022468567, -1.7373047, -0.46118164, 1.7910156, 1.3076172, 0.043273926, 1.1884766, 1.6425781, -0.08282471, -0.58935547, -0.45947266, -2.578125, 2.7636719, 1.4472656, -0.4987793, 1.6982422, -1.9853516, -0.8935547, -3.2734375, -0.8154297, 2.3046875, 0.8671875, 2.6855469, -0.1583252, -0.30029297, -0.04434204, 2.8007812, -0.09197998, -1.8222656, -1.0664062, 3.1621094, -1.7900391, -2.1113281, 0.6303711, 2.3027344, -3.2109375, 1.1455078, 3.6757812, 0.8569336, 0.66064453, 0.6274414, 2.6191406, -1.3964844, -0.54296875, 1.5546875, 1.9960938, 0.79003906, -0.45410156, -1.0878906, 1.9072266, -1.3076172, 1.1464844, 2.8847656, 0.95996094, 1.8847656, 3.6523438, 1.9423828, -0.7675781, -0.59765625, 0.71240234, 2.2128906, 1.3378906, 2.4414062, 0.54052734, 0.1973877, -2.1679688, 0.49951172, 0.07434082, -2.734375, -1.2636719, 1.6503906, 2.2246094, -0.5019531, 0.20117188, 0.86621094, 0.005279541, -0.9555664, 1.6289062, -0.16967773, -0.9267578, 0.6767578, -0.08288574, 1.7548828, -3.0253906, -0.64208984, -0.18566895, -1.5166016, -0.062683105, -0.05041504, -1.4072266, -3.0488281, 0.7050781, -0.43530273, -1.6425781, 3.5742188, 0.88916016, 0.12573242, -0.60791016, -2.0253906, 0.2709961, 0.060943604, -0.9741211, 0.24328613, -0.7182617, 0.90283203, -0.3725586, 0.41259766, 1.3925781, 0.87939453, -1.2070312, 0.28393555, -3.4570312, -0.98339844, 0.05053711, -4.5, -2.3359375, -0.1194458, -0.16174316, 0.24450684, 0.32763672, 3.2851562, -1.859375, -0.73583984, 1.3808594, -2.0253906, -0.35107422, -3.8027344, -4.03125, 0.0385437, -1.3935547, -0.43408203, 2.5332031, -0.52490234, -0.40649414, -0.5703125, 1.1132812, -2.234375, -0.6791992, -1.0019531, 1.6943359, -1.1601562, 2.0917969, 1.5917969, -0.10028076, -1.3935547, -1.4599609, 0.40429688, -0.5756836, 0.9003906, 2.4707031, -3.7539062, 2.2929688, -0.6113281, -0.8457031, -1.7275391, -0.13928223, -0.23522949, -1.5332031, -0.65966797, -1.7207031, 1.6318359, 0.55029297, -0.09362793, 0.9555664, 2.9082031, 0.6699219, -0.18005371, 0.6376953, 1.9501953, 3.0039062, -0.027313232, -1.9960938, -0.7246094, 0.56884766, -0.64501953, 0.28955078, 0.13366699, -1.2119141, -0.01020813, 0.8671875, 0.9379883, 0.3095703, 2.5390625, 1.5107422, -2.2910156, -0.86621094, 0.46313477, -2.7324219, -1.5595703, 0.67578125, 1.4160156, -1.9638672, 1.1455078, -0.6459961, -1.2675781, -1.6210938, 0.62646484, -1.9951172, 4.2695312, 2.4492188, 2.3652344, 2.2246094, -1.1142578, -2.5332031, -1.6035156, -0.0045661926, -1.5019531, -0.045440674, -0.2442627, -0.29589844, 1.9091797, 1.0253906, 0.35913086, -1.1904297, 1.7207031, -1.1552734, 0.35327148, -1.8486328, -0.05657959, -1.2353516, -0.9013672, 1.3623047, -1.1064453, 2.3417969, -1.4707031, -3.1171875, -0.3305664, 0.41552734, -1.0478516, -0.6875, 0.3503418, -1.5, -0.32495117, 1.1230469, 0.3630371, 1.0908203, 0.67089844, -0.47045898, 2.234375, 0.43652344, 1.1523438, -1.3867188, 1.8046875, -0.14343262, -1.5517578, 0.38305664, 0.8720703, 1.7011719, 2.7109375, 1.8730469, -1.6044922, -0.09082031, 0.3449707, -3.7421875, 0.10058594, 1.6132812, -1.9150391, 2.4667969, 1.2197266, -0.84375, -0.7241211, 3.9570312, -0.009941101, 2.0761719, -0.61328125, -0.57421875, -0.05267334, -2.7675781, -1.3066406, -2.3808594, 0.2553711, -0.66015625, -0.6513672, -0.10821533, -2.3886719, 0.73046875, 1.4951172, -0.5151367, -0.49682617, 2.4960938, -1.8583984, -0.3527832, -0.072753906, -2.5136719, -3.1542969, 1.1845703, 1.046875, 1.7714844, 0.56689453, -0.5966797, -0.27075195, -1.0683594, 1.0722656, -0.5083008, 2.9511719, -2.8007812, -0.3388672, 2.1328125, -0.94873047, -1.1230469, -2.1308594, -1.7724609, -2.453125, 0.5473633, 0.6826172, -1.7802734, -0.7705078, 0.7792969, -1.5351562, -3.1914062, -0.39770508, 2.421875, 0.12915039, -0.41748047, -1.125, -2.2382812, -1.6123047, -0.0362854, -1.203125, -2.1171875, 1.1933594, 0.4494629, -0.9824219, -0.8095703, 1.2851562, 0.8959961, 1.0947266, 0.7729492, 0.39697266, 0.34375, -2.5898438, -2.7773438, 1.7753906, -3.5859375, 2, 1.0820312, -0.7026367, 1.8232422, 2.9335938, 0.7529297, -2.21875, 3.4765625, -2.7929688, -1.4414062, 0.89501953, -1.0683594, 0.31176758, -1.0820312, -1.4228516, -0.5229492, -0.6142578, -2.03125, -0.7558594, 1.0947266, 1.2119141, -0.49438477, 2.0800781, -0.82421875, 1.0136719, 1.1689453, 1.8691406, 2.4609375, -0.6489258, -2.3808594, -2.6113281, -2.0390625, -0.41259766, -1.6289062, -0.3232422, -1.1054688, 1.4921875, 2.5683594, 0.7285156, -0.59521484, 0.059173584, -1.1708984, -0.85058594, 1.9755859, -2.0058594, 4.359375, 1.609375, -1.5078125, -1.9941406, -1.0517578, 0.018432617, -0.41186523, 0.91015625, -0.96191406, 0.6455078, -0.72509766, -0.59375, -0.17358398, 2.1210938, 2.0683594, 0.09832764, -2.4941406, -0.39697266, 2.921875, -0.9584961, -0.5288086, 0.7758789, -3.1523438, -0.12536621, 4.5117188, 0.5932617, -1.3154297, 1.3291016, -2.6835938, 0.89160156, -1.0185547, -3.1113281, 0.36279297, -1.1044922, -2.0917969, -2.2402344, -2.3300781, -3.3203125, 0.18640137, 1.7490234, -0.029891968, -0.44555664, 1.9755859, 0.25561523, 2.7089844, 2.4355469, 2.3984375, -0.03277588, 1.6425781, -0.7890625, 1.0898438, 3.5332031, -2.2832031, 1.5615234, 0.042297363, -1.2578125, -2.2382812, 0.41455078, 0.34033203, 2.0527344, 0.097595215, 0.56933594, 2.5273438, 1.5234375, 2.1816406, -0.023101807, 2.4023438, 3, 1.2548828, 1.1767578, 0.7319336, 0.44311523, -0.122558594, -1.8632812, 0.20422363, -2.4941406, -0.75439453, -0.14013672, -0.3503418, 2.1699219, -3.9589844, 1.4326172, -1.8642578, 0.95996094, -1.4101562, 1.0585938, -0.25268555, -0.7548828, 0.07043457, 0.33203125, 1.1455078, 0.63183594, -0.20654297, -1.6347656, 0.33007812, 0.025100708, -4.328125, 1.1650391, -1.2578125, -2.0507812, 0.3239746, 1.6318359, 0.71777344, 0.4560547, 0.28076172, -0.14208984, 1.4433594, 0.35083008, 1.2910156, -1.7675781, -1.0458984, 0.91503906, 3.4707031, 2.0566406, 1.2158203, 1.2792969, -1.0732422, -2.1679688, -2.5058594, 3.7714844, 2.25, 0.9458008, -0.5449219, -1.1328125, 2.9414062, -0.77246094, 1.0449219, -0.44799805, 2.8925781, -0.35229492, -2.6015625, 0.09631348, 1.3310547, -0.0005173683, 1.6542969, 1.6796875, -0.86816406, 0.6015625, 0.092041016, 2.4863281, 2.1445312, 0.89697266, -1.0478516, 1.3798828, -0.025863647, 3.4296875, 2.2207031, -2.7578125, 1.1757812, 4.4648438, 1.7382812, 0.43676758, 0.48706055, -1.5361328, 1.8857422, -0.07739258, 0.8378906, -0.6166992, -0.9453125, -2.265625, -1.6142578, 0.08496094, -1.1738281, -1.9501953, 2.3398438, 0.5024414, 0.19750977, 0.64404297, 1.0859375, -1.2548828, 0.47631836, 0.95703125, -0.4638672, -0.5361328, -0.47875977, 1.2216797, -1.5380859, -1.5458984, 0.63427734, 1.8183594, 2.65625, -1.4570312, -0.37817383, -1.4492188, 0.75878906, -1.5908203, 0.5996094, -1.1806641, -0.81396484, 1.4462891, 0.07940674, -2.2519531, 2.4609375, -1.8359375, 0.46289062, 0.4543457, -3.8808594, -1.2412109, -0.03250122, -1.2265625, 1.7011719, 2.4453125, -0.98583984, 0.32714844, -1.7519531, -3.1054688, -1.4199219, -1.0302734, 0.8857422, 0.6879883, -2.0019531, 0.36254883, 0.56103516, 1.2841797, -1.2089844, -0.39013672, -0.46313477, -0.73339844, 0.49609375, 0.8388672, 2.6621094, -0.77441406, -0.38452148, -0.79248047, 3.75, 0.62646484, -1.9873047, 1.3789062, 2.3164062, 0.5307617, -3, 0.25024414, 0.9121094, 1.6015625, -0.055480957, 2.2148438, 1.4775391, 2.0546875, -1.9697266, -1.3027344, -2.6191406]}, "B07TNWQV77": {"id": "B07TNWQV77", "original": "Brand: XtremepowerUS\nName: XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn\nDescription: High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day\u2019s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15\"(W) x 15\"(L) x 13\"(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove\nFeatures: From tailgating to the backyard chef, cook-off chili to the day's crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable\nWide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control\nPerfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting\nCooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days\nEasy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy\n", "embedding": [-1.8554688, 2.2109375, 2.4199219, -0.07092285, -0.47558594, 1.4003906, 1.2382812, -2.3320312, -1.2480469, 0.37036133, -0.18359375, 0.20410156, 0.5371094, -2.6933594, 0.37597656, 1.6201172, -0.7294922, 0.32006836, -0.40185547, 1.4443359, 2.0566406, 1.1796875, 1.9853516, -0.70996094, 0.5595703, 0.27661133, 2.6640625, -4.0390625, -1.515625, -1.0302734, 2.7128906, 0.30249023, -0.9477539, 2.3320312, -3.3398438, 0.07159424, -2.0839844, 0.7524414, -4.4882812, -0.33862305, -1.4980469, -0.61572266, 2.1054688, -0.32348633, -2.4726562, -0.1953125, 0.6425781, 1.1572266, -2.0234375, -0.9633789, -0.014915466, 0.07788086, 0.13427734, 0.79833984, -1.2988281, -0.3334961, -0.80566406, -2.0195312, 1.0507812, 0.35620117, 1.4257812, -0.54296875, -2.6796875, 1.2226562, -1.4931641, 0.640625, 1.3369141, 0.17126465, -0.06085205, 0.6567383, 1.7783203, -1.0166016, -0.64404297, -0.07385254, 0.1361084, -0.9135742, -2.2597656, -0.06173706, 4.4648438, 0.03967285, -2.0390625, 3.3066406, 1.4130859, -1.3603516, 0.12670898, 1.1914062, -1.7626953, -0.55566406, 2.5214844, 0.6298828, -1.5146484, 3.1992188, -3.7480469, -3.4570312, 2.2109375, 0.640625, 1.5136719, 0.10095215, -0.14587402, 0.73779297, -1.6162109, -0.6074219, -1.1953125, 0.7705078, -2.4804688, -0.54003906, 2.3515625, 2.2324219, -3.0195312, 0.89160156, -2.7265625, -1.1601562, 0.64501953, 0.4309082, 2.0664062, -0.6948242, -0.85839844, -0.8408203, 4.3867188, 0.5703125, 4.6445312, 0.58984375, -0.23461914, -0.8989258, 0.4802246, 2.5234375, 0.39746094, 0.36499023, 2.1152344, -0.9667969, -0.3161621, -2.9941406, 2.3300781, 0.5488281, -0.23522949, -1.8046875, -0.34887695, -2.5058594, -4.5429688, 0.71875, -3.6289062, 0.43847656, 1.734375, -0.19348145, -3.8769531, -1.1738281, 0.069885254, 2.7128906, 0.54589844, -1.4121094, -0.068603516, -1.4023438, 0.7475586, -2.0410156, 2.6601562, 0.5283203, -1.4472656, -1.8300781, 3.4160156, 0.8203125, 0.4086914, -2.3417969, -1.9775391, 3.0273438, 1.3427734, -1.7548828, -0.048095703, 0.48388672, -0.9082031, 1.6113281, -0.92333984, -2.2597656, -1.1386719, -0.14160156, 1.5537109, -1.3886719, -0.74902344, 3.1875, 0.44458008, -0.8457031, -3.6640625, -1.8427734, 1.6025391, 1.4814453, 0.3322754, -1.2548828, 0.2241211, 0.31420898, -1.4072266, -2.3945312, -0.3701172, 0.2241211, -0.17468262, -0.69677734, -0.0947876, -1.8769531, -0.7807617, -3.0273438, 0.12237549, 1.7880859, -1.2265625, -1.3779297, -0.82714844, 0.5620117, -3.0039062, 0.20874023, 0.6401367, -1.7890625, 1.9589844, 2.2167969, 0.36279297, -0.85009766, 1.8925781, 0.32226562, -0.7182617, -1.3701172, 2.2070312, 1.6933594, 1.5224609, 1.9716797, 0.6328125, -1.2314453, 0.5053711, 1.4863281, 0.41918945, 1.5185547, 0.100097656, -0.76708984, -0.6694336, -1.4882812, 3.1601562, 1.3320312, -1.1083984, 0.5083008, -0.68359375, 2.9082031, 1.5986328, -1.1904297, -0.5761719, -0.21350098, 1.2216797, -1.9658203, -0.95458984, 0.35107422, -1.4482422, 0.9741211, -0.06173706, 0.61328125, 3.2265625, 1.0703125, 0.375, -0.58447266, -0.07019043, -1.2978516, -0.086364746, -1.2451172, 1.1455078, 0.32006836, -2.0976562, -2.0683594, 1.109375, 0.9819336, 0.092285156, 1.96875, 0.72558594, -0.20898438, 3.0996094, 1.3828125, -2.2734375, 0.093566895, 0.41723633, 1.2490234, 3.5839844, -0.4794922, 3.2207031, -0.51708984, -0.83935547, 1.8505859, 0.062561035, 2.3945312, 0.51220703, -3.3730469, 2.3535156, -3.2636719, 2.1855469, 0.62646484, 2.5957031, 0.35620117, -0.9350586, 0.30786133, 6.125, -1.3486328, -2.7929688, 2.2207031, -1.96875, 1.7460938, 0.08117676, 1.125, 0.98583984, -0.67089844, 1.9257812, -1.1142578, -1.5537109, 1.6240234, -1.8740234, -0.097961426, 1.4492188, -1.8271484, -1.0273438, 1.5478516, 0.30859375, -1.8115234, -1.3671875, 0.9135742, -1.1259766, -0.6894531, 2.5644531, -3.5488281, 0.66259766, 1.5175781, 1.2431641, 1.6533203, 0.24438477, -2.3710938, 0.9013672, 1.7695312, -0.34545898, 1.2939453, 1.1933594, 0.46166992, -1.1396484, -2.6171875, -0.5004883, -1.0048828, -2.2851562, -0.34716797, -1.9345703, -2.9472656, 1.2265625, -2.7128906, -1.5117188, 1.3935547, -1.8066406, 0.46826172, -0.18908691, -3.3203125, -0.117492676, -0.015853882, -1.0800781, 0.19140625, 0.96484375, 1.3232422, -1.0849609, -2.859375, 0.39111328, -0.2076416, -0.016723633, 0.052703857, -1.15625, 1.3974609, 0.13635254, 0.21960449, 0.08898926, 0.5058594, 0.6074219, -3.125, 0.30981445, -3.4492188, -0.5253906, -0.7675781, 1.1494141, -0.36254883, 0.6225586, -2.3710938, -0.18688965, 0.296875, 0.011756897, 2.7734375, -1.2626953, 1.9121094, -2.265625, -1.1582031, 0.28149414, -2.9902344, -2.8242188, 0.45874023, -0.33276367, -1.5185547, -1.1152344, -4.71875, 0.7607422, -2.0527344, 0.26293945, -0.51904297, -0.21032715, -0.93603516, 1.4179688, 0.110961914, -0.84521484, -0.30541992, -1.1396484, -0.42944336, -3.2421875, -2.2167969, -0.33422852, -1.6855469, -1.2900391, 0.82421875, 0.8378906, 0.76660156, 0.1986084, 2.4433594, 1.2099609, 0.65234375, -0.36889648, -4.1328125, 3.25, 1.8154297, -0.80859375, 2.1074219, -1.1796875, -0.23864746, -1.5244141, -1.6650391, 2.1640625, 0.6635742, 3.5039062, 0.5366211, 0.8388672, 0.06506348, 2.0878906, -0.13989258, -2.8554688, 0.86083984, 5.4921875, -2.4140625, -1.3857422, 1.5576172, 2.2910156, -2.3632812, 0.27319336, 0.82177734, 1.0136719, 2.0527344, 2.40625, 0.7163086, -1.03125, -0.1161499, 0.22131348, 2.0976562, 0.83935547, 0.3762207, -1.7070312, 0.38427734, 0.09851074, 0.6430664, 0.4350586, 0.006866455, 1.8896484, 2.1972656, 0.46069336, -1.0107422, 0.43041992, 0.17053223, 2.0644531, 1.7021484, 2.8691406, 0.45654297, -1.7597656, -1.7558594, -0.6953125, 0.7548828, -1.7509766, 0.066467285, 0.7158203, 0.66015625, 0.5463867, 1.0976562, -0.9765625, 0.9448242, -1.1005859, 1.6738281, 0.32641602, -0.17797852, 1.8115234, -0.73779297, -1.0332031, -3.3867188, 1.9306641, -0.86035156, -0.51416016, 0.48876953, 0.7573242, -1.6748047, -1.6357422, -0.7504883, 1.1083984, -1.4599609, 5.078125, 2.3867188, -1.7900391, 0.5859375, -1.34375, 0.39990234, 2.1230469, -2.0195312, -0.2421875, -0.8725586, 0.5317383, -1.0566406, -0.010856628, 1.6015625, 1.4121094, -1.1650391, 0.117126465, -2.5976562, -0.118652344, 0.47265625, -1.8154297, -1.2148438, 2.3261719, -0.027435303, 1.5048828, -0.52783203, 4.4804688, -1.1533203, -1.0888672, 2.3339844, -3.1875, -2.0058594, -2.1582031, -4.953125, 1.6279297, -0.6928711, -0.3371582, 2.2109375, -1.5537109, 0.54296875, 0.95410156, 1.3027344, -2.0488281, -1.4658203, -1.3496094, 0.8652344, -2.78125, -0.5805664, 1.3496094, -0.42626953, -2.109375, -1.1503906, -0.31933594, -1.0878906, 1.6738281, 2.6054688, -2.1191406, 2.0390625, -1.9794922, 0.25805664, -0.8745117, -0.44433594, -0.37841797, -1.0224609, 0.19299316, -2.6933594, 0.6308594, 1.0273438, 0.1977539, -0.19250488, 3.7714844, 0.5395508, 1.6445312, 0.28833008, 1.7490234, 2.7617188, 0.16040039, -2.4277344, -2.7832031, -0.27783203, -0.89453125, -0.25561523, 0.15161133, -1.5595703, -1.6748047, 1.4384766, 0.9951172, 0.5595703, 2.0273438, 0.9003906, -1.6796875, 0.66503906, 0.48291016, -3.3144531, -1.1181641, -0.7167969, -0.23657227, -2.0976562, -0.20678711, -0.39770508, -1.6269531, -0.6381836, -0.7729492, -1.5703125, 2.7167969, 0.72753906, 1.7724609, 1.2470703, -1.2509766, -2.7734375, -0.38330078, 0.17224121, -0.4963379, 1.3671875, -0.3708496, 0.3076172, 2.9707031, 1.0732422, -1.2519531, -0.46533203, 1.46875, -1.4033203, -0.7265625, -1.265625, 1.4365234, -0.42529297, -1.6328125, 1.5859375, -1.0576172, 1.9560547, -1.0449219, 0.23071289, 0.99658203, 0.7524414, -2, -0.6870117, 0.65625, 0.7963867, 0.10772705, 0.17285156, 0.4128418, 0.5546875, 1.7949219, 1.6279297, 2.8945312, 1.5146484, 0.39794922, 0.25634766, 0.4909668, -0.9760742, 0.1083374, 0.8359375, 0.73339844, 1.2753906, 3.3300781, 2.3476562, -0.021591187, 3.0605469, 0.1105957, -1.9121094, -2.1445312, -0.82373047, -1.0205078, 1.9033203, -0.24523926, -2.6269531, 0.89404297, 2.9804688, -1.390625, 1.8837891, 0.35058594, -0.9423828, 0.6513672, -3.5214844, 0.0129776, -2.2753906, -1.3759766, 0.73046875, -2.7949219, 1.0078125, 0.4645996, 1.8789062, 2.1386719, -0.121154785, -0.43603516, 1.5361328, -1.5644531, 1.9814453, -1.3916016, -1.9726562, -4.8046875, 1.4990234, 1.4238281, 0.8154297, 0.9848633, 0.8623047, 0.3046875, 0.107788086, -1.8378906, -1.4189453, 1.8701172, -1.3007812, -0.7236328, 1.3056641, -0.77783203, 0.20251465, -1.6152344, -1.7128906, -1.3642578, 2.171875, 0.6220703, -0.056610107, 0.33276367, -0.69628906, -2.5664062, -5.4179688, -0.21911621, 1.2773438, -0.20019531, -1.5820312, -0.3786621, 0.04525757, -0.98779297, -0.78759766, 0.0129776, -2.7851562, 0.34423828, 0.74609375, 0.86035156, -1.3330078, 0.15393066, 0.35180664, 0.60546875, 0.78271484, -0.5654297, 0.47143555, -2.3945312, -1.84375, 1.453125, -2.484375, 1.4560547, 1.8408203, -1.7949219, -0.20703125, 2.2890625, -0.27734375, -0.73876953, 3.1933594, -2.2070312, -0.11004639, -0.9746094, -2.0371094, 1.9501953, 0.19995117, -0.014945984, 0.8808594, -1.1835938, -0.19628906, 0.5439453, 1.265625, 0.2998047, 1.0546875, 0.6411133, -3.0097656, 0.9980469, 0.017227173, 1.6279297, 2.2070312, -0.8911133, -1.2705078, -2.1074219, -3.5195312, 0.08258057, -1.1601562, -0.3371582, -1.2890625, 1.3818359, 0.36035156, 0.86376953, 0.11053467, 0.011039734, -0.06137085, -1.3505859, 1.3476562, -1.6318359, 3.3378906, 0.9160156, -2.0644531, -3.4960938, -2.875, 1.4150391, 0.8754883, 1.7695312, -1.4160156, 1.6103516, -0.9658203, 1.2890625, -1.2021484, 2.2871094, 2.5644531, 0.8979492, -1.609375, 0.83740234, 2.46875, 0.43286133, -0.20922852, -0.16210938, -1.1826172, -0.33544922, 3.2460938, 2.0996094, 0.21520996, 1.4365234, -0.85009766, 2.3886719, -0.011680603, -2.7226562, 1.5078125, -1.2714844, -0.51416016, -2.4394531, -2.1132812, -0.9765625, 2.2207031, 1.7070312, -1.1523438, 0.7324219, 2.84375, 0.13000488, 0.7265625, 2.2910156, 0.5131836, -0.58691406, 1.8496094, -1.1826172, -0.19677734, 2.1425781, -2.4433594, 0.57128906, 0.45092773, -0.11920166, -0.6791992, 1.8261719, 1.4072266, 3.7207031, 2.5039062, 1.4824219, 2.015625, 1.2939453, 3.1933594, 0.82714844, 3.7558594, 2.8378906, 0.6113281, -0.4326172, 2.6679688, 0.6557617, -0.3815918, -1.3164062, 0.43969727, 0.19250488, -0.203125, 0.0016460419, -1.1113281, 0.18395996, -3.5234375, 1.1601562, 0.62890625, 1.5488281, -2.1191406, 2.2519531, -0.63916016, -0.9086914, -0.088378906, -0.7705078, -1.4833984, -0.9663086, 0.6142578, -0.7529297, 0.54296875, 1.5732422, -2.4765625, 0.37451172, -1.0410156, -3.21875, 0.3413086, 1.6777344, 0.26123047, 0.68603516, 0.6298828, 0.21508789, 0.57958984, 0.89160156, 2.859375, -2.8476562, 0.14123535, -0.69970703, 3.359375, 0.8564453, -1.2470703, 1.8505859, -0.67626953, -2.5605469, -4.1835938, 2.9980469, 0.19763184, 1.1357422, 0.72021484, -3.2011719, 3.9160156, -0.09173584, 1.8925781, -2.296875, 1.9667969, -0.55810547, -1.0917969, -0.97021484, -0.203125, -0.9506836, 4.8789062, 1.2695312, -0.67529297, 0.9921875, 0.96191406, 0.5410156, 0.13806152, 2.4746094, -0.5551758, 0.8618164, 0.6176758, 2.6152344, 2.1152344, -3.171875, 0.8383789, 2.0839844, 1.3320312, 1.8349609, 0.14416504, -1.2871094, 0.8886719, 0.81347656, -1.0078125, -0.53222656, -0.80078125, -1.6328125, -0.3166504, 0.06695557, -1.6328125, -4.0898438, -0.20593262, 1.5351562, -0.6801758, 1.34375, 1.8574219, -0.83496094, 0.82128906, -0.21606445, -1.0546875, -0.027862549, -1.53125, 0.70166016, -2.5878906, -2.0878906, -0.61279297, 0.40551758, 0.71191406, -0.25610352, -0.40698242, 0.6455078, 0.3630371, -1.2226562, 1.0585938, 0.44750977, 0.47265625, 0.011451721, -0.10571289, -0.20422363, 2.8867188, -0.32006836, 1.0117188, -0.8779297, -3.6640625, -1.5673828, -1.0800781, -1.1503906, 2.4023438, 2.625, 0.8623047, 1.4130859, -1.5888672, -2.6132812, -2.1269531, -1.9111328, 1.6914062, -0.3864746, -0.29370117, 1.3554688, 1.8759766, 2.3476562, -0.31762695, -0.061187744, -0.62939453, 0.6567383, 1.1542969, 1.3720703, 1.6357422, 0.6352539, 0.8510742, -0.7504883, 2.2109375, 1.3369141, -0.99853516, 1.3769531, 2.5429688, -1.2207031, -3.0898438, 1.2246094, -1.2216797, -0.7290039, -0.76904297, -0.45507812, 3.0917969, 1.9804688, -1.4365234, -2.7792969, -2.0664062]}, "B00NCSUZBQ": {"id": "B00NCSUZBQ", "original": "Brand: Magma\nName: Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nBurner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\n", "embedding": [0.020431519, -0.6958008, 1.75, 2.75, 1.5097656, 2.0390625, 0.107299805, -1.5605469, 0.18908691, 1.3271484, 0.40722656, 0.7446289, -0.49438477, -0.8852539, 1.7744141, 1.8779297, 0.88623047, 1.6699219, 0.6723633, -1.3603516, 1.2216797, -0.4909668, 1.1240234, -1.0087891, 3, 1.4912109, 3.6992188, -2.7617188, 0.6220703, -1.8037109, 1.1542969, 0.7788086, -0.85009766, 1.7138672, -2.7324219, -0.24572754, -1.0703125, 0.8408203, -2.3085938, -0.034698486, 0.3557129, -0.72998047, 2.1738281, 0.068359375, -3.6582031, -0.9707031, 1.4003906, 1.8203125, -2.40625, -2.578125, 2.7910156, 0.45214844, -0.47680664, 0.14233398, -1.5087891, 2.0234375, 1.8349609, -0.6459961, 1.2304688, 0.08001709, 1.8046875, -0.82373047, -1.2744141, -1.3554688, -2.0644531, 0.44604492, 0.74560547, -0.45092773, -0.46728516, -0.7729492, 1.5488281, 1.0517578, -2.4023438, 0.9213867, -1.2021484, -0.85546875, -3.9101562, 1.5869141, 0.5209961, -0.14025879, -2.6738281, 2.8925781, 1.1982422, -1.4501953, 0.43579102, 0.54296875, -1.2529297, -0.045318604, 0.41088867, -0.09979248, -1.0214844, -0.029464722, -1.8691406, -4.4765625, 2.1757812, 0.4182129, -0.31201172, 2.3886719, -0.5605469, 0.24633789, -0.24206543, 0.77441406, -0.9819336, -0.6147461, -2.8164062, -1.2490234, 1.1171875, 0.38134766, -3.0722656, -1.5546875, -2.2714844, -0.5449219, -0.25732422, 0.8984375, 2.3300781, 0.06060791, 1.1904297, 0.27124023, 1.0195312, 2.0976562, 2.0644531, -0.057281494, 1.28125, -0.20825195, 0.19238281, -1.3974609, -0.08300781, 3.0800781, 4.71875, -2.0625, 0.2668457, -1.1035156, 4.21875, -0.45166016, -1.1318359, -3.5957031, -0.61572266, -2.34375, -1.6464844, 0.21191406, -2.6660156, 1.6933594, 1.7050781, -1.2685547, -3.9179688, -0.30810547, -0.6308594, 0.29907227, -0.29296875, -1.6796875, -0.62597656, -1.7431641, 0.42822266, -0.16345215, 1.7900391, -1.8427734, -0.4736328, -2.3085938, 3.171875, 0.6303711, 0.20983887, -1.2900391, -1.6953125, -0.05899048, -0.57910156, -1.0576172, -1.0615234, 2.0898438, 1.7441406, 2.0039062, 0.057373047, -0.17651367, 1.6435547, -0.072387695, 0.26123047, -0.076416016, -0.1394043, 0.5722656, 0.27441406, -0.6064453, -1.9931641, -2.0585938, -0.24377441, -0.3930664, 2.1113281, -0.5239258, -0.34350586, 0.6113281, 0.13659668, -0.12548828, 1.1210938, 1.2363281, -1.1376953, 2.1328125, -0.484375, -2.3378906, -3.4375, -0.79003906, 2.8828125, 0.58203125, 0.29418945, 1.0380859, -0.20800781, 0.6821289, -1.8710938, -3.6855469, -0.75390625, -2.1835938, 0.9785156, 1.1210938, 2.5742188, -2.7089844, 1.3525391, -0.91552734, 1.2392578, -1.9296875, 1.4375, -0.98095703, 1.9589844, 2.25, -1.1582031, -0.7607422, 1.0341797, 1.5644531, -0.23876953, 1.1357422, -0.45166016, 1.5419922, -2.8554688, -0.95751953, 1.4863281, 0.049102783, -0.75, -0.070373535, 0.9394531, 1.8398438, 0.15429688, -1.6376953, -0.13330078, -1.5273438, -1.6621094, -1.6953125, -2.7675781, -1.5039062, 0.32104492, 0.37329102, -2.6542969, 0.7915039, 3.3769531, 1.4189453, -1.0166016, 1.0214844, -0.31152344, 0.43188477, -0.51904297, 0.8647461, -0.24047852, 0.7729492, -0.62890625, -3.2871094, 2.1347656, 1.6728516, -0.72314453, 0.80322266, 1.2167969, -0.9379883, 3.0371094, 0.18457031, -0.27319336, -1.5644531, 2.1875, 0.43603516, 3.3867188, 0.29248047, 2.59375, 2.4277344, 0.55810547, 2.5039062, 1.1533203, 0.89501953, 1.2451172, 0.3581543, 0.98779297, -4.3710938, 0.13330078, 0.30444336, 0.89990234, -1.2207031, -0.81396484, 1.4970703, 4.0351562, 0.11657715, -2.421875, 4.6914062, -0.12200928, 0.62060547, 2.0644531, -1.1142578, -1.6796875, 0.5463867, 1.7578125, 0.9326172, 0.2685547, 1.2119141, -0.44482422, -1.7539062, 1.4589844, -1.1748047, -0.38549805, 0.46118164, -0.7763672, -0.31201172, -0.64208984, -0.28027344, -0.14990234, -0.8417969, 0.9121094, -2.0390625, 1.390625, 0.25805664, 4.1015625, 0.3005371, -0.34179688, -0.1875, -0.0069236755, 0.3774414, -1.0673828, 0.7050781, 0.09173584, -0.078552246, 1.8037109, -0.20361328, 0.8647461, -1.9150391, -1.7255859, -0.8178711, -2.2871094, -2.1875, -0.0602417, -1.5800781, 0.47509766, 1.4335938, -2.3886719, 0.6977539, -1.6396484, -2.1875, -2.0664062, -0.19812012, 0.46899414, 0.7661133, -0.084228516, 0.29614258, 0.45874023, -6.1289062, -0.7036133, 0.6352539, -1.6650391, 1.4746094, -1.7070312, -0.46240234, 0.25683594, -0.98291016, -0.9189453, -0.03378296, 0.42871094, -1.1113281, 0.6333008, -2.5917969, 0.19091797, -2.8183594, -0.40600586, -2.6191406, 1.2753906, -3.6386719, -2.6171875, -1.0419922, -0.8730469, 6.171875, -2.4121094, 0.12768555, 0.67041016, 1.2109375, 1.7021484, -3.0605469, -3.046875, -1.3837891, 1.8603516, -0.6699219, -1.8066406, -2.5820312, 1.0800781, -0.47875977, 0.2142334, 0.23852539, 1.6660156, -2.1738281, 1.4296875, -1.4638672, 0.09399414, 0.24157715, 0.23400879, -0.06323242, -1.2695312, 0.86083984, -1.9667969, 0.2565918, -1.1259766, -0.6308594, 1.6396484, -1.2695312, 1.1162109, 0.49145508, 0.46166992, 0.88183594, -0.28100586, -2.9414062, 1.7128906, -0.5126953, -2.9375, 0.60253906, -0.47583008, -2.3300781, -2.2519531, -0.9614258, 0.9526367, 0.7036133, 2.6835938, 0.3786621, 1.5078125, 0.64746094, 0.41723633, 0.10656738, -0.55322266, -1.6816406, 5.2734375, -1.2675781, -1.2998047, 0.8105469, 1.953125, -3.7109375, -0.7651367, 1.3164062, 1.2314453, 2.828125, -0.13269043, 2.0292969, -0.30419922, -0.08203125, 2.2753906, -1.0019531, -1.3300781, 0.61572266, -0.105529785, 0.5839844, -0.0814209, 1.4287109, 1.2509766, -0.5673828, 2.46875, -0.625, 0.046936035, -1.4101562, 0.79052734, -1.1826172, 1.1425781, -0.9980469, 3.6210938, -0.5336914, 0.17053223, 0.09863281, 0.31347656, 1.0693359, -1.421875, 0.0892334, 1.953125, -0.23144531, 0.7573242, -0.44580078, 0.9404297, 1.5917969, 0.15893555, 0.10241699, -3.5, 0.5341797, 2.1347656, -0.94384766, -1.9453125, -2.09375, 2.3964844, -1.3945312, -0.7783203, -0.051452637, 1.6513672, -0.7729492, -1.8330078, -0.08544922, 1.0029297, -0.3864746, 2.4511719, -0.36645508, -1.5830078, 1.1943359, -1.9882812, -0.013214111, 0.90966797, 0.53515625, 1.0566406, -0.14025879, 0.5776367, -0.033813477, 0.3618164, 0.8696289, 0.24890137, -2.78125, 0.12780762, -2.0371094, 0.8378906, -0.19433594, -0.7998047, -0.8754883, 2.1738281, 0.27075195, 1.125, -0.4375, 3.7070312, 0.3491211, -2.2910156, 2.2441406, -2.90625, -1.6914062, -3.4335938, -3.8554688, 1.265625, -0.59033203, -1.3193359, 3.4121094, 0.47705078, -1.2783203, 1.2138672, -0.5053711, -3.1640625, -2.2148438, -0.024902344, 0.14758301, -1.2988281, -2.640625, 1.0205078, 1.171875, -4.5078125, -1.359375, 0.16418457, -0.23059082, 1.3769531, 0.79345703, -2.4238281, -1.0332031, -1.4082031, 0.54541016, -0.9355469, 0.053771973, 1.2333984, 0.10699463, -0.03918457, -1.8427734, -0.9560547, -0.105407715, -1.4970703, 1.6748047, 1.8808594, -0.21850586, -0.6611328, 0.49389648, 1.3291016, 3.0058594, -0.15319824, -2.1699219, -4.2773438, 0.22387695, 0.5024414, -1.4199219, 0.7001953, -0.36889648, -2.8007812, 0.70458984, 1.2539062, 2.3710938, 3.078125, -1.0410156, -1.0458984, 0.21777344, -0.25732422, -1.9589844, 0.82910156, 1.1171875, 0.30566406, 0.15979004, -0.042755127, 0.6171875, 1.1425781, -1.7529297, -0.25634766, -1.390625, 0.5698242, 0.27026367, 0.7314453, 2.0175781, 0.48242188, -0.65966797, 0.25585938, -1.4736328, 0.7832031, -0.22265625, -0.03390503, -0.28149414, -0.48657227, 1.4941406, -1.3125, 1.3974609, 2.2734375, -0.8691406, -1.1025391, -1.0712891, 0.14746094, -2.2949219, -1.4511719, 0.48413086, -0.49316406, 3.0371094, -2.2421875, 1.25, -1.2666016, -0.19494629, -0.11401367, 0.75390625, -0.25097656, 0.65771484, 0.90234375, 1.4521484, 0.78027344, 0.23962402, 0.30029297, -1.1767578, 2.703125, -0.3244629, 1.1748047, 0.25830078, -0.93359375, -0.024169922, -1.7207031, 1.6943359, 2.9394531, -0.14672852, 2.4277344, 0.25341797, -3.2929688, 3.1132812, -0.16674805, -1.9863281, 0.5527344, 0.72998047, -0.8984375, 0.5839844, 0.54541016, -2.8574219, -1.1162109, 0.77001953, -2.6699219, 1.9755859, 1.2119141, 0.04815674, -0.4296875, -2.1640625, -1.5419922, -0.76416016, -0.25, -0.53759766, -1.4521484, 1.578125, -1.2802734, 1.0644531, 2.8652344, -1.3574219, -0.6640625, 2.5214844, -1.15625, 1.5976562, -0.9458008, 0.084228516, -0.8364258, 0.75683594, 3.4785156, 0.8417969, 0.7368164, -0.6035156, 1.3652344, -2.3183594, 0.24353027, -0.60009766, 1.3398438, -0.19873047, -1.4716797, 1.3691406, -3.0234375, 0.00012123585, -1.5087891, 0.9277344, 0.09490967, 2.203125, 2.3105469, 0.5966797, -1.7587891, 0.5864258, -2.109375, -3.375, -2.5996094, -0.58691406, 0.56640625, 0.18103027, 1.3359375, -0.90966797, 0.9301758, 0.90966797, -0.057647705, -1.1962891, -1.0400391, -0.6894531, -0.8339844, -1.1230469, -0.14489746, -0.51708984, 0.44995117, 3.4082031, 0.23205566, 0.25634766, -2.8457031, -1.8447266, 1.3183594, -0.30444336, -1.4433594, 1.1503906, 1.7333984, -0.4333496, 1.4511719, 0.96533203, -1.1855469, 0.51708984, -3.1074219, 0.27441406, 1.3710938, 0.13354492, 0.9819336, 0.5048828, -2.2128906, 1.0625, -2.734375, 1.8896484, -1.0078125, -1.9707031, -1.0419922, 0.3293457, -0.32348633, -2.1386719, 0.8535156, -0.059173584, 0.9428711, 0.90771484, -0.2553711, -1.3408203, -0.515625, -3.3671875, 0.4807129, -2.03125, 0.8408203, -0.17004395, 0.036834717, -0.28027344, 2.0800781, 1.8515625, 2.1640625, 0.11187744, -0.72753906, -0.45214844, 0.12176514, 2.0996094, 1.4248047, -1.4765625, -1.0878906, -0.5620117, 0.3815918, 1.1337891, -0.02104187, -0.36914062, 1.2451172, -0.95410156, -1.3623047, 0.5932617, 0.46801758, 2.2324219, -0.50146484, -3.2089844, 1.4511719, 3.0117188, -1.6972656, 3.2714844, 2.0683594, 2.5507812, -2.5820312, 2.7382812, -1.1064453, -0.41601562, 2.5800781, -0.94140625, 1.2363281, -0.9794922, -1.2890625, 1.2011719, -0.88964844, -1.6601562, -1.8671875, 0.5463867, -1.8515625, 1.7011719, 0.9550781, -1.4892578, 0.4711914, 0.3840332, -0.4260254, 2.3457031, 1.2871094, 1.4833984, 0.51171875, 0.9604492, -2.0546875, -1.3623047, 1.2646484, -1.5039062, 1.1074219, 1.9658203, 0.09625244, -0.3894043, 2.0273438, 1.78125, 2.4414062, 0.89990234, 2.5585938, 1.2666016, 1.2548828, 0.55322266, 1.7607422, 0.3269043, 2.3320312, -1.1289062, 1.4960938, 2.3613281, 1.7285156, 1.1132812, -1.9882812, 1.5458984, -0.9423828, -1.6875, 0.24853516, 0.86083984, -1.5107422, -3.8613281, 0.13977051, 0.49267578, 0.33691406, -2.6582031, -1.8808594, -2.53125, -0.6640625, -1.7265625, -0.09527588, 1.3564453, -0.4572754, 0.50927734, 1.296875, -1.3994141, 2.5097656, -2.8339844, 0.06854248, 1.6669922, -0.9458008, 0.24694824, 0.2607422, 1.7304688, -0.84277344, 1.3457031, -0.31567383, 1.3730469, 1.0947266, 1.2402344, -0.3791504, 0.890625, -0.13342285, 1.5224609, -0.55029297, 0.30566406, 3.1015625, -2.3945312, -1.9638672, -3.2109375, 2.6015625, 0.88378906, 0.41552734, 2.609375, -1.8564453, 0.97265625, -0.48828125, 1.3691406, -3.2519531, 0.9008789, 0.17651367, -2.0273438, -1.5107422, 0.6767578, -0.09765625, 1.5703125, 0.8408203, -1.3857422, 3.0390625, 2.1933594, 2.7265625, 0.6713867, 1.0263672, 0.5576172, 1.4316406, -1.4521484, 1.5419922, 0.36914062, -0.9785156, -3.5546875, 2.5605469, 1.6074219, 0.30004883, 0.45507812, -0.45776367, -0.17492676, 0.17358398, 0.1459961, -0.8208008, -1.1005859, -0.0960083, -0.4555664, 0.77783203, -1.3525391, -1.8896484, 2.046875, 2.5136719, -1.0576172, -0.4802246, 1.8789062, -1.1162109, 2.2578125, 0.8730469, -1.0703125, -0.12890625, -1.8564453, 0.119384766, 0.6459961, -2.0859375, 1.1601562, 2.2871094, 1.0595703, -1.0234375, 1.8486328, 0.26464844, 1.0839844, 1.7167969, 0.35791016, -0.9277344, -2.5078125, 1.7060547, -0.023468018, 0.16796875, 2.7519531, -0.6147461, 0.6333008, -1.7978516, -0.26391602, 0.6508789, 0.06781006, -1.5175781, 1.7978516, 3.3398438, 1.5185547, 0.9584961, -2.6835938, -3.3027344, -1.2998047, -1.8603516, 2.8320312, -1.3085938, 1.0634766, 0.48583984, -0.19848633, 3.2285156, -1.1171875, 0.4182129, 0.07409668, -0.42333984, 1.8017578, 0.07647705, 2.015625, 0.26171875, 1.1357422, 1.0019531, 1.4599609, 0.29785156, 1.3017578, 1.6132812, 1.8105469, -0.015838623, -2.1210938, 1.9482422, -1.4873047, 1.1386719, 1.2246094, -1.7070312, 1.5761719, -0.5336914, 0.20751953, -1.4033203, -2.3496094]}, "B00NVUUPEM": {"id": "B00NVUUPEM", "original": "Brand: Coleman\nName: Coleman Propane Fuel Case of 6\nDescription: Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.\nFeatures: \n", "embedding": [0.39819336, 0.39697266, 0.2626953, 0.9511719, -0.6479492, -1.2548828, -0.4658203, -1.7958984, -0.6699219, 2.6933594, -0.117370605, -0.5854492, 0.08654785, -1.7333984, -0.2993164, -1.53125, -0.60498047, 1.9287109, 0.4296875, -1.7880859, 3.5820312, -1.2929688, -1.3984375, -1.2978516, 1.2099609, 2.1347656, 3.2382812, -2.7421875, -1.9521484, -0.51220703, 0.4584961, -1.5566406, -1.6650391, 2.7070312, -1.7402344, -1.1816406, -1.8339844, -0.10882568, -2.1503906, -3.2167969, -1.5712891, 1.9384766, 3.8183594, -0.17248535, 0.6870117, 0.032958984, 1.0283203, 0.47094727, 0.8886719, -0.69873047, 0.93603516, 0.7578125, -0.1694336, -0.40771484, -1.2490234, 0.3076172, 0.6220703, -1.3427734, 2.296875, 0.08026123, 0.35229492, -0.5053711, -0.87353516, 1.0761719, -1.4375, 1.8378906, -1.4941406, -0.5620117, -0.22692871, 1.9384766, 4.0625, 0.96240234, 0.81396484, -2.8554688, -2.5722656, 0.3701172, -3.6699219, 1.2314453, 2.15625, 0.06665039, -1.6621094, 0.6069336, 1.3144531, -1.4990234, -2.0234375, -0.8901367, -0.06640625, 0.70654297, 0.027770996, 1.3583984, -1.1132812, 0.11694336, -1.1728516, -2.6191406, 0.91552734, -3.0878906, -0.109375, 1.5029297, 1.2255859, -0.87939453, 0.23486328, -0.028060913, -2.1894531, -0.013763428, -1.0605469, 0.69628906, 2.6171875, 0.16210938, -1.2275391, 1.4414062, -1.0761719, -2.9765625, 1.3408203, 0.44604492, -2.1933594, -0.87646484, -0.41259766, -0.31567383, 3.4199219, -0.23327637, 4, -1.1650391, 0.50146484, -1.2919922, -0.35717773, 3.2675781, -0.13635254, -0.44604492, 0.2668457, 1.0439453, 0.013916016, 0.7416992, 2.4589844, -2.1660156, -2.7929688, -0.8330078, 0.6484375, -0.9316406, -2.0800781, -1.3935547, -1.3769531, -0.8310547, 0.6489258, 0.32055664, -4.5, -0.4650879, -1.5185547, 2.1132812, -0.7734375, -2.3945312, 1.3466797, -1.3867188, -1.1875, -0.1776123, 2.2441406, 0.7011719, -0.9145508, -1.4726562, 4.109375, 1.9306641, 1.2050781, -0.8779297, 0.7714844, 1.1708984, -0.7373047, -1.9384766, 2.2148438, 0.29711914, -1.3808594, 0.6567383, 0.5942383, -2.5605469, 0.53515625, 2.5253906, -1.390625, -2.7773438, 1.4462891, 2.0683594, -0.42407227, -1.59375, -2.8046875, -2.4941406, 0.005393982, -1.6181641, 0.07281494, -0.3371582, -2.6699219, -1.8271484, -1.5771484, -1.3144531, -0.25439453, 0.46801758, -1.0429688, -0.4189453, -1.2382812, -1.6650391, 0.5004883, -0.8466797, 0.58691406, 2.6054688, -0.55371094, 0.6044922, 1.7128906, 2.0917969, -2.6367188, -0.9980469, 2.7265625, -1.34375, 0.72802734, 3.0195312, 0.7006836, 1.3251953, 2.8359375, -2.1035156, -0.7714844, -2.1542969, 0.74072266, -0.14282227, 3.1738281, 0.55859375, 1.0263672, -1.8466797, 0.42578125, -1.3476562, 0.2541504, 2.3945312, 0.78564453, -1.7939453, -0.36547852, -1.9121094, 0.9326172, 2.5957031, -2.5644531, 0.04928589, 1.5556641, 4.2226562, -0.4892578, -1.8095703, 0.5839844, -0.7294922, -2.1796875, 0.18310547, -1.5380859, -1.4023438, 0.028213501, 0.95654297, 2.2128906, -0.80810547, 4.1132812, 0.23132324, 1.2587891, -0.34887695, -1.0546875, 1.2636719, -2.9375, 1.3105469, 0.2109375, 0.71533203, 0.6899414, -2.703125, 1.0009766, 2.7265625, -2.1464844, -0.41479492, -0.80908203, -0.2614746, 0.7026367, 0.515625, -1.3320312, 2.2421875, 1.0458984, 1.4248047, 2.0117188, 2.0644531, 0.78125, 0.2854004, -0.40942383, 1.8066406, 0.15234375, 3.0800781, 0.8198242, 0.009750366, 2.4023438, -5.4804688, -1.1826172, 0.16027832, 2.5566406, -0.31811523, -1.9287109, 0.9746094, 4.640625, -2.5136719, -1.4853516, 2.6679688, -0.52490234, 1.9443359, 1.1660156, 0.2783203, 0.796875, -0.984375, 1.5302734, -1.3769531, -0.31469727, 1.6103516, -1.8740234, 0.7529297, 0.56347656, -0.79052734, 0.796875, -2.8105469, -0.6855469, -0.90478516, -0.7817383, 1.7402344, -1.5185547, -0.11791992, 2.2148438, -1.1513672, 1.2304688, 1.8349609, 0.8154297, 2.4296875, -0.7426758, -0.6958008, 0.27612305, 0.36010742, -2.3886719, 1.2099609, 0.39941406, -0.046783447, 0.50927734, -3.2421875, 1.3037109, -0.17529297, -1.2070312, -1.5615234, 0.42993164, -4.0234375, 0.890625, -0.5761719, 0.016616821, 0.7084961, -1.4365234, 4.9804688, -1.4072266, -0.120666504, 0.09674072, 1.6601562, -0.79052734, -0.9223633, 1.1132812, 2.2988281, -1.0830078, -2.9628906, -0.14208984, 0.61279297, -0.27441406, 0.29907227, 0.5019531, 2.1699219, -0.5292969, 0.24719238, -0.6660156, 0.63427734, -1.9384766, -1.2587891, 2.4238281, -3.6054688, 1.5302734, -1.828125, 1.2460938, 0.009475708, 0.050811768, -0.41381836, -0.52001953, 2.2441406, -1.3544922, 3.2949219, 1.1474609, 0.64501953, -0.2442627, -0.36743164, 0.097717285, -1.5058594, -4.0664062, 1.078125, 0.6425781, 0.6113281, -2.2695312, -5.3164062, 1.2294922, -2.4140625, -1.1767578, -0.07788086, -0.38745117, -2.0488281, -0.52734375, -0.54345703, -0.71435547, -0.052764893, -0.29589844, 0.4416504, -1.2900391, -1.4443359, -0.30932617, -2.0058594, 1.2207031, -1.4414062, 1.5195312, 0.25610352, 0.18127441, 0.54345703, 0.11743164, 1.6806641, -0.8442383, -4.9023438, 1.9785156, 1.7353516, 0.33496094, 1.6240234, -2.7988281, -0.97998047, -3.5625, -0.8642578, 2.2167969, 0.44506836, -0.059265137, 1.2099609, 0.8496094, 0.5097656, 2.3417969, -0.390625, 0.3486328, 0.20349121, 2.5449219, -1.1220703, -2.71875, 1.640625, 3.1269531, -1.8085938, -2.3886719, -0.5361328, -0.5932617, 1.984375, 3.3613281, 0.296875, -1.6972656, 0.4958496, -1.6367188, 1.8964844, 0.7036133, -0.4819336, 0.7963867, -0.7885742, 2.046875, 0.5410156, 0.4645996, 0.6621094, -0.6123047, 3.6582031, 1.3583984, -1.1757812, 1.2128906, -0.038391113, -0.24987793, 0.10449219, 3.3007812, -1.4150391, -0.9111328, -0.37182617, -0.96728516, 2.109375, -0.09741211, 2.8691406, 2.1992188, 0.4477539, -1.5712891, 0.38989258, -0.9213867, 1.03125, -1.4130859, 0.3779297, 0.7294922, 0.5449219, 0.35131836, -2.9257812, 1.5322266, -1.2470703, 2.3144531, -1.4189453, -0.69433594, 1.1425781, 1.3818359, -0.6582031, -3.6933594, -3.1855469, -0.57177734, -1.4433594, 3.5195312, 1.5029297, -3.6015625, -0.72998047, -0.88720703, 0.46411133, 1.2890625, -0.76416016, -0.40600586, -1.3701172, -1.6152344, -1.4882812, 0.59472656, 0.65185547, 1.3886719, -1.7246094, 1.9648438, -0.17956543, 1.1601562, -1.2197266, 0.13293457, 0.28881836, 0.6333008, -2.1230469, 2.1132812, 1.2041016, 2.4472656, -1.3339844, 2.6308594, 0.70751953, -0.65185547, -0.19934082, 0.34594727, -3, 1.5839844, 0.00749588, 0.13098145, 1.8037109, -2.3261719, -0.22473145, -1.7285156, -0.9892578, -2.1191406, -2.1347656, -0.045928955, 1.1552734, -2.1660156, -0.63916016, 1.1279297, -1.8759766, -4.1835938, -2.4667969, -0.028167725, -1.0175781, -0.7167969, 1.3789062, -0.375, 2.8515625, 0.46191406, 1.6777344, 0.052703857, 0.28100586, 1.7285156, -0.42260742, -0.1661377, -3.8066406, 0.7817383, 1.1210938, 0.16821289, 1.9052734, 1.9365234, 2.7265625, -3.9257812, 1.0615234, -1.0908203, 0.4255371, 1.1328125, -0.7988281, 0.32617188, -1.3857422, -1.2753906, -2.1582031, -0.7895508, 0.5600586, -1.4443359, 0.69873047, 2.8007812, 2.6699219, 2.0410156, -0.25439453, 1.6748047, 2.1796875, 2.1777344, -0.7988281, -1.3105469, -0.4892578, -1.0224609, -2.7265625, 0.08868408, -1.4990234, -1.9189453, 1.3955078, -1.484375, -2.2636719, -0.22937012, 1.5791016, 1.9052734, 0.62841797, 0.69140625, -2.9296875, 1.5117188, 0.9848633, 1.8222656, 0.08569336, 0.9472656, -0.69091797, 0.9482422, 0.036895752, -1.6152344, -0.07330322, 0.39746094, -0.8076172, -0.6977539, -0.008369446, -1.0546875, -2.6113281, 1.9775391, -1.7841797, -1.1396484, 2.0234375, -2.4199219, 0.55566406, -0.6015625, 0.32348633, -0.6699219, 0.17663574, -0.02027893, 0.99072266, 0.8623047, -1.6904297, 0.9658203, 0.3828125, 2.7832031, 0.8535156, 0.8798828, -1.5341797, 0.42358398, -0.26782227, -0.033416748, -0.10253906, 1.5947266, -0.05682373, 1.6347656, 1.4853516, 2.0976562, 2.7089844, 0.026229858, 0.42651367, -1.0039062, 1.7246094, -0.032928467, 0.20043945, 0.8222656, 3.5390625, -2.5488281, -0.90185547, 0.07672119, 0.5332031, 1.6083984, 2.4511719, 1.6435547, -0.78564453, -1.515625, -0.9921875, -0.9404297, -2.0117188, 0.44702148, -1.3779297, -1.5654297, 1.7539062, 1.2646484, 1.5185547, 2.0820312, 2.3984375, -3.1074219, 0.56933594, -1.3476562, -1.0966797, -1.1660156, -0.5307617, -3.2324219, 0.22961426, -2.3320312, 0.03640747, 0.9628906, -1.5927734, 4.0976562, -1.1054688, -0.8964844, -0.27319336, 0.28808594, -2.9609375, -1.1728516, -0.024520874, 1.9501953, 1.1416016, -1.1259766, -0.72021484, -1.0722656, 1.6083984, -0.4477539, -0.37646484, -1.5585938, -0.16687012, -3.3828125, -4.328125, -0.3828125, -1.2216797, 0.4104004, -0.5151367, -1.1113281, -2.4550781, -0.7885742, -1.359375, -1.3652344, -2.9003906, -0.21411133, -0.4091797, -0.12780762, -1.1210938, 0.5698242, -0.3305664, -0.19580078, -0.29467773, -0.2253418, -0.53222656, -3.2695312, -3.6855469, -0.05987549, 1.8974609, 0.5024414, 0.031585693, -1.8583984, 1.9902344, 3.0488281, 3.3046875, -1.3974609, 0.94384766, -1.3193359, -0.8671875, 1.6132812, -1.2128906, -0.6508789, 1.9160156, -0.28125, 1.7119141, 2.1386719, 2.1542969, -2.9375, 1.1279297, 0.07385254, 0.33666992, 3.7382812, 1.6308594, 3.0019531, -1.3144531, 2.3183594, 1.1679688, 1.5029297, -3.5917969, -1.5615234, 1.7783203, -0.8496094, -1.0771484, -0.69091797, -1.875, 2.484375, -0.11236572, 2.109375, -0.78125, 1.3730469, 0.2927246, -0.24658203, 2.0097656, -0.98876953, 3.3320312, 0.20898438, -2.4472656, -4.3046875, -3.0136719, 4.3554688, -0.5625, -0.30541992, 0.046875, 0.35131836, -0.8359375, 1.5341797, -1.7314453, 2.8808594, 3.28125, 3.8984375, -2.0195312, 1.1748047, 3.8554688, -0.3557129, 0.2770996, 0.3552246, 0.044403076, -1.4101562, -0.515625, 0.11401367, -2.5214844, 0.49072266, -0.8588867, 0.6328125, -0.083862305, -1.7333984, 0.8564453, -1.6601562, -1.3320312, -0.5395508, 1.1162109, -2.0234375, 2.3984375, 0.7739258, -1.703125, 1.4355469, 0.8515625, -3.0234375, -0.4489746, 0.4399414, -0.017456055, -2.2480469, -1.4628906, -0.79052734, 0.97021484, 2.2324219, -2.15625, 2.6503906, -0.28759766, -1.2099609, 1.0947266, 2.9921875, -0.5019531, 0.50439453, 0.6225586, 1.6494141, 2.3203125, 0.7578125, 2.6953125, 0.5283203, -0.7426758, 1.0957031, -0.22155762, -0.63378906, 2.8300781, 0.2211914, -0.08947754, -0.04714966, -0.26831055, -0.13586426, -1.484375, -1.2929688, 2.1699219, 0.9746094, -2.125, 1.2734375, -0.37670898, 2.6914062, 1.1591797, 1.1962891, 1.6806641, -0.48339844, 0.15161133, -0.28759766, 1.1210938, -0.37329102, 1.6494141, -0.18237305, -0.3256836, 1.4746094, 0.45703125, -0.5214844, -3.2558594, -2.6464844, -0.4111328, 0.54052734, 1.3671875, 0.1430664, 0.35083008, 3.1582031, 0.27197266, -0.0904541, 1.4570312, -1.5751953, 0.4572754, 0.62060547, 3.3261719, 3.2480469, -1.7783203, 1.8535156, 0.3540039, -2.4453125, -4.1679688, 0.24304199, 1.9121094, 1.5625, -0.7338867, -2.4375, 0.5463867, -1.8427734, 3.8671875, -0.07244873, 1.5507812, -0.24255371, -2.4609375, -1.3515625, -0.090270996, 0.3330078, 2.6894531, 2.1582031, -0.6870117, 1.1210938, 1.6152344, 1.6728516, -1.3789062, -0.16906738, 0.87646484, 1.7373047, -1.625, 0.31079102, -0.43286133, 2.7988281, -1.5566406, 3.4433594, 3.28125, -0.4790039, -0.49926758, -0.36816406, 3.4628906, 0.08758545, 1.0791016, -0.18127441, -0.23132324, -0.28125, 0.34472656, 1.3457031, 0.47338867, 2.2578125, 0.5419922, 2.390625, -3.4492188, 1.2685547, -0.40625, -0.62109375, 0.24731445, -1.4541016, -0.6333008, -1.0410156, 0.55810547, -1.0458984, -2.3417969, 1.3427734, -0.2775879, 0.8730469, -0.73876953, -0.24060059, 1.9443359, -1.5253906, -0.20031738, -1.3115234, -0.6713867, 0.4741211, 0.08050537, 0.94970703, 0.45922852, -0.59765625, 0.4013672, -0.09490967, 0.09448242, 1.2460938, -0.5439453, -0.30566406, -3.3730469, 0.26098633, 2.375, 3.9765625, -0.828125, 1.3818359, 0.15563965, -2.671875, -1.1162109, -3.7265625, 2.2207031, 2.4277344, -1.7529297, 1.5341797, 1.1757812, 0.48339844, -2.6933594, -1.6630859, -0.66064453, 1.6972656, 1.0009766, -1.0947266, -0.25219727, 1.5712891, -0.52001953, -0.37109375, 3.9238281, 2.0996094, -0.33935547, 0.45141602, -1.3046875, -2.2753906, -2.3769531, -0.33544922, -1.2851562, -1.7431641, -2.1640625, 1.3505859, 1.7060547, -1.3056641, -0.4326172, -1.4570312, 0.7832031]}, "B0765BJV74": {"id": "B0765BJV74", "original": "Brand: Grillman\nName: Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant\nDescription: \nFeatures: The 58\" x 24\" x 48\" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information!\nSecure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions.\nEasy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come!\nRegardless of what you're looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover.\nPlease click the \"Visit the Grillman Store\" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!\n", "embedding": [-0.30786133, 1.1816406, 1.8046875, -0.96484375, -0.10723877, 2.28125, 0.6245117, -2.2480469, 3.4785156, 1.1259766, -0.16308594, -1.3652344, 0.88964844, -5.4570312, 0.8652344, 0.71728516, 0.92333984, 2.6132812, 3.2382812, 0.52734375, 0.39941406, 0.30249023, 1.2578125, 1.1894531, 0.7709961, -0.69921875, 3.9296875, -3.2871094, -1.2929688, -1.5029297, 2.671875, 0.38232422, -1.2880859, 2.1191406, -3.0996094, -1.3798828, -1.7060547, 2.2324219, 0.40429688, -1.9072266, -1.0839844, -1.7675781, 1.3310547, -0.22766113, -0.7519531, 1.0449219, -1.6738281, 1.3554688, -2.0292969, -2.1425781, 2.7246094, 2.6601562, 1.828125, 0.97558594, -2.484375, 3.7089844, -0.15612793, -0.54833984, -1.1572266, -0.77978516, 1.5566406, -2.3535156, -0.9741211, 1.0683594, -2.4003906, -0.54248047, 0.3786621, 0.17712402, 0.32299805, -0.17907715, 2.2363281, 0.29467773, -0.5625, 0.44506836, 2.4960938, -0.5307617, -1.9580078, 1.8925781, 0.81103516, -1.4697266, -0.26660156, 5.4023438, 0.5683594, -1.5996094, -0.46728516, 0.5029297, -1.046875, -1.0078125, 2.2871094, -1.2871094, 0.33276367, 1.7226562, -3.3574219, -3.28125, 0.8925781, -2.2089844, 3.4824219, 0.17077637, 1.2197266, 0.23815918, -1.6015625, 1.5253906, -1.9628906, 1.3603516, -2.9628906, -1.7949219, 1.5390625, 0.016952515, 0.35302734, -0.83984375, -1.6669922, 0.29663086, -1.0976562, 0.91845703, 1.8125, 0.9453125, -0.8413086, 1.1796875, 0.58984375, 2.6621094, 2.4296875, -1.2802734, -0.5004883, -1.7441406, -0.66796875, -0.97314453, -0.4230957, 2.4511719, 2.5449219, -1.4082031, 0.7783203, -0.6689453, 2.7519531, 1.4970703, 0.12719727, -0.19897461, -1.4326172, 0.23376465, -3.2480469, 3.0761719, -0.26489258, -2.2949219, 0.81640625, -2.671875, -2.7597656, 0.32910156, -0.27856445, 2.6308594, -1.2011719, -2.3183594, 1.6445312, -1.3886719, -0.8564453, -1.3828125, 1.6328125, -0.5209961, 1.5908203, -2.9492188, 2.7871094, 2.1230469, 3.4121094, -1.5224609, 1.3183594, 0.37182617, 2.1777344, -2.3242188, -0.6147461, 0.5473633, -0.7792969, 3.2109375, 0.22131348, -0.79785156, -0.30688477, 0.9082031, 2.2011719, -1.3613281, 0.13916016, 0.75146484, -0.7324219, -0.55615234, 0.17126465, -1.4423828, -0.92089844, -0.075683594, -0.6123047, -1.5976562, 1.1386719, 1.1171875, 1.5712891, -0.5605469, -0.16625977, 0.63964844, 0.2548828, 0.7036133, -0.7709961, -1.7919922, -2.9042969, -1.6005859, -0.41625977, -0.9736328, -3.0585938, -1.9804688, 0.76953125, -0.36523438, -2.3300781, -2.421875, 0.47094727, -0.008010864, 0.040527344, 1.3183594, -0.14050293, -1.5722656, 3.0488281, 1.3671875, -0.9584961, -0.5859375, 2.4941406, -0.6923828, 0.77197266, 1.0947266, -1.3994141, -0.24511719, 1.1279297, 3.6054688, -0.8286133, 2.5859375, 1.6933594, 0.7241211, -1.5917969, -2.2519531, 0.4880371, 1.4042969, -0.37963867, 0.42871094, -0.13757324, 1.765625, 0.92529297, -1.4384766, 0.074035645, 0.7973633, -2.1523438, -0.9873047, -3.4101562, -2.2714844, 0.09954834, 1.6455078, -1.8955078, 1.6689453, 1.3427734, 0.2434082, -0.017532349, 0.16711426, 2.1875, 0.38964844, 0.29125977, 1.7460938, 0.18127441, 0.73583984, -2.3261719, -1.2128906, -1.2998047, -1.3417969, -2.2832031, 1.0214844, -0.3630371, -0.63183594, 0.91259766, 1.7060547, -1.1591797, -3.0214844, 2.0078125, -0.6738281, -1.3574219, -1.1416016, 2.9414062, 0.9736328, 0.6665039, 1.9023438, 0.8613281, -1.1669922, 0.50390625, 1.8984375, 0.54833984, -2.3710938, -0.91552734, 0.88134766, 0.7084961, -2.6523438, 0.107177734, -0.64404297, 3.4609375, 1.3417969, -1.9072266, 3.5019531, -0.41674805, 0.9213867, 2.6367188, -0.79248047, -1.2792969, 1.5302734, 2.5488281, 0.8149414, 0.13769531, 0.42700195, -1.0791016, -1.0400391, 1.3603516, -2.5488281, -2.1757812, 0.88134766, 0.40014648, -1.859375, -0.56103516, -0.49267578, -2.3457031, -2.1464844, 1.4433594, -2.6699219, -0.8745117, 0.18579102, 1.1640625, 1.1328125, -1.4101562, -1.5917969, 0.19592285, -0.33422852, -1.0234375, 0.095581055, 0.47875977, -0.8486328, -0.5908203, -1.3164062, 0.97509766, -0.56884766, -0.72314453, -3.2089844, -2.1835938, -1.7919922, 0.6748047, -1.3496094, 0.5625, -0.29101562, -3.0449219, 2.6054688, 1.515625, -3.4941406, -2.2617188, 0.068359375, -1.0830078, 1.2558594, -0.39038086, -0.04663086, -0.6738281, -3.5253906, 0.2602539, -2.0214844, -0.08416748, -0.7553711, 0.6591797, -0.80078125, 1.2373047, -0.0063285828, -0.28710938, 1.6347656, 2.5800781, 1.3134766, 0.4230957, -3.4550781, -0.9951172, -2.953125, -0.49291992, -0.82958984, 0.5019531, -4.078125, -2.1972656, 0.73535156, -2.3535156, 3.3359375, -0.26464844, 1.5917969, -1.3017578, -1.0488281, 0.95458984, -2.0644531, -2.8691406, 1.2705078, 0.8725586, -1.6777344, -1.3076172, -3.8632812, -2.3378906, -1.7207031, -0.52685547, -0.07116699, -0.87646484, -0.7788086, 0.17785645, -4.5117188, -1.2158203, -0.5966797, 1.1435547, -0.39282227, -1.5087891, -0.8100586, -3.3847656, -3.6035156, -0.8901367, -2.7949219, 1.7060547, -1.4404297, 1.1513672, 2.0878906, -0.7373047, 4.4882812, -0.93066406, -3.6992188, 1.5996094, 1.9667969, -0.37426758, 1.6796875, -0.10662842, -1.5957031, -1.5654297, 0.85498047, 1.4794922, 1.0644531, 0.55859375, 2.3203125, 0.74560547, -0.24841309, -0.16271973, 1.7265625, -1.3095703, 1.8662109, 3.4355469, -0.86816406, -0.21350098, 0.59033203, -0.34570312, -0.97558594, -0.07458496, 3.515625, 0.609375, 0.88623047, 1.0351562, -0.17614746, 0.70703125, -1.0371094, 3.6269531, -0.5810547, 2.5058594, 0.7324219, 0.9921875, 2.0019531, -1.7802734, 2.2148438, 1.3808594, 0.625, 0.79589844, 0.008369446, 0.66259766, -0.45458984, 1.8173828, 1.0078125, 2.3105469, -0.8989258, 1.8134766, -0.21508789, 0.7788086, 1.7880859, -2.3398438, 0.9423828, -0.46069336, -1.0214844, 2.1035156, -1.4130859, 0.019882202, -0.035705566, 0.95996094, -0.19873047, -1.8115234, -0.50634766, -2.9609375, -1.1386719, 0.5541992, -3.9882812, -1.9677734, -1.9375, 2.7207031, 0.030197144, -1.3955078, 0.36206055, 1.5419922, -1.3779297, -2.4003906, 2.6191406, 1.5283203, -0.60498047, 2.8378906, 3.4453125, -1.8564453, 2.3964844, -3.7011719, 1.7695312, 1.2060547, -0.9189453, -1.3095703, 1.0703125, 0.5488281, -0.70410156, 1.7148438, 1.6445312, 1.4501953, -1.7978516, -0.33032227, -2.0234375, -1.0654297, 1.5107422, -1.7109375, -0.8989258, 3.7890625, 1.3740234, -0.08331299, 0.81689453, 3.0605469, -0.5698242, -1.3876953, 1.5273438, -2.2578125, 0.6123047, -1.5546875, -3.828125, -0.26049805, -1.5175781, -1.484375, 2.2636719, 0.80371094, 0.2602539, 3.8457031, -0.88916016, -0.20812988, -0.21716309, -1.7197266, -2.3203125, 0.6376953, -0.8149414, 1.0732422, -0.85498047, -1.4804688, -2.0117188, -3.0488281, -1.2744141, 1.9521484, 1.2685547, -2.6464844, 0.1282959, -3.4101562, -0.19250488, -1.9775391, 0.004688263, 0.17797852, -0.27026367, -0.25708008, -1.4384766, 0.8769531, 0.70458984, -0.097961426, 0.73095703, 1.3212891, -0.69140625, -1.2773438, 1.6347656, 1.9902344, 3.0058594, -1.6484375, -3.2285156, -1.125, 0.29052734, -0.3737793, -0.46411133, -0.3569336, 0.059020996, -1.2099609, 0.86816406, 1.3232422, 2.2089844, 0.52978516, -0.8071289, -3.421875, 0.48583984, -2.3964844, -1.6669922, -1.1445312, 0.39990234, 0.24597168, 0.4555664, -1.8935547, -3.0644531, 2.4941406, -0.83447266, 0.52246094, -3.2128906, 3.296875, 1.9101562, 2.3457031, 1.9951172, -1.8125, 1.8349609, 0.8959961, -1.2802734, -0.44506836, 0.66308594, -0.8911133, 1.7109375, 1.2128906, 0.97558594, -2.3867188, -0.64160156, 0.08117676, -1.8369141, -1.4707031, -2.0585938, 1.3203125, -1.9101562, -0.055541992, 0.37231445, -1.4804688, 2.1308594, -0.7036133, -0.75439453, 4.1015625, -0.03010559, -0.9526367, 1.5097656, 2.2226562, -1.0585938, -0.33618164, 0.7001953, 0.14318848, -1.3720703, -1.8447266, 1.2900391, 1.0664062, -0.006275177, -0.27783203, 1.4775391, 1.078125, -1.6933594, -0.59765625, 2.3164062, 3.1074219, -0.62109375, 2.3378906, -0.084228516, -1.6142578, 1.7314453, 1.7685547, -3.0976562, 1.6162109, 0.1928711, 1.2460938, 1.1679688, 0.17712402, -2.6894531, -1.203125, -0.1850586, -1.4511719, 1.390625, -1.3925781, -0.6821289, 2.7890625, -2.2753906, -1.4404297, 0.4555664, 0.63720703, 1.4746094, 0.12084961, 2.7675781, -0.6020508, 1.5, 4.2421875, -0.86572266, -3.3867188, 1.4248047, -1.2724609, -0.46411133, -2.1933594, -0.13977051, -3.0761719, -1.0292969, 1.8623047, 1.7939453, 0.50146484, 0.29174805, 2.078125, -2.5976562, 0.30981445, -1.1767578, 1.9951172, -0.9116211, -0.4038086, 1.9716797, -2.4121094, 0.97753906, -2.4648438, 0.16625977, 0.5576172, 2.1171875, 0.70458984, 0.95166016, 0.7207031, 0.1977539, -2.7128906, -2.3007812, -1.7578125, 0.50878906, 0.33862305, 1.1552734, 2.3105469, 1.3574219, 0.8149414, 0.6665039, 0.46435547, -1.0195312, 0.6098633, -0.30664062, -1.9599609, -1.4042969, -1.0029297, -1.6923828, -0.6274414, 0.9946289, 2.1621094, 1.1171875, -3.3925781, -0.9633789, -0.012428284, -4.0898438, -0.13671875, 1.6289062, -0.15783691, 1.0244141, 0.5576172, -0.19763184, 0.76123047, 2.1152344, -1.4628906, -1.1083984, 1.8886719, -2.015625, 1.2939453, -0.66259766, -2.6621094, 1.9462891, -0.76660156, 0.625, 0.32470703, -0.25830078, 0.8984375, 1.4082031, -0.7890625, -2.40625, -0.39257812, 1.0332031, 2.3496094, 0.5234375, -0.96484375, 0.10687256, -1.1884766, -1.7851562, 0.7050781, -2.6132812, -1.6386719, -0.8144531, -0.53515625, 2.1269531, 1.3398438, 0.8276367, 2.6152344, 1.4267578, -1.1699219, -0.39868164, -1.1982422, 4.2695312, 1.3232422, -1.6025391, -0.4099121, -1.5488281, 1.1289062, 2.8378906, 1.296875, -1.2998047, 0.5888672, -1.2822266, -0.05291748, -0.13085938, 2.0351562, 2.609375, 0.16540527, 0.37695312, 0.3857422, 3.171875, -0.99560547, 1.1582031, 0.30737305, 1.8740234, -2.4980469, 3.4648438, 1.1669922, -2.546875, -0.84814453, -2.2988281, 0.15466309, 0.6660156, -1.5341797, -1.5966797, -1.2919922, -2.5371094, -1.9140625, -2.6621094, -4.6015625, 0.71728516, 0.41748047, -1.5439453, -0.39208984, 2.4140625, -0.3034668, 5.2890625, 1.8408203, 0.051574707, -1.5371094, -0.32177734, -1.8789062, -0.6879883, -0.12731934, -3.5488281, 1.5537109, 0.06561279, 1.0439453, -0.83496094, 0.55322266, 1.2275391, 2.1484375, 2.2578125, 1.5996094, 1.1083984, 2.4960938, 1.2050781, 0.25976562, 1.3789062, 1.1679688, -1.2158203, -0.1586914, 2.6074219, 1.1503906, 3.21875, -1.0449219, 0.11138916, 1.2783203, -1.4335938, -0.45336914, 0.16308594, 0.9165039, -2.21875, -0.42773438, 1.5292969, 1.3662109, -0.9741211, -0.28027344, -1.2675781, -0.9091797, -0.04171753, -0.31982422, 4.546875, -0.69970703, 1.1484375, 0.09063721, 1.7167969, 2.5839844, -3.0703125, 1.5390625, 2.4433594, -1.9472656, -1.6074219, 0.00843811, 1.5253906, 2.5957031, -0.20959473, 1.2626953, 3.4804688, 1.4863281, 1.4863281, -2.1582031, 0.9692383, -0.59521484, 2.4824219, 1.3359375, -2.6835938, -1.984375, -0.4519043, -3.6054688, -1.6523438, 3.1464844, 1.9775391, 1.7890625, 1.7695312, -3.5449219, 1.5302734, 0.55322266, 2.7675781, -0.7817383, -0.18530273, -0.20874023, -1.5996094, -0.52734375, 0.5786133, -1.2890625, 2.0722656, 0.7348633, -0.69873047, 3.2675781, 1.0927734, 1.7636719, 0.60058594, 1.7441406, 1.6582031, -0.095458984, -0.21911621, 0.74072266, 2.0761719, -2.4238281, 0.012634277, 1.640625, 0.46020508, 3.3867188, 2.4882812, -1.0908203, 0.65625, 2.3046875, 0.06756592, 1.2744141, -0.17871094, -0.8276367, -0.57128906, 2.1542969, -1.2392578, -1.2470703, 1.2275391, 1.5234375, -0.43530273, 1.7509766, 2.2324219, -1.1425781, 1.625, 0.73046875, -0.45776367, -0.90771484, -0.3642578, -0.014060974, -0.34887695, -0.6894531, -1.0107422, 0.62939453, 0.11755371, -0.66552734, -0.7373047, -0.28979492, -0.6098633, -0.328125, 0.78515625, -0.9033203, -0.8466797, 0.30371094, -0.61328125, -0.8676758, 0.8671875, 2.1035156, -0.85839844, -1.7460938, -2.1835938, -1.5107422, -0.34301758, -2.296875, 2.8164062, 2.5605469, 2.5742188, -1.7675781, -0.71875, -2.7578125, -0.48413086, -2.328125, 2.5644531, -0.46020508, -1.9296875, 0.20788574, -0.9970703, 3.5898438, -0.7451172, -1.0351562, -0.19238281, -0.6894531, 2.8300781, 0.53564453, 0.05706787, -0.11517334, 0.38085938, 1.5234375, 2.0058594, 2.8691406, 0.0423584, 0.94921875, 1.3349609, -0.80078125, -3.1621094, -0.50439453, 0.9736328, 1.5087891, -0.36401367, -0.39135742, 0.99853516, 0.22094727, 0.4855957, -1.0458984, -1.3476562]}, "B00ARJOTSI": {"id": "B00ARJOTSI", "original": "Brand: EISCO\nName: Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment\nDescription: Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.\nFeatures: Liquid propane gas bunsen burner\nAluminum burning mixer tube with brass flame stabilizer\nAccepts 6 to 8mm tubing\nBase diameter - 80mm, height - 160mm, burner tube diameter - 13mm\nDie cast zinc alloy base. May come with a gold or blue base.\n", "embedding": [-1.6503906, 1.9140625, 2.8867188, -1.453125, 0.14978027, -0.8051758, 0.45751953, -0.33007812, 1.3535156, 1.3251953, 0.36523438, 1.3564453, 0.4934082, -3.4296875, 1.3935547, -0.04638672, 0.123413086, 2.0488281, 0.010307312, 0.54345703, 2.125, 0.66845703, 0.5107422, -1.4404297, -0.7583008, 1.0351562, 4.8984375, -3.4980469, -1.046875, -2.9667969, 0.8569336, -0.30151367, 0.1270752, 1.6699219, -3.3496094, -1.2802734, -2.2285156, -0.13354492, -4.953125, -1.2910156, -1.0820312, 1.5947266, 1.4101562, -0.2529297, -2.8828125, 0.055358887, -1.8662109, -0.13537598, 0.0029907227, 0.0012311935, 2.9199219, 0.57421875, -1.9111328, -0.43164062, 0.9692383, 0.48242188, 1.8408203, -3.0175781, 2.1582031, -0.29052734, 1.3896484, 0.6298828, -2.1171875, -0.35327148, 0.1373291, 0.5629883, -1.0888672, -1.3242188, -0.75439453, 1.0234375, 1.4208984, -0.1116333, -0.08557129, -0.4650879, 0.8095703, -0.29614258, -2.1269531, 2.6582031, 0.41259766, -0.10583496, -0.80908203, 2.703125, 1.3095703, -1.1982422, -1.7138672, -0.7324219, -0.61035156, -1.0292969, 0.86279297, -0.03213501, -1.4208984, 1.4658203, 0.95751953, -3.8613281, 2.7421875, -1.2128906, 1.8349609, -0.7758789, -1.3291016, -0.01576233, -0.1739502, 1.40625, -1.5400391, 0.7348633, -2.453125, -0.78808594, 1.6738281, 1.1269531, -0.038909912, -1.1640625, -0.28564453, -1.8164062, 1.3486328, 0.45166016, 0.15368652, 0.77001953, -0.83251953, 0.8676758, 3.4003906, -0.5498047, 2.9960938, -0.9526367, 0.10406494, -0.10345459, 0.17749023, 0.4909668, -1.3535156, -1.0810547, 4.5039062, -1.9511719, 1.1806641, -0.18579102, 2.5566406, -1.1191406, -1.1171875, -1.9931641, -1.9892578, -3.1796875, -2.1054688, -3.2382812, -4.734375, 1.2353516, 0.4453125, -0.32421875, -2.6933594, 0.6254883, -1.4394531, 0.63671875, 2.1621094, -1.1884766, 2.5878906, -0.83154297, -0.3486328, -1.9199219, 1.8945312, 0.6274414, -0.9555664, 0.12548828, 2.4726562, 2.6171875, 1.015625, -0.42993164, 1.3359375, 3.6230469, -2.5214844, -2.2617188, 0.9199219, 0.01058197, -1.4394531, 0.23876953, 1.2070312, -3.3027344, -1.359375, 0.39086914, -0.19934082, -2.4824219, 0.10491943, 2.6601562, -0.6767578, -0.41967773, -4.9804688, -3.1972656, 1.0976562, 0.92822266, 1.4482422, 0.921875, -0.6357422, -1.203125, 0.77783203, 0.13659668, -0.3503418, 0.80810547, 0.8769531, -0.6958008, -0.42285156, -0.6855469, -0.62841797, -1.4755859, 1.0009766, 0.22143555, -1.2119141, -1.9541016, -0.23730469, 0.8046875, -1.5800781, -2.8007812, -2.4726562, 1.1865234, 0.42089844, 1.84375, 1.6083984, -0.30786133, 2.640625, -1.8769531, -0.78222656, -0.6791992, 1.7666016, 0.2607422, 1.9638672, 0.72314453, 0.36010742, -0.38745117, 0.045196533, 2.4824219, 0.44091797, 2.6679688, 0.77441406, -0.3623047, -1.8408203, -0.9116211, 2.1367188, 0.7626953, -0.2590332, -0.5083008, 1.5419922, 2.1230469, -1.4091797, -0.49951172, 1.8564453, -1.1503906, 0.2548828, -1.5039062, -1.5, 0.4584961, -0.30078125, 0.2758789, 1.0410156, 1.8613281, 0.35131836, 0.85595703, 1.9101562, -0.6044922, 1.5146484, -0.7480469, 0.105285645, -1.2041016, 0.07940674, 0.6791992, 0.33422852, -1.5166016, 3.4199219, -0.4404297, 0.64746094, 2.5976562, 0.76904297, -0.47216797, 0.7949219, 0.71240234, -0.39770508, -1.8017578, 1.7382812, 1.0605469, 0.7709961, 2.4316406, 1.7910156, 1.2900391, -0.671875, 1.5839844, 0.044555664, 1.8056641, -0.32861328, -0.7993164, 2.171875, -2.9960938, 1.0507812, 0.9609375, 1.8691406, -0.46240234, -3.1230469, -0.56152344, 3.578125, -3.0664062, -3.6835938, 1.6962891, -2.6601562, 0.78564453, 0.43237305, 1.3417969, 1.8203125, -1.0683594, 2.0800781, 0.074279785, -0.48999023, 0.53564453, 1.96875, 1.453125, 0.9824219, -0.21362305, 0.7080078, 1.4482422, 0.15234375, 2.3808594, -2.6367188, 2.7988281, -1.3359375, -0.76660156, 1.8300781, -1.125, 2.1132812, 0.11804199, 0.2322998, 2.7519531, 0.72509766, -1.2607422, 0.45361328, 0.8959961, -0.22583008, 0.87597656, 0.62060547, 0.44091797, -2.3925781, -1.359375, 0.24731445, -2.0078125, 0.2578125, 0.9121094, -0.9116211, -3.8925781, 0.78222656, -2.3730469, 0.6171875, 3.1894531, -2.9960938, 0.4802246, -1.0732422, -3.2226562, -0.43652344, 0.27905273, 1.0107422, -1.1542969, 2.9394531, 4.21875, -1.4404297, -3.2128906, -1.0458984, -1.8193359, -1.3642578, -0.32910156, -0.75439453, 0.9667969, 0.19445801, 0.55908203, 1.1845703, 0.9946289, 0.39672852, -1.5507812, -0.13220215, -4.0429688, 1.4355469, -0.7558594, 2.859375, 0.71777344, 0.01626587, -1.5654297, -0.92333984, 0.1850586, -0.30810547, 2.7480469, 0.6821289, 0.7026367, -0.21325684, -0.65771484, -0.16931152, 0.6816406, -2.0039062, 0.5463867, -1.6533203, -0.22351074, -1.9902344, -4.9023438, -0.9902344, -0.9458008, 0.30908203, -1.7705078, -0.17199707, 0.23937988, -1.1113281, -0.42871094, -1.4941406, -0.1998291, -2.6601562, -0.6503906, -0.24023438, 0.65966797, -0.66845703, -0.5830078, 1.2363281, -0.3251953, 0.39770508, -0.96484375, -1.1230469, 1.2861328, 0.2927246, -0.62402344, -0.79296875, -2.3222656, 0.2244873, 1.2451172, -1.1113281, 2.7617188, -2.2304688, -0.7324219, -1.1064453, -0.50927734, 4.0039062, 0.84277344, 0.5830078, 1.046875, 0.1472168, 1.4667969, 1.1894531, -1.4365234, 0.021896362, -0.45776367, 0.09112549, -3.4394531, -1.0986328, 0.22558594, 0.8183594, -1.6132812, 0.18579102, 1.3359375, 2.1894531, 1.2548828, 0.54589844, -1.2949219, -0.08148193, -0.79541016, -0.8125, 1.7753906, -1.4638672, 1.6210938, -2.6191406, 0.41796875, 1.875, 0.3400879, 3.5078125, 0.3178711, 0.34399414, 2.8808594, 1.5537109, 0.21386719, -1.4335938, -2.8339844, -0.049865723, -1.1660156, 3.5410156, -0.072753906, -0.31152344, -1.1513672, 1.8818359, 1.9384766, -2.2558594, -1.4111328, -0.117614746, -0.5390625, -0.671875, -1.0390625, 0.2775879, 0.34716797, -0.9604492, 2.8808594, 2.0488281, -0.24182129, 0.57177734, -0.28979492, 2.6113281, -0.5107422, 0.78466797, -1.7089844, -1.2060547, 0.8149414, 0.54003906, -3.9375, -2.953125, -0.9375, -0.45483398, 1.2568359, 2, -0.50878906, -1.7382812, 0.9301758, -1.8183594, -1.3916016, 1.75, -1.9589844, -1.9335938, 0.71972656, 0.60498047, -0.3947754, -0.16137695, 0.91015625, -1.6953125, -0.03086853, 1.0644531, -1.5361328, -0.047180176, -2.5488281, -0.7290039, -2.0527344, 0.84228516, -0.25854492, 1.40625, 1.5986328, 2.4863281, -0.44970703, 0.64697266, 2.7519531, -0.5292969, -0.051116943, -2.8984375, -3.2460938, 2.5839844, -0.9824219, 2.3828125, 1.4755859, -2.4160156, -0.6274414, 0.08251953, 1.1708984, -1.0839844, -2.9824219, 0.19189453, 1.2519531, -1.9550781, -2.6777344, 2.8007812, 0.6040039, -1.6240234, -1.3457031, -0.2878418, 0.16247559, -0.17895508, 1.0966797, -0.80908203, -0.14147949, 2.2324219, 0.29833984, 0.6088867, -1.1279297, 1.8349609, -0.79248047, 0.48217773, 0.04385376, 1.8085938, 0.88720703, -0.7441406, 0.34423828, 1.6533203, 2.0722656, 0.7246094, -0.28393555, 0.26513672, 0.09240723, -0.17199707, -2.2070312, 0.6176758, -0.45825195, 0.66503906, -1.4804688, 0.32983398, -1.9404297, -0.29248047, 2.0175781, 0.38867188, 0.44018555, 0.47338867, 1.2607422, -1.4931641, 0.59716797, -0.35229492, -0.96191406, -0.6298828, 0.29638672, -0.50634766, -0.87060547, 2.8828125, -3.0605469, 0.70410156, 0.42285156, -0.9746094, -3.4902344, 1.1035156, 2.5996094, 1.6494141, 0.56933594, -1.2832031, -2.3984375, 0.5004883, 2.0234375, -0.7631836, 2.2636719, 0.3486328, -0.8833008, 0.05456543, 0.8208008, -1.2890625, -0.32104492, 0.57910156, -0.25317383, 0.40673828, -0.14575195, 0.39794922, -2.4921875, 1.3554688, 1.0371094, 0.43847656, 2.1425781, -2.4824219, -1.2402344, -0.19885254, 1.1044922, -0.4428711, 0.5395508, 1.3994141, 0.48413086, 0.05203247, -0.41333008, 1.0039062, 0.7416992, 0.69921875, -1.5966797, 1.5917969, 0.5239258, 0.75927734, 0.4951172, 1.2119141, -0.66064453, 1.1806641, 1.6191406, 0.8354492, 0.9770508, 2.7167969, 0.6015625, -3.2089844, -0.34765625, 0.35083008, -0.8046875, -1.4101562, -2.1699219, -2.2519531, 2.40625, 1.0166016, -1.2910156, -0.19335938, 3.078125, -1.4882812, 1.5048828, -0.2980957, -0.55908203, 0.35473633, -0.9707031, -0.56933594, -3.046875, -1.0292969, -0.11456299, -0.08709717, -0.6123047, -0.027282715, 0.15490723, -0.3713379, -1.3486328, -0.65966797, -0.028518677, -0.8105469, 0.55029297, -0.7319336, -2.2773438, -0.47851562, 3.4003906, 0.4621582, 0.13549805, 1.390625, 0.38134766, 2.3144531, -1.9404297, -1.5585938, -0.6142578, 0.31591797, -2.0859375, -0.3461914, 2.0644531, -0.23547363, -1.3554688, -0.46850586, -0.6069336, -0.2980957, 2.6796875, -0.3972168, 0.7944336, -1.5214844, -1.0107422, -3.1308594, -1.859375, -0.90527344, 0.3005371, -1.0908203, 0.70458984, -1.1123047, 1.1386719, -0.953125, -2.3007812, 0.33251953, -1.296875, 0.66015625, -0.71533203, -0.074401855, 0.38452148, 1.0234375, 0.34399414, -0.5078125, -1.3857422, 0.09680176, -0.63671875, -1.7958984, -0.50927734, 2.2226562, -0.9667969, 0.21105957, 1.4599609, -0.4345703, 1.7304688, 3.4296875, 1.2382812, -3.1367188, 1.3291016, -0.93847656, 1.0546875, 0.35375977, -3.1289062, 1.9541016, 1.4355469, -0.051818848, 1.6308594, 3.7460938, -0.6503906, 1.6113281, -0.9794922, 2.2636719, 1.1074219, 1.7255859, -0.23522949, 1.3203125, -0.20361328, 1.6337891, 2.1914062, -1.6591797, -0.3022461, -1.703125, -2.125, -0.29785156, -0.81591797, 0.11804199, -0.89404297, 1.4082031, -0.8930664, -1.1337891, 1.046875, -1.4951172, -0.60058594, -0.171875, 3.71875, -0.71191406, 2.4726562, 1.7294922, -0.66308594, -2.2753906, -1.6240234, 2.8183594, 3.3964844, -1.7109375, -0.35742188, 1.8056641, -1.8007812, 1.9267578, -0.3786621, 0.63916016, -0.8520508, 3.6875, -0.58203125, 0.13806152, 2.6308594, -2.5488281, 0.18920898, 1.3515625, -0.06121826, -2.7109375, 0.16015625, -0.23522949, -2.9414062, 1.375, -1.7363281, 0.44335938, -0.21960449, -0.9296875, 0.23522949, -2.8613281, -1.78125, 0.9790039, 0.25805664, -1.0292969, 1.46875, 0.9199219, -1.6894531, -0.3527832, 0.38452148, -1.5292969, -0.12121582, 1.5048828, 2.3574219, -1.4667969, -1.3632812, -0.83251953, 0.5727539, 1.1269531, -2.859375, -1.1738281, 1.3583984, 0.78222656, -1.4501953, 0.42358398, 0.09564209, 1.6103516, -0.14282227, 2.1074219, 0.5205078, 0.64697266, 4.2421875, 0.8823242, 4.7539062, 0.63720703, 0.7871094, 0.32617188, 0.55322266, -1.4082031, -0.5854492, 1.1816406, -1.015625, -2.4023438, -0.609375, -1.4453125, 0.3552246, 1.8046875, -3.0585938, 0.9326172, -1.90625, 0.6875, -0.39916992, -0.20666504, -0.5263672, 0.75927734, 0.054473877, -0.11480713, 0.36328125, 1.0742188, 1.2666016, 0.19165039, -1.28125, 0.14147949, -3.7011719, 0.39526367, -0.21386719, -1.0947266, 0.8417969, 1.6201172, 1.9414062, 1.5615234, -0.05706787, 0.2697754, -0.20690918, 0.65478516, 1.90625, -0.89697266, 0.8178711, 1.5888672, 1.4980469, 1.4052734, 0.30297852, -0.7216797, 0.75439453, -2.2480469, -2.640625, 3.0507812, -0.32641602, 2.3730469, -0.25976562, -1.3017578, 1.2792969, -2.3828125, 1.0439453, -1.8603516, -0.10992432, -0.07055664, 0.69677734, -0.12512207, 1.6435547, -0.3095703, 1.7714844, 0.19482422, -1.1367188, -0.3701172, 0.5991211, 1.1611328, 0.9433594, 0.89697266, 0.91308594, 1.5361328, -1.6953125, 4.34375, 0.8730469, -0.49414062, 0.16235352, 3.7109375, 1.4599609, -0.36669922, -1.2451172, 0.9902344, 1.1113281, 0.24511719, 2.3378906, -0.60253906, -2.359375, -1.6816406, -1.3085938, -1.2041016, 0.3010254, 1.0400391, 0.4091797, 0.21228027, -2.1835938, 0.16918945, 0.7441406, -0.82470703, -0.33154297, 1.2666016, -1.4150391, -0.3486328, 0.7817383, 1.5859375, -2.1679688, -2.3769531, 0.3178711, 1.2285156, 0.43139648, -0.7973633, 0.21362305, 0.5493164, -1.1103516, 0.16674805, 0.6621094, -0.48608398, -0.50097656, 2.3769531, -0.6953125, -1.6796875, 1.2597656, -0.45214844, 0.23059082, 0.9375, -0.8881836, 0.60839844, -0.39746094, -1.5615234, -0.13110352, 2.6328125, -0.9375, 2.0566406, -1.1171875, -3.4003906, -1.5097656, 0.21826172, -0.57421875, 1.0830078, -1.4951172, 0.36035156, 0.48339844, 1.7666016, -0.31982422, 0.5029297, 0.2590332, -0.78808594, 1.8330078, -1.59375, 1.8037109, 0.76416016, 1.953125, 0.64453125, 3.9160156, 0.95947266, 0.38842773, -0.66503906, 1.0019531, 0.73583984, -1.4980469, -0.8359375, -3.15625, -0.4814453, 0.8232422, 1.3134766, 1.5966797, -1.4414062, -1.7158203, -0.87402344, -0.44970703]}, "B01LYQLDVJ": {"id": "B01LYQLDVJ", "original": "Brand: Stanbroil\nName: Stanbroil 3/8\" X 18\" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace\nDescription: Key Features:

- This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
- Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
- Provides extra corrosion protection from accidental contact with common household chemicals.
- Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

Compatibility:

\u2714 Propane
\u2714 Natural Gas
\u2714 Gas Fire Pits
\u2714 Gas Fireplaces
\u2714 Gas Log Sets

Tips for checking and addressing problem of whistling

\u27a4 Flex Line Problems:
1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

\u27a4 Gas Pressure is Too High
~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
. Natural gas: Between 3.5\u201d WC and 7\u201d WC.
Propane: 7\u201d WC and 11\u201d WC
\nFeatures: Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance\n3/8\" OD x 1/4\" ID 18 inch Stainless steel pipe coated black gas line with fittings\n3/8\" Male Flare x 1/2\" Male NPT fitting end, 3/8\" Male Flare x 1/2\" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience\nCSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners\nThere is a staggered pitch every 2\" to Eliminate Whistling\n", "embedding": [-0.93359375, 2.2851562, -0.69189453, 0.4338379, 2.1777344, -0.9321289, 1.625, -0.5673828, 1.140625, -0.6118164, -2.0820312, -0.0052948, -0.18603516, -3.4746094, 0.19104004, -0.59228516, -2.3613281, -0.3046875, 0.84228516, 0.92578125, 2.3925781, -0.58691406, 2.4765625, 1.6347656, 0.9086914, -2.4746094, 1.9794922, 0.5698242, -2.1074219, -1.5273438, 0.80908203, -0.7661133, -0.19482422, 0.9633789, -3.9003906, -2.3945312, 0.8769531, -1.7265625, -3.4707031, -1.4091797, -1.3486328, 0.9838867, 1.3886719, 1.6279297, -2.7890625, -0.11462402, 2.4550781, -0.112976074, -0.99365234, -0.8457031, 1.5097656, 0.7597656, -0.5932617, 1.2431641, -1.9179688, 2.0410156, 0.038970947, -1.2861328, 1.2705078, 0.3852539, 2.2578125, 0.89697266, -2.5507812, 0.5317383, -1.2929688, 1.3613281, 0.24401855, -0.5727539, -1.6162109, 1.5605469, 0.6879883, 1.5, 0.21447754, 1.1875, 1.0429688, 1.2705078, -4.1757812, 3, 1.171875, -1.6240234, 0.45410156, 1.0507812, 0.27124023, -1.4228516, 0.46533203, -2.15625, -1.6738281, -1.0947266, -1.1201172, 2.6582031, 1.2060547, 2.0585938, -2.7285156, -4.546875, 0.03012085, -0.6982422, 1.3974609, 1.2314453, -0.4753418, -0.6269531, 0.890625, 0.83740234, 0.24145508, 0.24572754, -1.1796875, -1.8046875, 1.4208984, 2.3242188, -0.7680664, 0.9013672, -0.8041992, 0.054473877, 1.7490234, 0.48608398, -0.36987305, -0.43847656, -0.25830078, 0.036376953, 3.8203125, -1.9082031, 3.7246094, 1.0869141, 1.1572266, 0.4453125, 2.5488281, 0.7753906, -1.7539062, -2.0605469, 2.5625, -2.3300781, 0.48388672, -2.7480469, 1.3681641, -0.04537964, -1.6708984, -2.2890625, 1.109375, 0.1496582, -3.0722656, -0.23608398, -2.6796875, 0.7993164, 0.76171875, -0.4116211, -3.46875, 2.1230469, -1.4335938, 2.3007812, 1.0078125, -3.2050781, 0.55859375, -0.63183594, 2.2363281, -4.046875, 2.5996094, 1.4189453, -0.8466797, -2.0546875, 2.7128906, 0.25341797, 0.05758667, -0.62841797, -1.4150391, 1.1582031, -1.5810547, -2.6308594, 0.91308594, 0.91259766, -1.0126953, 2.3320312, 1.1757812, -0.8613281, -0.006122589, 2.2089844, -0.20837402, -1.46875, 0.6074219, 1.6191406, 3.140625, 0.05758667, -1.3720703, -1.4541016, 1.5917969, -0.9379883, -1.1767578, 1.6181641, 0.27661133, -0.19970703, -0.53271484, -0.6386719, -1.2949219, 1.3320312, -0.5751953, -0.2758789, 0.08227539, -2.1699219, -0.79003906, -1.75, 1.9169922, 3.3515625, -3.0683594, 1.2246094, 0.71972656, 1.6757812, -2.296875, -0.30566406, 1.9765625, 0.24035645, 1.7783203, 2.4296875, 0.26367188, -0.66015625, 2.1152344, -1.3994141, 0.5136719, -1.6357422, 0.72558594, 2.0429688, 1.1103516, -0.17358398, 3.2519531, -1.2109375, 0.72558594, 0.69140625, 2.4824219, 1.0830078, -0.65283203, 0.3713379, -1.6816406, -0.7871094, 2.7929688, -1.1855469, -1.4023438, 0.5024414, -1.2802734, 2.9746094, -0.3935547, -2.0253906, 2.7636719, 1.1445312, -1.3642578, -0.6660156, -2.6464844, -0.0118637085, 0.010627747, -0.8339844, -0.19274902, -0.41625977, 0.8129883, -0.35620117, 0.78027344, 0.19335938, 2.4746094, 1.0869141, 0.17102051, -0.5957031, 0.21643066, 1.4072266, -0.86376953, -0.9267578, 1.234375, 1.6650391, -0.32666016, 1.0039062, -0.013519287, -0.73339844, 1.0449219, -2.4902344, -0.21984863, -1.6542969, -1.0878906, 2.125, 1.7460938, -0.013122559, 0.2722168, -0.47851562, 0.27368164, 3.3300781, 1.6552734, 0.38330078, 1.375, -0.66064453, 0.36279297, -0.8017578, -0.012939453, 1.9082031, 1.8232422, -1.5605469, 0.9033203, -1.4755859, 4.625, -2.3242188, -0.5332031, 1.0478516, 0.9091797, 0.38964844, 1.2246094, 2.1582031, -0.5161133, -1.5537109, -0.57128906, 3.1035156, -0.3227539, 1.6591797, -0.13928223, -0.36767578, 1.6074219, -0.41503906, -0.1496582, 0.23181152, 0.013893127, -0.29760742, -1.4941406, 2.2851562, -3.0585938, -2.7246094, 1.0849609, -0.7919922, 2.0136719, 2.0429688, 0.06768799, 1.1289062, 1.8867188, -1.2529297, -1.7949219, 1.6621094, -1.6640625, 1.4003906, 1.1337891, 2.0839844, -1.4453125, -0.9536133, 0.27148438, -2.9824219, -1.0791016, -0.27612305, -0.26123047, -3.5097656, 0.9506836, -3.2539062, -1.9423828, 1.9375, -0.7397461, 1.9707031, 0.56347656, -1.5361328, -0.09716797, 0.6586914, 0.16052246, 0.76708984, 1.25, 4.640625, -2.5625, -3.1386719, -2.3710938, -0.0019989014, -0.029388428, 0.48583984, -1.0244141, -2.2617188, 0.11077881, -0.13513184, 0.17578125, 0.7963867, -0.4951172, -2.3535156, -1.0595703, -2.7773438, 1.9775391, 1.0126953, 2.3867188, 0.47827148, 1.7841797, -1.0693359, -1.9951172, -0.82128906, -0.31762695, 3.3925781, -1.5644531, 2.640625, -1.9072266, -1.6923828, -0.8613281, -0.83740234, -1.1162109, 1.0302734, 0.65185547, -0.2487793, -1.8505859, -1.1367188, 1.8544922, 0.22021484, -1.4892578, -0.64746094, -0.8144531, 1.2177734, -0.31298828, 0.9345703, 1.0849609, 2.1445312, -0.63720703, -0.4128418, -0.33569336, 0.3173828, -0.39501953, -0.29956055, -0.8798828, -1.8134766, -0.3701172, -1.4912109, 0.9477539, 2.5058594, 0.68066406, -1.2050781, 1.8017578, -2.0234375, -1.2421875, 1.0175781, -2.3769531, 0.6791992, -2.0742188, 1.7294922, -1.1591797, 2.1210938, 3.5488281, 1.1318359, -0.3828125, 0.21203613, -0.5957031, 1.6855469, -0.5942383, -1.3505859, -0.82373047, 0.5986328, 3.7324219, -2.7363281, -0.16113281, 0.08282471, -0.17614746, -4.7460938, 1.4169922, 2.9980469, 1.3046875, 2.0097656, 0.9790039, 0.61865234, -0.40185547, 0.8618164, -0.009208679, 0.44848633, -0.38256836, 0.1262207, -0.42700195, -0.86083984, 0.45703125, 0.59375, 1.0605469, -0.87109375, 1.0185547, 0.68115234, -0.43945312, 1.6181641, 0.41430664, -0.5385742, 1.0625, 0.4831543, 1.5341797, 1.3798828, 0.4116211, -1.8515625, 0.6357422, 2.2441406, -1.4316406, -2.8359375, 1.3369141, -0.8330078, -1.0107422, -0.56396484, -0.9526367, -1.0556641, -2.984375, -0.56103516, 0.14465332, 1.6904297, 2.0195312, -1.0292969, 1.6816406, -0.82666016, 1.3554688, -1.4082031, 0.31860352, -1.546875, -1.3251953, -1.6347656, -2.1230469, 0.5058594, -1.4726562, 1.1367188, 4.0742188, 0.117370605, 1.0117188, 0.12213135, -1.1259766, -1.0185547, 2.2929688, -2.1679688, 1.2294922, -1.0751953, -1.2314453, 0.13220215, -0.9008789, -0.39819336, -1.4433594, -2.3964844, 2.3417969, -0.8901367, -0.80810547, -0.73876953, -0.7519531, -2.0917969, 0.65722656, -0.04812622, -1.2382812, 0.47265625, 1.1953125, -0.33203125, -0.32714844, 3.0214844, -2.2070312, 0.3642578, -1.8896484, -3.6015625, 1.5498047, -2.6699219, 0.1977539, 1.0898438, -0.6015625, -1.8828125, 2.6308594, 0.7363281, -1.3251953, 0.056243896, 0.43286133, -0.3930664, -0.30004883, -2.2714844, 1.3701172, 2.2304688, -0.40698242, -0.7895508, -1.2607422, 0.16699219, -0.84277344, 1.296875, -0.97802734, 0.33642578, -0.0099105835, -0.8876953, -0.072387695, -3.1132812, 1.0244141, -1.2705078, 0.7685547, -1.7197266, 1.4697266, 1.6552734, 1.34375, -0.07373047, 2.921875, 1.9707031, -0.15905762, 0.6464844, 1.0742188, 3.296875, 0.6303711, -1.3134766, -1.0048828, -0.16577148, 2.3925781, 0.1817627, -0.1517334, -0.27294922, -1.7441406, 2.2539062, -1.6611328, 1.7685547, 0.30908203, 0.43530273, -3.7109375, 0.1274414, 0.8095703, -2.2460938, 0.76464844, -0.7529297, -0.24328613, -1.0800781, 0.58447266, -3.3007812, 1.1669922, 0.18164062, -1.0039062, -0.16210938, 0.9589844, 2.3789062, 1.0625, 2.2539062, -2.8828125, -0.4885254, -2.3828125, -0.7402344, -0.6850586, 0.34765625, -1.5380859, -0.20996094, 1.625, 0.8413086, -0.8911133, -0.009521484, 1.9345703, 0.058624268, -1.1376953, 0.17138672, 0.2668457, -3.1855469, 0.265625, 0.76220703, -0.8491211, 1.5859375, -1.1005859, -0.6323242, 2.5, -0.8666992, -1.2177734, 1.9326172, 0.2944336, 0.6201172, 1.0087891, 0.12756348, 1.7929688, 2.8867188, 2.0371094, 1.2861328, 2.640625, 1.7314453, 2.0058594, 1.3818359, 0.73095703, -1.6552734, 2.140625, -0.4802246, 1.6171875, 1.125, 2.1757812, -2.0683594, -1.7949219, -0.85839844, 0.61035156, -4.09375, -0.96533203, -1.4892578, -2.3515625, 1.0087891, -1.3974609, -1.8945312, 0.032928467, 1.1992188, -1.4277344, 0.9345703, 0.49291992, 0.28735352, -0.26708984, -1.8427734, -3.3886719, -2.3730469, -0.9370117, 2.6132812, -0.30810547, 0.7446289, -0.109558105, -0.058258057, -0.31835938, -0.10180664, -1.4677734, -1.0810547, -2.2226562, 0.21862793, -1.5888672, -0.88916016, -0.40600586, 0.97998047, -0.4309082, -0.08441162, 1.1484375, -0.59814453, 2.703125, -2.0917969, -1.3505859, -0.8569336, 0.6152344, 0.59277344, 0.8203125, 3.3554688, 0.24243164, 1.2128906, 0.671875, -0.9316406, 0.37402344, 2.2011719, 0.084228516, 0.32421875, -1.9130859, -0.44458008, -1.1992188, -4.4101562, -1.0986328, 1.7802734, -0.2322998, 0.14196777, -1.5126953, -0.96240234, 0.32739258, -0.028030396, -0.15222168, -0.26757812, 1.3837891, 0.40478516, -0.41674805, -2.1386719, 0.8496094, 0.7080078, -0.6875, -1.0429688, -0.71728516, 1.7265625, -1.1757812, 0.2919922, 3.6875, -2.375, -0.625, 2.1328125, 1.3369141, 0.0066833496, 2.3046875, -0.5131836, -0.9086914, -1.7158203, -3.3730469, -1.0390625, 1.7890625, -2.2402344, -0.33764648, 0.19714355, -0.94970703, 0.29956055, 1.3300781, -1.6025391, -2.6171875, -0.70410156, -0.22668457, 0.9472656, 0.7480469, -1.0166016, 0.5708008, 1.2041016, 2.0625, 2.0195312, -2.1113281, 0.6191406, -0.5864258, -1.6064453, 0.85058594, 0.08605957, 1.5644531, 0.8041992, 1.5009766, 0.9902344, -0.06274414, 0.91015625, 1.2578125, -2.0859375, -0.37817383, 1.3164062, -1.359375, 2.1035156, -0.6665039, -1.6630859, -4.671875, -0.1977539, 1.7919922, 2.1171875, -0.43969727, -0.04888916, 0.38183594, 0.04660034, -0.3137207, -1.3291016, 1.6367188, 1.5888672, 1.1777344, 0.22961426, -0.23303223, -0.43237305, -1.8369141, 2.1425781, 2.5136719, 1.1083984, -1.3320312, 1.0712891, 0.5913086, -4.1601562, -2.0722656, -1.4013672, 1.3203125, 1.1455078, 0.5917969, -0.9213867, -1.4785156, -0.10601807, 1.9453125, -2.1367188, -1.03125, 1.5917969, 0.94921875, -0.23205566, -0.47045898, 1.1035156, -1.7119141, 0.59277344, 1.3154297, 0.1194458, -1.5224609, -2.5, -0.96435547, 0.40722656, 2.2753906, -1.9384766, -0.36914062, 2.7265625, 0.9584961, -0.7841797, 0.90771484, 2.1816406, 2.1640625, 0.061035156, 3.7792969, 1.2578125, 0.7758789, 2.6601562, 0.10974121, 1.6328125, -0.14355469, -0.09918213, 1.2929688, 2.0449219, -0.28295898, 0.7519531, -2.0078125, 0.38085938, 0.8979492, 0.61865234, -1.9375, 1.6728516, -0.109436035, -4.3398438, -0.4243164, 0.9526367, -1.9492188, -3.2636719, 1.7226562, -1.6396484, -0.9980469, -0.2998047, -0.89501953, 1.2197266, -0.57421875, 1.3525391, 0.45581055, -0.2939453, 0.97802734, -3.5058594, 0.7504883, 0.4104004, -4.1328125, -0.61328125, 2.2714844, 0.73535156, 2.3066406, 1.6171875, -0.5288086, -0.11187744, 0.28027344, 1.4150391, -0.08880615, -0.8066406, 0.17626953, 0.7373047, 0.2956543, -2.6875, -0.6245117, -1.1044922, -2.8515625, -2.328125, 3.1191406, -0.97265625, -0.07476807, 1.2421875, -0.19897461, 0.08666992, 0.47265625, 0.2409668, -1.6464844, -1.0654297, 0.1694336, -1.9697266, -0.034332275, 0.103027344, -0.5961914, 0.23181152, 0.6455078, -1.6796875, 0.020141602, 1.5664062, 0.1517334, -0.09716797, -2.0722656, 0.049072266, -0.07019043, -0.77246094, 3.9042969, -0.47485352, -0.70214844, 0.026672363, 1.3486328, 0.62841797, 1.6318359, -0.26123047, 1.2861328, 1.7080078, -1.3330078, 0.8779297, -2.3261719, 0.11138916, -2.140625, -0.36083984, 0.024169922, 0.8671875, -2.265625, 0.8803711, 1.1142578, -3.0410156, 0.9785156, -0.33447266, -0.9404297, 1.4667969, 2.4707031, 0.49829102, -0.74853516, 0.20910645, 2.8417969, 0.17626953, -0.5957031, -0.08135986, 0.62597656, 0.20275879, -1.7890625, 1.34375, -0.28515625, -0.3869629, 0.26782227, 1.6367188, -0.06964111, -1.5351562, -0.16101074, -2.2890625, -1.1044922, 3.1972656, 0.5678711, 0.6113281, 0.53759766, -1.4472656, 0.91748047, -2.5585938, -2.1367188, 0.40722656, 2.9316406, -0.56640625, 1.5654297, 0.57958984, -2.671875, 0.27246094, 1.4736328, 0.46313477, 0.39819336, -2.5292969, 0.6972656, -0.21606445, 4.1484375, -1.0478516, 1.4072266, 0.42919922, 0.93847656, 1.6533203, -2.5625, 2.9179688, -0.6640625, 0.6567383, -0.08483887, 3.4785156, 0.80371094, -0.34570312, 0.22460938, -0.14318848, -0.8354492, -2.0605469, 0.042297363, 1.5644531, 0.45654297, 2.4140625, -0.4934082, -1.3691406, 0.9277344, -1.4130859, -2.3535156, -1.3486328]}, "B078K8DSXC": {"id": "B078K8DSXC", "original": "Brand: GasOne\nName: Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet\nDescription: \nFeatures: \u2713 A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience\n\u2713 MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n\u2713 READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use\n", "embedding": [-2.3808594, 1.0439453, 0.80810547, 0.41088867, -1.28125, 0.047332764, 1.4716797, -1.8847656, 2.1855469, -0.8149414, -0.58447266, 0.41210938, 0.73779297, -1.6884766, 1.8105469, -0.31323242, 1.7675781, 1.703125, 1.9794922, 2.8789062, 0.39892578, -0.23583984, 3.9707031, -1.7001953, 0.5175781, 0.36547852, 2.734375, -3.5605469, -0.9448242, -0.46606445, 1.5869141, 1.7255859, 0.17736816, 1.0126953, -2.28125, -0.7675781, -0.85302734, 0.05392456, -3.3535156, -1.9853516, -2.6953125, 1.1503906, 1.9980469, 0.52685547, -1.9833984, 1.6826172, 2.3535156, 0.953125, -0.48657227, 1.1679688, 1.7744141, 0.5908203, -0.20178223, 0.6142578, 0.8378906, 1.6396484, -0.52441406, -3.2714844, 1.4951172, 1.1142578, 2.6191406, 0.22192383, -2.4335938, -0.5307617, -1.1923828, 1.5410156, -0.31860352, 1.1679688, -0.07348633, 0.079711914, 1.6435547, 1.7832031, 0.12371826, 0.068847656, -0.6166992, 0.5629883, -3.1484375, -0.038970947, 3.1367188, -0.4284668, -0.8378906, 2.3066406, 1.1533203, -0.9692383, 1.6767578, -1.4638672, -1.046875, 0.59375, 1.2802734, 1.3691406, -1.9697266, 3.9785156, -3.140625, -2.7109375, 0.08514404, 0.14562988, 0.63623047, 3.0136719, 0.43652344, -0.14562988, -1.6347656, -1.3076172, -0.9042969, 1.6308594, -2.0019531, -1.9736328, 0.37963867, 1.6435547, -1.6767578, 0.57421875, -0.12939453, 1.2539062, 0.66259766, -0.7661133, 1.1357422, -2.6621094, -0.44311523, 0.7763672, 3.9628906, -0.4086914, 3.25, 0.6508789, -0.082214355, 0.72558594, 0.090148926, -0.34692383, -0.13024902, -0.7446289, 3.8007812, -1.3740234, 0.98779297, -3.3203125, 1.8154297, 1.4248047, 0.54833984, -2.3027344, -1.7763672, -3.4726562, -2.3027344, -0.09106445, -4.3398438, 1.2236328, 0.8647461, -0.18444824, -3.8046875, 1.09375, -3.5957031, 1.6699219, 3.1757812, -3.1035156, 1.9365234, -1.34375, -0.5708008, -2.3183594, 1.5527344, 0.5366211, 0.96728516, -1.0976562, 4.046875, 2.4238281, 0.6821289, 0.66015625, -2.5351562, 0.2890625, 0.09686279, -1.8320312, 0.65283203, 0.4128418, -1.7724609, 1.28125, -0.5444336, -2.9648438, -0.39526367, 0.82128906, 0.31860352, -0.94628906, 0.26538086, 0.7758789, 2.5058594, 0.6743164, -3.1171875, -2.9316406, 1.6376953, -2.8671875, 0.96435547, -0.48046875, -2.140625, -1.8154297, 0.96191406, -0.9848633, -0.47558594, -1.03125, 0.26879883, 0.9848633, -1.9814453, -1.8115234, -3.0625, -0.34545898, 0.39746094, 1.9257812, -0.77978516, -1.5732422, 0.875, 0.18884277, -0.8100586, -1.7705078, -1.0966797, -0.80029297, 0.64208984, 1.8662109, -0.6508789, -0.5263672, 1.7695312, 0.28466797, 0.93847656, -1.5761719, 3.3320312, 2.6855469, 0.9794922, 1.0087891, -1.0341797, 0.17785645, 1.1191406, -0.24694824, 1.6464844, 1.3398438, -0.9160156, 0.31835938, -2.4121094, -2.8828125, 1.7753906, 1.7910156, 0.30908203, 0.45336914, 0.5854492, 2.1308594, 0.23095703, 0.20605469, 1.4072266, 2.3652344, 0.43432617, -0.3540039, -4.0234375, 0.013511658, -0.50439453, 1.1992188, -0.27148438, 1.0546875, 2.1835938, -0.6713867, 0.27661133, -0.061157227, -1.171875, -0.78759766, -0.48876953, -0.5678711, -0.19104004, 3.0859375, -0.09503174, -1.4189453, 0.7246094, 1.8857422, 1.7607422, 2.15625, 0.13781738, -0.6479492, 0.8027344, -0.5214844, -1.8134766, -0.546875, -0.91796875, 2.0117188, 2.0136719, 0.4790039, 2.375, 1.6669922, -2.484375, 1.7060547, -0.62158203, 0.6582031, 1.7871094, -0.3876953, 1.9287109, -1.953125, 1.1123047, 1.5273438, 2.0390625, -0.6118164, -1.7861328, 0.95166016, 2.7207031, -0.12438965, -1.7939453, 2.1367188, 0.6699219, 0.2553711, 0.9428711, -0.113342285, 0.48095703, -0.5185547, 1.1289062, 0.9169922, -1.6455078, 0.82177734, 0.7392578, 1.1503906, 0.19750977, -1.4257812, -0.22473145, -0.5371094, -1.1171875, -1.4853516, 0.110961914, 0.8691406, -2.8417969, -1.0029297, 1.1982422, -1.3164062, 0.18041992, 1.2880859, 1.2255859, 1.5742188, 0.09490967, -1.4941406, 0.66552734, 1.9550781, -2.3652344, 1.0625, 1.3632812, -1.8925781, -0.76123047, -0.79003906, 0.48095703, -2.9394531, -2.3789062, 1.328125, -1.0068359, -3.7929688, 0.91308594, -2.1464844, -3.1601562, 0.38110352, -0.90966797, 3.796875, -0.5053711, -0.06451416, -0.4645996, 0.80029297, -0.9296875, 0.34375, 0.038970947, 2.6308594, -0.64404297, -0.5283203, -0.46533203, 0.36914062, 0.65478516, 2.375, -1.5302734, 0.11773682, 1.5, 1.03125, -1.1552734, -0.059753418, 0.75927734, -1.3574219, -0.03149414, -3.8964844, -0.9223633, -0.5546875, 0.49731445, -1.0078125, -0.34545898, -1.96875, -2.0722656, 1.7128906, -0.9501953, 0.6333008, -0.7314453, 2.7089844, -0.84375, -0.37768555, 2.59375, -0.8984375, -3.1992188, -0.3947754, 1.3681641, -1.7607422, -1.6220703, -1.8027344, 0.068481445, -0.71533203, 0.64941406, 0.18432617, -1.5957031, -2.0390625, 0.28735352, 0.40234375, -1.6816406, -1.171875, 0.7128906, 0.066589355, -1.1162109, -0.6875, 0.8149414, -2.2246094, 0.12359619, -1.0439453, 0.027709961, -0.6035156, -0.47314453, 1.1113281, 1.1474609, 0.8105469, -1.2900391, -3.6855469, -0.56933594, 3.5351562, -1.7333984, 1.6181641, -2.7304688, -0.25952148, -3.3554688, -1.9511719, 1.6435547, 0.44506836, 1.4316406, -0.65185547, 0.3720703, 1.4892578, 0.5629883, -1.8242188, -1.0966797, -0.15588379, 4.0625, -3.8320312, -1.0839844, -0.56152344, 0.6933594, -3.7949219, -0.28515625, 3.3261719, -1.7607422, 1.3535156, 1.7695312, 2.0371094, -0.4111328, 0.9628906, 1.9257812, 0.8647461, 0.33544922, 1.2089844, 1.4658203, -0.48364258, -0.61572266, 2.1992188, 0.32470703, 0.6196289, 2.1816406, 0.27514648, -0.8286133, -1.3740234, -0.030548096, -0.0024223328, 0.45581055, 1.0019531, 2.0078125, 0.13623047, -0.5839844, -0.6196289, 1.0488281, 2.0996094, -1.7558594, -1.609375, 1.9160156, 0.7060547, -0.8911133, 0.4326172, -0.14355469, -0.11590576, -0.08135986, -0.83447266, 1.21875, 1.2226562, 1.6513672, -0.42138672, 3.0957031, -1.625, 3.2265625, -1.8867188, -0.10992432, -0.9970703, 1.8037109, -2.0058594, -1.4833984, -0.7626953, -4.25, -0.6376953, 2.9921875, 1.46875, -2.2929688, 1.7109375, -0.8647461, 1.4189453, 1.4833984, -1.7128906, 0.14147949, -0.5913086, -1.6054688, -0.39794922, 0.12854004, 2.6152344, -0.64746094, -2.1464844, 0.44384766, -2.1523438, -0.0069847107, 1.7011719, -0.17443848, -2.6894531, 1.5458984, -1.4111328, 0.44213867, -1.328125, 4.5078125, 0.083496094, 0.22753906, 2.1035156, -2.2949219, -0.25341797, -2.1757812, -5.9414062, -0.1026001, -3.1933594, 0.43017578, 3.5507812, 0.84277344, 0.39257812, 1.3828125, 1.3886719, -2.9238281, -0.58935547, -1.453125, 0.046661377, -2.7949219, -0.8725586, 2.0019531, 0.013755798, -2.0917969, -3.0019531, -0.9135742, -1.5146484, -0.6118164, 1.1601562, -2.9277344, -0.52001953, -1.2128906, 1.4433594, -1.5068359, -1.0449219, 0.62646484, -0.35424805, -1.1210938, -3.6914062, 2.1074219, 0.22106934, 1.0820312, -0.19396973, 4.5507812, 2.0351562, -1.4394531, 2.4335938, -0.28149414, 3.8613281, -0.515625, -2.0410156, 0.22033691, 0.35913086, 0.37231445, -0.55566406, -1.1142578, -0.5644531, -1.46875, 0.8808594, 0.22363281, 1.8974609, 2.2265625, 0.43798828, -2.9550781, 0.92626953, 0.3642578, -0.97314453, -0.3479004, -0.83496094, -0.6201172, -2.75, 1.7109375, -2.9609375, -0.5073242, -1.5332031, -0.16540527, -2.7109375, 0.73095703, -0.43701172, -0.6660156, 1.34375, -3.0234375, -0.04321289, 0.5410156, -0.9848633, -1.3085938, -1.1660156, -2.0625, -0.66064453, 2.9550781, 2.4042969, -0.30541992, -0.5073242, -0.7026367, -2.34375, 0.43725586, -1.1162109, 0.65527344, 0.5126953, -1.4228516, -0.11419678, -0.55908203, 4.2734375, -0.87597656, 0.8251953, 0.032928467, -1.84375, -1.8642578, 2.2363281, 1.8974609, 2.5195312, 1.5195312, 1.6728516, 2.2597656, 2.1464844, 1.9042969, 0.0960083, 1.7861328, -0.9453125, -0.080566406, 0.45361328, 0.4074707, -1.5800781, -1.15625, 1.0419922, 2.2734375, 1.9384766, 2.9589844, 1.2197266, -2.0957031, 0.8535156, 0.04611206, -0.828125, -0.5175781, -0.4243164, -1.0429688, 4.5039062, 0.31176758, -2.2285156, 0.9868164, 3.03125, 0.3310547, 2.6132812, -0.10668945, -0.5292969, 0.41967773, -1.6474609, -1.8330078, -1.234375, -2.171875, 1.8300781, -2.7519531, 2.3203125, -0.9951172, 2.9648438, 1.3056641, -0.14282227, -0.008453369, -0.48095703, -1.4453125, 0.24389648, -0.7036133, -1.0917969, -1.4414062, -0.3984375, 1.1494141, 1.7021484, 1.59375, -1.1738281, 0.084228516, -1.8173828, -1.2304688, 0.50146484, 2.4140625, -0.41064453, -1.8339844, 1.9550781, -1.2880859, -0.55810547, -2.2148438, -1.3486328, -1.1787109, 2.6289062, 1.4921875, 2.109375, -0.6254883, -1.6953125, -2.0898438, -5.3320312, 0.37109375, 0.6801758, -0.53466797, 1.0576172, -2.6757812, -1.8408203, 0.15881348, -0.97021484, -1.140625, -2.3769531, 0.20031738, -1.5048828, -0.93310547, -2.3925781, 1.0048828, -0.25854492, 1.6240234, -1.3027344, -0.1616211, -0.48876953, -2.0390625, -2.0625, 1.4892578, -1.8789062, -0.7089844, 2.5488281, -1.4306641, -0.18554688, 2.5, 1.2197266, -1.4560547, 1.9628906, -3.8125, 0.82910156, 0.76904297, -2.4960938, 2.7265625, 1.7001953, 0.22802734, 1.0625, 0.39086914, 1.7617188, 0.2685547, -1.7421875, 1.7539062, 1.2548828, -0.30371094, -2.3691406, 0.6274414, -0.29345703, 1.7509766, 1.6660156, -0.030288696, -0.15905762, -1.4306641, -2.0742188, -0.1854248, -2.0898438, -0.8378906, 0.8808594, 0.7163086, 1.6220703, -1.2558594, 1.8730469, 1.6035156, 0.3720703, -0.16149902, 1.2011719, 0.51660156, 2.5527344, -0.04574585, -1.0849609, -2.3300781, 0.14379883, 0.75, 3.0703125, -1.7509766, 0.5058594, 0.4519043, -0.9609375, 0.2980957, -0.43603516, 1.28125, 0.7006836, 1.0107422, -1.3730469, -0.8701172, 3.1074219, -2.4550781, 0.16345215, 0.06933594, -0.16137695, -1.3925781, 1.4628906, 2.3417969, -3.4355469, -0.44750977, -2.4589844, 1.7255859, -0.99072266, -2.2148438, 1.8203125, -2.9609375, 0.13012695, -1.5419922, -1.8486328, -4.7773438, 0.7402344, 1.4482422, -1.1894531, 1.2890625, 3.171875, 0.16369629, 0.08392334, 1.0839844, 1.5166016, 0.5854492, -1.7285156, -2.6601562, 0.3581543, 1.3476562, -1.3828125, 0.5878906, 2.5371094, -0.6816406, -0.84521484, -0.14624023, -0.82128906, 1.2880859, 1.1572266, 1.9326172, 3.7109375, -0.2866211, 2.1679688, 1.0800781, 2.0820312, 0.57128906, -1.140625, 0.49291992, 2.234375, 0.57470703, 1.7314453, 0.2956543, 0.2512207, -1.8085938, -0.56884766, 0.055664062, 2, 1.0576172, -4.2773438, 0.15344238, -0.93603516, -0.22106934, -3.921875, 1.3701172, -2.4609375, 0.4975586, 1.8603516, 2.078125, 1.0136719, 1.5273438, -2.0898438, 0.15893555, -0.5058594, 2.9355469, -1.9941406, -0.19567871, -0.5932617, -3.6230469, 0.6376953, 3.3144531, 0.84716797, 0.9765625, 1.0244141, 0.38061523, -1.0048828, 1.8388672, 0.69677734, -2.2382812, -0.4741211, -0.3017578, 2.2558594, 2.5683594, -1.796875, 1.5400391, -0.5209961, -0.62890625, -3.9589844, 3.2109375, 0.1149292, -0.88964844, 0.11444092, -3.4941406, 1.3105469, -0.6694336, -0.3623047, -2.3125, -0.57714844, 0.42504883, -1.0507812, -0.9946289, 0.92041016, -1.1279297, 2.4238281, 0.8261719, -1.3476562, 0.3173828, 3.0957031, 2.2460938, -0.75146484, 1.046875, -0.7133789, -1.6396484, -1.7548828, 2.1875, -0.73291016, -1.7060547, 0.7729492, 3.3964844, 0.35253906, 1.0683594, 0.98339844, -0.14331055, 0.13562012, 0.13110352, -1.0351562, 0.67089844, -1.546875, -0.40649414, 0.81347656, 0.22912598, -1.8544922, 0.28393555, 3.0625, 1.3613281, -1.8017578, 2.6777344, 2.6035156, -0.7182617, 1.921875, 1.4716797, -0.5366211, -0.9682617, 0.921875, -0.002948761, -3.203125, -1.2050781, -0.09967041, -0.25170898, -0.44555664, 0.10845947, -1.9365234, 0.5551758, -0.18530273, -0.103881836, 0.05831909, -2.5332031, 0.30639648, -0.43530273, 0.46240234, 1.2607422, 3.1425781, -0.6166992, 1.9199219, -1.4638672, -1.7646484, 0.18469238, -4.015625, -1.0195312, 2.3496094, 4.1015625, 1.7080078, 2.0390625, -1.5839844, -3.1660156, -0.45825195, -1.3603516, 2.7988281, -0.29345703, -1.1240234, 0.8105469, 1.3955078, 2.1308594, 0.1616211, 0.24841309, 0.029174805, -0.016586304, 2.4921875, -1.0917969, 2.5976562, -0.7807617, -0.99902344, 0.6977539, 3.5371094, 1.4521484, -0.15258789, 0.23046875, -0.80566406, -0.47705078, -3.359375, 0.5595703, -0.2993164, 1.734375, 1.6748047, 1.71875, 2.6894531, 0.5991211, -1.7685547, -1.1914062, -0.52734375]}, "B08TRF6CMF": {"id": "B08TRF6CMF", "original": "Brand: samdew\nName: samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only\nDescription: 20lb Propane Tank Gas Cover\nFeatures: \u3010Fit Well\u3011: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better.\n\u3010Outside Storage Pocket\u3011: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage.\n\u3010Humanized Design\u3011: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow.\n\u3010Stable Tabletop Feature\u3011: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank.\n\u3010Protect Your Tank\u3011: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.\n", "embedding": [-0.29736328, 3.1269531, 1.6826172, -2.0839844, 1.1660156, -0.2376709, 0.057006836, 0.21484375, 0.31274414, 3.6035156, 0.6123047, 2.0253906, 2.3398438, -4.0585938, 2.0234375, -0.32348633, 0.057647705, 1.7705078, 3.2441406, 0.1282959, 1.9179688, -0.011177063, -0.65625, -0.2932129, 1.6552734, -0.4404297, 2.3476562, -2.1132812, -1.5566406, 1.3378906, 0.55126953, -1.1767578, -0.15979004, 2.0917969, 0.045074463, -1.9873047, -0.46948242, -0.06652832, -2.5800781, 0.20703125, -2.3457031, -1.4804688, 3.203125, 1.0498047, -1.75, -0.49804688, -1.75, -1.9365234, 0.98291016, -2.609375, -0.17163086, 1.8828125, 1.3955078, 1.4033203, -2.5234375, -0.89404297, 1.5380859, -3.6132812, -0.60839844, 0.9291992, 0.056762695, -1.3994141, -1.2138672, 1.7744141, 0.5966797, -1.4667969, -0.90771484, -0.5805664, 0.51123047, 1.5117188, -0.46166992, 1.6572266, 1.7128906, -1.0117188, -1.3828125, -0.25317383, -1.6230469, 2.6953125, 2.1933594, -0.49487305, 0.13806152, 2.1777344, -2.296875, -3.5878906, -1.9794922, -1.2099609, -0.2722168, 0.2220459, -0.9868164, 0.5395508, -2.8496094, 1.6103516, -0.3894043, -4.6679688, 1.1708984, -1.8427734, 2.0273438, 0.9033203, 3.1113281, 1.3330078, 0.46069336, 1.0439453, -0.65527344, 1.2724609, -2.4003906, -2.484375, -0.13806152, 0.9711914, 1.59375, 0.76953125, -0.33422852, 0.359375, 2.9375, -1.5410156, 0.055358887, 0.44335938, 0.20593262, 0.8183594, 3.078125, 1.7207031, 3.5605469, -0.79052734, 1.5068359, 0.59716797, 1.8408203, 1.2607422, -1.1533203, 0.59716797, 1.9648438, -1.1162109, 1.3525391, 0.09887695, 0.27416992, -1.7294922, -0.90527344, -1.3496094, -0.5913086, -1.6474609, -2.875, -0.23583984, -3.0761719, 0.007232666, 1.1835938, -0.17785645, -1.3320312, 1.0556641, -1.9052734, 1.0117188, 0.2697754, -2.0898438, 0.63378906, -1.6904297, 1.4599609, -0.9511719, 1.9794922, -0.39111328, 0.47143555, -1.7558594, 1.2607422, 2.4472656, 3.0253906, -2.6582031, 0.080322266, 1.1689453, 0.46972656, -3.9882812, 2.8789062, 0.027709961, -1.3066406, 0.43115234, 0.2512207, -2.5820312, -0.38354492, 0.14013672, 1.1425781, -1.78125, 2.4414062, 2.2949219, 1.3925781, -1.0947266, -2.6953125, -1.2265625, -0.74560547, -0.77001953, 0.72216797, 1.3496094, -2.5839844, -1.4414062, -0.5966797, -1.3945312, -2.9316406, 1.8115234, -2.3242188, -0.94921875, -0.24621582, -2.8789062, -2.7109375, -0.8676758, 0.5541992, 1.7792969, 0.3659668, 0.029571533, -1.4892578, 2.6308594, -3.3125, -0.5864258, 1.2041016, -0.19799805, 1.5166016, 0.41577148, -0.05316162, -0.04232788, 3.6660156, 0.6894531, -1.9326172, -0.026779175, 1.0556641, 0.29736328, 2.828125, 0.15576172, -0.0011816025, -0.38305664, 0.5371094, 2.8496094, 2.0507812, 2.6738281, 1.0859375, 0.61816406, -1.5664062, -1.0458984, 1.4375, 1.2919922, -0.8925781, 0.63720703, -1.4267578, 2.9316406, -0.8066406, 0.47875977, -0.056854248, 0.66503906, 0.9091797, -0.8623047, -1.1376953, -0.6074219, 0.4465332, 1.3994141, -0.062316895, 1.1816406, 0.34106445, 0.95410156, 0.31982422, -1.8222656, 0.7392578, -2.125, -1.5566406, 2.5605469, 2.2695312, 0.19519043, 1.0029297, -1.9794922, 1.1611328, 1.71875, -0.6557617, 1.0166016, -0.5449219, 1.0371094, 0.6381836, 0.375, -2.2734375, 0.16564941, 0.1743164, 1.9013672, 1.9814453, -0.4873047, 1.0791016, 0.9926758, -1.2431641, 3.0136719, -0.21826172, 1.0996094, 0.19604492, -0.94384766, 2.3417969, -1.3417969, 0.5888672, 0.3635254, 3.0800781, 1.3935547, -0.86865234, 0.11199951, 4.3632812, 0.004005432, -0.59228516, 2.3867188, 2.1445312, 0.66308594, 2.328125, -0.28125, -0.4116211, 0.94970703, -1.1123047, 1.5166016, -2.1132812, 1.2138672, -1.03125, -1.2548828, -0.13867188, 0.20776367, -1.1142578, 1.4287109, -0.4169922, -0.97753906, 0.47753906, -0.05831909, -2.2617188, -1.2138672, 4.1367188, -1.4179688, -1.8388672, 2.7070312, -0.77490234, 1.4990234, -1.0585938, -1.6455078, 0.23364258, 1.4697266, -0.6791992, 0.1418457, 0.8652344, 0.7607422, 0.5253906, -1.9794922, 1.4228516, -1.0527344, -0.74365234, -0.5366211, -3.6796875, -2.2714844, 0.1394043, -0.6142578, 0.9169922, -2.2050781, -2.0957031, 2.0917969, 1.9550781, -1.1044922, 0.32885742, 0.26367188, -0.515625, -0.29638672, 0.95654297, 2.6933594, 0.09625244, -3.5546875, -0.47045898, 0.81884766, -0.79003906, 0.5209961, -2.3417969, 0.30908203, -1.2753906, 0.4873047, 1.9873047, 0.01777649, -1.2978516, -1.1210938, -0.08880615, -4.8242188, 1.015625, 0.030960083, 1.4716797, -1.53125, 0.25732422, -0.66845703, -1.6269531, 0.29077148, -1.9306641, 4.3203125, 1.4179688, 0.0005559921, -1.7421875, -1.0771484, -0.36083984, -1.1035156, -2.5839844, -0.35253906, 0.34521484, -1.1191406, 0.41918945, -4.15625, 0.93652344, -1.4912109, -1.2910156, 0.21032715, 0.515625, -1.1630859, -1.3007812, -1.8564453, -0.8930664, -1.6572266, 0.6923828, -0.12298584, -2.3945312, -0.15222168, -1.2080078, 0.44750977, -0.4736328, -0.45141602, 2.0449219, -0.5, 1.2177734, 1.5800781, -1.4433594, 0.5878906, -0.37548828, -2.203125, 0.9692383, 3.1152344, 0.2401123, 1.7294922, -0.6821289, -2.0234375, -1.8369141, 0.5678711, 3.1679688, 2.4453125, 0.99072266, -0.2763672, -0.5161133, 0.6875, -0.296875, 0.20385742, 0.14978027, 1.2646484, 2.5625, -0.6479492, 0.73828125, 1.4599609, 2.7871094, -2.0546875, -1.0634766, 0.72509766, -1.4384766, 1.4667969, -0.3100586, -1.5966797, -0.32226562, 0.52441406, 1.9628906, -0.79052734, 1.1845703, -0.7836914, -0.7792969, 0.1381836, -0.32788086, 0.3894043, 0.9868164, 0.96728516, -1.390625, 2.3730469, 0.6508789, -1.3652344, 0.033050537, 0.52001953, -0.33374023, -0.9926758, 1.2744141, 0.059417725, 1.2802734, 0.203125, 0.27514648, -0.07183838, -2.1855469, 1.8193359, 1.1953125, -0.7866211, -1.2509766, -0.5107422, -1.3515625, -0.4897461, -1.5576172, 2.6796875, -1.4472656, -2.0214844, 1.7333984, -2.9902344, -1.0341797, -1.3837891, 2.3632812, -0.9765625, -0.19262695, 0.63623047, 1.7832031, -3.0507812, -1.4697266, -1.2304688, -1.1884766, -1.6025391, 3.2890625, 2.2382812, -1.9052734, 0.6152344, -1.0898438, 1.2578125, 2.9492188, 0.7158203, -0.3630371, 0.7895508, 0.53564453, -1.7382812, -1.0800781, 1.2353516, 1.4628906, -3.4003906, -0.2866211, -1.2539062, 0.7705078, 1.8085938, -1.3515625, -0.5834961, -0.42016602, -0.6875, 2.1015625, 0.18249512, 2.8574219, 0.6245117, -0.33251953, 1.7304688, -0.5395508, -1.0205078, 0.6308594, -2.703125, -1.1513672, -0.21435547, -1.4931641, 3.3046875, -0.5107422, 1.3642578, -1.1074219, 2.28125, -3.5703125, -0.8984375, -2.3144531, 0.6875, -2.2207031, -0.32495117, 0.32739258, 1.3505859, -2.6992188, -0.51416016, 0.88623047, -0.43774414, -0.0803833, -0.21655273, 1.6591797, 1.3164062, -1.4863281, 0.081604004, -1.796875, -0.23669434, -1.2558594, -0.9584961, -1.8154297, -1.9658203, 3.3984375, 0.09503174, -1.8271484, -0.3918457, 2.5488281, 1.0537109, -1.2128906, -0.4423828, 0.3149414, 0.07922363, -1.2021484, -3.2539062, -1.2841797, -2.7597656, 1.0078125, -1.1708984, -1.6503906, 1.6552734, 0.5761719, 0.43432617, 2.7675781, 2.1796875, 1.4580078, -0.033691406, -2.9433594, 2.6933594, -0.023971558, -1.7285156, -1.859375, -0.75, 0.11657715, 0.32666016, -1.3095703, -1.8349609, 0.2824707, -0.32885742, -1.0058594, -1.4658203, 1.7021484, 3.0976562, 3.1582031, 3.0449219, -0.9560547, -1.3320312, 1.8183594, 2.0449219, 1.5810547, 0.9482422, 0.13085938, 0.07043457, 1.6699219, 1.3457031, -2.7304688, -1.5283203, 0.08758545, -1.0761719, -0.30908203, 0.98046875, 0.73339844, -1.7324219, -1.4423828, -1.5175781, -1.6728516, 2.671875, -1.9716797, 0.96533203, 1.5117188, 0.19750977, -0.39916992, 3.515625, 0.9345703, -0.7504883, 0.48583984, -0.46264648, -0.68603516, 0.4255371, 0.65722656, 0.51660156, 1.7880859, -1.1181641, -0.5239258, 0.8666992, 1.1513672, -0.11425781, -0.076049805, 1.0234375, 2.375, -0.044128418, 0.40844727, 1.4003906, -1.1982422, 1.5478516, -0.39331055, 0.5834961, -1.4433594, -0.62939453, 0.6743164, 2.0722656, -1.8544922, -2.2675781, 0.6357422, -0.052703857, -0.42700195, 1.8183594, 0.7763672, -2.6113281, 0.068725586, -2.6484375, -1.703125, 1.5683594, -1.9960938, -0.9824219, -1.2265625, 1.2089844, 0.5317383, 0.06384277, 2.3671875, -0.12683105, -1.8945312, 1.0742188, -0.16015625, 0.5488281, -0.9350586, -1.6513672, -2.1269531, 0.6875, -0.25830078, -0.5410156, -0.36254883, 0.4958496, 1.8544922, -2.3496094, -1.953125, -0.035705566, 1.2158203, -2.5859375, -0.5673828, 3.1269531, -0.40820312, -0.82128906, 0.34033203, -0.59521484, -0.9951172, 2.3671875, 2.0371094, -0.3322754, -0.21252441, -0.16455078, -4.9179688, -3.9667969, -1.0078125, 0.99365234, -0.1899414, -0.5175781, -0.94873047, -1.6982422, 1.3388672, -0.7495117, 1.0341797, -1.9697266, 0.43066406, 1.1816406, -2.0390625, -0.56396484, 0.17797852, 0.7324219, 0.49023438, 0.17932129, -1.0400391, -0.4243164, -3.3027344, -2.5429688, 0.42993164, -0.9091797, 0.13171387, -0.88623047, -1.2890625, 0.88671875, 1.6474609, 0.8535156, -1.7470703, 1.7226562, -1.6552734, -0.17126465, 1.0556641, -2.3242188, -1.2929688, 0.06604004, -0.35253906, 0.86035156, 2.28125, 1.2509766, -2.1796875, 1.8125, 0.73876953, 1.5, 1.4990234, 1.6943359, 0.71875, -0.35668945, 0.24206543, 3.3378906, -0.005809784, -2.7519531, -1.9550781, -1.0654297, -1.4326172, -1.9589844, -0.6616211, -1.1054688, 0.15783691, 0.61621094, 0.40698242, 1.3359375, 1.2089844, 0.40673828, -2.1347656, 2.0566406, -1.9208984, 1.0878906, 1.8056641, -1.7353516, -2.5234375, -2.4140625, 2.7832031, 0.6904297, -1.3662109, 0.81640625, -0.49121094, -0.90283203, 2.6660156, -0.97753906, 1.2890625, 1.1591797, 1.8808594, -0.77490234, 0.18920898, -0.008964539, -0.4831543, 0.9785156, 0.22875977, 0.6191406, -0.29614258, 0.6303711, 1.4707031, -2.421875, -1.2373047, 0.2854004, 1.5341797, -0.3762207, -0.9091797, 1.3857422, -1.8740234, -0.45654297, -1.4970703, -1.1289062, -3.78125, 1.546875, 0.9116211, -0.12054443, 0.82470703, 1.3076172, -1.5556641, -0.39819336, 2.4179688, -1.6982422, -2.3417969, -0.41381836, -1.1005859, -0.95703125, 1.1865234, -1.3232422, 0.32250977, 1.0322266, 0.79003906, -1.3515625, 2.1425781, 0.6533203, 0.0028152466, 0.97558594, 2.5058594, 3.9355469, 0.7807617, 3.0820312, 0.2722168, 0.8408203, 3.7285156, -0.1661377, 1.1347656, 1.9658203, 1.5273438, 1.3291016, -0.33935547, -0.625, 0.86865234, 0.026245117, -0.4963379, 0.61816406, 1.7265625, -1.8164062, 0.3256836, -0.4260254, -1.4560547, 1.7080078, 1.3652344, -2.1074219, -2.1132812, -0.17919922, 0.07055664, 1.6855469, -2.1425781, 1.1679688, 0.21557617, 0.21960449, 1.5966797, -1.0107422, 0.6850586, -1.9589844, -0.9013672, -0.80029297, 2.7597656, 1.2451172, 1.6162109, -2.2070312, -0.3317871, -1.0253906, 0.5698242, 1.1572266, 0.6582031, 1.953125, -2.0722656, 0.6088867, 3.8945312, -2.71875, 0.15625, 1.3769531, 1.0449219, -2.96875, -1.4755859, 1.1240234, 1.1201172, -1.171875, -3.9707031, -0.7548828, -0.34887695, 0.33618164, -4.0507812, -1.2294922, -1.3027344, -2.4863281, 0.9589844, 2.1171875, -1.8007812, 2.6992188, 1.3251953, 0.7910156, 2.2714844, 1.9287109, 1.2548828, 0.12451172, 0.7158203, -0.3293457, 0.703125, -0.75097656, 2.7382812, 1.9628906, -1.1992188, -1.1083984, 2.1171875, 1.4257812, 0.9824219, 0.16845703, -1.2255859, 2.6386719, 1.3222656, -0.37646484, 0.69873047, -1.1259766, 0.46826172, -0.33081055, 0.13476562, 0.3779297, -2.6132812, -0.7348633, 1.1181641, -4.1210938, -0.27392578, 0.0110321045, -0.46875, 0.6557617, 0.5498047, -0.36401367, 0.51416016, -1.0429688, 1.765625, -2.2109375, 1.1875, -1.7382812, 0.1262207, 0.12854004, -1.1386719, -0.27294922, 1.2734375, -1.1738281, 0.32006836, 1.3652344, 1.9248047, -0.08703613, -0.58740234, 0.2578125, 0.66552734, 2.4589844, 0.2680664, -0.5151367, -0.068359375, -2.640625, 1.3017578, 0.6977539, -0.27270508, 1.1708984, 2.1972656, 2.4335938, -0.8183594, 0.6098633, -1.828125, 0.5107422, -1.7841797, 1.7480469, 0.6640625, -1.9033203, -0.8613281, 2.15625, 2.9023438, -0.47192383, -1.7373047, -0.043823242, 0.39746094, 1.6123047, -1.1074219, -0.4272461, 1.2685547, 0.16345215, 2.2089844, 3.828125, 3.6191406, -0.9472656, 0.27514648, 2.9609375, -3.1328125, -2.109375, -1.0117188, -1.6201172, 0.026794434, 1.4658203, 1.5498047, 1.7529297, 0.98583984, -1.0029297, -2.7421875, 0.24853516]}, "B078RGBKN7": {"id": "B078RGBKN7", "original": "Brand: SHINESTAR\nName: SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included\nDescription: Get it, you can control the temperature of your appliance exactly what you want

Description
0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
This is an essential part of converting your fire pit/table to a larger flame
Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
Comes with a brass orifice connector, 3/8\" Flare M x 1/8\" MNPT
SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

Feature
Length: 5 feet/ 60inch
Hose Connection: QCC1/Type1 x 3/8'' female flare fitting
Outlet Outside Diameter: 5/8\"-18 UNF
Orifice Fitting Connector: 3/8\" Flare M x 1/8\" MNPT Pipe Fitting
Gas Flow: 120,000BTU/Hr
Material: Durable rubber hose and solid brass fitting
Warm Tips
- In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
- Please double check your propane appliance/adapter connection is 3/8\" Male flare fitting

Note: For Outdoor Use Only.
\nFeatures: \u3010Adjustable\u3011 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need\n\u3010Multi Purpose\u3011 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Well Made\u3011 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security\n\u3010Standard Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Extra Bonus\u3011 Comes with a brass orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "embedding": [-1.3125, 2.8203125, 1.2910156, 0.26245117, 0.089416504, 0.17895508, 2.0527344, -0.80810547, 0.92333984, -0.4921875, 0.54785156, 1.8632812, 1.5068359, -2.4023438, 2.1855469, 0.7128906, 0.2064209, -0.16845703, 0.67041016, 2.40625, 1.7177734, 0.87841797, 2.1074219, -1.2929688, 2.7460938, -0.7841797, 3.3046875, -2.6191406, 0.6171875, -2.3847656, 1.6972656, 2.1035156, -0.20446777, -0.118652344, -2.6386719, -0.2076416, -0.7758789, 0.28198242, -2.1484375, -0.03945923, -0.6699219, 0.18383789, 2.2246094, -0.7084961, -2.3398438, 1.2822266, 0.68066406, -0.19299316, 0.0069084167, 1.0800781, 1.6972656, -0.8696289, 0.093322754, 1.3046875, -0.105163574, 0.21716309, 0.16210938, -2.8769531, 1.8183594, 1.5, 2.8535156, 0.091918945, -2.2949219, 1.4130859, -0.2734375, -0.1607666, 0.14428711, 0.5209961, 1.1162109, 0.9663086, 0.9301758, -0.1427002, 0.23278809, -0.6870117, -0.5678711, 0.47070312, -3.1484375, 0.21276855, 3.4335938, -0.13879395, -0.8408203, 1.4775391, 1.8632812, -1.3720703, 1.7832031, 0.1940918, -2.2167969, 0.57177734, 2.5800781, 1.5976562, -1.6767578, 1.9873047, -2.8046875, -4.8867188, 1.9257812, 1.1396484, 0.44921875, -0.33374023, 0.8540039, 0.07727051, -1.9482422, -1.4873047, -0.5805664, 1.0546875, -2.2480469, 1.1816406, -0.51953125, 0.9199219, -2.9140625, -0.296875, -0.49560547, 0.7558594, 2.0214844, -1.84375, 1.1533203, -2.9628906, -0.48583984, -1.2929688, 2.046875, 0.69970703, 1.859375, 0.4506836, -0.73876953, 0.8120117, 0.26757812, 0.66748047, -0.47045898, -1.0048828, 2.5644531, -1.96875, -1.0917969, -3.3613281, 1.9931641, -0.60253906, 0.5654297, -2.8828125, -0.7060547, -1.8017578, -2.6425781, -0.4724121, -3.25, 0.19396973, 1.6679688, 0.03164673, -2.8320312, 0.8125, -2.203125, 0.5546875, 2.3417969, -1.6660156, 2.203125, -1.1337891, -1.3525391, -1.9990234, 2.1914062, 2.0585938, 0.29833984, -1.1201172, 2.2929688, 0.90722656, 1.3056641, -1.4892578, -2.4648438, 2.4277344, -0.42163086, -3.2226562, 0.19921875, 0.08795166, -1.8867188, 1.3134766, 0.21789551, -2.921875, 0.113586426, 0.67285156, -0.8076172, -1.2412109, 1.2324219, 2.0078125, 1.6533203, 1.0771484, -3.2226562, -2.3203125, 0.89746094, -0.65966797, 0.0713501, -0.7158203, -1.8144531, -0.46240234, 1.4599609, -1.1894531, -1.921875, -0.2208252, -0.17407227, 0.7055664, 0.40161133, -2.8085938, -1.9853516, -1.5068359, -1.0009766, 0.8027344, -2.4980469, -0.59033203, -0.1895752, 0.28076172, -1.8457031, -0.19421387, -0.8666992, 1.8828125, 1.1015625, 3.8652344, 0.0029506683, -1.3623047, 0.37597656, -0.34399414, 0.38671875, -1.9423828, 2.171875, 0.84375, 0.39868164, 1.0322266, -0.89404297, 0.53515625, 0.35498047, 1.4013672, 2.3945312, 1.7353516, -1.2539062, 1.4326172, -0.7241211, -1.6513672, 2.8652344, 1.1982422, -0.37304688, -0.4008789, -0.8232422, 2.8984375, 1.0634766, 0.9213867, 0.60058594, 1.8330078, 0.7163086, -1.0771484, -0.4814453, -0.35888672, -1.3076172, -0.28076172, -1.0458984, 1.0058594, 0.9550781, -0.023162842, 0.7910156, 0.7207031, -0.5551758, -0.359375, -0.054656982, 0.4658203, 0.38500977, 2.1289062, -0.2770996, -1.3261719, 2.90625, 1.7089844, -0.17553711, 3.0175781, -0.10272217, -0.20776367, 1.9951172, -1.4902344, -0.5527344, 1.2880859, -0.47216797, 1.4746094, 2.5058594, -0.47875977, 0.02998352, 0.6826172, -1.8613281, 1.9345703, 1.8378906, 0.70214844, 1.1171875, 0.35498047, 1.9101562, -2.4375, 2.6171875, 1.6132812, 1.8398438, -0.97216797, -1.1865234, 0.9482422, 4.3945312, 0.003742218, -3.3339844, 0.99121094, 0.91064453, 0.7055664, 1.3574219, 1.4902344, 1.2695312, -0.34228516, -0.4272461, 1.8945312, -0.6982422, 0.23364258, 2.2910156, -0.040039062, -0.017425537, -0.05911255, -0.32836914, 1.7783203, -1.8583984, -1.2539062, -2.1777344, 2.8691406, -2.46875, -2.8398438, 0.25048828, -1.1650391, -0.14550781, 2.1503906, 0.54589844, 1.0742188, 0.94384766, -0.7524414, -0.41748047, 0.8847656, -0.8774414, 1.7001953, 1.7998047, -1.2333984, -1.3896484, -1.5253906, 0.03353882, -1.9970703, -2.6914062, 0.78222656, -2.6757812, -1.6787109, 0.8041992, -2.6875, -2.2285156, -0.5810547, -0.5576172, 0.9941406, 0.56591797, -1.4492188, -1.0380859, 1.2822266, 0.70947266, 0.055236816, 0.09881592, 3.1738281, -0.56884766, -2.8476562, -0.046844482, -0.9199219, -0.44067383, -0.32470703, -2.8496094, 0.6088867, 1.4189453, -0.13879395, 1.0166016, 1.1142578, 1.4287109, -3.0644531, 0.4663086, -2.65625, -1.2041016, -0.36108398, 1.6894531, -1.3720703, 0.6821289, -2.1542969, -1.7675781, 1.2939453, -1.6953125, 1.9560547, -1.5478516, 3.421875, -2.7480469, 0.6845703, 0.78759766, 0.65625, -2.8105469, 0.546875, -1.2724609, -1.0556641, -1.8847656, -2.9472656, -0.029846191, 0.14343262, 0.20056152, 0.02027893, -1.4785156, -1.0546875, 0.0748291, 1.0175781, -2.6621094, 0.4868164, -0.22387695, 0.55859375, -0.43115234, 0.7026367, -0.0048179626, -1.7587891, -1.0556641, 1.59375, 1.2851562, 0.13745117, -0.11383057, 0.88720703, 1.5771484, 0.62353516, -0.60546875, -1.8974609, 1.1816406, 3.1347656, -1.9248047, 1.3310547, -1.6806641, 0.029449463, -2.3730469, -0.88964844, 1.8613281, 1.2890625, 3.0683594, -0.40893555, 0.07659912, 0.11682129, 0.7607422, -1.6435547, -1.3789062, 1.046875, 4.3046875, -1.9873047, -1.1386719, -0.09649658, 1.4072266, -2.7792969, 0.1784668, 0.3503418, 0.36254883, 2.7734375, 0.6567383, 1.3144531, -2.0898438, 0.46044922, 1.234375, 1.4013672, -0.36816406, 0.49023438, -0.38134766, 0.9819336, -0.39526367, 1.4746094, 2.9746094, 0.49975586, 2.4003906, 0.9716797, 1.3730469, -0.2602539, 0.328125, -0.20178223, 0.59716797, 0.09320068, 1.421875, 0.41357422, 0.2709961, -1.3876953, -0.06365967, 1.9677734, -1.1308594, -0.07232666, 2.1679688, 1.3369141, -1.1884766, -0.8198242, 0.16601562, -0.3137207, -1.8525391, 0.4807129, 0.06555176, 0.4855957, 2.0078125, -0.11407471, 1.1894531, -1.7207031, 2.4277344, 0.19592285, 0.4453125, -1.2578125, 0.3774414, -3.0449219, -1.5478516, -1.3457031, -3.484375, -1.1894531, 1.6240234, 1.0107422, -0.9868164, 0.8227539, -1.1982422, 0.82714844, 1.4267578, -1.4287109, 0.8261719, 1.1035156, 0.25683594, -0.3305664, 0.44873047, 1.5820312, -0.12854004, -3.0449219, 0.13439941, -1.1748047, 0.22094727, 0.28515625, 1.3535156, -2.7851562, 0.37109375, 0.32128906, 1.2236328, -1.0205078, 3.8203125, -1.0751953, -1.5146484, 2.3398438, -3.0878906, -2.0957031, -1.9296875, -4.265625, -0.060272217, -2.84375, 0.034088135, 2.3613281, 0.17834473, -0.1920166, 0.38623047, 2.1523438, -2.1445312, -0.88671875, 0.45214844, 1.8320312, -2.046875, -0.84521484, 3.2226562, 0.09460449, -1.0410156, -1.6308594, -0.50878906, -1.6767578, -0.72753906, 0.97216797, -2.0117188, -1.3261719, -0.89453125, -0.19152832, -0.3630371, -2.0859375, 1.3232422, -0.43554688, -0.87402344, -2.2734375, 2.2949219, 0.36743164, 0.07867432, -1.1748047, 3.6601562, 2.2246094, -0.5917969, 0.5151367, 1.1181641, 2.6464844, 0.44677734, -1.5527344, 0.22521973, -0.030426025, 0.56689453, -0.46313477, -0.22717285, 0.77441406, -1.9433594, 2.3320312, 0.45874023, 1.0830078, 1.6298828, 0.7988281, -3.2792969, 0.59472656, -0.77685547, -0.48291016, -0.12231445, -0.2998047, -1.3818359, -2.9628906, 0.7836914, -1.9619141, -0.42895508, -1.2373047, 0.04537964, -0.6855469, 2.4667969, -0.21081543, -0.62890625, 1.1640625, -1.1132812, -1.0019531, -0.828125, 0.5175781, -2.0800781, -0.74658203, -1.0917969, -0.012397766, 1.3105469, 0.9277344, -0.31933594, -1.3505859, 0.66064453, -0.79345703, -0.15783691, 0.28076172, 0.98779297, -1.0371094, 0.15979004, 1.484375, -1.0410156, 2.7578125, -0.53466797, 0.30810547, 0.2055664, -0.8745117, -1.3710938, 0.3256836, 2.6855469, 1.5917969, 0.52783203, 1.2460938, 0.6142578, 2.1992188, 1.3632812, -0.35595703, 0.1973877, -1.2412109, 2.3515625, 0.4543457, 1.2685547, -1.1679688, 0.31518555, 0.52197266, 1.8574219, 1.1542969, 2.8242188, -0.020324707, -1.4423828, 1.3339844, 0.38256836, -1.4501953, -0.7060547, -0.07543945, -1.7519531, 2.359375, 0.12237549, -2.1113281, -0.59814453, 2.984375, -1.4560547, 1.3896484, -0.24291992, -1.2236328, -0.56689453, -2.3398438, -1.2285156, -0.00793457, -0.9526367, 0.69384766, -2.4296875, 0.41601562, -0.93652344, 1.3017578, 0.7578125, -0.67626953, -1.1464844, 0.036071777, -2.2578125, -0.3779297, -1.4619141, -0.8027344, -2.1230469, -0.13769531, 2.8671875, 1.7568359, -0.044128418, -1.0878906, 0.5263672, -0.23181152, -1.0898438, 0.13110352, 1.9140625, -0.43139648, 0.13806152, 0.86279297, -0.29052734, -0.4111328, -1.2890625, -1.7197266, -2.2929688, 3.0761719, 2.0058594, 2.4667969, 0.5136719, -0.15002441, -1.5996094, -5.5742188, -0.8100586, 2.1875, -0.020141602, 0.27172852, -2.3554688, -0.064941406, 1.6240234, -1.5429688, 0.8798828, -1.0742188, 0.74560547, -0.68652344, -0.23400879, -1.3291016, -0.0970459, 0.29785156, -0.41625977, 0.15893555, 0.34350586, 0.12042236, -2.5390625, -2.265625, 2.0449219, -2.2695312, 0.23095703, 1.1582031, -0.6381836, -0.75146484, 2.359375, 1.5585938, -2.1796875, 1.7441406, -3.5078125, 0.7182617, 0.93896484, -2.8261719, 1.6181641, 1.4697266, -1.4814453, 1.9824219, 1.4755859, 1.8574219, -1.2089844, -0.97509766, 0.5126953, 0.09802246, -0.6298828, -3.84375, -0.8432617, -0.3623047, 2.3242188, 1.0244141, -0.5283203, -0.011909485, -1.6503906, -3.625, 0.5019531, -1.1630859, -0.56103516, -0.38989258, 1.8955078, 1.2685547, -1.0878906, 0.99365234, 1.5419922, 0.21069336, -1.3740234, 2.1445312, -0.7402344, 3.0605469, 1.5878906, -0.7895508, -1.9980469, -2.0976562, 1.7714844, 2.7207031, -1.8544922, -0.8105469, 0.41088867, 0.6088867, 0.40942383, -0.77441406, 1.0488281, 1.9199219, -0.24963379, -0.4375, -0.33569336, 1.4443359, -0.72753906, 0.7783203, 1.1152344, 1.2919922, -1.4628906, 1.1904297, 1.4345703, -2.5996094, 1.3974609, -2.0410156, 0.7260742, -0.77441406, -2.640625, -0.05984497, -2.9335938, -0.51171875, 0.41992188, -2.2597656, -2.9570312, 1.5693359, 0.6010742, 0.39208984, 0.5576172, 2.03125, 1.2373047, 0.25463867, 0.8232422, 0.83691406, -0.10675049, -0.04272461, -2.3964844, 0.22363281, 2.1386719, -1.2646484, 0.43969727, 2.2304688, 2.0605469, -1.0166016, 0.12536621, 1.1689453, 3.2714844, 0.6635742, 3.5019531, 2.6113281, 0.43823242, 2.6445312, 0.2783203, 2.4882812, 3.1464844, -0.1607666, 0.53027344, 1.5, 0.13452148, 0.9301758, 0.51464844, 0.15893555, -1.0136719, -0.024612427, 0.2866211, 1.8701172, 1.9736328, -2.8730469, -1.2558594, -0.9213867, -1.9267578, -3.2714844, 1.2832031, -0.9067383, 1.0185547, 0.94970703, -0.077941895, 1.7480469, 1.4736328, -0.76220703, -0.953125, -1.8623047, 2.6972656, -2.0839844, 0.15026855, -1.4746094, -2.109375, 0.9814453, 4.5117188, 1.0615234, 0.7651367, 0.60498047, -0.8588867, -0.6269531, 0.71728516, 1.6279297, -2.0273438, -0.5654297, -0.7133789, 2.2519531, 0.50390625, -1.1279297, 1.2099609, -0.8730469, -2.2519531, -3.8554688, 3.0351562, -0.16992188, -0.0859375, -0.44750977, -4.3359375, 2.8125, -1.6953125, -0.0013237, -1.2285156, -0.953125, -0.119262695, -0.5161133, 0.37890625, -1.3085938, -0.57714844, 1.9345703, 0.19714355, -1.1621094, 0.07373047, 1.4609375, 1.0605469, 0.38354492, -0.18640137, 0.92578125, -0.8618164, -1.046875, 3.8398438, -0.48046875, -2.734375, -0.23718262, 2.5253906, 0.9291992, 1.09375, -0.7402344, 0.4326172, 0.39208984, 1.3164062, -1.0458984, -0.09741211, -1.0107422, -1.0585938, -0.5683594, 0.41674805, -0.66015625, -0.33544922, 0.14038086, 0.51660156, -0.71240234, 1.4384766, 1.3662109, -1.9824219, 1.7226562, 1.1962891, -1.3173828, -1.7197266, -0.8276367, 1.5126953, -1.4013672, -1.2822266, -0.36083984, -0.609375, -0.38549805, -1.5556641, 0.19909668, -0.26367188, 0.5673828, -0.08129883, 0.828125, 0.30444336, -1.8583984, -0.21923828, -1.2822266, -1.0283203, 2.5488281, 0.24938965, 2.0273438, -0.6953125, -1.3447266, 0.2421875, -2.0585938, -1.4267578, 0.5800781, 1.3378906, 0.06713867, 0.44702148, -1.2148438, -3.4414062, -0.55078125, -1.5439453, 2.0976562, -0.09106445, -2.03125, 0.671875, 0.3449707, 2.0058594, 0.23046875, 0.65234375, -0.009849548, -0.38061523, 1.4931641, -2.4824219, 0.90478516, -1.4365234, -0.03387451, 0.7416992, 4.1054688, 1.3623047, -0.6772461, 0.0018815994, 2.3710938, -0.546875, -2.4960938, -0.17871094, -1.3652344, 0.20202637, 1.2294922, 2.0546875, 1.6357422, 1.5859375, -1.9990234, -0.609375, -0.57666016]}, "B07D9GZ43Y": {"id": "B07D9GZ43Y", "original": "Brand: SHINESTAR\nName: SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit\nDescription: ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your're trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves\nFeatures: \u3010Quick & Handy\u3011 Propane hose extension is designed for extending the propane line on gas appliances.\n\u3010Multi-Purpose\u3011 Works with RV, griddle, grill, stove, fire pit, heater and so on.\n\u3010Exclusive Material\u3011 Made from braided stainless steel and solid brass, rust-proof & leak-free.\n\u3010Perfect Length\u3011 6-foot long, more flexible to move grill anywhere you want.\n\u3010Brass Fittings\u3011 3/8 inch female flare fittings on both ends.\n", "embedding": [-0.80078125, 1.6484375, 0.85595703, -0.6088867, -1.0488281, -0.34936523, 1.7050781, -1.2480469, 2.2441406, 0.22741699, -1.1796875, -0.08404541, 1.0615234, -4.6679688, -0.10601807, 0.44970703, -0.5395508, -1.2539062, 1.2324219, 1.4257812, 2.5429688, -0.31445312, 1.1933594, -0.054260254, 1.8046875, -2.4199219, 3.6328125, -1.8720703, 1.0625, -0.06329346, -0.14367676, 1.140625, -1.0078125, 1.0009766, -3.7246094, -0.81152344, -1.5371094, -1.3876953, -3.4433594, -2.21875, -2.0371094, 0.9165039, 3.2675781, 0.5932617, -2.2851562, 1.0742188, 0.95654297, 1.9492188, -0.5839844, -0.3388672, -0.6220703, -0.44262695, 0.21679688, 0.43530273, -1.4462891, -0.71435547, -1.1894531, -3.1328125, 1.8046875, 1.1992188, 1.6503906, -0.4050293, -3.0976562, 1.4238281, -0.24633789, 0.93847656, 1.3798828, 0.6923828, -0.69384766, 0.74609375, -0.34106445, 0.7651367, -0.18237305, -0.99902344, 1.1953125, 0.8515625, -3.3515625, 1.3359375, 3.0332031, 1.0537109, -0.9345703, 2.5351562, 0.5083008, -0.88378906, 2.4160156, -0.7055664, -3.4199219, 0.46606445, 1.5253906, 1.6855469, -1.5126953, 3.4433594, -2.7636719, -3.2929688, 1.1865234, -1.1347656, 0.8022461, 0.8173828, 1.3701172, -0.35766602, -0.4909668, -1.3720703, -0.6489258, -0.17285156, -2.1386719, -1.1708984, -0.44091797, -0.5732422, -0.6347656, 0.057525635, 0.37939453, -0.7128906, 1.2685547, -0.8232422, 0.6220703, -2.6894531, -0.43725586, -1.375, 3.203125, -0.27929688, 2.140625, 1.9609375, -0.21289062, 0.45117188, 1.7900391, 1.2255859, 0.08947754, 0.50439453, 2.7675781, -2.3085938, -0.8671875, -3.1132812, 1.9248047, 0.0011720657, -1.6552734, -2.984375, 0.5493164, -0.050964355, -2.6894531, -0.09906006, -2.7460938, -0.6381836, 2.1679688, -0.34545898, -4.4921875, 0.19885254, -2.4238281, 0.47387695, 1.4375, -1.5478516, 1.9296875, -0.5786133, -0.86328125, -1.2724609, 2.4785156, 1.6308594, 2.828125, -1.6181641, 2.8066406, 2.0449219, 2.0859375, 0.062438965, -2.6835938, 3.046875, -0.0736084, -4.515625, 0.39648438, 1.40625, -0.50683594, 0.33984375, -0.45703125, -3.4980469, 0.47998047, 0.5292969, -0.48120117, -1.6650391, 0.953125, -0.75439453, 2.46875, 1.5283203, -2.2167969, -1.6005859, 1.6757812, -2.6523438, -1.0849609, 0.6645508, -1.3408203, -1.9150391, 0.50683594, -0.21008301, -1.7167969, 0.6098633, -0.46313477, 0.7128906, -0.94677734, -2.8515625, -1.4169922, -1.2148438, 1.0664062, 1.6308594, -2.9785156, 0.27490234, -0.09680176, 1.3886719, -1.2080078, -0.6230469, -0.19592285, 0.8964844, 0.35351562, 2.0117188, 0.7998047, 0.16101074, 0.77197266, -1.359375, 0.11004639, -1.3662109, 2.3828125, 2.1621094, 2.140625, 0.7709961, 0.21838379, 1.4013672, 0.52441406, 0.24914551, 1.3242188, 0.101257324, -1.453125, 0.7319336, -0.85839844, -1.703125, 2.9589844, 1.0947266, -1.640625, 0.44189453, 0.26220703, 2.6152344, 1.7734375, -0.61083984, 1.1689453, 3.2988281, -0.16674805, -0.5600586, -1.5888672, -0.5449219, 1.1865234, -0.5786133, 0.9042969, -0.78466797, 1.8769531, 0.43481445, 1.2978516, -0.59521484, -0.5600586, 0.7011719, 0.37548828, -0.13305664, -0.25830078, 2.140625, -0.5888672, -0.26220703, 1.2216797, 1.1552734, 0.6064453, 1.5244141, 0.38964844, 0.13537598, 2.8320312, -1.1367188, -1.6533203, 1.7509766, -2.6113281, 1.8164062, 0.65527344, -0.2565918, -0.5078125, 1.6640625, -1.5595703, 1.9052734, 0.15686035, 1.390625, 1.640625, 0.6035156, 1.3994141, -1.0634766, 1.0205078, 1.0654297, 2.8574219, 0.059387207, -0.9794922, 2.3417969, 3.40625, 0.39746094, -0.76416016, 1.9472656, 1.8310547, 2.0976562, 0.9746094, 2.9824219, 0.41088867, -0.6591797, -0.16418457, 2.0898438, -0.30151367, 1.8427734, 0.73046875, 0.29589844, 1.2753906, -1.4306641, 1.8525391, 1.5332031, -0.30078125, -0.13085938, -1.9931641, 1.0898438, -1.703125, -2.1816406, 2.0683594, -0.4597168, -0.24633789, 2.3789062, -1.5693359, -1.5341797, 0.3684082, -1.0537109, -1.0537109, 1.8339844, -2.6835938, 2.4023438, 2.8710938, 0.8129883, -0.1763916, -1.0449219, -1.1650391, -2.6464844, -1.7373047, -0.4951172, -0.10015869, -1.1884766, 0.9033203, -1.6650391, -1.4667969, 0.14831543, 1.1933594, 2.8105469, 0.03225708, -1.2929688, -0.1998291, 2.2929688, 1.1757812, 0.30249023, 0.05404663, 3.2089844, -0.3935547, -1.6953125, -0.9819336, -0.75390625, -0.93603516, 0.35253906, -2.1777344, -0.22229004, 1.7363281, 0.86621094, 0.81103516, 1.1103516, 0.41967773, -3.4101562, -1.3193359, -3.0195312, -0.39990234, 0.33081055, 1.5117188, -2.1582031, 1.0888672, -0.8022461, -2.6621094, 1.8037109, -1.6064453, 0.546875, 1.8330078, 1.7011719, -3.1289062, -0.099487305, 0.66064453, 1.7363281, -1.5693359, -0.72802734, 1.53125, -1.9033203, -2.7109375, -2.6992188, -0.3100586, 0.5410156, 0.91064453, 0.36279297, -1.5166016, -1.0957031, -0.69628906, 0.25024414, -2.7890625, -0.2524414, -0.16442871, 1.1757812, -0.5913086, -0.011421204, -1.5185547, -1.0742188, -0.48486328, 1.2041016, 0.34179688, -1.1552734, -1.2285156, 0.92871094, 0.18078613, -0.23913574, 0.17919922, -2.1425781, 0.02746582, 2.3339844, -0.69091797, 0.7446289, -1.5029297, 0.45776367, -1.9326172, -1.5732422, 2.1152344, 0.5932617, 0.5571289, -0.5961914, -0.9589844, 2.1953125, 0.3095703, -1.9755859, -2.015625, -1.0625, 4.1953125, -2.4023438, -1.4521484, 0.5180664, 0.19934082, -3.5566406, 1.2285156, -0.08215332, -1.3027344, 1.4228516, 0.95996094, -0.39575195, -1.0029297, 2.0820312, 0.7817383, 1.2724609, 0.39990234, 0.79345703, -1.0605469, -1.5166016, -0.11907959, 0.95410156, 1.8769531, -0.38964844, 0.78515625, -0.04598999, -0.8671875, -0.16809082, 0.3293457, -0.29907227, 0.85009766, 1.2382812, 1.0439453, -0.3635254, -1.3232422, -1.8212891, 0.5288086, 1.7753906, -1.609375, -3.0078125, 0.98535156, 1.5019531, -1.0859375, -0.22497559, -1.1865234, -0.25512695, -2.2421875, -0.56152344, -1.2529297, 0.11566162, 1.2626953, -0.8129883, 1.1914062, -1.4306641, 3.8007812, -0.15844727, -0.47216797, -2.0058594, -1.1845703, -1.3242188, -0.8730469, 0.2800293, -1.8691406, -2.3769531, 2.1015625, 2.9746094, -2.4433594, 0.50341797, -1.4794922, 0.50878906, 0.8232422, -1.7636719, -0.47045898, -0.62646484, 0.05255127, 0.035614014, 0.26464844, 0.6142578, -0.8339844, -1.3300781, 1.125, -1.21875, -0.74121094, 0.5673828, 0.4897461, -2.4902344, 0.60058594, -0.18432617, -0.22277832, -1.3242188, 3.9707031, -0.5131836, -1.1865234, 1.21875, -2.0839844, -1.0917969, -1.8232422, -5.0625, 0.8959961, -1.0332031, -0.29858398, 2.9101562, 0.43774414, -0.65185547, 0.14404297, 0.4790039, -2.015625, -1.0742188, -0.2409668, 0.27368164, -1.5634766, -1.5195312, 2.2363281, -0.21252441, -2.7832031, -1.1708984, 0.27270508, -1.7871094, -0.91064453, 1.4863281, -0.9526367, -0.62353516, -1.4541016, 0.53027344, 0.20898438, -0.9682617, 0.29614258, -2.34375, 0.34204102, -3.4648438, 1.3095703, 2.1582031, 0.7792969, -0.953125, 2.8925781, 1.0273438, -1.9199219, -0.73291016, 0.3371582, 4.0625, -0.4855957, -2.9121094, -0.10656738, -0.9067383, -0.3647461, 0.23632812, 1.3876953, 1.5527344, -1.2509766, 3.03125, -0.9189453, 0.9057617, 1.8984375, -0.13342285, -5.8710938, -0.054260254, 1, -1.2246094, 0.7290039, -1.4824219, -1.5332031, -2.6933594, 1.0537109, -1.5830078, -0.40771484, -2.6582031, 1.3369141, -2.1816406, 0.6850586, 0.07348633, -0.06896973, 1.046875, -0.099365234, -0.44091797, -1.8378906, -1.3388672, -2.4492188, 0.9169922, -2.9375, -0.22131348, -0.36157227, -2.1777344, -0.5336914, -0.5292969, 0.42407227, -1.3105469, -2.0507812, -0.07543945, -0.07446289, -0.47583008, -0.52246094, 1.3369141, -0.44506836, 3.5410156, -0.0597229, 1.7929688, 0.69384766, -0.17614746, -0.63378906, 1.234375, 2.6992188, 1.9570312, 0.2783203, 0.33618164, 0.83203125, 3.3574219, 0.87109375, 0.63916016, 2.2109375, -0.64404297, 0.5004883, 0.56640625, 0.22338867, -0.83203125, 0.8120117, 0.9453125, 1.4648438, 1.2744141, 2.0859375, -1.2265625, -0.9042969, 2.0878906, 0.14538574, -2.4589844, -0.24511719, 0.5756836, -0.8769531, 2.4433594, -0.7246094, -2.1171875, 0.62890625, 3.6992188, -0.76416016, 1.5146484, 0.70947266, -2.1953125, -1.2021484, -2.8730469, -0.84765625, 0.33984375, -2.046875, 0.32788086, -2.7734375, 1.2958984, -0.6411133, 2.1699219, 1.0439453, -0.1842041, -1.3857422, 0.10284424, -3.0859375, -0.70458984, -1.3964844, -1.5527344, -2.6308594, 0.36279297, 0.5600586, 2.0957031, -0.08514404, 0.20568848, -0.21313477, -0.14440918, -1.2119141, 0.2409668, 2.1484375, 0.06781006, -0.17687988, 2.6113281, 0.5913086, 0.54785156, -0.32958984, 0.05493164, -2.1679688, 1.5585938, 1.8232422, 1.2011719, -0.30029297, -1.9394531, -0.84033203, -6.3164062, -0.36450195, 1.0615234, -0.51904297, 0.70947266, -1.2041016, -0.43359375, -0.12109375, -0.05670166, 0.052825928, -0.49023438, 0.90478516, -1.0341797, 0.6948242, -2.3007812, 0.38720703, 0.5205078, 0.14318848, -2.1308594, 0.27124023, 1.8095703, -1.3076172, -1.5458984, 2.0976562, -2.6582031, -0.4814453, 1.3681641, -1.5917969, -0.8203125, 1.3525391, 1.0585938, -0.85839844, -0.5654297, -1.6855469, 1.6035156, 1.3378906, -2.1582031, 0.7236328, 0.34643555, -0.49389648, -0.14575195, 1.7802734, 2.1171875, 0.23693848, -0.51416016, 0.85595703, 1.7050781, -1.4931641, -2.0371094, 0.5756836, 0.08660889, 2.8242188, 1.0341797, -0.12963867, -0.6948242, -1.890625, -2.0371094, 0.5126953, -1.5537109, 0.60058594, 0.53027344, 2.8359375, 0.74902344, -0.71435547, 2.3671875, -0.33081055, 1.7998047, -0.076049805, 1.5283203, -1.2255859, 3.1074219, 0.21704102, -1.3056641, -4.3085938, 1.0400391, 2.5039062, 3.8691406, -0.24572754, -1.3007812, 0.34033203, -1.5029297, 0.41186523, -1.2041016, -0.55908203, 2.25, -0.48486328, -1.3925781, -0.51904297, -0.99853516, -0.8417969, 0.7216797, 0.95996094, 0.4741211, -0.8574219, -0.057800293, 1.3134766, -3.1113281, 0.29077148, -0.8125, 1.0175781, -0.05682373, -1.0380859, 0.1854248, -3.2792969, -0.8720703, 0.546875, -1.5175781, -3.8613281, 2.3417969, 0.9067383, 0.99121094, -0.31176758, 1.7832031, -0.6459961, 0.44067383, 0.96533203, -0.29467773, -1.0390625, -0.40600586, -2.4941406, -0.13806152, 2.1679688, -0.33569336, 1.0429688, 0.6459961, 0.6171875, 0.8276367, 0.92285156, 0.85009766, 1.7724609, 0.32739258, 3.0664062, 1.9707031, 0.5332031, 2.3007812, 0.24902344, 2.1464844, 1.0917969, -2.8496094, 0.82666016, 1.7832031, 1.3085938, 0.94433594, 0.14526367, 0.9277344, -0.044067383, 1.5419922, -0.88671875, 1.0439453, 1.9619141, -3.3339844, -0.80371094, -0.31933594, -1.8232422, -1.9736328, 1.9277344, -2.0761719, 1.2685547, 2.3613281, 0.7661133, 0.6875, 1.0634766, -0.7290039, -1.0751953, -2.6757812, 3.1640625, -1.1347656, -0.72998047, -0.4753418, -1.0771484, 2.3515625, 3.4023438, 0.14697266, 0.7519531, 0.18371582, -1.4697266, 1.09375, 1.1826172, 0.5600586, 0.91552734, -0.7675781, -1.2392578, 0.30810547, 0.70996094, -1.1445312, -0.9008789, -0.70654297, -2.3457031, -4.1054688, 4.140625, 0.64453125, -1.8544922, -0.3239746, -3.1386719, 0.6538086, -2.765625, 0.6826172, -0.9941406, -0.8491211, 0.6899414, 0.3786621, -0.43310547, -1.078125, 0.51708984, 1.265625, -0.12408447, -1.4316406, 0.43432617, 1.3984375, -0.20690918, -0.44873047, 0.88427734, -0.83935547, 0.5004883, -0.54296875, 4.3085938, 0.11883545, -1.5380859, 1.7753906, 2.6679688, 0.70996094, 0.9350586, 0.5961914, -1.7294922, 1.6748047, -0.77441406, 0.1661377, 0.17773438, -2.5097656, -1.2470703, 1.0234375, 2.8554688, -0.11413574, -0.1427002, -0.6352539, -0.18310547, -1.6591797, 3.3359375, 1.6757812, -3.3027344, 2.046875, 3.5546875, -1.1757812, -2.0214844, 0.25341797, 3.0996094, -0.2697754, 0.96533203, 0.45166016, 0.11462402, 1.1298828, -0.33081055, 0.6220703, 0.07354736, -1.1074219, -1.7070312, 0.15917969, -0.058410645, -0.6567383, -0.049438477, -1.2861328, 0.5498047, 4.2539062, 2.0800781, 2.3105469, 0.06768799, -1.3779297, -0.17651367, -2.59375, -1.7900391, 1.2607422, 1.0292969, 0.75634766, 0.08337402, -0.84521484, -2.8242188, -0.36669922, 2.0351562, 0.78466797, 1.4013672, -2.1992188, 0.60791016, 2.6660156, 1.8144531, 0.9892578, 1.7626953, -0.6850586, 0.57421875, 2.2382812, -0.8515625, 2.1992188, -2.3847656, 0.53271484, 0.5957031, 3.3242188, -0.10668945, -0.1038208, 0.7739258, 0.7504883, 0.3708496, -1.2246094, 1.2246094, -0.11291504, 2.5390625, 1.0234375, 3.3222656, 1.6611328, 1.3505859, -1.125, -2.2109375, 0.049194336]}, "B0771WRDGT": {"id": "B0771WRDGT", "original": "Brand: Concord\nName: Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16\" Square\nDescription:

The Concord single propane burner is built like a tank.

Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

For the holiday season, this is the perfect burner for your turkey fryer.

To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go\u2026.

For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






Measurements: Burner Stand 16.5\" Wide x 16.5\" Height

Burner head is 10\" Wide.






Concord burners - make every outing count.

\nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x16.5\".\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "embedding": [-0.57128906, 1.3974609, 1.6035156, 0.9301758, -0.34375, 0.2355957, 2.4375, -1.4384766, -1.9707031, 2.2089844, 2.3613281, -0.46728516, 0.68603516, -2.0996094, -0.8305664, 0.61376953, 0.09484863, -0.8105469, -0.49682617, 1.1513672, 2.0390625, 0.5678711, 2.3984375, -1.1347656, -0.81396484, 0.97216797, 2.2558594, -3.4335938, -2.2382812, -1.0419922, 1.4550781, -1.5107422, 0.6713867, 2.140625, -2.2148438, -0.14282227, -2.1054688, -0.8676758, -2.8378906, -0.7192383, -0.9243164, 1.1230469, 3.5761719, -0.68896484, -2.484375, -0.37939453, 1.4316406, 0.3005371, -1.0869141, 0.80371094, 0.2524414, -0.9145508, 1.2197266, 0.6430664, -1.4072266, 0.8955078, 0.7421875, -2.9414062, 1.5869141, 0.85253906, 2.0078125, 1.2412109, -1.2685547, 1.6337891, -1.1591797, -0.47094727, 0.02558899, 0.6074219, -0.18457031, 0.9604492, 2.9804688, -0.29223633, -1.3671875, -1.3632812, 0.10870361, 0.5263672, -3.3242188, 0.70947266, 2.0683594, 0.2758789, -2.0878906, 1.6259766, 2.7089844, -1.1259766, -1.2939453, 1.0107422, -1.0576172, -0.7871094, 0.5307617, 0.92041016, -0.64404297, 2.4726562, -1.9736328, -3.3886719, 1.8154297, -2.65625, 0.75, 1.3164062, 0.8647461, 1.5117188, -1.6474609, -0.17285156, -1.4208984, 0.32763672, -4.5351562, -1.4433594, 2.6347656, 0.6982422, -1.953125, 0.7890625, -1.6689453, -1.3056641, 1.5195312, 0.67626953, 1.7460938, 0.15905762, -2.2226562, 2.0917969, 2.5429688, -0.84277344, 3.4628906, -0.12976074, 0.8330078, -0.7241211, 0.28076172, 1.4404297, -2.3808594, 1.1992188, 3.0039062, -1.3691406, -0.49243164, -1.4072266, 3.5449219, 0.51416016, -0.8330078, -2.2050781, -0.08666992, -2.5136719, -2.46875, 0.8100586, -3.3125, 2.0234375, 1.3212891, 0.10021973, -3.7539062, -1.7607422, -0.18652344, 1.4189453, 1.3701172, -2.7246094, -0.5395508, -2.9902344, -1.0986328, -2.3027344, 1.4648438, 0.79833984, -0.12414551, -1.1230469, 3.7109375, 0.9941406, 2.0585938, -1.7128906, -1.3769531, 2.8984375, -1.1767578, -0.74072266, 1.7421875, 1.6796875, -1.9951172, 1.1875, 0.3166504, -1.2128906, -0.27514648, 0.48535156, 1.4003906, -1.1552734, -2.65625, 3.0683594, 1.3339844, -0.4699707, -3.1425781, -3.1933594, 2.2773438, 0.63720703, -0.671875, -1.1679688, 0.18981934, 0.025558472, 0.25073242, -2.8242188, -2.8359375, 0.67626953, -0.6176758, -0.95654297, -0.6069336, -1.8056641, 0.57128906, -2.6210938, -0.40234375, 2.8261719, 0.07910156, 0.054840088, -0.2442627, 0.72753906, -2.0605469, -0.88623047, -0.76220703, 0.56152344, 1.2949219, 3.921875, 1.9677734, -1.6220703, 3.1035156, 0.2512207, -1.6376953, -0.17590332, 1.21875, 1.4287109, 1.0625, 1.8310547, -0.15148926, -1.5117188, 2.1484375, 2.4863281, 2.4003906, 1.3037109, 0.81689453, -1.7480469, -1.4140625, -1.3554688, 1.8681641, -0.18688965, -1.4375, 1.8789062, -0.5366211, 3.1679688, 1.6132812, -2.2851562, 0.031066895, -0.32202148, 0.5288086, -0.5722656, -0.047302246, -0.6557617, -2.796875, 1.3486328, 0.3203125, 1.0498047, 3.15625, 1.1738281, -1.4140625, -3.0488281, 0.08972168, -0.8408203, -0.6513672, -1.3769531, 0.3762207, 1.1357422, -0.57666016, -3.4121094, 4.0507812, 2.0605469, -0.82958984, -0.73876953, -1.0849609, -1.3847656, 1.2519531, 1.1611328, -1.4121094, 1.4677734, 0.99316406, 0.45947266, 5.4101562, -1.5322266, 0.38232422, -1.9765625, -0.11785889, 2.96875, -0.47802734, 1.4941406, 1.3037109, -1.1855469, 2.0996094, -3.125, 1.5693359, 2.0195312, 2.0195312, -0.7729492, -1.3691406, -0.15466309, 5.5429688, -0.50634766, -2.5371094, 3.5859375, -2.4335938, 1.7275391, -0.99072266, 0.4572754, 1.015625, 0.068847656, -0.20922852, -0.2722168, -1.3925781, 0.89160156, -1.6777344, -2.8085938, 1.0947266, -2.2382812, 0.5527344, 0.22546387, -0.059020996, -1.0566406, -1.5537109, 2.5546875, -1.9208984, 0.62402344, 1.8046875, -4.4140625, 0.9086914, 3.03125, 2.0390625, 1.5058594, -0.91015625, -1.2792969, 0.95166016, 0.39526367, -0.87939453, 0.5966797, 1.0878906, -0.0904541, 0.072387695, -0.9057617, 0.6513672, -2.5722656, -2.3886719, -0.13391113, 1.0664062, -3.421875, 0.5498047, -1.71875, -0.46728516, 1.6367188, -3.1386719, -0.4934082, -0.71435547, -1.6367188, -0.2644043, -0.10803223, -1.015625, 0.48168945, 0.97021484, 0.6484375, -1.3955078, -3.1367188, -0.58935547, -1.8720703, 0.34375, 0.21899414, 0.018310547, 2.859375, -0.9536133, 0.31713867, -0.75341797, 0.79589844, -0.54296875, -1.9648438, 0.24841309, -2.6074219, -0.016082764, -2.8769531, -0.68652344, -0.3984375, 0.088256836, -2.3886719, -0.2154541, 1.8662109, -1.3701172, 5.015625, 1.4423828, 0.17553711, -0.3515625, -0.32739258, -0.020599365, -1.2763672, -3.9765625, 1.2021484, 0.11468506, -0.9980469, -2.5546875, -2.4179688, -0.33496094, -1.4042969, -0.043395996, -1.6777344, -0.6621094, -0.6699219, -0.8618164, -1.4199219, -0.66015625, 0.05834961, 0.86376953, -2.0488281, -3.9316406, -1.2490234, -1.1894531, -0.053985596, -0.4050293, 1.484375, 0.8613281, 1.2089844, 0.8569336, 2.1738281, 0.5654297, -0.49731445, -0.34521484, -3.4394531, 0.53564453, 2.3242188, 0.37304688, 1.4189453, -1.9814453, -0.11639404, -2.9453125, -0.95214844, 1.1962891, 0.19519043, 1.671875, 1.2470703, -0.7104492, 1.5019531, 1.3613281, -1.6455078, -1.8779297, -0.8535156, 2.4570312, -1.4785156, -2.0429688, 2.21875, 1.546875, -1.8740234, -0.1583252, 1.9599609, 1.1455078, 2.515625, 1.8857422, 2.953125, 0.024902344, 0.16601562, 0.5263672, 3.4101562, -0.4128418, 1.3056641, -0.13134766, 0.0071907043, 1.5703125, 0.9970703, -0.20788574, 1.1738281, 1.9482422, 2.0078125, 0.42114258, -3.7285156, 0.66552734, -0.22570801, 0.5854492, 1.125, 2.7382812, -0.49316406, -2.5664062, -3.953125, 1.6767578, 1.3671875, 0.32421875, -0.26098633, 1.0019531, -0.79589844, -0.27026367, 1.2890625, 0.39526367, 0.1887207, -0.13085938, 1.875, 0.95166016, 1.0097656, 1.7763672, -1.4775391, 0.099853516, -1.0292969, 0.013702393, -0.78564453, -2.1640625, 0.58154297, 1.4814453, -3.1484375, -3.5878906, -0.45532227, 2.3242188, -0.7294922, 3.6855469, 2.796875, -2.0449219, -1.0830078, -2.03125, -0.51953125, 2.5839844, -1.7529297, -1.0302734, -2.1757812, -0.3017578, -1.0869141, 0.66064453, 1.3857422, 1.3798828, -1.296875, 1.7607422, -2.9511719, -0.1517334, -0.22009277, -1.7822266, -0.59521484, 1.5507812, -1.1865234, -0.92333984, -2.3261719, 3.6972656, -1.2353516, 0.33081055, 2.5996094, -2.4101562, -0.074157715, -0.8388672, -4.1601562, 1.2685547, -0.12451172, -0.6972656, 1.9550781, -0.2705078, -0.47875977, 1.3779297, -0.10168457, -2.6132812, -0.6699219, -2.234375, 2.4042969, -3.375, -0.93896484, 2.1289062, 0.25097656, -3.0878906, -2.4511719, -0.34887695, -0.15539551, 1.5654297, 2.0996094, -1.5917969, 1.6220703, -0.5473633, 0.96435547, 0.36376953, -0.9082031, 2.3027344, -0.13586426, -1.2929688, -2.6777344, -0.7211914, 0.53808594, -0.54248047, 0.51220703, 2.1679688, 0.5209961, -1.046875, -0.5908203, 2.2597656, 2.2578125, -0.29589844, -1.7519531, -1.3037109, -0.19116211, -2.6484375, 0.8417969, -0.049804688, -2.8808594, -2.5625, 0.61572266, -0.11883545, 2.1621094, 2.8925781, -0.65185547, -0.03918457, -0.2055664, 1.7363281, -2.1621094, -0.67822266, 0.12347412, -0.7841797, -1.2119141, 1.8789062, -2.4238281, -1.0107422, -1.2578125, 0.921875, -2.0332031, 3.4277344, 1.1376953, 1.4482422, 1.6972656, -1.1230469, -1.7998047, 1.2138672, 0.5673828, 0.42236328, 1.8496094, -0.5283203, -0.95166016, 1.8945312, 1.4384766, 0.032165527, -1.1318359, 1.1523438, -1.3310547, -1.6503906, -0.87597656, 0.49682617, -2.6855469, 0.16186523, 0.25952148, -1.7070312, 2.5546875, -2.7910156, -0.8359375, -1.3554688, 1.5322266, -1.0546875, -0.7871094, 0.45166016, 0.37524414, 0.64453125, -0.39282227, -0.0871582, -0.89404297, 2.9453125, 0.7993164, 2.4921875, 1.8642578, 0.42993164, -0.1484375, 0.23718262, 0.29345703, -0.51660156, 0.022735596, 0.03918457, -0.11022949, 3.0683594, 2.5390625, -1.6855469, 3.4707031, 1.1005859, -1.5908203, -1.5068359, -0.06817627, -0.8623047, 1.5185547, 1.2910156, -2.7578125, 0.18127441, 3.8203125, -0.62939453, 2.0390625, -1.1845703, -1.1757812, -0.6171875, -2.3085938, -1.1757812, -1.0263672, -1.0214844, 0.38891602, -1.2773438, 0.31030273, -0.9277344, 0.3515625, 2.3359375, 1.1738281, -2.1015625, 3.2949219, -0.047912598, -0.859375, -2.4492188, -1.3427734, -3.1640625, 0.5756836, 1.5214844, 1.9941406, 2.796875, -1.2304688, 1.8095703, -1.5566406, -2.3339844, -1.4150391, 1.7197266, -1.1591797, -0.15856934, 2.7734375, -0.7421875, 1.6708984, -1.4150391, -2.2109375, -0.6503906, 1.1474609, 0.5883789, -2.0527344, -0.7319336, -1.9638672, -2.8066406, -4.7851562, 0.24731445, 1.9951172, -0.69921875, -0.32226562, 0.4555664, -0.3083496, -1.4091797, -0.7475586, -0.47387695, -4.03125, 0.24731445, 1.1396484, -0.7060547, -1.1201172, -0.06488037, 0.1550293, 0.8251953, 0.27685547, -0.07495117, -0.46533203, -3.5078125, 0.9824219, 1.3857422, -1.5507812, 1.0439453, 0.1743164, -0.9316406, 1.5039062, 3.8652344, 1.3154297, 0.043518066, 2.1660156, -3.703125, -0.2277832, 0.16882324, 0.1616211, 0.40576172, 2.0839844, -0.86816406, 1.9716797, -1.765625, 0.17028809, 0.9370117, 0.48706055, 0.4658203, 0.17260742, 1.6386719, -0.7529297, 1.1699219, -0.44873047, 2.1738281, 2.3066406, -0.5078125, -0.8989258, -2.34375, -1.7802734, 1.8720703, -1.2128906, 0.20019531, -2.8183594, 1.4726562, 1.8056641, 0.32885742, 0.8413086, 0.48583984, -0.87060547, 1.7763672, 1.9355469, -1.2763672, 2.7050781, 1.3925781, -1.8671875, -2.2851562, -1.2773438, 1.5439453, -0.17333984, 1.9550781, -1.7695312, 2.1757812, -2.3964844, 0.90771484, 0.03918457, 1.8398438, 0.9448242, 0.40966797, -2.2460938, 2.0625, 2.8574219, -0.41967773, 0.56103516, 0.77197266, -0.96777344, -1.2685547, 3.0234375, 0.89160156, -1.2451172, 1.2949219, -2.7480469, 2.1171875, -0.20605469, -0.75341797, 1.5068359, -1.0947266, -0.5175781, -1.9931641, -0.68066406, -2.0761719, 2.6113281, 2.0449219, 0.022247314, 0.39111328, 1.1474609, 0.3876953, 1.140625, 1.0732422, 1.8867188, -0.42260742, 0.92333984, -0.8022461, -0.23510742, 2.8496094, -2.6328125, 0.32348633, 2.4003906, -1.0068359, -1.3955078, 1.40625, 0.78271484, 2.6054688, 2.234375, 1.6503906, 0.03656006, 2.4550781, 5.4335938, 2.0371094, 2.6484375, 1.3681641, 0.6357422, -1.7529297, 2.640625, 2.5488281, -0.85546875, -0.68359375, 0.5683594, -0.81396484, 0.04550171, -0.7817383, 0.4638672, -0.67822266, -6.6171875, 1.9765625, 0.4111328, 2.5429688, -1.1054688, 0.57373047, 0.30126953, -0.72998047, -0.8876953, -2.21875, -0.89697266, -1.2890625, -0.07537842, -0.4987793, 0.22717285, 0.82177734, -2.9121094, 0.16711426, -1.2314453, -2.7558594, 0.025787354, 1.7519531, 1.453125, 1.6132812, -0.53759766, 2.7675781, 1.2646484, 0.2475586, 1.6826172, -1.0898438, 1.0986328, 0.27270508, 2.2558594, 0.60253906, -0.99658203, 2.2089844, -2.3671875, -2.375, -2.7695312, 2.3945312, 1.234375, 1.2041016, 1.8144531, -1.9404297, 3.2304688, 1.1640625, 1.0810547, -1.5185547, 1.6113281, -1.1220703, -0.8925781, -3.0039062, 0.54345703, -1.1611328, 2.2363281, 2.3515625, -2.015625, 0.99121094, -0.09338379, 2.3808594, 1.2998047, 1.0175781, 0.29833984, 0.54589844, -2.8066406, 1.3691406, 0.8881836, -1.5048828, -0.7294922, 2.34375, 0.78515625, 0.93359375, 0.053985596, -0.6171875, 0.9482422, -0.92578125, 0.075805664, 0.85253906, -2.5253906, -2.2871094, -0.07940674, -0.5996094, -0.70996094, -0.92822266, 0.5839844, 1.4785156, -1.7373047, 0.83935547, 1.7939453, 0.003566742, 0.5522461, 0.95947266, 0.76953125, -1.0673828, -1.1787109, 0.20678711, -2.0878906, -1.1181641, 0.33154297, 0.21496582, 2.4726562, -0.67578125, 2.1191406, -1.9208984, 0.8330078, 1.9472656, 0.64941406, -1.6552734, 0.072021484, 0.17980957, -0.14343262, -0.76660156, 3.1503906, -0.75927734, -0.47070312, 0.6274414, -2.40625, 0.6791992, -2.0683594, -1.2109375, 1.7421875, 2.625, 1.0537109, 1.7060547, -1.6757812, -3.7382812, -2.4746094, -1.796875, 1.234375, 1.1025391, -0.90185547, 2.1699219, 1.2880859, 2.15625, -0.3779297, -1.1396484, -0.5004883, 1.6621094, 1.5673828, -0.11553955, 1.8378906, 0.2211914, 1.4658203, 0.040985107, 4.171875, 0.81152344, -0.09625244, 0.77001953, 1.9697266, 0.78271484, -3.296875, 0.9536133, -2.1582031, -1.1064453, 0.40893555, 0.1875, 3.5019531, 0.11553955, -1.0429688, -2.1875, -1.7666016]}, "B083GGFXFT": {"id": "B083GGFXFT", "original": "Brand: SHINESTAR\nName: SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges\nDescription: SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

Description
\u2714 Ability to check the fuel level without having to remove the tank.
\u2714 Checks for leaks on propane appliances
\u2714 See at a glance when your propane level is low
\u2714 Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

What is it use for?
It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
How to detect leaks?
To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

\u2605 NOTE: Will not read levels immediately: begins working when propane is flowing
\nFeatures: \u3010Awesome Connection\u3011 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L.\n\u3010Double Function Gauge\u3011 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety\n\u3010Multi-Purpose\u3011 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking\n\u3010Easy to Install\u3011 It only takes 1 minute to screw it on by hands. Installation is a snap.\n\u3010Standard Adapter\u3011 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.\n", "embedding": [-2.7988281, 2.1640625, 1.796875, 2.2910156, 0.11248779, -0.34399414, 1.1904297, -0.7949219, 3.3984375, 0.39086914, 0.94384766, -0.16833496, 1.3095703, -2.515625, 0.6723633, 0.8979492, 0.42260742, 1.6923828, 0.51171875, 1.5742188, 2.1328125, 2.3085938, 0.94921875, 0.09991455, 2.8886719, -0.26342773, 2.171875, -2.9746094, 0.09954834, -1.2490234, 1.828125, -0.32641602, -0.5629883, 1.5585938, -0.60546875, -1.1318359, -1.1630859, -1.5419922, -3.4609375, -0.46191406, -2.5761719, 1.0908203, 1.4042969, 0.29418945, -0.8642578, -1.21875, -0.111206055, 0.14001465, -0.3088379, -0.20935059, -0.28833008, 1.7998047, -0.60791016, 1.1767578, 0.43920898, -0.20288086, 0.35473633, -2.0996094, 0.7133789, 2.2382812, -0.39111328, -1.7763672, -3.1855469, 0.59472656, 0.055664062, -0.73046875, -0.09564209, 0.2166748, 1.7275391, 2.1601562, 2.2285156, -0.9663086, 0.8413086, -2.2246094, -0.9628906, 0.8779297, -0.7729492, 1.171875, 1.1738281, 1.5634766, -0.013427734, -0.36010742, 0.22167969, -1.0966797, 1.2441406, 1.3759766, 0.11804199, 1.7802734, -0.012619019, 0.0713501, -0.8256836, 2.1210938, -2.5429688, -3.8964844, 1.1503906, -0.30664062, -0.3071289, 0.10699463, 1.1425781, 1.4804688, 0.03543091, -0.75683594, -0.22619629, 1.3837891, -2.5878906, -0.09057617, 0.8979492, 1.1542969, -3.3945312, -1.5244141, 0.77783203, -0.49804688, 0.99121094, -1.5019531, -0.8305664, 0.048065186, 1.6738281, -1.25, 2.734375, 1.3398438, 2.9570312, -0.32836914, 0.18054199, 0.66064453, -0.87402344, 0.5683594, 0.9916992, -0.21264648, 2.8515625, 0.46362305, -0.3618164, -0.51708984, 2.140625, -2.0019531, 0.1842041, -1.5263672, -2.4296875, -2.7519531, -2.5019531, -0.5966797, -3.9863281, 0.59033203, 0.31762695, 1.2783203, -2.2363281, -0.09820557, -2.4707031, 0.047973633, 1.6162109, -0.79052734, 2.5, -1.0693359, -1.2548828, -0.36767578, 0.7895508, 2.5175781, -0.9165039, -2.3398438, 3.1308594, 1.0429688, 1.2490234, -0.9746094, -3.7675781, 0.87402344, 1.9072266, -2.7167969, -0.47436523, 0.5839844, 0.15234375, 0.76904297, 0.9794922, -1.9365234, 0.921875, 0.2220459, 0.23950195, -1.8808594, 1.6171875, 2.1914062, 3.0351562, -0.7265625, -3.4277344, -0.8745117, -0.15991211, -2.4375, -0.043273926, 0.1628418, -0.8388672, -0.037963867, 0.21618652, -1.7177734, -1.6396484, 1.2216797, -1.0722656, -0.6645508, -0.0023880005, -2.7558594, -4.3125, -1.7597656, 0.21325684, 0.5449219, 0.5932617, -0.9345703, 0.06756592, 0.8901367, -0.5209961, -2.0683594, 2.1953125, -1.2216797, -0.3059082, 1.1494141, 0.9399414, -0.07019043, 1.7568359, -1.7666016, -0.12298584, -2.2265625, 0.30908203, 2.4726562, 0.4165039, 2.7851562, -0.24475098, 1.5224609, 0.8046875, 0.07067871, 1.8212891, 1.2177734, 0.8041992, 0.1652832, -0.9194336, -0.4333496, 4.1523438, -0.099731445, -0.33251953, -1.03125, -0.4819336, 2.8945312, 0.85546875, 0.42041016, -0.08996582, -0.1472168, 0.043426514, -0.3569336, -1.1972656, -0.75683594, -1.5126953, -2.8242188, -0.78027344, 0.14648438, 3.0761719, -1.8896484, 1.7988281, -0.8017578, -0.9199219, -0.09515381, -1.1904297, -0.16137695, 1.0302734, 1.0986328, -0.4423828, -2.9003906, 2.9433594, 1.8974609, -0.4091797, 0.30566406, -1.2714844, 1.1240234, 1.8251953, 2.1269531, -1.1240234, 1.7490234, 0.6088867, 0.7167969, -0.4025879, -1.8408203, 2.0039062, 2.921875, -0.2578125, 4.1132812, 0.35083008, 0.29956055, 2.3925781, -0.094055176, -0.27514648, -3.0742188, 0.6044922, 1.59375, 0.8461914, 0.49487305, -1.3398438, 1.7236328, 3.2753906, -2.1816406, -3.2753906, 2.1347656, 2.0351562, 0.1986084, 3.9238281, 0.015838623, 0.16186523, 0.8613281, -0.40771484, 1.6005859, -1.640625, 0.14758301, 1.8085938, -0.23657227, 0.42236328, -0.40112305, 1.375, 0.7128906, -1.15625, -0.21228027, -2.1230469, 1.6015625, -0.27319336, -1.8730469, 3.5136719, -2.2128906, -0.20141602, 3.6445312, -0.5541992, 1.3427734, 0.32495117, -0.94970703, -0.41796875, 2.4609375, -2.0097656, 0.5336914, -0.8886719, 3.2265625, 1.7714844, -1.078125, 0.7236328, -1.5615234, -0.6542969, -0.052246094, -3.0292969, -2.6503906, -0.5776367, -2.3261719, -1.0439453, 0.07220459, 0.0519104, 2.5527344, 0.6479492, 0.6826172, -0.5917969, 1.5175781, 1.9042969, -2.5839844, 0.9316406, 2.8242188, 0.45092773, -1.3925781, -0.099121094, 0.012008667, -0.3154297, 1.8505859, -1.8330078, 0.7866211, -1.046875, 0.40185547, 2.1933594, 1.0234375, -0.6044922, -2.0332031, 0.5756836, -2.3789062, 0.98291016, -2.6503906, 2.3769531, -2.2734375, -0.13757324, -2.1269531, -2.34375, 0.6020508, -0.35327148, 3.0527344, 0.32543945, 1.9833984, -3.6972656, 0.8388672, 0.35888672, 0.8666992, -1.6787109, -0.7919922, 0.22021484, -0.3935547, -0.98828125, -3.0644531, 0.29663086, -0.8857422, 0.25878906, 0.040252686, -1.6611328, -2.3515625, 0.4711914, -0.3996582, -0.6645508, -0.53125, 2.8222656, -1.1445312, -1.7958984, -2.015625, 0.7866211, 1.0341797, -2.4394531, 0.103271484, 0.9633789, 0.21362305, 0.7890625, 0.3022461, 1.46875, 1.4189453, -0.8808594, -3.0898438, 1.453125, 2.5449219, 0.23583984, 1.3339844, -2.0234375, -0.31591797, -0.5917969, 0.6508789, 3.3945312, 2.1972656, 2.8085938, -3.1738281, 0.036010742, -0.6923828, -0.46118164, -0.51904297, 1.2695312, -0.22631836, 2.3125, -1.9013672, -2.9648438, -0.32666016, 1.7431641, -2.2753906, -0.091918945, -0.0025367737, -0.5834961, 4.2734375, 1.7705078, -2.3183594, -0.9511719, 0.4946289, 2.8769531, 0.45996094, -0.49560547, 0.6953125, -1.2958984, 0.5058594, -1.8105469, -1.3535156, 2.2402344, 0.51904297, -0.24963379, 0.6254883, 1.1835938, -0.7871094, 1.1484375, 0.4892578, 0.17626953, -1.171875, 1.6640625, -0.025543213, 0.9765625, -2.65625, 1.21875, 1.7636719, -0.5966797, -2.1816406, 0.7832031, 3.3691406, -0.796875, 0.3852539, -1.2382812, -0.26733398, 0.3642578, 1.3759766, 0.04321289, 0.3215332, 1.9882812, -0.96728516, -0.5942383, -2.3125, 1.9628906, -1.4345703, 0.234375, 0.56933594, 0.28198242, -2.921875, -2.4609375, 0.68115234, -0.6699219, -2.4003906, 0.27954102, 0.58691406, -0.24914551, -0.53271484, -1.0263672, 1.4716797, 1.8115234, -1.6591797, -0.12597656, -1.6845703, 0.18481445, -0.7216797, 1.3378906, 0.9848633, 0.92578125, -1.9443359, 0.87109375, -1.8144531, 1.4941406, 0.57421875, 1.1601562, -1.7890625, -0.65527344, 0.21496582, 3.0605469, -0.23876953, 3.3945312, 0.7285156, 0.94921875, 0.9785156, -1.3544922, -0.17114258, -0.7089844, -3.78125, 1.1298828, -2.2226562, -1.7070312, 1.6191406, 2.9648438, -0.12414551, -0.68066406, 0.9902344, -3.4824219, -1.6679688, 0.0026168823, 1.7851562, -1.1923828, 0.23254395, 1.4726562, 1.328125, -2.21875, -3.3125, -1.234375, -1.3378906, -0.55029297, -0.2866211, 1.4287109, 1.9824219, -1.8769531, -0.92626953, -1.0009766, 0.08190918, -0.80029297, -0.35351562, -0.9082031, -2.9296875, 2.6289062, 1.5898438, -0.45947266, -1.1230469, 1.3886719, 2.9707031, -0.38623047, -0.3010254, -0.3701172, 3.1347656, -0.14990234, -1.7441406, -0.9536133, -2.7480469, 0.14550781, -1.6523438, 1.1855469, 0.6767578, -2.3125, 1.1298828, -0.7324219, 1.9169922, -0.1932373, -1.3798828, -3.7011719, 1.3193359, 1.5673828, -0.0003414154, -0.5029297, -1.6923828, -2.1796875, -1.0566406, 0.22961426, -1.3662109, -1.5537109, -0.6982422, 0.8647461, -4.5390625, 2.4355469, 1.1806641, 2.3945312, -0.48388672, -0.09295654, 0.7163086, 1.2578125, 0.8798828, -0.8725586, 1.2451172, -0.17382812, 0.67626953, -0.051452637, 1.3037109, -1.8925781, -1.6914062, 1.1835938, 0.21252441, -0.15539551, -0.5620117, -0.9038086, -2.1679688, -0.4333496, -0.17077637, -0.15563965, 3.0527344, -1.3359375, 1.546875, 2.5097656, 1.6826172, -2.0253906, 0.7368164, 2.1816406, 3.1074219, -0.8120117, -0.13952637, 0.16906738, 0.5810547, 1.5361328, -2.3632812, 0.111572266, -1.7773438, 0.6503906, 0.9091797, 1.1992188, -0.9189453, 0.1694336, 1.0976562, 1.4199219, 0.5317383, 0.8310547, 1.0576172, -1.1044922, 2.2832031, 0.3395996, -0.5205078, -0.6201172, 1.2353516, 0.16259766, 3.2773438, -0.75439453, -2.1113281, -0.36816406, 2.4394531, -1.3916016, 3.0136719, 1.7890625, -1.3115234, -1.5009766, -2.7011719, -3.2324219, 1.0634766, -1.1191406, 0.9194336, -0.37329102, -0.99121094, -2.4648438, 1.5556641, 0.8378906, -0.7939453, 1.2412109, 0.48339844, 0.4333496, -0.42504883, -0.47729492, 0.32104492, -3.2207031, -0.5727539, 0.37426758, 1.3085938, -1.4648438, 1.4462891, 1.9365234, -1.3076172, -2.921875, -0.69433594, 1.9980469, -1.6542969, -0.45703125, 0.61083984, 1.7734375, 0.87158203, 0.28466797, 0.3881836, -3.0410156, 0.32861328, 2.5898438, 0.84814453, 0.8642578, 0.30395508, -1.6269531, -6.7304688, -0.3347168, 2.2695312, -0.7338867, -0.29248047, -1.8662109, -0.17980957, 0.9477539, -0.53027344, -0.1776123, -1.3173828, 2.7988281, -1.8037109, -0.016403198, -0.47583008, 0.28051758, -0.012313843, -0.59521484, -0.36083984, 0.2788086, -1.2861328, -2.9472656, -2.046875, -1.8183594, -0.92285156, 0.26489258, -0.036895752, -0.9472656, 1.5458984, 0.4736328, 1.8388672, -0.9628906, 1.7597656, -1.4941406, -0.2685547, 3.1523438, -2.4101562, -0.24804688, 1.6455078, -1.2910156, 0.59716797, 2.578125, 1.2529297, -2.1542969, -0.075683594, -1.0683594, 0.48364258, -1.0537109, -2.2871094, 0.105529785, -0.9477539, 2.2753906, 0.12005615, -1.0644531, -0.24450684, -2.1582031, -2.921875, 0.22961426, -1.6699219, -0.47387695, -0.6958008, 1.6660156, 0.47973633, -0.62158203, 0.43041992, 1.3769531, -0.44091797, -3.4609375, 1.7158203, -2.2265625, 2.7265625, 1.1591797, -1.7822266, -2.8242188, -2.6074219, 0.88964844, 1.2939453, -1.3134766, 0.12261963, 0.4465332, 0.15527344, 2.5566406, -0.5371094, 1.5146484, -0.09692383, 0.578125, -1.3955078, 0.96777344, 1.0527344, 0.3173828, 0.28027344, 1.4335938, 0.22229004, 0.62353516, 0.0019760132, 1.7744141, -2.6875, 1.9394531, -1.9853516, -0.5390625, -0.9863281, -1.4169922, 1.2451172, -2.6679688, 0.20800781, -0.5205078, -2.4316406, -3.8925781, 2.6425781, 0.9223633, -0.32299805, 0.2590332, 1.5283203, 0.6982422, -0.111694336, 2.0019531, -0.65283203, -1.5761719, -1.3027344, -0.828125, 0.7163086, 2.5292969, -1.4189453, 0.23217773, 1.9189453, 3.1679688, 1.2695312, 0.105163574, 0.16027832, 2.9140625, 0.48754883, 1.9482422, 3.9433594, 0.06726074, 0.9121094, 0.08215332, 1.4755859, 4.765625, -2.8242188, 2.5097656, 0.08404541, 2.3320312, 0.9692383, -1.6826172, 0.14086914, -1.5, 1.1337891, 0.07147217, -0.1673584, 1.5654297, -3.4375, -0.7397461, -0.12207031, -0.9604492, -2.4238281, 1.3134766, -2.0976562, -0.17089844, -1.7324219, 0.65283203, 0.5473633, 0.5888672, 0.5605469, -0.62597656, -0.6689453, 2.5410156, -1.1591797, -2.1503906, -1.8525391, -1.7675781, -0.4909668, 2.4824219, 1.1630859, 1.2236328, -0.13867188, -0.62060547, -0.51123047, -0.61035156, 0.9238281, -0.8466797, 0.09454346, -0.97314453, 2.4726562, 1.4785156, -0.37329102, 2.5234375, 0.7167969, -0.46899414, -2.9023438, 2.1601562, -0.39453125, 1.2568359, -1.9189453, -4.6796875, 0.8588867, -1.359375, 0.8901367, -1.9501953, -0.0670166, -0.7421875, -1.4912109, 1.1240234, -0.36328125, -0.8852539, 1.7216797, 0.2578125, -1.5654297, 0.08459473, 1.4443359, 0.33422852, -0.2824707, 0.21252441, -0.1829834, 0.42578125, -1.6689453, 2.4023438, -1.234375, -2.3066406, -1.6464844, 0.7685547, 0.10925293, 0.3930664, -1.0654297, -0.001288414, 1.7744141, -0.56591797, -0.21447754, 0.7807617, -2.1777344, 1.7675781, 0.46557617, 0.6904297, -0.016708374, 0.5932617, -1.7880859, 1.9023438, -2.6464844, -1.2783203, 1.4775391, -1.5947266, 1.0644531, 1.4560547, -0.36279297, -0.39868164, 0.625, 1.8818359, -1.2207031, 1.0820312, -1.4755859, 0.82128906, -0.51660156, -2.5136719, 0.26489258, 1.2080078, 0.3852539, -0.074157715, 0.031066895, 0.63378906, -0.11682129, 0.26220703, -2.3554688, 1.8535156, 2.7753906, 0.35864258, 0.9267578, 0.062042236, 0.10760498, 1.4101562, -1.6884766, 0.48364258, 0.7426758, 1.8916016, 0.4892578, 0.12207031, 0.7011719, -2.0507812, -0.8173828, -3.9804688, 0.3388672, 1.1484375, -2.6738281, 0.5810547, 0.7807617, 2.0839844, 0.18566895, 1.5722656, -0.4152832, -1.2177734, 0.6220703, -2.1523438, 1.0351562, 0.094177246, -0.016662598, 1.9316406, 2.6894531, 0.9291992, -1.7773438, -0.7607422, 2.6035156, -1.6269531, -1.3154297, 0.88183594, -1.1083984, 0.12445068, 1.1308594, 4.5078125, 2.7539062, 0.3659668, -0.7944336, -0.53125, -1.3173828]}, "B077TFYR4T": {"id": "B077TFYR4T", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage\nDescription: \nFeatures: Rich heritage finish\nPropane ready (fuel conversion not permitted)\nUp to 20, 000 BTU's/hr heats up to 700 sq. Ft\nThermostat control knob automatically maintains your ideal heat level\nWall or corner installation options included\n", "embedding": [0.43286133, 1.6503906, 1.9394531, 0.30200195, 0.64746094, 0.6694336, -0.3310547, -1.2753906, -0.22058105, 1.3916016, 1.4433594, 0.98095703, -0.4873047, -2.9667969, 1.3964844, -1.6748047, 0.17602539, 1.4003906, 1.0927734, -1.9501953, 2.8125, 1.1064453, -0.64941406, 0.37426758, -0.7319336, 0.22058105, 3.5664062, -2.4746094, -0.91308594, -1.7246094, 1.0507812, 0.32739258, 0.44726562, 2.34375, -1.0830078, -2.1601562, -2.578125, -0.26367188, -5.0078125, -0.06185913, -1.0576172, -0.25952148, 1.7851562, 0.39282227, -3.0234375, -2.0664062, 2.2128906, 0.51708984, -1.0166016, 1.1894531, -0.34472656, -0.24108887, -0.67285156, -0.52783203, 0.57373047, 2.4550781, -0.31835938, -0.9511719, 1.8681641, 0.65625, 0.5878906, -0.5932617, -2.1152344, 1.6210938, -0.22485352, 1.109375, -1.0146484, 0.33862305, 0.18835449, 1.2226562, 0.27197266, 0.4729004, -0.0009870529, -1.1884766, -1.9814453, 0.2454834, -2.9238281, 1.2978516, 1.4189453, -2.4296875, -0.40429688, 1.4707031, -0.6738281, -0.15527344, -1.8076172, -0.31958008, 0.45898438, -0.79833984, 0.4033203, 0.87646484, -0.27294922, 1.53125, 0.012893677, -3.9003906, 0.9272461, -0.7246094, -0.53222656, 0.25732422, 0.64160156, 0.8198242, 1.8935547, 1.1132812, -0.076049805, -0.7192383, -2.6953125, -0.265625, 1.9150391, 1.9433594, -3.3222656, 0.73046875, -1.9501953, 0.31591797, 2.0761719, 0.9316406, -0.66796875, 0.53271484, 0.45825195, 0.91748047, 3.171875, 1.0830078, 2.0898438, -1.4755859, 1.3662109, -0.016113281, 1.3349609, 1.1259766, -0.5629883, 1.2480469, 1.9453125, -0.9145508, 1.2744141, 1.1855469, 1.9453125, -0.31713867, -1.03125, -1.6328125, -1.1171875, -1.9296875, -2.84375, -2.7382812, 0.91308594, 1.1015625, 0.78027344, 0.7607422, -3.5429688, -2.4160156, 0.03186035, -0.33276367, 0.35961914, -2.9628906, 0.55859375, -2.9296875, -0.5629883, -1.9882812, -0.55322266, 0.11584473, -0.05822754, -1.5849609, 0.34643555, 1.2988281, -1.3603516, 0.16125488, -3.1796875, 2.2265625, -2.2675781, -1.9423828, 2.3945312, 0.049987793, 0.77490234, 2.8515625, -0.63964844, -2.1113281, 1.1386719, -0.4038086, -1.453125, -2.0078125, -0.2841797, 2.140625, -0.83935547, 1.7753906, -4.71875, -0.5102539, -1.7822266, -0.36767578, -0.039520264, 0.35253906, 0.1763916, -1.5185547, 1.7382812, -0.23120117, -0.97265625, 1.7851562, -0.50634766, -0.00011026859, -1.7792969, -1.7109375, -0.96777344, -1.9814453, 1.7646484, 0.90527344, -0.13452148, 0.2824707, -0.52441406, 0.6870117, -1.1220703, -2.9882812, -0.46069336, -1.3935547, 1.9042969, 2.4042969, 1.0908203, -1.1660156, 2.4414062, -1.3964844, 1.4003906, -2.7617188, 1.3886719, 0.09643555, -0.25341797, 0.33447266, 0.031204224, 0.88916016, 1.6992188, -0.042297363, 1.9921875, 0.6230469, -0.28295898, -1.2363281, -2.8808594, -2.1953125, 2.9433594, 1.2314453, 0.61572266, 0.43237305, -1.3505859, 3.4648438, -0.9404297, 0.63427734, 2.2910156, -0.5966797, 0.296875, 0.39575195, 0.43041992, -1.5712891, -1.0615234, 1.5, -0.7182617, 1.8808594, 1.9863281, 1.953125, -1.2685547, -1.9580078, -0.04550171, 0.043273926, -0.53808594, -1.9042969, 0.39575195, 1.4287109, 0.20300293, -0.8339844, -0.5107422, -0.064208984, -0.7788086, 0.9628906, -2.2089844, 0.03781128, 3.9121094, 0.35742188, -0.4260254, -0.25463867, -0.17492676, 1.0166016, 1.5595703, -0.9423828, 0.84521484, 0.27319336, -0.53564453, 3.1445312, -1.8818359, 3.078125, 1.7714844, -1.0683594, 1.5654297, -0.8432617, 0.8120117, 1.1855469, 1.7167969, 1.4189453, -1.6318359, -0.54248047, 5.0390625, -0.8515625, -2.2753906, 1.0498047, 0.042816162, 0.11755371, 1.4824219, -0.3623047, -0.28808594, -0.8496094, 2.3671875, -0.064331055, 0.3828125, 0.24865723, -0.66845703, -0.2734375, 0.7583008, 0.30249023, -0.48632812, 0.14428711, 0.16101074, -2.6738281, -2.4882812, 0.8017578, -2.5957031, -0.8540039, 1.5009766, -1.3828125, 1.0322266, 0.56689453, 0.94140625, 0.93896484, -2.2558594, -0.7573242, 0.4650879, 1.4833984, -0.056365967, 0.9663086, 1.3193359, -0.11224365, -0.92285156, -1.2363281, 1.015625, -2.8925781, -2.0234375, -1.1582031, 0.5371094, -2.0332031, -0.6074219, -2.015625, -0.46411133, 1.3652344, -1.4882812, 1.5380859, 0.43554688, 0.017456055, 0.14831543, -1.1611328, -0.7573242, 0.32958984, 0.9824219, 1.9326172, -3.3496094, -4.2773438, -0.98339844, -0.38110352, 0.36889648, 0.5102539, -1.9384766, 1.7246094, 0.6220703, 0.32543945, -0.16137695, -0.3256836, -0.9926758, -1.3623047, 1.1757812, -4.28125, 0.17993164, -0.34570312, -1.0742188, -0.55566406, 1.2470703, -2.3300781, 0.1977539, 2.3828125, -0.4814453, 3.5351562, 2.6152344, 1.4814453, 0.73535156, -0.4086914, 0.09436035, -0.37402344, -2.3261719, 0.18579102, -0.50927734, -1.109375, -3.75, -2.7148438, 2.0410156, 0.23303223, -2.2207031, -0.19165039, -1.1728516, 0.9194336, -2.0097656, -0.0074653625, -0.92822266, -0.66503906, -1.6669922, -1.8818359, -0.13916016, -0.86376953, 0.55029297, -2.0117188, -1.2880859, 1.2285156, 1.4404297, 0.98095703, 1.2490234, 1.15625, 0.23925781, 0.5673828, 1.7675781, -4.0820312, 2.4277344, 1.2939453, 0.054382324, -1.4003906, -1.7675781, -1.78125, -1.1796875, -0.6557617, 2.8339844, 0.9682617, 2.09375, -0.43652344, -0.5415039, 0.16101074, 1.9541016, -0.89404297, 0.24560547, -1.7529297, 0.5996094, -1.1396484, -1.6679688, 0.7036133, 2.7695312, -2.6015625, -1.5976562, 1.2978516, 0.4099121, 2.7382812, 1.4365234, 0.89160156, 0.05026245, 2.2988281, 1.3847656, 1.8935547, -0.35595703, -0.54052734, -0.99121094, 1.9111328, 2.1894531, -0.12890625, 2.1464844, 0.55859375, 0.24560547, -0.0006351471, 1.3046875, -1.0205078, 1.3134766, -0.9067383, 1.6152344, 0.25073242, 1.3525391, 0.2286377, -0.49047852, -1.4863281, -0.75, 1.9921875, -0.9682617, -0.4230957, 2.1777344, 0.609375, -1.0527344, 1.5830078, 1.9580078, -0.42871094, 1.1552734, 0.41674805, 0.35961914, 0.60546875, 1.5615234, -1.4287109, -0.21911621, -1.5576172, 1.6103516, -0.17236328, -0.91259766, -0.43554688, 2.7792969, -1.8564453, -1.3447266, 0.6772461, -1.9775391, 0.33544922, 1.078125, -1.0380859, -1.2783203, -0.83251953, -0.6274414, -0.2590332, 3.1347656, -0.3383789, 0.5073242, -0.13696289, 1.5742188, 0.9160156, 1.2480469, 0.32788086, 1.1884766, -1.5898438, 0.4194336, -1.9609375, -1.5146484, 0.75, -0.07879639, 0.4711914, 2.9667969, -0.27929688, 1.1025391, 0.09399414, 1.3212891, -1.5576172, -0.35424805, 3.3945312, 1.3056641, 0.7519531, -1.8896484, -4.8671875, 0.31933594, -0.93603516, 0.49536133, 0.19604492, 0.4506836, -1.3789062, -0.14416504, 0.7529297, -2.9003906, -0.98876953, -0.78808594, 0.068603516, -1.3740234, 0.85009766, -0.35864258, 0.5800781, -2.265625, 0.1538086, -0.08660889, -0.29833984, -0.70703125, 0.79248047, -2.5410156, 1.2363281, -0.84472656, 1.5029297, -0.5253906, -0.7626953, 0.35546875, -0.5097656, -0.1459961, -1.2910156, 1.2685547, 1.0351562, -1.1953125, 1.5537109, 2.3457031, 0.78515625, -1.1191406, 0.045440674, 2.234375, 2.3691406, -0.35424805, -2.3496094, -2.1660156, -2.0175781, -0.06237793, -0.828125, -0.3779297, -0.74853516, -1.5869141, 0.5761719, 1.8027344, 1.9794922, 2.203125, 0.25073242, -1.3486328, 1.8076172, 0.50097656, -1.2314453, -1.3378906, -3.1425781, -0.5234375, -1.1884766, 1.1904297, -1.453125, 0.45288086, -2.1171875, 0.4230957, -2.6914062, 1.1611328, 2.5195312, 2.3515625, 1.3447266, -0.9003906, -0.92626953, -0.48095703, -0.20263672, 1.4179688, 1.40625, 0.9589844, -0.75878906, 1.3916016, 1.0166016, -2.1367188, 1.6279297, 0.44702148, 0.23364258, 0.73876953, -0.98583984, -1.8720703, -1.1005859, 1.3457031, 1.4277344, 0.06768799, 1.4287109, -2.140625, -0.07635498, 0.89404297, 1.5576172, -0.32470703, -0.20178223, -0.13781738, -1.0605469, 1.7275391, 1.2128906, -0.55029297, -0.26538086, 1.3115234, -0.47924805, 2.5527344, -0.4482422, -0.40551758, -2.0566406, 0.43310547, -0.48461914, -0.5073242, 1.6601562, -0.75683594, 0.23754883, 3.6484375, 1.2392578, -0.5493164, 1.2558594, 0.37402344, -2.2011719, 0.97509766, 1.5166016, 1.1132812, 1.9423828, 0.46166992, -3.9570312, -1.3203125, 3.0625, -1.4833984, 0.4970703, -0.2619629, -1.75, -1.1005859, -3.2207031, -2.5800781, 0.13513184, -0.9765625, -0.3005371, -0.96240234, -1.1826172, -0.7319336, 0.2705078, 2.5839844, 0.26049805, -0.35913086, 1.7382812, 0.92871094, 0.05795288, -2.2226562, -0.06561279, -1.3203125, 0.2890625, 1.2001953, -1.953125, 2.0664062, 1.0146484, 0.9501953, -1.4140625, -0.4963379, 1.2109375, 1.7041016, -1.3095703, 0.28735352, 1.4423828, -0.19897461, 0.8613281, -2.2773438, -0.80029297, -2.296875, 0.08355713, 1, 1.3564453, -0.21557617, -0.97265625, -1.9101562, -3.3007812, -0.7416992, -0.22631836, -1.2919922, 1.7138672, 0.3918457, -0.7583008, 0.57177734, -0.119140625, 0.83154297, -1.1455078, 0.92871094, -1.4462891, -0.5371094, -1.3808594, -2.7011719, 0.3935547, 1.0175781, 0.28808594, -1.8154297, 0.15661621, -1.5615234, -0.7788086, 1.3125, -0.106933594, 2.3515625, 0.42211914, 0.09069824, 1.6826172, 2.6542969, 2.296875, -1.9619141, 1.0800781, 1.4492188, 0.72509766, 1.4394531, -0.9555664, 0.46435547, 1.7607422, 1.4394531, 0.62402344, 2.2265625, 1.5058594, -0.23620605, 0.43896484, -0.08935547, -1.4003906, 0.38598633, -0.88378906, 1.9726562, 0.8198242, 1.1298828, 1.5537109, 0.09020996, 0.038848877, -1.6992188, -0.21911621, -0.45654297, -2.3554688, -0.35424805, -0.79833984, 2.8769531, 0.5966797, -1.0986328, 0.70703125, 1.1650391, 0.31982422, -0.92333984, 0.18579102, -2.4160156, 2.2265625, 2.2382812, -0.15930176, -3.8046875, -1.8671875, 1.1845703, 2.0605469, 2.5449219, -0.39111328, 0.7548828, -2.5410156, 1.6259766, -1.5205078, 1.5742188, 0.82177734, -0.49975586, -1.2119141, 1.5273438, 1.4921875, -1.4082031, 1.8583984, 0.5, 2.7460938, -0.8623047, 3.015625, 2.6328125, -0.36791992, -0.13781738, -1, 1.4716797, -1.4453125, 0.26708984, 0.80859375, -1.6904297, -0.7128906, 0.62597656, -0.31591797, -3.8066406, 2.4589844, 0.7163086, -0.18713379, -0.5786133, 1.1777344, 0.6220703, 0.76904297, 0.7011719, -0.8745117, 1.1572266, 1.4189453, -1.0185547, -0.37158203, 2.3300781, -2.8691406, 1.7792969, 1.0458984, 1.2363281, -0.13354492, 0.98339844, 0.78808594, 1.3232422, 4.21875, 3.640625, 1.6787109, 1.1542969, 0.017440796, 0.2915039, 2.3066406, 1.4257812, -2.1425781, 0.9379883, 1.3828125, 1.2226562, 0.22058105, -1.3632812, 1.6318359, -1.453125, 0.65771484, -0.7416992, 0.32543945, -1.3603516, -3.1992188, -0.109558105, -0.35083008, 0.8798828, -3.5195312, -0.9033203, -0.6464844, 1.2011719, 0.011779785, -3.0078125, 1.4863281, 0.34887695, 0.1463623, 0.58984375, -2.2207031, 1.1455078, -0.8984375, -0.32958984, -0.06689453, -3.4667969, 0.5683594, -1.3095703, 1.2724609, 1.0244141, -0.38183594, 0.12841797, 1.5820312, 1.5292969, 0.27783203, 0.49267578, -0.7451172, 0.55078125, 2.4472656, 1.8154297, -0.796875, 1.4931641, 0.7861328, -2.2714844, -4.1640625, 2.7382812, -0.703125, 0.07397461, -0.2133789, -0.14562988, 1.9541016, 0.43188477, 0.47143555, -3.3164062, -0.1932373, 0.072509766, -1.7470703, -1.8496094, 0.41870117, 0.03994751, 1.6757812, -0.51904297, 1.2529297, 0.54541016, -1.5546875, 1.9833984, -0.24047852, 0.29663086, 1.3115234, -0.73339844, -1.2050781, 0.6738281, -0.49267578, -0.36938477, -1.1123047, 1.8916016, 2.3984375, -0.4267578, 0.36547852, -0.39526367, 0.4729004, -1.1240234, 0.42749023, -0.5258789, -1.1777344, -2.2695312, -2.078125, 0.8496094, -1.4003906, -1.4238281, 0.328125, -0.20581055, -3.2128906, -0.5517578, 3.2773438, -0.51708984, 0.87353516, -1.1347656, -0.8691406, 0.85498047, -0.8701172, 1.6035156, -0.11785889, -0.45996094, 0.06124878, 1.8398438, 0.8574219, 0.05883789, 0.6171875, -0.8408203, -1.2890625, 1.6347656, 1.1982422, 0.048583984, 0.9301758, 1.0078125, -1.1005859, 0.13476562, 2.3085938, -0.91308594, -0.08996582, -0.23168945, -0.9863281, -1.1074219, 0.40112305, -0.19018555, 2.015625, 3.2714844, 1.5253906, 0.40185547, -0.94091797, -2.7558594, -1.9619141, -0.5961914, 0.7709961, -0.48486328, -0.045196533, 1.1152344, -1.0214844, 0.44750977, 0.13378906, -2.4082031, 0.2626953, -0.20532227, 1.1855469, -0.41723633, 1.8417969, -0.78564453, 0.088012695, 0.2644043, 2.4238281, -0.54785156, -0.8808594, 0.42749023, 3.0996094, 1.0566406, -2.1152344, -1.1064453, -2.3261719, -1.1435547, 0.28051758, 1.2753906, 0.9589844, 1.4169922, 0.35375977, -1.2138672, -1.4726562]}, "B09B76PJKX": {"id": "B09B76PJKX", "original": "Brand: PAMASE\nName: Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)\nDescription: Want to make your gas tank durable enough to serve you for a long time?
We sincerely recommend our propane gas tank cover bag to you!

Features
1. Measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder
2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
4. Easy to pick up or place the gas tank and open or close the valve
5. With four ventilation grommets, two side pockets and thick carrying handles

Specification:
Color: Black
Size: 12.5\" x 19.4\"
Material: 600D Oxford Cloth\nFeatures: [Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it's absolutely perfect for placing it next to your outdoor grill or camping stove.\n[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank.\n[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table.\n[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve.\n[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don't strangle your hand at all.\n", "embedding": [0.77685547, 2.703125, 2.7226562, 0.011138916, -0.5859375, 0.41137695, -0.025665283, -0.47705078, 1.4697266, 2.1386719, 1.0351562, 0.79248047, 2.546875, -3.4472656, 1.8134766, -0.3881836, -0.76123047, 2.2148438, 3.8339844, 0.66064453, 3.0996094, 0.86865234, 0.17053223, -0.5996094, 0.9946289, -0.7402344, 2.6113281, -2.4042969, -1.1669922, 0.98583984, 0.609375, -0.54296875, -0.63720703, 2.6464844, -0.63916016, -2.0332031, -0.11401367, -0.3166504, -3.015625, -1.5888672, -2.4335938, -1.5507812, 4.1953125, 0.5053711, -0.84033203, -0.47338867, -1.6806641, -1.5820312, 0.75097656, -2.9433594, -0.703125, 1.7197266, 2.4550781, 0.50146484, -1.2373047, -0.58740234, 2.0605469, -1.4267578, 0.8095703, 1.7919922, 0.30078125, -0.7529297, -1.3701172, 1.9794922, 0.38891602, -1.2353516, -0.023620605, -1.7236328, -0.18310547, 1.4023438, 1.6357422, 1.7128906, 3.3652344, -1.4921875, 0.7446289, -0.3930664, -1.8398438, 1.8134766, 2.0117188, -0.5776367, -0.018844604, 3.265625, -1.0380859, -2.9257812, -1.3398438, -0.49804688, -0.99365234, 0.9614258, 0.04916382, 0.9716797, -2.4414062, 2.2792969, -1.8154297, -4.2578125, 0.29833984, -0.15393066, 3.2695312, 1.6162109, 3.9042969, 1.4003906, -0.30517578, -0.16906738, -1.5429688, 1.7480469, -3.0644531, -1.9072266, 0.33496094, -0.36743164, 0.051452637, 0.26538086, 0.39746094, -1.1416016, 2.8984375, -1.5009766, 0.21655273, 0.390625, -0.16369629, -0.5571289, 2.6796875, 1.9804688, 4.3359375, -0.74609375, 0.5625, -0.6904297, 0.6015625, 0.82958984, -1.6621094, 1.4443359, 1.8447266, -0.7426758, 1.8544922, -0.8286133, 0.30078125, -0.3515625, -0.5336914, -0.70947266, -0.5410156, -1.8544922, -2.75, -0.24243164, -2.5351562, -0.8232422, 0.6635742, -0.17919922, -3.7226562, 0.12023926, -2.2070312, 1.6328125, -1.1132812, -1.7460938, 1.1894531, -1.6425781, -0.5053711, -0.17382812, 2.015625, 0.20629883, 1.4609375, -3.2734375, 2.3046875, 2.0214844, 3.6582031, -1.8369141, -0.38745117, 0.35302734, 1.296875, -3.4746094, 1.9345703, -0.12133789, -0.43652344, 0.66308594, -0.03753662, -3.1972656, 0.12915039, 1.8955078, -0.3251953, -1.0410156, 2.1015625, 1.9462891, 0.8911133, -0.44189453, -3.2773438, -0.9536133, -0.9428711, -0.20336914, -0.012229919, -0.20349121, -2.6972656, -2.0527344, -1.0517578, -0.8769531, -3.4335938, 1.6386719, -1.6025391, 0.68066406, -1.3730469, -3.6894531, -2.140625, -0.5576172, -0.02784729, 1.1796875, -1.5654297, -0.7036133, -0.4975586, 1.4179688, -2.3339844, -1.3408203, 2.5878906, -0.027389526, 1.0400391, 1.8847656, 0.04257202, -0.58251953, 2.2773438, 0.5883789, -1.7167969, -0.16394043, 1.3876953, 0.93603516, 1.8173828, -0.34545898, 0.57128906, -0.3972168, 0.54052734, 2.3164062, 1.84375, 3.5878906, 0.9277344, 0.50097656, -1.4931641, -1.8837891, 0.3466797, 1.4755859, -0.79833984, 0.3564453, -0.57177734, 2.2714844, -0.7363281, 0.32421875, -0.35375977, -0.57714844, 0.12426758, -1.2695312, -2.1542969, -1.6884766, 0.24841309, 1.7705078, 0.22668457, -0.58496094, 0.6035156, 0.18640137, 1.3349609, -1.0507812, 1.3173828, -1.7714844, -1.453125, 1.8486328, 1.6933594, 1.5449219, -0.20141602, -2.5058594, 0.30151367, 2.0722656, -0.08959961, 1.7607422, -0.88378906, 1.3925781, 0.35424805, -0.89160156, -2.2050781, 1.3740234, 0.96875, 1.4707031, 1.7353516, -0.7368164, 1.3046875, -0.21447754, -1.6601562, 1.2949219, 0.49316406, 0.70703125, 1.2070312, -0.76953125, 1.4414062, -4.3710938, 0.61083984, 0.34960938, 3.2265625, 0.2685547, -1.4111328, 0.9589844, 3.0449219, 0.2734375, 0.6669922, 1.9882812, 3.7949219, 0.0020866394, 3, 0.25830078, -1.296875, -0.17993164, -0.09967041, 0.84375, -1.3359375, 1.125, 0.42333984, -0.9863281, -0.66845703, -0.58496094, 0.3310547, 0.16125488, 0.2590332, -0.09655762, 0.54248047, 0.62402344, -2.1816406, -1.40625, 3.40625, -1.7207031, -1.5595703, 2.9199219, 0.0073928833, 2.2226562, -1.3056641, -2.5488281, 0.77783203, -0.13012695, -1.8613281, 1.8535156, 0.85302734, 1.1113281, 0.64208984, -2.4101562, 1.9238281, -1.0107422, 0.027297974, -0.62353516, -3.15625, -0.7348633, -0.8701172, -2.3339844, 0.58740234, -2.3847656, -1.5800781, 2.3027344, 1.5859375, 0.23364258, -0.6064453, 1.2890625, -0.93408203, -1.2373047, 0.59472656, 2.2207031, -1.2060547, -2.7167969, 0.18273926, 0.47387695, -1.6357422, 0.8803711, -0.6972656, 0.29370117, -1.6513672, 1.8974609, 1.5693359, -0.7050781, -1.359375, -0.80078125, 1.0214844, -4.1914062, 0.70214844, -1.9765625, 1.3808594, -3.109375, -1.2851562, -1.3212891, -2.1601562, 1.0185547, -1.96875, 3.2207031, 1.6855469, 0.067871094, -1.1416016, -2.2675781, -0.40820312, -1.0673828, -2.4414062, 0.1817627, 1.4355469, -1.4414062, -1.4404297, -3.9941406, -0.07672119, -1.359375, -1.703125, 0.80029297, -0.43164062, -1.4140625, 0.23669434, -0.6772461, -1.3730469, -1.8779297, 1.2539062, 0.5473633, -3.03125, -0.5629883, -0.6279297, -1.015625, 0.4038086, -1.4140625, 1.1660156, -1.3125, 1.3896484, 2.0644531, -1.2958984, 1.8476562, -0.45996094, -2.875, 0.050750732, 3.6152344, 1.1328125, 1.9414062, -0.68115234, -0.71972656, -0.91503906, -0.9086914, 1.9755859, 2.9394531, 0.94433594, 1.5947266, -0.86621094, 1.3818359, -1.5302734, -0.18725586, 0.29736328, 1.2910156, 2.7304688, -1.1035156, 1.2128906, 1.03125, 3.5214844, -3.3242188, -0.6923828, 1.2832031, -1.1660156, 2.0292969, 0.4609375, -1.0107422, -0.2467041, 0.32348633, 2.578125, -0.40014648, 1.7353516, -0.32421875, 1.4667969, 0.64501953, 0.23925781, 0.6069336, 2.0429688, 0.34106445, -1.2851562, 2.2167969, 1.2275391, -2.1953125, 0.69921875, 0.3449707, 0.3227539, -0.2553711, 2.1503906, -0.34716797, 1.4882812, 1.1630859, -0.13476562, 0.11138916, -0.86328125, 2.2324219, 0.046905518, 1.28125, -0.97265625, -0.89404297, -1.9355469, -0.18518066, -2.5175781, 2.3007812, -0.009597778, -0.9604492, 2.1894531, -2.8691406, -1.1220703, -0.953125, 2.9433594, -0.97998047, -0.5209961, 1.0654297, 1.5488281, -2.6035156, -2.546875, -1.0175781, -1.4648438, -1.2080078, 4.015625, 2.3632812, -1.9599609, 0.96435547, -1.0107422, 1.8535156, 2.7128906, -0.12017822, -0.25878906, -1.5556641, 0.5083008, -1.7666016, -0.5078125, 0.36157227, 1.4804688, -3.7460938, -0.051208496, -0.6503906, 1.5332031, 2.5332031, 0.5673828, -0.55615234, -0.8769531, -1.3359375, 2.4726562, -0.46240234, 2.0332031, 1.1083984, 0.111450195, 1.6171875, -1.1826172, -0.546875, 0.28222656, -3.2617188, -0.8466797, -0.61621094, -0.97998047, 3.2675781, -0.33203125, 1.1435547, -0.36669922, 0.6699219, -4.2226562, -1.6445312, -1.5244141, 1.2060547, -2.4394531, -1.3994141, 0.34350586, 0.44677734, -2.2675781, -1.2480469, 1.03125, -1.9726562, -1.3212891, -0.6796875, 1.5058594, 0.68652344, -1.2490234, 0.78759766, -0.8222656, -0.083984375, -1.6113281, -0.17053223, -1.6914062, -2.1875, 3.4042969, 0.47509766, -0.20056152, 0.31591797, 1.9707031, 1.0683594, -0.51171875, 0.08288574, 0.19006348, 1.5292969, -0.82177734, -3.7734375, -0.29711914, -1.8662109, 1.5488281, -1.1210938, -2.5214844, 0.5161133, 0.14282227, -0.061676025, 2.0390625, 1.8505859, 1.0390625, -0.37060547, -2.9023438, 2.9726562, 0.9472656, -1.3017578, -1.4101562, -0.5161133, -0.44995117, 0.03930664, -1.8837891, -3.1875, 0.43774414, 0.027252197, 1.3154297, -1.7441406, 2.1425781, 1.4287109, 2.5722656, 2.5214844, -0.11279297, -0.23217773, 2.0683594, 1.8193359, 1.2880859, -0.3491211, 1.4902344, 0.42260742, 1.890625, 1.1875, -2.6972656, -0.9013672, 0.40722656, -2.1542969, -1.2285156, 1.2988281, 1.3505859, -2.0839844, -0.72216797, -2.5507812, -2.2441406, 3.7558594, -1.4873047, 1.8007812, -0.31347656, -0.71484375, -0.057006836, 3.2324219, 2.4902344, -0.0132369995, 1.5410156, -0.40551758, -0.5649414, 0.53466797, 1.1484375, -0.17285156, 1.1044922, -1.6054688, -0.2578125, 0.11730957, 1.4101562, -1.1669922, -1.1123047, 0.69140625, 2.9863281, 1.0380859, 1.4716797, 1.4238281, 0.14672852, 1.5576172, 0.9116211, -0.03286743, -0.30786133, -0.24658203, 0.76464844, 2.3066406, -1.6962891, -2.453125, 1.1230469, 0.28735352, -0.13342285, 2.3652344, 0.06506348, -2.3984375, 0.42114258, -2.7304688, -2.9648438, -0.45458984, -0.3630371, -1.0791016, -0.5131836, 1.8417969, 0.54541016, 1.0380859, 4.4023438, 0.44189453, -1.7304688, 0.94970703, -0.25610352, 1.0263672, -2.15625, -1.1396484, -3.3984375, 1.0625, -0.86328125, -0.75927734, -0.055786133, 0.5961914, 1.9716797, -2.3671875, -0.640625, 0.111206055, 0.8823242, -1.8886719, -0.6904297, 2.6679688, -0.56933594, 1.0400391, -0.5932617, -0.5205078, -0.91796875, 1.6630859, 1.140625, 0.7573242, -1.3730469, -0.5053711, -3.8828125, -5.8164062, -1.9384766, 0.56396484, -1.0302734, 0.8496094, -2.2792969, -0.66064453, 1.4550781, -0.85302734, 0.8261719, -1.7509766, 1.5683594, -1.0839844, -2.1328125, -0.9326172, 0.034729004, -0.02444458, 0.49975586, 0.0019035339, -0.36889648, -1.8964844, -2.5820312, -3.3339844, 0.3696289, -2.0742188, -0.56396484, -0.3713379, -1.2070312, 1.1259766, 0.28198242, 1.3447266, -0.42163086, 1.828125, -1.1191406, -0.06213379, 1.2841797, -0.98339844, -1.7548828, 1.4580078, -0.51416016, 3.2675781, 2.0507812, 0.69140625, -3.3710938, 1.5195312, -0.13122559, 0.99902344, -0.19360352, 1.1542969, 1.4521484, -0.58740234, 1.2558594, 3.0488281, -0.7080078, -2.6582031, -1.1503906, -0.9033203, -1.1142578, -1.265625, -1.5585938, -1.3066406, -0.067871094, 1.5302734, 1.1357422, 0.8588867, 1.4980469, 1.2226562, -2.453125, 1.5302734, -1.6181641, 1.2470703, 1.4443359, -1.3974609, -2.5839844, -3.4824219, 3.3164062, 0.50439453, -1.5361328, 0.059051514, -0.14611816, -0.56933594, 2.1015625, -0.3100586, 1.5048828, 1.2998047, 1.3154297, -1.9804688, 1.7978516, 1.90625, 0.16394043, 1.1796875, -0.17797852, 0.3642578, -0.44384766, 0.44458008, 0.47753906, -3.6757812, -1.3261719, 0.0070266724, 0.64990234, -0.84814453, -0.24621582, -0.15368652, -2.1601562, 0.2746582, -1.2294922, -1.1201172, -3.4003906, 1.2275391, 0.7680664, 0.27514648, 1.6953125, 1.3183594, -2.2910156, -0.22924805, 2.1484375, -1.0556641, -1.7919922, -1.6660156, -1.0478516, -0.26611328, 1.1132812, -2.9511719, 1.0732422, 1.0888672, 1.4277344, -1.4638672, 1.7792969, 1.2666016, 0.013809204, 1.4863281, 3.1230469, 5.0742188, -0.39990234, 1.6816406, -0.34179688, 0.80908203, 3.0566406, -1.2441406, 0.24523926, 1.5761719, 1.6992188, 2.5800781, -1.0761719, -0.87841797, 0.9223633, -1.5205078, -0.6269531, 1.1787109, 0.7739258, -2.6464844, 1.1826172, -1.0507812, -1.1728516, 2.5957031, 0.61328125, -1.7529297, -1.8291016, -0.32739258, -0.2692871, 2.4277344, -1.7138672, 0.52246094, 0.8959961, 0.59033203, 1.6894531, -0.1427002, 1.1992188, -2.1933594, -2.8203125, -0.75634766, 2.7714844, 0.7832031, 2.4335938, -1.0878906, 0.38989258, -0.49487305, 2.2753906, 1.8613281, 0.5698242, 2.4785156, -2.6542969, 2.2753906, 2.5839844, -2.4804688, 0.53125, 0.69970703, 0.77734375, -4.0585938, -0.5205078, 0.47094727, 0.1270752, 0.13720703, -3.5878906, -1.6435547, -1.9052734, 1.1279297, -4.1523438, -0.9555664, -0.95703125, -2.3203125, -0.042633057, 1.6992188, -1.7695312, 3.4804688, 0.55322266, -0.07373047, 1.2441406, 1.9238281, 0.7001953, -0.8022461, -0.6245117, 0.9277344, 0.29516602, -1.3417969, 2.3847656, 2.2734375, -0.07733154, -0.6298828, 1.9208984, 2.1289062, 1.6005859, -0.3095703, -0.6777344, 2.4492188, 0.6557617, -0.22546387, 1.515625, -0.44262695, 1.1738281, 0.93115234, -0.17346191, -0.2998047, -0.77978516, 0.3256836, 1.3007812, -4.453125, -1.2041016, 0.5595703, -0.9291992, 0.6508789, 0.46923828, -1.6396484, -0.32006836, -0.3762207, 0.41064453, -3.9570312, 0.4794922, -2.5722656, 0.64746094, -0.67529297, -1.5761719, -0.10144043, 1.0341797, -1.8681641, 0.2902832, 1.3701172, -0.5498047, -0.57910156, -0.9926758, -0.10101318, 0.36987305, 0.73339844, 0.45410156, -0.21716309, 0.14025879, -1.0292969, 0.51708984, -1.4833984, -1.2197266, 0.29638672, 2.859375, 2.0332031, 1.0214844, 1.3320312, -2.3867188, 0.097717285, -1.9716797, 1.7177734, 0.7011719, -0.16796875, 0.18078613, 1.5810547, 4.1171875, -2.1542969, -1.3554688, -0.30273438, 0.55615234, 2.0234375, -1.0947266, 0.5361328, 0.85595703, -0.57714844, 0.69140625, 4.5195312, 4.9257812, -1.0097656, 1.1142578, 1.9580078, -3.3417969, -2.6738281, -0.46411133, -0.19274902, -0.49951172, 0.828125, 2.3476562, 2.609375, 0.7397461, -0.5395508, -2.2929688, 0.22839355]}, "B07B8SN67W": {"id": "B07B8SN67W", "original": "Brand: Blaze Grills\nName: Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane\nDescription: Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you're hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.\nFeatures: DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output\nSTAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment\nKEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements\nPUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start\nEASY CLEANUP: Full-width drip tray offers quick and easy cleanup\n", "embedding": [-3.7304688, 1.9755859, 2.34375, -0.21826172, -0.421875, -0.28344727, 1.1445312, -0.8300781, -0.77197266, 2.3769531, 0.08068848, -0.6123047, 0.23730469, -2.0722656, -2.203125, 0.1685791, 0.2788086, -0.5307617, 2.0546875, 1.0439453, 0.7890625, 1.0791016, 1.4951172, -0.6660156, 0.8496094, -0.6611328, 2.4746094, -3.7226562, -1.8623047, -1.0146484, 2.4316406, 0.31079102, -0.5131836, 0.98046875, -3.375, 0.2409668, -0.66845703, 1.0898438, -2.9453125, -1.40625, -1.5351562, -0.98046875, 2.5351562, 1.4609375, -2.4296875, 0.12219238, -0.39160156, 0.03161621, -0.71777344, -1.1181641, 0.5209961, 1.2382812, 0.012924194, 0.32666016, -1.5195312, 0.83935547, 1.2666016, -2.2714844, 2.6679688, 0.85791016, 2.9238281, 1.7021484, -3.1269531, 2.15625, -0.97802734, -0.8491211, 0.48706055, -0.8359375, -0.099975586, 0.8310547, -0.5361328, 0.082214355, -1.3349609, -0.29785156, 0.9169922, -1.8818359, -1.1445312, 2.3242188, 2.0488281, 0.29345703, -2.2890625, 4.0859375, 0.83740234, -1.2695312, -0.4177246, 0.5366211, -1.375, -0.8989258, 2.7832031, 0.3774414, -2.125, 1.2490234, -1.8417969, -3.0410156, 1.4980469, -2.4589844, 3.3046875, 0.0057525635, 0.5859375, 1.6191406, -2.3886719, 0.8232422, -2.390625, 1.5351562, -2.6230469, -0.88916016, 2.6132812, 1.3779297, -0.93408203, 0.86083984, -2.7421875, 1.2333984, 2.1640625, -0.2454834, 1.1044922, -0.8691406, -0.32202148, 1.3349609, 3.109375, 1.9814453, 3.1152344, 0.56933594, 1.0517578, -1.4912109, 1.46875, 1.5722656, -0.109802246, 1.7373047, 3.4707031, -1.8808594, -1.0419922, -3.2832031, 2.3398438, 0.030944824, -0.89404297, -1.6494141, -1.4912109, -1.1103516, -2.9042969, 0.6201172, -1.6513672, 1.78125, 2.3847656, -0.5708008, -3.1035156, 0.05441284, -0.25634766, 1.0878906, -0.23242188, -2.7011719, -0.39868164, -1.4345703, 1.2832031, -1.4990234, 2.0429688, -0.68359375, -0.5854492, -1.3378906, 4.4179688, 0.7817383, -0.98095703, -2.4902344, 0.31982422, 2.1464844, -0.85498047, -2.9101562, 0.3371582, 2.515625, -0.28857422, 1.9013672, -0.8173828, -2.5039062, -0.49780273, -0.8457031, 1.0546875, -2.1914062, -1.2675781, 1.4599609, -0.3713379, -0.8178711, -0.6928711, -1.9482422, 1.1748047, 1.5019531, 1.2646484, -2.5117188, 1.3447266, 0.36547852, 1.3261719, -2.3554688, -1.875, 1.2568359, 0.8149414, -0.6386719, -0.35058594, -0.39990234, -1.0136719, -1.9560547, 0.9223633, -0.73583984, 0.30517578, -1.5664062, -0.3779297, -0.07751465, -2.3222656, -2.1699219, -0.8256836, -0.5058594, 1.5634766, 1.8212891, 0.9848633, -0.9086914, 2.9394531, -1.6845703, -0.52001953, -1.1318359, 1.4853516, -0.11657715, 2.5585938, 2.1054688, -0.7158203, -2.6425781, 1.4453125, 3.8730469, -0.084472656, 1.0966797, 1.5390625, -0.22827148, -1.7119141, -0.15808105, 1.5419922, 2.2460938, 0.7260742, 1.1835938, -0.7421875, 2.84375, 0.73095703, -2.5195312, -0.4404297, 0.87060547, 1.8203125, -1.5722656, -1.0869141, -1.2851562, -0.8911133, 0.7480469, -1.4150391, 3.2109375, 0.98339844, -0.11138916, -0.56933594, -1.328125, 2.6933594, 1.0429688, -0.3474121, -1.3505859, -0.42749023, -0.12878418, -2.4511719, -3.3164062, 2.1289062, -0.19470215, -0.91259766, -0.09991455, 0.014022827, -0.004360199, 2.3574219, 1.6074219, -2.8945312, 0.064819336, -0.29101562, 0.9433594, 1.8349609, -0.6333008, 1.5585938, 1.1826172, -0.8173828, 3.53125, 0.8769531, 0.9902344, 0.58935547, -1.1279297, 2.7011719, -1.0107422, 0.43701172, 1.9199219, 2.4902344, 0.03564453, -2.3242188, -0.3005371, 4.9414062, -0.59765625, -1.6630859, 2.1914062, -2.7929688, 1.3154297, 0.009414673, 0.47387695, 1.0664062, 0.27856445, 1.6796875, -0.23339844, -0.32739258, 0.7705078, -1.5498047, -1.1015625, 2.0371094, -1.4355469, 0.50927734, 1.4238281, 2.1601562, 0.67578125, -3.1816406, -3.0527344, -1.1357422, -1.7128906, 2.25, -3.3828125, 2.0039062, 1.7070312, 1.0478516, 1.8339844, -1.1992188, -1.1796875, -0.3059082, -0.81103516, -0.45239258, 0.097717285, 0.024261475, -1.328125, -1.8701172, -1.2158203, 0.30810547, -0.90478516, -0.78027344, -2.2695312, -1.0097656, -1.9716797, 0.43652344, -2.4863281, 0.5800781, 1.1982422, -2.3535156, -0.5810547, -1.2685547, -3.2695312, -1.7128906, -1.125, -2.5410156, -1.0185547, 0.23449707, 0.4489746, -1.8955078, -4.3867188, 1.0986328, -2.859375, 0.74316406, -0.36328125, -0.9394531, 0.5546875, -2.25, -0.734375, 0.11651611, 0.5366211, 0.5410156, -1.7158203, -0.46044922, -4.4648438, 0.04269409, -1.2314453, 0.5058594, -3.0175781, 0.55908203, -1.640625, -1.4453125, -1.6279297, -0.6567383, 2.4765625, -0.4675293, 0.8857422, 0.32788086, -1.1025391, 1.0771484, 0.8105469, -3.5097656, 0.37719727, 0.14978027, -1.9472656, -1.6855469, -3.3652344, -0.22753906, 0.06286621, 0.65527344, -1.5380859, 1.5947266, -0.6533203, 1.015625, -1.4570312, -1.4501953, 0.46142578, -0.25073242, -2.921875, -2.0097656, -2.4921875, -1.9316406, 0.14538574, -2.2460938, -0.022506714, 1.3271484, -0.3737793, -0.30517578, 2.4257812, -0.8041992, 1.0449219, -1.921875, -2.1484375, 1.6542969, 0.76904297, -2.3964844, 3.0175781, -1.6933594, -1.4990234, -3.7851562, -1.0517578, 3.0761719, -0.06652832, 2.1445312, -0.25610352, -0.78271484, 0.7182617, -1.0566406, 0.16345215, -2.0683594, -0.56396484, 3.5351562, -1.9648438, -2.3847656, 0.83935547, 3.1972656, -2.9960938, -1.1923828, 3.5683594, 0.2919922, 1.0947266, 1.6162109, 1.7763672, 1.1650391, -2.2011719, -1.1386719, 2.0566406, 1.3486328, 0.36865234, -2.4902344, 0.9790039, -0.42871094, 0.36938477, 1.1572266, 1.1835938, 1.8945312, 3.4199219, 0.51660156, -1.9697266, -0.35107422, 0.4638672, 1.7294922, 1.2441406, 2.7636719, -1.5302734, -1.4785156, -1.6982422, -1.3085938, 1.9082031, -1.3251953, -1.125, 3.0507812, -0.2854004, 0.71240234, 0.5698242, 0.15600586, 0.20605469, -2.0957031, 1.4384766, 0.017700195, -0.62646484, 0.7368164, 0.16503906, 0.054473877, -2.3867188, 1.09375, -1.1103516, -2.046875, 0.03781128, 1.7207031, 0.7207031, -2.859375, 0.030441284, 0.64746094, -0.9423828, 3.3808594, 2.2148438, 0.017608643, -0.11138916, -1.3808594, 2.8144531, 0.359375, -1.6621094, -0.44140625, -1.2998047, 0.3955078, 0.66845703, 1.2412109, 1.6279297, 1.3085938, -0.7290039, -0.84765625, -3.3867188, 1.0507812, 0.4951172, -0.4855957, -3.3417969, 2.1816406, 0.52978516, 0.765625, -0.69433594, 2.7402344, 0.101989746, -0.50390625, 2.4726562, -3.7167969, -1.3994141, -2.8300781, -3.8496094, 0.8256836, -1.0527344, -0.6459961, 1.5117188, -0.5732422, -0.5073242, 1.0058594, -0.625, -3.3535156, -1.7294922, -1.8925781, -0.97265625, -1.375, -2.4628906, 0.46289062, 0.7553711, -1.0761719, -1.9501953, -0.030303955, 0.69091797, 1.9501953, 2.359375, -1.4453125, 2.2226562, -1.4492188, 0.40454102, 0.9970703, -0.44213867, 0.2758789, -2.1308594, -0.33203125, -2.8945312, 0.56591797, -0.48608398, 1.0771484, 1.5107422, 2.9179688, 1.0332031, 0.6899414, -1.4345703, 2.4765625, 0.94921875, 0.3203125, -2.0429688, -2.359375, 1.9335938, 1.6992188, 0.5883789, -0.64697266, -0.5839844, -1.5390625, 0.78759766, 0.4255371, 1.0351562, 2.0722656, 1.1826172, -2.9921875, -0.43164062, 1.1748047, -1.5751953, -1.6357422, -0.88134766, -0.19616699, -0.9790039, 1.9169922, -2.5175781, 0.8276367, -0.07574463, -0.34033203, -2.9140625, 2.5507812, 2.3144531, 2.3125, 3.1972656, -0.52734375, -2.7148438, 2.78125, 1.2207031, -1.2333984, 1.3984375, -1.1152344, -0.29467773, 2.3964844, -0.22827148, -0.86328125, -0.36816406, 1.8730469, -1.4775391, -1.8916016, -0.6660156, 0.11553955, 0.5488281, 0.2479248, 3.1425781, 0.78027344, 2.8496094, -1.5615234, -1.9414062, -0.3413086, 1.4375, -0.31298828, 0.61621094, -0.23999023, -0.43798828, -0.098083496, 2.3945312, 1.2998047, -1.1113281, 1.1582031, 0.26464844, 3.1054688, 0.58984375, -0.6972656, -0.94921875, 0.80566406, -0.8535156, -1.0048828, 2.4492188, 2.6855469, -0.18066406, 1.7646484, 0.8745117, -1.9550781, 2.3964844, 1.3603516, -4.0234375, -1.6357422, 1.328125, -1.6181641, 0.16125488, 0.8979492, -3.3359375, 0.23205566, 2.1953125, 0.23413086, 1.0751953, -0.18017578, -1.1259766, 0.12731934, -2.4296875, -0.95751953, -2.0390625, -0.30004883, -1.7988281, -0.35180664, -0.105285645, 0.44189453, 1.2587891, 1.3183594, -0.9941406, -1.0683594, 2.4882812, -0.56396484, 1.0283203, 0.5625, -0.24584961, -2.0410156, 0.002960205, 2.7109375, 0.8383789, 2.1660156, 1.8046875, 2.5410156, -2.0507812, 0.6425781, -1.4101562, 3.8613281, -2.4511719, -0.38598633, 3.0273438, -1.0166016, -2.0488281, -2.9296875, 0.9458008, -0.9477539, 2.34375, 1.0898438, -0.8125, -0.5004883, 2.0078125, -2.0996094, -5.3007812, -0.22131348, 0.13391113, -0.5019531, 0.9145508, -1.0527344, -1.1015625, -0.8173828, 1.1318359, 0.15991211, -1.0947266, 0.7392578, -1.7626953, 0.3972168, -1.7412109, -0.18200684, 1.9052734, 0.101501465, 0.04031372, 0.96435547, 0.10406494, -3.6640625, -1.4277344, 0.97509766, -1.5908203, 0.30737305, 1.3183594, -0.023101807, 0.6591797, 2.4121094, -1.171875, -2.4746094, 0.7807617, -1.7158203, 0.27514648, 0.24975586, -1.2900391, -0.36450195, 0.6333008, 0.1809082, 0.32128906, -1.1425781, -2.0859375, 1.1513672, 0.7758789, -0.84814453, 0.8935547, 0.86865234, -1.0195312, 1.1337891, 0.11175537, 1.2041016, 1.0048828, 0.7910156, -1.1386719, -2.609375, -2.8613281, 0.7128906, -2.6191406, 0.7573242, -1.5253906, 2.0664062, 2.5351562, -0.18933105, 2.5371094, 0.7939453, -0.53271484, -1.4970703, 0.8261719, -0.38305664, 4.1367188, 2.0644531, -1.359375, -1.0615234, -2.5390625, -0.04852295, 0.4753418, 1.0615234, -2.4414062, 0.8725586, -0.29052734, 0.5107422, 0.27856445, 2.4785156, 2.65625, 1.2978516, -1.0195312, 0.88671875, 2.6035156, 0.58496094, 1.7480469, -0.27294922, 0.7792969, -0.33081055, 4.3398438, 0.89208984, -1.6269531, 1.2314453, -1.6796875, 0.94189453, 1.5634766, -0.8857422, -1.8115234, -2.2890625, -1.3447266, -1.4238281, -0.8173828, -1.6210938, 2.5703125, 1.3916016, -0.88916016, 0.2388916, 3.2773438, -0.734375, 1.7988281, 2.6230469, 0.9941406, 1.9980469, 1.2294922, -0.3503418, -0.8496094, 1.6601562, -2.5664062, 0.3762207, -0.10412598, -1.9775391, -2.34375, 1.4492188, 0.7871094, 2.1972656, -0.9555664, 1.1904297, 1.5361328, 2.1933594, 4.0351562, -0.7792969, 1.9755859, 1.1347656, -0.29345703, 0.23937988, 1.7314453, 1.8369141, -0.80566406, -0.6274414, -0.3605957, -1.7685547, -0.89941406, -0.28759766, -0.4296875, 2.4296875, -3.6855469, 2.7871094, -0.17102051, 1.3564453, -0.3232422, -0.34033203, 0.69433594, -1.2578125, -1.53125, 2.4433594, 1.5634766, -1.0615234, 1.7978516, -1.6582031, -1.3144531, 0.25463867, -3.3085938, 0.7373047, 0.27563477, -1.0996094, 0.08850098, 2.1914062, 1.3798828, 1.8339844, 0.4753418, 2.0761719, 1.3837891, -0.1694336, 1.0283203, -0.86035156, -0.5996094, 0.9189453, 3.9179688, -1.7734375, -1.9951172, 0.5527344, -0.48291016, -3.453125, -4.5546875, 1.6826172, 1.9277344, 2.0117188, 1.6240234, -2.1035156, 3.890625, -1.2519531, 1.9033203, -2.5175781, 1.8886719, -0.6713867, 0.066223145, -1.0087891, -0.29418945, 0.34887695, 2.3515625, 1.3144531, -1.1328125, 2.4492188, 0.6323242, 1.9121094, 0.984375, 2.1894531, 0.9189453, 0.099243164, 0.75634766, 2.859375, 1.3105469, -1.6113281, -0.9291992, 2.0625, 0.50634766, 1.1787109, 2.0625, -2.2050781, 0.81933594, -1.4335938, 0.12976074, 0.34228516, -1.34375, -1.2607422, 0.6743164, -1.1357422, -1.0507812, -1.953125, 0.2770996, 1.6601562, 0.14794922, 0.15759277, 1.0791016, -0.8588867, 2.0371094, 1.2470703, -0.7294922, -0.5410156, -1.3603516, 0.22814941, -1.3476562, -1.5341797, -0.033081055, 1.1044922, 0.95703125, -2.3398438, -0.51464844, -1.5136719, -0.37963867, 0.15979004, 2.2246094, 0.45776367, 0.6958008, 1.6650391, -0.07623291, -0.29052734, 2.3828125, -0.39794922, 0.8491211, -2.6503906, -1.296875, -1.0117188, 0.7338867, -1.4882812, 1.1923828, 3.8183594, 2.6835938, 0.53515625, -1.7587891, -2.5898438, -1.03125, 0.13342285, 1.2871094, -0.069885254, -0.81884766, -0.6635742, 0.26831055, 1.3818359, -0.24523926, -0.46191406, 0.7260742, -0.92285156, 0.79248047, 0.7910156, 2.015625, -1.6152344, 1.1914062, -1.71875, 1.6787109, 1.96875, -0.22607422, 3.5742188, 2.8789062, 0.70410156, -3.046875, 0.57958984, 0.40698242, 0.36547852, 0.73291016, 1.4492188, 1.5986328, 2.1289062, -0.058502197, -2.4316406, -1.3564453]}, "B08KHCX3CW": {"id": "B08KHCX3CW", "original": "Brand: Dumble\nName: Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose\nDescription: \nFeatures: \n", "embedding": [-0.3930664, 0.09857178, 0.40234375, 0.45092773, -1.2685547, -0.43237305, 0.46044922, -1.7568359, 2.0136719, 0.33496094, 1.0078125, 2.4648438, 1.8115234, -2.4277344, 2.2558594, -1.1220703, 1.5986328, 2.171875, 2.6542969, -0.33642578, -0.12731934, -0.6958008, 2.875, -0.46728516, 0.2944336, -0.6269531, 3.7441406, -1.2626953, -3.3730469, 0.25756836, 1.2128906, -0.34350586, -0.5292969, 1.2285156, -1.40625, -1.6611328, 0.6020508, -0.7602539, -2.2890625, 0.7631836, -1.9726562, 1.1367188, -0.6870117, 0.6870117, -3.2148438, -0.47094727, -0.47094727, -0.67822266, 0.8359375, -0.06365967, 1.0751953, -0.31420898, -0.22839355, 0.24365234, 0.37963867, -0.27856445, -0.77197266, -2.6484375, 1.3134766, 1.4160156, 0.9848633, 1.5566406, -1.8447266, 0.27441406, -0.72753906, 1.5957031, -0.3725586, 1.0634766, 0.72509766, -0.024124146, 0.4182129, 1.4658203, 0.12902832, -1.2314453, 0.20605469, 1.140625, -2.8632812, -0.06500244, 1.9824219, -2.46875, -0.9746094, 1.2001953, 0.59716797, -1.4863281, -1.5654297, -1.0507812, -1.4990234, -0.9628906, 1.3125, 0.52978516, -3.7675781, 1.8808594, -1.8359375, -4.4804688, 1.0283203, 0.78466797, 0.40795898, 0.24475098, 1.8720703, -0.9267578, -1.7861328, -1.0205078, 3.4179688, -0.79052734, -1.4941406, -1.6865234, 0.32104492, 2.1171875, -1.7822266, 0.56347656, -1.3847656, 0.93896484, 2.3144531, 0.24450684, 0.8198242, -1.5439453, 1.0292969, 1.3554688, 2.8378906, -0.052703857, 2.0839844, -2.8945312, 1.3496094, 1.0537109, 1.4902344, 0.6401367, 0.7348633, -0.56152344, 1.3935547, -0.18981934, 2.6347656, -0.43237305, 2.453125, 1.2861328, 2.0976562, -1.6757812, 0.36889648, -2.4511719, 0.70166016, -2.59375, -3.2988281, 0.24023438, -0.08477783, -0.89746094, -2.9316406, 0.093566895, -1.3896484, -0.8232422, 0.96435547, -3.671875, -0.93310547, 0.51416016, 0.6484375, -1.2558594, 0.05682373, 1.5478516, -0.16760254, -0.50146484, 1.9931641, 1.6191406, -1.3808594, 2.4101562, -2.0058594, 1.9873047, -0.80322266, -2.5078125, 0.7495117, -0.38598633, -1.1416016, 0.9370117, -1.8759766, -2.71875, -1.3808594, -0.5102539, 0.30444336, -0.79785156, 2.046875, -0.20153809, 0.74658203, 0.38671875, -3.2265625, -0.8066406, -0.44848633, -3.09375, 3.453125, 0.3696289, 1.3222656, -1.8193359, 0.5019531, 0.6508789, -1.0244141, -1.0751953, -0.84814453, 2.1113281, -1.3574219, -1.7236328, -2.2441406, -1.5527344, 2.4375, 2.4765625, 0.28930664, -1.2539062, 1.7861328, -0.12371826, 0.30371094, -3.0175781, 3.3828125, -0.027160645, -0.5463867, -0.39526367, -0.22912598, 0.024215698, 2.8945312, -0.011260986, -1.0410156, -1.8564453, -0.3605957, 1.2226562, 2.265625, 1.3857422, -1.5292969, 0.55029297, -1.0087891, -1.8935547, 1.2763672, 0.28271484, -0.61376953, 1.7734375, -2, 0.32226562, 1.6748047, 3.8945312, -1.2392578, -1.9960938, 1.0898438, 0.9707031, -0.17663574, 0.5703125, 0.9423828, 0.9448242, 0.8022461, -0.90966797, -2.8320312, -0.61816406, 1.2724609, -0.20263672, -0.83447266, 1.2490234, -0.43847656, -0.35131836, 0.9033203, 1.34375, -1.1943359, -0.5551758, -1.1005859, -1.2753906, 0.7265625, 0.0881958, 0.58984375, -0.6088867, 1.7529297, -1.4755859, 0.45336914, 2.1132812, 0.18347168, 2.0898438, 1.6689453, -1.9755859, -0.43774414, -1.1748047, -2.0976562, 3.8203125, 2.03125, -0.60498047, -0.64697266, 1.5595703, -3.375, 0.4248047, -1.5439453, 1.7880859, 0.20275879, -0.056274414, 1.4472656, -1.4570312, 0.7416992, -0.7348633, 0.2619629, 0.83447266, -3.2636719, -1.0869141, 3.5898438, -0.49487305, -1.1015625, 1.4609375, 1.2568359, 0.85595703, 1.9199219, 0.05596924, 0.63720703, 0.18981934, 1.4023438, 0.94189453, -1.1689453, 0.67333984, 0.9921875, -1.3203125, -1.3359375, 1.7949219, -0.34570312, -0.33325195, 0.7578125, -0.7050781, -1.2939453, -0.19934082, -1.3710938, -0.40649414, -0.6147461, -1.7148438, -0.9453125, -0.25219727, -0.42700195, -0.35058594, 0.6352539, 0.008003235, 2.1738281, 1.0410156, -2.0839844, -0.53466797, 1.8710938, 1.3798828, 0.18701172, -0.8203125, -2.1328125, -1.1308594, -1.3798828, 0.7753906, -2.8828125, -4.3203125, 1.6816406, -1.6748047, -0.9355469, -0.16809082, 1.4462891, 3.3730469, 2.7226562, -0.014831543, -1.6347656, 0.97509766, -2.484375, -1.7080078, 1.0068359, 1.0986328, -1.1845703, -3.4863281, -1.4873047, 0.5161133, 0.15258789, 1.6347656, -1.5986328, 0.91552734, 1.8925781, -0.5019531, 0.13452148, -1.0302734, -0.16711426, -0.43164062, 1.5683594, -2.5664062, 1.9580078, 1.7792969, 1.3945312, -0.8432617, 1.1601562, -0.8183594, -0.9926758, 0.52490234, -0.5908203, 3.1191406, -0.95214844, 0.099121094, -1.1210938, -1.7060547, 1.5185547, -1.8486328, -3.578125, 0.7915039, -1.0595703, -1.5185547, 0.09844971, -2.7558594, 0.7397461, 0.9838867, 0.88671875, 0.21166992, -1.7060547, 0.29516602, 0.98339844, -0.21203613, -1.546875, 0.12145996, 0.11975098, -0.65283203, -1.9414062, 2.4941406, 1.4248047, -0.12939453, -0.5732422, 0.41235352, 0.5957031, -1.1210938, -0.43530273, 0.8120117, -0.0002270937, 1.5244141, -0.006088257, -2.6640625, 0.8852539, 0.23217773, -2.2050781, 1.2060547, -0.52197266, -0.48461914, -0.07342529, -1.2138672, 2.4003906, 1.2490234, 2.7109375, 0.578125, 0.6484375, -1.0556641, -0.57910156, -3.1230469, 0.020812988, 2.2578125, 3.6679688, -2.390625, -1.0585938, -0.41748047, -0.31054688, -2.7578125, 0.7011719, 1.4365234, 0.58740234, 1.1787109, -0.012130737, 0.69628906, -0.48535156, 0.5019531, 0.8017578, 0.12524414, -3.7070312, 0.21398926, 1.2675781, -0.66503906, -0.52490234, 1.4404297, 0.7451172, 0.56884766, 0.8334961, -0.1583252, 0.71533203, 1.1230469, -0.23205566, 1.0527344, 0.23730469, 0.34570312, -0.7089844, 1.1220703, 0.77490234, 2.1601562, 2.2128906, 0.8105469, -2.0117188, 1.8662109, 2.1230469, -1.1757812, -2.2949219, -0.6010742, -0.6430664, 0.21887207, -0.84033203, 0.40795898, -0.07159424, 0.7636719, 2.2207031, -1.0507812, 0.5576172, -1.8447266, 1.3632812, -1.1279297, 1.7490234, -0.05014038, -0.60595703, -2.6679688, -1.0849609, -0.53466797, -2.7207031, 0.39819336, 0.8408203, 1.7167969, 1.296875, 2.2441406, 1.6240234, 0.47607422, 2.3320312, -2.6386719, 0.05895996, -2.5136719, -0.85009766, 0.6386719, -1.2216797, 3.1367188, -1.0957031, -2.8339844, -1.1083984, -3.078125, -0.36547852, 0.9003906, 0.5126953, -1.7734375, -0.023254395, -0.72998047, 0.7080078, 1.7851562, 2.6484375, 0.9628906, 0.7558594, 1.9316406, -0.80810547, 0.10876465, 0.64208984, -2.0957031, -0.045776367, -2.3261719, 0.7338867, 1.6699219, -0.3034668, 0.25756836, 1.5292969, 0.6269531, -3.2246094, -1.8212891, -0.45239258, 0.62158203, -2.3398438, 0.04168701, 1.8662109, -0.57421875, -1.2285156, -1.1142578, -0.6347656, -2.2363281, -0.2421875, -0.21350098, -3.1953125, -0.7133789, 0.29467773, 0.85546875, -2.4472656, -0.35546875, 2.3652344, -0.11212158, -0.9316406, -4.3007812, 1.9169922, -0.4567871, 0.3671875, 1.2226562, 3.1074219, 0.31347656, 1.1982422, 2.0195312, -0.1439209, 1.0302734, 0.30444336, -1.8808594, 1.1181641, -0.5390625, 1.7597656, 0.9926758, -1.5351562, -0.6933594, 0.15686035, -1.0927734, 1.2998047, 0.16357422, -0.46777344, 0.7348633, -0.6328125, 2.5019531, -0.058135986, -1.015625, 1.6513672, -1.0185547, -0.81103516, 0.35498047, 1.4199219, -1.1757812, -0.08392334, 1.4287109, -0.32788086, -0.34033203, 1.1582031, 2.0761719, -0.27075195, -0.8486328, -0.8540039, -2.2363281, -1.9638672, 1.2060547, 0.8486328, -1.0966797, -0.19042969, 0.16210938, 0.85839844, 3.3378906, -0.6713867, -0.41308594, -0.55810547, -1.4326172, -1.0009766, -0.20324707, 1.1289062, 2.40625, 0.14794922, -0.8901367, -1.4091797, 3.1953125, 0.85009766, 1.5927734, 3.3867188, 0.3869629, -0.9848633, 2.6679688, 2.0371094, 1.5869141, 0.46850586, -1.7685547, 2.2929688, 2.7792969, 0.1038208, 1.8027344, 1.9853516, -0.8930664, -0.9091797, 0.7792969, -0.46850586, -0.73779297, 1.5751953, 1.4160156, 0.2232666, 2.8007812, 2.3144531, 1.4853516, -0.8466797, 1.1513672, 1.9306641, 0.6074219, -1.125, -0.9140625, -2.2695312, 1.8867188, -0.21496582, -2.1210938, 2.0351562, 0.7988281, -1.1113281, 2.2363281, -0.79785156, -0.15710449, -0.12548828, -0.17236328, -0.16003418, 0.55908203, -0.6870117, 1.8310547, -0.61572266, 3.0117188, 2.0351562, -0.6352539, -0.42944336, -0.9355469, 0.095458984, -2.0449219, -1.8056641, 0.026123047, -2.2578125, -1.0253906, -2.5390625, -0.12695312, -0.15637207, -0.25708008, -1.3476562, 1.3652344, -0.026168823, -2.3710938, -1.6962891, -0.42407227, -1.3076172, -1.7832031, 0.3413086, 2.8515625, -0.5019531, -1.1621094, -1.4277344, -0.9941406, 0.92529297, 2.0820312, 0.6113281, -0.29101562, -0.9404297, 0.5805664, -2.9882812, -3.1445312, -1.9130859, -0.35009766, -0.32836914, 0.1439209, -3.0605469, -0.6171875, 3.0117188, -2.0507812, -1.1865234, -2.5390625, 0.5546875, -1.8681641, 1.1201172, -0.69677734, -1.7109375, 1.0048828, -1.0859375, -1.4160156, -0.18347168, 0.5473633, -0.14611816, -3.4570312, 2.4160156, -2.1679688, -1.6425781, 3.4238281, -1.4189453, 0.6982422, 1.0839844, -0.020858765, -1.5927734, 2.4238281, -2.2714844, 0.115722656, -2.484375, -2.1601562, 1.0136719, 0.35839844, 1.9199219, -0.24768066, 3.3671875, 2.40625, -0.88964844, -0.84716797, 0.38305664, -1.4707031, 1.3710938, -0.9404297, 0.42089844, -1.6425781, -0.03152466, 0.36889648, -0.97021484, -1.109375, -0.20935059, -0.6738281, 0.14904785, 0.09008789, -2.1953125, 1.6464844, 1.1689453, 1.9492188, -1.7490234, 1.8457031, 1.1816406, 0.5419922, 1.2832031, 0.39453125, -1.5263672, 1.3613281, 2.5097656, -0.9301758, -3.1328125, 1.2539062, 1.7060547, 2.5195312, -1.5537109, 1.28125, -1.2285156, -1.5410156, -0.35327148, -0.20397949, 0.9868164, 0.49414062, 2.8378906, 0.09466553, -0.33081055, 1.7255859, -2.7089844, 0.3178711, -0.49243164, 0.52685547, -1.3134766, 1.765625, 1.4775391, -2.1328125, 0.1517334, 0.5161133, 2.3496094, 1.6513672, -0.9194336, -0.28808594, -2.0566406, 0.8076172, 0.90185547, -0.88964844, -1.8603516, 0.9296875, -1.1875, -1.3759766, 2.6992188, 0.5908203, -0.029846191, -1.0615234, 1.1865234, -0.13391113, -0.4116211, -0.18676758, 0.33422852, -1.7294922, 0.9003906, -0.8256836, 1.0429688, 0.6870117, 1.1904297, 0.26635742, -1.2197266, 0.3881836, 0.8022461, 1.7685547, 2.6933594, 3.1601562, 0.4194336, 0.9135742, 2.2109375, 2.9199219, 0.48657227, -2.7929688, 0.9628906, 1.015625, -1.8896484, 0.84033203, 0.8359375, -2.3125, 0.9536133, 0.76220703, 0.24108887, 1.2939453, 1.4501953, -0.76464844, -0.8588867, -0.034301758, 0.83740234, -1.8417969, 0.41674805, -1.4882812, 0.21801758, 2.0429688, -0.4555664, 0.5761719, 2.1699219, 1.5214844, 2.3007812, -1.0996094, 2.4609375, -0.42285156, -0.26879883, 0.20153809, -1.5273438, 0.9404297, -0.84228516, 0.07952881, 0.10101318, 1.6933594, -1.6845703, -0.17773438, -0.27270508, 0.6401367, -2.5078125, -0.8417969, 0.25097656, 0.9692383, 2.7695312, -1.6005859, 2.0996094, 3.4589844, -0.8540039, -4.5625, 0.9682617, 2.6445312, 0.31713867, 0.17932129, -2.1816406, 0.7753906, -3.1171875, -1.6279297, -1.5498047, -0.8232422, -0.24401855, -0.21984863, 0.7636719, 1.0976562, -1.6455078, 0.32641602, -0.75146484, 0.7211914, 0.7260742, 1.3310547, 2.8945312, 0.5473633, 0.101135254, 1.2832031, -0.74853516, -1.8486328, 2.8085938, -1.7509766, -2.03125, -0.22570801, 3.7304688, 0.7734375, 0.4909668, 1.3398438, 2.6621094, 2.0195312, 0.6279297, 0.7949219, -0.9580078, -0.8989258, -0.026046753, 0.9941406, -2.15625, 0.6923828, -2.1425781, 0.6616211, 1.2490234, -1.9433594, -0.0836792, 2.1953125, -0.6899414, 1.234375, -1.0234375, 0.17321777, -2.2402344, -0.7324219, -1.0458984, -0.05114746, -0.4189453, -0.9082031, 0.7705078, -2.1425781, -0.17480469, -3.75, -1.3251953, -1.7880859, -0.99072266, -0.08532715, -0.3400879, 0.6088867, 0.2220459, -0.6777344, 1.2832031, 3.1054688, 1.2304688, 1.9667969, -0.48901367, 0.9135742, -1.1523438, 0.60253906, -0.8286133, -0.005748749, 1.1611328, -1.6660156, 1.5302734, -1.2939453, -3.2929688, -1.4296875, -2.65625, 0.08459473, -1.2089844, 1.2910156, -0.21691895, 2.2929688, 3.2207031, 0.0030212402, 1.2333984, 0.54785156, -0.94628906, 2.328125, 0.56591797, -1.3515625, -2.1484375, -0.9980469, 0.59814453, 3.0820312, 2.0820312, 0.99072266, -0.6503906, 0.27856445, 0.25708008, -0.62890625, -0.6352539, -0.018798828, -1.5537109, 1.9160156, 0.80371094, 1.2636719, 0.4711914, -2.0644531, -0.69433594, -0.5522461]}, "B078KPHKZD": {"id": "B078KPHKZD", "original": "Brand: ThermoPro\nName: ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer\nDescription: \nFeatures: Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to \u00b10.9 degree Fahrenheit\nSuper long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands\nLock function: Kitchen thermometer can lock the current temperature; the reading won\u2019t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included\nBacklight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\nWide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking\n", "embedding": [-3.9902344, 2.1757812, 4.0898438, 0.9921875, -0.58984375, 1.3798828, -1.1171875, 0.73583984, 1.1533203, 0.6850586, 0.8261719, 0.064697266, -0.48339844, -1.0576172, 2.1347656, 1.6884766, 0.41430664, 0.12158203, 1.4003906, 2.5976562, 2.6582031, 2.53125, -1.4082031, -1.0019531, 2.0585938, -0.64501953, 2.1269531, -2.2265625, -0.296875, -1.3935547, 3.1796875, 3.5703125, 0.37817383, 1.0009766, -0.8901367, 0.4868164, -0.85791016, 0.109375, 0.20959473, 0.18640137, 0.46142578, 1.6728516, 0.31225586, 2.2675781, -2.8964844, -1.2089844, -1.8300781, 2.7890625, -3.0546875, 0.4350586, -0.65283203, 2.5898438, -3.21875, -0.5932617, 1.0976562, 0.98779297, -0.20288086, -2.4960938, 0.4038086, 0.40893555, -0.86572266, -0.1973877, -1.2001953, -0.06903076, 1.6025391, -0.64453125, 0.23266602, -2.9902344, 0.12976074, 0.1274414, 1.25, 0.8354492, 1.1835938, 1.1474609, 2.1347656, -1.5976562, -0.09265137, 1.0537109, 1.7539062, 0.40722656, 0.015914917, 2.4550781, -0.1348877, -2.7675781, 0.14404297, -2.203125, 0.1821289, 0.17626953, 2.6425781, -0.17041016, -0.3857422, 2.6230469, -2.1113281, -1.8740234, 1.4492188, -2.0800781, -0.87353516, -0.2446289, 0.07244873, 1.5566406, -1.2265625, -1.2890625, -0.033416748, 1.171875, -2.1933594, -2.1210938, -0.6928711, 2.0976562, -4.2734375, -1.3935547, -1.6835938, 0.80078125, 0.5415039, 0.29663086, -0.7548828, -0.45214844, 0.58496094, 0.54003906, -0.07434082, 1.0810547, 2.1425781, -1.1728516, 0.5961914, -0.2939453, -0.7211914, 0.39086914, 1.7666016, -0.09820557, 1.4716797, 0.023757935, -1.3710938, 0.09942627, 1.0664062, -1.8203125, 1.0439453, -1.7626953, -1.6015625, -1.6054688, -1.4082031, -1.6103516, -1.6337891, 1.4091797, -0.6015625, 1.5683594, -2.109375, -1.3193359, 0.9116211, 0.5205078, 3.1289062, -1.7001953, 1.7900391, -1.9296875, -1.0263672, 0.4416504, 2.4804688, 1.0771484, -0.5576172, -0.36328125, 3.140625, 0.55859375, 0.24475098, -0.7192383, -0.3515625, -0.38354492, 1.703125, 0.20727539, -2.7871094, 1.2685547, 1.7783203, 1.9970703, 0.61328125, -0.75439453, 1.2685547, 0.47338867, 0.625, -3.1816406, 3.0878906, 3.3359375, 1.8681641, 1.3017578, -1.296875, -1.2714844, 0.42773438, 1.484375, 0.027664185, -2.765625, -1.0556641, 0.41137695, 1.6855469, -2.7714844, 2.9179688, 1.7792969, 1.2851562, 0.0947876, -0.3708496, -0.39697266, -1.3681641, -2.6171875, 1.1669922, 0.24938965, -0.45166016, 0.83740234, -2.4277344, -2.9472656, -0.94628906, -2.3476562, 0.69873047, -0.7758789, 1.3681641, 1.7705078, 0.46801758, -2.0839844, 0.025909424, -0.73583984, 0.54345703, -3.5351562, 0.33691406, -0.08288574, 0.07489014, 2.1816406, 0.079589844, -1.4472656, 0.36743164, 4.1289062, -1.5703125, 2.0449219, -0.75878906, 1.2177734, -1.1230469, -1.4511719, 3.8984375, -1.0332031, -0.31347656, -1.796875, -0.47265625, 0.8178711, 1.1699219, -0.24572754, -0.69433594, 0.8017578, -0.54541016, -1.9707031, -0.46850586, -1.9902344, -0.18237305, -0.6308594, -1.8183594, 3.0644531, 1.3291016, 0.09301758, 0.2861328, 0.22973633, -0.4091797, -0.9057617, -0.09466553, -0.23254395, -0.16796875, 0.94433594, -2.8007812, -1.5507812, 2.0800781, -0.43725586, -1.1796875, 1.8173828, 1.7841797, 0.27368164, 5.1757812, 2.1816406, -0.5517578, -1.2539062, 1.1943359, 0.6513672, -2.1152344, 0.16271973, 1.6425781, 2.7207031, 0.7714844, 0.2154541, 1.4863281, -1.9902344, 0.35595703, 1.7646484, -0.9536133, -0.6567383, 0.9428711, 0.3869629, -1.6728516, -2.8476562, -0.15808105, 0.3449707, 4.3007812, 0.3774414, -2.5683594, 2.703125, -2.0820312, 1.609375, -1.0800781, -0.8378906, 0.7480469, -1.9091797, 2.5644531, 0.7709961, -2.0703125, -0.39697266, 0.6660156, 0.30444336, 1.4365234, -0.40454102, 1.4580078, 0.6513672, 1.9462891, -1.4912109, -3.15625, -0.26416016, -0.18188477, -2.90625, -0.16687012, -2.7109375, 0.87597656, -1.4990234, 2.6484375, 2.7226562, 2.8417969, -1.2070312, 1.0664062, 2.3515625, -0.8730469, 0.89941406, 0.78759766, -0.35986328, 0.96875, -1.8974609, 0.74365234, -0.39453125, -3.3613281, 0.31811523, -2.0996094, -1.6757812, 0.35717773, -0.4802246, -2.3417969, 2.3964844, -1.0253906, 0.060180664, -1.6474609, -1.7480469, -0.9863281, -0.65722656, -0.6586914, -0.9746094, -0.6201172, 0.4729004, -0.6166992, -1.4619141, 2.5429688, 1.0205078, -1.0888672, 0.30395508, -3.3886719, 0.72753906, -1.5957031, 0.06463623, 1.3730469, 1.3730469, 0.5307617, -3.1367188, 1.7255859, -0.9169922, -0.2208252, -2.2421875, 0.55810547, -1.8398438, -1.0566406, -1.8427734, -0.9663086, 0.58496094, 1.8388672, 1.1230469, -1.7373047, 3.6660156, -2.3535156, 1.4863281, 1.8291016, 2.4941406, -1.8574219, -2.0898438, 0.41430664, -2.015625, -1.0078125, -3.8359375, 0.3347168, -0.60302734, 1.7900391, -0.16552734, 0.0904541, -1.5263672, 1.1660156, -1.3818359, -2.9804688, -1.3349609, 0.8569336, -1.4072266, -1.0078125, -2.4472656, -0.70410156, -1.8242188, -2.6992188, 0.90527344, 1.0634766, 0.22717285, 4.1953125, 1.3632812, 0.71972656, 0.1665039, -0.5991211, -4.234375, 0.98535156, 1.5908203, -1.0976562, -1.3828125, -0.6508789, -0.6542969, 1.2402344, -0.82910156, 3.1074219, 0.7583008, 2.8828125, 0.15222168, 0.5620117, 1.1503906, 1.9453125, -0.50390625, -0.8720703, 2.421875, 0.5908203, -4.0039062, -2.6542969, 0.20703125, 1.6279297, -0.8276367, -2.8769531, 1.1992188, 1.2851562, 2.6035156, 0.6958008, -1.8300781, -1.1962891, -2.15625, 2.0390625, -0.4453125, -2.3457031, -1.6738281, -0.38256836, 0.5571289, 0.9145508, 0.061187744, 3.2207031, 0.59033203, 1.7949219, 1.3691406, 0.40454102, -1.2998047, -2.3398438, 0.4501953, 0.84716797, 0.6567383, 0.7709961, 0.21240234, -0.7236328, 0.6464844, 0.57910156, 0.59765625, -2.5703125, -0.6254883, 0.37817383, -0.43652344, 0.50146484, 1.2089844, -1.1630859, -0.8359375, -2.4648438, -0.9873047, 1.7861328, -1.1445312, 2.8125, -0.70214844, -1.6826172, -2.1152344, 1.6337891, -1.2089844, 0.4038086, -0.4963379, 1.6357422, -1.6679688, -0.70214844, 0.16540527, 0.8071289, -1.4824219, -1.9326172, -0.9277344, -0.37841797, -0.39892578, -1.4384766, -0.35498047, 1.7294922, -2.9765625, -2.1132812, -0.2602539, 1.8310547, 1.5058594, 0.8803711, -1.2587891, 0.2446289, 0.17419434, -1.4003906, -3.8710938, 0.13256836, 1.4355469, -1.8193359, 0.22058105, 1.0390625, 1.4990234, 0.75097656, -0.7675781, 0.53222656, 0.84375, -3.5722656, 0.20397949, -2.7773438, -0.9916992, -1.7021484, -4.3203125, 1.9003906, -0.50878906, 1.6279297, 2.0449219, 1.4072266, 0.6245117, 2.6386719, 1.4423828, -2.2382812, -1.8164062, -0.6425781, 0.2800293, -0.19030762, -0.6357422, 5.6132812, 1.3496094, -0.54785156, -0.076416016, -1.5664062, 0.21142578, 2.7265625, 1.0761719, 1.7929688, 0.36865234, -1.1103516, -0.36376953, -0.53271484, 0.11621094, -0.20947266, 0.6879883, -0.39941406, -0.96435547, 1.6025391, -2.2988281, -0.10217285, -2.3007812, 3.4492188, 0.12646484, 0.47265625, 0.27490234, 0.35961914, 1.6494141, 0.40185547, -0.41503906, -0.75634766, -2.015625, 1.9912109, 0.65283203, -0.66552734, -0.7084961, -3.6816406, -1.2226562, -1.3408203, -0.8696289, 1.6425781, 1.4736328, -2.0332031, -0.013038635, 0.51171875, -0.9892578, -1.2226562, -0.3642578, -3.1796875, -0.0040740967, 0.3881836, 1.5009766, -0.010879517, -2.3359375, -1.3320312, -3.1699219, 3.4570312, 2.8339844, 0.85595703, 2.9785156, -0.02507019, -1.2773438, -0.27368164, -1.6337891, -0.46533203, -0.9350586, 1.7587891, 0.56591797, -0.25097656, 1.5488281, -1.0537109, -1.0644531, 1.3417969, 0.671875, 1.2402344, -1.1806641, 1.4501953, -0.28979492, 1.0117188, 4.1015625, -0.79833984, 3.984375, -0.36279297, 1.3291016, -0.41186523, -1.6953125, -0.16333008, -0.38378906, 0.7055664, 0.17285156, -0.13269043, -0.22070312, 3.6875, -0.55810547, -0.026184082, 0.69921875, 0.10638428, 0.33813477, 2.3261719, 1.4169922, 1.4980469, -3.6171875, -1.1171875, 2.8105469, 2.6738281, -0.4482422, 5.0742188, -0.54345703, -2.140625, 0.059020996, 3.9101562, -0.8642578, 1.4482422, -1.0908203, -1.5947266, 0.5136719, -1.3662109, -2.6894531, 0.25341797, 3.1914062, -1.28125, 2.859375, -1.8779297, -0.27197266, 2.1503906, -3.6113281, 0.068603516, -0.7011719, -1.1357422, 1.6464844, -1.0644531, -1.8232422, -0.9633789, 2.046875, 2.6542969, -2.0722656, -0.6118164, 0.55078125, -2.984375, -1.8583984, -1.0136719, -1.4296875, -2.6113281, 0.34301758, 0.56152344, -0.7583008, -2.1015625, -0.3088379, 1.9521484, -0.83496094, -0.41430664, -1.4052734, 3.0703125, -1.5107422, -0.02659607, -1.7880859, 1.1113281, -1.4658203, -0.37768555, 0.67285156, -2.2382812, 0.60009766, 2.765625, -0.9970703, -2.21875, 0.44677734, -2.0605469, -3.2265625, -0.3786621, 1.2333984, 1.5429688, -0.6381836, 0.010665894, 0.54248047, -1.4208984, -0.9995117, 0.36108398, 0.26342773, 1.046875, -0.84033203, 0.5961914, -0.89941406, -0.10809326, -1.2255859, 0.9394531, 0.6401367, 1.71875, -1.4560547, -2.1074219, -1.3984375, -0.59814453, -3.3457031, -2.4296875, 0.8808594, 2.0996094, -2.3144531, 1.0800781, 1.0019531, -2.8984375, 2.6816406, -0.18811035, 0.6665039, 1.0683594, 0.026535034, 1.8554688, -2.0332031, 1.6923828, 0.16967773, -0.19372559, 0.5214844, 1.4765625, -3.1152344, 1.4345703, -0.019866943, -2.1210938, -1.8974609, -1.1601562, -0.2866211, 0.07244873, 0.3466797, -0.16564941, 0.85253906, -2.8007812, -4.78125, -1.3271484, -0.9536133, -0.48876953, -2.3515625, 0.72558594, 3.3769531, -0.21557617, 1.9267578, -0.08001709, 0.5678711, -3.59375, 0.82958984, 1.6542969, 2.4277344, 1.0253906, -0.7583008, -0.41674805, -1.8701172, -0.72216797, 2.9160156, -0.6645508, -2.5996094, 0.19934082, -1.6611328, -1.5527344, 1.6679688, 2.4101562, -1.4882812, -2.1835938, 0.51416016, 0.09692383, 2.7949219, -2.1933594, -0.46044922, 0.9511719, 3.3847656, -0.9160156, 3.6425781, 0.63720703, -1.9990234, -0.25952148, -1.203125, -0.80566406, -0.7397461, -0.39111328, 1.3066406, -1.5556641, -0.3557129, 1.4765625, -3.4355469, -0.28295898, 0.59375, 3.2285156, 0.25585938, 0.056488037, 3.4277344, 0.54541016, -0.009757996, 1.9765625, -1.3896484, 0.11767578, -1.2011719, -1.0146484, -0.74853516, 2.0292969, -1.9755859, -0.23303223, 1.6259766, 0.030136108, -2.4550781, 2.5058594, -0.56396484, 1.3798828, 1.7714844, 3.2070312, 2.2558594, 2.1074219, 1.9521484, 0.54785156, 2.359375, 1.1025391, -1.8603516, 0.28222656, 2.5175781, 0.5527344, 0.8701172, -2.3476562, 0.05319214, -0.028808594, -0.04208374, 0.023269653, 1.5820312, -0.29711914, 0.45532227, 1.0830078, -0.43164062, -0.11779785, -4.3789062, 0.22912598, -0.9140625, 0.6958008, -3.0429688, 3.2109375, 1.4648438, -1.5576172, 0.15136719, -0.7475586, 0.42285156, 0.90234375, -3.0195312, 1.3818359, 1.8701172, -1.4892578, -1.0966797, 1.0302734, -0.13415527, 1.4042969, 2.9238281, -1.3847656, -0.5649414, 0.15515137, 1.0214844, 0.04989624, -1.5947266, 0.6381836, 2.1074219, -1.2080078, -1.6621094, 0.69140625, -1.3271484, -2.6757812, 0.84277344, 2.3417969, -0.6230469, 1.8203125, -2.2089844, -2.3007812, 2.1542969, -0.007255554, 0.33544922, 0.609375, -0.4765625, 0.7392578, -0.3959961, 2.1835938, 1.8769531, -0.44995117, 2.7988281, -2.8144531, -2.40625, -0.51416016, -0.03237915, 0.9296875, 1.7861328, 0.49609375, -0.5708008, 0.62109375, 0.4267578, 4.0039062, -0.7944336, -2.3710938, -2.6015625, 1.9941406, 0.054779053, 1.4150391, -0.5864258, -3.984375, -1.3193359, -0.12768555, -1.7099609, -1.6992188, -0.71875, 1.3798828, 1.4970703, -1.6572266, 1.1582031, -0.0053482056, 2.65625, 1.0966797, 1.25, 1.6943359, 1.3378906, -1.7080078, 1.9726562, 1.5439453, -1.4853516, 0.7114258, 0.54003906, 1.6728516, -0.7915039, 0.40478516, -0.7763672, 1.3320312, 0.2479248, 0.094055176, -0.0914917, 2.7734375, 1.1455078, 0.33203125, 0.15722656, -1.5107422, 1.4365234, -2.2304688, -3.0332031, 1.2177734, 1.5712891, -0.12854004, 0.13012695, -0.75439453, -1.1748047, -1.0996094, 0.3425293, 0.63623047, 1.3769531, 3.6308594, 1.5439453, 1.3183594, -0.9213867, -2.84375, -1.1220703, -0.37597656, -1.9951172, 0.6484375, 0.734375, 0.7841797, 0.03677368, 0.40576172, -0.0073432922, -0.703125, -0.9223633, -2.1933594, 0.86865234, -2.4472656, 1.6152344, -1.5429688, 1.0898438, 0.47753906, 0.5444336, 1.1826172, 1.5810547, 3.5644531, 2.1835938, 1.4326172, -2.390625, -2.5078125, 2.6386719, 2.5351562, 0.7988281, 2.0136719, 0.33129883, -1.0996094, -0.88134766, -0.7871094, -1.1552734]}, "B07FC7KCJD": {"id": "B07FC7KCJD", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with 3/8\" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided\nDescription: Feature:
Hose Length: 6ft
Connector: 3/8\" female flare fitting x 3/8\" female flare fitting.
Material: Stainless steel braided.

Warning: Only for OUTDOOR Use.
\nFeatures: \u3010Awesome Extension\u3011 Extend your existing hose to reach the gas appliance. No need to carry a large tank around.\n\u3010Widely Applied\u3011 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more.\n\u3010Nice Length\u3011 6 feet in length allows getting more distance and moving around where it is needed.\n\u3010Durable & Chew-Proof\u3011 Stainless steel braided hose effectively reduces damage caused by friction and animals.\n\u3010Standard Connector\u3011 3/8\" female flare fitting x 3/8\" female flare fitting.\n", "embedding": [-0.34692383, 1.7548828, 0.45483398, -0.89160156, -1.6972656, 0.3256836, 1.3378906, -2.3359375, 2.5292969, 1.2841797, -0.6689453, -1.1171875, 1.1787109, -4.6445312, 1.4472656, 0.81689453, -0.5083008, -0.5024414, 1.5927734, 2.1289062, 2.2695312, -1.9501953, 1.9873047, 1.015625, 1.4521484, -2.2597656, 2.5527344, -2.7910156, 0.10986328, 0.3942871, 0.083618164, 1.3242188, -0.010620117, 0.90966797, -3.578125, -1.3408203, -1.3574219, -0.6586914, -3.4453125, -2.7363281, -1.3818359, -0.33569336, 3.6425781, 1.5087891, -2.4023438, 1.5488281, 1.5595703, 2.2753906, -1.0107422, -1.3144531, -0.18322754, -0.16894531, 0.5917969, 0.25048828, -2.3144531, -0.7260742, -1.5322266, -2.7695312, 2.1816406, 1.890625, 1.4033203, 0.18896484, -2.5429688, -0.19274902, -1.5429688, 0.5620117, 1.6416016, -0.19897461, -1.5605469, 1.2119141, 0.15283203, 1.6318359, -0.01789856, -0.07891846, 1.6601562, 0.9238281, -3.1445312, 1.2578125, 3.2929688, 1.3359375, -1.5966797, 2.8671875, 1.2089844, -2.2714844, 1.9599609, -1.6875, -3.578125, -0.71533203, 1.3408203, 1.5458984, -1.8164062, 4.0664062, -2.9082031, -1.8496094, 0.42407227, 0.16784668, 1.5634766, 1.6201172, 2.0761719, -0.34423828, 0.18066406, -0.67529297, -0.0793457, 0.48095703, -1.6259766, -2.7558594, -0.44604492, -0.85498047, -0.97216797, 0.5131836, 0.8544922, 0.011367798, 1.1923828, -0.75634766, 0.42993164, -3.53125, -1.3056641, -1.6982422, 3.5917969, 0.34472656, 1.7910156, 2.0175781, -0.3791504, -0.2541504, 2.15625, 0.48706055, -0.56152344, 1.9072266, 2.96875, -2.9316406, 0.5097656, -2.9921875, 1.7539062, 0.16845703, -0.38110352, -3.3046875, 0.7324219, -1.7041016, -2.5253906, -0.123413086, -2.8671875, -0.2376709, 1.4882812, -0.60595703, -4.2109375, 1.6894531, -3.8789062, 1.3740234, 2.84375, -2.3730469, 0.93115234, -1.1865234, -0.1385498, -1.546875, 2.640625, 1.0419922, 2.7949219, -1.2246094, 2.7402344, 3.03125, 2.2695312, -0.7651367, -2.2011719, 2.4296875, -0.29956055, -3.4277344, 0.28076172, 0.86621094, -0.5473633, -0.07324219, -0.44360352, -3.2441406, 1.609375, -0.19177246, -0.2529297, -1.9443359, 1.9228516, -0.37597656, 3.5664062, 1.9091797, -2.5800781, -2.4863281, 1.2636719, -1.5107422, 0.7910156, 0.26123047, -0.9604492, -1.140625, 1.9599609, -0.11566162, -1.7470703, 0.62939453, -0.12084961, 2.1992188, -0.70751953, -2.8320312, -1.8037109, -0.6567383, 0.51464844, 1.3105469, -3.7519531, -0.19421387, 0.8256836, 1.8007812, -1.3388672, -1.4472656, 1.1640625, 0.020111084, 0.61865234, 1.1650391, 0.56591797, -0.11578369, 1.5742188, -1.3779297, 0.13293457, -1.3271484, 1.4121094, 2.875, 3.015625, 0.8354492, -0.006134033, 0.3762207, 0.39160156, 0.6513672, 1.4892578, -0.20751953, -1.1904297, 1.2548828, -1.4628906, -2.359375, 2.8417969, 1.1386719, -0.71191406, -0.2524414, -0.04812622, 2.0195312, 1.1621094, -1.7617188, 0.68896484, 3.1152344, -0.72753906, 0.25097656, -4.0234375, -0.9926758, 1.2597656, -0.08770752, 0.20349121, -0.71777344, 1.8378906, 0.56591797, 1.4951172, -0.44140625, -0.13476562, 0.2861328, 0.1697998, -0.1607666, 0.46899414, 2.5039062, -0.3239746, -0.19372559, -0.19006348, 2.0449219, -0.110839844, 1.5996094, 0.85839844, -0.029891968, 1.3154297, -1.9462891, -2.625, 0.57470703, -1.8164062, 2.8535156, 0.4248047, 0.30444336, 0.2084961, 1.484375, -2.1855469, 1.921875, 0.22961426, 1.4003906, 1.3154297, -0.2824707, 1.3955078, -0.9291992, 0.67626953, 1.2949219, 2.625, -1.0068359, -1.1367188, 0.7553711, 4.59375, -0.31591797, -0.54345703, 1.6708984, 1.4931641, 2.4550781, 0.85253906, 2.6816406, -0.5341797, -0.8803711, -0.58251953, 1.0244141, -1.3398438, 1.6640625, 2.1660156, -0.06286621, 1.1279297, -2.2929688, 1.3378906, 1.6601562, 0.06933594, 1.5039062, -1.8955078, -0.1204834, -1.6767578, -1.8486328, 2.2070312, -0.46801758, -0.53222656, 2.8496094, -1.0361328, 0.18347168, 0.48510742, -1.9013672, -1.2109375, 1.5146484, -2.3925781, 1.8017578, 2.1796875, -0.022216797, 0.10076904, -0.6035156, -1.3046875, -2.3417969, -2.015625, -0.5366211, -0.3857422, -1.3847656, 1.0087891, -1.7216797, -2.7949219, -1.4667969, 0.58154297, 2.6777344, -0.13085938, -0.8442383, -0.63183594, 1.3867188, 0.50146484, 1.0029297, -0.6425781, 3.6464844, -0.4741211, -1.8378906, -0.92285156, 0.2722168, -0.8276367, 0.97021484, -2.3144531, -0.83740234, 1.3125, 1.3251953, 0.67529297, 1.6865234, 0.39404297, -3.390625, -0.74902344, -4.34375, -1.2119141, 0.64404297, 1.2138672, -0.9145508, 1.6708984, -2.1289062, -3.078125, 1.0859375, -2.1386719, 0.4597168, 0.6948242, 1.2138672, -2.484375, 0.49438477, 1.3613281, 0.0056495667, -1.3886719, -1.6679688, 2.5078125, -2.3085938, -1.7294922, -2.2460938, 0.22595215, 0.81152344, 0.6821289, 1.1171875, -1.5107422, -1.6347656, -0.57910156, -0.20483398, -2.3339844, -0.63964844, 0.7998047, 1.1855469, 0.2902832, 0.025131226, -2.0449219, -1.9970703, -0.031280518, -0.8691406, 0.2163086, -1.7460938, -0.9453125, 2.2148438, -0.23095703, -0.88916016, -1.2783203, -3.1914062, -0.11981201, 2.5996094, -1.1621094, 0.78125, -1.4228516, -0.42895508, -1.6123047, -2.375, 2.28125, 0.6538086, 0.18725586, 0.0769043, -0.6621094, 2.6171875, 1.2011719, -1.1767578, -2.2636719, -0.59228516, 4.4453125, -2.7460938, -0.64941406, -1.3662109, 0.50634766, -4.3515625, 0.0074005127, 1.0966797, -1.2333984, 1.3701172, 1.3984375, 0.9428711, 1.0771484, 0.58984375, 0.5336914, 0.5800781, 1.6376953, -0.13891602, -0.97314453, -1.1220703, -1.6044922, 2.0078125, 1.1376953, -0.095458984, 1.5341797, -0.07171631, -1.4482422, -0.53222656, 0.2298584, 0.041168213, 0.62646484, 1.2626953, 0.8901367, -0.013671875, -1.1943359, -0.40039062, -0.31640625, 1.4267578, -1.8789062, -3.6328125, 0.88671875, 0.13244629, -0.6972656, -0.38427734, -2.3046875, -0.62841797, -2.2148438, -1.515625, -0.63671875, 1.171875, 2.0351562, -1.2099609, 1.3789062, -0.35888672, 2.9863281, -0.8647461, -0.6923828, -1.6787109, -1.1113281, -1.6914062, -0.40283203, 0.60595703, -2.9003906, -2.1894531, 3.7773438, 3.5488281, -2.8242188, 1.4257812, -1.5527344, 1.2988281, 1.5722656, -0.5449219, -0.46533203, -0.56884766, 0.041168213, 0.1430664, -0.47460938, 1.0966797, -0.5449219, -2.2792969, 1.2050781, -1.2089844, 0.047607422, 1.3378906, 0.23303223, -4, 2.2929688, -0.6191406, 0.38623047, -0.8256836, 2.7519531, -0.101745605, -1.1152344, 2.046875, -3.2539062, -0.76708984, -1.1699219, -6.3164062, 1.6376953, -1.5009766, 0.67285156, 3.1464844, 0.12548828, -0.61328125, 0.6118164, -0.22827148, -3.1386719, -1.2724609, -1.0507812, 0.50439453, -1.9453125, -1.4238281, 2.2167969, 0.6411133, -1.9746094, -1.2363281, 0.030380249, -2.375, -0.70458984, 1.7353516, -0.78222656, -1.5429688, -1.6826172, 0.29052734, -0.5444336, -0.84716797, 0.7265625, -2.8554688, -0.11468506, -3.8261719, 1.6328125, 1.9248047, 0.70410156, -1.0527344, 3.203125, 0.8598633, -1.7519531, -0.4284668, 0.06402588, 3.9101562, -0.59228516, -3.3789062, -0.68847656, 0.4345703, -0.40356445, 0.35595703, 0.43188477, 0.8105469, -0.69628906, 3.5585938, -1.0556641, 1.1513672, 1.3916016, 0.58251953, -5.53125, 0.20629883, 0.8227539, -1.2744141, -0.22973633, -1.2587891, -0.63623047, -2.6914062, 0.055755615, -2.4433594, -1.4052734, -2.1953125, 1.0644531, -3.1113281, 1.5996094, -1.0976562, -0.28686523, 2.2363281, -0.82714844, -0.54541016, -2.6386719, -1.1523438, -2.2578125, 0.2878418, -3.2441406, -0.103393555, 0.88720703, -1.1396484, -0.88183594, -0.07043457, 0.54296875, -2.9003906, -1.3007812, -0.58935547, 0.105407715, 0.71191406, -0.40576172, 2.2832031, -1.2880859, 4.7070312, 0.37402344, 1.6621094, 0.6269531, -0.1451416, -0.19616699, 1.9306641, 2.8710938, 1.6367188, 0.75634766, 1.0771484, 2.453125, 4.25, 1.4091797, 1.3320312, 3.4726562, -0.26953125, 1.1679688, -0.29174805, 0.45996094, -1.3955078, 0.76220703, 0.6894531, 2.6054688, 2.5605469, 2.875, 0.023910522, -2.0410156, 1.2304688, 1.8144531, -1.9804688, -1.0800781, 0.003660202, -1.8144531, 1.8681641, -1.8447266, -2.0976562, 1.8359375, 2.5996094, 0.2019043, 1.9052734, 0.5864258, -1.7177734, -0.9926758, -2.1015625, -0.5957031, -0.09039307, -1.4873047, 1.5410156, -3.21875, 1.7773438, -0.3635254, 2.3203125, 1.4277344, 0.2866211, -0.88671875, -0.56152344, -2.7460938, 1.0556641, -1.1533203, -0.6376953, -2.9472656, 1.2197266, 0.8256836, 1.359375, 1.9970703, -0.14001465, -0.8178711, -2.0566406, -1.5400391, -0.60009766, 2.8828125, 0.29052734, -1.1894531, 2.0078125, -0.78222656, -0.3005371, -0.80029297, -0.32006836, -1.4785156, 2.2246094, 2.6269531, 1.1884766, -0.5410156, -2.5136719, -1.5332031, -5.1484375, -0.41333008, 1.6298828, 0.1184082, 1.1708984, -1.3916016, -0.49609375, 0.67529297, 0.6870117, -0.21655273, -1.8115234, 1.0595703, -0.09033203, 0.10253906, -2.1972656, 1.3046875, -1.3916016, 0.29736328, -2.6894531, 0.3774414, 0.41137695, -2.0273438, -1.5654297, 1.6210938, -3.1816406, -1.7851562, 2.9492188, -1.4140625, -1.5332031, 1.6962891, -0.3017578, -0.85498047, -0.42626953, -1.9609375, 1.1113281, 0.9482422, -1.2460938, 1.6376953, 0.8041992, 0.022613525, -0.43725586, 0.6347656, 1.8886719, 0.36132812, -0.19677734, 0.4958496, 2.0839844, -1.2773438, -1.0800781, 0.22485352, 0.39013672, 1.6171875, 1.4736328, -1.8027344, -1.8300781, -1.3046875, -2.6816406, 0.18115234, -2.4824219, 0.33203125, 0.74853516, 2.1699219, 1.6162109, -0.007896423, 1.9443359, -0.6230469, 1.2744141, 0.020233154, 0.077697754, -0.1538086, 2.3085938, 0.73339844, -0.69189453, -4.7851562, 0.46313477, 3.5507812, 4.25, -0.009429932, 0.32080078, 0.028076172, -2.2753906, 0.109558105, -0.49121094, -0.54833984, 2.0898438, -0.29492188, -1.8828125, -1.1337891, 0.024810791, -1.1113281, 1.6640625, 0.3708496, -0.35327148, -1.0722656, 0.9584961, 1.015625, -2.7207031, 0.028442383, -0.94384766, 1.7246094, 0.41235352, -1.2226562, -0.92871094, -3.5839844, -0.46289062, 0.5239258, -2.6542969, -2.7949219, 2.6445312, -0.033081055, -1.0830078, 0.21118164, 2.640625, -1.2412109, -0.76464844, 1.1796875, -0.43017578, -0.50634766, -0.53027344, -3.3808594, -0.63964844, 1.3964844, -1.765625, 0.1887207, 1.3818359, -1.6845703, 0.6665039, 2.5546875, 1.9277344, 1.5292969, -0.07952881, 2.7636719, 2.71875, 0.32080078, 2.6230469, 1.0136719, 1.8974609, 0.017852783, -3.1757812, 0.93603516, 2.5214844, 0.77246094, 1.8056641, -0.47583008, 0.43847656, 0.28442383, -0.35375977, -0.7861328, 1.6318359, 1.7392578, -3.1542969, -0.6166992, 0.30395508, -1.0371094, -2.5703125, 1.1533203, -1.7539062, -0.05618286, 0.6357422, 0.4321289, 2.2636719, 1.1416016, -1.2412109, -0.45117188, -1.3388672, 3.1445312, -0.77783203, 0.4182129, 0.048461914, -1.7324219, 1.8417969, 2.6816406, -0.04849243, 0.62158203, 1.0761719, -0.13903809, 0.5620117, 1.8164062, 0.95751953, -0.8803711, 0.8383789, -2.9453125, 1.1357422, 0.9189453, -1.8232422, 0.31298828, -0.3569336, -2.0429688, -3.8554688, 3.75, -0.084228516, -1.8105469, 0.51416016, -3.1191406, 0.48095703, -2.6269531, 0.6538086, -2.2597656, -0.36254883, 0.32592773, -0.042175293, -0.0869751, 0.94189453, -0.8569336, 2.7226562, 1.6376953, -2.28125, 0.17272949, 2.3984375, 0.4650879, -0.58203125, 1.4638672, -0.5449219, 0.96728516, 0.32910156, 3.5820312, -0.1315918, 0.04788208, 1.1386719, 3.0449219, 0.4111328, 0.7128906, 1.0527344, -2.1523438, 1.8769531, -0.8339844, 0.50683594, -0.76171875, -3.375, -0.6171875, 0.9975586, 0.79003906, -0.96240234, 1.140625, 1.9384766, 0.029251099, -2.5273438, 2.5820312, 0.7246094, -2.4238281, 3.0175781, 3.5078125, -1.2978516, -1.4169922, -0.6171875, 1.8017578, -0.7495117, 1.3007812, 0.97314453, -0.78125, 1.7763672, -1.2119141, 0.98535156, 0.72998047, -1.7285156, -1.6923828, 0.016494751, -2.0566406, -0.036590576, -0.80566406, -0.66064453, 1.7490234, 4.5546875, 0.92041016, 2.2460938, -0.40283203, -1.3388672, 0.5161133, -2.65625, -1.7216797, 1.0117188, 2.4589844, 1.9833984, 1.6953125, -0.7866211, -3.125, -0.41503906, 2.0761719, 0.7104492, 0.0692749, -0.85009766, 0.6489258, 1.9404297, 2.171875, 0.35180664, 1.1220703, -0.32836914, 0.22875977, 1.9951172, -0.48120117, 2.8515625, -1.9287109, 1.3320312, -0.15014648, 2.7148438, 0.8676758, -0.21728516, 1.2919922, 0.36572266, 0.625, -1.6035156, 1.2861328, -0.2841797, 0.9291992, 1.1513672, 2.3476562, 2.265625, 0.93896484, -0.9663086, -0.97753906, 0.49389648]}, "B07W6MTWVF": {"id": "B07W6MTWVF", "original": "Brand: Kohree\nName: Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank\nDescription: Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank\nFeatures: \u3010Application\u3011: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter.\n\u3010Multipurpose\u3011: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating.\n\u3010Very Cost Effective\u3011 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more.\n\u3010Easy to Use\u3011: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance.\n\u3010Safe Connection\u3011: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.\n", "embedding": [-0.609375, 1.6503906, 0.64404297, -0.69873047, -2.7441406, -0.54248047, 1.3544922, 0.019439697, 0.0871582, 2.5722656, 2.4355469, -0.69970703, 1.2900391, -4.4960938, 0.36816406, -0.33520508, -0.34521484, 0.12573242, 1.6962891, 1.1767578, 3.6953125, 1.0810547, 1.8876953, 0.21777344, 2.0195312, 0.28588867, 3.1015625, -2.9648438, -1.4179688, -0.4765625, 0.80029297, 0.17089844, 0.64746094, 0.06311035, -1.9130859, -1.8496094, -2.5234375, 1.0039062, -3.46875, -2.0039062, -1.9648438, 1.0107422, 2.8417969, 0.43115234, -1.5830078, 0.046936035, 0.578125, 1.453125, 1.0380859, -0.18518066, -0.39013672, 0.74316406, -0.5961914, 0.9326172, -2.2402344, 0.7944336, -0.90966797, -2.6953125, 1.6279297, -0.2939453, 1.7734375, 0.27001953, -1.3710938, 0.82910156, 0.63623047, 1.0664062, -0.9008789, -0.20605469, -0.37182617, 0.50439453, 0.38427734, -0.30493164, -0.87646484, -1.8564453, -3.03125, 0.1685791, -3.2558594, -0.08514404, 2.140625, 0.9580078, -2.2949219, 1.7041016, 0.059783936, -0.37817383, 0.7114258, 0.9848633, -1.8671875, 1.5097656, 1.0322266, 2.4199219, -2.6152344, 2.6601562, -2.2265625, -1.8007812, -0.41088867, 0.2685547, 0.1817627, 1.7246094, 2.4980469, -0.89404297, -2.609375, -0.2956543, -1.5859375, 1.4394531, -2.9179688, -0.5292969, -0.5385742, -0.70703125, -1.734375, 0.33081055, -0.54541016, 0.8803711, 1.9599609, -0.65283203, 0.024215698, -1.8066406, 0.13964844, 0.24267578, 1.9892578, 2.0625, 4.6367188, 0.030731201, 1.1269531, -1.2626953, 1.5947266, 1.5595703, -0.5058594, -0.0413208, 2.3203125, -1.4121094, 0.12939453, 0.16540527, 1.9443359, 0.6533203, 0.7607422, -3.1035156, -0.48608398, -1.4775391, -1.6503906, 0.46801758, -2.4804688, 0.06591797, 1.5917969, -0.27783203, -4.5429688, -0.76708984, -3.3632812, -0.36865234, 1.4189453, -2.2714844, -0.18835449, -1.9443359, -0.011894226, 0.09259033, 2.6464844, 1.8515625, 0.53271484, -0.7163086, 1.6113281, 1.9794922, 0.33862305, -0.37060547, -2.0878906, 1.7988281, 0.055725098, -2.2890625, 1.6650391, 1.3085938, -1.5810547, 1.5986328, 0.32861328, -2.5488281, 1.5839844, 0.08557129, 0.7446289, -1.7529297, 0.49951172, 1.5947266, 1.4228516, 1.4599609, -3.0527344, -4.0351562, -0.23461914, 0.21899414, 1.1279297, -0.8886719, -3.6523438, 0.18078613, 0.87402344, -1.5224609, -0.6694336, 2.5390625, 0.5073242, -0.71533203, -0.012817383, -1.2197266, -2.7382812, -0.31054688, -0.57177734, 1.1113281, -1.8544922, -1.6132812, 1.9716797, 0.7397461, -2.0878906, -0.083740234, 0.75683594, -2.3203125, -0.46484375, 2.5644531, -0.38916016, 0.59472656, 2.3183594, 0.2602539, -1.6025391, -1.5683594, 2.4414062, 2.3574219, 1.7910156, 0.86376953, -1.8564453, 0.24206543, 1.3144531, 1.5439453, 1.6230469, -0.52441406, -1.4482422, 0.35888672, -0.7470703, -0.89697266, 1.7578125, 1.9521484, 0.3154297, 0.22802734, -0.99365234, 2.7988281, 1.1582031, -1.6269531, 1.1728516, 2.1933594, 2.1484375, 1.2373047, -2.5195312, -1.8779297, -2.2148438, 1.4785156, -0.023849487, 1.8466797, 3.9550781, -0.92578125, -0.14416504, -0.29736328, -3.125, -2.765625, -1.1318359, -0.23254395, 0.45361328, 1.5117188, -0.10632324, -1.8935547, 1.0244141, 1.2607422, -0.36499023, 0.8696289, 0.7392578, 1.8056641, 0.77978516, -0.59765625, -1.3544922, 1.2460938, -0.7504883, 2.6816406, 1.1796875, -2.6074219, -0.48291016, 2.015625, -1.0400391, 0.9428711, -0.37426758, 0.73876953, 2.5039062, -1.5595703, 1.3857422, -3.4082031, 0.95947266, 1.8857422, 2.4628906, -0.31567383, -1.5722656, 0.9477539, 4.4921875, -0.4892578, -0.97314453, 3.0253906, 0.7363281, 2.0507812, 0.4248047, -0.21044922, 0.3010254, 0.6738281, 0.44189453, -0.15161133, -3.25, 1.1337891, 1.8652344, 0.38500977, 0.4189453, -2.4960938, 1.7802734, 1.8671875, -0.66748047, 0.11242676, -1.2412109, 0.32299805, -1.359375, -1.4511719, 2.1914062, -1.7880859, -0.92089844, 2.2714844, -1.2353516, -1.6357422, 0.9526367, -1.4707031, 0.16271973, 1.015625, -0.46557617, 2.0078125, 1.9775391, 0.84716797, 1.5996094, -1.7226562, 0.4489746, -1.2695312, -2.3320312, 0.51220703, 1.1064453, -2.4394531, 1.3417969, -1.5175781, -0.55908203, -1.2080078, -0.33862305, 3.5625, 1.1142578, -1.1425781, 0.016357422, 0.95166016, 0.1295166, -1.5146484, -0.46435547, 0.91064453, -1.9697266, -3.2089844, 0.20703125, -0.47387695, 1.8603516, 1.0859375, -0.90722656, 0.44750977, 2.8457031, 0.9345703, -0.828125, 1.9023438, -0.6201172, -1.6806641, 2.1835938, -3.15625, -0.76171875, -1.1601562, 0.8261719, -0.2902832, -1.4042969, -2.8925781, -1.2988281, 2.0117188, -0.03314209, 2.4746094, -0.5595703, 2.2792969, -0.34301758, 0.1015625, 0.8876953, -2.1367188, -2.7539062, -3.1191406, 0.40454102, -0.9555664, 2.8261719, -3.2851562, -0.12731934, -1.2314453, 0.43554688, 0.55322266, -0.45532227, -1.6660156, -1.4970703, 0.80371094, -2.328125, -2.2910156, 1.5107422, 0.41503906, -1.1982422, -0.12780762, 0.024276733, -2.4609375, -0.37158203, -0.53564453, 0.1895752, -0.7817383, -2.2382812, 1.0830078, 1.4775391, 1.7558594, -0.78466797, -2.6875, 1.0947266, 1.6660156, -0.2541504, 1.5898438, -2.5644531, -0.9248047, -3.8378906, -0.8510742, 1.1816406, 1.4296875, 2.5546875, 0.68847656, 2.2617188, 0.01209259, 1.3525391, -0.41381836, -0.009559631, -1.34375, 4.8789062, -3.3046875, -1.3867188, -0.5830078, 1.8193359, -4.3203125, 1.6835938, 0.69384766, 0.40771484, 2.6308594, 1.6484375, 0.984375, -1.1806641, 0.90185547, 0.55810547, 3.3476562, 0.63378906, 0.4580078, 1.0751953, -0.67871094, -0.8261719, 0.8535156, 0.49121094, 2.2832031, 1.8232422, 0.7709961, -0.06359863, -2.8789062, 0.09222412, -1.4023438, 0.77246094, 0.5751953, 2.0136719, -0.32128906, -0.5332031, -1.3798828, -0.097351074, 2.1464844, -1.1972656, -1.2685547, 1.3515625, 1.5136719, -1.7734375, 0.96191406, -1.0849609, 0.054107666, -0.7446289, 0.2763672, 0.38842773, 0.3425293, 1.0976562, -1.6103516, 0.56933594, -0.84814453, 1.6943359, -0.16955566, -0.0022830963, -0.62402344, -0.19067383, -1.0146484, -1.5400391, -2.7617188, -2.0527344, -0.5908203, 3.6777344, 2, -1.4882812, 0.42236328, -0.12597656, 2.5117188, 0.33935547, -0.057159424, -0.875, -1.2539062, -1.3349609, 0.9067383, 0.46948242, 1.7041016, -0.42749023, -2.3378906, 0.10205078, -0.98095703, -0.7963867, 0.67578125, -0.6142578, -0.92089844, -0.8989258, -0.31054688, 0.15270996, -0.61865234, 3.7246094, -0.51220703, -0.8701172, 1.3945312, -2.5605469, 0.36572266, -1.1337891, -4.4882812, 0.57470703, -1.9765625, 1.6933594, 0.71972656, -0.44067383, -2.1601562, 0.49682617, 1.3183594, -1.9521484, -0.4260254, -2.6386719, 0.22155762, -1.7607422, 2.6953125, 3.4140625, 1.1064453, -1.8105469, -3.2910156, 1.8134766, -2.6367188, -0.5336914, 0.27612305, -2.4316406, 0.18786621, -0.7211914, 1.7216797, -2.2265625, 1.2158203, 1.1953125, 0.07824707, -0.26220703, -2.4257812, 2.6210938, 0.828125, 0.7583008, 0.48339844, 2.875, 2.1035156, -2.7792969, 0.80810547, -0.3239746, 4.1601562, -0.5605469, -1.1347656, -0.0385437, -1.5683594, 0.064331055, -0.16918945, 0.2763672, -0.8803711, -1.3046875, 1.7294922, 1.0058594, 3.1445312, 2.1347656, -0.79541016, -3.1035156, 1.1914062, 1.359375, -1.9921875, -1.7851562, 0.024398804, -0.6958008, -1.9082031, 0.54003906, -1.8056641, -0.26489258, -0.49365234, 0.13256836, -2.5214844, 2.0117188, -0.061309814, 1.9316406, 0.47875977, -2.6503906, -0.12841797, -0.11828613, 0.77197266, -1.7265625, 0.095703125, -1.7832031, -2.4199219, 1.6474609, 1.40625, 0.32983398, 0.10687256, -0.44189453, -0.6455078, -0.6743164, -0.7841797, 2.4882812, -0.6533203, -0.6772461, -0.70996094, -1.1396484, 4.0898438, -2.2714844, 0.5991211, 0.6323242, -1.2626953, -2.9296875, 1.2900391, 1.890625, 1.4287109, -0.74072266, 1.3720703, 2.9082031, 1.6298828, 1.1210938, 1.4287109, 1.1337891, -1.2929688, -0.72998047, 0.56689453, 1.5107422, -0.46875, 0.16638184, 0.68115234, 0.34033203, 3.0332031, 1.7705078, 2.1601562, 0.011642456, 1.3496094, -0.5292969, 0.18603516, -1.3857422, 1.2910156, -1.9033203, 4.46875, -2.0546875, -2.8125, 0.30395508, 3.1425781, 0.72265625, 1.7246094, -0.21240234, -0.19848633, -0.27929688, -4.4492188, -0.4675293, -0.61083984, -0.8071289, 0.7861328, -1.1142578, 1.0820312, 0.56396484, 1.6376953, 2.9296875, -0.18896484, -0.8432617, -0.9511719, -1.7783203, -1.75, -1.4560547, -1.6396484, -5.0078125, -1.03125, -0.46313477, 1.7675781, 1.6650391, 0.09753418, -1.1230469, 0.32836914, -1.0185547, 0.94921875, 2.9121094, -0.32006836, 0.07147217, 2.3105469, 1.0732422, -1.0322266, -2.2363281, -1.0732422, -1.7480469, 0.54052734, 1.9414062, 1.0566406, -1.2480469, -1.2392578, -2.9746094, -4.0664062, 0.20288086, 2.2949219, 1.9355469, 1.1855469, -0.890625, -0.6958008, -0.4765625, -1.1269531, -2.9628906, -2.4003906, 0.6772461, -0.5361328, -1.0273438, 0.63671875, 1.4609375, -1.0107422, 0.37939453, -1.4023438, -0.045440674, -1.1865234, -2.4902344, -0.18530273, -0.11383057, -1.6650391, -0.66748047, 0.09906006, -1.0488281, -0.96435547, -0.037506104, 1.5019531, -0.42797852, 2.4121094, -1.5751953, 1.234375, 2.2089844, -1.6855469, 0.8378906, 1.4677734, -1.6943359, -0.46313477, 2.6386719, 3.9375, -0.62060547, 0.15600586, 0.6425781, 0.37646484, 0.18408203, -1.6201172, -0.32958984, 0.112854004, 1.1337891, 2.4746094, 0.6870117, -0.5444336, -2.0527344, -1.6455078, 1.0605469, -2.5449219, 0.39282227, 0.16430664, 1.3349609, 1.5146484, -0.57373047, -0.3076172, 0.82373047, -0.124816895, -0.5996094, 0.12695312, -1.9921875, 2.8359375, 1.8349609, -1.8544922, -4.5859375, -0.35424805, 2.2070312, 3.1796875, -1.8007812, -0.009056091, 0.13623047, -0.9707031, 0.5776367, -0.86083984, 2.5214844, 1.4277344, 1.5205078, -1.3349609, 0.37646484, 2.3964844, -3.1796875, -0.09857178, 0.50927734, -0.66503906, -2.0410156, 1.5664062, 1.6816406, -1.8544922, 0.051513672, -1.0927734, 0.032104492, -1.4873047, -0.2919922, 0.3671875, -2.7246094, 1.0683594, -1.3896484, -2.9277344, -2.5917969, 1.6865234, -0.7988281, -0.120666504, 0.6479492, 2.2089844, -0.11706543, -0.7714844, -0.11193848, 0.9238281, -0.11053467, -0.7133789, -2.4355469, 1.0791016, 1.3691406, -1.7275391, 1.1699219, 2.2070312, 1.9570312, 0.6425781, -0.890625, 0.8720703, 2.7265625, 0.32226562, 3.8046875, 3.1953125, 0.9350586, 2.9453125, 2.1523438, 2.0839844, 1.7392578, -1.9667969, -0.45043945, 1.1621094, 0.7236328, 1.6113281, -2.59375, -0.19604492, -0.35058594, 0.17089844, 0.10455322, 1.2373047, 2.2207031, -3.234375, 0.11968994, -2.15625, 0.15026855, -1.6308594, 1.1621094, -0.29248047, 0.68847656, 0.4501953, 0.45361328, 1.0693359, 0.81640625, -0.43359375, 0.18981934, -0.61376953, 2.0019531, -0.6435547, -0.17944336, -2.9199219, -0.6953125, -0.26660156, 1.8085938, 0.31713867, -0.7871094, -0.115600586, 1.5898438, 0.66845703, 1.0507812, 1.2431641, -0.50097656, 0.03640747, -1.6142578, 1.4541016, 3.4746094, -0.4169922, 2.7382812, -0.37695312, -3.3261719, -3.8574219, 0.7758789, 0.48168945, -0.40039062, 0.41210938, -2.6132812, 2.3964844, -2.6367188, 1.5478516, -2.1015625, -1.7802734, -0.40063477, -1.2099609, -1.1425781, 0.25048828, -2.2402344, 1.2841797, 3.1054688, -0.66503906, 0.055267334, 1.3847656, -0.0015563965, 0.57128906, -0.021972656, -0.48486328, 0.48486328, -0.5292969, 3.1132812, -0.45654297, 0.5385742, -0.5390625, 2.7792969, 0.7319336, 0.6933594, 0.5878906, -0.8510742, 1.2548828, 0.4814453, 0.8046875, 0.7705078, -1.53125, -0.8886719, 0.37182617, 0.99853516, -1.5175781, 0.028030396, 1.6484375, 1.7685547, -0.7636719, 0.70751953, 0.7314453, -1.4794922, 2.3300781, 0.48779297, -1.4003906, -0.84716797, 0.78515625, 0.61083984, -2.7988281, 1.5791016, 1.09375, -1.2773438, -0.31762695, -2.8789062, -0.8964844, -0.7480469, -0.7363281, -2.0722656, 0.35253906, -0.6723633, -1.9365234, -0.40161133, -0.5449219, 1.9316406, 2.8300781, -0.10614014, 0.48999023, -0.72802734, -1.7724609, -0.30249023, -1.5673828, -1.3349609, 1.1445312, 1.7802734, 1.2519531, 1.2197266, -2.3710938, -2.671875, -0.7817383, -1.265625, 2.0957031, 0.2607422, -3.3222656, 1.1357422, 0.6826172, 0.9873047, -1.2333984, -2.4570312, -1.2099609, 0.8701172, 2.3710938, -1.4570312, 0.7636719, -1.0380859, 0.86083984, 1.5644531, 2.9882812, 1.59375, 0.5800781, -0.875, 1.1845703, -0.14978027, -2.7402344, 0.5673828, 0.59765625, -0.72753906, 0.81103516, 1.4267578, 2.6855469, -0.10205078, -0.88134766, -1.5771484, 0.19116211]}, "B07PYVNJ2Z": {"id": "B07PYVNJ2Z", "original": "Brand: GASPRO\nName: GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More\nDescription: How to use it:
The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

Great for:
RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

Warning: Only for OUTDOOR Use.\nFeatures: \u3010Well Gas Control \u3011Two-stage regulator results in a more consistent inlet pressure between the first and second stage\n\u3010Standard Connector\u3011QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Outlet Pressure\u301111\" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow\n\u3010 Compatibility \u3011Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more\n\u3010 High Quality \u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "embedding": [0.06890869, 0.57373047, 0.8769531, 2.2128906, -1.7607422, 0.40454102, 1.9853516, -1.9912109, 2.0195312, 0.23754883, 0.4333496, -0.28515625, 1.9423828, -2.2832031, 3.0976562, 0.93847656, 0.85253906, 0.13122559, 1.3808594, 1.6757812, 0.73046875, -2.1347656, 3.734375, -0.3232422, 1.3320312, -1.1337891, 2.6464844, -2.9082031, -1.1621094, -0.8676758, 0.5678711, 0.55615234, -0.6796875, 0.4194336, -2.6367188, -0.016921997, -1.0263672, -0.44580078, -3.03125, -0.97314453, -1.6835938, 0.5361328, 3.3671875, 0.26367188, -2.7050781, -0.032165527, 1.5029297, 0.81591797, 0.044799805, -0.85791016, -0.6591797, 1.1757812, -0.6796875, 0.40063477, -2.6074219, 0.107299805, -2.9316406, -2.3886719, 0.95996094, 1.6054688, 2.4570312, -0.25219727, -3.3964844, 1.15625, -1.1210938, 1.1933594, -0.5493164, -0.010139465, 0.4050293, 1.2773438, 0.4074707, 0.9091797, 0.3322754, -1.6943359, -0.28564453, 0.91503906, -3.6328125, -0.25732422, 2.5449219, 0.05508423, -1.9960938, 2.8886719, 1.640625, -3.0683594, 0.8466797, -0.4182129, -0.32861328, -0.23486328, 1.2304688, 1.6054688, -2.203125, 2.7675781, -2.9296875, -2.3691406, 0.8876953, 2.1855469, 0.58935547, 2.4199219, 2.5195312, 0.77734375, -0.41186523, -0.37719727, 0.38378906, 1.671875, -2.4375, -0.9506836, -0.4584961, 1.1513672, -2.8203125, -0.50390625, -0.7373047, -0.48046875, 1.3554688, -1.6337891, 0.7714844, -1.2138672, -1.2275391, -1.5136719, 3.5703125, 0.62060547, 2.7832031, 1.0859375, 0.34814453, -1.1728516, 1.4609375, 1.3789062, -0.5776367, 0.13647461, 3.7675781, -1.5146484, -0.2208252, -2.3046875, 2.578125, 0.1907959, 1.5048828, -2.875, -2.0214844, -3.0683594, -1.6025391, -0.18273926, -4.2265625, -0.8828125, 1.7548828, 0.6069336, -4.4023438, 1.2480469, -3.4589844, 1.3203125, 3.1132812, -2.6386719, 1.5664062, -1.8964844, -0.28076172, -1.4882812, 2.5117188, 1.0263672, 0.09509277, -0.9785156, 2.0996094, 1.0078125, 1.6455078, -2.1875, -3.5253906, 1.5410156, -0.3071289, -1.8271484, 0.5673828, 1.4570312, -0.65722656, 0.7895508, -0.14941406, -3.7871094, 1.4052734, -0.5908203, 0.39111328, -0.44335938, 1.8925781, 1.3652344, 3.3027344, 0.8286133, -3.3203125, -2.4394531, 0.5986328, -1.0615234, 2.3261719, 0.27539062, -0.6142578, -0.76660156, 2.3710938, -1.6796875, -2.2382812, 0.7402344, -0.08972168, 0.46118164, 0.890625, -3.0410156, -3.0996094, -0.6621094, 0.68066406, 1.1015625, -2.5429688, -0.13671875, -0.5620117, 2.1601562, -1.9833984, 0.37036133, 1.3564453, 0.95947266, 0.3166504, 1.6494141, 0.09082031, 0.83496094, 1.328125, -0.8823242, 0.09875488, -0.97021484, 2.3164062, 3.4667969, 1.1347656, -0.16796875, 0.077697754, 0.7885742, 1.0869141, 1.0683594, 2.3652344, 0.47973633, -0.029434204, 0.9526367, -2.3554688, -1.9003906, 3.1152344, 1.1699219, 0.05960083, -0.6040039, -0.82373047, 2.6679688, 1.0986328, 0.1550293, 0.7578125, 1.6591797, 0.4958496, -0.9868164, -2.4902344, 0.2121582, -0.11541748, 0.3293457, -0.56591797, 0.7626953, 2.7773438, -0.79003906, 0.73095703, -0.4152832, -1.5068359, -1.1162109, -1.1611328, -0.6176758, -0.12780762, 2.0136719, -0.38183594, -2.4453125, 1.6914062, 1.4609375, 0.060638428, 1.3759766, 1.5908203, -0.0035190582, 0.41308594, -2.1777344, -0.8652344, 0.3779297, -0.39331055, 2.5898438, 2.0273438, -0.36621094, 1.4208984, 1.0908203, -1.0986328, 1.9384766, -0.78125, -0.0006222725, 1.5185547, -0.8510742, 0.94921875, -2.234375, 0.33789062, 2.0644531, 1.3525391, -0.10290527, -0.9379883, 0.765625, 3.3847656, -0.8769531, -1.3066406, 1.7099609, 2.7890625, 0.9926758, 1.7548828, 1.1142578, 0.44140625, -0.7026367, 0.123168945, 0.78125, -2.0917969, 0.5385742, 2.7226562, -0.64160156, 1.0712891, -1.7841797, 1.0800781, 0.7167969, -0.9160156, -0.42285156, -2.8808594, -0.038970947, -0.8642578, -2.2929688, 1.0527344, -1.7871094, 0.40429688, 2.0839844, -0.24902344, 0.28979492, 0.25097656, -2.6679688, -0.734375, 2.2460938, -0.8881836, 0.86328125, 1.7714844, 0.95996094, 1.8662109, -0.25830078, 0.52978516, -2.2753906, -1.6914062, 0.98876953, 0.5576172, -3.9628906, 1.3603516, -1.8730469, -1.0136719, -1.5634766, 0.053833008, 3.1679688, 1.2578125, -0.18615723, -1.5146484, 0.7832031, 0.3815918, 0.15124512, 0.09289551, 2.5761719, -0.47509766, -1.4423828, -0.0423584, -0.71533203, 0.609375, 1.3955078, -1.3222656, -0.06414795, 0.93310547, 0.7861328, -0.15405273, 1.2539062, 0.7836914, -1.5195312, 0.8378906, -4.3945312, -1.0595703, -0.70410156, 1.0878906, -0.71777344, 1.3974609, -2.0117188, -1.9404297, 0.025024414, -2.2460938, 0.7260742, -0.4958496, 1.4960938, -2.3027344, 2.1621094, 0.10064697, -1.4423828, -3.3261719, -1.9257812, 1.5478516, -2.296875, -0.8486328, -1.0537109, -0.26367188, -0.11602783, 1.0878906, -0.58447266, -0.81640625, -2.7578125, 0.27954102, 0.38964844, -0.42895508, -0.035491943, 1.6777344, -0.33520508, -1.7558594, 0.3864746, -0.44702148, -1.1386719, -0.17956543, 0.27026367, -0.038726807, -0.3095703, -0.8618164, 0.7001953, 0.81689453, 0.9042969, 0.4897461, -3.3183594, 0.4814453, 1.34375, -0.70996094, 1.3125, -1.5537109, -1.3486328, -2.6425781, -1.8300781, 2.1230469, 2.0527344, 2.3320312, -0.06222534, 0.21325684, 1.6640625, 0.60595703, -1.21875, -1.8300781, -0.6972656, 4.125, -3.6777344, -1.0029297, 0.39038086, 0.35546875, -2.6972656, 0.5234375, 0.18273926, -1.1464844, 2.4824219, 1.1640625, 0.7338867, -0.65478516, 1.3105469, 0.46240234, 0.8154297, 0.4814453, -0.17163086, -0.35375977, 0.86865234, -1.4130859, 1.9335938, 1.1621094, 1.3847656, 1.34375, 0.23217773, 1.2490234, -2.1484375, 1.0175781, -0.48291016, 0.671875, 0.23913574, 2.1113281, 0.19824219, -0.5131836, -1.1162109, -0.07208252, 1.3623047, -1.8955078, -1.9501953, 0.17443848, 1.9423828, -0.9770508, -0.57714844, -0.96777344, 0.41088867, -0.31860352, -0.80908203, 1.0429688, 1.2695312, 1.578125, -0.87060547, 0.30371094, -1.5664062, 1.5302734, -2.3574219, -0.20959473, -0.32055664, 0.054901123, -1.2753906, -1.1650391, 0.15185547, -3.1601562, -0.4416504, 3.5859375, 1.7294922, -2.3710938, 0.55126953, -1.8632812, 1.7011719, 1.6787109, 0.011764526, 0.080200195, 0.3347168, 0.78222656, -0.43066406, -1.8046875, 2.6347656, 0.28808594, -2.9511719, 0.030822754, -2.4707031, -0.6621094, -0.03640747, -0.5449219, -3.4472656, 0.6035156, -1.4472656, 1.2861328, -0.8227539, 3.6210938, -1.4082031, -0.011619568, 1.4570312, -4.2734375, -0.5595703, -3.0273438, -6.5078125, 0.39501953, -3.1289062, 0.3215332, 2.3613281, 1.0849609, -0.24072266, 1.0898438, 0.3161621, -4.0273438, -0.96875, -1.5693359, 1.5117188, -3.2246094, -0.7753906, 2.40625, 0.9980469, -1.2421875, -1.6914062, -0.11645508, -2.3378906, -0.1550293, 0.4555664, -1.9589844, -0.54296875, -1.5634766, 1.2167969, -0.5253906, -2.046875, 0.96191406, -1.2138672, -0.5942383, -3.1796875, 2.5273438, 1.5898438, -0.121398926, -1.6425781, 2.3554688, 2.6425781, -1.2041016, -0.4724121, 1.3486328, 3.703125, -0.7089844, -2.5839844, -0.57910156, -0.5571289, -0.24658203, -0.8178711, -0.23864746, 0.2512207, -1.6679688, 2.4121094, 1.1728516, 1.9238281, 0.6948242, -0.18847656, -4.5078125, 0.23327637, -0.5854492, -1.1494141, 0.25610352, -0.49267578, 0.00655365, -2.7167969, -0.48291016, -1.6347656, -1.7470703, -1.7080078, -0.8769531, -3.265625, 1.5419922, -1.7363281, -0.06100464, -0.5463867, -1.3847656, -0.9760742, -2.2207031, -1.2636719, -1.6503906, -0.50341797, -2.4472656, -0.90283203, 0.58496094, 1.7880859, -0.7871094, -0.7216797, 0.14831543, -2.1445312, 0.30297852, 0.34155273, 0.19018555, 0.28393555, -1.5390625, 2.5917969, -0.43139648, 2.8984375, -0.40283203, 0.77246094, 1.7939453, -0.16040039, -2.7421875, 1.2480469, 2.4707031, 2.75, 1.3613281, 0.7060547, 1.8613281, 2.3007812, 1.3994141, 0.04360962, 1.4667969, 0.22998047, 0.81591797, -1.0263672, 1.8535156, -1.6083984, -1.0205078, 1.2216797, 1.7539062, 1.1474609, 1.7607422, 1.3486328, -1.6806641, 1.3613281, -0.5527344, -3.4960938, -1.3457031, -0.30786133, -1.5908203, 3.3203125, -0.3408203, -2.7363281, 1.1992188, 2.9648438, -0.31079102, 1.8535156, 1.0556641, -1.2910156, -0.48388672, -2.9277344, -2.3671875, -0.7294922, -0.0647583, 1.9775391, -3.4863281, 1.40625, -0.265625, 2.1035156, 2.0292969, 0.6020508, -0.91796875, -1.078125, -1.9443359, -0.08203125, -1.5009766, -1.4375, -2.5527344, 1.4492188, 2.4277344, 1.4160156, 0.99072266, 0.5209961, -0.58935547, -1.1494141, -2.2832031, -0.7939453, 1.1484375, 0.9785156, -1.6162109, 3.390625, -0.1550293, -0.08355713, -0.35205078, -0.421875, -1.7236328, 1.7412109, 2.6308594, 2.1503906, -0.84716797, -0.51708984, -2.4628906, -6.2265625, 0.069885254, 2.3339844, 0.55566406, 0.9536133, -1.9941406, 0.13293457, 1.7089844, -0.3540039, -0.5083008, -4.0351562, 1.0986328, -0.3466797, -0.019638062, -1.1171875, 1.4277344, -0.22351074, 1.0507812, -1.0185547, -0.4416504, -0.7919922, -3.2265625, -1.0898438, 1.5615234, -1.7587891, 0.3371582, 2.4238281, -1.2636719, -1.9648438, 0.93652344, -0.57128906, -2.6992188, 1.1328125, -1.5976562, 0.46948242, 0.63720703, -1.7138672, 1.515625, 1.6904297, 0.80615234, 0.82910156, 1.2412109, 3.2050781, 0.2980957, -0.24353027, 0.6376953, 1.0419922, 0.07556152, -1.9755859, 0.21936035, 0.7915039, 1.0400391, 2.6933594, -2.4804688, -1.0576172, -3.5371094, -2.2988281, 0.8305664, -2.2578125, 1.2802734, 0.44384766, 1.7890625, 0.1439209, -0.66503906, 0.25073242, 0.66308594, 0.10626221, 0.40551758, 0.94189453, -1.7460938, 2.6699219, 0.85839844, -1.1318359, -3.2402344, -0.5205078, 1.9648438, 2.9121094, -0.012573242, 1.2431641, 0.044708252, -1.1621094, 0.69970703, -0.053527832, 1.1777344, 1.2451172, 0.7050781, -0.46655273, -0.7841797, 0.44360352, -2.1992188, 1.1337891, 1.4042969, -1.4863281, -0.78222656, 1.3408203, 2.5078125, -2.9042969, 0.87109375, -1.3525391, -0.0028705597, -1.8808594, -1.6826172, 1.1738281, -3.1640625, -0.00049352646, -0.47460938, -2.8828125, -3.0976562, 2.8847656, 0.8330078, -0.9477539, 0.36083984, 3.3417969, -1.0761719, -0.40576172, 2.0878906, -0.60009766, -0.04135132, -0.24194336, -2.6523438, -0.4482422, 1.421875, -3.0703125, 0.31103516, 2.2539062, 0.4572754, 0.8417969, 0.67529297, 1.4667969, 3.0898438, 1.8837891, 2.0644531, 2.8046875, 0.6899414, 2.2324219, 1.2695312, 2.4316406, 1.9755859, -1.3232422, 1.0576172, 0.92626953, 0.82470703, 1.0498047, -1.1230469, 0.06915283, -0.88183594, 0.23217773, 0.3137207, 0.9946289, 1.8652344, -2.7597656, -0.73339844, -0.30639648, -0.2800293, -3.984375, 1.0302734, -1.9355469, 0.29223633, 0.109680176, -0.25170898, 0.40722656, 1.2255859, -1.6269531, -0.24487305, 1.0673828, 3.7578125, -0.21716309, 0.022903442, -1.8554688, -2.46875, 1.4697266, 1.8300781, 0.43530273, 0.4272461, 2.2714844, 0.9628906, -1.2792969, 0.56152344, 1.5087891, -3.2167969, 0.60058594, -1.8125, 3.03125, 2.7265625, -1.0556641, 2.2773438, 0.72509766, -1.4726562, -4.28125, 2.71875, -0.14343262, 0.2644043, -0.15429688, -3.4941406, 2.1796875, -0.4165039, 1.0117188, -2.7519531, 0.28637695, 0.4921875, -1.3505859, 1.7236328, 0.52197266, -2.4648438, 3.1171875, 1.4453125, -2.3691406, -0.13696289, 1.5966797, 0.93310547, 0.41210938, 1.4912109, 0.6040039, 0.060058594, -0.3564453, 2.7265625, 0.9760742, -2.4765625, 1.4033203, 3.2226562, 0.087646484, 1.0566406, -0.90283203, -0.48706055, 1.3369141, 0.9375, -0.7885742, -0.7578125, -2.8007812, -0.48461914, 0.7807617, 1.1992188, -0.8955078, -1.1572266, 0.4572754, 0.33691406, -2.5625, -0.37475586, 1.3681641, -2.1367188, 2.5214844, 1.109375, -1.2949219, -0.60791016, -0.08190918, 1.2998047, -1.8476562, 0.25512695, 0.4814453, 0.39624023, 1.3916016, -2.1679688, -0.071777344, 2.0234375, -0.95947266, -1.0488281, 0.9814453, -0.50439453, -0.5253906, -0.023635864, -2.1738281, 1.1230469, 3.5078125, 0.24768066, 1.0546875, -1.2587891, -0.55371094, -0.2668457, -2.1875, -1.1464844, 0.52978516, 2.6210938, 1.7177734, 1.3134766, -0.56396484, -2.5332031, 0.048553467, -0.077697754, 1.859375, 0.87890625, -0.4777832, 1.2841797, 1.5830078, 1.3945312, -0.6801758, 0.70410156, -0.18933105, 0.12445068, 1.5585938, -1.8945312, 2.4238281, -1.5771484, 0.53125, 0.9428711, 4.6015625, 0.80566406, -1.0068359, 0.5957031, 1.4257812, 1.2568359, -1.0410156, 0.76904297, -0.96875, -0.29174805, 0.85791016, 2.0996094, 3.5566406, 2.0585938, -0.45532227, -2.4140625, 1.3212891]}, "B000C77UYA": {"id": "B000C77UYA", "original": "Brand: Manchester Tank\nName: Manchester Tank & Equip 10393.1 11lb Propane Tank\nDescription: \nFeatures: Colonial white powder coated finish\nVertical cylinder design\nProduct weighs 11 pounds\nAll cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E\nAll Manchester cylinders are triple tested with dry pneumatic air\n", "embedding": [1.0820312, 1.6191406, 2.6875, 2.328125, 0.3552246, -2.4414062, -0.0579834, -1.4492188, -1.3652344, 0.40600586, 1.5400391, 1.3466797, -0.48168945, -1.0605469, 0.38452148, -1.5830078, 0.3173828, 0.65722656, 0.5683594, 1.6181641, 1.9951172, 0.13964844, -0.2866211, -2.4667969, 0.5810547, 1.5449219, 3.6386719, -1.453125, -0.57177734, -0.3984375, 1.5458984, -0.49145508, -0.3178711, 1.5878906, 0.90966797, 0.32983398, -0.5317383, -1.3544922, -5.4921875, 0.4609375, -2.671875, -0.62060547, 1.1621094, -0.9277344, -1.8378906, 0.07745361, -1.0146484, -1.9658203, 0.7890625, -0.9604492, -0.018035889, 1.8232422, -0.003255844, 0.22143555, 0.4465332, 1.2900391, 3.7246094, -0.033325195, 0.7734375, -0.7133789, 3.2988281, -0.48608398, -0.9819336, 1.3916016, 0.08276367, 2.8007812, -1.5029297, -0.45703125, 1.1230469, 0.26367188, 0.8774414, 1.4609375, 1.0839844, -2.0742188, 1.3710938, -0.5683594, -2.7597656, 2.1894531, -0.5854492, -2.1171875, -0.9628906, 1.3164062, 0.37402344, 0.20739746, -2.0820312, -0.4411621, -0.18103027, -0.73046875, -2.8476562, 0.6464844, -1.0361328, 1.4179688, -1.9365234, -4.4101562, 1.1845703, -1.5380859, 0.30566406, 1.6201172, -0.008895874, 1.2392578, 0.4399414, 0.4741211, -0.54248047, 0.6713867, -1.6787109, -1.28125, 1.5888672, 0.8676758, -1.5986328, 0.88964844, -0.765625, 0.89941406, 0.58251953, -0.2607422, 1.0458984, -0.5600586, 2.0019531, -1.4824219, 3.5820312, 0.24145508, 3.7246094, -1.4882812, 2.0878906, 0.4951172, -0.89697266, -0.5698242, -0.9165039, 0.99902344, 2.8710938, -0.39941406, 1.3818359, -0.703125, 3.1015625, -0.70458984, -0.29736328, 0.024490356, 0.8823242, -2.0722656, -0.78515625, -1.0615234, -3.3125, 1.6933594, 0.65527344, 0.09301758, -3.4550781, -2.7265625, -0.6147461, -1.1064453, -1.6865234, -1.4013672, -0.13378906, -1.3105469, -1.4755859, 1.3574219, 1.6269531, 1.8378906, -2.453125, -1.2324219, 0.38208008, 2.0644531, 1.4326172, 0.59472656, -0.8833008, 1.4726562, -1.8925781, -1.9462891, 0.44970703, -0.7236328, -1.5966797, 1.9189453, 2.3417969, -0.41015625, -0.18078613, -0.08105469, -0.6513672, -0.5800781, 1.8486328, 1.3730469, -0.45776367, -0.66259766, -4.2421875, -1.0849609, -1.5791016, -2.5019531, 3.5253906, -0.17077637, -2.4316406, -2.1035156, 1.1953125, 0.7705078, -1.6601562, 0.22387695, 0.62158203, -0.17553711, -0.3400879, -2.6113281, -0.5917969, -2.4785156, 2.2851562, 2.9882812, -0.35766602, 0.035369873, 0.7841797, -1.0605469, -0.40698242, -2.4511719, 2.0644531, 0.074401855, 1.7714844, 1.8535156, -1.0996094, -1.5263672, 0.98046875, -1.7626953, 0.14221191, -0.59472656, -0.17163086, -0.65234375, 1.3652344, 0.84277344, 0.49438477, 0.82958984, 0.41455078, 0.32666016, 0.081970215, 1.1474609, 1.2861328, 2.6230469, -3.4023438, -0.40771484, 1.8261719, 3.140625, -1.3066406, 0.4013672, 1.3857422, 1.1835938, 0.49145508, -1.3056641, 1.6611328, -2.0546875, 0.32885742, 1.9980469, -0.97558594, -1.3212891, -0.8886719, -1.0517578, -0.11859131, 0.8857422, 1.9160156, 0.78808594, 0.30688477, -1.3730469, 0.20690918, -0.14013672, -2.4277344, 1.7304688, 0.21386719, 0.09112549, 0.5830078, -2.9023438, 0.93408203, -1.6689453, -0.17492676, -0.5654297, 0.6816406, 0.4741211, 2.3398438, 0.5083008, -1.2646484, -0.61621094, 1.8164062, 1.0742188, -1.2050781, -0.5444336, 1.5605469, 1.8007812, -0.3959961, 3.2441406, -0.22302246, 1.2011719, 0.82910156, -1.1787109, 1.0410156, -3.40625, 0.7871094, 0.6958008, 1.1455078, -0.12866211, -2.3125, 2.0800781, 2.7949219, -0.73046875, -0.27368164, 1.8291016, 2.0390625, 3.2617188, 4.3789062, -0.45581055, -0.7919922, -2.0078125, 0.97558594, 0.40673828, 0.060821533, 1.0839844, 2.7363281, -0.027389526, -0.4177246, -0.28979492, 0.64208984, -1.9755859, 1.6835938, 0.7294922, -1.6992188, 0.4741211, -0.7211914, 0.17932129, 1.4501953, -3.4570312, 1.2714844, 1.3369141, 2.0136719, 0.92626953, 1.8876953, -0.40551758, 2.5175781, -0.55810547, -2.5351562, 1.7695312, 1.3457031, 1.0224609, 3.1308594, -1.1318359, 2.6230469, -2.9335938, -1.0019531, 1.4169922, -2.1484375, -2.0859375, -0.26000977, -2.2695312, 1.0654297, 4.3242188, -1.6357422, 2.8613281, 0.9506836, 0.58984375, -1.1689453, 1.4257812, -0.2854004, -3.1582031, 1.3671875, 1.6660156, -2.2597656, -3.109375, 0.4724121, 0.34765625, -0.71777344, 2.2949219, -1.0058594, 0.90966797, -0.28564453, 0.076049805, -0.39916992, -1.6894531, -1.0507812, -0.1616211, 0.4104004, -3.8535156, 2.1386719, -2.1113281, 1.1328125, -1.8037109, -0.24536133, 0.1303711, -1.6855469, 0.7470703, -0.47045898, 4.125, 1.0419922, 0.57714844, 0.6503906, 0.17468262, 0.5361328, -1.5136719, -2.7890625, 0.48461914, -1.7988281, 0.45532227, 0.2565918, -5.0585938, 0.96191406, -0.61816406, 1.5302734, -0.20227051, 1.1875, -2.1523438, -0.76123047, 0.22631836, 1.0390625, 1.2792969, 0.26904297, -0.43701172, -2.2402344, -0.44067383, 1.0830078, 1.7080078, 0.98046875, 0.7470703, -0.30297852, -0.20239258, 0.1619873, 0.7050781, -1.0166016, 2.1191406, 0.8359375, -4, -0.5566406, 0.44189453, 1.5869141, 0.6855469, -1.6992188, -1.8457031, -3.328125, -0.24230957, 1.9433594, 3.0351562, 2.6367188, 1.2431641, -0.7519531, 0.024902344, 0.61376953, -1.0820312, 0.27661133, -0.32836914, 0.5048828, 0.16906738, -1.9785156, 2.1132812, 2.6445312, -2.75, -2.1777344, 0.50390625, -0.88964844, 0.3984375, -0.5727539, -0.8652344, -1.2958984, 1.5488281, 1.8066406, 0.18139648, 0.035491943, 2.0722656, 1.0556641, 2.3730469, -1.0341797, -1.0537109, 1.2978516, -2.0234375, -2.03125, 0.3479004, 1.2958984, -1.0292969, 0.3149414, -1.4238281, -2.0097656, -0.0034236908, 0.79345703, -0.21789551, 2.1660156, 0.34765625, 1.7158203, 0.6923828, -2.1972656, 0.67041016, 1.3583984, 0.8886719, 0.041748047, -0.46801758, -0.8432617, 0.93359375, -1.1230469, 1.2148438, -0.5878906, 0.5566406, -0.56396484, 0.08099365, -0.41015625, -1.4414062, 2.7382812, -1.7158203, -0.20336914, -1.0214844, 0.88964844, -2.4179688, -2.6386719, -0.8173828, -0.69921875, -1.1318359, 1.921875, -1.421875, -1.8339844, -1.9628906, 0.24194336, 0.31420898, 3, -1.7431641, 0.3383789, -0.609375, -0.23522949, 0.47729492, -0.1307373, 0.22802734, 2.3613281, -1.7919922, -0.86865234, -1.0166016, 1.4335938, 0.8701172, -0.3671875, 1.71875, -1.5683594, -2.2890625, 4.5546875, -0.6948242, 2.5566406, 0.5336914, 0.33984375, 1.0371094, 0.70751953, 1.8574219, -1.7519531, -1.7402344, 0.50341797, -1.2001953, -0.0017881393, 1.8378906, -0.36621094, 1.0097656, 0.4736328, -0.09857178, -2.0996094, -2.6132812, -1.1445312, 0.3876953, -0.81347656, -1.6044922, 1.1894531, 2.9785156, -3.984375, -1.4042969, 0.50341797, -2.4785156, -1.4492188, -1.828125, -0.31469727, 1.4541016, -0.4038086, 0.60302734, -1.6933594, 0.43945312, -0.20129395, 0.53222656, -1.1015625, 0.037750244, 2.7578125, 0.1439209, -0.37231445, 2.2207031, 0.4790039, 3.2460938, -1.7666016, -0.44311523, -0.44921875, 1.6689453, -0.10797119, -2.6015625, -0.9838867, -1.2441406, 0.99609375, -0.31396484, 0.4873047, -0.92041016, -0.8286133, -1.3427734, 1.5644531, 1.0371094, 0.96435547, -0.78027344, 2.0390625, 1.0263672, 1.7919922, -1.0273438, -0.77734375, 0.5488281, 0.014785767, -0.26391602, 2.4609375, -2.828125, -0.6645508, -1.8486328, 0.30151367, -3.84375, 1.2880859, 2.4160156, 1.2587891, 0.2993164, -0.17285156, -1.4550781, 0.50341797, 2.0605469, 1.6611328, -0.27148438, -0.4560547, -1.3007812, -0.019058228, 1.9589844, -1.6328125, 0.44921875, 1.2539062, -0.9042969, -0.8066406, 0.14208984, -0.83447266, -1.8476562, -0.24072266, -1.2568359, -0.7006836, 2.7851562, -1.8310547, 3.7460938, 0.5180664, 0.38793945, 0.55126953, 2.6992188, 1.3105469, 0.10858154, 2.7304688, -2.0292969, 2.0429688, -0.26123047, 0.5498047, 1.6884766, 0.6357422, -2.3925781, -0.078125, -0.4897461, -0.39208984, 0.6479492, -0.14526367, 1.1015625, -0.7128906, -0.18530273, 0.8935547, 1.0908203, 0.21350098, 1.6142578, 1.4082031, 0.5620117, -0.92871094, -0.92626953, 0.28588867, 2.9941406, -1.1230469, -0.8300781, -0.7167969, 1.9013672, -0.11315918, 0.87109375, 2.2265625, -0.88964844, -1.0625, -1.6220703, -1.8769531, -1.0097656, -0.59472656, 0.030090332, 1.0361328, 1.0322266, 0.50146484, 0.08459473, 3.5253906, 0.26293945, -0.67285156, -0.21850586, 0.54785156, -1.1171875, -1.6416016, -0.7163086, -3.2167969, 0.3334961, -1.7304688, -0.2841797, -0.4416504, 1.5048828, 5.4140625, -1.359375, 1.125, 0.7211914, -0.044403076, -2.0058594, -0.7128906, 3.3125, 0.63427734, 1.8183594, -1.5859375, -1.6660156, -0.921875, 0.95458984, 1.4257812, 0.5107422, -0.4724121, 0.48339844, -2.3945312, -3.7988281, -2.7285156, -0.068603516, 0.8979492, 1.2548828, -0.8442383, -1.8828125, 0.36791992, -0.8041992, -0.14160156, -2.4023438, 1.0820312, -1.5146484, 0.3647461, -2.2207031, -0.29418945, 1.0859375, 1.4208984, -0.34033203, -0.08325195, -0.45361328, -2.15625, -4.6757812, 0.8173828, -0.68408203, -0.6152344, 0.03463745, 0.6982422, 2.7285156, 2.2167969, 1.8828125, -1.3476562, 1.4785156, -1.2167969, 0.3083496, 2.0859375, 0.059417725, -0.4404297, -0.10205078, -0.107666016, 0.28271484, 2.2167969, 1.0820312, -2.7246094, -0.2286377, 0.1932373, -0.6479492, -0.60791016, 1.9462891, 1.6474609, -1.6357422, 2.4277344, 2.5644531, 1.2011719, -1.6621094, -0.6533203, 0.55810547, -2.296875, -0.77685547, -0.41308594, 0.81884766, 0.953125, 0.7080078, 1.8056641, 0.83203125, 0.04083252, -0.12988281, 1.1894531, 0.9067383, -3.6425781, 0.7866211, 0.12176514, -2.6582031, -1.2998047, 0.35351562, 2.8886719, -0.017959595, -0.11920166, -0.69677734, -0.2565918, -2.1738281, -0.14111328, -0.19848633, -0.8457031, 1.0947266, 1.1884766, -1.796875, -0.108947754, 4.4335938, -1.9140625, 1.0751953, 1.5244141, -0.33544922, -0.84033203, 2.0722656, 3.0742188, -0.79541016, 0.9423828, -0.97558594, -0.98291016, -1.0810547, -0.62353516, 1.8671875, -2.3554688, 0.49804688, -0.1463623, -0.8232422, -1.7304688, 0.8178711, -0.078308105, -1.4169922, 1.8964844, -0.7133789, -2.4824219, -1.0576172, 1.4492188, 0.5317383, -0.3955078, -0.85302734, 0.60253906, 1.2617188, 3.3515625, -2.9902344, 1.3085938, -0.66796875, 1.7910156, -0.42456055, -2.2011719, -1.1376953, 0.46826172, 2.4335938, 2.390625, 3.8984375, -1.2109375, 0.47558594, 0.3491211, 1.0234375, 2.8496094, -0.765625, 0.8618164, 0.1270752, -0.9194336, 0.94091797, -0.38452148, 0.609375, -0.29907227, 0.703125, -0.22143555, -0.40625, 1.7910156, -1.4775391, 0.072509766, 0.17700195, 1.5371094, 0.9448242, -0.54541016, 0.671875, -1.7236328, -0.65527344, -0.3864746, 1.0117188, 0.8408203, -0.9350586, 1.1738281, -1.1494141, 1.7792969, 1.1757812, 0.26757812, -2.34375, -1.0878906, 0.36523438, -0.19104004, 1.7304688, -0.025405884, -1.1464844, -1.4003906, -2.3867188, -0.73046875, -0.48461914, -0.40893555, 1.4150391, 0.83935547, 1.4824219, 1.4833984, -0.26000977, 2.2265625, -0.07128906, 0.13513184, -3.3769531, 0.16381836, 0.93359375, -0.66015625, 1.1767578, -2.7578125, -1.7871094, -3.3671875, 0.104003906, -3.40625, -0.1796875, 1.5, -4.8242188, 0.3112793, -0.34887695, -0.17211914, 1.8945312, 1.6611328, -0.9067383, -0.20483398, -0.06842041, 0.7451172, -0.55908203, -1.3730469, -0.48413086, 2.390625, -3.1269531, 1.6142578, -0.6142578, -0.2722168, -1.59375, 2.9824219, 1.3837891, 1.5019531, 2.0742188, -1.1855469, 1.2705078, -0.8027344, -0.3347168, 0.36499023, -0.48901367, 0.21386719, -1.2802734, -2.5585938, 1.2949219, -0.037475586, -2.3964844, 0.5253906, -2.2402344, -1.4619141, 1.0224609, 0.46557617, -1.0332031, -0.5185547, -2.4960938, 0.020095825, 2.1679688, 0.86621094, -2.1328125, 0.88378906, -0.45898438, 2.3046875, 0.30419922, -1.4658203, -0.78564453, -0.4597168, -1.4726562, -1.3974609, 0.1282959, -0.3112793, -2.5546875, 1.8330078, -1.2119141, -0.13354492, -0.79052734, -0.42358398, -0.40942383, -1.046875, 1.5683594, -0.62841797, -1.2089844, 0.9057617, 0.296875, 0.16137695, -2.0175781, 1.4208984, -0.4416504, -1.2402344, -1.6884766, -3.7246094, 2.1738281, 0.24108887, -0.27954102, 1.6054688, 3.5820312, 2.96875, -0.7294922, -0.48706055, -0.061279297, 0.4897461, 0.77001953, -2.6191406, 1.5498047, 0.7363281, 0.05822754, 0.9770508, 1.7861328, 0.66259766, -0.62597656, -0.5229492, 2.3847656, -2.2597656, -0.47314453, -0.9555664, 0.9067383, 0.032226562, -0.55371094, 0.87597656, 3.5722656, 0.5942383, -1.6416016, -1.7626953, -0.8027344]}, "B016NA3XAO": {"id": "B016NA3XAO", "original": "Brand: DuraSteel\nName: DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU\nDescription: \nFeatures: High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes.\nMade to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors.\nIndoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you've been looking for.\nPropane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator.\nQuality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.\n", "embedding": [-3.8320312, 2.3828125, 3.359375, -1.2353516, -1.0205078, 0.62841797, 0.7392578, -2.515625, -1.5214844, 1.2636719, 1.6728516, -1.3857422, 1.9638672, -1.5400391, 0.5498047, 2.2050781, -0.40844727, 1.2333984, -0.55615234, 1.2617188, 1.4472656, 0.73535156, 0.61376953, -1.7451172, 1.1552734, -1.53125, 2.6289062, -2.6621094, -1.1572266, -2.2558594, 1.8193359, -0.057861328, 1.0878906, 0.21240234, -3.3046875, -1.9003906, 0.057647705, 0.13464355, -4.5429688, -0.3947754, -0.32373047, 1.6923828, 2.0371094, -1.2382812, -2.1054688, 0.74853516, -1.0810547, 0.12359619, -1.0810547, -1.3369141, 1.0761719, -0.5053711, -0.72021484, 0.49536133, 0.072143555, 1.4921875, -0.65283203, -1.6279297, 1.1699219, 0.5234375, 3.0566406, 1.6494141, -3.0625, 0.46020508, 0.7949219, -1.0185547, 1.8486328, -0.08569336, -0.36865234, 0.1829834, 2.5566406, 0.21484375, -0.44213867, 1.4658203, -0.11541748, -3.2714844, -2.3359375, 0.49975586, 1.6074219, 0.8847656, 0.0803833, 1.8984375, 1.3857422, -2.3027344, -1.2070312, -0.13439941, 1.2333984, -1.5419922, 2.9101562, 2.8007812, -3.0585938, 2.9492188, -1.3535156, -3.9140625, 3.5820312, -0.75, 0.110961914, 0.97314453, -0.234375, -0.03112793, -2.1855469, -0.8984375, -2.046875, 1.2441406, -3.0683594, 0.19628906, 0.59521484, 1.453125, -2.8417969, 2.7070312, -2.8105469, -0.32080078, 0.6269531, -2.5585938, 0.80810547, 0.038208008, 1.2773438, 1.0449219, 2, -0.43969727, 4.0859375, -1.1835938, -0.25683594, -1.1689453, 0.41503906, 0.1541748, -2.7539062, 0.60498047, 3.8574219, -2.9023438, -0.4572754, -0.114990234, 2.1015625, -3.3183594, -1.3984375, -2.4042969, 0.11236572, -0.47045898, -3.2128906, -1.2226562, -2.4101562, 1.4746094, -0.09503174, -0.75341797, -3.1152344, 1.1650391, 1.3447266, 0.7319336, 1.2792969, -1.7919922, 1.4990234, -1.0722656, 0.375, -2.0351562, 1.9814453, 0.15527344, -1.4267578, 0.04058838, 4.4335938, -0.6123047, 0.010620117, -1.0732422, 0.37939453, 3.4277344, 0.3720703, -1.7226562, 0.029647827, 2.796875, -0.087524414, 1.3662109, -0.49145508, -1.4394531, -1.0615234, 1.1464844, 0.9223633, -0.34423828, -0.7866211, 1.9648438, 0.35131836, -0.8027344, -1.0654297, -2.8574219, 0.3779297, 0.9663086, -0.3425293, -1.3164062, 0.74316406, 1.1904297, 1.7158203, -1.3505859, -1.8828125, 0.95751953, 0.9819336, 0.017913818, 1.4609375, -1.5507812, 0.45239258, -2.1777344, 0.66796875, 0.20117188, -2.3359375, -2.1132812, 0.48608398, 0.9399414, -1.1376953, -1.7949219, -1.6103516, -1.2324219, 2.1152344, 0.80859375, 0.8227539, -1.7900391, 1.9003906, -0.83154297, -0.5800781, -1.9541016, 1.0537109, 0.5527344, 1.2021484, 0.48461914, -0.8383789, -1.3525391, 0.38183594, 1.125, 1.9726562, 2.140625, 1.4814453, -0.5776367, -2.421875, -0.16564941, 2.6894531, 1.0087891, -2.0019531, 1.0722656, -1.9335938, 3.7285156, 2.0351562, -1.1201172, 0.12475586, -1.7314453, 2.0214844, -1.5498047, -0.26342773, -1.7138672, -1.0439453, 0.42797852, 0.18469238, 2.1679688, 0.9692383, 0.65722656, 0.65722656, -0.1472168, 0.90966797, -0.69873047, -0.9189453, -0.20227051, -0.36621094, 0.039093018, -0.6723633, 0.15795898, 3.6328125, 0.1829834, 0.52685547, 1.2792969, 0.066467285, 0.19726562, 3.203125, 0.2915039, -2.6132812, -0.7807617, 1.7832031, 0.60009766, 2.6796875, 1.2080078, 0.14135742, 0.9501953, -2.0371094, 3.4589844, 1.0029297, 1.5400391, 0.98046875, -1.5458984, 2.4902344, -1.9599609, 1.3125, 2.1875, 2.1367188, 0.22888184, -0.38842773, 2.7714844, 5.3789062, -1.3515625, -2.7167969, 2.75, -1.4492188, 2.0722656, 0.034454346, 0.65478516, 0.73583984, -0.4885254, 0.1550293, 3.0371094, -0.6381836, 1.5576172, -1.5185547, -1.1230469, 1.3603516, -1.8144531, 0.9819336, 1.0585938, -0.0019073486, -0.08215332, -0.640625, -0.07281494, -4.0351562, 1.6269531, 2.0371094, -2.7304688, 2.5429688, -1.4228516, 0.43115234, 2.8222656, 0.48413086, -1.28125, 0.24157715, 1.9355469, -0.27075195, 1.109375, 0.22753906, 0.03918457, -2.9492188, -0.99316406, 0.36694336, -0.34375, -2.0273438, -0.43774414, -1.2949219, -2.1933594, 1.5537109, -3.0703125, -0.75146484, 2.2617188, -0.98583984, -0.23046875, -1.8017578, -4.2304688, -2.6347656, -2.1015625, -1.9902344, -1.2294922, 0.5629883, 2.1796875, -1.3261719, -3.3203125, 1.4179688, -1.5185547, -1.0185547, 2.2148438, -0.36279297, 1.7021484, -0.1104126, -0.5917969, 1.1533203, 1.3310547, 0.49829102, -2.9941406, 0.71972656, -2.3632812, 1.2480469, -0.48754883, 1.8544922, -0.24987793, 0.78759766, -2.8867188, 0.60791016, -2.0585938, -0.10046387, 2.2167969, -0.65771484, 1.8867188, -1.0800781, -2.1152344, 1.1171875, 0.3713379, -0.65185547, 0.84765625, 0.33569336, -1.84375, -2.0332031, -2.7890625, -1.0576172, -2.0839844, -1.1523438, -0.76904297, -0.4477539, -0.609375, 0.86035156, -3.0839844, -0.5083008, -0.12915039, -1.2841797, 0.16296387, -2.0605469, -0.8261719, 0.81591797, -1.1933594, -1.453125, 1.7099609, 1.1425781, -1.7900391, 1.8037109, 1.6025391, -0.27807617, 0.070007324, 0.75146484, -1.3388672, 1.9404297, -1.46875, -1.7666016, 2.3320312, -0.8959961, -0.47338867, -2.0039062, -0.05038452, 3.7460938, 1.0058594, 1.9072266, -0.022155762, -1.3232422, -0.3330078, 2.0019531, -0.74316406, -2.6621094, -0.004463196, 2.9375, -1.4208984, -0.28222656, 0.59814453, 1.2460938, -3.9863281, 0.6948242, 3.4414062, -0.07385254, -0.28466797, 1.09375, 1.4863281, -0.7080078, -2.2734375, 0.7836914, 1.6738281, 0.6850586, -0.7709961, -1.8613281, -0.39282227, -0.8955078, 1.6523438, 2.5859375, 0.765625, 3.1328125, 2.796875, 1.1181641, -1.3945312, -1.0410156, -0.43676758, 0.5419922, -0.12792969, 2.7539062, 0.08758545, -0.21203613, -1.7529297, -0.47583008, 0.39819336, -1.3447266, -0.5942383, 1.9931641, -0.6748047, -0.48461914, -0.9394531, 0.84228516, 0.6821289, -2.3535156, 3.4414062, -1.5673828, -0.14648438, 1.2626953, 0.5493164, 2.1464844, -2.3515625, -1.234375, -0.8227539, -2.2480469, 0.43066406, -1.4404297, -0.37573242, -2.6425781, 1.3173828, -0.07141113, -2.7480469, 1.109375, -0.20092773, -0.028320312, -0.0859375, -0.045196533, -0.01424408, 0.06890869, -1.3095703, -0.625, -2.0039062, -1.4599609, -0.45996094, 0.67871094, 2.1152344, -0.49047852, 0.1463623, 0.058380127, -1.4892578, -0.5913086, -1.4853516, -1.8837891, -2.171875, -1.0957031, 0.7089844, 0.7885742, 0.43432617, 3.5800781, -0.84033203, -0.8725586, 1.3662109, -2.4023438, -0.70214844, -0.44482422, -2.2890625, 1.4609375, -1.2167969, -0.0030212402, 1.3681641, 0.041870117, -1.1601562, 0.6269531, 1.3271484, -2.6855469, -0.77441406, 0.076293945, 1.9648438, -1.9335938, -0.92529297, 1.3828125, -0.100097656, -0.8178711, -1.7363281, 2.9433594, -0.27148438, 0.9951172, 2.2949219, -1.6201172, 1.7167969, 0.34204102, 0.51660156, -1.4726562, -0.008148193, 0.033599854, -3.2148438, -0.16833496, -3.7226562, 1.4648438, 1.8164062, -0.28833008, -0.18920898, 1.9814453, 1.2392578, 0.9550781, 2.2851562, 0.328125, 1.5839844, 0.4873047, -1.5605469, -0.84765625, 1.1767578, 0.8852539, -0.30126953, -0.103759766, -1.4287109, -0.73291016, 0.21557617, -0.5883789, -0.04699707, 2.1757812, 1.6884766, -1.7666016, -0.91503906, -0.4272461, -2.9238281, -0.18933105, -0.0082473755, 0.7446289, -1.7724609, 0.8984375, -1.2119141, 1.5273438, -0.5151367, -0.90283203, -3.59375, 4.0078125, 3.1289062, 1.5615234, 2.5371094, -1.9775391, -2.1738281, -0.7944336, 1.3017578, -0.53564453, 1.0996094, 1.3378906, 0.3557129, 1.7158203, 0.61328125, 0.7089844, -0.13513184, 2.2636719, 0.5854492, 1.4296875, -2.1191406, 0.23986816, 0.28833008, -1.6230469, 2.0625, 0.119506836, 1.3945312, -1.8378906, -4.2304688, 1.2050781, -0.62158203, -1.3505859, -0.8120117, 0.30932617, -1.7441406, 0.19519043, 1.4824219, 2.1191406, 0.17346191, 1.9082031, -0.4633789, 2.4179688, 2.1621094, 0.9345703, -0.203125, 1.4921875, -2.6074219, -0.57421875, 0.5058594, 0.75683594, 2.2734375, 2.7480469, 0.74316406, -2.1425781, 1.2978516, 2.2363281, -2.2578125, -1.1464844, -1.9648438, -1.5429688, 0.7080078, 0.09991455, 0.23852539, 0.6098633, 2.4707031, 0.3557129, 2.0273438, -1.4228516, -0.80908203, -2.21875, -2.6992188, -1.8447266, -2.1972656, 0.6191406, -2.3144531, 0.0009794235, -0.46875, -0.58691406, 0.43945312, 0.3623047, -1.5, -0.78759766, 3.4160156, -2.0019531, 0.9355469, -1.1054688, -1.7509766, -0.09887695, 2.515625, 1.9570312, 2.328125, 0.90478516, -0.34692383, 0.6928711, -1.4853516, 0.96435547, -0.94140625, 1.7402344, -1.6171875, -0.07696533, 4.34375, -0.24743652, -0.42919922, -3.0019531, -1.5791016, -1.6533203, 2.2929688, -0.29760742, -2.3769531, -1.4550781, -0.5151367, -2.5761719, -3.1855469, -1.7773438, 2.4804688, 0.3227539, -0.7583008, -0.114746094, -0.44091797, -0.98535156, -0.1607666, -0.23498535, -1.4316406, 0.5048828, 0.7441406, -0.4946289, -1.3330078, 2.1679688, 2.3398438, -0.7973633, 0.65283203, 0.52441406, 0.7910156, -1.1337891, -2.1054688, 3.2714844, -2.2851562, 0.6376953, 0.66748047, -1.7138672, 1.2685547, 3.0234375, 0.31835938, -2.6132812, 2.0664062, -2.4238281, -1.3398438, 0.38476562, -1.5283203, -0.28930664, -0.5834961, -0.09906006, -1.1015625, 1.890625, -1.4287109, 0.29785156, -0.58203125, 0.39086914, -0.0024776459, 0.05722046, -0.48388672, -0.31103516, 0.06738281, 2.3398438, 0.47045898, -1.8291016, -2.0507812, -1.9443359, -1.4707031, 0.8046875, -0.9213867, 0.89404297, 0.02848816, 0.70947266, 2.2792969, -0.07861328, -0.12866211, -0.32885742, -0.5756836, -0.9716797, 2.7363281, -1.4716797, 3.59375, 2.5585938, -1.3457031, -1.9355469, -3.0898438, 1.4726562, 0.33666992, -0.092041016, -1.2529297, -0.1463623, 0.4892578, 1.5273438, -0.6191406, 1.0292969, 2.5195312, 1.6054688, -2.703125, 0.7734375, 1.8681641, -1.9404297, -1.0664062, 2.0722656, -0.7763672, 0.21008301, 4.3984375, 1.0654297, -0.15185547, 2.5625, -1.2832031, -0.84765625, -0.6689453, -1.5117188, -2.1015625, -2.5488281, -1.71875, -1.5058594, -1.7695312, -1.2617188, -0.34814453, 1.1835938, 1.5322266, 0.0770874, 1.5986328, -0.4111328, 2.2421875, 2.6054688, 3.25, -0.37475586, 0.95166016, -1.5078125, 1.4287109, 2.4277344, -0.9609375, 1.6591797, 0.11907959, 0.18847656, -1.9042969, 0.3840332, -0.6435547, 2.2929688, -0.39794922, 2.703125, 1.8398438, 2.0273438, 2.5234375, 0.46801758, 3.171875, 4.4648438, 1.0615234, 0.7114258, 0.88671875, 0.69873047, 0.16101074, -0.41210938, -0.9038086, -2.0625, -0.4638672, 0.73046875, 0.73046875, 2.5898438, -3.828125, 0.39160156, -1.9658203, -0.3095703, -2.0898438, -0.19067383, 0.08850098, -2.5214844, -0.87939453, 0.44921875, 2.1015625, 0.5541992, 1.4111328, -0.9345703, -0.070495605, 1.3427734, -4.609375, 0.34838867, 0.51171875, -0.83496094, 1.0390625, 1.8261719, 0.3474121, 0.076416016, 0.42895508, 0.38305664, 0.2644043, -0.1159668, 0.76464844, -1.3359375, -0.6269531, 0.62109375, 2.7167969, -0.13427734, -0.58740234, 1.5732422, 0.13439941, -0.828125, -2.5507812, 3.5664062, 1.1191406, 1.4150391, 2.3769531, -2.3320312, 2.8886719, -1.1757812, 0.73535156, -1.6621094, 3.0683594, 0.5644531, -3.2910156, 1.15625, 0.6723633, 0.65625, 2.7363281, 0.37158203, -0.81884766, 1.6572266, 0.60546875, 1.0400391, 0.6875, 0.70751953, 0.07220459, -0.07739258, -0.94384766, 3.9648438, -0.3466797, -1.2578125, -0.23583984, 2.0058594, 0.11633301, 2.1113281, 1.5732422, -0.44091797, 1.1943359, -1.3515625, 0.73046875, 0.7060547, 1.1689453, -1.9072266, -1.6210938, 0.079711914, -0.46118164, -1.5244141, 1.8662109, 0.5444336, -0.6274414, 0.7583008, 1.8583984, -2.0234375, 2.109375, 1.0664062, -0.27807617, -0.42993164, -0.6826172, 1.2705078, -1.6318359, -1.9003906, 1.2880859, -0.40893555, 0.74316406, -1.8222656, -0.6245117, -0.38110352, -0.6196289, -1.0166016, 1.3710938, -0.0970459, -0.3071289, 2.7285156, 0.1887207, -1.6992188, 2.8027344, -1.3476562, 0.28076172, -1.2558594, -2.9199219, -0.77685547, -1.5205078, -1.6777344, -0.5185547, 2.5019531, -0.56689453, 1.0283203, -1.3291016, -5.2148438, -2.046875, -0.85058594, 0.25097656, -0.71484375, -1.3867188, 1.0507812, 0.008262634, 1.3769531, -1.6591797, 0.79589844, 0.19311523, -0.25341797, 0.62353516, 0.7055664, 1.3925781, 0.7783203, 0.48388672, -0.24194336, 2.6230469, 1.4355469, -1.3310547, 1.2226562, 1.9599609, 1.3300781, -1.9160156, -0.65185547, -0.74072266, 1.2929688, 1.2578125, 0.42651367, 0.5551758, 1.8183594, -1.5351562, -1.5742188, -2.9550781]}, "B08S3533D9": {"id": "B08S3533D9", "original": "Brand: Folocy\nName: Folocy 14 1/2\" x 6 1/4\" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nDescription: SPECIFICATION:
Material: Stainless Steel
\u00a0Products Included: Set of 3 \u00d7 Barbecue bbq grill pipe burner replacement

ADVANTAGE
Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
\nFeatures: Dimensions: 14.5 x 6.25 inch (14 1/2\" x 6 1/4\"), Material: Stainless Steel Center-fed Pipe Burner\nSuperior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use.\nFit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nEasy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water.\nNotices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend\u00a0removing the original part and comparing it to our bbq grill parts.\n", "embedding": [-2.8867188, 2.7636719, 1.0205078, -0.5029297, 1.4267578, -0.8613281, 1.9746094, -1.0751953, 2.703125, 0.6699219, 0.48266602, -0.8457031, 2.8378906, -2.7578125, -0.0069465637, 2.453125, 0.20153809, 0.46191406, 1.3183594, 1.2216797, 1.5976562, -1.4472656, 2.0429688, -2.7832031, 1.2880859, 0.45629883, 3.3164062, -2.2578125, -0.5234375, -2.0195312, 1.1376953, 0.87646484, -0.00055265427, 2.4003906, -5.1953125, -0.41210938, 1.8632812, 0.47265625, -2.7949219, -0.7373047, 0.23632812, 0.640625, 3.453125, 1.3525391, -3.4042969, 1.3818359, 0.16320801, 1.1767578, -2.0703125, -3.4375, 1.7490234, 1.3730469, -0.40405273, -0.15673828, -0.13293457, 1.4785156, 0.48535156, -1.0810547, -0.5605469, -0.29418945, 2.8242188, -0.76660156, -2.6054688, 0.39038086, -1.4794922, 1.2509766, 1.6162109, -0.51708984, -1.4746094, 0.64501953, 0.11810303, -0.03338623, -1.4404297, 2.7148438, 0.12017822, -2.3847656, -3.3046875, 1.2148438, -0.017730713, -1.1845703, -1.7900391, 4.09375, 0.9482422, -1.3271484, 0.6142578, -0.9741211, -1.4824219, -0.46875, 2.453125, -0.27954102, -1.9267578, 0.27392578, -1.1835938, -2.4628906, 2.1542969, -2.0800781, 1.2109375, -1.0449219, 1.1943359, 0.32983398, -3.0546875, 0.27368164, -3.7558594, 1.4228516, -4.2109375, -1.7539062, 1.6347656, 0.13647461, -1.2480469, 0.111450195, -0.5126953, 0.7763672, 1.5, -0.09075928, 2.4980469, -1.1455078, -1.0957031, -0.26904297, 0.8066406, 1.5732422, 4.7890625, 1.8261719, 1.1728516, -2.0566406, 0.56689453, -0.4345703, -1.9726562, 0.46972656, 3.8457031, -2.6464844, 2.3984375, -1.7070312, 2.0546875, -0.72216797, -0.76416016, -2.4492188, -1.6152344, -1.0439453, -1.1933594, -0.20507812, -1.8320312, 1.4941406, 2.9765625, -3.2246094, -4.9414062, 2.3457031, -1.6503906, 2.2578125, 0.5522461, -2.1269531, 0.41992188, -0.27905273, -0.765625, -2.4335938, 3.0898438, 0.6665039, 1.9296875, -1.2783203, 4.2226562, -0.2993164, 0.86572266, -1.5087891, -0.30786133, 1.2490234, -1.0605469, -2.4042969, -1.7841797, 2.1445312, -1.3193359, 1.9882812, 0.4794922, 0.7866211, -1.4033203, -0.1574707, 1.2773438, -1.8623047, -0.3034668, 2.9316406, -0.18591309, -0.39624023, -1.7255859, -2.5664062, 1.0595703, -1.3505859, -0.0368042, 0.40844727, -0.82910156, 1.1425781, 2.4570312, 0.059539795, -1.8808594, 0.4350586, 0.015823364, 1.5097656, -1.1279297, -0.49487305, -0.19787598, -0.19128418, 1.5068359, 0.48706055, -1.5419922, -0.54052734, -0.084350586, 1.9501953, -3.3300781, -1.7734375, -0.9448242, -0.6621094, 1.7558594, 1.9140625, 0.5605469, -0.31030273, 2.5957031, -1.2373047, 0.7910156, -0.68408203, 1.3320312, 0.47387695, 1.0556641, 2.0429688, 1.9580078, -2.9628906, 0.55126953, 3.296875, 2.5800781, 1.2236328, 0.5805664, 0.32714844, -0.71728516, -0.47729492, 0.47558594, 0.5810547, -0.23596191, 0.9711914, 0.1381836, 1.0947266, 1.6123047, -5.1992188, 0.76220703, 0.6147461, -0.6772461, -3.4941406, -2.7734375, -2.7558594, -1.4101562, 0.19042969, -3.6347656, 0.94677734, 0.48608398, 0.049041748, 0.36254883, 1.7050781, 1.9082031, -1.1220703, 0.47998047, 0.38208008, 0.99072266, 2.5078125, -0.4567871, -0.7548828, 2.453125, -0.7495117, -0.059143066, 2.1503906, 2.4921875, -0.7680664, 2.0488281, -0.6411133, -3.0195312, -0.94970703, 0.46728516, 0.7050781, 1.2871094, -1.8164062, 2.7578125, 2.1503906, -1.7958984, 1.7373047, 1.7158203, -0.19628906, 0.97265625, -1.9208984, 3.75, -2.1542969, 1.5771484, 0.3720703, 0.46728516, -0.8076172, 0.08526611, 0.50683594, 5.3164062, -1.7382812, -1.2490234, 2.1972656, -1.5849609, -0.5102539, 0.44335938, -0.5698242, -0.6689453, -1.1591797, 0.16589355, 0.6298828, 0.014144897, 0.3359375, 0.97998047, -0.49609375, 2.2441406, -3.8242188, -0.0048599243, 2.9042969, -0.62939453, 0.43774414, -0.49975586, 0.5493164, -3.1660156, -2.3242188, 1.59375, -1.078125, 2.2480469, 0.7265625, 1.3798828, -0.059753418, -0.17407227, -3.1464844, -0.91796875, 1.3935547, -1.6181641, 1.9541016, -0.17614746, 0.14196777, -0.61083984, -1.90625, -0.5126953, -1.2783203, -2.9316406, -1.5488281, -0.55029297, -2.2148438, -0.21838379, -1.7773438, -0.3864746, -0.12585449, -2.8945312, 2.4667969, -1.5283203, -1.7011719, -1.4316406, -0.06341553, -0.8852539, 0.006134033, -1.2070312, 2.7890625, -1.4970703, -3.3730469, -0.80029297, -1.2402344, -0.42211914, 1.3681641, -1.0400391, 0.27001953, 0.8745117, 0.24475098, 0.07287598, 1.328125, 1.5234375, -1.8349609, 0.6635742, -2.0175781, -0.13842773, -0.06137085, 1.8046875, -2.4003906, 0.8701172, -4.7265625, -2.0859375, -1.1181641, 0.5385742, 2.9941406, -1.2783203, 1.7412109, 0.84277344, -1.8896484, 0.38549805, -1.5039062, -2.2148438, 0.3474121, 1.6044922, -1.2158203, -1.3759766, -2.0117188, 1.1474609, -0.11010742, -1.28125, -1.0351562, 0.25268555, 1.0019531, -0.2939453, 0.49975586, -2.3496094, 1.3056641, -0.67871094, 0.08691406, -0.9892578, -1.0810547, -1.625, 0.41479492, -0.18981934, -2.1992188, 1.3486328, -1.6162109, -1.765625, 2.2890625, 0.85498047, 0.23095703, 1.453125, -2.4648438, 0.16186523, 0.8076172, -2.203125, 3.3828125, -2.171875, 1.2705078, -3.1875, -2.0234375, 3.7734375, 0.9160156, -0.1875, 0.9453125, 0.7729492, 1.9609375, -1.0703125, 0.35083008, -0.5229492, 1.2119141, 4.3125, -2.6074219, -2.3339844, 1.9091797, 1.9970703, -4.140625, 0.27441406, 1.7587891, 0.59814453, 0.8520508, 2.0644531, 3.5996094, 0.40307617, -1.8955078, 0.40942383, -0.2668457, 0.16833496, -0.16137695, -0.46435547, 0.7011719, 0.51416016, 1.6181641, 2.4570312, 1.5068359, 1.2158203, 0.9057617, 0.21801758, -0.45214844, -1.03125, -0.73535156, 2.2382812, 1.2275391, 3.7324219, -1.5068359, -0.5209961, 0.028869629, -0.73095703, 3.1054688, -2.2421875, -1.4580078, 3.0136719, -0.01940918, -0.64746094, -0.9404297, 0.2932129, -0.14172363, -3.4140625, 0.02168274, -0.6816406, 0.52978516, 2.8652344, 1.0390625, 0.09033203, -1.0957031, 1.7294922, -1.7744141, -2.5136719, -0.5332031, 0.17407227, -1.5556641, -1.7832031, 0.21679688, 1.1259766, 0.056884766, 3.6152344, -0.28442383, -1.2509766, 0.78027344, -1.8496094, 1.4277344, -0.17822266, -1.0117188, 0.85253906, -0.6699219, -1.7568359, -0.85791016, 0.75341797, 1.2792969, -1.8027344, -0.71533203, 0.6953125, -2.6601562, -0.85058594, -0.35620117, -1.4658203, -2.3984375, 0.70654297, 0.37963867, 0.50439453, -0.14758301, 2.5859375, -0.25708008, -0.7397461, 1.9326172, -2.3769531, 0.4963379, -2.6347656, -4.125, 2.2402344, -2.1445312, -0.041534424, 2.4042969, 1.1386719, -0.74365234, 1.34375, 1.71875, -2.8496094, 0.6147461, -1.4042969, -0.14465332, -1.2001953, -3.03125, 2.9296875, 2.0234375, -0.29174805, -3.078125, -1.0830078, -1.5009766, 0.110839844, 0.7207031, -2.0292969, -0.42773438, 0.5751953, -0.10455322, -0.40307617, -1.0693359, 1.8320312, -0.19042969, -0.23901367, -1.1376953, 1.3496094, -0.87939453, 2.59375, 0.7685547, 2.2753906, 0.9042969, -0.9238281, 0.7167969, 0.4465332, 3.2988281, -0.17626953, -1.7773438, -1.4082031, 1.9960938, 1.390625, -0.80029297, -1.1601562, -1.8818359, -2.4941406, -0.34423828, -0.7817383, 2.640625, 1.2275391, -1.0771484, -2.7695312, -0.4741211, 1.0976562, -2.0390625, -1.5878906, -0.43359375, 0.60498047, 0.3720703, 1.0615234, -3.6777344, 1.4169922, -1.8896484, -0.26757812, -2.3691406, 1.1806641, 1.1640625, 1.8105469, 2.9707031, -0.90234375, -0.4038086, -0.8339844, -1.2617188, -1.9697266, 0.9501953, -2.1503906, -2.3769531, 1.6728516, 0.22839355, 0.2524414, 0.34179688, 0.5732422, -0.8769531, -0.8364258, -0.6821289, 2.3378906, -1.4941406, -2.0332031, 2.6738281, -1.0996094, 3.0253906, -0.8754883, 0.22192383, -0.23010254, 0.85546875, 0.10632324, 1.0771484, 1.21875, -0.3474121, 1.3427734, 0.609375, 2.7246094, 0.63916016, 0.20727539, -2.1601562, 1.6044922, -1.1806641, -0.33129883, 0.7607422, 1.375, -1.4960938, -0.114868164, 2.828125, 3.4140625, 0.94189453, 2.0117188, 1.4414062, -4.984375, 0.61279297, 1.5751953, -3.6777344, -2.9316406, 0.39111328, -0.75341797, 2.6015625, 1.1542969, -2.9589844, 0.28564453, 2.6445312, -0.24743652, 1.8222656, -1.9003906, -0.21374512, 0.30664062, -1.7558594, 0.5498047, -4.7460938, -0.8564453, 1.3076172, -1.1074219, 0.08270264, 0.5571289, 2.8183594, 3.3457031, -2.3554688, -2.7734375, 0.7504883, -0.92333984, 1.2910156, -0.06311035, -0.40527344, -1.4912109, 0.0914917, 0.4807129, 1.0175781, 3.1171875, 0.50634766, 2.4433594, -2.21875, 0.2631836, 0.37646484, 2.4785156, -0.10467529, -0.54003906, 4.9492188, -2.1425781, -2.1054688, -2.6269531, 1.7861328, 1.9550781, 1.4521484, 1.7158203, -1.7509766, -1.9824219, -0.8613281, -1.6005859, -3.7480469, -1.0742188, 0.4802246, 0.25878906, 1.5722656, -0.15197754, 1.0087891, 2.1386719, -0.61328125, 1.8017578, 0.6171875, -0.24316406, -0.4008789, 0.028442383, -0.75927734, 0.8334961, -0.6513672, -1.2001953, 1.0234375, 1.9365234, -0.14245605, -3.1503906, -1.7265625, 2.7675781, -2.3613281, -1.0078125, 0.5258789, -0.027023315, -1.7382812, 1.3046875, -1.3789062, -0.24035645, 0.36083984, -2.0957031, 1.3085938, 1.4482422, -2.4882812, 0.28833008, -0.34277344, 1.1259766, 1.5732422, 0.18286133, -0.5751953, 1.2021484, 0.08569336, 1.7041016, 3.0546875, 0.7211914, -1.6855469, 1.0498047, 0.026153564, 1.2382812, 2.3632812, -0.6923828, -0.12927246, -1.640625, -1.9208984, 1.3408203, -2.0820312, 1.3652344, -1.3867188, 0.32373047, 0.85253906, 1.0869141, 0.6035156, -0.022964478, -0.828125, -1.9248047, 0.58740234, -0.09008789, 3.53125, 0.62841797, -1.3408203, -3.0371094, -0.64941406, 1.3662109, 1.5800781, -0.5258789, -0.5258789, -0.04989624, 1.5527344, -0.44067383, 0.609375, 0.6010742, 0.31152344, 3.0976562, -1.2060547, 0.53271484, 4.3164062, -0.76171875, 1.5556641, 1.0830078, -0.5024414, 0.2401123, 2.390625, -0.1361084, -2.0957031, 1.8447266, -1.0878906, 1.9697266, -0.3461914, -0.4609375, -0.98828125, -2.46875, -0.21606445, -2.3105469, -1.1367188, -1.0273438, 2.0039062, -0.94921875, -2.1972656, -0.32788086, 1.2158203, -1.8320312, 1.4091797, 2.5546875, 0.27514648, -1.5605469, -1.0185547, -2.3164062, 0.09851074, 2.1796875, -4.46875, -1.3496094, 0.5317383, -1.1074219, -2.5957031, 0.86328125, 1.2011719, 3.3886719, -2.5195312, 3.4082031, 2.1425781, 1.1748047, 3.7558594, -0.034240723, 2.8339844, -0.67041016, -2.328125, -0.17236328, 3.1777344, 1.0302734, -0.35180664, -1.0068359, -0.5161133, -2.9238281, -1.8378906, -0.5488281, -0.7626953, 1.0478516, -4.2382812, 0.13964844, -0.86865234, -0.13293457, -0.031280518, 0.8769531, -1.9638672, -2.4414062, -0.8354492, -0.2290039, 3.7128906, -0.91503906, -0.21533203, 0.17700195, -0.12237549, 3.5117188, -1.9667969, 0.4489746, 1.1425781, -2.1777344, -1.2480469, 1.4072266, 3.2792969, -0.11395264, 1.4589844, -0.049926758, 0.45947266, 2.109375, 1.1503906, -1.4960938, 0.5395508, -0.12536621, 3.4375, -1.1591797, -1.9033203, 0.51708984, -2.7050781, -3.2089844, -2.34375, 1.3789062, -0.03427124, 2.6210938, 1.6425781, -1.1894531, 1.4550781, -1.4521484, 0.42456055, -2.703125, 1.6455078, 0.27490234, -1.1494141, 0.23486328, 0.63134766, 1.1064453, 1.1289062, 0.7441406, -0.87353516, 0.34399414, 1.6640625, 0.3461914, 1.7246094, 1.4033203, 1.1298828, 0.40698242, -0.89746094, 5.0820312, -0.10021973, -0.5629883, -1.5, 2.3496094, 1.2519531, 0.38891602, 1.1513672, -0.42236328, 0.20056152, 0.7084961, 0.26293945, 0.46289062, -0.40039062, -1.0263672, 0.31420898, 1.1904297, -0.16955566, -0.1274414, 2.0703125, 0.04006958, -0.97265625, 1.0048828, 0.27197266, -1.2148438, 1.9628906, 2.0410156, -0.8720703, -1.5117188, 0.47338867, 1.7197266, -0.7104492, -2.4609375, 0.4580078, 1.9208984, 1.8330078, -0.7651367, 1.03125, 0.005302429, 0.6855469, -1.2753906, -1.1152344, -1.0361328, -1.8837891, 1.2792969, -2.0800781, -0.6542969, 2.4726562, 0.6035156, -1.1123047, -1.5732422, -0.8486328, 0.6567383, -1.6894531, -3.0078125, 0.5727539, 3.2636719, 1.6289062, 1.3027344, -0.6538086, -3.3613281, 0.7861328, 0.4970703, 0.48120117, -1.2568359, -2.2402344, 0.86621094, 1.9472656, 2.0449219, -0.9501953, -2.6171875, 0.7529297, 0.7548828, 0.9008789, -0.64208984, 2.0214844, -0.01209259, 0.18530273, -0.95410156, 2.796875, 0.9814453, 0.47705078, 0.05657959, 0.69921875, 1.7246094, -3.1113281, 0.025497437, 0.91259766, -0.5307617, 1.2402344, 0.16113281, 2.8554688, -0.30664062, -1.65625, 0.30664062, -0.96484375]}, "B012ZY1RNM": {"id": "B012ZY1RNM", "original": "Brand: Camco\nName: Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black\nDescription: \nFeatures: Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks\nLid makes accessing propane tanks easier and more efficient\nKit includes hardware needed for installation\nConstructed of UV-stabilized polypropylene\nBlack\n", "embedding": [1.1552734, 0.15002441, 3.2246094, -1.3095703, -1.5380859, -2.3300781, -0.048095703, -1.2324219, 2.6933594, 2.0449219, 0.42016602, -0.18530273, 0.7109375, -3.7363281, 1.9316406, -1.0615234, 0.26708984, 1.2695312, 2.75, -1.2929688, 2.0878906, -0.5644531, -0.93896484, -1.3476562, 1.0634766, 0.5283203, 2.5351562, -1.9023438, -2.3398438, 0.70751953, 0.14233398, 0.41723633, -0.82421875, 2.6328125, 0.89746094, -1.6064453, -0.69677734, -0.5004883, -4.2929688, 0.103027344, -3.4121094, 1.0292969, 3.8378906, 0.72216797, 0.053863525, -0.21789551, 0.12133789, -1.125, 0.4868164, -0.78564453, 0.17907715, 1.9189453, 0.9736328, 0.13684082, -0.9013672, 1.7255859, 0.30078125, -0.7661133, 0.26098633, 1.3876953, -0.6118164, -0.2220459, -1.8066406, 1.9335938, -0.9897461, 1.7441406, -1.1748047, -1.5693359, 0.07720947, 3.2128906, 0.88378906, 1.7939453, 1.3388672, -2.5683594, 1.0185547, -0.67089844, -2.0253906, 0.61865234, -0.30200195, -1.7265625, 0.9765625, 2.6953125, -0.96875, -2.6757812, -0.79052734, -2.0429688, 0.17382812, 1.2832031, 0.23400879, 0.081970215, -1.5322266, 1.6181641, -2.4355469, -2.9472656, -1.171875, -0.032196045, 1.0859375, 1.4667969, 2.6738281, 2.6914062, -1.0107422, -0.3671875, -0.89697266, -0.25073242, -2.5273438, -1.265625, 1.0839844, -1.2841797, -1.6582031, 0.17382812, -0.4963379, -0.6386719, 1.0390625, -1.4199219, -0.4189453, 1.4589844, 0.064941406, 0.094177246, 0.6743164, 0.9135742, 4.9414062, -1.6103516, 0.30273438, -1.0947266, 1.8847656, 1.3701172, 0.28100586, 0.56933594, 2.1113281, 1.546875, 1.3632812, -0.7675781, 1.8427734, -0.4963379, 0.21655273, -0.0028839111, -1.6845703, -2.2714844, -1.1689453, 0.34399414, -3.2753906, -0.3413086, 0.7890625, -0.3696289, -3.8730469, -0.68066406, -1.3652344, 1.7255859, -0.7167969, -1.9052734, 0.10699463, -3.6914062, 0.10864258, -0.7915039, 0.98046875, 0.9238281, -0.32641602, -2.9277344, 1.1416016, 1.9082031, 1.5498047, -1.3964844, -0.5283203, 1.7402344, 0.011978149, -0.86572266, 1.1611328, -1.9228516, -2.5234375, 1.8369141, 0.9790039, -1.6572266, 1.0576172, 1.0830078, -1.5146484, -1.0058594, 2.7519531, 2.0429688, -0.18310547, 0.29077148, -3.7578125, -2.1113281, -0.62939453, -0.1472168, 0.4567871, -0.7734375, -2.3769531, -1.3154297, -0.37280273, 0.29370117, -1.2773438, 1.6748047, -0.53466797, -1.8740234, -1.4189453, -3.1914062, -0.69384766, -1.1025391, 0.43164062, 1.4179688, -0.8691406, -1.1201172, -0.062042236, 0.8276367, -1.8535156, 0.046051025, 2.6328125, 1.1435547, 1.2402344, 0.78564453, 0.8359375, -0.2866211, 1.7138672, -2.4804688, -1.2607422, -2.2480469, 0.62109375, 0.3046875, 1.2509766, 1.2685547, 3.0136719, 0.6279297, 0.16491699, 0.9003906, 0.90966797, 2.8574219, 1.7353516, 0.066345215, -1.3017578, -0.38916016, 0.26171875, 1.3789062, -2.5292969, 0.24328613, -0.93115234, 1.4160156, -0.25708008, -1.3876953, 0.5371094, -1.3759766, 2.0410156, -1.7509766, -0.7441406, -1.1884766, 1.2539062, 2.0292969, -1.4472656, 1.5351562, 2.1171875, -0.5488281, 1.1582031, 0.45092773, -0.40771484, 0.90966797, -0.73095703, 1.9824219, 1.2070312, -0.3996582, 0.1361084, -2.9746094, 0.67822266, 1.1757812, 0.18859863, 1.3261719, 0.6098633, 1.328125, 0.98095703, 0.09265137, -1.3408203, 1.0458984, 0.30908203, 0.35009766, 0.52197266, -0.89990234, 1.9853516, 2.1503906, -0.3334961, 1.7197266, 0.34399414, 0.86035156, 0.40551758, -0.07525635, 1.8457031, -3.8046875, 1.5800781, 0.39233398, 0.4880371, -0.2298584, -3.78125, 1.4785156, 1.9707031, -0.0017995834, -1.5039062, 2.6816406, 3.171875, 1.6035156, 2.4238281, -0.9638672, -1.9277344, 1.15625, -2.4296875, -0.18676758, 0.062469482, 1.296875, 0.2993164, -1.6259766, -0.96728516, -1.3730469, 1.5498047, 2.03125, 0.17883301, -0.83203125, -1.7880859, 0.7109375, 0.33520508, -1.0869141, 3.7929688, -0.3647461, -0.43652344, 0.46411133, 1.4912109, 1.7998047, 0.08898926, -0.6201172, 1.0439453, -0.15637207, -1.7382812, -0.26733398, 0.79052734, 0.02998352, 0.015014648, -1.515625, 1.8925781, -0.33374023, 0.6142578, 1.0751953, -1.0498047, -0.12011719, 0.68115234, -0.62841797, 1.0527344, -1.3398438, -0.76660156, 3.4804688, 0.94628906, -0.3083496, 0.45410156, 0.6791992, 0.32373047, -2.46875, -0.49780273, 2.5683594, -1.3925781, -4.1875, 1.2216797, -0.89404297, -1.3134766, 1.4814453, -0.74365234, 2.1582031, 0.63427734, 1.6835938, 1.7558594, -1.5234375, -2.3574219, 1.1884766, 2.5996094, -3.2929688, 0.9135742, -3.0878906, 0.41870117, -2.2402344, -1.0380859, -1.4873047, -1.7490234, 0.48413086, -0.38452148, 3.4882812, 0.7167969, 1.234375, 0.31762695, -1.3222656, 0.07232666, -3.2421875, -2.546875, 0.64941406, 0.08673096, -0.58154297, -1.0800781, -5.0507812, -0.31396484, -1.7265625, 0.08557129, 0.23327637, -2.78125, -1.7050781, -0.9013672, -0.5991211, -0.41503906, 0.89404297, 1.8359375, 0.02470398, -1.4755859, -1.1308594, 0.6611328, -0.8457031, -1.3193359, -1.0419922, 1.6435547, -0.6489258, -1.0478516, -0.00065279007, -0.3491211, 2.4003906, -1.2001953, -4.2226562, 1.3857422, 3.3945312, 0.65283203, 1.6630859, -1.7851562, -2.1367188, -2.2988281, 1.0585938, 2.9648438, 3.3730469, 2.7578125, 1.9589844, -0.68310547, 1.7255859, -0.6015625, 0.5258789, 0.29614258, 0.98535156, 2.0898438, -1.7978516, -0.17932129, 1.4277344, 4.1210938, -2.1796875, -0.49169922, 0.26489258, -1.1777344, 4.1210938, 1.7861328, -2.2578125, -1.1738281, 1.4423828, 2.0039062, 0.14953613, 3.3398438, 1.859375, 0.27661133, 2.4296875, 1.6435547, 0.7216797, 1.4785156, 0.8046875, -1.8164062, 1.5302734, 1.7431641, -0.3076172, -0.20361328, 1.0507812, -0.6738281, -0.15966797, 1.9765625, -1.8242188, 2.5996094, 2.4433594, -0.38305664, -0.21240234, -2.2070312, 1.609375, 0.81884766, 1.2490234, 0.122924805, 1.0732422, -0.54541016, 0.089538574, -1.9609375, 2.9082031, 0.5776367, -1.2148438, 0.8588867, -2.2070312, -0.6982422, -1.4755859, 4.5039062, 0.7104492, 0.22424316, 0.44555664, 1.3261719, 0.11584473, -3.4765625, -0.14758301, 0.21618652, -2.8691406, 3.0527344, 2.703125, -1.8417969, -0.22241211, -2.3300781, 1.4414062, 1.2998047, -2.2480469, -0.98535156, -2.8574219, 1.5712891, -1.921875, 0.2890625, 1.5009766, 0.72802734, -3.1386719, -1.5390625, 0.5097656, 1.4365234, -0.10412598, -0.3400879, -1.0966797, 0.60302734, -2.9394531, 1.7978516, 1.4208984, 2.8671875, -1.2001953, 1.4873047, -0.12548828, 0.41967773, 1.2402344, 0.72216797, -2.1816406, -0.5625, 0.16552734, 0.12719727, 2.7695312, 1.2412109, 1.4990234, 1.4931641, 0.93896484, -4.1171875, -1.0615234, -2.1484375, 1.6044922, -3.0585938, -1.7470703, 0.69677734, 0.65722656, -2.6679688, -1.7431641, 0.47265625, -1.3681641, 0.029708862, -1.9648438, -1.6455078, 1.6806641, 2.6796875, 0.02468872, 0.38378906, 0.1986084, 0.7451172, -0.5595703, -1.3564453, -2.4160156, 2.5136719, -0.19458008, 1.1689453, 0.20617676, 1.8476562, 2.8398438, -1.6279297, -0.6230469, -2.0117188, 0.16149902, -0.5551758, -1.8125, -0.07366943, -1.0361328, 0.5595703, -1.1435547, 0.1517334, 1.9648438, 1.2509766, 0.67285156, -0.12841797, 0.45532227, 0.7138672, -2.6542969, -0.5415039, 2.890625, -0.9477539, 0.60498047, 0.21252441, 0.79296875, 0.52246094, -2.0488281, -1.0625, -2.7363281, 0.9199219, 1.0615234, 2.0371094, -4.9101562, 0.31274414, 1.8193359, 2.7089844, 0.24914551, -1.5146484, -1.3740234, 1.8066406, 2.484375, 2.6523438, -1.7431641, 0.5410156, 0.41357422, -1.3789062, 0.35961914, -1.6640625, -0.7036133, 0.26953125, -1.9970703, 1.0810547, 0.2680664, 0.67822266, -1.9960938, 1.2666016, -1.0908203, -0.98828125, 3.9941406, -3.2851562, 1.4423828, -1.953125, -1.3320312, -1.5898438, 3.5820312, 1.6728516, -0.27954102, 0.484375, -3.1132812, -0.9897461, -0.041625977, 1.7382812, 0.43530273, -0.0014448166, -1.2431641, -3.6542969, 0.5576172, 1.5625, -0.94384766, -1.0185547, 0.8276367, 3.0488281, 0.6166992, 0.94384766, 2.7246094, -0.58935547, 1.6279297, 1.1992188, -0.93896484, -2.1523438, 1.0195312, 2.0957031, 4.1992188, -1.8623047, -4.0820312, 1.3828125, -0.296875, 0.10864258, 1.6132812, 0.14331055, -1.5058594, -1.546875, -3.8203125, -0.8286133, -0.8496094, 0.78125, -0.9169922, -0.6586914, 0.8203125, 1.6015625, 0.09429932, 3.0664062, 0.6098633, -1.1064453, 0.15917969, 2.40625, -1.7060547, -4.3359375, -2.4511719, -2.9882812, -1.09375, -0.3100586, 0.8647461, -1.0410156, 1.5664062, 3.3867188, -2.2929688, -1.4414062, -1.6005859, -0.40649414, -1.8339844, -0.8046875, 2.9667969, -0.5698242, -0.3137207, 0.26000977, 0.90185547, 0.08276367, 2.859375, 1.0957031, -0.87646484, -0.48291016, 0.7363281, -2.75, -4.7460938, -1.6660156, 0.3544922, 0.25756836, 0.62158203, -1.8867188, -0.8105469, 0.65527344, -2.0664062, -0.40234375, -1.8535156, 1.0908203, -0.6723633, -0.80078125, 2.28125, -0.5336914, -0.06549072, 0.9326172, -2.0585938, 0.2076416, -2.3339844, -3.3261719, -3.7617188, 2.0820312, 0.6323242, 0.6171875, -1.2802734, -0.5800781, 2.1191406, -0.10998535, 1.5205078, -1.1865234, 1.0761719, -1.5, 0.36572266, 2.1738281, -0.24951172, -0.58740234, 3.6386719, -0.15393066, 1.6191406, 2.6914062, 1.0263672, -3.2558594, 0.85009766, 0.068603516, -0.8022461, 0.20935059, 1.703125, 2.0976562, -0.21606445, 0.78125, 2.0859375, 0.070739746, -0.8754883, -2.4179688, -0.6879883, -1.4199219, -1.7763672, -1.0351562, -0.9580078, 0.91552734, 2.53125, -0.58447266, -0.07196045, 1.0488281, 0.97021484, -2.2929688, 0.8198242, -1.9755859, -0.2142334, 0.09246826, -1.1289062, -2.7910156, -2.0195312, 2.3925781, -0.30566406, -0.3137207, -0.23583984, -0.26708984, -0.8305664, 2.265625, 0.68408203, 1.0244141, 0.12658691, 0.7324219, -2.1445312, 0.5776367, 3.7734375, -0.40478516, -0.72216797, -0.63378906, 0.23657227, -0.44628906, -0.6088867, 2.84375, -3.171875, 0.57470703, -0.058502197, -1.421875, -0.8515625, -0.6958008, 0.31884766, -1.8623047, -0.16882324, -0.8613281, -0.6513672, -3.71875, 2.6269531, -0.30395508, -0.18933105, -0.6635742, 0.25170898, -1.3076172, -0.75634766, 1.4990234, 0.86621094, -0.25024414, -1.4736328, 0.29101562, -1.1953125, 1.1289062, -3.4941406, 0.6269531, -2.2070312, 1.1738281, -0.9477539, 0.7133789, -0.09313965, 0.8466797, 3.0878906, 2.1738281, 2.3671875, 0.101135254, 2.1289062, -0.31176758, 1.2792969, 1.0078125, -1.0878906, 0.18493652, 0.7792969, 1.0273438, 1.6582031, -1.8681641, -0.3215332, -0.41235352, -1.125, -1.4345703, 0.16210938, 1.7597656, -3.0664062, -0.9628906, -1.7949219, -0.6689453, 3.0175781, 1.0429688, -2.0898438, -1.3798828, 0.33569336, -2.0546875, 1.9882812, -0.49414062, 0.04699707, 1.2607422, 0.79589844, 0.9033203, 0.8769531, -0.7807617, -3.6425781, -1.7685547, -0.8300781, 0.96435547, 1.0615234, 1.0234375, 0.18225098, -0.4555664, 0.18591309, 0.49780273, 0.5107422, -1.0019531, 1.734375, -0.8173828, 2.4199219, 1.2441406, -0.5073242, 1.0927734, 0.53027344, -1.3203125, -2.2304688, -0.7089844, 1.125, 1.3769531, -0.13049316, -2.4082031, 1.6279297, -1.0351562, 1.2480469, -2.7910156, -0.42407227, -1.8779297, -2.5429688, -0.22058105, 2.1269531, -1.1152344, 3.2753906, 0.7993164, 0.105407715, 0.20397949, 0.3605957, 1.6933594, 0.7705078, 0.7558594, 1.0986328, 0.6635742, -0.45336914, 2.4902344, 2.0195312, 0.23352051, 0.25683594, 2.8652344, 1.9277344, 0.6567383, 0.8017578, -2.4238281, 3.0117188, 0.73291016, 0.35229492, 0.7504883, -2.1542969, 1.7314453, -0.6328125, 1.0800781, 0.8959961, 0.9658203, -0.44873047, 3.2558594, -2.7578125, 0.019714355, 0.29296875, -0.46777344, 1.1640625, -0.44482422, -1.3134766, -1.09375, -0.31811523, 1.4628906, -2.078125, 0.6425781, -2.2304688, 1.0322266, 0.11352539, -2.1855469, -0.83740234, 0.06933594, -0.3334961, -0.4165039, -0.1427002, -0.13916016, -0.10455322, 0.33789062, -0.024932861, 0.3112793, -0.87841797, -1.0009766, -0.18518066, -0.7871094, 0.8959961, 0.5654297, 1.3466797, -0.10192871, 0.6113281, 2.1269531, 0.5751953, 0.3564453, 1.9345703, -2.9453125, -1.4394531, -3.9453125, 2.7871094, 1.7919922, -1.0820312, 0.11602783, 1.9882812, 2.359375, -2.6308594, -1.9707031, -1.1279297, 0.27807617, 0.80029297, -1.8212891, 0.94628906, -1.1376953, 0.14978027, 2.0859375, 3.8613281, 2.6191406, -0.19787598, 0.47387695, 1.7050781, -2.2949219, -2.2089844, -1.5869141, -0.9272461, -1.7109375, 1.2207031, 2.4277344, 3.4707031, -0.074279785, -0.5644531, -2.0136719, 1.1630859]}, "B07SB2Q8X7": {"id": "B07SB2Q8X7", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
The propane hose body is made of stainlesssteel it will long lasting for your appliance
This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

Specification
- Length: 12feet / 144 Inch/366 cm
style=\"margin-left: 5.25pt;\"
- Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
- Inlet Pressure: 25-250PSIG
- Outlet Pressure: 0-30PSIG
- Max.flow capacity:136000BTU
- End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

Warm Tips
-In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
-Not suitable for appliances which need low pressure regulator
\nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more\n\u3010Brass Connector\u3011 P.O.L. x 3/8\u2033 Female Flare, orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "embedding": [-1.1914062, 2.5507812, 1.9384766, 0.2849121, -0.90185547, 0.8208008, 2, -1.1503906, 0.6933594, -0.44091797, 1.3798828, -0.39770508, 1.4677734, -0.2697754, 2.28125, 0.9941406, 0.79052734, 0.21557617, 1.0537109, 3.6289062, 0.9404297, 0.55810547, 1.9765625, 0.0541687, 1.9111328, -0.453125, 2.8613281, -3.578125, 0.16027832, -1.2958984, 2.2480469, 1.015625, 0.85839844, -0.044006348, -1.7568359, -1.1054688, 0.08123779, 1.0263672, -2.3105469, -0.39282227, -0.5517578, -0.8964844, 1.2392578, -0.7397461, -2.5625, 0.57470703, 0.94628906, 0.92089844, -1.0136719, 0.6616211, 1.40625, -0.63671875, -0.4921875, 0.56103516, 0.33007812, 0.2980957, 0.49243164, -1.5322266, 1.8134766, 2.3964844, 1.5673828, 1.0351562, -1.7001953, -0.05505371, -1.3603516, -0.4716797, 0.41137695, -0.6933594, 1.1582031, 0.82421875, 1.8173828, 0.3395996, 1.5839844, -0.29248047, 0.01423645, 0.37646484, -2.0390625, -0.47631836, 3.9472656, 1.7558594, -1.3134766, 0.51660156, 0.85839844, -2.1328125, 1.9101562, -0.21875, -0.7338867, 0.44067383, 3.6953125, 0.43579102, -0.98535156, 2.6679688, -3.4882812, -4.2617188, 1.9296875, 2.0136719, 1.609375, 0.04031372, 1.5175781, 0.30859375, -0.6455078, -0.80371094, 0.3701172, 1.1523438, -1.3046875, -0.38500977, 0.55029297, 3, -4.2929688, -0.1821289, 0.54003906, 0.984375, 1.4746094, -2.0664062, 0.99560547, -2.7402344, -0.8154297, -0.7739258, 2.8125, 2.0976562, 2.4707031, 0.3474121, -1.2568359, 0.22241211, -0.2944336, 0.4177246, -0.5908203, -0.029449463, 4.125, -1.5449219, 0.09942627, -3.5039062, 2.3574219, -0.5341797, 0.99658203, -1.7119141, -1.7939453, -2.1230469, -2.9960938, -0.7192383, -4.125, 1.2314453, 0.15478516, 0.15808105, -1.7841797, 1.1259766, -2.1445312, 1.0302734, 2.4492188, -1.5908203, 3.2089844, -1.7119141, -0.76171875, -0.17004395, 0.7939453, 0.7529297, -0.7651367, 0.030929565, 1.6464844, 1.3037109, 1.7363281, -2.6679688, -1.9453125, 1.7568359, -0.17529297, -1.0439453, 0.6479492, -0.15002441, 0.88916016, 1.9902344, 0.4338379, -1.34375, -1.2128906, 0.2631836, -1.0048828, -1.7578125, 0.77001953, 3.2167969, 2.03125, -0.109069824, -3.4101562, -1.7236328, -0.28515625, 0.46411133, 1.2089844, 0.3869629, -0.87353516, 0.65234375, 1.2851562, -2.3535156, -1.0556641, 0.31713867, 0.15722656, 1.0058594, 0.028396606, -2.9042969, -3.3398438, -1.9316406, -2.1269531, 0.097595215, -1.8837891, -1.0585938, 0.44677734, -0.5473633, -1.9179688, -1.3720703, 0.7314453, -1.7480469, 0.40063477, 2.2832031, -0.0317688, -1.8798828, 0.3840332, -0.89160156, 0.3071289, -3.0664062, 1.2919922, 2.5429688, 0.17419434, 1.2246094, -1.2041016, 0.31298828, 1.5966797, 1.6708984, 2.0566406, 1.3623047, -1.0507812, 2.2714844, -2.3964844, -1.2744141, 3.9492188, -0.4633789, -1.0341797, -1.4990234, -1.5166016, 1.9472656, -0.9995117, 0.4501953, 0.27270508, -0.036468506, -0.1459961, -0.32226562, -1.2294922, 0.08093262, -1.0839844, -0.16748047, -2.3085938, 1.4199219, 2.0175781, -0.7055664, 0.70947266, 0.32739258, -0.21411133, -0.6323242, -1.2324219, -0.43725586, 0.4921875, 1.4287109, -0.98095703, -1.6894531, 2.1582031, 1.5136719, -0.6142578, 2.6582031, 0.069885254, 0.5463867, 2.3632812, -1.1914062, -1.4306641, 0.4140625, 1.4912109, 1.6835938, 2.1523438, 0.24230957, 0.87060547, -0.23852539, -3.0722656, 1.3642578, 0.40063477, 0.64160156, -0.55126953, -0.25732422, 1.7548828, -1.9794922, 2.734375, 1.9326172, 1.5878906, 0.31225586, -1.5996094, -0.45043945, 5.6953125, -1.6113281, -3.5019531, 1.390625, 1.2792969, -0.71191406, 0.33935547, 1.5527344, 0.8564453, -1.3710938, 0.9897461, 0.1439209, -0.80126953, -0.3713379, 1.7421875, -0.41503906, -0.19689941, 0.09625244, -1.2001953, 1.2666016, -0.9614258, 0.6274414, -1.8359375, 1.6787109, -1.9208984, -1.3427734, 0.8652344, -2.1542969, -0.3479004, 0.6464844, 1.8105469, 2.328125, -0.1628418, -1.5458984, 0.28027344, 2.2363281, -0.92822266, 1.1582031, 0.078430176, -1.5849609, -1.1484375, -1.3164062, -0.8544922, -1.7529297, -3.5625, 2.7539062, -3.7480469, -2.1269531, -0.41967773, -1.7460938, -2.8828125, 0.30004883, -1.1464844, 0.55029297, 0.38232422, -0.8408203, -0.9921875, -0.9819336, -0.57714844, -0.4248047, 1.2021484, 2.6464844, -0.83447266, -2.7382812, -0.49145508, 0.84375, 0.09222412, -1.2949219, -2.1484375, 1.3691406, -1.3378906, 0.16259766, 0.81152344, 0.08178711, 1.3427734, -3.2792969, 1.7373047, -2.4726562, -0.8432617, -0.45458984, 1.3271484, -0.8925781, 1.0214844, -1.7900391, -0.85498047, 0.059448242, -1.9072266, 1.3144531, -0.94433594, 2.8925781, -2.9453125, 1.6738281, 1.0097656, -0.8642578, -2.6132812, -0.72265625, -0.6230469, 0.17248535, -1.0664062, -1.9365234, 0.4296875, -0.22290039, 0.13537598, 0.32836914, -1.2519531, -1.8730469, 0.8222656, 0.9609375, -1.7763672, -0.52685547, 0.7241211, -0.21313477, -1.3808594, -0.20251465, 0.5107422, -1.7666016, -1.9443359, 0.9355469, 1.8554688, -0.28686523, 1.6484375, 1.1464844, 0.50878906, 0.045928955, -2.859375, -2.1933594, 1.8066406, 1.4921875, -2.546875, 1.3144531, -1.1767578, -1.5888672, -1.5390625, -1.3779297, 1.9511719, 1.734375, 3.1738281, -0.06903076, -0.4350586, -0.7871094, 1.4570312, -0.75878906, -3.2148438, 0.6665039, 3.5058594, -1.8291016, -1.7792969, -0.63134766, 1.8652344, -1.9082031, -0.6123047, 2.2675781, 0.51123047, 2.5957031, 1.0019531, 1.7548828, 1.1103516, -1.0751953, 1.8896484, 0.4506836, -0.60302734, 0.0063667297, -1.34375, 1.4521484, -0.9116211, 1.4677734, 2.3203125, 0.4086914, 2.1035156, 0.60839844, 0.97753906, -1.4794922, 0.64990234, 0.5786133, 0.103271484, -0.56396484, 0.83447266, 0.71533203, -0.89453125, -1.0839844, -0.20581055, 0.6582031, -2.328125, -0.2244873, -0.12182617, 0.77783203, -0.7167969, 0.013412476, -0.4338379, 0.07122803, -1.5703125, 0.7651367, 1.8681641, 1.6865234, 2.8261719, -0.33569336, 0.58203125, -2.1113281, 0.64746094, -0.23498535, 0.59277344, 0.6069336, 0.16760254, -2.5, -0.6201172, 0.22851562, -2.6386719, -1.4121094, 2.5, 1.2021484, -0.65527344, 1.0927734, -1.7626953, 1.7138672, 1.3994141, -1.765625, -0.46362305, 0.5131836, 0.2944336, -0.44458008, -0.52685547, 1.8652344, -0.023590088, -3.7460938, -0.013702393, -3.5507812, 1.9794922, 0.4946289, -0.058380127, -2.8261719, 1.4833984, 0.9296875, 1.8232422, 0.042053223, 2.4316406, 0.296875, 0.033569336, 2.7402344, -3.8789062, -2.2246094, -2.3339844, -5.6640625, 0.3881836, -2.2421875, 1.203125, 2.5585938, 0.5419922, 1.2744141, 2.5, 1.0400391, -3.5527344, -1.1259766, 0.8569336, 2.1386719, -2.5859375, -0.35498047, 2.21875, 0.61621094, -0.34545898, -0.6850586, -1.2402344, -2.6894531, -0.94189453, 0.74316406, -1.3105469, 1.1308594, -1.7792969, -0.10461426, -0.61621094, -1.8105469, 0.79833984, -1.3759766, -0.70410156, -2.2207031, 2.3496094, -0.30322266, -0.39379883, -1.0488281, 2.8085938, 2.5019531, -0.36010742, -0.97314453, 0.6323242, 2.3496094, 0.83935547, -0.5732422, 0.1451416, -0.105651855, 0.26049805, 0.23852539, -0.9892578, -0.49902344, -0.93847656, 0.75390625, 2.0429688, 0.24645996, 0.7866211, 1.4277344, -2.0097656, 1.0039062, -0.85839844, 0.4560547, -0.42456055, -0.46972656, -1.1318359, -2.1269531, 0.011550903, -1.0947266, -2.0820312, -0.6933594, -0.6220703, -2.4707031, 4.8828125, 0.60058594, -0.9277344, 1.1601562, -1.3310547, -1.0029297, -1.0205078, 1.0136719, -1.5175781, 0.80126953, 0.17797852, 1.28125, 2.0859375, 1.1767578, -1.3544922, -1.0498047, 1.640625, -2.9375, 1.2470703, -1.6132812, 1.734375, 0.14624023, 0.9296875, 2.2871094, -0.98046875, 2.9960938, 1.1914062, 0.10668945, 1.171875, -0.6855469, -1.8457031, 0.7529297, 2.1308594, 1.765625, 1.3378906, 0.71728516, 0.4399414, 1.9033203, 1.4316406, 0.8417969, 0.65527344, -0.45874023, 2.3925781, -1.1699219, 1.9199219, -2.4355469, 0.74658203, 0.78515625, 1.8007812, 1.4375, 3.7265625, 1.2958984, -2.1308594, 1.0039062, 1.1347656, -0.50341797, -0.8852539, 0.0027751923, -2.3828125, 0.7910156, 0.9453125, -1.9228516, -0.52001953, 2.5039062, -1.4482422, 0.89160156, -0.44677734, -1.0283203, 0.19372559, -1.1455078, -1.0673828, -0.15002441, -0.27001953, 0.9663086, -1.7207031, -0.4404297, -0.6513672, 0.6982422, 0.37353516, -0.04510498, -0.059539795, 0.45483398, -0.6503906, 0.9238281, -1.7753906, -0.5, -2.1816406, 0.8535156, 3.3027344, 1.0927734, -0.15283203, -0.58203125, 0.43579102, -1.3935547, -1.46875, -0.2064209, 2.7949219, 0.8066406, 0.27563477, 0.2849121, -0.8256836, -0.5288086, -0.6435547, -0.25927734, -1.5048828, 3.40625, 2.2578125, 1.6640625, -0.3244629, -0.9790039, -2.3046875, -4.890625, -0.61279297, 3.2109375, -0.59716797, -0.3930664, -3.1855469, 0.3161621, 1.1308594, -0.79296875, 0.86376953, -3.7421875, 0.68652344, -0.91748047, -0.6123047, -1.5576172, 0.39233398, 0.19396973, 0.2631836, -1.0693359, -0.10266113, -0.7783203, -2.7480469, -1.8818359, 0.7734375, -3.0703125, -0.76464844, 1.75, -1.7412109, -1.171875, 1.4902344, 1.6015625, -2.875, 1.8076172, -2.4414062, 0.017120361, 0.12322998, -0.578125, 2.390625, 2.484375, -0.123535156, 1.1542969, 1.5058594, 1.1357422, -1.453125, -0.43579102, 0.38085938, 0.2052002, -1.2734375, -2.7285156, -0.3869629, -0.059509277, 1.8378906, 1.0292969, -2.828125, -0.6279297, -1.5546875, -4.6210938, -0.14257812, -0.015670776, -0.9116211, -1.0449219, 0.98095703, 2.9570312, -1.7402344, 1.0683594, 1.1865234, -1.0810547, -0.9916992, 1.9052734, -0.78808594, 2.171875, 0.84375, -0.12298584, -2.5449219, -2.7617188, 1.8515625, 2.7441406, -0.28442383, 1.0722656, 0.03137207, -0.47802734, 0.94677734, -0.5854492, 1.5556641, 2.7070312, -0.59277344, -1.0615234, 0.23693848, 2.0761719, -0.4309082, 1.9013672, 1.5166016, -0.7993164, -1.0224609, 3.7167969, 1.1757812, -1.9521484, 1.5224609, -1.8583984, 1.3896484, -0.22167969, -2.1660156, -0.25927734, -2.7792969, 0.0206604, 0.43920898, -1.7080078, -2.3574219, 1.5625, 0.21569824, -1.8994141, 0.4416504, 3.4277344, 0.8129883, -0.033111572, 1.1855469, 2.0449219, -0.5151367, 0.04034424, -1.8808594, -0.4440918, 1.8076172, -2.1875, -1.578125, 2.5234375, 1.4433594, -1.7275391, 1.3125, 0.72314453, 2.4824219, 0.53759766, 1.4824219, 3.5859375, 0.0071792603, 2.1035156, 0.7739258, 2.1699219, 4.3164062, 0.35375977, 0.050598145, 1.8964844, -0.5, 0.4802246, -1.0761719, 0.08392334, -0.80126953, -1.1875, 0.09460449, 0.65527344, 1.1982422, -3.0019531, -0.36499023, -0.54052734, 0.18066406, -4.140625, -0.6191406, -0.25146484, 0.890625, -0.5805664, -0.5805664, 1.5390625, 0.9140625, -0.47753906, -1.3085938, 0.6538086, 2.3203125, -2.6171875, 0.17358398, 0.051452637, -4.1484375, 1.6113281, 3.5839844, 0.44726562, -0.16711426, 0.92822266, 0.23596191, -0.73828125, 1.0527344, 1.7431641, -2.7792969, -0.9589844, -0.63623047, 2.8867188, 1.0537109, -1.6162109, 3.5566406, 0.9614258, -2.171875, -2.8515625, 2.6152344, -1.0976562, 0.17346191, -0.014297485, -4.6367188, 2.8964844, -1.7373047, 1.0751953, -1.8359375, 0.5834961, -0.6767578, -1.6162109, 0.81103516, 0.98828125, -1.6767578, 3.6992188, 0.40429688, -2.8105469, 0.28710938, 1.9755859, 1.8994141, 1.0820312, 0.07696533, 0.45263672, 1.0917969, 0.0044517517, 2.546875, -0.034698486, -1.9960938, -0.46044922, 2.0234375, 0.57958984, 0.35766602, -1.1835938, 1.3583984, -0.7167969, 0.5258789, -0.8618164, -0.39501953, -1.6162109, -0.59716797, -0.58251953, -0.65185547, -0.9814453, -1.2460938, 0.65527344, 0.06451416, -0.7763672, 0.18322754, 1.6464844, -0.9121094, 1.3339844, 1.1113281, -0.5083008, -1.7021484, -1.3037109, 0.6479492, -1.7373047, -1.0761719, -0.15234375, -0.7480469, 0.068115234, -1.8359375, 0.37475586, 0.73535156, 0.47705078, 0.07489014, -0.37036133, -1.9902344, -1.2050781, -0.27514648, -2.0292969, 1.1503906, 2.5449219, -1.3652344, 2.3164062, -0.5283203, -1.8691406, -0.16052246, -1.0849609, -0.8569336, 0.88916016, 1.9619141, 0.14343262, 2.0117188, -0.76660156, -2.4589844, -0.92822266, -2.0859375, 2.4179688, -1.2001953, -0.7270508, 0.09088135, -0.12597656, 3.28125, 0.6489258, 1.5830078, 0.4326172, -0.625, 0.93359375, -1.4111328, -0.048065186, -0.1182251, -0.08251953, -1.0585938, 2.9375, 0.88671875, -2.5839844, 0.9223633, 2.0878906, 0.70996094, -1.6425781, 0.96875, -0.8823242, -0.13476562, 0.42089844, 2.1992188, 1.3330078, 0.32250977, -0.71533203, 0.7446289, -0.8623047]}, "B074MDC1JV": {"id": "B074MDC1JV", "original": "Brand: LEGACY HEATING\nName: Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating\nDescription: \nFeatures: Item size: 56.7in x21.3in x24in\nFull Stainless Steel Burner and High Quality constructure\nHeat resistant tempered glass wind guard included\nLava glass, table lid and a protection cover included\nUse with 20lb. propane tank (not included) ETL Approved\n", "embedding": [-0.8066406, 1.4013672, 2.7089844, -0.40844727, 0.41137695, 2.5703125, -0.12121582, -2.5976562, 0.2286377, 2.7519531, 0.375, 0.5239258, -2.5507812, -3.5527344, 2.7617188, -0.11444092, 0.36401367, 0.48535156, 1.0234375, -1.9736328, 1.5605469, 0.047088623, 0.29101562, -0.124938965, 0.07861328, 1.0644531, 4.15625, -3.8222656, -0.9604492, -1.0175781, 1.4931641, 2.140625, -0.0066375732, 3.3242188, -1.4052734, -0.76123047, -0.4597168, 0.4091797, -2.0546875, -0.047668457, -1.28125, -1.9931641, 2.7578125, 2.0097656, -2.1972656, -0.44848633, 0.5019531, -0.8496094, -1.0517578, -0.34521484, 0.8144531, 1.7099609, -0.1541748, 0.14221191, -2.0820312, 1.7675781, -1.5146484, -1.6191406, 1.4755859, -0.9667969, 0.9243164, -1.2919922, -0.3623047, 0.87939453, -1.2431641, 1.3369141, -0.021347046, -0.64501953, -0.39697266, 1.7939453, 1.0087891, -0.9824219, -0.9873047, 0.53027344, 0.94140625, -0.36157227, -2.8789062, 1.8613281, 2.4160156, -2.3710938, 0.8417969, 3.2207031, -0.21728516, -2.2011719, 1.5712891, -1.1318359, -1.8349609, -1.2021484, 0.94677734, 0.8310547, 0.8876953, 3.0117188, -1.0029297, -3.734375, 1.3183594, -1.5703125, 0.35302734, 1.2607422, -0.640625, 0.38867188, 1.0390625, 0.5996094, 0.65283203, -0.07019043, -2.4160156, -0.453125, 0.9057617, -0.014450073, -0.39208984, 0.055145264, -1.7519531, -1.4462891, -0.13720703, 0.328125, -0.11663818, 1.3857422, 0.89941406, -0.37670898, 1.5693359, 0.8847656, 3.921875, -0.08508301, -1.0380859, -0.6777344, 0.92578125, -1.3564453, -0.71875, 1.3203125, 1.3476562, -2.2285156, 1.0830078, -0.85546875, 1.8740234, 0.43188477, -2.4726562, 0.11834717, -2.1660156, -1.3544922, -4.171875, 0.8886719, -1.2480469, 0.86035156, 1.1894531, 0.4921875, -2.8300781, -1.3359375, -0.7963867, 2.0917969, -2.1914062, -1.4570312, 1.6269531, -0.6875, 0.74658203, -1.4541016, 1.2197266, -0.45336914, 0.53027344, -2.578125, 2.3730469, 0.095214844, 0.3005371, -0.42871094, -0.9301758, 0.73828125, -1.2421875, 0.5239258, 1.7763672, -0.4152832, -0.28320312, 2.1289062, -0.5410156, -0.25878906, 0.84814453, 0.75, 0.8227539, -0.32543945, 0.5566406, 1.5175781, 1.4179688, 0.6274414, -2.2519531, -2.078125, 0.56640625, 1.3876953, 0.17248535, -2.5253906, 0.28173828, -3.2226562, 1.5986328, -1.5380859, -0.47753906, 0.32226562, 0.10614014, -0.70654297, 0.059387207, -1.8427734, -1.9814453, -3.5957031, 1.3173828, 0.009979248, 0.6191406, 1.8291016, -0.6972656, -0.5839844, -1.7734375, -2.0859375, -2.25, 0.091674805, 2.9082031, 1.4384766, 0.66748047, -0.5698242, 1.0800781, 0.38110352, -0.40014648, -3.1875, 1.25, -1.3505859, 1.7587891, 0.7949219, 1.4599609, 0.0042419434, 0.45214844, 2.2128906, -0.4152832, -0.39746094, 2.421875, 0.84814453, -1.4667969, -1.7763672, 2.6171875, 1.8955078, -0.7602539, 1.2851562, -1.1005859, 3.0234375, 1.0039062, -0.7529297, 0.94873047, -1.1386719, 0.06237793, -0.030303955, -0.34179688, 0.28027344, 0.62402344, 0.6538086, -1.1494141, 1.0126953, 2.0488281, -0.83251953, -1.0927734, -0.4777832, 0.1907959, 2.3046875, 0.59472656, 1.3828125, -1.4921875, 0.17163086, 1.1708984, -1.4667969, 0.95947266, -0.765625, -0.78808594, 0.06854248, -0.16931152, -2.5214844, 2.3847656, 0.69873047, -3.078125, -0.49169922, -0.18701172, 0.2536621, 3.4492188, 0.2956543, 1.5136719, 1.3085938, -0.28930664, 2.7226562, -0.09008789, 1.7695312, 0.2421875, 0.40429688, 2.7753906, -0.96191406, 0.060699463, 0.51660156, 0.5317383, -0.23425293, -1.4667969, -1.1425781, 3.8007812, -1.0976562, -1.7431641, 4.3046875, -0.7260742, -0.33569336, 1.1699219, -0.9946289, -0.79248047, -1.2060547, 0.61279297, 1.9082031, 0.9746094, 1.4960938, -1.3476562, -0.84277344, 0.9223633, -1.59375, -1.9003906, -0.42944336, -0.17370605, -1.1865234, -2.1757812, 0.0046043396, -4.2226562, -1.2294922, 1.6875, -2.9121094, 0.7133789, -0.91552734, 0.26123047, 2.4003906, -0.52441406, -0.36767578, -0.49169922, 2.078125, -1.4023438, -0.0018396378, -1.0087891, 0.41186523, -1.6953125, -2.109375, 0.25878906, -2.4121094, -0.5566406, -2.7539062, -0.7192383, -1.3046875, 0.42407227, -0.8027344, -0.15686035, 1.2109375, -0.45947266, 1.8994141, -0.084350586, -3.125, -0.43701172, -0.15002441, -0.88720703, 1.6181641, -0.09832764, 2.984375, -0.6538086, -4.9804688, 0.5209961, 0.061645508, -0.1303711, -0.058380127, -1.2294922, -0.7260742, 1.3984375, 0.38012695, 0.66308594, -0.85498047, 1.2646484, -0.060180664, 0.46704102, -3.4511719, 0.0042266846, -2.640625, -0.12042236, -0.9897461, 0.5151367, -1.5849609, -0.6176758, -0.5083008, -0.4267578, 5.2929688, 0.35205078, 3.375, -0.5332031, 0.81591797, 0.8745117, -1.4150391, -1.5185547, 0.74316406, -0.22155762, 0.52685547, -2.4707031, -3.5332031, 0.7602539, -2.9472656, -0.95996094, -0.13757324, 0.7158203, 0.9526367, 0.114990234, -1.4462891, -0.50146484, 0.07800293, -0.9902344, 0.3322754, 1.7851562, -0.8979492, -0.71435547, -1.8710938, 0.26245117, 2.0332031, 2.0390625, -1.1259766, 1.1787109, 0.26831055, -1.8007812, 2.6621094, -0.26782227, -3.0410156, 0.4104004, 3.0253906, 0.34472656, 1.7548828, -1.9121094, -2.7421875, -1.6259766, 1.6816406, 2.0917969, 1.6005859, 2.1640625, -0.39086914, -0.37817383, -0.0501709, 0.5839844, 0.5961914, 0.4580078, -0.36938477, 2.8164062, -1.9042969, -0.98779297, 0.9121094, 1.9912109, -3.7773438, -1.0869141, 0.49487305, -1.8359375, 1.7998047, -0.5473633, 0.61865234, 0.2746582, -0.9995117, 1.2666016, 0.15771484, 2.2792969, 0.10925293, -1.6474609, 1.5556641, 0.953125, 1.0048828, 2.8847656, 0.27294922, 0.9916992, 2.0566406, 0.50634766, -1.2695312, -0.58203125, 0.45166016, 0.013130188, 0.13354492, 0.9160156, -1.0341797, -0.453125, 0.50439453, 0.35253906, -0.14575195, -1.4052734, -0.08050537, 2.2578125, 0.011878967, -0.2998047, -0.9213867, 0.37036133, 0.72802734, -1.5712891, 1.2666016, -1.9804688, 0.26660156, 1.1103516, -2.4003906, -0.17016602, -1.0605469, 3.9628906, 0.1953125, -0.29736328, 1.0117188, 2.7949219, -0.6972656, -1.9697266, 1.4648438, -1.0107422, -0.49389648, 2.6621094, -0.93066406, -1.5136719, 0.7089844, -2.9472656, 1.3232422, 2.5234375, -0.36450195, 0.50097656, 0.77246094, -0.19714355, 0.17004395, 0.7626953, 0.9848633, 0.08508301, -1.5820312, -0.3864746, -0.6870117, -1.4082031, 2.0527344, -2.0117188, -1.4003906, 2.1425781, -1.0449219, 2.6660156, 1.8759766, 2.9277344, -0.8808594, -1.6601562, 1.4560547, -0.91748047, 0.7675781, -2.0292969, -3.6992188, -0.73339844, -2.4257812, -1.03125, 2.890625, -1.4501953, 0.390625, 1.3945312, 1.0107422, -2.15625, -2.2851562, -2.5976562, -0.4987793, -3.2285156, -0.47485352, -1.3642578, -0.7553711, -2.0410156, -0.74560547, 0.91796875, 0.46875, 1.4921875, 0.6113281, -1.5927734, 0.6430664, -0.72753906, 1.0107422, -0.35351562, -0.5102539, 1.0537109, -1.4570312, -0.0848999, -2.3730469, 2.6835938, -0.18701172, -1.1328125, 2.4902344, 3.9921875, -1.0039062, -0.049682617, -0.17211914, 0.8095703, 1.6445312, -0.2709961, -3.0742188, -1.2294922, -0.80029297, -0.21728516, 0.50439453, 0.5214844, -0.36401367, -1.3935547, 0.27172852, 0.87109375, 0.23754883, 1.1533203, 1.4560547, -1.9384766, 0.8339844, -1.0966797, -1.0195312, -0.83203125, -0.76904297, -0.36987305, -1.5693359, 1.0556641, -2.5097656, 0.47338867, -0.9399414, -1.0009766, -0.26708984, 1.9462891, 1.1982422, 2.9042969, 3.515625, -1.6757812, -1.5117188, 1.1962891, -0.89697266, 0.87402344, 0.63183594, -1.2509766, 1.1894531, 0.15441895, 1.2519531, -1.8310547, -0.58203125, 0.2800293, -0.22875977, -0.29907227, -1.1933594, -1.3251953, -1.0517578, -0.26586914, 0.48486328, -1.1464844, 0.48242188, -2.5117188, -0.5834961, -1.8544922, 0.71875, -1.3496094, 0.8305664, -0.45922852, -0.6855469, 1.6162109, 0.46240234, 0.16638184, 0.81591797, 1.4414062, 1.5, 2.5078125, -0.31860352, -0.04623413, -0.92285156, 0.765625, -2.9414062, -0.18530273, 0.8100586, 0.7158203, -2.5976562, 3.75, 0.62402344, -0.95751953, 2.6464844, 2.4707031, -2.0546875, 0.027862549, -1.4443359, -0.7993164, 3.1523438, -1.6015625, -1.5507812, -0.93310547, 0.95654297, -0.8149414, 1.6376953, -0.40820312, -1.4111328, 0.43774414, -1.5087891, 0.040374756, -1.3242188, -1.8769531, -2.0761719, -1.6240234, -0.30126953, -1.6210938, 1.1289062, 2.3613281, 0.094177246, -0.6850586, 1.8105469, -0.03137207, -0.3947754, -0.93408203, 0.5805664, 0.029693604, -0.3203125, 1.6855469, 0.21154785, 1.2304688, -1.3994141, 2.984375, -1.0146484, 1.1132812, -2.0898438, 2.328125, -2.3671875, -1.1611328, 2.0957031, -0.16748047, -0.09423828, -3.8769531, -0.64501953, -0.39648438, 1.3613281, 0.014808655, -0.77734375, 0.6875, 0.037902832, -2.7226562, -0.85498047, -1.5253906, -2.8007812, -1.2080078, 0.11352539, -0.06866455, -1.2734375, -2.5449219, -0.28759766, -0.71777344, -0.9633789, -0.32543945, -0.9995117, 0.39697266, 0.010597229, -0.4465332, 2.2558594, 1.7011719, 0.5883789, -0.34375, -0.77490234, -3.0742188, -2.0234375, 2.1855469, -1.4257812, 3.1289062, 1.3994141, 0.6323242, 3.2949219, 1.4521484, 0.10321045, -0.60498047, 1.7001953, 0.9404297, -0.52685547, 3.3261719, -1.3857422, 2.3847656, -0.78564453, -3.4335938, -0.06695557, -1.8007812, -0.13842773, 0.8461914, 0.36523438, 0.3857422, 0.27124023, 0.7055664, -0.42089844, 1.9794922, 1.7080078, 1.6289062, 1.15625, -1.2050781, -0.17443848, -1.6943359, -1.7412109, -1.3525391, -2.9980469, -0.71240234, 0.13720703, 0.3503418, 2.5625, 0.44848633, 0.55078125, 1.3369141, 2.0058594, -1.1865234, 1.65625, -0.3515625, 2.5488281, 2.6894531, -1.4287109, -1.4267578, -3.5410156, -1.0458984, 1.3291016, 0.08508301, -1.3212891, -0.23522949, -3.7402344, -0.20861816, 1.1240234, 1.4951172, 1.5917969, 0.46826172, -1.7441406, 1.9960938, 1.9208984, -0.7446289, 1.3662109, 0.08477783, 2.2070312, -1.3857422, 2.2421875, 2.8457031, -0.60498047, 2.6875, -1.3730469, -0.7475586, -0.47680664, 0.484375, -0.20288086, -1.9892578, -0.20605469, -1.5126953, -1.1464844, -3.9980469, 0.14013672, 0.55908203, -0.2770996, 0.15563965, 0.087890625, -0.26367188, 2.5175781, 1.7734375, -0.6582031, -1.1894531, -1.3173828, -0.80126953, -1.28125, 1.2568359, 0.052581787, 0.28808594, -0.69189453, 0.5722656, -1.9550781, 1.5537109, -0.12030029, 0.8935547, 2.5273438, 2.8828125, 0.26879883, 1.9042969, 1.9550781, 0.29858398, 1.6113281, 0.7524414, -1.2353516, -0.07220459, 2.2167969, 2.4414062, 0.93408203, 0.027038574, -0.50634766, 1.2880859, 0.6845703, -1.7294922, 0.7036133, 2.4414062, -1.6210938, 1.8056641, -0.0047683716, 1.5693359, -2.0097656, 1.0351562, -0.57714844, -0.014564514, 0.76660156, -1.1962891, 1.4794922, -0.9707031, -0.08959961, 0.421875, 1.2255859, -0.88720703, -3.1699219, 2.3085938, 1.1943359, -2.9140625, -2.3359375, 2.3105469, 1.7275391, 0.13342285, 0.69384766, 0.22607422, 1.2333984, 1.6230469, -0.51953125, 0.3942871, 0.38842773, 1.1298828, 1.9042969, 0.94970703, -1.0986328, -1.5175781, 0.20617676, -2.0585938, -1.8681641, 2.2109375, 1.3613281, 2.6113281, 1.4619141, -2.4042969, 2.5390625, 0.8149414, -0.5229492, -1.8203125, -0.023406982, 1.3935547, -0.85009766, -1.7890625, 0.72265625, -0.90527344, 4.484375, 1.6064453, 1.1123047, 2.3222656, -0.9379883, 1.5009766, 1.1914062, 1.3291016, -0.7128906, 1.0791016, 0.4645996, 2.3867188, 1.1601562, -0.8339844, 1.3007812, 2.171875, 2.6738281, -0.54345703, 1.9072266, -2.5117188, 0.7788086, 2.1640625, 0.08880615, -1.8544922, -2.046875, -1.2998047, -0.87597656, 0.27856445, -0.4091797, -2.1113281, 2.5761719, 1.1054688, -0.59033203, -1.3398438, 1.1386719, -0.8286133, 2.1328125, -1.3632812, -0.7597656, 0.062469482, -1.4101562, 1.6572266, -1.0400391, -2.6367188, -2.5390625, 3.5625, 0.1854248, -0.23742676, -0.16503906, 0.49780273, 0.6665039, -0.7832031, 1.5996094, -0.83496094, 0.23876953, 0.8833008, -0.25097656, -1.3613281, 0.39208984, 0.9213867, -1.7080078, -0.5053711, -1.2099609, -1.1435547, 1.8300781, -1.9130859, 0.88427734, 4.0078125, 0.5839844, 0.7944336, -1.0791016, -4.1835938, -2.7226562, -1.1845703, 2.3164062, 0.5786133, -0.60839844, -0.5800781, 1.1914062, 3.015625, -0.9550781, 0.40600586, -0.94677734, -1.1582031, 0.9897461, -1.03125, -0.08087158, -0.026931763, 0.4716797, 1.6630859, 1.4287109, -0.018249512, -0.7314453, 2.5742188, 3.3164062, 1.1113281, -1.9052734, -0.23901367, 0.4794922, 1.5498047, 1.5, 0.6269531, 1.0732422, 0.38061523, -1.9453125, -4.1796875, -2.0488281]}, "B00PKVS3HG": {"id": "B00PKVS3HG", "original": "Brand: Powerblanket\nName: Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray\nDescription: \nFeatures: Safely heats cylinder to an optimal 90 \u00b0 F / 32 \u00b0C (\u00b1 10 \u00b0F/5 \u00b0C)\nSaves money by optimizing gas and material usage\nIncrease flow rate performance and efficiency of gas cylinders\nEliminate unnecessary cylinder refills in cold weather\nCertified to UL/CSA/CE standards\n", "embedding": [0.6767578, 1.9091797, 2.9238281, 0.9946289, 1.0800781, -0.7109375, 1.0849609, 0.008895874, -0.84228516, 1.8564453, 1.6298828, 0.8569336, 0.29833984, -3.5253906, 0.9526367, -2.3945312, 0.3630371, 2.6308594, 0.9584961, -1.0380859, 1.5527344, -0.3779297, 2.0253906, -1.2451172, -1.8789062, 1.0097656, 3.0019531, -2.5800781, -2.9882812, -1.1142578, 0.4091797, -1.0263672, -0.38452148, 2.3886719, -2.4277344, -2.6210938, -0.8173828, 0.116882324, -3.4121094, -0.17126465, -1.1611328, -2.3789062, 1.6884766, 0.578125, -1.9990234, 0.3581543, 0.55566406, -2.34375, 0.1505127, -0.105407715, -0.15246582, -0.07891846, 0.7421875, 0.24389648, -0.00573349, 2.3730469, 0.21484375, -1.0439453, 1.1748047, 0.29125977, 0.9501953, 0.6879883, 0.059265137, 2.7011719, -2.4296875, 1.34375, -0.48168945, -0.52685547, -2.4160156, 0.42871094, 3.1796875, 2.0996094, -1.0507812, -0.052459717, -0.054016113, 0.16491699, -3.359375, -0.11853027, 3.2871094, -1.2929688, -0.1149292, -0.82714844, 0.113586426, -0.42114258, -1.3730469, -0.38452148, -1.1181641, -0.066101074, -1.5224609, 1.1123047, 0.96972656, 2.4785156, -2.140625, -3.4628906, 0.19628906, -2.3828125, 1.7753906, 0.45654297, 0.44335938, -0.4074707, -0.78466797, -1.90625, -0.6201172, 0.2861328, -2.2480469, 0.50390625, 3.7773438, 0.4152832, -2.5722656, 3.0195312, -2.3925781, 0.24279785, 1.4130859, 1.3046875, -0.40966797, -1.6787109, 1.0253906, 0.27514648, 2.6386719, 1.2001953, 3.890625, -1.9921875, 1.1679688, -2.90625, 1.3886719, -1.1083984, -0.85058594, -2.2519531, 4.2421875, 1.6572266, 1.7539062, 0.43896484, 1.1044922, -0.19665527, 1.7197266, -0.5644531, 0.008674622, -0.85009766, -3.8574219, -1.1679688, -2.6816406, -0.11755371, 1.2861328, -1.0410156, -4.0742188, -2.46875, -1.2158203, 2.7773438, -2.3710938, -1.8144531, 2.5800781, -0.8095703, -0.72265625, -2.8222656, 1.1376953, 2.1015625, -0.20532227, -2.40625, 3.7832031, 2.0703125, 1.3554688, -2.0996094, -1.0800781, 0.20861816, -1.8369141, -2.9316406, 2.6523438, -1.5478516, -1.8583984, 0.9633789, -1.0273438, -1.2177734, -0.89208984, 1.4072266, 0.18078613, -1.9326172, -0.06311035, 2.1816406, 0.35864258, 0.06890869, -1.9541016, -1.4101562, 0.5234375, 0.07635498, -0.8911133, -1.9697266, -0.74365234, -0.6166992, -0.9711914, -1.1845703, -1.8261719, -1.3964844, -1.1376953, 1.09375, -1.4072266, -0.44458008, -0.8979492, -1.5517578, 2.7109375, 2.1738281, -0.2927246, -0.10272217, 0.7836914, 0.45507812, -2.1699219, -1.8105469, 1.0693359, -1.5849609, 0.04434204, 1.2119141, -0.56347656, -0.5776367, 2.2890625, 0.5234375, -0.16796875, 0.77783203, 0.066589355, 1.1298828, 1.4560547, 0.70751953, -0.14709473, -0.9760742, 0.5854492, -0.49072266, -1.2363281, 1.8349609, -0.117492676, 0.041229248, -0.06689453, -3.140625, 1.5712891, 2.9746094, 0.29858398, -0.4987793, -1.3291016, 1.1279297, 0.7138672, -0.2746582, 2.4199219, -2.4121094, -0.8076172, -0.70654297, -1.7255859, -1.1005859, 0.71728516, -0.07598877, -0.61279297, -0.39453125, -0.0317688, -1.3076172, 1.1298828, -0.56152344, 2.5722656, -0.37548828, -2.8964844, -0.64990234, 2.2460938, 0.8046875, 0.124572754, -3.1328125, -0.16723633, 0.7915039, 0.8911133, -0.17468262, 0.014450073, -1.2070312, 1.2285156, 0.09490967, -0.17565918, 0.81884766, -0.0026779175, 2.0214844, 2.7636719, -1.5654297, 0.7988281, 1.5009766, -2.2988281, 2.6816406, -1.5341797, 1.3134766, 0.83691406, 0.6933594, 1.1523438, -2.7578125, -0.28710938, 1.2265625, -0.06933594, 0.16711426, -2.0429688, 0.21362305, 2.8789062, -1.2822266, -0.8305664, 3.2304688, 0.13586426, 0.47314453, 0.4580078, 1.6777344, -0.77197266, -0.37475586, 3.9179688, 2.4121094, -1.2138672, 0.062927246, -0.8613281, -2.4453125, 0.38378906, -1.4619141, -0.31079102, 0.81640625, 0.80371094, -1.7207031, -2.140625, -0.0287323, -4.5117188, -0.3166504, 3.0019531, -1.8867188, 1.3056641, 1.2285156, -1.0322266, 1.9785156, -0.84521484, -1.5996094, 0.6113281, 1.0068359, -1.7363281, 1.0683594, -1.2734375, -0.84033203, -0.7709961, -3.1386719, 0.8691406, -1.2841797, -0.5517578, 0.20483398, 0.06365967, -2.3964844, -0.95947266, -1.8583984, 0.44995117, 0.059692383, -3.4570312, 1.3037109, 1.5195312, -0.9238281, 0.19689941, 1.1210938, -0.58154297, -2.7226562, 1.2148438, 1.1630859, -0.93652344, -3.6210938, 2.5996094, 2.1816406, 0.52734375, 0.13012695, -0.23168945, 0.5083008, -0.41552734, -0.69677734, -0.10443115, -1.0087891, 0.6958008, -0.7817383, 1.1621094, -2.8183594, 3.6425781, -0.7392578, 1.375, -0.6044922, 0.40722656, -2.7773438, -0.9824219, 1.7363281, 1.6689453, 2.0449219, 2.3691406, 0.75683594, 0.76220703, 0.087646484, 0.5678711, -1.0771484, -2.4140625, 2.4726562, -1.9541016, -0.22937012, -1.296875, -4.1367188, 0.7338867, -0.32617188, -1.0908203, 0.022125244, -0.9135742, 2.0253906, 0.5136719, -1.0898438, -0.28979492, -0.35595703, 0.8598633, -1.7802734, -0.5263672, -0.18054199, -2.7246094, -3.0820312, -0.3671875, -0.79248047, 0.83691406, -0.80566406, -0.13256836, 1.1474609, -0.74316406, 0.24206543, 0.6538086, -2.8789062, 1.5107422, 3.5839844, 1.828125, -0.116882324, -2.2480469, 0.35473633, -1.5556641, -0.7661133, 2.0234375, -0.46435547, 2.1875, 2.0058594, -0.7832031, -0.20092773, 1.6689453, -0.7963867, 1.5771484, 0.38134766, 2.1132812, -0.5336914, -1.8535156, 1.1240234, 2.4648438, -2.6230469, -0.09289551, 4.2734375, 0.5175781, 1.4033203, 2.4316406, -0.6245117, 0.23339844, 0.026138306, 1.2246094, 0.77685547, 0.28076172, -1.6113281, -1.7568359, 0.22644043, 1.9169922, 3.5742188, 0.6435547, 0.2084961, -0.005634308, 1.5615234, 1.3681641, -1.2216797, 0.022659302, 1.2558594, 0.3137207, 2.5957031, 0.12731934, 0.063964844, 1.3447266, 1.1269531, 1.1123047, 1.4042969, -2.7714844, 1.0380859, 1.9072266, 0.6430664, -1.6289062, -0.98095703, -1.5019531, 0.5810547, -1.6425781, 1.7285156, 0.18518066, 1.1943359, 0.7607422, -1.6552734, -2.109375, -1.6494141, 0.86279297, -0.016464233, -0.3540039, 0.41796875, -0.55908203, -0.68408203, -1.8115234, -3.3320312, -0.4807129, 1.0009766, 3.9316406, 1.5400391, -0.32421875, 0.3984375, -0.5493164, 1.4638672, -0.16601562, -1.9423828, -0.8354492, -2.9492188, -1.9960938, 0.14660645, -0.17016602, -0.33007812, 0.1652832, -3.8886719, 0.9995117, -2.3261719, 0.8515625, 2.4375, -1.1835938, 0.5957031, 0.061828613, -1.4033203, 1.8574219, 0.07086182, 1.2851562, -0.006580353, 0.3388672, 4.03125, -0.8125, -0.7861328, -0.4807129, -3.8496094, 1.4726562, -1.53125, -0.10662842, 2.8730469, 0.18139648, 2.8339844, -1.015625, -0.4104004, -1.1650391, -3.3945312, 0.29956055, 0.028533936, -3.0683594, 1.0244141, 2.3886719, -0.8930664, -0.7944336, 0.28881836, -2.0898438, -3.1386719, -1.2001953, 0.42358398, -1.6806641, -0.37670898, -2.1855469, 1.0634766, -0.004585266, -0.73828125, 0.13171387, 1.2460938, -0.5786133, -2.3652344, 2.6152344, 0.13061523, 1.8935547, 2.3144531, 3.2851562, 1.7480469, -1.2460938, -0.02810669, 2.7304688, 2.6445312, 0.66259766, -3.7832031, 2.3125, 0.011665344, 1.4501953, -2.5332031, -1.5234375, -1.4892578, -0.8725586, -0.6542969, 1.8027344, 1.7851562, 1.3945312, -0.45996094, -1.1289062, 1.5947266, 0.08666992, -1.6386719, -1.8935547, -2.1210938, -0.24487305, 0.9291992, 1.6328125, -0.33764648, -3.1777344, -0.4729004, 0.15991211, -1.8710938, 1.1494141, 1.7714844, 3.3417969, 2.0644531, -1.5585938, 1.5849609, -2.1074219, 0.66015625, 0.58447266, -0.91308594, 1.5068359, 1.5292969, 2.2734375, 3.3320312, -2.0585938, -0.9326172, 0.39135742, -2.2597656, -1.7978516, 0.018753052, 0.39282227, -1.4765625, 0.8286133, 1.25, -0.5234375, 2.8730469, 0.41430664, -0.47558594, 0.30493164, -1.34375, -0.1239624, 0.31982422, 0.44067383, -0.13439941, 2.0410156, -0.028015137, 0.58984375, -0.36621094, 0.5185547, -1.1972656, 1.6787109, -0.9379883, 1.7900391, -1.5244141, 0.7324219, -1.5527344, 0.49243164, 1.2285156, -0.9692383, 1.2041016, 2.3320312, 1.8789062, 0.9194336, 0.4736328, 2.4570312, -0.45239258, 0.37353516, -0.7114258, 0.36645508, 0.17260742, 0.6220703, -1.2802734, -0.097229004, 3.6171875, 0.63964844, 2.9140625, 1.7158203, -2.8964844, 0.35961914, -3.2714844, -2.1035156, -1.5283203, 2.6210938, -0.5283203, 0.1315918, 1.9248047, -1.7744141, -0.5004883, 4.4609375, 1.234375, 0.0960083, 2.3007812, 0.16345215, 0.2788086, -0.52441406, 0.8613281, -2.2011719, 1.2333984, -0.8779297, 1.1796875, 1.0683594, 1.1591797, 2.6621094, -2.3554688, -0.32104492, -1.0957031, 0.04928589, -2.5332031, -2.1816406, 2.09375, -0.5498047, 0.77197266, -2.9765625, -2.1699219, -0.4104004, 0.62841797, 1.0556641, -0.85058594, -1.5576172, -2.5703125, -3.5, -3.4550781, -0.5205078, 0.9770508, 0.092041016, 1.0126953, -2.7753906, -0.18432617, 0.47607422, -1.5722656, 0.017974854, -1.8144531, 0.2854004, -3.0039062, -0.14343262, -1.7148438, 0.24206543, -0.48901367, 0.6953125, -2.1425781, 0.26904297, 0.6459961, -2.3378906, -1.6386719, 1.4462891, -0.6435547, 1.6650391, 1.2822266, -1.3847656, 1.0449219, 2.4628906, -0.95654297, -0.07116699, 2.1894531, 0.51416016, -0.8720703, 2.03125, -1.6269531, -1.6435547, 0.08001709, -1.328125, 0.39257812, 1.0087891, -0.42749023, 1.0517578, -0.052520752, 0.041107178, -0.32861328, -1.015625, -0.6230469, 1.296875, 0.30029297, 1.6533203, 0.89941406, 1.1357422, -1.4160156, -0.40673828, 0.3425293, 0.029968262, -1.1689453, -3.3554688, -0.5864258, 1.3554688, 0.9863281, 0.27661133, 1.1943359, 0.24353027, 0.65966797, -0.74121094, -0.13122559, -2.2578125, 4.171875, 0.7939453, -1.6621094, -2.0390625, -1.1171875, 1.6005859, 0.8935547, 0.40063477, -0.92041016, -0.9082031, -1.3974609, -1.4228516, -0.46777344, 1.1347656, 2.4746094, 2.125, -1.6982422, 3.0117188, 3.9414062, 0.47802734, -0.09832764, 0.22094727, 0.051635742, -0.42578125, 2.734375, 2.8828125, -3.6582031, 0.27124023, -1.1132812, 2.7402344, -0.68652344, -1.0400391, -0.375, -1.1367188, -0.5292969, 1.4326172, 1.1152344, -2.9980469, 0.10760498, 0.04421997, -1.0693359, 1.1572266, 2.5605469, -0.45483398, 0.17858887, 1.4267578, 0.34350586, -0.8457031, -0.5839844, 1.7041016, -1.5732422, 2.8671875, -2.4804688, 0.028579712, 0.8520508, 0.5395508, -0.19433594, -0.88720703, -1.5703125, 1.3769531, 2.2011719, 1.2402344, 3.8359375, -0.9609375, 0.9824219, 0.10308838, 0.7939453, 1.6796875, 0.88183594, 0.34375, 1.5605469, 1.65625, -0.34838867, -1.8105469, -0.45947266, -0.5288086, -2.2421875, -0.18518066, 1.5878906, 1.2548828, -1.6367188, -0.69384766, 1.4707031, 1.0097656, 0.06793213, 1.1572266, 0.2631836, -0.38208008, -2.6816406, -1.9335938, 2.0703125, -0.32006836, -0.5253906, -0.16796875, 1.5546875, 0.023223877, -0.9291992, 1.1386719, -0.6489258, -2.3632812, 1.6767578, 2.8339844, 0.4975586, 1.9677734, 0.23632812, -0.42797852, 2.2578125, 0.46411133, 1.4726562, -1.9892578, 0.070007324, -0.71240234, 3.8496094, 1.9111328, 0.19372559, 1.3056641, 0.93652344, -0.32177734, -3.3066406, -0.9790039, 0.12243652, -0.0044174194, 2.4902344, -1.9570312, 1.4697266, -1.1865234, 2.1269531, -1.859375, 0.1616211, 2.4902344, -2.3691406, 0.13391113, 0.8027344, -0.2993164, 1.6621094, 0.6376953, 0.7402344, 1.2207031, -0.5673828, 0.81347656, -0.77490234, -0.6738281, 1.1738281, 2.1464844, 0.09161377, 3.1171875, -0.3017578, -0.27441406, -0.9951172, 0.53808594, 3.2285156, 0.6245117, 0.09136963, 0.45214844, 2.4316406, 0.16748047, 0.99072266, -0.57470703, 0.5698242, -1.7822266, 0.0059776306, 0.16088867, -0.3466797, -0.45263672, 0.9794922, -1.6376953, -2.8808594, 1.5253906, 2.3085938, -1.1865234, 0.70947266, 1.9707031, -1.8789062, -1.6660156, -2.8085938, -0.08135986, -1.0634766, -3.0957031, -0.9038086, 1.5644531, 0.4699707, -0.25561523, 0.83154297, -1.5654297, -0.45776367, 2.4433594, 1.9335938, -1.8134766, -0.42382812, -1.0302734, -2.0683594, -0.91308594, -1.7998047, 2.9628906, 0.4020996, 2.1875, -3.0996094, -1.1123047, -1.5673828, -0.84277344, 1.6054688, 1.0224609, 1.1953125, 1.3388672, -2.3300781, -2.1074219, -0.40625, -0.59765625, 2.9648438, 2.3203125, -0.76708984, 1.3212891, 0.05871582, 3.6699219, -0.5654297, -0.067871094, -0.40942383, 1.4384766, 0.35986328, -1.4472656, 0.02848816, 1.953125, -1.4228516, -1.5273438, 2.1953125, 1.9892578, 0.027282715, 1.6689453, 1.1005859, -1.2626953, -2.2792969, -0.828125, -1.2597656, -3.6757812, 0.69091797, 0.84472656, 1.0458984, -2.3789062, -1.734375, -4.3242188, -0.1928711]}, "B000P9GZSW": {"id": "B000P9GZSW", "original": "Brand: Texsport\nName: Texsport Portable Outdoor Propane Heater\nDescription: \nFeatures: Sport Type: Camping & Hiking\n", "embedding": [-0.23876953, 1.8291016, 2.1582031, -1.53125, -1.0771484, 0.2421875, 0.20837402, -3.0136719, 0.8125, 1.3339844, 0.8696289, 1.3222656, -0.58251953, -4.4257812, 1.1972656, -0.80371094, 1.1582031, 2.0742188, 0.35717773, -0.33984375, 0.9995117, 0.31079102, 1.9238281, -2.8320312, 2.2011719, 0.7910156, 6.0742188, -2.0449219, -0.82714844, -0.10015869, 0.37524414, 1.9794922, 0.023498535, 2.3632812, -1.2333984, -0.27783203, -1.7714844, 0.9404297, -2.2246094, 1.0019531, -1.1191406, -2.0527344, 0.92822266, 0.5332031, -1.9023438, -1.9931641, 1.4746094, 0.47631836, 0.051086426, -0.28588867, 0.11291504, 0.33862305, -1.0576172, 0.7290039, -2.8261719, 0.39111328, -1.4052734, -2.0273438, 1.1064453, 1.7958984, 1.2939453, -2.3242188, -0.67089844, 2.2890625, -0.20617676, 3.0566406, 0.84277344, -2.1230469, -1.0068359, 1.2705078, 2.1855469, 0.36938477, -0.7192383, -0.5722656, 0.13806152, -0.7026367, -3.5703125, 0.6713867, 2.0742188, -0.036956787, -0.49389648, 1.7441406, 1.3369141, 0.7397461, 0.15002441, -1.8261719, -1.1875, -0.48901367, 1.0117188, 1.1787109, -2.4550781, 2.1171875, -0.48095703, -5.9296875, -0.36499023, -0.86816406, 0.5698242, 0.50097656, 0.7709961, 0.58154297, 1.1816406, -0.081726074, 1.6503906, 0.71777344, -0.89697266, -0.0057373047, 1.6308594, 0.043151855, -0.65722656, 0.8076172, -2.3867188, -1.5068359, 1.4726562, 0.91308594, -0.13415527, -0.27954102, -1.1650391, 0.035705566, 3.875, 0.8364258, 4.5585938, -1.3037109, 1.6582031, -1.6386719, 1.0224609, 1.125, -0.12200928, 0.67822266, 1.9082031, -0.6225586, 2.3886719, 1.6738281, -0.037994385, -0.30908203, -0.25170898, -2.0390625, -1.921875, -2.2675781, -1.7167969, -0.68847656, -2.1230469, -0.45532227, 2.7480469, -0.6948242, -3.6074219, -0.57177734, -0.043151855, 1.15625, -0.38256836, -2.2539062, -0.8334961, -0.5957031, -1.5126953, 0.7558594, 0.9145508, 1.0019531, -0.9458008, -1.7138672, 3.1230469, 1.2431641, 1.8544922, 0.4345703, -1.1113281, 0.19213867, -0.61035156, -3.0390625, 0.6254883, 0.16235352, -0.71533203, 2.2265625, 0.4543457, -1.96875, -0.65771484, -1.2558594, 1.3076172, -0.9604492, 1.1591797, 2.5546875, 1.125, 0.1998291, -0.8491211, -0.6972656, -1.421875, 0.42333984, 1.7314453, -2.7363281, -1.4970703, -1.2167969, 0.33569336, -1.6699219, 0.22851562, 1.4257812, -2.6640625, 0.3310547, 0.11907959, -2.6582031, -1.6464844, -1.7705078, 2.84375, 1.6113281, -1.3964844, -0.50683594, -1.1416016, -0.39746094, -1.5009766, -2.3105469, 1.1259766, -1.28125, 0.56689453, 0.88427734, 0.11199951, 0.41723633, 1.4160156, 2.0605469, -0.42089844, -2.9257812, 2.25, 0.28588867, 2.5625, 2.7597656, -0.4921875, 1.1523438, -0.49853516, -0.5517578, 0.18725586, 1.0214844, 0.26904297, 0.20397949, -1.4716797, -1.078125, 2.9296875, 2.2734375, -0.71533203, 0.2487793, -0.43823242, 1.7958984, 1.9814453, 0.3935547, -1.0449219, 0.9350586, 0.24938965, -0.38256836, -0.031433105, -0.32739258, 0.18688965, -1.2353516, -0.6147461, 0.9379883, 2.0546875, 1.0273438, 2.7949219, -0.17687988, 0.7602539, 1.4384766, -0.3449707, 1.3027344, 2.0292969, 1.1621094, -0.62402344, -3.1425781, 0.36108398, 1.1269531, -1.3056641, 0.0859375, 1.1025391, -0.11804199, 3.1757812, 0.26538086, -1.4443359, 0.25854492, -0.17504883, 2.5761719, 1.53125, 0.7792969, 2.9960938, 0.016738892, -1.6787109, 2.1796875, -0.7993164, 1.1523438, 0.96240234, 0.13806152, -0.13208008, -1.1435547, -0.33764648, -1.0771484, 0.13061523, -0.9536133, -2.0859375, 0.6743164, 4.2382812, -1.0458984, 0.5493164, 3.2109375, -1.1816406, 2.0175781, 1.4345703, 0.9189453, -2.7773438, 0.16955566, 2.1015625, 1.9248047, -1.6875, 1.5292969, -1.2988281, -0.79833984, 1.203125, -2.0722656, -0.24133301, 1.7246094, -0.046813965, -1.7099609, -1.8652344, -0.59814453, -2.5996094, -1.6738281, 0.81884766, -2.8476562, 0.53808594, 1.5292969, -1.5791016, 0.86621094, 1.1123047, -0.8691406, -0.8852539, 1.359375, -1.9990234, 1.5332031, 0.5908203, -0.43432617, -0.57177734, -1.0546875, -0.5175781, -1.7255859, -1.0742188, 0.062683105, 0.6118164, -0.52246094, 2.7929688, -1.0175781, -0.81884766, -0.10015869, -0.7709961, 0.8330078, -0.2915039, -2.1347656, -0.3779297, 0.44140625, -1.7832031, -2.5527344, 0.8588867, 0.18676758, -0.28759766, -5.4179688, -0.69677734, 1.5429688, -1.1591797, 0.7084961, -2.4082031, 0.18713379, 0.53808594, -1.6318359, 0.044921875, -1.1025391, -1.2978516, -2.7597656, 1.6210938, -3.9238281, 2.5742188, -0.20251465, 1.7216797, -0.2401123, 0.1595459, -1.1689453, -1.8955078, 1.3574219, 0.9355469, 4.9609375, 1.5849609, 1.3369141, -1.0800781, -0.5083008, 0.18322754, -1.1962891, -1.7431641, 0.06427002, -1.1298828, -0.390625, -0.19104004, -2.7597656, 0.006038666, -1.7900391, 0.24853516, -0.2631836, -1.1230469, 0.7607422, 1.2636719, -0.9848633, 0.28222656, -1.8193359, -1.6386719, 0.80810547, 1.3212891, -0.40673828, 0.703125, -0.4152832, 0.46362305, -0.91552734, 1.8740234, 0.05331421, -0.10235596, 2.5664062, -0.9355469, 1.4970703, 1.5585938, -3.6660156, 0.10668945, 2.6445312, 1.2363281, -0.92333984, -1.1298828, -1.5927734, -0.16479492, 1.3164062, 3.0976562, 1.828125, 2.15625, 1.2353516, 0.63964844, 0.18725586, 1.6503906, -1.5644531, -0.24377441, 0.35473633, 0.87158203, -2.3769531, -1.1396484, 0.41479492, 0.050354004, -2.9921875, -1.0048828, -0.45214844, 0.28930664, 1.0976562, 1.2988281, -2.4003906, -0.42944336, 1.4042969, 0.14465332, 0.8310547, -0.3022461, -0.7368164, 0.7270508, -1.4306641, 1.7666016, 1.9501953, 0.7446289, -0.6801758, 0.23120117, -0.10668945, 1.2285156, -0.33154297, 1.3457031, 0.40356445, -0.15600586, 1.3740234, 0.57470703, 0.14672852, -0.7036133, 0.06695557, -0.36254883, 0.19213867, -1.4501953, 0.39111328, 1.8427734, -0.5786133, -0.46264648, 0.50927734, -1.5830078, -0.6333008, -0.5800781, 1.2294922, -1.8740234, -2.1699219, 1.2480469, -3.2597656, -1.6689453, -0.7128906, 1.3320312, 0.1796875, -1.3154297, -0.18078613, 0.43286133, -0.58691406, -1.3623047, -1.0908203, -1.1826172, 0.26464844, 1.8974609, 0.62158203, -0.049041748, -1.0458984, 0.4152832, 1.1914062, 3.3164062, -0.57177734, -1.2441406, -1.2998047, -0.85253906, 2.0996094, -0.41235352, 0.66503906, 1.6523438, -2.0214844, 0.64941406, -1.96875, -0.50927734, 2.9570312, -2.7480469, 0.95214844, 1.7919922, 0.50878906, 2.4375, 0.09552002, 2.8164062, -2.8984375, -1.734375, 3, -1.5849609, -1.3339844, -1.5820312, -3.4296875, 0.4711914, -0.08648682, 0.1706543, 2.5527344, -0.18835449, 0.8173828, 1.6875, 0.24743652, -0.28076172, -2.8398438, -1.4238281, 0.18139648, -3.5742188, 0.32470703, 0.32958984, -1.2050781, -2.4414062, -0.7470703, -1.0224609, -0.6430664, -0.026779175, -1.7304688, 0.38842773, -0.39501953, -1.4775391, 1.5048828, -0.14697266, -0.032287598, 0.67089844, -0.15393066, -1.0175781, -1.5058594, 2.0898438, 1.0927734, 0.4255371, -0.19274902, 4.1914062, 0.45361328, 0.5732422, -0.07086182, -0.123168945, 0.8149414, 0.42333984, -2.8417969, -0.83740234, -3.8476562, -0.33618164, -0.44458008, -0.019042969, 1.5673828, -0.3022461, -0.5126953, 1.5029297, 0.7734375, 2.375, 2.0332031, -1.5654297, 2.4042969, 0.4074707, -0.17614746, -1.7363281, -1.2714844, -0.17590332, -0.11755371, -0.30249023, 0.67529297, -1.78125, -0.30566406, -1.2851562, 1.3300781, 0.6772461, 2.5449219, 1.9814453, 1.6074219, -1.5302734, -0.7578125, -0.7792969, -0.1586914, 1.4345703, 0.111450195, 0.33496094, -0.53222656, 1.8134766, 3.6269531, -2.0058594, -0.8017578, 0.10449219, -0.22924805, -0.43139648, -2.0957031, 0.75341797, -0.9111328, -1.0830078, -0.60058594, -1.6396484, 2.9394531, -0.7763672, 0.59033203, 1.7841797, -1.7744141, -1.1445312, 0.6040039, -0.28979492, 0.93847656, 2.2363281, -2.0058594, -0.29248047, -1.5400391, 1.5927734, 3.6503906, 2.0761719, -2.0351562, -0.44311523, 0.81884766, 0.085998535, -0.97998047, -0.83154297, 1.9052734, -1.2207031, 0.22277832, 4.2851562, 1.5693359, 0.328125, 0.54052734, 1.8330078, 1.0048828, 0.48266602, -2.0664062, -1.4960938, 1.4179688, -1.7529297, -3.3085938, -0.17346191, 0.6489258, -1.3466797, 3.3886719, -1.0283203, -0.9116211, -1.6748047, -3.3867188, -1.0322266, -0.7314453, 0.44189453, 2.7734375, -0.7548828, 2.0703125, -0.9711914, 1.5410156, 3.0664062, -0.6118164, 0.21594238, -0.076538086, -1.6777344, -0.46557617, 0.32592773, 0.068237305, -2.6914062, -3.1308594, 0.28564453, 0.40795898, 0.076416016, 1.3007812, 0.23022461, -1.8847656, 0.02015686, -2.9746094, 1.9960938, -3.7949219, -0.52978516, 0.32666016, 1.3056641, 0.72753906, -0.88720703, -1.0537109, -1.2744141, 0.3713379, -0.062316895, -0.8779297, 0.03704834, -1.1992188, -2.9082031, -4.4726562, -1.1357422, -0.8769531, 0.95166016, -0.6723633, -0.6459961, -0.38134766, 0.04446411, -1.4990234, 1.4599609, -0.7446289, -0.1430664, -1.5283203, 2.0371094, 0.18908691, 0.18029785, 0.2783203, 2.3339844, -0.39575195, 1.1376953, -1.1142578, -0.42529297, -3.9414062, -0.23364258, -1.8496094, 0.41357422, 0.88134766, 0.22399902, 0.5283203, 3.8261719, 1.8349609, -0.9580078, 0.8100586, 0.3479004, -1.5117188, 0.031921387, -2.1660156, 1.4238281, -0.26635742, -1.0507812, 0.08148193, -1.4824219, 1.4208984, 1.2958984, 0.42700195, 0.5800781, 0.7451172, 0.09069824, 0.7241211, 2.0605469, 0.85009766, 1.9335938, 1.6152344, 0.42236328, -1.0537109, -2.0898438, -2.5898438, 0.2286377, -1.9482422, -0.27075195, -0.084228516, 1.3769531, 1.3369141, 0.55126953, 2.3945312, 1.3027344, 2.5800781, -2.3496094, 0.34033203, -0.35913086, 1.9853516, 2.3554688, -1.4804688, -3.7324219, -3.1132812, -1.4658203, 3.4355469, -0.046661377, -0.46826172, -1.3613281, -0.9633789, -0.47973633, -0.3708496, 3.0449219, 1.6396484, 1.9091797, -0.34399414, 2.4199219, 0.84277344, 0.0340271, -1.4648438, -0.017349243, 2.8164062, -0.7050781, 1.8125, 0.8930664, -0.30029297, -0.15686035, 1.1699219, -0.21105957, -0.2043457, -1.8623047, 1.3857422, -3.0214844, 1.8544922, 0.5107422, -0.41577148, -1.1992188, 0.88134766, 2.1015625, 0.045715332, 1.8408203, 1.9882812, 0.09655762, -1.03125, 1.3916016, 0.34814453, -1.5244141, -0.7939453, 0.8852539, -0.20825195, 1.6220703, -0.06591797, 3.7265625, -0.25073242, 2.1269531, 1.0419922, 0.80810547, -0.7578125, 1.9033203, 3.3085938, 1.5371094, 3.9472656, 0.5239258, 1.1806641, 0.98876953, 1.8847656, 1.1083984, -3.9082031, 1.2050781, 1.6904297, 0.8833008, -0.8574219, -0.89746094, 0.06774902, 2.2089844, 0.34472656, -0.44555664, 0.36328125, -0.4650879, -0.6972656, 0.0541687, 0.74316406, 1.7089844, -2.0019531, 1.6806641, -1.6181641, 0.72998047, 0.546875, -1.2138672, 0.5786133, -1.4736328, 0.76123047, 0.44873047, -0.4831543, 1.3466797, -2.1621094, -1.2119141, 0.2487793, -2.6328125, -1.5966797, -0.57128906, 0.9550781, 0.79541016, -0.52685547, -0.72509766, 2.8027344, 0.07952881, 0.65185547, 0.8901367, 0.3166504, 0.3244629, 1.3066406, 1.7138672, -1.5537109, 1.5029297, 1.4101562, 0.7216797, -2.78125, 0.84228516, -0.3630371, -0.6660156, 0.1005249, -1.9697266, 0.8979492, -0.0158844, -0.012863159, -1.6982422, -0.0049552917, 1.9121094, -2.2265625, 0.5449219, 0.15515137, -0.7211914, 4.2421875, -0.9194336, 0.37524414, 0.9794922, -1.0292969, 2.0234375, -1.3701172, 0.6621094, -1.2392578, 0.91259766, -0.93408203, 2.7441406, -0.72753906, -0.62841797, 0.93896484, 2.1367188, 1.0078125, 1.1503906, 1.5292969, -1.6210938, 3.0039062, -0.07305908, -1.9414062, -0.91503906, -2.2539062, -1.2392578, 0.98291016, 0.6245117, -1.2001953, -0.80908203, 0.31201172, 1.4267578, -2.0097656, 1.6669922, 1.984375, -0.74072266, -0.5859375, -1.296875, -0.38134766, -0.80029297, 0.6176758, 1.4677734, -0.03640747, -0.96728516, 0.24023438, 1.5751953, -1.0996094, -0.859375, -0.56103516, -0.47558594, -0.97509766, -0.5024414, 0.53759766, -0.7158203, 0.46435547, -0.85595703, -2.2871094, 0.62841797, 1.1162109, 1.0556641, -0.34887695, -1.7724609, -0.82714844, -1.1220703, 1.5302734, -0.7680664, 0.70996094, 2.5117188, -0.49853516, 0.6308594, -4.0390625, -3.3066406, -2.1835938, -0.3330078, 1.3144531, 0.23327637, 0.085754395, 0.6225586, 1.5058594, 2.7949219, -2.0957031, 0.609375, 0.7480469, -0.5756836, 0.12200928, 0.75683594, 0.5942383, 1.0146484, -0.3269043, -0.34423828, 1.6904297, -0.5239258, 2.1113281, 2.3789062, 1.5361328, -0.7993164, -0.91259766, -1.3583984, -1.1416016, -0.28881836, -0.19055176, 0.01576233, 1.4355469, 0.3322754, -0.59228516, -3.9492188, -1.3916016]}, "B096VKRVW5": {"id": "B096VKRVW5", "original": "Brand: GCBSAEQ\nName: GCBSAEQ \u200b1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8\" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part\nDescription: Product specifications
Type: 1LB Propane Tank Regulator
Connection 1: 1LB female connector (1\" x 20 female throwaway cylinder thread)
Connection 2: 3/8\" Male flare connector(5/8\"-18UNF Thread)
Material: Brass
Package: 1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.
Easy to install
1LB propane regulator to 3/8\" male flare adapter is convenient and quick to install, just need to rotate manually.
Safe to use
1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.
Applicable scene
1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
Material
1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
Note
1. Please check your connector before ordering.
2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don't use it.
4.Propane elbow fitting adapter is only suitable for Blackstone 17\" and 22\" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
\nFeatures: \u2605\u3010Package\u30111 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.\n\u2605\u3010Safe to use\u30111LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.\n\u2605\u3010Applicable scene\u30111LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.\n\u2605\u3010Notice\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder.\n\u2605\u3010Quality Assurance\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.\n", "embedding": [-0.033233643, 1.7294922, 1.4179688, 1.9541016, -1.7871094, -0.4567871, 2.140625, -1.6572266, 1.3798828, 1.7275391, 2.6933594, -0.092285156, 0.94384766, -2.9765625, 2.1640625, 2.453125, 1.546875, -0.60498047, 1.3388672, 0.8071289, 2.2890625, 0.18823242, 1.6933594, -0.6254883, 1.7421875, -0.48095703, 3.0996094, -3.1542969, -0.64697266, -0.7236328, 0.8364258, -1.3427734, -0.5571289, 1.4541016, -3.1835938, -0.6113281, -0.63183594, 0.41235352, -4.5507812, -1.5048828, -1.8994141, 1.4833984, 4.0273438, 0.22253418, -2.359375, 0.089538574, 1.9667969, 0.7636719, 0.2763672, -0.91015625, 0.45898438, 2.2832031, 1.1064453, -0.5180664, -2.2753906, 0.43652344, -0.24829102, -2.7636719, 1.2304688, 0.6176758, 3.4863281, 0.9526367, -2.8105469, 2.2402344, -1.0429688, 0.2770996, -0.9067383, -0.89453125, -0.30029297, 0.71435547, 0.2680664, 0.9140625, -0.046691895, -1.8398438, -0.5073242, 0.19580078, -4.1367188, -0.4482422, 2.140625, 0.3088379, -2.9453125, 3.0742188, 1.9121094, -1.515625, 0.3100586, -0.6298828, -1.5576172, 2.0078125, 1.9804688, 0.6279297, -2.2148438, 1.703125, -3.1933594, -3.4140625, 0.4580078, -0.09033203, 1.2021484, 1.2460938, 2.3125, 1.2109375, -1.4658203, -0.103637695, -1.1708984, 1.8515625, -2.3320312, 0.44726562, 1.2070312, 1.5078125, -2.4511719, 0.62939453, 0.17993164, -0.2434082, 2.953125, -1.0576172, -0.13171387, -1.2539062, -1.6777344, -1.4931641, 2.5527344, -0.076171875, 4.3476562, 1.15625, 0.8828125, -1.2568359, -0.15893555, 0.28515625, -1.1796875, 0.52246094, 3.4921875, -0.7216797, -0.15844727, -1.6347656, 2.2167969, -1.9101562, -1.4335938, -3.2382812, -1.1083984, -1.3076172, -2.1035156, -0.89453125, -4.921875, 0.72558594, 1.7900391, -0.6645508, -4.3867188, 0.17407227, -2.8691406, 0.9501953, 0.4741211, -2.7539062, 0.87402344, -2.1074219, -0.124816895, -0.83740234, 1.8359375, 1.2373047, -0.89697266, -0.4091797, 2.578125, 0.41430664, 0.3310547, -2.4707031, -2.2089844, 2.1660156, -0.7993164, -2.3359375, 0.41210938, 1.3730469, -1.4599609, 0.83203125, 1.1923828, -2.7675781, 0.42456055, 0.0803833, 0.59521484, -0.8149414, 0.19470215, 1.453125, 1.6601562, -0.7495117, -2.515625, -2.7265625, 0.68310547, -1.5546875, 1.1630859, -0.6953125, -2.2871094, -1.4023438, 1.0273438, -1.6582031, -2.6015625, 1.5722656, 0.6660156, 0.38720703, 0.79541016, -2.1542969, -1.9277344, -0.2861328, -0.9033203, 2.0527344, -1.5234375, -0.84716797, 1.0996094, 1.875, -2.4472656, -0.7841797, 1.1474609, -1.2333984, 1.4960938, 3.4160156, -0.8613281, 0.57666016, 2.1621094, 0.3347168, -1.0078125, -1.7861328, 2.5039062, 2.1425781, 1.7216797, 0.24841309, -0.29785156, -0.58984375, 1.7226562, 1.5048828, 3.2070312, 0.45654297, 0.11682129, 0.93408203, -2.3632812, -0.16589355, 2.1269531, 1.90625, -2.1660156, 0.5966797, 0.44921875, 3.1210938, 0.28808594, -0.96972656, 1.2138672, -0.30419922, 0.56152344, -0.32861328, 0.49243164, -0.5957031, -1.2822266, 0.3317871, -0.9951172, 1.4619141, 3.3984375, -1.8935547, 0.20153809, -0.11932373, -1.6962891, -0.453125, -2.6582031, -0.002937317, -0.07232666, 0.9140625, -1.2490234, -1.7626953, 2.078125, 0.5800781, 0.7680664, 1.2890625, 1.6660156, 1.0703125, 1.3964844, -0.94921875, -2.296875, 1.6708984, 0.7734375, 2.4316406, 2.5605469, 0.14135742, 0.9033203, 0.15405273, -1.2060547, 2.3183594, -0.03829956, 0.76904297, 0.6044922, -1.875, 2.5390625, -2.5488281, 0.62158203, 1.4511719, 1.6923828, -0.3190918, -1.9121094, 1.5761719, 4.7148438, -1.8984375, -1.4794922, 2.5878906, 0.39941406, 0.4946289, 0.6982422, -0.2619629, -0.021209717, -0.26879883, 0.45263672, 0.82958984, 0.16491699, 1.109375, 1.7451172, -0.68310547, 0.31323242, -1.6914062, 0.5864258, 2.0722656, -0.41674805, 0.28857422, -1.2744141, 1.1640625, -0.5332031, -1.140625, 2.2832031, -1.84375, -0.10949707, 2.7558594, 0.18579102, 1.2041016, 0.69873047, -1.3974609, -0.97753906, 0.78515625, -2.0859375, 1.8984375, 1.3251953, -0.06652832, 0.59765625, -0.86083984, 1.2929688, -1.0947266, -2.1445312, 0.3557129, -0.101257324, -3.2226562, -0.59033203, -1.8417969, -1.5732422, 0.0025806427, 0.4321289, 2.875, 0.075683594, 0.11767578, 0.18457031, 0.49560547, 1.0664062, -0.53027344, -0.2536621, 2.7285156, -0.7597656, -2.5527344, 0.8886719, -1.0849609, 1.6113281, 0.9140625, -0.9916992, 1.3320312, -0.18395996, 1.5986328, -0.66796875, 0.8076172, 0.23046875, -2.671875, 1.6210938, -2.9355469, -1.109375, -2.2226562, 1.3388672, -1.8701172, 0.55371094, -1.4023438, -0.8520508, 0.12548828, -1.2070312, 1.5556641, -0.18261719, 0.83740234, -1.5117188, 1.4306641, 0.46850586, -1.0703125, -3.8867188, -1.8789062, -0.0018796921, -0.8066406, -2.5957031, -4.2851562, -1.2744141, -0.47314453, 0.5102539, -1.7451172, -0.041290283, -0.18811035, 0.2915039, 0.6425781, 0.6699219, 0.24475098, 0.61035156, 1.1826172, -3.2050781, 0.06762695, 0.25341797, -1.0771484, -0.5961914, -0.3149414, 0.89941406, -0.40649414, -0.9873047, 0.2927246, 0.73535156, 0.99365234, -0.9667969, -2.7304688, 0.7207031, 1.8027344, -1.3203125, 1.9482422, -0.80322266, -0.39794922, -4.078125, -1.4140625, 1.8769531, 1.5800781, 4.2773438, 0.60791016, 0.75, -0.2052002, -0.51123047, -1.6669922, -1.6103516, -1.0810547, 5.2382812, -2.4023438, -1.6542969, -0.67578125, 1.8271484, -3.7949219, 0.60009766, 0.5341797, 0.20666504, 2.4765625, 1.1923828, 1.53125, -0.45043945, 0.009254456, -0.9326172, 1.0673828, 1.1689453, 1.7841797, -0.5078125, 0.03564453, -0.70654297, 0.7890625, 0.7963867, 1.0605469, 0.47460938, 2.7304688, 0.18310547, -3.2890625, 1.1015625, -2.0058594, 1.0703125, 0.79052734, 1.5302734, -1.3388672, -0.44458008, -1.2636719, 0.56396484, 1.9550781, -2.0058594, -0.94384766, 2.0507812, 1.7412109, -1.1230469, 0.008834839, -0.81640625, -0.9589844, -0.9321289, 0.11126709, 0.74121094, 1.1767578, 0.47998047, -0.47973633, 0.19152832, -2.21875, 2.6796875, -1.9746094, -0.4206543, -0.83496094, -0.9067383, -1.1220703, -1.9960938, -1.0507812, -1.7578125, -0.6894531, 3.9101562, 0.89990234, -2.4335938, 0.56884766, -0.42407227, 1.9677734, 0.8378906, -1.0888672, -1.3466797, -1.0322266, -0.9296875, -1.4082031, -0.110961914, 1.7597656, 0.7182617, -2.5585938, 0.0043640137, -0.8100586, 1.0791016, -0.044677734, -0.5263672, -1.9462891, 0.101745605, -0.5053711, 1.5625, -2.4765625, 2.6738281, -0.8051758, -0.34399414, 2.0351562, -3.2714844, 0.15515137, -2.4804688, -5.2226562, 1.1894531, -1.9726562, 1.2099609, 2.6699219, 0.8520508, -0.3540039, 1.6318359, 2.6289062, -3.3808594, 0.15942383, -2.6757812, 1.3251953, -2.9550781, -0.7885742, 1.8701172, 2.0800781, -2.109375, -2.5957031, 1.2041016, -2.7597656, -1.0605469, 0.08325195, -1.3291016, 0.9008789, -0.42114258, 0.37768555, -1.0996094, -1.1337891, 1.2177734, -0.55322266, -1.4072266, -3.1425781, 2.4355469, 0.48754883, 0.32177734, -0.79003906, 2.0996094, 4.2148438, -2.2050781, -0.4423828, 1.2207031, 2.8203125, -0.6020508, -1.4023438, -1.4423828, -1.0595703, -0.33081055, 0.84521484, -1.2363281, -0.4560547, -1.8730469, 1.6357422, 0.0071411133, 3.0117188, 1.6142578, -0.828125, -2.8261719, 0.9995117, 0.3479004, -0.6801758, -0.9794922, 0.60791016, -1.4873047, -1.6972656, 1.0068359, -2.3222656, 0.009536743, -0.9003906, -0.64453125, -2.2050781, 1.9228516, 0.066101074, 2.3203125, 0.6694336, -0.7949219, -1.1621094, 1.0175781, 0.6147461, -1.3808594, 1.1162109, -0.73339844, -2.2128906, 1.7587891, 1.5107422, 0.7314453, -1.2773438, 1.0820312, -1.0019531, -1.4892578, 0.7050781, 0.16027832, -1.4775391, 0.13256836, -0.6567383, -1.4794922, 3.8417969, -2.9179688, 0.5185547, 0.6845703, 0.14245605, -1.7167969, 2, 2.3476562, 1.1611328, 1.0283203, 1.2861328, 2.3261719, 1.8359375, 2.0234375, 0.54345703, 0.7553711, -2.546875, -0.11920166, 0.27685547, 0.72216797, -0.09893799, 0.4182129, 1.5996094, 2.0019531, 1.8427734, 1.6757812, 3.1191406, -1.8730469, 3.1445312, -0.19934082, -2.0273438, -1.453125, -0.14379883, -2.0761719, 3.6777344, -0.51904297, -2.4433594, 0.4194336, 3.3671875, -0.16357422, 1.5478516, 1.0839844, -0.83691406, -0.21606445, -3.9003906, -0.71875, -2.1953125, -0.6171875, 0.6875, 0.2055664, 1.0439453, 1.1455078, 2.0234375, 3.265625, 1.5458984, -1.4794922, 0.39282227, -1.2988281, -0.28125, -1.9150391, -1.6396484, -2.2441406, -0.6928711, 1.3095703, 1.8261719, 2.5683594, 0.06347656, 0.36523438, -1.9892578, -2.1484375, -0.43725586, 1.1025391, 0.08532715, -0.45898438, 2.8789062, -0.21594238, 1.0107422, -1.9179688, -0.31860352, 0.06530762, -0.2680664, 0.5708008, 0.7866211, -2.3691406, 0.29785156, -3.0585938, -6.1601562, -0.32714844, 1.1425781, 0.4963379, 0.5605469, -1.140625, -1.0380859, -0.06896973, -0.71240234, -1.1884766, -3.6015625, 1.7246094, -0.71777344, -0.2565918, -0.35961914, 0.16638184, 0.45239258, 1.2255859, -0.3630371, 0.5029297, -0.21801758, -3.3378906, -2.0019531, 1.5322266, -2.4765625, -0.89160156, 0.37890625, -0.7192383, -0.38793945, 2.0410156, 1.6914062, -2.2421875, 1.8339844, -2.4316406, 1.0458984, -0.17993164, -0.8959961, 1.2724609, 1.3320312, -0.19873047, 1.296875, 2.0117188, 2.3261719, -1.3564453, 0.20263672, 0.5996094, 0.8251953, 0.20227051, -0.5185547, 0.91748047, -0.17297363, 1.2304688, 2.3125, -1.0878906, -1.2441406, -2.7382812, -0.81591797, -0.14794922, -1.9560547, 2.3164062, -0.4909668, 1.3125, 1.3105469, -0.22216797, 0.31689453, -0.74121094, -0.24230957, 0.14550781, 1.2900391, -1.6152344, 2.546875, -0.12213135, -1.3476562, -3.2265625, -2.1347656, 2.2578125, 1.7050781, -1.078125, 0.13745117, 0.5341797, -1.1738281, 1.7431641, -0.8691406, 1.4316406, 2.5214844, 0.26416016, -1.1298828, 0.6743164, 3.0585938, -2.65625, 0.93603516, 2.2597656, -1.6513672, -0.5888672, 0.93603516, 0.2680664, -2.7226562, 1.0908203, -1.7822266, -0.2800293, -1.7226562, -0.9121094, -0.054840088, -2.7285156, 0.7402344, -0.39892578, -2.6660156, -2.8945312, 2.7304688, -0.2734375, 0.3083496, 1.4130859, 3.1699219, -1.8457031, -0.82177734, 1.4023438, 0.101623535, -1.6181641, -0.9892578, -1.2861328, 0.14794922, 1.0986328, -2.5683594, 0.8774414, 1.0302734, 0.71435547, 1.0351562, 0.64160156, 1.2519531, 2.1210938, 0.7524414, 1.9814453, 2.4570312, 0.6357422, 2.9121094, 0.4567871, 2.6347656, 1.5800781, -0.6088867, 1.078125, 1.1826172, 0.19067383, 0.6040039, -2.2695312, 0.40039062, -1.2158203, -0.25219727, 0.984375, 0.453125, 2.4589844, -5.0507812, 0.9086914, -1.2373047, 0.72753906, -1.4375, 0.4855957, -0.0496521, -0.21850586, -0.2331543, 0.9267578, 1.3183594, 0.86572266, -0.7963867, -0.19714355, 0.78515625, 2.6660156, -0.47314453, -0.10992432, -2.4902344, -1.6435547, 0.3071289, 2.5800781, 0.68115234, 0.77783203, -0.17211914, 2.7480469, -1.6708984, -0.9873047, 1.6484375, -0.9667969, -0.40112305, -1.0390625, 2.8203125, 1.8115234, -1.6337891, 2.4160156, -0.82421875, -2.4902344, -3.9980469, 2.7558594, -0.1026001, 0.2614746, 0.36547852, -3.484375, 1.4980469, -0.9863281, 1.4140625, -3.6621094, 0.8857422, -0.19702148, -2.2480469, 0.64160156, 1.0927734, -1.1191406, 2.1992188, 0.8461914, -3.4335938, -0.6152344, 2.5527344, 1.0009766, -0.21142578, 0.4020996, 1.1884766, 0.13330078, -0.8442383, 2.6875, 0.5019531, -1.2441406, -0.16088867, 3.4804688, 1.3427734, 1.4375, -0.044067383, -0.7705078, 1.2138672, 1.2080078, -0.69873047, 0.6254883, -2.859375, 0.23986816, -0.055664062, -0.82177734, 0.07800293, -0.27270508, 1.2275391, 1.4365234, -1.4873047, -0.7944336, 0.41796875, -2.4257812, 1.7919922, 1.7578125, -1.5898438, -0.9980469, -0.037597656, 0.41064453, -2.6738281, 0.7207031, 0.2322998, 0.3083496, 1.0576172, -1.9462891, 0.63427734, -0.023590088, 0.11987305, -1.6201172, -1.2138672, -1.1894531, -1.3867188, -0.43432617, -1.8623047, 0.5102539, 1.5263672, 1.1962891, 0.15112305, -0.98779297, -0.8227539, -0.18603516, -2.7148438, -0.22717285, 0.76953125, 2.2539062, 1.8417969, 1.7275391, -1.0976562, -2.6152344, -0.59716797, -1.7890625, 2.9101562, 0.6279297, -1.84375, 0.8261719, 1.0429688, 1.3544922, -2.015625, -1.6367188, 0.27148438, 0.5541992, 1.4121094, -0.9848633, 1.2392578, 0.64501953, 1.0380859, 1.4335938, 3.8105469, 1.7636719, -0.6484375, 0.6586914, 1.2119141, 1.5498047, -0.48901367, 1.7558594, 0.85253906, 0.484375, 0.24401855, 2.4746094, 2.6386719, 0.15917969, -0.9379883, -1.8134766, 0.6269531]}, "B004KH4LAE": {"id": "B004KH4LAE", "original": "Brand: Hiland\nName: Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze\nDescription: \nFeatures: Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included\nPatio heater dimensions: 21.5\" W x 21\" D x 91\" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top \u2013 36\u201d/91.4cm. Side \u2013 24\u201d/60.9 cm\nIncludes a reliable igniter and a Safety auto shut off tilt valve\nUses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU\nThe latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction\n", "embedding": [-0.8925781, 1.0332031, 1.3974609, -0.78515625, -1.0263672, 1.3417969, 0.99609375, -1.5214844, 0.36572266, 2.90625, 1.0087891, -0.6826172, -0.31591797, -2.7226562, 1.1191406, -1.515625, 2.2617188, 0.42407227, 1.9580078, 0.83984375, 2.6621094, 0.17834473, 0.9633789, -1.3408203, 1.3203125, 0.8535156, 2.9785156, -3.1152344, 0.27905273, -0.21557617, -0.035705566, 1.4267578, 0.07299805, 3.3984375, -1.6679688, -2.7539062, -0.6464844, 1.2148438, -4.5351562, -0.49682617, -3.2265625, -0.50878906, 0.65234375, 1.90625, -0.08123779, 0.6435547, 1.4033203, 1.2998047, 0.26049805, 1.5537109, -0.37426758, -0.1875, -0.92822266, 0.7167969, -0.5810547, 1.1982422, -0.9555664, -2.1601562, 1.5166016, -0.21191406, -1.1806641, -1.5068359, -2.2441406, 1.4023438, -0.23352051, 1.40625, -1.2724609, -1.0556641, -1.7626953, -0.35717773, 1.4941406, -0.56933594, -0.26953125, 0.103027344, 0.38354492, -1.7626953, -1.8496094, 0.5966797, 4.109375, -0.11224365, 0.13623047, 0.26586914, 0.71777344, 1.2958984, -2.21875, -0.0067214966, -0.21777344, -0.21362305, 0.57373047, 1.9384766, 0.3930664, 1.4658203, -1.1523438, -2.4160156, -0.31396484, -2.5039062, 0.47216797, 0.39990234, -2.1484375, 0.7495117, 0.14428711, -0.6904297, -0.5913086, -0.8881836, -0.52734375, 0.030441284, 2.6542969, 0.097839355, 0.23498535, 1.3740234, -1.5195312, 0.52734375, 2.3769531, -0.34423828, -1.8564453, -0.27124023, 1.1611328, 2.0898438, 3.7460938, 3.171875, 2.5449219, -0.15759277, 1.0517578, -1.9912109, -0.119628906, 0.6074219, 0.51708984, -1.6103516, 1.65625, -1.7324219, 2.0253906, 0.123535156, 0.5488281, -0.07733154, -0.4350586, -0.9614258, -1.1103516, 2.1425781, -3.8261719, -0.57910156, -0.7006836, 1.0908203, 0.8388672, 0.48583984, -4.7226562, -0.73046875, -1.3798828, 2.4375, -1.9921875, -0.5722656, 1.2412109, -0.5307617, 1.0224609, -2.1738281, 0.055389404, -0.041168213, 1.8974609, -1.6298828, 3.2539062, 1.5009766, 1.6914062, 1.6103516, -2.2382812, -0.26733398, -0.45361328, -0.09869385, 1.5380859, 1.9101562, 0.9604492, 2.59375, -0.19250488, -1.5820312, -1.2041016, 0.34594727, 0.86816406, -1.4609375, -1.3535156, -0.5449219, -0.74072266, -0.018859863, -3.2363281, -1.0332031, -0.038879395, -0.36645508, 0.49926758, -1.2441406, -2.7851562, -3.4882812, 0.46533203, -0.3564453, 0.50439453, 0.41381836, 0.8232422, -0.64990234, -2.59375, -1.7246094, -3.1464844, -2.7207031, 2.4492188, -1.4365234, -0.53564453, -1.2880859, -0.640625, -1.0166016, -3.0800781, -1.7958984, 0.6542969, -1.9677734, 1.1914062, 1.9990234, 0.6064453, 0.37280273, 0.9975586, -1.1865234, 0.6401367, -1.7929688, 2.515625, 0.9741211, 0.6176758, 1.9199219, 0.6166992, 1.3359375, -2.7324219, 1.1542969, -0.7192383, 0.79052734, 3.171875, -0.8022461, -2.7207031, -0.50341797, 2.0195312, 1.7070312, -0.037841797, 0.9038086, -0.7207031, 3.9082031, 0.60009766, 0.4555664, 1.5996094, -0.46704102, 0.23950195, -0.26464844, -0.10900879, -1.0869141, -0.40698242, 2.1015625, 0.36938477, 0.74365234, 1.3535156, -0.18017578, -0.7939453, 0.068237305, 1.5996094, -0.86376953, -0.7338867, 0.21362305, -1.015625, 1.7900391, 1.1464844, -3.2441406, 2.1796875, -0.7524414, 0.15185547, 0.9003906, -0.47314453, -0.6411133, 2.0117188, 1.1962891, -2.4902344, 1.8740234, -0.7192383, 0.92285156, 1.3710938, -0.78759766, 2.0175781, 1.7666016, -1.3935547, 3.109375, -0.5830078, 1.1513672, 2.5058594, 1.2001953, 1.4804688, -2.3808594, -1.1015625, 0.1973877, 1.0224609, 0.58740234, -1.4980469, 0.22583008, 3.1289062, -0.8857422, -1.0996094, 1.0400391, 0.16113281, 1.4433594, 2.1523438, -1.7402344, -1.1962891, -2.6035156, 1.9355469, 1.0957031, -0.20544434, 0.37670898, -2.3164062, -0.26464844, 1.3388672, -1.765625, 1.3369141, 0.28955078, 0.29296875, -1.1162109, -3.9257812, -0.61816406, -3.2441406, -0.1673584, 4.1132812, -2.9804688, 1.1152344, -1.0556641, -0.75683594, -1.1103516, -0.31079102, -1.8291016, 0.4182129, 0.9194336, -0.47924805, 1.9140625, -0.22375488, -0.30444336, -1.2490234, -2.5546875, 0.81103516, -2.7441406, -2.8691406, -0.2927246, -2.1289062, -0.6401367, 2.0585938, -2.9257812, 0.44213867, 1.953125, 0.0791626, 2.484375, -0.9951172, -1.4160156, 0.7998047, 0.6489258, 0.4091797, 0.53759766, 0.19494629, 0.8432617, -2.5253906, -3.921875, -1.2578125, 2.0195312, -0.5307617, 0.5727539, -0.7988281, -1.0703125, -0.042877197, 0.055908203, 0.265625, -1.0615234, 1.0371094, -0.12420654, 0.09222412, -6.1328125, 1.7119141, -2.1835938, 1.7851562, -2.1074219, 0.31420898, -1.0078125, -1.3681641, 3.3613281, 0.5336914, 4.0234375, 1.3925781, 1.8251953, -0.64208984, 0.52197266, 1.5107422, -1.1259766, -2.5058594, -0.5932617, -0.89941406, -1.6113281, -1.7929688, -3.5097656, 0.7011719, -2.1191406, -0.8276367, 1.0517578, -1.5126953, -0.32641602, 0.25854492, -2.0683594, -0.7216797, -1.6318359, -1.2802734, 0.41577148, 2.5625, -1.7001953, 0.45776367, -2.3378906, -1.8017578, -0.36743164, 1.6621094, 1.5195312, 0.8598633, 2.2597656, -1.0224609, 1.9736328, -0.32885742, -4.9414062, 3.0449219, 4.8046875, -1.0195312, 0.65771484, -1.9941406, -2.2558594, -1.6162109, -0.80615234, 2.9882812, 1.7109375, 1.2978516, -1.1865234, 0.95947266, 0.5258789, 1.1875, -0.5395508, 0.18713379, -1.7597656, 2.3964844, -2.5195312, -1.8007812, 1.7363281, 2.4042969, -3.3417969, -2.3808594, 1.421875, 0.095825195, 2.4414062, 0.46362305, -0.7207031, 0.5917969, 2.4003906, 2.140625, 1.3789062, 0.47558594, -0.08905029, -1.8691406, 0.55322266, 1.0898438, 2.3242188, 0.22265625, 0.94189453, 1.3369141, 0.5253906, 0.48217773, -3.1328125, 1.2763672, -0.8979492, 2.1054688, -0.32788086, 3.6796875, -1.5214844, 1.0292969, 2.3554688, 1.1220703, -0.92822266, -2.1503906, -1.6591797, 1.8203125, 2.3125, -1.8662109, -0.66064453, -0.23486328, -0.34887695, -0.7573242, -0.29785156, -1.1767578, -0.38916016, 0.29296875, -0.79052734, 0.2154541, -0.43115234, 2.3828125, -0.7475586, -1.6376953, 0.8076172, 0.32543945, -0.13635254, -1.0205078, -1.7841797, -1.8574219, 0.43530273, 3.9726562, -1.0908203, -0.75878906, -1.2441406, -1.9101562, 1.7275391, -0.78222656, -0.17138672, -0.86328125, 0.08538818, -0.18029785, 1.0634766, -0.8510742, 0.8588867, 0.16711426, -1.7197266, -0.013420105, -1.3779297, -0.48510742, 2.7558594, -1.9941406, -0.9423828, 2.6074219, -0.47851562, 2.4160156, -0.6411133, 4.4453125, -1.6533203, -1.9912109, 1.1318359, 0.13977051, 0.20776367, -3, -5.8164062, 0.54052734, -3.5175781, -0.18139648, 2.484375, -0.4963379, 1.0263672, -1.1982422, 1.1757812, -3.859375, -2.2675781, -2.484375, -1.4853516, -3.1777344, 0.40795898, -0.07659912, -0.24072266, -2.1816406, -3.0117188, 1.6425781, -0.9042969, 0.44628906, 0.8955078, -0.8925781, 0.41577148, -1.0644531, 0.46020508, -0.42773438, 1.2529297, -1.8046875, -0.5332031, -0.34350586, -0.49975586, 5.0273438, -0.33007812, 0.2836914, 1.4628906, 4.8320312, 1.3212891, -0.7866211, 0.4099121, 1.2871094, 4.28125, -0.028884888, -2.71875, -0.20495605, -0.3017578, -0.25976562, -0.8222656, -0.11785889, 0.52197266, -1.6621094, 1.84375, 0.6435547, 0.025436401, 1.2089844, 0.92822266, -2.6660156, 1.46875, 1.1914062, -2.8808594, -2.5253906, -0.9560547, -2.1757812, -1.7509766, 1.5556641, -2.1484375, 1.0927734, -3.0195312, 0.9848633, -1.5351562, 1.2558594, 2.875, 3.578125, 1.8720703, -2.2636719, -0.97753906, -1.296875, -1.6806641, 0.118896484, 0.8046875, -0.18334961, -0.8984375, 2.0605469, 1.1074219, -1.9267578, 0.5864258, 2.2773438, -0.9350586, 0.42163086, -0.23498535, -1.6777344, -2.3867188, -2.2070312, 1.4453125, 0.14660645, 1.5029297, -2.3203125, -0.6386719, 0.3232422, -1.3808594, -2.2304688, 0.27612305, -1.3789062, 0.6855469, 1.7333984, 1.0517578, 1.1015625, -1.6748047, 0.33081055, -0.7416992, 2.8398438, -2.3925781, 0.12286377, -0.5131836, 0.34301758, -0.23828125, 0.9111328, 1.6835938, 0.19238281, 0.84814453, 2.2011719, 2.609375, -0.1907959, 1.5166016, 1.0214844, -1.1376953, 1.1582031, 1.3867188, -0.24267578, 2.4609375, -0.7714844, -2.3574219, -0.56640625, 3.7890625, 0.5854492, 1.9003906, 1.1669922, -2.1796875, -0.55908203, -2.0957031, -1.7431641, -1.4101562, 0.6894531, 0.38061523, -1.0664062, 0.4975586, -0.6635742, 3.8867188, 1.6757812, -1.4453125, -0.07324219, 1.3066406, -0.62158203, -0.35742188, 1.8339844, -0.4013672, -1.8066406, -0.69628906, -0.7919922, 0.3701172, 0.82910156, 3.0039062, 1.0410156, -1.3730469, 0.29492188, -1.9130859, 2.8085938, -3.2539062, 0.43701172, 1.4892578, -0.53515625, -0.8979492, -2.5820312, -1.7587891, -1.8212891, 0.01727295, -0.21691895, 0.2409668, 0.42211914, -1.3222656, -2.1699219, -3.015625, -1.078125, -0.86816406, -1.7910156, 0.8540039, -0.035949707, -3.1757812, -1.2490234, 0.22192383, 0.15136719, 1.1357422, 1.1513672, -1.8603516, 0.18920898, -0.3605957, -0.0030593872, 0.13574219, 1.3642578, -0.8334961, -0.9741211, -0.2692871, -2.2421875, -3.0136719, 1.6953125, 0.018661499, 2.4609375, -0.9472656, -0.93847656, 1.6103516, 2.8046875, 0.44213867, -1.5556641, 2.0722656, 0.6694336, 0.91845703, 3.0527344, -1.1621094, 2.2675781, -0.26733398, -2.2148438, -0.79003906, 2.9980469, 0.95214844, -0.1104126, 1.421875, -0.3876953, 1.2451172, -0.3581543, 0.4321289, -0.15124512, 0.13928223, 4, 1.0351562, -0.8149414, -1.28125, -2.3808594, -1.9189453, -1.8701172, -2.8398438, -1.6669922, 0.019134521, 2.4863281, 1.2841797, -0.14489746, -0.26489258, 1.4970703, -0.18530273, -2.2285156, 0.7006836, 0.06262207, 2.2441406, 0.42138672, -1.9228516, -4.4921875, -1.3535156, 1.2109375, 1.3496094, 0.3413086, -1.2714844, -1.234375, -1.9335938, 0.080322266, -0.28320312, 1.6474609, 1.9003906, 0.6723633, -3.1015625, 2.8242188, 2.6601562, 0.12237549, 1.0458984, 0.12445068, 3.0449219, -1.0771484, 2.6425781, 1.3798828, -0.4116211, 0.07165527, 0.028640747, 2.2753906, -0.7011719, -1.0693359, 2.1171875, -2.7753906, 0.4921875, 0.5698242, -1.5830078, -2.7324219, 0.39916992, 0.7583008, 0.061309814, 1.8007812, 1.2128906, 2.0351562, 0.17810059, 2.6816406, 0.75927734, -0.6455078, -0.8823242, -0.7416992, 0.36767578, 1.3164062, -0.5126953, 1.6787109, 0.20251465, 1.1914062, -0.6166992, 1.0644531, -0.53125, 1.515625, 3.1113281, 2.0136719, 1.8085938, 0.44555664, 0.02861023, 0.6176758, 1.0332031, 0.30688477, -2.5664062, -0.12683105, 1.6289062, 2.8125, 0.5317383, 0.35058594, 0.046691895, 0.17236328, -1.9931641, -2.515625, 0.047973633, 1.3955078, -0.16601562, 0.33251953, -0.35546875, 0.33422852, -1.6152344, 1.4101562, -0.3046875, 1.8320312, -0.3305664, -1.3808594, 3.4160156, 1.8320312, -0.2619629, -0.030288696, 0.56689453, 1.4404297, -2.1875, 0.9667969, 1.1152344, -2.1191406, -0.97314453, 1.2695312, 1.7275391, 0.9272461, -0.6220703, -1.3945312, 1.8330078, 2.1972656, -0.84033203, 1.2392578, -0.55029297, 0.07287598, 1.4941406, 2.4316406, -0.89208984, -0.7167969, -0.61279297, -0.2388916, -2.0742188, 1.2529297, 0.6074219, -0.6074219, 0.6303711, -0.24829102, 1.7128906, -2.3203125, 0.22253418, -2.0703125, 0.13647461, 0.56591797, 0.6484375, -0.6669922, 0.3737793, -0.13146973, 3.1132812, 0.1295166, 0.765625, -0.42895508, -1.9023438, -0.033294678, -0.56396484, 1.5322266, -0.92285156, 1.9755859, -1.1191406, 4.6992188, 0.2097168, -0.45996094, 1.9970703, 1.0986328, 1.2353516, -0.32226562, 1.7978516, -2.2148438, 2.2695312, 0.66064453, -0.88720703, 0.5317383, -0.33813477, -0.82910156, -1.3984375, 1.78125, -1.1474609, -0.17053223, 1.7304688, -0.20861816, -1.6533203, 1.5878906, 1.5966797, 1.1445312, -0.029525757, -0.5878906, -1.6513672, 0.13830566, 0.2939453, 1.5517578, -0.9301758, -1.5859375, 0.09869385, 0.95947266, 2.3398438, -0.063964844, 0.059020996, -2.2050781, -0.22375488, -0.87402344, 1.1982422, 1.3720703, -0.76904297, 0.42626953, -1.125, -1.1845703, 1.2636719, 1.3125, -0.6074219, -0.3305664, -2.0859375, -1.7832031, -1.5107422, -1.5263672, 1.5839844, 4.15625, 0.8598633, 2.0917969, -0.9379883, -3.4609375, -0.6845703, -1.0205078, 0.46704102, -1.1914062, -1.5996094, 0.52734375, 1.8125, 1.5009766, 0.21679688, -1.0478516, 0.08959961, -1.3876953, 1.5009766, 0.14978027, 3.0332031, 0.010574341, -1.7890625, 1.1308594, 1.2255859, 0.027008057, 0.68310547, 2.3964844, 1.5615234, 0.066101074, -4.1484375, -1.8554688, -0.35009766, -0.10736084, 0.36547852, 2.0117188, 1.4755859, 0.13330078, -1.3710938, -3.9824219, -1.6611328]}, "B07ZGHCR2M": {"id": "B07ZGHCR2M", "original": "Brand: LONGADS\nName: 12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator \u2026\nDescription:

You can control the temperature of your appliance exactly what you want

\u2705The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

\u2705If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

\u2705Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

Specification

- Length: 12feet / 144 Inch/366 cm

style=\"margin-left: 5.25pt;\"

- Apply to: propane burners, stove,\u00a0gas grill,\u00a0turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

- Inlet Pressure: 25-250PSIG

- Outlet Pressure: 0-30PSIG

- Max.flow capacity:136000BTU

- End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

Warm Tips\u00a0\u00a0\u00a0

1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE.\u00a0ALL propane appliances are OUTDOOR Use.

After sale guarantee

You are not satisfied, don't be too quick to leave a negative comment,\u00a0you can request a replacement or a full refund.\u00a0Contact us! We will show you a satisfactory solution.

\nFeatures: \u3010Measure Your Pressure\u3011Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\n\u3010End Fitting to Appliance\u301112Foot 0-30 PSI\u00a0High\u00a0pressure\u00a0stainless\u00a0steel\u00a0hose, 3/8\u201d female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8\u2019\u2019 male flare connector.\n\u3010New\u00a0upgrade\u3011Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don't need to move your atmospheric bottle. Gas\u00a0Pressure\u00a0Gauge\u00a0allow\u00a0you\u00a0control\u00a0of\u00a0the\u00a0heat\u00a0output\u00a0with\u00a0a\u00a0precise\u00a0level,\u00a0to\u00a0keep\u00a0your\u00a0outdoor\u00a0cooker\u00a0in\u00a0optimal\u00a0operating\u00a0condition.\n\u3010Durable Material Design\u3011The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank.\n\u3010SAFETY\u3011Pass CSA certificate for your safety, excellent sealing quality is promised for your safety.\u00a0propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "embedding": [-2.3125, 2.2128906, 1.8242188, 1.7919922, -1.3583984, -0.08935547, 1.0429688, -1.4443359, 1.5214844, 0.23425293, 1.5751953, 0.18762207, 0.6870117, -0.30688477, 1.4482422, 1.8271484, 1.8867188, 0.047851562, 1.4267578, 1.9482422, -0.2553711, 0.35058594, 3.3554688, -0.98828125, 2.734375, -0.52783203, 3.0292969, -3.3066406, -1.1699219, -1.2988281, 2.3398438, 0.3894043, 0.14074707, 1.2060547, -2.4335938, -2.3964844, -0.6743164, 0.47875977, -4.71875, -0.6533203, -0.61865234, 0.81689453, 1.5732422, 0.22070312, -2.5273438, -0.27490234, 0.7734375, 1.5361328, -1.4628906, -0.4326172, 1.3212891, -0.4091797, 0.32202148, 0.65234375, 0.49487305, -0.57714844, 0.2401123, -1.2929688, 0.021087646, 1.3818359, 1.2587891, 1.3085938, -3.2519531, -0.51953125, -1.3652344, 0.5097656, 0.57714844, -0.45898438, 1.4716797, 1.1367188, 0.6347656, -0.6801758, 2.1386719, -0.66552734, 0.061950684, 0.65478516, -1.5771484, -0.4650879, 3.9179688, 1.78125, -1.71875, 2.1992188, 0.5620117, -1.9208984, 1.25, 0.43139648, -1.8339844, 0.4572754, 2.4570312, 0.7207031, -0.9921875, 1.7167969, -3.9667969, -4.0039062, 1.2626953, 1.3496094, 2.2617188, 0.5605469, 1.9228516, 0.93115234, -2.7070312, -0.7446289, -0.2849121, 1.5126953, -0.7758789, -0.8120117, 0.59472656, 3.3886719, -3.984375, -1.1826172, 1.5234375, -0.71972656, 1.8623047, -1.1591797, 1.9550781, -2.4628906, -0.3618164, 0.06939697, 3.1953125, 1.5986328, 3.7089844, 1.3769531, -0.5488281, 1.0517578, -1.4863281, -0.18188477, -0.7885742, 0.5229492, 4.390625, -1.7119141, 0.37231445, -2.8144531, 3.1054688, -0.5419922, 0.17675781, -2.3828125, -1.3017578, -2.4726562, -2.7128906, -0.7084961, -3.8945312, -0.5102539, -0.10723877, 0.8017578, -2.140625, 0.09527588, -3.2207031, 0.4177246, 2.4101562, -2.2753906, 1.9521484, -1.6650391, 0.24157715, -0.9550781, 0.9560547, 1.4375, -0.62402344, -1.4404297, 3.3144531, 1.6494141, 2.4042969, -1.3212891, -2.2910156, 1.5478516, 0.5883789, -1.1796875, -0.013557434, 0.27319336, -0.12878418, 0.90722656, -0.48706055, -0.58740234, -0.8276367, 1.0507812, -0.27539062, -1.6689453, 0.6459961, 3.3671875, 2.2109375, -1.0087891, -4.6601562, -2.8125, -0.015014648, -1.9511719, 1.8261719, 0.8676758, -0.51660156, -0.0104904175, 0.36132812, -1.1445312, -1.9306641, 0.5698242, 0.48754883, 0.5649414, -0.9633789, -2.2871094, -4.0546875, -1.7978516, -1.0048828, 1.5908203, -1.0654297, -1.3652344, 0.7529297, -0.67285156, -2.1972656, -1.7041016, 0.75927734, -2.3261719, -0.09649658, 2.6582031, 0.13317871, -2.0019531, 1.9169922, -1.4550781, 0.21887207, -3.015625, 2.5175781, 2.7949219, 1.2646484, 1.2802734, -0.87060547, 0.8823242, 0.85498047, 0.7348633, 2.875, 0.07733154, -0.71533203, 1.6064453, -2.1503906, -0.4050293, 2.6484375, 0.71777344, -1.2529297, -1.8242188, -0.3564453, 2.3398438, -0.23205566, 0.0027675629, -0.25854492, 1.4365234, -0.16235352, -0.40966797, -0.6088867, -1.1601562, -1.7177734, -1.5214844, -1.5810547, 1.6474609, 1.9384766, -0.21923828, 0.53466797, 0.49267578, -0.82128906, -0.24035645, -2.1035156, -0.671875, 1.8867188, 1.5839844, -0.32592773, -1.5839844, 3.0664062, 0.4819336, -0.28198242, 2.6054688, -0.46289062, 0.8457031, 2.4199219, -0.2849121, -1.9169922, 0.42944336, 0.04058838, 1.9941406, 1.8789062, -0.7246094, 1.3408203, 0.24450684, -2.6738281, 2.7519531, -0.5126953, 0.83447266, 0.64941406, -0.79296875, 1.7197266, -3.2929688, 2.2753906, 2.3671875, 0.103027344, 0.58203125, -2.7421875, 0.25219727, 4.5039062, -1.6425781, -2.5253906, 2.671875, 1.5761719, -1.2490234, 2.2207031, 0.5004883, 0.92041016, -0.9370117, 1.0742188, 0.8041992, -1.9873047, 0.1895752, 2.1269531, -0.9121094, -0.48461914, 0.09539795, -1.8115234, 1.1142578, -2.2089844, -0.5961914, -0.92333984, 3.1015625, -1.2587891, -1.0712891, 1.4228516, -2.9316406, 0.0062294006, 0.73535156, 0.95458984, 1.3359375, 0.3449707, -1.1826172, -0.22644043, 1.6191406, -1.6464844, 1.5400391, 0.3527832, 0.8613281, -0.8276367, -1.53125, -0.9848633, -2.4453125, -3.5625, 1.7695312, -3.78125, -3.1953125, 0.82666016, -2.2128906, -2.640625, 1.4570312, -0.38989258, 2.7851562, 1.7509766, 0.045440674, -0.33154297, -1.0634766, 0.43188477, 0.5917969, 0.69091797, 1.8574219, -0.11138916, -2.21875, -0.7451172, -0.13024902, 0.15100098, 0.42138672, -2.9179688, 1.7207031, 0.060394287, 0.5229492, 0.16723633, 0.19592285, 0.031677246, -2.2128906, 1.71875, -3.0234375, -1.6914062, 0.3034668, 0.48608398, -2.2753906, 1.0517578, -2.0449219, -0.2619629, -0.38891602, -1.4072266, 1.1240234, -1.2822266, 1.8857422, -3.0429688, 1.9541016, 1.2226562, -1.4091797, -1.6640625, -0.4663086, 0.28955078, 0.5605469, -1.1699219, -3.078125, 0.24279785, 1.0849609, 0.58447266, -0.6953125, -1.7158203, -2.1074219, 0.8432617, 0.75390625, -0.44067383, 0.14282227, 2.0761719, 0.031234741, -2.578125, -1.5976562, 0.65527344, -2.0078125, -1.2939453, -0.36547852, 1.8134766, -1.3740234, 1.8349609, 1.4111328, 0.9765625, 1.0166016, -3.6386719, -2.7285156, 0.54589844, 1.5390625, -2.0976562, 2.6933594, 0.18762207, -0.62890625, -1.4599609, -2.2382812, 1.6894531, 1.2050781, 3.359375, -0.66796875, -0.04864502, 0.16479492, 0.1928711, -1.2929688, -1.5927734, 0.10510254, 4.8515625, -2.1621094, -2.0664062, -0.3869629, 0.88916016, -2.53125, -1.0224609, 2.3066406, -0.55371094, 2.0878906, 1.0332031, 2.5917969, -0.37329102, -0.36865234, 2.46875, 0.66503906, -0.5395508, 0.48217773, -1.0712891, -1.0478516, -2.96875, 1.2763672, 2.25, 0.32861328, 0.8964844, -0.14746094, 0.47387695, -0.7558594, 0.63720703, 0.038360596, 0.72802734, 0.6538086, 1.5361328, 0.7841797, -1.0107422, -1.1679688, 0.8691406, 1.1035156, -2.5351562, -0.671875, 1.7646484, 2.1679688, -1.2802734, 0.04147339, -0.7871094, 0.2590332, -0.4411621, -0.7036133, 1.1523438, 1.1826172, 2.2773438, -0.01625061, 1.2460938, -1.8574219, 1.9238281, -0.40039062, 0.8989258, 0.15258789, 0.036224365, -2.6992188, -1.5917969, 0.44018555, -2.375, -0.8828125, 1.5419922, 1.3076172, -0.3227539, 1.1523438, -1.0644531, 1.4277344, 1.2451172, -2.75, 0.34936523, 0.9033203, -0.05987549, -0.2927246, -0.043701172, 2.6503906, -0.24987793, -2.2460938, -1.1591797, -2.7167969, 1.6005859, 0.25390625, 0.953125, -2.9179688, 0.8618164, -0.2211914, 1.6621094, -0.024841309, 2.2832031, 0.29418945, 0.82714844, 1.5205078, -2.6152344, -1.0742188, -2.1015625, -6.515625, 1.1201172, -2.828125, -0.17614746, 1.7050781, 0.04949951, 1.2744141, 1.6005859, 2.6015625, -3.6640625, -0.44262695, -0.51953125, 0.27294922, -2.4042969, 0.5839844, 1.8925781, 1.3056641, -0.77978516, -2.4453125, -1.3242188, -3.9296875, -0.87060547, 0.6245117, -1.6357422, 0.7368164, -2.3242188, 0.9238281, -1.7890625, -1.8574219, 0.89697266, -0.6816406, -1.5185547, -3.2714844, 2.8417969, -0.4699707, -0.16125488, 0.24804688, 2.9589844, 2.1484375, -0.36206055, -0.48901367, 0.48828125, 3.9980469, -0.07324219, -1.0458984, -0.8989258, -0.65722656, 0.12670898, -0.31176758, -0.46606445, -0.87597656, -1.0195312, 0.25439453, 0.8222656, 0.23742676, 0.99853516, 0.03878784, -2.1171875, 1.7822266, 1.4121094, -0.8466797, 0.48950195, -0.41723633, -2.0722656, -2.2460938, 1.4873047, -2.5058594, -0.57177734, -1.4052734, -1.3779297, -3.9238281, 3.921875, -0.2680664, -0.42822266, 0.23022461, -0.95996094, -0.8769531, -0.18347168, 0.31152344, -1.859375, 0.27539062, -1.7539062, 0.6411133, 1.6103516, 3.3671875, -0.41186523, -0.7583008, 0.8183594, -1.8476562, -0.39892578, -0.5776367, 0.5058594, 0.39404297, 0.22241211, 1.7070312, -1.1259766, 3.9042969, -0.54833984, 1.9736328, 2.125, -1.0195312, -0.92822266, 1.9199219, 2.0507812, 2.6816406, 1.0664062, 0.56347656, 1.4599609, 3.1855469, 0.4375, 0.27148438, 1.1982422, -1.3955078, 0.11206055, -0.51123047, 1.6015625, -1.8818359, 1.3505859, 0.11627197, 1.5546875, 2.6523438, 2.8789062, 2.1738281, -2.703125, 2.203125, 0.86376953, -0.57177734, -0.6791992, -0.16503906, -1.4013672, 2.6972656, 0.039489746, -1.0546875, -0.28393555, 2.796875, -1.3291016, 1.8173828, 1.578125, -0.5625, 0.59472656, -2.0488281, -1.3867188, -0.28808594, -2.2792969, 0.98583984, -2.4453125, 0.8618164, 0.08166504, 2.2285156, 1.171875, 0.38134766, 0.04574585, -0.08441162, -0.6791992, 1.1123047, -0.94384766, -0.8808594, -2.5976562, 0.49414062, 1.8408203, 0.3161621, -0.08392334, 0.25439453, 0.9760742, -1.6201172, -0.7729492, 0.04248047, 2.6601562, 0.6777344, 0.19360352, 1.0683594, -1.6962891, -0.16577148, -1.1601562, 0.57470703, -1.6367188, 3.2929688, 2.3261719, 1.359375, -0.16772461, -0.4116211, -2.5585938, -4.203125, -0.81689453, 2.4492188, -0.6020508, 0.765625, -3, -0.5258789, 2.0605469, -0.47705078, -0.57373047, -3.6992188, 1.3076172, -1.1904297, -0.79296875, -0.40795898, -0.49853516, 0.19116211, 0.5151367, 0.26220703, 0.52001953, -1.5351562, -2.1679688, -1.6044922, 1.5908203, -2.96875, -1.8857422, 2.3964844, -2.1777344, -0.6269531, 0.07556152, 1.2509766, -0.76123047, 1.4091797, -3.5, -0.40551758, 0.50927734, -1.5136719, 1.2929688, 1.0214844, -0.75439453, 1.7880859, 0.42749023, 1.3730469, -0.068237305, -0.36914062, 0.3701172, 0.39208984, -0.31884766, -2.6230469, 0.1538086, -0.9760742, 1.765625, 1.6347656, -1.7021484, 0.38134766, -1.8046875, -3.234375, 0.7373047, -1.1679688, -0.44482422, -0.074645996, 1.2441406, 2.4824219, -0.6357422, 0.5102539, 0.9614258, -1.1552734, -0.53222656, 0.9316406, -0.8095703, 2.2382812, 0.6713867, -0.8901367, -2.9316406, -0.9916992, 1.4238281, 2.921875, -1.2910156, 1.3222656, -0.5263672, -0.5546875, 1.9511719, -1.2285156, 1.2109375, 1.8027344, -0.7939453, -1.1279297, -0.105285645, 2.28125, -0.5649414, 1.7207031, 1.2832031, -0.7480469, -1.1083984, 2.5585938, 1.5068359, -1.6162109, 0.9746094, -1.5029297, 1.4257812, -0.54345703, -1.2207031, 0.35766602, -1.7958984, 0.5932617, -0.31469727, -1.7021484, -2.8046875, 1.8173828, 1.3730469, -2.609375, 1.2626953, 3.5058594, 1.1533203, -0.3178711, 1.6318359, 0.9448242, -0.22009277, -0.042236328, -0.84033203, 0.25683594, 1.5839844, -1.9433594, -0.25463867, 1.9462891, 1.9707031, -1.2539062, 0.1574707, 1.5263672, 3.1640625, 0.6040039, 1.4443359, 3.84375, -0.14465332, 2.0058594, 0.34985352, 2.1972656, 3.0019531, -0.8203125, 1.3398438, 1.7265625, -0.013473511, 0.11444092, -0.96728516, -0.4741211, -1.1650391, 0.17626953, 0.5629883, 0.91845703, 1.7216797, -3.0292969, 0.20837402, -0.8745117, 0.48535156, -4.125, -0.18969727, -1.0585938, 0.67285156, 0.75097656, 0.21520996, 1.5947266, 0.75683594, -1.2705078, -0.35717773, -0.18371582, 2.3828125, -0.9736328, 0.43066406, 0.010787964, -3.4121094, 1.0283203, 2.1113281, 0.9658203, 0.30004883, 0.49267578, -0.8720703, -0.85839844, 1.796875, 1.0175781, -1.7382812, -0.30541992, -0.8955078, 2.7949219, 2.3730469, -2.2636719, 1.9433594, 1.5078125, -1.7460938, -4.2382812, 3.390625, 0.027450562, -0.055847168, -1.8261719, -5.7734375, 1.9042969, -1.6728516, -0.65722656, -2.015625, 1.2529297, -0.9926758, -1.4541016, 0.72216797, 0.18640137, -2.8457031, 1.5908203, 0.15209961, -1.5878906, 0.51220703, 3.6386719, 2.5585938, -0.12225342, 0.3244629, 0.23486328, -0.07720947, -1.0625, 3.3378906, -0.16064453, -2.6445312, -0.71728516, 2.3867188, 1.0429688, 0.60595703, -0.43945312, 1.96875, 0.6513672, 1.5917969, -0.48291016, -0.22839355, -2.3144531, 1.1054688, 0.14160156, 0.52197266, -0.9121094, -2.3808594, 1.0234375, 1.0244141, -1.7265625, 0.31445312, 1.0322266, -1.1123047, 1.7861328, 0.89208984, -1.6386719, -1.1113281, -0.09313965, 0.75878906, -2.2421875, -0.44921875, -0.48706055, 0.33129883, 0.35791016, -2.3164062, -0.110961914, 0.90527344, 0.17883301, -1.6308594, -1.8339844, -1.2685547, -1.1025391, 0.29882812, -1.3027344, 1.2978516, 2.6875, -0.86376953, 2.4863281, -0.8647461, -0.00033187866, 1.0644531, -1.6123047, -1.1933594, 1.3271484, 2.2011719, -0.041778564, 1.7734375, -0.6020508, -2.5585938, -1.1367188, -3.3378906, 2.1523438, -1.3261719, -1.046875, 0.14111328, 0.2927246, 2.140625, 0.21398926, 1.4150391, 1.1152344, -0.54589844, 1.3457031, -0.8178711, -0.14990234, -0.3491211, 0.11779785, -0.17834473, 2.4101562, 1.8007812, -1.5449219, -0.4345703, 1.5380859, -0.47265625, -1.2939453, 0.8935547, 0.54052734, -0.029083252, -0.042663574, 3.0117188, 3.0507812, 0.49389648, -0.9272461, 1.1103516, -1.3164062]}, "B01N01N50Z": {"id": "B01N01N50Z", "original": "Brand: Elementi\nName: Elementi Lunar Bowl Cast Concrete Fire Pit - LP\nDescription: A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the 'Lunar Bowl' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42\" x 42\" x 16\". Burner Ring Size: 12\" (Dia.). Burner Pan Size: 23.7\" Diameter (I.D.).\nFeatures: Model #: OFG101-LP\nBTUs (max): 45,000\nFuel Type: Liquid Propane\nBody construction: Glass fiber reinforced concrete\nOverall Dimensions: 42\" x 42\" x 16\"\n", "embedding": [0.22741699, -0.08996582, 1.6689453, -0.8535156, 0.98583984, 0.05621338, -0.3359375, -2.1699219, -0.10583496, 1.8359375, -0.74609375, 1.0859375, -0.52490234, -2.5605469, 2.2988281, 0.16235352, 0.42626953, 0.77246094, -0.63134766, -0.7973633, 2.4238281, -0.79785156, -0.88916016, -0.3383789, 1.6669922, 2.0507812, 3.4492188, -4.03125, -1.8408203, -2.0878906, 0.89746094, 0.60791016, -0.0970459, 1.0996094, -1.6269531, -2.8261719, -1.0068359, 2.0605469, -3.6660156, -0.5917969, -1.609375, 0.13830566, 1.8623047, 1.2470703, -2.8144531, 0.30786133, 0.1303711, -0.6870117, -0.29248047, -0.8178711, 1.5478516, 0.63671875, -0.2919922, 0.10455322, -1.2236328, 1.6699219, -0.98535156, -2.21875, 4.8046875, -0.42041016, 0.5317383, -0.37402344, -1.2246094, 2.0605469, -0.61083984, 1.1152344, -1.6416016, -1.1875, -0.9248047, -1.4003906, 1.5429688, 0.46020508, -0.04650879, 0.44750977, 2.0976562, -2.7226562, -1.7675781, -0.41259766, 0.98291016, -1.3203125, -0.34570312, 3.3222656, 2.078125, -1.0986328, 0.94677734, 0.3935547, -3.8828125, -1.4414062, -1.4052734, -0.43847656, -0.19543457, 2.5859375, 1.3544922, -3.8417969, 1.9277344, -2.1445312, 0.13598633, -0.40893555, -3.171875, 0.27441406, -1.2792969, 1.5234375, -0.026153564, -1.59375, -2.4140625, -1.2978516, 0.265625, 0.046203613, 0.95166016, -1.0458984, -2.4375, -0.5878906, 1.2988281, -0.08929443, 0.21191406, 0.6875, 0.5722656, -0.22338867, 2.0664062, 0.20751953, 3.5546875, -0.010345459, -1.5634766, -1.5429688, -0.5600586, -0.32885742, -2.1894531, 0.7939453, 1.2919922, -1.0449219, -0.4814453, -0.5864258, 2.40625, -0.67089844, -3.9375, -1.5771484, -1.9423828, -2.1660156, -0.5473633, -2.3535156, -2.0253906, 1.2441406, 1.4765625, 0.9189453, -3.7675781, -0.57177734, -1.3613281, 1.8935547, 0.28295898, -1.9101562, 1.234375, -0.8095703, 0.105407715, -1.1914062, 1.0712891, 0.44702148, -0.42797852, -2.4921875, 3.4257812, 0.21862793, -0.060913086, -1.6044922, -0.12420654, 2.1914062, -2.1972656, 0.5673828, -0.3642578, 0.91796875, 1.3261719, 1.8623047, -1.4570312, -2.2519531, -0.53125, 0.42822266, 0.36206055, -1.7373047, -1.8115234, 0.30932617, -0.52441406, 1.5029297, -3.1367188, -1.2324219, 3.2773438, 1.4833984, 0.96484375, -1.2314453, -0.81689453, -3.4160156, -0.6567383, -0.04043579, 0.93847656, 0.07104492, -0.56152344, -0.3251953, -0.70654297, -0.5839844, -0.8208008, -3.3828125, 1.7246094, 0.49951172, 0.06573486, 1.7734375, -2.7109375, 0.31860352, -0.9423828, -1.7412109, -2.1113281, 0.25830078, 1.6835938, 1.828125, 1.0869141, -0.44384766, 0.1381836, -0.4855957, 0.8964844, 0.36767578, 0.171875, -0.28515625, 2.1933594, 1.4873047, 0.26245117, -0.9506836, -0.2685547, 1.5800781, -0.6464844, 1.0742188, 1.2880859, 0.48901367, -2.875, 0.92871094, 2.3476562, 0.5419922, 0.12347412, 0.50390625, 0.30615234, 3.3535156, 0.85253906, -0.32006836, 3.0917969, -2.7558594, -0.10192871, -1.7099609, -0.76416016, 1.8652344, -0.9326172, 1.0947266, 0.49023438, 0.3022461, 1.5898438, 1.4853516, -1.7871094, -0.9614258, 1.4648438, 1.3603516, 0.5522461, -0.69921875, -2.5273438, 2.4785156, 3.046875, -1.3164062, 2.4628906, -0.23999023, -0.2401123, -0.122558594, -0.29516602, -0.8925781, 0.0046920776, 0.14038086, -3.5507812, -0.0022068024, 0.89941406, 1.9111328, 4.09375, 1.6484375, 0.9604492, 0.3552246, 0.22888184, 1.6269531, 0.7602539, 3.0820312, -0.5961914, -1.1162109, 0.38745117, -2.2519531, 0.98535156, 1.3847656, -1.2070312, 0.8178711, -1.265625, 0.09967041, 3.5507812, -1.2783203, -1.7988281, 2.8730469, -1.9003906, -0.057525635, -0.36499023, -1.7871094, 1.5947266, -1.2744141, 0.6923828, 1.6806641, 0.38256836, 2.5683594, 0.3010254, 0.43969727, -0.0017614365, 0.4963379, -0.73095703, -0.21166992, -1.3574219, -1.7050781, -1.2890625, 0.8261719, -2.0683594, -2.2792969, 2.4941406, -2.4453125, 3.9804688, 1.5166016, 0.2758789, 0.39746094, -0.08380127, -2.7070312, 0.18615723, 2.21875, -1.8085938, 0.88378906, -0.25073242, -0.57128906, -1.6748047, -3.3730469, 0.24572754, -1.4111328, -0.5629883, -3.0214844, 0.19567871, 0.53271484, 2.1464844, -2.9199219, 0.5053711, 2.8066406, -1.2929688, 0.23095703, -2.0625, -4.5, -0.36914062, 1.2109375, 0.21008301, 0.4963379, 0.32983398, 0.58496094, 0.8261719, -2.6992188, -0.6875, -1.6708984, 0.12878418, 1.5380859, -0.08605957, -0.121520996, -0.4050293, 0.99121094, 0.171875, -0.984375, 1.0947266, 2.1582031, -0.73291016, -3.1542969, 1.6914062, -1.8046875, 1.1689453, -0.8339844, 0.87060547, -0.5649414, -0.5371094, -0.3947754, -0.9165039, 5.7929688, 0.87890625, 1.6503906, -2.3457031, -1.2402344, 0.26367188, -0.6479492, -0.98339844, -0.1048584, -2.2597656, -1.5078125, -4.1523438, -2.7695312, 0.26489258, -2.6191406, 1.6572266, -0.066223145, 1.1328125, -1.2470703, 0.5341797, -0.23132324, 0.46875, -0.06713867, -2.375, 1.2568359, 1.6162109, -0.46850586, -2, -1.1484375, -1.3710938, 1.3457031, 2.2421875, -0.7260742, -0.53027344, 1.7265625, -0.27075195, 0.8779297, 2.3105469, -3.6582031, -0.54248047, 3.1171875, 0.3491211, 3.2304688, -1.59375, -0.98046875, -0.98583984, -1.2617188, 2.5859375, -0.87353516, 2.3925781, 0.11187744, -0.6826172, -0.5673828, -0.34960938, -0.4753418, -0.1149292, -0.27539062, 2.3789062, -2.5273438, 0.06744385, -0.22729492, 2.3808594, -2.0703125, -1.3974609, 0.63720703, 2.9199219, 1.3916016, -0.31762695, 2.3671875, 0.15270996, 1.0996094, -0.7451172, 0.68115234, 1.0009766, -0.33251953, -1.4824219, 1.3466797, 1.5429688, 0.16882324, 2.8515625, -1.1044922, -0.21289062, 2.265625, -1.2832031, -0.6166992, -0.7260742, -0.7739258, 0.7763672, -0.20690918, 2.7910156, -1.7373047, -0.9223633, -1.3173828, 1.5761719, 1.3691406, 0.088134766, -0.08123779, 2.1289062, 0.09088135, -0.97558594, -1.2119141, 0.3935547, -0.69873047, -1.3789062, 1.8837891, -0.88378906, 0.48535156, -0.21081543, -0.87353516, 1.3574219, -0.7109375, 3.0429688, -1.0097656, -1.4414062, 0.76464844, 2.5546875, 0.2758789, -3.1171875, -0.5703125, -0.5385742, 0.9819336, 3.15625, -1.2617188, -1.640625, -0.056030273, -1.3525391, -0.15332031, 2.078125, 2.5566406, -0.0049858093, -1.1376953, 0.077697754, -0.19213867, 0.48779297, 2.0878906, -0.8076172, -1.8476562, 1.0800781, 0.62646484, -1.7871094, 0.5214844, 0.89746094, -2.4667969, 2.4648438, -0.32861328, 1.0371094, 0.2607422, 2.875, 1.3779297, 0.71191406, 1.7148438, 1.03125, -1.3564453, -3.046875, -1.1835938, 0.38671875, -2.4082031, 0.1303711, 1.4912109, -0.59375, -0.52978516, -1.7558594, -0.008468628, -3.9707031, -2.5761719, -0.5019531, 2.125, -2.1972656, -0.9194336, -0.27124023, -0.085510254, -1.6982422, -0.75097656, 1.3173828, -0.3046875, 1.4765625, 0.30786133, -0.8696289, 0.18920898, 0.38012695, 0.09454346, -1.5869141, -1.1025391, 1.5605469, -0.42456055, 0.7397461, -0.22436523, 0.14428711, -1.5966797, -1.4736328, 1.4267578, 2.4511719, 0.53027344, 1.2880859, 2.375, -0.03668213, 1.5078125, 0.53222656, -1.8339844, -1.4541016, 0.15356445, 1.4746094, -0.8227539, -1.0537109, -0.34423828, -2.3730469, 0.79248047, -0.17053223, -0.64160156, 1.1376953, 0.8354492, 0.47753906, 1.3037109, 0.5419922, -2.8730469, -0.03250122, 1.2929688, 0.6225586, -3.1152344, -0.111083984, -1.9414062, 2.1484375, -0.15930176, -1.0341797, -1.7529297, 0.087646484, 2.1054688, 1.3945312, 3.0976562, -4.140625, -2.8261719, -0.86572266, -1.3173828, 1.0097656, 1.8847656, 0.27172852, 2.4257812, 1.7412109, 1.1757812, 0.7324219, 2.4238281, -0.6098633, 0.46972656, -0.7290039, 1.5195312, -3.3125, -2.6269531, -1.5830078, 0.17810059, 0.5727539, -1.203125, -2.4335938, -1.0029297, -4.1796875, 1.4599609, -0.16821289, -0.29223633, -0.7138672, 1.5625, 1.2314453, 2.2773438, 2.7480469, -0.31567383, 3.1640625, -2.3730469, 3.1503906, -0.06097412, -0.12133789, -0.8286133, -1.03125, -2.0761719, 1.4355469, 1.2763672, 1.5693359, -0.39941406, 0.9394531, 0.90234375, -1.1171875, 3.3515625, 1.3232422, -1.9052734, -0.46875, -3.0625, -3.4746094, 1.359375, 1.0800781, -2.5703125, -0.54248047, 2.4648438, -0.61279297, 2.8105469, 1.4101562, -0.91308594, -0.6035156, -1.1259766, -1.8505859, -1.9755859, -0.08581543, -1.7412109, 0.8984375, -1.3037109, -0.7397461, 0.47705078, 0.5546875, 1.4970703, -1.0654297, 1.7314453, 1.8955078, -0.9301758, 0.16455078, 0.013305664, 1.9326172, 1.4189453, 1.9199219, 1.7783203, 1.9492188, -2.1523438, 2.8535156, -0.5019531, -0.5546875, -1.2929688, 0.33520508, -2.3378906, -0.13439941, 1.3583984, 0.074645996, 0.48657227, -1.3134766, -0.5830078, -0.35839844, 2.4375, -2.7695312, 0.5683594, -1.7167969, 0.31689453, -2.4238281, -1.1611328, -0.47827148, -2.25, -2.5195312, 0.1706543, -1.2929688, -0.3605957, -1.4091797, 0.3515625, -0.6147461, 1.40625, -0.8100586, -0.90234375, 0.4741211, -0.7104492, 0.25708008, 3.28125, 0.5629883, 2.3574219, 0.59716797, -0.9370117, -3.5839844, 0.67333984, 3.0859375, 0.17553711, 1.3818359, 1.3085938, 1.1083984, 2.3242188, 3.5507812, -0.78515625, -1.90625, 0.9477539, 0.74609375, -0.5, 1.5458984, -1.0595703, 1.7177734, 1.5947266, -0.72802734, 2.5527344, -1.9414062, -0.92626953, 1.2705078, 0.48657227, 0.89746094, -0.74365234, 0.8613281, -0.7270508, 1.3964844, 0.20593262, 0.7504883, -1.4580078, -0.8828125, -1.9052734, -1.2509766, -0.9614258, -0.37304688, -2.1660156, -1.1064453, -0.4807129, -1.140625, 0.91796875, 1.7080078, 0.5839844, 2.8105469, -0.26220703, 0.58447266, 0.97558594, 0.5834961, 1.3037109, 2, -2.3320312, -0.8623047, -5.5664062, 1.6982422, 1.3544922, -0.9301758, -0.9902344, 1.7705078, -2.4472656, 0.5488281, 1.34375, 1.2763672, -0.019897461, 1.5527344, -3.140625, 0.51708984, 1.8212891, -2.3671875, 1.625, 0.09326172, 2.8867188, -0.59033203, 0.90234375, 0.8198242, -1.9707031, 4.1132812, 0.59521484, -0.07385254, -1.3134766, 0.42285156, 1.2998047, -1, -0.67626953, 0.3479004, -0.39990234, -2.8730469, 0.89746094, 0.7861328, 0.7084961, -0.37695312, -0.46142578, 0.5625, 2.0976562, 1.9365234, 0.5986328, -1.2246094, -2.0351562, -0.65722656, 1.7490234, 1.5019531, -0.2919922, -1.265625, -0.7314453, -0.24645996, -0.87109375, -0.31518555, -0.84277344, 0.77197266, 1.0273438, 2.4941406, -1.1826172, 0.6269531, 2.234375, -1.2324219, 1.7119141, 0.31689453, -0.8232422, -1.3632812, 0.31176758, 1.2255859, 0.2578125, -1.5820312, -1.1308594, 0.04727173, -2.484375, -0.6098633, -0.63671875, 0.8154297, -2.5917969, 2.7929688, -0.33129883, -0.09741211, -1.0419922, 1.2089844, 0.22460938, 0.2133789, -0.38793945, 0.014328003, 0.69433594, 1.0175781, 1.9199219, 2.0429688, 0.58691406, 0.2980957, -2.6132812, 2.3789062, 1.0996094, -2.9804688, -2.0605469, 3.5449219, 2.3964844, 0.15966797, -0.66748047, 1.90625, -0.25341797, 1.9589844, 1.3583984, 0.67529297, -0.7939453, 0.21862793, 3.984375, -0.12420654, -0.42407227, -1.0947266, -0.30249023, -2.8203125, -0.7807617, 1.5908203, 0.8964844, 1.6767578, -0.25854492, 0.5292969, 0.8046875, 1.2929688, 1.3046875, -2.1269531, 2.8710938, 0.41796875, -0.49951172, -0.00068855286, 0.3190918, 1.1298828, 0.8417969, 2.3925781, 0.2939453, 2.5703125, -0.12963867, 1.0644531, 0.60595703, 0.9555664, -1.3105469, 2.1386719, -0.84814453, 2.8828125, 0.78808594, -1.3935547, -0.5541992, 3.7910156, 2.9570312, -1.0302734, 0.8261719, 0.082092285, 1.0634766, -0.95166016, -0.046722412, -2.5859375, -1.9931641, 0.055419922, -0.94677734, -0.09741211, 0.8408203, 0.07885742, 0.7753906, 1.2197266, -0.8535156, -0.9189453, 1.5771484, -2.0722656, 0.80859375, -0.89404297, -1.9277344, 0.9345703, 0.7089844, 1.6787109, -0.43676758, -1.9931641, -1.0214844, 2.8964844, -0.13098145, 0.65185547, 1.0371094, 1.6542969, -0.22375488, 0.7792969, 2.5195312, -0.7558594, 0.92529297, 2.46875, 1.2490234, -0.20397949, 1.7177734, -0.016830444, -1.9462891, 2.0722656, -1.3134766, -1.1054688, 0.8588867, -3.796875, -0.75634766, 3.3007812, -0.42382812, -0.1940918, -1.6914062, -3.859375, -0.4807129, -1.4648438, 1.7685547, -1.4306641, -0.6533203, -0.8803711, -0.46240234, 2.2089844, -0.6113281, 0.76904297, -1.1162109, -0.8310547, 2.0957031, -0.45288086, 3.3769531, 0.11425781, 2.0351562, 1.4765625, 0.43041992, 1.2890625, -1.1943359, -0.11743164, 2.1621094, 1.3916016, -2.2617188, -0.40039062, 0.6352539, -0.55078125, 1.5283203, -1.2285156, 0.39453125, -2.1171875, -0.79589844, -3.09375, -1.5117188]}, "B07YHC58TG": {"id": "B07YHC58TG", "original": "Brand: SHINESTAR\nName: SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill\nDescription: Description:
Replace short regulator hose kit on gas appliance.
Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
12ft long enough to put the propane tank where needed with length to spare.
Added protection of the stainless steel braided around the hose.
Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

Feature:
Hose Length: 12 Feet
Connection: Acme nut (QCC) x 3/8'' Female Flare Fitting
Outlet Pressure:11\" W.C.
Flow Capacity: 80,000 BTU/Hr
Length: 12 feet /144 inch

NOTE:
FULLY TIGHTENED at both sides of hose before using to prevent leakage.
To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
Keeping the hose away from HIGH TEMPERATURE.
For Outdoor Use Only.
\nFeatures: \u3010Perfect Upgrade\u3011The attached propane gauge can detect dangerous leaks and read fuel level at glance\n\u3010More Durable\u3011Stainless braided hose prevents whatever animals from chewing through your hose\n\u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Control Gas Flow\u3011The regulator Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n", "embedding": [-1.2724609, 2.5488281, 1.0048828, 1.1679688, -2.2148438, -0.22888184, 2.0566406, -1.5517578, 2.5429688, 0.1541748, 0.041534424, -0.9736328, 1.2763672, -2.8652344, 1.4794922, 1.0429688, 0.8183594, 0.6743164, 1.4433594, 1.796875, 1.4179688, 0.3647461, 1.9287109, -0.4482422, 1.9794922, -2.1035156, 2.9160156, -2.8496094, 0.1048584, -0.9135742, 0.89697266, 0.05670166, -0.050720215, 0.9423828, -2.5898438, -1.7529297, -0.8540039, -0.7558594, -4.296875, -1.7392578, -2.4824219, 1.6279297, 2.6015625, 0.34204102, -2.3730469, 1.2148438, 0.95410156, -0.04333496, -0.7324219, -0.11022949, -0.3708496, -0.3828125, -0.024749756, 1.1435547, -0.51660156, -0.6879883, -1.3789062, -2.8652344, 1.7636719, 0.37841797, 1.4921875, -0.4501953, -3.0078125, 1.0976562, -0.095214844, 0.9741211, 1.2060547, -0.7661133, 0.17687988, 1.0673828, 0.77441406, -0.16369629, 0.47851562, -1.5078125, 0.41723633, 1.0859375, -2.3300781, 0.06842041, 2.5253906, 1.2597656, -0.18164062, 2.4003906, 0.54296875, -1.1074219, 2.4472656, 0.21203613, -2.8007812, 0.77246094, 1.0263672, 1.6025391, -1.8886719, 3.265625, -2.7285156, -3.3085938, 1.2539062, 0.26660156, 1.8398438, 1.1435547, 2.2519531, -0.60009766, -1.2207031, -1.2783203, -0.51171875, 1.6083984, -2.0957031, -0.8886719, 0.60498047, 1.8212891, -2.0429688, -0.40429688, 0.21887207, 0.61279297, 1.3193359, -0.94970703, 0.703125, -1.8076172, -0.13354492, -0.7973633, 3.0566406, -0.5419922, 3.0527344, 1.0722656, -0.5805664, 0.29663086, 0.7348633, 0.28076172, -0.3166504, -0.38256836, 2.2597656, -1.0791016, 0.3359375, -3.0644531, 1.8916016, -0.037200928, -1.3730469, -2.8808594, -1.4560547, -1.4775391, -2.3007812, -0.4482422, -3.9980469, -0.42529297, 0.6772461, 0.60253906, -3.3535156, 0.15344238, -3.4765625, 1.2578125, 2.6035156, -2.1816406, 1.7783203, -0.68896484, -0.37646484, -1.4013672, 1.8320312, 1.4335938, 1.2832031, -2.0664062, 3.4140625, 1.2470703, 2.0039062, 0.31567383, -2.4375, 2.1347656, -0.10632324, -3.7480469, 0.58447266, 1.0175781, -0.77246094, 0.71728516, 0.35717773, -3.46875, -0.14050293, 1.0400391, 0.19641113, -1.7568359, 0.73876953, 0.2548828, 2.890625, 0.20300293, -4.0546875, -2.8320312, 2.2167969, -1.4560547, 0.4169922, 0.36157227, -1.0625, -1.8701172, 0.82958984, -0.22216797, -2.359375, 0.44628906, -0.25048828, 0.13598633, -1.7246094, -2.6796875, -2.8652344, -1.4179688, 1.3017578, 1.1308594, -1.9003906, 0.23059082, 0.1829834, 0.99072266, -1.3886719, -0.3881836, 0.68359375, -0.05218506, 0.35327148, 2.5332031, -0.5732422, -1.0722656, 1.9384766, -1.5146484, -0.30810547, -1.9785156, 1.5615234, 2.9609375, 1.3837891, 1.7216797, -0.031280518, 0.9902344, 1.9199219, 0.33740234, 2.40625, 0.21240234, -0.22839355, 0.89697266, -1.9179688, -1.7099609, 2.9921875, 1.1396484, -0.91552734, -0.1776123, -0.19226074, 2.6367188, 0.6191406, 0.3552246, 1.0195312, 1.5957031, 0.006000519, -1.0996094, -2.2636719, -0.82421875, -0.41479492, -1.0917969, 0.0077400208, -0.19177246, 2.3984375, -0.5253906, 1.0126953, -0.10107422, 0.2746582, 0.73535156, -0.8041992, -0.87353516, 1.4697266, 2.2382812, 0.12805176, -1.6357422, 1.9384766, 1.3730469, -0.5629883, 1.8173828, -0.46948242, 0.86083984, 1.6826172, -0.5966797, -1.8896484, 1.3642578, -1.2177734, 2.1972656, 0.9711914, -1.0878906, 1.1396484, 1.1855469, -2.2226562, 3.1542969, 0.17114258, 0.97314453, 1.3486328, -0.70410156, 1.7929688, -2.2070312, 1.4990234, 2.3378906, 2.7460938, 0.55566406, -1.6328125, 0.5732422, 4.4335938, -0.08807373, -0.5307617, 1.859375, 1.9814453, 0.74316406, 2.5078125, 1.0214844, 0.68310547, -0.68408203, 0.5263672, 1.3300781, -1.1591797, 0.99365234, 1.3896484, -0.74853516, 1.3720703, -1.2832031, 4.1484833e-05, 0.5107422, -1.0507812, -0.8979492, -1.3144531, 1.6132812, -2.2617188, -2.0976562, 2.5195312, -2.2128906, -0.46240234, 2.4335938, -0.64208984, -0.21960449, 0.6660156, -1.5224609, -0.45092773, 2.5097656, -1.9326172, 2.8515625, 1.8769531, 0.515625, -0.8417969, -1.7763672, -0.38500977, -1.8525391, -2.1933594, 0.17663574, -1.9189453, -2.8007812, 0.7885742, -2.1386719, -2.1523438, 1.3720703, 0.9003906, 3.2480469, 0.42797852, -0.6230469, -0.41503906, 1.4638672, 0.671875, -0.33154297, -0.111450195, 2.9921875, -0.3696289, -1.8935547, -0.6347656, -0.68603516, -0.40112305, 1.2714844, -1.7851562, 0.14123535, 0.82177734, 2.0097656, -0.11480713, 0.19067383, 0.8339844, -3.7929688, 0.25854492, -3.7382812, 0.14453125, -0.16442871, 1.7138672, -2.9960938, 0.8208008, -1.3447266, -2.53125, 1.2480469, -1.2207031, 1.6054688, 0.25512695, 2.5292969, -2.6367188, 0.018615723, 0.7573242, -0.20983887, -1.7773438, 0.40429688, 2.1503906, -1.4287109, -0.35620117, -3.4609375, 0.094177246, -0.36669922, 0.3684082, -0.2763672, -1.9052734, -1.7363281, -0.20117188, 0.42626953, -1.6552734, -0.7714844, 0.45288086, 0.50683594, -2.0039062, -0.8408203, -0.30126953, -0.7026367, -0.5629883, 1.6044922, -0.18725586, -1.4296875, -0.10809326, 2.1445312, 1.1630859, 1.0498047, -0.78466797, -3.7148438, -0.08868408, 2.8378906, -0.6357422, 1.8027344, -1.0097656, 0.49194336, -1.5019531, -1.4521484, 1.3330078, 1.1357422, 1.4570312, -1.1992188, -1.1875, 1.2382812, -0.03161621, -1.6113281, -0.7260742, -0.37548828, 4.7148438, -2.4511719, -1.4140625, 0.24584961, 1.2216797, -4.5507812, -0.13024902, 0.8833008, -1.4101562, 2.2929688, 1.1035156, 0.3017578, -1.0097656, 1.5986328, 1.4716797, 1.2998047, 1.0761719, 0.6542969, 0.14050293, 0.21569824, -1.2050781, 1.03125, 2.5097656, -0.19116211, 0.25854492, 0.20544434, 0.0524292, -1.2607422, 0.4501953, -0.22949219, 0.88916016, 0.31152344, 2.5878906, -0.3474121, -0.890625, -1.9873047, 0.3894043, 2.9609375, -1.2509766, -2.3125, 1.9921875, 1.3847656, -1.546875, -0.39868164, -1.3359375, -0.08886719, -1.8261719, -0.5649414, 1.1064453, 1.1513672, 1.6542969, -0.13635254, 1.8232422, -1.8261719, 2.7070312, -1.2705078, -0.81884766, -0.5678711, -0.8730469, -2.1992188, -1.265625, -0.10107422, -2.4375, -1.5322266, 2.3203125, 2.0195312, -2.3007812, 0.6279297, -1.1220703, 1.1054688, 1.3095703, -2.1503906, 0.19165039, 0.21618652, -0.10498047, -0.84521484, 0.18933105, 1.78125, -1.0029297, -2.7011719, 0.4321289, -1.7675781, -0.44873047, 1.7255859, 1.390625, -2.7285156, 1.0058594, -1.1210938, 0.7578125, -0.67529297, 4.1015625, 0.35131836, -0.4892578, 1.5556641, -1.8623047, -0.9526367, -2.0644531, -5.40625, -0.027664185, -2.6289062, -0.16699219, 2.0390625, 0.47607422, 0.4790039, 0.020599365, 1.8789062, -3.015625, -0.8334961, -0.69677734, 0.99658203, -1.8701172, -0.24938965, 1.7412109, 1.1708984, -1.4765625, -2.5683594, -0.55615234, -2.6914062, -1.5, 1.9267578, -0.91748047, 0.36499023, -1.7294922, 0.0925293, -0.68603516, -1.3828125, 0.65625, -0.42211914, -0.9926758, -3.2578125, 2.1894531, 1.0664062, 0.7524414, -0.78759766, 3.1191406, 2.4433594, -0.39868164, 0.22607422, 0.41552734, 4.015625, -0.021469116, -2.8789062, -0.56103516, -1.5253906, 0.24316406, -0.0053710938, 1.1142578, 0.77197266, -1.8164062, 1.1064453, -0.8574219, 1.5849609, 1.8710938, -0.58935547, -4.1835938, 1.3417969, 0.80859375, -2.0390625, 0.36694336, -0.49389648, -1.9853516, -3.0195312, 1.0595703, -2.3222656, -0.7548828, -2.2792969, 1.2148438, -3.7636719, 1.8857422, 0.04324341, 0.33276367, 0.66503906, -1.9755859, -1.0888672, -0.05126953, -0.79248047, -1.7373047, 0.22070312, -3.0605469, -0.72265625, 2.0253906, 0.36767578, -0.26489258, -0.87402344, -0.3203125, -1.9160156, -1.8359375, -0.31567383, 0.74658203, -0.30688477, -1.0390625, 0.86376953, -0.5541992, 3.6035156, -0.5078125, 1.5839844, 0.7558594, -0.2322998, -0.96728516, 1.5292969, 2.8535156, 2.6171875, 1.03125, 1.0087891, 1.8876953, 2.4863281, 1.7919922, -0.5678711, 1.1083984, -2.0625, 1.1113281, -0.72216797, 0.953125, -1.2138672, 0.5859375, 0.12768555, 1.8896484, 1.4423828, 2.1015625, 0.5830078, -1.4091797, 2.1640625, 0.1262207, -1.0537109, -0.2602539, 0.9536133, -1.4716797, 3.875, -0.21740723, -1.9980469, -0.21069336, 2.9121094, -1.0849609, 2.2441406, 0.27197266, -1.3359375, -0.49243164, -2.015625, -2.578125, -0.37231445, -2.7910156, 0.42651367, -1.3476562, 0.5986328, -0.4873047, 2.4472656, 1.171875, 0.08404541, -0.06762695, -1.0302734, -0.69140625, 0.19421387, -0.6699219, -0.59033203, -1.953125, 0.4099121, 0.109191895, 0.93847656, 0.7661133, -0.1270752, 0.578125, -1.1875, -1.8066406, 1.2734375, 1.7275391, -0.3227539, -0.0013580322, 2.1171875, -0.50634766, 0.43969727, -1.6181641, -0.77246094, -2.1484375, 1.8945312, 1.3417969, 1.7158203, -0.17883301, -1.5556641, -2.7578125, -5.703125, -0.16748047, 1.8066406, -0.74853516, 1.1005859, -2.7382812, -0.55566406, 1.9003906, -0.6953125, -0.08258057, -1.0654297, 2.0917969, -0.6147461, 0.30371094, -2.5292969, 0.08074951, 0.84277344, 0.6044922, -1.1787109, 0.32080078, -0.03744507, -1.9511719, -2.8476562, 2.1503906, -2.8046875, -0.62939453, 1.9716797, -1.6044922, -0.09851074, 2.0253906, 0.5341797, -0.14404297, 0.88916016, -1.5625, 0.18371582, 1.7509766, -2.7714844, 0.89746094, 1.0693359, -0.7597656, 0.36669922, 0.7734375, 0.36767578, -0.41723633, -1.0693359, -0.080322266, 1.2080078, -0.59472656, -2.4550781, 0.3737793, -0.052490234, 2.1328125, 1.8466797, -1.1025391, -0.85546875, -1.9433594, -2.7539062, 0.68115234, -1.8291016, 0.27124023, 0.8041992, 2.1035156, 1.7304688, -0.7553711, 0.82373047, 1.5957031, 0.46240234, -0.9614258, 1.5595703, -1.4667969, 3.5683594, 0.9663086, -1.3857422, -3.5683594, -0.6689453, 2.0917969, 3.5644531, -1.7744141, 0.021881104, -0.12915039, -0.3005371, 1.2822266, -0.61035156, 0.63378906, 0.22644043, 1.3574219, -1.2060547, 0.14501953, 0.78027344, -1.2246094, 2.2675781, 0.8779297, -0.42382812, -0.9609375, 1.4619141, 2.0136719, -2.6738281, 1.5126953, -1.3476562, 1.1835938, -0.25585938, -1.2773438, 0.2364502, -3.0488281, 0.640625, -0.35131836, -2.6875, -4.3671875, 0.9926758, 1.2734375, -0.46289062, 0.5908203, 2.6699219, 0.26635742, 0.27197266, 1.4433594, 0.063964844, -0.65771484, -0.89697266, -1.8408203, 0.056610107, 2.3496094, -2.0488281, 0.82128906, 1.4140625, 0.7758789, -0.41259766, -0.51123047, 0.80371094, 2.3652344, 1.0869141, 2.5292969, 2.9863281, 0.19604492, 2.4726562, -0.45361328, 3.09375, 2.6933594, -1.6269531, 1.0380859, 1.6826172, 1.2294922, 1.3046875, -0.1418457, 0.023895264, -0.98291016, -0.28320312, -1.1953125, 1.1845703, 1.8076172, -3.0703125, 0.1730957, -0.47216797, -2.7167969, -2.1386719, 2.3398438, -0.81689453, 0.8046875, 1.546875, 1.2099609, 0.67041016, 1.4560547, -1.0556641, 0.18554688, -0.8925781, 2.4589844, -1.2011719, 0.734375, -1.4296875, -3.4980469, 1.0585938, 3.4921875, 0.7167969, 0.7529297, -0.16711426, -0.6308594, 0.03857422, 1.3027344, 0.26708984, -0.48632812, 0.03881836, -1.7509766, 2.2070312, 0.91796875, -1.7636719, 0.63134766, 0.18225098, -2.0136719, -4.0546875, 3.7539062, 0.47753906, -0.4453125, -0.11505127, -3.6679688, 1.6455078, -2.3671875, 0.1529541, -2.4316406, -0.32983398, 0.16760254, -1.8857422, -0.115356445, -0.26782227, -1.3808594, 2.0527344, 0.37182617, -1.1259766, 0.7890625, 0.7783203, 1.6689453, -0.25048828, 0.8354492, -0.3173828, 0.58203125, -1.0478516, 4.078125, 0.26049805, -2.7714844, 0.17297363, 2.4804688, 0.3034668, 1.5224609, -0.41870117, -0.36987305, 2.2285156, -0.4753418, -0.56591797, 0.59033203, -1.5009766, -0.6611328, 0.17443848, 0.6411133, -0.7338867, -0.88916016, 0.53271484, 0.41455078, -2.1835938, 1.4648438, 2.7714844, -1.953125, 0.91552734, 2.4082031, -1.6699219, -1.7753906, 1.0419922, 1.7841797, -2.6523438, -0.34204102, -0.82470703, 0.16870117, 0.29614258, -1.8085938, -0.096069336, 0.8178711, -1.0917969, -0.8413086, 0.09100342, -0.6635742, -0.52734375, 0.4477539, -0.95410156, 0.4855957, 3.2558594, 0.7866211, 2.4101562, -0.29614258, -0.8803711, 0.4555664, -2.0761719, -2.3164062, 1.265625, 2.6445312, 0.03390503, 0.07086182, -0.08703613, -2.6425781, -0.6669922, -1.1992188, 1.8652344, 0.32861328, -2.8964844, 0.8105469, 1.8349609, 2.2285156, 0.06958008, 1.3339844, 0.7397461, 0.87109375, 2.0234375, -1.421875, 2.2617188, -1.3359375, 0.8144531, 0.55029297, 3.5703125, 1.4091797, -1.5029297, -0.033233643, 0.58935547, 0.019088745, -2.0039062, 1.3310547, 0.8256836, 0.9008789, 1.4570312, 2.6796875, 2.4101562, 0.6586914, -0.93896484, -1.7041016, -0.609375]}, "B01GZPBCPU": {"id": "B01GZPBCPU", "original": "Brand: DOZYANT\nName: DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8\" Female Flare Nut, 2 Feet\nDescription: \nFeatures: Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8\" Female Flare swivel nut which has an outside diameter of 5/8\" In order to accommodate for the flare seat\nReplacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill.\nEasy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator.\nSafety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels\nFits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application\n", "embedding": [-1.0244141, 0.97802734, 1.3886719, 1.2861328, -0.5595703, 0.06463623, 1.5175781, -1.5976562, 1.7255859, 0.49902344, 0.8198242, 0.46655273, 2.4824219, -2.1542969, 2.8046875, 1.1572266, 2.6308594, 0.41381836, 1.2314453, 1.3320312, 0.97216797, -1.1884766, 2.2734375, -0.4416504, 1.2177734, -0.6791992, 3.9550781, -2.3457031, 0.24707031, -1.5478516, 0.88427734, 0.4946289, -0.67578125, 1.5302734, -3.390625, -0.45166016, 0.8725586, 1.4873047, -3.3554688, -0.39770508, -2.7714844, 1.1845703, 1.8642578, 0.5649414, -2.5019531, -0.5473633, 0.8754883, 2.1367188, -0.44580078, -0.6777344, 2.1171875, 1.8066406, 0.6430664, 0.6503906, -2.4589844, 2.9863281, -1.2246094, -2.8398438, 0.97753906, 0.50683594, 2.421875, -0.2253418, -2.3027344, 0.47851562, -1.5498047, 0.5180664, 1.4648438, 0.008392334, 0.15136719, -0.28271484, 0.52685547, 1.5117188, 0.14404297, -0.03137207, -0.60058594, 0.26538086, -3.4824219, 0.52978516, 1.6933594, -1.0986328, -1.4980469, 2.7207031, 1.8349609, -3.3515625, 0.76708984, -0.8251953, -0.17858887, 0.5488281, 1.796875, 1.1201172, -2.3691406, 1.0800781, -2.0351562, -3.5039062, 0.5175781, 0.024429321, 0.95947266, 1.1425781, 1.2539062, 0.25830078, -2.7167969, -0.42358398, 0.22961426, 1.1367188, -2.5722656, -0.95947266, -0.14453125, 1.6113281, -2.3652344, -0.72509766, -0.40112305, 1.2773438, 1.8701172, -0.6513672, 0.42797852, -1.3642578, -0.4765625, 0.88720703, 0.8847656, 0.9472656, 3.0957031, 0.13891602, 0.2397461, -0.30493164, 0.56933594, -0.20739746, -0.77246094, 0.79785156, 4.0820312, -1.8847656, 0.33081055, -2.5585938, 3.6132812, 0.24768066, 0.75927734, -3.7089844, -0.73046875, -2.8710938, -0.81884766, -0.46875, -2.6171875, -0.7348633, 1.3779297, -0.20776367, -4.7773438, 1.6357422, -3.8046875, 1.4736328, 2.203125, -1.6220703, 2.4707031, -1.1259766, 0.52490234, -2.625, 2.5976562, 0.37353516, -0.77978516, -1.3974609, 3.0527344, 1.2587891, 1.4482422, -1.1933594, -0.98291016, -0.3798828, -0.5410156, -2.5332031, 0.6958008, 0.6347656, -1.4550781, 0.9433594, -0.7504883, -2.8066406, -0.24645996, -0.47094727, 0.71240234, -1.1113281, 0.6533203, 1.6132812, 1.6152344, 0.36743164, -3.5820312, -2.0761719, -0.12133789, -1.0107422, 1.7226562, 0.9580078, -0.8730469, -0.45117188, 1.9902344, -1.0644531, -2.0117188, 0.9951172, 0.08416748, 1.1191406, -0.8955078, -2.3886719, -3.2402344, -0.99316406, 0.54052734, 0.4321289, -1.4023438, -2.1484375, 1.2226562, 0.3034668, -1.9658203, -2.0898438, -0.9199219, 1.1386719, 0.5883789, 1.4648438, 0.3996582, -0.69189453, 2.8085938, -0.5161133, 0.11975098, -2.2753906, 2.3496094, 2.1308594, 1.4931641, 0.9350586, -0.98535156, -1.0322266, 0.79345703, 1.6669922, 1.4658203, 0.66064453, 0.57470703, 1.6376953, -2.9902344, -2.1660156, 1.2412109, 0.84472656, -1.2763672, 0.05895996, -0.31469727, 2.8300781, 1.7304688, 1.0078125, 1.8115234, 1.3691406, 0.38232422, -1.3544922, -2.15625, -0.07836914, -0.4206543, -0.009475708, -2.625, 1.9707031, 1.1181641, 0.1484375, -0.08288574, 1.0654297, -1.3056641, -1.6914062, -1.7636719, 0.21704102, 0.140625, 1.6328125, 0.46362305, -1.4580078, 2.4179688, 0.1105957, 0.21618652, 1.0976562, 1.3564453, 0.09289551, 2.515625, -2.15625, -0.9169922, -1.2529297, 0.20690918, 2.3242188, 2.7363281, -0.076538086, 0.81884766, 1.7197266, -2.1757812, 2.1191406, -0.26782227, -0.01991272, 1.6533203, 0.6381836, 1.8662109, -1.84375, 1.0322266, 1.2294922, 0.011734009, -0.87158203, -2.0332031, -0.2565918, 3.5761719, -0.12939453, -3.7949219, 2.734375, 1.9882812, 1.1386719, 2.1601562, -0.5205078, -1.2080078, 0.27392578, -0.06286621, 1.0195312, -1.4082031, 1.4404297, 1.6777344, 0.05621338, -0.0032596588, -2.1933594, -0.8955078, 1.7626953, -1.8720703, -1.5654297, -1.0810547, 1.3486328, -1.9716797, -2.7851562, 0.59765625, -2.4257812, -0.26757812, -0.37524414, 0.095581055, 0.55078125, 0.06274414, -1.0390625, 0.40283203, 0.9433594, -1.6201172, 0.2993164, 0.69140625, -1.390625, 0.6176758, 0.017425537, 0.4326172, -1.8232422, -1.7851562, -0.18029785, -2.03125, -4.1015625, 1.5986328, -1.6669922, -1.4550781, -1.1660156, 0.67285156, 3.3125, 0.55566406, -1.6210938, -2.6113281, -0.54785156, -0.08850098, -0.3256836, 0.020217896, 2.4941406, -0.33496094, -1.9072266, -0.13024902, -0.012802124, 1.1181641, 1.4072266, -1.2714844, -0.22680664, 0.8330078, 0.18981934, -1.1591797, 0.6386719, 1.7646484, -0.7050781, 0.23059082, -3.9648438, -0.47998047, -1.0927734, 1.0986328, -0.6088867, 1.9804688, -2.7207031, -0.60839844, 0.8876953, -1.7070312, 1.8291016, -2.4414062, 1.8896484, -0.06530762, 0.11895752, 1.3164062, -2.6210938, -3.6191406, 0.46679688, 1.3515625, -0.3959961, -0.7553711, -2.6347656, -0.64697266, 0.5493164, 0.12322998, -0.66845703, -0.17614746, -1.3056641, 1.6796875, -0.19116211, -0.0007376671, 0.3244629, 1.2910156, 0.56689453, -1.6679688, 0.9946289, -0.109191895, -2.0839844, -1.2792969, -0.55371094, 0.6777344, 0.16552734, -0.5019531, 1.0908203, 0.13549805, 1.6542969, -0.13256836, -3.5039062, -0.7133789, 0.9716797, -2.7207031, 2.6660156, 0.28198242, -0.109802246, -3.8300781, -1.5527344, 3.0214844, 1.703125, 3.5332031, -0.016983032, 0.89453125, 0.3400879, -0.5053711, -0.29785156, -0.42529297, -0.087890625, 4.4648438, -3.0019531, -1.1083984, 0.01399231, -0.85253906, -3.4257812, -0.12731934, 2.4394531, -0.29785156, 2.75, 0.20996094, 1.5761719, 0.98583984, 0.9550781, 2.4863281, -0.28344727, 0.4189453, 0.78466797, -0.16088867, -0.0018539429, -1.6767578, 2.5585938, 1.2460938, 1.8291016, 0.86865234, -0.31640625, 1.0507812, -1.6435547, 0.55859375, 0.4951172, 1.7998047, -1.2988281, 2.234375, -1.2021484, -0.066833496, 0.108947754, -0.65283203, 2.1113281, -2.6542969, -0.56152344, 3.2402344, 1.4326172, -0.93847656, -0.97802734, 0.83935547, 0.09094238, -0.6723633, -0.5854492, 0.32739258, 1.1220703, 1.4003906, -0.72314453, -0.36083984, -2.0664062, 1.9248047, -1.546875, -0.18115234, -1.4267578, 0.9790039, -1.4775391, -1.0615234, 0.2788086, -2.4941406, -0.703125, 1.8408203, 1.5410156, -0.7524414, 1.4121094, -1.3964844, 1.3505859, 1.8203125, -1.7568359, 0.10797119, 0.30493164, -0.58496094, 0.43676758, -0.47802734, 3.4550781, 0.23876953, -3.0605469, -0.7792969, -2.8886719, -0.37475586, -1.1494141, -0.41674805, -2.0351562, 1.2451172, 0.59277344, 1.3291016, 0.0211792, 3.2148438, -0.6347656, -1.3027344, 2.7148438, -3.1484375, 0.07897949, -1.9287109, -5.328125, 0.95996094, -3.0917969, 0.1315918, 1.8085938, 0.77197266, 0.36669922, 3.1230469, 2.375, -3.1699219, -0.2927246, -1.078125, 0.04171753, -1.8955078, -0.81884766, 2.0429688, 0.86279297, -0.3034668, -2.6757812, -0.3774414, -1.8720703, -0.17700195, 0.84277344, -2.0585938, 0.58496094, -0.9472656, 0.5595703, -1.4082031, -0.35620117, 1.6494141, -0.4572754, -0.8286133, -3.4492188, 3.0097656, -0.11975098, 1.390625, -1.3330078, 2.828125, 2.2773438, 0.14758301, 1.0009766, 0.8696289, 3.8027344, -0.36206055, -2.5078125, -1.578125, -0.119018555, 0.66552734, -1.2119141, -0.51904297, 0.2668457, -2.5898438, 1.90625, -0.38476562, 1.3623047, 2.2050781, 0.06677246, -2.3203125, 0.6386719, 0.16870117, -1.71875, -0.40356445, 0.28198242, -1.1582031, -1.2011719, -0.20751953, -2.5546875, 1.515625, -2.2109375, -2.0839844, -2.4101562, 0.23803711, -0.1003418, -0.41235352, 0.40698242, -2.2988281, -0.18054199, -0.35961914, -0.8359375, -1.3496094, -0.81103516, -3.2265625, -1.3066406, 1.4101562, 1.9658203, 0.0793457, -1.2314453, -0.75878906, -1.2802734, -1.2626953, 0.20336914, 0.6899414, -0.5214844, -1.4541016, -0.5019531, -0.08935547, 2.609375, -0.8676758, 1.3212891, 2.09375, -0.62890625, -1.5644531, 2.1835938, 2.09375, 2.3632812, 0.9370117, 1.2421875, 3.0273438, 1.140625, 0.24853516, 0.89404297, 0.33862305, -2.1464844, 0.43798828, 0.19458008, 0.9458008, -1.7636719, 1.1933594, 1.9814453, 1.8662109, 1.7714844, 0.93603516, 0.6225586, -4.3007812, 1.8115234, -0.16101074, -2.5273438, -0.3251953, -0.6660156, -2.2207031, 3.0664062, -0.3461914, -2.3945312, -0.08081055, 0.8046875, -0.6611328, 1.3369141, 0.26708984, -0.9448242, -0.2758789, -2.0136719, -1.6884766, -0.75683594, -1.3945312, 2.1542969, -1.4560547, 1.5839844, 0.71777344, 1.6152344, 1.9443359, -1.0332031, -1.4208984, -0.7475586, -1.7285156, -0.4873047, -0.7783203, -1.7949219, -0.65185547, -0.1060791, 2.4277344, 2.6914062, 1.5957031, -0.53271484, 0.6845703, -1.6074219, -1.5009766, -1.5292969, 1.5957031, -0.5566406, -1.3212891, 3.0253906, -1.1962891, -0.068115234, -1.6855469, -0.22692871, -0.11517334, 2.5703125, 0.1550293, 1.2333984, -0.9790039, 0.7270508, -2.296875, -3.3769531, -1.2333984, 1.171875, 0.72802734, 1.2070312, -0.8154297, 0.05078125, 2.0175781, -0.5175781, -0.65234375, -1.8613281, 0.5439453, 0.014846802, 0.07763672, 0.14709473, -0.11975098, -0.49169922, 1.0429688, 0.01209259, 0.65234375, 0.65722656, -3.59375, -2.3007812, 2.4472656, -2.4667969, -0.67529297, 2.0976562, -1.8085938, -0.94140625, 0.6723633, -0.1907959, -1.3720703, 1.4384766, -2.3671875, 0.34765625, 0.29003906, -2.3925781, 1.1572266, 0.9042969, -0.84521484, 0.8100586, 1.3603516, 3.25, 0.19165039, 0.4560547, 1.0625, 1.6630859, 0.22998047, -3.078125, -0.6230469, 0.5136719, 1.9892578, 0.29174805, -2.1738281, -0.6113281, -2.5976562, -1.5410156, 0.28393555, -1.9238281, 1.3740234, 0.76953125, 0.37182617, 1.0078125, -0.92285156, 0.23303223, 0.85546875, -0.36547852, -0.6020508, 1.1855469, -0.8881836, 3.5449219, 2.0527344, -1.2050781, -1.4091797, -0.86865234, 0.7392578, 3.640625, -0.2956543, 1.3027344, -0.4946289, -0.92285156, 0.8642578, -1.6611328, 1.6728516, 0.66308594, -0.81640625, 0.13659668, -1.0957031, 1.9306641, -1.8037109, 0.4555664, 1.7412109, -0.6586914, -1.0195312, 2.4414062, 0.58251953, -3.0800781, 0.17578125, -1.1435547, 0.85009766, -1.7890625, -1.7392578, 0.78222656, -2.3359375, -0.48754883, -0.6933594, -1.9287109, -3.5488281, 1.6230469, -0.14196777, 0.35302734, 0.50341797, 2.2851562, -0.5800781, 0.59228516, 0.9082031, -1.2822266, -0.6801758, -0.34887695, -2.5019531, 0.7446289, 0.4267578, -1.5195312, 0.6542969, 1.5625, 0.6503906, -0.45825195, 1.0537109, 1.4814453, 2.3457031, 0.28125, 2.2382812, 2.7890625, 1.5439453, 2.1113281, 1.0078125, 3.3066406, 1.9042969, -0.5371094, 1.2753906, 1.6054688, -0.4951172, 1.3564453, -0.43945312, 0.3564453, -1.1689453, 0.41186523, -0.27172852, 0.39648438, 1.9960938, -2.9960938, -0.6791992, -0.6645508, -0.30517578, -4.1054688, 0.4584961, -2.1308594, 0.03616333, 1.4638672, 1.2773438, 1.7880859, 2.6171875, -0.6040039, 0.20715332, 0.4074707, 3.8378906, -2.1757812, -0.5439453, -0.18896484, -1.4892578, 0.35742188, 0.92578125, 2.2285156, 0.40405273, 1.4433594, 0.6621094, -0.3840332, 0.58203125, 1.0136719, -2.0097656, 0.9663086, -0.26391602, 2.1816406, 2.9882812, -1.9414062, 1.8242188, 0.27270508, -2.8886719, -3.5546875, 2.5371094, 1.234375, 0.34350586, -0.041290283, -4.4414062, 0.8208008, -0.3659668, 0.1508789, -1.828125, 1.1367188, -0.35083008, -1.9648438, 1.0537109, -0.6035156, -1.4384766, 2.9296875, 1.4902344, -2.0527344, 1.7978516, 2.0820312, 2.046875, -0.11828613, 1.8945312, 0.6357422, 0.9536133, -1.8984375, 3.1601562, 0.5541992, -2.21875, -0.12322998, 2.59375, 1.0166016, 1.0859375, -0.34375, -0.6484375, 0.2919922, 1.3554688, -0.50927734, -0.4716797, -1.9580078, -0.5078125, -0.13415527, -0.4699707, 0.39746094, -1.7636719, 2.2792969, 2.3242188, -2.4257812, 0.3461914, 1.4785156, -1.2431641, 2.8300781, 0.9042969, -1.671875, -1.5810547, 0.078308105, 0.86035156, -1.5644531, -1.0878906, 1.6835938, 0.041809082, -0.32739258, -2.0703125, -1.5361328, 1.3955078, -0.31762695, -0.73046875, 0.41259766, -1.0507812, -0.9970703, 1.2089844, -1.5039062, 0.70751953, 4.09375, 0.87890625, 1.0390625, -1.9140625, -0.7363281, -0.2770996, -1.7666016, -1.5380859, 0.60302734, 2.9628906, 1.0859375, 0.5991211, -2.1699219, -3.3769531, -0.5024414, -1.625, 3.0527344, -0.9536133, -1.4443359, 0.4189453, 0.6010742, 2.2441406, 0.26708984, 0.6333008, -0.72216797, 0.010368347, 1.8271484, -0.7597656, 0.6977539, -0.55371094, 0.75878906, 1.0869141, 3.4550781, 2.0839844, 0.72998047, -0.5830078, 2.0546875, 0.3046875, -1.6337891, -0.12237549, -0.54248047, 0.3552246, 1.65625, 0.50634766, 2.1035156, 1.5859375, -0.8486328, -0.70166016, -0.51171875]}, "B01AH5M8M0": {"id": "B01AH5M8M0", "original": "Brand: Concord\nName: Concord Banjo 16\u201d Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove\nDescription:

This Concord single burner portable Gas Stove is built like a tank..

Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10\u201d single burner head (replaceable), and stand.

This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you're ready to go. It also has removable legs for easy storage.

Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




Measurements: Burner Stand 16.5\" Wide x 12\" Height

Burner head is 10\" Wide.



Concord burners - make every outing count.
\nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x12\"(Height).\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "embedding": [-1.1796875, 1.359375, 2.0214844, 1.5449219, -0.76220703, 0.49023438, 1.9638672, -0.99560547, -3.1601562, 2.078125, 2.3144531, -0.53222656, 0.9350586, -1.2548828, -1.2910156, 1.2822266, 0.19824219, -0.7001953, -0.77685547, 1.5986328, 2.8066406, 0.48339844, 2.5390625, -1.4921875, -1.1533203, 1.1669922, 1.8369141, -3.125, -1.9794922, -2.5644531, 1.0634766, -1.2939453, 0.84814453, 2.34375, -2.2050781, -0.7392578, -1.5253906, -0.26123047, -3.4140625, -0.2770996, -0.5703125, 1.8378906, 3.78125, -0.47802734, -2.1503906, -0.8046875, 0.94140625, 0.6767578, -1.4785156, 0.7182617, 0.057678223, -1.5820312, 0.45947266, 0.03375244, -1.1806641, 1.2011719, 0.2746582, -2.1738281, 1.2705078, 0.70996094, 2.6074219, 1.8193359, -1.6757812, 1.3085938, -1.609375, -0.21252441, 0.58251953, 0.80029297, -0.7607422, 0.90771484, 2.9863281, -0.7661133, -1.0009766, -0.63427734, -0.5102539, 0.1307373, -3.9414062, 1.1699219, 2.234375, 0.35083008, -1.6591797, 1.171875, 2.8984375, -0.9111328, -1.3134766, 0.9038086, -0.18322754, -1.7207031, 0.10321045, 0.8876953, -0.5859375, 2.28125, -0.8515625, -2.8242188, 1.9082031, -2.390625, 1.0058594, 0.9873047, 0.14318848, 1.4990234, -1.0322266, -0.25585938, -1.8339844, 0.1796875, -3.5683594, -1.2685547, 2.8691406, 0.7416992, -2.6152344, 1.7548828, -1.9833984, -1.4921875, 1.2822266, -0.103149414, 1.8457031, 0.06451416, -2.0488281, 2.7519531, 2.1816406, -0.66259766, 3.859375, -0.23474121, 1.0537109, -0.60546875, -0.33642578, 1.0673828, -2.109375, 0.95214844, 3.9511719, -2.0273438, -0.5805664, -1.0439453, 3.4765625, 0.14147949, -1.3505859, -2.2070312, -0.1048584, -2.6113281, -3.0488281, 0.73828125, -3.3261719, 1.9121094, 0.65283203, -0.6044922, -3.4277344, -1.6015625, -0.5703125, 1.3798828, 0.81884766, -2.7089844, -0.81933594, -2.4121094, -0.38842773, -2.125, 1.4833984, 0.5180664, -0.3569336, -1.1484375, 3.2851562, 0.7890625, 1.7158203, -1.21875, -1.6914062, 3.1777344, -1.3613281, -0.20202637, 1.6083984, 2.2246094, -2.6640625, 0.17138672, 0.32299805, -0.45751953, 0.10784912, 0.40527344, 1.3925781, -1.5449219, -2.9355469, 2.8339844, 0.97558594, -0.64746094, -2.7324219, -4.0742188, 2.3613281, 0.5395508, -0.07019043, -0.8144531, -0.075683594, 0.35595703, 0.42016602, -2.9941406, -2.2695312, 1.1308594, -0.17749023, -0.39404297, -0.011367798, -1.7910156, 0.066589355, -1.8535156, -0.009841919, 1.8378906, -0.15771484, 0.46044922, -0.050628662, 1.2324219, -1.8681641, -1.1318359, -0.96875, -0.31567383, 1.3173828, 3.9980469, 1.7958984, -1.4384766, 2.7988281, -0.11871338, -1.6611328, -0.20141602, 1.7451172, 1.5722656, 0.77490234, 1.5996094, -0.12902832, -1.8173828, 2.0019531, 2.6152344, 1.4677734, 1.9755859, 1.3671875, -1.6669922, -1.7138672, -1.5556641, 1.515625, -0.109558105, -0.6582031, 1.8388672, -0.15063477, 3.1855469, 1.4121094, -1.7832031, 0.14343262, -0.5053711, 1.3193359, -0.42944336, 0.40795898, -0.5908203, -2.9726562, 1.7617188, 0.2866211, 1.2431641, 3.3671875, 1.5839844, -1.3583984, -2.296875, 0.27856445, -0.70166016, -0.80566406, -0.8955078, 0.6503906, 0.91064453, -0.54345703, -3.2734375, 3.5488281, 2.3085938, -0.48120117, -0.38623047, -1.0888672, -1.2597656, 2.0488281, 1.4453125, -1.7216797, 1.2910156, 1.1611328, 0.4362793, 4.8085938, -1.8798828, 0.04977417, -1.5380859, -0.053222656, 3.9160156, -0.36523438, 1.8945312, 1.6240234, -2.2109375, 2.4433594, -3.5097656, 0.85058594, 2.3027344, 2.9492188, -0.42944336, -0.38427734, -0.42211914, 5.8867188, -0.6972656, -2.5390625, 3.6816406, -2.2402344, 1.1035156, -0.7705078, 0.6381836, 1.9960938, 0.35424805, 0.3959961, -0.6401367, -1.5009766, 0.7705078, -1.4345703, -3.3496094, 1.0449219, -2.1660156, 0.21459961, 0.5727539, -0.06604004, -0.9506836, -0.76416016, 2.5839844, -2.7773438, 1.2138672, 2.0097656, -3.625, 0.84375, 2.4414062, 1.4199219, 1.4160156, -1, -0.5654297, 0.8652344, 0.1027832, -0.19445801, 0.9536133, 0.92871094, -0.02722168, -0.4248047, -1.1054688, 0.35424805, -2.9257812, -2.3476562, 0.29077148, 0.9692383, -4.1640625, 0.21459961, -1.5332031, -0.8774414, 2.0976562, -3.2109375, -0.31518555, -1.453125, -1.5546875, -0.19628906, 0.23950195, -1.2929688, -0.28051758, 1.5419922, 0.6855469, -1.3955078, -2.4609375, -0.87841797, -1.9111328, -0.2788086, 0.06945801, -0.3330078, 2.8398438, -0.07940674, 0.47705078, -0.9941406, 1.1513672, -0.73583984, -2.1132812, 0.4333496, -2.84375, -0.9819336, -2.5546875, -0.93603516, -0.1706543, -0.59716797, -2.9394531, 0.021240234, 1.3925781, -0.73828125, 4.5351562, 0.35131836, 0.54003906, -0.08538818, -0.38964844, -0.37402344, -1.6083984, -4.2148438, 0.9458008, -0.06335449, -1.1640625, -2.5917969, -1.9833984, 0.18786621, -1.2353516, -0.27172852, -1.7783203, -0.39990234, -0.75878906, -0.75390625, -1.4121094, -1.0683594, -0.30126953, 0.17919922, -1.671875, -3.453125, -1.2265625, -1.2763672, -0.99853516, -0.17871094, 1.3486328, 0.1895752, 1.4472656, 1.328125, 2.0605469, 0.85009766, 0.06762695, -0.40942383, -3.0019531, 0.41064453, 1.5722656, -0.15710449, 1.6171875, -2.0585938, -0.39135742, -2.9726562, -1.6845703, 1.6171875, -0.30297852, 1.5546875, 0.76708984, -0.9189453, 2.078125, 1.9912109, -0.9663086, -2.5546875, -1.6953125, 2.484375, -2.0761719, -1.4863281, 2.7070312, 1.8378906, -1.5507812, -0.37695312, 2.109375, 0.8457031, 1.9609375, 1.7041016, 2.7148438, -0.7597656, -0.19995117, 0.38305664, 3.2851562, 0.39257812, 1.3554688, -0.122924805, 0.1977539, 1.2539062, 1.7539062, -0.14941406, 1.2861328, 2.1269531, 1.9003906, 0.7001953, -4.6601562, -0.13647461, -0.62060547, 0.8935547, 1.0048828, 3.0078125, -0.54052734, -2.2402344, -4.2070312, 1.3300781, 2.0898438, 0.21936035, -0.2878418, 1.2324219, -0.07647705, 0.15063477, 0.48608398, 0.49389648, 0.7480469, -0.13317871, 2.2402344, 1.0712891, 0.036376953, 1.5556641, -0.6245117, 0.7939453, -1.5654297, -0.28857422, -1.4345703, -1.8876953, 0.6689453, 1.2919922, -3.3222656, -3.4003906, 0.12438965, 2.3183594, -0.55078125, 3.5976562, 1.7255859, -2.0820312, -0.6958008, -1.4550781, -0.97265625, 1.8203125, -1.6699219, -0.6274414, -0.98828125, -0.3413086, -1.7998047, 0.7597656, 0.67871094, 0.6333008, -0.8432617, 1.6376953, -2.8671875, -0.9848633, -0.48828125, -1.5625, -0.8413086, 1.3115234, -1.6318359, -0.4555664, -2.6640625, 3.9160156, -1.8544922, 0.30566406, 2.0449219, -2.2636719, 0.04373169, -1.4580078, -4, 1.6904297, -0.2536621, -0.4033203, 2.5625, -0.49194336, -1.0380859, 1.2783203, 0.105651855, -2.1894531, -0.4819336, -2.0273438, 1.609375, -3.0507812, -1.2207031, 2.5820312, 0.74658203, -2.8671875, -2.1894531, 0.42382812, -0.05126953, 1.2509766, 2.21875, -2.6855469, 0.91015625, -0.08691406, 1.0107422, -0.2088623, -1.2929688, 2.7304688, -0.2133789, -1.7890625, -2.2460938, -0.20605469, 1.2255859, -0.63134766, 0.7583008, 2.09375, 1.1347656, -1.9462891, 0.3623047, 1.8242188, 2.0722656, -0.34570312, -1.8359375, -1.2304688, 0.6791992, -2.2597656, 0.6713867, 0.7939453, -3.8222656, -2.2851562, 0.84814453, 0.19567871, 2.1679688, 2.4238281, -0.6357422, 0.35107422, -0.105773926, 1.1542969, -2.2734375, -0.36865234, 0.55908203, -0.7128906, -1.7597656, 1.9970703, -2.7753906, -0.49169922, -1.5283203, -0.13720703, -2.3554688, 3.2519531, 1.7294922, 1.2744141, 1.7177734, -1.4882812, -1.7958984, 0.63671875, 0.73828125, -0.049072266, 1.9003906, -1.0410156, -0.8076172, 1.9130859, 1.7255859, 0.007160187, -1.671875, 1.6904297, -1.6123047, -2.0019531, -0.3232422, 0.5834961, -2.5839844, 0.17565918, 1.1894531, -1.5458984, 2.4882812, -3.2070312, -0.64501953, -0.88720703, 1.2841797, -1.9667969, -0.4777832, 0.6040039, 0.07183838, 0.57470703, -0.052337646, 0.66503906, -0.3605957, 2.5351562, 0.0635376, 2.265625, 2.078125, 0.6982422, -0.67529297, 0.05166626, -0.3996582, -0.9296875, -0.59814453, 0.48754883, 0.23327637, 3.4277344, 2.1738281, -2.1054688, 2.8925781, 0.5048828, -1.7675781, -2.7011719, -0.07232666, -0.29296875, 2.1992188, 1.6289062, -1.9326172, 0.13452148, 4.4023438, -0.89208984, 1.8320312, -0.7807617, -1.3095703, -0.11608887, -2.3105469, -1.2324219, -0.8901367, -1.5820312, -0.048309326, -1.8623047, 0.4152832, -1.5068359, 0.13183594, 2.2070312, 0.3581543, -2.2558594, 3.2832031, 0.16210938, -0.47460938, -2.1738281, -1.6621094, -2.8144531, 0.88378906, 1.4472656, 1.2470703, 3.0664062, -0.90283203, 1.0244141, -1.9199219, -1.4345703, -0.89746094, 1.5380859, -0.96875, -0.34594727, 2.0859375, -0.87890625, 2.0351562, -1.6015625, -2.2226562, -0.97314453, 1.6298828, 0.8515625, -1.8046875, -1.0742188, -1.8417969, -3.0175781, -4.1132812, 0.060272217, 2.4941406, -0.21081543, -0.4428711, 0.22924805, -0.6015625, -1.7587891, -0.18701172, -0.37475586, -4.0078125, 0.2421875, 1.1972656, -1.1142578, -0.5527344, -0.032196045, 0.053894043, 0.8120117, 0.5888672, -1.1259766, 0.12335205, -2.6640625, 0.63671875, 1.078125, -1.5029297, 1.3320312, -0.12915039, -0.9682617, 1.2138672, 3.5390625, 0.57666016, 0.75, 2.0097656, -3.9765625, -0.5419922, 1.2285156, -0.101257324, -0.10217285, 2.1308594, -1.2890625, 1.7509766, -1.8164062, 0.19543457, 1.0537109, 1.8671875, 0.5493164, 0.92529297, 1.5029297, -1.4375, 0.5571289, -0.78515625, 1.7197266, 2.0234375, -0.7421875, -1.2324219, -2.2363281, -1.1943359, 1.9453125, -0.8964844, 0.50439453, -2.8144531, 1.4667969, 1.2021484, 0.2602539, 0.23376465, 0.7319336, -1.3417969, 2.7089844, 1.0654297, -1.2138672, 2.5820312, 2.2226562, -1.3505859, -3.0390625, -0.5961914, 1.8720703, -0.7729492, 1.6640625, -1.953125, 1.5488281, -2.1484375, 1.0595703, -0.19274902, 1.9589844, 1.1660156, -0.027359009, -2.0742188, 1.9492188, 2.875, -0.5161133, 0.8857422, 0.44921875, -1.6621094, -1.4414062, 3.5976562, 1.5068359, -0.83496094, 0.9589844, -2.2265625, 2.140625, -0.0049209595, -0.28759766, 1.5537109, -0.90185547, -0.7705078, -2.0859375, -0.8017578, -2.1972656, 1.7265625, 2.0683594, 0.6767578, 0.44970703, 0.7080078, 0.12939453, 1.2128906, 0.6538086, 2.2167969, 0.40039062, 1.4541016, -1.3320312, -0.4428711, 2.65625, -2.6484375, -0.12854004, 2.8066406, -0.39697266, -0.72265625, 2.4628906, 0.12841797, 2.8554688, 1.9160156, 1.3173828, 0.44506836, 1.9208984, 5.5703125, 2.1015625, 1.7783203, 1.5537109, 1.0478516, -1.8388672, 1.8515625, 2.5390625, -1.2929688, -1.3339844, 0.28564453, -0.7026367, -0.17089844, -1.2861328, 0.46704102, -0.12976074, -6.0703125, 1.7089844, 0.3815918, 2.6347656, -0.49169922, 0.055480957, 0.08081055, -0.5317383, -0.2211914, -1.4511719, 0.08795166, -1.5009766, -0.16308594, -1.0292969, 0.3815918, 1.5722656, -2.9765625, 1.2988281, -1.3916016, -2.6835938, 0.14648438, 0.8227539, 0.96191406, 1.6044922, -0.33398438, 3.1738281, 0.8046875, -6.9737434e-05, 1.8662109, -1.5507812, 1.9550781, 0.6542969, 1.9169922, 0.6586914, 0.09277344, 2.453125, -2.8242188, -3.1835938, -2.9824219, 2.8671875, 0.85253906, 1.0205078, 1.6464844, -0.6430664, 3.2441406, 1.4736328, 1.2041016, -2.2324219, 2.1015625, -1.2109375, -0.3059082, -2.3730469, 1.7871094, -1.4755859, 2.0292969, 2.7734375, -1.8457031, 1.0019531, -0.07849121, 2.4707031, 1.3828125, 0.59228516, 0.6933594, 0.62109375, -2.1015625, 1.0576172, 1.2001953, -1.734375, -0.83496094, 2.5253906, 1.7509766, 0.43969727, 0.08251953, -0.3310547, 0.34057617, -0.81396484, 0.9291992, 0.62402344, -1.7958984, -2.2988281, -0.8930664, -0.18847656, -1.234375, -1.8242188, 1.4345703, 2.1054688, -2.0683594, 0.9267578, 0.8876953, 0.028533936, 0.34716797, 1.2373047, 0.5805664, -0.09820557, -1.6669922, -0.0032196045, -2.5039062, -1.8164062, 0.5371094, 0.08300781, 3.1347656, -0.78271484, 0.9604492, -1.5761719, 1.0839844, 1.609375, 1.4111328, -1.5244141, -0.003944397, 0.328125, 0.25805664, -1.4326172, 3.3691406, -1.2285156, 0.47851562, 0.15356445, -2.1699219, 0.2939453, -2.2597656, -1.5244141, 1.875, 1.9472656, 1.4257812, 2.0820312, -1.8779297, -3.3476562, -2.40625, -1.1123047, 1.4931641, 1.2734375, -0.56640625, 2.0449219, 0.73339844, 1.6679688, -0.72558594, -1.3173828, -0.36523438, 1.4414062, 2.0742188, 0.3930664, 1.8613281, 0.0040397644, 1.8339844, 0.048858643, 3.984375, 1.1054688, -0.34472656, 0.33422852, 1.5800781, 1.0966797, -3.5410156, 1.3339844, -2.78125, -0.70703125, -0.13354492, -0.81396484, 3.3066406, 0.5566406, -1.0478516, -1.2763672, -2.2832031]}, "B07KM2GSW7": {"id": "B07KM2GSW7", "original": "Brand: ROVSUN\nName: ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing\nDescription:

75,000 BTU Outdoor Propane Stove
Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

SPECIFICATON
Material: Cast Iron
Output: 75,000 BTU
Burner Diameter: 10.24 inch
Hose: 47.2 inch
Dimension: 15.7\"L x 15.7\"W x 29.9\"H

\nFeatures: 75,000BTU \u2605 Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time.\nQUICK ASSEMBLY \u2605 Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7\u2019\u2019 x 15.7\u2019\u2019. ONLY works with propane, any other gas is not available.\nEASY OPERATION \u2661 Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow.\nSPACE-SAVING \u2661 Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height.\nSTURDY FRAME \u2661 This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.\n", "embedding": [-1.9169922, 1.6025391, 2.2695312, 2.0136719, -0.31176758, 1.9082031, 2.0722656, -1.8525391, -2.1738281, 1.7392578, 0.6796875, -0.8671875, 0.049957275, -2.875, -0.029937744, 1.5869141, -0.47851562, 0.9526367, -0.45239258, -0.097229004, 1.2900391, 1.0654297, 2.9042969, -0.40649414, 0.5395508, 0.53759766, 2.4335938, -3.21875, -1.8271484, -0.7373047, 1.9863281, 0.89501953, 0.97021484, 2.0371094, -2.5664062, -1.5712891, -2.2089844, 0.8774414, -3.2851562, 0.044128418, -0.07696533, -0.07312012, 1.2578125, 1.7138672, -2.1855469, -0.7739258, 1.2880859, 0.20422363, -0.68652344, 0.47094727, -0.95654297, -1.1269531, -1.1416016, 1.2958984, -2.7207031, 0.5776367, 0.5595703, -2.3925781, 1.5009766, 0.9765625, 0.20690918, 0.31518555, -2.296875, 0.8754883, -0.63378906, 0.02671814, 0.2487793, 0.7783203, 0.043426514, -0.65771484, 2.7226562, -0.8310547, -1.4482422, 0.79052734, -0.4597168, -1.3652344, -2.4628906, 0.50146484, 4.421875, -0.39013672, -2.8632812, 1.8779297, 2.9824219, -0.32861328, -1.6826172, 0.86621094, -1.6728516, -0.8227539, 0.77197266, -0.10455322, -0.94091797, 3.2363281, -2.7128906, -3.1699219, 0.8798828, -0.6040039, 1.2275391, 0.7006836, -0.63720703, -0.3942871, -0.39086914, 0.15258789, -0.5541992, -0.9111328, -1.1787109, -0.3256836, 1.6025391, 0.43115234, -2.8339844, 1.1054688, -2.8007812, -0.2536621, 1.6669922, -0.76953125, 1.8076172, -0.8540039, -1.7080078, 1.0732422, 3.7539062, -0.05239868, 3.6757812, 0.46484375, 1.0800781, 0.1385498, 0.0284729, 1.6162109, -0.5131836, 0.6586914, 3.0625, -1.0605469, -0.76708984, -2.7070312, 2.0605469, -0.54833984, -0.006877899, -1.0009766, -1.1552734, -3.1875, -4.8125, 0.18188477, -4.4335938, 0.77441406, 1.5205078, -0.5756836, -4.5195312, -0.86376953, 0.54345703, 1.5498047, 0.7583008, -2.4316406, 0.1875, -0.7573242, 0.53222656, -2.4082031, 1.1894531, -0.4885254, -0.9838867, -0.7080078, 1.9609375, 0.90283203, 1.1328125, -2.4160156, -0.7080078, 2.5605469, 0.54003906, -2.0820312, 0.31835938, 0.90625, -1.4794922, 0.83496094, 0.81640625, -1.9980469, -0.3474121, 0.7529297, 1.1279297, -1.6181641, -1.8222656, 3.4648438, 2.0253906, -1.671875, -3.0800781, -1.6474609, 1.7558594, 2.9160156, -0.6640625, 0.26367188, 0.13574219, 0.26000977, -0.33520508, -1.3330078, -0.9838867, -0.48706055, -0.09631348, -0.5571289, 1.2207031, -2.390625, -1.8779297, -2.65625, -1.0400391, 1.7626953, -1.0302734, -0.19726562, 0.11199951, 0.5732422, -3.5800781, -0.49658203, -0.58496094, -0.69140625, 1.1308594, 1.4433594, 0.98779297, -1.3115234, 3.1894531, 0.13806152, -1.2255859, -0.75390625, 2.578125, 2.3847656, 2.0585938, 2.1445312, -0.06903076, -0.4194336, 1.8232422, 1.0234375, 0.86083984, 2.0664062, 0.14099121, -0.088012695, -1.78125, -0.3581543, 4.4414062, -0.25146484, -0.6772461, 0.64453125, -0.9501953, 2.7695312, 2.2363281, -0.031433105, -0.38061523, -1.5, -0.08282471, -2.703125, 0.46118164, 0.3540039, -0.9350586, 0.69433594, -0.53222656, 1.2753906, 2.8007812, 0.20532227, -2.0410156, -0.82910156, 0.47021484, -1.7714844, -0.64453125, -1.0654297, 1.1943359, -0.81396484, -1.4238281, -1.4267578, 2.4472656, 1.8876953, -0.6645508, 1.2421875, -1.6953125, -1.2275391, 2.2324219, 1.8115234, -2.421875, -0.8154297, -0.31835938, 1.9404297, 4.0703125, -0.04647827, 1.6611328, -1.5537109, -1.1552734, 3.9433594, 0.10192871, 2.9960938, 0.54833984, -3.0117188, 2.0566406, -2.2050781, 1.4482422, 1.2128906, 2.7324219, 1.6025391, -0.67578125, 1.2353516, 6.0273438, -1.0830078, -2.7519531, 2.7382812, -1.15625, 0.1652832, 0.8823242, 1.2529297, 1.3037109, -0.46484375, 1.5849609, -1.3691406, -1.359375, 1.2128906, -1.9609375, -2.2832031, 1, -3.8320312, 0.5151367, 1.1464844, -1.1376953, -2.3242188, -1.4628906, 1.3896484, -1.5849609, 0.6958008, 2.6992188, -3.109375, 1.703125, 1.9072266, -0.27172852, 0.44555664, -0.7895508, -2.1855469, 1.2412109, 1.0986328, -0.025497437, 1.5859375, 0.31323242, -0.47436523, -1.4091797, -2.5195312, 0.28588867, -1.9560547, -2.5527344, -0.5654297, -2.7753906, -2.6367188, -0.18005371, -1.3408203, -0.88134766, 0.72216797, -2.3164062, -0.9267578, -1.2294922, -3.234375, -1.1123047, -1.4453125, -1.3359375, 0.203125, 1.0126953, 1.2431641, -0.15527344, -2.65625, -0.640625, -0.16137695, -1.2841797, -0.52978516, -0.9428711, 0.044830322, -0.81933594, -0.67041016, -0.14208984, -0.044128418, 0.65625, -2.0898438, 0.58251953, -3.828125, 1.5761719, -0.67822266, 0.17456055, 0.021636963, 0.6245117, -2.8710938, -1.6259766, -0.23266602, -0.4243164, 4.4609375, -1.0048828, 1.8466797, -1.3818359, -1.1894531, -1.0205078, -2.2128906, -3.6660156, -0.31835938, -0.49145508, -2.5566406, -0.93066406, -3.6132812, 0.61328125, -1.2099609, -0.88134766, -0.5366211, -0.18359375, -0.45532227, 0.21813965, -0.6376953, -0.6435547, 0.11151123, 0.20336914, -0.80078125, -1.4404297, -2.9238281, -0.01927185, -0.3305664, 0.82128906, 0.8803711, 1.6640625, 0.49609375, 1.1396484, 1.7285156, 0.7734375, 0.20568848, -1.4765625, -3.2304688, 2.5410156, 2.2988281, 0.37670898, 2.4394531, -1.9287109, -0.26782227, -1.4033203, -0.54833984, 1.4130859, 0.42211914, 4.375, -0.59472656, -1.3886719, 1.1064453, 1.9501953, -0.42944336, -1.9443359, -0.057037354, 4.2109375, -2.5136719, 0.0657959, 2.84375, 2.2988281, -2.8457031, 0.20031738, -0.25341797, 1.3369141, 2.3476562, 1.2832031, 0.2692871, -0.0070228577, -1.3095703, -1.4375, 2.2285156, 1.0263672, 0.29638672, -0.98876953, -0.15466309, 0.8305664, 0.7290039, 1.7958984, 1.0673828, 1.3037109, 2.0097656, -0.12390137, -0.5908203, -0.10827637, 1.1513672, 0.65966797, 1.9208984, 3.9316406, 0.06866455, -0.43969727, -2.125, 0.123046875, 1.3222656, -1.8662109, 0.94873047, 1.5107422, 0.77685547, 0.79345703, -0.20532227, -0.84716797, 0.28564453, -0.9555664, 1.7548828, 0.84033203, -0.484375, 1.7412109, -1.3994141, -0.021316528, -1.8886719, 0.17834473, -2.1367188, -1.3544922, 1.3857422, 0.28735352, -2.3710938, -1.3583984, 0.17980957, -1.4345703, -2.3710938, 4.5039062, 2.4726562, -1.0498047, -0.7421875, -0.5732422, -0.42041016, 2.5214844, -1.0449219, 0.4099121, -0.6645508, -0.6020508, -0.8598633, -0.29833984, 1.6386719, 2.484375, -1.171875, -0.17614746, -2.6582031, 1.8583984, -0.12976074, -1.7490234, -0.8618164, 2.046875, 0.23913574, 1.8505859, 0.14624023, 3.9882812, -2.1953125, 0.2208252, 1.6308594, -2.5761719, -0.9116211, -2.0839844, -3.71875, 0.8852539, 0.60253906, -0.6279297, 2.8574219, -1.0234375, -0.69189453, -0.19555664, 1.6582031, -1.4277344, -1.3544922, -1.9111328, 1.6855469, -2.9160156, 0.79052734, 0.26220703, -0.082336426, -1.4853516, -1.7167969, 0.25976562, 0.9814453, 1.25, 2.5917969, -2.7070312, 0.93359375, -2.0273438, -0.3215332, -1.0634766, -0.48901367, 1.7109375, -1.1552734, -0.4230957, -1.8457031, 1.2392578, 1.8837891, -0.34765625, 0.27514648, 2.7382812, 1.3105469, 0.7573242, 0.65625, 1.5048828, 2.4316406, 0.40161133, -2.78125, -2.46875, -0.57910156, -1.8027344, -0.14709473, -1.0283203, -0.83984375, -1.0439453, 1.5322266, 0.86035156, 0.79345703, 1.2177734, 1.4453125, -1.1494141, 0.8129883, -0.28271484, -1.5517578, -0.7319336, 0.21191406, 0.38256836, -2.0058594, -0.12866211, -1.25, -1.4003906, -0.59033203, 0.08099365, -0.72314453, 2.9667969, 1.2587891, 1.1582031, 2.6757812, -0.6850586, -1.7402344, -1.1396484, -0.14025879, -0.40698242, 1.1552734, 0.67822266, -0.22668457, 3.0898438, 1.0849609, -1.4443359, -1.1728516, 1.4296875, -1.2880859, -0.029769897, -1.1474609, 2.109375, 0.046875, -0.58154297, 1.5449219, -0.8359375, 2.4199219, 0.49023438, -0.3659668, 0.09234619, 0.46606445, -3.2714844, -0.4868164, 0.24841309, -0.4177246, -0.19213867, 0.3918457, 0.8203125, 0.9580078, 2.2382812, 0.69970703, 2.8554688, 1.2294922, 1.875, -0.6923828, 0.87841797, -0.80078125, -0.10723877, 1.4980469, 0.86083984, 0.20703125, 3.9472656, 2.7773438, -0.12780762, 2.7207031, -0.25146484, -0.50341797, -0.82666016, -0.17956543, -1.3222656, 0.39379883, 0.46728516, -2.8164062, 1.1142578, 2.765625, -0.6850586, 2.4375, -1.3330078, 0.080566406, 0.6333008, -3.4628906, -0.74658203, -2.0820312, -0.19104004, -0.5004883, -2.1054688, 2.140625, 0.73583984, 1.6152344, -1.1240234, -0.91845703, 0.26098633, 2.2773438, -0.37524414, 1.6806641, -1.4658203, -1.3876953, -3.8027344, 0.97558594, 1.1699219, 0.15612793, 2.3417969, 0.89453125, -0.29223633, -1.3310547, -3.2128906, -1.3212891, 1.8662109, -1.3886719, -0.3034668, 0.8232422, 0.31103516, -1.0341797, -0.99072266, -2.3789062, -2.1054688, 2.1386719, 0.29467773, 1.0859375, 0.31860352, -0.79785156, -1.5253906, -4.8671875, -0.9086914, 2.3457031, -0.6484375, -1.1005859, -1.0869141, -0.27026367, -0.27490234, -0.121276855, 0.5185547, -2.5839844, 0.7998047, 0.35986328, 0.30737305, -1.5927734, 0.32592773, 0.5805664, 1.7988281, 1.0722656, -0.5571289, -0.61621094, -0.76708984, -0.78125, 0.24597168, -3.1816406, 1.3056641, 2.3164062, -0.3161621, -0.55029297, 3, -0.045684814, -0.10974121, 2.2558594, -2.1972656, -0.8515625, 0.041900635, -2.484375, 1.9658203, 0.4116211, -1.1025391, 0.69433594, -0.46557617, -0.76171875, 0.12322998, 2.2109375, 0.4321289, 1.6328125, 0.17089844, -2.5527344, 0.22680664, -1.5927734, 0.32202148, 2.7753906, -1.6806641, -1.5068359, -2.4335938, -2.828125, -0.68359375, -1.5458984, 0.36254883, -0.51464844, -0.115112305, 0.19311523, 0.6401367, 0.93603516, 0.4494629, -0.5131836, 0.61035156, 1.6787109, -1.4130859, 3.0195312, 0.80078125, -1.9521484, -2.859375, -1.9355469, 1.4794922, 1.6845703, 1.2021484, -0.8051758, 1.4199219, -0.08709717, 1.4599609, -0.32739258, 1.8037109, 2.2792969, 0.80322266, -1.7646484, 0.7607422, 2.3691406, 0.39770508, 0.5161133, 0.120788574, -1.28125, 0.16918945, 3.6933594, 1.859375, -0.027908325, 3.9277344, -1.2021484, 2.7695312, -0.484375, -2.4101562, 1.5644531, -0.85302734, -0.6010742, -2.1601562, -0.7548828, -1.3544922, 1.1884766, 1.6376953, -1.0771484, 0.6538086, 2.2597656, 0.29370117, -0.85302734, 1.4082031, 1.1337891, 0.0085372925, 2.4726562, -0.88671875, 1.1337891, 2.3964844, -0.60595703, 1.9091797, 0.9379883, -0.4741211, -0.26489258, 2.1074219, 0.5654297, 3.0664062, 2.0253906, 0.58984375, 2.6054688, 0.16821289, 3.4960938, 0.11016846, 1.8203125, 2.5507812, -0.22546387, -0.19421387, 1.9638672, 1.3193359, -2.1230469, -0.44335938, -0.58740234, 0.08642578, -0.68359375, 0.4699707, -1.1933594, 0.71777344, -4.7695312, 1.1162109, -1.671875, 1.7060547, -0.89453125, 2.1875, -0.9189453, -1.0263672, -0.29760742, 0.7290039, -1.7919922, -1.3583984, -0.21203613, -2.2695312, 0.05581665, 1.1083984, -3.8554688, 1.3144531, -1.3349609, -3.15625, 0.38671875, 1.3574219, 1.3994141, 1.3759766, -0.59472656, 1.2636719, 0.78125, -0.7182617, 2.5136719, -2.3945312, 0.76464844, -0.2770996, 3.6835938, 1.2519531, 0.796875, 1.9472656, -0.90625, -2.9179688, -3.1933594, 3.3574219, 1.3359375, 1.1357422, 1.7255859, -3.2910156, 2.40625, -0.6435547, 1.2041016, -1.5068359, 1.515625, -1.1552734, -2.4804688, -2.1386719, 0.54833984, -1.8652344, 3.2148438, 1.6103516, 1.1474609, 1.7392578, -0.06878662, 0.4284668, 1.265625, 2.5761719, -1.4501953, 0.7080078, -0.1270752, 1.5810547, 1.8330078, -2.8789062, -0.16320801, 1.9130859, 0.15942383, -0.037597656, 1.1972656, -0.67822266, 0.3647461, 0.16967773, -0.33789062, -1.0234375, -1.3115234, -2.1738281, -1.5927734, -0.7236328, -1.5595703, -2.1542969, 0.8227539, 1.3613281, -3.0410156, 1.3105469, 0.94433594, 0.15307617, 1.4296875, 1.6113281, -1.0107422, -0.29077148, -0.8852539, 1.2734375, -1.2333984, -3.1679688, -0.7504883, -0.34350586, 0.45483398, -0.16723633, 0.10656738, -0.67285156, -0.5576172, -0.50439453, 1.1191406, -1.0761719, -0.15454102, 1.3378906, 0.6118164, 0.72753906, 2.0800781, 0.30493164, 0.80566406, -1.2138672, -3.65625, 0.22851562, -1.0761719, -0.6401367, 2.0175781, 3.1132812, 0.5595703, 0.46289062, -1.484375, -3.1777344, -1.8525391, -0.6142578, 2.1816406, 0.19262695, 0.8881836, 0.8803711, 1.6777344, 2.2460938, -0.8803711, -0.7138672, -0.024459839, -0.54052734, 1.5244141, 1.6884766, 0.111816406, 0.53466797, 3.1835938, -1.3232422, 4.0664062, 1.8017578, -1.6025391, 0.62109375, 2.2636719, 0.63183594, -2.4277344, 1.7314453, -2.3027344, -1.2548828, 0.07684326, -0.41625977, 2.4355469, 0.73876953, -1.6035156, -3.0253906, -1.9482422]}, "B07RZTL6TK": {"id": "B07RZTL6TK", "original": "Brand: Linkool\nName: Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection\nDescription: Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
✔ Measures Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High
✔ Premium Oxford and upgraded PVC backed polyester fabric
✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
✔ Air vents reduce inside condensation and wind lofting
✔ Padded handles for easy fitting and removal
✔ All weahter protection
✔ All round drawstring bottom with cord locks for added security to make it won't blow away in the wind
\nFeatures: NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles\nDRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill\nDIMENSION:Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High, Fits standard 20 lbs cylinder propane tank for Weber grill\nPREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank\nMAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won't blow away in the wind.BE READY for anything Mother Nature can throw at you\n", "embedding": [1.5048828, 2.75, 3.4316406, -1.3925781, -0.36450195, -1.1904297, 0.15405273, -1.9267578, 1.4169922, 1.2060547, 0.5541992, 0.74072266, 0.49731445, -3.3789062, 0.77246094, -0.62158203, 0.8408203, 2.09375, 2.40625, 0.6875, 3.0683594, 0.41064453, 1.0888672, -0.73046875, 1.4560547, -0.5805664, 4.71875, -3.0273438, -1.6435547, 0.15063477, 0.8105469, -0.48608398, 0.34375, 1.6884766, -0.68359375, -0.9375, -1.3291016, 0.4404297, -2.9667969, 0.31298828, -3.5078125, -0.69873047, 2.640625, 0.8232422, -1.7900391, 0.47729492, -1.1376953, -0.4560547, -0.12963867, -0.95166016, -0.38867188, 1.8740234, 2.0898438, 1.1933594, -0.23291016, 1.3798828, 0.26953125, -1.3183594, -0.40625, 0.46020508, 1.2255859, -0.91308594, -2.890625, 1.4931641, 0.24499512, -0.6621094, -1.4667969, -0.05178833, 1.1953125, 2, 2.4414062, -0.009315491, 0.70654297, -0.68847656, 0.67285156, -0.72265625, -2.546875, 1.1259766, 1.515625, -2.2402344, 1.1953125, 4.6992188, -0.60791016, -1.3916016, -0.9667969, -0.33666992, -0.6303711, -0.22314453, 1.0068359, 1.2363281, -1.1181641, 1.0449219, -2.4101562, -5.7265625, -0.44506836, -0.49560547, 1.6884766, 0.82421875, 2.0878906, 0.95654297, 0.78027344, 0.67041016, -2.1855469, -0.16540527, -2.578125, -1.5039062, 1.8388672, -0.89990234, -0.8120117, -0.68066406, -0.6977539, -0.59716797, 2.4882812, -0.4543457, 1.4150391, 0.10583496, -0.9692383, -0.019470215, 1.1318359, 1.8759766, 4.3359375, -1.7539062, 0.8305664, -0.53027344, 1.0273438, 1.1015625, -0.17626953, -0.57714844, 2.7734375, -0.6503906, 2.2460938, 1.9824219, 0.2644043, 0.52783203, 0.9819336, -0.11895752, -0.6738281, -1.2207031, -1.6923828, 0.7080078, -1.4511719, -0.7895508, 1.6191406, -1.1171875, -3.7304688, -0.15393066, -1.8349609, 1.4511719, -1.5332031, -2.1933594, 0.484375, -1.7285156, -0.49169922, -1.1142578, 1.6015625, 0.12042236, 0.006881714, -2.8632812, 1.875, 2.6210938, 4.0703125, -0.13793945, 0.79541016, 0.46826172, 0.09613037, -3.09375, 1.0107422, -0.18896484, -1.9501953, 1.8964844, 0.52246094, -0.6352539, 0.029510498, 0.7792969, 0.29077148, -2.015625, 1.8427734, 1.4726562, 0.14794922, -0.61621094, -3.140625, -1.1064453, -1.046875, -0.109680176, 0.46435547, 0.7319336, -2.3261719, -0.8725586, 0.34765625, -1.0107422, -2.328125, 0.7446289, -0.38964844, -0.9042969, -2.5664062, -2.8867188, -0.8881836, -0.9897461, -0.4716797, 1.1240234, -1.5136719, -1.6210938, 0.5444336, 0.07519531, -2.7265625, 0.15454102, 0.9736328, 0.34277344, 0.8129883, 1.7783203, 0.25390625, -0.68115234, 1.4414062, 0.031402588, -1.1435547, -0.48706055, 2.6894531, 1.0732422, 1.9560547, 1.1103516, -0.40307617, 0.13696289, 0.33789062, 1.9296875, 1.2939453, 1.6289062, 0.6328125, 0.22241211, -1.7597656, -0.5698242, 0.92822266, 2.3769531, -0.5180664, 0.60839844, -1.0175781, 1.7636719, 0.026367188, -1.2148438, -0.36987305, 0.5732422, 1.0917969, -0.36694336, -2.1132812, -0.64404297, -1.1376953, 2.3671875, -0.52783203, 1.5263672, 0.95703125, -0.6274414, 0.3408203, -0.26635742, 1.0830078, -1.1464844, -0.94140625, 1.8203125, 0.5751953, 1.3759766, -0.69921875, -1.1933594, 1.2431641, 0.92333984, -0.45410156, -0.1673584, 0.19470215, 0.6538086, -0.41064453, -0.2644043, -1.3203125, 0.03640747, 0.25048828, 0.4753418, -0.74658203, -1.5048828, 1.4960938, 1.2617188, -1.5332031, 1.2207031, -0.9433594, 1.0488281, 1.2617188, -0.6611328, 1.0136719, -3.9882812, 1.8222656, 0.26123047, 2.28125, -0.7758789, -3.6601562, 0.81640625, 4.7695312, -0.7578125, -0.3461914, 0.7241211, 2.0371094, -0.37768555, 1.9472656, -1.6259766, -0.25146484, 0.17382812, -1.6064453, -0.030975342, -0.20593262, -0.97802734, 0.9663086, -0.33129883, 0.20678711, -1.7333984, -0.5107422, 1.7050781, 0.2680664, 0.3100586, -0.37597656, 1.4023438, -1.1738281, -1.0566406, 2.9453125, -2.875, 0.4946289, 0.9165039, -0.85253906, 0.8725586, -0.48120117, -1.0302734, -0.79296875, -0.008369446, -0.17529297, 1.4541016, 1.1025391, -1.0078125, 0.2614746, -2.1953125, 1.2285156, -0.7841797, 0.18139648, -0.27954102, -2.5839844, -1.0166016, -0.21081543, -2.6171875, 1.4609375, -1.1171875, -1.4501953, 1.6552734, 1.2148438, -1.5585938, -0.71777344, 1.4199219, -0.7807617, -1.4863281, 0.77197266, 1.515625, -1.2597656, -4.9609375, 0.17407227, 0.11846924, -1.8994141, -0.9116211, -1.7890625, 0.28710938, -0.07269287, 1.0693359, 1.5322266, 0.055267334, -0.23950195, -0.1673584, 0.7104492, -3.3886719, 0.51416016, -2.5136719, 1.4765625, -2.3476562, -1.140625, -2.3769531, -1.9716797, 1.2636719, -0.6582031, 3.1933594, 0.9267578, 0.67871094, -1.1484375, -1.0009766, 0.67871094, -1.2275391, -2.40625, 0.8852539, 0.16564941, -1.4941406, -1.0097656, -5.4453125, -1.4433594, -2.171875, -1.4707031, -0.06439209, -0.31689453, -0.5576172, -0.046936035, -0.21533203, -1.1523438, -1.3974609, 0.86621094, 0.24121094, -1.9960938, -0.9536133, 0.09436035, -0.5292969, 0.78466797, -1.4501953, 2.0625, -1.0234375, 0.4350586, 1.9453125, -0.48632812, 1.9433594, -0.08660889, -3.8886719, 0.6928711, 2.0917969, 0.021636963, 1.8330078, -1.8623047, -0.8120117, -1.75, 0.3071289, 2.3046875, 2.84375, 1.390625, 1.125, 1.1484375, 0.66259766, -1.0400391, 0.082458496, 0.83496094, 2.0175781, 4.28125, -1.703125, -0.061035156, 1.1347656, 2.6933594, -4.1796875, -0.5834961, 2.0839844, 0.17956543, 2.328125, 0.86035156, -1.4091797, -0.53125, 0.6928711, 0.94140625, 0.36254883, 1.0986328, 1.2880859, -0.064575195, 1.8222656, -0.46557617, 0.73583984, 3.1738281, 0.36987305, -1.0888672, 2.8710938, 1.3349609, -0.6791992, 0.18066406, -0.27734375, 0.24133301, 0.07647705, 2.2988281, -0.65966797, 1.9960938, -0.23022461, -1.2265625, 0.23803711, -1.9150391, 0.421875, 1.6933594, 1.3105469, -1.7685547, -0.8022461, -0.023910522, 0.60546875, -2.5566406, 2.1777344, -0.42919922, -0.94433594, 0.96191406, -2.1816406, -0.31713867, -1.6552734, 3.2734375, -0.88378906, -1.9130859, -0.15332031, 0.78759766, -2.3730469, -3.1445312, -0.8769531, -0.31835938, -1.7236328, 3.2402344, 0.92578125, -1.2880859, 0.8330078, -2.2910156, 2.3398438, 0.98339844, -0.16699219, -1.0800781, -0.8984375, 1.0917969, -1.6318359, 1.578125, 1.4755859, 0.99365234, -2.4785156, -0.23242188, -1.2333984, 1.3818359, 1.3056641, -0.79785156, -0.8486328, 0.026489258, -1.0732422, 2.2539062, 1.3505859, 2.4394531, -0.8457031, 0.78125, 1.5957031, -1.5917969, 0.18969727, -0.06945801, -3.6035156, -1.2910156, -0.7973633, -0.071777344, 3.1367188, -0.69628906, 0.80566406, 0.31933594, 0.52441406, -2.7714844, -0.65625, -2.5996094, 0.42797852, -0.39746094, -0.63671875, 1.1318359, 0.12792969, -2.8867188, -1.5673828, 0.33642578, -1.5791016, -0.63134766, 0.56933594, -0.59472656, 0.5336914, -1.0263672, -0.41357422, -0.9663086, 0.09051514, -0.71484375, 1.0527344, -1.1015625, -0.26586914, 3.7167969, 0.4074707, 0.10583496, 0.8330078, 1.9082031, 0.73046875, -1.5693359, 0.82910156, -0.7734375, 2.6464844, -1.3408203, -2.7695312, 0.061431885, -0.12634277, 1.4902344, 0.5620117, -0.78515625, 0.9736328, 1.0185547, 0.54296875, 0.119384766, 1.9091797, 1.2832031, 0.27978516, -1.6591797, 2.328125, -0.025650024, -1.7236328, -1.4101562, 0.21850586, 0.7519531, -0.18676758, 0.4855957, -2.984375, 1.6523438, 0.56103516, 1.2109375, -2.7148438, 2.3828125, 2.6972656, 3.4003906, 1.4277344, -0.6791992, 1.0273438, 1.1835938, 1.7109375, 0.58496094, -0.2775879, -0.13671875, -1.0947266, 1.5927734, 1.3261719, -1.4589844, -0.6171875, -0.22302246, -1.1083984, 0.8378906, -1.0732422, 0.88964844, -1.4609375, 1.0351562, -0.63964844, -1.9794922, 2.7851562, -1.7177734, 0.77001953, 0.17749023, -0.061431885, -1.3144531, 2.2363281, 1.3867188, 0.50390625, 0.94091797, -1.4833984, 0.025405884, -0.53515625, 0.82910156, 1.5898438, 0.5493164, -2.9863281, -0.8569336, 0.4819336, 0.36547852, -0.39038086, 1.2460938, 1.7958984, 1.9072266, 1.5576172, 0.18615723, 2.7011719, -0.6879883, 1.2333984, 1.0048828, -2.0253906, 0.42993164, 0.5263672, 0.51171875, 3.34375, -0.6669922, -3.4003906, -0.3022461, 0.75, -0.76220703, 1.9033203, 0.07128906, -1.5332031, 1.4072266, -2.0644531, -1.7324219, -0.94873047, -0.021377563, -0.18395996, 1.0673828, 0.8129883, -0.46166992, 0.8857422, 3.4804688, -0.8544922, -1.7685547, 0.13549805, -0.16552734, 0.10437012, -2.4433594, -0.77001953, -3.2226562, -1.0585938, -0.42626953, 0.56347656, 1.7148438, 0.37939453, 2.3398438, -2.4003906, 0.14978027, 0.17700195, 1.4492188, -2.5273438, -1.1855469, 2.9003906, -0.87158203, -0.70214844, -0.17565918, -1.3115234, -0.5913086, 1.4677734, 1.8017578, 0.60791016, -1.0244141, 0.67871094, -4.265625, -4.609375, -0.64208984, 0.14501953, -0.87841797, 0.8330078, -0.13928223, 0.014030457, 1.8535156, -1.5058594, 0.12597656, -1.8701172, 1.7216797, -0.80078125, -1.8408203, -0.15600586, 0.04473877, -0.14257812, 0.62841797, -0.017959595, 0.4501953, -1.4482422, -1.9375, -2.0039062, -0.19604492, -1.109375, -0.83691406, -0.31347656, -0.09246826, 1.4902344, -0.044433594, 0.6977539, -1.2490234, 0.98828125, -1.0527344, -0.8041992, 1.3876953, -2.140625, -0.7241211, 1.3544922, -0.76904297, 1.2910156, 1.0751953, 1.0361328, -1.5625, 0.6513672, 1.9208984, 0.28027344, 0.5463867, 0.6743164, 1.2822266, 0.6542969, 1.265625, 1.3808594, -0.62402344, 0.30566406, -0.9042969, -1.5175781, -0.027694702, -1.3691406, -2.0507812, -0.9995117, 1.0830078, 2.5097656, 0.14050293, -0.45507812, 2.078125, 0.3762207, -2.2734375, 0.63427734, -1.3974609, 2.9746094, 0.99365234, -2.6699219, -2.5449219, -2.7011719, 2.6738281, 1.0859375, -1.0029297, 0.49291992, -0.27441406, -0.76660156, 1.2265625, -0.32543945, 2.8300781, 0.11199951, 2.2480469, 0.20581055, 1.7431641, 3.2714844, -1.4765625, 1.5097656, 0.06970215, 0.9399414, -0.9033203, 0.80029297, 1.1533203, -2.78125, -1.5957031, -0.119628906, 0.43164062, 0.32641602, -0.6850586, -1.8261719, -2.1503906, 0.08959961, -1.4794922, -1.2822266, -3.7246094, 1.7490234, 1.046875, -0.14050293, 0.15856934, 1.1865234, 0.0064964294, 0.39379883, 1.6630859, 0.05947876, -1.1757812, -0.9892578, -0.7363281, 0.9980469, 1.4648438, -3.3652344, 1.4931641, 0.109802246, 2.2988281, -0.9824219, -0.4116211, 1.3505859, 1.3125, -0.28588867, 3.7226562, 3.8730469, 0.32421875, 0.9736328, 0.048095703, 2.0136719, 2.0820312, -1.7539062, 0.21472168, 1.5615234, 2.5039062, 3.6328125, -1.7148438, 0.0060577393, -0.6411133, -0.6586914, 0.5463867, 0.40454102, 1.5351562, -2.5546875, 1.1142578, -1.0302734, -0.45654297, 1.2392578, 0.82421875, -1.1083984, -1.9111328, 0.055877686, -0.42211914, 2, 0.053649902, 2.28125, 0.6513672, -1.0029297, 1.1953125, -1.6005859, 0.3017578, -1.8486328, -2.0214844, -1.625, 1.6992188, 2.2597656, 2.5, -0.9711914, 0.21789551, -0.056640625, 0.3935547, 1.9365234, -0.7480469, 0.3635254, -1.3828125, 2.3300781, 2.984375, -1.3769531, -0.03137207, 0.8017578, -0.6035156, -2.7695312, 0.5756836, 1.1308594, 0.89990234, 0.29345703, -2.7578125, 0.61621094, -2.578125, 0.16186523, -3.2617188, -0.6557617, -1.0644531, -3.6621094, 0.5756836, 1.0830078, -0.6923828, 2.8847656, 0.89697266, -0.06414795, 1.5957031, 1.0048828, 0.9140625, -0.74121094, 0.16992188, 0.25561523, 0.95996094, -0.40185547, 3.3085938, 1.4189453, -1.4873047, -0.70214844, 2.3320312, 0.8852539, 1.2832031, 1.7851562, -0.31201172, 2.078125, 0.42285156, -0.21020508, 1.4257812, -0.22485352, 0.61572266, -0.5786133, -0.17736816, 0.77197266, -0.28881836, -0.7675781, 1.4013672, -1.5732422, 0.065979004, 2.0332031, 0.8286133, 1.6142578, 0.26464844, -1.2099609, -1.1191406, -0.014595032, -0.14685059, -2.1875, -0.55566406, -1.5869141, 0.91308594, -0.34643555, -1.7714844, -0.6508789, -0.6245117, -1.0927734, -0.076416016, 1.1914062, 0.20666504, -1.2841797, 0.9296875, -0.88720703, 0.4716797, 1.0722656, 0.57421875, -0.7348633, -1.1210938, -1.9335938, 0.4597168, -0.8017578, -0.7866211, 0.8730469, 1.9873047, 0.38085938, 0.18408203, 0.8183594, -2.9101562, -0.32543945, -2.8085938, 1.765625, -0.3425293, -0.9951172, -0.37036133, 1.2089844, 2.703125, -1.5498047, -2.0742188, -0.19372559, 0.26123047, 1.5439453, -1.140625, 0.13659668, -0.76416016, -0.24291992, 1.8955078, 3.6054688, 3.3964844, -0.8286133, 0.22717285, 2.9882812, -2.9589844, -3.8417969, -1.2392578, 1.0400391, -0.08312988, -0.14575195, 1.6630859, 3.2167969, 0.31958008, -0.6381836, -1.9589844, -0.2166748]}, "B08H18XLP9": {"id": "B08H18XLP9", "original": "Brand: ARC Advanced Royal Champion\nName: ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU\nDescription: \nFeatures: \ud83d\udd25\u3010STURDY AND DURABLE\u3011The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable.\n\ud83d\udd25\u3010ADJUSTABLE BURNER\u3011200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods.\n\ud83d\udd25\u3010RELIABLE SAFETY\u3011The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use.\n\ud83d\udd25\u3010STABLE DESIGN)\u3011The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use.\n\ud83d\udd25\u3010PORTABLE DESIGN\u3011The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking\n", "embedding": [-0.8540039, 2.5488281, 2.4355469, 1.8310547, -1.7998047, 0.46875, 2.5546875, -0.8779297, -0.8388672, 1.5263672, 0.8354492, -1.2294922, 1.71875, -2.7050781, 0.19519043, 0.23120117, -0.51660156, 0.09637451, 1.5546875, 1.8847656, 0.8647461, -0.33496094, 3.0878906, -1.2822266, 1.7792969, 0.2783203, 2.2890625, -3.5625, -0.85253906, -2.5585938, 2.5996094, 0.70410156, 0.7207031, 0.9975586, -2.5878906, 1.7978516, -1.0419922, 1.390625, -3.1933594, 0.5097656, -0.40722656, -0.24682617, 1.8115234, -1.0634766, -2.234375, 1.0576172, 0.8300781, 0.21081543, -0.3256836, 1.0107422, 0.14733887, 0.2220459, 1.2353516, 0.32055664, -0.6557617, 0.6274414, 0.8652344, -2.2617188, 2.0625, -0.080322266, 3.6992188, 1.3632812, -2.1875, 1.4521484, -0.72314453, 0.24328613, 0.14672852, 0.12670898, -0.8803711, 0.09436035, 0.7807617, -0.17871094, 0.515625, -0.013244629, 0.3359375, -0.9838867, -1.8027344, 1.2148438, 2.5019531, 0.41381836, -3.1816406, 0.7602539, 0.099365234, -0.24731445, -0.94970703, 0.9658203, -1.2822266, -1.640625, 0.7871094, 0.46142578, -1.5654297, 1.4941406, -2.9121094, -3.3300781, 2.3964844, -0.7841797, 0.35253906, -0.6616211, 1.0029297, 0.41210938, -1.2021484, -1.5117188, -1.3623047, -0.42504883, -2.2089844, -0.68359375, 1.0546875, 0.82714844, -2.1015625, 0.60058594, -1.1269531, 0.91308594, 2.4179688, -1.3828125, 0.7167969, -0.86376953, -0.64208984, 0.29638672, 3.9335938, -0.119384766, 3.234375, -0.30810547, -0.019927979, -1.9912109, 0.17175293, 3.578125, -0.87109375, -0.4194336, 4.25, -1.4101562, 0.31323242, -2.3984375, 1.4755859, 0.22363281, -0.42651367, -2.1328125, -1.3115234, -1.4335938, -3.46875, 0.9868164, -3.6914062, 1.4101562, 1.1757812, -0.55908203, -3.6855469, -0.44018555, -1.4013672, 0.9082031, -0.14624023, 0.08532715, 0.67285156, -1.6572266, 1.109375, -2.4882812, 2.0390625, -0.000385046, -0.9169922, -3.0351562, 3.9824219, 1.8964844, 0.48120117, -2.8652344, -0.030776978, 2.7988281, -0.80810547, -1.2441406, -0.8569336, 2.2128906, -0.9824219, 1.671875, -1.0009766, -2.9003906, -0.4453125, 0.8198242, -0.10913086, -1.3427734, -0.40454102, 1.7207031, 0.58203125, 0.17102051, -2.3085938, -2.8320312, 1.8378906, 0.66064453, 1.5732422, -2.5742188, -1.6904297, -0.7729492, 1.0302734, -1.2353516, -3.0820312, -0.025390625, 0.5341797, -0.48291016, -0.33984375, -1.546875, -1.1181641, -2.7617188, -1.1123047, 1.6191406, -1.53125, -1.5732422, -0.26245117, 0.1484375, -3.7890625, -1.7275391, -0.53759766, -1.3681641, 1.7744141, 2.75, 0.7607422, -0.96728516, 1.5957031, -0.3569336, -0.6323242, -3.0996094, 1.1835938, -0.7602539, 1.7626953, 1.1943359, 0.7363281, -1.0849609, 2.1289062, 0.7709961, 0.059051514, 3.0859375, -0.9824219, 0.07873535, -0.4091797, -2.921875, 3.53125, 0.6933594, -0.7451172, 1.2421875, -1.7890625, 1.7578125, -0.7167969, -0.4025879, -0.11035156, -0.6665039, -0.18359375, -2.0585938, -0.25073242, -1.6191406, -0.2980957, -1.421875, -0.5258789, 1.7558594, 1.3378906, 0.8027344, 1.7695312, -0.6645508, 0.43725586, -0.25512695, 0.19189453, 1.2314453, -0.15588379, 1.6660156, -1.8642578, -3.0253906, 1.6943359, 1.5292969, -0.5395508, -0.48779297, -0.14196777, -0.6088867, 2.8496094, 0.86865234, -1.4726562, 0.8745117, -0.54003906, 1.0644531, 2.7011719, 0.17492676, 1.3378906, 1.421875, -1.8515625, 3.6953125, -1.1542969, 1.6533203, 1.4414062, -1.5771484, 2.1640625, -2.8164062, 0.73095703, 1.2939453, 2.7402344, -0.7338867, -2.2539062, 0.80908203, 4.203125, -1.125, -3.0351562, 0.59277344, -0.46069336, 0.043701172, 2.0703125, 1.8642578, 0.029937744, -1.8408203, 0.46533203, -0.24389648, 0.7578125, 0.6923828, -0.038330078, -1.4023438, 0.859375, -1.7929688, -0.035339355, 0.0039596558, -0.4272461, -1.3066406, -2.5527344, 0.89404297, -4.1054688, -1.9150391, 2.8261719, -3.3222656, 1.1630859, 2.9101562, 0.8676758, 1.1435547, 0.17333984, -1.3945312, -0.005756378, -0.20703125, -0.96484375, 1.1142578, 0.6147461, -0.46069336, -1.1708984, -1.7304688, -0.58984375, -3.1347656, -1.734375, 0.10845947, -1.2841797, -2.6464844, 1.5761719, -2.5566406, 0.5996094, 0.7578125, -2.7421875, 0.4543457, -0.51123047, -2.9023438, -1.578125, 0.21740723, -0.9345703, -0.9433594, 0.52197266, 2.0136719, -0.34692383, -3.5117188, -0.09503174, -0.60839844, 0.052825928, 0.24743652, -0.6323242, 0.8129883, -0.7529297, -0.017318726, 0.09100342, 1.2480469, 1.1533203, -2.7929688, 0.65527344, -4.4648438, 1.21875, -2.5371094, 1.5546875, -1.5458984, 1.2089844, -1.8359375, -2.5175781, 0.060668945, -1.3847656, 2.9609375, -0.56103516, 2.5722656, -0.5620117, -1.2451172, 0.3125, 0.8120117, -2.7480469, 1.2675781, -0.024993896, -3.1210938, -1.4677734, -2.4472656, 0.34960938, 0.80371094, 0.8964844, -0.0075302124, 0.29638672, -0.81152344, 0.46533203, 0.8930664, -1.34375, -0.30444336, -0.05532837, -1.3486328, -2.1191406, -1.0605469, -0.54785156, -0.8671875, -0.89453125, 0.7504883, 0.9916992, -1.0039062, 0.5625, 1.6386719, 1.5498047, 1.5058594, -0.8745117, -3.8164062, 2.1367188, 2.4433594, -2.3085938, 2.5507812, -3.1679688, -1.5898438, -2.0175781, -1.1318359, 2.4550781, 0.9658203, 2.8320312, 0.15661621, 1.2138672, 1.4511719, 3.3886719, -0.88134766, -1.8330078, -1.5419922, 3.0292969, -1.9970703, -1.2060547, -0.3100586, 3.609375, -2.90625, 0.85009766, 1.7324219, 1.0214844, 2.4003906, 2.4707031, 0.15441895, -0.11883545, -0.85058594, 0.75097656, 2.3320312, 1.1582031, 1.5839844, -0.3330078, 1.5458984, 0.7236328, -0.32641602, 2.4316406, -0.3166504, 2.9589844, 2.0625, 0.85791016, -0.29736328, 0.115478516, 1.2119141, 1.7744141, 1.5966797, 0.9238281, -1.4873047, 0.37182617, -1.2158203, 0.38085938, 1.4160156, -2.1738281, -0.085998535, -0.26660156, 0.46142578, 0.48413086, 0.13452148, 0.43847656, -0.66259766, -2.765625, 1.1191406, -0.1887207, 0.50683594, 0.26220703, -0.44067383, 1.1884766, -1.8007812, 0.89453125, 0.14050293, -1.0625, 0.032806396, 1.1796875, -0.9633789, -2.2128906, 0.40161133, -0.90966797, -0.9399414, 3.4648438, 2.0097656, -0.35766602, 0.46728516, -1.6621094, 1.2431641, 0.064086914, -1.8964844, -0.5761719, -0.5102539, -1.3427734, -0.81689453, 0.29907227, 0.8886719, 1.2480469, -1.1464844, 0.62597656, -3.8496094, 0.5991211, -0.33447266, -0.97314453, -1.6679688, 0.69091797, 0.02444458, 0.81689453, -1.1767578, 4, -1.2001953, -2.3886719, 1.5556641, -2.7363281, -1.34375, -3.671875, -3.4785156, 0.31396484, -1.2167969, 0.23828125, 2.1738281, -0.9345703, -0.2939453, -0.2253418, 0.4169922, -2.1992188, -1.6201172, -0.14465332, 1.1777344, -1.9814453, -1.4570312, 2.1640625, -0.05114746, -1.0205078, -2.2382812, -0.2980957, -1.1894531, 0.40478516, 1.578125, -1.7998047, 1.2529297, -2.8476562, 0.9399414, -0.17407227, -2.1621094, 2.2734375, -1.1367188, -0.46313477, -3.3378906, 1.6435547, 0.9580078, 0.6323242, 0.32861328, 3.3964844, 1.0117188, 0.14428711, -0.48779297, 1.0761719, 2.2753906, 0.8232422, -2.5507812, -0.0892334, -0.2680664, -0.06591797, -0.8461914, 0.34375, -1.2675781, -0.6875, 0.4934082, 1.21875, 1.8779297, 3.2714844, 1.3457031, 0.04071045, -0.40185547, 1.2304688, -0.23474121, -1.2392578, -1.1601562, 0.5332031, -1.2216797, 0.77783203, -0.60595703, -1.7392578, -1.8867188, 0.89990234, -3.53125, 2.7421875, 2.9941406, 0.61279297, 1.5507812, -2.2207031, -1.421875, -0.3239746, 1.2529297, -2.5644531, 1.7099609, 0.27685547, 0.7011719, 1.4160156, 1.2978516, -1.6494141, -1.3759766, 1.5869141, -2.3945312, -0.6323242, -0.59814453, 1.9199219, 0.72802734, -0.72216797, 2.2773438, -0.014320374, 3.5683594, -0.86035156, -0.734375, -0.08300781, -0.6381836, -1.1269531, -0.82666016, -0.5673828, 0.4338379, 2.0039062, 0.08087158, 2.0527344, -0.81640625, 0.87060547, -0.14086914, 2.7734375, -0.7133789, 0.61328125, -1.0986328, 1.421875, -0.48291016, -0.86376953, 0.20019531, 1.5947266, 2.3105469, 4.5273438, 0.63183594, -0.28271484, 1.6757812, -0.35961914, -1.3427734, -1.5351562, -0.011512756, -2.2089844, 1.9150391, 0.35839844, -2.9023438, -0.50439453, 3.3359375, 0.16699219, 1.5605469, -0.8647461, -1.046875, -0.94140625, -1.4003906, -1.5566406, -0.8886719, 1.5488281, -0.35791016, -0.93310547, 1.609375, -0.9296875, 2.1601562, 1.5986328, 0.06451416, -0.46069336, 1.3300781, -1.5732422, 0.046905518, 0.11425781, -0.85791016, -1.8457031, 1.1367188, 2.7539062, 1.2558594, 1.640625, 1.7236328, 2.0019531, -0.16064453, 1.0195312, -0.24023438, 3.7421875, -2.3652344, -1.3945312, 1.2919922, -0.49926758, 0.6933594, -2.0800781, -0.32788086, -1.0722656, 1.3662109, 1.4414062, 1.7910156, -0.7265625, -1.9248047, -1.9970703, -4.734375, -0.96972656, 1.484375, 0.13574219, -0.56640625, -0.23181152, -0.89990234, -0.16772461, -1.0527344, 0.2536621, -1.0742188, -0.43530273, -0.06585693, 0.49047852, -1.4042969, 1.3095703, -0.57128906, 0.8652344, -0.22363281, 0.49047852, 0.35498047, -2.3417969, -1.8916016, 2.6484375, -2.6054688, 1.3798828, 1.1796875, -1.4443359, -0.9086914, 1.8525391, 0.032714844, -0.94140625, 1.4990234, -2.1386719, 0.9223633, 1.1484375, -1.6220703, 0.78515625, 1.7412109, -1.1123047, 0.6035156, 0.12261963, -0.081970215, 0.026565552, 0.890625, 1.3066406, 1.5078125, 0.6357422, -1.5292969, 2.0585938, -0.14794922, 0.73095703, 1.3515625, -0.27856445, -0.24584961, -1.8359375, -2.8574219, 0.08862305, -0.25610352, 0.12237549, -0.55371094, 2.3046875, 1.8056641, -1.171875, 0.4038086, -1.3076172, -0.099243164, -1.3447266, 1.9736328, -1.2255859, 3.578125, 1.9277344, -3.1015625, -1.5507812, -0.34277344, 1.3662109, 3.2128906, 0.34570312, -1.0087891, 1.4345703, -0.021713257, 1.2480469, -0.0670166, 1.4267578, 2.3769531, 0.0524292, -0.9638672, 0.88720703, 2.7910156, 0.37939453, -1.1708984, 0.058746338, -0.6303711, -0.9399414, 5.0898438, 2.5, -1.6318359, 1.8779297, -3.796875, 1.6035156, 0.14990234, -1.7255859, 0.2524414, -4.078125, -0.046875, -2.078125, -0.30444336, -1.9511719, 1.5087891, 1.4951172, -0.8105469, 2.1953125, 2.4589844, -0.7919922, -0.40063477, 1.2900391, 1.1054688, 0.23413086, 0.8491211, -0.2734375, 0.5395508, 2.3613281, -2.2460938, 1.9443359, 0.90722656, -0.076171875, -1.875, 1.2089844, 1.3808594, 2.9394531, 1.3066406, 1.6503906, 1.3447266, 1.90625, 3.7363281, 0.90625, 1.4091797, 2.9472656, -0.57421875, 0.609375, 1.4335938, 0.79248047, -1.578125, -0.6640625, 0.8823242, -0.90283203, -2.0644531, -1.0703125, 0.4326172, 1.5087891, -2.5019531, 0.32495117, -0.5288086, -0.25195312, -1.5224609, 0.22387695, -0.6308594, -1.5175781, 0.375, -0.22680664, 2.3554688, -0.11279297, -0.67578125, 0.38916016, -0.2919922, 0.29467773, -2.5898438, 1.5507812, -1.0947266, -1.4560547, 1.4472656, 3.5996094, -0.093566895, 0.56640625, 0.6557617, 0.50927734, -0.3388672, 0.8144531, 0.55126953, -0.3071289, 1.8330078, 0.5419922, 4.2109375, 0.6357422, -1.7109375, 2.2089844, -1.4648438, -1.6484375, -2.6445312, 2.4238281, 0.9614258, 1.5732422, 1.421875, -1.859375, 2.4941406, -1.2675781, 1.765625, -4.2929688, 0.06738281, 1.4785156, -0.9272461, -1.3632812, -0.3852539, -0.3996582, 3.3574219, 2.65625, -0.26098633, 0.7216797, -0.71484375, 0.32641602, -0.43530273, 1.2861328, 0.10870361, 0.8852539, -1.0595703, 2.5195312, -0.1628418, -2.5371094, -1.0927734, 3.3691406, 0.10473633, 0.6953125, 0.08850098, -1.0087891, 1.0029297, -0.5307617, 0.80029297, -0.9140625, -1.875, -1.5830078, -0.9189453, -0.9321289, -1.2382812, -0.70214844, 1.7177734, 0.20227051, -2.1464844, 0.7421875, 2.40625, -1.1103516, 1.2783203, -0.049682617, -0.25048828, -2.8613281, -1.5068359, 1.0966797, -1.0859375, -1.6230469, 0.045837402, 1.0458984, 1.1660156, -1.1464844, -1.3554688, -2.7421875, 0.06561279, 0.43530273, 1.2148438, -1.2880859, 0.4724121, 1.5898438, -1.1025391, -1.7226562, 2.2050781, 0.34106445, 0.49829102, -0.40625, -2.6289062, -0.46142578, -1.1923828, -0.42895508, 1.6181641, 1.6220703, 0.5708008, 0.17126465, -1.2861328, -4.1953125, -0.1907959, 0.07324219, 1.2675781, -0.73291016, -0.3088379, 0.73291016, 1.9462891, 1.6298828, -0.8989258, -1.7773438, 0.31860352, 1.9384766, 1.2216797, -0.07910156, 2.4511719, 0.07354736, -0.42700195, -1.7353516, 2.2167969, 1.78125, -1.0253906, 1.5888672, 2.7070312, -0.21105957, -2.9492188, 0.122924805, -1.0029297, -0.6879883, -0.038513184, 1.1074219, 2.0683594, 2.0644531, -0.5053711, -2.4453125, -1.2744141]}, "B0014E3MSI": {"id": "B0014E3MSI", "original": "Brand: Camco\nName: Camco 59013 Single Stage Propane Low Press Regulator\nDescription: \nFeatures: Maintains a constant 11\" WC propane pressure\n200,000 BTU/HR\nFor connecting free standing gas bottle to low pressure gas appliances\n1/4\" Female NPT (Inlet) x 3/8\" Female NPT (Outlet)\nUL Listed\n", "embedding": [-1.5605469, 0.4584961, 1.3789062, 1.5078125, -1.2304688, -2.2285156, -0.041168213, -1.5966797, 0.21618652, -0.50683594, 1.2451172, 0.60498047, 0.3166504, -0.76416016, 2.5097656, -1.2841797, 1.1464844, 1.1005859, 1.7666016, 0.17956543, -0.73828125, -1.4140625, 1.8085938, -1.7353516, 0.7211914, -0.0970459, 2.640625, -1.3652344, -3.3007812, -1.0253906, 0.9736328, 0.71240234, -0.81689453, 1.578125, -0.35375977, 0.002275467, -0.7729492, -0.7949219, -3.8769531, -0.13928223, -2.6738281, 0.37353516, 2.0820312, -1.2265625, -2.6269531, -1.6171875, 1.2861328, -1.3251953, 2.3359375, -1.5986328, 0.52685547, 0.63964844, -1.4121094, 0.45336914, -0.12213135, -0.38012695, -0.7602539, -2.3085938, 0.8964844, 1.8798828, 0.8183594, -0.23583984, -2.6464844, 0.43554688, -2.0917969, 2.0625, -0.5283203, -0.37036133, 2.4472656, 1.6220703, 1.7958984, 1.2539062, -0.34423828, -1.7421875, -1.4667969, 2.0253906, -1.4814453, -1.7587891, 1.8701172, -0.5214844, -2.9199219, 0.97558594, 1.3857422, -3.2285156, -2.2207031, 0.19616699, 0.7993164, 1.3076172, 0.2861328, 1.2197266, -0.6669922, 1.8779297, -3.6933594, -3.6621094, 0.40820312, 2.7773438, -1.0292969, 2.3476562, 0.7836914, 1.40625, -0.14880371, 1.3779297, -0.24194336, 0.9663086, -1.6445312, -0.44091797, 1.2578125, 1.8574219, -4.421875, 0.23754883, -1.1826172, -0.6694336, 2.0097656, -1.0126953, 1.2216797, -1.3310547, -0.6796875, 0.7734375, 3.8730469, -0.01625061, 3.2617188, -0.0051460266, 1.1376953, -0.5498047, 0.42211914, 1.7441406, -0.33935547, 1.3017578, 3.5507812, 0.21105957, -0.16259766, -1.7158203, 2.3867188, -0.44384766, 1.4648438, -2.1660156, -1.2783203, -3.6152344, -0.56152344, -0.30078125, -5.15625, 0.57421875, 0.6220703, 1.3759766, -3.3261719, -1.0390625, -1.7119141, 1.3330078, 1.3515625, -2.0546875, 0.10974121, -2.4140625, -0.46069336, -0.9794922, 0.8149414, 0.7993164, -1.7207031, -1.5898438, 3.484375, 1.2607422, -0.06970215, -0.012802124, -2.7265625, 1.4091797, -0.11804199, -0.63134766, 0.14611816, -1.1591797, -1.0283203, 1.4189453, -0.29467773, -2.9570312, -0.6074219, 0.42016602, -1.53125, -0.01940918, 2.8632812, 3.1445312, 3.2539062, -0.32543945, -2.765625, -1.265625, -0.26416016, -1.6455078, 1.5634766, -0.74902344, 0.3083496, 0.34960938, 1.453125, -1.8427734, -1.1494141, -0.5541992, -0.9169922, -0.35766602, 1.1689453, -2.0214844, -2.7929688, -1.3505859, 1.2333984, 2.015625, 0.3088379, 0.0803833, 0.47827148, 1.4423828, -1.2226562, -0.9472656, 1.8662109, 0.25463867, 1.4716797, 0.68115234, 1.4394531, 0.30371094, 1.6679688, -1.8613281, -0.29492188, -1.6767578, 0.5126953, 2.0742188, 0.50097656, 1.46875, 0.62158203, 0.05569458, 0.79345703, -2.1464844, 2.1289062, 0.5883789, 0.4987793, 0.79541016, -0.98583984, -1.2675781, 2.7402344, 2.5605469, -1.0039062, -1.0820312, 0.1439209, 2.7402344, 0.47314453, -0.30639648, 0.54833984, -0.58203125, 0.53564453, 0.07696533, -0.8154297, -0.765625, 1.2177734, -0.49438477, -1.5898438, 2.40625, 2.6328125, 0.7558594, 1.6308594, -0.43530273, -3.015625, 0.12719727, -1.90625, -0.060577393, 0.2849121, 0.15686035, 0.5253906, -2.7890625, 2.0703125, 0.35791016, -0.19921875, 1.0458984, -0.027709961, 0.21765137, 2.171875, 0.09234619, -0.7758789, 0.033691406, 0.15185547, 2.1152344, 1.9423828, -0.22351074, 0.24023438, 0.7558594, -0.72998047, 0.76171875, -0.77783203, 0.671875, -0.35595703, -1.2949219, 1.1171875, -3, 2.2753906, 0.3696289, 0.6123047, 0.2548828, -4.3867188, 1.4599609, 2.1347656, -1.5722656, -2.8359375, 2.2597656, 2.84375, 0.078063965, 3.5039062, 0.5288086, 0.54833984, -0.70410156, 2.3359375, 0.7480469, -1.8662109, 0.3244629, -0.10296631, -1.4648438, -0.89208984, 0.5078125, 1.9072266, 0.10925293, -0.5283203, -2.0117188, -3.2832031, 1.4863281, 0.2010498, -2.0605469, 0.8442383, -2.9550781, 1.3535156, 0.7583008, 0.7993164, 2.2539062, -0.9902344, -0.7451172, 1.2060547, 0.122680664, -1.8320312, 0.8095703, 0.31518555, 0.87597656, -0.036590576, -0.83984375, 0.7993164, -1.0820312, -0.40063477, 1.0390625, -0.76171875, -2.6894531, 1.3662109, -1.2207031, -0.75439453, 0.5288086, -1.2578125, 2.8652344, 1.2158203, 1.3554688, -0.95751953, -0.2565918, -0.23327637, -1.0214844, 1.3134766, 1.1953125, -1.2304688, -3.0449219, -0.79052734, -0.12445068, -0.10241699, 2.4375, -1.0224609, 3.0820312, 0.44018555, -0.58935547, 1.7636719, -0.48120117, -0.25683594, -1.0644531, 2.4902344, -2.1699219, 0.70703125, -0.8574219, 1.5, -0.6347656, 2.4863281, -0.8066406, -1.015625, 0.81640625, -1.4179688, 2.8300781, -0.96191406, 0.5288086, -1.3945312, -0.8491211, 0.6201172, -1.8046875, -2.9121094, 1.0400391, -0.027572632, -1.8730469, -0.8041992, -2.3066406, 0.34765625, 0.59765625, 1.0146484, -1.5732422, -1.1074219, -1.53125, 0.24450684, 0.5048828, 0.4621582, 0.20202637, 2.3164062, -1.2451172, -2.9667969, -0.3798828, 2, -0.15759277, -0.69091797, 0.28393555, 0.04107666, -0.2130127, -0.15661621, 0.34179688, 0.31689453, 2.2363281, -1.140625, -2.6113281, 1.4267578, 0.88964844, 0.18237305, 1.3623047, -1.5761719, -1.7724609, -2.8808594, -0.69091797, 1.9980469, 1.78125, 3.1523438, 1.1171875, 2.3457031, 0.45361328, -0.042541504, -1.0664062, -0.50341797, 0.3269043, 2.9453125, -2.9121094, -1.6103516, 1.2138672, 1.5869141, -2.9785156, 0.1796875, 0.3881836, -0.26879883, 3.0175781, 2.3183594, -0.7055664, 0.12371826, 1.140625, 1.0566406, 0.43237305, -0.81640625, -0.15148926, -0.15600586, 1.1386719, -0.17016602, 1.4296875, -0.09063721, 1.0410156, -0.048034668, 0.6635742, 2.8710938, -1.3134766, 0.96777344, -0.16137695, -0.828125, -0.6855469, 0.3815918, 1.2792969, 0.8100586, -0.3642578, 0.068603516, -0.4309082, -4.2851562, 0.66015625, -0.14941406, 0.24060059, 0.22717285, -0.18969727, -0.8696289, 1.3261719, 0.40551758, 0.5126953, 1.1357422, 0.7817383, 0.67578125, -1.28125, -0.26513672, -0.75878906, 1.4726562, -0.62158203, 1.0166016, -0.09375, 0.50683594, -0.42211914, -2.5625, -2.0566406, -3.0527344, 0.5722656, 2.7890625, 1.3886719, -1.1474609, -0.75146484, -0.37939453, 0.7832031, 2.6796875, -1.1953125, 0.011627197, -0.6850586, 1.2802734, -1.1650391, -1.8232422, 2.6621094, 0.6098633, -2.6269531, -1.3720703, -2.6308594, 0.82128906, -0.5839844, -0.7558594, -0.87060547, -0.24169922, -1.3300781, 1.7666016, 0.5917969, 0.4416504, -0.61376953, 2.2773438, 0.36816406, -2.3183594, -0.14941406, -1.8691406, -5.9335938, -0.059143066, -1.8720703, 0.012710571, 1.59375, 0.0021800995, 0.94189453, 1.4267578, 0.31713867, -2.8730469, -1.2958984, -0.3779297, 1.9267578, -3.859375, 0.22644043, 0.82666016, 0.7211914, -2.2304688, -2.515625, -1.0732422, -2.5136719, -0.05706787, -1.0146484, -2.2167969, 2.1445312, -0.20031738, 0.6923828, -0.19396973, -1.0625, 1.578125, -1.1679688, -0.5307617, -3.5449219, 1.7929688, -1.0498047, 0.5395508, -0.039611816, 2.7441406, 2.3496094, -2.1601562, -0.13745117, 0.061401367, 1.6777344, -0.5029297, -1.9560547, -1.0839844, -1.9765625, -0.8027344, -2.2382812, 0.27514648, -0.28857422, -0.2607422, -0.6074219, 0.95751953, 0.9873047, 0.25878906, -1.7558594, -1.9101562, 2.7714844, 0.7524414, 0.23876953, 0.62939453, -0.72265625, 0.47143555, -2.1914062, 1.1728516, -0.62841797, -1.1289062, 1.6425781, -0.625, -3.2539062, 0.14331055, 0.2590332, 0.44262695, -2.25, -0.034454346, -3.7285156, -1.6914062, 2.3085938, 1.2304688, -1.2148438, 0.7128906, -0.17834473, 0.19628906, 2.890625, -1.1894531, -0.38061523, -0.6582031, -2.1152344, 0.1505127, -0.8852539, -0.24865723, -0.036865234, -0.6196289, 0.6748047, 0.4675293, 2.1386719, -0.1550293, 1.0625, 1.3193359, -1.7246094, -2.6933594, 1.8720703, 1.1230469, 1.9560547, 2.2148438, -0.76416016, 2.1933594, 1.5341797, 2.265625, -0.117492676, 1.2353516, -0.22387695, -2.0019531, -0.75, 0.74560547, -0.22375488, -2.0019531, 1.7265625, -0.08258057, 1.5839844, 1.2519531, 4.140625, -0.74853516, -0.04940796, -0.78515625, -0.88964844, -1.0820312, 0.15515137, -0.32226562, 3.6796875, 0.5058594, -2.4082031, 1.9482422, 2.4316406, -0.88623047, 0.95947266, 0.62109375, 0.7553711, -0.7246094, -2.140625, -2.34375, -0.09320068, 2.046875, 0.77001953, -2.9257812, 1.0673828, 0.7006836, 0.062316895, 1.6298828, 0.92578125, 1.2158203, 0.3425293, 0.45361328, -2.1757812, -2.7109375, -3.1152344, -3.6152344, 0.8652344, 2.1933594, 1.2880859, 0.023651123, 0.40551758, 0.29956055, -0.6616211, -1.8203125, -1.234375, 0.15344238, -0.8676758, 0.009635925, 1.9619141, 1.4648438, 0.8779297, -0.48535156, -0.5097656, 0.6098633, 2.2285156, 1.4208984, -0.57666016, -0.06390381, -0.7705078, -2.7539062, -4.2265625, 0.30029297, 1.625, -0.3215332, 0.45581055, -3.2382812, -1.5048828, 1.5019531, -1.7246094, -0.8935547, -4.0546875, -0.21411133, -0.7373047, -0.20776367, 0.5888672, -0.51123047, -0.3828125, 0.6064453, -1.2851562, 0.3017578, -0.31201172, -2.4472656, -2.7207031, 2.9199219, 0.6298828, -0.6591797, 1.8857422, -0.61279297, 1.4589844, 1.2587891, 0.62109375, -2.5371094, 1.9619141, -1.7529297, -0.60058594, 0.9501953, -0.68896484, 0.97802734, 3.5449219, 1.0175781, 1.8613281, 2.3476562, 2.2226562, -0.15356445, 1.0917969, 1.7783203, -1.1601562, 1.7441406, -0.4638672, 1.6279297, -1.1220703, 2.078125, 2.7988281, -1.9541016, -1.9570312, -2.0625, -1.4794922, -0.46801758, -1.1601562, 0.1899414, 0.1385498, 1.8544922, 0.21765137, -1.7275391, 0.84716797, 0.26660156, -1.1503906, -1.0976562, 2.15625, -1.46875, 1.0673828, 0.30688477, -2.953125, -1.7119141, -0.4206543, 1.8857422, 0.7089844, 0.44262695, 1.0947266, 0.18041992, -0.049072266, 2.0898438, -0.16870117, 0.95214844, 0.4099121, 2.0917969, -0.17163086, 0.6464844, 1.8027344, -1.2695312, -1.2050781, 0.9902344, -0.123535156, -0.48461914, 0.44848633, 3.296875, -1.5673828, 0.67578125, -0.113586426, 1.5576172, -1.7939453, -2.2890625, 0.99316406, -2.6386719, 0.8286133, 0.39379883, 0.2824707, -1.9033203, 2.6386719, 0.44018555, -1.0849609, 1.8173828, 1.8115234, -1.40625, -2.0800781, 1.5439453, 0.9501953, 0.036254883, 0.8491211, -0.12207031, 0.009895325, 1.0400391, -2.5273438, 0.38085938, 0.52197266, 1.4580078, 1.2294922, 0.07495117, -0.03640747, 1.6806641, 2.9277344, 0.39257812, 2.9511719, -0.0690918, 2.5097656, 1.2470703, 2.3320312, 1.8642578, 0.05230713, 1.3720703, 1.046875, -0.9321289, 0.62597656, -0.30737305, -0.45336914, -1.2109375, 1.3623047, 0.34692383, 0.48461914, 0.53222656, -2.1855469, -2.1953125, -0.6357422, 1.7001953, -2.1992188, 1.1445312, -1.3466797, 0.09777832, 0.52978516, -1.8730469, -0.2734375, 0.3491211, -1.8046875, 0.18725586, 2.6933594, 0.8823242, 0.36694336, -0.87597656, -3.0234375, -1.7158203, 0.06311035, 0.28735352, -0.05307007, 0.81103516, 0.69433594, 0.3112793, -0.11804199, 0.9506836, 0.8339844, -2.4589844, 1.5966797, 0.7583008, 3.8945312, 2.4082031, -0.98291016, 3.2207031, 3.1503906, -1.96875, -4.3515625, 1.0722656, 0.5727539, 0.4790039, -0.8178711, -2.5078125, 2.5097656, -0.10479736, 1.0908203, -1.9892578, 1.8105469, 0.44335938, -3.0410156, 1.8974609, 0.28393555, -1.96875, 3.703125, 1.4941406, 0.6879883, -0.83447266, 1.2841797, 2.7832031, 0.2442627, 0.96484375, -0.29003906, 0.12792969, -1.6162109, 2.6679688, 0.50390625, -2.0527344, 0.69140625, 3.3828125, 1.0673828, 0.7373047, -0.3947754, 0.19482422, 1.8457031, 0.89941406, -0.5966797, -1.9472656, -2.1933594, 1.5644531, 0.37939453, 0.2631836, 0.30615234, -1.9804688, -0.85302734, 1.046875, -2.0039062, -0.28735352, 0.6489258, -0.71777344, 0.7832031, -0.92626953, -1.3847656, -1.9003906, 1.3544922, 0.12634277, -1.0400391, 0.31347656, -1.4931641, 1.7412109, 0.4963379, -0.82373047, -0.79785156, 0.43408203, -0.64746094, -1.6201172, 1.34375, 0.02053833, 0.0044822693, 0.7285156, -1.0419922, 0.9116211, 0.7939453, -0.15197754, 1.0693359, -1.2753906, 0.5854492, -0.18041992, 0.45507812, 0.4013672, -0.0074005127, 1.1123047, -2.046875, 2.5839844, -0.6616211, -2.2285156, -1.7753906, -3.6621094, 1.7333984, 0.31518555, 0.27026367, 0.734375, 1.5810547, 1.8134766, -0.42358398, 0.10723877, -0.028396606, -1.0478516, 0.9404297, -0.8647461, 0.33691406, -0.12731934, -1.5439453, -0.46875, 3.7832031, 0.31518555, -1.0458984, 0.38354492, 0.8066406, -1.1923828, -0.4855957, -0.19726562, -1.4277344, -3.9414062, 0.18054199, 2.3574219, 4.2890625, 0.2854004, -1.7958984, -2.6816406, -0.24206543]}, "B08FMFK7CN": {"id": "B08FMFK7CN", "original": "Brand: METER STAR\nName: Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17\" and 22\" Blackstone Tabletop Camper Grill\nDescription: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F
No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
Specifications\uff1a
A. 3/8\" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
Warm Tips:
* This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
Quality Standard:
CSA
Package Included:
1 Pcs x Propane Elbow Adapter.
1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.\nFeatures: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F\nNo Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit\nGreat Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill\nCSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model\nElbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping\n", "embedding": [-1.5068359, 1.3828125, 0.16564941, 1.6953125, -0.74121094, -1.4169922, 2.1582031, -1.7265625, 0.46264648, -0.13427734, 0.75634766, -0.22680664, 0.24682617, -2.53125, 1.3974609, 0.7270508, 2.3984375, -0.24633789, 1.5078125, -0.07537842, 1.515625, -0.032409668, 3.1621094, -1.3671875, 1.4580078, -0.38452148, 3.9277344, -3.0917969, 0.0803833, -0.41723633, 1.6943359, 0.16088867, -0.30395508, 2.6171875, -2.7617188, -1.0273438, -0.43798828, 0.921875, -3.2089844, 0.12420654, -0.9169922, 2.1191406, 3.7265625, 0.34521484, -2.8417969, -0.27734375, 1.1337891, 0.38232422, 0.7270508, -1.4199219, 1.1269531, 2.2226562, 1.0615234, -0.09564209, -1.2080078, 0.42529297, -0.5683594, -1.9882812, 1.4560547, -0.0017471313, 2.765625, -1.0224609, -2.6777344, 2.0136719, -0.30273438, -0.034973145, 0.62158203, -0.5058594, 0.5966797, 0.13500977, 0.47460938, -0.24487305, -0.66748047, -1.3134766, -0.17871094, -0.13049316, -3.4121094, -1.3818359, 1.6923828, -1, -3.0253906, 4, 0.80566406, -3.0683594, 1.9042969, 0.5678711, -0.5361328, 2.3144531, 3.2949219, 0.41259766, -2.3613281, 2.1992188, -3.0449219, -3.71875, 0.44262695, 0.40283203, 1.2919922, 0.5986328, -1.0849609, 0.77734375, -2.78125, -0.60595703, -1.7304688, 1.1855469, -3.0664062, -0.19238281, 1.1552734, 0.82958984, -3.2890625, -0.76660156, -0.66748047, 0.39916992, 2.3515625, 0.21850586, 0.69384766, -1.390625, 0.021194458, 0.6376953, 1.9160156, 1.3544922, 3.9863281, 0.38330078, 0.5625, -0.7314453, -0.37646484, 0.024887085, -0.51660156, 0.36450195, 3.5058594, -0.23632812, -0.33325195, -2.3984375, 3.2519531, 0.79785156, -0.33984375, -2.2363281, -1.2695312, -1.9052734, -2.8808594, -0.27734375, -2.8476562, 1.2011719, 2.6132812, 0.8027344, -5.3242188, -0.54345703, -1.7851562, 0.75341797, 0.36254883, -0.6855469, 1.3759766, -1.8808594, 0.29296875, -0.34057617, 1.8486328, 0.1899414, -0.7314453, -1.390625, 4.0195312, 1.0224609, 0.21508789, -1.6337891, -1.8779297, 0.6386719, -0.41259766, -1.1523438, -1.3544922, 1.9580078, -1.1044922, 1.6992188, -0.30200195, -2.2519531, -0.5209961, 0.3256836, 0.34155273, -0.7524414, -0.4580078, 2.1484375, 2.1445312, 0.24694824, -3.4472656, -2.1503906, -0.84521484, -3.2714844, 0.76953125, -1.265625, -1.3583984, -0.49047852, 1.4726562, -0.4038086, -2.0625, 1.0810547, -0.74072266, 1.1806641, -0.87109375, -1.0351562, -1.5996094, -1.1904297, 0.7636719, 0.6533203, -1.9638672, -1.1162109, 1.3564453, 0.3605957, -2.1113281, -2.4257812, -0.37036133, 0.47265625, 0.18945312, 2.453125, -0.0049591064, -0.10058594, 1.0673828, -0.7314453, -0.35839844, -1.6777344, 2.4746094, 1.5927734, 0.94091797, 1.7099609, -0.18103027, 0.23303223, 1.1230469, 1.4345703, 2.828125, 1.1699219, -0.26367188, 0.55908203, -2.5703125, -0.18896484, 1.2226562, 2.3183594, -0.46850586, -0.14978027, 0.45947266, 2.9785156, 2.0527344, -0.10046387, 1.6982422, -0.5722656, -0.25756836, -0.75439453, -0.11340332, -2.3632812, 1.2119141, 0.5776367, -2.6210938, 2.7167969, 1.6103516, 0.36547852, -0.6191406, 0.40942383, -2.0585938, -0.7519531, -1.6044922, 0.109558105, -0.9042969, 1.3710938, -0.18786621, -2.4375, 2.4589844, 0.6557617, -0.91308594, 1.265625, 1.9521484, -0.5961914, 2.2871094, -0.95654297, -2.7949219, 0.7529297, 1.3632812, 1.6533203, 2.5292969, 0.07501221, 1.1962891, 0.8017578, -0.71728516, 1.3007812, -0.014060974, -0.04321289, 1.0986328, -1.1757812, 2.0058594, -2.9296875, 1.9726562, -0.09399414, 0.5019531, 0.890625, -1.3398438, 1.1796875, 3.0292969, 0.11004639, -2.15625, 2.8964844, 1.9882812, -0.33789062, 1.5439453, -1.7490234, 0.44506836, -0.50878906, 1.4443359, 0.9511719, -0.71191406, 0.4753418, 1.5957031, 0.6689453, -0.85546875, -0.4597168, -0.64160156, 2.0605469, -0.84716797, -1.4619141, -1.3066406, 2.1230469, -0.57177734, -0.84375, 0.92529297, -2.0527344, 0.33325195, 1.6865234, 1.5009766, 0.5961914, 0.06149292, -1.9433594, 0.62890625, -0.19165039, -1.6796875, 1.7822266, 1.5439453, -0.05709839, 1.4091797, -0.00894165, 1.1816406, -1.640625, -2.7792969, 0.07672119, -0.2454834, -2.28125, -0.74609375, -0.94970703, -1.3896484, -0.265625, -0.57177734, 3.0664062, 1.0107422, -0.36987305, -0.7714844, 0.67285156, 0.42456055, -1.2207031, 0.22851562, 1.6738281, -0.90478516, -2.078125, -1.0136719, -0.9760742, 1.7851562, 0.24780273, 0.05859375, 1.3867188, -0.29589844, 1.0537109, -0.60009766, 0.48950195, 1.0351562, 0.16699219, 2.2109375, -3.046875, -0.64453125, -1.1748047, 1.0986328, -1.8564453, 0.5551758, -1.5322266, -0.78759766, 0.1270752, -1.3144531, 2.1933594, -1.3964844, 1.3632812, -1.4013672, 1.4658203, 1.0878906, -0.8334961, -2.6679688, -0.5673828, 0.4091797, -0.55371094, -2.4785156, -2.8261719, -1.0419922, 1.1933594, -0.033813477, -1.4179688, -0.68652344, -0.7788086, 0.5395508, 0.11383057, -0.5625, 0.6308594, 1.8466797, 0.6850586, -2.8203125, 0.546875, 0.58251953, -1.3759766, -0.83740234, 0.90966797, 0.37670898, -1.2421875, -0.39404297, -0.31396484, 0.1920166, 2.1113281, -1.3369141, -3.3945312, 0.68652344, 0.43725586, -2.2070312, 3.1757812, -0.03213501, -0.8276367, -2.4121094, -1.9560547, 2.0742188, 0.78515625, 3.0800781, 0.0758667, 1.0390625, 0.7397461, -1.2958984, -1.2021484, -0.7832031, -1.5195312, 3.4492188, -2.3515625, -2.2480469, 0.52734375, 0.87939453, -2.8144531, 0.03643799, 2.0019531, 0.06365967, 3.4023438, 0.9321289, 2.046875, -0.8413086, 0.9111328, 0.8486328, 1.2490234, -0.24951172, 1.2998047, 0.2878418, 1.4208984, -0.91064453, 1.2451172, 0.41333008, 0.49169922, 0.45751953, 0.76123047, 1.4003906, -2.5214844, 1.4580078, -0.90185547, 0.8857422, 1.0332031, 1.8710938, -1.5644531, -0.8251953, -0.5859375, 1.0927734, 2.234375, -2.4296875, -1.03125, 2.5253906, 2.0664062, -1.2412109, -0.6274414, -0.7988281, -0.18139648, -0.040802002, -0.86572266, 1.0371094, -0.4338379, 1.1308594, -0.21716309, -0.05102539, -2.1992188, 2.3339844, -0.9326172, -0.36987305, -1.421875, -0.077941895, 0.25952148, -2.484375, -1.5458984, -3.1191406, -0.5097656, 3.28125, 0.8105469, -1.2109375, 0.45288086, -1.0693359, 2.2363281, 1.2109375, -1.0205078, -0.29736328, -1.1289062, -2.0605469, -0.2590332, 0.33422852, 2.4511719, -1.2275391, -0.5654297, -2.2089844, -1.8046875, -0.44140625, -1.6552734, -0.44873047, -0.87939453, 0.70410156, 0.76953125, 1.0976562, -0.22253418, 2.3242188, -0.5917969, -0.6401367, 1.0722656, -4.0625, -0.3371582, -2.3945312, -5.5234375, 1.3505859, -3.3125, 1.3398438, 0.5341797, 1.2021484, 0.34301758, 2.7714844, 1.8115234, -3.7753906, 0.60791016, -0.58691406, -0.5864258, -3.5039062, -0.8461914, 2.3964844, 0.88720703, -1.6621094, -2.1445312, 0.8964844, -2.2558594, -0.32763672, -0.78271484, -2.7871094, 0.14782715, -0.23596191, -0.099853516, -1.0966797, -0.5410156, 1.3027344, -0.80078125, -0.25, -2.3242188, 2.2929688, -0.6098633, 1.6591797, -0.59033203, 1.5068359, 0.9091797, -1.7304688, -0.3239746, 0.5307617, 3.9101562, -0.39892578, -0.99121094, 0.18139648, -0.40405273, 0.24658203, -1.2480469, -1.6376953, 0.74658203, -1.4755859, -1.1347656, -0.21923828, 2.7597656, 1.6357422, -1.1640625, -2.515625, 0.70703125, 0.87402344, -0.7714844, -1.6367188, -0.19116211, -1.6894531, -1.3925781, -0.014129639, -2.9394531, 0.6723633, -1.3564453, -1.0976562, -2.3007812, 2.8105469, 0.18518066, 1.4824219, 1.6513672, -0.40527344, -0.0791626, 1.9189453, -0.9472656, -2.8457031, 1.1416016, -1.0185547, -1.7509766, 3, 1.6162109, -0.50634766, -0.3552246, 0.54833984, -1.8925781, -1.6884766, 0.46826172, 1.0830078, -1.0371094, -0.3671875, 1.0185547, -0.44189453, 2.2773438, -2.3984375, 2.4667969, 0.6928711, -0.02758789, -1.1083984, 2.1894531, 1.3466797, 1.6181641, 1.7324219, 0.13574219, 1.8935547, 0.5522461, 0.4855957, 0.71484375, 0.5498047, -1.5585938, -0.9135742, -0.26660156, -1.2001953, -1.1152344, 0.92333984, 1.1953125, 1.1806641, 1.5039062, 1.1748047, 1.9453125, -1.7080078, 1.4755859, 0.21264648, -2.34375, -1.109375, 0.20825195, -1.2304688, 3.4394531, -0.6269531, -3.2929688, 0.37890625, 2.8867188, -0.42871094, 0.8955078, 0.9995117, -0.9848633, 1.2568359, -3.6796875, -0.70751953, -1.5517578, -0.3088379, 0.9921875, -2.6894531, 0.8803711, 0.2434082, 2.2871094, 2.2910156, -0.7583008, -1.0966797, 0.4338379, -1.2871094, -0.96484375, -1.8828125, -0.86083984, -4.2929688, -0.9145508, 1.6142578, 1.3544922, 0.6357422, -0.82373047, 1.3251953, -0.54785156, -0.68408203, -0.45947266, 1.7353516, -0.7338867, -1.171875, 2.9628906, -0.4033203, -0.009635925, -1.8789062, -0.37353516, 0.57128906, 1.0576172, 0.7416992, 0.6645508, -0.6723633, 0.23120117, -2.6113281, -4.7890625, -1.3623047, 0.8203125, -0.5307617, 0.19848633, -0.8408203, 0.28930664, 1.6289062, -0.1854248, -0.5917969, -2.6542969, 1.3056641, -0.6044922, -0.07751465, -0.22705078, -0.5341797, -0.36132812, 0.8989258, 0.95947266, 2.4257812, -0.07434082, -3.3886719, -0.5722656, 2.0078125, 0.18579102, -0.8642578, 0.7158203, -1.1464844, -0.30273438, 0.13146973, 0.66259766, 0.0041885376, 2.234375, -3.4726562, -0.51123047, 0.24414062, -1.7998047, 0.5996094, 0.2290039, -0.58154297, 0.90966797, 1.7236328, 2.9609375, 0.83984375, -0.9067383, 0.41601562, 1.3085938, -0.515625, -1.4306641, -0.3166504, -0.7963867, 2.4335938, 0.05340576, -1.46875, 1.3447266, -2.1660156, -1.90625, 0.2536621, -1.7929688, 0.4086914, -1.3730469, 0.84228516, 2.3828125, -0.7519531, -0.8041992, 1.5195312, 0.49951172, -0.22399902, 0.79833984, -2.1933594, 2.4355469, 0.7661133, -2.4199219, -0.8076172, -0.07165527, 0.29492188, 2.96875, 0.10510254, -0.56103516, 0.29296875, -1.6552734, 1.9697266, -1.2158203, 1.9472656, 1.4511719, 0.54785156, -1.3183594, -1.0429688, 3.0214844, -2.1074219, 0.16796875, 1.3242188, 0.34423828, -0.21057129, 1.7744141, 1.4775391, -3.7753906, 1.3447266, -1.4013672, 1.2666016, -1.4658203, 0.2322998, 0.9223633, -1.6240234, 0.41625977, -0.9448242, -2.8339844, -3.0058594, 2.21875, 0.7285156, -2.0214844, 1.1669922, 1.2978516, -0.6796875, 0.65771484, 1.0898438, 0.5205078, -0.107299805, -0.43237305, -2.7011719, 0.84765625, 0.72314453, -1.8769531, 1.2617188, 1.7265625, 1.4970703, -0.27368164, -1.2236328, 0.42822266, 2.1425781, 0.9560547, 1.6640625, 3.2636719, 0.4189453, 3.2109375, 1.3076172, 2.5214844, 0.009880066, 0.64404297, -0.18652344, 2.2207031, 0.55322266, 0.28051758, -1.8349609, 0.55566406, -2.4160156, 1.5683594, -0.15795898, -0.12145996, 2.2363281, -2.5390625, 0.3618164, -1.703125, 1.0322266, -1.8457031, -1.2382812, -0.30444336, 0.6225586, 1.1904297, 1.5273438, 1.9541016, 2.2402344, 0.16577148, 1.0175781, 0.8305664, 2.5019531, -2.0996094, -0.109802246, -1.1523438, -2.1699219, 0.60253906, 2.515625, 1.6572266, -0.44750977, 1.4345703, 1.2490234, -1.0634766, 0.33544922, 1.4433594, 0.14123535, -0.07739258, -0.24621582, 1.7138672, 2.4589844, -2.8222656, 1.5527344, -0.59472656, -2.6855469, -1.9072266, 1.9121094, 1.4628906, -0.5605469, -0.011505127, -4.875, 2.3144531, -0.48486328, 1.4199219, -2.3027344, 1.0458984, -0.2199707, -1.9023438, -0.89404297, 0.19812012, -1.2177734, 2.2695312, 1.1386719, -1.1630859, 1.3701172, 3.0136719, 0.35253906, 0.42773438, 1.5029297, 0.5551758, -1.0117188, -1.0634766, 2.7109375, -0.32299805, -2.1464844, -0.9082031, 2.671875, 1.265625, 1.3261719, -0.44433594, 0.016204834, 0.4243164, 2.2421875, -2.0507812, 1.2050781, -1.2929688, 0.75341797, 0.8823242, 0.04083252, -0.12487793, -1.4199219, 0.75927734, 2.1445312, -2.15625, 0.74072266, 0.091552734, -1.5644531, 3.0488281, -1.3994141, -1.0087891, -1.5898438, 2.0507812, 0.36010742, -0.7348633, -1.5507812, -0.019058228, 1.4697266, -0.10473633, -1.5224609, -0.32592773, -1.1230469, 0.48095703, -3.3125, -0.2685547, -1.4697266, -0.93115234, 0.7504883, -1.2597656, 0.81689453, 2.96875, 1.1396484, -0.76220703, -2.0605469, 0.1550293, -0.4333496, -3.8417969, -1.171875, 0.26220703, 1.9472656, 1.7763672, 0.77978516, -0.46826172, -1.8339844, -0.5986328, -1.1142578, 4.0585938, -0.36547852, -0.1071167, -0.20825195, 2.4863281, 3.5761719, -0.89208984, -0.93603516, -1.0644531, 0.15270996, 0.69140625, -0.41186523, 0.4284668, 0.70458984, 0.20471191, 1.1298828, 4.9453125, 1.7539062, 0.14135742, 0.11791992, 1.5722656, 0.24499512, -2.4902344, 0.86621094, 0.0690918, -0.5776367, 0.4260254, 2.0859375, 3.3046875, 1.4599609, -0.2836914, -2.1855469, 0.7294922]}, "B003CV5IGK": {"id": "B003CV5IGK", "original": "Brand: Napoleon\nName: Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel\nDescription: \nFeatures: Up to 11000 BTU's\n304 Stainless steel construction\n7 foot heat radius\nElectronic push button igniter\nPerfect for your backyard\n", "embedding": [-3.5292969, 0.18676758, 3.1015625, 0.4946289, 0.28295898, -0.119018555, 0.37475586, -1.2363281, 0.50341797, 1.5878906, 2.6484375, -0.94140625, -1.6367188, 0.6713867, 0.9169922, -0.82910156, 2.3378906, 0.94091797, 1.2998047, -0.36816406, 0.68652344, 0.34057617, 1.1347656, -1.3994141, -1.1337891, 0.36254883, 3.890625, -3.8886719, 0.3857422, -1.8349609, -0.5317383, 2.0859375, 1.4277344, 1.4482422, -2.0703125, -1.046875, -0.30151367, 1.6328125, -4.3632812, -0.0132369995, -1.6816406, -1.4404297, 0.06555176, 1.7978516, -1.1191406, -0.9321289, 0.45922852, -0.70166016, -2.0136719, -1.1015625, -0.08868408, 0.72021484, -0.98535156, -0.40795898, -0.21228027, 0.8730469, -0.6064453, -1.3203125, 0.3955078, 0.44091797, 0.78125, -1.0644531, -1.7832031, 1.9375, 0.03479004, 2.5566406, -0.45092773, -0.090270996, -0.2626953, 0.43237305, 1.8046875, -0.09350586, -0.8745117, -0.70166016, -0.94433594, -2.1230469, -3.3066406, 0.7597656, 1.9189453, 0.28930664, 0.32836914, 0.029647827, 0.75927734, -0.14794922, -1.8916016, 0.3630371, -1.7617188, -0.65771484, 0.70654297, 1.8691406, -1.6533203, 1.9492188, -1.6474609, -2.4414062, 0.7128906, -1.0664062, -0.33740234, 1.8007812, -0.22094727, 1.1835938, -1.0273438, -0.15307617, -0.18591309, -1.4287109, -1.6015625, -1.0410156, 3.453125, 0.5024414, -2.3457031, 0.8041992, -2.3574219, -0.89453125, 3.3203125, -0.98291016, -0.09802246, 0.38305664, 1.0556641, 3.2265625, 3.3886719, 0.8745117, 3.8535156, -0.55615234, 1.5966797, -1.3378906, -0.80859375, 0.24902344, -3.0292969, -0.17150879, 2.7519531, -0.7158203, 1.8310547, -0.09790039, 1.7373047, 1.1269531, -1.4003906, -1.3574219, -1.5097656, -1.0927734, -3.7734375, -0.15356445, -2.2519531, 2.2226562, 0.77197266, 1.2802734, -3.2890625, -1.4130859, -0.7260742, 0.78222656, -1.5976562, 0.17956543, 0.22033691, -1.8447266, -0.39941406, 0.43579102, -0.20593262, 0.7675781, -0.9272461, -0.80078125, 3.7519531, 2.9726562, 2.0390625, -0.25170898, -0.4165039, 2.0292969, 0.7426758, -1.6474609, -0.5854492, 1.4921875, 1.5605469, 2.5332031, -0.9980469, -1.8583984, -1.2167969, -1.2744141, -0.5395508, 0.5888672, -0.08807373, 2.3945312, -0.296875, -0.1730957, -1.5810547, -1.7373047, 0.71728516, 0.43676758, -0.44555664, -2.2617188, -3.0644531, -1.2822266, -0.13903809, -1.9775391, 0.73291016, 1.3085938, -0.4038086, -0.9580078, -1.8964844, -2.5488281, -1.8554688, -1.3984375, 2.4511719, -0.42871094, -0.2770996, -0.36767578, -0.57958984, -1.2646484, -1.9042969, -4.109375, -2.7460938, 0.74316406, -0.103149414, 2.8808594, 2.2949219, -0.7089844, -0.6977539, -0.56933594, 0.7817383, -1.1416016, 2.9199219, -0.9741211, 0.53466797, 4.1015625, 0.0067367554, -1.2568359, 0.30541992, 0.9863281, -2.0390625, 2.2929688, 1.9033203, 0.9526367, -2.625, -1.6757812, 2.9296875, 0.578125, 1.2685547, 1.0097656, 0.41552734, 3.5273438, 0.40063477, -0.6665039, 0.35083008, 0.19702148, -0.10687256, -1.3769531, 0.6123047, -1.0136719, 0.62060547, 0.7324219, -1.375, 0.49902344, 1.4257812, 0.9741211, 0.15246582, -0.86621094, 0.6455078, 0.42358398, -2.3886719, 1.0761719, 0.6665039, 1.7167969, -0.4633789, -3.8828125, 2.3398438, 1.4648438, -0.41308594, 0.103271484, -0.51220703, -1.3457031, 5.421875, 1.1777344, -3.4257812, 0.86865234, -0.79248047, 1.3056641, 2.3457031, 0.65527344, 0.8232422, 0.31762695, -2.8417969, 3.765625, 0.55615234, 1.4121094, -0.59228516, -0.2397461, 4.0898438, -2.1035156, -0.43945312, -0.11566162, -0.08453369, 0.90771484, -2.7050781, 0.79541016, 4.125, -1.0302734, -1.6191406, 1.5087891, -1.3964844, 1.5927734, 1.9482422, -1.6210938, -0.046661377, -3.0253906, 1.8476562, 0.8208008, -0.24450684, 1.5322266, -1.6992188, -0.20324707, 0.9995117, -2.2832031, 1.1855469, -2.0351562, -0.24707031, -1.8710938, -2.6523438, -0.71191406, -1.4824219, -0.090270996, 0.52197266, -4.984375, 1.46875, -0.26367188, 0.72216797, 0.77783203, -1.0429688, -0.63720703, 1.2802734, 0.04269409, -1.7216797, 2.2070312, 0.51708984, -0.49365234, -0.5073242, -1.1279297, 0.7807617, -2.9511719, -3.1914062, 0.5527344, -1.8144531, -0.52734375, -0.7626953, -1.4912109, -0.14758301, 2.6171875, -2.5683594, 1.7021484, -2.2929688, -3.1992188, -0.78808594, 1.4990234, -2.0625, -0.7519531, 1.8037109, 1.0244141, -1.4316406, -4.7265625, -0.01889038, 1.1210938, -1.5400391, 1.2363281, -0.5644531, 0.8041992, -1.0791016, 0.19311523, 0.080566406, -1.8867188, -0.42236328, -2.7128906, 0.5800781, -3.0390625, 2.2460938, -2.6035156, 0.9394531, 0.03314209, 0.53466797, -1.1757812, -1.4082031, 0.052124023, -0.78759766, 2.1914062, 1.5390625, 1.78125, 0.0713501, -0.8364258, 2.3554688, -1.2304688, -1.7802734, 1.2597656, 0.5644531, -0.82177734, -1.9990234, -3.0800781, 0.71533203, -1.7675781, -1.0166016, -0.7651367, -0.2043457, -1.0224609, 0.7260742, -1.4101562, 0.05441284, -2.4296875, -1.0380859, 0.28076172, -0.020629883, -3.0058594, 0.03643799, 1.0244141, 0.2055664, 0.2211914, 1.6445312, 0.5991211, 1.625, 2.6796875, -1.1503906, 2.2460938, -0.35302734, -4.34375, 0.7973633, 1.4658203, -0.034332275, -0.11303711, -2.6328125, -0.9658203, -1.1728516, -0.17321777, 2.3730469, 1.6367188, 3.7460938, 0.5239258, 0.8720703, 0.05609131, 0.7480469, -2.0175781, -0.8510742, -0.36669922, 1.5957031, -0.4453125, -2.2070312, 0.5786133, 2.9296875, -1.7978516, -2.0820312, 1.6865234, 1.4375, 0.52734375, 0.6933594, -2.0019531, 1.3105469, 1.3642578, 2.6542969, 2.3417969, 1.0195312, -1.7666016, -2.171875, 0.22375488, 2.3046875, 2.3359375, 0.9580078, -0.15539551, 1.0800781, 0.5854492, 2.1308594, -2.9257812, 0.82421875, 1.2392578, 2.0273438, 2.2148438, 1.4238281, -0.4868164, 1.2099609, -0.81591797, 1.28125, 0.46289062, -2.796875, 0.46948242, 2.6074219, 0.04421997, -0.41333008, -0.8154297, 0.03656006, 1.1796875, -0.7949219, 1.4023438, 1.1220703, -0.35327148, -0.41357422, -0.05050659, -1.6523438, 0.1295166, 1.875, 0.35668945, -2.6386719, 0.37475586, 0.45336914, 0.66552734, -1.3398438, -1.5234375, -1.0791016, -0.0869751, 1.5556641, -2.4589844, -0.25805664, -0.31054688, 0.17980957, 0.47045898, 1.5556641, -2.5234375, -0.55126953, 0.37451172, -0.5058594, 1.5556641, -0.23339844, 0.15393066, 1.6103516, -2.5039062, -0.60058594, -3.6816406, -1.3642578, 2.5585938, -2.4589844, -0.85009766, 0.7402344, -0.34472656, 2.0332031, -1.2714844, 1.4375, -1.9101562, -0.9628906, 0.69628906, -1.6455078, 0.23388672, -2.6503906, -4.3984375, 0.35131836, -1.4082031, -0.53466797, 0.83984375, 0.053466797, 0.24047852, 1.3818359, -0.22180176, -2.6269531, -2.0175781, -1.3476562, 1.1191406, -2.4121094, 0.16699219, 1.8476562, -0.18981934, -1.2685547, -2.2167969, 0.67822266, 1.2441406, 0.46679688, 1.3046875, -1.8105469, 0.7324219, -2.1015625, 2.3398438, 0.025787354, 1.2509766, -1.5039062, -0.26513672, -0.1484375, -1.3300781, 1.4853516, -0.65283203, 0.32104492, 1.3769531, 3.8554688, 0.023864746, 0.03994751, 0.23608398, 1.0625, 2.7011719, -0.13647461, -3.4980469, -1.0830078, -0.039611816, -0.31958008, -0.8798828, 0.52441406, -0.7792969, -1.6982422, -1.7802734, 1.3427734, -0.02658081, 2.6757812, 1.1503906, -2.9101562, 0.9628906, 1.0810547, -2.4785156, -1.0615234, -0.052124023, -2.0605469, 0.2890625, 1.8271484, -0.91015625, -0.24633789, -1.7773438, -1.3466797, -2.3105469, 2.1855469, 1.7822266, 2.8417969, 2.1425781, -2.2695312, -0.84472656, -1.1591797, 0.90234375, 1.3837891, 1.2275391, 1.0957031, -0.9199219, 3.1210938, 2.3320312, -2.1210938, -0.31103516, 2.3691406, -0.9067383, -0.5527344, -1.2373047, 0.2409668, -0.19812012, -1.7216797, 1.0810547, -0.42163086, 2.6992188, -0.32592773, -0.51123047, -1.0761719, -1.2421875, -0.65478516, 0.24597168, -1.5332031, 0.25097656, 2.6816406, 0.8911133, 0.59277344, -1.0429688, 1.8183594, 0.6738281, 2.2539062, -0.33007812, -2.2207031, -1.9619141, 1.6679688, -2.4960938, -0.8183594, 1.5742188, 0.43920898, -0.75683594, 4.7617188, 2.1367188, -1.5771484, 0.5258789, 2.0332031, -1.6054688, 1.5244141, 0.42089844, -0.1640625, 1.7685547, -0.50634766, -3.0273438, -0.026489258, 3.5234375, -0.27124023, 0.92822266, 0.47851562, -1.2646484, -1.4355469, -4.0546875, -0.7583008, -1.3671875, 1.9042969, -1.1777344, -1.8632812, 0.6401367, -1.7939453, 0.5292969, 2.9414062, -0.68066406, 0.2175293, 3.0800781, 0.22265625, -0.87841797, 0.59521484, 0.51904297, 0.6582031, 0.8642578, -0.30664062, -0.45092773, 1.2314453, -0.029632568, 0.42871094, -1.6181641, -0.53222656, 0.45385742, 3.1738281, -1.9267578, -1.4667969, 0.09185791, 1.7871094, 0.7026367, -1.9384766, -0.80322266, -1.9482422, 0.7675781, -1.0908203, -0.13879395, 0.42895508, -2.1621094, -1.7294922, -1.8583984, -1.1347656, 1.6474609, 0.9477539, -0.09881592, -1.7470703, -1.6835938, -1.4921875, -0.01838684, -0.38427734, -2.109375, -0.28588867, -1.4296875, 1.0595703, 1.4472656, 0.7207031, 0.22265625, 0.58691406, -1.2158203, -0.17492676, 0.52490234, -2.5566406, -3.5371094, 1.5761719, -0.80566406, 0.8051758, 1.7294922, -0.24169922, 0.16137695, 2.6835938, 0.5830078, -1.7265625, 1.3623047, 0.23937988, -1.4365234, 3.1640625, -0.057617188, 1.8144531, 0.9916992, -1.1308594, 0.9873047, -2.0605469, -0.19030762, 0.57666016, 1.0380859, 0.107788086, 0.48242188, 0.19543457, -0.05593872, 0.26757812, -0.40551758, 2.484375, 1.4707031, -0.3203125, -1.1455078, -2.8300781, -1.5009766, -1.0908203, -1.6132812, -1.0332031, -0.8935547, 0.025756836, 1.9980469, -0.003704071, 0.58251953, 2.3867188, 2.5566406, -3.0429688, 1.21875, -1.1171875, 1.8134766, 1.1289062, -1.8759766, -1.6591797, -2.3046875, -1.4296875, 0.9013672, 1.0517578, -2.734375, -0.7397461, -1.0800781, 1.4853516, 0.46240234, 0.6767578, 1.6982422, -0.101501465, -1.5126953, 2.9082031, 2.7714844, -0.16149902, 1.6044922, -0.36523438, 1.7802734, -0.640625, 3.8417969, 2.9589844, -0.2536621, 1.4140625, -0.32983398, 1.3095703, 0.74609375, -1.1640625, 1.0957031, -1.9033203, -0.1484375, -0.74072266, -1.8857422, -2.4628906, -0.43408203, 0.9375, 1.2705078, 2.0859375, 1.5, 0.83203125, -0.48901367, 1.5527344, 1.4199219, 0.5488281, 0.6977539, 1.2353516, 0.83740234, 3.515625, -0.88623047, 2.1640625, -0.119140625, 1.2714844, -0.67578125, 0.22302246, -0.48388672, 0.73876953, 2.0800781, 1.4667969, 2.1230469, 0.3564453, 2.2988281, 0.28735352, 1.1601562, 1.8623047, -0.875, -0.28930664, 1.7529297, 1.4863281, -0.7392578, -0.087524414, 0.50341797, 0.15124512, -1.4208984, -2.8242188, 0.040252686, -0.16333008, 0.16308594, 1.0029297, 0.26660156, 2.0332031, -1.2226562, -0.027709961, -1.3271484, 2.9804688, 0.93603516, -1.6767578, 1.3476562, -0.39990234, 1.7021484, 0.69091797, 0.5107422, 1.8369141, -3.7695312, 1.6601562, -1.8193359, -1.6376953, 0.09753418, 0.81347656, -0.33276367, 0.07891846, 0.055236816, 0.75634766, 2.0253906, 1.7001953, -0.45214844, 0.6323242, -0.14160156, 1.7841797, 2.1972656, 0.8876953, 0.65234375, 2.6425781, 1.0019531, -0.65478516, -3.6113281, 2.3417969, -1.2607422, -0.38989258, 1.7304688, -1.7275391, 2.7578125, -0.52978516, 0.78515625, -2.4375, 0.28393555, 2.6914062, -0.421875, -0.8432617, 0.24511719, 0.03567505, 3.3007812, 0.11505127, 0.010147095, 1.5175781, -2.1386719, 1.2666016, -0.57373047, 1.1884766, -1.2939453, 0.23510742, -1.3144531, 3.3554688, 0.5625, -0.9238281, 1.1914062, 1.6796875, 1.3955078, 0.14990234, 1.0117188, -2.390625, 0.10144043, -0.39575195, -1.3935547, 0.7709961, -0.9199219, -0.6982422, 1.1044922, 0.26049805, -0.57958984, -0.8745117, 2.6523438, 0.48461914, -1.7490234, 0.84375, 2.6953125, -0.84521484, 1.2402344, -1.9931641, -1.8769531, 0.91552734, 1.2041016, 0.9042969, -0.024215698, -1.2382812, -0.6816406, 0.6513672, 1.1396484, 0.3876953, -0.35742188, -0.62597656, -2.0800781, -0.34375, 3.546875, -1.7304688, -0.5722656, -0.034118652, -0.60839844, -0.88671875, 0.52001953, -0.18664551, 0.24084473, -2.3046875, -2.6445312, -0.78271484, 1.3623047, -1.3896484, 0.20690918, 3.5683594, -0.5292969, 2.4355469, -2.8828125, -3.8007812, -2.3261719, -0.6665039, 2.1191406, 1, -1.0068359, 0.9995117, 1.3974609, 3.1894531, -0.45874023, -1.4853516, -0.4411621, 0.028762817, 1.0830078, -0.43017578, 1.9511719, -0.16491699, 0.058654785, 0.20471191, 0.7758789, 0.08227539, 0.7133789, 2.5566406, 0.95166016, -0.40722656, -3.3203125, 0.8691406, -0.8989258, 0.23388672, -0.06854248, 1.0751953, 1.7080078, -0.10638428, -0.84521484, -3.3242188, -0.6123047]}, "B08XBC336Y": {"id": "B08XBC336Y", "original": "Brand: GeiSerailie\nName: 2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking\nDescription:
Features:

Nice gifts for BBQ lover:
This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

Practical and useful:
These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

Specifications:
Material: stainless steel, wood
Color: as the picture shown
Quantity: 2 pieces

Package include:
1 x Grill spatula
1 x Barbecue tong

Note:
Pointed parts include, please use it carefully and keep away from kids.
Manual measurement, please allow slight errors on size.
The colors may exist slight difference due to different screens.\nFeatures: Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier\nThickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ\nLong handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control\nMultiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat\nEasy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you\n", "embedding": [-2.2011719, 2.3964844, 2.0800781, -1.2158203, 0.18444824, 0.21618652, 0.52490234, -1.1953125, 1.7363281, 0.17541504, -0.19311523, -1.2119141, -1.0175781, -2.5976562, -2.0273438, 1.8427734, 1.2480469, 1.1787109, 2.21875, 2.3886719, 1.4160156, 0.46069336, 0.07141113, 0.52490234, 1.5791016, 0.10211182, 4.4804688, -3.3828125, 2.7695312, 1.4072266, 0.76416016, 0.07159424, 1.3603516, 2.1328125, -2.2382812, -0.83251953, 0.61572266, 2.4316406, 0.4724121, 0.11602783, 0.89404297, -0.18762207, 1.1728516, 2.3515625, -3.0507812, 1.7275391, -1.0214844, 1.9882812, -2.4785156, -2.6660156, 0.98339844, 2.3027344, -0.8515625, 0.8125, -2.9179688, 0.90283203, -2.1386719, -4.2734375, 2.1757812, -1.6542969, 2.453125, 0.13024902, -0.43310547, -1.5507812, 1.9375, -1.0390625, 0.8496094, -2.1738281, -0.9003906, -0.9458008, 0.9736328, -0.03363037, -0.41259766, 0.15319824, -0.70703125, -1.1572266, -0.54052734, 1.3115234, -1.4042969, 1.3476562, -0.55566406, 2.5039062, 1.0917969, -3.3085938, 0.48120117, -1.6894531, -1.8095703, 0.008041382, -0.07055664, -1.3925781, -1.7353516, 1.7265625, -1.2539062, -4.4023438, 2.4902344, -0.76171875, -0.1875, -0.60595703, -0.32714844, 1.4521484, -0.62890625, -1.0712891, 0.41210938, -0.119384766, -0.035705566, -1.8496094, 2.2441406, 0.8232422, -2.8652344, -0.7114258, -2.6835938, 0.69921875, 0.0793457, 0.9399414, -1.15625, 0.2397461, -1.2070312, 0.7602539, -0.29077148, 1.4541016, 1.140625, 1.3115234, -1.6328125, -1.3955078, -0.42260742, 0.51123047, 0.36547852, 3.0429688, 3.1953125, -1.1796875, -0.22875977, -1.1386719, -0.8769531, -1.7929688, -0.57373047, -2.0996094, -1.3535156, -0.07385254, -1.2109375, 3.1855469, 0.04864502, 1.6464844, 2.75, 0.74316406, -2.6738281, 0.80371094, -1.1269531, 1.0732422, -0.023986816, -1.8066406, -0.13415527, -1.1787109, 0.37768555, -0.90185547, 2.5097656, 0.5073242, 0.69677734, 0.34838867, 0.9506836, -0.20275879, -0.09613037, -2.4511719, 1.3037109, 0.73095703, -0.19824219, -1.6816406, -0.546875, 4.5429688, -0.27783203, 1.8154297, 0.5810547, -0.78808594, 0.046142578, 0.12408447, -1.0673828, -0.21582031, 0.4404297, 2.3691406, 0.46142578, -0.6220703, 1.9423828, -5.296875, 2.6816406, 2.09375, 0.5517578, -1.3339844, 2.7304688, -1.2099609, 1.6044922, 1.1835938, 2.6953125, 1.3076172, 1.0380859, 1.0205078, 1.2900391, -2.7070312, -0.6845703, -1.7978516, -0.7192383, 0.6621094, -1.078125, -1.5927734, -0.06793213, 0.25708008, -0.69384766, -0.2253418, -1.8359375, -0.9794922, 1.9003906, 2.1992188, 0.91796875, -1.0917969, 0.9980469, -0.014511108, 1.3935547, -2.8789062, 0.96728516, -0.21069336, 2.3261719, 2.2148438, -0.94970703, 0.06549072, -3.8964844, 3.390625, 0.71972656, -0.5161133, -0.47558594, 3.1035156, 0.033813477, 1.3789062, 1.1201172, -0.17041016, 0.12756348, 0.65966797, -0.56689453, -0.10467529, 1.0517578, -2.6992188, -1.0761719, 0.68896484, 1.3105469, -2.3554688, -0.36669922, -0.59472656, 0.23657227, -1.3447266, -0.23474121, 0.3425293, 0.21740723, -2.8710938, -1.4765625, 2.3417969, 1.1621094, 1.8310547, -0.07751465, 1.1933594, -1.3876953, 1.3574219, -3.9785156, 1.6738281, 2.2890625, 0.35205078, 1.7529297, 0.3334961, 1.5839844, -0.9008789, 1.1142578, -0.60791016, -1.1796875, -0.84375, 0.62841797, 0.8457031, 0.2010498, -2.0019531, 2.7910156, 0.53515625, -0.50927734, -0.17871094, 0.3293457, -1.6171875, -0.27001953, -0.38208008, 2.0546875, -1.9003906, -1.6445312, -1.2890625, -2.6933594, -1.8544922, 0.8925781, -0.023345947, 4.9492188, -0.14172363, -1.3945312, 4.2578125, -0.97998047, 0.49023438, 1.4394531, 0.46777344, -0.9873047, -1.59375, -0.36254883, 2.8730469, 0.8901367, 0.015701294, -0.32104492, -0.54833984, 0.5859375, -2.578125, -0.4465332, 1.5673828, -3.3613281, 0.37841797, -0.10028076, -0.18347168, -1.7802734, 0.7734375, -2.484375, 0.19030762, 0.27441406, -0.6245117, -0.01586914, 2.390625, 0.8847656, -2.5, -1.3896484, 1.5390625, -1.3339844, 3.1347656, 1.3447266, 0.052825928, 0.5292969, 0.12670898, -0.73095703, -1.3457031, -1.7041016, -1.0166016, -1.5839844, -1.4853516, 1.8007812, 0.13232422, 0.3088379, -0.14367676, -2.7226562, -0.038909912, -1.625, -3.3417969, -1.5234375, 0.10430908, 1.0107422, 0.39746094, -2.1035156, 0.87890625, 0.87353516, -3.3867188, -0.1977539, -0.9321289, 1.1220703, -0.29223633, -1.5205078, 1.0869141, 0.17504883, 0.6660156, 0.15966797, 0.5517578, -0.0053863525, 0.92871094, 0.58496094, -2.34375, 0.49926758, -1.4521484, -0.27783203, 1.7998047, 0.72216797, -1.703125, -1.1943359, -2.0390625, 1.8154297, 2.6367188, -0.97021484, 2.9082031, -0.19445801, -0.6269531, 0.3527832, -0.95166016, 1.0380859, -2.1777344, 2.234375, -2.40625, 0.9760742, -2.1230469, 1.6181641, -1.203125, 0.06225586, -1.5966797, 2.3144531, -2.625, -0.32421875, -2.234375, -3.3925781, -0.9091797, 0.12158203, 2.1503906, -0.032562256, -1.2939453, -0.5175781, -1.9921875, 0.30126953, -3.0585938, 1.8222656, -1.8164062, -0.12756348, 1.3574219, 0.52001953, 0.72314453, 1.6464844, -0.6542969, 1.2402344, -1.1669922, -1.7001953, -2.4609375, 1.1640625, -1, -1.0742188, -0.68652344, 3.2324219, 0.4597168, 2.5019531, 0.13989258, 2.1113281, 0.23059082, 2.1210938, -0.48364258, -1.6240234, 1.3330078, 0.7373047, -0.2705078, -0.87402344, 1.3105469, -2.3984375, -2.2226562, 2.3457031, 0.30688477, 1.5292969, 2.2675781, 2.0097656, 0.81347656, 0.17907715, -2.6015625, 1.8486328, 0.19030762, -0.66748047, -3.1660156, 2.1933594, 0.16369629, -2.6289062, 0.78271484, 2.5371094, 0.6977539, 1.1787109, 2.4785156, -0.13476562, -2.3476562, 1.5214844, -0.25390625, 2.0371094, 0.21765137, 1.2734375, -1.6025391, -2.3359375, 0.83935547, -0.54052734, 1.9140625, -2.8828125, -0.66845703, 2.7207031, -0.82177734, 0.40820312, -0.06707764, -0.33813477, -1.9570312, -3.7480469, 1.0859375, -0.8041992, -2.109375, -0.8535156, -1.1445312, 2.1074219, -1.3535156, 2.7734375, -0.26171875, -0.69628906, -0.1340332, 2.0996094, -1.9951172, -0.42138672, -1.2509766, 2.3457031, -0.58984375, 1.2275391, -1.5136719, -1.0673828, 3.7265625, -4.1914062, 0.9501953, -1.2998047, 0.068237305, 0.7109375, 0.8496094, -0.14660645, 1.3603516, 1.6298828, 0.36010742, -1.2548828, -0.69384766, -0.31469727, -0.50341797, 0.09527588, 0.48364258, -2.7578125, -1.40625, 0.5654297, -0.25732422, 0.9145508, -0.72998047, 3.7871094, 0.93115234, -3.4667969, -0.8388672, -2.3964844, 0.012329102, -1.0185547, -2.9121094, 0.43823242, 2.1972656, 1.2324219, 1.8740234, 0.47094727, 0.15161133, 6.2070312, 1.1083984, -1.8417969, 2.28125, -0.8881836, 0.2241211, -0.09875488, -0.69140625, 0.9453125, 0.55810547, 1.0478516, -1.9589844, 2.2871094, -2.2460938, 1.8730469, 1.2714844, -0.66308594, -1.2050781, -2.1289062, 1.0283203, -0.7089844, -0.40722656, 0.33276367, -2.4804688, 0.065979004, 0.2614746, 1.4160156, 0.6816406, 0.6147461, -2.3652344, 0.6308594, 0.70410156, -2.4863281, -0.9584961, -0.9472656, 3.9785156, -0.7475586, -0.42138672, -1.515625, 0.47705078, -0.45214844, 0.2993164, 1.2900391, 0.064575195, -1.8203125, 0.7363281, 0.066101074, -1.7050781, 3.4550781, 1.3125, -2.8515625, -1.4150391, 0.11968994, -1.78125, -1.9931641, -0.52734375, -0.63378906, 0.38110352, 0.060791016, -1.7626953, 2.4277344, -1.5634766, 1.1933594, -1.1035156, 1.5058594, -0.14038086, -0.5332031, 5.0429688, -1.7783203, -0.04043579, 0.34326172, -2.5234375, -1.3427734, -0.7158203, 0.82666016, -0.7714844, 0.79052734, 0.41357422, 0.47314453, 0.124694824, -0.5493164, 0.3642578, 0.10021973, -1.8496094, 2.1835938, -0.79785156, -0.11828613, 0.78271484, -1.4433594, 1.8164062, 0.19433594, 0.08148193, 1.0058594, 1.3857422, -1.6621094, -1.0507812, -0.7626953, -0.6611328, 0.4362793, 2.3476562, 1.3925781, -0.4428711, -0.74316406, -0.47607422, 0.25097656, 0.1328125, -0.7001953, 1.0576172, 0.6713867, -1.1875, 1.0703125, 1.0439453, 2.0761719, -0.94970703, 3.8789062, -1.6621094, -3.5214844, 2.5761719, 2.1542969, -3.4199219, 0.6948242, -1.6474609, -2.3125, 0.12902832, 0.31347656, -2.0957031, 1.8330078, 1.6533203, -1.4277344, -0.28515625, -3.90625, -1.0097656, -0.6479492, -0.3869629, 0.8569336, -1.1953125, -3.0292969, 1.8349609, 0.4104004, -1.1757812, 0.89941406, 1.3896484, 3.1972656, -0.42333984, -0.6401367, 0.08850098, -0.7480469, 0.34326172, -0.20227051, -2.6679688, -2.2460938, 1.1347656, 2.9550781, 1.9501953, -1.0322266, -0.08331299, 1.1416016, -1.8964844, 1.8525391, -1.2910156, 2.2929688, -1.5175781, 1.0449219, 2.328125, -3.5117188, -0.46704102, -1.0449219, 2.625, 0.64501953, 1.8408203, 0.43164062, -1.8564453, -1.5400391, 0.60498047, -1.0380859, -3.6855469, -0.49023438, -0.55078125, 1.0429688, 0.93408203, -0.35961914, -0.5214844, -2.0957031, -1.0361328, -1.4365234, 2.1582031, -0.061767578, 0.95166016, -0.3557129, -2.2089844, 0.7416992, 0.32641602, -1.5859375, 0.24377441, 2.2753906, -1.6914062, -1.5068359, 0.4248047, 0.026947021, -1.0107422, -1.6210938, 1.6074219, -0.4411621, 0.28955078, -0.26171875, 0.3317871, -1.8798828, 0.09625244, -0.091796875, -1.0214844, -0.96875, -0.24841309, 2.8730469, -2.5664062, -1.7207031, -0.023773193, -2.5, 2.2011719, 2.2988281, -0.75927734, 1.8447266, -0.042297363, -1.9042969, -1.0429688, -0.8701172, 0.31274414, 0.5317383, 0.5996094, -0.6176758, 0.35668945, -3.0839844, -0.13903809, 0.30273438, -0.8022461, 1.1035156, -1.4931641, -0.89404297, 3.7675781, -0.8754883, -2.2285156, -0.08947754, 0.39746094, -0.80810547, 0.76953125, -0.16259766, 2.5878906, 1.0380859, 0.25561523, 0.19726562, -2.8789062, 1.2685547, 0.8798828, -2.2070312, -2.1425781, -0.55029297, -0.95410156, -2.0234375, 0.9223633, 0.5708008, 2.0507812, 0.42700195, -1.5332031, -0.51123047, 0.96240234, -2.8222656, -0.11364746, 0.8808594, 0.87841797, 0.17175293, 3.5195312, -1.8886719, -1.5419922, 2.4453125, -1.4560547, 0.75927734, 0.90234375, -1.53125, -0.9711914, 0.23876953, 1.8339844, -2.3066406, -2.5039062, -3.7949219, 0.6459961, 1.0888672, -0.96191406, -1.8212891, 2.5625, 0.81103516, 4.7421875, 1.9521484, -0.60253906, -1.1181641, -0.9453125, -0.35791016, 1.6494141, 0.23779297, 0.3642578, -0.07550049, 2.1152344, -0.74072266, -2.0488281, 0.48901367, 0.41601562, 1.21875, -0.15588379, 1.6035156, 0.15258789, 3.5839844, 3.5136719, 0.11273193, 2.7441406, 1.2363281, -0.33203125, -0.46166992, 3.8007812, 0.37329102, -2.4238281, -1.4052734, 0.6923828, -0.55371094, 1.3701172, 0.45751953, 1.5068359, -1.0224609, -1.5488281, 2.2460938, 0.84765625, -0.3400879, -0.578125, 2.3261719, -1.1123047, -0.77246094, -0.5957031, 0.080322266, 2.1503906, 1.9667969, 0.35839844, -1.2138672, -1.5859375, 1.8115234, -2.8105469, 2.8769531, 1.0419922, -0.82958984, -2.5195312, 2.6074219, 2.3457031, 0.26586914, 2.0800781, -0.10028076, 0.73095703, 0.79296875, 0.484375, 1.4873047, -0.87353516, 0.20678711, 0.60302734, -2.0195312, 0.33764648, -2.7519531, -0.43652344, -1.7236328, 1.1181641, 3.1503906, 0.39770508, 2.1484375, 0.8876953, -3.3925781, 1.4111328, 1.9248047, -0.0099487305, -1.0439453, 0.12597656, 1.5263672, 0.22521973, -1.9091797, 1.5400391, -0.1706543, 0.09832764, 0.21313477, -2.7167969, 0.075805664, 1.5947266, 0.5644531, 1.1816406, 1.1533203, -2.1054688, -1.7158203, 1.6376953, 2.5136719, -1.0117188, 0.8720703, 0.89697266, 0.9091797, 0.8647461, 1.0820312, 2.28125, -1.5966797, 0.7915039, -0.55615234, 0.41137695, -0.45361328, -0.21008301, -2.53125, 0.41064453, 0.4404297, -1.1064453, -0.18762207, 3.0234375, 1.1582031, 2.7089844, 1.1972656, -0.8930664, -2.8339844, 0.57714844, 1.9033203, 0.27539062, -0.24365234, -0.37182617, 0.17126465, -1.1445312, -1.1201172, 0.45239258, 1.1699219, 0.8232422, -2.25, 0.6489258, -0.18554688, 0.47338867, 1.5546875, -1.8535156, -1.4296875, -2.6523438, 0.8105469, 0.74072266, 0.98876953, 3.3574219, -0.7944336, -1.4921875, -1.5517578, -0.09918213, -0.7626953, -1.1689453, -3.6367188, -0.41723633, 3.734375, 1.4736328, 0.32348633, -1.5849609, -1.9707031, 2.2421875, -1.5615234, 0.38549805, 0.41552734, -1.328125, -1.5341797, -0.14233398, 2.75, 1.1855469, -1.6240234, 0.29003906, -0.18200684, -0.91845703, -0.39135742, 2.7851562, -0.72216797, -1.1474609, 1.5185547, 3.6425781, 0.50634766, -0.41357422, 2.4179688, 2.8945312, 2.7421875, -2.265625, 1.4619141, 0.76660156, 4.234375, 0.07867432, 0.5805664, 0.4868164, -1.0673828, -0.46533203, 0.6425781, -1.0302734]}, "B077SP5BJP": {"id": "B077SP5BJP", "original": "Brand: GasOne\nName: GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black\nDescription: \nFeatures: \u2713 propane adapter that saves money - Gas one's propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can't recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money!\n\u2713 STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One's propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting\n\u2713 extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter's solid bras materials ensure longevity as well as Universal usage\n\u2713 GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience\n\u2713 easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you're ready to refill! / fits Qcc1/Type1 & 1lb propane tanks\n", "embedding": [0.5258789, 0.8183594, -0.30981445, 1.0722656, 0.4658203, -0.6303711, 1.1845703, -0.75, 1.3339844, 0.7597656, 2.2324219, 1.2792969, 1.1982422, -2.5722656, 0.65283203, 0.38134766, -0.122558594, 0.77685547, 2.8476562, 1.4345703, 3.4140625, 1.7412109, 0.3112793, -1.0615234, 0.5786133, 0.3701172, 2.8632812, -1.9609375, -1.1162109, 1.8398438, 1.0449219, 0.067993164, -2.5664062, 0.45898438, -0.22265625, -1.6464844, -0.4296875, -1.0527344, -4.9492188, -1.7470703, -1.4199219, 1.7851562, 3.3164062, 0.65966797, -1.8515625, -0.11236572, 2.1191406, -0.4411621, 1.2001953, -0.70654297, -0.31420898, 2.2675781, -0.79345703, -0.36572266, -0.04916382, 0.9926758, 1.8632812, -3.2851562, 0.34204102, 1.4140625, 1.7978516, 0.7011719, -0.91845703, 0.059631348, -0.65966797, -0.12719727, -2.2519531, -0.7504883, -1.4628906, 0.72509766, 0.2956543, 1.6376953, 0.98095703, -0.71533203, -3.2050781, 1.5556641, -4.4296875, 0.3930664, 1.1240234, -1.0039062, -1.5087891, 0.7553711, 0.09185791, -1.2050781, -0.2631836, -0.13220215, -0.4321289, 2.7792969, 0.8510742, -0.4519043, -3.0234375, 2.28125, -3.1835938, -3.2109375, -0.8383789, -0.064697266, 0.8354492, 3.296875, 3.0253906, -0.0209198, -1.0273438, -2.3632812, -1.4990234, 2.6992188, -1.2509766, -0.73046875, -1.2929688, 0.0362854, -3.0292969, 1.2714844, -0.74072266, -1.8720703, 2.4296875, -1.46875, -0.018035889, -1.8818359, 1.1396484, -1.6699219, 2.1679688, -0.0036239624, 3.2714844, -0.24682617, 1.9355469, -0.94091797, -0.5864258, 1.4423828, -2.1914062, 1.4990234, 2.6816406, 0.87060547, 0.734375, 0.092041016, 2.8261719, -1.2265625, 0.40039062, -2.1953125, -0.09857178, -3.0292969, -0.0357666, -2.5449219, -5.140625, 1.4433594, 0.061584473, -0.4074707, -4.625, 1.7539062, -2.53125, -0.22680664, 0.38891602, -0.82958984, 1.9355469, -3.4160156, -2.75, -1.1035156, 2.2714844, 0.7480469, -0.05633545, -2.6484375, 0.40527344, 2.3046875, 0.8808594, -0.6435547, -0.3161621, 0.9453125, -0.08850098, -2.2285156, 2.0546875, 0.18811035, -2.1054688, -0.50634766, -0.9506836, -0.75146484, 0.7480469, 2.0292969, -1.2890625, -0.86035156, 2.0175781, 1.2441406, 1.1689453, 0.5678711, -2.5839844, -0.921875, -0.9589844, -1.6679688, 1.5673828, -0.097351074, -3.0585938, -1.4726562, 0.34204102, -1.2529297, -0.15185547, 0.77783203, -1.2265625, 0.8876953, 0.1965332, -2.9296875, -2.5957031, 0.4650879, 0.86035156, 1.5830078, -0.119506836, -1.0556641, 0.08703613, 0.6010742, -0.36547852, -1.1787109, 1.7460938, -0.5917969, -1.4169922, 1.5302734, -2.0292969, 1.7285156, 2.7265625, -0.124938965, -0.7314453, -1.8251953, 2.4433594, 1.6679688, 1.3798828, 0.6386719, 0.033203125, -0.18334961, 2.6113281, -0.17370605, 3.2207031, 0.6699219, -1.5458984, 0.19165039, -2.6269531, 0.22216797, 2.5507812, 1.5478516, -0.9560547, 0.37817383, -0.16796875, 1.4697266, 0.44018555, 0.24963379, 0.7885742, 0.3425293, 0.52197266, -0.19921875, -1.9462891, -1.3164062, -1.5771484, 1.5263672, -1.4648438, 0.17993164, 3.2675781, -1.4648438, 2.2324219, -0.2253418, -1.8876953, -1.53125, -3.3789062, 1.1318359, -0.20544434, 2.5820312, -0.17932129, -1.7148438, 1.5068359, 0.06549072, -0.009933472, 0.16357422, 1.6933594, 0.86865234, 2.2792969, -1.3349609, -1.4501953, 1.4667969, 0.42456055, 2.0507812, 1.5878906, -1.7832031, -0.5073242, 2.5019531, -2.7363281, 2.5605469, 0.6743164, 0.64453125, 2.390625, -3.2597656, 1.3261719, -1.7353516, 2.9550781, 1.0673828, 2.3007812, -0.9316406, -1.0751953, 1.3554688, 3.8457031, -1.0283203, -1.0566406, 2.6914062, 3.2148438, 0.82714844, 1.8759766, -0.51953125, -0.5004883, -0.08477783, -0.064941406, -0.42236328, -0.19946289, 1.0917969, 3.421875, 0.9863281, -0.70214844, -0.037872314, 1.1542969, 1.7763672, -0.98828125, -1.1376953, -1.3144531, -0.119018555, -1.0253906, -0.40625, 2.5253906, -1.1816406, -0.31762695, 1.0214844, 0.9086914, 1.4882812, 1.4462891, -0.71435547, -0.28295898, 1.8144531, -1.2734375, 0.20837402, -0.76660156, -0.23254395, 1.8710938, -0.5, 2.1601562, -0.60839844, -1.2158203, 2.1015625, -1.6074219, -2.96875, 1.1396484, -1.1074219, -1.7119141, -0.59228516, -0.0050354004, 3.3574219, 0.3647461, 1.8330078, -0.48388672, 0.59472656, 0.25683594, -3.8710938, -0.081970215, 2.1308594, -1.5566406, -1.0810547, 1.0732422, -1.1679688, 0.3984375, 3.2148438, -0.67041016, 0.8598633, 1.4101562, 0.53222656, -0.3786621, -0.053009033, -1.6806641, -2.4824219, 3.5859375, -3.5429688, -0.6899414, -2.0546875, -0.022857666, -2.2734375, -1.5986328, -1.9130859, -2.265625, 0.64160156, -0.19506836, 0.8120117, -0.31884766, 1.2158203, 0.5175781, -0.38061523, 1.6337891, -0.92822266, -4.2929688, -0.9453125, -1.3779297, -1.9121094, -0.7763672, -3.8125, 1.8369141, -1.4003906, -1.9199219, -0.13000488, 0.5419922, -1.1953125, -1.8623047, 2.7246094, -0.65478516, 0.53125, 1.890625, -0.10467529, -1.9609375, -0.13647461, 1.4951172, -0.9550781, -1.25, -1.7109375, 0.94140625, -0.077819824, -2.3066406, -0.28295898, -0.5288086, 0.099975586, -0.3942871, -2.0273438, 0.34643555, 1.9765625, -0.77490234, 1.5986328, -1.7529297, -0.22644043, -3.8867188, -0.39379883, 2.7753906, 0.67871094, 4.5664062, 1.0878906, 1.5800781, 0.546875, -0.08087158, -0.8105469, -0.07531738, -1.0986328, 2.4824219, -1.2783203, -0.95654297, -2.0898438, 2.671875, -3.0546875, -0.23388672, -0.04269409, -1.9765625, 3.3964844, 1.5185547, 1.3085938, -0.5180664, -0.52246094, -0.123046875, 0.6586914, 0.064086914, 1.2871094, 2.7363281, 0.8671875, 0.21118164, 0.94921875, 0.38256836, 0.9111328, 0.25097656, 1.2412109, -0.7314453, -1.4541016, -0.1352539, 0.7104492, -1.0898438, -0.5864258, 0.44213867, -0.37719727, 0.9902344, 0.29516602, 0.94628906, 1.5644531, -0.8774414, -0.50439453, 0.58935547, 1.5351562, 0.5419922, 0.1842041, 0.49267578, 0.5410156, 0.5625, 0.4267578, 2.2480469, 0.77685547, -0.1451416, -0.8203125, 1.3125, -1.8398438, 1.3876953, 0.21362305, 0.84814453, -0.3173828, 0.8925781, -2.1640625, -2.1347656, -1.2910156, -3.7324219, 0.16955566, 2.5742188, 0.80371094, -1.8925781, 0.4440918, 0.9580078, 1.0253906, 2.515625, -1.3222656, -1.1376953, -3, -1.7792969, -0.8769531, -0.2902832, 1.8476562, 1.2675781, -2.7128906, -0.46704102, -0.41357422, 2.4824219, -0.3244629, 0.5527344, -0.9160156, -1.7929688, -1.5732422, 1.9873047, -0.79785156, 2.3691406, -0.4182129, 1.2714844, 2.9003906, -3.5527344, -1.1015625, -0.49438477, -4.2148438, 1.1787109, -1.2480469, 1.1679688, 3.5, 2.3164062, -0.6376953, 1.1308594, 0.76708984, -4.0273438, -1.4326172, -0.6816406, 3.046875, -3.2128906, -0.8339844, 0.9165039, 2.0742188, -2.0488281, -1.9130859, -0.3466797, -0.40551758, -1.9658203, -1.4882812, -0.7285156, 0.70703125, 1.2275391, 0.11016846, -1.8378906, -0.33911133, 1.0927734, -1.6445312, -0.81884766, -1.5126953, 2.1640625, -1.0615234, 1.7226562, -0.02758789, 3.2480469, 2.2460938, -3.1582031, 0.59814453, -1.9365234, 1.2470703, -1.2167969, -1.3896484, -2.2011719, -0.9814453, 0.64990234, -0.07232666, -1.5498047, -0.84228516, -0.5957031, 0.52978516, 0.76953125, 2.0351562, 2.375, 0.38549805, -3.0761719, 1.4091797, 1.0898438, -1.5332031, -1.4287109, -0.54296875, 0.6035156, -2.1660156, -0.6748047, -2.2636719, -1.0175781, -0.2578125, -0.8442383, -2.984375, 0.68115234, 1.6162109, 0.09472656, 1.0234375, -0.24621582, -0.08660889, 0.029434204, 3.1582031, 0.71728516, -0.1463623, 1.0322266, -0.15209961, 0.34570312, 2.3964844, 0.24206543, 0.10461426, 0.7705078, -0.3635254, 1.3291016, 0.15600586, -0.08648682, -1.4277344, -1.0166016, -1.3232422, -1.3818359, 3.8632812, -1.8837891, 1.3457031, 0.52783203, -1.265625, -1.7890625, 2.3789062, 3.171875, 1.6298828, -0.25854492, -0.19311523, 1.5878906, 2.8945312, 1.6787109, 1.5214844, 0.13903809, -1.0478516, -0.8925781, 0.22961426, 1.6171875, -0.20605469, 0.28198242, 1.5869141, 1.4306641, 2.6308594, 1.8759766, 0.7919922, -0.92871094, 0.55078125, 0.63134766, -0.67285156, -1.3466797, -0.22546387, 0.79785156, 2.3769531, -1.1083984, -0.51660156, 1.2675781, 3.4550781, 0.5805664, 2.1210938, 1.0996094, 1.0341797, -1.8867188, -2.1875, -2.4296875, -1.5722656, 0.6113281, -0.39697266, -1.0302734, 1.2714844, 1.5722656, 1.8271484, 0.78808594, 1.4501953, 0.05697632, 0.03756714, 0.60546875, -2.1074219, -1.4384766, 0.5551758, -1.9267578, 1.8056641, -1.5839844, 1.5214844, 0.29956055, -0.33447266, -0.62402344, -1.6064453, -1.0302734, 0.38989258, 0.26782227, 0.13903809, -0.96777344, 3.5058594, 1.1435547, 0.6010742, -0.57714844, -0.9038086, -1.6357422, 2.3222656, 2.1914062, 2.0292969, -1.4804688, 0.121032715, -1.7792969, -6.6679688, 0.15039062, 0.8046875, 0.67089844, -0.29858398, -1.7880859, -1.2861328, -0.076538086, 0.101501465, 0.21728516, -1.9121094, 0.7763672, -2.0957031, -0.4934082, 1.5800781, -0.3630371, 0.026794434, 1.359375, 0.23254395, -2.0976562, -0.103149414, -1.8984375, -2.5058594, -1.6582031, -1.6367188, -0.78564453, 0.1665039, -0.9692383, -0.029418945, 1.625, 0.9145508, -4.2773438, 0.5292969, -2.5976562, 0.1694336, 1.6660156, -1.2382812, 0.38061523, 1.3017578, 0.107299805, 2.0839844, 3.6152344, 3.2734375, -2.6640625, 0.40185547, -0.32885742, 0.50927734, -0.84472656, 1.0722656, 1.6943359, -0.6879883, 0.26171875, 3.4316406, 0.032928467, -1.3701172, -2.0996094, 0.06518555, 0.64746094, -2.3183594, 0.7998047, 0.6489258, -0.16418457, -0.17810059, -1.3378906, -0.027679443, 0.94384766, 0.109558105, -0.8959961, 0.31079102, -2.1757812, 1.5761719, 0.60839844, -2.1503906, -4.3164062, -1.0976562, 1.8261719, 0.94384766, -0.13317871, 1.3486328, 0.57910156, -0.14013672, 0.5551758, -1.1484375, 2.6757812, 1.3867188, 1.015625, -1.1484375, -1.4628906, 1.8525391, -1.7392578, -0.22924805, 1.3984375, -1.5029297, 1.1943359, 0.34545898, 2.1875, -2.171875, -0.3173828, -0.97753906, -0.77246094, -1.3964844, -0.47436523, -0.4987793, -4.2617188, 1.5332031, 0.28393555, -2.28125, -4.421875, 1.9443359, 0.035614014, 0.09484863, 2.1582031, 1.3359375, -3.0019531, -1.5898438, 0.4572754, 0.3552246, -1.1796875, -0.92626953, -1.8134766, 0.31933594, 0.35327148, -1.8134766, 1.5996094, 2.4101562, 2.0722656, -0.7475586, 0.082214355, -0.71777344, 0.8046875, 0.61621094, 1.9746094, 3.7890625, -0.37695312, 1.4511719, -0.14526367, 1.2871094, 2.0761719, -1.8222656, -0.15039062, 1.4345703, -0.28051758, 1.4306641, -2.8125, -0.5678711, -1.7246094, -2.4296875, 0.27612305, 0.3425293, 2.9023438, -3.6445312, -1.3701172, -2.1542969, 0.07287598, -1.3476562, 1.2548828, -1.984375, -1.0263672, 0.7368164, 1.1259766, 1.6640625, 2.1230469, -1.5498047, 0.3642578, -1.0595703, 2.7714844, 0.56591797, 0.31396484, -4.1796875, -1.5263672, 1.1337891, 1.7412109, 0.21447754, 0.7626953, 0.7001953, 1.0488281, -0.114868164, -0.30004883, 1.2070312, -0.73876953, 0.45385742, -1.0332031, 2.3769531, 3.515625, -0.875, 3.5019531, -0.10797119, 0.28271484, -3.3476562, 2.1875, -1.4775391, -1.3535156, -1.4365234, -3.2851562, 0.84521484, -1.2666016, 0.4633789, -4.1367188, -0.86865234, 0.5961914, -1.6621094, 1.2626953, 0.86376953, -0.91308594, 2.2890625, 1.1279297, -0.79541016, 0.4831543, 2.2539062, 0.045837402, -0.21875, -0.65966797, 0.7578125, 0.073913574, -1.7548828, 2.7402344, -0.85058594, 0.19519043, -1.5429688, 2.0585938, 1.4306641, 0.98046875, 2.0078125, -0.9057617, 0.5942383, 0.34204102, -0.890625, -0.23046875, -1.8115234, 0.43676758, 0.34399414, -0.7001953, -0.1394043, 0.045684814, 1.3642578, 1.3417969, -2.4179688, -0.41674805, 1.4853516, -1.6591797, 0.6269531, 1.1679688, -1.7792969, -1.7451172, -0.87158203, 1.7910156, -3.796875, 1.3867188, -0.61035156, 1.3662109, -1.9355469, -1.0751953, -0.12988281, 0.090148926, -0.78759766, -0.17480469, 0.30541992, -0.30688477, 0.19445801, 0.3173828, -1.4726562, 1.6748047, 0.92089844, 0.09857178, 0.9116211, 0.08282471, -1.2851562, 1.1035156, -1.5351562, 1.3183594, 2.6855469, 3.1738281, 2.2695312, 1.9355469, -0.8886719, -1.6933594, -0.171875, -2.5292969, 1.6552734, -0.26757812, -2.2285156, 0.46704102, 1.78125, 2.1933594, -1.7675781, -0.32055664, -0.26733398, 0.7011719, 1.8984375, -1.3476562, 1.4101562, 0.70996094, -0.39746094, -0.107788086, 4.5429688, 3.3710938, -1.7451172, -1.1767578, 0.46313477, -1.5869141, -1.3818359, -0.18884277, -0.27856445, -1.2548828, 0.5698242, 1.6523438, 3.0292969, 1.5908203, -0.69677734, -1.0517578, 2.4023438]}, "B086V7Y4LR": {"id": "B086V7Y4LR", "original": "Brand: Vailge\nName: Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige\nDescription:

Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

New product Promotion\uff1a 15% Off.

Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

Advantages from other covers:

\u25baMade of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

\u25baLarge padded handle loops for easy fitting, removal, hanging and convenient storage.

\u25ba Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

\u25ba Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

\u25baThe cover is easily folded for storage and won't take up a lot of room whilst not in use.

\u25baEasy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

\u25baNote: Please allow your grill to cool before covering.

Kindly Note:

1.Please Measure Before Purchasing.

2.Be sure the cover is of the same shape as your grill.

3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

\nFeatures: Size: This bbq grill cover measures 72\" Length x 26\" Width x 47\" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill's dimensions for proper fit before purchasing.\nSuper Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc.\nUv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant.\nHandles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting.\nGood Shopping Experience: We think you're going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.\n", "embedding": [0.80078125, 1.5507812, 3.703125, -1.8935547, 0.10217285, 0.8725586, 0.18481445, -2.2734375, 2.1875, 2.9804688, -0.9921875, -0.78466797, -0.25585938, -4.3476562, 0.34814453, 1.3808594, 0.32226562, 2.6582031, 3.9648438, -0.96484375, 1.7822266, 1.5273438, 1.0839844, 1.4335938, 1.1650391, -1.3808594, 4.1289062, -2.6347656, 0.076538086, -0.73339844, 1.9140625, 0.26464844, 0.95458984, 2.1152344, -2.6601562, -1.6894531, -1.3457031, 1.5585938, 0.47143555, -1.3867188, -1.7324219, -1.78125, 3.5292969, 1.5126953, -2.0976562, 1.1064453, -1.7236328, -0.27026367, 0.5776367, -3.4277344, 1.6611328, 2.6699219, 1.9169922, 0.8769531, -3.1152344, 2.640625, 0.4350586, -2.2832031, -0.19396973, -0.984375, -0.26635742, -1.1708984, -0.8925781, 3.7226562, -1.5654297, -0.96435547, -0.19677734, -1.0947266, 1.0830078, -0.6176758, 1.6435547, 0.2705078, -0.2998047, 0.82666016, 1.7353516, -0.9355469, -1.6425781, 1.9833984, 0.3322754, 0.16625977, -0.4453125, 5.6328125, -1.0322266, -2.5898438, -0.2746582, 0.4831543, -2.2421875, -2.15625, 2.3261719, -1.7685547, 0.5073242, 1.8525391, -2.5234375, -3.875, 0.8925781, -2.1542969, 2.8183594, 0.5498047, 1.5605469, 0.96240234, -1.8974609, 0.5234375, -2.2675781, 0.24499512, -2.6855469, -2.3105469, 2.171875, -1.8642578, -0.27392578, -0.035461426, -0.5703125, 0.05303955, -1.2363281, 0.9765625, 3.5019531, -0.14990234, -2.0761719, 1.8769531, 0.4831543, 1.7753906, 3.8847656, -0.08892822, 0.093322754, -0.95751953, 0.6386719, -0.33569336, 0.48950195, 1.25, 4.078125, -0.55566406, 1.7773438, -1.3095703, 1.6191406, 1.6835938, -0.7138672, 0.30615234, -0.8745117, -0.1463623, -4.1835938, 1.4277344, -0.8222656, -1.8271484, 0.9008789, -1.4755859, -2.9023438, -0.3984375, -0.44360352, 3.0117188, -1.6152344, -3.3574219, 2.0488281, -2.2070312, 0.3659668, -0.41918945, 0.43579102, -0.7944336, 0.5810547, -4.859375, 4.6679688, 3.140625, 2.8261719, -2.0371094, 3.0820312, 0.18566895, 2.3457031, -2.6679688, -0.33935547, 0.6347656, 0.0011138916, 2.3808594, 0.053344727, -1.1855469, 1.2001953, 1.1376953, 1.2226562, -0.8413086, 0.45458984, 0.87353516, 0.6586914, 0.28637695, -0.068481445, -2.2714844, -0.9975586, 0.87597656, -0.8955078, -1.2939453, 0.47631836, -0.30615234, 0.4152832, -0.8564453, -2.1660156, 0.9042969, -1.0966797, 0.2770996, -2.8320312, -2.296875, -1.2421875, -1.2392578, -1.5654297, -0.4194336, -1.1523438, -2.5800781, -1.234375, -0.28588867, -2.1484375, -1.2109375, -1.5634766, 0.48754883, -1.0830078, 0.3017578, -0.36499023, -2.4433594, 2.8535156, 1.8300781, -1.203125, -0.24279785, 2.1191406, -1.0976562, 1.5820312, 0.51220703, -0.9980469, 0.28881836, 0.25976562, 2.8691406, 1.2460938, 1.8623047, 1.5751953, 0.73339844, -2.1679688, -1.3955078, 1.1728516, 0.6411133, -0.42797852, -0.40673828, -0.5361328, 0.70214844, 0.16064453, -1.5234375, -0.25830078, 0.60058594, -3.0058594, -2.5820312, -3.0878906, -1.2753906, 1.3486328, 1.0429688, -1.8320312, 2.6054688, 1.5605469, -1.2978516, -0.95947266, 1.5703125, -0.13208008, 0.5283203, 1.1132812, 2.0410156, 1.7421875, 0.8251953, -1.4521484, -2.5410156, -0.42382812, -0.4189453, -1.6533203, 0.54785156, -0.13220215, -0.76416016, 0.16809082, 2.5019531, -2.21875, -0.98339844, -0.07220459, -0.43554688, -0.5522461, -2.0761719, 1.8789062, 0.13562012, -0.2944336, 1.2998047, 0.42944336, 0.49829102, 0.56152344, 1.0195312, 2.0371094, -2.1796875, 1.1445312, -0.41064453, 0.47631836, -2.5898438, -0.08758545, 0.6767578, 3.1699219, 0.23522949, -1.3886719, 3.5664062, -0.21899414, 0.61083984, 2.3027344, -1.4404297, -1.0742188, 2.0996094, 0.12030029, 0.24328613, -1.015625, -0.68603516, -1.3544922, -1.9306641, 1.3427734, -3.109375, -0.9267578, 2.5058594, -0.3947754, 0.70751953, 0.19726562, 0.5449219, -2.2617188, -1.2207031, 2.1445312, -2.4042969, 0.26049805, 0.55810547, -0.09454346, 1.7011719, -2.8652344, -2.4609375, -1.8632812, 0.29492188, -1.4052734, -0.4206543, 0.2849121, 0.07397461, -0.60302734, -1.59375, -0.1026001, -1.5917969, -0.57714844, -3.4492188, -2.4082031, -1.3447266, -1.1796875, -1.46875, 0.9248047, -0.8901367, -3, 2.0097656, 0.83740234, -2.9453125, -1.1259766, 0.57421875, -0.98095703, 1.7939453, -0.16662598, 0.4321289, 0.8354492, -5.1523438, 0.7451172, -1.1025391, -1.1904297, 0.08630371, -0.6796875, -0.6035156, 0.058166504, 0.26171875, 0.9199219, 1.3916016, 1.1728516, 0.9609375, 0.0914917, -2.0351562, 1.2480469, -2.0800781, 0.53564453, -1.9609375, 0.07299805, -3.5058594, -2.0664062, -0.65771484, -1.2753906, 3.9101562, 0.37182617, 0.43408203, -1.4873047, -1.5869141, -0.5698242, 0.2685547, -1.3701172, 0.8286133, 1.5878906, -1.0537109, -0.80810547, -4.9570312, -3.0039062, -0.7607422, -1.5556641, 0.73095703, -0.96435547, -0.8925781, 0.7685547, -3.8359375, -0.75146484, -1.7705078, 1.6865234, -0.57373047, -0.5053711, -0.70410156, -2.7714844, -1.9570312, -0.8359375, -2.2207031, 2.8222656, -1.5634766, 1.2412109, 2.1328125, 0.13500977, 4.4882812, 0.0005264282, -3.8027344, 1.6376953, 1.5585938, 1.2285156, 3.9179688, -0.21032715, -0.23071289, 0.37841797, 1.0996094, 2.4628906, 2.3632812, 0.15002441, 2.2285156, -0.015083313, 1.4316406, -1.0068359, 1.3681641, -1.3105469, 1.7470703, 3.4746094, 0.009773254, -0.07489014, 0.21020508, 0.20776367, -1.7568359, -0.06970215, 3.0996094, 0.25341797, 1.2109375, 1.5859375, 0.5620117, 1.1904297, -0.6669922, 2.6699219, 0.38745117, 4.2695312, -0.66259766, 0.10205078, 0.6738281, -1.9560547, 0.72753906, 1.2265625, 0.40478516, 0.018035889, 1.4589844, -0.81103516, 0.6098633, 0.13269043, 1.125, 0.83935547, -0.70166016, 1.5625, -0.9213867, 0.31762695, 2.6777344, -2.3847656, 1.2460938, -1.4619141, 1.1542969, 1.9316406, -0.3479004, 0.69140625, -2.1855469, 0.09844971, 0.4248047, -2.2851562, 0.31713867, -4.125, -0.8984375, 0.2841797, -3.5976562, -2.4609375, -0.46777344, 3.1308594, 1.5957031, -1.7587891, -0.64208984, 0.5136719, -1.2529297, -2.0546875, 1.8046875, 1.9013672, 0.26953125, 1.6582031, 3.1777344, -1.8427734, 2.8789062, -3.1191406, 1.5957031, 0.4038086, -0.49365234, -0.8076172, -0.43945312, 0.515625, -0.6010742, 2.7265625, 1.6621094, 1.6455078, -0.37329102, -0.3491211, -2.2753906, 0.052947998, 1.9609375, -0.9838867, -0.7705078, 2.2167969, 1.7939453, -0.17150879, -0.16918945, 1.3759766, -0.28051758, -1.5712891, 1.5234375, -2.1757812, 0.16418457, -0.6171875, -4.2539062, -1.0585938, -0.18310547, -1.7880859, 1.4882812, 0.48364258, 0.9423828, 1.3222656, -0.8984375, -0.69873047, -0.019042969, -2.4316406, -1.0400391, -0.42236328, -0.5439453, 2.1484375, 0.37353516, -2.7714844, -1.7939453, -2.2949219, -1.8525391, 0.87939453, 1.0712891, -1.3408203, -0.043060303, -2.7402344, -0.11529541, -1.7089844, 7.247925e-05, 0.45214844, 0.12719727, -0.18127441, -1.2246094, 1.8017578, -0.4177246, 1.2978516, 1.1630859, 1.1884766, -1.1044922, -0.17102051, -0.030975342, 1.2373047, 3.734375, -0.98876953, -2.9316406, -1.4160156, 1.8212891, 0.4243164, -0.27294922, -0.58691406, -0.6010742, -1.2392578, -0.1217041, -0.2541504, 2.1875, 0.95703125, -1.4541016, -3.0390625, 1.5048828, -1.3574219, -1.6513672, -1.8847656, -0.29101562, -0.02357483, 0.20617676, -3.3417969, -2.4257812, 1.1855469, 0.65527344, 0.072753906, -2.1132812, 4.1640625, 2.0058594, 1.8242188, 2.84375, -3.0488281, 1.0019531, 0.84521484, -1.0019531, -0.5161133, 0.5258789, -0.6660156, 2.0429688, 0.7885742, 0.30273438, -2.8398438, -1.0498047, -1.375, -0.4165039, -1.6875, -2.4863281, 2.3613281, 0.16479492, 1.2216797, 1.0273438, -3.3691406, 2.7460938, 0.23205566, -1.0253906, 2.5449219, -1.359375, -0.4416504, 0.9848633, 0.29589844, -0.08831787, 0.8388672, 0.16357422, 0.4970703, 0.4633789, -1.4023438, -0.49243164, 1.9521484, -2.265625, 0.21923828, 1.0283203, 1.3837891, -2.2148438, -0.7910156, 2.6191406, 2.4140625, 0.0029449463, 1.6171875, 0.9375, -1.4003906, 2.4882812, 1.5957031, -1.4423828, -0.10003662, 0.03488159, -0.49389648, 0.7685547, -1.3720703, -1.3740234, -0.032989502, 1.46875, -0.16052246, 2.1953125, -0.08337402, -1.0869141, 2.5566406, -2.5507812, -0.23303223, 0.06713867, 0.60595703, -0.009552002, 0.13684082, 1.3925781, -0.94189453, 0.6948242, 2.8242188, -2.5507812, -2.4863281, 1.2275391, -0.09503174, -0.31030273, -0.8100586, -0.64990234, -4.5195312, -1.9121094, 1.8974609, 0.8378906, 0.71533203, 0.4921875, 1.7246094, -1.9013672, 0.69140625, -0.7089844, 1.2558594, -2.5859375, -1.1875, 1.4238281, -3.3457031, -0.25585938, -0.39111328, 0.5385742, 1.1855469, 2.4023438, 2.8574219, 0.3635254, 0.4453125, -1.3076172, -3.5371094, -2.7011719, -1.765625, 0.3569336, -1.109375, 1.2519531, 0.7763672, 1.0605469, -0.35229492, 0.38183594, -0.16662598, -1.7177734, -0.81347656, -1.1669922, -1.8613281, -0.7548828, -0.81591797, -1.0634766, 2.0078125, 0.96435547, 2.5097656, -0.33789062, -2.8457031, -0.5288086, -0.47387695, -3.4511719, -0.32495117, 2.5234375, 0.1352539, 0.98876953, -0.27954102, -0.014907837, 0.37158203, 2.6933594, -0.08325195, -0.9116211, 1.3154297, -0.45532227, 1.4521484, -0.9926758, -2.0039062, 2.5664062, -0.9707031, 0.69140625, -0.083618164, -0.5908203, 1.2734375, 2.4335938, -1.4316406, -0.75390625, 0.5649414, 1.7792969, 2.7363281, -0.3779297, -0.7001953, 0.47045898, -1.3095703, -3.6738281, 0.31640625, -3.1914062, -1.8632812, -2.1464844, -0.33325195, 2.5449219, 1.5878906, 1.5771484, 2.1074219, 1.4941406, -1.1640625, 0.140625, -0.11602783, 3.0214844, 2.0097656, -3.0703125, -1.2539062, -0.6611328, 0.004245758, 0.5576172, 0.27246094, -0.013397217, 0.18432617, -1.4003906, -0.32495117, 0.8491211, 1.3701172, 1.0732422, -0.46606445, 1.0419922, 0.8017578, 3.2207031, -0.85595703, 2.5859375, 0.1628418, 2.0214844, -1.2460938, 2.7597656, 1.9794922, -3.1464844, 0.9008789, -1.8427734, 1.5810547, 1.5078125, -2.1992188, -0.99365234, -1.03125, -1.9296875, -2.8925781, 0.4765625, -4.4179688, 1.4394531, 0.099487305, -0.6386719, 0.8432617, 0.89453125, 0.8833008, 3.3027344, 2.6269531, 0.85595703, -0.68603516, -0.55029297, -1.4853516, -0.6201172, 0.8598633, -2.3574219, -0.24865723, -0.5830078, 0.6171875, -0.54785156, 0.86572266, 0.21691895, 0.6381836, 0.5732422, 2.3476562, 1.4492188, 1.3378906, 2.4140625, 0.10546875, 1.6972656, 0.9951172, -1.4404297, -0.08001709, 2.2519531, 2.9355469, 3.25, -0.87890625, -0.43554688, 0.96240234, 0.055664062, 0.2927246, -1.4355469, 1.3378906, -3.7070312, -0.16601562, 0.6948242, 0.099121094, -1.015625, 0.7475586, -1.953125, -1.2578125, -0.16040039, -1.5322266, 3.6113281, -1.1484375, 3.2636719, 1.8417969, 1.5429688, 1.1201172, -3.3066406, 1.0478516, 0.80126953, -2.5800781, -1.7890625, 2.3457031, 0.7402344, 1.8925781, -1.5175781, 0.48217773, 3.0097656, 2.9589844, 1.8681641, -1.8300781, 1.7578125, -0.6933594, 1.3320312, 0.41137695, -1.8857422, -1.1064453, 0.2434082, -3.0449219, -2.1015625, 1.1269531, 0.8730469, 1.1474609, 0.9511719, -4.7578125, 1.9013672, -0.30859375, 2.2519531, -1.7792969, -0.017456055, -1.1777344, -2.9570312, -1.2324219, 0.9008789, -2.1972656, 3.0664062, 1.0205078, -0.20251465, 3.296875, 1.3730469, 1.6904297, 0.59521484, 2.5410156, -0.6435547, -0.67626953, 0.8178711, 1.1083984, 0.91796875, -2.0273438, -0.24536133, 2.2792969, -0.6196289, 1.7929688, 1.6533203, -0.059173584, 1.9121094, 3.6972656, 1.1220703, 0.25463867, -0.9404297, 0.20751953, -0.55908203, 1.921875, -0.0149383545, -1.0283203, 1.3779297, 2.6191406, -0.076293945, 1.7949219, -0.49853516, 0.12176514, 2.2304688, -0.4074707, -0.7783203, -2.2089844, 0.26489258, 0.87060547, 0.018829346, -0.72314453, -1.7792969, 0.62646484, 0.4909668, -1.015625, -0.10974121, 0.84375, -0.33374023, -0.21264648, 0.23474121, -1.5703125, -1.1035156, 0.15563965, -0.0074920654, 0.5151367, 2.5371094, 2.7441406, -1.3583984, -1.9013672, -0.74365234, 0.4519043, -0.75, -2.2832031, 2.6503906, 2.7207031, 3.2089844, -1.0439453, -1.9082031, -2.1523438, -0.9741211, -0.6044922, 1.3974609, 0.0024261475, -0.30004883, -0.24584961, -0.40039062, 2.6132812, 0.09033203, -1.84375, 0.93115234, -0.30371094, 1.3115234, 0.5205078, -0.8129883, -0.50878906, 1.1533203, 1.7753906, 1.53125, 2.1992188, 0.11126709, 1.3222656, 3.1953125, -1.3427734, -2.3867188, 0.0154953, 0.93847656, 2.0175781, 0.32641602, 1.765625, 1.6191406, -1.0332031, -0.92333984, -0.5722656, -1.9111328]}, "B07WYJTB3P": {"id": "B07WYJTB3P", "original": "Brand: ProCom\nName: ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in\nDescription: \nFeatures: ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment.\nTECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area.\nDEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nSTYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\n", "embedding": [-1.6523438, -0.7055664, 1.5390625, -0.5283203, -0.2722168, -1.7802734, 0.66064453, -0.9267578, -0.76464844, 1.4736328, 1.5146484, 1.8945312, -0.13317871, -3.0214844, 1.3583984, -1.953125, 0.9350586, 2.0449219, 0.8457031, -1.1992188, -0.078430176, 0.24291992, -0.08123779, 0.9316406, -1.0273438, 0.5292969, 3.6855469, -1.4912109, 0.31689453, -0.8803711, -1.6416016, -0.6821289, 0.05697632, 1.6005859, -0.875, -0.42211914, -2.6464844, -0.3791504, -1.3671875, 0.3623047, -1.265625, -0.29077148, 2.8652344, -0.013900757, -2.6367188, -1.6142578, 0.15881348, -0.36108398, -1.3134766, 0.57177734, 0.92626953, 2.6074219, -1.8759766, 1.3623047, -0.43432617, 1.8867188, -0.21289062, -1.2705078, 1.8212891, 1.2675781, 0.8666992, 0.7192383, -2.5878906, 1.4902344, -0.65283203, 1.8027344, -1.0986328, -0.63720703, -1.2333984, 2.4921875, 2.8496094, 1.2314453, -0.96777344, 0.6386719, -0.97753906, -0.5854492, -4.125, 2.4121094, 3.1269531, -0.19360352, -2.0703125, 1.609375, 0.72216797, -1.1142578, 1.2089844, -2.0097656, 0.018676758, -1.5898438, -1.0439453, 1.0634766, 0.10876465, 1.0869141, 0.35009766, -4.0976562, 1.2392578, -2.1464844, 0.79003906, 1.3525391, -0.2619629, 0.59814453, 0.72998047, 2.0136719, -0.47094727, -0.78125, -2.4980469, -2.3515625, 2.4824219, 1.9267578, -1.9804688, 1.9511719, -1.5966797, 0.15441895, 1.8486328, -0.5654297, -0.74072266, 0.06414795, 1.1669922, -0.16015625, 2.7539062, -0.18603516, 2.4316406, -1.0361328, 1.7802734, 0.16906738, 2.6953125, 1.3076172, -2.5996094, 1.4306641, 3.1855469, -0.5107422, 0.97558594, -0.13549805, 1.7900391, -0.09301758, -0.04888916, -2.3847656, -2.5546875, -2.3886719, -1.7373047, -1.3925781, -2.046875, 2.8476562, -1.5019531, -0.68408203, -3.9726562, -0.2434082, 0.71728516, 0.5234375, 2.4941406, -2.4648438, 2.5234375, -3.4492188, -0.5830078, -3.7382812, 1.5673828, 0.016067505, 0.61328125, -2.7949219, 3.0644531, 2.5078125, 0.37817383, -1.3759766, -2.1113281, 2.5585938, -1.8837891, -1.84375, 0.91015625, -0.4399414, -0.6430664, 2.3222656, -0.11578369, -1.4384766, 0.024459839, 0.33691406, -0.49487305, -1.8144531, 0.06286621, 3.0800781, 0.6586914, 1.8984375, -3.2871094, 0.1184082, 0.7583008, -0.59228516, -0.54248047, 1.3115234, 0.48388672, -0.8876953, 1.4697266, -1.6748047, -0.20092773, 0.7524414, 0.45507812, 0.5522461, 0.9902344, -1.4277344, 0.5566406, -2.4726562, 2.6738281, -0.114868164, -1.3320312, 2.265625, 0.28881836, 1.2402344, -2.6933594, -2.28125, -0.59277344, 0.34887695, 2.59375, 1.2285156, 1.4365234, -0.7626953, 2.671875, -2.4394531, -0.6220703, -2.125, 0.28344727, 1.0244141, 0.6484375, -0.36499023, 0.5830078, 0.359375, 1.7841797, 1.8779297, 0.12915039, 1.78125, -0.23156738, -0.17810059, -2.4609375, -1.4550781, 2.2167969, -0.14282227, -1.1308594, -0.6972656, -0.1616211, 1.4111328, -0.88134766, -3.4082031, 2.171875, 0.6489258, 1.4873047, -0.3581543, -1.7314453, 1.0761719, -0.46679688, 2.6210938, 0.070007324, 1.59375, 0.1394043, 0.18713379, 0.4243164, -0.32983398, 0.21020508, 0.20056152, -0.59521484, -0.8173828, -0.67333984, -1.0849609, -0.89941406, -1.2753906, 2.9023438, 0.35742188, -2.6835938, 0.29858398, -0.7133789, -1.2792969, 0.21020508, -1.3730469, -1.1572266, -0.9868164, 0.88183594, 1.8515625, 2.9453125, 2.0664062, 2.4511719, 0.5595703, -0.7285156, 3.6582031, 0.32421875, 0.27294922, 0.2824707, -0.8769531, 1.3662109, -0.45239258, 0.64501953, 1.3544922, 1.3007812, 0.34326172, -1.9833984, -1.2011719, 2.609375, -1.84375, -2.0507812, 2.296875, -1.8808594, 0.2746582, 1.3388672, 1.1191406, 0.10949707, -0.33544922, 1.8916016, 2.59375, 0.006336212, 0.76708984, -0.46972656, -0.56689453, 1.0576172, -1.5566406, 1.5410156, 0.28515625, 1.6962891, -0.63916016, -2.5097656, -0.38720703, -4.1367188, -1.2841797, 3.3828125, -0.9189453, 3.1210938, 0.90527344, 2.5546875, 1.2714844, -1.0146484, -1.3740234, -0.021575928, 1.6152344, 0.33911133, 1.046875, -0.54541016, -1.2099609, 0.26171875, -1.7070312, -0.24316406, -1.8769531, -1.1728516, -0.13806152, -0.10644531, -0.86279297, -0.30151367, -0.7397461, 1.4101562, 1.0839844, -3.1855469, -0.1895752, 0.91503906, 0.2878418, -1.0996094, -0.9614258, -0.6298828, -0.19116211, 2.9824219, 2.6699219, -1.1806641, -2.828125, 0.15026855, -0.8017578, -0.88671875, 0.8251953, -2.8691406, -0.26586914, -0.092285156, -0.10656738, -0.9248047, -0.5024414, 0.040527344, -0.34179688, -0.1977539, -2.9492188, 2.1738281, -1.0537109, -0.29345703, -1.2861328, 1.8525391, -1.6445312, -1.1074219, 0.85302734, -1.6972656, 2.8789062, 1.3154297, 2.3105469, -1.1201172, -0.091796875, -0.7817383, -1.0556641, -1.5722656, 0.13793945, -0.44702148, -1.40625, -1.9882812, -2.0976562, 0.63183594, -0.5410156, -1.0654297, 0.29882812, -0.7734375, 1.2109375, -0.13098145, 0.66308594, -0.27978516, 0.7583008, -0.5678711, -1.1523438, -1.1171875, 0.7446289, -1.1523438, -1.6669922, -1.1748047, 0.80615234, 0.9116211, 0.61816406, 0.9013672, -0.8823242, -1.5166016, -0.40820312, 0.85791016, -3.4628906, 0.030181885, 1.1210938, -0.4543457, 1.3349609, -0.46655273, -0.6748047, -0.4255371, 0.21459961, 4.4296875, 1.7929688, 1.9179688, 1.4658203, -0.7290039, 1.5859375, 1.3388672, -0.48168945, -0.28320312, -0.89990234, 3.5117188, -3.1933594, -0.79833984, -0.30371094, 1.6337891, -3.3789062, -2.3222656, 1.8027344, -1.8886719, 3.1855469, 1.3642578, 0.296875, 0.8642578, -0.033172607, 1.5585938, 0.74902344, -1.0458984, -0.38720703, -3.7929688, 0.8149414, 2.2519531, 0.26635742, 4.1914062, -1.359375, 0.12792969, 0.35205078, 1.3789062, -1.0419922, -1.1201172, -1.046875, -1.6875, -0.113586426, 2.9902344, -0.81347656, 0.22924805, -0.9868164, -0.17773438, -0.15136719, -1.9375, -0.021194458, 1.9208984, 0.82177734, -1.4394531, -0.46850586, 0.6982422, -0.4248047, -0.050354004, 1.7324219, -0.18359375, 0.3112793, 2.9140625, -1.9736328, -0.3227539, -1.6044922, 1.6220703, -0.7084961, 0.45214844, -1.28125, 2.8125, -1.4619141, -1.8720703, -0.25048828, -0.6088867, 0.20507812, 1.9130859, 0.3046875, -1.1347656, -1.0849609, -1.234375, 0.50390625, 0.9614258, 0.74316406, 1.0644531, -0.11236572, 1.8144531, -1.7207031, -0.19836426, 1.2685547, -0.28808594, -0.25805664, 0.64746094, -1.2519531, -0.22680664, -0.33007812, 0.36376953, 0.2043457, 3.4804688, 0.2841797, 1.1044922, -1.15625, 0.8666992, -0.43237305, -0.21203613, 2.59375, -1.2607422, -1.3349609, -0.33618164, -3.3730469, 1.4804688, -0.984375, 0.4008789, 1.9394531, 1.4912109, -0.105895996, 0.001613617, -0.63720703, -3.7851562, -1.8476562, -0.64501953, 0.39379883, -2.7949219, -2.78125, -0.35961914, 0.53515625, -0.012321472, 0.9453125, 1.1679688, -0.24121094, 1.0654297, -0.14892578, -1.1933594, 0.71875, 1.0185547, -0.37060547, 0.68603516, -1.2021484, 3.1230469, -0.1361084, -0.66748047, -2.8261719, -0.050628662, 1.2470703, -1.7666016, 0.69433594, 2.8554688, 1.0595703, -1.1113281, -0.89208984, 0.45263672, 0.7236328, -0.10437012, -3.1484375, 0.35375977, -1.5507812, 1.8037109, -0.87597656, -0.5703125, 0.8442383, -2.3632812, 1.1386719, 1.7695312, 1.2353516, 1.3046875, 1.3183594, -1.2119141, 0.83935547, -0.71240234, -1.1279297, -1.4101562, -0.8881836, 0.06781006, -0.66748047, 0.765625, -1.5537109, 1.0175781, 1.2490234, -1.1679688, -2.2050781, 1.0400391, 1.5751953, 2.2246094, 2.6835938, -0.21459961, -0.91796875, 0.15002441, 0.10003662, 1.5595703, 1.2207031, -0.1887207, -1.3427734, 0.7783203, 2.5996094, -1.5087891, 0.68359375, -0.29125977, -0.2668457, 1.5556641, -0.6645508, -1.6347656, -1.6914062, -0.09802246, 2.7714844, 1.4384766, 1.2460938, -1.6044922, -0.36254883, 0.64501953, 1.1044922, -0.11956787, 1.8466797, 1.1708984, 0.19665527, 1.9619141, 1.6015625, 0.27368164, 0.5229492, 2.7734375, 0.013885498, 2.0976562, 1.8955078, 1.484375, -0.9995117, 0.09716797, -1.5390625, -0.5673828, 2.1210938, -0.30981445, -0.98046875, 1.7832031, -0.18530273, -2.1347656, 1.0830078, -0.72216797, -3.4921875, -0.984375, 0.06604004, -0.53222656, -0.78222656, 0.0335083, -2.6816406, -0.73046875, 2.9628906, -0.58496094, -0.74658203, -1.1132812, -1.9023438, 0.18920898, -1.6044922, -0.82177734, 0.28149414, -0.89160156, 0.31591797, -0.5341797, -1.1220703, -1.4423828, 0.4387207, 1.7685547, 1.5361328, -2.1503906, -0.29248047, 0.65722656, 0.4284668, -1.2451172, 1.1992188, 0.16320801, -0.23022461, 0.5605469, -1.78125, 3.4277344, 1.0537109, 0.8041992, -2.7070312, -0.36547852, -1.9365234, 1.2519531, -2.0820312, -1.0947266, 2.6308594, -0.7988281, 0.045440674, -0.81152344, -0.91748047, -0.28466797, 1.4892578, 0.28759766, -0.9013672, -0.2479248, -0.9980469, -4.2265625, -5.328125, -2.3242188, -0.09802246, -0.6538086, -0.4572754, -0.27954102, -2.3339844, 1, -0.22265625, 1.6972656, -2.9863281, -0.5673828, -1.4023438, -1.8378906, -1.3681641, -0.83691406, 0.2644043, 0.2055664, 1.4033203, -1.28125, 0.36889648, -3.5332031, 0.91064453, 2.3144531, 1.9765625, 0.47802734, 0.94384766, 0.2734375, 1.0566406, 1.8867188, 0.34887695, -2.84375, 0.4506836, -0.8120117, 1.7285156, 1.4736328, -0.2993164, -0.37426758, 1.7685547, 0.011978149, 1.2910156, 1.1806641, -0.08898926, -0.6635742, -0.29174805, 0.74121094, -1.3759766, 1.0019531, 0.8774414, 0.21179199, 0.51171875, 0.77246094, 0.76953125, -0.47460938, -1.8857422, -2.8125, -1.8134766, -0.10015869, -3.2050781, -1.5771484, -1.2001953, 2.9472656, -0.6557617, 1.8964844, 1.2744141, 0.85546875, -0.8496094, -1.6210938, 0.22302246, -2.3613281, 1.4433594, 1.7060547, -0.10858154, -2.5507812, -0.7294922, 3.4160156, -0.12524414, -0.29467773, 1.2773438, -0.47387695, -1.8730469, 0.92529297, 1.2148438, 2.8417969, 1.6064453, 1.5927734, -2.1972656, 1.1240234, 0.84716797, 0.4296875, 2.1777344, 1.6230469, 2.0253906, -1.2285156, 3.125, 0.8745117, -1.6865234, -0.77001953, 1.0253906, 0.9692383, -1.3789062, -1.0185547, 1.1308594, -2.1386719, -1.9755859, 0.17407227, 0.34399414, -2.0859375, 3.0800781, -0.51904297, -1.1328125, -1.0361328, 1.4677734, -0.62597656, 0.86572266, 2.9589844, -1.0449219, -0.7739258, -0.54345703, -2.0039062, -1.609375, 2.0644531, -1.703125, -0.12042236, -0.3100586, 0.54003906, -0.018371582, 0.32958984, -0.98291016, 2.1582031, 1.9404297, 2.8808594, 2.2480469, 2.0507812, 0.52246094, 0.88720703, 1.3632812, 0.92529297, -0.9663086, -0.45239258, 1.0332031, 0.8261719, -0.046142578, -1.9638672, 0.8339844, -0.6069336, -0.28881836, -1.4267578, 1.6162109, 0.070129395, -4.1484375, 2.2695312, -0.41748047, -1.1054688, -1.8212891, -1.1191406, -0.8798828, 1.3173828, -0.5683594, -0.26635742, 0.3059082, -0.5888672, 0.052459717, 0.43310547, -0.23425293, 1.1025391, -0.3466797, 0.28100586, -0.2692871, -1.8134766, 1.6884766, -0.57958984, 0.96533203, 1.2294922, 1.1025391, 2.0449219, 0.5209961, 0.8964844, -0.96972656, -2.2226562, 0.20141602, 1.0205078, 2.171875, 3.2753906, -0.83935547, 0.94091797, 1.3496094, -2.4277344, -4.9570312, 0.064697266, 0.34716797, 1.0556641, 0.6870117, -2.3613281, 1.671875, 1.2050781, 1.3652344, -3.6640625, 1.0341797, 0.21850586, -0.96435547, 1.8417969, 2.3046875, 0.121154785, 3.0078125, 1.1269531, 0.085632324, 2.3730469, 0.4494629, 2.0234375, 2.46875, 1.6484375, 1.1601562, 0.9453125, -0.9589844, 0.5629883, 0.09753418, 1.1660156, -2.1660156, 1.7285156, 3.1367188, -0.076538086, -0.053466797, -1.453125, 0.6303711, -1.1748047, 1.1445312, -0.8408203, -1.7744141, -2.0332031, -1.0917969, 0.2565918, -0.09539795, -0.29467773, 1.5253906, 0.9326172, -2.3398438, -1.1806641, 3.0898438, -1.4101562, 2.0703125, -0.23828125, 0.6611328, -0.71972656, -1.4853516, 1.9150391, -0.7055664, -1.3222656, -2.1015625, 1.5732422, 0.22106934, 0.031555176, 0.8076172, 1.4765625, 0.22814941, 2.1738281, 0.8964844, 0.7836914, -0.94189453, -0.5175781, -1.2470703, -0.71435547, 1.8867188, 0.17993164, -0.6821289, -0.45214844, -1.6923828, -1.5410156, 1.8398438, -0.042388916, 0.64453125, 2.1269531, 0.79296875, 0.78759766, -0.36010742, -3.8574219, -1.6328125, 0.07196045, 2.0839844, -0.09075928, -0.22644043, 0.36767578, -1.0009766, 1.4824219, -0.3239746, -1.4072266, -0.5234375, -0.65625, 0.032470703, -0.9794922, 0.7504883, 1.0625, 2.7148438, -1.2158203, 1.7207031, -0.7416992, -0.40576172, 0.9160156, 1.6025391, 0.90625, -0.8251953, -1.703125, -1.3105469, -1.3613281, -0.41015625, -1.7802734, -0.07281494, -0.8300781, -0.9921875, -2.8730469, -0.04724121]}, "B0024ECBMA": {"id": "B0024ECBMA", "original": "Brand: Camco\nName: Camco 59313 Vertical Two Stage Propane Regulator , Gray\nDescription: \nFeatures: Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances\nInlet: 1/4\" Female NPT Outlet: 3/8\" Female NPT\nOutlet pressure 11\"WC\nFor vertical mount applications\n160,000 BTU/hr\n", "embedding": [-0.66503906, -0.19152832, 0.73046875, 2.1074219, -1.0830078, -2, 0.46118164, -1.2109375, 0.8847656, -0.44018555, 0.99658203, 0.9248047, 0.6713867, -0.3791504, 2.1523438, -0.65771484, 0.5620117, 0.45385742, 1.5830078, 0.23266602, 0.43969727, -1.5009766, 2.3867188, -2.0976562, 1.0712891, -0.020812988, 3.6796875, -1.1601562, -1.5058594, -0.6279297, 0.65527344, 0.89941406, -0.80371094, 1.3261719, -0.16503906, 0.7578125, -1.0673828, -0.8256836, -3.4257812, -0.058380127, -2.8730469, -0.011512756, 1.7246094, -1.2695312, -2.015625, -1.5097656, 1.0712891, -1.0664062, 1.4316406, -1.5664062, 0.2841797, 1.0654297, -0.5678711, 0.9550781, -0.42407227, -0.21618652, -0.58691406, -1.0546875, 0.9946289, 2.1621094, 0.1307373, -0.18884277, -3.5644531, 0.91259766, -0.22875977, 2.1484375, -0.13024902, -0.68896484, 2.1308594, 0.7988281, 1.5615234, 0.39160156, -0.63378906, -1.8037109, -2.2148438, 0.8203125, -2.3515625, -0.23510742, 1.75, -0.121276855, -2.9492188, 0.5986328, 0.99316406, -2.4648438, -1.3330078, 0.3857422, 0.9321289, -0.6411133, 0.8984375, -0.30615234, -1.6884766, 0.5209961, -3.1835938, -4.2382812, 0.17407227, 1.9101562, -1.1816406, 1.2871094, 0.24987793, 1.9042969, -0.19519043, 0.8769531, 0.29907227, 0.63916016, -2.421875, 0.6484375, 2.2871094, 1.0107422, -3.5410156, 0.7182617, -1.7431641, -1.4667969, 1.2548828, -0.50878906, 1.1630859, 0.5678711, -0.99365234, -0.09484863, 4.1601562, 0.39379883, 2.796875, -0.42871094, 0.6928711, 0.11859131, 0.90185547, 1.9316406, 0.34472656, 0.8041992, 4.5195312, -0.21826172, -0.17297363, -1.6083984, 1.1992188, 0.18835449, 1.6621094, -1.6416016, -2.0019531, -2.796875, -0.86865234, 0.12927246, -4.5703125, -0.8979492, 1.9345703, 0.8466797, -3.796875, -1.3066406, -1.1455078, 1.8359375, 0.49487305, -1.6425781, 1.2480469, -2.8632812, -0.41625977, -0.8095703, 0.7597656, 0.31689453, -1.6455078, -2.8730469, 2.1542969, 0.8154297, 0.45947266, -1.3193359, -2.4375, 0.48876953, -0.4104004, -0.80908203, -0.4333496, -0.060943604, -0.12817383, 2.5117188, -0.04043579, -2.5976562, 0.12792969, -0.04067993, -0.9042969, 0.14733887, 2.4609375, 2.0839844, 3.2421875, 0.43847656, -1.6181641, -1.0029297, -1.4697266, -1.8642578, 1.8251953, -0.26831055, 0.34936523, 0.40844727, 1.9208984, -0.70751953, -1.2441406, 0.27001953, -0.5390625, -0.83740234, 0.9584961, -2.6914062, -2.9453125, -0.45239258, 2.0449219, 0.43579102, -1.3583984, 0.203125, -1.0761719, 1.1884766, -1.7919922, -0.6567383, 0.5810547, 0.98046875, 0.20629883, 0.7817383, 1.3427734, -0.037994385, 1.3125, -2.3730469, 0.4555664, -2.0273438, 1.3759766, 1.0556641, 0.1550293, 0.6855469, 0.74121094, 1.8261719, 1.1113281, -0.8701172, 1.5322266, 0.039398193, 1.2871094, 0.15283203, -0.9770508, -0.9194336, 1.7832031, 1.2246094, -1.2568359, -0.8520508, -0.6245117, 2.3203125, 0.5258789, -0.09991455, 0.71875, -1.0429688, 0.6928711, 0.13452148, -0.3474121, 0.2454834, 1.3310547, 0.35058594, -1.4414062, 3.0527344, 1.6572266, 1.0908203, 1.3134766, 0.00033640862, -2.8964844, -0.96435547, -1.0048828, 1.3369141, 0.9213867, 0.053527832, 0.74853516, -3.4589844, 1.9140625, 1.2705078, 0.27075195, 0.081604004, 1.1816406, 0.18664551, 1.0751953, -1.4501953, -0.3569336, -0.06359863, -0.13110352, 1.2451172, 1.9287109, -0.30688477, 1.1865234, 0.75, -0.7783203, 1.9628906, -0.27075195, 1.5400391, 0.6977539, -0.1706543, 0.5283203, -2.6972656, 1.9707031, 0.54248047, -0.18469238, 0.33422852, -2.65625, 1.3984375, 1.3769531, -1.2773438, -2.6699219, 1.6621094, 2.5800781, 0.6147461, 3.9550781, 0.6044922, 0.08312988, 0.5703125, 1.5136719, 1.640625, -2.1699219, -0.41870117, 0.56933594, -0.37939453, -0.5800781, -0.8833008, 0.9790039, 0.48168945, -1.3466797, -2.0351562, -3.6308594, 1.6816406, 0.23388672, -0.7729492, 1.8359375, -1.7753906, 2.2519531, 1.3037109, 0.6459961, 0.9111328, -0.7055664, -2.015625, 0.105651855, 0.77490234, -0.72998047, -0.18457031, 0.6254883, 0.37182617, 0.35595703, 0.54785156, 2.03125, -0.8984375, 0.25268555, 1.4863281, 0.22363281, -2.5703125, 1.1962891, -1.0664062, 0.08154297, -0.58740234, -1.3828125, 1.8681641, 0.8408203, 0.014884949, -0.8979492, 0.6123047, -0.41357422, -0.43652344, 1.3212891, 1.6621094, -1.1230469, -2.671875, -0.7026367, 0.55322266, -1.5, 2.5019531, -2.2324219, 0.7373047, -0.01626587, -0.01689148, 1.109375, -1.3740234, -0.65625, -0.21838379, 1.578125, -2.5058594, 1.8544922, 0.04156494, 2.0878906, -0.5385742, 3.7480469, -0.41015625, -1.7128906, -0.5600586, -0.5957031, 2.6484375, 0.20031738, 0.38671875, -0.53125, -0.7133789, 0.04574585, -1.2958984, -2.3789062, 0.1697998, 1.8642578, -1.5488281, -0.8120117, -1.3212891, -0.20031738, -0.38061523, 1.2177734, -2.2929688, -1.8222656, -1.9667969, -1.8183594, 0.07922363, 1.7412109, 0.7109375, 2.4667969, -2.3105469, -2.1601562, 0.26904297, 1.8691406, -0.7548828, -0.5786133, 0.8623047, 0.29052734, 0.120666504, 0.3618164, 1.2460938, 0.6113281, 1.4667969, -0.2841797, -2.3339844, 1.1962891, 0.8046875, 2.0195312, 2.0722656, -1.3183594, -1.0087891, -2.3925781, -0.8911133, 3.1074219, 2.4941406, 2.9804688, -0.10668945, 2.1621094, 1.5126953, 0.33325195, -0.81103516, -0.6245117, 0.2211914, 2.7304688, -1.4833984, -0.60058594, 0.7402344, 0.75, -1.8232422, 0.06311035, -0.14550781, -0.89160156, 2.8066406, 2.5039062, -1.3398438, -0.6796875, 1.4746094, -0.24963379, 0.38671875, -0.50683594, -0.21130371, -1.3017578, 1.6875, 0.19665527, 1.3037109, -0.06378174, 0.2487793, -0.5942383, -0.16271973, 3.8730469, -0.84716797, 1.1933594, -0.17468262, -0.8203125, 0.093933105, 1.8789062, 0.69970703, 1.4550781, 0.05105591, -0.64941406, 0.1574707, -2.8613281, -0.50146484, -0.21105957, 1.890625, -0.4177246, -0.86816406, -0.53759766, 1.2539062, 1.0302734, 1.1113281, 0.17016602, -0.23449707, 0.8623047, -1.1396484, -0.85058594, -1.2783203, 2.0117188, -1.0732422, 0.93603516, -0.24414062, 0.9863281, 0.77490234, -2.5507812, -1.1201172, -1.9892578, 0.46118164, 2.6855469, 2.0078125, -0.90478516, -0.7519531, -0.5991211, 1.4892578, 1.7607422, -0.72021484, -0.8779297, -1.0029297, 1.515625, -0.49414062, -2.6269531, 2.7539062, 0.13012695, -1.2451172, -0.77246094, -1.984375, 0.3088379, -0.4104004, -0.36572266, -0.7910156, 1.2861328, -1.8818359, 1.9697266, 0.66308594, 1.4628906, -2.6035156, 1.640625, 1.234375, -3.2773438, -1.1513672, -2.5, -5.25, 1.0175781, -1.6318359, -0.033325195, 1.3671875, 0.13232422, 1.0087891, 1.6767578, -0.03338623, -3.0546875, -1.5097656, -0.33569336, 1.3173828, -3.71875, -0.9189453, -0.40063477, 0.6376953, -2.4121094, -2.1230469, -1.0839844, -1.9101562, -0.8046875, -0.8886719, -1.0068359, 1.0712891, -0.17956543, 0.94628906, 0.43579102, -1.1289062, 1.0917969, -1.3955078, -0.39086914, -3.4804688, 1.5292969, 0.44677734, -0.79248047, -0.084472656, 1.421875, 2.0546875, -0.69140625, -0.8222656, -0.18432617, 1.0517578, -1.1044922, -2.0214844, -1.8876953, -1.2001953, -0.8833008, -2.1953125, 1.2392578, 1.1523438, -0.60009766, -0.078308105, 1.2763672, 0.30126953, 1.4208984, -2.1953125, -3.0019531, 2.4335938, 0.070007324, 0.70166016, 0.7060547, -0.6557617, 1.2441406, -3.0117188, 0.097717285, -0.66748047, -1.3662109, 1.9501953, -0.4909668, -2.7675781, 0.6821289, -1.015625, 0.76464844, -1.6484375, -0.3515625, -3.4882812, -0.94189453, 0.91503906, 0.6591797, -1.5947266, -0.117614746, 0.04196167, -0.7529297, 2.953125, -2.0234375, -1.6933594, -0.32983398, -2.5917969, 0.49194336, -0.7236328, -0.07458496, -0.35107422, -1.0419922, 2.59375, -0.02923584, 2.2910156, -0.46435547, 1.3828125, 0.52783203, -1.8652344, -2.4121094, 1.3486328, 0.37768555, 2.0976562, 3.0839844, -1.3134766, 0.6254883, 1.1845703, 1.9433594, 0.19641113, 1.0517578, 0.0037002563, -1.9248047, -0.85546875, 0.625, -0.48583984, -1.7597656, 1.3251953, 0.75146484, 1.6845703, 1.4707031, 2.75, -0.61621094, 1.3710938, -1.6708984, -1.2539062, -0.6069336, 0.17749023, -0.38061523, 2.3769531, -0.85058594, -2.34375, 1.4833984, 3.5917969, -0.9477539, 0.94433594, 1.0048828, 0.7504883, -1.9042969, -3.2695312, -1.5400391, -0.48095703, 1.8925781, 1.5849609, -1.6914062, 0.5551758, 0.4440918, -0.044158936, 1.6074219, -0.7373047, 0.13391113, 0.9091797, 0.0026836395, -1.4873047, -1.4287109, -1.8916016, -3.1308594, -0.25195312, 2.1855469, 0.60498047, -0.35473633, 0.3491211, -0.80371094, -0.6542969, -2.0839844, -2.0078125, 0.5810547, 0.18579102, -0.6230469, 2.359375, 1.7753906, 0.25146484, 0.031036377, 0.66845703, -0.40771484, 2.3769531, 3.4257812, 1.3603516, -0.23876953, 0.060455322, -2.0234375, -5.7382812, 0.82910156, 2.1601562, 0.20898438, -0.8144531, -1.765625, -1.3359375, 1.9443359, -0.86376953, -0.2915039, -3.4472656, 0.22814941, -1.5195312, -0.18310547, 0.7495117, 0.31225586, -0.58935547, 2.0605469, -0.4423828, -0.8564453, -1.6074219, -2.3867188, -1.7871094, 1.8095703, -0.11639404, -0.046539307, 1.1748047, -0.7939453, 0.50683594, 1.3779297, 0.68310547, -2.2675781, 0.75683594, -1.8574219, 0.44262695, -0.015274048, -1.3457031, 1.9287109, 2.8691406, 1.2744141, 1.2587891, 2.9414062, 2.4824219, 0.6411133, 0.8208008, 0.96191406, -0.4423828, 0.5332031, -0.6401367, 0.91259766, 0.1505127, 3.15625, 1.8320312, -1.7666016, -0.38891602, -2.4355469, -1.2783203, -0.07751465, -2.4277344, 0.2788086, -0.0030269623, 1.4580078, 0.36328125, -0.7290039, 0.03881836, -0.023345947, -0.8203125, -0.16394043, 2.2089844, -1.4462891, 1.8300781, -0.16516113, -2.4628906, -2.40625, -0.60058594, 1.2558594, 0.42749023, 0.8466797, 0.55615234, 1.7851562, -0.9838867, 1.4794922, 0.34399414, 0.38623047, 0.22033691, 0.91748047, -0.087768555, 0.49414062, 1.0136719, -0.54003906, -0.6489258, 0.9375, -0.25708008, -0.84814453, 1.1113281, 3.90625, -1.8125, 0.2553711, -0.6796875, 0.64697266, -1.9306641, -1.6962891, 1.7363281, -3.1992188, 0.084228516, 0.051208496, 0.35913086, -2.0488281, 3.7246094, 0.6533203, -1.7138672, 0.9082031, 1.2880859, -2.2050781, -1.8681641, 2.5703125, 0.30151367, -0.20324707, 0.101989746, -1.1757812, 0.84228516, 0.9667969, -2.9257812, 0.49169922, 0.049835205, 2.3105469, 0.6230469, 0.19641113, -0.7192383, 1.453125, 2.9472656, -0.00087070465, 3.0253906, -0.5727539, 1.5136719, 1.6455078, 2.4003906, 0.8564453, -0.25683594, 0.6303711, 1.0009766, 0.38183594, 0.17285156, -0.6845703, 0.13952637, -1.9248047, 2.2148438, 0.74560547, -0.30908203, 0.40063477, -2.4707031, -1.6074219, 0.020721436, 1.6806641, -1.7666016, 1.2539062, -2.0742188, -0.06567383, -0.30932617, -1.9375, -0.18017578, 0.28125, -0.29248047, 0.6713867, 0.5463867, 1.3496094, 0.29956055, -2.4433594, -3.1523438, -1.5498047, -0.13696289, 1.3378906, 0.061035156, 0.9897461, 0.2133789, -0.40307617, -0.16894531, 1.1142578, 0.8930664, -2.0859375, 1.2050781, -0.75878906, 3.6132812, 1.9677734, 0.038848877, 2.5859375, 2.2148438, -1.6679688, -4.1289062, 0.7285156, -0.14355469, 0.40527344, -1.1240234, -3.6953125, 1.5253906, 0.08782959, 1.1699219, -2.4570312, 0.8803711, 0.8154297, -3.0058594, 1.7958984, 0.5761719, -1.2451172, 4.4296875, 1.6640625, 1.1835938, 0.296875, 0.103759766, 1.5791016, 1.0927734, 1.7207031, -0.24047852, -0.29663086, -1.4736328, 2.6621094, 1.0634766, -0.9277344, 0.60791016, 2.3691406, -0.010070801, 0.50439453, 0.29956055, 0.35498047, 1.8017578, 0.7685547, -1.390625, -0.73535156, -3.2109375, 1.4628906, 0.1899414, 1.0859375, -0.30859375, -1.1787109, -2.7167969, 1.9960938, -2.4394531, 0.10095215, 0.7216797, -0.6904297, 0.8222656, -1.1357422, -1.3066406, -2.2558594, 2.171875, 1.1982422, -0.52001953, -0.036834717, 0.234375, 2, 1.0019531, -0.71728516, -0.6645508, 0.67333984, -0.69189453, -0.5986328, 0.78808594, 0.3930664, -0.6748047, 0.80371094, -1.2558594, 0.63964844, 1.9746094, -0.52001953, 1.1191406, -2.5605469, 0.52685547, -0.45214844, -0.9379883, 0.09124756, 0.70996094, 0.6616211, -0.026687622, 1.9970703, -0.5107422, -1.2744141, -0.7290039, -2.5292969, 1.9609375, 1.6777344, -0.44873047, 0.4506836, 1.4941406, 1.6142578, -0.73828125, 0.2163086, 0.61376953, -1.3818359, 1.1494141, -1.9570312, 0.49829102, 0.35595703, -0.71875, 0.51171875, 3.6835938, -0.8876953, -0.5708008, 0.0062713623, 0.3017578, -0.9423828, -0.33081055, 0.031051636, -2.2636719, -3.3867188, -0.90771484, 2.515625, 4.390625, 1.125, -0.20678711, -3.1660156, -0.55615234]}, "B0787VMCT8": {"id": "B0787VMCT8", "original": "Brand: FDW\nName: FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze\nDescription: \nFeatures: \u2160 \u3010EASY TO ASSEMBLY:\u3011All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater\n\u2161 \u3010PUT LOTS OF HEATER:\u3011The patio heater\u2019s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it\u2019s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater\n\u2162 \u3010MULTIPLE PLACE USAGE:\u3011The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters\n\u2163 \u3010SAFTY:\u3011 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater\n\u2164 \u3010HIGH QUALITY MATERIAL:\u3011 The patio heater use high quality stainless steel of the heating element which isn\u2019t easy to melt/burn off, and the outdoor heater fire can\u2019t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater\n", "embedding": [-0.43310547, 0.5854492, 0.8642578, -1.2138672, 0.9428711, 0.6118164, 2.1992188, -2.4375, -0.01939392, 2.0898438, 0.16345215, 0.9067383, 1.4541016, -4.9453125, 1.7783203, -0.5185547, 0.25317383, 0.33764648, 1.9716797, 0.5419922, 1.7949219, -1.34375, -1.0634766, -0.3798828, 1.6523438, 0.22253418, 3.7089844, -2.5371094, -0.007160187, -1.0761719, -0.49145508, 1.1298828, -0.51123047, 1.3183594, -2.9589844, -1.859375, -0.82177734, 1.6523438, -3.4472656, 0.10687256, -2.0292969, -2.6445312, 0.97509766, 1.4326172, -1.5576172, 2.3105469, 1.3027344, 1.7470703, -0.42041016, -0.9970703, 0.28100586, -0.35302734, 0.4909668, -0.3544922, -1.6328125, -0.22644043, -1.1064453, -4.7578125, 0.51416016, 0.35791016, -0.2421875, -0.89404297, -1.9658203, 3.0664062, -1.2783203, -0.0519104, 0.80126953, 0.14282227, -1.4697266, 0.7885742, 1.8515625, -0.6401367, -1.2080078, 0.92578125, 0.5185547, -0.25048828, -2.578125, 1.4375, 3.9628906, 0.0947876, -0.91015625, 2.2128906, 1.96875, 0.40478516, -1.8085938, -0.07171631, -1.7041016, -0.5283203, -0.22241211, 2.6660156, -1.8095703, 3.3691406, -0.6977539, -3.2714844, 1.2128906, -2.71875, 1.1865234, 1.8330078, -1.2978516, 1.59375, -0.2130127, 0.39941406, -0.18322754, -0.12072754, -0.6088867, -1.3359375, 3.5058594, 2.2167969, -2.5800781, 0.79003906, -2.3554688, 0.41918945, 1.5185547, -0.9794922, -0.02217102, 1.2519531, 0.4230957, 1.7197266, 4.3984375, 0.71435547, 4.984375, -0.49389648, 1.9316406, -1.8027344, 0.6513672, -0.33398438, -1.0097656, 0.38842773, 0.5708008, -2.7988281, 0.2836914, -0.9736328, 1.6464844, -0.06982422, -0.9848633, -1.5732422, -1.7441406, -1.8583984, -3.6523438, -0.5883789, -1.2333984, 1.1582031, 1.4990234, 1.2060547, -3.7792969, 0.45385742, -2.4355469, 2.6152344, -1.0683594, -1.8486328, 2.0996094, -1.1259766, -0.4946289, -1.9414062, 0.6533203, 1.9023438, 0.3876953, -3.3300781, 3.7929688, 1.5009766, 2.1210938, -0.94873047, -0.16149902, 1.7470703, 0.17529297, -0.4543457, 2.5488281, -0.05682373, 0.34765625, 0.74560547, 0.115722656, -2.4960938, -0.76220703, 0.37597656, 0.9082031, -2.1328125, -0.5644531, 1.7373047, -1.1621094, 0.1665039, -2.0605469, -1.1201172, 0.92871094, 1.3730469, -0.87353516, 0.30981445, -0.9326172, -1.2353516, 0.16687012, -0.8383789, -1.3359375, -0.6689453, -0.79589844, -1.8808594, -0.018661499, -1.9404297, -3.4160156, -0.97802734, 2.8417969, 1.3466797, 0.10925293, -0.22753906, -0.045440674, 0.20227051, -2.0078125, -1.9423828, -0.11138916, -0.27075195, 0.11114502, -0.21960449, 0.24279785, 1.6425781, 2.53125, -0.8125, 1.4960938, -0.02720642, 2.15625, -0.20288086, 0.93359375, 2.1015625, 0.9663086, -0.051940918, -1.5224609, 0.32006836, -0.87646484, 0.95214844, 1.6953125, 1.0185547, 0.22521973, -2.4824219, 2.6386719, -0.07739258, 1.2431641, 0.6948242, -2.15625, 2.3242188, 0.96972656, 0.50390625, 0.61328125, 0.91845703, 1.6308594, -0.9067383, -1.6630859, 0.06842041, 0.38549805, 0.053253174, -0.09454346, 0.890625, -0.06378174, -0.5683594, -0.15661621, -1.7099609, 0.10058594, -1.4609375, -1.2539062, 0.14868164, 0.48046875, 0.7290039, -0.85595703, -1.8378906, -0.03475952, 0.23779297, -0.80810547, 1.5820312, 0.18664551, -0.6142578, 3.6894531, 1.3544922, -3.1523438, -0.5317383, -1.2490234, 1.0947266, 1.4892578, 0.5263672, 2.1484375, 1.7939453, -2.1523438, 2.1640625, -0.31884766, 0.23266602, 0.8881836, -1.7832031, 3.6484375, 0.064453125, 0.8198242, 0.5654297, -0.37890625, 0.5341797, -0.29736328, -0.45166016, 3.7851562, -2.3808594, -3.8007812, 1.0332031, -0.6796875, 2.7558594, 1.6347656, 0.046203613, -1.0351562, -1.3349609, 2.3066406, 1.0019531, -2.734375, 2.1835938, -2.3417969, -0.23669434, 1.6679688, -3.9277344, 0.66064453, 0.86816406, 0.40307617, -1.5283203, -2.5664062, -1.9619141, -2.0039062, -1.6064453, 3.6816406, -2.7695312, 2.1660156, 1.7587891, -0.44995117, -1.0996094, -0.022369385, -0.9145508, -1.1660156, 0.7783203, 0.12200928, 0.2800293, -1.2734375, -1.0742188, 0.24658203, -3.0019531, 1.9726562, -1.7509766, -2.9003906, -1.1875, -1.4794922, -1.2666016, -0.3701172, -1.0771484, 0.9506836, 0.7758789, -0.096069336, 1.0205078, -1.1826172, -0.6376953, -0.07647705, 0.7036133, -0.89941406, 1.3232422, 1.1542969, 1.1943359, -2.6210938, -3.9121094, 0.18664551, 2.2929688, -0.47998047, 0.95166016, -2.0664062, -0.2421875, 0.76220703, 0.66552734, -0.9785156, -0.023986816, 0.56103516, -3.1484375, -0.09350586, -3.8417969, 1.6699219, -1.1904297, 1.3310547, 0.9995117, 1.96875, -2.7382812, -1.4160156, 0.0010070801, -1.6240234, 3.1074219, -0.035827637, 2.3476562, -1.5625, -0.34033203, 1.8994141, -0.14355469, -1.9902344, 1.3212891, -1.9257812, 0.5859375, 0.066345215, -2.1425781, 1.3310547, -1.9667969, -2.1953125, 0.36328125, -0.28710938, -0.60595703, -1.8037109, -1.4443359, 0.8041992, -0.46411133, -0.08843994, 0.35424805, 2.1308594, -3.4726562, -1.0419922, 0.32592773, -0.038024902, -1.7138672, 2.0253906, -0.15734863, 0.17626953, 2.2402344, -0.86572266, 1.5429688, 0.3100586, -5.0976562, 2.6425781, 4, 0.7680664, 0.67333984, -2.2890625, -1.1025391, -1.3222656, 0.39770508, 3.7246094, 0.8022461, 3.2519531, -1.6855469, -0.013755798, 0.7734375, 2.1269531, -0.5332031, -0.92626953, -1.59375, 4.078125, -2.3730469, -0.57373047, 1.8369141, 1.7246094, -4.203125, -1.1025391, 0.31298828, 0.070739746, 1.6298828, 1.0625, -0.74853516, 1.2099609, 1.1386719, 1.6064453, 1.4755859, 2.1699219, -1.2363281, -3.5058594, -0.0028839111, 1.1435547, 1.7470703, 0.89208984, 1.0136719, 1.4257812, 1.5244141, 1.3681641, -1.8125, -0.12902832, 0.39624023, 1.4716797, 0.36108398, 2.3808594, -1.6757812, 0.47070312, 0.52246094, -0.32592773, 0.57714844, -2.8808594, -0.32373047, 3.4101562, 0.6386719, 0.21582031, -0.28125, 0.064208984, 1.0039062, -2.21875, -1.0058594, -0.5839844, 0.89404297, 0.58447266, -1.2900391, -0.6035156, -1.6894531, 1.6738281, -0.04763794, -3.90625, 0.1619873, 1.3476562, 0.02633667, -0.85546875, -0.56347656, -1.1972656, -1.4257812, 3.6464844, -0.640625, -0.28588867, -0.2208252, -1.7402344, 2, -0.049682617, -1.0859375, -1.2197266, 0.7548828, -0.81396484, 0.72265625, -1.1318359, 2.3320312, 2.6367188, -3.6484375, 0.13342285, -0.75634766, -1.4833984, 2.5019531, -1.3320312, -2.4453125, 1.3330078, 0.8203125, 3.65625, 0.34375, 3.8828125, -2.7558594, -1.6015625, 3.2851562, 0.0134887695, 1.3222656, -0.6201172, -4.7070312, 0.006866455, -2.5898438, -1.0976562, 1.9951172, -0.5932617, -0.47973633, 0.38671875, 0.49536133, -2.515625, -2.2285156, -0.1352539, 0.009864807, -3.3574219, 0.8725586, 0.46191406, 0.6347656, -1.3017578, -3.6074219, -0.7895508, -0.36547852, 0.6328125, 3.5097656, -0.9003906, 1.6689453, -2.0820312, -0.90478516, 0.020858765, 0.91748047, -0.69628906, -0.6352539, 0.18188477, -0.66064453, 2.2636719, 1.6201172, 1.2861328, 2.2578125, 4.0898438, -0.12695312, -0.67333984, 1.7021484, 1.1523438, 3.2910156, -0.5698242, -2.9003906, -0.36132812, 0.75634766, 1.4755859, -1.8378906, -0.87841797, 1.7666016, -2.453125, 0.6777344, 1.4755859, 0.01058197, 0.53271484, 1.7695312, -3.8222656, 0.18139648, 1.9941406, -3.8496094, -2.6054688, -1.3242188, -0.9580078, -1.9580078, 1.1669922, -0.94433594, -1.1464844, -2.0136719, -1.9130859, -1.3847656, 1.0771484, 2.5410156, 2.6386719, 0.8261719, -1.6728516, -1.4023438, -0.61083984, -1.1689453, -0.27905273, 1.8779297, -1.0478516, -0.5703125, 2.4863281, 3.0585938, -1.5439453, -0.117126465, 0.7597656, -0.7807617, 0.19421387, -1.9423828, -1.3808594, 0.8066406, -2.3300781, 1.2714844, 0.3095703, 1.8056641, -2.2246094, -0.24707031, 1.2041016, -0.20422363, -2.3222656, 1.4863281, -0.7739258, 0.16687012, 1.53125, 1.1992188, 1.5634766, -0.0496521, 1.2373047, -0.69970703, 2.9726562, -2.2089844, -1.1425781, -0.7558594, -0.5371094, -1.4550781, 0.5083008, 2.3261719, 0.26245117, 0.39111328, 1.6630859, 1.6738281, -0.5444336, 2.4296875, 0.51953125, -1.8574219, -0.20019531, 0.70654297, -0.42651367, 1.78125, -1.1523438, -2.3105469, -0.9121094, 3.6582031, -0.7451172, 1.8203125, 0.6972656, -1.7539062, 0.03488159, -1.6054688, -1.2636719, -1.0253906, -1.5019531, 1.1132812, -0.37524414, -0.40625, -2.53125, 3.984375, 1.7490234, -0.96484375, -0.8183594, 0.47460938, -0.08117676, -0.27856445, 2.6855469, -0.23901367, 0.19543457, -0.38989258, -0.9111328, 1.5771484, 0.7866211, 1.9541016, -0.023742676, -1.3525391, -1.2724609, -1.3642578, 3.8632812, -3.515625, -0.9116211, 2.125, 0.6826172, 0.95654297, -3.0742188, -1.0595703, -1.1152344, 2.4335938, -1.4257812, -0.004043579, 1.8935547, -0.9199219, -2.4101562, -2.6386719, -0.46606445, 0.9951172, -1.9560547, 0.091918945, -1.4541016, -2.4296875, -0.16564941, -0.56689453, -0.30664062, -0.8129883, -0.86083984, -0.82373047, 1.1591797, 0.2290039, 0.04953003, 1.9248047, 0.89941406, -2.1347656, 0.2277832, -0.52783203, -2.765625, -2.5253906, 0.48291016, -0.6347656, 1.1992188, 2.4433594, -1.7050781, 1.3339844, 2.7636719, 0.4543457, -1.6767578, -0.4013672, -0.8925781, 0.006580353, 3.859375, -2.6035156, 0.74072266, -0.4013672, -1.1044922, -0.5551758, -1.8310547, 0.15429688, 1.1552734, 1.9414062, -1.3369141, 0.83984375, -0.064941406, -0.4428711, 1.0732422, -0.04159546, 3.4179688, 0.24133301, -2.1464844, -0.7504883, -2.375, -0.24194336, -0.7919922, -2.4511719, -0.75878906, 1.1113281, 0.95654297, -0.17956543, -1.3525391, 1.1279297, 1.3173828, 0.7758789, -1.921875, 0.09051514, 0.6147461, 3.4199219, -0.3544922, -1.2207031, -4.1484375, -4.0585938, -1.2744141, 1.1416016, 1.2041016, -0.25561523, -2.1953125, -1.2158203, 1.8476562, -1.3164062, 1.0654297, 0.8251953, 2.6503906, -1.9199219, 1.1386719, 1.7431641, 1.4287109, -0.2397461, -0.08630371, 1.8916016, -1.0888672, 3.3105469, 1.84375, -0.93408203, -0.5336914, -0.08569336, 2.7050781, -0.14892578, -2.2109375, 1.5976562, -4.234375, -0.91015625, -1.9257812, -1.0644531, -3.2324219, 1.2021484, 1.453125, 0.46118164, -0.76171875, 1.4384766, -0.2565918, 0.6801758, 1.8125, 0.36401367, -1.6142578, 0.22802734, -0.5131836, 1.0107422, 3.5292969, -0.017333984, 0.98046875, 0.20874023, 1.0097656, -0.3486328, 1.1962891, 0.68066406, 1.4248047, 2.7617188, 1.1142578, 3.5136719, -0.10852051, 2.4882812, 0.42211914, 1.4130859, 1.1376953, -0.82714844, -0.15698242, 2.1484375, 2.5839844, 0.14697266, -0.36083984, -0.77001953, 1.1103516, -0.37695312, -1.9345703, 0.04916382, 2.1210938, 0.2355957, 0.41479492, 0.95458984, -0.017669678, -2.4355469, 1.4609375, -0.5024414, 0.9760742, 0.59472656, -0.1595459, 1.0263672, -0.29492188, -1.6103516, -1.7851562, -0.11663818, 1.4541016, -2.625, 1.6171875, -1.0898438, -0.96533203, -0.17712402, 2.2148438, 2.0234375, 0.62939453, 0.80029297, 0.8178711, 3.03125, 1.8027344, -0.67285156, 0.25, -1.5009766, -0.00541687, 3.0957031, 1.9140625, -0.8876953, -1.1738281, 0.8803711, -1.2929688, -2.8398438, 2.2578125, 0.3840332, -1.0673828, 0.21740723, -1.0566406, 0.71484375, -0.5576172, 2.0722656, -3.1015625, 1.6396484, 1.0830078, -0.7006836, 0.44091797, -0.47973633, -2.4804688, 1.9511719, 0.7866211, -0.02154541, 2.6269531, 0.09729004, 0.4958496, 1.3417969, 0.6479492, -1.2929688, 2.8535156, 0.2626953, 2.4882812, 1.2724609, 0.43969727, 0.8378906, -1.1328125, 3.0195312, -0.44921875, 1.4296875, -1.1289062, 1.3925781, 1.6279297, -2.2285156, -0.1472168, -1.6650391, -0.9394531, 0.55615234, 1.0488281, -0.4345703, -2.4667969, 1.6669922, -0.31298828, -0.2775879, 1.5859375, 2.4492188, 0.15979004, -0.0010433197, -1.0341797, -0.75927734, 0.4104004, -1.1777344, 1.1552734, -1.4121094, 0.33398438, -0.7451172, 0.6035156, 1.0898438, -0.28833008, -0.4892578, -0.7871094, -1.3867188, -0.23522949, 1.5917969, 0.2614746, 1.6416016, 0.54785156, -1.6152344, -0.49243164, 1.9951172, 1.5869141, 0.38720703, -2.0195312, -3.0566406, -0.09576416, 0.6542969, 0.07739258, 2.7011719, 4.0039062, -0.033599854, 1.2734375, -2.1972656, -2.8125, -2.921875, -1.2070312, 0.6713867, -0.14221191, -0.011772156, -0.8598633, -0.01586914, 1.4599609, 0.5605469, 0.23864746, 0.43188477, -1.0673828, 1.6064453, 0.21069336, 0.87646484, 0.9975586, 0.2319336, -0.25805664, 0.5361328, 1.9541016, 1.2197266, 0.4230957, 1.3896484, -0.53222656, -3.5742188, 0.12634277, 0.15283203, 0.9169922, -1.4755859, 1.3964844, 1.8261719, -0.2364502, -0.43945312, -3.7832031, -2.5136719]}, "B073KV4WLJ": {"id": "B073KV4WLJ", "original": "Brand: GasOne\nName: GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb\nDescription: \nFeatures: Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\nSave money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\nEASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\nSafety 1st - top quality propane hose adapter\n", "embedding": [1.0244141, 1.6533203, 0.04788208, 0.41992188, -0.3425293, -1.2802734, 0.7089844, -0.42260742, 0.5234375, 1.2275391, 2.1835938, 1.5273438, 0.1451416, -1.3242188, 0.15881348, -0.45751953, -0.203125, 0.62646484, 1.8535156, 2.4589844, 3.09375, 1.3300781, 1.9726562, -0.9277344, 0.04849243, 0.9160156, 2.0058594, -2.3125, -2.5078125, 0.7158203, 0.61572266, 0.16918945, -0.5649414, 0.40625, -0.38916016, -2.1210938, -1.015625, 0.06365967, -4.5273438, -2.4414062, -0.9501953, 3.1640625, 4.140625, -0.43896484, -1.109375, 0.88378906, 2.4726562, 0.4716797, 0.78027344, 0.70654297, 0.47558594, 0.68603516, -0.10864258, 0.49194336, 1.0625, 1.8554688, 1.7089844, -3.4902344, 0.8417969, 0.9555664, 2.2421875, 1.0488281, 0.049438477, -0.49560547, 0.2529297, 1.3388672, -2.7363281, 0.40356445, -1.5029297, 0.59814453, 1.359375, 1.3320312, -0.56591797, -1.109375, -4.0429688, 1.4873047, -4.953125, -0.52734375, 1.1396484, -0.5332031, -1.0849609, 1.2285156, 1.3222656, 0.23522949, -0.671875, -0.5029297, -1.5664062, 2.3691406, 1.2451172, 1.1865234, -3.3457031, 4.0898438, -2.3496094, -2.28125, 0.34277344, -0.6118164, 0.34399414, 3, 2.9238281, -0.08251953, -0.22790527, -1.0107422, -1.0419922, 2.0527344, -1.0839844, -1.1474609, 0.076660156, -0.9921875, -1.8076172, 1.1318359, -0.52783203, -0.49145508, 2.2929688, -1.9296875, -0.37451172, -3.46875, 0.9375, -0.7788086, 2.3476562, 0.13085938, 3.2597656, -0.27661133, 1.3398438, 0.4580078, 1.8212891, 1.5068359, -1.1298828, 0.14172363, 1.1210938, -0.033355713, 0.04827881, -0.2614746, 2.6484375, 0.5498047, 1.0097656, -1.8710938, 0.03881836, -2.7011719, -1.7080078, -1.5742188, -4.2578125, 1.0976562, -0.008018494, -0.47338867, -3.5566406, 0.10876465, -3.0273438, -0.84472656, 0.8984375, -1.7265625, 0.9873047, -3.4199219, -2.3710938, -1.9951172, 2.8652344, 0.36157227, 1.5205078, -1.5126953, 1.3671875, 2.5761719, 0.6899414, 0.97509766, -1.6181641, 0.9707031, -0.8979492, -2.5507812, 2.0859375, 0.2878418, -2.5976562, -0.9975586, 0.1171875, -0.10345459, 1.2128906, 0.70214844, -1.3095703, -1.9091797, 0.8984375, 1.3378906, 0.6669922, 0.6567383, -3.3652344, -2.2246094, -0.4387207, -3.0039062, 1.2089844, -0.44848633, -3.4921875, -1.1894531, -0.1126709, -0.65283203, -1.0371094, -0.084472656, -0.20751953, 1.2177734, -0.18762207, -1.4970703, -2.8457031, 0.24230957, -0.10217285, 3.0605469, -1.5302734, -1.0566406, 1.6074219, 0.08166504, -1.8662109, -1.7802734, 3.078125, -1.1054688, -1.2402344, 2.3535156, -1.1923828, -0.11853027, 2.5273438, -1.0664062, -0.29882812, -1.9775391, 2.7363281, 2.453125, 0.7363281, -0.1875, -1.0478516, -1.0429688, 1.5039062, -0.8618164, 1.3457031, 0.65185547, -2.0214844, 0.58740234, -1.3583984, -0.8339844, 1.5751953, 1.8710938, 1.0820312, 0.87646484, -0.4321289, 1.9726562, -0.06555176, 0.6611328, 1.2773438, 2.3300781, 2.2832031, 1.109375, -2.890625, -2.2363281, -1.8369141, 1.3701172, -0.6010742, 1.53125, 3.9492188, -0.34545898, -0.13806152, 0.21154785, -2.109375, -1.4365234, -2.5625, 0.14868164, 0.5805664, 2.734375, -0.40893555, -0.32543945, 1.6347656, 0.8496094, 1.5029297, -0.06628418, 0.4543457, 0.12072754, 0.9555664, -1.9345703, 0.59472656, 1.3730469, -0.34936523, 1.7412109, 2.4980469, -3.2929688, 0.22192383, 1.5273438, -1.4101562, 2.1132812, 1.5087891, 0.47070312, 2.6601562, -2.2480469, 1.0419922, -4.0585938, 2.5917969, 2.1601562, 3.5390625, -0.2310791, -1.8867188, 1.2822266, 2.7753906, 0.3527832, -1.203125, 1.9814453, 1.8964844, 0.7792969, 1.0625, 0.4621582, 0.72216797, -1.34375, 0.021774292, 0.8305664, -0.8198242, 0.8691406, 3.46875, 0.8305664, -0.19335938, 0.49560547, 2.0039062, 0.17492676, -0.28857422, 0.016967773, -1.5966797, 0.81591797, -1.3964844, -0.030715942, 3.4003906, -0.3857422, 0.07318115, 1.9433594, 1.421875, 0.16967773, 2.5605469, -0.75927734, 0.8671875, 1.4394531, -0.92333984, 0.7270508, 0.7285156, -0.26293945, 0.95166016, -1.7246094, 1.4931641, -1.1298828, -0.24121094, 3.2617188, -1.2275391, -2.453125, 1.2314453, -0.9482422, -1.3828125, -0.39257812, -0.018829346, 2.7363281, 0.47973633, 1.4189453, -0.8095703, 0.5522461, -0.71484375, -3.046875, -0.52197266, 2.2792969, -2.3183594, -0.9707031, 0.017929077, -0.17138672, -0.5029297, 2.8027344, 0.27905273, 0.28686523, 2.0683594, 0.34350586, -1.4560547, -0.08703613, -2.40625, -1.9726562, 3.2167969, -3.1484375, -0.40673828, -2.5839844, 0.028778076, -1.7265625, -2.0175781, -1.8212891, -2.0410156, 0.98095703, 0.6176758, 1.3261719, 0.19897461, 0.90185547, 1.3818359, -1.6914062, 1.5371094, -1.7392578, -3.3808594, -1.2802734, -0.062347412, -0.30126953, 0.40625, -3.3242188, 2.0839844, 0.3544922, -1.3076172, 0.021484375, -0.21826172, -1.2236328, -2.2089844, 2.7128906, -2.6582031, -0.3178711, 2.1074219, 0.1328125, -2.4902344, -0.13024902, -0.22314453, -1.8076172, 0.03100586, -1.7939453, -1.0253906, -1.3574219, -1.7958984, 0.3630371, 0.8823242, 0.009590149, -0.72314453, -1.5371094, 0.22460938, 3.0058594, -0.7368164, 1.6005859, -2.296875, 0.79541016, -4, -1.703125, 1.4121094, 0.23327637, 3.8183594, 0.7011719, 1.9746094, 0.5439453, 1.796875, -0.9838867, -0.90283203, -1.4765625, 2.6660156, -2.3183594, -0.24035645, -2.7421875, 2.0234375, -3.2285156, -0.28466797, 1.2226562, -0.27026367, 2.75, 0.49609375, 0.3479004, 0.13586426, 1.0625, 0.6269531, 1.0380859, 1.6347656, 2.3535156, 3.3457031, 0.5708008, 0.26342773, 0.7006836, 0.19335938, 0.5805664, 1.9980469, 0.16748047, -1.2763672, -2.09375, 0.5961914, 0.21142578, -0.48706055, 0.515625, 1.2607422, 1.0917969, 1.7167969, -0.4597168, 0.9897461, 0.71728516, -0.29370117, -1.2246094, -0.2602539, 0.91259766, 0.4165039, 1.4160156, -0.5288086, -0.30004883, -0.37231445, 0.3515625, 2.3574219, 1.0869141, 0.3803711, 0.6894531, 3.0351562, -0.5654297, 2.2929688, 0.37548828, 1.4111328, -0.48120117, -0.14343262, -1.6474609, -2.8222656, -1.0869141, -2.6972656, 0.359375, 2.7929688, 2.1777344, -1.3330078, 0.96240234, 0.07470703, 1.6425781, 1.5458984, -0.9604492, -1.3408203, -2.7460938, -1.5, 0.44018555, -0.5004883, 3.0273438, 0.73291016, -2.2519531, -1.1533203, 0.25878906, 1.515625, 0.11706543, 0.1352539, -0.94433594, -2.1484375, -2.75, 1.0380859, -0.70947266, 2.09375, 0.38720703, 1.4648438, 2.25, -3.2421875, -0.73339844, -0.51953125, -3.7636719, 0.7949219, -1.9892578, 2.1210938, 3.546875, -0.53808594, -0.21850586, 0.36499023, 1.1826172, -2.0292969, -1.3066406, 0.50341797, 2.3417969, -2.2929688, 0.027282715, 2.4570312, 1.1611328, -1.6201172, -1.5810547, 0.27807617, -1.6962891, -1.6396484, -0.7988281, -2.7421875, -0.61376953, 0.3046875, 1.2519531, -2.0996094, -0.9458008, 1.9960938, -1.4228516, -0.89941406, -3.1660156, 0.99316406, -0.19445801, -0.36889648, 0.08215332, 2.5253906, 2.4335938, -2.9492188, 1.171875, -1.3935547, 2.75, -0.7602539, -2.1992188, -0.70654297, -0.34326172, 0.65283203, -0.2541504, -2.4882812, -2.4570312, -0.2084961, 0.42895508, 1.03125, 1.2685547, 1.0810547, 0.8935547, -2.2714844, 0.1907959, 0.6098633, -2.2597656, -0.5024414, -1.8164062, 0.9921875, -1.8847656, 0.47070312, -3.1503906, -0.26635742, 0.7783203, 0.38671875, -2.0898438, 1.1376953, 0.74853516, 1.1503906, 0.5444336, -0.14660645, -0.029769897, -0.06866455, 3.9628906, -0.7651367, -0.6459961, 0.22375488, -0.22485352, 1.2597656, 1.3623047, 0.6660156, 0.97265625, 0.0032844543, -0.8847656, -0.84814453, -0.76220703, 0.85009766, -1.6474609, -0.92285156, -0.8984375, -3.0507812, 4.8242188, -1.5908203, 1.0146484, -1.7753906, -1.8330078, -2.2871094, 2.2890625, 2.5644531, 0.17138672, 0.59472656, 0.21142578, 2.5, 3.0332031, 1.2216797, 0.91503906, 0.46777344, -0.3100586, -1.4384766, -0.57470703, 1.4658203, -0.115234375, -0.14953613, 0.75634766, 0.52197266, 3.3417969, 3.4179688, 2.0234375, 0.16345215, 0.28735352, 0.07720947, 0.6386719, -2.2011719, -0.036193848, -0.3251953, 2.953125, -0.99560547, -2.1933594, 1.8095703, 2.6660156, 0.91503906, 1.7148438, 1.3378906, 1.0009766, -0.7890625, -2.1660156, -1.2880859, -0.52246094, 0.22229004, -1.0205078, -1.4619141, 1.4033203, 0.6557617, 1.5371094, 1.2236328, 1.4189453, 0.3256836, -0.2685547, -0.2993164, -1.6132812, -2.8535156, -0.22167969, -3.5527344, 0.7402344, -1.9072266, 3.0019531, 1.1923828, 0.10211182, -0.5239258, -1.5029297, -1.4023438, 2.109375, 1.8964844, -0.45483398, -0.7685547, 3.2695312, 0.9160156, -0.8647461, -2.140625, -1.4404297, -0.71972656, 1.2900391, 2.7285156, 1.5888672, -0.88671875, -0.52685547, -2.0175781, -4.84375, 1.2236328, 0.8671875, 1.1230469, -0.0030155182, -1.8759766, -1.3417969, 0.25952148, -1.2539062, -0.9321289, -2.75, 0.7910156, -2.1640625, -0.8847656, 0.23620605, -0.019119263, -0.5957031, -0.043823242, -1.3505859, -1.3681641, -0.07165527, -1.2519531, -3.4082031, -0.7836914, -0.9433594, -1.3935547, -0.30444336, -0.6430664, -0.58496094, 1.4326172, 1.5722656, -2.2597656, 1.5664062, -3.1855469, 1.0527344, 1.0341797, -1.984375, 1.9228516, 2.0546875, -0.48535156, 2.1035156, 2.5566406, 3.0507812, -2.1308594, -0.6616211, -0.16662598, -0.5, 0.51953125, -0.4501953, 1.5185547, -1.0761719, 1.0146484, 3.3222656, -0.26513672, -1.8847656, -0.5209961, 0.14941406, 0.6015625, -1.8076172, -0.3239746, 0.7944336, -0.09387207, 1.3779297, -1.6337891, 1.0917969, 0.24511719, -0.4104004, 0.79296875, 0.38330078, -2.4980469, 1.7802734, 1.3457031, -1.2763672, -4.3242188, 0.62939453, 3.7421875, 2.1152344, -0.51123047, -0.2841797, 1.4130859, -1.6054688, 0.56689453, 0.04840088, 1.3564453, 0.84765625, 1.7529297, -1.7519531, -0.42944336, 2.4550781, -0.15319824, 0.09893799, -0.30517578, -1.2744141, -0.21374512, -0.8676758, 2.8769531, -1.9003906, -1.046875, -1.9677734, -0.033996582, -1.9707031, -0.14855957, -0.21826172, -3.171875, 0.88671875, -0.20959473, -3.5175781, -4.9726562, 2.7851562, 0.17272949, -0.13415527, 0.53515625, 2.3808594, -1.6513672, -1.9980469, 0.10253906, 1.9033203, -0.08117676, -0.3269043, -1.8847656, 0.5029297, 1.1083984, -2.7792969, 2.4785156, 1.0322266, 1.1064453, -0.2220459, -0.4650879, -0.3095703, 2.2109375, 0.82177734, 1.2402344, 3.1777344, -0.26171875, 1.578125, 1.2099609, 0.045898438, 0.91503906, -1.2646484, 0.5415039, 1.4960938, -0.004310608, 0.79052734, -1.6777344, -0.93310547, -1.5722656, -1.9228516, -0.8984375, 1.4970703, 1.9111328, -4.7578125, -0.084472656, -1.9189453, 0.32226562, -0.7236328, 0.7441406, -1.0068359, -0.75683594, 0.10913086, 1.03125, 1.2607422, 1.6894531, -1.2099609, 0.22790527, -1.7900391, 1.9228516, 1.7822266, 0.25585938, -3.90625, -1.2451172, 0.51171875, 0.5625, -0.13085938, -0.062683105, 0.67578125, 1.6962891, -0.29638672, 1.0830078, 0.97314453, -1.3388672, 0.7211914, -1.8574219, 3.1699219, 2.9511719, -0.1730957, 2.9609375, -0.6826172, -1.1035156, -3.3632812, 1.5458984, 1.8691406, -1.1650391, -0.58740234, -2.2949219, 1.4550781, -3.0058594, -0.5576172, -2.734375, -2.1035156, -0.68847656, -0.08746338, -0.034301758, 0.77490234, -0.87939453, 0.23303223, 1.6455078, -0.71484375, 0.103271484, 2.6367188, 0.7871094, 0.49609375, -0.9614258, -0.6298828, 0.1105957, -1.2890625, 1.4931641, -1.6308594, 0.6723633, -1.5732422, 3.21875, 1.4287109, 0.12432861, 2.0351562, -0.38232422, 0.7836914, -0.27905273, -0.7133789, -0.3166504, -1.5322266, 0.9301758, -0.27392578, -0.23156738, -0.87353516, -1.0019531, 1.9609375, 1.3623047, -2.5390625, 0.90527344, 0.010665894, -1.6279297, 1.4677734, 1.3681641, -1.1533203, -1.1728516, -0.31030273, -0.007549286, -3.6503906, 1.1875, -0.6503906, -0.34985352, -2.6113281, -0.6821289, -1.6533203, -1.1425781, -0.8803711, -0.36083984, 0.79052734, -1.6318359, -0.40649414, -0.5996094, -0.6113281, 1.2080078, 0.56689453, -0.30200195, 1.4697266, -0.21582031, -0.61035156, 1.8818359, -1.8369141, -0.9536133, 1.6416016, 2.15625, 2.1601562, 1.9775391, -2.0722656, -0.91259766, -0.6816406, -2.6367188, 0.055236816, -0.051452637, -1.6962891, 1.4785156, 1.7822266, 3.1289062, -1.5429688, -0.8232422, -1.0673828, 1.8007812, 1.9277344, -1.9707031, 1.7304688, -0.097473145, -0.49829102, 0.5805664, 4.6445312, 3.2792969, -1.3789062, -1.1582031, -0.5566406, -2.1484375, -2.6621094, -0.45629883, -0.73535156, -1.4384766, 0.8769531, 2.7441406, 3.2753906, -1.2353516, -0.80908203, -0.81396484, 0.40673828]}, "B003T08FV4": {"id": "B003T08FV4", "original": "Brand: Hiland\nName: Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver\nDescription: \nFeatures: seasons: All year long\n", "embedding": [-0.5732422, 0.10498047, 2.0371094, 0.67578125, -0.34033203, 0.21679688, 1.2285156, -2.1289062, -0.52490234, 1.6572266, 2.3300781, 2.4863281, -1.0576172, -3.0683594, 0.09564209, -2.1113281, 2.2539062, -0.5107422, 1.3222656, -1.3925781, 1.7851562, 0.8779297, 2.2988281, -1.6855469, 1.7773438, 0.53466797, 5.9921875, -1.8632812, 0.34423828, 1.1484375, 0.24926758, 1.5058594, -0.21362305, 2.4648438, -2.0078125, -1.5742188, -1.2119141, 0.9970703, -3.2226562, 2.0800781, -1.7705078, -2.0527344, -0.92578125, 2.1816406, -1.1601562, 0.10675049, 1.2861328, 0.69677734, -0.73046875, 0.4177246, -0.11639404, 0.1038208, -1.3261719, 0.26171875, -1.2880859, 0.44067383, -1.5722656, -2.1328125, 0.6904297, -0.11395264, 0.61376953, -1.625, -1.4238281, 1.3027344, 0.33764648, 1.8730469, 0.25878906, -0.82177734, -0.9379883, 1.1923828, 1.2792969, -1.3671875, -1.5703125, -0.1685791, -0.19519043, -0.6533203, -3.2753906, 1.0644531, 0.60302734, -1.5244141, -1.0048828, 0.45825195, -0.52441406, -0.64746094, -1.1796875, -0.7104492, -0.78027344, -1.4384766, -0.21325684, 1.2148438, -0.28857422, 1.140625, -0.70410156, -5.015625, 0.3154297, -2.1484375, -0.22436523, -0.29736328, -0.6928711, 0.7216797, -0.1439209, -0.32495117, 0.8100586, -1.0742188, -0.50683594, 0.49267578, 1.9775391, -0.02029419, -1.9882812, 0.7080078, -2.2480469, -0.22399902, 1.5283203, 0.7050781, -1.0751953, 0.7915039, 1.5332031, 3.1230469, 4.1328125, 1.8398438, 3.7460938, -1.0097656, 1.5957031, -0.37817383, -1.0644531, 0.20861816, 0.095825195, 0.50390625, 1.5742188, -2.4472656, 2.6269531, 0.75683594, 1.7685547, 0.48999023, 1.1357422, -0.8232422, -1.1699219, -0.11529541, -2.515625, -1.8427734, -0.21032715, 0.71484375, 1.3134766, 0.5620117, -4.2109375, -2.1699219, -0.54345703, 0.20458984, -1.9306641, -0.0395813, -0.59765625, 0.012199402, 0.20056152, -1.0273438, -0.21679688, 0.2548828, 0.41308594, -1.0498047, 2.3261719, 1.859375, 0.6743164, 0.7973633, -1.9775391, -0.1459961, -1.2226562, 0.265625, 0.7866211, 0.71777344, 0.01739502, 2.4277344, -0.89208984, -1.1074219, -0.5605469, -0.48754883, 0.8725586, -0.4050293, 0.22558594, 0.9609375, 0.33496094, -0.07885742, -0.7241211, -0.72216797, -1.2275391, -0.35253906, 1.2617188, -2.3632812, -1.0898438, -2.5585938, 1.140625, -1.4238281, 0.66503906, -0.2614746, 0.11657715, 0.20593262, -0.84716797, -1.7998047, -3.3710938, -2.2089844, 2.2578125, 0.51904297, -0.60791016, 0.04525757, -1.2011719, -1.3515625, -0.96875, -2.7148438, 1.0292969, -0.8925781, 1.8193359, 1.2607422, 2.1835938, -0.484375, 1.4873047, -0.3696289, 0.98095703, -2.7636719, 2.7617188, -0.5, 0.73535156, 2.6738281, -0.09008789, 1.9335938, -1.3613281, 0.22937012, -0.52246094, -0.089782715, 1.0234375, 1.0605469, -2.1035156, -0.8413086, 2.1621094, 2.1171875, 0.40576172, 0.75634766, -0.21313477, 2.6699219, 1.6376953, -0.09088135, 0.31567383, 1.0976562, 1.1894531, -0.2064209, 0.0758667, -0.46362305, 0.25390625, 1.4052734, -0.26879883, 0.64208984, 0.51953125, 0.38964844, 0.3395996, -0.025238037, -0.5566406, 0.068847656, -0.7138672, 1.4091797, 0.56884766, 0.9667969, 1.0498047, -3.5488281, 2.1445312, -0.41845703, 0.27001953, 0.6196289, 0.07873535, -0.86328125, 3.3476562, 1.0732422, -1.2451172, 0.14294434, -1.1689453, 0.76416016, 1.0341797, -1.3652344, 1.765625, 0.94970703, -2.0214844, 3.1464844, -1.0390625, 0.5522461, 0.8154297, 0.0010690689, 2.203125, -0.30029297, 0.56152344, 0.4519043, 0.29736328, 0.03656006, -1.8984375, -0.19958496, 3.3398438, -0.8833008, -0.7270508, 1.9755859, 0.15991211, 1.6699219, 2.2910156, -2.3398438, -1.4677734, -1.359375, 2.5722656, 1.5117188, 0.43310547, 1.2158203, -2.9667969, -1.2949219, -0.8359375, -2.0097656, -0.18261719, 1.0703125, 0.40307617, -2.859375, -3.296875, 0.65283203, -3.2128906, -0.60791016, 2.1699219, -3.6132812, 1.4140625, -0.328125, -1.1826172, 0.0017271042, 1.0283203, 0.34692383, 0.01777649, 0.5551758, -1.7236328, 0.96240234, 0.8959961, -0.49291992, -0.23937988, -0.4572754, -0.32788086, -2.8105469, -2.0644531, -0.8666992, -1.3847656, -2.4589844, 2.1386719, -0.9604492, 0.3479004, 2.3339844, -0.112854004, 0.80859375, -0.7524414, -1.6240234, 0.4091797, 1.2861328, -0.43920898, -0.52685547, -0.40649414, 0.22924805, -2.5410156, -4.578125, -1.0585938, 2.1621094, -0.007129669, 0.23266602, -1.8642578, -0.75878906, 1.5566406, -1.0585938, 0.5180664, -0.74902344, -0.30297852, -1.1982422, 1.9355469, -4.1484375, 2.0605469, -0.8754883, 2.109375, -0.9868164, 1.3300781, -1.2148438, -0.3881836, 2.2285156, 0.42895508, 5.1132812, 1.3808594, 1.7900391, 0.56103516, 2.0703125, 0.69140625, -1.1777344, -1.9306641, 0.80615234, -0.6645508, -0.75634766, 1.4072266, -2.3457031, 0.4934082, -2.046875, -1.0810547, 1.4042969, -0.8276367, 0.5541992, 0.0670166, -1.1660156, 0.37304688, -2.5585938, -0.6230469, 0.80078125, 1.2568359, -1.6796875, -0.16760254, -1.5644531, 0.3022461, -0.6611328, 2.1328125, 1.2041016, 0.20153809, 2.3027344, -1.1210938, 1.9013672, -0.4189453, -4.0898438, 2.7871094, 1.9238281, -0.21374512, 0.04046631, -1.9892578, -2.0234375, -0.9399414, 0.6982422, 2.9433594, 3.203125, 2.5878906, -0.43798828, 1.7285156, 0.56396484, 1.5263672, -1.2402344, 0.4790039, -1.6894531, 1.3994141, -1.7167969, -3.0234375, 1.2460938, 0.8461914, -3.3535156, -1.8974609, 1.1347656, 1.0927734, 1.6953125, 0.5625, -0.9458008, 0.9013672, 1.2714844, 1.6572266, 0.16955566, -1.1230469, -0.60253906, 0.6074219, 0.6640625, 2.1054688, 2.0175781, 0.58447266, -0.15197754, 1.0615234, -0.93847656, 1.2734375, -0.9399414, 0.8178711, 0.94140625, 1.2617188, 0.80322266, 0.08673096, -0.9716797, 0.31689453, 2.8300781, 0.55322266, -1.3623047, -3.2148438, -0.7368164, 2.4101562, 0.014076233, -0.9013672, 0.06744385, -1.2626953, 1.3544922, -0.73583984, 0.2680664, -1.5722656, -0.9067383, 0.6459961, -1.0996094, -0.05419922, 0.44506836, 2.4160156, -0.1640625, -1.1611328, -0.84033203, 1.0673828, 0.19873047, -0.6826172, -1.2578125, -1.5322266, -0.29370117, 1.7705078, -0.9951172, 0.17114258, -0.6479492, -0.27661133, 0.70996094, 0.6904297, -0.59472656, -0.30517578, -0.58984375, 0.2680664, 1.8203125, 0.09112549, 0.0155181885, 0.30273438, -2.1347656, -0.29516602, -1.9335938, -1.5068359, 3.890625, -1.8417969, -0.3083496, 2.2226562, -0.33154297, 3.5664062, -0.42871094, 2.9238281, -2.625, -2.3203125, 2.3007812, 0.19604492, 0.20373535, -2.2460938, -3.2871094, 0.29882812, -1.7177734, -1.515625, 1.6083984, 0.7583008, 0.24841309, -0.13793945, 0.5234375, -1.5839844, -1.5517578, -1.4501953, -1.5966797, -1.6855469, 0.6875, 0.087768555, -0.18664551, -1.3701172, -3.28125, 0.5078125, -0.40673828, -0.41992188, -0.5517578, -1.203125, 0.15014648, -1.3085938, 0.41308594, -1.6923828, 0.5888672, 0.08831787, -0.9213867, -0.16125488, -1.1796875, 3.6464844, -0.101135254, 0.74902344, 0.97753906, 5.40625, -1.2568359, -0.60253906, -0.5239258, 0.79296875, 2.2050781, -0.45361328, -3.1210938, -1.0537109, -1.1201172, 0.5488281, 0.39941406, 0.6557617, 0.9213867, 0.16418457, -0.7734375, 2.1503906, 0.3527832, 1.171875, 1.7792969, -1.3388672, 1.9736328, 1.4140625, -2.59375, -2.4746094, -0.68359375, -0.8388672, -0.90527344, 1.1542969, -0.040771484, -0.2854004, -0.7753906, -1.3564453, -0.41503906, 1.4541016, 2.4277344, 2.1035156, 1.3476562, -2.8066406, -1.1777344, -2.3164062, 0.32299805, 1.0058594, 1.1357422, 0.010604858, -1.0048828, 1.1826172, 2.109375, -1.6435547, -0.2277832, 1.109375, -1.5390625, -0.4206543, -1.1914062, -1.5615234, -0.73339844, -1.2783203, -0.5620117, -1.5683594, 2.6914062, -0.113220215, 0.17443848, 1.1552734, -1.3564453, -1.7792969, -0.29638672, -1.7373047, -0.23632812, 2.7050781, -0.42993164, 1.0761719, -1.8544922, 0.43164062, 1.4677734, 1.9501953, -1.828125, -0.80566406, 0.26391602, -1.0087891, -0.55078125, 0.16125488, 1.4785156, 0.040161133, 1.8369141, 3.5566406, 1.0029297, 0.46875, 1.6035156, 0.85498047, -0.5288086, 0.55126953, 1.6484375, 0.0035743713, 1.3115234, -1.5546875, -3.2246094, -1.6035156, 2.2851562, -0.36938477, 1.7841797, 0.9765625, -2.6582031, -1.2861328, -1.9140625, -1.5419922, -0.15527344, 0.28735352, 1.1835938, -1.2744141, 0.65527344, -0.8979492, 2.0332031, 2.7519531, -0.8286133, -1.6708984, -0.25683594, 0.5649414, -2.0117188, 1.1376953, -0.29956055, -1.2949219, -1.7841797, 0.9091797, 0.3466797, -0.2998047, 2.0429688, 0.9111328, -0.69140625, 1.1953125, -1.3251953, 2.8203125, -3.4277344, -1.2832031, 1.0732422, 0.78759766, 0.4987793, -1.5556641, -0.6743164, -2.1113281, -0.22290039, 0.54785156, 0.5332031, 0.75097656, -0.066833496, -2.3613281, -2.3769531, -1.3330078, -1.4726562, -0.5864258, 0.88183594, -0.48291016, -3.0644531, 0.52197266, -1.0351562, -0.031280518, 0.4543457, -0.9003906, -1.9238281, 0.9658203, 1.5048828, -0.30566406, 0.5786133, 0.8408203, -1.2099609, 0.31298828, -0.023422241, -0.61083984, -4.5273438, 0.8588867, -0.77001953, 0.8432617, 0.30004883, 0.5053711, 3.0039062, 1.9355469, 2.6230469, -1.1162109, 1.8076172, 0.44921875, -1.15625, 2.4980469, -1.1132812, 1.3066406, -0.3779297, -2.2714844, -1.2382812, 0.40893555, 1.6689453, 0.39794922, 1.484375, 0.057495117, -0.41235352, 0.12695312, -0.19360352, 1.015625, 0.8696289, 3.1738281, -0.06933594, -0.67529297, -0.45166016, -1.9892578, -1.2041016, -0.60302734, -2.7128906, -1.0712891, -0.5292969, 1.4697266, 1.7509766, 0.12261963, 1.1591797, 0.6977539, 1.1787109, -1.2382812, -0.42504883, -0.4790039, 2.1621094, 2.2714844, -0.8334961, -3.9960938, -1.8574219, -2.1484375, 2.0527344, 1.2792969, -1.6015625, -1.9960938, -2.6015625, -0.2467041, -0.95654297, 0.8105469, 0.8154297, 0.005619049, -1.1542969, 3.1269531, 1.1777344, 0.42529297, -0.013801575, -0.7558594, 2.9726562, -0.9770508, 3.1601562, 2.0214844, -0.37060547, -0.32714844, -0.6479492, 1.5751953, 0.8730469, -1.1601562, 1.9042969, -2.9277344, 0.96484375, -1.203125, -1.3935547, -1.9492188, 0.066589355, 1.2958984, 0.02722168, 0.5576172, 0.78515625, 0.24291992, 0.7348633, 1.5341797, 0.4260254, -0.3059082, 0.23132324, 0.4519043, 0.29760742, 1.6601562, 0.3605957, 2.6621094, 0.19042969, 1.0039062, -0.3876953, -0.10803223, 0.043395996, 0.4248047, 3.5820312, 3.34375, 1.9150391, 1.1962891, 2.3027344, 0.48754883, 0.58154297, 0.8383789, -2.7539062, 0.026245117, 1.4326172, 2, 0.60253906, 0.48266602, -0.76171875, 0.4716797, 0.10333252, -0.84277344, 0.30786133, 0.057922363, 0.5991211, 0.8149414, 0.55566406, 1.5507812, -2.3828125, -0.24902344, 0.9536133, 2.1074219, 1.3242188, -1.4501953, 0.9013672, 1.0351562, 0.79589844, -0.17834473, -0.76123047, 1.6650391, -1.9326172, 0.18847656, -0.16821289, -1.3310547, -0.7973633, -1.0185547, 0.8491211, 0.21435547, 0.15246582, -0.85302734, 1.7148438, 1.2080078, 0.4350586, -0.39208984, -0.6166992, 1.9267578, 0.21350098, 1.6123047, -0.44921875, -0.06829834, 0.22375488, 0.32006836, -2.2070312, 1.8798828, 1.2382812, -1.1816406, -0.31298828, -0.8076172, 1.0371094, -1.2109375, 0.38378906, -1.015625, 0.8618164, 0.5698242, -0.5683594, 0.17175293, 0.36328125, -1.0917969, 1.6181641, -0.4909668, 0.3864746, 1.3085938, -1.6376953, 0.2364502, -0.1385498, 0.5444336, -0.70751953, 1.7519531, -0.96875, 2.5703125, -1.2119141, 0.0914917, 1.2675781, 1.7832031, 1.3876953, -0.6713867, 1.1845703, -2.6582031, 2.265625, 1.2373047, -0.4584961, 0.9316406, -1.1533203, -2.3535156, 1.6357422, 1.4873047, -1.8125, -0.8930664, 2.5332031, 1.1386719, -1.6943359, 1.4873047, 2.1855469, 0.3720703, -0.0065727234, -2.7050781, -0.19189453, -1.3339844, -0.2998047, 2.0371094, 0.50439453, -1.2539062, -0.8979492, 1.6347656, 0.2578125, -1.3203125, 0.27612305, -1.7636719, -0.11138916, -0.83203125, 1.5097656, 0.48608398, -0.55371094, 0.45776367, 0.22363281, -1.3164062, 1.6152344, 1.7861328, -0.75390625, -1.2363281, -1.2314453, -1.1582031, 0.95996094, -0.37670898, 1.5185547, 2.640625, -0.6035156, 0.69628906, -3.2636719, -2.8261719, -2.5996094, -0.43164062, 0.7792969, -0.5395508, -0.453125, 0.1619873, 1.890625, 2.3085938, 0.21386719, -1.0732422, 0.25952148, -1.8115234, 0.96533203, -0.03189087, 0.31811523, -0.30786133, -0.47973633, 0.05996704, 0.9013672, -1.5068359, 2.1152344, 2.0605469, 2.890625, 1.0986328, -1.4433594, -0.8359375, 0.47436523, 0.13110352, 0.0725708, 0.8901367, 0.83984375, 0.066345215, -1.4208984, -3.5996094, -1.6328125]}, "B00TFYOC5G": {"id": "B00TFYOC5G", "original": "Brand: Chard\nName: Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer\nDescription: The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you're making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.\nFeatures: 50,000 BTU Cast Iron Burner\n18 Quart Aluminum Pot\nTwo Aluminum Strainer Baskets with Insulated Handle\n21\" Welded Stand & Dual-sided for cooking two foods at once\n", "embedding": [-4.0625, 1.4414062, 2.6464844, 0.67285156, 0.3527832, 1.3994141, 1.2910156, -0.3449707, -2.0058594, 1.0732422, 2.9707031, 2.3046875, 2.2636719, -0.5205078, 0.15673828, -2.3398438, 0.37329102, -1.3378906, 1.7080078, 3.0722656, 0.48876953, 1.5966797, 3.1621094, -0.22790527, 1.6289062, 2.3828125, 1.7822266, -1.3085938, -0.29882812, -0.57910156, 1.7773438, 0.58496094, 1.4912109, 0.66308594, -3.8535156, -1.9433594, -1.0878906, 0.84033203, -2.6875, 1.4550781, -0.7397461, -1.2324219, 3.2578125, 1.5253906, -0.7529297, -0.29467773, -1.6865234, -0.29882812, -0.20507812, -1.4335938, 1.0380859, 0.8754883, 0.034820557, 1.5917969, -4.5078125, 3.5996094, -0.29125977, -1.4824219, 2.4765625, 0.94677734, -0.21655273, 1.2197266, -1.5390625, 2.7714844, 1.3408203, -1.6513672, -0.546875, 2.125, -1.0244141, -1.078125, 1.4658203, 0.32128906, -0.48120117, -0.24890137, -1.1875, -0.2980957, -4.125, 0.95996094, 3.4628906, -0.27001953, -0.1361084, -0.5654297, 0.28173828, -2.6367188, -0.2434082, 0.50439453, -0.31884766, -0.8642578, 3.09375, 1.0722656, -0.34423828, 3.3632812, -2.2714844, -2.0585938, 4.375, -1.2236328, -0.050933838, 1.7001953, 1.4697266, 2.7265625, -2.1542969, -0.17956543, -0.3059082, 0.14453125, -1.9658203, -1.0205078, -1.859375, -1.3857422, -1.6640625, 0.9248047, -3.9863281, -0.13061523, 1.8564453, -0.042053223, 1.328125, -2.0742188, -0.25268555, 1.5244141, 3.109375, 0.84521484, 1.3798828, 0.25610352, 0.5175781, 0.7558594, 0.30322266, 0.99560547, 0.06506348, 0.5444336, 4.8710938, -1.9619141, -2.4335938, -3.1855469, 1.9414062, 0.10736084, -0.76904297, -3.0214844, -0.7866211, -2.7714844, -2.5605469, 0.10522461, -0.53271484, 0.07836914, 0.64501953, 0.63720703, -2.3222656, -1.2910156, 0.27416992, 1.0351562, 2.234375, -3.4511719, 3.5371094, -3.0019531, -0.17822266, -0.009094238, 0.8339844, -0.8930664, 0.27929688, 0.71875, 4.53125, 1.5166016, -0.7246094, -5.5664062, -2.1035156, 1.7207031, -0.15722656, -2.4785156, 1.6025391, 2.5527344, 0.11175537, 1.4980469, 2.4316406, -2.3339844, 0.31225586, -1.2675781, 0.2578125, -2.171875, -2.0722656, 2.8398438, 0.6230469, -1.1552734, -1.9882812, -2.5585938, -1.0117188, 3.1113281, -0.54345703, 0.36889648, -1.21875, -0.44018555, -0.5473633, -2.0527344, 0.32666016, 0.6044922, -0.21826172, 0.6201172, 0.53125, -1.8505859, -0.6196289, 1.9404297, 0.7832031, 0.70947266, 0.18225098, 0.41015625, -0.5288086, 0.17700195, -1.6816406, -2.1210938, 0.3852539, 0.3334961, 1.8359375, 2.7753906, 1.3027344, -1.1787109, 2.4648438, 1.0332031, -0.4309082, -0.27001953, 2.4609375, -0.27514648, 3.8632812, 0.88964844, -1.625, -0.890625, 0.47827148, 2.7695312, 1.4492188, 2.421875, -0.4489746, -1.4267578, -3.0800781, 1.1416016, 1.9199219, -0.1895752, 3.0136719, 0.9321289, -0.7861328, 3.1601562, 1.3798828, -1.4072266, -0.3828125, 1.8457031, 1.5107422, -0.31591797, -1.8955078, 1.0878906, -1.6171875, 3.53125, -1.3642578, 0.7529297, -0.016159058, -0.4387207, -1.0410156, 0.046722412, 0.020889282, -2.9902344, 0.29858398, 0.15612793, -1.0644531, 0.75878906, -0.6665039, -1.4511719, 0.91796875, 1.1152344, 0.015625, 0.48339844, 0.87402344, -1.1308594, -0.10235596, 0.38378906, -1.2480469, 0.7753906, -0.5839844, 0.86621094, 3.5214844, -1.2558594, 0.9116211, -1.0996094, -1.0107422, 0.7680664, -0.74853516, 1.5615234, -0.23754883, 0.6269531, 1.875, -0.44726562, -1.265625, 2.1640625, 1.5722656, -0.46362305, 0.3347168, 0.54345703, 4.2304688, -1.4335938, -2.0644531, 0.67333984, -1.8564453, 1.8886719, -1.2236328, 1.4013672, 0.10321045, -0.1459961, 0.58740234, 1.6728516, -0.70996094, 1.46875, -1.2460938, -2.7148438, 1.9316406, -3.3398438, -0.57128906, 2.0703125, -1.1425781, -0.082336426, 1.0107422, 0.54296875, -1.6123047, -1.8427734, 1.3144531, -1.9023438, 1.3681641, 2.7734375, -0.53271484, 1.4335938, 0.25317383, -1.9091797, -0.77490234, 1.4472656, -0.7192383, -0.99121094, -0.17834473, -1.4541016, 0.26489258, -1.8164062, -0.88378906, -0.2553711, -2.8242188, -0.7265625, -1.3701172, -0.54296875, -1.6132812, -2.5976562, -0.46240234, 0.43701172, -1.9912109, -2.3515625, -1.5166016, -4.2929688, -1.0146484, -0.022094727, -2.046875, 0.3149414, -0.064208984, -1.984375, -2.3652344, -4.3320312, 1.6191406, 0.28759766, -0.81396484, 1.1630859, -3.9082031, 0.73095703, -0.4206543, -0.80371094, -1.2333984, 0.34179688, 0.91259766, -0.3100586, 1.6494141, -0.82958984, 2.2226562, -1.046875, 1.3632812, 0.5341797, 0.62109375, -1.6484375, -0.19299316, 0.7675781, -1.9951172, 2.3378906, 0.14794922, 0.33984375, 0.8613281, 0.6611328, 0.25683594, -0.12030029, -3.140625, -0.29589844, -0.93847656, -0.5600586, -3.9453125, -3.8398438, 0.5385742, -3.5351562, -2.2070312, 1.7480469, 1.8701172, -0.048706055, -0.43920898, -0.46777344, -2.2695312, 0.21594238, -0.8227539, -1.6962891, -1.2822266, -1.3408203, -1.2460938, -1.5458984, -1.7841797, -0.09832764, 1.1601562, 0.060791016, 1.9404297, 0.7832031, 0.36669922, -0.5678711, -0.34423828, -0.7631836, 2.0839844, 1.5693359, -0.359375, 3.0078125, -0.89746094, -1.0966797, -2.8085938, -1.8789062, 2.8085938, -0.6230469, 2.4570312, 0.6035156, -0.68115234, -0.7739258, 2.3261719, -0.047851562, -0.5966797, 0.9350586, 3.8945312, -1.5175781, -0.6616211, 0.34326172, 0.97509766, 0.37353516, -1.4316406, 1.5478516, 0.8359375, 1.5742188, 3.0175781, 1.9208984, 0.5571289, 0.20178223, 1.6953125, 2.1386719, 2.0410156, 0.98876953, -1.5039062, -0.6166992, 0.028900146, 1.0957031, 0.2578125, -0.42285156, 2.2734375, 3.8828125, -0.53515625, -3.4902344, 0.88623047, -0.25268555, 1.4462891, 0.28710938, 1.4501953, -0.8066406, -0.11303711, 0.8388672, -0.84521484, -0.25097656, -2.1914062, 1.8701172, 1.2451172, -0.5419922, -0.47558594, -1.8232422, -0.013458252, 0.43017578, -1.296875, 4.0039062, 1.1621094, -0.64208984, 1.2392578, -0.91015625, -0.23388672, 1.5761719, 1.9277344, -2.1894531, -1.9003906, 0.71875, 2.4160156, -1.4335938, 0.5546875, -1.3857422, -0.41577148, -1.6962891, 2.0136719, 1.8642578, -0.85302734, -0.50341797, 0.9160156, -0.5654297, -1.7822266, -0.32861328, -0.99560547, -0.5175781, 1.4091797, 0.5678711, -0.5673828, 1.6230469, 2.0449219, -3.9511719, 1.0449219, -1.4492188, 1.5683594, 0.0037784576, -4.1992188, 0.19238281, 2.6582031, 0.5366211, 1.3330078, -1.9931641, 3.2480469, -1.0791016, -0.053253174, 2.9804688, -0.6328125, -2.6269531, -1.9433594, -1.1767578, -0.22839355, -2.4121094, 0.92626953, 3.5722656, -0.56396484, 2.2714844, 1.7441406, -1.1679688, -3.0625, -1.2119141, -1.78125, 1.7080078, -1.6318359, 1.4228516, 2.7929688, -1.7216797, -2.2148438, -0.36254883, 0.40014648, -0.72558594, 1.2607422, 2.6054688, 1.3847656, 0.87841797, -0.55908203, 0.49365234, 2.4433594, 0.19750977, 0.6533203, 0.57470703, -1.3046875, -2.234375, 1.65625, 0.87841797, -1.9335938, -0.60839844, 2.8886719, 1.09375, 1.1074219, -1.9960938, 2.8808594, 0.8251953, 0.057800293, -3.2988281, -0.796875, 1.1660156, 0.61279297, -0.7910156, -0.6699219, -1.3232422, -1.9726562, -1.7226562, 2.7441406, -0.24230957, 0.12359619, 2.6230469, -3.21875, 1.0166016, -0.36547852, -1.046875, -1.9433594, 0.81396484, -0.3540039, -0.36669922, 0.9111328, -1.6835938, -1.1669922, -0.8569336, -0.4482422, -0.40527344, 5.6796875, 1.3925781, 1.0722656, 3.1738281, -0.2861328, 0.37353516, 0.3684082, 0.15930176, 0.90478516, -0.9638672, 1.0400391, -0.36035156, 3.3066406, -0.72998047, -0.56103516, -0.9116211, 0.3996582, 0.53271484, 1.0263672, -0.62402344, 0.41088867, -1.4648438, -3.0859375, 2.6914062, -1.1103516, 1.3056641, -1.2304688, -2.0488281, 1.2441406, 0.15136719, -2.8808594, 0.42651367, 1.2900391, -0.25610352, -3.3515625, 1.4482422, 0.46606445, -2.546875, 1.3466797, -0.060424805, 1.2177734, -0.34326172, 0.6899414, -0.6694336, 1.8857422, -1.9951172, -2.0839844, 1.5361328, 2.1464844, 0.099609375, 1.2851562, 0.42285156, -1.9550781, 2.8789062, -0.60595703, -1.1298828, -2.125, 0.3046875, -1.9824219, -1.3457031, 1.1328125, -2.40625, 1.8701172, 0.49047852, 3.265625, 1.3417969, -0.90771484, -2.4921875, 0.5571289, -2.7988281, 0.82128906, -1.6650391, 1.546875, -0.22302246, -2.0351562, -1.7138672, -1.3798828, -0.32714844, 2.2734375, 1.8710938, 0.05960083, 2.1347656, 1.9414062, 1.6806641, 1.1337891, 1.2255859, -3.2304688, 0.22790527, 2.2871094, 1.6132812, 1.6669922, 0.7241211, -0.6074219, -2.2636719, 0.26000977, -1.0859375, 3.0371094, -2.8203125, -0.76123047, 0.6171875, -1.9726562, 0.36791992, -0.93652344, -0.20227051, -1.3222656, 0.9316406, -0.7294922, -1.9638672, -1.2070312, 0.4897461, -2.9375, -5.1445312, -0.8227539, 1.4013672, 1.5927734, -1.328125, 1.1933594, -1.2880859, 1.0869141, 0.05795288, 1.2490234, -3.9453125, -0.18530273, -0.36083984, -2.0410156, -1.7207031, -1.4326172, 0.63623047, 1.0019531, -0.74121094, -0.28076172, 1.1845703, -2.4277344, -1.6630859, -0.44140625, -2.7910156, 1.2431641, 1.4287109, -1.3300781, 0.25854492, 2.7988281, 1.4960938, -2.5566406, 1.2587891, -0.57470703, -0.16601562, -1.171875, -0.34326172, 0.72802734, -2.0703125, 0.55126953, -0.52441406, 0.7529297, 0.085754395, -0.5834961, 1.0341797, -0.34765625, 1.0849609, 0.6557617, -2.5214844, -0.1126709, 0.94189453, 1.7744141, 1.1132812, 0.16210938, -1.5478516, -1.1464844, -1.7929688, -0.14904785, -3.0292969, 0.50390625, -0.7939453, -1.4326172, 1.078125, -1.25, 1.7880859, 0.18664551, 0.35180664, -0.97021484, 1.0537109, -1.7089844, 3.3085938, 2.7148438, -3.0058594, -2.6113281, -1.2666016, 1.1777344, -1.3896484, 0.38623047, 0.012878418, -0.07055664, -1.5585938, -0.2397461, -0.6669922, 1.9570312, 3.8945312, 1.0410156, -2.2089844, -0.6113281, 0.15100098, 1.1210938, -0.5361328, 0.5908203, -2.0410156, -0.043304443, 4.0507812, -1.40625, -1.34375, -0.46362305, 1.078125, -0.039642334, -0.6298828, -3.15625, 1.7431641, -1.8085938, -2.5625, -2.546875, -0.25878906, -2.0761719, 0.87841797, 0.61621094, -0.31835938, 1.6064453, 2.0546875, 0.51220703, -0.45922852, 2.7714844, 2.3398438, -0.6928711, -0.23669434, -0.27294922, -0.25439453, 3.2265625, -2.1992188, 0.18151855, 0.16552734, -0.95996094, -2.8828125, 2.3613281, 0.85302734, 1.1464844, 0.5336914, 1.2822266, 2.3828125, -0.41503906, 3.2539062, -0.20935059, 0.81396484, 0.7529297, 1.203125, -1.6425781, 2.6679688, 2.1425781, -0.6459961, -1.3007812, 1.859375, -3.5039062, -1.6201172, -0.018447876, 1.0478516, 0.18078613, -3.9414062, 3.03125, -0.21032715, -1.3007812, -0.9013672, 1.0576172, 1.8710938, -1.3505859, -0.6611328, 0.44995117, 0.72265625, -2.2871094, 1.5546875, -2.4921875, -0.12524414, 3.6816406, -1.0136719, 0.12347412, -1.2773438, -2.4492188, 1.1757812, 1.3505859, 0.49389648, 0.76904297, -0.48706055, 0.8442383, 2.4238281, 1.0458984, 2.4824219, -1.8291016, -0.63134766, -2.0078125, 3.4765625, 0.8588867, -0.75878906, 2.109375, -0.46923828, -1.4853516, -2.8632812, -1.8271484, 2.2851562, 1.7353516, 0.072509766, -1.6904297, 3.140625, -1.9589844, 3, -0.8457031, 2.7636719, 0.42114258, -1.6757812, -0.70703125, -1.5019531, 1.5810547, 3.3984375, -0.25097656, -1.6386719, 0.8510742, 0.07055664, 0.10864258, 2.6582031, 0.05307007, 0.10369873, 0.7504883, 0.33520508, 1.4589844, 0.33081055, 0.19445801, 0.13195801, 0.5551758, 0.61865234, -0.83203125, -0.5366211, -0.8828125, -0.7319336, -0.6855469, 0.09222412, 0.4482422, -2.15625, -0.92626953, -0.87939453, -0.0046539307, -0.45581055, 0.2434082, 1.0205078, 2.1367188, -0.9536133, 0.92529297, 2.7480469, -1.0878906, 2.8261719, -0.2956543, 0.07244873, 0.28515625, -1.4267578, -0.17150879, -1.2197266, 0.42797852, -0.69970703, -1.9404297, -0.12915039, -1.1533203, 0.21057129, 0.6196289, 2.828125, 2.2304688, -0.56396484, 0.14428711, -1.8154297, -1.3339844, -1.6494141, 1.6572266, 3.1464844, -1.4101562, -0.5961914, -1.4160156, -5.625, -0.53564453, 2.9375, -1.7285156, 1.3808594, 3.4335938, 1.6787109, -0.3461914, -1.5957031, -1.4794922, 0.64501953, -1.7109375, 1.1425781, -0.0993042, -2.1132812, 0.20019531, 1.296875, 1.8789062, -0.44433594, -2.3789062, -1.2285156, -0.8046875, 1.1357422, -0.21569824, 0.97753906, 0.48535156, 1.1210938, 0.5366211, 1.6699219, 2.2773438, 0.034301758, 0.6791992, 3.203125, -1.8085938, -0.5161133, 0.07910156, -1.1171875, 0.29638672, -1.7324219, 1.1845703, 0.9658203, -1.0234375, -0.69384766, 0.40820312, -3.7148438]}, "B087B6RSSF": {"id": "B087B6RSSF", "original": "Brand: Chulan\nName: 5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection\nDescription: Propane has a meter that tells you how much pressure you're rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically.\nFeatures: \u3010Scope of application\u3011 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8\" Extended connector.\n\u3010CSA certification\u3011 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety.\n\u3010Quality\u3011 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment.\n\u3010Additional table\u3011 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.\n\u3010After-sales service\u3011 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.\n", "embedding": [-1.6601562, 3.0664062, 1.5244141, 1.0664062, -0.7363281, -1.03125, 0.15466309, -1.0927734, 1.2001953, 0.33764648, 1.5595703, -0.14001465, 0.734375, -0.7519531, 2.6542969, 0.9633789, 1.1669922, -0.20678711, 0.8911133, 2.8261719, 1.8320312, -0.09887695, 2.7421875, -0.74316406, 2.0742188, 0.2644043, 2.8515625, -2.0078125, -0.5878906, -1.5068359, 2.0585938, 0.95166016, -0.14477539, 0.37817383, -1.8681641, -1.9042969, 0.04260254, 0.35131836, -3.2441406, -0.3894043, -0.59033203, 1.9433594, 1.9228516, -0.42456055, -2.8730469, 0.5805664, 1.0068359, -0.13879395, -0.28857422, -0.13757324, 0.48486328, -0.45361328, -0.22277832, 0.95166016, -0.7338867, 0.4267578, 0.2854004, -1.2314453, 2.0800781, 1.0791016, 2.9511719, 0.66796875, -2.0097656, 0.89208984, -1.4658203, 0.69628906, 0.81640625, -0.4111328, 0.29077148, 1.8486328, 0.5136719, 0.07836914, 1.3427734, -0.5395508, -0.2998047, 0.7270508, -2.0234375, 0.2878418, 3.328125, 0.70458984, -1.1875, -0.1352539, -0.20288086, -3.1875, 0.18432617, 0.41210938, -0.8095703, 0.3942871, 0.96191406, 0.71484375, -2.3613281, 2.3710938, -2.6523438, -4.59375, 1.3251953, 0.62158203, 0.20910645, -0.43798828, 1.7421875, 0.13098145, -1.921875, -0.93652344, -0.2800293, 2.1660156, -2.3730469, -0.5649414, -0.52001953, 2.1640625, -3.0800781, 0.7504883, 0.79003906, -0.13293457, 0.6748047, -1.7021484, 1.6513672, -2.2402344, -0.2043457, -1.0039062, 2.3632812, 0.59716797, 2.8066406, 0.97558594, -1.1494141, 0.921875, 0.56347656, 0.9223633, -0.49169922, -0.021652222, 4.4492188, -2.0664062, 1.2539062, -3.3125, 1.7958984, 0.45410156, 0.03213501, -2.0449219, -0.64404297, -1.8056641, -1.8671875, -0.12658691, -3.6757812, 0.95654297, -0.6166992, 0.3864746, -2.2597656, 0.47265625, -1.5537109, 2.6972656, 2.3613281, -0.9819336, 2.9765625, -0.67333984, 0.59765625, -1.6728516, 2.2226562, 1.3261719, -0.6166992, -1.9990234, 2.9804688, 1.5039062, 1.4726562, -0.14501953, -1.5410156, 1.515625, -0.065979004, -1.5927734, 0.28637695, -0.42919922, -1.7158203, 1.2666016, -0.89990234, -2.015625, 0.082458496, 1.8261719, -0.82958984, -1.3847656, 0.58154297, 2.6328125, 2.5625, -0.26464844, -2.3085938, -3.2910156, 1.0673828, -1.3554688, 0.85839844, 0.7368164, -0.7763672, -0.5253906, 0.95703125, -0.58203125, -1.7236328, 1.0507812, 0.2529297, 0.40649414, -0.6508789, -1.8818359, -2.7148438, -1.5166016, -1.1708984, 1.5712891, -1.9306641, -0.8925781, 0.26098633, 0.49365234, -1.5253906, -0.67578125, 0.64208984, -0.6088867, 0.98095703, 2.0957031, 0.25146484, -1.8984375, 0.8251953, -1.4667969, -0.18322754, -1.8613281, 0.055267334, 2.0097656, 0.89697266, -0.14453125, 0.39819336, -0.15612793, 0.85839844, 0.4255371, 2.3398438, 0.7451172, -1.2666016, 1.984375, -0.35864258, -1.9580078, 2.3867188, 1.328125, -0.7270508, -1.3955078, -0.30932617, 1.3203125, -0.4411621, -0.3959961, 0.97509766, -0.3503418, -0.65185547, -1.9013672, -0.020004272, -0.48510742, -0.9790039, -0.296875, -0.70947266, 0.70751953, 1.1611328, -0.44702148, 0.7861328, 0.47485352, -0.953125, -0.091308594, -0.82958984, -0.07501221, 1.2060547, 1.5332031, 0.5390625, -1.0302734, 2.0566406, 1.1904297, -0.765625, 2.9921875, -0.13427734, 1.078125, 0.94970703, -1.4003906, -0.4152832, 0.71728516, 0.71777344, 1.6904297, 2.7070312, -1.0898438, 0.33520508, 1.2099609, -1.0625, 3.1269531, -0.33740234, 0.8696289, 0.5317383, -0.42456055, 1.7519531, -2.6132812, 1.90625, 1.7470703, 0.74121094, 0.62402344, -1.6474609, -0.092163086, 4.453125, -1.703125, -2.4863281, 2.4160156, 1.6679688, -0.5317383, 1.5449219, 0.6699219, 1.1533203, -1.5830078, 0.34179688, 2.171875, -1.2490234, 0.2244873, 1.6835938, -0.8100586, -0.94384766, 0.12109375, -1.6923828, 1.1660156, -1.8808594, -0.30810547, -2.7148438, 3.0898438, -1.9414062, -1.4560547, 0.8461914, -1.6445312, -0.45385742, 1.6640625, 0.484375, 1.0625, 0.76220703, -1.4277344, 0.10949707, 1.5585938, -1.6347656, 2.3320312, 0.99658203, 1.1123047, -0.5527344, -2.0839844, -1.2529297, -2.1972656, -3.1484375, 1.4111328, -2.1191406, -2.65625, 0.039794922, -1.6943359, -2.1054688, 0.17382812, 0.8847656, 2.8085938, 1.078125, -0.8256836, -1.3710938, 0.6533203, 1.0859375, 0.012130737, 0.38549805, 2.4960938, -0.9926758, -2.0566406, -0.91064453, -0.7739258, -1, 0.47143555, -1.5957031, 0.9111328, 0.2800293, 1.5693359, 0.3618164, 1.0800781, 0.15270996, -2.4882812, 1.4511719, -2.2382812, -0.08709717, -0.7973633, 1.6328125, -1.4960938, 1.7089844, -2.0097656, -1.5878906, -0.2064209, -2.6640625, 0.65234375, -1.4599609, 2.4296875, -2.3320312, 0.99609375, 0.41137695, -0.8540039, -2.1210938, 0.35083008, -0.015586853, -0.46240234, -0.71972656, -2.1699219, -0.21520996, 0.76904297, 0.93408203, -0.16931152, -0.9189453, -1.7724609, 0.68115234, 1.1787109, -1.6982422, 0.3413086, 1.1152344, -0.10986328, -1.6826172, -0.77490234, 0.02998352, -1.3291016, -1.7060547, 1.2050781, 0.70751953, -0.6542969, 0.7084961, 1.03125, 1.6826172, 0.8251953, -2.3691406, -3.609375, 0.7182617, 2.8027344, -2.84375, 2.3066406, -0.9941406, -1.1982422, -1.8427734, -1.5400391, 3.3242188, 1.3320312, 2.8945312, -0.60546875, -0.13366699, -0.044525146, 1.4169922, -1.4716797, -2.1542969, 1.0449219, 2.7988281, -2.7519531, -0.9609375, 0.34814453, 1.0332031, -2.7910156, 0.12176514, 1.4003906, 0.35717773, 2.7910156, 0.39233398, 1.1152344, 0.3696289, 0.07733154, 1.0478516, 0.6611328, 0.234375, -0.6640625, -0.66845703, -0.6689453, -2.0410156, 0.3305664, 3.2480469, -0.084472656, 1.6689453, 0.5078125, 0.9453125, -0.15075684, -0.018737793, -0.024383545, -0.23449707, 0.5083008, 1.4404297, 0.39916992, -0.55322266, -1.3388672, 0.24267578, 1.6503906, -2.1855469, -0.5410156, 0.6152344, 0.30664062, -0.86328125, -0.6875, -1.1962891, 0.21130371, -1.5273438, -0.5551758, 1.1806641, 0.6748047, 2.0195312, 0.12719727, 1.9248047, -1.3613281, 1.0361328, -0.7246094, 1.5146484, -0.45214844, -0.2064209, -2.734375, -2.0449219, -0.40551758, -1.9130859, -0.5493164, 0.80859375, 0.76708984, -1.3984375, 1.1708984, -1.3818359, 1.3535156, 2.171875, -2.6171875, 0.122802734, -0.015960693, -0.1430664, -1.2353516, 0.16308594, 0.7963867, 0.2475586, -2.2949219, 0.045562744, -2.2226562, 0.5395508, 1.2226562, 1.5166016, -2.0957031, -0.038085938, 0.51123047, 1.5400391, -0.06390381, 2.9667969, 0.23901367, -0.8066406, 0.049926758, -2.8007812, -1.5595703, -1.1025391, -4.4921875, 0.5229492, -1.90625, 1.1054688, 2.1621094, 0.029754639, 0.3605957, 0.9350586, 2.5566406, -3.4648438, -0.8388672, -0.58691406, 0.81640625, -1.1083984, -0.5234375, 2.7402344, 0.80566406, 1.1230469, -2.4960938, -1.0527344, -3.1269531, -0.79345703, 1.0761719, -0.46411133, -0.03475952, -1.2949219, 1.1445312, -1.5146484, -2.015625, 1.0849609, -0.421875, -1.3632812, -3.4570312, 1.5722656, 0.296875, 0.56347656, -0.7446289, 3.8476562, 2.3925781, 0.24829102, -0.75390625, -0.24182129, 2.5761719, 0.67871094, -1.4824219, 1.2460938, -0.75, 0.15112305, -0.14758301, 0.40478516, -0.6977539, -1.2587891, 0.95214844, 1.3730469, 0.050933838, 2.1640625, -0.40844727, -0.9003906, 1.2060547, 0.43041992, -0.44873047, 0.8388672, 0.24267578, -1.2871094, -1.4384766, 0.9946289, -2.2617188, -0.5751953, -0.98535156, -0.60839844, -3.6152344, 2.6289062, 0.95214844, -0.36938477, 0.29492188, -2.4472656, -1.3007812, -0.6767578, 0.44580078, -1.4892578, -0.46826172, -1.5820312, 0.25805664, 0.47265625, 1.6259766, -0.36083984, -1.4238281, 0.85253906, -1.6220703, -0.32641602, 0.099365234, 1.6865234, 0.1875, -0.38671875, 1.1142578, -0.87939453, 2.7871094, 0.30810547, -0.3305664, 1.2050781, -1.4003906, -2.1054688, 1.2519531, 2.7890625, 0.51904297, 1.0087891, 0.5678711, 0.49951172, 2.2949219, 0.20983887, 0.7373047, 0.8823242, -0.74658203, 1.5859375, -0.8491211, 1.0878906, -2.3554688, 1.59375, -0.043029785, 2.2226562, 1.0839844, 3.0742188, 1.1542969, -1.5263672, 1.8115234, 1.0947266, -0.46142578, -1.2724609, -1.890625, -2.4589844, 1.5742188, -0.6508789, -1.3818359, -0.24707031, 2.6933594, -0.6972656, 2.1425781, 0.8989258, -0.22094727, -1.1376953, -1.609375, -1.6191406, -0.024398804, -1.0253906, -0.7084961, -1.3632812, 0.7294922, 0.10449219, 1.0449219, 1.2783203, 1.0205078, -0.026031494, -0.30126953, -1.9892578, -0.11218262, -1.8554688, -0.9526367, -1.4755859, 0.40478516, 1.8798828, 1.421875, -0.9614258, -1.1582031, 1.4462891, -0.24914551, -0.4807129, 0.5961914, 1.0527344, -0.08258057, 0.64404297, 1.4707031, -0.4189453, 0.43798828, -1.3984375, 0.7631836, -0.6455078, 2.7734375, 1.9580078, 0.9199219, 0.06903076, -0.41259766, -1.3076172, -3.8203125, -0.1026001, 1.9423828, -0.14343262, 0.24902344, -2.6992188, -0.27954102, 2.5214844, -0.50146484, -1.0703125, -1.1933594, 1.4472656, -0.67041016, -0.099731445, -0.9326172, 0.8251953, 0.08178711, -0.37719727, -0.6152344, 0.12719727, -0.57421875, -1.6787109, -1.6806641, 2.0566406, -3.5332031, -1.0390625, 1.3388672, -0.58935547, 0.83740234, 1.2402344, 1.1669922, -1.8808594, 1.8291016, -2.3222656, -0.09136963, 0.9379883, -1.2792969, 0.9609375, 1.6259766, -0.8330078, 0.46313477, 1.1591797, -0.050079346, -0.75390625, -1.2294922, 1.9960938, 0.7504883, -1.0136719, -3.0917969, -0.37426758, 0.47485352, 1.65625, 1.7929688, -1.6923828, -0.9741211, -1.3369141, -3.5214844, 0.14465332, -0.8496094, -0.3557129, -0.91259766, 2.0039062, 1.3876953, 0.013504028, 0.58203125, 0.2475586, -1.0439453, -0.5126953, 2.2246094, -0.20629883, 2.7324219, 0.89453125, -0.94677734, -3.6425781, -1.5683594, 2.4824219, 1.5996094, -1.5566406, -1.2714844, -0.09197998, -0.25341797, 1.3076172, -0.9609375, 1.0644531, 0.20019531, -0.82910156, -0.16259766, 0.5283203, 1.921875, -1.2158203, 1.0439453, 1.5800781, 0.3774414, -1.0087891, 2.1933594, 2.2480469, -2.9492188, 1.984375, -2.1738281, -0.40625, -1.1464844, -0.83691406, 0.9707031, -3.1992188, 0.55126953, 0.4855957, -1.5839844, -2.7480469, 1.4580078, 0.84814453, -0.3232422, 0.7265625, 2.640625, 0.69091797, -0.9711914, 2.0605469, 0.024337769, -0.22497559, -0.66064453, -3.7832031, -0.9902344, 1.6464844, -0.84228516, -1.3681641, 2.1933594, 1.9560547, -0.88134766, -0.06585693, 0.39916992, 2.9960938, 1.0947266, 2.8105469, 2.0058594, 0.6645508, 2.8496094, 0.5966797, 2.2519531, 2.8847656, 0.10723877, -0.21032715, 1.5341797, -0.12756348, 1.1601562, -1.0556641, -0.48217773, -0.91845703, -0.17810059, 0.8334961, 1.9960938, 1.8408203, -2.53125, -0.6855469, -1.1845703, -1.3984375, -3.0292969, 1.0332031, -0.80126953, 0.30297852, 0.9951172, -0.14147949, 1.5996094, 0.43774414, -1.1630859, -1.0449219, 0.60791016, 2.3847656, -1.8496094, 0.8745117, -0.8876953, -2.6816406, 1.0751953, 2.7558594, 0.7885742, -0.50097656, 0.55322266, -0.6635742, -0.7167969, 1.1416016, 1.1181641, -3.0664062, 0.49072266, -0.38232422, 2.4980469, 2.2050781, -1.5273438, 2.3476562, -0.5678711, -1.3378906, -2.9023438, 3.1445312, 0.099121094, -0.077941895, -0.65771484, -5.1914062, 0.95703125, -2.0351562, 0.33544922, -1.4052734, 0.87597656, 0.3876953, -2.8027344, 1.3916016, -0.46020508, -1.3291016, 2.234375, 0.87060547, -1.2080078, -0.45532227, 1.7246094, 2.0839844, 0.62158203, -0.5371094, 1.0136719, -0.15197754, -1.3583984, 4.1054688, -1.3125, -1.296875, -0.8540039, 3.1328125, 1.0458984, 1.15625, -1.4140625, 0.88378906, 1.46875, 1.5087891, 0.8486328, -0.5908203, -1.0507812, -0.115356445, -0.76464844, -0.20373535, 0.08129883, -0.7949219, 0.84375, -0.12017822, -1.8115234, -0.14587402, 0.70751953, -1.0800781, 1.6503906, 1.7773438, -1.5039062, -1.9736328, 0.064941406, 1.2050781, -1.8955078, -1.7460938, -0.6347656, -0.8417969, -0.3942871, -1.6796875, 0.21972656, 1.5849609, -0.17565918, 0.28344727, -0.46875, -1.2949219, 0.08154297, -0.2088623, -1.9306641, 0.24414062, 2.2832031, -0.43017578, 2.3496094, 0.17236328, 0.2290039, 0.28222656, -1.7177734, -0.97753906, 0.014381409, 0.8779297, 0.5776367, 0.8876953, -0.8857422, -2.3222656, -0.26123047, -2.5527344, 2.0488281, 0.17004395, -2.4902344, 0.32617188, 1.2177734, 2.1464844, 0.31225586, 0.67041016, -0.55126953, -0.12866211, 1.9501953, -2.5429688, 0.31396484, -2.1171875, -0.39453125, -0.16894531, 3.3945312, 1.7373047, -1.7539062, -0.15527344, 0.87402344, -0.23657227, -0.53759766, 0.41967773, 0.03591919, 0.34887695, 1.2705078, 0.9902344, 1.8037109, 0.8339844, -1.6230469, 0.093933105, -0.84521484]}, "B01HQRD8EO": {"id": "B01HQRD8EO", "original": "Brand: GasOne\nName: Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold)\nDescription: \nFeatures: DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included\nAUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove\nEASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition\nSAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected\nVERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness\n", "embedding": [-2.0390625, -0.10406494, 0.9658203, 1.1962891, -0.6791992, 2.0097656, 0.41845703, 0.12030029, 0.86572266, 0.96191406, 1.4453125, 0.11682129, 0.84765625, -0.87109375, 0.7548828, -0.047729492, 0.46191406, 1.2509766, -0.19567871, 2.5742188, 2.7089844, -1.2832031, 1.1689453, -0.11047363, 0.13903809, 0.6748047, 3.6035156, -3.84375, -0.22888184, -1.2216797, 1.1738281, 0.5551758, 0.07928467, 0.75634766, -3.0234375, -0.12451172, 0.28930664, 0.9824219, -3.140625, -1.9492188, -2.5976562, 0.115356445, 1.6728516, -0.13781738, -0.9301758, -0.91308594, 0.9116211, 0.40649414, -1.5615234, 0.9711914, 1.2714844, 2.3730469, -1.4345703, 2.140625, -0.43945312, 0.98583984, -0.33911133, -1.1679688, 2.6953125, 1.1826172, 1.6376953, 0.9013672, -0.26220703, 0.013717651, -0.8955078, 0.105407715, 0.070007324, -0.5136719, -2.4492188, -0.66552734, 3.328125, 0.8129883, 0.36035156, 0.8129883, -1.2216797, -0.9082031, -2.3964844, 2.5, 1.6816406, -0.17041016, -0.16772461, 0.9741211, 0.8852539, -1.2099609, 1.1806641, 0.09069824, 0.42358398, 0.9472656, 0.9428711, 1.5048828, -3.734375, 1.5175781, -1.4746094, -3.1875, 1.3251953, 0.23046875, 0.22790527, 1.2060547, 1.5390625, 1.8261719, -0.61279297, 0.7133789, 0.72998047, 0.9614258, -1.546875, -1.3945312, 3.2382812, 1.2783203, -3.4882812, 0.91748047, -1.8027344, -0.8696289, 0.7114258, -1.4345703, -0.8022461, 1.6523438, 0.08654785, 0.3149414, 3.5722656, 0.007835388, 2.6835938, -0.86572266, 1.703125, -1.8037109, 1.1533203, 2.3632812, -1.5683594, 0.60595703, 2.9335938, 0.0395813, -0.50927734, 1.6396484, 1.8964844, -1.3183594, -0.70458984, -1.3066406, -1.2958984, -3.078125, -2.9960938, 0.6455078, -2.9628906, 1.15625, 0.65527344, -1.2265625, -3.8671875, -0.0077171326, -1.7148438, 1.6113281, 1.9697266, -1.5585938, 1.9794922, -2.0761719, 0.52734375, -2.7167969, 2.0917969, -0.4873047, -2.0078125, -1.3925781, 3.578125, 1.4404297, 0.076660156, -1.2285156, -2.8066406, 0.5107422, 1.609375, -2.3203125, 1.0146484, 2.0273438, -0.16821289, 0.51464844, 0.76708984, -1.0673828, -1.8144531, 0.62402344, 0.042999268, -1.1953125, -1.3720703, 2.3789062, 0.41870117, -0.7661133, -3.6386719, -2.2832031, 1.8603516, 0.55908203, 1.1279297, -0.93652344, 0.6513672, -1.5673828, -0.8779297, -1.8242188, -1.2255859, 2.2441406, -1.0166016, 1.5673828, 0.066833496, -1.9306641, -1.0439453, -0.111694336, -0.9272461, 0.49169922, -0.25048828, -1.5341797, 0.18261719, 0.52441406, -2.6777344, -2.0488281, 1.5322266, -2.2539062, 0.9658203, 2.3339844, 2.578125, 1.0517578, 2.9511719, -0.32128906, -0.18054199, -2.3417969, 1.0410156, 2.9726562, 0.42358398, 1.6542969, 0.6982422, -1.1523438, 0.5253906, 0.0110321045, -0.7661133, 3.6210938, 1.0488281, 0.07232666, -3.3203125, -3.4453125, 1.7294922, 0.08270264, -0.31201172, -0.5004883, 0.062194824, 1.4892578, 1.1904297, -0.82128906, -0.08087158, -0.068481445, -0.69921875, -0.6166992, -1.03125, -0.48291016, -1.8955078, 0.63427734, 0.097351074, -0.51660156, 2.1386719, -0.4326172, 0.69140625, 1.7353516, -0.41796875, 1.2519531, -2.7714844, 0.5888672, 1.65625, 0.9477539, -1.0449219, -0.43823242, 1.7792969, 2.7636719, 0.6899414, 0.2553711, 0.7294922, -0.9086914, 1.9755859, -0.32177734, -1.90625, 0.42700195, 1.3984375, 0.88916016, 2.7753906, -0.8769531, 2.5039062, 0.98876953, -2.5058594, 3, 1.1933594, 2.3945312, 0.6557617, -1.8193359, 0.11047363, -1.5673828, 1.4335938, -0.61279297, 1.7460938, -0.02722168, -0.73779297, -1.4716797, 4.7773438, -0.71240234, -3.4160156, 2.4941406, -1.2578125, -0.05670166, 0.78759766, 0.049987793, -0.14465332, -1.0947266, 0.46972656, 0.004787445, -0.3984375, 0.16455078, -0.6152344, 0.4416504, -0.4814453, -0.7192383, 1.6113281, 0.69628906, -0.5751953, -0.6713867, -0.45239258, 0.32958984, -1.8164062, -1.8330078, 2.1015625, -1.6679688, 1.5332031, 0.64453125, 1.4394531, 2.3378906, 0.51220703, -2.8476562, -0.7138672, 1.0556641, 0.94384766, 1.7832031, -0.62158203, -0.19165039, -0.81396484, -2.4628906, 0.34838867, -1.6611328, -1.9892578, 1.0146484, -1.6259766, -4.0234375, 1.0917969, -2.9199219, -1.7705078, -0.3474121, -3.6269531, 1.2978516, -1.390625, -1.3798828, 0.37402344, -0.9921875, -1.5644531, -1.4755859, 1.6503906, 2.3066406, 0.029937744, -2.4667969, -0.64404297, 0.22851562, 0.76708984, 0.42871094, -0.9501953, 1.0556641, -0.26733398, 0.32641602, -0.96728516, -0.5385742, -0.8857422, -2.0585938, 1.0224609, -4.5898438, -0.69384766, -1.4355469, 0.8676758, 0.73046875, 0.47729492, -1.8085938, -0.8691406, 0.8774414, 0.48583984, 2.7890625, -1.2861328, 1.6425781, -1.0263672, -1.4882812, -0.57666016, -2.2929688, -2.1679688, -0.7714844, -0.28881836, -1.4775391, 0.12646484, -1.6113281, 1.7734375, -0.19592285, 0.6489258, -1.5507812, 0.86035156, -0.6669922, 1.1445312, -0.42211914, -0.03189087, -0.46069336, -0.96972656, 0.45092773, -4.90625, -0.8857422, -0.19128418, -2.4238281, -0.1583252, 0.3034668, 0.5527344, 1.5351562, 0.6645508, 0.87402344, 0.31420898, -1.1171875, -0.28198242, -3.3984375, 2.0371094, -0.1463623, -1.5664062, 0.26831055, -1.3916016, 0.53759766, -0.9003906, -0.36279297, 3.40625, 1.5849609, 3.5371094, -0.6508789, -0.5522461, 1.5253906, 1.4335938, -0.53515625, -2.8222656, -0.8613281, 2.8007812, -2.578125, -0.87890625, 1.4248047, 0.99902344, -2.7988281, -1.4355469, 1.0439453, 0.96484375, 2.2753906, 1.7871094, 0.6435547, -0.09240723, -0.44482422, 0.1928711, 1.4716797, 0.34204102, 1.8457031, 0.027496338, 0.53759766, -0.7104492, 0.7949219, 1.5136719, 2.5683594, 2.7148438, 1.2773438, 0.6376953, -2.0859375, 0.08703613, -0.4177246, 1.1416016, 1.3056641, 3.453125, 0.5546875, 0.16223145, -0.16455078, -1.2197266, 1.3984375, -1.0927734, 1.453125, 0.17150879, 1.2138672, -0.88378906, 0.40185547, -1.4453125, -0.1459961, -1.4384766, 3.0800781, 1.2216797, -0.9355469, 1.5166016, -1.1367188, 0.23864746, -2.7519531, -0.12402344, -1.5947266, 0.19055176, 1.2724609, 1.1425781, -2.6855469, -0.8173828, -0.5991211, 0.050109863, 0.9189453, 3.4238281, -1.015625, -2.2460938, 1.9658203, 0.59521484, -0.6386719, 2.921875, -0.40063477, 0.28515625, -2.0722656, 0.6616211, -1.3085938, -1.9121094, 1.6972656, 0.6074219, -2.8359375, 2.3769531, -3.5292969, -0.9013672, 0.7529297, -1.7070312, 0.37451172, 1.0263672, -1.1650391, 1.9726562, -1.3349609, 3.59375, -0.84472656, -1.1894531, 3.0976562, -3.6542969, -0.8652344, -1.6914062, -3.2910156, 2.3203125, -0.7128906, -0.16430664, 3.8613281, 0.9326172, 0.053253174, 1.6181641, -0.030014038, -3.2226562, -2.6347656, -0.20690918, 0.44482422, -1.9746094, -1.1005859, 0.11035156, 0.25317383, -1.625, -0.4362793, 0.07006836, -1.5595703, 0.15197754, 0.4555664, -2.8320312, -0.043762207, -0.48535156, 0.34375, -0.10290527, -1.9423828, -0.15075684, -1.6679688, 0.36547852, -2.9160156, 2.15625, 2.6113281, -0.77197266, -1.0244141, 3.2441406, 2.0371094, -0.61621094, 0.09088135, 0.38500977, 0.8730469, -0.10272217, -2.8242188, -1.7822266, -0.5209961, 0.6020508, -0.6972656, -0.8564453, -1.5527344, -1.6347656, 2.3574219, 1.8525391, 2.0703125, 1.5419922, 1.3310547, -1.5595703, 1.2558594, -0.7939453, -2.1113281, -0.25317383, -0.7885742, -0.15600586, -0.08721924, -0.26000977, -1.5644531, 0.53564453, -2.0214844, -0.89208984, -2.8652344, 1.4521484, 1.5429688, 0.7626953, 1.4335938, -0.39379883, -1.5341797, 0.76220703, 0.18933105, -0.17041016, 2.2363281, -0.017562866, 0.83935547, 1.4570312, 0.5810547, -0.70751953, -1.3222656, 2.7832031, -0.27490234, 1.0117188, -0.20178223, 0.9140625, -1.5976562, -0.8754883, -0.17126465, 0.8027344, 1.6152344, -1.9814453, 1.5146484, 0.10845947, 0.83203125, -1.8671875, -0.56103516, 1.4023438, 1.3017578, 0.30371094, 0.68896484, 1.3808594, -0.39135742, 1.6054688, 0.5390625, 1.1933594, -0.42895508, 1.3964844, 1.4560547, 1.2275391, -1.9179688, -0.9223633, 1.2490234, 2.5058594, 0.8754883, 2.6914062, 0.2685547, -0.38134766, 2.1347656, -0.6269531, -2.4238281, -0.0035266876, -1.7832031, -0.054504395, 1.4941406, -0.019882202, -1.5380859, -0.26831055, 2.5683594, -0.6845703, 0.7236328, 1.0273438, -1.1152344, -1.2480469, -4.8242188, -1.2607422, -1.5419922, -0.8022461, 1.34375, -1.984375, 0.74365234, -1.0585938, 1.4785156, 1.3515625, -0.4699707, -0.013771057, 1.6044922, -0.6791992, 2.5664062, 0.21911621, -0.10620117, -3.3691406, 2.2226562, 1.1240234, 0.88623047, 1.2792969, 1.6621094, -0.047821045, -1.9599609, -1.3916016, -0.8847656, 0.014808655, -2.0996094, -0.6245117, 1.4658203, -0.10839844, 1.8652344, -0.2388916, 0.6435547, -0.31640625, 2.4980469, -0.23339844, 1.0810547, -1.7626953, 0.37402344, -2.1074219, -4.7265625, -2.1875, 0.94384766, -0.46264648, -0.15393066, 0.21191406, -1.8544922, 0.020889282, -0.09899902, 0.9614258, -2.4648438, 1.1630859, -1.6640625, -0.47583008, -1.0341797, -0.15600586, -0.99072266, 1.3623047, 0.7597656, -0.59765625, 0.13928223, -1.2041016, -1.7675781, 0.39526367, -0.6586914, 0.3076172, 0.14587402, -1.6572266, -2.78125, 2.2441406, -0.19873047, -2.3632812, 1.8349609, -1.3359375, -0.04220581, 0.99121094, -0.4675293, 1.0371094, 1.2568359, -0.45776367, 0.9794922, -0.09283447, 0.059814453, -2.1054688, 1.2724609, 0.4802246, 1.1289062, -0.9863281, -2.3847656, 2.484375, 0.18347168, 1.1757812, 1.6074219, -1.8964844, -0.93359375, -3.2089844, -1.6142578, 0.03552246, -0.34985352, -0.12005615, -0.036224365, 0.9838867, 0.39257812, 0.37768555, -0.7294922, 0.2902832, -0.38232422, -1.046875, 1.7314453, -1.8798828, 2.9023438, 0.7109375, 1.3046875, -2.7128906, -0.88183594, 3.2695312, 0.8300781, 0.8745117, -0.5444336, 1.2792969, -0.7885742, 1.2207031, -1.0898438, 2.265625, 2.5742188, 1.3769531, -0.7963867, 1.9345703, 1.7060547, -0.105163574, 0.13195801, 0.91748047, -1.4882812, -0.5234375, 2.0390625, -0.4428711, -1.0039062, 1.3320312, 0.038757324, 1.2919922, -0.31958008, -0.41210938, 1.4423828, -1.3496094, -0.56933594, -1.2861328, -1.1621094, -1.6455078, 1.6923828, 2.3085938, -1.2822266, -0.111206055, 1.9316406, -0.5600586, 0.029800415, 2.078125, 1.3759766, -2.9121094, -0.38452148, 0.32495117, -1.0273438, 1.2675781, -1.4951172, 0.30419922, 2.3144531, 1.1279297, 0.53271484, 3.2226562, -1.203125, 2.9296875, 2.2246094, 1.0371094, 2.15625, 0.74072266, 0.9926758, 1.703125, 0.33789062, 1.4326172, -0.019073486, 0.78466797, 1.5283203, 0.6557617, 0.027923584, -1.3193359, 1.8457031, -0.09301758, -1.921875, -1.1650391, 0.9267578, 1.4189453, -4.046875, 0.48657227, 0.18688965, 1.4667969, -2.0390625, -0.41259766, -1.1181641, -0.15368652, 1.6113281, 0.78759766, 0.04385376, -1.3964844, -1.2861328, -0.59814453, 0.38549805, 2.6386719, -1.0644531, 0.8769531, -1.2929688, -2.1542969, -0.14135742, 0.11193848, -0.9926758, 0.5551758, 0.66845703, 2.1523438, 1.1572266, -2.078125, 1.0205078, -2.8320312, 0.24353027, 0.17016602, 4.359375, -0.24328613, 0.28173828, 2.0039062, -0.8774414, -3.3554688, -4.5820312, 1.8710938, 0.17456055, 1.2851562, 1.1630859, -3.0703125, 2.4765625, 1.0478516, 0.62353516, -3.8730469, 0.77978516, 0.25195312, -0.93896484, -0.27075195, 2.5839844, 0.21081543, 2.6230469, 0.28466797, -2.2636719, 0.73046875, 0.61035156, 0.5830078, -1.546875, -0.9375, 1.8339844, 0.7421875, -1.1738281, 1.9394531, 0.87890625, -1.8203125, -0.015060425, 1.0898438, 2.1953125, -0.015655518, -0.6040039, -0.59033203, 0.29467773, -0.75634766, 0.1496582, 0.45629883, -1.8535156, -1.9560547, -1.6220703, -0.8300781, -1.8232422, -3.3203125, 1.0605469, -0.80615234, -2.7734375, -0.7441406, 2.4765625, -0.35107422, 0.4482422, 0.55029297, -0.09301758, 0.7871094, -1.1806641, -0.22363281, -2.2226562, -1.1552734, 0.13635254, -0.16113281, -0.14660645, -1.3183594, 0.5097656, -0.08905029, -0.83154297, 0.86035156, 0.7602539, -0.66308594, -0.034454346, 0.17199707, -0.8613281, 0.9121094, 3.3613281, -2.0742188, 0.41015625, 0.82421875, -1.7568359, -1.2919922, -1.1113281, -0.35107422, 0.57177734, 1.1298828, 0.65478516, 2.5546875, -1.6640625, -2.3203125, -1.2080078, -3.3828125, 1.4853516, -0.5419922, 0.04977417, 0.29418945, 2.4257812, 2.4394531, -1.2265625, 0.3388672, -1.4140625, -0.06994629, 0.16210938, -0.18664551, 1.3447266, 0.8222656, 0.43139648, 1.0097656, 1.3398438, 2.9121094, -0.82714844, 0.9814453, 0.062286377, 0.08062744, -0.57373047, 1.6845703, -2.5039062, 0.09240723, 1.0322266, -0.6386719, 2.8652344, 1.4492188, -0.85058594, -1.3769531, -0.67089844]}, "B0002P1D0Y": {"id": "B0002P1D0Y", "original": "Brand: Red Dragon\nName: Red Dragon CD-100 Propane Cylinder Dolly,Steel\nDescription: \nFeatures: A handy way to move a simple 20 pound cylinder while flaming\nThis dolly makes the perfect companion for any Red Dragon Torch Kit\nIdeally suited for LP Gas cylinders up to 40 pounds.\nThe single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch\nWhen the torch is not in operation, it can be stored on the convenient torch bracket.\n", "embedding": [0.56640625, 1.8671875, 2.953125, -0.03604126, 0.12683105, -1.9892578, -0.076538086, -1.1425781, -1.3095703, 1.1689453, 0.61572266, 2.2207031, 0.38208008, -1.3046875, -0.22766113, 0.16821289, -0.46289062, 2.0234375, 0.5463867, -1.3759766, 3.0097656, -0.50878906, 1.6435547, -0.76464844, 0.34033203, -1.6298828, 2.078125, -0.35913086, -1.7734375, 0.64453125, 2.2011719, -1.5791016, 0.68408203, 1.2988281, -0.39868164, -2.765625, 0.7182617, 0.3161621, -3.5566406, -0.96972656, -0.4724121, 1.4267578, 0.24377441, -0.5654297, -3.1074219, 0.56640625, -0.44458008, 0.11846924, 2.5253906, 0.31835938, 3.6347656, 1.4443359, -1.3027344, 0.78759766, -0.64746094, 2.3710938, -0.024002075, -3.7050781, 1.9550781, -1.2441406, 1.3369141, 1.6884766, -2.0273438, 0.6142578, 0.6533203, 0.45922852, -2.0195312, 1.0224609, -0.64941406, -1.3359375, 1.8662109, 2.5097656, 1.1699219, -0.82714844, 0.82373047, 0.52783203, -2.7441406, 1.3359375, 2.4863281, -2.4785156, 2.3769531, 0.10675049, 0.8745117, -0.37426758, -0.60498047, -3.7050781, -1.4267578, 1.6123047, -0.11383057, 1.8623047, -1.9355469, 2.2207031, -0.1583252, -4.3789062, 0.94628906, -0.3239746, 0.29492188, 0.78564453, 0.49975586, 1.4785156, 1.0263672, -1.3857422, -0.13391113, -2.109375, 2.2617188, -0.71728516, -0.91748047, 1.0253906, -1.3974609, 2.9179688, -3.3320312, 0.6381836, 1.4316406, -0.84033203, -2.2597656, -1.3671875, -0.75390625, 1.8056641, 2.3144531, -0.47045898, 3.0605469, -1.8017578, 0.5678711, 0.31835938, 3.6054688, 0.2758789, -0.74316406, 2.3964844, 3.4101562, 0.53027344, -0.5991211, 1.9863281, 1.0371094, -2.2480469, -0.31884766, 0.11932373, 0.66503906, -0.19274902, 0.23327637, -2.7363281, -0.6064453, -2.1386719, 1.1123047, 0.28442383, -3.0371094, 0.7236328, 0.19116211, -0.4399414, -1.8037109, -2.5585938, 0.8569336, -1.6806641, -0.18518066, -1.9628906, 1.5849609, 3.5097656, -1.5449219, -2.2832031, 1.6699219, -0.3215332, 0.63720703, 0.48242188, -0.26635742, 2.3632812, 0.15454102, -0.021438599, 1.3818359, 0.37963867, -2.2246094, 0.9765625, -0.89697266, -1.1904297, -0.9145508, 0.36132812, -0.6010742, -2.5097656, -1.1894531, 1.2421875, -1.3857422, -1.2988281, -2.2695312, 0.37158203, 2.3652344, -0.026412964, 0.38671875, 0.3491211, -1.3603516, -1.5878906, 0.69140625, 0.23339844, 0.81884766, -0.9770508, -1.6826172, 0.4633789, 1.4697266, -0.38208008, -0.89453125, -1.0703125, 1.0263672, 1.4755859, -3.3496094, -1.7705078, 1.1884766, 1.6728516, -2.4277344, -1.7587891, 1.546875, 0.46289062, -0.34448242, -1.2333984, 0.29736328, 0.95410156, 4.09375, -1.4199219, -1.3203125, -2.5410156, -1.171875, 0.6044922, 1.5263672, 0.24108887, 0.32373047, -1.8662109, 0.1854248, -0.33764648, -1.3310547, 2.0585938, -1.3544922, -0.8881836, -1.7392578, 1.1152344, -0.7524414, 1.8427734, 1.1503906, 1.9912109, -0.7963867, 1.0351562, -0.11505127, 0.81884766, 1.2646484, -3.5566406, -0.4958496, 0.43188477, -0.58496094, 0.6064453, -0.21362305, 0.32373047, 2.0839844, 2.1992188, 0.35986328, -0.28710938, -0.28295898, -1.0585938, 0.35766602, 0.28393555, -0.24743652, 1.9228516, -1.0771484, -1.5214844, 1.1728516, 0.9951172, 3.5371094, 0.1940918, -1.5068359, -1.5927734, -1.9111328, 0.90234375, 0.2376709, -1.2167969, 1.0927734, 0.3203125, -1.4775391, 1.7519531, 2.1601562, -0.05392456, 1.8925781, 0.94970703, 0.27685547, -0.08996582, -0.078552246, 3.3164062, 1.9423828, 0.4831543, 1.6113281, -3.2675781, -1.8369141, 0.59277344, 1.4541016, 0.53515625, 0.64990234, 0.59228516, 4.3085938, -0.9604492, -2.5117188, 1.6416016, 0.59277344, 2.671875, 0.3684082, -1.1025391, 2.3925781, -1.5214844, -0.22399902, -0.7885742, -2.2617188, 1.1210938, -0.25341797, -2.0917969, 0.7758789, 0.7573242, 2.6621094, -1.4980469, 1.0957031, 0.23144531, 0.93066406, 0.46826172, -0.99853516, -1.046875, 2.8105469, -0.45483398, 2.1523438, 1.8564453, -0.6088867, -0.058776855, 2.5175781, 0.47192383, 0.71972656, 0.28198242, -3.0097656, 0.3215332, 1.9941406, 0.55371094, -0.5131836, 0.9350586, 1.78125, -1.9541016, 0.010398865, 1.1728516, -0.021820068, -0.48754883, 1.0136719, -1.3359375, -1.5439453, 0.6616211, 0.5102539, 1.4248047, 1.8125, -2.8808594, -1.1884766, 2.3320312, -1.2636719, -1.8105469, -0.0881958, 1.2734375, -1.9160156, -2.9667969, -0.62402344, 1.3818359, -1.5341797, 1.8613281, -1.6220703, -1.4716797, -0.69433594, -0.8046875, 1.5986328, -0.22521973, -0.9091797, -0.28100586, 1.4609375, -2.6035156, 4.1914062, 1.3212891, -0.17541504, 0.44018555, 0.13305664, 0.18591309, -0.8486328, 0.46606445, -0.47973633, 3.8730469, -0.12359619, -0.18383789, -0.2915039, -0.15368652, 2.6289062, -0.6118164, -3.0585938, -1.1611328, -0.64746094, -1.7158203, -0.93310547, -4.7460938, 0.5341797, -0.4897461, 0.1706543, 1.8388672, -0.087768555, 0.17456055, -0.32543945, -2.6835938, -0.86572266, 2.1132812, -1.5322266, -0.50634766, -0.8930664, 3.3027344, -1.7197266, -2.8417969, -1.1386719, -0.88916016, 0.6015625, 0.17114258, -1.0732422, 0.46728516, -1.4560547, -0.74902344, 1.0292969, -1.4609375, 1.7705078, 0.36645508, 1.4785156, 1.3808594, -1.5917969, -0.4807129, -1.8662109, -0.8833008, 1.3652344, -1.8427734, 1.7275391, 1.9785156, 1.0205078, -2.2382812, 2.5507812, -1.4472656, 0.42700195, 0.7026367, 0.9267578, -1.6845703, 0.42504883, 1.0859375, 1.7431641, -3.2753906, -0.5991211, -0.37109375, -0.29370117, 1.6513672, -0.6166992, -0.47631836, -2.265625, -1.0722656, -0.15209961, 1.5292969, 0.05279541, 0.6333008, 0.59472656, 0.8041992, -0.99902344, 0.2548828, 1.8876953, 0.43237305, 3.2246094, 0.7680664, 0.77490234, 1.5244141, -0.06762695, -0.5253906, -0.27490234, -1.4355469, 0.0023975372, 0.36206055, 0.38842773, 2.1699219, -0.21374512, 0.16894531, -1.6113281, -0.5151367, 2.3613281, -0.34765625, -1.8896484, -0.30419922, 1.0371094, -1.2431641, -2.0605469, 1.7744141, -0.72265625, -1.8574219, -0.24694824, -1.2431641, 2.7363281, -4.3867188, 1.5029297, -2.6386719, 0.21020508, -0.99121094, -0.42041016, -1.6845703, -1.2939453, -1.0595703, -0.59228516, -2.3867188, 2.65625, 1.4013672, -2.0878906, 2.7246094, -2.7714844, 2.7285156, 0.38330078, -1.2958984, -0.38500977, -1.5371094, -1.2441406, -1.3427734, -0.35131836, 2.0410156, 1.4941406, -1.8544922, 2.046875, 0.5541992, 0.24743652, -0.79589844, 0.1607666, -0.75439453, 0.15307617, -2.1914062, 0.9848633, -0.119018555, 4.3398438, -0.20593262, 2.0742188, 1.5556641, 3.1738281, 0.5522461, -1.5058594, 0.7890625, 1.3828125, -0.95166016, 0.5854492, 5.0859375, -2.4199219, 0.11022949, 0.4165039, -0.17150879, -0.27197266, -2.1523438, 0.21289062, 2.7363281, -2.2421875, 0.15979004, 1.8388672, -0.38549805, -1.2089844, -0.28686523, 1.2392578, 1.2792969, -0.9790039, 1.90625, -2.8007812, 0.9213867, -1.2753906, 0.19665527, -2.46875, 0.7216797, 3.1542969, 0.04257202, -0.73095703, -2.6113281, 3.3144531, -0.65625, -0.70703125, -1.2167969, 2.4980469, 1.3779297, -0.7260742, 1.0019531, -3.59375, 1.4169922, 0.3684082, -1.4033203, -0.6616211, -0.46020508, 1.2041016, -0.9448242, 0.11315918, 1.5478516, -0.70214844, 3.1035156, 1.9375, -1.4277344, 1.6923828, 0.83154297, 0.80615234, 0.62060547, -0.9165039, -1.9306641, -0.03012085, -0.42944336, 0.32177734, 0.91748047, 1.2978516, -2.3183594, -0.034820557, 0.14562988, -0.043395996, 0.089416504, 0.3918457, 2.515625, -1.1630859, 2.3730469, 0.062408447, 0.27954102, -2.1054688, 1.5136719, -0.3178711, -0.95166016, -0.7211914, -0.58203125, 0.45825195, -0.21020508, 0.15319824, 0.48120117, 1.5673828, -2.0722656, -2.0390625, 0.99316406, 0.32055664, -2.6132812, -1.0957031, 1.4755859, 0.48217773, 1.4609375, -2.0898438, -1.4404297, 0.0027561188, 0.69970703, -1.6386719, 0.9770508, -0.18713379, -0.73095703, 0.7260742, -1.0595703, 1.8105469, 1.2265625, 2.3496094, 0.14978027, 1.2558594, 1.40625, -0.59472656, 1.4365234, -1.9042969, 1.6816406, 1.9208984, -0.2788086, 2.8222656, 1.96875, 1.3203125, 0.34570312, 1.9091797, 0.9038086, 1.2578125, -2.7324219, 0.48217773, -1.3652344, -0.82470703, 0.20568848, -2.2988281, 0.31713867, 0.51220703, 0.48657227, 0.93408203, 0.82958984, -0.6274414, -1.0205078, -2.4863281, -1.1474609, -0.56640625, -2.1386719, -0.79345703, -0.43139648, 1.1464844, 0.63183594, 1.1435547, -0.061950684, -0.28564453, 3.2519531, 0.9213867, -1.328125, -1.5527344, -1.1318359, -1.2900391, -0.63183594, -3.4902344, 1.8408203, -1.9833984, 3.1621094, -0.61621094, 1.6337891, 3.1523438, -1.3134766, -0.6044922, -0.59033203, -0.23168945, -2.3496094, -0.79833984, 4.6171875, 0.048980713, 1.46875, -0.58251953, -1.5732422, -2.0546875, 2.7832031, -0.12719727, -1.6767578, -2.0566406, 2.1484375, -2.0976562, -1.3466797, -2.2636719, -1.4941406, -1.0898438, -1.3349609, -1.0996094, -1.3515625, -0.07208252, -0.78222656, 0.066223145, 0.84228516, 1.8779297, -0.45043945, -0.43237305, -2.1015625, 0.70996094, 2.2675781, -0.1652832, -0.9951172, -1, 0.48901367, 0.8881836, -4.4257812, 3.7207031, -1.6689453, 1.328125, 0.38745117, -0.65478516, 4.0898438, 2.34375, 1.4238281, -0.7919922, 0.75, -3.2128906, 1.3984375, -0.39697266, -1.625, -2.2832031, -0.29711914, -0.9633789, -1.1582031, 3.2089844, 3.1347656, -2.5761719, 0.10852051, -0.65478516, -0.99902344, 0.15197754, 0.31323242, 1.5693359, 0.68847656, 0.90771484, -0.15979004, -1.4091797, -2.609375, -0.62158203, 0.75683594, -0.5053711, -1.15625, -0.19055176, -0.07647705, 1.2041016, -1.15625, -0.7626953, -1.5957031, -0.9243164, -1.0380859, 0.5541992, 0.7138672, -1.1191406, 2.7714844, -0.61035156, 0.35229492, -1.0107422, -2.2597656, 2.7617188, 0.72998047, -1.3984375, 0.053375244, 1.7333984, -2.7480469, -1.1708984, -1.9160156, 1.5048828, 0.6899414, -0.37280273, 0.061553955, -0.8466797, 1.7675781, -0.75439453, 0.5341797, 0.48364258, 0.92041016, 1.0322266, -1.1025391, 0.34423828, -2.8925781, 0.35009766, 1.1220703, 1.3144531, -0.9970703, -0.30004883, 0.41992188, -0.21813965, -1.3740234, 0.2578125, 0.12780762, -1.4912109, -0.8588867, 0.111816406, -1.1845703, -0.68310547, 1.0498047, -0.80859375, -0.17944336, 2.4628906, 0.53222656, -1.0986328, -1.1259766, -1.0205078, 1.9423828, 2.1699219, -0.06561279, 1.9140625, 1.2734375, 0.03842163, -0.6665039, -1.4824219, -2.7539062, 0.6645508, 1.546875, 2.3945312, 2.1269531, 0.9038086, 0.47314453, -0.59716797, 0.52001953, 2.6933594, -1.3466797, 0.5283203, 1.3525391, 0.9477539, -2.0292969, -2.1601562, -2.7636719, 0.3383789, -1.7558594, -0.4440918, 1.3525391, 2.4121094, -1.0488281, 0.96484375, 1.1953125, 0.89160156, 0.096191406, 1.0791016, -0.58691406, -0.50146484, 0.2512207, 2.5273438, 2.0683594, 1.5146484, 0.44458008, -0.1661377, -1.3496094, -0.10852051, -0.99560547, 0.85595703, -0.40771484, -0.50097656, 0.63916016, -0.55126953, 0.20324707, 0.113464355, 2.2519531, 2.1679688, -1.1435547, -0.07562256, 0.38793945, -1.46875, -0.5073242, 0.9448242, -0.55371094, 2.6074219, -0.5551758, -0.050323486, 1.3798828, -0.9165039, -0.10192871, 1.0615234, 0.60253906, -1.0703125, 0.5654297, -2.0507812, -1.1083984, -1.8369141, 2.328125, -0.35717773, -0.023468018, -1.3232422, -1.0400391, 2.4101562, -1.0615234, 0.9765625, 0.89941406, 2.2382812, -0.8671875, 0.69970703, 1.1123047, 0.07293701, 1.0429688, 1.2666016, -0.10760498, 3.4863281, -1.8300781, 2.2558594, -1.3896484, -0.6435547, -1.7646484, 2.9941406, 0.97265625, -0.7216797, 3.4179688, -0.6635742, 1.8671875, 0.30126953, 2.4414062, -0.28149414, 0.9584961, -0.79833984, -1.2841797, -2.6894531, 1.5185547, 1.703125, -2.1464844, 1.8759766, -0.8623047, -0.47460938, -0.7705078, -0.30615234, 0.8203125, 1.3066406, -1.6777344, -1.0214844, 0.3828125, 0.60595703, -1.6269531, -2.5136719, 1.2128906, 0.7807617, -0.73828125, -1.3818359, -1.6337891, -0.56347656, -0.05557251, -0.54345703, -0.85058594, 0.78125, 0.23083496, 2.1757812, -1.5419922, -0.26489258, 1.9521484, -1.2041016, -0.24133301, 0.6430664, -1.2509766, -0.4182129, 0.017166138, -0.953125, -1.1357422, 0.90625, -0.93408203, -1.2216797, -0.6479492, -2.4433594, -2.3574219, -3.2871094, 0.72314453, 0.76464844, 0.11230469, 0.8442383, -0.46923828, 3.6933594, -1.6640625, 1.7109375, -1.2597656, 1.0498047, 2.4785156, 1.0351562, 0.7626953, -0.3630371, -0.58691406, -0.027008057, 4.3671875, 0.82714844, -0.2956543, -0.69970703, -0.21972656, -1.9746094, -2.46875, -2.5507812, -0.08758545, -0.97753906, -2.0371094, 1.0791016, -0.20422363, 0.40966797, 0.6538086, -1.9013672, -3.3789062]}, "B00QB6PBZQ": {"id": "B00QB6PBZQ", "original": "Brand: Outland Living\nName: Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket\nDescription: \nFeatures: DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements.\nCONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose.\nDISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items.\nWEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use.\nPERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25\" diameter by 18.5\" height to ensure a snug fit for your 20 lb propane tank.\n", "embedding": [-0.023468018, 2.7753906, 2.8964844, -0.18273926, 0.58740234, 0.27026367, 1.0566406, -0.5649414, -0.41723633, 2.6152344, -0.5175781, 0.6923828, -0.68066406, -4.3007812, 0.4807129, 0.07867432, 0.45874023, 2.3417969, 2.0546875, -1.2226562, 2.3535156, 0.4033203, 1.2617188, -0.52246094, 0.98779297, -0.7792969, 2.4980469, -2.2109375, -1.8486328, 0.6035156, 1.078125, 0.9873047, 0.120666504, 2.2089844, -1.2919922, -1.6679688, -1.7431641, 0.8798828, -2.5234375, 0.3161621, -2.7304688, -1.3740234, 3.4199219, 0.38378906, -1.5253906, -0.77246094, -0.19140625, -0.59375, -0.03414917, -1.7880859, 0.28173828, 1.1083984, 0.7158203, 1.5654297, -2.2675781, 1.3134766, 0.27441406, -2.109375, 1.0205078, 1.4160156, -0.64501953, -1.625, -1.4003906, 2.4101562, 0.095458984, 0.19213867, -0.5341797, -0.37646484, 0.001947403, 1.3984375, 2.15625, 0.04260254, 0.95996094, -0.8330078, -0.15307617, -0.04711914, -3.2382812, 2.0410156, 0.8286133, -1.0029297, -0.6743164, 3.4863281, -1.8564453, -1.1621094, -0.7973633, -0.8774414, -3.2050781, -0.78027344, -0.37719727, 1.2412109, -0.640625, 1.5986328, -1.7451172, -4.3632812, 1.3710938, -1.4277344, 1.7119141, 0.9267578, 1.6240234, 0.64501953, 0.63378906, 1.2021484, -1.1425781, 0.2956543, -3.0039062, -1.3427734, 0.81103516, 0.2130127, -0.27172852, -0.40625, -0.9638672, -0.38745117, 2.0058594, -0.25219727, 0.7451172, 1.2119141, -0.9296875, -0.029220581, 3.8222656, 1.4980469, 5.2421875, -0.8701172, 1.6015625, 0.38085938, 0.8647461, 0.9008789, -0.84765625, 0.050354004, 2.3125, -0.40063477, 1.5117188, -0.25708008, 0.6899414, -0.8769531, -1.3867188, -1.1220703, -1.1621094, -2.5507812, -2.5839844, 0.17456055, -2.0996094, -0.3713379, 2.0351562, -0.15100098, -3.5957031, -1.3964844, -1.8564453, 2.125, -0.49291992, -3.71875, -0.44702148, -1.8046875, 0.40673828, -1.3710938, 1.6542969, 0.45654297, 0.93896484, -4.0117188, 2.515625, 2.6210938, 1.9150391, -2.2441406, 0.7114258, 0.9243164, -0.22033691, -3.2304688, 1.7548828, -1.2626953, -1.3183594, 1.3095703, 0.13586426, -2.2851562, 0.6694336, 0.27197266, 0.2088623, -2.0214844, 1.1748047, 1.3857422, 1.5019531, -0.8574219, -3.3320312, -1.4248047, -1.5751953, 0.98339844, 1.2148438, -0.69091797, -2.6972656, -1.1240234, -0.47583008, -1.8232422, -1.9091797, 1.3242188, -1.9609375, -1.671875, -0.8989258, -3.4433594, -3.5253906, -2.1796875, 0.9658203, 1.7929688, 0.25854492, -0.55908203, -1.9257812, 1.6210938, -2.8164062, -0.96435547, 0.3203125, -0.08062744, 0.8105469, 1.3837891, 0.0035171509, -0.039245605, 3.0039062, 0.82910156, -0.8286133, -0.5708008, 2.5585938, 0.6098633, 3.1757812, 1.9863281, 0.8466797, 0.41503906, 1.2578125, 2.640625, 0.9423828, 1.8457031, 1.4248047, -0.36865234, -2.609375, -0.89746094, 1.1357422, 0.6225586, 0.2319336, 1.6435547, -1.1005859, 2.9941406, 0.45043945, 0.1899414, 1.3876953, -1.0673828, -0.6015625, -0.4711914, -1.1972656, 0.29663086, 0.116760254, 1.3779297, 0.27661133, 1.5996094, 2.265625, 0.46289062, 0.06616211, -1.3652344, 0.13977051, -2.4863281, -1.1025391, 0.46972656, 0.5073242, -0.13476562, 0.21862793, -1.9882812, 0.36767578, 0.6879883, -1.2587891, 0.36499023, -0.9140625, -0.1171875, 0.78027344, 1.3164062, -2.0136719, -0.23828125, -1.6132812, 0.94921875, 1.8486328, 0.029312134, 1.6914062, 0.5083008, -1.3369141, 2.4570312, 0.3395996, 1.921875, 1.4267578, -0.62841797, 2.1074219, -2.1953125, 0.20825195, 0.34960938, 2.2285156, 0.47094727, -2.2773438, 0.46875, 3.9101562, -1.3085938, -1.2958984, 1.3134766, 0.7993164, 1.0693359, 3.9003906, -1.7988281, 0.25708008, 1.6054688, 1.1337891, 0.0063476562, -1.1035156, 1.1474609, 0.026977539, -0.26635742, 0.06100464, -2.6777344, -0.07318115, 1.4345703, 0.08807373, -1.2333984, -1.0205078, 1.6982422, -1.7734375, -1.5751953, 4.4453125, -2.6445312, 1.0107422, 3.2089844, -0.6826172, 0.93359375, -1.2548828, -1.875, -0.6191406, 1.3183594, -1.640625, 0.47216797, 0.23718262, 0.13208008, -0.3383789, -3.09375, 1.1523438, -1.515625, 0.72216797, -1.2080078, -1.9814453, -0.9614258, -0.78759766, -2.2675781, 1.0878906, 0.20935059, -1.8037109, 0.9160156, 0.51123047, -1.1542969, -0.12261963, 1.7841797, -1.2978516, 0.7192383, 1.5048828, 2.328125, -0.22998047, -3.53125, 0.08959961, 1.2529297, -0.28100586, 1.2519531, -1.1660156, -0.4633789, -0.39916992, 1.234375, 1.1953125, -0.32836914, -0.11743164, -1.8642578, 0.35498047, -4.8007812, 2.0878906, -1.5322266, 1.6240234, -1.8925781, -0.5004883, -1.0087891, -1.9785156, 1.734375, -2.3339844, 4.140625, 1.7949219, 0.6118164, -0.7832031, -1.7294922, 0.12445068, -0.66552734, -3.0859375, 0.81884766, -0.34033203, -1.6445312, 0.26220703, -4.59375, -0.19604492, -2.3027344, -0.69873047, 0.74560547, 0.09039307, -0.9975586, -0.51416016, -0.9902344, 0.057647705, -1.4238281, 0.14978027, 0.10620117, -0.2763672, -1.0595703, -0.31884766, 0.5053711, 0.68359375, -0.41967773, 2.1855469, -1.7851562, 0.05316162, 1.375, -0.68603516, 2.0078125, -0.23339844, -3.9433594, -0.12780762, 2.2695312, 0.88671875, 2.5859375, -1.0605469, -1.6279297, -0.9321289, 0.80078125, 3.2636719, 1.2890625, 0.8925781, 0.056365967, -1.2421875, 1.0654297, -0.5942383, -0.11987305, 1.1611328, 0.17980957, 3.1992188, -2.5996094, 0.36206055, 0.69091797, 3.5703125, -4.5117188, -1.3417969, 0.38549805, -0.30297852, 2.8730469, -0.5361328, -1.015625, 0.4116211, 0.37890625, 0.96435547, -0.15698242, 0.93066406, 0.06298828, -0.5263672, 0.55078125, 0.98583984, 0.12854004, 1.6113281, -0.40698242, -1.2978516, 1.3798828, 0.5307617, -1.1767578, 0.19445801, 0.54345703, -0.32543945, -0.33374023, 1.7685547, 0.058013916, 1, -0.16772461, 0.8095703, 0.7626953, -1.6494141, 0.77197266, 1.0068359, 0.76220703, -0.19897461, -0.75683594, -0.4716797, -0.6660156, -1.0019531, 1.6103516, -1.3349609, -0.18371582, 1.3408203, -2.5566406, -0.97265625, -1.4384766, 2.4628906, -0.5546875, -1.8583984, -0.86865234, 1.3515625, -2.1386719, -2.546875, -0.0023403168, -2.4765625, -0.41455078, 3.9550781, 0.86572266, -2.03125, -1.3183594, -0.3581543, 1.6298828, 2.3515625, -0.5810547, -0.7739258, 0.29516602, 0.9375, -0.65625, 0.55371094, 1.3417969, 1.3115234, -3.0410156, 0.58935547, -1.2714844, 1.3320312, 2.5214844, -1.1191406, 1.5322266, 0.82421875, -0.27905273, 2.1992188, -0.36987305, 2.5136719, -1.5244141, -0.5678711, 2.9804688, -0.28100586, -0.22998047, -1.3271484, -3.1054688, -0.33129883, -1.6816406, -1.4951172, 2.4121094, -0.026107788, -0.59716797, -0.8911133, 0.3178711, -2.3808594, -2.9101562, -2.4296875, 0.48828125, -2.7753906, -1.1484375, 0.008476257, 1.2128906, -2.9140625, -1.8720703, 0.59765625, 0.8701172, 0.3635254, -1.15625, 0.12310791, 1.5585938, -2.1582031, -0.6113281, -0.05682373, 0.38793945, -0.49365234, -0.07299805, -0.6040039, -1.1865234, 2.6035156, -0.08453369, -0.9682617, 1.7460938, 3.2597656, 0.09320068, -0.16662598, 0.22375488, 0.35473633, 2.7871094, -0.95410156, -3.5507812, -3.0117188, -1.28125, 1.078125, -0.7495117, -1.0048828, 0.88916016, -0.8701172, 0.9379883, 0.9555664, 1.3847656, 1.4140625, -0.5493164, -2.1367188, 1.8720703, 0.2878418, -1.8515625, -2.296875, -1.8417969, 0.58740234, -0.9614258, -0.7578125, -1.296875, 0.97802734, -0.2944336, 0.5991211, -1.5605469, 1.8652344, 2.2460938, 3.2167969, 2.6308594, -0.83154297, -0.81396484, 2.0566406, 0.64501953, 1.1318359, 1.4667969, -0.15576172, -0.4165039, 1.7675781, 0.5786133, -2.5527344, -1.0175781, -0.2241211, -0.87402344, -0.4946289, -0.025421143, 0.51464844, -1.6162109, -0.7475586, -0.0690918, -2.40625, 3.609375, -2.2597656, 1.8886719, -0.19104004, -0.06640625, -1.2246094, 2.4199219, 0.025115967, 1.3183594, 0.57128906, -0.067871094, -0.17895508, -0.08123779, 2.2109375, 0.6958008, 1.3242188, -1.7841797, -0.13671875, -0.25561523, 0.5292969, -0.10998535, -0.88671875, 1.765625, 1.6376953, -0.17700195, 0.9609375, 1.6679688, -0.3605957, 1.8173828, 0.018173218, -1.1083984, -0.69189453, -1.0429688, -0.033996582, 1.8730469, -0.73095703, -2.7773438, 0.2939453, 2.0253906, -1.5195312, 1.9589844, 1.2246094, -1.4013672, 0.107910156, -2.4160156, -2.0292969, 0.29614258, -0.36889648, -0.2286377, -0.9458008, 0.15856934, -0.71435547, 0.7998047, 2.3847656, -0.8876953, -1.546875, 1.2695312, 0.43530273, 0.07800293, -0.34057617, -1.3847656, -1.7519531, 0.13806152, -1.1738281, 0.35864258, 1.6464844, 0.33276367, 1.6015625, -2.1601562, -1.0214844, -1.7705078, 2.5078125, -2.7773438, -0.85498047, 1.8554688, 1.4052734, 0.076171875, -1.6318359, -1.4189453, -1.0517578, 1.6679688, 0.91552734, 2.53125, 0.14685059, -1.4277344, -3.9433594, -3.5097656, -0.90625, 0.6191406, -1.015625, 1.0380859, -1.4482422, -1.4794922, 0.6118164, -1.1962891, 0.47094727, -1, -0.18859863, -0.5957031, -1.2763672, -0.45361328, 0.5371094, 0.5517578, 2.4648438, 0.14355469, 0.17944336, -1.078125, -1.2753906, -2.2246094, 1.2714844, -1.3583984, 0.60546875, 1.3164062, 0.34033203, 1.7548828, 1.7480469, 1.1914062, -0.10046387, 1.5390625, -0.29077148, -0.76123047, 2.5761719, -2.4453125, -0.10772705, 1.1337891, -0.87158203, 1.8310547, 0.25317383, 0.95410156, -1.7011719, 1.03125, 0.10015869, 1.7158203, -0.14941406, 1.0732422, 1.2548828, 0.5185547, 1.3652344, 2.4921875, -0.4440918, -1.0048828, -1, -2.125, -1.2138672, -2.6503906, -1.0097656, -0.99853516, -0.15600586, 1.4335938, 0.89501953, 2.1171875, 1.3994141, 0.80078125, -2.4355469, 1.5185547, -2.0175781, 2.2265625, 1.6181641, -1.8417969, -2.0078125, -3.296875, 1.1513672, 2.1367188, -1.0097656, 0.26464844, 0.5058594, -1.7285156, 1.6552734, -0.9560547, 2.0507812, 2, 2.1347656, -1.1582031, 0.27734375, 1.3183594, -0.18688965, 2.3652344, 0.011268616, 1.21875, -0.070129395, 2.0507812, 2.0605469, -1.9052734, 0.35791016, -0.50146484, 1.3798828, -1.1835938, -1.0253906, 1.7900391, -1.6748047, -0.2697754, -1.0107422, -0.017166138, -2.2441406, 1.6660156, 1.5195312, -0.80126953, 0.609375, 0.75097656, -0.78759766, -0.0031929016, 1.2324219, -0.40283203, -0.51953125, -0.3479004, 0.24584961, 0.81640625, 1.8779297, -1.2255859, 1.4082031, 0.99902344, 0.7519531, -1.3818359, 2.0957031, 1.1064453, 1.9589844, 1.4404297, 3.3027344, 3.6914062, -0.51416016, 1.9248047, -0.68359375, 2.2441406, 2.4140625, -2.0039062, 0.73046875, 1.1816406, 2.6835938, 0.8647461, -0.6323242, 0.11480713, 0.65185547, -0.40673828, -1.0683594, 0.25048828, 0.87841797, -3.3417969, 1.2851562, -0.14123535, 0.3088379, -0.31469727, 2.0058594, -2.2695312, -1.2011719, 0.30981445, -0.13427734, 1.1357422, -1.6318359, 0.73095703, -0.19372559, -0.9526367, 0.2265625, 0.14868164, 0.9614258, -1.4882812, -2.4433594, -0.6196289, 3.9296875, 1.6103516, 2.1464844, -0.54541016, 0.43652344, -0.012458801, 2.2304688, 1.3359375, -0.45043945, 1.2519531, -1.4345703, 1.4140625, 2.9785156, -2.5703125, -0.15966797, 1.0283203, -0.23400879, -4.484375, -0.068359375, 1.4042969, 1.9228516, -0.46191406, -3.6171875, -0.18310547, -1.4365234, 1.2998047, -4.40625, -0.51660156, -0.17370605, -3.453125, -0.13708496, -0.6455078, -1.6748047, 3.0742188, 2.1308594, 1.4316406, 2.5234375, 0.88134766, 1.1923828, -0.17773438, 1.1552734, -1.3759766, 1.7050781, -0.8149414, 2.2734375, 1.9306641, -2.5683594, -0.7163086, 2.7597656, 0.2692871, 0.56347656, 0.5444336, -1.3388672, 2.4628906, 0.54052734, -1.7519531, 0.13305664, -0.57421875, -0.1262207, -0.9423828, -0.23937988, 0.34155273, -1.3222656, -1.2148438, 1.9746094, -2.5839844, 0.016311646, 0.7788086, -0.35961914, 2.1875, -0.45117188, -2.1171875, -0.46069336, -0.3935547, 1.6386719, -2.3984375, -0.9707031, -2.4003906, 1.9521484, -0.13476562, -1.2460938, 0.09838867, -0.0017700195, -0.43286133, 0.31860352, 2.7167969, 0.5527344, -0.046875, 0.3881836, -0.2602539, -0.25952148, 2.5859375, -0.38110352, 0.36157227, -0.5488281, -2.65625, 0.71240234, -0.44799805, -0.021987915, 0.8359375, 4.1367188, 1.4951172, -0.7998047, -0.6489258, -3.1835938, -1.2568359, -1.90625, 2.2519531, 0.6801758, 0.3330078, 0.6826172, 0.09350586, 2.2109375, -0.7734375, -1.2314453, 0.095458984, 0.1352539, 1.2285156, -1.0546875, 0.09161377, 2.3378906, 1.0507812, 0.7294922, 2.3867188, 2.8554688, 0.45922852, 0.6826172, 2.546875, -2.6171875, -2.8613281, -0.83691406, -1.0566406, -0.8989258, 1.4794922, 2.1367188, 2.2363281, -0.03994751, -1.4892578, -4.2539062, -0.42529297]}, "B01IRR7HSU": {"id": "B01IRR7HSU", "original": "Brand: GasOne\nName: GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case\nDescription: Who doesn't like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we've come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.\nFeatures: Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case\nPiezo-electric ignition that eliminates the use for lighter/matches\nBuilt in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane)\nHeat adjustable dial to your desired heat\n", "embedding": [-1.8574219, 0.91552734, 0.02659607, 0.3942871, -0.55078125, 1.5673828, 0.77197266, 0.28149414, 1.328125, 0.3227539, 0.27416992, 0.17175293, 0.4050293, -1.3964844, 0.49316406, 0.734375, 0.39697266, 0.45629883, 0.068359375, 3.0097656, 2.2714844, -0.8520508, 1.6191406, 0.0058555603, 0.875, 0.86816406, 2.2988281, -3.8769531, -0.36254883, -0.59277344, 2.0566406, 0.73828125, -0.3149414, 1.5732422, -3.2988281, -0.88964844, -0.6645508, 0.80029297, -1.5830078, -2.2421875, -1.7900391, 0.22668457, 1.8876953, -0.050964355, -0.67333984, -0.42993164, 0.9638672, -0.105895996, -2.1152344, 1.0214844, 1.2597656, 2.4902344, -1.0205078, 2.5585938, -0.7236328, 0.7421875, 0.15673828, -0.6723633, 1.9658203, 0.8754883, 1.2480469, 1.7783203, -2.1679688, -0.41918945, -1.4658203, -0.7392578, 0.18286133, 0.42260742, -2.6875, 0.13061523, 2.2519531, 0.65722656, 0.4482422, 1.2753906, -2.0429688, -0.32885742, -2.7050781, 2.6269531, 1.9423828, -0.045074463, -0.51123047, 1.0166016, 0.44335938, -0.96484375, 0.7324219, -0.2709961, 0.7192383, 0.06274414, 1.4482422, 1.078125, -2.5761719, 1.6240234, -2.1679688, -4.1132812, 0.5366211, -0.7207031, 0.4675293, 1.0390625, 0.71533203, 1.6386719, -0.69970703, 2.0644531, 0.40600586, 1.7880859, -1.0458984, -1.3623047, 2.4492188, 0.5332031, -3.1230469, 1.0527344, -0.99316406, -1.7402344, 0.5263672, -1.4023438, -0.6958008, 0.8774414, -0.36157227, 0.58740234, 2.5273438, 0.18444824, 2.265625, -0.92529297, 0.96435547, -1.8115234, 1.765625, 1.4101562, -1.5371094, 0.8535156, 3.0683594, -0.6508789, -0.7319336, 1.1572266, 1.5351562, -1.3789062, -0.22937012, -1.4150391, -1.1308594, -1.9423828, -3.859375, 0.68115234, -1.9111328, 1.0097656, 0.8930664, -1.484375, -2.0859375, -0.033996582, -2.453125, 1.7304688, 1.5556641, -1.921875, 1.5927734, -2.2128906, 1.1171875, -2.4628906, 3.0273438, -0.65283203, -1.0019531, -0.2512207, 2.1484375, 1.3535156, 0.40185547, -2.0429688, -2.5605469, -0.06213379, 0.36499023, -1.7265625, 1.0820312, 1.6503906, -0.890625, -0.18054199, 0.15319824, -0.6879883, -0.72558594, 1.078125, 0.031951904, -1.3378906, -0.86865234, 1.4423828, 0.9873047, -1.3457031, -3.7011719, -2.9082031, 1.2861328, -0.11987305, 0.37524414, -1.0107422, 0.062805176, -0.51708984, 0.0012550354, -1.1962891, -1.0966797, 1.1513672, -0.48486328, 1.4619141, 0.24523926, -1.8310547, -1.9804688, 0.4333496, -0.4807129, 1.6865234, -0.031158447, -1.1455078, 0.12731934, 0.7836914, -3.3808594, -2.4726562, 0.3557129, -1.9003906, 0.40576172, 2.1386719, 1.0273438, 1.1015625, 2.015625, -1.0488281, -1.0107422, -1.5947266, 2.4667969, 3.0917969, 0.81591797, 0.43945312, -0.40600586, -1.3613281, 1.0302734, 0.074523926, -0.045562744, 2.9199219, 1.0761719, -0.609375, -2.4003906, -2.6035156, 1.2265625, 0.30078125, 0.78027344, 0.09448242, -0.50390625, 1.7851562, 1.1181641, -1.2666016, -0.45214844, 0.3762207, -0.49047852, 0.52197266, -1.4160156, 0.23754883, -1.9677734, 0.984375, -0.22839355, 0.44555664, 2.453125, -0.3857422, 0.41333008, 0.69677734, -0.62890625, 1.359375, -2.8085938, 0.9321289, 1.3945312, 0.25830078, -0.5371094, 0.030654907, 1.1503906, 2.5742188, 1.2265625, 0.63964844, 0.8886719, -1.4482422, 0.39233398, 0.099731445, -1.3583984, 0.4807129, 1.8574219, 1.1494141, 2.3886719, -1.0351562, 2.2460938, 0.22070312, -1.7265625, 3.0351562, 1.2080078, 1.5839844, 1.1855469, -1.5234375, -0.28222656, -2.3925781, 0.6879883, 1.0224609, 2.7851562, 0.090270996, -1.3076172, -2.0449219, 3.8085938, -0.76708984, -3.5097656, 1.4882812, -0.51708984, -0.90185547, 1.0351562, 0.23425293, 0.7524414, 0.20288086, 1.0166016, 0.017944336, -0.1427002, 1.3740234, -1.1474609, 0.7270508, -0.9082031, -0.7626953, 0.7626953, 0.7373047, 0.030532837, -0.77783203, -0.60791016, -0.113464355, -2.2851562, -0.72265625, 2.546875, -0.32714844, 0.9667969, 0.7036133, 1.921875, 2.1757812, 0.17663574, -3.0996094, -0.9663086, 0.34204102, 0.8515625, 0.20666504, -1.3085938, 0.06524658, 0.14904785, -1.5185547, 0.5751953, -1.5585938, -1.2519531, 0.47558594, -1.4462891, -2.5976562, 1.2285156, -2.7539062, -0.4921875, -0.022842407, -3.40625, 1.3496094, -0.16125488, -1.7255859, 0.39013672, 0.079589844, -1.8925781, -1.3027344, 1.1835938, 1.2216797, -0.2919922, -2.8671875, -0.21606445, 0.20263672, 0.70214844, 0.4807129, -1.0585938, -0.609375, 0.3486328, 0.012832642, -0.26733398, -1.1025391, -1.5195312, -0.7080078, 1.8134766, -3.7988281, -0.42797852, -1.0292969, 0.4362793, 1.4765625, 0.15722656, -2.0722656, -1.015625, 2.0917969, 0.19763184, 2.3261719, -0.80615234, 1.1289062, -1.2304688, -1.046875, -0.24951172, -2.5800781, -1.6503906, 0.15100098, -0.50634766, -0.14538574, -0.69921875, -1.0722656, 1.0664062, 0.2446289, 0.44140625, -1.59375, 0.97509766, 0.09265137, 0.44091797, 0.23962402, -0.7182617, 0.45703125, 0.67871094, -0.20214844, -4.5898438, -0.46411133, 0.7558594, -1.8496094, -0.16687012, -1.0664062, 0.10119629, 0.09338379, 0.5756836, 1.2089844, 0.0065727234, -0.71191406, -0.5859375, -1.6689453, 1.7773438, 0.32788086, -1.0400391, 1.6484375, -1.4873047, 0.25634766, -1.6767578, -0.18615723, 2.9667969, 0.61035156, 1.6171875, -0.23156738, -0.6850586, 1.6972656, 0.3227539, 0.24475098, -2.3554688, -0.85302734, 2.8945312, -2.1054688, -0.9892578, 1.3759766, 0.6777344, -3.0566406, -1.1943359, 1.3710938, -0.2565918, 2.359375, 1.4169922, 0.5048828, -0.22937012, -0.6425781, 0.019424438, 0.80859375, 0.06604004, 1.25, -0.24536133, 0.36279297, -2.2871094, 0.91552734, 0.79345703, 1.5371094, 2.484375, 1.3476562, 1.2753906, -1.0546875, -0.23449707, 0.06390381, 1.5966797, 0.8144531, 3.7890625, -0.25756836, 0.017547607, -0.61279297, -1.0136719, 1.0498047, -1.4570312, 0.37524414, 0.86376953, 1.1376953, -0.49047852, -0.07659912, -2.0957031, -0.13427734, -1.09375, 2.9433594, -0.28515625, -0.69921875, 1.1650391, -1.7597656, 0.31958008, -1.515625, 1.1220703, -0.89208984, 1.1201172, 0.88134766, 0.5307617, -2.3632812, -0.9560547, -1.0527344, -0.86621094, 0.6611328, 3.296875, -0.30029297, -1.8164062, 2.0175781, 0.2836914, -0.1015625, 2.7070312, 0.57373047, -0.25, -1.1728516, 0.69921875, -0.5859375, -1.6064453, 1.3994141, 0.52734375, -1.6484375, 1.671875, -2.078125, -0.33691406, 1.2539062, -2.0683594, 0.25952148, 1.2958984, -0.39257812, 1.1914062, -1.7451172, 3.2988281, 0.04598999, -0.96728516, 2.7851562, -2.5429688, -0.4880371, -1.7304688, -2.4804688, 2.3945312, -1.6660156, 0.052947998, 3.7949219, 1.4121094, 1.6767578, 1.0703125, 0.6513672, -2.1113281, -1.5634766, -0.5854492, 0.081970215, -2.6660156, -1.2431641, 0.038330078, 0.30151367, -2.0039062, -0.9824219, 0.022705078, -1.0371094, -0.609375, 0.05154419, -2.3027344, 0.29370117, -0.6171875, 0.72216797, -0.054626465, -1.0292969, -0.29736328, -2.2128906, -0.77197266, -3.0722656, 2.0097656, 1.5039062, -0.9291992, -0.6064453, 4.3515625, 1.8769531, -1.6318359, 0.28466797, 1.6767578, 0.053985596, -0.2770996, -2.53125, -1.8574219, 0.35424805, 0.9941406, -0.36816406, -1.3876953, -0.6723633, -1.0136719, 1.0224609, 2.4277344, 2.3027344, 1.2304688, 1.4599609, -2.2167969, 1.4101562, -1.3916016, -2.3164062, -0.120666504, -1.7099609, -0.22216797, -0.6035156, -0.03543091, -1.8408203, 1.3085938, -0.32006836, -1.1357422, -2.6523438, 2.1445312, 0.9116211, 1.0332031, 1.6445312, -0.5097656, -0.7109375, 1.6855469, 1.5380859, -0.095336914, 1.53125, 0.12609863, 1.1689453, 1.1923828, 1.5244141, -1.5888672, -1.7900391, 2.0898438, -0.5151367, 0.18847656, 0.07446289, 0.34399414, -2.4960938, -0.77197266, -0.80615234, 0.27294922, 1.8017578, -2.4296875, 1.2119141, 0.8017578, 0.44555664, -2.171875, 0.7446289, 1.4863281, 2.5859375, -0.12237549, 1.5380859, 0.34423828, 0.23596191, 1.6113281, -0.021652222, 1.5751953, -0.7788086, 0.5566406, 0.78466797, 0.2442627, -1.7753906, -0.57666016, 2.5449219, 1.9326172, 0.3737793, 2.6777344, -0.41186523, -0.1427002, 1.4033203, -0.44506836, -2.28125, -0.3227539, -0.5722656, -0.031097412, 0.7089844, -0.7363281, -1.4980469, -0.30322266, 2.2109375, -0.2775879, -0.4897461, 1.7158203, -1.2578125, 0.46435547, -3.0703125, -0.060638428, -0.61279297, -0.45581055, 0.86376953, -2.0878906, 0.31079102, -1.3515625, 1.4589844, 1.3349609, 0.25341797, 0.59472656, 1.4423828, -0.8696289, 3.0546875, 0.46972656, -0.49731445, -3.1054688, 1.8740234, 1.1328125, 0.84033203, 1.1445312, 0.88134766, -0.12121582, -1.3642578, -1.390625, -0.96972656, -0.29052734, -2.1816406, 0.17980957, 1.2724609, -0.3527832, 0.8203125, -0.044128418, -0.2286377, -0.35180664, 1.8496094, -0.27783203, 1.1113281, -1.1894531, 0.4086914, -2.2929688, -4.9804688, -1.1357422, 0.6816406, 0.48608398, -1.1269531, 0.3178711, -2.59375, -0.0051651, 0.52685547, 0.66259766, -2.6386719, 0.21154785, -0.92041016, -0.38378906, -0.72802734, -0.43896484, -0.20910645, 1.5292969, 1.2919922, -0.53271484, 0.39746094, -1.5498047, -1.1230469, 0.12768555, 0.6459961, -0.07635498, 0.072387695, -1.5703125, -2.7734375, 1.8974609, -0.35253906, -2.8652344, 1.0761719, -1.5048828, -0.9707031, 1.1875, 0.06695557, 0.8828125, 1.2226562, -1.0068359, 1.9228516, -0.5004883, -0.5048828, -1.4990234, 1.1660156, 0.07110596, 1.484375, -0.4284668, -2.3476562, 2.0703125, -0.57910156, 1.5537109, 1.0263672, -1.2978516, -0.97021484, -1.7304688, -1.3535156, 0.25390625, -1.5761719, 0.032806396, 1.1230469, 1.4267578, 0.62109375, 1.4833984, 0.23425293, -0.46875, -0.6923828, 0.2697754, 1.3017578, -1.5957031, 3.15625, -0.06915283, 1.0820312, -2.1699219, 0.008804321, 1.9863281, 0.06774902, 1.1240234, -0.08343506, 1.3427734, 0.28222656, 1.0732422, -1.4033203, 1.6777344, 2.9511719, 2.0136719, -0.64990234, 2.2167969, 1.8261719, 0.43701172, 0.33007812, 0.95751953, -0.52441406, -0.7636719, 2.3417969, -0.7109375, -1.0419922, 0.35083008, -0.3017578, 1.6308594, 0.6152344, -0.24255371, 1.0380859, -1.1855469, -1.1113281, -1.6259766, -1.1289062, -2.3359375, 2.0410156, 1.890625, -1.6230469, -0.35009766, 2.8457031, -1.1962891, 0.11584473, 2.8730469, 1.6464844, -2.2519531, -0.20214844, -0.33129883, -0.6220703, 0.6376953, -1.90625, 0.7734375, 2.5390625, 1.0390625, 0.44384766, 2.5332031, 0.1550293, 2.6308594, 0.8730469, 0.8569336, 1.640625, 0.5703125, 1.2900391, 1.3964844, -0.7050781, 1.0605469, 0.011199951, 0.31274414, 2.1347656, 1.5878906, 0.10491943, -1.5039062, 1.9179688, -0.3540039, -0.67041016, -0.9189453, 1.0966797, 1.1650391, -3.8125, 0.77783203, 0.9707031, -0.22692871, -2.7070312, 0.34545898, -0.044769287, -1.2636719, 0.09259033, 0.08306885, 0.6894531, -1.2519531, -0.5786133, -0.84228516, 0.14343262, 2.3203125, -1.5214844, 0.93066406, -0.5991211, -1.4248047, -0.59375, -0.11566162, -0.3972168, 1.1611328, 0.9370117, 2.0273438, 1.0703125, -2.109375, 1.2080078, -2.8242188, 0.8955078, -0.87402344, 4.8046875, 0.7998047, -0.87402344, 1.453125, -1.3808594, -2.3652344, -4.71875, 1.2519531, 0.51123047, 0.66015625, -0.010017395, -3.9980469, 2.0136719, 1.0673828, 0.9169922, -3.8339844, 1.2626953, -0.2722168, -1.6269531, -0.65185547, 2.4921875, -0.34375, 2.7851562, 0.9082031, -1.3505859, 1.3105469, 1.5107422, 0.19042969, -1.1923828, -1.5664062, 1.7285156, -0.45581055, -0.5761719, 1.2773438, 0.9902344, -0.765625, -0.47265625, 1.3496094, 1.7939453, 1.1464844, 0.5834961, -0.57177734, 1.703125, -0.8388672, -0.23461914, 0.8442383, -1.1875, -0.52685547, -1.5576172, -0.081848145, -1.265625, -1.9101562, 0.78564453, -0.053710938, -3.0390625, -0.34985352, 1.2119141, 0.12585449, 0.5776367, 1.3173828, 0.097839355, 0.4970703, -2.0507812, 0.51708984, -2.2949219, -1.0878906, -0.05215454, -0.74365234, -0.64404297, -1.0068359, 0.8286133, -0.93115234, -0.19421387, 1.0546875, 0.98535156, -0.9770508, -0.70654297, 0.1854248, -1.0888672, 0.4597168, 2.4511719, -1.8964844, 0.6035156, -0.33496094, -2.2421875, 0.1586914, -1.8496094, -0.61328125, 0.32861328, 1.6259766, 1.8457031, 1.7226562, -1.6035156, -1.6650391, 0.20471191, -3.4785156, 1.3759766, -0.5810547, -0.54248047, 0.07946777, 2.3808594, 2.5332031, 0.2241211, 0.54785156, -0.86035156, 0.040161133, 0.16833496, -1.0791016, -0.0076789856, 1.2539062, -0.4453125, 0.62890625, 1.3935547, 3.8339844, -0.05343628, 0.5600586, 0.17211914, -0.27392578, -1.421875, 1.1435547, -1.7421875, -0.74121094, 1.8505859, -0.6748047, 1.8710938, 1.9707031, -0.19812012, -2.5507812, -1.6923828]}, "B007HG7SM8": {"id": "B007HG7SM8", "original": "Brand: Camco\nName: Camco 59843 20\" Pigtail Propane Hose Connectors - Acme x 1/4\" Male NPT\nDescription: \nFeatures: Connect your camper's 1/4\" NPT inlet regulator to a 20lb or 30lb LP tank\nRated for 200,000 BTUs per hour\nBuilt-in excess flow and thermal protection\n20\" hose\nACME nut x 1/4\" male NPT\n", "embedding": [-0.8676758, 0.97802734, 0.45654297, 1.0390625, 0.4477539, -2.8691406, 0.921875, -0.66503906, 1.2753906, 1.6308594, 2.6308594, 0.30517578, 1.6240234, -1.9423828, 0.4111328, -0.41259766, 0.20019531, -0.9394531, 1.4023438, -0.63134766, 1.6679688, -1.7734375, 1.4179688, -0.9770508, 0.56933594, -0.19494629, 2.7128906, -1.6845703, -0.8564453, 1.5136719, 0.38476562, 0.9433594, -0.2043457, 0.5463867, 0.5317383, 1.4365234, -0.13720703, -0.6816406, -3.3144531, -0.27734375, -3.3457031, 1.0957031, 2.53125, 0.0011205673, -1.7109375, -0.10803223, 2.2167969, 0.9785156, 1.3564453, -1.2080078, -0.29345703, 0.3022461, -0.875, 0.97509766, -0.13586426, -1.3125, -0.25805664, -1.1259766, -0.31225586, 1.9550781, 1.0009766, 0.9145508, -2.0683594, 1.5791016, -2.3671875, 2.5292969, -0.3154297, -0.8183594, 1.1337891, 1.9658203, 0.7207031, 2.609375, -1.0664062, -1.9277344, -1.5498047, 1.9091797, -4.3046875, -0.11407471, 2.1171875, -0.06793213, -1.3535156, 1.3251953, 0.045532227, -1.5488281, -0.20874023, -1.0087891, -1.6054688, 1.1416016, -0.045318604, 1.1816406, -2.3320312, 2.6582031, -3.0898438, -2.0371094, -0.06237793, 2.3125, -0.77441406, 0.17041016, 3.3144531, 0.40649414, -1.4414062, -1.5322266, -0.22595215, 2.4355469, -3.2265625, -0.94140625, 0.31103516, -0.97314453, -3.5898438, 0.703125, -1.4453125, 0.6098633, 3.1679688, -1.6103516, -0.5991211, -2.6542969, 0.12573242, -3.1855469, 1.2001953, -0.28027344, 4.2109375, 0.7036133, 1.1503906, -0.46850586, 2.3671875, 0.9326172, -1.0009766, 0.12792969, 0.29223633, 1.4160156, 0.14733887, -1.2109375, 1.6191406, 1.0927734, 1.6572266, -2.5195312, -0.32910156, -2.7324219, 0.10461426, -0.13903809, -4.0976562, 0.097473145, 1.2421875, 0.54785156, -5.0390625, 0.66064453, -2.0546875, 1.8896484, 0.7631836, -1.5322266, 0.5600586, -3.3300781, -0.94140625, -1.2871094, 1.375, 2.6171875, 0.25463867, -1.5947266, 0.6791992, 0.68115234, -0.33935547, 0.22375488, -1.4775391, 1.9921875, -0.6191406, -2.4941406, -0.08728027, -1.3466797, -0.796875, 1.9882812, -0.50439453, -3.4746094, 2.1933594, -0.9980469, -2.0292969, -0.98291016, 3.4882812, 1.9257812, 2.8222656, 1.9628906, -3.421875, -0.86376953, -1.2724609, -1.8291016, 0.6660156, -0.80615234, -2.0917969, -1.0966797, 3.0917969, -0.04776001, -0.3540039, 0.4399414, -0.8183594, 0.50439453, -0.7861328, -1.9677734, -2.0546875, -0.29541016, 1.5683594, 1.234375, -0.7788086, 0.3293457, 0.87060547, 1.4316406, -1.5712891, -0.85498047, 1.2050781, 1.1240234, 1.2285156, 3.1523438, -0.20690918, -0.20935059, 2.28125, -1.4453125, -1.7578125, -1.4101562, -0.28198242, 2.6347656, 1.2236328, 0.75439453, 1.1074219, 0.61572266, 2.4160156, -1.5078125, 0.78515625, -0.08734131, -1.0917969, 1.8173828, 0.4260254, -1.4863281, 1.8847656, 2.5097656, -1.4521484, -2.0488281, 0.14855957, 1.8554688, 1.1533203, -1.1748047, 1.5009766, 0.52246094, -0.3010254, -1.171875, -0.6635742, -3.2578125, 2.1640625, 0.42041016, -2.5097656, 0.17736816, 2.75, 0.49438477, 1.0166016, -0.1060791, -2.1210938, -0.62402344, -2.4238281, 0.2944336, -0.07446289, 1.71875, 0.70947266, -2.9375, 1.8837891, 0.99121094, -0.9663086, 1.5058594, 1.8300781, 1.4140625, 0.9121094, -2.6679688, 0.42749023, 1.875, -2.5644531, 2.9492188, 1.0703125, -2.6875, -0.043426514, 0.8100586, -1.2910156, 1.9560547, -0.8100586, 0.6386719, 1.0634766, 0.0546875, 1.2011719, -2.1230469, 2.5507812, 0.39697266, 1.3710938, -0.056488037, -2.6152344, 2.8691406, 2.1269531, -0.0063934326, -1.2861328, 1.7275391, 2.2382812, 2.0625, 2.1933594, 1.0410156, 0.16394043, -1.0273438, -2.0078125, 2.1171875, -1.2431641, -0.1307373, 2.1582031, 0.34057617, -0.6464844, -1.9453125, 3.6425781, 0.8154297, -1.1240234, -1.5859375, -2.9277344, 0.21240234, -1.3759766, -0.8569336, 0.69140625, -0.8208008, -0.8125, 1.5488281, 0.30419922, -0.0063171387, 2.140625, -2.2265625, 1.9902344, 0.67333984, -1.6523438, 0.80078125, 1.9853516, 1.9609375, 1.4628906, -2.0371094, 1.3085938, -0.66796875, 0.5527344, -0.3708496, -0.23999023, -2.171875, 2.21875, -0.45532227, -1.9775391, -1.4277344, 0.8544922, 4.6015625, 1.21875, 0.19689941, -0.67822266, 2.75, 0.2680664, -0.8066406, 0.20922852, 2.4042969, -1.1621094, -3.5390625, 0.6074219, -1.109375, -0.43041992, 2.7597656, -0.79052734, 1.3945312, 1.7050781, 1.2109375, 0.96435547, 0.064086914, -1.7138672, -2.1191406, 1.1162109, -2.3925781, -0.30078125, -0.16369629, 1.1298828, -0.60546875, 0.6308594, -2.2519531, -1.4316406, 1.1240234, -1.8886719, 2.5566406, 0.9458008, 1.3242188, 0.19104004, -2.3769531, 0.60009766, -1.3583984, -2.6523438, 0.5678711, -0.0914917, -1.2753906, -1.0078125, -3.4042969, 0.94189453, 1.0361328, 0.6123047, -0.69873047, -1.9345703, -0.029251099, -1.4228516, 1.2685547, -0.044677734, 0.8251953, 2.5878906, -1.1152344, -1.8173828, 1.3242188, 0.8911133, -0.140625, -1.8486328, 0.025436401, -0.62646484, -0.53808594, -0.8256836, 0.6923828, 0.2277832, 1.0371094, -1.1630859, -3.7167969, 0.17407227, 4.0976562, 0.8876953, -0.06161499, -0.5097656, -1.2929688, -4.0742188, -0.49291992, 1.8603516, 3.5703125, 2.2421875, 0.5883789, 2.3164062, 0.47680664, 0.64990234, 0.037994385, -0.7060547, -0.41503906, 3.2402344, -2.9140625, -1.4804688, -0.9326172, 2.5195312, -4.8046875, 1.0107422, -0.06518555, -0.47875977, 1.8261719, 1.2373047, -0.33935547, -0.6230469, 1.0839844, 1.8349609, -0.6425781, -0.29370117, -0.34936523, 2.1621094, 0.012542725, 0.96191406, 1.2060547, 0.6801758, 1.2265625, -1.0009766, -0.25878906, 0.10882568, -0.5595703, 0.74560547, 0.04852295, -1.0644531, 1.3251953, 0.30493164, 0.796875, 1.7041016, 1.1835938, -0.5854492, 0.9375, -2.2480469, 0.02859497, 0.054595947, 2.2070312, -0.8432617, 1.5615234, -0.09173584, 0.1381836, 0.33569336, -0.44555664, 0.2841797, 2.0957031, 1.5039062, -1.0888672, -0.21728516, -0.107055664, 3.5507812, -0.012207031, 0.6010742, -0.66308594, -0.9277344, -1.0390625, -2.0917969, -1.0986328, -2.6308594, -0.26782227, 3.6992188, 2.1953125, -1.6621094, -0.9692383, 0.65234375, 1.6884766, 1.4970703, -1.6875, -0.8857422, -2.5605469, -0.38476562, 0.058410645, -1.0898438, 1.4941406, 0.39208984, -1.4960938, -0.46118164, -0.06536865, 0.3317871, 1.2998047, 0.70996094, -1.4824219, 0.23876953, -1.9208984, 1.3945312, 0.0836792, 1.5078125, 0.69628906, 1.5898438, 0.46166992, -2.0332031, -1.0878906, 0.32128906, -3.3398438, -0.15783691, -0.87353516, 0.073913574, 2.2070312, 0.5083008, 0.029525757, 2.1445312, 1.2802734, -3.3417969, -1.75, -2.0371094, 1.71875, -3.1679688, 0.73876953, 0.6855469, 1.2607422, -0.5727539, -1.1064453, 0.025131226, -1.5742188, -0.5854492, -2.21875, -1.4873047, -0.1685791, -0.57470703, 1.4873047, -1.2685547, -0.52441406, 1.1962891, -0.46679688, -0.50390625, -3.6347656, -0.20654297, -0.73583984, 1.0908203, 0.11883545, 2.9394531, 2.0703125, -1.8662109, -0.03012085, -0.40185547, 1.1523438, -0.87890625, -3.1074219, -1.2910156, -0.53271484, 0.12310791, -0.9838867, -0.64990234, -1.1259766, 0.12182617, -0.119506836, -0.5019531, 1.6533203, 2.2148438, -3.0292969, -1.2109375, 0.5595703, 0.6074219, -0.5498047, 1.1308594, -1.1201172, -0.4128418, -2.03125, -0.43969727, -1.3076172, -0.110961914, 1.8388672, 1.0644531, -2.1582031, -0.7036133, -0.72021484, 0.9736328, 0.19458008, 0.70947266, -1.5166016, -0.64453125, 1.2109375, 0.7192383, -2.0117188, -0.9316406, -0.05987549, -0.0013475418, 0.2836914, 0.48999023, 0.20300293, -0.061340332, -2.2773438, -1.2939453, -0.06427002, 1.7734375, -0.2434082, -1.7490234, 0.65625, -2.6523438, 3.5605469, -1.1708984, 1.2060547, -0.3088379, -0.4333496, -1.2978516, 1.7060547, 2.6894531, 2.0722656, -0.36938477, -0.6713867, 1.9091797, 1.3183594, 1.7421875, 0.67822266, -0.06222534, -2.3769531, -3.2402344, -0.40527344, 2.2539062, -0.6611328, -0.50634766, 1.1679688, -0.46875, 1.90625, 2.2285156, 3.0253906, -0.13208008, 0.28466797, 1.8222656, 0.03552246, -2.2792969, 1.1435547, -0.038085938, 2.6367188, -1.0761719, -2.6191406, 1.9873047, 2.40625, 0.6323242, 1.8476562, 0.8935547, 1.7988281, -3.1425781, -2.8515625, -1.6396484, -0.13562012, 1.0302734, 0.34521484, -1.9287109, 1.7822266, 1.5947266, 1.5996094, 2.9492188, 0.2244873, -0.33398438, -0.9423828, -0.5761719, -2.9550781, -1.8066406, -1.7314453, -3.4570312, -0.9355469, -0.55615234, 1.5302734, -0.001364708, -0.625, 0.41992188, -0.8149414, -0.43286133, -0.5283203, 0.021774292, -0.89746094, -0.6816406, 2.0664062, 2.1640625, 0.7861328, -0.7368164, -0.5751953, 0.3305664, 1.5390625, 2.7402344, -1.2910156, 0.0715332, -0.63916016, -1.1982422, -4.3359375, -0.20324707, 1.4902344, 0.7402344, 0.57470703, -2.1972656, -0.7895508, 1.3671875, -2.0683594, -1.4716797, -2.0097656, 0.21447754, -1.6386719, -0.08850098, 1.2783203, -0.41259766, -0.6376953, -0.40429688, -2.0957031, -0.11932373, -0.41723633, -2.6484375, -3.484375, 3.0722656, -0.35961914, -1.5712891, 0.9111328, -0.21142578, -0.010314941, 0.9951172, 1.1445312, -0.9658203, 1.0527344, -1.8984375, 0.83447266, 1.7109375, -0.4165039, 2.5, 2.1542969, -0.5205078, 0.7001953, 3.1054688, 2.2910156, -2.0507812, 0.28564453, 0.7001953, -1.3710938, 0.24951172, 0.703125, 1.1445312, 0.33251953, 3.3671875, 3.0878906, -0.35009766, -1.8974609, -1.5507812, -1.0078125, 0.4638672, -2.5234375, -0.7319336, 1.0927734, 2.609375, 1.7851562, -0.5913086, 1.4365234, -0.82421875, 1.2490234, -2.5820312, 0.040740967, -2.9003906, 1.3291016, 0.7402344, -2.5996094, -2.9199219, 0.43066406, 3.9921875, 0.62646484, 0.4309082, 0.49365234, 0.8432617, -1.5039062, -0.33740234, -0.5048828, -0.1784668, 0.34350586, 2.1484375, -1.2705078, -0.4194336, 2.7753906, -0.8149414, -0.87060547, 0.13354492, -0.32958984, -0.74072266, -0.1430664, 3.515625, -1.0966797, 1.2314453, 0.7451172, 0.40307617, -3.5058594, -0.13964844, -0.4086914, -3.1679688, 1.6210938, 1.2529297, -2.0996094, -2.2929688, 4.578125, -0.8544922, 0.3244629, 1.2099609, 1.2480469, 0.35131836, -1.9882812, 1.0644531, 0.21435547, 0.14990234, -0.22924805, -2.3808594, -0.113464355, 1.1103516, -2.0996094, 1.0322266, -0.8066406, 1.1396484, -0.21704102, -0.0025691986, 0.8618164, 1.2910156, 2.9921875, 4.5976562, 3.5996094, -1.0097656, 1.3173828, 1.3789062, 2.4003906, 1.7578125, -2.1191406, 0.5131836, 0.9448242, -0.049926758, 1.1259766, -1.1533203, 0.5878906, -0.1472168, -0.1459961, -1.3779297, 1.0273438, 0.36791992, -4.65625, -3.1054688, -0.72021484, -0.3310547, -1.6962891, 1.6923828, -1.7763672, 0.51123047, -0.6064453, -2.1308594, 1.7939453, 0.9086914, -3.2207031, 1.6201172, 0.28735352, 0.88916016, 0.41308594, -1.8359375, -3.8867188, -1.7001953, -0.34692383, 0.9824219, 0.3552246, -0.54541016, 1.4228516, 0.3486328, 0.35839844, 1.8212891, -0.34570312, -0.765625, 2.8808594, -0.59765625, 2.2695312, 0.3515625, -0.7841797, 2.3632812, 1.0751953, -0.6010742, -3.5351562, -0.13635254, -0.7548828, -1.6416016, -0.18188477, -2.9003906, 2.5449219, -1.7802734, 1.0830078, -1.2373047, -0.3947754, 0.19128418, -2.4980469, 0.78759766, -0.43188477, -0.5083008, 3.484375, 0.68310547, -0.1920166, -1.4658203, 1.4208984, 2.7792969, 0.44091797, -2.0097656, -0.60791016, -0.86816406, -0.90771484, 2.8242188, -0.17028809, -0.4387207, 1.0917969, 1.7070312, 1.4648438, 0.43310547, -0.94433594, -1.4824219, 2.4296875, 0.7519531, -0.7480469, -1.0283203, -2.2988281, -0.27026367, 0.8623047, -0.10070801, 0.004951477, -0.61621094, -0.1418457, 1.0146484, -1.7509766, -0.34838867, -0.27661133, -0.97509766, 2.0214844, 0.92041016, -2.40625, -1.6611328, 0.7626953, 1.0009766, -1.1035156, 1.2822266, 0.22937012, 1.1279297, -0.9458008, -1.7939453, -0.08544922, -0.7441406, -1.4941406, -0.92041016, 0.16369629, 0.9902344, -1.6787109, -1.9648438, -2.3457031, 1.8115234, 0.5864258, -0.69384766, 0.49780273, -0.5385742, 0.12731934, -0.84375, -1.2226562, -0.19677734, 0.40405273, 0.94140625, -0.4892578, 2.4316406, 0.005001068, -0.94921875, -1.9023438, -3.5507812, 2.4785156, 2.0996094, -1.1816406, 2.3671875, 1.8740234, 1.0546875, -1.1464844, 0.9951172, -0.9941406, 0.47973633, 0.47583008, -2.6875, 0.7993164, -0.33666992, -1.0126953, -0.07470703, 3.5, 1.7509766, -0.9506836, 1.4902344, 0.9501953, -1.7236328, 0.3178711, -1.6416016, -0.6196289, -2.28125, 0.23217773, 2.5078125, 4.1484375, -0.7167969, -1.8916016, -2.5898438, 1.3798828]}, "B00NCSUZDE": {"id": "B00NCSUZDE", "original": "Brand: Magma\nName: Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 12\"x18\" main grilling area 5-1/2\"x18\" secondary grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "embedding": [-0.9111328, -0.19494629, 2.5800781, 1.0009766, -0.6035156, 2.2207031, -0.6489258, -1.7802734, 0.5830078, 1.9257812, -0.17236328, 0.7236328, -1.1132812, -1.0009766, 1.6552734, 1.4130859, 2.7636719, 1.4619141, 0.2286377, -1.9433594, 1.8476562, 1.0664062, -0.21240234, 0.13378906, 3.09375, 0.9794922, 3.2929688, -2.3300781, 0.7167969, -1.4873047, 1.5546875, 1.1904297, -0.8286133, 1.3193359, -1.4355469, -0.5283203, -0.32006836, 1.3134766, -1.3457031, 1.0986328, -0.53271484, 0.61865234, 2.5039062, -0.27075195, -3.8027344, -1.1572266, 0.8051758, 1.0605469, -1.9023438, -2.3535156, 1.5673828, 0.40649414, -1.6572266, 0.61279297, -0.6699219, 2.0683594, 1.0791016, -1.2089844, 0.9604492, 0.99853516, -0.048309326, -0.0970459, -1.4746094, -0.20495605, -2.1074219, -0.14343262, 0.6879883, -0.38745117, -0.03274536, -1.140625, 2.8632812, 0.15905762, -1.3671875, 0.6455078, -0.71240234, -0.27563477, -2.8027344, 1.8964844, -0.19567871, -1.5302734, -2.59375, 2.9101562, 0.020812988, -0.7944336, 1.1152344, 0.60302734, -1.8378906, 0.54296875, 1.3339844, -0.015022278, -0.04940796, 1.1806641, -1.0097656, -4.4375, 2.0546875, -1.6591797, 0.53271484, 1.4316406, -1.5615234, 1.1113281, -1.9091797, -0.08703613, -1.6835938, -0.73291016, -2.4296875, -0.21557617, 1.5332031, 0.5131836, -2.6015625, -1.0449219, -1.8935547, -1.8994141, -1.4980469, 1.7480469, 2.7539062, 0.24902344, 2.0390625, 0.008644104, -0.59228516, 2.0273438, 2.3984375, 1.6953125, -0.7182617, -0.48828125, -0.8515625, -0.10455322, 0.3737793, 1.6542969, 4.3007812, -2.5234375, -1.1064453, 0.50683594, 2.5292969, -0.16748047, -1.5058594, -4.1679688, -1.9482422, -2.8125, -3.4746094, 0.85546875, -1.7246094, 0.7402344, 1.6679688, 0.44213867, -3.5566406, -0.016220093, -0.8442383, 1.6728516, -1.2460938, -0.6645508, 0.28515625, -1.2617188, 0.14355469, -0.8046875, 1.6777344, -1.3740234, -0.2512207, -2.859375, 1.7636719, 0.6064453, 1.5947266, -1.265625, -0.6171875, -0.13293457, -0.5888672, -0.03274536, -2.0527344, 2.0527344, 0.6386719, 1.2714844, -0.53222656, -1.4013672, 0.86083984, -0.18981934, -0.21899414, -0.75439453, -0.8388672, 0.69873047, 1.3388672, -0.1394043, -2.1660156, -2.1660156, 0.054992676, 0.99902344, 1.6875, 0.90722656, -0.9663086, 0.9267578, 0.21459961, 0.43798828, 2.5097656, 0.53515625, -1.1816406, 1.6962891, 0.049926758, -1.8144531, -3.0917969, 0.45092773, 1.4990234, -1.1464844, 0.2524414, 1.4199219, -1.3154297, 1.3085938, -1.7216797, -3.3300781, -0.8720703, -0.95654297, 0.22070312, 1.8037109, 3.6328125, -0.9082031, 1.1230469, -1.9414062, 0.006088257, -2.5605469, -0.6176758, -0.5366211, 1.8769531, 1.6132812, 0.023330688, 0.15686035, -0.19482422, 1.7402344, 0.8959961, 1.9482422, -0.38964844, 1.0615234, -2.109375, -0.8701172, 2.9179688, 0.16809082, -1.2177734, -0.3330078, 1.5273438, 1.8818359, 0.36499023, -1.1123047, -1.0302734, -2.6445312, -1.1787109, -0.19641113, -2.7851562, -0.86816406, 0.042266846, -0.5175781, -0.8984375, 1.1914062, 2.2597656, 1.2431641, 0.44921875, 2.1699219, -0.40478516, 0.6411133, 0.7739258, 1.8896484, -0.9692383, 0.8027344, -0.66552734, -1.9609375, 0.7128906, 1.1542969, -0.62939453, 0.640625, 0.5029297, -1.2558594, 2.5058594, 0.6816406, -1.1103516, -1.1992188, 0.73828125, 0.49926758, 2.7597656, 0.011360168, 1.7880859, 3.0878906, 0.53759766, 1.1279297, 1.0458984, 1.2802734, 0.18334961, -0.7519531, 1.4912109, -2.7695312, 1.1289062, 0.10241699, 1.4404297, -1.8007812, -1.0527344, 0.18762207, 2.9316406, 0.4543457, -2.5507812, 5.5390625, 0.55029297, -0.45996094, 1.3349609, -0.68066406, -0.60058594, -0.2199707, 2.0019531, 1.5869141, -0.85058594, 1.9101562, -1.2041016, -1.4902344, 0.3942871, -0.88671875, -0.5161133, 1.7167969, 0.20031738, -1.1533203, -0.69433594, 0.453125, -1.1933594, -0.9921875, 2.1328125, -1.2910156, 1.1269531, 0.51464844, 2.2851562, 0.3071289, -1.1630859, -1.7685547, 0.029525757, 1.9326172, -0.5703125, 0.9897461, -0.34228516, 0.6894531, -0.9975586, 0.5996094, 1.4951172, -1.5380859, 0.062438965, -0.7685547, -0.98291016, -1.5996094, 1.4453125, -1.2353516, -0.0524292, 1.0224609, -0.25073242, 0.086364746, -1.4287109, -3.0273438, -2.5175781, 0.2878418, 1.0810547, -0.84375, 0.859375, -0.21350098, 0.5473633, -5.1953125, -1.1289062, 0.1763916, -1.8408203, 2.5898438, -2.4238281, 0.86083984, 1.1132812, 0.76123047, 0.5395508, -0.35351562, 0.5644531, 1.2626953, -0.070007324, -2.1738281, 1.3173828, -3.9882812, 0.74902344, -1.9589844, 0.66015625, -3.1484375, -1.6904297, 0.10888672, -0.94091797, 5.9296875, -1.6875, 1.3066406, -0.6855469, 0.28759766, 1.3046875, -2.5507812, -0.67529297, -1.0996094, 0.6196289, -0.875, -2.8105469, -2.7382812, -0.78125, 0.24780273, 0.9770508, 0.13720703, 0.3059082, -1.6679688, 2.6328125, -1.2060547, -1.3808594, 1.0205078, 0.99609375, 0.008666992, -0.66015625, 0.15368652, -1.5136719, -1.5488281, -0.117126465, -0.27978516, 2.2304688, -0.7993164, 1.0644531, 1.4785156, 0.70996094, 0.36108398, -0.68066406, -3.1582031, 0.8417969, -0.044555664, -1.5449219, 1.3720703, 0.014457703, -1.0722656, -1.40625, -1.7441406, 2.2460938, 1.3183594, 2.3496094, 0.78466797, 1.4824219, 0.7739258, 1.0507812, 1.1269531, 1.6748047, -0.30419922, 3.6640625, -0.9082031, -2.109375, -0.08355713, 3.0585938, -3.8984375, -2.4121094, 0.98291016, -0.34692383, 4.2226562, -0.30078125, 1.4804688, 0.671875, -0.6123047, 2.78125, -1.234375, -0.17871094, 0.02142334, -1.0458984, -0.30639648, 1.4335938, 0.4104004, 0.21936035, -0.6923828, 1.9042969, -0.42797852, 0.17407227, -0.44189453, 0.09674072, -0.29907227, -0.11401367, -1.7089844, 2.4335938, 0.61328125, 0.7182617, -0.13989258, -0.2854004, -0.39794922, -0.6347656, -1.3261719, 1.0263672, 0.6357422, 0.24609375, 0.09954834, 1.1152344, 1.5449219, -0.6904297, 0.20007324, -3.1035156, 0.9560547, 1.359375, -1.3808594, -2.3320312, -3.1230469, 3.6640625, -0.9057617, 0.09173584, -1.1953125, 1.8945312, -0.5390625, -2.0507812, 0.89941406, 0.54345703, -1.0732422, 0.5288086, -0.12988281, -1.7802734, 2.2558594, -1.7802734, 0.93652344, 1.1298828, 0.46264648, 0.86572266, -1.8945312, 1.6523438, 0.22546387, 0.39208984, 1.1123047, -1.5380859, -1.3359375, 0.36547852, -2.2109375, -0.07128906, -0.33911133, 0.34936523, -1.5058594, 2.5761719, -0.30786133, 0.80810547, -1.4208984, 4.1132812, 1.8564453, -1.4902344, 1.3974609, -3.3671875, -2.3183594, -3.6757812, -3.2089844, 0.17895508, -1.7841797, -1.3642578, 4.5976562, 0.56103516, -0.39038086, 1.3027344, -0.2565918, -3.1289062, -3.1171875, 1.1210938, 0.46411133, -0.4873047, -2.3007812, 2.3828125, 0.46191406, -3.8925781, -1.6416016, 0.60302734, -1.4023438, 1.2382812, 1.2558594, -1.4570312, -0.8232422, -1.3652344, 0.24682617, -0.7163086, -0.5703125, 1.4013672, -0.6748047, 0.005027771, -2.1367188, -0.41870117, 0.86816406, -2.1015625, 0.7939453, 1.7197266, -0.72802734, -0.076538086, -0.24291992, -0.31176758, 1.3984375, 0.49145508, -1.3076172, -2.953125, 0.8017578, 1.1552734, -1.0068359, 1.6796875, 1.0585938, -1.5419922, 0.47558594, 0.70947266, 2.1054688, 1.8554688, -1.0117188, -3.1484375, -0.78125, -0.13000488, -3.0800781, 0.9082031, 1.2128906, 0.5332031, -0.14538574, -0.32617188, 0.58203125, 1.4150391, -0.7270508, -0.4284668, -3.2734375, -0.6738281, -0.37426758, 0.60791016, 2.3300781, -0.95214844, -0.62890625, -0.8183594, -1.4169922, -0.24804688, 0.1459961, 0.08581543, 0.8066406, -1.1162109, 0.52490234, -1.7402344, 0.02545166, 2.3671875, -2.5097656, 0.54833984, -1.4775391, -1.0458984, -2.2050781, -1.4091797, 1.4345703, 1.4169922, 2.8105469, -1.171875, -0.7915039, -2.0605469, 0.54541016, -0.0012283325, 1.8867188, -0.23608398, 1.1816406, 1.5136719, 0.76123047, 1.6230469, 0.09741211, 0.7578125, 0.18591309, 1.4296875, 0.06365967, 0.20227051, 1.1826172, -3.1269531, -1.4238281, -2.3242188, 1.2539062, 3.1074219, 0.09637451, 2.4082031, 0.97265625, -2.2949219, 3.1835938, -0.5673828, -1.4697266, 1.2314453, -1.9384766, -0.48779297, 1.015625, 0.18823242, -2.7832031, -0.57714844, 1.4033203, -1.9902344, 1.2646484, 1.4570312, -1.1210938, -1.1513672, -1.8730469, -0.8852539, -1.4052734, -1.5742188, -1.1240234, -1.0742188, 0.2631836, -0.36938477, 0.5800781, 3.6660156, -1.4570312, -1.4453125, 2.7539062, -1.2646484, 0.296875, -0.7973633, -1.2724609, -1.4726562, 0.20007324, 3.2128906, 1.1210938, 0.4638672, 0.69873047, 1.1025391, -1.0507812, 1.0996094, -0.9145508, 0.59228516, -0.16357422, -1.7451172, 1.6650391, -2.8632812, 0.2878418, -2.84375, 1.3603516, -0.36083984, 2.1835938, 1.9277344, 0.2043457, -1.5869141, 1.6269531, -2.3691406, -3.9394531, -1.8369141, -0.7631836, 0.60302734, -1.5791016, 0.54833984, -0.73535156, 0.21459961, 1.796875, 1.3027344, 0.9033203, -0.7236328, -0.9291992, -1.1835938, -0.88134766, -0.40722656, -0.79785156, 0.7939453, 3.0625, 0.08154297, -0.69677734, -2.6171875, -2.6601562, 0.73095703, -1.3769531, -1.8476562, 1.6855469, 1.7910156, 0.08105469, 0.17382812, 1.6914062, -3.7578125, 0.19580078, -1.2451172, 0.5151367, 2.125, 0.087402344, 2.1230469, 0.37158203, -2.3417969, 1.3730469, -2.1054688, 2.0527344, -0.24169922, -1.0957031, -0.62597656, 1.1474609, -0.83496094, -3.0761719, 0.6069336, 0.33203125, 0.85302734, -0.8183594, -1.7783203, -0.6816406, -1.9736328, -4.9179688, 0.82373047, -1.9492188, -0.546875, 0.28637695, 0.020248413, 0.35913086, 1.0341797, 2.0664062, 0.98095703, 1.8369141, -0.84765625, 0.35595703, -0.10455322, 1.9228516, 2.7265625, -1.5644531, -1.2236328, -3.7734375, 1.2568359, 0.1907959, 0.29125977, -1.6132812, 0.12976074, -1.2402344, -0.39233398, 0.7973633, 0.12524414, 2.109375, -1.1015625, -2.3828125, 3.2460938, 2.2109375, -0.5776367, 2.3242188, 1.9863281, 3.8046875, -1.8115234, 1.2880859, -0.7519531, -2.3730469, 3.1289062, -0.859375, 0.1932373, -0.73535156, -1.2666016, 1.1445312, -1.4492188, -1.9091797, -1.6210938, 1.0830078, -1.796875, 1.8505859, 1.7275391, -0.984375, 1.1914062, 0.93408203, -0.46411133, 1.6318359, 2.1464844, 1.9091797, 0.114990234, 0.3984375, -1.4326172, -1.6015625, 1.1337891, -1.1357422, 1.4960938, 1.6904297, 0.1295166, 0.84521484, 1.6884766, 0.4086914, 2.1132812, 1.0019531, 4.2539062, 1.2314453, 0.94433594, 0.29248047, 0.56933594, 2.7617188, 1.5722656, -1.6230469, 0.94677734, 0.9135742, 2.8125, 1.1933594, -1.6992188, 1.6777344, 0.5073242, -0.5410156, -0.4975586, -0.026992798, -0.63427734, -3.2226562, 0.6401367, 0.85595703, -0.31982422, -2.1484375, -0.23718262, -1.6337891, -1.2285156, -1.7558594, 0.9111328, 3.2636719, 0.016403198, 0.7709961, 0.12756348, -1.2802734, 1.3603516, -2.6894531, 1.0488281, 2.7871094, -0.06402588, -0.8105469, 0.50927734, -0.2524414, -0.2467041, 0.6777344, 0.6879883, 0.028305054, 3.2128906, 0.78271484, -1.0400391, 0.7788086, -0.515625, 1.09375, -1.4785156, -0.61328125, 0.7036133, -2.8828125, -2.7382812, -2.5351562, 1.8164062, 0.68115234, 0.95751953, 0.3166504, -1.9462891, 1.7597656, 0.37182617, 2.0136719, -1.6474609, 3.0898438, 1.1572266, -2.7207031, -1.1083984, 0.75634766, 0.7192383, 1.9306641, 0.65283203, -2.8007812, 1.8896484, 0.69433594, 1.6347656, 0.015930176, 1.5849609, 1.421875, 0.5571289, -0.9394531, 3.4160156, 0.375, -0.7651367, -3.2539062, 3.5664062, 1.4511719, 0.7246094, 1.3701172, -0.29174805, -0.2746582, 0.7836914, 0.25708008, -1.9326172, -1.5839844, 1.9228516, 0.3491211, 0.71875, -0.6591797, 0.2331543, -0.13989258, 1.8808594, -0.53027344, 0.044403076, -0.2590332, -1.5615234, 2.7089844, -0.40405273, -1.2373047, -0.12109375, -1.8583984, 0.87890625, 0.0009303093, -2.7128906, 0.05807495, 1.5136719, 1.1835938, -0.8701172, 0.20019531, 0.40771484, 1.2236328, -0.02041626, -0.08319092, -0.85546875, -1.6113281, 0.82373047, 0.65234375, 0.72558594, 2.0117188, -0.6665039, 0.52978516, -2.1191406, 0.090026855, 0.43798828, -0.21386719, -0.7734375, 0.78466797, 2.6230469, 0.82714844, 1.2988281, -1.9697266, -3.4433594, 0.7324219, -1.1171875, 3.2734375, -0.82470703, -0.3474121, -0.14575195, -0.4724121, 3.8203125, -0.036590576, -1.0771484, -0.8095703, -0.1574707, 1.0302734, 0.18151855, 0.7368164, -0.50146484, 0.58203125, 2.0058594, 0.7783203, 0.2052002, 1.7841797, 1.8964844, 1.6992188, -0.15246582, -1.3085938, 1.0224609, -1.2714844, 1.7724609, 1.7373047, 0.1619873, 1.4560547, -0.5073242, 0.6323242, -1.0703125, -1.7910156]}, "B016M5A2SQ": {"id": "B016M5A2SQ", "original": "Brand: Weber\nName: Weber Spirit E330 Lp Black Grill\nDescription: \nFeatures: Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling\nSear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer\nKeep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or saut\u00e9 veggies on the side burner\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\n", "embedding": [-2.9726562, -0.5263672, 2.5410156, -1.1191406, -2.4296875, 0.39916992, -0.85498047, -0.21508789, 1.0585938, 1.3798828, 1.9042969, -0.20861816, -0.6333008, -4.1445312, 1.6503906, -0.19055176, 1.9902344, 1.7441406, 0.58691406, -0.39501953, 0.9086914, 0.57128906, -0.10223389, -0.75146484, 1.4091797, -0.3395996, 3.2324219, -5.4960938, -0.23364258, -1.5566406, 1.1025391, 2.1269531, 0.2944336, 2.7460938, -2.0019531, -1.1845703, -3.3984375, 0.86376953, -2.2675781, 0.020431519, -0.6381836, -1.2724609, 2.1777344, -0.33325195, -1.6503906, 1.3769531, -0.10498047, 0.21166992, -0.76660156, -1.1162109, 1.2851562, 2.1855469, 0.0066566467, 1.9462891, -0.52685547, 0.65527344, -0.43359375, -2.0058594, 2.6425781, -1.0761719, 1.9462891, -0.4309082, -2.2089844, -0.5229492, -0.4272461, -0.8598633, 0.5283203, -0.054473877, 0.010871887, 0.114746094, 1.3828125, -1.9541016, -0.98046875, 1.0410156, 1.8310547, -1.8867188, -2.0039062, 1.7265625, 0.26953125, -0.5522461, -0.75878906, 4.390625, 1.7402344, -2.2949219, -1.0585938, 0.7714844, 0.1607666, -1.0458984, 1.9140625, 0.5620117, 0.5996094, 0.7583008, -2.6152344, -3.9746094, 3.0585938, -0.32128906, 1.9238281, 0.8178711, -0.9946289, 1.3505859, -1.2050781, 0.8935547, -1.1767578, -1.4873047, -2.7851562, -1.3632812, 0.39770508, -0.70166016, -1.0810547, -0.16027832, -1.5722656, -0.43481445, 0.5419922, 1.5400391, 1.0078125, 2.9863281, -0.034973145, 1.6943359, -0.6328125, 1.4306641, 2.8652344, -1.3759766, 0.57666016, -1.4052734, -1.4267578, -0.3894043, -0.36767578, 0.5800781, 1.9863281, -1.0117188, -1.3261719, -0.55322266, 3.0644531, 0.21032715, -0.82958984, -0.8066406, -1.3632812, -0.24047852, -1.4775391, 0.2208252, -0.80810547, 0.6660156, 2.7441406, -1.5068359, -2.4453125, -1.7060547, 0.24487305, 0.28173828, -0.6430664, -1.0732422, -0.6772461, -1.7324219, -2.2382812, -0.46972656, 1.8476562, 0.42163086, -0.45825195, 0.5239258, 3.0449219, 2.7480469, 1.5458984, -1.6875, -1.9257812, 0.13427734, 1.3515625, 0.55859375, 0.7480469, 1.2070312, 0.5600586, 2.6152344, 1.2832031, -1.5, -0.09881592, -0.19970703, 1.7626953, -1.5576172, -0.9370117, 2.4746094, -0.32348633, 0.1595459, -1.7255859, -0.98046875, -0.05279541, 0.4243164, -0.4099121, -0.7416992, -1.1601562, -0.078063965, 1.9296875, -1.7441406, 1.2539062, 0.026245117, 0.5913086, -0.3864746, 1.3076172, -1.1816406, 0.6220703, -2.2597656, 0.58691406, 0.7402344, 0.63671875, -0.7084961, 1.8271484, 0.81689453, -1.0664062, -2.0917969, -0.19165039, -1.4082031, 0.43066406, 1.1533203, 1.4589844, -1.2558594, 0.11566162, -0.29760742, 1.015625, -1.6201172, 1.5224609, 0.122924805, 2.5214844, 2.4902344, -0.3425293, -0.8022461, -1.0126953, 3.8925781, 0.31982422, 0.14489746, 1.3105469, 0.0033187866, -2.5898438, -0.6464844, 4.1367188, 1.5332031, -1.2207031, 0.18469238, 0.70996094, 2.6601562, 0.8286133, 0.640625, -0.9003906, 0.46362305, 1.3652344, -0.30859375, -2.7011719, -1.9560547, 0.36499023, -1.5126953, -1.6708984, 2.4355469, 0.7368164, 0.59277344, 0.8984375, 0.75634766, 1.9189453, 3.515625, -0.09289551, 0.79345703, -1.7988281, 1.734375, -0.7011719, -0.79833984, 1.2109375, -0.021987915, -0.27612305, 0.42236328, 1.1542969, -0.47924805, 1.3457031, 2.7714844, -0.9946289, -0.060028076, 0.96533203, 0.39331055, 0.06732178, -0.3334961, 2.0234375, 1.4023438, -1.4267578, 0.98046875, -0.31176758, 0.038085938, -0.1550293, -0.89208984, 1.1933594, -3.4121094, -1.0488281, -1.8710938, -0.9199219, -2.3203125, -2.0742188, 0.5605469, 3.8808594, -1.2148438, -1.3144531, 2.9257812, -3.6816406, 0.0061302185, 1.9863281, 0.26489258, -0.074645996, 1.7001953, 2.421875, 1.1875, 1.1308594, 0.5263672, -0.45825195, -0.9682617, 1.2822266, -3.5976562, -1.0537109, 1.0136719, -1.0039062, -0.90478516, -1.7822266, -0.23876953, -1.0058594, -1.9902344, 0.45239258, -3.1132812, -0.4777832, -0.71777344, 2.6386719, -0.4260254, -0.9404297, -1.1972656, -0.3540039, 0.1541748, -0.7416992, 2.1933594, 0.1920166, -1.4443359, -1.6435547, -0.41259766, -1.3408203, -0.63134766, -2.28125, -2.4316406, -1.3457031, -1.7490234, 1.0654297, -2.7011719, 0.85058594, 0.6147461, -2.4296875, -0.22302246, 0.63378906, -3.6347656, 0.3581543, -0.43432617, 0.38085938, 0.19970703, 0.21923828, 0.42260742, -1.1806641, -4.234375, 0.12298584, 0.5776367, 2.578125, -0.44067383, -0.9711914, 0.77685547, 2.078125, -0.028945923, -1, 2.2890625, 2.5136719, -0.94677734, 1.1796875, -2.5957031, -0.64208984, -2.5507812, -0.5361328, -0.7055664, 0.4519043, -3.0195312, -1.5234375, -1.9824219, -0.074401855, 5.03125, -0.17675781, 2.5078125, -0.43237305, 0.94677734, 0.9980469, -1.5322266, -0.89501953, 0.67041016, 1.8642578, -2.1191406, -2.375, -2.296875, -1.0351562, -4.4296875, 0.027191162, 0.91308594, -0.23742676, 0.91503906, 0.30493164, -2.1679688, -2.2636719, -0.5083008, 0.42407227, 0.029586792, -1.3789062, -1.1640625, -2.0175781, -0.2722168, -1.3623047, 0.61816406, 1.84375, -0.6118164, 1.6904297, 1.2988281, -0.3022461, 1.0859375, 0.16711426, -3.2050781, 4.1875, -1.7939453, -2.9355469, 1.0556641, -2.3652344, -2.1992188, -0.47680664, 0.5439453, 2.0976562, 2.2382812, 1.8798828, 1.7421875, 0.79541016, -0.57958984, -1.0693359, 0.23535156, -0.6347656, 2.4296875, 3.4726562, -2.5898438, -1.0009766, -0.02116394, 1.4921875, -2.1289062, -1.9355469, 1.2421875, 2.4355469, 1.2314453, 1.3886719, 1.8701172, -1.1269531, -0.8486328, 2.6152344, 1.9267578, -1.6201172, 0.062316895, -1.0498047, 1.7001953, -0.4658203, 1.3427734, 3.0996094, -0.07409668, 1.890625, 2.2851562, 0.6948242, -0.4326172, 0.3623047, 0.26660156, 2.1699219, 0.29467773, 1.2861328, -0.8378906, -0.59277344, 0.11920166, -1.140625, -0.3881836, -0.33520508, -1.2675781, 3.6464844, -0.2788086, -0.67578125, 0.099365234, 1.1123047, 1.0576172, -1.1826172, -0.46899414, -1.3671875, -1.1914062, 2.0859375, -1.65625, -0.73291016, -1.4111328, 1.2011719, 0.6557617, -1.2226562, 0.98535156, 3.28125, -0.70458984, -1.90625, 0.6899414, 0.37158203, 0.8364258, 1.4833984, 1.1044922, -1.4794922, 1.4082031, -2.7949219, 0.97802734, -1.0654297, -0.79541016, -1.3222656, -0.3684082, 0.6850586, 0.7421875, 1.8769531, 0.98291016, -0.9355469, -1.6298828, -0.60498047, -3.4472656, -0.8178711, 1.1044922, -3.3085938, -1.2695312, 2.4824219, -0.5263672, -0.15722656, 0.98339844, 1.6044922, -1.0107422, -0.1821289, 1.5273438, -2.515625, 0.5161133, -3.546875, -2.2441406, 0.6699219, -1.5126953, -0.2902832, -0.12939453, 0.089782715, 0.3935547, 2.8339844, 2.15625, -3.1269531, -0.9321289, -1.6376953, -0.031799316, -0.8105469, 0.45825195, 0.31396484, -0.88964844, -3.1015625, -2.9355469, 0.23388672, 0.43432617, 1.9462891, 0.90283203, -2.7675781, 0.3046875, -0.63183594, -1.5791016, -3.2285156, -0.39648438, 1.0556641, -1.6064453, 0.20837402, -2.9082031, 0.09765625, 0.7421875, -0.89697266, 1.9697266, 1.8896484, -0.8066406, -1.5742188, 1.3505859, 0.6176758, 1.3671875, -1.0097656, -3.4140625, -0.13903809, -0.09631348, -0.37304688, -1.2236328, 0.5097656, 2.4589844, -1.0654297, 2.5644531, 0.65527344, -0.44335938, 0.30444336, 1.8261719, -1.8076172, -0.16333008, -0.62109375, -0.71875, -2.1464844, -0.25073242, 0.012451172, -0.5986328, 0.96191406, -2.34375, 2.6816406, -0.7832031, 1.5263672, -2.1582031, 3.8476562, 2.671875, 3.5585938, 3.1914062, -0.5517578, -0.35351562, -0.23803711, -1.1044922, -2.1484375, 1.4238281, -0.20251465, 1.0117188, 2.6972656, 1.7255859, -1.5341797, -0.84814453, 0.015541077, -0.6621094, -0.09265137, -2.4726562, -1.1894531, -1.4130859, 2.1914062, 1.3193359, -0.28759766, 1.6533203, -0.9868164, -0.41992188, -0.5888672, 1.9638672, -0.7680664, -0.7006836, 0.09692383, -0.23962402, -0.71533203, -0.5854492, -0.27075195, -0.77685547, -0.0044555664, -1.1455078, 2.078125, -0.32202148, -0.47338867, 1.375, 0.5917969, -1.7226562, -1.0810547, 2.4765625, 2.8398438, 0.5913086, 3.140625, 1.1494141, -1.4296875, 1.5039062, 2.4550781, -5.5703125, 0.9814453, 1.0185547, -0.14697266, 2.2636719, 0.9550781, -4.265625, 0.8417969, 1.7460938, -0.6772461, -0.5991211, -2.0351562, -1.3544922, 3.03125, -2.5917969, 0.53125, -0.86376953, -0.85009766, 1.5009766, 1.6103516, 0.31860352, -1.4658203, 1.4375, 3.6679688, -0.2631836, -2.7949219, 0.48242188, -1.7958984, 0.44555664, -3.265625, -0.24365234, -1.8876953, 0.023010254, 2.5351562, 0.94384766, -0.20422363, -0.25268555, 3.40625, -2.0253906, -0.38916016, -2.7753906, 1.6533203, -2.6367188, 0.036224365, 1.7568359, -2.5429688, -0.6621094, -1.2421875, -0.77685547, 0.30859375, 0.9350586, 0.89697266, -0.84814453, -0.45996094, 2.7402344, -1.4511719, -2.8046875, -1.0810547, -0.7705078, -0.86816406, 1.4189453, 1.8671875, 0.08099365, 0.36743164, -0.20214844, -0.58691406, -0.68408203, 0.5708008, 0.27612305, -0.19592285, 0.58691406, -1.4726562, -1.2773438, 0.5444336, 1.0742188, 1.8066406, 0.16052246, -2.8671875, 0.016235352, 1.2646484, -2.5234375, 0.6069336, 2.28125, 2.1152344, 0.42089844, 0.049072266, 1.4111328, -1.140625, 2.3535156, -1.6210938, -1.3789062, 0.1328125, 0.006626129, 1.5888672, -1.2207031, -0.22460938, -0.54052734, 0.42919922, 1.6396484, 0.97998047, -2.2480469, -0.6201172, 0.27294922, -0.53759766, -0.46655273, 1.0498047, 0.35058594, -0.80810547, 0.23413086, -0.79345703, -0.24389648, -1.546875, -2.4179688, 0.5078125, -2.21875, -1.3808594, -1.9072266, 1.0419922, 2.7753906, -0.78027344, -1.4960938, 2.78125, 0.65722656, -2.7988281, 0.77441406, -0.25683594, 2.8535156, 2.8671875, -0.27441406, -0.1361084, -1.0712891, 0.2680664, 1.8632812, -0.5541992, -2.3554688, 1.2460938, -1.0810547, -0.45483398, 0.43920898, 1.3710938, 1.3955078, -1.1337891, -0.10290527, 1.4570312, 2.6015625, -2.1445312, 1.8964844, 0.82373047, 2.5351562, -0.24072266, 3.0390625, 0.14746094, -1.4433594, 2.125, -2.3574219, 2.0722656, 0.07116699, -0.6098633, -0.38916016, -0.05368042, -1.8359375, -1.2695312, -2.3496094, -2.1542969, 1.5957031, 1.3085938, -2.4492188, -2.1796875, 0.87841797, -0.0022830963, 4.5898438, 0.08898926, 1.5341797, -1.7724609, -0.49487305, -0.5805664, -0.98339844, 0.7080078, -3.5, 1.3505859, -0.3701172, -1.2441406, -2.8339844, 0.46166992, 1.4990234, 2.1074219, -0.11138916, 2.3828125, 1.6738281, 2.9316406, 2.4902344, -0.15454102, 3.0136719, 0.98828125, -0.9765625, 0.27563477, 1.7099609, 0.33813477, 0.7832031, -1.2138672, 2.8554688, -0.91503906, -0.05404663, -1.3535156, -0.0014190674, 2.1152344, -1.4111328, 1.2851562, 1.6210938, 1.6992188, -0.97509766, -1.2158203, -0.41235352, -0.5786133, 0.040618896, -0.15722656, 1.6162109, 1.3642578, 0.35473633, -1.109375, 0.12695312, 0.29858398, -3.2949219, 1.3574219, 0.8911133, -1.2001953, -2.3613281, -0.6723633, 3.3808594, 0.9321289, 0.22741699, -0.7216797, 5.0234375, 0.59716797, 1.1572266, -1.2587891, -1.8466797, -0.13293457, 1.4902344, -1.7998047, -1.4941406, -0.5756836, -0.7128906, -3.4414062, -2.015625, 3.8320312, 2.8613281, 2.5664062, 1.1132812, -1.5175781, 4.7617188, 0.92041016, 1.9658203, 0.14868164, -0.59277344, -1.03125, -2.0195312, 0.1348877, 0.3984375, 0.13659668, 2.0117188, 0.08453369, 1.4335938, 0.60498047, 0.4765625, 1.2382812, 0.24804688, 1.3076172, 2.171875, 0.7597656, 0.015731812, 1.0175781, -1.0136719, -2.1484375, -1.5644531, 1.7421875, 1.9501953, 0.9033203, 0.32617188, -1.1572266, -0.39257812, -1.4902344, -0.0037612915, -0.2902832, -2.3476562, 0.4506836, 0.32788086, 1.2021484, -1.3642578, 1.0166016, 1.8330078, 1.1074219, 1.2548828, 2.3710938, 3.7617188, -1.7363281, 2.0136719, 0.29736328, 0.80029297, 1.4775391, 0.83203125, 0.6503906, 0.46606445, 0.16369629, 0.09411621, 2.4628906, -0.012336731, -0.09503174, 0.8964844, -1.3613281, -0.34106445, -1.2392578, 0.0014886856, 0.37695312, -1.0888672, 1.4326172, -0.44580078, -1.796875, 1.0224609, 0.0836792, 0.057678223, -1.0537109, -0.84814453, -2.0332031, -0.053741455, -1.2851562, 1.0126953, 3.734375, -0.0028057098, -0.024856567, -0.67285156, -3.7675781, -2.5058594, -1.4306641, 1.2197266, -0.49804688, -1.8828125, -0.8286133, -0.34057617, 1.6132812, -1.6103516, -0.073791504, -1.5566406, -3.0644531, 0.023223877, -0.34228516, 2.0683594, -1.2304688, -0.05041504, 1.8808594, 1.9941406, 0.2088623, 1.8164062, 0.70703125, 2.5644531, 1.7373047, -2.859375, -1.0283203, 1.2626953, 1.0595703, -0.66796875, 1.2294922, 1.5742188, 0.4140625, -0.7060547, -0.099121094, -1.4042969]}, "B00QMVEG8S": {"id": "B00QMVEG8S", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner\nDescription: \nFeatures: COOKING POWER: Up to 22,000 total BTUs\nPUSH-BUTTON IGNITION: For matchless lighting\n2 ADJUSTABLE BURNERS: For precise temperature control\nWIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes\nPRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions\n", "embedding": [-1.3984375, 0.81152344, 1.2949219, 1.5175781, 0.5229492, 0.26220703, -0.45458984, -0.5385742, -0.15466309, 1.6484375, 0.2368164, -0.16308594, -0.18139648, -1.859375, 0.23071289, 0.36083984, -0.049468994, 0.70751953, -2.7304688, 0.43530273, 3.0078125, -0.62841797, 0.34326172, -0.45117188, -0.45629883, 0.31323242, 3.4824219, -5.375, 0.41503906, -1.4287109, 1.765625, -0.48632812, -0.024597168, 2.6757812, -2.4765625, -0.38891602, -3.4160156, 1.1923828, -2.7167969, 0.18127441, -1.5957031, -0.4272461, 1.0068359, 0.054016113, -1.6376953, -0.9550781, 0.9223633, 0.30371094, -3.3261719, 0.7729492, 0.42749023, 1.3808594, 0.5078125, 0.30541992, -0.18652344, -0.004146576, -0.61621094, -0.1262207, 1.0029297, 0.6855469, 0.7841797, -0.47729492, -2.5371094, 1.1318359, -1.1513672, 1.3173828, 1.3886719, -0.84716797, -0.88183594, -0.6689453, 3.2929688, -0.031188965, -1.5644531, -1.1162109, -0.6254883, -1.7773438, -4.0742188, 0.15991211, 2.0742188, -0.13330078, -0.0051879883, 1.6025391, 1.9941406, 0.15527344, -0.29516602, 0.7348633, -1.5703125, -0.7739258, 0.40771484, 0.19128418, -2.1425781, 0.5161133, -1.859375, -4.265625, 0.52685547, -1.2529297, 0.98535156, 0.68310547, -0.86376953, -0.9916992, -0.33740234, -0.5996094, -1.6923828, -0.47216797, -2.8730469, -0.7949219, 2.7578125, 0.18701172, -2.6523438, 0.75927734, -3.421875, -2.828125, 1.6738281, 0.99316406, -0.34692383, 1.0019531, 0.11798096, -0.89453125, 2.2617188, 0.3918457, 3.4101562, -1.5263672, 1.484375, -0.026290894, -0.14953613, 2.1894531, -0.38208008, -0.28320312, 1.9140625, 0.17919922, -0.76171875, 0.54248047, 2.2578125, -0.08935547, -2.4882812, -1.8525391, -2.65625, -1.2919922, -3.25, 0.22277832, -1.3681641, 1.8427734, 2.7734375, 0.8569336, -4.7460938, -2.0839844, -0.41210938, 2.0703125, 0.69091797, -2.4433594, 0.5415039, -0.9711914, 0.15588379, -1.2675781, 2.0898438, 0.45629883, -1.21875, -1.1337891, 3.9550781, 0.032104492, 0.55810547, -0.921875, -2.1191406, 2.3378906, -0.33374023, 0.5488281, -0.8208008, 0.91748047, -1.2792969, 1.9716797, 0.2770996, -3.3125, -0.17224121, 0.2052002, 0.4255371, -0.41308594, -0.2783203, 3.3652344, -0.18029785, -0.020233154, -3.7324219, -3.0527344, 0.5883789, 1.0419922, -0.41723633, -1.1357422, -0.24157715, 0.055236816, 1.2539062, -1.5292969, 1.4794922, 0.42944336, 1.3720703, -0.85791016, -1.8867188, -2.6816406, -0.46289062, -0.8779297, 1.5703125, 0.05114746, -0.13110352, 0.56640625, -0.7207031, 2.2734375, -1.5712891, -1.6630859, -0.2836914, -1.1230469, 1.546875, 2.75, 3.1308594, 0.055541992, 0.61865234, -1.0205078, -1.8134766, -1.8115234, 2.1816406, 0.6074219, 2.0976562, 1.2539062, 0.95703125, -0.8359375, -0.18188477, 0.8027344, -1.1699219, 2.8496094, 1.5195312, -0.38476562, -0.26098633, -0.7290039, 2.2890625, 1.2998047, -1.3066406, 0.12609863, 1.5400391, 3.34375, 0.52490234, -2.2421875, -0.6928711, -0.013717651, -0.75, -0.47583008, 1.5361328, 0.3251953, -0.15222168, 0.36132812, 0.65966797, 0.8041992, 3.2148438, 0.66552734, 0.5444336, -0.2680664, -0.7265625, 1.7265625, -2.2324219, 0.39892578, -0.42089844, -0.78027344, -0.6582031, -3.2558594, 1.1738281, 1.6992188, -0.47216797, 0.36987305, -0.42895508, 0.85058594, 2.2773438, 0.09039307, -2.5507812, 0.84814453, 0.5810547, 0.77001953, 2.2910156, 0.953125, 1.921875, -1.0634766, -0.13244629, 3.5625, 0.25585938, 2.9882812, 0.56152344, -0.5913086, 1.5234375, -1.59375, -2.1113281, 0.8515625, 2.6035156, 0.78564453, -1.7822266, 0.9321289, 5.5742188, -1.7226562, -3.5390625, 2.84375, -4.2617188, -0.008590698, -0.52490234, 0.7392578, -0.7836914, -1.6386719, 2.015625, -0.6254883, 0.1899414, 0.6645508, -3.1289062, -0.021469116, 0.45336914, -2.5195312, 0.17822266, -0.9682617, 1.6376953, -2.6738281, -2.3691406, 1.2470703, -0.8808594, -0.5107422, 2.2070312, -2.5683594, 0.89404297, 1.6035156, -0.20788574, 1.3457031, 0.17687988, 0.05923462, 0.68066406, 0.36157227, -1.6767578, 2.3476562, 0.8071289, 0.49243164, 0.33642578, -2.9492188, 1.6474609, -1.8164062, -2.0429688, 0.5283203, 1.0839844, -3.9804688, 1.8154297, 0.8642578, -0.75439453, 2.0917969, -2.5820312, 2.6660156, -1.4560547, -3.0976562, 1.0175781, 1.4404297, -0.36499023, -0.05105591, 1.7871094, 0.42114258, -1.1533203, -2.53125, -1.7871094, -0.42138672, -1.015625, -1.2753906, -0.42407227, 0.43896484, 1.4882812, -0.20874023, 0.22241211, 0.03375244, -1.3105469, -2.8925781, 0.38720703, -2.125, 0.7866211, -2.0898438, 1.8466797, 1.0351562, 0.09698486, -1.1455078, 0.041900635, 1.5380859, 0.29223633, 5.5898438, -0.39819336, 2.2734375, -0.8696289, -1.7841797, -0.31274414, -2.3105469, -2.8203125, 0.09661865, 1.2275391, 0.14172363, -1.859375, -3.4042969, -0.064819336, -2.4414062, -0.2467041, -1.25, -0.105407715, -0.3564453, 0.515625, -0.17834473, -0.77197266, 1.3183594, -0.1149292, -0.6152344, -2.4570312, -2.0527344, -0.29370117, -0.046081543, 0.4206543, 1.3378906, 0.05404663, 1.4013672, 0.029006958, 1.6113281, 0.45385742, 1.3300781, -0.5083008, -2.7460938, 2.8027344, 1.21875, 0.6455078, 1.6357422, -2.0234375, -1.2001953, -3.359375, -0.11694336, 1.4140625, 2.3632812, 2.2539062, -0.19421387, 0.82714844, 1.1269531, 2.140625, 0.98535156, -0.9082031, -0.72265625, 2.3261719, -2.4863281, -3.4824219, 2.7148438, 1.7177734, -2.9550781, -2.2675781, -0.27246094, 1.2148438, 1.9443359, 3.6132812, -1.4619141, -1.0185547, -0.084472656, 0.56640625, 2.1503906, -1.0185547, 0.64501953, -0.08679199, -0.118896484, 1.6464844, 0.37841797, 1.2246094, 1.28125, -0.45507812, 1.8759766, 4.0273438, -1.7988281, 1.4189453, -0.41601562, 0.39013672, 0.52197266, 2.9296875, 0.041870117, -1.1943359, -0.6713867, -1.5458984, 1.7763672, -1.1933594, 1.0126953, 2.7617188, 0.6591797, -0.29345703, 0.20227051, -0.36572266, 1.3916016, 0.11907959, 2.515625, -0.32617188, -0.50634766, 0.43359375, -1.2392578, -1.2021484, -1.7363281, 3.1386719, -0.671875, -1.3925781, 0.99316406, 2.546875, -2.1933594, -2.6171875, -2.40625, 0.72753906, 0.37573242, 2.1386719, -0.8666992, -1.4111328, -0.3203125, -0.69384766, -0.026626587, 2.6855469, -2.7070312, -0.52783203, -0.32055664, -1.4267578, -0.45458984, 0.53808594, 0.95947266, 1.453125, -2.0078125, 2.1015625, -3.3203125, 0.81884766, 1.0732422, -1.9550781, 1.3496094, 2.890625, -0.5961914, 1.5859375, -0.03756714, 3.7421875, -2.5878906, -0.4885254, 0.4404297, -1.0449219, -1.2822266, -3.6582031, -2.4023438, 1.3271484, 0.6723633, 0.24060059, 2.4824219, -1.0166016, -0.39086914, 1.2470703, -0.26123047, -1.5351562, -3.2128906, -0.60791016, 0.58154297, -2.8632812, -0.041900635, 0.40673828, -1.0429688, -2.0136719, -2.0585938, -0.7050781, 0.10467529, 0.46777344, 1.1445312, -0.52734375, -0.6098633, -1.3642578, 1.7724609, 0.5859375, -1.1152344, 0.021499634, 0.8876953, 0.55810547, -3.2441406, 1.1083984, 1.6552734, -1.4326172, 1.4921875, 2.8027344, 2.0058594, -1.3164062, 0.35009766, 1.3671875, 2.0703125, -0.13659668, -2.4003906, -0.77197266, -1.9453125, -1.3828125, -0.16015625, 1.9169922, -0.6958008, -2.3457031, 0.9370117, 2.0175781, 2.0078125, 1.8945312, 0.20568848, -1.03125, 0.515625, 0.68847656, -0.87060547, -1.2871094, -0.3022461, -0.16418457, -0.8076172, 1.3535156, -0.61621094, -0.7548828, -0.46289062, -1.6230469, -1.0419922, 1.4462891, 1.6347656, 2.9882812, 2.3632812, -0.25756836, -2.0019531, 1.2324219, -0.3527832, 0.21374512, 0.15039062, 0.2890625, 0.9970703, 1.9707031, 1.5478516, -0.89453125, -1.9765625, 0.48461914, -1.1474609, -0.27026367, -0.8173828, 0.24804688, -1.8251953, 0.3466797, 0.80078125, -0.17565918, 1.3837891, -1.9238281, 0.890625, 1.4453125, 1.5507812, -1.203125, -0.21081543, -0.62060547, 0.44848633, 0.4609375, -0.59228516, -0.3647461, -0.04058838, 1.9658203, 1.4101562, 1.6533203, -0.26293945, 0.6201172, 1.9453125, -0.85302734, -1.3955078, -0.21740723, 0.57666016, 0.43066406, -0.09295654, 3.9453125, 2.4160156, -0.53271484, 1.8720703, -0.609375, 0.33911133, 0.44091797, -1.2666016, -0.20544434, 1.0859375, -0.36767578, -1.9921875, 0.0029640198, 2.0175781, -1.6748047, 0.9902344, 0.14929199, 0.7841797, -0.7973633, -3.7148438, -0.15222168, -0.21594238, -0.47729492, -0.35766602, -2.1738281, -0.25927734, -1.2841797, -0.33422852, 2.3203125, -0.2902832, -0.6142578, 1.5175781, -0.80810547, 1.2919922, -2.0898438, -1.4716797, -2.6953125, 0.2939453, 0.8959961, -0.39013672, 0.33081055, 0.4272461, -0.2626953, -1.0722656, 0.13330078, -1.6318359, 1.3652344, -2.6152344, -1.09375, -0.22253418, 0.40454102, 0.921875, -1.4921875, -0.85546875, -2.3398438, 1.3007812, 1.0898438, -0.46777344, -0.82177734, 2.171875, -2.0175781, -3.6289062, -0.2043457, -0.4104004, 0.13562012, -0.82421875, 1.4238281, -1.3535156, -1.4492188, -1.6845703, -1.7216797, -2.21875, -0.14660645, 0.07897949, 1.5556641, -0.17150879, 0.6855469, 0.12768555, 1.0214844, -0.113586426, 0.80908203, -0.10241699, -1.7197266, -2.8515625, 1, -0.72998047, 2.28125, 1.7060547, 0.2055664, -0.75634766, 1.1279297, -0.17993164, 0.09832764, 0.5703125, 0.25878906, -1.3740234, 2.03125, -1.0927734, -0.043884277, 1.1035156, -2.0761719, 0.7373047, -1.9355469, -0.55810547, 0.077941895, 1.6445312, 0.16149902, 0.6074219, 1.4873047, -2.4003906, 1.8427734, 0.3371582, 2.7421875, 0.90722656, -0.23522949, -1.2685547, -2.1523438, -2.1132812, -0.28051758, -1.4091797, -0.3552246, -1.2734375, 2.1464844, 0.99609375, 1.7841797, -0.23950195, 1.2792969, 1.4091797, -0.31298828, 1.5703125, -1.3017578, 3.6523438, 0.26342773, 0.8046875, -1.9033203, -2.2480469, 0.9169922, -0.70703125, 1.9394531, -0.8144531, 0.6538086, -1.2529297, 0.2927246, -1.1669922, 2.6074219, 2.125, 3.0039062, -2.0566406, 2.2089844, 3.4042969, -0.30786133, -0.91796875, 0.5932617, -0.97802734, -0.32763672, 2.7871094, 0.5620117, -1.453125, 2.8828125, -0.85253906, 0.5991211, 0.7739258, 0.65185547, 1.9345703, -1.3681641, -1.4228516, -0.5991211, -0.5683594, -2.3632812, 2.5761719, 0.95166016, -0.5776367, 0.9506836, 0.67871094, 0.80810547, 1.7080078, 1.8105469, 1.3974609, 0.41723633, 0.19226074, 0.93603516, 0.35717773, 1.3632812, -0.6894531, 3.6992188, -0.16088867, 0.55908203, 0.35058594, 2.7695312, -0.3359375, 2.7285156, 3.5527344, 2.1582031, 2.4101562, 1.9335938, 3.2539062, -0.034301758, 2.3261719, 0.008285522, 0.6147461, -1.5712891, 1.1669922, 0.5419922, -0.34423828, -0.15344238, 0.32006836, 0.13879395, 0.59228516, -1.5673828, 1.1533203, -1.1816406, -3.9316406, 1.6357422, 1.2470703, 1.8984375, -0.37182617, -0.41967773, 0.8071289, 0.17321777, -0.40307617, -0.39135742, -0.65478516, -1.4726562, 1.4707031, -1.6982422, -2.3417969, 1.7900391, -1.5576172, 0.2878418, -3.1503906, -0.859375, -1.2958984, -1.1425781, 1.3613281, 0.105285645, 0.25756836, 2.6738281, 1.9199219, -0.6538086, 0.5961914, -2.0351562, 0.57128906, 1.6669922, 2.7324219, -0.09942627, 0.5654297, 1.2988281, -0.9995117, -1.59375, -4.7148438, 2.3339844, 0.015617371, 2.1738281, 2.2890625, -1.3486328, 2.8378906, -0.085998535, 1.9150391, -1.6865234, 2.0546875, 1.3857422, -2.1660156, -1.1455078, 0.6069336, 1.7041016, 3.515625, 0.23657227, -1.1347656, 1.4228516, -1.7773438, 1.8515625, -0.2475586, -0.4560547, 1.6689453, -0.08660889, -1.3535156, 1.7001953, 1.4619141, -1.2880859, -1.2490234, 2.21875, 1.7597656, 0.107666016, -0.40722656, -1.1884766, 1.421875, -0.3486328, -1.3330078, -0.52783203, -1.3925781, -1.8339844, 0.096069336, 0.25708008, -0.33740234, -2.0019531, -0.14111328, 2.1972656, -1.9902344, 1.1689453, 2.2226562, -0.5234375, 0.99902344, -1.4814453, -0.14550781, 0.025527954, -0.04949951, 1.1767578, -1.3291016, -2.6738281, 0.31030273, 1.1230469, 0.25708008, -0.6074219, 0.38378906, -0.7651367, -0.41381836, 0.46948242, 2.3632812, 0.6796875, -0.4658203, -0.3659668, -0.07891846, -1.1611328, 1.1035156, -2.1113281, -0.6376953, -0.25805664, -2.984375, -2.3769531, -1.859375, 0.12213135, 0.9272461, 2.2714844, -0.47680664, 2.3789062, -2.0507812, -2.1289062, -2.1191406, -2.4550781, 2.3730469, 2.4628906, -0.8691406, 1.0830078, 1.1796875, 2.4648438, -1.53125, -1.0224609, -0.68896484, -1.6171875, -0.22229004, -1.1337891, 0.088256836, 0.88183594, -0.3293457, 0.50390625, 2.015625, 1.0009766, -1.0966797, 1.9169922, 0.15673828, -0.18225098, -1.7226562, -0.25952148, -1.5703125, -1.2568359, -1.3955078, -0.057006836, 2.6601562, 1.3349609, -1.9638672, -2.1875, -1.3964844]}, "B00V8JJGOI": {"id": "B00V8JJGOI", "original": "Brand: HKESTG\nName: 2-Stage Propane Tank Regulator with 2 Pigtail Hoses\nDescription: Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.\nFeatures: Don\u2019t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks.\nHooks up 2 propane tanks to your RV at once so you\u2019ll always have a fuel supply.\nAuto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow.\nLets you remove empty propane cylinder without interrupting propane supply.\nIncludes 2 12-inch pigtail hoses.\n", "embedding": [-1.3193359, 0.99560547, 0.36450195, 2.1855469, -1.9521484, -0.9682617, 1.1279297, -0.09185791, 0.65283203, -1.2978516, 0.26123047, -1.2792969, 1.4013672, -1.1806641, 0.73535156, -0.26733398, 0.47753906, 0.2861328, 3.4199219, 2.2070312, 0.12866211, -0.3178711, 3.3476562, -2.1074219, 1.9707031, -1.0048828, 2.3632812, -0.828125, -1.0625, 0.121154785, 1.1435547, -0.45825195, -0.86816406, 0.9067383, 0.48046875, -0.109436035, -1.1367188, -2.4101562, -4.78125, -0.14099121, -2.5410156, 1.2792969, 0.1907959, -1.453125, -1.3544922, -1.0322266, -0.7973633, -1.4775391, -0.31103516, 1.6787109, -0.09777832, 2.0957031, -0.32666016, 1.4931641, 0.30419922, -0.25, -1.0351562, -1.421875, 1.4277344, 1.1005859, 1.4335938, -0.87939453, -3.1777344, 1.0224609, 1.0117188, -0.05529785, -1.1132812, -0.3112793, 1.7802734, 0.54003906, 0.09320068, -0.8408203, 1.1201172, -2.8398438, -2.5761719, 1.7412109, -1.8125, -0.53564453, 1.6396484, -0.1763916, -0.9038086, 1.4238281, -0.06750488, 0.068115234, 2.7675781, -0.24389648, 1.6875, 0.43359375, 1.3125, 1.4960938, -2.8300781, 1.828125, -3.0898438, -2.4648438, 0.22131348, 2.6757812, 1.2646484, 2.9726562, 1.9707031, 1.5068359, 1, -0.6298828, 1.109375, 1.3144531, -1.5224609, -0.11450195, 0.42163086, 1.1103516, -2.6914062, -0.3540039, 0.31079102, -0.7426758, -0.039520264, -1.6894531, -0.9663086, 0.024490356, 0.8730469, -0.64941406, 1.6181641, 0.78222656, 2.4472656, -0.9243164, 0.8276367, 0.4975586, 0.8510742, 1.7724609, -0.7207031, -1.8105469, 4.1914062, -0.28735352, 0.80908203, -0.26782227, 1.8417969, -0.061401367, 2.8613281, -2.9042969, -1.6142578, -3.6972656, -1.5292969, 1.7490234, -3.0195312, -2.0039062, 1.4082031, -0.4597168, -2.390625, 0.31982422, -3.6074219, 0.48876953, 2.4296875, -3.3203125, 2.4511719, -1.1347656, 1.6884766, -2.1757812, 3.2734375, 1.0507812, 1.6923828, -0.8979492, 0.06915283, 1.0146484, 2.3105469, -0.8569336, -5.4296875, 1.2392578, -0.8911133, -3.1699219, 1.9433594, 1.4082031, -0.6020508, 1.1386719, 0.10266113, -1.9990234, 1.7304688, 0.034729004, -0.03466797, -2.4160156, 1.5771484, -0.36621094, 3.0292969, 0.9042969, -3.6679688, -1.6181641, -0.32250977, -0.73339844, 1.9736328, 0.8334961, -0.7866211, -1.6865234, 2.3789062, -0.9946289, -3.4238281, 1.3378906, -0.4831543, -1.4980469, -0.13183594, -2.8300781, -3.9492188, -0.5395508, 1.21875, 1.5517578, -0.22717285, -0.47045898, -0.3659668, 0.8774414, -1.8134766, -1.0957031, 0.9350586, -0.50097656, -0.8623047, 3.3339844, -1.0488281, 1.2294922, 1.8232422, -0.1907959, -0.2331543, -1.6552734, 1.8701172, 3.5234375, 1.0263672, -1.1738281, -0.39086914, 1.09375, 2.4082031, 0.14794922, 2.4765625, 0.17358398, 0.5185547, 0.03378296, -2.0859375, 0.02609253, 0.56640625, 1.7255859, 0.48461914, 0.69628906, -0.9477539, 1.4335938, -0.2763672, -0.953125, 0.34204102, 3.4960938, 1.7177734, 0.05795288, -1.1845703, -0.43847656, -1.5224609, 1.6337891, -0.5966797, 1.0556641, 1.7978516, -2.1054688, 1.0126953, -0.59375, -1.8222656, -1.6416016, 0.028961182, 0.75341797, 1.0605469, 0.4099121, 1.2958984, -2.2773438, 1.5791016, 0.55371094, 2.0761719, 1.4482422, -0.40185547, 0.13647461, -0.6508789, -0.5517578, 1.0996094, 0.7363281, -1.2509766, 3.0585938, 0.859375, -2.7304688, 1.21875, 1.8994141, -1.2070312, 1.0722656, -0.7998047, 0.74121094, 1.5527344, -0.16687012, 0.50341797, -3.1484375, 0.7871094, 1.8652344, 1.4199219, 1.6308594, -1.8632812, 0.2878418, 3.3984375, -1.046875, -0.6689453, 0.34106445, 3.7011719, -0.8569336, 1.3261719, -0.99560547, -0.27392578, -0.36816406, -0.4169922, -0.31201172, -1.484375, 1.2900391, 3.0605469, -1.1269531, 0.7426758, 0.8696289, 0.76464844, 0.6347656, 0.41577148, 0.5722656, -2.9902344, -0.3564453, -0.4934082, -1.5117188, 1.9208984, -1.9414062, -0.95751953, 2.7089844, -2.40625, -0.6489258, -1.1972656, -1.8066406, -0.3515625, 0.6611328, 0.55566406, 0.31079102, 2.5507812, 0.8330078, 0.22680664, -1.1132812, -0.29003906, -0.91748047, 0.6479492, 2.3496094, -0.92529297, -2.6777344, 0.6323242, -2.4003906, -0.9404297, -2.4472656, 0.15881348, 2.3300781, 3.1523438, 1.3867188, -1.1181641, -0.5253906, 1.3105469, -2.5957031, -1.0410156, 1.7988281, -0.5161133, -2.0351562, 0.41552734, -0.37768555, -0.18737793, 2.5097656, -0.97314453, -0.4765625, 0.65625, 1.4804688, 0.023651123, 0.6645508, -1.7666016, -0.18701172, 2.3769531, -3.7539062, -0.6455078, 0.8208008, 2.2089844, -2.4570312, 0.7988281, -0.30029297, -0.9433594, 0.54003906, -1.2363281, 0.58251953, 0.5541992, 0.875, -0.34423828, 0.18249512, -0.59765625, -1.3886719, -3.6328125, 0.001540184, 2.5097656, -0.82373047, 0.94628906, -1.4462891, -1.2050781, -0.7246094, -0.7988281, -0.23498535, -2.5625, -2.0878906, -0.0035820007, 2.1894531, -0.070129395, 1.1230469, 1.0957031, -0.8569336, -2.7089844, 0.2199707, 2.75, -0.9814453, -0.04916382, -0.92626953, -0.9580078, 0.19226074, -1.3193359, -0.6669922, 1.1464844, 0.6352539, 0.6953125, -1.2695312, -0.054229736, 0.9926758, -0.09655762, 2.6269531, -2.3613281, 0.30078125, -3.0585938, -1.0449219, 3.8359375, 1.1767578, 2.3554688, -2.0546875, -0.7451172, 0.2861328, 0.6328125, 0.7841797, 0.76660156, -1.8330078, 2.3203125, -3.0898438, -0.875, 1.4023438, 0.43725586, -2.3417969, 2.1269531, 1.4267578, -0.9633789, 3.5214844, 0.64941406, -0.6171875, -1.0986328, 2.9199219, 0.50634766, -0.38183594, -0.23095703, 1.4365234, -0.15246582, 0.5600586, -2.5351562, 0.9375, 1.3173828, 1.1621094, -0.17626953, -0.2956543, 2.6894531, -1.2089844, -0.37524414, -0.30810547, 0.82910156, -1.0498047, 2.4824219, -0.97753906, -0.1541748, -0.80029297, 0.72753906, 0.21704102, -0.6328125, -0.4453125, -0.08496094, 4.84375, -0.79003906, -0.7680664, -0.9301758, -1.1650391, 1.3085938, 1.6201172, 0.5703125, 0.21728516, -0.25268555, -1.7451172, 1.0917969, -2.0800781, 1.1796875, -1.2607422, 2.0449219, -0.9785156, -0.3659668, -1.2753906, -0.8696289, -1.1357422, -1.9394531, 0.17272949, 2.9785156, 1.3105469, -1.1386719, -0.0044021606, -0.5385742, 2.1679688, 0.46044922, 1.5947266, -1.3535156, 0.19995117, 0.7817383, 0.38012695, -1.8066406, 2.8339844, -1.2392578, -1.7167969, -0.14587402, -3.2265625, 0.6904297, 0.37768555, -0.23779297, -0.95996094, -0.10736084, -0.4716797, 1.7695312, -0.39404297, 3.8945312, -0.9248047, 1.6337891, 1.0898438, -2.6015625, -1.4482422, -2.1582031, -4.7734375, -0.6611328, -2.7734375, 0.5410156, 1.9199219, 0.55615234, 0.8642578, 0.33374023, 1.1669922, -3.4667969, -0.8383789, -0.8417969, 1.3017578, -2.0429688, 0.19470215, 0.63378906, 0.6899414, -1.2226562, -3.8085938, -1.8916016, -2.1953125, -2.3378906, -0.5727539, -0.65185547, 1.4003906, 0.86376953, 0.57666016, -0.9277344, -0.69189453, 0.10522461, -0.8173828, -1.3662109, -1.8300781, 2.1582031, -0.3371582, 0.19274902, -1.2333984, 2.7988281, 3.3027344, -0.890625, -1.8710938, 0.4675293, 3.0507812, -0.5498047, -2.2148438, -2.0234375, -1.2138672, 2.0800781, -1.1943359, -0.9238281, -0.043640137, 0.8227539, 0.6020508, 1.1679688, 1.8447266, 1.6582031, -0.82714844, -2.0742188, 3.0449219, 0.6953125, -1.0068359, 1.1894531, -1.9755859, -0.45532227, -2.0351562, 2.0332031, -0.8154297, -1.2001953, -2.0839844, -0.07519531, -3.1914062, 0.97314453, -1.3261719, 1.0234375, -1.5771484, -1.1337891, 0.2998047, 0.39501953, 2.625, -0.66503906, -0.4892578, -1.1933594, -1.0996094, -0.17919922, -0.5317383, 0.61816406, -0.9868164, 0.49047852, -1.0292969, -0.64941406, 0.8984375, -0.77001953, -1.0966797, -1.6162109, 0.8852539, 0.68847656, 3.3964844, -2.9804688, 0.8305664, 0.39013672, -1.8925781, -2.7089844, 1.2949219, 1.1914062, 2.9199219, -1.3144531, -0.20166016, 0.3251953, 2.2050781, 0.94873047, -1.9199219, 0.6166992, -1.9892578, -0.24853516, 0.7373047, 2.1953125, -0.2685547, -0.6777344, 0.9511719, 2.4453125, 1.4169922, -0.09240723, 1.1523438, 0.39941406, 1.75, -0.3930664, -0.7441406, -1.5009766, 2.0664062, -0.24560547, 2.1054688, -0.24475098, -2.5214844, -0.01828003, 2.1425781, -0.8129883, 1.34375, 1.5019531, 0.1194458, -1.734375, -2.3554688, -2.5859375, 0.062347412, 0.1730957, 2.4453125, -1.3505859, 0.06817627, -0.013427734, 1.5068359, 0.53027344, -0.74316406, 1.15625, -1.5917969, 0.85253906, -1.6787109, 0.37060547, -1.1025391, -3.1894531, 0.30419922, 0.6074219, 2.4101562, -0.2854004, 0.15209961, -1.5019531, 0.2097168, -1.8242188, -0.51904297, 1.1972656, 0.008842468, -0.38134766, 3.5136719, 1.0410156, -1.0292969, -0.4025879, -0.07104492, -2.8046875, 0.8413086, 1.2382812, 2.2597656, -0.5986328, 0.2866211, -3.0859375, -4.8945312, -0.6430664, 1.7089844, 1.2568359, 0.6816406, -2.2382812, -1.4990234, 1.5634766, -1.8925781, 0.020721436, -4.34375, 1.6767578, -1.4824219, -1.6416016, -1.0410156, 1.3242188, 0.13000488, 2.1269531, -0.23034668, -2.4921875, -1.1240234, -2.2421875, -0.5522461, 0.37939453, 0.042144775, 0.37939453, -0.72216797, -1.9951172, -0.97998047, 1.0673828, -0.25146484, -1.8808594, 0.78222656, -2.4785156, 0.1628418, 1.5625, -1.3144531, 0.66845703, 2.6367188, 0.5810547, 1.3134766, 2.9160156, 2.0429688, -0.68847656, -0.42285156, 1.1513672, 0.4091797, 0.0052108765, -0.6279297, 0.66503906, 2.0859375, 1.4638672, 2.4101562, -0.3310547, -1.1162109, -1.7900391, -1.9101562, 0.4658203, -1.8535156, 1.5830078, 0.09838867, 0.95214844, -0.7709961, -0.75, -0.3112793, -0.84375, -1.1865234, -0.16235352, 1.6552734, -1.6992188, 1.1855469, -0.6738281, -1.0068359, -2.59375, 0.16467285, 1.6669922, 0.028320312, -1.3896484, 2.5175781, 0.50634766, 0.29467773, 1.3964844, -2.0957031, 1.4179688, -0.7807617, 1.4003906, -2.7480469, -0.26660156, 0.68066406, 0.6533203, -1.1123047, 1.2294922, -3.6640625, -0.8725586, 0.08081055, 2.0976562, -1.3886719, -1.5361328, -0.3942871, -0.6875, -0.5810547, -1.0849609, 1.1894531, -2.3789062, 0.71777344, -0.8222656, -1.9804688, -3.7636719, 3.2011719, 0.12805176, -0.7841797, 1.4335938, 2.2636719, 0.65185547, -2.1855469, 1.8945312, 0.22668457, -0.1550293, -0.5102539, -1.3232422, -0.77001953, 0.76123047, -3.7207031, 1.2333984, 1.0175781, 2.0117188, -1.1162109, 0.2836914, -1.4013672, 1.3105469, 1.9462891, 1.1220703, 2.3554688, -0.1977539, 1.6582031, 1.5634766, 1.4638672, 3.6386719, -0.81152344, 0.75341797, -1.078125, 1.65625, 1.5585938, 0.9765625, 0.95996094, -2.84375, 0.046722412, 1.3349609, 1.3261719, -0.25219727, -2.5097656, 0.117614746, -1.0966797, -2.1992188, -2.2480469, 1.4462891, -2.4667969, -0.011138916, 0.6801758, -0.31225586, -1.6962891, 1.8789062, -0.8745117, -0.8984375, -0.6357422, 3.4726562, 1.4228516, -0.6196289, -2.2617188, -1.1660156, 0.79003906, 1.8261719, 0.8779297, 0.8286133, 0.47265625, -1.8457031, -1.0898438, 0.26708984, 1.2822266, -1.921875, -0.26489258, -1.7236328, 3.1113281, 4.4414062, 0.008758545, 2.6445312, 2.0839844, 0.6245117, -4.2773438, 0.7817383, -0.0021038055, 0.12219238, -1.421875, -3.4179688, 0.5776367, -2.0917969, -1.0429688, -2.1738281, 0.5473633, 0.44482422, -0.12878418, 0.53027344, -0.066345215, -1.3417969, 0.9433594, 2.4609375, 0.019378662, 0.36938477, 1.2246094, 0.5673828, 0.5551758, 1.9169922, -1.7636719, 0.46850586, 0.03878784, 2.2167969, 0.8935547, -0.54785156, -0.16027832, 1.8681641, -1.0458984, 1.1533203, 0.006717682, 0.71777344, 2.8535156, 1.1298828, -0.47753906, 2.2910156, -0.7080078, 0.86279297, 0.15698242, 0.7841797, 0.04296875, -0.9042969, -0.30078125, 2.6054688, -1.8271484, -1.5292969, 2.2734375, -0.25805664, 1.1669922, 0.14465332, 0.064697266, -0.2956543, -0.8276367, 0.9458008, -2.1953125, 0.9116211, -0.7836914, 0.9448242, 0.9326172, -3.3105469, -1.7675781, -0.47045898, -0.28027344, -0.060699463, 0.72558594, 0.7714844, -0.17785645, 0.1940918, -1.0341797, 1.3955078, 3.8105469, -0.9165039, 3.1796875, -1.7041016, -0.010826111, 1.2490234, -1.5419922, -1.6269531, 1.484375, 0.921875, -0.1303711, -1.0927734, -0.08465576, -0.43920898, 1.0146484, -4.3085938, 1.0478516, 0.3474121, -3.2675781, 1.0458984, 2.0078125, 1.3427734, 1.34375, -0.18811035, 0.111206055, -0.30249023, 1.5585938, -1.8125, 0.87158203, -0.46728516, -0.6640625, 1.2822266, 2.5898438, 2.0742188, -0.84716797, -0.5620117, 1.5175781, -1.4755859, -1.2490234, 0.31420898, -0.5058594, -1.4052734, 0.92626953, 2.5976562, 2.6757812, 1.7910156, -0.35791016, -1.8388672, 0.765625]}, "B0179IK62C": {"id": "B0179IK62C", "original": "Brand: Broil King\nName: Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nMake the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results\nDurable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready\nDo more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb\nMake your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space\n", "embedding": [-1.9296875, -0.7241211, 1.4824219, 1.5488281, 0.34570312, 0.19750977, 1.203125, -1.0429688, -0.51416016, 0.83496094, 1.6640625, -0.1348877, 0.14355469, -1.5175781, 0.22631836, -1.1396484, 0.09472656, 0.86865234, 0.86035156, -0.25854492, -0.09454346, 0.84814453, 1.6240234, -1.4824219, 0.5522461, 0.23535156, 2.8691406, -3.5898438, -1.8916016, -1.7607422, 2.3046875, 0.48950195, -0.8930664, 1.3789062, -1.6337891, -1.4990234, -1.421875, 0.57373047, -3.75, 1.1132812, 0.100097656, -1.5478516, -1.2480469, 0.13366699, -2.5078125, 0.86376953, 1.4970703, 1.8681641, -2.5566406, 0.4560547, 1.7304688, 1.8095703, -0.1763916, 2.3066406, -0.7480469, 0.84277344, -0.1953125, -1.7119141, 0.118652344, -1.5068359, 2.453125, -0.15966797, -0.82421875, 0.34521484, -1.2734375, 1.5351562, 0.75390625, 0.38061523, -1.0410156, 0.24414062, 1.3847656, -1.8203125, -0.8227539, 0.29248047, -0.41064453, -1.8193359, -2.9414062, 1.3398438, 0.22143555, -1.2802734, -2.453125, 4.0703125, 0.9628906, -1.4589844, 0.23217773, -0.02835083, -0.77441406, -0.75146484, 1.7666016, 0.6303711, 1.0205078, 0.59228516, -1.7324219, -3.546875, 2.4882812, -1.0478516, 0.6982422, 0.31762695, 1.2060547, 1.6572266, -0.022109985, -0.10601807, -0.5854492, -0.79296875, -2.1816406, -3.1015625, 2.2675781, -0.16516113, -3.1015625, -0.7163086, -1.3505859, 0.02696228, 1.5986328, 0.6279297, 1.2861328, 1.0664062, -0.10412598, 3.9667969, 0.8876953, 0.29589844, 2.5214844, -1.0371094, 2.2851562, -1.1015625, 0.3269043, 1.7539062, -1.7900391, 1.3173828, 4.2617188, -0.02784729, 0.58935547, -1.8847656, 2.6074219, -0.38232422, -1.1933594, -2.34375, -1.0068359, 0.037750244, -4.5, 0.36254883, -2.5058594, 1.6298828, 0.35253906, -0.81347656, -3.3378906, 1.1699219, -0.8544922, 0.56884766, -1.2646484, -1.5039062, 0.16223145, -0.6899414, 3.2539062, -3.7792969, 2.6777344, -0.4243164, -2.0351562, -2.2421875, 2.4765625, 0.74072266, 0.57373047, -1.8388672, -1.0302734, 0.85498047, -1.7021484, 0.20263672, -0.7519531, 1.4355469, 0.7597656, 1.6025391, -0.23828125, -1.3476562, -1.3212891, 0.09472656, 0.95654297, -0.21069336, -1.4296875, 1.2519531, -0.50878906, 0.49829102, -0.77001953, -3.9921875, 0.4638672, 0.86816406, 1.0107422, -1.6162109, 1.0927734, 0.7475586, 2.0488281, 0.10675049, -0.95410156, 0.03665161, 0.51464844, 0.22351074, -0.27246094, -0.85253906, -0.9614258, -2.3359375, 1.3574219, -0.16674805, -0.9394531, -1.1582031, 0.83496094, -0.39746094, -2.5429688, -2.7792969, 0.72753906, -2.3925781, 0.27075195, 2.3222656, 0.6479492, -1.4775391, 0.25219727, -1.1962891, 0.82910156, -3.7539062, 0.091552734, 1.3037109, 1.3251953, 3.6699219, 0.72314453, 0.3408203, 1.4082031, 0.69189453, 0.14367676, 1.1611328, -0.18920898, 1.6503906, -1.9130859, -1.8486328, 2.5136719, 0.08001709, -0.83740234, 1.1074219, -1.0117188, 2.1914062, -0.069885254, -0.8671875, 0.045440674, 0.19116211, -0.55810547, -1.9912109, -1.0498047, -2.28125, -0.9404297, -0.21936035, -0.55078125, 1.7050781, 1.4082031, -0.45825195, 0.7314453, 0.32373047, 0.9189453, 0.1706543, -0.5307617, 1.71875, -0.7270508, 0.5385742, -2.0371094, -2.78125, 0.97998047, 1.1201172, 0.04928589, -0.06359863, -0.05883789, -2.2128906, 3.1582031, 1.4990234, -1.6582031, -2.2890625, -1.5615234, -0.40014648, 2.0449219, -1.9189453, 0.5239258, 1.9658203, -1.4482422, 4.4101562, -0.14331055, 1.4941406, 1.1484375, -0.92285156, 1.4882812, -1.9599609, -0.26660156, 1.4189453, 1.9443359, -1.5449219, 1.1289062, 0.1652832, 5.6171875, -0.30664062, -1.6367188, 2.5136719, -0.8359375, -0.6635742, 3.8085938, -0.1328125, -1.2324219, -2.2167969, 2.015625, 0.7817383, 1.9873047, 0.07421875, -0.19348145, -1.4208984, 0.14086914, 1.8847656, -1.2871094, -0.020004272, -0.04901123, -0.43359375, -3.0957031, 0.3383789, -1.6113281, -1.4824219, 4.0742188, -2.75, 2.6464844, 0.94677734, 0.11566162, 1.71875, 0.9433594, -1.8613281, -0.11993408, 0.3930664, -0.041290283, -0.1607666, -1.5292969, -0.21289062, -0.026306152, -0.50683594, -1.3857422, -0.6459961, -3.3300781, 0.81103516, -2.9257812, -3.4003906, 0.48364258, -1.6279297, -1.1464844, 1.6015625, -1.6367188, -1.0869141, -0.45092773, -2.1503906, -0.8125, -1.6201172, 1.2822266, 0.074279785, 1.1533203, 0.45507812, 1.1337891, -3.8417969, -0.98535156, -1.2802734, -0.4272461, -0.28295898, 0.7470703, -1.8613281, 0.8076172, -0.46166992, -1.8085938, 0.4387207, 0.9350586, -0.6669922, 0.19140625, -2.2675781, 2.4863281, -2.6308594, 1.0966797, -1.9384766, 1.0986328, -2.9121094, -2.7246094, -2.703125, -0.9550781, 3.9101562, -0.74658203, 2.5, -1.3798828, 0.5317383, 1.453125, -0.5756836, -1.6064453, -0.5566406, 0.94677734, -1.8457031, 1.5039062, -1.9277344, 0.31103516, 1.2705078, -1.0957031, -1.9619141, 0.8964844, -1.9316406, 2.8320312, -1.6933594, -0.5390625, -0.69873047, 3, -0.9121094, -1.3056641, -1.140625, -1.2880859, -1.9023438, -2.0117188, 0.059295654, 1.2265625, -2.359375, 1.3466797, -0.042419434, -0.44213867, 2.0878906, -0.2244873, -3.9960938, 2.2050781, -0.26464844, -3.5996094, 4.2851562, -1.1367188, -0.2770996, -1.0537109, -0.16784668, 2.9433594, 0.52246094, 3.8203125, -0.12463379, 0.29956055, 1.5283203, 0.7163086, 0.5810547, -0.85595703, 0.82177734, 1.6757812, -0.5678711, -1.9697266, 0.7861328, 1.7958984, -3.0644531, 0.045959473, 2.2832031, 1.3115234, 2.9394531, 1.9082031, -0.5727539, 1.3613281, -0.51904297, 1.4521484, 1.2675781, 0.9111328, 0.33032227, -1.4130859, 0.5292969, 0.20983887, 1.4619141, 2.7539062, 0.6796875, 2.4824219, -0.9785156, -0.21984863, -0.54052734, 0.2746582, 0.9116211, 1.2695312, 0.32543945, 2.4746094, -0.9067383, 0.6201172, -0.5917969, -0.5595703, -0.15979004, -1.7167969, -0.61328125, 1.6337891, 0.113464355, 0.8984375, -0.39038086, 0.55615234, -0.13586426, -1.9345703, 1.9726562, -1.2587891, 0.26391602, 0.10675049, 0.08123779, -0.91552734, -2.4472656, 2.5234375, -1.6582031, -0.1194458, -0.24951172, 2.6582031, 0.28198242, -0.69970703, 1.5722656, 0.39672852, -1.8808594, 1.0244141, 0.6933594, -1.0517578, 2.703125, -2.0507812, 2.0332031, -0.0115356445, -1.5751953, 0.05493164, -1.3398438, 1.2041016, -0.5805664, -0.62597656, 1.7441406, 0.64746094, -0.8798828, 0.29956055, -4.4375, 1.6796875, -1.1396484, -1.015625, -0.88916016, 2.3007812, 1.5429688, 0.75341797, -0.38623047, 3.0253906, 0.11395264, -0.42578125, 1.0830078, -5.1679688, 0.33740234, -3.6601562, -2.578125, 0.55615234, -0.3178711, -0.515625, 0.30566406, -0.88378906, -0.09088135, 3.1953125, -1.0244141, -0.31689453, -0.4206543, 0.37158203, 0.06274414, -0.49951172, 0.070007324, 0.016815186, 1.4970703, -0.111083984, -3.9394531, -0.86865234, -1.15625, 2.1425781, 1.6611328, -3.7480469, 0.20446777, -1.1083984, 0.31860352, 0.2626953, -1.4267578, 1.4873047, -1.4746094, 0.7480469, -3.40625, 1.4345703, 0.53125, 1.2294922, 0.121398926, 0.6586914, 0.007423401, -1.0068359, -0.9296875, -0.53759766, 2.078125, 0.75927734, -2.890625, -2.515625, 0.4404297, 0.94921875, -2.5292969, 1.9404297, -1.5830078, -0.8261719, 0.64208984, 0.5463867, 1.1386719, 2.0800781, 1.171875, -0.17797852, -1.6708984, -0.019180298, -0.85595703, -0.026733398, -0.5517578, 1.0117188, -0.99902344, -0.099731445, -1.3417969, -1.3154297, -2.640625, -0.42163086, -4.21875, 2.8222656, 4.265625, 1.3964844, 1.6767578, -2.0507812, 0.4411621, -0.9638672, -0.044647217, -3.234375, 1.3349609, -1.2929688, 0.21166992, 1.6015625, 0.85498047, -1.1103516, -0.46850586, 2.5117188, -2.1191406, -1.3867188, -2.1660156, 0.75146484, -2.1171875, -0.6669922, 2.1953125, -0.12878418, 4.0703125, -1.2792969, -1.4462891, 0.7578125, 1.4638672, -1.4511719, -0.5683594, -1.1123047, 0.5761719, 1.8515625, 1.4443359, 2.3261719, -0.36621094, 0.2548828, -0.5024414, 2.3183594, -1.109375, 1.0146484, 0.8203125, 0.21679688, -1.7177734, -0.5449219, 1.5117188, 1.3388672, 0.81347656, 3.3984375, 1.3076172, -2.4941406, 1.453125, -0.4638672, -3.3535156, -0.001917839, 0.5131836, -1.5654297, 0.5966797, 0.2130127, -3.2988281, 0.05114746, 1.9082031, -0.3100586, 2.046875, -0.49682617, -1.8330078, 1.7089844, -0.22619629, -0.1928711, -0.98828125, 1.1181641, 1.5546875, 0.51464844, 1.7792969, -0.87353516, -0.23669434, 0.47705078, -0.26635742, -2.46875, 2.0761719, -0.1817627, -1.2431641, -0.34375, 0.5878906, -1.5693359, -1.0107422, 2.765625, -0.095581055, 1.5341797, -0.0826416, 2.8964844, -1.4736328, 0.84277344, -1.8740234, 2.3496094, -0.15820312, -2.234375, 3.0488281, -3.0839844, 1.2304688, -2.7363281, 0.61279297, 0.034942627, 1, 0.59277344, -1.0175781, -1.2138672, -0.22375488, -3.0859375, -4.2617188, -1.34375, 0.4951172, 1.4169922, -1.3232422, 1.1933594, -0.9321289, 0.9140625, -0.6069336, -1.6386719, -2.3242188, -0.60302734, -0.20739746, 0.014122009, -1.9238281, 1.8867188, -0.4560547, 0.14294434, 0.3449707, 1.421875, 1.1708984, -2.6796875, -1.0175781, 2.3222656, -2.8144531, 0.5214844, 0.6230469, -0.6279297, -2.1484375, -0.39916992, -0.4675293, -0.81689453, 2.6425781, -2.0839844, -0.036834717, 1.9765625, -1.5742188, -0.46850586, 0.9008789, -2.1035156, 1.3759766, -1.8867188, 1.2080078, 0.14855957, -0.55371094, 1.0576172, 0.76464844, -2.1230469, -0.1217041, 1.4824219, 0.44360352, 0.7216797, 0.73095703, -1.7089844, 0.50341797, -1.5126953, -2.484375, 0.60595703, -1.9423828, -0.5546875, -1.8134766, 0.96728516, 1.2998047, -0.89208984, 0.7270508, -0.43603516, -0.9511719, -1.2480469, 0.71435547, -2.1464844, 2.8496094, 2.5039062, -2.0507812, -0.27539062, 1.6962891, -1.0585938, 3.8632812, 0.11981201, -1.3730469, 0.17211914, -0.28833008, 0.39086914, 0.37109375, 1.5029297, 2.0566406, -0.1940918, 0.9511719, 1.1582031, 3.6660156, 1.0537109, 1.8164062, 0.8925781, -0.93847656, 0.28027344, 5.921875, 3.7539062, -2.7402344, 0.75878906, -1.4511719, 1.1181641, 2.8984375, -0.5395508, -1.4150391, -1.8876953, -0.40185547, -2.1582031, -1.2714844, -3.8945312, 0.61621094, -0.014846802, -1.8154297, -0.59033203, 1.5332031, 1.0507812, 2.2324219, 1.3466797, 0.91845703, 0.3840332, 1.0654297, 0.38745117, 0.39086914, 1.2822266, -2.1523438, 2.0410156, -0.3395996, -0.26904297, -1.2705078, 1.8085938, -0.28588867, 3.5058594, 2.7265625, 0.40576172, 4.3554688, 1.8974609, 3.1503906, 0.62597656, 1.7402344, 1.5986328, -0.8178711, -1.6640625, 1.2265625, 1.7695312, -0.06085205, 1.2431641, 1.9228516, -0.7114258, -0.9785156, 0.04840088, 0.09710693, -0.17700195, -0.08123779, 1.9941406, 1.6894531, -0.4248047, -1.5253906, -0.23242188, -0.83740234, -0.21960449, -0.24072266, -1.4335938, 3.4199219, -0.43530273, 1.7685547, -0.5263672, 1.0722656, 1.7734375, -1.7929688, -0.6899414, 0.69970703, -0.0289917, 0.88183594, 2.1914062, -0.25708008, -0.6298828, 1.0761719, 1.1337891, 0.99658203, 0.99658203, -0.077941895, -2.7890625, 0.84521484, 2.5195312, 3.2226562, -1.0761719, -1.3144531, 2.4785156, -0.20727539, -2.1289062, -2.7363281, 2.1933594, 2.1308594, 1.0048828, 2.7382812, -2.75, 2.3222656, 0.15490723, 1.0332031, -3.5195312, 0.3408203, -0.55859375, -0.87402344, -0.008415222, 1.8515625, -1.6162109, 1.5224609, 3.1367188, -0.58935547, 1.8339844, -1.0087891, 0.9980469, 1.4238281, 2.25, -0.7817383, 0.6826172, 0.031051636, 2.7949219, 1.2314453, -1.90625, -2.28125, 1.4023438, 0.7241211, 1.234375, 0.81689453, -1.2207031, -0.52197266, 0.40966797, 0.4814453, 0.8959961, -1.9873047, -1.2275391, -1.5175781, -0.38549805, -0.2902832, -3.6503906, 2.8183594, 1.9238281, 0.9423828, 0.053619385, 2.8496094, -1.0029297, 0.6411133, -0.033416748, 0.030258179, -1.5048828, -1.5664062, 1.2851562, 2.2480469, -2.3769531, 0.24047852, 1.5292969, 0.9008789, -1.5351562, 0.18151855, -0.6220703, 0.3408203, -0.1227417, 1.1660156, -2.6074219, -0.3088379, 2.3105469, -0.088256836, -0.8125, 2.3457031, 0.81884766, 1.171875, -1.0244141, -0.52685547, -0.8496094, 0.64160156, -1.2998047, -0.57421875, 0.9321289, 1.9208984, -0.29541016, -1.3017578, -3.4277344, -1.1298828, -2.9394531, 0.9765625, -2.8378906, 0.45385742, 0.77197266, 0.5551758, 2.3300781, 0.96728516, -1.3466797, 0.75097656, 0.29418945, -0.3371582, 0.74365234, 0.9404297, -0.5698242, 0.8964844, -1.4541016, 0.50634766, 2.8417969, 0.7006836, 0.9433594, 2.0839844, 0.24707031, -1.5019531, 1.4111328, 0.52734375, -1.1474609, -0.44433594, 0.609375, 1.2109375, -0.25317383, -0.6459961, -1.2675781, -2.8984375]}, "B08KSLN5VC": {"id": "B08KSLN5VC", "original": "Brand: GasOne\nName: GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag\nDescription: \nFeatures: EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle\nDIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck\nHIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage\nCONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation\nHIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease\n", "embedding": [-1.3476562, 1.0556641, 1.4580078, -0.0084991455, -0.8095703, 1.9316406, 0.5595703, -0.56347656, -0.9926758, 2.5449219, 1.8027344, -0.5292969, 0.30419922, -1.8886719, 0.5625, 0.30688477, -0.61279297, 1.2666016, 0.14550781, 1.2470703, 2.9921875, -0.12512207, 1.1835938, -0.12414551, 0.6166992, 2.0898438, 3.7246094, -2.4199219, 0.86865234, -0.15612793, 2.0703125, -0.62646484, 1.2587891, 2.9082031, -2.8066406, -1.2509766, -2.171875, 0.6479492, -2.5195312, -1.6103516, -1.2421875, 0.111572266, 1.4628906, 0.33154297, -1.8964844, -0.6982422, 0.52441406, 0.07208252, -0.7265625, 0.089782715, -0.35791016, 1.9208984, -1.4902344, 2.4121094, -2.6933594, -0.078063965, 1.0927734, -1.2578125, 1.9101562, -0.25805664, 0.36035156, 0.26538086, -0.6821289, -0.20263672, -1.8535156, -0.32177734, 0.6118164, -1.2109375, -2.4238281, 0.06365967, 2.3339844, 0.5517578, 0.6977539, -0.99072266, -0.8125, -0.013595581, -2.4726562, 1.9414062, 1.2900391, 0.36621094, -1.5527344, 2.8613281, -0.094055176, -0.2631836, 1.2607422, -0.58935547, 0.060028076, 0.43969727, -0.023544312, 0.8378906, -3.2421875, 3.2636719, -1.6142578, -5.046875, 1.2216797, -1.1611328, 1.4628906, 0.91015625, 2.5117188, 0.74072266, -0.78808594, -0.09112549, -0.004878998, 1.6220703, -2.1660156, -2.1855469, 3.1660156, 1.0029297, -2.2578125, 0.7519531, -2.2363281, -1.7666016, 0.734375, -0.4345703, 0.8203125, -0.10882568, -0.6484375, -0.2199707, 3.2597656, 0.10076904, 4.0976562, -1.2529297, 1.0361328, -1.0800781, -0.16992188, 1.4599609, -1.5605469, 0.16357422, 3.546875, -0.5942383, -1.5732422, 1.4033203, 1.2695312, -1.4199219, -0.6352539, -1.6650391, -1.8164062, -3.8632812, -3.2285156, -0.08026123, -2.4863281, 1.6875, 2.0527344, 0.075683594, -4.203125, -0.18432617, -1.7197266, 2.2285156, 1.2744141, -2.1269531, -0.03161621, -0.78271484, 0.23022461, -1.9453125, 3.2519531, 1.5253906, -1.2460938, -1.0810547, 2.3476562, 1.7480469, 1.2958984, -1.6503906, -2.2949219, 0.7265625, 1.78125, -2.09375, 0.9121094, 1.5830078, -1.4755859, 0.70458984, 0.7026367, -1.8046875, 0.3461914, 0.8144531, 1.5078125, -0.012107849, -0.37670898, 3.28125, -0.0287323, -1.6787109, -3.0957031, -3.7929688, 2.1464844, 0.81689453, 0.55322266, -1.6826172, -0.056518555, -0.66503906, -1.2216797, -1.8066406, -0.62402344, 1.0009766, -0.6870117, -0.5683594, 0.32080078, -2.1484375, -1.4892578, -0.89453125, -0.43017578, 0.578125, -0.0637207, 0.2746582, 0.6015625, 2.3359375, -1.6943359, -1.4492188, 2.4257812, -1.7060547, 1.5634766, 2.6972656, 0.099975586, 1.0195312, 2.3808594, 0.9658203, -2.2675781, -0.7910156, 2.4863281, 2.296875, 2.3867188, 0.8774414, 0.9135742, -1.8056641, 1.3730469, 1.1953125, -0.42333984, 2.7773438, 1.2158203, 0.4489746, -0.19689941, -2.3789062, 1.5800781, 0.9042969, 0.6479492, 0.4794922, 0.07910156, 3.2519531, 1.2041016, 0.33813477, -1.0429688, -1.0273438, -1.6357422, -0.5444336, -1.5146484, 1.0927734, -3.3828125, -0.5151367, 0.51953125, -1.2011719, 2.7167969, -0.8378906, 0.3022461, 0.25830078, 0.16052246, 0.5722656, -2.2421875, 0.4736328, 0.78271484, 0.9086914, -0.8544922, -0.43701172, 1.2167969, 2.5371094, 0.8413086, -0.12573242, 0.057769775, -0.9580078, 1.4355469, 0.9765625, -1.8876953, 0.18554688, 1.9638672, 1.5439453, 3.5390625, -1.6005859, 2.703125, 0.8574219, -1.5429688, 2.6679688, 0.33618164, 1.5859375, 0.65527344, -1.4326172, 1.9902344, -1.8349609, 0.03881836, 0.60595703, 3.015625, 0.37402344, -1.0869141, 0.2824707, 5.3203125, -1.1816406, -3.0507812, 1.9394531, -1.9716797, 0.33129883, 1.4560547, 0.15490723, 0.54052734, -0.30639648, 1.0927734, 0.08862305, -0.9638672, 0.6220703, -1.7705078, -0.80908203, -0.80078125, -2.1816406, 0.1430664, 1.0546875, -1.8740234, -1.2236328, 0.30126953, 0.61865234, -3.6210938, 0.19799805, 3.5625, -1.421875, 0.0059165955, 1.5869141, 0.80810547, 2.2460938, -0.63720703, -2.1679688, 0.67089844, 1.34375, -0.93310547, 1.9267578, -0.7602539, 0.28979492, 0.4909668, -2.3007812, 0.22521973, -0.88183594, -0.8564453, 0.011772156, -0.9941406, -3.4316406, 1.0546875, -1.1054688, -1.8212891, 1.3486328, -3.0136719, 1.9072266, -1.640625, -2.5976562, 0.2019043, -0.12414551, -0.28125, -1.3242188, 1.0322266, 1.6865234, 0.013832092, -2.4707031, -1.4990234, 0.5571289, 0.2631836, -1.1054688, -1.1503906, 1.203125, 2, 0.03930664, -0.63183594, 0.6201172, -0.37060547, -1.8486328, 1.3916016, -4.3203125, 1.5400391, -1.3017578, 1.0888672, -0.8671875, -0.5625, -2.5273438, -1.859375, 0.9243164, 0.016403198, 3.9199219, -0.85009766, 1.5898438, -0.44604492, -1.3671875, -0.5957031, -2.1230469, -1.4677734, 0.48266602, 1.1611328, -2.09375, 0.2446289, -4.203125, 1.8515625, -2.640625, -0.40625, -0.36889648, 1.1953125, -1.9638672, 1.5185547, -1.1728516, -0.38598633, -0.84716797, -0.47192383, -0.23327637, -3.4453125, -1.2685547, -0.3215332, -0.9770508, 0.7973633, 0.8330078, 1.2597656, 0.22924805, 0.30639648, 1.7636719, 0.01109314, 0.7729492, 1.5224609, -3.8398438, 2.5820312, 0.9194336, 0.28344727, 0.7163086, -1.0859375, -1.4638672, -1.171875, 0.7709961, 1.7021484, 0.23388672, 3.4628906, -0.26904297, -0.69970703, 1.3291016, 0.92089844, 0.5859375, -1.1757812, 0.7919922, 2.1953125, -1.6621094, -2.0136719, 0.49731445, 1.4414062, -3.1679688, -0.91552734, 0.41577148, -0.21911621, 1.0458984, 1.5146484, -1.1582031, -0.9067383, 0.32885742, 1.9433594, 1.328125, 0.53808594, -0.7216797, 0.05847168, -0.42382812, -0.8779297, 0.3149414, 0.78466797, 3.5605469, 1.5175781, 1.1455078, 1.1445312, -2.5527344, 0.2861328, 0.8339844, 0.14550781, 0.38208008, 3.1210938, 0.16516113, -0.9370117, -1.2705078, -0.6147461, 0.65478516, -0.38061523, 1.7089844, 0.7011719, 0.4453125, -0.61035156, 0.3544922, -1.6699219, -0.83984375, -2.5839844, 2.578125, -0.38378906, -1.4824219, 1.8964844, -0.9238281, -0.58203125, -1.3964844, 1.7119141, -0.17138672, -1.0419922, 0.089904785, 1.1298828, -3.5957031, -1.5585938, -2.0390625, -1.2578125, -0.030258179, 3.5683594, 1.3544922, -1.7451172, 1.8779297, -0.20288086, -0.21972656, 2.9355469, -0.578125, 0.09472656, -1.9599609, -0.15429688, -0.4946289, -0.15344238, 0.6982422, 1.6015625, -2.8769531, 1.0673828, -2.9277344, -0.24230957, 1.6660156, -1.5224609, 0.34521484, 0.5048828, -0.4885254, 2.6230469, -2.1933594, 3.9296875, 0.101623535, -1.4423828, 2.2324219, -2.453125, -1.0351562, -2.5742188, -2.2148438, 1.4248047, -1.0351562, 0.0501709, 4.125, 0.29296875, 0.15820312, 0.89453125, 1.578125, -2.1132812, -1.3027344, -0.6020508, 1.4091797, -2.0273438, -0.21936035, -0.77734375, 1.0458984, -2.2753906, -2.015625, 0.5024414, -0.6069336, 0.69384766, -0.26635742, -0.77685547, 0.18359375, -1.46875, 0.5444336, -0.9160156, -0.3408203, 0.2919922, -0.53759766, -1.0947266, -0.8647461, 2.3457031, 0.3305664, -0.29345703, 0.28149414, 3.7460938, 1.7958984, -0.8598633, -0.7763672, 1.3134766, 0.7084961, -0.5131836, -3.015625, -3.0351562, -1.9462891, 0.9482422, 0.0836792, 0.34716797, -2.4023438, -2.3046875, 1.5048828, 1.4248047, 0.3227539, 2.2070312, 0.859375, -1.5419922, 0.66064453, 0.15905762, -1.6162109, -2.8925781, 0.48754883, -0.07006836, -1.0820312, -0.07244873, -1.0195312, 0.22790527, -0.76220703, 0.030075073, -0.7714844, 1.234375, 0.99316406, 0.8383789, 2.9648438, -1.453125, -0.85546875, 1.1376953, -0.6621094, -0.5048828, 0.67578125, -0.23620605, -0.049591064, 2.3339844, 1.7666016, -2.3085938, -1.5673828, 1.7880859, -0.41796875, 0.23840332, -1.0712891, 0.89697266, -2.1367188, -0.5776367, -1.4755859, -1.0957031, 2.2246094, 0.5385742, 1.4785156, 0.46972656, 0.7739258, -2.4980469, -0.14697266, 0.6748047, 0.63183594, 0.7788086, 1.1855469, 0.8129883, -0.14147949, 1.5722656, -0.45166016, 1.6123047, 0.8486328, 1.1396484, 1.2070312, 2.1425781, -2.2578125, -0.09851074, 1.1699219, 2.7714844, 1.2021484, 2.2421875, 1.3115234, -1.0332031, 1.2304688, 0.3227539, -0.6201172, 0.059448242, -1.2470703, -1.3007812, 2.5527344, -1.8203125, -1.7021484, 0.14221191, 2.6035156, -0.8144531, 2.2890625, -0.3310547, -1.6425781, -0.5776367, -3.6738281, -1.6425781, -1.7421875, -1.328125, 0.24853516, -2.0273438, 0.6040039, 0.23461914, 1.7236328, 2.8554688, 0.8359375, 0.10180664, 1.8808594, -0.91748047, 2.2714844, 1.1191406, -0.7392578, -4.1210938, 1.203125, 0.78808594, 0.94628906, 0.88183594, 1.2050781, 0.69970703, -1.3740234, -1.6728516, -1.6083984, 1.46875, -3.1367188, -1.640625, 0.85595703, -0.32666016, 0.69433594, -0.94628906, -0.09112549, -0.30297852, 1.2617188, 0.7446289, 0.41455078, -1.1591797, -0.40576172, -3.3964844, -5.5117188, -1.4580078, 0.2578125, 0.42895508, -0.15344238, -0.9584961, -1.3642578, -0.28759766, 0.9423828, 0.11328125, -2.4589844, 0.6191406, 0.7109375, 0.029220581, -1.8701172, 0.29296875, -0.19274902, 1.4238281, 0.8310547, 0.26831055, 0.1005249, -0.91308594, -1.4892578, -0.14501953, -1.1923828, -1.0126953, 0.3527832, 0.12805176, -0.84521484, 0.32348633, -0.17138672, -2.8046875, 1.5908203, -1.125, -1.1367188, 0.25756836, -1.2226562, 1.2587891, 0.24865723, -2.0292969, 1.4023438, -1.2939453, 0.4543457, -1.109375, 1.90625, 1.7265625, 2.3183594, 0.101989746, -1.0009766, 3.1464844, 0.7055664, 0.13476562, 2.9160156, -0.37695312, -1.2558594, -2.7363281, -1.5253906, -0.8774414, -2.0527344, -0.20141602, -0.15551758, 0.44335938, 0.68115234, 0.76464844, 0.7631836, -0.28759766, 0.30419922, -0.8901367, 0.81103516, -1, 3.9335938, 0.171875, -0.86035156, -3.3164062, -2.6992188, 1.1191406, 0.62597656, -0.7270508, -0.06866455, 1.2460938, -1.2246094, -0.31225586, -0.23706055, 2.2636719, 1.0625, 1.8535156, -1.5732422, 2.2148438, 3.4902344, 0.69970703, 2.4375, 0.4423828, 0.9116211, -0.63183594, 1.9736328, -0.65722656, -1.1484375, 0.9658203, 0.30737305, 2.0800781, -0.17272949, -1.5439453, 2.0234375, -0.20446777, 0.010261536, -2.4746094, -0.9526367, -3.7910156, 1.7109375, 1.546875, -0.94189453, 0.8520508, 1.9277344, -1.1542969, 0.9238281, 2.59375, 1.5830078, -3.4003906, -0.22851562, 0.6669922, -0.47216797, 0.7548828, -0.9477539, 0.2692871, 2.9726562, 0.22131348, -0.43164062, 4.0664062, 1.0693359, 2.4511719, 1.7705078, 1.8623047, 3.0234375, 0.6352539, 2.9414062, 0.56152344, 0.04498291, 3.3261719, -0.8613281, 1.4736328, 2.328125, 0.66259766, 0.33251953, -1.2919922, 1.0332031, 0.48583984, -2.1035156, -0.08605957, 0.4633789, 0.36694336, -4.6289062, 0.56103516, -0.41381836, 0.08905029, 0.69384766, 1.8916016, -1.6005859, -1.3740234, 0.41992188, 0.7285156, 0.37329102, -1.0332031, -1.4267578, -1.2451172, 0.30688477, 1.7412109, -0.16845703, 0.67871094, -0.5786133, -2.2246094, -0.7158203, 1.7363281, 1.5859375, 0.87353516, -0.1932373, 2.3867188, 1.8662109, -0.7861328, 0.34985352, -2.6230469, 1.2167969, -1.2714844, 2.5566406, 0.17932129, -1.5107422, 2.7324219, -0.64501953, -2.1894531, -3.0488281, 1.8632812, 1.4707031, 1.265625, 1.4853516, -2.9140625, 1.5029297, 0.12756348, 0.5683594, -3.2324219, 1.3300781, 0.42895508, -1, -2.1015625, 0.8701172, -0.16174316, 3.078125, 1.3818359, -2.1816406, 0.44213867, 0.67626953, 1.1962891, -0.49121094, -0.007408142, 0.25390625, 2.8261719, -1.6904297, 2.734375, 0.69189453, -0.45654297, -1.4736328, 2.4804688, 2.234375, 0.92822266, 0.6176758, -2.1582031, 2.6328125, 0.89697266, 0.6689453, -0.024002075, -1.7734375, -1.0576172, -1.2363281, -1.0439453, -1.0683594, -1.7685547, 1.1162109, -0.47729492, -2.359375, 0.49731445, 2.0878906, -1.1289062, -0.88183594, 0.5805664, -0.60839844, -0.33569336, -1.6679688, 0.13171387, -1.6767578, -1.078125, 0.07696533, -0.63378906, -0.43823242, -2.3398438, 0.9482422, 0.1932373, 0.55859375, 1.4248047, 0.89453125, -0.58935547, 0.51123047, -0.4736328, 0.07788086, 0.3779297, 2.84375, -0.5805664, -1.1914062, 0.5854492, -2.3632812, -1.1054688, -1.8535156, 0.3947754, -0.13208008, 2.0546875, 0.59716797, 1.3027344, -2.3359375, -1.875, -0.34814453, -3.3535156, 0.34521484, 1.5507812, -0.9770508, -0.007194519, 2.5175781, 1.9277344, -1.453125, 0.23571777, -2.4726562, 1.1640625, 0.6308594, -0.9785156, 0.32080078, 1.1474609, -1.1630859, 0.19152832, 3.4804688, 2.3203125, -0.62646484, 1.4365234, 1.2490234, -1.2529297, -2.6347656, 1.21875, -1.8476562, 0.54003906, 0.34985352, -0.66015625, 2.3007812, 1.2861328, -1.3925781, -1.6767578, -1.4003906]}, "B083VS1N2M": {"id": "B083VS1N2M", "original": "Brand: Baja\nName: Baja 900-Watt Propane Powered Inverter Generator, BAI911LP\nDescription: \nFeatures: \n", "embedding": [1.2236328, -0.93896484, 2.0332031, 0.7128906, -1.6660156, 0.85498047, 0.6972656, -2.5976562, 1.3164062, 1.65625, 1.6865234, 1.1162109, -0.42504883, -1.5517578, 0.9277344, 1.0712891, 1.7626953, 1.9257812, 1.0019531, -1.03125, -0.25585938, 0.71777344, 0.38598633, -1.0517578, 1.8613281, 0.64697266, 7.0273438, -2.4492188, -2.0039062, 0.05795288, 0.50097656, 0.04196167, -2.0585938, 2.4316406, -1.0244141, 1.6015625, -0.18457031, 0.49072266, -2.7695312, -0.10498047, -1.4248047, -1.5488281, 1.0957031, 1.3828125, -2.3359375, -1.5488281, 0.5800781, 0.15966797, 0.118896484, -0.9658203, 0.8071289, 0.73828125, -0.8666992, -0.5078125, -0.26782227, 1.9140625, -1.1884766, -1.3291016, 1.8164062, 1.734375, 1.3271484, 0.4255371, -0.9453125, 0.72558594, -0.9423828, 0.9267578, -0.7739258, -0.828125, 0.14978027, 0.036499023, 3.390625, 0.6738281, -1.0175781, -1.2353516, 0.06414795, -0.29833984, -4.7734375, 1.0693359, 1.3847656, -0.07220459, -0.2097168, 0.14770508, 1.7880859, -2.3828125, 0.5385742, 0.09246826, -2.9316406, -0.6220703, 0.1274414, 2.625, -0.23498535, 2.4160156, -2.8691406, -6.1835938, 1.5712891, -0.033996582, -2.0898438, 0.5097656, 2.6523438, 1.6113281, 1.4111328, 1.2294922, 0.9428711, -0.10461426, -1.1699219, 1.8662109, 2.2695312, 0.27246094, -2.59375, 0.13366699, -2.2167969, -1.7949219, 1.0927734, 1.6933594, 0.54785156, -0.2709961, 1.2734375, 0.040130615, 3.5976562, 1.3115234, 3.7871094, -1.1113281, 1.2089844, 0.7866211, 0.21252441, 0.7133789, -0.9926758, 1.5, 4.7773438, -0.21166992, 2.1171875, 0.46191406, 2.1113281, -0.6904297, -0.29858398, -3.1894531, -2.1308594, -2.5644531, -2.0878906, -1.4853516, -2.8886719, -0.47607422, 3.0292969, -2.0195312, -3.703125, -1.4912109, -1.7382812, -1.6259766, -2.4824219, -2.1015625, 1.0966797, -0.3959961, -1.5859375, -0.41381836, 0.7373047, -0.55322266, -1.8212891, -2.5292969, 0.59814453, 0.61328125, 0.44555664, -0.5332031, 0.05404663, 1.5332031, -0.6791992, -1.2714844, 0.20251465, 0.5864258, 0.2121582, 1.6503906, -1.1962891, -3.4804688, -0.4091797, -2.8105469, 0.1652832, -0.7553711, 0.18615723, 1.3164062, 1.6875, -0.13085938, 0.55908203, -0.87158203, -0.2590332, 0.19274902, 0.7504883, -2.4609375, -0.18591309, -1.5761719, 1.53125, -1.6220703, 0.64160156, -0.29833984, -1.0068359, 0.5371094, 0.8959961, -2.4335938, -2.8183594, 0.23840332, 3.2167969, -0.20812988, -1.5712891, 0.35546875, 0.67089844, -0.21472168, -0.76171875, -3.0839844, 1.1005859, -0.30737305, -0.5917969, -0.15893555, 2.8691406, -0.17797852, 2.8164062, -0.011550903, -0.6459961, -3.9628906, -0.5961914, -0.27124023, 1.8408203, 1.765625, 0.22192383, -0.7192383, 1.59375, -1.7949219, 1.0136719, 0.4091797, -0.15478516, 0.48828125, -3.1113281, -0.91015625, 3.2578125, 1.3916016, -1.4199219, -1.1103516, 0.09472656, 1.7890625, 0.4284668, -0.35302734, 0.061950684, 0.06732178, 1.7265625, -1.3378906, -0.5957031, -0.64453125, -0.31689453, 0.18249512, -1.6484375, 0.36767578, 2.4570312, 1.3652344, 2.2578125, 0.027862549, -1.1826172, -0.6455078, -1.234375, 0.265625, -0.072021484, 0.7910156, -0.2775879, -1.5019531, 2.125, -0.8232422, 0.23669434, -1.8730469, -0.80371094, -1.8369141, 1.7617188, -0.6826172, -2.4863281, -0.78125, 1.3046875, 1.0273438, 1.3320312, -0.1385498, 1.1152344, 1.6386719, -1.3876953, 1.5888672, -0.37426758, 2.3652344, -1.6884766, -1.5654297, -0.9189453, -2.2734375, 0.20654297, -1.3574219, -1.6347656, -1.1474609, -2.1367188, 2.2558594, 2.203125, -2.0507812, -1.7167969, 4.7617188, 0.32910156, 1.2060547, 0.95214844, -0.48364258, -0.14282227, -0.16308594, 0.3046875, 1.7597656, -0.15429688, 1.9833984, -0.265625, -1.1630859, -1.3251953, -2.1132812, 1.2666016, 0.99316406, 1.4804688, -1.3740234, -0.8803711, 1.8173828, -1.6572266, -1.0859375, -0.109069824, -3.3359375, 0.23156738, 0.2421875, -1.0351562, 1.8974609, -0.06060791, 0.60839844, 1.0683594, -0.9345703, 0.17443848, 0.77490234, 1.3613281, -1.6835938, -2.0449219, 0.027023315, 0.6196289, -1.4716797, -0.4519043, -0.47851562, -2.5117188, -0.71435547, 2.3359375, -0.73583984, -0.32177734, -0.10180664, -0.80078125, -0.8144531, 0.08679199, -1.4267578, -1.1230469, 1.1738281, -0.5732422, -2.7363281, 1.1748047, 0.45703125, 0.60546875, -3.8457031, -1.3935547, 0.70751953, -1.5029297, 1.4267578, -0.056762695, 2.2890625, 0.47216797, -0.43408203, 1.7949219, -2.5039062, 0.9526367, -0.3178711, -0.74658203, -2.1542969, 2.3164062, -0.39111328, 2.0078125, 1.6962891, 0.24536133, -1.7558594, -0.6015625, -0.04776001, -0.1439209, 5.75, -0.050720215, 0.8828125, -0.094177246, -0.3959961, 1.0498047, -0.65966797, -0.93408203, 0.1953125, -0.9008789, 0.15332031, -0.8046875, -2.6894531, 0.27294922, 0.14208984, -0.7519531, -0.12158203, -0.3869629, -0.028274536, 0.62158203, -0.8979492, 0.7192383, -0.5395508, 0.021453857, 0.8095703, -0.77783203, -1.0566406, -1.1621094, -0.7348633, 0.92089844, -1.1025391, 1.53125, -0.07739258, -1.5498047, 1.7861328, -0.5058594, 1.3613281, 0.3840332, -2.5292969, 0.75, 1.8505859, -0.5839844, -2.4882812, -0.50390625, 0.828125, -1.2070312, 0.044677734, 4.6171875, 1.6835938, 3.2871094, 1.5810547, 2.5976562, -0.67871094, -0.27978516, 0.57714844, 0.52783203, -2.2265625, 1.4882812, -0.9838867, -1.3212891, -0.47583008, 1.6855469, -2.3769531, 0.75146484, 2.2519531, 1.8671875, 1.9863281, 0.36694336, -0.020065308, 1.9726562, 1.5117188, -0.25317383, 0.59716797, -0.5551758, 0.4387207, -0.87353516, -1.3896484, 1.0986328, 1.4677734, 0.66259766, -2.0820312, 1.109375, 1.2041016, 0.5576172, 0.2861328, 1.5136719, -0.2824707, -0.83691406, 3.2226562, 0.24707031, -0.6464844, 0.6767578, 1.4921875, -0.57470703, 0.48095703, -0.70996094, -1.4853516, 2.1484375, 0.04937744, -0.5332031, 0.57910156, 0.43432617, -0.0056991577, -0.62890625, -0.08050537, 0.097717285, -1.0888672, -0.64990234, -1.0449219, 0.63183594, -0.03173828, -0.7324219, 0.69384766, -0.7949219, -1.4746094, -0.062561035, 0.044799805, -1.5566406, -0.52197266, -0.95166016, 0.9838867, 0.025970459, 0.13574219, 0.42749023, 0.007827759, 0.7338867, 0.059570312, 1.8798828, -0.74853516, 0.5107422, -1.4511719, -1.1054688, 1.3642578, 0.40722656, 0.42651367, -0.34985352, -2.2695312, 1.265625, -1.9316406, -0.6743164, 1.8320312, -0.11468506, -0.17089844, 1.8105469, -0.8491211, 2.5253906, 0.46264648, 1.4375, -1.0458984, 0.3569336, 2.765625, -2.4628906, -1.1855469, -1.3818359, -3.1914062, -0.093444824, 0.46923828, 0.7817383, 1.6523438, 0.6611328, 1.171875, 0.8334961, -0.9951172, -1.8085938, -3.6191406, 0.8076172, 2.3613281, -2.2636719, -1.0078125, 1.4609375, 1.2080078, -2.0390625, -1.0644531, 0.8154297, -0.8510742, -1.3144531, 0.734375, -0.48461914, 1.6376953, -1.3222656, 0.68603516, -1.2490234, -1.6582031, 1.8525391, -0.13342285, -1.3554688, -0.7451172, 0.92089844, 0.9536133, -1.1191406, 0.3984375, 2.5742188, 0.010894775, -0.5805664, -0.81152344, 0.58447266, 1.6640625, -0.18395996, -1.0546875, -1.3242188, -0.42797852, -1.265625, -0.97998047, 0.65234375, -1.1123047, -0.5283203, -0.35961914, -0.33813477, -0.64160156, 1.7333984, 1.9257812, -0.5366211, 0.85595703, -0.059906006, -0.7319336, -0.3984375, 0.9736328, 1.8125, -0.6201172, 0.96777344, -1.4306641, -1.2226562, 1.0634766, -1.7294922, -1.3105469, 0.25195312, 0.65234375, 0.6586914, -0.9223633, -0.87597656, -1.5029297, -0.34985352, 2.0527344, 2.5976562, 0.39794922, -0.23071289, -0.24304199, -0.17077637, 3.1972656, -1.2578125, 0.04888916, 2.0976562, -2.1484375, 0.015838623, -2.8203125, -0.39746094, -1.0830078, -1.6689453, -2.7304688, -1.8115234, 1.4414062, -0.5761719, 0.2052002, 1.8212891, 0.7758789, -1.3818359, 1.0292969, 1.5732422, 2.1035156, 2.0703125, -0.36547852, 2.171875, -0.42919922, 0.7036133, 2.8652344, 0.5073242, -3.0214844, -0.9658203, -1.1689453, -1.1738281, -1.0126953, -0.7036133, 1.8818359, -0.6567383, 0.98779297, 1.2998047, 2.2949219, -0.4777832, 1.7822266, 1.6767578, 0.80859375, 0.0680542, -1.3173828, -1.1943359, 0.1541748, 0.30371094, -2.390625, -0.4033203, 0.44213867, -0.1739502, 2.734375, -0.5151367, 0.8964844, -3.53125, -2.2460938, -0.83447266, -0.390625, 0.2010498, 1.3134766, 1.0097656, 0.82910156, 0.047729492, 0.030349731, 2.1035156, -1.0292969, -0.72753906, 2.53125, -0.2619629, -1.7148438, -0.85546875, 0.008796692, -2.4492188, -0.7265625, 3.0058594, 0.8510742, 0.73046875, 1.8916016, -0.2644043, -2.1386719, -0.7480469, -1.3496094, 0.83496094, -0.20739746, -1.1074219, 1.2128906, -0.47924805, 1.9746094, -1.1933594, -0.85546875, -0.99609375, 0.38330078, 0.36669922, 0.09362793, 0.099975586, -1.8691406, -2.0917969, -3.7128906, -2.5449219, 0.13110352, 0.8486328, 0.70214844, 0.09484863, -0.58251953, 1.2265625, 0.28686523, 0.7895508, -1.4990234, 0.0030460358, -2.8105469, -0.31982422, 0.8388672, -0.875, -1.4111328, -0.15454102, -1.9433594, -1.2773438, 0.5883789, -1.2734375, -4.5703125, -0.3215332, -0.72021484, -0.0035934448, -0.41918945, 0.24267578, 1.9628906, 2.8789062, 3.5917969, -0.87939453, 0.3125, -1.2792969, -1.7275391, 0.69189453, -0.5058594, 1.3740234, 1.9746094, -1.2109375, 0.30273438, -0.2824707, 1.4863281, 0.9296875, 1.0273438, -0.71191406, 0.65527344, 0.6923828, 0.18322754, 0.47509766, 2.6660156, 2.7871094, 0.17956543, -2.3144531, -0.36621094, -0.43237305, -0.8256836, 0.6401367, -2.1386719, 0.6582031, -1.2294922, -0.078125, 2.0234375, 1.1083984, 1.5722656, 0.20007324, 2.609375, -0.47973633, 1.7578125, -1.3408203, 3.0488281, 2.8671875, -1.7617188, -3.6328125, -1.5195312, 0.5595703, 0.40844727, 1.1943359, -3.1757812, -1.0136719, -3.796875, -1.8339844, 0.6557617, 0.29882812, 2.2734375, 0.2006836, 0.79785156, 3.0957031, 0.37426758, 0.070739746, -0.08947754, -0.034484863, 1.3427734, -1.21875, 1.7353516, 2.0097656, 0.09588623, 1.4638672, -1.3261719, 0.68896484, -0.93115234, -2.6425781, 0.52246094, -3.5371094, 1.1533203, 0.57958984, -0.671875, -3.3046875, -0.4885254, 2.0097656, -0.5263672, -0.421875, 1.1464844, -0.3955078, 0.7089844, 1.921875, 1.9121094, -1.1083984, -0.04876709, -0.94433594, -0.89208984, 2.3476562, -2, 2.8574219, 0.06121826, 0.6933594, -0.6699219, -0.9199219, -1.9873047, 2.3515625, 3.5019531, 2.3964844, 1.2773438, 1.8183594, 1.4365234, 0.36108398, 2.7910156, 0.6074219, -2.8417969, 1.6552734, 1.1464844, 0.2709961, 0.6464844, -1.8427734, -0.07324219, 1.2363281, -0.19213867, 0.7475586, -0.4897461, 0.0949707, -2.2910156, 0.3642578, -0.5161133, 4.0351562, -1.3808594, -0.39526367, -1.5078125, 2.0585938, -0.24401855, -0.6064453, 1.0488281, -0.67626953, 1.7685547, 0.03338623, 0.036193848, -0.33203125, -1.1298828, 0.23278809, 0.9472656, -0.35229492, 0.10681152, -1.2939453, -0.19348145, 0.28564453, -0.7753906, 1.2324219, 0.98583984, 0.23254395, 0.41870117, -0.6826172, 1.5361328, 1.9648438, 2.5625, 0.18701172, 0.6870117, 2.7265625, 0.2685547, -1.9355469, -3.8457031, 2.5351562, -0.20141602, 1.4423828, 0.5888672, -1.3359375, 0.91015625, -0.65283203, 2.1640625, -0.24328613, 1.953125, 0.81396484, -0.86035156, -0.30810547, 1.8730469, -0.35913086, 2.4785156, 0.92041016, -0.53564453, 1.4775391, 0.037902832, 1.140625, 0.0078048706, 2.2109375, 0.013641357, 0.7294922, -1.8388672, 1.9863281, -0.04486084, -0.5307617, 0.26733398, 1.8154297, 2.3554688, 0.68603516, 2.1035156, -1.9628906, 1.9179688, 0.55078125, 0.041259766, -1.0019531, -2.4355469, -1.0869141, 0.640625, 0.48339844, -0.6723633, 0.21557617, 1.6982422, 1.0039062, 0.5727539, -0.5283203, 1.0859375, -1.6035156, -0.8125, -1.6767578, -0.65625, -3.1308594, -0.39672852, 0.93652344, -1.0429688, 0.6738281, 0.1784668, 1.2109375, 1.1367188, -0.6855469, -2.1152344, -0.92626953, -0.80859375, -1.2373047, 1.7978516, -1.5351562, 0.5107422, 0.9013672, -0.5419922, 0.27368164, 1.0546875, -0.3774414, 0.18347168, -0.9160156, -1.1748047, -1.3554688, 0.09094238, -1.0664062, 0.7919922, 2.265625, -1.4101562, 0.97802734, -4.6210938, -2.8730469, -1.6005859, -1.6757812, 1.7460938, 0.058166504, -0.05895996, 0.79785156, 1.9003906, 3.4824219, -0.3178711, -0.018081665, 0.043884277, -1.5625, 2.1894531, 1.8330078, -0.2397461, 1.4101562, 1.4990234, -0.36206055, 1.2158203, -1.0117188, 0.29711914, 0.0670166, 1.9443359, -0.28344727, -0.41992188, 1.2294922, 2.0429688, 0.921875, 0.6791992, -1.2333984, -0.049743652, -0.5234375, 0.0949707, -1.8466797, -2.171875]}, "B07PYV2NMZ": {"id": "B07PYV2NMZ", "original": "Brand: GASPRO\nName: GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range\nDescription: How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more\nFeatures: \u3010Standard Connector \u3011Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8\" Female Flare. 5/16\" diameter LP hose\n\u3010Well Gas Control \u3011Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances\n\u3010 Max BTU Flow\u3011Providing 11\" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow\n\u3010Compatibility\u3011Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more\n\u3010High Quality\u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "embedding": [-0.3713379, 0.47924805, 0.6791992, 1.9833984, -2.4296875, 0.38891602, 0.95214844, -1.7265625, 2.2753906, 0.7783203, 0.72509766, 0.111450195, 1.2226562, -2.9804688, 2.2851562, 0.9814453, 0.6953125, 0.51904297, 1.3427734, 1.6484375, 1.2451172, -2.1132812, 3.4941406, -0.2154541, 1.640625, -2.0253906, 2.3300781, -2.5117188, -0.88378906, -0.040771484, 0.5498047, 0.7128906, -1.1425781, 1.3691406, -3.2910156, -0.38427734, -0.70410156, -0.12426758, -3.8417969, -1.4472656, -2.1621094, 0.70654297, 2.7539062, 0.51123047, -2.8144531, -0.06958008, 0.75097656, 1.4902344, -0.3642578, -0.26831055, -0.8022461, 0.18188477, -0.4802246, 0.15197754, -2.2226562, -0.09088135, -1.5478516, -2.6113281, 0.6635742, 1.5107422, 1.8681641, 0.71972656, -3.8945312, 0.49389648, -0.72558594, 1.0625, -0.19604492, -0.51904297, -0.29174805, 1.3398438, 0.60009766, 0.71875, 1.2949219, -1.4306641, -0.23950195, 1.4570312, -3.0097656, 0.2454834, 3.1972656, 1.0898438, -0.7548828, 3.3242188, 1.5302734, -2.7089844, 1.2177734, -1.2646484, -0.85839844, 0.03894043, 1.0039062, 1.9091797, -2.2304688, 2.8691406, -2.4960938, -2.40625, 1.3300781, 1.90625, 1.8339844, 2.1269531, 2.2421875, 0.24511719, -1.0009766, -0.29882812, 0.26782227, 1.1298828, -2.46875, -1.3935547, -0.44335938, 1.0009766, -2.5742188, -0.12408447, -0.12451172, -0.6982422, 2.0507812, -1.2949219, 0.3713379, -1.6894531, -2.0136719, -0.66259766, 3.1621094, 0.60595703, 2.046875, 0.31420898, 0.65625, -0.4555664, 1.9072266, 1.3876953, -0.012687683, 0.23278809, 3.1386719, -1.3535156, -0.3154297, -2.2558594, 3.0546875, -0.38598633, 1.0634766, -2.7734375, -0.8208008, -2.9609375, -1.6757812, -0.9121094, -3.7734375, -1.3232422, 1.5703125, 0.4399414, -4.578125, 1.4521484, -3.1171875, 0.9560547, 2.9746094, -3.6347656, 1.3681641, -1.5693359, -0.109191895, -2.15625, 2.5214844, 1.8076172, 0.86865234, -0.83984375, 1.9150391, 1.859375, 1.640625, -1.7451172, -2.6503906, 1.640625, -1.0322266, -2.5488281, 0.82666016, 1.2216797, -0.76660156, 0.34155273, -0.32080078, -3.2011719, 1.5283203, -0.37548828, -0.16491699, -1.0576172, 1.7919922, 1.3017578, 3.2753906, 0.7636719, -3.4238281, -3.3085938, 0.052947998, -0.74072266, 2.3769531, 0.734375, -1.7763672, -0.94140625, 2.1953125, -1.7480469, -2.5820312, 1.2421875, -0.14550781, 0.80566406, 0.64941406, -3.0410156, -2.9316406, -0.55615234, 0.65185547, 0.6855469, -2.2246094, -1.1044922, 0.15039062, 1.8769531, -1.6845703, -0.9345703, 1.0117188, 0.19213867, -0.14135742, 2.1308594, 0.06750488, 0.5966797, 1.9433594, -1.6396484, 0.09387207, -1.2509766, 2.6152344, 2.9257812, 2.0351562, -0.13500977, 0.20678711, 0.33276367, 0.34765625, 1.2558594, 1.9453125, -0.18017578, -0.359375, 0.7050781, -2.375, -2.0058594, 2.5078125, 1.1865234, -0.11468506, -0.7270508, -0.93847656, 2.109375, 0.75097656, 0.39648438, 0.68359375, 2.6386719, 0.22497559, -1.1826172, -2.9746094, -0.30078125, 0.5151367, 0.016799927, -0.9589844, 0.35864258, 2.6699219, -0.80810547, 1.6835938, -0.16601562, -1.0488281, -1.2675781, -1.1816406, -0.20178223, 0.021530151, 2.1757812, -0.47387695, -1.1933594, 1.4501953, 1.4570312, 0.56640625, 1.4951172, 1.1904297, 0.47387695, 0.9951172, -1.8095703, -0.82373047, 0.30322266, -1.4873047, 2.875, 1.7861328, -0.70654297, 1.3457031, 1.7451172, -1.3710938, 2.0097656, -0.6958008, 1.1855469, 2.0488281, -1.2128906, 0.75341797, -2.5957031, 0.9609375, 1.5751953, 1.6318359, -0.27954102, -1.6738281, 1.2666016, 4.1445312, -0.25683594, -1.3916016, 1.7167969, 2.4082031, 1.7626953, 1.7246094, 1.2783203, 0.53808594, -0.22485352, 0.11242676, 0.49682617, -2.4707031, 0.40307617, 2.9570312, -1.0380859, 1.0947266, -2.2695312, 0.99902344, 1.5673828, -0.96435547, 0.076538086, -2.6367188, 0.47875977, -1.1416016, -1.9873047, 1.59375, -1.0136719, -0.27807617, 2.125, -0.22839355, 0.27392578, 0.84375, -2.2695312, -1.0029297, 1.4873047, -1.0439453, 2.1210938, 1.5341797, 0.94433594, 1.4677734, -1.0400391, 0.1730957, -1.5908203, -1.1386719, 1.1621094, 0.09777832, -3.6933594, 1.5537109, -2.0742188, -1.2734375, -1.6757812, -0.15759277, 3.1601562, 0.73779297, 0.17114258, -1.0683594, 0.8574219, 0.36572266, 0.8173828, 0.16052246, 2.3183594, -0.55859375, -1.3076172, -0.29833984, -0.7895508, -0.5629883, 0.9238281, -1.7998047, 0.15344238, 1.6591797, 0.65722656, -0.09539795, 0.65478516, 0.27294922, -2.1230469, 1.0019531, -4.8007812, -0.69433594, 0.2722168, 2.1367188, -1.5380859, 0.45532227, -2.0664062, -1.6767578, -0.42358398, -2.1914062, 0.25610352, -0.7128906, 1.1582031, -1.8339844, 0.47021484, 0.63720703, -1.0029297, -3.2441406, -1.84375, 2.0664062, -3.0117188, -0.5517578, -2.8222656, 0.5341797, 0.31933594, 1.0556641, 0.32104492, -1.5253906, -2.2519531, -0.26123047, 0.07110596, -1.4755859, 0.40405273, 1.2011719, -0.09906006, -1.7119141, 0.8544922, -0.99902344, -0.69921875, 0.28515625, 0.2763672, -0.296875, -0.578125, -0.8417969, 1.15625, 0.23461914, 0.64160156, -0.3527832, -3.8730469, 0.35229492, 1.5283203, -1.0048828, 0.78271484, -1.5048828, -0.7680664, -1.7509766, -2.4101562, 2.5410156, 2.2890625, 2.8867188, -0.024795532, 0.15356445, 2.2695312, -0.14904785, -1.2939453, -1.6083984, -0.4975586, 4.8515625, -3.1347656, -0.91064453, 0.36279297, 0.19763184, -3.5136719, 0.16894531, 0.19885254, -1.0615234, 2.1347656, 1.3134766, 0.8745117, -1.0722656, 1.0996094, 1.1494141, 1.0546875, -0.6694336, 0.06744385, -0.3852539, -0.2631836, -1.7353516, 2.1621094, 1.6953125, 1.1376953, 1.2128906, -0.33520508, 0.43701172, -1.2939453, 0.6635742, 0.029129028, 1.7958984, 0.55078125, 1.7353516, 0.40844727, -0.9189453, -1.3505859, -0.039855957, 1.2490234, -1.9570312, -2.1074219, 0.93652344, 1.9609375, -0.31274414, -0.21044922, -1.2626953, 0.48266602, -0.27124023, -0.33422852, 1.0751953, 0.69189453, 2.1171875, -1.0664062, 0.44335938, -0.7885742, 2.1933594, -1.1494141, -0.42626953, -0.74365234, -0.27856445, -1.2695312, -1.1367188, 0.36035156, -2.6601562, -0.47802734, 3.8203125, 1.8525391, -2.5742188, 0.3815918, -1.1220703, 1.1943359, 1.5019531, -0.60058594, -0.17871094, -0.92089844, 1.3066406, 0.5288086, -1.953125, 2.2480469, -0.24108887, -2.1738281, 0.027923584, -1.8779297, -0.04067993, 0.06561279, 0.20629883, -3.0820312, 0.7246094, -1.796875, 0.59716797, 0.16015625, 3.3417969, -1.4345703, -0.58203125, 2.2714844, -3.0175781, -0.625, -2.7929688, -5.6054688, 1.0107422, -2.703125, -0.06964111, 2.5605469, 0.38989258, -0.13964844, 0.6933594, 0.32202148, -3.4042969, -1.3378906, -0.9223633, 1.5400391, -2.9179688, -1.4023438, 2.4003906, 1.4892578, -1.1113281, -1.4746094, 0.33520508, -1.8583984, -0.84472656, 0.6801758, -1.5927734, -1.0117188, -2.3867188, 0.9086914, -0.9560547, -1.8603516, 0.69433594, -1.1796875, -0.40161133, -3.8046875, 2.3574219, 1.2441406, 0.16796875, -1.2939453, 2.7421875, 2.3242188, -0.48779297, -0.5205078, 1.3896484, 3.0859375, -0.50439453, -3.1308594, -0.6713867, -0.15698242, 0.8408203, -0.8100586, -0.6435547, 0.2758789, -1.1181641, 2.2910156, 0.7084961, 1.3105469, 0.9941406, 0.53027344, -4.1992188, 0.9511719, 0.5957031, -1.0292969, 0.23632812, -0.49145508, -0.20715332, -2.2304688, 0.15307617, -1.5136719, -1.2695312, -1.6650391, 0.35107422, -3.4042969, 0.77783203, -1.2314453, -0.28271484, -0.53466797, -0.65234375, -0.91845703, -2.2714844, -0.86572266, -1.7041016, -0.3852539, -3.1289062, -1.2402344, 0.47827148, 1.1445312, -0.7495117, -0.111694336, -0.21484375, -2.6523438, -0.5576172, 0.68847656, 0.05645752, 0.88964844, -0.90625, 2.9550781, -0.15002441, 4.03125, -0.6542969, 1.2919922, 1.3505859, -0.050354004, -2.0195312, 1.7626953, 2.875, 2.5253906, 0.61865234, 0.8100586, 1.7832031, 2.8359375, 1.6162109, 0.39697266, 1.6582031, -0.04486084, 0.35961914, -0.8076172, 1.9375, -1.5253906, -0.27490234, 1.1035156, 1.7070312, 1.8066406, 2.1445312, 0.9550781, -1.6474609, 1.4287109, 0.035125732, -3.5253906, -1.1347656, -0.5756836, -1.2626953, 3.2070312, -0.46020508, -2.375, 1.5419922, 2.5957031, -0.390625, 1.8574219, 1.2402344, -1.1269531, -1.7324219, -3.1425781, -2.0371094, -1.484375, -0.6323242, 2.1425781, -2.9863281, 1.4736328, 0.29589844, 1.9472656, 2.0996094, -0.23596191, -1.2871094, -1.5712891, -2.0703125, 0.9394531, -0.7807617, -1.4482422, -3.1425781, 0.6845703, 1.1503906, 0.58203125, 0.48266602, 1.5146484, -0.96875, -2.046875, -2.1152344, -0.31396484, 1.0830078, 0.31298828, -0.92089844, 3.9023438, -0.7216797, -0.5800781, -0.4152832, -0.58154297, -1.9003906, 2.046875, 2.5058594, 1.7841797, -0.5942383, -0.5854492, -2.3300781, -6.4375, -0.18652344, 2.2519531, 0.74365234, 1.5, -2.2011719, -1.0410156, 2.3125, 0.30981445, -0.69873047, -3.6328125, 1.4101562, -0.36669922, 0.00034499168, -1.4521484, 1.3339844, -0.19873047, 0.5024414, -1.2568359, -0.1928711, 0.0059661865, -2.7363281, -2.1054688, 1.4853516, -1.7783203, -0.22460938, 2.6660156, -1.2861328, -1.8417969, 0.9165039, -0.56347656, -2.4335938, 0.5878906, -2.2792969, 0.50439453, 0.12219238, -1.8017578, 0.8745117, 1.5263672, 0.8076172, 0.60009766, 2.0761719, 3.0351562, -0.056762695, 0.3635254, 0.4008789, 1.7373047, -0.5986328, -1.9472656, 0.28588867, 0.68603516, 0.29370117, 3.1132812, -1.4990234, -1.9873047, -3.0234375, -3.1679688, 0.7060547, -2.2421875, 1.296875, 0.6069336, 1.6533203, 0.8071289, -0.6694336, 0.3708496, -0.086242676, 0.88671875, 0.6772461, 0.90625, -1.6816406, 2.8886719, 1.5400391, -1.2451172, -3.5058594, -0.15356445, 2.6445312, 3.8496094, 0.0044136047, 0.9941406, 0.17565918, -1.5458984, -0.17468262, -0.015975952, 0.99902344, 0.77490234, 0.3540039, -0.34814453, -0.27563477, 0.7314453, -2.1035156, 1.4121094, 1.0214844, -0.029785156, -1.0126953, 1.5322266, 1.5908203, -3.6835938, 0.6826172, -0.93896484, 0.8881836, -1.6337891, -1.5957031, 0.24841309, -2.8945312, -0.50634766, 0.25024414, -2.0859375, -3.3203125, 2.7265625, 1.0117188, -0.6196289, 0.24133301, 2.4785156, -0.7753906, -0.7495117, 2.0742188, -0.43579102, -0.6777344, 0.4243164, -1.9433594, -0.67529297, 1.0556641, -3.1992188, 1.0253906, 2.3515625, 0.7416992, 0.77441406, 1.1269531, 2.25, 2.8808594, 1.2607422, 2.0996094, 3.0976562, 0.42114258, 2.0136719, 1.2011719, 2.4101562, 1.4726562, -1.7402344, 1.9345703, 1.1621094, 0.265625, 1.1201172, -0.60009766, 0.1161499, -0.9189453, -0.6176758, -0.4020996, 1.3066406, 2.0195312, -2.7792969, -0.8886719, -0.19274902, -0.40063477, -3.4316406, 1.5302734, -2.5390625, -0.22131348, 0.54345703, -0.11224365, 1.2626953, 1.7734375, -1.46875, -0.09265137, 0.16821289, 3.9277344, 0.20239258, -0.34448242, -1.4375, -1.7011719, 1.5751953, 1.5566406, 0.81933594, 0.66064453, 1.5732422, 0.26098633, -1.0625, 1.2363281, 0.9897461, -2.9550781, 0.8354492, -2.3222656, 2.4941406, 1.9345703, -1.2568359, 1.5087891, 0.5917969, -1.7470703, -4.546875, 3.2558594, 0.21350098, -0.13439941, 0.10821533, -3.8945312, 1.8232422, -1.7558594, 1.0595703, -2.8847656, 0.006614685, 0.12023926, -0.52441406, 1.6142578, 0.30078125, -1.9267578, 2.7265625, 0.96972656, -2.0976562, -0.2097168, 1.2636719, 0.57421875, -0.61816406, 1.4296875, 0.8745117, 0.5756836, -0.06463623, 2.7226562, 0.7246094, -2.78125, 1.0732422, 2.8769531, 0.17370605, 0.9506836, -0.45458984, -0.2878418, 1.6298828, 0.24487305, 0.25268555, -0.5058594, -2.3242188, -0.5180664, 0.8149414, 0.53759766, -0.7993164, -0.7324219, -0.107055664, -0.14404297, -3.0429688, -0.014328003, 1.1162109, -2.2324219, 2.2246094, 0.82373047, -1.7167969, -0.7026367, 0.049926758, 0.9916992, -1.6152344, 0.022277832, 0.8925781, 0.9121094, 1.2617188, -2.375, -0.11187744, 0.6923828, -1.2011719, -1.1445312, 0.81640625, -0.33935547, -0.7597656, -0.59228516, -1.8417969, 0.85253906, 3.7011719, -0.16271973, 2.2792969, -1.6972656, -0.5786133, -1.0947266, -2.2089844, -0.9838867, 0.58984375, 2.6367188, 1.7128906, 1.7041016, -0.8310547, -2.6347656, 0.37695312, 0.265625, 1.875, -0.064331055, -0.4716797, 1.3847656, 1.1445312, 1.3193359, -0.82666016, 0.4543457, -0.2211914, 0.7241211, 1.4648438, -1.4433594, 2.3183594, -1.8925781, 0.5620117, 0.87646484, 3.9140625, 0.81689453, 0.57470703, 0.47705078, 2.0253906, 1.4453125, -0.98291016, 0.44580078, -1.1630859, -0.6616211, 0.8071289, 2.4296875, 3.3769531, 2.5253906, -0.94628906, -1.2626953, 0.63427734]}, "B082M8BYTK": {"id": "B082M8BYTK", "original": "Brand: BELLEZE\nName: BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze\nDescription: Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There's a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

Your safety is our priority, and that's why we've equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30\u00b0, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

Specifications:
Heat Range: 175 Sq/Ft (15' Radius)
Diameter of Dome Reflector: 31.9\"
Support Pole Size: 2.9\" Diamter, 34.3\"Height
Size of Burner: 11\"Diameter, 12\"Height
Size of Base: 18.1\"Diameter, 3.39\"Height
Overall Height: 7.25FT\nFeatures: [COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants.\n[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures.\n[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night.\n[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck.\n[LOVE-IT OR 100 DAY RETURNS] We guarantee that you\u2019ll love this product. If not, simply return within 100 days of purchase.\n", "embedding": [-1.2802734, 1.2011719, 1.2177734, 0.20324707, 0.38134766, 0.5366211, 1.0996094, -1.9423828, -0.29467773, 4.203125, 1.2900391, 0.3935547, -0.012435913, -1.796875, 0.28125, -1.6777344, 0.4909668, -0.17919922, 0.85058594, 0.7475586, 2.5996094, -0.23242188, 0.91015625, -0.33642578, -0.44384766, -0.26000977, 3.234375, -2.5390625, -0.23022461, -1.1074219, -1.3085938, -0.24865723, -0.81884766, 2.0429688, -2.4765625, -2.2304688, 0.02748108, 1.875, -2.5976562, -0.35888672, -1.4501953, -1.4296875, 0.5473633, 1.5361328, -1.8652344, -0.37280273, 2.28125, 0.28222656, 0.7993164, -1.6162109, 1.0410156, 0.044830322, -1.1396484, 0.30297852, -1.7070312, 0.73095703, 0.703125, -3.5800781, 2.7871094, 0.1743164, 0.09588623, 0.1673584, -1.4306641, 3.6816406, -1.5947266, 2.0039062, 0.1541748, -0.6855469, -1.5126953, 0.703125, 2.7929688, 0.049316406, -2.0351562, 2.0527344, -0.4555664, -0.24206543, -3.3359375, 1.2900391, 4.3867188, 0.6303711, -0.7392578, 0.75341797, 1.0683594, 1.2285156, -1.4335938, 0.2980957, -1.9980469, 2.0976562, 1.0820312, 1.8115234, -0.73046875, 2.3027344, -0.9223633, -2.9296875, 1.8662109, -3.359375, 0.44995117, 0.99853516, -0.85546875, 1.53125, -0.2932129, 1.3291016, -0.36743164, -0.7397461, -1.4257812, -2.0058594, 3.5, -0.0836792, -1.1357422, 2.0859375, -1.8613281, 0.60058594, 2.0253906, -0.7182617, -1.3505859, -1.078125, 0.953125, 2.6347656, 4.2226562, 2.0566406, 2.7480469, 0.073913574, 3.0507812, -1.6826172, 0.9667969, -0.36450195, -0.5541992, -0.066467285, 3.421875, -2.0390625, -0.38134766, -2.1660156, 0.7504883, -0.048950195, 1.2490234, -1.8925781, -2.09375, -0.2388916, -5.046875, -1.0878906, -1.2363281, 1.8574219, 1.5576172, 1.2539062, -3.8144531, 0.13085938, -0.31518555, 1.6083984, -1.4453125, -1.0820312, 1.9853516, -1.3291016, -0.47509766, -2.6503906, -1.6748047, 0.67089844, 0.11798096, -3.0117188, 4.5976562, 1.7255859, 2.3027344, -0.20031738, 0.2861328, 3.0292969, -0.88183594, -1.8662109, 1.796875, 0.94433594, 0.9951172, 2.1386719, -0.3076172, -2.6035156, 0.5541992, 0.9794922, 0.9121094, -1.9863281, -1.078125, 1.5, 0.2854004, -0.18164062, -3.7539062, -1.2382812, 0.4489746, 1.6435547, -0.7006836, -1.1933594, -0.3779297, -1.7246094, -0.1784668, -1.7548828, -0.057525635, 1.0371094, 0.10412598, -0.8588867, -0.65527344, -2.0898438, -1.7324219, -0.8598633, 2.2519531, -0.4050293, 1.4658203, -1.3339844, 0.07867432, -0.65234375, -2.2382812, -3.09375, -0.018112183, -1.359375, 0.09008789, 2.0371094, 1.3808594, -0.37768555, 1.3183594, -1.8886719, 1.3544922, -0.5019531, 2.6855469, -0.74853516, 0.2644043, 2.3125, 0.020019531, 0.43164062, 0.19885254, 1.8359375, -0.24951172, 1.5332031, 0.61376953, -0.39257812, -1.8339844, -2.3476562, 2.1914062, 1.2734375, 0.18029785, -0.52441406, -0.8876953, 3.78125, 1.6015625, -0.15710449, 1.8398438, -0.77246094, 0.2746582, -2.3164062, -0.78808594, -0.56396484, -0.0013465881, 0.74609375, -1.15625, 1.84375, -0.029388428, -0.66308594, 0.043884277, -0.22338867, 1.0302734, 0.5395508, -1.8544922, -1.3037109, 0.2668457, 1.3759766, -1.25, -2.9726562, 1.4755859, 1.2324219, -1.0576172, -0.4645996, 0.05517578, -0.03363037, 3.59375, 0.8911133, -3.0253906, 0.3317871, -0.16259766, 0.30297852, 2.3515625, 1.3173828, 0.35668945, 0.61816406, -1.8583984, 2.6660156, 0.40771484, 0.43139648, 1.0458984, -0.6542969, 1.3027344, -0.74658203, -0.8930664, 0.5239258, 0.5288086, 1.2871094, -0.3828125, 0.31225586, 5.0546875, -0.5161133, -3.0273438, 1.78125, -1.3925781, 2.2109375, 1.4619141, -0.8364258, 1.0537109, -2.4277344, 2.5351562, 1.0019531, -2.359375, 0.65185547, -1.9755859, -0.6713867, 0.6171875, -0.4584961, 1.171875, 0.007030487, -0.13549805, -0.90527344, -3.7226562, -1.6162109, -2.8789062, -1.6298828, 1.4882812, -2.2636719, 1.8867188, 1.453125, -0.50341797, 1.1992188, -0.9555664, -1.4638672, -0.90625, -0.099609375, -0.39331055, 0.06695557, -1.5761719, -1.1191406, -1.0390625, -2.1582031, 2.921875, -3.15625, -3.34375, -1.7529297, -0.3762207, -2.1152344, -0.55126953, -2.6152344, -1.2255859, 0.28637695, -0.5239258, 0.3701172, -1.7617188, -1.7421875, -0.34057617, 0.9003906, -1.3583984, 0.32885742, 1.6748047, 0.10662842, -1.8105469, -4.4609375, 0.4543457, 1.2080078, -0.9169922, 0.1986084, 0.04550171, 0.3564453, -2.3066406, -0.15441895, 0.45043945, -0.15100098, -0.17529297, -2.0078125, 0.32617188, -4.4335938, 1.8496094, -0.8574219, 0.7529297, -0.6845703, 0.98779297, -1.7558594, -0.41992188, 0.7836914, -1.6328125, 3.78125, 0.9658203, 1.5917969, -2.3320312, 0.24694824, 1.0605469, -0.08068848, -3.0117188, -0.18054199, -0.14099121, -0.8901367, -1.7822266, -2.6328125, 0.092163086, -1.5410156, -0.6152344, -0.66064453, -2.0195312, 0.29296875, -0.29467773, -3.0292969, -0.24267578, -1.0791016, -0.10601807, -1.3632812, -0.068481445, -3.6015625, -1.1025391, -1.0419922, 0.35888672, -0.45654297, 1.8408203, 0.3112793, 0.7055664, 2.3300781, -1.0039062, 0.46606445, -0.51708984, -4.2695312, -0.28686523, 2.1347656, -1.4355469, 0.56396484, -1.0380859, -1.0214844, -1.8916016, -0.9213867, 4.5, 0.55029297, 3.65625, -1.3222656, 0.38330078, 0.8623047, 1.1298828, -0.15344238, -1.0009766, -1.9550781, 1.9902344, -1.9560547, -0.53125, 1.0234375, 1.3447266, -1.9667969, -2.0957031, 2.5097656, 1.5771484, 2.0195312, 3.5371094, -0.15319824, 1.0898438, -0.19238281, -0.21789551, 3.6953125, 1.5253906, -1.8642578, -2.8164062, 0.96875, 1.6533203, 3.4648438, -0.08148193, 0.8691406, 0.48217773, 2.1992188, -0.91796875, -2.703125, 1.1484375, -0.08758545, 0.43847656, 0.42871094, 1.1708984, -0.50634766, -0.06439209, -0.77246094, 0.69628906, -0.6557617, -1.6992188, -1.6113281, 2.7714844, 2.0585938, -1.0546875, -1.6064453, -0.78466797, 0.15856934, -1.7412109, 1.1005859, 1.0322266, 0.9711914, 0.103637695, -1.6914062, -1.2392578, -0.0054397583, 1.3730469, 0.65185547, -2.4980469, 1.2216797, -0.15332031, -0.12939453, -2.2460938, -1.9052734, 0.027618408, -0.4555664, 3.0800781, -1.1767578, -0.59521484, -1.1816406, -0.2854004, 3.2519531, 0.52246094, -0.57421875, -2.2578125, -2.2929688, -1.5722656, 1.8310547, 0.4020996, 1.3242188, 1.5683594, -1.1308594, 1.0820312, -2.0996094, 0.7036133, 0.609375, -1.4023438, -1.1855469, 1.9960938, 0.32226562, 2.46875, 0.19360352, 1.84375, -1.6269531, -1.6191406, 1.8740234, -1.9091797, 0.21020508, -1.4541016, -5.703125, 1.6455078, -0.44262695, 0.40673828, 2.1445312, -0.8046875, 0.6196289, 0.25146484, -1.3818359, -3.1855469, -3.5488281, -1.0517578, 0.23400879, -3.2148438, 0.08898926, 2.4257812, -2.1308594, -0.08093262, -3.4140625, -0.6567383, -0.6777344, 0.022949219, 1.53125, -1.2490234, 1.3769531, -0.95947266, 0.57177734, 0.18322754, 0.33691406, 0.19042969, -1.8623047, 0.54003906, -1.6796875, 1.4814453, 1.1513672, 1.5078125, 0.6723633, 2.6386719, 1.2480469, -2.5195312, 0.5722656, 1.8125, 1.7001953, 0.25585938, -3.9550781, 0.1505127, 0.7348633, -0.34716797, -1.2548828, -1.1367188, 0.0446167, -2.1015625, 0.7163086, 1.8740234, -0.0067710876, 0.49609375, 1.4580078, -4.1445312, -0.23425293, -0.058502197, -3.3789062, -2.3925781, -1.3652344, -1.7304688, -1.2207031, 1.7724609, -2.2871094, -0.11816406, -1.2011719, -0.9194336, -1.5996094, 1.9824219, 2.84375, 3.3222656, 2.4433594, -2.578125, -0.32226562, -0.56933594, -0.72998047, 0.02015686, 2.90625, -0.3449707, 1.3115234, 1.3691406, 2.0136719, -0.74902344, 0.022521973, 1.0214844, -0.7314453, 0.8388672, -0.34228516, -0.67871094, -0.54003906, -0.94384766, 2.4277344, 0.37548828, 2.1542969, -2.2929688, -0.9453125, -0.14868164, -0.78027344, -2.4628906, 0.41992188, 0.09033203, -0.3359375, 2.1386719, 0.7392578, 0.43041992, -0.90771484, 0.8857422, 0.4958496, 1.7832031, -1.5791016, -1.3896484, -3.4453125, -0.35473633, -1.4882812, 1.609375, 2.5566406, 0.5102539, 0.890625, 2.3730469, 2.3398438, -0.7709961, 2.1855469, 1.2617188, -0.76464844, 0.95410156, 0.87646484, -1.6328125, -0.22790527, -0.3708496, -2.1269531, -0.13623047, 3.8261719, 0.3395996, 1.1806641, 0.21142578, -1.9765625, 0.25708008, -1.8115234, -1.5361328, -0.29614258, 1.3740234, -0.5859375, 0.2956543, -0.9663086, -1.2744141, 2.171875, 2.1816406, -1.0400391, -1.2802734, 2.421875, 1.1914062, -0.28442383, 0.97314453, -0.69873047, 0.24108887, 0.39038086, 0.72021484, 0.5883789, 2.234375, 1.2070312, 0.74365234, -3.2695312, 0.11999512, -1.9765625, 2.7597656, -2.2207031, -1.2832031, 1.2070312, 1.5664062, 1.1123047, -2.3652344, 0.38671875, -0.49023438, 1.7167969, -2.6054688, -1.4492188, 1.2646484, -2.1582031, -2.1269531, -4.4257812, -0.36669922, 0.8925781, -2.7382812, 0.12658691, -0.42407227, -2.3242188, -0.16455078, -0.33911133, -1.4013672, -0.6513672, 0.21240234, -2.9980469, 0.6933594, -0.052978516, 0.22387695, 1.1376953, 0.5395508, -0.8588867, -1.9179688, -0.58984375, -2.5722656, -0.84472656, 0.9482422, -0.07220459, 0.2602539, 1.5595703, -1.1279297, 0.7026367, 3.9199219, 0.5151367, -1.9658203, 1.1269531, 0.14025879, 0.4267578, 2.8027344, -0.65625, 2.2246094, -0.021865845, -0.3076172, -0.18249512, 0.30126953, -0.5107422, 0.47216797, 1.9228516, -1.3828125, 0.56884766, 0.20178223, 0.020568848, 0.8847656, -0.49023438, 3.046875, -0.3076172, -2.4160156, -0.23950195, -3.15625, -2.375, -0.97021484, -0.73291016, -1.4580078, -1.6884766, 1.3945312, 1.375, -0.20605469, 0.35375977, 1.1582031, 0.2548828, -1.4169922, -1.2382812, 0.82421875, 3.3378906, 0.89208984, -1.9072266, -3.3046875, -3.5351562, 1.1914062, -0.61279297, 0.97802734, -0.87841797, -0.5126953, -2.0917969, 2.28125, 0.3408203, 3.5292969, 1.9384766, 0.4650879, -1.8994141, 1.4189453, 0.9111328, 0.14929199, 2.4765625, -0.49023438, 2.6347656, -0.072143555, 3.6484375, 2.7558594, -0.98876953, 1.5556641, -0.88964844, 1.6591797, -0.25219727, -0.74853516, 1.8613281, -2.796875, 0.06414795, 1.1933594, -1.6953125, -3.9941406, 1.6767578, 1.5908203, 0.5834961, 0.61035156, 1.2109375, 1.0957031, 0.2175293, 1.0078125, 0.4272461, 0.26538086, 0.55859375, -0.66748047, -0.4453125, 3.0957031, -0.24804688, 0.096069336, -0.28564453, -0.8676758, 0.025741577, 1.2568359, -0.3022461, 1.0712891, 1.1826172, 1.9345703, 3.1464844, 0.93310547, 1.8671875, 0.90283203, 1.0615234, -0.27514648, -0.4560547, -0.64697266, 1.9921875, 3.0292969, -0.8720703, -0.72021484, 0.7290039, 0.42993164, -1.5205078, -2.9433594, 0.7104492, 1.34375, -1.6357422, 1.7529297, -0.23010254, 2.0644531, -2.0039062, -0.6894531, 0.6777344, 1.3173828, -1.3066406, 0.4243164, 2.1894531, -0.26879883, 1.5136719, -0.6328125, 0.7158203, 0.2553711, -2.5, 3.203125, -0.29223633, -2.015625, -1.7265625, 2.5820312, 1.5146484, 0.2097168, -0.08502197, 2.0664062, 1.7509766, 1.5996094, 1.6542969, 0.66259766, -1.9003906, -0.17468262, 2.9980469, 1.8408203, -1.0644531, -0.73095703, 0.2668457, -3.0703125, -1.5849609, 0.98095703, 0.8666992, -1.2734375, 1.0302734, -1.1064453, 2.4960938, -0.16674805, 0.8413086, -2.0488281, 1.9423828, 1.3251953, 1.5507812, -0.52490234, 0.77001953, 0.120788574, 3.0605469, 0.66552734, 0.2619629, 1.5839844, -2.078125, 0.77490234, 0.2919922, 0.88671875, -1.2109375, 1.0585938, -0.26489258, 2.7167969, 1.1142578, 0.5180664, 1.1064453, -0.8457031, 2.0683594, -0.89990234, -0.05899048, -0.047851562, 0.9223633, -0.1673584, -0.7817383, 0.66796875, -1.3320312, -2.1816406, 0.037353516, 0.6738281, -0.7114258, -1.4775391, 1.0253906, -0.5205078, -1.4970703, 1.5117188, 2.2480469, 0.5839844, 1.4257812, -0.72265625, -1.3955078, 1.6572266, 0.4050293, -0.51416016, -0.63916016, -0.86083984, 0.41674805, 0.7270508, 1.7119141, 1.1591797, 0.8652344, -1.1386719, -1.3916016, 2.421875, 2.8125, 0.19177246, 1.4394531, 0.34155273, -1.9824219, -0.17126465, 2.2089844, 2.0058594, 0.5600586, -1.0800781, -1.6289062, -1.0107422, 0.77783203, -0.7841797, 2.1855469, 3.4199219, 1.5332031, 1.8945312, -2.6855469, -1.9941406, -2.546875, 0.99609375, 1.3896484, -1.0947266, -1.0429688, -0.18640137, -0.6230469, 3.3574219, 1.5371094, 0.3828125, -0.016723633, -1.1621094, 1.5791016, 1.6914062, 0.8876953, 1.3017578, -1.0585938, -0.36132812, 1.5800781, 1.0410156, -0.079956055, 1.9628906, 0.33813477, 0.92626953, -4.2539062, -0.012542725, -2.265625, -0.55810547, -0.107910156, 2.7089844, 1.3691406, -0.66845703, 0.32885742, -3.390625, -1.2011719]}, "B08SBQJ7P1": {"id": "B08SBQJ7P1", "original": "Brand: Foinwer\nName: Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill\nDescription: It is an ideal substitute for the 16.4oz/1lb green camping small propane tank\nFeatures: \ud83c\udf81 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device.\n\ud83c\udfc6 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment.\n\ud83c\udf19 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank\n\ud83d\udd12Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage\n\ud83d\udce7 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use\n", "embedding": [-0.23571777, 2.2421875, 0.75390625, -0.41210938, -2.0683594, -1.4033203, 0.3076172, -1.1347656, -1.0087891, 1.6083984, 2.2988281, -0.8354492, 1.2714844, -3.5742188, 0.58935547, -0.52978516, 0.113586426, 0.50439453, 2.2792969, 2.1835938, 2.7734375, 0.32128906, 1.7441406, 0.5830078, 1.5087891, 0.84033203, 4.3671875, -2.4726562, -0.21765137, 0.5131836, 0.112976074, 0.13415527, 0.58203125, 0.46044922, -2.15625, -1.9482422, -0.4177246, 0.984375, -3.4394531, -1.8828125, -1.3837891, 2.0488281, 3.7167969, 0.9658203, -2.5644531, 1.1494141, 0.4946289, 0.49389648, 0.72265625, -1.1132812, -0.2763672, 0.7114258, -0.012771606, 0.92578125, -1.9853516, 0.3071289, -0.30932617, -2.75, 1.7294922, 0.09649658, 2.4902344, -0.3203125, -0.98876953, -0.19995117, -0.14428711, 0.31103516, -0.44506836, -0.57373047, 1.0273438, 0.41308594, 0.7285156, 0.50927734, -0.07519531, -0.7944336, -1.3554688, 1.4892578, -3.8984375, 0.8027344, 3.0058594, 1.4003906, -1.1201172, 1.7216797, -0.02722168, -1.4511719, 0.37841797, 0.51904297, -1.7421875, 0.7939453, 0.6958008, 2.4238281, -2.4746094, 3.1425781, -2.3066406, -3.1757812, 0.5136719, -0.49389648, 0.29956055, 1.7490234, 2.3945312, 0.30151367, -1.3662109, -1.3974609, -0.86865234, 1.4638672, -2.3378906, -0.3166504, 0.43774414, 0.16125488, -1.6933594, 0.51416016, -0.18457031, -0.7475586, 1.4589844, -1.5800781, 0.12359619, -2.0058594, 0.6826172, -0.7192383, 2.703125, 0.60302734, 3.3300781, -0.14489746, 1.3144531, 0.05154419, 1.0390625, 0.8100586, -1.8798828, 0.35351562, 1.8291016, -0.7324219, 0.8027344, 0.098083496, 1.9580078, 0.9448242, -0.65527344, -2.5175781, -0.5722656, -3.5546875, -2.4257812, -0.95703125, -2.8769531, 1.5527344, 0.8803711, 0.094055176, -4.2617188, -0.5175781, -2.0390625, 1.8261719, 1.7265625, -2.484375, 0.8564453, -2.4980469, -0.9291992, 0.18322754, 2.7324219, 2.1953125, 0.33520508, -0.75439453, 2.3300781, 2.4394531, 1.2011719, -0.8515625, -0.9941406, 0.9765625, -0.48291016, -2.9394531, 2.3574219, 0.29516602, -2.0527344, 0.5083008, 1.1435547, -3.484375, 0.55322266, 1.2675781, 0.049713135, -2.4941406, 1.6298828, 1.53125, 1.5429688, -1.0478516, -2.7128906, -2.5527344, -0.07116699, -0.37304688, 1.6396484, -1.5390625, -3.7910156, -1.171875, 0.7050781, -2.421875, -0.43115234, 0.55029297, 0.052093506, -0.5996094, 0.48779297, -2.4765625, -1, -0.2006836, 0.8227539, 1.4189453, -0.76123047, -0.93652344, 1.0478516, 0.6621094, -2.0214844, -0.5810547, 0.68896484, -0.41479492, -0.609375, 2.046875, -0.66259766, 0.33691406, 2.6679688, -0.36108398, -1.2958984, -2.1640625, 1.3974609, 1.9003906, 1.5107422, -0.3864746, -0.20922852, -1.2431641, 0.8461914, 1.1591797, 2.0839844, 0.6738281, -1.8261719, -0.24414062, -1.4042969, -1.3642578, 2.6699219, 2.1757812, -0.5654297, 0.5341797, -0.9145508, 2.2792969, 0.44555664, -1.2070312, 0.68310547, 1.765625, 0.42578125, 0.09436035, -1.4169922, -2.1601562, -2.0351562, 1.8847656, -0.77978516, 0.093933105, 2.8710938, -0.54833984, 1.0078125, 0.54785156, -2.1054688, -0.7480469, -1.3740234, 0.54296875, 0.43408203, 1.0039062, -0.6948242, -2.6367188, 1.7626953, 1.3457031, -0.34887695, 1.5058594, 1.8017578, 0.8310547, 2.0410156, -0.33618164, -0.89160156, 1.6386719, 0.29003906, 2.7460938, 1.578125, -0.9379883, 0.26904297, 1.9101562, -3.203125, 1.1181641, -0.64941406, 0.2290039, 0.81689453, -1.7470703, 2.1796875, -2.6660156, 1.5566406, 0.37329102, 2.5996094, -0.9560547, -2.8476562, 0.60009766, 5.34375, -1.0810547, -1.5449219, 1.6103516, 0.71777344, 2.7109375, 0.8364258, -0.61865234, -0.15222168, 0.57177734, 1.0009766, 0.114746094, -2.6230469, 0.6738281, 1.5410156, 0.39257812, 0.031707764, -2.9121094, 0.6723633, 1.3212891, -0.66552734, 0.44506836, -1.1796875, 0.93896484, -1.9970703, -1.4746094, 1.2070312, -1.6689453, 0.20825195, 2.4082031, 0.17175293, 0.8183594, -0.23535156, -0.7006836, -1.3378906, 1.8515625, -0.055877686, 1.9980469, 1.4628906, -0.25463867, 0.064575195, -1.1738281, 0.031341553, -1.7724609, -1.4970703, 0.3605957, -0.008712769, -2.5410156, 1.0234375, -0.1126709, -0.24365234, -0.51904297, -0.3046875, 3.3261719, 0.7636719, -0.84033203, -1.2167969, 0.82128906, 0.1060791, -2.3945312, 0.101623535, 2.1015625, -2.3261719, -3.328125, 0.15783691, 0.53027344, 0.009681702, 1.8486328, -1.7421875, 1.3701172, 0.9379883, 0.8598633, -0.3449707, 1.0126953, -0.84765625, -2.2851562, 1.1914062, -2.78125, 0.7871094, -0.5185547, 0.66064453, -0.4987793, -1.0751953, -1.8876953, -1.3945312, 0.15625, -0.34545898, 1.5371094, -0.2084961, 2.9726562, 0.0418396, -0.64208984, 0.47436523, -1.3535156, -3.4394531, -0.35107422, -0.9013672, -0.77490234, -0.57714844, -3.9511719, 1.5058594, -1.2402344, 0.0038433075, 0.2121582, 0.703125, -1.9951172, -2.1855469, 0.85498047, -1.3339844, -0.57910156, 1.8564453, 1.7675781, -1.6464844, -0.095581055, -0.73339844, -1.4648438, -0.44311523, -1.4775391, 0.48291016, -0.26513672, -1.7324219, 0.6582031, 0.21911621, -0.18847656, -0.8100586, -3.5507812, 1.1269531, 2.578125, -1.375, 1.3642578, -1.4755859, -0.99658203, -2.1933594, -1.5830078, 3.0039062, 0.8261719, 2.0488281, 0.55126953, 0.31420898, 0.6508789, 1.4628906, -1.8945312, -1.0859375, 0.18347168, 3.4394531, -2.984375, -1.1894531, -0.42211914, 2.2207031, -3.8730469, 0.88671875, 1.2070312, -0.44750977, 1.8515625, 1.1064453, 0.24597168, -0.6303711, 1.1181641, 0.41674805, 2.4179688, 1.125, -0.87060547, 0.8925781, -0.043884277, -1.0097656, 0.80615234, 0.02444458, 0.6347656, 1.2304688, 2.2929688, -0.2685547, -1.9511719, 0.24291992, -0.8696289, -0.05142212, 1.3212891, 1.5917969, 0.1739502, 0.56152344, -0.20178223, 0.6040039, 1.7919922, -0.91552734, -0.38012695, 1.5019531, 0.42944336, -0.59716797, 0.004470825, 0.31152344, -0.6489258, -0.6958008, 0.109313965, 1.484375, -0.453125, 0.15820312, -0.8203125, 0.8486328, -0.6191406, 1.4101562, -0.24572754, -0.72998047, -0.1026001, -0.4050293, -1.9003906, -1.7705078, -2.21875, -2.53125, -1.2871094, 2.7265625, 1.6582031, -0.79003906, 0.9868164, -0.8076172, 0.9584961, 0.06616211, -0.984375, -1.7226562, -1.0175781, -1.0927734, 1.0517578, 0.009292603, 1.4775391, 0.765625, -3.1132812, -0.26635742, -0.7685547, -0.5649414, 0.058441162, -0.6928711, -1.1435547, -0.48120117, -1.0644531, 2.0625, -0.17895508, 2.0234375, -1.8974609, -0.984375, 0.43481445, -1.8994141, -0.82958984, -0.068359375, -4.3710938, 0.5048828, -1.2324219, 1.6230469, 2.0820312, 0.65234375, 0.19396973, -0.26489258, 1.2480469, -2.9824219, -0.01537323, -1.0292969, 1.9384766, -1.5019531, 1.5585938, 2.8476562, 0.27172852, -2.515625, -1.734375, 1.2041016, -2.2246094, -0.86572266, 0.5151367, -1.7705078, 0.2355957, -0.7949219, 0.9658203, -1.1308594, 0.48217773, 1.9677734, -0.8613281, -0.60302734, -1.1025391, 1.7265625, 0.87353516, 0.9013672, -0.87646484, 3.328125, 2.5644531, -2.5742188, 0.9658203, 0.01878357, 3.1230469, -0.48339844, -1.6210938, -0.44873047, -1.0019531, -0.73876953, -0.13720703, 0.24243164, 0.40356445, -0.9926758, 0.7758789, 1.8222656, 2.1582031, 2.34375, 0.15844727, -2.5253906, 0.39282227, 0.80029297, -2.890625, -2.2792969, -0.64453125, -0.5234375, -2.4160156, 0.4494629, -1.6113281, -0.66064453, -0.703125, -0.019622803, -2.2792969, 1.5986328, 1.8505859, 0.7001953, 1.2910156, -1.8701172, -0.8222656, 0.35424805, 0.049591064, -0.77783203, 0.22961426, -2.1132812, -1.6308594, 1.6601562, 1.2939453, -0.17993164, 0.083984375, 0.2133789, -1.4941406, 0.28442383, -1.1640625, 2.3007812, -1.4501953, -0.67041016, -0.17492676, -2.4707031, 4.0625, -2.1425781, 0.6386719, 0.2290039, -1.171875, -1.5048828, 1.5078125, 1.6464844, 0.77490234, 0.50878906, 0.037841797, 0.74365234, 1.6611328, 0.68603516, 1.9248047, 1.3183594, -1.4248047, -0.75683594, -0.62158203, 1.2265625, -0.6386719, -0.071899414, 0.29296875, -0.22131348, 3.3203125, 2.09375, 0.09692383, -0.09057617, 1.3779297, 0.9038086, -1.3447266, -1.3671875, -0.62060547, -1.2421875, 4.0234375, -1.1806641, -2.3203125, 0.78759766, 2.5117188, 0.8779297, 1.1640625, 0.38183594, -0.40722656, -1.5332031, -2.7871094, -0.37280273, -1.0146484, -1.7275391, 0.36938477, -1.2216797, 0.94384766, 0.8754883, 3.0585938, 2.6054688, -0.75146484, 0.097229004, -1.1982422, -0.9267578, -1.2421875, -1.1884766, -1.3466797, -4.3164062, -0.12524414, -0.0993042, 2.0527344, 1.5888672, -0.3371582, -0.47143555, -1.0986328, -0.4645996, 0.3852539, 2.4101562, -2.2675781, -1.1884766, 1.6367188, 0.80566406, -2.1289062, -1.1503906, -0.12524414, -0.9033203, 1.4091797, 2.9863281, 1.5878906, -0.3154297, -1.8076172, -2.7480469, -4.765625, -0.28149414, 0.7919922, 0.7241211, 0.97216797, -0.9794922, -1.1669922, 0.5332031, -0.53808594, -1.1064453, -1.6191406, 0.7939453, 0.6098633, -0.21411133, 0.4597168, 0.27148438, -1.1835938, 1.1787109, -1.1054688, -0.23999023, -0.6503906, -1.5371094, -2.6308594, -0.3630371, -1.5546875, -0.8105469, 1.0371094, -1.3535156, -0.2861328, 1.6933594, 1.4921875, -1.1054688, 0.8144531, -2.3515625, 0.15576172, 1.5410156, -1.8994141, 1.1298828, 0.7392578, -0.8598633, 0.017349243, 1.9560547, 3.4628906, -0.2467041, -0.5605469, 1.3017578, 0.41674805, -0.5136719, 0.072021484, 0.8120117, -0.5048828, 1.2949219, 3.0058594, 0.5444336, -1.15625, -2.4238281, -1.7070312, 0.5991211, -2.2265625, 0.024795532, 0.07873535, 0.89160156, 2.6425781, -0.025680542, -0.08703613, 0.8149414, 0.70703125, -1.5976562, 0.70166016, -1.7246094, 2.9355469, 1.1474609, -1.3681641, -5.1953125, -1.3515625, 1.9882812, 2.2636719, -0.2006836, 0.88623047, -1.875, -1.3027344, 0.16357422, -1.2802734, 1.6855469, 1.1542969, 0.7783203, -1.0527344, -1.0498047, 2.2695312, -2.6464844, 0.66748047, 0.6699219, -0.043945312, -1.3457031, 1.0283203, 0.9267578, -0.8959961, -0.18469238, -2.2890625, 1.5146484, -1.1982422, -1.1064453, 0.014976501, -2.9746094, 1.7216797, -0.27368164, -1.6230469, -2.8085938, 2.0078125, -0.15515137, 0.09588623, 1.2001953, 1.2929688, -1.0263672, -1.5410156, 0.96240234, 0.46704102, -0.36450195, -0.29418945, -1.7802734, 0.7265625, 1.6435547, -1.6542969, 1.4511719, 2.6210938, 1.4238281, -0.1619873, -0.0015459061, 1.265625, 2.2421875, 0.6010742, 2.9335938, 3.7617188, -0.064819336, 2.5371094, 1.2207031, 2.2421875, 2.5078125, -1.3994141, 0.9423828, 2.671875, 0.40722656, -0.046844482, -1.6933594, -0.35888672, -0.39648438, -0.23718262, -1.1835938, 0.9111328, 2.9296875, -2.5625, -0.86328125, -1.5175781, -0.7192383, -1.6669922, 2.6757812, -0.7529297, 0.7055664, 2.0253906, 0.109313965, 1.3886719, 0.62158203, -0.7602539, 0.058776855, -0.86621094, 2.21875, -0.93408203, 0.50878906, -2.7929688, -1.8847656, 0.44921875, 2.3320312, 1.6826172, -0.28271484, 0.7397461, 1.0839844, 1.7626953, 1.5195312, 1.0175781, -2.1816406, 1.1728516, -1.4248047, 2.0253906, 3.0957031, -0.7817383, 2.1054688, 0.4645996, -2.9570312, -3.0351562, 1.2734375, 1.0712891, -0.93652344, -0.35717773, -3.1601562, 2.3964844, -1.6201172, 1.8847656, -1.5810547, -0.3088379, -0.04650879, -2.6328125, -0.5493164, -0.14038086, -1.3339844, 2.2910156, 1.1748047, -0.03805542, -0.07867432, 1.375, 1.3056641, 0.6557617, 0.17211914, -0.73339844, -0.06036377, -0.9770508, 2.7597656, -0.08105469, -0.30078125, -0.07556152, 3.8925781, 1.9433594, 0.5097656, 0.79052734, -1.8017578, 2.0234375, 0.43725586, 0.40429688, 0.48339844, -1.6005859, -1.2080078, 0.6459961, -0.5541992, -0.90625, 0.13134766, 2.4101562, 0.7758789, -1.3349609, 0.62109375, 0.89501953, -0.38354492, 2.5800781, 1.4033203, -1.0419922, -1.4550781, 0.62158203, 1.5195312, -3.1132812, 0.92529297, -0.12890625, -0.06347656, -0.77197266, -1.6337891, 0.04663086, -1.8925781, -1.234375, -1.6669922, 0.037628174, -1.9462891, -0.8046875, -0.42797852, -0.8041992, 1.0029297, 2.5429688, 0.19091797, 1.796875, -0.33325195, -0.6044922, 0.609375, -2.1445312, -0.14880371, 0.77001953, 2.2695312, 0.6801758, 1.1904297, -1.3544922, -3.4199219, -1.8369141, -1.1689453, 1.2431641, 1.3759766, -3.3613281, 1.1884766, 1.1923828, 1.5126953, -1.1298828, -1.4121094, 0.09454346, 1.7070312, 1.3417969, -0.7158203, 1.5917969, 0.3317871, 1.0029297, 0.53808594, 3.9023438, 2.4492188, 0.06945801, 0.25585938, 0.028930664, -0.38793945, -1.6494141, 0.86865234, -0.44091797, 0.5439453, 0.066223145, 1.5810547, 3.3046875, -0.0925293, -0.94140625, -1.1572266, 0.8388672]}, "B015S0VALO": {"id": "B015S0VALO", "original": "Brand: \nName: 71'' Propane Gas Stove Burner REGULATOR 71'' Hose 20,000 BTU Propane Regulator\nDescription: **Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.\nFeatures: Low pressure propane stove regulator\nHose length: 71'' long\n0-20 PSI ; BTU max: 20,000\n** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully**\nQuantity: 1 ; Shipping Weight: 1 lb\n", "embedding": [-1.5263672, 1.3017578, 2.4140625, 2.1953125, -1.6464844, 0.28515625, 1.3095703, -2.0332031, 0.6699219, -1.0615234, 2.8496094, -0.23730469, -0.5053711, -1.5908203, 2.5078125, 0.765625, 0.93603516, 0.9638672, 0.64746094, 0.8256836, 0.0075302124, 0.5283203, 3.9023438, -1.5859375, 0.1817627, 0.4140625, 3.125, -3.6132812, -0.9448242, -1.1904297, 1.3085938, 0.84228516, 0.51123047, 2.375, -2.609375, -1.7646484, -0.10040283, -0.41015625, -4.1992188, -0.4169922, -1.1523438, 2.3886719, 1.0185547, 0.65185547, -2.5957031, -0.8847656, 1.9169922, -0.8051758, -2.1699219, 1.2304688, 1.4570312, 0.41870117, -0.37768555, 0.66552734, -0.64990234, 1.9384766, -2.0078125, -2.0488281, 0.75146484, 0.077819824, 2.71875, 0.02142334, -2.0878906, 0.18310547, -0.3413086, 3.2226562, -0.43725586, 0.3322754, -0.66259766, 1.0488281, 2.0058594, 0.41796875, -0.2734375, -1.2548828, -1.140625, 0.36523438, -3.09375, -0.69189453, 2.8242188, -1.3232422, -0.9199219, 2.1308594, 1.4970703, -0.25219727, 1.6748047, 0.38012695, -1.0800781, -0.37939453, 1.3515625, -0.028030396, -1.5048828, 1.4326172, -2.5566406, -3.0351562, 0.2998047, 2.171875, 0.62939453, 1.2363281, -0.02130127, -0.9370117, -0.77197266, -0.13452148, 0.875, 1.1142578, -1.7373047, -0.16223145, 0.72314453, 1.4589844, -3.8359375, -0.72021484, -1.2294922, -0.9296875, 2.0097656, 0.15637207, 1.5332031, -0.3894043, -0.4411621, -0.44628906, 3.2988281, 0.4104004, 2.6054688, -0.8461914, -0.14587402, 0.1239624, -0.5629883, 0.13366699, -1.0107422, -1.2158203, 3.4335938, -0.92333984, 1.2519531, -1.6318359, 2.2753906, 0.5151367, -0.6484375, -2.421875, -3.0839844, -3.2890625, -2.6855469, -1.5664062, -3.0742188, -1.1474609, 0.13537598, 0.95703125, -3.7441406, -0.93115234, -2.2695312, 1.0341797, 2.2597656, -3.1601562, 2.1757812, -1.2587891, -0.29101562, -0.7729492, 1.1376953, 0.46923828, 1.1914062, -2.2070312, 2.5488281, 1.7041016, 0.0692749, -0.016967773, -1.5058594, 0.77685547, -1.1464844, -1.7050781, -0.39746094, 1.3505859, -2.6992188, 2.0117188, -0.94873047, -1.6708984, -1.3583984, -0.23632812, -0.3215332, 0.546875, -1.5195312, 2.0371094, 2.9238281, 0.22473145, -3.9003906, -3.0800781, 1.1748047, -0.8911133, 0.4453125, -0.7758789, -1.4902344, -2.9472656, 2.5449219, -0.18945312, -1.984375, 0.03604126, 0.5263672, -0.62597656, -1.6542969, -1.5234375, -3.03125, -2.7246094, 0.53125, 1.7226562, -1.7587891, -0.63720703, 1.3964844, 0.0869751, -0.5102539, -2.1445312, 0.5756836, -0.020080566, 0.30151367, 2.0859375, 0.6689453, -1.8574219, 2.453125, 0.1161499, -1.1220703, -2.578125, 2.7988281, 2.09375, 0.78125, 1.3378906, -1.1806641, 0.6489258, 1.9589844, 0.028442383, 1.2724609, 0.2565918, 0.36865234, 0.6816406, -2.7539062, -1.6025391, 2.6386719, 2.6640625, 0.34814453, -0.119384766, -0.4140625, 2.4453125, 0.51220703, 0.4350586, 1.6904297, -0.2919922, 0.5136719, -0.25952148, 0.47485352, -0.22290039, -0.4567871, 2.1328125, 0.17944336, 2.1152344, 3.0585938, 0.41430664, 1.1455078, 0.5292969, -0.9633789, -1.5712891, -0.46484375, -1.6269531, 0.83496094, 1.6582031, 0.44213867, -1.8642578, 4.3984375, 1.3779297, -0.6816406, 1.0380859, -0.48999023, -0.29760742, 2.2460938, -0.71875, -0.39282227, -0.20019531, 0.69677734, 2.0898438, 2.1542969, -0.9589844, 2.546875, 0.19091797, -1.65625, 3.0507812, -0.14660645, 0.63623047, 0.96875, -1.2207031, 3.1015625, -2.0898438, 1.9746094, 0.69140625, 2.8222656, -0.3647461, -4.0585938, 0.93408203, 3.7460938, -1.5185547, -0.58935547, 2.5839844, 1.2167969, -1.9121094, 0.63916016, -0.5307617, 0.38793945, -1.0029297, 2.9082031, -1.3408203, -0.7817383, -1.7851562, 1.5800781, -0.90771484, -0.64453125, -0.88720703, -0.96240234, 0.3803711, -1.8847656, -1.7109375, -1.1865234, 1.8935547, -2.2382812, 0.4152832, 1.8515625, -2.5175781, 1.2109375, 0.034332275, 0.26171875, 1.4902344, 0.07305908, 0.32250977, 1.5058594, 0.9765625, -2.5214844, 2.6152344, 2.0605469, 0.038269043, -1.9296875, -1.4746094, 0.6582031, -2.6953125, -2.2832031, 1.3789062, -1.4296875, -4.1796875, 0.7138672, -1.2734375, -0.5756836, 1.3154297, -2.8945312, 4.3398438, 1.0253906, -1.4775391, -0.26489258, 0.62402344, -0.9355469, -0.27954102, 0.14453125, 2.4433594, -0.054260254, -1.2119141, -2.0449219, -0.4650879, -0.15881348, 0.89746094, -1.0595703, 1.734375, 0.9082031, 0.29589844, -0.01789856, -0.08843994, 0.7973633, -1.9443359, 2.3574219, -3.84375, -0.4345703, -0.59716797, 1.2265625, -2.3691406, 0.49658203, -2.7363281, -0.85839844, -0.75634766, 0.21398926, 2.5371094, 0.0054969788, 2.0625, -1.0244141, 0.86816406, 0.3125, -2.7792969, -1.9169922, -0.15209961, 1.0605469, -1.1464844, -0.4440918, -3.1601562, 0.4140625, 0.7944336, -0.06585693, -0.29589844, -1.6376953, 1.1982422, -0.4970703, 0.38916016, -1.7167969, -0.81933594, 0.48876953, -0.82373047, -1.4492188, 0.3803711, 1.0488281, -2.7441406, -0.19689941, 1.5273438, 0.82470703, 0.13024902, 0.51904297, 0.69091797, 0.64208984, 1.9414062, -0.7260742, -2.8085938, -0.6269531, 2.2363281, -0.14453125, 1.6728516, -2.1425781, -0.18054199, -1.2441406, -2.1308594, 1.8115234, 1.3662109, 2.828125, 0.55859375, 0.2866211, -0.7182617, -0.7055664, -2.3105469, -1.4296875, -0.7763672, 4.4492188, -1.8769531, -2.140625, 0.22351074, 0.33203125, -3.4648438, -1.1669922, 0.9399414, -0.4116211, 3.0878906, 0.63134766, 1.1777344, -1.6826172, 1.4130859, 0.4892578, 2.3339844, -0.51660156, 1.2519531, 0.64404297, 2.2871094, -1.2734375, 1.6962891, 3.375, 1.0449219, 1.4160156, -0.44970703, 0.33862305, -0.73779297, 0.28588867, 1.3544922, 0.039245605, 0.8466797, 2.6660156, -0.23266602, -0.9091797, 0.25634766, 1.5947266, 1.6396484, -2.1074219, 0.2746582, 1.1152344, 1.3740234, -1.5761719, 1.3183594, -0.10845947, 0.8930664, -0.18945312, 1.5078125, 1.3779297, 0.03543091, 1.046875, -0.0079193115, 2.5332031, -2.9277344, 1.5722656, -1.5976562, -0.031021118, -0.95654297, 0.22277832, -3.6875, -1.5820312, 0.24499512, -2.0683594, -1.5332031, 1.9628906, 1.5966797, -0.42700195, 0.6230469, -0.48413086, 0.8046875, 1.5097656, -2.6269531, 0.09838867, 0.7705078, -2.0175781, -0.97998047, 0.28564453, 1.4726562, 0.51416016, -1.15625, -1.234375, -2.6035156, -0.045715332, 0.8769531, 0.7402344, -0.62402344, 0.8588867, -2.0039062, 1.7431641, -0.10180664, 3.6582031, -1.5693359, 0.09979248, 1.3496094, -1.5253906, -0.27856445, -3.375, -4.7851562, 0.40014648, -1.9052734, 0.7890625, 1.2050781, 0.234375, 0.98291016, 3.0703125, 3.5136719, -1.7177734, 0.6328125, -0.8613281, 0.25, -2.359375, -0.062194824, 1.6689453, 1.0839844, -1.1669922, -1.7646484, 0.75878906, -2.2324219, -0.9873047, 0.64501953, -4.0703125, -1.9072266, 0.037994385, 1.7207031, -0.95458984, -1.7080078, 2.3144531, -0.66552734, -1.6044922, -3.328125, 2.7148438, 1.1171875, 0.89746094, -0.089904785, 3.5957031, 1.9335938, -1.171875, 1.0917969, 0.2524414, 2.8378906, -0.63183594, -2.5839844, 0.059020996, -0.05517578, -1.9160156, 0.030303955, 0.7705078, -1.5058594, -1.2597656, -0.36010742, 0.1394043, 0.24633789, 2.25, 0.4831543, -1.6572266, 0.41064453, -0.4206543, -1.3515625, 0.97753906, -0.44213867, -1.4189453, -1.7783203, 1.0791016, -2.9375, -0.62402344, -1.9238281, -0.09472656, -1.9902344, 2.9726562, -1.0605469, -0.3779297, 1.6679688, -1.6298828, -0.38134766, -0.328125, 0.02027893, -1.4394531, -1.1279297, -1.1318359, -0.46020508, 2.6738281, 3.2285156, 0.22045898, -1.3359375, 0.4868164, -2.7949219, -0.024230957, 0.7055664, 0.8798828, 0.3774414, -1.171875, 2.2636719, -0.42016602, 3.9472656, -0.9995117, -0.38183594, 0.30322266, -0.58447266, -1.8427734, 1.2734375, 0.56103516, -0.29638672, 1.8300781, 0.45751953, 0.94433594, 1.6269531, 1.6513672, 0.21118164, 1.1376953, 0.1048584, 0.4494629, 0.66064453, 0.19714355, -1.0185547, 0.19580078, -0.14892578, 0.41479492, 2.96875, 4, 2.5859375, -1.8632812, 1.9892578, 0.6088867, -1.5820312, -0.47705078, -0.7885742, -2.1699219, 3.1699219, 1.1289062, -3.1835938, 0.51953125, 2.6679688, -0.64941406, 1.6845703, -0.17089844, -1.1738281, -0.5073242, -1.7304688, -1.4257812, -1.9267578, -1.421875, 0.96875, -0.6743164, 1.3007812, -0.47436523, 1.1875, 1.6992188, -0.056030273, 0.6645508, 0.2043457, -1.1083984, -0.11450195, -1.6367188, 0.17907715, -1.9414062, 1.3857422, 0.96191406, -0.58935547, 0.019760132, -0.18066406, 0.9584961, -2.234375, -0.06964111, 0.70166016, 1.7041016, -0.50634766, -0.59033203, 2.8417969, -1.3525391, -0.80908203, -2.3945312, -1.7783203, -1.3251953, 1.3945312, 1.7363281, 1.7304688, -2.2226562, -0.33691406, -2.4628906, -3.6328125, -0.043182373, 1.4658203, -0.053253174, 0.96875, -3.6425781, -1.4150391, 1.4453125, -1.5380859, -0.4255371, -2.5214844, 1.0332031, -1.0830078, 0.92626953, -0.09429932, -1.8496094, -0.41479492, 2.5957031, -0.026641846, -0.4128418, -1.1132812, -1.4482422, -3.1367188, 2.6484375, -3.2949219, 0.53027344, 2.296875, -0.7265625, -0.42993164, 0.89501953, 0.37524414, -0.28320312, 1.5585938, -2.2070312, 0.51123047, 1.0488281, -1.9619141, 2.7441406, 0.81103516, -0.61376953, 0.7158203, 1.8769531, 0.4543457, 1.2744141, 1.15625, 0.23120117, -0.63671875, -0.765625, -2.1445312, 0.8798828, -0.10900879, 0.4658203, 1.8945312, -1.5341797, 0.3815918, -2.1269531, -1.5029297, -0.15539551, -1.8662109, -0.031707764, 0.76660156, -0.49926758, 2.671875, -0.8833008, 0.24047852, 1.2167969, 0.5498047, 0.7163086, 1.0371094, -1.1318359, 2.828125, 2.6582031, -1.1982422, -1.3613281, -0.68603516, 0.69433594, 2.1621094, -0.68896484, -0.27270508, 0.6142578, -1.5703125, 0.8383789, -0.5732422, 0.640625, 2.0820312, 1.9990234, -0.7338867, -0.48217773, 3.5390625, -2.125, 0.62060547, 0.32739258, -0.90966797, -0.9223633, 2.4375, 2.8632812, -2.4042969, 1.7880859, -0.8642578, 2.0683594, -0.6772461, -1.0410156, 1.4335938, -1.2578125, -0.0703125, -0.17321777, -2.796875, -3.2890625, 0.94873047, 2.0546875, -1.6455078, 0.46118164, 3.5410156, -0.60595703, 0.6308594, 0.6699219, 0.13012695, 0.26708984, -0.70166016, -0.67285156, 1.0488281, 2.4316406, -1.9560547, 2.0957031, 1.6064453, 0.9145508, -1.8417969, -0.08630371, -0.6459961, 1.7011719, 2.8125, 2.0078125, 2.6132812, 0.04824829, 1.96875, 0.6035156, 2.3710938, 1.4560547, -0.19921875, 0.6357422, 1.6533203, -0.60058594, 0.28564453, -1.1347656, -1.5332031, -0.4423828, 0.0050735474, -0.15966797, 0.11395264, 1.328125, -3.8066406, -0.1340332, -1.8115234, 0.5317383, -2.0917969, 1.5722656, -0.54833984, 0.9926758, 1.6181641, 0.96191406, 0.9067383, 2.609375, -0.89404297, -0.5395508, -0.8339844, 1.1650391, -1.2060547, 0.6777344, -0.63671875, -3.2890625, 0.14770508, 1.4443359, 1.0292969, -0.31835938, 1.3251953, -0.0836792, -1.453125, 1.3417969, -0.7026367, -2.2480469, 0.93066406, 0.79541016, 0.89160156, 1.7363281, -1.8388672, 1.3251953, 0.1529541, -0.6074219, -3.2421875, 4.6796875, 0.49047852, 0.8105469, 0.78222656, -4.578125, 2.5527344, -0.21850586, -1.8486328, -1.578125, -0.7363281, -1.3193359, -0.6982422, -0.20031738, 0.55859375, -2.609375, 3.5800781, 1.1767578, -0.32739258, 0.37597656, 0.45361328, 1.4667969, 0.9091797, 1.1367188, 0.060180664, -0.45043945, -2.0488281, 2.6601562, 0.69384766, -3.6484375, -0.7529297, 3.0273438, 2.5742188, 0.23413086, 0.12176514, -0.9086914, -0.4934082, 2.0878906, 1.3574219, 0.8251953, -2.1289062, -0.45947266, -1.3417969, -1.3876953, -1.3867188, -2.6191406, 2.4511719, 2.1875, -2.7089844, 1.0546875, 2.7167969, -1.7929688, 0.6303711, 0.796875, -1.5, -2.984375, 0.6977539, 0.49731445, -2.3476562, -1.9365234, -0.20214844, 1.6269531, 1.0869141, -1.7255859, -1.2304688, -0.3737793, 0.64160156, -1.4521484, -0.6870117, -1.71875, -1.2363281, 0.66015625, -0.4091797, -0.7055664, 0.9536133, 0.10821533, 1.6074219, -0.4885254, -0.7651367, -0.66259766, -0.8208008, -1.0146484, 1.6835938, 2.2265625, 0.18835449, 0.9140625, 0.15966797, -2.7714844, -1.1308594, -1.1757812, 2.7792969, 1.4511719, -1.2265625, -0.9560547, 1.4140625, 2.6503906, -1.9111328, -0.052215576, 0.3713379, -1.7929688, 1.6621094, -1.1923828, 2.6054688, -1.2490234, 1.0322266, -0.5449219, 4.84375, 0.9667969, -0.4074707, -0.07128906, -0.32788086, 0.9145508, -3.0976562, 0.06896973, 0.85791016, -0.92041016, 1.4902344, 0.9448242, 3.1035156, 1.0439453, -2.2011719, -2.1503906, -0.41845703]}, "B07M6RMP1V": {"id": "B07M6RMP1V", "original": "Brand: ARC Advanced Royal Champion\nName: ARC, 339S Super Propane Burner Stove with Electron Strike,13\" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing\nDescription: \nFeatures: \ud83d\udd25Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances.\n\ud83d\udd25Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors.\n\ud83d\udd25Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious\n\ud83d\udd25High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included.\n\ud83d\udd25Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.\n", "embedding": [-1.7460938, 1.3271484, 2.5175781, 1.6806641, -1.5205078, 1.734375, 2.4550781, -1.5, -0.7919922, 0.98291016, -0.14880371, -1.5390625, 0.38378906, -2.9355469, 1.1298828, 0.60009766, -0.9003906, 0.50878906, 0.12719727, 0.043121338, 0.7089844, -0.12451172, 2.8476562, -0.9135742, 0.9711914, 0.86328125, 2.7714844, -3.2148438, -0.27490234, -1.4072266, 2.3671875, 0.32250977, 1.2792969, 1.8916016, -2.5625, 1.6591797, -1.3310547, 0.6191406, -2.3320312, 1.1425781, -0.08050537, -0.16711426, 2.1640625, -0.114746094, -1.7490234, 0.6850586, 0.6308594, 1.3632812, -0.7949219, 1.3876953, -0.74121094, 0.23950195, 0.12475586, 0.35473633, -1.6484375, 1.0839844, 0.80810547, -1.5537109, 1.2099609, -0.35888672, 1.3779297, 1.2050781, -1.9638672, 1.1953125, -0.7597656, 0.0914917, 1.0390625, -1.2060547, -0.2722168, -0.114990234, 1.2265625, -0.7451172, 0.10772705, -0.6958008, 2.3183594, -0.3647461, -0.97998047, 0.74365234, 2.2851562, -1.0703125, -2.1035156, 1.5791016, 0.08532715, 1.1757812, -0.070495605, 1.9375, -2.8007812, -1.4511719, 0.27270508, -0.43310547, -1.2763672, 1.2919922, -2.3554688, -4.2617188, 4.0820312, -0.37475586, 0.4831543, 0.27856445, -0.0026283264, -0.17675781, -0.5097656, -1.0498047, -1.3408203, 0.21118164, -1.6494141, 0.06695557, 1.6884766, 1.6503906, -2.2890625, -0.24853516, -1.6875, -0.23022461, 1.4072266, -0.48608398, 0.64208984, 0.33911133, -0.13012695, 0.359375, 3.2910156, -1.4355469, 3.6445312, -0.9819336, -0.90478516, -2.0488281, 0.47875977, 3.0253906, -0.83935547, -1.0986328, 3.4824219, -1.6142578, -0.421875, -1.0966797, 1.2128906, 0.47192383, -1.4824219, -1.1279297, -1.4941406, -0.67529297, -3.515625, 0.9296875, -3.2929688, 0.76171875, 0.5048828, 0.19018555, -4.1523438, -0.5209961, -0.25146484, 1.8320312, -1.5986328, 0.8964844, 0.44311523, -0.071777344, -0.4567871, -2.5449219, 1.7929688, -0.10882568, -1.3701172, -2.7792969, 3.1171875, 0.64160156, -0.45947266, -3.3242188, -0.1517334, 2.9433594, -1.2255859, -0.5576172, -1.8427734, 1.7783203, -0.64208984, 2.4375, -0.58691406, -3.0566406, -1.5546875, 0.81152344, 0.06994629, 0.0690918, -1.1640625, 2.2832031, 0.8881836, -0.4633789, -2.5761719, -2.7480469, 2.3515625, 1.7216797, 1.5839844, -2.1210938, -1.0957031, -1.2373047, -0.1529541, -1.2792969, -1.4248047, 0.19433594, 0.46289062, -0.5341797, -0.34936523, -1.4892578, 0.95996094, -3.296875, -0.4177246, 1.3984375, -2.2988281, -0.55029297, -0.6455078, 1.9794922, -2.9042969, -0.83984375, -0.49609375, -0.88183594, 1.9306641, 2.28125, 1.2841797, 0.13464355, 1.0498047, -1.3154297, -1.4423828, -2.2988281, 1.4042969, -1.3408203, 2.0683594, 2.078125, 1.4052734, -0.15344238, 1.9375, 1.1748047, 0.03427124, 2.9609375, 0.7885742, 0.049743652, -0.89160156, -2.2714844, 2.7871094, 0.5449219, -1.0488281, 0.9189453, -1.1123047, 1.8242188, 1.1152344, -0.5102539, 0.6328125, -1.4501953, -0.9790039, -1.3173828, -0.7446289, 0.22375488, -0.87158203, -1.6582031, 0.5019531, 1.7001953, 2.5566406, 0.5292969, -0.011482239, -0.6699219, -0.2548828, -0.14367676, 0.09429932, 0.83447266, 0.00088071823, 0.40600586, -2.0214844, -2.2597656, 1.5517578, 0.89746094, -1.4003906, -0.8671875, 0.11798096, -1.0332031, 2.6464844, 1.6435547, -1.4492188, 0.6845703, -0.2692871, -0.19396973, 2.9765625, 1.703125, 2.0859375, 1.0615234, -0.4802246, 2.953125, -0.7807617, 1.4638672, 0.41430664, -1.2392578, 2.3925781, -1.734375, 0.43286133, 0.3166504, 2.1464844, -0.50341797, -1.0205078, 0.0011091232, 4.7070312, -1.0673828, -2.1386719, 0.85498047, -1.5146484, 0.11260986, 1.0234375, 0.9316406, 0.39282227, -1.5585938, 0.8647461, -0.27661133, 1.5058594, 0.8642578, -2.3105469, -1.5, 0.9663086, -1.8330078, -1.4736328, 0.38061523, -0.2109375, -0.80078125, -2.0078125, 1.0292969, -3.9394531, -0.34179688, 2.4394531, -3.8476562, 1.5576172, 1.4677734, 0.12536621, -0.06750488, 0.14868164, -1.9697266, 0.7685547, 0.13757324, -0.50341797, 1.6923828, 0.6850586, -0.5366211, -0.64697266, -2.1074219, -0.6328125, -1.6699219, -0.69970703, 0.27124023, -0.20593262, -2.4550781, 0.83251953, -1.5947266, 1.1992188, 2.6542969, -2.3808594, 0.57666016, -0.79345703, -3.640625, -1.1962891, -0.61816406, -0.35253906, -0.5415039, 1.2753906, 2.6933594, -0.44799805, -3.6523438, -0.8417969, -1.0263672, 0.040222168, -0.08337402, -0.091552734, 1.9228516, 0.1348877, -0.012176514, 0.18493652, 1.4550781, 1.6259766, -1.9980469, 0.5058594, -3.6484375, 1.0136719, -3.1953125, 1.0087891, -0.2548828, 0.7216797, -1.0556641, -0.52783203, -0.11828613, -1.4404297, 3.1289062, -0.101989746, 2.7148438, -0.5527344, -0.9013672, 0.14099121, -0.07727051, -1.7597656, -0.3864746, -0.6767578, -2.5742188, -1.3115234, -3.9472656, -0.29296875, -0.99609375, 0.38598633, -0.70458984, 0.26489258, -1.2529297, 1.6533203, 0.16918945, -0.6611328, -0.35083008, -1.9384766, -1.1376953, -0.5449219, -1.0341797, -0.93310547, -1.0039062, 0.18566895, 3.0019531, 1.3515625, -0.90478516, 1.2617188, 1.4667969, 1.1269531, 0.94628906, 0.6875, -4.4296875, 2.8105469, 1.328125, -0.13928223, 3.4042969, -2.0585938, -0.79785156, -1.34375, -0.44433594, 2.1113281, 0.23730469, 1.9716797, 0.14624023, -0.09173584, 1.9775391, 2.9511719, -0.9707031, -1.7236328, -1.3701172, 4.0976562, -2.4863281, -2.1894531, 0.51171875, 3.6074219, -2.1269531, 0.12487793, 0.6010742, 0.6508789, 2.4394531, 1.8964844, -0.45703125, -0.6923828, -1.0488281, 0.8461914, 1.6699219, 1.4072266, 1.0888672, -0.33007812, 0.8364258, 0.1149292, -0.86621094, 2.6328125, -0.34057617, 2.3359375, 1.3867188, 1.9287109, 0.24450684, -0.16088867, 1.28125, 2.109375, -0.14086914, 0.4831543, -0.5336914, 0.39648438, -1.4384766, -0.13220215, 0.5131836, -2.7304688, -0.12451172, -0.23547363, 0.77490234, 0.30371094, -0.57128906, 0.92871094, 0.48217773, -1.7148438, 1.3955078, -0.77685547, 0.5229492, -0.34179688, -0.6074219, 0.4580078, -2.7402344, 1.7353516, -0.6298828, -2.3300781, -0.35546875, 0.99902344, -1.4355469, -1.84375, 0.48608398, 0.57958984, -0.38208008, 3.4238281, 0.8730469, 0.38354492, -0.00057792664, -2.2089844, 0.47509766, 0.1829834, -1.6767578, 0.19763184, -1.3583984, -0.9003906, -1.7714844, 0.8574219, 1.1484375, 1.6044922, -0.5932617, 0.8935547, -3.9921875, -0.13354492, -0.22949219, -2.6679688, -0.62109375, 2.1171875, -0.3071289, 0.027069092, -1.3896484, 4.34375, -1.7001953, -3.1289062, 1.453125, -2.4667969, -0.42456055, -4.015625, -2.1855469, 0.77978516, -0.63134766, -0.515625, 2.4765625, 0.13342285, -0.7807617, 0.7475586, -0.2890625, -1.84375, -2.2753906, 0.60009766, 0.7631836, -1.3144531, -0.4663086, 1.9921875, 1.5742188, -1.4589844, -2.25, 1.1455078, -1.8398438, 0.23535156, 1.6904297, -1.7998047, 0.7685547, -1.9560547, 0.8691406, -0.09753418, -2.609375, 2.1210938, -0.59521484, 0.18554688, -2.4511719, 1.0400391, 2.1425781, 0.35717773, 1.1523438, 3.2871094, 0.4428711, 0.3125, -0.64453125, 0.22912598, 2.0234375, 0.6582031, -2.5507812, -0.9526367, -2.375, -0.036254883, -1.0410156, 1.0820312, -1.5527344, -1.0703125, 0.5654297, 1.1025391, 1.2734375, 2.9492188, 1.1230469, -0.011413574, -0.8105469, 0.2614746, -0.52441406, -1.0458984, 0.19702148, 1.3076172, -0.66552734, 1.765625, 0.008644104, -0.9477539, -2.3789062, -0.5786133, -2.6425781, 1.6777344, 2.6191406, -0.5625, 1.046875, -1.7841797, -1.265625, 0.022659302, -0.7524414, -2.3066406, 1.6083984, -0.5810547, 0.4880371, -0.1394043, 0.37402344, -1.7050781, -1.8017578, 1.3574219, -1.9101562, -0.34423828, -1.3505859, 0.85253906, 0.097839355, -0.7050781, 2.2460938, 1.2753906, 1.0527344, -0.54003906, -0.47827148, 1.0068359, 0.7011719, -1.1914062, -0.63720703, -1.3964844, 0.8544922, 1.8789062, 0.09234619, 1.2314453, -1.3417969, 2.4179688, 0.45654297, 2.9257812, -0.68408203, 0.47338867, 0.42407227, 1.1806641, -0.15490723, -1.4384766, 0.8979492, 1.2382812, 0.53125, 4.140625, 1.5234375, -0.22521973, 2.2285156, -0.19018555, -1.6083984, -0.26123047, -0.6230469, -1.3701172, 1.1582031, -0.08312988, -3.0878906, -0.45996094, 3.5898438, 0.65625, 0.25683594, 0.31396484, -0.94970703, -0.60253906, -2.5644531, -0.93310547, -1.7001953, 0.06903076, 0.26708984, -0.30517578, 0.11651611, -1.6728516, 1.8916016, 2.2929688, -0.84228516, 0.11663818, 2, -1.2509766, 0.6303711, 0.7631836, -0.51953125, -1.484375, 1.6455078, 2.0917969, -0.072509766, 1.6328125, 0.85546875, 2.3847656, -0.04937744, 0.50439453, 0.113220215, 3.2265625, -3.4433594, -1.3457031, 1.8085938, -0.54541016, 0.9770508, -1.5908203, -1.6171875, -2.0253906, 2.4960938, 0.49243164, 1.1757812, -0.4008789, -0.62060547, -2.0214844, -3.4785156, -0.96972656, 1.6894531, -0.40112305, -0.8666992, 0.09387207, 0.6279297, 0.39233398, -0.56347656, -0.041625977, -1.3095703, 0.7578125, -0.3100586, 0.71875, -2.0429688, 0.8120117, 1.1162109, 1.6601562, 0.46533203, -0.028549194, -0.11730957, -2.1035156, -0.7973633, 1.8818359, -2.1601562, 3.2089844, 1.2382812, -1.5488281, 0.83691406, 1.0361328, -1.1855469, -0.43896484, 0.7573242, -0.34960938, 0.042816162, 1.2490234, -1.5732422, 1.3789062, 1.6640625, -1.6269531, 0.5053711, -1.390625, -0.5566406, 0.026351929, 0.69873047, 1.4619141, 0.65283203, 0.38989258, -1.0195312, 1.9902344, 0.35351562, 0.32836914, 0.7392578, -0.93896484, -0.7368164, -1.4267578, -2.9082031, -0.42578125, -0.74365234, 0.12548828, -0.6816406, 2.734375, 1.4511719, -0.9609375, 0.34765625, -0.8515625, 1.0683594, -0.017791748, 2.0273438, -2.4179688, 3.1640625, 0.62939453, -1.9941406, -1.6894531, -1.2080078, 0.2286377, 2.3300781, 1.0058594, -0.9921875, 2.2832031, -1.2167969, 1.0966797, 0.25341797, 1.1464844, 2.5996094, -0.0914917, -0.47558594, 1.7099609, 3.1738281, 0.5522461, -0.6660156, 0.09863281, -1.2978516, -1.2548828, 3.671875, 3.1816406, 0.3166504, 3.2988281, -2.8203125, 0.66064453, -0.45239258, -1.2324219, 0.7158203, -2.0371094, -1.0966797, -1.9365234, 0.4794922, -2.046875, 0.2980957, 2.2382812, -0.5136719, 0.98583984, 1.4287109, -0.41723633, 1.34375, 1.2988281, 1.7050781, 0.0032463074, 1.1777344, 0.6381836, 0.7734375, 2.46875, -1.9355469, 1.3398438, -0.094177246, -0.5263672, -0.4296875, 0.93652344, 0.9658203, 2.375, 2.8671875, 1.046875, 1.8125, 1.9960938, 2.5605469, -0.15942383, 1.9160156, 2.5820312, -0.21643066, 0.049560547, 1.1845703, 0.7558594, -0.60058594, -0.6713867, 1.0683594, -1.4443359, -1.1513672, -1.4824219, -0.9868164, 1.8964844, -1.0419922, 0.60253906, 0.54296875, 0.68310547, -0.78564453, 1.3183594, -1.0615234, -0.9707031, 0.7416992, 0.25585938, 0.55126953, -1.1503906, -0.68896484, -0.07635498, -0.082336426, 0.58154297, -3.0507812, 1.3515625, -0.8613281, -1.2294922, 0.77685547, 2.2617188, -0.40820312, 0.057647705, 0.81396484, 2.375, 0.10247803, -0.32739258, -0.18371582, -1.7060547, 0.45483398, 0.54003906, 3.7089844, -0.6411133, -1.5556641, 1.7265625, -1.3027344, -2.375, -2.6191406, 3.7734375, -0.19104004, 1.8046875, 2.1835938, -2.3632812, 2.6113281, -1.6230469, 2.3613281, -3.6230469, 0.95996094, 1.2128906, -1.9980469, -1.4365234, -1.171875, -0.27539062, 3.4804688, 1.3798828, -1.5693359, 0.027755737, -1.7041016, 1.0732422, 0.21862793, 1.6298828, -0.39135742, 1.8857422, -1.5429688, 2.7226562, 0.37304688, -3.171875, 0.2932129, 2.9023438, 0.45874023, 0.23217773, -0.1171875, -2.2402344, 0.67626953, 0.68066406, -0.6118164, -0.56347656, -1.3798828, -1.8144531, -0.4321289, -0.5625, -1.5214844, -1.1083984, 0.5097656, -0.91308594, -0.24853516, 0.7988281, 2.7792969, -1.0576172, 1.3105469, -0.18017578, -0.7441406, -2.3105469, -1.1015625, 1.4746094, -0.040618896, -2.53125, 0.42504883, 1.8623047, 2.1015625, -1.2041016, -1.5849609, -1.6142578, -0.32177734, -0.2548828, -0.070739746, -2.1445312, 0.42236328, 0.5546875, -0.6484375, -2.3457031, 2.375, -0.2680664, -0.6503906, -0.67626953, -2.9238281, -2.2089844, -0.80322266, 0.27905273, 2.2363281, 1.3554688, -0.97998047, -0.14453125, -0.90771484, -3.3886719, -1.2304688, -0.49560547, 1.1884766, 0.18408203, 0.6870117, 0.3737793, 2.1289062, 1.8203125, -1.0957031, -1.2460938, -1.2138672, 1.2128906, 0.6870117, -0.40966797, 1.1972656, 0.47436523, 0.67089844, -0.73828125, 2.1972656, 0.12359619, 0.17956543, 1.4648438, 2.9648438, -0.27148438, -1.5126953, 2.2695312, -1.0605469, 0.32470703, 0.046966553, -0.5175781, 2.953125, 2.3769531, -0.9765625, -2.3378906, -1.2851562]}, "B074BT57HG": {"id": "B074BT57HG", "original": "Brand: Renook\nName: Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black\nDescription: \nFeatures: 1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat\n2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "embedding": [-0.40893555, -0.22009277, 1.2480469, -0.6791992, 0.9916992, 0.09875488, 1.1513672, -0.41796875, -0.41186523, 0.8925781, 0.51171875, -1.7929688, 1.2275391, -2.8261719, 0.04827881, -0.44628906, -0.030090332, 2.375, 4.3007812, -0.025909424, -0.71777344, 0.21875, 1.5673828, -1.7958984, -0.26000977, 1.2236328, 3.1679688, -1.0019531, 0.011734009, 0.55566406, 1.9472656, 1.4746094, 0.89404297, 2.296875, -2.7578125, -0.9111328, -1.0947266, 2.5527344, -0.5527344, -0.6176758, -0.6069336, -2.0371094, 1.2753906, 1.5654297, -1.7841797, 0.19567871, -0.37597656, 1.3769531, -1.5820312, -3.3652344, 0.59814453, -0.24450684, 2.6445312, 0.25830078, -1.765625, 2.1582031, 0.91015625, -0.8232422, -0.26391602, -0.04763794, 0.24853516, -0.7133789, -1.3544922, -0.0037631989, -1.0488281, -1.2001953, 1.0908203, -1.3935547, 0.48266602, -2.1347656, 0.05731201, -0.3930664, -0.073913574, 0.16369629, -1.0927734, 0.98583984, -0.12414551, -1.1650391, -0.68652344, -1.7568359, 0.5605469, 2.3222656, 0.023895264, -1.0986328, -0.042419434, -1.2880859, -3.1972656, -0.9560547, 2.2773438, -0.074401855, 0.46728516, 3.4238281, -2.3945312, -4.140625, 0.8022461, -2.0800781, 0.2607422, 0.24645996, -1.2148438, 1.9052734, -1.6865234, -1.7197266, -0.85498047, 2.0527344, -3.125, -2.421875, 1.9033203, -0.18615723, 0.22485352, 0.23266602, 0.75097656, -0.5649414, 1.1601562, 0.11480713, 1.7607422, 0.50341797, 0.023254395, 1.1279297, 0.13928223, -0.42163086, 3.6152344, 0.2388916, 0.09039307, -2.71875, 0.45263672, -1.5654297, -0.12634277, 1.9013672, 2.7089844, -2.6601562, 0.5058594, -0.72802734, -0.58251953, -0.7993164, -2.6445312, -0.22485352, -1.7539062, 0.32714844, -2.7246094, 1.4931641, 0.101623535, -0.8647461, 1.5654297, -1.4462891, -2.2128906, 0.20947266, -1.8671875, 2.859375, -3.1015625, -1.6191406, 0.79248047, -1.1689453, 2.2226562, -1.1650391, 0.8989258, -1.0019531, 1.4892578, -0.1348877, 0.1920166, 1.7158203, 0.8378906, -2.0449219, -0.1784668, 0.3713379, 0.875, -3.4082031, -1.8125, 1.4492188, -0.04156494, 1.7568359, -0.048309326, -2.375, 0.9145508, -0.43530273, -0.7426758, -0.29589844, -0.032165527, 3.5664062, 0.13317871, -1.4375, 0.9897461, -3.9238281, -0.8857422, 1.8886719, -1.2929688, -0.1673584, -0.4741211, -1.265625, -0.22729492, -0.40844727, 0.2298584, 2.4335938, -1.3720703, 0.7402344, -1.7402344, -0.25585938, 0.5722656, -2.2324219, 0.89453125, -0.80371094, -0.59716797, -0.9116211, -0.80810547, -0.33447266, -2.5898438, -3.1074219, -2.4394531, 0.5131836, 1.015625, -0.8979492, 0.87158203, -2.6269531, 1.0693359, 2.359375, -2.2128906, -2.3222656, -0.8227539, -1.3378906, 0.1640625, 2.3886719, 0.53027344, -0.5644531, 0.6640625, 3.078125, -1.6328125, 2.6113281, 0.059326172, 1.3300781, 0.008346558, -0.4658203, 1.40625, 1.140625, -1.0546875, 0.09161377, 0.19238281, 1.6962891, 2.3457031, -0.6723633, -1.4248047, -0.3010254, -1.6044922, -0.90185547, -0.84814453, -3.6113281, -0.7910156, -0.05331421, -0.089416504, 2.6191406, 2.4707031, -1.4755859, 0.19104004, 4.3828125, 0.73291016, 0.34472656, -0.03375244, 1.1650391, -0.08416748, -0.8720703, -1.6503906, 0.47143555, 0.07171631, -0.47265625, -1.4980469, 0.43237305, -0.21813965, -0.07489014, 2.2578125, 2.0800781, -2.6679688, -0.7397461, -0.828125, -0.98046875, -0.14624023, -1.9804688, 1.1875, 1.1875, -1.5361328, 1.3671875, -0.1697998, -0.7939453, -0.04724121, 2.7539062, 0.7973633, -0.7885742, -2.9238281, -0.08453369, -2.5664062, -0.52685547, 1.828125, 2.4550781, 4.375, 0.5996094, -0.42895508, 2.1816406, -0.39672852, -0.53466797, 2.0957031, -0.49902344, -1.4150391, -1.8056641, -0.8232422, 2.5800781, 0.23852539, 0.3918457, -2.0292969, -0.6328125, 1.7490234, -0.6513672, -0.96728516, 3.21875, 1.0615234, -0.3557129, 1.2275391, 2.796875, -3.3046875, -0.7036133, 1.9365234, -1.7939453, 1.1035156, -2.3203125, -1.2753906, -0.76953125, -1.2958984, -2.125, -0.49853516, 1.5732422, -0.5996094, 0.8017578, 0.08911133, 0.09063721, -0.42407227, -1.8935547, -0.72998047, 0.10723877, -2.0292969, -1.7392578, -2.0546875, -0.6357422, -1.5068359, 1.4912109, -0.9067383, 0.57421875, -1.9257812, 0.55810547, -0.41333008, -2.6894531, -2.359375, -1.8271484, -0.25097656, 1.7753906, 0.09063721, 0.89697266, 0.09832764, -3.4980469, 0.117614746, -0.61035156, -1.6464844, 2.1445312, -2.5429688, -0.36279297, 1.3583984, -0.67822266, 0.22875977, 0.5732422, 0.116760254, 1.4257812, -1.8056641, -2.0703125, 0.42797852, -1.2324219, 1.2333984, -1.328125, 0.043670654, -1.2949219, -0.7524414, -1.7880859, 0.52734375, 3.359375, -0.3815918, 0.609375, -0.9941406, -1.0478516, 1.6611328, 1.0058594, -2.2636719, -1.2177734, 0.30981445, -2.8457031, -1.015625, -2.1425781, -0.9086914, -0.9213867, -1.3564453, -0.5209961, 2.2382812, -0.39111328, 3.3632812, -3.9433594, 0.095214844, 0.2770996, 1.4707031, -0.61083984, 0.46484375, -0.6748047, -0.7133789, -1.4785156, -3.140625, -0.09350586, 1.6875, -0.69384766, 0.8881836, 0.6220703, -0.3774414, -0.05618286, 0.5493164, -0.9086914, 0.58154297, -1.7216797, -1.0859375, 0.23120117, 0.57177734, -1.6162109, -1.1982422, -0.65234375, 3.5175781, -0.02305603, 1.2646484, 1.9570312, -0.089782715, 3.5332031, 2.2460938, -0.27246094, -0.29589844, 1.0917969, -0.04272461, -0.080322266, -2.4199219, 2.8730469, 0.7583008, -1.2197266, 0.4584961, 0.3857422, 0.3239746, 1.3486328, 0.5620117, 0.93066406, -0.3334961, -0.03237915, 3.5214844, -0.09350586, -0.22045898, 0.4326172, 0.46777344, -0.14953613, 0.9995117, 2.78125, 2.6308594, 0.5410156, 0.53759766, 0.5263672, -0.21508789, -1.6611328, 0.1628418, 2.7324219, 1.1953125, -1.4521484, 1.6552734, -1.0400391, 0.5234375, 3.8828125, 0.1640625, 0.46240234, -1.3134766, 0.5371094, 1.2158203, 0.09716797, -1.3769531, -1.8232422, -1.1308594, -1.1240234, -2.5292969, 1.4941406, -2.8613281, -4.3085938, 0.7055664, -1.3769531, -3.6308594, 0.3869629, 3.1386719, -1.0751953, -1.3134766, 0.27783203, 2.8203125, -1.1259766, -1.1962891, -0.1430664, 1.1210938, 0.10620117, 0.86572266, 0.44360352, 0.061553955, 2.1640625, -2.6972656, 0.07434082, 1.5058594, -2.953125, -1.1875, -1.7744141, -0.45947266, -0.99658203, -0.515625, 1.3544922, 1.1464844, -0.82666016, 0.72998047, -1.5654297, 1.3720703, 0.671875, -0.8823242, -0.4267578, 0.35180664, 1.0957031, -0.16833496, -0.25170898, 4.5625, 1.3271484, -1.9394531, 1.4736328, -2.1484375, -0.6142578, -0.47509766, -1.8974609, 0.5332031, 0.69433594, -2.1347656, 3.609375, 0.5991211, 1.2246094, 4.7734375, -0.10144043, 0.76464844, 1.0478516, -2.2226562, -0.875, 0.5263672, 1.4394531, 3.3847656, 1.5019531, -0.80908203, -1.265625, -0.7080078, -1.4355469, 0.20446777, 0.59228516, -0.84033203, -1.1962891, -2.6835938, -0.52490234, 0.38012695, 0.076171875, 0.121520996, -0.9609375, -0.11102295, 0.6254883, 2.6308594, -1.6611328, 1.8632812, 1.0107422, -0.3857422, -0.7558594, 0.49169922, -0.6166992, 0.108947754, 4.1757812, -0.81933594, -1.6513672, -0.22302246, -0.93310547, 0.5571289, -0.33813477, -1.6904297, 0.6298828, -1.5830078, 0.10662842, -0.06427002, 1.4570312, 1.7734375, -1.0869141, 0.75683594, -0.59033203, -0.8330078, -1.5390625, -1.3486328, 0.38891602, -0.103515625, 0.8955078, -1.2246094, -1.7744141, 2.65625, -2.0996094, 0.99902344, -2.0292969, 2.1757812, 0.9003906, 0.20214844, 4.8945312, -2.6367188, 0.27514648, 0.52783203, -2.9375, -0.56103516, 0.037109375, -0.8354492, -1.6015625, 1.7041016, 2.7441406, 0.43579102, -1.9472656, -0.33618164, 0.5703125, -0.6147461, -2.8300781, 1.4980469, -1.265625, 0.009162903, 1.5117188, -0.83496094, 2.8710938, -0.73779297, 2.0664062, 3.2148438, 0.16491699, 0.3762207, 1.4746094, 0.8930664, -0.11584473, 0.5288086, 0.7319336, 1.3320312, -1.9228516, -0.39501953, 0.5917969, 2.0371094, -2.3105469, 0.76708984, 0.5732422, 1.7236328, -1.1904297, -0.8833008, 2.1855469, 1.3037109, -0.9868164, 1.6748047, 0.9116211, -2.1289062, 0.80615234, 0.9794922, -0.8154297, 1.1630859, -0.8730469, -0.49829102, 2.625, -1.3203125, -2.9492188, -1.5185547, 0.68359375, 0.6791992, -0.01423645, -1.3818359, 0.93847656, 2.453125, -2.1503906, -0.97509766, -1.3046875, -0.34033203, 0.3630371, -0.08123779, 1.4365234, -0.7470703, 0.38085938, 3.5527344, -0.7890625, -1.7041016, 1.7548828, -0.2590332, -0.63916016, 0.6020508, -0.22912598, -1.9951172, -1.8251953, -1.7070312, 0.7861328, 1.4414062, 0.11529541, 1.5205078, -2.5507812, 2.3828125, -2.421875, 2.6601562, -0.9169922, -0.6147461, 4.5625, -4.6914062, -1.6142578, -0.93603516, 0.75927734, 0.28076172, 0.9682617, 2.0273438, -0.59277344, -2.0957031, 0.006855011, -0.7583008, -2.4335938, -1.4423828, 0.5864258, 1.9501953, -0.6669922, -0.46972656, -1.2480469, 0.9291992, 0.8496094, 1.7304688, -0.03918457, 0.17077637, -0.86572266, -1.6503906, -1.2197266, 0.3581543, 0.93847656, 0.6254883, -0.7089844, 4.1484375, -0.89160156, -1.5605469, -1.2236328, -0.7861328, -3.109375, -1.0917969, 1.3271484, 0.18737793, -0.47094727, 0.796875, -0.037353516, 0.7949219, 3.3789062, -0.48999023, -0.6166992, 1.8857422, -0.4555664, -0.83496094, -0.36767578, -4.3320312, 0.6347656, -2.9375, 0.82666016, 0.54833984, -3.3710938, 1.3476562, 1.1894531, -2.7578125, -1.8349609, 0.31420898, 0.9160156, -0.38476562, 0.25561523, -0.23791504, 1.3681641, -2.2324219, -1.7333984, 0.27734375, -2.1269531, -1.3544922, -1.4296875, -0.25317383, 3.6796875, -1.0683594, 1.6796875, 1.1435547, 1.1640625, -0.4387207, 2.0195312, -0.8256836, -0.6430664, 0.49291992, -0.23999023, -0.72558594, -1.7148438, 0.89208984, 0.14611816, 0.77490234, 2.1035156, -0.859375, -2.5722656, -2.2421875, -0.7285156, 0.8305664, 2.5, 0.73046875, 0.95996094, -0.89746094, 0.38012695, -1.7597656, 2.1386719, 1.4511719, 2.2539062, -1.8535156, 3.8007812, -1.2753906, -4.2617188, 2.1933594, -0.49023438, -0.21435547, 1.1425781, -0.7792969, -0.5444336, -0.7373047, -1.3642578, -0.97265625, 1.6259766, -3.0175781, 1.9707031, -0.09527588, 0.38842773, -0.10015869, 2.2578125, 1.0400391, 3.5566406, 2.9785156, 0.7470703, -1.3964844, -0.5761719, -1.4248047, 0.7285156, 1.6455078, 0.36523438, 1.4033203, -0.296875, -1.2070312, -1.78125, 0.9501953, -0.054901123, 1.6220703, 1.6083984, 0.6489258, 3.71875, 2.1074219, 2.0429688, 0.56347656, 1.7783203, 1.34375, 0.8144531, 0.72802734, 3.890625, 1.7304688, 0.78759766, -1.9121094, 2.0976562, -0.21313477, 0.63427734, 1.4638672, 0.22436523, 0.3083496, -0.62402344, 1.421875, -0.23535156, -0.070251465, 0.8725586, 0.9316406, -2.5761719, -0.7089844, -0.19604492, 1.1523438, 3.4003906, 0.2607422, 0.90722656, 1.5576172, 1.4267578, 2.7734375, -4.015625, 0.21118164, 0.9394531, 1.0117188, -0.19604492, 2.9570312, 0.09100342, 0.63916016, 0.77490234, 1.4716797, 0.57128906, 0.2578125, 0.6035156, 0.45581055, 0.6269531, -0.13354492, 2.046875, -2.3691406, -1.5380859, -0.17333984, 0.27319336, -1.1806641, -2.2851562, 0.5175781, 1.2412109, 2.5800781, 0.546875, -5.1523438, 0.14331055, -0.47070312, 0.3852539, -2.4765625, 0.26123047, -1.5996094, -4.1953125, -1.9169922, 1.6289062, 1.0263672, 1.7363281, 0.5986328, -0.86035156, 1.7861328, 1.03125, 1.2109375, 0.16125488, 2.09375, -2.1191406, 1.2441406, 0.033111572, 4.3828125, 1.6796875, 1.7041016, 0.5761719, 1.640625, 1.5410156, 1.0351562, 2.4433594, 1.0302734, 0.06604004, 0.03829956, 1.7109375, 0.12536621, -0.14892578, -2.9140625, -1.8955078, -0.34887695, -1.1152344, -1.9179688, 0.87402344, 1.0117188, 1.7939453, 2.2285156, 0.8105469, -2.1699219, 3.1113281, 2.0390625, -0.31225586, -1.2519531, -0.8833008, -0.16931152, -0.4189453, -1.9345703, 1.9345703, 2.046875, 0.26391602, -0.93066406, 0.07171631, -1.1757812, -0.4362793, -0.34887695, 1.5234375, -2.9589844, -1.7109375, 1.6826172, 0.8671875, 0.105651855, 1.9414062, -0.85009766, 0.056243896, -0.25976562, -2.21875, -1.5869141, -2.0078125, -1.1845703, 1.3574219, 3.9140625, 1.3662109, -0.77197266, -0.41503906, -2.8828125, 0.5991211, -0.88427734, 2.6777344, -0.059020996, -0.07928467, 0.5019531, -0.59033203, 2.8359375, -1.0205078, -2.6875, -0.5708008, -2, 0.51220703, -0.09869385, 0.91259766, 1.0839844, 1.3388672, -0.546875, 4.2109375, 3.9375, -0.42382812, 1.3642578, 0.88720703, 0.60546875, -2.7089844, 0.7729492, 0.05999756, 1.3671875, 1.0830078, -0.47558594, -0.17773438, -0.09185791, -1.7617188, -1.1035156, -0.6035156]}, "B07T6F3CWS": {"id": "B07T6F3CWS", "original": "Brand: GASPRO\nName: GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot\nDescription: Product description\uff1a
Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
Taking the regulator hose end connect to your 3/8\u2019\u2019 male flare connector propane appliance.
Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8\"male flare connector
0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
This is an essential part of converting your fire pit/table to a larger flame

Specification:
Certificate : CSA
Gas Type : LP/LPG
Regulator Type : High Pressure
Outlet Pressure : 0-20 PSIG
Inlet Pressure \uff1a25-250 PSI
Flow Capacity : 120000 BTU/Hr
Hose Length : 8 feet/ 96 inch
End Connector : 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

NOTE:
1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
3.Not suitable for appliances which need low pressure regulator

Warning:
Only for OUTDOOR Use.\nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs\n\u3010Durable and Chew-proof\u3011 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u30108ft Length\u3011 Gives you adequate length for appliance and tank placement\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "embedding": [-0.18041992, 2.8085938, 0.72265625, -0.11352539, -1.3554688, 0.07489014, 1.7539062, -1.4042969, 0.41552734, -0.25708008, 0.9477539, 0.18786621, 1.9287109, -1.8300781, 2.6367188, 0.8413086, 0.6484375, 0.061676025, 1.2167969, 3.5332031, 1.3525391, 0.80029297, 2.6816406, -0.30200195, 1.5986328, -0.4267578, 2.3847656, -2.4785156, -0.2927246, -1.5595703, 2.0410156, 1.3857422, -0.47094727, -0.26635742, -2.2851562, -0.68652344, -0.14257812, 0.9609375, -3.1679688, -1.1308594, -0.48828125, 0.18884277, 1.9257812, -0.97021484, -2.5039062, 1.5400391, 0.91503906, 0.3491211, -0.6113281, 0.9477539, 1.3398438, -1.0478516, -0.13452148, 0.1940918, -0.19262695, 0.3010254, 0.38012695, -1.5117188, 1.7792969, 1.7431641, 2.8164062, 1.1386719, -1.7304688, 0.23425293, -1.3671875, 0.13256836, 0.5419922, -0.15625, 0.8833008, 0.6479492, 1.4960938, 0.9223633, 1.1455078, -0.2368164, -0.34643555, 0.95410156, -2.5449219, -0.2836914, 4.078125, 0.9086914, -1.6074219, 0.8613281, 1.2011719, -2.3066406, 1.7070312, -0.6748047, -1.8398438, 0.83447266, 3.2988281, 0.5527344, -1.6591797, 2.9121094, -3.6367188, -3.7871094, 1.8505859, 2.1894531, 1.7353516, 0.63720703, 1.6357422, 0.14697266, -1.5771484, -0.9926758, -0.041229248, 0.7763672, -2.0898438, -0.53125, -0.43676758, 2.4316406, -3.1054688, 0.6347656, 0.3869629, 0.9790039, 2.46875, -2.1367188, 1.8515625, -2.8886719, -1.2529297, -1.2167969, 2.6269531, 1.6337891, 2.3535156, 0.11480713, -1.5234375, 0.3713379, 0.5004883, 0.42993164, -0.6586914, 0.08270264, 3.7089844, -1.6611328, 0.42626953, -3.9882812, 2.1835938, 0.4116211, 1.2851562, -2.9160156, -0.75390625, -2.3554688, -2.4667969, -0.4489746, -3.9257812, 0.74365234, 1.2060547, -0.42919922, -1.6757812, 1.0107422, -2.0234375, 0.9770508, 2.8359375, -1.8154297, 2.6679688, -1.4746094, -0.1060791, -1.0078125, 1.5566406, 1.0742188, 0.52685547, -1.1025391, 1.5175781, 1.5615234, 1.2617188, -2.0585938, -1.5644531, 1.9482422, -1.2177734, -2.2792969, 0.5229492, -0.06542969, -1.1318359, 1.5292969, -0.19238281, -1.9921875, -0.1697998, 0.53027344, -0.76171875, -1.7861328, 1.0273438, 2.3730469, 2.2597656, 1.1953125, -3.8730469, -2.6308594, -0.3017578, -0.55908203, 1.0224609, 0.17089844, -1.9453125, 0.18652344, 1.6992188, -1.5703125, -1.2734375, -0.034118652, 0.3022461, 1.3232422, -0.10357666, -2.328125, -3.3652344, -1.1240234, -1.5888672, 0.8251953, -2.4921875, -1.0839844, 0.49951172, -0.101501465, -1.8095703, -0.6333008, 0.6713867, -0.9477539, 0.79541016, 2.2832031, -0.9760742, -2.171875, 1.0380859, -0.40307617, 0.13024902, -2.5410156, 2.1015625, 1.9462891, 0.4482422, 0.74560547, -0.9946289, -0.26708984, 1.0263672, 1.5791016, 2.6132812, 1.03125, -1.5898438, 2.0214844, -1.6064453, -1.2412109, 3.2929688, 0.72753906, -0.6269531, -1.3378906, -0.7495117, 1.9296875, -0.9838867, 0.41601562, 0.828125, 1.40625, -0.062927246, -0.8828125, -1.5136719, -0.17126465, 0.005050659, 0.5986328, -1.984375, 1.2333984, 1.5087891, -0.4963379, 1.0654297, 0.45996094, -0.111450195, -1.6708984, -0.73828125, 0.17211914, 0.59033203, 2.9199219, -0.359375, -1.6318359, 1.1611328, 1.4257812, 0.064331055, 3.3984375, 0.26708984, 0.8881836, 1.9189453, -1.6835938, -0.46557617, 0.2548828, -0.49047852, 2.3867188, 2.6464844, -0.5913086, 0.74853516, 0.091430664, -3.2363281, 1.0947266, 0.57421875, 0.9067383, -0.22045898, -0.35791016, 2.3300781, -2.8125, 2.875, 1.8730469, 2.1679688, -0.1619873, -1.7910156, 0.55810547, 5.6953125, -0.15319824, -2.9511719, 0.90771484, 1.4960938, 0.32641602, 0.5605469, 1.9550781, 0.45996094, -0.28125, 0.53515625, 0.4868164, -1.1767578, -0.032043457, 2.1328125, -0.5810547, -0.24072266, -0.5307617, -0.6723633, 1.7988281, -1.46875, -0.48291016, -1.9121094, 1.4804688, -2.6269531, -2.15625, 0.6513672, -1.2626953, -0.40283203, 0.7138672, 1.8046875, 1.8212891, 0.59814453, -1.40625, 0.06616211, 1.5996094, -1.4160156, 1.6357422, 1.40625, -1.6230469, -0.9814453, -1.7255859, -0.94433594, -1.6201172, -2.9082031, 2.4042969, -2.3652344, -2.3105469, 0.18164062, -1.7148438, -3.3476562, -0.4453125, 0.12243652, 2.1660156, 0.7133789, -0.5292969, -1.2529297, -0.08459473, -0.31689453, -0.0017166138, 0.4819336, 2.3417969, -1.3798828, -2.59375, 0.18151855, 0.28930664, -0.5419922, -0.45166016, -2.4140625, 0.78222656, 0.42236328, 0.45776367, -0.047790527, 0.21179199, 1.734375, -3.3125, 1.7460938, -2.75, -1.3886719, -0.07873535, 2.25, -0.9067383, 1.1035156, -1.8730469, -0.8120117, 0.47509766, -2.5429688, 0.69970703, -1.7509766, 2.8398438, -2.5292969, 0.6191406, 1.1005859, -0.9038086, -2.9160156, 0.24536133, -0.18823242, -0.6386719, -1.0898438, -2.8417969, 0.37182617, 0.15966797, 0.42041016, 0.22973633, -1.4765625, -1.4208984, 0.7866211, 0.6098633, -2.3476562, -0.06161499, 0.64453125, 0.23986816, -0.82910156, 0.7895508, 0.26123047, -2.0507812, -1.2441406, 0.47753906, 1.4902344, -0.19189453, 0.45532227, 1.3320312, 1.2246094, 0.3137207, -2.6425781, -3.0722656, 1.0683594, 2.9277344, -2.859375, 1.2324219, -1.1953125, -0.5463867, -2.1367188, -2.4003906, 1.7373047, 2.0683594, 3.1777344, 0.5263672, 0.15466309, 0.095581055, 1.5205078, -1.1132812, -2.9199219, 1.2919922, 4.5625, -2.6796875, -0.85253906, -0.80566406, 1.90625, -3.1464844, -0.4189453, 1.6689453, 0.31445312, 2.5878906, 0.9428711, 2.8046875, -0.23986816, -0.3227539, 0.76953125, 0.28076172, -0.2536621, -0.014923096, -0.27954102, 0.8676758, -0.66259766, 2.0234375, 2.1503906, 0.5415039, 2.0234375, 0.7607422, 0.45776367, -0.9082031, 0.5961914, 0.3461914, 0.4711914, 0.6279297, 0.46777344, 0.6274414, -0.5917969, -0.7988281, -0.048461914, 1.59375, -2.0546875, 0.1977539, 0.7133789, 0.86328125, -0.8286133, -0.074645996, -0.6557617, -0.59375, -2.0761719, -0.4362793, 1.2919922, 1.8789062, 2.7539062, -0.59521484, 1.7119141, -1.6259766, 1.3085938, -0.30273438, 0.87158203, -0.35864258, 0.2980957, -2.2304688, -1.0830078, -0.3503418, -2.5332031, -1.8310547, 3.5097656, 2.0058594, -1.4414062, 1.1767578, -1.109375, 1.3720703, 1.3974609, -1.9814453, -0.28320312, 0.036376953, 0.33081055, -0.4736328, -0.671875, 1.8300781, -0.0209198, -3.6484375, -0.2854004, -1.8212891, 1.4199219, 0.86035156, 1.2617188, -3.4746094, 0.8955078, -0.14001465, 1.3642578, -0.14355469, 3.1191406, -0.25561523, -0.6123047, 2.5957031, -3.9453125, -2.1328125, -1.8837891, -5.2226562, -0.30541992, -1.9892578, 1.3164062, 2.8417969, -0.22045898, 0.8691406, 1.8925781, 2.1035156, -3.2363281, -0.703125, -0.27416992, 1.8066406, -2.7578125, -0.6245117, 2.9726562, 0.47998047, -0.054107666, -0.9711914, -1.3974609, -2.6894531, -1.3408203, 1.46875, -1.9951172, -0.3803711, -1.90625, -0.1508789, -0.99072266, -2.2421875, 1.7695312, -1.3251953, -1.0751953, -2.8769531, 2.2382812, -0.2442627, -0.036590576, -1.0849609, 3.4140625, 2.390625, -0.036621094, -0.33642578, 0.51171875, 2.4492188, 0.8125, -1.2802734, 0.39990234, 0.49682617, 0.37451172, 0.18054199, -0.83935547, -0.57177734, -0.95458984, 1.3251953, 2.2695312, 0.52490234, 1.2685547, 1.3125, -2.0175781, 0.85058594, -0.30664062, 0.2529297, 0.32739258, -0.1217041, -0.97216797, -3.0097656, 0.13671875, -1.7324219, -1.5908203, -0.46069336, 0.118652344, -2.1132812, 3.8730469, -0.03540039, -1.1865234, 1.2128906, -2.1757812, -1.4238281, -1.7714844, 0.8544922, -1.7460938, -0.8432617, -1.1503906, 0.5629883, 2.5761719, 0.95458984, -0.36914062, -0.9272461, 0.63916016, -3.6171875, 0.15734863, -0.09295654, 1.5644531, -0.23474121, 0.1821289, 1.8886719, -1.6376953, 3.6347656, 0.63427734, 0.28222656, 0.34594727, -1.3740234, -2.2890625, 0.94970703, 2.8535156, 1.1875, 0.921875, 1.1806641, 1.1425781, 2.7578125, 1.4658203, 0.21264648, 1.0917969, -0.82470703, 2.5273438, -1.5742188, 0.9633789, -1.6699219, 0.3696289, 0.31445312, 2.0117188, 2.7109375, 3.5488281, 1.0644531, -1.4736328, 1.2666016, 1.359375, -0.63720703, -1.1787109, 0.06286621, -1.8984375, 2.1445312, 0.19812012, -2.3554688, -0.09338379, 2.3359375, -0.91796875, 1.8818359, 0.17443848, -0.73876953, 0.14453125, -0.8432617, -1.0205078, -0.047302246, -0.4560547, 0.82470703, -1.8896484, 0.7167969, -0.11138916, 0.7661133, 1.0703125, 0.23999023, -0.94384766, -0.2788086, -1.5996094, 0.44311523, -2.0390625, -1.0585938, -2.9003906, 0.24353027, 2.9179688, 1.4199219, -0.13989258, -0.69970703, 0.086242676, -1.6962891, -1.1777344, 0.11444092, 1.6708984, 0.2824707, 0.43286133, 1.5126953, -1.0019531, 0.039031982, -1.5830078, -1.6835938, -1.3564453, 2.9921875, 2.578125, 1.7607422, -1.0009766, -1.0410156, -2.265625, -5.2734375, -0.6621094, 2.9042969, 0.0124053955, -0.14941406, -3.0859375, -0.33813477, 1.3857422, -1.0957031, 0.8173828, -2.7265625, 0.50927734, -0.8691406, -0.6801758, -1.7675781, 0.023132324, -0.24816895, -0.3010254, -1.2802734, -0.10247803, -0.059448242, -2.5703125, -3.109375, 2.0136719, -2.8710938, -1.7177734, 1.6767578, -1.6425781, -1.5908203, 1.8691406, 1.0400391, -3.0976562, 1.1572266, -3.5097656, 0.6879883, -0.3244629, -1.9189453, 2.6542969, 1.8505859, -0.6660156, 1.4189453, 2.046875, 1.2734375, -1.3505859, -0.63964844, 0.24938965, 0.08728027, -1.2265625, -3.0722656, -1.1142578, 0.2626953, 1.5683594, 1.8779297, -1.6679688, -1.390625, -1.1386719, -4.2929688, -0.4453125, -0.6669922, -1.078125, 0.07244873, 1.4267578, 2.6152344, -1.359375, 1.1376953, 1.2529297, -0.5908203, -0.5576172, 1.7265625, -0.70654297, 2.0878906, 1.3476562, -0.5830078, -3.0273438, -1.7138672, 3.3222656, 3.1738281, -0.8286133, 0.7397461, 0.27148438, -0.7290039, 0.21594238, -1.1259766, 1.1132812, 1.8730469, -0.15258789, -1.3544922, -0.4753418, 1.9746094, -1.5087891, 1.4462891, 0.7011719, -0.46313477, -2.1289062, 3.3242188, 1.8369141, -3.3398438, 0.7841797, -1.7666016, 1.7841797, -0.3894043, -2.2792969, -0.08850098, -3.1191406, -0.06329346, 0.7519531, -2.2949219, -1.8769531, 2.1445312, -0.20825195, -0.3803711, 1.015625, 3.3886719, 0.73876953, -0.26879883, 1.1054688, 1.1914062, -0.5473633, 0.1538086, -2.890625, -1.0556641, 1.4326172, -2.6914062, -0.3701172, 2.328125, 0.83251953, -1.8046875, 1.0195312, 1.7802734, 2.9707031, 0.25146484, 2.6835938, 2.9199219, 0.52246094, 2.2871094, 0.8149414, 2.1582031, 2.6542969, 0.25952148, 0.34643555, 2.625, -1.0800781, 1.1982422, -0.36694336, -0.14868164, -0.21520996, -1.5078125, 0.3955078, 1.1132812, 1.7226562, -3.0898438, -0.5932617, -1.2294922, -0.6376953, -3.0117188, 0.18066406, -0.24365234, 0.7988281, 0.46289062, -0.60253906, 1.8212891, 1.9902344, -1.7167969, -0.44628906, 0.27416992, 3.2128906, -1.7167969, 0.16479492, -0.76708984, -3.8847656, 1.5439453, 3.6015625, 0.67089844, 0.18249512, 1.1689453, -0.21557617, -0.74121094, 1.9287109, 2.3378906, -2.9042969, -0.13586426, -1.1367188, 2.5722656, 0.98046875, -1.7607422, 2.8242188, 0.23120117, -2.3828125, -3.1191406, 2.3652344, -0.62841797, -0.40356445, -0.37231445, -4.7851562, 2.9492188, -1.8544922, 0.8774414, -1.5927734, 0.08276367, -0.29882812, -0.7919922, 0.7885742, -0.13830566, -1.6308594, 3.3476562, 0.80029297, -1.9677734, 0.2421875, 2.0625, 2.2871094, 0.7988281, -0.40576172, 0.6411133, 0.38208008, -0.22143555, 2.8476562, -0.41259766, -2.3554688, 0.055389404, 3.2070312, 1.0078125, 0.87646484, -1.1933594, 1.2792969, 0.14233398, 0.5073242, -0.47973633, -0.8203125, -0.95947266, -1.0205078, -0.13146973, -0.37304688, -1.4316406, -0.9082031, 0.7236328, 0.64160156, -1.2138672, 0.5527344, 1.3251953, -0.76904297, 1.8417969, 1.7734375, -0.6376953, -1.5830078, -1.3837891, 0.12097168, -2.0507812, -1.4072266, 0.5527344, -1.0673828, -0.18225098, -1.5761719, -0.11834717, 0.28173828, -0.0032348633, -0.031799316, -0.20300293, -1.0205078, -1.2832031, -0.26953125, -1.4443359, 1.0917969, 2.9140625, -0.68115234, 3.0039062, -0.2746582, -1.5605469, -0.064819336, -1.9228516, -1.3037109, 0.51220703, 1.84375, -0.04321289, 1.4619141, -1.0214844, -2.1582031, -0.10772705, -1.6699219, 2.7753906, -0.7734375, -1.3066406, 0.59521484, -0.39501953, 3.1992188, -0.07281494, 0.58984375, 0.47998047, -0.9819336, 1.4814453, -1.9150391, 0.78808594, -1.3564453, 0.05999756, -0.08526611, 3.6601562, 2.0390625, -1.5585938, 0.6616211, 1.7539062, 0.36279297, -1.9375, 0.21972656, -0.9501953, -1.3066406, 0.32348633, 1.8789062, 1.5478516, 0.74072266, -1.0917969, 0.20251465, -0.03765869]}, "B07QBZN1HS": {"id": "B07QBZN1HS", "original": "Brand: Unicook\nName: Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe\nDescription: Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won't wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0\u00b0F, ensure superior performance and long-lasting.

Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
1. Constructed with new generation rip & fade resistant fabric and vinyl coating
2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
4. Fastening straps at bottom keep your bbq cover securely in place

Care and Use:
1. Allow grill to cool before covering
2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
3. Air Dry for next use.

Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the \"Visit the Unicook Store\" button to get the proper cover you need.\nFeatures: \u3010Grill Cover Dimension\u3011- 60 inch grill cover measures 60\"W x 23\"D x 42\"H, fits most brands of grill with width between 54\" and 58\". \ufe61Measure your grill before purchasing to determine the proper cover.\n\u3010Fade Resistant\u3011- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection.\n\u3010No Water Leaking\u3011- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams.\n\u3010Handles and Straps\u3011- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days.\n\u3010Wide Selection\u3011 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "embedding": [-1.7060547, 1.6679688, 3.0097656, -1.4541016, 0.9614258, -0.066345215, -0.13110352, -2.0839844, 1.9941406, 1.3916016, -0.6328125, -2.0195312, -0.17736816, -3.734375, 0.2154541, -0.15478516, 0.14294434, 2.0761719, 3.265625, -1.1396484, 2.0429688, 0.46728516, 2.5, 0.01802063, 0.7270508, 0.8354492, 4.1796875, -3.6386719, -1.4267578, -0.13708496, 1.9736328, -0.15490723, 1.0722656, 1.3105469, -1.8144531, -2.046875, -0.9057617, 1.2304688, 0.39404297, -0.107910156, -0.20739746, -1.4785156, 0.8227539, 1.1855469, -2.1132812, 0.50390625, -1.4541016, 0.9008789, -1.7392578, -2.609375, 1.3623047, 1.5859375, 0.80078125, 0.7182617, -1.8964844, 4.0546875, 0.57666016, -1.4287109, -0.71435547, 0.11828613, 0.37719727, -1.6386719, -1.8105469, 1.2167969, -2.6757812, -0.9355469, -0.30029297, -0.91845703, 1.2832031, 0.0034503937, 2.0078125, 0.3166504, -1.9121094, 1.1533203, 1.8427734, -0.50097656, -1.7568359, -0.21350098, 0.85302734, -0.8276367, 0.14794922, 4.9921875, 0.6948242, -3.4277344, 0.765625, 1.0517578, -2.2285156, -2.5859375, 2.8671875, 0.9584961, 0.30566406, 1.5263672, -1.9423828, -3.9121094, -0.21032715, -2.4023438, 1.7373047, 1.2099609, 0.36279297, 0.0073242188, -0.9086914, 0.1348877, -2.3984375, -0.36572266, -2.8027344, -1.7773438, 1.6748047, -1.9570312, -2.1679688, -0.13513184, -0.10748291, -1.2929688, -0.9526367, 0.44262695, 2.7871094, 0.18408203, -0.65185547, 1.6152344, -0.80810547, 1.0537109, 2.9804688, -0.27246094, -0.8540039, -0.69677734, -0.20117188, -1.4306641, -0.9716797, 0.11529541, 4.7539062, -1.1123047, 1.1376953, 0.49682617, 1.2451172, 1.0126953, -1.921875, 0.8173828, -2.3808594, -0.9555664, -2.4785156, 2.8476562, -1.9775391, -2.1660156, 1.5976562, -1.0195312, -4.1289062, 0.06762695, -0.12634277, 3.3710938, -0.70410156, -1.7958984, 1.4521484, -2.5722656, -0.48095703, -1.7636719, 0.7524414, -1.7919922, 0.21496582, -3.8964844, 2.9609375, 3.1777344, 2.75, -2.6855469, 1.3730469, 1.3994141, 2.6269531, -1.2207031, -1.1064453, 0.37280273, -0.28710938, 1.3271484, -0.41015625, -0.20678711, 0.87353516, 1.6181641, 0.91796875, -0.7128906, 0.20983887, 2.2207031, -0.13769531, -0.33764648, 0.030380249, -0.8774414, -0.40405273, 2.671875, -2.7695312, -1.1103516, -0.33691406, -0.2746582, 0.41723633, -0.8203125, 0.3215332, 0.111328125, -1.2705078, 0.7060547, -1.6972656, -0.23876953, -1.5419922, -0.8701172, -0.5332031, -0.17907715, -0.671875, -2.7285156, -0.36645508, -0.31298828, -2.8945312, -2.9863281, -2.5722656, -0.6166992, 0.97998047, 0.45874023, 1.8085938, -1.4902344, 1.4775391, 2.8769531, -2.2773438, -0.05203247, 1.7675781, -0.6694336, 0.8847656, 1.2255859, -1.0185547, -1.6933594, 0.46655273, 3.2148438, 0.08905029, 3.2792969, 1.2138672, -0.1463623, -1.4785156, -1.7773438, 0.55908203, 0.24279785, 0.5727539, 0.78808594, -0.2770996, 0.7714844, 1.2197266, -2.6152344, -0.7890625, 0.3486328, -2.2753906, -2.34375, -2.5195312, -1.4697266, 0.6142578, 0.85058594, -1.4648438, 1.7119141, 0.8666992, -0.9272461, -2.1347656, 1.0566406, 0.5541992, -0.23486328, -0.28833008, 0.53271484, -0.5185547, -0.0869751, -1.5634766, -1.6728516, 0.63623047, 0.53222656, 0.048187256, 0.9975586, -0.40527344, -0.9526367, 0.9140625, 1.7089844, -2.7636719, -2.328125, 2.1953125, -0.28710938, -0.5761719, -1.7587891, 0.67529297, 0.57421875, 0.45947266, 0.6542969, 0.3034668, 1.1757812, -0.14367676, 1.6416016, 1.7724609, -2.6210938, 0.7866211, -1.8125, -1.4306641, -0.96777344, -0.17236328, 1.0058594, 3.046875, -0.50146484, -2.4570312, 3.3339844, -0.19702148, -0.5209961, 1.7441406, -0.36743164, -1.4443359, 0.66796875, 0.23718262, 0.96972656, -0.51953125, 1.6484375, -2.2597656, -0.72998047, 1.5537109, -2.03125, -0.4638672, 1.7001953, 0.4140625, 1.3261719, -0.6772461, 1.1318359, -1.5869141, -1.9541016, 1.9716797, -1.7910156, 0.38085938, 0.45385742, 1.1259766, -0.041870117, -2.4492188, -1.9912109, -0.73291016, 0.6772461, -1.1337891, -0.61035156, -0.009727478, -0.74902344, -0.23132324, -1.3554688, 1.2548828, -1.3466797, -0.27026367, -2.7128906, -3.7460938, -1.5917969, -0.28588867, -1.6035156, 1.4013672, -0.7944336, -2.9101562, 1.0722656, 0.6269531, -4.6289062, -0.35131836, 0.63134766, -0.8417969, 1.1962891, -0.24645996, -0.38012695, 0.9296875, -5.3671875, 2.453125, -1.3447266, -0.5917969, -0.6435547, -2.1757812, 0.89208984, 0.3569336, -0.43115234, 0.74609375, 1.8212891, 1.7128906, -0.14318848, 0.06781006, -3.1015625, 1.2519531, -3.3320312, 0.010421753, -1.0927734, 1.5732422, -4.5078125, -1.6044922, 1.1835938, -1.3505859, 2.53125, 1.2539062, 1.5097656, -0.79052734, -1.0966797, 0.5336914, -0.071899414, -0.9301758, 0.037506104, -0.7050781, -0.92626953, -0.010520935, -3.4863281, -2.3945312, -2.1660156, -0.5605469, 0.38671875, -0.20581055, -1.4628906, 2.5117188, -3.5761719, -1.6230469, -0.13769531, 0.3737793, -0.33081055, -1.5947266, -0.15307617, -3.2441406, -2.5234375, -0.76953125, -2.0175781, 3.4921875, -2.3027344, 0.117492676, 2.5351562, -1.4179688, 3.3007812, -1.6787109, -2.8105469, 1.1425781, 0.13635254, 0.6796875, 2.0546875, -0.58740234, 0.21594238, -0.4946289, 0.96972656, 2.2695312, 0.12042236, 0.31811523, 2.3164062, 2.0820312, 1.4121094, -1.5185547, 2.1972656, 0.5703125, 2.25, 2.3828125, -0.0635376, -1.0185547, 0.7158203, 0.55371094, -1.15625, 0.5019531, 0.41088867, 0.47314453, 0.29956055, 1.7792969, -0.8305664, 1.5859375, -0.734375, 1.9140625, -1.8310547, 1.5273438, 2.0820312, 0.390625, -0.30004883, -1.4882812, 1.8115234, 2.9511719, 0.9423828, 1.2285156, 2.0976562, -0.101989746, 0.2368164, -1.0810547, 1.3007812, 1.2265625, -0.048919678, 2.3183594, -1.4335938, -0.077697754, 0.73779297, -2.1503906, 1.5205078, -1.8457031, 1.1513672, 2.2714844, -1.7832031, 0.98046875, -0.3166504, 0.64941406, 0.33642578, -1.2041016, -0.52441406, -1.0527344, -1.625, 0.5839844, -3.7851562, -2.3789062, -2.4277344, 3.7753906, 0.033325195, -2.0820312, 0.41796875, 1.6835938, -2.0839844, -1.4560547, 1.0576172, 2.4101562, -0.8051758, 2.5957031, 1.5605469, -2.3652344, 2.078125, -2.8730469, 1.7480469, 0.5253906, -0.43066406, 0.17077637, 0.40234375, -0.59033203, -2.28125, 1.8974609, 1.65625, 1.9814453, -0.69384766, 1.6455078, -2.0449219, 1.1953125, 2.2988281, -0.56933594, -1.2851562, 1.7646484, 0.6303711, 1.3349609, 1.0585938, 2.2226562, -0.6191406, -0.007926941, 1.7998047, -2.7539062, -0.033416748, 0.5854492, -4.3242188, -0.9008789, -1.0253906, -0.93066406, 3.7421875, -0.93115234, 0.9355469, 2.265625, -1.4667969, 0.8701172, 0.049316406, -3.828125, -1.7734375, 0.0869751, -0.50683594, 2.3554688, 0.13146973, -1.8652344, -2.0214844, -2.3945312, -1.0966797, 0.40161133, 1.7978516, -1.4912109, -0.45947266, -2.4550781, 0.088256836, -2.0957031, 1.6142578, 2.3710938, 0.36669922, -0.25195312, -0.10168457, 1.2607422, -1.6826172, 1.3847656, 0.61621094, 1.4228516, -1.9228516, -1.4570312, 0.11602783, -1.1210938, 2.2929688, -0.7783203, -2.4980469, -0.8251953, 1.2978516, 2.0800781, -0.20141602, -0.31152344, -1.3222656, -0.90966797, 1.0253906, 0.42333984, 3.0605469, 2.1796875, -0.072631836, -1.8300781, 0.113342285, -1.7919922, -1.2783203, -1.4628906, 0.60595703, -0.19616699, 0.4597168, -1.5820312, -2.3515625, 0.61816406, 0.15722656, 0.3154297, -0.25341797, 3.2207031, 0.8569336, 0.84277344, 2.6523438, -1.7705078, 0.6352539, 1.6435547, -0.7944336, -0.20324707, 0.5625, -0.9501953, -0.6088867, 1.2529297, -1.6367188, -2.0195312, 0.001868248, -1.1552734, 1.1425781, -0.039215088, -4.296875, 2.4316406, 0.55322266, 0.7963867, 0.87841797, -3.0664062, 3.1738281, -1.6669922, -0.8154297, 2.0332031, -0.6113281, -1.9375, 1.6269531, 0.9433594, -0.9008789, -0.7397461, 0.10559082, -1.3427734, 0.58496094, 0.12805176, -1.8183594, 1.4492188, -1.3837891, -1.1728516, 1.6845703, 1.71875, -1.5908203, -0.16992188, 2.6777344, 2.1289062, -0.7734375, 1.765625, 1.7851562, -1.7285156, 0.7553711, 1.6308594, -1.578125, 0.8935547, 0.0770874, -0.40039062, 1.2041016, -0.90966797, -1.953125, 0.25927734, 1.7382812, -1.265625, 1.6523438, -1.5693359, -2.296875, 1.0507812, -2.8671875, -0.8486328, -1.0292969, 0.083862305, -1.5224609, -0.39331055, 1.0527344, -0.38793945, 1.0351562, 3.1484375, -2.0449219, -2.1992188, -0.52197266, 0.71533203, -1.53125, -1.3681641, -1.9804688, -3.3046875, -0.8959961, 1.9326172, 2.5800781, 2.1699219, -0.036987305, 2.0546875, -3.0507812, 1.4453125, -1.4042969, 3.3417969, -0.6875, -0.066833496, 2.3574219, -4.2460938, -3.125, -1.9042969, 1.2070312, 1.5205078, 2.3066406, 1.9140625, -0.5620117, 0.94384766, 0.08380127, -3.1992188, -1.4267578, -0.36523438, 0.27294922, -0.6611328, 1.7402344, 0.099243164, 1.9052734, 0.55566406, -1.6210938, -0.016433716, -0.81152344, -0.5083008, -1.5888672, -2.7539062, -0.050231934, -0.79589844, -1.8642578, 0.23291016, -0.40722656, 0.5341797, -0.052825928, -3.8183594, 2.1855469, 0.33642578, -2.46875, -0.6503906, 4.1679688, 1.4111328, 1.6328125, -0.5551758, -0.18896484, 1.0449219, 2.6757812, -2.515625, -0.9291992, 2.234375, -1.3261719, 1.3271484, -1.2246094, -1.1630859, 1.9912109, -2.2148438, 1.2841797, 0.89697266, 0.5864258, 3.9296875, 1.5654297, -0.6767578, -0.02267456, 0.6328125, 0.7944336, 1.7470703, 0.21313477, -1.3115234, 0.8730469, -1.0732422, -1.8173828, 1.6435547, -1.421875, -1.734375, -2.0332031, -0.20056152, 1.2929688, 2.6542969, 0.98046875, 0.6557617, 1.6484375, -1.7207031, 0.074157715, 0.32348633, 3.3535156, 1.5625, -2.9375, -0.9477539, -1.1640625, 1.6972656, 2.2832031, -0.4362793, -1.1337891, -0.39453125, 0.9379883, 1.0058594, 0.2692871, 3.3476562, 0.40698242, 1.8837891, 1.2050781, 0.80371094, 2.9472656, 0.18395996, 1.8779297, -0.07385254, 0.6411133, -0.85498047, 1.3105469, -0.038726807, -1.4746094, -0.11505127, -0.2602539, 0.4633789, 0.6069336, -2.1230469, -2.2871094, -0.51220703, -0.7680664, -2.5449219, 0.17443848, -4.2617188, 0.23486328, 0.7963867, -1.0605469, 0.00043964386, -0.054504395, 0.5395508, 2.8320312, 2.2226562, 1.8154297, -1.3671875, -1.5380859, -0.050933838, 0.32055664, 0.8979492, -1.0117188, 0.20617676, -1.5498047, 0.095458984, -0.9716797, 2.1875, 0.50390625, 0.35302734, -0.008850098, 2.3710938, 2.0839844, 1.3457031, 2.2304688, 0.9995117, 1.7177734, 0.62890625, -2.375, -0.5493164, 3.0019531, 3.0996094, 2.7382812, -0.1673584, 1.1201172, 0.6616211, -0.62939453, 0.30078125, 0.55615234, 2.6269531, -2.3476562, 1.0117188, 1.6865234, 0.6948242, 0.36010742, 1.3671875, -0.7236328, -0.49414062, 1.1835938, 0.67871094, 2.7988281, -0.84277344, 2.6757812, 0.08691406, 1.0507812, 2.2832031, -4.2695312, 1.5585938, 1.09375, -3.2539062, -1.4873047, 1.8789062, 1.9287109, 1.3173828, -0.8227539, 1.3681641, 1.5195312, 3.0625, 2.7011719, -1.5400391, 0.6352539, 0.5288086, 1.5390625, 0.11895752, -1.0078125, -1.8222656, -0.35424805, -3.015625, -2.0878906, 1.5849609, 1.9082031, 2.203125, 1.6298828, -4.0429688, 2.5058594, 1.2578125, 2.953125, 0.0848999, 1.2353516, -2.2539062, -2.8691406, 0.7241211, 0.83935547, -1.6523438, 0.32470703, 0.2163086, -0.47338867, 2.5722656, 0.984375, 1.1357422, 1.7089844, 2.7441406, 0.42651367, 1.1660156, 0.40649414, 2.3164062, 1.75, -0.36889648, -1.6484375, 1.0732422, 0.18273926, 0.09869385, 2.3730469, -1.1455078, 1.4003906, 2.5371094, 0.12310791, 1.2744141, -0.3852539, 1.1962891, 0.21704102, 0.3305664, -0.7919922, 0.3515625, 2.3398438, 0.9760742, 0.32421875, 1.0175781, -1.6582031, -0.8017578, 2.0820312, 0.117004395, -0.40356445, -1.6025391, -0.23327637, 0.7338867, -0.31518555, -1.5634766, -1.3173828, 0.9555664, -0.7363281, -1.3876953, 0.23962402, 0.40942383, 0.39111328, -0.5004883, 1.1044922, -1.7705078, -1.0332031, -0.54833984, -1.0556641, 0.5102539, 2.0078125, 2.5996094, -2.3554688, -1.1152344, -0.59814453, 0.9584961, -0.99658203, -2.4238281, 1.9003906, 3.0078125, 1.3935547, -1.7480469, -1.0820312, -2.0292969, -0.7504883, -1.9306641, 2.21875, 0.47998047, 0.46899414, -0.74365234, 1.0712891, 1.9042969, -1.3789062, -1.7734375, -0.81640625, 0.99560547, 2.1816406, -0.39160156, 0.30273438, -0.47021484, 0.5644531, 1.2490234, 1.2216797, 4.1953125, 0.40820312, 1.0585938, 1.7109375, -2.7441406, -3.3007812, 0.75878906, 0.5732422, 0.57910156, 0.1899414, 0.8100586, 2.7910156, -0.63427734, -0.89941406, 0.3408203, -0.4387207]}, "B07H5RHXJN": {"id": "B07H5RHXJN", "original": "Brand: Weber\nName: Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nGS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\n", "embedding": [-0.9560547, -0.034210205, 1.2607422, -0.62646484, 0.13220215, 0.83691406, -0.08013916, -2.2207031, 0.08728027, 1.0673828, 1.9052734, -0.66015625, 0.71728516, -3.0019531, -0.43676758, -0.14233398, 2.2519531, 0.8574219, -1.46875, 1.6601562, 1.2490234, -0.35766602, 2.671875, -2.0566406, 1.1923828, 1.2597656, 4.0429688, -5.2617188, -1.1298828, -2.1035156, 1.2753906, 0.35351562, 0.37597656, 2.1679688, -3.9570312, -1.8916016, -2.6523438, 1.8359375, -2.7382812, 1.2919922, 0.5083008, -1.8447266, -0.10656738, -0.76660156, -1.5341797, 1.8671875, 1.1201172, 0.7192383, -3.1035156, 0.34399414, 3.796875, 2.1855469, -0.40600586, 0.48291016, -0.6464844, 1.8447266, 0.5083008, -1.5341797, 2.2226562, 0.18701172, 2.3125, -0.484375, -1.9804688, -1.5244141, -1.1816406, -0.52246094, 1.2148438, 0.9140625, -0.44262695, -0.3017578, 3.8496094, -0.39111328, -2.6132812, 2.5742188, -1.0058594, -2.2792969, -2.8378906, 1.9550781, 0.13549805, -1.0898438, -1.828125, 2.765625, 3.015625, -2.8417969, 0.3701172, 0.74658203, 0.6923828, -2.9785156, 1.7353516, 0.734375, 0.012313843, 0.7207031, -1.5761719, -3.4394531, 2.125, -0.35107422, 0.65527344, 1.2353516, -0.96972656, 2.1054688, -1.2060547, 1.7509766, -0.2166748, -0.9296875, -3.2070312, -2.2851562, 1.9414062, -0.14697266, -2.8027344, -0.021331787, -1.3291016, -0.85058594, 1.3261719, 2.4707031, 1.5820312, 1.3017578, 1.8359375, 1.3564453, 0.61328125, 0.7734375, 3.1210938, -1.3212891, 0.64160156, -0.2401123, -0.8647461, -1.2734375, -1.2197266, 0.6201172, 3.4316406, -3.328125, -0.043060303, 0.18286133, 3.4238281, 1.1474609, -0.93115234, -1.9306641, -0.3774414, -1.5488281, -3.6992188, 0.87109375, -0.8798828, 0.23071289, 1.0410156, -1.7939453, -3.0976562, 1.2841797, -1.0400391, 0.43823242, -0.21618652, -1.5068359, 0.76904297, -1.0849609, 0.29736328, -2.7832031, 2.5839844, -0.4177246, -0.5288086, -0.27685547, 3.3339844, 1.7119141, 1.8525391, -1.3105469, -1.9111328, -1.7265625, 0.020889282, 0.1541748, 0.91308594, 1.9033203, -0.54345703, 1.7236328, -0.031799316, -1.5400391, -0.8129883, -0.6904297, 1.9921875, -1.6806641, -0.43432617, 0.9003906, -0.019577026, 0.24707031, -0.82373047, -1.4140625, 0.72753906, -1.8720703, -0.3232422, -0.27148438, 1.1484375, 1.2089844, 2.0078125, -1.0693359, -0.41503906, -1.2050781, 1.0839844, -0.6826172, 0.7324219, -1.4003906, -2.0664062, -0.76660156, 2.2617188, -1.3564453, -1.1875, -0.24414062, 1.0986328, 1.6259766, -1.4941406, -2.8652344, -0.83203125, -3.0878906, 0.66308594, 1.5673828, 2.3144531, -0.6826172, 0.7451172, -0.09161377, 0.22631836, -0.80859375, 2.4296875, 0.77783203, 0.099487305, 2.4414062, 0.17358398, -0.85791016, 1.6611328, 1.5175781, 0.14074707, 0.9091797, 0.81396484, -0.14099121, -2.8886719, -1.8720703, 3.2304688, -0.6245117, -0.25048828, 1.2304688, 0.6015625, 4.0625, 0.6948242, -1.0009766, 0.1282959, 1.1728516, -0.072143555, -0.7001953, -3.3554688, -1.0146484, -1.0966797, 0.4152832, -1.6953125, 2.953125, 0.9145508, 1.9003906, 1.0371094, -0.2919922, 1.4580078, 1.2001953, -0.52783203, 0.52490234, -0.9980469, 2.1152344, 0.31884766, -2.15625, 1.6884766, 1.0673828, -0.058410645, 1.1416016, 0.9746094, -1.9169922, 0.8886719, 1.7675781, -0.2199707, -2.5546875, 0.2763672, -0.17016602, 1.1953125, -1.9873047, 2.9609375, 1.5449219, -1.0097656, 3.125, 0.5913086, 1.1298828, -0.11706543, -1.4257812, 1.1035156, -2.9394531, -0.79052734, 1.2753906, 1.5927734, -1.1074219, -1.0859375, 0.13342285, 4.6484375, -1.2871094, -2.3789062, 2.5429688, -1.0136719, 0.25097656, 2.5273438, 0.71728516, -1.203125, 1.1962891, 2.2519531, 0.19140625, 1.5761719, 1.5, -0.27172852, -0.37475586, 0.7553711, -2.0625, 0.47680664, 1.0175781, 0.04257202, -0.8149414, -1.6054688, 0.76660156, -2.9707031, -0.8388672, 1.5195312, -2.5273438, 0.5942383, -0.7158203, 1.421875, 0.5234375, -2.0175781, -0.27124023, -0.7841797, -0.14868164, -1.0283203, 0.74853516, -0.36547852, -1.7128906, -0.50341797, -0.8286133, -1.0205078, -3.3847656, -1.8798828, -1.1972656, -1.6240234, -2.6992188, 0.9453125, -1.1689453, -0.55859375, 1.3134766, -1.609375, -0.57714844, 0.26464844, -1.1650391, -0.9638672, -0.44873047, -1.2675781, -0.54833984, 1.1064453, 1.1923828, -1.4072266, -1.6396484, -1.1005859, -1.3710938, 1.1855469, 0.51708984, -0.057128906, 0.2878418, 0.88134766, 0.72558594, -0.21862793, 0.5991211, 1.8837891, -0.013511658, 0.6269531, -3.3027344, -0.0435791, -2.7519531, 2.2207031, 1.7363281, 1.1552734, -3.3222656, -1.1318359, -0.8544922, -0.7949219, 3.8574219, 0.38964844, 1.7128906, 0.08984375, 0.65478516, -0.00440979, -3.0390625, -1.2802734, 0.43847656, 0.29638672, -2.0058594, -0.06402588, -0.71435547, -0.46899414, -1.0917969, 0.33764648, 0.06536865, -0.73583984, -1.1152344, 0.34228516, -2.3574219, -0.37231445, -0.58740234, 0.53222656, 0.52490234, -2.1914062, -2.7382812, -1.0908203, -1.8154297, -1.1738281, -2.3144531, 1.0761719, -0.20410156, 1.8046875, 1.4355469, 0.05883789, 0.59228516, 0.14709473, -3.1777344, 1.9765625, -0.26171875, -3.3964844, 2.6269531, -2.5195312, -0.42285156, -3.2382812, 0.9121094, 2.8769531, 1.1201172, 1.0332031, 1.1933594, 0.60058594, 0.5161133, -0.5107422, 1.3203125, -1.9863281, -0.20922852, 1.7607422, -1.8730469, -0.4716797, 0.37353516, -0.036499023, -2.6582031, -2, 3.0292969, 2.8886719, 1.9902344, 0.45385742, 1.2402344, 1.2314453, -1.2910156, 0.11383057, 0.13574219, -0.1685791, 0.29467773, -0.5600586, 1.5761719, -1.3271484, 2.1835938, 0.55859375, 1.1484375, 2.6074219, 0.8647461, 0.39575195, 0.5878906, -0.48364258, 0.15612793, 0.47094727, -0.34960938, 2.4960938, -1.0439453, 0.21447754, 0.86621094, -1.890625, 0.55322266, -0.39013672, -2.5488281, 1.5332031, -0.5151367, -0.29711914, -0.56689453, 1.0898438, 1.2363281, 0.40600586, -0.15368652, -1.2636719, -0.05178833, 1.8125, -0.5449219, -0.5756836, -1.8916016, -0.14562988, -0.51904297, -3.0820312, 0.21484375, 4.2226562, -1.6191406, -0.64501953, 1.3125, -1.5097656, -0.34204102, 2.4609375, -0.012809753, -0.20385742, 0.7709961, -1.7294922, 0.9526367, 0.37353516, 1.2226562, -1.6748047, -0.83203125, 0.5131836, -0.7963867, 0.78125, 1.9394531, 0.49047852, -2.78125, 0.6557617, -3.7324219, -1.3896484, 0.18334961, -2.1152344, -1.2587891, 2.9042969, 1.3212891, 0.43676758, -0.43676758, 3.3496094, -1.8447266, 0.9892578, 3.0058594, -3.5351562, 1.0517578, -3.5625, -2.6445312, 0.48461914, -1.6855469, 0.4411621, 0.4128418, -0.05041504, 0.5673828, 4.015625, 0.38549805, -1.8691406, -0.96972656, -0.109558105, -0.34472656, -0.08502197, 0.2043457, -1.1269531, -1.3378906, -1.5683594, -3.0195312, -0.44970703, 0.4633789, 0.95703125, 1.6435547, -4.46875, -0.34716797, -0.4855957, -1.2285156, -1.8798828, -0.9399414, 1.8720703, -0.67089844, 1.0019531, -2.8066406, 1.0537109, 1.9101562, -0.7973633, 2.671875, 2.2226562, 0.20300293, -3, 1.8759766, 0.23535156, 3.7167969, -0.8046875, -3.1640625, -1.7167969, 2.0390625, 1.0185547, -2.9394531, -0.03918457, 0.21276855, -1.3369141, 0.8442383, 1.5507812, 2.2558594, 0.8354492, -0.27929688, -2.3828125, -0.7480469, -0.5854492, -0.3034668, -2.3300781, -0.7055664, 2.0566406, -1.4082031, -0.79248047, -2.4570312, 1.5341797, -0.6723633, -1.0537109, -3.3417969, 1.9921875, 3.9433594, 2.5527344, 2.7207031, -1.3398438, 1.8837891, -0.18237305, 0.20690918, -1.5214844, 1.8759766, -1.1123047, -0.640625, 3.3554688, 0.9506836, -1.1474609, -0.24914551, 1.6191406, -2.34375, -0.68847656, -1.5107422, -0.71435547, -1.4736328, -0.30566406, 1.2753906, -0.83740234, 2.9921875, -0.06982422, -2.5878906, 0.7158203, 1.4560547, -0.98095703, 0.10119629, 0.70214844, -0.18591309, -0.21264648, 2.0683594, 2.7832031, 0.39892578, 0.5932617, -0.6074219, 0.765625, -0.073791504, 1.4316406, 1.8046875, -0.43310547, -1.125, -0.46069336, 2.0449219, 2.25, 2.3378906, 2.9570312, 0.98828125, -3.0839844, 2.0605469, 0.18762207, -3.8203125, 1.3427734, 1.3212891, 0.6850586, 0.44506836, 1.8417969, -3.8886719, -0.98828125, 1.3789062, -0.4501953, 1.7119141, -0.7246094, -0.40429688, 2.8515625, -0.024932861, -0.5263672, 0.26098633, -0.2980957, 1.8056641, 1.1279297, 0.7241211, -2.1875, 1.3320312, 1.8935547, -0.41967773, -2.2636719, 2.6972656, -0.2697754, 0.5390625, -1.828125, 0.36572266, -0.125, 0.53271484, 3.2304688, 1.6230469, 1.9804688, -0.1003418, 1.5351562, -2.3164062, 0.17138672, -2.2148438, 3.0136719, -1.4443359, -1.5957031, 0.83447266, -2.6367188, 1.1220703, -2.0195312, -1.8193359, -0.4272461, 0.71875, 1.0449219, 0.14465332, -2.2070312, -0.10632324, -1.5107422, -2.3007812, -0.05407715, 0.6948242, 0.91796875, 0.29956055, 1.25, -2.1894531, 0.42993164, -0.1977539, 0.49047852, -1.2988281, -0.42456055, -1.3955078, -0.8901367, -0.87890625, 0.45117188, -1.3828125, 0.52685547, 2.0117188, 0.03894043, 1.3935547, -2.0820312, -1.7949219, 0.5644531, 0.051574707, 0.24365234, 1.7441406, 1.3212891, -1.7392578, 1.8261719, 0.22973633, -1.7128906, 1.6650391, -3.3710938, -1.6513672, 2.4199219, -1.0693359, 2.0800781, -0.8613281, 0.07879639, -0.59228516, -0.96728516, 0.98291016, 1.5400391, -0.32080078, -1.5449219, 0.84375, -0.8017578, -2.0996094, 0.94677734, -0.77734375, 1.5107422, 0.31469727, -1.4306641, -0.87890625, -1.1660156, -1.3125, 1.8378906, -3.4863281, -1.1308594, -0.54589844, 1.4033203, 0.9345703, 0.3894043, -0.8198242, 3.2890625, -0.37841797, -1.1748047, -0.42285156, -0.8881836, 3.9101562, 3.59375, -0.18225098, -0.8251953, -1.9726562, 0.20812988, 0.64453125, 1.8876953, -1.5263672, 0.18395996, -0.89160156, -0.4411621, -0.85791016, 1.4628906, 1.4443359, 0.17150879, -0.47460938, 0.8798828, 3.3339844, -0.5864258, 0.6972656, 1.6083984, -1.0400391, -0.16052246, 4.8984375, 1.7167969, -2.6074219, 0.66259766, -1.7402344, 2.0839844, 0.85839844, -0.14953613, -0.095214844, -1.5009766, -1.796875, -2.2441406, -2.6757812, -2.8847656, 0.9902344, 0.9584961, -1.5126953, -1.6757812, 1.2373047, -0.16833496, 4.4804688, 0.5629883, 1.6503906, -1.8662109, 0.6044922, -1.2099609, 0.46044922, 0.8564453, -3.3476562, 0.91308594, 1.8759766, -1.6269531, -1.7871094, 0.79833984, 0.42285156, 3.9433594, 0.46679688, 1.8515625, 3.0253906, 2.1191406, 1.7392578, 1.1279297, 0.5996094, -0.23327637, -0.81347656, -0.87646484, 0.7553711, 0.57910156, 0.83203125, 0.16906738, 2.5292969, -1.6923828, -0.27490234, -0.32080078, -1.2509766, 0.68603516, -2.8222656, 0.8066406, 1.015625, 2.7265625, -1.6083984, -1.2871094, -0.07537842, 0.35351562, 0.51416016, -1.2148438, 1.8291016, 0.7519531, 0.5678711, -1.8701172, -0.022384644, 1.9726562, -4.1601562, 1.5097656, 0.035980225, -0.54052734, -1.4013672, -0.8852539, 2.09375, 0.5620117, 0.064453125, 1.6894531, 3.1640625, 0.6503906, 1.8115234, -3.4882812, -0.8413086, 0.47070312, 4.3164062, -0.34326172, -0.2849121, 1.4394531, -2.0859375, -3.8027344, -3.6035156, 3.453125, 1.890625, 1.1826172, 1.5126953, -0.77197266, 2.8203125, 0.024383545, 0.7807617, -2.2070312, 0.17333984, -0.5810547, -2.75, -0.88183594, 0.85791016, -1.7255859, 0.0068473816, 1.1347656, -1.0087891, 1.1894531, 1.6884766, 1.6083984, -0.06185913, 0.52685547, 0.80078125, 0.5209961, 0.2902832, 1.6689453, 0.9199219, -1.7353516, -1.9248047, 1.0068359, 1.7460938, 0.28198242, -0.71728516, -0.4975586, -1.2070312, -0.7397461, -1.1123047, 1.7148438, -1.4804688, -0.8779297, -0.061828613, 0.97265625, -2.3359375, -2.6074219, 3.1152344, 2.9726562, 0.109436035, 0.92578125, 3.2734375, -1.9453125, 0.2401123, 0.38354492, 0.62060547, 0.52441406, -0.4621582, -0.4008789, 0.65966797, -1.6367188, 2.3261719, 1.5439453, 0.17712402, -0.51953125, -0.037963867, -1.0234375, -0.14282227, 0.6357422, 1.9619141, -1.2060547, -1.4101562, 2.7832031, -0.30151367, -1.7949219, 2.5644531, -0.26757812, 0.66503906, -1.2246094, -3.0527344, -0.50341797, 0.27075195, -1.5644531, 0.27026367, 3.3828125, 1.6650391, 0.27392578, -3.1972656, -1.9824219, -1.9248047, -2.8652344, 1.2666016, -2.1933594, -1.6777344, -1.7011719, 0.44604492, 3.1640625, 0.1661377, 0.06738281, -0.5488281, -1.7988281, 1.0585938, 0.13452148, 1.8740234, -0.13269043, 0.12890625, 1.0107422, 1.6503906, 3.1835938, 1.2851562, 0.42895508, 2.2207031, -0.47753906, -1.9902344, -0.16723633, -0.18591309, -0.18115234, 0.027664185, -0.66748047, 1.1513672, -0.5703125, -1.1474609, 0.13684082, -2.4804688]}, "B018A484AK": {"id": "B018A484AK", "original": "Brand: Martin Grill Gadget\nName: Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long\nDescription: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nFeatures: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nNO HARMFUL BRISTLES: Don't take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury.\nTOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There's a universal brass head that fits any grill grate rack and a wooden handle totaling 16\".\nUNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA.\nLIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.\n", "embedding": [-1.4824219, 0.0018424988, -0.060516357, 0.85595703, -0.4326172, 0.3947754, 0.3564453, -1.0556641, 0.33276367, -1.5195312, 0.019973755, -2.4316406, -0.95996094, -1.6435547, -1.9345703, -0.57666016, 0.56396484, 0.7373047, 2.0292969, 0.9838867, -0.9477539, 0.026519775, -0.07940674, 1.1132812, 0.48901367, 0.52441406, 2.4570312, -1.8964844, 2.4140625, 1.3203125, 0.8017578, 0.76171875, -0.0340271, 2.5175781, -2.9082031, 0.9765625, -1.3515625, 2.2089844, -0.27929688, -1.0927734, 0.06088257, -0.3413086, 1.4814453, 1.5185547, -3.3027344, 0.48779297, 1.7861328, 3.4335938, -1.4580078, -3.0351562, 2.1621094, 2.1582031, 1.2080078, 0.28930664, -2.078125, 2.1933594, -0.92578125, -2.3554688, 0.25976562, -1.6201172, 1.4375, 1.9580078, 1.5332031, 0.5078125, 0.6274414, -0.17456055, 0.10760498, -0.6748047, -1.6240234, -2.1660156, -1.2949219, 0.70703125, -0.16552734, -0.52734375, 0.6459961, -0.1640625, -1.2128906, -1.3808594, -1.4648438, -0.5805664, 0.33642578, 2.7695312, 1.265625, -2.9238281, 2.0332031, 0.8652344, -2.3886719, -0.1307373, 0.11077881, -2.6875, 0.7602539, 2.1015625, -2.9726562, -4.15625, 1.8359375, -1.890625, 1.421875, -1.1318359, 1.234375, 3.0976562, -1.0976562, 1.5390625, 0.6616211, 0.3269043, -1.6230469, -0.97265625, 0.6958008, -1.5126953, -2.578125, -1.3427734, -1.9287109, 1.4052734, -1.0966797, 0.44311523, -1.3359375, 0.40405273, 0.008804321, -0.32348633, 0.61376953, 2.4433594, 0.10083008, 0.010826111, 0.37963867, -0.3388672, -1.9589844, -1.1328125, -0.079711914, 2.90625, 2.6933594, -1.3876953, -0.1619873, -2.2792969, 3.0234375, 1.390625, -0.19165039, -2.4492188, -0.04748535, -1.4736328, -2.0351562, 0.68847656, 0.23522949, 0.6538086, 2.1054688, -0.4675293, -2.6054688, -0.13366699, -1.0527344, -0.66796875, -0.63427734, -2.4882812, -0.78564453, -0.484375, 1.015625, -0.49169922, 1.4414062, 0.095703125, -0.66552734, -0.25854492, 0.8901367, 0.11621094, 1.6181641, -1.765625, -0.1427002, 0.35546875, -0.6308594, -2.0703125, -2.4082031, 4.046875, 0.6689453, 2.0429688, 0.9013672, 0.04611206, -0.921875, -2.1445312, -0.7993164, -0.17529297, 1.3828125, 2.7695312, -1.8486328, -0.87597656, 1.6435547, -2.4296875, 0.004501343, -2.0136719, 0.40673828, -0.6098633, 2.4960938, -1.8164062, 1.2607422, 0.12902832, 3.4453125, 1.4541016, -0.06762695, 1.1494141, -0.76660156, -1.6347656, -2.1796875, -1.5292969, 1.1875, 0.8378906, -2.484375, -1.1113281, -0.77441406, -1.2470703, -0.53271484, -1.5693359, -2.2851562, 0.5239258, -0.34057617, 1.7119141, 0.21643066, -0.87060547, 2.1191406, -1.7890625, 2.0664062, -4, -0.15661621, -1.5390625, 1.4072266, 2.1640625, -2.2363281, 0.26049805, -0.19714355, 3.8417969, -1.1542969, -0.10040283, 0.060424805, 2.2421875, -2.6914062, -0.33618164, -0.9902344, 0.50146484, -0.98779297, -1.3037109, 0.13378906, -0.119140625, 0.81347656, -0.39233398, -1.8964844, 0.8100586, -0.76953125, -1.2548828, -0.28076172, -0.9248047, 0.73535156, -0.6333008, -0.8876953, 1.1552734, -1.3017578, -2.7773438, 0.25146484, 1.3837891, 1.3222656, 2.7070312, -0.22192383, 1.5605469, -1.5341797, -0.13977051, -3.7265625, -0.38989258, 0.054779053, 0.101623535, 1.4736328, -1.1777344, 1.5390625, 0.65185547, 2.3339844, -0.78564453, 0.8911133, -2.4492188, 1.109375, 0.7597656, -0.1920166, 1.1621094, 0.28930664, 0.7675781, -0.24206543, 1.1845703, 2.9628906, -2.0175781, -1.3789062, 1.8261719, 2.7011719, -0.7207031, -1.1279297, -2.859375, -1.0214844, -1.3066406, 1.7001953, -1.8867188, 4.015625, 2.1992188, -2.7832031, 2.71875, -1.8730469, 2.0078125, 2.7558594, -2.3359375, 0.2277832, -2.3417969, 3.4335938, 1.7548828, 0.60839844, 3.1542969, -1.7089844, 0.28442383, 1.3925781, -1.5351562, -0.9355469, 2.8808594, -1.9912109, -1.8222656, -0.3786621, 0.08874512, -3.6523438, 1.2041016, -2.640625, -0.98095703, -0.52783203, -0.2619629, 1.640625, 1.7529297, 1.2480469, -1.4521484, -2.453125, -0.86572266, 1.3769531, -0.15161133, 0.44384766, -1.6464844, 1.2421875, -0.12719727, 0.2479248, -0.47607422, -3.1035156, -1.0048828, 0.2722168, -3.4238281, 2.6386719, 1.5742188, 0.42456055, 2.2128906, -2.2324219, 2.359375, -1.8710938, -0.18896484, -2.6347656, -0.78271484, 2.0605469, 1.1298828, -0.57373047, 0.52783203, 0.17272949, -4.65625, 0.025421143, -0.0026760101, 0.32739258, -0.24938965, 0.92333984, -0.6557617, 0.5395508, 0.48828125, -0.43823242, -0.3203125, 0.5683594, 0.29858398, 0.8251953, -2.2460938, 0.099365234, -2.9902344, -1.0263672, -0.066467285, 0.9794922, -0.22949219, -1.1347656, -1.7470703, 0.90478516, -0.20422363, -0.67333984, 2.1660156, 1.1962891, -0.4189453, 1.0390625, -0.8066406, -0.38989258, -0.60839844, 1.2851562, 0.32958984, 0.046539307, -1.4824219, 1.0107422, -0.77978516, -2.3222656, -2.6855469, 3.3144531, -1.8701172, 1.0039062, -3.3671875, -0.17089844, 1.0634766, 1.0996094, -0.7675781, -0.5517578, -1.2910156, -0.107788086, -2.5625, -0.29077148, -1.8789062, -0.19165039, -1.5908203, -1.4765625, 1.1699219, -0.5566406, 0.6118164, 1.9013672, -2.3828125, 1.5322266, -3.3300781, -0.7885742, -1.0234375, 0.9682617, -0.28076172, -1.1298828, -1.7060547, 2.6113281, -0.8720703, 1.484375, -2.7675781, -1.3173828, 2.0527344, 1.953125, -0.47192383, 0.06933594, 0.17553711, 1.2470703, -0.7495117, -1.4443359, 1.3818359, 0.8623047, -0.5576172, 2.2851562, 1.5820312, 0.3449707, 0.8779297, 3.9824219, 1.8867188, -0.22363281, -1.2978516, 3.0117188, -0.14868164, 2.5273438, -0.47094727, 1.3291016, 0.9013672, -1.7177734, 0.6767578, -0.51904297, 0.23388672, 0.6010742, 1.3496094, -0.71191406, -1.8027344, 1.8183594, -0.38378906, 2.3007812, -1.1660156, -0.5810547, -0.061553955, -1.1777344, 1.4658203, -2.1757812, 1.1201172, -1.5009766, -1.3378906, 2.4589844, 0.055023193, 1.6777344, -1.4521484, 0.5683594, -1.4169922, -2.5332031, 0.92041016, -1.3642578, -1.7607422, 0.30200195, -1.3134766, -0.6791992, -0.49926758, 3.4003906, -0.15991211, -0.82177734, -1.2246094, 1.640625, -0.31030273, 0.40844727, 1.0214844, 3.4492188, 0.08972168, 2.0625, 0.5727539, -1.6982422, 2.3203125, -1.5458984, 0.8979492, -1.09375, -0.6171875, 0.08856201, -0.17211914, -0.0003979206, 0.7504883, 1.7724609, 0.065979004, -0.08392334, -1.3457031, 0.19250488, -1.6865234, 0.9921875, 0.2541504, -2.8945312, 0.16455078, 2.234375, 2.3964844, 1.9619141, 1.1191406, 3.2753906, 1.0546875, -2.53125, -1.2158203, -1.265625, -0.6894531, -1.2753906, -1.3222656, 0.88916016, 0.20300293, 0.6826172, 1.8623047, 0.6713867, 0.8959961, 5.3867188, -0.0209198, 0.81152344, -0.94921875, -0.07397461, 0.49609375, -0.14331055, 0.7089844, 0.82421875, -1.0136719, 0.5161133, 0.38183594, -0.68310547, -2.9824219, 0.94091797, 3.7929688, -1.9970703, 0.22216797, -1.0947266, 1.2871094, -0.6020508, 0.6850586, 2.7109375, 0.3408203, -0.7475586, -1.5107422, -1.1308594, 0.95996094, 2.4160156, -0.39501953, -1.3046875, -1.1738281, -1.9042969, -1.1650391, 0.032073975, 3.40625, -0.8149414, -0.96875, -2.4179688, -0.84375, -4.2148438, -0.9091797, 2.2011719, 0.50097656, -2.5371094, -0.26831055, -0.47875977, -1.2597656, 0.50146484, -0.36450195, -0.8725586, -2.9453125, 0.5253906, -2.6933594, -0.1550293, -0.16601562, -2.1386719, -0.62646484, -2.4335938, -2.7011719, -1.1933594, 0.19433594, -2.0566406, 1.0019531, 3.2480469, -0.9189453, 0.5444336, 3.0136719, -0.4650879, 1.4882812, 0.95996094, -2.0058594, -2.1953125, -1.1738281, 0.59228516, 0.5078125, 0.21264648, 1.3681641, -0.5317383, 0.08148193, -0.6982422, -0.8720703, -1.2001953, -3.2675781, 2.3808594, -0.9638672, 1.1816406, -0.14001465, -0.6035156, 1.2822266, -1.0458984, 2.7578125, 1.7910156, 2.0625, 0.3239746, 0.64990234, 1.0732422, -1.0283203, 1.5527344, 1.7695312, 2.7929688, -0.16833496, -0.11932373, -0.30371094, 1.2480469, -0.0020656586, -1.46875, 2.0839844, -0.103759766, -1.4921875, -0.3293457, 2.078125, 0.67333984, 0.45043945, 1.6982422, -1.6347656, -1.7617188, 2.0351562, 1.5488281, -4.2929688, 0.5727539, 0.2064209, -1.3876953, 2.8945312, -1.2080078, -1.5849609, 0.7607422, 0.6621094, -0.9248047, -1.1708984, -2.03125, 1.7177734, 1.7275391, 0.086364746, 0.22912598, 0.875, -2.0878906, 0.75683594, -0.009483337, -0.48486328, 1.6650391, 0.59716797, 4.6679688, -2.1113281, -1.1855469, 2.5449219, -1.1074219, -0.62597656, 0.42358398, -2.1367188, -3.2871094, 0.69970703, 0.8691406, 1.0244141, 0.17211914, 0.2109375, 1.6289062, 0.7895508, 0.9946289, -1.3779297, 1.9970703, -1.1777344, -1.6728516, 3.2851562, -3.1308594, 0.7885742, -1.5546875, 1.1689453, 0.007587433, 2.7578125, 2.15625, -0.4699707, -2.8574219, 1.0810547, -1.0996094, -1.0458984, -1.140625, -1.0898438, 1.1552734, 0.88720703, 2.0625, -0.6225586, 0.31591797, 0.96191406, -0.7788086, 0.8725586, -0.82958984, 0.63427734, 0.039642334, -2.0410156, -0.20837402, -0.51416016, -1.6777344, 2.03125, 1.5996094, 0.4807129, -1.8535156, -0.74658203, 1.1894531, -0.3659668, -3.9335938, 3.71875, 0.36450195, -0.8388672, -0.49658203, 1.6787109, -2.0976562, 0.8671875, -0.6088867, -0.54296875, 0.65478516, -0.39086914, 1.6464844, -2.2070312, -5.0820312, 1.6210938, -3.6933594, 1.1230469, 2.0839844, 0.85302734, 1.4902344, 0.92578125, -1.4541016, -1.7851562, -2.2539062, 1.1523438, 2.8417969, -1.0566406, -0.100097656, 2.7929688, -2.828125, -1.1708984, 0.98876953, -1.0595703, 2.2597656, 0.17333984, -0.9316406, 3.3339844, 0.67822266, 0.3474121, 0.08312988, 1.6513672, 1.2207031, -1.0732422, -0.82958984, 3.2675781, 0.45263672, 1.3701172, 0.9604492, 1.2041016, -0.23181152, 1.2509766, 0.45239258, -0.44433594, 0.48486328, -4.2734375, -0.34228516, 1.3984375, 2.7050781, 2.1191406, 0.21350098, 0.64941406, -2.4648438, -0.08734131, -1.0517578, 3.1425781, 1.0283203, 3.1425781, -0.08117676, 3.9882812, -0.78808594, -2.9082031, 1.171875, -2.0585938, 1.1738281, 0.3984375, -2.9433594, -0.7729492, -1.6259766, -0.4560547, -2.75, -1.2480469, -4.25, 1.3359375, -0.69384766, -2.2617188, -1.2802734, 1.5, -0.4753418, 4.2265625, 4.109375, -0.74072266, -1.7822266, 1.0830078, -0.4260254, 0.30615234, -0.4404297, -2.5234375, 1.484375, 0.24353027, 0.16357422, -1.2128906, 0.34887695, 3.1523438, 0.064575195, 0.9550781, 1.6875, 1.9404297, 2.8789062, 2.1660156, -0.11505127, 0.7211914, 1.7441406, 1.4140625, 0.06640625, 3.7636719, -1.1152344, 0.8955078, -1.4101562, 1.2978516, 0.69384766, 0.34960938, -0.82958984, 0.8183594, 0.8251953, -3.0761719, 1.9316406, 0.86376953, -0.83251953, -1.5175781, 0.49169922, -1.6347656, -0.453125, 0.8046875, 1.4658203, 2.8242188, 2.1289062, 0.14733887, 0.78125, -0.76953125, 0.76123047, -3.0507812, 1.7919922, -1.1738281, -0.0132369995, -0.24487305, 0.93847656, -0.82958984, 0.6513672, -0.028900146, 2.2773438, -0.36645508, -0.75097656, -2.5585938, 0.61572266, -0.35546875, 1.1210938, -1.1953125, -0.2849121, -1.4570312, -2.9960938, 0.68310547, -2.2441406, -0.11517334, 4.5664062, -0.116882324, 1.2753906, 2.4082031, -3.7421875, 1.2216797, -0.19396973, 0.52441406, -1.1181641, 1.2050781, -1.8046875, -0.62353516, -1.5996094, -0.013587952, 1.0214844, 0.85058594, -0.88916016, -0.54541016, 1.9677734, 0.4802246, 1.4921875, 0.11077881, 0.9135742, -0.31518555, -0.90478516, -2.4277344, 0.29663086, 1.8291016, 0.5805664, -0.23168945, 0.47192383, 0.34350586, 1.0136719, 3.5332031, -1.3056641, -1.0654297, 0.7729492, -0.6953125, -1.3007812, 0.103881836, -2.4140625, 0.051361084, -0.23278809, -0.4169922, -1.4267578, 3.8027344, 0.4321289, -0.58984375, 1.6230469, -0.4489746, -0.2163086, 1.7744141, 1.6396484, 0.23254395, -1.3886719, 0.9560547, -1.0791016, -0.9892578, -1.8623047, 1.0966797, 2.2929688, -1.890625, 0.14208984, 0.031341553, -0.38452148, 0.9711914, 0.8515625, -0.36254883, -1.5908203, -1.8984375, 1.4306641, 2.0078125, 2.0820312, 3.0234375, 0.66259766, -2.40625, -0.47998047, 0.38305664, -1.0742188, 0.7080078, -2.8242188, 0.4855957, 3.4433594, 0.097229004, -0.15148926, -1.0722656, 0.37036133, 1.1035156, -1.2832031, 2.1308594, 0.8691406, -2.109375, -1.2255859, -0.8857422, 0.65478516, 2.0234375, -1.0976562, -0.10443115, 1.1162109, -0.6801758, 0.1517334, 1.7197266, 2.1328125, 0.08392334, 1.1972656, 2.6054688, 1.0869141, -0.16125488, 1.3710938, 0.9326172, 2.0351562, -2.3671875, 2.5078125, -1.0185547, 2.5429688, -1.5449219, -1.4814453, 2.2714844, 0.59765625, 0.59472656, -0.6191406, -1.4541016]}, "B07WK2GZGD": {"id": "B07WK2GZGD", "original": "Brand: STYDDI\nName: STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut\nDescription:

STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

Product Instructions:
1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
2.Taking the regulator hose end connect to your 3/8\" male flare connector propane appliance.
3.Checking this hose both ends must be fully tightened.

Specification:
Inlet\uff1aQCC-1 Tank Connection (ACME)
Outlet: 3/8\" Female Flare Nut
Flow Capacity: 80000 BTU/Hr
Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
Certificate: CSA
Gas Type: LP/LPG
Material: Rubber / Brass

Attention:
1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
4.Keeping the hose away from HIGH TEMPERATURE.

Note:
Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

\nFeatures: NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter.\nCSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8\" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8\" male flare connector propane appliance. It\u2019s compatible with your 20-50 lb propane gas tank.\nUNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills.\nA MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [-1.2919922, 1.5087891, 1.3916016, 0.90966797, -0.67529297, -1.0302734, 2.25, -1.6816406, 2.65625, 0.39941406, 0.18188477, 0.75, 2.5078125, -3.125, 2.7714844, 0.2626953, 1.4160156, -0.049224854, 1.9892578, 1.5820312, 1.4052734, -1.3144531, 3.0546875, -1.0078125, 1.7822266, -1.0898438, 3.4082031, -2.6113281, -1.1152344, -0.9946289, 1.3369141, 0.46923828, 0.051483154, 1.9101562, -3.7636719, -1.7197266, 0.7578125, 0.15637207, -3.5683594, -0.5761719, -2.9921875, 1.140625, 3.4375, 1.7060547, -2.7832031, 1.2109375, 1.4492188, 1.2255859, 0.89208984, -1.0839844, 0.20812988, 0.099731445, 0.48339844, 0.85253906, -1.5966797, 0.7504883, -0.7973633, -3.4628906, 1.4316406, 0.6875, 2.6191406, -1.0742188, -2.3691406, 1.2490234, -1.8427734, 1.7519531, 0.71972656, -0.25195312, 0.21166992, 1.1474609, 0.6743164, 1.2617188, 0.6713867, -0.64501953, 0.37231445, 0.5029297, -3.2949219, 0.5761719, 2.9960938, -0.7133789, -1.9638672, 2.7109375, 0.7885742, -1.515625, 0.91015625, 0.3713379, -1.5009766, 0.6166992, 1.96875, 2.3652344, -2.2558594, 2.1679688, -2.7929688, -3.8339844, 0.19750977, -0.16296387, 1.3876953, 0.5258789, 1.3085938, 0.6899414, -2.4746094, -0.10864258, 0.070495605, 1.0537109, -2.0859375, -0.89746094, -0.31323242, 1.8486328, -1.7646484, 0.26904297, 0.19384766, 0.9946289, 1.6337891, -1.3847656, 1.2978516, -0.59033203, -0.7060547, 0.41333008, 4.0117188, 1.9755859, 4.5664062, 0.7529297, 1.4003906, -0.48950195, 0.44262695, 0.33447266, -0.90722656, 0.7236328, 3.4726562, -1.8378906, 0.68603516, -2.2382812, 2.6152344, -0.67529297, -0.7363281, -3.1972656, -2.03125, -2.15625, -1.7109375, -1.4003906, -3.9765625, -0.4645996, 1.4814453, 0.16101074, -4.5039062, 1.3085938, -2.9042969, 1.3896484, 2.5351562, -2.3027344, 1.6884766, -1.5058594, 0.91015625, -1.2626953, 1.6982422, 1.0996094, -0.16845703, -0.67529297, 2.6152344, 2.1445312, 1.1152344, -1.4804688, -2.3085938, 1.1494141, 0.39941406, -2.4511719, 0.75146484, 1.0058594, -0.81591797, 0.42626953, -0.6948242, -3.0996094, -0.8120117, 0.30737305, 0.59277344, -0.89160156, 0.7973633, 2.0683594, 1.7167969, 0.16345215, -2.6152344, -2.234375, 0.5292969, -1.5068359, 1.453125, 0.36645508, -1.4931641, -1.7080078, 1.4619141, -1.3662109, -1.6855469, 0.98779297, -0.0073165894, 0.91503906, -0.6557617, -2.0136719, -3.9667969, -1.0917969, -0.08886719, 1.28125, -0.013870239, -2.03125, 0.7558594, 1.9492188, -1.4931641, -2.4980469, 1.1806641, 0.3527832, -0.23339844, 2.2617188, 0.19848633, -0.7138672, 2.0429688, -0.96240234, 0.0022907257, -1.578125, 2.2929688, 2.9179688, 1.4072266, 0.79296875, 0.26635742, -0.39086914, -1.2402344, 1.0332031, 2.3164062, 0.8666992, 0.12939453, 0.68359375, -2.4804688, -1.1650391, 1.7832031, 1.6533203, -0.4248047, -0.17480469, -0.73583984, 2.4746094, 0.88964844, -0.28076172, 0.98583984, 2.0703125, 0.022125244, -0.9042969, -1.46875, 0.007965088, -0.19030762, -0.46240234, -1.0751953, 0.38305664, 2.3652344, -0.83496094, 1.3398438, 0.13269043, -1.3691406, -1.4472656, -1.1181641, -0.44018555, 0.36132812, 0.6435547, -0.07336426, -1.4394531, 1.5390625, 0.4638672, 0.3857422, 1.6748047, 0.7158203, 0.37329102, 2.2558594, -1.1660156, -1.5634766, -0.025161743, -0.8720703, 2.0273438, 2.3144531, -0.018722534, 0.3359375, 1.6181641, -2.9375, 1.7431641, -1.8720703, 1.4804688, 1.03125, 0.002658844, 1.7841797, -1.9296875, 1.1865234, 1.890625, 0.8125, 0.22680664, -1.4658203, 0.051879883, 4.4726562, -0.6538086, -1.8476562, 2.3027344, 1.6152344, 0.6376953, 1.5078125, 1.1220703, -0.68310547, -0.36694336, 0.21252441, 1.0654297, -1.3701172, 1.0546875, 1.4638672, -0.08068848, 0.31689453, -1.0869141, 0.15637207, 1.5742188, -1.8994141, -1.3720703, -0.41259766, 1.4003906, -1.7099609, -3.2949219, 1.4335938, -1.8154297, 0.46142578, 0.16772461, 0.16113281, -0.39770508, -0.4519043, -0.7919922, -0.98339844, 1.8378906, -2.1835938, 0.8769531, 1.0136719, 0.60839844, 1.1328125, -0.010025024, 0.39160156, -3.046875, -1.5810547, -0.029708862, -2.0546875, -3.03125, 0.06585693, -1.6650391, -1.9296875, 0.048461914, 0.54248047, 4.3632812, 1.8164062, -0.21166992, -1.2568359, -0.012260437, -0.25708008, -0.039093018, -0.26342773, 2.1523438, 0.07647705, -1.4833984, 0.14477539, 0.4399414, 1.0771484, 1.46875, -1.7617188, 0.18200684, 1.2353516, 1.3056641, -0.4025879, -0.10888672, 0.9916992, -1.0917969, 0.1986084, -3.3554688, 0.006477356, 0.041259766, 1.4541016, -0.6098633, 1.5654297, -1.5117188, -1.1191406, -0.9301758, -1.5419922, 1.9804688, -1.1035156, 1.8007812, -1.5166016, 0.97753906, 0.5810547, -1.453125, -3.0625, -0.32836914, -0.1385498, -0.82666016, -0.546875, -2.46875, -0.19592285, -0.5527344, 1.7675781, -0.47875977, -0.32226562, -1.6923828, 1.4160156, 0.42871094, -1.1552734, -0.4074707, 1.9375, 1.0556641, -2.4882812, 0.7314453, 0.30932617, -0.62890625, -1.25, -0.35375977, 0.73779297, -0.54785156, -0.44433594, 1.6220703, 0.16796875, 1.859375, 0.27246094, -4.3789062, 0.59375, 1.4716797, -2.2890625, 2.0292969, -0.8979492, -1.4033203, -1.8574219, -2.296875, 2.6835938, 2.0566406, 2.6210938, -1.265625, 0.91845703, 0.02619934, -0.67041016, -1.7275391, -0.94384766, 0.21459961, 4.6015625, -4.0390625, -1.4501953, 0.7548828, -0.7104492, -2.7636719, 0.31396484, 0.9824219, -0.26220703, 0.97265625, 0.69091797, 1.2392578, -0.23632812, 2.2089844, 1.6669922, 0.38061523, -0.69628906, -0.22937012, -1.2412109, -0.5292969, -1.5195312, 1.5722656, 1.1894531, 1.4169922, 0.88964844, 0.089660645, -0.41723633, -2.203125, 0.7363281, -0.10809326, 0.80322266, 1.4208984, 1.6757812, -0.8066406, -0.15307617, 0.16577148, 0.4267578, 1.8173828, -3.6796875, -0.94091797, 1.4335938, 1.5068359, -1.7373047, -0.54345703, -1.1855469, -0.2512207, -1.546875, 0.14953613, 0.26342773, 0.13769531, 1.8642578, -0.60839844, 1.1591797, -1.2421875, 2.5859375, -2.0957031, -0.5058594, -0.9326172, -0.17297363, -1.6298828, -1.5009766, -0.94140625, -2.8964844, -1.1464844, 2.6757812, -0.052947998, -1.4570312, 0.44702148, -1.9648438, 1.4306641, 1.90625, -1.7236328, -0.1005249, 0.77197266, -1.65625, -0.006477356, -0.066101074, 2.3691406, 0.04937744, -2.6757812, 0.5136719, -2.3847656, 0.12109375, -0.83740234, 0.20410156, -2.9394531, 0.39135742, -0.038879395, 1.6513672, -1.3173828, 3.6269531, 0.2536621, -0.84765625, 1.6083984, -3.3339844, 0.35620117, -3.2714844, -5.8554688, -0.24853516, -2.8613281, 0.78125, 3.0878906, 1.34375, -0.55078125, 2.0253906, 1.9511719, -3.2128906, -0.52734375, -1.3574219, -0.16772461, -3.0742188, -0.50634766, 2.78125, 2.0429688, -1.4882812, -2.9882812, -0.019866943, -2.46875, 0.44580078, -0.11376953, -1.3623047, 0.49487305, -1.8320312, -0.28515625, -1.828125, -1.2714844, 1.4199219, -0.021881104, -0.48828125, -2.9394531, 2.6542969, 0.30615234, 1.2353516, -0.47607422, 3.3652344, 2.234375, -0.068237305, 0.7368164, 0.6616211, 4.0625, -0.020736694, -1.8759766, 0.18664551, -1.0830078, 1.0400391, -0.5415039, 0.0440979, 0.16137695, -1.4296875, 1.6835938, 0.02684021, 2.1660156, 1.734375, -0.69140625, -3.8398438, 1.4023438, 0.9160156, -1.6699219, -0.29223633, 0.31396484, -2.4257812, -0.8251953, 0.8339844, -1.3544922, 0.48828125, -2.2597656, -0.46362305, -2.0800781, 1.7636719, -0.421875, 0.21777344, 0.41088867, -2.4453125, -0.10211182, -0.30639648, -1.8212891, -1.1171875, -0.2788086, -2.4023438, -1.6621094, 2.7988281, 0.7626953, 0.35424805, -1.0742188, -0.6118164, -1.4375, -1.4335938, 1.0537109, 0.6586914, -0.2734375, -1.4453125, 0.70703125, -0.6430664, 3.71875, -1.5429688, 2.2539062, 1.7011719, -0.546875, -2.8925781, 2.2441406, 0.90478516, 3.5996094, 1.8339844, 1.0195312, 2.1503906, 1.9824219, 1.078125, 0.22619629, 0.9243164, -1.8330078, 0.59814453, -0.12060547, 1.5566406, -0.31420898, 0.2836914, 0.6621094, 1.7304688, 0.8754883, 0.9501953, 0.9399414, -2.40625, 1.9960938, -0.39990234, -1.5888672, -0.68359375, -0.18005371, -1.6748047, 4.8632812, -1.6279297, -2.6367188, -0.18981934, 2.2441406, -0.15893555, 1.1064453, 1.3310547, -1.8359375, 0.067993164, -2.9863281, -1.109375, -0.9140625, -0.87890625, 2.3867188, -2.5800781, 2.0097656, 0.5253906, 1.8496094, 1.9736328, -0.21154785, 0.1394043, -1.8125, -1.2441406, -0.07543945, 0.032287598, -0.48242188, -1.6708984, -0.20788574, 1.8613281, 1.7558594, 0.71875, 0.2590332, 0.40844727, -1.5126953, -1.7480469, -0.6220703, 0.99658203, -0.08557129, 0.08660889, 4.1757812, -1.2050781, 1.2226562, -0.56152344, -1.3320312, -0.18432617, 1.5908203, 0.7861328, -0.02229309, -1.1767578, 0.01953125, -2.6230469, -4.625, -0.7133789, 1.8193359, -0.98095703, 0.7998047, -2.0429688, -0.03302002, 0.76953125, -0.49047852, -0.23535156, -3.5507812, 1.6035156, -0.29052734, 0.49023438, -0.24401855, -0.012176514, 0.4099121, 0.3581543, -1.765625, 1.6015625, 0.27026367, -3.2285156, -1.6425781, 2.9941406, -1.7119141, -0.91748047, 1.6083984, -2.0117188, -1.4863281, 1.2685547, 0.12524414, -1.0332031, 1.8359375, -3.2636719, 0.640625, 1.0439453, -2.3066406, 0.8442383, 0.5732422, 0.2130127, 0.5708008, 0.82958984, 2.9628906, -0.14526367, -0.38745117, 1.2080078, 1.0166016, 0.49072266, -1.9111328, -0.59521484, 0.38549805, 2.0527344, 1.046875, -2.0410156, -1.2998047, -2.5957031, -1.8115234, 0.22875977, -0.87939453, 0.54003906, 0.6855469, 1.6289062, 0.59521484, -1.3945312, 0.47729492, 0.93115234, -1.3154297, -0.8828125, 0.93066406, -1.2128906, 2.234375, 1.0966797, -1.5214844, -3.3632812, -0.94873047, 1.4384766, 3.1054688, -1.1992188, 1.203125, -0.26660156, -0.51416016, 1.1572266, -0.6064453, 0.23510742, 0.9941406, 1.3457031, -0.97802734, -1.28125, 0.7836914, -2.1152344, 0.6171875, 1.4228516, -0.14331055, -0.45751953, 0.6152344, 0.79052734, -3.5742188, -0.19555664, -0.88916016, 0.87158203, -1.4482422, -1.4335938, 1.6142578, -2.5957031, 0.62939453, -1.6699219, -2.2128906, -2.3789062, 2.7636719, 0.38793945, 0.5126953, 0.6352539, 1.7070312, 0.83251953, -0.5024414, 1.1689453, -1.0048828, -0.7055664, -1.0976562, -1.2255859, 0.8574219, 1.7607422, -1.5888672, 0.56640625, 0.5263672, 1.1689453, 0.37060547, -0.5595703, 0.2590332, 2.6464844, -0.52001953, 2.0742188, 3.8320312, 0.41552734, 2.9492188, 1.0732422, 3.5625, 2.65625, -0.73828125, 2.4433594, 1.8955078, 0.36572266, 0.7495117, -0.9550781, 0.5732422, -1.2207031, 0.8417969, 0.17163086, 0.18701172, 2.9882812, -2.3339844, -0.68896484, -0.51904297, -0.92089844, -2.2890625, 0.80322266, -2.4785156, 0.4099121, 2.125, 0.609375, 0.5698242, 1.6220703, -1.3623047, 0.7314453, 0.5126953, 3.3261719, -2.6386719, 0.5209961, -1.8222656, -1.6308594, 0.7055664, 2.1035156, 0.9584961, 0.25561523, 0.88916016, -0.83203125, -0.56347656, 0.8642578, 0.7519531, -1.2890625, -0.5097656, -1.1914062, 1.5087891, 2.7128906, -2.3574219, 0.67626953, 0.9926758, -2.2773438, -4.09375, 2.3769531, 0.7163086, -0.018218994, 0.6147461, -4.890625, 0.8730469, -0.2709961, 0.8544922, -2.3046875, -0.5410156, 0.6435547, -2.8476562, -0.24645996, -0.08428955, -2.5214844, 1.9882812, 1.609375, -2.1894531, 0.5810547, 1.7236328, 1.5849609, 0.07067871, 0.7524414, -0.4345703, 0.42626953, -1.2265625, 3.1347656, 0.28955078, -2.9765625, 1.4130859, 3.3515625, 0.8417969, 0.6899414, -0.6611328, -1.0537109, 1.2851562, 0.63427734, -0.4309082, 0.6586914, -2.1152344, -0.2619629, 0.7373047, 0.05606079, 0.06225586, -1.5478516, 0.3256836, 2.0058594, -2.7246094, 0.8803711, 1.1601562, -1.1367188, 2.4140625, 1.0751953, -1.7089844, -0.8286133, 0.10632324, 1.0009766, -2.3945312, -0.5644531, 0.73828125, 0.4140625, 0.7910156, -1.6572266, -0.8251953, 1.046875, -1.2373047, -2.3007812, 0.18115234, -0.6118164, 0.112854004, 0.30688477, -1.7802734, 0.8017578, 3.6464844, 0.6328125, 0.90625, -1.0957031, -1.5458984, -0.2866211, -1.5253906, -0.7763672, 0.013198853, 2.4648438, -0.13049316, 1.0878906, -0.24902344, -3.5371094, -0.39990234, -1.0966797, 1.9443359, -0.31689453, -0.7949219, 0.78564453, 1.8896484, 2.4296875, -0.3540039, 0.66552734, -0.6503906, 0.64697266, 1.2402344, -1.4511719, 1.1884766, -1.9101562, 0.5786133, 1.7802734, 2.6503906, 1.2949219, -0.90722656, 0.09399414, 2.4355469, 0.66845703, -0.5102539, 0.4428711, -0.22509766, 1.1943359, 0.6875, 1.1289062, 3.0351562, 1.5302734, -1.1591797, -1.7246094, -0.20910645]}, "B001ABPB2U": {"id": "B001ABPB2U", "original": "Brand: Stansport\nName: Stansport Propane Appliance to Distribution Post, 5 Feet\nDescription: \nFeatures: Works on 30 inch distribution post\nWorks on all propane appliances\nHeavy duty quality hose\nBrass fittings for security to appliances and tanks\nBuy more than one to put on distribution post\n", "embedding": [-0.29345703, 0.5253906, 1.5947266, -0.8178711, -0.066589355, 0.5732422, 2.1152344, -1.3369141, 0.24047852, 1.7783203, -0.3359375, 0.6977539, -0.62841797, -3.2695312, -0.5703125, 0.77441406, 0.2915039, -1.0068359, 1.1074219, 0.42163086, 0.91552734, -0.3330078, 1.7412109, -2.3378906, -0.4645996, 0.2866211, 5.6835938, -1.0009766, 0.49682617, -0.625, -0.085510254, -0.4387207, 1.3222656, 2.1328125, -2.9140625, -0.15246582, 0.5185547, -0.69140625, -1.9472656, 0.59814453, -1.5761719, 1.7636719, 2.2128906, 0.9863281, -2.5371094, -1.4589844, 1.5263672, -0.64404297, 0.28833008, 0.73583984, 0.85302734, 0.42114258, 0.064453125, 1.5673828, 1.7177734, 0.11706543, 1.9130859, -1.2685547, 0.42773438, 1.3681641, 1.2792969, 0.42651367, -1.5419922, 0.61816406, -1.4794922, 0.9165039, 0.07525635, -2.9765625, -0.38916016, 0.70703125, 1.0810547, 0.5620117, -0.3046875, -1.0810547, 1.3847656, -0.12731934, -4.6328125, 0.9658203, 0.39282227, -2.1875, -1.4892578, 2.6933594, -1.3076172, 0.2607422, -0.19665527, -0.0128479, -2.7382812, -0.98095703, -2.015625, -1.0332031, -2.1171875, 3.1464844, -1.9433594, -4.8515625, 0.7192383, -0.028701782, 0.72802734, 1.0410156, -0.41748047, -0.79052734, 0.74902344, -0.17346191, 1.0537109, 2.3398438, -0.8618164, 1.0107422, 2.8769531, 0.47509766, -0.7495117, -1.2050781, 0.19177246, -1.5742188, 2.1835938, -1.1132812, 0.51904297, -0.7836914, -0.6333008, 0.59716797, 4.1679688, 1.3994141, 3.4414062, 0.15063477, 2.2246094, 2.6953125, 0.5385742, 2.4980469, -2.4394531, 3.21875, 3.2558594, -1.6689453, -1.3222656, -1.5712891, 0.79248047, 1.0146484, -0.034973145, -1.9404297, -2.15625, -1.1845703, -0.034301758, -1.9765625, -2.5800781, 0.05831909, 0.42797852, 0.081848145, -4.03125, -1.2021484, -0.8466797, 1.046875, -0.99902344, -2.03125, -0.01184845, -2.1875, -1.2675781, 0.5908203, 0.042297363, 1.1035156, -0.4729004, -1.5273438, 0.89697266, 1.09375, 2.4121094, -1.8496094, -2.671875, 1.1923828, 0.65771484, -5.2421875, 1.7167969, -0.18041992, 0.1973877, 1.2636719, -0.07659912, -0.76953125, -0.27441406, -1.6464844, -0.5942383, 1.1533203, 0.12609863, 0.52490234, -0.27856445, -1.5673828, -3.2324219, 0.026657104, -1.5576172, -1.8222656, 0.16442871, -0.9301758, -0.1541748, -0.097595215, 0.33691406, -0.7919922, -2.1464844, 1.0224609, -3.4941406, 0.24047852, 0.24572754, -2.7304688, -2.8066406, -3.0917969, 1.7539062, 2.8203125, -1.5068359, -0.96728516, -0.35913086, 1.1865234, 0.23046875, -0.41333008, 0.7993164, 3.4121094, -1.1748047, 1.6425781, 0.36938477, 0.7001953, 2.6777344, -2.8828125, -0.87109375, -2.4238281, 2.6152344, 0.055877686, 2.234375, 1.3564453, -0.38916016, 1.6845703, -0.74365234, -0.6196289, 1.1201172, 1.7216797, -0.47558594, 1.2128906, -2.1132812, 1.3378906, 1.4150391, -0.81347656, 0.3642578, 0.09301758, 0.734375, 2.6640625, 0.23962402, -1.4287109, 1.875, 3.5429688, 0.7416992, -0.24682617, 0.8510742, 0.609375, -0.421875, -1.6523438, -0.38110352, 0.17272949, 0.1940918, 2.9902344, 0.42163086, -0.28027344, 0.54785156, 0.48632812, 1.3808594, 1.2324219, 1.7900391, 1.0859375, -1.2314453, -1.4599609, 2.5566406, -1.4980469, -0.76708984, -1.5869141, 2.2890625, 0.5283203, 3.2988281, -1.7695312, -1.3349609, -0.9916992, -0.5576172, -0.12902832, 1.3730469, -0.6933594, 1.3222656, -0.02746582, -1.6503906, 2.8925781, 0.74316406, 1.2744141, -1.0878906, 2.2636719, 2.1972656, -1.1679688, 1.2568359, 0.28710938, 1.1230469, 0.6972656, -1.2236328, 0.03387451, 3.6035156, -1.2236328, -2.5234375, 1.2382812, 0.59472656, 0.29736328, 1.7099609, -0.12182617, 1.0517578, -1.0947266, 0.7011719, -0.014175415, -1.5283203, 3.1054688, 1.9980469, -0.24291992, 1.0185547, -2.1894531, -0.16467285, 0.1706543, -3.5351562, -2.0800781, 0.84814453, 1.0927734, -3.0039062, 0.953125, 2.1191406, -2.6367188, 0.6713867, 0.17199707, 0.16259766, 0.14916992, -0.47045898, 0.5541992, -1.7060547, 0.6118164, -0.23571777, 2.109375, 1.359375, 1.2060547, 0.042266846, 0.28173828, 0.2578125, -2.3125, -1.7216797, 1.2226562, -0.86083984, -1.1230469, 2.5273438, 0.6821289, -0.3708496, 1.8681641, -1.9316406, 1.2138672, -1.1210938, -2.0273438, -0.42089844, 1.5986328, -0.3034668, 1.1386719, 1.0214844, 3.2050781, 0.43774414, -1.5986328, -2.9589844, 0.37597656, 0.55810547, 0.12597656, -1.4912109, 0.49853516, 0.76953125, 0.96484375, -1.4921875, -1.3564453, -0.234375, -1.3691406, 1.3583984, -2.6855469, 0.4248047, 1.3808594, -0.91552734, -1.8554688, 1.3154297, -0.5239258, -1.6396484, -0.6875, -0.58203125, 2.0019531, -1.3320312, 0.9086914, -2.4257812, 0.70947266, -1.1904297, -0.30395508, -1.4560547, 0.6723633, -1.0898438, -1.125, 0.47045898, -3.0898438, 1.1054688, -0.8666992, 0.24279785, -0.22705078, 0.20471191, -1.4443359, 0.06994629, 1.0703125, 0.69091797, -0.084228516, -0.47338867, 0.30566406, 2.6191406, -1.2314453, 0.90478516, -1.0019531, -0.2944336, 1.2392578, 0.1149292, -1.8916016, -0.7446289, 2.7949219, -1.8603516, -0.08300781, 1.2324219, -0.6791992, 0.74609375, -0.2265625, -0.69189453, 3.28125, -0.27514648, -2.2128906, -0.52001953, 1.3457031, 2.1503906, 0.23486328, 2.4667969, 0.25854492, 0.48095703, 1.1289062, -1.0058594, -1.4833984, -2.3417969, -0.984375, 3.5839844, -0.7939453, -0.67285156, -0.33276367, -0.32739258, -1.0292969, 0.08062744, 0.11437988, 0.36083984, 1.6298828, 1.6923828, 0.2783203, -1.1835938, 0.6064453, -0.028457642, -0.3413086, 0.5942383, -1.078125, -2.5566406, 0.123535156, -2.1757812, -0.0021305084, 1.5322266, 1.2402344, 3.1699219, -0.69384766, 1.1425781, 0.7504883, 0.8256836, -0.53125, -0.67578125, 0.5517578, 1.9423828, 1.6669922, 1.0683594, -1.1386719, 1.4326172, 1.2734375, -1.0302734, -0.6904297, 2.2714844, -0.61572266, 0.08312988, 0.6123047, -0.7709961, -0.29736328, -1.2021484, 0.5175781, 0.42089844, -2.515625, 0.79589844, 0.7290039, 0.34423828, -1.9169922, -1.2880859, 0.38208008, 0.1887207, -2.9492188, 0.36401367, 0.2208252, -0.16052246, -2.9765625, -2.9140625, 1.4453125, 1.0048828, 1.1386719, 0.5654297, -1.4912109, -0.099609375, -0.3515625, 2.6074219, -0.546875, 0.63964844, 0.5439453, 0.4567871, 1.5908203, -2.3359375, 0.5683594, 0.29736328, -2.2265625, -0.101989746, -0.51416016, -0.38891602, -1.2617188, -0.59521484, 0.5048828, 0.9458008, -0.046691895, 1.0009766, -1.6269531, 2.4882812, -0.8691406, 0.44921875, 0.36083984, -3.9960938, 0.29882812, -1.8730469, -2.2519531, 0.69677734, -0.7001953, -0.6069336, 1.7919922, 2.2246094, 0.09301758, 1.3476562, 2.0722656, -3.4707031, -2.3378906, -0.5629883, -0.41064453, -2.9199219, -1.5712891, -0.035125732, 1.9345703, -2.265625, -0.734375, -0.40405273, -1.6767578, -0.31762695, -1.6601562, -0.68359375, 1.015625, 1.0488281, -0.9169922, -0.16687012, 0.2512207, 3.3164062, -2.1816406, -0.7128906, -0.24975586, 1.4033203, 2.7871094, 1.3652344, 0.2849121, 1.3798828, -0.77441406, -2.2226562, -1.1982422, -1.4013672, 0.47998047, -0.4958496, -1.5917969, -0.9267578, -1.9980469, 1.0917969, -1.3759766, 0.4555664, 0.05621338, -1.4453125, 1.2451172, -0.8071289, -1.5732422, 1.7216797, 0.34716797, -2.2382812, 1.796875, 1.1591797, -0.47680664, -2.8457031, -1.5957031, -1.015625, -1.1640625, 1.9384766, -2.4179688, 0.3347168, -2.1054688, -2.0097656, -1.140625, 0.93847656, -1.0820312, -0.61572266, 1.3085938, -0.3474121, -1.53125, 0.036346436, 0.2602539, -0.75439453, 1.3476562, -0.9663086, -2.1855469, 1.5751953, 1.9023438, -0.86572266, -2.6191406, -0.6098633, -0.23803711, -3.109375, -1.3300781, 1.4501953, -1.8144531, -2.5351562, 2.1992188, -0.8574219, 2.0214844, -0.4729004, 2.0546875, 1.5888672, 0.2668457, -0.9863281, 1.6435547, -1.1474609, 3.03125, 3.1269531, 1.3027344, -0.22436523, -0.45654297, 2.4160156, -0.35888672, 2.2851562, -0.9638672, 1.1982422, 1.7109375, 0.016616821, 1.1386719, -0.64453125, -0.5654297, 1.953125, 0.08099365, 0.80322266, 1.0058594, -3.1835938, -0.19641113, -1.4101562, -1.4423828, 0.73583984, 0.5463867, -2.328125, 2.6679688, -1.5849609, -2.8359375, 1.4462891, 2.9355469, -0.7553711, 1.9580078, -1.3164062, -0.796875, -0.32666016, -2.5039062, -1.6396484, 0.44213867, -0.60595703, 1.2314453, -1.9199219, 0.8652344, 0.20910645, 2.2109375, -0.89746094, -0.4741211, 0.8671875, -0.65527344, 0.0769043, -1.5, 0.7265625, -1.3564453, -2.8085938, 1.5175781, 0.87939453, 0.72509766, -0.9140625, 2.3886719, 0.18518066, -1.5117188, -0.8520508, -1.5634766, 1.2958984, -0.9375, 0.2529297, 3.3457031, 1.5410156, -0.67822266, 0.31030273, -1.640625, -0.9472656, 1.7099609, 2.8359375, 1.0019531, 0.4387207, 0.012748718, -1.1962891, -4.5351562, -2.1816406, -0.8901367, 0.030456543, -0.095703125, -2.5859375, -1.9765625, -0.21850586, 1.3134766, 1.3769531, -0.7373047, 0.7915039, 2.1289062, 1.7490234, 0.18969727, -1.6943359, -0.09875488, 0.41455078, -0.1472168, -1.3681641, 0.081604004, -0.8676758, -2.8828125, 2.0253906, -0.34985352, 2.0097656, 1.5517578, -0.13146973, 1.5244141, 1.8818359, 0.6894531, -2.5429688, 1.2587891, -4.1523438, 0.049804688, 1.2353516, -1.2001953, -0.6425781, 1.7558594, 0.056121826, 1.7441406, -0.6230469, 0.9267578, -1.5888672, -0.04019165, -1.0664062, 1.1455078, -0.36889648, 0.35131836, 1.0195312, 1.0654297, 2.2558594, 3.0234375, -1.2167969, -1.3300781, -2.4941406, -1.0712891, 0.36157227, -1.5615234, 0.7504883, 0.63671875, 2.2382812, -0.16674805, -0.60302734, 0.7192383, -0.62109375, 0.29541016, 2.5527344, 0.77734375, -1.7753906, 3.0878906, -0.8935547, 0.5732422, -2.3242188, -0.6196289, 0.41503906, 2.9882812, 0.8466797, 0.9091797, 1.7021484, -1.2744141, 0.3684082, 1.6826172, 0.3544922, 1.7773438, 2.7265625, -2.9003906, -0.48413086, 1.4863281, 0.9658203, 2.5761719, 1.2949219, 0.40649414, 0.34350586, -0.26171875, 1.3681641, 0.22058105, 1.3935547, -0.69091797, 1.7119141, 0.0206604, -3.1640625, 1.9814453, -1.7060547, 0.8354492, -0.06210327, -0.5073242, -2.4433594, 0.55908203, 0.7260742, -1.640625, 2.1777344, 1.0419922, 0.25317383, -0.82666016, 0.5180664, 1.4121094, -0.85302734, -0.52197266, -0.19763184, 2.2324219, 1.8496094, -1.7773438, -0.3125, 0.47680664, 1.953125, -2.2109375, -0.18041992, -0.8955078, 1.03125, -0.13208008, 0.859375, 2.8398438, 0.5097656, 1.7548828, -0.12573242, 0.97753906, 2.3125, -1.7958984, 1.1220703, -0.1977539, 0.027511597, -0.93310547, -1.6025391, -1.1269531, 0.88427734, 0.10760498, -0.734375, -0.23779297, 1.5439453, -2.140625, 1.5957031, 1.0205078, 0.8588867, -2.3417969, -0.22839355, -3.1523438, 0.09472656, 2.8125, 1.328125, -0.11047363, 1.2119141, 0.61035156, 1.0917969, -0.8520508, 0.23254395, -0.35205078, 0.46069336, -1.5742188, -0.60791016, -0.26489258, 2.25, 0.32373047, 0.7792969, 0.2529297, 0.85839844, 0.31811523, 0.24609375, -0.57714844, -0.5317383, 1.3691406, -0.12915039, 1.5439453, 1.234375, 0.94384766, 2.2539062, 1.8935547, -0.765625, -2.8125, 3.46875, -1.0986328, -0.53759766, -0.09954834, -3.7675781, -1.53125, -0.28564453, -0.8803711, -1.0761719, 0.3864746, 1.1923828, -0.9135742, 1.7099609, 1.171875, 0.9345703, 1.4667969, -0.099609375, -2.4746094, 2.71875, 1.1201172, 2.0429688, 0.7993164, 0.5449219, 1.0185547, 0.8339844, -2.2929688, 4.203125, 0.12988281, 0.38061523, 0.9609375, 2.2324219, 2.0820312, 0.02192688, -0.8618164, -2.2597656, 2.2597656, 1.9257812, -2.1542969, -2.9902344, -2.1386719, -1.2392578, 1.46875, -0.99658203, -0.42041016, -2.4980469, -3.0585938, 0.15441895, -1.6582031, 2.2089844, 0.19494629, -1.8144531, -0.75634766, -0.0680542, -0.7734375, -1.4394531, 1.0351562, 2.2890625, -1.3896484, -1.5273438, 1.1054688, 2.71875, 0.22729492, -1.6074219, 0.3581543, 0.7402344, -0.51708984, -1.0039062, -0.08703613, -0.5463867, 0.5942383, -1.0537109, -1.5439453, -0.007980347, 1.7958984, 0.59033203, -1.15625, -1.0673828, -0.64501953, 0.8828125, 0.23962402, -1.1787109, 1.5234375, 1.7568359, -0.8823242, -0.52978516, -0.6801758, -0.57421875, -1.734375, -0.5878906, 0.3955078, -0.7529297, 0.51171875, 0.7441406, 2.5625, 1.9785156, 0.93652344, 1.4599609, -1.1787109, 0.34277344, 0.5654297, 0.47143555, 0.9765625, -0.18884277, -0.44506836, 0.12915039, 3.8554688, 0.30419922, -0.7392578, 0.4555664, 2.734375, -0.9863281, -0.4140625, -1.1435547, -0.05657959, 0.9301758, -0.8222656, 0.20544434, 0.93847656, 0.42016602, -0.12731934, -3.8808594, -0.043884277]}, "B01N1RO9WG": {"id": "B01N1RO9WG", "original": "Brand: GasOne\nName: Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove\nDescription: \nFeatures: \u2713 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included)\n\u2713 PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame\n\u2713 EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness***\n\u2713 SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism\n\u2713 WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind\n", "embedding": [-2.2714844, -0.35229492, 0.7631836, 0.29003906, -0.82177734, 2.6425781, -0.0056495667, -1.265625, -0.4501953, 1.1816406, 1.0048828, -0.5078125, 0.099487305, -1.5634766, 1.1171875, -0.44628906, 0.95410156, 0.8461914, 0.17260742, 1.8486328, 2.3691406, -0.3203125, 1.7714844, -0.2607422, -0.6582031, 1.5703125, 3.8554688, -4.15625, 0.24853516, -0.99121094, 1.1210938, 1.2626953, -0.16772461, 2.0253906, -3.5039062, -2.1328125, 0.39819336, 0.10870361, -2.3457031, -1.5195312, -2.3261719, -0.74658203, 2.0410156, -0.11273193, -0.6064453, 0.039276123, 0.84277344, 0.3623047, -1.90625, 1.4169922, 1.3173828, 1.2451172, -1.3701172, 1.9980469, -0.5263672, 1.0712891, -0.18652344, -1.0732422, 1.875, 0.70947266, 1.8271484, 1.1318359, -1.0126953, -0.28344727, -1.46875, -0.81347656, -0.017028809, -0.14501953, -2.1875, 0.20703125, 2.7050781, 0.81152344, 0.15209961, 0.95166016, -1.1445312, -1.3955078, -3.2441406, 1.2734375, 1.7988281, -0.66796875, -0.58203125, 0.6333008, 1.2041016, -0.95166016, 0.3359375, 0.4921875, -0.23742676, 0.4633789, 0.085876465, 1.4384766, -2.09375, 1.6552734, -2.0761719, -2.6347656, 2.4433594, 0.18469238, 0.16625977, 1.1552734, 1.0107422, 0.9482422, -1.3222656, 1.21875, 0.46240234, 0.20715332, -1.5800781, -1.9248047, 3.3300781, 0.94384766, -3.7695312, 1.2744141, -2.1523438, -0.953125, 0.68359375, -0.63916016, 0.105773926, 1.4277344, -0.37280273, 0.72998047, 3.8632812, -0.028823853, 2.3378906, -1.5371094, 1.0791016, -1.6074219, 0.734375, 2.3183594, -1.5185547, 0.21398926, 4.6015625, -0.5859375, -0.05456543, 1.2646484, 2.5371094, -2.2597656, -0.51220703, -2.2734375, -1.515625, -2.3164062, -3.3027344, 0.9375, -3.3828125, 1.6865234, 0.1842041, -1.9375, -3.8476562, -1.1308594, -1.296875, 1.640625, 1.1894531, -0.77001953, 1.5507812, -1.9404297, 0.26611328, -2.9238281, 1.7373047, -0.70166016, -0.9824219, -1.1269531, 2.4785156, 1.6914062, -0.703125, -1.453125, -2.6347656, 1.5810547, 0.4086914, -1.1533203, 1.3466797, 1.6728516, -0.7910156, 1.3876953, 1.0771484, -0.6972656, -0.8535156, 0.016555786, -0.013893127, -1.0097656, -1.7138672, 2.1425781, -0.43725586, -0.4494629, -3.2871094, -2.7070312, 1.7070312, 0.2800293, 1.1464844, -1.9404297, 0.8886719, -0.5463867, 0.11016846, -2.0253906, -1.0322266, 1.2441406, 0.6923828, 0.22143555, 1.6591797, -1.5439453, -1.0371094, 0.15637207, -0.13684082, 1.078125, -0.01159668, -1.9121094, 0.5883789, -0.14099121, -2.3261719, -2.3359375, 0.82958984, -2.4570312, 1.6367188, 2.5957031, 1.7128906, 0.60302734, 2.109375, 0.1821289, -1.2958984, -1.9072266, 1.9619141, 2.3261719, 1.5244141, 1.8369141, 0.25708008, -1.9667969, 1.6132812, -0.28515625, -0.3696289, 2.9140625, 1.2617188, 0.18981934, -2.0136719, -3.0917969, 2.578125, 0.6333008, 1.3378906, 0.32861328, -0.5810547, 0.9223633, 1.4169922, -0.7529297, -0.03805542, -0.72558594, -0.56884766, -0.38134766, -0.6015625, -1.3173828, -2.296875, -0.36108398, 0.58984375, 0.18762207, 2.1191406, -0.17114258, -0.011962891, 0.72998047, 0.030334473, 0.9448242, -2.9863281, -0.23278809, 1.3681641, 1.3183594, -0.8676758, 0.19104004, 1.8505859, 1.6767578, 0.47802734, 0.23608398, -0.57421875, -1.5625, 2.1972656, 0.3515625, -1.1464844, 0.7553711, 0.9160156, 0.20422363, 3.3164062, -1.3583984, 1.8164062, 0.9814453, -1.4306641, 3.5820312, 0.6948242, 2.1621094, 1.0068359, -1.7421875, 0.43676758, -2.0019531, 1.7626953, -0.064453125, 3, 0.038360596, -2.6484375, -1.703125, 5.375, -0.95458984, -3.2851562, 1.6279297, -2.0742188, -0.18444824, 1.7763672, 0.34545898, 0.34423828, -1.1621094, 1.2792969, -0.6567383, -0.025146484, 0.9042969, -1.5947266, -0.6977539, -0.27514648, -1.8583984, 1.3632812, 0.7890625, -0.46264648, -0.1116333, -1.4648438, -0.7788086, -3.1152344, -1.0830078, 2.6894531, -1.3427734, 0.81396484, 1.2158203, 1.2265625, 2.5800781, 0.34692383, -2.1328125, 0.018814087, -0.19165039, 0.50634766, 2.0898438, -0.25732422, 0.14038086, -0.74316406, -1.9482422, 0.9277344, -2.2910156, -1.6962891, 0.7651367, -0.796875, -4.75, 1.2568359, -3.6835938, -0.49047852, 1.3701172, -4.109375, 1.2167969, -1.5810547, -3.0351562, -0.19445801, -0.7636719, -1.2910156, -0.78271484, 1.3720703, 2.2246094, 0.5253906, -2.296875, 0.66064453, 0.63671875, 0.14855957, 0.5986328, -0.5463867, 1.1474609, 0.6040039, 0.012016296, -1.9101562, 0.020446777, 0.61865234, -2.2089844, 1.5175781, -5.2578125, -1.0888672, -1.5400391, 0.8774414, 0.89208984, 0.023086548, -2.6289062, -1.5644531, 1.3759766, 1.4375, 2.75, -0.70751953, 2.7421875, -0.89501953, -0.578125, -0.103637695, -2.1953125, -2.8496094, -0.8925781, 0.13793945, -1.8632812, 0.34692383, -2.4453125, 0.9550781, 0.41625977, -0.35180664, -1.3291016, 0.50683594, -0.84277344, 1.1669922, -1.5556641, -0.8535156, 0.20349121, -1.5322266, -0.50390625, -4.2890625, -1.0146484, 0.05328369, -3.1230469, 0.22338867, 1.1513672, 0.6298828, 1.4726562, 0.9790039, 1.2597656, -0.23547363, 0.6010742, -0.23059082, -3.3652344, 2.3398438, 0.11694336, -1.1054688, -0.26367188, -2.2519531, -0.5722656, -1.3925781, -0.7470703, 2.8300781, 0.25683594, 4.3046875, -0.83691406, -1.1220703, 1.3359375, 0.62060547, -0.56396484, -2.3867188, -2.0878906, 3.0332031, -2.6113281, -1.3505859, 2.0722656, 1.7617188, -3.4375, -1.0517578, 1.8320312, 0.5336914, 2.1035156, 1.3769531, -0.5805664, -0.34399414, -0.21704102, 0.6411133, 2.7207031, -0.08843994, 2.5292969, -0.5371094, 1.1083984, -1.7675781, 1.4316406, 2.3984375, 2.1132812, 3.2441406, 1.2587891, 0.76220703, -2.3417969, -0.15344238, -1.2460938, 1.5839844, 1.4179688, 4.234375, 0.22058105, -0.3269043, -1.1425781, -1.4130859, 1.1708984, -1.8144531, 0.36645508, 0.8574219, 0.7602539, -1.0566406, 0.79541016, -1.0332031, -0.19226074, -1.1513672, 1.8417969, 0.11602783, 0.15539551, 2.0292969, -0.6074219, 0.8334961, -2.3867188, 0.7988281, -2.2675781, -0.11663818, 1.6699219, 0.031829834, -3.6328125, -1.0048828, 0.71240234, 0.18078613, 0.6464844, 2.6953125, -0.9941406, -1.7734375, 2.1132812, -0.7866211, -1.3193359, 1.1396484, -0.34423828, -0.07080078, -0.7104492, 1.3935547, -0.76220703, -1.1894531, 1.8193359, -0.026107788, -2.3710938, 3.0605469, -2.6582031, -0.82373047, 1.4433594, -1.9121094, 0.15661621, 1.2978516, -1.6269531, 2.140625, -1.3691406, 4.1484375, -0.9560547, -1.9199219, 2.4921875, -3.046875, -0.8803711, -2.5878906, -4.015625, 1.7929688, -1.234375, 0.23132324, 3.8164062, 0.9038086, 0.73046875, 1.4951172, 0.31152344, -2.0898438, -2.390625, -0.38500977, -0.5888672, -2.4453125, -0.93408203, 0.27612305, 1.3193359, -1.4023438, -0.65234375, 1.5390625, -0.42651367, 0.54003906, 0.50927734, -2.2734375, -0.2388916, -0.4321289, 1.3466797, -0.27075195, -1.5878906, 0.87402344, -2.7832031, 0.15161133, -3.0917969, 1.8857422, 2.3125, -1.6757812, -1.2988281, 3.359375, 2.1171875, -1.3984375, 0.053375244, 1.1865234, 0.62060547, -0.22314453, -2.2929688, -2.0527344, 0.5644531, 0.48168945, -0.17907715, 0.92529297, -3.2265625, -1.4902344, 3.4179688, 1.9277344, 1.4404297, 1.3271484, 1.4570312, -1.7158203, 1.2402344, -1.2324219, -1.8505859, 0.54833984, -0.49609375, 0.26733398, -0.29467773, 0.60253906, -2.5625, 1.4589844, -1.4667969, 0.21228027, -2.9902344, 2.2148438, 0.92578125, 0.25170898, 1.6679688, -0.22631836, -0.93652344, -0.2121582, 1.3505859, -0.76123047, 1.5449219, -0.72753906, -0.056793213, 0.5522461, 1.0986328, -1.671875, -0.9223633, 3.3984375, -0.671875, 0.91259766, -1.2246094, 0.7685547, -1.0097656, -0.5722656, 0.2939453, 0.59472656, 1.4228516, -0.9248047, 0.4038086, -0.052703857, 0.67529297, -2.0839844, -1.1982422, 1.4775391, 0.7348633, -0.1439209, 0.68652344, 0.94140625, -0.55078125, 1.3623047, 0.50878906, 1.7509766, 0.06451416, 0.040008545, 1.2412109, 1.7558594, -2.03125, -1.0205078, 1.84375, 2.6660156, 0.8857422, 3.4394531, 0.45141602, 0.40356445, 0.95996094, -1.0195312, -2.7402344, -0.15734863, -1.015625, -0.6665039, 1.4082031, 0.93310547, -1.8935547, 0.06573486, 3.1308594, -0.18786621, 0.39257812, -0.09979248, -2.0644531, -1.0292969, -4.234375, -0.4609375, -1.2080078, -0.049316406, 0.34765625, -1.5917969, 0.25390625, -0.5390625, 1.4169922, 1.1484375, -0.6933594, 0.031585693, 1.9619141, -1.40625, 1.7441406, -0.19921875, -1.1396484, -2.6933594, 2.7792969, 1.9013672, 0.51171875, 2.0429688, 1.6494141, 0.38061523, -2.3105469, -0.69677734, -1.2773438, 0.06750488, -1.6640625, -1.0507812, 1.7539062, -1.3388672, 0.9379883, -0.49365234, -1.4101562, 0.051849365, 2.1894531, -0.46484375, 1.2451172, -1.9707031, -0.7573242, -1.8300781, -5.3359375, -1.9208984, 1.9082031, -0.80615234, -0.3413086, 0.96240234, -0.24084473, -0.38964844, -0.5522461, 1.0019531, -2.40625, 1.4257812, -1.6972656, 0.48486328, -1.1572266, -0.50146484, -0.039733887, 1.0927734, 1.3251953, -0.7548828, 1.9423828, -1.2060547, -1.2353516, 0.59716797, -0.39794922, 1.0166016, -0.033203125, -1.6162109, -1.9111328, 2.0410156, -0.4309082, -2.8535156, 1.6787109, -0.7368164, -0.035125732, 0.97558594, -0.9013672, 0.76904297, 1.8398438, -0.30517578, 0.76953125, 0.49047852, 0.20349121, -0.89208984, 2.0683594, 1.359375, 0.47460938, -0.6303711, -1.5380859, 1.9726562, 1.0410156, 0.62890625, 1.2089844, -0.8623047, -2.0957031, -1.7871094, -1.2470703, -0.4975586, -0.92871094, -1.1210938, 0.27929688, -0.23791504, 1.0527344, 0.75878906, -0.52734375, -1.0117188, -0.6176758, -0.28051758, 1.2373047, -1.6083984, 3.3144531, 0.3869629, 0.390625, -3.046875, -0.9892578, 2.1210938, 1.0136719, 1.1835938, -0.44750977, 2.2441406, -0.63720703, 1.4755859, -0.6166992, 2.65625, 2.9511719, 1.90625, -1.3144531, 2.7011719, 2.1660156, -0.18273926, 1.1738281, 0.8442383, -0.8847656, -1.4404297, 2.8359375, 0.86865234, -0.6401367, 2.453125, -0.7392578, 1.6044922, -0.5786133, -1.5966797, 0.46606445, -0.66845703, -0.7817383, -1.0605469, -1.6123047, -1.7617188, 0.20397949, 2.1328125, -1.1083984, -0.38427734, 1.9707031, -0.8911133, 0.69921875, 2.2265625, 1.4628906, -2.2460938, 0.93896484, -0.24414062, -1.0966797, 1.3525391, -2.2441406, 0.6933594, 3.0878906, 0.3701172, 0.46972656, 1.9335938, -0.076049805, 2.5234375, 2.3457031, 1.6816406, 1.7099609, 0.99902344, 2.0019531, 1.7421875, 0.29541016, 0.98828125, -0.2578125, 1.3857422, 1.1044922, 1.3681641, -0.66064453, -2.2675781, 1.34375, -0.57373047, -1.6152344, -1.1884766, -0.03375244, 0.86865234, -4.703125, 0.10321045, 0.6166992, -0.11553955, -1.8203125, -0.81884766, -0.6088867, -0.1928711, 0.6772461, 0.046295166, 0.73535156, -1.2939453, -1.3173828, -1.4472656, 0.6850586, 1.9453125, -0.58691406, 1.078125, -1.1826172, -1.7363281, -0.055908203, 1.2744141, -1.0537109, 0.35083008, 0.1394043, 1.5888672, 1.40625, -1.5654297, 0.29296875, -2.2792969, 0.029144287, 1.1347656, 4.7890625, 0.4013672, 0.40942383, 2.0410156, -1.2666016, -2.9121094, -4.6796875, 2.5976562, 0.80859375, 1.4521484, 2.0644531, -2.0351562, 2.3691406, 0.66308594, 0.35009766, -3.5800781, 0.14978027, -0.37231445, 0.875, -0.35327148, 1.9824219, 0.16577148, 3.078125, 0.24023438, -1.375, 0.25317383, 0.27978516, -0.39404297, -1.0546875, -0.2956543, 1.5605469, 1.2939453, -1.1210938, 1.4648438, 0.36083984, -2.7929688, 0.52490234, 1.1015625, 2.2734375, 0.54541016, -0.30932617, -0.82373047, 1.7285156, -0.7348633, 1.4033203, 0.44091797, -1.2304688, -2.3320312, -2.015625, -0.048187256, -1.5361328, -2.6953125, 1.84375, -0.52978516, -1.4121094, -0.23046875, 2.0058594, -1.3955078, -0.4321289, 1.9003906, -0.41918945, 1.5595703, -1.0830078, -0.5673828, -2.1328125, -1.3867188, 0.14013672, -0.49267578, 0.89453125, -0.9951172, 0.011749268, -0.93652344, 0.7104492, 1.4824219, 1.1416016, -0.43945312, -0.0670166, -0.39257812, -0.99316406, 0.46435547, 3.2832031, -1.2597656, 0.29907227, 0.4416504, -1.7998047, -0.89453125, -0.8574219, -0.5683594, 0.3251953, 1.4580078, 0.42358398, 1.6367188, -1.21875, -2.203125, -1.4707031, -2.6074219, 1.5742188, -0.21496582, -1.078125, 1.0849609, 1.9921875, 2.4121094, -0.7578125, 0.30004883, -1.0400391, -0.4099121, 0.8569336, -1.6953125, 1.0048828, 0.53222656, 0.5493164, 0.26660156, 0.8388672, 2.0351562, 0.2055664, 1.3671875, 0.34399414, 1.7246094, -1.4404297, 0.95654297, -2.25, -0.37670898, 1.3320312, -0.8676758, 2.0566406, 1.8798828, -0.89453125, -1.65625, -0.7089844]}, "B0848RWBP7": {"id": "B0848RWBP7", "original": "Brand: GasOne\nName: GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black\nDescription: \nFeatures: \u2713 Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\n\u2713 Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\n\u2713 Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\n\u2713 EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\n\u2713 Safety 1st - top quality propane hose adapter\n", "embedding": [0.64208984, 1.5712891, -0.25390625, 0.9248047, -1.1787109, -2.0039062, 0.53808594, -0.36914062, 0.53808594, 1.2568359, 2.7695312, 1.2675781, 0.6191406, -1.5976562, 0.18725586, -0.8823242, 0.036010742, 0.21655273, 1.6142578, 2.2636719, 3.2265625, 1.6318359, 1.2509766, -1.1914062, 0.34692383, 0.85009766, 2.3398438, -1.9746094, -2.125, 0.9667969, 0.65527344, -0.26538086, -0.86865234, 0.5600586, -0.15478516, -2.0429688, -0.77685547, -0.18774414, -4.5859375, -2.0234375, -1.0966797, 2.8398438, 4.0273438, 0.06933594, -1.5488281, 0.5708008, 1.7548828, 0.3083496, 1.6123047, 0.32666016, -0.021881104, 1.3173828, -0.37817383, -0.12219238, 0.5439453, 0.9428711, 1.7675781, -3.0039062, 0.38305664, 0.93408203, 2.1484375, 0.7392578, -0.8276367, -0.116760254, 0.039367676, 1.0820312, -2.2734375, -0.18725586, -1.2822266, 0.68896484, 0.8598633, 1.4746094, 0.5258789, -1.7333984, -3.7285156, 1.2890625, -4.9140625, 0.1998291, 0.91064453, -0.24194336, -0.9765625, 1.4003906, 0.072509766, -0.5942383, -1.0517578, -0.24353027, -1.25, 2.5996094, 0.47265625, 1.0644531, -3.6835938, 3.0078125, -2.1621094, -2.5371094, -0.026000977, -0.5683594, 0.51708984, 3.1054688, 3.2441406, 0.28222656, -0.7504883, -1.8066406, -1.2128906, 2.7070312, -1.0722656, -1.4101562, -0.46850586, -0.8364258, -1.8125, 1.0136719, -0.6254883, -0.26782227, 2.4550781, -2.0605469, -0.37548828, -3.2636719, 0.96533203, -1.2939453, 2.390625, 0.23046875, 3.7519531, -0.14782715, 1.1259766, -0.3696289, 1.2822266, 0.94189453, -1.3134766, -0.022964478, 1.4189453, -0.40039062, 0.60498047, -0.46289062, 2.5625, -0.12145996, 1.0644531, -2.1914062, -0.6113281, -2.4121094, -0.94189453, -0.9848633, -4.2851562, 0.78125, 0.025863647, -0.22155762, -4.0546875, -0.022155762, -3.0605469, -0.9267578, 1.1542969, -1.9482422, 0.47460938, -3.3222656, -1.8984375, -1.6708984, 2.8730469, 0.65283203, 1.0917969, -1.7080078, 0.84521484, 2.1992188, 0.69921875, 0.42456055, -1.3681641, 1.1962891, -0.8066406, -2.1621094, 2.1933594, 0.6152344, -2.6484375, -0.2854004, 0.2006836, -0.92333984, 1.0820312, 1.0302734, -0.9135742, -1.8017578, 1.0419922, 0.8959961, 1.1015625, 0.56591797, -3.6542969, -2.2324219, -1.0019531, -2.7675781, 1.5693359, -0.65185547, -4.046875, -1.3662109, 0.23876953, -1.0488281, -0.84521484, 0.85791016, -0.35131836, 0.70654297, 0.3479004, -1.40625, -2.7636719, 0.40283203, 0.31591797, 2.2402344, -0.54541016, -0.95410156, 1.4902344, 0.75683594, -1.125, -1.6455078, 3.3027344, -1.2373047, -0.19567871, 1.8291016, -1.8046875, -0.105163574, 2.8496094, -1.1708984, -0.6152344, -1.4082031, 3.046875, 1.7001953, 0.78564453, 0.93066406, -0.9272461, -0.30151367, 1.6777344, -0.1352539, 1.8339844, 0.5341797, -1.6113281, 0.52978516, -2.1953125, -0.20727539, 1.6835938, 2.3007812, 0.7001953, 0.25756836, -0.36083984, 2.3457031, -0.43554688, 0.15283203, 1.1787109, 1.3681641, 2.2636719, 1.2236328, -2.9785156, -1.6611328, -1.8466797, 1.8046875, -1.0117188, 1.8310547, 3.7460938, -0.72314453, 0.25317383, -0.0769043, -1.9775391, -2.125, -2.640625, 0.20593262, 0.48217773, 2.5820312, -0.35327148, -1.6806641, 1.5068359, 0.45166016, 1.3945312, 0.3581543, 1.25, 0.83447266, 1.1777344, -1.6445312, -0.049224854, 1.7246094, -0.52734375, 1.3730469, 1.3183594, -2.578125, 0.53808594, 2.2167969, -1.7304688, 2.2265625, 0.78125, 0.14038086, 2.4824219, -2.9667969, 1.4023438, -3.5644531, 2.0136719, 1.9609375, 2.7324219, 0.52001953, -1.8398438, 1.3935547, 2.7539062, 0.2409668, -1.0117188, 1.7695312, 2.8417969, 1.3623047, 1.0205078, 0.18005371, 0.111083984, -0.4741211, -0.2602539, 0.8129883, -1.0488281, 0.96191406, 3.9941406, 0.61376953, -0.23205566, -0.5961914, 1.5957031, 0.9272461, -0.23449707, -1.0439453, -1.5263672, 0.5253906, -1.6787109, -0.19458008, 2.9453125, -0.8725586, -0.39794922, 2.3652344, 1.7900391, 0.4543457, 2.2636719, -0.8588867, 0.3479004, 2.1171875, -1.3828125, 0.62109375, 1.6123047, 0.57373047, 2.015625, -1.2988281, 1.9902344, -1.5712891, -0.17651367, 2.5761719, -0.62597656, -3.0253906, 1.09375, -1.1416016, -1.3398438, -0.004512787, 0.6040039, 2.7402344, 0.43310547, 1.1396484, -0.75, 0.6455078, -0.28808594, -3.5332031, -0.41064453, 1.8212891, -2.375, -0.81347656, 0.6425781, -0.4765625, -0.08404541, 2.96875, -0.72265625, 0.59228516, 2.2089844, 0.22485352, -1.4570312, -0.26098633, -2.6054688, -1.6738281, 3.328125, -3.3261719, -0.2783203, -1.6923828, 0.034240723, -1.9082031, -2.2460938, -1.3720703, -1.5507812, 0.6870117, -0.19433594, 0.76953125, -0.11126709, 1.2822266, 0.9345703, -1.109375, 1.6220703, -2.2167969, -3.3808594, -1.7011719, -0.36621094, -0.6147461, 0.4104004, -3.3554688, 0.87841797, -0.32592773, -0.67578125, 0.26538086, -0.22033691, -1.5117188, -2.1679688, 3.0390625, -2.0566406, 0.28955078, 2.2441406, -0.1887207, -2.6152344, 0.13000488, 0.42382812, -1.1865234, -0.82666016, -1.4355469, -0.453125, -0.9008789, -2.4472656, 0.47705078, 0.6767578, 0.39672852, -1.109375, -2.0761719, 0.36914062, 2.2734375, -0.8066406, 1.2011719, -1.9404297, -0.018325806, -4.0664062, -1.2802734, 1.8642578, 1.1005859, 3.8320312, 1.5722656, 1.7744141, 0.40161133, 0.61865234, -0.9941406, -0.4958496, -0.9428711, 2.6308594, -1.6835938, -0.83691406, -2.5566406, 2.5449219, -2.9765625, -0.5810547, 0.75683594, -0.53759766, 2.9589844, 0.6279297, 0.54052734, -0.94677734, 0.7583008, 0.7441406, 0.7001953, 1.4775391, 1.7255859, 3.4316406, 0.7114258, -0.22021484, 0.7602539, 0.47509766, 0.40014648, 1.4423828, 0.53125, -1.2978516, -2.8125, 0.3955078, -0.16638184, -0.1973877, 1.1181641, 1.203125, 0.26879883, 1.7519531, -0.05505371, 1.0019531, 1.4677734, -0.38964844, -1.2666016, 0.8564453, 1.4980469, -0.38623047, 1.1347656, -0.3918457, -0.48095703, -0.40673828, 0.39404297, 2.8964844, 0.8540039, 0.14672852, -0.19995117, 2.8808594, -1.4384766, 2.1347656, 0.6044922, 1.3193359, -0.6767578, 0.068847656, -1.6279297, -3.0800781, -1.0019531, -2.5644531, -0.26416016, 3.4550781, 1.6835938, -1.9970703, 0.7050781, 0.20861816, 1.9951172, 1.0820312, -1.4462891, -1.0673828, -2.6152344, -1.8359375, 0.48095703, -0.1619873, 2.0800781, 0.88134766, -2.4277344, -1.3496094, 0.5, 1.6162109, 0.32666016, 0.5463867, -1.1621094, -1.8867188, -2.609375, 1.8173828, -0.6772461, 2.9863281, 0.18395996, 1.4287109, 2.2480469, -2.8183594, -0.4609375, -0.15161133, -3.390625, 0.20910645, -2.3203125, 1.9052734, 3.8066406, 0.2553711, -0.43701172, 0.70654297, 1.7626953, -2.8125, -1.2246094, -0.7265625, 2.1992188, -2.1640625, 0.42895508, 2.1640625, 1.4794922, -2.0039062, -1.2246094, 0.23144531, -1.7998047, -1.7666016, -1.3447266, -1.7753906, 0.050201416, 0.12097168, 0.9741211, -2.0527344, -0.20227051, 1.9697266, -1.4365234, -0.81347656, -2.6738281, 1.3212891, -0.28979492, 0.113220215, 0.6699219, 3.3164062, 2.6835938, -3.0019531, 0.6308594, -1.1601562, 3.0761719, -0.55029297, -1.7128906, -0.7714844, -0.66748047, 0.81103516, -0.73535156, -1.7431641, -1.4541016, -0.12487793, 0.44848633, 1.2666016, 1.9511719, 1.9375, -0.05404663, -2.3378906, 0.70751953, 1.2802734, -1.9794922, -0.89941406, -1.1904297, 0.6904297, -1.8046875, 0.20617676, -2.8828125, -0.26904297, 0.6015625, 0.097473145, -3.0898438, 1.1083984, 0.33862305, 1.3955078, 0.37060547, -0.67285156, -0.0546875, 0.49560547, 3.4863281, -0.051879883, -0.56347656, 0.30908203, -0.3955078, 1.4609375, 2.0917969, 0.56591797, 0.79296875, 0.44995117, -0.5522461, -0.43310547, -0.3010254, 0.6845703, -1.5976562, -1.1884766, -1.0166016, -2.3417969, 5.015625, -1.9658203, 1.1054688, -0.30615234, -1.2363281, -2.5332031, 2.828125, 2.6484375, 0.81933594, 0.056915283, 0.14111328, 2.671875, 2.5351562, 1.4013672, 1.0439453, 0.58935547, -1.0673828, -1.3974609, -0.95166016, 1.4277344, -0.42944336, -0.13452148, 0.17480469, 1.1503906, 3.3613281, 2.1875, 1.6083984, -0.0033950806, 1.3261719, 0.2980957, 0.68115234, -2.0332031, 0.18225098, 0.21313477, 3.7539062, -1.5644531, -2.0078125, 1.1494141, 2.9296875, 0.6459961, 1.4482422, 1.8632812, 0.6069336, -1.2285156, -2.3925781, -1.4746094, -0.8852539, 0.06903076, -1.3671875, -1.7841797, 1.6708984, 0.94433594, 1.9160156, 1.796875, 2.0976562, 0.12005615, -0.50878906, 0.0826416, -2.1523438, -2.1015625, -0.43310547, -3.1386719, 0.5415039, -1.8642578, 2.2832031, 0.91845703, 0.50097656, -0.1907959, -1.6367188, -0.5620117, 1.6210938, 1.3105469, -0.2088623, -0.7392578, 3.7167969, 1.0654297, -0.7392578, -1.9228516, -0.9614258, -0.7866211, 1.0566406, 3.015625, 1.0458984, -1.4414062, -0.79296875, -2.2148438, -5.6875, 0.23583984, 0.9404297, 0.97265625, -0.19372559, -2.3691406, -1.1923828, -0.7324219, -1.2177734, -0.21411133, -2.5429688, 0.5131836, -1.9824219, -0.65283203, 0.9082031, -0.30810547, -0.6245117, 0.20666504, -1.3349609, -1.9628906, -0.112976074, -1.5175781, -2.9667969, -1.3964844, -0.86621094, -1.1552734, -0.15075684, -0.4074707, 0.10986328, 1.4257812, 1.7617188, -2.5722656, 1.7470703, -3.3808594, 0.77001953, 1.3916016, -1.6181641, 0.8095703, 1.5703125, 0.1583252, 1.4833984, 2.9199219, 3.578125, -2.0605469, -1.0634766, 0.027801514, -0.50341797, -0.024490356, 0.69628906, 1.5791016, -0.6870117, -0.11065674, 3.375, 0.21508789, -1.859375, -1.3974609, 0.31420898, 0.8808594, -1.7099609, -0.123291016, 0.9638672, 0.5786133, 1.65625, -1.0351562, 0.46533203, 0.3251953, -0.46289062, 0.15405273, 0.34301758, -2.6953125, 1.2666016, 1.1875, -1.6083984, -4.8671875, -0.13842773, 3.7773438, 1.4765625, -0.41601562, -0.093933105, 0.6425781, -0.7558594, 0.23388672, -0.4345703, 1.7675781, 1.1708984, 1.7871094, -1.6025391, -0.88378906, 2.4589844, -1.375, 0.34228516, -0.25805664, -0.89697266, 0.111572266, -0.39404297, 3.3105469, -2.3964844, -0.9267578, -1.7080078, -0.77197266, -1.8115234, 0.24963379, 0.21911621, -3.0253906, 1.1630859, 0.046569824, -3.2832031, -4.0585938, 2.640625, -0.0758667, -0.045318604, 1.4511719, 2.3378906, -2.0703125, -1.6484375, 0.38842773, 1.34375, 0.15905762, -1.1601562, -1.8095703, 0.22216797, 1.1865234, -2.8808594, 1.7568359, 1.7949219, 1.0576172, -0.19995117, -0.94433594, -0.27539062, 1.5888672, 0.5307617, 2.1894531, 3.6582031, 0.12390137, 1.4892578, 1.2001953, 0.93310547, 1.5341797, -1.4746094, 0.48706055, 0.9321289, 0.22033691, 1.4375, -2.3046875, -0.8959961, -0.8173828, -1.2695312, -1.0117188, 1.3496094, 2.5605469, -4.3867188, 0.036743164, -2.1347656, 0.3425293, -0.328125, 0.28881836, -1.1425781, -0.9604492, 0.22253418, 1.1445312, 1.3339844, 1.3330078, -1.0791016, 0.9145508, -2.2402344, 2.484375, 1.6425781, -0.16418457, -4.4296875, -1.7529297, 1.0957031, 0.64697266, 0.027526855, -0.19824219, 1.1123047, 1.3925781, -0.5883789, 1.1572266, 1.1171875, -0.9433594, 1.3378906, -2.078125, 2.390625, 2.6074219, -0.38378906, 2.6328125, -1.0410156, -0.8564453, -3.8964844, 0.8095703, 0.7416992, -1.4072266, -0.28637695, -2.3007812, 1.1357422, -2.3007812, -0.04510498, -3.3574219, -1.9609375, -0.24938965, -1.6435547, 0.7836914, 0.7636719, -1.578125, 0.78515625, 1.2607422, -1.2294922, 0.06994629, 1.7744141, 0.4140625, 0.57128906, -1.2753906, 0.80322266, 0.5107422, -1.5615234, 2.4921875, -1.7402344, 0.88964844, -1.6582031, 2.6074219, 1.5136719, 0.4140625, 1.6933594, -0.39526367, 0.7626953, -0.19848633, -1.1318359, 0.54541016, -1.5800781, 0.7607422, 0.19836426, -0.6645508, -0.84375, -0.19812012, 2.125, 1.6210938, -2.9277344, 0.2286377, 0.6645508, -2.1582031, 1.8076172, 1.6113281, -1.3212891, -0.64746094, 0.23583984, 0.34350586, -3.6289062, 1.3955078, -0.58740234, -0.0065345764, -2.234375, -1.1679688, -1.3603516, -0.31347656, -1.1875, -0.5498047, 0.22924805, -0.6748047, -0.52978516, -0.0552063, -1.1416016, 1.1132812, 0.6376953, -0.37841797, 1.4189453, -0.7163086, -0.93847656, 0.93408203, -1.4257812, 0.30493164, 1.5966797, 2.3378906, 2.2675781, 1.90625, -1.1347656, -1.5087891, -0.69873047, -2.6445312, 0.7114258, 0.0892334, -2.4023438, 0.83203125, 2.09375, 2.8808594, -2.3652344, -0.9589844, -0.9169922, 1.3222656, 1.5263672, -2.4960938, 1.6386719, -0.1776123, -0.07397461, 0.84521484, 4.7929688, 3.2460938, -1.0361328, -1.1796875, -0.2006836, -2.2929688, -2.1621094, -0.21386719, 0.09490967, -0.87646484, 1.0302734, 2.2871094, 3.4023438, -0.4819336, -0.74121094, -1.1308594, 0.83154297]}, "B083G4SNQX": {"id": "B083G4SNQX", "original": "Brand: ORIENT FAMULAY\nName: 58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black\nDescription: ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

Features:
-Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
-Ccomes with a storage zipper bag. So it is very easy to fold when you don't need it
-Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
-With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

Care and Use:
1. Allow grill to cool before covering.
2. The water repellent finish enables stain-preventing and easy cleaning
3. Dry up the cover in the sun for next use or storage it to the bag

What you could get?
1 x 58inch grill cover
1 x Storage bag
Lifetime Product guarantee\nFeatures: \u3010WIDE COMPATIBILITY\u3011The bbq cover measures 58\"L x 24\"W x 46\"H inch, Check your grill's dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss\n\u3010Rip Resistant & UV Protection\u3011: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly.\n\u3010PORTABLE & CONVENIENCE\u3011The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle\n\u3010LIGHTWEIGHT BUT DURABLE MATERIAL\u3011:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new\n\u3010LIFETIME REPLACEMENT\u3011Any issues with the ripping or fading, please contact us and we'll make this right and give you the satisfied answer!\n", "embedding": [0.17089844, 2.1660156, 3.53125, -1.125, 0.2331543, 1.3798828, 0.40478516, -2.5664062, 1.4755859, 2.2597656, -0.55810547, -1.4326172, 1.0058594, -5.0390625, 1.2822266, 1.2236328, 0.70947266, 2.4726562, 3.0273438, -1.5800781, 1.3623047, 0.66308594, 0.72314453, 0.5996094, -0.079711914, -0.46020508, 4.421875, -3.0859375, -1.2539062, -1.8525391, 1.6630859, 0.3330078, 0.034362793, 1.8056641, -2.7128906, -1.5673828, -0.51660156, 0.99902344, 0.03488159, -1.1240234, -0.63623047, -2.5234375, 3.1054688, 1.1757812, -1.9707031, 1.3134766, -2.5644531, -1.0712891, -0.72265625, -2.515625, 1.3193359, 1.6914062, 2.8613281, 0.80371094, -2.7265625, 3.15625, 0.4333496, -1.3515625, -0.36816406, -0.31689453, 1.2939453, -0.5083008, -0.703125, 2.15625, -1.5517578, -1.7666016, 0.7607422, -0.48046875, 0.9770508, 0.5229492, 2.0273438, 0.23254395, -0.85546875, 0.4404297, 2.015625, -0.7128906, -1.6132812, 2.4589844, 2.1328125, -0.5185547, -0.9970703, 5, 0.3190918, -1.9755859, -0.86865234, -0.22424316, -2.0683594, -1.8681641, 2.3457031, 0.02330017, 0.40478516, 2.3496094, -1.8291016, -3.9238281, 1.9199219, -3.3632812, 3.5097656, 0.9477539, 1.1962891, 0.13378906, -1.3554688, 0.74072266, -2.0273438, 0.34814453, -3.9648438, -2.4042969, 1.6074219, -0.3239746, -0.064331055, 0.16186523, -0.9506836, -0.4411621, -0.43359375, 0.6196289, 2.2597656, 0.8310547, -0.9067383, 2.0976562, 0.3791504, 1.5556641, 2.8320312, 0.14562988, -0.47680664, -1.4785156, -0.18615723, -0.38354492, -0.72265625, 0.40722656, 3.2128906, -1.0810547, 1.0527344, -0.99072266, 2.0507812, 1.6523438, -1.1621094, -0.6245117, -2.1308594, -1.5400391, -4.2304688, 1.8066406, -2.65625, -2.0058594, 1.2167969, -2.9746094, -2.0664062, 0.36450195, -1.6503906, 3.015625, -1.8916016, -3.7167969, 1.3369141, -1.9677734, 0.11187744, -1.3349609, 0.80322266, -1.5615234, 1.3095703, -3.7246094, 3.3339844, 2.0585938, 3.1269531, -1.7597656, 1.4736328, 1.0556641, 1.4619141, -2.1132812, 0.3395996, 0.6279297, 0.5229492, 2.296875, 0.7109375, -1.3525391, 0.7314453, 1.1806641, 1.5605469, -1.2119141, -0.21008301, 1.2392578, 0.5229492, 0.9746094, -0.57128906, -2.6679688, -0.5058594, 1.03125, -1.4033203, -1.0693359, -0.037322998, 0.3088379, 1.1982422, -0.63671875, -1.2060547, 0.81347656, -1.1484375, -0.049621582, -2.4785156, -1.2158203, -1.2431641, -0.71191406, -1.171875, -0.20385742, -1.6113281, -2, -1.2060547, -0.15075684, -3.0332031, -2.6289062, -2.0996094, -0.018325806, 0.5732422, 1.5888672, 0.8100586, -2.8691406, 3.7734375, 1.3876953, -0.2722168, -0.27783203, 1.6396484, -1.0625, 1.4414062, 1.1621094, -1.5039062, -0.609375, 1.1318359, 4.3320312, -0.48339844, 2.0820312, 1.9697266, 0.33007812, -1.4853516, -1.9677734, 1.3544922, 0.17993164, -0.32080078, -0.5341797, -1.0419922, 0.87841797, 0.3647461, -1.2382812, 0.34155273, -0.62353516, -1.6630859, -2.3984375, -3.8886719, -1.7509766, 0.66845703, 1.8300781, -1.0126953, 1.7851562, 0.87597656, -1.0283203, 0.5073242, 0.5029297, 1.0888672, -0.60253906, 0.6171875, 0.68115234, 0.93896484, 0.49194336, -1.6357422, -0.9370117, 0.7866211, -0.64697266, -1.0566406, 1.7773438, -0.78222656, -1.0898438, 1.0488281, 1.1679688, -1.7871094, -2.1445312, 1.8867188, -0.7314453, 0.07659912, -1.4414062, 1.2958984, -0.006511688, 0.6357422, 1.1289062, 0.8276367, -0.6245117, 0.52001953, 0.8935547, 1.0654297, -2.0761719, 0.3503418, 0.22131348, 0.4946289, -1.0996094, -0.54541016, 0.01020813, 3.9394531, 0.390625, -1.4433594, 4.5742188, -0.5415039, 0.086242676, 2.3535156, -1.0361328, -1.1669922, 1.7363281, 0.6113281, 1.0429688, -0.63183594, 0.6948242, -1.2324219, -1.4677734, 1.4560547, -2.6523438, -2.1855469, 1.5556641, 0.59033203, 1.0761719, -0.049316406, 0.9379883, -2.1972656, -1.7548828, 1.9453125, -2.3027344, -0.015792847, 0.61816406, 0.11895752, 1.9121094, -1.7216797, -1.4267578, -0.60546875, -0.72558594, -1.671875, -0.2220459, 0.39941406, -0.3022461, -1.1279297, -0.984375, 0.71777344, -1.8466797, -1.2226562, -3.6015625, -3.1640625, -1.2558594, -0.67626953, -2.2695312, 0.1385498, -0.5019531, -3.0253906, 1.0888672, 0.6308594, -3.0507812, -1.8378906, 0.30517578, -1.1816406, 2.2265625, -1.0566406, 0.044311523, 0.4638672, -4.4648438, 1.3466797, -0.5649414, -1.3632812, -0.21240234, -1.0205078, 0.50878906, 0.1505127, 0.7089844, -0.20275879, 0.8623047, 1.4365234, 0.30200195, 0.012268066, -2.8515625, -0.27416992, -2.5488281, 0.8339844, -2.0136719, -0.08502197, -4.1875, -1.3212891, -0.3798828, -1.5898438, 3.5214844, -0.051574707, 0.5913086, -1.3857422, -1.1972656, 0.21618652, 0.17675781, -2.0976562, 0.6640625, 1.2314453, -0.7993164, -1.0908203, -3.0097656, -2.3222656, -1.0380859, -1.484375, 0.26367188, -0.6274414, -0.90722656, 1.9560547, -3.8925781, -1.5615234, -1.8632812, 1.1943359, -0.41503906, -0.6879883, -1.8535156, -4.2421875, -2.3222656, -0.4987793, -1.9892578, 2.1875, -2.3398438, 0.6308594, 1.4931641, -0.32299805, 3.6542969, -0.19055176, -3.6035156, 1.5771484, 1.8193359, -0.07305908, 2.9296875, -0.03604126, -1.1181641, -0.9121094, 0.42041016, 2.4472656, 0.7714844, 0.6669922, 2.3359375, 0.23986816, 0.86572266, -0.02722168, 1.0947266, -0.31396484, 0.78808594, 2.4296875, -1.0800781, -0.78759766, 0.72802734, 1.3066406, -1.8271484, -0.23181152, 3.6621094, 0.27075195, 0.34960938, 1.3251953, 0.35913086, 0.8022461, -0.31298828, 1.7978516, -0.064697266, 3.4101562, 0.43603516, -0.0579834, 0.7294922, -1.5810547, 2.2460938, 2.1386719, 0.4008789, 1.2578125, 1.2607422, 0.3256836, -0.30371094, 0.2841797, 0.8671875, 1.1464844, -1.2695312, 1.9931641, -1.0615234, 0.43359375, 1.9833984, -2.0136719, 1.2607422, -1.1074219, -0.5161133, 1.7382812, -1.0605469, 0.3708496, -0.42895508, -0.18933105, -0.9897461, -2.4160156, 0.060180664, -2.6660156, -0.6616211, 0.54345703, -3.4648438, -2.1210938, -1.3173828, 1.7255859, 0.4868164, -1.9121094, -0.2722168, 1.7265625, -1.5791016, -2.0683594, 2.0585938, 2.3125, -1.1005859, 1.9003906, 3.5136719, -0.9785156, 2.1777344, -3.3925781, 1.4619141, -0.115356445, -0.7158203, -0.4260254, 0.8354492, -0.18395996, -0.26586914, 1.7539062, 1.2441406, 2.0546875, -0.92578125, 0.31445312, -2.3691406, 0.36254883, 1.5097656, -0.40527344, -0.8046875, 1.8144531, 1.4667969, 1.0869141, 0.19848633, 2.6972656, -0.17407227, -1.6650391, 1.8242188, -2.5039062, -0.016357422, 0.022125244, -4.2695312, -0.32641602, -0.46728516, -1.7382812, 2.1914062, 0.5366211, 0.46020508, 1.6474609, 0.14233398, -0.63427734, -0.20800781, -2.6152344, -1.3994141, -0.5097656, -1.1552734, 2.3496094, -0.39892578, -2.0585938, -1.5859375, -1.6972656, -1.8916016, 1.125, 0.9746094, -1.1591797, 0.39135742, -1.96875, 0.3359375, -1.6591797, -0.01727295, 0.12805176, -0.15649414, -0.97021484, -0.35913086, 0.65283203, 0.19812012, 0.35888672, 0.5673828, 1.2080078, -0.8540039, -0.80126953, -0.8613281, 2.2871094, 3.1289062, -0.96777344, -4.0585938, -0.8520508, 1.0488281, 0.9243164, -0.13464355, -0.08911133, -0.8442383, -1.0263672, -0.37280273, 1.0693359, 2.5898438, 0.68115234, -1.3681641, -2.5, 0.5263672, -2.0585938, -2.1933594, -0.77441406, 0.29858398, 0.44018555, 1.2685547, -2.5175781, -3.0878906, 2.25, -0.8173828, 0.006351471, -2.0527344, 5.0625, 2.6015625, 2.1542969, 2.9082031, -2.1328125, 1.8134766, 0.85009766, -1.7666016, -0.41430664, 0.8857422, -0.640625, 1.0957031, 1.2900391, 0.35839844, -2.3535156, -1.0322266, 0.041534424, -1.1289062, -0.35791016, -2.2382812, 2.4960938, -0.9482422, 0.6489258, 0.89453125, -2.1269531, 3.609375, -0.5966797, -0.2487793, 2.2871094, -1.2753906, 0.23095703, 0.89697266, 1.5576172, -1.2119141, 0.19384766, 1.2802734, 0.1685791, -0.81152344, -1.3037109, -0.47851562, 1.4951172, -0.9555664, -0.32373047, 0.2890625, 1.3925781, -2, -1.1455078, 2.9023438, 2.4199219, -0.3161621, 1.2128906, 0.44091797, -1.4296875, 1.6523438, 1.4462891, -1.6816406, -0.016448975, -0.6508789, -0.080200195, 1.9824219, -0.31323242, -3.1738281, -0.6386719, 0.23852539, -0.63623047, 2.3457031, -1.2734375, -1.6464844, 2.5332031, -1.8554688, -0.6660156, 0.15539551, 0.3425293, -0.45043945, -0.1508789, 2.2304688, -1.1865234, 0.90527344, 3.4101562, -0.67822266, -4.03125, 2.5097656, -0.6352539, -0.35668945, -1.0175781, -1.1064453, -1.9804688, -0.36669922, 2.9921875, 1.5898438, 1.8291016, 0.29467773, 1.8994141, -1.4775391, 0.20251465, -0.3630371, 2.6796875, -1.8037109, -0.41577148, 2.2070312, -1.9365234, -0.5605469, -2.1210938, 0.5600586, 0.8852539, 2.0292969, 1.5517578, 0.7783203, -0.003894806, -1.1650391, -3.2070312, -2.8007812, -2.1914062, 1.3476562, -1.4169922, 1.4482422, -0.009063721, 0.7558594, 0.42944336, -0.2322998, 0.095214844, -1.2851562, -0.11590576, -1.3896484, -2.1816406, -1.1630859, -1.2021484, -0.4921875, 0.68115234, 0.5756836, 2.2070312, -0.045928955, -3.4746094, -0.5073242, 1.5390625, -3.8242188, -2.1152344, 2.1015625, 0.0008955002, 1.8886719, 0.6357422, 0.60302734, 0.87109375, 3.0839844, -1.2441406, 0.25805664, 2.4863281, -1.15625, 1.4873047, -0.71972656, -1.8193359, 1.3515625, -2.2558594, 0.70458984, 0.5595703, -0.6977539, 1.1572266, 2.2285156, -0.6508789, -1.4189453, 0.7788086, 0.99121094, 2.0390625, 0.4116211, -1.1669922, 0.44750977, -0.9926758, -2.7773438, 0.7373047, -2.0332031, -1.6962891, -2.8066406, -0.40844727, 2.1933594, 1.0195312, 2.015625, 1.3916016, 2.1328125, -1.734375, 0.54248047, 0.24182129, 3.2851562, 1.7724609, -2.9707031, 0.016525269, -1.84375, 0.8676758, 1.4160156, -0.47851562, -0.23474121, -0.45361328, -0.6230469, 0.111572266, 1.1972656, 1.3535156, 2.3105469, 0.27856445, 0.32202148, 1.1308594, 2.5703125, -0.6899414, 1.9599609, -0.44702148, 1.6826172, -1.7021484, 3.3652344, 0.76953125, -3.8691406, -0.28686523, -1.4833984, 0.84765625, 0.79003906, -1.9638672, -0.8256836, -2.4902344, -1.9121094, -2.9101562, -1.2607422, -4.59375, 1.3037109, 0.3269043, -0.70996094, -0.37182617, 1.8427734, 0.27563477, 3.5273438, 2.265625, 0.3466797, -0.91845703, 0.03265381, -1.59375, -0.7871094, 0.5029297, -2.84375, 1.2636719, -0.45996094, 0.16369629, -1.6025391, 1.5351562, 1.0878906, 1.4013672, 0.8676758, 2.5683594, 1.8388672, 1.2216797, 2.3476562, 0.62353516, 1.8955078, 1.2919922, -1.2148438, 0.7998047, 1.8525391, 2.1210938, 3.3164062, -1.0810547, -0.4345703, 1.7763672, -1.0996094, -0.51660156, -0.2298584, 1.4882812, -3.4941406, -0.014213562, 0.31567383, -0.53759766, -0.066589355, 0.94921875, -0.9482422, -1.3212891, 0.14624023, 0.19421387, 4.234375, -0.93847656, 1.6240234, 0.23132324, 1.6914062, 1.8193359, -3.3730469, 2.0195312, 2.8867188, -1.7451172, -1.6005859, 1.7138672, 1.5273438, 2.96875, -0.39941406, 1.6523438, 1.8300781, 2.2539062, 1.2373047, -1.3642578, 0.7861328, -0.1381836, 1.4541016, 0.9482422, -2.6210938, -1.3447266, -0.15112305, -2.28125, -2.8515625, 2.5195312, 1.3525391, 1.4511719, 2.0390625, -4.109375, 2.0273438, 0.31445312, 1.8535156, -1.5449219, 0.39453125, -0.88964844, -0.8828125, -1.1689453, 0.6748047, -1.6328125, 2.2460938, 0.94628906, -0.32617188, 2.6269531, 1.3447266, 1.75, 1.1337891, 0.8955078, 0.9116211, 0.5410156, 0.13952637, 1.5732422, 2.2246094, -0.8876953, 0.203125, 1.7617188, -0.050079346, 1.7861328, 2.5039062, -0.41479492, 0.8901367, 3.1875, 0.44970703, 2.1367188, -1.0146484, -0.67333984, -1.765625, 1.2275391, -1.1621094, -2.5546875, 1.4277344, 2.3496094, 0.22998047, 0.5463867, 1.4433594, -0.34106445, 3.4980469, 1.6962891, -0.5698242, -0.77734375, -0.54589844, 0.9628906, -0.9770508, -0.23168945, -1.9990234, 0.2854004, 0.66259766, -0.5966797, -0.13000488, 0.1776123, -0.32202148, -0.29125977, 1.6640625, -1.7636719, -0.69970703, 0.066711426, 0.4362793, -1.0654297, 2.3242188, 1.0859375, -0.98828125, -1.3886719, -0.9765625, 0.16235352, -2.09375, -2.9238281, 1.8662109, 3.0878906, 2.2929688, -2.4511719, -0.51123047, -3.2597656, -1.03125, -0.5888672, 1.8183594, 0.20996094, -0.70654297, -0.40356445, -0.4807129, 3.4921875, 0.079956055, -0.9638672, -0.5678711, -0.3256836, 2.3007812, 0.56689453, -0.12756348, -0.122924805, 1.3720703, 1.2597656, 2.1210938, 3.8789062, 0.24279785, 1.4433594, 2.4941406, -0.43847656, -2.7089844, 0.07330322, -0.117370605, 2.0195312, 0.28759766, 1.359375, 1.3496094, -0.4650879, -0.35351562, -0.014762878, -1.5664062]}, "B07Y5RY59R": {"id": "B07Y5RY59R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L75000 32\" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface.\nComponent package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nBest of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "embedding": [-0.05947876, 0.35888672, 1.0976562, -0.51660156, 0.19567871, 1.0166016, 2.359375, -1.3525391, -0.26367188, 1.2197266, -0.1182251, -0.78466797, -2.0253906, -2.8847656, -0.10321045, -0.9902344, 0.49438477, 1.1884766, 1.4726562, -1.3330078, -1.0673828, 0.61621094, 3.3554688, -0.53808594, -0.02482605, 0.50390625, 4.0898438, -3.4902344, 0.17553711, 0.54003906, 2.2402344, 0.6274414, -1.1005859, 2.4453125, -3.4023438, -1.7587891, 0.12084961, 1.9873047, -2.6289062, 0.31762695, 1.1044922, -0.06274414, 0.5883789, 0.40356445, -1.4238281, -0.3930664, -0.88623047, 1.2744141, -3.3554688, -1.1953125, 2.6640625, 1.2246094, -1.1064453, -0.008613586, -2.7382812, 2.4863281, 2.390625, -0.49926758, 1.2509766, -0.2163086, 2.4296875, 1.0966797, -0.5883789, -1.1767578, -1.3613281, -1.0810547, -0.6196289, -1.0224609, 0.609375, 0.05239868, 4.1132812, 1.6298828, -2.0117188, -0.3330078, -0.12756348, -1.171875, -3.375, 1.7832031, 0.52734375, -0.10461426, 0.15551758, 3.7773438, 2.609375, -3.359375, 0.34814453, 0.93066406, -1.9492188, -1.0771484, 1.75, -1.7460938, 0.1809082, 3.0683594, -2.078125, -3.3671875, 3.5292969, -0.17590332, 0.028747559, 1.4882812, -1.8203125, 1.1806641, 0.30371094, 0.96484375, -0.15905762, -0.21594238, 0.12335205, -2.4628906, 0.2265625, 0.87109375, -2.4511719, 0.36547852, -3.3105469, -2.015625, 2.1992188, 1.9882812, 1.5527344, 1.953125, 0.18859863, 1.2910156, 1.0107422, 1.1113281, 2.4511719, -1.6972656, 0.021865845, -0.16308594, 0.23303223, -1.7197266, -2.0019531, 2.5898438, 3.7910156, -2.2851562, -1.4853516, -1.7773438, 2.6015625, -0.20178223, -0.26489258, -1.3691406, -1.6621094, -0.41186523, -3.2929688, 1.2373047, 0.3527832, 1.1337891, 2.2675781, -1.2919922, -4.3671875, -0.8935547, -1.5703125, 1.1230469, 0.17175293, -3.8828125, -0.19104004, -1.6689453, 1.7041016, -2.6933594, 1.2890625, -1.1699219, -1.5507812, -1.1757812, 1.4375, -0.0473938, -0.0069389343, -2.5839844, -1.1601562, 0.80322266, -1.9492188, -2.0878906, -1.15625, 1.7744141, 1.0546875, 1.7578125, 0.4116211, -1.0517578, 0.3232422, -0.59375, 0.40576172, -0.7290039, -1.6269531, 0.60058594, 0.8149414, -0.9448242, 0.123291016, -3.2988281, -0.7973633, 0.35839844, -0.43652344, -0.26513672, 3.4980469, -0.31933594, 0.7998047, -0.1373291, 0.7993164, -1.2773438, -0.7207031, 0.33251953, -0.16625977, -0.6591797, -1.8886719, -0.57470703, 2.09375, -1.2011719, -0.41552734, 0.53027344, 0.4230957, 0.73291016, -2.9707031, -3.2539062, -2.921875, -2.1445312, 2.6015625, 0.3720703, 1.4580078, -1.5507812, 2.2714844, -0.37304688, -0.42993164, -2.9765625, 0.09283447, -1.1132812, 1.5605469, 2.3027344, 1.0009766, -1.2353516, -0.4987793, 3.6542969, -0.6586914, 1.3564453, 0.32592773, 0.8022461, -2.0703125, 0.05444336, 2.09375, 0.24743652, 1.0087891, 0.48779297, -1.1220703, 0.97314453, 0.7763672, -2.5722656, 0.017028809, 1.0332031, 0.13598633, -0.29052734, -0.89404297, 0.15356445, -0.70996094, 0.33007812, -1.5810547, 3.0058594, 2.8867188, 0.9350586, -0.26391602, -1.046875, 0.67285156, 1.546875, -0.70703125, 1.1826172, -0.47973633, 1.1621094, -0.5410156, 0.55859375, 1.3994141, -1.9921875, 1.953125, 0.9345703, 0.0262146, -2.3339844, 2.0878906, 0.10296631, -0.6513672, -2.3984375, -0.5913086, -0.5488281, 1.8857422, -1.0800781, 3.1464844, 1.0742188, 0.58984375, 1.921875, -0.5107422, 1.8457031, -0.5957031, 0.35107422, 1.6533203, -3.109375, -1.5722656, 1.0292969, -0.20666504, -0.5698242, -0.3022461, 2.4570312, 4.7304688, -0.21533203, -3.2128906, 2.7050781, -0.5102539, -0.09039307, 0.7167969, -1.4042969, 0.609375, 1.4990234, 1.0429688, -0.3071289, 2.1171875, 2.2421875, -1.0830078, -0.051116943, 0.59716797, -2.9003906, -0.61376953, 1.1210938, -0.35131836, -1.1181641, 0.5024414, 1.8759766, -1.4550781, 0.2602539, 2.8164062, -2.6777344, 2.3066406, 0.55029297, 1.5546875, 2.5449219, 0.010025024, -2.0371094, -0.99609375, 0.10406494, -1.3837891, 0.009147644, -0.7270508, -0.87939453, 0.9609375, -0.2524414, 1.0400391, -0.69384766, -1.4238281, 0.038848877, -1.0322266, -0.43530273, -0.4182129, 0.038360596, 0.34521484, 1.2314453, -1.2607422, 0.105773926, -0.9716797, -3.8027344, -2.2304688, -0.7167969, -0.24743652, 3.078125, -1.2919922, -0.55859375, -0.19140625, -4.1015625, 0.17370605, -0.87109375, 0.7402344, 0.18127441, -0.86376953, -2.5039062, 0.5839844, -0.41455078, -0.34326172, 2.0371094, 0.7602539, 0.07098389, 1.6083984, -3.0136719, 0.37670898, -4.2734375, 0.34204102, 0.8017578, 1.8222656, -2.2636719, -1.3154297, -2.0839844, -1.8779297, 3.9765625, -0.5317383, 1.8310547, 0.8120117, 0.3166504, 1.7744141, -2.6328125, -2.1855469, -0.49609375, 0.6401367, -0.6166992, -0.7519531, -3.0742188, 1.9619141, -2.2792969, -0.24365234, -1.8681641, 1.46875, -1.7880859, 3.1621094, -1.9072266, 1.0068359, 2.2617188, 0.62158203, -1.3212891, 0.45581055, -2.1015625, -0.2154541, -1.6806641, 0.22595215, -1.7910156, 1.9716797, -1.4257812, -0.4189453, -0.54785156, 0.39404297, -0.82373047, -0.81933594, -2.9765625, 4.0898438, 1.7734375, -1.1259766, 2.15625, -0.46240234, -1.2236328, -3.7929688, 1.5507812, 2.0742188, 1.8427734, 1.5722656, -0.86572266, -0.2927246, 0.8457031, -0.15441895, 1.3076172, 1.1953125, 0.7294922, 3.3476562, -0.5957031, -0.90527344, -0.16259766, 0.49145508, -3.2910156, -1.2382812, 2.3242188, 1.1669922, 2.8203125, 1.1474609, 4.1484375, 0.7685547, -2.3964844, 1.3886719, -1.8193359, 1.4755859, -1.2851562, 0.734375, 0.6635742, -2.2558594, 2.0058594, 1.9501953, 0.2919922, 1.5488281, 1.6376953, 1.1201172, 0.9921875, 0.94628906, -0.75146484, 1.7910156, -2.4296875, 1.9433594, -1.2392578, 0.8574219, 0.30639648, -1.0576172, -1.3007812, -1.5234375, -1.6103516, 2.671875, 0.22131348, 1.8105469, 1.1025391, -0.75146484, 1.3623047, -1.6660156, -0.4567871, -2.0097656, -0.9121094, -0.052856445, -0.30639648, -1.4511719, -0.8613281, 1.4277344, -0.32104492, -1.6347656, -0.9399414, 3.5234375, 0.6582031, -2.0566406, 2.6640625, -1.2060547, -2.2226562, 3.8925781, -1.1953125, -1.8691406, 0.87939453, -0.8774414, 2.7871094, 0.22924805, -0.7573242, -0.5678711, -2.8300781, 0.69091797, -0.6948242, -0.17260742, 1.3974609, -0.022460938, -0.72509766, 0.44335938, -1.0458984, -0.32543945, -1.4570312, -1.5263672, -2.46875, 1.3779297, 1.5537109, 2.3261719, 0.78808594, 3.7246094, -1.6337891, 1.0361328, 2.2207031, -2.0742188, 0.64746094, -3.2910156, -1.9716797, 0.9975586, -1.2548828, -2.1796875, 2.6894531, -0.33618164, 0.35888672, 2.28125, -0.9916992, -1.5039062, -1.0361328, -0.35180664, 0.88671875, -0.99853516, 0.6352539, -2.1425781, 0.6401367, -0.24768066, -1.1894531, -1.4550781, -0.9848633, 0.5234375, 1.8457031, -3.6054688, 1.6601562, -1.5693359, -1.0410156, -1.8261719, -2.1289062, 1.7949219, -1.0498047, 0.35498047, -2.2441406, 1.3818359, 0.77490234, -1.6201172, 2.5605469, 2.7363281, 0.20288086, -0.7265625, -0.09448242, 1.1103516, 3.0488281, 1.0830078, -1.9736328, -3.2617188, 1.3925781, -0.072265625, -1.6240234, -0.3330078, -0.87060547, -1.3847656, -0.4814453, 1.8779297, 0.37329102, 0.85839844, -0.3786621, -1.7226562, -0.5102539, 0.6254883, -1.6972656, -1.8779297, -0.16955566, 0.3095703, -0.9003906, 1.9541016, -0.5283203, 0.9589844, 0.7871094, 0.070251465, -1.0771484, 1.0498047, 0.29736328, 1.6416016, 3.1230469, 1.4912109, 0.73779297, 0.90966797, -1.3066406, -0.86328125, 1.1816406, -1.0800781, 0.4580078, -0.019714355, 0.5678711, -2.0488281, -0.7446289, 0.9926758, -2.4882812, -0.7324219, -0.4921875, -0.107910156, -1.5273438, -1.7353516, 0.5307617, -1.8818359, 2.0390625, -0.6352539, 0.06555176, 1.1894531, 1.9541016, 0.2043457, 1.3701172, 0.10321045, -0.26904297, -0.8881836, 2.0839844, 1.7294922, -0.2668457, 0.8652344, -1.0507812, 1.4072266, -0.5776367, 0.0009074211, 0.44140625, -0.43237305, -1.5185547, -2.4179688, 2.5820312, 2.1464844, -0.92089844, 2.2285156, 0.26171875, -1.9042969, 0.31274414, 0.11315918, -3.8613281, -0.09631348, 0.18029785, 0.4741211, 0.91503906, 1.4462891, -3.65625, -1.2021484, 2.0078125, -1.4033203, 1.5625, 1.7050781, -0.4050293, -0.084350586, -1.7353516, -0.98779297, -1.5029297, -0.8852539, 0.17675781, -0.87646484, -0.3334961, -3.4257812, 0.56103516, 1.7929688, 0.14038086, -0.9785156, 1.8818359, 0.6489258, 0.46655273, -1.5585938, 1.2587891, 0.3996582, 0.5185547, 1.6376953, 2.3164062, 0.25317383, -0.26367188, 1.9960938, -2.7539062, 0.7128906, -2.6523438, 3.6855469, -1.3730469, -0.019424438, 0.63378906, -2.5761719, 0.7636719, -3.4238281, 0.36816406, -0.7109375, 2.8925781, 0.55371094, -0.1796875, -1.7451172, 2.2128906, -0.2758789, -3.6835938, -2.8359375, -1.1572266, 2.3164062, -2.0253906, 0.2010498, -2.7636719, 1.7832031, -0.07543945, 0.41601562, -1.0351562, 0.043304443, -3.0761719, -1.6835938, -1.4570312, 0.27392578, -0.14550781, 0.1907959, 1.7373047, -0.071899414, 3.0371094, -3.5449219, -2.3300781, 1.4589844, -0.5058594, -0.5107422, 3.6699219, 1.9960938, 0.87109375, 0.59765625, 0.7524414, -3.2519531, 0.9975586, -1.8320312, -0.8442383, 1.7353516, -0.93896484, 0.34936523, 0.13757324, -4.2148438, 0.40600586, -0.30541992, 0.5917969, -1.3916016, -0.72509766, -1.4121094, 0.4008789, 0.4423828, -1.2119141, 1.1132812, 1.1142578, 0.12963867, 1.2587891, -0.82128906, -1.2236328, -1.1904297, -2.0195312, 0.9814453, -4.9804688, -0.15759277, -0.035095215, 1.4648438, 1.5898438, 0.41357422, 0.21691895, 2.7910156, -0.036102295, 0.62158203, 0.8496094, -1.9970703, 2.9101562, 2, -0.14001465, 0.028671265, -2.375, 0.44726562, 2.5332031, 0.64160156, -0.61865234, 0.17102051, -0.9580078, -1.1904297, -0.9550781, 1.5810547, 0.8364258, 0.5161133, -1.8701172, -0.3972168, 3.6992188, 0.6425781, 2.4394531, 0.49243164, 1.0019531, -1.8027344, 4.5273438, 0.4128418, -2.1875, 1.515625, -0.5205078, 1.2353516, 0.3996582, -1.6386719, -0.19714355, -0.95751953, -0.9770508, -2.359375, -1.0410156, -2.8203125, 0.15234375, -0.20153809, -0.41992188, -1.8115234, 2.4023438, -0.044708252, 3.9589844, 1.2646484, 0.099487305, 0.7246094, 0.02053833, -0.057006836, 0.28027344, 1.7041016, -0.9633789, 1.5029297, 1.1279297, -0.3713379, -1.796875, 3.7617188, 3.859375, 3.1796875, -0.2775879, 0.7832031, 0.9272461, 2.0546875, 0.69189453, -0.76904297, 0.8984375, 0.13757324, -0.17993164, 0.14221191, 1.6923828, 3.2675781, -0.11425781, -0.09301758, 1.6621094, -1.3271484, -1.3007812, -0.53271484, -0.3010254, 1.328125, -1.4667969, 2.2363281, 0.78515625, -0.7705078, -1.8085938, -1.2470703, -0.3959961, -1.2236328, 1.6972656, 1.328125, 0.3713379, 1.3466797, 2.2578125, -1.1572266, -0.38427734, 1.0400391, -2.6328125, -1.4804688, 0.6513672, -1.4033203, -1.9648438, 0.6333008, 1.8818359, 0.7158203, 2.03125, 1.3701172, 3.34375, 1.3496094, 1.3574219, -2.6152344, 0.091430664, -0.22558594, 3.6484375, -0.8383789, 0.9633789, 0.78515625, -1.2421875, -1.9013672, -2.4101562, 3.0976562, 0.091552734, 1.9111328, 2.2929688, -3.0546875, 2.328125, -0.63623047, 1.7158203, -2.6601562, 1.5351562, -0.5566406, -1.9667969, -2.140625, -0.38256836, 2.7246094, -0.5449219, -0.18688965, -1.3759766, 1.5087891, 0.67822266, 2.6757812, 1.8125, 3.1289062, 1.6162109, 1.1748047, 0.6044922, 1.0830078, -0.008857727, 0.65478516, -2.3398438, 1.5566406, 1.0380859, 0.29003906, 0.7285156, 0.80615234, -0.32006836, 0.48828125, -0.3100586, -1.1816406, -0.9003906, -1.5683594, -0.68115234, 1.0087891, -2.2910156, -1.7333984, 3.2519531, 1.6464844, 0.032165527, 0.1459961, 1.6386719, -0.8051758, 3.34375, -1.2998047, -1.2910156, 0.0045661926, -1.7529297, -0.33081055, 1.2919922, -2.9160156, -0.14050293, 1.6455078, -0.32250977, -2.0351562, 0.53027344, 0.18713379, 0.014503479, 0.5966797, -0.30371094, -1.4189453, -1.3105469, 3.5019531, 1.6005859, -0.37768555, 2.5761719, 0.117492676, 0.08074951, -1.5507812, -0.3088379, -1.4960938, -0.43139648, -0.37231445, 1.1650391, 3.46875, 2.5878906, -0.68896484, -2.3632812, -2.6601562, -1.6230469, -2.8984375, 2.2246094, -0.7753906, -0.05178833, 0.30200195, -2.1347656, 0.45947266, -2.3730469, -1.8496094, 0.44628906, 0.390625, 0.23266602, 0.41235352, 0.41723633, 0.56396484, -0.3227539, 2.59375, 0.6533203, 2.109375, 1.6611328, 1.5771484, 0.33764648, -0.038238525, -1.96875, -1.1816406, 0.42041016, 1.3603516, -1.53125, -1.3701172, -0.60839844, 0.6723633, 0.068237305, -0.16687012, -1.4355469]}, "B00Q9MF83M": {"id": "B00Q9MF83M", "original": "Brand: AZ Patio Heaters\nName: Tabletop Gas Patio Heater Finish: Stainless Steel\nDescription: HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30\". Overall Width - Side to Side: -12\". Overall Depth - Front to Back: -12\". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.\nFeatures: \n", "embedding": [-2.7597656, 1.5810547, 2.6972656, -0.4013672, -0.5229492, 0.8300781, 1.3339844, -1.3339844, 0.7265625, 2.9726562, -0.26733398, -0.75, -0.4543457, -2.7636719, 1.2587891, 0.57373047, 2.0195312, 0.984375, 1.6123047, 0.5961914, 0.9555664, -2.6914062, 0.15405273, -1.4277344, 0.24743652, 1.1025391, 2.8359375, -3.1875, 0.7319336, -2.4277344, -0.050689697, 2.7363281, -0.49145508, 2.3789062, -1.6367188, -1.2431641, -0.5722656, 2.4355469, -4.1601562, -1.7451172, -1.9326172, -2.53125, 0.5463867, 2.0449219, -2.1855469, -0.7207031, 2.2773438, 1.6328125, -1.3291016, -0.92578125, 0.32983398, 0.27246094, -1.1914062, 0.5800781, -0.23999023, -0.109680176, -1.2236328, -2.1875, 0.7246094, 0.2854004, 0.6713867, -0.91259766, -2.9941406, 2.7324219, -1.4345703, 1.9013672, 2.6484375, -1.5126953, -2.2207031, 1.2070312, 2.1328125, -0.8198242, -0.40185547, 0.63623047, 0.6640625, -1.1748047, -1.6552734, 1.5380859, 2.4238281, 0.74902344, -1.1982422, 1.3603516, 1.1884766, 0.9838867, -1.1992188, 0.038635254, 0.08911133, -0.37548828, 0.8041992, 2.0273438, -1.3554688, 2.9960938, -1.2724609, -1.5, -0.5966797, -2.1523438, 0.6411133, 0.8408203, -1.6708984, 2.5273438, -0.69921875, -0.51220703, -0.30395508, -0.111572266, -0.7651367, -0.9223633, 4.0039062, 0.7163086, -1.2402344, -0.55371094, -1.8984375, 0.47314453, 1.6298828, -1.2822266, -0.6064453, -0.38964844, 0.81689453, 2.4511719, 4.0820312, 2.5097656, 5.3632812, 1.7763672, -0.13256836, -3.078125, 1.0126953, 0.28564453, -0.63378906, 0.54785156, 3.0976562, -2.4902344, 0.26049805, -1.4287109, 1.1708984, -0.4868164, 0.31445312, -1.5566406, -2.2148438, -1.1230469, -5.1289062, 1.2382812, -2.8691406, 1.0849609, 2.453125, -0.072753906, -3.3652344, 0.7421875, -1.3730469, 3.1464844, -0.5048828, -0.7836914, 1.6005859, -0.45996094, 1.625, -2.4140625, 1.8105469, 0.32202148, 0.3100586, -0.65966797, 4.2851562, 2.4941406, 2.6953125, -0.7602539, -2.4941406, 0.16809082, 2.3828125, -0.46118164, 0.18359375, 2.4101562, 0.5078125, 1.4765625, -0.46020508, -2.1972656, -0.94921875, 0.94628906, -0.21618652, -1.9882812, -0.19885254, 2.328125, 0.9003906, 1.3623047, -0.8432617, -3.2617188, 0.54296875, 1.3388672, 0.6357422, -3.0761719, -2.4863281, -1.1816406, -0.55810547, -1.1464844, 0.07757568, 0.96240234, -0.18237305, -2.0390625, -0.82958984, -1.5283203, -5.6445312, -1.8867188, 0.37353516, -0.31103516, -0.30493164, 0.047088623, -1.0966797, -0.50878906, -2.8574219, -2.5878906, -0.4116211, -2.8671875, -0.87109375, 0.07269287, 1.9042969, 1.0908203, 1.75, -1.3876953, 0.40454102, -1.2304688, 2.8222656, 0.91259766, 1.1835938, 2.6621094, 0.38208008, -0.06555176, -1.5410156, 1.3193359, -0.6796875, 1.5751953, 2.6191406, 0.50634766, -2.3496094, -1.4101562, 2.7617188, 0.7651367, 1.1210938, 0.98046875, -1.265625, 3.4257812, 0.3659668, -0.41723633, -0.3894043, 0.05218506, 1.5664062, 0.005420685, -1.2441406, -0.5961914, -0.39453125, -1.1943359, -1.0234375, 1.5234375, 1.1484375, -0.28588867, -0.040893555, -0.20605469, 0.036346436, -0.39916992, -0.08862305, -0.01713562, 0.30541992, 1.8154297, 0.32641602, -2.4355469, 0.90966797, 1.0986328, 0.7104492, 1.3828125, -0.15930176, -0.83203125, 4.4765625, 0.3935547, -2.5253906, 1.8466797, -0.9038086, 1.2773438, 1.2802734, -0.88916016, 1.6308594, 0.91845703, -1.4550781, 4.0234375, 0.35229492, 2.0820312, 1.0820312, -0.7524414, 3.0136719, -2.6894531, -0.7246094, -0.73535156, -0.7163086, 0.55566406, -1.0419922, 1.9482422, 2.8769531, -0.87060547, -3.0429688, 1.9863281, 1.8056641, 0.099121094, 2.3359375, -1.4609375, -1.8105469, -0.5371094, 0.36401367, 1.5742188, -1.71875, 1.0009766, -2.6914062, -0.42138672, 0.46191406, -2.6660156, 0.68359375, 1.8671875, -1.4824219, -1.6259766, -2.6816406, -0.10998535, -3.1523438, -0.98583984, 3.8261719, -3.2167969, 1.1367188, -1.1591797, -0.5708008, -0.27368164, -2.4609375, -2.1992188, -0.07232666, 1.0341797, -0.7138672, 1.2949219, -1.6083984, 0.5439453, -0.9692383, -2.2578125, 1.0576172, -4.0546875, -2.9726562, -0.96972656, -2.1210938, -0.61279297, 0.9169922, -1.5908203, -0.66064453, 0.8515625, -1.5673828, 1.8466797, -1.3505859, -1.3378906, 0.7470703, 1.84375, -0.6972656, -0.18383789, 0.84033203, 0.8535156, -0.5317383, -3.2539062, 0.48510742, 2.4609375, 0.09790039, 1.5791016, -0.91552734, -1.3017578, -0.38183594, 1.4824219, 0.37426758, 0.15429688, 0.4169922, -0.67626953, -0.5957031, -4.8632812, 0.7714844, -0.9511719, 2.2578125, -0.11791992, 0.74658203, -1.2412109, -1.9101562, 1.0800781, -0.15661621, 3.3144531, -1.0166016, 2.9609375, -0.5102539, 0.56396484, 1.171875, -0.55908203, -1.5537109, -1.2255859, 0.2397461, -1.4658203, -0.734375, -1.8759766, -0.19030762, -1.4882812, 0.27368164, -0.2631836, -2.2519531, 0.9453125, 1.6884766, -1.4921875, 0.15405273, -1.3369141, 0.65722656, 1.046875, 1.5498047, -3.0019531, 0.4543457, -0.072143555, -1.0136719, -0.6503906, 1.7802734, 0.7817383, 0.7607422, 3.6308594, -0.45043945, 2.4316406, -0.2626953, -4.8554688, 1.3925781, 3.5449219, -0.38012695, -0.12597656, -1.6669922, -1.453125, -2.0898438, -0.7089844, 4.3828125, 1.2128906, 3.5253906, -1.3876953, 0.60595703, 2.5332031, 1.1220703, 0.16101074, -0.3400879, -1.4462891, 2.2597656, -4.09375, -1.5292969, 2.0019531, 2.8554688, -3.1894531, -2.8554688, 0.7211914, -0.6713867, 1.5009766, 0.34936523, 0.6118164, 0.95458984, 1.8603516, 2.71875, 0.4099121, 1.4833984, -0.38598633, -2.5839844, -0.39038086, 0.88183594, 3.0117188, 1.1083984, 1.6621094, 1.0693359, 0.3190918, -0.1027832, -3.0449219, 0.95166016, -0.10986328, -0.8041992, 0.091796875, 3.28125, -2.2988281, 1.1669922, 1.3671875, -0.6513672, 0.06744385, -3.3027344, -1.5927734, 3.015625, 0.8647461, 0.3203125, -1.2851562, -0.9926758, 0.34570312, -2.125, 0.6791992, -0.19958496, -0.91064453, 1.3427734, -1.9287109, -0.81640625, 0.80029297, 3.0058594, 0.69873047, -2.4609375, 0.7270508, 0.43017578, -0.7158203, 0.4128418, -0.16674805, -1.0976562, -0.53808594, 4.1601562, -2.5585938, -2.1386719, 0.69189453, -1.9365234, 0.79345703, 0.5649414, -1.6933594, -1.3671875, 0.7138672, -0.5966797, 0.0066337585, -0.99853516, 0.058654785, -0.42041016, -1.4316406, -0.85253906, -3.1308594, -1.5498047, 1.2558594, -1.2871094, -0.5805664, 1.9912109, 1.3691406, 2.828125, -2.0566406, 3.1757812, -1.9072266, -2.6347656, 1.2597656, -1.5146484, 0.36010742, -2.5195312, -6.1640625, 0.6713867, -1.9726562, -0.18225098, 2.8027344, 0.7578125, 0.47265625, 1.5791016, 0.5756836, -3.3925781, -2.0859375, -2.2597656, -0.98291016, -3.8359375, 0.51904297, 1.1308594, 1.1210938, 0.07861328, -4.3359375, 0.97802734, -0.92578125, -0.06463623, 0.46313477, -1.1074219, 2.3828125, -3.2753906, 0.5395508, -0.6220703, 0.38232422, -0.88916016, -1.0927734, 0.24267578, -1.9335938, 3.7363281, 0.97753906, -0.29956055, 2.1679688, 4.40625, 1.2617188, -0.034851074, 0.40966797, 1.4707031, 3.2558594, -1.1142578, -4.0507812, -0.9086914, -0.53271484, 0.2578125, -1.6523438, -1.4179688, 1.7724609, -1.5898438, 1.3994141, -0.96191406, 0.1986084, 2.6035156, 0.30639648, -4.1210938, 1.4423828, -0.49438477, -2.3066406, -2.2832031, 0.27270508, -2.0214844, -1.1132812, 1.5136719, -1.5722656, 1.9384766, -3.2695312, -0.7524414, -2.9179688, 0.5541992, 2.1386719, 3.0410156, 1.8300781, -2.8769531, -1.6611328, -0.47436523, -2.0039062, -0.3918457, 1.6591797, 2.4453125, 0.43188477, 2.7695312, 1.2070312, -2.4902344, 1.1054688, 2.6484375, -1.2792969, 0.41674805, -0.57128906, -1.0224609, -0.65722656, -3.2246094, 1.9785156, 0.7338867, 2.6171875, -0.8457031, 1.1621094, -1.5742188, -1.6191406, -2.5097656, 0.76464844, -1.2382812, 1.3876953, 1.2294922, 1.3691406, 1.5751953, -0.6274414, 0.61865234, -1.7646484, 3.25, -1.8554688, -0.85595703, -0.39697266, 1.8671875, -1.3574219, -0.31420898, 2.2246094, 1.7548828, -1.1132812, 2.6621094, 2.1738281, -2.0703125, 1.2128906, 1.4121094, -1.6699219, 0.61621094, 0.22387695, -0.5888672, 2.5195312, -0.9819336, -2.9609375, -0.41064453, 4.1523438, -1.1855469, 0.43066406, -0.089660645, -2.765625, -0.5708008, -3.7070312, -1.8330078, -2.0117188, -0.14538574, -0.86376953, -1.8134766, 0.2277832, -1.0576172, 4.703125, 4.4453125, -1.4921875, -1.1855469, 1.4492188, 0.3359375, -1.6113281, 1.5722656, 0.55908203, -1.3876953, 0.15429688, 0.6386719, 0.7314453, 0.59814453, 1.6787109, 0.6533203, -0.9145508, 0.6723633, -2.6914062, 2.96875, -2.3535156, 0.6298828, 2.1601562, -0.17858887, 0.6191406, -3.4648438, -0.29296875, -0.8457031, 1.0019531, -0.5161133, -1.2548828, -0.4711914, -2.1269531, -1.3974609, -3.6015625, -0.48950195, 0.41308594, -1.6904297, -0.17578125, -1.8232422, -2.0722656, -2.4023438, 0.49438477, 1.6425781, -0.8569336, -0.95654297, -0.4189453, 0.4951172, 1.9609375, 0.47216797, -0.39013672, 1.7919922, -0.38085938, 1.1132812, -0.65771484, -3.6367188, -2.2167969, 1.5810547, -0.27026367, 1.8222656, -0.30517578, -0.61816406, -0.0036621094, 3.4960938, -0.26660156, -2.3496094, 1.3339844, 1.1972656, 0.95947266, 3.1621094, -0.23046875, 2.296875, 0.79345703, -2.7363281, -1.0214844, -0.062561035, 0.921875, 0.27441406, 2.6152344, 0.03173828, 1.8457031, -0.7451172, -0.75439453, 1.96875, 0.75683594, 1.5566406, 1.9833984, -1.5966797, -0.3190918, -3.8515625, -1.1982422, -2.203125, -1.3896484, -1.0322266, 0.35913086, 1.0488281, 0.50683594, -1.1416016, 0.15881348, 1.3027344, -0.91308594, -3.1191406, 1.6416016, 1.0097656, 1.6982422, 0.40673828, -0.9794922, -3.1972656, -3.015625, -1.0517578, -1.4560547, 0.036346436, -1.5664062, 0.12438965, -1.4326172, 1.1240234, 0.013633728, 0.81591797, 0.5932617, 0.25732422, -3.2246094, 2.6328125, 2.0820312, 0.3149414, 0.11883545, 0.045196533, 2.3710938, -0.8774414, 3.7167969, 1.7226562, -0.7104492, 0.86816406, 1.2861328, 1.8681641, -0.62939453, -0.13781738, 2.3613281, -3.7695312, -0.27246094, -1.2519531, -2.46875, -1.5224609, 1.4179688, 2.2929688, 0.6904297, 0.09161377, 2.3808594, 0.28930664, -0.19604492, 1.8613281, -0.014549255, -2.7070312, -0.18188477, 0.03491211, 0.2590332, 2.4101562, -0.19958496, 0.13891602, 1.9580078, 1.8945312, -0.9033203, 2.1035156, -0.10308838, 1.3447266, 2.0898438, 1.0322266, 2.6503906, 0.7817383, 2.5917969, 0.23132324, 1.0410156, 0.36401367, -2.4589844, 0.57958984, 1.3144531, 1.9248047, 0.56103516, -0.71728516, 1.4882812, 0.5317383, -0.8544922, -2.8671875, -0.7270508, 1.7558594, -1.5683594, 0.1595459, 0.43188477, 1.7363281, -1.9238281, -0.1977539, -1.7744141, 0.59521484, 0.6166992, -0.43969727, 2.453125, -0.36376953, -1.6962891, -1.203125, 2.0117188, 3.3085938, -3.0117188, 1.7998047, -0.70947266, -1.4072266, -1.1669922, 1.5087891, 2.3085938, 0.92626953, 1.5595703, 0.55566406, 2.8535156, 2.0449219, -0.50097656, 1.015625, 0.8330078, 0.6069336, 2.3886719, 2.0195312, -0.8544922, -0.515625, -0.0031356812, 0.64208984, -1.78125, 2.0292969, -0.35986328, -0.5727539, -0.048919678, -1.9091797, 1.0664062, 0.5390625, 0.022399902, -2.5722656, 0.7788086, 1.3251953, -0.45947266, -1.0195312, -0.025863647, -1.1191406, 3.7382812, 0.77978516, -0.5229492, 1.3115234, -0.5415039, -0.47045898, 0.08392334, 0.8984375, -1.7744141, 3.046875, 0.23425293, 3.59375, 1.2802734, 0.6977539, 2.3808594, -1, 0.9160156, -0.80615234, 0.37548828, -1.6455078, 1.7861328, -0.09063721, -0.9038086, 0.10620117, -1.5136719, -0.15893555, 0.66308594, 0.35351562, -1.0654297, -2.3691406, 2.2890625, 0.2939453, -1.9169922, 2.515625, 2.1210938, -1.4941406, 1.5888672, -0.86279297, -1.8378906, 2.3789062, 0.8496094, 1.7705078, -1.0791016, -1.7578125, 0.39013672, 0.0947876, 1.9033203, 0.08026123, -0.28173828, -1.4306641, -3.1054688, 0.029251099, 1.7734375, -0.11645508, 1.8251953, 1.0507812, -1.8085938, -1.6347656, 0.7758789, 0.6484375, 0.8256836, -2.7089844, -3.8535156, -1.703125, -0.7426758, -0.77197266, 0.72509766, 4.28125, 0.15710449, 2.2324219, -1.3339844, -3.1523438, -0.7011719, 0.06756592, 0.96728516, -0.8955078, -0.73535156, -0.12524414, 0.91259766, 1.421875, 0.81933594, 0.30200195, -1.0546875, -1.1074219, -0.18383789, -1.5341797, 2.0332031, -1.4326172, -1.2324219, 1.4824219, 0.8515625, 0.85253906, 1.7998047, 1.8320312, 2.1503906, 0.3798828, -3.4941406, -0.32373047, -0.921875, 1.2353516, 1.8398438, 0.37304688, 2.2402344, 0.7182617, -0.94873047, -3.3554688, -1.6923828]}, "B0024ECC3S": {"id": "B0024ECC3S", "original": "Brand: Camco\nName: Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)\nDescription: \nFeatures: Easy access to gas valves\nHeavy-duty polypropylene\nPolar White\nFor two 20 lb propane tanks\nEasy to install and highly durable\n", "embedding": [1.1933594, 1.6259766, 3.453125, -0.5053711, -1.1308594, -2.0546875, -0.13708496, -0.17565918, 0.93310547, 1.0488281, -0.68115234, 1.2304688, 0.9501953, -2.8027344, 1.4316406, 0.8022461, -0.45629883, 2.3769531, 2.3417969, 0.74121094, 3.7519531, 1.0097656, -0.6557617, 0.010688782, 1.1679688, -0.80615234, 2.6308594, -1.7226562, -1.3808594, 0.42041016, -0.33813477, -0.41186523, -1.1474609, 1.0664062, 0.61328125, -0.59814453, -0.9902344, 0.0625, -4.0898438, 0.37182617, -4.7734375, -0.17041016, 2.3125, 0.1538086, -0.9111328, -0.78759766, -1.2509766, -3.6074219, 0.9248047, -2.8691406, -0.9765625, 1.3847656, 2.4414062, -0.020233154, -1.4746094, 0.32250977, 0.7026367, -1.7675781, 0.20227051, 1.5683594, -1.8623047, 0.3076172, -1.7861328, 2.96875, -0.8261719, 0.98876953, -1.890625, -1.6503906, -0.1217041, 2.5644531, 2.4101562, 1.6621094, 0.3190918, -1.6445312, 0.27124023, -0.14978027, -1.4941406, 2.0253906, -0.40649414, -1.7607422, 1.2802734, 1.0566406, -2.4921875, -2.3964844, -1.1240234, -1.0615234, -1.015625, 0.58251953, -0.41748047, -0.6933594, -0.5859375, 1.8759766, -2.0117188, -3.4863281, -1.1572266, 0.8208008, 1.5205078, 1.4101562, 1.7568359, 1.1445312, 0.12310791, -0.26000977, -0.7949219, 0.3388672, -2.3710938, -1.2490234, 1.6044922, -2.0019531, -1.1162109, 0.62939453, 1.4433594, -0.2956543, 0.7583008, -1.5058594, -0.5180664, 1.1943359, 0.9667969, 0.59033203, 2.2949219, 1.5947266, 4.0898438, -0.2902832, 1.5429688, -0.6542969, 1.1035156, 1.1162109, 0.39160156, -0.2705078, 2.6210938, 0.68310547, 2.2695312, 0.609375, 0.52246094, -0.39208984, -0.69189453, -0.82910156, -0.6347656, -1.4541016, -1.4912109, -0.13586426, -3.2949219, -1.3789062, 0.8730469, 0.31152344, -3.2480469, -0.75341797, -1.1835938, 2.3417969, -0.4013672, -0.6923828, 0.9160156, -1.8388672, -0.027740479, -1.234375, 1.2070312, 1.3847656, 0.359375, -4.2265625, 3.2304688, 2.1269531, 2.953125, 0.11663818, 0.14208984, 0.7915039, 1.1884766, -2.7070312, 0.74316406, -0.34448242, -1.0136719, 1.2705078, -0.10772705, -2.3300781, 1.0576172, 1.2851562, -1.1757812, 0.017410278, 1.7138672, 1.5419922, 1.1826172, -0.36572266, -3.9160156, 0.2232666, -0.2479248, -0.24328613, 0.90478516, -0.5727539, -1.6054688, -2.8554688, -0.18737793, 0.19335938, -2.2402344, 1.4179688, -1.1298828, -0.4951172, -1.2617188, -4.6757812, -2.5976562, -1.4335938, 0.21203613, 2.6777344, -1.0673828, -0.97314453, -1.6542969, 0.9707031, -1.5517578, -0.8964844, 1.7138672, 1.4482422, 1.0410156, 1.2021484, 0.52246094, -1.0136719, 2.8378906, -1.8378906, -1.1445312, -1.1865234, 0.92285156, 0.83740234, 1.8496094, 0.8564453, 1.1689453, 1.3222656, -1.2099609, 0.6455078, 1.5126953, 2.3730469, 1.9248047, 0.66796875, -1.6669922, -0.83251953, 0.47192383, 1.2578125, -2.2265625, -0.6435547, -0.8984375, 0.9370117, -0.39038086, -1.0302734, -0.15551758, -1.7197266, 0.33081055, -0.023986816, -1.2197266, 0.45654297, 0.9453125, 1.6582031, -1.1025391, 0.4892578, 0.2142334, -0.35229492, 1.1650391, 1.0966797, 0.09893799, -0.86621094, -1.1513672, 2.5703125, 1.6572266, 0.0927124, 0.6098633, -2.9335938, 0.18469238, 2.1601562, -1.2558594, -0.0345459, -0.070617676, 0.81103516, 0.15319824, -0.98876953, -3.3222656, 0.5449219, 0.515625, 1.2148438, 0.37060547, 0.31323242, 1.1933594, 1.0966797, -1.6210938, 1.8378906, 1.3154297, 2.5683594, 1.4824219, 0.0028648376, 0.9550781, -2.1171875, 0.71435547, 0.40771484, 2.7753906, 1.0615234, -2.4375, 0.5473633, 2.234375, 0.064575195, -1.7597656, 1.6503906, 3.3164062, 0.9501953, 1.9375, 0.9199219, -0.96875, 0.48217773, -0.1015625, 0.671875, -0.1940918, -0.2142334, 0.6459961, -0.7285156, -1.0771484, -1.7236328, 1.3769531, 0.0009737015, 0.5175781, -0.5883789, 0.26831055, 0.7998047, -0.6074219, -0.97509766, 4.3359375, -2.2128906, -0.37231445, 1.6669922, 0.10406494, 2.5175781, 0.8173828, -0.42529297, 0.71191406, 0.9902344, -3.40625, 2.0820312, 0.28027344, -0.18188477, 1.2675781, -2.4023438, 2.6640625, -2.0292969, 0.9394531, 0.96191406, -1.1630859, -0.7495117, 1.4365234, -1.2353516, 0.19946289, -1.1855469, -1.5527344, 2.8398438, 1.1328125, -0.484375, -0.67626953, 1.4287109, -1.0283203, -2.1171875, 0.8022461, 1.7919922, -0.8828125, -2.8066406, 0.2861328, 0.7910156, -1.4863281, 2.0585938, -0.54589844, -0.8388672, 0.9716797, 1.3837891, 1.8525391, -1.4541016, -1.9287109, -1.6289062, 1.0195312, -3.7148438, 3.0078125, -2.1953125, 1.2871094, -2.7089844, 0.43359375, -0.5332031, -2.2207031, 3.2714844, -0.9477539, 2.9785156, 1.2304688, 0.7060547, 0.10028076, -2.7226562, -0.12512207, -2.5039062, -2.3066406, 2.1074219, 1.0224609, -0.9682617, -0.35375977, -3.6601562, -1.2148438, -1.125, 0.31054688, 0.24108887, -1.8427734, -0.29077148, -0.7895508, 0.9277344, 0.43115234, -0.00020611286, 1.3417969, -1.1523438, -0.94921875, -0.5546875, -0.10656738, -0.39868164, -0.6821289, -1.8359375, 0.6513672, 0.5991211, -0.71435547, 1.3515625, -0.5830078, 1.4990234, -0.86376953, -3.6269531, 0.095825195, 2.9980469, 1.6279297, 2.3144531, -1.6582031, -1.2480469, -1.5722656, 0.24169922, 2.3183594, 3.2753906, 2.15625, 1.7597656, -0.59521484, 0.97753906, 0.37329102, 0.32836914, 0.19824219, 1.0029297, 4.0703125, -0.1451416, -0.021057129, 0.8383789, 3.0546875, -2.8925781, -0.1739502, 0.26708984, -1.1337891, 2.4746094, 2.0605469, -2.8007812, 0.44311523, 0.66064453, 2.640625, -0.5, 0.8598633, 0.75439453, -0.40698242, 1.3691406, 1.5888672, 0.4975586, 0.59521484, 1.0908203, -2.203125, 1.1640625, 0.8779297, -0.6015625, 0.4350586, 1.2480469, -2.2285156, 0.107055664, 1.7109375, -1.21875, 3.4472656, 2.5585938, 0.6748047, -0.14855957, -2.2675781, 1.234375, 0.00055360794, 0.73339844, -0.42749023, -1.0732422, -0.8535156, 0.6430664, -1.3798828, 2.8476562, 0.14953613, -0.57421875, 0.10827637, -2.2421875, -0.8071289, -2.5117188, 3.9667969, -0.48120117, 0.3659668, -0.6796875, 2.4316406, -0.9057617, -4.4453125, -0.79248047, -0.080444336, -2.0273438, 3.4785156, 1.7441406, -1.0058594, 0.01234436, -1.3232422, 1.6240234, 2.2773438, -2.1386719, -1.1240234, -2.125, 1.0458984, -3.203125, 0.29174805, 1.4375, 2.6523438, -3.34375, -0.0006508827, -0.38232422, 1.734375, -0.11657715, 0.40454102, -0.062805176, -0.3005371, -2.1171875, 1.2011719, 0.77685547, 1.703125, 1.6601562, 0.84814453, 0.6542969, 0.3461914, 0.50683594, 0.9423828, -3.9980469, 0.42211914, -0.23840332, -0.64453125, 2.78125, -0.3310547, 1.8115234, 0.8979492, -0.11291504, -3.8535156, -1.296875, -1.7167969, 1.3544922, -2.2441406, -2.0449219, -0.06945801, 0.2578125, -2.8808594, -1.0986328, -0.6088867, -2.4707031, -1.5712891, -0.6347656, 1.7509766, 1.0126953, -0.026275635, -0.6621094, 0.18579102, -0.03466797, -0.5288086, 0.34570312, -0.8911133, -1.8837891, 3.4726562, 1.2089844, -0.047821045, 0.12927246, 2.3261719, 2.1367188, -1.5097656, 0.18005371, -1.4101562, 0.1394043, -0.9951172, -2.7285156, -0.75439453, -1.8544922, 1.5263672, -1.7705078, -0.008987427, 0.8852539, 2.3144531, -0.13061523, -0.20837402, 1.5419922, 0.6220703, -2.7148438, -1.7675781, 2.1679688, -0.5004883, -1.1210938, 0.86035156, -1.6083984, 0.8618164, -0.19787598, -1.8681641, -2.7050781, -0.095458984, -0.056030273, 1.3417969, -4.6914062, 1.2226562, 2.203125, 3.3417969, 0.9291992, -1.4462891, -2.0605469, 1.5615234, 1.8710938, 1.8066406, -1.6083984, 0.80126953, -0.35864258, -1.0888672, 1.3662109, -3.3007812, -1.3271484, -0.16845703, -1.1025391, 0.13500977, -0.6245117, 1.4501953, -1.9511719, 0.95703125, -0.37670898, -1.4443359, 3.3085938, -1.1777344, 1.0234375, -1.0761719, -1.1757812, -1.890625, 2.2285156, 1.1025391, 0.1940918, 1.7890625, -1.3808594, -1.3837891, 0.7939453, 1.4726562, 0.10827637, 1.3945312, -1.0849609, -0.5136719, 0.6582031, -0.09729004, -0.7084961, -1.3847656, 2.28125, 2.7421875, 0.9013672, 0.91503906, 1.4609375, 0.33251953, 1.9101562, 0.94189453, 0.8388672, -1.2275391, -0.38964844, 0.9916992, 2.1542969, -2.4023438, -2.7363281, 1.4863281, 0.47387695, -0.89453125, 2.4824219, 0.37402344, -1.0810547, -1.1523438, -2.1035156, -2.7285156, -0.56689453, 1.0869141, -1.6347656, -1.2988281, 0.35595703, 1.1191406, 0.3413086, 2.4570312, 0.4177246, -0.71435547, -1.1943359, 0.5600586, -1.2978516, -1.6025391, -1.7929688, -3.2558594, -0.018569946, -0.41186523, 0.6503906, -0.81689453, 1.9462891, 1.3935547, -2.6035156, -1.3359375, -0.92285156, 0.01689148, -1.7753906, -1.0732422, 2.0917969, -0.31176758, -0.14624023, 0.19152832, 0.6269531, 0.16564941, 3.0722656, 1.8232422, 0.5102539, -0.1270752, -0.4885254, -3.6582031, -3.3574219, -0.80078125, 0.6376953, -1.5087891, 1.0634766, -2.0410156, -2.0410156, 1.1826172, -2.4960938, 0.34228516, -1.3623047, 0.5229492, -0.86816406, -1.4941406, -0.3383789, 0.003168106, -1.5292969, 0.27856445, -1.4443359, -0.9511719, -2.3164062, -3.9140625, -2.6699219, 0.9326172, -1.2509766, -0.9213867, 0.66064453, -0.67626953, 1.140625, -0.113098145, 1.2900391, -2.1328125, 1.6650391, -0.9033203, 0.57128906, 2.5820312, -0.35058594, -2.1738281, 1.3427734, 0.33520508, 2.0703125, 2.7578125, 0.9057617, -3.1328125, 1.9082031, 0.5102539, 0.1274414, 0.3701172, 1.7626953, 1.5615234, 0.5751953, 2.4492188, 1.4990234, -1.2832031, -1.2294922, -2.3085938, -2.3769531, -0.8071289, -1.2158203, -1.625, -0.81103516, 1.6542969, 1.1865234, -0.19042969, 0.32006836, 0.60009766, 0.69091797, -1.8662109, 1.1298828, -1.9970703, 1.1621094, 1.1962891, -1.7597656, -2.7519531, -2.796875, 2.8339844, -0.15881348, -0.5498047, 0.77441406, -0.10913086, -0.30981445, 1.3398438, 0.4892578, 1.7529297, -0.16101074, 2.15625, -0.53564453, 1.4902344, 3.5195312, -0.86376953, 0.15112305, -0.72753906, 0.95410156, -1, -0.14440918, 2.6445312, -2.5605469, -0.5366211, 0.34960938, 0.52783203, -0.25341797, -0.5883789, 0.6772461, -1.7890625, 0.65771484, -0.3635254, 0.021911621, -3.3574219, 2.8691406, -0.9345703, 0.46972656, 1.5068359, 0.55322266, -1.4404297, -1.1523438, 2.1132812, -0.37939453, -0.07501221, -0.8491211, -0.57958984, 0.6347656, 2.5742188, -3.7695312, 0.08312988, -1.5517578, 1.4570312, -0.17492676, 0.8852539, 0.111206055, 0.05532837, 1.4794922, 2.5820312, 4.0898438, -0.25561523, 2.5175781, 0.9848633, 1.1113281, 3.0664062, -1.0849609, 1.6074219, -0.1854248, 0.64746094, 2.7851562, -1.3964844, -0.93310547, 1.515625, -0.88964844, -2.34375, 0.72558594, 1.1796875, -3.8085938, -0.5073242, -0.0904541, -1.25, 1.1728516, 3.0019531, -1.2568359, -2.21875, 0.30908203, -1.4111328, 2.9863281, -0.421875, 0.80126953, 0.79248047, 0.85546875, 1.1064453, 0.9995117, 0.1048584, -2.6367188, -1.9628906, -0.25756836, 0.86376953, 0.107666016, 2.4804688, -1.1767578, -0.055908203, -0.7661133, 1.578125, 0.07470703, -1.3369141, 2.9003906, -1.3857422, 2.9335938, 2.1621094, -0.7011719, -0.1973877, 1.8183594, 0.12731934, -2.5703125, -0.31274414, -0.22875977, 0.71533203, 0.35424805, -3.3554688, 0.31396484, -1.0263672, 0.7216797, -4.2539062, 0.54003906, 0.68847656, -2.0117188, 1.8496094, 1.0986328, -0.08831787, 4.1015625, 0.76123047, -0.3479004, 1.7558594, -0.84375, -0.1875, -0.44921875, 0.01612854, 0.43432617, 1.1025391, -1.1210938, 3.0527344, 2.2148438, -0.26782227, -1.2177734, 2.0117188, 0.38720703, 0.9897461, 0.78564453, -0.6933594, 2.6757812, 0.4128418, -0.5234375, -0.79003906, -2.0351562, 1.0615234, -0.029754639, -0.68359375, 1.0634766, -0.30200195, -0.84814453, 2.5175781, -4.4492188, -0.31518555, -0.027435303, -0.97314453, 0.8203125, -0.24511719, -1.9150391, -3.6601562, -0.30566406, 0.62939453, -1.8916016, 0.8754883, -2.1816406, 0.90185547, -0.55078125, -1.2539062, -0.9140625, 0.7207031, -1.3037109, -0.12207031, 1.015625, 0.34960938, -0.59521484, -0.6713867, -1.4306641, 1.484375, -0.40039062, -0.7270508, 0.7319336, 0.9584961, -0.4260254, 1.1738281, -0.26098633, 0.26953125, 0.6113281, 1.7148438, 1.3134766, 0.77246094, 1.3007812, -1.4121094, -0.50439453, -3.0078125, 2.5078125, 1.5595703, -1.9677734, 0.23596191, 1.3193359, 3.0917969, -2.2285156, -0.20837402, 0.49023438, 0.36206055, 1.5517578, -1.9111328, 0.64746094, 1.3144531, -0.5834961, 1.5058594, 3.4785156, 3.2832031, -1.4472656, 0.14916992, 2.1367188, -2.4238281, -1.9414062, -0.58251953, -2.0175781, -3.0527344, 0.015220642, 2.9746094, 3.4667969, -0.07745361, -1.203125, -2.1601562, -0.93408203]}, "B07GRFTR4S": {"id": "B07GRFTR4S", "original": "Brand: GasOne\nName: GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC\nDescription: \nFeatures: \u2713 MEASURE YOUR PRESSURE \u2013 Use Gas One\u2019s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One\u2019s Pressure Gauge lets users control their heat with a precise level of accuracy\n\u2713 USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable\n\u2713 DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners\n\u2713 COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow\n\u2713 STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI\n", "embedding": [-1.4394531, 1.3115234, 1.2314453, 1.0429688, -0.55908203, -0.2993164, 1.2363281, -0.9067383, 1.9658203, -0.25756836, 2.1132812, 1.5800781, 0.66308594, -0.79345703, 2.5527344, -0.5131836, 0.6455078, 1.1835938, 0.53808594, 2.9746094, 1.1611328, 0.24121094, 2.5742188, -1.8310547, 0.3720703, 1.3544922, 3.5, -3.1796875, -1.3603516, 0.1875, 1.9580078, 2.2480469, -0.27807617, 0.7421875, -1.3330078, -1.0566406, -0.46728516, -0.62939453, -2.8984375, -1.5009766, -1.0517578, 1.9648438, 1.3837891, 0.2607422, -1.4658203, 1.9267578, 1.625, 1.2763672, 0.69091797, -0.06768799, 0.5180664, -0.15014648, 0.13061523, 0.26831055, 0.7006836, -0.1907959, 1.3291016, -2.0839844, 1.2314453, 1.9970703, 2.3515625, 1.0341797, -1.7265625, -1.6474609, -0.9482422, 0.7216797, -0.0848999, 0.74316406, -0.84472656, 0.5888672, 2.3476562, 2.5976562, 0.99072266, -0.07525635, -1.3554688, 0.83496094, -2.4824219, -0.46484375, 3.3964844, -0.2644043, -0.5854492, -0.3474121, 0.28515625, -2.2949219, 0.47509766, 0.5341797, -0.59228516, 1.1992188, 0.31884766, 0.95703125, -2.9746094, 3.0585938, -3.4023438, -4.4804688, 0.9423828, 0.2631836, 0.4350586, 0.98828125, 1.4423828, 0.19763184, -2.125, -2.1308594, 0.26513672, 2.40625, -0.9375, -1.3183594, 0.15478516, 1.5009766, -4.4335938, 1.0488281, -0.50097656, -0.29077148, 0.8574219, -1.6787109, 0.81884766, -3.1621094, 0.75341797, -0.96191406, 3.1425781, 0.87158203, 1.7509766, 0.47460938, 0.55078125, 0.46142578, -0.093933105, 0.73046875, -0.6533203, -1.2802734, 3.1269531, -1.1171875, 0.90234375, -2.6152344, 1.484375, 0.78222656, 0.9873047, -2.1210938, 0.19470215, -3.3925781, -2.2382812, -0.8095703, -3.390625, 1.3115234, -0.4958496, 0.03503418, -2.8144531, 0.8417969, -2.7753906, 0.9970703, 2.7480469, -1.0546875, 1.2509766, -1.6884766, -1.3427734, -1.0976562, 0.41845703, 0.7294922, 0.17919922, -1.5585938, 2.4023438, 1.7314453, 0.46875, 0.11956787, -3.0644531, 0.61816406, 0.54833984, -0.8066406, 0.68066406, -0.19592285, -1.2539062, 0.41845703, -0.61279297, -1.5322266, -0.8720703, 2.1523438, -0.6933594, -0.77197266, 0.58691406, 3.0761719, 1.2783203, 0.021850586, -4.0273438, -2.5058594, -0.43725586, -2.5644531, 2.5, -0.2590332, -2.2480469, -0.5151367, -0.24243164, -1.2451172, -1.0166016, -0.16894531, 0.090148926, 2.0605469, -0.4440918, -0.7626953, -3.1660156, -0.48339844, -1.1123047, 1.3632812, 0.027633667, -1.5859375, 1.2246094, 0.13684082, -0.7416992, -2.1855469, 1.3603516, -1.8164062, -0.5708008, 1.9707031, 0.7338867, -1.2783203, 1.3447266, -0.40234375, 0.7519531, -2.3339844, 1.7695312, 2.6757812, -0.061798096, 1.2578125, -1.28125, 0.012901306, 0.5209961, -0.17175293, 1.2861328, 1.0898438, -0.93896484, 1.015625, -1.3085938, -2.5058594, 2.8652344, 1.5195312, 0.32080078, -1.4414062, 0.21447754, 1.2978516, -0.22143555, -0.5058594, 0.6870117, 1.1328125, 0.35839844, -0.22839355, -2.9296875, -0.96484375, -1.9013672, 0.7133789, -1.6416016, 1.2548828, 2.4277344, -0.3334961, 1.4423828, -0.054260254, -2.1113281, -0.4255371, -2.7285156, -0.36376953, 0.073791504, 2.2929688, -0.22070312, -1.4482422, 1.9316406, 1.6386719, 1.0410156, 1.5683594, 0.39404297, 0.69433594, 1.0966797, -1.40625, -0.48242188, 0.1385498, 0.77246094, 1.8554688, 1.4169922, -0.57666016, 0.5605469, 1.6728516, -2.4453125, 2.203125, -0.099731445, -0.2614746, 2.3632812, -1.5087891, 0.53466797, -2.09375, 3.0332031, 1.1523438, 1.6884766, -0.19995117, -2.3769531, 0.087402344, 3.9160156, -0.15734863, -3.0449219, 2.1347656, 1.6669922, -0.33398438, 1.5380859, 0.77197266, 0.35717773, -1.0751953, 1.2431641, 0.8989258, -1.8271484, -0.10076904, 3.2695312, 0.8354492, -1.4677734, -0.14355469, -0.68847656, -0.0016489029, -1.5927734, -1.3759766, -1.3710938, 2.0566406, -1.5869141, -1.5322266, 0.0040664673, -2.4257812, -0.39282227, 1.0263672, 2.3730469, 2.1660156, 1.9365234, -1.4101562, 0.4638672, 2.5371094, -1.1611328, 0.5996094, 0.049560547, -0.7451172, 0.41357422, -1.2558594, 0.33154297, -3.0644531, -2.3320312, 2.0449219, -1.9453125, -2.5761719, 1.6083984, -2.5917969, -2.9570312, -0.20605469, -1.5488281, 1.8974609, 1.3359375, 0.76953125, -1.4550781, -1.1601562, 0.04888916, -1.0449219, 0.4729004, 2.8535156, -0.8383789, -0.69628906, -0.21191406, 0.0635376, -0.6582031, 1.1162109, -2.265625, 0.9379883, 1.3710938, 0.17797852, -0.23205566, -0.12768555, -0.64990234, -1.4785156, 2.4453125, -3.4082031, -1.2509766, -0.81396484, 0.9296875, -0.99658203, 0.027038574, -2.6875, -1.2890625, 1.0859375, -0.98291016, 1.203125, -1.359375, 3.3476562, -1.3261719, 0.23486328, 2.1191406, -1.9550781, -2.9726562, 0.08807373, -0.43774414, -0.57177734, -1.1738281, -2.0976562, 0.81884766, 0.48413086, 0.7470703, -0.07733154, -0.113586426, -2.171875, -0.030197144, 1.8330078, -2.1269531, -0.5078125, 1.6132812, -0.34472656, -3.3398438, 0.054595947, 0.27539062, -3.0390625, -1.0273438, -0.42138672, 0.16418457, -0.3413086, 0.51953125, 0.8378906, 1.0136719, 0.75, -2.5566406, -2.7011719, 1.4736328, 1.8623047, -2.2871094, -0.3256836, -1.1425781, -0.5708008, -1.4414062, -2.2460938, 2.0996094, 1.5117188, 2.328125, -0.78027344, 0.62597656, 0.006958008, 0.82373047, -1.1367188, -2.1738281, 0.56152344, 2.21875, -2.4199219, -1.4746094, -0.34448242, 1.5673828, -2.0898438, 0.24438477, 2.1796875, -0.5629883, 2.34375, 2.1621094, 1.2412109, -0.2746582, 0.09509277, 2.2382812, 0.020217896, -1.6367188, 0.15759277, 0.76904297, 0.67871094, -1.5703125, 1.1962891, 1.5644531, 1.1757812, 2.3378906, 0.28588867, -0.59814453, -1.53125, 0.23474121, 0.69189453, 0.6777344, 0.93896484, 0.79833984, 0.86083984, 0.1751709, 0.62402344, -0.26342773, 1.6240234, -2.3476562, -0.39208984, 1.1308594, 0.37280273, -0.4086914, 0.7402344, -0.7470703, -1.0185547, 0.14855957, 1.0341797, 1.8212891, 1.6367188, 2.5175781, -0.5102539, 1.9365234, -1.1708984, 1.6884766, 0.2578125, 1.6210938, -0.41967773, 0.010185242, -3.0117188, -1.8964844, -0.38305664, -2.7207031, -1.0283203, 1.65625, 0.8540039, -1.0537109, 1.2060547, -0.1986084, 1.4248047, 0.9116211, -2.0253906, 0.10131836, -1.8076172, -1.0048828, 0.37597656, -0.9550781, 1.9912109, 0.8330078, -2.9472656, 0.3293457, -2.2578125, 0.43579102, 0.69970703, 1.0439453, -2.1425781, -1.5683594, -1.2949219, 2.3300781, 0.10583496, 3.1992188, 1.0859375, -0.2709961, 1.5957031, -3.4628906, -0.9472656, -0.76171875, -4.59375, 0.70166016, -3.3574219, 1.1279297, 3.2675781, 1.1640625, 0.1694336, 1.1064453, 1.6689453, -3.453125, -1.4140625, 0.6254883, 1.1308594, -2.4414062, -0.5131836, 1.7089844, 0.5083008, -0.3022461, -2.0820312, -0.34570312, -2.625, -0.58447266, -0.6694336, -1.5791016, -0.42797852, -1.4716797, 1.2177734, -1.4335938, -0.7817383, 0.35180664, -0.7158203, -1.0888672, -4.1640625, 2.1816406, -0.6743164, 0.9770508, -0.7529297, 3.7128906, 2.2167969, -1.2558594, 0.3774414, 0.060821533, 1.7939453, 0.08270264, -0.2692871, 0.76904297, 0.88427734, 0.54345703, -0.8671875, -1.0332031, -1.9580078, -0.75439453, 1.1035156, 0.44311523, 1.5322266, 0.92822266, 1.1494141, -1.9541016, 1.3935547, 1.1835938, -0.46875, -0.13671875, -1.4072266, -1.1689453, -1.1464844, 1.1464844, -2.4121094, -1.4736328, -0.9868164, 0.36083984, -3.5078125, 2.3671875, 0.42333984, -0.40600586, -0.6616211, -1.2207031, -0.20275879, -1.0615234, 0.56347656, -1.4150391, 0.2841797, -0.890625, 0.19555664, 1.9208984, 2.3027344, -0.4128418, -0.41015625, 0.83447266, -1.5322266, 0.46069336, -0.53515625, 1.6572266, 1.8662109, -0.9770508, -0.07086182, -1.1953125, 4.8007812, 0.82666016, 0.7739258, 1.03125, -1.3291016, -2.8574219, 1.8876953, 2.4453125, 2.8203125, 1.3496094, -0.2902832, 1.5292969, 2.4121094, 0.68310547, 1.4941406, 0.46777344, 0.24597168, 0.5390625, -0.7060547, 1.5986328, -2.1445312, -0.40844727, 0.56640625, 1.6083984, 2.4726562, 3.296875, 1.5351562, -1.3105469, 0.47973633, 0.50683594, -0.2915039, -0.8120117, -0.5444336, -0.98876953, 2.6367188, -0.0725708, -1.9091797, 0.6118164, 3.3476562, -0.2052002, 1.7304688, 0.7836914, -0.34545898, -0.48632812, -1.3066406, -2.0449219, 0.009796143, -0.5942383, 1.1191406, -2.5722656, 1.3828125, -1.0341797, 1.0410156, 1.6025391, 0.6582031, 0.5786133, -0.24682617, -1.7958984, 0.70947266, -1.78125, -0.44628906, -2.4902344, 0.4543457, 1.2255859, 1.3144531, -0.9916992, 0.6953125, 0.3461914, -0.73583984, -0.89404297, 0.86083984, 1.65625, 0.29589844, -1.0498047, 1.4658203, 0.4416504, 0.3984375, -0.75927734, -0.5209961, -0.8876953, 2.4902344, 3.6992188, 1.5996094, 0.07348633, -1.3144531, -1.4990234, -5.296875, -0.48461914, 2.2578125, -0.3557129, -0.28295898, -2.8535156, -0.1348877, 1.0322266, -0.69189453, -0.44458008, -3.0253906, 0.06628418, -1.6289062, -0.76416016, -0.60058594, -0.22509766, -0.06774902, 0.09161377, -1.2460938, -0.014640808, -0.060302734, -0.076416016, -1.5039062, 0.022537231, -1.2041016, -0.37426758, 1.7792969, -1.6445312, -0.83203125, 1.8066406, 1.4238281, -2.5390625, 2.6347656, -3.7558594, 0.47827148, 0.5932617, -1.84375, 1.9990234, 1.9814453, 0.0152282715, 1.515625, 1.6816406, 2.1660156, -0.63427734, -1.5830078, 1.6484375, 0.6801758, -0.92578125, -1.9316406, 0.875, -0.6767578, 0.96191406, 2.0839844, -0.80566406, -2.0527344, -1.3515625, -2.7070312, 1.0117188, -0.8510742, -1.8984375, 0.95947266, 0.50634766, 2.2480469, -1.5839844, 1.3808594, 1.5126953, 0.17480469, -0.36206055, 0.91015625, -0.9243164, 1.5009766, 1.1494141, -0.7680664, -3.4121094, -1.1767578, 2.2617188, 2.7265625, -0.6850586, -0.23669434, 0.19799805, -0.5361328, -0.52490234, -1.1923828, 2.0527344, 0.8745117, 0.8588867, -0.4572754, -0.8691406, 2.7558594, -0.93603516, 0.054779053, 0.8769531, 0.1295166, -1.1337891, 2.4433594, 2.859375, -2.1308594, -0.040039062, -2.5625, 1.3798828, -1.2783203, -0.84277344, 0.47607422, -2.5546875, 0.4033203, 0.31689453, -2.1679688, -3.2519531, 1.6025391, 0.052459717, -1.7529297, 2.0039062, 2.2675781, 0.3256836, -0.7548828, 1.9492188, 1.390625, -0.39526367, -0.5732422, -1.2539062, -0.19763184, 1.2470703, -0.5175781, -0.9453125, 3.5722656, 1.6181641, -0.6201172, -0.35913086, 0.058563232, 2.4179688, 0.80126953, 1.6503906, 3.9570312, -0.60302734, 1.0830078, 1.6416016, 1.1914062, 3.4570312, -0.85595703, 0.62841797, 0.45214844, 0.7792969, -0.06890869, -0.1895752, -0.09161377, -0.6982422, -0.22436523, -0.36767578, 2.7617188, 0.9902344, -3.4296875, -1.6503906, -1.0976562, 0.1373291, -3.1347656, -0.30639648, -2.1484375, -0.20422363, 0.68408203, 0.70703125, 1.3134766, 0.5292969, -1.6367188, 0.03753662, -0.3383789, 2.4726562, -0.6401367, 0.073791504, -1.1640625, -2.3378906, 1.3916016, 2.6953125, 0.29760742, 0.3515625, 1.2636719, -0.2401123, -0.91015625, 0.8232422, 1.0371094, -2.3027344, 0.6801758, -0.99316406, 2.8378906, 1.8632812, -1.5927734, 2.9414062, -0.08929443, -0.2705078, -4.71875, 1.7431641, -0.0055999756, -0.09857178, -1.2509766, -5.1601562, 1.6123047, -2.0332031, -0.16418457, -2.1777344, -0.0027809143, 0.5317383, -1.4248047, 0.63671875, 0.75146484, -2.0820312, 3.4433594, 1.359375, -1.7246094, -0.5395508, 2.6621094, 1.6416016, -0.79785156, -0.49194336, 0.88183594, -0.5751953, -2.3222656, 2.5859375, -1.65625, -1.1464844, 0.2619629, 1.1660156, 0.09173584, 0.62158203, 0.07208252, 1.3642578, -0.5678711, 1.1953125, -0.2322998, -0.88623047, -2.0722656, -0.043151855, 0.39038086, 0.5283203, -0.74365234, -0.78515625, 1.0361328, 0.2861328, -2.2832031, 0.98828125, 1.9560547, -0.87646484, 0.6230469, 0.96191406, -1.1533203, -1.5996094, -0.8808594, 0.10192871, -2.1582031, -0.18383789, -0.6333008, 0.10595703, -1.1962891, -0.6694336, -1.9003906, 0.5341797, 0.35717773, 0.85595703, -0.1907959, -1.1240234, 0.16491699, 0.23083496, -0.9746094, 1.1943359, 1.5087891, -1.4257812, 1.8359375, -0.07110596, -0.23486328, -0.86035156, -1.0849609, 0.76708984, 1.8232422, 2.8984375, 1.6015625, 3.2050781, -2.1484375, -2.8632812, -1.3183594, -2.921875, 1.859375, -0.42236328, -0.8076172, -0.16320801, 2.0292969, 2.4667969, -0.7060547, 1.9072266, -0.90722656, -0.014915466, 1.8037109, -0.96777344, 0.6801758, -0.94873047, -1.0966797, -0.4013672, 3.6601562, 2.5273438, -1.3720703, 0.32128906, 1.0820312, -0.5439453, -1.6669922, 0.6933594, -0.4802246, 0.2553711, 0.85253906, 1.3427734, 2.8691406, 1.1289062, -1.6533203, 0.2487793, -0.22790527]}, "B01BEOULUE": {"id": "B01BEOULUE", "original": "Brand: BootYo!\nName: BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single))\nDescription: Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.\nFeatures: Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders\nPerfect for lanterns, single burner stoves, grills, heaters and other propane appliances\nGreat to take camping, hunting, on construction jobs, work, tailgating!\nLightweight, sturdy, long lasting.\nMade in the USA!\n", "embedding": [-0.58935547, 1.3310547, 0.040893555, 0.7246094, -0.0018234253, -0.59765625, -0.7167969, -0.09564209, 2.4316406, 3.6601562, 0.06555176, 0.5810547, 1.4902344, -4.015625, -0.13977051, -0.6430664, -0.8364258, 3.875, 2.0390625, 0.88378906, 0.95654297, -0.16320801, -0.97998047, -2.4003906, 0.6669922, 1.0810547, 3.6679688, -0.18933105, -0.09326172, -0.4650879, -0.28710938, -0.17785645, 0.3486328, 2.296875, -1.0712891, -0.23400879, -0.1505127, -0.21459961, -2.0761719, -2.0898438, -1.5732422, 1.3798828, 1.4814453, 1.4296875, -1.2900391, -0.72558594, -2.3886719, 1.6396484, 0.11022949, 0.28295898, 0.7861328, 0.6010742, -0.9399414, 0.578125, -0.56591797, -0.71533203, -0.24816895, -2.3046875, 2.5546875, -0.3803711, -0.29052734, -1.0097656, -1.3867188, 0.84521484, -0.0657959, 3.1191406, -1.171875, -2.1015625, 1.5449219, 1.2890625, 1.7324219, 0.875, 0.61083984, -2.2070312, -0.9506836, 2.4199219, -1.0449219, 0.89941406, 0.5361328, 1.5957031, -1.2861328, 1.6611328, 0.25732422, -0.47216797, -0.6611328, -2.0234375, -1.1279297, -0.1472168, -0.6425781, 1.6552734, -1.3085938, 1.5800781, -1.9345703, -4.4375, -0.8178711, 0.79785156, 0.95214844, 1.03125, 3.109375, 0.19299316, 0.40063477, -0.34716797, -0.71875, 1.0302734, -1.7431641, 1.296875, 0.96191406, -0.30810547, -1.1445312, -0.24829102, -1.1279297, -1.9179688, 2.6503906, -1.6972656, -1.0449219, -0.96875, 0.48828125, 1.7617188, 1.6464844, 1.5283203, 1.9960938, -2.203125, 1.4746094, -1.4072266, 1.5410156, 1.4160156, 0.36791992, -0.099731445, 2.140625, 1.3945312, 1.140625, 0.19067383, 2.2460938, -3.1035156, -0.51464844, -1.0029297, -0.1907959, -3.4648438, -1.4892578, -1.3486328, -2.2734375, 0.22851562, 1.0361328, -0.19311523, -2.5136719, 0.5078125, -2.7070312, 1.9599609, 1.1845703, -1.7216797, 1.9550781, -1.2666016, -0.51708984, 1.3027344, 1.1757812, 4.0273438, 1.0351562, -0.4206543, 2.0722656, 0.66503906, 0.7182617, -2.2011719, 0.9121094, 3.8066406, -0.13452148, -2.5976562, -0.22058105, -1.6533203, -0.6113281, -0.35327148, 1.3935547, -2.4296875, 0.22045898, -0.51416016, -1.5771484, -3.0429688, 0.18383789, 2.2871094, -0.01625061, -2.6601562, -3.1113281, -1.9716797, 1.6611328, 1.3847656, -0.14147949, -0.2548828, -2.5097656, -2.0527344, -1.4951172, -1.6064453, -0.7626953, 0.087768555, -0.69628906, 0.9086914, 0.89941406, -2.9023438, 0.03086853, -1.9755859, 2.0351562, 2.6445312, -0.8564453, -1.3203125, -0.009292603, 1.1103516, -1.3740234, -1.5048828, 0.26733398, 0.23718262, -0.9951172, 0.32788086, 0.79541016, -1.0986328, 2.9042969, 1.1152344, 0.14001465, -3.1601562, 0.65722656, 0.1315918, 2.7011719, 1.8681641, 0.7036133, -1.9824219, -0.3815918, 0.26953125, -0.34106445, 0.9501953, 0.875, -1.0517578, -1.828125, -1.2841797, -0.48779297, 0.62841797, 0.3876953, 0.17907715, -0.03050232, 2.6523438, 0.41479492, -0.29614258, 0.108947754, -0.6455078, 0.30786133, 0.05718994, -2.8457031, -0.84716797, 0.24267578, 0.8432617, -0.8535156, -0.39794922, 1.5048828, -1.7392578, 2.1191406, -1.0712891, 1.3339844, 0.29956055, 0.17199707, 0.6928711, 0.3269043, 0.48242188, -0.3317871, -1.5244141, 1.5175781, 2.4375, -0.5048828, -0.7807617, 0.76416016, -0.4506836, 0.8496094, 1.0800781, -1.765625, 0.32421875, 1.6542969, 0.89941406, 1.7949219, -0.45141602, 1.6464844, 2.8320312, -2.5351562, 2.1484375, -0.44970703, 1.5400391, 1.2558594, 1.0029297, 1.6220703, -4.6210938, 0.3642578, 0.75390625, 1.5302734, -0.59765625, -3.0859375, 0.62402344, 3.2988281, -0.0038280487, 0.16430664, 1.4492188, 0.07574463, 1.0166016, 0.9526367, 0.4584961, -0.1986084, -0.91503906, 1.2910156, 0.6586914, -1.3564453, 0.49609375, 2.5019531, 1.2197266, 0.8798828, -0.23803711, 2.1777344, -0.3972168, -0.57128906, -0.375, -1.2509766, 1.6005859, -0.05621338, -1.7099609, 1.1376953, -1.6796875, 1.9423828, 2.2480469, 1.9365234, 2.0683594, 0.30786133, -1.2939453, -0.078063965, 3.59375, -2.2734375, 0.29614258, -0.09033203, -1.4306641, -1.359375, -2.1152344, -0.004600525, -0.030685425, 0.78466797, -0.5180664, -1.2636719, -1.3222656, 1.7646484, -1.9423828, 0.4963379, 1.2402344, -2.2421875, 1.3056641, -0.8017578, -2.4589844, 0.054718018, 1.9511719, -0.1282959, -3.4609375, 0.3190918, 1.8339844, -1.4042969, -5.3359375, -0.12902832, -0.58935547, -1.3652344, 1.5634766, -2.3613281, 0.51708984, 0.4650879, 0.00011944771, 0.93359375, -0.8676758, -1.3554688, -1.2109375, 0.38134766, -3.8183594, 1.1123047, -0.8486328, 0.87158203, -2.7070312, 1.1738281, -0.6660156, -2.2753906, -1.0029297, -0.6894531, 4.4453125, -0.28637695, 1.6582031, -1.8720703, -0.74658203, 0.10003662, -0.5698242, -4.3164062, 1.0185547, -0.3725586, -0.9038086, 0.49804688, -5.5273438, 0.88964844, -3.0527344, 0.27734375, -0.029052734, 0.9794922, -1.6289062, -1.9902344, 1.2939453, 0.05630493, -0.72802734, -0.98095703, 1.0742188, 0.007282257, 0.63378906, -0.38061523, -1.2597656, 0.08380127, -1.5839844, 0.6923828, -0.80126953, -0.5732422, -0.0052833557, 0.06933594, 0.9267578, 1.0283203, -2.203125, 1.0546875, 3.5078125, -0.34838867, -0.92822266, -0.94970703, 1.8486328, -1.0498047, -1.9785156, 2.9472656, 0.47705078, 2.1347656, 1.6679688, 1.2216797, 0.453125, 0.44604492, -0.5703125, 0.82714844, 1.5761719, 3.0898438, -1.4707031, -0.85595703, -0.44018555, 1.9267578, -2.5488281, -0.11395264, 0.1508789, 0.75146484, 0.48364258, 2.296875, -0.52441406, -1.3486328, 1.0869141, 0.9873047, -0.036071777, -1.7128906, 3.0429688, -1.1992188, 0.009414673, 1.8652344, 1.2011719, 0.53759766, -0.2998047, 0.69628906, 2.7929688, 0.4650879, -0.34936523, 0.26464844, 1.2910156, -0.015716553, -0.5214844, 2.078125, -0.8066406, 0.38208008, -0.43115234, 1.1220703, 1.328125, -0.67626953, 0.8598633, 0.2446289, 0.6665039, -1.8701172, -0.081848145, -1.0371094, -2.8144531, -1.7158203, 0.9814453, 1.4824219, -1.0068359, -1.0107422, -0.7055664, 1.4716797, -2.125, 0.15124512, -0.91552734, -1.7275391, -0.9741211, 0.99658203, -1.0654297, -2.484375, -1.5849609, -0.75927734, -0.49291992, 3.8183594, 2.8144531, -0.56591797, -0.4711914, -0.32421875, 0.46044922, 1.9589844, -2.2460938, -1.7314453, -0.8276367, -0.60546875, -0.5629883, -1.8378906, 1.3818359, 0.6611328, -2.9628906, -0.8696289, 0.058441162, 2.1777344, -0.3149414, -0.9741211, -1.6689453, -0.41333008, -2.7363281, 1.7490234, 1.4863281, 0.49438477, -0.83984375, 2.5253906, 0.6035156, 0.7294922, -0.1227417, -0.5834961, -2.84375, 0.54541016, -0.8730469, -0.00022339821, 3.3691406, -2.0957031, -0.9848633, -0.53808594, 0.23632812, -0.35229492, -0.59521484, 0.9589844, 3.6777344, -2.0566406, -1.4667969, -0.79052734, 1.0820312, -2.1347656, -1.390625, 0.85498047, -0.5703125, -0.8935547, 1.1806641, -0.78466797, 1.109375, 0.8588867, -0.5576172, 0.2890625, 0.8989258, 1.5761719, -1.7099609, -1.5400391, -0.9042969, 1.0625, -0.16992188, 0.44091797, 1.4814453, 1.8740234, 3.0195312, 0.65478516, -1.5478516, -0.5629883, 0.8100586, 0.38354492, -2.2285156, -0.7055664, -2.3847656, 0.029693604, -0.578125, -0.5541992, 0.112854004, 0.8935547, 1.0029297, 0.9921875, -0.7758789, 1.609375, 0.62646484, -0.75878906, 2.8691406, 0.87158203, 0.28271484, 0.51904297, 0.28564453, 0.6176758, -1.1035156, 1.4746094, -1.1044922, 0.010353088, 0.25854492, 1.4902344, -0.82128906, -2.2773438, 1.9228516, 0.8105469, 2.2304688, -0.36547852, -3.3945312, -0.8198242, 0.5449219, 0.6640625, 0.30664062, 0.22045898, 0.23999023, -0.82128906, 1.1943359, 0.76123047, 0.1538086, -1.7285156, -0.042541504, -0.74316406, -1.3486328, 0.8046875, -4.4804688, 0.7998047, -1.9443359, -1.6220703, 1.9960938, -3.8945312, 0.3798828, -0.6826172, 0.3395996, -0.3232422, 0.09509277, 1.0478516, 2.5195312, 1.4638672, -0.2614746, -0.46020508, 1.4365234, 3.2714844, -1.2978516, 0.70214844, -0.19958496, 2.2675781, -1.1523438, 1.5429688, 0.39404297, -0.27124023, 0.5239258, 1.2685547, 2.6015625, 1.1572266, 1.1347656, -2.2695312, -0.7182617, 2.3886719, -1.5263672, 0.87353516, 0.16345215, -0.71875, 2.8398438, -0.6567383, -1.9560547, 0.42260742, 1.4111328, -0.9892578, 1.6103516, 0.2142334, 0.7944336, -1.2470703, -1.7451172, -1.8779297, -2.65625, -0.34643555, 0.085754395, 0.022232056, -0.52246094, 0.24414062, 1.1425781, 0.6381836, 1.8886719, -0.9433594, -0.06829834, 0.8105469, 0.1418457, 1.7597656, -1.0625, -2.5234375, 1.4365234, -1.2070312, 1.8574219, 0.73876953, 1.234375, 2.1914062, -2.6113281, -1.4619141, -1.2431641, 1.5664062, -1.15625, -0.026885986, 1.9570312, 1.7275391, -0.453125, -1.3115234, -1.1054688, -1.6142578, 0.93066406, 1.7783203, 0.3383789, -1.3125, -0.47070312, -4.4101562, -4.1796875, -0.7036133, 1.0947266, 1.6542969, 1.0556641, -1.3613281, -1.4931641, -0.62353516, -4.1289062, -1.1884766, -0.89160156, 1.5449219, -0.5527344, -1.4296875, 0.23706055, -0.99609375, 0.34985352, -1.5849609, -2.4042969, -0.23071289, -0.65625, -2.0019531, -3.3691406, 0.60253906, 0.5449219, -0.5385742, 1.1708984, -0.26757812, 1.6533203, 2.65625, 1.6025391, -1.4560547, 1.5585938, -1.6494141, -0.62841797, 0.2998047, -0.6191406, -1.2822266, -0.11517334, 0.2800293, 1.5361328, 0.53808594, 1.8789062, -1.3720703, -0.6928711, -1.421875, -0.45922852, 2.0742188, 0.9941406, 3.4433594, -0.3840332, 1.4423828, 2.4433594, -0.73583984, -1.8310547, -0.70751953, -1.2871094, -0.5810547, -1.3027344, -1.2255859, 0.47045898, -0.04373169, 0.42626953, 1.4267578, 0.69140625, 0.8383789, 0.22937012, -1.4199219, 2.1113281, -0.44580078, 2.7597656, 0.30395508, -1.5849609, -2.1855469, -3.2128906, 3.1835938, 1.9365234, -2.4335938, 0.13415527, 0.77441406, -0.5834961, 0.07873535, -1.2236328, 2.9199219, 1.3349609, 1.9365234, -2.7128906, -0.66845703, 1.1220703, -0.3996582, 0.44091797, -0.030914307, -0.5878906, -0.20251465, -1.7138672, 0.19885254, 0.61572266, -0.80371094, 0.6508789, 1.9736328, 0.08270264, -1.1826172, 0.082458496, -1.0361328, 0.12438965, -0.86035156, -0.7739258, -2.6660156, 0.75341797, -0.81103516, -1.4111328, 1.4658203, 2.359375, -2.5820312, -0.40698242, 0.44213867, 2.1191406, -0.84765625, -1.8603516, 0.6879883, 0.115600586, 2.6425781, -1.2421875, 2.03125, 0.5913086, -1.3886719, -1.1865234, -0.11328125, 0.9057617, 0.39892578, 3.2128906, 1.0771484, 2.8378906, -0.24438477, 2.4453125, 0.09234619, 0.97802734, 3.03125, -0.82373047, 1.8671875, 2.59375, -1.2587891, 0.34570312, -1.4453125, -0.61083984, -1.5332031, -2.0605469, 1.2470703, 1.2216797, 1.1845703, -2.5058594, 0.18334961, -1.6826172, 0.8876953, 1.9091797, 1.7802734, -1.2792969, -0.55859375, -0.06665039, 1.984375, 1.2675781, 0.23901367, 0.7348633, -0.97216797, 0.5292969, -0.2998047, -1.9160156, -2.0917969, -2.1191406, -1.5449219, 0.6669922, 2.0449219, 3.0957031, 0.35668945, 1.859375, -0.45703125, 0.5205078, -0.28759766, 0.22009277, 0.6777344, -1.1689453, 0.24804688, 1.4882812, 2.4042969, 0.18688965, 0.77978516, 0.9326172, -1.1132812, -3.5292969, 1.3505859, 1.5380859, 1.3203125, -0.21911621, -1.8681641, 0.9589844, -2.859375, 1.3564453, -1.1513672, -0.22302246, -0.57666016, -0.13513184, -0.49389648, -0.28930664, 1.5507812, 1.8242188, 2.2070312, -0.7026367, 1.046875, 0.98291016, 1.7695312, -1.1835938, 0.8588867, -1.3681641, 2.5722656, -0.68359375, 2.2871094, 1.3564453, 0.48461914, -0.016616821, 2.0292969, 1.5966797, -0.27270508, 1.0556641, -1.4882812, 3.4355469, -1.2851562, 1.7841797, -0.3544922, -2.1796875, -1, 1.8896484, 0.3269043, 0.6333008, -0.0574646, 0.025680542, 0.5131836, -1.5556641, 1.3134766, 1.5039062, -1.5507812, 0.7578125, 0.6538086, -0.6796875, -0.5229492, -0.4633789, 0.5888672, -2.578125, 0.3173828, 1.5048828, 1.5439453, -0.7524414, -1.5820312, -0.64746094, -0.79833984, -0.51220703, 0.07757568, 0.64208984, 0.9140625, 0.08532715, 2.1894531, -0.1352539, -0.44018555, -0.54833984, 0.29711914, -0.18762207, 2.3730469, -2.0703125, 3.3847656, 0.4741211, -0.49243164, 2.3144531, 2.765625, -2.1035156, -0.18762207, -1.3183594, -3.75, -0.7993164, -1.8320312, 0.12719727, 1.7714844, -1.1416016, 1.9296875, 0.94873047, 0.4086914, -1.5996094, 0.8144531, 0.5390625, 1.1259766, 3.0273438, -0.6621094, 1.6914062, 0.8051758, -0.14135742, -1.140625, 3.7558594, 1.5908203, -0.7661133, -0.05328369, 2.234375, -0.39233398, -3.0722656, 0.5161133, -1.8115234, -1.0458984, -0.6611328, 0.46948242, 1.6220703, -0.7163086, -1.0527344, -1.8320312, -1.4628906]}, "B06XTGCQ7P": {"id": "B06XTGCQ7P", "original": "Brand: GasOne\nName: GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects\nHigh heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU)\nConvenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box\nHeavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSafety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "embedding": [-2.0507812, 1.2529297, 1.34375, 0.93310547, 0.7114258, 1.2685547, 1.0351562, -1.3730469, -1.4609375, 0.94189453, 1.2373047, 0.049438477, 0.21081543, -1.4921875, 1.0126953, 0.10443115, -0.70996094, 1.4648438, -0.1138916, 0.9741211, 2.6972656, 0.026138306, 1.7109375, -1.1894531, -0.6542969, 0.8588867, 2.7246094, -2.6347656, -0.9980469, -1.0791016, 2.5488281, 0.6665039, 0.07299805, 1.0263672, -2.9042969, -0.49853516, -0.99072266, 1.0400391, -3.7402344, -0.38012695, -1.1083984, -0.63134766, 2.28125, 0.032073975, -1.9013672, -0.3347168, 0.71191406, 0.3317871, -1.4628906, 0.3647461, -0.01889038, 1.6767578, -1.3330078, 0.6455078, -1.0292969, 0.083618164, 1.7041016, -2.5878906, 1.1171875, 0.6044922, 2.4414062, 0.7368164, -1.0068359, 0.4951172, -2.4492188, -0.06707764, -0.018356323, -0.35107422, -1.1533203, -0.37646484, 3.0839844, -0.10784912, 0.32348633, 0.18041992, -1.5605469, -0.16540527, -3.4277344, 0.7216797, 3.1074219, -0.4951172, -0.8183594, 1.1201172, 1.4492188, -0.3178711, -0.59521484, 1.0800781, -1.4931641, -1.7929688, 1.3466797, 0.8432617, -2.4726562, 3.2089844, -2.2578125, -4.0664062, 1.6689453, 0.22692871, 0.5913086, 1.6728516, 0.5986328, 0.45947266, -0.74560547, -1.25, -1.6269531, 0.91503906, -1.3564453, -0.9277344, 2.2050781, 1.390625, -3.4082031, 2.0058594, -2.7636719, -1.1035156, 1.0947266, -0.5839844, 1.4072266, -0.89501953, -0.8857422, 0.11114502, 3.1914062, 0.4399414, 3.6386719, -0.6357422, 0.70654297, 0.05633545, 0.76708984, 1.1025391, -1.3466797, 0.3239746, 2.8554688, -1.2050781, -0.7294922, -1.4169922, 1.8359375, -0.28881836, -0.9604492, -1.2978516, -0.61621094, -3.0371094, -2.71875, -0.10620117, -2.6894531, 2.328125, 0.80566406, -0.046142578, -3.859375, -0.37695312, -0.5864258, 2.5957031, 1.9013672, -1.7705078, 0.70996094, -1.3671875, -0.009307861, -2.265625, 1.6796875, -0.14160156, -1.2050781, -1.9716797, 2.2617188, 1.4619141, 0.5727539, -1.1308594, -2.609375, 1.5341797, 0.13647461, -1.4716797, 1.0048828, 0.1451416, -2.6523438, 0.52197266, 0.087768555, -1.7197266, -0.48046875, 0.60839844, 0.20178223, -1.2587891, 0.28955078, 2.7167969, 1.6767578, -1.0195312, -2.6953125, -3.0996094, 0.6191406, 1.2421875, 0.6020508, 0.054016113, -0.1673584, -0.29101562, 0.9326172, -1.3759766, -0.5932617, 0.10687256, 0.12658691, 0.9614258, -0.12261963, -2.3925781, -1.9277344, -0.9995117, -0.119262695, 1.3476562, -0.29711914, -0.27807617, -0.38330078, 0.8510742, -1.8017578, -1.2050781, 0.23364258, -2.3300781, 2.1132812, 2.2421875, 0.7895508, -0.24072266, 1.5136719, 0.83203125, -1.3496094, -0.921875, 3.203125, 0.8828125, 0.89941406, 1.7978516, 1.0224609, -1.3603516, 1.9521484, 0.47802734, 0.2565918, 2.3183594, 0.8227539, 0.77783203, -2.3886719, -1.7412109, 3.7890625, 0.40966797, 0.0035095215, 1.0283203, -0.57958984, 2.4121094, 1.3339844, -0.5854492, -0.046081543, 0.5151367, 0.30786133, -1.3564453, -1.0234375, -0.3100586, -1.9873047, 2.0214844, -0.6166992, 0.29370117, 2.3945312, 1.0712891, -0.20812988, 0.60791016, -0.5341797, -0.59765625, -1.2919922, 0.42919922, 0.40698242, 1.5097656, -0.93310547, -2.2167969, 1.7128906, 1.7861328, -0.67626953, 1.3613281, -0.4855957, -1.4882812, 3.2910156, 0.9243164, -2.3574219, -0.33007812, 0.6459961, 0.6923828, 4.1132812, -1.6943359, 1.9990234, -0.5942383, -1.8037109, 3.5488281, -0.17919922, 2.5703125, 0.70214844, -2.0644531, 1.9814453, -1.5322266, 1.40625, 0.91796875, 2.3769531, 0.18408203, -1.3720703, -0.31445312, 5.6289062, -0.7583008, -2.7851562, 1.8408203, -0.6435547, 0.6381836, 0.5703125, 0.27075195, 0.6171875, -0.3491211, 2.1210938, 0.10333252, 0.10620117, 0.98828125, -0.24829102, -1.0107422, -0.21936035, -1.1845703, -0.32714844, 0.5234375, -0.21838379, -0.53759766, -1.3886719, 1.0224609, -2.3183594, -0.4099121, 1.9111328, -2.6328125, 0.55078125, 1.3349609, 1.3408203, 2.5703125, 0.72021484, -0.7631836, 1.3535156, 0.3635254, 0.26464844, 1.4912109, 0.21472168, -1.7558594, -1.3505859, -2.0195312, 0.13354492, -0.74072266, -1.6298828, 0.515625, -1.3007812, -2.9042969, 1.2792969, -2.3652344, -1.4433594, 1.5078125, -2.140625, 1.6308594, -1.3828125, -2.4375, -1.1025391, 0.60595703, -0.9394531, -0.84033203, 1.1904297, 2.3125, -1.3642578, -2.7226562, -1.0751953, 0.07055664, -0.51416016, 0.030380249, -0.953125, 1.4765625, 1.1113281, -0.009521484, -0.035949707, 0.05783081, -0.2475586, -3.0195312, 1.5029297, -4.0429688, -0.3227539, -1.6376953, 0.16577148, -0.12878418, -0.8745117, -2.5683594, -1.6884766, 0.26708984, -0.8911133, 3.5605469, -1.4033203, 1.7871094, -0.17041016, -1.6816406, -0.2644043, -1.8632812, -3.5078125, 0.5551758, -0.2590332, -1.9326172, -0.4140625, -4.0078125, 0.65478516, -1.6982422, 0.048614502, -0.8676758, 0.69091797, -1.5478516, -0.2692871, -0.5107422, -1.0361328, -0.39916992, -1.1660156, -0.90722656, -2.0175781, -1.1367188, -0.07269287, -1.6513672, 0.18286133, 0.95410156, 1.2597656, 0.65966797, -0.1616211, 2.3515625, 1.0146484, -0.0574646, -0.4951172, -3.1816406, 3.0878906, 0.87402344, -1.0644531, 0.40405273, -2.1621094, -1.2822266, -2.4335938, -0.26098633, 3.1269531, 1.2304688, 3.140625, 0.6923828, -0.5961914, 0.86621094, 1.7910156, -0.55615234, -2.4492188, 0.014183044, 3.4726562, -1.4785156, -0.47998047, 0.8510742, 2.515625, -2.328125, -0.5029297, 1.3291016, 1.9140625, 2.2441406, 1.6503906, 0.92822266, -1.0664062, -1.0410156, -0.16662598, 1.3984375, -0.17785645, 0.39819336, 0.65478516, 0.98535156, -0.34521484, 1.5517578, 1.1542969, 1.6679688, 3.2421875, 0.7080078, 1.0097656, -2.0390625, -0.171875, -0.07635498, 1.0273438, -0.3684082, 1.8505859, 0.17272949, -1.3261719, -1.3183594, -1.2060547, 1.5849609, -1.7695312, 0.3552246, 1.0664062, -0.6713867, 1.2207031, 0.88134766, -0.4650879, 0.75146484, 0.32910156, 2.21875, 0.9692383, -0.13513184, 1.8339844, -0.113098145, 0.23937988, -2.6171875, 1.4746094, -1.0146484, -0.9404297, 1.1044922, 1.7236328, -3.234375, -2.1289062, -0.51708984, -1.1396484, -0.80859375, 3.2246094, -0.14672852, -2.3183594, 0.6513672, 0.29052734, -0.42456055, 2.3144531, -1.0146484, 0.1171875, -2.1757812, -0.33422852, -1.1132812, 0.828125, 1.3095703, 1.5927734, -3.0136719, 0.6953125, -3.3320312, -0.35009766, 0.9003906, -1.0166016, -0.20629883, 2.3222656, -1.0976562, 1.0947266, -0.9301758, 3.9628906, -1.9570312, -1.4345703, 3.0449219, -3.1054688, -0.765625, -2.1074219, -3.8515625, 1.6435547, -1.4990234, -0.5019531, 2.9804688, 0.41674805, -0.59472656, 1.3212891, 1.9824219, -1.2548828, -1.3886719, -0.48266602, 1.7958984, -2.2265625, -0.6777344, 0.73779297, 0.7363281, -2.0058594, -0.83984375, -0.20947266, -0.18371582, 0.10876465, 1.1337891, -3.6386719, -0.33520508, -0.7661133, -0.22961426, -0.52441406, -1.0810547, 1.5595703, -1.1845703, -0.3725586, -1.1582031, 1.5908203, 0.43359375, 0.31958008, 0.5395508, 4.640625, 0.8129883, -0.09680176, 0.61816406, 0.5292969, 1.4804688, -0.16540527, -1.8007812, -2.6015625, 0.18835449, -0.5292969, 0.38085938, 0.06854248, -1.7255859, -1.3876953, 1.8945312, 2.5117188, 1.8056641, 1.359375, 1.5771484, -0.7597656, 1.1328125, 0.38330078, -1.6679688, -1.0371094, -0.19189453, 0.64160156, -1.8769531, 0.9941406, -1.2744141, -0.5810547, -0.30859375, -0.9902344, -1.5107422, 1.5976562, 1.1386719, 0.24621582, 2.4921875, -0.90283203, -2.4628906, 0.41845703, 1.1445312, -0.49780273, 0.7026367, -0.17358398, -0.73046875, 2.1699219, 0.57470703, -0.43676758, -2.0078125, 1.8300781, -1.0488281, 0.024887085, -1.0498047, 0.9746094, -0.4128418, -0.9345703, 0.23803711, -1.0302734, 1.9970703, 0.011856079, -0.65966797, 0.1459961, 0.11242676, -2.5390625, -0.3618164, 0.67578125, 0.3461914, 0.11401367, 1.3808594, 0.7475586, 0.6425781, 1.9365234, -0.053222656, 1.8271484, 1.4472656, 1.1572266, 0.42797852, 0.94873047, -1.2460938, -1.5556641, 1.5458984, 1.5693359, 1.5087891, 4.5195312, 1.7822266, -0.41918945, 1.1748047, 1.3173828, -1.2841797, -1.4355469, -0.29882812, -1.1621094, 1.625, -0.07116699, -1.8085938, 0.38793945, 3.8671875, -0.14074707, 1.5175781, 0.23254395, -0.5722656, -1.4013672, -2.8105469, -0.95751953, -1.4140625, -0.18530273, -0.2541504, -1.7421875, 0.66796875, -1.1474609, 0.3173828, 2.0214844, -1.3583984, 0.46191406, 2.6621094, -0.6958008, 1.578125, -1.2128906, -0.0076904297, -2.3964844, 1.4873047, 2.4882812, 1.5742188, 1.4140625, 0.3359375, 0.41918945, -1.6748047, -1.8691406, -0.5966797, 1.5214844, -2.2246094, -2.1367188, 1.2792969, 0.8178711, 0.83496094, -1.2929688, -1.3759766, -1.9726562, 2.9804688, 2.1503906, 1.6025391, -0.07861328, 0.12176514, -1.5869141, -4.2929688, -0.48291016, 0.98535156, 0.32763672, -0.94921875, -0.8417969, -1.2871094, -0.23278809, -1.1679688, 0.55126953, -2.515625, 0.57470703, 0.18444824, -0.56933594, -0.55859375, -0.13293457, -0.45214844, 1.0029297, 0.77783203, -0.6489258, 0.8208008, -1.484375, -1.7285156, -0.37597656, -1.7880859, 1.4414062, 0.6723633, -0.2553711, 0.80029297, 2.53125, -0.4111328, -2.9746094, 2.3691406, -1.8955078, -0.32348633, 1.1455078, -1.1416016, 1.1738281, 0.85839844, -1.7265625, 1.5605469, -1.5966797, 0.16430664, -0.09020996, -0.35498047, 0.7260742, 1.5332031, -0.76220703, -1.6015625, 2.0566406, -0.33935547, 1.1416016, 2.6035156, -1.1845703, -1.5019531, -1.5419922, -2.390625, 0.58251953, -1.4111328, -0.53271484, -0.23388672, 0.18981934, 0.73291016, -1.0976562, -0.006011963, 1.0556641, 0.18969727, -0.2788086, 2.0605469, -0.9223633, 3.4882812, 1.1484375, -0.005493164, -3.6152344, -2.7617188, 0.7246094, 1.3642578, 1.1318359, -1.484375, -0.037872314, -0.6538086, -0.16491699, -0.9692383, 1.4169922, 2.4707031, 1.1835938, -0.54833984, 1.7509766, 2.6269531, -0.6538086, -0.10803223, 0.018371582, -0.36865234, -0.9267578, 3.3496094, 2.2578125, 0.44921875, 1.625, -1.4921875, 2.7578125, -0.78271484, -1.8076172, 0.6118164, -2.0371094, -0.9716797, -2.1894531, -1.7802734, -2.25, 1.6181641, 2.1738281, -0.047668457, -0.04837036, 2.171875, -0.49121094, 0.70214844, 1.4736328, 1.8261719, -0.8486328, 1.3720703, -1.0019531, -1.1455078, 1.65625, -2.1328125, 0.7373047, 2.8632812, 0.27685547, -1.1142578, 3.0546875, 0.4921875, 2.8554688, 1.8300781, 0.828125, 2.3828125, 0.65771484, 1.9511719, 0.77783203, 1.1201172, 3.0019531, 1.4277344, -0.33544922, 2.4785156, 0.8203125, 0.12939453, -0.83691406, 0.64746094, -0.5332031, -1.6826172, 0.08673096, 0.24023438, 0.73583984, -3.6875, 1.4453125, -1.2158203, 1.2919922, -1.2177734, 1.0761719, -0.69677734, -2.0078125, 0.4609375, -0.6933594, -0.4326172, -0.61035156, -0.5493164, -1.4140625, -0.65771484, 1.7910156, -2.6054688, 0.72753906, -2.5605469, -3.1621094, -0.29663086, 1.4267578, 0.28979492, 1.0185547, 0.43017578, 1.5244141, 0.33129883, 0.15307617, 1.2412109, -2.3613281, 0.8491211, -0.16625977, 2.5195312, 0.48388672, -0.8388672, 3.359375, -1.6552734, -2.2597656, -4.671875, 2.7734375, -0.22131348, 0.57373047, 1.3105469, -2.4902344, 3.7675781, -0.1595459, 1.1289062, -2.9023438, 1.1513672, 0.6791992, -1.4033203, -1.5146484, 0.9770508, 0.0236969, 4.1679688, 0.53222656, -1.4501953, 1.0693359, 0.6977539, 0.99072266, -0.4729004, 0.8066406, 0.80566406, 0.62158203, -1.2685547, 2.5722656, 0.9638672, -1.9082031, -0.9272461, 1.8857422, 1.8417969, 1.09375, 0.6386719, -1.4765625, -0.4736328, 1.0419922, -0.46655273, -0.08068848, -0.8984375, -1.78125, -1.6347656, -0.97558594, -2.2246094, -2.6914062, 1.4287109, 0.87353516, -0.5205078, 0.4790039, 2.9296875, -0.7001953, 0.54541016, 0.84277344, 0.06323242, -1.2890625, -0.8276367, 0.63916016, -2.3613281, -2.0078125, 0.2211914, -0.10845947, 0.36572266, -0.49804688, 0.43188477, -0.6503906, 0.2980957, 1.6738281, 1.4824219, -0.93652344, -0.3095703, 0.26342773, -0.91552734, -0.81152344, 2.7714844, -1.1367188, 0.4584961, -0.036743164, -2.9199219, -1.3095703, -0.8833008, -0.23620605, 1.1904297, 3.4277344, 0.57421875, 1.8925781, -3.2558594, -3.5214844, -1.4365234, -1.8242188, 1.7226562, 0.027435303, -0.30932617, 0.5649414, 1.5029297, 1.4121094, -1.3798828, 0.22607422, -0.73828125, -0.32495117, 0.7626953, -0.99316406, 1.6386719, 0.07098389, 0.87353516, -1.0927734, 3.484375, 2.0820312, -0.37670898, 0.6113281, 0.74902344, -0.018844604, -2.6875, 0.7910156, -1.7177734, -0.59228516, 0.6699219, -1.2910156, 2.4804688, 1.7802734, -1.8144531, -1.6689453, -1.2519531]}, "B07D6FSMX3": {"id": "B07D6FSMX3", "original": "Brand: ISUMER\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill\nDescription: Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking\nFeatures: Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\nFirm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting.\nEasy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean.\nAdjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill\u2019 height and balance.\nGrill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.\n", "embedding": [-2.1679688, 2.3476562, 0.7446289, 0.71240234, -1.7001953, -0.44213867, 0.9350586, -1.5527344, -2.2832031, 3.1699219, 0.4790039, -1.8671875, 0.26660156, -3.2734375, -0.56152344, 0.06640625, 2.5664062, 0.4658203, 3.8261719, 1.0429688, 0.9667969, -0.59228516, 0.96777344, -0.06530762, 2.3398438, -1.2558594, 4.0195312, -1.7382812, 0.69140625, -1.8427734, 2.4667969, -0.032928467, 0.8745117, 1.3720703, -1.1123047, -0.2006836, -2.4140625, 1.9580078, -0.734375, 0.5317383, 0.3791504, -1.9365234, 3.0488281, -1.390625, -3.140625, 0.3864746, -0.74658203, 1.6699219, 0.28295898, -3.8398438, 1.6806641, 0.42163086, 0.7055664, 2.3554688, -2.1640625, -0.03591919, -1.4941406, -2.3886719, 2.2851562, -2.125, 1.6367188, -0.77441406, 0.39526367, 1.1630859, -0.26123047, -1.8652344, -1.3789062, -0.7392578, 0.23583984, -0.6352539, 0.23583984, -1.78125, -2.4882812, 0.020324707, 1.2285156, -1.3427734, -1.5, 2.2089844, 0.5566406, 0.9116211, -2.4609375, 2.6445312, 0.95947266, -0.49804688, -0.053833008, 0.11975098, -0.5805664, -1.1425781, 1.4853516, 1.4970703, -1.0820312, 1.5029297, -0.7675781, -3.5976562, 2.3222656, -2.1777344, 2.3203125, -1.2675781, -1.5917969, 2.03125, -1.6962891, 0.50146484, -0.0031909943, 0.071899414, -2.4453125, -1.2695312, 2.6113281, -0.22351074, 0.49902344, 2.3007812, -1.1992188, 0.3647461, 0.25073242, 1.2861328, -0.15393066, -0.1998291, 0.14660645, 2.7617188, 1.9882812, 2.6054688, 5.3320312, 1.2333984, -0.30004883, -3.703125, -0.99658203, -0.17602539, -0.3154297, 1.7558594, 4.125, -0.6113281, 0.2680664, -0.96484375, 0.8120117, 1.4814453, -2.5136719, -2.1796875, -1.5341797, -0.6220703, -3.6289062, 2.1054688, -2.3222656, 2.7207031, 3.0976562, -1.6933594, -3.2832031, -0.47338867, -0.6801758, 2.1425781, -0.8256836, -0.74121094, -0.043762207, -1.796875, -0.7729492, -0.5180664, 1.578125, -0.36279297, -1.0341797, 0.484375, 2.7890625, 0.58740234, 1.671875, -1.9785156, -1.1367188, 1.1064453, 1.7666016, -2.7382812, 0.08178711, 1.8427734, -0.6972656, 2.7441406, 1.1171875, -2.3496094, 1.1630859, -0.17858887, 2.0722656, -1.4941406, -1.3125, 1.796875, -0.47680664, -1.1220703, -0.035064697, -3.296875, 2.5644531, 0.80322266, 0.0042495728, -0.9296875, -0.34301758, -0.64208984, -0.31201172, -1.6865234, 0.4013672, -0.16503906, -0.67089844, -0.12432861, 0.57373047, -0.48266602, -1.0712891, -1.7998047, -1.1191406, 0.67871094, -1.1298828, -0.5136719, -1.7089844, -1.4716797, -1.7988281, -2.0839844, -0.52783203, 1.0654297, 1.8066406, 1.7607422, 0.17150879, -0.59033203, 1.2871094, 1.7910156, -0.2529297, -0.55908203, 0.8203125, -1.4365234, 0.92626953, 2.0644531, -0.51904297, -0.8623047, -0.3076172, 3.6289062, -0.24194336, 3.2539062, -0.19152832, 0.40698242, -0.45092773, -1.6748047, 2.8183594, 1.3300781, 0.08416748, -0.24328613, -1.0097656, 2.7128906, 2.3769531, -0.6933594, -1.7246094, -0.07147217, 0.24645996, -2.2910156, -0.95996094, -2.4082031, -1.8339844, -1.6279297, -0.62353516, 1.7578125, 0.9042969, -0.5332031, -0.71533203, 1.1582031, 0.009307861, 1.1914062, 0.39770508, 2.5292969, 0.30859375, -0.2133789, -1.203125, -2.2148438, 0.041534424, 1.2871094, 0.5649414, 0.59716797, 1.2294922, -2.2675781, 2.3496094, 1.9755859, -3.1835938, -0.14257812, 3.2753906, 1.8300781, 0.8413086, -0.8330078, 1.9658203, -0.80810547, -0.18603516, 0.4189453, 3.1542969, -0.43164062, 0.3642578, -0.09844971, 1.9863281, -1.953125, -2.4882812, -2.7167969, -0.5029297, -0.13647461, 0.64453125, 1.3222656, 3.8457031, 0.48950195, -2.1464844, 3.6640625, -2.6425781, 0.7338867, 1.8671875, -1.3164062, 1.1279297, 1.2421875, 1.3476562, 2.4355469, -0.12902832, 1.4863281, -2.6230469, -0.7163086, 0.23327637, -1.046875, 0.9243164, 2.0722656, -0.07940674, 1.0224609, -1.3583984, 0.7836914, -2.1777344, -1.4726562, 1.046875, -1.8544922, 0.6430664, 3.0585938, 0.8979492, -1.0185547, -0.46923828, -3.4804688, -0.74121094, 1.1679688, 0.33251953, 1.0664062, 3.0722656, -0.6948242, 0.73291016, -0.43823242, 0.59375, -2.4980469, -2.5351562, -1.9814453, -0.6796875, -3.0683594, 0.93310547, -0.9589844, -0.07965088, 0.28930664, -2.4628906, -0.008300781, -0.7558594, -4.28125, -0.5527344, 0.6582031, -0.54248047, -0.01512146, -1.1455078, 0.64746094, 1.3945312, -5.6992188, -0.7426758, 1.0800781, 1.4199219, 0.32470703, -1.8457031, 1.6279297, -0.2166748, 2.1835938, 0.32666016, 1.9179688, 0.5683594, -0.5024414, -1.4853516, -3.5019531, 0.92285156, -1.0146484, -0.51416016, -0.42871094, 0.3232422, -2.6054688, -1.5058594, -0.11151123, -1.5410156, 4.6796875, -0.71240234, 1.2666016, -1.1464844, -0.70654297, -0.6171875, 1.4541016, -2.2441406, -3.0644531, 0.45043945, -0.79052734, -1.1357422, -2.0722656, -0.7216797, 0.12030029, 0.087768555, -0.42944336, 0.88671875, -1.8945312, 2.7558594, -2.6699219, -0.81689453, -1.1806641, 0.7890625, 0.47875977, 0.08935547, -1.7666016, -0.5751953, -0.72216797, 0.41625977, -0.54003906, 1.6152344, -1.5908203, -0.15441895, 0.38134766, 0.8979492, 0.64453125, -1.6787109, -2.3769531, 2.9765625, 0.12371826, -1.9013672, 1.3056641, -0.52490234, -1.7177734, -3.4296875, -1.1679688, 2.5917969, 0.10217285, 1.6962891, -0.5361328, -0.09484863, 1.0751953, 0.34521484, -0.5830078, -0.20678711, 1.4121094, 1.4013672, -2.4414062, -1.6162109, 1.8320312, 2.9140625, -3.3867188, 1.3105469, 2.3671875, 2.1621094, 0.32763672, 0.36035156, 0.38623047, 0.2130127, -1.1357422, 1.0439453, 1.3525391, 1.0751953, -0.093933105, -0.36108398, -0.04135132, -1.1435547, 1.6621094, -0.48120117, 0.3881836, 2.7910156, 2.203125, -0.070129395, -4.390625, 0.17272949, 0.04663086, 2.296875, -0.16625977, 2.1503906, -2.3261719, -0.70214844, -0.48754883, -1.2480469, 1.15625, -1.1894531, -1.0380859, 0.6176758, 0.8574219, 0.75341797, -0.96435547, -0.23144531, -1.9414062, -1.9091797, 1.4160156, -2.2539062, -3.0488281, 0.5058594, -2.7792969, -2.5507812, 0.11291504, 1.1503906, -0.41723633, -1.4072266, 0.8183594, 1.9365234, 0.6923828, -1.1513672, -2.9785156, 1.7294922, 0.28979492, 2.1660156, -0.05041504, -2.2070312, 2.8300781, -2.1738281, 1.6230469, 0.31176758, 1.4658203, -0.90625, -0.5761719, -1.4882812, 1.3242188, 1.0205078, 0.86035156, -0.99658203, -2.1289062, -0.4814453, -4.1953125, 0.029922485, 1.7509766, -1.546875, -0.5883789, 1.0957031, 3.1054688, 1.5009766, -2.0976562, 3.5722656, 0.19262695, -2.0566406, 0.9663086, -3.3710938, -1.8447266, -2.4492188, -3.5761719, 1.9941406, -0.5551758, 0.6123047, 2.0507812, -0.31518555, -0.5307617, 1.9765625, 0.15429688, -1.4296875, -0.60253906, -2.7910156, -1.015625, -0.6245117, 1.1240234, 2.2128906, -0.06060791, -1.9716797, -2.4335938, 0.625, -0.98046875, 1.9111328, 0.84033203, -1.7138672, 1.2451172, -0.70947266, 0.6621094, -1.4794922, 0.09246826, 0.6196289, -1.7529297, 0.37329102, 0.032104492, 2.2910156, -1.5175781, 0.018432617, 0.30981445, 0.97753906, 0.1661377, -0.65185547, -1.7880859, 1.7070312, 2.0097656, -0.48657227, -0.5839844, 0.58447266, -0.35620117, -1.3427734, 0.9560547, -0.101501465, -0.054595947, -2.7226562, 2.1210938, -0.56103516, 2.3671875, 3.4238281, 0.54003906, -1.6015625, -0.9785156, -0.84277344, -1.7158203, -2.4453125, -0.015182495, -0.6069336, -0.91064453, 0.9160156, -1.4541016, 1.2646484, -0.23461914, -0.36328125, -0.99316406, 2.2421875, 1.8095703, 2.9453125, 4.8554688, -1.8662109, -0.4399414, 0.75927734, -1.7265625, -2.3828125, 2.9628906, 0.061706543, 0.64746094, 1.6162109, 1.7109375, -1.3701172, -0.62402344, -0.16333008, -1.1308594, -0.44091797, -1.0039062, 3.4355469, -1.0537109, -1.1103516, -0.4206543, -0.14025879, 2.2949219, -0.27148438, 1.0996094, -0.20373535, -0.19140625, -0.90185547, 0.3725586, 1.0058594, 0.80126953, 0.38452148, 0.05218506, 0.04763794, -1.6054688, -1.9853516, -0.109313965, 2.3222656, -1.5634766, -0.40576172, 0.47509766, -0.4790039, -0.7583008, -0.10864258, 1.5869141, 1.5322266, 0.28857422, 2.3789062, 0.018829346, -1.1503906, 1.1943359, 1.9443359, -2.53125, -1.1943359, -0.6010742, -2.3671875, 1.3632812, 0.49658203, -3.9667969, -0.7397461, 1.3574219, -1.0253906, 0.9667969, -2.0019531, -1.75, 2.0175781, -2.734375, 0.3503418, -0.34570312, -2.5820312, 0.84033203, -1.7402344, 0.49291992, 0.046783447, 1.7666016, 2.5527344, -1.0996094, 0.45629883, 1.8349609, -0.2006836, -0.23840332, -0.53564453, -2.0429688, -2.515625, -1.0302734, 2.9941406, 3.953125, 3.3945312, 0.20898438, 1.4726562, -0.91845703, 0.38110352, -2.5429688, 2.7558594, -2.8242188, 0.6269531, 1.7402344, -0.79785156, -0.49023438, -1.2099609, 1.9150391, 1.2304688, 2.6542969, 1.4648438, 0.74658203, -1.1318359, -0.7470703, -2.3925781, -3.9140625, -0.88916016, 0.35668945, 1.3369141, 1.1914062, 1.3359375, -2.0820312, -1.2421875, 0.68847656, 0.8857422, 0.40771484, -0.7729492, 1.0664062, 0.17687988, -1.4433594, -0.16967773, -1.8769531, 1.7958984, 0.95410156, 3.0566406, -0.8696289, -4.171875, -0.6484375, 0.42236328, -1.6865234, -0.65771484, -1.359375, 0.22314453, 0.7006836, 1.3388672, 1.578125, -0.61328125, 2.3222656, -0.6904297, -0.05758667, 0.44458008, -0.33740234, 1.9570312, -1.2089844, -2.1308594, 0.51464844, -4.0664062, 2.7910156, 1.0048828, 0.17126465, 1.8554688, 2.03125, -0.9506836, -0.35229492, 0.24731445, 0.15673828, 0.89990234, 0.68310547, 0.6689453, 0.85058594, -2.8652344, -3.6777344, 0.44555664, -0.08300781, -1.5556641, -3.0019531, 0.9916992, 0.6801758, 0.7495117, 0.7114258, 0.28320312, 0.89453125, -2.2792969, 1.3896484, 0.6015625, 1.5390625, 3.3886719, -1.3671875, -2.3007812, -1.6572266, 0.4489746, 0.33935547, -0.8588867, -1.4746094, 0.17883301, -1.9726562, 0.51708984, 0.68896484, 2.3886719, 2.9355469, 0.36767578, -0.91503906, 1.2890625, 1.3115234, -1.9121094, 0.026397705, 0.65185547, 3.0625, -1.3427734, 3.2265625, -0.75683594, -0.9526367, 2.7734375, -2.2949219, 0.53027344, -0.5083008, -1.9335938, -0.2722168, -1.7666016, -1.0859375, -2.7441406, -0.5805664, -2.4101562, 1.5273438, -0.07342529, -2.0644531, 0.97216797, 3.3164062, -1.1005859, 3.125, 1.4052734, 1.7929688, 0.29638672, 0.66308594, -1.7949219, 0.38305664, 0.5419922, -1.21875, -0.010185242, 0.4724121, 0.44555664, 0.109802246, 2.6425781, 1.2089844, 1.1933594, 0.64404297, 0.80078125, 0.7832031, 2.2988281, 4.3203125, 0.003894806, 0.92626953, 2.8925781, -1.8388672, -0.60595703, 2.7890625, 1.0234375, -0.17749023, -0.9370117, 1.7148438, -0.3154297, -0.94677734, -1.5908203, 0.08929443, 0.7910156, -2.4511719, 1.7001953, 0.119018555, 1.6064453, -1.5097656, -0.63964844, -1.1835938, -0.26171875, -1.6865234, -2.1445312, 1.3388672, 0.008079529, -0.6904297, -0.18981934, 0.81103516, 0.42578125, -3.5917969, 2.0644531, 0.88964844, 0.44726562, -1.8242188, 2.8261719, 2.1777344, 1.4716797, -0.40673828, 1.3496094, 1.0253906, 0.68359375, 1.9335938, 0.79003906, 0.80810547, 0.19458008, 2.6113281, 0.2644043, -2.3398438, -1.4335938, -0.41381836, -2.015625, 0.12036133, 0.65625, 0.8046875, 1.5800781, 0.5229492, -3.0371094, 0.9453125, 1.1308594, 2.0253906, 0.24694824, 0.50878906, -1.6875, -2.8164062, -2.2890625, -0.2607422, 0.14294434, 2.5683594, 2.0410156, -0.3161621, 0.8076172, 1.7714844, 1.4160156, 0.81152344, 0.34277344, -1.1689453, 1.7470703, -1.2285156, 1.4814453, -0.80615234, 1.4121094, 0.023010254, 1.4023438, 1.7382812, 0.8203125, 1.9970703, -1.1289062, -0.21520996, -1.2050781, 0.1607666, 0.32495117, -0.43481445, -1.8339844, -1.1064453, 0.38964844, -1.5136719, 0.5625, 0.45239258, 0.7636719, 0.86816406, 0.54345703, -1.0292969, -0.9194336, 1.4130859, -0.6035156, -0.79785156, -0.7866211, -0.18017578, 0.74316406, -0.10845947, -1.1748047, -0.1817627, -0.085632324, 1.1064453, 0.44628906, 2.2871094, -0.859375, 0.38745117, -0.94873047, 0.22167969, -1.9501953, -1.7636719, 1.2773438, 0.09399414, -0.5708008, 3.4003906, 1.2949219, -1.6650391, 0.6923828, -0.7661133, 0.20080566, -1.0908203, -2.0273438, -0.05505371, 2.6464844, 1.6835938, -0.23498535, -2.5644531, -3.5273438, 0.54345703, 0.3642578, 2.6601562, -0.15698242, -3.2558594, 0.9770508, 0.3544922, 1.8564453, 1.1132812, -1.4960938, -0.09411621, 1.1992188, 0.70458984, 0.121276855, 1.3955078, 1.5458984, -0.28955078, -0.5595703, 2.84375, 1.2490234, 2.3808594, 1.8417969, 0.45043945, 2.6230469, -3.6953125, -0.90625, -0.59375, 1.4072266, 1.0712891, -0.38793945, 2.4003906, 0.030914307, -0.04046631, -2.8730469, -0.9741211]}, "B07PHKT5XC": {"id": "B07PHKT5XC", "original": "Brand: GasOne\nName: GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black\nDescription: \nFeatures: Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements\nHigh heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control\nConvenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection\nHeavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSteel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas\n", "embedding": [0.23352051, 2.46875, 1.5527344, -0.74658203, -0.27197266, 0.33691406, 0.94140625, -1.8955078, 1.3896484, 1.9003906, -0.06781006, -0.39135742, -0.14440918, -3.7011719, 2.484375, -0.69384766, 0.59375, 2.3300781, 2.3066406, 0.80615234, 3.3027344, 0.7373047, 1.8242188, -0.5883789, -0.37231445, 1.1904297, 4.3554688, -3.7246094, -1.6054688, -0.37646484, 1.6445312, 0.20080566, 0.16699219, 1.3359375, -2.8007812, -1.5917969, -1.1259766, 0.4333496, -2.1816406, -0.6508789, -1.3818359, -0.91015625, 1.3544922, 1.59375, -1.5869141, 0.13806152, -0.01134491, -0.6894531, -0.9921875, -0.90966797, 0.34692383, 1.6630859, 0.5708008, 1.1591797, 0.41333008, -0.0017328262, 0.87402344, -2.2695312, 0.31567383, 0.94433594, 1.1416016, -0.23815918, -2.2304688, 1.0742188, -2.7949219, -0.29101562, -0.8305664, -0.09729004, 0.16552734, 1.3554688, 1.8945312, 0.7993164, -0.35766602, 0.14941406, 1.0996094, -0.9628906, -2.5664062, 2.2519531, 1.7666016, -0.8149414, -0.6635742, 3.3652344, 0.31860352, -1.7207031, -1.1113281, -0.30859375, -2.0644531, -1.8720703, 0.62890625, 0.41723633, -0.7480469, 2.9296875, -3.1054688, -5.09375, 0.8798828, -0.46557617, 1.2138672, 0.7675781, 3.0625, 0.44921875, -0.7529297, -0.6347656, -1.609375, 1.9638672, -1.6962891, -1.4814453, 1.6357422, -0.9223633, -1.5888672, 0.5854492, -1.4492188, -1.6865234, 0.38354492, -0.3618164, 0.8574219, -0.6694336, -0.31298828, 1.2734375, 2.7246094, 1.0273438, 2.8164062, -0.81103516, 0.5854492, -1.1650391, 0.39208984, 1.7011719, -1.3291016, 0.49267578, 3.0449219, -1.7421875, 1.4189453, -1.0224609, 0.030685425, 1.1230469, -0.66748047, -0.33398438, -1.3369141, -2.6269531, -3.2910156, -0.39770508, -2.3457031, 0.63623047, 1.4306641, -1.15625, -2.8222656, -0.19592285, -1.5605469, 2.4882812, -0.64160156, -1.8349609, 0.5683594, -2.453125, -1.2197266, -1.7548828, 0.50097656, 0.2553711, -0.13671875, -3.765625, 3.2792969, 1.0429688, 2.1816406, -1.1416016, 0.11584473, 2.3964844, 0.09448242, -1.4775391, 0.8354492, 0.35083008, -2.3203125, 1.7021484, -0.45361328, -2.125, -0.31860352, 0.7260742, 0.25341797, -1.6259766, 1.1337891, 2.4316406, -0.24975586, 0.06402588, -2.2226562, -2.3632812, -0.02734375, -0.19128418, 0.43579102, -0.5283203, -0.6464844, -2.2441406, -0.3371582, -0.7128906, -1.7363281, 0.30517578, 0.27197266, 1.1982422, -1.1269531, -2.1035156, -2.0410156, -1.5009766, 0.06677246, 1.453125, -0.734375, -1.5078125, -0.61035156, 0.6196289, -2.0136719, -1.9697266, 0.33544922, -0.8491211, -0.51220703, 0.9091797, 0.8203125, -0.6142578, 2.2910156, 0.3046875, -1.4228516, -1.4306641, 2.3652344, -0.18701172, 1.6816406, 1.7734375, -0.04071045, -0.0006327629, 1.9921875, 2.3417969, 0.79833984, 1.9550781, 1.0771484, 0.0680542, -2.3105469, -1.4599609, 1.5742188, 0.8886719, -1.3505859, 0.40673828, -0.20800781, 1.7363281, -0.52685547, -2.0703125, 0.11254883, -0.7216797, -0.23303223, -1.5126953, -2.484375, -1.6435547, -1.1035156, 3.4277344, -0.96533203, 1.5654297, 0.7314453, 0.44726562, 1.5390625, -0.89160156, -0.10974121, -0.95654297, -1.4609375, 0.69970703, 2.0546875, 0.27612305, -0.265625, -2.125, 1.0556641, 0.6484375, -1.5351562, 0.11413574, 0.085754395, -1.3203125, 1.8046875, 0.6386719, -2.2226562, -1.1855469, 1.7851562, 0.67333984, 1.8828125, 0.21020508, 2.3398438, 0.5888672, -1.4638672, 3.3632812, -0.51660156, 1.3203125, 0.45751953, -0.31152344, 1.3271484, -1.7617188, 2.3046875, 0.4814453, 1.5175781, 0.73339844, -1.8994141, -0.73828125, 2.4902344, -1.0683594, -1.8955078, 3.1132812, 0.46240234, 0.5703125, -0.36132812, 0.12658691, -0.5996094, -0.79589844, 2.0273438, 0.22070312, -0.029083252, 0.6826172, -0.23352051, -0.9350586, -0.14111328, -1.3242188, -0.22839355, 0.81884766, 1.1171875, -1.3535156, -1.2148438, 1.4833984, -1.7607422, -1.3027344, 1.1386719, -3.4414062, -0.09753418, 1.3798828, 1.4990234, 3.9785156, -0.11456299, -0.6567383, 1.9111328, 0.58740234, -0.46313477, -0.09942627, 0.23620605, -1.0888672, -1.2255859, -2.171875, 1.1025391, -1.6933594, -0.6455078, -1.2324219, -2.0566406, -1.9785156, 1.4140625, -2.7441406, 1.1210938, 0.71240234, -2.8378906, 1.8564453, 0.34887695, -2.3789062, -0.6538086, 0.8857422, -1.8623047, -1.4785156, 1.3994141, 0.8100586, -0.44091797, -3.6699219, -0.69970703, -0.28930664, -0.9194336, -0.10559082, -0.2763672, 1.0830078, 0.067871094, 0.546875, 1.1679688, 0.036315918, -0.45214844, -1.6357422, 1.6894531, -4.4609375, 0.42578125, -3.3730469, 0.31445312, -0.9042969, -0.44384766, -3.5039062, -0.84765625, 0.61865234, -1.0283203, 3.640625, 0.94677734, 0.8955078, -0.30126953, -1.3730469, 0.6044922, -0.8232422, -2.59375, 0.98876953, -0.34570312, -1.7949219, -1.0087891, -4.7070312, -0.6894531, -1.7900391, -0.62109375, -0.69384766, -0.6977539, 0.1751709, -1.3427734, -1.8193359, -1.2685547, -1.1025391, -0.15576172, -0.59521484, -2.0175781, -0.83154297, -1.4541016, -2.1699219, -0.6738281, -0.5517578, 2.7324219, -0.4506836, 0.3544922, 3.1992188, 0.07446289, 1.8144531, -0.57666016, -3.1015625, 2.1640625, 3.1210938, -0.47827148, 0.078552246, -1.7802734, -1.4609375, -1.0820312, 0.59375, 3.5859375, 1.1064453, 1.7695312, 1.8769531, 0.37353516, 0.38256836, 0.1508789, -0.30639648, -1.8828125, -0.07800293, 3.2167969, -1.2363281, -0.35180664, 1.2421875, 2.453125, -1.9638672, -0.68896484, 3.1972656, 0.23352051, 1.5791016, 3.0859375, -0.20947266, 1.0644531, 0.33447266, 0.4880371, -0.4946289, 0.16418457, 0.27075195, 1.2441406, 1.0585938, 0.02204895, 1.8886719, 2.171875, 0.34643555, 1.4697266, 2.7636719, 0.52734375, -0.66552734, -0.92089844, 0.8041992, 0.32177734, -0.45947266, 1.4814453, -0.38793945, -0.13000488, 0.003824234, -1.1064453, 0.65625, -3.1152344, -0.15332031, 1.5878906, -1.6503906, 0.82177734, 0.10290527, -0.45361328, -0.42260742, -0.5751953, 1.0517578, -0.76464844, -0.24768066, 0.5698242, -2.0683594, 0.06640625, -2.0429688, 1.6689453, 1.5009766, -1.4492188, 0.13891602, 1.5302734, -3.2167969, -2.1464844, 0.122924805, 0.12030029, -0.65771484, 2.4902344, 1.5078125, -1.8085938, 0.5908203, -1.2402344, 0.8310547, 2.0078125, -1.0244141, -1.2734375, -2.0449219, 0.31835938, -0.49609375, 1.5302734, 0.90185547, 1.6269531, -2.5351562, 0.7470703, -2.7441406, 0.43945312, 0.59228516, -0.5625, -0.72558594, 2.6894531, -0.7714844, 1.0761719, 0.31567383, 1.8837891, -1.1914062, -0.021438599, 1.8349609, -2.1191406, 0.3515625, -0.15759277, -4.0351562, 0.3701172, -0.22607422, -0.16259766, 3.4804688, 0.53808594, 0.94677734, 0.5361328, 0.5341797, -3.1054688, -0.94189453, -0.29077148, -0.0692749, -1.4482422, -1.9199219, 0.23693848, 0.12036133, -1.6435547, -1.3271484, -1.4824219, -0.55810547, -0.47924805, 1.0966797, -1.0166016, 0.51123047, -0.04901123, 0.67089844, -0.84228516, -0.46118164, 1.1904297, -0.6694336, -1.1630859, -1.8671875, 1.3378906, 0.98339844, -0.07470703, -1.1796875, 3.7421875, 0.81884766, -1.3847656, 0.15539551, 0.33032227, 1.8408203, -0.7709961, -2.7167969, 0.060455322, 0.3798828, 0.95654297, 0.51953125, -0.13220215, -2.5117188, 0.04598999, 0.9711914, 2.0683594, 2.609375, 0.7607422, -0.54345703, -2.2285156, 1.9511719, -0.2052002, -1.3408203, -0.54345703, 0.33691406, 2.0371094, -0.54541016, -0.30859375, -2.7558594, 0.14660645, 0.92626953, 0.31274414, -2.1503906, 2.4550781, 2.5976562, 2.09375, 1.6328125, -1.4609375, -0.69970703, 0.6567383, 0.9038086, 1.1064453, 1.1367188, 0.46411133, 1.0810547, 0.8100586, 1.4492188, -1.4365234, -0.39916992, 1.5917969, -1.2548828, 0.7011719, -0.91845703, -0.12524414, -0.5961914, -0.18847656, -1.0488281, -1.5390625, 2.859375, -0.67822266, -0.2836914, 0.7548828, -0.3791504, -0.82177734, 1.2783203, 0.030944824, -0.11260986, 1.5458984, -0.18151855, -0.57666016, -0.1628418, 0.99316406, 0.89746094, 0.57421875, 0.7988281, -1.1347656, -0.03378296, 1.1787109, -1.5859375, -0.77734375, 2.2929688, 1.2978516, -0.31445312, 3.6660156, 2.4960938, 0.114868164, 0.8857422, 2.1308594, -0.76171875, -0.56396484, -0.98046875, 0.016921997, 1.4257812, -0.7011719, -1.8105469, 0.83154297, 3.0898438, -0.9003906, 1.2392578, -0.25, -1.28125, 0.80029297, -2.1953125, -1.34375, -0.8129883, 0.014083862, 0.0027675629, -1.1308594, 2.0371094, 0.24255371, 1.4423828, 2.9765625, -0.94140625, -1.5595703, 2.3007812, -0.19836426, 0.3876953, -0.96533203, 0.2536621, -2.15625, 1.1865234, 1.8408203, 1.0029297, 0.7314453, 1.2158203, 0.3071289, -2.7460938, -0.19543457, 0.7597656, 2.0078125, -2.0097656, -1.0546875, 2.8945312, 0.14807129, -0.06964111, -2.0214844, -0.12237549, -0.80908203, 2.0371094, 1.9785156, 0.91796875, 0.13549805, -0.6645508, -3.0898438, -3.6621094, -0.9970703, 0.4958496, -1.3554688, 0.5708008, 0.0015239716, 0.2064209, 0.27197266, -1.7714844, -0.42578125, -2.3027344, -0.36645508, -1.4990234, -1.6669922, -0.47045898, -0.7480469, -0.91064453, 1.046875, 0.1628418, -0.6538086, -0.08605957, -2.0058594, -1.8261719, 0.23303223, -2.6425781, 0.23205566, 2.03125, -0.7446289, 1.9404297, 2.7519531, 0.75634766, -2.3320312, 1.6572266, -0.90771484, -1.5332031, 1.7958984, -0.26245117, 0.16003418, 0.96435547, -0.33129883, 1.8447266, -0.50097656, 0.20300293, -0.41455078, -0.12536621, 1.3642578, 1.0830078, -0.6166992, 0.5107422, 2.0019531, 0.70947266, 1.5244141, 2.0742188, -1.6699219, -0.3798828, -1.0126953, -1.7021484, 0.2590332, -1.6230469, -1.5175781, -0.6723633, -0.48779297, 2.0332031, 0.65771484, 1.4765625, 2.1386719, 1.3544922, -1.5517578, 1.3828125, -0.65966797, 2.5507812, 0.9790039, -0.8017578, -2.4882812, -3.015625, 1.4541016, 1.2714844, 0.5185547, -1.0478516, 0.8696289, -1.4140625, 0.96728516, -0.122558594, 0.24536133, 2.1191406, 1.8789062, 0.26367188, 2.9960938, 3.0507812, 0.047729492, 0.9951172, -0.107299805, -0.29736328, -0.99902344, 1.7900391, 1.84375, -1.8232422, -0.6958008, -1.6953125, 1.3896484, 0.24365234, -0.1772461, -0.47802734, -2.3066406, -0.84521484, -0.96435547, -0.98828125, -3.2050781, 1.2851562, 1.4960938, -0.93847656, 0.16210938, 1.234375, -0.4621582, 1.4121094, 1.8251953, 1.5253906, -1.3300781, -0.23742676, -1.3037109, -0.7788086, 2.0957031, -2.8222656, 1.2841797, 1.4541016, 0.17749023, -1.5947266, 1.6064453, -0.43432617, 0.5058594, 2.0722656, 1.9667969, 2.3867188, 0.41992188, 1.2363281, 0.84033203, 2.2089844, 2.1816406, -0.2685547, -0.2043457, 2.2421875, 1.8935547, 1.2978516, -0.4572754, 0.031829834, 0.85791016, -1.9082031, 0.32470703, 0.36743164, 0.056152344, -3.6503906, 0.69970703, -1.65625, 0.68896484, -0.59277344, 0.5722656, -0.94433594, -0.59277344, 0.8754883, -0.36767578, 2.1835938, -1.1396484, 1.2138672, -0.48168945, -0.8701172, 1.4003906, -2.0019531, 1.8613281, -0.1628418, -1.9814453, 0.4350586, 1.2802734, 0.7207031, 1.6650391, -0.40576172, 0.578125, 0.90185547, 0.5048828, 0.30810547, -2.5957031, 1.7392578, 0.15356445, 2.1035156, 1.8837891, -1.4863281, 1.2744141, -0.21276855, -1.1396484, -4.8828125, 3.3125, 0.9394531, 0.8022461, 0.2446289, -1.6894531, 1.3007812, -1.0273438, 1.4394531, -2.640625, 0.2232666, 0.6376953, -2.59375, -0.74365234, 1.5, -1.6054688, 4.8632812, -0.18920898, -0.69091797, 1.2919922, 0.93603516, 1.0273438, 0.11853027, 0.95654297, 1.2275391, -0.012573242, -1.2216797, 2.03125, 1.1933594, -1.2666016, -1.2216797, 1.9755859, 0.93847656, 1.8681641, 1.9824219, 0.12042236, 0.7558594, 1.1005859, -0.7182617, 0.5258789, -2.6210938, -0.4501953, -1.4804688, 0.40014648, -1.0683594, -1.5419922, 2.0449219, 0.28295898, -1.8505859, 0.13342285, 2.1074219, -0.6928711, 0.51953125, 0.69091797, -0.5605469, -1.2080078, -1.0175781, 1.2773438, -1.6152344, -0.8833008, -1.2617188, 0.25439453, -0.27954102, 0.3852539, -1.0302734, -0.90722656, -0.49951172, 0.95751953, 1.5771484, -1.1152344, 0.96484375, 0.11767578, -0.38110352, -0.91748047, -0.0044822693, 1.0898438, -0.61035156, 0.2697754, -1.6464844, -0.7285156, -0.48364258, 0.16784668, 2.5488281, 3.0800781, 1.2988281, 0.6455078, -0.9399414, -4.125, -1.1474609, -1.5869141, 0.48632812, -0.22766113, 0.123046875, -0.21386719, 1.9267578, 3.1757812, -1.25, -0.47583008, 0.64453125, -0.5595703, 1.7744141, 0.44213867, 1.2636719, 0.43896484, 0.24401855, 0.09106445, 2.59375, 1.4208984, -1.5966797, 1.0517578, 1.5546875, -1.0458984, -2.4199219, 1.2197266, -1.0576172, -0.3137207, 0.3635254, -0.23925781, 2.9882812, 0.97998047, -0.9194336, -1.4667969, -1.2148438]}, "B088YP9G4N": {"id": "B088YP9G4N", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker\nDescription:
Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

Technical Details:
Premium Material: Solid iron support + Chrome plated BBQ wire mesh
Color: Black\nFeatures: The grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE\u2019S GATHERING]\n", "embedding": [-2.2089844, 2.2148438, 1.4072266, -0.72753906, -0.5415039, -1.5126953, 1.0927734, -1.5498047, -1.6494141, 1.4726562, -0.41918945, -2.1367188, -0.059387207, -3.1503906, 0.953125, 0.42919922, 2.1992188, 1.0429688, 2.0253906, 1.1357422, -0.4794922, -0.6323242, 0.86083984, 0.6875, 2.5390625, -1.125, 3.609375, -2.3300781, 0.9790039, -3.9648438, 2.6523438, 1.0009766, 1.0605469, 1.4951172, -1.8828125, -0.64990234, -2.0839844, 1.8330078, -1.0410156, 1.3027344, 1.1142578, -2.3847656, 2.2890625, 0.79785156, -2.984375, 0.57128906, -1.0078125, 1.4140625, -0.2890625, -2.7792969, 2.7363281, 2.2851562, 1.7714844, 0.15307617, -2.2246094, 0.46948242, -2.0800781, -3.8789062, 1.7548828, -1.4287109, 1.5019531, 0.022506714, -0.546875, 3.3632812, 0.2553711, -1.8105469, -0.20349121, -0.6972656, -0.37280273, -1.3994141, 1.8349609, -1.5117188, -1.7519531, 1.4902344, 1.2626953, -2.3222656, -2.0722656, 1.0683594, 0.65625, 0.73339844, -1.3671875, 2.5859375, 2.1953125, -1.3759766, 0.10656738, 1.3740234, -1.2841797, -0.113220215, 1.9550781, 1.8583984, -0.3461914, 2.0996094, -1.4560547, -3.5136719, 2.0722656, -2.6289062, 1.4306641, -0.44458008, -2.3730469, 1.7011719, -0.5366211, 1.0263672, -0.6069336, -1.0820312, -3.3652344, -1.5488281, 1.1083984, -1.1152344, -0.5756836, 2.109375, -1.6865234, 1.6611328, -0.0021305084, 1.4628906, 1.5693359, 0.6791992, -1.2949219, 2.7167969, 1.4511719, 1.4160156, 5.5195312, 0.48291016, 0.17944336, -4.5664062, -0.72265625, -0.37817383, -0.6713867, 1.8935547, 2.8691406, -1.7822266, 0.2944336, -0.64208984, 0.09387207, 1.0849609, -2.4707031, -1.6953125, -1.4873047, -0.5673828, -2.7011719, 1.8623047, -1.8046875, 0.18603516, 3.5195312, -1.3134766, -2.4882812, -0.09008789, 0.037841797, 2.765625, 0.4140625, -1.7255859, -0.4873047, -0.99658203, -0.2388916, -1.1386719, 1.6367188, -1.6728516, -0.5126953, -1.4375, 2.2890625, -0.04623413, 2.0820312, -3.1855469, -0.6176758, 2.0625, 0.67578125, -0.7246094, -0.4855957, 2.8144531, -0.5239258, 1.8447266, 0.39208984, -1.8447266, 0.7895508, -1.3740234, 1.9316406, -1.4111328, 0.17663574, 3.296875, 0.625, 0.2529297, 0.1730957, -2.0078125, 0.85791016, 1.2666016, 0.19152832, -0.94873047, 0.52197266, 0.23474121, 1.0703125, -1.15625, 0.6826172, -0.29003906, -0.8623047, -1.2714844, -0.61035156, -0.8745117, -1.6533203, -1.1318359, -0.07434082, 0.8413086, -1.0839844, -1.1025391, -1.7705078, 0.22363281, -1.9824219, -2.5507812, -1.6181641, 0.05014038, 1.8515625, -0.021606445, 0.40820312, -0.45043945, 1.4580078, 1.15625, 0.30566406, 0.025756836, 2.328125, -1.4794922, 1.8261719, 2.0019531, -1.7080078, -1.0771484, -0.19433594, 4.6015625, -0.06945801, 1.9736328, -0.65966797, 0.28442383, -0.2388916, -1.0283203, 2.1855469, 0.0914917, 0.32543945, 1.1015625, -1.0146484, 2.6445312, 0.9267578, -1.0849609, -2.2773438, 0.6220703, 1.0126953, -3.5117188, 1.3798828, -1.1552734, 0.70214844, -1.9755859, -1.4433594, 3.3378906, 0.82910156, -0.59521484, 0.99316406, 1.5732422, -0.6230469, 0.8544922, 0.025375366, 1.5351562, -2.4042969, 0.5371094, -2.3789062, -1.9404297, -0.02734375, 0.49169922, 0.67529297, 1.359375, 0.48217773, -2.5214844, 1.7958984, 1.1025391, -2.4824219, -1.1523438, 2.0253906, 0.7470703, 0.171875, 0.027709961, 2.1191406, -1.4638672, -0.9121094, -0.9921875, 1.3525391, -0.1394043, -0.97216797, -0.34375, 2.6816406, -0.89160156, -2.09375, -2.7089844, -0.7548828, -1.2353516, 1.8466797, 2.2636719, 3.7597656, 1.4824219, -2.3652344, 2.6464844, -2.5664062, 0.20422363, 1.7832031, -0.76660156, -1.3759766, 2.1347656, 0.8852539, 1.4033203, 0.43920898, 1.0625, -2.8359375, -0.3618164, 1.3642578, -1.7460938, 0.34375, 2.5820312, -0.6435547, 0.69970703, -0.93115234, -0.70410156, -1.9804688, -2.5410156, 1.0458984, -2.2363281, 1.3261719, 2.1972656, 0.7763672, 0.3701172, -0.7236328, -3.0078125, -1.4316406, -0.61328125, -0.1340332, 1.2167969, 0.79248047, -0.7270508, 1.1953125, -0.45166016, 1.5136719, -2.3515625, -1.1826172, -1.6289062, -0.049835205, -2.0644531, -0.62890625, -0.37402344, 0.44262695, 0.3959961, -2.8476562, -1.1748047, -0.65185547, -3.0097656, 0.5053711, 1.7890625, -0.7739258, 1.1552734, -0.6953125, 0.20080566, 0.1607666, -5.5742188, 0.7988281, 0.4873047, 1.1337891, 0.42700195, -1.2841797, 1.4482422, -2.15625, 1.6416016, 0.21862793, 1.1044922, 0.7607422, -2.0546875, -1.1113281, -1.9335938, 2.3515625, 0.042297363, 1.75, -0.056243896, 0.59472656, -2.5273438, -1.8027344, -1.6679688, -1.0703125, 3.5507812, -0.6796875, 2.3046875, -1.2988281, -2.1132812, 0.7446289, 1.5341797, -2.0117188, -2.2167969, -0.0096206665, -0.6430664, -1.5566406, -2.7382812, -0.9008789, -0.16894531, -1.7792969, 0.4321289, 2.1523438, -0.54785156, 2.1582031, -1.515625, -1.4130859, -0.90527344, 1.8154297, 0.35009766, 0.20507812, -1.1054688, -0.64746094, 0.94433594, -0.2310791, -0.20788574, 2.0429688, -1.4912109, 0.12426758, 1.2548828, 0.5253906, -0.26708984, 0.1484375, -1.8203125, 1.1787109, -0.18591309, -0.84375, 1.6035156, -0.5444336, -1.3457031, -3.0820312, -0.06628418, 3.40625, 0.56103516, 0.7602539, 0.09509277, 0.26904297, 0.9042969, -1.3837891, -0.13598633, 0.51904297, 0.8125, 1.7705078, -2.8867188, -0.8388672, 0.73876953, 1.7705078, -2.8203125, 1.2050781, 1.125, 1.2851562, 0.9223633, 0.15270996, 1.5488281, 0.5800781, -0.2454834, 1.6054688, 1.734375, 1.6308594, 0.2244873, -1.2792969, -0.21264648, 0.15771484, 0.4128418, 1.296875, 0.6074219, 3.078125, 2.5117188, -0.13061523, -3.2382812, 0.11236572, 1.2617188, 2.7695312, 0.3408203, 3.1601562, -1.7841797, -2.5839844, -0.10247803, -0.59033203, 1.8466797, -1.4492188, -0.2993164, 2.3125, -0.63916016, 0.78125, -1.1005859, -1.0078125, -0.33325195, -1.8671875, 0.74658203, -1.5458984, -2.5722656, 0.23278809, -1.7587891, -3.2285156, 0.27124023, 2, 0.40356445, -2.59375, 0.050994873, 3.25, 0.6142578, -1.0244141, -1.6865234, 2.0722656, -0.22631836, 1.3964844, -1.0390625, -2.4414062, 1.7490234, -1.5683594, 1.7490234, 0.39526367, 0.33203125, -2.1171875, 0.07336426, -2.0390625, 0.97802734, 0.3203125, 0.6225586, -0.93652344, -2.7109375, -0.33398438, -3.7734375, 0.8730469, 0.86865234, -1.7011719, 0.1583252, 0.8808594, 2.7617188, 0.42407227, -2.3183594, 2.5683594, -0.06793213, -2.9921875, 1.2998047, -2.3925781, -1.5927734, -3.0058594, -4.0898438, -0.12194824, 0.06677246, 0.5292969, 1.2460938, 0.20922852, -0.5493164, 2.6015625, 0.74072266, -0.6982422, -1.1005859, -3.234375, -1.3173828, -2.0253906, -0.20214844, 2.0273438, 1.4589844, -1.1621094, -2.0878906, -0.7475586, 1.21875, 1.8486328, 1.2324219, -2.046875, 0.5341797, -2.9042969, 0.10803223, -0.02003479, -0.3408203, 0.671875, -1.1865234, 1.0039062, -0.51220703, 2.0097656, -0.78222656, 0.29345703, -0.012466431, 1.5800781, -0.5961914, -0.11102295, -0.8208008, 1.3222656, 3.5742188, -1.5566406, -2.9492188, -0.00844574, -0.60302734, -0.09716797, -1.1445312, -0.6430664, 0.4345703, -1.9287109, 1.0664062, -0.2980957, 1.5761719, 2.6503906, 1.0751953, -2.8789062, -0.9345703, -0.11022949, -2.8945312, -3.1523438, -0.10284424, 0.064941406, -0.5292969, 1.0283203, -0.5883789, 1.3769531, -0.5576172, -1.1621094, 0.026779175, 2.9179688, 2.7832031, 2.2207031, 3.9375, -1.9580078, -0.8618164, 2.2324219, -2.125, -2.0234375, 2.6015625, 0.8027344, 0.8198242, 2.3886719, 0.51660156, -0.9980469, -0.18579102, -0.27929688, -0.5390625, -0.89160156, -1.0595703, 2.6328125, -0.6767578, -1.6630859, 0.85253906, 0.18713379, 3.4667969, -1.3837891, 0.57470703, -1.4765625, -0.5629883, -0.73779297, -0.59228516, 0.036468506, 0.13391113, -0.46899414, 0.18469238, 0.20336914, 0.30615234, 0.093322754, -1.7958984, 2.9277344, -1.7246094, -1.4902344, 1.7275391, -0.5097656, -0.25146484, -1.8066406, 2.34375, 2.0683594, -0.55859375, 2.375, 0.13366699, -1.8515625, 1.4150391, 1.7978516, -2.1113281, -0.97314453, -0.78222656, -1.3671875, 0.33032227, -0.49487305, -2.9160156, 0.012519836, 0.515625, -1.7910156, 1.1503906, -0.48095703, -2.453125, 1.9160156, -2.5820312, 1.0117188, -1.3105469, -1.5722656, 0.41308594, 0.22583008, 0.11608887, -0.27197266, 1.0693359, 2.4785156, -2.0117188, -1.1552734, 1.4560547, -0.35058594, 0.8125, 0.59228516, -2.1171875, -2.8671875, -0.82666016, 2.6132812, 2.6347656, 2.7871094, -0.30249023, 1.4052734, -1.6289062, 1.2958984, -1.8486328, 2.6503906, -1.9423828, 1.0654297, 4.6914062, -1.5908203, -0.5546875, -2.5585938, 2.4042969, 1.4746094, 1.4335938, 0.34301758, 0.2619629, -1.1435547, -0.5683594, -2.8632812, -3.5273438, -0.8833008, -0.44506836, 0.38305664, 0.4104004, 1.0439453, -0.7631836, -0.9946289, 0.3869629, 1.5527344, 0.07513428, -1.5380859, -0.2142334, 0.47485352, -1.2402344, 0.35742188, -0.022521973, 2.921875, 1.4716797, 2.6855469, -1.6660156, -2.8886719, -0.13806152, 0.8828125, -2.2890625, -0.20031738, 0.99316406, 0.47998047, -0.015472412, 1.5185547, -0.37890625, -0.57373047, 1.9667969, -0.60009766, -0.3696289, 1.3066406, -0.42138672, 1.7490234, -1.5351562, -0.9013672, 0.09039307, -3.6972656, -0.09283447, 2.1210938, 0.7758789, 0.77978516, 1.7832031, -1.0273438, -0.17871094, -0.44555664, 0.30395508, 0.66308594, 0.5498047, 0.49609375, 0.4909668, -3.7382812, -3.578125, -0.8486328, -0.3046875, -0.29125977, -2.0917969, 0.73583984, 0.48120117, 0.38500977, 1.7382812, -0.16564941, 1.3505859, -3.4589844, 1.5654297, 1.3583984, 1.6904297, 1.1201172, -2.2226562, 0.13562012, -2.0273438, -1.5869141, 0.044677734, -0.018539429, -0.7426758, 0.34204102, -1.03125, -0.04309082, 1.1445312, -0.14013672, 1.2529297, 0.8105469, -0.6166992, 0.93115234, 0.6352539, -2.0976562, 0.41381836, 0.98095703, 2.6308594, 0.064941406, 3.8847656, -1.1171875, -1.2802734, 2.3242188, -0.69189453, 1.953125, -0.29467773, -1.90625, 0.60595703, -3.296875, -2.2109375, -2.4140625, -0.7001953, 0.18200684, 0.88427734, 0.70654297, 0.4633789, -0.5371094, 3.9414062, -0.68408203, 0.5463867, 1.6806641, 0.5214844, -0.21374512, 0.4033203, -1.0634766, 0.6958008, 1.1679688, -1.0058594, -0.042541504, -0.41259766, -0.087646484, -0.8276367, 2.8671875, 1.7255859, 1.4238281, 1.2851562, 1.8378906, 1.8447266, 2.5800781, 4.6757812, -0.5317383, 1.4521484, 2.0410156, -1.4326172, 1.1328125, 2.765625, 1.8574219, -0.80029297, -0.32543945, 1.7929688, 0.54052734, -0.28222656, -1.2226562, -1.0283203, 0.80029297, -1.53125, 2.8632812, 0.25830078, 0.11791992, -1.6992188, -0.89990234, -0.92871094, -0.390625, -1.3847656, -0.9868164, 0.81689453, 0.007701874, -0.39379883, 0.703125, 0.52978516, -0.15527344, -3.5625, 1.8974609, -0.12109375, 1.4541016, -0.625, 2.1699219, 2.9375, 0.91015625, 0.033416748, 2.2246094, 1.5419922, 1.3642578, 2.9394531, 0.42089844, 1.1191406, 1.0439453, 1.9306641, -1.9404297, -1.90625, -1.8222656, 0.99658203, -0.9399414, -0.7915039, 1.7021484, 0.33618164, 1.7724609, 1.5800781, -1.4453125, 2.2207031, 2.5078125, 1.0449219, -0.6479492, 0.48291016, -0.19299316, -3.2617188, -0.60058594, -0.4555664, -0.085510254, 2.6679688, 2.265625, 0.16357422, 3.3007812, 1.5253906, 0.80908203, 0.84033203, 0.29541016, -1.9619141, 0.73876953, -0.1303711, 2.0761719, 0.69921875, 0.26757812, -0.96533203, 1.7177734, 0.23474121, -0.09741211, 1.7138672, -0.2175293, -0.64746094, -0.14025879, -1.3720703, 0.49291992, -0.8955078, -1.3115234, -0.43969727, -0.21411133, -0.59814453, -1.1962891, 0.8881836, 1.2763672, 1.4257812, 0.7895508, -0.66552734, -2.1074219, 1.7822266, 0.17895508, -0.23999023, -0.47827148, 0.6113281, 1.1357422, -0.24084473, -0.65283203, -0.49169922, 0.7089844, 1.0761719, 1.1220703, 1.4638672, -0.020690918, -0.031951904, -0.5361328, 1.5634766, -1.4316406, -1.8691406, 0.85546875, 0.27929688, -0.20410156, 2.5078125, 0.31103516, -2.4492188, -0.35888672, -2.5351562, 0.09326172, -0.55371094, -3.4277344, -0.5180664, 3.6269531, 0.7885742, -0.984375, -3.578125, -3.0078125, 0.52978516, 0.010513306, 3.0605469, -0.9042969, -1.8583984, 0.004714966, -1.0117188, 2.6777344, 0.69677734, -2.2011719, 0.6791992, -0.25878906, -0.3010254, -1.3535156, 1.125, 1.4462891, -0.18444824, -1.2958984, 1.3486328, 2.2207031, 2.5078125, 1.8554688, 0.97558594, 1.1308594, -4.5859375, 0.11566162, 0.15551758, 2.0351562, 0.07965088, 0.5708008, 0.96875, -0.7167969, -0.23864746, -2.6074219, -2.2226562]}, "B07JPZXW51": {"id": "B07JPZXW51", "original": "Brand: TECHOST\nName: WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required\nDescription: \nFeatures: \n", "embedding": [-2.1328125, -0.8847656, 2.2558594, 0.024765015, -1.4228516, 1.9296875, -0.8203125, 1.2880859, -0.096191406, 0.77246094, 0.58251953, 2.6054688, 0.9321289, -2.2753906, -0.15014648, 0.27856445, 0.85058594, 0.86816406, 0.7109375, 1.5419922, 2.609375, 0.7373047, 0.42626953, -2.1855469, -0.5048828, 0.9711914, 4.71875, -0.90234375, -1.2744141, -2.3496094, 0.69140625, -0.5151367, -0.43286133, 1.9560547, -1.7792969, -0.8027344, -0.30859375, -0.69970703, -0.5102539, 0.6899414, -1.2792969, 0.75390625, -1.0019531, 0.7661133, -4.375, -2.0742188, -0.90185547, -0.6611328, 1.2275391, 1.4384766, -0.33935547, 1.9511719, -0.27368164, -0.46142578, 1.6923828, 0.62353516, 1.8662109, -1.2578125, -0.23596191, 1.7226562, 3.1054688, -1.4970703, -1.3515625, -1.0371094, 0.56396484, 0.2668457, 0.84765625, -1.8037109, 0.033447266, 1.4599609, 0.01713562, 0.49560547, 0.28857422, 0.37060547, -1.2011719, -0.007736206, -2.5898438, -0.88134766, 0.06781006, -2.3203125, 0.88183594, 0.6484375, 0.38427734, -1.7060547, 0.29223633, -2.3046875, 0.7207031, -1.2089844, -0.26708984, -1.8886719, -3.1191406, 1.9921875, -1.2490234, -4.0820312, 1.5800781, 0.16223145, -0.00982666, -2.2011719, -0.44995117, 1.1738281, 1.1376953, -2.46875, 2.5058594, -0.3125, -2.0351562, -1.9238281, 3.1855469, 1.9853516, -0.9526367, 0.37573242, -1.3876953, -1.8017578, 0.2553711, -0.9667969, -0.55322266, 1.125, 2.5898438, 0.45874023, 1.8828125, 0.52685547, 1.2832031, -1.5849609, 1.375, -0.05783081, -0.033477783, 0.4711914, 0.85009766, -0.04586792, -0.38183594, -0.033691406, 1.6494141, 1.0859375, 0.55566406, -0.06793213, 1.8603516, -0.6191406, -0.12878418, -2.109375, -1.7314453, -1.7509766, -2.9941406, -0.61035156, -0.022735596, -0.85791016, -1.6357422, -0.7788086, -1.234375, -0.14587402, -1.0117188, 0.47680664, -0.48657227, 0.58984375, 1.2626953, -1.3476562, 1.0947266, 0.7714844, -2.7011719, -1.4023438, 2.421875, 0.4724121, 0.5463867, -0.4025879, -3.6347656, 1.2607422, 0.17407227, -2.9296875, -1.4189453, 0.5541992, -0.5341797, 2.96875, 0.1484375, -0.5473633, -0.68310547, 0.24926758, -0.08300781, -1.1191406, 2.671875, 1.0351562, 1.0615234, 0.9189453, -1.4248047, 1.0439453, 1.5048828, -1.8828125, 0.13391113, -1, -1.7363281, -0.5214844, -0.36621094, -2.1113281, -1.2841797, 0.40063477, -0.103027344, 2.078125, 0.9785156, -1.7675781, -0.20422363, 1.8574219, 2.1777344, 1.9238281, -0.6879883, -0.8227539, -1.5810547, -0.95751953, -0.72314453, -1.0830078, 0.7158203, 1.2285156, -1.3623047, 0.34350586, 0.14611816, 1.2734375, 0.69384766, -1.1376953, 2.421875, -0.34765625, 1.6396484, 0.9511719, 0.5463867, -0.35327148, 0.60498047, 1.3457031, 1.6308594, -0.32177734, 0.265625, 1.7275391, -1.6240234, 0.83935547, -1.1953125, -2.015625, 3.5195312, 1.1298828, -0.060394287, -0.7939453, 1.7207031, 2.7558594, 0.94189453, 0.08331299, 1.0107422, 1.2158203, -0.10369873, -0.9345703, -0.58984375, 0.011390686, -1.2158203, -1.2792969, -0.74121094, 1.9296875, 2.2382812, 1.7470703, 3.4589844, 0.55078125, 0.08081055, 1.8886719, -0.5336914, 1.8310547, 1.4423828, 2.3007812, -1.5322266, -2.4179688, -1.3857422, -1.9365234, -0.79003906, 1.4873047, 0.7792969, 0.38500977, 1.6455078, 0.8359375, 0.32226562, 0.7314453, -0.17932129, -0.7001953, -1.1074219, 0.6894531, 1.7207031, 1.0009766, -0.1270752, 0.021102905, -1.1689453, 0.17126465, -1.7832031, -1.1044922, -1.2685547, -0.34765625, -0.07672119, 0.39892578, -0.97509766, 0.5932617, -3.3671875, 0.041137695, 2.5488281, -0.6567383, -3.09375, 4.3203125, 0.023788452, 0.8300781, -0.6303711, -0.32373047, 0.21691895, -1.0957031, 2.3691406, 1.7900391, -1.2177734, 1.6279297, 1.8886719, -0.44384766, -2.0058594, 0.64208984, 0.77734375, -0.083862305, 0.25805664, -0.071777344, -1.0859375, -0.42529297, -0.98535156, -2.6894531, -0.0053215027, -1.7207031, -1.6484375, 0.7182617, -0.54248047, 2.4589844, 2.2734375, 1.2539062, 0.8823242, 1.1015625, 1.8925781, -0.6015625, 0.35546875, -0.35864258, 1.4199219, 0.20483398, -1.4365234, -3.0566406, -1.5371094, 0.38354492, -2.359375, -4.3867188, 2.0976562, -0.39086914, -1.1308594, 0.8803711, 0.10235596, 0.109375, 1.4189453, -0.7290039, -1.2490234, 0.09790039, 0.036590576, -2.9921875, 0.7480469, 2.9707031, -1.2470703, -1.6748047, -1.1113281, -0.18383789, 0.07550049, 0.30395508, -0.6147461, 0.27441406, -1.6523438, -0.6298828, 0.7373047, 0.6894531, -1.4667969, 0.9033203, -0.2770996, -1.4248047, 0.58984375, -1.1699219, 2.9980469, -1.4003906, 0.15783691, -0.59521484, -1.7695312, 0.9301758, 2.3964844, 2.4453125, 0.72314453, 3.8808594, -1.0078125, -0.6411133, -0.29174805, -1.0058594, -2.0996094, -0.81933594, -2.1132812, -1.7871094, -0.97802734, -3.1445312, 1.3525391, 0.78515625, 1.9101562, -0.86376953, 1.3398438, -0.25512695, 1.5371094, -0.6323242, 0.39086914, -0.43823242, -1.0400391, 0.02255249, -2.1523438, -0.77685547, -0.36132812, -1.3359375, -0.5654297, 1.0205078, 0.028381348, 1.5136719, 1.6875, 1.5683594, 0.18444824, -0.9277344, 3.7128906, -1.6484375, 0.12573242, -0.15612793, -1.1865234, 0.25317383, -0.83203125, -0.8095703, -1.1962891, 1.3330078, 3.3847656, 0.9760742, 2.0175781, 1.8671875, 0.03744507, 1.0957031, 3.1738281, -0.8540039, 0.12145996, -0.21105957, 0.06616211, -2.8105469, 0.14025879, 0.52978516, -0.08148193, 0.055847168, -2.3222656, 0.27197266, 3.0664062, 2.4746094, 1.1328125, -2.65625, -1.3085938, 0.7714844, -0.23303223, -1.3398438, -2.25, 0.04928589, -1.0107422, 0.67089844, 1.0136719, 1.6630859, 3.9199219, -0.9140625, 1.2441406, -0.5234375, 0.52734375, 1.4023438, -2.6816406, -1.9228516, 2.5175781, 0.52001953, 0.010375977, 1.6689453, -0.89941406, 1.7802734, 0.95996094, -0.6074219, -0.9238281, -0.17797852, 0.60058594, 0.50634766, 1.4599609, -0.17016602, -1.5546875, 1.5517578, -0.4206543, 0.016311646, -0.8457031, -1.3310547, -1.2773438, -1.046875, -2.3671875, -3.1699219, -0.7421875, -0.033996582, -0.17016602, -0.34179688, 0.3894043, -2.2246094, -1.8095703, 0.6586914, -0.18933105, 2.0332031, -0.27905273, -1.4550781, 0.5541992, 1.2558594, 1.8701172, -1.4052734, 4.4726562, -2.6523438, -1.0371094, 1.1835938, -0.16345215, 1.1923828, 0.13964844, 0.4182129, 0.09893799, -2.296875, -0.011146545, -3.5273438, -3.3847656, 0.26904297, -1.1279297, 1.4765625, -3.109375, -0.88671875, 0.21911621, -0.15002441, 0.91796875, 0.084472656, 0.6567383, 0.4519043, -2.3652344, 0.30249023, -1.3759766, -3.0585938, 0.45581055, -2.5664062, 0.43237305, 0.71875, -1.7001953, 1.0751953, -1.2998047, 0.7211914, -2.2148438, -1.875, -0.27416992, 0.12133789, 0.38330078, -0.69970703, 2.5449219, 1.2021484, 0.10986328, -0.90234375, 0.055541992, 0.89697266, 1.6279297, -0.003522873, 1.9365234, -0.99560547, 0.89697266, -0.04711914, -1.7148438, -1.1523438, 0.5439453, -1.7080078, 0.18737793, -0.98095703, 4.1875, 0.58935547, 0.13891602, -1.828125, 2.0605469, -0.81396484, -0.63671875, -0.5678711, 0.6845703, -0.6298828, 1.1113281, -3.5488281, -0.097717285, -2.2363281, 2.421875, -0.41992188, 0.50683594, -0.83984375, 0.46020508, -0.2932129, 0.62646484, 1.9609375, -0.60791016, 2.203125, -0.91503906, 1.1455078, 0.5234375, -1.0947266, -0.6772461, -2.4746094, 1.0751953, 1.2509766, 1.3417969, -0.7158203, 0.32299805, 0.8149414, -0.40234375, -1.5712891, -1.6025391, 3.0859375, 0.2763672, -0.41967773, -0.13232422, 0.12445068, -0.7241211, 3.4589844, -0.20214844, 1.2050781, 0.47436523, -0.88623047, -0.20446777, 1.9091797, -1.1582031, -1.8984375, -0.609375, 1.8134766, 1.5830078, -0.7602539, -0.5625, -0.74316406, -0.22460938, 0.30859375, 0.7734375, 2.15625, -2.78125, -0.08642578, 2.1816406, -0.09863281, 0.4807129, 1.4365234, 1.3505859, 2.4785156, 1.2460938, -0.5644531, 2.8925781, 1.5302734, 0.7529297, 2.0332031, 0.62353516, -1.6982422, 1.2626953, 2.6757812, 0.055145264, -0.25634766, -1.2919922, 2.1933594, 1.4951172, 2.4003906, 3.1425781, -0.21154785, 0.89941406, -0.9038086, 2.3945312, -0.8540039, 0.13806152, -1.9941406, -1.578125, 1.3466797, -2.1152344, -1.3251953, 0.07312012, 3.9589844, -0.029022217, 2.5097656, 0.6928711, 0.6689453, -0.86376953, -2.6191406, -2.1640625, -0.40039062, -1.4560547, 2.7949219, 0.9394531, 0.70703125, 0.27734375, 0.89990234, 0.4387207, -1.6425781, 1.0986328, 1.7207031, -2.7949219, -0.93603516, -0.066467285, -0.9477539, -2.2734375, 0.08514404, -1.4716797, -0.875, -0.15917969, 0.7011719, 1.4775391, -1.6875, -0.6040039, 1.4951172, -0.39990234, -3.6191406, -2.3183594, 2.6152344, 0.98779297, -0.19812012, 0.29833984, 0.16455078, -0.67871094, 1.5283203, 2.296875, 0.6230469, 0.81640625, -0.30541992, -1.6435547, -2.1074219, -1.5078125, -0.8095703, -0.8486328, 0.75146484, -0.7792969, 0.08892822, -0.19421387, -2.265625, -0.3112793, -0.7207031, 1.5244141, -1.0742188, 2.453125, 0.1953125, -0.29296875, -0.8173828, 1.1210938, 1.1669922, -0.8276367, -0.6665039, -1.3408203, -3.9414062, -1.0019531, -1.2353516, 0.91796875, 1.2148438, -0.07128906, 1.4287109, 2.9453125, 1.4033203, -3.5605469, 1.6865234, -1.3740234, -2, 2.0996094, 0.50878906, 1.0703125, -1.0712891, 0.79833984, -0.9165039, 1.8447266, 2.2050781, -0.08807373, -1.1357422, 0.56640625, 0.72265625, 0.61865234, -1.0605469, 1.8554688, 0.32373047, 2.6914062, -1.7929688, -1.7919922, 0.083862305, -0.88720703, -3.0546875, -0.043426514, -0.54541016, 0.7324219, 0.3630371, 2.65625, -1.3945312, 0.97802734, -0.13110352, -1.2783203, 1.2021484, -0.9116211, -0.75, 0.07751465, 1.3330078, 0.52441406, -1.4472656, -3.078125, 0.040222168, 1.9765625, 2.765625, 0.53125, -2.6054688, -1.3466797, -2.2148438, -0.48364258, 0.85009766, 1.7070312, 1.0878906, 0.044281006, 0.7709961, 0.44921875, 0.9536133, 0.3869629, -0.99365234, -0.011619568, -0.27539062, -0.56689453, -0.11590576, 0.89453125, 0.234375, -0.37768555, -0.80859375, -0.5415039, 0.7363281, -0.7001953, 0.3173828, -3.0507812, 0.13513184, 1.453125, -1.3554688, -2.7148438, 0.9536133, -0.21569824, -0.6274414, -0.12164307, 2.9433594, -1.1943359, 2.0117188, 0.26513672, 0.69433594, -1.3320312, -1.3095703, -1.1435547, -1.0234375, 0.73291016, -2.9335938, 1.8183594, 0.16052246, 2.53125, -1.4648438, 1.0556641, -2.1367188, 1.9091797, 3.4003906, 2.5703125, 3.3261719, 0.9296875, -0.33666992, 0.87060547, 2.2871094, 2.2011719, -1.5097656, 1.1865234, 1.8564453, 0.7553711, 1.8974609, -1.3671875, 0.64941406, -0.5385742, -0.6484375, 1.1259766, 1.2988281, -0.7114258, -0.24450684, 0.33081055, -1.1455078, 0.15405273, -2.8964844, 1.625, -1.9101562, 0.8491211, -0.30151367, 2.0214844, 0.023010254, -2.234375, 0.9741211, 2.0566406, -2.2265625, 2.6308594, -0.6269531, 0.82714844, -0.010932922, 0.4580078, -2.2597656, -1.421875, -0.9550781, -0.55615234, -0.7167969, -0.8847656, -0.35205078, -1.7460938, -0.45703125, -3.1445312, -1.2070312, 0.24694824, -0.59033203, 0.7661133, 0.46484375, 1.5195312, 0.064086914, -1.546875, -3.8007812, 1.8623047, -0.89404297, 0.5776367, -1.0195312, -1.390625, -0.38720703, 0.01751709, 0.94628906, -2.3398438, 0.5332031, 0.6508789, 2.3730469, 0.6928711, 2.703125, 0.7553711, 0.8461914, -0.37402344, 0.017745972, -0.2397461, -0.03970337, 2.4238281, -0.07489014, -0.32666016, -1.1748047, -0.5234375, -0.38134766, 0.15917969, 0.7265625, -0.35205078, 0.19909668, 2.5507812, 0.35180664, 0.6723633, -0.8730469, -1.8808594, -0.91064453, -0.27197266, -0.77685547, -0.6928711, -0.57666016, 0.14855957, 0.61376953, -2.0839844, -1.2246094, -1.2119141, -0.5917969, 0.27661133, -1.2109375, -0.089660645, 2.1738281, 0.20593262, -1.1035156, -1.4121094, -1.6298828, -0.5107422, -0.5078125, 2.9335938, -0.55859375, 0.72558594, -1.2226562, -0.5, 0.33325195, -0.56103516, -2.1445312, 1.8134766, -0.024780273, -1.328125, 2.6699219, -1.1083984, 1.3027344, -1.0898438, -2.109375, 0.6640625, -0.36157227, 1.8203125, -0.7265625, -1.0488281, 1.8417969, -2.0253906, 0.71240234, -0.20056152, 0.04901123, 0.45922852, 0.7158203, 1.3505859, -0.9321289, -1.3398438, -1.7353516, -0.42504883, -1.0341797, -1.0917969, 2.8398438, 1.7314453, 1.8476562, 2.2324219, -1.7109375, 0.91845703, -0.78515625, -1.1787109, 1.2324219, 0.83984375, 1.7011719, -0.4975586, 0.33203125, -0.7651367, 1.7050781, 3.0800781, 0.87646484, 1.7470703, 2.6445312, -0.609375, 0.42919922, 1.6171875, -0.39648438, 0.45336914, 1.8125, 0.41577148, 0.7602539, 0.6166992, -1.1699219, -1.234375, -0.67578125]}, "B00WLYOAB8": {"id": "B00WLYOAB8", "original": "Brand: onlyfire\nName: Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black\nDescription: Specifications:\u00a0
Onlyfire 14451 Electric Push Button Igniter
One \"AA\" Battery Is Needed. (Battery Not Included)
4 Male Spade Connector Outlets

Original Part Numbers: \u00a0 03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

Uniflame Part Numbers: 55-07-448;

Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

Amana Part Numbers: FCTG3007029;

Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

Suitable Models of BBQ gas grills:
Fits Various gas grill models of\u00a0BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

Exact-fit parts !Cooks better! Durable construction and Lasts longer!

A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

\nFeatures: CSA Certified, Requires 7/8\" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt \"AA\" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001,\nOriginal Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1\nFits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP\nFits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720\nKenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371\n", "embedding": [-3.7148438, 1.3730469, 0.8823242, -1.7216797, 2.3613281, -0.9423828, 1.7890625, -1.0419922, 0.33666992, -0.22045898, 2.6328125, -0.99609375, -0.013420105, -2.5371094, 1.1787109, 2.7421875, 2.171875, -1.3349609, 1.3232422, 1.7871094, 0.18054199, 2.1621094, 1.2998047, -1.9794922, 0.7348633, 1.8271484, 3.4550781, -3.8164062, 1.2578125, -1.9824219, 1.7519531, -2.2949219, -1.6376953, 1.3613281, -3.6621094, 1.6298828, -0.0758667, 1.5195312, -3.7714844, 1.3798828, 0.09265137, 1.2988281, 2.1523438, -1.0029297, -2.1894531, -0.6582031, 1.5625, 0.68066406, -1.4033203, -1.3222656, 2.1933594, 1.4794922, 0.23950195, 1.0498047, -1.5800781, 3.1582031, -1.4257812, -1.7539062, -0.19091797, 0.6230469, 4.5820312, 0.24633789, -1.6025391, 2.84375, -1.8720703, 0.5541992, -0.68896484, 0.7055664, 0.84472656, -0.81152344, 1.0458984, 0.5205078, 0.44970703, 0.33813477, 0.19311523, 1.0146484, -5.1914062, 2.0546875, -0.7397461, 0.3876953, -0.24890137, 1.1982422, 1.1347656, -2.7792969, 1.8046875, -0.52783203, -1.2089844, -0.009971619, 2.46875, 2.0371094, -0.8071289, 0.8125, -2.0273438, -3.1347656, 3.03125, -0.70703125, -0.2788086, 0.2512207, -1.0966797, 1.7265625, -2.4179688, 0.62109375, -1.1123047, -0.8618164, -0.29003906, -0.2467041, -0.22607422, 1.8300781, -3.0800781, 1.2988281, -0.24951172, 1.3876953, 2.3554688, -0.9819336, 0.13342285, -1.0107422, 1.3652344, -0.9355469, 3.0078125, 1.2910156, 4.6875, 0.058410645, 1.2128906, -2.7304688, -0.81884766, -0.90625, -1.5361328, -0.02822876, 5.296875, 0.46899414, 0.14404297, -3.1035156, 3.4199219, 0.5317383, -0.59716797, -3.7949219, -0.94140625, -3.2617188, -1.9619141, -0.37426758, -2.5292969, -0.421875, 1.7470703, -2.8867188, -2.4179688, 1.8417969, -0.83203125, 0.8232422, -1.2568359, -1.9824219, 3.1835938, -1.6933594, -1.0771484, -3.8125, 3.0175781, 1.5244141, -2.2246094, -2.1191406, 2.6660156, 0.7783203, 0.3232422, -3.5, -0.42382812, 0.875, -0.86035156, -1.6005859, -0.6972656, -0.52441406, 2.328125, 2.078125, -1.0888672, -2.1972656, 1.1074219, 0.87402344, 0.013832092, -1.6875, -2.3964844, 3.7558594, 0.84814453, 1.4404297, -2.6308594, -0.8886719, 0.5727539, 1.2265625, 0.9501953, -0.7915039, 0.7675781, 0.09661865, 0.5136719, -0.31835938, 1.5507812, 0.82910156, -0.26660156, 0.9008789, -0.82177734, -1.2783203, -0.97314453, -0.6870117, 0.118896484, 0.9238281, -0.8222656, -0.83496094, -0.42578125, -0.16064453, -1.8369141, -1.9589844, -1.0263672, -0.8017578, 1.1728516, 0.21643066, 0.9291992, -0.14123535, 2.1855469, -1.6660156, 1.9521484, -2.5996094, 1.1757812, -0.26904297, -0.1239624, 2.7226562, 0.6098633, -1.0273438, 1.4912109, 3.5703125, 1.0253906, 2.9902344, 0.08538818, 1.3056641, -2.2109375, -1.8251953, 2.6972656, 0.26391602, -1.3837891, -0.44262695, -0.7109375, 1.6298828, 2.2910156, -1.640625, 2.0664062, 0.80371094, -1.6904297, -3.234375, 1.2822266, -0.35498047, -1.7373047, -0.81640625, -3.2382812, 0.6977539, 2.0585938, 0.04373169, -0.4650879, 2.5, 0.0007753372, 1.1650391, -3.3730469, -0.45288086, 0.2770996, 1.2060547, -1.7587891, -2.8007812, 2.2070312, 0.45629883, -1.3017578, 1.9365234, -0.56884766, -2.5175781, 2.90625, 0.15942383, -1.53125, -0.9926758, -0.03781128, 0.5625, 1.4570312, -0.15234375, 1.578125, -0.06707764, -1.3935547, 1.6748047, 3.125, -1.7392578, -1.2373047, -1.8046875, 3.8222656, -0.13769531, -0.75146484, -0.43139648, -1.5195312, -1.296875, -0.5703125, 2.1171875, 4.1679688, -1.0800781, -4.2929688, 3.9941406, -1.9785156, 1.7001953, 1.6738281, -1.2392578, 0.64697266, -0.4321289, 1.0517578, 2.2480469, 2.1835938, 1.8095703, 1.6621094, 0.47485352, 1.8134766, -1.9179688, 0.6455078, 2.0761719, -0.96435547, -0.12695312, -0.8466797, 1.125, -1.6015625, -2.640625, -1.2646484, -2.3222656, 2.5371094, -2.2871094, -0.8881836, 2.0449219, -0.21069336, -1.5097656, -1.0996094, -0.17822266, -0.9506836, 0.057250977, -0.27416992, -0.7084961, -0.7949219, 0.068603516, 1.1220703, -5.9492188, -2.546875, 0.53027344, -3.6660156, -3.4824219, -0.7338867, -0.50341797, -2.4570312, 0.78271484, -3.328125, 2.046875, 0.7104492, -0.8203125, -0.8105469, -1.6318359, -0.3425293, -0.92089844, -0.93896484, 2.2265625, 2.4882812, -2.6582031, 1.3164062, -0.2861328, 3.1757812, 2.0859375, -1.3798828, 0.25390625, -0.070495605, -0.27319336, -1.4970703, 0.24768066, 0.54345703, -2.1796875, -0.62353516, -1.7226562, -2.0175781, -1.5273438, 1.3886719, 0.82958984, 1.7558594, -2.5625, -0.8847656, 0.85498047, -0.8642578, 2.875, -1.2099609, 1.4248047, -1.9189453, 0.296875, 1.3632812, -2.5136719, -2.5234375, -1.5429688, 1.3496094, 0.5239258, -1.8662109, -0.95458984, -0.6196289, 0.7753906, -1.2285156, -2.0878906, -1.0126953, -2.0527344, 2.8417969, -0.73535156, 1.6191406, 0.10064697, 0.38793945, 0.4296875, -2.0410156, -0.00041484833, -1.2724609, -2.2675781, -0.42797852, -2.5546875, 1.2871094, -0.05206299, -0.018493652, -0.80371094, 1.1630859, -0.39672852, 1.2060547, -3.0371094, 2.3378906, 0.5229492, -3.9550781, 0.15881348, 0.20166016, 0.5605469, -5.0117188, 0.83691406, 3.1757812, 1.5654297, 3.078125, 0.047546387, -0.49658203, 0.6479492, 1.2607422, 0.2626953, -0.6425781, 0.23364258, 1.5224609, -1.6855469, -2.5449219, 0.7973633, 1.6601562, -1.8505859, -0.1763916, 0.81103516, 1.3125, 3.5742188, 1.3066406, 1.6445312, 1.6308594, 0.59716797, 0.08074951, -0.015167236, 0.6064453, -2.4257812, -1.0400391, -0.62402344, -1.6191406, 4.2578125, 1.2070312, -0.6303711, 1.3642578, 1.9873047, 1.0869141, -1.7060547, -0.38671875, -0.49926758, 2.4238281, -0.0038967133, 1.7207031, -0.2541504, -0.07446289, 0.1940918, 1.1142578, -1.0732422, -2.7480469, -1.7490234, 2.5957031, 2.4609375, -1.0839844, 0.04537964, 0.8300781, 0.7919922, -0.81884766, 0.34594727, -0.97558594, -1.7626953, -1.8125, 1.7519531, -0.19006348, -2.875, 0.8046875, -0.2524414, -0.20214844, -1.3339844, 0.57470703, -2.2167969, -0.7636719, -0.13659668, 2.1523438, 0.73291016, 0.026550293, -0.52197266, -1.9306641, 2.1816406, -0.4152832, -0.3251953, 1.4101562, -2.2226562, 1.0751953, -0.16809082, 0.111816406, 0.7260742, 1.3232422, 3.6035156, 1.0439453, -2.1640625, 0.8876953, -2.6484375, -1.1572266, -0.24731445, -2.3476562, -0.89746094, 4.2304688, 1.3867188, 1.1884766, -1.2519531, 2.5957031, -1.4873047, 1.2558594, 3.9570312, -3.6953125, -1.7089844, -1.4902344, -6.2695312, 3.4570312, 1.3525391, 0.51220703, 0.5722656, 1.4052734, 0.40185547, 3.859375, -0.9482422, -2.78125, -1.1572266, -2.0195312, 1.7607422, 1.4111328, -2.2832031, 3.0175781, 1.1015625, -2.53125, -3.0722656, -0.69628906, -2.1191406, 0.984375, 1.0605469, -4.9296875, 1.7548828, -0.4675293, 0.40405273, -0.9707031, -1.9316406, 1.9570312, -0.7089844, 0.21557617, -1.5664062, 2.6113281, 1.0527344, 1.4697266, -0.2163086, 2.5449219, 2.203125, -2.4921875, 0.3293457, 1.1601562, 1.2744141, 0.2548828, -3.4238281, -1.8837891, 1.4433594, -0.73876953, -0.84814453, 0.7011719, -1.4785156, -3.6816406, 0.35058594, 0.4050293, 1.4238281, 3.0058594, 0.84814453, -1.3623047, -0.7338867, -1.5761719, -1.4951172, 0.17944336, -1.3789062, -0.23388672, -1.8300781, 0.8574219, -1.9365234, 1.1796875, -1.0673828, -4.4648438, -3.84375, 2.9375, 0.14123535, 1.1943359, 2.6054688, -0.61376953, 1.2294922, -1.6679688, -0.6430664, 0.5722656, -0.052856445, -0.67578125, 0.7861328, -0.6850586, 0.3095703, 0.95947266, -0.8256836, 1.5429688, -0.56933594, 0.20056152, -1.6953125, -1.2841797, -3.1386719, -0.3876953, 2.9355469, 0.47070312, 2.3867188, -0.52246094, 2.2773438, 1.5732422, -1.2861328, -0.58691406, 0.27319336, 2.9667969, 0.19360352, 1.5361328, 4.0273438, 3.4824219, 0.030899048, -0.4074707, 0.7680664, 0.7314453, -2.7460938, -0.12213135, 2.0429688, 0.7050781, -0.0013036728, -0.061767578, 3.34375, 1.9443359, -1.0537109, 1.6640625, 0.66259766, -1.7128906, 2.5351562, 0.21899414, -3.4335938, 0.53808594, -1.1738281, -1.2734375, 0.76708984, 0.5644531, -1.46875, -1.5878906, 3.6835938, -1.4228516, -0.43310547, 0.5029297, 0.21911621, 1.4658203, -2.6640625, -1.2285156, -0.3383789, 1.640625, 1.2412109, -1.7285156, 0.38354492, 0.35498047, 1.6611328, 0.81152344, 0.14233398, -1.109375, 1.6650391, 0.28442383, -1.1894531, -0.16601562, -2.2207031, -0.7036133, 2.1796875, 3.0957031, 0.4189453, 3.0488281, -0.05807495, 1.5576172, -1.8222656, -0.6484375, -2.1796875, 1.4736328, -0.8144531, 1.6992188, 1.6181641, -0.8725586, 1.4707031, -1.6240234, 1.4658203, -0.76416016, 3.6035156, 0.33203125, -0.08868408, -1.7128906, -0.8676758, -0.8256836, -4.1601562, -3.4550781, 1.0136719, 1.5478516, 1.0615234, 0.36547852, -0.03378296, 0.35913086, 0.34765625, -0.05114746, -2.5292969, 0.48779297, -1.6445312, 0.4296875, 2.5351562, -0.38916016, -2.125, 0.4868164, -0.37597656, -0.059295654, 1.7207031, -2.6738281, -0.7988281, 1.6650391, -1.6240234, -0.18151855, 1.9892578, -0.4177246, -0.45751953, -0.43579102, 0.2866211, -3.3222656, 0.78027344, -2.9941406, -1.9140625, 1.0664062, 0.65966797, 1.0029297, -0.008804321, -0.95458984, 1.6777344, -1.2705078, 1.0654297, -1.8564453, 0.10986328, 0.08880615, -1.9228516, -1.4033203, -2.2382812, -0.8310547, 0.79541016, 1.7900391, 0.33984375, -1.4628906, 1.0166016, -3.9433594, -1.6103516, -0.4892578, -1.0664062, 1.5859375, -1.6455078, 2.140625, 0.5385742, -0.51123047, 0.032043457, 2.4316406, -1.0869141, -1.1152344, 0.0637207, -0.4255371, 2.4160156, -0.09741211, -1.5849609, -0.18432617, 0.4111328, -0.10784912, -1.7275391, 0.75146484, -0.93408203, -0.55615234, -1.2285156, 0.042938232, -0.75146484, 1.9609375, 4.03125, -1.8691406, 0.43579102, -0.56591797, 1.5244141, 1.2265625, 1.4882812, 1.5253906, 0.7114258, 0.48999023, 3.6171875, -1.7587891, -2.5488281, 0.44750977, -2.1855469, 0.5708008, 1.1933594, -3.4824219, -0.82910156, -1.2412109, 0.06567383, 0.04232788, -1.4287109, -1.2216797, 3.1347656, 1.8671875, 0.5908203, 0.56103516, 2.4550781, 2.0214844, 1.4941406, 1.703125, 2.6738281, -0.56933594, -0.13598633, 0.13659668, 0.74853516, 1.0058594, -2.8789062, -0.29370117, -0.48535156, 0.7480469, -0.27783203, 3.2265625, 1.1601562, 1.3173828, 0.5957031, 2.5605469, 0.42529297, 2.5214844, 1.5859375, 0.19885254, -0.8964844, 2.9296875, -0.5229492, 1.6005859, 0.72998047, 0.6513672, 0.6743164, -3.4394531, 1.1220703, -2.6289062, 0.101135254, -0.89941406, -0.3791504, 0.43115234, -2.4355469, 0.34423828, 0.30664062, 3.0507812, -4.2851562, 0.4284668, -0.7763672, 1.0136719, 1.4824219, 0.55371094, 3.7636719, -1.0439453, 1.2509766, 0.8022461, 1.2900391, 2.1542969, -2.6035156, 0.59521484, -0.51708984, 0.8198242, 0.31713867, 0.68652344, 0.2705078, 0.5288086, 0.024597168, 1.6748047, 1.3828125, -1.6523438, 2.3828125, -4.4375, 2.8730469, -0.41845703, 4.4648438, -0.6508789, -1.7158203, 2.7636719, -1.0615234, -4.5351562, -3.9726562, 2.7226562, -0.13024902, 0.22961426, 0.3864746, -3.7324219, 2.0605469, 2.5957031, 1.2060547, -2.2109375, 2.2753906, -1.0507812, -1.0908203, 0.5571289, -0.10644531, 0.032714844, 1.1347656, -0.6123047, -2.6796875, -0.7426758, 2.8359375, 3.1210938, 0.14501953, 1.2138672, -0.28149414, -1.6113281, -1.0615234, 1.3964844, -0.6796875, -0.12768555, -0.18786621, 1.6894531, 1.6660156, 2.3632812, 0.68847656, -2.7363281, -1.34375, -0.25610352, -1.2148438, 0.5991211, -1.5, -2.9746094, -0.3491211, 1.3994141, -1.0947266, -1.8427734, 1.2851562, 1.6845703, 0.8808594, -1.5566406, -0.48876953, -1.5722656, 3.1738281, -1.0341797, -2.5273438, -0.7285156, -2.0371094, -0.46289062, 0.52197266, -1.4111328, 2.8808594, -0.33007812, 2.5410156, -1.4736328, -0.12939453, 1.1474609, 0.03326416, 0.046936035, 2.1074219, -0.24914551, -2.1894531, 1.0478516, -1.9345703, 0.31420898, 2.9628906, -0.9121094, 1.4169922, -2.6542969, -0.84277344, -0.9736328, -1.3017578, -3.0449219, 0.08312988, 2.3691406, -0.5053711, 1.0195312, -2.2128906, -2.3847656, -0.31079102, -1.0634766, 2.2363281, 0.8227539, -1.4599609, 1.3710938, -2.1191406, 4.1875, -0.8520508, -1.3095703, -1.6220703, -1.5244141, -0.1842041, -0.14916992, 1.2099609, 0.55810547, 1.9287109, 1.4277344, 2.1425781, 2.2070312, -1.3398438, 2.0507812, 3.3417969, 1.1171875, -2.125, 0.953125, -2.3027344, 0.88916016, 0.2397461, -1.1982422, 0.7988281, -0.06677246, 1.2119141, -0.7734375, -0.93115234]}, "B09B48Y5JB": {"id": "B09B48Y5JB", "original": "Brand: H0MEpartss\nName: H0MEpartss 200lb / 420lb Propane Tank Lid 16\" Diameter Cover Top Above Ground Black Plastic\nDescription: Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~\"\nFeatures: \u2705 Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid\"\n\u2705 We have only quality products.\n\u2705 High quality- save your time and your money.\n\u2705 Ensure long-lasting and effective performance.\n", "embedding": [-0.6357422, 1.2695312, 2.03125, -1.2753906, -0.7080078, -1.0800781, -1.7880859, -1.90625, 1.1796875, 1.0429688, -0.39672852, 0.5654297, 1.6308594, -3.0507812, 1.2431641, -1.0458984, -0.06762695, 1.1962891, 3.2753906, -0.27294922, 3.2207031, -0.22399902, -0.7470703, -0.50097656, 1.4980469, 0.88427734, 4.1914062, -2.2792969, -2.234375, 0.9013672, 0.63720703, 0.7739258, -1.0019531, 3.2734375, 0.9892578, -1.1103516, -0.28759766, -0.9580078, -4.796875, -0.24975586, -3.421875, 0.010414124, 3.4511719, 0.56884766, -1.0703125, -0.7841797, -0.63134766, -2.1445312, -0.5048828, -0.5097656, 0.69433594, 0.88427734, -1.1074219, 0.23950195, 0.6611328, 1.3857422, 0.15698242, -2.0214844, 0.2980957, 1.4736328, 0.091796875, -0.6455078, -1.8740234, 1.2011719, -0.5683594, 1.8027344, -1.3066406, -0.5180664, 0.39868164, 2.8300781, 0.05319214, 0.1784668, 0.82470703, -2.0507812, 1.1357422, -1.9023438, -2.7070312, 1.5859375, 0.87060547, -0.5332031, 0.7104492, 3.3945312, -0.1427002, -1.4150391, -1.2255859, -2.6132812, -0.23571777, 0.1685791, -1.0371094, -0.1015625, -0.46313477, 2.4726562, -2.3261719, -4.0195312, -0.28100586, -0.7470703, 1.4003906, 2.0058594, 3.2988281, 0.9536133, 0.65234375, -0.14538574, -0.05050659, 0.075927734, -1.9384766, -1.4648438, -0.37963867, 0.37963867, 0.08660889, 0.3630371, -0.12219238, -1.1630859, 1.9492188, -1.9931641, 0.6879883, 0.5517578, 1.1191406, -0.8046875, 1.6689453, 2.2011719, 4.078125, -1.7714844, -0.53027344, -0.45385742, 0.7475586, 0.8154297, 0.7192383, -0.22070312, 1.4052734, -0.26220703, 1.9296875, -0.36889648, 2.3554688, -1.5947266, -0.58447266, -0.15637207, -2.0019531, -1.5351562, -1.1328125, -0.6459961, -3.0507812, 0.28930664, 0.79833984, -0.6044922, -1.0537109, -0.05609131, -2.3769531, 0.9511719, 0.057556152, -1.2910156, 0.68359375, -2.6699219, -0.17529297, 0.3569336, 1.7958984, 0.6772461, 1.3613281, -1.1328125, 1.2880859, 3.7265625, 1.8417969, -0.6323242, 0.030822754, 0.78515625, 0.93408203, -1.6240234, 2.6074219, -2.0234375, -2.6816406, 0.86621094, 1.7324219, -0.4831543, 0.50146484, 1.6455078, -0.124694824, -2.3964844, 2.4785156, 1.3994141, -0.6899414, 0.36865234, -5.0703125, -1.2978516, -0.07293701, -0.2824707, 1.1386719, -0.6875, -3.7792969, -3.3339844, 0.035003662, -0.33764648, -1.7236328, 0.5463867, 0.6328125, -1.5615234, 0.048095703, -3.5214844, -1.8085938, -2.6308594, 1.1474609, 0.90527344, -0.5527344, 0.86279297, -0.8105469, -0.84814453, -1.5546875, 1.0253906, 0.54833984, -1.2119141, -0.44555664, 0.1619873, 0.43432617, -0.23278809, 1.9091797, -0.47314453, -0.19299316, -2.5976562, 2.5175781, 2.3027344, 1.3095703, -0.023773193, 1.3242188, -0.44799805, 0.13378906, 2.2011719, 0.76123047, 0.17382812, 1.0322266, -0.05230713, -2.6484375, -0.06573486, 2.2617188, 2.0546875, 0.016921997, 2.1660156, -1.046875, 1.9941406, 0.2590332, -0.92871094, 0.07348633, 1.2753906, 2.5878906, -0.35058594, -1.9238281, -0.49902344, -0.54833984, 3.1757812, -0.44262695, 0.13110352, 0.8359375, -1.2011719, 0.15344238, -0.81640625, 0.35180664, -0.17028809, 0.49536133, 1.5634766, 1.046875, 0.35546875, 0.49438477, -3.4101562, -0.18017578, -0.7504883, 1.9755859, 1.3339844, 0.007904053, 0.22460938, 1.9404297, 0.5883789, -1.2021484, -0.9355469, -0.5761719, 1.2685547, 1.6992188, -1.2119141, 2.1601562, 2.0273438, -0.93310547, 2.1035156, -0.7788086, 1.1376953, 0.95654297, -0.69970703, 0.93408203, -3.7714844, 2.0097656, 0.7236328, 0.46606445, 0.3449707, -3.3320312, 1.0644531, 2.9511719, -1.1376953, -1.46875, 2.6660156, 1.7675781, 0.11968994, 0.8388672, -1.2255859, -0.7241211, 0.4477539, -1.9619141, -0.19799805, -0.1427002, 2.0859375, 2.0546875, -0.6772461, -1.8408203, -0.828125, -0.78564453, 1.0458984, 0.06298828, -0.19152832, -0.9536133, -0.18774414, -0.33984375, 0.10229492, 3.3027344, -1.3525391, 0.21606445, 0.72998047, 0.42089844, -0.5527344, -0.25390625, -0.234375, 0.14953613, 1.2373047, -1.1455078, 0.47045898, -0.07550049, 0.4111328, 0.78027344, -2.2949219, -0.21875, -0.7783203, 0.4387207, 0.8432617, -2.1054688, -0.6254883, 1.6572266, -1.3925781, 1.3476562, -0.82910156, -1.4199219, 3.3828125, 0.22436523, -1.0478516, 0.18798828, -0.37768555, 0.7817383, -3.0742188, -0.5605469, 3.1152344, -1.3144531, -4.3046875, 1.3525391, -0.7260742, 0.38623047, 0.97998047, -0.8203125, 0.8588867, 0.5498047, 0.06561279, 1.5341797, -1.5546875, -1.7275391, 0.3359375, 1.8867188, -4.9648438, 0.04623413, -3.2851562, -1.1953125, -1.2431641, -1.4394531, -1.9277344, -1.4716797, -0.33740234, -0.7861328, 2.5253906, -0.39404297, 1.0517578, 0.26000977, 0.9902344, 0.30737305, -2.5273438, -2.2558594, -0.49951172, 0.34985352, -0.6123047, -1.4619141, -5.6289062, 0.23937988, -1.96875, 0.15527344, 2.1386719, -2.3300781, -1.5039062, -0.37036133, 0.45410156, -2.0292969, -0.29467773, 0.38867188, 0.5385742, -0.5883789, -0.56103516, -0.9477539, -1.5859375, -1.1669922, -2.578125, 1.4072266, -1.5419922, -0.30493164, 0.19494629, 0.79589844, 2.7675781, -0.54785156, -3.7460938, 1.5078125, 2.7089844, -0.012329102, 1.1933594, -2.2734375, -1.8701172, -2.0878906, -0.5258789, 2.5292969, 1.7958984, 1.4980469, 1.7109375, -0.5991211, -0.06829834, 0.026748657, 1.4726562, 0.9301758, 1.7431641, 3.4765625, -2.9628906, 0.23242188, -1.4238281, 2.5683594, -2.4570312, -1.1025391, 1.7568359, 0.9370117, 2.8164062, 0.105529785, -1.7128906, -0.3696289, 1.2041016, 1.7382812, 0.62890625, 2.6464844, 2.21875, -0.7817383, 3.3515625, 0.98339844, 1.7363281, 3.3242188, 0.0049438477, -0.05429077, 1.7841797, 0.0071868896, -0.74560547, 0.08355713, 0.8769531, -0.5332031, 0.4177246, 1.4814453, -1.6855469, 1.9794922, 0.39086914, -0.8149414, 0.20690918, -1.9345703, 0.5727539, 0.8413086, 1.7148438, -0.11816406, 0.6357422, -0.13830566, -0.953125, -1.4277344, 2.5664062, 0.9897461, 0.18286133, 1.2871094, -2.5449219, 1.1396484, -1.7089844, 4.1914062, 0.8027344, 1.0712891, 0.90771484, 1.9433594, -1.4326172, -3.2636719, -0.5239258, -0.2644043, -1.1826172, 2.8125, 0.54833984, -1.9980469, 0.22070312, -2.0605469, 2.7734375, 0.7504883, -0.50146484, -1.1005859, -0.8496094, 0.9404297, -0.3684082, 0.8696289, 1.8085938, 0.92041016, -2.6855469, -2.4882812, -0.021087646, 1.5791016, 1.3447266, -1.3017578, -0.7949219, 1.4082031, -2.1132812, 3.7519531, 0.86572266, 2.8398438, -0.11279297, 1.7099609, 2.2285156, 0.09680176, 1.53125, 0.10235596, -4.2773438, -0.78564453, -0.7470703, -0.3713379, 3.1464844, 0.1776123, 0.2734375, 0.78515625, 0.9453125, -3.4707031, -0.4638672, -1.4775391, 1.6396484, -1.3300781, -2.3730469, 0.8588867, 0.30249023, -3.5644531, -2.5820312, 0.37939453, -1.5244141, -0.7373047, -1.7158203, -3.109375, 1.5976562, 1.6113281, 0.39111328, -1.0673828, -0.24743652, 1.5810547, -1.0009766, -1.4824219, -1.2832031, 3.2910156, -0.25341797, -1.0556641, 0.72021484, 1.7089844, 1.9013672, 0.27270508, 1.1181641, -0.62402344, 1.7919922, 0.38110352, -2.4609375, 0.006275177, -0.5336914, 2.1191406, -0.6586914, -0.032226562, 0.5004883, 0.34399414, -0.31201172, 1.7490234, 0.6230469, -0.10723877, 0.29418945, 0.6425781, 3.171875, 1.8867188, 0.12573242, -0.18286133, -0.18652344, 0.8881836, -0.8852539, 0.23132324, -2.7050781, 0.23852539, 0.7290039, 0.41796875, -2.4257812, -0.7241211, 0.9814453, 2.1347656, -0.46923828, -2.4882812, -1.2548828, 0.22851562, 2.4179688, 1.9677734, -1.0185547, -1.0507812, -0.56347656, 0.83691406, 0.70947266, -1.8486328, -0.32592773, -0.76220703, -0.8388672, 1.2460938, 0.6142578, 1.9404297, -1.5302734, 1.4326172, -1.3173828, -2.2304688, 3.2851562, -3.4960938, 1.8710938, -1.2773438, -0.8334961, -2.65625, 3.4824219, 1.9521484, -0.32226562, 0.5395508, -1.4296875, 0.60839844, 0.24047852, 0.17321777, 0.54833984, 1.2167969, -2.0703125, -0.9140625, -0.25024414, 2.6796875, -1.0517578, 1.1269531, 0.99316406, 2.4863281, 1.5849609, 1.40625, 1.9492188, -2.3867188, 1.5917969, 1.3476562, -1.203125, -0.48339844, 0.5341797, 2.0292969, 3.9707031, -1.4189453, -4.578125, 0.26342773, 0.82958984, -0.7338867, 1.2841797, 0.85839844, -2.7011719, -0.72265625, -2.4960938, -1.2832031, 0.15771484, -1.3222656, -0.71484375, -1.25, 0.2993164, 1.1035156, 0.9370117, 1.8857422, -0.31201172, -1.2539062, -0.020980835, 2.0878906, -1.1289062, -2.5839844, -0.09692383, -1.8837891, 1.5019531, 0.117126465, -1.4814453, -0.9863281, 1.7060547, 3.7011719, -2.8007812, 0.13256836, -0.48168945, 0.34423828, -2.3339844, 0.24902344, 2.6035156, -1.953125, -2.9472656, -0.49316406, 0.18164062, -2.3925781, 2.9707031, 2.125, -0.15930176, 0.7529297, 0.5385742, -3.4492188, -3.9160156, -0.5151367, 0.051605225, 0.67041016, 0.6875, -0.31445312, -0.12902832, -0.92529297, -1.6835938, -0.7519531, -1.2148438, 1.015625, 0.87060547, -1.7275391, 2.40625, -0.04949951, -0.79541016, 0.5800781, -1.1738281, -1.1767578, -2.7148438, -2.8984375, -3.9082031, -0.22961426, 0.113342285, 0.18933105, -1.4755859, -1.9121094, 2.9023438, 0.18395996, 0.8774414, -3.0488281, 1.4521484, -1.5742188, 0.2319336, 1.4423828, -1.7148438, 0.7504883, 1.4804688, 1.2363281, 1.6113281, 1.0566406, 2.4882812, -2.0292969, -0.5385742, 0.45507812, -0.0063285828, 0.7324219, 0.49853516, 2.9316406, 0.33496094, 0.61572266, 2.3105469, 1.8271484, 0.8178711, -1.5742188, -0.10461426, 0.3503418, -2.2773438, -2.1992188, -0.49365234, 0.49438477, 1.5039062, -0.11102295, 0.37939453, 2.1308594, 0.013114929, -1.5380859, 1.8671875, -2.1484375, 1.1904297, 2.3398438, -1.84375, -2.7011719, -1.6113281, 2.3261719, 1.6435547, -1.4130859, 0.6870117, -1.0751953, -1.2548828, 2.2402344, 0.36376953, 0.69189453, 0.0077323914, -0.17456055, -2.2949219, -0.4309082, 3.9707031, -0.91796875, 1.2021484, 0.064697266, -1.4404297, -1.2148438, 0.04324341, 1.2099609, -1.1552734, -0.33984375, -0.22851562, -0.9296875, -1.109375, -0.5073242, 0.015060425, -2.8320312, -0.117492676, -0.59277344, -1.0048828, -4.0859375, 1.7275391, -0.74316406, 0.00919342, -0.10015869, 0.4362793, -0.9536133, 0.60498047, 0.28173828, 0.07043457, 0.48461914, -0.9824219, -0.57470703, -0.1586914, 0.23461914, -2.8242188, 1.4189453, -0.91015625, 0.5209961, -2.7382812, 0.4790039, -1.9667969, 1.7236328, 2.0957031, 2.8828125, 2.1621094, -0.6538086, 1.5332031, 0.5761719, 2.4785156, 2.6308594, -0.890625, 0.27490234, 1.3496094, -0.37939453, 0.8129883, -0.3947754, -0.49536133, -0.6152344, -1.46875, -0.7524414, 0.8310547, 2.7636719, -1.7636719, 0.20043945, -1.8876953, 0.4855957, 1.0371094, 0.56347656, -2.0957031, -1.6699219, 0.83251953, -2.5429688, 2.1796875, 0.24780273, 0.48168945, 1.0839844, -1.1513672, 1.2783203, 0.6665039, -0.46606445, -2.8632812, -2.6328125, -0.35375977, 2.0742188, 2.3125, 1.84375, -0.24499512, -1.6640625, -0.7895508, 0.8432617, -0.34326172, -1.2714844, 1.5654297, -0.23266602, 2.3105469, 1.7119141, -0.8334961, 1.6425781, 0.034851074, -0.9550781, -2.2460938, 0.13598633, 1.578125, 1.8925781, 0.52246094, -3.8261719, -0.18933105, -0.85058594, -0.3293457, -2.6855469, -1.2617188, -2.1289062, -0.45361328, -0.27490234, 0.99121094, -1.3769531, 1.9101562, 0.5517578, 0.8808594, 0.6821289, 0.52685547, 1.0654297, -0.35375977, 1.3535156, 1.7617188, 1.8574219, 1.2412109, 1.4521484, 0.4831543, -0.36547852, 0.035308838, 2.6484375, 1.2080078, 1.4599609, 1.8007812, -3.1835938, 2.5234375, 0.0082092285, 1.0546875, 1.1328125, -1.2578125, 1.6367188, -0.93408203, 0.078430176, 0.70996094, -0.18273926, 0.46899414, 3.0878906, -1.7148438, -0.9692383, 1.3671875, -0.6640625, 1.1855469, -0.4140625, -1.2822266, 1.3886719, -0.4658203, 1.2158203, -3.7109375, 2.6816406, -0.09375, 1.6533203, -0.5488281, -1.0615234, -0.9472656, -0.20617676, -0.5317383, -1.1132812, 0.6772461, -0.06323242, -0.49731445, -0.013580322, 1.4521484, 0.5776367, -0.8520508, 0.085510254, -0.4326172, -1.3164062, -0.5004883, 0.77246094, 1.4746094, -1.1025391, 1.1679688, 2.5019531, -0.45581055, -0.18688965, -0.18493652, -3.2363281, -1.1318359, -2.7480469, 0.9770508, 0.3334961, -0.22692871, 0.43066406, 1.5478516, 2.3457031, -0.7446289, -0.75390625, -0.42822266, 1.9130859, 3.1621094, -1.9824219, 0.5078125, 0.35302734, -1.0253906, 1.2587891, 3.65625, 1.8046875, 0.009109497, -0.12597656, 5.1679688, -1.4882812, -2.2871094, -0.8334961, -0.30200195, -1.8613281, 0.17944336, 0.69140625, 2.8339844, -1.3554688, -1.9746094, -0.6953125, 0.5473633]}, "B0783GVCFV": {"id": "B0783GVCFV", "original": "Brand: Weber\nName: Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches\nBoasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D\n529 Square inches of cooking space over three burners\n", "embedding": [-1.9462891, 0.2866211, 1.8671875, -0.6196289, -0.32177734, 1.0791016, 0.74853516, -1.6259766, 1.2597656, 1.1181641, 2.6894531, 0.89160156, 0.35131836, -3.59375, 0.074523926, 0.703125, 2.3789062, 1.0117188, -0.32080078, 1.1982422, 0.7133789, -0.056488037, 3.0019531, -2.3496094, 1.0625, 0.5878906, 3.2949219, -4.5585938, -1.0996094, -3.2617188, 1.0371094, 0.359375, 0.13476562, 2.0332031, -4.5664062, -1.3671875, -3, 1.6494141, -1.9375, 0.6621094, 0.41186523, -1.8613281, 0.64160156, -1.4179688, -1.65625, 1.4082031, 1.0878906, 1.0546875, -2.3828125, -0.028366089, 3.0722656, 1.8056641, -0.4794922, 0.5024414, -1.3085938, 1.7763672, 1.3095703, -1.7832031, 1.6445312, 0.31225586, 2.8984375, 0.1821289, -1.9033203, -2.1757812, -1.2353516, 0.17224121, 1.0429688, 0.7319336, -1.1640625, -0.020584106, 3.4589844, -0.2998047, -1.7724609, 2.8789062, 0.078186035, -1.7636719, -3.0527344, 2.875, 0.37524414, -1.0976562, -1.5117188, 2.5703125, 2.3203125, -1.3417969, 0.8300781, 0.63720703, -0.19384766, -2.328125, 1.4541016, 1.0048828, -0.3696289, 1.1640625, -1.9375, -3.3828125, 2.2832031, -0.15979004, 1.3076172, 1.2275391, -1.0625, 1.4599609, -1.0097656, 1.9248047, -0.5366211, -0.80859375, -2.3535156, -1.2919922, 1.3984375, 0.9658203, -2.0957031, -0.21643066, -0.88378906, -0.6669922, 0.81396484, 1.5292969, 1.1298828, 1.7851562, 1.3232422, 1.9160156, 0.9379883, 0.6323242, 3.3203125, -0.78027344, 0.2322998, 0.48339844, -1.2275391, -1.2460938, -0.47485352, 1.1113281, 2.6855469, -2.9433594, -0.6621094, -0.21789551, 2.8339844, 1.0917969, -1.390625, -1.9316406, -0.6381836, -1.4121094, -2.9179688, 0.17297363, -1.3271484, -0.055725098, 1.6816406, -2.1679688, -2.7597656, 1.0283203, -0.35327148, -0.002746582, 0.44360352, -1.1660156, -0.75927734, -0.78808594, -1.2753906, -3.0429688, 2.0332031, -0.26464844, 0.3720703, -0.22070312, 3.203125, 2.5195312, 1.8554688, -1.3046875, -2.7675781, -1.1806641, 0.22424316, -0.43725586, 1.2695312, 1.1708984, -0.4946289, 1.6494141, 0.22509766, -0.44921875, -0.7495117, 0.17211914, 1.4492188, -1.6660156, -0.484375, 0.9560547, -0.027908325, -0.83935547, -0.43920898, -1.1787109, 0.29638672, -1.5224609, -0.77197266, -0.55908203, 0.3857422, 0.80029297, 1.6308594, -1.4501953, 0.71875, -1.1796875, 1.3632812, 0.11767578, 1.4814453, -1.1572266, -2.1699219, -1.5361328, 2.0898438, 0.09649658, -1.5986328, -0.4489746, 1.078125, 1.3486328, -1.3398438, -2.8125, -0.5395508, -2.7539062, 0.40014648, 2.0917969, 1.5917969, -1.1171875, 0.81640625, -0.6352539, 1.8359375, -0.8955078, 2.1699219, 0.81103516, 0.55908203, 2.6464844, 0.36254883, -0.35205078, 1.2041016, 2.6386719, 0.8076172, 0.625, 0.3232422, 0.49658203, -2.3925781, -1.4013672, 3.5878906, -0.57910156, -0.33984375, 1.1376953, 0.8461914, 3.6757812, 0.8173828, -1.1396484, -0.048950195, 1.5556641, 0.20593262, -0.17626953, -3.8535156, -0.2614746, -1.1298828, -0.78271484, -1.3388672, 2.5390625, 1.9443359, 1.2470703, 1.2851562, -0.22961426, 1.3037109, 1.7792969, -0.8798828, 0.69433594, -1.1240234, 2.5800781, 0.5053711, -0.8598633, 0.9057617, 0.7285156, 0.13391113, 1.0009766, 0.73535156, -1.2285156, 1.0595703, 2.1289062, -0.73876953, -1.8037109, 0.15771484, -0.35791016, 0.6118164, -1.3994141, 2.7617188, 0.74853516, -1.0058594, 2.9921875, 0.6777344, 1.1455078, 1.2167969, -1.640625, 1.40625, -3.6074219, -0.6352539, 1.2792969, 1.0693359, -1.7929688, -1.1806641, -0.22509766, 4.5703125, -1.7138672, -1.8125, 2.9726562, -1.6982422, 0.43237305, 2.7402344, 1.0673828, -1.2167969, 1.6298828, 2.8496094, 1.2919922, 1.0273438, 2.0761719, 0.6923828, -1.0029297, 1.1933594, -2.78125, 0.21691895, -0.036743164, -0.1920166, -0.9296875, -0.5307617, 0.8100586, -3.0605469, -1.3339844, 1.90625, -2.1074219, 0.014015198, -0.4165039, 1.5068359, -0.07678223, -0.83691406, 0.33544922, -1.3623047, -0.4338379, -1.6738281, 1.0859375, -0.18530273, -1.0820312, -0.6748047, 0.33496094, -0.5229492, -3.1210938, -2.1328125, -0.9868164, -1.2255859, -2.7773438, 1.5332031, -1.5390625, -0.9692383, 1.4199219, -1.9179688, -0.8173828, 0.045715332, -1.6962891, -0.62890625, 0.17333984, -0.84033203, 0.021560669, 0.828125, 1.2148438, -1.8974609, -2.1113281, -1.2070312, 0.22363281, 1.5185547, 0.8623047, -1.3691406, -0.06719971, 0.7006836, 1.1005859, -0.7685547, 0.88964844, 1.9355469, -0.9770508, 0.1706543, -3.671875, -1.2070312, -2.3710938, 1.5605469, 0.6538086, 1.4355469, -3.1875, -1.7197266, -1.5039062, -0.5834961, 4.4492188, -0.62109375, 1.8837891, -0.1274414, 0.38134766, 0.66748047, -3.0742188, -1.5146484, 0.17602539, 0.63916016, -1.984375, -0.5058594, -1.140625, -0.3022461, -1.9951172, -0.15759277, 0.07196045, -0.81152344, -0.53125, 0.067871094, -2.6015625, -1.1582031, -1.0107422, 0.55078125, 0.0038375854, -0.90771484, -1.9335938, -1.8212891, -1.5263672, -0.8828125, -2.21875, 0.47827148, -0.17248535, 1.8583984, 1.640625, -0.09692383, 1.0820312, -0.49121094, -3.0917969, 1.8369141, 0.16430664, -3.6816406, 1.2070312, -2.2050781, -0.6899414, -2.6386719, -0.021514893, 1.8691406, 1.8105469, 0.92626953, 1.0625, 1.2939453, -0.02722168, -0.8701172, 0.80029297, -1.5791016, 0.9111328, 3.484375, -2.1933594, -0.17199707, 0.9243164, -0.42456055, -3.0878906, -1.0585938, 2.6386719, 2.2128906, 1.6855469, 0.45043945, 1.8652344, -0.3383789, -1.4228516, 0.7089844, -0.11193848, -1.3574219, -0.020996094, -0.33276367, 1.2919922, -1.3291016, 2.0175781, 0.90283203, 1.5009766, 2.9277344, 0.2788086, -0.46899414, -0.32250977, -0.115478516, -0.31445312, 1.6425781, -0.61572266, 1.8974609, 0.3251953, 0.018966675, -0.70654297, -0.6464844, -0.15246582, -0.6459961, -3.2304688, 2.4960938, 0.08135986, -0.77197266, -0.19018555, 0.49804688, 1.8574219, -0.18737793, -0.07104492, -1.328125, -0.105041504, 2.2597656, -1.4746094, -0.35083008, -2.3203125, 0.5571289, -0.6503906, -1.9951172, 0.59716797, 3.6894531, -2.1152344, -1.2021484, 1.4414062, -1.1845703, -0.28710938, 2.1289062, -0.35766602, 0.33569336, 0.99658203, -2.2441406, 1.0712891, 0.9423828, 0.7919922, -1.4560547, -0.082214355, 0.88720703, -0.6381836, 0.50878906, 2.1132812, -0.7294922, -2.8320312, 0.8046875, -3.1796875, -1.3662109, 0.87353516, -2.1992188, -1.0947266, 2.9726562, 1.1748047, 0.4321289, -0.15258789, 3.7089844, -1.2802734, 0.7446289, 2.7265625, -3.2148438, 1.2275391, -4.203125, -3.515625, 1.0244141, -1.8359375, 0.41015625, 0.796875, 0.22241211, 0.099243164, 4.0546875, 0.8417969, -2.1835938, -1.6777344, -0.26538086, -0.17260742, -0.9785156, -0.4716797, -0.33496094, -1.2685547, -2.2480469, -3.2246094, -0.84375, 1.0986328, 1.9462891, 1.796875, -4.0351562, -0.90771484, -1.4775391, -1.8105469, -1.8671875, -0.6074219, 1.9501953, -0.7348633, 0.6508789, -3.4804688, 0.86816406, 1.8486328, -0.8383789, 2.4882812, 2.8710938, 0.45385742, -1.90625, 3.3476562, -0.16503906, 3.5664062, -0.67285156, -2.8417969, -1.6806641, 0.60302734, 0.6645508, -1.9316406, 0.2927246, 1.0644531, -1.2958984, 1.6328125, 1.2363281, 1.4775391, 0.10235596, 0.5107422, -3.3203125, -0.38232422, -0.57421875, -0.15026855, -1.9267578, -1.0585938, 1.2470703, -0.9638672, 0.5463867, -2.609375, 1.0654297, -1.2763672, 0.04107666, -2.9277344, 2.5507812, 2.921875, 3.1875, 2.6582031, -1.4423828, 0.62158203, -0.62841797, -0.22766113, -1.953125, 2.0410156, -1.0263672, -0.52978516, 3.2753906, 1.0009766, -0.875, -0.014099121, 0.5625, -2.578125, -1.5761719, -1.9541016, -1.1386719, -1.7236328, -0.99316406, 1.5605469, -0.36401367, 3.2167969, -0.80859375, -1.7392578, 0.03125, 1.2490234, -1.1259766, -0.21044922, 0.46533203, 0.29052734, -0.2154541, 2.0253906, 1.8798828, 0.68847656, 0.91845703, -1.0429688, 1.5771484, 0.14978027, 1.4384766, 2.1992188, -0.9135742, -0.5292969, -0.7602539, 1.3359375, 2.7910156, 1.6328125, 3.4921875, -0.019897461, -2.9628906, 1.7148438, 0.90234375, -3.9355469, 1.3037109, 1.6347656, 0.8310547, 1.203125, 1.1386719, -4.5898438, -0.5205078, 1.5605469, -0.9707031, 1.140625, -1.2626953, -0.00623703, 2.4667969, -0.47851562, -0.15783691, -0.43945312, -1.4423828, 1.7763672, 1.9501953, 0.73779297, -1.7392578, 1.2636719, 2.4589844, -0.3852539, -1.9755859, 1.7675781, -0.81347656, 0.71728516, -2.328125, 0.5097656, -0.16149902, 0.32910156, 2.8242188, 1.2626953, 1.9814453, 0.32910156, 2, -2.6425781, -0.19067383, -2.2148438, 2.6328125, -1.1152344, -0.5566406, 0.81347656, -2.1875, 1.0693359, -2.8261719, -2.2011719, -0.15270996, 2.1191406, 1.21875, 0.37890625, -2.0058594, 0.17041016, -0.96777344, -2.5917969, -0.5332031, 0.32495117, 0.47851562, 0.46899414, 1.6591797, -2.1230469, 0.84716797, 0.016586304, 0.6484375, -1.5556641, -0.24047852, -1.1425781, -0.60302734, -0.7158203, 0.09631348, -1.3388672, -1.0917969, 1.1875, 1.171875, 1.2041016, -2.1933594, -1.3486328, 1.1181641, -1.078125, 0.21240234, 2.2207031, 1.5732422, -0.3322754, 1.5898438, 1.2060547, -1.6552734, 1.7822266, -3.5859375, -1.5654297, 1.9335938, -1.7958984, 2.6132812, -1.5410156, -0.5102539, -0.08917236, 0.014465332, 1.2744141, 1.2529297, -0.99853516, -1.4199219, 0.17675781, -1.1513672, -2.3613281, 0.24560547, -0.3317871, 1.4970703, 0.41015625, -1.6171875, -0.45263672, 0.08496094, -1.4423828, 1.1953125, -2.4628906, -1.7617188, -0.062927246, 1.3837891, 0.5029297, 0.19897461, -0.81689453, 3.1074219, -0.8774414, -1.5400391, 0.7788086, -0.95458984, 3.8964844, 3.0136719, -0.21972656, -1.3974609, -2.0195312, 0.46801758, 1.6494141, 0.86816406, -1.1875, 0.42822266, -0.796875, -0.5083008, -0.1685791, 1.1787109, 1.7539062, 0.30371094, -0.027816772, 1.5869141, 2.7558594, -1.0722656, 0.7026367, 1.1865234, 0.98046875, -0.3852539, 4.9375, 2.0273438, -2.46875, 0.24682617, -1.9023438, 2.171875, 0.13244629, -0.65722656, -0.3112793, -0.7895508, -1.5556641, -2.5820312, -1.9960938, -2.984375, 1.4755859, 0.3330078, -2.0527344, -1.8837891, 0.5595703, -0.24060059, 4.125, -0.13110352, 1.5722656, -1.6044922, -0.35058594, -1.1328125, 0.20739746, 0.8823242, -2.9433594, 0.9980469, 1.8046875, -1.4375, -1.4394531, 0.8535156, 1.4746094, 3.875, -0.33544922, 2.4804688, 3.3574219, 1.9775391, 1.8291016, 1.0878906, 1.9609375, 0.80615234, -1.3378906, 0.09039307, 1.0664062, -0.12658691, 0.7480469, -0.64990234, 2.2714844, -1.1904297, -0.28930664, -1.1269531, -0.3149414, 1.5429688, -2.6113281, 1.2792969, 1.3564453, 3.2011719, -1.5693359, -1.0927734, -0.8623047, -0.5126953, 0.92578125, -1.1357422, 1.4140625, 0.47729492, -0.6298828, -1.484375, -0.14196777, 1.6416016, -4.34375, 1.4541016, 0.08135986, -1.5244141, -1.3525391, -0.036193848, 2.0332031, 0.8203125, 0.08001709, 0.7949219, 4, 0.27783203, 2.171875, -2.7832031, -1.0332031, -0.09442139, 3.2226562, 0.18554688, -1.3378906, -0.088378906, -2.1933594, -4.140625, -3.4492188, 3.5820312, 1.6376953, 0.8691406, 2.1796875, -0.42993164, 3.0820312, 0.8623047, 0.97314453, -1.59375, -1.5146484, -0.76464844, -2.7324219, -0.05569458, 0.26000977, -1.0429688, 0.28710938, 0.88183594, 0.40942383, 1.6386719, 1.8085938, 1.6630859, 0.20690918, 0.59472656, 1.9482422, -0.33984375, -0.8491211, 0.68066406, -0.20300293, -2.3496094, -1.7705078, 1.9228516, 1.6679688, 0.54589844, -0.57714844, -0.8598633, -1.0712891, -1.7509766, -0.13500977, 0.3251953, -1.4667969, -0.86035156, 0.28979492, 1.3671875, -2.9648438, -1.2802734, 2.5507812, 1.4541016, -0.53125, 2.1074219, 2.8964844, -1.3417969, -0.14196777, 1.3369141, 0.9707031, 0.39672852, -0.45410156, 0.41479492, 0.26220703, -1.1005859, 2.0722656, 1.7255859, 1.0996094, -0.1439209, -0.25512695, -0.41308594, -0.7294922, 0.101501465, 1.6601562, -0.051513672, -1.7675781, 2.265625, -0.28344727, -2.4082031, 2.0566406, -0.29467773, 1.0800781, -1.0869141, -2.8398438, -1.2822266, -0.58740234, -1.7294922, 0.9584961, 3.7832031, 0.9135742, 0.5449219, -2.7304688, -2.5429688, -1.5361328, -2.2597656, 1.6992188, -1.5390625, -1.4882812, -0.7729492, -0.059936523, 3.0273438, -0.1472168, -0.03488159, -0.62646484, -1.3759766, 1.1806641, -0.49975586, 1.8193359, -0.11352539, -0.43041992, 1.484375, 1.40625, 3.0878906, 1.6513672, 0.22729492, 2.1542969, -0.72802734, -2.8710938, -0.6123047, -0.029342651, 0.086120605, 0.1776123, -1.0371094, 1.2480469, 0.08496094, -1.4121094, -0.025009155, -2.8886719]}, "B088YRD1WT": {"id": "B088YRD1WT", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ\nDescription:
Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

Technical Details:
Premium Material: Solid iron support + Chrome plated BBQ wire mesh
Unfolded Product Dimensions :14.96''x10.62''x7.87''
Folded Product Dimensions : 13.77''x9.4''x2.36''
Product weight: 3.53 lb
Color: Black\nFeatures: \u25baThe barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.\n", "embedding": [-2.4453125, 2.6367188, 2.0429688, -0.4958496, -1.2441406, -1.5419922, 0.9355469, -1.5302734, -2.1914062, 1.9335938, 0.013183594, -2.3984375, -0.5019531, -3.0351562, 0.7138672, 0.6953125, 2.3945312, 1.0146484, 2.375, 1.1708984, -0.14855957, -0.9458008, 0.37719727, 0.74072266, 2.2890625, -0.96972656, 3.4023438, -2.4179688, 0.9038086, -3.7617188, 2.8476562, 1.0664062, 1.6679688, 1.9863281, -1.9863281, -0.91552734, -2.1796875, 2.0117188, -1.0908203, 1.1640625, 1.2529297, -2.3886719, 2.7578125, 0.5830078, -3.203125, 0.6904297, -0.77978516, 1.1591797, 0.21069336, -2.4023438, 3.0058594, 1.6572266, 1.8847656, 0.40527344, -2.3867188, 0.28564453, -1.5458984, -4.1289062, 1.6572266, -1.9619141, 1.8427734, 0.15771484, -0.6611328, 3.0644531, 0.20605469, -1.7207031, -0.6279297, -0.38452148, -0.2783203, -1.4160156, 1.9248047, -1.2470703, -2.0917969, 1.3808594, 1.0722656, -1.8867188, -1.8242188, 0.8432617, 0.703125, 1.2050781, -1.2949219, 2.7597656, 2.125, -1.4228516, -0.14282227, 0.99560547, -1.1708984, -0.42163086, 1.7744141, 2.2402344, -0.011184692, 2.546875, -1.2998047, -3.1914062, 2.1347656, -2.6933594, 1.7958984, -0.29296875, -2.2636719, 2.0175781, -0.50439453, 0.70458984, -0.7241211, -1.4306641, -2.3769531, -1.6308594, 1.46875, -1.0078125, -0.6923828, 2.2109375, -1.6816406, 1.9462891, 0.30932617, 1.4423828, 0.82421875, 0.27026367, -1.4160156, 2.9941406, 1.7490234, 1.1777344, 5.3867188, 0.46948242, 0.24291992, -4.4765625, -0.24963379, -1.0205078, -0.8359375, 2.0566406, 2.84375, -1.3183594, -0.19042969, -0.44604492, -0.25708008, 0.6118164, -2.5507812, -1.7509766, -1.6015625, -0.5986328, -3.2929688, 1.90625, -2.0527344, 0.33789062, 3.8730469, -1.2851562, -2.2460938, -0.4987793, 0.1538086, 2.03125, 0.39990234, -1.5058594, -0.7636719, -0.90234375, -0.5263672, -1.2597656, 1.625, -1.4335938, -0.9082031, -1.2207031, 1.8896484, 0.14941406, 2.234375, -3.2539062, -0.47460938, 2.1796875, 0.8256836, -0.5996094, 0.019622803, 2.9082031, -0.21923828, 1.9130859, 0.6411133, -1.8515625, 1.2529297, -0.7998047, 2.25, -1.7929688, -0.48168945, 3.4707031, 0.61572266, 0.2512207, 0.33081055, -2.3007812, 1.4384766, 1.4199219, 0.06756592, -1.0908203, -0.06488037, -0.21618652, 0.8198242, -1.4423828, 0.94921875, -0.9003906, -0.47583008, -1.2695312, -0.5239258, -0.19702148, -1.5439453, -1.03125, -0.6176758, 1.0537109, -0.62109375, -0.8125, -1.2587891, -0.1763916, -2.3671875, -2.2851562, -1.2294922, -0.46289062, 1.4873047, 0.4465332, 0.061828613, -0.98339844, 1.5703125, 0.6542969, 0.2487793, 0.32788086, 2.1308594, -1.125, 1.7373047, 2.0878906, -1.3076172, -1.1396484, -0.8881836, 4.6132812, -0.39770508, 2.1816406, -0.578125, 0.1239624, -0.036254883, -0.9316406, 2.390625, -0.00617218, 0.8720703, 1.1591797, -1.21875, 2.28125, 0.9038086, -1.2412109, -2.3027344, 0.7211914, 0.9057617, -3.0371094, 1.2285156, -1.1162109, 0.09631348, -1.8681641, -1.4609375, 3.7148438, 1.3652344, -0.26489258, 0.4111328, 1.3955078, -0.67578125, 1.1484375, 0.48046875, 1.5654297, -1.8007812, 0.7055664, -2.2929688, -1.9501953, 0.0023288727, 0.47753906, 0.46948242, 1.2294922, 1.0429688, -2.1621094, 2.1582031, 0.6347656, -2.8203125, -0.47485352, 2.4375, 1.1894531, 0.0345459, 0.28344727, 1.7353516, -1.9013672, -0.88134766, -1.0380859, 1.7070312, -0.10394287, -0.9316406, -1.0185547, 3.0644531, -1.2089844, -2.5449219, -2.8007812, -0.640625, -1.2119141, 1.8710938, 2.2050781, 3.71875, 1.4765625, -2.3300781, 2.7304688, -2.9550781, 0.3564453, 1.2324219, -0.9707031, -0.5600586, 1.9980469, 0.31762695, 1.0341797, 0.46948242, 1.1425781, -2.6367188, -0.48120117, 1.0957031, -1.9794922, 0.78222656, 2.1386719, -0.6484375, 0.7739258, -1.203125, -0.36279297, -1.8242188, -2.3574219, 1.2675781, -1.9853516, 1.5009766, 2.3671875, 1.0410156, 0.33129883, -1.0585938, -3.6425781, -1.2041016, -0.37573242, -0.41015625, 1.3408203, 0.7050781, -0.9013672, 1.0527344, -0.5419922, 2.2382812, -2.6113281, -1.7509766, -1.7626953, -0.765625, -1.6455078, -0.8198242, 0.18469238, 0.27783203, 0.33276367, -3.3710938, -1.3027344, -0.6635742, -3.5996094, 0.49121094, 1.7880859, -0.83447266, 0.82128906, -0.5996094, 0.28051758, -0.012962341, -5.6171875, 0.4724121, 0.5029297, 1.2871094, 0.3474121, -1.5605469, 1.5957031, -2.4335938, 1.4560547, -0.2541504, 1.4482422, 0.56591797, -1.9277344, -1.1650391, -2.0585938, 2.1191406, -0.1977539, 1.6279297, -0.3449707, 0.13769531, -2.3203125, -1.5761719, -1.375, -1.1298828, 3.765625, -1.0439453, 2.0292969, -0.90478516, -1.9580078, 0.79248047, 1.2646484, -2.046875, -2.8535156, -0.1182251, -0.5498047, -1.7695312, -3.296875, -1, -0.1538086, -1.7529297, 0.03479004, 2.125, -0.8125, 1.9150391, -1.6298828, -1.3632812, -1.1113281, 1.7373047, 0.2697754, 0.1015625, -1.2265625, -1.1142578, 0.7705078, -0.07519531, -0.43652344, 2.1132812, -1.5117188, 0.42578125, 1.2470703, 0.3010254, -0.43432617, -0.08770752, -1.7158203, 1.1953125, -0.057006836, -0.9213867, 1.671875, -0.4699707, -1.234375, -3.3945312, -0.25219727, 3.1328125, 0.34716797, 1.2226562, 0.106933594, 0.43847656, 0.7158203, -0.73876953, -0.50927734, 0.57910156, 0.9765625, 1.9042969, -3.296875, -0.57421875, 0.6230469, 1.9082031, -3.0429688, 1.1669922, 1.2724609, 1.5341797, 0.74853516, 0.2479248, 1.8945312, 0.26660156, -0.33789062, 1.4238281, 2.4765625, 1.1582031, 0.47607422, -0.96240234, 0.15905762, 0.22619629, 0.74902344, 1.1162109, 0.33081055, 3.15625, 3.1464844, 0.019729614, -3.4199219, 0.00920105, 0.9633789, 2.4785156, 0.5361328, 3.3613281, -1.6865234, -2.6640625, -0.4765625, -0.45532227, 1.7626953, -1.2070312, -0.21838379, 2.0488281, -0.15002441, 0.8881836, -1.0742188, -0.68310547, -0.7832031, -2.3203125, 0.50341797, -1.046875, -3.0136719, 0.28149414, -2.0527344, -2.7421875, 0.19421387, 1.9160156, 0.06213379, -2.1953125, 0.43969727, 2.9804688, 0.25219727, -1.2246094, -2.125, 1.6074219, -0.053771973, 1.6542969, -0.84472656, -2.7285156, 2.2714844, -1.6542969, 1.7080078, 0.47460938, 0.24169922, -2.2382812, 0.3786621, -1.8847656, 0.9111328, 0.21948242, 1.1884766, -0.8022461, -2.0058594, -0.4716797, -3.8222656, 0.7368164, 0.91796875, -1.9560547, -0.30297852, 0.44140625, 2.5585938, 0.6660156, -2.4824219, 2.4335938, -0.34057617, -2.5371094, 1.3544922, -1.9316406, -1.0576172, -3.0371094, -4.2070312, 0.20092773, 0.43237305, 1.0058594, 1.6699219, -0.35473633, -0.49047852, 2.4042969, 1.1572266, -0.5395508, -0.6020508, -3.2558594, -0.92626953, -2.2773438, 0.18713379, 2.484375, 1.0576172, -1.2714844, -1.9296875, -0.24267578, 1.1630859, 2.0566406, 1.2294922, -2.5449219, 0.43676758, -2.9238281, -0.20178223, -0.57373047, -0.2705078, 0.9057617, -1.4111328, 0.66796875, -0.84716797, 2.625, -1.3974609, 0.009094238, -0.11791992, 1.4267578, -0.30297852, -0.16699219, -1.0751953, 2.0253906, 3.6855469, -1.484375, -2.6757812, -0.37670898, -0.4555664, -1.0029297, -0.32055664, -0.92578125, -0.013130188, -2.4257812, 1.4238281, -0.6743164, 1.4384766, 2.7714844, 1.3867188, -2.4375, -0.73583984, -0.35424805, -2.4589844, -3.1445312, -0.03793335, -0.31518555, -0.43969727, 1.0791016, -1.0097656, 1.671875, -0.9199219, -0.62109375, 0.16894531, 3.1582031, 2.9453125, 2.5253906, 4.4726562, -1.6162109, -1.1591797, 2.015625, -2.2539062, -2.0722656, 2.9726562, 0.24230957, 1.1933594, 2.8300781, 0.6411133, -1.1523438, 0.22595215, 0.0029239655, -0.80371094, -0.79785156, -0.8696289, 2.4140625, -0.70654297, -1.9316406, 1.1972656, 0.11895752, 3.3222656, -1.2939453, 0.4584961, -1.9550781, -0.53271484, -0.9086914, -0.22717285, 0.58984375, 0.38232422, -0.1204834, -0.34423828, 0.22033691, 0.1619873, -0.31225586, -1.4970703, 3.25, -1.9296875, -1.5498047, 0.99902344, -0.41333008, -0.26245117, -1.6416016, 1.8828125, 2.234375, -0.50146484, 2.21875, 0.5732422, -1.8212891, 1.6386719, 1.8310547, -1.9179688, -1.4121094, -1.0654297, -1.5498047, 0.79003906, -0.57714844, -3.1816406, 0.23657227, 0.97558594, -1.9980469, 1.3476562, -0.7426758, -2.1328125, 1.9199219, -2.4472656, 1.0234375, -1.265625, -2.2773438, 0.4194336, 0.27978516, -0.20666504, -0.45239258, 1.5371094, 3.015625, -1.7675781, -1.1035156, 1.578125, -0.4116211, 0.6323242, 0.4230957, -2.3085938, -3.3964844, -0.8261719, 2.2050781, 2.7617188, 2.703125, -0.3317871, 1.5761719, -1.7392578, 1.2597656, -2.0585938, 2.5390625, -2.171875, 1.3378906, 4.0898438, -1.3173828, -0.88623047, -2.5390625, 2.1054688, 1.6787109, 1.6464844, 0.54541016, 0.4326172, -1.359375, -0.90283203, -2.8066406, -3.5488281, -1.0830078, -0.29711914, 0.12976074, -0.07110596, 1.1884766, -1.3984375, -1.3330078, 0.20898438, 1.5791016, -0.47827148, -1.5527344, 0.22387695, 0.053466797, -1.0458984, -0.03366089, -0.048950195, 3.2167969, 1.7460938, 2.7050781, -1.9599609, -2.9902344, 0.08874512, 1.1923828, -2.4726562, -0.47192383, 0.80615234, 0.5932617, 0.23937988, 1.2158203, 0.18518066, -0.43652344, 2.546875, -0.80078125, -0.31225586, 0.9121094, -0.40551758, 2.4746094, -1.7998047, -0.85595703, 0.39575195, -3.7226562, 0.8095703, 1.8808594, 0.37768555, 0.55078125, 1.4423828, -0.71875, 0.22509766, 0.20739746, 0.25024414, 0.30297852, 0.9926758, 0.42041016, 0.50146484, -3.71875, -3.4375, -0.87060547, -0.05090332, -0.8730469, -2.171875, 0.5595703, 0.9248047, 0.23510742, 1.2929688, 0.07513428, 1.0771484, -2.8164062, 1.7324219, 1.2470703, 1.6542969, 1.1796875, -2.8378906, 0.10583496, -1.7089844, -0.88378906, -0.112976074, -0.9667969, -1.1152344, 0.43896484, -1.3994141, 0.41137695, 0.7397461, -0.07543945, 1.6738281, 0.9916992, -0.60302734, 1.0761719, 1.1357422, -1.7021484, 0.453125, 0.53515625, 2.3066406, -0.36254883, 3.9824219, -1.5693359, -1.6445312, 2.1308594, -1.1689453, 2.2304688, -0.69433594, -1.6650391, 0.4338379, -2.8125, -1.6123047, -2.2324219, -1.5234375, -0.16906738, 1.2138672, 0.5161133, 0.49194336, -0.4033203, 3.6796875, -0.46020508, 0.47875977, 1.5888672, 0.9614258, -0.070373535, 0.8408203, -1.0869141, 1.1523438, 1.1679688, -0.6669922, 0.48901367, -0.32666016, 0.07543945, -0.57910156, 2.6660156, 1.7861328, 1.6484375, 0.85302734, 1.7675781, 1.2880859, 2.0703125, 4.9335938, -0.44189453, 1.0615234, 1.7939453, -1.4560547, 0.9868164, 3.0644531, 1.5048828, -1.2109375, -1.2011719, 1.6162109, 0.5073242, -0.1439209, -1.9394531, -0.35253906, 0.6816406, -1.8027344, 2.8242188, 0.032104492, 0.82910156, -1.4736328, -0.9658203, -0.65283203, -0.3540039, -1.3984375, -0.41064453, 1.0878906, -0.119140625, -0.765625, 0.24523926, 1.2470703, -0.12121582, -3.1855469, 1.9228516, 0.08880615, 1.203125, -0.9716797, 2.6289062, 3.3203125, 0.98095703, -0.17382812, 2.5878906, 2.2558594, 1.2353516, 3.0253906, 0.34643555, 1.6542969, 0.5136719, 1.8359375, -1.7412109, -1.9013672, -2.1796875, 0.6269531, -1.5732422, -0.20336914, 1.2646484, 0.027954102, 1.7675781, 1.2177734, -1.6308594, 2.2441406, 2.9824219, 0.9296875, -0.4807129, 0.77783203, -0.6933594, -3.3242188, -1.0957031, -0.24389648, -0.37963867, 2.4707031, 2.0761719, -0.072509766, 2.8359375, 2.0019531, 1.4199219, 1.2949219, 0.3149414, -1.6347656, 0.9111328, -0.19311523, 2.0742188, 0.2902832, 0.17565918, -0.36987305, 1.8144531, 0.38964844, 0.017349243, 2.2929688, -0.5126953, -0.5395508, 0.032287598, -0.85302734, 0.42651367, -1.2373047, -1.3398438, -0.4724121, -0.1439209, -0.74072266, -0.44726562, 1.1074219, 1.5302734, 1.0029297, 0.92626953, -1.1982422, -1.8076172, 2.1445312, 0.058410645, -0.16870117, -0.0859375, 0.61279297, 1.1025391, -0.3083496, -0.7285156, -0.47070312, -0.06958008, 1.2490234, 1.21875, 1.6308594, -0.44140625, -0.32617188, -0.7104492, 1.2978516, -1.2119141, -2.0273438, 0.81689453, 0.11352539, 0.004737854, 3.1015625, 0.06774902, -2.3671875, -0.38256836, -1.7861328, 0.5307617, -0.8051758, -3.3066406, -0.88378906, 3.9433594, 0.6381836, -0.7973633, -3.4003906, -3.4941406, 0.14550781, 0.06500244, 2.2753906, -0.5097656, -2.09375, 0.09899902, -1.2236328, 2.4804688, 0.7241211, -1.6914062, 0.45996094, 0.17016602, -0.06036377, -0.69433594, 1.3515625, 1.8779297, -0.5, -1.6240234, 1.8193359, 2.1894531, 2.5625, 1.8115234, 0.6855469, 1.7392578, -4.8984375, 0.047424316, 0.12756348, 2.34375, 0.05340576, 0.6088867, 1.1171875, -1.3007812, 0.24682617, -2.859375, -2.4355469]}, "B0009PUQAK": {"id": "B0009PUQAK", "original": "Brand: Coleman\nName: Coleman High-Pressure Propane Hose and Adapter\nDescription: \nFeatures: 5-foot hose and adapter attaches propane appliances to 20-pound propane tanks\nGreat for use with Coleman grills, stoves, lanterns, heaters, and more\nA cost-efficient solution to regularly replacing 1-pound canisters\nAllows propane devices to last up to 20x longer without refueling\nHand tighten counterclockwise\n", "embedding": [0.7675781, 0.35229492, -0.4880371, 1.5966797, -0.65625, 0.31982422, 1.2382812, -0.75927734, 0.60302734, 2.65625, 1.4365234, -0.21496582, 0.9707031, -2.9003906, -0.93066406, -1.1884766, 0.7480469, 0.5258789, 0.8442383, 0.8535156, 2.171875, 0.8671875, 0.0022602081, -1.1474609, -0.097595215, 0.23022461, 2.59375, -2.7753906, -0.64941406, 1.0136719, -0.41064453, -0.16027832, -1.2841797, 1.0498047, -2.1484375, -1.2197266, -1.8037109, 1.0234375, -4.0546875, -2.5644531, -2.2949219, 2.0214844, 2.3496094, 0.14550781, -1.4228516, 0.65771484, 2.7792969, -0.97558594, -0.20874023, -0.89404297, 1.0029297, 0.40039062, 0.14953613, 0.059173584, -0.13562012, -0.02709961, 0.609375, -1.625, 1.0361328, 0.56103516, 1.4570312, 0.16223145, -1.8925781, 0.57714844, -0.012672424, 1.4501953, -0.16235352, -0.9980469, 0.51660156, 1.7900391, 0.27148438, 0.2680664, -1.046875, -2.2109375, -2.5878906, 0.50146484, -4.0195312, -0.5185547, 1.4345703, -0.58984375, -2.4414062, 1.2822266, 0.6689453, -1.5722656, -0.74853516, -1.2050781, -2.8554688, 0.6821289, 1.8398438, 0.6713867, -2.6425781, 2.6621094, -2.4023438, -2.3007812, 0.79541016, -0.22363281, 0.70458984, 1.2470703, 2.2714844, -0.7182617, -1.8349609, -2.3144531, -1.4335938, 1.2548828, -2.6035156, 0.08483887, 0.68066406, 0.17407227, -1.6357422, 0.7446289, -0.41479492, -1.9619141, 3.515625, -0.42773438, -1.3076172, -2.0644531, 1.0927734, -1.8505859, 3.3769531, 0.5004883, 3.6503906, -0.29663086, 0.8925781, -0.06561279, 0.52246094, 2.2714844, 0.6821289, -0.49169922, 1.3164062, 0.8198242, 0.15393066, -1.2246094, 2.1894531, 0.27856445, 0.042022705, -2.0605469, 0.5283203, -1.5126953, -1.1601562, -1.5488281, -2.7792969, -0.37182617, 1.7675781, 1.5390625, -5.1328125, -0.5126953, -0.56591797, 0.70703125, -0.57373047, -1.8251953, 0.23339844, -2.4277344, -0.6303711, 0.81933594, 2.8261719, 2.5742188, 1.0761719, -1.4267578, 2.625, 1.8476562, -0.52490234, 0.20275879, -0.55615234, 2.5898438, 1.0546875, -1.4072266, 0.6191406, -0.5864258, -1.4580078, 1.4248047, -0.5498047, -3.9433594, 1.0244141, 0.91015625, -1.0449219, -0.5307617, 2.4941406, 2.9707031, -0.33935547, 1.0673828, -4.4257812, -2.9824219, -0.3918457, -3.0117188, 1.1523438, -2.1308594, -2.09375, -1.6220703, 0.012214661, -0.5800781, -0.11053467, -0.50683594, -0.24645996, 0.40625, -1.4296875, -1.9287109, -1.3154297, -0.04446411, 1.0800781, 2.2792969, -1.9658203, -0.82958984, 1.1142578, 0.7973633, -2.0195312, -0.5366211, 1.4345703, 0.09454346, -0.71240234, 2.8632812, 0.03225708, 0.8564453, 2.1289062, -0.9472656, -1.5283203, -2.7128906, 1.6972656, 0.35791016, 3.1914062, 0.38378906, 0.08062744, -0.26733398, 0.41552734, -0.4975586, -0.11608887, 1.8378906, -1.0087891, 0.7338867, -0.7363281, -0.48364258, 1.7675781, 3.4355469, -2.2148438, -0.7109375, 1.2294922, 3.0878906, 0.3942871, -1.1689453, 0.83496094, 1.4648438, 1.3720703, 0.2866211, -0.6269531, -1.8320312, -0.09649658, 1.1738281, -0.015327454, 0.08465576, 3.0078125, 0.074645996, 0.99853516, 0.42578125, -3.3457031, -0.8198242, -2.0039062, 1.0625, -0.27270508, 1.7226562, 0.06616211, -2.2480469, 0.8730469, -0.17260742, 0.5776367, 0.47338867, 0.5151367, 0.96191406, 2.1582031, -1.5576172, -2.0039062, 0.85302734, -0.5527344, 2.96875, 1.3251953, -0.084472656, 1.0126953, -0.1541748, -3.0742188, 1.0039062, -0.070373535, 0.88623047, 1.3359375, 0.15625, 2.2167969, -2.640625, 0.6923828, 1.7939453, 2.7226562, -1.1601562, -2.4648438, 2.2519531, 3.4316406, -0.7709961, -2.0625, 2.515625, 0.59765625, 2.0253906, 0.23657227, 1.9228516, -0.40625, -1.2636719, 1.0185547, -0.71728516, -2.4140625, 2.1757812, -0.104003906, 0.89697266, -0.8227539, 0.06756592, 1.8701172, -0.7241211, -1.1669922, -1.2480469, -2.7421875, 0.61621094, -1.6787109, 0.07537842, 2.53125, -2.0136719, -0.4987793, 1.25, -0.61035156, -0.48706055, 1.9453125, -0.375, 0.81396484, 1.6289062, -1.5878906, 1.2832031, 1.9414062, 1.2041016, 1.5048828, -1.8955078, 0.33862305, -0.8901367, -2.6503906, 0.625, 2.2539062, -3.0976562, 2.1035156, 0.40014648, -2.6621094, 0.5678711, 2.1582031, 6.0351562, -1.0068359, 0.9160156, -0.6303711, 2.3007812, 1.5634766, -1.7119141, -0.57421875, 1.8564453, -2.265625, -2.6230469, 0.85595703, 0.12597656, -0.2775879, 0.7475586, -0.8129883, 1.0830078, 3.3828125, 1.5078125, 0.47143555, 0.9824219, -1.4951172, -1.2939453, 2.0664062, -3.09375, 0.28588867, -0.78271484, 0.5161133, 0.39916992, 0.049865723, -1.0722656, -1.203125, 2.5839844, -0.46142578, 2.4121094, 0.5258789, 2.2050781, -0.5263672, -0.7026367, 2.2714844, -0.8051758, -3.6699219, 0.8388672, -0.20056152, 0.01763916, -0.70166016, -4.3203125, 0.80810547, -1.7822266, -0.49487305, 0.3701172, -0.6821289, -1.5722656, -0.70214844, 0.5449219, -0.89697266, 0.3083496, 1.1865234, 0.7050781, -1.7373047, 0.22888184, 0.8886719, -1.5771484, 0.4326172, -0.69921875, 0.19726562, -0.60302734, -1.9902344, 1.5771484, 0.8852539, 1.5292969, -1.2226562, -4.3320312, 1.5908203, 2.9101562, -0.8623047, 1.9902344, -0.6323242, -1.5898438, -4.6875, -1.0361328, 1.765625, 1.6542969, 2.7890625, -0.057373047, 1.8359375, 1.7402344, 2.2089844, -0.95410156, -0.44213867, -1.0859375, 2.5683594, -1.4140625, -3.1640625, -0.8696289, 2.4199219, -3.2402344, -0.73291016, 0.20117188, -1.0107422, 2.1386719, 3.2207031, -0.16894531, -0.4255371, 0.8120117, 0.5732422, 3.0175781, -0.27368164, -0.0013399124, 1.0585938, -1.0078125, 1.3740234, 0.34521484, -0.3701172, 0.4255371, 0.38110352, 1.6103516, 1.5732422, -0.44677734, 0.6948242, -0.27954102, 0.47387695, 0.6279297, 1.5947266, 0.4099121, 0.5678711, 0.4987793, -0.24023438, 1.8134766, -1.7119141, -0.06365967, 1.6455078, 1.2314453, -1.1416016, 0.5463867, -1.1787109, 0.1862793, -0.40112305, -1.0488281, 1.2685547, 1.1142578, -0.94140625, -1.3359375, -0.77197266, -0.23937988, 2.9042969, -0.07446289, -0.55371094, -0.86572266, 0.5151367, -0.84521484, -1.7949219, -3.6464844, -2.5058594, -1.5996094, 2.6660156, 1.8701172, -1.9619141, 0.041809082, 0.47314453, 2.0507812, 1.9365234, -2.0878906, -2.0019531, -2.2050781, -0.8901367, 1.0654297, 0.09173584, 1.5820312, 1.1386719, -1.7324219, -0.82910156, -0.94921875, 1.7587891, -0.5727539, -0.35473633, -1.2597656, 0.16052246, -1.6679688, -0.24633789, -0.39624023, 2.0800781, -1.4072266, -1.0683594, -0.10571289, -1.2900391, -1.3398438, -0.58935547, -3.890625, 0.6074219, -1.1669922, 1.2802734, 1.0087891, -0.5800781, 0.6196289, 0.27246094, 0.62109375, -3.1992188, -2.2988281, -1.1376953, 1.1650391, -2.03125, 0.6411133, 3.1933594, -1.0966797, -2.8535156, -2.5273438, -0.26611328, -3.2128906, -0.3449707, 0.66552734, -1.5957031, 0.7050781, -0.68896484, 2.5644531, -1.0498047, 0.53564453, 1.4599609, -1.109375, 0.27734375, -3.8066406, -0.38476562, 0.5097656, 0.34814453, 0.67285156, 2.7695312, 2.4589844, -2.5488281, 1.4326172, -0.43408203, 1.1455078, -0.18383789, -1.21875, 1.4130859, -2.2949219, -0.64941406, -0.1430664, -0.82714844, -1.1347656, -1.1542969, 0.72021484, 3.1074219, 1.3378906, 2.40625, -0.35595703, -2.7324219, -0.06585693, 2.6796875, -2.515625, -1.2880859, -1.21875, -2.0664062, -2.5683594, -0.34472656, -0.8876953, -1.3330078, 1.3125, -0.59228516, -2.0253906, -0.8129883, -0.50390625, 1.1835938, 0.1652832, -0.29785156, -2.0546875, -0.56591797, 0.013923645, -0.72753906, -1.1416016, 0.30859375, -0.7446289, 3.8325787e-05, 1.5087891, -0.37939453, -0.8359375, -0.52441406, -1.3974609, 0.49145508, -1.1542969, 0.37280273, -0.36914062, 1.4580078, -0.7529297, -1.4765625, 3.2871094, -1.7167969, 0.46166992, 0.21142578, -0.23852539, -0.37817383, 2.0703125, 1.8134766, 1.4921875, 0.70654297, -1.2285156, 0.55566406, 2.4589844, 1.6494141, 2.0449219, 0.21557617, 0.17626953, -1.3154297, -0.25048828, 0.97998047, 0.018493652, 1.8857422, -0.15393066, -0.39575195, 2.8105469, 1.9238281, 1.7197266, -0.2043457, 0.8227539, 1.1035156, 0.6875, -0.40112305, 0.6064453, -0.39160156, 3.265625, -2.6855469, -1.5527344, 0.7050781, 3.0117188, -0.35595703, 2.2226562, 1.1376953, -0.014472961, -2.3671875, -2.2832031, -1.1240234, -0.33032227, 0.26342773, 0.47851562, -3.2597656, 0.95654297, 0.8251953, 2.3300781, 2.2011719, 1.5009766, -1.6542969, -0.9277344, -2.8046875, -1.0693359, -2.171875, -2.78125, -3.4003906, -0.5263672, -0.45629883, 1.4199219, -1.1533203, 0.4099121, -0.24084473, -0.93310547, -0.6738281, 0.92089844, 0.46557617, -1.1806641, -0.9394531, 1.4101562, 0.97753906, -1.0244141, -2.4648438, -0.46020508, -1.0087891, 0.5620117, 1.359375, 1.8154297, -0.85253906, -0.6386719, -1.9169922, -4.3398438, 0.7988281, -0.0018386841, 0.7988281, -0.36376953, -1.5302734, -1.3525391, -0.578125, -0.71875, -2.6621094, -1.4716797, 0.41235352, -1.2470703, 0.33129883, 0.41625977, 0.96240234, -1.1699219, 0.69140625, -1.1308594, 1.265625, -0.28588867, -1.8525391, -4.0351562, 0.80859375, -1.7695312, -0.92089844, 1.7939453, -1.7128906, 0.15393066, 1.4042969, 1.0283203, -1.3789062, 1.8212891, -0.81396484, 0.05593872, 0.8515625, -0.7480469, 0.3544922, 1.6689453, -0.41455078, 0.73828125, 1.9365234, 2.6835938, -0.79785156, 0.72314453, 0.11627197, -0.21655273, 1.3222656, 0.022140503, 0.98095703, -1.5097656, 2.7910156, 1.9433594, 0.60253906, -1.4658203, -2.1894531, -0.46044922, 0.20129395, -2.0253906, -0.41210938, 0.5517578, 2.140625, 1.3652344, 1.9199219, 1.1855469, -0.26635742, 2.4121094, 0.001627922, -0.58740234, -2.125, 2.0742188, -0.23596191, -1.3320312, -3.4648438, 0.21740723, 2.5703125, 1.1582031, 0.8076172, 1.0947266, -0.5151367, -1.0732422, 0.5214844, -1.0058594, 1.7744141, 2.0019531, 2.03125, -2.6035156, 0.8383789, 2.734375, -0.72998047, -1.3310547, 0.79345703, -1.6679688, -1.2939453, 0.67285156, 1.6640625, -2.3613281, 0.14587402, -1.2626953, -0.025115967, -0.54003906, -0.93896484, 1.5517578, -2.0644531, 0.36743164, 0.421875, -2.3242188, -2.7519531, 2.8183594, -0.35498047, -1.9912109, 1.8525391, 1.5585938, -1.6005859, -2.0449219, 1.1591797, 1.0556641, -0.8798828, -0.6777344, -2.1601562, -0.084228516, 2.7792969, -2.0429688, 2.6601562, 0.8564453, 0.52441406, 0.63916016, 0.41259766, 1.5654297, 2.2089844, 1.6123047, 3.6699219, 3.2226562, 1.2480469, 2.0527344, 1.4960938, 1.3574219, 0.20373535, -1.6123047, -0.8769531, 2.1738281, -1.3183594, 0.4399414, -0.8935547, -1.0224609, 0.5703125, 0.42773438, -0.51660156, 2.3867188, 2.3710938, -2.2695312, -1.8466797, -0.6772461, 0.3413086, -1.984375, 2.3066406, 0.14892578, 0.5761719, 0.24060059, 0.010566711, -0.20129395, 2.171875, -0.24255371, 1.046875, -1.4072266, 2.8554688, 0.45336914, -0.51953125, -3.625, -0.5058594, 1.0400391, 0.9790039, -1.0126953, -0.73876953, 0.92822266, 0.6904297, -0.03765869, 0.6508789, 0.3544922, -1.4902344, -0.023345947, -0.119018555, 1.2216797, 3.5371094, -1.2939453, 1.7353516, 1.2539062, -1.5234375, -3.6640625, 0.98535156, -0.28027344, -0.27270508, -1.4287109, -2.4003906, 1.4628906, -2.3964844, 1.6552734, -1.6425781, 0.76171875, 0.3894043, -0.46850586, -2.0429688, -1.1767578, -0.62890625, 2.5488281, 1.6484375, -1.2783203, 0.4506836, 1.4667969, 1.3896484, -0.35107422, 0.019973755, 0.2619629, 0.5029297, -1.6220703, 3.4492188, 0.3034668, 1.6044922, 0.8046875, 4.640625, 2.2128906, 0.6591797, -0.49267578, -0.76464844, 2.3925781, 2.2128906, 0.7011719, -0.6772461, -1.5654297, -0.9711914, 3.1816406, 1.3154297, 0.037872314, -0.70947266, 0.09185791, 0.27954102, -1.9755859, 2.1855469, 0.75390625, -1.7558594, 0.5214844, -0.87890625, -1.4853516, -1.0595703, 0.26635742, 1.5488281, -2.3535156, 1.8417969, 0.7861328, 0.6557617, -2.1582031, -1.0205078, 0.43408203, -0.86816406, -2.7089844, -3.4296875, -0.7363281, -0.8022461, -0.3149414, -2.1269531, 0.60595703, 1.7724609, 0.98779297, 0.035003662, -0.3095703, 0.4807129, -2.0683594, 0.08569336, -1.9091797, -0.4230957, 2.6152344, 2.1601562, -1.1796875, 1.671875, -2.0410156, -0.11999512, -1.5, -1.5283203, 2.203125, 1.0068359, -1.9628906, 1.5751953, 1.2529297, 1.6386719, -0.30444336, -1.6152344, -0.5751953, 1.328125, 1.9287109, -1.6376953, 0.31713867, 0.36547852, -1.3544922, 0.91308594, 3.7089844, 1.7441406, -0.9736328, 0.016525269, 0.31884766, -0.5283203, -1.5439453, 0.07745361, 0.41503906, -0.98291016, -1.2128906, 3.6660156, 2.6933594, 0.7241211, -0.97802734, -2.6171875, 1.2021484]}, "B08FQY2LBK": {"id": "B08FQY2LBK", "original": "Brand: GasSaf\nName: GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8\" Male Connector Suitable for Turkey Fryer\uff0cFish Fryer\uff0cPropane Burner\uff0cFire Pit and More- CSA Certified\nDescription: GasSaf Adjustable Propane Regulator Hose
Product features
The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
Specifications: Hose length: 4 feet / 48 inches
Regulator type: high pressure
Gas type: LP / LPG
Inlet pressure: 25-250 PSI
Outlet pressure: 0-10PSIG
Capacity: 122000 BTU/Hr
Tail connection: 1/8-inches male connector
Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
\nFeatures: \u3010Product Parameters\u3011\uff1aAdjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector\n\u3010Flame Control\u3011: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI)\n\u3010More Reliable\u3011: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment\n\u3010Scope of Application\u3011: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice\n\u3010Easy to install\u3011: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working\n", "embedding": [0.6225586, 3.125, 2.3984375, 0.30151367, -0.6196289, 0.38134766, 1.1933594, -0.38989258, 0.12646484, 0.32763672, 1.3417969, 0.83251953, 2.5214844, -0.9868164, 2.3789062, 0.24230957, 0.34814453, 0.23791504, 1.1787109, 3.2734375, 1.8837891, -0.40234375, 2.3183594, -1.3242188, 1.0351562, -1.0703125, 2.6269531, -2.0722656, -0.3544922, -1.3886719, 0.95947266, 1.4365234, 0.2722168, 0.19970703, -1.6933594, -0.92529297, 0.4814453, 0.30078125, -2.7011719, -1.1875, 0.6977539, 0.30273438, 1.5898438, -0.8774414, -2.25, 1.2001953, 0.99316406, 0.55078125, -0.76171875, 0.88964844, 0.6533203, -1.3642578, 0.034179688, 0.71875, -0.38232422, 0.111572266, 0.70166016, -2.6484375, 1.6318359, 1.8164062, 2.2597656, 2.3867188, -1.4931641, 0.19348145, -1.1279297, -0.27441406, 0.93066406, -0.52197266, 0.96533203, 0.60839844, 0.6894531, 0.20275879, 0.41967773, -0.40234375, -1.0849609, 1.0429688, -3.3554688, 1.1386719, 3.7382812, 0.18786621, -2.2578125, 0.82910156, 0.35498047, -2.796875, 0.2692871, -0.390625, -1.0253906, -0.5102539, 2.2832031, 2.0019531, -2.5390625, 2.5566406, -3.65625, -3.8515625, 2.5996094, 1.9775391, 0.4362793, 1.046875, 2.6835938, 0.68066406, -2.3339844, -1.8632812, -0.7504883, 1.9560547, -1.3769531, -0.8666992, -1.1855469, 1.8642578, -3.0117188, 1.1533203, 0.32666016, 0.29003906, 1.703125, -1.9511719, 1.0146484, -2.78125, -0.32421875, -2.2519531, 3.2714844, 0.16113281, 2.4824219, 0.08618164, -0.80029297, 1.9130859, 1.3769531, 1.0917969, -0.80566406, 0.34179688, 3.4824219, -1.4746094, 0.9394531, -2.9941406, 1.1972656, -0.9355469, 0.57666016, -3.15625, -0.82666016, -3.578125, -2.4804688, -1.2548828, -3.7480469, 0.43530273, 0.86279297, -0.9633789, -2.3945312, 1.2949219, -2.6054688, 1.6962891, 2.0292969, -2.1328125, 3.078125, -1.4042969, 0.004535675, -1.4804688, 3.0449219, 0.9345703, 0.33740234, -1.1796875, 2.1347656, 2.2402344, 1.1347656, -1.0371094, -1.6904297, 1.2871094, -0.04852295, -2.5625, 0.45239258, 0.2927246, -1.1914062, 0.10559082, 0.07635498, -2.8242188, 0.3581543, 0.35986328, -1.3037109, -1.1982422, 1.2753906, 2.0292969, 0.4814453, 0.9511719, -3.3964844, -3.7851562, 0.26782227, -0.6538086, 1.6777344, 0.36669922, -1.4375, -1.8261719, 0.50439453, -1.2119141, -2.5429688, -0.2956543, 0.32421875, 1.1796875, 0.40625, -3.5253906, -3.0332031, 0.5239258, -1.0634766, 0.67822266, -2.7792969, -0.9916992, 0.5175781, 0.43725586, -2.4648438, -1.4492188, 0.03640747, 0.059326172, 0.95166016, 2.6484375, -0.5883789, -2.1113281, 0.76660156, 0.043518066, -0.49536133, -2.4550781, 1.4023438, 2.0507812, 1.4306641, 0.3779297, -0.7426758, -0.23217773, 1.1308594, 0.8564453, 1.5058594, 2.0527344, -1.2314453, 1.0087891, -1.3955078, -1.5800781, 3.0058594, 0.84716797, -0.17810059, -0.60058594, -0.7368164, 2.5722656, -0.5961914, 0.19372559, 0.70410156, 1.6894531, 0.6850586, -0.8354492, -2.4433594, -0.28442383, -1.4013672, 0.65527344, -0.2763672, 0.3815918, 1.5605469, -0.8876953, 1.6367188, 0.43847656, -1.265625, -1.3740234, -1.0830078, 1.0429688, 1.2353516, 2.5585938, 0.20141602, -1.1005859, 1.7880859, 1.9238281, -0.7832031, 3.3203125, 0.62109375, 1.0976562, 1.3408203, -1.875, -0.11413574, -0.0340271, 0.12963867, 2.1464844, 3.1757812, 0.0050735474, 0.44677734, 0.69970703, -2.875, 1.5419922, 0.90625, 1.5332031, 0.36743164, -1.2832031, 2.4648438, -2.9257812, 2.9941406, 1.7041016, 2.9140625, 0.24853516, -1.9160156, 0.4489746, 4.5859375, -0.8701172, -2.7089844, 1.7412109, 2.7714844, 0.65478516, 1.4638672, 1.1230469, 0.79541016, -1.1601562, -0.45043945, 1.4042969, -0.6640625, 0.7753906, 1.6650391, 0.2553711, -1.0771484, -0.32666016, -0.6855469, 1.5322266, -0.47998047, 0.41210938, -0.9609375, 3.1289062, -2.9882812, -1.7880859, 1.5751953, -1.5146484, -1.1513672, 1.7207031, 0.68847656, 1.3369141, 0.57666016, -2.0195312, 0.38500977, 1.0654297, -1.5761719, 1.4658203, 1.2128906, -1.2480469, -1.5800781, -1.2392578, -1.09375, -2.0898438, -2.3789062, 2.046875, -2.9453125, -1.3378906, 1.8369141, -1.890625, -1.8261719, -0.30517578, 0.95458984, 2.3554688, 0.8666992, -1.0664062, -2.2382812, -0.00095939636, 0.5957031, 0.5366211, 0.05355835, 2.2890625, -0.4675293, -2.5019531, -0.69384766, 0.39379883, -0.6513672, 1.0126953, -2.4941406, -0.29760742, 1.0253906, -0.52441406, 0.9550781, 0.88671875, 1.2373047, -2.5351562, 0.082092285, -3.8984375, 0.7006836, -0.33618164, 1.4912109, -0.97998047, 0.85253906, -1.8544922, -1.8720703, -0.2109375, -1.0458984, 0.6972656, -1.8291016, 2.9746094, -1.7412109, 0.57421875, 0.60058594, -0.7167969, -2.8925781, 1.2421875, -0.30273438, -0.8540039, 0.056549072, -2.6347656, 0.71484375, -1.0332031, 0.22058105, 0.49267578, -0.99560547, -1.6357422, -0.23059082, 1.0322266, -2.3613281, 0.5708008, 0.22180176, 0.5986328, -0.20581055, 0.43676758, -0.39941406, -2.1035156, -0.9223633, 0.51464844, 2.0996094, -0.1439209, 0.28100586, 1.125, 0.8808594, 0.29345703, -1.1660156, -2.5507812, 1.2255859, 2.2480469, -3.3320312, 1.5429688, -2.0507812, -0.42285156, -0.63964844, -2.5898438, 1.7919922, 1.5136719, 2.5585938, 1.1806641, -0.44311523, 0.010719299, 2.6054688, -0.93847656, -2.6191406, 1.2207031, 3.5117188, -1.2529297, -0.53466797, 0.34887695, 2.4277344, -2.6835938, -0.1361084, 0.93896484, -0.16723633, 1.6689453, 0.51416016, 1.3613281, -0.6738281, -0.25732422, 1.1621094, 0.34106445, 0.059753418, 0.60253906, -0.051574707, -0.8173828, -0.7939453, 1.4189453, 1.8300781, 0.34765625, 2.8769531, 1.1210938, 0.46411133, -0.5957031, -0.19372559, 0.33251953, -0.82666016, -0.16760254, 1.609375, -0.035736084, 0.59716797, 0.080566406, -0.8125, 0.30639648, -1.3291016, 0.82910156, 0.84716797, -0.13439941, -0.066711426, -1.8623047, -0.21728516, -0.7817383, -1.7646484, 0.26416016, 0.8417969, 0.75927734, 1.8964844, -1.0097656, 2.2421875, -1.59375, 1.1982422, -0.06970215, 0.6879883, -0.2006836, 0.42700195, -4.2148438, -0.22314453, -1.6416016, -2.7949219, -1.6767578, 1.8945312, 2.3066406, -1.2744141, 1.5302734, -0.56347656, 1.2578125, 0.8857422, -1.7001953, 0.024719238, -0.5029297, 0.8208008, -0.4086914, -1.109375, 0.6821289, 0.91552734, -3.9765625, 0.80078125, -1.2148438, 1.8076172, 0.09112549, 0.90185547, -2.0117188, -0.26367188, 0.47924805, 2.2519531, -0.32421875, 2.8222656, -0.9477539, -0.56591797, 0.63427734, -4.1875, -1.9707031, -1.4833984, -5.0234375, -0.20739746, -1.8349609, 0.41992188, 3.3691406, -0.49853516, 1.2216797, 1.7011719, 2.0859375, -2.5351562, -0.8925781, 0.6064453, 2.109375, -2.2695312, -0.64501953, 3.4257812, 0.7348633, 0.20471191, -1.3105469, -0.21008301, -2.4960938, -1.0507812, 2.1425781, -1.4248047, -1.7197266, -0.7988281, 0.66015625, 0.22009277, -2.625, 0.8666992, -1.3300781, -1.4521484, -3.2597656, 1.6572266, 1.0693359, 0.75439453, -1.5185547, 5.0039062, 2.625, 0.3774414, -1.1318359, 0.6225586, 1.7724609, 0.9145508, -2.1308594, 0.29077148, 0.8457031, 0.30639648, -0.19799805, -0.00844574, -0.14697266, -1.9628906, 1.4091797, 1.9033203, 0.17260742, 1.5361328, 0.69628906, -0.7426758, 0.18395996, -0.8227539, -0.7192383, 0.55078125, 0.21691895, -0.6035156, -2.3261719, -0.1640625, -1.6708984, -2.015625, -0.51220703, 0.44702148, -0.55126953, 2.8730469, 0.09918213, -1.0332031, 0.69091797, -0.061553955, -1.3339844, -1.5410156, 1.1503906, -1.4257812, -0.49316406, -1.0888672, 0.0040512085, 1.6777344, 0.9970703, -0.41918945, -1.0410156, 0.671875, -2.046875, 2.1171875, -0.08483887, 1.9980469, -0.7832031, -0.84521484, 0.8486328, -0.8496094, 2.9394531, 1.1494141, -1.2050781, 1.1376953, -1.9433594, -0.98046875, 0.9892578, 3.1933594, 0.37695312, 0.55615234, 1.0322266, 0.4970703, 2.9082031, 0.5288086, 1.2958984, 0.70654297, -0.34423828, 2.5800781, -1.1259766, 1.7919922, -2.3183594, 0.13061523, -0.09069824, 2.0820312, 2.6289062, 3.0957031, 0.39892578, -1.5761719, 1.4189453, 0.10443115, -1.3583984, -2.0351562, -0.6816406, -1.7041016, 1.6572266, -0.7216797, -2.0566406, -0.5385742, 2.8046875, -0.14904785, 1.7919922, -0.71875, -0.8251953, -0.50878906, -1.8017578, -0.80810547, -0.5361328, -0.44458008, 0.70410156, -2.6601562, 1.3164062, 0.14172363, 1.1777344, 1.21875, -0.1628418, -0.6245117, -0.19604492, -2.4082031, 1.6113281, -0.4897461, -0.35839844, -2.515625, 1.6503906, 2.1328125, 0.953125, 0.3088379, 0.21911621, 0.014541626, -0.6279297, -0.29248047, 0.4729004, 1.5166016, 0.09887695, -0.35302734, 1.2080078, -0.35791016, -0.53027344, -2.0039062, -1.4697266, -1.7949219, 3.3183594, 2.859375, 1.0693359, -0.9863281, -0.953125, -2.0351562, -4.6484375, -0.56884766, 2.2617188, 0.20031738, 0.41479492, -3.2578125, -0.9477539, 1.9023438, -1.2900391, 0.69921875, -3.3984375, 0.26220703, -0.15234375, -1.09375, -1.8613281, 0.7548828, -1.0195312, 0.13903809, -2.2480469, -0.85302734, -0.3161621, -2.7578125, -3.9277344, 1.9833984, -2.6308594, -0.5620117, 2.1757812, -1.4199219, -1.2177734, 1.6904297, 1.9814453, -3.0058594, 1.5546875, -3.1347656, 0.8417969, 1.0107422, -1.4589844, 1.2285156, 1.6533203, -1.0097656, 2.0761719, 0.5366211, 1.9677734, -1.4248047, -1.6494141, 1.8740234, 1.1337891, -0.93603516, -2.9824219, 0.083862305, -0.12854004, 1.3037109, 1.9570312, -1.0673828, -1.3691406, -0.8173828, -3.6933594, 0.8310547, -0.13366699, -0.29760742, -0.6982422, 1.1972656, 1.8466797, -0.9277344, 1.6484375, 0.09472656, 0.34423828, -0.14465332, 2.5585938, -0.7705078, 1.8925781, 1.9775391, -1.7373047, -2.5390625, -2.7128906, 2.9355469, 3.3378906, -2.03125, 0.07141113, -0.12524414, -0.39331055, 0.76464844, -0.13952637, 0.7910156, 2.5390625, 0.89746094, -0.81103516, -1.0107422, 1.2412109, -1.6240234, 1.4804688, 0.9423828, -1.7177734, -1.6171875, 2.3867188, 1.0390625, -2.375, 1.0996094, -1.7207031, 1.3613281, -0.6323242, -2.6757812, 0.49243164, -3.8320312, 0.31884766, 0.09680176, -1.2900391, -2.6132812, 0.8388672, -0.35131836, -0.44360352, 1.0332031, 2.2167969, -0.23474121, -0.9658203, 1.0009766, 1.078125, -0.7294922, -0.06542969, -2.9746094, -1.1347656, 2.2695312, -2.4414062, -0.5317383, 2.1679688, 1.6865234, -2.0117188, 1.6005859, 0.8833008, 2.515625, -0.052246094, 1.2314453, 3.8984375, 0.073791504, 2.1386719, 0.55371094, 2.7304688, 3.1640625, 0.15344238, 0.6948242, 2.0292969, -1.8330078, 1.3710938, 0.12695312, -0.29785156, 0.030471802, -1.0576172, -0.014404297, 2.4160156, 2.5214844, -2.8300781, -0.044311523, -0.53466797, -2.3847656, -2.9765625, 1.2402344, -1.625, 0.07183838, 1.6523438, -0.27929688, 1.3496094, 1.21875, -0.66503906, -2.2167969, -0.3557129, 3.1269531, -1.4736328, 1.4287109, -0.124938965, -2.6347656, 1.4160156, 3.3300781, -0.38012695, -0.48266602, 0.7426758, -0.4724121, -0.6347656, 2.171875, 1.2578125, -3.7011719, 0.70410156, -0.85839844, 2.3671875, 1.828125, -1.1220703, 2.7851562, 0.47045898, -0.94091797, -3.21875, 3.0097656, -0.21057129, -0.90771484, -0.7011719, -4.3398438, 1.4746094, -3.375, 1.046875, -2.4375, -0.4958496, -0.25561523, -0.62109375, 1.2529297, -0.05859375, -2.1308594, 3.3515625, 0.3762207, -1.0712891, -0.27124023, 1.2607422, 0.8486328, -0.025756836, 0.27416992, 0.7675781, 0.9013672, -0.68066406, 2.9667969, -0.012756348, -1.1367188, 0.22570801, 2.9414062, 0.06555176, 1.2392578, -0.9086914, 0.29052734, 0.59228516, 1.3027344, 0.048797607, -0.29956055, -1.3369141, -1.7197266, -1.3955078, -0.065979004, -1.0341797, -0.55371094, 1.6484375, -0.12200928, -1.625, 1.0703125, 1.6865234, -1.0488281, 2.2089844, 1.7119141, -1.3017578, -2.8242188, -2.578125, -0.48657227, -2.8535156, -0.7192383, 0.024810791, -0.54785156, -1.015625, -1.7001953, -0.22363281, -0.92333984, 0.05783081, 0.0003798008, 0.08416748, -1.2382812, -1.2783203, -0.19628906, -0.98828125, 0.140625, 1.8203125, -0.8198242, 3.1894531, -0.1586914, -2.1464844, 0.91845703, -1.9033203, -1.4833984, 1.1298828, 1.9375, 1.2949219, 0.5961914, -1.6074219, -2.1132812, -0.6972656, -1.6191406, 1.9873047, -0.8310547, -1.4863281, 1.0546875, 1.5283203, 2.5078125, -0.111816406, 0.38256836, 1.1572266, -0.41430664, 1.7001953, -2.1484375, 1.2587891, -0.20117188, 0.2763672, -0.058380127, 3.2929688, 2.78125, -0.9003906, -0.10333252, 2.1171875, -1.0703125, -2.0683594, -0.035980225, 0.27490234, 0.2644043, 0.8823242, 0.65478516, 2.4921875, 1.0087891, -2.125, 0.4025879, -0.3605957]}, "B00NCSUZHK": {"id": "B00NCSUZHK", "original": "Brand: Magma\nName: Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "embedding": [-0.09851074, -1.0195312, 2.0742188, 2.4726562, 1.3837891, 1.9882812, -0.7993164, -1.6591797, -0.25146484, 1.34375, -0.41333008, 1.4189453, -0.2163086, -1.3251953, 1.4570312, 1.7529297, 1.0664062, 1.0683594, 0.8173828, -1.9863281, 1.3154297, 0.2619629, 0.71191406, -0.55371094, 2.8574219, 1.2314453, 3.8007812, -2.4628906, 0.37402344, -1.6298828, 0.97753906, 2.0917969, -0.31982422, 1.0800781, -2.03125, -0.5864258, -1.1474609, 1.2695312, -0.9633789, 0.38232422, -0.87597656, -0.49951172, 2.0839844, -0.1472168, -4.0664062, -0.83984375, 0.8125, 1.6044922, -2.5195312, -2.921875, 1.9619141, 0.06933594, -1.0419922, 0.6464844, -1.3691406, 2.2910156, 1.390625, -0.8847656, 0.91845703, 0.9399414, 1.0878906, -1.2236328, -1.1425781, -1.1386719, -1.6279297, 0.064697266, 0.85498047, -0.015335083, 0.4663086, -1.2246094, 2.0410156, 0.95996094, -1.8486328, 0.60595703, -0.5385742, -0.3256836, -3.9296875, 2.0605469, 0.5517578, -0.5649414, -2.4453125, 3.2929688, 0.32714844, -1.3378906, 0.26123047, 0.25439453, -1.7431641, -0.17382812, 1.3564453, 0.42797852, -0.7446289, 0.11206055, -1.1396484, -4.71875, 1.8164062, -1.0849609, -0.08483887, 1.6435547, -1.0556641, 1.4677734, -0.828125, -0.6152344, -1.2148438, -0.09649658, -2.7128906, -0.8881836, 1.3222656, 0.2644043, -2.9023438, -2.3105469, -1.8847656, -1.1835938, -1.0175781, 0.59033203, 2.7558594, 0.104003906, 1.3779297, 0.3642578, -0.025421143, 2, 1.8320312, 1.2236328, 0.7416992, -0.119506836, -0.5957031, -0.74853516, 0.3774414, 2.5390625, 4.21875, -2.0117188, 0.48168945, 0.13183594, 3.3710938, -0.44506836, -1.2744141, -3.5136719, -1.0410156, -2.7636719, -2.2441406, -0.11657715, -2.8710938, 1.4833984, 1.1064453, -0.93896484, -3.3867188, -0.058746338, -0.73535156, 1.0419922, -0.8461914, -0.6113281, 0.3713379, -1.8300781, 0.050476074, -0.89746094, 2.203125, -0.8198242, -0.42285156, -2.1425781, 2.9023438, 0.69873047, 1.2460938, -0.5341797, -0.77978516, -0.21130371, -0.59228516, -0.6821289, -1.3125, 1.2880859, 1.0166016, 1.7246094, 0.3864746, -0.75146484, 1.3300781, 0.37573242, -0.09136963, -0.78564453, -0.44921875, 0.88427734, 0.67822266, -0.7578125, -2.3945312, -1.9384766, -0.65234375, 0.40234375, 2.3359375, -0.12976074, -1.3037109, 0.49414062, 0.5727539, -0.17956543, 2.2597656, 0.61083984, -1.5029297, 1.3779297, -0.07006836, -2.2460938, -3.5527344, -0.12384033, 3.1230469, 0.1439209, 0.1616211, 1.0654297, -0.5234375, 1.15625, -1.8652344, -3.9003906, -1.7871094, -1.2275391, 0.12561035, 1.5732422, 3.3828125, -2.8398438, 1.1757812, -1.2646484, 0.47998047, -2.6152344, 0.97314453, -0.6611328, 1.609375, 1.5078125, -1.1787109, 0.27685547, -0.19018555, 3.0722656, 0.13903809, 1.4648438, -0.67089844, 1.7617188, -3.2167969, -0.6816406, 2.2890625, 0.57373047, -1.1503906, -0.16271973, 0.9765625, 2.3964844, -0.105163574, -0.7504883, -0.50146484, -2.3515625, -2.1757812, -1.5966797, -1.9697266, -1.1728516, 0.051818848, 0.3955078, -2.0898438, 0.62060547, 2.0117188, 1.2041016, -0.4338379, 1.9765625, -0.05319214, 1.0927734, 0.5727539, 1.3720703, -0.5888672, 0.11053467, -1.1328125, -2.453125, 2.4824219, 1.8720703, -1.2138672, 0.8051758, 0.4326172, -0.8378906, 2.8125, 0.97265625, -0.56640625, -1.4521484, 0.9658203, 0.7675781, 3.2773438, -0.12792969, 2.0625, 2.7636719, 0.42041016, 2.3710938, 1.3603516, 1.0371094, 1.5595703, -0.016143799, 1.4648438, -3.140625, 1.0146484, -0.4580078, 0.9584961, -1.3828125, -1.3017578, 0.99902344, 3.2636719, 0.24255371, -3.3457031, 4.4648438, 0.1850586, 0.27929688, 1.7851562, -0.9506836, -1.2236328, -0.0022068024, 2.3613281, 1.0859375, -0.25512695, 1.8447266, -0.17358398, -1.6181641, 0.21032715, -1.7246094, -0.5410156, 1.5078125, 0.08728027, -0.4699707, -1.0029297, 0.35351562, -0.29589844, -1.1816406, 1.1679688, -1.8154297, 1.7304688, 0.66064453, 3.3300781, 0.3630371, -1.0800781, -0.3798828, -1.2421875, 0.059906006, -0.78564453, 0.99853516, 0.1616211, 0.71191406, 0.1977539, -0.12438965, 0.7553711, -1.5292969, -0.41137695, -0.7529297, -2.0625, -1.59375, 0.40625, -1.9179688, 0.2487793, 1.5283203, -1.4023438, 0.44750977, -0.6435547, -1.6220703, -2.6738281, 0.114990234, 1.5410156, 0.22961426, 1.15625, 0.02104187, 0.8051758, -6.1367188, -0.71484375, 0.26367188, -2.1777344, 1.1962891, -2.8378906, -0.0647583, 1.2509766, -0.38745117, -0.077941895, -0.5732422, 0.4741211, -0.5571289, -0.25317383, -2.9257812, 0.20495605, -3.6796875, -0.10876465, -2.7539062, 0.8989258, -3.1503906, -1.9804688, -0.38867188, -0.7026367, 5.3554688, -1.5380859, 0.79296875, 0.12310791, 1.5761719, 1.3007812, -2.203125, -2.5410156, -1.3134766, 0.7807617, -1.3759766, -3.1015625, -3.7441406, 0.34277344, 0.25390625, 0.24255371, 0.9375, 0.9926758, -1.3486328, 1.2041016, -1.1552734, -1.4746094, 1.2392578, -0.011383057, 0.35839844, -0.87939453, 1.1943359, -2.7421875, -0.09313965, -1.4003906, -0.40014648, 1.6435547, -0.9785156, 1.5185547, 0.3022461, 0.004119873, 0.6982422, -0.76123047, -3.078125, 1.3271484, 0.23608398, -2.5, 0.54785156, -0.5527344, -2.21875, -1.875, -0.65527344, 1.7636719, 1.3583984, 3.03125, 0.57373047, 0.95996094, 0.6166992, 1.4316406, 0.1005249, 0.6015625, -1.0898438, 4.3046875, -1.4052734, -1.6445312, 0.2331543, 2.1835938, -4.1601562, -1.9521484, 0.5683594, 0.07397461, 3.640625, -1.3730469, 1.7216797, -0.13745117, -0.056152344, 2.4980469, -1.2900391, -1.2402344, 0.8491211, -1.0556641, 0.62060547, 0.27441406, 0.8510742, 1.7382812, -1.3056641, 1.7314453, -0.6435547, 0.5600586, -1.1679688, 0.003665924, -0.8222656, -0.009216309, -1.4335938, 3.2011719, -0.19433594, 0.44677734, 0.8149414, 0.6508789, 1.1162109, -1.3388672, -0.52978516, 1.0087891, -0.03265381, 0.6308594, -0.9042969, 1.8867188, 1.3046875, 0.41430664, -0.03274536, -3.2929688, 0.19458008, 1.7480469, -1.3486328, -2.3496094, -3.2207031, 3.0292969, -0.6147461, -0.6567383, -0.7290039, 1.8935547, -1.5742188, -1.7919922, 1.0527344, 0.8388672, -0.3840332, 0.6977539, -0.88916016, -1.2871094, 1.2070312, -1.6103516, 0.22753906, 1.3652344, 1.2236328, 0.8095703, -1.1113281, 1.1162109, -0.2166748, 0.13110352, 1.0322266, -0.49047852, -2.0117188, -0.28076172, -2.0859375, -0.011634827, -0.4152832, 0.03643799, -1.2128906, 1.9316406, -0.12988281, 1.1210938, -0.9506836, 2.9941406, 1.5195312, -1.8398438, 2.2109375, -2.9765625, -2.2207031, -2.7011719, -4.5195312, 0.9472656, -1.2705078, -1.1103516, 3.4238281, 0.51953125, -1.15625, 2.1601562, -0.2578125, -2.6074219, -2.8632812, 0.38427734, -0.27416992, -0.29882812, -2.7324219, 2.3554688, 0.19628906, -4.3945312, -1.3603516, 0.57373047, 0.34765625, 1.3173828, 0.62841797, -2.1289062, -1.3349609, -1.0927734, 0.90478516, -0.65185547, -0.0014457703, 1.2519531, 0.83447266, 0.20129395, -1.4990234, -0.84716797, 0.4104004, -1.8251953, 1.2519531, 1.7597656, -0.7050781, -0.85595703, 0.18615723, 0.3334961, 2.0507812, 0.23754883, -1.0771484, -3.2363281, 0.2956543, 0.78222656, -0.30664062, 0.8442383, -7.814169e-05, -1.9912109, 0.8256836, 1.1787109, 2.2421875, 2.8925781, -0.43579102, -1.7783203, -0.19677734, 0.26611328, -2.3613281, 0.9790039, 0.7319336, -0.5605469, -0.007881165, 0.16320801, 0.7626953, 0.7729492, -1.6357422, -0.111328125, -2.7109375, -0.061767578, 1.046875, 0.5541992, 1.9746094, -0.51464844, -0.34375, 0.34375, -1.3427734, 0.6826172, 0.13061523, -0.15197754, -0.15515137, -0.9707031, 1.2382812, -1.1416016, 0.5917969, 2.546875, -0.7631836, -0.32739258, -1.3779297, -0.3400879, -2.3457031, -1.1318359, 0.9707031, 0.25219727, 2.7695312, -2.2890625, 0.9482422, -1.3837891, -0.088256836, 0.29589844, 1.9287109, 0.9560547, 1.25, 1.1552734, 0.95166016, 0.5253906, 0.79248047, 0.2052002, -0.3227539, 2.2324219, 0.16931152, 0.8833008, 1.0078125, -2.046875, 0.36010742, -1.2148438, 2.0742188, 3.0371094, -0.23413086, 2.203125, 0.004940033, -2.28125, 3.7871094, -0.3996582, -1.3603516, 1.3671875, 0.13183594, -0.7973633, 0.28051758, 0.25219727, -2.8554688, -1.0195312, 0.86328125, -2.6523438, 1.2871094, 1.4560547, -1.1767578, -0.8510742, -1.5986328, -0.25219727, -0.41577148, -0.8105469, -0.84228516, -1.4248047, 1.0595703, -1.0302734, 1.8046875, 2.6835938, -2.1933594, -0.82177734, 1.90625, -1.2021484, 1.2792969, -0.5498047, -0.00057935715, -0.765625, 0.3515625, 3.1425781, 0.60791016, 0.11468506, -0.41674805, 0.57128906, -2.1621094, 0.4428711, -0.640625, 0.81396484, -0.8876953, -0.9951172, 1.8916016, -2.7988281, -0.0029392242, -1.5498047, -0.033447266, -0.0069389343, 2.1289062, 2.7109375, 1.0986328, -0.94921875, 0.66845703, -2.1757812, -3.0742188, -2.015625, -1.0087891, 0.1104126, -0.11779785, 0.984375, -1.0390625, 0.38793945, 1.8251953, 0.35839844, 0.14575195, -1.0556641, -0.90185547, -0.76123047, -0.94433594, -0.7402344, -0.91503906, 0.30981445, 3.1601562, -0.11981201, 0.30541992, -2.9707031, -1.7304688, 0.9033203, -1.1386719, -1.4150391, 1.4804688, 2.3242188, -0.060058594, 1.4658203, 0.9824219, -2.2324219, 0.7338867, -2.1894531, 0.9941406, 1.8486328, -0.21435547, 1.7617188, 0.3010254, -1.6611328, 0.7919922, -2.5507812, 2.3417969, -0.8823242, -1.15625, -0.14624023, 0.73095703, -0.8515625, -2.4667969, 0.18725586, -0.63427734, 1.046875, 0.42871094, -0.7319336, -0.45336914, -1.390625, -4.4921875, 0.40844727, -1.5253906, 0.10638428, -0.39038086, 0.32177734, -0.45288086, 2.4941406, 2.2109375, 1.8798828, 0.5839844, -1.3144531, 0.15319824, 0.24914551, 2.7617188, 2.3515625, -1.6181641, -1.0673828, -1.5146484, 0.028457642, 0.56591797, -0.3713379, -1.3623047, -0.11627197, -1.4755859, -1.2216797, 0.7104492, -0.24975586, 2.0800781, -0.9301758, -2.4003906, 1.9980469, 1.7646484, -1.5878906, 2.8789062, 1.8447266, 3.59375, -2.5273438, 1.6357422, -1.2998047, -1.203125, 2.4042969, -0.59228516, 1.2412109, -0.6591797, -1.5761719, 1.1025391, -0.8149414, -1.1337891, -1.359375, 2.0195312, -0.9223633, 2.8867188, 1.4970703, -1.2568359, 0.54003906, 0.6303711, -0.03277588, 1.3496094, 1.4101562, 1.4462891, 0.89404297, -0.083618164, -1.9345703, -1.5263672, 1.4208984, -1.0849609, 1.0332031, 1.9697266, 0.3486328, 0.099487305, 1.5595703, 0.19433594, 1.6210938, 1.1308594, 3.453125, 1.1318359, 1.2314453, 0.4638672, 1.6972656, 1.3173828, 2.0683594, -1.7236328, 0.7583008, 1.0478516, 2.2519531, 1.7714844, -1.6357422, 1.8583984, -1.0048828, -1.1279297, 0.38623047, -0.15075684, -1.0839844, -3.2617188, -0.55078125, 0.87939453, 0.16442871, -2.8496094, -0.2290039, -2.2304688, -0.73046875, -1.375, 0.2578125, 2.7070312, 0.45629883, 0.23620605, 0.703125, -1.9130859, 2.0410156, -3.5996094, 1.3076172, 2.9589844, -1.1328125, 0.33032227, 0.3708496, 1.6289062, -0.5488281, 0.49536133, -0.24414062, 0.41967773, 2.3242188, 0.87158203, -0.046081543, 0.93896484, 0.17028809, 1.0029297, -0.4091797, -0.0132369995, 1.5263672, -2.375, -2.5019531, -3.0117188, 2.5683594, 1.5185547, 0.7675781, 1.2490234, -2.6328125, 1.1367188, -0.59375, 1.4970703, -2.65625, 1.4804688, 0.23022461, -1.2304688, -0.5449219, 0.73291016, 0.35717773, 1.9667969, 0.8774414, -1.7236328, 2.1914062, 1.3115234, 2.1660156, 0.011650085, 1.8798828, 0.39990234, 0.53515625, -0.68310547, 1.7480469, 0.29003906, -0.9160156, -3.6230469, 2.7109375, 1.5488281, -0.0084991455, 1.0537109, -0.46289062, -0.5385742, 0.28051758, 0.38305664, -1.6298828, -0.7294922, 1.0527344, -0.2055664, 0.27246094, -1.25, -0.38085938, 0.6748047, 2.9492188, -0.40673828, -0.99658203, 0.77783203, -1.1328125, 2.8945312, 0.8691406, -1.3925781, -0.45629883, -1.6572266, 1.0537109, 0.69970703, -2.4824219, 0.04989624, 2.6601562, 0.6713867, -0.8984375, 1.4150391, -0.032958984, 1.4785156, 1.5058594, 0.37109375, -0.5683594, -2.5058594, 1.3535156, 0.050079346, 0.75, 2.8027344, -1.2841797, 1.3818359, -2.1210938, 0.48754883, 0.4658203, 0.27612305, -1.1269531, 1.7695312, 3.3066406, 1.5595703, 0.6772461, -2.2109375, -3.8066406, -0.60791016, -1.4140625, 2.6425781, -1.0527344, 0.75634766, -0.17651367, -0.3635254, 3.453125, -0.09674072, -0.4880371, -0.83154297, -0.21520996, 1.4433594, -0.7421875, 1.2734375, -0.5185547, 1.0566406, 2.1308594, 1.0878906, 0.15478516, 1.9316406, 1.8945312, 2.3007812, -0.3527832, -1.6191406, 2.1582031, -1.5771484, 0.99072266, 1.4794922, -0.7138672, 1.3320312, 0.16418457, 0.037597656, -1.2939453, -1.6699219]}, "B0817KW1JV": {"id": "B0817KW1JV", "original": "Brand: All Power America\nName: All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red\nDescription: \nFeatures: 12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG)\n18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load\nFuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start\n2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit\nEPA Certified. Non C. A. R. B. Compliant, not available to ship to California\n", "embedding": [0.26245117, -0.70703125, 0.6435547, 1.0400391, -1.9208984, 0.39331055, 3.0253906, -0.9121094, -0.8496094, 0.90527344, 0.34423828, 0.29492188, -1.25, -1.7128906, -0.45898438, 0.14624023, 0.25146484, 2.1152344, -0.38183594, -0.39208984, 0.69970703, -0.6176758, 1.9794922, -0.73828125, 0.61865234, -1.0019531, 4.7460938, -1.9013672, -1.6962891, 0.36572266, 0.24072266, -1.3457031, -2.6328125, 1.7919922, -1.3564453, 1.2265625, 1.0742188, 1.4921875, -1.7919922, 1.3251953, -0.18383789, -0.7597656, 1.4736328, -0.63964844, -1.1738281, -1.6796875, 0.7661133, -0.6152344, 1.3691406, 1.0976562, 1.9648438, 0.3876953, 0.53027344, -0.5932617, 1.3212891, 0.37670898, -0.12414551, -1.3271484, 2.4726562, 2.8242188, 0.97558594, 0.8408203, -0.23718262, 1.1201172, -2.7773438, -0.6879883, 0.23132324, -0.7270508, -0.058441162, -1.7832031, 2.8203125, 1.1884766, -0.25756836, -0.31567383, -0.99560547, 2.2714844, -4.9921875, 1.8085938, 3.4121094, 1.1259766, -1.2099609, -0.29467773, 1.5439453, -1.3759766, 1.3798828, 0.26245117, -1.6503906, -0.64453125, -2.4628906, 1.5058594, -1.9453125, 2.1328125, -4.3359375, -4.296875, 2.75, 1.0771484, -1.9296875, 0.7524414, 2.9160156, 3.171875, 1.4755859, 0.25146484, -0.29077148, -0.7475586, -0.08148193, 0.9086914, 2.5390625, 0.0769043, -2.5722656, 1.1171875, -1.7207031, -0.98828125, 1.25, -0.14050293, -0.875, -1.7236328, 2.8964844, -0.12780762, 4.15625, 1.4179688, 2.9980469, -1.3828125, 0.99609375, -0.44726562, 1.4248047, -1.7060547, -0.016189575, 3.3867188, 4.1171875, -0.6616211, 0.45336914, 0.734375, 1.2587891, -0.5205078, 1.4541016, -1.1464844, 0.48608398, -2.234375, -1.8193359, -0.0029296875, -2.4785156, 0.09234619, 3.1113281, -2.6230469, -4.4101562, -1.90625, -2.3046875, -0.13122559, -1.0712891, -0.87158203, 1.1591797, -3.2089844, -1.7880859, -3.3730469, -0.60302734, 0.6816406, 0.021606445, -1.2558594, 1.0673828, 0.9916992, 0.48535156, -0.79589844, -1.4453125, 0.12426758, 0.87060547, -1.9736328, 2.2558594, -0.19555664, -0.15515137, -0.5371094, -1.7900391, -2.5039062, 0.7397461, -0.83251953, -0.06713867, -1.6142578, -1.2050781, 0.31811523, 0.24743652, -1.3896484, 0.6308594, 0.671875, -0.35302734, -0.88378906, 0.8496094, -1.1757812, 1.1630859, -2.5605469, -0.8276367, -2.6269531, -0.95996094, -0.94970703, -1.5957031, 0.05227661, 2.0585938, -2.7773438, -2.9550781, -1.2412109, 2.7714844, 0.25854492, 0.42504883, 0.21411133, 0.2614746, -1.4765625, -1.2363281, -4.328125, -0.32470703, -2.0761719, -1.0673828, -0.23461914, 1.2509766, 0.8564453, 3.7402344, -0.93115234, -2.5410156, -3.8847656, 0.07495117, -0.43310547, -0.4182129, 1.6289062, 0.45141602, -0.5205078, 2.9394531, -1.3251953, -0.20373535, 0.7529297, 0.4230957, 0.3232422, -2.6523438, -1.2851562, 1.4023438, -0.40600586, 0.8154297, -1.1943359, -0.09991455, 0.10687256, -0.42529297, -0.25585938, 0.8676758, 0.27392578, 0.8041992, -0.02015686, 1.0214844, 0.66015625, -0.4255371, -1.2431641, -2.9160156, 1.8271484, 0.78808594, 0.074157715, 0.35498047, -3.0996094, 0.25195312, -0.8457031, -1.7373047, 2.2539062, 0.2578125, 1.0957031, 0.52490234, -2.0136719, 2.5976562, 1.0146484, 1.3320312, -1.0673828, 0.58496094, -2.0058594, 2.1289062, -0.36865234, -0.9394531, 0.48486328, 0.9682617, 1.2226562, 0.4807129, 1.2382812, 0.95410156, 0.46191406, 0.5800781, 3.6660156, 0.68066406, 2.5585938, -0.3449707, -2.796875, -0.61376953, -2.9394531, -0.5107422, -0.35620117, -1.0390625, 0.6855469, -1.7519531, 2.0078125, 2.984375, -2.2792969, -3.8144531, 2.015625, -0.101989746, 2.6210938, 3.3457031, -0.6772461, 0.29907227, 0.29785156, 1.0693359, 0.22998047, -0.1348877, 2.9453125, -0.15612793, -0.32226562, -0.21984863, -4.2460938, 1.1455078, 0.6035156, 0.6635742, -1.2519531, -0.34179688, 1.8046875, -3.7753906, 0.8354492, 0.93359375, -3.078125, 0.29956055, 1.625, -0.10272217, 0.9238281, 0.01663208, -0.14624023, -0.69091797, -0.91796875, -0.7753906, -0.5019531, -1.1494141, -3.1015625, -0.8276367, -1.2353516, 0.63378906, -2.5175781, -1.1533203, 0.33496094, -1.6025391, -0.8618164, 2.6074219, -1.4990234, 0.6269531, 0.7089844, -2.3085938, -1.7988281, -0.3400879, -2.4960938, -0.22790527, -1.7324219, -1.3945312, -1.6875, 1.6630859, 2.1386719, 1.5478516, -2.6074219, -0.6279297, 0.38916016, -0.7597656, 3.7851562, -0.6635742, 0.97265625, -0.3244629, 0.63378906, 0.12780762, -0.48242188, 0.65527344, -3.5800781, 0.3544922, -3.5722656, 1.8330078, -1.4316406, -1.1230469, -0.67626953, 0.11260986, -1.1513672, -0.059631348, 0.8432617, -0.62890625, 3.5488281, -0.28222656, 1.9912109, 0.6621094, -1.8037109, 1.2001953, -1.6611328, -1.0800781, 1.1054688, -1.1074219, -0.6069336, -0.57177734, -1.6074219, 0.77001953, 1.4130859, -2.8789062, -0.6542969, -0.16394043, -1.0292969, 0.5800781, -0.9995117, 2.4667969, 2.7324219, 1.2011719, -0.4284668, -0.9604492, -2.6035156, -1.0664062, -0.7158203, 0.5288086, -2.0605469, 0.75, 2.1152344, 0.9301758, 1.6123047, -0.13684082, -1.5253906, 0.59277344, -3.8867188, 2.1484375, 1.8574219, -0.88427734, -0.07171631, -0.066101074, -0.10357666, -3.2714844, -0.8959961, 4.4140625, -0.20239258, 3.7324219, 0.90966797, 0.7553711, 0.6723633, 1.8925781, -0.5180664, -1.2265625, -3.6171875, 4.5664062, -0.51220703, 1.0751953, 1.21875, 1.5888672, -2.4746094, 0.65625, 2.8242188, 2.4101562, 2.8222656, 2.2089844, 2.015625, 1.6474609, 1.1796875, 0.85839844, 0.06738281, -0.4724121, 0.23657227, -0.35913086, -0.98779297, -1.6865234, 1.5107422, -0.6621094, -1.1679688, 0.12005615, 3.1699219, 0.5786133, -1.7890625, 0.42358398, 0.040374756, -1.4707031, 4.3359375, 2.3476562, -1.5742188, 1.6982422, -0.62597656, 1.3173828, -0.6972656, -0.39697266, -0.036895752, 2.5800781, 1.4638672, -0.25854492, 0.40942383, 0.77246094, -0.52783203, -0.85058594, -0.39868164, -1.2822266, 0.10229492, -0.1517334, -0.8925781, 1.7490234, -0.8774414, -0.51953125, -0.64941406, 0.000729084, 0.052612305, 0.5498047, -1.1933594, -1.0224609, -1.6552734, -0.32543945, 0.70996094, 3.3964844, 0.61328125, -0.42089844, 0.75390625, -1.1005859, 1.6318359, -0.6899414, 0.23937988, 0.36035156, -0.21484375, -1.3251953, -0.64404297, -0.38867188, 1.5146484, -0.99560547, -1.4921875, 1.6894531, 1.0732422, -0.22509766, 0.6035156, 1.0244141, 0.019515991, -0.42089844, -1.6689453, 2.7324219, 0.8149414, 0.6459961, -1.5878906, 1.5498047, 2.5996094, -2, -0.16296387, -1.8300781, -2.015625, 0.22216797, -0.6098633, -0.23449707, 4.1601562, 1.8105469, 0.59716797, -0.66503906, 0.042938232, -3.3671875, -1.2724609, 0.7817383, 2.5859375, -3.2109375, -1.6816406, -0.59814453, 1.6142578, -0.5073242, 0.40893555, -1.8007812, 0.67822266, -0.9980469, -0.40942383, -0.57470703, 3.0546875, -0.3154297, -1.8476562, -1.0634766, -0.34179688, 2.6796875, -0.013114929, -0.7949219, -1.2333984, 0.88623047, 0.2668457, -0.83496094, 2.3203125, 3.5546875, -1.6113281, -1.8164062, -0.79589844, 1.5498047, 2.0175781, -0.022781372, -2.3203125, -2.4296875, 1.6484375, 0.018295288, 0.41064453, 0.20495605, -0.91308594, -0.57666016, -1.6865234, 0.36987305, 1.6923828, 1.4082031, 3.4257812, -0.41992188, 1.8369141, 1.9677734, -1.7646484, -0.61376953, -1.5927734, 0.5991211, -2.0097656, 1.9570312, -0.6777344, -1.3066406, 0.6713867, -0.15014648, -0.7583008, 3.4003906, -1, 0.44091797, 0.23144531, 1.0234375, 0.5727539, -0.6347656, 3.2949219, 1.1181641, 1.8427734, 1.3134766, -0.5053711, -1.6445312, 2.7832031, -1.3291016, -0.3713379, 1.2666016, -1.3496094, -1.0087891, -0.5605469, -0.28637695, -2.9707031, -1.5976562, -1.1738281, -0.38867188, 1.3330078, -1.0556641, 2.0019531, 0.8618164, 0.18139648, -2.6523438, 0.20251465, 0.46923828, 1.1113281, 2.5175781, -1.4414062, 3.2597656, 0.12414551, 0.45629883, 0.85595703, 1.7832031, -3.5097656, -1.1289062, -0.9379883, -1.2539062, -1.6269531, 1.3066406, -0.027954102, -0.5546875, 2.1035156, -0.21533203, 1.0888672, -1.0039062, 2.1933594, 1.3662109, -1.3671875, -0.65527344, 0.9995117, 0.21008301, 0.73046875, -0.44018555, -0.9272461, 1.2880859, 1.5488281, 1.1005859, 1.4560547, 0.28466797, 0.40039062, -3.4902344, -0.75390625, -1.7109375, -0.10638428, 0.45141602, 0.3791504, -1.6787109, 0.58447266, -0.5888672, 0.49682617, 1.4355469, 0.33544922, -1.2275391, 1.7255859, 1.2734375, -1.3808594, 0.27441406, 1.1884766, -3.7792969, 0.0836792, 0.81591797, 0.07885742, 2.5839844, 2.9199219, -1.0859375, -1.7763672, -0.90234375, -1.9248047, 2.0488281, -1.2431641, -0.6875, 1.2226562, 0.67626953, 3.8730469, 0.67089844, -2.7167969, -0.6567383, 1.3730469, -0.7001953, -0.31225586, 0.15014648, -1.015625, -1.7519531, -4.453125, -2.7753906, -0.46289062, -0.4921875, 0.984375, 0.7885742, -2.2226562, -0.011734009, 1.4628906, 1.6201172, -1.0830078, 0.9448242, -2.7910156, 1.0029297, 0.3395996, -1.4814453, -1.5898438, 0.5756836, 1.1025391, -1.3164062, 2.2773438, -2.4375, -2.7246094, -2.5449219, 2.3632812, -0.9428711, 1.1044922, -1.1210938, 1.2509766, 1.7099609, 1.6982422, -2.0859375, 0.9355469, -2.6210938, -2.7617188, 1.8623047, 0.031951904, 0.1538086, 0.1439209, -2.4335938, 1.6425781, 1.2421875, 0.99560547, 1.4560547, 1.6494141, -2.2695312, 0.8125, -0.04421997, -0.3400879, 0.117126465, 2.4199219, 2.0546875, -0.33789062, -1.2021484, -1.2177734, 1.3710938, 0.025878906, 0.94677734, -1.1357422, -0.8574219, -0.088378906, -0.36450195, -0.32128906, 2.3652344, -0.74560547, 0.31518555, -0.37719727, 0.7050781, 0.18408203, -2.1328125, 3.2167969, 2.2480469, -0.99560547, -3.171875, -0.1895752, 1.7236328, -0.093811035, 1.6523438, -1.7119141, -0.92529297, -1.8681641, -1.5107422, -0.4724121, 1.5146484, 2.3984375, 0.22155762, -2.2128906, 1.3955078, 0.52490234, -0.07299805, -1.2099609, 0.16064453, -0.69384766, -1.3251953, 2.1777344, 1.6699219, 0.63183594, 0.8100586, -0.72998047, 2.7402344, -0.8286133, -2.8496094, 0.29125977, -2.6777344, -0.20178223, -0.12298584, 1.3945312, -1.9736328, -0.6977539, -0.10559082, -1.1533203, 1.6894531, 1.1083984, -1.9287109, 1.4648438, 2.5527344, 1.2792969, -2.1347656, 0.6738281, -1.40625, -0.79296875, 3.2988281, -3.6835938, 2.9511719, 1.3203125, 0.2866211, -2.1660156, -0.36547852, 0.02406311, 0.42749023, 1.6806641, 1.5703125, 1.9130859, 2.0605469, 0.43701172, 1.6367188, -1.2900391, 0.77734375, 0.17834473, 1.3828125, 1.0390625, -0.09765625, 0.96875, -3.3925781, -0.60058594, -0.64697266, -1.5517578, -1.4931641, 0.63427734, 1.0351562, -2.9726562, 0.3720703, 0.37329102, 1.7880859, -2.2558594, -1.1142578, -0.21655273, 0.98876953, 0.62597656, 0.34716797, 1.9746094, -0.10144043, -1.6367188, 1.4208984, -0.07550049, 0.26123047, -0.21191406, 0.79052734, -0.45263672, -2.1972656, 0.7597656, -0.17016602, -1.1054688, 0.4074707, 1.4853516, 1.1494141, 2.2949219, 0.1373291, 2.2304688, -0.56640625, 1.0976562, 0.6074219, 4.265625, 1.6650391, 0.8354492, 2.1640625, -0.40454102, 0.171875, -2.2714844, -0.8227539, -0.34277344, -1.4267578, 0.62402344, -1.2421875, 0.11437988, 0.7011719, 1.4794922, -2.1269531, 2.0839844, -0.19140625, -1.1679688, 1.4804688, 1.8681641, 1.0283203, 2.3007812, 0.8959961, 1.3017578, 2.0605469, 2.0292969, -0.72509766, -1.1953125, 0.56884766, 0.59716797, 2.1328125, -0.58496094, 1.5556641, 0.27075195, -0.6459961, -0.8066406, -0.68115234, 3.203125, 0.50634766, -0.07196045, -2.1015625, 2.6484375, -0.26342773, -2.1328125, -1.2871094, -0.9165039, -1.8427734, 0.6401367, -1.6855469, -0.8095703, 0.18798828, 2.8261719, 2.4414062, -1.5205078, -0.52783203, 1.1162109, 0.6430664, -0.27929688, -0.23022461, -0.3864746, -2.7050781, -2.5332031, -0.25146484, -2.1484375, 0.35058594, 0.33911133, 1.25, 0.1239624, -1.9101562, -1.0820312, -2.0507812, -0.85498047, 1.4326172, 1.5273438, -2.6953125, 1.1943359, 0.37963867, -1.5117188, 0.66748047, 1.5810547, -1.0947266, 1.5634766, -1.0517578, -2.7949219, 0.19665527, -2.9960938, -0.99072266, 2.5097656, 1.0644531, 1.7060547, 0.9165039, -4.4101562, -0.8676758, -1.9013672, -1.8183594, 1.8691406, -0.16870117, -1.7119141, 0.8623047, 0.7475586, 2.4472656, 0.22827148, -0.9926758, 1.0712891, -0.07336426, 1.6699219, 1.0791016, -1.3828125, 3.7792969, 0.88720703, -0.78515625, -0.036834717, 1.71875, 0.27685547, 1.4326172, 1.2890625, -0.93847656, -0.77734375, 1.1650391, -0.20800781, -1.3271484, 0.5449219, 0.45874023, 1.3544922, 0.78808594, 1.0087891, -1.9833984, -2.9902344]}, "B010O0ZWWQ": {"id": "B010O0ZWWQ", "original": "Brand: SHASTA VENT\nName: Shasta Vent 8\" Dia. I.D. Class A, All Fuel, SS \"Chimney Cap\" for 8\" Shasta Vent Chimneys\nDescription: \nFeatures: Oil, coal, natural gas, propane burning appliances\nNatural drafting building heating appliances\nZero-clearance factory-built fireplaces\nDouble wall chimney system for residential and building heating appliances\n", "embedding": [-1.6787109, 1.515625, 2.5019531, -2.4316406, -0.16064453, 0.36523438, 1.4570312, -1.2890625, 2.5625, 2.296875, -0.14624023, -0.5097656, -2.3398438, -2.7246094, 1.0566406, 1.9013672, 0.54003906, 0.8286133, 0.9472656, 0.8535156, 1.6513672, 1.2148438, -2.4550781, -1.6777344, 1.9082031, 0.7758789, 2.2519531, -2.4980469, -1.4169922, -2.3125, -1, 0.52685547, -0.99121094, 2.4667969, -0.9326172, -0.57373047, -0.3725586, -2.4023438, -1.6523438, -2.0898438, -0.8417969, 1.0927734, 0.41503906, 1.9248047, -3.3613281, -1.0810547, 1.9433594, -0.13928223, 0.71191406, 0.40698242, -0.48999023, 1.1123047, -1.3837891, 0.8076172, -0.37597656, -0.1875, -0.7631836, 0.25976562, 2.2773438, 1.8193359, 0.90625, -2.0546875, -1.0449219, 1.6416016, -0.6411133, 2.2441406, 0.7402344, -0.80371094, 0.20605469, 2.2226562, 0.80078125, -0.07312012, -0.42944336, 0.12963867, -0.7583008, -1.7197266, -6.1796875, 2.0761719, 1.6455078, -2.2734375, -0.8652344, 0.09875488, 0.2626953, -0.058807373, -0.91259766, 1.8164062, -1.5175781, -1.1650391, -2.0800781, -1.8212891, -1.3701172, 2.0351562, 0.8432617, -2.8476562, -1.1025391, -2.2050781, -0.23364258, 0.62841797, -2.1523438, 0.16467285, 0.17932129, 2.4414062, 1.8476562, 2.5117188, -2.2207031, 1.4990234, -0.28857422, 0.45825195, -0.77783203, -0.6191406, -0.9223633, -2.0175781, 0.003238678, -0.18457031, 0.6767578, -1.8125, 0.33618164, -2.3730469, 3.71875, 0.27001953, 2.6757812, 0.7890625, 0.13842773, -1.3837891, 1.2822266, 1.3691406, -1.2490234, 1.2724609, 3.9804688, -2.1210938, 0.3322754, -1.7529297, 2.96875, -1.6835938, -1.328125, -2.2675781, -0.6635742, 0.30810547, -1.9482422, 1.0029297, -3.2285156, 0.8696289, 1.9609375, 1.1835938, -3.0507812, -1.9804688, 0.24560547, 2.3964844, 0.3022461, -4.125, 1.7802734, -0.13989258, -0.48535156, -2.9199219, 2.6660156, -0.8417969, -0.61621094, -3.8632812, 1.3886719, 0.69921875, -0.0051612854, -0.24682617, -2.7148438, 1.2871094, 1.1289062, -3.1269531, 0.53027344, 0.98876953, -2.5058594, 2.953125, -0.72509766, -2.125, -1.5527344, -0.84521484, 0.32910156, 0.25, 0.33789062, 1.4707031, 0.5698242, 0.037750244, -1.9541016, -0.42456055, 1.7636719, -1.5302734, -1.6425781, -0.42333984, 1.4462891, -0.91259766, -0.5053711, 0.079711914, -0.8569336, 3.1855469, -0.5341797, -0.49902344, 1.3808594, -0.89453125, 0.56591797, -2.3652344, 2.0117188, 0.32958984, 0.26708984, 1.6542969, -1.6699219, 1.3847656, -0.35302734, 1.1210938, 0.15063477, 0.53564453, 0.2479248, 1.6699219, -0.2142334, 0.80908203, 1.1533203, -0.12963867, 0.88134766, -1.6738281, 0.0014209747, -1.3212891, 0.78466797, -0.08026123, 2.7265625, 0.9824219, -1.2675781, 0.4399414, 1.25, 0.8598633, 0.3479004, -0.9453125, -2.8632812, -1.7294922, 3.6171875, 1.7861328, -2.9023438, -0.13232422, 0.27954102, 4.3046875, 2.5839844, 0.72216797, 1.3007812, 0.46069336, 1.3398438, -1.2529297, -0.5126953, 2.9023438, 0.42749023, -0.29956055, 1.109375, 1.6777344, 2.0507812, 2.1679688, 0.9042969, 0.5209961, -0.62939453, 3.59375, 0.8925781, 0.87939453, 0.5913086, 0.030578613, 0.21496582, -0.35205078, 1.5566406, -1.3583984, 0.08331299, -1.3134766, -0.57714844, -0.38623047, 0.19372559, 1.3886719, -1.5683594, -1.5371094, 0.38378906, 2.2753906, 1.6699219, -0.54541016, 1.9052734, 1.1494141, 2.0703125, 1.4667969, 1.3964844, 0.9604492, -0.29248047, 0.61035156, 1.6015625, -1.3310547, -0.32373047, 0.60058594, -0.9423828, 0.8911133, -0.25854492, -0.9501953, 3.3925781, 0.20019531, -1.3076172, 2.640625, 1.6181641, -0.4086914, 0.515625, 1.0957031, -0.39501953, 1.6503906, -1.3652344, 0.97216797, -0.5004883, 1.2753906, -2.0117188, -0.36035156, 0.7680664, -0.80371094, -1.6748047, 0.9707031, 0.018814087, -3.6308594, -0.13684082, -1.2607422, -3.2167969, -0.84814453, 0.7890625, -0.7792969, -0.63720703, 1.4042969, 0.7368164, 0.032562256, -0.8847656, -1.015625, 0.14855957, 3.5195312, -0.17492676, 2.4003906, 1.7890625, 1.4570312, -2.0625, -2.0683594, -1.2539062, -2.8476562, -2.3671875, -1.2382812, -1.6425781, 1.1621094, 1.3564453, -1.7148438, 0.049316406, 0.08642578, -0.68603516, -0.57958984, 1.3183594, -1.0078125, -1.1289062, 1.0996094, 0.5961914, 0.08337402, 0.45947266, 2.34375, -1.1289062, -2.2714844, -1.1113281, -1.8974609, -0.6977539, 1.2802734, -0.057891846, 1.3955078, 0.6557617, -0.7680664, 2.4667969, -1.3017578, 1.2441406, 1.9316406, -1.4541016, -2.5703125, -0.39941406, 1.0869141, 0.34521484, -0.45092773, 0.8261719, -0.85546875, -2.1972656, 0.7265625, 0.6567383, 4.328125, -0.045928955, 4.59375, -2.7734375, 0.90771484, -0.65722656, -2.6015625, -1.9404297, -0.22497559, -0.84033203, -0.36987305, -1.7529297, -2.1523438, -0.18798828, 0.6386719, 2.7617188, 0.41552734, -0.45874023, 0.13439941, -0.09088135, -0.91748047, -1.2558594, 1.0351562, -0.41186523, -0.4399414, -0.43237305, -0.47436523, 0.59765625, -1.8779297, -1.234375, 1.2929688, 0.24914551, 0.062561035, 1.3759766, 2.5253906, 1.8359375, 3.3300781, 1.6083984, -2.1347656, 1.4023438, 0.97509766, 1.2041016, -1.7958984, -1.2695312, -2.9648438, -1.9072266, 0.42358398, 2.9785156, 1.0205078, 2.0546875, -1.1503906, -1.28125, -1.0810547, -0.5571289, 0.28466797, -1.109375, 0.7939453, 1.6865234, -1.5898438, -1.3662109, 0.9511719, 0.94189453, 0.25756836, -0.91064453, -1.4121094, -2.1992188, 0.23034668, 1.3144531, -1.3876953, 0.85839844, 0.8520508, 1.1650391, 1.1914062, 1.2773438, -0.24023438, -1.9667969, 1.3808594, -0.049621582, -0.6298828, 1.8779297, 1.4775391, 0.7553711, 1.2148438, -1.1005859, -1.5253906, 1.0400391, 0.5126953, 0.22729492, 1.6552734, -0.080078125, -0.7001953, -1.0429688, -3.7324219, -0.7480469, 0.515625, 0.75146484, -1.453125, 3.4023438, -0.9238281, -0.28125, -2.0957031, -0.25512695, 0.7314453, -2.3632812, 0.37329102, -0.29003906, 1.1044922, 3.1328125, -3.0214844, -0.15405273, -1.9746094, 2.1640625, 0.9160156, 1.5195312, -3.1972656, -0.73339844, -0.69970703, -0.9091797, -0.27075195, -1.2988281, 1.7568359, -0.23181152, 0.8886719, -0.70654297, -0.5986328, -0.9370117, -0.52978516, 3.5390625, -0.7270508, 0.03555298, 0.07800293, -0.40112305, -0.9682617, 1.3183594, -0.2915039, 0.0015192032, -0.69970703, 0.38427734, -0.5488281, -1.0419922, 1.2998047, 0.2208252, 0.14550781, 1.3505859, 1.9550781, 0.9213867, -0.35839844, 1.9179688, -0.032989502, -0.43115234, 1.5175781, -0.97753906, -0.05343628, -0.49926758, -3.9648438, 2.0839844, -2.5253906, 0.88183594, 2.2851562, -0.0491333, -0.7861328, -0.2166748, -0.08905029, -3.90625, -1.9042969, 1.0898438, 0.051727295, -1.0449219, -2.1269531, -1.1210938, 0.10443115, -2.25, -0.025909424, -0.8486328, -0.16467285, -0.14526367, -0.05218506, -1.2949219, -0.0892334, -2.3867188, 2.3496094, -1.2070312, -0.8251953, 1.2851562, -1.4335938, 0.17529297, -2.7324219, 0.5644531, 1.2207031, -1.0419922, 1.5751953, 3.0996094, 0.85546875, -1.5429688, 0.41845703, -1.1572266, 1.4628906, -0.8652344, 0.28710938, 0.6689453, -0.8515625, 1.2763672, -3.046875, 1.0576172, 1.3535156, -3.0898438, 0.6958008, -2.1503906, 0.31835938, 0.85253906, -0.20715332, -3.328125, 1.890625, -1.3652344, 1.4111328, -1.8486328, 0.91796875, -2.1425781, -0.86376953, 1.109375, -2.5371094, 0.30322266, 1.8496094, -0.108947754, -0.7026367, -4.0546875, 0.022415161, 0.8564453, 0.7631836, -2.0117188, -3.4941406, -0.5810547, 0.73535156, 1.0234375, -0.11608887, 0.3100586, 0.28466797, -0.5463867, 0.47045898, -2.5742188, -1.7597656, -2.0625, 1.5527344, -0.98876953, -1.4404297, 0.8071289, 0.008415222, -1.2587891, 0.080444336, -0.123535156, 0.7402344, -1.0253906, -0.58203125, -0.50146484, 2.4804688, -3.6464844, 1.7197266, 0.5136719, -0.2154541, 2.9667969, 0.27172852, -0.34228516, 2.5839844, 0.39941406, 0.19824219, 2.28125, 2.0019531, 1.2490234, 1.1230469, -0.6401367, -1.6787109, -0.7661133, 0.9057617, 1.6865234, -1.015625, 3.1972656, 0.47998047, -2.1933594, 1.0986328, 1.6191406, -2.9277344, 0.07067871, -2.0527344, -1.4902344, 2.9824219, -0.72998047, -1.1699219, -1.7412109, 2.5273438, -2.1699219, -0.33496094, -0.54248047, -0.6557617, -1.4345703, -3.2636719, -0.20031738, 1.1005859, -1.3115234, 1.0664062, -0.58740234, -0.12683105, 0.49853516, 0.47436523, 4.5976562, 0.50146484, -1.4169922, 2.8476562, 0.26464844, 0.44140625, -2.03125, -0.5888672, -0.8120117, -0.65185547, 1.3525391, -0.19665527, 0.0262146, 0.71435547, 3.7382812, -0.5185547, -0.41308594, -0.087768555, 0.36669922, -1.3847656, 0.7373047, 3.1386719, 0.01008606, 0.5131836, -1.5693359, 0.6425781, -1.9628906, -1.7109375, -0.35717773, -0.6459961, -1.5166016, -0.41210938, -1.8515625, -4.71875, -0.42285156, -1.5986328, -1.7958984, -0.52001953, 0.21887207, 0.6743164, -1.1933594, 1.3876953, 1.9072266, 0.40698242, 0.38623047, -0.026229858, 2.0273438, -0.6386719, -2.2832031, 0.5415039, -0.34765625, 0.8876953, -1.4580078, 0.25146484, -1.1699219, -1.2919922, 0.96191406, -1.3330078, 3.40625, 0.50439453, -0.018203735, 2.0078125, 2.7578125, 0.78759766, -1.4414062, -0.9404297, -0.02961731, 0.18835449, 0.9067383, -1.5927734, 0.7504883, -0.7167969, -0.44970703, 0.8964844, 1.4804688, 0.08856201, 0.6010742, 2.0097656, 1.7929688, 1.6044922, 0.93896484, -1.4628906, 2.0800781, 1.7539062, 0.9785156, 1.0849609, 0.9404297, 0.91259766, -1.4648438, 1.2822266, 0.8105469, -2.0214844, -0.9291992, -0.36083984, 3.5117188, 0.7680664, 0.6279297, 1.1376953, 1.0517578, -0.31420898, -0.49194336, 1.9794922, -1.9824219, 3.4140625, 1.6357422, 0.5942383, -3.2089844, -3.0351562, 1.4101562, 1.0039062, 0.48461914, -1.3564453, 1.7324219, -2.1230469, -0.4580078, -1.5, 0.49975586, 0.58251953, 0.48461914, -0.7553711, 1.5664062, 0.6660156, -0.77685547, 1.6425781, 2.0664062, 3.7578125, 0.6220703, -0.38085938, 5.1601562, -0.064086914, 2.7871094, -0.015136719, -2.3632812, -1.1679688, 0.3269043, 1.3789062, -1.9794922, -0.6201172, 0.07904053, 0.21228027, -2.7871094, 1.5322266, 0.5859375, 0.14404297, 0.05831909, 0.21350098, 0.054901123, 0.9638672, 1.8291016, 0.2368164, -3.546875, 0.3798828, -2.4296875, -0.65625, 0.71191406, -1.7509766, 0.26538086, -0.85058594, 1.1865234, 2.2109375, -0.6308594, 0.1538086, 1.9648438, 2.6894531, 1.9765625, -0.75146484, 2.6738281, 1.3769531, 0.6796875, 3.3808594, 0.06854248, -1.9541016, 0.27563477, 1.3564453, 0.2409668, -0.024307251, -2.1035156, 0.5986328, 0.96533203, 1.9912109, -0.48706055, 0.8203125, 2.6953125, -4.0625, 0.28759766, 0.9379883, 0.6269531, -1.8876953, 1.0175781, -0.93603516, -1.5878906, 1.7294922, -2.1640625, 2.1074219, -0.11383057, -1.6279297, -0.045562744, -1.7988281, -0.3659668, -1.6972656, -0.8574219, -0.4243164, -2.3105469, -0.74316406, -0.74560547, 1.3447266, 0.30126953, 0.5761719, -2.7011719, 1.1982422, 0.06149292, -0.65771484, -0.9560547, 0.123413086, 0.8334961, 0.8647461, 0.6113281, -1.6865234, -0.31274414, -1.4365234, -1.8984375, -3.7089844, 2.2460938, 0.0791626, 0.47045898, 0.113342285, -0.97998047, 0.9013672, 1.5615234, 0.99365234, -2.3769531, -1.9804688, 1.2460938, -1.3183594, -1.2441406, -1.3369141, -0.122802734, 3.0996094, 1.3535156, 1.5224609, -0.63134766, 0.072509766, 0.90771484, 1.1992188, 1.6572266, 0.6821289, -0.16271973, -2.0800781, 1.828125, 1.0761719, -2.2363281, -0.8984375, -0.33447266, 0.78125, 0.9458008, 2.5546875, -0.76660156, 0.74316406, 0.5498047, -0.38061523, -1.5419922, -2.46875, 0.057281494, -2.4277344, 0.5566406, -0.8339844, -1.4208984, -1.0244141, 1.1767578, -2.1738281, 2.2324219, 1.1816406, -3.6132812, -1.9902344, -0.07952881, -0.50683594, -0.5, 0.078186035, 3.3105469, -0.96191406, -1.1552734, 0.038482666, 2.0605469, 2.0117188, 0.33154297, 1.3007812, 3.6464844, 0.08148193, -2.7832031, 0.79296875, -0.19787598, -0.022033691, 1.7587891, -1.3164062, 0.11047363, -1.0927734, 1.7138672, -1.5371094, -0.13269043, 0.6513672, 0.14453125, 1.5009766, -2.5742188, 1.5449219, 1.9707031, -2.0898438, 0.57128906, -2.515625, -1.4707031, -0.25854492, -0.11798096, 1.4677734, 1.5722656, -1.4345703, -0.01638794, 1.7695312, 0.43823242, -0.22363281, 1.3085938, -0.9511719, -1.6914062, 0.13684082, -1.4345703, 0.066345215, -0.69140625, 1.9570312, 1.1552734, 3.1582031, -1.9267578, 0.03677368, 0.6401367, 1.2509766, 1.265625, -1.3759766, 0.87158203, -0.36157227, 2.5996094, 2.2617188, -2.1542969, 0.20935059, 0.42163086, -1.2392578, -2.3476562, 0.3947754]}, "B072JYD7MC": {"id": "B072JYD7MC", "original": "Brand: Unicook\nName: Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More\nDescription: Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection\uff1a

\u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

\u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

\u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

\u25cf Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

Care and Use
\u25ba Allow grill to cool before covering.
\u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
\u25ba Air dry for next use.

Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Fade Resistant Grill Cover\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt.\n\u3010Fabric Handles\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage\n\u3010Fastening Straps\u3011- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off\n\u3010Small Grill Cover Dimension\u3011- 2 burner grill cover measures 32\" width by 24\" depth and 43\" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. \ufe61Be sure to measure your grill first to determine the proper cover size\n\u3010Wide Selection\u3011 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "embedding": [-1.8378906, 2.2695312, 2.6699219, -1.3164062, 0.9863281, -0.2130127, 0.060302734, -1.8945312, 1.4414062, 1.890625, -0.4892578, -1.1806641, 1.0097656, -3.5644531, -0.2956543, -0.021133423, -0.45263672, 2, 2.9140625, -0.5703125, 1.8222656, -0.2109375, 2.0214844, -0.8046875, 1.0097656, 1.1259766, 3.5625, -3.3066406, -1.7792969, -0.50683594, 1.7529297, -0.8496094, 0.71533203, 1.7910156, -2.515625, -1.2060547, -0.23022461, 0.78808594, 0.2208252, 0.21105957, -0.11706543, -1.8964844, 1.1826172, 0.5913086, -2.2480469, 1.3027344, -1.625, 0.75, -1.5644531, -2.4453125, 1.2626953, 1.625, 2.0390625, 0.8535156, -2.0878906, 3.71875, -0.31591797, -1.5976562, -0.2055664, -0.24450684, 1.1318359, -1.6669922, -1.8525391, 2.1054688, -2.1796875, -0.87939453, -0.22631836, -0.42504883, 0.34643555, 0.26879883, 2.0820312, -0.10498047, -2.4316406, 1.3710938, 1.4140625, -0.85302734, -2.2832031, 0.84228516, 1.5791016, -0.97558594, -0.52441406, 4.484375, 0.55859375, -2.4785156, 0.6875, 1.1845703, -1.7714844, -2.0957031, 2.9941406, 1.3330078, -0.3046875, 1.3730469, -1.7832031, -4.5898438, 0.07763672, -2.0839844, 1.5712891, 0.95410156, 0.3930664, 0.57714844, -1.5039062, 0.7714844, -2.0742188, -0.5341797, -3.0683594, -1.4912109, 2.2519531, -1.2744141, -0.82910156, 0.2397461, -0.46289062, -1.3349609, -0.8178711, -0.13439941, 2.1269531, 1.0429688, -1.2011719, 1.8720703, -0.07507324, 0.61328125, 4.4726562, -0.41357422, -0.09222412, -1.1269531, -0.18347168, -1.0087891, -0.47460938, -0.74072266, 4.4257812, -1.1806641, 1.7548828, 0.5649414, 0.42919922, 1.6826172, -2.265625, -0.21826172, -3.390625, -1.5410156, -2.4257812, 2.359375, -1.2294922, -1.7382812, 2.3046875, -1.8271484, -3.7109375, 0.19665527, -0.4794922, 4.25, -0.7519531, -2.6171875, 1.0898438, -2.5449219, -0.2932129, -1.4404297, 0.67871094, -0.4086914, 0.51171875, -4.265625, 4.625, 2.0019531, 2.328125, -3.9453125, 1.3691406, 0.8730469, 1.5390625, -0.8300781, -0.50097656, 0.6376953, -1.6269531, 1.6035156, -0.8911133, -0.84033203, 0.7158203, 0.62597656, 0.8027344, -0.8642578, 0.34570312, 1.9873047, 0.06549072, -0.4482422, -0.9658203, -1.1884766, 0.056030273, 2.5742188, -2.4960938, -1.3935547, -0.50683594, 0.16564941, 0.5727539, -1.078125, -1.0244141, -0.073913574, -1.1289062, 0.69921875, -1.6826172, -0.6245117, -1.2939453, -0.7841797, -0.7026367, -0.07159424, -0.7607422, -2.7792969, -0.7001953, 0.98535156, -3.6054688, -2.0488281, -2.0253906, 0.020568848, 1.4931641, 1.2421875, 1.3740234, -1.7832031, 1.6445312, 3.7480469, -2.1074219, 0.7163086, 1.7880859, -0.72509766, 1.0634766, 1.2128906, 0.023254395, -2.6679688, 0.03137207, 4.0976562, 0.051849365, 3.8457031, 1.4121094, -1.3818359, -0.88720703, -0.9428711, -0.02444458, 0.3413086, 1.1933594, 0.9272461, -1.3017578, 0.875, 1.3310547, -2.9921875, -0.8334961, -0.21472168, -1.4912109, -3.1738281, -2.4902344, -1.0556641, 0.49902344, 1.8515625, -0.8486328, 2.1503906, 0.57421875, -1.0117188, -0.92626953, 0.5415039, 1.4121094, 0.01663208, -0.45532227, 0.8286133, 0.011985779, -0.97021484, -1.8320312, -1.9072266, 0.5175781, 1.0185547, 0.54248047, 0.37573242, -0.24194336, -1.0869141, -0.042938232, 2.3574219, -2.7128906, -1.5537109, 2.078125, -0.23205566, -0.026687622, -1.2792969, 1.2226562, 0.35302734, -0.30493164, 0.78222656, 0.09289551, 0.84228516, -0.21850586, 0.90478516, 2.3164062, -2.015625, 0.8046875, -0.79248047, -0.20129395, -0.3449707, -0.5131836, 0.4309082, 4.1875, -0.8125, -1.71875, 2.4785156, -0.7944336, -0.265625, 0.17419434, -0.052520752, -1.5693359, 1.5322266, 1.1777344, 0.77734375, -0.6269531, 1.2832031, -2.6582031, -1.4375, 2.5117188, -2.3476562, 0.001373291, 2.6015625, 0.8100586, 1.4199219, -1.1533203, 0.70751953, -2.8808594, -2.7519531, 1.75, -1.6513672, 0.9121094, 1.2070312, 1.3671875, -0.08514404, -2.6191406, -1.8095703, -1.7509766, -0.25878906, 0.44750977, -0.3017578, 0.8935547, -1.1289062, -0.7919922, -1.5615234, 0.53515625, -2.109375, 0.2265625, -1.9550781, -1.9765625, -2.1777344, -0.5292969, -1.546875, 1.4169922, -0.24719238, -2.4375, 0.9897461, 0.87597656, -3.875, -0.30981445, 1.3974609, -1.4941406, 0.35302734, 0.38110352, -0.7861328, -0.49926758, -6.2695312, 1.7041016, -1.53125, -0.2866211, -0.68847656, -1.2412109, 0.62841797, -0.16210938, 0.04574585, 0.71728516, 0.80371094, 1.0869141, 0.03277588, 0.30078125, -2.5058594, 1.1757812, -2.5136719, 0.6245117, -1.0722656, 1.78125, -3.6875, -1.4013672, 0.7861328, -1.5166016, 2.8359375, 1.0166016, 1.0576172, -0.6816406, -1.1738281, 0.04675293, -0.82128906, -1.4716797, 0.1685791, -0.9863281, -0.61572266, 0.18811035, -2.828125, -2.4589844, -2.4746094, -0.8881836, 0.058044434, 0.39135742, -0.77490234, 2.3183594, -3.0976562, -1.2929688, 0.036712646, 0.97558594, 0.2783203, -2.2519531, -0.11669922, -2.6054688, -1.4199219, -0.44702148, -1.8964844, 3.7792969, -1.90625, -0.37402344, 2.7109375, -0.89208984, 2.8828125, -0.93115234, -3.2109375, 0.87939453, 0.44213867, 0.21801758, 2.5507812, -1.0498047, 1.1435547, -1.4375, 0.84765625, 2.8457031, -0.38891602, -0.068115234, 2.2226562, 1.7392578, 1.9755859, -0.9638672, 1.6523438, 0.42407227, 1.8701172, 2.3183594, -0.84521484, -1.2304688, 1.1464844, 1.4384766, -1.0039062, 1.8261719, 0.5371094, -0.079956055, 0.07635498, 1.0214844, -0.84375, 1.5634766, -1.2441406, 0.39013672, -1.2324219, 1.6210938, 1.3330078, -0.6767578, -0.20129395, -0.17333984, 2.0019531, 1.5136719, 1.6621094, 0.97558594, 3.0878906, 0.69921875, -1.1044922, -0.42358398, 1.1416016, 0.9892578, -0.6010742, 2.4492188, -1.9003906, -0.31640625, 0.46264648, -1.6162109, 1.5556641, -1.5058594, 1.0654297, 2.2636719, -1.3505859, 0.4194336, -1.3623047, 0.3466797, 0.43920898, -1.3095703, 1.2128906, -1.6220703, -2.4121094, 0.74316406, -3.703125, -2.8320312, -2.6152344, 3.2773438, -0.06774902, -2.2460938, 0.5, 2.1796875, -1.6953125, -2.484375, 0.41430664, 2.6738281, -1.1699219, 3.4042969, 1.7578125, -2.2148438, 1.2109375, -2.3261719, 1.4101562, 0.061279297, -0.3232422, -0.85058594, 0.30249023, -1.0380859, -2.5859375, 2.4277344, 2.2539062, 1.9052734, -1.2099609, 1.671875, -2.4628906, 0.3623047, 2.7148438, -0.88427734, -1.9824219, 2.1230469, 0.73876953, 0.4638672, 0.8066406, 3.3476562, -1.6689453, -0.1743164, 1.5009766, -2.359375, -0.35620117, 0.74560547, -3.8125, -0.98095703, -0.4885254, -1.0292969, 4.3984375, -0.7729492, 0.8613281, 2.3007812, -2.0917969, 0.35229492, 0.35107422, -3.7460938, -1.5537109, -0.9238281, -0.25195312, 2.5136719, -0.33740234, -1.8515625, -2.1015625, -1.8212891, -0.13415527, -0.0143966675, 2.4707031, -1.7617188, -0.1586914, -1.4736328, -0.53125, -1.2783203, 1.0234375, 1.9941406, 1.2783203, 0.11151123, -0.30126953, 0.8930664, -1.6279297, 1.5615234, 0.024673462, 2.5214844, -1.5166016, -0.6611328, 0.49853516, -0.6245117, 1.8242188, -0.9160156, -2.7011719, -1.1542969, 1.4375, 1.6513672, -0.22265625, -0.35473633, -1.5498047, -0.9379883, 1.3310547, 0.9819336, 3.46875, 2.2832031, -0.25854492, -2.6503906, 0.09307861, -1.6650391, -1.5585938, -2.0898438, 0.5991211, 0.43725586, -0.17443848, -1.3173828, -1.7285156, 0.49829102, 0.6123047, 0.7685547, 0.16101074, 2.7910156, 1.4160156, 1.7363281, 2.5058594, -2.5332031, -0.31079102, 2.9121094, -1.1005859, 0.25073242, 0.29248047, -1.0283203, -0.5004883, 1.7958984, -1.5615234, -1.8486328, -0.025604248, -0.98046875, 0.60839844, 0.30859375, -3.03125, 1.9599609, 0.19445801, 0.17980957, 2.0273438, -2.3476562, 2.7753906, -1.7519531, -1.3339844, 1.2441406, -0.42919922, -1.2128906, 0.46240234, 0.4020996, -0.55908203, -1.0136719, -0.26098633, -1.0351562, -0.25024414, 0.85302734, -1.6376953, 1.2871094, -0.60009766, -0.78515625, 1.1123047, 0.8149414, -1.3232422, 0.17932129, 2.734375, 2.5429688, -0.91015625, 2.0234375, 1.6875, -0.65234375, 0.7421875, 1.390625, -2.5800781, 0.014724731, 0.06304932, 0.56591797, 1.0273438, -0.5932617, -1.6337891, 0.029205322, 2.3105469, -1.3232422, 1.3955078, -1.296875, -1.7939453, 1.5107422, -2.3925781, -0.36547852, -2.0546875, 0.49389648, -1.6582031, -0.88183594, 1.4677734, -0.26660156, 0.9609375, 3.0546875, -1.6279297, -2.7148438, -0.5698242, 0.4255371, -0.8183594, -0.7036133, -2.2734375, -2.9824219, -0.86572266, 1.7207031, 3.3359375, 2.5410156, -0.08782959, 1.5273438, -2.6386719, 1.7539062, -1.1894531, 3.2617188, -1.4951172, -1.1591797, 2.7578125, -2.9882812, -1.9609375, -2.34375, -0.14672852, 1.9755859, 2.6425781, 1.2314453, -0.8569336, 0.1595459, 0.03479004, -3.4824219, -2.1113281, 0.16113281, 0.18774414, -0.73046875, 1.1171875, 0.13574219, 1.2734375, 0.3544922, -2.0976562, 0.34545898, -0.54589844, -0.38232422, -1.3583984, -2.0507812, -0.056152344, -0.91503906, -1.2373047, -0.08642578, -0.7036133, 0.9628906, 0.45043945, -3.0683594, 1.6904297, 0.5991211, -2.2832031, 0.20471191, 2.9863281, 1.2011719, 0.9970703, -0.42456055, -0.953125, 0.06365967, 1.7744141, -2.640625, -1.0292969, 2.4296875, -1.6220703, 1.1484375, -1.2216797, -1.5175781, 1.65625, -2.6679688, -0.3479004, 1.1904297, 0.105041504, 3.7578125, 2.0351562, -0.8154297, -0.3581543, 0.12976074, 1.1660156, 1.9853516, -0.025421143, -0.62158203, 1.2539062, -2.2480469, -2.03125, 2.28125, -1.0820312, -1.1416016, -1.9023438, 0.7651367, 1.4931641, 1.8427734, 1.0410156, 0.12939453, 1.2734375, -2.9453125, 0.089538574, 1.0693359, 3.6816406, 1.1132812, -1.5263672, -1.0449219, -2.3378906, 0.8232422, 0.9663086, -0.025268555, -1.0722656, -0.08001709, 0.5917969, 0.7998047, 0.40942383, 3.2695312, 1.1679688, 2.3183594, 0.97265625, 1.0361328, 3.5, -0.19995117, 1.1035156, 0.16333008, 0.7890625, -0.3005371, 1.9082031, 0.6279297, -2.0390625, -0.70214844, 0.121398926, 0.31396484, 1.2597656, -1.8535156, -1.5957031, -0.36401367, -1.3867188, -3.0859375, 0.21960449, -3.3320312, 1.1904297, 1.7285156, -0.42700195, 0.036315918, 0.23254395, 0.5776367, 2.9414062, 2.5449219, 2.3007812, -0.9584961, -1.0341797, -0.13757324, -0.42773438, 0.2529297, -1.2070312, -0.38867188, -1.2294922, 0.2512207, -0.7729492, 2.2226562, 0.0690918, 1.5742188, 0.30737305, 2.5390625, 1.7861328, 1.8134766, 3.0957031, 0.7368164, 2.0917969, 1.2089844, -1.7597656, -0.9243164, 2.5527344, 2.390625, 2.5859375, 0.57373047, 1.0439453, 0.6074219, -1.2460938, 0.37890625, -0.49194336, 2.7363281, -2.7382812, 1.3691406, 1.1865234, 0.98828125, 0.82910156, 2.0625, -0.34057617, -0.20593262, 0.69921875, 0.20251465, 2.5019531, -1.0986328, 2.3046875, -0.33666992, 1.2558594, 2.4179688, -4.3710938, 2.2382812, 0.0054969788, -3.2675781, -0.6069336, 2.1894531, 2.0761719, 1.7207031, -0.15759277, 1.5087891, 1.578125, 1.8955078, 2.765625, -2.2792969, 0.10101318, 0.078308105, 1.6162109, 0.15612793, -1.1376953, -1.7695312, -0.39770508, -3.3691406, -2.1894531, 1.6269531, 2.5507812, 2.9492188, 1.7841797, -1.9931641, 2.3457031, 0.6582031, 3.5546875, -0.26464844, 1.4726562, -2.1699219, -2.5292969, 0.3581543, 0.3630371, -1.7353516, 1.0839844, 1.0117188, -0.2286377, 2.890625, 0.7089844, 0.51416016, 1.5947266, 2.7695312, 0.30664062, 1.0800781, 0.47729492, 1.5869141, 2.5703125, -1.5625, -1.8564453, 1.0595703, -0.13085938, 0.03640747, 2.6503906, -0.9814453, 1.7246094, 1.7890625, 0.33325195, 1.1484375, -0.8569336, 0.7006836, -0.4099121, -0.50341797, 0.14660645, -0.44726562, 1.1943359, 0.91015625, -0.3334961, 0.4645996, -0.40649414, -0.3461914, 1.6162109, 0.42236328, 0.16174316, -1.8701172, -1.2197266, -0.19909668, -0.65966797, -2.1210938, -1.4306641, 0.6401367, -0.44482422, -0.8847656, 0.17626953, -0.060394287, -0.005065918, 0.7192383, 1.9121094, -0.95703125, -0.08496094, -0.71533203, -1.4189453, -0.9980469, 2.1328125, 1.7216797, -2.4882812, -0.890625, -1.7695312, 1.1494141, -0.60839844, -2.203125, 1.8369141, 2.9140625, 1.8886719, -1.4501953, -1.4013672, -3.2753906, -1.1503906, -1.8457031, 2.1953125, -0.18688965, -0.12536621, -0.73291016, 0.55566406, 2.4042969, -1.8701172, -1.7695312, 0.04812622, 1.4072266, 1.4697266, -0.115478516, 0.25561523, -1.0761719, 1.9013672, 0.79248047, 1.3007812, 4.6757812, 0.24035645, 1.2119141, 2.0566406, -2.0703125, -3.6152344, 0.8901367, 0.40844727, -0.23510742, 0.5541992, -0.045532227, 2.484375, -0.36450195, -0.76220703, -0.9472656, 0.014541626]}, "B08P38XD3T": {"id": "B08P38XD3T", "original": "Brand: CEMGYIUK\nName: Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)\nDescription:
FEATURES:

-Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
-Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
-Water-Resistant,All Weather Protection
dual propane tank cover rv
rv propane tank cover double
travel trailer double propane tank cover
travel trailer propane tank cover
\nFeatures: \u2665FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28\"x 12\"x 18\"inch ( (71cm x 30.5cm x 45.7cm)\n\u2665Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank.\n\u2665propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal.\n\u2665EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements\n\u2665100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.\n", "embedding": [1.0537109, 1.9912109, 2.1972656, -0.25854492, -0.71240234, -0.94873047, 0.5107422, -2.3671875, 1.7050781, 2.3417969, 0.41625977, -0.066711426, 1.2792969, -3.9453125, 1.0332031, -1.1738281, 0.2565918, 1.7470703, 3.71875, 0.9267578, 2.5195312, -0.047943115, 1.2802734, 0.47851562, 0.39892578, -1.6679688, 3.3164062, -2.0546875, -2.0371094, 1.046875, 0.9819336, -0.8925781, -0.18078613, 2.5742188, 0.14782715, -1.1035156, -1.1240234, -0.1538086, -2.3691406, -0.27368164, -3.8613281, -2.3515625, 4.3945312, 0.32739258, -0.52685547, -0.8354492, -1.4658203, -1.7978516, 0.8598633, -0.921875, 0.4296875, 0.76953125, 1.7021484, 1.4882812, -2.1484375, -0.61816406, 0.015312195, -0.16516113, 0.48583984, 1.78125, -1.1640625, -0.92285156, -1.6845703, 3.1679688, -0.4267578, -0.2998047, -2.0722656, -1.4775391, 0.08337402, 1.9287109, 1.6152344, 0.5131836, 0.6171875, -1.03125, 0.29663086, 1.3056641, -2.1445312, 1.3642578, 2.5605469, -1.4980469, 1.0283203, 2.9394531, -2.34375, -1.6396484, -0.31347656, -0.63964844, -1.2392578, 0.04034424, 0.6323242, -0.32788086, -2.765625, 1.3105469, -1.6494141, -3.5800781, -1.3476562, -0.03552246, 3.0996094, 1.2470703, 3.0117188, 1.1386719, -0.38085938, 0.46704102, -1.2880859, 1.1669922, -3.2578125, -1.8896484, 1.3759766, -2.1484375, -1.3984375, 1.3535156, -0.31469727, -0.6621094, 0.23986816, -1.3427734, -0.22924805, 0.0703125, -0.70703125, 0.6435547, 2.5351562, 1.8808594, 3.5175781, -0.17810059, 1.2314453, -1.6640625, 2.1933594, 1.5791016, -0.32910156, 1.1884766, 2.9589844, -0.16357422, 1.4550781, 0.27490234, 0.34326172, 0.8256836, 1.0039062, 0.39111328, -1.1982422, -1.6289062, -2.5449219, 1.9980469, -2.28125, -1.0605469, 0.8979492, 0.2548828, -2.8554688, -0.3083496, -0.9614258, 3.1972656, -0.6826172, -1.9921875, 0.31469727, -2.1132812, -0.6796875, -0.8027344, 0.48046875, 1.5244141, -0.013313293, -3.8046875, 1.5048828, 3.1542969, 2.5820312, -1.2636719, 0.00084877014, 0.90478516, 0.043182373, -2.9785156, 0.73095703, -0.84228516, -1.2714844, 2.1445312, 0.16601562, -2.7714844, 1.5556641, 0.4350586, -1.1542969, -1.1982422, 2.1132812, 1.1806641, 1.7753906, -0.21130371, -3.6582031, -0.77246094, -1.5908203, 0.1784668, -0.6567383, -0.10736084, -0.6484375, -0.87597656, -0.25390625, -1.2333984, -2.5664062, 0.9506836, -1.6738281, -0.63378906, -2.1640625, -2.2285156, -1.9980469, -1.7353516, -0.17028809, 1.40625, -1.5859375, -1.5439453, -2.1074219, 0.18334961, -2.9765625, -1.9277344, 1.4785156, 0.61621094, 1.7705078, 0.3022461, -0.03289795, -0.29345703, 1.9746094, 0.031433105, -1.4316406, 0.7885742, 0.70166016, 1.375, 1.828125, 1.8300781, -0.10876465, 1.3818359, 1.4375, 1.9121094, 0.39038086, 2.6855469, 1.0283203, 0.043304443, -0.64501953, -0.0725708, -0.7211914, 1.4609375, -2.3671875, -0.4338379, -1.2910156, 1.2509766, 0.1340332, -1.8144531, 0.15856934, -0.070617676, -0.9116211, -1.0458984, -1.9941406, -0.6347656, 1.7148438, 1.7695312, -0.18334961, 0.3330078, 1.9208984, -0.04724121, 0.79785156, -0.83203125, -0.69091797, -1.5351562, -1.0341797, 1.2207031, 2.0957031, -0.19372559, 0.5214844, -2.6230469, 0.41601562, 1.0820312, -1.8886719, 0.7207031, -0.29101562, 1.0039062, 0.19116211, -0.15368652, -3.3574219, 1.2880859, 0.60839844, 0.7553711, -0.52978516, -1.234375, 2.1269531, 0.084350586, 0.093444824, 1.4365234, 0.26611328, 2.2773438, 0.72802734, -0.121520996, 1.3291016, -1.8320312, 1.2929688, 1.578125, 1.4765625, 0.36645508, -2.0214844, 0.37182617, 2.9414062, -1.1923828, -0.9082031, 1.53125, 2.84375, 1.0771484, 3.4433594, 0.32250977, -0.050628662, 1.5507812, -0.55810547, -0.29492188, -0.8432617, 0.36816406, 0.7236328, -1.3896484, -0.69091797, -1.2128906, 0.5708008, 1.4609375, 1.5019531, 0.16955566, -2.0917969, -1.1015625, -0.4177246, -1.2001953, 3.5996094, -2.6757812, -0.79052734, 3.1757812, -0.63623047, 0.12792969, 0.703125, -2.1523438, 0.07269287, 0.69677734, -2.90625, -0.048858643, 0.5776367, 0.71484375, 1.2060547, -2.7890625, 2.2519531, -0.29125977, 0.5698242, -0.15356445, -1.7285156, -1.1982422, -0.48583984, -0.8779297, 0.8100586, -1.9414062, -0.84521484, 2.6933594, 2.5410156, -1.1708984, -0.49780273, 2.0976562, -1.4199219, -0.6489258, 0.27319336, 2.8554688, -1.1064453, -2.9140625, 0.1496582, -0.10058594, -1.2792969, 1.7783203, -1.3291016, -0.09649658, -0.625, 0.5341797, 1.4326172, -0.8120117, -1.5800781, -0.66308594, 0.41259766, -4.3554688, 1.9248047, -2.0058594, 0.21899414, -3.2871094, 0.16772461, -1.3427734, -1.21875, 2.8613281, -2.109375, 4.0273438, 2.6875, -0.14038086, -0.99902344, -1.5332031, -0.23913574, -1.6337891, -2.4082031, -1.2695312, 0.14013672, -1.7314453, -0.21020508, -4.515625, -1.7695312, -0.9379883, -0.11437988, -0.5883789, -1.625, -0.3894043, 0.578125, -1.5712891, 0.2368164, -0.7753906, 2.3046875, -2.2246094, -1.7783203, 0.1348877, -0.31567383, -0.89160156, -0.7446289, -1.6630859, 0.69433594, -1.3925781, -0.67089844, 0.9169922, -1.2705078, 1.9658203, -1.7929688, -3.7617188, 0.23217773, 3.2519531, 3.0546875, 3.0234375, -0.3701172, -1.7265625, -1.0517578, -0.3305664, 3.2832031, 2.7695312, 0.6645508, 2.296875, 0.20654297, 0.6616211, -0.7915039, 0.15637207, 0.48046875, 0.5546875, 3.4296875, -0.9082031, -0.3239746, 1.0263672, 2.4589844, -2.4394531, -0.051116943, 0.79345703, -0.9584961, 2.6152344, 1.5390625, -2.7890625, -0.21984863, 0.6010742, 0.91308594, -0.3322754, 1.8671875, 0.9321289, 0.59472656, 1.4287109, -0.00730896, 1.0751953, 1.4472656, 0.7080078, -3.0332031, 1.4179688, 0.55322266, -1.78125, 0.053985596, 0.69873047, -0.52734375, -0.33789062, 1.015625, -0.64160156, 0.7207031, 1.1484375, -0.8647461, -0.25170898, -1.1347656, 0.2541504, -0.21850586, 2.4980469, -0.36083984, -0.8701172, -3.0488281, 0.54833984, -1.4433594, 1.5390625, -2.03125, -0.20178223, 1.6269531, -3.6230469, -0.43188477, -1.9707031, 2.7480469, -1.2597656, 0.039489746, 0.012802124, 1.0097656, -1.8447266, -2.2910156, 0.26757812, 0.8520508, -2.5390625, 4.0507812, 4.1367188, -1.9960938, -0.1550293, -1.1210938, 3.5078125, 2.5585938, -0.8208008, -1.3076172, -1.8896484, 1.3173828, -1.3105469, -0.38305664, 0.4736328, 2.375, -1.7529297, -0.8076172, -1.3339844, 0.9111328, 1.4667969, -0.0025234222, 1.0878906, 1.359375, -1.1738281, 2.265625, 0.70996094, 3.5566406, -0.042816162, 1.3916016, 1.2509766, -0.51660156, 1.1962891, 0.12780762, -4.1601562, 0.028671265, 0.23815918, -1.3769531, 3.7070312, 0.33081055, 1.5810547, 0.39013672, -0.05178833, -2.4667969, -0.8046875, -3.3203125, 1.3310547, -2.5058594, -0.5517578, 1.0205078, 0.10961914, -2.265625, -1.5996094, -1.5322266, -3, -0.8330078, -0.20605469, 1.1279297, 1.4521484, -1.0039062, -0.30615234, -0.51660156, 0.86083984, -0.93066406, 0.3371582, -1.0039062, -1.0830078, 2.6816406, 0.4621582, 0.609375, 0.49536133, 3.0996094, 0.91503906, -0.9824219, -0.93847656, -0.90478516, 1.8583984, -1.265625, -3.5957031, -1.09375, -0.49804688, 0.7636719, 0.7607422, -0.71484375, 0.53515625, 0.7944336, 1.7763672, 0.9067383, 2.8320312, 1.0205078, -1.6367188, -2.4160156, 2.1757812, -0.5883789, 0.08239746, -0.54345703, -2.5917969, 1.0517578, 0.027114868, -2.2265625, -2.0214844, -0.46923828, 1.203125, 1.5332031, -2.5351562, 2.6542969, 2.1074219, 2.1621094, 1.9931641, 0.1430664, 0.10333252, 0.47436523, 2.1074219, 1.1679688, -0.23864746, 0.74853516, 0.57470703, -0.34838867, 0.1496582, -3.0019531, -2.0078125, -0.85546875, -2.3359375, 0.42041016, -0.66552734, 2.7148438, -0.25878906, -0.9609375, 0.37451172, -1.9140625, 4.5234375, -2.4277344, 1.1435547, 0.125, -1.7226562, -0.44213867, 2.3398438, 2.4472656, 0.4543457, 1.2617188, -1.3623047, -1.8007812, -0.36791992, 1.1005859, 1.5029297, 0.9941406, -1.9462891, -0.91552734, 0.2680664, 1.9394531, -0.42407227, -0.8618164, 1.5917969, 2.0351562, 0.24682617, 1.0419922, 1.9179688, 1.4765625, 1.6064453, 1.7890625, -0.12097168, -1.5039062, 0.8022461, 1.2216797, 2.4472656, -2.3964844, -3.21875, 1.5722656, 0.41845703, 0.546875, 2.1308594, 0.046905518, -0.9560547, -0.25756836, -2.8535156, -1.3261719, -0.5439453, 0.33618164, 0.28100586, -0.75634766, 1.4814453, -0.72558594, 0.55566406, 2.78125, 0.35253906, -0.6508789, -0.23461914, -0.027191162, -0.53808594, -2.8984375, -0.7055664, -4.5898438, -1.4160156, -0.609375, 0.56591797, -0.3251953, 1.6816406, 1.34375, -2.125, -0.4621582, -1.0087891, 0.7871094, -2.0253906, -0.35473633, 1.8291016, 1.3720703, 0.7416992, 0.11871338, -0.115112305, -0.2019043, 2.8183594, 2.4472656, -0.46044922, 0.578125, -0.24328613, -3.9023438, -5.515625, -0.7763672, 0.92822266, -0.47265625, 0.96191406, -0.9038086, -0.48950195, 0.62890625, -1.4287109, 0.34057617, -1.890625, 1.0419922, -2.2382812, -1.5966797, -0.9145508, -0.38110352, -0.113342285, 1.0361328, -1.828125, 0.06939697, -1.9287109, -3.1601562, -2.796875, -1.0751953, -1.4384766, -0.12261963, 0.86621094, -1.140625, 2.1855469, -0.09246826, 1.6914062, -0.5332031, 1.4746094, -0.031234741, -0.24658203, 1.8535156, -0.20227051, -1.4658203, 2.2128906, -0.4724121, 2.4335938, 1.8066406, 0.71533203, -2.6308594, 0.78027344, 1.1572266, 0.8334961, -0.72021484, 0.6455078, 1.5898438, 1.7060547, 2.8242188, 1.125, -2.7246094, -1.7705078, -1.3320312, -1.5986328, -0.2614746, -2.5976562, -3.0078125, 0.05154419, 2.6757812, 1.546875, 0.85253906, 1.4882812, 1.6376953, 1.2998047, -2.2265625, 0.36499023, -2.5566406, 1.3349609, 0.2722168, -1.3867188, -2.6777344, -2.234375, 3.7617188, 1.9208984, 0.5727539, 0.8647461, 0.3227539, -0.33935547, 1.6181641, -0.029327393, 1.1835938, 1.4697266, 2.28125, -0.8955078, 2.0898438, 3.328125, -0.006088257, -0.5996094, -1.8154297, -0.6196289, -0.59277344, 0.80322266, 1.9316406, -3.1640625, -0.3544922, 1.4755859, 0.4296875, -0.08459473, -1.4804688, -0.0042381287, -2.8574219, -1.1757812, -1.5263672, 0.328125, -4.6523438, 3.4179688, -0.2602539, 0.2836914, 0.7421875, 1.8085938, -0.5908203, -0.15405273, 2.7285156, -0.7944336, -0.71484375, -1.2324219, -0.34350586, -0.61035156, 1.4003906, -3.3183594, 0.20129395, -1.2529297, 0.58691406, 1.2958984, 1.1474609, 0.10949707, 0.80126953, 2.0253906, 1.9980469, 4.296875, -0.2064209, 1.4589844, 0.90527344, 1.3652344, 2.5585938, -1.6318359, 0.16320801, 2.0136719, 1.9638672, 3.4160156, -1.4208984, -0.5004883, 1.1005859, -0.91552734, 1.2792969, -0.328125, 0.93066406, -3.2929688, -1.0302734, 0.81884766, -0.42456055, 0.89453125, 2.4746094, -1.2490234, -1.8349609, -0.17932129, -1.4619141, 1.1992188, -1.0556641, 1.6132812, 1.5498047, 0.85839844, 2.1621094, -1.1035156, 0.34155273, -2.2734375, -3.0058594, -0.8857422, 2.1835938, 0.83984375, 1.6679688, 0.2709961, 1.6855469, -0.6425781, 1.1142578, -0.046936035, -0.013496399, 1.8925781, -3.0722656, 1.8447266, 2.8652344, -1.75, -0.27294922, 0.28930664, 0.5805664, -3.9589844, -1.3603516, -0.51416016, -0.042266846, 0.28027344, -3.6894531, 0.06878662, -0.84765625, 2.0078125, -2.6113281, 0.015380859, -0.3762207, -4.8867188, -0.04144287, 1.3515625, -0.6269531, 4.3710938, 0.59472656, -0.5073242, 1.6601562, 0.44213867, 0.62060547, 0.1932373, 0.10479736, -0.37109375, 1.7783203, -0.18200684, 2.0625, 1.2666016, -1.0185547, 0.11987305, 2.3515625, 0.37060547, 1.0878906, 0.34643555, -2.0625, 3.5039062, 0.24694824, -0.97998047, 0.89160156, -1.6650391, 0.22167969, -0.8803711, 0.6333008, 0.18688965, 0.4008789, -1.9501953, 0.9199219, -3.875, -0.042541504, 1.1552734, 0.7680664, 0.87060547, -0.15393066, -1.6357422, -1.0224609, -0.6855469, 1.28125, -3.3554688, 0.16210938, -1.9267578, 0.6738281, -0.44384766, -1.53125, -1.2949219, 0.90771484, -1.7373047, 0.9453125, 1.3632812, -1.0791016, -0.076416016, -0.26342773, -2.2285156, 0.4086914, 1.8818359, 0.6323242, -0.5800781, -0.2290039, -1.3408203, 0.52001953, -0.55566406, -0.3659668, 1.8388672, 1.4511719, 2.5585938, -0.19873047, 1.0371094, -1.7324219, -1.0322266, -2.9511719, 2.4296875, 1.0078125, -1.1767578, 0.77978516, 2.0878906, 2.6582031, -1.4824219, -0.5883789, -0.095336914, 1.1113281, 1.4736328, -0.9765625, 0.57373047, 1.2685547, -1.3632812, 1.3261719, 3.3359375, 2.421875, -2.8632812, 1.2294922, 1.0087891, -2.5117188, -0.91308594, -0.14831543, -1.1396484, -1.8857422, 0.9667969, 2.9785156, 4.1679688, 0.3425293, -0.9375, -3.421875, -0.20178223]}, "B07F2VP353": {"id": "B07F2VP353", "original": "Brand: Fire-Maple\nName: Fire-Maple \"Fixed Star 1\" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use\nDescription: Portable Propane Stove Burner for Camping
The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

Specifications:
Materials: Aluminum, stainless steel, copper, silicone
Open: \u0424128x173mm
Weight: 1.13Ib/511g

\nFeatures: HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves.\nCOMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz!\nINTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly.\nSAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure.\n30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!\n", "embedding": [-1.3603516, 1.5683594, 3.0722656, 1.0898438, 1.1757812, 1.3388672, 2.1796875, -0.9086914, -1.1259766, 1.2324219, 0.10144043, 0.30615234, -0.5883789, -1.8945312, 1.5048828, 1.0712891, -2.0585938, 0.20532227, -1.2607422, -1.3476562, 3.0195312, 0.64746094, -0.6171875, -0.56396484, 0.9350586, -0.36914062, 3.0664062, -2.8652344, 0.21240234, -0.59716797, 2.3203125, 1.3037109, 0.3618164, 2.6796875, -3.6367188, 0.83691406, -0.5253906, 0.5498047, -2.9609375, -1.3427734, -0.77490234, -0.9243164, 3.1035156, -0.9946289, -2.2480469, -2.3789062, 0.98535156, 0.34301758, -2.4355469, 0.022262573, 0.7006836, 1.7529297, 0.25561523, 2.0136719, -3.1875, -0.14489746, -0.40722656, -1.7558594, 2.9707031, -1, 2.3242188, 0.019439697, -1.078125, 1.40625, -2.2753906, -0.20288086, 1.6494141, -0.38256836, -0.90478516, 0.3701172, 1.3339844, -0.81591797, 1.5351562, -0.95410156, -0.77783203, 0.014328003, -3.0957031, -0.7817383, 1.7128906, 0.3034668, -1.3242188, 1.7177734, 0.48339844, 0.40795898, 0.22827148, 1.4404297, -1.8857422, 0.13000488, 1.0449219, 2.03125, -2.0898438, 1.6806641, -0.8300781, -3.9550781, 2.6210938, -1.0332031, 0.8852539, -1.5146484, 0.36743164, 0.89697266, -1.8027344, 1.3339844, -0.61279297, 0.46069336, -3.7695312, 0.5415039, 2.6621094, 1.296875, -1.4648438, -0.13842773, -3.1210938, -1.5478516, -0.08123779, -0.35083008, 1.7177734, 2.28125, -1.0371094, -0.6772461, 3.03125, -0.3725586, 4.1484375, -1.0615234, 1.1005859, -1.1464844, 1.6103516, 1.0693359, -2.6523438, -1.1806641, 1.9785156, -0.5234375, -0.8149414, -0.4658203, 1.1328125, -0.43164062, -2.4082031, -1.1455078, -2.5195312, -2.2617188, -2.3242188, -0.39770508, -0.7758789, 2.0292969, 1.7929688, 1.6035156, -4.4296875, -1.3115234, -1.203125, 3.640625, 0.29467773, -1.9707031, 1.7949219, -1.8154297, -0.9970703, -2.2890625, 1.8183594, 0.7260742, -1.0429688, -0.21008301, 2.7617188, -1.1269531, 0.8955078, -0.67578125, -1.8320312, 1.6269531, -0.35083008, -1.0742188, 1.2255859, 0.24719238, 0.52001953, 1.5839844, -0.060272217, -0.7470703, 0.36987305, 0.75341797, 0.62353516, -1.1816406, -1.0146484, 2.1777344, -0.008529663, -1.9560547, -2.2890625, -1.7607422, 1.9072266, 1.2832031, 1.0214844, -0.28808594, 0.20739746, -0.03125, -0.7001953, -1.734375, -1.9677734, 1.7324219, -2.2558594, -0.20092773, -0.7314453, -2.9101562, 1.4169922, -3.0644531, -0.25927734, 1.2128906, 0.6743164, 0.07873535, -0.6425781, 0.92333984, -2.1386719, 1.0771484, -0.6386719, 0.18933105, 2.1953125, 4.234375, 0.5913086, -0.29907227, 0.7036133, 0.77783203, -3.3613281, -2.2792969, 0.81152344, 1.8681641, -0.13989258, 2.0644531, 1.3613281, -0.79248047, 1.1816406, 1.2373047, -1.6972656, 1.8271484, 0.90527344, -1.2167969, -1.7304688, -1.7714844, 1.2216797, 0.625, -0.8652344, 1.0537109, -1.4521484, 2.9785156, 2.8828125, -0.08294678, 0.08654785, -1.4150391, -0.03439331, -2.9667969, 1.2451172, 0.5053711, -2.65625, 1.2451172, 0.9013672, -0.45776367, 1.1767578, -0.09655762, -0.89990234, 0.99853516, 1.5058594, 2.0800781, -1.5761719, -1.1445312, 0.14404297, -0.83984375, -1.0830078, -0.1270752, 3.0410156, 3.2734375, -1.53125, 3.0332031, -0.20227051, 0.8256836, 2.078125, 1.4472656, -2.6484375, 2.0039062, 1.8710938, -0.18469238, 4.0117188, -1.2265625, 1.5888672, -1.8574219, -0.19421387, 0.8251953, -0.24987793, 0.94677734, 0.14123535, -0.050476074, 2.7988281, -2.7363281, 1.2519531, -1.3125, 4.1210938, 0.49926758, -0.7729492, -0.59228516, 6.171875, -0.7060547, -1.5966797, 0.63623047, -2.0664062, 1.3398438, -0.77734375, 0.7753906, 1.2333984, -0.8676758, 1.8398438, 1.4833984, 0.40771484, 0.40844727, -1.3300781, 0.15917969, 1.65625, -0.23498535, -0.5161133, -0.36669922, 0.7729492, -1.8964844, -0.8798828, 0.25048828, -1.4804688, -1.3378906, 2.8339844, -2.015625, 0.69628906, 1.9375, -0.18249512, 1.6533203, -1.4072266, -1.3701172, 0.08654785, 2.1914062, 0.12805176, 3.6015625, -0.028778076, 1.4462891, -1.4648438, -3.015625, 0.45776367, -0.21606445, -0.9736328, -1.6074219, 0.68896484, -2.8886719, 1.3535156, -1.5214844, -0.5708008, 1.7373047, -1.6669922, 1.9599609, -1.6748047, -3.046875, 1.9042969, 1.4775391, -1.4609375, 1.4033203, 0.34106445, 1.3027344, -2.328125, -2.3183594, -2.2714844, 0.43481445, -1.1269531, -0.5654297, -1.7255859, 2.7480469, 0.13269043, 0.5708008, -0.18908691, -0.16271973, 0.9736328, -2.5039062, 0.7192383, -2.484375, -0.5600586, 0.41210938, 1.5878906, 0.6894531, -1.2880859, -1.4111328, -1.3427734, 0.07336426, 0.17053223, 3.140625, -0.026489258, -0.4338379, -2.3066406, -0.17358398, -0.7260742, -1.3505859, -1.8681641, 0.5205078, -0.70947266, -0.46362305, -1.8378906, -3.5625, 0.64160156, -1.8398438, -0.3803711, -1.453125, 1.9697266, 0.058166504, 1.2304688, 0.47680664, 0.17272949, -1.3125, -2.609375, -0.43164062, -2.0214844, -0.14172363, 0.5957031, -1.1826172, -1.7744141, 3.796875, 1.1220703, 1.2822266, 1.5410156, 2.3808594, 0.44335938, -0.24609375, 0.5678711, -2.7226562, 1.3183594, 1.0029297, -0.29760742, 0.47192383, -0.6225586, -0.62890625, -1.1103516, 0.8027344, 3.4824219, 0.16381836, 1.9414062, -0.6196289, -1.2333984, 1.6347656, 1.7392578, -3.1796875, -1.5361328, 0.48901367, 3.1054688, -1.6464844, -1.5380859, 2.2480469, 1.6650391, -2.2773438, 0.5185547, -0.45776367, 0.44433594, 2.4648438, 1.1298828, -0.024765015, -1.2207031, 0.73876953, 0.007801056, 2.3828125, 1.4462891, 0.039276123, -1.2216797, -0.9663086, 1.7529297, -0.83935547, 1.5976562, 1.90625, 1.2890625, 2.1855469, 1.7216797, -1.9941406, 0.87060547, -0.018356323, 0.22595215, -0.61279297, 2.1191406, -0.6933594, -1.4824219, -2.6210938, 0.79785156, 1.6728516, 0.05697632, 2.1796875, -0.19921875, 0.4951172, -0.22375488, 2.1386719, 0.3293457, 0.67529297, -0.76464844, 3.6933594, 0.3347168, -1.9404297, 0.7265625, 0.68847656, -1.1191406, -4.2460938, 1.0214844, -1.4003906, -0.71484375, 1.6523438, 0.40942383, -1.2871094, -2.4179688, -2.3925781, 0.28442383, -2.4550781, 1.4541016, 0.9580078, -1.9541016, 0.007686615, -1.4228516, -1.1699219, 2.0332031, -0.20751953, 0.2763672, -1.3847656, 0.68115234, -2.1894531, 1.296875, 1.109375, -0.39160156, -0.37060547, 1.3378906, -3.5273438, -2.6601562, 1.078125, -2.6835938, 0.47753906, 0.9511719, -0.3071289, 0.4272461, -1.4453125, 3.65625, -0.83496094, -1.6484375, 1.2783203, -2.4648438, -1.8574219, -1.3173828, -3.8476562, 2.1113281, -1.2480469, -0.20947266, 1.9833984, 0.06774902, -0.9921875, -1.0751953, 0.74658203, -0.24780273, -0.5058594, 0.1484375, 1.2509766, -3.2226562, -0.6879883, 0.48632812, -1.203125, -3.3046875, -0.2512207, 0.7993164, 0.8535156, 0.8911133, 1.2216797, -3.7988281, 1.3427734, 0.7338867, 1.3242188, 1.0380859, -1.1650391, 0.6035156, -0.58251953, -0.16503906, -0.94384766, 1.2714844, 0.47314453, 0.8261719, 0.734375, 3.3535156, 1.2597656, 0.8383789, 3.1769276e-05, 3.1953125, 1, -0.37573242, -2.2441406, -2.2636719, -1.7324219, -1.4755859, 1.0566406, -0.7236328, -0.035736084, -1.7861328, 1.6621094, 1.7626953, 0.28979492, 0.74658203, -0.29101562, -1.0117188, 0.73779297, -1.0449219, -2.1015625, -1.125, -1.0537109, -0.73583984, -1.8847656, -0.14746094, -0.7949219, 0.057006836, -1.9033203, -0.79052734, -0.4958496, 2.59375, 1.7587891, 2.265625, 3.0722656, -0.73583984, -2.2402344, 1.9072266, -2.5585938, -2.2363281, -0.43432617, -0.6044922, -0.8300781, 2.2421875, 1.2958984, -0.66796875, -1.578125, 1.3164062, 1.015625, -1.0849609, -1.5126953, -0.3955078, -2.8242188, 1.078125, 0.9707031, -0.07305908, -0.4892578, -0.2553711, 0.20202637, -0.31176758, 2.0214844, -0.08251953, -1.2451172, -0.122924805, 0.2166748, 0.014343262, 0.34228516, -1.2978516, 0.5185547, 1.5009766, 1.8388672, 0.8408203, 0.6538086, 0.24072266, 1.6582031, 1.4589844, -0.9741211, 0.17028809, -0.16723633, -0.27856445, 0.31323242, 2.7460938, 0.6513672, -0.080078125, 1.0185547, -0.14660645, -3.0117188, -0.6694336, -0.7729492, -2.6875, 2.5644531, -0.48046875, -2.4707031, -1.4541016, 2.4785156, 0.027938843, 0.5, -0.7573242, -1.8427734, -1.6894531, -3.1777344, -0.57421875, -0.9916992, -1.703125, -0.15527344, -1.0087891, 1.0429688, -1.2294922, 0.3803711, 2.2070312, -0.28320312, 0.5913086, 1.65625, -2.109375, 1.4423828, -0.578125, 0.24621582, -3.0117188, 1.6435547, 1.3173828, -0.45751953, 0.6123047, -1.5527344, 2.59375, 0.06427002, -0.15441895, -1.7666016, 0.81103516, -3.4648438, -1.0439453, 1.2587891, 0.7060547, 2.4199219, -0.26245117, -0.8774414, -1.6035156, 2.3515625, -1.3710938, 1.6191406, -0.9301758, 1.0146484, -1.7207031, -2.4960938, -2.3339844, -0.20483398, -2.8652344, -1.2675781, -0.17700195, -2.0957031, -0.109375, 0.1685791, -0.06774902, -0.4411621, 1.7324219, 2.2910156, 0.9951172, -1.4257812, 1.0478516, 0.63134766, -0.004096985, 2.2207031, 0.77490234, 1.9238281, -1.7138672, -0.7270508, 1.3808594, -1.9091797, 2.125, -0.6323242, -0.78466797, 1.0478516, 3.4863281, -1.1201172, -1.3076172, 2.6367188, -0.6933594, -0.6591797, 0.21948242, -0.97509766, 1.5458984, -0.3112793, -2.3457031, 1.0527344, -2.7167969, -1.8662109, -1.1679688, -0.56591797, 1.6054688, -0.57421875, -0.38745117, -1.4082031, 1.7558594, -0.37280273, -0.1619873, 1.6416016, -0.38500977, -0.3388672, -3.0761719, -3.2128906, 1.2626953, -0.13806152, -0.6616211, 0.030059814, 0.66748047, 0.92822266, -1.21875, -0.16577148, -0.1796875, 0.42163086, -1.6279297, 1.3105469, -0.78271484, 3.8847656, 1.1621094, -1.2226562, -3.3007812, -3.0097656, -0.47753906, 0.65234375, 0.6933594, -2.4492188, 0.7001953, -1.0605469, 0.7753906, -0.54296875, 3.7753906, 1.1259766, 0.7260742, -0.74609375, 1.3544922, 3.125, -0.09954834, 2.5136719, 0.26733398, 0.8432617, -0.23034668, 0.8642578, -0.79589844, -0.828125, 2.1113281, -0.9116211, 0.10089111, -1.1660156, -1.8417969, 2.3125, 1.1494141, -0.6879883, -2.1796875, -1.1865234, -0.46972656, 0.84375, 2.9257812, 1.1005859, -1.2363281, 1.7578125, -0.7963867, 1.5097656, 2.5917969, 0.3334961, -1.0517578, 0.3852539, -1.0175781, -0.6928711, 2.25, 0.97021484, 0.45043945, 0.9394531, 1.6435547, 0.066589355, 2.6816406, 1.0166016, 1.8984375, 2.34375, 2.5273438, 1.7363281, 0.53027344, 2.7070312, 0.8984375, 1.5966797, 3.2460938, 1.8740234, -0.54052734, 1.4111328, 1.8164062, 0.8051758, 0.59472656, 1.984375, -0.16381836, -0.41235352, -1.0273438, -0.23999023, 1.5595703, -2.5, 2.6542969, -0.7158203, -0.058898926, 0.0053863525, 1.3779297, -1.5302734, -0.53125, 1.0107422, -1.6269531, -0.099487305, -1.7363281, -0.1194458, 0.26635742, 1.1259766, 0.82958984, -3.4003906, 1.8779297, -1.1845703, -2.1933594, -0.72802734, 3.3320312, 0.92333984, 0.40844727, 0.7421875, 2.421875, 0.9667969, 0.20239258, 1.4160156, -0.8779297, 0.20007324, -0.27734375, 1.7890625, -0.2939453, -1.9238281, 0.75146484, -0.55371094, -4.6445312, -4.3125, 1.03125, 0.13830566, 1.9775391, 1.7060547, -1.7949219, 3.9433594, -0.2709961, 1.4697266, -2.2441406, 1.7851562, -0.26611328, -1.71875, -2.6269531, 0.014961243, 1.3427734, 2.828125, -0.96435547, -1.9873047, -0.28637695, -0.33764648, 2.6386719, -0.36376953, 0.6699219, 0.46948242, 0.43774414, -2.046875, 2.8613281, 1.4267578, -1.765625, -1.6904297, 2.0410156, 2.6054688, 1.9638672, -0.4951172, -1.7128906, 0.84033203, 1.0029297, -1.3847656, 0.36108398, -0.86083984, -3.3925781, -2.8183594, -1.2949219, -0.7602539, -2.9199219, 0.47998047, 2.6269531, 1.6484375, -0.109313965, 1.8173828, -1.9599609, 0.44018555, 2.5390625, 0.13378906, -0.890625, 0.70410156, 1.5517578, -2.6699219, -2.59375, 0.5595703, 1.1884766, -0.6328125, -1.5302734, 0.5834961, -0.1977539, 1.2773438, 0.38110352, 1.2373047, 0.68847656, -0.53515625, -0.44360352, 0.37890625, -1.0996094, 3.5175781, -0.71728516, -1.2753906, 2.2949219, -1.65625, -1.2978516, -2.2636719, -0.8964844, -1.3486328, 2.359375, 0.63671875, 0.7548828, -1.7304688, -2.09375, -0.9975586, -1.3300781, -0.24719238, 1.0126953, -1.1503906, 0.045410156, 1.2148438, 2.640625, -0.9482422, -0.11785889, -0.8754883, -0.7001953, 0.875, -0.65625, 1.7587891, 2.2167969, 1.2285156, 0.20837402, 3.0996094, 0.54345703, -0.87353516, 0.9091797, -0.20996094, 0.34594727, -2.1953125, 1.7128906, -0.3449707, 1.2929688, -0.3317871, -1.4941406, 1, 1.3232422, -0.7553711, -3.7128906, -0.93603516]}, "B07VHP3M9L": {"id": "B07VHP3M9L", "original": "Brand: MESMART\nName: Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART\nDescription: \nFeatures: Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires\nWiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required\nSimple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48\u201d, height 2.1cm/0.83\u201d, nice decoration, install it in kitchen or anywhere refers to gas leaking\nFireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use\nPackage Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.\n", "embedding": [-1.8535156, -0.12890625, 2.6894531, 1.0615234, -1.3154297, 2.4199219, -1.0097656, 0.99316406, -0.6772461, 0.5600586, 0.23693848, 0.5151367, 0.069885254, -1.1162109, -0.40722656, -0.44335938, 0.051208496, 0.6147461, 1.2519531, 1.7802734, 3.1308594, 0.61572266, -1.7519531, -0.56591797, 1.78125, 0.38989258, 3.8183594, -1.0869141, -0.9921875, -1.3105469, 0.2631836, 0.08782959, -2.0058594, 1.7734375, -1.4550781, -0.34204102, -0.43969727, -0.18103027, -0.5097656, -1.7480469, -0.27270508, 0.3791504, 0.26489258, -0.8779297, -3.609375, -2.1328125, -0.14733887, -1.0634766, 0.1829834, -0.5151367, -0.77978516, 0.98828125, -1.5410156, 0.17736816, -0.39453125, 0.32299805, 2.5, -0.33203125, 0.44604492, 0.7470703, 1.3759766, 0.75439453, -0.31835938, -0.8598633, -0.031051636, -0.021636963, 0.81933594, -0.78759766, 0.30493164, 1.2412109, -0.50683594, -1.0380859, 0.6875, 0.3503418, -2.2265625, 1.0214844, -1.5927734, 1.2871094, 0.26416016, -1.5615234, 0.3095703, 2.0351562, -1.3173828, -1.5615234, 0.30126953, -2.7851562, -0.2722168, 0.40234375, -1.6074219, -0.003353119, -2.9160156, 3.3105469, -2.4140625, -4.1992188, 2.6308594, -1.2939453, 0.87841797, -0.94091797, -0.21154785, 1.9433594, 0.89990234, -0.8652344, 1.1865234, 2.6679688, -1.5605469, -1.9804688, 1.3896484, 2.1699219, -0.15454102, -0.72753906, 0.39990234, -0.76953125, -0.80078125, -0.029800415, -1.0712891, 0.18774414, 2.4199219, -1.3662109, 4.2617188, -0.059753418, 2.0625, -1.0380859, 1.5712891, 1.4101562, 1.3574219, 0.1895752, -0.82373047, 0.76708984, -1.6142578, -0.16149902, 0.58447266, -0.2175293, 0.55810547, 0.24328613, 0.08251953, -0.28320312, 0.3876953, -2.8945312, -3.7753906, -2.6074219, -3.5292969, -0.123291016, -1.0751953, -0.8769531, -1.6279297, -0.16052246, -1.7832031, 1.7841797, -0.58740234, -0.99560547, 0.42993164, 0.24475098, 1.9550781, -2.4023438, 0.8232422, -0.105407715, -2.2792969, -1.9443359, 2.5507812, 2.1191406, 1.3027344, 0.6557617, -3.1875, 0.3347168, 0.79052734, -4.3632812, -0.2548828, -0.065979004, 0.7792969, 1.8769531, 0.40771484, -0.8730469, 0.44848633, 0.8413086, -0.28051758, -2.1347656, 1.8183594, 0.72802734, -0.4519043, -0.26049805, -3.1074219, 0.44067383, 0.92285156, -2.0136719, -0.5317383, 0.026031494, -0.5991211, -1.9814453, -0.8823242, -2.5898438, -2.546875, 1.1054688, -0.7763672, 2.4824219, -0.42260742, -2.5644531, -2.3183594, 0.5732422, 1.2548828, 1.5146484, 0.19226074, 0.35913086, -1.3945312, 0.38598633, -1.1523438, -0.69091797, 1.0449219, 0.8676758, 0.52978516, 2.4960938, 0.093933105, -1.5712891, 2.140625, -1.1611328, 0.89404297, -0.6953125, 0.24328613, 1.5683594, -0.5878906, 1.1044922, 1.2070312, 1.5126953, 3.2421875, 1.9804688, 0.9277344, 2.171875, -1.1542969, 1.8388672, -1.53125, -4.4179688, 2.5957031, 0.27197266, -1.1796875, -1.9472656, 0.88671875, 3.1992188, 0.12768555, 0.22436523, 1.1601562, 2.9101562, -0.6796875, -0.8076172, -2.8066406, -0.85302734, -1.2158203, -0.12939453, 0.83447266, 0.5932617, 3.0664062, 1.6679688, 1.2363281, 1.0146484, -0.5444336, 1.8369141, -3.3105469, 1.9541016, 1.46875, 0.9868164, -0.019515991, -2.5839844, -0.88623047, 1.3896484, -1.7568359, 2.5917969, 0.9086914, -0.1829834, 1.5146484, 1.4492188, -0.43579102, -0.14111328, 0.42236328, 0.07800293, -0.5107422, 1.6865234, 1.0458984, 0.8383789, 0.5205078, 1.6601562, 1.5488281, -0.10064697, -0.90234375, -1.5888672, -1.7880859, -0.8745117, -0.4819336, 0.95166016, 0.101135254, 0.41455078, -1.5351562, 0.30664062, 3.8222656, 0.6767578, -2.84375, 2.8085938, -0.7739258, 1.3935547, -0.51171875, 0.5698242, -0.060913086, -2.3222656, 2.0332031, 2.90625, -1.7216797, 1.625, 1.2509766, -0.42895508, -1.5859375, 1.3652344, -0.57177734, -0.2529297, 0.69873047, 0.5966797, -1.828125, 1.0039062, -0.61865234, -2.4902344, 0.6269531, -1.2216797, -1.1914062, 1.1962891, 0.013725281, 3.7441406, 1.4619141, -0.46777344, 1.2128906, 1.0322266, 2.7753906, 1.7167969, 0.5332031, 0.08673096, 1.3466797, -1.7011719, 0.4868164, -2.703125, -2.6914062, 0.625, -3.2792969, -2.5058594, 1.6308594, -0.07196045, -1.1171875, 1.6074219, 1.2099609, 1.1582031, 0.6923828, 0.13024902, -1.4433594, -0.78515625, 2.0800781, -1.9658203, 1.578125, 3.6269531, -0.5800781, -3.0566406, -2.2734375, -0.06689453, -0.51904297, 1.6015625, -0.5385742, -1.0117188, -2.0742188, 0.06201172, 0.5991211, 1.2998047, -1.0146484, 0.023773193, -0.57421875, -1.7949219, -0.57470703, -2.5, 1, -1.2744141, -0.5571289, -0.28222656, -1.5498047, 0.6870117, 0.1270752, 1.3349609, 0.35473633, 3.234375, -1.1240234, 0.011405945, -1.4433594, -0.7915039, -2.2578125, -1.2939453, -0.63720703, -1.9580078, -0.27661133, -2.3652344, 1.3935547, 1.703125, 1.3808594, -0.25854492, 1.7480469, -0.106933594, 1.7050781, -0.95458984, 1.3945312, 1.3144531, -0.3762207, 0.42333984, -2.0898438, -1.1455078, -0.56640625, -1.5986328, 0.11175537, -0.28125, 1.3291016, 1.0351562, 2.0683594, 1.2705078, 0.9067383, -2.5175781, 2.2929688, -4.5117188, -0.034942627, 0.43237305, -4.2851562, -0.4411621, -0.5678711, 0.96484375, -0.9746094, 0.5463867, 1.8291016, -0.3347168, 2.1914062, 0.74658203, -1.8632812, 2.1054688, 4.4492188, -0.45532227, -0.2770996, 0.73339844, 0.47045898, -2.5292969, 0.4272461, 1.9384766, 0.6816406, -1.546875, -3.7792969, 1.1210938, 0.9345703, 2.3222656, -0.52734375, -2.1894531, -0.8339844, 1.0878906, 0.4050293, 0.27563477, -0.87841797, 0.8901367, -1.7753906, 0.30664062, 1.3251953, 1.1533203, 2.7207031, -0.16772461, 1.2558594, 1.7216797, 0.4008789, -0.74560547, -1.2353516, -1.140625, -0.43310547, -1.7705078, 0.8955078, 1.5205078, 1.0771484, -0.1763916, -0.6821289, -0.39819336, -1.0742188, 0.20263672, 0.36547852, -0.048919678, 0.3852539, -0.61328125, -0.6411133, 1.9199219, -2.4375, -0.8046875, 0.5839844, -0.62402344, -0.6796875, -1.125, -1.9707031, -2.5058594, 0.9692383, -1.1025391, -0.2631836, -0.6982422, 0.5097656, -3.3691406, -1.8476562, -0.8251953, -0.53515625, 0.5698242, 0.3239746, -1.2558594, -0.23828125, 1.0654297, 0.10864258, -0.8623047, 3.2890625, -0.7089844, -0.33251953, -1.2695312, 1.1044922, 1.2675781, 0.39453125, 0.74560547, 1.4257812, -2.046875, 0.09350586, -2.5742188, -0.6347656, -0.28735352, -0.68896484, 0.5463867, -1.7119141, -0.6069336, 1.3535156, 0.38134766, 0.85546875, 0.99072266, 0.43310547, -0.3828125, -3.9960938, 0.81152344, -0.703125, -3.5078125, 2.0019531, -1.71875, 0.16833496, 0.81152344, -1.1181641, 1.3642578, -2.4960938, 1.2558594, -2.3515625, -2.0488281, 0.21252441, 2.2597656, 0.9975586, -1.2597656, 2.1289062, 0.19946289, -0.34375, 0.7036133, -1.6435547, 0.51220703, 1.9121094, 0.8051758, 1.5800781, 0.3618164, 0.7470703, 1.4658203, 0.20825195, -2.3652344, -0.36987305, -1.1484375, 0.046051025, -1.7939453, 3.2832031, 1.3789062, 0.7207031, -0.54589844, 1.3212891, 0.66015625, -1.3154297, -1.4375, 0.7597656, 0.17602539, 0.37695312, -2.7578125, -0.7084961, -2.3027344, 2.8789062, -0.05203247, -0.33764648, -0.7993164, -0.9160156, -0.34106445, 0.25585938, 2.4472656, 0.28979492, 1.0888672, -0.5625, 0.63134766, 1.7802734, -2.7617188, -0.75146484, -0.98828125, -1.078125, -0.06707764, 0.7753906, -0.52246094, 0.80908203, -0.28149414, -0.6015625, -2.09375, -1.9433594, 2.8105469, 1.4902344, 1.0341797, 0.7753906, -0.20581055, 0.60595703, 1.2519531, 0.54785156, 1.1865234, -1.1552734, -0.5151367, -0.11431885, 2.3535156, -1.4580078, -1.296875, 0.43066406, 0.3215332, 1.9472656, -0.43920898, -0.064819336, -1.5244141, 0.14465332, -0.27954102, 0.72021484, 1.3203125, -1.3964844, 0.12854004, 1.0947266, 0.4650879, 0.26586914, 0.99072266, 2.1347656, 1.4658203, 1.0263672, 0.6591797, 3.6210938, 3.0117188, 0.55566406, 1.7441406, 0.5620117, -1.5927734, 1.9726562, 1.265625, 0.08508301, -2.4160156, -0.07165527, 1.6015625, 1.2001953, 0.515625, 1.3066406, -0.028335571, 0.18933105, 1.2626953, 0.7680664, -0.64160156, 1.1113281, -2.6015625, -0.10845947, 1.7294922, -0.9975586, -1.2285156, -1.1191406, 2.6796875, 0.23828125, 2.09375, 0.7363281, -0.14013672, 0.17565918, -2.6269531, -3.7226562, 0.5229492, -2.8046875, 1.4453125, -0.72998047, -0.37597656, -1.0234375, 2.9082031, 1.7431641, -0.98828125, -0.68066406, 2.4121094, -2.6542969, -0.22790527, -1.1787109, -1.1972656, -0.8051758, 1.3798828, 0.4345703, -1.0244141, 1.0371094, -0.10290527, 2.0976562, -1.9150391, -1.390625, 1.1386719, -0.48046875, -2.4667969, -2.9609375, 1.3476562, 0.105407715, 0.28173828, 0.4543457, 0.6640625, -1.0546875, 2.1035156, 1.2470703, -0.29223633, -0.28759766, 0.77685547, -1.4511719, -2.3359375, -2.5683594, -1.7197266, -0.12536621, 1.34375, -1.3359375, -1.8632812, 1.0273438, -0.5097656, -1.2148438, -1.4072266, 0.8251953, -0.31689453, 1.4238281, -1.6865234, 0.49951172, -1.2773438, -0.6508789, 2.5390625, -2.4648438, -0.7807617, -2.265625, -3.9609375, 1.0126953, 0.32202148, -1.2041016, 0.8286133, 0.19567871, 0.7583008, 3.2128906, 2.0546875, -3.2089844, 1.4482422, -0.98779297, -1.2910156, 1.5419922, 0.55029297, 0.33862305, 0.56591797, -0.021987915, 1.1181641, 0.48608398, 1.2802734, -1.5019531, -0.31176758, 0.38085938, -0.9145508, 1.2246094, -0.89453125, 1.4677734, -1.4394531, 1.6445312, 1.1103516, 0.021575928, -0.23156738, -1.4570312, -3.2890625, 0.82373047, -0.11175537, 1.0478516, 0.24401855, 2.2890625, -2.0859375, 1.7773438, 0.85839844, 2.3085938, 0.3696289, -0.11694336, 0.0082092285, 0.74316406, 1.6542969, 1.0654297, -1.1777344, -2.4785156, -2.3476562, 2.3867188, 4.390625, 0.10449219, -1.8740234, -0.93408203, -2.7949219, 0.0020694733, 0.5786133, 2.34375, 0.77734375, 0.35473633, -0.40454102, 1.8896484, 0.5805664, -0.86083984, 0.97314453, 1.7568359, -0.21582031, -2.6191406, -0.20544434, -0.31298828, 0.13830566, 1.0996094, -1.6933594, -1.4335938, 0.25830078, -2.1621094, -0.42504883, -3.0839844, -0.8432617, 1.4248047, -1.7568359, -2.3867188, 2.5390625, -0.085632324, -1, -0.34204102, 3.640625, -1.3974609, 1.7695312, 0.51953125, -1.7666016, -2.8144531, -0.20178223, -2.171875, -1.4589844, 1.0527344, -1.9628906, 0.99072266, 1.5605469, 0.53515625, -1.4238281, 2.2929688, 1.2011719, 2.3222656, 2.7675781, 2.8535156, 2.3300781, 0.79541016, 0.7836914, 1.5263672, 0.9736328, 2.5664062, -0.3544922, -0.022964478, 2.2851562, 0.07574463, 1.9863281, -1.7138672, 0.36401367, 0.2052002, -1.5136719, -0.15283203, -0.022949219, -1.359375, -0.859375, 1.3818359, -2.0546875, 0.061584473, -4.4140625, 1.1220703, -0.48388672, 0.8071289, -0.35229492, 1.1181641, 0.21655273, -3.3691406, 0.8198242, 2.3105469, -0.8359375, 1.8535156, -1.7939453, 2.5566406, 0.4272461, -0.45581055, -0.39526367, 1.8310547, -0.24206543, -0.42578125, 0.068359375, 0.66748047, -1.7880859, -0.52734375, 0.62060547, -2.4882812, -0.37280273, -0.14294434, -0.10247803, 1.4814453, -1.0039062, 1.0927734, -1.3837891, -1.5361328, -2.2148438, 1.3320312, -0.07550049, -0.067993164, -1.8173828, -1.9013672, -1.4990234, -0.41186523, 0.4104004, -2.03125, 1.7119141, 0.047790527, 1.6523438, 0.24902344, 3.5664062, 0.55322266, 1.0058594, -0.46801758, -2.1679688, -0.13427734, 0.6826172, 2.4179688, -0.12084961, -0.8808594, -0.62646484, 0.21191406, -1.1904297, 0.7583008, 1.6572266, 0.85302734, -1.7460938, 1.7880859, 1.2148438, 1.6210938, -1.4248047, -2.4101562, -0.26660156, 0.016815186, -1.7080078, -1.8212891, -0.5307617, 0.28100586, -0.21862793, -0.85009766, -1.0849609, -1.671875, -0.17883301, 0.7416992, -1.4267578, 0.1104126, 1.0732422, -0.71728516, -1.4736328, 0.59277344, -0.1352539, 0.21496582, -1.1289062, 0.8955078, -0.9770508, -0.2355957, -0.9067383, -0.053741455, -0.5024414, -0.006023407, 0.55566406, 1.5742188, -1.1542969, 1.0175781, 1.8613281, -0.47045898, 1.2783203, -0.31469727, -0.39379883, 1.1533203, -0.013031006, 0.7631836, 0.9760742, -0.028900146, 2.7578125, 0.22387695, -1.0195312, 0.33911133, 2.6640625, 2.2753906, 1.0556641, 0.97998047, -0.33374023, -0.32910156, -0.9584961, -1.4384766, 0.7373047, -2.3808594, 1.1884766, 1.1757812, 1.6386719, 2.8574219, -0.3605957, 1.7910156, -1.203125, 0.10510254, 0.6748047, 0.62597656, 1.1210938, 0.20751953, 0.5307617, -1.2011719, 1.0117188, 4.2890625, -0.27905273, 1.2773438, 1.3164062, -0.78466797, 0.54785156, 0.7529297, -0.94921875, 0.46533203, 2.4609375, -0.6230469, 1.1035156, -1.6259766, -0.6738281, -2.546875, -0.3071289]}, "B07QG6QCLD": {"id": "B07QG6QCLD", "original": "Brand: APG outdoor\nName: APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking\nDescription: This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
Features:
Made of stainless steel for durability.
Mounts to a gas stove and requires no electricity Rust proof emitter guard.
Adjustable safety valve controls gas flow and heating power.
Weighs 320G and comes in a storage bag, convenient to carry.
Specifications:
Material: Stainless steel & Aluminum alloy & Copper
Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
Net Weight: 320g
Package List:
1 * Heater
1 * Canister Stand
1 * Storage Bag
\nFeatures: Note: Propane Tank Need Mapp Adapter to use \uff08product don't contain adapter\uff09\nWeighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)\nPackage List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn't contain gas tank)\nMaterial: Stainless steel & Aluminum alloy & Copper\n", "embedding": [0.25976562, 2.8535156, 1.9697266, 1.8662109, -0.11810303, 2.0722656, 2.1738281, -1.3515625, -0.31323242, 2.1171875, 0.18920898, -0.006061554, 1.6083984, -3.2480469, 1.5595703, 2.2578125, 2.3183594, 1.6132812, 0.59716797, 1.3183594, 1.2285156, 0.08703613, 0.46850586, -1.1796875, 0.40039062, -0.19311523, 3.5605469, -2.4277344, -1.3056641, -2.4257812, -0.024642944, 1.3134766, -0.07702637, 1.2646484, -2.2988281, -1.3603516, -2.9140625, 2.1484375, -2.5761719, -1.2685547, -1.0429688, -2.7597656, 1.0839844, -0.7895508, -0.19628906, -0.2890625, 2.5175781, 0.5854492, 0.9838867, -1.0253906, -0.26049805, 0.6069336, -0.8642578, 1.6386719, -1.9580078, -2.4667969, -0.54589844, -2.8730469, 1.7470703, 1.8476562, 0.12878418, -1.6123047, -1.3339844, 2.3554688, -0.8408203, 0.068847656, -0.24816895, -0.83496094, -1.8662109, 0.1796875, 2.6035156, 0.12585449, 0.6621094, 0.80615234, 0.09490967, -0.22314453, -2.7675781, 0.8935547, 2.7089844, 1.7714844, -0.9765625, 0.58496094, 0.9589844, -0.018829346, -1.7050781, -0.72998047, -0.77490234, 0.14428711, 0.640625, 2.46875, -0.8173828, 2.078125, -2.4765625, -2.4492188, 0.8496094, -0.9277344, 1.3017578, 0.36132812, 1.0986328, 2.4316406, 0.31079102, -0.96484375, 0.15319824, -0.13952637, -2.3359375, -0.5961914, 2.4472656, -0.15698242, -1.7949219, 1.2314453, -2.2714844, -0.88916016, 1.5966797, -1.6708984, -2.296875, -1.1582031, 0.43676758, 0.953125, 3.8457031, 2.875, 3.9492188, -0.16174316, 2.0957031, -2.7753906, 0.9394531, 0.21289062, -0.67089844, -0.11212158, 2.9941406, -2.4492188, 1.1582031, -0.3623047, -0.009986877, -0.14978027, 0.46020508, -1.5566406, -0.1430664, -1.8759766, -3.2128906, 0.078186035, -2.6347656, 0.8222656, 2.171875, -0.6166992, -3.6503906, -0.86572266, -2.9375, 2.8359375, 0.55078125, 1.5224609, 0.86328125, -2.3710938, 0.15563965, -0.43408203, 1.0205078, 2.3007812, 0.44628906, -2.0488281, 3.6875, 2.2324219, 2.4765625, -1.7285156, -1.5126953, -0.48608398, -0.43164062, -1.6015625, 1.3955078, 0.6977539, -1.2734375, 1.0478516, 2.3046875, -2.6347656, 0.4033203, -0.6772461, -0.34594727, -2.3242188, -0.17114258, 0.73828125, 1.2792969, -0.8305664, -3.0488281, -2.3789062, 0.6801758, -0.048217773, 0.8120117, -2.3808594, -2.7949219, -1.4414062, -1.8134766, -0.8881836, -2.6113281, 0.11578369, 0.4404297, 0.047973633, -1.7353516, -3.2207031, -2.5136719, -2.2050781, 0.51660156, 1.3613281, -1.6044922, -1.8183594, -0.50439453, -0.42651367, -4.203125, -3.2207031, -0.017608643, 0.46899414, 0.008583069, 1.5791016, 0.7426758, 0.5, 2.5585938, 0.5522461, -0.34448242, -0.5073242, 2.2421875, 1.2880859, 2.4394531, 1.7265625, -0.29003906, 1.140625, -0.24328613, 0.33398438, -0.26879883, 2.7441406, 0.90771484, 0.54052734, -1.2988281, -3.1660156, 2.2070312, -0.07733154, 0.18164062, 0.4404297, -0.4987793, 3.1015625, -0.4958496, 1.3115234, 0.74658203, -0.92626953, -0.71435547, -1.2128906, -1.390625, -0.5385742, -1.4199219, -0.8276367, 0.12072754, 0.15209961, 0.025772095, 0.3251953, 1.6113281, -1.2636719, -0.953125, -0.37695312, -1.5195312, 1.6875, 0.8618164, 2.9394531, -2.0957031, -2.1484375, 2.1386719, 3.2714844, -0.82910156, 2.0859375, 1.8554688, -0.49023438, 1.7470703, 0.12438965, -2.3183594, 2.3203125, -0.33764648, 2.3164062, 1.8994141, 0.84228516, 2.546875, -0.52734375, -0.8647461, 3.2265625, -0.18139648, -0.25, -0.0546875, -1.1152344, 1.9716797, -2.0097656, -0.4724121, -0.18249512, 1.1318359, 0.17443848, -2.0371094, 0.99902344, 3.6972656, -1.0800781, -3.1132812, 0.6176758, -0.29541016, 0.953125, 3.2792969, 0.049926758, 0.1328125, 1.7734375, 2.1796875, 0.19262695, -2.4746094, 0.70703125, -0.39379883, -1.7138672, 1.2998047, -3.0566406, 1.4755859, 0.6928711, -0.38964844, -0.296875, -3.8359375, -0.484375, -3.4941406, -1.0380859, 3.3964844, -3.4941406, -0.76220703, 2.4804688, -0.9272461, 1.1132812, -0.31030273, -3.4296875, 0.04736328, 0.51416016, -1.3525391, 1.4638672, -1.2714844, -0.61621094, 0.4416504, -1.7705078, 1.5615234, -2.7792969, -2.1425781, -0.89697266, -2.4980469, -1.2695312, 0.95654297, -1.9628906, -0.67822266, -0.84716797, -1.6855469, 0.6142578, -0.27441406, -1.1630859, -0.093566895, 1.3789062, -1.0371094, -1.9550781, 1.3476562, 2.390625, -1.0976562, -3.2382812, -0.75146484, 2.3476562, 0.6381836, 0.7504883, -2.5195312, 0.22546387, -0.6796875, 0.1027832, -0.1986084, -0.23718262, -0.34155273, -2.8769531, 1.59375, -5.5390625, 1.3359375, -0.80810547, 2.0546875, -0.25805664, -1.28125, -2.3867188, -1.109375, 2.6816406, -0.99902344, 4.1289062, 0.80908203, 1.2773438, -1.7148438, -0.71484375, 0.6425781, -1.5273438, -2.6484375, -0.053375244, -2.3300781, -0.9951172, -1.9023438, -2.8984375, 0.20007324, -0.021514893, -1.3222656, -0.4572754, -0.4375, 1.1142578, 0.14172363, -0.9580078, 1.0742188, -0.22814941, 1.0390625, -0.07147217, -1.3271484, -2.1601562, -1.4189453, -0.52441406, -0.08502197, -2.6621094, 1.4853516, 1.1767578, -0.05682373, 2.53125, -0.119628906, 1.7451172, -0.5029297, -4.5, 2.7421875, 3.7324219, 0.42041016, -0.7763672, -0.8642578, -0.3190918, -1.9765625, 0.17333984, 2.9824219, 1.4375, 2.6171875, 0.040161133, -0.33642578, 0.6821289, 2.2929688, -0.4963379, -2.2207031, -0.35424805, 3.5332031, -2.4023438, -1.2119141, 1.8671875, 3.0078125, -4.2539062, 0.17980957, 1.6367188, 0.44506836, 1.8544922, 0.7963867, 0.98583984, 1.8085938, 1.6669922, 1.0361328, 1.2470703, 0.95703125, -2.2304688, -0.2746582, 0.3239746, 1.0517578, 2.1777344, -0.17980957, 0.5175781, 0.61328125, 2.9042969, -0.07940674, -3.7988281, -0.3317871, -1.0976562, 0.9135742, 0.6484375, 2.5058594, 0.26733398, 1.09375, 1.2802734, 1.0263672, 0.8798828, -2.3046875, -0.3947754, 1.4140625, 1.6513672, -1.2021484, -0.7504883, -0.64941406, -1.6503906, -2.3925781, 1.5791016, -1.1328125, 0.31274414, 0.7265625, -2.2050781, -2.1523438, -0.011352539, -0.3310547, -0.90527344, -1.8271484, 1.6982422, -0.53564453, -2.2617188, -0.91015625, -0.41015625, -3.2402344, -0.88916016, 3.9160156, 0.15734863, -0.94873047, 0.7783203, -0.8408203, 1.8623047, 3.3164062, 0.017532349, -2.2226562, -0.40698242, -1.25, -0.105651855, -1.3886719, 0.5673828, 1.1835938, -3.5410156, 1.0273438, -2.0410156, -0.79589844, 2.1484375, -1.4667969, 0.61816406, 1.5390625, 1.4111328, 2.4335938, -0.55371094, 4.2421875, -1.9375, -0.7680664, 2.3300781, -1.2080078, 0.6582031, -1.8134766, -6.2734375, 2.1367188, -1.9492188, 0.86083984, 3.6074219, 0.4338379, 0.17419434, -1.4140625, 0.2076416, -1.3349609, -3.7949219, -0.77001953, 2.3886719, -4.734375, 1.3017578, -0.11590576, -0.57421875, -2.4355469, -2.5527344, -0.5834961, -0.70996094, 0.4248047, 0.017303467, 0.8071289, 0.35498047, -1.3310547, 0.80322266, -0.5317383, 1.4443359, -1.7294922, -0.07086182, 0.22546387, -2.1152344, 4.3945312, 0.46655273, 0.43041992, 0.7685547, 4.7421875, 1.9482422, -1.0839844, 0.28344727, 1.5986328, 2.421875, -0.5683594, -5.015625, 0.80371094, -1.1269531, -1.3574219, -1.3779297, -1.7167969, -0.8774414, -1.1347656, 1.3164062, 1.8408203, 3.2910156, 1.6074219, 0.5390625, -3.046875, 1.7705078, 0.14355469, -2.3515625, -1.7753906, -2.3046875, -2.2871094, -0.58154297, -0.08734131, -1.8125, -1.3427734, -0.8959961, -0.23474121, -1.5849609, 2.6914062, 1.7763672, 3.2910156, 1.6210938, -1.5117188, 1.0048828, -1.4902344, -0.03579712, -0.11218262, 0.72265625, 3.3359375, 1.1650391, 1.8154297, 2.5800781, -3.1425781, -1.2773438, 3.7148438, -1.7480469, -0.7236328, -0.71972656, 2.0078125, -0.9589844, -1.9746094, -0.4345703, -0.20776367, 3.6367188, -2.0859375, 1.0673828, 0.84521484, -0.21557617, -2.5742188, 0.31884766, 0.9663086, 0.7871094, 0.39233398, 0.042999268, 1.3076172, -0.16113281, 0.9716797, -0.87060547, 2.46875, -2.0898438, 0.17712402, -0.53222656, 1.2382812, -0.65966797, -0.46142578, 1.3037109, 0.7402344, 1.0898438, 2.5820312, 0.27124023, -0.05645752, 0.34570312, 2.1621094, 0.26391602, 0.6796875, 0.67285156, -0.11480713, 1.4804688, -0.5654297, -2.5683594, 0.9707031, 1.6259766, 0.7763672, 3.1269531, 0.36914062, -1.3486328, 0.7182617, -2.3964844, -1.640625, -0.57714844, 0.6621094, 0.6323242, -2.0351562, 1.5166016, -0.14050293, 2.6425781, 3.6640625, 0.58203125, 0.671875, 2.6542969, -2.1835938, -0.4501953, 0.9892578, -1.5263672, -1.7548828, -0.6123047, 0.44335938, 1.7412109, 1.6279297, 2.171875, -0.13208008, -2.21875, -1.2333984, -2.7167969, 1.8691406, -2.4199219, -1.2226562, 0.3425293, 3, 1.1044922, -2.1171875, -2.359375, -1.3378906, 1.1523438, 0.2064209, 2.734375, -0.24072266, -2.4082031, -3.7148438, -4.7460938, -1.4228516, 0.7866211, -1.2333984, -0.32861328, -0.35668945, -2.9511719, -1.2490234, 0.06311035, 1.1777344, -1.7333984, 0.60058594, 0.23779297, 0.99072266, -0.6230469, -0.024505615, 0.46313477, 1.8876953, 0.17944336, 1.0400391, -1.3876953, -2.2734375, -2.8476562, -0.46948242, -1.7753906, -0.53125, -0.3852539, -1.1455078, -0.23474121, 5.0039062, 1.6679688, -1.1132812, 2.6835938, -0.7294922, -1.4414062, 1.8671875, -1.5019531, 3.3867188, 0.5126953, -2.625, 0.15661621, 1.8242188, -0.84472656, 0.2553711, 2.0664062, -0.5253906, 1.4492188, 0.31420898, 0.5058594, 0.64990234, -0.85253906, 3.5429688, 2.2597656, -1.2207031, 0.63183594, -2.1425781, -1.3300781, -0.15917969, -0.7446289, -1.2441406, 0.26000977, 0.9511719, 0.83203125, 0.85009766, 1.8134766, -0.5600586, 1.0048828, -3.1367188, 0.30541992, -1.6542969, 2.9550781, 1.3388672, -0.19433594, -3.2734375, -2.9472656, 0.8100586, 1.6865234, -0.3671875, -1.4082031, 0.5913086, -0.50439453, -0.5878906, -1.8974609, 2.3828125, 3.6640625, 0.48706055, -3.0605469, 2.9707031, 2.9746094, 0.8208008, -0.06713867, 0.91845703, -0.115356445, -0.70996094, 2.8847656, 1.2753906, 0.0116119385, -0.19494629, 0.16442871, 1.8242188, -1.7871094, -1.5205078, 1.8525391, -4.1132812, -0.56103516, -0.9355469, -2.2578125, -3.2949219, 1.6816406, 0.5703125, -0.8071289, 2.6679688, 4.1523438, -1.6308594, -0.27490234, 1.7431641, 0.33935547, -0.52734375, -0.2993164, -0.89941406, -0.43041992, 3.5742188, -0.58203125, 2.0996094, 2.5566406, 1.4716797, -0.046417236, 2.2246094, 1.5712891, 0.56103516, 1.8662109, 1.2109375, 2.4121094, -0.47021484, 1.5410156, 1.3291016, 0.3125, 2.2929688, -2.0917969, 1.7148438, -0.5600586, 1.7148438, -1.0986328, -1.7070312, 0.90771484, 0.5986328, -1.671875, -1.3554688, -0.95703125, 0.7363281, -3.3945312, -0.75, -0.082092285, 0.69873047, -1.0527344, 1.6962891, -1.1894531, 0.3618164, -1.4638672, -0.046020508, 2.3632812, -0.46362305, -0.6118164, 0.7216797, 0.61376953, 2.2324219, -1.9042969, 1.9257812, -1.1328125, -1.8808594, 0.34985352, 3.3574219, 1.8974609, 2.2578125, -0.51904297, 1.6386719, 1.4101562, -1.1328125, 1.4873047, 1.6894531, 1.0048828, -0.70703125, 3.4179688, 3.2441406, -0.04232788, 0.92626953, -0.1907959, -0.5366211, -3.5195312, -0.106933594, -1.3564453, -1.5800781, 0.49121094, -2.5527344, 2.2714844, -0.04525757, 1.59375, -3.859375, 1.1494141, 1.1787109, -2.1503906, -1.0029297, 1.3466797, -0.25390625, 2.4824219, 0.8232422, -0.4794922, 0.020553589, 1.3017578, -0.1619873, -1.0283203, -0.9707031, -1.59375, 0.8461914, -1.9375, 1.6738281, -0.056671143, -0.75439453, -0.29052734, 0.4987793, 2.1894531, 1.4150391, 0.21557617, -1.8300781, 1.1308594, -0.3737793, -0.88916016, -1.8486328, -1.3789062, -0.21850586, 0.5649414, -0.26513672, -1.9736328, -0.07080078, 1.3720703, 0.44384766, -4.671875, 0.77685547, 1.2353516, -0.5439453, -0.036743164, 1.5859375, -2.3261719, 0.43115234, -2.1953125, -0.52978516, -1.7832031, -0.052215576, -1.3671875, -0.2614746, 0.8388672, 0.3166504, 2.0449219, -0.4765625, -0.3630371, 0.55810547, 2.4277344, -0.3088379, 0.024124146, -0.7998047, -1.6103516, 0.7993164, 1.8740234, 1.6494141, 0.5371094, 1.40625, -2.7871094, 0.6977539, -2.4453125, 0.46850586, 2.2109375, 2.1289062, 1.7236328, 0.35009766, -2.421875, -2.2167969, -0.2397461, -1.4365234, 1.4853516, 0.8442383, -2.2949219, 0.828125, 0.5415039, 2.8652344, -0.85839844, -1.0449219, 0.08270264, -0.08276367, 1.3505859, -0.020599365, -0.29101562, 3.3378906, -0.080444336, -0.6772461, 1.4677734, 2.7558594, -1.0009766, 2.9199219, -0.38012695, -0.0040512085, -2.9199219, 0.64453125, -2.1191406, 0.19750977, -0.96484375, 1.8154297, 2.5917969, -0.83251953, -0.016220093, -4.3242188, -0.35620117]}, "B07C1KZK5W": {"id": "B07C1KZK5W", "original": "Brand: DOZYANT\nName: DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified\nDescription: \nFeatures: CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel\nCOST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks.\nWEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [0.7519531, 1.8466797, 0.7446289, 0.33325195, -0.91259766, -1.0009766, 0.79052734, 0.35742188, -0.6376953, 2.453125, 2.65625, 0.57373047, 1.4277344, -2.3828125, 0.28686523, -0.8911133, -0.12445068, 0.18322754, 2.453125, 1.2255859, 3.2695312, 0.9746094, 0.4091797, -0.7402344, 0.78125, -0.68896484, 3.3808594, -1.2792969, -1.7871094, -0.4416504, 0.08343506, -0.29125977, 0.04916382, -0.21008301, -0.75878906, -1.1230469, 0.29858398, 0.1340332, -3.4550781, -1.2041016, -2.4550781, 2.3730469, 3.4003906, 0.79589844, -1.9863281, -0.90625, 0.26660156, -0.3876953, 2.1738281, 0.6801758, 0.1895752, 1.3515625, 0.8666992, 0.4375, -1.8349609, 0.64453125, 0.7050781, -4.2148438, 1.1748047, 0.7763672, 1.8388672, 0.80615234, -0.046051025, 0.7260742, 0.9589844, -0.18469238, -2.0722656, -0.49023438, 0.66845703, 0.7792969, -0.47070312, 2.0058594, 0.61816406, -1.6738281, -2.2773438, 1.7568359, -4.625, 1.3164062, 1.9355469, -0.47583008, -0.91064453, 1.2314453, 0.3930664, -0.30639648, -0.6743164, 0.12866211, -1.7753906, 2.2109375, 0.23571777, 1.6855469, -4.6015625, 3.1386719, -1.8212891, -3.3242188, 0.53466797, -0.14257812, 0.5102539, 1.7792969, 2.984375, -0.10632324, -1.0556641, -1.5556641, 0.20996094, 1.7724609, -1.7929688, -0.8833008, -0.8955078, -0.34375, -0.92089844, 0.5102539, -1.1318359, 1.1591797, 2.8183594, -1.7275391, -0.9550781, -3.6328125, 1.8056641, -0.69433594, 2.5058594, 1.6308594, 2.3671875, -0.6923828, 1.2041016, 0.26538086, 2.8164062, 2.0664062, -1.1777344, 0.21203613, 2.1484375, -0.4267578, 0.18115234, -0.6538086, 1.1689453, 0.68652344, 2.0058594, -2.9277344, 0.45629883, -2, -0.3232422, -1.359375, -3.3828125, 0.94140625, 0.36547852, 0.022506714, -3.765625, -0.121154785, -2.1777344, -0.13427734, 0.7993164, -2.1777344, 0.25268555, -2.6777344, -0.8876953, -1.3740234, 2.3457031, 1.7519531, 0.87060547, -1.0429688, 1.2509766, 1.4560547, 0.6098633, 0.14929199, -0.7158203, 2.0507812, 0.10760498, -3.7929688, 2.1347656, 0.30786133, -1.6386719, 0.21008301, -0.48266602, -3.4707031, 1.9560547, -0.08282471, -0.14428711, -1.6787109, 1.6025391, 0.051727295, 1.1552734, 0.9116211, -3.546875, -1.7958984, -0.40600586, -1.8193359, 1.1220703, -1.6757812, -2.3613281, -1.3027344, 0.4399414, -2.140625, -1.1640625, 1.8925781, -0.12792969, 0.9814453, 0.1875, -1.8964844, -2.0800781, -1.4902344, 0.28686523, 2.875, -0.14660645, -1.5234375, 0.8798828, -0.24914551, -1.0556641, -0.81884766, 2.2050781, 1.1601562, -0.3647461, 1.7871094, -1.2880859, 0.28979492, 3.0996094, -1.3271484, -1.6582031, -1.9443359, 1.4716797, 2.0449219, 1.7177734, -0.20178223, -1.7958984, -0.5761719, 1.0439453, 0.99658203, 0.80566406, 1.3017578, -1.5908203, 1.2939453, -1.5839844, -0.67578125, 1.5478516, 2.1191406, -0.19921875, 0.1472168, -0.7451172, 2.3925781, 1.0546875, 0.3557129, 1.765625, 2.0097656, 1.9316406, 0.20922852, -1.90625, -1.265625, -1.9013672, 0.5551758, -1.3525391, 1.6708984, 1.9423828, -0.7910156, -0.24963379, -0.28173828, -2.2832031, -2.3359375, -1.625, -0.2310791, -0.26245117, 1.5458984, -0.2244873, -1.1376953, 2.3339844, -0.3881836, 0.7011719, -0.028427124, 0.9555664, 1.4306641, 2.2167969, -2.5585938, -0.04446411, 1.4111328, -0.27514648, 3.2988281, 1.3564453, -2.265625, -0.4152832, 1.9882812, -2.1757812, 1.7314453, 0.007095337, 0.011230469, 3.0117188, -1.2714844, 0.9692383, -2.6933594, 1.3017578, 1.2548828, 1.4755859, -0.1083374, -2.6503906, 0.086242676, 3.1933594, 0.26635742, -1.3320312, 1.8994141, 2.1914062, 2.7011719, 1.2929688, -0.6816406, 0.3857422, -0.2614746, -0.4489746, 0.7089844, -3.0253906, 0.25, 2.7480469, -0.051696777, -0.5527344, -0.7529297, 0.78808594, 0.90478516, -0.5395508, -0.3461914, -2.1582031, -0.79052734, -2.1757812, -2.0683594, 0.79541016, -1.7294922, -0.8676758, 2.0292969, -0.52783203, 0.3461914, 1.2714844, -0.29907227, 0.08709717, 1.1572266, 0.07183838, 0.3642578, 2.6113281, 0.011436462, 1.5595703, -0.5961914, 1.7216797, -1.9541016, -1.1142578, 1.2373047, -0.4416504, -3.125, 0.76660156, -1.8212891, -1.0351562, -0.8457031, 1.9658203, 3.1445312, 0.95166016, -0.1026001, -2.3789062, 0.65283203, -0.2980957, -2.7675781, 0.06036377, 2.046875, -2.0371094, -3.4863281, 0.6484375, 0.0060310364, -0.6352539, 2.7421875, -2.375, 1.0439453, 1.4570312, -0.44848633, -0.5566406, 1.0410156, -1.2060547, -1.6992188, 1.1298828, -3.6191406, 0.6660156, -0.89990234, 0.08325195, -0.8833008, -0.94140625, -0.92089844, -0.5541992, 1.15625, -0.90625, 1.2988281, -0.32641602, 1.9443359, 1.0263672, -1.1542969, 1.4902344, -1.0615234, -3.4335938, -0.88623047, -0.9355469, -0.7416992, 0.92089844, -3.9960938, 0.6088867, -0.7270508, 0.12438965, 0.9082031, -0.29492188, -0.4465332, -0.71777344, 2.2148438, -0.50878906, -0.21911621, 1.5097656, 0.1459961, -1.2001953, 1.3398438, 1.046875, -1.4921875, -1.1738281, 0.8725586, 0.068359375, -0.086364746, -1.9355469, 0.57470703, 0.56152344, 0.4033203, -0.10870361, -3.0527344, -0.54833984, 2.4082031, -1.09375, 2.1132812, -0.30688477, -0.6381836, -4.09375, -0.9692383, 3.1289062, 1.0605469, 3.9960938, 0.2709961, 1.5117188, -0.60498047, 1.1279297, -1.6943359, -0.56103516, -0.79785156, 2.2695312, -2.7539062, -0.42822266, -1.8574219, 2.2773438, -3.1171875, 0.3552246, 0.9243164, -0.38891602, 2.828125, -0.44726562, -0.38476562, -0.18615723, 1.40625, 1.234375, 1.4404297, 0.77441406, 0.65966797, 1.4599609, -0.03427124, -0.8701172, 0.26879883, 0.63378906, 0.9794922, 1.4697266, 0.76171875, -0.5498047, -2.078125, 0.0758667, -0.0993042, -0.5161133, 1.2998047, 1.1337891, -0.059631348, 1.5458984, -0.85009766, 0.60498047, 1.5068359, -0.48095703, -1.0302734, 1.2460938, 1.4931641, -1.0664062, 0.11627197, -0.31176758, -0.7709961, -0.6640625, 0.08001709, 2.296875, 1.6142578, -0.09307861, -0.7241211, 0.58154297, -1.1416016, 0.49072266, 0.5419922, 0.86572266, -0.99902344, -0.77685547, -1.7890625, -2.0996094, -1.4638672, -3.4414062, -1.1943359, 1.921875, 1.8994141, -0.58447266, 0.96240234, 0.11798096, 2.9824219, 1.9248047, -1.7099609, -1.3759766, -1.8720703, -1.2236328, 0.6459961, -0.47143555, 1.9130859, 1.4560547, -3.5917969, -1.5664062, 0.1418457, 0.5961914, -0.79785156, 0.28735352, -0.96533203, -2.3417969, -0.8574219, 1.6591797, -0.5053711, 2.453125, -0.5083008, -0.7211914, 1.1708984, -2.203125, -0.4169922, 0.45629883, -4.0390625, 0.16186523, -2.0117188, 1.6894531, 2.8515625, -0.13977051, -0.9873047, 0.41235352, 2.0664062, -3.390625, -0.88623047, -1.7998047, 1.8505859, -2.4277344, 1.1923828, 2.7929688, 0.87841797, -1.4091797, -1.4902344, 0.3857422, -1.4667969, -1.1669922, -0.7089844, -1.2324219, 1.1298828, -0.24487305, 1.1972656, -3.1835938, 1.0341797, 2.1875, -1.1328125, -0.6660156, -1.5390625, 1.4052734, -0.20336914, 0.42016602, -0.036987305, 3.4375, 2.0722656, -1.0966797, 0.21325684, -0.49414062, 3.3027344, -0.3034668, -2.0371094, 0.0770874, -0.95996094, 0.3972168, 0.33789062, -0.84228516, -0.7207031, -0.5410156, 1.2998047, 1.2207031, 1.375, 1.9101562, -0.14624023, -2.4707031, 0.0015382767, 1.3457031, -2.5175781, -1.4707031, -0.33422852, -0.87402344, -1.0820312, -0.32470703, -1.7792969, -0.095214844, -0.072143555, -0.20166016, -0.94628906, 1.1972656, 1.1035156, 0.99072266, 0.03643799, -1.3515625, -1.1445312, -0.27148438, 2.421875, -0.13134766, -0.69140625, -0.8569336, -1.1367188, 1.1171875, 2.2539062, 0.5629883, -0.49145508, 0.0982666, 0.00028395653, -0.55126953, -0.47607422, 1.8623047, -1.3535156, -2.078125, -1.4277344, -1.9042969, 3.8847656, -2.3886719, 0.62109375, -0.032165527, -1.2167969, -2.3417969, 1.6015625, 2.4414062, 0.08892822, 0.84765625, -0.10858154, 2.375, 1.8671875, 0.5473633, 2.7265625, 0.66796875, -0.7167969, -0.58691406, -0.93359375, 1.6806641, 0.21984863, 1.4833984, 0.5991211, 0.35766602, 2.6679688, 0.8364258, 0.7182617, -0.12200928, 1.8486328, 0.70703125, 0.34692383, -1.7871094, 0.19909668, -2.7207031, 3.5097656, -2.1601562, -2.4882812, 0.6791992, 1.9931641, 0.5673828, 1.4580078, 0.2763672, -0.091552734, -1.9912109, -2.5859375, -1.4628906, -0.011444092, -0.1459961, 0.1965332, -1.1708984, 0.9370117, 1.7792969, 2.0546875, 2.5078125, 1.2236328, 0.7631836, -1.1171875, -1.1347656, -1.9541016, -1.2529297, -1.4345703, -3.3828125, 0.52197266, -0.9199219, 2.9335938, 0.9194336, 1.1044922, -0.13574219, -1.1826172, -1.1591797, 1.2167969, 1.6992188, -1.6757812, -1.3847656, 3.1503906, 1.3164062, -1.5029297, -1.8945312, -0.73339844, -0.78808594, 0.66845703, 2.1835938, 1.1152344, -0.9711914, -0.4868164, -1.9609375, -4.859375, -1.5478516, 1.0410156, 0.8979492, -0.4091797, -1.2734375, -1.0927734, -0.5966797, -1.3759766, -1.1699219, -1.2373047, 1.1123047, -1.2783203, -0.4025879, 1.015625, 0.26538086, -0.021514893, 0.4165039, -0.8911133, -2.3339844, -0.18444824, -2.3847656, -3.4804688, 0.107543945, -2.3964844, -0.9785156, 0.76660156, -0.83496094, 0.79589844, 2.5097656, 1.1972656, -1.8847656, 3.25, -1.6708984, 1.3076172, 0.20349121, -2.2929688, 0.97216797, 0.9609375, -0.21350098, 0.2854004, 2.9863281, 4.5703125, -1.9375, 0.24169922, -0.47705078, -0.038513184, 0.054901123, 0.86376953, 0.62158203, 0.25732422, 1.0107422, 2.625, 0.050842285, -1.0712891, -2.9472656, 0.2590332, 0.060058594, -1.7480469, -0.15942383, 0.48120117, 0.67529297, 1.2421875, -0.59375, 0.4987793, -0.15539551, -0.21520996, -1.3642578, 0.43823242, -1.5664062, 1.5693359, 1.3447266, -1.9833984, -4.9414062, -0.6040039, 3.1777344, 2.375, -1.1933594, 1.0888672, 0.066467285, -0.81396484, -0.28344727, -0.3400879, 2.1367188, 0.8051758, 0.9916992, -1.5136719, -1.1748047, 1.7998047, -2.5507812, 0.0040512085, 0.3137207, -0.9921875, -0.67822266, 0.76464844, 2.1835938, -1.5498047, 0.28051758, -0.65966797, -1.2929688, -2.3769531, -1.0410156, 0.66308594, -3.5996094, 1.9863281, 0.84277344, -2.9804688, -2.6738281, 2.5976562, -1.4482422, 0.8027344, 1.5126953, 2.4121094, -1.6533203, -2.5683594, 0.35717773, 0.2890625, -0.1361084, 0.26171875, -2.3300781, 0.59375, 1.9199219, -1.0976562, 1.7402344, 1.1748047, 1.4052734, -0.8544922, -1.3964844, 1.0019531, 1.9199219, 0.875, 3.6230469, 2.6777344, 0.18652344, 1.0029297, 1.2607422, 1.6279297, 2.7929688, -2.5332031, 0.8701172, 1.5566406, -0.3544922, 1.3017578, -1.6494141, -0.14880371, 0.41625977, -0.56396484, -1.2578125, 1.4306641, 3.703125, -2.3222656, -0.66503906, -2.0859375, -1.0537109, -1.4003906, 0.71728516, -0.92089844, -0.6699219, 0.4794922, 1.5527344, 0.8876953, 2.0566406, -0.6616211, 1.3808594, -1.7685547, 1.9570312, 0.6479492, -0.5517578, -2.9003906, -0.8413086, 0.4104004, 2.0449219, 0.57421875, -0.7441406, 1.5556641, 1.4072266, -0.48339844, 0.83154297, 1.2265625, -0.5708008, 0.50683594, -1.7050781, 1.6220703, 4.34375, -0.7265625, 2.3417969, 0.6660156, -0.65478516, -2.2695312, 0.23083496, 0.14343262, -0.6616211, -0.43969727, -2.5761719, 0.7104492, -2.7089844, 0.09674072, -2.6132812, -1.5791016, 0.14489746, -2.0898438, 0.43798828, -0.8354492, -0.80078125, 2.09375, 2.0195312, -0.99853516, 0.7373047, 1.8720703, 1.3935547, 0.78515625, -1.0859375, -0.48754883, -0.2565918, -1.1533203, 3.8496094, -0.7573242, -0.6455078, -0.5605469, 3.40625, 0.6645508, 0.34936523, 1.2988281, -0.71972656, 1.7939453, 0.85839844, -0.5175781, -0.7216797, -0.98291016, -0.1842041, -0.01890564, -2.2910156, 0.3388672, -0.09710693, 0.82421875, 1.7353516, -1.9746094, -0.23278809, 1.3066406, -0.8701172, 1.5712891, 1.7802734, -1.5302734, -0.671875, 1.2802734, 1.4648438, -3.2695312, 1.9794922, -0.060424805, -0.30126953, -1.8466797, -1.7548828, -0.9770508, -0.26220703, -0.81591797, -0.94628906, 0.27148438, -0.54345703, -0.5595703, 0.7109375, -1.7197266, 1.9033203, 2.6191406, 0.26733398, 1.2695312, -0.3942871, -0.60058594, 1.8164062, -0.88964844, 0.11682129, 1.1669922, 1.4941406, 0.45922852, 0.51171875, -2.0410156, -3.0585938, -1.6386719, -2.4160156, -0.18127441, 0.40478516, -2.0644531, 1.0078125, 1.3925781, 2.2988281, -0.44848633, -0.70214844, -0.5517578, 1.3984375, 2.1640625, -0.9082031, 0.76708984, -0.033111572, 0.30615234, 1.9355469, 4.6445312, 3.3007812, -1.5341797, -0.74609375, 1.1796875, -1.6416016, -2.1328125, -0.6455078, -0.2241211, -0.4650879, 1.4882812, 2.6621094, 2.2207031, 0.34838867, -1.1796875, -1.0087891, 0.5595703]}, "B072559N4L": {"id": "B072559N4L", "original": "Brand: LOOCH\nName: LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch\nDescription:

Each set has 6 of the highest quality grill mats that makes grilling anything easy!

Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

-Veggies
-Shrimp
-Fish
-Bacon
-Pizza
-Pancakes
-Eggs
-Anything else you want to put on the grill!

BBQ Grill Mats Size: 15.75\" x 13\"

\nFeatures: 100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill!\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit!\nSECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!\n", "embedding": [-1.0332031, 1.1376953, 1.5283203, -1.3466797, 0.6010742, -0.017044067, 1.0390625, -0.6074219, -0.48876953, 1.2910156, -0.48461914, -0.6982422, 0.9091797, -3.2832031, 0.85546875, -1.3613281, 0.41601562, 2.4921875, 2.6269531, 0.6669922, 0.44067383, -0.6870117, 0.6855469, -2.3007812, 1.3681641, 1.4287109, 3.03125, -0.40527344, 0.029571533, -0.24633789, 1.8203125, 1.3740234, 0.09979248, 1.90625, -3.8242188, -2.0488281, -0.56591797, 3.5488281, -1.109375, -0.8364258, -1.5341797, -3.1015625, 1.4511719, 2.8769531, -3.0253906, -0.5888672, -0.7807617, 2.359375, -0.76464844, -2.2539062, 3.1484375, -0.0028190613, 2.3085938, -0.029724121, -1.9130859, 1.7890625, -0.70654297, -1.8076172, 0.49267578, 0.06768799, -0.018585205, -0.54345703, -1.9326172, 1.1699219, -1.4638672, -1.8955078, 0.016281128, -3.0273438, 0.38354492, -1.4589844, -0.18688965, -0.66845703, -0.07745361, 0.22680664, -0.90283203, 0.86865234, -0.66796875, -0.7006836, 0.32348633, -1.9404297, 0.74316406, 3.0644531, 0.38061523, 0.18127441, 0.21862793, -1.5722656, -3.0039062, -0.13513184, 2.1445312, 0.39575195, -0.21252441, 3.1601562, -1.3632812, -4.3476562, -0.1784668, -3.0527344, 0.5576172, -0.8901367, -1.4140625, 1.6640625, -1.4882812, 0.059509277, 0.18054199, 1.3144531, -2.6933594, -2.4179688, 2.2148438, 0.38623047, 0.5708008, -0.015396118, 0.22387695, 0.020935059, 0.5053711, 1.0761719, 1.8525391, 2.0644531, -0.9189453, -0.004272461, 1.0800781, 1.3291016, 4.0390625, 1.1787109, 0.049468994, -2.0722656, 1.5224609, -0.46606445, -0.34521484, 2.4453125, 1.8144531, -1.9570312, -0.9638672, -1.4892578, -0.30981445, -1.1308594, -2.1992188, -1.5058594, -0.39672852, -0.25854492, -1.8496094, 1.4140625, 0.35961914, -1.6914062, 1.9365234, -0.84375, -2.7539062, -0.5649414, -2.2148438, 3.6933594, -1.2431641, -2.2988281, 0.48632812, -1.3154297, 2.4003906, -1.8759766, 1.3525391, -0.78125, 1.1699219, 0.5473633, 0.7573242, 1.2402344, 0.2619629, -1.9023438, -2.1425781, 0.22375488, 0.68896484, -3.2089844, -1.0322266, 1.6445312, -0.21459961, 2.6308594, -0.6010742, -2.2402344, 1.703125, -0.38623047, 0.09362793, -1.6259766, 0.1973877, 3.4042969, -1.0117188, -1.5478516, 0.90625, -3.2636719, -0.5390625, 2.9316406, -0.7871094, -0.47827148, 0.69873047, -0.8251953, 0.5722656, -1.1933594, 0.27416992, 2.2285156, -0.5283203, 0.37036133, -2.7519531, -0.9091797, 0.82714844, -2.1523438, 1.9296875, 0.13171387, -0.33398438, -1.0097656, -0.28833008, -0.44848633, -2.1699219, -2.6347656, -2.0019531, 1.4980469, 1.8320312, 0.41870117, 0.13708496, -1.0595703, 2.1542969, 2.34375, -1.4453125, -2.0917969, 0.16357422, 0.68847656, 1.3007812, 2.3613281, -0.5263672, -0.51416016, -1.0712891, 3.4921875, -1.4335938, 1.2441406, -0.32861328, 0.5126953, -0.2421875, -0.50634766, 1.5507812, -0.11413574, 0.40429688, 0.30517578, -0.18225098, 2.0644531, 2.3613281, -1.6074219, -1.09375, -0.25170898, -0.54785156, -1.15625, -1.6171875, -1.8662109, -1.1455078, -0.42260742, -0.45166016, 2.203125, 1.9697266, -2.1660156, -2.0644531, 4.2070312, 1.5742188, 0.08569336, -0.37939453, 0.30322266, 0.36572266, -0.72802734, -2.3085938, 0.47265625, -0.9272461, -0.091308594, 0.1595459, 2.5625, 1.0869141, -0.2668457, 1.9736328, -0.54003906, -2.1289062, -0.6459961, -0.28686523, -0.77685547, 0.5908203, -1.2734375, 1.1972656, -0.98095703, -2.1738281, 0.68066406, 0.7680664, 0.81347656, -0.58447266, 4.3632812, 1.8212891, -2.2988281, -4.390625, 0.6171875, -3.2617188, -1.5302734, 1.0683594, 0.6220703, 3.7753906, 0.7807617, -1.4492188, 2.8144531, -1.2753906, 0.06817627, 1.3066406, -1.671875, -2.2558594, -0.20715332, -0.3774414, 3.8144531, -0.5698242, 1.8583984, -1.3007812, -0.20776367, 2.0117188, -2.4414062, -0.63964844, 2.1054688, 0.005317688, 0.096069336, 1.7226562, 1.6992188, -2.2226562, -0.9375, 1.3994141, -1.2763672, 0.20507812, -2.0644531, -1.3583984, -0.6484375, -0.86328125, -2.4609375, 0.12487793, 1.8193359, -0.27392578, 0.52001953, -0.1619873, -0.36743164, 0.4814453, -1.2802734, 1.0390625, 0.09698486, -1.46875, -2.1894531, -2.6542969, 0.31518555, -1.2373047, 0.49389648, -1.0117188, 1.1064453, -1.7919922, 0.7397461, -1.7177734, -2.5117188, -1.9130859, -1.6347656, -0.24938965, 2.1367188, -1.0205078, 0.34643555, 0.7963867, -4.5273438, 0.46069336, 0.64501953, 0.13781738, 0.8881836, -3.1835938, -0.88916016, -0.15039062, -0.19726562, 0.22351074, -0.23815918, -0.3256836, 2.1523438, -2.3886719, -2.7089844, 1.3896484, -0.1829834, -0.107299805, -2.1484375, 0.82470703, -1.8457031, -0.52441406, -1.34375, 1.0390625, 2.7734375, -0.98876953, 0.70410156, 0.4934082, -0.8041992, 0.021499634, 1.3173828, -1.3056641, -2.2109375, 0.044128418, -2.1054688, -0.58984375, -2.7304688, 0.23339844, -2.0429688, 0.28735352, -1.1865234, 2.9726562, -0.35913086, 3.6621094, -2.6914062, -1.0986328, -0.35473633, 0.97558594, -0.8310547, 0.8959961, -0.35864258, 0.11694336, -0.67041016, -2.8964844, -0.9614258, 1.6416016, -0.5229492, 0.8178711, 2.1347656, 0.54785156, -1.2626953, 0.34350586, -0.97509766, 0.32495117, -1.0292969, -1.6005859, -0.22888184, 0.125, -0.8125, -1.5664062, -2.0800781, 3.9160156, 0.085632324, 1.3212891, 0.38476562, -0.4560547, 4.4179688, 1.7148438, 0.4033203, 0.5415039, 1.1152344, 0.86328125, -2.0820312, -1.4892578, 0.93066406, 1.4794922, -1.6015625, 1.5693359, 0.45361328, 1.8173828, 0.52978516, 0.19812012, 0.66748047, -1.1435547, -0.5942383, 3.8808594, -0.91748047, -0.78027344, -1.359375, 0.52441406, -0.37841797, 2.0292969, 3.171875, 2.3457031, 1.6210938, 0.6538086, 1.2666016, 0.23571777, -2.9609375, 0.93359375, 1.5390625, 0.9355469, -0.17736816, 2.1132812, -0.026916504, -0.061157227, 2.9453125, -0.29125977, -0.3083496, -1.5791016, -0.10272217, 2.8496094, -0.43847656, 0.18688965, -0.8276367, -1.0488281, -0.59033203, -1.1923828, 1.328125, -2.4628906, -2.9746094, 1.7324219, -0.8178711, -3.1503906, 1.4208984, 4.125, -1.4423828, -0.9614258, -1.0976562, 3.1210938, -0.98779297, -1.0224609, -0.76220703, 2.609375, 0.018737793, 1.8476562, -0.5961914, -0.5571289, 1.1669922, -2.09375, 1.4667969, 0.86279297, -2.7675781, -2.421875, -2.0234375, 0.35375977, -0.02279663, -0.62402344, 0.5439453, 0.54541016, -1.7089844, 0.7685547, -1.4501953, 0.2298584, -1.046875, -2.3320312, -0.70947266, 1.0322266, 1.0927734, -0.23522949, -0.049621582, 4.3320312, 1.3183594, -2.1855469, 0.99609375, -2.6933594, 0.074157715, -0.9433594, -2.7539062, 0.46118164, 0.56640625, -1.5302734, 4.6914062, 0.90527344, 1.2314453, 3.2089844, -0.59716797, -0.99072266, 1.0097656, -2.2773438, -0.3083496, -0.87597656, 0.35864258, 3.0058594, 2.0703125, -0.25073242, -0.8823242, -1.0517578, -1.09375, 0.78271484, -0.6308594, -0.1887207, -0.47973633, -2.40625, -0.16125488, -0.45117188, 1.4570312, -0.90625, -0.027908325, 0.47851562, 1.5585938, 2.9199219, -1.6191406, 2.125, 0.7705078, -0.41186523, -0.6333008, 0.96484375, -0.6767578, 1.1015625, 3.375, -0.6245117, -1.4628906, -0.36669922, 0.4790039, 1.8867188, -0.99560547, -2.2910156, 0.54248047, -2.0195312, 0.9375, 0.21020508, 1.5986328, 1.2001953, -1.4453125, -0.59521484, 0.87402344, 0.70996094, -2.1386719, -1.8613281, 0.32226562, -0.71191406, -0.82910156, -1.03125, -2.2246094, 2.3925781, -1.9287109, 0.54296875, -1.2402344, 1.9052734, -0.28222656, 0.056152344, 4.9609375, -2.8554688, -0.7006836, 1.8710938, -3.5097656, -0.70947266, -1.4765625, -0.21057129, -2.7617188, 1.4472656, 1.9423828, -0.5390625, -1.1982422, -0.6567383, 1.125, -1.859375, -2.5800781, 0.49731445, -1.6816406, 0.14294434, 0.7548828, -0.7265625, 3.4785156, -1.5859375, 2.0605469, 1.9638672, -0.65722656, 0.27441406, 0.7890625, -0.40942383, 0.07043457, 0.67578125, 1.2226562, 0.9980469, -0.8178711, -0.76660156, 0.8041992, 2.0097656, -3.0644531, 1.0976562, 0.61572266, 2.2128906, -1.2050781, -0.9658203, 2.5390625, 2.1503906, -0.80029297, 1.9033203, 0.6357422, -1.5654297, 1.6220703, 1.7275391, -1.6191406, -0.29638672, -0.26904297, -1.203125, 2.0566406, -1.5341797, -2.6132812, -0.31323242, 0.04107666, 0.26831055, 0.34448242, -0.4243164, 0.86816406, 0.42993164, -0.6899414, -0.73291016, -2.3242188, -1.5820312, 1.2841797, -1.3662109, 0.86083984, 0.11645508, 0.1508789, 4.2851562, -1.1318359, -1.0400391, 1.6933594, 0.17102051, 0.31469727, 0.7084961, -2.3847656, -2.2363281, -1.3427734, -1.4189453, 1.0820312, 2.5136719, -0.14123535, 2.6074219, -2.7832031, 2.0371094, -3.25, 2.4453125, -2.7363281, 0.24353027, 4.3867188, -4.453125, -2.0371094, -1.515625, 2.5703125, 1.0693359, 0.7402344, 1.71875, -2.46875, -1.7490234, 0.9448242, -1.3398438, -1.5966797, -0.55371094, -0.26098633, 0.9165039, -0.5029297, -1.0546875, -0.9194336, -0.1307373, 0.80810547, 0.16467285, 0.40942383, 0.07977295, -0.72509766, -1.1601562, -1.6992188, 0.21154785, 0.39526367, 0.5883789, 0.20788574, 3.6992188, -1.2548828, -2.4023438, 0.6713867, -0.13110352, -2.2753906, -1.6865234, 0.4128418, 0.40576172, 0.21276855, 0.5229492, -0.2175293, -0.63720703, 3.1054688, -1.3037109, 0.8417969, 1.0068359, -0.5253906, -1.0234375, -0.45922852, -3.8964844, 0.6982422, -3.6621094, 1.4394531, 0.74316406, -2.8046875, 1.0947266, 0.7915039, -1.3710938, -0.9067383, 0.06329346, 1.1455078, 0.37768555, 1.28125, 0.82666016, -0.39453125, -2.609375, -2.3066406, 0.36279297, -0.7192383, -1.6904297, -1.1005859, 0.5131836, 2.5449219, -0.63671875, 1.6464844, 0.015823364, 0.6777344, -0.9189453, 0.86621094, 0.20458984, 0.3972168, 0.051818848, 0.55078125, -1.0595703, -1.4951172, 1.9892578, -0.3244629, -0.52197266, 3.1679688, -1.8222656, -2.9179688, -0.69970703, 0.28759766, 1.1337891, 1.9658203, 1.5039062, -0.3479004, -0.98046875, 0.69384766, -1.8925781, 2.15625, 1.1582031, 3.546875, -1.6484375, 4.109375, -2.0507812, -4.0664062, 1.453125, -0.117126465, -0.7807617, -0.6699219, -1.6152344, -0.67285156, -0.12451172, -0.69921875, -1.4335938, 0.83984375, -1.1767578, 3.0820312, -0.42163086, 1.2714844, -0.49536133, 2.8828125, 0.6777344, 2.09375, 2.5078125, 0.54541016, -2.0039062, -0.41430664, -0.1352539, 0.85839844, 1.09375, -0.6225586, -0.71728516, -0.2487793, -1.1298828, -1.2167969, 1.3027344, 1.8066406, 1.3212891, 0.31567383, 1.71875, 4.0507812, 1.7548828, 2.734375, 0.68310547, 2.6914062, 0.49023438, 0.7495117, 0.18786621, 3.1230469, 0.34814453, 0.89697266, -0.10205078, 2.0039062, 0.32788086, -0.4091797, 0.4050293, 1.5332031, -0.44506836, -0.92041016, 3.7226562, 1.0214844, 0.3881836, -0.26513672, 0.9794922, -3.2421875, -0.1517334, -1.0654297, 0.2685547, 3.53125, 1.0195312, 0.79345703, 1.4541016, 1.4267578, 2.140625, -2.3066406, -1.0146484, 1.1494141, -0.42382812, -2.0351562, 1.7724609, 0.88671875, 2.4433594, 1.4462891, 0.5253906, 1.5195312, 1.0634766, 0.8745117, 0.29003906, 0.5102539, -0.5307617, 2.4726562, -2.2871094, -1.7910156, -1.6933594, 0.8569336, -2.1269531, -1.1875, -0.1104126, 1.9892578, 2.4589844, -0.29833984, -4.5429688, 0.41479492, 0.5307617, 1.8505859, -2.7441406, 0.28466797, 0.023239136, -3.1347656, -1.9287109, 0.34960938, 2.1835938, 0.26879883, 0.546875, -1.3535156, 1.1083984, 1.7109375, 2.4433594, 1.1201172, 0.3642578, -1.2011719, 1.9658203, -0.13024902, 4.5976562, 2.2832031, 3.484375, 0.8901367, 0.7475586, 3.0839844, 0.19042969, 0.9628906, 1.2841797, -0.77685547, -0.78125, -0.032348633, -0.97558594, 0.63964844, -1.6318359, -2.1914062, 0.05899048, -0.32104492, -1.3271484, 0.44067383, 0.9638672, 1.8769531, 1.8388672, 0.12658691, -1.3193359, 1.8984375, 2.4355469, -0.7705078, -0.45751953, -0.14318848, 0.49389648, -0.7451172, -2.1738281, 1.0751953, 1.1845703, 1.0703125, -1.7304688, 0.85839844, -0.7714844, -0.34204102, 0.14794922, 0.9633789, -2.0058594, -2.0527344, 1.2236328, 0.72216797, 2.2539062, 2.3964844, -0.9951172, -1.8300781, 0.40600586, -1.7265625, -1.3525391, -0.8833008, -2.6796875, 0.37109375, 4.6835938, 0.8071289, 0.46606445, -1.9902344, -2.1777344, 1.1132812, -1.5625, 2.3925781, 0.3474121, -0.6616211, 0.46191406, -3.5546875, 1.6376953, 0.083740234, -2.2695312, -0.4104004, -0.6074219, 0.38427734, -0.7895508, 1.0947266, 1.640625, 0.39111328, -0.2878418, 3.0292969, 3.9863281, 1.4140625, 1.5625, 2.0273438, 1.2333984, -3.265625, -0.17578125, -0.8417969, 1.5908203, 1.4492188, -0.5439453, -1.0361328, -1.1845703, -0.3544922, -0.90478516, -1.09375]}, "B07C2KCQXX": {"id": "B07C2KCQXX", "original": "Brand: Cuisinart\nName: Cuisinart CGG-750 Portable, Venture Gas Grill, Red\nDescription: \nFeatures: 154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\n9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control.\nCOMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nPROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure.\nLARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.\n", "embedding": [-2.6347656, 1.5166016, 2.7617188, -0.09350586, -1.1591797, 0.42456055, 0.9511719, -2, -0.6542969, 1.9091797, 1.1953125, -0.56591797, 0.08782959, -2.7265625, 1.0957031, 1.0410156, 2.2480469, 0.62646484, -0.3791504, 0.72998047, 1.6191406, 0.99658203, 2.1484375, -0.52197266, 0.59277344, 1.703125, 3.8496094, -3.2148438, -0.3173828, -1.3154297, 2.2539062, 0.004501343, 1.2470703, 1.59375, -2.625, -2.03125, -1.3779297, 1.5322266, -1.0126953, -0.09686279, -0.022857666, 0.2175293, 1.7597656, 0.036193848, -3.1738281, -0.51904297, 1.0400391, 2.1621094, -0.18261719, -0.53564453, 2.484375, 0.47314453, 0.5419922, 1.0419922, -1.4072266, 2.8710938, -0.49414062, -1.7880859, 1.2978516, -0.16369629, 1.2626953, -0.63916016, -1.6728516, 0.31103516, -1.3466797, -2.0351562, -1.0722656, 1.5566406, 0.63671875, 0.8378906, 3.0332031, -0.6777344, -1.1748047, 1.0664062, -0.43530273, -1.3574219, -1.328125, 2.5839844, 0.4411621, 0.4416504, -1.4882812, 2.0898438, 1.1025391, -2.0605469, -0.44970703, 0.3088379, -0.5004883, -0.5888672, 1.5771484, 0.9667969, -0.1541748, 3.7988281, -3.3007812, -3.4003906, 0.9121094, -1.2255859, 0.21044922, 2.1972656, 0.06951904, 1.5644531, -0.8461914, 0.07006836, -0.7290039, -0.8564453, -2.1425781, -0.7006836, 1.9042969, -0.34692383, -2.9746094, 1.3476562, -1.0273438, -1.4453125, -0.1607666, 0.32592773, 1.5234375, -1.3203125, -0.15014648, 0.9609375, 2.0078125, 0.04559326, 3.4257812, 0.84472656, 0.01838684, -0.69189453, -0.52734375, 0.83447266, -0.44848633, 2.734375, 5.0507812, -2.2792969, -1.4091797, 0.00819397, 2.8183594, 0.35107422, -1.8242188, -3.2070312, -1.5019531, -2.7070312, -3.1601562, 1.8769531, -3.0429688, 1.1445312, 1.6787109, -0.43359375, -3.7128906, -1.5361328, -0.14147949, 2.7128906, 0.15649414, -1.5800781, 0.2602539, -1.6992188, -0.94189453, -1.625, 2.234375, -0.88671875, -1.9228516, -1.7802734, 3.6796875, 0.27124023, 2.7304688, -1.7919922, -1.3183594, 0.27270508, 1.7919922, -1.6337891, 0.8486328, 2.59375, -1.6376953, 0.89746094, -1.0244141, -2.0332031, 0.890625, -0.12145996, 1.2128906, -1.5283203, -0.8833008, 1.9570312, 1.5722656, -1.8408203, -0.90722656, -2.9121094, 1.3886719, 0.99658203, -0.029922485, -1.8603516, 0.15014648, -0.27026367, -0.58154297, -1.8125, 0.9404297, 0.7167969, -0.6503906, -1.2744141, 0.31591797, -1.5957031, -0.8720703, -1.7285156, -0.46118164, 0.9169922, -0.30493164, 0.38623047, 0.14697266, 0.48388672, -1.5869141, -2.5761719, -1.3925781, -1.7080078, 0.81689453, 1.1103516, 2.0253906, -1.0673828, 1.8125, -1.0390625, -0.23742676, -1.6259766, 1.7666016, -0.37231445, 1.7011719, 1.3613281, -0.8798828, -0.6035156, 0.4777832, 2.7929688, 0.6694336, 1.4970703, 0.20227051, -0.22351074, -1.6572266, -1.4335938, 2.9511719, -0.30004883, -1.6083984, 0.29663086, 0.26464844, 3.3730469, 0.5756836, -0.04345703, -1.3964844, -0.9692383, -0.83984375, -0.5048828, -2.2324219, -0.30371094, -0.8588867, 0.15600586, -2.3164062, 3.1445312, 2.4179688, -0.074035645, -2, 0.2109375, -0.2019043, 1.7011719, 0.19055176, 0.51464844, -0.84277344, 1.7646484, -0.62109375, -2.390625, 1.171875, 1.0361328, 0.10510254, 0.6591797, 0.93359375, -0.96484375, 2.6132812, 0.78515625, -2.0507812, -0.74121094, 1.8671875, 0.27954102, 2.0605469, 0.69091797, 2.0605469, 0.47094727, -0.48632812, 1.9863281, 0.18566895, 1.3798828, 1.0976562, 0.203125, 2.625, -2.6777344, -0.8330078, -0.84375, 0.6118164, -0.30395508, 0.78027344, 0.4855957, 4.3125, -1.1005859, -3.4492188, 4.1914062, -1.0097656, 0.43847656, 1.4853516, -0.88916016, -0.21044922, -0.06542969, 1.7431641, 0.20825195, -1.9677734, 1.7763672, -1.5234375, -1.2460938, -0.16235352, -1.8876953, -1.1201172, 0.17932129, -1.9423828, -0.33935547, -1.7158203, 1.4052734, -1.6308594, -0.4128418, 1.8603516, -1.5126953, 0.5864258, 0.96777344, 1.1171875, 1.328125, -1.7900391, -0.99560547, -0.5786133, 1.2714844, -1.5625, 0.34301758, -0.7260742, -1.5234375, -0.9316406, 0.1430664, 1.8564453, -2.4433594, -2.5839844, -1.7666016, -1.2226562, -2.7382812, 0.28295898, -1.8876953, -1.4287109, -0.040161133, -0.83251953, -1.3125, -1.5087891, -2.8867188, -0.70166016, -0.73876953, -1.7373047, -0.7871094, 0.84033203, 0.22741699, 0.25439453, -4.2382812, 0.71240234, 0.65185547, 0.5498047, 0.6850586, -1.5429688, -0.5107422, -0.2626953, -0.30444336, -0.71191406, -0.053466797, 0.4555664, -1.3535156, -0.52734375, -3.2167969, 0.84033203, -2.9648438, -0.95996094, 0.13793945, 0.86621094, -3.5117188, -0.7128906, -0.66845703, -0.7138672, 4.4335938, -0.59277344, 1.5576172, 0.64208984, 0.70996094, 0.3671875, -1.9335938, -2.0039062, -0.5957031, 1.0351562, -1.1611328, -3.0058594, -3.5605469, -1.9560547, -1.4013672, -0.2512207, -1.1904297, -0.8588867, -2.0371094, 0.53759766, -2.6132812, -0.35058594, -0.20056152, 0.5541992, 0.091796875, -0.8847656, -2.5683594, -0.52001953, -1.5488281, 0.43652344, -0.90185547, 1.3486328, -0.7138672, 1.4873047, 1.4697266, -0.5366211, 0.72998047, -0.16577148, -3.3886719, 1.2626953, -0.006752014, -1.3320312, 2.9550781, -0.08087158, -2.2148438, -2.8457031, -0.03829956, 2.3183594, 1.3105469, 1.7744141, 0.52441406, -0.12536621, 1.0878906, 0.83251953, 0.5834961, 0.047973633, -0.29467773, 3.6523438, -1.8837891, -0.42138672, 1.0888672, 2.3710938, -1.8408203, -1.1992188, 2.1542969, -0.018859863, 1.9091797, 2.2363281, 3.3789062, 1.0751953, -1.8310547, 1.8769531, 3.2539062, 2.1210938, -1.4199219, -0.52197266, -0.58935547, -0.7314453, 1.328125, 0.7441406, -0.54248047, 3.0351562, 1.3730469, 0.12805176, -2.4609375, 0.2758789, 0.171875, 0.14208984, 0.8066406, 2.5410156, -0.54003906, -0.9897461, 0.2939453, -1.6640625, -0.36938477, -0.18115234, -0.5078125, 2.5507812, 0.58935547, 0.113586426, -0.47998047, 0.042419434, 0.42822266, -0.6088867, 0.67041016, 0.092041016, 0.51220703, 1.1308594, -2.4941406, -1.5957031, -0.9975586, 0.9794922, -0.0848999, -2.4511719, 0.6772461, 2.578125, -1.8476562, -2.4941406, 1.2919922, 0.81933594, -0.4645996, 1.2216797, 0.7919922, -2.3808594, 2.3828125, -1.2871094, 0.2939453, 0.81591797, -0.17443848, -0.87109375, -0.70458984, -1.5751953, 1.2666016, 0.9785156, 1.3564453, 0.5205078, -2.6484375, 0.07196045, -2.0078125, -0.60302734, -0.21606445, -0.3935547, -0.20629883, 1.3574219, 1.9228516, 1.1728516, -1.3857422, 2.8710938, 0.44335938, -1.7314453, 1.5039062, -1.6542969, -0.46362305, -2.8027344, -3.625, 1.8339844, -0.84277344, -0.7583008, 3.3144531, 0.29614258, 0.31640625, 2.2597656, -0.053863525, -2.5996094, -2.1523438, -2.0585938, 0.65234375, -2.1425781, 0.21118164, 1.1621094, -0.2529297, -1.1855469, -1.6074219, 0.3857422, 0.36376953, 1.5849609, 2.0292969, -2.0351562, 0.8959961, -1.8808594, 0.35498047, -0.6435547, 0.4440918, 2.6699219, -0.8261719, -0.33691406, -2.0722656, 0.5678711, 1.2753906, -0.66503906, 1.5283203, 1.6074219, 0.9223633, -1.0527344, 1.3681641, 1.7001953, 2.3808594, 0.12597656, -2.3222656, -2.5292969, -0.032409668, -0.6796875, -0.038085938, -0.7011719, -0.63427734, -2.4355469, 0.42285156, 0.4987793, 1.8222656, 1.15625, -0.84765625, -1.9980469, -0.19592285, 0.19628906, -3.1015625, -0.90283203, -0.75927734, -0.07531738, -1.0380859, -1.2060547, -2.2480469, 0.4091797, -0.53125, -0.9873047, -1.6025391, 3.6855469, 0.6777344, 2.1367188, 2.3886719, -1.6503906, 0.25146484, 1.0341797, -0.21838379, 0.22717285, -0.18554688, -0.27807617, 1.7783203, 1.0517578, 1.0585938, -2.5058594, 0.07336426, 0.6723633, -1.5878906, -0.26831055, -2.3613281, 1.1699219, -1.2675781, -1.0058594, 0.6044922, -1.5859375, 2.0566406, -1.2587891, -0.41601562, -1.3037109, 0.0914917, -2.0058594, 0.75927734, -0.2998047, 1.0390625, 1.0009766, 0.07537842, 1.2119141, -0.8334961, 0.030578613, -1.5771484, 2.265625, -0.3984375, 0.26342773, -0.044189453, -1.0029297, -2.3515625, -0.60595703, 1.7744141, 3.2832031, -0.43164062, 2.9785156, 0.53271484, -2.4667969, 1.8310547, 1.0117188, -2.3789062, -0.6464844, -0.83154297, -0.31176758, 0.82666016, -0.8354492, -2.8710938, 0.14245605, 0.35083008, -1.2841797, 0.95458984, -0.5854492, -0.5126953, -0.19348145, -2.0332031, -0.7919922, -0.10467529, -1.1279297, -1.1347656, -1.4755859, 0.5083008, -0.70214844, 2.0527344, 2.9316406, -0.5263672, -0.40649414, 2.8261719, -0.67041016, 1.2402344, -0.7314453, -1.2167969, -3.5878906, -0.57958984, 1.9365234, 1.0283203, 1.828125, -0.7158203, 1.0947266, -1.8681641, -1.1367188, -2.4101562, 2.8671875, -1.6679688, -0.4873047, 0.41064453, -1.9287109, 0.3791504, -3.2773438, 0.31567383, 1.1992188, 1.8652344, 0.8745117, -0.80566406, -1.3203125, -0.48291016, -1.6259766, -4.421875, -0.47705078, 0.9746094, 0.6035156, 0.32763672, 2.2734375, -0.84765625, 0.49780273, 1.3691406, 0.69384766, -2.1875, -1.1699219, -0.99316406, -1.0136719, -1.1982422, 1.6181641, -0.9785156, 1.9609375, 2.59375, 0.47265625, -0.012954712, -2.1835938, -1.1445312, 0.34033203, -1.9433594, -0.7314453, 2.65625, -0.25390625, 0.4255371, 1.5371094, 2.4042969, -1.484375, 1.7138672, -1.6523438, -1.6142578, 0.11315918, -0.60546875, 1.3242188, -1.0771484, -2.0410156, 1.0449219, -1.7539062, 2.6113281, 1.3037109, 0.95214844, -0.39648438, 3.3769531, -0.5180664, -0.56591797, 1.0185547, 0.9916992, 2.0214844, 1.0332031, -2.4472656, -0.8881836, -0.8461914, -2.921875, -0.6821289, -1.8671875, 0.068115234, -1.7353516, 0.9746094, 1.0439453, 1.4130859, -0.52783203, 0.2783203, 0.3959961, -0.121154785, 2.4316406, -0.20654297, 3.1445312, 3.2851562, -1.2402344, -1.6835938, -2.4785156, 1.1113281, 1.0507812, 0.64160156, -1.0615234, -0.048553467, -1.1933594, 0.9267578, -1.2705078, 1.8037109, 1.7255859, -0.3479004, -0.76123047, 0.9477539, 3.2363281, -0.6333008, 1.9384766, 1.6591797, 3.0664062, -0.625, 4.03125, -0.37280273, -2.171875, 2.5761719, -1.4423828, 2.1933594, -1.4980469, -0.7241211, 1.8125, -0.6899414, 0.29956055, -2.6894531, -0.97265625, -3.0605469, 2.5058594, 0.8383789, -0.94628906, 0.48388672, 2.7402344, -0.3425293, 2.1621094, 1.4316406, 1, -0.69433594, 1.3837891, -1.6972656, -0.40893555, 1.0410156, -3.4101562, 1.8447266, 1.6787109, -2.1328125, -0.12963867, 3.7304688, 1.0224609, 2.6191406, 1.5595703, 1.8837891, 2.2675781, 1.2324219, 4.0273438, 0.7036133, 1.6220703, 1.5507812, -0.61376953, 0.7890625, 2.8046875, 2.9160156, -0.24487305, -2.125, 2.8476562, 0.25146484, -1.2734375, -0.53466797, 1.1464844, 0.9692383, -5.109375, 2.1347656, 0.7583008, 0.43847656, -2.2792969, 0.3491211, -0.7011719, -0.5024414, -0.57421875, 0.9370117, 2.421875, -1.0009766, -0.09063721, -0.6538086, 0.60302734, -0.015991211, -2.2988281, 0.60839844, 1.0097656, -2.4726562, -0.54833984, -0.7285156, 1.2011719, 0.9301758, 0.20007324, 1.9638672, 2.0429688, 1.7802734, 2.0683594, -0.61621094, 2.7304688, -0.98046875, 2.4101562, 0.64160156, -1.0244141, 0.79541016, -2.6347656, -2.0449219, -2.4667969, 1.5712891, 1.4882812, 0.82470703, 0.8544922, -2.1777344, 2.0761719, 0.6748047, 1.4052734, -1.3398438, 3.3320312, -0.44458008, -3.953125, -1.890625, -1.4746094, 0.43164062, 3.6074219, 1.4609375, -1.5283203, 2.546875, 0.5253906, 1.9287109, 1.4287109, 1.0712891, 0.4572754, 1.7011719, -1.3232422, 1.0087891, -1.2529297, -0.421875, -0.5522461, 2.6191406, 1.0488281, -0.8959961, 0.46289062, -1.0078125, -0.1496582, 0.3515625, -0.023391724, -0.6230469, -1.8007812, -0.30932617, -0.59765625, 1.2265625, -0.9609375, 0.24597168, 2.7285156, 0.64697266, -1.6289062, 0.7753906, -0.3713379, 1.0693359, 3.2226562, -0.7807617, -0.41455078, -0.7314453, -0.12561035, 1.1318359, -0.35913086, -1.6484375, 0.6323242, -0.72509766, 0.5761719, -0.3605957, -0.42041016, 0.16809082, 0.54541016, -0.020904541, 0.31079102, -2.8769531, -1.0439453, 1.2919922, 0.018875122, 1.0126953, 3.5488281, -0.8178711, -0.24401855, -2.9921875, -1.375, 0.9511719, -1.5019531, -0.9326172, 1.1972656, 5.4414062, 1.7402344, 1.2041016, -2.6835938, -2.2792969, -0.60498047, -1.4804688, 3.2832031, 0.057373047, -1.390625, 1.0664062, -0.11883545, 0.6791992, -1.4082031, -0.56347656, -1.1826172, -0.7988281, 1.3964844, -1.1152344, 1.1425781, 2.859375, 0.21289062, 1.2421875, 2.9199219, 1.875, 0.119018555, 1.0390625, 2.5898438, -0.37402344, -2.046875, 2.7636719, -1.2138672, 1.296875, 0.20983887, -0.14318848, 2.5878906, 0.15063477, 0.4194336, -1.5947266, -3.0351562]}, "B077GDYMCX": {"id": "B077GDYMCX", "original": "Brand: Weber\nName: Weber 7137 Tank Cover\nDescription: \nFeatures: UV inhibitors in fabric resists fading\nBreathable, weather resistant fabric\nProtects cylinder from the elements\nDrawstring keeps the cover in Place\nFits standard size 20Lb liquid propane tank (Sold Separately)\n", "embedding": [1.0439453, 2.2402344, 4.09375, -2.9902344, -0.9819336, 0.70166016, 0.5805664, -1.7011719, 2.8046875, 2.71875, 1.0761719, -0.17919922, 0.048461914, -5.1445312, 1.0683594, -0.92822266, 2.3867188, 1.9042969, 2.1660156, 0.6533203, 1.5888672, 0.45458984, 1.2705078, -0.97802734, 1.9189453, 1.0009766, 4.4453125, -3.6152344, -2.8652344, -1.3505859, 0.1508789, 0.02104187, 0.6171875, 0.97558594, -1.1357422, -2.5234375, -1.7275391, 0.5209961, -1.3505859, 0.49804688, -1.2460938, -2.1933594, 0.9536133, -0.2286377, -0.7973633, -0.08770752, -0.85595703, -1.3994141, -0.56640625, -1.2763672, 1.6835938, 1.6337891, 2.6171875, 1.7929688, -0.74365234, 1.109375, -0.71484375, -1.4414062, 0.6279297, 0.99072266, 0.953125, -1.8623047, -2.8378906, 0.5097656, -0.021072388, 0.5019531, -1.6269531, 0.54833984, 1.6259766, 2.5253906, 2.8652344, -1.0361328, 0.18066406, -0.3791504, 1.5625, -0.59228516, -1.7001953, 2.2949219, 0.76904297, -2.5742188, 0.22924805, 4.0546875, -0.05682373, -1.3867188, -0.68066406, -1.4355469, -2.1933594, -2.4160156, 0.26049805, -0.6411133, -0.9604492, 0.73535156, -2.7460938, -4.515625, -0.042419434, -0.81591797, 2.1953125, 1.7578125, 2.40625, 0.5732422, -0.828125, 1.5947266, -0.5258789, -0.5419922, -3.7226562, -2.6269531, 1.9394531, -1.4296875, -0.33276367, -1.0234375, -1.1289062, -0.53564453, -0.23632812, 0.6298828, 0.9707031, 0.3803711, -0.9453125, 0.9580078, 0.7475586, 0.7363281, 3.9121094, -1.7539062, 0.4807129, -0.6303711, 0.2619629, -0.5102539, -1.375, 0.39208984, 2.4648438, -2.3535156, 1.1708984, 0.8222656, 0.78759766, 0.9682617, 0.9868164, -0.6542969, -1.3828125, -2.1035156, -2.6816406, -0.22912598, -0.69384766, -1.1875, 1.3974609, -1.0566406, -3.0175781, -0.44873047, -0.9746094, 2.1601562, -1.8847656, -1.8730469, 1.1289062, -2.4472656, -0.71240234, -0.40063477, 1.5205078, 0.6977539, 0.18847656, -1.4238281, 1.3369141, 3.34375, 4.6328125, -0.06072998, 0.98291016, -0.13537598, 1.9023438, -1.1318359, 1.2636719, 0.23071289, -2.2285156, 3.1894531, 0.68310547, -1.0888672, -0.013870239, 1.4873047, 0.8857422, -1.5839844, 1.390625, 2.3203125, -0.12249756, -0.22021484, -1.7646484, -2.0175781, -1.1142578, -1.0722656, -0.08227539, 0.3762207, -1.3085938, -0.9067383, 0.8432617, -0.7397461, -1.8466797, 0.5913086, 0.11352539, -1.3466797, -0.5288086, -2.1796875, -2.6699219, -2.28125, -0.11767578, -0.17578125, -2.3867188, -1.15625, 0.09631348, 1.1142578, -1.8398438, -1.1572266, 1.0947266, 0.84765625, 0.9589844, 0.9980469, 0.7104492, -1.4628906, 2.484375, 0.90283203, -1.7353516, 0.46435547, 2.4414062, -0.5527344, 1.1572266, 0.8173828, -1.6914062, 0.28320312, 0.93408203, 3.6601562, 0.71484375, 1.7402344, 0.7763672, 0.2824707, -2.0585938, 0.034484863, 1.7626953, 0.5854492, -0.8959961, 1.1455078, 0.16625977, 2.4199219, -0.75878906, -1.4912109, 0.9248047, -0.42919922, 0.18518066, 0.35351562, -1.6083984, -0.75927734, 0.7866211, 0.62646484, -0.21240234, 1.3457031, 0.9379883, -0.05065918, 0.90234375, -0.9819336, 1.4902344, -1.0107422, -0.5908203, 1.7138672, -0.4074707, 1.7998047, 0.5234375, -1.3134766, 0.66015625, 0.57714844, -0.94970703, 1.2470703, -0.41137695, -1.0390625, -0.5834961, 1.7675781, -0.6035156, -1.0488281, 0.009155273, -0.10644531, -1.1806641, -1.1005859, 2.8574219, 1.2021484, -0.7192383, 1.2402344, -0.30639648, -0.035247803, -0.6166992, 0.26831055, 1.1816406, -2.4375, 1.578125, 0.796875, 1.7119141, -1.2431641, -3.09375, -0.8798828, 2.7167969, -0.6254883, 0.0042381287, 3.1738281, 0.9453125, 0.70410156, 3.0019531, -0.93603516, -0.5986328, 1.4560547, -0.039642334, 0.5390625, -0.7729492, 0.84521484, 0.41064453, -1.2177734, 1.1865234, -2.8574219, -0.86083984, 1.2617188, 0.036834717, -1.0673828, -0.1907959, 1.4228516, -3.3457031, -3.1347656, 1.8759766, -3.4492188, -0.29882812, 0.017547607, 1.1572266, 1.1660156, -2.0683594, 0.03277588, -0.16174316, 0.04171753, -1.6289062, 1.2568359, 1.4140625, 0.13574219, -0.32543945, -1.6650391, 0.50390625, -0.8808594, 0.54296875, -0.59765625, -2.3496094, -1.5429688, 1.046875, -1.5097656, 2.3105469, -0.061920166, -2.2226562, 2.0839844, 2.8398438, -3.0253906, -0.08129883, 1.1884766, -2.0761719, -1.7226562, 0.7973633, 2.7324219, -1.0234375, -4.859375, 0.05517578, 0.72558594, -0.37597656, -0.35424805, -0.45825195, 0.21203613, 0.2368164, 1.1318359, 1.3720703, 0.3786621, 0.80322266, 1.0849609, 0.70166016, -2.4882812, 2.2695312, -1.6201172, 1.8554688, -1.4785156, 0.89160156, -2.65625, -1.4521484, 1.0878906, -1.8564453, 5.2617188, 2.6835938, 2.2421875, -0.9951172, -0.52197266, 0.040527344, -2.2402344, -1.8730469, 1.8945312, -0.44873047, -0.9296875, 0.38549805, -4.0976562, -0.9980469, -4.3828125, 0.13952637, 1.5830078, -1.6943359, -0.43139648, -1.4472656, -1.7753906, -0.68847656, -1.515625, -0.13964844, -0.12298584, -2.5996094, -0.7939453, -1.0224609, -1.0585938, 1.3662109, -1.3212891, 3.0722656, -0.83691406, 0.5073242, 2.4609375, -0.8623047, 3.3808594, -0.53125, -3.2578125, 0.8173828, 1.9833984, 1.8535156, 1.9560547, -1.8525391, -1.3349609, -0.20959473, 1.1074219, 2.6464844, 1.84375, -0.20153809, 3.3808594, 1.8779297, -1.4492188, -2.3398438, -0.11920166, -0.7036133, 2.046875, 2.6425781, -2.1777344, -0.29785156, 1.5966797, 0.12646484, -3.4492188, -0.08959961, 1.7294922, 0.32739258, 1.8808594, 1.0625, -1.0517578, -0.9277344, 0.6245117, 2.3085938, -0.29589844, 1.5517578, 0.2626953, 1.2382812, 1.3847656, -0.46533203, 1.765625, 1.9013672, 0.6430664, -1.2226562, 1.2705078, 1.1826172, 0.6381836, -0.8935547, 0.43359375, -0.18005371, -0.20507812, 1.5996094, -0.20458984, 0.37817383, 0.78466797, -1.3466797, -0.084350586, -1.3212891, -0.28857422, 2.3574219, -0.0049438477, -0.9916992, -0.80566406, -0.54052734, 0.9277344, -1.8007812, 0.3947754, -1.3505859, -0.96728516, 1.3828125, -4.1796875, -0.3400879, -1.921875, 1.2597656, 1.890625, -2.9277344, -0.040893555, 1.4443359, -3.5175781, -2.3125, -0.45385742, -0.93115234, -0.68115234, 1.8271484, 2.265625, -1.8759766, 0.17736816, -3.0898438, 1.2246094, 1.6748047, -0.61621094, -1.6152344, 0.62158203, 0.28833008, -1.0576172, 1.4140625, 1.1318359, 1.4638672, -3.6875, 0.75097656, -2.09375, -0.63720703, 3.1914062, -1.5791016, 0.66503906, 0.06744385, -0.5131836, 0.8774414, 0.54248047, 3.125, -1.4824219, 0.8173828, 1.4755859, -0.24499512, 0.064086914, -1.5869141, -2.9648438, -2.09375, -0.6660156, 0.09863281, 3.2109375, 0.77197266, 1.4726562, 1.4873047, 0.42651367, -1.0410156, -1.5380859, -2.0703125, 1.1054688, -0.9003906, -0.27441406, 1.671875, -0.7988281, -1.7158203, -2.9394531, 0.23986816, -0.8222656, -0.7290039, 0.29003906, -1.1142578, -0.34936523, -0.9370117, -0.6791992, -1.2939453, -0.6166992, -0.65771484, 1.4814453, -0.44995117, -0.83984375, 2.6914062, -0.016540527, -1.1523438, 0.7104492, 4.0078125, -0.1373291, -1.4121094, 0.5102539, -0.45898438, 2.2695312, -1.8701172, -4.0078125, 0.77001953, 0.2286377, 1.2041016, 0.04727173, -0.19055176, 2.2792969, 0.31347656, -0.22070312, 1.8994141, 2.5195312, 0.094177246, -0.5732422, -2.03125, 2.6679688, -2.046875, -1.1591797, -1.9277344, -0.81347656, 1.6494141, -0.87158203, -0.35498047, -2.6289062, 2.7519531, 0.74316406, 1.4433594, -3.5605469, 2.0839844, 3.2128906, 2.4472656, 1.1982422, -2.5839844, 1.03125, -0.8569336, 0.14465332, 1.2695312, -0.07501221, 0.27392578, 0.10498047, 1.9560547, 1.578125, -1.9267578, 0.17297363, -1.1464844, -1.0703125, 0.19750977, -0.7910156, 0.5083008, -0.29101562, -0.07714844, -0.78808594, -0.69628906, 2.5332031, -0.21923828, 0.35009766, 0.5439453, -0.17602539, -1.0820312, 2.3515625, 1.6767578, -0.6953125, 0.44628906, -1.5048828, -0.80566406, -1.0107422, -0.06549072, 1.6748047, -0.013542175, -1.2890625, -0.61035156, 2.2382812, 1.8486328, -0.8881836, -0.8466797, 1.625, 3.4296875, 0.82958984, 1.203125, 2.0019531, -1.2119141, 0.95214844, 1.8759766, -1.0527344, 1.3632812, -1.0957031, 0.07232666, 3.3730469, -0.7939453, -3.4804688, 0.5517578, 0.63720703, -1.0351562, 1.4785156, -1.4804688, -0.6958008, 1.1181641, -2.2167969, -1.1748047, 0.28955078, -0.69189453, 1.6416016, 0.7553711, 1.3271484, -0.71728516, 0.51953125, 3.2480469, -0.23742676, -2.265625, 1.3945312, -0.57421875, -0.99902344, -2.2460938, -1.0722656, -1.828125, 0.11193848, -0.37158203, 2.0058594, 0.16833496, 0.36816406, 2.3398438, -1.9267578, -0.18041992, -0.86035156, 0.7207031, -2.9492188, -0.04071045, 2.2265625, -2.1015625, -0.4020996, -0.29125977, -0.9580078, 0.41430664, 0.7944336, 1.1708984, 1.8632812, 0.037994385, 0.60839844, -4.4921875, -2.4570312, -1.7021484, 0.46948242, 0.10852051, 1.8339844, 0.07446289, -0.24133301, 0.69384766, -1.90625, 1.1259766, -1.6923828, 0.6459961, 0.31640625, -1.5087891, -0.73779297, -0.95458984, -1.0175781, 0.60009766, -0.69873047, 1.7402344, -2.1582031, -1.2880859, -1.7275391, -0.10650635, -2.3320312, -0.8232422, 2.5, 0.9609375, 1.6611328, 1.3984375, 1.5517578, -1.3515625, 0.6640625, -1.0683594, -1.4667969, 2.4003906, -1.515625, 1.1484375, 0.5834961, -0.23486328, 1.1474609, 1.2392578, 0.9423828, -0.59765625, -0.7011719, 1.2607422, -0.1854248, 1.7597656, -0.6484375, 0.74316406, 0.8339844, 1.3007812, 1.6103516, -1.2675781, -1.1142578, -1.0820312, -1.6298828, 0.5214844, -2.0410156, -2.1503906, -0.2685547, 0.80126953, 2.9140625, 1.6601562, 0.6821289, 2.0585938, 1.7255859, -2.0566406, 0.34155273, -1.0742188, 3.3066406, 1.8164062, -0.90722656, -0.25683594, -2.9296875, 2.5742188, 2.1679688, -0.38305664, -0.52734375, 0.39916992, -1.7402344, 0.31933594, -0.35913086, 1.171875, -0.2631836, 1.5244141, -0.43432617, 2.0605469, 2.9121094, -2.28125, 1.1865234, 0.024658203, 0.2631836, -1.34375, 1.3007812, 1.3046875, -3.1542969, -0.54833984, -0.72021484, 0.5703125, 0.9213867, -0.9506836, -0.60791016, -1.0117188, -1.359375, -1.8222656, -1.1630859, -3.4121094, 0.39282227, 0.7597656, -1.4521484, -0.6035156, 0.6196289, -0.7207031, 1.4580078, 2.2753906, -0.3671875, -3.1445312, -0.89453125, -0.3400879, 0.07244873, 1.0332031, -3.5742188, 1.2421875, 0.16064453, 0.7006836, -1.1181641, -0.31689453, 0.012893677, 1.046875, 0.6254883, 3.2363281, 2.9785156, 0.76708984, 1.5693359, 0.8984375, 3.3945312, 1.9023438, -1.2431641, -0.3227539, 1.3212891, 0.8774414, 3.21875, -0.79248047, -1.0996094, 0.45043945, 0.3232422, 0.3017578, -0.26635742, 1.2988281, -2.0566406, -0.54589844, 0.1854248, 0.9199219, 1.46875, 1.1826172, -1.5527344, -0.9238281, 1.2548828, -0.20092773, 2.1503906, 0.089660645, 1.0673828, 0.2084961, 0.048461914, 1.7226562, -1.1982422, 2.2441406, 0.014045715, -1.1767578, -1.8955078, 0.99609375, 1.8378906, 1.9453125, -1.4052734, 0.2401123, 2.8769531, 0.2915039, 0.1607666, -1.9296875, -0.2253418, -1.2363281, 1.9316406, 2.46875, -1.1083984, -1.3964844, 0.66552734, 0.40625, -3.0761719, 1.7158203, 1.5429688, 0.8984375, 1.1103516, -2.5839844, 0.95996094, -0.9628906, 0.07220459, -1.6689453, -0.3371582, 0.19104004, -4.3203125, 0.23339844, 0.9506836, -3.1484375, 2.3085938, 0.02658081, 0.95410156, 1.6767578, 1.0673828, 0.31860352, 0.69921875, 0.30126953, 0.42163086, -0.20715332, -1.4150391, 3.5175781, 1.0917969, -2.6308594, -0.9848633, 2.2304688, 1.4072266, 0.88183594, 1.5039062, -0.10430908, 1.4658203, 0.23425293, 0.20397949, 1.3242188, -1.0224609, 1.1845703, -1.5253906, 1.3613281, -0.3137207, 0.0055770874, 0.3100586, 1.8203125, -1.1396484, 1.6552734, 1.7353516, -0.17797852, -0.06567383, -0.26660156, -0.5161133, -0.2980957, -0.5605469, 1.2363281, -2.03125, 0.87402344, -2.6738281, 0.6333008, -1.5917969, -1.6347656, -1.2548828, -0.20507812, -1.4394531, -0.73779297, 1.6152344, 0.2841797, -2.0722656, 0.56884766, -0.7885742, -1.0849609, 0.47143555, 1.6416016, -1.1455078, -1.4560547, -2.7910156, -0.7211914, 0.4958496, -0.12854004, 2.2929688, 2.796875, -0.2524414, -1.3837891, -0.10168457, -2.9804688, 0.092285156, -3.4316406, 2.2617188, 0.45898438, -1.7460938, -1.2607422, 1.9863281, 3.0019531, -1.203125, -1.7626953, -0.8022461, -1.4951172, 2.5527344, -1.7138672, -0.7558594, -0.69628906, 0.31103516, 3.3164062, 3.1914062, 2.1425781, -0.20788574, -0.3713379, 2.796875, -2.5078125, -2.3398438, -1.2255859, 0.7368164, 0.07183838, 0.046539307, 0.99609375, 2.5253906, -0.18518066, -0.18395996, -1.0771484, -1.1630859]}, "B00T95H1PE": {"id": "B00T95H1PE", "original": "Brand: Alpha Grillers\nName: Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types\nDescription: The Best Grill Brush For Cleaning Your BBQ. Here\u2019s Why:

Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18\" Long Handle.

Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

Ready For Cleaning That's So Quick & Easy You May Even Enjoy It?

Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you'll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

Hard On Grime - Gentle On Grates

This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

So What Are You Waiting For? Click The \"Add To Cart\" Button Above To Get Your Brand New Brush Delivered Today.

Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it's time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.\nFeatures: GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it\u2019ll bend or break.\nSAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that\u2019ll get your grill looking good as new, but don\u2019t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types.\nEASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you\u2019ll be done in a flash.\n18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time.\nBBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they'll love! Backed by Alpha Griller's 90-Day Satisfaction Guarantee.\n", "embedding": [0.48388672, 2.1152344, 1.0097656, 0.31713867, 0.3034668, -0.16516113, 1.5927734, -2.2871094, 0.80126953, 0.6767578, -2.0507812, -0.63427734, -0.049346924, -1.5332031, -2.4785156, 0.31347656, 1.7167969, 2.0527344, 3.2070312, 3.4609375, 1.1591797, -0.6660156, 1.1162109, 0.07952881, 0.84521484, 0.069885254, 2.0957031, -0.46875, 2.2695312, -0.5175781, 1.2138672, -0.11053467, -1.1425781, 1.1601562, -3.6191406, 1.578125, 0.6464844, 2.0761719, -1.7011719, -0.36645508, -1.1806641, -0.44262695, 2.1328125, 0.69677734, -2.1582031, 3.6875, -0.8232422, 3.5820312, 0.20019531, -3.9863281, 1.6298828, 0.3605957, 2.4707031, -0.5371094, -1.9423828, 1.1513672, -0.18762207, -2.5800781, -0.7338867, -1.1445312, 2.78125, 1.4443359, -0.9194336, 1.6425781, 0.84521484, 0.77197266, 1.1865234, -1.4775391, -1.8056641, -1.9394531, -0.6503906, 0.60546875, 0.82666016, 0.5878906, 0.20007324, 1.8076172, -1.640625, -1.5644531, -1.3310547, 0.55566406, -0.7866211, 2.3046875, -0.9316406, -2.0410156, 1.9550781, 1.4472656, -3.7011719, -1.6835938, 1.3027344, -2.328125, 0.14624023, 1.0146484, -1.6376953, -4.0976562, 1.7578125, -1.1103516, 0.23266602, -1.7792969, -0.60302734, 2.0253906, -3.1542969, -0.53222656, -2.59375, -0.6166992, -3.1855469, 0.09173584, 2.0039062, 0.73779297, -3.9414062, 0.030456543, -0.98095703, 1.2070312, -0.45239258, 1.4833984, 1.3320312, -0.75146484, -0.52001953, -0.41967773, 1.3867188, 2.4960938, 1.2832031, -1.125, -1.5761719, -0.69873047, -0.96972656, -0.7373047, 1.2041016, 2.0214844, 4.0195312, -1.1982422, 0.23693848, -3.0800781, 1.6289062, 0.5097656, 0.9316406, -1.8964844, -0.9033203, -0.8745117, -2.4453125, 1.1298828, 0.3383789, -1.3476562, 2.7324219, -0.78271484, -1.5664062, 1.0654297, -1.2978516, 0.099243164, -0.34765625, -0.52001953, 2.2988281, -0.4506836, 2.2226562, -0.11779785, 1.7470703, 0.7607422, 0.4638672, -1.5625, 2.75, 1.4755859, 0.5859375, -3.6328125, 1.0263672, -1.2753906, 0.4645996, -2.015625, -3.0488281, 3.5078125, 0.38110352, 1.7216797, -1.7470703, -1.6142578, -0.13220215, 0.86328125, -0.008583069, 0.42016602, 0.5283203, 0.8354492, 0.4873047, -0.40063477, 2.734375, -2.2832031, 2.6113281, 0.6611328, -0.20178223, -0.6357422, 2.59375, 1.1386719, 2.421875, -1.4091797, 3.8554688, 2.0820312, 1.8818359, 2.625, -2.3847656, -0.72314453, -0.5053711, 0.36279297, 0.8125, -0.5732422, -2.0800781, -2.8164062, -1.1152344, -1.0341797, -1.5234375, -3.0859375, -0.22375488, 0.3010254, -0.67089844, 0.024719238, 0.002696991, -0.28466797, 2.4101562, -0.20495605, -0.54833984, -1.9052734, 1.0771484, -2.3671875, 2.4921875, 1.9941406, -0.12420654, -1.4482422, -2.8125, 1.65625, 2.3359375, 2.0175781, 0.111450195, 1.6064453, -0.13232422, 0.30859375, -0.03656006, 2.5585938, -0.73046875, -1.234375, -0.12866211, -1.3789062, 1.4746094, -2.3105469, -2.0273438, -0.5229492, -1.3740234, -0.7109375, -1.8779297, -1.09375, 0.57421875, -2.171875, -1.4882812, 0.74072266, 1.3925781, -2.4902344, 0.70751953, 3.546875, 1.3808594, -0.05657959, 1.6982422, 1.3310547, -0.36206055, 0.60595703, -2.9003906, -0.60009766, 0.62158203, -1.0986328, 2.6542969, -0.15063477, 1.0214844, 1.4003906, 2.3730469, -0.2454834, -1.0263672, -1.4765625, -0.20581055, -0.66552734, -0.6586914, -0.72998047, -0.49804688, 2.2167969, 0.06188965, 0.2939453, 1.0253906, -1.8837891, -1.5673828, 0.32983398, 2.3515625, -1.9667969, -1.0664062, -1.0185547, -3.0800781, -2.671875, 1.2236328, -0.09210205, 5.09375, 0.68896484, -2.2167969, 1.1220703, -1.2988281, -0.46289062, 3.8945312, -0.63720703, -0.62158203, -0.39160156, 4.2304688, 0.27124023, -0.50390625, 0.5649414, -0.9794922, -0.02758789, 0.328125, -2.8046875, -0.13757324, 2.4921875, -2.5898438, -1.3818359, 2.7871094, 0.1928711, -3.3671875, 1.4970703, -1.7255859, -1.4462891, 1.4072266, -0.24841309, -1.1269531, 1.03125, 1.5800781, -1.8378906, -3.1445312, 0.80908203, -1.6699219, -1.3320312, 1.6162109, -2.7148438, -0.57958984, 1.28125, 0.1138916, -1.296875, -1.2080078, -1.4921875, 0.4128418, -2.625, 1.8935547, -2.6171875, -0.92285156, -0.24401855, -2.6738281, 3.3183594, -0.4970703, -0.025009155, -2.1542969, 0.14868164, -0.85839844, 1.9863281, -1.4365234, -0.34545898, 1.0859375, -0.98046875, 1.1152344, 1.03125, -0.6503906, 0.9711914, 1.953125, 1.5878906, -0.97216797, 0.38110352, -0.4309082, 1.6123047, 0.99853516, 1.5117188, 0.63916016, -2.6074219, 0.6425781, -2.8867188, 2.09375, -1.375, 1.6640625, -1.5078125, 0.13745117, 0.35131836, -0.5600586, 0.5551758, -1.0625, 1.9521484, -0.2548828, -2.5722656, 0.42944336, 0.74072266, -1.0097656, -1.0205078, 1.3466797, 0.9145508, 0.8027344, -1.7304688, 0.45996094, 1.0693359, -1.5009766, -0.13867188, 3.1171875, -0.21765137, 1.1533203, -3.3886719, -0.34936523, 2.4335938, 0.49072266, -0.9326172, -1.8994141, -0.83447266, -0.018875122, -3.515625, 0.044891357, -1.8125, -0.46655273, -0.94873047, -2.5898438, 2.5644531, 1.4375, 0.7919922, 1.4599609, -3.3359375, 1.7675781, -1.1816406, -2.8320312, 0.1182251, 0.0137786865, 0.8774414, -0.8876953, -1.6845703, 2.953125, 2.2050781, 0.22668457, -1.4130859, 0.21838379, 1.1308594, 1.2568359, -0.54833984, -0.703125, 1.0585938, 2.9570312, -1.8134766, -1.7773438, -0.01171875, 0.34472656, 0.4807129, 1.7568359, 2.0429688, 2.5898438, 1.9121094, 2.8339844, 1.9248047, 1.9951172, -0.51416016, 0.42211914, -1.2158203, 0.42993164, -1.7958984, 0.5576172, -1.3671875, -1.9970703, 0.9604492, -0.7709961, -0.36157227, 0.8774414, 0.59814453, -1.1074219, 0.46704102, 0.30786133, -0.7998047, 3.6464844, -0.9423828, 0.08605957, -0.5913086, -1.7148438, 1.6240234, -1.7148438, 1.4414062, -2.921875, -2.4414062, 1.7939453, 0.6821289, 0.74560547, -2.1835938, 0.64941406, -0.85791016, -1.8867188, -0.30419922, -2.6679688, 0.12158203, -0.4326172, -0.7607422, -1.9824219, 0.3334961, 2.0058594, -1.1513672, -2.1757812, -2.4960938, -0.4189453, 1.5175781, -1.3203125, 1.1650391, 2.5566406, -1.6357422, 2.8457031, 0.19470215, 0.86376953, 3.2617188, -1.8769531, 1.3056641, -1.7851562, -3.3730469, 0.36157227, -2.8164062, 0.6533203, -0.38842773, 1.7744141, -0.05014038, 0.8959961, 0.15771484, 2.2421875, -2.9101562, 0.71875, -0.5527344, -1.4208984, -0.57470703, 1.2363281, 0.984375, 1.3408203, 1.1630859, 3.5273438, 1.9433594, -2.1914062, 0.47265625, -4.3398438, -0.8491211, -1.4941406, -3.625, 0.62597656, -0.41088867, -0.47045898, 1.8984375, 1.6689453, 0.25854492, 2.7675781, -0.43359375, 1.6152344, 0.26879883, -0.45532227, 1.6992188, 1.4101562, -1.0742188, 3.0703125, 1.1357422, -1.8671875, -1.4863281, -1.6875, -4.2304688, 0.04949951, 2.359375, -0.038635254, 1.0302734, -2.8144531, 0.46240234, -0.4790039, 0.84716797, 0.7583008, -2.4882812, -0.12225342, -1.0820312, 0.24084473, -0.7114258, 0.9716797, -0.014297485, 0.43066406, -1.8583984, -0.80859375, -1.3349609, 0.59521484, 3.5097656, 0.40283203, -2.4609375, -0.3088379, 1.0078125, -1.1796875, -0.24780273, 0.7729492, -0.50439453, -2.5292969, -0.025222778, 0.26586914, 0.14855957, 1.2431641, 0.4020996, -3.4082031, -2.4433594, 0.76904297, -3.5449219, -1.4853516, 0.82177734, -0.33276367, 0.041748047, -0.671875, -1.5205078, 1.0009766, 0.98535156, -1.0917969, -0.54833984, 3.6914062, 1.2041016, -0.7998047, 4.5664062, -1.9912109, 0.99121094, -0.59228516, -2.1054688, -2.8789062, -0.19421387, -0.9916992, -0.6323242, -1.2128906, 1.4648438, -0.90966797, 0.018615723, -0.29638672, -1.7294922, -0.57373047, -3.2988281, 2.2773438, -1.4316406, 0.70458984, 1.9033203, -1.1035156, 2.7832031, -1.2714844, 1.2763672, 3.0703125, 0.5571289, 0.14916992, -0.054382324, -0.6464844, 1.6123047, 1.203125, 1.5371094, 4.2578125, -2.9160156, 0.609375, -0.0002861023, 1.8320312, -4.46875, -1.5009766, 1.5390625, 1.0898438, 0.6176758, -1.0771484, 2.3359375, 1.25, 2.1386719, 1.8222656, -0.14770508, -0.017150879, 0.8642578, 1.3291016, -4.6171875, 0.67871094, 0.18518066, -1.4414062, 2.0019531, -1.3408203, -1.640625, 2.171875, 2.0742188, 1.0136719, -0.21435547, -1.3154297, 0.5566406, 0.7236328, -0.27001953, 0.50097656, -1.3710938, 0.28198242, 1.7373047, 1.734375, 0.22277832, 0.48120117, 0.9707031, 3.7910156, -1.4863281, -1.3408203, 1.5546875, -0.90478516, 1.8847656, 0.089660645, -2.9511719, -1.9453125, -0.48217773, 1.5732422, 2.7636719, 0.9682617, 0.86621094, 0.8989258, -1.1650391, 2.3203125, -2.0058594, 3.4082031, -0.8461914, -1.1748047, 2.0507812, -2.2792969, 0.29296875, -1.4169922, 1.0683594, 0.5390625, 2.4023438, 2.6425781, -1.2548828, -2.8710938, -1.4589844, -2.2460938, -4.3320312, -0.31420898, -0.07739258, 0.013618469, 1.2070312, -0.19006348, 0.88183594, -0.68408203, 0.46728516, -0.6958008, 0.7836914, -0.640625, 0.3479004, -1.1464844, -0.671875, -0.33642578, -0.44970703, 1.0019531, 0.7919922, 3.6855469, 3.078125, -2.5625, -0.52197266, 0.66259766, -4.3007812, -2.4238281, 3.5292969, -1.5615234, -0.67529297, 0.064697266, -0.76220703, -2, 1.5361328, -1.1933594, -0.28295898, 0.11895752, 0.5751953, -1.5742188, -2.0136719, -2.6835938, 0.67333984, -2.4394531, 0.53222656, -0.22167969, -0.59716797, 1.4648438, 2.0390625, -2.8632812, -0.6069336, -1.6542969, 1.6767578, 2.1210938, -0.87890625, -1.4960938, 2.890625, -1.5126953, -2.8535156, 1.0634766, -0.61376953, 1.0351562, 0.64697266, -0.8105469, 0.91748047, 0.34594727, 0.9902344, -1.3115234, 0.27441406, -0.49658203, -2.1191406, 1.5107422, 2.4257812, 1.7373047, 0.984375, -2.0878906, -0.80029297, -2.0253906, -0.9589844, 0.734375, -0.6923828, 0.38476562, -1.6523438, -2.0273438, 0.109375, 1.8300781, 3, 2.03125, -0.18225098, -3.203125, 2.8925781, -0.16552734, 2.0683594, 0.578125, 1.1972656, -0.41796875, 5.8476562, 0.15270996, -3.0585938, -0.44750977, -1.8398438, 1.2412109, 1.5761719, -3.34375, -1.6474609, -2.8261719, -2.0117188, -3.9628906, -0.28686523, -2.3808594, 0.20996094, -0.85253906, -0.12866211, 1.4433594, 3.8457031, -0.15393066, 2.0136719, 2.9550781, 1.3339844, -1.0410156, -0.796875, -1.0605469, 0.34570312, 0.7421875, -2.9921875, 2.4414062, -0.59814453, 0.55615234, -1.2041016, 0.78808594, 3.484375, 0.17382812, -1.3935547, 2.90625, 1.9042969, 2.7265625, 1.9345703, -0.04852295, 0.5073242, 0.8383789, -0.16552734, 0.43823242, 3.734375, 0.2524414, 1.6923828, -0.22155762, 0.7163086, -1.734375, -0.7285156, -0.1071167, -0.24377441, 1.2167969, -3.8535156, 2.046875, 0.10644531, -0.91064453, -0.63964844, 0.74853516, -2.2734375, -2.1816406, -0.83496094, 0.2902832, 4.1367188, 1.9111328, 0.6611328, 1.4072266, -0.5493164, 1.6777344, -3.6074219, 0.72216797, -0.44189453, 1.3154297, -0.9301758, -0.7011719, -0.65234375, -0.03439331, 1.0332031, 2.671875, -0.49731445, 1.1933594, 2.6191406, 0.35351562, 0.14013672, -0.51708984, 1.9042969, -2.6464844, -1.9570312, -0.32202148, 0.028427124, -1.5371094, -2.0605469, 2.2089844, -0.5727539, 1.2011719, 2.9804688, -3.3554688, -0.83203125, 1.8291016, 2.9960938, -1.2822266, 2.9394531, -0.17285156, -0.9355469, -1.4746094, 0.6899414, 2.0390625, 3.3164062, 2.3808594, -3.5996094, 0.064331055, -0.5395508, -0.9868164, -1.3476562, 0.8496094, -1.4160156, -1.359375, -1.6650391, 1.25, 1.5947266, 0.82666016, -0.5102539, 1.6992188, -1.3974609, 2.125, 2.7089844, 1.2675781, -0.08721924, -0.4152832, 0.56396484, 0.31835938, 1.7265625, -1.2636719, 2.140625, -0.94921875, -0.65771484, -0.19116211, 1.421875, 0.35180664, 0.78027344, 0.23962402, 0.7426758, 0.15759277, 0.27539062, 2.1796875, -1.7373047, -1.9951172, 0.68408203, -1.5126953, -1.0322266, -1.2089844, -0.3894043, 0.3798828, -0.31884766, -2.0195312, 0.07714844, 0.23022461, 1.9101562, 0.3088379, -0.11859131, -3.7617188, 0.42041016, 0.85058594, -0.45361328, 0.80322266, 2.328125, -0.00043296814, -2.9257812, 0.105895996, -0.34057617, -1.4179688, -2.5605469, -2.1015625, 0.6425781, 3.2832031, 3.5488281, 1.1152344, -3.3085938, -0.50390625, 2.9375, -0.5073242, 0.042877197, 0.9140625, -2.9707031, 0.03213501, -1.4882812, 2.2382812, -0.61328125, -1.5957031, -0.1829834, 0.17956543, -1.1513672, 1.7226562, 1.0888672, -0.32666016, -1.8730469, 0.9277344, -0.3720703, 1.2363281, 1.0214844, 2.8769531, 0.69628906, 2.6445312, -0.9868164, 0.45166016, -0.16540527, 1.5234375, 0.31274414, 0.9692383, 1.5273438, 1.5507812, -1.0546875, -0.3256836, -0.9399414]}, "B07PFQHD1W": {"id": "B07PFQHD1W", "original": "Brand: USA Network\nName: Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt\nDescription: \nFeatures: This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you're a fan of Mr. Robot as well as the hit BBQ restaurant.\nOfficially Licensed USA Network Mr. Robot Tee.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.4501953, 2.0664062, 0.2734375, -0.78808594, -1.7363281, -1.6191406, 0.31518555, 0.2697754, -0.41308594, 0.1005249, -0.26635742, 1.6923828, 1.8740234, -4.078125, -0.33325195, 1.2138672, -1.4814453, -0.22351074, 0.15881348, -0.8569336, -0.61328125, -0.4753418, 2.828125, 0.37475586, 0.1928711, 1.4697266, 3.4511719, 2.0429688, -0.1784668, 0.32299805, 2.1875, 0.8666992, 1.0390625, 2.4980469, -1.6865234, 0.3618164, -2.0390625, 1.453125, 1.0976562, 0.8256836, -2.2109375, -2.4609375, 0.7324219, 1.953125, -2.828125, 1.2880859, -1.3994141, 0.859375, -1.0449219, -2.9902344, 1.6210938, 1.9921875, 1.1025391, 0.6411133, -0.69677734, 1.4863281, -0.69873047, -0.62109375, 1.484375, -0.46411133, 2.2949219, 0.8105469, -0.5175781, -1.2792969, 2.0800781, 1.359375, -1.5888672, 1.9746094, 1.0224609, -1.4130859, 2.7265625, 0.2536621, -3.53125, 0.71972656, 0.99316406, 1.0136719, -1.8349609, -0.73046875, 0.6298828, -3.8300781, 2.8164062, 2.1269531, 0.72802734, -1.6455078, -0.10784912, 0.6381836, -2.484375, 0.01828003, 2.9394531, -0.27685547, 0.31762695, 0.4074707, -0.65283203, -3.640625, 0.84716797, -0.23120117, 1.3261719, -2.734375, -1.3232422, 3.5527344, 0.06555176, -3.1660156, 0.7988281, -0.80810547, 2.0664062, -0.9663086, -1.0361328, -1.8525391, -2.2988281, -0.22143555, -2.0527344, 2.9667969, 1.1484375, 0.21459961, 1.2470703, -2.09375, -0.28051758, 1.9775391, 2.1972656, -0.8120117, 0.92871094, -2.0507812, 2.3984375, -1.4726562, -0.014587402, -0.27734375, -0.097473145, 2.7304688, 1.5273438, -1.2060547, 1.5419922, 2.3808594, -1.6435547, -0.6386719, 1.03125, -0.48242188, 0.88134766, -1.5136719, 1.3027344, -0.33496094, -1.2792969, -0.9897461, -0.5683594, -2.4550781, -1.5556641, 1.4492188, 0.19384766, 0.7993164, -1.5205078, 0.92626953, -0.5888672, -3.0058594, -1.2685547, -1.2910156, 0.8256836, 0.63378906, -2.0917969, -0.6176758, 0.43896484, -3.1289062, 0.5136719, -0.46533203, 1.7744141, 2.3789062, 0.17285156, 0.6894531, -3.1289062, 0.063964844, -3.4511719, 2.0019531, 0.40771484, -0.28735352, 2.7265625, -2.9472656, 2.0839844, -1.3369141, -0.7285156, 1.7558594, -0.25732422, -1.4316406, -1.2099609, -0.30908203, 1.7636719, 1.1884766, 0.6464844, -0.5854492, -0.4399414, -0.078125, 2.3945312, 0.70214844, 0.99609375, -1.5185547, 1.4541016, -0.58691406, 2.7597656, 0.9091797, -0.31762695, -0.44067383, 0.8774414, 2.4726562, -1.7333984, -0.79345703, -0.60498047, -1.0908203, -0.80810547, -1.0244141, 1.1142578, -0.64404297, -0.98779297, -1.8613281, 0.3935547, -0.9326172, -1.1611328, 1.6679688, -0.96484375, -1.1025391, 1.4101562, -1.3671875, 1.8242188, 1.4316406, -1.5087891, 0.1439209, -1.7167969, 0.31835938, -1.7158203, 0.38500977, -0.24145508, -0.30200195, -1.1044922, -0.58447266, 0.30371094, 2.59375, 0.42749023, -1.3056641, -1.2890625, 0.9267578, 2.9375, -0.3010254, -0.8466797, -0.96972656, -2.1875, -1.1230469, -2.9082031, -2.2441406, 1.078125, 1.5732422, -2.0800781, 5.2226562, 0.42114258, 1.5732422, 0.6772461, -0.018508911, 0.42919922, 0.44189453, -0.7050781, 0.92822266, -1.8886719, -0.75146484, -2.0878906, 0.42578125, 1.3652344, 0.8144531, -3.9726562, 0.4567871, 0.46655273, 1.3203125, 1.6025391, 4.9609375, -2.3085938, -2.7929688, 1.2470703, 2.5019531, -1.3232422, -2.0234375, 1.8613281, 1.1865234, -0.66308594, 0.57666016, -1.2011719, 0.2290039, -0.0012302399, 1.046875, -0.39135742, -0.09246826, 0.57470703, -0.95947266, -3.1289062, 0.89160156, -1.5576172, 1.1455078, 1.6816406, 1.3115234, 1.1660156, 1.7529297, -0.6870117, 1.2636719, -0.5546875, -3.359375, 1.2744141, 0.5253906, 1.1191406, 0.89160156, -0.050354004, -0.45263672, 1.2763672, -1.4990234, -2.7695312, -0.38061523, -0.29003906, 0.20385742, 1.3916016, -1.0634766, -0.05895996, 1.078125, -0.98339844, -0.26416016, 0.07757568, -0.859375, 2.203125, 2.5332031, 1.5654297, 0.4482422, 1.0458984, -0.03366089, -0.053466797, -0.8461914, -1.3261719, 1.171875, 0.8730469, -0.10992432, 1.0585938, 0.18786621, 1.9511719, -0.45922852, -1.1171875, 0.9892578, -0.5488281, -1.4521484, 0.8691406, 1.2080078, 0.5078125, 1.7529297, -0.546875, 1.1552734, 0.06616211, -2.2753906, -1.078125, 0.5576172, 0.65722656, -2.0214844, 1.2841797, -1.4873047, -0.5527344, -4.0390625, 0.5546875, -2.6894531, -2.4003906, 0.30493164, -2.4980469, -2.2402344, -1.5166016, -3.265625, 0.75683594, -0.43847656, 0.5546875, 2.5703125, -0.62109375, -3.1113281, 3.1992188, -1.3417969, -0.4885254, -0.11047363, 1.4736328, -1.2138672, -0.020950317, 0.78466797, 0.16125488, 5.7578125, -0.6274414, -0.56103516, 0.7783203, 0.4814453, 1.3330078, -0.39648438, -0.64697266, -0.3869629, -0.4020996, -2.1621094, 0.02432251, -4.2539062, 1.0195312, -1.0527344, -0.6010742, 1.8779297, 2.7441406, 1.9111328, -2.1425781, -0.11291504, 0.43652344, 0.29296875, 2.4160156, -0.7993164, -0.4140625, -1.4794922, 0.18652344, -1.4736328, -3.8652344, -1.828125, 2.1699219, 0.77001953, 0.8442383, 0.70751953, -0.5830078, -0.24768066, -0.0914917, -2.7480469, 1.2792969, 1.7529297, -0.010681152, -1.2988281, 2.2871094, -1.2734375, 0.13427734, -0.5678711, 1.1816406, -1.9003906, 1.4189453, 1.0527344, 1.1621094, -2.7753906, 2.8789062, -0.8725586, 4.0664062, 2.28125, 1.3613281, -0.09539795, 0.16369629, 0.9477539, 2.3808594, 0.105407715, -0.8388672, -1.6630859, -0.06976318, -0.16870117, 0.7348633, -0.09295654, -0.9145508, -3.515625, 2.6308594, -0.5522461, -1.3222656, 0.7441406, 1.8740234, 0.22131348, -0.43823242, 2.7441406, 2.0234375, -1.6816406, 2.2480469, -0.15124512, 0.7885742, 1.5029297, -0.15917969, -0.018630981, -1.5087891, 0.73095703, 0.60839844, 0.5258789, 1.0810547, 2.1367188, 0.7753906, 0.8808594, -1.234375, -0.05621338, -0.07269287, -0.8520508, -0.61035156, 1.7236328, 0.6484375, 0.3684082, -1.9345703, -3.9238281, -1.6367188, -1.6279297, -0.5683594, -1.4609375, -2.6894531, -2.0488281, 1.1376953, -3.96875, -2.125, -0.012199402, 1.640625, -1.3613281, 0.1706543, -0.5019531, 2.0683594, 0.85546875, 0.5263672, 0.98339844, -1.9296875, 0.75878906, 0.15820312, -1.2167969, -0.22290039, -1.6923828, -1.6367188, -0.2548828, -1.7890625, 2.6621094, -1.9306641, 0.96777344, 1.4755859, 0.11767578, -2.3417969, -3.0664062, 0.41674805, 1.6435547, -1.3173828, -1.0175781, 1.3457031, -1.7138672, -0.16149902, -1.0371094, 3.9980469, -0.8041992, -2.5136719, 2.0117188, 1.9648438, 0.4194336, -1.3535156, -2.4296875, -1.3671875, 2.0976562, 0.35351562, 4.4648438, 0.7495117, 0.12371826, 2.6738281, 1.2255859, 4.0820312, -1.0488281, -0.2446289, 0.31982422, 1.1328125, 0.14294434, 2.5957031, -1.1738281, 0.58447266, -0.13232422, -0.24682617, 0.14294434, 1.1865234, 0.9526367, -1.5595703, 0.82958984, -1.3779297, -0.24121094, -0.12780762, 0.21008301, -0.16992188, 0.51171875, -0.6074219, 0.22644043, 2.5097656, 1.2216797, 0.8989258, -2.8652344, 1.0830078, 0.14477539, 0.5463867, -1.1083984, -0.74072266, 1.3740234, 0.87890625, -2.2304688, 0.0082092285, -0.29223633, -1.3134766, 0.017333984, 1.2792969, -0.22155762, -0.66015625, -1.6865234, -0.41723633, 1.2958984, 0.95703125, 2.6542969, -1.3828125, -0.6381836, 0.7949219, -0.7558594, 0.03048706, -1.9316406, 1.5898438, 0.87939453, 1.2021484, 0.008560181, -0.9951172, -1.2724609, 0.42456055, 0.20141602, 0.91552734, 4.59375, -1.7880859, 2.1386719, 0.44189453, -0.6875, -2.9316406, 0.26464844, 1.8613281, 0.04763794, -0.7636719, -1.5273438, -1.7578125, 1.2490234, 0.9897461, 1.0664062, -2.9667969, -1.5214844, -0.14782715, -0.16101074, -0.072265625, 0.014389038, 0.16760254, -1.0976562, -0.56933594, 0.17138672, -1.8046875, 0.8901367, 3.6054688, 2.6542969, -0.0019330978, 3.0917969, 2.8632812, -0.6430664, 1.140625, 0.3083496, 0.47607422, -1.4697266, -1.9638672, 1.7382812, -0.7607422, -2.0878906, 0.52490234, 0.5834961, -1.3837891, 0.79589844, -1.8017578, 0.3239746, 2.53125, 1.8740234, 2.3183594, 2.4902344, -0.5048828, 2.8417969, 2.2832031, -1.2285156, 2.4804688, -1.3183594, -0.45703125, 1.6777344, -0.68066406, -2.3652344, -0.7163086, -0.17602539, 3.1972656, 1.4296875, 1.0009766, -0.38989258, -1.7021484, -1.0419922, -2.2871094, 0.016326904, -0.18261719, 1.2568359, 0.7236328, 0.8491211, -2.7167969, 2.3730469, 0.5961914, 0.112854004, 2.8359375, -1.5732422, 0.39453125, -0.45825195, 0.16052246, -0.7841797, 0.00699234, -1.0078125, 1.3916016, 0.8666992, -0.17553711, 0.54833984, 0.99609375, -3.6796875, 2.2792969, 0.23925781, 2.3261719, -2.8632812, 1.7041016, 2.4296875, -2.9199219, 1.1455078, -2, 1.5341797, -0.39233398, 0.45361328, -0.84716797, -0.22290039, 1.4140625, 1.4384766, -2.328125, -0.25195312, -3.8945312, -0.62841797, 2.2519531, -1.1826172, -1.6503906, 1.0136719, 2.4804688, -0.13183594, 0.7011719, 2.0097656, 1.7294922, -0.14135742, -0.5756836, 0.09814453, -0.52001953, -0.45581055, 0.43676758, 2.2636719, -0.2734375, -0.6425781, -2.8515625, -1.9775391, -1.2236328, -4.0976562, -1.0791016, 1.0126953, 0.80371094, 1.2832031, 1.8525391, 2.3476562, -0.27539062, 1.8222656, -2.3222656, 0.5229492, 0.6464844, -0.77441406, 0.09436035, -3.0605469, -0.8979492, -0.28735352, -0.6826172, 0.16540527, 0.2175293, 0.17797852, 0.85058594, -0.07128906, -1.3974609, -2.0097656, 0.36206055, -0.26757812, 2.109375, 0.3864746, -1.7958984, 1.0175781, -2.21875, -2.6054688, -1.4384766, -1.4169922, -2.3144531, 0.10205078, -1.6640625, -1.2861328, 2.0234375, 0.5800781, -1.3994141, 3.3359375, -0.5283203, -0.94433594, -0.1665039, 1.9570312, 0.39575195, -0.8886719, -2.6054688, 1.4404297, 2.7441406, 0.50097656, -0.030059814, -0.53222656, -1.6064453, -1.296875, -2.5058594, -0.74853516, 0.37426758, 1.7451172, 0.7441406, 0.11798096, -1.4990234, 0.52197266, -1.6855469, -1.6894531, -0.95703125, 1.0146484, -0.50878906, 2.9316406, -0.28149414, -0.83984375, 1.2070312, 0.051635742, 0.99560547, 2.1621094, -1.4873047, 0.5830078, -2.2617188, -0.48486328, 0.84472656, -3.2226562, -1.1064453, -0.40698242, 1.078125, 0.95947266, 0.91308594, 2.1074219, -1.7851562, 0.4038086, 1.2763672, -1.9404297, -1.0498047, -0.58251953, -0.059906006, -0.095703125, 0.7636719, -0.64941406, 1.4169922, -0.53271484, 1.0634766, 1.1845703, -2.6816406, 0.52246094, 0.72802734, 2.3476562, 0.38061523, 0.55029297, 4.078125, -1.6435547, -0.22424316, 1.296875, -0.4140625, -0.5727539, -0.018463135, 2.2675781, 0.40405273, 0.8144531, -2.4609375, -0.7006836, -0.9121094, -0.23046875, -0.25683594, -1.0410156, 0.80810547, 0.8647461, 3.2988281, -0.5136719, 1.3017578, -2.296875, 0.07574463, -0.9433594, -2.9492188, -0.5810547, 2.0878906, 3.3222656, 2.4199219, -0.6723633, 1.140625, 1.7626953, 0.78271484, -2.7265625, 0.24389648, 1.5517578, -1.2724609, 1.2216797, 1.09375, 2.1523438, -0.61376953, -0.11669922, -1.9042969, -0.44506836, -0.5498047, -0.44091797, -0.37890625, -1.4873047, 2.7226562, -0.46533203, -0.15856934, -0.70703125, -1.0146484, -2.0859375, 0.3515625, -0.5961914, 2.40625, 0.23510742, 0.39868164, 1.1845703, -2.8183594, -1.1328125, -0.49169922, 1.1738281, 2.0683594, 1.0244141, 0.29541016, -1.7880859, 2.4433594, -0.32348633, 2.1484375, 2.1835938, -0.6591797, 0.22595215, -0.32470703, -1.6298828, 0.9897461, 0.5161133, 2.4726562, -2.5253906, 2.3691406, 0.009552002, 2.6953125, 0.13220215, -1.4365234, 0.9086914, -0.86816406, -0.28515625, 0.39526367, 2.7441406, -2.0019531, -1.5458984, -0.16235352, 2.171875, -2.0449219, 0.72802734, -0.4182129, -1.3447266, -1.9306641, 1.2597656, -0.4333496, -1.9912109, 1.8349609, 1.8105469, 2.0976562, 0.27514648, -2.5800781, 1.3398438, -1.0068359, -1.1474609, 0.4868164, -0.34375, 0.9555664, 0.6376953, -1.2128906, 1.7109375, 1.7197266, -1.4970703, 1.8183594, -1.8271484, -3.1816406, -1.4472656, -0.49609375, 0.16210938, 0.99560547, -4.109375, 2.3222656, -0.06112671, 0.84472656, 1.6035156, 1.8808594, -2.09375, -1.6279297, -2.6152344, -3.0722656, 2.4179688, 0.11871338, 3.1230469, -0.74853516, -1.3203125, -1.1923828, -2.3886719, -2.7675781, 1.5693359, -2.1132812, 0.19335938, -1.7509766, 0.51904297, -0.98876953, -0.8730469, -0.11663818, 0.27539062, 0.66845703, 2.0429688, -1.7890625, 2.0917969, 0.8486328, 0.16540527, -1.4951172, -2.0703125, -0.8041992, 1.171875, 3.6777344, 1.6367188, -0.061309814, -0.1550293, 0.10668945, -1.1582031, 0.51464844, 2.0117188, -0.15405273, -2.8359375, -2.0390625, 1.0966797, 2.6035156, 1.5244141, -0.43896484, -2.3222656]}, "B071ZM8YVC": {"id": "B071ZM8YVC", "original": "Brand: GasOne\nName: GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects\nHigh heat output- fully adjustable heat-control regulator knob, power with Control\nHeavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting\nSafety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\nSteel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank\n", "embedding": [-1.15625, 1.6777344, 1.2617188, -0.3293457, 0.15917969, 1.1103516, 1.1230469, -0.8051758, -0.14111328, 0.65478516, 1.3417969, -0.48779297, 0.62841797, -0.79296875, 1.0292969, -0.12109375, -0.37304688, 1.4404297, 0.85302734, 2.3007812, 2.5566406, -0.54589844, 1.421875, -2.0898438, 0.15771484, 1.203125, 3.0683594, -3.1503906, -0.69628906, -0.73583984, 2.484375, 0.6435547, 0.33935547, 0.80615234, -3.0136719, -0.3203125, -0.3840332, 1.1054688, -3.4726562, -1.46875, -1.2539062, -0.028411865, 1.7822266, 0.20800781, -1.8173828, 1.2314453, 1.5878906, 0.5913086, -2.2011719, 1.2128906, 0.113464355, 1.1181641, -0.52783203, 1.2568359, -1.2734375, -0.86865234, 1.9453125, -2.6875, 1.5615234, 0.3815918, 2.4902344, 1.1240234, -1.4765625, -0.106933594, -2.2421875, 0.053588867, -0.14331055, -0.45410156, -0.91845703, -0.36254883, 1.8876953, 0.38671875, 0.87597656, 0.22692871, -0.19494629, -0.14465332, -2.5488281, 0.9873047, 2.3378906, -1.1083984, -1.3408203, 0.38842773, 0.34326172, -0.09832764, -0.20593262, 0.7216797, -1.2246094, -1.8105469, 1.6523438, 0.25585938, -2.9394531, 3.6230469, -2.1933594, -4.0585938, 0.9423828, 0.064331055, 1.0009766, 0.9213867, 0.21777344, 0.0703125, -2.0878906, -0.6879883, -1.0322266, 1.1777344, -1.7890625, -1.4433594, 1.3583984, 1.6601562, -3.0527344, 1.2890625, -1.3544922, -1.0263672, 0.33276367, -0.6069336, 1.6162109, -1.2080078, -1.1191406, -0.08190918, 3.046875, 0.1274414, 3.8945312, -0.074157715, 0.47827148, -0.19787598, 0.4650879, 1.8544922, -1.6152344, 0.38134766, 3.1953125, -1.4921875, -0.6123047, -1.8916016, 2.3515625, -0.03540039, -0.7792969, -1.3925781, -0.32788086, -2.4863281, -2.4785156, -0.19433594, -2.484375, 1.7539062, 1.0263672, -0.27197266, -3.5410156, -0.34448242, -0.38085938, 2.9140625, 2.2714844, -1.0771484, -0.18688965, -0.93066406, 0.7314453, -2.046875, 1.8681641, 0.61376953, -1.09375, -2.2617188, 1.859375, 1.8095703, 0.86865234, -0.5366211, -1.859375, 1.5009766, 0.6801758, -1.8369141, 0.7324219, 1.3105469, -2.9394531, 0.6503906, 0.099609375, -1.8603516, -0.53466797, 1.0566406, 0.18041992, -0.8046875, -0.3322754, 2.6347656, 0.9584961, -1.1933594, -3.8046875, -3.5898438, 1.6201172, 0.21887207, 1.8105469, -0.3293457, 0.25170898, -0.40307617, 0.27319336, -0.5175781, -1.7783203, 0.3317871, 0.52783203, 0.9868164, -0.28955078, -2.0566406, -1.4023438, -1.2138672, -0.6923828, 1.8251953, -1.1230469, -0.6098633, 0.6245117, 1.3310547, -2.1757812, -0.76708984, 1.1582031, -2.3886719, 1.8427734, 1.5234375, 0.41503906, -0.18908691, 1.4550781, 0.7109375, -1.0058594, -0.99316406, 2.671875, 2.2128906, 1.6328125, 1.7080078, 0.2376709, -1.6201172, 1.5810547, -0.123413086, 1.0908203, 1.9775391, 0.33422852, 1.5097656, -2.4511719, -2.1054688, 3.8515625, 1.4902344, -0.7626953, 1.1660156, -1.1992188, 2.4882812, 0.9604492, -0.9746094, -0.14038086, 0.3154297, -0.42773438, -0.9628906, -1.2402344, -1.3427734, -1.8857422, 1.3554688, -0.5620117, -0.2541504, 3.1054688, 0.34448242, -0.9848633, 0.7109375, -0.6801758, -0.47827148, -2.1054688, 0.060913086, 0.7597656, 1.3378906, -0.4194336, -1.53125, 0.84472656, 1.8193359, -0.36450195, 1.4570312, -0.26245117, -1.25, 2.2636719, -0.79052734, -2.4296875, -0.37646484, 0.17346191, 1.1542969, 3.8808594, -1.5849609, 1.3378906, 0.041107178, -2.1855469, 3.3027344, -0.09436035, 1.890625, 1.7607422, -1.6425781, 1.65625, -1.1152344, 1.5693359, 0.7915039, 2.0683594, 0.3552246, -0.9941406, 0.028701782, 6.1875, -0.038116455, -2.0644531, 1.9980469, -0.25756836, 0.29003906, 0.6459961, 0.16516113, -0.25634766, -0.8076172, 1.2558594, 0.7216797, -0.15917969, 1.7988281, -0.24414062, -0.3930664, -0.7050781, -0.9238281, -0.21557617, -0.1307373, -0.94628906, -0.2866211, -1.2255859, 1.5244141, -3.1933594, 0.27954102, 2.2753906, -2.5195312, 0.44189453, 1.0078125, 1.5605469, 2.0566406, 1.4755859, -1.8037109, 1.609375, 1.4121094, 0.5493164, 1.4619141, 0.6118164, -1.0537109, -1.6328125, -1.796875, -0.37402344, -1.0927734, -1.71875, 0.58935547, -1.7792969, -2.9375, 1.5078125, -2.1113281, -1.75, 1.7675781, -2.1347656, 1.9677734, -1.2480469, -1.7988281, -0.9321289, -0.67626953, -0.3112793, -0.89404297, 0.8442383, 2.1855469, -1.3164062, -2.6875, -0.7001953, 0.38208008, -0.45581055, -0.43701172, -1.3974609, 0.74365234, 1.0771484, 0.78466797, -0.52978516, 0.07672119, -0.1237793, -2.8730469, 1.3730469, -3.7246094, 0.023406982, -0.6665039, 0.4423828, -0.5371094, -0.4934082, -2.4902344, -2.2246094, 0.7871094, -1.0830078, 4.1367188, -1.2490234, 2.1992188, -0.52441406, -0.92871094, 0.21008301, -1.8652344, -2.9414062, 0.58154297, 0.5395508, -1.3037109, -0.22973633, -4.2070312, 1.5810547, -1.5732422, -0.25390625, -1.453125, 0.6972656, -1.8525391, 0.50634766, -0.48657227, -1.8398438, 0.13842773, -0.7680664, 0.32006836, -2.2460938, -0.3942871, -0.5283203, -1.6220703, 0.09918213, 0.81689453, 1.2333984, -0.19506836, -0.7807617, 2.1835938, 0.3215332, -0.24560547, -0.23413086, -3.6660156, 2.328125, 1.1269531, -0.92333984, 0.9291992, -1.8115234, -0.5595703, -2.0253906, -0.8022461, 2.7675781, 0.5786133, 2.5078125, -0.24414062, -1.4892578, 0.5449219, 1.2021484, -0.38842773, -2.40625, 0.06970215, 2.5839844, -1.8759766, -0.6010742, -0.072509766, 1.6787109, -3.2519531, -0.2602539, 1.6279297, 1.0849609, 1.6484375, 1.0175781, 0.98583984, -1.5625, -1.3623047, 0.43188477, 1.2138672, -1.1542969, 0.17443848, 1.0390625, 0.15075684, -0.50878906, 1.1611328, 1.6035156, 1.953125, 3.4160156, 0.78027344, 0.7368164, -1.6884766, -0.56347656, -0.1484375, 1.4248047, -0.12976074, 2.2851562, 1.0732422, -0.9736328, -1.0166016, -1.6708984, 2.4238281, -1.6015625, 0.027832031, 1.6201172, -0.63720703, 0.6303711, 1.0654297, -1.1064453, 0.004333496, -0.62890625, 0.86279297, 1.0107422, 0.59375, 1.8613281, -0.5786133, 0.21472168, -3.0527344, 1.7890625, -0.26049805, -0.9975586, 0.7524414, 1.3115234, -3.8378906, -1.4892578, -0.24975586, -1.7792969, -0.33276367, 2.7363281, 0.20495605, -2.7753906, 1.328125, -0.0023174286, -0.6376953, 1.9042969, -1.2314453, -0.2536621, -1.9707031, -1.4677734, -1.2324219, 0.35327148, 1.2705078, 1.6875, -3.0351562, 0.9633789, -3.421875, -0.828125, 1.1386719, -0.72216797, -0.72021484, 1.4453125, -1.5498047, 1.0859375, -0.6464844, 4.3085938, -1.7890625, -2.4785156, 2.3203125, -2.9003906, -0.8486328, -1.9892578, -3.9648438, 2.0253906, -1.1748047, 0.6333008, 3.0761719, 1.0371094, -0.23535156, 1.640625, 1.5488281, -1.7011719, -1.140625, -0.11883545, 1.1767578, -1.9746094, -1.1230469, 1.3798828, 1.0722656, -1.0078125, -1.2890625, -0.27148438, -1.3232422, 0.33935547, 1.3740234, -3.2304688, -1.2089844, -1.1904297, 0.4206543, -0.58740234, -1.6601562, 0.9946289, -1.5068359, -0.15527344, -1.3115234, 1.7197266, 0.9140625, 0.06390381, -0.13513184, 5.1054688, 1.1542969, -0.12298584, 0.93408203, 0.3852539, 1.5996094, -0.32226562, -1.5527344, -1.3115234, -0.3149414, 0.65234375, 0.14624023, 0.45288086, -1.5263672, -1.7177734, 1.9277344, 2.6660156, 1.8554688, 1.4130859, 0.90478516, -1.4589844, 0.4482422, 0.1348877, -2.3808594, -0.3371582, -0.25805664, 0.5957031, -1.4716797, 0.3791504, -1.4931641, -0.3383789, -0.75097656, -0.5307617, -2.8164062, 1.0078125, 1.2451172, 0.09033203, 2.4726562, -1.0449219, -1.9365234, -0.25170898, 0.20751953, -1.15625, 0.068115234, -1.4824219, -0.026657104, 1.3007812, 0.71435547, -0.8798828, -1.2207031, 1.8974609, -0.9267578, -0.04324341, -1.1259766, 1.59375, -0.024597168, -1.2539062, 0.29833984, -1.3623047, 1.5566406, 0.7236328, 0.24768066, -0.18688965, 0.5205078, -2.4589844, 0.10095215, 1.0498047, -0.1550293, 0.79052734, 1.3964844, 0.91503906, 1.0751953, 1.40625, 0.3774414, 1.8164062, 0.9785156, 1.4833984, 0.8383789, 1.4570312, -1.1875, -1.0292969, 0.9086914, 2.2304688, 0.7680664, 4.1757812, 1.4306641, -0.92041016, 1.5722656, 1.1533203, -0.98779297, -1.2978516, -0.32348633, -1.1630859, 1.3544922, -0.7036133, -1.9902344, 0.44873047, 3.4589844, -1.5449219, 1.3857422, 1.2177734, -0.88916016, -0.9370117, -2.5703125, -0.77783203, -1.0732422, -1.4775391, 0.4711914, -2.5644531, 1.3730469, -1.9189453, 0.7285156, 1.8945312, -0.6376953, -0.10095215, 1.3818359, -1.7070312, 1.4941406, -0.9296875, -0.57128906, -2.2539062, 1.3125, 1.6279297, 1.6757812, 1.5322266, 0.26538086, 0.8754883, -1.1328125, -1.6640625, 1.0908203, 1.8798828, -1.4580078, -1.5185547, 1.828125, 0.13696289, 0.29296875, -0.89990234, -0.4724121, -1.2011719, 3.0742188, 1.9345703, 1.5283203, -0.57373047, -0.5136719, -1.8984375, -4.5234375, 0.21264648, 1.2539062, -0.52246094, -0.47094727, -1.5957031, -0.46069336, 0.52978516, -1.0732422, -0.044281006, -2.1542969, 0.025177002, 0.67333984, -0.30126953, -0.25170898, -0.6791992, -0.5239258, 1.0625, 0.043395996, 0.39453125, 1.0507812, -1.0322266, -1.6582031, 0.8574219, -1.6533203, 0.80126953, 1.3310547, -1.1894531, -0.18908691, 2.2734375, -0.96728516, -2.6660156, 1.5390625, -1.6621094, 0.20446777, 1.6113281, -1.4267578, 0.65625, 1.1103516, -1.9560547, 1.9306641, -1.3310547, 0.7285156, -0.07397461, -0.8457031, 1.4677734, 2.2382812, -0.8256836, -1.8164062, 2.6328125, -0.7006836, 0.43701172, 2.5898438, -1.0751953, -1.6113281, -1.3164062, -2.3085938, 0.38208008, -1.1679688, -1.1142578, 0.6748047, 1.1494141, 1.5283203, -0.86035156, 0.27172852, 0.066711426, 0.7524414, 0.059295654, 1.34375, -1.2480469, 3.1953125, -0.050689697, -0.31835938, -3.8398438, -2.2246094, 1.6220703, 2.6015625, 0.27783203, -1.3291016, -0.19030762, -0.09667969, 0.49072266, -0.875, 1.1191406, 2.234375, 1.0966797, -0.1809082, 1.5019531, 2.0019531, -0.9111328, 0.7661133, 0.45532227, -0.7319336, -1.1445312, 2.7773438, 2.4375, 0.29858398, 2.375, -2.34375, 2.6054688, -0.5732422, -0.81640625, 0.51220703, -1.8193359, -0.9790039, -2.265625, -2.5136719, -2.5722656, 1.1875, 1.1230469, -0.2331543, -0.20703125, 2.5234375, -0.51171875, 0.5073242, 1.9462891, 1.9960938, -1.4804688, 0.21350098, -1.5537109, -0.61035156, 1.6660156, -1.5595703, -0.30908203, 3.0644531, 1.0507812, -0.64697266, 1.7421875, 1.2275391, 3.0976562, 1.3271484, 1.0371094, 2.3535156, 0.27685547, 1.6425781, 0.6098633, 1.0234375, 2.7753906, 0.6953125, -0.74365234, 2.4980469, 0.3840332, -0.2705078, -0.9584961, 0.6635742, -0.1595459, -1.4228516, 0.30639648, 1.3740234, 1.4677734, -3.6601562, 0.75683594, -0.23425293, 0.32958984, -0.5385742, 1.6083984, -1.2617188, -1.4169922, 1.6162109, -0.3395996, 0.24157715, -0.7128906, -1.7070312, -0.9243164, -0.49536133, 1.9609375, -2.421875, 1.0419922, -1.7705078, -2.6660156, 0.16491699, 1.3056641, 0.4296875, 0.30932617, 0.26733398, 0.7246094, 0.8041992, 0.10095215, 1.5371094, -2.4121094, 0.37158203, -1.1289062, 2.8652344, -0.28979492, -1.1074219, 2.1699219, -1.3496094, -1.9072266, -3.6660156, 2.71875, 0.049621582, 0.35839844, 0.28442383, -2.6445312, 2.3203125, -0.3256836, 0.54541016, -2.9921875, 0.93310547, 1.1123047, -1.5234375, -0.5678711, 0.10583496, -0.8984375, 3.7207031, 0.51953125, -1.609375, 0.88427734, 0.7739258, 1.2119141, 0.12451172, -0.21166992, 0.5678711, 0.99658203, -1.1259766, 3.2949219, 0.3503418, -1.9521484, -0.35009766, 1.3710938, 1.8310547, 0.8955078, 0.72216797, -0.14245605, 0.059783936, 1.0234375, -0.54003906, -0.20324707, -0.75097656, -1.0625, -1.4082031, -0.5161133, -1.5185547, -2.5488281, 1.9414062, -0.11016846, -0.13879395, 0.8256836, 2.4785156, -0.8798828, 0.92333984, 1.0615234, -0.20471191, -1.8154297, 0.07470703, 1.2646484, -2.1054688, -1.3349609, 0.33862305, 0.32226562, -0.35424805, -0.7895508, 0.20471191, -0.25854492, -0.45288086, 1.2685547, 0.5, -0.98779297, -0.37329102, 0.61083984, -0.5253906, -0.017730713, 3.0078125, -0.81640625, 0.32055664, 0.12451172, -1.2255859, -0.48779297, -1.6337891, -1.0283203, 0.6894531, 2.5839844, 0.45483398, 1.7421875, -2.0175781, -2.7714844, -1.3583984, -2.6425781, 1.7207031, -0.25634766, -1.0039062, 0.52978516, 2.5371094, 2.1582031, -1.6171875, 1.1279297, -0.6098633, 0.43603516, 1.1445312, -1.8193359, 0.9633789, 0.3022461, 0.32641602, -0.41577148, 3.0820312, 2.3691406, -0.48632812, 1.2978516, 0.6015625, -0.41723633, -3.2441406, 1.4013672, -1.2128906, 0.27856445, 0.45141602, -1.2431641, 1.8007812, 2.1054688, -1.3847656, -1.3378906, -0.95458984]}, "B0098HR10I": {"id": "B0098HR10I", "original": "Brand: Weber\nName: Weber 47510001 Spirit E310 Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nPerfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system\n", "embedding": [-1.4052734, 0.23425293, 1.4042969, -0.26342773, -0.2401123, 0.85302734, -0.23657227, -1.5917969, 1.1132812, 1.0625, 2.4414062, 0.55322266, 0.30078125, -4, 0.24084473, 0.23266602, 2.4804688, 1.6708984, 0.21789551, 1.0644531, 0.5449219, 0.7705078, 2.4492188, -1.6640625, 0.8120117, 0.59033203, 3.0566406, -3.96875, -0.57177734, -2.8613281, 0.95996094, 0.53222656, -0.26953125, 2.0839844, -4.0546875, -2.0761719, -3.0742188, 1.9804688, -2.3339844, 1.4072266, 0.10498047, -1.6103516, 0.22033691, -1.0546875, -2.0917969, 1.2988281, 1.1601562, 1.0439453, -2.0664062, -0.86035156, 2.0175781, 2.6503906, -1.1367188, 0.5024414, -1.5390625, 1.3847656, 1.421875, -2.3007812, 1.3847656, 0.2644043, 2.8066406, 0.013916016, -1.7148438, -1.6171875, -0.8876953, -0.21044922, 0.61621094, 0.8544922, -0.86083984, 0.09039307, 3.46875, -0.20410156, -1.4423828, 2.8554688, -0.98095703, -1.7255859, -2.2910156, 3.0371094, -0.16088867, -0.7709961, -1.0751953, 2.34375, 2.5917969, -2.0058594, 0.50683594, 1.078125, 0.07098389, -2.1894531, 1.2128906, 0.5107422, -0.68310547, 1.3994141, -2.796875, -4.1875, 2.4765625, 0.24206543, 0.5385742, 1.0986328, -0.66796875, 1.3349609, -1.3339844, 1.9335938, -0.55029297, -0.9003906, -2.8691406, -1.4580078, 1.5732422, 0.54003906, -2.9667969, 0.03161621, -0.93310547, -0.4296875, 0.79003906, 1.5751953, 1.1953125, 1.5751953, 1.5263672, 2.0449219, 0.42089844, 0.72509766, 3.3105469, -1.1484375, 0.5830078, 0.16101074, -1.3798828, -0.4033203, -1.0488281, 1.3173828, 2.0742188, -2.3183594, -0.53027344, -0.5683594, 2.9804688, 0.9301758, -0.8828125, -1.7207031, 0.0859375, -1.8076172, -3.1152344, 0.0725708, -1.6933594, 0.6586914, 1.3789062, -2.0175781, -3.3144531, 1.1875, -0.50146484, 0.42797852, 0.028518677, -0.5463867, -0.42382812, -0.8745117, -1.1582031, -3.1699219, 2.1835938, 0.14819336, 0.1439209, -0.22546387, 3.1914062, 2.7558594, 2.1445312, -0.81591797, -2.765625, -0.64453125, 0.42773438, -1.2333984, 1.2666016, 0.65771484, -0.8754883, 1.2695312, 0.32910156, -1.3310547, -0.92529297, 0.4555664, 1.3164062, -1.4033203, -0.25219727, 1.5439453, 0.2064209, -1.1523438, -0.50097656, -1.3857422, 0.28100586, -1.4365234, -0.7060547, -0.38623047, 0.64208984, 1.1386719, 0.9584961, -2.2558594, 0.4802246, -0.3564453, 0.7944336, -0.38110352, 1.7333984, -1.46875, -1.6845703, -1.6650391, 1.6923828, 0.109191895, -0.8564453, -0.7324219, 0.71728516, 1.4453125, -0.9111328, -2.5527344, -0.18945312, -3.078125, 0.08905029, 1.2880859, 1.9902344, -1.0722656, 0.90771484, 0.28637695, 1.578125, -0.9951172, 1.8955078, 0.67285156, 0.51953125, 2.7578125, 0.9165039, -0.17138672, 1.2363281, 2.3886719, 0.9526367, 0.76123047, -0.058044434, 1.2294922, -2.859375, -1.9960938, 4.5585938, -0.17175293, -1.3251953, 0.8286133, 0.6713867, 3.0234375, 0.12902832, -0.2619629, -0.13769531, 1.4833984, 0.12109375, -0.8510742, -3.3613281, -0.89404297, -1.0751953, -0.96972656, -1.2392578, 2.2207031, 1.6796875, 1.1123047, 1.3154297, 0.41918945, 0.91748047, 2.0507812, -0.71875, 0.69384766, -1.3662109, 2.7304688, -0.053985596, -0.4897461, 1.1640625, 1.1289062, -0.32006836, 1.2998047, 0.7597656, -1.6005859, 0.80029297, 1.9746094, -0.48632812, -1.7841797, 0.1977539, -0.2401123, 0.76416016, -1.7851562, 2.6972656, 0.9394531, -1.3837891, 3.4746094, 0.6767578, 1.1650391, 0.9038086, -2.3183594, 1.046875, -3.1523438, -0.44213867, 0.8671875, 0.85009766, -2.0585938, -1.4609375, -0.13134766, 4.78125, -1.4931641, -1.9501953, 2.5742188, -1.2333984, 0.85253906, 3.3476562, 0.82470703, -1.6132812, 1.5976562, 3.0996094, 1.3574219, 0.9111328, 1.7431641, -0.19421387, -1.5498047, 0.42822266, -2.9003906, -0.2409668, 0.2788086, -0.5419922, -0.9291992, -0.85595703, 0.73535156, -2.65625, -1.6904297, 1.0009766, -2.2304688, -0.45410156, -0.29858398, 1.6542969, 0.13500977, -0.73779297, 0.046691895, -0.7836914, -0.6201172, -1.2128906, 1.7314453, -0.32055664, -1, -0.9111328, -0.012489319, -0.6567383, -2.7363281, -2.4511719, -1.2177734, -1.5917969, -2.2011719, 1.5527344, -1.3662109, -0.64404297, 0.8515625, -2.0800781, -0.66552734, -0.07556152, -1.2539062, -0.65283203, 0.21362305, -0.6611328, -0.09637451, 1.0263672, 1.3789062, -1.6318359, -2.0917969, -1.7177734, 0.3527832, 0.93408203, 1.0595703, -0.5839844, -0.09991455, 0.57373047, 1.1064453, -0.44604492, 0.6411133, 1.7060547, -1.5664062, 0.035980225, -3.8867188, 0.14648438, -2.2636719, 1.8173828, 0.9379883, 1.1113281, -3, -1.4619141, -1.7636719, -0.26171875, 4.9726562, -0.32836914, 2.5820312, -0.12780762, -0.13806152, 0.12756348, -2.9628906, -1.7333984, 0.4494629, 1.0166016, -2.5976562, -0.27075195, -1.5888672, -0.09429932, -1.7128906, -0.13879395, 0.1784668, -0.61816406, -0.51953125, 0.6386719, -1.984375, -0.42822266, -0.9223633, 0.5551758, 0.1484375, -1.6289062, -2.34375, -1.5507812, -1.0371094, -1.2382812, -1.7089844, 0.7763672, -0.19885254, 1.4873047, 2, 0.8354492, 0.7944336, 0.45166016, -3.5625, 2.40625, 0.100097656, -3.8925781, 1.1748047, -1.8671875, -0.51220703, -2.3027344, 1.0371094, 2.2382812, 1.5546875, 1.7714844, 1.6083984, 1.0898438, 0.3149414, -1.4716797, 0.8574219, -1.6669922, 1.4121094, 2.8554688, -1.9042969, -0.5214844, 1.0039062, -0.5708008, -2.3886719, -1.0986328, 2.6640625, 2.4472656, 2.5253906, 0.93359375, 1.4833984, -0.17797852, -1.3027344, 1.2441406, 0.4831543, -1.4628906, -0.36572266, 0.31469727, 1.7470703, -1.1875, 1.7236328, 0.8417969, 1.2509766, 2.5585938, 0.13745117, -0.19372559, -0.19934082, -0.11785889, 0.20568848, 1.5791016, -0.9140625, 1.5136719, 0.18469238, -0.34350586, -0.08508301, -0.8857422, -0.054107666, -0.8305664, -2.5644531, 1.9306641, -0.6713867, -0.4921875, -0.5908203, 0.0625, 1.9785156, -0.066833496, -0.48266602, -1.2011719, 0.19897461, 2.0371094, -1.7890625, -0.09655762, -1.4111328, 0.4970703, -0.21350098, -2.3164062, 0.43530273, 3.7890625, -2.5019531, -1.0927734, 1.6845703, -1.0576172, 0.14233398, 1.9169922, -1.0439453, 0.14343262, 1.4394531, -2.1621094, 0.36791992, 1.0429688, 0.32495117, -1.2890625, -1.4414062, 1.3554688, -0.54296875, 0.96484375, 2.0019531, 0.020889282, -3.234375, 0.055603027, -3.4042969, -0.8881836, 0.12805176, -1.5419922, -0.24768066, 3.1386719, 1.1542969, 0.48754883, 0.2783203, 2.9882812, -1.1279297, 0.103027344, 2.5527344, -3.4570312, 0.70996094, -4.1171875, -3.3535156, 0.90527344, -1.8378906, 0.1965332, 0.22875977, 0.5366211, -0.16821289, 3.9804688, 1.0537109, -1.8632812, -1.2441406, -0.14282227, 0.41870117, -0.08905029, -0.010627747, -0.47094727, -0.8227539, -1.7412109, -3.1757812, -1.2998047, 0.9667969, 1.7978516, 1.2773438, -3.9804688, -0.080200195, -1.2109375, -1.6230469, -1.9912109, -1.0341797, 1.6445312, -0.8754883, 0.66503906, -3.234375, 1.3613281, 1.4277344, -0.33447266, 1.8134766, 3.0957031, 0.4111328, -2.1347656, 2.8027344, -0.50439453, 3.0703125, -0.7529297, -2.7675781, -1.1972656, -0.2956543, 0.5332031, -2.2617188, 0.54589844, 0.9663086, -0.9760742, 1.7001953, 1.5283203, 1.5224609, 0.52978516, 0.10723877, -2.4589844, -0.3774414, 0.06719971, -1.0625, -2.4082031, -1.0869141, 0.93066406, -1.1982422, 0.036956787, -2.375, 0.9941406, -0.8339844, -0.43408203, -3.0527344, 2.7773438, 3.2519531, 3, 2.3671875, -1.3652344, 0.79541016, -0.87646484, 0.2644043, -1.6845703, 1.6240234, 0.18286133, -0.40283203, 3.0839844, 1.5693359, -1.1923828, 0.064086914, 0.5566406, -2.1660156, -1.328125, -2.5214844, -1.1191406, -1.6904297, -0.06506348, 0.59375, -0.40893555, 2.9316406, -0.24914551, -1.6240234, -0.06817627, 1.0087891, -1.5380859, -0.72753906, 0.97265625, -0.12548828, 0.08465576, 1.6523438, 2.1054688, 0.7050781, 1.0068359, -0.44067383, 1.4912109, 0.45751953, 0.8574219, 2.4980469, -0.3869629, -0.9428711, -0.4099121, 1.8330078, 2.5273438, 1.3740234, 3.2734375, 0.0057640076, -2.2070312, 1.390625, 0.9086914, -3.4921875, 1.34375, 1.171875, 0.64746094, 1.2451172, 0.9511719, -4.0703125, -0.39941406, 0.8198242, -0.6425781, 0.50097656, -1.2402344, -0.33154297, 2.2441406, -0.11236572, -0.12475586, -0.19055176, -0.33911133, 1.7382812, 2.5683594, 0.7260742, -1.0605469, 1.34375, 2.2460938, -0.62939453, -1.7890625, 1.9716797, -0.50634766, 0.5859375, -2.609375, 0.50390625, -0.11920166, 0.12512207, 2.6386719, 1.4462891, 2.0273438, -0.32714844, 1.7792969, -2.8183594, -0.79541016, -1.7177734, 2.2773438, -1.5224609, -0.41748047, 0.9086914, -2.7304688, 1.7119141, -2.2832031, -1.7236328, 0.06951904, 1.5068359, 1.0380859, -0.5708008, -1.9082031, 0.30322266, -1.0996094, -3.09375, -0.6508789, 0.10357666, 0.6435547, 0.77685547, 1.2373047, -1.4453125, 0.8925781, -0.34326172, 0.9682617, -1.5664062, 0.26367188, -1.1904297, -0.4074707, -0.45825195, 0.4873047, -1.1542969, -1.1542969, 1.4179688, 1.0361328, 1.8095703, -2.5019531, -1.4804688, 0.4033203, -0.7109375, -0.027526855, 2.4394531, 1.8867188, -0.8359375, 1.4345703, 1.2783203, -1.7363281, 1.6894531, -3.0898438, -1.4091797, 1.6298828, -1.4589844, 1.5419922, -0.8149414, -0.7050781, 0.10797119, -0.014961243, 1.3203125, 0.55908203, 0.029678345, -1.3056641, 0.43115234, -1.4716797, -1.4619141, 0.6386719, 0.016677856, 1.7373047, 0.86083984, -1.2685547, -1.3076172, -0.5786133, -1.9931641, 1.3359375, -2.421875, -1.1347656, -1.2314453, 1.9736328, 0.2758789, 0.32373047, -0.5541992, 3.6582031, -0.55908203, -2.0019531, 0.97021484, -0.6166992, 3.6835938, 2.6347656, 0.13061523, -1.6074219, -2.5, -0.03768921, 1.3818359, 0.6743164, -1.3046875, 0.6479492, -0.21765137, -0.35546875, -0.70703125, 2.2226562, 1.5263672, -0.07196045, 0.1907959, 1.5195312, 2.3964844, -1.3613281, 0.78271484, 1.3027344, 1.6103516, 0.0017681122, 4.4335938, 2.1464844, -2.2734375, 1.3359375, -1.6142578, 2.2929688, 0.13476562, -0.7993164, -0.6767578, -1.2949219, -1.4414062, -2.15625, -1.7744141, -3.1015625, 1.3007812, 0.43652344, -1.7763672, -1.9238281, 0.9472656, 0.0101623535, 3.7167969, -0.09259033, 1.1162109, -1.7363281, -0.21826172, -0.14587402, 0.7661133, 1.1904297, -2.84375, 1.2792969, 1.6582031, -1.4550781, -1.6005859, 0.50097656, 1.34375, 3.4921875, -0.023498535, 2.7988281, 3.8222656, 2.0019531, 2.4570312, 0.64160156, 1.6611328, 1.8076172, -1.0947266, 0.29882812, 0.8466797, -0.33081055, 0.56103516, -0.86035156, 2.2578125, -0.76953125, -0.9267578, -0.4404297, -0.17016602, 0.60009766, -2.0527344, 1.1826172, 0.9663086, 2.5664062, -1.9248047, -0.58251953, -1.1953125, -1.0322266, 0.93066406, -1.6464844, 1.3818359, 0.61035156, -0.33618164, -1.6132812, -0.09710693, 2.2480469, -4.5976562, 1.4267578, -1.1142578, -1.2246094, -1.1025391, -0.6665039, 2.4121094, 1.0615234, 0.12915039, 1.2958984, 4.078125, -0.42822266, 2.5136719, -2.7519531, -1.0244141, 0.15905762, 3.0761719, -0.0069389343, -1.3056641, 1.1494141, -1.7568359, -3.7089844, -3.7285156, 3.6328125, 1.8164062, 0.77197266, 2.0976562, -1.0507812, 2.9824219, 1.0419922, 1.2988281, -1.3398438, -1.3417969, -0.37524414, -3.3144531, -0.453125, 0.12322998, -1.4863281, 1.1806641, 0.3828125, 0.29296875, 1.234375, 1.3134766, 1.4902344, -0.30371094, 1.3857422, 1.3623047, -0.52441406, -0.51464844, 1.3388672, 0.22192383, -2.0800781, -2.5449219, 1.5849609, 1.96875, 0.5288086, -0.96484375, -0.6743164, -0.99316406, -1.8076172, -0.54833984, -0.38305664, -0.7109375, -0.88183594, 0.0635376, 1.5039062, -2.8027344, -1.1503906, 2.1699219, 1.5380859, -0.35620117, 1.9335938, 3.0703125, -1.9423828, -0.5522461, 0.66796875, 0.58251953, 0.38378906, -0.45703125, 0.95458984, 0.11932373, -0.6508789, 1.3583984, 1.6337891, 0.7583008, -0.21398926, 0.25878906, -0.5239258, -0.88916016, 0.2680664, 1.4228516, -0.54785156, -1.765625, 2.546875, 0.12121582, -2.2617188, 1.4238281, -0.51660156, 1.0947266, -0.75146484, -2.6054688, -0.9370117, 0.0029525757, -1.2382812, 1.2871094, 4.1328125, 0.7705078, 0.5161133, -3.1914062, -3.0273438, -1.1494141, -3.1582031, 1.7568359, -1.1582031, -1.6484375, -0.42260742, -0.059417725, 3.3925781, -0.79541016, -0.5292969, -0.9873047, -1.6044922, 1.0527344, -0.4958496, 2.09375, -0.10107422, -0.6958008, 1.2519531, 1.5068359, 2.8261719, 1.4140625, 0.21594238, 2.0839844, -0.8754883, -2.3496094, -0.53027344, 0.062286377, -0.3701172, 0.32495117, -1.0625, 1.4970703, 0.51220703, -1.2158203, -0.010559082, -2.4101562]}, "B005EOSOIW": {"id": "B005EOSOIW", "original": "Brand: Mr. Heater\nName: Mr. Heater MH15 Single Tank Top Outdoor Propane Heater\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "embedding": [0.28051758, 0.21325684, 1.9150391, 0.61328125, -1.0537109, 0.21264648, 1.1044922, -1.3496094, -0.40234375, 0.8364258, 0.79785156, 0.38549805, -0.84375, -2.875, 1.109375, -1.4023438, 1.4023438, 0.74365234, 2.0976562, -0.64990234, 0.43554688, 0.044281006, 0.30078125, -2.2402344, 1.8623047, 2.0898438, 4.2734375, -1.9316406, -0.47509766, 0.29882812, -0.33618164, 1.5996094, -0.82714844, 1.9404297, -0.004776001, -0.92285156, -3.8242188, 1.546875, -3.4003906, -0.7348633, -1.4863281, -0.23400879, -1.0634766, 1.5625, -1.578125, -2.0117188, 0.48876953, -1.4238281, -0.3100586, -1.1591797, -0.8598633, -0.7475586, -0.40478516, 0.31225586, -2.5039062, -1.1796875, -1.3847656, -3.6992188, 1.7646484, 0.6616211, 0.8598633, -2.03125, -2.1933594, 0.9326172, 0.6220703, 1.0439453, 0.09490967, -1.0029297, -0.18322754, 1.2011719, 2.0996094, -0.06829834, -0.6196289, -0.8598633, 0.119384766, -0.60498047, -1.9951172, 0.030136108, 2.8496094, -0.71875, -0.82421875, 2.59375, -0.41333008, 1.5195312, -1.2978516, -2.0234375, -1.2871094, 0.29760742, 2.1015625, 0.13024902, -2.6992188, 1.9648438, -0.21020508, -4.2617188, 0.9375, -1.6074219, -0.072021484, 0.4338379, -0.22497559, 2.8164062, 1.2734375, 0.9008789, 0.67822266, -1.0351562, -1.640625, -1.2294922, -0.79052734, 1.1689453, -0.7050781, 1.2207031, -2.1113281, -0.19104004, 2.1875, 0.10235596, -2.5605469, -0.70751953, 0.74072266, 2.9746094, 5.0078125, 1.7978516, 3.359375, -1.6425781, 2.9355469, -1.2246094, 0.5761719, 0.28979492, 0.41308594, 0.91503906, 1.1171875, -2.5664062, 3.1796875, 0.06378174, 0.46777344, 0.17932129, 0.34375, -1.1669922, -1.4726562, -1.8027344, -3.1191406, -2.0996094, -0.78271484, 1.0224609, 1.734375, 0.05429077, -3.2304688, -1.4267578, 0.21154785, 0.36401367, -0.7348633, -1.4414062, -0.15734863, -2.9160156, -0.35327148, 1.2705078, -0.2084961, 2.578125, -0.67822266, -0.23754883, 1.7880859, 2.4804688, 2.1757812, 1.1328125, -0.8149414, 0.9501953, -0.0044441223, -2.8808594, 0.85595703, 0.6772461, -0.89208984, 2.4707031, 0.30566406, -2.5078125, -0.16638184, -1.3701172, 0.075683594, -1.9433594, 0.84765625, 1.6044922, 0.046966553, -0.9863281, -4.0820312, -0.96875, 0.5449219, -0.9189453, 2.2578125, -1.2167969, -1.6816406, -1.1123047, -0.5698242, 0.14343262, -1.0273438, -0.17248535, -0.33544922, 0.16113281, -0.6328125, -2.3125, -2.3339844, -2.7304688, 2.9257812, -0.045532227, -1.7412109, 1.6396484, -1.4960938, -1.1455078, -1.9814453, -1.8261719, 0.95947266, -0.0042381287, 0.49682617, 1.9765625, 0.17834473, -0.56347656, 1.7871094, -0.3425293, -0.44482422, -2.2285156, 1.6669922, -0.77978516, 2.34375, 3.2246094, -0.88183594, 0.57373047, -0.15856934, 1.0537109, -1.9873047, 3.5605469, 0.9379883, 1.6259766, -1.8232422, -1.8408203, 3.0292969, 1.8398438, 0.9301758, 1.5185547, -0.07897949, 1.9970703, 1.0126953, 0.6660156, 0.3544922, 0.51220703, 0.96484375, -1.0908203, -0.13061523, -0.53564453, 0.5522461, 2.4492188, -0.68603516, 0.68310547, 0.67285156, 0.8491211, 0.42749023, -1.7744141, -0.04006958, -1.2753906, -2.5390625, 1.3564453, 1.0683594, 0.5175781, -0.10449219, -2.0351562, -0.41064453, 1.0400391, -0.16577148, 0.34155273, -0.7314453, -0.12231445, 3.1074219, 1.9453125, -0.94140625, -0.3125, 1.4033203, 3.7792969, 0.9223633, 0.9140625, 1.8066406, 1.4414062, 0.51123047, 3.9785156, -0.9741211, 0.06854248, 1.1113281, 0.020431519, 0.39526367, -0.39990234, -0.8388672, -0.36010742, -0.13244629, 0.35864258, -1.3046875, 0.35864258, 4.2539062, 0.5517578, -0.22521973, 1.5683594, -0.27856445, 2.4003906, 2.9511719, -2.1230469, -0.61621094, 0.072143555, 1.1855469, 1.3369141, -2.0859375, 0.5415039, -1.2998047, -1.6640625, 0.17834473, -0.6894531, -0.94970703, 1.0361328, 2.6738281, -1.7460938, -2.3476562, -1.1669922, -4.3671875, 0.37036133, 1.7148438, -4.96875, 1.3183594, 1.6005859, 1.4140625, 0.8149414, 0.7597656, -0.55371094, -0.072753906, -0.0041160583, 0.050689697, 2.8300781, -0.51660156, -0.64453125, 0.9213867, -0.9067383, 1.3203125, -0.94433594, -2.40625, 0.22106934, -0.24572754, -1.5039062, 2.4804688, -1.0664062, 0.7861328, 1.8330078, -1.9033203, 2.3964844, -0.5415039, -2.2148438, -1.4384766, 0.4206543, -0.16308594, -2.9882812, 0.20300293, 0.1451416, -2.1113281, -5.8398438, -0.09613037, 2.2324219, -1.9345703, 0.07965088, -1.0498047, 0.7324219, 1.2519531, -1.1152344, 0.41601562, -1.3896484, -0.9692383, -1.2744141, 0.64697266, -2.5898438, 1.6396484, -2.2480469, 0.39160156, -1.6826172, -1.2363281, -0.52441406, -1.8837891, 3.5273438, 0.47216797, 3.8085938, 0.65185547, 2.2753906, 0.2409668, 1.1884766, 1.1582031, -1.6445312, -2.0507812, -0.5258789, -1.8427734, -1.9091797, -0.43823242, -4.7578125, 0.27392578, -0.6098633, -1.2490234, 0.43481445, 0.27026367, -0.7553711, -0.8769531, -0.15014648, -1.0107422, -0.73876953, -1.3613281, -0.087768555, 0.21057129, -1.6669922, 0.9995117, 1.2255859, -0.36987305, -0.88671875, 1.2109375, 1.1767578, 0.42260742, 1.4277344, -0.5761719, 2.3378906, 1.3017578, -4.6796875, 2.3398438, 2.0292969, 0.6245117, -1.1601562, -1.7548828, -2.2207031, -1.9912109, -0.33740234, 2.3652344, 0.6171875, 2.828125, 0.8105469, -0.46362305, 0.9428711, 2.0644531, -0.6196289, 0.30078125, -1.3085938, 1.1591797, -0.79296875, -1.4814453, 1.5087891, 2.4804688, -2.7675781, -1.8359375, 2.7480469, -0.9082031, 0.7470703, 1.3496094, -0.6484375, 0.29223633, 3.5664062, 0.46362305, 1.2353516, -0.7841797, -1.2441406, -1.4169922, 0.8876953, 2.6699219, 3.6757812, -0.63720703, -0.42797852, 0.69433594, 0.4736328, 0.5698242, -1.2695312, -0.47973633, 0.79296875, 0.5185547, -0.015411377, 2.796875, 0.24633789, 1.5087891, 0.30371094, 0.70166016, 0.87109375, -0.37573242, -0.61083984, 2.6425781, -0.9111328, 0.010513306, 0.004837036, -0.47607422, -0.22399902, -0.5317383, 0.41259766, -0.73291016, 0.6723633, 1.0234375, -1.5332031, -3.5273438, -1.1953125, 1.5224609, -0.21032715, -1.1503906, -0.028869629, 1.4140625, -1.2646484, 0.029174805, -2.7558594, -1.3398438, -1.6748047, 1.1738281, -1.0498047, -2.5664062, -1.7402344, 0.14233398, -0.1875, 1.9150391, -0.38061523, -0.87109375, -0.99072266, -2.5800781, 1.4287109, -0.5834961, 1.7050781, 2.3632812, -1.9726562, -0.39916992, -2.6425781, -1.7978516, 2.6855469, -1.3164062, -0.53759766, 1.5664062, -1.3037109, 3.3769531, -1.5634766, 3.9355469, -0.8798828, -0.48461914, 1.3642578, -0.6269531, 0.8852539, -1.4287109, -4.0585938, 0.3232422, -1.4863281, -0.18884277, 4.0703125, 0.33789062, 0.49267578, -1.6328125, 1.3808594, -1.4296875, -3.1640625, -0.82666016, 0.5546875, -2.1425781, 0.53564453, 3.1269531, 1.140625, -4.8632812, -2.3535156, 0.1928711, -1.4658203, 0.3725586, 0.7314453, 1.1669922, 1.390625, -0.91015625, 2.3300781, -1.9345703, 0.91552734, -0.71240234, 0.5283203, -1.3017578, 0.039764404, 2.0117188, 0.5131836, 1.2158203, -0.124938965, 3.2382812, 1.0947266, 0.25683594, -0.19421387, 0.6533203, 0.18383789, -0.091552734, -2.6992188, -2.0292969, -1.2324219, 0.013748169, 0.91796875, 0.19592285, 0.55029297, -1.0976562, -0.8388672, 0.18127441, 1.6435547, 1.9746094, 2.3945312, -0.20898438, 1.4277344, 0.088378906, -3.0253906, -1.1835938, 0.11779785, -0.9277344, -2.0195312, 1.0126953, 0.3449707, 0.40820312, -2.3105469, -0.8022461, -0.25073242, -0.5678711, 2.9882812, 1.8837891, 0.29589844, -1.5439453, -2.2929688, -0.94628906, -0.5654297, 0.7548828, -1.4169922, 0.89501953, -0.7661133, -0.099487305, 2.8808594, -2.4980469, 1.7451172, 0.5078125, -0.05682373, 0.19726562, -1.0322266, 0.16052246, -0.59228516, -1.1386719, -0.5317383, -1.3925781, 4.203125, -0.08703613, 1.0058594, 0.3137207, 0.97753906, 0.57910156, 0.4169922, -0.2927246, -1.6474609, 3.2324219, -0.32958984, 0.5498047, -1.9814453, 0.071777344, 3.4746094, 1.9550781, 0.34936523, -0.44506836, -0.38452148, 1.4599609, -1.7373047, -0.9355469, 2.2148438, -0.76171875, -0.83251953, 3.359375, 2.0546875, 0.30737305, 0.94873047, 1.7832031, -0.40771484, 1.0644531, 0.023452759, -0.41186523, 2.0878906, -0.54296875, -4.1132812, -0.53466797, 2.3691406, -0.9453125, 2.1621094, -0.77978516, -2.1523438, -1.7675781, -2.9042969, -3.3007812, -2.0644531, -0.20507812, -0.39819336, -1.4042969, -0.17468262, -1.5722656, 1.5673828, 3.8378906, 0.15661621, -0.68066406, 0.83935547, -0.80126953, -0.89501953, -0.5991211, 0.5229492, -1.5527344, -0.5654297, 0.7998047, -0.07354736, 0.08178711, 1.9042969, 0.62060547, -1.4951172, -1.5449219, -0.2680664, 2.609375, -2.1953125, -1.8369141, -0.016967773, -0.50634766, -0.19750977, -1.1650391, -2.2519531, -1.4052734, 1.0947266, -0.3737793, 0.9238281, 0.75634766, -0.11627197, -4.0351562, -1.7490234, -2.1445312, -0.2631836, 0.18969727, 0.27148438, -0.14196777, -2.171875, 0.25341797, 1.3496094, 0.91748047, -0.47216797, 1.3710938, -1.2246094, 1.7148438, 0.43237305, -1.1914062, 0.69384766, 0.47094727, 0.40649414, 1.3085938, -0.84375, -1.8417969, -3.5800781, -1.4716797, 0.21228027, -0.8120117, 0.73535156, 0.9995117, 0.8925781, 3.9941406, 0.07489014, -2.3632812, 1.0107422, -1.0791016, -0.83203125, 2.9316406, -2.0371094, 1.9619141, 1.7734375, -2.1289062, -0.70703125, -0.5620117, 2.2109375, -0.23693848, -0.08105469, 0.12322998, 0.5913086, 0.4675293, 0.3413086, 1.8359375, -1.2265625, 1.5898438, 0.77441406, 1.3857422, -0.19128418, -3.1367188, -0.96875, 0.3137207, -1.9326172, -0.64501953, -0.5991211, 0.71240234, 0.88378906, 1.0253906, 3.1425781, 0.5161133, 1.6601562, -1.2099609, 0.34887695, -0.2919922, 0.6850586, 1.3710938, -1.9472656, -3.4296875, -2.0859375, -1.078125, 2.0566406, 1.3808594, -0.78808594, 0.6972656, -1.0898438, -0.7133789, 0.057525635, 2.296875, 0.18188477, 1.0185547, -2.6640625, 2.2441406, 1.6796875, -1.5800781, -0.6738281, -0.63671875, 2.7949219, -1.7080078, 1.8496094, 3.0683594, 0.35546875, -0.24743652, -0.46142578, 1.0488281, 1.4912109, -2.0214844, 2.6054688, -3.8535156, -1.1816406, -0.053894043, -2.171875, -3.234375, 0.30322266, 0.76953125, -0.7290039, 1.671875, 1.4472656, -0.09649658, 1.0253906, 2.6835938, -0.22351074, -0.6591797, 1.3398438, -1.3027344, -0.96728516, 3.0839844, 0.06427002, 3.5273438, 1.5859375, 1.3740234, -0.58251953, -0.28588867, -0.8457031, 1.1933594, 4.8984375, 1.5898438, 1.9990234, 0.43652344, 0.46020508, 2.3144531, 0.30273438, 3.3105469, -2.6425781, 0.116882324, 0.80029297, 0.7949219, -0.25512695, -0.30273438, 0.12817383, 0.8413086, -0.36547852, -2.4824219, -0.13586426, 1.6347656, -0.34179688, -0.70214844, 0.14892578, 0.6777344, -2.4472656, 2.1738281, -0.18383789, -0.43945312, 0.8149414, 0.41748047, 1.9267578, 0.6855469, 0.6738281, 1.8330078, -0.25878906, 3.5175781, -1.7275391, 0.85253906, 1.8886719, -0.6323242, 0.31469727, 1.4404297, 0.6953125, 1.4472656, -0.4099121, -1.8398438, -0.9785156, -1.9462891, -1.4921875, -0.7519531, -0.94433594, 0.105163574, -0.2355957, 2.3300781, 0.19592285, 1.5810547, -0.47607422, 2.2089844, -1.8173828, 2.25, 0.07122803, -1.3505859, 0.22558594, -1.4101562, 1.3046875, -1.6533203, 0.17004395, -2.203125, 1.5332031, 1.1669922, -1.109375, -0.5761719, 0.14794922, -0.98095703, 3.3632812, -1.5126953, 0.8286133, 1.6591797, -0.35546875, 0.02658081, -0.7524414, 0.57373047, -0.7866211, 1.4453125, -0.33251953, 2.6894531, 1.2109375, -0.6489258, 0.30029297, 0.8276367, 1.1816406, 0.55371094, 1.9794922, -0.80322266, 1.5175781, 0.25219727, -0.9272461, 0.5126953, -0.6015625, 0.14123535, -1.4169922, -0.9140625, -1.1767578, -1.5039062, 0.55126953, 0.6303711, -1.5048828, 0.8076172, 2.6523438, 0.15368652, -0.24951172, -1.8662109, -1.5234375, -0.3701172, -1.5585938, -0.94433594, -0.3059082, 1.5039062, 0.31347656, 0.8540039, 0.5336914, 0.29052734, -0.3557129, -1.8847656, -1.5029297, 0.8984375, 2.1230469, -0.57373047, 0.84228516, 0.101379395, -0.34960938, -0.6845703, 2.0019531, 1.1484375, 1.0449219, -1.4003906, -0.6777344, -1.8603516, 1.0605469, 0.5463867, 2.9804688, 1.3710938, -0.52685547, 1.6582031, -2.2246094, -2.7792969, -2.2578125, -2.0742188, 0.6748047, -0.42333984, -0.89453125, 0.13085938, 2.4863281, 1.9511719, 1.2705078, 0.37719727, 0.51171875, 0.088378906, 1.7099609, 1.5810547, 1.0019531, 0.5161133, 1.0644531, 0.20263672, 1.3496094, 0.28857422, -0.08795166, 2.1542969, 0.7504883, -0.15332031, -3.0996094, 0.28442383, -1.7255859, -0.66064453, 0.023345947, -0.48583984, 0.9658203, 1.1904297, -1.7822266, -4.40625, -0.89990234]}, "B07VW6QZF5": {"id": "B07VW6QZF5", "original": "Brand: GQC\nName: GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)\nDescription: \nFeatures: \u3010Healthy and Safe Choice\u3011These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture.\n\u3010High Temperature Resistance\u3011Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500\u2109, won't burn or shrink, go through microwave quite well\n\u3010A Good helper to BBQ & Baking\u3011Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg.\n\u3010Secret to Save Money\u3011Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities\n\u3010No Mess, Easy to Clean\u3011Dishwasher safe means clean-up is a breeze! Don't waste anymore time scraping the \"crud\" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!\n", "embedding": [0.30029297, 0.4633789, 0.35839844, -0.5600586, 0.49365234, -0.8256836, 1.40625, -0.88720703, -0.08557129, 2.1289062, 0.1295166, -1.0703125, 0.7524414, -3.5898438, 2.2519531, -0.27978516, 0.9741211, 2.4648438, 2.2753906, 0.9370117, 0.77197266, 0.19934082, -0.40942383, -1.3769531, 0.03942871, 1.7109375, 3.1542969, -1.1044922, 0.6303711, -1.3818359, 2.4589844, 1.1601562, 0.6123047, 2.0078125, -3.6289062, -1.6455078, -1, 3.671875, -0.037994385, -0.45874023, -1.2109375, -4.03125, 1.4228516, 1.5615234, -2.7792969, 1.4013672, -0.5131836, 2.3730469, -0.086242676, -4.3828125, 1.8300781, 0.2980957, 1.9433594, -0.24438477, -2.1796875, 1.6103516, -0.94384766, -1.2167969, 0.07269287, -0.20617676, 0.67041016, -1.359375, -0.12902832, 1.5673828, -0.77197266, -2.1347656, -0.01373291, -2.6230469, 0.03955078, -2.6738281, 0.5600586, 0.29492188, -0.78515625, 0.45581055, -0.92871094, -0.011734009, -1.6113281, 0.0826416, -0.40893555, -1.578125, -0.16064453, 2.5820312, -0.041381836, -1.75, -0.75, -1.5527344, -1.6269531, -0.0446167, 1.8955078, 0.20056152, -0.4194336, 4.0625, -2.3789062, -3.3125, 0.30249023, -2.7675781, 1.0009766, -0.19726562, -0.7685547, 1.9160156, -1.9238281, -1.0546875, -0.21789551, 2.7480469, -4.015625, -3.1738281, 2.4726562, -0.5175781, -0.22937012, 0.60595703, 0.028564453, 1.03125, -0.7519531, 0.41333008, 2.265625, 1.3046875, 1.1923828, -0.26782227, 1.875, 1.2587891, 3.8046875, 1.6767578, -0.21923828, -3.6191406, 0.83203125, -0.20544434, -0.43530273, 1.0546875, 2.6074219, -3.1523438, 0.5566406, -0.45043945, -1.2363281, -1.5517578, -1.3789062, -1.7587891, -0.34423828, 0.51220703, -2.7910156, 1.5019531, -0.21032715, -0.85058594, 1.2314453, -1.4082031, -1.4863281, 0.17468262, -1.796875, 2.5820312, -1.0322266, -1.4736328, -0.24255371, -0.25756836, 2.6953125, -0.78515625, 0.92871094, -0.52685547, 0.2368164, -0.5654297, 0.7207031, 1.1621094, 0.63378906, -2.6894531, -1.0957031, 0.050445557, 1.2919922, -2.1269531, -1.625, 1.7822266, 0.28710938, 2.3769531, -0.671875, -2.0703125, 0.9433594, -0.73095703, 1.1503906, -0.9213867, -0.3137207, 3.0976562, 0.20495605, -1.2578125, -0.47851562, -3.3242188, -0.89501953, 1.6269531, -0.77197266, 0.26000977, 0.20043945, -1.3398438, 0.27319336, -1.6367188, -0.019515991, 3.0742188, 0.88916016, 0.6328125, -1.7363281, -0.6557617, -0.22619629, -2.0371094, 1.5898438, -0.9038086, -0.39794922, -0.66552734, -1.1787109, 0.109313965, -2.46875, -2.8769531, -0.55126953, 0.72314453, 2.5253906, -0.6821289, -0.15197754, -1.5390625, 1.6845703, 2.1777344, -1.0732422, -0.63427734, -0.79003906, 0.1027832, 1.0712891, 2.2675781, -1.1972656, 0.25878906, 0.05645752, 4.5429688, -2.0898438, 1.3857422, 0.16430664, 2.5703125, -0.83203125, -1.5527344, 2.3320312, 0.060668945, -0.010398865, -0.80371094, -0.3071289, 1.8115234, 1.7304688, -1.5996094, -1.1835938, -0.5996094, -1.6054688, -0.7167969, -2.7480469, -1.9345703, -0.51708984, -0.060424805, -0.28051758, 2.1308594, 2.0546875, -1.5439453, -0.014045715, 4.1289062, 0.5527344, -0.109802246, -0.7519531, 0.3474121, 0.96972656, -0.23046875, -3.1074219, -0.8442383, -3.1171875, -0.26611328, -1.265625, 1.8095703, 1.3623047, -0.22314453, 2.6699219, 0.13830566, -1.8642578, -1.1259766, 0.54248047, -1.2275391, -0.47045898, -0.48364258, 1.5390625, -0.07904053, -1.7148438, 0.6845703, 0.7651367, -1.0761719, -0.39453125, 1.5478516, 0.8227539, -0.40942383, -3.21875, 0.5292969, -2.3242188, -0.7392578, 1.6318359, -0.30029297, 2.7851562, 0.54541016, -1.8427734, 2.7382812, -0.39038086, 0.37597656, 2.0078125, 0.10058594, -2.4179688, -1.0332031, 0.7553711, 3.6230469, -1.2626953, 0.9790039, -0.89697266, 0.097351074, 2.5546875, -2.0644531, -0.7290039, 2.7753906, 1.1787109, 0.25854492, 1.3134766, 0.18835449, -2.96875, -1.8857422, 0.7207031, -1.9980469, 0.109313965, -1.5810547, 0.11029053, 0.45751953, -0.09033203, -3.3046875, -0.42626953, 2.140625, -0.16235352, -0.69873047, 0.1394043, 0.3881836, 1.2382812, -1.8291016, 0.9848633, -0.2541504, -2.2519531, -1.4599609, -1.3564453, -1.0761719, -1.4355469, 0.4255371, -1.1933594, 0.027923584, -1.546875, 0.11816406, -1.3339844, -2.3007812, -2.7792969, -0.9663086, 0.21496582, 0.72753906, 0.7607422, 0.73876953, 0.38378906, -3.9550781, 1.2431641, 1.1699219, 0.38012695, 1.4345703, -1.9804688, -0.26123047, 0.97021484, 0.34692383, 0.734375, -0.116760254, -0.012641907, 1.2382812, -3.4335938, -3.2988281, 0.5859375, -1.4169922, 0.35180664, -0.3984375, -0.9003906, -1.3554688, -0.13977051, -1.4658203, 1.0742188, 3.7402344, -0.13671875, 1.2197266, -1.0888672, -0.5776367, 1.1308594, 0.28979492, -0.546875, -2.2871094, 0.121032715, -2.0078125, -2.0625, -1.859375, -1.1513672, -0.66308594, 0.08483887, -0.08337402, 2.6425781, 0.8574219, 4.6640625, -2.6210938, -0.07989502, 0.019256592, 1.0830078, -2.0507812, 0.04763794, -0.5371094, -1.2910156, -1.2822266, -3.3339844, -1.2392578, 1.2226562, -0.8696289, 1.0244141, 1.1757812, 0.37353516, -0.21289062, 0.7426758, -1.2167969, 0.7080078, -1.5869141, -0.9609375, 0.63720703, 0.8222656, -3.1464844, -1.5078125, -1.2695312, 3.5371094, 0.105773926, 0.88720703, 1.9023438, 0.40771484, 2.7851562, 1.9101562, 0.63378906, -0.6010742, 1.8037109, -0.30395508, -0.9316406, -2.6230469, 1.5458984, 0.66845703, -1.5185547, 0.45703125, 1.1621094, 1.328125, 0.7675781, 0.5566406, 0.15698242, 0.09320068, 0.08648682, 4.1640625, -0.7861328, 0.33666992, -1.1201172, -0.020187378, 0.6015625, 0.57910156, 3.0078125, 1.6826172, 1.0888672, 0.53759766, 1.2626953, -1.5576172, -2.9824219, 0.52734375, 1.7021484, 0.9604492, -1.1074219, 2.75, -0.18615723, 0.36279297, 5.0742188, -1.1669922, -0.42089844, -2.015625, -0.52978516, 0.89501953, -0.054870605, -0.3486328, -1.4433594, -2.0917969, -0.8178711, -2.9121094, 0.80615234, -2.3476562, -1.7558594, 1.4980469, -1.8574219, -3.9882812, 0.96777344, 3.1738281, -0.9604492, -1.0673828, -1.4853516, 2.6679688, -1.8017578, -1.2910156, 0.49365234, 2.8476562, 0.65478516, 2.3535156, -0.6118164, -1.7958984, 1.7285156, -2.6054688, 1.3164062, 1.6142578, -3.0488281, -1.5107422, -1.9755859, 0.10076904, 0.15454102, -0.7631836, -0.22619629, 2.0039062, -0.9375, 1.203125, -1.5859375, -0.017562866, -0.2154541, -1.7773438, 0.12390137, 0.26123047, 1.6894531, 0.32055664, -0.32958984, 3.6660156, 2.1738281, -2.0488281, 1.3212891, -2.8066406, -0.9321289, -1.0039062, -3.4902344, -0.4140625, -0.51123047, -1.2763672, 3.9433594, 0.3305664, 1.5136719, 4.2148438, -1.0488281, -1.2011719, 0.6171875, -2.7324219, -1.0996094, -0.21020508, 1.1064453, 2.9707031, 1.9023438, -0.6611328, 0.24499512, -1.2949219, -2.2148438, 0.9765625, -0.63378906, 0.8847656, 0.12915039, -2.8984375, 0.12451172, 0.64697266, 0.8022461, -1.2177734, 0.9033203, 0.5761719, 0.61279297, 3.6367188, -1.4404297, 1.2783203, 0.29614258, 0.10021973, 0.28930664, 0.47021484, -0.3010254, 1.0664062, 3.9863281, -0.47875977, -1.8837891, -0.48364258, -0.029876709, 1.6835938, -1.1484375, -1.2373047, -0.70947266, -1.40625, 0.22546387, -0.26586914, 2.3359375, 1.0048828, -0.66845703, -2.1464844, -0.76123047, -0.77734375, -2.96875, -1.6972656, -0.10772705, -0.009719849, 1.6933594, -1.1445312, -1.5966797, 1.4169922, -1.3046875, -0.09118652, -2.9394531, 2.7910156, 0.29882812, 1.5664062, 5.0976562, -4.3710938, 0.75341797, 1.0449219, -3.8867188, -0.54785156, -0.023040771, 0.3071289, -1.53125, 2.7753906, 2.3242188, -0.6484375, -1.4433594, 1.4208984, -0.21875, -1.2988281, -2.4609375, 2.4257812, -1.2587891, 0.14367676, 1.0615234, -0.38208008, 3.0214844, -0.44750977, 1.7587891, 2.390625, -1.4414062, -0.3552246, 0.69873047, 0.04626465, 0.37475586, 1.3017578, 0.42236328, 1.7363281, -1.0761719, -0.69970703, 0.119262695, 1.2080078, -2.4238281, 1.84375, -0.5576172, 1.8886719, -1.28125, -1.453125, 2.3242188, 2.8769531, -0.33276367, 1.2509766, -0.10571289, -1.5791016, 1.1201172, 1.5058594, -0.54833984, 0.44750977, -1.0820312, -1.1201172, 1.7841797, -2.0117188, -1.4980469, -0.65527344, 0.5058594, 1.1533203, 0.22912598, -0.16357422, 0.24047852, 1.8408203, -1.9580078, -1.5996094, -1.5419922, -1.421875, 0.20776367, -0.85791016, 1.6591797, -0.36523438, -0.26464844, 3.65625, -0.56933594, -1.6132812, 1.6064453, -1.4960938, 1.0761719, 0.40625, -1.0419922, -2.1738281, -0.93847656, -1.8164062, 0.21289062, 2.1132812, 0.7504883, 0.3449707, -2.3242188, 2.7382812, -3.1523438, 1.8408203, -1.9736328, -0.44921875, 4.2578125, -4.3554688, 0.19213867, -2.234375, 1.765625, 1.6123047, -0.0769043, 2.7011719, -2.2851562, -1.1357422, -0.61816406, -1.0351562, -1.6972656, -1.2714844, 1.1015625, 1.8066406, -1.4199219, -1.0341797, 0.042114258, -0.95410156, 0.30297852, 1.4365234, -0.30908203, -0.14697266, -2.0273438, -2.1445312, -2.3203125, 0.42260742, -0.29663086, 0.9448242, -1.1015625, 3.9199219, -0.9091797, -1.6757812, -1.1650391, -0.69677734, -3.609375, -0.81591797, 1.6318359, 0.5332031, 0.44848633, -0.0076942444, -0.5366211, -1.0009766, 4.2226562, 0.3569336, -0.13232422, 2.0507812, 0.49243164, -0.91845703, -1.1884766, -3.4570312, 0.6044922, -3.96875, 0.4560547, 0.33447266, -3.6542969, 0.45874023, 2.6347656, -1.7646484, -0.20214844, 0.10369873, 1.6464844, 0.7871094, 1.0722656, -1.1171875, 0.041259766, -2.6132812, -3.171875, 0.11212158, -1.1113281, -1.5966797, -1.1757812, 0.5908203, 2.4023438, 0.2626953, 1.6494141, 1.1289062, 0.8256836, -1.2568359, 1.6240234, 0.47070312, 0.09509277, 0.33203125, 0.32006836, -1.3359375, -2.6660156, 2.6835938, 0.5390625, 0.7006836, 1.6328125, -1.7246094, -2.1523438, -1.0947266, -0.62158203, 0.63183594, 2.8828125, 1.3955078, 0.3996582, 0.47265625, 0.65185547, -2.7421875, 1.3212891, 1.7705078, 2.7988281, -1.3007812, 4.703125, -0.5185547, -4.09375, 1.4238281, -0.2097168, -0.37524414, -0.76123047, -0.91796875, 0.3894043, -1.5478516, -1.1972656, -0.4831543, 0.34106445, -2.4765625, 1.9228516, -0.6044922, 0.9716797, -0.43530273, 2.4765625, 0.74072266, 2.2128906, 3.7382812, -0.5332031, -1.0976562, -0.9482422, -1.0224609, -0.040161133, 1.6601562, -0.55126953, -1.1982422, 0.23461914, -0.94433594, -0.48657227, 0.69628906, -0.14465332, 1.46875, 1.4130859, 1.7060547, 4.5429688, 1.8212891, 2.2382812, 1.4628906, 2.7421875, 2.0820312, 1.4033203, 0.66015625, 3.2207031, 1.8476562, 1.0546875, -1.4853516, 2.4101562, 1.2724609, -0.027145386, 0.55810547, 0.43725586, -0.43530273, -1.5078125, 1.5410156, 0.52246094, 0.7861328, 0.5439453, 0.4897461, -2.4648438, -1.2705078, -1.7324219, -0.072753906, 3.984375, -0.33618164, 1.0732422, 1.9140625, 1.8759766, 2.5820312, -2.9375, 0.23388672, 1.6640625, -0.010421753, -0.13134766, 2.2304688, -0.30200195, 1.3408203, 1.2763672, 1.2705078, 0.68115234, 1.1923828, 1.1884766, 0.81591797, 1.4335938, -1.4648438, 2.1230469, -1.7783203, -1.4287109, -0.43579102, -0.6689453, -0.703125, -1.9814453, -0.17993164, 1.359375, 1.9208984, 0.97265625, -4.125, -0.15319824, 0.8676758, 2.2910156, -3.4746094, 0.4033203, 0.104003906, -4.3085938, -1.4023438, 1.765625, 0.77978516, 2.6855469, 1.3310547, -2.3652344, 1.3964844, 0.8496094, 1.3994141, 1.2421875, 0.49902344, -1.3603516, 1.8955078, 0.3239746, 4.0703125, 1.6894531, 1.8808594, 0.69189453, 0.79345703, 2.4824219, 1.6123047, 0.7011719, 1.4414062, -0.27246094, -0.6582031, 0.76123047, -0.8154297, -1.28125, -1.7236328, -2.3554688, -0.7084961, -0.5932617, -2.5488281, 0.16369629, 0.2763672, 0.7607422, 0.67626953, 0.44433594, -1.984375, 1.9345703, 1.8828125, -1.1308594, 0.40014648, -1.1025391, -0.0132751465, -2.1796875, -1.4980469, 1.8398438, -0.0262146, 0.7060547, -1.0175781, -0.23742676, 0.8330078, 0.010528564, 0.5073242, 1.5859375, -2.9648438, -1.1455078, 1.0693359, -1.5009766, 1.8076172, 1.8974609, -0.99609375, -0.7866211, 0.11608887, -2.7421875, -1.5517578, -0.34570312, -1.7490234, 0.69628906, 3.6289062, 2.4960938, 0.33081055, -1.6835938, -1.3291016, 2.0136719, -0.3720703, 2.1328125, -0.07977295, -0.72802734, 1.1796875, -1.8164062, 2.5097656, -0.4074707, -2.2324219, -1.0214844, -0.30078125, 0.3564453, -1.7382812, 1.5878906, 1.1171875, 0.45117188, -0.3918457, 2.7539062, 3.5820312, -0.5878906, 2.7011719, 1.9726562, 0.8486328, -1.9423828, 0.51220703, -0.6015625, 1.9492188, 2.1660156, -0.3894043, -0.06707764, -0.47875977, -0.8725586, -2.4648438, -0.79003906]}, "B081J6T3BZ": {"id": "B081J6T3BZ", "original": "Brand: ThermoPro\nName: ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat\nDescription: \nFeatures: 4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill\u2019s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe\n500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard\nStandalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance\nOptimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of \u00b11.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required\nSmart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat\n", "embedding": [-4.2851562, 1.3417969, 4.0429688, 1.4638672, -0.6875, 0.92871094, -0.33813477, 0.97558594, -0.31835938, 0.8339844, 0.8984375, 0.35913086, 0.05505371, -1.1152344, 0.60595703, 0.5986328, -0.45654297, -0.022415161, 1.7509766, 3.1289062, 0.7836914, 1.0341797, -0.6376953, -0.94628906, 1.5234375, -1.1064453, 2.1953125, -1.9316406, -0.5151367, -1.5683594, 2.2480469, 3.0898438, 0.93066406, -0.13256836, -0.89404297, -1.3964844, -1.0136719, -0.5683594, 1.6103516, -0.18029785, -0.35668945, 1.6445312, 1.1767578, 1.6484375, -2.9921875, -2.2558594, -0.8261719, 2.7832031, -1.2880859, 0.117370605, 0.1607666, 1.4912109, -1.7685547, -0.11413574, 0.76904297, 0.2290039, 0.5463867, -2.453125, 0.41357422, 0.75, 1.0751953, 0.2277832, -1.8476562, -0.09863281, 1.6513672, 0.15686035, 1.4316406, -3.6171875, -0.2631836, -0.46264648, 0.4453125, 1.4111328, 0.33325195, 0.62939453, 1.1455078, -1.2783203, -1.6933594, -0.1427002, 1.6103516, 0.41992188, -0.6660156, 2.7285156, -0.81933594, -1.4960938, 0.90185547, -1.9033203, -0.7788086, 0.9189453, 2.421875, -0.28027344, -1.0673828, 3.0917969, -1.9150391, -3.2011719, 2.0273438, -1.1767578, -1.3369141, -0.39624023, -1.3261719, 2.2109375, -0.05203247, -1.8486328, 0.68359375, 1.7021484, -2.21875, -2.3476562, 1.6347656, 1.2441406, -3.4648438, -1.2763672, -1.9248047, 1.390625, -0.5957031, 0.8066406, -1.1621094, -0.41357422, -0.22473145, 0.25195312, -0.48217773, 1.4228516, 2.8652344, -1.2597656, 0.49609375, 0.55615234, -0.45947266, 0.9790039, 1.7998047, 0.0647583, 1.6025391, 0.7182617, -2.3105469, -1.0966797, -0.06726074, -0.93359375, 2.4628906, -2.2617188, -2.2617188, -1.9960938, -2.3164062, -1.2929688, -1.9091797, 0.4465332, 0.06518555, 1.5039062, -1.8994141, -1.3896484, 0.72265625, 0.3022461, 1.5234375, -0.64404297, 1.4902344, -1.6865234, 0.35327148, -0.22473145, 1.8408203, 0.8642578, -0.31225586, 0.21569824, 3.3242188, 1.0693359, 0.8095703, -1.5039062, -1.2324219, 0.33911133, 1.3847656, -0.1640625, -2.9140625, 1.7978516, 1.8095703, 2.4609375, 1.7070312, -1.2958984, 0.9482422, -0.2043457, -0.032806396, -3.2128906, 2.7890625, 2.2402344, 0.2253418, 1.2441406, -0.38330078, -1.1054688, 0.7548828, 1.1591797, -1.1367188, -2.2363281, -1.1298828, 1.0546875, 2.5917969, -2.8632812, 2.4726562, 1.9677734, 1.2363281, 0.72558594, 0.20251465, -0.099365234, -0.62939453, -2.46875, 0.045288086, 0.57666016, -1.1552734, 0.68847656, -1.5351562, -2.0976562, -1.4873047, -1.7382812, 0.1262207, 0.93066406, 0.58740234, 2.0117188, -0.030090332, -2.4785156, 0.49780273, -0.94189453, 0.29663086, -2.7890625, 1.5976562, 0.7084961, -0.11090088, 1.7841797, -0.90527344, 0.85498047, 0.44750977, 2.6308594, -1.3808594, 2.8378906, -2.1953125, 1.2998047, -0.80810547, -1.8701172, 3.1230469, -1.078125, 0.99072266, -1.796875, -0.21826172, 1.703125, 1.4589844, -1.6279297, -0.4050293, 0.8979492, -0.09954834, -1.6347656, -0.56640625, -2.0839844, -1.5839844, -1.7070312, -1.3154297, 2.953125, 2.0664062, -0.3095703, 1.0361328, 0.58935547, 0.3798828, 0.2993164, -0.8046875, -0.4296875, -1.2861328, 1.6640625, -3.7792969, -0.8208008, 2.4121094, 0.24243164, -1.3662109, 1.7197266, 2.4628906, 0.6777344, 5.0859375, 2.765625, -0.25341797, -1.2275391, -0.17773438, -0.7285156, -1.6230469, 0.44702148, 1.8925781, 0.25463867, 0.55615234, 0.47338867, 1.1845703, -2.5722656, 0.01486969, 1.9003906, -1.0263672, -0.2993164, 0.8725586, 0.27197266, -1.3417969, -1.9580078, -0.39013672, 1.4130859, 2.9882812, 0.7553711, -2.5625, 2.0117188, -3.1035156, 1.2988281, -0.18103027, -0.42578125, 1.8007812, -2.4570312, 2.0371094, 0.36767578, -2.1835938, -0.7841797, 0.8466797, 0.5625, 1.3603516, -1.2871094, 1.8574219, 0.50683594, 1.3330078, -1.5703125, -2.71875, 0.34545898, -1.3105469, -3.5605469, 0.14013672, -1.7158203, 1.1005859, -0.71972656, 1.2929688, 1.8447266, 1.8652344, -1.5683594, 0.4868164, 2.4492188, 0.29589844, 1.171875, 1.328125, -0.17895508, 1.5976562, -2.0839844, 1.0732422, -0.94628906, -2.9570312, 0.3828125, -0.56103516, -2.2441406, 1.5126953, 0.39624023, -2.59375, 2.5957031, -1.4804688, -0.003818512, -1.0908203, -2.6269531, -0.24389648, -0.6777344, -0.7084961, -0.41430664, 0.53222656, 0.35864258, -0.06951904, -2.1757812, 1.4990234, 0.5761719, -1.0517578, -0.3178711, -2.3203125, 0.97558594, -1.8486328, -0.2788086, -0.38134766, 1.3212891, 0.5415039, -1.8134766, 1.7636719, -0.74316406, -0.4453125, -2.6855469, 0.30297852, -2.0917969, -0.46118164, -1.9443359, 0.19274902, 1.1064453, 0.3857422, 1.0019531, -1.2558594, 4.1445312, -2.6855469, 1.3212891, 1.984375, 1.5058594, -1.6279297, -2.0488281, -0.43237305, -2.2246094, -0.74853516, -3.5742188, 0.22583008, 0.08258057, 2.2519531, -0.07458496, 0.070007324, -1.4638672, 0.8496094, -1.9101562, -2.5664062, -0.5546875, 1.3535156, -1.5351562, -1.1171875, -2.2441406, -0.40649414, -1.4775391, -2.1210938, 1.0791016, 1.6103516, 0.6821289, 3.5097656, 1.7441406, 0.23034668, -1.0195312, 0.21142578, -4.1484375, 0.22460938, -0.002828598, -2.9609375, 0.036712646, -0.09802246, -0.9082031, 2.2285156, 0.19384766, 3.78125, 1.2851562, 4.1445312, 0.013656616, -0.06414795, 2, 2.0117188, -0.52734375, -0.06121826, 1.5029297, 1.3007812, -3.6367188, -1.7412109, -0.09979248, 1.0136719, -1.9970703, -2.5175781, 0.30908203, 2.2109375, 3.6894531, 1.0585938, -1.2470703, -0.78759766, -1.9453125, 1.6064453, -0.8027344, -1.1630859, -1.4736328, -0.28173828, 0.8691406, 1.6201172, 0.10498047, 3.5917969, -0.47973633, 2.4921875, 0.21679688, 0.7373047, -1.9912109, -1.6777344, 0.024398804, 1.1513672, 1.5263672, 1.4785156, 0.8725586, -0.88671875, 0.8066406, 0.45263672, 1.1132812, -1.8613281, -0.8178711, 0.79248047, 0.3527832, 0.46679688, 0.82958984, -0.15698242, -1.4814453, -2.0390625, -1.2685547, 0.37597656, -0.63134766, 2.0234375, -0.45166016, -1.3710938, -2.2402344, 1.1992188, -0.029876709, -0.051635742, -0.9970703, 0.7788086, -2.15625, -1.4335938, 1.1201172, 1.1035156, -0.28222656, -0.9609375, -0.48706055, 0.5004883, -1.0039062, -1.1591797, 0.63671875, 1.4970703, -2.4882812, -2.1914062, -0.060516357, 2.4121094, 1.5527344, 0.32177734, -0.023376465, -0.11828613, 0.24401855, -1.2626953, -4.1132812, 0.49047852, 0.8828125, -2.03125, 1.6582031, 0.33276367, 2.5839844, 0.9794922, -1.3652344, 1.2539062, 0.76660156, -2.2109375, 0.2578125, -3.6015625, -1.2226562, -2.8964844, -3.7246094, 1.7392578, -0.23181152, 2.1386719, 1.7773438, 0.47875977, 0.8930664, 2.3183594, 1.9355469, -1.5390625, -1.6679688, -1.0751953, -1.3808594, 0.2475586, -0.95751953, 6.21875, 0.9238281, -0.8208008, -1.3085938, -0.9375, 0.33032227, 1.8164062, 1.2578125, 0.69921875, -0.18591309, -0.029037476, -0.40722656, -0.1616211, -0.33813477, 0.5288086, -1.6767578, 0.50683594, -0.45874023, 0.92041016, -1.8837891, 1.1210938, -3.0332031, 1.6816406, -0.7529297, -0.010307312, -0.65185547, 1.7519531, 2.3398438, 0.07989502, -1.0488281, -0.8881836, -1.3183594, 1.4443359, 0.5175781, -1.3496094, 0.2607422, -3.4003906, -1.1982422, -0.9404297, -0.7885742, 0.85302734, 2.3789062, -3.1425781, -0.7758789, 0.15515137, -0.69628906, -2.515625, -1.8710938, -1.6640625, -0.8457031, 0.93847656, 1.5488281, 1.0371094, -1.4785156, -0.36450195, -3.3339844, 2.5859375, 3.0371094, 1.3964844, 3.2792969, 0.5229492, -0.98828125, -0.6455078, -1.0380859, -1.0732422, -0.6303711, 1.3183594, 0.097229004, 0.35327148, 1.6005859, -1.1328125, -1.6708984, 1.1347656, 0.43530273, 1.2783203, 0.17749023, 1.1035156, -1.4042969, 1.3007812, 4.546875, 0.039764404, 4.5117188, -0.4345703, 2.546875, 0.31469727, -1.0927734, 0.6152344, 0.3425293, -0.08453369, 1.2451172, -0.37353516, -0.24804688, 2.9628906, -1.6386719, 0.23400879, 0.2758789, -0.010223389, 0.6347656, 2.390625, 0.48779297, 0.890625, -2.3261719, -1.7255859, 2.9667969, 1.9707031, 0.35864258, 4.5, -0.4855957, -1.4033203, -0.14819336, 2.59375, -1.609375, 1.9169922, -1.4423828, -2.2148438, 0.79345703, -0.40649414, -3.2519531, 0.72558594, 4.0234375, -0.27270508, 2.3535156, -1.8164062, -1.1845703, 2.2148438, -3.5175781, -0.4296875, 0.4104004, -1.0439453, 2.9101562, -0.7338867, -1.7441406, -1.3798828, 2.6894531, 1.6894531, -2.1210938, -1.6611328, -0.22351074, -3.8046875, -1.6699219, 0.38964844, -1.9902344, -3.9277344, -0.15270996, 0.3942871, 0.11291504, -1.28125, 0.375, 1.6494141, -0.5332031, -0.30395508, -0.6323242, 2.8789062, -1.3076172, -0.41674805, 0.59472656, 1.0976562, -0.86279297, 0.6928711, 0.03527832, -1.2861328, 1.5849609, 1.5029297, -0.19763184, -0.66748047, -0.13134766, -2.2109375, -3.3671875, -1.7265625, 0.89697266, 1.7324219, -0.79541016, -0.11553955, -0.71484375, -1.0771484, -0.54248047, -0.58691406, 0.6069336, 0.72753906, -0.74072266, 0.7519531, -2.0507812, 0.41430664, -0.9350586, 1.9345703, 0.86083984, 1.6933594, -1.3847656, -2.046875, -1.265625, -0.5136719, -2.3105469, -2.5664062, 2.0136719, 1.8623047, -2.7929688, 1.0742188, 0.41235352, -2.0878906, 2.8203125, -0.9350586, 0.0262146, 0.0579834, 0.16552734, 1.7421875, -2.6445312, 1.5966797, 0.7338867, -1.3388672, 1.7685547, 0.8173828, -2.8261719, 0.96240234, -0.1694336, -3.1992188, -1.7539062, -1.1240234, -0.28857422, 0.18334961, 0.46533203, -0.7211914, 1.7412109, -2.4296875, -5.3789062, -0.3059082, -1.1103516, 0.6254883, -1.6289062, -0.006778717, 2.6757812, -0.93066406, 1.4677734, 0.33325195, 1.1347656, -2.7109375, -0.54003906, 1.5517578, 1.6298828, 0.87060547, -1.1572266, -0.8486328, -2.8476562, -1.0175781, 3.2558594, -0.41430664, -2.5527344, -0.58984375, -2.8710938, -1.4482422, 1.9638672, 2.4609375, 0.07659912, -1.6191406, 1.0136719, -0.86621094, 2.3144531, -1.4541016, 0.16088867, 0.88916016, 2.9667969, -1.0175781, 3.84375, -0.40893555, -2.1660156, 0.13378906, -1.2861328, 0.28808594, 0.2142334, -1.2158203, 2.1699219, -0.33740234, 0.031555176, 1.5009766, -3.9023438, -0.9980469, 0.79052734, 2.359375, 0.10882568, -0.96435547, 3.75, 1.2607422, 0.55566406, 1.3242188, -0.93359375, 0.7583008, -0.27075195, -0.9560547, -1.5322266, 1.5927734, -1.4609375, 0.27954102, 1.4638672, 0.0015649796, -2.7675781, 2, -0.6020508, 2.5898438, 0.5317383, 2.3027344, 3.0195312, 2.3339844, 2.0800781, 0.5361328, 2.7304688, 0.4506836, -2.3144531, -0.04876709, 2.25, 0.84472656, 0.7915039, -2.3105469, 1.2451172, 0.5019531, 0.3359375, -0.00907135, 1.4873047, -0.53515625, -0.35595703, 1.4150391, 0.5053711, 0.057891846, -4.0429688, 0.17492676, -1.5517578, 1.5234375, -2.4101562, 2.9863281, 0.7626953, -1.5195312, 1.59375, -0.5029297, 0.25732422, 1.9101562, -2.5019531, 1.2373047, 1.8544922, -1.3671875, -1.4619141, 1.625, -0.58935547, 0.2668457, 3.1347656, -0.33764648, -0.16723633, 0.7211914, 1.3134766, 0.053253174, -2.5019531, -0.24438477, 2.0976562, -1.5410156, -0.19812012, 0.013763428, -0.69628906, -3.6015625, 0.123046875, 1.7646484, -0.8642578, 2.3984375, -1.0556641, -2.7246094, 1.6845703, 0.5625, -0.34326172, -0.35546875, 0.4411621, 0.6401367, 0.9160156, 2.5078125, 2.3066406, 0.43969727, 2.1484375, -2.1933594, -2.4667969, 0.21777344, -0.70214844, 1.1503906, 1.4101562, -0.26879883, -1.3798828, -0.75, 0.7324219, 3.1660156, -0.98876953, -1.234375, -2.3476562, 1.2607422, 0.21276855, 1.4052734, -0.8173828, -4.609375, -1.3007812, -0.83496094, -2.0253906, -1.5458984, -0.8745117, 0.3798828, 0.68847656, -1.5556641, 1.0214844, 0.6586914, 1.1142578, 2.0371094, 0.8354492, 3.2128906, 1.6416016, -2.4726562, 2.9238281, 2.7871094, -1.4472656, 1.3876953, -0.37890625, 1.0429688, -0.014511108, 0.51708984, -0.12072754, 0.6191406, -0.79052734, 0.4038086, 0.3100586, 1.7558594, 0.61328125, -0.43310547, 1.0185547, -1.5742188, 1.0009766, -2.0019531, -3.7089844, 0.6616211, 1.8613281, 0.82470703, -0.03729248, -0.8334961, -0.5336914, -1.2958984, 0.75683594, 0.9370117, 1.890625, 2.5273438, 1.4912109, -0.08514404, -0.077819824, -1.5, -2.25, 0.09307861, -2.0722656, 0.15710449, -0.025344849, 1.4072266, -0.8935547, 1.3027344, 0.5239258, -0.9423828, -0.71728516, -2.2734375, -0.32958984, -1.5976562, 1.9003906, -0.7285156, 0.5698242, -0.27075195, 0.7866211, 1.1796875, 1.8710938, 3.0703125, 1.9130859, 1.0683594, -1.9736328, -1.7089844, 3.2148438, 2.53125, -0.38134766, 1.8408203, 0.12011719, -0.5463867, -0.6713867, -1.4863281, -0.43310547]}, "B07N24FPJ1": {"id": "B07N24FPJ1", "original": "Brand: Home State Texas Shirts\nName: Home State Texas Gift T-Shirt Men And Women\nDescription: \nFeatures: Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more\nWear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.15466309, 3.3242188, -0.60058594, 0.16967773, -0.21435547, 0.4975586, 1.4960938, -0.9604492, 3.0410156, -1.5683594, -0.7104492, 0.35668945, -0.28588867, -3.3242188, -0.22436523, 0.27392578, 3.6308594, 2.703125, 0.5566406, -0.086364746, -0.31469727, -1.2724609, 1.0214844, -1.6064453, 1.2822266, 1.4648438, 3.3476562, -1.1748047, -0.26342773, 0.42285156, 1.9746094, 1.5976562, 0.67871094, 4.2304688, 0.54785156, 0.8901367, -0.99072266, -2.2148438, -1.2138672, 0.38305664, -0.9091797, -2.359375, 1.8359375, 3.2089844, -1.9482422, -0.7529297, -0.57373047, 1.3916016, -3.1445312, -0.91308594, 1.2314453, 0.05130005, -1.2871094, 1.9716797, 0.6088867, -0.6645508, -2.1542969, -0.69628906, -0.8198242, 0.23474121, 1.1767578, -2.0957031, -0.93359375, -0.6254883, 1.2714844, 2.4980469, 1.0185547, -0.16833496, -2.1894531, 1.5244141, 4.3789062, -0.33129883, -3.5136719, 0.56103516, -0.46801758, 2.8417969, -0.8647461, -0.34521484, 0.5239258, -2.4589844, 3.2128906, 0.41381836, -0.84033203, 0.77734375, 0.46899414, -0.15698242, -3.5, -1.2900391, -0.453125, -0.01373291, -1.1376953, 3.0253906, -1.2753906, -4.5351562, 0.18615723, -1.9433594, 2.0507812, -0.3400879, 0.1496582, 1.1347656, -0.12371826, -0.8520508, 1.6240234, 1.3046875, -1.1015625, -0.4428711, -0.69189453, 0.57177734, -1.2294922, -0.04840088, -2.9042969, -1.3232422, -0.94921875, 1.4238281, 4.6757812, -0.48754883, 0.57958984, 0.48754883, 3.0703125, 0.31201172, -0.61083984, -3.1503906, 0.50146484, -1.390625, 1.4755859, 2.4746094, 0.3347168, 3.0117188, 0.13452148, -0.2836914, 3.3457031, 1.5771484, -1.6943359, -0.024475098, -0.9345703, -2.3144531, -0.79541016, -0.2758789, 0.5004883, 0.88916016, -0.96533203, -1.8574219, -0.020233154, 0.8666992, -1.2421875, 0.42504883, -1.2080078, 0.15979004, -0.8442383, -2.328125, -0.64453125, -1.4052734, 0.7573242, -1.2128906, 0.79296875, 1.9677734, 0.6455078, -2.0058594, 1.6777344, -0.9741211, 0.16882324, 0.8769531, 0.8251953, 0.5336914, 0.4177246, -1.9267578, -1.4814453, -2.3554688, 1.1054688, 2.2304688, -2.5546875, 0.12634277, 1.1796875, -2.953125, 0.89453125, -1.7431641, -1.3867188, 0.3034668, -0.34521484, 0.12878418, 2.2929688, -0.21105957, 1.7060547, 1.3818359, 0.6948242, -1.4453125, 0.2692871, -0.42456055, -1.4228516, -2.5546875, -0.08178711, 0.54833984, 1.2871094, 1.2919922, 1.34375, -0.3713379, -1.6318359, -1.4267578, 0.6894531, 2.5253906, 0.79052734, 1.0234375, -0.79052734, 1.2871094, 0.78808594, -3.7070312, 3.125, -0.4038086, 0.2849121, -0.3413086, 0.6015625, 0.8857422, 0.54345703, 4.8515625, -1.1240234, -1.6621094, 1.6279297, -1.3779297, 0.8364258, 2.4238281, -0.7919922, 0.96728516, -0.7001953, 2.1269531, -1.2939453, -0.07098389, 0.75146484, 1.6738281, 0.8911133, 0.43603516, 1.1591797, 3.4648438, 0.5810547, 0.6430664, 0.08123779, 2.7871094, -0.4609375, -0.5283203, -2.5195312, 1.6572266, 0.46435547, 1.2646484, -4.796875, -1.3681641, 1.9238281, 1.5107422, -1.5556641, 2.6269531, 1.9833984, 0.46899414, 0.19750977, -0.033599854, 1.6464844, 2.4433594, -1.9628906, 1.6835938, 0.68408203, -0.5488281, -2.2382812, -0.92822266, -0.45751953, 0.49316406, -2.7128906, 0.59716797, -0.28051758, 0.7915039, 3.2207031, 0.49853516, -0.91796875, -2.8242188, 1.7753906, 2.0449219, -3.3964844, -2.8945312, 1.5166016, 2.0292969, -0.24304199, -0.7861328, 1.4619141, 0.26293945, 0.5073242, 1.1328125, -1.7666016, 0.07550049, -0.92822266, 1.5322266, -2.5957031, -2.234375, -0.37158203, 2.3652344, 1.4941406, 0.5205078, 2.2597656, -0.08380127, -1.5996094, 1.2773438, -2.3730469, -1.5449219, -3.6738281, 2.4746094, 0.16357422, 0.82421875, -2.7871094, 0.7270508, -1.0458984, 1.3310547, -0.73291016, 1.6240234, -2.109375, -2.7128906, 1.6621094, -3.7558594, 0.7192383, 2.4394531, -1.1875, -1.1708984, -2.53125, -1.8710938, 1.0234375, 0.8935547, 2.4628906, 1.6464844, -0.006374359, -0.6298828, -0.3317871, 1.5371094, -2.8046875, 1.3066406, 0.84228516, 1.2246094, 0.97509766, 0.003955841, -1.71875, -1.0166016, -1.3955078, 0.14794922, -2.984375, 0.47631836, 1.0966797, -0.101745605, -1.2216797, -0.61865234, -0.71533203, 0.5678711, -0.6435547, 0.20568848, -0.042266846, 0.4243164, -0.6166992, 0.046447754, -1.1269531, -1.5722656, 0.52734375, -3.3828125, 0.030441284, -0.38720703, 0.32495117, -0.7988281, -1.4169922, -1.2441406, 0.875, 1.4931641, 1.3056641, 1.4511719, 0.82421875, 1.0341797, 1.5634766, -3.5410156, 2.2617188, -1.2177734, -1.9365234, -1.0644531, 1.1923828, -1.0751953, 0.39575195, 1.1816406, -0.16687012, 3.5957031, -1.9248047, 1.4121094, -0.8989258, 0.50683594, 0.21484375, 0.60302734, -0.28149414, -1.3251953, 1.3154297, -2.2226562, 0.37597656, -3.3496094, 2.1894531, -1.5546875, -0.27026367, 0.66748047, 1.1572266, 2.265625, -0.25878906, -0.31054688, 1.0253906, 0.50146484, 0.32885742, 2.0253906, 2.4746094, -2.3476562, 3.0546875, -1.8378906, -1.0341797, 0.32592773, 0.9584961, -0.9550781, 2.1015625, 0.9345703, 0.890625, 0.8642578, -0.82177734, -3.2304688, -1.1806641, 2.6699219, 1.0498047, -1.3876953, -0.3557129, -1.1523438, 1.2128906, 1.5009766, 1.6259766, -0.15979004, 1.7333984, 0.20922852, 2.234375, -3.2695312, 0.24597168, -1.3203125, 1.2626953, 2.9394531, -1.1728516, -1.875, -1.1181641, 2.0644531, -1.2226562, 0.07067871, -0.796875, -0.037506104, -0.73095703, 0.25341797, 0.21130371, 0.44995117, -0.93115234, 0.63916016, 1.2734375, -1.0722656, -1.2978516, -1.3603516, 0.7729492, -0.296875, -1.0195312, 0.19189453, 1.1259766, 0.046020508, 3.0996094, -1.6699219, -0.24353027, -1.0009766, 1.9931641, 2.1621094, 1.1298828, 0.7709961, 0.17016602, 0.6870117, -0.25805664, 1.5009766, -0.3449707, 2.0546875, -1.0322266, -1.0888672, 3.1445312, -2.6015625, -0.86279297, 1.4580078, -1.7871094, 2.7304688, -2.140625, -1.3701172, 0.23571777, -2.0292969, 1.9648438, -1.1572266, -1.9335938, -1.7675781, 0.00075387955, -3.1445312, -1.0283203, -1.1738281, -1.1816406, -1.8955078, 1.0419922, 0.1875, 1.9658203, -1.4873047, 0.79541016, -1.2158203, -0.9951172, 0.72509766, -0.8798828, 1.4248047, 1.5146484, -1.4375, -3.4628906, 0.56103516, 0.8208008, 1.9580078, -1.6943359, -1.5947266, 2.65625, 1.3808594, 1.7246094, -1.6943359, 1.3496094, 1.8017578, -2.4667969, -0.8876953, 2.484375, -2.7226562, -2.7675781, -0.5185547, 3.8945312, -0.14477539, -2.359375, 3.2285156, -0.14160156, 3.2441406, 0.8886719, -2.8398438, -2.453125, 1.2421875, -0.9082031, 2.4199219, 0.19445801, 1.2421875, 3.1308594, -0.22167969, 1.2441406, 0.35180664, -0.62060547, -0.56591797, -1.4746094, -2.1289062, -0.031158447, 1.2685547, -0.29956055, -1.5839844, -2.8867188, -2.8945312, 0.71484375, 1.0390625, -1.3300781, 1.2324219, -3.4003906, -0.3449707, -0.54052734, -0.4868164, 0.26708984, -2.0859375, -1.1367188, -0.29882812, 1.8681641, 1.5185547, 1.5419922, 0.18566895, 1.6191406, -0.16503906, -0.38891602, 0.49316406, 1.4697266, -0.88427734, -0.30371094, -1.4521484, 0.6557617, -2.5820312, 0.6352539, -1.3808594, 1.9580078, -1.1123047, -0.99658203, 0.47583008, 0.16601562, 2.1035156, 1.7373047, 1.9716797, -2.1445312, 2.3730469, -0.32348633, 0.9082031, -0.51660156, -2.7011719, 0.14611816, 1.9335938, 2.140625, -0.42260742, -1.0947266, -0.49853516, 1.9794922, 0.22961426, 0.8989258, 0.9013672, -0.55615234, 1.1748047, -0.16223145, -1.5, -0.016540527, 0.9658203, 0.25146484, 1.3378906, -0.020889282, -0.6303711, 0.13098145, -0.08947754, 0.9355469, -1.6464844, -1.9345703, -0.075805664, 0.77978516, -2.015625, -1.3046875, 0.20092773, 0.16235352, 0.052215576, -1.78125, 4.1875, -1.0527344, 0.17480469, 3.9511719, 0.44384766, -1.8369141, 0.41430664, 1.1923828, 1.5126953, 0.7866211, 0.35498047, 0.55615234, -2.5566406, -0.36254883, 1.4482422, 1.53125, 0.06768799, 1.71875, 0.53125, 0.5283203, 2.4101562, -2.2832031, 0.41577148, 2.1308594, -1.4101562, 1.6601562, 2.1503906, -3.7773438, 1.625, 2.359375, -3.0488281, -0.6044922, -2.0195312, 1.7421875, 1.0986328, 0.21020508, -2.3320312, 0.30200195, 1.3310547, 1.2421875, 0.8540039, 1.3876953, -0.72509766, -0.77734375, 0.41235352, -1.3447266, 0.21911621, -2.6210938, 2.2558594, -0.6743164, 0.5024414, -2.8769531, 0.2097168, 1.0410156, -1.1015625, 1.0078125, -2.0429688, 0.23962402, -1.3076172, -3.3632812, -0.61328125, 0.36547852, -2.859375, 1.2089844, 0.03555298, -1.7910156, 2.0839844, -0.48242188, -3.7089844, 2.4394531, -2.4511719, 0.29760742, -1.2353516, 1.0996094, 4.3164062, -2.6445312, 1.8955078, -2.4511719, -1.5625, 0.5854492, -4.3125, -0.1895752, -1.9003906, -0.4038086, 0.7397461, -2.4277344, -1.2041016, -0.46679688, -0.06149292, 3.453125, 0.103149414, -3.234375, 2.8867188, -0.60058594, -0.46899414, 1.0830078, 0.08465576, 0.38134766, 1.7226562, -1.2138672, 0.16699219, -1.7607422, 0.3154297, -0.7084961, 0.86621094, -0.34228516, 0.8144531, -0.7036133, -4.2539062, -4.1835938, -4.2148438, 0.43310547, -0.12420654, 0.15124512, 1.6103516, 1.5371094, 1.6386719, 1.0576172, 0.96728516, 0.39404297, -0.4609375, -0.6479492, -1.7158203, 0.2614746, -2, 0.51171875, 2.296875, -1.5351562, 2.6582031, 1.0458984, 0.75146484, 0.20483398, 2.7871094, -2.2753906, 2.2753906, 1.2734375, -0.43408203, 0.21862793, 1.6279297, 0.8017578, -1.84375, -2.1269531, -0.92822266, -0.6875, -2.546875, -1.0078125, 0.99609375, 1.8222656, 1.5136719, 0.29077148, 1.9902344, 2.1347656, 1.9472656, -1.2470703, -1.3828125, -1.3330078, 1.0683594, -0.54003906, 0.7373047, -2.6835938, -0.4946289, 2.2148438, -0.15905762, -0.8588867, -0.12634277, -2.7910156, -0.89697266, -2.9375, -0.4243164, 1.1572266, 1.3876953, 1.7158203, 0.44848633, 2.25, 0.86816406, -0.11456299, -0.47485352, -0.77441406, 3.4628906, -1.3095703, 3.2128906, 1.2617188, 0.69677734, -2.9023438, 1.2734375, -2.4355469, 1.5097656, -1.1171875, -0.2734375, -1.3515625, 0.052703857, -0.37426758, -1.6972656, 0.47216797, -0.24865723, 0.2854004, 0.9667969, -0.12878418, 1.1982422, -1.8935547, -0.9345703, -0.7470703, -1.7421875, -2.8105469, -1.9414062, 0.42260742, -0.38354492, 2.3769531, 1.1914062, 1.2070312, -0.36254883, -1.0009766, 1.7988281, -0.22363281, -1.0654297, 1.1972656, 1.9658203, 2.1132812, 1.0166016, 3.8125, 1.1064453, -0.3713379, 2.5253906, -1.1542969, 0.46850586, -0.19482422, 1.1884766, -0.8095703, 1.1210938, -1.9824219, 1.9677734, 0.42504883, -0.5209961, -0.20275879, -0.27197266, -0.390625, -0.19934082, 1.3037109, -0.23779297, 2.8828125, -2.0390625, 1.2685547, -1.7636719, -2.140625, -0.21606445, -1.8505859, 1.875, -1.1992188, 0.5341797, -1.7353516, 0.76220703, 0.9404297, -2.6875, -0.8300781, 2.5917969, -1.6621094, 0.10852051, 1.2099609, 3.5273438, -1.3994141, 1.6533203, -1.9414062, -0.30786133, 1.8505859, -0.45458984, -1.6191406, 0.27490234, 0.8676758, 0.3095703, 0.9970703, -2.6367188, -0.061187744, -1.1660156, 2.7246094, -1.6044922, 1.3808594, 0.16186523, 0.5263672, -1.1660156, -3.7304688, -0.21105957, 3.0292969, 1.4228516, 0.77441406, 0.81640625, 3.5605469, -2.46875, 1.8789062, 0.33154297, 0.5776367, 1.0898438, -1.6142578, -1.4941406, -1.7880859, -0.74365234, 1.9785156, 2.4394531, 1.3701172, -1.2871094, 2.15625, 1.0068359, -0.09399414, -0.47729492, -4.5195312, 1.8232422, -0.5888672, 0.13903809, 1.8046875, 1.7919922, -1.7851562, -0.39257812, -1.2490234, -0.060150146, -1.7314453, 0.5786133, -1.9541016, 0.77978516, 0.43676758, -3.0195312, 0.5283203, -1.1679688, 3.0878906, 2.1132812, 2.6269531, 2.2539062, -3.5292969, -0.8833008, -1.7841797, -0.047729492, 1.4003906, -1.0927734, 1.8447266, -1.6640625, -2.2988281, -1.7578125, 2.5585938, 1.5878906, -0.4885254, -1.7607422, -0.9199219, 1.2216797, 0.40014648, 1.5478516, 0.1270752, -0.78808594, 1.6152344, 0.20471191, 0.109191895, 0.59277344, 2.1230469, -4.140625, -0.35424805, -1.4853516, -2.2871094, 2.4921875, 0.43896484, 0.082214355, 1.1640625, 0.37329102, -1.3857422, -1.7373047, -1.9404297, 2.8320312, -1.7958984, -0.35180664, -0.47753906, -0.023483276, -0.18591309, 0.21008301, 0.7832031, -0.58984375, -1.1503906, 1.5839844, -0.7207031, -0.45043945, -0.7626953, 0.9916992, -1.2509766, -4.28125, 0.31982422, 1.6630859, -0.0064315796, 1.7988281, 1.2236328, 0.11853027, 2.9394531, 0.7060547, 0.022018433, 1.6240234, -0.1932373, -1.4746094, -2.5546875, 3.1503906, 3.3320312, 0.19799805, -1.8330078, -1.0527344]}, "B07FSJ3FNJ": {"id": "B07FSJ3FNJ", "original": "Brand: HERSENT\nName: 20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches\nDescription:
Product Features:
Size: 12.5 x 12.5 x 24 inches.
Material: Heavy Duty Polyester UV coated nano environmental protection materials.
Durable, scratch resistant polyester with UV protection all year round.
Easy to Clean: Low Circle Machine Wash & Handwash.
Upgrade Your Patio or Garden D\u00e9cor.
SHIPMENT TIME

1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
2.The normal arrival time of Dispatched from Seller is between 10-15 days
3.Holiday Season Peak time maybe longer than normal delivery.\nFeatures: This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nConvenient side velcro and magic tape allows for easy set up.\nEasily clean this 20lb propane tank with damp duster or by hosing with clean water.\nPERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb.\n100% RISK FREE BUY: A necessary great father\u2019s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!\n", "embedding": [1.4082031, 2.390625, 2.6074219, 0.14416504, -0.99658203, 0.8720703, -0.25073242, -1.265625, 2.0898438, 1.2177734, 0.41552734, 0.6088867, 1.40625, -3.6699219, 1.6210938, -0.60839844, -0.4645996, 3.15625, 3.2734375, 0.11602783, 2.8613281, 1.265625, 0.0725708, -0.4802246, 0.68603516, -0.5708008, 3.5976562, -2.7167969, -1.3564453, 0.6118164, 0.62158203, 0.11425781, -0.13659668, 3.078125, -0.099243164, -2.3925781, -2.1289062, -0.22290039, -2.4726562, -2.0214844, -2.9960938, -1.5292969, 3.6484375, 0.6791992, -0.6542969, 0.035186768, -1.25, -1.7041016, 0.24987793, -1.4375, -0.25097656, -0.087890625, 2.109375, 0.7788086, -1.0498047, -0.5263672, 0.07513428, -0.9628906, 0.26635742, 1.5283203, -1.3837891, -1.5996094, -1.5673828, 1.6845703, 0.09307861, 0.3256836, -0.40112305, -1.1337891, 0.40063477, 1.9394531, 1.59375, -0.14672852, 1.4667969, -0.90478516, 1.1494141, -0.20092773, -1.8076172, 1.4345703, 1.9951172, -0.5361328, 1.3789062, 3.5703125, -1.7939453, -2.0605469, -0.90625, -1.3789062, -1.8466797, -0.75, 0.80615234, -0.7817383, -2.1523438, 2.5, -1.6757812, -4.609375, -0.64453125, -0.64501953, 2.4355469, 0.76220703, 3.3066406, 0.87402344, 0.46484375, 0.2734375, -1.2236328, 1.1152344, -1.6425781, -1.4257812, 0.7578125, -1.0615234, 0.014205933, 0.65966797, 0.32080078, -1.0732422, 0.69384766, -1.3222656, 0.08758545, -0.20117188, 0.21582031, -0.40283203, 2.8125, 0.85595703, 3.4238281, -0.80322266, 0.7895508, -0.51904297, 1.6416016, 0.87402344, -0.63720703, 1.3623047, 1.5878906, -1.6767578, 2.7734375, 0.19360352, 0.002910614, -0.7553711, -0.22229004, -0.5854492, -1.7695312, -0.99072266, -3.1640625, 0.34277344, -1.5498047, -1.2236328, 0.6489258, -0.27026367, -2.4726562, -0.14868164, -2.2675781, 1.7988281, -0.69384766, -1.8671875, 0.7861328, -1.8876953, -1, -0.7895508, 1.1083984, 0.73291016, 1.2294922, -3.4042969, 2, 3.6640625, 3.6542969, -0.6772461, -0.41918945, 1.2041016, 1.3632812, -3.6992188, 1.7353516, -0.4033203, -1.2148438, 1.4736328, 0.40820312, -1.5146484, -0.2578125, 1.5166016, -0.15625, -1.9951172, 2.390625, 1.1914062, 0.47338867, -0.28442383, -3.1269531, -0.5336914, -1.1953125, -1.1943359, -0.1821289, -0.46557617, -1.5546875, -2.1132812, -0.21643066, -0.93408203, -2.625, 0.58496094, -0.7988281, -0.33325195, -1.7050781, -3.3496094, -1.7988281, -1.8417969, 0.78759766, 2.0996094, -1.5439453, -0.71875, -1.5429688, 1.0683594, -2.1699219, -0.5629883, 1.7753906, 0.16552734, 0.7270508, 1.6972656, 0.11437988, -0.43286133, 2.6601562, -0.007347107, -1.1708984, -0.8408203, 2.3652344, 0.96777344, 0.63183594, 0.9477539, -0.34643555, 1.6386719, 0.70654297, 2.1425781, 1.0166016, 2.5878906, 0.6713867, -0.07434082, -2.1269531, -1.1083984, 0.78515625, 2.0761719, -1.234375, 1.2216797, -0.80810547, 2.0078125, -1.2792969, -0.56591797, -0.12487793, 1.3955078, 0.44213867, -0.3239746, -1.8095703, -0.72265625, 0.1776123, 2.8945312, 0.07897949, 1.28125, 1.7646484, 0.12841797, 0.31469727, -1.6386719, -0.12927246, -1.0585938, 0.23327637, 2.0410156, 1.9472656, 1.1503906, 1.0029297, -1.2910156, -0.53515625, 1.4892578, -0.93896484, 0.13647461, -0.9663086, 1.1796875, 1.0498047, -0.24731445, -2.1347656, 0.29760742, 0.34155273, 0.3269043, -0.44848633, -0.8276367, 1.7568359, -0.29589844, -1.1796875, 1.2685547, 0.16101074, 1.4833984, 1.6328125, -1.1865234, 1.7939453, -3.4785156, 1.7294922, 0.8833008, 2.2109375, 0.5493164, -2.1875, 0.19897461, 2.8066406, 0.019561768, 0.35058594, 1.9375, 2.5195312, 0.37597656, 2.2050781, -0.5444336, -0.8183594, -0.03152466, 0.36254883, -0.17272949, -0.48291016, 0.30126953, -0.10180664, -1.4599609, -0.31225586, -0.88720703, -0.33666992, 0.4885254, 0.5678711, -2.0605469, -1.1464844, -0.0007171631, -2.7929688, -1.6992188, 4.03125, -2.9101562, -0.9536133, 1.9404297, -0.6748047, 1.5107422, -1.1835938, -1.2070312, -0.037322998, 0.9501953, -2.3300781, 1.2001953, 1.0458984, 0.3173828, 0.8979492, -2.9804688, 2.0019531, -1.3769531, -0.18688965, -0.48779297, -2.7246094, -0.4909668, 0.48876953, -1.6806641, 1.0048828, -1.0986328, -1.4296875, 1.40625, 1.2167969, -0.0024108887, -0.20227051, 1.859375, -0.98828125, -1.3125, 0.3491211, 1.7011719, -1.6855469, -2.9433594, -0.5996094, 0.6713867, -1.9404297, 0.9824219, -1.6435547, -0.2166748, 0.18078613, 1.0498047, 2.4335938, -1.3564453, -0.85839844, -0.12182617, 0.66845703, -4.7421875, 0.7739258, -1.9736328, 0.8642578, -3.5078125, -0.061309814, -1.7695312, -1.0849609, 1.4365234, -0.92089844, 3.03125, 1.4052734, 0.8203125, -0.9824219, -0.70166016, 0.06512451, -0.91503906, -2.3105469, 0.8129883, 0.8457031, -2.4179688, -0.5019531, -4.5351562, -0.42504883, -2.0898438, -2.0273438, 0.84814453, -1.8886719, -1.1660156, -0.119506836, -0.45703125, -1.2792969, -1.5683594, 0.8261719, -0.019638062, -1.8935547, -0.30493164, -0.7495117, -1.3623047, 0.051116943, -2.0761719, 1.8779297, -1.0917969, 0.65625, 2.078125, -1.3623047, 2.6347656, -0.37719727, -4.3398438, 0.089416504, 3.71875, 1.1064453, 1.4306641, -0.5649414, -1.1669922, -1.2998047, 0.21386719, 1.6621094, 1.9550781, 0.9404297, 2.2734375, -0.13598633, 0.63671875, 0.54248047, 0.095947266, 0.10266113, 1.5, 2.4765625, -0.35083008, 0.53027344, 0.67626953, 2.8203125, -2.5898438, -1.8496094, 1.8056641, -0.6357422, 2.7089844, 1.4541016, -2.0332031, -0.45825195, 1.1308594, 1.9023438, -0.4597168, 1.4277344, 0.11065674, 1.1513672, 1.890625, 0.42993164, 1.2363281, 2.8027344, -0.07116699, -1.8417969, 1.5888672, 0.86572266, -1.9257812, -0.07611084, 0.9873047, -0.5605469, 0.19189453, 1.4794922, -0.8779297, 1.8222656, 1.3525391, -0.5107422, 0.7089844, -0.30249023, 0.84472656, 0.5029297, 1.1708984, -1.0800781, -1.0605469, -1.3828125, -0.6430664, -1.9492188, 1.5009766, 0.33007812, -0.18310547, 1.6015625, -3.0292969, -0.057495117, -2.0566406, 2.5273438, -0.11895752, -0.86035156, -0.3322754, 1.5283203, -3.5976562, -2.3691406, -0.2644043, -0.7519531, -1.59375, 3.4707031, 3.203125, -2.0253906, 0.13781738, -2.1953125, 2.0214844, 2.5019531, -0.20776367, -0.32006836, -0.6401367, 0.2709961, -0.9760742, -0.12036133, 1.2109375, 1.7929688, -2.7421875, -0.5727539, -0.47509766, 1.2099609, 1.7460938, 0.4572754, -0.20581055, 0.13330078, -1.1357422, 2.96875, -0.05038452, 2.2890625, 0.3227539, 0.6020508, 1.0917969, -0.21447754, 1.2050781, 0.46362305, -3.6542969, -0.19616699, -0.50634766, -1.1367188, 3.1308594, 0.025802612, 0.2553711, -0.75341797, 0.9980469, -2.9140625, -0.484375, -1.7333984, 1.6035156, -2.1210938, -1.2939453, 0.56152344, 0.09466553, -2.4589844, -1.4716797, -0.36645508, -2.3320312, -0.8046875, 0.058166504, 0.12573242, 1.1630859, -0.6567383, 0.3947754, -1.9394531, 0.5449219, -0.4008789, -0.28393555, -1.171875, -1.3525391, 3.3554688, 0.40307617, 0.37451172, 0.46655273, 3.1015625, 0.23059082, -0.9980469, -0.40185547, -0.41625977, 2.46875, -1.3740234, -2.6992188, -0.9394531, -1.2441406, 1.4121094, -0.1303711, -1.1630859, 0.29956055, -0.032928467, 0.5292969, 1.1943359, 1.5058594, 0.90771484, -0.54589844, -1.8378906, 3.0585938, 0.25268555, -0.69677734, -0.47216797, -2.3066406, -0.19543457, -0.8461914, -2, -2.8125, 0.15771484, 0.50439453, 1.5136719, -2.1914062, 2.0195312, 2.1660156, 2.2636719, 1.3330078, -1.4150391, 0.13964844, 0.93603516, 1.6865234, 1.7792969, -0.07684326, 0.60546875, 1.2753906, 0.5371094, 1.1435547, -2.7539062, -0.765625, -0.80810547, -1.2441406, -0.33935547, -0.05734253, 1.7265625, -1.28125, -1.1875, -0.50878906, -2.2324219, 4.0898438, -2.0273438, 1.1191406, 0.7910156, -1.4707031, 0.15148926, 2.3046875, 1.8173828, 0.78466797, 2.6367188, -0.8129883, -1.015625, 0.3623047, 0.9970703, 0.74658203, 1.2050781, -2.0703125, -0.31347656, -0.20092773, 1.0087891, -0.7480469, -0.23754883, 1.4111328, 3.1503906, 0.5522461, 1.9130859, 2.4960938, 0.21557617, 2.0683594, 1.0234375, 0.11621094, 0.22302246, 0.7368164, 1.5771484, 3.0234375, -1.8349609, -2.2753906, 0.96533203, 0.9482422, -0.76660156, 1.8535156, -0.4658203, -2.1445312, -0.0132751465, -2.625, -2.2460938, -0.0736084, -0.9140625, -0.89697266, -1.2451172, 2.0273438, 0.8544922, 1.9755859, 2.65625, 0.02758789, -1.6074219, 1.2070312, 1.2558594, 0.035064697, -2.3652344, -0.2866211, -3.8710938, 0.8671875, -0.51904297, -0.4440918, -0.27929688, 0.95751953, 1.6474609, -2.4804688, -0.703125, 0.01360321, 0.9946289, -2.1210938, -0.73291016, 3.0175781, 0.010604858, 0.09539795, -1.4951172, -1.3027344, -0.62353516, 2.1464844, 2.3027344, 0.9770508, -0.1295166, -0.9682617, -4.1015625, -4.6523438, -1.0791016, 0.36279297, -1.7363281, 1.0234375, -0.87597656, -1.4609375, 0.5390625, -1.3300781, 0.85546875, -1.75, 0.88671875, -0.5239258, -1.3613281, -0.86035156, -0.4375, 0.07312012, 0.6074219, -1.2001953, -1.3544922, -1.8916016, -2.2011719, -3.6503906, -0.18078613, -1.7792969, -0.05014038, 0.87597656, -0.7817383, 1.9892578, 1.0380859, 2.1933594, -0.26391602, 2.0429688, -0.56689453, -0.94091797, 1.9003906, -1.4648438, -0.32958984, 1.9082031, -0.5620117, 2.234375, 2.2714844, 1.7685547, -2.46875, 1.1054688, 1.5166016, 0.72314453, -0.44262695, 1.6162109, 2.0898438, 0.23059082, 1.2382812, 1.8232422, -0.67578125, -1.7900391, -1.4179688, -1.3574219, -0.23474121, -1.7705078, -2.1386719, -0.36767578, 0.4790039, 1.3037109, 1.0458984, 1.5634766, 1.9414062, 0.8730469, -2.1054688, 0.9638672, -2.7089844, 1.8984375, 0.93359375, -2.0605469, -3.1464844, -2.7558594, 2.9335938, 1.171875, -1.09375, 0.9873047, -0.1842041, -1.15625, 1.3720703, 0.21801758, 1.3916016, 1.0185547, 2.3027344, -1.8339844, 1.1777344, 1.84375, 0.035827637, 0.61328125, -1.2001953, 0.20361328, -1.1328125, 0.07550049, 1.4082031, -2.8710938, -1.2402344, 0.0012683868, 0.5727539, 0.13439941, -1.1083984, 0.40161133, -2.3164062, 0.05117798, -1.359375, -0.9453125, -4.6132812, 2.0136719, 0.109375, 0.1928711, 1.0585938, 1.1660156, -1.5205078, -0.39453125, 0.98535156, -0.5126953, -1.7412109, -1.2167969, -0.5961914, 0.04171753, 1.1689453, -2.9121094, 2.1328125, 0.24694824, 1.4453125, -0.91748047, 0.6489258, -0.7246094, -0.30371094, 1.9443359, 3.5273438, 3.9902344, 0.1628418, 1.4707031, -0.2619629, 1.8349609, 2.3085938, -2.203125, 0.23583984, 1.5791016, 1.7363281, 3.46875, -0.0541687, -0.16564941, 1.0185547, -0.9111328, -0.36499023, 0.8339844, 1.1064453, -2.9765625, 0.6748047, -0.2915039, 0.24194336, 1.9863281, 1.6083984, -1.9638672, -1.8759766, 0.85839844, -0.97216797, 2.4140625, -0.63916016, 1.4882812, 0.9248047, -0.6748047, 2.0175781, -0.3076172, 1.4277344, -1.4404297, -2.7558594, -0.421875, 2.5429688, 0.80908203, 2.4140625, -1.8974609, 0.050567627, -1.0966797, 1.6582031, 1.0507812, -0.18566895, 2.1679688, -1.8271484, 2.015625, 3.1113281, -1.7001953, -1.1865234, 0.609375, 0.81103516, -4.296875, 0.12695312, 0.74902344, 1.1787109, -0.8876953, -3.5625, -1.0146484, -2.2285156, -0.11151123, -3.203125, -1.3935547, -1.0820312, -3.8710938, 0.095825195, 0.7910156, -1.9101562, 3.4902344, -0.31591797, 0.8461914, 1.5449219, 0.54248047, 0.15637207, -0.052825928, 0.92089844, 1.3291016, 0.6689453, -1.1826172, 1.5585938, 1.5537109, -1.0693359, 0.042877197, 2.2773438, 0.027633667, 1.1552734, 0.8071289, -1.3681641, 3.2246094, 0.53222656, -1.7431641, 1.6582031, -0.0927124, 0.56347656, -0.023620605, 0.75927734, -0.033081055, -0.2841797, -0.42773438, 1.8095703, -4.8515625, 0.056549072, 1.4101562, -1.0283203, 1.0751953, 0.38623047, -0.6894531, -0.51464844, -0.88720703, 1.5537109, -2.9277344, 0.80908203, -2.1953125, 1.0986328, -1.0019531, -0.68115234, -1.4072266, 1.3388672, -1.5605469, 1.0683594, 1.6230469, 0.22021484, 0.03604126, -0.41748047, -0.03933716, 0.5126953, 0.9482422, 1.2460938, -0.20629883, -0.79833984, -1.4853516, 0.65966797, -1.1191406, -0.36791992, 2.7675781, 2.7753906, 1.1240234, -0.25512695, 0.78125, -2.7929688, -0.52978516, -2.5683594, 0.2442627, 0.38964844, -0.14941406, 0.060028076, 1.3369141, 2.8417969, -0.53027344, -1.3085938, 0.19714355, 0.6743164, 2.421875, -0.60498047, 0.8828125, 1.4472656, -0.45458984, 1.3828125, 2.9335938, 3.1015625, -2.140625, 0.7050781, 2.0625, -2.6640625, -2.0683594, -0.7705078, -0.25878906, -1.078125, 0.4794922, 2.8261719, 3.15625, 0.44970703, -0.035217285, -1.2431641, -0.359375]}, "B00NO1O6ZC": {"id": "B00NO1O6ZC", "original": "Brand: GASONE\nName: Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks\nDescription: \nFeatures: \u2713 User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance\n\u2713 READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection)\n\u2713 MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n", "embedding": [-0.56152344, 1.9785156, 1.1455078, 0.59814453, -1.2988281, -1.5048828, 0.33007812, -0.6977539, 1.7265625, -0.56591797, 1.5517578, 0.85595703, 0.91748047, -0.8286133, 2.3632812, -0.9033203, 1.6455078, 1.6552734, 1.1699219, 3.4082031, 1.0234375, -0.091430664, 2.4433594, -0.9633789, 0.095825195, 0.66552734, 2.828125, -2.9589844, -1.7001953, -0.038391113, 1.5283203, 1.3662109, -1.2910156, 0.7558594, -0.7319336, -0.032165527, -0.2109375, 0.06762695, -3.7890625, -1.8154297, -1.4414062, 3.1328125, 1.4697266, 0.54833984, -1.5205078, 1.7197266, 1.8251953, 0.38427734, -0.019165039, 0.9873047, 0.5678711, 0.11187744, -0.3791504, 0.3659668, 1.3652344, 0.88964844, 1.1162109, -1.8974609, 0.80126953, 1.0908203, 1.9482422, 0.89453125, -2.6601562, -0.7993164, -0.80810547, 0.5048828, -0.95410156, 0.6357422, -0.99902344, 0.91748047, 0.6870117, 2.0253906, 0.69091797, -0.71972656, -1.5703125, 0.78466797, -3.2304688, 0.6669922, 1.8710938, -0.2277832, -0.8046875, 0.7241211, -0.43652344, -2.4804688, 0.31103516, 0.11480713, -0.3466797, 0.98291016, 0.6489258, 0.5839844, -4.1835938, 3.7304688, -3.4316406, -3.4082031, -0.16125488, 1.234375, 0.39233398, 2.7402344, 2.1367188, 0.103393555, -2.4121094, -1.8300781, -0.48706055, 2.3320312, -0.9848633, -2.1230469, -1.3554688, 1.5615234, -3.3886719, 0.9838867, -0.30004883, -0.8256836, 1.2841797, -1.1757812, 1.4716797, -3.6855469, -0.3190918, -0.7290039, 3.4589844, -0.4597168, 1.7724609, 0.2064209, 0.48754883, 0.36279297, 0.66308594, 0.95166016, -0.9711914, -1.0117188, 3.1445312, -0.9291992, 1.1464844, -2.1523438, 2.1113281, 0.9140625, 1.3828125, -2.4472656, -0.6328125, -3.125, -1.6767578, -0.7885742, -4.7460938, 1.5917969, 1.0810547, 0.5649414, -2.8046875, 0.30371094, -3.0136719, 0.24328613, 2.5625, -1.8037109, 1.2041016, -1.8037109, -0.25146484, -1.5595703, 1.6796875, 1.1396484, 1.3164062, -1.7841797, 1.8974609, 2.75, 0.21081543, 0.42138672, -1.46875, 1.0166016, -0.25732422, -1.9248047, 0.22106934, -0.21923828, -1.7822266, 0.06439209, -2.2578125, -2.2578125, -1.0419922, 1.3466797, -0.8051758, -1.0009766, 0.20300293, 1.9765625, 1.6425781, 1.0537109, -5.53125, -3.171875, 0.34448242, -3.5078125, 2.0351562, -0.18273926, -2.1015625, -1.4257812, 0.17541504, -1.6435547, -0.5703125, -0.060424805, -0.22631836, 0.8510742, -0.090026855, -0.9526367, -2.4921875, -0.054138184, -0.82421875, 1.6738281, -0.5307617, -1.8759766, 1.2236328, 0.4909668, -1.0400391, -1.3623047, 1.1298828, -2.4414062, -0.87060547, 1.7724609, -0.33325195, 0.052459717, 0.98095703, -0.4272461, 0.14013672, -1.7734375, 2.4433594, 2.8339844, 1.0917969, 0.38891602, -0.80322266, -0.0056610107, 0.5576172, -0.7553711, 2.0566406, 0.30908203, -0.73779297, 0.8359375, -1.0830078, -2.5039062, 1.78125, 2.484375, 0.36523438, -0.5625, 0.5058594, 2.2109375, -0.17736816, 0.22937012, 0.9355469, 1.8115234, 0.77783203, 0.2541504, -3.734375, -0.23339844, -1.6191406, 1.2646484, -1.6386719, 0.54248047, 2.7324219, -0.59521484, 1.5, -1.2783203, -2.5214844, -1.9179688, -1.8457031, -0.7836914, -0.06237793, 2.4140625, 0.7783203, -1.5830078, 1.9931641, 0.78222656, 1.2441406, 0.91015625, 1.015625, 1.0898438, 0.6176758, -1.4296875, -0.3269043, 0.01828003, -0.4958496, 2.28125, 2.7109375, 0.06555176, 1.0126953, 2.6699219, -2.5722656, 1.3300781, -0.37939453, -0.08270264, 2.515625, -1.6611328, 1.1464844, -2.9980469, 2.5078125, 1.2587891, 1.1582031, -0.009811401, -2.46875, 0.72998047, 2.6308594, -0.21276855, -2.8710938, 2.0097656, 1.8945312, 0.10223389, 1.5195312, 0.40966797, 0.6113281, -0.49243164, 0.31274414, 0.14660645, -3.2167969, 0.033996582, 2.9726562, 1.7353516, -1.7226562, 0.4633789, -0.76660156, 0.26782227, -1.1083984, -1.4726562, -1.1826172, 1.5830078, -1.9160156, -0.43041992, 1.1953125, -2.1464844, -1.53125, 1.1630859, 2.0507812, 1.8105469, 2.2597656, -1.9375, 1.515625, 2.0683594, -1.6474609, 0.4807129, 0.6713867, -0.33374023, 1.0683594, -1.0341797, 0.19702148, -2.53125, -1.4482422, 2.3144531, -1.4882812, -3.4882812, 1.609375, -2.4296875, -3.3222656, 0.15405273, -0.7138672, 3.3300781, 1.0078125, 0.11114502, -1.1855469, 0.42578125, -0.1303711, -0.3623047, 0.91552734, 2.9199219, -1.0136719, -1.2236328, 0.53222656, -1.2382812, -0.2998047, 2.0917969, -1.078125, 0.9272461, 1.8203125, -0.06097412, -0.35742188, -0.36083984, -0.2685547, -0.7915039, 1.3339844, -3.2636719, -0.6533203, -1.1875, 1.0722656, 0.07800293, 0.052490234, -1.9248047, -0.77978516, 0.8803711, -1.1679688, -0.092285156, -1.6025391, 2.8945312, -1.3789062, 0.17407227, 2.1894531, -2.6738281, -2.65625, 0.8442383, -0.091430664, -0.31762695, -0.74609375, -2.265625, 1.4707031, -0.3701172, 0.48217773, -0.55322266, -1.5761719, -1.5146484, -0.5332031, 1.4589844, -2.3769531, -0.67626953, 1.1699219, -0.6088867, -3.2480469, 1.1953125, 0.8256836, -2.0742188, -0.9121094, -1.1533203, -0.69189453, -0.24731445, -0.9267578, 0.69677734, 2.1015625, 0.8178711, -1.6035156, -2.9023438, 0.7324219, 2.6328125, -2.6230469, 0.7529297, -2.2070312, -0.4892578, -2.6308594, -2.3925781, 0.99121094, 1.2275391, 2.9082031, 0.68310547, 1.4101562, 0.67626953, 0.78271484, -0.50341797, -2.1894531, -0.2331543, 2.640625, -1.7509766, -1.1533203, -1.2011719, 0.99365234, -3.015625, 0.52001953, 2.6308594, -1.0195312, 1.4931641, 0.8828125, 1.1533203, -1.1943359, 1.0800781, 2.0488281, 0.9267578, -1.1113281, 0.9267578, 1.3164062, -0.12561035, -0.8432617, 1.2089844, 0.20117188, 1.5498047, 2.0117188, -0.09790039, -1.3574219, -0.79541016, 0.49365234, 0.5625, 0.9433594, 0.7104492, 1.5927734, 0.35717773, -0.6791992, -1.0927734, 0.17675781, 0.9267578, -2.2871094, -1.2177734, 0.92285156, 0.48754883, -0.26171875, 0.8779297, -0.5732422, -1.2617188, 0.18835449, -0.66748047, 2.328125, 1.6757812, 1.3251953, -1.2070312, 2.2988281, -1.7451172, 2.3125, -0.072143555, 1.9404297, -0.099609375, 1.1533203, -2.7578125, -1.8242188, -0.9506836, -3.4550781, -0.6425781, 1.9375, 1.3974609, -2.5351562, 2.0742188, 0.043884277, 1.5380859, 1.5380859, -1.9160156, -0.5576172, -1.3837891, -0.55029297, 0.2849121, -0.60058594, 2.0078125, 0.24255371, -2.6015625, -0.057006836, -1.8242188, 0.8691406, 0.59033203, 0.10394287, -2.8417969, -2.3457031, -2.1484375, 1.1728516, -0.484375, 3.1835938, 0.8491211, 0.75439453, 1.9765625, -2.4980469, -1.1318359, -1.3232422, -4.8320312, 0.13964844, -2.6699219, 1.0761719, 3.0214844, 0.8066406, 0.58447266, 1.9082031, 1.6591797, -3.09375, -0.47583008, -0.12084961, 0.46777344, -1.8408203, -1.3505859, 2.6855469, 0.9160156, -0.9658203, -1.9082031, -0.83984375, -2.5117188, -0.87109375, -0.7553711, -2.7226562, -0.089416504, -1.7490234, 1.1416016, -1.1435547, -1.1328125, 0.5341797, -1.5527344, -0.8979492, -3.2714844, 1.8837891, 0.051483154, 0.67529297, -0.86083984, 4.2226562, 2.3828125, -1.0253906, 0.92285156, 0.19165039, 2.4707031, 0.042022705, -0.8388672, -0.5942383, 0.76171875, 0.37109375, -1.5556641, -1.1279297, -1.9033203, -0.56884766, 0.7319336, 0.9589844, 1.3857422, 1.7792969, 0.26757812, -2.7285156, 0.6376953, 0.37573242, -1.515625, 0.12719727, -1.0742188, -0.027938843, -0.91748047, 0.91015625, -1.7089844, -1.2539062, -0.52734375, 0.48828125, -4.09375, -0.23925781, -0.3408203, -0.42041016, -0.7963867, -2.0625, -0.17993164, -0.8129883, 0.6484375, -1.1992188, -0.3413086, -1.3183594, -0.12463379, 1.9394531, 2.5644531, -0.13598633, 0.22045898, 0.25878906, -1.2128906, 1.2109375, 0.0154418945, 1.8115234, 0.73535156, -1.8925781, -0.1842041, -0.93652344, 4.6835938, -0.85791016, 0.69091797, -0.19470215, -1.2509766, -3.6542969, 2.6757812, 2.9785156, 2.7207031, 0.9589844, -0.08758545, 1.6044922, 2.0859375, 0.7246094, 0.6948242, 0.82373047, 0.28881836, -1.0771484, -0.8017578, 1.7324219, -1.8242188, 0.35620117, 1.0878906, 1.6533203, 2.4980469, 2.4296875, 0.83203125, -1.4042969, 0.1149292, 0.20776367, -0.31640625, -1.2246094, -1.5126953, -0.19030762, 3.4960938, -0.17541504, -2.5214844, 0.7392578, 3.25, -0.3647461, 1.4814453, 2.5410156, -0.4189453, 0.4633789, -0.8564453, -1.8867188, -0.5371094, -0.9453125, 0.9926758, -3.0585938, 2.0703125, 0.31347656, 1.4462891, 1.3105469, 1.0605469, -0.6582031, -1.0087891, -2.0273438, -0.17138672, -2.0644531, -1.8330078, -2.453125, 0.97021484, 1.1972656, 2.4492188, -0.68408203, 0.35058594, 0.42944336, -1.7880859, -0.8652344, 1.2412109, 0.49023438, 0.7397461, -0.91552734, 2.296875, -0.2619629, -0.45385742, -1.5546875, -0.75634766, -0.6616211, 1.1904297, 2.5292969, 1.6259766, -0.6274414, -1.2158203, -2.6777344, -5.3164062, 0.28076172, 1.0546875, -0.29785156, -0.21057129, -2.8378906, -0.7050781, 0.6845703, -1.5244141, -0.5263672, -3.21875, -0.23120117, -1.1660156, -0.77783203, -0.033843994, 0.6489258, -0.64941406, 1.1796875, -1.7763672, -1.0869141, 0.5517578, -1.4599609, -2.0996094, 0.6767578, -1.0205078, 0.06365967, 2.640625, -2.1621094, -0.68115234, 2.3242188, 0.5136719, -3.2207031, 2.4257812, -3.5566406, 0.79589844, 1.3115234, -2.1210938, 1.9697266, 2.7617188, 1.2011719, 1.7871094, 1.375, 3.3476562, -0.6040039, -1.8222656, 1.9267578, 0.6328125, 0.10882568, -1.6796875, 1.4345703, -1.0810547, 0.05795288, 2.5625, 0.10015869, -1.7109375, -1.3505859, -1.7880859, 0.36694336, -0.089904785, -0.4736328, 0.5571289, 0.6176758, 1.9511719, 0.20300293, 1.6513672, 1.0791016, 0.6767578, 0.21228027, 1.7070312, -1.3935547, 1.8515625, 0.42041016, -1.3017578, -2.6230469, -0.9038086, 1.5791016, 2.8144531, -0.7475586, 0.3251953, 0.18884277, -0.7133789, 0.23303223, -1.5380859, 1.9697266, -0.1965332, 1.9873047, -0.57470703, -0.4650879, 2.6191406, -2.5273438, 0.10443115, 0.1303711, -0.94970703, -0.73095703, 1.2011719, 3.2441406, -2.2109375, -0.78125, -2.5058594, 0.6821289, -1.6142578, 0.019378662, 1.703125, -1.5810547, 1.1015625, 0.43066406, -1.7148438, -3.3378906, 1.0595703, 0.14233398, -1.5927734, 1.6972656, 2.4707031, -0.21252441, -1.1748047, 2.3496094, 1.7167969, 0.115722656, 0.024765015, -3.1796875, 0.19885254, 1.4404297, -1.5703125, 0.41503906, 3.2050781, 1.7939453, 0.42504883, -1.4638672, -0.21008301, 2.1308594, 1.6474609, 2.2617188, 2.9902344, -0.29711914, 1.9638672, 1.8203125, 2.3613281, 2.1855469, -0.6933594, 1.1855469, 0.62109375, -0.057800293, 0.2836914, -0.3203125, -0.63916016, -0.24572754, -0.27026367, -0.020446777, 2.7988281, 1.2353516, -3.6621094, -1.3408203, -0.5683594, 0.028762817, -3.9785156, 0.61083984, -2.4550781, -0.6977539, 1.7958984, 0.064086914, 0.38500977, 1.359375, -1.9335938, 1.140625, -0.4128418, 3.3574219, 1.1123047, -0.43676758, -1.6357422, -2.6269531, 2.2070312, 1.0654297, 0.39746094, 0.4296875, 1.2431641, -0.9580078, -1.7753906, 2.0214844, 1.5976562, -2.6503906, 0.72802734, -0.6948242, 2.8613281, 3.1640625, -1.3369141, 2.3164062, -0.14404297, 0.26293945, -3.78125, 1.6845703, -0.054107666, -0.67089844, -0.7290039, -4.296875, 0.9194336, -1.4160156, 0.2331543, -2.3378906, -0.3413086, 0.10992432, -0.55078125, 0.5883789, 0.83251953, -2.84375, 3.3554688, 1.5820312, -1.2548828, 0.070129395, 3.0820312, 1.6894531, -0.01007843, 0.19628906, 0.22033691, -1.4873047, -1.9609375, 3.1035156, -0.32348633, -1.2529297, 1.0566406, 2.5, 0.4794922, 1.6308594, 0.62646484, 1.5166016, 0.5180664, 1.3242188, -0.46142578, 0.28198242, -1.7314453, -0.39624023, 0.8666992, -0.2836914, -1.3183594, -0.70410156, 1.3105469, 0.91748047, -1.84375, 1.0009766, 1.0947266, -0.43237305, 1.1484375, 0.22021484, -1.0683594, -1.1396484, 0.54296875, 0.5913086, -3.65625, 0.26904297, -0.1953125, 0.06994629, -0.63378906, -0.8286133, -1.4228516, 0.8959961, 0.055786133, 0.19274902, -0.22399902, -1.1494141, 0.7241211, 0.34716797, -0.51660156, 2.0625, 1.7119141, -1.6201172, 2.5996094, -0.3095703, -0.76123047, 0.026824951, -2.4140625, 0.11138916, 1.4228516, 1.8457031, 1.6865234, 2.1503906, -2.09375, -1.5478516, -0.7270508, -3.4179688, 1.6806641, -0.27270508, -1.6044922, 0.6982422, 1.6181641, 2.3164062, 0.14379883, 1.1630859, -0.51416016, 0.75097656, 1.84375, -2.0214844, 1.1582031, -0.6479492, -1.2441406, 1.0390625, 4.6015625, 2.4238281, -1.1757812, -0.49291992, 1.3037109, -0.97314453, -2.8847656, 1.1689453, -0.5473633, 0.265625, 0.38183594, 1.9931641, 3.6425781, 2.1074219, -1.7324219, -0.515625, 0.11627197]}, "B08D8S7BK1": {"id": "B08D8S7BK1", "original": "Brand: KILILIUN\nName: KILILIUN 2 Pack 15 inch 1/4\" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4\" Male NPT and QCC1 Connector for Standard 2-Stage Regulator\nDescription:

Package Included:

2Pcs x 1/4\" NPT RV Propane Pigtail Hose with Gauge

1Pc x Thread Seal Tape

2Pcs x PVC Dust Covers


Feature:

Material: Durable 100% solid brass fitting and Stainless steel braided hose

Inlet connector: QCC1

Outlet connector: 1/4\" Male NPT


Convenience:

You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


Installation:

Easy to install and No extra tools needed.


Display:

The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


Kindly Note:

1/4'' Male NPT(Not 1/4\" male inverted flare). Please check your connector before you order.

\nFeatures: [Package included] 2 pack 15inch QCC1 1/4\" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4\" inverted flare).\n[Durable Material] 1/4\" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather.\n[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks.\n[Extensive Application] You can connect the RV propane pigtail hose 1/4\" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking.\n[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.\n", "embedding": [-0.9116211, 2.1914062, -0.048034668, 2.1484375, -0.9316406, -1.015625, -0.52246094, -0.52978516, 2.2792969, 0.8305664, 1.5185547, -0.93652344, 0.890625, -2.4472656, 1.1796875, -0.16015625, -0.76416016, 2.0722656, 2.0039062, 1.3779297, 2.2011719, -1.7050781, 1.1152344, 0.50634766, 1.5986328, 0.6245117, 3.9355469, -1.9082031, 0.29882812, -0.42578125, 0.091796875, 0.65625, 1.1611328, 0.34814453, 0.065979004, -1.5732422, -1.453125, -1.0078125, -3.4824219, -1.5058594, -2.4316406, 2.3261719, -0.16992188, 0.8828125, -2.7402344, -0.26000977, 1.0117188, -0.13171387, -0.42871094, -0.37475586, -0.90966797, -1.0322266, 0.09246826, 1.7324219, -2.4160156, -0.6616211, -0.57177734, -1.1689453, 1.0839844, 0.91259766, 0.41601562, -0.8173828, -2.109375, 1.0820312, -1.0683594, 1.5371094, -0.054595947, 0.36767578, 2.1582031, 0.5439453, 2.7832031, 2.0742188, -0.6269531, -1.3837891, -0.67871094, 0.51953125, -2.5800781, 1.2050781, 2.8339844, 1.6689453, 0.59228516, 0.8330078, -0.60791016, -1.5595703, 0.9379883, -0.9472656, -1.7041016, -0.056854248, 1.0117188, 0.68066406, -2.9921875, 2.6914062, -2.2617188, -3.2792969, -0.69628906, 0.10852051, -0.017211914, -0.8823242, 2.6464844, 0.57714844, -1.546875, -1.7167969, 1.3525391, 1.2041016, -0.98095703, -0.49853516, -0.6435547, -1.0039062, -2.7753906, 1.3886719, -0.9194336, -0.32104492, 1.3886719, -2.3886719, 0.22631836, -1.6708984, -0.4333496, -1.2666016, 1.5498047, 1.0820312, 1.9130859, 1.4794922, 0.9814453, -0.045806885, 1.5722656, 1.6660156, -1.2451172, 0.4255371, 2.4082031, -0.98779297, 2.8964844, -0.7519531, 1.9453125, 1.3652344, 0.15979004, -2.8964844, -0.21557617, -2.7148438, -1.9130859, -0.43188477, -3.1796875, -0.93896484, 1.9375, -1.1113281, -4.59375, 1.4550781, -2.1289062, 1.1220703, 1.9755859, -1.7539062, 2.7070312, -1.4257812, 0.90722656, -0.15979004, 2.7109375, 2.0820312, 1.3466797, -1.6865234, 1.9765625, 2.1542969, 1.0166016, 0.02772522, -1.7568359, 1.5253906, -1.28125, -2.859375, 1.1455078, 0.032348633, -0.6298828, 0.1463623, -0.38183594, -2.4804688, 0.14221191, 0.016983032, -0.9921875, -2.5507812, 0.72558594, 0.91796875, 2.7949219, 1.09375, -4.09375, -2.6210938, -1.0761719, -1.5390625, 2.2988281, 1.4345703, -0.70166016, -2.53125, 1.3037109, -0.56103516, -2.2578125, 0.17199707, -0.41186523, 0.62597656, -1.7783203, -1.8798828, -2.1523438, -0.9609375, 0.32592773, 0.65527344, -0.5996094, -1.7519531, 0.00017213821, 0.39501953, -1.3232422, -0.4230957, 0.19421387, -0.48876953, -0.33374023, 2.5761719, 0.77734375, -0.21655273, 4.0078125, -0.25268555, -1.0332031, -1.4658203, -0.30322266, 3.0625, 1.6835938, 0.3305664, 1.0556641, 1.2871094, 0.37890625, 0.2154541, 1.1337891, 1.1201172, -0.38842773, 1.0517578, -2.0195312, -1.1630859, 1.9482422, 2.2441406, -1.4824219, 0.6464844, -0.09716797, 2.2050781, 0.5004883, -1.3613281, -0.4350586, 2.21875, -1.4023438, -2.3242188, -0.9135742, -1.7304688, 0.34716797, 0.6738281, -1.7177734, -1.1230469, 1.7939453, -0.84521484, 1.546875, -1.1376953, -1.75, -0.24975586, -0.86328125, 0.06518555, 0.5859375, 1.2207031, 1.3564453, -2.4941406, 2.5351562, 1.9746094, 0.86035156, 1.109375, 1.7382812, 1.8720703, -0.39013672, -1.7548828, -1.1953125, 2.2753906, -1.8818359, 3.390625, 1.5595703, -2.125, 0.42871094, 1.3427734, -2.0957031, 2.5605469, -1.3759766, 2.3671875, 2.546875, 0.05303955, 1.1660156, -3.75, 2.1484375, 0.042419434, 2.0527344, 0.8149414, -1.6630859, 1.9365234, 4.625, -1.5634766, -2.0976562, 2.609375, 3.7929688, 1.6376953, 2.0800781, 0.6479492, -1.7470703, -0.091430664, -0.45483398, 0.62646484, -2.0253906, 0.76464844, 1.9355469, -0.29541016, -0.15686035, -1.5371094, 1.1982422, 0.04812622, -0.18579102, 0.22351074, -3.3046875, 0.8613281, -0.5541992, -2.7070312, 2.03125, -2.1210938, -1.9453125, 1.0517578, -1.75, 0.71191406, -0.23034668, -2.578125, -1.1962891, 1.5800781, -1.7998047, 0.2939453, 0.93896484, 3.2773438, 0.15441895, -1.6757812, 0.7397461, -2.0683594, -0.8203125, -0.018478394, -0.98535156, -2.3359375, 0.953125, -2.0742188, -1.9814453, 0.22875977, 1.8916016, 4.9765625, 1.921875, -1.0292969, -1.3544922, 1.1181641, -0.30566406, -1.0498047, 0.27734375, 1.7763672, -0.44580078, -3.1933594, -0.4177246, -0.52490234, -1.8847656, 0.52441406, -2.4589844, -0.5649414, 2.0800781, 0.89990234, 0.7583008, -0.30322266, -1.1445312, -2.3339844, 2.1484375, -3.0957031, 0.9345703, 0.03994751, 3.0820312, -1.3847656, 0.5527344, -2.0722656, -2.1074219, -0.7006836, -1.5273438, 2.8164062, -0.05126953, 0.7993164, -2.0332031, -0.74121094, -0.28930664, -0.4440918, -4.3554688, -0.19506836, 1.2617188, -1.6728516, -1.4550781, -3.3144531, -0.57421875, -0.4753418, 0.7651367, -0.2088623, -0.78564453, -1.1083984, 0.9824219, 0.52734375, -0.16748047, 0.9633789, 2.6699219, -0.013175964, -2.34375, 0.4645996, -0.7260742, -1.4013672, -1.8125, 0.082336426, 0.36499023, -1.2978516, -1.1484375, 0.036346436, -0.27197266, 1.3544922, -0.7871094, -3.5214844, 0.4453125, 3.359375, -1.0351562, 1.5380859, -1.9736328, 1.1914062, -0.87109375, -1.3837891, 3.0351562, 2.6914062, 1.6289062, -1.8583984, 1.0390625, 0.1685791, 0.11212158, -0.41333008, -0.6489258, 0.34936523, 1.0478516, -1.6914062, -1.5136719, -0.12768555, -0.6616211, -3.9589844, 2.0625, 0.71875, -1.9228516, 1.5644531, 0.7895508, 0.71777344, -0.72314453, 1.078125, 0.7739258, 0.13232422, -0.29003906, -0.3774414, 1.3310547, 0.29003906, -1.0869141, 0.9863281, 1.625, 1.9453125, 0.026519775, 1.3408203, 1.1367188, -0.8696289, 0.12976074, 0.051879883, 0.07696533, -0.31469727, 2.9707031, -0.3232422, 0.13891602, 1.4619141, -0.7993164, 3.1933594, -1.8027344, 0.0048980713, 2.0839844, 1.9599609, -1.3554688, -1.2148438, -1.7050781, -1.2685547, -0.101501465, -0.40722656, 0.71191406, 0.9692383, 1.5566406, -1.2910156, 0.8989258, -0.60253906, 2.734375, -0.66015625, 0.7807617, -0.96435547, -1.7236328, -1.7089844, -2.2714844, 0.19360352, -2.3320312, -2.2910156, 1.4482422, 2.125, -1.8349609, 1.4208984, -0.23400879, 2.0039062, 1.3349609, -0.027709961, -0.051574707, -0.96484375, 0.39038086, 0.6411133, -0.7988281, 1.8242188, -1.3398438, -1.2763672, -0.29101562, -1.3779297, 0.73291016, -0.025726318, 2.9746094, -2.6914062, -0.37451172, -0.26489258, 2.1074219, 1.2666016, 2.8105469, 0.24267578, 2.7851562, -0.23388672, -2.8144531, -0.4633789, -0.0635376, -4.3007812, 0.3359375, -1.6230469, 1.3554688, 2.6621094, 0.6953125, -1.2744141, 1.3212891, 2.2246094, -2.890625, -1.0449219, -2.0859375, 1.0957031, -2.3515625, -0.23303223, 1.5732422, -0.75878906, 0.42651367, -3.2460938, -0.40161133, -0.26635742, -1.4394531, -0.5214844, -1.7792969, -0.82373047, -0.7963867, 0.2841797, -1.3769531, 0.0014343262, 1.4960938, -0.5336914, -0.56640625, -2.4199219, 1.1015625, 0.15026855, 2.2675781, 0.65625, 4.3984375, 2.6367188, 0.83740234, -0.47387695, -1.9394531, 4.1015625, 0.015449524, -2.3007812, -0.113464355, -0.19519043, -0.5595703, 0.5131836, 0.28930664, -0.7114258, 0.6484375, 3.0390625, 0.22216797, 1.6796875, 1.8378906, -2.4003906, -2.5800781, 1.5332031, 1.3564453, -1.8222656, 1.9443359, -1.359375, -1.1474609, -2.2519531, -0.14489746, -1.1396484, -0.27319336, 0.099487305, 0.35253906, -2.9199219, 0.8876953, 2.6777344, 0.1706543, 1.2705078, -1.2451172, 0.40527344, -0.9003906, -0.08666992, -0.5805664, -0.7504883, -1.6445312, 1.5400391, 1.4257812, -0.043182373, 0.8251953, -0.2939453, -0.9897461, 0.33203125, -0.7607422, 0.07623291, 2.4902344, 0.48535156, -2.8945312, 0.7060547, -2.2480469, 4.6953125, -0.9814453, 1.3007812, 0.9433594, -0.9946289, -3.5664062, 2.171875, 1.4013672, 2.546875, -0.43481445, -1.2695312, 1.9042969, 2.5839844, 1.0585938, 0.12426758, 1.546875, -2.7910156, -0.54296875, -1.0419922, 2.6601562, -3.0742188, 2.3125, 1.4863281, 0.6166992, 0.75146484, 2.5351562, 0.7368164, -0.8227539, 0.6010742, 0.84375, 0.75634766, -1.9912109, 0.9008789, -1.6513672, 1.8427734, -2.2050781, -1.4521484, 0.071899414, 2.2089844, 0.019683838, 3.046875, 1.3925781, -0.007648468, -1.9023438, -3.0058594, -1.7441406, 0.14086914, -0.7973633, -0.21691895, -2.2832031, 1.5966797, 1.9179688, 1.7724609, -0.26000977, -1.75, -0.89208984, -2.1328125, -0.2866211, -1.9189453, -1.5117188, -0.53222656, -4.1875, -0.6484375, 0.06542969, 1.3369141, -0.8754883, -0.0035800934, -0.328125, -0.74658203, -1.1074219, -0.51171875, -0.7949219, -1.1074219, -0.18518066, 2.1738281, 1.9550781, 0.17663574, -1.1123047, 0.49194336, -0.7133789, 1.6953125, 2.8398438, -0.8535156, -0.8779297, -0.9375, -1.8457031, -3.8203125, -0.17321777, 2.1367188, 1.2773438, 1.0507812, -1.8837891, 1.0947266, 0.8051758, -1.1738281, -2.1289062, -2.6074219, 1.0263672, -0.96435547, -0.12817383, 0.78759766, 0.98828125, -1.2792969, -2.5507812, -3.5585938, -0.36621094, -0.6933594, -0.90771484, -1.2626953, 2.0292969, -0.87646484, -0.64697266, 2.5410156, -1.2431641, -0.26171875, -0.1463623, 0.95214844, -1.4697266, 1.1357422, -2.8535156, -0.064575195, 1.8427734, -1.9921875, 1.6806641, 1.4023438, -2.1542969, 0.78125, 2.9101562, 2.5175781, -1.890625, -0.23791504, 1.9599609, 0.25585938, -0.15612793, 0.23669434, -0.05908203, -0.103881836, 1.1523438, 1.9794922, -0.52001953, -1.1621094, -1.6152344, -2.5878906, 1.1435547, -2.4609375, -1.0527344, 0.5800781, 2.4335938, 1.7041016, 0.6791992, 0.27148438, 1.0146484, -0.73095703, -2.4667969, 3.4238281, -2.7988281, 3.1816406, 1.5009766, -2.7109375, -3.9492188, -0.1038208, 4.953125, 1.171875, -1.8417969, 0.34570312, 0.96777344, 1.0263672, -0.11743164, -0.7993164, 0.7241211, 0.78564453, 2.6855469, -1.5927734, -0.28930664, 0.78515625, -1.8769531, 1.2392578, 0.7709961, -0.93896484, -1.0009766, 0.72998047, 1.8554688, -2.4082031, 0.8227539, -0.08258057, 0.82128906, -0.94384766, -0.7973633, -0.27685547, -2.2753906, 1.2617188, 0.21936035, -0.9165039, -2.5507812, 4.7109375, -0.46142578, 0.90722656, 2.6074219, 0.48413086, 1.1796875, -1.8105469, 2.6835938, 0.6401367, 0.07952881, -2.359375, -2.5097656, 1.9033203, 0.76953125, -0.38378906, 0.7529297, 0.28125, 2.4023438, 0.73535156, 1.515625, -0.023529053, 0.8925781, -0.875, 2.7578125, 2.8574219, -1.0673828, 2.1230469, 1.1992188, 2.0957031, 2.9550781, -1.9335938, 0.46435547, 0.25317383, 1.0224609, 0.6279297, 0.9370117, -0.016525269, -0.15441895, 0.7260742, -0.39697266, 1.4570312, 0.5991211, -3.0976562, -1.3476562, -1.3251953, -2.8945312, -1.9355469, -0.025985718, -2.4277344, 1.3154297, 1.5214844, -1.7519531, 0.85791016, 1.5566406, -0.85595703, 0.7368164, -0.89990234, 3.1738281, -2.4492188, -0.8955078, -2.4023438, -3.3925781, 0.45239258, 2.90625, 2.3964844, 0.04727173, 0.9736328, -0.14660645, 1.2597656, 2.0058594, 0.56689453, -1.3710938, 2.2675781, 0.07543945, 1.5253906, 1.2548828, -1.0722656, 0.041931152, 1.7216797, -2.3105469, -5.21875, 0.012763977, 0.9580078, -0.21923828, -1.4404297, -4.21875, 0.97753906, -4.2226562, 0.6542969, -1.6923828, 0.10473633, -1.0751953, -2.0898438, 1.4560547, 0.43066406, -1.7050781, 2.21875, 0.93359375, 0.8930664, 1.1113281, 2.1132812, 2.1796875, 0.33666992, -0.05130005, -1.1025391, 0.28930664, -2.0195312, 3.0898438, -1.7109375, -0.34643555, 0.23059082, 1.3603516, 0.0859375, 0.7055664, 1.25, 0.25439453, 1.4257812, 0.3881836, 0.7080078, -1.5087891, -1.6445312, -1.3525391, 1.1083984, 0.022018433, 0.39257812, -1.015625, 2.2089844, 1.8964844, -2.5195312, -0.96240234, 0.5488281, -0.7109375, 1.0302734, 0.84472656, -1.6279297, -2.109375, -0.24365234, 2.4765625, -0.78515625, 0.05923462, 0.22192383, 1.7558594, -1.2529297, -1.6201172, -0.71191406, 0.46142578, -1.265625, -0.03277588, 0.6791992, 1.6181641, -1.0517578, 0.9682617, -1.9013672, 2.8222656, 2.8613281, 0.34033203, 2.5625, -0.30981445, 0.56591797, -0.16577148, -1.0087891, -0.9863281, 0.8852539, 1.6318359, -0.32348633, 2.0292969, -0.1315918, -2.9335938, -1.2294922, -2.5234375, 0.75341797, 1.0273438, -1.3046875, -0.53271484, 1.5019531, 0.67871094, 0.08782959, 1.8017578, 1.5, 1.7802734, 1.1835938, -1.7119141, 0.45654297, -2.0351562, 0.7714844, -0.3779297, 2.8515625, 1.6425781, -2.53125, 0.34106445, 1.28125, -0.19763184, -0.10144043, -1.4023438, -0.81591797, -0.16027832, -0.23596191, 1.1933594, 2.7558594, 0.7001953, -2.2246094, -0.3894043, 0.6386719]}, "B07Q4DMHK9": {"id": "B07Q4DMHK9", "original": "Brand: MR. TORCH\nName: BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY\nDescription: \nFeatures: Max Temperature heat up to 2642\u00b0F (1450\u00b0C), Powerful Supper Swirl Cyclone Flame\nTrigger Start Piezo Ignition, Anti-flaring\nUse standard propane or MAPP or MAP/Pro gas cartridge\nIdeal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers;\nMade in Taiwan, with the highest quality control.\n", "embedding": [-1.4892578, 2.3867188, 1.2773438, -0.50341797, -0.13098145, -0.8623047, 0.040985107, 0.22692871, 1.0390625, -0.7861328, -0.5161133, -0.8964844, 0.45654297, -2.5742188, -0.17871094, 1.8417969, 0.16027832, 1.8681641, 0.21520996, 1.1738281, 1.3095703, 0.28515625, 1.8896484, 0.50927734, 1.1738281, -1.4199219, 2.8417969, -2.671875, -0.45166016, -0.80908203, 0.8486328, 0.77685547, -1.4375, 0.8876953, -3.2207031, 0.03918457, -0.82177734, 0.2788086, -2.5273438, -0.4375, -2.8144531, 1.5820312, 1.1972656, 1.2001953, -2.7714844, 0.4453125, -1.5957031, 0.2475586, -1.1650391, -1.3525391, 0.5283203, 0.041534424, 0.84033203, 0.023101807, 1.3349609, -0.5053711, -1.9023438, -2.296875, 2.9765625, -0.11785889, 1.0820312, 0.20996094, -4.109375, 0.41992188, -0.24890137, 2.8085938, -1.1132812, -2.3710938, 0.8100586, 0.13708496, 1.8681641, 3.3710938, 1.9375, 1.09375, 1.4326172, -1.1669922, -2.5800781, -1.4111328, 0.5605469, 0.49072266, 2.3359375, 1.9726562, 1.1083984, -0.75097656, -0.72509766, -1.4921875, -0.7480469, 0.90722656, 2.3476562, 2.6132812, -1.6230469, 1.1298828, -0.033111572, -3.4550781, 2.1308594, -1.3417969, 0.0064430237, 0.31298828, 1.0634766, 0.40893555, -0.6459961, -0.40307617, -0.4482422, 1.0371094, -2.6425781, 1.3173828, -0.32006836, 0.65625, -2.8398438, -0.92578125, -2.96875, 0.03036499, 0.32983398, -0.18493652, -2.1914062, -0.6044922, 1.7666016, -0.50878906, 1.7529297, 0.05328369, 1.1367188, -0.34326172, -0.22619629, -1.2294922, 0.4494629, 0.5415039, 0.27001953, 0.66064453, 0.74609375, -0.93359375, -0.42993164, 0.63916016, 1.5615234, -1.6679688, -0.63378906, -0.78466797, -0.4873047, -0.98583984, -2.4804688, -1.6376953, -2.828125, 1.5810547, -0.20690918, -1.2294922, -4.1328125, 1.53125, -0.23901367, -0.36010742, 0.38623047, -0.90283203, 1.2324219, -1.1855469, -0.79248047, -2.7597656, 1.8671875, 2.265625, -2.4160156, -0.36010742, 3.7460938, -0.8666992, 0.22290039, 0.5986328, -1.3173828, 2.2714844, -1.453125, -0.7651367, -0.13598633, 0.55126953, 0.24926758, 1.8095703, 0.5698242, -1.0458984, 0.48120117, 0.5698242, -0.09674072, -2.7089844, 0.3461914, 3.59375, 0.6303711, 0.7602539, -1.9570312, -0.5595703, 0.6376953, 0.9238281, 1.1699219, -1.2197266, -0.7138672, -0.9609375, 1.4824219, -0.8144531, 0.30322266, 1.6650391, 1.1298828, 1.6347656, 1.8769531, -1.6796875, -0.33447266, -2.1328125, 0.4819336, -0.62353516, -3.3085938, -0.77001953, 0.6484375, 0.5175781, -1.9472656, -1.7773438, -0.2265625, 0.6767578, 0.3413086, 1.0976562, 0.7910156, -0.7973633, 0.9863281, -1.4814453, 0.5415039, -2.8867188, 0.43237305, -0.06750488, 0.9873047, 0.20336914, 0.47314453, 0.42016602, 0.23876953, 1.9501953, 2.1484375, 0.54248047, -1.3447266, -1.0234375, -2.1523438, -1.7021484, 1.3525391, 0.9560547, -0.52783203, -1.4794922, -0.5620117, 0.32666016, -0.9169922, -1.34375, 2.1503906, -0.47265625, 0.81884766, -2.8574219, -1.0976562, -0.38085938, 1.8896484, 0.55810547, -0.8383789, -0.51171875, 0.7836914, -0.72998047, 2.3691406, 1.3105469, 1.9306641, 1.28125, -2.1953125, -0.34472656, -0.4177246, 0.4248047, -2.1992188, -1.5234375, 3.0351562, 2.1875, 0.13244629, 0.9580078, 0.89208984, -1.1845703, 2.1777344, -0.4086914, -0.3173828, -0.4099121, 0.52734375, 0.82421875, 0.84716797, 1.3417969, 1.4980469, 3.0097656, -1.8056641, 2.2109375, 0.47802734, 0.91259766, 0.032562256, 0.5415039, 0.82910156, -2.6894531, -0.22229004, -0.93408203, 1.0927734, -0.23571777, -1.4990234, 0.3947754, 3.5273438, 0.04147339, -2.4082031, 3.6113281, 0.006340027, 2.3417969, 0.7919922, 2.1113281, -0.95214844, -2.4980469, 1.4150391, 1.7158203, -0.7524414, -0.08569336, 0.69433594, 0.7060547, 1.0302734, -2.0214844, 1.8505859, 0.2775879, 0.26245117, 1.5019531, 0.15527344, 0.66845703, -1.9277344, -1.8056641, 1.4072266, -4.3789062, 0.80029297, -1.1621094, 0.33666992, 2.2011719, 2.2285156, -0.06561279, 0.7963867, 0.73583984, -0.8276367, 2.7070312, 0.38476562, -0.55322266, -1.1162109, -1.0976562, 1.1416016, -2.15625, -0.080566406, 0.87109375, 1.0107422, -4.6445312, 1.0849609, -2.9375, -0.8144531, 2.4335938, -0.12347412, 2.1835938, -0.9785156, -1.3798828, -1.0009766, -0.22058105, -0.67529297, -0.7836914, 1.3916016, 3.4277344, -0.3449707, -3.3378906, 1.9492188, -1.3857422, -0.71533203, 0.72314453, -0.79052734, 1.0537109, -1.3837891, 0.59033203, 0.6899414, -0.9580078, 1.0244141, -2.5175781, 2.4707031, -2.28125, 0.5727539, -1.3349609, 1.5419922, 1.5107422, 0.07684326, -1.7021484, 0.04638672, 0.6958008, 0.63427734, 2.4335938, -1.1914062, 3.3886719, 0.33398438, -2.6582031, 0.59814453, -1.3857422, -1.7021484, 0.42822266, -1.0849609, -1.8066406, -2.3164062, -2.859375, 0.17028809, -0.42211914, 0.34985352, 0.61083984, -0.029327393, 0.23535156, 1.8603516, -1.1943359, -1.3964844, 1.4345703, -1.2236328, -0.32983398, -1.9208984, 1.4785156, -0.51904297, -3.0292969, -1.2089844, -1.171875, 0.42822266, 0.48364258, 1.0322266, 0.8676758, 1.7275391, 0.5625, 0.6777344, -3.9433594, 1.1835938, -0.038635254, -1.7841797, 0.1071167, -0.62353516, 0.61083984, -1.5917969, -0.7236328, 3.8085938, -0.6166992, 1.5419922, -0.019363403, 0.37817383, 1.2841797, 0.61621094, -1.4492188, -0.56152344, 0.6923828, 1.5078125, -3.2089844, -0.68359375, 0.34326172, 0.97314453, -2.7753906, -0.6352539, 0.72265625, 0.037750244, 0.5283203, 2.0703125, -1.0527344, 0.4411621, 0.34643555, 0.8691406, 0.77246094, -1.2919922, 0.26000977, 0.15393066, -0.8652344, 2.4492188, 0.58496094, 1.6210938, 0.41625977, 2.3613281, 1.9414062, 1.3095703, -1.6582031, -1.0625, -0.21838379, 1.1289062, 1.0019531, 1.7441406, -0.55615234, -0.08502197, 1.453125, 0.859375, 1.7802734, -1.2363281, 0.03353882, 0.6166992, 0.8515625, -1.0625, 0.06335449, 0.83447266, 0.03665161, -2.09375, 1.2148438, -1.2060547, -1.2197266, 0.32910156, -0.75097656, -0.13684082, -1.7197266, 2.203125, -0.31860352, -0.5449219, 0.01058197, -0.34106445, -1.4882812, -0.52490234, -0.8564453, 0.6020508, -0.92871094, 2.6953125, 0.7348633, -0.8051758, -1.5654297, -1.1953125, -1.8515625, 0.5292969, -2.8613281, -1.2734375, -1.140625, -0.31518555, -0.34326172, 0.88378906, -0.18005371, -0.2097168, 0.0552063, 2.3359375, -2.6503906, 1.7646484, 0.5073242, -2.0859375, -0.25830078, 0.38330078, -1.9375, -0.47143555, 1.4414062, 3.5039062, -0.18481445, -1.5566406, 1.7333984, -1.6914062, -1.7021484, -3.5214844, -3.7988281, 0.76416016, -0.37231445, 0.7714844, 3.140625, 0.3371582, 1.2792969, -0.67822266, 0.6772461, -1.3496094, -2.6289062, 1.5136719, 2.4257812, -1.2802734, -2.9277344, 3.0664062, -1.1640625, -0.43798828, 1.2792969, 0.6669922, -0.06124878, 0.7397461, 1.9052734, -0.84521484, 1.15625, 0.58740234, 0.8339844, -0.07336426, 0.103637695, 1.0947266, 0.22155762, 0.2932129, -2.8925781, 2.1679688, 2.421875, -0.92871094, -0.7739258, 0.42919922, 2.3222656, 0.90625, 0.52001953, -0.15551758, 2.53125, 1.5869141, -2.5214844, 0.70703125, -1.9130859, 1.4072266, -0.7519531, 0.30395508, -1.6582031, -2.2421875, 2.5605469, -0.78759766, 0.97753906, 0.7324219, 0.87890625, -1.3730469, 0.37768555, -1.4443359, -2.5097656, 0.76708984, 1.4052734, 0.5444336, 0.12866211, 1.5693359, -1.1689453, 0.7270508, -0.17126465, 0.19482422, -2.1953125, 0.017959595, 2.3046875, 0.047607422, 1.5322266, -0.9370117, -1.6630859, -2.8046875, -0.21655273, -0.84814453, -0.44458008, 1.6123047, 0.44091797, 0.7861328, -0.23913574, 1.1386719, 0.6845703, 1.3251953, -1.1572266, -0.045318604, -0.2553711, 0.13757324, -1.6357422, 1.0214844, 1.8759766, 0.35302734, 1.4140625, -1.453125, -0.43676758, -1.3496094, -0.024719238, -1.1855469, -0.44018555, 0.93847656, -0.027877808, 1.5292969, 0.4819336, 2.40625, 0.12634277, 0.23022461, 1.2001953, 0.14440918, -0.2602539, 1.2802734, 0.93115234, 0.40576172, -1.3818359, -2.5820312, 2.4257812, 1.3125, 0.2019043, 3.0683594, -0.25756836, -2.6679688, 1.4345703, 1.9267578, -2.3554688, -0.5620117, -2.875, -2.0429688, 1.4160156, 1.2607422, -1.1669922, -0.4333496, 1.4316406, -0.110961914, 2.0625, -1.0332031, -0.06915283, 0.12890625, -1.7636719, -1.5371094, -0.2980957, 0.9580078, 0.26391602, -0.9399414, 1.0078125, 1.3730469, 2.4980469, 0.072265625, 0.05493164, -0.32128906, -1.3916016, -1.4638672, 1.2568359, 0.19873047, -1.8339844, -2.5136719, 1.4365234, 1.6572266, -0.20227051, 0.7836914, 0.8535156, 0.9765625, -1.9863281, 0.13244629, -0.7626953, 0.21008301, -1.7128906, -0.54541016, 3.6445312, -0.38305664, 1.0917969, 0.02116394, -0.68652344, -0.7949219, 0.9086914, -0.16674805, -0.32250977, -2.4941406, 0.39672852, -2.6328125, -3.9042969, -2.1953125, 0.51904297, -1.1191406, 1.4863281, -0.21179199, -0.9423828, 0.017654419, -0.6225586, 0.9975586, 0.053833008, 2.2773438, 0.22583008, 0.78125, -0.6791992, 1.0556641, 0.53759766, -0.90771484, 0.13317871, -1.328125, -0.3696289, -2.4296875, -3.0351562, 0.28076172, -0.83447266, 0.28881836, 0.46362305, -0.83691406, -0.5205078, 3.046875, -0.17102051, -1.6396484, -0.5, -1.6884766, 0.32421875, -0.39233398, -1.796875, -0.5942383, -0.4165039, 0.39697266, -0.22644043, 2.1679688, -0.37768555, -1.6044922, -0.18164062, 0.57714844, 0.32885742, 0.14941406, -2.0644531, 0.84375, -0.6171875, 1.3798828, 0.7084961, -0.20019531, -1.4921875, -1.4746094, -2.2675781, 0.08258057, -0.9238281, 1.1865234, -1.2314453, 0.39941406, 0.089660645, 1.2646484, 1.6464844, 0.5786133, 2.1699219, -0.6196289, 0.43188477, 0.3955078, 2.9628906, -0.17248535, -2.7929688, -1.6552734, -0.88916016, 3.4882812, 1.3007812, 0.011077881, -0.72216797, 0.5336914, -1.3320312, -0.58984375, -1.0107422, 0.46044922, 0.8666992, -0.7368164, -4.1523438, 1.4951172, -0.057434082, -1.2451172, -0.5180664, 1.3232422, -0.11706543, -0.82421875, -0.6894531, 0.1694336, -3.6503906, 1.8339844, 0.46826172, -0.734375, 0.26953125, -1.4960938, -0.052124023, -1.1748047, -0.06762695, 1.4306641, 0.28588867, -1.7363281, 0.24511719, 2.1152344, 2.6289062, 1.5371094, 1.3056641, -0.74658203, -0.5810547, 3.1640625, 1.6074219, -1.3632812, 0.77978516, -0.07373047, 0.30444336, 0.8339844, -2.6640625, 1.3164062, 0.9272461, 1.3867188, 1.0068359, 0.18054199, -0.11834717, 1.1640625, 1.9804688, 3.28125, 0.99902344, 1.4638672, 0.29638672, 1.0810547, 2.2324219, 1.4345703, 1.1142578, 2.5742188, 1.2333984, 0.5102539, -0.4416504, -0.81347656, 0.55810547, -0.114990234, -0.9692383, -2.0683594, -0.012535095, 0.07098389, -2.3613281, 1.1171875, -2.1660156, -1.2519531, -1.4814453, -0.113708496, -2.4824219, -0.6088867, -1.2578125, 1.8652344, 0.19128418, 0.87402344, -1.0244141, 1.6152344, 0.36083984, 0.0056419373, -2.8945312, 0.2553711, 0.103881836, -0.010726929, 1.0527344, 1.6738281, 0.27685547, 0.6230469, 0.96533203, 1.9804688, -0.8803711, -0.30932617, 0.21032715, -0.4362793, -0.053649902, 2.5351562, 3.6113281, 0.81640625, 0.6333008, 0.6328125, -0.24963379, -0.5966797, -3.8164062, 2.4667969, -0.009429932, -1.1455078, 1.6513672, -1.7519531, 1.3398438, -1.484375, 0.77246094, -1.6855469, 1.0273438, 1.8427734, -0.22717285, 0.83447266, 2.4941406, 2.4941406, 2.9394531, -0.68115234, -0.72998047, 0.37768555, -0.20373535, 1.5898438, -0.031219482, 0.9589844, 0.40722656, -0.16821289, -2.4101562, 3.4394531, 0.25927734, -1.8515625, -1.2548828, 3.9101562, -0.73339844, 1.2705078, -0.7734375, -0.6088867, 0.2541504, -2.0332031, 0.28027344, -0.09954834, 0.9086914, -2.0976562, -0.8203125, 0.6308594, -0.32983398, -0.8120117, -1.0820312, 2.40625, -3.2480469, -0.40039062, 1.4042969, -2.7792969, 0.54589844, 1.609375, -1.609375, -0.7753906, 0.25512695, 2.171875, -2.7792969, -3.0136719, 1.6650391, 1.296875, -1.640625, -0.7480469, 0.019302368, -0.64501953, 0.18225098, 0.26733398, 1.0820312, 0.31103516, -1.4863281, -0.0015106201, -0.18017578, -1.3496094, -0.9633789, -0.7919922, 0.81347656, 0.11602783, -4.796875, -2.9960938, -0.52783203, -1.4091797, 0.2734375, 2.7539062, -1.0830078, 0.94970703, -1.8447266, -3.4316406, 1.5302734, -0.7290039, 0.85839844, 0.27294922, -0.96240234, 1.3115234, 1.0380859, 3.5351562, -1.7138672, -1.0400391, 0.0060577393, -1.5869141, 0.6298828, -0.15002441, 1.9697266, 0.9765625, 1.5820312, 0.5366211, 1.4111328, 0.8930664, -1.2236328, 1.2109375, 1.8955078, 2.5722656, -0.1060791, 0.033172607, -3.4160156, 0.3959961, 0.9448242, -0.9580078, 1.2363281, 0.63378906, -0.9946289, -2.1269531, -1.3662109]}, "B009V11U6C": {"id": "B009V11U6C", "original": "Brand: Dr. Shrink\nName: Shrink RapidShrink 100 Propane Heat Tool\nDescription: \nFeatures: It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors\nOur product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition\nManufactured in United States\n", "embedding": [0.44580078, 1.5976562, 1.0273438, 0.32666016, -0.19726562, 1.8779297, -1.3691406, -0.59228516, -0.24780273, 2.2285156, -0.2208252, 1.1679688, 0.8935547, -2.0078125, 0.44018555, 1.4355469, -1.3271484, 1.9638672, 0.9707031, 1.0546875, 1.8476562, 0.07952881, 0.61621094, -2.3300781, 2.6464844, -0.5239258, 1.796875, -0.3330078, -0.16015625, 1.3505859, 0.22351074, -0.41381836, 0.32666016, 2.6230469, -0.3203125, 0.859375, -1.6923828, -0.59765625, 0.82714844, 0.3244629, -1.2880859, 1.6474609, 1.5146484, 0.8378906, -3.0058594, -0.90722656, -0.8105469, -0.7636719, -0.05480957, -1.5244141, 0.32836914, -0.9946289, -1.6494141, 1.4423828, -1.4130859, -0.88378906, -1.6865234, -3.0761719, 1.2929688, -0.7890625, -1.7695312, -0.06359863, -1.7529297, 0.093811035, -1.4804688, 1.2646484, -0.9970703, -0.49853516, -0.5620117, 0.67871094, 0.013725281, 3.1035156, -1.1142578, -2.8867188, -0.69384766, 1.5224609, -2.9394531, 0.029891968, 2.0996094, 0.7128906, -0.8222656, 1.3486328, -0.13684082, -0.8051758, 0.42382812, -1.9492188, -1.2861328, -0.82373047, 1.5605469, 0.5185547, -1.1953125, 2.4375, 0.58154297, -6.4882812, 0.515625, -1.8681641, -0.049957275, 1.5673828, 0.64160156, 0.24621582, 0.8652344, -0.265625, 1.4570312, 0.90722656, -0.50341797, 0.43823242, 0.16357422, 1.8740234, -2.3398438, -0.83496094, -2.2695312, -1.2910156, 0.6801758, -0.60009766, -3.5019531, 0.026504517, -0.2310791, 1.2294922, 2.1035156, 0.1352539, 1.0595703, 0.28271484, 2.1289062, 0.048583984, 1.8212891, 0.018463135, -0.45043945, 0.16918945, 0.7792969, 0.14135742, -0.6142578, -0.07977295, 0.73095703, -0.79052734, -0.20593262, -1.0029297, -0.49902344, 0.55371094, -0.8886719, -0.48632812, -2.3242188, -0.98779297, 0.58154297, 0.14379883, -2.46875, 1.4765625, -0.9291992, 0.5595703, 1.2695312, -1.0761719, -0.024749756, -2.2285156, 1.4316406, -1.1552734, 1.5732422, 1.96875, -2.9394531, -1.9414062, 1.2255859, 1.3232422, -0.089538574, 0.56347656, 0.9086914, 1.1650391, 0.023071289, -4.96875, -0.7817383, -0.40551758, -0.9609375, 1.4082031, 1.3017578, -3.3652344, 0.6972656, -2.2988281, -1.1279297, 0.1071167, 3.9667969, 2.3261719, 0.75, -1.1474609, -1.2412109, -0.46777344, -0.8198242, 0.2084961, 1.5771484, -1.5380859, -1.3847656, -0.7182617, -2.4707031, -1.6748047, -0.55810547, -0.4111328, -3.1464844, 2.125, 2.6132812, -1.9433594, -1.3867188, -1.0292969, 2.5800781, 2.390625, -1.0839844, -0.32348633, 0.51220703, -0.92578125, -1.2529297, -2.1699219, 1.5957031, -0.74658203, -0.31591797, 1.1591797, 0.6821289, -3.2089844, 0.9003906, -1.4423828, 0.6855469, -3.8984375, 1.2460938, -0.9794922, 3.453125, 0.25439453, -1.6318359, 1.0507812, 0.52734375, -2.0996094, 0.8984375, 0.8095703, 0.013069153, 1.6074219, -0.89404297, 0.25097656, 2.4492188, 0.36206055, 0.6479492, -0.23352051, -0.7241211, 1.2275391, 1.5039062, -0.91015625, 1.1171875, 0.2697754, -0.17895508, -0.13647461, -2.6113281, -1.4453125, -0.88720703, -0.4025879, -0.6245117, 1.9892578, 1.9902344, 0.012016296, 0.05117798, -0.93603516, -0.2220459, 0.671875, -1.2685547, 1.5205078, -0.6699219, -1.0175781, -1.4638672, -1.3408203, 1.3154297, 2.640625, -0.9506836, -2.0683594, 0.6850586, -0.65234375, 3.1015625, -0.8178711, -0.7319336, -1.6757812, 0.6376953, 2.5839844, 1.5712891, 0.09222412, 0.8515625, 1.6494141, -1.2597656, 2.375, 0.43774414, 3.2363281, 0.91748047, 1.4160156, 1.5068359, -1.1933594, 0.45776367, -0.5053711, -0.034698486, -0.76708984, 0.48461914, 0.040252686, 2.9785156, -0.07952881, -1.8974609, 1.90625, 1.0146484, 1.2167969, -0.27856445, 1.2998047, 1.3525391, 0.14257812, 0.39892578, 1.8066406, -1.171875, 1.4697266, -1.3623047, -0.7841797, -0.234375, -0.21142578, 1.3955078, 2.0820312, -0.16918945, 0.0715332, -2.5761719, 1.0810547, -3.046875, -0.48291016, 0.13232422, -0.6791992, -0.13012695, 0.74658203, -0.09881592, 0.16772461, 1.8388672, -1.0820312, -1.5546875, 1.3378906, -1.5273438, 0.85253906, 0.22387695, -0.4165039, -0.11126709, -2.2246094, 0.07739258, 0.042633057, -1.0341797, 1.1835938, -3.8320312, -1.71875, -0.9741211, 0.33447266, -1.5605469, 0.35913086, 0.88671875, -0.640625, 1.0146484, 0.028503418, -1.3955078, 1.6982422, 1.9013672, -1.7539062, 0.034606934, 2.0351562, 1.1054688, -2.6464844, -0.39526367, -0.8613281, -0.11553955, -0.17919922, -1.1210938, -0.0063323975, 0.86376953, -2.4492188, 1.1826172, -0.60791016, -0.9057617, -0.33422852, 1.3623047, -1.5498047, 3.0585938, -0.8408203, 1.03125, -1.4941406, -0.42749023, -0.0069122314, 0.56347656, 2.2050781, 0.18591309, 1.4335938, 0.029525757, -0.22167969, -0.61083984, -0.5332031, 0.4621582, -0.14611816, -2.8847656, 0.9526367, 0.93603516, -0.79785156, -1.4423828, -3.9804688, 0.20898438, 0.090148926, -1.7724609, 0.79248047, -0.42211914, 0.7597656, -0.72998047, 0.7519531, -0.5810547, 2.765625, -0.6352539, 0.0418396, 0.515625, 1.0039062, 2.3320312, -0.6191406, 0.08105469, 0.30322266, 0.33032227, -2.1484375, -0.2142334, 1.6542969, -0.7216797, 0.46435547, 0.7207031, -1.2255859, 0.734375, -0.87353516, -1.5507812, -0.859375, 2.3457031, -1.4316406, -0.6767578, 1.9902344, 1.3085938, 0.5029297, 2.8222656, 1.6328125, -1.0546875, 0.34423828, 2.4042969, -0.7446289, 0.34521484, 0.7890625, 0.5722656, 0.24353027, -0.51953125, 0.7011719, 1.9023438, -2.7617188, 0.87890625, 1.6689453, -0.07281494, 1.1416016, 2.7753906, -0.9926758, 0.48901367, -0.11260986, 1.2626953, 0.61865234, -1.90625, 0.6166992, -1.78125, -1.5800781, -0.39160156, 2.9804688, -0.22290039, -1.9394531, 1.1748047, -0.17895508, -0.13244629, -1.1074219, 0.6567383, 1.8583984, -0.2849121, -0.20996094, 1.0449219, 1.1933594, 0.4975586, 1.0917969, 1.4296875, -0.76708984, -1.0478516, 0.20617676, -0.07128906, 0.4736328, -1.6005859, -0.3317871, 0.9814453, -1.0810547, -2.2890625, 2.015625, -0.3972168, -0.5258789, 0.7817383, -2.0175781, -0.69189453, -1.3759766, 0.48828125, -0.3786621, 0.90185547, -1.3203125, -1.1425781, -2.703125, 0.29760742, -2.5898438, -0.7890625, 1.1816406, 1.7646484, 2.6503906, 1.8544922, 0.70751953, 0.30249023, 0.4729004, 1.1005859, -1.1865234, -0.13537598, 0.5732422, -0.87109375, -1.8017578, -0.8823242, 1.4228516, 2.0898438, -0.67333984, -0.03781128, -0.48120117, 2.0722656, 0.7939453, -1.8212891, 2.1171875, 0.8852539, 0.31811523, 1.6894531, 0.5053711, 3.0273438, -1.15625, -0.16101074, -0.12768555, -1.1855469, -0.24987793, -0.43896484, -2.0488281, 0.7348633, -0.10620117, 0.61376953, 2.5097656, -0.19384766, 0.57373047, 0.83496094, 1.0849609, -0.17822266, 0.5332031, 0.3708496, 1.0878906, -0.609375, 0.88671875, 1.7304688, -0.5126953, -2.0527344, 0.95751953, 0.6333008, -2.2011719, 0.28881836, -1.6923828, -0.21484375, -1.1005859, -0.78564453, 1.0146484, -1.921875, -0.36743164, 0.3161621, -0.11230469, -0.57128906, -2.5898438, 0.55322266, -2.1269531, 0.06286621, -2.3613281, 1.7607422, 0.52490234, -0.5410156, -1.6171875, -0.40893555, 0.36035156, 0.0713501, -0.9321289, 0.66748047, -4.609375, 0.027664185, -0.04537964, 1.0117188, -0.06933594, -0.59716797, -0.0025978088, -0.80615234, 0.1616211, 0.46899414, 1.5429688, -1.4765625, 0.5019531, -0.015853882, -0.25268555, -0.05529785, 0.03894043, -2.1152344, -1.5888672, 2.0214844, 1.2607422, -0.33911133, -0.19934082, -0.6977539, 2.2949219, 1.0029297, 1.6054688, 0.7480469, 0.52734375, 1.3017578, -1.2460938, -1.5742188, 0.8041992, 1.7050781, -1.2373047, -1.4775391, 0.5517578, -0.703125, 0.28271484, -0.25610352, -0.62109375, 0.97753906, 0.5332031, 0.828125, 0.54248047, 3.359375, -1.3085938, -0.5673828, 0.17370605, -2.7050781, 2.6640625, 0.6015625, 0.8618164, 3.2558594, 0.6591797, -1.9755859, 2.0664062, 1.8066406, -1.796875, 1.0517578, -0.515625, 2.3828125, 0.8466797, -0.5595703, 1.7363281, 0.7451172, -0.6904297, 1.9257812, -0.19384766, 1.3808594, 0.7685547, 1.7070312, 0.32788086, 0.7285156, -1.9990234, 1.9570312, 1.7226562, -2.9375, 1.2490234, 1.1386719, -0.55566406, 1.4111328, -0.82958984, -1.0683594, 1.2011719, -0.2163086, -0.52734375, 1.1328125, -0.1270752, 0.43432617, 2.5566406, -1.0527344, 0.3005371, 1.9628906, -2.6582031, -1.5751953, 1.1044922, 1.0117188, 1.9316406, -0.33007812, -0.7910156, -0.96972656, 1.140625, 0.12780762, -1.3164062, -0.8652344, -0.5097656, -2.5371094, -0.7416992, -1.7304688, -1.1191406, -2.9589844, -1, 0.55126953, 1.9414062, 0.5214844, 0.84814453, -0.46435547, -1.3173828, -1.3105469, -1.25, 0.05529785, -1.8623047, 0.35375977, 2.1386719, -2.6132812, -0.24841309, -1.5800781, -1.1103516, -1.3017578, 1.71875, 0.8330078, -1.2460938, -1.0585938, -0.20263672, -4.5976562, -5.1992188, 0.5913086, -0.81396484, 0.69970703, -1.2822266, -0.26098633, -0.8041992, 0.5341797, -1.1328125, 2.1601562, -2.6328125, 1.0302734, 1.7861328, -0.72265625, -2.0371094, -0.4465332, 1.2119141, -1.4248047, -0.111083984, 0.11126709, 0.52490234, -1.3339844, -0.7817383, -0.10028076, 1.3212891, 0.54248047, -0.41992188, -0.96435547, 0.640625, 1.3925781, 1.7119141, -2.8320312, 2.4667969, -1.3115234, -1.9150391, 0.68359375, -1.7226562, -1.6054688, 0.31762695, -0.30297852, 0.91748047, 0.51660156, 2.6425781, -0.6855469, 0.59716797, -0.16210938, -1.6816406, 1.5908203, 1.5439453, 1.0683594, 0.25708008, 0.54296875, -0.22509766, -0.3203125, -0.0418396, -2.1523438, -0.60839844, 1.9355469, -2.0488281, -0.97509766, -0.52490234, 1.7861328, 1.6767578, -1.2226562, 2.4570312, 2.3496094, 1.2177734, 0.08929443, 0.6933594, -2.5292969, 3.7519531, -0.17956543, -2.5019531, -0.19543457, -0.6308594, 1.5507812, 1.7470703, -1.4804688, 0.71972656, 0.45166016, -2.2949219, -0.7451172, 0.13378906, 2.5664062, 0.8208008, 0.33618164, -0.8652344, -0.5151367, -1.1835938, -0.05291748, -0.12683105, 1.6689453, 2.5253906, 1.5439453, 1.0195312, -0.38793945, -2.6464844, -1.0800781, 0.3630371, -0.2722168, 0.81591797, -2.6777344, 0.5239258, -1.5361328, 1.8476562, 0.6152344, 1.0732422, -2.4238281, -0.22961426, -0.16333008, 0.6484375, 2.2167969, 0.16931152, -1.2353516, 1.5917969, 2.1914062, 0.62890625, -0.81396484, 1.3320312, -0.8701172, 0.7246094, 0.3503418, -0.59277344, 0.28588867, 0.640625, 2.2675781, 0.76123047, 1.2978516, -1.9316406, 1.28125, 1.921875, 2.3867188, 0.40771484, 1.4824219, -0.64404297, 2.0996094, 2.0136719, 2.2617188, -1.0664062, 1.6416016, 2.6914062, -0.4104004, 0.52490234, -1.1748047, -0.080200195, 0.6489258, 1.0175781, -1.2626953, 1.6416016, 1.2900391, -1.234375, -0.89990234, -0.43164062, 0.2578125, -0.49243164, 2.2578125, -1.4453125, 0.12017822, 1.9453125, 1.1308594, 0.22216797, -0.2607422, 1.0214844, 0.77001953, -1.3896484, 1.8603516, -2.3125, -2.1347656, -0.3310547, -1.0683594, 1.7099609, 2.0585938, 0.14782715, 2.1074219, -0.3515625, -1.4726562, 1.5888672, -1.7197266, -0.9628906, 1.8476562, -0.95654297, -1.1425781, 2.3027344, 1.1210938, 0.28125, -1.2177734, 1.5429688, -0.9658203, 0.26367188, 1.9599609, 0.062805176, 0.21594238, -2.1777344, -5.1289062, 1.5585938, -0.83935547, 0.75683594, 0.4038086, -0.23901367, 0.58740234, -2.1679688, -1.1582031, -0.032958984, 1.3603516, 2.7109375, -0.7636719, -0.13830566, -0.56933594, 0.09100342, 0.9560547, -0.68896484, 2.7480469, 0.38427734, 2.6328125, -0.5317383, 3.6640625, 1.7998047, -0.35327148, 0.32470703, 1.4521484, 1.6083984, 1.6894531, 0.9038086, -1.3085938, 1.9492188, 0.0118255615, -0.17810059, -0.6098633, -1.3691406, -0.41552734, 1.3095703, -1.7841797, 0.9682617, -1.4160156, -1.328125, 1.8603516, -1.78125, 1.4599609, 1.2578125, -1.6210938, 0.9370117, 1.5664062, -1.4619141, -1.3808594, -0.12207031, -1.0205078, 0.24291992, -0.76171875, -1.1660156, 1.8447266, -2.4609375, -1.4794922, 0.07922363, -1.6953125, 0.69873047, -1.1865234, -0.5234375, 0.44702148, 0.41723633, 1.0009766, -0.94628906, 0.060180664, -0.2680664, 0.3623047, 1.6796875, -0.65966797, -1.5126953, 0.15576172, 0.9189453, -1.8876953, 2.0566406, 0.859375, -1.3984375, -0.103515625, -0.083618164, -1.6542969, -1.5429688, -1.4394531, 0.1529541, 1.5380859, -1.3994141, 0.23388672, 1.1123047, 2.0585938, 0.09295654, -0.06451416, -2.0292969, -0.053833008, -0.18762207, 0.86035156, -0.013801575, -0.2487793, 0.36254883, 0.87646484, 3.734375, -1.5498047, 1.4873047, 0.9135742, 3.3671875, -0.24035645, -0.054351807, -0.2626953, -2.0449219, 1.7949219, 0.83154297, -1.2773438, -0.53759766, 1.0917969, -1.7128906, -3.5761719, -0.9506836]}, "B00004Z2FP": {"id": "B00004Z2FP", "original": "Brand: Red Dragon\nName: Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder Works great)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2, 000-degrees F\nThe weed Dragon has received the National home gardening club member tested seal-of-approval.\nMade in the U.S.A.\n", "embedding": [-0.28076172, 2.0976562, 3.7695312, -0.43774414, -0.23144531, -0.62646484, 1.1298828, -0.59765625, -0.033325195, -0.42504883, -0.86572266, 1.3251953, 0.37768555, -4.140625, 0.9433594, 1.6914062, -0.26513672, 2.3808594, 1.3154297, -1.28125, 1.4560547, -0.10571289, 1.6513672, -1.0087891, -0.27856445, -1.2578125, 3.703125, -2.1171875, -0.7426758, 1.703125, 2.0839844, -0.59521484, 1.4814453, 0.74609375, -1.4384766, -0.50341797, -1.6132812, -0.19262695, -2.9355469, -0.2548828, -0.44506836, 2.0273438, 0.59765625, 0.66552734, -3.1660156, -0.30932617, -0.10510254, 0.38549805, -0.11578369, -0.4345703, 3.1074219, 0.86279297, -1.0703125, -0.58496094, 0.7241211, 2.1269531, -0.6723633, -3.4121094, 1.296875, 0.57177734, 1.3964844, -1.0361328, -2.1640625, -0.06262207, 1.3222656, 1.25, -1.3613281, 1.7832031, 1.0703125, -1.3378906, 3.4707031, 1.8261719, 0.7324219, -0.82128906, -0.14575195, -0.5239258, -4.3554688, 1.2607422, 1.4589844, -1.3330078, 1.0449219, 3.0507812, 0.19421387, -2.0019531, 0.6738281, -1.8388672, -0.5629883, -0.10638428, 1.1044922, 0.76171875, -2.8671875, 3.1972656, -0.7939453, -4.6640625, 1.4228516, 0.056884766, -0.7675781, -0.36694336, 1.6982422, 1.0380859, 0.6435547, -0.81884766, -0.050445557, -0.18359375, 0.4506836, 1.1064453, 0.57128906, 0.12695312, -1.6259766, 1.6220703, -3.1582031, -2.2871094, 0.37719727, 0.7841797, -1.4462891, -1.6787109, 0.21008301, -0.6801758, 3.3144531, -1.5654297, 3.6542969, -0.95703125, 0.19897461, 0.51464844, 3.0195312, -0.30639648, -0.8852539, 2.8964844, 4.484375, -1.0380859, 1.5019531, 2.1191406, 1.8759766, -1.6699219, 0.40722656, -1.8964844, -0.62646484, -1.8496094, -0.99316406, -1.2724609, -1.4785156, -0.7480469, 1.4785156, -1.5, -4.3242188, 0.074645996, 0.73046875, -0.9326172, -0.27368164, -1.0996094, 1.2392578, -2.1601562, -1.2675781, -2.9628906, 0.79003906, 2.7753906, -1.0058594, -1.9638672, 2.3457031, 0.78222656, 0.83740234, -0.3881836, -0.08642578, 1.8671875, 0.5834961, -1.9472656, 0.21508789, 0.17443848, -0.3840332, 1.390625, -0.23156738, -1.5380859, -1.1816406, -0.43969727, -0.68603516, -2.671875, 0.67578125, 2.5625, -0.29077148, -0.7763672, -2.2792969, 0.17126465, 0.3178711, -0.35839844, -1.0615234, 1.0644531, -2.9003906, -0.4194336, 0.9604492, -0.43652344, 0.22314453, 0.33032227, -1.6445312, -0.3852539, 3.1660156, -0.83154297, -1.3798828, -0.4013672, 1.8398438, 0.87597656, -1.2050781, -1.5224609, 1.6396484, 0.40649414, -1.7685547, -1.6464844, 0.082336426, -0.01259613, -0.3798828, -0.6401367, 1.1660156, -0.6870117, 1.6669922, 0.6982422, -0.9560547, -2.0449219, -1.0087891, -0.017944336, 0.47265625, 0.60058594, 1.9882812, -0.57373047, 1.203125, -0.7104492, 1.1152344, 0.9042969, -1.3720703, -0.10076904, -2.7578125, -0.4038086, 0.18737793, 0.2668457, 0.9472656, 1.4501953, -1.5488281, 1.8134766, -0.1616211, -2.1542969, -0.22961426, -0.2836914, 0.8881836, 0.85791016, -2.3828125, 0.5473633, -0.046020508, 1.3671875, 1.9267578, 3.6679688, -1.0029297, -0.703125, -0.14892578, -1.2421875, 1.1923828, -0.45166016, 0.18579102, -0.14611816, -0.5385742, -0.53466797, 0.45361328, 0.87646484, 3.8496094, 1.0517578, -2.9980469, -0.45410156, -0.49829102, -1.0253906, 0.9511719, 1.5292969, 0.4951172, -0.79589844, -1.4433594, 1.8544922, 0.52441406, 0.49926758, 3.5722656, 2.0019531, -1.1708984, 1.1152344, -0.45092773, 1.2773438, 0.5517578, -0.7973633, 0.95410156, -2.1640625, 2.3632812, -0.50683594, 0.77978516, -1.5859375, -1.3574219, 1.6796875, 4.2382812, 0.14123535, -3.7011719, 2.4472656, -0.49731445, 1.1621094, -1.4619141, 0.55029297, 1.6796875, -0.92041016, 0.37451172, -1.0273438, -3.5390625, -0.5854492, -0.17053223, -0.6816406, 1.0556641, -1.140625, 3.1816406, 0.50927734, 1.2431641, -0.23156738, -0.2631836, 0.5649414, -0.6723633, -0.5214844, 1.4648438, -3.8808594, 0.7363281, 0.9736328, 1.6787109, 1.3398438, 0.76123047, -2.109375, -0.36376953, -0.7480469, -1.9785156, 1.2236328, 0.48535156, -0.32788086, 0.6591797, -0.1743164, 0.37451172, -0.6699219, 0.028945923, 0.73046875, 0.98046875, 0.15600586, 0.013153076, -1.7480469, -1.2011719, 0.42041016, 0.93066406, -0.56933594, 2.9960938, -1.5322266, -0.9008789, -0.18640137, -2.3105469, -0.7734375, 1.4619141, 2.4726562, 0.6772461, -3.0546875, 0.65234375, -0.7138672, -1.3388672, 1.3486328, -2.1621094, 0.26586914, 0.9008789, -1.1972656, 1.9921875, -0.36206055, -0.013366699, -2.0019531, 2.7480469, -0.042266846, 1.7978516, -0.8203125, 2.7246094, 2.8320312, 0.87402344, 0.80859375, -1.7763672, -0.16430664, -0.20166016, 2.328125, 0.61572266, 1.9775391, -1.5195312, -1.2607422, 3.0957031, -0.85253906, -2.359375, -0.79003906, -1.5771484, -1.4667969, -2.3046875, -2.7636719, -1.796875, -1.6542969, -1.015625, 0.1459961, -2.0390625, 1.4736328, -1.03125, 0.25317383, -0.94140625, 1.2255859, -1.7236328, 0.085754395, -3.8574219, -0.15026855, 0.5625, -1.6445312, -2.3789062, -2.1386719, 2.3203125, -1.1796875, 0.84765625, 0.87402344, -0.21984863, 2.109375, 1.4824219, -2.4863281, 3.7675781, 0.38598633, 2.4707031, 0.6953125, -1.4638672, -0.73779297, -2.0175781, 1.0761719, 3.7148438, 0.13562012, 1.0917969, 1.3076172, 1.0517578, -1.9384766, 1.2431641, -1.4121094, -0.2614746, 0.17175293, 2.7441406, 0.50878906, 0.59814453, 0.5209961, 2.3242188, -2.5371094, -0.37841797, 0.3630371, -1.4892578, 2.7109375, -0.19299316, 0.109375, -0.9760742, 0.079711914, -0.3293457, 2.2734375, -0.095458984, -1.3994141, -1.8984375, -1.3769531, 0.35229492, -1.3037109, 1.9804688, -0.8984375, 1.8515625, 3.421875, -1.6503906, 1.1806641, -1.0361328, -1.1523438, -1.1269531, 0.5473633, 0.33081055, -1.0048828, -1.2197266, 0.37231445, -1.3681641, 0.99072266, -0.6118164, 0.076049805, 1.9990234, 0.59033203, -1.3994141, -0.7841797, 1.9082031, -1.25, -1.6132812, 1.9414062, -0.94140625, -0.53271484, -0.2154541, -1.7275391, 2.3222656, -5.8359375, 1.2763672, 0.40039062, -1.7724609, -0.5102539, 0.5625, -2.2910156, -0.8774414, 1.1386719, -1.5605469, -2.8554688, 3.03125, 0.39697266, -1.9960938, -0.3408203, -2.5839844, -0.6923828, 2, 0.30639648, -1.2451172, 1.2861328, -1.3525391, 0.036468506, -0.14099121, 0.9316406, 0.27148438, 0.12927246, 1.4921875, -1.9355469, 1.171875, 1.6289062, -0.0023670197, -1.7158203, -0.29663086, -1.4580078, -1.0625, 0.6386719, 3.9277344, -0.5991211, 1.15625, 1.1855469, 0.1303711, -1.0214844, -1.3701172, -2.234375, -0.08074951, -1.2177734, -0.5834961, 2.9472656, 0.083984375, 0.6088867, 1.8203125, 1.8486328, -0.048614502, -1.9609375, 1.5087891, 2.9550781, -1.9394531, 0.98828125, 0.71533203, 0.29101562, -2.0878906, 0.07702637, 0.578125, 1.5292969, 1.6767578, 2.1464844, -0.50927734, -0.40722656, -0.18041992, -0.79345703, -1.8271484, 0.6196289, 3.7578125, -0.0637207, -0.2097168, -1.5361328, 0.9082031, 1.6230469, 0.043182373, 0.9951172, 2.9023438, 0.91259766, 0.13867188, 1.5263672, -1.8554688, 1.9804688, 0.24328613, -1.0351562, -0.47924805, 0.22131348, -0.6479492, -0.6933594, -1.0703125, 0.31201172, 0.2631836, 0.8935547, -0.62158203, 1.3115234, 2.8828125, 0.71435547, -1.8603516, 1.2724609, -1.0859375, -1.4863281, -0.5336914, -0.46606445, 0.3474121, -1.0341797, 1.4228516, -1.1943359, -0.62939453, 0.35791016, 0.20544434, -1.2138672, 0.6816406, 1.8515625, 0.14587402, 1.1904297, 1.046875, -0.8930664, -1.03125, 1.4541016, 0.20568848, -0.7324219, 0.703125, -1.2607422, -0.07824707, 0.1352539, -0.1986084, 2.1464844, 1.4248047, -1.5263672, 0.15649414, -0.7084961, 0.8613281, -0.12365723, -0.5932617, 1.9804688, -0.71533203, 2.4765625, -0.2734375, -1.2353516, 0.7060547, 0.107421875, -2.4589844, 1.6044922, -0.8535156, 0.03253174, 0.16247559, -0.24841309, 2.8105469, 0.8774414, 2.9980469, 1.1494141, 1.15625, 1.6552734, 0.4321289, 0.77978516, -1.5009766, 0.023330688, 0.9814453, -0.32104492, -0.4880371, 0.35180664, 1.0947266, 2.4648438, -2.2773438, 0.85791016, 2.2734375, -2.921875, 1.0693359, -1.8027344, -1.5859375, 1.9453125, -1.078125, -0.4086914, -0.58447266, 3.25, 0.8823242, 1.5996094, -1.8017578, -0.9892578, -2.5390625, -1.1289062, -1.3232422, -3.4980469, 0.03765869, 0.81884766, 0.7714844, -0.33520508, -1.6005859, 1.3789062, -0.8129883, 0.055725098, 0.8574219, 0.058441162, -3.1132812, -2.4746094, -1.2451172, 0.2512207, -3.9589844, 1.9277344, -1.0556641, 0.44580078, 0.09613037, 1.5478516, 0.2553711, -2.15625, -0.6040039, -0.62841797, -0.52246094, -1.0380859, 0.28808594, 2.4101562, -0.52441406, 2.1035156, -1.7285156, -2.78125, -2.2871094, 0.3227539, 0.84814453, -2.859375, -0.8564453, 0.14172363, -2.6835938, -2.0859375, -2.5703125, 0.6308594, 0.17871094, 0.37109375, -1.1699219, -0.7475586, 0.56884766, -0.41723633, 0.44995117, 0.19140625, 0.37890625, -0.8598633, -0.8613281, -2.0585938, 0.12792969, 0.9897461, 0.62646484, 1.4248047, -0.6923828, -0.6582031, 1.078125, -3.0019531, 0.51953125, -0.6826172, 1.3310547, 1.2275391, -0.32641602, 1.3046875, 3.7226562, -0.34887695, -1.9697266, 0.37670898, -4.421875, -0.0657959, -0.31079102, -1.9785156, -0.34057617, 0.97216797, 0.2536621, -1.1572266, 3.7890625, 1.9755859, -0.63183594, -0.46801758, 0.15441895, 0.40185547, 0.30664062, -0.84521484, 1.5605469, 0.38671875, 1.0302734, 0.2578125, -0.49267578, -0.54296875, 0.3215332, -1.1445312, 0.7963867, -2.0820312, 0.80859375, 0.11981201, 0.15319824, -1.3066406, 1.6669922, -0.06829834, 0.7001953, 0.48632812, -2.3925781, 1.3925781, -1.0595703, 4.4804688, 0.28466797, -2.3574219, -0.97802734, -2.7402344, 2.6035156, 1.8017578, -2.0859375, -1.6845703, 1.0761719, -2.0507812, -0.94384766, -3.3730469, 1.3857422, 0.0039405823, 0.47753906, -2.40625, -1.1621094, 2.7011719, -2.1445312, -0.64697266, 0.43847656, 0.37548828, 0.33984375, 0.8691406, 2.8105469, -2.65625, -0.953125, 0.6645508, 0.13366699, -0.7402344, -0.92041016, 1.9501953, -0.5859375, -0.84716797, 0.39990234, -1.1826172, -2.1269531, -0.47265625, 2.0097656, -0.7285156, -0.08148193, 1.9111328, -0.83740234, 2.0039062, 2.1777344, -0.6455078, -0.96777344, -0.056610107, -2.9335938, 0.7397461, 2.5214844, -2.0839844, 3.0703125, 1.2539062, -0.07952881, -1.4658203, -0.8364258, -2.9101562, 0.23803711, 2.8183594, 2.5253906, 2.2753906, 1.0732422, 0.054107666, 0.5439453, 1.9462891, 3.4355469, -0.8076172, 2.3164062, 1.3955078, 3.2128906, -1.9658203, -1.90625, -0.3779297, -0.6616211, 2.0292969, -0.0670166, -0.49926758, 0.90966797, -2.2148438, 0.42089844, -1.4414062, -0.76123047, -1.4013672, 1.609375, -1.1064453, 0.05883789, 1.8339844, 0.8828125, -0.57421875, 0.609375, 0.91845703, -1.4824219, -2.2734375, 0.4819336, -1.6074219, 0.038360596, -0.8227539, -2.2363281, 0.73779297, 1.7011719, 0.5571289, 0.94873047, -0.07489014, -0.8051758, -1.1298828, 1.6591797, 1.8271484, 0.2783203, -0.11047363, 0.81396484, -0.68896484, 1.2587891, 0.14624023, 2.0644531, 0.27734375, -1.5332031, -2.6425781, 2.7285156, -0.46435547, -1.1669922, -0.2553711, -3.5722656, -0.19445801, -2.5214844, 1.8339844, 0.44506836, 1.2744141, -1.0039062, -1.9804688, 2.4628906, 0.78466797, 1.2314453, 3.5820312, 0.2475586, -1.1455078, 0.5839844, 0.13647461, 0.7714844, 0.15893555, 3.640625, -1.2763672, 0.5234375, -0.29736328, 2.8789062, -0.4934082, -2.8945312, -0.8232422, 3.5214844, -1.3476562, 0.39794922, 1.6298828, -0.47314453, 1.1982422, 0.5058594, 0.22827148, 1.0839844, -1.0097656, -1.6269531, 0.121520996, -0.9770508, -0.0446167, 1.6220703, -1.8037109, 4.2304688, -0.19787598, 0.98095703, 2.9101562, -0.15930176, 0.6201172, 0.50439453, -2.5429688, -2.2929688, 0.17468262, 0.9555664, -1.5644531, -1.9775391, 1.515625, 3.0625, -1.5703125, -0.5229492, -2.9277344, -1.1347656, 0.92578125, -0.32470703, -0.06951904, -1.2646484, 0.65527344, 3.1269531, 1.0175781, -0.40234375, 0.72021484, -0.0019874573, 1.2744141, -0.24255371, -3.4609375, -0.39379883, 1.2578125, 0.6298828, 2.1914062, 1.0634766, -1.1835938, 0.023376465, -1.7792969, -2.1035156, -1.3291016, -1.3076172, 0.28051758, 0.88964844, 0.09643555, -0.105041504, -0.33422852, 0.9057617, 0.55322266, 0.7290039, 0.13903809, -1.2304688, 2.1679688, 0.6723633, 0.41210938, -1.0351562, 1.0185547, 0.30200195, 3.453125, 0.5, 0.5004883, -0.107055664, 0.44384766, -1.5556641, -1.1796875, -0.5410156, 0.76904297, 3.1992188, 0.32055664, 0.80859375, 1.3818359, 0.79345703, -1.0126953, -1.453125, -2.8574219]}, "B07G4899R5": {"id": "B07G4899R5", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry\nDescription: What are The Benefits of Using Camplux Single Burner Camping Stove ?

1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What's more,the powder coating makes it is waterproof and anti-rust.
2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it's more safety to use wrench in order to tighten).
6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

Specifications:

Color: Black
Product Type: Single Burner
Material: Cast Iron
Product Extension Size:15.75\u00d715.75\u00d728.8 Inch\uff0840*40*73cm\uff09
Product Size without Extension:15.75\u00d715.75\u00d716.9\uff0840*40*43cm\uff09
Type of Gas:Propane
Heat Output:200,000 BTU/HR
Regulator Length: 5 feet / 60 inch/152.5 cm
Usage Condition:Normal Outdoor

What You Will Get:

1 x Propane Gas Camp Stove
1 x High Pressure CSA Certified Regulator
1 x User Manual

Inquiry & after sales service: support@camplux.com
Service hotline: (844)-538-7475\nFeatures: 200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time\nDetachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking\nEasy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb\nHigh Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It's hard to destroy and has a long service life\nWok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services\n", "embedding": [-1.2705078, 2.21875, 1.6582031, 0.44726562, -0.3996582, 0.75390625, 0.9082031, -1.7236328, -2.1601562, 2.4550781, 1.1289062, -0.38330078, 1.1875, -2.4960938, 0.84033203, 0.21875, -0.9785156, -0.54003906, -0.4296875, 0.7397461, 3.0566406, 0.42407227, 1.6132812, -1.0517578, 1.2607422, -0.16345215, 3.3203125, -2.3203125, -0.30859375, -2.28125, 1.8017578, 0.36889648, 0.15686035, 1.1269531, -3.2050781, -0.14916992, -0.97021484, 1.0458984, -3.6464844, 0.38183594, 0.29516602, -1.328125, 3.9023438, -0.85058594, -1.1103516, -1.3740234, 0.4326172, 1.3896484, 0.6538086, -0.76464844, -0.33422852, 0.22094727, -0.38500977, 0.8623047, -2.5429688, 0.96191406, 0.9160156, -2.1660156, 1.5341797, 0.11816406, 1.2802734, 1.6699219, -1.6855469, 2.2890625, -1.7167969, -0.60302734, 1.5800781, -1.9384766, -0.010131836, -0.16271973, 2.5722656, 0.67089844, -0.1538086, -0.22399902, -0.6928711, -0.17980957, -3.296875, 0.93408203, 3.8867188, 0.53027344, -2.3046875, 1.7900391, 2.7519531, -0.98339844, -1.2861328, 0.6953125, -0.96972656, 0.09094238, 1.6777344, 0.6640625, -1.1601562, 1.0332031, -2.2929688, -4.1523438, 2.1230469, -0.63623047, 0.66259766, 0.9736328, 1.0986328, 0.96533203, -1.5605469, -0.42407227, -1.5517578, -0.2397461, -2.8339844, -0.24328613, 2.0097656, 1.6699219, -3.1835938, 2.3242188, -2.8554688, 0.2454834, 1.4853516, -0.4501953, 1.6083984, -0.71533203, -1.5673828, -0.5234375, 3.2695312, 0.36279297, 3.7421875, -0.9526367, 0.2763672, -1.0390625, 1.8349609, 1.7011719, -0.80322266, 0.55322266, 3.0214844, -1.78125, -1.9423828, -1.5888672, 1.5742188, -0.2866211, -1.78125, -1.9130859, -1.2695312, -1.9707031, -2.546875, 0.27612305, -3.0566406, 1.0996094, 1.5908203, 0.1373291, -4.1640625, -0.5761719, 0.17456055, 2.4375, 1.2060547, -1.7324219, 0.22106934, -3.078125, -0.73046875, -1.2763672, 1.2119141, 0.099121094, -2.2148438, -1.9160156, 3.1171875, 1.1191406, 0.5854492, -3.4160156, -1.9560547, 2.6015625, -1.8466797, -2.6015625, 0.50146484, 0.50097656, -1.4824219, 1.0986328, 0.3942871, -1.7880859, 0.5644531, 0.72509766, -0.52001953, -1.1621094, -0.25048828, 2.6425781, 1.7470703, -0.63671875, -1.8369141, -1.7949219, 0.94970703, 2.6386719, 0.40356445, -0.6591797, -0.33081055, 0.47070312, 0.71435547, -2.1582031, -1.9912109, 1.4931641, -0.7871094, 0.20043945, -0.70458984, -1.9824219, -1.5126953, -1.6953125, 0.105895996, 0.9350586, -0.8808594, -1.1621094, -0.9194336, 0.859375, -2.9648438, -1.0507812, -0.38061523, -0.22583008, 2.7402344, 2.5878906, 1.2382812, -0.9868164, 2.3144531, 0.27807617, -0.84814453, -0.68310547, 2.8769531, -0.56640625, 1.859375, 1.8779297, 0.12854004, -1.6953125, 1.1044922, 2.7011719, 1.8535156, 2.25, 0.32543945, 0.57177734, -1.6992188, -1.4658203, 2.2910156, 0.15478516, -1.1523438, 0.67089844, -1.3242188, 3.2128906, 1.1376953, -0.4946289, -0.04916382, -1.0527344, 0.081848145, -1.6455078, 0.41430664, -0.5205078, -0.37768555, 0.72021484, -0.5263672, 1.6542969, 2.7089844, 1.4541016, 0.5341797, -0.056640625, -0.10424805, -1.8017578, -0.5600586, 0.73876953, 1.6171875, 0.09112549, -1.5966797, -3.5488281, 2.0703125, 1.7480469, -1.1865234, 1.9306641, -0.079833984, -0.04937744, 2.9160156, 0.85546875, -2.6367188, 0.09887695, 1.1533203, 0.41796875, 4.1835938, -0.2631836, 1.4355469, -1.5478516, -0.7709961, 1.9648438, 0.36523438, 2.578125, 0.3232422, -2.7460938, 1.71875, -2.2011719, 0.7631836, 0.65478516, 2.4511719, -0.28442383, -1.0664062, 0.80566406, 6.3671875, -1.4609375, -2.9414062, 1.8388672, -1.1513672, 1.6396484, 0.9453125, 1.1425781, 0.21801758, 0.5551758, 1.2539062, 0.16430664, 0.0012245178, 0.97558594, -0.59521484, -1.6269531, 1.0810547, -2.1777344, 1.4277344, 1.296875, -0.35717773, 0.19067383, -2.1132812, 1.0878906, -1.46875, -0.81591797, 1.6103516, -2.2890625, 1.6669922, 1.6855469, 1.2802734, 2.3886719, 0.37231445, -1.6865234, 0.7661133, -0.0096588135, -0.05505371, 1.3857422, 0.6635742, -1.6806641, -1.3105469, -1.5244141, 0.5864258, -1.5800781, -1.6601562, -0.20617676, -0.60058594, -2.0039062, -0.13354492, -1.8515625, -0.7758789, 0.07128906, -2.4414062, 0.35473633, -1.7919922, -2.6503906, -0.83935547, 0.10974121, -1.1875, -0.084350586, 0.64697266, 1.9433594, -1.0898438, -4.6171875, -0.88964844, -0.43310547, -0.6196289, -0.2980957, -1.5292969, 1.6738281, -1.4072266, -0.14916992, -0.025405884, 0.45117188, 0.16723633, -2.4042969, 1.0488281, -2.5039062, 1.0400391, -0.43115234, 1.0458984, -0.49243164, -0.18969727, -2.703125, -1.1132812, 0.15527344, -1.9179688, 3.3261719, -1.3310547, 0.69628906, -0.35375977, -2.6289062, -0.71875, -1.0927734, -3.3378906, -0.43798828, -1.2832031, -1.7490234, -2.046875, -4.8671875, -0.00868988, -0.9526367, 0.21374512, -1.0439453, -1.1279297, -0.90185547, 0.2614746, -1.2753906, -0.25830078, -0.33325195, -0.7050781, -1.8583984, -1.390625, -0.35009766, -0.57958984, -0.625, 0.03074646, 2.0625, 1.2939453, 0.8803711, -0.5097656, 2.2128906, 0.4584961, -0.40161133, -1.0849609, -3.9179688, 2.4316406, 1.9140625, 0.1850586, 0.79003906, -1.2294922, -1.6318359, -1.4541016, -0.5083008, 2.8984375, 1.5595703, 3.8984375, 0.83984375, -0.14086914, 0.74316406, 1.21875, -0.7055664, -2.7675781, 0.52685547, 5.3046875, -2.0820312, 0.000289917, 2.0078125, 2.6542969, -2.5273438, -0.1751709, 0.35327148, 1.75, 2.4492188, 2.2089844, 1.7685547, -0.4975586, -0.75390625, -0.8823242, 2.8183594, -0.015594482, 0.47558594, -0.43847656, 0.7265625, 1.0068359, 1.0585938, 0.56884766, 1.71875, 2.1816406, 2.3144531, 2.9140625, -2.3671875, 0.26000977, 0.13317871, 0.9243164, 0.15783691, 2.1855469, -0.48266602, -0.04977417, -1.1982422, -0.6723633, 0.9863281, -1.8193359, 0.81689453, 0.72216797, 0.67333984, 1.2744141, 0.35986328, -0.007789612, 0.92285156, -0.39868164, 2.5019531, -0.12609863, 0.07110596, 2.7421875, -0.8828125, -1.2705078, -1.8125, 0.85839844, -1.3876953, -1.3085938, 0.90722656, -0.16430664, -0.17224121, -2.1269531, -1.3261719, 0.60595703, -2.3496094, 4.2734375, 1.6738281, -0.7036133, -1.1503906, 0.06286621, 0.41918945, 1.6162109, -1.015625, -0.92578125, -2.8632812, 0.18408203, -0.10449219, 0.3479004, 1.5810547, 1.6738281, -2.1210938, 0.8227539, -2.625, -0.35717773, -0.5864258, -2.1464844, -0.5966797, 1.6601562, 0.39672852, 1.1240234, -0.3696289, 3.4414062, -3.7382812, -0.86621094, 2.7558594, -3.21875, -0.6850586, -1.8232422, -4.0039062, 3.3242188, 0.0009727478, -1.0898438, 2.34375, -0.6152344, 0.018814087, 1.1757812, 0.8129883, -1.9589844, -1.8496094, -1.2910156, 2.1679688, -3.2148438, -0.51220703, 1.9003906, -0.09295654, -2.0820312, -0.24438477, 0.11883545, -0.48608398, 0.7758789, 2.0488281, -2.6308594, 0.98535156, -0.41503906, -0.3383789, 0.6513672, -0.41723633, 2.3320312, -0.9433594, -0.116760254, -1.3046875, 0.49414062, 1.3261719, 0.61279297, -0.13635254, 2.8535156, 1.6689453, 0.87597656, -0.57421875, 1.2236328, 1.3710938, 0.6069336, -2.8828125, -2.171875, -0.33154297, -0.8823242, 0.1237793, -0.38745117, -0.75683594, -1.9951172, 2.0800781, 1.3427734, 1.1132812, 2.3183594, 0.41674805, 0.28955078, 1.8515625, 0.23937988, -1.8398438, -1.0097656, 0.19665527, 0.4831543, -1.8857422, 0.14538574, -0.60058594, -1.3564453, 0.96728516, 0.5517578, -1.0634766, 2.6269531, 1.4345703, 0.6508789, 2.8554688, -1.9619141, -3.421875, 0.35498047, 0.390625, 0.9223633, 1.1396484, 0.12939453, -0.32910156, 3.3515625, -0.28955078, -0.6503906, -1.3779297, 1.6240234, -2.0078125, 0.79541016, -0.9267578, 2.1601562, -1.2109375, -0.63916016, 2.4335938, 0.10131836, 2.5566406, -0.88427734, -1.2724609, -0.27685547, -0.27026367, -1.9150391, -1.3173828, 0.70751953, -0.92871094, -1.1132812, -0.07763672, -0.0869751, 0.32910156, 2.8242188, -0.12176514, 3.0214844, 1.1181641, 0.28564453, -1.5458984, 0.2578125, -0.76220703, -1.3964844, 1.265625, 1.3505859, 1.2988281, 4.5859375, 2.0371094, -0.18225098, 2.1621094, 0.45898438, -0.9506836, -2.2089844, 0.42285156, -1.5234375, 0.9760742, -0.04031372, -2.765625, 0.8100586, 2.7617188, 0.35107422, 1.2412109, -0.40600586, -0.23840332, -0.7036133, -2.4199219, -0.029403687, -1.5322266, 1.1630859, 1.1552734, -1.3398438, -0.09899902, -0.23583984, 0.17553711, 2.2050781, -0.62109375, 0.15527344, 2.5976562, 0.7260742, 0.9589844, -0.31835938, -0.95947266, -2.3574219, 0.16833496, 2.8378906, 1.2128906, 2.0292969, 0.22949219, 0.79833984, -1.2851562, -1.7275391, -1.9316406, 1.8808594, -2.9101562, -0.4921875, -0.13342285, 1.3261719, -0.15905762, -0.6958008, -1.2304688, 0.078125, 3.5449219, 0.67041016, 0.23706055, -0.8876953, -0.23022461, -1.65625, -5.2421875, -0.3864746, 2.1367188, 0.45117188, -0.9213867, -0.78027344, -0.9824219, 1.0585938, -0.8173828, 1.3857422, -2.8789062, 0.49536133, -0.18041992, -0.24279785, -1.0810547, 0.35620117, 0.43188477, 0.7114258, 1.2216797, -0.06500244, -0.38891602, -1.9501953, -1.0595703, 1.5644531, -2.2558594, 0.6328125, -0.41430664, -1.3798828, 0.8364258, 3.6679688, 0.16516113, -2, 1.1699219, -1.6875, 0.44750977, -0.39453125, -1.1279297, 1.7792969, 1.0693359, -0.17578125, 1.2802734, 0.02116394, -0.61376953, -0.6635742, 0.74560547, 0.09716797, 0.53466797, -0.5366211, -1.3320312, 0.4033203, 0.042419434, 1.2783203, 1.8544922, 0.20117188, -2.4257812, -1.8652344, -3.8691406, -0.1439209, -0.9326172, 0.059631348, -1.5722656, 2.140625, 0.7128906, -1.1269531, 0.26464844, 0.1182251, -0.5830078, -0.94091797, 2.0625, -1.0019531, 2.3671875, 1.1318359, -1.4326172, -3.6816406, -3.6601562, 2.0136719, 0.5698242, 1.4941406, -1.7285156, 1.3320312, -1.2148438, 0.9550781, 0.33154297, 1.2763672, 2.5722656, 0.82958984, -1.0761719, 2.6992188, 2.9199219, 0.5463867, 0.91064453, 0.08544922, -0.026443481, -1.2666016, 3.9765625, 1.4023438, -0.5253906, 2.265625, -1.421875, 2.5234375, -1.4003906, -2.1855469, -0.52001953, -2.4140625, -1.3447266, -1.2851562, -0.6455078, -0.5600586, 2.5761719, 0.5180664, 0.42700195, 1.0693359, 2.2109375, -0.8388672, 0.64160156, 1.5830078, 1.7626953, 0.29052734, 1.8447266, 0.013298035, -0.60839844, 1.6894531, -2.4707031, 0.05960083, 1.5507812, -0.010505676, -1.1806641, 3.4804688, 2.03125, 2.7675781, 0.7626953, 1.9042969, 1.578125, 0.84716797, 3.0820312, 0.42749023, 1.7167969, 2.5664062, 1.4794922, -1.2871094, 3.03125, 0.19616699, -0.11010742, -0.9482422, 0.68603516, -1.0556641, -1.9404297, -0.91503906, -2.3339844, 0.8774414, -5.3242188, 0.75634766, -1.2861328, 1.0595703, -1.2167969, 1.0253906, -0.20947266, -0.80029297, -0.62402344, -1.96875, -1.6533203, -0.8120117, 1.5009766, -0.7128906, 1.1015625, 0.5180664, -4.0507812, 0.19702148, -2.5273438, -2.5605469, 0.0345459, 3.1523438, 1.1757812, 1.3994141, 0.7573242, 1.8037109, 2.265625, 0.1116333, 2.2128906, -1.8222656, 1.1474609, -0.7714844, 3.7207031, -0.5151367, -0.87646484, 2.7695312, -0.61572266, -3.3964844, -3.6503906, 1.8056641, -0.44482422, 0.6503906, 2.7460938, -2.9140625, 3.8632812, -0.65771484, 2.5742188, -2.4023438, 1.9736328, -0.073913574, -3.4238281, -1.4199219, 0.19580078, 0.7128906, 4.1757812, 1.9121094, -1.6611328, 0.97753906, -1.1962891, 1.6347656, -0.59277344, 0.1340332, 1.15625, 1.4228516, -1.6142578, 2.3574219, 1.0732422, -1.0605469, -0.5864258, 3.203125, 2.0214844, 0.21484375, -0.89697266, -1.9648438, 0.51953125, 0.21105957, -1.2167969, -0.20385742, -0.69091797, -2.265625, -1.5908203, -0.095825195, -2.3105469, -1.7617188, 0.6669922, 1.0068359, -2.6972656, 0.38720703, 1.9580078, 0.21289062, 1.3134766, 0.85302734, -1.0039062, -1.1162109, -2.2207031, 0.34106445, -1.6923828, -2.8652344, -0.24121094, -0.6455078, 1.8417969, -0.34643555, 1.4677734, -1.0322266, 0.33129883, 0.79589844, 1.1191406, -1.3916016, -1.3613281, -0.13452148, -1.5068359, -1.46875, 2.3320312, -0.37158203, 1.2988281, -0.44482422, -2.6855469, -1.5917969, -1.0595703, -0.8071289, 1.6738281, 2.6367188, 0.91015625, 1.4550781, -1.6738281, -3.4609375, -2.0957031, -1.1337891, 2.2070312, 0.36254883, -0.3930664, 0.23498535, 0.5961914, 2.046875, -1.5419922, -0.89160156, 0.021774292, -0.078125, 0.9897461, -0.3815918, 1.1533203, 0.035247803, 1.0097656, -1.3017578, 2.6992188, 2.4238281, -0.42993164, 0.6557617, 1.4511719, 0.11627197, -2.4121094, -0.13500977, -2.6328125, -2.1054688, 0.81347656, 0.22595215, 3.3515625, 0.28076172, -1.9990234, -3.5195312, -1.2080078]}, "B07XDJKQ22": {"id": "B07XDJKQ22", "original": "Brand: VIVOHOME\nName: VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

Features:
-The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
-No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
-The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
-Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
-Great stove for camping; It will really simplify your canning process

Product Specification:
-Rated output: 36,000 total BTU/hr, for 18,000 BTU each
-Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
-Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
-Note: The product is equipped with a 10 PSI regulator, and it's also suitable for the 20 PSI regulator.
-Stove Height: 29\" without windscreen /35\" total

Package Includes\uff1a
-1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

Product Warranty:
-We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended\n2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "embedding": [-1.4570312, 1.8369141, 3.1972656, 0.83496094, -0.59472656, 1.4287109, 0.54345703, -1.1074219, -2.2988281, 3.3183594, -0.26367188, -0.15527344, -1.4169922, -2.359375, -1.2841797, 0.71435547, -1.9140625, 0.2512207, 0.20812988, -0.22265625, 1.7744141, 1.3642578, 0.25634766, 1.1533203, -0.14990234, -1.1757812, 3.3242188, -3.7011719, -0.60058594, -1.4042969, 1.6435547, 2.0996094, 1.0273438, 2.2714844, -4.015625, 0.2763672, -1.1230469, 0.63134766, -2.3515625, -1.3066406, -1.1220703, -1.71875, 4.4609375, 0.16333008, -2.4589844, -1.4345703, 1.5224609, 0.10595703, -0.14538574, 0.27246094, 0.4284668, 1.2695312, 0.06137085, 1.7050781, -2.9785156, 1.8730469, -1.2128906, -2.2871094, 2.9316406, -0.15795898, -0.10211182, -0.28588867, -2.5527344, 1.7988281, 0.50439453, 0.49121094, 2.3378906, -1.1474609, -0.69677734, -0.63134766, 0.74121094, -0.9433594, -1.2744141, 0.3149414, -0.59228516, -1.3681641, -2.2988281, 2.0976562, 3.7382812, 0.21166992, -1.5644531, 3.5078125, -0.057128906, 0.74853516, 0.07543945, 0.81591797, -1.1240234, 0.40600586, 3.328125, -0.10760498, -1.2607422, 1.1767578, -2.5175781, -4.2382812, 0.11907959, -0.3894043, 1.5537109, -1.3691406, -1.4130859, 0.8798828, -1.3505859, 2.0527344, -0.6489258, 0.19165039, -1.6171875, 0.36376953, 3.3027344, 1.1884766, -1.9179688, 1.9365234, -3.140625, -1.1669922, -0.87646484, 0.19128418, 1.4013672, 1.4296875, -1.6074219, -0.1920166, 3.7539062, 0.16259766, 4.2773438, -0.02331543, 0.92529297, -1.2636719, 1.9570312, 2.2265625, 1.5019531, 0.5629883, 3.8203125, 0.3996582, -1.5634766, -1.0302734, 1.9365234, 0.10443115, -1.3496094, -1.3339844, -1.3427734, -2.2167969, -5.65625, 0.12988281, -1.8574219, 0.5234375, 1.2939453, 0.056915283, -3.4355469, -2.4648438, 1.1376953, 3.6210938, 0.6923828, -2.8574219, 0.68115234, -1.8652344, -0.68066406, -1.7412109, 2.640625, 0.45166016, -0.8305664, -1.9873047, 2.5253906, 0.85009766, -0.4543457, -3.2890625, -2.0800781, 1.1464844, -0.26513672, -2.9921875, 0.67529297, 0.6269531, -0.15161133, 2.2304688, -0.12237549, -2.2050781, 0.67333984, -1.1611328, 1.1884766, -0.7451172, -1.1103516, 2.1367188, 1.2998047, -0.3544922, -3.3964844, -2.4453125, 0.39916992, 3.5839844, -0.7651367, -1.5976562, 1.0253906, -0.28759766, 1.4726562, -1.3779297, -0.7421875, 0.64501953, 0.5395508, -0.23535156, -0.001701355, -1.8613281, 0.3864746, -3.4550781, 0.4873047, 2.0742188, 0.06060791, -1.6279297, 0.090270996, 0.1685791, -3.1503906, 0.45117188, -2.4199219, 0.3881836, 1.5957031, 3.0917969, 1.3525391, -0.42773438, 3.2324219, 0.86865234, -1.3720703, -1.5976562, 1.8085938, 0.11065674, 0.86572266, 1.4208984, 0.42114258, -1.0058594, 1.328125, 1.7333984, -0.9970703, 1.7529297, 0.64453125, -0.75097656, -1.3798828, -1.1923828, 2.6425781, 1.6914062, -0.10723877, 0.60302734, -1.6435547, 2.7167969, 2.7089844, -1.1435547, -0.18920898, -0.4008789, 0.03189087, -1.4794922, 1.2773438, 1.1660156, -1.9902344, 0.6323242, -0.33642578, 1.6015625, 2.3222656, -1.0644531, -1.5908203, 0.012329102, 0.2980957, -0.5024414, 0.35107422, 0.20373535, 1.1826172, -1.6894531, -1.1894531, -1.6865234, 2.2753906, 0.48583984, -0.8691406, 0.9194336, -0.12719727, -1.4023438, 2.4355469, 1.9033203, -3.5078125, 0.7783203, -0.008460999, 1.1884766, 3.3339844, -0.25878906, 2.9726562, -0.65283203, -1.3007812, 2.28125, 1.203125, 1.78125, 1.1025391, -0.8754883, 2.2636719, -1.9111328, 0.29223633, 0.16687012, 2.5976562, 0.14562988, -1.5908203, -0.21936035, 5.46875, -0.93115234, -2.4140625, 1.8857422, -3.5410156, 0.010986328, 0.9980469, 0.27856445, 0.91064453, -0.12225342, 1.0537109, -2.3339844, -0.21777344, 1.2060547, -2.6855469, -1.4580078, 1.234375, -3.3398438, 1.1103516, 0.6801758, -0.6767578, -0.5517578, -1.7949219, -1.3730469, -1.8867188, 0.10424805, 3.21875, -2.640625, 3.203125, 1.8632812, -0.64453125, -0.042663574, -2.2011719, -2.0527344, 0.35620117, 0.6274414, 1.109375, 1.8798828, 0.4807129, -0.79589844, -1.2197266, -2.9199219, -0.1459961, -0.69628906, -0.6015625, -1.7822266, 0.32592773, -1.6074219, 0.46875, -0.5605469, 0.21569824, 0.5361328, -2.875, -1.2792969, -1.625, -3.671875, -0.076538086, -0.703125, -1.2246094, -0.39648438, 1.5332031, 1.2373047, -0.796875, -4.65625, 0.14648438, -0.6640625, -1.6757812, -0.50634766, -3.03125, 0.44750977, -0.5854492, 0.7792969, 0.6298828, 0.79541016, -0.6772461, -1.5615234, -0.60595703, -3.7753906, 0.6308594, -0.08526611, -0.33032227, -0.14904785, 0.9169922, -1.6992188, -0.8886719, 0.3334961, 0.6020508, 2.2246094, -0.34326172, 0.99560547, 0.22045898, -1.9277344, -1.4267578, -1.6669922, -2.1132812, -0.47924805, -0.6254883, -1.2949219, -0.7763672, -5.0625, -1.0244141, -1.4169922, -0.40649414, -0.9472656, 1.2832031, 0.640625, 0.5126953, -1.4335938, -1.703125, -0.4609375, -0.33496094, -1.7314453, -0.08917236, -2.1425781, -0.55908203, -0.65185547, -0.24243164, 0.83203125, 1.0751953, -0.14489746, 0.7651367, 0.50097656, 0.02961731, 0.95458984, -1.2109375, -2.4023438, 2.5390625, 2.2207031, 1.9833984, 0.70703125, -1.8564453, 0.6401367, -1.8320312, -1.2558594, 3.2109375, 1.4414062, 2.7734375, -0.18981934, -1.2285156, 1.0429688, 1.9580078, 0.29589844, -0.25024414, -0.1385498, 3.4199219, -1.8857422, -1.4951172, 2.4746094, 2.1835938, -3.59375, 0.014442444, 1.1796875, 0.2878418, 2.8378906, 1.3261719, 0.54541016, -1.4140625, -0.76660156, -1.2763672, 3.9863281, 1.9277344, -0.1920166, -2.5878906, 1.0166016, -0.42260742, 0.2409668, 3.2636719, 0.3918457, 0.98583984, 3.0371094, 1.5957031, -2.6953125, -0.084228516, 0.06774902, 0.5488281, 1.1416016, 3.4921875, -0.8979492, -0.73339844, -1.8095703, -0.58251953, 2.359375, -0.4482422, 1.5058594, 0.72509766, 1.0078125, 0.7006836, -0.93066406, 0.2006836, 1.2910156, -0.7636719, 3.0117188, 0.24829102, -1.2060547, 1.9042969, -1.9697266, -1.2255859, -2.2226562, 2.6757812, -0.6933594, -0.14245605, 0.13830566, 0.91259766, -2.0136719, -2.1699219, -0.1472168, 0.42211914, -0.28930664, 2.4785156, 1.4902344, -1.2451172, -0.16564941, -2.2460938, 0.6147461, 1.46875, 0.6274414, -0.67578125, -0.03604126, 0.55908203, 0.20703125, -0.75097656, 1.8300781, 1.7441406, 0.6616211, -0.7080078, -2.1269531, -1.3662109, 2.0332031, -1.3388672, -0.3293457, 3.1875, 0.09161377, 0.50878906, 1.1289062, 3.5058594, -2.7890625, -1.7294922, 0.97558594, -2.203125, 0.06640625, -1.7382812, -3.3808594, 1.1367188, 0.671875, -0.69189453, 2.34375, -0.8881836, 0.43286133, 0.19421387, 0.5698242, -1.8710938, -1.1298828, -1.8798828, 0.9916992, -3.0761719, 1.28125, 0.9682617, -1.0146484, -3.6796875, -0.7104492, 0.68652344, 0.40454102, 2.2597656, 2.5078125, -2.0800781, 0.025512695, -0.5727539, 0.65722656, -0.08282471, 0.33569336, 1.8574219, -0.859375, 1.1142578, -0.765625, 1.7285156, 1.2148438, 0.6669922, 1.3603516, 3.1152344, 0.6430664, 1.1708984, -1.7900391, 2.3007812, 2.1640625, -0.7529297, -1.2880859, -1.8251953, 0.26586914, -1.5039062, -0.09680176, 0.43969727, -0.5004883, -2.2285156, 1.4599609, 1.4023438, 0.98095703, 1.9443359, 0.6923828, -1.7958984, 0.5961914, -0.609375, -1.1611328, -1.8613281, 0.57421875, -0.23669434, -2.71875, 0.1887207, -0.6855469, -0.8383789, 1.0019531, -0.57421875, -0.23132324, 2.7421875, -0.17150879, 2.3710938, 3.3867188, 0.03677368, -2.5332031, 1.6845703, -1.3457031, -0.24169922, 0.077819824, -0.68066406, -0.48535156, 1.0839844, 2.1757812, -1.9951172, -1.0761719, -0.84716797, 0.97314453, -1.9511719, -2.3320312, 1, -0.42993164, -1.4423828, 2.6445312, -0.026626587, 1.484375, -2.8417969, -0.41235352, -0.88964844, 1.1855469, -1.4267578, -1.4667969, -0.48999023, 0.29003906, -0.31201172, 0.2388916, -0.9770508, -0.4375, 1.5761719, 0.6694336, 3.5957031, 0.36132812, 0.9189453, -0.5566406, 0.54003906, -0.7583008, 0.32348633, 0.45581055, -0.48535156, -1.2431641, 2.9179688, 1.3017578, -0.3544922, 3.5644531, -1.1679688, -1.1435547, -0.21643066, 1.0800781, -1.6855469, 1.6318359, -0.77246094, -1.6162109, 1.2626953, 2.875, 0.3671875, 0.21154785, -1.5849609, -0.04537964, 0.035491943, -3.3242188, 1.1630859, -0.8911133, -0.6196289, -0.5288086, -2.2597656, -0.8076172, -1.1630859, 1.7363281, 2.09375, -0.6533203, 0.011398315, 2.4160156, -1.3662109, 0.1875, -0.34326172, -0.484375, -4.5859375, -0.1126709, 2.1914062, -0.8955078, 2.4628906, -0.70751953, -0.09436035, -0.6245117, -0.7495117, -1.2197266, 3.4863281, -2.7792969, -0.6748047, 1.2070312, -0.26586914, -1.7197266, -0.28979492, -2.2519531, -1.9814453, 2.2890625, 1.1845703, -0.43139648, 0.44726562, -0.41479492, -1.6728516, -3.8085938, 0.040618896, 0.50927734, -0.89941406, -0.7446289, 0.7519531, -1.1416016, -2.5976562, 0.98291016, -0.29492188, -1.4658203, -0.22802734, -0.19787598, 0.49536133, -0.99316406, -1.2568359, 0.9980469, 3.0644531, 1.1289062, -0.03652954, -0.5942383, -2.8515625, -0.46118164, 0.33129883, -1.5625, 1.7529297, 0.6176758, 0.42163086, 0.61035156, 1.8974609, -0.8540039, -0.76220703, 2.640625, 0.47143555, 0.88964844, -1.0283203, -1.5800781, 2.21875, 0.28686523, -1.9775391, 0.6035156, -0.9321289, -1.6103516, 1.4013672, 0.8388672, -0.063964844, 1.7294922, 0.125, -1.9707031, 1.2666016, 0.9345703, 0.86279297, 1.3251953, 1.5332031, -0.9091797, -2.8769531, -3.6621094, -0.74902344, -2.1542969, -0.7866211, 0.077819824, 0.88134766, 1.0644531, 1.2216797, 0.27197266, -0.92626953, 0.27929688, -1.5664062, 1.1601562, -0.0024223328, 4.2539062, 2.7871094, -0.93847656, -2.3574219, -1.8769531, -0.80371094, -1.0605469, 1.1191406, -0.88623047, 2.0644531, -3.0703125, -0.07562256, -0.50390625, 2.6386719, 2.7675781, 0.9472656, -1.3007812, 1.3974609, 2.1660156, -0.26586914, 0.78759766, 0.07019043, 0.5102539, -0.95996094, 2.8574219, 0.66259766, -0.27197266, 3.6699219, -1.2324219, 2.0488281, -1.3623047, -1.8457031, 0.84228516, -0.19592285, -2.2890625, -2.6367188, -1.0712891, -1.1005859, 2.9375, 0.8833008, -0.2298584, -0.79345703, 2.7070312, -0.3322754, 2.0351562, 2.3261719, 1.2324219, 1.0625, 1.2587891, 0.2614746, 0.13171387, 3.0585938, -0.7055664, 1.8066406, -1.0322266, -1.3378906, -0.61572266, 1.6474609, 0.77490234, 1.9941406, 2.9101562, 1.4785156, 1.0234375, 0.9453125, 2.1601562, 0.07409668, 1.3125, 1.8652344, 0.7763672, -2.2148438, 1.5205078, 1.0449219, -1.1953125, -1.5751953, -0.09625244, -0.578125, -0.20263672, 0.33642578, -0.69873047, 1.6689453, -4.9335938, 1.6308594, -0.87890625, 2.5664062, 0.16174316, 0.9038086, 0.5541992, -0.48242188, -1.0888672, -1.78125, -0.33618164, -0.9272461, 1.2832031, -0.8598633, 0.2668457, -0.6142578, -3.4726562, 0.6166992, -0.52685547, -2.4824219, -1.0615234, 1.2373047, 1.0761719, 1.21875, -0.5913086, 0.30078125, 1.3300781, 0.45043945, 0.8251953, -1.0361328, 1.0361328, 0.23547363, 3.0996094, 0.6040039, 0.07495117, -0.1038208, -0.1850586, -3.9101562, -4.5273438, 0.93652344, 1.4130859, 2.2480469, 1.0166016, -3.0976562, 3.3808594, 1.3681641, 2.1933594, -0.9897461, 2.1835938, -1.1601562, -0.8833008, -1.1337891, 0.11077881, -0.04537964, 4.5195312, 1.4257812, -0.054748535, 2.0488281, -1.1542969, 0.25146484, 0.5263672, 1.0078125, 0.107788086, 0.11047363, 0.84375, 0.4753418, 1.8398438, -1.6044922, 0.2697754, 2.3144531, 1.5, 0.107788086, 2.2167969, -1.2734375, 2.6582031, 0.45629883, -0.42333984, -0.54345703, -1.3701172, -1.4453125, -1.2099609, -0.27319336, -1.5439453, -1.5019531, 0.9291992, 0.64160156, -0.90527344, 0.81152344, 1.0732422, -0.0025730133, 1.7128906, 0.70947266, -0.5136719, -1.5859375, -0.7060547, -0.12695312, -1.4150391, -2.3261719, 0.13671875, 1.2929688, 2.2246094, 0.6616211, 0.64501953, -1.0498047, -0.4169922, 0.44555664, 0.8613281, -0.6982422, 0.038635254, -0.24975586, 0.84228516, -1.2138672, 3.5214844, -0.66308594, -0.9003906, -0.1361084, -2.6855469, -0.41577148, 0.32104492, -1.2939453, 1.9931641, 2.3300781, 1.4775391, 1.1103516, -2.5878906, -1.7880859, -2.3496094, -0.6538086, 1.5585938, -0.0011558533, -0.20898438, 0.55322266, -0.3791504, 1.4248047, -0.6513672, -0.18151855, 0.2602539, -1.7949219, -0.20703125, 0.49438477, -1.2246094, 0.4506836, 2.7832031, -0.75439453, 2.8027344, 0.8881836, -1.1777344, 2.7539062, 1.8261719, 1.2138672, -2.7988281, 0.11352539, -1.7548828, -0.49267578, 0.4868164, -0.16271973, 2.2910156, 1.2695312, -1.65625, -3.9257812, -2.5996094]}, "B01DAOM5SW": {"id": "B01DAOM5SW", "original": "Brand: AmazonBasics\nName: Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set\nDescription: \nFeatures: Durable, charcoal grey finish patio heater with heat output of 46,000 BTU's\nHeater features a piezo ignition and safety auto shut-off tilt valve\nStandup patio heater cover protects against rain, snow and other outdoor elements\nUsing click-close straps, cover easily snaps around heater to secure the cover on windy days\nCover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater\n", "embedding": [0.7758789, 0.6220703, 3.5820312, -0.7817383, -1.1210938, 0.8208008, 0.69140625, -3.234375, -0.04611206, 2.0039062, 1.0732422, -0.20703125, -0.73583984, -3.8261719, 1.8955078, -1.2626953, 0.7788086, 1.9121094, 2.0898438, -2.4140625, 2.9277344, 0.1821289, -0.51416016, -0.7060547, 0.03277588, -1.2412109, 2.9472656, -1.3427734, -0.3552246, -1.3789062, -0.1394043, 2.2265625, -1.2939453, 1.8134766, -0.4296875, -2.4414062, 1.2353516, 2.0703125, -3.65625, -1.0292969, -0.90234375, -1.5351562, 0.42211914, 1.2900391, -1.4267578, 0.29907227, 2.28125, 1.1621094, 0.2644043, -0.43041992, 0.9589844, 0.46923828, 0.5341797, -0.97802734, -1.1113281, 1.1953125, -1.8671875, -3.6230469, 0.95458984, -0.33666992, -0.9868164, -1.8769531, -2.0742188, 3.1386719, -0.06088257, 1.4755859, -0.46142578, 1.1445312, -1.8408203, 0.7504883, 2.1855469, 0.11828613, -2.3398438, -0.6459961, 0.54833984, -0.7368164, -1.8662109, 1.8134766, 4.0976562, -1.8603516, -1.0732422, 0.46069336, -0.16088867, 1.6279297, -1.3564453, 0.6245117, -0.95166016, -0.9589844, 1.6865234, -0.52490234, 0.41845703, 1.1816406, -1.8925781, -1.5380859, -1.4658203, -1.4179688, 0.0009422302, 0.75683594, 0.033691406, 1.7988281, 0.4609375, -0.39672852, -0.016845703, -1.6621094, -1.1298828, -0.58691406, 2.84375, -0.38867188, 0.24304199, 1.9091797, -3.1914062, 0.22241211, -0.08886719, -2.0078125, -0.96484375, 0.76464844, 0.41137695, 1.6953125, 2.6230469, 1.9882812, 2.7050781, -1.6230469, 1.21875, -4.1367188, 1.1611328, -0.5786133, 0.14257812, -0.3544922, 3.1464844, -0.80126953, 2.1621094, -0.46728516, 0.4411621, 1.4804688, -1.2666016, -0.7290039, -1.2871094, 0.13977051, -4.0898438, -0.8647461, -1.5644531, -0.04660034, 0.2241211, 1.1767578, -3.5742188, -1.7851562, 0.27856445, 2.1210938, -2.8398438, -0.9458008, -0.052581787, -2.2792969, -1.4033203, -2.1367188, -0.09649658, 1.0107422, 1.9746094, -4.1523438, 2.6601562, -0.107055664, 1.2089844, -0.5996094, -0.58691406, 2.7089844, 0.8442383, -1.9570312, 0.6669922, 1.3544922, 0.57666016, 3.5039062, -0.47021484, -3.7285156, -1.8349609, 0.32250977, -0.38378906, -0.1439209, -2.2929688, 0.8417969, -1.7666016, 2.0839844, -1.2363281, -0.57177734, 1.2783203, 2.6855469, -0.328125, -2.0078125, -2.8339844, -3.8144531, -0.3605957, -0.12780762, 0.11883545, -0.08135986, -0.52246094, -1.6572266, -1.6201172, -3.7558594, -0.24389648, -2.0410156, 1.4453125, 0.8256836, -1.7470703, 0.36865234, -1.1445312, -0.4951172, -2.1152344, -1.4570312, -0.53027344, -0.41210938, 0.3881836, -0.14404297, 1.3583984, 0.03552246, 1.4355469, 0.6669922, 2.1582031, -0.8852539, 1.6503906, -2.4101562, -1.3671875, 2.5546875, -0.39379883, -0.2890625, 0.31445312, 1.0400391, -2.4902344, 3.1035156, 1.3007812, -0.11077881, -3.5878906, -1.4052734, 1.3173828, 2.0175781, -0.28076172, 1.2041016, -0.72265625, 2.8339844, 0.37451172, -0.26416016, 1.4716797, -1.8574219, 0.6586914, -1.5517578, -0.49951172, -0.12451172, 0.42944336, 3.7832031, 0.42382812, 1.7041016, 0.051483154, -1.2021484, -0.45263672, -2.0976562, 0.56591797, -2.0507812, 1.3740234, 1.4150391, 1.0009766, 1.8554688, 0.13464355, -1.7900391, 1.8867188, 0.38720703, -1.7939453, 0.00013494492, -1.4394531, -0.9399414, 3.546875, 1.3105469, -1.953125, -0.23254395, 0.20349121, 1.2285156, 1.4199219, -0.18249512, 1.2822266, 1.375, 0.79345703, 2.4980469, -0.44677734, 1.2958984, 2.125, 1.5849609, 2.796875, -1.3583984, 0.039611816, -1.2158203, 0.18029785, 1.4951172, -0.64990234, 1.8583984, 1.5869141, 0.14562988, -1.9833984, 3.6445312, -0.25878906, 1.9589844, -0.16223145, -1.2421875, -0.15649414, -2.4238281, 2.8710938, 0.022979736, 0.41870117, 1.6914062, -2.4082031, -0.19372559, 0.22570801, -2.1171875, 0.18103027, -1.0449219, -0.38964844, -3.2734375, -2.6113281, -0.7788086, -2.9199219, -0.76464844, 0.6767578, -3.9902344, 1.171875, 0.3881836, 0.4802246, -0.34326172, -1.2919922, -1.7734375, 3.0761719, 1.4462891, -1.6855469, 1.546875, 0.40551758, -1.3076172, -1.015625, -0.9277344, 2.4707031, -2.5683594, -2.71875, -1.1845703, 0.0413208, -0.2211914, 0.14672852, -0.6748047, 2.0175781, 0.8574219, -2.8007812, 1.5146484, -2, -3.2558594, -0.95947266, 1.8525391, -1.6357422, 1.2744141, -0.046875, -0.09588623, -2.2753906, -3.8613281, -0.051116943, 1.1748047, -1.8486328, 0.43115234, -0.5258789, 1.1787109, -0.8935547, 0.86621094, 0.5097656, -0.32006836, -0.028717041, 0.0758667, 0.09777832, -4.4179688, 1.5048828, -2.4257812, 0.23876953, -0.16723633, 2.2246094, -2.6054688, -0.43237305, 3.1679688, -0.27929688, 4.9375, 1.3261719, 1.9677734, 0.19689941, 0.0018444061, 2.015625, -0.30395508, -2.5859375, -0.28979492, -1.3525391, -1.9501953, -1.0537109, -2.6972656, 0.5332031, -1.6132812, -0.98291016, 0.69873047, -1.4462891, -0.2578125, -1.4941406, -2.6757812, 0.08117676, -2.3066406, -1.40625, 0.1015625, 1.0722656, -2.2929688, -1.0380859, -1.9648438, -1.2929688, -0.66015625, 2.2734375, 1.2890625, 0.68359375, 2.5410156, -0.41210938, 3.5820312, 0.8925781, -4.4804688, 2.0566406, 4.015625, 1.625, -1.2851562, -1.5605469, -2.4433594, -0.8491211, -0.9038086, 2.1523438, -0.76464844, 1.7675781, 0.11627197, -0.25219727, -0.30615234, 1.1767578, 0.076660156, -0.86621094, -0.75390625, 2.2597656, -1.5009766, -1.1660156, 2.6757812, 2.46875, -1.8583984, -1.0224609, 1.5195312, -0.28442383, 1.9951172, 0.8535156, -2.4296875, 0.92626953, 3.7597656, 1.8808594, -0.15393066, 1.1230469, -2.3320312, -1.0146484, 1.5175781, 1.8085938, 2.9277344, 0.13659668, 0.57373047, 1.6191406, -0.057128906, -0.07904053, -1.2978516, 0.5078125, 1.2128906, 1.3662109, 0.15625, 1.3066406, -0.79785156, 1.8115234, 1.9746094, 1.3896484, 0.26416016, -1.15625, 1.0878906, 2.6738281, 0.33789062, -1.3320312, 0.24194336, -0.23120117, 0.5913086, -1.1630859, -0.39160156, -0.6328125, 0.61572266, 0.10986328, -2.1347656, -1.46875, -1.6054688, 3.4882812, 0.28173828, -2.984375, -0.09942627, 2.1699219, -0.63623047, -0.17407227, -1.5253906, 0.16699219, -0.72558594, 1.9589844, 0.4074707, -1.328125, 0.059387207, -3.5390625, 1.0449219, 0.035369873, -0.8486328, -2.1152344, 0.33862305, -2.1445312, 1.4863281, 0.36645508, -0.6274414, 1.9003906, -1.1884766, -1.0703125, -2.1738281, -2.1230469, 2.4492188, -1.2285156, -0.9536133, 1.9794922, -0.09051514, 1.7792969, -1.4921875, 3.0742188, -0.9916992, -3.4472656, 0.29516602, -0.19519043, 1.3007812, -1.1767578, -5.0898438, 0.19848633, 1.65625, -1.0820312, 1.1767578, 0.93896484, 0.33691406, -0.57666016, -1.0957031, -2.2617188, -2.5097656, -2.0371094, -0.82421875, -3.0332031, -0.76464844, 0.9770508, -2.4316406, -2.2519531, -2.9726562, -0.045440674, -1.1787109, 0.076538086, 2.5019531, -0.6015625, 0.15625, -0.2319336, 2.0996094, -0.030426025, 1.0517578, -0.53759766, 0.40063477, 0.23657227, 0.99609375, 1.7177734, 0.4140625, 1.1757812, 1.5078125, 2.5449219, -0.014083862, -2.46875, 0.7260742, 1.8076172, 1.7294922, -0.17822266, -2.5527344, 1.0644531, -0.63183594, 0.89208984, -1.4931641, 0.3359375, 1.0537109, -1.2666016, 0.33520508, 2.359375, 0.5366211, 3.0078125, 0.64697266, -3.4707031, 0.30566406, -1.1435547, -1.2197266, -1.9707031, 0.51171875, -0.8911133, -0.5439453, 0.48388672, -0.5415039, 0.8696289, -1.8837891, -2.4960938, -0.44189453, 1.0507812, 2.1542969, 2.8242188, 0.9067383, -2.7460938, -0.72265625, -0.26904297, -1.4697266, 0.06573486, 0.4831543, 1.0966797, 2.4882812, -0.9272461, 1.3916016, -2.6289062, 0.54833984, 0.72265625, -0.5151367, -0.6098633, -2.2148438, -1.4199219, -0.30615234, -2.0800781, 0.7416992, 0.77783203, 2.2207031, -1.9941406, 0.11480713, -2.1132812, -0.6713867, -0.7939453, 0.09387207, -1.8261719, -0.7182617, 2.1210938, 0.85791016, -0.89404297, -0.5078125, 0.9086914, -1.5322266, 2.7480469, -0.09240723, -2.2539062, -0.26635742, 0.58984375, 0.82958984, -1.6230469, 1.1279297, 0.68066406, -0.28198242, 2.1914062, 2.109375, 0.49804688, 2.2460938, 0.8666992, 0.12683105, 1.3554688, 1.1884766, 0.03414917, 1.6298828, -1.4179688, -3.5214844, -0.37451172, 4.640625, -1.1171875, 0.44091797, -1.1171875, -2.78125, -0.296875, -1.5634766, -2.1582031, -1.3017578, 1.6103516, -1.1689453, -0.45288086, 0.74072266, -1.9951172, 1.7705078, 4.7304688, 0.17407227, -1.2851562, 3.734375, 0.31396484, -2.8496094, -0.032287598, 0.22094727, 0.15795898, 0.1541748, 1.0722656, 1.03125, 1.5732422, 0.81640625, 0.4387207, -2.1523438, 0.22607422, 1.3486328, 3.1855469, -2.4082031, -0.8022461, 1.6142578, 0.4099121, 0.63720703, -1.4130859, -0.3178711, 0.3552246, 0.5263672, -1.2705078, 0.33618164, 1.4179688, -1.6367188, -1.9101562, -1.4208984, -0.06854248, 0.3786621, -2.6328125, 0.92333984, -1.3828125, -1.0595703, -0.671875, -0.08898926, -0.5859375, 1.7294922, -1.4873047, -1.8056641, 0.028884888, -0.30566406, -1.25, 1.1728516, 2.9824219, -0.6738281, 0.5722656, -0.87109375, -2.2050781, -1.6894531, 0.025466919, -1.4345703, 2.0449219, 0.4453125, 0.3017578, 3.6210938, 3.3476562, 1.5439453, -1.2304688, 1.9335938, 0.7089844, 1.34375, 3.1699219, -0.8300781, 1.5117188, 0.93652344, -1.3261719, -0.19726562, 0.7504883, 0.023132324, 0.15905762, 3.0039062, 0.9013672, 0.5527344, -0.3918457, 1.7910156, 0.23571777, 0.42285156, 2.3574219, -0.3955078, -1.9677734, -1.1103516, -2.3242188, -0.51171875, -3.6464844, -2.1699219, -2.6875, -1.1240234, 1.3085938, 0.8779297, 0.19116211, 1.1660156, 0.9970703, 1.7666016, -1.7753906, -0.25830078, 0.6230469, 2.1523438, 0.48095703, -0.8149414, -3.453125, -2.5917969, -1.1083984, -0.42578125, 1.6269531, -2.0742188, -0.4091797, -3.9023438, -0.110839844, 0.35839844, 2.2617188, 1.2402344, -0.2626953, -2.1308594, 2.1210938, 2.9941406, -0.48632812, -0.112854004, -1.1044922, 3.5703125, -2.0800781, 3.2109375, 2.8828125, -0.0033283234, 1.0761719, 0.45581055, 0.96972656, -0.24194336, -0.87109375, 1.9853516, -2.2460938, -0.18188477, -0.6020508, -0.71777344, -3.0449219, -0.51123047, -0.14831543, 0.4753418, 0.05053711, 1.4912109, 0.6123047, 1.1308594, 1.5556641, -0.5053711, 0.8125, -1.5283203, -1.5996094, -0.121520996, 3.5585938, 0.084350586, 1.5791016, -1.1640625, 0.05078125, -1.5283203, 1.0166016, -2.3105469, 0.053588867, 5.0234375, 3.2539062, 2.5742188, 1.0419922, 0.5625, 1.0605469, 1.03125, 1.3066406, -1.9892578, -0.48486328, 1.203125, 3.1464844, -0.6376953, -0.93847656, -0.6660156, 3.4589844, -1.2841797, -0.91308594, 1.8798828, 0.2052002, -0.8071289, 0.18896484, -1.2119141, 2.0097656, -0.97998047, -0.8354492, 0.47021484, 2.1328125, 0.64746094, -1.1923828, 1.8144531, -1.5283203, -0.7446289, 0.12536621, -0.5576172, 1.0976562, -2.1503906, 1.9824219, 1.1826172, -0.61376953, -0.6933594, 0.91845703, 1.5693359, 1.6542969, -0.15991211, 1.6953125, 0.9272461, 1.578125, -1.5458984, 0.037109375, -1.7207031, 0.7373047, 1.3583984, 2.3652344, -1.0029297, -1.6044922, -1.5878906, -0.57714844, -2.3164062, 0.74072266, 1.4296875, -0.79833984, 1.5410156, 0.3166504, 1.0878906, -0.21972656, 1.8115234, -0.9013672, 0.55078125, 1.4042969, 0.1394043, -1.1826172, 0.5288086, -2.0683594, 3.0585938, -0.009216309, 0.08679199, 1.4101562, -2.2734375, 0.09338379, 1.4111328, 1.5898438, -1.6396484, 1.6953125, -1.2841797, 0.90234375, 2.6757812, 1.3574219, 0.4819336, 0.105529785, 2.0703125, -0.49121094, 1.3271484, -1.2158203, 0.9189453, 2.0625, 0.546875, 0.32861328, -1.0556641, -1.5517578, 0.51464844, 1.3857422, -0.31030273, -1.2392578, 2.0175781, 0.0869751, -0.16906738, 1.5117188, 1.8662109, -1.2148438, 1.2783203, -0.37060547, -2.3925781, -0.017913818, -1.1865234, -0.5371094, -0.19140625, -0.93066406, -0.61376953, 1.0371094, 1.3583984, 1.71875, 1.3417969, -0.83251953, -2.3007812, 0.9458008, 0.73291016, -1.0253906, 0.8535156, -0.4309082, 0.33251953, -2.3417969, -0.40820312, 3.265625, -1.3671875, -1.1464844, -1.7519531, -2.0195312, 1.4541016, 0.07714844, 3.3359375, 2.8828125, 0.7397461, 1.3134766, -1.3935547, -2.8476562, -2.0351562, 0.734375, 3.0625, -0.8833008, 0.6225586, 0.8417969, -1.0546875, 3.0410156, 0.97509766, -1.1875, -1.4707031, -1.1054688, 2.6953125, -0.26391602, 1.7246094, -0.48242188, 0.98583984, 0.4987793, 2.4746094, 0.035980225, 0.6376953, 1.2011719, 1.3271484, 0.6113281, -3.8261719, 0.8696289, 0.9169922, 1.0673828, 0.9404297, 0.20935059, 0.19946289, 0.3088379, -0.33740234, -3.2675781, -1.8701172]}, "B01HQSUMII": {"id": "B01HQSUMII", "original": "Brand: ProCom\nName: ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black\nDescription: \nFeatures: TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft.\nDEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\nSAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected.\nDIMENSIONS: 25\u201d H x 33.5\u201d W x 13\u201d D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900\n", "embedding": [-2.2050781, -0.57373047, 2.1582031, 2.6113281, -2.4042969, -0.81152344, 0.1842041, -0.017181396, -1.4042969, 2.7597656, 2.671875, 0.48120117, -0.89208984, -1.3916016, 0.45825195, -0.41625977, 0.6274414, 0.51171875, -1.0214844, 0.8642578, 0.6542969, 0.42285156, -0.85253906, 1.0634766, -0.70996094, 1.1699219, 3.0820312, -2.2050781, -1.0585938, -2.0507812, -0.45141602, 0.33251953, 0.73535156, 2.0234375, -1.6953125, -0.9379883, -2.4472656, 1.1220703, -1.4814453, -0.14562988, -1.4755859, 0.4975586, 1.84375, 0.45825195, -3.0117188, -2.4628906, 0.9238281, 0.5649414, -0.8828125, 1.7763672, 1.1240234, 1.8447266, -2.3828125, 1.2041016, 0.1303711, 1.3896484, 0.3154297, -0.8457031, -0.23168945, 0.64453125, 0.32177734, -0.06317139, -1.4482422, 0.2277832, -0.30639648, 0.50634766, 0.001156807, -0.92871094, -1.1953125, -0.90185547, 2.8574219, 0.92529297, 0.18652344, -0.6948242, -1.4550781, -0.82958984, -4.0664062, 0.7709961, 3.2773438, -0.059173584, -0.91845703, 1.1894531, 0.68847656, -0.36694336, -0.02178955, 0.98828125, 0.62353516, -0.31469727, 0.54541016, 1.3330078, -1.9824219, 1.2685547, -0.34814453, -2.9765625, 0.72265625, 0.65771484, 1.4384766, 1.4912109, -0.92089844, 0.4609375, 1.4833984, 1.4990234, 0.84765625, -0.31518555, -1.1953125, -1.203125, 2.6582031, 1.7978516, -2.9667969, 1.0341797, -1.8916016, -0.45703125, 1.0576172, -0.97509766, 0.21557617, 0.65185547, 1.0429688, 1.1201172, 2.2011719, 0.34643555, 1.8251953, -0.8833008, 1.1992188, 0.19763184, 1.5478516, 2.1367188, -2.2226562, -1.3828125, 1.8007812, -0.48901367, -1.6357422, -1.1142578, 3.2578125, -1.2490234, 0.9511719, -1.0751953, -1.9824219, -2.2597656, -3.2851562, -1.2949219, -1.6835938, 1.1689453, -2.296875, 0.6269531, -4.4804688, -1.25, 0.80859375, 0.23327637, 2.7480469, -1.0537109, 2.7890625, -3.296875, 0.9868164, -2.8535156, 1.2080078, -0.890625, -0.44580078, -1.0410156, 2.2167969, 2.1621094, 0.9116211, -1.0996094, -3.2324219, 2.1210938, 0.6303711, -1.4785156, 0.6791992, 0.29101562, -1.8017578, 1.7119141, -0.2290039, -1.8300781, -1.4941406, -0.35766602, -0.008148193, -0.8383789, -0.6298828, 2.9804688, 1.4677734, 0.29248047, -3.0585938, -0.4008789, 0.7089844, 1.34375, -0.7885742, 1.0585938, -0.07659912, -0.3942871, 1.984375, -2.4453125, 0.16906738, 2.3125, 0.40478516, -1.2626953, 0.009147644, -1.7626953, -0.3737793, -2.890625, 2.2519531, 0.31201172, 0.39770508, 0.47802734, 0.6738281, 0.42138672, -1.2880859, -1.0810547, -0.15795898, -0.98828125, 1.1396484, 2.53125, 1.8310547, -0.74365234, 3.0625, -2.46875, -0.5292969, -1.2285156, 2.1210938, 1.8095703, -1.546875, 1.9824219, 0.26538086, -0.1171875, 1.5615234, 1.8505859, -1.2421875, 2.1601562, 1.7412109, 0.028121948, -3.8671875, -2.8789062, 2.6035156, -0.20178223, -0.73339844, -0.5317383, -0.45751953, 2.2871094, 1.1416016, -0.7714844, 0.84472656, 0.41748047, 0.80371094, -0.014015198, 0.25024414, 1.8476562, -0.99560547, 1.8144531, -0.30004883, 2.0253906, 1.6494141, 1.4033203, -0.5107422, -0.8413086, -0.3173828, -0.73339844, -1.578125, -1.4736328, 0.69384766, -1.3935547, -1.3564453, -3.3320312, 1.7646484, 1.2041016, -1.6425781, 0.038146973, -1.3798828, 0.26586914, 3.4101562, 0.038757324, -1.8876953, 0.26708984, 1.5039062, 1.7763672, 1.4179688, 1.4482422, 1.0947266, -0.83154297, -0.37524414, 3.3828125, 0.37060547, 1.4091797, 0.7895508, -2.5683594, 2.0019531, -0.921875, 0.24780273, 0.76220703, 1.2412109, 0.9169922, -2.9199219, -2.4003906, 3.5039062, -0.734375, -3.8984375, 2.8320312, -2.3925781, 0.16955566, 0.65722656, 1.1503906, 0.79003906, -2.3144531, 1.4912109, 0.89404297, -1.859375, -0.79833984, 0.5517578, -1.28125, 0.008651733, 0.28442383, 0.22888184, -0.39257812, 0.095703125, -2.5917969, -2.3945312, -0.14025879, -3.7109375, 0.13745117, 2.9257812, 0.30932617, 2.4082031, 0.96728516, -0.0048294067, 0.7504883, -0.8989258, -1.8037109, -0.07891846, 0.24902344, 2.234375, 2.9980469, -0.091308594, -0.8339844, -0.9580078, -2.4414062, 1.0351562, -1.4501953, -1.9130859, -0.03152466, -0.79052734, -3.78125, 0.27270508, -0.14587402, -0.09411621, 1.6289062, -2.6972656, -0.7895508, -0.60498047, -2.3242188, -0.120788574, -2.5292969, -0.32177734, -0.80029297, 3.4179688, 0.8623047, -1.2548828, -2.1914062, -0.90234375, 0.124694824, -2.96875, -1.8417969, -1.7324219, 1.0722656, -0.72802734, 0.06536865, -1.1923828, -0.14086914, -0.08605957, -0.5253906, 1.2744141, -2.6289062, 0.9506836, -2.1953125, 0.6171875, -0.3071289, 0.2277832, -1.5273438, -2.3105469, 0.70458984, -0.9868164, 2.5625, -0.6274414, 2.2246094, -0.013084412, 0.43945312, -0.69873047, -2.9726562, 0.011550903, -1.1132812, -1.0722656, -2.0722656, -1.5400391, -2.1699219, -0.30297852, -0.03756714, -0.9145508, 0.3857422, -1.0859375, 0.8354492, -1.0605469, 1.8632812, -0.8774414, 1.2285156, -0.31884766, -2.7382812, -1.1171875, -0.58740234, -1.2226562, -1.0546875, -1.1328125, 1.2558594, -0.039855957, 2.2773438, 1.1679688, 1.5830078, -0.9770508, -0.13842773, 0.10003662, -3.8417969, 1.0957031, 0.7158203, 0.41479492, 0.013702393, -0.7626953, -2.0761719, -1.1787109, -0.6635742, 2.1445312, 3.1210938, 3.2050781, 0.117126465, -2.1503906, 1.9414062, 2.09375, 0.07342529, -1.8105469, -0.7416992, 3.7382812, -3.3789062, -0.41430664, 1.296875, 0.83496094, -1.0644531, -2.96875, 0.15197754, -0.6376953, 4.3789062, 1.3935547, -0.13916016, 0.76708984, 0.2619629, 3.0527344, 2.0917969, 0.024734497, -0.5048828, -2.7695312, 1.5146484, 1.2783203, 1.7509766, 5.1328125, 0.012626648, 0.09631348, -0.14929199, 0.4104004, -2.4316406, 0.20825195, -0.21154785, 0.12213135, 0.55810547, 4.3867188, 0.5180664, -0.17871094, -1.7558594, 0.5551758, -0.7993164, -1.6835938, 0.8901367, 2.4414062, 1.1337891, -0.037872314, 1.5849609, -0.6777344, 1.8046875, 0.5053711, 2.4746094, 1.1933594, 0.29882812, 2.6875, -1.8203125, -0.54345703, -2.0625, 1.9013672, -1.1152344, 0.7192383, 0.6953125, 1.6240234, -2.0429688, -1.8916016, -0.05758667, 0.8598633, 1.5380859, 2.7148438, -0.061431885, -1.4052734, -0.9760742, -1.3369141, -0.45239258, 2.1542969, -1.5332031, 0.97314453, 0.90966797, 2.6152344, -0.61621094, -0.7939453, 1.0791016, 0.46875, -0.3125, 0.2142334, -3.4550781, -2.3945312, -0.029449463, -0.6723633, 1.6669922, 3.5644531, 0.31347656, 1.4365234, -0.51171875, 0.9506836, -1.6777344, -1.6123047, 1.5791016, -2.1269531, 0.3564453, -1.9150391, -2.7851562, 1.0019531, -0.46728516, -0.05307007, 1.4677734, 0.3630371, -0.54589844, -0.14404297, 0.31347656, -2.9980469, -2.2792969, 0.47631836, 0.64453125, -1.6933594, 0.9433594, 1.9960938, -0.7597656, -1.1591797, 0.62109375, 0.28393555, 0.054870605, 1.4970703, 1.5615234, -2.2265625, 0.5595703, -0.4440918, 0.2590332, 0.14526367, -1.1513672, 3.4980469, 0.9277344, 0.47924805, -1.7089844, 0.1730957, 1.78125, -1.3847656, 0.11254883, 2.9140625, 0.8569336, -0.8911133, -0.33251953, 2.6816406, -0.015274048, -0.25976562, -1.7197266, -1.4492188, -2.0605469, 0.7631836, -0.5644531, -1.3193359, 0.75439453, -2.4765625, 0.09509277, 1.0917969, -0.5263672, 1.9179688, 2.2128906, -1.6904297, 1.0087891, 0.7739258, -3.359375, -1.2724609, -0.5385742, -1.6337891, 0.6196289, 0.13647461, -0.4104004, -0.13244629, -0.49536133, -1.3925781, -3.25, 1.7109375, 1.3896484, 1.7421875, 1.7666016, -2.0898438, -1.5878906, -0.14550781, 0.3166504, 1.2421875, -0.3256836, 0.61279297, 0.3088379, 2.3066406, 3.2597656, -2.5078125, 0.11584473, 1.6669922, -0.75634766, 0.57470703, -1.0146484, -0.14904785, -0.7416992, -0.078430176, 4.71875, 1.0009766, 1.265625, -2.4550781, 0.5805664, -0.27856445, -0.64404297, -2.1386719, 1.8583984, 0.21032715, 0.56103516, 1.0830078, 1.0712891, -0.09661865, 0.4494629, 1.1445312, 0.105773926, 2.21875, 1.2773438, 1.3232422, -0.19616699, 0.39648438, -1.2841797, -0.8339844, 1.1367188, -0.67333984, -1.3994141, 3.9628906, 1.6103516, -1.5214844, 1.5644531, -1.9746094, -3.0507812, 0.46533203, -0.24645996, -0.54589844, 0.6098633, 1.6142578, -2.765625, -0.6303711, 2.5273438, -0.6972656, -1.6132812, -1.3710938, -2.1894531, 0.9785156, -3.3320312, -1.2207031, 0.012908936, -1.0976562, 0.113098145, -1.5097656, -1.4277344, -1.71875, 1.0019531, 2.0019531, 0.33520508, -0.8774414, 0.8129883, 0.26611328, 1.4472656, -1.2714844, -0.12963867, -2.2421875, 0.06329346, 1.4023438, -2.2929688, 2.3359375, 0.40722656, -0.8198242, -1.2363281, -2.4238281, -0.4814453, 0.85498047, -2.2792969, -1.3574219, 2.4960938, -0.96240234, -0.46289062, 0.49975586, -2.0527344, -1.0703125, 2.1914062, -0.5390625, -0.23327637, 0.32006836, -0.8017578, -1.5703125, -3.8925781, -2.5957031, 0.9472656, -2.0664062, -1.3310547, -0.24963379, -1.1953125, -0.48413086, -0.28173828, 2.1660156, -2.7617188, -0.50634766, -1.5810547, -0.1529541, 0.45263672, -0.47460938, 0.044769287, 1.5107422, 1.4111328, -0.9169922, -0.09918213, -3.6464844, -0.3815918, 0.011405945, 0.5942383, 2.0683594, 0.9350586, 0.8886719, 0.6669922, 1.6728516, -1.0390625, -2.6679688, 2.1660156, 1.15625, 0.8725586, 1.2587891, -0.8564453, 0.036895752, 0.22875977, -0.3088379, 1.1982422, 0.75927734, -0.066711426, -0.32983398, -0.14624023, 0.45874023, -0.75683594, -0.01121521, -1.2451172, 0.008293152, 0.8774414, 0.7133789, 0.29760742, -0.88720703, -1.0458984, -3.7324219, -2.0449219, -0.7919922, -1.7822266, -0.7338867, -1.2177734, 1.3837891, 0.6118164, 1.0839844, -1.6396484, 1.2265625, -1.3525391, -1.3134766, 1.0048828, -2.0273438, 2.0761719, 0.8642578, 0.24438477, -2.6054688, -0.14160156, 2.3261719, -1.4023438, 1.5996094, -0.6303711, 1.2070312, -1.84375, 0.8354492, 0.5131836, 2.2773438, 0.5097656, 1.4228516, -1.1074219, 0.45532227, 1.4765625, -0.27563477, 1.1191406, 1.1103516, 2.2949219, -0.7138672, 3.5507812, 1.2558594, -0.51171875, -0.037231445, -0.6230469, 0.4399414, -1.7822266, -1.1123047, 2.28125, -1.1328125, -0.97216797, 0.2097168, -2.1152344, -1.6220703, 2.9824219, 1.1132812, 0.48120117, -1.1816406, 2.4707031, 0.43432617, -0.64746094, 1.359375, -0.6923828, -0.14477539, 0.31201172, -0.58935547, -0.57958984, 3.0957031, -0.4609375, 0.33642578, 0.65234375, 1.3945312, -0.83740234, -0.6567383, -1.0087891, 3.2695312, 2.5527344, 1.6855469, 2.84375, 0.84716797, 0.5932617, 1.1025391, 1.8535156, 0.43286133, 1.2978516, -0.6621094, 1.9277344, 0.42749023, -0.21484375, -2.390625, 1.2470703, -0.013328552, 0.5888672, -1.7255859, -0.19226074, 0.859375, -3.84375, 1.3320312, 0.07116699, 0.37695312, -0.7348633, -0.36523438, 0.14953613, -0.021057129, 1.4179688, -1.1728516, 0.042907715, -0.66015625, 0.34716797, 0.23535156, -1.5107422, 2.421875, -0.5605469, 1.5917969, -1.1210938, -1.8378906, 1.6816406, -1.828125, 0.50878906, -0.026824951, 0.31201172, 1.4580078, 2.4804688, 0.22790527, -0.7597656, -1.6816406, 1.1435547, -0.49658203, 2.6875, 1.9042969, 2.59375, 1.4736328, -0.1887207, -3.1660156, -2.7402344, 0.78222656, -0.26416016, 0.6274414, 1.3017578, -2.8867188, 4.3242188, 1.8066406, 0.9526367, -3.2246094, 1.1376953, 0.36865234, -1.1582031, 1.5263672, 2.3652344, -1.3837891, 2.5585938, 0.38623047, -0.030044556, 2.484375, -1.8388672, 1.1689453, 1.4667969, 0.40063477, 1.71875, 1.3330078, 0.30786133, 1.1679688, 1.625, -0.93359375, -1.1640625, 0.5932617, 2.4042969, -1.2773438, -0.60498047, -0.8598633, 0.8261719, -0.37890625, -0.609375, -0.6191406, -1.8779297, 0.024917603, -1.5234375, -1.3642578, -0.36572266, -1.3095703, 0.9033203, 0.25048828, -3.3886719, 0.6118164, 3.3710938, -0.74121094, 1.9003906, 0.64208984, -0.75390625, 0.56640625, 0.91845703, 2.1152344, -1.3974609, -1.2900391, -1.1767578, 0.23608398, 2.3515625, -0.19799805, 0.12976074, 2.0664062, -0.68652344, 1.765625, 1.0683594, 0.23388672, 0.6411133, -0.2915039, -1.6464844, -0.52734375, 2.2421875, -0.6748047, 0.49047852, -1.6708984, -1.7587891, -2.5039062, 0.41967773, 0.13220215, 2.5742188, 1.3925781, 0.5415039, 0.8120117, -1.1533203, -2.0429688, -2.9824219, -0.11260986, 1.4335938, 0.5390625, -0.070251465, 0.171875, -0.07788086, 0.67529297, -0.13916016, -1.0087891, -0.79003906, -0.3791504, 0.0063667297, -0.43286133, 0.4326172, -0.5942383, 2.5683594, -0.49951172, 2.6738281, 0.7734375, -0.94433594, 1.7089844, 1.1484375, 0.6972656, -1.6474609, -0.6953125, -2.9082031, -1.0029297, 0.36669922, -0.75097656, 2.3457031, 0.10333252, -0.640625, -2.1367188, -0.5541992]}, "B07S2KQ8PL": {"id": "B07S2KQ8PL", "original": "Brand: C-M Propane Fuel\nName: Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack\nDescription: Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.\nFeatures: \n", "embedding": [0.21984863, 1.1142578, 0.2421875, 1.5810547, 0.7265625, -1.7958984, 0.2722168, -1.5224609, -0.45825195, 3.125, 0.4765625, -0.010765076, 1.7744141, -3.1191406, -0.57128906, -1.390625, -2.1699219, 1.9931641, -0.49487305, -0.028518677, 2.6484375, -0.4658203, -0.27416992, -2.2207031, 1.7851562, 0.7910156, 2.2070312, -3.4296875, -1.4960938, -0.38378906, 0.52490234, -1.5, -1.6005859, 1.4296875, -2.4121094, 0.9370117, -1.3408203, -0.32299805, -3.2910156, -1.2109375, -1.421875, 1.9794922, 4.1875, -1.1357422, -0.38500977, -1.3564453, 0.53515625, 0.56347656, 1.0214844, -1.2177734, 0.89501953, 1.2353516, 0.09942627, 0.1595459, -1.6044922, 0.36450195, 1.0029297, -0.51904297, 2.3691406, 0.04711914, 1.0537109, 0.11383057, -2.1894531, 1.4873047, -1.3798828, 1.5888672, -0.62841797, -0.17675781, -0.13342285, 1.2158203, 4.9414062, 1.2675781, -0.9506836, -1.8154297, -2.1914062, 0.054351807, -4.3164062, 0.98876953, 0.3215332, 0.17285156, -0.91259766, 1.3476562, 0.32299805, -1.6591797, -0.64404297, -0.24255371, -0.06323242, 2.4628906, 0.42016602, 1.1103516, -1.6572266, 0.2998047, -0.7871094, -2.1914062, 1.1806641, -1.5302734, 0.59814453, 1.75, 1.3701172, -0.91748047, -1.6357422, -0.21386719, -2.0332031, -0.15148926, -2.7988281, 0.7167969, 1.2705078, 0.484375, -1.9257812, 2.8964844, -1.9658203, -1.9716797, 2.2753906, 0.62890625, -1.8408203, 0.3815918, -1.1865234, -1.1064453, 4.0820312, -0.29956055, 4.15625, -0.9008789, 1.2226562, -1.4794922, 0.7734375, 3.4589844, 0.7026367, -0.14208984, 1.0400391, -0.052764893, -0.671875, -0.019729614, 2.7753906, -1.5390625, -3.0058594, -1.6005859, -0.41088867, -0.92578125, -3.1953125, -1.2451172, -2.2128906, -0.34277344, 2.0566406, 1.0380859, -5.40625, -0.70751953, -0.07696533, 1.921875, -0.3190918, -1.9921875, 1.9414062, -1.5898438, -1.6445312, 0.56884766, 2.3808594, 0.1381836, -1.5537109, -2.3808594, 5.296875, 1.4384766, -0.19726562, -1.4492188, 0.118652344, 1.0537109, -1.6357422, -2.9121094, 2.1015625, -0.48339844, -2.234375, 0.2956543, 0.5864258, -2.9589844, 0.3154297, 1.9873047, 0.07537842, -1.5703125, 1.1923828, 3.171875, 1.2988281, -0.5517578, -3.3691406, -1.6982422, 0.80126953, 0.75927734, 1.0966797, 0.29296875, -1.0966797, -0.6738281, -0.5439453, -2.3847656, -2.3554688, 0.8535156, -1.640625, -0.55566406, -0.8066406, -1.7314453, 0.7871094, -0.4482422, 0.19433594, 0.75439453, -0.87109375, -0.18273926, 0.13769531, 2.8652344, -3.3183594, -2.0488281, 2.1191406, -1.6005859, 2.0214844, 2.765625, 1.1044922, 0.80908203, 2.3339844, -0.47583008, -0.6386719, -1.3134766, -0.27416992, 0.29541016, 1.5742188, -0.15539551, 1.4648438, -0.5463867, 0.4777832, -1.125, 1.3388672, 2.4277344, -0.21435547, -1.578125, -0.80908203, -2.4824219, 0.4724121, 2.3144531, -2.0957031, 0.5161133, 0.6699219, 4.0507812, 0.15490723, -1.4726562, 0.36547852, -0.9165039, -0.8359375, -0.26953125, -2.015625, -0.8515625, -0.31323242, 0.76953125, 1.1035156, 0.40527344, 3.0761719, 0.46679688, 0.68408203, -1.1884766, -0.86083984, -0.39160156, -1.9912109, 1.4257812, 0.48120117, 0.91796875, -0.5649414, -3.6171875, 1.3671875, 2.7089844, -0.80078125, -0.7084961, -1.2695312, 0.36499023, 1.21875, -0.66064453, -2.0253906, 1.6943359, 1.1240234, 0.90966797, 2.0917969, 0.74658203, 2.0332031, -0.12963867, -0.070251465, 1.5283203, -0.021133423, 2.1269531, 1.4326172, -0.5463867, 1.9921875, -4.8320312, -0.72216797, 0.1274414, 2.3339844, -0.39746094, -0.91796875, 0.4296875, 4.9257812, -2.28125, -2.2324219, 3.0390625, -0.68310547, 3.1777344, 0.67529297, 0.39233398, 0.24450684, -0.52246094, 1.625, -0.8652344, -2.4570312, 1.5, -2.1875, 0.35473633, -0.052856445, -0.5864258, 1.546875, -1.6396484, -0.61083984, 0.115234375, -1.0537109, 1.3984375, -0.3112793, 0.27124023, 3.6074219, -2.5117188, 1.9140625, 1.8134766, 0.24572754, 2.2949219, 1.140625, -2.0566406, 0.17443848, 1.6025391, -3.2597656, 1.8671875, 0.24255371, -0.09307861, 2.1230469, -1.9619141, 2.0117188, -0.5541992, -1.0205078, -1.0634766, 0.90771484, -3.3671875, 0.87109375, -0.5961914, -0.86572266, 0.61572266, -0.39648438, 2.6523438, -1.8076172, -0.49804688, 1.3505859, 1.5546875, -0.66552734, -0.7006836, 0.73828125, 2.7792969, -1.0185547, -2.9707031, 0.023513794, -0.51416016, 0.42700195, -0.6928711, -0.30004883, 1.5400391, -1.2900391, 0.2130127, -0.61035156, 0.11352539, -1.1923828, -1.7607422, 1.1083984, -2.5, 2.1757812, -1.6376953, 1.5556641, -0.37402344, 0.68115234, -1.8056641, -0.5180664, 2.6191406, -1.6455078, 4.0820312, -1.1699219, 0.17419434, -0.75341797, -1.3603516, -0.0021305084, -1.1552734, -4.1796875, 0.78466797, 2.4980469, 0.16516113, -3.0097656, -4.3945312, 0.12658691, -2.3027344, -0.7128906, -0.3996582, 0.45092773, -1.8193359, 0.11578369, -1.1650391, 0.1381836, 0.26635742, 0.9975586, 0.45092773, -2.3457031, -0.5102539, 1.09375, -1.8505859, 0.69921875, -2.0097656, -0.37670898, -0.7036133, -0.56591797, 0.11254883, -0.52490234, 1.3642578, -1.0556641, -3.9902344, 2.0761719, 1.0537109, 0.3005371, 2.8378906, -2.8847656, -0.08880615, -4.4101562, -1.9228516, 1.6826172, 2.3046875, -0.16235352, 1.6005859, 1.0927734, 1.8271484, 0.8071289, 0.171875, 0.8540039, -0.16479492, 2.4824219, -2.2089844, -2.8203125, 1.4853516, 2.6308594, -3.640625, -1.5429688, 0.028518677, 1.0517578, 1.1044922, 3.4316406, 0.27270508, -0.15808105, 0.27514648, -1.2519531, 2.1035156, -0.80615234, -0.1439209, -0.6166992, -1.0224609, 1.9228516, 0.37475586, -1.6611328, 1.640625, 0.64990234, 3.2597656, 0.6303711, -1.7001953, 1.3544922, -1.2431641, -0.44506836, 0.53759766, 2.5175781, -1.8369141, -0.21765137, -0.24255371, -1.2783203, 2.1191406, -1.1416016, 1.9296875, 1.8564453, 1.7119141, -1.4726562, 0.92578125, -0.23327637, 1.1660156, -0.37597656, 1.7021484, 0.38793945, 1.3212891, 0.9003906, -1.5654297, -1.0478516, -1.5302734, 2.8203125, -0.921875, -0.6567383, 0.79296875, 0.98779297, 0.9628906, -3.1894531, -4.0976562, 0.35913086, -2.6230469, 2.9628906, 1.9169922, -2.4277344, -1.1630859, -0.7583008, 1.0791016, 2.2949219, -0.36523438, -0.8666992, -1.9775391, -1.5986328, 0.41992188, 0.10424805, 1.1367188, 1.2929688, -2.3046875, 1.5419922, -1.7705078, 2.6542969, -1.0625, -1.3310547, 1.5595703, 0.64746094, -1.2626953, 1.8642578, 1.6914062, 3.2890625, 0.15539551, 2.2832031, 2.1425781, -1.2099609, 0.0065460205, -1.6025391, -2.7636719, 1.6523438, 0.020523071, -0.6142578, 2.1113281, -1.2402344, 0.18347168, -0.59814453, 0.64208984, -1.7646484, -2.3183594, -0.7524414, 1.3408203, -2.1796875, -0.19812012, 2.1230469, -1.0927734, -3.109375, -2.4414062, -0.6196289, -1.1787109, -0.69091797, 0.47583008, -0.30639648, 3.0917969, 0.09124756, 0.7338867, 0.8833008, 0.18103027, 2.0195312, -0.9086914, -0.4567871, -2.3808594, 0.48754883, 2.5136719, 0.9165039, 1.0732422, 0.86572266, 2.3613281, -2.0957031, 0.20751953, 0.37890625, 0.9550781, 0.9785156, -1.5302734, 0.10687256, -1.0585938, -0.09320068, -1.8994141, -2.1523438, 1.5439453, -1.6064453, 1.7880859, 1.0244141, 2.9238281, 2.328125, 0.048431396, 0.79296875, 2.0957031, 2.7207031, -1.4453125, -1.5341797, -1.9013672, -0.64404297, -2.2246094, 0.8666992, -0.7871094, -1.5791016, 1.1630859, -0.7026367, -3.1796875, -0.67626953, 2.1953125, 2.1328125, 1.0439453, 1.8134766, -2.6601562, 2.3730469, -0.7128906, 1.1748047, -0.09100342, -1.5185547, -0.8676758, 0.5678711, -1.0126953, -0.5395508, -0.91015625, -0.4880371, -1.7236328, -1.1787109, -0.27294922, 1.4013672, -1.9541016, 1.3046875, -2, -0.6230469, 2.1035156, -2.5136719, -0.98046875, -0.8022461, 0.20153809, -1.4814453, 0.17102051, 0.24230957, 1.0498047, 0.40454102, -0.38378906, 2.3652344, -1.9521484, 2.3378906, 0.29077148, 1.5263672, -1.3779297, 0.94384766, -1.1337891, 0.48657227, -0.81103516, 0.9550781, 0.98876953, 1.1533203, 1.3818359, 1.9091797, 1.9375, -0.5463867, 0.5546875, -0.44604492, 0.19042969, -1.109375, 0.18786621, -0.5708008, 1.7392578, -1.859375, -2.7890625, 0.47094727, 0.77783203, 1.3525391, 3.2910156, 1.3544922, -1.6357422, -2.2773438, -1.6123047, -1.3330078, -1.0849609, 0.5595703, -0.20568848, -1.2666016, 0.1854248, -1.0527344, 0.8618164, 2.8925781, 1.4833984, -1.8623047, 0.29785156, -0.5449219, 1.4267578, -1.6992188, -1.5742188, -4.0585938, 0.1015625, -1.0878906, 0.8383789, 1.7382812, 0.11956787, 3.7597656, -1.5068359, -1.5703125, -2.1289062, 0.76123047, -2.3496094, -1.3320312, 1.6162109, 2.1289062, 1.546875, -1.7373047, -0.5644531, 0.38012695, 0.4375, 0.8066406, -1.1757812, -1.2314453, 1.3779297, -3.625, -5.015625, 0.2626953, -1.1650391, 1.3349609, -0.69091797, 0.9428711, -1.4873047, 0.7211914, -1.2832031, -0.94384766, -2.7949219, 0.7836914, -1.0195312, 0.7553711, -1.703125, 3.1933594, -1.0419922, -0.5541992, -0.32299805, 1.2431641, -0.13720703, -3.71875, -2.8261719, -0.099121094, 1.0917969, 0.49194336, 0.99609375, -1.8789062, 1.5361328, 1.7070312, 2.0683594, -0.96728516, 1.2197266, -0.57666016, -0.7597656, 0.86083984, -2.5273438, -0.5776367, 1.5439453, 0.68603516, 1.734375, 1.9101562, 1.7744141, -2.7734375, -0.81396484, -0.09954834, 0.97314453, 2.7714844, 0.9272461, 3.0566406, -0.7241211, 2.2382812, 1.6201172, 0.67578125, -2.9589844, -1.2724609, -0.2697754, -0.068237305, -0.14489746, -0.7788086, -2.0214844, 3.1074219, -0.32739258, 1.5039062, 0.055633545, -0.20080566, 0.86376953, -0.051727295, 2.3964844, -2.8300781, 3.3417969, 1.3945312, -3.4453125, -3.4316406, -2.5214844, 3.7558594, 0.421875, -0.1743164, -0.32006836, -1.0761719, -0.95703125, 1.2900391, -1.6181641, 4.1875, 1.8662109, 2.6816406, -2.0136719, 2.078125, 3.9453125, -0.8886719, 1.2080078, 1.2119141, -1.3291016, -1.4638672, 0.7055664, 0.2590332, -2.6640625, 0.8886719, -0.48828125, -0.90625, -1.5195312, -0.49609375, 0.5991211, -0.45092773, 0.28393555, -1.1630859, 0.53564453, -1.9492188, 3.0859375, -0.20227051, -0.4597168, 1.6005859, 1.3144531, -3.0625, -0.6738281, 0.06878662, 0.66796875, -2.28125, -0.39257812, -0.7680664, 1.6923828, 1.2021484, -2.375, 2.7089844, -0.3630371, -2.1328125, 0.9370117, 3.4921875, -0.3869629, 1.7705078, 0.78515625, 1.7607422, 3.1953125, 0.79296875, 2.8964844, 0.31567383, 1.2255859, 1.1865234, -0.13696289, -0.007171631, 2.2714844, 0.8652344, -0.5649414, 0.50146484, 1.0380859, -0.51220703, 0.3955078, -1.8632812, 1.9882812, 1.0107422, -4.0664062, 1.7158203, -0.21838379, 0.7270508, -1.640625, 0.45288086, 1.0566406, -1.5546875, -1.71875, 0.4609375, 0.6196289, -1.2880859, 1.2558594, 0.1171875, 0.2824707, 1.0966797, -0.9321289, -1.8134766, -3.2558594, -2.6445312, -0.77734375, 0.8461914, 0.36938477, 0.8051758, 1.0429688, 2.9511719, -0.48120117, 1.4013672, 1.7109375, -0.2290039, 0.8198242, 0.58691406, 3.8300781, 2.2050781, -2.375, 2.1464844, -0.089904785, -1.3466797, -3.3808594, -1.1347656, 1.3408203, 0.8203125, -0.01826477, -3.734375, 1.6826172, -1.5341797, 3.7246094, -1.7900391, 1.9726562, 1.1396484, -3.8046875, -0.46972656, 0.58740234, 1.2294922, 3.2890625, 2.0175781, -2.5859375, 1.7070312, 0.5727539, 1.3398438, -0.11578369, -1.2724609, 1.3623047, 2.6347656, -2.6621094, 1.4726562, -0.53222656, 3.015625, 0.50439453, 3.5527344, 1.8408203, 0.3515625, -3.5332031, -1.390625, 2.5332031, -0.21984863, -0.9897461, 0.27172852, 0.43725586, -0.7241211, 0.5678711, 0.56591797, 0.3894043, 1.0224609, -1.4023438, 3.125, -2.7519531, 0.19909668, 0.6645508, -0.07098389, 0.60058594, -1.671875, -0.82666016, -1.8955078, -0.35327148, 0.94384766, -2.5019531, 0.060272217, 1.8710938, 2.5175781, 0.1439209, -1.3955078, 1.6318359, -0.5463867, -0.5605469, -1.3828125, -0.57470703, 0.24523926, -0.7480469, 0.8540039, -0.21594238, 0.085632324, 0.9433594, 0.3347168, -1.4033203, 0.8930664, -2.421875, -0.3737793, -3.0292969, -0.33129883, 1.0888672, 3.3457031, -0.08355713, 0.57177734, 0.07080078, -2.4785156, -2.2089844, -2.8378906, 2.109375, 1.3935547, -1.0253906, 1.6523438, 0.9301758, 0.4650879, -0.77978516, -0.9848633, -1.0068359, 1.4804688, -0.53466797, -1.03125, 0.7895508, 2.1015625, 0.1595459, -0.4033203, 3.5996094, 2.9628906, -0.4230957, 0.27856445, -0.30200195, -1.4658203, -0.30493164, 0.0038394928, -1.0615234, -2.0722656, -2.5898438, 2.1542969, 2.2363281, -1.2753906, -1.3212891, -3.4765625, -0.21716309]}, "B001H1HL76": {"id": "B001H1HL76", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone\nDescription: \nFeatures: Throw the ultimate s\u2019mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl!\n40,000 BTU heat output provides warmth and light\nNatural lava rock included to cover the stainless steel burner.\nProtective cover included to preserve the fire pit's integrity.\nConstructed of durable and lightweight Envirostone for outdoor use\n", "embedding": [-0.10571289, 0.7324219, 0.77441406, -0.31201172, 1.5683594, -0.10272217, 1.5849609, -3.5957031, -1.03125, 2.0019531, -0.29760742, 0.1373291, 0.5131836, -2.9785156, 0.6855469, -1.8964844, -0.46606445, 1.3779297, 0.54589844, 1.2783203, 2.4960938, -0.5078125, 0.97753906, 0.10809326, 0.48242188, 1.2480469, 3.0507812, -4.203125, -0.9526367, -1.0966797, 1.3769531, 0.9121094, 0.7480469, 1.4462891, -2.2539062, -0.8095703, -2.0566406, 2.5664062, -3.6972656, 0.33740234, -3.0351562, -0.7553711, 1.8671875, 2.1386719, -2.4316406, 0.3881836, 0.8383789, -0.8540039, -0.0340271, -0.8486328, 0.8154297, 1.0507812, -0.43286133, 0.38330078, -1.4970703, 1.3496094, -0.25146484, -2.7089844, 2.9628906, -0.043701172, 2.2285156, -0.9536133, -0.96972656, 2.1289062, -0.28466797, 2.8828125, -2.6679688, 0.14941406, -0.55126953, 0.1430664, 1.4414062, 1.7978516, 0.031463623, 0.2446289, -0.015625, -1.7685547, -1.8291016, 0.54345703, 0.6894531, -1.0146484, 0.4008789, 2.5507812, 1.0693359, -0.4375, -0.8964844, -0.90771484, -0.9189453, -1.4765625, -0.45263672, 1.9306641, 1.0849609, 2.2421875, 0.034942627, -3.0214844, 0.48535156, -2.1738281, -0.9716797, 1.6269531, -0.7216797, 1.0107422, 0.56103516, 0.76708984, -0.6503906, -0.22497559, -2.9570312, 0.052520752, 1.3203125, 1.0009766, 1.4023438, 0.056671143, -3.1855469, 0.20568848, 1.9462891, -0.113464355, 0.9165039, 0.8989258, 0.62109375, -0.5917969, 3.8554688, 1.0625, 5.015625, 0.18237305, 1.78125, -2.1464844, 0.6567383, -1.0498047, -3.4160156, -0.5361328, 0.81347656, -2.359375, 1.3154297, -1.2304688, 1.7587891, 1.8066406, -2.5761719, -1.4199219, -1.5048828, -1.9794922, 0.07409668, -0.453125, -0.8769531, 2.3066406, 0.59521484, -0.13867188, -3.4550781, -0.11602783, -1.7158203, 2.7109375, -1.1474609, -2.4335938, 0.064331055, -1.6640625, 0.02293396, 0.7519531, 0.4802246, 0.2722168, 0.49658203, -2.046875, 2.8398438, 1.8134766, -0.53808594, -2.71875, 0.09411621, 1.9599609, -2.7617188, -1.1914062, 0.70751953, 0.54248047, -0.98339844, 2.3203125, -0.6279297, -1.8789062, 0.4807129, -0.75439453, -0.41796875, -0.96728516, -0.50927734, -0.31689453, 0.4892578, 1.8789062, -1.8759766, -2.1425781, 1.4746094, -0.45874023, 0.55078125, -1.4599609, -1.6054688, -1.8779297, -0.96972656, -0.45043945, 0.2454834, 0.8798828, -1.6904297, -0.47924805, -0.7651367, -1.8515625, -2.3613281, -2.8457031, 3.671875, 0.28051758, -0.3334961, 1.8173828, -1.8105469, 0.7998047, -2.6191406, -2.7851562, -0.78808594, 2.6972656, 2.0410156, 0.61035156, -0.38598633, -0.08343506, 0.98291016, 0.88378906, -0.42651367, -0.4296875, 0.3852539, -0.46557617, 1.2353516, 1.6181641, 0.013587952, 0.34350586, 0.19970703, 1.9150391, -1.1210938, 0.9819336, 0.56396484, 0.6386719, -2.4921875, -0.43115234, 2.3222656, 0.036865234, -0.20861816, 0.9863281, -1.0917969, 3.5117188, 0.24743652, -0.69433594, 3.4902344, -1.4541016, -0.7885742, -2.4335938, -1.4423828, 1.1982422, -0.23083496, 2.1445312, 0.23120117, 0.6274414, 1.96875, 1.7744141, -0.9760742, -0.44384766, 0.61035156, 0.4724121, -1.5224609, -0.8022461, -0.89501953, 0.22473145, 1.0966797, -2.5390625, 1.0029297, 0.8178711, -2.3808594, 0.1694336, -0.36572266, -2.0410156, 0.88427734, 0.5908203, -2.7851562, 0.034210205, 0.4638672, 1.4150391, 1.9394531, 0.9404297, 1.3740234, 0.9086914, -0.9448242, 3.2539062, -0.12475586, 4.1054688, -1.328125, -1.0576172, 1.2705078, -1.5957031, 0.17077637, 0.47851562, -0.2980957, 0.12133789, -1.4355469, 0.5527344, 4.6328125, -1.1494141, -0.5205078, 0.5673828, -1.1220703, 1.6142578, -0.92333984, -1.7724609, 0.1842041, 0.21252441, 1.2060547, 1.0175781, -0.21032715, 0.9394531, -2.3378906, -0.40405273, 2.0742188, -2.8828125, 0.12866211, 0.013710022, 0.0059013367, 0.13293457, -0.8300781, -1.3066406, -2.6289062, -1.3398438, 1.1816406, -4.1445312, 1.6660156, 1.0644531, 1.8642578, 0.86621094, -1.3544922, -1.8779297, 1.1738281, 2.6289062, -2.3867188, 1.4091797, -0.6791992, -0.03250122, -0.3996582, -2.4121094, 1.1826172, -3.9199219, -1.5488281, -1.4619141, -0.47875977, 0.16992188, -0.9448242, -1.8193359, 0.9707031, 2.7265625, -1.6953125, -0.17138672, -1.5214844, -0.82714844, -0.43481445, 2.5371094, -1.3613281, 0.14172363, 0.76123047, 1.0273438, -1.2753906, -3.2050781, 0.29882812, -0.070739746, 0.55078125, 0.4724121, -0.5332031, -1.1630859, -1.7099609, 0.5019531, -0.0044555664, -2.0507812, 0.94384766, -2.046875, -0.8364258, -2.859375, 1.8789062, -2.2539062, 0.80810547, -0.00025582314, 0.2286377, -1.4257812, -1.7041016, 1.4003906, -0.28295898, 5.2578125, 0.23669434, 2.5996094, -0.7783203, -0.80615234, -0.25732422, -1.3037109, -2.8066406, 0.50927734, -2.2792969, -1.0136719, -1.1699219, -3.4511719, 1.53125, -2.359375, -0.1685791, 0.32080078, 0.25073242, -0.8676758, 0.34838867, -0.51953125, 1.1884766, -1.7148438, -0.00983429, 0.047058105, 2.2246094, -1.109375, -2.140625, 0.49389648, -2.1367188, -0.052978516, 1.2724609, -0.38916016, 1.4746094, 0.37451172, -0.5625, 2.0566406, 2.0957031, -4.9726562, 0.012550354, 3.3496094, -0.8129883, 1.9746094, -1.8623047, -2.4003906, -2.5625, 0.35888672, 2.3730469, -0.23425293, -0.29760742, 0.84814453, 0.05441284, 0.38916016, 0.36254883, -0.07220459, -0.04727173, -0.012107849, 2.3457031, -2.140625, -2.0410156, 0.39135742, 3.21875, -3.1933594, -0.26123047, 1.9755859, 1.7460938, 0.12432861, 0.11968994, 0.3803711, 0.72021484, 0.57128906, 0.6484375, 1.6298828, 2.5664062, -0.78564453, -0.019821167, 2.828125, 1.3876953, 1.28125, 1.8564453, 0.7426758, 0.2310791, 1.4921875, -0.8413086, -1.5888672, 0.6074219, -0.014846802, 1.0458984, -0.5292969, 2.078125, -1.5791016, -0.83984375, 0.42016602, 1.1992188, 2.2988281, -1.7861328, 0.77978516, 1.8896484, -0.9526367, -1.1582031, -1, 0.38305664, -0.6411133, -0.9614258, 0.62402344, 0.5917969, 0.7324219, 2.0136719, -0.82177734, 0.44213867, 0.82714844, 2.2011719, -2.2089844, -2.8886719, 0.41259766, 2.828125, 0.65234375, -1.2646484, -1.3535156, -2.078125, -0.95410156, 3.8925781, -0.9277344, -0.484375, -1.703125, -1.8945312, 1.3935547, 0.80859375, 0.19519043, 0.7763672, 0.22888184, -0.35498047, -0.049041748, 1.5175781, 0.1439209, 1.046875, -2.7421875, 0.48242188, -1.0830078, -1.0009766, 1.5322266, -0.7373047, -0.8701172, 3.6269531, -0.85253906, 0.38476562, -0.82910156, 3.3339844, -0.75146484, 0.10925293, 4.0039062, 0.31591797, 0.5253906, -2.046875, -3.5371094, 0.07055664, -2.0976562, 0.5830078, -0.25683594, 0.48754883, 0.079589844, 1.1464844, -0.20715332, -4.1132812, -1.7773438, -2.0664062, -0.13452148, -2.5957031, -1.0478516, -0.63134766, 1.3935547, -1.9189453, -1.3789062, 0.3178711, 0.51904297, 1.3701172, -0.10418701, -0.55371094, 0.5053711, -2.7910156, -0.36938477, -0.2565918, -0.12286377, -0.81640625, 0.5913086, 0.08251953, -0.13293457, 2.0507812, 0.14294434, -0.8930664, 2.3886719, 2.7714844, 1.7011719, 0.3630371, 2.4238281, -0.3322754, 4.0664062, 0.3996582, -2.0410156, -1.2392578, -0.32080078, 2.4042969, -0.82177734, 0.71777344, -0.05545044, -2.3144531, 0.7685547, 1.4003906, 1.75, 1.5029297, 0.5463867, 0.22375488, 0.19433594, 0.16003418, -1.7617188, -0.4086914, 0.40112305, 0.28466797, -1.9453125, -0.52490234, -1.7548828, 0.49951172, -1.3769531, -0.27001953, -0.6196289, 1.1503906, 2.3359375, 1.7675781, 2.6835938, -3.3847656, -1.1083984, -0.44018555, -0.77490234, 0.86572266, 0.26293945, 0.68310547, -1.3652344, 3.0371094, 0.99560547, 0.36499023, 0.11810303, 1.6777344, -0.22753906, -0.97265625, -0.6123047, -1.2236328, -2.3710938, -0.06173706, 1.0224609, -1.9150391, 0.9086914, -1.0009766, -0.04055786, -1.078125, 1.0595703, -0.69384766, 0.62939453, -0.57177734, -0.96875, 1.3378906, 2.328125, 1.2207031, 0.6230469, 3.6171875, 0.99121094, 2.0292969, 0.3942871, 0.6894531, -1.6923828, 0.42919922, -2.4492188, -1.4013672, 1.4150391, 0.7338867, -0.91015625, 1.7558594, 0.2331543, -1.6142578, 1.5898438, 1.2871094, -3.359375, -0.3918457, -0.43286133, -1.9521484, 0.98876953, 0.79248047, -3.3066406, -0.578125, 2.9492188, 0.37719727, 4.2773438, 0.70947266, -0.10821533, 0.9008789, -1.2177734, -1.1132812, -0.9765625, 0.75878906, -0.2578125, -0.48632812, 0.064697266, -1.4160156, 0.42333984, 0.7861328, 1.2060547, -1.1933594, 1.0449219, 1.1210938, -0.29052734, 1.109375, 1.2587891, 1.7675781, -0.89208984, 0.8144531, -0.484375, 1.9550781, -0.9008789, 2.28125, -2.5546875, -0.066589355, -1.4980469, 1.0126953, -3.0058594, -0.5073242, 1.3310547, 0.48486328, 0.06744385, -1.9003906, -0.91015625, -0.6533203, 1.6855469, 0.5517578, 0.032806396, -1.0351562, -0.78759766, -2.9941406, -0.31811523, -1.1152344, -0.27294922, -0.072631836, -0.033691406, -2.7578125, 0.15527344, -1.1103516, 2.3339844, -0.79052734, -0.35253906, -0.4404297, -1.25, -0.22216797, -1.3632812, 0.0904541, 1.1533203, -0.21276855, 0.8183594, -1.4736328, -1.5605469, -2.0683594, -0.17358398, 1.3945312, -2.1289062, 2.0644531, -0.17248535, 0.70751953, 1.1767578, 4.6054688, -0.7260742, -0.6376953, 1.5449219, -0.21557617, -1.1318359, 2.578125, -1.8134766, 2.3671875, 1.4179688, -0.63427734, 1.5234375, -0.9291992, 0.30566406, -1.1689453, 0.3630371, 0.7133789, -0.02406311, 0.45898438, 1.5761719, 0.69189453, -0.46777344, 1.3935547, 1.4521484, 0.07470703, -0.37060547, -1.7539062, -0.8305664, -0.9550781, -2.9394531, -0.12731934, -0.87646484, 0.14477539, 1.7236328, 1.1503906, 2.9042969, 4.2109375, 0.6303711, -0.7890625, 1.1220703, -0.33081055, 0.64990234, 0.2788086, -2.4707031, -3.2753906, -2.0058594, 0.42016602, 0.9428711, -0.84375, -0.7128906, -0.32617188, -3.2265625, -0.26513672, 0.4753418, 0.7988281, 2.8007812, 1.5966797, -2.1328125, 0.76416016, 2.4199219, -0.61083984, 1.4785156, -0.21411133, 2.2265625, -0.9355469, 2.0625, 3.7285156, -0.9584961, 0.9638672, -0.71484375, -0.06964111, -1.6357422, -0.3569336, 0.82177734, -2.3632812, -0.68115234, -1.0166016, -1.0380859, -1.2753906, 1.3359375, 1.3417969, 0.2512207, 0.52197266, -1.0068359, 0.55029297, 0.69384766, 0.7036133, 0.08154297, 0.014793396, -1.6806641, -1.4101562, 0.70751953, 1.7128906, -0.5644531, -1.8105469, 0.22290039, -1.0449219, -1.5400391, -0.51904297, -1.5927734, 1.2607422, 0.90771484, 3.2578125, -0.34399414, 0.96533203, 2.0664062, -0.31958008, 0.5058594, 1.0693359, -0.7807617, -1.1552734, -0.38867188, 3, 0.061920166, -0.13928223, 0.5292969, 1.3203125, -1.8203125, -0.118774414, -3.0800781, 0.88378906, -3.609375, 1.8046875, -0.040863037, 0.6333008, -1.4296875, 1.7841797, -0.7270508, 0.9765625, -0.5488281, -2.0664062, 1.2167969, 2.1992188, 1.6738281, 1.5712891, -0.015609741, 1.1884766, -3.1035156, 0.51953125, 0.58251953, -3.2324219, -0.89208984, 4.421875, 2.9492188, -0.47509766, -1.2021484, 1.5917969, -0.02671814, 0.6616211, -0.2166748, -0.051818848, -0.3178711, 0.61572266, 2.1933594, 0.9042969, -1.1953125, 0.97753906, -0.1361084, -1.8066406, -2.4628906, 1.3378906, -0.0042877197, 1.3046875, 1.6503906, 0.51171875, 2.15625, 0.34838867, 2.3105469, -3.5957031, -0.022628784, 1.7568359, -0.55810547, -1.5566406, -0.7675781, 0.9326172, 0.7451172, 2.2519531, 0.10632324, 1.0458984, 0.74658203, 1.9433594, 1.1015625, 1.5537109, -0.90234375, 0.114868164, -0.83154297, 1.9482422, 1.1259766, -0.99316406, -0.99121094, 2.7109375, 2.8300781, -0.024887085, 1.4472656, -2.7460938, -0.7861328, -0.7714844, -1.6279297, -1.2216797, -0.60839844, -2.4726562, -0.59375, 0.26464844, -0.44750977, -0.5571289, 1.0166016, 1.4980469, 0.13061523, -0.9741211, 3.0917969, -2.3398438, 0.15014648, 0.21716309, -0.36669922, -0.11218262, 0.42797852, 0.6196289, 0.75097656, -1.5146484, 0.70947266, 1.5996094, 0.296875, 0.072509766, 1.5478516, -0.45996094, 0.5605469, 0.17687988, 2.8808594, -0.90771484, 0.28100586, 1.65625, 0.18322754, 0.35717773, 0.8676758, -0.066711426, -1.3349609, 0.53222656, -3.0175781, 0.40039062, 1.1484375, -2.2304688, 0.16308594, 3.703125, 0.83154297, 0.076538086, -1.7900391, -5.0703125, -1.6611328, -0.027633667, 2.4277344, -0.9663086, -1.0820312, 0.2421875, -0.58251953, 2.5195312, -0.1850586, 0.22009277, -0.16784668, -0.18884277, 1.0947266, -1.5332031, 4.5195312, -0.984375, 1.7949219, -0.57714844, 1.9228516, 1.3417969, -0.26293945, 0.7216797, 2.0917969, -0.08666992, -3.2402344, 0.02267456, -0.11419678, -0.17736816, 0.44604492, -2.2128906, -0.1550293, -1.8378906, -1.4345703, -3.2578125, 0.10723877]}, "B07FJQ3KNK": {"id": "B07FJQ3KNK", "original": "Brand: GasOne\nName: Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies\nDescription: The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.\nFeatures: \u2713 DUEL FUEL PORTABLE GAS STOVE \u2013 Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove\u2019s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED)\n\u2713 PREMIUM GOLD DESIGN \u2013 The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures.\n\u2713 SAFETY FEATURES \u2013 Gas One\u2019s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner.\n\u2713 HIGH HEAT OUTPUT \u2013 Gas One\u2019s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove\u2019s control knob.\n\u2713 AUTO PIEZO IGNITION \u2013 The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to \u201cspark\u201d an ignition with a click. Simple to use, and fitting for any and every outdoor setting.\n", "embedding": [-1.421875, 0.7373047, 1.5371094, 0.6777344, 0.20373535, 2.9199219, -0.3659668, -0.5961914, -0.118774414, 2.0761719, 1.3349609, 0.30419922, 0.25634766, -2.0546875, 0.86376953, 0.27124023, 0.37890625, 0.26367188, -1.2011719, 1.8769531, 3.6035156, -0.8725586, 1.59375, 0.058624268, -0.04336548, 0.6894531, 3.1601562, -3.9511719, 0.4765625, -0.42529297, 1.8496094, 0.7714844, -0.17822266, 1.9619141, -3.7265625, -0.24572754, -0.7709961, 0.027023315, -2.6855469, -1.5625, -2.1484375, -1.0595703, 1.6542969, -1.0058594, -0.07244873, 0.41967773, 0.8803711, -0.60791016, -1.6279297, 1.4335938, 0.8588867, 0.9663086, -1.6474609, 3.296875, -1.2431641, 0.50146484, -0.40771484, -0.69091797, 1.8867188, 0.9238281, 1.4804688, 0.28100586, -0.14807129, 0.22265625, -2.3574219, -1.0742188, 0.27368164, -0.15283203, -2.4960938, -0.013938904, 3.0605469, 0.07775879, -0.61035156, 0.020507812, -1.4267578, -0.11212158, -3.28125, 3.1289062, 2.6035156, 0.3996582, -0.6640625, 2.0410156, 0.9165039, 0.050323486, 1.8984375, 0.28125, -0.20825195, 0.7709961, 0.6176758, 1.3193359, -2.2265625, 2.0292969, -1.0751953, -3.0117188, 0.6298828, -1.3232422, 0.12005615, 1.1503906, 1.8642578, 2.015625, -0.91015625, 0.56591797, -0.0748291, 0.77246094, -1.3730469, -2.15625, 3.6484375, 0.72509766, -4.234375, 0.43188477, -1.5048828, -0.21325684, 0.7597656, -1.8798828, 0.54833984, 1.5410156, -0.1081543, -0.13195801, 3.8476562, -0.2548828, 4.28125, -0.5, 1.1308594, -2.2460938, 1.3916016, 1.2695312, -2.2050781, 0.99658203, 4.078125, 0.23901367, -1.0517578, 2.1679688, 1.0410156, -1.7773438, -0.06173706, -1.25, -1.6269531, -1.9951172, -4.21875, 0.80126953, -3.5214844, 1.5712891, 1.2148438, -0.89453125, -4.4726562, -0.85302734, -2.5703125, 2.3457031, 2.7011719, -0.56396484, 0.13000488, -1.9970703, 0.2133789, -2.7851562, 2.7695312, 0.40844727, -1.0556641, -0.4206543, 3.4765625, 2.2148438, -0.80371094, -1.9189453, -2.3515625, 0.03845215, 2.109375, -1.0390625, 1.1699219, 1.6279297, 0.124938965, 1.125, 0.73535156, -1.0556641, -0.90527344, 0.5839844, 0.64501953, -0.45898438, -2.4160156, 2.7949219, 0.62597656, -1.1074219, -3.609375, -3.1425781, 2.1679688, 0.6489258, -0.064208984, -3.2714844, 0.6035156, -0.8388672, -0.16357422, -2.2148438, -0.52734375, 1.484375, -0.29052734, 0.22680664, 0.23571777, -2.1386719, -1.6210938, -0.2849121, -1.1884766, 1.1933594, -0.29174805, -1.2265625, -0.86865234, 0.18151855, -3.1347656, -1.4580078, 1.2998047, -2.3417969, 0.49316406, 2.4707031, 2.21875, 0.9160156, 1.8994141, 0.8696289, -1.8564453, -1.6816406, 1.5273438, 4.5859375, 1.3603516, 2.421875, 0.79589844, -1.3017578, 0.037322998, 0.2919922, -0.28344727, 3.3417969, 1.5546875, -0.4958496, -1.2226562, -2.9980469, 2.0507812, 0.50634766, 0.6430664, -0.111816406, -0.3149414, 2.28125, 1.9150391, -0.3857422, -0.4970703, -1.3574219, -0.9458008, -0.6791992, -0.49121094, 1.0371094, -2.2167969, 0.6923828, 1.2958984, -1.1796875, 2.390625, -0.9394531, -0.9975586, 0.90185547, -0.12780762, 2.0429688, -2.6054688, -0.35620117, 1.7753906, 1.5576172, -0.91015625, -0.09088135, 1.5605469, 3.2714844, 1.4609375, -0.47851562, 0.6171875, -0.49536133, 1.5302734, 0.1895752, -2.2011719, 0.7080078, 0.36157227, 1.4677734, 4.0664062, -1.7910156, 2.2050781, 1.0253906, -2.3945312, 3.375, 0.81591797, 2.96875, 1.8154297, -0.62402344, 1.5302734, -2.0253906, 1.8876953, -0.20739746, 3.1015625, 0.47729492, -0.4802246, -1.1884766, 5.1289062, -0.4638672, -3.0234375, 0.54541016, -2.4667969, -0.78564453, 1.4697266, 0.18334961, 0.47216797, 0.21777344, -0.08959961, -1.1230469, -0.7993164, 0.24816895, -1.3535156, -0.4477539, -1.2988281, -1.6035156, 0.7626953, 1.5146484, -1.7109375, -1.4072266, -0.67285156, 0.015525818, -2.3847656, -0.48657227, 4.4726562, -1.4951172, 0.34692383, 2.4375, 1.3876953, 1.703125, -0.030639648, -3.0429688, -0.6113281, 0.45629883, 0.48266602, 1.8154297, -1.6113281, -0.25146484, 1.4277344, -2.171875, 0.7104492, -1.4501953, -1.4335938, -0.093811035, -1.9072266, -3.5859375, 0.82958984, -1.9902344, -2.5175781, -0.4345703, -4.640625, 1.9599609, -1.4101562, -2.4082031, 0.59814453, -0.16333008, -0.2133789, -0.94433594, 1.4814453, 1.9462891, 0.5410156, -2.9648438, -0.703125, 0.30664062, 1.5380859, -0.54345703, -0.9091797, 1.3583984, 1.25, 0.24401855, -1.0224609, 0.79296875, -0.5307617, -3.1035156, 0.5371094, -5.5898438, -0.61816406, -1.5048828, 1.1640625, 0.75341797, -0.23522949, -2.4160156, -1.8876953, 1.5634766, 0.44995117, 1.8789062, -0.60839844, 0.4177246, -1.171875, -0.26708984, -0.6113281, -1.7363281, -2.5898438, -0.39941406, 0.33789062, -1.8115234, 1.0136719, -1.5078125, 1.8339844, -0.8466797, -0.42236328, -1.6699219, -0.22680664, -1.359375, 1.2138672, -1.2148438, -1.4443359, -0.2644043, -0.45117188, -0.27856445, -5.078125, -1.1894531, 0.015083313, -2.1679688, 0.10595703, 0.03805542, 0.14672852, 0.7626953, 0.5234375, 1.453125, 0.5571289, 0.31469727, -0.5605469, -4.4101562, 3.2871094, 0.66064453, -1.6015625, 0.58447266, -1.9287109, 0.12609863, -1.4316406, -0.83935547, 1.8066406, 1.2958984, 3.4746094, -0.6557617, 0.15979004, 1.2119141, 1.9169922, 0.06713867, -2.5546875, -1.1416016, 3.234375, -2.9394531, -2.2089844, 1.0214844, 2.1679688, -2.8945312, -0.80859375, 0.16711426, -0.36254883, 1.3691406, 0.9291992, -1.3730469, 0.15441895, -0.5024414, 0.37646484, 1.9423828, 1.53125, 2.0292969, 0.26782227, 1.4472656, -0.81347656, -0.061553955, 1.6181641, 3.3925781, 1.5, 0.9091797, 2.1523438, -3.0917969, 0.23010254, 0.4555664, 0.95214844, 1.2285156, 4.1679688, 0.34838867, -0.6201172, -2.1542969, -0.44677734, 1.4589844, -0.96777344, 0.9926758, 0.19311523, 0.57666016, -0.3166504, 0.38598633, -0.8774414, 0.0026245117, -2.1484375, 3.1679688, -0.10870361, -0.3828125, 1.5546875, -1.3076172, -0.37280273, -1.9658203, 1.3085938, -1.2373047, 0.6020508, 0.91308594, 0.46850586, -3.2714844, -1.8144531, -1.1113281, 0.19421387, 0.25683594, 3.9589844, -1.2304688, -2.7792969, 1.8554688, -0.86572266, -1.0078125, 3.4824219, -0.9526367, 0.37597656, -2.609375, 0.6401367, -0.3774414, -1.5224609, 1.6591797, 1.3232422, -2.2089844, 2.046875, -3.125, -0.8925781, 2.3398438, -2.7441406, 0.12988281, 1.6171875, -0.63720703, 1.6142578, -2.1875, 4.0078125, 0.33935547, -2.4746094, 2.8046875, -4.0546875, -0.018432617, -1.8515625, -4.015625, 2.0605469, -0.24853516, -0.68359375, 3.7089844, 1.0068359, -0.33203125, 1.1386719, 0.22851562, -1.5009766, -1.3935547, -0.58691406, 0.88427734, -3.21875, 0.030151367, -1.7216797, 0.80566406, -1.9121094, -0.6069336, 0.30322266, -0.703125, 0.034454346, -0.4658203, -2.7773438, 0.52490234, -2.7636719, 1.3740234, -0.11340332, -1.140625, 0.27172852, -1.4345703, -0.13146973, -2.015625, 1.4863281, 2.0507812, -0.20324707, -1.2119141, 2.6210938, 1.8378906, -1.8046875, -0.47631836, 0.50683594, 1.828125, -0.14807129, -2.4160156, -2.2128906, 0.64453125, 0.28466797, -0.48999023, -0.061584473, -2.4921875, -2.1699219, 3.2636719, 1.5322266, 2.4746094, 2.0390625, 0.5800781, -1.3867188, 0.5341797, -0.62939453, -2.5546875, -1.9179688, -0.52246094, -0.78564453, -0.97509766, -1.8144531, -1.9433594, -0.16882324, -1.5800781, -0.5439453, -2.09375, 1.2304688, 0.7241211, 0.29370117, 1.5009766, -1.0625, -1.2050781, 0.6513672, -0.13171387, -0.81884766, 1.6474609, -0.54248047, 0.69970703, 2.234375, 0.15258789, -1.3730469, -1.4121094, 3.6132812, -0.7553711, 0.81396484, -1.2177734, 1.1152344, -1.7216797, -0.9589844, -0.35107422, -0.083862305, 1.1064453, -1.4638672, 1.3339844, 0.27294922, 1.0507812, -3.0449219, -0.8857422, 1.3398438, 1.3759766, -0.007949829, 0.9428711, 1.7431641, -1.4384766, 0.9741211, 0.08215332, 1.5673828, -1.1201172, 0.08569336, 1.171875, 2.140625, -2.8320312, -0.7421875, 2.875, 2.5917969, 1.1640625, 2.7910156, 1.5117188, -0.061584473, 1.3017578, -0.56884766, -1.6660156, 0.10913086, 0.47753906, -0.25439453, 2.4824219, -0.5395508, -1.9990234, 0.38916016, 4.3007812, -0.52685547, 1.453125, 0.97558594, -2.4511719, -0.19750977, -3.6757812, -0.7050781, -1.4121094, -0.45263672, 0.22265625, -1.6972656, 1.1708984, 0.4260254, 2.5878906, 2.9648438, -1.4042969, 0.047943115, 1.734375, -1.1425781, 2.0625, 1.2285156, -0.5878906, -4.2109375, 2.1992188, 1.453125, 0.55810547, 2.0351562, 1.0908203, 1.7509766, -2.0507812, -0.40405273, -1.1074219, 0.5629883, -2.4765625, -1.5791016, 0.87158203, -0.9057617, 1.1435547, -0.11352539, -0.28588867, -0.40429688, 1.7617188, 0.047576904, 1.6904297, -1.1113281, -0.30639648, -2.9316406, -4.59375, -1.6357422, 1.2636719, -0.045776367, -1.0869141, 0.27905273, -1.0224609, 0.73095703, 1.2421875, 0.7084961, -2.5273438, 0.58691406, 0.42016602, 0.8569336, -2.0722656, -0.18701172, -0.8095703, 1.0927734, 1.2910156, -0.5415039, 0.39819336, -0.89160156, -0.97998047, 0.12335205, -0.8642578, 0.51171875, -0.67333984, -1.1738281, -2.5527344, 1.0830078, -1.1503906, -2.4414062, 1.5556641, -1.765625, -0.37451172, 0.99902344, -0.8647461, 1.2841797, 1.8017578, -0.74560547, 1.3945312, 0.43066406, 1.3066406, -1.6308594, 1.8681641, 1.5078125, 1.3486328, -1.1904297, -2.0546875, 1.8662109, 0.28320312, 1.2382812, 2.5117188, -0.3581543, -0.091430664, -2.6191406, -0.7348633, -0.6928711, -0.91796875, -0.3828125, -0.20275879, 0.85595703, 0.37670898, 0.61816406, -0.62646484, -0.6533203, -0.09259033, -0.7739258, 0.68847656, -2.2480469, 4.5820312, 0.04144287, 0.15270996, -2.2539062, -2.4550781, 2.1875, 0.67089844, 0.59228516, -0.7817383, 2.2421875, -0.3227539, 1.7568359, -1.0595703, 2.6855469, 2.3671875, 1.3857422, -1.0693359, 2.4140625, 3.6582031, -0.2211914, 1.6533203, 0.17126465, 0.054718018, -0.5185547, 2.328125, 0.75683594, -0.7104492, 2.0351562, -0.40283203, 2.2578125, 0.011367798, -1.9960938, 2.4042969, 0.3552246, -0.8779297, -1.4560547, -0.5024414, -2.0585938, 2.1210938, 2.8730469, -1.8056641, 0.11029053, 1.421875, 0.3190918, 0.38330078, 2.2792969, 2.1640625, -2.9335938, 1.1904297, -0.19055176, 0.16601562, 0.55908203, -0.46728516, -0.7055664, 2.5820312, 1.1425781, 0.8364258, 3.4902344, 0.32861328, 3.3691406, 2.4199219, 1.2929688, 2.7363281, 1.5976562, 1.3828125, 1.2421875, 0.5473633, 2.4824219, -0.8671875, 0.546875, 1.1396484, 1.5957031, -0.35668945, -0.28710938, 1.7148438, -0.39331055, -2.0195312, -1.4550781, -0.024337769, 1.5722656, -4.4101562, -0.6464844, 1.0039062, 1.0615234, -1.5644531, 0.47485352, -1.7773438, -0.046844482, 0.46728516, -0.023773193, 0.34375, -0.7763672, -2.6835938, -1.640625, -0.58447266, 2.078125, -1.0009766, 0.47802734, -2.2167969, -2.765625, -0.18603516, 0.25952148, 0.20605469, 0.6010742, -0.5957031, 2.3828125, 1.3876953, -0.87158203, 1.1220703, -3.28125, 0.54003906, -0.112854004, 4.265625, -0.26245117, -0.44921875, 1.9208984, -0.6777344, -4.3554688, -3.8613281, 0.97998047, 1.1748047, 1.8740234, 1.8476562, -2.5390625, 2.8828125, 0.77783203, 1.3017578, -3.7363281, 0.5131836, -0.44262695, -0.36450195, -1.2949219, 1.6621094, 0.12585449, 3.5253906, 0.12817383, -1.8720703, -0.20117188, 0.24487305, -0.11102295, -0.9272461, -0.5566406, 0.49414062, 1.6962891, -1.2773438, 2.1953125, 0.97265625, -1.8574219, -0.9379883, 1.4902344, 2.5742188, -0.028640747, -0.23486328, -2.0332031, 1.4179688, -0.84375, -0.19226074, -0.6772461, -0.7871094, -2.2734375, -1.2324219, -1.7226562, -2.1699219, -2.9824219, 1.4130859, -1.7382812, -3.625, -0.37280273, 1.2060547, -0.6723633, -0.5683594, 1.640625, -0.20080566, 1.4580078, -1.2441406, -0.86279297, -1.890625, -1.5507812, 0.19787598, -0.7792969, 0.95214844, -2.1328125, 1.8681641, -0.7373047, 0.72802734, 1.4335938, 1.1533203, -0.1315918, -0.7426758, 0.77441406, -0.6279297, 1.2851562, 3.3886719, -1.5625, 0.16662598, 1.71875, -2.3652344, -0.5361328, -1.6640625, -0.16760254, 0.19445801, 1.6982422, 1.9101562, 1.5078125, -1.5888672, -2.1855469, -0.16088867, -4.078125, 1.3291016, -0.048339844, -0.83496094, 0.9145508, 2.1777344, 2.4824219, -0.6933594, 0.8652344, -2.0058594, 1.9726562, -0.5864258, -1.8115234, 0.26489258, 0.8022461, -0.9902344, 0.83984375, 1.7607422, 3.1894531, -0.7529297, 1.0322266, 0.93066406, -0.1027832, -2.7636719, 1.6708984, -3.2363281, -0.48266602, 0.6376953, -0.47851562, 3.3046875, 0.65771484, -0.084106445, -2.3457031, 0.028015137]}, "B088HCDXVP": {"id": "B088HCDXVP", "original": "Brand: Smaid\nName: Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill\uff0cEasy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black\nDescription: 1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG's non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.\nFeatures: 100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500\u2109, Keep your family safe while enjoy delicious grilling food.\nMULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need.\nNO MESS - With our grill mats, you won't have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze!\nEasy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don't waste your time scraping the \"crud\" off your grill - get back to enjoying the BBQ with your friends and family!\n", "embedding": [-0.3623047, 1.3789062, 1.7626953, -0.73828125, -0.13122559, 1.2587891, 0.38012695, -0.3918457, 1.4169922, 1.7734375, -1.7460938, -0.8232422, 1.2324219, -3.3828125, 0.19482422, -1.0380859, 0.4272461, 2.0449219, 2.828125, 1.6152344, 0.9628906, 0.32861328, 0.6088867, -1.8330078, 1.5986328, 0.28686523, 2.4238281, -0.8276367, 0.27172852, -0.17736816, 2.0820312, 1.1152344, -0.32006836, 2.5, -3.8710938, -1.4560547, -0.9897461, 2.4785156, -0.40454102, -1.5126953, -0.7871094, -3.3574219, 0.7939453, 1.3847656, -2.6914062, 1.5195312, 0.42529297, 1.8193359, 0.33251953, -4.0585938, 1.4189453, 0.23901367, 2.796875, 0.5605469, -2.6953125, 2.0878906, -0.65527344, -1.7333984, 1.0771484, 0.5258789, -0.01234436, -0.9633789, -0.6748047, 1.1416016, 0.20495605, -3.1347656, -0.036865234, -2.2832031, 0.053741455, -2.6113281, -0.80908203, -0.7685547, -0.88671875, 1.7763672, -0.53808594, -0.12042236, -0.6328125, 0.30297852, 0.6015625, -2.1621094, -0.24865723, 2.0078125, 0.14233398, -0.97265625, 0.06500244, -1.4863281, -2.1992188, -0.90966797, 2.1816406, -0.13659668, 0.34838867, 3.0722656, -1.4746094, -4.1171875, 0.35961914, -2.7421875, 1.8496094, -0.6376953, -0.703125, 1.4208984, -2.2890625, -0.10839844, -0.38085938, 2.3964844, -3.6640625, -3.1738281, 2.140625, 0.77783203, 0.8496094, 0.97802734, 1.2880859, 0.9667969, -0.10040283, 0.79248047, 2.4003906, 0.9663086, 0.5283203, 0.054840088, 1.9541016, 1.9765625, 3.7480469, 2.0253906, 0.19702148, -1.9599609, 0.40454102, -0.4243164, 0.14648438, 2.2402344, 3.2324219, -2.5722656, -0.2019043, -1.8759766, -0.93603516, -1.5048828, -1.0273438, -1.3828125, -0.1763916, -0.22387695, -3.4609375, 1.4755859, 0.13122559, -2.0253906, 1.5585938, -2.1582031, -2.5136719, 0.4716797, -2.25, 2.8515625, -0.9550781, -2.0039062, -0.2524414, -0.31958008, 2.9140625, -1.1494141, 1.4023438, -1.0908203, 1.0029297, 0.171875, 1.6435547, 2.4570312, 1.2001953, -2.7382812, -1.9941406, -0.66259766, 1.8857422, -4.0546875, -1.1962891, 0.54785156, -0.35375977, 2.4726562, 0.03564453, -2.0117188, 0.66552734, 0.3305664, -0.0029010773, -0.15075684, 0.80322266, 2.2285156, -0.5961914, -1.1035156, 0.9355469, -3.5078125, 0.07287598, 0.89746094, -1.2675781, -1.0537109, 1.0703125, -0.7348633, 1.0761719, -0.68847656, -1.0263672, 2.5644531, -0.40576172, 0.6484375, -2.4648438, -0.78564453, 0.0061187744, -2.0214844, 0.21911621, -0.6484375, -0.88964844, -1.0136719, -1.921875, 0.095947266, -2.3398438, -2.2929688, -2.0253906, 2.3808594, 2.2011719, 1.0966797, -0.3930664, -2.0175781, 1.9277344, 2.6796875, -0.796875, 0.04776001, 0.4020996, 0.21606445, 0.8330078, 2.4433594, -0.9633789, -0.49145508, -0.28759766, 3.5, -0.97998047, 2.1640625, -0.56884766, 1.7255859, -1.0449219, -1.9902344, 1.9775391, 0.44213867, 0.19897461, -1.3564453, -0.08337402, 2.3046875, 1.859375, -1.2685547, -1.5966797, 0.75878906, -1.9560547, -2.0703125, -1.9628906, -1.9072266, -1.8369141, -0.6274414, -0.18371582, 2.3320312, 0.8515625, -1.3193359, -1.2363281, 4.1210938, 2.2167969, 0.11706543, -0.97021484, 0.72802734, 0.5600586, -0.38305664, -2.8847656, 0.40673828, -1.4707031, -0.07647705, -0.15930176, 2.1601562, 1.375, -0.984375, 1.4384766, 0.47705078, -1.9892578, -1.0009766, 0.29858398, -1.5400391, -0.62402344, -1.4619141, 0.72558594, -0.22827148, -1.7177734, 0.9111328, 1.6113281, -0.76953125, -0.13391113, 2.2890625, 1.2011719, -0.9042969, -2.765625, 0.15270996, -1.0341797, -1.6787109, 1.6064453, -0.80029297, 4.03125, 1.8046875, -1.1884766, 2.546875, -0.124938965, 0.34570312, 2.8300781, 0.26538086, -2.3300781, -0.5449219, 0.70410156, 3.5625, -0.8613281, 2.171875, -1.0117188, -0.5800781, 2.4355469, -2.1113281, -0.9194336, 2.4472656, 0.74365234, -0.47143555, 1.4697266, 1.8583984, -3.0136719, -1.4921875, 1.0556641, 0.057617188, -0.5078125, -1.4755859, -1.6757812, -0.7426758, -0.6689453, -2.3378906, -1.21875, 1.7646484, 0.18261719, -0.109680176, 0.5595703, 1.046875, 1.0732422, -1.3027344, 0.080566406, 0.34570312, -2.2070312, -2.0859375, -2.5976562, -0.91064453, -0.8286133, -0.9013672, -0.34472656, 0.20324707, -2.1367188, 1.1445312, 0.11242676, -2.2929688, -1.8818359, -1.4179688, 0.17297363, 1.328125, -0.27539062, 1.0634766, -0.061462402, -3.6601562, -0.45141602, 0.94873047, 0.11352539, 0.8779297, -1.2597656, 0.390625, -0.045410156, 0.61376953, 0.8154297, 0.13671875, 0.69677734, 2.4609375, -3.4101562, -3.1660156, 0.26342773, -0.46020508, -0.5493164, -1.9716797, -0.27148438, -1.1826172, -1.1005859, -1.2871094, 1.0908203, 3.4433594, -0.1385498, 2.2636719, -1.9414062, -0.45410156, -0.037109375, 1.5576172, -1.0283203, -0.9536133, 0.85546875, -1.6835938, -0.88720703, -1.2460938, -0.95654297, -0.2800293, -0.31420898, -0.31103516, 2.9511719, 0.5488281, 3.6328125, -3.234375, -0.3112793, -0.6796875, 1.6025391, -0.63671875, -0.48999023, -0.88427734, -0.86328125, -1.0966797, -1.4775391, 0.3798828, 0.32763672, -1.6210938, 0.7441406, 1.0263672, 0.39770508, -0.4020996, 0.09051514, -0.20397949, 0.7133789, -1.5976562, -1.7919922, 1.0166016, 0.6435547, -1.2744141, -1.2958984, -2.2050781, 3.2441406, 0.15551758, 0.8027344, 0.6904297, 0.79541016, 3.3417969, 0.9589844, 1.1269531, -1.2519531, 1.6660156, -0.08496094, -0.6113281, -1.0400391, 2.1152344, 0.69921875, -2.0976562, 1.5234375, 1.4462891, 1.7412109, 1.3144531, 0.020355225, -0.80322266, 0.026031494, -0.5932617, 4.1914062, -0.27246094, 0.8173828, -1.484375, -0.5229492, 0.2783203, 0.88134766, 3.4550781, 1.4248047, 1.2089844, -0.10253906, 0.8339844, -1.5429688, -3.671875, 0.20568848, 1.796875, -0.022201538, -1.5351562, 0.74121094, -0.36401367, 0.58984375, 4.625, -1.078125, 1.7177734, -2.5429688, -0.07055664, 0.90966797, -0.69433594, -0.5307617, -1.8574219, -1.8974609, -0.26293945, -2.5527344, 1.0400391, -2.3339844, -2.2988281, 1.3691406, -2.2324219, -4.2421875, 0.9213867, 3.3222656, -0.8222656, -1.296875, -1.3623047, 2.2988281, -1.6904297, -0.6953125, -0.7163086, 1.6982422, -0.35083008, 2.0917969, -0.09277344, -0.23425293, 2.6757812, -2.4804688, 1.2167969, 0.74072266, -2.2617188, -1.5595703, -1.9052734, -0.17480469, 1.0097656, -0.73046875, 0.7011719, 1.8876953, -1.1738281, 0.08081055, -2.7851562, 0.78027344, 1.5615234, -1.7109375, 0.26171875, 1.1503906, 1.9746094, -0.27172852, -0.007598877, 4.7695312, 1.8251953, -2.2226562, 0.18078613, -3.1582031, -0.89404297, -0.40356445, -1.9814453, -0.0038318634, -1.1191406, -1.3632812, 2.9550781, 1.1787109, 1.7060547, 3.1855469, -0.7631836, -1.1777344, 0.24731445, -2.6523438, -0.95996094, -0.55615234, 0.9550781, 2.671875, 1.0634766, -0.25073242, -0.1538086, -1.4121094, -1.0673828, 0.9472656, -0.58935547, 0.8100586, -0.4243164, -3.0761719, -0.2631836, -0.28149414, 0.72998047, -1.5732422, -0.59228516, 0.34472656, 0.3232422, 2.796875, -1.4472656, 1.3662109, -0.9975586, 0.15612793, -0.9091797, -1.0683594, -0.5258789, 0.18395996, 2.4101562, -1.5615234, -1.7294922, 0.45532227, -0.34057617, 1.7880859, -1.2900391, -1.8105469, 0.9140625, -1.5810547, 0.6723633, 0.14074707, 2.40625, 0.29956055, -1.1191406, -1.7734375, -0.8276367, -0.15795898, -2.78125, -1.9179688, -1.3691406, -1.6933594, 0.86376953, -0.81396484, -2.2304688, 2.2714844, -0.33618164, 0.3503418, -2.0410156, 2.4042969, 0.033599854, 0.5107422, 5.8164062, -3.3046875, 0.59375, 1.609375, -3.0976562, -0.9350586, 0.85302734, -0.9838867, -2.2558594, 1.5146484, 1.9492188, -1.5410156, -1.8896484, 0.2932129, -0.2265625, -1.4375, -2.4472656, 2.4746094, -0.7988281, 0.5292969, 0.92333984, 0.12841797, 2.6503906, -0.82177734, 2.9453125, 3.2890625, -0.8964844, -0.32543945, 0.86572266, 0.9511719, 0.13134766, 1.0283203, 2.0898438, 1.2802734, -1.3359375, -1.015625, 0.20275879, 1.2958984, -3.7714844, 1.6865234, 0.37548828, 1.5273438, -1.5166016, -0.9140625, 1.9433594, 2.1855469, -0.17810059, 1.4296875, -1.2138672, -2.0292969, 1.3125, 1.6132812, -0.69677734, 1.6367188, -0.25732422, -0.9350586, 1.5771484, -1.8212891, -1.6484375, -0.29956055, 0.30004883, 0.8076172, 0.45361328, -1.0146484, 0.8823242, 2.1894531, -1.0048828, -1.0634766, 0.0077056885, -1.4023438, 0.7080078, -1.0830078, 0.76953125, -0.026550293, 0.10974121, 4.015625, -1.7851562, -1.2363281, 2.3632812, -0.8413086, 0.43579102, -0.34838867, -2.2890625, -3.1757812, -0.83447266, -1.7099609, 1.1611328, 1.9833984, 0.4975586, 0.43774414, -1.734375, 1.4238281, -2.7539062, 1.3369141, -1.5654297, -0.7963867, 4.3867188, -4.8007812, 0.98095703, -0.57373047, 1.6503906, 1.4091797, 0.96777344, 2.7402344, -1.0585938, -1.4423828, 0.38354492, -1.5087891, -1.3476562, -0.27319336, -0.16027832, 0.43188477, 0.14648438, -0.075805664, -0.1986084, 0.015563965, 1.6523438, 0.7026367, 2.4257812, -0.21325684, -0.3623047, -1.4179688, -1.7480469, 0.1439209, -0.61376953, 0.39038086, -0.3071289, 4.5546875, -0.39819336, -1.671875, -0.86279297, -0.0053482056, -3.2089844, -1.5712891, 1.0693359, -0.26831055, -0.2541504, 0.0690918, 0.08807373, -0.6694336, 2.3476562, 0.37329102, 0.8041992, 2.0253906, -0.37841797, -1.0029297, -0.41577148, -4.171875, 1.4755859, -3.171875, 1.1298828, 1.2480469, -3.2167969, 1.2724609, 2.7304688, -1.8740234, -0.6347656, -0.2878418, 0.49975586, 1.4443359, 0.8066406, 0.23474121, 0.6586914, -2.5800781, -2.734375, 1.2265625, -1.2490234, -1.7685547, -1.2607422, 0.091674805, 2.0117188, -0.30493164, 1.875, 1.0429688, 0.93066406, -0.54785156, 0.8959961, -0.2763672, 0.7680664, 0.42114258, 0.5864258, -1.3671875, -2.03125, 1.8515625, 1.4326172, 1.4677734, 1.7041016, -1.8125, -2.5957031, -1.0869141, -0.05722046, 0.96972656, 3.7695312, 0.9428711, -0.2434082, -1.3642578, -0.15039062, -2.2597656, 2.5976562, 2.046875, 4.3789062, -2.0996094, 4.6601562, -0.4741211, -4.3632812, 2.1347656, -1.3925781, -0.4494629, -0.045928955, -1.4335938, -0.37670898, -1.5800781, -2.6132812, -1.0195312, 0.39379883, -1.9511719, 2.3886719, -0.3215332, -0.29882812, -0.40161133, 3.6386719, -0.03665161, 2.4316406, 3.8535156, -0.06842041, -0.21850586, -0.77978516, -2.2207031, -0.093688965, 0.39331055, -1.5712891, -0.94384766, 0.71728516, -0.8261719, -0.69970703, 0.52734375, 1.0068359, 0.88134766, 0.9238281, 2.1542969, 4.3203125, 1.2060547, 2.3457031, 1.0009766, 2.0078125, 1.8505859, 1.328125, 0.36743164, 3.2617188, 0.3408203, 0.7128906, -0.8857422, 1.9697266, 0.27124023, -0.02130127, 0.35473633, 0.37719727, -0.30908203, -0.78222656, 1.328125, 0.75341797, 0.6166992, 0.5620117, 0.7368164, -3.3339844, -0.70214844, -0.8955078, -0.14233398, 3.4863281, 0.28125, 0.8847656, 1.3730469, 0.7988281, 1.96875, -3.6328125, 1.8544922, 0.9082031, -0.07006836, -0.5776367, 3.2460938, 0.38842773, 2.2109375, -0.47583008, -0.17687988, 0.7807617, 0.8378906, 0.89160156, 1.4414062, 0.9189453, -2.0703125, 0.7631836, -1.4580078, -2.5839844, -1.2490234, 0.19421387, -1.7246094, -1.5537109, -0.058258057, 1.5722656, 1.1806641, 1.4746094, -4.9296875, -1.0478516, 0.33081055, 1.3164062, -2.7089844, -0.26953125, -1.7119141, -3.265625, -1.7363281, 2.0117188, 0.81689453, 1.5068359, 1.0166016, -1.3007812, 1.3066406, 1.0849609, 1.4423828, 0.9267578, 0.3269043, -1.3769531, 2.0585938, -0.25268555, 3.6757812, 2.4003906, 2.1523438, -0.5444336, 1.0820312, 2.8574219, 1.1806641, 1.6259766, 0.9682617, -1.4912109, -0.8808594, 0.31054688, -0.95214844, -0.18481445, -1.8164062, -2.6796875, -0.032592773, -0.56689453, -2.2011719, -0.19848633, 0.35180664, 0.027786255, 1.7490234, 0.57128906, -0.81152344, 1.1904297, 2.2636719, -0.9785156, -0.91748047, -2.1425781, -0.20251465, -1.8974609, -0.5283203, 0.7939453, 0.8334961, 1.5839844, -0.7138672, 1.0117188, -0.46142578, 0.030151367, 0.63623047, 1.6191406, -1.359375, -2.3300781, 0.9716797, 0.11810303, 1.5849609, 1.7607422, -0.5493164, -1.3925781, 0.18334961, -2.4296875, -0.6635742, -1.0810547, -1.7509766, 1.2861328, 2.9101562, 2.7714844, -0.67822266, -1.4658203, -0.6123047, 2.0332031, -0.10827637, 2.3984375, -0.43603516, -2.1425781, -0.13244629, -1.3232422, 1.6972656, 0.7314453, -1.8496094, -1.4873047, -0.38110352, 0.6176758, -0.9584961, 0.26831055, 1.6347656, 0.29760742, -0.35375977, 2.6835938, 4.5546875, 0.5, 1.9521484, 1.6328125, 1.0439453, -1.4375, 0.09698486, 0.009796143, 1.4521484, 2.8320312, -0.19384766, -0.0022850037, -0.7573242, -1.4785156, -1.2802734, -0.3840332]}, "B091YNGC2Y": {"id": "B091YNGC2Y", "original": "Brand: iClanda\nName: BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs\nDescription: \nFeatures: \ud83e\udd69Greatly Fits Various Grills\ud83c\udf56: 58\"L x 24\"W x 44\"H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing.\n\ud83e\udd69600D Super Heavy-Duty Materials\ud83c\udf56: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant.\n\ud83e\udd69Distinct Design Features\ud83c\udf56: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use.\n\ud83e\udd69Wind-Resistant gas grill covers\ud83c\udf56: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away.\n\ud83e\udd69Hassle-Free Cleaning\ud83c\udf56: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.\n", "embedding": [1.0068359, 1.8007812, 3.0605469, -1.8769531, -0.7998047, 1.4619141, 1.0458984, -2.7167969, 2.2695312, 2.703125, -0.5649414, -0.45996094, 1.1650391, -5.1171875, 1.1845703, 0.9902344, 1.7988281, 2.5058594, 2.9921875, -1.4472656, 2.3300781, 0.32080078, 1.3046875, 1.1689453, 0.3684082, -0.36108398, 4.4570312, -3.2636719, -1.0908203, -0.7495117, 2.0371094, 0.5136719, 0.00060653687, 1.765625, -2.8867188, -1.5039062, -1.2421875, 1.7890625, 1.5244141, -0.5209961, -1.1162109, -2.4609375, 2.2734375, 0.96728516, -2.0664062, 1.1337891, -2.4277344, 0.22753906, -0.6044922, -1.9765625, 1.4404297, 1.9023438, 2.2714844, 0.87597656, -3.2949219, 2.6621094, -0.33789062, -1.5556641, -0.3190918, -0.88134766, 1.515625, -0.73535156, -0.93408203, 1.9355469, -1.2128906, -1.6533203, -0.0016765594, -1.2392578, 1.3515625, 0.6894531, 2.421875, -0.3334961, -1.3701172, -0.018692017, 1.1035156, -0.9213867, -1.3632812, 2.0117188, 0.59814453, -1.9462891, -1.0322266, 5.0039062, -0.32202148, -2.609375, -0.49047852, 0.24621582, -2.6816406, -1.8261719, 1.8085938, -1.5585938, -0.50097656, 2.0957031, -2.8867188, -4.3515625, 0.11444092, -3.1953125, 3.4453125, -0.01776123, 0.83447266, 0.35205078, -2.2988281, 0.3466797, -1.5927734, 0.2590332, -3.0273438, -2.0605469, 2.5605469, -0.8666992, 0.4650879, -0.7006836, -1.4902344, -0.6245117, -0.68603516, 1.3261719, 2.421875, 0.29077148, -0.53125, 2.0332031, 0.18847656, 2.0136719, 2.96875, -0.8613281, -0.7246094, -2.0058594, 0.5258789, -0.5576172, -0.2019043, 1.4355469, 3.1738281, -0.64990234, 0.9316406, -0.059417725, 1.6943359, 2.015625, -0.69140625, -0.34326172, -1.1914062, -0.17004395, -3.0097656, 2.8125, -1.2714844, -2.2109375, 1.4765625, -1.6435547, -2.8515625, 0.16259766, -1.1582031, 3.5585938, -1.7519531, -3.234375, 0.5625, -1.2001953, -0.50927734, -0.52734375, 1.2167969, -0.027175903, 1.6601562, -3.4628906, 2.8964844, 2.0703125, 2.4257812, -2.5019531, 2.15625, 0.9511719, 2.203125, -1.8115234, -0.0054626465, 0.8041992, -0.36401367, 2.140625, 0.6489258, -1.4667969, 1.2353516, 1.0869141, 1.8085938, -1.4492188, 0.44311523, 0.8364258, -0.5834961, 0.3881836, -0.49438477, -1.6201172, -0.33618164, 1.2646484, -0.6152344, -0.9707031, 0.09729004, -0.12432861, 0.18945312, -0.81640625, -0.70410156, -0.037841797, -0.74658203, 0.23986816, -0.99316406, -0.83251953, -0.84716797, -0.39990234, -0.7363281, 0.05480957, -1.2070312, -2.0371094, -1.1845703, 0.703125, -2.7441406, -1.1308594, -1.0332031, -0.26123047, 1.3583984, 0.75927734, 0.21386719, -1.4189453, 2.4941406, 1.5683594, -1.5966797, 0.5029297, 1.4091797, -0.55322266, 1.2255859, 0.80078125, -1.2792969, 0.09234619, -0.2319336, 4.1328125, -1.0126953, 1.2275391, 1.4931641, -0.18310547, -0.81884766, -1.4931641, 0.96533203, 0.6035156, -0.08770752, 0.4111328, -0.78808594, 1.1425781, 0.08306885, -1.3886719, 0.2705078, -0.89160156, -1.8173828, -1.7353516, -3.7890625, -1.0556641, 1.4726562, 1.0996094, -1.2304688, 2.0214844, 0.9951172, -0.6899414, -0.17626953, 1.0712891, -0.48901367, 0.43701172, 0.31640625, 0.7597656, 0.5517578, 0.5551758, -1.4658203, -1.2226562, -0.8647461, -0.91064453, -1.1943359, 0.9472656, -0.15039062, -0.77197266, 0.087890625, 0.6699219, -2.09375, -1.6972656, 1.8671875, -0.76416016, -0.007259369, -2.0234375, 1.3662109, 0.15881348, 0.97753906, -0.36669922, 0.3881836, -0.6381836, 0.1508789, 1.1308594, 1.0654297, -1.7998047, 0.77001953, 0.24353027, -0.48828125, -1.7910156, -1.0820312, -0.49731445, 3.1425781, -0.2376709, -1.7636719, 3.796875, -0.6748047, -0.14526367, 1.2832031, -0.7011719, -0.70458984, 1.6943359, 1.0820312, 0.96191406, -0.98046875, 1.3867188, -1.5195312, -1.9082031, 0.84814453, -3.3320312, -2.1054688, 1.8574219, 0.93408203, -0.18395996, 0.080566406, 0.28442383, -2.4824219, -2.5214844, 1.1132812, -2.4335938, -1.1484375, 0.009239197, 0.2849121, 0.9399414, -2.1464844, -1.9433594, -0.73779297, 0.30444336, -2.4414062, -0.10992432, 1.3349609, -0.1472168, 0.03262329, -1.8623047, 0.64697266, -1.7998047, -0.93847656, -3.5585938, -2.9003906, -1.4541016, 0.62060547, -1.5693359, 0.46801758, -0.6147461, -2.28125, 1.1318359, 1.2753906, -2.9960938, -1.1621094, 0.8642578, -1.4726562, 0.9345703, -0.62890625, -1.1611328, -0.49975586, -4.4414062, 1.7949219, -1.1347656, -0.0039520264, -0.7480469, -0.5522461, 0.8417969, 0.7895508, 0.6748047, 0.29467773, 1.3427734, 1.8232422, 0.7836914, 0.13317871, -2.9316406, -0.3474121, -2.3320312, 0.45776367, -1.1269531, 0.74072266, -4.171875, -0.6933594, 0.90771484, -1.2851562, 4.078125, 0.23339844, 1.8515625, -0.66064453, -0.6196289, 0.8876953, -0.13305664, -1.8164062, 0.5576172, 1.9042969, -0.87890625, -0.54541016, -3.484375, -2.3242188, -1.7275391, 0.40625, 0.09277344, -0.81933594, 0.28466797, 2.2460938, -4.1679688, -1.3828125, -1.1337891, 0.99365234, -0.31225586, -0.7631836, -0.6616211, -3.3710938, -2.6679688, -0.26733398, -2.0957031, 2.0078125, -1.7285156, 0.1116333, 2.0097656, -0.75390625, 4.5195312, -0.14770508, -3.6816406, 0.8178711, 1.6171875, 0.17468262, 2.5214844, -0.32373047, -0.8671875, -1.0273438, 0.29125977, 1.8789062, 0.5620117, 0.49438477, 2.2695312, 0.8618164, 0.0769043, -0.5131836, 0.69921875, -0.39208984, 1.3828125, 2.9238281, -1.125, -1.5117188, 0.7734375, 0.59277344, -1.3779297, 0.6254883, 1.9121094, 1.1621094, 0.21679688, 1.2041016, 0.050079346, 1.2753906, -0.7319336, 2.1171875, -1.1445312, 2.3984375, -0.15185547, 0.05203247, 1.1162109, -1.3964844, 2.6132812, 2.1191406, 0.8828125, 1.4882812, 0.9580078, 0.38256836, 0.5136719, 0.76464844, 1.9648438, 1.3623047, -1.1884766, 0.8745117, -1.2548828, -0.60302734, 1.9824219, -2.7851562, 0.89160156, -1.0068359, -0.17248535, 1.8212891, -1.6835938, 0.42089844, -0.56933594, -0.8828125, -0.62841797, -3.0097656, -0.54345703, -1.8378906, -0.68310547, -0.22290039, -3.984375, -1.9130859, -1.7685547, 3.9472656, 0.65185547, -1.7246094, -0.859375, 1.9492188, -1.4560547, -1.7910156, 1.5224609, 2.7832031, -0.7495117, 2.2207031, 3.2167969, -0.79003906, 2.5527344, -3.5078125, 2.296875, 0.98583984, -0.7319336, -1.0908203, 0.29345703, 0.09277344, -0.56640625, 1.796875, 0.9868164, 1.0488281, -1.5878906, 0.54541016, -1.9931641, 0.014083862, 2.015625, -1.0615234, -0.06573486, 1.7919922, -0.026733398, -0.70458984, 0.16821289, 2.2402344, 0.25195312, -1.9873047, 1.3388672, -1.3613281, 0.6064453, -0.29296875, -3.6757812, -1.2353516, -1.3964844, -0.71728516, 3.1015625, 0.03640747, 1.4101562, 2.4238281, 0.103759766, -0.4736328, -0.084472656, -2.8886719, -2.2851562, -0.30151367, -0.6010742, 1.9296875, 0.018844604, -2.1171875, -2.0917969, -2.7675781, -1.8662109, 1.390625, 1.1074219, -0.6557617, -0.05050659, -2.3574219, 0.2626953, -1.7578125, 0.43652344, 1.1416016, 0.08331299, -0.54833984, -0.2454834, 0.9277344, -0.86279297, 0.32006836, 0.79589844, 2.0644531, -0.9824219, -1.203125, 0.25048828, 1.6552734, 1.84375, -1.2646484, -2.5664062, 0.061767578, 0.2541504, 2.7480469, 0.3466797, -0.76660156, -0.5966797, -0.84375, -0.11767578, 1.0869141, 2.7207031, 0.68408203, -1.1396484, -2.8535156, 1.2148438, -1.7001953, -1.3789062, -1.8671875, -0.13891602, 0.6669922, 1.5234375, -1.8867188, -2.0585938, 1.9921875, -0.10168457, 0.6503906, -1.4003906, 3.1738281, 1.3769531, 1.7880859, 2.6855469, -2.6113281, 0.7807617, 1.6552734, -1.2041016, -0.33789062, 0.6411133, -1.5, 0.73339844, 0.21032715, 0.8833008, -2.3515625, -1.9980469, -1.2539062, -1.2353516, -0.83691406, -2.7226562, 1.9306641, 0.5600586, 1.4980469, 0.28173828, -1.5449219, 2.3867188, -0.6582031, -0.089904785, 2.2148438, -0.48876953, -0.67529297, 1.5986328, 1.5195312, -0.49243164, 0.75683594, -0.3330078, 0.091674805, -0.37158203, -0.953125, 0.7548828, 1.2207031, -1.2021484, -0.3010254, 1.0507812, 0.9145508, -1.3056641, -1.8964844, 1.7988281, 1.9863281, -0.56933594, 1.2226562, 0.054016113, -1.5273438, 1.6386719, 2.1289062, -1.3886719, 0.4038086, -0.32299805, -0.46728516, 2.109375, -1.1787109, -2.1738281, 0.0073165894, 0.82421875, -0.7675781, 1.8154297, -1.5625, -1.1347656, 2.1523438, -1.8779297, -0.6171875, -0.3449707, -1.2138672, 0.5786133, -0.3984375, 2.0898438, -0.88427734, 0.49560547, 3.7265625, 0.08874512, -3.4707031, 1.0302734, -1.2246094, -0.56396484, -1.7353516, -1.2294922, -2.9921875, -1.4755859, 2.2617188, 1.8369141, 0.36547852, 1.2607422, 2.6894531, -1.5742188, 1.2431641, -0.9477539, 1.6591797, -1.5644531, -0.46264648, 2.703125, -1.8798828, -1.0917969, -2.9179688, 1.0712891, 1.9208984, 1.1289062, 1.8066406, 0.018127441, 0.30908203, -0.35620117, -3.2265625, -2.6367188, -1.2314453, 0.0058288574, -0.74658203, 1.1513672, -0.20373535, 1.2128906, 0.009605408, -0.6201172, -0.4025879, -0.09020996, 0.27490234, -1.4619141, -1.5078125, -1.3574219, -2.0078125, -1.1337891, 0.8227539, -0.19116211, 1.8310547, -0.21716309, -4.1914062, 0.2619629, -0.5961914, -2.6347656, -0.71875, 2.5703125, 0.3486328, 2.1425781, 0.070617676, 0.05456543, 0.90185547, 2.6425781, -0.71435547, -0.8071289, 0.74365234, -1.1660156, 1.0175781, -1.1533203, -1.5576172, 1.8066406, -2.0878906, 1.2421875, 0.9692383, -0.5371094, 1.7490234, 2.2695312, -0.18603516, -1.3056641, 0.89160156, 1.4296875, 1.7890625, 0.40063477, -1.9013672, 0.8125, -1.0410156, -2.140625, 0.98779297, -2.6132812, -2.5175781, -1.9345703, 0.4140625, 3.171875, 2.3769531, 1.0693359, 2.0273438, 1.6269531, -0.96728516, 0.16101074, 0.5595703, 2.8710938, 1.5361328, -1.6308594, -1.2685547, -2.1308594, 1.4560547, 2.6484375, 0.032196045, -0.2788086, -0.0074768066, -1.8232422, -0.3010254, 0.7182617, 1.8916016, 1.4082031, 0.61865234, 0.19177246, 1.9726562, 3.2539062, -0.94189453, 1.2773438, 0.0049972534, 1.7080078, -1.8740234, 2.4511719, 0.5341797, -2.75, -0.10491943, -1.203125, 1.1171875, -0.29467773, -1.4716797, 0.05319214, -0.11419678, -0.5131836, -2.5273438, -0.69189453, -4.3476562, 0.8154297, -0.13928223, -0.89404297, -0.8198242, 1.7792969, 0.4946289, 3.140625, 1.2363281, -0.038848877, -1.2236328, -0.81152344, -1.5068359, -0.8769531, 0.453125, -1.7089844, 0.77783203, 0.46972656, 0.3215332, -0.77197266, 0.65771484, -0.049804688, 1.0068359, 1.671875, 2.1914062, 1.3583984, 2.6894531, 2.5136719, 0.86572266, 2.4570312, 0.018218994, -1.2753906, 0.23583984, 2.7382812, 2.234375, 2.515625, -1.0869141, -0.17150879, 2.2714844, -0.359375, 0.8227539, 0.89453125, 1.7148438, -2.7578125, -0.73291016, 1.9785156, 1.1757812, 0.20861816, 2.1855469, -0.98339844, -1.2050781, 0.18029785, -0.115356445, 3.9902344, -0.7495117, 2.8183594, 0.7636719, 1.5898438, 2.1582031, -2.421875, 1.3046875, 2.2226562, -2.2148438, -2.4726562, 1.1103516, 1.9208984, 2.2109375, 0.03086853, 1.5595703, 1.5117188, 2.3007812, 1.3662109, -1.6279297, 0.72802734, -0.2208252, 1.8613281, 1.0458984, -2.1425781, -1.7880859, -1.0253906, -2.7832031, -1.7753906, 0.36523438, 1.3701172, 1.9697266, 1.6435547, -3.8242188, 1.1220703, 0.4482422, 2.8066406, -0.5698242, -0.29516602, -1.3603516, -2.1953125, -1.0810547, 0.007850647, -1.2080078, 1.7236328, 1.1357422, -1.0517578, 1.7128906, 1.421875, 1.6572266, 1.0390625, 1.8984375, 0.6850586, 1.4736328, 0.28930664, 0.56152344, 1.2138672, -0.7392578, -0.16796875, 2.34375, 0.63183594, 1.265625, 2.0585938, -0.9711914, 1.3115234, 2.4375, 0.5932617, 1.0224609, -0.87158203, 0.07611084, 0.26245117, 0.83984375, -0.54248047, -1.2001953, 0.7270508, 2.1289062, 0.8046875, 1.6054688, 1.4648438, -0.4584961, 1.71875, -0.087890625, -0.75097656, -0.87890625, -0.7631836, 1.3955078, -0.44799805, -0.14465332, -0.9243164, 0.5683594, -0.3725586, -0.8300781, -0.9472656, -0.08337402, 0.115356445, -0.111694336, 0.7729492, -1.1132812, 0.020889282, -0.6069336, -1.1835938, -0.5229492, 1.3574219, 1.6591797, -2.1757812, -2.1914062, -1.8632812, -0.5595703, -1.5527344, -1.5390625, 2.0761719, 3.3007812, 2.0097656, -1.6357422, -2.0820312, -2.4238281, 0.32373047, -1.6611328, 1.8427734, 1.1367188, -0.11456299, -0.2121582, 0.12512207, 2.6875, -0.4501953, -0.6933594, -0.5883789, -0.37524414, 2.1035156, -0.79052734, -0.16040039, -0.23791504, -1.6445312, 2.109375, 2.203125, 3.0761719, -0.0050354004, 0.78564453, 3.2304688, -0.54541016, -2.6367188, 0.87597656, 1.3466797, 1.0751953, 0.47973633, 1.5527344, 1.0351562, -1.1757812, -0.076538086, -0.21923828, -1.5732422]}, "B07W64SGBK": {"id": "B07W64SGBK", "original": "Brand: DOZYANT\nName: DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color\nDescription: \nFeatures: For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need.\nThe Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "embedding": [-1.0947266, 1.2509766, 0.8569336, 0.8876953, -0.59033203, 1.7753906, 0.7216797, 0.6308594, 0.5673828, 1.2021484, 2.4785156, 1.2314453, 2.8417969, -2.2832031, 0.7285156, 2.1074219, 0.45898438, -0.7402344, 1.984375, 1.9667969, 4.8554688, 2.2851562, 0.5566406, -1.1796875, 1.5791016, -0.7636719, 2.6074219, -2.3867188, -1.6357422, -0.041137695, -0.07989502, -1.9433594, -0.15856934, -0.38745117, -2.65625, 1.6386719, 0.796875, 0.8623047, -0.2734375, -0.80078125, -1.1279297, 0.6738281, 2.6542969, 0.60302734, -2.0234375, -2.8925781, -0.13305664, -0.6166992, -1.3095703, 0.7680664, 0.6796875, 3.25, -0.105163574, 2.1152344, -1.5498047, 1.4111328, 0.96435547, -3.5625, 1.6201172, 1.1865234, 1.8583984, 1.1865234, -2.8554688, -0.18225098, 0.6958008, -1.3300781, -0.43725586, -0.3388672, 0.21789551, -0.36889648, -0.82128906, 1.8115234, 0.4296875, -1.1738281, -1.9970703, 1.2138672, -3.3613281, -0.22705078, 2.6777344, -1.0087891, -3.234375, 0.6430664, 1.6445312, -0.79345703, -0.30615234, -0.51904297, -0.8647461, -0.39086914, 1.7919922, 1.3056641, -1.625, 0.24829102, -4.3085938, -3.3984375, -0.15344238, 0.515625, 1.9023438, 2.2460938, 3.921875, 1.625, -0.42407227, 1.0839844, 1.6386719, 0.99560547, -3.3320312, -0.24169922, 0.37670898, 1.5576172, -1.5498047, -1.0625, -1.421875, 2.2988281, 2.8046875, -1.8447266, -0.9941406, -1.0605469, 1.0146484, -1.0996094, 1.5019531, -0.30566406, 1.875, -1.1298828, -0.69091797, 0.34204102, 1.6914062, 1.7070312, -0.42626953, 2.0449219, 2.421875, 0.05291748, -0.17321777, 1.4296875, 2.3808594, -1.6660156, 3.0371094, -2.9765625, -2.9707031, -3.0703125, -1.5292969, -0.10687256, -2.515625, 0.38232422, 0.55029297, -1.0429688, -3.4375, -0.020523071, -2.3691406, -0.32910156, 0.6220703, -1.4941406, -0.19165039, -2.8105469, 0.0015821457, 0.2668457, 3.1269531, 0.796875, -0.22375488, 0.59521484, -0.22302246, 0.20214844, 0.5883789, -1.0175781, -2.4355469, 2.671875, -0.101135254, -4.296875, 0.07672119, 0.3737793, -1.3085938, 1.1953125, -0.41992188, -2.0039062, 1.7900391, -2.4785156, 1.1337891, -1.3505859, 1.7792969, 0.91259766, 1.3486328, 0.010055542, -4.0820312, -0.67089844, 0.02859497, -0.20898438, 1.59375, 1.4345703, -0.50439453, 0.2932129, 2.0039062, -0.68066406, -1.3535156, 0.8413086, 0.123168945, 2.0996094, 0.38867188, -1.1044922, -5.1953125, -1.1630859, 0.5576172, 2.1367188, -1.4638672, -1.1875, 0.7260742, -1.1425781, -0.96875, -0.015975952, -0.30688477, -0.82910156, 1.5839844, 0.39892578, 0.1928711, -0.24353027, 2.5039062, -2.0664062, -1.2587891, -1.3896484, -0.02911377, 1.2353516, 1.5800781, 1.6425781, -2.7128906, 0.35742188, 2.0566406, 1.6503906, 1.6855469, -0.089904785, -0.24523926, 2.6601562, -2.7050781, -0.45092773, 1.4365234, 1.0126953, -0.38134766, -0.042419434, -2.4902344, 3.75, 0.96435547, -1.0527344, 0.07141113, 2.6796875, 1.3046875, 0.56152344, 0.015541077, -1.9375, -1.234375, -1.7792969, -0.14562988, 2.375, -1.6972656, -0.8730469, 0.7421875, -0.5605469, -0.17797852, -3.5742188, -1.8134766, -0.52490234, -0.032684326, 0.2142334, 1.0751953, -1.1884766, 2.9082031, -2.2304688, 2.2597656, 0.28149414, -0.041046143, -0.2479248, 2.3945312, -2.2363281, -0.5600586, 0.35986328, 1.2890625, 1.8544922, 0.7475586, -1.0498047, 0.22717285, 1.9472656, -1.0048828, 2.9355469, 0.62402344, 2.0195312, 1.5507812, -1.5654297, 2.4277344, -1.3896484, 1.0068359, 1.3349609, 2.2363281, -0.17285156, -1.1572266, -0.24511719, 1.9882812, 0.9604492, -1.8134766, 2.6289062, 3.6132812, 0.7416992, 1.8544922, 1.1162109, -0.45922852, 1.1142578, -0.86083984, 0.32836914, -2.5507812, 1.7275391, 2.375, 0.22875977, -0.3852539, -1.7763672, 0.54003906, 2.8320312, -1.3574219, -0.3564453, -1.1884766, -1.3730469, -3.1464844, -1.5712891, 2.1738281, -1.0195312, -0.3737793, 1.171875, 0.056762695, 1.1230469, 0.484375, -0.097351074, -0.48901367, 0.10601807, -1.7236328, 0.3720703, 0.49316406, 0.46923828, 1.2402344, -1.2109375, 0.09625244, -0.5727539, -1.4960938, 2.3085938, -2.3964844, -3.7695312, -0.22302246, -1.2890625, -0.3466797, -1.9501953, -1.265625, 1.0869141, 0.7636719, -0.5317383, -0.04071045, 1.4990234, 0.5600586, -2.4296875, 0.40722656, 2.0761719, -1.2675781, -3.0644531, -0.11437988, 0.7026367, -0.47387695, 2.4355469, -2.0644531, 0.77490234, 0.35961914, 2.1679688, -0.8979492, -0.7680664, -0.6044922, -0.8334961, 0.4165039, -1.7294922, -1.1591797, -0.5571289, 0.7705078, -0.78027344, 1.8164062, -0.4345703, -1.5087891, -0.42163086, -0.6401367, 1.4853516, 1.1767578, 0.2734375, -0.12890625, -0.5566406, -0.22155762, -2.0585938, -2.6640625, -1.5322266, 1.2119141, 0.026306152, 0.3317871, -4.0273438, 0.09301758, -1.3632812, 0.5336914, -0.671875, -0.83447266, 0.3635254, -2.0996094, 2.0917969, -0.21582031, 0.74560547, -0.25048828, -0.42749023, -0.9785156, 0.5654297, 3.2890625, -0.5810547, -1.6064453, 0.8535156, -0.9604492, 1.0615234, -2.9277344, 1.1660156, -0.010818481, -0.15917969, 0.70458984, 0.52734375, 0.97558594, 1.734375, -0.07751465, 2.9414062, -0.39819336, 0.3635254, -4.1289062, -1.1044922, 2.7734375, 3.0429688, 2.4746094, 1.5224609, 0.16821289, 0.3894043, 1.1269531, -0.58496094, -0.34716797, -2.34375, 2.25, -3.1425781, -0.6958008, -0.8388672, -0.20898438, -3.5195312, -0.06616211, 0.8442383, 0.31225586, 3.4199219, -1.1074219, 1.0566406, -1.5478516, -0.8691406, 1.1855469, 0.50341797, 0.31347656, 0.123413086, -0.8388672, -0.105407715, -0.9873047, -0.3491211, 1.2431641, 0.83154297, 0.15454102, 0.49731445, 1.265625, -0.8623047, -0.3720703, -1.3369141, 0.6308594, 0.56591797, 1.7587891, -0.4946289, 0.24121094, -1.9394531, -0.80615234, 0.6323242, 1.2753906, -1.5263672, 0.06530762, 2.7265625, -0.7084961, 0.3010254, -0.76123047, 0.7548828, -0.27783203, 1.7412109, 1.3193359, 1.2431641, 0.20800781, -1.5449219, -1.5087891, -1.6533203, 0.75683594, -0.33764648, 1.7158203, -1.2988281, -0.5024414, -1.7373047, -1.1630859, -1.7675781, 1.0273438, 0.15185547, 0.72558594, 2.2050781, 0.36499023, -0.6923828, -0.86376953, 0.39746094, 1.1943359, -0.07397461, -1.0068359, 0.24206543, 0.7319336, -0.7885742, -0.42407227, 0.07696533, 0.9013672, -3.03125, -1.2451172, -0.62353516, -0.07159424, -1.1875, -0.89990234, 0.7758789, -0.8154297, -1.71875, 1.5185547, -0.5673828, 1.9609375, 1.1298828, -1.0527344, 0.78271484, -3.1152344, -0.83496094, -0.4970703, -5.71875, 1.2939453, -0.11016846, 1.2734375, 3.4707031, 0.54003906, 0.9682617, 2.2304688, 1.4365234, -5.0273438, -1.0732422, -1.4951172, 0.9140625, -2.6992188, -1.2753906, 2.0722656, 3.4101562, 0.75439453, -0.16516113, 0.02330017, -2.1191406, -0.9316406, -0.3215332, -0.7270508, 2.2578125, 1.5576172, -0.5698242, -0.78515625, -1.7783203, 2.1132812, -0.05831909, -2.1953125, -1.9619141, 1.6914062, 1.0732422, 0.28808594, -0.8725586, 2.0625, 1.7207031, -0.3449707, -2.4023438, -0.2770996, 3.2949219, -0.62597656, -2.4082031, -2.0507812, -0.9223633, 0.2709961, -0.25170898, 0.859375, 1.3730469, -0.5986328, 0.13671875, 0.19445801, -0.5258789, 2.2871094, -1.1757812, -2.8730469, -0.35205078, 0.3876953, -2.3945312, 0.06640625, -0.11077881, 1.5683594, -2.0019531, 0.26733398, -1.6582031, 2.5253906, 0.8457031, -2.3046875, -2.2988281, 1.5292969, -1.1816406, 1.2109375, 0.93066406, -1.6855469, -0.86572266, 1.2382812, 0.6621094, -0.48632812, -1.2109375, -0.7026367, -1.8583984, -1.2177734, 2.7832031, 1.2685547, -1.7822266, 0.39770508, 0.54052734, -0.73046875, 0.91503906, 2.03125, -2.421875, -1.2714844, 0.77001953, -0.5805664, 3.6171875, -3.0332031, 1.4814453, -1.1181641, -0.22131348, -3.1523438, 0.9604492, -0.03643799, 0.11578369, -0.45214844, 1.1787109, 1.6455078, 0.39282227, 0.6020508, 1.4501953, 0.25439453, -0.10296631, 0.71435547, -0.32543945, 1.9755859, 1.2929688, 3.5078125, 2.1191406, 2.0332031, -0.099853516, -1.1933594, 0.5395508, -1.4335938, 1.4912109, -0.19177246, 0.06921387, -2.1347656, -0.28808594, -0.85009766, 0.7871094, -0.2800293, -2.2324219, 1.9179688, 3.046875, -0.46728516, -0.9169922, -0.89208984, -1.7919922, -1.8710938, -2.3730469, -1.84375, 0.61035156, -1.5849609, 0.45336914, 0.22058105, 0.22607422, 0.011581421, 1.5839844, 2.2109375, -0.45483398, -0.19543457, 0.008094788, -0.96191406, -2.6699219, -0.41796875, -2.0859375, -1.5019531, 1.4658203, 1.8007812, 3.7441406, 0.34985352, 1.0566406, -1.1083984, 1.1533203, -1.2431641, 0.5439453, 2.625, -0.3317871, -0.31201172, 3.0703125, -1.1210938, -1.984375, -0.24890137, 0.48583984, -0.2854004, 1.5322266, 1.4570312, -0.22167969, -1.6357422, 0.6567383, -2.3808594, -6.3046875, 0.5053711, 2.0507812, 1.3476562, 1.2910156, -1.1875, -1.7373047, 0.13452148, -0.47387695, 0.20324707, -1.8769531, 1.7128906, -2.5722656, -1.0800781, -0.8774414, -0.41479492, 0.72216797, -0.6748047, 1.6181641, -2.4824219, 0.9765625, -3.8847656, -0.96972656, 0.6796875, 0.31445312, -0.5996094, -0.34179688, -2.53125, 0.47485352, -0.07519531, 1.2626953, -3.4101562, 0.5288086, -2.6953125, 2.1601562, -0.5107422, -1.09375, 1.2324219, 0.04626465, 0.7788086, -0.4206543, 2.8984375, 2.0761719, -1.3935547, -0.86572266, -1.6113281, -0.14819336, 0.20227051, -0.4206543, 0.8208008, 0.5058594, 1.5712891, 2.0410156, -2.2929688, -2.3320312, -2.5351562, -0.5644531, -0.37768555, -2.0253906, 2.5, -0.24389648, 1.1308594, 0.7558594, 0.46704102, -0.108947754, -1.1279297, -1.9072266, 0.03933716, 1.2919922, -1.4677734, 3.6953125, -1.015625, 0.023834229, -1.5283203, -1.3759766, 1.0400391, 1.9091797, -0.67333984, 1.0390625, -0.18225098, 1.0839844, -0.5605469, 0.89208984, 2.5019531, 1.0576172, 1.5498047, -1.8847656, -0.69873047, 1.4404297, -2.2089844, -1.234375, 1.8310547, -0.56396484, -1.4023438, -0.86865234, -0.7080078, -3.6464844, 1.0263672, 0.8129883, 0.17749023, -1.1669922, 0.8701172, 0.6875, -3.140625, 0.7050781, 0.6850586, -3.4863281, 0.06286621, 3.4199219, 0.49609375, 0.60253906, -1.4824219, 3.3125, -1.4941406, 0.06982422, -0.51660156, -1.2539062, -1.5703125, -1.1386719, -0.048950195, -0.63183594, 0.5234375, -1.4609375, 0.6171875, 0.78564453, 0.27929688, 0.49169922, -0.83496094, 1.8056641, 0.88964844, -0.07348633, 3.0546875, 1.7861328, 1.5087891, 1.046875, 1.4228516, 1.8330078, 2.34375, 0.38793945, 0.3215332, 0.048431396, -1.3583984, 1.6455078, -1.2490234, 1.9814453, -0.9580078, 1.9863281, 1.5371094, -0.24584961, 2.0917969, -4.1328125, -0.08886719, -1.4199219, -0.40429688, -2.7128906, 0.55126953, -0.87402344, 0.30786133, -0.10827637, 2.1582031, -1.0517578, 3.1757812, -0.17687988, -0.038757324, -0.2565918, 2.7167969, -0.2241211, -0.7036133, -0.06121826, -0.29882812, -0.37036133, 0.5410156, -0.8017578, 0.2578125, 0.7050781, 0.82666016, -0.09088135, -0.69091797, -0.38891602, 0.19836426, -0.8769531, -1.2822266, 2.8164062, 1.6835938, 1.4033203, 3.8203125, 1.0009766, 0.25805664, -2.1660156, 0.9902344, -0.4506836, 0.09576416, 0.062347412, -4.6132812, 1.4521484, -0.6411133, -1.8769531, -2.0332031, 0.36669922, 2.0664062, -1.5351562, 1.9638672, 0.70166016, 0.16564941, -0.3215332, 0.74072266, -1.15625, 1.7929688, -0.76123047, -0.38476562, 1.9511719, 1.7919922, 1.25, -0.6738281, -1.7724609, 4.2382812, -0.22583008, -0.5722656, -0.05291748, 0.73291016, 1.8203125, 0.38598633, -0.34570312, -0.82666016, 1.6523438, 1.1181641, -0.20568848, 0.42333984, -1.0263672, 1.0361328, -1.3183594, -1.609375, -0.02645874, -2.7324219, 0.73876953, 0.8388672, -1.7871094, -0.26586914, 1.8681641, -1.7373047, 2.6972656, 2.8789062, -0.5024414, -0.14355469, -1.2304688, 1.8222656, -2.4570312, 1.4404297, 1.2822266, -1.5087891, -1.4287109, -3.3554688, -0.5078125, 0.066223145, -1.0322266, -0.66796875, 1.1650391, -0.4399414, -0.42700195, -1.2177734, -1.3056641, 1.4121094, 3.4980469, 1.109375, 0.3996582, -0.008872986, -0.48510742, 2.2851562, -0.040893555, -1.6748047, 1.265625, 0.8510742, 1.0634766, 2.5214844, -0.99853516, -2.2441406, -0.4309082, -2.7226562, 2.3105469, 0.12121582, -2.6230469, -0.12561035, 2.671875, 1.0595703, 1.8193359, 0.5991211, -0.20861816, -0.49169922, 0.46777344, -1.6171875, -1.1484375, 0.4494629, 0.62597656, -0.25048828, 4.21875, 0.70654297, -0.84033203, 0.25561523, 3.7109375, -1.5009766, -1.2998047, 1.3291016, -1.1835938, 0.17077637, 2.4628906, 0.89501953, 1.0341797, 0.46777344, -1.3300781, -2.5976562, 1.0458984]}, "B07H5RJ8YJ": {"id": "B07H5RJ8YJ", "original": "Brand: Weber\nName: Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\niGrill 3 compatible, for perfectly grilled food (accessory sold separately)\n", "embedding": [-0.5678711, -0.14807129, 1.3007812, -0.46557617, -0.12200928, 0.39208984, -0.009208679, -1.6914062, 0.67529297, 0.6020508, 1.4111328, -1.1630859, 0.42041016, -3.0878906, 0.42211914, 0.28344727, 2.5117188, 0.85253906, -1.34375, 0.7944336, 1.4394531, 0.27954102, 2.3574219, -1.9833984, 0.9248047, 0.8989258, 4.1601562, -5.5195312, -1.1396484, -2.0625, 1.6298828, 0.4375, 0.5732422, 2.5449219, -3.8613281, -2.4023438, -2.5742188, 2.0078125, -2.1386719, 1.5400391, 0.12939453, -1.859375, 0.38256836, -0.72753906, -1.9589844, 1.5244141, 1.0800781, 1.0664062, -3.1933594, 0.09655762, 3.6386719, 2.09375, -0.39526367, -0.06555176, -0.90722656, 2.7617188, 0.54541016, -1.6220703, 1.96875, 0.19140625, 2.046875, -0.4116211, -2.3027344, -1.828125, -1.9189453, -0.67822266, 0.7363281, 1.1689453, -0.103393555, -0.29882812, 4.1523438, 0.2084961, -1.7714844, 1.7333984, -0.5678711, -1.7841797, -2.4746094, 1.53125, -0.13989258, -1.0341797, -1.4941406, 2.5566406, 2.9667969, -2.4511719, 0.6953125, 0.84472656, 0.06210327, -2.5800781, 1.8486328, 0.61865234, -0.3935547, 0.4814453, -1.9658203, -3.6972656, 2.1367188, -0.18200684, -0.15185547, 1.1894531, -1.2900391, 2.1972656, -1.1347656, 1.453125, -0.31079102, -0.64404297, -3.34375, -2.0820312, 1.9599609, 0.34399414, -2.9453125, -0.49291992, -1.3769531, -0.5336914, 1.5058594, 2.3417969, 2.0019531, 1.1503906, 1.5058594, 1.7470703, 1.2011719, 0.6767578, 3.5800781, -1.5234375, 0.32104492, -0.56933594, -1.2236328, -1.5439453, -0.8286133, 0.40429688, 3.6894531, -3.2382812, 0.114990234, 0.29956055, 3.5410156, 1.3310547, -2.1113281, -1.7294922, 0.044708252, -1.1289062, -3.5800781, 0.24963379, -1.2568359, 0.23840332, 1.5332031, -1.9853516, -3.2539062, 1.2558594, -1.2431641, 1.0195312, -0.031585693, -1.0146484, -0.07574463, -1.3671875, -0.50878906, -2.6035156, 2.0507812, -0.5625, -0.88378906, 0.20031738, 3.1835938, 2.0058594, 1.4853516, -0.84277344, -2.0957031, -1.6894531, 0.9658203, 0.30932617, 0.6738281, 1.4345703, -0.9194336, 1.8945312, -0.42749023, -2.0605469, -0.68896484, 0.45532227, 1.7353516, -2.1191406, -0.09124756, 0.9189453, 0.117004395, -0.15002441, 0.18188477, -1.3144531, 0.57373047, -1.6445312, -0.18151855, -0.36816406, 0.9345703, 1.0283203, 1.8349609, -1.3310547, 0.8256836, -1.1259766, 1.2382812, -0.020019531, 0.84228516, -1.3964844, -2.1640625, -0.6982422, 2.5273438, -1.0800781, -0.90527344, -0.6381836, 1.2402344, 1.2021484, -0.7753906, -3.2382812, -1.4052734, -3.2128906, 0.7788086, 1.0244141, 2.0996094, -0.86279297, 0.55078125, -0.33398438, 0.53271484, -1.0537109, 2.0117188, 0.53222656, 0.02835083, 2.4589844, 0.032226562, -0.95214844, 0.9370117, 1.4853516, 0.4428711, 1.0878906, 0.8696289, 0.087402344, -2.9570312, -1.8291016, 3.5078125, -0.47338867, -0.77246094, 0.96240234, 0.93603516, 3.6152344, 1.2529297, -1.1396484, 0.13537598, 1.0410156, -0.5390625, -0.8881836, -3.0117188, -0.94921875, -1.2353516, 0.08013916, -1.5371094, 2.3242188, 0.96972656, 1.9804688, 0.7890625, -0.5151367, 0.9892578, 0.6982422, -0.10406494, 0.32714844, -1.1123047, 2.2304688, 0.41601562, -1.4785156, 1.2529297, 1.3964844, 0.016433716, 1.5722656, 1.0634766, -1.9931641, 1.0283203, 2.0292969, -0.67041016, -2.7792969, 0.6870117, 0.107421875, 1.1738281, -0.86328125, 3.2265625, 1.5537109, -1.0390625, 3.0136719, 0.085754395, 1.7128906, 0.0680542, -1.7373047, 0.95703125, -2.8847656, -0.6328125, 1.1455078, 0.55810547, -1.3896484, -1.0566406, 0.41674805, 4.6875, -1.2509766, -2.3300781, 2.9746094, -1.2431641, 0.6459961, 2.4433594, 0.45141602, -1.3730469, 1.1396484, 2.1660156, 0.76660156, 1.4765625, 1.8037109, -0.7294922, -0.4572754, 0.4819336, -1.9189453, 0.0128479, 1.0947266, -0.4494629, -0.94384766, -1.2626953, 0.9628906, -2.8007812, -0.3671875, 1.5302734, -2.5273438, 0.6621094, -1.1083984, 1.0810547, 0.33813477, -2.1347656, 0.095214844, -1.3525391, -0.28710938, -1.1455078, 0.26611328, 0.07507324, -1.7490234, -0.53027344, -0.35766602, -0.8515625, -3.2675781, -1.6582031, -1.4462891, -1.3261719, -2.9648438, 0.31274414, -1.0537109, -1.3388672, 1.4345703, -1.2792969, -0.29516602, 0.31396484, -1.6230469, -0.4645996, -0.40942383, -0.9453125, -0.13098145, 0.76904297, 0.6713867, -1.3740234, -2.09375, -0.36914062, -1.3232422, 1.1123047, 0.2512207, -0.35205078, 0.421875, 0.8886719, 0.95947266, -0.026016235, 0.87890625, 1.7490234, -0.52441406, 0.43481445, -2.8222656, -0.50683594, -2.9238281, 1.8935547, 1.6542969, 0.97998047, -3.3164062, -0.640625, -0.41967773, -0.45092773, 3.9667969, 0.27978516, 1.4873047, 0.09454346, 0.14331055, 0.67529297, -2.4707031, -1.4462891, -0.012031555, 0.32983398, -2.2109375, -0.34179688, -1.1132812, -1.0585938, -1.4648438, 0.56152344, 0.2043457, -1.0224609, -1.7636719, 1.5410156, -2.1347656, 0.27124023, -0.73779297, 0.5029297, 0.73291016, -1.6621094, -2.546875, -0.5805664, -1.6103516, -1.4892578, -2.0742188, 1.1474609, -0.19396973, 1.2011719, 1.4355469, -0.6269531, 0.7050781, 0.28833008, -3.6308594, 1.8603516, 0.080078125, -3.4335938, 2.4511719, -2.0839844, -0.4975586, -3.3417969, 0.7739258, 3.1308594, 0.6972656, 0.9399414, 1.546875, 0.9765625, 0.44189453, -0.88378906, 0.5620117, -1.8662109, 0.15490723, 2.3339844, -2.28125, -0.76660156, 1.1933594, -0.047088623, -2.5449219, -1.8964844, 3.3886719, 2.5253906, 1.7373047, 0.7050781, 2.3554688, 0.9423828, -1.3955078, -0.20410156, -0.20410156, -0.7470703, 0.23510742, -0.7734375, 0.35375977, -1.0693359, 2.625, 0.4580078, 1.0966797, 2.4140625, 0.8154297, 0.11407471, 0.9506836, -0.32080078, 0.09185791, 0.51660156, -0.15075684, 2.1484375, -0.96240234, -0.31860352, 0.4736328, -1.3349609, 0.7128906, -0.70166016, -2.4472656, 2.0800781, -0.78027344, -0.9370117, -0.93603516, 0.89501953, 2.1738281, 0.14245605, -0.2084961, -1.8193359, -0.25, 1.6992188, -0.81347656, -0.7246094, -1.9140625, 0.06585693, -0.7998047, -3.1152344, 0.5517578, 4.6289062, -1.5068359, -0.89697266, 0.93603516, -1.1894531, -0.4501953, 2.1445312, -1.0126953, 0.12561035, 0.9472656, -1.8720703, 0.7573242, 0.7548828, 0.91796875, -1.3652344, -0.87158203, -0.2199707, -1.0107422, 1.2128906, 1.7226562, -0.17687988, -3.0839844, 0.6767578, -3.2050781, -1.5507812, 0.057556152, -1.5302734, -1.3916016, 3.3242188, 1.1103516, 0.5541992, -1.0644531, 3.4453125, -1.4150391, 0.46118164, 2.7792969, -3.671875, 0.8847656, -3.6484375, -2.8066406, 0.6064453, -1.6484375, 0.5439453, 1.2148438, 0.4958496, 0.46069336, 3.5253906, 0.4333496, -1.5273438, -1.3046875, -0.2668457, -0.40039062, -0.36328125, 0.13195801, -0.9433594, -1.2529297, -1.8740234, -2.6875, -1.4765625, 0.09112549, 0.5996094, 1.9257812, -3.7695312, 0.02079773, -0.72753906, -1.234375, -2.0683594, -1.2216797, 1.7558594, 0.038330078, 0.94140625, -3.0957031, 1.0830078, 0.8310547, -0.6069336, 2.4824219, 2.7460938, -0.3388672, -2.5175781, 2.3378906, 0.22302246, 3.5136719, -0.60058594, -2.6699219, -1.3837891, 1.1816406, 1.0371094, -2.0605469, 0.35302734, 0.48876953, -1.3339844, 0.85058594, 1.5136719, 2.125, 1.5927734, 0.008514404, -1.6640625, -0.5185547, 0.13195801, -0.16137695, -2.1894531, -0.46411133, 1.4072266, -1.2490234, -0.19140625, -2.3242188, 1.9238281, -1.078125, -1.0810547, -3.1796875, 2.3261719, 3.3828125, 2.4746094, 2.4902344, -1.9736328, 1.6689453, 0.0044059753, -0.11541748, -0.9453125, 1.4990234, -1.3730469, -0.7426758, 2.8886719, 1.0332031, -0.9663086, -0.10321045, 1.2099609, -1.8916016, -0.12030029, -1.5966797, -0.6669922, -1.3876953, -0.39648438, 1.0439453, -0.7158203, 3.5976562, -0.14245605, -1.8017578, 0.9350586, 1.453125, -0.4963379, 0.2775879, 0.3684082, -0.10205078, -0.1352539, 1.8447266, 2.296875, 0.60546875, 1.2001953, -0.59814453, 0.82421875, -0.57910156, 1.1826172, 2.3691406, -0.45043945, -1.2998047, -0.3034668, 2.0566406, 2.59375, 2.3984375, 2.7363281, 0.76220703, -2.9394531, 2.6757812, 0.41259766, -2.984375, 1.7509766, 0.5629883, 0.37695312, 1.2402344, 1.5585938, -3.7128906, -1.2558594, 2.171875, -0.6855469, 1.6875, -0.7211914, -0.1887207, 2.515625, -0.40161133, -0.59375, -0.18273926, -0.5522461, 1.6445312, 1.1972656, 0.31103516, -2.0351562, 1.7431641, 1.5996094, -0.6791992, -2.2070312, 2.734375, -0.33374023, -0.007675171, -1.7363281, 0.07305908, 0.42358398, 0.30786133, 3.4199219, 1.5039062, 2.359375, -0.5883789, 1.4443359, -2.1601562, -0.4819336, -2.1835938, 2.6347656, -1.6240234, -1.2802734, 0.7753906, -2.90625, 1.0478516, -1.8388672, -2.0332031, -0.38842773, 1.3828125, 1.0986328, 0.2685547, -2.0078125, -0.066223145, -1.1689453, -2.5195312, 0.1862793, 0.5385742, 0.7036133, 0.42358398, 1.265625, -2.0214844, -0.008049011, -0.021743774, 0.3725586, -1.5009766, 0.07476807, -1.6376953, -1.0527344, -0.9345703, 0.4501953, -1.9521484, 0.25561523, 1.5605469, -0.03692627, 1.3105469, -2.7363281, -0.78125, 0.4025879, -0.5371094, 0.048034668, 1.7060547, 1.3447266, -0.7915039, 2.2070312, 0.54541016, -1.703125, 2.2695312, -2.7441406, -1.3554688, 2.0644531, -1.4599609, 2.375, -0.7163086, 0.36035156, -0.65966797, -1.2304688, 1.5214844, 1.5537109, -0.016967773, -0.86083984, 0.57177734, -0.859375, -1.5917969, 0.80615234, -0.16503906, 1.8115234, -0.13879395, -1.5029297, -0.6201172, -1.0693359, -1.6464844, 1.4560547, -2.7324219, -1.1855469, -0.7084961, 1.3876953, 1.1582031, 0.47192383, -0.9423828, 3.4804688, -0.8066406, -1.7470703, 0.012680054, -0.48632812, 3.5957031, 3.4589844, -0.21411133, -0.7841797, -1.8623047, -0.12817383, 0.39794922, 1.4414062, -1.7285156, 0.38500977, -1.2832031, -0.35864258, -0.5292969, 1.2314453, 1.1064453, -0.0031757355, -0.084106445, 0.9848633, 2.9023438, -0.9194336, 0.49804688, 1.4443359, -0.77001953, -0.90234375, 4.6367188, 0.51660156, -3.0273438, 0.9824219, -2.0566406, 1.9765625, 0.8857422, -0.67578125, 0.10064697, -1.0859375, -1.671875, -2.3164062, -1.8007812, -3.1152344, 1.3847656, 0.8803711, -1.4414062, -1.9628906, 1.1269531, 0.1763916, 4.7421875, 0.64941406, 2.0410156, -1.5263672, 0.12878418, -0.49243164, 0.5961914, 0.81396484, -2.9199219, 1.1083984, 1.9121094, -2.0605469, -1.4921875, 1.2617188, 0.09051514, 3.6015625, 0.88134766, 2.2519531, 3.1835938, 2.0390625, 1.7568359, 1.1513672, 0.60253906, 0.22058105, -0.7495117, -0.8334961, 1.0029297, 0.51660156, 1.3916016, -0.81347656, 2.8613281, -1.4492188, -0.23168945, -0.44799805, -0.8833008, 0.83935547, -2.0390625, 0.9746094, 1.2900391, 2.9023438, -1.6435547, -1.1289062, -0.16516113, 0.69677734, 0.65234375, -0.7211914, 1.4101562, 0.7084961, 1.1279297, -1.2451172, 0.12390137, 2.2792969, -4.7773438, 1.3310547, 0.41430664, -0.55371094, -1.2216797, -1.2011719, 1.6191406, 0.8251953, -0.11456299, 1.0986328, 3.1621094, 0.49560547, 1.6416016, -3.3554688, -0.81689453, 0.6254883, 3.7246094, 0.025787354, -0.6660156, 1.3193359, -1.7119141, -4.2890625, -3.9472656, 3.8789062, 0.8852539, 0.8803711, 1.5751953, -0.7915039, 3.2558594, 0.39990234, 1.3505859, -1.7568359, 0.7290039, -0.8857422, -3.265625, -1.2060547, 0.8310547, -1.6669922, 0.16247559, 0.7055664, -0.7207031, 1.1025391, 1.7197266, 2.0058594, -0.38891602, 0.7583008, 1.4804688, 0.3701172, 0.34277344, 1.6162109, 0.7895508, -1.5068359, -1.5927734, 1.1279297, 2.2695312, -0.08337402, -0.18798828, -0.7104492, -1.03125, -0.7709961, -1.3964844, 1.7529297, -1.4150391, -0.6459961, 0.3215332, 0.73339844, -2.3046875, -1.703125, 3.1914062, 2.8105469, 0.85058594, 1.0058594, 2.5019531, -1.4804688, 0.47192383, 0.84765625, 0.09844971, -0.36572266, 0.10900879, -0.20202637, 0.93603516, -1.3710938, 2.1210938, 1.5449219, 0.45361328, -0.18225098, -0.45996094, -0.2956543, -0.453125, 0.15429688, 1.5878906, -1.4970703, -1.6367188, 2.1699219, 0.21923828, -2.0683594, 2.9863281, -0.359375, 0.67285156, -1.4140625, -2.8652344, -1.203125, -1.1923828, -0.6459961, 0.76660156, 3.0625, 0.40551758, 0.8232422, -2.3945312, -2.9375, -1.9414062, -2.2832031, 1.8417969, -2.265625, -1.71875, -1.4257812, 0.9086914, 3.0488281, -0.7944336, 0.1529541, -0.67285156, -2.4042969, 1.7373047, -0.22509766, 1.4921875, -0.38354492, 0.09118652, 1.0800781, 0.9638672, 2.2109375, 1.4345703, 0.6845703, 2.4941406, -0.77734375, -1.7402344, -0.31567383, -0.12780762, 0.048797607, 0.33447266, -1.0302734, 0.7260742, -0.5239258, -1.4960938, 0.68603516, -2.0078125]}, "B093BP356D": {"id": "B093BP356D", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze\nDescription: BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night\nFeatures: \u25b6MULTI-PROTECTION\u25c0 BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won\u2019t be affected by the windy weather\n\u25b6NICE AMBIANCE\u25c0 Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame\n\u25b6OPTIMIZED PRODUCT STRUCTURE\u25c0 Wheels are different from the usual smooth surface wheels, it uses gear design, won't out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater\n\u25b6REASONABLE AND HIGH-EFFICIENCY\u25c0 Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition\n\u25b6BLENDING OF CLASSICAL AND MODERN BEAUTY!\u25c0 Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night\n", "embedding": [-0.59472656, 1.9541016, 1.9023438, -0.35742188, 0.0129470825, 1.6601562, 1.484375, -2.6855469, 1.234375, 2.9199219, -1.0488281, 0.6772461, 0.55566406, -3.3183594, 1.9892578, 0.8701172, 0.7504883, 0.6743164, 2.2109375, 1.0068359, 2.1933594, -0.9951172, -0.7504883, -1.2285156, 0.16882324, 0.9057617, 3.1621094, -1.4248047, 0.6401367, -2.0332031, -0.27319336, 1.2294922, -0.24926758, 1.953125, -2.515625, -3.3085938, -0.6044922, 2.6015625, -3.6914062, 0.3540039, -2.421875, -2.0371094, 1.0097656, 1.8388672, -1.5166016, 1.5732422, 0.99365234, 1.3408203, 0.32080078, -0.99316406, -0.40454102, 0.29638672, -1.0126953, 0.5107422, -1.7783203, -0.25634766, -0.50927734, -1.5351562, 1.8144531, 0.57128906, -0.8745117, -0.20861816, -2.7988281, 3.6054688, -0.2824707, 0.06311035, -1.0703125, -0.4501953, -0.90722656, 0.68408203, 1.7617188, -0.7919922, -1.1210938, 0.92089844, 1.7490234, -1.8222656, -1.1640625, 1.6650391, 3.0332031, -0.47143555, -0.6557617, 0.34936523, 2.2304688, 1.4863281, -2.3730469, 0.43945312, -0.30249023, 0.35180664, -0.58691406, 1.1865234, -1.3994141, 1.7060547, -1.1152344, -3.4785156, -0.40771484, -3.7910156, 2.5527344, 0.042541504, -1.5693359, 0.80078125, 0.060546875, 0.4645996, -1.2158203, -0.59716797, -0.5595703, -0.41308594, 3.546875, 0.053588867, -0.5859375, 0.09460449, -1.1328125, -0.5571289, 1.4873047, -0.33007812, -0.30151367, -0.015701294, 1.7998047, 3.2617188, 3.6601562, 2.9453125, 3.5644531, 0.72216797, 0.27685547, -2.5664062, -0.20959473, 0.48828125, -0.7138672, -1.4892578, 3.7089844, -2.7539062, 1.2382812, -2.1542969, 0.22045898, 1.375, -1.1552734, -0.7138672, -1.2880859, -0.84765625, -3.5, -1.3955078, -1.3144531, -0.18920898, 1.1689453, -0.12335205, -4.3632812, 0.45507812, -0.8618164, 4.0507812, -0.83984375, -0.2421875, 1.8847656, -0.47607422, -0.49975586, -2.2519531, 0.92626953, 1.7324219, -0.0138549805, -2.8847656, 4.1210938, 1.4677734, 2.0761719, -0.79296875, 0.95458984, 1.8408203, 0.0038871765, -1.3251953, -0.04208374, 1.1503906, 1.1455078, 0.05053711, 0.40063477, -3.4902344, 0.60595703, 0.68115234, 0.16418457, -1.5039062, -0.52783203, 0.83691406, -0.70410156, 0.8574219, -2.4394531, -2.3710938, 1.328125, 0.64404297, 0.88671875, -1.1914062, -0.59521484, -1.5175781, -0.3725586, -0.5859375, -1.1767578, 1.3847656, 0.82470703, -1.6474609, -0.8261719, -2.3925781, -3.9433594, -1.8847656, 2.3046875, 0.111572266, -1.1533203, -2.0703125, -0.91015625, -0.50927734, -2.6523438, -2.9628906, -1.1123047, 0.4050293, -0.30639648, 1.1210938, 1.1845703, 0.72802734, 1.8466797, -2.6738281, 1.2255859, -1.1035156, 1.9375, -0.67822266, 2.3945312, 2.6796875, -0.47021484, 0.50878906, -0.28857422, 1.7197266, 0.4248047, 1.7001953, 1.9365234, -0.6591797, -1.3222656, -0.42529297, 3.0117188, 1.3310547, -1.6357422, 1.453125, -2.0859375, 2.6015625, 0.83154297, -1.1210938, 1.6230469, -2.1132812, 0.64746094, -2.4667969, -0.48901367, 0.328125, -0.6904297, 2.1074219, 0.34179688, -0.36279297, 1.5322266, -0.95996094, 0.8955078, 0.20300293, 0.72216797, -1.7148438, -0.63427734, 0.33251953, -0.57714844, 1.9140625, -1.4921875, -0.9536133, 2.4726562, 0.8574219, -0.5576172, 0.030380249, -0.60498047, -1.4882812, 2.0820312, 0.86328125, -4.8046875, -0.56347656, 0.9394531, 0.6040039, 0.80371094, 0.94091797, 1.8056641, 1.0498047, -2.0351562, 2.8828125, 0.31518555, 1.0966797, 1.1152344, -1.3398438, 2.1582031, -1.5019531, -1.0927734, -0.070739746, -0.6567383, 0.9794922, -0.6816406, 1.6455078, 3.9882812, -1.4326172, -1.5888672, 2.0976562, -0.15759277, 0.13684082, 2.0488281, 0.5336914, -1.1806641, -3.078125, 2.5117188, 1.2363281, -0.36279297, 1.0800781, -1.484375, -0.046875, 0.21496582, -2.4023438, -0.42285156, -0.4404297, -0.8461914, -1.1044922, -2.9628906, -0.5078125, -3.2910156, -1.1103516, 3.3300781, -1.4716797, 2.5253906, 1.0273438, -0.018981934, 0.2487793, -0.3527832, -2.203125, -0.016082764, 0.034210205, 0.48168945, 0.0026855469, -0.7729492, -0.05847168, -1.4501953, -0.89746094, 2.703125, -1.9960938, -2.0488281, -0.96191406, -1.3974609, -0.5083008, 0.9038086, -2.296875, 0.27856445, 1.1347656, -0.44189453, 0.45898438, -1.2021484, -0.9716797, -0.08129883, 1.2958984, 0.7182617, -0.72558594, 1.5361328, -0.16003418, -0.89746094, -5.4726562, -0.63134766, 0.8691406, -2.8339844, -0.09326172, 0.54052734, 0.31689453, -0.83251953, 1.6992188, 0.13977051, -0.13598633, -0.39526367, -1.6425781, -0.84765625, -6.0429688, 2.2246094, -0.72558594, 0.74609375, -0.7915039, 1.6044922, -2.8300781, -1.3525391, 1.625, -1.3085938, 4.6171875, 0.4362793, 2.4648438, -1.5898438, -0.92626953, 0.38476562, 0.76904297, -1.9277344, -1.1777344, -2.1035156, -0.46899414, -0.054260254, -2.46875, 0.09094238, -1.2724609, -1.6552734, -0.15246582, -0.40600586, 0.6767578, 0.7441406, -1.1054688, -0.7675781, -0.036895752, -0.06347656, 0.42211914, 1.9931641, -2.5898438, -2.1816406, -1.0117188, 1.0634766, -0.70947266, 1.8759766, -0.95703125, -0.7397461, 1.515625, 0.047058105, 1.1611328, -0.21655273, -3.4648438, 1.5302734, 1.9248047, -0.50341797, 1.5097656, -0.6699219, -0.10583496, -1.2666016, -1.5283203, 2.8066406, -0.2265625, 2.7246094, -2.0410156, 0.5209961, 0.5073242, -0.09326172, 0.25146484, 0.109680176, -0.9326172, 1.6953125, -2.0136719, -0.5024414, 1.0048828, 1.7636719, -1.9150391, -0.39526367, 0.9536133, 0.17114258, 1.9960938, 0.12145996, -0.33666992, 1.9072266, 1.0917969, 0.8144531, 1.1230469, 1.4072266, 0.15673828, -3.2910156, 0.31103516, 1.3251953, 1.8125, 1.3857422, 0.4741211, 1.5263672, 0.38378906, 0.8461914, -2.6289062, 1.2558594, -0.52001953, 1.3164062, -0.08721924, 3.3789062, -2.1035156, -0.35986328, 1.2207031, 1.2998047, 0.3125, -2.7480469, -2.0527344, 2.8222656, 0.91308594, -0.9067383, -2.6601562, -1.046875, -0.6953125, -0.15478516, -0.15637207, -0.34692383, -1.2626953, -0.21704102, -1.1435547, -0.19677734, 0.05206299, 2.9414062, 0.83984375, -4.9453125, -1.1386719, 0.5913086, -0.5209961, -0.9609375, -1.5869141, -0.98876953, -0.14135742, 3.6132812, -0.95214844, 0.81640625, 0.93408203, -1.5185547, 1.5498047, -0.16357422, 0.49560547, -0.9628906, -0.5053711, -1.9677734, 1.1425781, -0.15551758, 1.8388672, -0.30664062, -3.1796875, -0.39233398, -2.4121094, -0.83203125, -1.1601562, -0.38183594, -1.2402344, 2.375, -0.12719727, 2.6660156, 0.8491211, 3.3535156, -1.9775391, -1.8330078, 0.5600586, -1.4375, 0.6147461, -1.1386719, -5.5195312, 0.6298828, -1.4501953, -0.31396484, 1.1455078, -0.6401367, 0.60839844, -0.51464844, 0.31567383, -3.1386719, -3.2578125, -0.11413574, 0.44091797, -1.6650391, -0.7006836, 2.2519531, -1.5068359, -0.66308594, -2.7539062, 1.5888672, -0.19091797, -0.065979004, 1.8339844, 0.16845703, 0.9326172, -2.5878906, 0.55078125, 0.8066406, 0.5805664, -0.8544922, -0.1529541, 0.13183594, -0.9584961, 3.5800781, 0.6074219, 1.0107422, 1.7324219, 2.8027344, 1.2705078, -0.91845703, 0.375, -1.0908203, 2.4863281, 0.03942871, -3.2636719, 1.0078125, -0.97753906, 1.0722656, -1.8925781, -0.5678711, 0.67089844, -0.6933594, 0.07739258, 2.2148438, 0.48632812, 1.0292969, 1.0859375, -3.8535156, 0.8149414, 0.45336914, -3.3085938, -2.109375, -0.74902344, -0.7421875, -1.8339844, 1.4951172, -1.3818359, 1.6367188, -0.5463867, -1.9277344, -2.2597656, 1.1259766, 2.7070312, 2.0253906, 1.0322266, -3.0488281, -1.3769531, -0.8642578, -0.8720703, -0.2524414, 1.5556641, 0.5463867, 0.42358398, -0.08215332, 2.1425781, -0.56396484, 0.28955078, 1.0009766, -1.1181641, 0.39575195, -0.79541016, -0.17358398, -0.8413086, -2.6679688, 1.2167969, 1.7363281, 1.7519531, -2.4921875, 0.5727539, -0.2788086, 0.46777344, -2.4433594, 0.31982422, -2.0546875, 1.8476562, 1.4033203, 2.0917969, 2.0058594, -2.1152344, 0.28393555, -1.2294922, 3.1484375, -3.4472656, -0.3310547, -0.3310547, -0.17663574, -0.019241333, -0.22387695, 2.3457031, 1.3984375, -0.84277344, 1.8173828, 1.8955078, -1.8300781, 0.3491211, 0.32006836, -1.9814453, 1.4736328, 0.15539551, -1.8251953, 0.94873047, -0.28686523, -1.8710938, 0.14562988, 3.6464844, 0.01058197, 1.1308594, -0.43554688, -1.2001953, 0.15466309, -2.3359375, -0.8745117, -1.0976562, 0.35205078, 0.5341797, -0.47680664, 0.21862793, -0.67529297, 2.515625, 0.98339844, -0.58447266, -1.0498047, 3.0585938, 0.34472656, 0.44750977, 0.37670898, -1.9921875, 1.140625, 0.1998291, 1.4765625, 0.7368164, 1.5839844, 1.5390625, 0.9321289, -2.1035156, 0.16455078, -1.2548828, 3.9765625, -1.5, 1.0576172, 2.8984375, 0.5371094, 0.44555664, -2.8632812, 0.89453125, -0.5336914, 1.5517578, -1.359375, 0.02128601, 0.45703125, -1.7148438, -2.3691406, -3.2304688, -0.78466797, -0.5048828, -1.4833984, 0.56640625, -1.4433594, -1.7841797, -0.47192383, -1.1113281, 0.35327148, 0.5888672, 0.44726562, -1.3974609, -0.4165039, 1.3105469, 0.054473877, 1.0839844, 1.0546875, -1.7314453, -0.57177734, -0.89990234, -3.34375, -0.34277344, 0.8540039, -0.124938965, 1.4824219, 0.89404297, -1.3134766, 1.1835938, 2.3476562, -0.52001953, -1.5458984, 1.1923828, 1.2734375, 1.2841797, 2.3320312, 0.27075195, 1.3251953, 0.1673584, -1.7626953, 0.78222656, 0.42504883, -1.6240234, 0.22827148, 1.2314453, 1.5849609, 0.93066406, 0.30932617, -0.3022461, 1.4560547, -0.22680664, 2.5078125, -0.44702148, -2.1914062, -0.15991211, -3.1015625, -1.9619141, -2.4296875, -0.50097656, -0.9951172, -0.4387207, 1.4091797, 1.4677734, 0.6611328, 1.1259766, 0.14123535, 0.58203125, -2.6171875, 0.6923828, 0.6269531, 3.1132812, -0.27246094, -0.97216797, -3.5273438, -2.9453125, 0.4104004, 0.0052375793, 0.70703125, -1.4941406, 0.017059326, -0.47827148, 1.9238281, -0.50097656, 1.0488281, 1.8525391, 1.9863281, -1.7382812, 2.296875, 1.9257812, -0.63720703, 0.67822266, -0.13806152, 2.7460938, -1.0761719, 4.21875, 1.5673828, 0.5722656, 2.2539062, 0.23864746, 1.9677734, -0.5991211, -0.4248047, 1.1552734, -3.4746094, -0.28881836, -0.97998047, -0.3647461, -3.5039062, 0.4621582, 1.5, 0.21777344, -1.0527344, 1.4394531, 1.4375, -0.15246582, 3.0996094, 1.0556641, -0.54052734, -1.15625, 0.05731201, 1.4492188, 3.3515625, 0.8354492, 0.00058174133, 0.7446289, 0.61279297, -0.83496094, 0.9213867, -1.578125, 1.7294922, 1.5410156, 1.4775391, 2.7128906, 0.29736328, 2.1445312, 0.5883789, 1.8867188, 1.3808594, -1.4042969, -0.47045898, 0.8305664, 1.7949219, -0.50878906, -1.3857422, -0.33154297, 1.2773438, -2.1015625, -1.1064453, 1.1064453, 0.7441406, 0.61376953, 1.0664062, -0.50878906, -0.30297852, 0.123535156, 0.26635742, 0.57128906, -0.22631836, -0.3635254, 1.2783203, 1.6796875, -0.39379883, -0.13769531, 0.87158203, -0.35595703, 0.47924805, -1.7226562, 1.5400391, -0.39453125, 0.11004639, -0.013008118, 2.7285156, 3.1015625, 1.5664062, -0.06964111, 1.1269531, 1.3789062, 0.08544922, 0.83203125, 0.39208984, -0.41357422, -0.5253906, 2.5, 1.6953125, -0.4038086, -1.3417969, -0.375, -0.72753906, -2.0214844, 1.9667969, 1.1435547, -0.36499023, 1.3632812, -0.0027599335, 0.8852539, -0.25439453, 1.9150391, -3.0917969, 1.9980469, 0.50390625, -0.41210938, -0.5151367, 0.20544434, -0.07727051, 1.8417969, 1.375, -1.0390625, 0.7807617, -1.9443359, -1.6367188, -0.20141602, 1.4873047, -1.7285156, 1.8701172, -1.6826172, 3.3144531, 1.5, -0.10235596, -1.4902344, 0.7553711, 2.4863281, -0.39160156, 0.28100586, -0.6542969, 1.2255859, 0.39624023, -0.004634857, 0.16125488, -1.5634766, 0.12939453, 0.18188477, -1.0996094, -0.09399414, -0.27001953, 0.25317383, -1.2890625, -0.75097656, 0.6191406, 1.1103516, 0.4260254, 0.43286133, -1.1845703, -3.140625, 0.23168945, 0.123535156, 1.0048828, -0.54052734, -0.6738281, -0.63183594, 0.79248047, 2.4316406, 1.0234375, 1.4082031, -1.3134766, -2.1230469, 0.45410156, 1.9130859, -0.34399414, 0.5336914, 1.3466797, -0.82910156, -2.1542969, 1.1464844, 0.45043945, -0.40722656, -0.40478516, -2.7011719, -0.8149414, 0.041900635, -1.9248047, 0.7680664, 2.5566406, 1.2255859, 1.0908203, -2.2226562, -2.4960938, -0.44433594, 0.27929688, 2.1074219, -1.3574219, 0.19628906, -0.20214844, -0.58447266, 2.609375, 1.5302734, -0.99072266, -0.44458008, 0.17016602, 1.5, -0.6796875, 2.9921875, 0.18688965, -1.9150391, -0.3322754, 0.5805664, 2.7851562, -0.19665527, 1.2275391, 0.60009766, 0.5473633, -4.6328125, -0.25830078, -2.0605469, 1.1416016, 0.24279785, 1.8632812, 0.8925781, -0.2644043, 0.23864746, -3.7695312, -1.6699219]}, "B003K6SI7S": {"id": "B003K6SI7S", "original": "Brand: Texsport\nName: Texsport Sportsmate Portable Propane Heater\nDescription: \nFeatures: Ideal for golf carts\nDurable stainless steel burner\nPressure regulator on/off control valve adjusts burners up to 3,000 BTUs\nIncludes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included)\nAuto shut off valve shuts off fuel if flame goes out\n", "embedding": [-1.6699219, 3.1855469, 1.9277344, -0.4807129, -1, 0.6171875, 0.88964844, -1.4550781, 0.24194336, 1.7832031, 1.0732422, 0.24511719, 0.12939453, -3.5136719, 1.2646484, -0.25732422, 1.4951172, 1.5244141, 0.13647461, 0.3486328, -0.42016602, -0.29052734, 1.453125, -2.7324219, 1.3759766, 1.7109375, 3.2890625, -2.5605469, -0.078125, -0.6142578, 0.8754883, 0.7114258, -1.2490234, 1.8457031, -1.5283203, -0.1628418, -1.4912109, 1.5976562, -3.453125, 0.48217773, -1.3828125, -1.2050781, 1.1591797, -0.578125, -2.234375, -1.1347656, 2.1933594, 0.8022461, 0.50878906, -0.16369629, 0.8125, 0.12200928, -1.0068359, 0.97314453, -2.6679688, 0.3449707, -0.6611328, -1.4628906, 0.95214844, 2.546875, 1.9716797, -2.4902344, -1.1972656, 2.5175781, -0.91796875, 0.7524414, -0.18151855, -1.46875, -1.8388672, 2.2011719, 2.4257812, -0.6425781, 0.39892578, -0.5527344, 0.1274414, 0.8808594, -4.4882812, 1.3896484, 2.4726562, 0.9658203, -1.2753906, 0.4946289, 1.1835938, 0.81591797, -0.23474121, -1.53125, -1.3837891, 0.88134766, 1.5253906, 2.7480469, -2.3886719, 3.1777344, -1.2285156, -3.7207031, 0.92871094, -1.0517578, 1.1757812, 1.3457031, 1.5595703, 0.75439453, 0.6347656, 0.15966797, 0.44140625, 1.0410156, 0.8964844, 0.11828613, 1.3134766, -0.43115234, -1.0449219, -0.07556152, -1.7734375, 0.36157227, 1.2363281, 0.0068473816, -2.6933594, -0.7763672, -0.93408203, -0.5683594, 3.6835938, 1.8964844, 4.0117188, 0.12145996, 2.0722656, -2.8554688, 1.8964844, 1.6650391, -0.3798828, 0.69628906, 2.1542969, 0.20129395, -0.12225342, -0.2290039, 1.5351562, -0.4658203, -0.05203247, -2.5058594, -2.0390625, -2.6503906, -2.2597656, -1.1259766, -1.9111328, -0.7885742, 2.1953125, 0.77441406, -3.4648438, 0.38085938, 0.38745117, -0.16687012, 0.19006348, -2.4101562, -0.15942383, -2.203125, -0.23498535, -0.84033203, 1.4677734, 0.7788086, 0.078552246, -1.2001953, 3.0488281, 1.3505859, 2.5019531, -1.5205078, -1.1015625, 0.67529297, -0.24853516, -3.703125, 0.29101562, 0.8125, -1.4121094, 1.65625, 0.7080078, -1.3359375, 0.12188721, -0.90185547, 0.21154785, -2.1835938, 1.1289062, 3.3945312, 0.9941406, -0.5722656, -2.3925781, -0.36865234, -1.2832031, 1.3261719, 1.6777344, -1.8115234, -1.4794922, -0.035888672, 0.32788086, -1.3603516, -1.4394531, 1.6484375, -0.8515625, -0.72753906, 1.4873047, -3.0078125, -1.8232422, -2.2636719, 1.1914062, 0.21435547, -0.30810547, -0.82910156, -0.50341797, -1.0732422, -2.4550781, -2.8476562, 1.3603516, -2.0917969, -0.4897461, 1.1582031, -0.46801758, -0.81884766, 1.4990234, -0.4453125, -0.4033203, -2.6933594, 2.1679688, 0.13464355, 2.4921875, 2.8789062, -1.1621094, 0.4868164, 1.1972656, 0.52783203, 0.49023438, 2.0742188, 0.46191406, 0.44970703, -1.5957031, -1.6962891, 1.8027344, 0.8535156, -0.051940918, -0.7885742, -0.107788086, 1.8779297, 0.92333984, -1.390625, -0.22998047, 0.46191406, 0.28564453, 0.33129883, -0.72802734, -0.29077148, 0.60546875, 0.061523438, 0.06384277, 0.7758789, 2.2578125, 0.921875, 0.86865234, -0.93408203, 2.1542969, 0.83496094, -1.9443359, -0.0009365082, 1.0351562, -0.6152344, -0.6699219, -5.1054688, 2.0898438, 1.5292969, -1.2460938, -0.8261719, 0.3088379, -0.25073242, 4.9296875, 0.8466797, -1.4160156, 0.7661133, -0.31274414, 1.7900391, 1.8720703, 0.9863281, 2.0703125, 0.99658203, -1.3154297, 2.8007812, -0.57910156, 1.4892578, 1.6660156, -0.14501953, 1.4990234, -2.2402344, -0.38085938, -0.091796875, 0.6640625, -0.86328125, -1.7138672, 0.6669922, 3.6210938, -1.0849609, -0.55810547, 1.4277344, 0.0501709, 2.1269531, 1.4501953, 0.9189453, -2.9042969, -0.6821289, 1.3300781, 1.8398438, -2.1875, 0.36376953, -0.72314453, -0.64453125, 1.2470703, -0.9033203, 0.3642578, 1.8828125, -0.29125977, -2.0859375, -1.4501953, 0.20227051, -2.4375, -1.0751953, 1.9150391, -1.7529297, 1.53125, 1.2695312, -1.6357422, 1.0849609, 1.3271484, -1.3574219, -1.0556641, 1.328125, -1.5175781, -0.70214844, -0.59033203, 0.23535156, -0.70166016, -1.9082031, 2.0273438, -2.5996094, -0.78222656, 0.9785156, -0.19750977, -0.7705078, 2.0019531, -1.9404297, -0.12011719, -1.0380859, -1.3251953, 1.7431641, -0.94140625, -3.1425781, 0.027709961, 0.012275696, -1.4072266, -2.8867188, 0.98828125, 0.6850586, -0.2626953, -4.4648438, 1.0527344, 0.65527344, -1.0576172, 0.6879883, -1.7373047, -0.6635742, -0.5288086, -0.42041016, 0.8232422, 0.5498047, -0.08502197, -2.125, 2.9980469, -5.1757812, 2.5566406, -0.41430664, 1.40625, -1.8261719, -0.20959473, -0.6513672, -1.5839844, 2.578125, 0.40454102, 3.2246094, 1.4042969, 1.5039062, -1.1201172, -0.70947266, 0.3701172, -0.8671875, -2.0214844, 0.91552734, -0.43017578, -0.57666016, 0.6611328, -1.1708984, -0.3305664, -2.1699219, 1.4365234, 0.29711914, -2.0214844, 0.13476562, 0.05847168, -0.7519531, -0.19506836, -1.7607422, -0.11828613, 1.2783203, 0.3972168, -1.4638672, 1.4804688, -0.515625, -0.33081055, -0.69140625, 1.4140625, -0.6748047, 0.23352051, 3.0566406, -1.6748047, 1.0048828, 0.7421875, -3.765625, 0.19799805, 2.9707031, 0.96435547, -0.59521484, -1.5146484, -2.8691406, -0.91064453, -0.26513672, 2.7890625, 0.23303223, 3.171875, 0.5800781, -0.06878662, 1.4853516, 1.921875, -0.796875, -0.72314453, -1.1054688, 1.9599609, -3.6855469, -0.37573242, 0.3046875, 1.9072266, -3.9824219, -0.40844727, 0.45141602, -0.09118652, 2.359375, 2.4765625, -2.7167969, -0.35351562, 1.5283203, 1.6855469, 3.1445312, 0.34277344, -1.8115234, -0.43237305, 0.73779297, 1.3554688, 3.3476562, 0.40234375, -0.4638672, 0.3515625, 0.17407227, 1.90625, -1.5146484, 0.91748047, 0.8852539, -1.0771484, 1.0830078, 2.1699219, -0.82470703, -0.16491699, -1.3789062, 0.76464844, -0.19519043, -3.265625, 0.26611328, 2.6757812, 0.13171387, -0.0949707, 0.65283203, -2.6855469, -0.1940918, -0.46704102, 2.4375, -0.21374512, -1.484375, 0.95214844, -3.3222656, -0.52734375, 0.17932129, 1.5888672, -0.22009277, -0.43969727, -0.765625, 0.15942383, -0.57128906, -2.03125, -1.4404297, -1.9677734, 0.4099121, 3.8476562, 1.4677734, -1.6601562, -1.0263672, -1.1396484, 2.3613281, 2.3046875, -1.1240234, -1.5976562, -0.25561523, -0.9248047, 2.5859375, -0.060333252, 0.4050293, 0.95703125, -2.09375, 0.85058594, -1.2402344, 1.5322266, 2.0703125, -1.7792969, 0.8852539, 3.4023438, 0.12524414, 2.375, 0.35913086, 2.5039062, -2.5292969, -1.9970703, 2.1015625, -1.7851562, -0.76464844, -1.8779297, -3.4492188, -0.054718018, -0.89453125, -0.23950195, 3.4902344, 0.72216797, 1.0742188, 1.1787109, -0.10064697, -2.5078125, -3.2480469, -1.640625, 0.65771484, -3.6308594, -0.26879883, 1.5322266, -0.828125, -1.6210938, -1.6806641, -0.42333984, -0.28173828, -0.2163086, -1.78125, -1.0527344, 2.0839844, -1.5078125, 0.8564453, -0.39453125, 0.75146484, 0.5419922, -0.3569336, -0.6669922, -0.72753906, 2.203125, 0.4416504, -0.14245605, -1.609375, 3.8789062, 1.3720703, -1.1884766, 0.7421875, 0.671875, 0.26953125, 0.6611328, -1.7460938, -1.2050781, -2.203125, 2.1425781, -1.1542969, -1.3632812, 0.52978516, -0.4033203, -0.61621094, 0.7861328, 1.0869141, 2.9609375, 1.3339844, -1.9609375, 2.671875, -0.086364746, -0.97509766, -0.71777344, -2.3808594, -1.6044922, 0.07867432, -0.07720947, 0.6875, -2.6679688, -1.7587891, -1.3671875, 0.24279785, 2.0195312, 1.9140625, 1.765625, 2.5097656, -1.9072266, -0.59472656, -0.24133301, -0.028793335, 1.2431641, 0.14050293, 0.10003662, -0.8613281, 1.3271484, 2.1464844, -2.0898438, -0.6777344, 1.4511719, -0.9277344, -0.61572266, -2.2050781, 0.7080078, -1.5673828, -1.0693359, 1.8945312, -0.9663086, 2.7558594, -0.8510742, -0.35888672, 0.14685059, -1.7587891, -2.3359375, 0.70751953, -1.0332031, 1.5556641, 1.6962891, -0.21032715, 1.3232422, -1.4746094, 0.63720703, 1.6582031, 2.1972656, -2.3105469, 0.7011719, -0.5126953, 1.546875, -1.2646484, -0.4736328, 1.5410156, -1.1376953, 0.34545898, 4.4882812, 2.3613281, -0.013008118, -0.34960938, 0.96191406, 0.8745117, -0.18383789, -0.52685547, -0.61865234, 1.1220703, -1.6181641, -2.6289062, -0.96240234, 1.75, -1.0507812, 2.515625, -2.0507812, -1.3515625, -0.41333008, -3.2929688, -2.0429688, 0.23474121, 0.88916016, 1.8378906, -1.3212891, 1.5068359, 0.09350586, 2.1875, 3.8496094, 0.43481445, 0.4099121, 0.48364258, 0.32299805, -0.24597168, 1.4990234, 0.09326172, -3.0546875, -1.984375, 0.9316406, 0.28344727, 1.7470703, 0.55371094, 0.35351562, -2.3730469, -0.11340332, -2.2324219, 2.3203125, -3.546875, -0.1875, 1.5439453, -0.21020508, 1.3173828, -1.1914062, -2.0390625, -1.65625, 0.51953125, 0.71728516, -1.0439453, -0.87060547, -1.6162109, -2.9257812, -5.1640625, -1.3466797, 0.20349121, 0.24084473, -0.52001953, -0.66503906, -1.4140625, -0.70947266, -0.46240234, -0.064575195, -1.3144531, -0.13476562, -1.6445312, 1.4785156, -1.21875, 0.13415527, -0.8671875, 2.9746094, 0.38476562, 0.70214844, -0.86865234, -1.2128906, -3.9511719, 0.6933594, -1.2646484, -0.18481445, 0.64697266, -0.2607422, -0.45361328, 2.6347656, 0.56103516, -2.7851562, 0.20373535, 0.703125, -1.5244141, 1.2041016, -1.8476562, 0.33984375, 0.93408203, -0.74560547, 0.4970703, -0.18688965, 2.2460938, 1.8476562, 0.15002441, 0.13134766, 0.60595703, 0.90527344, 1.1953125, 0.6953125, -0.049987793, 1.7626953, 1.1816406, 0.4267578, -1.4121094, -3.1464844, -3.2792969, -0.29003906, -0.9199219, 0.39208984, 0.31079102, 0.7866211, 1.2304688, 0.7519531, 1.6259766, 0.35717773, 0.33691406, -1.9726562, -0.35717773, -1.6582031, 1.5351562, 1.2441406, -1.7792969, -1.6396484, -2.6210938, -0.60791016, 1.1308594, 0.9448242, 0.2775879, -0.7089844, 0.10064697, 0.35668945, -1.6542969, 4.1132812, 2.1640625, 1.7050781, -1.9423828, 1.1171875, 0.49780273, -0.44433594, -1.9755859, 0.77246094, 2.75, 0.05810547, 2.4648438, 0.7397461, -0.9663086, 1.3359375, 1.0107422, -0.6557617, 0.5913086, -1.9238281, 2.7675781, -1.9423828, 0.9399414, 0.6254883, -0.78808594, -1.9082031, 0.07122803, 2.7324219, -0.2548828, 1.1914062, 2.9453125, 0.08441162, -1.2978516, 0.44921875, 0.15808105, -1.3037109, 0.23083496, 1.578125, 0.24206543, 1.4765625, 0.02218628, 3.7832031, 0.71435547, 1.9033203, 0.109558105, 1.4765625, -1.9589844, 1.6279297, 0.60253906, 1.8115234, 3.5, 0.89941406, 2.1269531, 1.4589844, 0.8413086, 1.4023438, -1.640625, 1.1191406, 1.7216797, 0.29956055, -1.2509766, -2.2050781, 0.32495117, 0.43920898, -1.4628906, -1.4804688, 1.0527344, 0.16882324, -1.8779297, 0.53808594, -0.45166016, 1.8027344, -3.1152344, 1.0898438, -1.3212891, 0.13879395, -0.13928223, 0.29516602, 1.6611328, 0.033599854, -0.8989258, -0.17248535, 0.13269043, 0.28759766, -2.234375, -1.4785156, -0.35253906, -2.4472656, -0.92333984, 1.5283203, 0.41455078, 1.0585938, -0.78564453, -0.2541504, 1.7822266, 0.013267517, 1.0517578, 0.46069336, 0.064208984, -0.28271484, 1.4248047, 3.703125, -1.2304688, 2.921875, 0.37426758, 0.83496094, -1.9589844, 0.3869629, -1.2763672, -0.6894531, -0.5024414, -3.421875, 1.1494141, -0.23693848, 0.27197266, -2.1621094, 0.48266602, 1.625, -1.9072266, 0.024276733, 1.359375, -1.4023438, 4.5703125, -0.69970703, -0.21508789, 1.4560547, -0.3166504, 1.4785156, -1.0224609, 0.61035156, -0.34765625, 0.79052734, 0.32177734, 2.4882812, 0.11187744, -1.234375, 0.96533203, 2.015625, 0.0690918, -0.21826172, 0.9135742, -1.6767578, 3.0566406, 0.2927246, -0.5229492, -0.19812012, -3.3300781, -0.096191406, -0.068115234, -0.6386719, -0.5576172, -0.032226562, 1.2285156, 1.9765625, -1.1337891, 1.0742188, 0.44018555, -1.0351562, 1.2685547, -1.3134766, -1.4228516, 1.1425781, 0.49804688, 0.77978516, -0.49975586, -0.43041992, 1.0898438, 1.6572266, -0.091552734, -1.3300781, -0.30688477, 0.23388672, -1.0371094, 0.5151367, 0.58691406, 0.5566406, -0.47509766, -0.50878906, -3.0332031, 1.0429688, 1.265625, -0.021743774, 0.8071289, -2.921875, -2.7832031, 0.2824707, 1.2099609, -1.1162109, 0.28344727, 2.3476562, -0.82421875, 1.5976562, -2.5175781, -2.9121094, -1.328125, -0.42211914, 0.515625, -0.10986328, 0.32006836, 1.2919922, -0.103515625, 0.46972656, -0.039001465, -0.08868408, 0.6616211, 0.91503906, 0.13842773, 0.23339844, 1.5390625, 1.0751953, 0.17089844, 0.093566895, 2.3632812, 0.053131104, 1.5478516, 1.8623047, 1.5517578, -1.0556641, -2.21875, -1.4501953, -1.8056641, -0.064453125, -0.03845215, -0.015281677, 0.98535156, 0.4050293, -0.093811035, -3.3359375, -1.2763672]}, "B097LDZ1W2": {"id": "B097LDZ1W2", "original": "Brand: BeadChica\nName: RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer\nDescription: RV Propane Tank Cover\nFeatures: \u3010 FITS TANK\u3011Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch.\n\u3010ZIPPER DESIGN\u3011zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal.\n\u3010CUSTOM YOUR TANK\u3011The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls.\n\u3010WITH ELASTIC BAND \u3011 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days.\n\u3010HIGH QUALITY\u3011Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.\n", "embedding": [1.3232422, 1.8173828, 2.1035156, -0.107666016, -0.40405273, 0.5053711, -0.47460938, -0.46679688, 2.5429688, 1.3496094, 0.4716797, -0.12322998, 0.27734375, -3.65625, -0.11859131, -0.11364746, 0.4416504, 1.2841797, 3.6484375, 1.4072266, 2.6347656, 0.29052734, 0.14807129, 0.4169922, -0.06286621, -0.5385742, 2.5292969, -2.3222656, -2.5410156, 2.1640625, 1.4316406, -1.4091797, -0.3564453, 2.6347656, 0.31958008, -1.8154297, -1.3242188, 0.60498047, -3.5898438, -1.5234375, -3.2089844, -1.7070312, 3.84375, 1.2421875, -0.5175781, -1.7480469, -0.8095703, -2.2578125, 0.20898438, -1.5537109, 0.7080078, 1.4775391, 2.3710938, 2.03125, -1.4746094, -0.2841797, -0.06536865, -0.5385742, 0.24902344, 2.1503906, -0.78125, -1.2138672, -2.9375, 2.140625, -0.43530273, 0.17602539, -2.1972656, -0.6196289, 1.21875, 1.8671875, 1.2412109, 0.9970703, 1.5400391, -1.1708984, 0.7475586, 0.17785645, -2.2382812, 1.0478516, 2.0410156, -1.1435547, 0.69873047, 2.9863281, -3.2832031, -0.6738281, -0.39990234, -0.22253418, -1.0839844, 0.6376953, 0.67041016, -0.09112549, -2.9707031, 1.3964844, -2.1210938, -2.6210938, -1.9472656, 0.7036133, 2.515625, 1.7109375, 3.1425781, 1.7070312, 0.29125977, 0.3173828, -1.2705078, 1.2294922, -3.5390625, -2.0957031, 0.4116211, -2.0390625, -1.7792969, 0.029693604, -1.5078125, -0.59472656, -0.16381836, -0.93896484, -0.33740234, 0.28027344, -0.29956055, -0.92089844, 1.5175781, 2.4550781, 3.0683594, -0.21716309, 1.2265625, -2.2285156, 2.6289062, 0.9423828, -1.0732422, 1.4960938, 2.3574219, -0.82373047, 0.39331055, 0.4177246, 0.6870117, 1.1767578, 1.7324219, -0.0016889572, -1.3544922, -1.0273438, -1.0419922, 1.8349609, -1.5292969, -1.5371094, 0.8808594, 0.7055664, -2.5761719, -0.6665039, -0.25439453, 2.4238281, -0.24780273, -2.5800781, 0.6357422, -3.0722656, -0.45874023, -1.2705078, 1.5097656, 1.234375, -0.082092285, -3.6171875, 2.25, 3.1445312, 3.2421875, -1.4052734, 0.13146973, 1.5019531, -0.16992188, -3.2773438, 1.3339844, -0.10925293, -0.93652344, 1.1523438, -0.4753418, -1.8916016, 1.3623047, 0.70751953, -0.27368164, -1.8525391, 1.7167969, 0.82958984, 0.5410156, 0.0513916, -4.8476562, -1.0419922, -2.0136719, 0.048309326, -0.75683594, 0.4182129, -1.4462891, -0.95214844, -1.1123047, -1.4179688, -2.7675781, 1.7802734, -0.71484375, -0.67333984, -1.2587891, -2.3164062, -2.7089844, -1.2636719, -0.2163086, 1.4541016, -1.5595703, -0.88134766, -1.9150391, 0.65625, -2.1582031, -0.98095703, 1.6796875, 0.8466797, 1.1269531, 0.89208984, -1.0078125, 0.5727539, 3.6894531, -0.12097168, -2.3769531, 1.0224609, 0.86035156, 1.7460938, 2.1503906, 0.88427734, -1.6396484, 0.859375, 2.5234375, 1.9794922, 1.6054688, 2.4492188, 0.99609375, -0.84716797, -1.3525391, 0.03793335, -0.5810547, 1.9072266, -1.8544922, -0.005203247, -0.6352539, 2.0039062, -0.13635254, -2.8789062, -0.13671875, 0.3515625, 0.4008789, -0.8647461, -1.15625, -0.4880371, 1.1933594, 3.7363281, -0.16809082, 1.2597656, 2.1464844, -0.8959961, -0.1340332, -0.48486328, 0.4807129, -1.8662109, -0.43603516, 1.3427734, 0.9819336, 0.5888672, 0.46118164, -2.2421875, 0.6323242, 1.3613281, -1.3603516, -0.33569336, -0.6269531, 1.1542969, -0.2800293, -0.13598633, -2.4140625, 2.0351562, 0.43188477, 0.6928711, -0.9199219, -1.6728516, 2.1445312, -0.30981445, -0.046936035, 1.5791016, -0.6640625, 2.9882812, 1.7177734, -0.5288086, 0.6904297, -2.3378906, 0.33862305, 1.5908203, 1.9619141, 0.4765625, -2.6289062, 0.7675781, 2.953125, 0.12902832, -0.65722656, 3.1152344, 2.796875, 0.037750244, 3.2089844, -0.36108398, -0.066223145, 1.4951172, -1.7617188, -0.2454834, -0.7895508, 0.12359619, 0.9350586, -1.2734375, -0.47314453, -0.8979492, 1.3056641, 0.9609375, 1.4296875, -1.2099609, -2.6796875, -1.3349609, -1.1894531, -0.5571289, 3.7324219, -2.5292969, -0.9941406, 3.1308594, -1.2734375, 0.6479492, -0.3173828, -1.53125, 0.6591797, 1.1298828, -1.9980469, -0.11871338, 1.4482422, 0.8623047, -0.11114502, -2.7773438, 2.1054688, 0.17578125, 0.0048675537, -0.5756836, -1.5683594, -2.0957031, 0.060455322, -2.140625, 0.9355469, -2.1113281, -0.62060547, 3.0292969, 1.6152344, -0.55322266, -0.42016602, 1.8984375, -0.6640625, -0.7871094, -0.12390137, 1.3681641, -0.9609375, -2.9726562, 0.20727539, -0.9897461, -2.1503906, 1.9091797, -0.61376953, 0.016830444, -1.4355469, 1.3710938, 2.2851562, 0.29858398, -1.7763672, 0.24084473, 2.0175781, -4.84375, 0.60253906, -1.4775391, -0.34228516, -2.9316406, -0.55859375, -1.3212891, -1.9375, 3.1855469, -1.8828125, 2.5039062, 2.4824219, 1.0664062, -1.6494141, -1.4892578, -0.49487305, -1.2509766, -2.9550781, -1.3105469, 1.0546875, -1.7236328, -0.9628906, -4.1953125, -1.3632812, -1.3300781, -0.6479492, -0.40795898, -2.1777344, -0.41625977, -1.3222656, -2.1425781, -0.4111328, -0.4482422, 2.609375, -1.1699219, -1.8515625, -0.11590576, 0.29589844, -1.3496094, -0.94873047, -1.5146484, 1.8945312, -1.7890625, 0.52734375, 0.24450684, -0.96972656, 2.2949219, -1.4326172, -3.7617188, -0.31762695, 3.2597656, 2.5703125, 3.2246094, 0.33325195, -1.5644531, -2.3808594, -0.7285156, 2.6191406, 3.3417969, -0.005874634, 0.8647461, 0.49243164, -0.35473633, -0.35375977, 1.0429688, -0.08654785, 0.83691406, 1.8027344, -1.3212891, 0.7138672, 1.5595703, 3.4179688, -1.8457031, 0.07165527, 1.1923828, -1.8544922, 3.375, 1.7431641, -1.9404297, -0.56103516, 0.30273438, 0.91503906, 0.07336426, 1.5361328, 1.3203125, 1.6269531, 0.56396484, 0.37939453, 0.36572266, 1.2539062, 1.1855469, -3.328125, 1.5419922, 1.3789062, -2.5839844, 0.59033203, -0.7729492, -1.2109375, -0.6845703, 1.4921875, -1.6083984, 0.6196289, 1.1035156, 0.71875, -0.55371094, -0.27978516, -0.29711914, 0.48510742, 3.0351562, -0.23596191, -0.5073242, -2.3652344, 0.17834473, -2.2910156, 1.8535156, -1.7724609, -0.85839844, 1.1699219, -3.4609375, -0.08227539, -1.8310547, 2.4179688, -0.77783203, -0.2932129, 0.17443848, 0.7216797, -2.5507812, -2.8886719, 0.86816406, -0.23461914, -2.1679688, 4.2695312, 3.7089844, -2.6191406, -0.32177734, -0.91015625, 3.5546875, 2.4101562, -0.12805176, -1.9345703, -0.98291016, 1.1347656, -0.9658203, 0.35498047, 1.0390625, 2.4394531, -1.3710938, -0.2722168, -0.63623047, 1.6123047, 1.3701172, -0.6953125, 0.7714844, 0.51464844, -0.44482422, 1.6777344, 1.0009766, 2.6875, -0.6323242, 2.4492188, 1.1152344, -0.037750244, 1.8789062, 0.89746094, -2.78125, -1.09375, 0.55566406, -0.88964844, 2.984375, 0.7319336, 0.8017578, 0.11407471, -0.66015625, -3.4296875, -1.7753906, -3.25, 1.6679688, -3.0507812, -0.3371582, 0.7402344, -0.111083984, -2.0117188, -1.8476562, -1.4111328, -2.4355469, -0.4050293, 0.14099121, 1.0146484, 1.9033203, -1.7919922, 0.36816406, -1.0253906, 1.1748047, -0.49951172, -0.17932129, -0.9477539, -1.6025391, 2.5742188, 0.28637695, -0.625, 0.4091797, 3.296875, 0.3137207, -1.1230469, -0.21850586, -0.67578125, 1.9824219, -1.7929688, -3.3730469, -1.5703125, -0.32592773, -0.9135742, 0.70996094, -0.9477539, 0.28271484, 0.7441406, 1.5039062, 1.9472656, 2.4882812, 0.75390625, -1.5380859, -2.7421875, 2.5625, -1.6171875, 0.043273926, -0.12854004, -1.8876953, 0.9838867, 0.028182983, -2.0664062, -2.8808594, 1.1074219, 0.9423828, 1.3427734, -3.609375, 2.0195312, 2.109375, 1.9921875, 1.3193359, 0.38330078, -0.33081055, 1.0322266, 2.2128906, 1.3066406, -0.8642578, 0.14855957, 0.6621094, 0.17016602, -0.3293457, -1.7666016, -2.0976562, -1.8017578, -2.484375, 0.53125, 0.48046875, 1.5673828, -0.51660156, -1.8583984, -0.26220703, -1.3349609, 4.0117188, -3.5742188, 0.90722656, -0.26831055, 1.4902344, -0.22827148, 2.1640625, 2.1777344, -0.22961426, 0.3251953, -1.0214844, -1.5185547, -1.2929688, 1.4726562, 2.4804688, 1.7988281, -1.6123047, -1.7021484, 0.10357666, 1.9658203, 0.23486328, -1.1699219, 1.9160156, 2.8535156, 0.7680664, 0.30395508, 2.03125, 0.12780762, 2.34375, 1.4921875, -0.55566406, -0.8803711, 0.5229492, 1.2763672, 2.7265625, -1.5302734, -3.9160156, 2.0390625, 0.27270508, 0.7895508, 1.6953125, -0.24829102, -0.27172852, -0.8745117, -3.2910156, -1.8583984, -0.55566406, 0.14794922, -0.5913086, -0.81347656, 0.5888672, 0.09979248, 1.4492188, 2.2597656, 0.9042969, -1.546875, 0.45336914, 1.5332031, -1.6132812, -3.8867188, -1.1015625, -4.1953125, -0.4169922, -1.2802734, 1.4521484, 0.015945435, 1.3974609, 1.6523438, -2.3378906, 0.52441406, -0.59716797, 0.006477356, -1.7900391, 0.41333008, 1.6201172, 1.2646484, -0.71728516, -0.40625, -0.06982422, -1.2460938, 2.7246094, 1.6269531, 0.49853516, -0.05630493, 0.7504883, -3.8203125, -5.0351562, -0.8066406, 1.5947266, -0.3203125, 0.7578125, -0.15881348, -0.81689453, 0.77197266, -2.3085938, -0.038024902, -1.7617188, 1.6357422, -0.59228516, -1.9306641, 0.5600586, 0.0947876, -0.30981445, 0.6713867, -1.1162109, -0.5751953, -3.1152344, -2.2734375, -1.7460938, -1.0224609, -1.8720703, 0.74316406, 0.68603516, -0.81591797, 2.0996094, 0.23510742, 2.4042969, -0.16210938, 1.6630859, -0.7338867, 0.5488281, 2.0859375, 0.39331055, -0.45581055, 1.2363281, -0.29858398, 2.5117188, 2.7597656, 0.8251953, -3.1171875, 1.8525391, 1.0888672, 0.30395508, -0.79296875, 0.082458496, 2.0195312, 0.6459961, 1.9541016, 0.55810547, -1.6171875, -2.1210938, -1.2880859, -1.0048828, -0.42797852, -3.4160156, -2.4746094, -0.70751953, 1.7646484, 1.6933594, 1.2158203, 1.5185547, 0.66015625, 0.30981445, -1.9736328, 0.023162842, -2.1640625, 2.0800781, -0.08306885, -1.0517578, -2.5996094, -2.2675781, 4.9023438, -0.31811523, 0.7758789, 1.2275391, 0.24719238, -0.66845703, 1.3330078, -1.0810547, 0.7182617, 1.7832031, 2.0839844, -2.5546875, 1.6640625, 3.1582031, -1.1640625, -0.40576172, -1.4423828, -1.2412109, -0.88427734, 0.45654297, 2.28125, -2.7050781, -0.2434082, 1.0390625, -0.24621582, -0.46948242, -0.65625, -0.99609375, -2.8847656, 0.4309082, -2.0058594, -0.7182617, -4.9726562, 3.2695312, 0.57177734, 0.14624023, 1.6083984, 1.6503906, -1.4570312, 0.95996094, 2.8789062, -0.20544434, -0.59765625, -0.5136719, -1.9863281, 0.121398926, 1.4697266, -3.9433594, 0.84277344, -0.88916016, 1.1416016, 0.29223633, 2.0722656, 0.44726562, 0.9628906, 1.8623047, 3.4589844, 3.3125, -0.91064453, 0.56591797, 0.7314453, 1.2773438, 2.4414062, -1.4980469, -0.6923828, 1.2099609, 2.2871094, 3.59375, -2.1132812, -0.20825195, -0.26489258, -0.47070312, 0.7919922, 0.42749023, 1.28125, -3.5292969, 0.6850586, -0.8491211, -1.2285156, 1.1533203, 1.6035156, -1.4990234, -2.1230469, -0.9501953, -0.60302734, 1.9775391, -1.1289062, 1.9980469, 0.83496094, -0.9477539, 1.6914062, 0.7089844, 0.56591797, -3.3945312, -3.2109375, -0.8652344, 1.8691406, 0.51220703, 1.2373047, -1.1376953, 1.1894531, -0.101867676, 0.63720703, 0.16796875, -0.039489746, 1.4042969, -2.8671875, 1.5009766, 4.4296875, -2.5214844, -0.6826172, 0.6347656, 0.69384766, -3.7949219, -1.1015625, 0.51123047, 0.23205566, 1.0224609, -3.4589844, -0.39526367, -0.5161133, 0.8642578, -1.9658203, 0.30810547, -0.1026001, -4, 0.07775879, 1.2617188, -0.4333496, 3.2089844, 0.4260254, -0.039123535, 2.4160156, 0.72509766, 0.6152344, 0.9609375, 0.55322266, -0.94091797, -0.032470703, -0.6010742, 2.9433594, 2.4765625, -2.0410156, 0.10180664, 1.8007812, -0.67578125, 1.1992188, -0.07684326, -1.7558594, 3.390625, -0.5214844, -0.3449707, 0.6411133, -1.2714844, 0.6821289, -0.8984375, 0.29858398, 0.55322266, 0.7192383, -1.1923828, 1.8154297, -5.2109375, -0.13867188, 1.5410156, -0.1274414, 2.3339844, -0.5214844, -0.9848633, -0.7402344, 0.79833984, 1.9052734, -2.8691406, 0.35058594, -1.3916016, 0.8598633, -0.16381836, -1.8789062, -0.80322266, 1.2001953, -0.34301758, 0.5551758, 0.7597656, 0.29760742, -0.4013672, -0.47070312, -1.1376953, 1.2177734, 2.3144531, 1.0537109, -1.5751953, -0.515625, -1.3457031, 0.87060547, -0.6064453, -0.47680664, 2.2597656, 1.8564453, 2.8339844, 0.041625977, 1.4921875, -2.0253906, -0.76416016, -2.5, 1.6171875, 1.4111328, -2.1699219, 0.62939453, 1.1728516, 2.1367188, -1.0742188, -2.0234375, -0.1361084, 1.2783203, 2.4375, -0.88964844, 1.3789062, 0.9746094, -1.3710938, 1.2988281, 3.9609375, 2.34375, -2.9921875, 1.2060547, 0.46704102, -2.5117188, -1.8183594, -1.7568359, -0.9477539, -1.3955078, 1.2597656, 2.5527344, 4.5, 1.1455078, -0.107421875, -2.5761719, -0.05178833]}, "B06Y5XFF6F": {"id": "B06Y5XFF6F", "original": "Brand: DOZYANT\nName: DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank\nDescription: \nFeatures: Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel\nCost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks.\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMulti-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [0.35107422, 1.8544922, 0.9560547, 0.40795898, -0.85498047, -0.8720703, 1.0400391, 0.3112793, -0.95751953, 2.9394531, 2.7753906, 0.6142578, 1.4511719, -2.1035156, 0.1821289, -0.95751953, -0.08728027, -0.19702148, 2.6738281, 1.546875, 3.4667969, 0.7709961, 0.18005371, -0.9370117, 0.95947266, -0.6845703, 3.4570312, -1.3251953, -2.0644531, -0.60058594, 0.19372559, -0.5732422, 0.070495605, 0.15808105, -0.8574219, -0.85791016, 0.23486328, 0.25170898, -3.7050781, -1.3701172, -2.28125, 2.1972656, 3.7753906, 0.58691406, -1.9873047, -1.203125, 0.110839844, 0.23876953, 2.0976562, 1.0341797, 0.36279297, 1.5263672, 0.80810547, 0.49023438, -1.5615234, 0.9863281, 0.9267578, -3.6933594, 1.4765625, 0.5332031, 2.3046875, 0.9980469, -0.05569458, 0.54003906, 1.1660156, 0.21972656, -2.0683594, -0.49853516, 0.13146973, 0.053955078, -0.62060547, 1.5673828, 0.60791016, -1.3222656, -2.7792969, 1.7128906, -4.8320312, 1.40625, 1.9765625, -0.1328125, -1.0351562, 1.265625, 0.5283203, -0.18005371, -0.6567383, -0.026855469, -1.1865234, 2.0234375, 0.21972656, 1.7265625, -4.40625, 2.703125, -1.6425781, -3.2050781, 0.3005371, -0.44311523, 0.58447266, 2.1621094, 3.2304688, 0.23413086, -0.91552734, -1.3701172, 0.13269043, 1.5742188, -1.9853516, -0.5859375, -1.0742188, -0.38598633, -0.94189453, 0.7841797, -1.4560547, 1.2060547, 2.8515625, -1.6494141, -1.0117188, -3.4277344, 1.2861328, -0.46411133, 2.40625, 1.5458984, 3.0664062, -0.6191406, 1.1289062, -0.14807129, 2.328125, 1.8671875, -1.2548828, 0.33325195, 2.1875, -0.66308594, -0.19946289, -0.35058594, 1.3505859, 0.41967773, 1.5878906, -3.0429688, -0.09039307, -2.1308594, -0.70947266, -1.2382812, -3.6367188, 0.96777344, 0.69433594, -0.13964844, -3.8417969, -0.55908203, -2.2734375, -0.37060547, 0.6220703, -2.3691406, 0.47436523, -2.7890625, -0.8642578, -1.6054688, 2.296875, 1.4638672, 0.66796875, -0.83154297, 0.79541016, 1.4609375, 0.40039062, -0.53759766, -0.5673828, 1.6484375, -0.44262695, -3.6992188, 2.4335938, 1.1328125, -1.3623047, 0.09124756, -0.095458984, -3.0429688, 1.7646484, -0.2199707, -0.024108887, -1.9296875, 1.1328125, 0.107055664, 1.1748047, 0.44970703, -3.2695312, -2.1367188, -0.6796875, -1.5712891, 1.0126953, -1.1953125, -2.8242188, -1.1982422, 0.7426758, -2.1230469, -1.1630859, 2.0527344, 0.09564209, 0.81591797, 0.25976562, -1.9941406, -2.1464844, -1.0380859, 0.22741699, 2.7949219, -0.0011911392, -1.4501953, 0.69970703, -0.24108887, -1.2460938, -1.0615234, 2.2792969, 0.7915039, -0.2680664, 2.4257812, -1.3779297, 0.105651855, 3.1328125, -1.5136719, -1.3466797, -1.9853516, 1.4482422, 1.9023438, 1.6962891, -0.15393066, -1.5898438, -0.6386719, 1.3027344, 0.6826172, 0.5332031, 1.015625, -1.4951172, 1.1679688, -2.1523438, -0.4267578, 1.8115234, 2.0605469, -0.03050232, 0.3083496, -1.3007812, 2.3828125, 0.7260742, 0.28710938, 1.8173828, 1.6806641, 2.140625, 0.28833008, -1.5683594, -1.3076172, -2.0644531, 0.55322266, -1.1914062, 2.1523438, 2.1757812, -0.8925781, -0.22375488, 0.0073547363, -1.9873047, -2.4277344, -1.9003906, -0.123168945, -0.13720703, 1.3466797, -0.37548828, -1.1132812, 2.0996094, -0.4140625, 0.74072266, 0.20166016, 1.1191406, 1.3515625, 2.5898438, -2.0957031, -0.09033203, 1.5986328, -0.21142578, 3.4628906, 1.4628906, -2.1640625, -0.2783203, 2.015625, -1.7871094, 1.6953125, -0.2199707, 0.1619873, 3.0039062, -1.4882812, 1.0820312, -2.9003906, 1.2529297, 1.4580078, 1.5722656, 0.06896973, -2.2714844, 0.100097656, 3.2070312, 0.11242676, -1.5224609, 1.8251953, 2.0117188, 2.5585938, 1.0722656, -0.86572266, 0.35083008, -0.14135742, -0.5708008, 0.7260742, -2.8984375, 0.49731445, 2.8828125, 0.17053223, -0.41992188, -0.7949219, 1.0478516, 1.2421875, -0.515625, -0.47802734, -2.1523438, -0.7714844, -2.3339844, -1.8789062, 0.85009766, -1.859375, -0.72753906, 2.40625, -0.30004883, 0.1743164, 1.4580078, -0.60546875, 0.2705078, 1.3720703, 0.21801758, 0.25195312, 2.3046875, 0.042907715, 1.2998047, -0.49487305, 1.7490234, -1.7285156, -1.0234375, 1.1708984, -0.15551758, -3.1601562, 0.8515625, -1.6933594, -0.94189453, -0.9404297, 1.7148438, 2.5878906, 0.6035156, -0.0713501, -2.4453125, 0.5917969, -0.79541016, -2.9765625, -0.24316406, 1.9316406, -1.7783203, -3.7714844, 0.7246094, -0.03564453, -0.2692871, 2.5410156, -2.3515625, 1.2636719, 0.9770508, -0.19763184, -0.70703125, 1.1650391, -1.40625, -1.6503906, 1.2226562, -3.5898438, 0.65234375, -0.6821289, -0.059173584, -0.8652344, -1.1630859, -0.94140625, -0.31079102, 1.1591797, -0.5161133, 1.8007812, -0.38305664, 1.9208984, 1.1210938, -1.3515625, 1.5234375, -0.828125, -3.4824219, -1.3935547, -0.97314453, -0.7910156, 1.1005859, -4.0195312, 1.1015625, -0.7451172, -0.11657715, 0.46704102, -0.14074707, -0.40356445, -0.9658203, 2.1113281, -0.1751709, -0.39746094, 1.1757812, 0.013504028, -1.2792969, 0.95410156, 1.1201172, -1.7841797, -1.2910156, 0.64453125, 0.07128906, 0.06530762, -2.1054688, 0.35009766, 0.52783203, 0.26611328, -0.057159424, -2.7949219, -0.61621094, 2.2285156, -0.6513672, 2.1308594, -0.5498047, -0.5048828, -4.1875, -1.0332031, 3.3535156, 1.0517578, 4.375, 0.4387207, 1.3007812, -0.58251953, 1.2548828, -1.8144531, -0.48217773, -1.2412109, 2.5507812, -2.4824219, -0.49731445, -1.7646484, 2.0625, -3.0839844, 0.4260254, 1.2324219, -0.0029582977, 2.7539062, -0.35229492, -0.13134766, -0.5444336, 1.3828125, 0.8022461, 1.5429688, 0.7895508, 1.2158203, 1.6064453, 0.23242188, -0.8256836, 0.39941406, 0.38354492, 0.9448242, 1.9023438, 1.0302734, -0.5107422, -2.3886719, 0.25170898, -0.5283203, 0.19042969, 1.1044922, 1.0703125, -0.625, 0.9667969, -0.9658203, 0.53222656, 1.5, -0.28637695, -0.98339844, 1.2246094, 2.0332031, -0.83251953, 0.4177246, -0.16308594, -0.9169922, -0.7089844, 0.20532227, 2.1191406, 1.4951172, -0.3125, -1.0605469, 0.44140625, -1.5117188, 0.62060547, 0.7402344, 1.2236328, -0.6567383, -0.7739258, -1.2734375, -1.8466797, -1.6621094, -3.03125, -1.0078125, 1.9580078, 1.8310547, -0.7675781, 0.70214844, 0.2310791, 2.6582031, 1.7255859, -1.2978516, -1.296875, -1.4912109, -1.3662109, 0.71533203, -0.5908203, 2.0859375, 1.4033203, -3.453125, -2.0976562, -0.019638062, 0.5986328, -1.0332031, -0.026000977, -0.88134766, -2.1113281, -0.5341797, 1.8144531, -0.6586914, 2.7148438, -0.76171875, -0.3322754, 1.6113281, -2.453125, -0.45361328, 0.17578125, -4.1328125, 0.75634766, -1.9648438, 1.9482422, 2.8984375, -0.37353516, -1.0166016, 0.2746582, 1.9150391, -3.5625, -1.0488281, -1.7070312, 2.0800781, -2.4394531, 1.3808594, 2.9140625, 1.4238281, -1.3330078, -1.2001953, 0.56591797, -1.4042969, -0.953125, -1.0556641, -1.2519531, 0.97509766, 0.026626587, 1.140625, -3.2128906, 0.9091797, 2.3007812, -1.2744141, -0.57177734, -1.2763672, 1.8193359, -0.14099121, 0.21081543, -0.18566895, 2.8710938, 2.1367188, -1.3720703, -0.24682617, -0.28710938, 3.2265625, -0.38842773, -2.2050781, 0.08654785, -0.7211914, 0.30126953, 0.39111328, -0.92041016, -0.7026367, -0.8486328, 1.2060547, 1.1279297, 1.4765625, 2.515625, 0.13049316, -2.3320312, 0.24584961, 1.0087891, -2.4414062, -1.59375, -0.043182373, -0.44458008, -1.3984375, -0.08868408, -1.7910156, 0.020935059, -0.08135986, -0.9165039, -1.4921875, 0.9614258, 1.2216797, 0.73828125, 0.3317871, -1.4355469, -0.8886719, -0.2166748, 2.3789062, -0.37280273, -0.4880371, -0.7319336, -1.2734375, 1.0126953, 2.1210938, 0.7216797, -0.33764648, 0.052001953, -0.110961914, -1.0810547, -0.21191406, 1.7480469, -1.75, -2.4257812, -1.2714844, -1.7851562, 3.8925781, -2.7226562, 0.20141602, -0.4416504, -1.1865234, -2.671875, 1.7412109, 1.7373047, 0.33276367, 0.77734375, -0.053833008, 2.4863281, 1.7597656, 0.78125, 2.4980469, 0.92578125, -1.2275391, -0.81884766, -1.1298828, 1.8691406, 0.25561523, 1.3857422, 0.2800293, 0.45239258, 2.9511719, 0.7426758, 0.95703125, 0.06628418, 2.1875, 0.65283203, 0.37304688, -1.7568359, -0.11175537, -2.640625, 3.5703125, -2.2382812, -2.4082031, 0.734375, 2.0859375, 0.80810547, 1.3427734, 0.23474121, 0.28710938, -2.46875, -2.8710938, -1.1201172, -0.19567871, -0.22106934, 0.32617188, -1.1113281, 0.9194336, 1.9248047, 1.7675781, 2.3964844, 0.9980469, 0.78466797, -0.45361328, -0.74121094, -2.5058594, -0.8876953, -1.25, -3.0878906, 0.6347656, -1.0175781, 2.9746094, 1.4072266, 1.4765625, -0.00982666, -1.1171875, -0.77246094, 1.1259766, 2.2089844, -1.1396484, -1.2431641, 2.984375, 1.2265625, -1.6123047, -2.125, -0.48535156, -1.3203125, 0.68652344, 2.1152344, 1.1005859, -1.4990234, -0.35009766, -2.1074219, -4.8710938, -1.3525391, 0.82470703, 1.3632812, -0.26293945, -1.1201172, -1.4482422, -0.79541016, -1.3105469, -1.0703125, -1.4541016, 1.0673828, -1.3574219, -0.52685547, 0.9135742, 0.27685547, 0.38183594, 1.1162109, -0.35009766, -2.4316406, -0.11401367, -2.1152344, -3.5058594, 0.24719238, -2.0429688, -0.81640625, 0.2705078, -1.1943359, 0.6196289, 2.4707031, 1.1503906, -2.1523438, 2.8515625, -1.5419922, 1.3320312, 0.21020508, -2.3144531, 1.1328125, 1.2353516, -0.3227539, 0.3544922, 3.3730469, 4.5703125, -1.8037109, -0.08569336, -0.6484375, 0.0044517517, -0.056793213, 0.53466797, 0.5605469, 0.16357422, 0.99365234, 2.2128906, -0.049621582, -0.6699219, -2.8652344, 0.53271484, 0.17480469, -1.8017578, 0.17297363, 0.71435547, 0.23754883, 1.03125, -1.0107422, 0.13623047, -0.58691406, -0.5361328, -1.3642578, 0.2927246, -1.7109375, 1.7695312, 1.4267578, -1.5888672, -4.7421875, -0.98046875, 3.265625, 2.3359375, -0.75097656, 0.96777344, -0.039031982, -1.2470703, 0.15234375, -0.4362793, 2.3164062, 0.96484375, 0.7836914, -1.1660156, -1.0205078, 1.6679688, -2.703125, -0.20214844, 0.48901367, -1.0742188, -0.56396484, 1.1484375, 2.5175781, -1.7607422, 0.044281006, -0.75341797, -1.2939453, -2.5839844, -0.75878906, 0.59521484, -3.75, 1.9150391, 0.5908203, -2.859375, -2.6542969, 2.6484375, -1.2314453, 0.7475586, 1.3603516, 2.4414062, -1.7216797, -2.5019531, 0.08520508, 0.14208984, -0.18432617, 0.33935547, -1.8828125, 0.8491211, 1.8154297, -1.1015625, 2.0195312, 1.1083984, 1.2880859, -1.0136719, -1.1953125, 0.6279297, 1.8857422, 0.78222656, 3.234375, 2.6894531, 0.036712646, 1.0595703, 1.15625, 1.4521484, 3.1484375, -2.1308594, 0.6538086, 1.3496094, -0.13635254, 0.7558594, -1.7744141, -0.30273438, 0.24951172, -0.7402344, -1.0234375, 1.2587891, 3.3710938, -2.6445312, -0.47705078, -2.1503906, -0.43896484, -1.5664062, 0.16210938, -0.6982422, -0.44580078, 0.16882324, 1.4755859, 0.98535156, 1.9414062, -0.48583984, 0.8261719, -1.8388672, 1.8603516, 0.3466797, -0.90527344, -3.140625, -0.31835938, 0.32861328, 2.140625, 0.49121094, -0.93066406, 1.203125, 1.6337891, -0.19055176, 0.5053711, 1.6357422, 0.03555298, 0.2524414, -1.7910156, 1.7939453, 4.1835938, -0.32983398, 2.4667969, 0.39794922, -0.7890625, -2.4570312, -0.3317871, 0.33447266, -0.34960938, -0.40454102, -2.4902344, 0.48632812, -2.3925781, 0.28295898, -2.5371094, -1.7011719, 0.27734375, -1.9082031, 0.15368652, -0.39208984, -0.390625, 1.7607422, 1.9355469, -1.2099609, 0.64453125, 1.5244141, 1.0839844, 0.43359375, -1.2929688, -0.79052734, 0.107666016, -1.3046875, 3.6425781, -0.5854492, -0.24707031, -0.83984375, 3.4941406, 0.9760742, 0.37695312, 1.1982422, -0.8798828, 1.9316406, 0.95703125, -0.40527344, -0.46362305, -0.72265625, -0.20178223, -0.26416016, -2.0351562, 0.17834473, 0.020736694, 1.1240234, 1.9248047, -2.0292969, -0.3684082, 0.8178711, -0.83203125, 1.8554688, 1.6816406, -1.4716797, -0.40673828, 1.1337891, 1.4882812, -3.2734375, 1.8974609, 0.42382812, -0.22363281, -1.2666016, -1.7431641, -1.3242188, -0.025421143, -0.7026367, -0.7705078, 0.5864258, -0.49365234, -0.48388672, 0.7080078, -1.8486328, 1.8417969, 2.4628906, 0.44384766, 1.1699219, -0.35253906, -0.51123047, 1.6308594, -0.6152344, 0.3137207, 1.3896484, 1.7753906, 0.5517578, 0.55859375, -1.9921875, -2.7578125, -1.8222656, -2.453125, 0.17895508, 0.13989258, -2.0703125, 1.0869141, 0.8496094, 2.3417969, -0.9140625, -0.85302734, -0.63183594, 1.1904297, 1.7998047, -0.72265625, 0.76171875, 0.3408203, 0.41992188, 1.9414062, 3.9882812, 3.3007812, -1.5556641, -1.0703125, 0.8300781, -1.4902344, -1.7011719, -0.7895508, -0.5385742, -0.6386719, 1.5039062, 2.6992188, 2.328125, 0.5761719, -1.0410156, -1.2802734, 0.4580078]}, "B07FP4WHML": {"id": "B07FP4WHML", "original": "Brand: only fire\nName: Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch\nDescription: Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

Steel construction with easy grip handles

Black mesh pattern naturally creates 'x marks' in steak and other grilled foods

Use as serving tray after grilling is done. Great camping accessory

Creates perfect grill marks on food without any hassle.

\nFeatures: 36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings\nSturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood\nIt is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate!\nSteel construction for warp resistance.\nCreate perfect grill marks in your food, making the BBQ more fun.\n", "embedding": [-0.12194824, 0.09320068, 0.09240723, -0.32128906, -0.15637207, 0.77734375, 2.5488281, -2.2460938, -0.7480469, 2.1601562, -1.2744141, -0.97802734, -1.0058594, -3.7890625, 1.3486328, 0.48046875, -0.60791016, -0.4897461, 0.4350586, -0.7626953, 1.0224609, 0.82714844, 0.48461914, -0.8208008, 2.015625, -0.2697754, 3.5351562, -2.90625, 0.3474121, -1.7197266, 1.8828125, 2.4589844, 0.75146484, 0.78271484, -2.5878906, 0.70458984, -2.0839844, 2.4492188, -1.1171875, -0.2841797, -0.51171875, -2.5429688, 2.3769531, 1.4013672, -2.7246094, 1.140625, 2.8457031, 0.5913086, -1.2421875, -3.7871094, 0.5283203, 2.6269531, 1.4257812, 1.0390625, -1.8222656, 1.1542969, -1.3046875, -2.7148438, 1.4033203, -1.1269531, 3.0234375, -0.58740234, -0.46704102, 1.3867188, -1.4121094, -0.2915039, -0.20861816, 0.044433594, 0.30639648, -1.2255859, -0.03564453, -1.5419922, -1.8242188, -0.5341797, 3.640625, -2.8710938, -1.2451172, 1.03125, 0.2479248, -1.1455078, -1.4726562, 3.3632812, 0.22912598, -1.9980469, 0.9980469, -0.4501953, -0.53515625, -0.8623047, 1.1650391, 1.8291016, 1.5478516, 2.0234375, -2.2421875, -2.5605469, 2.453125, 0.38842773, 2.2148438, 0.18347168, -2.4433594, 1.1132812, -1.8046875, 1.9394531, -1.2119141, 0.85058594, -4.0585938, -0.64501953, 0.5649414, -0.45947266, -0.39819336, 1.8964844, -2.0917969, 2.5078125, -0.1550293, 0.32836914, 2.5371094, 0.9790039, 0.4958496, 0.42236328, 2.625, 1.2753906, 5.2109375, 2.2324219, 0.76123047, -3.2011719, -0.06213379, 0.71972656, -0.2553711, 0.9863281, 1.8691406, -0.6171875, -0.84033203, -3.3574219, 2.1640625, 0.8251953, -2.453125, -0.9663086, -2.9902344, 0.33569336, -1.8876953, 1.5478516, -1.8222656, 1.7548828, 2.6855469, -0.68603516, -4.8984375, -0.91259766, -1.6816406, 1.8125, -0.9189453, -2.7304688, 1.4169922, -0.9003906, 0.17150879, 0.0184021, 1.3134766, -0.8261719, -1.3369141, -2.1269531, 3.140625, 0.49682617, 1.4716797, -2.1855469, 0.21875, 1.7402344, 0.38305664, -1.4296875, -1.5722656, 1.7851562, 0.029037476, 1.9931641, 0.7949219, -1.6933594, 1.8886719, 0.8574219, 1.8076172, 0.19152832, -2.7792969, 2.0039062, 1.1054688, 0.04940796, -0.6748047, -1.5273438, 2.5253906, 1.5917969, 0.3334961, 0.34179688, 1.7226562, 0.8417969, 1.7353516, -1.0898438, -2.2246094, 1.0458984, -0.38354492, 0.6875, -0.41748047, -1.2373047, 0.041503906, -3.5703125, -0.5, -1.0478516, -1.8066406, -1.5097656, -1.2441406, 0.53564453, -1.6933594, -0.88916016, -1.1386719, 0.5942383, 4.1367188, 0.5810547, 0.4794922, -1.8496094, 0.83154297, 1.1074219, -0.22473145, -1.1894531, -0.9511719, -0.023727417, 2.2949219, 2.5136719, -1.1396484, 1.2265625, -0.24621582, 2.3945312, -1.4580078, 1.1298828, -0.09790039, 0.7050781, -1.0751953, -2.3417969, 1.9570312, 0.95166016, -0.8300781, 1.4423828, -1.5371094, 3.2792969, 1.9677734, -0.3408203, 0.32714844, -1.1298828, 0.13806152, -1.1894531, -0.03857422, -1.4697266, -0.3815918, -0.4645996, -1.5771484, 1.3085938, 1.2148438, -1.7998047, -1.5361328, 2.1640625, 2.0839844, 1.0498047, 0.087402344, 0.03845215, -1.1455078, -1.2070312, -2.1289062, -2.5332031, -0.64990234, -0.24682617, -0.2709961, 1.2919922, 1.5839844, -0.9267578, 2.7851562, -0.61621094, -2.5507812, -1.1220703, 1.3769531, -1.0605469, 0.9736328, 1.0458984, 2.15625, 0.16455078, 0.63183594, 0.83984375, 1.5673828, -0.6665039, 0.44482422, 0.8569336, 2.9882812, -0.70654297, -1.2109375, -1.8886719, -0.57470703, 0.069885254, 1.0712891, 0.7573242, 4.8164062, 1.3896484, -1.640625, 3.5917969, -2.421875, 2.2265625, 2.46875, -1.1884766, 0.26586914, 0.3256836, 1.9150391, 2.1757812, 0.92089844, 2.6972656, -1.3164062, 0.6435547, 1.8310547, -3.4453125, 1.0126953, 3.4296875, 0.58496094, -0.27539062, -0.4699707, 0.28588867, -1.3134766, -1.2197266, 1.8847656, -3.5078125, 2.0410156, 1.3476562, 1.6845703, 1.3623047, -0.6245117, -2.7617188, -1.0380859, 3.1816406, -1.4824219, 2.4003906, 1.0136719, -1.6347656, -1.2011719, -1.7021484, 0.5708008, -0.58740234, -1.8964844, -3.265625, 0.42041016, -0.13562012, -0.023086548, -1.5361328, 0.16479492, 0.65966797, -3.2773438, -1.8525391, -1.9365234, -2.9082031, -0.7314453, -1.9775391, -1.4736328, 2.0722656, -1.4072266, 1.4736328, 0.5410156, -3.3105469, 0.2763672, 0.018600464, 0.40454102, 1.171875, -3.3496094, 0.99853516, -0.62158203, 2.0683594, 0.37426758, 0.20129395, 1.1337891, -1.6259766, -0.5864258, -2.2910156, -0.17175293, -1.5966797, -1.6865234, -1.5839844, 0.004562378, -1.3115234, -3.8476562, -1.0234375, -0.27124023, 2.6855469, 0.040405273, 2.7539062, -1.6953125, -0.38671875, 1.546875, 1.0175781, -1.1796875, -2.5136719, 0.92529297, 0.71777344, -2.4257812, -2.0546875, -1.9160156, -0.7714844, -0.47387695, -0.55126953, 0.1418457, -1.1484375, 0.13012695, -1.4375, -0.63378906, 0.36157227, 0.38452148, -0.3466797, -0.19238281, -2.2578125, -1.2060547, -0.4543457, -1.7890625, 1.4414062, 2.2675781, -1.4882812, 0.21069336, 1.4082031, -0.96777344, 0.6225586, -0.26953125, -3.0566406, 2.0878906, -0.81689453, -1.2539062, 1.9189453, -2.1113281, -0.5498047, -4.1132812, -0.21618652, 3.5351562, -0.2685547, 0.9111328, 0.15246582, -1.203125, 0.64697266, 1.1601562, -0.6254883, -1.1933594, 1.8388672, 2.8359375, -2.0996094, -2.2578125, -0.6748047, 2.5449219, -2.9453125, 0.77685547, 1.7939453, -0.09033203, 0.70410156, 1.9658203, 1.5429688, 0.2626953, -1.8466797, 2.5664062, 1.3828125, 1.4199219, -0.22460938, -1.3378906, 1.2705078, 1.1845703, 1.0332031, 2.7265625, 0.9399414, 2.8691406, 3.3261719, 0.16394043, -0.7373047, -0.5283203, 0.42529297, 1.3427734, -0.11419678, 2.5898438, -1.7167969, -1.0117188, 1.5097656, -1.6132812, 2.7421875, -1.1386719, -2.1386719, 1.4667969, -0.25976562, 0.5761719, 0.15014648, 0.5161133, -1.6445312, -1.8974609, -0.14123535, -2.5839844, -1.4814453, 1.8925781, -0.054718018, -3.1113281, -1.9941406, 1.3847656, -1.7050781, -2.25, -0.3955078, 3.3808594, 1.5166016, -0.17736816, -1.0644531, 1.2041016, -1.2783203, 2.0585938, 1.0585938, -2.7890625, 1.5185547, -2.8828125, 2.1699219, 0.07312012, -1.0078125, -0.36889648, -1.0585938, -1.1494141, 0.22436523, 1.8417969, 0.99853516, 0.28588867, -1.0458984, -0.2915039, -2.0722656, -0.9892578, 0.9160156, -3.7441406, -0.14624023, 1.2919922, 0.6254883, 0.25439453, -0.91015625, 3.1289062, -0.60498047, -1.8808594, 1.9033203, -2.1503906, -0.033691406, -1.6914062, -3.0839844, -0.18530273, -3.0527344, 0.8886719, 1.3388672, 0.89501953, -0.03793335, 2.0605469, 0.029907227, -2.1992188, -0.7104492, -2.8847656, 0.5234375, -2.578125, 0.15917969, 0.61083984, 1.6933594, -0.8808594, -1.3525391, -0.51660156, 0.27246094, 2.0488281, 0.47314453, -1.7548828, 1.0087891, -2.0800781, 0.0546875, 0.58691406, -0.7685547, -1.0498047, -0.55615234, 0.46289062, 0.30688477, 0.28198242, -0.54296875, 0.76464844, 2.5507812, 0.45898438, 0.14733887, -0.5859375, 0.15905762, 0.16564941, 2.5390625, -0.5932617, -2.359375, -0.17102051, 1.1933594, -0.4790039, -0.7583008, -0.5859375, 1.7333984, -2.4960938, 1.5800781, -2.6152344, 1.1044922, 1.4814453, 0.46777344, -1.2451172, -2.5351562, -0.8466797, -2.765625, -1.3398438, 0.22717285, 0.61035156, -0.81152344, -0.1138916, -0.8652344, 2.375, -2.3203125, -1.0703125, -3.1542969, 3.5351562, 2.53125, 1.0859375, 4.6796875, -0.5390625, -0.7348633, 2.4160156, -3.8398438, -2.5019531, -0.2043457, -1.5625, 1.3515625, 1.5585938, 0.43896484, -0.78027344, -1.6513672, 1.4130859, -1.1855469, -1.4101562, -3.0292969, 1.7373047, -1.4560547, 1.4765625, -0.25976562, -0.3630371, -0.32739258, -0.12866211, -1.0019531, 0.88720703, 2.3808594, -2.4746094, 0.6557617, -0.21008301, -1.375, 0.86621094, 0.8461914, 1.0380859, -0.71875, 0.62597656, 0.43066406, 2.6171875, -2.2617188, 0.75341797, -0.24157715, 1.2910156, -1.6962891, -2.8320312, 1.9677734, 2.9921875, -1.8896484, 0.9477539, -0.21240234, -1.4443359, 1.1992188, 2.1699219, -5.3554688, -0.44262695, -0.66748047, -1.4433594, 0.9560547, -0.09863281, -3.6054688, -1.1113281, 1.4052734, -0.21887207, 2.3222656, -0.28344727, -1.8818359, 0.98535156, -2.4082031, 0.22888184, -0.83935547, -2.6757812, 0.87158203, -1.6582031, -0.07318115, -2.2753906, 2.1640625, 3.0449219, -0.18078613, -2.6484375, 2.65625, -1.8251953, 0.48876953, -0.5932617, -0.94091797, -1.1240234, -1.7001953, 2.2109375, 0.53125, 2.234375, 0.24121094, 1.9609375, -0.40405273, 1.4394531, -1.2353516, 2.8457031, -1.7431641, 0.80371094, 2.8632812, -1.7265625, -2.0546875, -1.6728516, 2.1757812, -0.53222656, 1.2646484, 1.2207031, 0.48291016, 0.046569824, 1.4355469, -1.4541016, -3.3515625, -0.53466797, -0.14147949, -0.7998047, 1.3681641, 0.83496094, -0.2232666, 0.1616211, 1.6191406, -1.5634766, 1.6064453, 1.2373047, 0.5800781, 0.6669922, -2.4335938, -0.0960083, 0.9926758, 0.3161621, 1.5576172, 1.6611328, -1.4384766, -2.6074219, 1.0830078, 3.3046875, -2.8457031, 1.4511719, 2.5800781, 0.40795898, 1.0507812, 2.7011719, 0.52441406, 0.29541016, 2.1503906, -0.09039307, 0.030929565, 3.7617188, 0.49902344, -0.33935547, -0.51171875, -0.47265625, 0.120910645, -4.1054688, -1.3251953, -0.17785645, -2.9140625, 0.47387695, 1.1416016, -0.9067383, -0.55615234, 1.2119141, 1.4609375, 0.4807129, 0.39086914, -1.3134766, -0.61816406, -2.9296875, -3.4277344, -0.10534668, -2.0351562, -0.3256836, -1.9355469, 1.6640625, 1.7753906, 0.3371582, 1.4970703, 0.76220703, 2.5996094, -0.4777832, 1.7792969, 0.2631836, 1.7285156, 1.0234375, -1.3916016, -0.85058594, -2.0507812, -0.74365234, 1.3701172, -0.5708008, -1.9072266, -1.7519531, -0.65771484, -0.69140625, 1.1835938, 1.2529297, 1.3066406, 0.32910156, -1.3339844, 0.56689453, 1.7763672, -1.296875, 3.0390625, 0.24108887, 0.63916016, 0.12054443, 2.6171875, 1.4814453, -2.3085938, 3.046875, -1.2753906, -0.7529297, 0.04510498, -0.9868164, -0.94628906, -1.7880859, -0.6357422, -2.953125, -3.0703125, -1.7373047, 1.0830078, 0.30249023, -0.45141602, -0.37890625, 1.0449219, -1.5605469, 4.109375, 3.2851562, 0.11456299, 0.67333984, 1.2402344, -2, -0.5493164, 2.6054688, -0.7475586, 0.1652832, -0.26464844, -1.7890625, -0.1706543, 0.93359375, 1.421875, 2.1015625, 1.9833984, 2.1210938, 1.6699219, 1.3359375, 2.0253906, -1.1181641, 2.7695312, 3.0644531, -0.78808594, -0.6899414, 2.2421875, 3.3945312, 1.0654297, -0.30517578, 1.4121094, -0.7714844, -0.5175781, -0.5288086, -0.3869629, 1.4355469, -3.1738281, 1.828125, 0.07305908, 0.13085938, -2.7441406, -0.056762695, -2.5566406, -0.9316406, -1.5615234, 0.28710938, 2.9980469, -1.0976562, -0.5336914, -0.39135742, 0.7651367, -1.4599609, -4.3476562, -0.69189453, 2.3242188, -0.65966797, -0.5756836, 3.3789062, 0.45214844, 1.5234375, 1.2431641, 1.2841797, 1.4091797, 0.5463867, 0.75927734, 0.22497559, -0.2401123, 1.6552734, 2.5488281, -2.9921875, -2.3007812, 0.13427734, -0.97509766, -1.6103516, -2.1367188, 1.2011719, 1.6035156, 1.2041016, 2.015625, -1.2255859, 1.6298828, -0.63671875, 2.71875, -2.4941406, 1.5673828, 0.00096035004, -3.5566406, -1.390625, -0.7363281, 1.9658203, 1.9853516, 0.3779297, -1.9609375, 1.7919922, 0.9902344, 0.64404297, 1.4003906, 0.26049805, -1.3046875, 0.6977539, -0.92089844, 1.9013672, 0.7392578, -0.51660156, 0.15881348, 0.30786133, 0.10235596, 0.6142578, 2.03125, -0.9921875, -1.5234375, -1.9560547, -1.7910156, -0.5126953, -1.4746094, -1.9111328, -1.2421875, 0.82666016, -0.48828125, -0.81933594, 1.3417969, 2.1484375, 2.8574219, -0.53222656, -0.64941406, -2.0605469, 3.2363281, -0.25683594, -1.3183594, 0.7480469, 0.6298828, 1.8183594, -0.14428711, -0.6933594, 1.4140625, 2.9394531, -0.17565918, -1.6230469, -0.15539551, 1.1542969, 0.2692871, -0.6298828, 1.2304688, -0.54248047, -0.48120117, 1.1347656, -0.7685547, 0.37402344, 1.8798828, -0.117370605, -1.0371094, 0.21850586, -0.59521484, -1.0185547, -0.8276367, -1.7314453, -0.11029053, 5.0664062, 2.9765625, -0.27929688, -1.0195312, -4.0117188, -0.8964844, -0.8276367, 1.6171875, -0.54052734, -2.0722656, -0.18493652, 0.65722656, 1.5146484, -1.2832031, -0.046142578, -0.61035156, -1.1445312, -2.1367188, -2.0195312, 3.5410156, 1.8261719, 1.4726562, -0.8676758, 1.2167969, 1.6318359, 0.40966797, 2.6269531, 2.8769531, 0.6767578, -2.4941406, 2.1972656, -0.94970703, 1.4091797, 0.46679688, -0.24963379, 1.5126953, 0.7207031, -1.7763672, -2.9902344, -0.26367188]}, "B071NL9D7J": {"id": "B071NL9D7J", "original": "Brand: GasOne\nName: Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)\nDescription: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\nFeatures: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only\nCompatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P\nTo be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\n", "embedding": [-1.2880859, -1.1875, 0.3359375, -0.5566406, -0.0062446594, 1.8916016, 0.7451172, -1.0332031, 3.3125, -0.26733398, 1.7783203, 1.8964844, 1.6972656, -1.8242188, 1.4082031, -1.1484375, 0.10644531, 0.8100586, 0.28735352, 3.7695312, 1.7861328, -0.41430664, 2.3496094, -0.9682617, -0.65478516, 0.6928711, 3.0898438, -2.3652344, 0.22399902, 0.51464844, 0.6430664, 1.1591797, -1.6689453, 0.82421875, -4.1875, -1.5498047, 0.9140625, -0.55810547, -4.1054688, -1.6953125, -2.0039062, 3.0292969, 1.875, 0.8251953, -1.765625, -0.4946289, 3.1191406, -0.18774414, -1.7822266, 0.9277344, 1.6308594, 3.3984375, -1.7128906, 0.91552734, -0.50683594, 2.5390625, 2.2988281, -0.43481445, 1.8759766, 1.9833984, 2.0332031, 1.3085938, -1.5166016, -0.2705078, -0.8496094, 0.43701172, 0.15136719, 0.5415039, -3.0761719, -0.32739258, 0.8989258, 3.0664062, 0.53222656, 1.9326172, -2.7304688, -0.92626953, -5.1171875, 1.4785156, 0.5522461, -1.71875, -0.9667969, 0.6064453, 1.2792969, -0.42700195, 2.1210938, -1.9619141, -0.49291992, 1.3554688, 1.3095703, 0.99560547, -3.4472656, 3.5898438, -1.7617188, -1.9326172, -0.12890625, 0.19433594, -0.4140625, 2.0507812, 3.03125, 0.5864258, -2.7597656, -1.9560547, -0.29467773, 2.6601562, -2.0234375, -2.2675781, 0.27392578, 0.5888672, -3.6152344, 1.3876953, -0.6254883, -0.47143555, 2.5878906, -2.3984375, 0.8286133, -0.625, -1.1464844, -1.5273438, 2.4902344, -0.5605469, 3.2460938, 1.0322266, 0.4050293, -0.23925781, 1.2871094, 1.3691406, -2.1425781, 0.91015625, 4.1601562, -0.21862793, 0.33032227, -2.0429688, 2.2148438, -1.4042969, 2.7675781, -1.7011719, -0.7998047, -4.09375, -1.4873047, -1.5439453, -3.6640625, 0.124938965, 0.82421875, -0.6972656, -4.1992188, 1.3623047, -3.0644531, 0.7504883, 3.6074219, 0.3696289, 2.1894531, -2.3828125, -0.5649414, -3.9667969, 3.6210938, 1.1171875, 1.1943359, -0.6269531, 0.21520996, 3.1660156, -0.8769531, -0.30664062, -2.7363281, -0.91064453, 0.88378906, -2.6386719, 0.6166992, 0.79248047, -2.5566406, -0.26660156, -1.5908203, -0.18481445, -0.32495117, 1.1435547, -0.33154297, 1.1494141, 0.2709961, 2.7519531, 0.070007324, 1.109375, -3.4589844, -1.9667969, 1.2666016, -2.8144531, 2.5214844, -0.8496094, -0.89160156, -1.3632812, 2.5, -0.18359375, -0.4934082, 1.7382812, -0.81689453, 2.7402344, -0.5161133, -0.8935547, -1.9570312, 1.4150391, 0.5703125, 1.0263672, -3.0390625, -1.7539062, 0.08618164, -0.66552734, -1.0996094, -4.0351562, 1.3789062, -0.57910156, -1.3876953, 1.359375, -0.8959961, 1.1181641, 2.6875, -0.0519104, -0.51708984, -1.6132812, 3.7675781, 3.8925781, 0.29663086, 0.021896362, -0.08251953, -0.6064453, 1.609375, -0.9501953, 1.0742188, 1.8642578, -1.2050781, 0.9506836, -3.4804688, -2.6347656, 2.8066406, 0.66748047, 1.0263672, 0.3713379, -0.34326172, 1.3974609, 2.3789062, -0.95996094, 0.7285156, 2.0390625, 0.97265625, -1.5390625, -2.9316406, -0.84765625, -2.6757812, 3.6914062, -0.5126953, -0.8041992, 1.6689453, -1.1923828, 1.5957031, 1.5722656, -1.1152344, -2.0664062, -3.7734375, 0.86621094, 1.2792969, 2.1835938, 0.4741211, 1.3876953, 1.8476562, -0.2824707, 2.2109375, 0.46875, 1.7001953, -0.9038086, 1.9013672, -2.2148438, -0.9477539, -1.3623047, -0.9140625, 2.203125, 2.0859375, -2.8730469, 2.1601562, 2.2988281, -3.1914062, 2.3535156, 0.47851562, -0.43066406, 2.6699219, -2.3027344, -0.19165039, -1.0039062, 3.8339844, 1.6318359, 2.2382812, -1.6425781, -0.8095703, -0.1116333, 4.2851562, -0.17529297, -1.8154297, 1.4550781, 2.0390625, -0.6230469, -1.1708984, 0.61083984, -0.78515625, -0.75097656, -0.17102051, 0.8769531, 0.20043945, 1.4228516, 2.8066406, 2.3457031, -1.8789062, -0.28979492, 1.8261719, 1.53125, -1.8037109, -1.9902344, -0.88134766, 0.49414062, -2.7265625, -0.8833008, 2.5253906, 0.6484375, 0.13903809, -1.9824219, 1.2841797, 1.3583984, 1.4140625, -2.2519531, 0.6176758, 1.1455078, -0.08654785, 1.8457031, 0.38134766, 1.1113281, 1.6611328, -0.09893799, -0.7416992, -2.6425781, -2.4101562, 1.6943359, 0.0093688965, -2.7675781, -0.34399414, -1.9960938, -2.3242188, -0.578125, -2.0742188, 3.3125, -0.13879395, -0.66796875, -0.7495117, -0.18591309, -0.6660156, -1.3974609, 0.78222656, 2.4570312, -1.109375, -0.42529297, 0.54589844, -1.3652344, 0.09429932, 2.1074219, -0.95654297, 0.17810059, 1.9414062, -0.22961426, -2.0410156, -0.8041992, -0.12561035, -0.44262695, 2.8808594, -4.3632812, -1.7714844, -0.122924805, 0.20581055, -0.05267334, -0.43896484, -2.1308594, -2.1074219, 1.9443359, 1.1357422, 1.2353516, -1.2011719, 1.6357422, 0.45410156, -1.2988281, 1.1923828, -4.75, -2.5722656, 0.027862549, 0.10839844, -1.4238281, 1.4091797, -1.9169922, 1.3046875, 0.6640625, 0.37719727, -0.89941406, -0.57666016, -0.41748047, -0.03289795, 1.4003906, -1.3955078, 0.08905029, 1.1972656, -0.3190918, -3.2539062, 1.8681641, -0.63964844, -2.8730469, -0.2758789, -1.3515625, 0.103027344, 0.26879883, -1.6542969, 0.6958008, 0.77978516, -0.033843994, 0.30810547, -1.3193359, 1.6542969, 1.4453125, -2.4492188, 1.5644531, -1.8251953, -0.008712769, -2.5546875, -0.9453125, 3.5957031, 1.2695312, 4.7695312, -0.23706055, 1.0888672, 1.4824219, 0.79345703, -0.015556335, -3.0507812, -0.97265625, 2.4824219, -1.7597656, 0.56640625, 0.09173584, -0.33569336, -3.7050781, -0.45507812, 1.6367188, -1.7304688, 2.5898438, 0.13452148, 0.54345703, 0.3876953, -1.1669922, 2.2285156, 0.15551758, -0.92578125, 1.5068359, 1.8037109, 0.26098633, -1.0673828, 1.1074219, 1.5498047, 2.4765625, 2.2246094, 0.63671875, -0.9477539, -1.8583984, -0.43359375, -0.44873047, 0.9814453, 2.0410156, 1.2841797, 1.0048828, 0.21325684, -0.5161133, -0.3798828, 1.4023438, -2.0195312, -0.36645508, 1.4003906, -1.03125, -0.92041016, 0.7314453, -1.6289062, -0.6582031, -0.106933594, -0.2055664, 0.8203125, -0.18164062, 1.0009766, -0.29174805, 1.3740234, -0.51953125, 1.2216797, -0.4440918, 1.3857422, -0.26098633, -0.14135742, -3.6757812, -0.8203125, -1.2900391, -2.7304688, 1.5507812, 1.9296875, 1.1650391, -2.4375, 2.9199219, 0.9916992, 0.016189575, 2.6738281, -0.1809082, -0.9902344, -3.8085938, -0.8178711, 0.5629883, -0.7680664, 1.4638672, 0.8803711, -2.9882812, 0.6611328, -1.7021484, -1.1884766, 1.4345703, -0.52246094, -1.9394531, -0.8183594, -1.0830078, 2.171875, -1.6914062, 3.7695312, -0.14453125, -1.3193359, 2.8066406, -3.9960938, -0.09979248, -0.76953125, -3.8300781, 2.5097656, -1.5371094, 1.2988281, 3.6855469, 3.2460938, -0.72998047, 3.2480469, 0.8100586, -4.2421875, -0.94189453, -0.78466797, 0.18762207, -3.0585938, -3.5449219, 1.7207031, 1.5771484, -0.34228516, -1.2490234, 0.95214844, -1.8134766, -0.64697266, -1.140625, -3.09375, -1.6962891, -0.35302734, 1.2783203, -0.2758789, -0.6982422, 0.95947266, -1.5634766, 0.31298828, -4.1054688, 3.5683594, 1.4287109, 0.71728516, -1.3154297, 5.0039062, 2.0078125, -1.9257812, 0.98828125, -1.7011719, 1.9560547, -0.017974854, -1.3916016, -1.5019531, 1.0595703, 1.6748047, -0.028640747, -1.2158203, -2.1503906, -0.83251953, 1.7861328, 2.5507812, 1.765625, 1.5751953, 0.2746582, -2.8554688, 1.6376953, 0.234375, -3.0878906, -0.17480469, -0.22839355, -0.08465576, -1.1396484, -0.44384766, -3.890625, 1.2724609, -0.20812988, 0.054351807, -3.4882812, 1.0751953, -1.5664062, -0.23864746, 1.0292969, -2.9570312, -0.5214844, -0.51660156, 1.3164062, 0.2319336, 0.18017578, -1.2626953, -0.78515625, 0.33251953, 1.1318359, -0.7988281, -0.91552734, 1.3847656, 1.0263672, 1.5996094, 0.83740234, -0.33398438, -1.375, -2.9902344, -1.6269531, -0.3803711, 3.359375, -1.6181641, 1.6396484, 1.1474609, -1.0039062, -3.5390625, 2.2753906, 3.1328125, 1.7236328, -0.095703125, 1.0966797, 1.8808594, 3.0761719, 1.4423828, 1.625, -0.03475952, -0.45654297, 0.6196289, 1.1630859, 1.8916016, -1.5634766, 0.27416992, 1.6123047, 1.9619141, 2.1484375, 2.1054688, -0.9111328, -0.8227539, 1.1542969, -0.2631836, -2.5039062, -0.43481445, 0.3930664, 1.0800781, 2.3457031, -1.3574219, -0.67333984, 0.07836914, 3.9609375, 1.0830078, -0.7558594, 1.3574219, -0.6176758, -0.45288086, -4.1875, -1.2138672, -0.8359375, 0.04977417, 2.4433594, -2.4785156, 0.9321289, -0.16967773, 1.421875, 1.5800781, -0.34277344, -0.77978516, -0.8720703, -1.1914062, 0.07067871, -0.99560547, -0.67871094, -2.3027344, 1.0947266, 1.7353516, 1.7402344, 0.52001953, 1.484375, -1.2441406, -2.1503906, 0.23095703, 1.1298828, -0.44018555, -1.1005859, -0.88916016, 3.3066406, 0.23144531, 0.63916016, 0.035980225, -0.6328125, 0.5673828, 1.7587891, -0.35961914, 1.9628906, -1.2939453, -0.24853516, -1.5322266, -5.0507812, -1.5585938, 1.0146484, 1.21875, -1.1376953, -1.5019531, -0.6386719, 1.9853516, -0.099853516, 0.6801758, -2.5527344, 0.99560547, -2.0175781, 0.4921875, 0.56347656, -0.79003906, -1.0605469, -0.060150146, 0.23156738, -0.54541016, 1.9824219, -1.5068359, -2.5136719, 1.1953125, -0.95410156, -1.0498047, 0.121276855, -1.5673828, -2.75, 0.37646484, -0.6166992, -3.2539062, 1.6103516, -2.7636719, 0.27124023, 2.1054688, 0.52734375, 1.4082031, 1.4599609, -0.39233398, 1.3574219, 2.2246094, 3.4765625, 0.038146973, 0.07110596, 2.1503906, 0.72558594, -1.7490234, -1.9707031, 0.7578125, -0.8652344, 1.4169922, 1.6542969, -0.7573242, -0.44433594, -3.0390625, -0.9326172, 0.56640625, -2.5078125, 0.63671875, 1.6689453, 0.4951172, 0.8261719, 0.9638672, -0.39892578, -1.65625, 0.3215332, 0.64697266, -0.33325195, -3.1347656, 2.6738281, -0.7236328, 1.4111328, -3.703125, 0.64746094, 1.3789062, 1.8535156, 1.3867188, -0.16967773, 1.3300781, -0.11773682, -0.05706787, -1.8642578, 2.2089844, 1.2128906, 2.3828125, -0.62841797, 0.46728516, 2.328125, 0.123413086, 0.828125, -0.04736328, -0.63671875, -0.76171875, 2.2421875, 2.5234375, -3.0097656, -0.62402344, -0.09667969, -0.609375, -0.5629883, 0.14135742, 0.47924805, -1.9492188, -0.30322266, -1.2900391, -3.1816406, -1.7705078, 1.0439453, -0.19091797, -1.0146484, -0.08148193, 2.1542969, -1.5097656, -1.2304688, 2.2148438, 1.0898438, -2.8496094, -1.4892578, -2.4023438, -1.4619141, 7.2062016e-05, -1.0976562, -0.9121094, 2.5429688, 1.8583984, 1.0908203, -0.9379883, -0.35375977, 2.3574219, 1.7441406, 2.5527344, 2.1972656, 0.45654297, 0.19580078, 2.1347656, 0.90283203, 0.3491211, -0.8696289, 0.37231445, 1.0693359, -0.37817383, 1.2265625, -1.9609375, 1.4248047, -1.5976562, -0.47729492, 0.82958984, 1.0234375, 2.03125, -4.09375, -1.6513672, -1.1992188, 0.5161133, -3.2910156, 0.10797119, -1.8769531, -0.19592285, 3.2753906, 0.94091797, -0.6147461, 0.34472656, -3.1777344, 0.8876953, -1.2978516, 4.1875, -0.17858887, 0.9301758, -1.4091797, -2.1347656, 0.5078125, -0.37524414, -1.0839844, 0.3034668, 0.81152344, 0.4416504, 0.45507812, -1.6025391, -0.19042969, -3.5761719, 2.1757812, -1.0234375, 1.5976562, 1.9599609, -1.25, 2.9140625, -0.84228516, -4.234375, -5.3945312, 1.9716797, 0.49780273, -0.8803711, 0.3400879, -3.0449219, 2.9003906, 0.0115356445, 0.36523438, -3.53125, -0.8378906, 0.87402344, 1.7021484, 0.05480957, 2.0058594, -1.1855469, 1.9521484, 0.24206543, -2.6015625, -0.19470215, 2.7519531, -0.9121094, -0.038909912, -0.2849121, 1.0664062, 0.78564453, -1.6904297, 2.796875, 0.12023926, -0.36010742, -1.1181641, 0.7885742, 2.5332031, 1.1474609, 0.5410156, -0.42211914, 0.16223145, 0.40576172, 0.8774414, 0.23486328, -1.6318359, -1.6318359, 0.4819336, -0.12878418, -1.8476562, -2.1289062, 2.6289062, -1.1455078, -2.9785156, 1.4794922, 1.5585938, -0.6298828, 0.064941406, 2.0683594, -1.1132812, -0.76904297, -1.9726562, 0.30615234, -2.8144531, -0.85595703, 1.5048828, -1.2451172, -1.359375, -2.1503906, -0.77978516, 1.1660156, -1.5195312, -0.65185547, 1.1728516, -0.5883789, -0.35205078, 0.27563477, -0.8120117, 1.9716797, 2.4492188, -1.2441406, 0.5649414, -0.8642578, -1.0332031, -1.1416016, -1.9296875, -1.5048828, -1.0234375, 1.7177734, 2.3027344, 2.7617188, -3.2382812, -0.9316406, -0.2919922, -2.7851562, 1.9951172, -0.74365234, -0.39379883, 0.36035156, 2.7519531, 1.9824219, -0.90478516, -0.9692383, -2.2226562, -0.5229492, 1.4394531, -2.4257812, 0.80908203, -1.765625, 1.4072266, 0.7285156, 2.6601562, 3.9101562, 0.41870117, 0.001543045, 0.83251953, 0.5024414, -2.2460938, 1.6738281, -0.077819824, -0.20056152, 0.77441406, -0.9584961, 1.5322266, 2.5644531, -1.0634766, -1.03125, 1.7929688]}, "B07F8N2WQS": {"id": "B07F8N2WQS", "original": "Brand: Ruutcasy\nName: Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24''x13''x9''\nDescription: What\u2019s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

Portable Camping Grill Details
L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
Weight:2.5Kg
Material: Rolled and stainless steel

Luxury Travel Grill
Quickly assembled BBQ
Lightweight fold design
Ventilation holes and Drawer type dust box

Travel Camping Barbecue Grill
For picnics in the park
For sociable hours during camping
For the lunch break during hikes
Great when you get the munchies at a festival
\nFeatures: \u3010Brilliant Camping & Party BBQ Tool\u3011Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families.\n\u3010Lightweight & Portable\u3011Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up.\n\u3010Perfect For Outdoor\u3011This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It's perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group\n\u3010Best BBQ Grill For You\u3011The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact\n\u3010QUALITY GUARANTEE\u3011: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.\n", "embedding": [-1.8056641, 2.578125, 0.7373047, -0.38085938, -1.4853516, 0.28759766, 1.2041016, -2.1386719, -2.1660156, 1.6865234, 0.36621094, -2.328125, 1.2353516, -3.3925781, -0.8354492, 1.0693359, 0.89990234, 1.1416016, 2.4765625, 0.070373535, 0.15759277, 0.6171875, 1.7910156, 1.1142578, 1.4072266, -1.5478516, 3.3320312, -2.0898438, 1.3701172, 0.27392578, 2.6835938, 0.3708496, 1.7041016, 2.6914062, -2.296875, 0.51171875, -2.0488281, 1.2441406, 0.30737305, -0.20983887, 0.4086914, -3.1933594, 4.0390625, -1.3300781, -2.3320312, -1.1904297, 0.2487793, 0.77246094, 0.9169922, -3.5039062, 1.8291016, 1.0498047, 2.0761719, 1.6621094, -3.140625, -0.68066406, -1.1445312, -2.0234375, 1.6796875, -1.4316406, 1.8154297, 0.1204834, -0.63427734, 1.2011719, -0.13049316, -2.4082031, -0.19470215, -0.5473633, 0.05731201, -1.2285156, 0.20324707, -1.0878906, -2.3769531, 0.40820312, 1.4589844, -0.33081055, -0.55029297, 1.5429688, 1.4931641, 1.9248047, -2.7636719, 4.7929688, 0.95166016, -1.0810547, 0.3017578, -0.14135742, -2.2773438, -1.4208984, 2.9667969, 1.1044922, 0.05831909, 2.6367188, -1.7382812, -4.0859375, 1.2011719, -2.4863281, 2.2851562, -0.2783203, -0.7416992, 2.3417969, -0.97753906, -0.08026123, -0.15722656, 0.00907135, -2.4472656, -0.49365234, 2.1855469, -1.0380859, -0.39892578, 3.0664062, -2.1835938, 0.8173828, 1.6337891, 0.78466797, -0.04309082, -0.4584961, -1.6181641, 2.4765625, 1.9433594, 1.5273438, 4.3242188, 1.4267578, 0.59033203, -3.7382812, -0.5341797, -1.7285156, -0.95458984, 2.6054688, 2.515625, -0.53808594, -0.46435547, -0.6430664, -0.67333984, 0.6948242, -2.765625, -2.3496094, -2.1972656, -0.3708496, -4.0625, 3.0839844, -1.2451172, 0.61621094, 4.4609375, -1.4492188, -2.9238281, 0.4819336, -0.6166992, 2.59375, -0.09869385, -1.7978516, -0.36987305, -2.2460938, -0.92333984, -0.7910156, 1.9335938, -0.06085205, -1.0185547, -1.5712891, 2.8847656, 0.17773438, 1.6298828, -3.0917969, -0.9926758, 1.1074219, 1.4257812, -3.1132812, 0.22277832, 3.1191406, 0.26123047, 2.6015625, 1.0830078, -1.640625, 1.7460938, 0.7260742, 2.5605469, -1.8027344, -1.1425781, 2.7460938, 0.74902344, -1.1689453, 0.93115234, -0.8466797, 0.7294922, 2.2519531, -0.0770874, -1.0400391, 0.49560547, -0.1665039, -0.75634766, -2.2832031, 0.18395996, -0.81103516, -2.2148438, 0.17944336, -0.58691406, -0.64941406, 0.03186035, -1.0878906, -1.3613281, 1.7392578, -0.4921875, -0.39331055, -1.0771484, -0.31445312, -2.7753906, -2.0214844, -0.29467773, -0.5786133, 2.8769531, 0.8774414, -0.9902344, -1.1132812, 2.3847656, 1.5224609, 0.3491211, -0.6381836, 0.65625, -1.3339844, 1.1435547, 1.9472656, 0.16467285, -0.8935547, -1.3994141, 4.2148438, -0.68896484, 2.234375, -0.7910156, -0.9042969, 1.4208984, -0.3894043, 2.3007812, 0.53515625, -0.6982422, 0.23730469, -1.5556641, 1.8574219, 0.8022461, -2.3046875, -1.8779297, -0.30737305, -0.1307373, -1.9072266, 0.17553711, -1.5830078, -0.45874023, -1.5908203, -1.2792969, 3.2773438, 2.0820312, -1.1953125, -0.50878906, 1.1679688, -0.32104492, 2.1386719, 0.7558594, 2.2421875, -0.40185547, 0.43847656, -2.3671875, -1.1494141, 0.27514648, 2.9140625, 0.44189453, 0.58984375, 1.7832031, -0.9741211, 1.9853516, 1.0166016, -2.5664062, 0.6425781, 1.6914062, 1.9384766, 0.9946289, -0.25341797, 1.6123047, -2.4453125, -0.46899414, -0.9902344, 2.0136719, -0.14880371, 0.13989258, 0.19238281, 1.7480469, -1.4013672, -1.9804688, -2.2675781, 0.28173828, -0.6689453, 1.8759766, 1.5859375, 4.1953125, 0.2536621, -1.4423828, 3.6972656, -3.3730469, 1.0927734, 1.5585938, -0.29760742, 0.003768921, 1.2763672, 0.21069336, 1.1904297, 0.63378906, 1.7207031, -3.2441406, -1.5126953, 1.6660156, -3.9433594, -0.33081055, 2.6835938, -0.48950195, -0.17700195, -1.1962891, -0.67333984, -2.0625, -1.3710938, 0.13012695, -1.6865234, 1.1425781, 3.28125, 0.7114258, -0.1381836, -0.83251953, -4.2109375, -1.4257812, 0.9458008, -1.3408203, 0.9794922, 2.1953125, -0.62939453, 0.3388672, -0.52490234, 1.7041016, -1.7265625, -2.5664062, -2.6171875, -0.20581055, -1.5976562, 0.4609375, 0.5229492, -0.40625, -0.9428711, -2.6992188, -0.78271484, 0.2541504, -3.7363281, -0.058746338, 0.9746094, -0.6142578, 0.7661133, -2.0175781, 0.1274414, 0.6713867, -4.7460938, 0.10369873, 0.08929443, 2.4042969, 0.37060547, -2.1445312, 0.61572266, -1.5166016, 0.77001953, -0.71728516, 2.1269531, 0.051635742, -1.7695312, -0.3918457, -2.4472656, 0.97998047, -0.117492676, -0.3942871, -1.4345703, 1.4306641, -2.8496094, -1.9072266, 0.14477539, -1.2578125, 4.3085938, -1.1933594, 0.70703125, -0.6694336, -1.6044922, -0.7915039, 0.28222656, -2.9042969, -2.6171875, 1.2128906, -1.0810547, -2.2050781, -2.2714844, -0.26416016, 0.36889648, -1.5332031, -0.88623047, 1.9121094, -1.8144531, 2.1425781, -2.9160156, -0.4362793, -0.46313477, 2.4414062, -0.110839844, -0.76953125, -1.7832031, -0.91552734, -1.0800781, -0.46313477, -0.89501953, 1.9599609, -1.0332031, -0.14672852, 1.3222656, -0.45898438, -0.4909668, -0.20532227, -2.6875, 1.515625, 0.70166016, -1.6796875, 1.6445312, 0.090148926, -0.83154297, -3.7148438, -0.71240234, 2.9863281, 0.91259766, 1.1904297, 0.60009766, -0.19641113, 0.6176758, 0.7734375, -1.3847656, 0.17150879, 1.3603516, 2.7988281, -2.15625, -1.7109375, 1.3671875, 2.5878906, -2.8867188, 2.1210938, 1.9160156, 0.70751953, 1.8378906, 2.9609375, 1.6484375, 0.47705078, -0.62109375, 0.6269531, 2.1503906, 0.7050781, -1.5488281, 0.4338379, -0.5205078, -0.48950195, 1.2119141, -0.5576172, 0.042419434, 2.5078125, 2.4785156, 0.7260742, -2.8789062, 1.3125, 1.7070312, 1.7470703, 0.80908203, 1.7539062, -1.015625, -1.7177734, -0.14001465, -0.44189453, 0.40625, 0.008918762, 1.1025391, 1.4550781, 0.80029297, 0.4855957, -0.0748291, -0.234375, -2.2773438, -1.4892578, 0.53222656, -2.8242188, -2.9101562, 0.5698242, -3.7089844, -3.1132812, 0.057037354, 2.0546875, -0.91308594, -1.3251953, 1.1630859, 2.5859375, 0.3022461, -1.8378906, -3.2324219, 2.1699219, -0.21435547, 3.2558594, 2.3339844, -1.0859375, 1.8066406, -1.0546875, 2.3789062, 0.3449707, 0.21960449, -1.6894531, -1.1757812, -2.1289062, 1.1064453, 0.45654297, 1.2011719, 0.41235352, -2.2558594, -0.1616211, -2.8828125, 0.8051758, 2.4335938, -1.4228516, -0.51123047, 1.0009766, 2.1855469, 0.72216797, -2.4394531, 3.4492188, 0.16271973, -1.9140625, 1.2255859, -2.3886719, -1.4677734, -2.203125, -4.0273438, 1.4755859, 0.84472656, 0.4025879, 2.2890625, -0.081726074, -1.4755859, 2.7890625, -0.021972656, -0.17602539, 0.27075195, -3.2226562, -0.30981445, -1.9140625, 1.0449219, 1.6582031, -0.30541992, -1.3222656, -2.0136719, -1.6220703, -0.07775879, 2.4042969, 1.6005859, -1.3056641, 0.17236328, -1.4140625, 1.0283203, -1.5527344, 0.21911621, 0.047851562, -1.6728516, 0.0008621216, -1.2128906, 1.4169922, -1.5322266, 0.47924805, -0.2841797, 1.3027344, -0.0149002075, -1.0205078, -0.97265625, 2.2890625, 2.8300781, -1.2236328, -2.7617188, -1.5498047, -0.5107422, -2.2109375, 1.0878906, -0.5649414, -0.4567871, -3.4375, 1.1572266, 0.22619629, 1.5507812, 2.0351562, 0.48999023, -1.4140625, -0.8173828, 0.12200928, -2.1445312, -3.4257812, -1.4453125, -1.0390625, -0.35327148, -1.3466797, -1.6503906, 1.1210938, -0.6074219, -0.47729492, 1.1347656, 2.7402344, 1.2617188, 2.5136719, 4.3398438, -0.43432617, -0.06970215, 1.8642578, -2.3027344, -1.6962891, 1.6503906, -0.48364258, 1.3681641, 2.3359375, 1.359375, -1.3486328, -0.98583984, -0.33569336, -2.4003906, -1.3291016, -1.578125, 3.3359375, -1.3789062, -1.2236328, 0.9379883, -0.9790039, 2.6640625, -0.046844482, 0.7553711, 0.4309082, 0.61572266, 0.6088867, -0.45483398, 1.3466797, 0.60791016, 0.42138672, -0.75146484, -0.7705078, -1.1210938, -0.7402344, 0.09460449, 2.5585938, -2.1601562, -1.9550781, 0.47338867, -0.72265625, -0.8417969, -1.5302734, 0.9321289, 2.0058594, 0.4099121, 2.2578125, -0.6801758, -0.62890625, 2.703125, 1.2382812, -2.2128906, -1.0087891, 0.36694336, -1.0849609, 0.23791504, -0.52685547, -3.5585938, 0.67333984, -0.055480957, -0.7055664, 1.4208984, -2.4648438, -0.6064453, 1.1123047, -2.6328125, -0.00040960312, 0.42895508, -2.40625, 0.7607422, -1.0878906, 1.1699219, -0.34106445, 2.5957031, 3.53125, -0.8725586, -0.2861328, 0.69873047, -1.2978516, 1.3242188, 0.3869629, -1.4599609, -4.6796875, -2.2539062, 1.6416016, 2.5644531, 2.6289062, -0.075927734, 0.42529297, -1.3867188, 0.27270508, -2.5351562, 3.3984375, -1.4355469, 0.8149414, 3.0371094, -1.0117188, -0.91845703, -1.8320312, 1.8759766, 1.5009766, 2.9980469, 1.5927734, -0.1048584, -1.3613281, -0.82373047, -1.8955078, -5.5859375, -1.75, -0.50439453, 0.5332031, 1.0400391, 0.8828125, -1.4980469, -0.45458984, -0.02041626, 1.7988281, -0.5185547, -0.90966797, 0.17456055, -0.027511597, -1.3330078, -0.50927734, -0.51220703, 2.4511719, 2.4609375, 1.5058594, -1.3916016, -2.6347656, -0.20141602, 0.8378906, -3.2050781, -1.0673828, 0.11730957, -0.5205078, -0.055419922, 0.6098633, 1.5771484, -0.060150146, 2.0175781, -1.2998047, -0.058013916, 0.06488037, 0.19787598, 1.7480469, -1.6083984, -1.5195312, 1.7158203, -3.4257812, 1.9541016, 1.3134766, 1.1005859, 1.0771484, 0.9609375, -1.2158203, 0.6821289, 0.38623047, 0.51464844, 0.95214844, -0.0158844, 1.0332031, -0.3786621, -2.9433594, -2.65625, 0.53759766, -1.2597656, -1.1669922, -2.8046875, 1.0097656, 1.5976562, 0.56347656, 1.5078125, 0.8833008, 0.359375, -1.6513672, 1.03125, 0.89453125, 2.3085938, 1.9804688, -1.8095703, -1.1933594, -1.6982422, -0.32617188, 0.12683105, -1.1357422, -0.17175293, 0.09893799, -1.7255859, -0.4013672, 0.7753906, 1.9960938, 2.5507812, 0.5493164, -0.31884766, 1.6855469, 1.390625, -1.2724609, -0.24609375, -0.06536865, 2.0214844, -0.51416016, 3.0605469, -1.6132812, -2.1425781, 1.3730469, -1.4785156, 2.5546875, -0.86816406, -2.5390625, -0.16467285, -1.1230469, 0.16455078, -2.9101562, -1.3710938, -1.3798828, 2.4453125, -0.023727417, -0.8574219, 1.6552734, 4.0703125, -1.7246094, 2.1464844, 2.0292969, 0.3557129, -0.08917236, 0.82714844, -1.875, 0.05255127, 0.59814453, -1.375, 1.3310547, -0.3330078, -0.3251953, 0.33935547, 4.0703125, 2.3085938, 2.375, 0.99365234, 1.1386719, 1.6914062, 2.6855469, 4.8125, -0.012786865, 0.33862305, 2.8378906, -2.4316406, 0.73828125, 4.34375, 2.3027344, -1.1630859, -1.03125, 0.73779297, 0.2133789, 0.17260742, -1.7158203, 0.82421875, 0.07421875, -3.1953125, 3.5039062, 0.67529297, 0.87353516, -0.4260254, 1.9794922, -1.2666016, -0.4099121, -1.8300781, -1.3945312, 2.4648438, -0.8276367, -0.73876953, -0.9785156, 1.7392578, 1.6367188, -3.3300781, 0.108947754, 1.5185547, -0.5708008, -1.6474609, 2.8613281, 2.2109375, 1.6201172, 0.2919922, 2.6308594, 1.9091797, 0.15368652, 2.2714844, 1.3886719, 1.6855469, -0.36401367, 2.5078125, -1.3144531, -3.359375, -2.5859375, 0.1459961, -1.8603516, -0.39404297, -0.20910645, 0.28881836, 1.4033203, 0.98828125, -2.5390625, 1.3222656, 2.0019531, 2.1621094, -1.0029297, 0.8540039, -1.5390625, -3.9238281, -2.5976562, -0.9482422, 0.9003906, 2.4082031, 1.7265625, 0.21765137, 2.2402344, 2.4570312, 1.7988281, -0.13330078, 0.92871094, -1.4589844, 0.3256836, -1.4580078, 1.5830078, -0.96484375, 1.1669922, -0.83251953, 0.9794922, 1.2841797, 0.7626953, 2.1269531, -1.1474609, 0.46020508, -1.3896484, -0.1928711, -0.36132812, -1.0283203, -2.3125, -0.19128418, 0.33764648, -1.5507812, 0.69091797, 1.2324219, 2.3632812, 0.3955078, 0.17504883, -0.55371094, -0.48168945, 1.4716797, 0.37768555, -0.6152344, -1.7480469, -0.043029785, 0.9145508, -0.15490723, -1.1777344, 0.04458618, 0.3857422, 0.3540039, 0.28295898, 2.1289062, -1.6523438, 0.91015625, 0.05078125, 0.36767578, -1.8017578, -2.3417969, -0.57470703, 0.101867676, 1.0693359, 3.625, 1.3261719, -2.7910156, -0.328125, 0.32592773, 0.19689941, -1.8554688, -1.2939453, 0.026855469, 4.2226562, 2.6328125, -0.74316406, -2.5351562, -3.0214844, 0.7426758, -0.23461914, 1.9560547, 1.1386719, -2.7402344, 0.16540527, -1.9501953, 2.6953125, -0.9404297, -1.2021484, 0.49194336, 0.8334961, -0.58691406, 0.9736328, 1.4521484, 2.9746094, -0.9736328, -0.61865234, 2.9609375, 1.4345703, 2.1875, 2.375, -1.2890625, 1.2958984, -3.53125, -0.4753418, -1.2666016, 1.3583984, -0.4951172, 0.9658203, 1.4453125, 0.4580078, 1.3925781, -2.3828125, -0.9448242]}, "B07RKYMBCN": {"id": "B07RKYMBCN", "original": "Brand: Kaluns\nName: Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories\nDescription: \"Easily Switch Wood Chips

The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

Premium Features

Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

Great Gift Idea

Surprise your Friends and Family with a Kaluns\u00ae smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

Warning:

Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns\u2122 You made the right choice, don't hesitate, Click the 'Add to Cart' Button Now!

\"\nFeatures: Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey\nDeluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust\u00a0 and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast.\nConvenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard.\nA New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.\n", "embedding": [-2.21875, 2.4609375, 2.2148438, -0.27954102, 0.90527344, -0.4892578, 1.6318359, -0.8354492, -0.81591797, 0.84472656, 0.2685547, -0.8774414, -0.37573242, -1.9902344, 0.48535156, -1.421875, -0.51708984, 0.7446289, 3.6035156, 0.18737793, 1.0996094, 0.14282227, 1.9814453, -0.74658203, 3.4082031, 0.22973633, 3.796875, -1.1464844, 2.3613281, -0.15991211, 0.7104492, -1.1962891, 0.79052734, 0.5834961, -0.90722656, 0.42456055, -0.18005371, -0.5629883, -0.44921875, 1.2412109, -0.28198242, -1.1845703, 0.7949219, 2.0351562, -2.6191406, -2.7402344, -0.56347656, -2.0117188, -2.21875, -0.22924805, -0.1986084, 1.6621094, -0.3515625, 1.0537109, -1.9833984, 4.0507812, 0.6972656, -1.9296875, 1.3710938, 0.10461426, -0.7475586, 0.44091797, -0.048095703, 2.2089844, -1.2685547, 0.07739258, -1.2705078, -0.59277344, 0.43432617, -0.07269287, 0.68408203, -1.1572266, -0.5283203, 0.98779297, -1.9003906, -1.3291016, -0.8701172, 1.6708984, -1.5087891, -0.038909912, -0.026428223, 2.5332031, -0.13671875, 0.19970703, -0.14855957, -1.2714844, -1.2548828, -0.21740723, -0.16589355, 0.6743164, 1.1796875, 1.7578125, -0.53466797, -5.2382812, 1.3466797, -2.3242188, -0.17944336, -0.27246094, -0.4375, -0.72216797, -1.3935547, 0.25512695, -0.8339844, -0.5263672, -1.3691406, -0.31713867, 0.35864258, 1.5322266, -2.2167969, 0.5385742, 0.03125, 1.0136719, 1.2636719, 1.2255859, 2.8671875, -0.04498291, -0.93896484, 0.46484375, 1.1582031, 0.7739258, 2.65625, -0.43652344, 0.6586914, -1.1191406, 0.84521484, -0.14782715, -1.6445312, 1.1669922, 4.90625, -0.6123047, 2.0976562, -1.3085938, 0.8305664, -0.33276367, -1.2675781, -1.6142578, -0.3203125, -0.47436523, -1.0820312, 0.36010742, -0.49267578, 2.9414062, 1.8447266, -1.3945312, -3.625, 0.26831055, -1.0078125, 0.6435547, -0.47460938, -1.8886719, 1.7490234, -1.9296875, 3.0078125, -0.95703125, 2.1445312, -0.96533203, 0.32788086, -2.5683594, 0.8984375, 1.0693359, 0.94677734, -1.4179688, -0.5029297, 1.9316406, -0.95703125, -3.7441406, -0.91259766, 0.015914917, -0.9243164, 2.3417969, 0.22277832, 0.16003418, 0.7734375, -0.18762207, 0.12573242, -2.7675781, 0.059417725, -0.06500244, 0.41015625, -0.2319336, 0.6948242, -1.6669922, 0.79541016, 0.3659668, -1.5146484, 0.5488281, 2.3339844, -0.6279297, -0.57714844, -0.77246094, -0.76416016, 2.3359375, -1.7089844, 1.5800781, -1.7373047, -2.0957031, -1.8583984, -1.5498047, 1.6503906, -0.4663086, -0.6479492, -0.32666016, -0.8833008, -1.0205078, -2.2207031, -1.5078125, -0.546875, -1.7441406, 2.0878906, 2.8066406, 1.2597656, -1.0576172, 0.44433594, 1.4169922, -1.9052734, -2.4316406, 0.6669922, -0.7167969, 2.0996094, 1.2617188, 0.76416016, -1.4951172, 0.028930664, 2.7519531, 2.0644531, 3.7265625, 1.1953125, 1.3769531, 0.10803223, 0.017822266, 0.5078125, -0.41015625, -0.54541016, 1.3183594, 0.6040039, 0.95654297, 1.3808594, -0.22009277, -1.4482422, -1.0117188, -0.26049805, -1.5683594, 0.46411133, -0.8144531, -1.3789062, -1.1005859, 0.8286133, 0.18359375, 0.2944336, -1.046875, -2.5761719, 2.1621094, 0.29833984, 1.0185547, -0.34204102, 2.1230469, -1.5224609, 0.23718262, 0.9584961, -0.99609375, 2.9609375, 1.4306641, 0.5151367, 1.6201172, -0.00042200089, -0.546875, 1.0087891, -0.72216797, -1.8583984, -0.25732422, 0.8588867, -0.5854492, 3.6640625, -1.5478516, 0.7651367, 0.09240723, -0.27392578, 1.8886719, 3.3496094, 0.60498047, -0.6166992, 2.6269531, 1.3564453, -3.3261719, -1.1142578, -1.1181641, 0.30395508, -0.296875, 1.7988281, 0.93408203, 5.1445312, -0.29956055, -1.2080078, 2.2226562, 0.3112793, -0.30126953, -0.84765625, -1.5283203, -1.1025391, -1.7304688, 0.09613037, 1.3017578, 0.8286133, -1.0908203, -1.9667969, -0.8588867, 2.1777344, 0.7832031, 0.49072266, 0.60058594, -0.68310547, -0.6435547, -0.24597168, 1.4775391, -2.1972656, -0.3359375, 1.4667969, -0.9067383, -0.5336914, -0.0569458, 0.7915039, 0.48266602, 0.047027588, -1.609375, 0.921875, 1.9873047, -1.6474609, 1.890625, -1.5527344, -0.089538574, 0.76464844, -0.94873047, 0.79833984, -0.8564453, -0.5366211, 0.4099121, -2.03125, -2.4316406, -0.8095703, -0.23205566, -0.13122559, -0.2783203, -1.8066406, 0.7651367, -1.0839844, -3.0449219, -0.6459961, -0.7348633, -0.9355469, 2.6171875, -1.6904297, 2.8378906, 2.2617188, -5.8125, -0.7480469, 1.7128906, 0.9692383, -0.46826172, -2.2246094, -0.7758789, 0.35327148, -0.16418457, -1.0820312, 0.46069336, 1.2451172, 1.2773438, 0.9169922, -1.9794922, 1.6445312, -2.7265625, 0.484375, -1.3466797, 1.1494141, 0.44067383, -3.0761719, 0.20495605, 0.42700195, 3.5136719, -0.5205078, -0.5151367, -1.4794922, -1.3574219, -1.3222656, 0.1574707, -2.2792969, -1.8310547, 0.12878418, -1.0419922, 0.3095703, -2.4746094, 0.10021973, -1.0058594, -1.7109375, -1.6699219, 3.8144531, -1.9619141, 2.421875, -2.1542969, 0.37548828, 0.32006836, -1.3623047, 0.43676758, -0.2097168, -0.45166016, -1.4130859, -0.68359375, -2.78125, 1.1572266, 2.484375, 0.39941406, 0.070373535, 2.0273438, 1.0634766, -0.56933594, -0.044311523, -0.52441406, 2.7597656, 0.5566406, -3.234375, 1.0244141, -0.8774414, -0.53515625, -2.5058594, 1.453125, 3.703125, 2.4570312, 2.1933594, -1.2988281, 0.8461914, 1.28125, 0.54003906, -0.4716797, -0.86621094, 0.87597656, 3.1523438, -1.2792969, -1.2041016, 1.4736328, -0.2705078, -2.3203125, -1.2070312, 3.453125, -0.4741211, 1.5117188, 1.8701172, 1.2587891, 1.2568359, -0.94433594, 1.578125, 0.56640625, -0.92578125, 1.1005859, -0.7109375, -0.9008789, 1.6396484, -0.54248047, 1.1289062, 1.2050781, 3.2265625, 1.9941406, 1.1162109, 0.08935547, -0.54296875, -1.0380859, 1.8310547, -0.96484375, 3.046875, -1.4560547, 1.0244141, -1.6796875, -0.5888672, 1.7880859, -2.9453125, 1.2988281, 2.1757812, -1.5449219, 0.2529297, -0.37451172, -0.59228516, -0.3942871, -2.6289062, 2.2578125, -1.9326172, -1.9160156, 0.46704102, -0.16027832, -2.7753906, -1.0742188, 2.2363281, -1.3994141, 1.21875, -1.2558594, 1.3623047, 0.022964478, -1.7402344, -0.2208252, 2.0195312, -1.2734375, 1.3623047, -0.3647461, -0.8701172, 2.5703125, -3.3320312, 2.2167969, 0.93847656, 1.4941406, 1.2900391, -0.62060547, 1.4833984, -0.57666016, 0.49560547, 1.8994141, -1.3730469, -0.90185547, -0.56347656, -2.1621094, 1.046875, 0.41748047, -1.6728516, -0.16308594, 1.71875, 2.1210938, 1.2197266, -1.2509766, 4.0273438, 0.38378906, -1.3183594, 2.2167969, -1.8964844, -0.66064453, -1.9970703, -3.0644531, 0.40112305, -1.4599609, -0.5864258, 3.4199219, 1.8046875, -0.093566895, 1.3232422, 1.7539062, -0.59033203, 1.0585938, -3.6367188, -0.6166992, 0.33032227, -1.6542969, 0.8027344, 1.1826172, -1.5087891, -1.6660156, -0.14282227, -0.35546875, 1.3173828, -0.010955811, -2.0800781, 0.50927734, -1.5605469, 0.8666992, -0.4946289, -1.4648438, 1.3027344, -1.0556641, -0.05908203, 0.2980957, 2.6445312, 1.5556641, 0.6074219, 0.46704102, 1.1542969, -0.10949707, -0.40039062, -2.0683594, -0.37890625, 2.2910156, -0.5732422, -1.4375, -1.8837891, -0.9453125, -0.3552246, -0.6020508, 0.65283203, -0.080078125, -0.9277344, 1.1806641, 1.0966797, 1.3388672, 1.9140625, -1.3251953, -0.045410156, -0.06970215, -0.24707031, -3.1367188, -1.2177734, 0.625, -0.64404297, -0.7783203, 0.27392578, -1.9199219, 2.5800781, 0.4501953, 0.25073242, 1.0800781, 1.0546875, 1.7832031, 2.5019531, 3.953125, -0.73828125, -0.1361084, 1.6699219, -1.0439453, 0.46948242, -0.72021484, 0.52001953, -0.54541016, 1.7265625, -0.3791504, -0.7705078, -0.043884277, 0.5439453, 3.734375, 1.5400391, -0.30444336, 2.0625, -3.1953125, 0.19213867, -1.3037109, -0.7973633, 0.8828125, 0.5888672, -0.8808594, 1.1083984, -1.3955078, -2.9785156, -0.15161133, -1.1484375, -0.04309082, 0.62890625, 0.78271484, 0.60791016, -0.8232422, 0.78759766, -0.68896484, 2.234375, -1.5146484, 2.1855469, 2.5800781, 0.30395508, -1.4785156, 2.2207031, 3.7890625, 2.53125, -2.5566406, 4.234375, 1.2587891, -2.0566406, -1.8876953, -0.49560547, -1.1484375, 0.59033203, -0.043945312, -2.6035156, -0.0048561096, -1.2226562, -2.0078125, -1.9560547, 0.7558594, -0.7529297, 2.1621094, -0.5698242, -3.5839844, 1.9082031, -1.8681641, -1.7519531, 0.008605957, -1.1152344, 0.09869385, -1.2597656, -0.5673828, 0.29174805, 0.31811523, 2.1191406, -2.2734375, -1.7138672, 0.9628906, -1.1464844, 0.49560547, -1.4179688, -1.7929688, -1.5537109, -1.5732422, 0.78222656, 1.7861328, 1.1132812, 0.21716309, 2.7226562, -1.0742188, 1.2089844, -3.046875, 0.6923828, -2.8789062, 0.5839844, -0.015541077, -3.9433594, 0.37158203, 0.60595703, 1.0410156, 1.3876953, 3.7773438, 0.30908203, -1.5839844, -0.96777344, 1.9306641, -3.6601562, -3.0527344, -2.4335938, -0.48779297, 2.4433594, 0.5498047, 1.4335938, -0.88671875, 1.7685547, -0.16552734, 0.07342529, -2.1679688, 0.3046875, 0.5336914, -1.0322266, -1.5214844, 1.6455078, -0.41479492, -1.3613281, 2.5429688, 1.484375, -0.07550049, -2.8515625, 0.15917969, 1.6972656, -0.6738281, -1.6777344, 0.34521484, 1.1650391, 1.0283203, -1.4394531, 1.1328125, -1.7041016, 1.9160156, -3.4199219, -1.5302734, -0.6875, -0.5571289, 0.92871094, -0.09637451, -2.5078125, 1.296875, -1.515625, 1.6318359, -0.7636719, -0.019210815, 0.42016602, -0.5991211, 0.3203125, -1.2480469, -0.07373047, 0.08770752, -0.19885254, 0.19689941, 0.9082031, -0.9008789, -3.1484375, -2.8046875, -0.101379395, -0.27514648, -0.06161499, -2.3964844, 0.8886719, -0.09185791, -0.8642578, 1.6201172, 1.5351562, -1.4306641, -0.08532715, 2.0429688, -1.2558594, 1.8359375, 1.5742188, -1.8720703, -0.7705078, -2.0546875, -0.73535156, -0.33618164, -2.9316406, -0.25756836, 0.26611328, 1.9345703, 1.6416016, 1.6347656, 2.3828125, 2.3808594, 0.8120117, -0.35742188, 1.9345703, 2.3339844, -0.5703125, 3.2402344, 0.8413086, 0.88720703, -2.0351562, 0.9135742, -3.9960938, -0.18920898, 1.6425781, -0.91259766, -0.2866211, 2.6855469, -2.0410156, 0.92089844, 0.017562866, -2.375, -1.2490234, 1.5869141, 0.36669922, 0.85791016, 0.19995117, -0.75390625, 0.5966797, 1.9492188, 0.79833984, 1.0107422, 3.2734375, 0.39746094, -1.4667969, -1.3017578, -1.7539062, 0.9213867, 0.40893555, -1.1611328, -0.25878906, 0.06518555, 0.40844727, -1.7929688, 3.9414062, 0.02130127, 0.9506836, -0.059295654, 0.64453125, -0.6616211, 2.4414062, 2.9902344, -0.08380127, -0.31860352, 3.0566406, -1.4072266, 1.1699219, 2.1640625, 2.1738281, 1.4384766, 0.84228516, 1.8310547, 0.23095703, 1.5126953, -1.0712891, 0.08947754, -1.1279297, -2.2558594, 3, -0.12145996, -1.4882812, -1.78125, -0.92822266, -1.5458984, -0.21508789, -0.46020508, -0.9692383, 2.390625, -1.4912109, 0.9301758, -0.32104492, 0.8178711, 0.609375, -4.3164062, -0.07611084, 0.24841309, -0.56396484, -0.6381836, 1.7529297, 1.3017578, 2.1269531, -1.1494141, 1.0986328, 1.4667969, 0.47314453, 2.25, -0.92529297, 0.046936035, 0.6254883, 1.1152344, -1.9248047, -2.0664062, -0.28637695, 0.66064453, -2.5683594, -2.5273438, -0.8071289, 1.2080078, 3.625, 1.1972656, -3.9746094, -0.5683594, -1.2275391, -0.3244629, -1.6337891, -0.055236816, -0.46728516, -0.23046875, -1.8935547, 0.9248047, 2.0507812, 2.0039062, 1.6796875, -0.09075928, 1.5878906, 2.1464844, 2.0136719, 1.4423828, 2.5859375, -0.84277344, 0.56689453, -1.1777344, 4.0976562, -0.765625, 2.0566406, -1.4101562, 1.9248047, 0.91308594, 1.8603516, 1.2900391, 1.5625, -0.036376953, 0.22839355, 0.79248047, -0.3425293, 0.33691406, -2.3554688, -2.6269531, -1.5869141, 0.05621338, 0.43603516, 2.7695312, 1.0996094, 0.1348877, 0.12060547, -1.6484375, -2.0136719, 0.5444336, -1.5742188, -1.1318359, -1.2871094, -0.21826172, 1.4101562, -1.0927734, -3.4296875, 0.33666992, 1.8925781, 0.43481445, -0.31811523, 1.7763672, 0.33984375, 1.1367188, -0.17700195, -0.24072266, -0.8027344, -2.7402344, 1.9326172, -1.8876953, 0.10998535, 0.67041016, 1.2539062, -1.3085938, 0.8286133, -1.1474609, 1.0449219, -0.39770508, -2.1445312, 0.65966797, 2.1210938, -0.30517578, 0.06347656, -1.2402344, -3.9414062, 0.6738281, -3.2148438, 1.4404297, -0.7158203, -1.9707031, -0.34936523, 1.3261719, 2.0195312, 2.1191406, -2.2402344, 0.31103516, -0.69921875, -0.50390625, -0.7270508, 0.8540039, 1.9873047, 0.4794922, 0.05026245, 1.1621094, 0.89697266, 0.39282227, 0.75341797, 2.1308594, 0.6279297, -2.546875, -0.85498047, -0.24084473, 1.9150391, -0.5366211, -2.5371094, -0.6713867, -0.45581055, -1.5751953, -2.1015625, -2.1777344]}, "B00FLRBXEO": {"id": "B00FLRBXEO", "original": "Brand: Weber\nName: Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart\nDescription: \nFeatures: Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut\nGenuine Weber part for Genesis 300-series gas grills\nRegulates liquid propane flow for consistent, uniform heat distribution\n2-year limited warranty\n", "embedding": [-1.0078125, 0.6303711, 0.20898438, -0.010421753, -2.5273438, -0.5263672, 0.29711914, -1.6972656, 1.4335938, -0.96533203, 1.4658203, -1.8222656, 0.4621582, -3.7949219, 1.8466797, -0.4580078, 2.9257812, 0.44750977, -0.18115234, 1.2050781, 0.49926758, -1.2451172, 1.8671875, -0.11968994, 1.6201172, 1.453125, 4.40625, -4.765625, -0.30859375, -0.31884766, 1.6367188, 1.0273438, 0.7788086, 2.1289062, -2.1308594, -1.2675781, -1.1494141, 2.3476562, -1.8789062, 0.5371094, -1.2910156, 1.6796875, 1.3359375, 0.2607422, -0.9370117, 1.9824219, 0.75390625, 2.0292969, -0.89746094, -1.1923828, 2.8476562, 1.1699219, -0.5205078, -0.0028266907, -0.45507812, 1.6757812, -1.703125, -1.0527344, 1.0732422, 0.28222656, 2.6953125, -1.765625, -2.6503906, -1.4511719, -0.92089844, 0.6142578, 0.63378906, 0.9423828, -0.009933472, 0.5683594, 2.2734375, 0.7163086, -2.2558594, 0.06414795, -1.3408203, -0.10272217, -2.8515625, -0.060516357, 0.5024414, -2.4023438, -1.7978516, 3.3398438, 1.0117188, -4.0625, 0.18286133, 0.07348633, 0.42797852, -2.0527344, 1.3505859, 0.3779297, -2.8476562, 0.7578125, -1.8007812, -2.8652344, 0.41088867, 0.09448242, -0.74609375, 1.1386719, 0.9472656, 0.9301758, -2.546875, -0.05218506, 0.36572266, 1.4853516, -2.7285156, -2.453125, -0.2619629, -0.1842041, -2.0019531, -0.24499512, -1.7978516, -0.2836914, 0.7265625, 1.9082031, 1.0917969, -1.7509766, 0.18054199, 1.2216797, 0.38061523, 1.4628906, 2.8964844, -0.1665039, -0.066467285, -0.8725586, -1.0214844, -1.1142578, -0.4794922, 0.34814453, 2.4296875, -3.390625, 1.0517578, -0.5419922, 3.9707031, 1.8564453, 1.7167969, -3.03125, -1.1513672, -1.2646484, -1.9228516, 0.62353516, -1.6318359, 0.27172852, 1.4960938, -0.008010864, -3.96875, 0.8876953, -1.4492188, 0.13452148, 1.2978516, -1.7724609, 0.9248047, -1.1816406, -0.039733887, -1.0869141, 1.7939453, -0.5517578, 0.13317871, 0.21179199, 1.7939453, 2.5683594, 1.6650391, -0.08380127, -1.09375, -1.5615234, 0.3227539, 0.04827881, 0.47314453, 1.3427734, -2.2441406, 2.0429688, -1.0878906, -2.0644531, -0.7998047, 0.6357422, 1.7949219, -1.4375, 0.08795166, 1.6279297, 0.41015625, 2.1074219, -1.4804688, -2.7871094, -0.070373535, -3.2070312, 0.98779297, 0.18847656, -0.13745117, -0.3137207, 2.4101562, -0.4892578, -0.9448242, 0.13793945, 0.52783203, 0.31445312, 0.6611328, -0.44848633, -2.5117188, -0.33911133, 0.2866211, -1.6953125, -2.4746094, -1.2568359, 3.2207031, 2, -1.5986328, -2.2988281, 0.64697266, -0.7788086, -0.46704102, 1.0371094, 0.89208984, -0.5341797, 0.6118164, 0.23254395, -0.10876465, -0.31811523, 3.4609375, 1.0175781, 1.6347656, 0.008430481, -1.0039062, 0.081604004, 0.15014648, -0.26098633, 1.5654297, 0.23205566, 0.2487793, 0.34350586, -3.1464844, -2.2773438, 1.3681641, 0.8144531, 0.7680664, 0.1665039, 0.5644531, 2.2285156, 1.6884766, -0.6953125, 1.9306641, 0.91015625, 0.089782715, 0.24682617, -4.2382812, -1.4423828, -0.4230957, 0.95654297, -1.7324219, 2.9550781, 0.46972656, 0.3840332, 1.5136719, 0.019744873, -0.51220703, -1.7089844, -0.56591797, -0.3491211, -1.2197266, 2.6796875, 0.6074219, -2.53125, 1.4628906, 0.5932617, 0.11468506, 0.9682617, 2.2910156, -1.3212891, 0.17553711, -1.0205078, 1.0527344, -1.4472656, -0.52246094, 1.8320312, 1.046875, -1.4492188, 2.7265625, 2.5175781, -0.97753906, 1.4658203, 0.43310547, -0.75683594, 0.25390625, -1.0683594, 1.2636719, -2.0488281, 0.5649414, 0.041931152, 0.05731201, -0.95947266, -2.5234375, 0.18933105, 2.4511719, -0.52441406, -2.7050781, 2.4335938, 0.26220703, 1.3261719, 2.3300781, 0.05218506, -0.86572266, 1.7255859, 1.0341797, 0.20324707, -1.2255859, 1.390625, 1.9853516, 1.6259766, 0.5576172, -3.8085938, -0.15649414, 1.8056641, -2.484375, -2.2539062, -0.8076172, 1.5332031, -2.8535156, -0.53271484, -0.9355469, -3.8984375, -0.82714844, -1.7089844, 1.8681641, 0.011199951, -0.38793945, -1.9775391, -0.73876953, 2.2363281, -1.1943359, 0.1060791, 1.4189453, -1.1230469, 2.1015625, -0.96875, -0.16577148, -2.515625, -1.8349609, -1.5742188, 0.5048828, -4.0273438, 2.1484375, -0.30297852, -0.25097656, -0.5473633, -0.2064209, 2.59375, 2.4179688, -1.5761719, -2.0820312, -0.43920898, -1.5039062, -0.32739258, 0.17333984, 2.6933594, -0.4194336, -1.6357422, 0.20251465, -0.7890625, 2.1816406, -0.25610352, 0.8515625, -0.2076416, 3.8554688, 0.3647461, -0.9746094, 1.6132812, 2.2558594, 0.2368164, 2.4765625, -1.9863281, 0.20812988, -1.4902344, 1.7841797, 0.6816406, 0.89941406, -4.171875, -1.3486328, 1.609375, -2.8984375, 3.3652344, -1.0839844, 2.65625, -0.79345703, 1.0458984, 1.5449219, -3.7597656, -1.2246094, 0.6411133, 0.8183594, -0.80859375, 1.3291016, -0.38623047, -1.8115234, -1.2929688, 1.1591797, 0.52441406, -3.515625, -2.125, -0.78125, -0.3474121, -1.1191406, -0.22009277, 0.27124023, -0.5649414, -3.0507812, -0.08099365, -1.1875, -2.5976562, -0.33618164, -1.2480469, 0.89160156, -0.58251953, -1.1621094, 0.9736328, -0.041503906, 2.1191406, 0.1616211, -4.0898438, 2.1855469, 0.2939453, -2.8007812, 1.3867188, -1.4472656, -0.9995117, -2.5488281, -1.0146484, 1.4863281, 0.96728516, -0.14904785, 1.6826172, 2.4628906, -0.018753052, -0.81591797, 0.23486328, -2.0683594, 0.54589844, 2.6777344, -2.71875, -2.0664062, 0.31420898, -1.9550781, -3.4042969, -0.66845703, 2.5644531, 1.203125, 1.7285156, 1.0361328, 1.8007812, 1.1933594, 0.011024475, 1.7275391, 0.22375488, -0.8256836, -1.1972656, 2.0722656, 0.3972168, -0.7138672, 3.1699219, 0.38598633, 1.8535156, 2.6679688, -1.3378906, 0.22094727, 0.7128906, -0.04916382, -0.00308609, 2.2011719, 0.26391602, 1.5771484, -1.0839844, -1.265625, 2.6035156, -2.4921875, 2.4472656, -1.2197266, -2.4609375, 3.1113281, 0.060516357, -1.8017578, -0.12634277, 0.23010254, -0.2709961, 0.70458984, -1.6972656, -0.67822266, 0.16101074, 2.0585938, -2.1347656, 0.9394531, -0.8881836, 1.0009766, -0.78466797, -1.8154297, 0.5390625, 1.9082031, -2.1933594, -1.0097656, 1.1738281, -2.96875, -0.7207031, 2.984375, 1.5195312, -2.84375, 1.3232422, -2.1191406, 1.6513672, 1.0136719, -0.578125, -1.1132812, 0.13549805, -1.1826172, 0.92089844, 1.3896484, 2.1425781, 0.13806152, -1.0263672, 0.8901367, -2.1972656, -2.4199219, 0.75683594, -0.8461914, -0.68066406, 0.20458984, 0.23583984, -0.5961914, 0.117614746, 3.8222656, -0.62841797, 0.6455078, 2.640625, -2.2988281, 0.6582031, -3.1816406, -2.7285156, -0.8823242, -3.28125, 1.4111328, 0.38134766, 1.9130859, 0.18334961, 3.5976562, 2.4511719, -1.3447266, -0.045928955, -0.8203125, -0.46118164, -0.6015625, 1.7363281, 0.42382812, -0.39916992, -0.09527588, -2.7636719, 0.09790039, -3.4042969, -0.31469727, 0.40795898, -3.890625, -0.8364258, -0.4338379, 0.48168945, -1.7207031, 0.059539795, 2.2324219, -0.14990234, 0.4975586, -2.9570312, 1.5947266, 0.8730469, 0.6088867, -1.0322266, 2.875, 0.5419922, -1.4443359, 1.9072266, 0.39038086, 4.1679688, -0.5341797, -2.7792969, -0.13708496, 1.1542969, -0.30126953, -2.1855469, 0.33447266, 0.22229004, -0.95751953, 0.69628906, -0.31689453, 2.9472656, 1.6435547, -0.5053711, -1.8964844, 0.11584473, -0.53222656, -0.4880371, -1.3710938, -0.87890625, 0.29248047, -0.71191406, 0.038146973, -2.4140625, 3.2070312, -1.9306641, 0.09307861, -3.8535156, 1.1054688, 0.20739746, 0.32495117, 0.9707031, -3.0859375, 2.5253906, -1.3554688, -1.8300781, -0.3293457, 0.8754883, -2.0234375, -0.5932617, 3.6191406, 1.8925781, -0.91845703, 0.06890869, -0.6201172, -0.91015625, -1.265625, -0.9482422, 1.4990234, 1.5371094, -0.3798828, 0.44970703, -1.7011719, 2.9394531, 1.4042969, -0.53222656, 2.6914062, -0.6298828, -2.1445312, 1.8798828, 2.328125, 1.7070312, 0.014801025, 1.0634766, 3.0664062, 1.0791016, 0.09106445, 0.8203125, 0.09210205, -0.6298828, -0.27856445, 0.7871094, 1.7050781, -2.4160156, -0.26367188, 1.0947266, 1.4990234, 2.1035156, 1.5878906, 0.98095703, -3.1640625, 1.7578125, 0.83447266, -2.1035156, 1.7597656, -0.7241211, -0.9140625, 3.8613281, 0.7285156, -3.2148438, 0.2902832, 1.8173828, 0.1661377, 2.0175781, -0.5727539, 0.8691406, 2.0410156, -1.2490234, -0.8569336, 0.066223145, -0.78466797, 2.2988281, -1.671875, 1.6835938, -1.5146484, 1.7802734, 1.7275391, -0.09185791, -2.4179688, -0.47045898, -2.8476562, -1.0839844, -1.8369141, -1.7392578, -2.1738281, -0.6508789, 1.6679688, 2.7597656, 1.4042969, 0.19335938, 1.5185547, -1.1259766, -0.15454102, -1.2431641, 0.81933594, -0.63623047, -0.5419922, 0.9536133, -1.796875, -0.66503906, -1.8369141, -1.2431641, -0.11651611, 0.15893555, 1.0117188, 1.1474609, -0.8496094, -0.48266602, -1.578125, -2.0488281, -0.5258789, -0.059936523, 1.2138672, 0.38208008, -0.29370117, -0.49389648, 0.35839844, -0.6972656, -1.1259766, -1.453125, -0.6894531, 0.21325684, -0.37768555, -0.82666016, -0.95410156, -2.1933594, 1.8457031, 0.02671814, 2.0292969, 0.3623047, -0.91503906, -0.6513672, 0.23266602, -1.21875, 0.19335938, 2.3945312, -0.0126571655, -0.7314453, 1.3349609, 0.042388916, -1.6923828, 1.9082031, -2.5566406, -1.09375, 1.4892578, -2.1152344, 3.5195312, 0.08660889, 0.123168945, -0.28564453, 0.49609375, 2.5605469, 2.171875, -1.0878906, 2.0800781, 1.765625, 1.0888672, -2.8398438, -0.15039062, 0.3630371, 1.3027344, 0.96875, -1.8466797, -0.7163086, -2.0898438, -2.1894531, 3.2265625, -3.5820312, -0.37841797, 1.3779297, 1.0058594, 2.2792969, 0.4819336, -0.78271484, 1.7402344, 1.9404297, 0.3190918, -0.12854004, -1.0693359, 2.734375, 3.109375, -1.3457031, -1.7763672, 0.62841797, 1.7070312, 3.8144531, 1.5888672, -0.31591797, 0.24316406, -2.2929688, -0.7446289, -0.85595703, 1.4960938, -0.23571777, 0.7006836, 0.56591797, -0.48266602, 2.7988281, -1.8642578, 1.1425781, 1.4003906, -1.296875, -0.98876953, 3.5136719, 1.3085938, -3.3886719, -0.33691406, -2.4140625, 1.7578125, -0.8222656, 0.15625, 0.45214844, -0.41455078, -0.15637207, -1.265625, -2.5898438, -3.8242188, 0.4584961, 0.15710449, -2.7871094, -0.23217773, 0.92333984, -0.21875, 2.8105469, 0.73876953, 0.6279297, -0.95654297, -0.7963867, -2.6972656, 0.44140625, 0.43945312, -3.8535156, 0.19128418, 3.6308594, -0.33447266, 0.23913574, -1.5732422, 0.77783203, 2.78125, -0.30029297, 2.9628906, 1.9707031, 0.85791016, 2.125, 2.2460938, 3.4726562, 0.27807617, -1.8222656, 0.94677734, 2.1054688, 0.6098633, 1.1601562, 0.097717285, 0.4230957, -1.2216797, 1.5927734, -0.75927734, 1.0361328, 0.2915039, -1.6445312, -2.2324219, -0.56396484, 2.3574219, -2.5976562, -0.55908203, -1.2304688, 0.064208984, 1.1181641, 0.3088379, 0.92822266, 2.3789062, -0.23950195, -0.6772461, -0.3095703, 4.671875, -2.1660156, 0.00617218, -0.2331543, -2.0898438, -1.0332031, -1.3076172, 2.0527344, 0.3491211, 1.0429688, 0.65283203, 1.9404297, 1.4423828, 0.44970703, -2.0664062, 0.5419922, -0.2565918, 1.7167969, 2.4453125, -0.9682617, 0.074157715, -0.7504883, -2.9863281, -2.4316406, 2.7265625, 1.1132812, 0.7573242, 0.8232422, -3.8164062, 2.03125, -0.13293457, 1.7900391, -0.9111328, -0.39770508, -0.5209961, -3.4609375, -0.42260742, 0.13842773, -2.8359375, 1.3642578, 2.1503906, -1.0195312, 0.89746094, 2.2734375, 1.0791016, -0.6513672, 0.5595703, 0.97021484, 0.9448242, -0.9448242, 3.09375, -0.4189453, -1.1289062, -0.014671326, 1.8740234, -0.19250488, 1.2744141, -0.8496094, 0.11968994, -0.5410156, 1.6425781, -0.5385742, 1.3232422, -2.7304688, -1.3378906, 1.1591797, 1.4658203, -2.578125, -0.83154297, 2.3847656, 2.6269531, -1.2011719, 1.1425781, 1.9814453, -1.0996094, 2.75, -0.5932617, -1.3125, -0.5371094, 0.4152832, -0.5058594, -0.8876953, -0.18530273, 2.3476562, 0.32885742, -1.7460938, -2.0253906, -1.4931641, 0.63134766, -0.30541992, -1.2363281, -1.3574219, -1.0908203, -1.8496094, 0.66748047, -0.6791992, -0.3059082, 2.2109375, 0.92041016, 0.7026367, -3.2578125, -2.4648438, -1.5292969, -1.6357422, -0.9086914, 1.5585938, 2.6855469, 1.0888672, -0.15649414, -1.3427734, -1.7314453, -1.1474609, -1.0097656, 1.9326172, -1.2910156, -2.8144531, -0.6821289, 1.8652344, 1.6396484, -0.32641602, 1.0097656, -1.6132812, -0.53808594, 1.7421875, -1.3007812, -0.38989258, -1.5341797, 0.09442139, 2.8085938, 3.65625, 0.2590332, 1.2324219, -1.1259766, 1.4228516, 1.6738281, -0.73339844, -0.5024414, 1.4277344, 0.7788086, -0.18786621, 0.36206055, 2.3984375, 0.96484375, -0.90625, 0.35595703, 0.42797852]}, "B000BRJOV8": {"id": "B000BRJOV8", "original": "Brand: ADCO\nName: ADCO 2111 White RV Propane Tank Cover, Single 20\nDescription: \nFeatures: ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank )\nProtect propane bottles while in storage with this deluxe heavy-duty vinyl cover\nVelcro closure at top, elasticized bottom for a neat tailored fit\nSingle tank cover, fits 20 pounds ( 5 Gallon tank )\nPolar White\n", "embedding": [1.9072266, 0.81640625, 2.5664062, -0.44067383, -0.090026855, -0.84765625, 0.7685547, -0.23840332, 1.2919922, 2.6503906, 1.2285156, 0.79003906, 0.03250122, -3.4589844, 0.9296875, 0.093322754, 0.35742188, 1.5488281, 2.9824219, 0.28149414, 3.265625, 1.3251953, -1.1269531, 0.6850586, 0.7348633, -0.43920898, 2.4023438, -1.1533203, -2.0234375, 0.43676758, -1.0478516, -0.16027832, -0.43041992, 1.2333984, 0.6640625, -1.3027344, -0.84765625, -0.4169922, -2.6386719, -0.37109375, -3.1074219, -0.039031982, 1.7050781, 1.8789062, -0.84765625, -2.5273438, -0.97314453, -3.1230469, 0.7392578, -0.33642578, 0.15588379, 2.1503906, 2.578125, 0.18737793, -0.88720703, 0.24523926, 0.3581543, -1.4082031, -0.33569336, 1.9169922, -2.2929688, -0.9838867, -2.0761719, 1.6494141, -1.0595703, 1.9414062, -1.2128906, -0.2130127, -0.18457031, 2.0390625, 2.4902344, 2.28125, -0.2512207, -1.8544922, -0.3178711, 0.5263672, -2.4511719, 1.2265625, 2.1894531, -1.6914062, 0.8486328, 1.9326172, -2.40625, -1.2578125, -0.19885254, -0.5058594, -0.6582031, -0.23498535, -0.6376953, -1.5332031, -0.68066406, 0.98291016, -2.0605469, -2.7480469, -2.359375, 0.33203125, 1.1445312, 2.1210938, 1.5175781, 1.5693359, 0.42358398, 0.2915039, -0.8276367, -0.7558594, -2.5488281, -1.2548828, 1.4960938, -3.1933594, -1.2871094, 0.37109375, -0.26489258, -0.9794922, 1.3623047, -1.6621094, -0.049987793, -0.12213135, 1.2304688, 0.54052734, 1.4863281, -0.12548828, 1.9736328, -1.0478516, 1.4863281, -0.0059280396, 2.5898438, 1.1181641, -0.9848633, 0.24475098, 1.2802734, -0.28710938, -0.1496582, 0.45947266, -0.5058594, -0.8310547, 0.44799805, -0.13476562, -1.3027344, -1.2226562, -2.0117188, -0.045837402, -3.109375, -1.3544922, 0.5024414, 1.2167969, -2.7011719, -1.1445312, -1.671875, 1.9287109, -1.0439453, -0.83740234, 0.95654297, -3.2597656, -0.38330078, -0.5493164, -0.31201172, 0.95458984, 0.37182617, -4.0546875, 1.5791016, 2.2617188, 1.9697266, -1.5869141, 0.38745117, 1.4277344, 0.3696289, -2.2011719, 1.0703125, -0.16003418, -1.8964844, 0.18225098, -1.0566406, -1.9658203, 2.1972656, 0.8671875, -1.0068359, 0.0009965897, 0.98535156, 0.1239624, 0.44067383, 0.96728516, -4.7617188, 0.84375, -0.5336914, -1.1035156, 1.1416016, 0.020263672, -1.515625, -2.9433594, -0.65478516, -0.6166992, -2.9414062, 1.7910156, -1.3828125, -0.1895752, -1.6875, -2.5527344, -3.2695312, -1.734375, 1.5322266, 1.6884766, -1.2802734, -0.7392578, -1.5634766, 1.2617188, -1.1240234, -0.9111328, 1.0058594, 0.5546875, 0.08538818, 0.47729492, 0.13549805, 0.062927246, 4.4492188, -1.7802734, -1.9677734, -0.75, 1.5703125, 0.20263672, 1.2675781, 1.5126953, 0.58691406, 2.0664062, 0.060058594, 2.2558594, 0.28979492, 2.703125, 2.4628906, 1.5048828, -2.4785156, 0.19519043, 0.39501953, 1.1494141, -2.4472656, 0.3071289, -0.60595703, 0.19274902, -0.46362305, -1.3505859, 0.0066375732, -1.4365234, 0.9584961, -0.13024902, -1.3789062, -0.21032715, 1.8037109, 2.1816406, -1.859375, 1.0429688, 1.8046875, -0.028503418, 0.6879883, -1.4902344, -0.101257324, -2.1582031, -0.74658203, 1.8154297, 0.01739502, 0.24572754, 1.0175781, -3.4160156, 0.11071777, 1.4091797, -1.4638672, -1.6943359, -0.7451172, 0.82666016, 0.61328125, -1.0507812, -1.6376953, 0.7163086, 0.54296875, 1.5556641, 0.24389648, -0.38452148, 0.4543457, 0.9638672, -1.2568359, 1.1113281, 0.09033203, 2.8925781, 3.34375, 0.66064453, 3.0722656, -2.3222656, 0.7373047, 1.8427734, 2.6582031, 0.5410156, -1.9453125, 1.3251953, 1.8134766, 0.3918457, -2.3671875, 4.1640625, 1.7929688, 1.6035156, 2.1054688, -1.2226562, -2.6601562, 0.36743164, -2.5175781, -0.74316406, -0.98291016, 0.35546875, 0.076660156, -0.85546875, -0.5522461, -0.80029297, 0.9536133, 0.47045898, 0.51904297, -2.5507812, -2.3691406, -1.3789062, -1.2285156, 0.40942383, 3.9609375, -1.9082031, 0.32836914, 1.8671875, 0.14440918, 1.0546875, -0.6953125, -0.42822266, 1.0449219, 0.010406494, -2.2851562, 1.1298828, 0.40039062, -0.6748047, 1.1533203, -1.2363281, 3.5644531, -2.0019531, 1.0302734, 0.77490234, -0.6503906, -0.58203125, 0.2286377, -1.8544922, 1.9179688, -0.7680664, -1.1132812, 4.6210938, 1.9716797, -0.30126953, -0.6977539, 2.2109375, -1.0478516, -1.0341797, 0.2680664, 1.5029297, -0.82128906, -2.8398438, 0.5493164, 1.0058594, -2.0644531, 1.1699219, -1.4873047, -0.3623047, 0.83154297, 1.296875, 1.7792969, -1.1884766, -2.0996094, -0.21789551, 1.5253906, -4.5, 1.9960938, -2.4726562, 1.0869141, -2.78125, 1.0488281, -1.75, -1.8466797, 3.1503906, -2.1113281, 4.21875, 1.7597656, 0.6621094, 0.87646484, -2.4394531, 0.36914062, -1.2880859, -3.1113281, 0.68310547, -1.5078125, -1.8789062, -0.6503906, -4.203125, -0.7441406, -1.3164062, 0.10858154, 0.11224365, -2.125, -0.41064453, -1.8867188, -0.74316406, -0.2763672, 0.47802734, 2.5742188, -1.6494141, -1.0517578, 0.2331543, -0.42382812, -0.38085938, -0.40722656, -1.0019531, 1.8115234, 1.1445312, -0.13085938, 1.1279297, -1.0117188, 1.6240234, 0.14221191, -4.1289062, 0.61572266, 2.6738281, 2.7910156, 2.1347656, -1.6074219, -1.1835938, -1.0117188, -0.2956543, 2.390625, 3.3574219, 2.4238281, 2.03125, 0.057434082, 1.3515625, 0.7416992, 0.34155273, 0.0871582, -0.66064453, 2.1875, -0.34448242, -0.051513672, 0.1776123, 2.2519531, -1.6777344, -1.5283203, 0.011627197, -2.2792969, 3.6660156, 2.078125, -1.9492188, 0.13708496, 0.20117188, 2.71875, -0.8647461, 1.6748047, 1.6660156, 0.9086914, 2.3789062, 1.7470703, -0.91259766, 1.2890625, 0.7036133, -1.1806641, 0.80859375, 1.5878906, -1.2529297, -0.34716797, 1.1005859, -2.8222656, 0.04788208, 1.9345703, -0.45214844, 3.0429688, 1.6962891, 1.6962891, -1.7988281, -0.99365234, 1.4707031, 1.0322266, 1.7626953, 0.045806885, 0.0087509155, -1.0976562, 0.19482422, -1.0087891, 2.1425781, -0.5336914, 0.5263672, 0.32714844, -1.0703125, 0.33032227, -2.2890625, 2.625, 0.2758789, 0.5390625, -0.9790039, 2.2890625, -2.8183594, -3.3183594, -0.26391602, 0.84228516, -3.421875, 3.6269531, 2.6601562, -0.6220703, -0.18029785, -2.3300781, 1.8447266, 2.3847656, -1.4306641, -0.03994751, -1.8164062, 1.0283203, -1.6113281, 1.3457031, 1.4199219, 4.2109375, -2.6660156, -1.1630859, 0.32617188, 1.4208984, -0.95410156, 1.0859375, 0.4465332, -0.3330078, -1.4501953, 1.9580078, -0.2993164, 2.9902344, -0.38305664, 0.62646484, 1.6845703, 0.40820312, 1.8652344, 0.32373047, -2.6601562, 0.41479492, -0.29077148, -0.6772461, 3.6738281, 0.90185547, 0.60791016, -0.034484863, -0.30981445, -2.7324219, -1.3623047, -1.7919922, 0.5605469, -1.5498047, -1.9296875, -0.115356445, 0.7890625, -1.9589844, -1.4882812, -0.52441406, -1.7734375, -0.92529297, -0.29101562, 1.0185547, 1.3447266, -1.625, 0.12597656, -1.2070312, 1.6318359, 0.27368164, 0.6201172, -1.3134766, -1.671875, 3.2480469, 0.5722656, 0.2208252, 1.5615234, 3.1230469, 1.6708984, -2.1679688, -1.3955078, -0.7416992, 1.8632812, -1.8115234, -4.5664062, -0.8598633, -1.375, -0.37719727, -0.094055176, 0.20922852, 1.3164062, 1.1455078, -0.76660156, 0.8120117, 1.0576172, 1.3886719, -2.6308594, -1.5908203, 2.2558594, 0.42993164, -1.9296875, 0.13916016, 0.3779297, 0.7207031, -1.0361328, -2.09375, -2.3730469, 0.89941406, -0.7265625, 1.4208984, -4.4453125, 1.6123047, 2.4003906, 1.8242188, 1.8447266, -2.0507812, -0.90771484, -0.3466797, 1.6494141, 2.109375, -1.3955078, -0.2536621, 1.1904297, -1.6005859, 0.8173828, -2.6425781, -1.3496094, -0.17797852, -0.97021484, 1.1113281, -0.8256836, 0.030029297, -1.1357422, -1.0195312, 0.5253906, -1.6376953, 4.3476562, -2.7988281, 2.1210938, 0.12976074, -0.6147461, -1.5263672, 4.203125, 0.28735352, 0.2788086, 0.91796875, -0.82910156, -0.12768555, 0.2841797, 1.4912109, 1.484375, 0.9472656, -0.81396484, -2.578125, 1.4541016, 0.9951172, 0.6220703, -0.97021484, 1.8037109, 2.3886719, -0.2697754, 0.08331299, 1.2597656, -0.63183594, 1.4794922, 0.3395996, 0.4128418, -1.3574219, -0.5395508, 1.7636719, 2.6972656, -2.7675781, -2.3046875, 1.9736328, 1.0507812, 0.00087690353, 1.3300781, 0.6694336, -2.1308594, -1.7050781, -3.1328125, -3.5820312, 0.27685547, 0.09094238, -1.9111328, -1.4140625, 0.91259766, 1.5869141, -0.10650635, 2.5683594, 0.09899902, -2.4960938, -0.8754883, 1.4716797, -2.8066406, -2.8847656, -2.2929688, -3.1640625, -0.35107422, -0.98095703, 0.48046875, -0.19152832, 3.5585938, 2.1113281, -2.4902344, -0.7006836, -0.9223633, 0.17822266, -2.3398438, -1.1279297, 2.3378906, 0.26953125, -0.7314453, -0.06173706, 0.08062744, -0.3071289, 2.6386719, 1.1601562, 1.2314453, 0.4350586, 0.6567383, -4.5625, -4.3789062, -1.1494141, 0.83984375, -0.8076172, -0.5151367, 0.15002441, -1.3662109, -0.67333984, -2.21875, 0.7026367, -1.9501953, 0.5097656, -1.6845703, -2.3222656, 1.9257812, 0.30859375, -0.47924805, 0.38745117, -0.64453125, 0.21704102, -2.734375, -2.8320312, -2.0253906, 0.1496582, -1.2929688, -0.56103516, 1.2412109, 0.22131348, 1.765625, 0.5107422, 1.9863281, -1.0927734, 1.9882812, -1.4375, 0.64746094, 2.2128906, -0.062683105, -1.5068359, -0.109375, -1.6132812, 1.7011719, 2.8007812, 2.6386719, -3.4101562, 1.5126953, 0.8798828, -1.2841797, -0.64208984, 2.5898438, 1.1845703, 1.203125, 2.171875, 1.5703125, -1.5263672, -1.2158203, -1.9628906, -0.46679688, -0.9316406, -2.7148438, -2.2402344, 1.4365234, 0.57177734, 0.5078125, 0.62939453, 1.3710938, 1.0029297, 0.9350586, -1.5087891, 0.5649414, -2.421875, 0.94970703, 0.4741211, -1.7705078, -1.7783203, -2.15625, 3.6992188, -0.74853516, 0.8881836, 2.3554688, 0.4951172, -1.3046875, 0.09875488, 0.14440918, 2.1289062, 1.3164062, 1.7626953, -1.578125, 0.53564453, 3.1171875, -0.38623047, 0.03491211, -0.7651367, 1.4013672, -0.056640625, 0.7416992, 2.4921875, -2.5546875, -0.46777344, 0.77783203, -1.2832031, -0.5991211, 0.52685547, 0.03491211, -3.7558594, -0.39257812, -0.9892578, -0.7441406, -4.4257812, 3.1308594, -1.2421875, 0.6933594, 1.6376953, 0.30786133, -0.99316406, -0.2705078, 2.5195312, 0.7270508, -1.296875, -1.3759766, -0.8588867, 0.17907715, 2.625, -2.3046875, 0.052246094, -2.1738281, 2.3398438, -0.18371582, 1.1630859, 0.2064209, -0.1083374, 2.8105469, 3.3828125, 3.90625, 0.21362305, 0.9873047, 0.61279297, 0.8305664, 1.0029297, -1.1972656, 1.2617188, 1.6943359, 2.2558594, 3.8144531, -2.5820312, -1.0400391, 2.2792969, -0.28198242, -0.9223633, 0.8544922, 1.6796875, -2.9433594, -0.5161133, -1.3681641, -1.4287109, 1.4277344, -0.07122803, -0.14123535, -1.2421875, 0.025985718, 0.46264648, 2.4375, 0.4326172, -0.13427734, 1.8632812, -0.9057617, 2.90625, 0.18945312, 0.99365234, -2.4511719, -1.171875, 0.11242676, -0.12213135, 0.33032227, 1.0927734, -1.4970703, 2.4980469, -0.7338867, 1.3408203, 0.30688477, -0.008842468, 3.4804688, -2.2890625, 1.6835938, 1.5449219, -1.8193359, -0.5048828, 0.89160156, 0.5751953, -2.8925781, -0.39672852, 0.042938232, -0.29296875, -0.67529297, -4.3828125, 0.8330078, -0.16320801, 0.078063965, -3.6113281, -0.47680664, -0.15612793, -3.1914062, 2.4023438, 0.1965332, -1.0546875, 3.1601562, 0.78466797, -0.7685547, 2.0136719, 0.17224121, 0.22290039, 0.8027344, 0.11254883, -0.09423828, -0.019500732, -0.42211914, 2.7578125, 1.9541016, -1.2548828, -0.5654297, 2.0527344, 0.13012695, 0.5620117, 1.1914062, -2.0859375, 3.6445312, 0.05493164, -0.36450195, -0.14465332, -1.9287109, 0.6088867, -0.59033203, -1.2451172, 0.03225708, 0.9013672, -0.42504883, 1.8212891, -4.9726562, -0.46533203, 2.0546875, -1.0742188, 0.63671875, 0.90234375, -0.49487305, -0.93115234, 0.19592285, 2.1464844, -2.140625, 0.19702148, -2.0097656, 0.29760742, -1.3203125, -1.9785156, -1.4960938, 0.87890625, -2.046875, 0.024017334, 1.7451172, -0.3552246, 0.2199707, 0.6542969, -1.1240234, 0.17773438, 0.22570801, -0.0423584, -1.1435547, 0.117004395, -1.0419922, 0.013999939, 0.43432617, 0.6972656, 2.4472656, 3.2578125, 1.9365234, 0.039154053, 0.30664062, -1.5800781, -1.5214844, -3.6582031, 2.2265625, 1.4384766, -1.1884766, -0.20300293, 0.9326172, 2.7226562, -1.7158203, -1.1005859, 0.81933594, 0.61865234, 1.2050781, -0.11871338, 1.1992188, -0.07220459, 1.7177734, 2.2324219, 2.7578125, 2.2363281, -1.4619141, 0.22546387, 1.5361328, -2.9941406, -2.484375, 0.123168945, -0.45288086, -2.4355469, -0.32910156, 4.0703125, 2.6640625, -0.15197754, -0.27319336, -1.8623047, -0.022964478]}, "B000WEMH32": {"id": "B000WEMH32", "original": "Brand: Weber\nName: Weber 7502 Hose and Regulator Kit (21-Inch),Assorted\nDescription: \nFeatures: Hose and regulator replacement kit for Weber propane grills\nProvides secure, airtight connection between grill and tank\nFits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold\nIncludes 21-inch QCC1 hose, regulator, and instruction sheet\nGenuine Weber replacement part\n", "embedding": [0.19104004, 0.81591797, 1.2441406, -0.26904297, -2.5976562, 1.3710938, 0.1763916, -1.9541016, 2.375, -0.2142334, 1.6992188, -0.39770508, 0.4362793, -4.171875, 1.4785156, -0.6171875, 3.9648438, -0.027236938, 0.9145508, 1.6640625, 0.050567627, 0.1706543, 2.0664062, -0.80566406, 1.7412109, 0.7285156, 4.4648438, -4.1484375, -0.6064453, 0.07293701, 0.71435547, 1.4423828, 0.1295166, 1.8291016, -2.3925781, -1.1152344, -1.1005859, 1.6923828, -2.5234375, 0.06726074, -0.40405273, 1.9404297, 0.49023438, -0.8588867, -0.6933594, 0.79589844, 1.7949219, 0.8066406, -1.3164062, -0.6386719, 2.8886719, 1.0820312, 0.2006836, 0.43115234, -1.2490234, 3.2089844, -1.6162109, -1.6416016, 2.2519531, 0.19104004, 2.9863281, -1.0302734, -2.4472656, -2.2441406, 0.9477539, 0.9892578, 0.13720703, 0.7495117, 0.5214844, 0.86816406, 2.4804688, -1.3076172, -1.6494141, -1.1083984, -0.40405273, -0.78564453, -1.4365234, 0.70410156, -0.0039749146, -0.8798828, -2.5117188, 3.5820312, 0.8100586, -3.0683594, 1.2070312, -1.1337891, -0.024291992, -2.1894531, 2.4785156, 0.27856445, -3.0664062, 1.3994141, -2.6015625, -2.109375, 0.5649414, -0.18664551, -0.5541992, 0.5859375, 2.703125, 0.42407227, -3.0917969, -0.060791016, 0.9536133, 1.2070312, -2.4726562, -2.3261719, 0.15844727, 0.3864746, -1.5048828, -2.0859375, -0.8305664, -0.7451172, 0.9589844, 1.2529297, -0.1550293, -1.8779297, -0.47387695, 0.640625, 0.94140625, 0.6660156, 2.1621094, -0.22851562, -0.13024902, -1.2041016, -0.43139648, -0.6098633, 0.19482422, 1.0449219, 2.3457031, -1.5488281, 0.9472656, -1.5703125, 3.7597656, 2.5820312, 2.3398438, -3.4589844, -2.1210938, -1.6835938, -1.2871094, -0.50927734, -1.0488281, 0.49902344, 2.046875, -0.83154297, -3.9609375, 0.86279297, -2.7851562, -0.1920166, 1.4580078, -0.87353516, 1.1035156, -2.0820312, -0.18688965, -0.97509766, 2.3320312, -0.5097656, 1.3535156, 1.1435547, 1.1191406, 4.0390625, 2.4785156, 0.8461914, -0.28588867, -1.4121094, 0.6855469, -1.5625, 0.9536133, 1.3740234, -2.3105469, 2.328125, -0.6088867, -0.52978516, -0.80566406, 0.61865234, 0.51171875, -0.8642578, 0.10449219, 1.9931641, 0.1303711, 0.8496094, -2.5117188, -2.4453125, -1.0390625, -2.90625, 0.46044922, -0.4104004, -0.69628906, -1.4804688, 3.2636719, 0.30810547, -1.1279297, -0.18457031, 0.9482422, -1.0009766, -0.77441406, -1.8261719, -3.1445312, -1.2939453, -0.101135254, -0.5961914, -2.7519531, -1.5712891, 3.515625, 0.8569336, -1.7089844, -1.8369141, 0.65234375, 1.4287109, 0.34448242, 1.0849609, -0.15661621, -1.4326172, 0.8959961, 0.7421875, 0.3251953, -0.8149414, 3.4238281, 1.4423828, 0.7441406, 0.22961426, -0.6088867, -0.56640625, 1.2236328, 2.0761719, 1.8652344, 0.20202637, -0.6152344, 0.11804199, -2.3886719, -1.9414062, 1.8925781, 0.9453125, -0.12658691, 0.89746094, 0.93603516, 2.0527344, 1.1845703, -0.96533203, 1.9472656, 0.85546875, 0.5961914, -0.45239258, -3.484375, -0.89160156, -0.55078125, 0.2590332, -0.6899414, 2.5507812, -0.19567871, -1.3916016, 1.7490234, 0.8413086, 0.40112305, -1.8496094, -0.06555176, 0.27368164, -1.6962891, 2.8808594, 0.7709961, -1.0830078, 2.0039062, 0.08569336, 0.9785156, 1.0908203, 1.8095703, -1.375, 0.2619629, -0.9868164, 1.0058594, -1.4208984, -1.484375, 2.0371094, 0.039733887, -1.8173828, 3.5976562, 2.5273438, -2.0820312, 1.3847656, 0.02609253, -1.4335938, 1.1308594, -0.45825195, 1.9580078, -2.2734375, 2.3808594, -0.1661377, 0.15881348, -2.3984375, -2.2089844, 1.4765625, 2.21875, 0.0021133423, -2.2480469, 2.3359375, 0.8149414, 0.08728027, 2.2050781, 0.12475586, -1.3046875, 1.7490234, -0.1616211, -0.43237305, -1.2451172, 0.2866211, 1.9384766, 1.9072266, 0.0026836395, -2.9335938, 0.19360352, 2.6035156, -2.8085938, -2.1113281, -0.92089844, 3.0742188, -1.9951172, -1.1035156, 0.3161621, -3.7773438, -0.29248047, -2.0195312, 2.1171875, -0.9291992, -1.109375, -1.2197266, 0.105773926, 0.21704102, -2.0761719, 0.87939453, 2.375, -1.0527344, 0.84228516, -0.38256836, -0.85009766, -1.8671875, -1.6748047, -0.07421875, 0.35180664, -2.6347656, 1.7460938, -0.7138672, -1.0019531, -0.96240234, 0.3232422, 2.5644531, 2.1152344, -1.046875, -2.4902344, -0.08093262, -0.16137695, -1.1826172, -0.04977417, 3.0898438, -1.3837891, -2.0234375, 0.018798828, -0.8125, 1.5986328, -0.8149414, -0.7753906, 0.5415039, 2.9277344, 0.41748047, -0.7163086, 2.0761719, 2.7402344, 0.012413025, 3.5390625, -3.0078125, 0.50683594, -1.3818359, 1.3554688, -0.49902344, 1.0292969, -3.65625, -2.2558594, 1.7666016, -2.3867188, 3.0644531, -0.71533203, 2.7246094, 0.38305664, 1.0859375, 0.54833984, -4.8359375, -1.7167969, 1.6337891, 1.9453125, -1.4257812, 1.3457031, -1.0820312, -1.6748047, -1.7734375, 0.33740234, 0.625, -4.1523438, -0.9819336, -0.34301758, -0.5214844, -0.76904297, 0.5751953, 1.0429688, -0.5473633, -2.9980469, 0.055633545, -1.2900391, -1.9375, -0.08251953, -1.8212891, 2.3632812, -0.6069336, -1.4111328, 0.92041016, 0.59472656, 2.0664062, -0.026519775, -3.0585938, 1.1679688, 0.7060547, -1.6113281, 2.1875, -1.6542969, -0.79296875, -2.1308594, -0.85595703, 1.7070312, 1.4580078, 0.57666016, 1.0429688, 2.5605469, -0.08880615, -1.265625, -0.47851562, -1.5830078, 1.0615234, 3.3144531, -1.5292969, -1.4912109, 0.6850586, -2.140625, -2.9980469, 0.35083008, 3.3242188, 0.4020996, 3.109375, 0.46435547, 0.6713867, 1.1259766, 0.97509766, 1.2724609, 1.3359375, -1.0625, -1.3583984, 2.1816406, 1.5283203, -0.78271484, 2.8183594, 0.9165039, 2.2480469, 1.7236328, -0.92578125, 0.10888672, 1.1660156, 0.39916992, 1.8369141, 1.7695312, -0.50341797, 1.4160156, -0.81933594, 0.27368164, 1.6044922, -1.8925781, 1.4912109, -1.7919922, -2.4433594, 2.2714844, 0.41796875, -2.6582031, -1.1005859, -0.08496094, 0.07800293, -0.7915039, -1.5214844, -0.5683594, -0.011459351, 1.1894531, -1.4589844, 0.8901367, -0.16442871, 2.3261719, 0.75146484, -1.7705078, -0.5629883, 1.2529297, -2.6601562, -1.5341797, 0.5595703, -3.5605469, -1.5175781, 1.6445312, 2.4042969, -2.3320312, 2.1484375, -2.8320312, 1.3339844, 0.76416016, -0.83984375, -1.3535156, -0.21765137, -1.4414062, 1.4277344, 2.1972656, 1.7763672, -0.44091797, -1.8632812, -0.9399414, -3.2675781, -1.6464844, 2.2832031, -0.6298828, -0.34472656, 0.29614258, -0.22851562, -0.103149414, -0.7807617, 3.5664062, -1.6054688, -0.10668945, 1.5507812, -2.8144531, -0.60595703, -3.1015625, -3.6914062, -0.94921875, -3.1328125, 1.6630859, 0.20800781, 1.9111328, 1.3916016, 4.09375, 2.4941406, -1.8818359, -0.5493164, -0.13085938, 0.6333008, -0.93896484, 0.2685547, 0.2680664, -0.5942383, -0.25952148, -3.3886719, 0.14208984, -3.2929688, -0.28100586, -0.48950195, -3.2480469, -1.3251953, -0.94140625, 0.56640625, -1.7128906, 0.20422363, 1.3378906, 0.23864746, 0.5996094, -2.7773438, 2.5292969, -0.6201172, 1.0107422, -1.2617188, 2.8613281, 1.0214844, -2.2734375, 1.390625, 0.42822266, 4.8007812, -0.71728516, -2.5722656, 0.5932617, 0.042175293, -0.53271484, -1.3115234, -0.2705078, 1.8964844, -1.7011719, -0.10021973, 0.5253906, 2.1269531, 1.7910156, -0.07556152, -2.4394531, 0.55908203, 1.4990234, -0.32055664, -2.203125, -0.8833008, -0.20214844, -1.4013672, -0.23352051, -2.7480469, 2.96875, -1.4169922, 0.7128906, -3.8164062, 1.1992188, -0.5776367, -0.30566406, 1.3828125, -3.1992188, 1.6240234, -1.2919922, -1.1152344, -0.76953125, 0.33422852, -0.6357422, -0.033294678, 3.2636719, 2.109375, -1.5996094, 0.010719299, -0.6069336, -1.0683594, -1.0097656, -0.79589844, 1.0195312, 1.4511719, -0.60253906, 0.18811035, -0.36865234, 3.578125, 1.9453125, 0.23120117, 1.0908203, -0.71533203, -2.5410156, 2.2460938, 2.3417969, 0.39648438, 0.113342285, 0.45703125, 3.1484375, 1.9785156, -0.7871094, 0.7753906, -0.71533203, -1.5380859, -0.8588867, 2.0332031, 1.4785156, -2.1113281, 1.0839844, 1.0263672, 1.0410156, 2.4902344, 2.4550781, -0.3125, -4.2304688, 1.5673828, 1.0380859, -2.0273438, 1.8076172, 0.65771484, -1.2851562, 3.7246094, 0.48779297, -3.0683594, -0.016860962, 1.4492188, 0.053497314, 1.3427734, -2.8515625, 0.072631836, 1.4765625, -0.7895508, -0.49902344, 0.13586426, -0.39672852, 3.8769531, -0.80615234, 1.2304688, -0.01902771, 2.5585938, 1.2050781, -1.5507812, -2.7324219, -0.44873047, -3.1855469, -1.8535156, -2.3808594, -1.4072266, -2.7246094, -1.3837891, 2.0332031, 2.1542969, 1.140625, -0.47827148, 1.4863281, -1.3125, 0.22436523, -0.1998291, 1.0048828, -0.024658203, -0.5058594, 1.3320312, -3.0058594, -0.7734375, -1.5673828, -0.62158203, 0.19116211, -0.11022949, 0.49145508, 1.9960938, -0.4020996, 0.046325684, -1.3847656, -3.5917969, -0.32470703, -0.46875, 1.6806641, 1.5908203, -0.4543457, -0.6098633, 1.6542969, -0.7680664, -0.6923828, -0.6298828, -0.7167969, -0.36572266, 0.035705566, -0.88134766, -1.2597656, -1.828125, 1.9111328, 0.124572754, 1.9121094, -1.6845703, -0.67333984, -1.3173828, 0.9848633, -2.2929688, -0.43945312, 1.8955078, 1.0410156, -0.6069336, 1.5292969, 0.81591797, -2.0839844, 0.74121094, -3.328125, -1.2470703, 0.0015544891, -2.7246094, 4.0273438, 0.95458984, -0.32885742, 0.8105469, 1.6835938, 3.2519531, 1.7216797, -0.9916992, 1.0361328, 1.171875, 0.85791016, -2.4394531, -0.65625, 0.34179688, 0.5703125, 0.9038086, -1.1816406, -0.3173828, -2.765625, -2.328125, 2.703125, -3.0566406, -0.11254883, 1.6210938, 0.25463867, 2.8828125, 0.3708496, -0.9082031, 1.1269531, 1.9404297, -0.55615234, -0.3864746, -0.05706787, 3.4492188, 2.5175781, -1.3955078, -1.0839844, 0.46801758, 1.7783203, 3.7265625, 1.0224609, -0.22607422, 0.9916992, -1.1269531, -0.81396484, -0.57421875, 1.5986328, -0.47631836, -0.39819336, 0.15454102, -0.47460938, 3.140625, -1.1328125, 2.2363281, 0.6586914, -1.5595703, -1.8417969, 3.5859375, 1.4248047, -3.9394531, -0.27539062, -2.5859375, 1.0878906, -0.14294434, -1.3154297, -0.42163086, -0.17126465, -0.4416504, -0.5419922, -2.3710938, -3.3105469, 0.11010742, 0.005580902, -3.3515625, -0.21191406, 2.4492188, -1.0361328, 1.7451172, -0.010925293, -0.4404297, -1.8544922, -1.2880859, -2.9570312, 0.60498047, 0.13415527, -3.3359375, 1.6757812, 2.7890625, -0.30541992, -0.9580078, -0.9667969, 0.8911133, 1.7119141, -0.5253906, 2.2441406, 1.5039062, 0.8598633, 1.4033203, 1.5595703, 3.7246094, -0.0061950684, -1.3720703, 1.1738281, 2.2597656, -1.0380859, 1.4414062, -0.30029297, -0.32104492, -1.6708984, 2.3730469, -0.66796875, 1.5800781, 0.53271484, -1.7578125, -2.3300781, -1.4013672, 1.7578125, -2.1015625, -0.80908203, -1.9140625, 0.33544922, 0.9873047, 1.3291016, 1.1171875, 3.3886719, -1.3740234, -0.7504883, -1.4257812, 4.296875, -1.7304688, 0.34057617, -0.24414062, -0.98828125, -0.78564453, 0.40039062, 1.9013672, 0.34545898, 0.89208984, -0.34301758, 1.7421875, 1.3486328, 0.3918457, -2.6308594, 0.1640625, -0.5048828, 1.8671875, 3.6015625, -1.7509766, 0.3815918, -0.44921875, -2.8066406, -2.1445312, 3.1503906, 2.7597656, 0.47045898, -0.8569336, -4.0078125, 1.9238281, -1.2949219, -0.18322754, -2.1503906, -0.24963379, 0.37841797, -2.4238281, -1.2529297, -0.79541016, -3.0859375, 1.4541016, 1.2382812, 0.06945801, 0.42919922, 3.1386719, 0.7128906, -0.34594727, 1.3847656, -0.0993042, -0.028518677, -1.2001953, 3.1660156, -0.35620117, -0.9350586, -1.6660156, 2.4804688, -0.6503906, 0.42822266, 0.60546875, -0.08227539, -1.2197266, 1.7568359, 1.2265625, 2.6640625, -2.6445312, -0.8354492, 2.0585938, 1.6015625, -1.5498047, 0.38671875, 2.6269531, 2.484375, -0.22253418, 2.4609375, 2.0507812, -1.4677734, 1.7246094, -0.27514648, -1.6416016, -0.9794922, 0.116882324, 0.02420044, -1.6259766, 0.32788086, 1.0908203, 0.67333984, -1.3369141, -2.828125, -1.5419922, -0.83740234, -0.056915283, -1.2861328, -1.3916016, -0.7919922, -2.2460938, 1.2871094, -0.7104492, -0.69921875, 2.234375, 0.51171875, 0.9916992, -3.5722656, -1.7216797, -0.8852539, -1.1152344, 0.27270508, 2.8671875, 2.6816406, 1.3339844, 0.33032227, -1.6181641, -1.9677734, 0.94433594, -1.4794922, 2.359375, -1.0966797, -2.8066406, -1.6386719, 1.2001953, 2.6679688, 0.96875, -0.59765625, -1.4794922, -1.8154297, 2.5117188, -1.8535156, 0.046142578, -1.7919922, -1.2832031, 2.3457031, 4.6640625, 1.3300781, 1.328125, -0.81689453, 2.4277344, -0.0012111664, -1.4238281, -0.48632812, 1.7714844, 0.5878906, -0.07647705, 0.2763672, 2.5507812, 0.5522461, 0.08782959, 0.8808594, 1.2929688]}, "B00I8IY6I8": {"id": "B00I8IY6I8", "original": "Brand: Flame King\nName: Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant\nDescription: \nFeatures: Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical\nSafety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\n", "embedding": [-1.9384766, 1.78125, 2.0175781, -0.5253906, 1.4814453, -3.1816406, 0.80810547, 0.65185547, 1.015625, 0.8413086, 2.5488281, -0.16870117, -0.87109375, -4.34375, 1.1259766, 0.6503906, -1.1103516, 1.8935547, 1.0146484, 0.8676758, 2.2929688, 0.47436523, -0.4182129, -1.8037109, 0.39648438, -0.11395264, 2.8535156, -2.6132812, 1.5292969, 0.14758301, 0.9267578, -1.4082031, 1.2675781, 0.8901367, -0.6616211, -1.2148438, 0.022613525, -0.78466797, -4.90625, 0.6333008, -2.7929688, -2.0214844, 1.25, 0.9633789, -0.79003906, 0.74072266, -0.26733398, -0.111572266, -0.7050781, -0.40307617, 1.2285156, 1.3017578, -1.515625, 1.0615234, 0.54248047, 0.6767578, 0.8925781, -3.7597656, 0.14038086, -0.9296875, 2.4941406, -0.4206543, -2.7714844, 1.8027344, -0.7138672, 1.4482422, 0.18884277, -0.16906738, 0.90185547, 1.90625, 2.2714844, 1.2509766, 1.2207031, -1.4609375, -0.6357422, 1.6728516, -2.8203125, 0.83935547, 0.101745605, 0.73828125, -1.3271484, 2.6835938, 0.2434082, -2.8574219, -0.8256836, -0.7758789, 1.40625, 0.020339966, -0.8754883, 2.0097656, -1.4648438, 2.8203125, -0.82373047, -3.8105469, 3.2558594, 1.0761719, 1.1503906, 2.4003906, 2.8417969, 0.7050781, -0.24902344, -0.22973633, -0.4638672, 0.9658203, -1.4814453, -1.7802734, 0.9399414, 0.52441406, -3.1054688, 1.3076172, -0.20080566, -0.010437012, 0.91796875, -0.4724121, -1.2744141, -0.12512207, 0.82910156, 1.6074219, 1.0966797, 0.14331055, 4.6992188, -2.8964844, 1.9160156, -0.0029735565, 1.6181641, 0.87158203, -0.37475586, 2.1152344, 5.578125, 0.049835205, 1.1484375, 0.8203125, 2.5253906, -2.4257812, 0.70214844, -2.2207031, -0.4506836, -2.3398438, -2.3730469, -1.0859375, -3.28125, -0.5385742, 0.67822266, 0.07330322, -2.5175781, -0.7763672, -0.25024414, -0.13793945, -0.7080078, -1.625, 0.43115234, -1.0478516, 0.61328125, -0.46435547, 2.6191406, 0.9692383, -1.2353516, -1.8945312, 0.51660156, 1.5273438, 2.0117188, 0.54785156, -0.54589844, 2.0820312, -0.8803711, -1.7792969, 0.3996582, 0.28027344, -1.4003906, 1.1748047, 0.2548828, -2.4316406, -0.6713867, 1.3173828, -0.7373047, -1.0996094, 0.5444336, 1.1396484, 1.1191406, 0.38452148, -2.9648438, -0.83935547, 0.044067383, -1.0478516, 1.3222656, 0.6113281, -1.5771484, -1.3271484, 0.9863281, -1.1240234, -1.2070312, 2.3496094, -1.5634766, 0.21105957, 0.80078125, -1.7207031, -3.234375, -2.7636719, 1.8662109, 0.77783203, 1.046875, -0.56640625, 1.8144531, -0.13464355, -2.6367188, -2.0605469, -0.24523926, -1.2392578, 0.82421875, 0.71972656, -0.039276123, 0.34350586, 1.4121094, -3.5351562, -0.9560547, -2.3125, -0.6948242, 1.5595703, 1.7529297, 1.0673828, 0.7138672, -1.0429688, 1.4130859, 1.3076172, 0.7836914, 0.09991455, 0.6645508, 2.1113281, -3.6113281, -0.84472656, 0.88671875, 0.90966797, 0.6010742, 1.5693359, -1.6669922, 0.96240234, -0.3557129, -1.1396484, 0.32373047, 0.56884766, 1.3291016, 1.1523438, -0.5107422, -1.4306641, -1.9482422, -1.5273438, 1.4042969, 0.6801758, 0.5600586, -1.109375, 1.1396484, -0.5522461, 0.23815918, 0.30639648, 1.0126953, 1.3925781, 0.6298828, 1.1728516, 0.5751953, -2.5019531, 1.8037109, -1.2949219, -0.6479492, 1.0332031, -1.1757812, 0.9165039, 3.2109375, -0.43652344, -1.1201172, 0.44384766, -1.6279297, 0.1743164, 0.9135742, -0.93310547, 0.97509766, 3.3496094, -2.2675781, 4.7304688, -1.2666016, 1.1083984, -0.2668457, -1.0732422, 0.20654297, -2.3105469, 0.17626953, 0.18847656, 0.74609375, -0.28051758, -1.1376953, 0.07348633, 4.9882812, -0.89746094, -1.375, 2.1738281, 2.3007812, 1.9951172, 4.0117188, -0.18737793, 1.3935547, -1.4814453, 0.5678711, 0.27416992, -1.0947266, 0.4736328, -0.094055176, -1.4892578, 1.7128906, 0.11010742, 1.6484375, 0.005531311, -1.9550781, 1.2363281, -0.6767578, 1.40625, -0.5498047, -1.0390625, 3.5742188, -2.5859375, 1.3896484, 1.4277344, -0.14733887, 1.9082031, 1.5419922, -0.13391113, -1.3984375, 1.9824219, -0.29345703, 2.1582031, -0.10827637, 1.2246094, -0.18896484, -2.046875, -0.17297363, -0.9975586, -0.2097168, 2.0625, -0.90185547, -2.5175781, 0.27246094, -2.1875, 0.1772461, 0.45898438, -0.39013672, 1.8261719, -0.43530273, -1.9316406, 0.42504883, 0.46411133, 0.21826172, -2.2421875, 0.5131836, 3.8320312, -1.2607422, -1.7460938, 0.90478516, 0.78271484, 1.2392578, 3.3027344, -0.6274414, -0.2241211, 1.0615234, -0.46411133, -0.9238281, -0.640625, -0.81689453, -2.5917969, 2.203125, -2.6738281, 2.3105469, -1.9648438, 0.9355469, -0.4404297, -0.96191406, -0.98876953, -2.5664062, -2.0351562, -0.69384766, 1.1337891, 1.8037109, 1.8144531, -1.1552734, -0.37573242, 0.89453125, -0.3310547, -1.0244141, -1.2392578, 0.4111328, -1.1152344, -1.7470703, -4.9960938, 0.5053711, -1.90625, -0.24243164, 0.25390625, 2.234375, -3.1738281, -0.90283203, -0.7866211, -0.12420654, -0.78466797, 0.7714844, -0.29858398, -2.4042969, -0.43920898, 0.6777344, -0.20751953, -1.6318359, -0.41088867, 0.50878906, -1.0576172, -0.8520508, 0.6435547, -1.4541016, 1.4121094, 0.7158203, -3.2890625, 1.5712891, 1.5458984, 0.10632324, 2.3242188, -3.3574219, -1.1679688, -2.5546875, -0.14562988, 4.2382812, 1.5761719, 1.0371094, 0.097839355, -1.1201172, 1.3671875, -0.26220703, -1.0605469, 0.3400879, -0.35961914, 2.8339844, -1.5273438, -0.24035645, 0.94140625, 2.4707031, -3.9921875, 0.6796875, 1.3134766, -0.1842041, 1.3681641, 1.4765625, 0.17333984, -1.3134766, 0.13793945, 1.6982422, 2.9238281, 1.1845703, 1.2070312, -1.5917969, -0.24133301, -1.0888672, 0.24841309, 3.2324219, 0.5551758, 1.9990234, 2.9570312, 0.77783203, -1.3378906, -1.1669922, -0.63720703, 0.5620117, 0.9057617, 2.6425781, -1.1767578, 0.58691406, -2.3847656, -0.092041016, 0.13647461, -1.1728516, -0.17749023, 1.1298828, 2.4980469, -0.14575195, -0.26782227, -0.94189453, -1.4589844, -2.1738281, 4.2617188, -1.3564453, 0.61279297, -0.5107422, -0.35961914, 1.5146484, -4.0976562, 1.7851562, 0.070007324, -0.16296387, -0.35009766, 1.9550781, -1.3193359, -2.1347656, 0.21398926, -1.5410156, -1.6933594, 1.8183594, 0.03265381, -3.3632812, 0.015151978, -2.9375, 0.88623047, -0.010749817, -1.1191406, 1.4501953, 1.3945312, 0.3317871, -0.3569336, -1.0966797, 0.6699219, 1.0878906, -2.5820312, 1.5908203, -1.2509766, 2.7636719, 0.40307617, 0.7939453, -1.5263672, -0.029953003, -1.4287109, 3.3457031, -0.021713257, 3.4003906, -0.030227661, 0.8027344, 1.2412109, -1.8212891, -0.37670898, -1.5869141, -3.1035156, -0.5576172, -2, -0.22106934, 2.953125, -1.8095703, -0.30932617, 0.5151367, 1.9824219, -1.1806641, -0.37890625, -1.0537109, 1.6806641, -2.5214844, 0.10668945, 0.58447266, 2.1386719, -3.1132812, -2.6816406, 0.5839844, -1.4345703, -0.13916016, 1.5712891, -1.5087891, 0.44189453, 2.2890625, -0.85839844, -0.0184021, -1.0253906, 3.0019531, -1.0878906, -1.2558594, -1.5371094, 1.3134766, 1.8066406, 0.4296875, 1.6240234, 1.7304688, 1.2988281, -1.5498047, -1.8623047, -0.40649414, 1.5, 0.6616211, -3.9941406, -2.1230469, 0.33911133, 0.15734863, -2.6875, 1.4433594, -0.7011719, -0.037261963, 3.5253906, 0.73876953, 0.7788086, 1.8720703, 0.57910156, -1.8027344, -0.06359863, 1.4306641, -1.0537109, 0.9736328, -0.58496094, -0.35888672, -1.6298828, 1.8212891, -2.9472656, -1.9482422, -2.9238281, 0.53759766, -3.5546875, 1.5791016, 3.8710938, 3.1523438, -0.78808594, -0.61035156, -0.50878906, -0.25708008, -0.028305054, -1.3173828, 1.28125, -1.1748047, -2.1347656, 0.61279297, 0.054473877, -0.1574707, 1.3974609, 1.0605469, -1.0390625, -1.6601562, 0.7241211, 0.77978516, -2.1855469, 0.14147949, -0.59814453, 0.011680603, 3.2636719, -2.1425781, -1.1396484, 1.90625, 0.9248047, -0.7807617, 0.5307617, -0.3605957, 0.9614258, 2.5351562, 0.38452148, 1.5605469, 1.3974609, 2.1347656, -0.8642578, 1.1884766, -1.1904297, 1.4199219, 0.6855469, 1.359375, -0.52490234, 1.5, 1.6367188, 0.12243652, 0.2763672, 0.36669922, -0.6176758, -0.80371094, 0.6352539, 0.8828125, -3.6640625, -2.8691406, -0.8730469, -0.75341797, 3.3476562, -1.28125, -3.1757812, -0.6928711, 2.203125, -0.42871094, 0.734375, 0.9794922, -0.7636719, -1.9570312, -1.9814453, -1.8925781, -1.3066406, -0.06732178, 1.1445312, 1.1210938, -0.12890625, -2.1230469, 0.8149414, -0.49414062, 1.3173828, 1.7246094, -1.4511719, -0.80859375, -0.3022461, 0.5932617, 1.1210938, -2.6777344, 1.0957031, -1.3232422, 0.76953125, -0.17749023, 0.07055664, 2.2148438, -1.1347656, 0.3071289, -2.1015625, 1.4472656, -0.55126953, -0.93603516, 2.734375, -1.3925781, 2.2832031, -1.1318359, 0.25048828, -1.2470703, 1.4824219, 2.28125, -0.8017578, -0.9086914, -0.051940918, -2.8125, -5.265625, -2.4863281, 1.1269531, 0.8535156, 0.041778564, -1.0898438, -2.8496094, -0.60839844, -1.7285156, -1.2294922, -1.0976562, -0.028167725, 0.04626465, -0.65722656, -1.2832031, 1.9580078, 0.29077148, 1.25, 0.88134766, -1.4052734, 0.28955078, -2.0507812, -2.8613281, 1.9990234, -1.4228516, 0.97509766, -0.05596924, -1.40625, 1.0537109, 1.5146484, -0.034332275, -4.34375, 2.2324219, -3.2597656, -0.44702148, 2.6601562, -3.1152344, -2.1269531, 0.8613281, -0.6269531, 0.29248047, 1.0595703, 2.0703125, -3.2675781, -1.8291016, -1.9443359, 2.2832031, -1.6123047, 0.9511719, 2.3125, 2.1855469, 0.20178223, 1.8095703, -1.1806641, -1.7128906, -2.1464844, -0.78564453, -0.6464844, -2.671875, -0.4128418, -1.1230469, 0.9550781, -0.5732422, -0.8046875, -0.85546875, -0.15307617, -1.6074219, -0.9038086, 2.5253906, -2.7207031, 2.6679688, 3.0429688, -2.1367188, -2.0703125, -1.1542969, 0.8823242, 1.4404297, -3.3496094, -1.078125, 0.26538086, 0.15991211, 2.203125, -1.0791016, 0.93603516, 0.2244873, 1.8496094, -1.4628906, 0.26586914, 3.5761719, -1.1074219, 2.4785156, 0.58740234, -1.6962891, 1.0927734, 2.5117188, 1.1621094, -2.6386719, 0.50878906, 0.0859375, -0.7553711, -0.5053711, -0.5883789, 0.66259766, -2.8320312, -0.75390625, 0.19189453, -1.2568359, -4.8828125, 0.20983887, 0.3239746, -1.3681641, -0.24145508, 0.41186523, -0.30639648, 0.44604492, 1.8291016, 1.8671875, -1.9501953, -0.061401367, 1.0957031, 0.96191406, 2.6113281, -1.7695312, 1.9482422, 1.1425781, 0.03451538, -1.2373047, 0.5185547, -0.8803711, 3.1308594, 1.4404297, 1.2333984, 3.7363281, -0.8105469, 1.7890625, -0.5439453, 1.7675781, 4.3671875, 0.056671143, 1.1171875, -0.4543457, 2.0253906, 0.6176758, -0.57421875, 1.9345703, -0.8754883, 0.71533203, -0.54785156, 1.2558594, 2.0136719, -1.0751953, 1.96875, -0.64453125, -1.4169922, 0.30810547, 0.19030762, -1.5498047, -1.0449219, 1.4804688, 2.0390625, 0.8691406, -0.44580078, 0.49243164, -0.17663574, 0.80859375, 1.1347656, -0.6699219, 0.34301758, -1.8574219, -1.0839844, 0.0317688, 2.2246094, 0.828125, 0.3881836, 1.0634766, -0.18908691, 0.35205078, 1.3974609, -0.11035156, -2.1875, 0.4111328, 1.0761719, 1.1240234, 2.0625, -0.8222656, 3.8085938, 1.6054688, 0.36914062, -2.7675781, 3.28125, -0.8339844, -0.82128906, 1.3417969, -1.7128906, 0.34545898, -1.2792969, 1.3417969, -4.2695312, 1.1074219, 0.3022461, -2.3847656, 2.0371094, 0.81396484, -1.2617188, 4.453125, 2.1367188, -1.1855469, 0.34960938, -0.9511719, 1.1894531, 0.64404297, 0.4453125, -0.3154297, 1.7929688, -0.8017578, 4.3046875, -1.6328125, -1.0107422, -1.1904297, 1.2851562, 0.20471191, 0.18603516, -0.008102417, -1.9433594, 1.1699219, 0.38256836, 0.45825195, 0.43652344, -1.5332031, -0.35668945, -2.2070312, -0.21008301, 1.2431641, -1.9248047, 0.4489746, 1.2929688, -0.765625, -1.9589844, 3.6640625, -0.22485352, 0.8598633, 0.15405273, -1.6777344, -0.5551758, 0.22692871, 1.5996094, -2.9042969, -0.92285156, 0.4482422, 2.7324219, -0.37060547, -2.7734375, -0.9379883, -0.19030762, -0.15405273, -2.2773438, 1.046875, -1.4160156, -0.61865234, 1.7871094, -0.42236328, 0.30639648, 1.4042969, -0.49438477, 1.5615234, 0.22631836, -1.2128906, 1.4785156, -0.1496582, -0.9433594, -1.3496094, 0.9277344, 0.8754883, 0.15686035, 0.20629883, -3.703125, -1.9550781, -1.9345703, 1.0527344, -1.0908203, -2.3671875, 0.22631836, 1.3466797, 1.4912109, -0.3466797, 0.1541748, -0.50927734, 1.7587891, 1.3300781, -0.6381836, 2.2382812, -0.64746094, -0.43920898, -0.49267578, 3.0390625, 1.2236328, -0.29101562, -0.92089844, 0.9711914, -1.9589844, -0.50683594, -0.78271484, 0.0015935898, 1.1865234, 0.6254883, 1.7773438, 2.3808594, 1.0595703, -0.03768921, -1.6767578, -2.0136719]}, "B08C92F6KZ": {"id": "B08C92F6KZ", "original": "Brand: CitruSafe\nName: CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills\nDescription: Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill\u2019s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone\nFeatures: 1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner.\nFormulated to safely clean burnt food and grease off of BBQ grill cooking surfaces.\nWorks great on grill grates, smokers, ovens, microwaves, and more.\nPair with our Citrusafe BBQ Grill Scrubber for optimal results.\n", "embedding": [1.5273438, 1.1513672, 3.2675781, -0.4633789, 0.40039062, 0.13122559, 1.3759766, -3.3632812, 0.19189453, 2.1523438, -1.7304688, -0.6123047, 0.2536621, -1.9423828, 1.4931641, -0.12017822, -0.28442383, 2.6289062, 2.7910156, 0.9482422, 1.0283203, 1.1181641, 1.0390625, 1.3935547, 1.3671875, 0.64453125, 2.6875, -2.4746094, -0.19921875, -3.7597656, 0.13439941, 0.0524292, -1.2753906, 0.8022461, -3.3867188, 0.49121094, 0.07672119, 0.29760742, -1.6259766, -0.105407715, -0.66552734, 0.9692383, 1.5048828, -0.28808594, -3.7070312, 1.3134766, -0.28466797, 1.859375, 0.17211914, -2.7324219, 0.40844727, 0.7993164, 1.8984375, -1.890625, -1.4501953, 2.8476562, 0.29736328, -1.9091797, 0.7397461, 1.0693359, 2.1074219, 2.4960938, 0.73779297, -0.46484375, 0.37475586, -1.8193359, 0.10736084, -0.6098633, 1.484375, -1.6630859, 0.2849121, 0.5576172, -2.1132812, 0.14819336, -0.2824707, 1.0507812, -0.53759766, 2.4550781, -1.2314453, 0.16503906, -0.2524414, 1.2265625, 0.7475586, -2.8554688, 0.27441406, 1.2548828, 0.82470703, 0.14624023, 1.8076172, -1.0449219, 0.18664551, 3.2226562, 0.0027866364, -2.7207031, 3.0214844, -2.6796875, 0.14038086, 0.6323242, -0.3671875, 1.5527344, -1.9501953, -1.3095703, -0.67822266, 0.36694336, -3.5839844, 0.3413086, 1.5341797, 0.6723633, -1.8847656, 0.39160156, -0.1619873, 0.92822266, -1.8085938, -0.8911133, 1.1171875, 0.53515625, 0.95410156, -0.01335144, -0.40673828, -0.10040283, 1.8027344, -0.9301758, 0.88378906, -1.1123047, -0.6772461, 0.36865234, 0.9848633, 1.859375, 2.3144531, -0.79785156, -0.46948242, -0.9086914, -0.7241211, 0.33764648, -1.0078125, -1.9306641, -2.1269531, -2.7207031, -1.5566406, 0.4892578, -3.7929688, -0.5649414, 1.1904297, -1.4570312, -2.0039062, 0.022628784, 0.73291016, -0.16821289, 0.15686035, -0.4970703, 1.5839844, 0.027740479, 0.3359375, -1.4101562, 1.7734375, -1.3828125, -1.5498047, -2.4863281, 1.7255859, 1.4580078, 0.69384766, -1.5839844, -0.10772705, -0.24975586, 0.80322266, -0.9892578, -0.9301758, 2.0253906, 0.33276367, 0.63378906, -0.3400879, -1.9960938, 1.5390625, 0.8515625, 1.7451172, 0.3894043, -0.5805664, 2.0292969, 0.25610352, -1.8164062, 1.0273438, -1.8300781, -0.3017578, 0.9008789, -1.2167969, -0.72314453, 0.8569336, 0.28955078, -0.066467285, -2.2363281, 2.0058594, 3.5898438, -0.86279297, 0.7993164, 0.09429932, -0.52490234, -0.5024414, 0.14147949, -1.4267578, -0.34570312, -2.2792969, -1.6982422, -0.3720703, 0.88378906, -0.51220703, -3.7519531, -1.1982422, 1.3574219, 1.0703125, -0.52246094, 1.2236328, -3.5488281, 2.5214844, -0.7050781, 0.30200195, -1.4111328, -2.8789062, -0.7758789, -0.37841797, 0.34375, -0.85058594, -0.5810547, -0.43920898, 4.3789062, 0.2932129, 1.1269531, 1.203125, 0.10852051, -1.2314453, -1.5859375, 0.8120117, 1.6074219, -0.51708984, -0.8466797, -1.2060547, 1.1865234, -0.9140625, 1.8261719, -1.3857422, -0.73095703, -0.15283203, 1.1933594, -2.6816406, 1.8369141, 0.14428711, -0.9140625, 0.75390625, 3.5410156, -0.7084961, -1.5800781, -0.9892578, 2.15625, 0.4267578, 1.4541016, 0.8066406, 0.035125732, 0.038116455, 0.6225586, -3.4726562, -0.085998535, 0.09246826, 2.171875, 0.35888672, -0.3701172, -0.41430664, 0.054626465, 1.4335938, 0.32885742, -1.2382812, -3.0371094, 2.0390625, 0.84521484, 0.29174805, 0.41308594, -1.4228516, 1.6142578, -0.061187744, -0.5136719, 1.1064453, -0.77685547, -0.87109375, 1.1201172, 4.0390625, -1.7763672, 1.4511719, -0.8491211, -1.4121094, -0.002084732, -0.3017578, -3.1953125, 3.9023438, 0.070739746, -4.0820312, 3.1582031, -0.6533203, 0.52783203, 1.4785156, 0.10235596, -1.8378906, -0.28955078, 2.5253906, 1.4189453, -0.43310547, 3.0253906, -3.2304688, -1.1230469, 1.6123047, -2.46875, -1.2109375, 4.2734375, 1.4980469, 1.1884766, 1.7041016, 1.3789062, -1.4550781, 0.4934082, -0.3828125, -0.21313477, -0.28735352, -1.6386719, 0.2529297, 2.1230469, -2.46875, -1.34375, -2.3457031, 1.1660156, -0.51953125, 0.57470703, 0.41186523, -1.4345703, -0.20898438, 2.0996094, -0.0131073, -0.71435547, -2.0996094, -1.453125, -0.19995117, -1.2958984, 0.71728516, -1.9580078, 0.13647461, -0.6777344, -0.7446289, -3.0351562, -0.796875, -2.1074219, -3.8867188, -2.9355469, -1.4619141, -0.47314453, -0.5175781, -0.3486328, -1.4882812, -1.5439453, -0.03451538, -1.8134766, -1.0019531, 0.13110352, -1.1796875, 1.3076172, -1.0791016, -0.77490234, 0.2890625, 1.3955078, 1.2392578, 0.3959961, -2.0332031, -2.828125, 0.44189453, -3.0449219, 0.39331055, -1.3984375, 2.6347656, -1.9775391, 0.04714966, 0.16662598, 0.50390625, 0.92822266, 0.34985352, 2.2890625, 1.4853516, -1.7167969, 1.3476562, -0.45288086, -1.6835938, -1.0566406, 2.3222656, -0.33740234, -2.5058594, -1.4423828, -0.23352051, -0.37158203, -2.1230469, -0.33569336, 2.8359375, -0.21691895, 2.1464844, -1.5439453, -0.3779297, 2.34375, 1.2851562, -0.8125, -1.4355469, -0.86279297, -0.0074310303, -2.2929688, -1.8417969, -1.5078125, 1.59375, 0.1295166, 0.5107422, 0.3317871, -0.13146973, -0.62402344, 1.4794922, -3.0722656, 3.1230469, -1.1474609, -3.5039062, 3.0292969, 0.4794922, 0.8183594, -2.6992188, -0.56103516, 1.3867188, 0.8027344, 1.5185547, 2.1640625, -1.4951172, 3.5410156, 1.9335938, -1.9501953, 0.60791016, 2.1953125, 1.3310547, -0.26586914, -3.3554688, 2.4511719, 1.4052734, 0.19946289, -0.2578125, -0.7363281, -0.0016918182, 2.8085938, 3.2578125, 1.3173828, 1.4482422, 0.48461914, 3.1308594, -0.94677734, -0.81884766, 0.24206543, -0.74853516, -2.2539062, 0.6586914, 1.1601562, 0.56689453, 1.6865234, 2.6367188, 4.0625, -1.578125, -2.4707031, -0.40649414, 1.2490234, 1.2802734, -2.7109375, 0.32910156, -1.0810547, -1.1933594, 0.1875, -0.3618164, -0.70947266, -0.4423828, 1.7880859, 0.7495117, -1.1738281, 0.84716797, -1.3603516, 0.73095703, 1.2919922, -1.0810547, 0.85791016, 0.41723633, -0.9785156, 0.68408203, -3.8164062, -0.91259766, -2.7480469, 2.2558594, -0.56152344, -3.15625, -1.6787109, 2.84375, -1.6611328, -2.0410156, 1.2998047, 4.1445312, -0.9042969, 1.5761719, -0.45629883, -0.71240234, 3.4765625, -1.3544922, -1.6181641, 1.3964844, -4.1640625, -0.7426758, -3.0195312, -0.14367676, -0.16723633, 0.5136719, 0.10876465, 1.1386719, -1.3955078, 1.5712891, -1.1201172, 0.8486328, -1.3115234, 0.23742676, -1.6513672, 0.71191406, 1.7519531, 0.21813965, 0.14172363, 3.6289062, 2.953125, -1.3291016, -0.25, -2.3847656, -0.71240234, -0.64453125, -3.4296875, 0.059753418, 0.7680664, -0.5288086, 2.7304688, 1.6181641, -0.97509766, 3.1582031, -0.16418457, 0.98876953, -0.8808594, -1.2509766, 1.8515625, 0.06677246, 0.6933594, 2.2246094, 0.8125, -2.0742188, -1.4951172, -2.1171875, -1.9570312, 0.6376953, 2.1230469, 0.7885742, 0.4260254, 0.8051758, 0.4152832, 0.8701172, -0.78808594, 1.9414062, 0.6777344, 0.3942871, -1.9208984, -0.34545898, 0.59033203, 0.59521484, 0.26416016, -1.2373047, 1.9179688, 0.5917969, -2.2539062, -1.0898438, 1.4980469, 0.24145508, -0.32104492, 0.6245117, -0.69091797, 0.72509766, -0.82714844, -1.0195312, -0.8769531, -1.8339844, 0.19494629, -1.8798828, 1.8378906, -0.22766113, 0.2668457, -0.53271484, -1.2080078, -0.16223145, -3.4960938, -0.44067383, 0.46679688, -0.5673828, 0.03466797, -2.2871094, -2.4121094, -2.359375, 0.94384766, -1.2763672, 0.80615234, 3.0957031, 1.4775391, 0.007209778, 1.0556641, -1.8320312, -0.9375, 0.87890625, -2.3847656, -0.45336914, -0.14245605, -0.8989258, 0.48632812, -1.2314453, -0.22192383, 0.3857422, -0.086120605, -0.39111328, -4.3320312, 0.20568848, -3.0839844, 1.7714844, -0.25512695, 1.2353516, -0.06652832, 1.7080078, 0.16442871, -2.2929688, -1.0253906, 0.5522461, -0.39208984, -1.203125, -0.60791016, 2.2636719, 1.2070312, 3.4609375, 2.2539062, 2.7636719, -0.96240234, 0.80029297, -2, 0.25341797, -0.93603516, 1.8320312, 1.953125, -0.3112793, -1.1386719, -1.1337891, 2.3496094, 1.7304688, -1.2050781, 0.32006836, 0.19116211, -4.3085938, 0.34033203, 0.27856445, -1.9052734, -0.04788208, -0.90234375, -2.4707031, 1.484375, -0.38232422, -2.1269531, 0.009048462, 0.7675781, -1.3222656, 1.8486328, -2.359375, 2.4980469, -0.009857178, -0.05596924, -0.9682617, -1.3076172, -0.9033203, -1.2792969, 0.93310547, -0.36743164, 1.7509766, -0.12408447, 3.546875, -1.2568359, -1.0878906, 1.5273438, -0.24963379, 2.4160156, -0.17236328, -1.7705078, -1.7529297, -2.2695312, 0.57470703, 1.4462891, 3.0683594, -0.7363281, 1.1474609, -1.0136719, -0.6123047, -2.5996094, 1.4726562, 0.9614258, -1.3330078, 3.015625, -3.8417969, -0.79345703, -3.4785156, 0.3408203, 1.8720703, 0.6074219, 2.3691406, -2.8691406, -2.1464844, 0.8925781, -0.8330078, -3.9101562, -2.4648438, -0.7265625, 1.2412109, -0.13623047, -1.4023438, -0.09539795, 0.7607422, 1.2080078, 1.8017578, -1.6943359, 0.36328125, -0.8457031, -1.6484375, -0.65185547, -0.16247559, -0.80859375, -0.07196045, 0.22094727, 0.9536133, 0.48046875, -3.2910156, -0.859375, 0.8671875, -2.6191406, -2.4472656, 3.1503906, 0.86572266, -1.1064453, 1.3603516, 0.61621094, -2.5371094, 3.0722656, -1.2734375, -0.26171875, 0.73339844, -1.5146484, 0.3388672, -1.6474609, -1.2011719, 2.7421875, -1.8857422, 1.7910156, 1.2841797, 0.26757812, 2.1191406, 1.2988281, -0.16003418, -1.3652344, -0.7626953, 3.5175781, 3.0019531, -1.4072266, -2.4316406, 1.3613281, -3.7226562, -2.7441406, -0.68603516, 0.30322266, 1.0996094, -3.4335938, 1.7753906, 0.61035156, 0.08642578, -0.0904541, 1.0537109, -0.60302734, 0.99658203, 3.5351562, 1.3496094, 3.25, 3.5742188, 0.6274414, 0.4753418, -2.6953125, 0.50683594, 1.1699219, 0.43652344, -0.78515625, 0.051696777, -1.3847656, -0.31518555, -0.63720703, 2.921875, -1.2128906, 1.4550781, 0.6586914, 1.1748047, 1.4755859, -3.8652344, 3.3789062, 0.32763672, 2.9160156, -0.7709961, 1.9384766, -1.2919922, -1.6201172, 1.6972656, -1.4072266, 0.20141602, -0.10272217, -2.3496094, -1.5039062, -1.9169922, -0.02961731, -1.3388672, 0.8359375, -3.1738281, 1.5039062, 0.6821289, -0.8276367, -0.88720703, 3.5703125, -0.40893555, 1.8271484, 1.6201172, 0.8383789, -1.8183594, -0.36206055, -0.87402344, -1.484375, 0.95947266, -3.4941406, -0.94677734, -0.6298828, -0.62841797, -1.3251953, 0.21020508, 0.5126953, 0.29467773, -0.82470703, 2.5195312, 0.36035156, 2.5078125, 3.1640625, 1.1669922, 5.0351562, 2.7089844, 0.082336426, 3.2558594, 4.2890625, 1.3056641, 0.037902832, -2.0078125, 2.3554688, 1.09375, -0.48632812, 0.8564453, 1.0263672, 3.8164062, -3.203125, 0.7348633, 0.41870117, 1.0673828, -1.6738281, 1.9521484, -2.8027344, -1.1181641, -0.16442871, 1.0019531, 1.5371094, 0.7441406, -0.3503418, -1.5146484, 0.17468262, 2.0136719, -5.5859375, 1.0585938, 2.2207031, -0.14477539, 0.69433594, 1.6279297, 0.7792969, 2.4003906, -1.1865234, 2.8730469, -1.2714844, 2.9570312, 2.9296875, -2.1816406, -0.12695312, 1.4091797, 0.8647461, -2.4140625, -0.9692383, -0.3383789, -0.54003906, -0.5366211, -0.2722168, 1.3769531, 0.08959961, 1.9501953, 2.3554688, 0.8129883, 0.49267578, 0.5463867, 3.0957031, -0.625, 1.2412109, -2.8789062, -2.2734375, -0.17199707, -0.0524292, 1.4677734, 2.0214844, 0.09466553, -3.5253906, 1.9072266, 0.2956543, 0.41723633, -0.92871094, 2.6367188, 1.6679688, -0.8354492, -2.4335938, -0.29858398, 0.6933594, 1.0996094, -2.6972656, 2.4804688, -0.57958984, -0.31054688, 1.3408203, 0.5205078, 0.7885742, -0.41870117, -0.029083252, -0.6147461, -1.4023438, -2.1054688, 1.5263672, -1.0097656, -0.29467773, -1.0039062, 0.71728516, 3.1308594, -1, 0.91503906, 0.94189453, 0.6328125, 2.2441406, 0.13891602, 1.0410156, -2.4238281, -1.6884766, -0.5864258, -0.9741211, -0.033721924, 0.75634766, 1.0537109, -1.2871094, -1.0517578, -1.03125, 0.77734375, 0.114868164, 0.2824707, 0.6582031, -3.5605469, 0.30419922, 1.8085938, -0.86816406, 2.4746094, 0.6777344, -0.041046143, -0.58496094, 0.055541992, -1.5654297, -1.1582031, -1.8720703, -1.0605469, 0.051940918, 5.7578125, 4.5039062, 1.3994141, -2.4824219, -0.2619629, 1.4130859, -0.2310791, 1.0244141, -0.064575195, -0.44018555, 0.21081543, -0.5629883, 1.9345703, -1.3613281, -1.4140625, -1.2744141, -0.94921875, 0.7631836, 0.09564209, 2.1621094, -0.7504883, 0.17565918, 2.8085938, 1.1074219, 3.7207031, 0.76708984, 0.61035156, 0.36450195, 0.3864746, -1.3945312, 3.4316406, -1.6953125, 0.89746094, -0.70410156, -0.31933594, 0.82128906, 0.21484375, 0.7373047, 0.45751953, -1.1074219]}, "B089NMPKBV": {"id": "B089NMPKBV", "original": "Brand: Techwood\nName: Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.\nFeatures: [\u2668 LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it's space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It's compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it's a perfect size for camping.\n[\u2668 FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food.\n[\u2668 HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n[\u2668 APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n[\u2668 GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.\n", "embedding": [-2.6582031, 0.69677734, 1.3730469, -0.3269043, 0.8359375, -0.78222656, 1.9902344, -0.35766602, -1.7070312, 1.3671875, 0.27929688, 1.640625, -1.1083984, -3.3085938, -1.4248047, 0.41088867, 0.74121094, 0.37353516, 0.67285156, -0.5004883, 0.4338379, 0.014831543, -0.2927246, -1.7880859, 0.045166016, -0.87841797, 2.5859375, -1.9550781, 0.80810547, -0.72314453, 1.1220703, -0.53466797, 0.0054473877, 1.9414062, -2.0898438, 0.6386719, -0.7939453, 2.3554688, 1.0976562, 0.08380127, -1.4130859, -2.9472656, 1.5253906, 2.1210938, -4.1210938, -0.36083984, -0.29296875, 3.6523438, 0.21484375, -0.3269043, 2.0722656, 1.4277344, 0.7246094, 0.060058594, -1.4638672, -0.09753418, -0.78759766, -3.5390625, 0.8930664, -1.6357422, 2.2148438, -1.8789062, 1.1210938, 2.3808594, -1.6230469, -2.0371094, 0.26538086, 0.11651611, -1.1181641, -0.9921875, 3.0664062, -0.9501953, -1.3818359, 1.0927734, -1.0048828, -0.37353516, -2.1015625, 2.0800781, 0.87402344, -1.0634766, -2.0839844, 2.7128906, 1.1279297, -1.9365234, 0.6166992, 1.0351562, -2.265625, 0.18188477, 1.7705078, 1.7617188, 1.1240234, 0.98339844, -1.7412109, -4.3671875, 1.9345703, 0.099853516, 0.01991272, -0.9814453, -0.7470703, 3.1523438, 1.5488281, 1.046875, -1.1123047, 0.31445312, -2.5859375, -1.4619141, 2.5058594, 1.2851562, -1.0644531, 1.1542969, -1.0957031, 1.5595703, -0.23657227, 1.4150391, 2.3085938, -0.56347656, -0.578125, 0.56884766, 2.7226562, 3.2167969, 3.5878906, 0.25146484, 1.3183594, -2.0058594, -0.27172852, -0.58447266, 0.51464844, 1.8037109, 3.3867188, -1.3710938, -1.3613281, -0.2286377, -0.28466797, 1.9521484, -1.3955078, -2.2675781, -1.1064453, -0.7836914, -1.6738281, 0.29785156, -1.3447266, 1.5478516, 2.2089844, -0.6904297, -2.4628906, 0.4934082, -0.265625, 0.17358398, -0.6196289, -1.7548828, 0.09039307, -1.8984375, -1.4912109, -3.0292969, 0.93408203, -0.099853516, -1.4023438, -0.2614746, 1.7636719, -0.8496094, 0.8310547, -1.9287109, -1.6064453, 0.011299133, -0.17504883, -2.4277344, -0.8378906, 1.4130859, -0.013694763, 1.7333984, 1.1035156, -1.4931641, 0.30419922, -0.97314453, 1.9921875, -1.9257812, -0.57666016, 2.8632812, 0.50390625, -1.3320312, 1.3613281, -0.453125, 1.2050781, 1.3095703, -0.71875, -0.002248764, 2.2109375, 0.3798828, 0.22680664, -2.1875, 1.5947266, 0.31860352, -0.5527344, -1.1416016, 1.2548828, -0.6298828, 0.5756836, -1.6503906, 2.2421875, 0.2854004, 0.8208008, 0.77197266, -0.7583008, -0.7348633, -1.7714844, -1.2158203, -2.6269531, -0.43066406, -1.6865234, 1.2900391, -0.042510986, -0.90625, 0.8647461, -0.7597656, 0.80908203, -3.4804688, 1.9199219, -1.9433594, 1.1103516, 2.7636719, -0.58496094, -0.10870361, -0.38671875, 3.1953125, -1.5693359, -0.049835205, -1.2373047, -0.5288086, -0.21264648, -0.38305664, 0.96240234, 0.022659302, 1.2304688, 0.19787598, -1.5429688, 1.3027344, 1.6005859, -0.031341553, -0.8828125, 1.6269531, 0.2076416, -2.1914062, -0.02519226, -0.14697266, -2.0722656, -1.0917969, -3.7519531, 4.0429688, 0.21240234, -1.9628906, -1.1201172, 0.45214844, 1.5175781, 2.7773438, 0.92822266, 0.3203125, -0.8535156, 0.4025879, -4.3085938, -1.5722656, -0.13769531, 1.6660156, -0.6611328, 1.0234375, -0.68359375, -1.0410156, 3.0976562, 0.44726562, -2.7714844, -2.4960938, 0.82177734, 0.115478516, 0.16381836, 1.0791016, 2.2070312, -0.42016602, -0.6796875, 0.005176544, -0.6508789, -0.8984375, 1.0498047, 1.5292969, 3.1347656, -0.45581055, -0.4272461, -1.6806641, -0.74121094, -0.7578125, 1.6269531, -0.2783203, 4.9101562, 0.23693848, -3.3417969, 3.5195312, -4.7890625, 0.51464844, 1.0830078, -1.0839844, 0.4321289, 0.6850586, 2.7109375, 0.92285156, -1.1181641, -0.45922852, -2.5351562, -0.77783203, 0.27978516, -2.2167969, -0.10064697, 1.4257812, -0.95654297, -1.9892578, -1.6591797, -0.3762207, -3.2578125, 0.13745117, 0.58740234, -1.7285156, 1.3994141, 2.4726562, -0.72021484, 1.1289062, 0.36791992, -1.6152344, -2.2949219, -0.37524414, 0.5883789, -0.12524414, -0.23876953, -3.34375, 0.33813477, -1.7050781, 1.1884766, -0.97509766, -1.0742188, -2.0449219, -2.2304688, -3.1992188, -0.23095703, 0.56103516, -1.6240234, 0.3935547, -1.5566406, -1.6132812, -0.77783203, 0.008850098, -0.9082031, 0.33081055, 0.13977051, 3.0390625, 0.85546875, -0.02128601, 2.1191406, -4.15625, -1.0341797, 0.6611328, 0.82128906, 0.6279297, -3.1015625, 0.24035645, -0.55859375, 1.0800781, -0.43481445, 0.44799805, 1.1630859, -0.5498047, -1.4306641, -3.296875, -0.17834473, -1.1074219, -1.4375, 0.32177734, 0.010047913, -1.4765625, -1.65625, -0.7504883, -0.04144287, 2.9277344, 0.8520508, 3.2441406, -0.42089844, 1.1279297, -0.051879883, 0.18286133, -0.8828125, -2.4824219, -0.92871094, -1.7988281, 0.2705078, -1.5537109, 0.9296875, -1.2871094, -0.54052734, -1.3222656, 1.9570312, -0.6401367, 0.10821533, -1.6337891, -0.32739258, 0.37280273, -1.6396484, -1.1904297, 0.1953125, -2.7207031, 0.5332031, -1.5976562, -1.4755859, 0.17993164, 1.0488281, -0.3935547, 2.8007812, 0.8051758, -0.1541748, -0.03741455, 1.9296875, -2.5234375, 2.9453125, 0.44335938, -1.8125, -0.32836914, 0.28393555, -0.61083984, -1.2080078, 1.3417969, 3.0546875, 0.76904297, 0.97265625, -0.043273926, -0.62109375, 1.7910156, 2.0039062, 0.31689453, -0.42822266, 0.3713379, 2.3476562, -3.5859375, -0.46606445, 1.3046875, 2.09375, 0.6298828, -0.18688965, 1.5107422, 1.9423828, 1.7246094, 2.6035156, 2.3457031, 0.82666016, -1.9082031, 1.7753906, 0.043640137, 0.265625, 0.75390625, -1.2089844, 0.45141602, 0.16210938, 2.0625, 1.4335938, -0.29492188, 1.4394531, 2.1308594, 0.5205078, -0.6855469, -1.0966797, 0.30004883, 1.3789062, 0.8071289, 1.6972656, -0.18395996, -3.0195312, 0.10131836, 1.328125, 0.19689941, 0.62890625, -1.8095703, 3.0722656, -0.7553711, 0.80566406, 0.42163086, 0.70947266, -0.82666016, -2.4492188, 0.7089844, -2.6308594, -1.2099609, 0.67529297, -1.8916016, -3.1777344, -3.2539062, 1.7871094, 0.060424805, -1.3486328, 1.2128906, 3.4414062, 0.48046875, -1.3251953, 0.12976074, 2.1777344, 0.57958984, 1.5283203, -0.31958008, -1.0126953, 0.9580078, -2.4394531, 2.1386719, 1.3027344, 1.1630859, -1.5546875, 0.73779297, -0.39990234, 0.023025513, 1.4277344, 1.7060547, -1.4511719, -1.4980469, 0.71533203, -2.5976562, -1.0664062, 0.064453125, -2.2128906, -0.32104492, 1.9316406, 0.28051758, 1.4804688, -0.5, 1.4160156, -1.6757812, -2.7402344, 2.1328125, -2.5371094, 0.09063721, -2.3105469, -4.75, 0.79003906, 0.099243164, -0.6430664, 2.9023438, 0.083984375, 0.9448242, 3.046875, 0.609375, -0.22290039, -0.37353516, -3.0078125, 0.32348633, -2.1601562, 1.1708984, 0.07409668, -0.11920166, -2.4609375, -1.6220703, -0.7685547, 0.4946289, 3.3242188, 2.5410156, -0.7685547, 1.2470703, -2.7617188, -1.3339844, -0.63378906, -0.45117188, 0.60253906, 0.16894531, 0.36743164, 2.0976562, -0.8989258, 1.3808594, -0.09320068, 0.8100586, 0.8959961, -1.6533203, -3.2363281, -0.64941406, 2.4160156, 1.4345703, -0.5449219, -2.1054688, -2.0546875, 0.87841797, -1.4541016, -1.0234375, -0.84033203, -0.4169922, -2.5664062, 1.7998047, 1.3447266, 0.8198242, 0.953125, 0.022155762, -3.2597656, -1.8505859, -0.17333984, -2.2929688, -3.078125, -1.5976562, -0.042419434, -1.0068359, -1.4277344, -0.6020508, -2.1074219, -1.0019531, -1.6386719, -0.71191406, 3.1445312, 3.0742188, 3.4316406, 4.6914062, -1.2558594, -0.36791992, 2.0703125, -1.5498047, 0.04373169, -0.27929688, -0.09088135, -1.5361328, -0.11968994, 1.9589844, -2.1640625, -1.0410156, -1.2685547, 1.4707031, -0.12017822, -2.6933594, 1.5019531, -0.19824219, -0.1194458, 1.1337891, -1.8388672, 1.7353516, -1.7988281, -0.04373169, 0.52734375, 0.9633789, -1.0996094, 0.0869751, -0.16662598, 1.1025391, 1.2207031, 1.3251953, 1.0410156, -1.0527344, 0.11462402, 1.1074219, 3.1816406, -0.62353516, -0.1697998, 0.9375, -1.2978516, 2.53125, 0.07122803, 2.5273438, 1.3476562, 0.4580078, 2.25, -0.5371094, -1.5351562, 0.38378906, 0.04650879, -1.7089844, 1.5878906, 1.3496094, -1.3242188, 2.8261719, -0.1776123, -2.953125, -1.4726562, 0.71972656, -1.0019531, 0.5209961, -1.2802734, -1.1298828, 1.7128906, -1.7294922, 0.6611328, -0.27539062, -0.94433594, 3.359375, -0.30859375, -0.3798828, -1.3173828, 1.2128906, 2.4414062, -1.8544922, -1.1484375, 2.3828125, 0.13476562, 2.1914062, 0.97021484, -0.19445801, -2.1484375, -3.0488281, 1.8173828, 0.36108398, 2.8808594, 0.19494629, 1.1728516, -1.5771484, 2.2480469, -4.5546875, 4.890625, -3.5917969, -0.5917969, 2.25, -3.0214844, 1.453125, -1.5498047, 0.15930176, 0.94921875, 2.4355469, 2.1992188, -1.9179688, -0.7548828, -0.0647583, -1.9472656, -3.5625, -1.7919922, -0.24157715, -0.53027344, -0.6479492, 2.9707031, -2.5117188, -1.6425781, 1.9492188, -0.26416016, -0.27539062, -0.62890625, -0.44628906, -1.9951172, -1.8271484, 0.6152344, -0.011161804, 2.1113281, 3.1796875, 1.0107422, 0.10430908, -4.8945312, 0.7919922, 0.13256836, -1.1083984, 1.0107422, 1.2988281, 1.5615234, 0.19519043, 1.2675781, 0.62402344, -1.5068359, 3.4550781, -1.8964844, -0.18896484, 1.6083984, 0.31420898, -0.09454346, -2.6796875, -1.5595703, 0.42285156, -2.7402344, 1.4375, 0.21850586, -2.3554688, 0.5283203, -0.43603516, 0.62939453, -0.89404297, 0.89941406, 1.4609375, 1.7324219, -0.56103516, 0.22497559, 0.04107666, -2.8847656, -3.2148438, -0.8364258, -1.1074219, 0.35766602, -2.9667969, 0.3557129, 2.4550781, 0.22595215, 1.2138672, 0.14746094, -0.064453125, -2.5371094, -0.41137695, -0.20605469, 2.0371094, 0.5629883, -2.4492188, -1.5429688, 0.20007324, -0.23718262, -0.18115234, -1.1152344, -0.8881836, -0.66015625, -1.1142578, -0.84765625, 1.8144531, 3.625, 2.4140625, 0.103515625, 1.1210938, 0.35498047, 1.3876953, -1.8300781, 0.4970703, -0.5292969, 3.3105469, 0.21484375, 3.4960938, -0.41674805, -1.0820312, 1.53125, -0.6953125, 2.4589844, -0.4111328, -4.8671875, 0.87841797, -0.6357422, -0.6411133, -2.7363281, -0.3166504, -3.8085938, 1.7597656, 1.1982422, 0.13305664, -2.2792969, 4.0703125, 0.7163086, 4.875, 2.8027344, 0.6743164, 1.0712891, 1.34375, -0.421875, 0.24035645, 2.953125, -0.93652344, -0.09436035, -0.8022461, -1.4951172, -1.2646484, 1.6904297, -0.6333008, 2.7714844, 1.5302734, 1.2939453, 2.71875, 2.0273438, 1.6552734, 0.33007812, 0.13708496, 2.3164062, -0.2644043, 0.32617188, 3.2109375, 3.2480469, 0.32885742, -0.8408203, 2.1699219, 0.60839844, 0.17028809, 0.006816864, 1.2236328, 0.2475586, -4.7695312, 2.2304688, 1.0458984, 0.4633789, -1.1542969, 0.21716309, -2.0722656, -0.97021484, 0.08392334, 1.1005859, 1.9365234, 0.64697266, 0.7104492, 0.6230469, 0.3269043, -1.2773438, -3.6738281, 0.47509766, 0.98876953, 0.30444336, -1.0224609, 1.9492188, 0.98046875, 1.2773438, -0.7167969, 0.67041016, 2.3222656, 0.06573486, 2.921875, -1.0800781, -0.43041992, 0.22436523, 2.5625, -0.6899414, -0.39086914, -0.6777344, -0.92285156, -2.7148438, -2.8886719, 1.7177734, -0.7475586, 2.6289062, 2.1894531, -2.3242188, 0.6689453, 1.4248047, 2.2246094, -1.4003906, 1.8886719, -1.7304688, -1.2216797, -0.6196289, -0.6586914, 1.5595703, 2.921875, -0.34838867, -0.6538086, 2.6582031, 0.5854492, 2.1972656, 0.6201172, 0.10418701, -0.83935547, 0.08795166, -0.20214844, 0.7714844, 2.8144531, -1.2753906, 0.13415527, 0.86376953, 1.4394531, 0.27783203, 0.9511719, -2.1835938, -0.45922852, -0.6489258, -1.5732422, -0.9033203, 0.06536865, -3.2734375, -1.2587891, 0.67871094, -0.32641602, -1.7958984, 0.83935547, 1.0585938, 2.3964844, 1.0751953, -0.039978027, -0.8955078, 0.49438477, 0.8144531, 0.46142578, -0.034332275, 1.7177734, 0.9980469, -1.2548828, -0.5600586, 0.6411133, 2.1347656, 1.3330078, 0.29760742, 0.9013672, 1.4638672, 0.33691406, 2.4316406, -0.1652832, -1.6689453, -1.4785156, 1.2333984, -0.0871582, 1.2324219, 3.8417969, 1.2998047, -1.7578125, -1.8984375, -2.6191406, 0.64160156, 1.0195312, -1.7900391, 1.3544922, 3.1855469, 1.5410156, -1.1738281, -4.046875, -1.6699219, -0.70996094, -1.2109375, 2.6777344, 0.028244019, -1.3925781, 0.4609375, -1.6933594, 1.1845703, 1.0605469, -0.5385742, 0.9951172, -0.04425049, 0.74072266, 1.2197266, 2.3359375, 2.1894531, 0.7338867, -0.13317871, 2.4863281, 1.3583984, 0.17480469, 1.5898438, 1.7519531, 0.59472656, -3.1894531, 0.66503906, -0.2253418, 1.9404297, 1.0292969, 0.3737793, 0.7368164, 0.1529541, 0.16882324, -2.2929688, -3.453125]}, "B001AUPQVM": {"id": "B001AUPQVM", "original": "Brand: Weed Dragon\nName: Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder recommended)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2,000-degrees F\nThe Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval.\nMade in the U.S.A.\n", "embedding": [-0.15283203, 2.1992188, 3.7480469, -0.87402344, 0.11016846, 0.16516113, 1.6269531, -0.032318115, 0.24023438, -0.2919922, -0.8510742, 0.9038086, 0.6269531, -4.3085938, 0.9580078, 1.3388672, -0.06359863, 2.3671875, 0.6665039, -1.3632812, 1.5644531, 0.011726379, 1.7265625, -0.7060547, -0.25830078, -0.77490234, 3.828125, -2.2890625, -0.890625, 1.5039062, 1.9169922, -0.65771484, 1.6884766, 1.0527344, -1.71875, -0.67626953, -1.8027344, 0.030090332, -3.0585938, -0.48461914, -0.61572266, 2.2734375, 0.26953125, 0.8725586, -3.3203125, -0.2454834, 0.3935547, 0.23937988, 0.12561035, -0.4794922, 3.0351562, 0.7163086, -1.0068359, -0.5385742, 0.9819336, 2.203125, -0.5107422, -3.2558594, 0.93066406, 0.74365234, 1.6416016, -0.63134766, -2.4140625, -0.10675049, 1.0205078, 1.4902344, -1.3564453, 1.9667969, 0.9667969, -1.5410156, 3.7460938, 1.5244141, 0.6513672, -0.85839844, -0.15039062, -0.8129883, -4.2382812, 1.5117188, 1.8964844, -1.078125, 1.2890625, 2.5859375, -0.2166748, -2.1933594, 0.42700195, -1.7900391, -0.28979492, -0.4182129, 0.7163086, 0.7036133, -2.8222656, 3.3144531, -0.56103516, -4.4335938, 0.90234375, 0.058410645, -0.78759766, -0.56640625, 1.1933594, 1.0380859, 1.0283203, -0.29541016, 0.2590332, 0.39233398, 0.31201172, 1.03125, 1.3701172, 0.2902832, -1.8330078, 1.3349609, -2.7617188, -2.0820312, 0.14025879, 0.6777344, -0.8076172, -1.1591797, 0.31445312, -0.8154297, 3.0234375, -1.2558594, 3.6386719, -0.91748047, 0.5048828, 0.43896484, 2.6894531, -0.5385742, -1.0527344, 2.9785156, 4.7265625, -1.0878906, 1.4306641, 1.9453125, 1.6757812, -2.1484375, 0.48999023, -1.3144531, -0.79296875, -1.5166016, -1.2021484, -1.5878906, -1.6787109, -0.8959961, 1.2138672, -1.8925781, -4.1289062, 0.26879883, 0.65283203, -0.73535156, -0.13598633, -1.0859375, 0.7753906, -1.6865234, -0.7080078, -3.0371094, 1.1933594, 2.6816406, -1.1445312, -1.7919922, 1.5498047, 1.1992188, 0.9404297, -0.50146484, -0.24658203, 1.7792969, 1.1201172, -2.0917969, 0.31640625, 0.03829956, 0.17480469, 1.46875, -0.21899414, -0.8925781, -1.0322266, -0.16967773, -0.4716797, -2.2890625, 0.99072266, 2.140625, -0.23803711, -0.8457031, -1.5947266, 0.2121582, -0.13452148, -0.0362854, -1.4726562, 0.9086914, -2.3632812, -0.05899048, 1.2109375, -0.5839844, 0.086120605, 0.25024414, -1.3359375, -0.43310547, 3.1542969, -0.6035156, -2.1386719, -0.67089844, 1.7617188, 0.3618164, -0.56396484, -1.8994141, 1.9765625, 0.13586426, -1.6835938, -1.4931641, -0.064819336, -0.42797852, -0.13354492, -0.95947266, 1.3574219, -0.6323242, 1.4511719, 0.9296875, -0.64404297, -2.2402344, -1.0615234, 0.13879395, 0.086242676, 0.32983398, 1.8310547, -0.5546875, 1.1191406, -1.2568359, 0.89404297, 0.6308594, -1.25, -0.16259766, -2.4628906, -0.7597656, -0.23095703, 0.19104004, 0.7675781, 1.3144531, -1.6640625, 1.8085938, -0.023864746, -2.0371094, -0.16003418, 0.29174805, 1.1269531, 1.3457031, -2.5878906, 1.1650391, -0.3840332, 0.9057617, 1.640625, 3.8046875, -1.2226562, -1.0292969, 0.091674805, -1.3994141, 1.4150391, -0.30859375, 0.07751465, -0.12249756, -0.32861328, -0.5029297, 0.18688965, 0.69433594, 3.4140625, 0.61328125, -3.1035156, -0.36621094, -0.10998535, -0.7607422, 0.96435547, 1.4853516, 0.80029297, -1.3173828, -1.5908203, 1.4003906, 0.08392334, 0.43896484, 3.4980469, 2.4003906, -1.296875, 1.359375, -0.45532227, 1.3349609, 0.5473633, -0.765625, 0.7558594, -2.0351562, 2.4902344, -0.059173584, 0.5463867, -1.359375, -1.6757812, 1.1582031, 4.1640625, 0.15319824, -3.6425781, 2.3769531, -0.39453125, 1.0703125, -0.94921875, 0.9121094, 1.0722656, -0.50390625, 0.05114746, -0.9897461, -3.3964844, -0.31298828, -0.41845703, -0.43603516, 1.3759766, -1.4248047, 2.8945312, 0.7495117, 0.81591797, -0.2541504, -0.20544434, 0.34057617, -1.2910156, -0.38183594, 1.9765625, -3.3417969, 0.54785156, 0.2861328, 1.0585938, 0.79345703, 0.62597656, -1.96875, -0.3737793, -0.828125, -1.4619141, 1.2128906, -0.25561523, -0.36206055, 0.37329102, -0.061798096, 0.3876953, -0.42285156, -0.2277832, 0.25390625, -0.007507324, 0.027709961, 0.31933594, -1.5185547, -1.2382812, -0.09423828, 0.6801758, -0.8666992, 3.09375, -1.4023438, -0.79052734, -0.42895508, -2.1269531, -0.8588867, 1.4433594, 2.7441406, 0.5317383, -2.8476562, 0.6308594, -0.6147461, -1.7373047, 1.0009766, -2.8378906, 0.43847656, 0.7114258, -1.0517578, 2.0566406, -0.28515625, 0.2770996, -1.7216797, 2.5097656, -0.41381836, 1.3916016, -0.81347656, 2.6074219, 2.7148438, 1.4355469, 0.6533203, -2.2402344, -0.14562988, 0.062683105, 2.15625, 0.8730469, 1.9296875, -1.7304688, -1.6689453, 2.9628906, -1.0283203, -2.515625, -0.47973633, -2.2441406, -1.1455078, -1.9033203, -2.65625, -1.6142578, -1.7998047, -0.82470703, -0.1237793, -1.6152344, 1.2900391, -1.265625, -0.0446167, -0.39233398, 1.3359375, -1.7255859, -0.13122559, -3.6015625, -0.12414551, 1.0527344, -1.8427734, -2.8125, -1.9560547, 2.6269531, -1.6679688, 0.7729492, 1.0859375, -0.43847656, 2.1132812, 1.2773438, -2.5097656, 3.765625, 0.16052246, 2.4375, 0.54833984, -1.7529297, -0.73095703, -2.0761719, 1.4257812, 3.5488281, 0.37329102, 0.91552734, 0.95751953, 1.4453125, -1.6689453, 1.5927734, -1.4277344, -0.63671875, 0.4946289, 2.7148438, 0.6538086, 0.8310547, 0.7548828, 1.8408203, -2.2480469, -0.44995117, 0.31689453, -1.1923828, 2.9492188, -0.36987305, -0.20056152, -0.45654297, -0.017242432, -0.3474121, 1.9169922, -0.47631836, -1.4472656, -2.3886719, -1.625, 0.38793945, -1.3203125, 1.6455078, -0.3474121, 1.4902344, 3.3007812, -1.6552734, 1.3310547, -0.73876953, -1.1171875, -1.3789062, 0.7661133, 0.6713867, -1.0742188, -1.2480469, 0.020736694, -1.6542969, 0.86816406, -0.7685547, 0.5073242, 2.0429688, 0.20581055, -1.3964844, -0.5419922, 1.5771484, -0.8598633, -2, 1.9833984, -1.0585938, -0.6357422, 0.07409668, -2.2285156, 2.4511719, -6.0507812, 1.3046875, 0.4038086, -1.8037109, -0.43066406, 0.4975586, -2.4941406, -0.99121094, 1.1054688, -2.1113281, -2.8613281, 3.3183594, 0.13378906, -1.9208984, -0.31591797, -2.8125, -0.8671875, 2.3867188, 0.31420898, -1.7548828, 1.6171875, -1.7207031, 0.29711914, -0.33642578, 0.5942383, 0.68603516, -0.118896484, 1.640625, -1.8710938, 0.9663086, 2.0136719, -0.46411133, -1.9902344, -0.50927734, -0.6333008, -0.77783203, 1.2548828, 4.2734375, -1.0898438, 1.1767578, 0.95703125, -0.016296387, -0.84277344, -1.1953125, -1.984375, -0.29785156, -1.4853516, -0.6142578, 2.8378906, 0.51464844, 0.765625, 1.7890625, 1.8251953, -0.3017578, -2.1660156, 1.2685547, 3.1386719, -2.3164062, 1.3037109, -0.23132324, -0.20458984, -2.1542969, -0.09729004, 0.19348145, 1.6621094, 1.9228516, 2.2148438, -0.12084961, -0.55029297, -0.1105957, -1.3330078, -1.9746094, 1.0195312, 3.8144531, -0.08190918, -0.15881348, -1.4443359, 1.1132812, 1.3789062, 0.21716309, 1.2197266, 3.109375, 0.75927734, 0.13122559, 1.3554688, -1.8222656, 1.8212891, 0.56396484, -0.72998047, 0.10864258, 0.64453125, -0.61621094, -1.0771484, -1.2929688, 0.7519531, 0.47631836, 0.4873047, -0.52783203, 0.7416992, 2.8222656, 0.8745117, -2.2011719, 1.3261719, -1.4130859, -1.3330078, -1.0576172, -0.38500977, 0.072021484, -1.5224609, 1.5527344, -1.2832031, -0.80029297, 0.38256836, 0.7739258, -0.6611328, 0.1977539, 2.140625, 0.35986328, 0.5859375, 0.7866211, -0.63183594, -1.2001953, 1.4609375, 0.51171875, -0.19494629, 0.8486328, -1.2304688, -0.0715332, -0.18334961, -0.26708984, 1.9277344, 1.4091797, -1.6132812, -0.22680664, -1.0009766, 0.9765625, 0.2932129, -0.31274414, 1.7373047, -0.41333008, 3.1230469, -0.63378906, -1, 1.2910156, 0.54833984, -2.9238281, 1.6855469, -0.45166016, 0.22180176, 0.31079102, -0.16564941, 3.0996094, 0.77685547, 3.1191406, 1.4716797, 1.2207031, 1.2070312, 0.6196289, 1.0273438, -1.0693359, -0.018371582, 1.0859375, -0.24365234, -0.54785156, 0.3935547, 1.0400391, 2.5488281, -3.0703125, 0.8051758, 2.6796875, -2.8515625, 1.2880859, -1.4951172, -1.3759766, 2.0839844, -1.0566406, -0.55566406, -0.77783203, 3.4355469, 0.7714844, 2.1445312, -1.78125, -0.92871094, -2.3144531, -1.1025391, -1.6015625, -3.5683594, -0.17114258, 0.37036133, 0.90234375, -0.5551758, -1.3710938, 1.2900391, -0.8623047, 0.14709473, 0.6489258, 0.15466309, -3.5292969, -2.4394531, -1.3505859, -0.054229736, -4.2851562, 1.4882812, -0.76953125, 0.86279297, 0.040740967, 1.8808594, 0.30541992, -1.9765625, -1.1210938, -0.88134766, -0.5102539, -0.48901367, 0.46557617, 2.1796875, -0.66748047, 2, -1.9746094, -2.6757812, -2.0957031, -0.09301758, 1.0068359, -2.8476562, -0.26879883, 0.27978516, -2.5722656, -2.0019531, -2.6796875, 0.5341797, 0.3388672, 0.00073862076, -1.4863281, -0.81933594, 0.13562012, -0.29882812, 0.5415039, 0.14831543, 0.15539551, -0.6040039, -1.0410156, -1.9589844, 0.049987793, 0.890625, 0.75390625, 1.0566406, -1.1386719, -0.7890625, 0.9916992, -2.2773438, 0.54296875, -0.60498047, 1.5332031, 1.0078125, -0.051757812, 1.1240234, 3.015625, -0.3696289, -1.5839844, 0.5395508, -4.515625, -0.18005371, -0.50390625, -1.8183594, -0.43823242, 0.7167969, -0.10119629, -1.2880859, 4.7851562, 1.9394531, -0.09326172, -0.37573242, 0.099487305, 0.04638672, 0.76123047, -0.8178711, 1.2197266, 0.24072266, 1.4599609, -0.076660156, -0.51953125, -0.40014648, 0.5488281, -1.0595703, 0.6870117, -1.6181641, 0.91748047, 0.34692383, 0.0513916, -1.3505859, 1.8720703, 0.03665161, 0.67822266, 0.059661865, -2.265625, 1.1738281, -0.8930664, 4.8671875, 0.16711426, -2.1660156, -1.3193359, -2.8007812, 2.453125, 1.9462891, -1.9726562, -1.8544922, 1.3359375, -2.3007812, -0.8095703, -3.3476562, 1.2451172, -0.3232422, 0.61279297, -2.5351562, -1.1835938, 2.6699219, -2.2167969, -0.019302368, 0.3701172, 0.28393555, 0.06213379, 0.9760742, 3.2519531, -2.5703125, -0.89697266, 0.59228516, 0.44482422, -0.51953125, -1.2148438, 1.9101562, -0.41577148, -0.4272461, 0.08868408, -1.3564453, -1.9609375, -0.07696533, 1.8232422, -1.0107422, -0.0047302246, 2.1015625, -1.0205078, 1.7724609, 2.3554688, -0.86621094, -1.0761719, 0.16833496, -3.0429688, 0.95458984, 2.2050781, -1.9179688, 3.0839844, 0.99853516, 0.36450195, -1.0927734, -1.1650391, -2.6679688, 0.5107422, 2.84375, 2.3007812, 2.1328125, 0.98535156, -0.37329102, 0.79541016, 1.8388672, 3.2265625, -0.48657227, 2.3789062, 1.5976562, 3.2539062, -1.8935547, -1.7822266, -0.20654297, -0.5053711, 2.4121094, 0.5175781, -0.3581543, 1.7324219, -2.4199219, 0.05734253, -1.9443359, -0.18920898, -1.1142578, 1.2646484, -1.1611328, 0.13879395, 2.2753906, 0.6977539, -0.6166992, 0.51171875, 1.1005859, -1.3857422, -2.3066406, 0.40039062, -1.6171875, -0.31445312, -0.96777344, -2.5957031, 0.62402344, 2.1367188, 0.66552734, 1.2607422, -0.6479492, -1.2822266, -0.70703125, 1.34375, 1.9960938, -0.13452148, 0.041809082, 0.82714844, -0.7871094, 1.2490234, 0.06854248, 1.9423828, 0.51123047, -1.8701172, -2.9453125, 2.5058594, -0.009994507, -1.1582031, -0.7607422, -3.5097656, -0.27075195, -2.3613281, 2.0566406, 0.0814209, 1.1962891, -1.3535156, -1.9941406, 2.4199219, 1.0576172, 1.0566406, 2.8769531, 0.41455078, -1.0039062, 0.7314453, 0.64990234, 0.7109375, -0.14367676, 3.3730469, -1.3212891, 0.58740234, -0.47851562, 2.6542969, -0.18688965, -3.0019531, -1.5019531, 3.8066406, -1.7021484, 0.16174316, 1.2529297, -0.6347656, 1.6376953, 0.4868164, 0.2915039, 1.1474609, -1.40625, -2.2050781, 0.44311523, -0.8876953, 0.01525116, 2.0195312, -1.5273438, 4.2109375, -0.37231445, 1.1318359, 3.15625, -0.045928955, 0.19226074, 0.5546875, -2.3261719, -2.0039062, 0.014892578, 0.5996094, -1.4658203, -1.5322266, 2.0273438, 3.2441406, -1.1494141, -0.84228516, -2.9863281, -1.1191406, 0.41577148, -0.34448242, 0.2368164, -0.9760742, 0.56640625, 3.3886719, 0.6020508, -0.33862305, 0.24072266, 0.4790039, 1.3232422, -0.12780762, -3.203125, -0.16870117, 1.2666016, 0.7363281, 2.4667969, 1.0097656, -1.1386719, 0.54052734, -1.9892578, -1.8876953, -0.9716797, -0.9584961, -0.1138916, 0.9560547, 0.41381836, -0.06335449, -0.33374023, 0.5917969, 0.13146973, 0.6323242, 0.53808594, -1.296875, 2.2265625, 0.57714844, -0.12249756, -1.1259766, 0.9082031, 0.56640625, 3.1484375, 0.5307617, 0.51708984, -0.14990234, 0.7055664, -1.7060547, -1.2666016, -0.7817383, 0.828125, 3.3515625, 0.71728516, 1.0664062, 1.3242188, 0.89208984, -0.5839844, -1.3134766, -3.1015625]}, "B07Z4H47Z2": {"id": "B07Z4H47Z2", "original": "Brand: STYDDI\nName: STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More\nDescription: STYDDI let you eat like a king!

The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


Specification:
Material: Rubber PVC + Brass
Length: 4 feet / 48 Inch/122 cm
Gauge reading: 0 \u2013 60 PSI (1- 400kpa)
Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
Fryer Accessory Type: High Pressure Regulator
Outdoor Living Product Type: Fryer Accessory
Inlet Pressure: 25-250PSIG
Outlet Pressure: 0-30PSIG
Certificate: CSA\nFeatures: ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners.\nBUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy.\nA MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8\"-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It\u2019s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nEXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.\n", "embedding": [-1.0693359, 2.3066406, 2.0507812, 0.4633789, -0.45825195, 0.5727539, 1.9111328, -0.28466797, 0.8027344, -0.19396973, 1.3994141, 0.6826172, 1.8291016, -0.1743164, 2.0878906, -0.14038086, 0.57177734, -0.68652344, 0.2368164, 3.3769531, 0.79296875, 0.40185547, 1.9453125, -0.8120117, 1.9492188, -0.6904297, 3.7558594, -2.7734375, -0.32885742, -1.5820312, 1.6308594, 1.3671875, 1.2988281, 0.5629883, -1.9248047, -1.4404297, 0.64697266, -0.89208984, -2.8867188, -0.3059082, -0.96972656, 0.59814453, 1.1220703, -0.07928467, -2.5410156, 0.9736328, 0.8666992, -0.024856567, 0.17016602, 0.93603516, 1.5732422, -1.2158203, -0.36254883, 1.4882812, -0.15344238, -0.4494629, 0.40234375, -2.3339844, 1.8037109, 1.3164062, 1.6953125, 0.7832031, -2.0722656, -0.18981934, -1.0458984, 0.4489746, 0.40576172, -0.17382812, 0.59375, 0.6767578, 1.3505859, 0.23486328, 1.25, -0.5673828, -0.1743164, 0.2685547, -2.2597656, 0.70458984, 5.2421875, 0.21740723, -1.2734375, 0.6850586, 0.3269043, -1.3847656, 1.6953125, 0.050689697, -0.50634766, -0.30810547, 2.5898438, 1.8515625, -2.5722656, 2.0449219, -2.5566406, -5.078125, 1.1025391, 0.94384766, 1.6337891, -0.03265381, 0.90966797, -0.16430664, -1.5009766, -1.0048828, 1.0947266, 2.2539062, -1.0673828, -0.19299316, 0.3647461, 2.8203125, -3.6484375, 0.5517578, 0.25317383, 1.0117188, 1.1220703, -2.2109375, 1.5039062, -2.8300781, -0.40234375, -1.4912109, 3.7851562, 1.8515625, 2.796875, 0.30444336, 0.15209961, 1.0898438, 0.7915039, 1.1367188, -0.7128906, -0.6347656, 4.3398438, -1.3447266, 0.23999023, -2.9042969, 1.4189453, -0.23205566, 0.41259766, -2.3496094, -1.3339844, -1.7216797, -2.921875, -1.3046875, -3.34375, -0.48706055, 0.8364258, 0.64208984, -2.2695312, 0.6635742, -1.4042969, 0.7680664, 2.1503906, -2.5390625, 2.6875, -1.6806641, -0.023529053, -0.23510742, 2.1523438, 0.6484375, 0.12597656, 0.02418518, 1.4375, 2.2050781, 1.0615234, -1.6640625, -1.8554688, 2.0410156, 1.3027344, -2.2851562, 0.83935547, 0.0043640137, 0.26611328, 1.6074219, -0.19812012, -2.2011719, -1.1669922, 0.6323242, -0.5126953, -1.1191406, 0.010139465, 3.0742188, 1.4384766, -0.10290527, -3.0683594, -1.9941406, 0.037200928, -0.5683594, 1.0732422, -0.2388916, -0.64453125, 0.1104126, 1.2744141, -1.7060547, -1.8613281, 0.74121094, 0.10192871, 1.4492188, -0.053466797, -2.0566406, -2.7207031, -1.9882812, -1.4414062, 0.5136719, -0.28881836, -1.8154297, 0.97802734, -0.24389648, -1.8310547, -1.5390625, 1.0009766, -1.2734375, -0.55322266, 3.0253906, 0.72998047, -1.6689453, 0.9560547, -1.1347656, 0.076538086, -2.8300781, 0.6542969, 3.3691406, 0.49389648, 0.24023438, 0.117370605, 0.21081543, -0.43188477, 0.59277344, 0.9711914, 1.1376953, -0.74658203, 1.4560547, -1.0273438, -0.25512695, 2.0527344, 0.8959961, -0.9140625, -0.97753906, -0.91552734, 2.0839844, -0.1104126, 0.48876953, 0.45507812, 1.7128906, 0.47265625, -0.09655762, -0.38354492, 0.17834473, -1.1152344, -0.8769531, -0.7133789, 1.2294922, 1.5615234, -0.29125977, 0.6894531, 1.0390625, -0.10131836, -1.0136719, -0.2788086, -1.1494141, 0.7241211, 0.63720703, -0.28076172, -1.1992188, 3.3066406, 0.6845703, 0.040405273, 1.8925781, -0.41308594, 1.328125, 2.3359375, -1.3916016, -0.6142578, -0.5366211, 0.29345703, 2.1210938, 1.9746094, -0.5839844, 1.3203125, 0.3088379, -2.4804688, 0.83984375, -0.5673828, 0.93652344, 1.1396484, 0.37231445, 1.6464844, -2.3339844, 2.734375, 1.4023438, 1.5722656, 0.53808594, -1.7802734, -0.59033203, 4.6601562, -1.5820312, -3.25, 1.4042969, 0.9042969, -0.25561523, 0.4855957, 2.3808594, 0.85253906, -1.9599609, -0.32495117, -0.48779297, -1.9824219, -1.2705078, 1.3994141, -0.12792969, 0.025787354, 0.23168945, -0.9243164, 0.9423828, -2.15625, -0.35620117, -1.5146484, 1.4179688, -2.203125, -1.34375, 0.94873047, -1.7304688, -0.22375488, 0.68847656, 0.8256836, 0.45825195, 0.15429688, -0.6669922, -0.06549072, 1.5214844, -0.2133789, 1.3525391, 0.46484375, 0.2541504, -1.0966797, -0.4873047, -0.3659668, -2.9628906, -2.8046875, 1.7636719, -2.8691406, -1.9912109, 0.4272461, -2.0488281, -2.2597656, 0.2915039, -0.25805664, 2.0214844, 2.6757812, -1.1542969, -0.9003906, -0.7080078, -0.067993164, 0.09698486, 0.4189453, 2.7109375, -0.3959961, -2.0820312, -1.1777344, 0.3474121, 0.18310547, -1.4296875, -3.2695312, 1.5839844, 0.52978516, -0.051818848, 0.4362793, 0.36938477, 1.0947266, -2.9160156, 1.9199219, -2.9453125, -0.004673004, 0.8496094, 0.89746094, -0.52685547, 1.5595703, -1.3994141, -0.8808594, -0.6899414, -0.7265625, 1.1962891, -1.0292969, 3.1386719, -1.7998047, 1.1035156, 0.8203125, -0.77246094, -2.8046875, -0.22009277, -1.3037109, 0.03591919, 0.038208008, -2.5253906, 1.2646484, -0.09716797, 1.0087891, 0.111206055, -0.66308594, -0.9550781, 0.36791992, 1.0039062, -2.3457031, 0.57373047, 0.049072266, 0.48583984, -2.2617188, 0.8276367, 0.4753418, -2.3105469, -1.9746094, 2.1425781, 1.0341797, -0.8696289, 1.2919922, 1.359375, 0.48413086, 0.48535156, -1.2324219, -2.15625, 1.4169922, 0.7495117, -2.6152344, 2.0410156, -1.6455078, -1.4296875, -0.69677734, -1.9697266, 2.4238281, 1.6992188, 2.7675781, -0.85791016, 0.6489258, -1.3544922, 1.1787109, -0.82421875, -2.8164062, 0.74658203, 3.3027344, -2.5859375, -1.8828125, 0.26391602, -0.29541016, -0.5859375, -0.45166016, 1.4042969, -0.33618164, 1.9394531, 0.6323242, 0.14428711, -0.16491699, 0.5986328, 1.9462891, 1.9277344, -1.5634766, 0.11236572, -2.0253906, 0.6621094, -1.8603516, 0.8696289, 3.0371094, 1.2626953, 2.1875, 0.27978516, 0.6748047, -0.50439453, 0.55126953, 0.31982422, 0.64160156, 0.8676758, 2.0058594, 0.9873047, -0.7441406, -0.64404297, -0.076049805, 1.3701172, -2.1933594, 0.81103516, 0.7685547, 1.2597656, -1.2099609, 0.3154297, -1.1025391, -0.80126953, -2.2871094, 1.0810547, 1.3955078, 0.47924805, 2.640625, -0.74853516, 1.5810547, -1.9628906, 1.0878906, -0.1373291, 1.484375, -0.1706543, -0.37597656, -3.5507812, -0.9301758, -0.6479492, -2.5644531, -1.7216797, 1.9072266, 0.9604492, 0.53027344, 1.3984375, -1.9462891, 2.0117188, 1.4345703, -2.0566406, 0.22888184, 0.86816406, -0.5078125, 0.31103516, -0.76464844, 1.6201172, 0.9169922, -3.265625, -0.27148438, -3.0703125, 1.046875, -0.25512695, 0.7036133, -2.6230469, -0.14709473, 0.16748047, 1.4726562, -0.3527832, 3.5097656, -0.39501953, -0.36645508, 2.1152344, -3.0585938, -1.3310547, -2.8105469, -5.1523438, 0.25805664, -2.6777344, 1.2265625, 2.4589844, 0.31298828, 0.77685547, 2.203125, 1.9033203, -2.5078125, -0.6665039, 0.65234375, 0.5751953, -2.3378906, 0.04849243, 2.328125, 0.41088867, -0.8754883, -1.3896484, -1.1142578, -2.6308594, -0.30200195, -0.009254456, -1.5595703, 0.07897949, -1.9707031, -0.18774414, -1.6572266, -1.4208984, 0.9555664, -1.96875, -0.59472656, -2.3925781, 2.2460938, 0.47705078, 0.54248047, -0.69873047, 3.0546875, 1.9072266, -0.6201172, -0.6220703, 0.65185547, 2.2734375, 0.49414062, -0.8979492, 1.4658203, 1.0136719, 0.6230469, -0.5864258, -0.015075684, -0.5292969, -1.1308594, 1.3408203, 2.0878906, -0.14074707, 0.88134766, 0.6430664, -2.4375, 0.9033203, 0.31420898, -0.89453125, -0.21398926, -1.0087891, -1.7988281, -1.0371094, 0.29125977, -1.0576172, -0.59277344, -0.7163086, -0.14685059, -1.4404297, 2.8613281, 0.6376953, -0.6225586, 0.48608398, -1.3017578, -0.80078125, -0.6616211, -0.14941406, -1.6494141, 0.49731445, -0.38476562, 0.15148926, 2.5253906, 1.8505859, -0.55908203, -1.8847656, 0.9477539, -1.9746094, 0.39941406, -0.012252808, 2.4765625, 1.2548828, -1.0908203, 2.3339844, -0.20788574, 3.1914062, -0.30078125, 0.13464355, 1.2890625, -0.8564453, -2.6875, 1.5566406, 1.2255859, 1.0234375, 1.5302734, -0.16040039, 0.5732422, 1.9101562, 0.8857422, 1.4677734, 0.9135742, -0.25683594, 1.9296875, 0.2836914, 1.9990234, -1.0244141, 1.0126953, 0.032592773, 1.6445312, 1.6738281, 2.7988281, 1.0791016, -1.7119141, 1.3417969, 1.0351562, -0.4111328, -0.50927734, -0.13623047, -2.2167969, 1.7451172, -0.34594727, -1.3115234, -0.87646484, 2.9394531, -1.5117188, 0.8823242, -0.31835938, -1.5742188, 0.3630371, -2.2460938, -0.82373047, -0.012290955, -0.3876953, 2.2949219, -2.0253906, 0.45385742, 0.9003906, 1.2734375, 0.99316406, -0.45043945, 0.68652344, -0.88964844, -1.7617188, 1.3291016, -0.8203125, -0.4555664, -3.3535156, 0.24230957, 2.1582031, 1.640625, -1.28125, 1.1103516, 0.62353516, -1.1298828, -0.79296875, 0.22888184, 1.2958984, 0.82666016, 0.14453125, 1.8603516, -0.5654297, -0.17712402, -0.15368652, -1.2050781, -2.03125, 3.0214844, 2.5898438, -0.09375, -0.30566406, 0.2434082, -2.0097656, -5.15625, -1.5712891, 2.9433594, -1.1025391, -0.59765625, -2.8691406, -0.3918457, 1.2744141, -0.7421875, 0.2944336, -3.5507812, 0.6147461, -0.17797852, 0.1730957, -1.1845703, -0.22302246, 0.9453125, 0.47973633, -0.8544922, -0.77197266, -0.78466797, -1.9140625, -2.4238281, 2.2519531, -2.0898438, 0.21362305, 1.4199219, -1.8759766, -1.7470703, 0.78027344, 0.7885742, -2.078125, 2.1953125, -2.9726562, 1.1865234, -0.18725586, -2.3125, 1.4228516, 0.52978516, -0.6977539, 0.7993164, 2.71875, 1.71875, -0.59228516, -1.0390625, 0.75878906, -0.18908691, -0.40478516, -3.2734375, -0.24060059, 0.234375, 2.2226562, 0.96435547, -1.2568359, -0.85546875, -1.6230469, -3.1230469, 0.119628906, 0.17150879, -0.6069336, -0.22277832, 1.1962891, 2.1972656, -2.2011719, 1.0664062, 0.63183594, -0.94677734, -0.99609375, 1.2822266, -0.9741211, 2.4824219, 0.9526367, -0.6333008, -2.6035156, -1.5693359, 1.3720703, 2.6035156, -1.1025391, 1.0625, 0.6958008, -0.3774414, 0.49194336, -0.38085938, 1.3134766, 2.0488281, 1.3603516, -1.1865234, -1.0341797, 1.4599609, -0.6879883, 1.3779297, 1.4707031, -0.57177734, -1.6230469, 2.0390625, 0.19787598, -2.6445312, 0.35351562, -0.8769531, 0.94921875, -0.5810547, -2.0566406, 1.0605469, -2.2734375, -0.2397461, 0.49023438, -1.5654297, -1.796875, 2.3710938, 0.7260742, -1.1171875, 0.61816406, 2.2597656, 1.3925781, -0.2927246, 1.4052734, 1.1748047, -0.7558594, 0.4255371, -1.8642578, 1.0556641, 1.9414062, -1.4179688, -1.0419922, 1.1201172, 1.84375, -1.5703125, 0.62402344, 0.08203125, 3.1953125, -0.3942871, 1.625, 2.4902344, -0.1685791, 1.4550781, 1.0488281, 2.2148438, 3.578125, 0.36767578, 1.2626953, 1.0898438, -0.28442383, -0.5214844, -0.640625, -0.040863037, -1.1015625, 0.119018555, 0.06335449, 1.5078125, 2.4726562, -2.5039062, -1.3955078, -1.015625, -1.1416016, -3.6210938, 0.43139648, -0.56933594, 0.95214844, 1.140625, 0.16259766, 1.0400391, 1.1943359, -0.4272461, -1.2099609, -1.1298828, 2.09375, -1.9287109, 0.41357422, -0.5961914, -2.078125, 1.4111328, 3.0390625, 0.69873047, -0.67578125, 0.7910156, -0.7783203, -0.5708008, 1.3896484, 1.3496094, -2.2089844, -0.96484375, -0.8041992, 1.9433594, 1.6416016, -1.1699219, 2.6347656, 1.5214844, -2.0332031, -3.9238281, 2.8671875, -0.113220215, 0.4724121, -0.14355469, -5.1445312, 2.0175781, -1.8925781, -0.30517578, -1.9726562, -0.8222656, -0.57910156, -1.1083984, 0.08795166, 0.48046875, -1.671875, 2.7460938, 0.62158203, -2.2050781, 0.35498047, 1.7802734, 1.5449219, 0.2849121, -0.44384766, -0.14758301, 0.11236572, -0.72021484, 3.5175781, -0.24560547, -2.2890625, -0.13964844, 3.0683594, 0.73876953, 0.29125977, -1.2001953, 0.8803711, 0.31982422, 1.6015625, 0.06726074, 0.31469727, -1.7978516, -0.93066406, -0.68408203, -0.5229492, -0.5498047, -1.5400391, -0.6694336, 0.2836914, -0.9296875, 1.2636719, 2.3984375, -0.82128906, 0.4567871, 1.8496094, -0.9160156, -1.4580078, -0.78515625, 1.1054688, -2.828125, -1.3740234, 0.48901367, -0.5058594, 0.30029297, -2.4121094, -0.5878906, 0.56640625, 0.40551758, -0.6098633, -0.640625, -0.7314453, -1.1855469, 0.10058594, -1.7412109, 1.2451172, 1.8242188, -0.7084961, 1.8291016, -0.61328125, -1.4765625, -0.21276855, -1.3144531, -0.5703125, 0.63720703, 0.6459961, -0.62158203, 1.4423828, -0.61621094, -2.4335938, -0.9682617, -2.3554688, 1.7880859, -0.24365234, -1.1318359, 0.3791504, 1.2314453, 3.3925781, 0.5229492, 1.5039062, -0.47973633, -0.17297363, 0.54052734, -1.7460938, -0.107543945, -1.3222656, -0.61621094, 0.24560547, 3.2792969, 0.5888672, -3.0527344, -0.09399414, 2.3457031, 0.04937744, -0.9980469, -0.4375, -0.28637695, 0.45507812, 0.5551758, 1.7666016, 1.5947266, 1.5029297, -1.796875, -0.14660645, -1.2773438]}, "B07DTNNJR9": {"id": "B07DTNNJR9", "original": "Brand: Good Life, Inc\nName: Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications\nDescription: Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It's the only product in it's class to offer such a guarantee!
\nFeatures: MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps.\nBUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements.\nCUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres.\nEASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts.\nGUARANTEED We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It's the only product in its class to offer such a guarantee!\n", "embedding": [-0.70654297, 1.0849609, 1.7285156, 2.0175781, -1.1669922, 2.2929688, 1.8369141, -0.52490234, 0.90966797, -0.8310547, -2.8652344, -0.7705078, -2.234375, -1.1503906, -0.014175415, 2.1269531, -1.0449219, 1.5478516, -0.66796875, 0.5048828, 3.6992188, 0.34765625, 0.8847656, 0.57714844, 1.3408203, -1.1494141, 3.4082031, -1.7431641, -0.16625977, -1.09375, 1.2275391, -0.62646484, -0.38671875, 0.26367188, -0.56347656, 0.6616211, -1.9560547, 0.046325684, -0.07470703, -1.2275391, 0.9370117, 0.69433594, 1.2988281, 0.113464355, 0.1184082, 0.64501953, -0.5703125, -0.7705078, 0.25854492, 1.5556641, 0.51708984, 0.27954102, 0.27148438, -0.13696289, 0.04864502, 2.8085938, -0.10974121, -0.5366211, 2.3222656, 1.8466797, 0.18261719, 0.9711914, -6.330013e-05, 0.8725586, -0.31591797, 1.2021484, -0.29614258, 0.062072754, -1.4277344, 0.09729004, -0.32836914, 0.9404297, 0.12841797, 0.033081055, -2.0644531, -1.2685547, -3.5234375, 0.5732422, -0.009155273, -1.1845703, -0.0029296875, 1.3994141, 0.359375, -0.090270996, -1.15625, -0.61816406, -1.5488281, 0.52783203, 2.4160156, -1.7900391, -0.94677734, -0.45751953, -2.5292969, -6.0546875, 0.3425293, -0.8066406, 0.56152344, -0.9526367, -0.3474121, 0.89404297, 1.1738281, -0.96972656, -0.6254883, 2.2851562, -3.0800781, 1.4677734, 1.2832031, 2.7441406, -2.7226562, -1.1972656, -0.24609375, 0.421875, -2.3398438, -1.6357422, -1.6787109, -0.84765625, 0.39746094, 0.27612305, 2.2890625, 2.2910156, 2.4023438, -1.4550781, -0.7480469, 1.1035156, 1.0898438, 0.83691406, 0.5390625, 0.059692383, 1.4726562, -2.7890625, 0.22595215, 0.64501953, 0.029907227, -0.85253906, -0.24707031, -1.0097656, -0.21252441, -2.1015625, -1.5605469, -0.96191406, -2.9121094, -1.2441406, -0.04510498, -0.78515625, -0.95166016, -0.8310547, -2.7539062, 1.2412109, 0.3857422, -4.0585938, 0.2866211, -0.35083008, -0.3383789, -2.0136719, 1.5888672, 1.1601562, -1.6425781, -3.7949219, 1.03125, 0.10430908, 0.88671875, -1.5253906, -1.3330078, -1.9980469, -0.49804688, -1.5839844, 0.07287598, 1.0957031, 1.6542969, 0.5776367, 1.1738281, 2.4316406, -0.1496582, -1.28125, -0.22961426, -1.5039062, 0.7138672, 0.6254883, 0.11364746, -2.9902344, -4.3554688, -1.3613281, 0.32104492, 1.1513672, 0.39697266, -1.5146484, 0.72509766, -0.98779297, -0.11004639, 0.35595703, -0.111816406, -0.23547363, 0.9785156, 2.046875, -1.1992188, -2.4804688, -1.9960938, 0.71777344, -0.68359375, 1.9951172, -0.6347656, 0.33911133, -0.4248047, 1.7568359, -2.8085938, -0.5263672, -0.9013672, 0.24951172, 1.8017578, 2.9980469, 0.6542969, -1.7373047, 2.546875, 0.33398438, 1.7099609, -1.9306641, 0.30664062, -0.73291016, 1.9697266, -0.045715332, -0.05444336, -0.0927124, 0.06390381, 0.53466797, -0.05581665, -0.31811523, -0.23864746, 0.1739502, -2.46875, -1.6425781, 0.9277344, -1.1679688, -0.25439453, 0.24267578, -0.9291992, 3.0742188, -2.6269531, 0.4621582, 0.30786133, 2.1621094, -1.6425781, 2.2792969, -2.0585938, 2.5878906, -0.4584961, 0.5878906, -0.22827148, 0.39941406, 1.7460938, 0.7636719, -0.17224121, -0.39868164, 0.875, -0.0062789917, -2.2949219, 0.43481445, 0.9560547, -1.3896484, -1.859375, 0.2932129, -0.8774414, 1.4560547, 0.54785156, 0.32348633, 1.4082031, 1.1728516, -2.4101562, -0.32983398, 1.046875, -1.6972656, 0.7314453, -1.4482422, 0.31274414, 4.0820312, 0.96435547, 0.18017578, 0.29003906, -0.5576172, -0.88134766, 0.64404297, -0.6669922, 0.15466309, -0.026031494, -1.0537109, -0.4284668, 1.3574219, -0.4189453, -1.4199219, -1.4609375, 1.5361328, 1.9560547, -1.1308594, -3.1777344, 1.3818359, 2.0683594, -0.79589844, 0.83447266, 0.094177246, 0.671875, 2.7363281, 1.9814453, -0.37280273, 2.203125, 1.7890625, 0.7182617, 0.3947754, 0.5991211, 0.2199707, -1.0263672, -0.8808594, 0.9711914, -0.4099121, -0.82470703, 1.0761719, -0.71435547, -0.70214844, -0.37841797, -2.5117188, -1.3984375, 0.8222656, 1.6787109, 3.125, 0.83935547, 0.05508423, -2.7011719, 0.83203125, 1.4208984, 0.26660156, -0.3774414, -0.10272217, 0.36791992, -0.0013980865, -1.8837891, -2.6816406, -1.8408203, 1.3691406, -1.1982422, -1.2900391, -0.04425049, -2.6445312, -1.5566406, -0.10760498, 0.013908386, 0.97802734, 0.8989258, 0.1060791, -0.859375, 1.3291016, 0.5517578, 0.07409668, 1.2734375, -0.21704102, -1.0400391, -2.390625, -1.5068359, 0.24938965, 0.02609253, 0.7080078, -0.92285156, -0.17797852, -0.64697266, -0.8051758, 2.609375, -2.4667969, -0.01828003, 0.7944336, 0.37329102, -2.2851562, 1.9082031, -0.5493164, -1.2509766, 1.8369141, 0.48510742, -1.4980469, -0.33642578, 1.7753906, -0.23486328, 1.1298828, 0.36914062, 3.1484375, 0.29736328, -0.8588867, -0.49145508, -4.21875, -4.0898438, -0.6567383, 1.2070312, -1.2246094, -0.18078613, -2.3144531, -1.2412109, -0.36791992, -1.2705078, -0.41015625, 0.2277832, 0.05630493, 2.9160156, 0.08203125, 0.5678711, 1.9775391, 1.3496094, -0.30419922, -2.2519531, -1.5039062, 2.1542969, -0.7788086, 0.24279785, -1.7460938, 0.80908203, -1.4628906, -0.101379395, 1.4599609, 1.6494141, 1.9150391, 1.6953125, -2.5996094, 2.5722656, 0.6748047, -0.7192383, 1.4150391, -0.03753662, -0.25146484, -0.26391602, 1.2607422, 1.3251953, 1.6513672, 2.203125, -0.7783203, -0.9316406, 2.0566406, 3.2734375, -0.52783203, 0.80078125, 0.91796875, 1.4355469, -1.3183594, -0.8647461, -0.25512695, 1.6396484, -3.5078125, -2.109375, 1.4042969, 0.76464844, 1.3291016, 2.8476562, -0.26538086, 1.4951172, -1.7578125, -0.40771484, -0.7651367, 0.0072402954, -0.41088867, -0.19140625, -0.123168945, -0.82177734, 1.4287109, -1.2802734, 1.1738281, 1.7597656, 2.28125, -0.33251953, -2.3496094, 2.2246094, 0.3137207, 0.86572266, -0.6616211, -0.07312012, 0.95214844, 0.008880615, 1.7412109, -0.43823242, 0.7001953, -1.1025391, -1.9433594, -0.1595459, 1.6523438, -0.17895508, -1.1982422, 0.76123047, 0.6582031, -2.2539062, 1.5898438, 1.9609375, -0.45214844, -0.13842773, -0.90966797, -0.9707031, -2.2636719, 2.4101562, -2.0742188, -1.2050781, -1.9306641, 0.27416992, -0.24719238, -0.90722656, 0.62841797, -1.1650391, 1.2412109, 3.0664062, 0.7373047, -0.24450684, 0.3955078, -0.53027344, 1.328125, 1.6855469, -0.6455078, -2.2988281, -0.46801758, 0.29736328, -1.3789062, 0.028625488, 1.2470703, 0.37524414, -2.1738281, 1.8984375, 0.97753906, 1.8447266, 0.31518555, -2.4667969, 0.10290527, 0.021881104, -0.14746094, -0.5126953, 1.7578125, 2.5820312, 0.6191406, 1.4882812, 1.9482422, -2.4589844, 0.0017356873, -0.78466797, -2.4628906, 0.7192383, -1.6181641, 0.8955078, 2.8984375, 0.02583313, 1.5048828, 0.33129883, -1.1630859, -1.3466797, -1.8505859, 1, 1.0742188, -2.9355469, -0.6142578, -2.3671875, -0.34350586, -1.4150391, 0.15661621, -0.15795898, -1.6904297, -0.61328125, 0.9013672, -0.19458008, 1.5839844, -1.4550781, 1.5546875, -0.29003906, 0.3317871, 0.6694336, -0.5727539, -0.034301758, -2.59375, 0.9370117, -0.7680664, -0.6743164, 2.2519531, 0.25878906, 0.35498047, 0.47924805, -1.0625, -1.0234375, 0.33544922, 0.6816406, -1.2089844, -1.1474609, -0.5288086, 0.37597656, -1.6337891, -1.1972656, -1.9365234, -0.63183594, -0.37231445, -0.05996704, 2.0390625, 0.328125, 1.6328125, -2.3105469, 0.30541992, -0.40966797, 1.1826172, -0.72021484, -3.2324219, -0.1652832, -1.2275391, 2.2636719, -2.2246094, -2.1015625, 1.0761719, 0.25219727, -0.29956055, 2.9121094, 1.0019531, 2.2109375, 1.6396484, -1.8886719, -0.5283203, 2.3671875, 1.6621094, 0.6401367, 0.97558594, 1.7021484, -0.55810547, -1.6757812, -0.8803711, -2.7773438, -1.6025391, 1.5332031, -0.44091797, 0.328125, 0.90966797, 0.21569824, -2.9960938, 0.7895508, 0.8720703, 0.22131348, 2.0136719, -2.7050781, -1.1914062, 2.7363281, 0.7495117, -1.4423828, 1.2246094, 0.5732422, 0.9291992, 1.6708984, -0.55078125, 1.6660156, 1.4316406, 3.5488281, 1.0712891, -2.1484375, -0.86621094, 1.5507812, 0.09008789, -1.3583984, -1.4511719, -0.88134766, 2.390625, 1.8730469, 1.7724609, 2.1933594, 1.3212891, -0.8232422, 1.390625, 1.3916016, -1.3105469, 1.3427734, -0.5410156, 0.39160156, 1.9189453, 0.5991211, -0.68066406, -1.5791016, 1.2636719, -1.3632812, 2.7871094, 0.97753906, 1.4257812, 1.4287109, 0.9082031, -1.2138672, 0.30908203, -0.21582031, 0.93115234, 0.86816406, -1.875, 0.1854248, -0.40625, -0.0006504059, -0.39892578, 0.96484375, 0.3076172, -0.34521484, 0.83154297, -0.58203125, -0.93847656, -0.70166016, 0.47998047, 0.48608398, 2.0429688, 1.7617188, 1.4511719, 0.8261719, -1.2382812, -1.2675781, -1.2333984, 0.4272461, -1.0341797, -0.29760742, 2.0546875, 0.68603516, 1.6337891, -1.3837891, -1.3603516, -0.45043945, 0.99560547, 2.0449219, 2.1523438, -1.1777344, -1.6523438, -1.7714844, -2.1679688, -1.3974609, -0.38305664, 0.7788086, -0.40649414, -1.2490234, -0.14672852, -1.6005859, 0.50439453, -0.30126953, -1.4580078, 1.0878906, 0.2919922, -0.22839355, -4.15625, 1.0712891, 0.27783203, 0.96972656, -1.7939453, -1.15625, 0.94677734, -0.79785156, -2.2480469, -0.5727539, -0.21472168, -1.3164062, 2.2578125, 0.3605957, -1.3232422, 2.5644531, 1.4833984, -0.9760742, 1.7109375, -0.06652832, 0.071899414, 1.5546875, -1.4814453, 2.8496094, 0.6435547, -1.2070312, 0.6118164, 1.3798828, 0.75146484, -2.6445312, 0.12438965, 0.78808594, 0.3947754, 0.3034668, -2.0214844, 0.17346191, 0.0017318726, 1.3623047, 0.88183594, -0.58154297, 1.9316406, -0.070495605, -0.49145508, 0.48095703, -0.4350586, 2.4863281, 1.734375, 1.2324219, 0.09655762, 0.78222656, 2.3222656, 0.63671875, -1.2646484, 0.60058594, 0.90478516, -0.8129883, 1.4169922, 2.6367188, 0.5810547, 0.2553711, -1.7978516, 2.3027344, 4.625, -1.3388672, 0.6464844, 0.5209961, -2.1269531, 0.21911621, -1.8613281, -1.2451172, -0.04788208, 2.46875, -0.52734375, 0.057769775, 1.0136719, 0.6875, 2.2128906, 1.6298828, 0.1427002, 0.22802734, -0.16674805, -0.7753906, 1.3222656, 0.070007324, -1.2109375, -0.09326172, -0.070129395, -1.9267578, -0.16625977, -1.2509766, -0.46069336, -0.35668945, -0.6689453, -3.2695312, 2.03125, -0.50927734, -1.375, -0.33813477, 3.4375, -1.6591797, 0.6010742, 1.5585938, 0.82470703, -1.7607422, 0.1772461, -2.8613281, 0.8671875, -0.27685547, -1.3134766, -0.03173828, 0.7729492, 2.4589844, -2.3085938, 0.7011719, 2.4609375, 1.0976562, 1.046875, 2.7148438, 1.8125, 0.15307617, 2.1113281, 2.5039062, 1.2558594, 1.7675781, -1.4306641, 1.2509766, 0.85839844, 0.89697266, 2.4648438, 0.41259766, 0.2836914, -0.4428711, -0.44091797, 1.2460938, -0.8930664, 0.008178711, -3.9824219, 2.2285156, 0.25976562, 2.8964844, -0.8491211, 1.7441406, -0.62646484, -0.64453125, 0.4958496, -1.0810547, -0.36450195, -0.4650879, 1.5800781, 0.90722656, -2.296875, -0.8173828, -2.6445312, 0.8491211, 0.072387695, -2.4121094, -0.16247559, 1.8837891, 0.52001953, 0.78027344, 1.7197266, 1.1503906, -0.44555664, -1.3798828, 1.2851562, -1.3056641, -1.2900391, -0.2758789, 3.7773438, 1.6767578, -0.03942871, 0.22497559, 0.07470703, -0.6484375, -1.8027344, 2.7421875, -1.2988281, -0.5234375, 1.4521484, -2.4238281, 0.2524414, -0.8232422, 2.5664062, -3.609375, -0.014053345, -0.4663086, 0.9663086, -0.0947876, 2.6367188, 0.8964844, 1.5605469, 0.30297852, -0.94433594, 0.65771484, 0.94677734, 1.2167969, -2.2207031, 0.39770508, 1.6376953, 0.4831543, -1.8320312, 0.008163452, -0.28955078, -1.9033203, -0.92089844, 0.24267578, -1.8759766, 0.016021729, 1.9404297, -0.41748047, -0.92578125, -0.6635742, -2.9648438, -1.5927734, -0.31640625, -0.95947266, -0.68408203, -0.95214844, -0.07745361, -0.07659912, -2.3515625, 1.7802734, -2.8378906, -2.0214844, 1.7255859, 1.5263672, 1.1425781, 1.8886719, 0.5229492, -2.1015625, -3.1289062, -2.1914062, -3.4277344, -1.4277344, 1.3964844, 1.3886719, -1.9931641, -1.8691406, -1.5458984, 1.8955078, 0.17028809, 0.140625, 0.66064453, -2.3710938, 0.7158203, 1.15625, -2.5273438, 2.1210938, 2.4902344, 0.61083984, 0.6611328, -0.578125, -2.3144531, -0.111083984, -3.3496094, -1.1894531, 2.3769531, 2.4101562, 0.21228027, 2.1113281, -2.6425781, -1.6103516, -0.5473633, -2.4453125, -0.60498047, -0.50439453, -0.12298584, -0.07324219, 1.4248047, 2.5410156, -0.7636719, -0.46166992, -0.76123047, 2.2109375, 1.8291016, 0.6166992, -1.6376953, 3.109375, -1.015625, 1.5820312, 1.7460938, 3.2988281, 0.29882812, 0.6254883, 1.4208984, -0.21459961, 0.3486328, 1.5507812, -3.4511719, -0.5629883, 0.39892578, 0.5029297, 0.8901367, 0.5810547, -1.1435547, -0.8515625, -1.9941406]}, "B00IZCNOS0": {"id": "B00IZCNOS0", "original": "Brand: Flame King\nName: Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers\nDescription: \nFeatures: Allows removal of empty cylinder for refill without interrupting propane supply\nFor RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty\nPairs well with our 48 Inch Thermo Plastic Hose, item 100383-48.\nDouble stage design maintains constant gas pressure under changing demand and conditions\nInlets are 1/4\" SAE inverted flare and outlet is 3/8\" NPT female pipe thread. Regulator is factory set at 11wc (water column)\n", "embedding": [-0.8413086, 0.4633789, -0.10357666, 1.1337891, -1.6113281, -1.3486328, 1.1044922, -1.1308594, 0.50683594, -2.1582031, 1.4628906, -1.2998047, 1.1005859, -0.7915039, 2.5742188, 1.4453125, 0.7080078, 0.55371094, 1.8173828, 0.32177734, -0.007286072, 0.7807617, 1.8037109, -1.8115234, 1.6181641, -0.96533203, 3.4785156, -2.4082031, -1.2783203, -1.6113281, 1.6806641, 0.34545898, -0.6557617, 2.5507812, -0.7207031, 0.3256836, -0.8984375, -1.5703125, -5.265625, -0.054626465, -0.8173828, -0.14477539, -0.39990234, -0.46191406, -1.5039062, -0.99853516, 0.67529297, -1.1630859, -0.21166992, 1.0585938, 1.4150391, 1.4482422, -0.7998047, 0.90478516, 1.1113281, 0.7207031, -1.1660156, 0.008354187, 0.2705078, 2.2265625, 2.2714844, 0.19824219, -3.859375, 1.3037109, -1.8994141, 2.2109375, 0.79003906, 0.3071289, 1.2773438, 1.3183594, 1.1347656, -0.8339844, 1.59375, -2.1777344, -1.6337891, 1.5449219, -2.5195312, 0.0021152496, 2, -0.26635742, -0.29736328, 1.125, 0.9189453, -2.0214844, 1.0029297, -0.87109375, 0.113098145, 0.31591797, 1.4501953, 0.7285156, -1.7363281, 0.29663086, -1.2060547, -3.4960938, 1.3369141, 1.5019531, 1.2929688, 1.6855469, 3.0605469, 0.9223633, 0.65722656, 0.63671875, -0.10986328, 1.1279297, -0.63134766, 0.34765625, 1.1708984, 1.1259766, -3.6074219, 0.54589844, -0.38330078, -0.8540039, 1.2431641, -0.8457031, -1.2900391, -0.2927246, -1.1435547, 1.5595703, 2.0722656, -1.1484375, 2.4296875, -1.0185547, 0.8300781, -1.0449219, 1.2919922, 0.7451172, -1.1601562, 0.7363281, 4.9296875, -0.17749023, 1.5917969, 0.33032227, 3.5839844, -0.20544434, 1.0625, -2.0664062, -0.5834961, -2.4453125, -2.4726562, -1.0654297, -2.3203125, -1.9228516, 1.796875, 0.2244873, -3.4375, 0.048706055, -2.8828125, 0.73535156, 0.59814453, -1.9970703, 3.0332031, -1.6113281, 1.2470703, -2.15625, 1.8808594, 0.875, -0.7011719, -3.7265625, 0.45996094, 0.45825195, 0.9482422, 0.09136963, -2.1015625, 2.5585938, -2.6328125, -1.1064453, 0.76708984, 0.6298828, -0.5805664, 1.0712891, -0.3972168, -1.2880859, -0.36083984, 0.5595703, -0.7265625, -0.84521484, -0.90722656, 1.2910156, 2.625, 1.4394531, -2.9277344, -1.2373047, -1.0634766, -2.4960938, 3.359375, 0.27246094, -1.0361328, -1.1630859, 1.4101562, -1.0136719, -2.8867188, 2.3476562, -1.6191406, -0.026290894, -0.8413086, -2.203125, -3.8398438, -0.91259766, 1.8046875, 1.0048828, -0.49731445, -0.7675781, 0.61572266, 0.025802612, -3.4882812, -1.5693359, 0.9199219, -0.4555664, 0.3947754, 2.0722656, -0.70654297, 0.22680664, 0.9111328, -2.5234375, -0.2220459, -2.4960938, 0.9819336, 1.4921875, 0.60302734, 1.2773438, 1.6796875, 1.0732422, 3.515625, -0.55566406, 1.9560547, 0.58984375, 0.9794922, -0.1529541, -2.3261719, -1.5488281, 0.6723633, 1.6191406, -0.96875, 0.33496094, -0.65722656, 2.5605469, 0.123046875, -1.21875, 0.92529297, 1.578125, 0.16174316, -0.890625, -0.07720947, -0.60253906, -1.0136719, 1.2041016, -0.5546875, 1.9384766, 2.1835938, -0.33007812, 0.93408203, 0.4555664, -2.6738281, -0.5776367, -0.43408203, -0.5625, 1.7910156, 0.6323242, 1.0068359, -2.0449219, 2.921875, -0.26098633, -0.9301758, 1.8564453, -0.96875, -0.60791016, 2.9355469, -0.6879883, -0.8222656, 0.62109375, -2.4570312, 1.1308594, 2.2949219, -0.09869385, 1.3652344, 0.9946289, 0.10827637, 2.3515625, -0.82177734, 1.8691406, 0.48779297, -0.69433594, 0.90185547, -2.8515625, 0.9423828, 1.9335938, -0.06793213, 1.2685547, -1.3847656, -0.060333252, 2.9726562, -1.6210938, -2.1289062, 1.2460938, 2.3671875, 0.36547852, 2.7226562, -0.26733398, -0.11004639, -1.0234375, 0.21105957, 0.51953125, -0.7402344, -0.04788208, 0.65722656, -0.8696289, 1.2226562, 1.3876953, -0.6826172, -0.42456055, -0.8413086, -0.2866211, -3.3613281, 0.56152344, 0.6298828, -1.5576172, 3.0273438, -2.7285156, 0.37841797, 1.3222656, -1.1826172, 0.9057617, 0.49560547, -1.8427734, -0.31347656, 0.7680664, -0.77734375, -0.029205322, 0.96777344, 0.41357422, -0.77246094, -1.5429688, 0.69433594, -1.6269531, -1.4003906, 1.5546875, -0.53808594, -2.4375, 1.3398438, -0.9370117, -0.5683594, -0.79833984, 0.2512207, 2.3398438, 1.9384766, -0.58154297, -0.67285156, -0.26000977, 0.037200928, -0.546875, 0.76123047, 2.6835938, -0.4465332, -1.6435547, -0.89208984, -0.56933594, 0.7451172, 1.0019531, -0.58984375, -0.16210938, -0.34692383, -0.9370117, -0.3684082, -1.0859375, -1.1728516, -2.5761719, 3.5, -2.4648438, 0.890625, 0.67626953, 1.2138672, -1.3486328, 0.66552734, -1.3730469, -1.3476562, -0.67822266, -1.2197266, 1.5458984, 0.6274414, 0.77783203, -0.78515625, 0.75, 0.89941406, -0.6098633, -2.6152344, 0.68896484, 1.5380859, -1.6992188, -1.3369141, -2.7402344, -0.8208008, 0.5859375, -0.6640625, -2.1816406, -0.78222656, -1.4726562, 0.6479492, 0.26708984, 0.94677734, 0.34472656, 1.6289062, -2.2988281, -2.234375, -0.44067383, -0.48120117, -2.8632812, -0.30273438, -0.5595703, -0.23132324, -0.6401367, -0.07952881, 0.13366699, -1.0136719, 1.7314453, 0.5229492, -2.0527344, 0.018417358, 0.90234375, -0.00970459, 3.2539062, -1.6103516, 1.0400391, -1.7724609, -1.9277344, 3.6855469, 0.765625, 1.7402344, -0.5253906, 1.3007812, -0.48510742, 0.05895996, -0.7841797, 0.4572754, -1.0185547, 3.7988281, -2.1660156, -1.7324219, 1.2412109, 0.10394287, -2.234375, 0.4489746, 0.5415039, -1.0332031, 3.3984375, 0.6118164, 1.0595703, -1.4511719, 1.25, 0.83496094, 0.48706055, 2.3554688, 1.5390625, -0.28979492, -0.08898926, -1.0019531, 0.8598633, 2.1796875, 0.7631836, -0.1270752, 1.1240234, 2.7578125, -0.9243164, 0.38183594, -0.67041016, 2.9667969, 0.5136719, 1.4960938, -0.671875, 0.1875, -0.484375, 0.15917969, 1.2070312, -1.9609375, -0.055389404, 0.79541016, 3.2519531, -0.63427734, 0.16711426, -0.22875977, -1.5390625, -0.16625977, 1.6748047, 0.21350098, 1.8789062, -0.9003906, -0.76904297, 1.4677734, -3.4648438, 2.4667969, -0.90966797, 1.9277344, -0.57958984, -0.27441406, -0.4189453, -1.59375, -0.037872314, -0.9589844, -0.6743164, 1.1035156, 2.0214844, -2.2363281, 0.61035156, -1.8681641, 0.4104004, 1.6855469, -0.83984375, 1.4189453, 1.2236328, 1.0585938, -0.37597656, -0.98046875, 2.7304688, -0.7866211, -1.3515625, 0.17102051, -3.6289062, 0.4736328, -0.44091797, 1.0244141, -0.65966797, 1.5878906, -1.3652344, 2.0371094, -0.5595703, 3.7480469, -1.7236328, 2.1816406, 1.8974609, -3.0371094, -1.2080078, -2.1386719, -5.1679688, 1.7861328, -2.65625, -0.2770996, 0.71191406, -0.022262573, 0.95214844, 1.3242188, 0.013313293, -0.2939453, -0.12927246, -0.2232666, 1.5244141, -3.1953125, -0.20812988, 0.40576172, 0.20837402, -0.578125, -2.3457031, -1.4648438, -1.1816406, -1.3242188, 1.1025391, -2.1445312, -0.5288086, 1.1660156, 0.21813965, 0.89160156, -1.5302734, 1.5478516, -0.76708984, -0.83496094, -3.0058594, 3.3925781, 1.1630859, 0.77441406, -0.41357422, 2.4492188, 1.7636719, -0.99072266, -2.515625, -0.08770752, 2.3417969, 0.19836426, -2.0800781, -2.9921875, -0.4375, -0.56152344, -1.9462891, 0.71972656, -0.9604492, -0.073791504, 2.3261719, 0.3894043, 2.3945312, 1.4882812, -0.90625, -0.7788086, 2.2382812, -0.25463867, -0.59033203, 2.5449219, -2.1699219, 0.33618164, -2.6464844, 2.3984375, -2.1992188, -2.1035156, -1.7705078, -1.046875, -3.5097656, 1.2275391, -0.70751953, 0.60253906, -0.93066406, -0.39868164, 0.5830078, 0.5834961, 0.17785645, -1.0791016, 0.33691406, -0.35107422, 0.3046875, 1.5986328, 0.96875, 0.34472656, -0.20361328, 1.9541016, -1.0341797, -1.7294922, 0.24328613, -0.32958984, -0.44384766, -1.2861328, 2.1679688, 0.93310547, 2.3925781, -1.8300781, 0.78222656, 1.8349609, -0.8300781, -1.4599609, 1.6904297, 0.74316406, 1.5371094, 0.9199219, 0.15649414, 1.3505859, 1.5107422, 2.2714844, -0.75097656, 0.85302734, -2.6035156, -1.8730469, -0.9135742, 0.3322754, -1.5371094, 0.6489258, 0.9277344, 1.1513672, 1.2080078, 1.3486328, 2.125, -0.7832031, 1.4775391, -0.60595703, -1.4433594, -3.5722656, 0.2956543, -1.1767578, 1.5976562, -0.59716797, -1.8125, -1.1621094, 3.2871094, -0.08428955, 0.6665039, 2.5878906, 0.74316406, -1.4375, -3.1484375, -1.3857422, -1.4169922, 0.6479492, 1.9375, -1.6552734, 1.4101562, 0.5625, 0.29492188, -0.6123047, -0.4440918, 0.7836914, 0.20715332, 0.453125, -1.4951172, 0.5654297, 1.1640625, -3.1816406, -0.6582031, 0.12438965, -0.06512451, 0.6118164, -1.21875, 0.31201172, -0.49560547, -0.6621094, -1.3876953, 1.0488281, 1.2939453, -1.3125, 3.96875, -0.5214844, 1.8896484, -0.80029297, 0.70654297, -1.3984375, 2.078125, 1.8603516, 0.07458496, -1.5488281, 0.049194336, -2.4589844, -4.3984375, -1.5605469, 0.9121094, 0.7714844, -0.025802612, -2.140625, -1.0078125, 2.0507812, -1.3476562, -0.37158203, -3.7226562, 1.0908203, -0.93310547, -0.2944336, -0.50683594, 0.87109375, 0.18066406, 1.4013672, 0.057647705, -2.4804688, -0.98583984, -2.1191406, -1.0058594, 2.8046875, 0.30615234, 0.54785156, 0.15209961, -2.8398438, -0.6113281, 1.3203125, 0.34643555, -2.0449219, 0.50146484, -2.078125, -0.65185547, 1.4697266, -2.6816406, -0.38012695, 1.8125, -0.5854492, 1.2861328, 2.4082031, 1.0898438, -0.1673584, -1.4140625, -0.43481445, 0.7338867, -0.7158203, 0.039215088, 1.1113281, 1.6835938, -0.45239258, 1.2480469, -1.0244141, -2.0976562, -1.3183594, -0.68408203, 1.0732422, -1.7753906, -0.1986084, -0.25048828, 2.4863281, 0.26708984, -1.9863281, -0.50390625, 0.67529297, -0.85546875, 0.02746582, 1.7636719, -3.6074219, 2.7460938, 0.91845703, -1.6523438, -1.4121094, 0.33618164, 0.42382812, 2.0449219, -1.3525391, -0.28857422, 1.6630859, -0.20544434, 2.6738281, -0.66552734, 1.8017578, 1.6630859, 1.2392578, -0.49804688, 0.32055664, 1.1123047, 0.29882812, 0.5463867, 1.1416016, -2.7363281, 0.3293457, 1.1064453, 3.0683594, -3.125, -0.50927734, -0.09088135, 0.68408203, -0.90185547, -0.82958984, 0.18920898, -2.6347656, -1.3779297, 1.2255859, -0.2932129, -4.6132812, 2.2851562, 0.84521484, -1.5380859, 0.58984375, 0.5883789, 0.06201172, -2.0722656, 2.0546875, 1.1708984, -0.2421875, 0.50097656, 0.25268555, 0.7631836, 0.7709961, -2.671875, 0.6386719, 1.0498047, 1.4316406, 0.30517578, 0.93847656, -2.3144531, 2.2382812, 2.5859375, 0.63623047, 2.4570312, -0.014152527, 2.3300781, 0.29492188, 2.4140625, 2.1738281, 0.90966797, 0.22839355, -0.40649414, 2.3164062, 0.14221191, -1.1474609, -0.055664062, -1.4658203, 1.1425781, 0.31054688, 0.7363281, 0.27294922, -1.2998047, 1.1005859, -1.4111328, 0.074279785, -1.0429688, -0.070739746, -1.0947266, 0.33666992, 0.9301758, -0.60546875, 0.52246094, 0.7236328, -0.05444336, -0.4753418, 1.0771484, 1.7314453, 0.95654297, -0.4736328, 0.15075684, -1.3310547, 2.4824219, 1.7041016, -0.25146484, -0.23266602, 1.2402344, 1.0488281, -0.27001953, -0.3256836, 0.8828125, -2.4804688, 1.484375, -0.10217285, 2.2949219, 2.0820312, -1.3466797, 3.7578125, 1.9257812, -2.1425781, -5.5, 1.9775391, -1.1240234, -0.76220703, -1.1523438, -2.34375, 2.4003906, -1.6591797, -1.4775391, -3.390625, 0.70703125, -0.27563477, -0.09991455, 2.3066406, 0.86816406, -1.9482422, 2.640625, 2.1953125, 0.5883789, 0.5654297, -0.49609375, 1.8505859, 0.74121094, 2.828125, 0.23168945, 0.85058594, -2.1328125, 2.1582031, 0.8984375, -0.8876953, -0.30541992, 2.4121094, -0.32202148, 0.6972656, -0.9506836, -0.009223938, 1.0507812, 1.2929688, -0.5673828, 1.1914062, -1.5302734, 0.8647461, -1.2402344, 0.9897461, -0.009117126, -2.3339844, 0.20581055, 2.3652344, -2.0390625, -1.1591797, 2.6171875, -1.7919922, 0.7451172, -0.32714844, -1.9404297, -1.8476562, 0.84277344, 0.22839355, -0.7973633, -1.7480469, -0.06311035, 2.0976562, 0.82714844, -2.4414062, -1.7275391, -0.09814453, -0.07476807, -0.76708984, 1.0742188, 0.11175537, 0.36743164, 0.6694336, -2.4433594, 1.4140625, 2.953125, -0.9506836, 2.6738281, -1.5791016, -0.06585693, -0.6176758, -1.7636719, -1.7783203, -0.36938477, 1.0458984, 0.5083008, -0.40576172, -0.07836914, -2.390625, -0.7055664, -1.7597656, 1.96875, -0.20092773, -1.4433594, 0.35961914, 0.99072266, 1.6708984, 0.17211914, -0.20043945, 0.012214661, -0.99902344, 1.6064453, -0.6977539, 0.99365234, -0.38720703, -0.6118164, 0.029830933, 1.7275391, 0.6503906, -0.8232422, 0.046844482, 0.030212402, -1.5019531, -0.2590332, 0.85546875, -1.4794922, -1.8769531, 0.11706543, 1.0458984, 3.2421875, 1.8251953, 1.0605469, -2.78125, -0.7529297]}, "B081GNNVJK": {"id": "B081GNNVJK", "original": "Brand: Traeger\nName: Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub\nDescription: \nFeatures: Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper.\nCompatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice.\nEasy Storage: Each rub comes in a stackable aluminum tin container\nMade in the USA\n", "embedding": [0.6088867, 0.6118164, 1.9960938, -0.8154297, -0.63964844, 1.8554688, 0.6689453, -2.5527344, 0.008605957, -1.8652344, 1.2695312, 2.6679688, 0.74121094, -3.53125, 0.25073242, -0.74316406, -2.015625, 1.4804688, 1.7685547, 1.0292969, 0.70458984, 1.9521484, 1.0380859, 1.6894531, 1.5800781, -0.7817383, 3.3496094, -0.029281616, -0.6635742, 0.25048828, 2.2636719, 1.9912109, -1.9824219, 2.6816406, -1.6220703, 0.4753418, -1.4746094, 0.6669922, -0.01524353, 0.6347656, -0.68359375, -1.5019531, 0.55078125, 0.1616211, -2.8046875, 1.9306641, -0.3347168, 1.515625, -1.5478516, -0.007522583, 0.61376953, 0.55078125, -1.0371094, 0.33544922, -0.27807617, -0.50927734, 0.7753906, -3.5351562, -0.11468506, 0.053222656, 2.9121094, -1.0771484, -1.3935547, -0.8623047, -0.73876953, 0.4321289, 0.89990234, -0.9033203, -0.53466797, -1.6796875, 3.6210938, -0.0927124, -2.296875, 0.35546875, 0.4267578, 1.7744141, -1.4160156, -0.48706055, 0.60253906, -2.328125, -0.64941406, 1.6201172, -0.7050781, -1.8242188, 1.5439453, -0.5883789, -1.1552734, 0.74658203, 4.0859375, 0.072265625, 1.1191406, 2.4179688, -2.9746094, -3.015625, 2.7460938, 0.2980957, 0.6352539, 0.21875, -0.4609375, 2.5273438, -0.12371826, -2.0058594, 0.5527344, 0.65771484, -1.4472656, -0.31982422, -0.70166016, 0.37231445, -2.5097656, 0.5517578, -3.9648438, 2.2910156, 1.1396484, 1.0322266, 0.3786621, 0.16687012, -2.484375, -1.9794922, -1.015625, 2.28125, 2.125, -0.6816406, 0.27392578, 0.8769531, 0.48120117, 1.3613281, 1.7509766, 2.6230469, 1.5546875, -2.8496094, -1.1552734, 0.6225586, 0.71484375, -1.1572266, 1.4501953, -1.4716797, -0.59765625, -1.6132812, -0.21228027, 0.6928711, -0.23913574, 1.546875, 1.9785156, -1.0136719, -3.2226562, -0.77978516, 0.36328125, -0.040924072, 0.44799805, -0.7211914, 0.41503906, -0.7475586, -1.7822266, -0.95166016, 2.4414062, -0.092285156, -0.43115234, -0.33642578, 0.14318848, 1.9931641, -1.2392578, -1.3818359, 0.13183594, 0.69384766, -1.1123047, -2.7832031, -0.44873047, 0.8432617, 0.54785156, 3.0351562, 2.203125, -3.8027344, -0.23278809, -0.5810547, 0.33911133, -1.2128906, 0.7001953, 0.7426758, 2.140625, 1.7099609, 1.9326172, -1.1923828, -1.4912109, 0.25854492, 1.8095703, -2.3359375, 1.4550781, 1.0693359, 1.8134766, -1.3828125, 0.9165039, -0.32617188, 0.46289062, -0.65722656, 0.2524414, -2.5097656, 1.5009766, -0.8232422, -0.9868164, -0.059509277, -2.1523438, -1.1806641, -0.32714844, -0.08972168, -1.609375, -2.9921875, 0.9433594, 0.058410645, 1.3359375, 1.3496094, 0.76171875, -2.4394531, -0.098083496, 1.1337891, -0.61279297, -2.6171875, -0.54248047, -0.6513672, 3.3417969, 2.0546875, -0.007423401, 1.0732422, -1.2890625, 1.4453125, -0.45654297, 1.0605469, -0.9526367, 0.49072266, -1.1054688, 0.8100586, 1.8066406, 0.5449219, -0.36083984, 0.95751953, -1.9082031, 0.8305664, 0.44555664, -0.71972656, -0.40771484, 2.2050781, -1.8505859, 0.02217102, -0.6948242, -1.6210938, -0.11773682, 1.2197266, -1.5107422, 1.8105469, 0.24169922, 2.1054688, -0.29125977, -0.41064453, 2.5332031, 0.85498047, 2.0878906, 0.6611328, -1.2402344, 3.6640625, -3.3652344, 1.2216797, 3.2050781, -0.5004883, 0.12548828, -0.12194824, 0.20593262, -1.2089844, 0.45654297, -1.1855469, 1.1142578, -2.0839844, -1.1210938, -0.07489014, -1.5527344, -2.5234375, 1.8105469, 0.10064697, -1.7636719, 0.1875, -1.2900391, 0.8642578, 1.0185547, 1.2529297, 0.19299316, 0.07299805, 0.9892578, -1.7519531, 0.4128418, -3.7617188, 0.88134766, 2.3691406, 5.7265625, 1.3652344, -0.51171875, 0.11883545, -1.5761719, 0.2692871, -0.81591797, -0.13903809, -1.5947266, 0.6694336, 2.0058594, -0.1685791, 0.42944336, 1.1943359, 0.73291016, -0.05050659, 1.1376953, -2.171875, -0.3876953, 1.4882812, 1.421875, -0.56591797, -1.0927734, -0.22583008, -2.1777344, 1.2216797, -0.93115234, -2.9804688, -0.028549194, 0.55566406, 1.9404297, 2.1015625, 1.2890625, -2.5449219, -0.37670898, 0.23657227, -2.9960938, 2.0253906, 0.640625, -0.11206055, 0.9921875, 2.0195312, 0.049591064, -1.2207031, -1.9970703, -0.6948242, -2.3652344, -2.9121094, 0.7167969, -0.25927734, -3.3007812, -0.9980469, -3.1660156, -1.5849609, -1.46875, -1.7900391, -0.67333984, 0.44262695, -0.23571777, 1.4042969, -1.0712891, 0.59814453, -1.4462891, -2.7304688, -2.4863281, 0.07836914, -2.0175781, -1.1650391, 0.06665039, 0.12585449, 1.6923828, -2.3085938, 0.54003906, 0.30322266, 0.7548828, 0.44335938, 1.2207031, -2.5351562, 0.8725586, -1.1845703, 1.2304688, -1.5302734, -1.0351562, -1.7929688, 1.046875, 2.6308594, 0.12780762, 5.3398438, 0.17333984, 1.6230469, -0.16125488, 0.031555176, 0.84814453, -1.1289062, -3.5351562, -2.2851562, 0.8671875, -0.7832031, -0.59521484, -2.7714844, 1.2617188, -0.49951172, -0.91552734, -0.19152832, 0.67626953, -0.029678345, 1.1074219, -2.0585938, -1.7060547, 2.9746094, 1.078125, 0.42016602, -0.2919922, 1.0439453, 0.0059509277, -1.3710938, -1.46875, -1.0732422, 2.0996094, -0.5888672, 2.0507812, -1.5419922, 0.007331848, -0.8544922, 0.9501953, -2.7382812, 3.0429688, 0.66259766, -1.0107422, 0.19702148, -1.0488281, -1.6865234, -1.4072266, 0.20007324, 0.79833984, 3.4492188, 3.3574219, 1.8769531, 0.2824707, -0.78515625, 4.4453125, -2.4121094, 0.68310547, 0.88671875, 3.3300781, -0.63183594, -2.7832031, 0.07739258, 0.46484375, -1.1142578, -0.005264282, -0.44506836, 2.46875, 2.2519531, 1.1435547, 1.3867188, -0.2322998, -2.703125, 3.1757812, 0.4038086, -2.9960938, -2.7675781, 2.8007812, 2.7421875, 1.2373047, -0.25708008, 1.3476562, 0.78564453, 1.8554688, -0.66748047, -0.33154297, -0.82910156, 1.71875, 0.41381836, 0.8120117, -2.7578125, 0.6479492, 0.60253906, -1.9560547, 2.0449219, -1.9003906, -0.7182617, -1.9023438, -0.24951172, 3.0488281, -0.41723633, -1.0205078, 3.7675781, 0.32055664, 1.6074219, -0.84277344, 0.38183594, -1.6162109, 0.35131836, 1.3505859, -2.4550781, -0.018341064, -3.4667969, 4.796875, -2.9003906, -1.8398438, -1.5253906, 3.1699219, -1.7607422, -1.1357422, 0.72753906, 1.6435547, -1.9746094, -0.005470276, 0.9404297, 0.83691406, 2.328125, -0.2944336, 0.63671875, 3.8066406, -1.4277344, -2.25, -3.0175781, 0.076049805, -1.2275391, -0.4116211, -1.0898438, 1.1474609, -0.63623047, -1.1445312, -4.3242188, -0.57177734, 0.20935059, -1.2539062, 0.89990234, 1.5966797, 1.2519531, 1.0410156, -1.0302734, 4.0820312, 1.9677734, 0.021057129, 2.3535156, -3.7597656, -0.7163086, -1.8173828, -4.0703125, 0.15454102, 1.5253906, 0.13330078, 1.4921875, -0.6567383, -0.13903809, 2.9824219, -0.1126709, 0.2685547, -2.5058594, 1.4130859, 1.03125, -0.4177246, -0.03250122, 1.9746094, 2.1464844, -2.1289062, -1.8115234, -2.0214844, -1.765625, -1.1318359, -0.097229004, -2.1054688, 1.1416016, -1.7792969, -0.5498047, -1.6533203, -1.9951172, 0.13476562, 0.25439453, 0.6953125, -0.49194336, 3.171875, -2.2167969, 0.53222656, -2.5214844, 0.90771484, -0.099609375, -0.08734131, 0.29760742, -0.7324219, 2.3222656, 0.048980713, -0.61376953, 0.52490234, -2.1601562, -0.7036133, 0.08892822, -0.37426758, -1.2841797, -1.7070312, 1.109375, 2.2148438, 1.7304688, 2.390625, 2.5214844, -1.2558594, -0.7836914, -0.015823364, 0.3876953, -1.7851562, -2.9140625, 0.13244629, 0.23425293, 1.5585938, -1.7265625, 0.21044922, -0.60595703, 0.22668457, -1.0898438, 1.8779297, 1.7236328, -2.1308594, 3.1855469, 0.80615234, 1.9912109, 1.0810547, -1.1435547, -1.0537109, -0.20922852, 0.7626953, 2.0507812, 0.7626953, -1.609375, 0.43041992, -1.5810547, 0.69921875, -1.8740234, 0.076293945, -0.8339844, 0.018081665, -0.6870117, -0.4189453, 1.6650391, -1.5644531, 3.5214844, -2.1367188, -1.6943359, 4.0195312, 1.6933594, -0.92871094, -0.60839844, 0.91845703, -0.123413086, 0.52978516, 1.2832031, -0.042022705, -2.4492188, -0.8642578, 0.3737793, 1.2119141, 0.91259766, 2.9726562, 2.5625, 0.46533203, 1.4326172, -2.3984375, 2.7207031, 0.37182617, 1.5791016, 3.625, -0.6767578, 0.8251953, -0.16992188, 1.8632812, 0.9638672, -0.6455078, 0.60595703, -1.2753906, 0.8540039, 1.2441406, -4.71875, 1.2646484, 2.2636719, -0.66552734, 0.92822266, -0.89990234, 0.82958984, -1.0136719, 0.7080078, -1.125, -0.1583252, -1.1962891, 1.6582031, 2.3007812, -1.4082031, -0.83154297, -0.31298828, 2.5175781, -1.7529297, -0.62402344, 0.5263672, -0.4362793, 0.61328125, -0.75439453, -2.2246094, -2.3632812, -0.6503906, 1.3710938, 0.9277344, -0.52490234, -0.5678711, 3.3574219, -2.8632812, 1.3730469, -1.3632812, 1.9667969, -2.78125, -0.46362305, 2.3320312, -0.82373047, 0.09844971, -1.2949219, -0.39135742, -0.6225586, 0.79345703, 2.0214844, -0.7758789, -1.4648438, 2.1347656, -1.6347656, -3.5917969, -3.5957031, -1.6220703, 1.9453125, -2.8203125, -0.103515625, 0.16662598, 1.4365234, 0.20214844, 0.11279297, 0.46289062, 2.0117188, -0.89746094, -1.6328125, -1.9677734, -0.74609375, 1.1113281, -0.9082031, 0.5996094, 1.7783203, -0.2836914, -1.9609375, -0.43188477, -0.68066406, -1.6367188, 0.65966797, 1.4570312, -0.29614258, -1.7646484, 0.37841797, 2.4628906, -1.1191406, 2.6347656, -1.7734375, 0.12976074, -0.84228516, -2.875, 0.7441406, -0.25878906, -1.2734375, -1.2792969, -1.1298828, 2.7089844, 1.1220703, -1.5390625, 1.203125, -2.3847656, -2.4570312, -0.44970703, 1.4970703, 0.10369873, 3.1738281, 2.7148438, -0.7128906, -0.63671875, -2.359375, -0.6660156, -2.8066406, -0.9404297, -0.43115234, -1.8095703, 0.19702148, 3.1191406, -3.7304688, 0.8984375, -1.59375, 1.7851562, -0.7285156, 1.3837891, -1.5039062, 0.6333008, 1.0224609, 1.0537109, -1.3427734, -0.26342773, 0.10852051, 2.4511719, -0.58203125, -0.26293945, -0.6855469, -2.4335938, -2.2851562, -0.609375, 1.7910156, 0.65771484, -1.5107422, 1.6582031, -0.41723633, 0.50634766, -1.3212891, 2.2773438, 0.095214844, 2.1992188, -2.0761719, 2.7578125, -0.89404297, -1.7402344, -1.3193359, -1.0380859, 0.032165527, 1.7207031, -0.76416016, -1.2548828, -0.39819336, 1.5126953, 0.04534912, 0.33862305, -1.8984375, 1.4326172, -0.6376953, 0.5576172, -0.8510742, 4.140625, -0.62841797, 0.50390625, 0.8154297, -0.92285156, -0.95751953, 0.7055664, 0.59033203, 0.42163086, 0.31103516, -1.9462891, 2.1425781, 1.5976562, -0.10913086, -0.6040039, 1.4628906, -0.07678223, 0.8417969, 1.7509766, 3.2714844, 2.8007812, 4.1484375, 2.5136719, 0.8051758, 2.6816406, 1.6503906, -1.9570312, 2.1367188, 3.7402344, 0.55126953, 2.3613281, -1.1152344, -0.42919922, -0.9082031, 0.7524414, 0.55566406, 0.31640625, -1.2666016, -2.3535156, 2.4121094, -0.1430664, 0.23376465, -1.9052734, -0.26220703, -2.34375, -1.3789062, -1.2070312, 0.19812012, 0.029846191, 1.0839844, 0.7993164, -0.22521973, -1.3330078, 2.4316406, -2.6054688, -1.8945312, 1.4804688, -2.3613281, -0.3239746, 1.6220703, 0.9555664, 0.8574219, 3.5390625, -0.09753418, 1.1523438, 1.7392578, 2.0214844, -2.1015625, -2.3203125, 0.58984375, 1.1337891, -2.6816406, -1.1484375, -0.5522461, -0.19384766, -0.5541992, -1.7441406, 1.1601562, 0.06896973, 0.103149414, 1.1494141, -2.6601562, 2.7871094, -1.6650391, 0.16906738, 0.3720703, -0.6713867, 0.1706543, 0.51464844, -2.4765625, 1.546875, 1.0908203, 2.0273438, -0.3466797, -2.34375, 1.0693359, -1.1064453, 1.3876953, 1.8925781, 2.5429688, -0.76904297, 0.17797852, -0.9682617, 1.0097656, -1.1269531, -1.2119141, 0.9067383, 1.2763672, 2.3691406, 1.5839844, 0.29003906, -0.045898438, -2.1074219, -0.7211914, -0.6347656, -0.09106445, -0.34155273, -3.46875, 1.6835938, 0.17077637, -1.5371094, 0.16064453, -0.6230469, 2.8378906, 1.1162109, 0.69091797, 1.4091797, -2.1835938, 0.5932617, 1.0917969, -1.1542969, -0.5205078, -1.5136719, 1.6269531, -0.25439453, -1.4697266, 1.6171875, 2.1054688, -0.59375, -2.5488281, -0.59375, 0.58984375, 0.19213867, 1.0302734, 0.7553711, -0.29907227, -1.0546875, 0.59472656, -1.9277344, 1.5185547, 3.3632812, -0.2368164, 0.75097656, -0.53564453, -2.4003906, -4.3710938, -0.7080078, -0.7792969, 2.3339844, 3.9902344, 1.5136719, 1.1191406, -0.8979492, -2.4882812, 0.9082031, -1.9394531, -0.0009994507, 0.35498047, -1.1396484, 0.4128418, -1.484375, 0.92822266, -0.042663574, -3.1308594, -1.0068359, -4.1210938, -0.8491211, 1.1289062, 0.21130371, -1.6914062, 1.8222656, 0.3071289, 1.4150391, 0.32226562, 1.0693359, 3.1542969, 2.125, 1.4433594, 0.31323242, -0.2800293, -0.21740723, 1.1982422, -1.3691406, -2.0664062, -0.7163086, 1.9560547, 0.7758789, 0.21484375, -1.9472656]}, "B001DC5HAW": {"id": "B001DC5HAW", "original": "Brand: Stansport\nName: Stansport 3 Outlet Propane Distribution Post\nDescription: \nFeatures: Simple, versatile device lets you operate three propane devices from one bulk propane cylinder\nWorks with lanterns, stoves, heaters, and other propane appliances\nThree outlets, each with its own auto shut-off valve\nAdjustable base ensures stability on uneven terrain\n30-inch device weighs just two pounds, and packs easily\n", "embedding": [-0.9248047, 0.4790039, 2.3320312, 0.609375, -0.5541992, 0.9892578, 1.2333984, -0.082336426, 0.18652344, 1.4277344, -0.7089844, 1.0214844, -0.57421875, -2.0234375, 0.25024414, 0.66552734, 0.48364258, -0.30932617, -0.21594238, 0.5761719, 1.5, -0.34814453, 1.2490234, -2.8925781, 0.45581055, 1.1679688, 4.5507812, -1.9042969, 0.066467285, -1.0224609, 1.0488281, -1.4804688, 1.1923828, 2.4003906, -2.4453125, 0.58203125, -0.31079102, -0.026809692, -3.0683594, -0.025924683, -1.6240234, 1.4765625, 2.8554688, -0.99609375, -2.140625, -0.52783203, 2.1953125, -0.32763672, 0.7216797, 1.8271484, 1.4306641, 1.1289062, -0.44335938, 0.85595703, 1.5957031, 0.091918945, 3.1953125, -0.45654297, 0.84521484, 2.0136719, 1.0908203, -0.71533203, -1.5712891, 0.61865234, -1.8056641, 0.5493164, 0.13623047, -1.0859375, 0.57128906, 0.6855469, 1.8095703, -0.3425293, 0.8046875, -1.3144531, 0.703125, 0.41577148, -3.6386719, -0.2746582, 0.89404297, -1.4619141, -3.0214844, 1.5673828, -0.51904297, 1.5175781, -0.64453125, -0.77246094, -1.7617188, -0.57128906, -1.5195312, -0.57470703, -2.796875, 1.59375, -1.8779297, -4.578125, 1.3017578, 0.4724121, 1.8818359, 0.90185547, -0.9506836, -0.14355469, 1.0869141, -0.012191772, 1.1582031, 1.6884766, -0.22094727, 1.9238281, 3.5761719, 1.5380859, -1.0615234, -0.23291016, 0.3737793, -1.5898438, 1.9140625, -0.28442383, -0.36865234, 0.15466309, -2.140625, -0.11859131, 5.2382812, 1.8486328, 2.8574219, 0.44213867, 2.8710938, 2.2851562, 0.2154541, 2.6894531, -2.4453125, 2.6835938, 3.5664062, -0.94384766, -1.1523438, -0.8364258, 1.7392578, -0.2746582, -0.105285645, -1.7001953, -1.8369141, -1.1357422, 0.012496948, -2.7734375, -2.3320312, -0.40429688, 0.39379883, -0.7763672, -4.3203125, -0.5385742, -1.3144531, 0.8251953, -0.6279297, -1.4707031, 0.02268982, -2.2402344, -0.89160156, -0.75439453, 0.6152344, 0.21252441, -1.4013672, -0.84716797, 1.4316406, 0.5175781, 2.1308594, -2.3164062, -3.9160156, 0.8857422, 0.78466797, -5.0507812, 1.0029297, 0.32373047, -0.8774414, 1.1542969, 0.5595703, -1.5488281, -1.9570312, -1.8828125, -0.8857422, 0.25024414, 0.53564453, 1.7578125, -0.5024414, -1.7841797, -2.765625, 0.6035156, -0.609375, -1.4208984, 1.5078125, -0.73046875, -0.12445068, -0.19799805, -0.006416321, -0.8222656, -2.2597656, 0.77978516, -3.0957031, 0.5263672, -0.2932129, -2.8964844, -2.9453125, -3.3964844, 1.7695312, 1.5537109, -1.015625, -2.4140625, -0.29516602, 1.34375, -0.0657959, -0.94921875, 1.34375, 2.6152344, -1.4746094, 1.4960938, 0.8901367, 0.4934082, 3.1796875, -1.9619141, -0.42114258, -1.8720703, 3.3007812, 1.3076172, 2.4648438, 1.1640625, 0.3173828, 0.82910156, -1.0097656, -0.71240234, 1.3115234, 1.2744141, 0.29858398, -0.58935547, -2.0371094, 1.6337891, 1.875, -1.0253906, -0.4765625, 0.03353882, 0.7524414, 2.4394531, -0.15917969, -1.5683594, 1.5175781, 2.2109375, -0.15270996, -0.16870117, 1.1962891, 0.5371094, -1.4365234, -1.1855469, -0.44482422, -0.22973633, 1.2177734, 2.2675781, 0.67871094, -1.0009766, 0.24060059, -0.6777344, 0.7001953, 0.6303711, 1.9433594, 0.45385742, -0.75, -2.1230469, 2.0273438, -0.36621094, -0.10424805, -1.4609375, 1.4912109, -0.6767578, 3.0507812, -0.8388672, -0.7910156, 0.1973877, -0.3959961, 0.6586914, 1.5126953, 1.2207031, 1.2597656, -0.23303223, -1.9082031, 2.6542969, 0.13146973, 2.7070312, -0.63916016, 0.9321289, 1.9472656, -3.0839844, 1.4003906, 1.0898438, 0.6660156, 0.7788086, -0.97314453, 0.4802246, 4.0742188, -1.0351562, -2.8339844, 0.8046875, -0.26782227, -0.8051758, 0.19934082, 0.62109375, -0.32763672, -0.43969727, 1.0976562, 0.30004883, -0.8178711, 2.7441406, 1.0332031, 0.1817627, 0.9511719, -2.1269531, 0.18469238, -0.28198242, -4.0078125, -2.3144531, -0.8461914, 1.8710938, -1.7548828, 0.5595703, 2.6582031, -2.328125, 1.1621094, 0.4260254, 0.16479492, 0.7973633, -0.80078125, 0.048675537, -1.4589844, 0.48486328, -1.1083984, 0.8339844, 1.3408203, 1.328125, -0.18005371, 0.5151367, 0.43359375, -2.453125, -0.45385742, 0.8881836, -1.4804688, -2.4785156, 1.9277344, -0.7294922, -1.0175781, 1.6816406, -1.2060547, 1.4287109, 0.47558594, -0.5126953, 0.5214844, 1.0195312, -0.3642578, 0.1538086, 1.1357422, 3.0234375, 1.6865234, -1.5371094, -1.4736328, 0.85009766, -0.11853027, 0.5786133, -0.40820312, 0.5571289, -0.31689453, 1.2529297, -1.8447266, -0.8881836, -1.1542969, -1.0039062, 2, -2.6445312, 0.20629883, 1.2226562, -0.062927246, -1.3681641, 1.7509766, -0.16137695, -1.5615234, -0.46557617, 0.1027832, 1.5449219, -1.4609375, 0.6303711, -2.0585938, 0.54785156, -1.3388672, -0.9165039, -2.8398438, 0.6855469, -0.7607422, -0.5126953, -0.19848633, -3.0898438, 0.3857422, -1.6513672, 0.9013672, -0.8183594, 0.5073242, -1.2255859, 0.83935547, 1.2626953, 1.6865234, 0.37280273, -0.009086609, 0.5698242, 0.65185547, -1.0722656, 1.7167969, -0.5756836, -0.36547852, 0.99365234, -0.08319092, -1.0097656, -1.1660156, 2.2324219, -0.9223633, 0.23474121, 1.2792969, -1.1376953, 0.7729492, 0.3815918, -0.8261719, 3.1914062, 0.16455078, -0.8769531, -0.76660156, 0.48657227, 2.8085938, -0.0010900497, 2.1835938, -0.5527344, 0.05419922, -0.37280273, -1.0556641, -2.3417969, -2.4003906, -1.46875, 3.7402344, -1.8369141, -0.14819336, 0.12200928, 0.27246094, -1.0488281, 0.40820312, -1.0146484, 0.67578125, 1.1123047, 1.4765625, -0.2130127, -1.5761719, 0.22009277, -1.8515625, -0.8847656, -0.15026855, -0.86865234, -2.8183594, 0.19018555, -1.734375, 0.24145508, 0.44189453, 1.0068359, 2.0253906, 0.18835449, 1.9550781, 0.18041992, 1.4199219, -1.4472656, -0.64453125, 0.09088135, 1.7685547, 1.5351562, 0.69921875, -1.8134766, 1.6621094, 1.5351562, -1.6660156, -0.54785156, 1.3417969, -1.1464844, 0.16906738, 1.2451172, -0.55371094, -0.515625, 0.03866577, 2.3046875, 0.22814941, -2.5625, -0.14343262, -0.8876953, 0.4494629, -2.3964844, -0.6660156, -0.8598633, 0.2006836, -1.5498047, 0.1274414, -0.07098389, -1.0332031, -4.6171875, -2.5488281, 1.0800781, 1.6435547, 0.83203125, 0.5449219, -1.6894531, 0.07324219, 0.034179688, 2.1835938, -0.63623047, -0.70703125, 1.9707031, -0.2446289, 0.62939453, -1.6894531, 0.62060547, -0.49414062, -2.0703125, 0.23583984, -0.74121094, 0.40698242, -1.9091797, -0.8745117, 0.9863281, 1.9589844, -0.3647461, 1.6064453, -3.0058594, 2.6894531, -1.9589844, 0.60058594, 1.2070312, -4.390625, 0.21826172, -3.2675781, -1.7978516, 0.82177734, -0.25317383, 0.13415527, 1.4853516, 2.5683594, -0.5830078, 0.28808594, 1.7421875, -4.3203125, -2.6542969, -0.39501953, 0.61279297, -2.5058594, -1.9541016, -0.28295898, 1.9365234, -1.0107422, -0.7885742, -0.23901367, -1.0039062, -1.1826172, -1.6591797, -0.49609375, 0.9785156, 1.265625, -1.1748047, -0.6196289, -0.78222656, 1.5488281, -0.55078125, -0.3540039, -0.7949219, 1.1464844, 2.6386719, 1.1708984, -0.24719238, 1.8251953, 0.6743164, -2.1445312, -0.7788086, -0.7192383, 0.36010742, -0.21276855, -1.5039062, -1.4746094, -2.0449219, 1.0195312, -1.4892578, 0.62890625, 0.12573242, -2.046875, 2.0273438, 0.49804688, 0.15808105, 0.17602539, -1.15625, -1.6923828, 2.0371094, 1.1611328, -0.7519531, -1.9013672, -0.9716797, -1.7158203, -1.2929688, 1.7724609, -1.8525391, -0.056488037, -1.0917969, -1.7089844, -0.87158203, 0.87939453, -0.38232422, 0.83740234, 1.5419922, 0.2932129, -2.2558594, 0.3071289, 0.8754883, 0.51660156, 0.27197266, 0.93408203, -0.9526367, 2.1386719, 0.6166992, -0.83935547, -3.1679688, -0.2368164, 0.5332031, -2.5859375, -0.3828125, 0.5991211, -3.2578125, -2.1308594, 1.4423828, -0.2524414, 2.0214844, -1.0126953, 2.0019531, 1.2246094, -0.5151367, -2.0644531, 0.61035156, -1.984375, 3.5371094, 2.4980469, 0.9379883, -0.16540527, -0.49267578, 2.5878906, -0.091796875, 2.5527344, -2.4375, 1.5371094, 1.1992188, 0.45532227, 0.6298828, 0.7368164, -0.28344727, 1.5917969, 0.05456543, 1.9238281, 1.6435547, -1.4746094, 1.1259766, -2.3339844, -0.59228516, 0.5722656, 0.6699219, -1.7324219, 2.5585938, -0.6459961, -2.3085938, 1.1806641, 2.2792969, -1.1884766, 2.0058594, -0.0069389343, -0.59375, 0.14587402, -2.8964844, -1.4501953, 0.7553711, 0.60009766, 1.9355469, -1.0292969, 0.89990234, 0.56884766, 1.5527344, -0.8886719, -0.24987793, 0.54003906, 0.09051514, 0.86035156, -1.0136719, 0.8256836, -0.7080078, -2.1074219, 1.5771484, 1.4345703, 1.3701172, 0.066711426, 1.2519531, 0.40820312, -1.1582031, -2.1074219, -1.6904297, 0.71728516, -1.2802734, 0.25073242, 2.4257812, 1.5986328, 0.16125488, 0.51171875, -2.1308594, -0.9267578, 1.4013672, 1.1220703, 1.6328125, -0.7026367, 0.84521484, -1.5683594, -4.6796875, -2.4921875, -1.3457031, -0.45947266, -0.3474121, -1.9511719, -0.4362793, -0.86865234, 0.6767578, 1.7851562, -1.9423828, 1.4384766, 1.8408203, 2.5117188, -0.58935547, -1.9736328, -0.14892578, 1.8681641, -0.03326416, -1.2167969, -0.44799805, -1.65625, -2.0566406, 2.8046875, -0.63671875, 1.4619141, 1.4003906, -0.74560547, 0.64697266, 2.765625, -0.30493164, -3.6230469, 1.3564453, -3.1132812, 0.0016727448, 0.4165039, -0.7578125, -0.2878418, 2.5488281, -0.4543457, 2.1757812, 0.52783203, 0.4802246, -0.97021484, -0.30029297, -1.4472656, -0.14904785, 0.011383057, 1.1884766, 1.7578125, -0.18286133, 1.8974609, 2.1308594, -1.75, -2.4746094, -2.6757812, -1.515625, -0.18566895, -0.122680664, 2.0859375, 0.95458984, 2.0957031, -0.5913086, 0.48413086, -0.3779297, -0.72021484, -0.64990234, 1.8818359, 0.89208984, -1.4208984, 2.8867188, -1.9287109, 0.005458832, -2.28125, -2.4550781, 0.88427734, 1.9472656, 0.44799805, -0.14123535, 2.1601562, -0.86035156, 1.0048828, 2.1210938, 1.0732422, 2.1113281, 2.7148438, -2.5234375, -0.4584961, 1.875, 1.1191406, 1.1132812, 1.765625, 0.12432861, 1.2226562, -0.92822266, 0.7368164, 0.72558594, 0.14978027, -1.3535156, 1.2431641, 0.81884766, -2.7890625, 2.703125, -1.6279297, 0.47753906, -0.3034668, -0.08929443, -1.6933594, 0.93603516, 1.2050781, -0.82958984, 2.234375, 1.3681641, -0.30078125, -1.3320312, 0.5136719, 1.8066406, -1.7880859, -0.6308594, 1.4746094, 2.7480469, 1.7041016, -1.5644531, 1.0771484, 0.5576172, 1.3740234, -0.9995117, 1.0761719, -2.5625, 1.6376953, 0.061767578, -0.5366211, 2.3691406, 0.80371094, 1.2587891, 0.02960205, 0.671875, 3.2636719, -1.0888672, 1.7539062, -0.89453125, -0.28344727, -1.3017578, -0.8129883, -0.66064453, -0.56591797, -0.15612793, 0.61376953, -0.6899414, 0.9013672, -2.2792969, 0.7685547, 0.5732422, 0.46850586, -2.2636719, 0.7685547, -1.8867188, -0.67041016, 2.4453125, 0.9243164, 0.03201294, 0.44140625, 0.17626953, 0.30541992, -0.008636475, 0.9902344, 0.2705078, -0.8876953, -2.078125, -0.7524414, -0.45898438, 0.99853516, -0.3959961, 0.91796875, -0.5385742, 1.1464844, 0.4050293, -0.89404297, -0.8178711, -0.94189453, -0.055786133, -0.56152344, 2.1699219, 0.9892578, 0.8925781, 2.4960938, 2, -1.4609375, -3.3789062, 2.9765625, -0.89990234, -0.22912598, 0.101501465, -3.2597656, -1.1464844, -0.11102295, -0.5444336, -0.9086914, 0.17553711, 1.2548828, -1.5830078, 1.34375, 1.4121094, 0.5527344, 0.4272461, 0.796875, -1.7578125, 2.1933594, 1.7529297, 1.7089844, 0.7104492, 0.22546387, 0.28442383, 1.1582031, -1.7626953, 3.203125, 1.1601562, 1.1689453, 0.8203125, 2.8203125, 3.0078125, 0.20166016, -1.0556641, -0.6152344, 2.2246094, 1.7128906, -1.8984375, -1.1855469, -1.7158203, -0.35717773, 1.0283203, -2.8359375, 0.66259766, -2.328125, -2.984375, 1.9472656, -1.40625, 2.3027344, -0.66308594, -0.6088867, -1.5527344, 0.6347656, -1.171875, -1.6162109, 2.0820312, 2.984375, -0.46850586, -0.5161133, 0.73535156, 2.2304688, 1.0136719, -1.0107422, 0.7783203, -0.06222534, -1.5527344, -0.62060547, 0.04067993, 0.5878906, 1.2392578, -0.033233643, -0.8256836, -1.3837891, 1.6337891, -0.037994385, -0.6948242, 0.19689941, -1.0449219, 0.7104492, -1.6337891, 0.17419434, 0.5385742, 0.26538086, -2.0351562, 0.7817383, -1.0244141, -1.5478516, -1.8925781, -1.4951172, 1.0673828, -0.41357422, 0.57910156, 1.7529297, 1.7304688, 1.6025391, 0.46289062, 1.6962891, -1.1132812, 0.25830078, -0.32226562, -0.40405273, 0.8149414, 0.9941406, -0.024917603, 0.6611328, 3.5234375, 0.02166748, -1.1523438, 1.1982422, 2.421875, -1.5195312, -0.09698486, -1.0371094, -1.5224609, -0.12768555, -0.89453125, -0.37402344, 1.2021484, 0.49047852, -0.43115234, -3.5429688, -0.63671875]}, "B01GE77QT0": {"id": "B01GE77QT0", "original": "Brand: ThermoPro\nName: ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer\nDescription: \nFeatures: Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself\nHassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition\nKitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature\nUSDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes\nDurable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit\n", "embedding": [-4.1640625, 1.7851562, 4.2265625, 1.7832031, -0.8432617, 0.30029297, -0.91748047, 1.7773438, -0.3840332, 1.1953125, 1.3632812, 0.35009766, -0.9458008, -1.0009766, 0.13391113, 0.43017578, 0.12200928, -0.5073242, 1.6601562, 3.8359375, 1.4121094, 2.0351562, -1.2138672, -0.69873047, 1.5458984, -0.024398804, 1.2265625, -1.6660156, -0.63964844, -2.1347656, 2.8964844, 3.0917969, 0.8046875, -0.30322266, -0.6425781, -0.36743164, -1.2099609, -0.07299805, 1.4794922, -0.30810547, 0.02104187, 1.8203125, 0.30517578, 2.2109375, -3.5371094, -1.9931641, -0.62597656, 2.078125, -2.0351562, 0.49414062, 0.12097168, 1.6123047, -1.7080078, -0.14892578, 0.9975586, 0.46411133, 0.008872986, -3.0585938, 0.43969727, 1.2382812, -0.08984375, -0.6645508, -1.0039062, 0.16467285, 1.6181641, 0.1763916, 0.87353516, -3.0097656, -0.2475586, -0.26000977, 0.578125, 0.8959961, 1.0566406, 0.88183594, 1.1376953, -1.3818359, -0.7973633, -0.08862305, 1.3193359, 0.6899414, 0.24926758, 2.9375, -0.26098633, -1.7773438, 0.88378906, -2.2753906, 0.89160156, 1.5908203, 2.6582031, -0.72802734, -0.41967773, 2.7070312, -2.0292969, -2.8417969, 1.0820312, -0.9711914, -1.4033203, -1.3710938, -1.4677734, 2.4375, -0.16442871, -1.5224609, 0.31225586, 1.3476562, -2.2382812, -1.9628906, 0.50390625, 1.7548828, -3.46875, -1.7919922, -1.7929688, 2.2050781, -0.17102051, 0.4663086, -1.3886719, -0.9790039, 0.20825195, 0.53027344, -0.6479492, 2.2617188, 2.6894531, -1.7392578, 0.8227539, -0.4855957, -0.47045898, 0.88183594, 2.2890625, 0.5, 1.453125, 0.7128906, -2.2519531, -0.39282227, 0.46289062, -0.4284668, 2.8339844, -2.1464844, -1.3984375, -1.7773438, -1.5244141, -1.3798828, -1.7929688, 0.7470703, -0.55078125, 1.4394531, -1.5400391, -1.5449219, 1.6318359, -0.2265625, 2.5332031, -1.2919922, 1.1054688, -2.2539062, -0.21911621, -0.57128906, 2.2207031, 1.4638672, -0.79345703, 0.33740234, 3.1523438, 0.34570312, -0.022354126, -1.2724609, -1.2998047, 0.2939453, 0.9189453, -0.65283203, -2.7539062, 1.5097656, 1.2988281, 2.6484375, 1.0664062, -1.0458984, 0.8798828, -0.38256836, 0.068725586, -3.5117188, 3.1347656, 3.3867188, 1.4755859, 1.5683594, -0.7553711, -1.6826172, 0.3972168, 1.6289062, -0.6879883, -2.6542969, -2.21875, 1.2568359, 2.3476562, -2.8535156, 2.09375, 2.0585938, 1.7763672, 0.46533203, 0.34960938, -0.56347656, -1.4882812, -3.03125, 1.3974609, 1.0322266, -1.1708984, 0.7519531, -3.0136719, -2.9160156, -1.3076172, -1.5410156, 0.119506836, 0.47875977, 1.0908203, 2.0800781, -0.20471191, -2.3574219, 1.0517578, -1.0097656, 0.0074539185, -2.6328125, 1.7617188, 0.30810547, -0.3881836, 2.1054688, -1.1835938, 0.15979004, 0.95996094, 2.53125, -1.7021484, 2.6367188, -1.8916016, 1.8720703, -1.15625, -1.3339844, 3.1171875, -0.8486328, 1.1025391, -2.2675781, -0.42285156, 1.5498047, 0.9350586, -1.7597656, -1.6621094, 2.1328125, 0.27172852, -1.9960938, 0.07165527, -1.8730469, -1.2041016, -1.3193359, -2.0058594, 3.8085938, 1.9326172, -0.37475586, 0.9716797, 0.8198242, -0.035736084, 0.31469727, -0.2607422, 0.08123779, -0.76953125, 1.640625, -3.1347656, -2.0527344, 1.6337891, -0.46533203, -1.5498047, 1.9970703, 2.0371094, 0.48950195, 5.328125, 2.4589844, 0.31030273, -0.5307617, -0.18347168, -0.35717773, -2.8242188, -0.05609131, 2.0800781, 0.7236328, 0.8901367, 0.49560547, 1.6015625, -2.3691406, 0.84228516, 2.1738281, -1.1035156, -0.83203125, 0.9267578, 0.6640625, -1.1943359, -2.2597656, -0.9111328, 0.96435547, 3.0957031, 1.5302734, -3.21875, 1.9082031, -3.2480469, 1.0615234, -1.5517578, -0.5991211, 1.3027344, -2.1289062, 1.6015625, -0.03945923, -1.8339844, -0.7182617, 0.31030273, -0.4663086, 1.3632812, -0.5551758, 2.265625, 0.7836914, 1.2363281, -1.7675781, -3.1621094, -0.5449219, -1.5361328, -3.1191406, -0.7011719, -2.71875, 1.0820312, -1.0380859, 2.15625, 2.2285156, 2.1835938, -0.59716797, 1.1972656, 2.40625, 0.65966797, 0.86621094, 1.4609375, -1.4121094, 1.2792969, -1.0712891, 0.76904297, -0.46484375, -2.7675781, 0.43676758, -0.79785156, -1.9482422, 1.4667969, 0.7919922, -2.4570312, 1.6455078, -1.7011719, -0.68603516, -1.2519531, -1.7958984, -0.3942871, -1.1357422, 0.045959473, -1.5615234, -0.15881348, -0.23718262, -0.296875, -1.6376953, 1.3427734, 0.9824219, -0.9951172, 0.13476562, -2.7382812, 1.3828125, -2.3808594, -0.44067383, 0.74560547, 1.4892578, -0.17578125, -1.7763672, 1.6220703, -1.1894531, -0.12084961, -1.8125, 0.61376953, -1.8818359, -0.15686035, -1.0576172, -0.33520508, 1.3623047, 1.0888672, 0.90966797, -1.6181641, 3.9472656, -2.3886719, 1.1611328, 1.9658203, 1.6923828, -2.0292969, -1.9511719, 0.004146576, -2.1523438, -0.8852539, -3.3007812, 0.24169922, 0.20739746, 2.328125, 0.022598267, 0.55126953, -0.45532227, 1.40625, -1.2148438, -3.515625, 0.16662598, 2.2734375, -1.9521484, -1.5371094, -2.2246094, -0.34643555, -2.0371094, -2.4140625, 0.049194336, 1.2285156, 0.73535156, 3.6074219, 1.6640625, 0.5361328, -0.6748047, -0.49267578, -4.0585938, 0.6660156, 0.46948242, -3.0214844, -1.15625, 0.43286133, -0.47094727, 0.6904297, 0.54296875, 3.0683594, 1.2392578, 4, -0.1149292, 0.14343262, 1.7724609, 2.2441406, 0.10595703, -0.29296875, 1.7910156, 0.29663086, -4.703125, -1.8457031, -0.32202148, 1.3681641, -1.0400391, -2.8007812, 1.0058594, 2.1191406, 3.9277344, 0.75390625, -1.0888672, -1.1933594, -1.9287109, 1.640625, -1.3925781, -1.9121094, -1.1816406, -0.017456055, 0.95166016, 1.4160156, 0.24365234, 3.5371094, -0.26000977, 2.1914062, 1.3671875, 0.6225586, -1.7216797, -1.8544922, 0.34277344, 1.9667969, 1.1914062, 0.6694336, 0.9057617, -0.5073242, 1.1630859, 0.5439453, 1.5283203, -1.5986328, -0.91503906, 0.9165039, -0.12365723, 0.8701172, 0.8564453, -0.18139648, -0.82421875, -2.4902344, -1.2578125, 1.6298828, -0.4477539, 2.078125, -0.6088867, -1.0556641, -2.8632812, 0.890625, -0.24609375, 0.21325684, -0.9248047, 1.2958984, -1.2832031, -1.2861328, 0.5161133, 0.35668945, -0.46069336, -0.7597656, -0.99072266, 0.11175537, -0.5961914, -0.8520508, 0.4116211, 1.7529297, -2.1054688, -2.7832031, 0.14697266, 2.0605469, 2.5253906, 0.38232422, 0.02027893, 0.07757568, -0.14257812, -1.8056641, -3.7441406, 0.5571289, 1.7724609, -1.4912109, 1.3974609, 0.93066406, 2.5742188, -0.0892334, -0.8515625, 1.546875, 0.40161133, -3.6679688, 0.4873047, -3.1230469, -1.0830078, -2.6601562, -4.046875, 1.2636719, 0.16906738, 2.3242188, 1.9609375, 1.2998047, 1.4570312, 2.8613281, 1.2529297, -2.1230469, -1.9003906, -0.45361328, -0.28027344, 0.27563477, -0.32861328, 6.0117188, 0.95166016, -0.32836914, -0.15368652, -0.41455078, 0.6538086, 2.8007812, 1.3720703, 1.0351562, 0.53515625, -1.2070312, -0.27514648, -0.70214844, -0.0010156631, 0.38745117, -0.9682617, -0.20825195, -0.8261719, 1.4414062, -2.5058594, 0.20007324, -2.9902344, 2.875, -0.2019043, 0.29125977, -0.23950195, 1.0380859, 1.6064453, -0.27441406, -1.0478516, -0.7631836, -1.3554688, 1.6337891, 0.5366211, -1.9472656, -0.29418945, -3.2734375, -2.1738281, -0.74902344, -0.8017578, 1.4443359, 2.6992188, -2.1386719, -0.9326172, 0.6640625, -1.2216797, -2.3105469, -1.9462891, -2.40625, -0.796875, 0.47753906, 1.5087891, 0.58935547, -1.2373047, -0.9975586, -3.4355469, 3.2929688, 3.4316406, 0.94433594, 3.5625, 0.07867432, -0.55371094, -0.34301758, -0.46704102, -0.18457031, -1.8154297, 2.1835938, 0.11956787, 0.35668945, 1.7773438, -1.1064453, -1.0625, 0.47680664, 1.0048828, 0.9628906, -0.20385742, 1.2451172, -0.4465332, 1.0332031, 4.5429688, 0.27514648, 4.1367188, -0.80859375, 1.6376953, -0.36669922, -1.25, -0.15930176, 0.35253906, 0.20788574, 0.3293457, -0.953125, -0.28295898, 3.0761719, -1.8427734, 0.64453125, 1.0791016, -0.023223877, 1.0410156, 2.765625, 0.42358398, 0.87939453, -2.3183594, -2.0585938, 2.6816406, 2.0546875, 0.0087509155, 5.0078125, -0.19433594, -1.6992188, -0.6191406, 2.7832031, -1.90625, 1.8427734, -1.4951172, -1.6972656, -0.20471191, -0.30981445, -2.6855469, 0.43823242, 3.0390625, -0.35717773, 2.4726562, -1.6972656, -1.0039062, 2.6113281, -3.4785156, -0.5498047, 0.6040039, -0.87646484, 2.4765625, -0.9550781, -2.4453125, -1.9365234, 2.2128906, 1.9335938, -1.7988281, -1.5429688, -0.42895508, -3.109375, -2.5898438, -0.6230469, -2.2460938, -3.4824219, -0.49267578, 0.94384766, 0.10144043, -1.9082031, 0.5239258, 1.1386719, -1.2148438, 0.18127441, -0.5991211, 3.1914062, -1.5996094, -0.36767578, 0.24731445, 0.9995117, -0.90722656, 0.10522461, 0.29956055, -2.2441406, 1.4228516, 2.0371094, -0.32250977, -1.3984375, -0.09069824, -2.4921875, -3.5117188, -1.2851562, 1.0634766, 2.1621094, -1.3554688, 0.11730957, 0.36108398, -1.5449219, -1.7832031, 0.45288086, 0.13623047, 0.8745117, -0.52197266, 0.76416016, -0.9790039, -0.4794922, -1.1210938, 1.2949219, -0.04083252, 1.7587891, -1.9638672, -2.3164062, -1.4658203, -1.0654297, -1.7128906, -2.3964844, 1.4453125, 2.3886719, -2.9726562, 0.51904297, -0.050994873, -2.265625, 2.9785156, -0.6772461, 0.5073242, 0.36254883, 0.88671875, 1.0126953, -2.8730469, 1.6230469, 1.6669922, -0.13391113, 1.1542969, 0.93847656, -3.1210938, 0.67578125, -0.5996094, -2.7558594, -2.3261719, -1.3291016, -0.057281494, 0.2536621, 0.2442627, 0.04208374, 1.2666016, -2.7871094, -5.4765625, -0.80859375, -1.0126953, 0.12792969, -1.1865234, 0.68847656, 2.8613281, -0.43164062, 1.7226562, 0.16967773, 0.84765625, -3.8339844, -0.13781738, 1.5410156, 1.3183594, 0.72753906, -0.85595703, -0.5234375, -2.3574219, -0.28881836, 2.2246094, -0.7084961, -2.1308594, -0.18115234, -2.0527344, -1.4404297, 1.5273438, 3.5527344, 0.13049316, -1.6152344, 0.66064453, -0.4873047, 2.8183594, -1.90625, -1.2734375, 0.45703125, 2.9628906, -1.3720703, 4.0351562, -0.3395996, -1.9121094, -0.1105957, -1.1484375, -0.8256836, -0.17956543, -0.6455078, 2.1425781, -1.5986328, -0.17272949, 1.9902344, -3.9433594, -0.9711914, 1.3115234, 2.5898438, 0.2064209, -0.2956543, 4.9335938, 1.7851562, 0.49975586, 2.3886719, -1.1787109, 1.5986328, -0.5991211, -1.3525391, -1.3300781, 1.5029297, -2.0703125, 0.6040039, 1.0878906, 0.32763672, -3.3320312, 2.2363281, -0.14123535, 2.6953125, 0.96484375, 2.8203125, 2.7675781, 2.3964844, 1.4697266, 0.8779297, 2.5117188, 0.8745117, -1.8496094, -0.19348145, 2.4980469, 0.09576416, 0.5229492, -2.8320312, 1.3574219, -0.70214844, 0.41308594, -0.3503418, 1.8632812, -0.9794922, -0.30249023, 0.8496094, -0.20666504, 0.3737793, -3.8867188, -0.27270508, -0.55908203, 1.0302734, -2.6230469, 3.1816406, 0.6689453, -1.1552734, 1.2792969, -0.50097656, -0.72216797, 1.2314453, -1.9072266, 1.5595703, 0.87597656, -1.0507812, -1.03125, 1.7226562, -0.19995117, 0.9165039, 3.1054688, -1.0693359, -0.41015625, 1.0107422, 1.3476562, -0.09088135, -1.7529297, 0.041381836, 3.0117188, -1.5595703, -0.29785156, 0.2705078, -0.69628906, -3.4511719, 0.6635742, 1.9599609, -1.2714844, 2.1015625, -2.296875, -2.1328125, 2.0605469, 0.61328125, -0.001244545, 0.04058838, -0.10028076, 0.58154297, 0.96972656, 2.5175781, 2.2792969, 0.5288086, 1.7138672, -2.6074219, -2.140625, 0.12561035, -0.51123047, 0.97802734, 2.1386719, -0.5546875, -1.0771484, -0.37060547, 1.0107422, 2.6796875, -1.4404297, -1.953125, -2.0859375, 1.1259766, -0.68066406, 0.89404297, -0.6977539, -4.2695312, -1.0068359, -1.1640625, -2.4023438, -1.7480469, -0.3256836, 0.55029297, 1.6953125, -2.0957031, 0.6928711, 0.3684082, 1.3271484, 2.8476562, 0.99853516, 2.4960938, 1.4951172, -2.1210938, 2.2734375, 1.9599609, -0.92089844, 0.87597656, 0.21105957, 1.4541016, -0.8339844, 0.49047852, -0.43066406, 0.8076172, -0.7368164, 0.47729492, 0.086242676, 1.8486328, 0.515625, 0.6977539, 0.7246094, -0.55566406, 0.91845703, -1.7285156, -3.6992188, 0.23950195, 1.8017578, 0.21984863, 0.035614014, -1.2626953, -0.7285156, -1.1298828, 1.1738281, 0.87158203, 2.0703125, 2.5898438, 1.9785156, 0.21850586, -0.76660156, -1.6376953, -1.6337891, -0.18530273, -1.9804688, -0.25048828, 0.23706055, 1.5732422, -1.2451172, 0.7963867, 0.70458984, -0.9243164, -0.9248047, -2, -0.35131836, -1.8398438, 1.3212891, -0.85498047, 0.9013672, 0.43530273, 0.7817383, 1.0986328, 1.9150391, 4.0976562, 2.9121094, 1.3447266, -2.8632812, -2.7050781, 2.5917969, 1.1386719, 0.56396484, 2.1152344, 0.09051514, -0.4909668, -1.1669922, -1.5703125, -1.1757812]}, "B00B58A0QU": {"id": "B00B58A0QU", "original": "Brand: Cuisinart\nName: Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14\", Red, 14.5\" x 14.5\" x 15\"\nDescription: \nFeatures: 150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\nDUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control.\nTHREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport.\nCOMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.\n", "embedding": [-2.8789062, 1.0507812, 3.2089844, 0.38867188, -1.2636719, -1.546875, 2.4140625, -2.6074219, -1.1113281, 2.4980469, 1.5351562, -1.2451172, 0.4025879, -2.1289062, 1.4980469, -1.1601562, 2.3359375, 0.34350586, 0.94873047, 0.38598633, 1.1591797, 1.1230469, 0.5732422, -0.44799805, 1.1279297, 0.79541016, 3.7089844, -2.7539062, 0.23278809, -2.4355469, 1.4951172, 0.4140625, 1.1181641, 1.3857422, -1.515625, -0.34985352, -2.7128906, 1.9384766, -0.5004883, 0.33764648, 0.09655762, -0.71435547, 2.7050781, -0.34838867, -3.5839844, 0.003522873, 1.0029297, 2.2285156, 1.3076172, -1.7724609, 2.5605469, 1.1542969, 1.5136719, 1.8623047, -1.6269531, 3.3046875, -1.4804688, -1.9472656, 1.5341797, -1.4228516, 2.2070312, -0.5415039, -0.78564453, 0.81933594, 0.04095459, -0.9980469, -0.28198242, 1.2509766, 0.6801758, 0.7363281, 0.48632812, -0.91015625, -1.3828125, -0.7397461, -0.86376953, -0.17297363, -2.3769531, 2.6875, -0.23950195, 0.22131348, -2.1875, 3.1425781, -0.12207031, -2.5957031, -0.95947266, -0.7915039, -0.7216797, -0.94433594, 0.7578125, 0.28295898, 0.014389038, 1.5869141, -2.765625, -3.0820312, 0.7944336, -2.3632812, 0.46704102, 1.5576172, -0.984375, 1.6669922, -0.49047852, -1.0136719, -1.4404297, -0.90771484, -3.0507812, -0.4140625, 2.109375, 0.18408203, -1.3554688, 2.3769531, -1.9511719, -0.59814453, -0.38330078, 1.1953125, 1.1982422, -0.37451172, -0.64990234, 1.46875, 1.1982422, 0.13391113, 4.1132812, 1.5146484, -0.049865723, -2.5449219, -0.46557617, 0.6176758, -0.7636719, 1.6171875, 4.5820312, -0.6611328, -0.59277344, 0.53271484, 1.6787109, 1.4931641, -2.9902344, -2.5058594, -2.6640625, -1.3261719, -2.3125, 2.28125, -3.9355469, 1.2822266, 1.3847656, -1.21875, -2.6035156, -2.0488281, -0.5361328, 2.1601562, -1.1347656, -1.9121094, 0.82373047, -2.7636719, -1.0625, -0.42626953, 2.0039062, -1.40625, -1.6923828, -2.8789062, 2.8027344, 0.38012695, 1.5439453, -2.8261719, -0.09686279, 1.0205078, 1.0585938, -0.7558594, -0.2298584, 1.9541016, -1.6171875, 2.1035156, 0.6430664, -2.5410156, 0.49609375, 0.45581055, 1.9277344, -0.52490234, -1.7304688, 2.1992188, 0.8364258, -0.88427734, -0.10223389, -2.7480469, 2.0351562, 1.4433594, 0.02909851, -1.2753906, -0.56689453, 0.69189453, -0.66064453, -1.4902344, 1.59375, 0.30444336, -0.5932617, -0.7192383, -0.24682617, 0.06958008, 0.75, -1.3144531, -0.62158203, 0.45410156, -1.6552734, 0.828125, -1.1884766, -0.077941895, -2.6132812, -1.7871094, -1.2236328, -0.19189453, 1.9609375, 2.0976562, 1.0654297, -1.1855469, 2.1210938, -1.2949219, -0.33154297, -1.8105469, 0.7504883, -0.609375, 0.8618164, 2.0136719, -0.60302734, 0.13427734, -0.52978516, 4.2460938, -1.5800781, 1.75, 0.059906006, 0.6376953, -0.36328125, -1.1660156, 2.1757812, 1.3662109, -0.2800293, 0.17565918, 0.29077148, 2.7089844, -0.13745117, -0.30493164, -1.3076172, 0.22924805, -1.0820312, -1.1162109, -0.63378906, -0.12817383, 0.24291992, 0.28320312, -1.7978516, 4.34375, 1.8261719, -0.83447266, -1.8115234, 0.5917969, -0.7138672, 2.5078125, 0.47387695, 1.1777344, -0.9316406, 1.1982422, -1.3701172, -3.1367188, 0.3786621, 1.0634766, 0.16369629, 0.72314453, -0.118652344, -0.7236328, 2.5195312, 1.3408203, -1.2929688, -0.18701172, 1.6044922, 0.87890625, 0.7734375, 0.5439453, 2.7773438, -0.3713379, 1.2841797, 0.45581055, 0.5004883, -0.3942871, 1.3701172, 1.5380859, 3.1894531, -2.5136719, -1.2578125, -0.88720703, -1.1357422, -0.8486328, 0.42456055, 0.6230469, 2.8691406, -0.14111328, -2.9472656, 4.546875, -1.5087891, -0.20654297, 1.0107422, -0.859375, 0.38891602, 0.47265625, 1.5537109, 1.1845703, -0.22814941, 1.2998047, -1.8330078, -1.28125, 1.2705078, -3.3769531, -0.9560547, -0.012138367, -1.0146484, 0.028900146, -2.0957031, 1.3271484, -0.9946289, -0.9472656, 0.3017578, -2.2246094, 1.5097656, 1.4667969, 2.2324219, 0.78466797, -1.4072266, -2.0703125, -1.4736328, 2.1074219, -1.8710938, 0.23693848, 0.65722656, -1.1914062, -0.057556152, 0.6088867, 1.796875, -1.9775391, -3.1113281, -3.1074219, 0.33447266, -1.6982422, 0.6196289, -0.83740234, -0.2578125, 1.0869141, -1.6699219, -0.9067383, -1.4960938, -3.1835938, -0.0680542, 0.5083008, -1.4189453, -0.27197266, -0.3461914, -0.033843994, 0.46020508, -4.5078125, 1.0244141, -0.0023479462, 1.46875, -0.013320923, -2.2753906, 1.21875, -0.016647339, 0.88183594, -0.58740234, 0.0579834, 0.17614746, -1.671875, -0.5473633, -2.1835938, 1.8857422, -2.9394531, -1.2597656, -0.76464844, 1.5039062, -4.328125, -1.2382812, 0.086364746, -1.59375, 3.1503906, -0.97509766, 1.7001953, 0.48706055, 1.0410156, 1.1669922, -0.9057617, -2.5429688, -2.3730469, 0.39770508, -0.2524414, -3.5703125, -3.078125, -1.3447266, -0.9082031, -0.33642578, -1.1748047, 0.64404297, -1.21875, 1.1494141, -3.0488281, -1.0908203, -0.94140625, 2.203125, -0.91015625, -0.8222656, -2.2109375, -0.9711914, -1.1806641, -1.0517578, 0.15783691, 0.93066406, -0.2692871, 1.375, 0.1875, -0.25195312, 3.2207031, -0.8769531, -3.5195312, 2.1621094, 0.6308594, -1.3164062, 0.56933594, -0.55371094, -2.0839844, -4.5273438, -0.5019531, 1.7910156, 1.2382812, 1.9912109, 0.9941406, 1.0068359, 0.50146484, 0.41674805, 0.08581543, 0.8251953, 0.7426758, 3.0234375, -2.3632812, -2.9023438, 0.640625, 1.4121094, -1.4931641, -0.9946289, 1.6767578, -0.2454834, 1.1953125, 1.765625, 3.0605469, 0.023086548, -0.2932129, 2.140625, 1.5791016, 1.9638672, -0.7910156, -0.081970215, 0.44384766, -1.1054688, 2.1425781, 0.8623047, 0.2631836, 1.9365234, 2.3476562, -0.012924194, -2.6171875, 0.5161133, 0.8808594, 0.94189453, 0.0030117035, 2.3496094, -1.7539062, -1.1201172, 0.81103516, -1.8964844, 0.8227539, -0.6430664, -1.0986328, 2.0488281, 0.55908203, 0.19067383, -0.6430664, 0.69189453, -0.107788086, -1.3798828, -0.7138672, -0.10040283, 0.5336914, 0.9609375, -3.8632812, -1.4707031, -1.3740234, 1.6640625, -0.9399414, -1.2128906, 0.19763184, 2.8574219, 0.75146484, -2.5410156, 0.55029297, 2.4863281, -1.1660156, 1.1269531, 0.8769531, -2.6757812, 3.0273438, -1.3603516, 0.7270508, 0.90234375, 0.12634277, -0.91064453, -1.0634766, -1.0390625, 0.3095703, 1.6396484, 1.4824219, 0.15393066, -1.4042969, -0.20336914, -1.9199219, -0.52978516, -0.040161133, -1.2568359, -1.2226562, 1.0751953, 0.96777344, 1.3779297, -2.7128906, 2.7324219, 0.64404297, -0.55126953, 2.0410156, -0.8364258, -0.4152832, -1.9003906, -4.1523438, 0.8491211, -1.1337891, 0.49731445, 2.6894531, 0.49438477, -0.23486328, 2.8789062, -0.45141602, -1.9550781, -1.6630859, -3.1992188, -0.5961914, -1.9951172, -0.058898926, 1.7119141, 0.10736084, -1.3876953, -2.9023438, -0.63623047, -0.5776367, 2.7519531, 1.6328125, -2.1582031, 2.2578125, -2.4160156, 1.0322266, -0.80126953, -0.3154297, 1.9267578, -0.49731445, -0.22106934, -0.8847656, -0.0024795532, 1.0292969, -0.7915039, 1.7753906, 1.3173828, 1.1621094, -0.7661133, 0.3400879, 0.79345703, 2.3242188, -0.42138672, -2.4277344, -1.2421875, 1.125, -0.82177734, -0.41015625, -0.7939453, -0.26733398, -2.1289062, 0.7651367, -0.69873047, 2.3144531, 1.6611328, -1.1220703, -1.0585938, -1.1425781, -0.40454102, -1.4394531, -1.0976562, -0.9526367, -0.31347656, -0.049041748, -0.41088867, -1.5869141, 1.1513672, -0.051361084, -0.8129883, -2.7285156, 3.2128906, 0.9140625, 3.0039062, 3.4589844, -1.7226562, -0.053771973, 1.4042969, -1.828125, -0.49682617, -0.09454346, -0.8989258, 2.2109375, 0.86572266, 2.7128906, -1.0009766, -0.6557617, -0.3388672, -1.3496094, -0.92089844, -2.7148438, 2.1113281, -1.1630859, -1.1513672, 1.0664062, -0.8930664, 2.6777344, -2.2988281, -1.5830078, -2.1972656, -0.07733154, -1.1982422, 1.1425781, -0.030014038, 0.69873047, 1.3369141, -0.6743164, 0.90283203, -2.3046875, 0.12054443, -0.24353027, 1.5615234, -0.77441406, -1.3076172, -0.93359375, -1.6064453, -2.359375, -1.1787109, 0.83496094, 3.9589844, -0.37524414, 3.2871094, 0.84472656, -1.5986328, 1.875, 0.70947266, -1.8271484, -1.1113281, -0.37231445, -0.8671875, 1.5195312, -0.057769775, -3.9414062, -0.6640625, 1.5205078, -0.40112305, 0.96484375, -0.59814453, -0.8442383, 0.67529297, -2.3027344, 0.019607544, -0.2565918, -2.5175781, -0.6303711, -1.3486328, 0.23034668, -0.94189453, 0.3100586, 4.140625, 1.5664062, -0.8701172, 2.3242188, -0.4260254, -0.0993042, -1.2041016, -0.99609375, -2.6289062, -1.6621094, 1.5439453, 1.2929688, 2.2539062, -0.609375, 2.6191406, -1.5712891, 0.49121094, -3.1328125, 2.7890625, -1.8183594, 0.5444336, 1.9609375, -1.5039062, 0.6479492, -3.7089844, 1.4541016, 1.8613281, 1.5654297, 2.0546875, -0.6386719, -1.7636719, 0.21765137, -1.90625, -3.1464844, -0.8623047, -0.6713867, 1.1669922, -0.48657227, 1.2128906, -1.1806641, -0.24060059, 1.1123047, 0.4724121, -0.30395508, -1.4042969, -1.1630859, -0.5283203, -0.14538574, -0.41723633, -1.4794922, 2.453125, 1.5244141, 1.9335938, -1.0585938, -3.109375, -0.33325195, 1.484375, -3.4082031, -0.3996582, 2.1054688, 0.41870117, 1.1640625, 1.0585938, 1.65625, -1.3925781, 2.046875, -0.6582031, -0.86376953, 0.7939453, 0.019714355, 2.6074219, -2.3652344, -1.8066406, 1.3154297, -3.0996094, 2.3769531, 0.6801758, -0.64453125, 1.2685547, 1.8164062, -0.42504883, -0.13647461, 1.8789062, 1.7197266, 1.0097656, 1.2041016, -0.75, 0.6777344, -2.3339844, -1.6816406, -0.54296875, -1.5478516, -1.5253906, -2.5097656, 2.0761719, 1.7744141, -0.63671875, -0.22265625, 0.96435547, 0.7597656, -1.1777344, 1.6582031, -0.5546875, 2.6894531, 4.0742188, -0.9301758, -0.87158203, -1.7324219, 0.82714844, -0.19396973, 0.7241211, -2.0625, 0.50683594, -2.609375, -0.11828613, 0.49951172, 2.7734375, 1.1376953, -0.34155273, -0.94677734, 2.1542969, 3.3867188, -0.98339844, 0.47729492, 0.8359375, 2.4960938, -0.78759766, 3.3007812, 0.10345459, -1.7734375, 1.5673828, -1.7607422, 1.1054688, -1.3085938, -0.5053711, 1.5527344, -1.7373047, -0.5161133, -2.3808594, -1.0205078, -2.6816406, 3.4140625, -0.0064201355, -2.4589844, 0.47338867, 3.8847656, -1.125, 2.8808594, 2.4179688, -0.7783203, -0.2434082, 0.84033203, -1.9755859, 0.45898438, 1.2792969, -2.1738281, 0.82958984, -0.20373535, -2.0195312, -0.23339844, 2.96875, 0.99316406, 2.1542969, 2.6210938, 1.7539062, 0.5029297, 2.046875, 4.6328125, 0.34814453, 2.6132812, 1.9296875, -1.3457031, 0.09851074, 3.5078125, 2.4492188, -0.75, -1.3789062, 2.03125, 0.8046875, 0.0077781677, -1.390625, 1.8603516, 1.8730469, -4.2617188, 1.1435547, 0.8354492, 1.5986328, -2.6210938, -0.06878662, -0.053253174, -0.2548828, -1.1523438, -0.5234375, 2.6953125, 0.10290527, -0.3112793, 0.32861328, 2.0449219, -0.66308594, -1.9541016, 0.043792725, 0.89453125, -1.7001953, -1.2392578, 0.38134766, 1.9794922, 1.1005859, 0.28955078, 2.7421875, 2.0058594, 1.3320312, 2.5820312, 0.052215576, 1.9023438, 1.0693359, 2.4394531, -1.3515625, -1.3291016, -0.7597656, -1.9755859, -1.4794922, -2.0273438, -0.16821289, 0.7861328, 2.8632812, 1.0654297, -1.2285156, 2.2363281, 2.1464844, 2.265625, -0.31762695, 1.7607422, -1.2792969, -4.6484375, -2.859375, -2.1113281, 0.6699219, 2.8652344, 1.5996094, -0.86865234, 3.3867188, 1.0019531, 2.9316406, 2.2851562, 1.3574219, 0.32641602, 0.6538086, -1.4267578, 0.5913086, -2.421875, 0.46948242, 0.037353516, 1.6064453, 0.54785156, -0.5317383, 1.8574219, -1.4414062, 0.014945984, -0.3486328, 1.1630859, -0.51123047, -1.6933594, -1.3378906, 0.25390625, 0.74072266, -0.7866211, -0.84716797, 2.0175781, 1.6728516, 0.8774414, 1.796875, -1.0380859, -0.083984375, 2.4453125, -0.052642822, 0.17285156, -1.0146484, 0.5371094, 1.1367188, -0.34423828, -1.1972656, 0.47558594, 0.83984375, 0.2866211, -0.35058594, 0.011550903, 1.1660156, -0.01146698, -0.04284668, 0.10266113, -1.5683594, -1.4863281, 0.24389648, -0.5883789, -0.55908203, 1.4892578, -0.3244629, -1.0136719, -1.5009766, 0.12915039, -0.027908325, 0.05960083, -1.1923828, 0.8569336, 3.8691406, 2.2890625, 0.5522461, -1.8212891, -3.1816406, 0.33325195, 0.02255249, 3.6464844, 0.5644531, -1.2607422, 0.640625, -1.8085938, 1.1923828, -0.63671875, -0.88427734, -1.1513672, -0.44091797, 0.5493164, -2.3847656, 0.71191406, 1.9746094, 0.087890625, 0.16088867, 3.6328125, 1.1269531, 0.083984375, 0.7788086, 0.7055664, 0.9980469, -2.4140625, 1.2832031, -0.02810669, 1.109375, 0.640625, 0.40698242, 2.0136719, -0.3371582, -0.12646484, -2.0332031, -2.4804688]}, "B07KBYD4WZ": {"id": "B07KBYD4WZ", "original": "Brand: Homyl\nName: Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type\nDescription:

Description:

- Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
- Allows you to quickly and easily check the amount of propane in the tank
- Monitors fuel level without removing the tank.Easy to install
- Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
- Heavy duty 100% solid brass construction

Specification:

- Capacity: 80000-150000BTU/hour
- Operating temperature: -40\u00b0C - + 55\u00b0C
- Inlet: 25-250PSIG
- Outlet: 2.5PSIG-20PSIG

- Material: copper

- Size: approx. 100*60mm/3.94*2.36inch

Package Includes:

1 Piece Propane Tank Adapter


Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

\nFeatures: Allows you to quickly and easily check the amount of propane in the tank\nPropane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\nMonitors fuel level without removing the tank.Easy to install\nHeavy duty 100% solid brass construction\n", "embedding": [0.07110596, 0.82128906, 2.3945312, 2.8964844, -1.3183594, -1.5273438, 1.4003906, -1.1689453, 0.5390625, 2.0292969, 1.3164062, -0.4699707, 0.87060547, -3.5957031, 3.2402344, -0.9223633, 2.5664062, -0.73779297, 0.8935547, 1.9853516, 2.3730469, 0.7675781, 1.9140625, 0.09954834, 0.8100586, -0.7426758, 3.0683594, -1.1162109, -1.2626953, -0.34448242, 0.28881836, -0.32641602, -1.2646484, 1.2197266, -1.7783203, -1.8935547, -0.115356445, 0.1907959, -3.1542969, 0.14794922, -2.3066406, 2.7714844, 1.7236328, 1.1328125, -2.5039062, -2.375, 1.6923828, 0.7470703, 1.4375, -0.6591797, -0.28710938, 1.9951172, -1.1230469, 1.0712891, -1.3056641, 1.7373047, 0.76904297, -1.7666016, 1.1630859, 1.140625, 0.9082031, -0.91503906, -1.8447266, 2.1894531, 0.41455078, 1.4990234, -0.07684326, -1.3369141, -0.15612793, 1.9111328, 1.0966797, 1.2509766, 1.0322266, -1.9785156, -2.96875, 0.9042969, -3.2988281, -0.19213867, 1.4453125, -1.4335938, -1.3925781, 1.5878906, -0.13879395, -2.0683594, -0.7294922, 0.3671875, -0.8276367, 1.4785156, 0.7006836, 1.8935547, -1.8330078, 1.0751953, -2.6601562, -3.5664062, -0.36083984, 0.36083984, -0.13891602, 2.0175781, 4.3046875, 1.0478516, -1.3574219, 0.06439209, 0.12683105, 0.6591797, -2.0449219, -1.3339844, -0.82714844, 0.5751953, -2.8378906, 1.4082031, 0.85302734, 0.39648438, 2.6992188, -1.6298828, 0.063964844, -2.96875, 0.6254883, -1.8935547, 1.8417969, 1.2333984, 4.0273438, -0.19763184, 1.4453125, -0.2553711, 1.5585938, 0.6772461, -1.1679688, -0.43847656, 2.3964844, -0.30322266, 1.3242188, 0.18383789, 2.1601562, -1.1132812, 1.0761719, -1.4794922, -1.4882812, -1.2382812, -1.0224609, -1.6708984, -2.9160156, 1.1640625, 1.7490234, 1.2783203, -3.7519531, 0.14697266, -3.03125, 1.3183594, 1.7060547, -1.0947266, 0.09698486, -3.859375, 0.44458008, -1.6132812, 1.9453125, 2.0722656, 0.8823242, -1.1513672, 2.0488281, 1.8691406, 1.1064453, -0.79052734, -2.2832031, 1.8037109, -0.67578125, -1.8808594, 0.4814453, -1.1025391, -0.49780273, 1.2880859, -0.26513672, -1.671875, 1.1855469, 1.1738281, 0.2578125, -1.6640625, 0.81396484, 1.8085938, 1.0009766, 0.43066406, -3.5546875, -0.85791016, -0.07324219, -0.49731445, 1.9892578, 0.026809692, -2.734375, -2.9277344, 0.39086914, -1.8652344, -1.9638672, 1.1064453, 1.2597656, -0.37890625, 0.40942383, -2.3613281, -2.6738281, -1.6074219, -0.9926758, 1.7958984, -0.019165039, -0.7260742, 1.5478516, -0.48632812, -1.6308594, -3.0390625, 1.5253906, -2.3066406, -1.1230469, 2.65625, -0.39819336, -0.67871094, 1.3144531, -0.80908203, -0.86279297, -0.7260742, 2.8730469, 1.9521484, 0.9848633, 0.43310547, -0.4946289, 0.75, 1.3828125, 0.9511719, 3.1816406, -0.7504883, -0.9199219, 1.2207031, -1.8486328, -0.60839844, 2.8164062, 1.7734375, 0.24145508, 0.45751953, -0.40966797, 1.7939453, -0.7114258, -0.84375, 1.1152344, 0.022064209, 0.64404297, -2.5273438, -2.5957031, -3, -1.1376953, 1.5146484, -1.4375, 0.15527344, 2.8574219, -1.4091797, 0.2685547, -0.021987915, -1.3027344, -2.6582031, -2.9960938, -0.0018491745, 0.28344727, 1.0117188, 0.9169922, -2.21875, 2.8847656, -0.6928711, 1.3564453, 0.036132812, 1.578125, 1.0634766, 1.5986328, -1.8056641, -1.5009766, 0.85302734, 0.09820557, 2.046875, 2.8554688, -0.82714844, 0.17541504, 2.1269531, -2.0761719, 2.3164062, 0.6489258, -0.10998535, 1.9335938, -1.4394531, 1.5400391, -4.2265625, 0.89160156, 1.9375, 1.7148438, -1.0009766, -2.25, -0.41479492, 4.1640625, -1.6435547, -2.5117188, 1.8085938, 3.0273438, 0.86279297, 1.6064453, -1.1308594, -2.1113281, -0.7504883, -0.84716797, 0.58935547, -1.8867188, 0.71875, 3.5390625, 0.6621094, -1.3457031, 0.44970703, 1.6943359, 2.0390625, -0.43823242, 0.09289551, -2.7519531, 1.7666016, -0.3774414, -3.0292969, 1.9814453, -2.5390625, -1.9179688, 1.1035156, -0.25561523, -0.44848633, 0.4506836, -2.4980469, 0.45092773, 1.8251953, -2.171875, 1.2734375, 0.56396484, 1.1650391, 2.9199219, -1.7373047, 1.7109375, -1.8105469, -0.3034668, 1.3876953, -1.1855469, -3.2363281, 0.096069336, -1.3916016, -0.9736328, -1.1298828, 0.83691406, 3.6875, 0.73876953, -0.18029785, -1.0292969, 0.2697754, -0.5385742, -1.5791016, -1.2324219, 4.015625, -1.6152344, -3.0703125, 0.40942383, 0.0440979, 1.078125, 2.234375, -1.0283203, -0.69140625, 1.125, 0.7519531, -1.1259766, 0.15783691, -0.02859497, -0.5332031, 1.7783203, -3.6367188, -0.5493164, -1.6865234, 2.4824219, -1.4619141, -0.61279297, -1.9814453, 0.06640625, 0.7939453, -1.9111328, 2.1972656, 0.52734375, 1.484375, -0.4255371, -0.011451721, 0.9980469, -2.2675781, -2.4765625, -0.68652344, -0.7182617, -0.28198242, 1.1669922, -3.4882812, -0.88671875, -0.31298828, 0.4128418, -1.0625, -1.6015625, -1.4326172, 0.30371094, 2.9960938, 0.0769043, -0.22167969, 2.1035156, -0.5751953, -0.17358398, 0.5625, 0.8911133, -1.0556641, -0.28125, -1.6787109, -0.26904297, 0.9477539, -2.1171875, 0.61816406, 2.1582031, 0.6279297, -0.53027344, -4.046875, 0.1418457, 1.9384766, -0.2758789, 0.43896484, -0.2310791, 0.10961914, -1.2958984, -0.76464844, 3.4082031, 1.6962891, 3.0039062, 0.8564453, 1.7460938, 1.1640625, -0.57714844, -1.2060547, -0.79589844, -0.9995117, 3.1484375, -2.5253906, -1.0673828, 0.31982422, 1.2539062, -2.9316406, 0.5473633, 0.29467773, 0.43701172, 4.28125, 0.37890625, 0.2607422, 0.31713867, 1.7333984, 1.7353516, 0.35717773, 0.27124023, 0.5986328, 0.2364502, 0.38793945, -0.33984375, -0.29907227, 0.73291016, 0.9707031, 0.7216797, 0.546875, -0.13647461, -1.5097656, 0.3569336, -0.20996094, 0.57421875, 1.1865234, 0.92529297, -0.13745117, 1.1972656, -0.1538086, 0.86816406, 1.0527344, -2.6660156, -0.9863281, 1.0263672, 1.6396484, -1.5859375, 1.2382812, -0.34765625, -1.9990234, 1.1337891, -0.8691406, 3.3730469, 0.9794922, 0.86621094, 0.08270264, 0.39331055, -0.5917969, 1.5019531, -1.7177734, 1.8652344, -0.7192383, -0.5, -2.2363281, -1.6113281, -2.3300781, -2.15625, -0.9926758, 3.7851562, 0.05014038, -2.6367188, -0.6489258, -1.8056641, 1.8447266, 0.70703125, -1.0214844, -0.6113281, -2.0019531, -0.9716797, 0.9848633, -0.21911621, 2.6796875, 1.125, -1.2441406, -0.5986328, -1.0839844, 1.3525391, 0.43969727, 0.1694336, -1.0185547, -1.8310547, -1.3339844, 2.6269531, -0.16174316, 2.7539062, 1.0214844, -1.1572266, 1.40625, -2.078125, -1.3398438, -1.7509766, -5.8632812, 0.7158203, -2.9960938, 1.4287109, 2.109375, 1.3105469, -1.0888672, 0.20166016, 2.0761719, -2.625, -0.44848633, -1.484375, 1.2871094, -2.8144531, -0.27661133, 3.125, 2.4648438, -0.55322266, -2.484375, -0.55810547, -2.9296875, -1.1445312, -1.3955078, -0.10998535, 0.26757812, -0.7470703, 0.61376953, -0.42407227, -0.91552734, 1.4111328, 0.7685547, -0.9819336, -1.3720703, 2.6191406, 0.55126953, 1.0996094, -0.25756836, 2.4550781, 3.1894531, -0.9091797, -1.0771484, 0.60595703, 3.65625, -0.1541748, -2.3125, -1.5527344, -1.0947266, 1.3691406, -0.81396484, -1.1259766, -0.36621094, -1.0175781, 2.3164062, 0.24353027, 3.0898438, 1.8388672, -0.23791504, -1.7539062, 1.6669922, 1.5673828, -3.2402344, -1.2841797, -0.04095459, -0.9589844, 0.49267578, -0.82714844, -2.6191406, -0.29125977, -1.4726562, 0.057037354, -3.15625, 1.0566406, -0.49902344, 1.5517578, -1.3603516, -2.4960938, 0.31689453, -0.32958984, -0.7236328, 0.48583984, -0.3544922, -1.0742188, -2.6523438, 1.8486328, 1.1308594, 0.921875, -0.06298828, 0.13696289, 0.65966797, -0.26513672, 0.12359619, 1.6962891, -1.8251953, -1.171875, 0.25024414, -1.5927734, 3.8457031, -1.8300781, 1.6347656, 0.049743652, -1.1982422, -3.0800781, 1.5214844, 1.4335938, 1.5400391, -0.040649414, 0.32299805, 1.8007812, 3.0117188, 1.1376953, 0.42114258, 0.14135742, -2.8730469, 0.37670898, 0.052001953, 1.9697266, -1.2314453, 1.5400391, 1.6708984, 1.6806641, 1.6796875, 0.5019531, 1.5683594, -1.0185547, 1.1914062, 0.40283203, -0.09899902, -1.7050781, 0.23718262, -0.99902344, 3.6601562, -1.5634766, -2.5078125, -1.4785156, 2.2089844, 1.1074219, 1.109375, 2.2597656, 0.6777344, -1.1328125, -3.1054688, -1.6308594, -0.75097656, -0.61572266, 0.94628906, -1.3466797, 1.2744141, 0.030700684, 2.0175781, 2.1855469, 1.0517578, -0.11859131, -1.7333984, -0.4111328, -2.9453125, -0.85302734, -1.9160156, -1.9111328, -0.81884766, -0.071899414, 2.5253906, 0.07421875, 0.20568848, 1.9013672, -1.3603516, -1.7109375, -0.22143555, 0.1928711, -1.0556641, -0.71875, 3.1582031, 0.9604492, -2.1015625, -0.4501953, -0.75341797, -0.1262207, -0.14697266, 0.9921875, 0.3503418, -1.3623047, -1.3300781, -3.0644531, -3.9296875, -0.14978027, 1.7050781, 0.7470703, 2.0390625, -2.1621094, -0.95166016, 0.5473633, -1.0527344, 0.796875, -2.1113281, 1.6513672, -1.6357422, 0.68652344, 1.7597656, 1.2490234, -1.4394531, 0.86376953, -0.6435547, 0.29296875, 0.32958984, -2.578125, -1.6650391, -0.8540039, -1.7783203, -1.0263672, -0.4716797, -0.44213867, -0.4909668, 0.43139648, 2.6679688, -2.5800781, 2.9921875, -1.7314453, 0.5683594, 1.3398438, -1.1113281, 0.7919922, 1.03125, 0.64697266, 1.1972656, 2.9707031, 3.7910156, -1.0869141, -0.74316406, 0.5288086, -1.0673828, 0.12536621, 0.12286377, 0.34838867, -0.010467529, 1.921875, 1.7421875, -1.4658203, -1.9394531, -1.9111328, -1.3867188, 0.39868164, -1.0908203, -0.35205078, 0.4880371, 2.1445312, 0.6035156, 0.51171875, -0.45141602, -0.7260742, -1.1230469, -0.84716797, 1.3554688, -1.9160156, 1.2558594, 1.0341797, -2.2050781, -3.5839844, 0.25708008, 2.9414062, 1.6289062, -0.8066406, 1.1972656, 0.30004883, 0.3161621, 0.16113281, 0.22705078, 2.8144531, -1.2675781, 1.8652344, -0.27612305, -0.62060547, 2.6679688, -2.0703125, -0.2705078, 1.1455078, -0.80371094, 0.35205078, 0.48413086, 1.7890625, -2.7714844, -1.5087891, -1.8164062, -0.21655273, -2.4707031, 1.4335938, -0.122680664, -2.6601562, 0.61035156, 0.07348633, -3.4335938, -0.9716797, 2.2382812, -1.9541016, 0.6821289, 1.7578125, 1.6425781, -1.125, -0.54345703, 1.9316406, -0.44677734, 0.87646484, -1.3808594, -1.7480469, 0.8642578, 2.0292969, -1.9892578, 0.6201172, 2.2597656, 2.5742188, 0.66503906, -0.5444336, 0.9121094, 2.9726562, -0.12866211, 4.5117188, 3.875, 0.2133789, 2.7734375, 1.7177734, 1.8125, 2.1464844, -1.6601562, 1.8779297, 0.10882568, -0.12976074, 1.6171875, -1.421875, 0.7651367, -0.51904297, -0.25683594, -0.27172852, 0.79589844, 2.3984375, -2.9589844, -0.01071167, -1.1142578, -0.3708496, -3.34375, -0.054595947, -1.6220703, 0.13793945, -0.30639648, -0.19995117, 0.14538574, 2.6289062, -1.0458984, 1.9013672, 1.1835938, 3.0410156, -0.48828125, 1.2304688, -2.265625, -1.5683594, 0.8154297, 0.9326172, 1.3525391, 0.5625, 2.3320312, 0.8461914, -0.9941406, 1.9423828, 0.7763672, -0.9589844, 1.2890625, -0.81884766, 1.1845703, 4.6367188, -0.8203125, 2.3984375, -0.4050293, -1.9179688, -3.7460938, 0.7182617, 0.3154297, -1.0292969, 0.3190918, -5.4453125, 0.7451172, -1.7382812, 1.53125, -2.9082031, -0.2919922, 1.1298828, -3.5644531, 0.86035156, 0.47583008, -2.7949219, 1.7646484, 0.8701172, -2.9882812, -0.87841797, 1.1123047, 0.032165527, -0.0028152466, 0.45532227, 1.0361328, 0.8354492, -1.4208984, 4.0664062, -1.8417969, -0.030670166, -0.8144531, 2.0527344, 1.8027344, 0.24182129, -0.765625, -0.8701172, 1.3974609, 0.61816406, -0.24951172, 0.38354492, -1.46875, -0.28979492, -0.6381836, -0.20141602, -0.7529297, 0.5078125, 2.2167969, 1.21875, -2.6503906, -0.2631836, 0.31323242, -1.0751953, 1.6835938, 0.9243164, -1.9902344, -0.9423828, -0.7861328, 1.2177734, -3.0234375, 1.2666016, -0.3347168, 0.65722656, -0.113342285, -1.3574219, -0.07232666, -0.32739258, -0.7167969, -1.5712891, 0.41601562, -0.32739258, -1.1318359, -0.6279297, -2.1367188, 0.49389648, 1.9326172, 0.64208984, 0.39135742, -1.2724609, -2.1367188, 0.79052734, -1.3964844, -0.6669922, 0.32055664, 2.4921875, 0.6513672, 1.3330078, -0.62890625, -1.2988281, -0.6982422, -2.8828125, 0.9741211, 0.5996094, -2.0429688, 0.99560547, 1.8554688, 2.4453125, -0.3713379, -3.1445312, 0.12017822, 0.35717773, 1.6181641, -2.6015625, -0.11627197, -1.3818359, 1.1835938, 1.2041016, 3.6972656, 2.0957031, 0.02708435, -1.0917969, 2.453125, 0.051513672, -1.8935547, -0.6254883, 1.2158203, -1.1787109, 0.7998047, 2.1992188, 3.6894531, -0.1541748, -1.0087891, -2.9394531, 1.2568359]}, "B0872C7BXM": {"id": "B0872C7BXM", "original": "Brand: Senvate\nName: Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches\nDescription: Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

Features:
Material: Heavy Duty 600D Oxford fabric and PVC cover.
Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
Durable, scratch resistant polyester with UV protection all year round.
This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
Keeps dust and dirt from the tank's exterior, cover up ugly propane tank eye sore.
Easy to Clean: Low Circle Machine Wash & Handwash.

100% Satisfaction Guaranteed:
30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
\nFeatures: PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nPROPANE TANK COVER DIMENSIONS: 7.5\" Diameter (top) x 12.6\" Diameter (bottom) x 23.6\" High, fits for most cylinder propane tank up to 20lb.\nFEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank.\nEASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage.\n100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.\n", "embedding": [1.4179688, 3.1699219, 3.9628906, -0.39672852, 0.19995117, 0.40576172, -0.18481445, -0.48486328, 3.2109375, 1.7373047, 0.5053711, 0.53564453, 0.9628906, -3.2851562, 1.5322266, 0.29907227, -0.69677734, 2.3476562, 3.2890625, 0.94140625, 2.375, 1.4228516, -0.2319336, -0.68066406, -0.011764526, -0.25732422, 3.7109375, -3.1054688, -2.1738281, 0.7963867, 1.0351562, -0.057739258, 0.2524414, 2.9394531, 0.49560547, -2.4921875, -0.6899414, -1.0410156, -2.8398438, -2.0449219, -3.5039062, -0.85302734, 3.109375, 0.54833984, -1.0800781, -0.41357422, -0.78466797, -2.0800781, 0.29736328, -1.3007812, -0.066589355, 0.96484375, 2.4589844, 0.83984375, -0.6430664, 0.4033203, 1.3095703, -0.40527344, 0.57714844, 2.2070312, -0.5175781, -1.5341797, -1.0878906, 1.7324219, 0.24707031, 0.33081055, -0.7680664, -0.7294922, 0.88183594, 0.86865234, 1.8300781, 0.028320312, 1.5585938, -0.91845703, 0.94384766, -0.88623047, -2.1640625, 0.92529297, 1.8173828, -0.9375, 0.89208984, 3.4375, -0.69433594, -1.9716797, -1.9960938, -0.47436523, -0.6635742, -0.4038086, -0.38232422, -1.2763672, -2.6054688, 2, -1.9140625, -4.53125, -0.87841797, -0.42749023, 2.1308594, 1.9580078, 2.6210938, 0.4736328, 0.9404297, 0.71533203, -1.6337891, 0.6899414, -2.09375, -1.484375, 0.5541992, -1.8925781, -0.62109375, 0.5546875, 0.7050781, -0.8222656, 0.6274414, -1.6054688, 0.45458984, -0.93408203, -0.7348633, -0.8984375, 2.4589844, 0.7319336, 3.21875, -0.44677734, 0.6772461, -0.6201172, 1.0429688, 0.85253906, -1.2675781, 0.7915039, 3.765625, -1.2929688, 2.6796875, 0.0993042, -0.022491455, -1.3828125, -0.13891602, -0.5839844, -1.1552734, -1.6953125, -2.9707031, -0.15673828, -2.1933594, -1.4775391, 0.578125, -0.13720703, -3.0234375, -0.04864502, -1.3105469, 1.9667969, -0.15625, -2.2421875, 1.3730469, -1.9160156, -0.48706055, -0.5932617, 1.5302734, 0.6899414, 0.4099121, -3.8828125, 1.7519531, 2.6738281, 3.828125, -1.0292969, 0.11254883, 0.81591797, 0.5229492, -3.9707031, 1.3691406, 0.15185547, -1.0625, 0.9863281, -0.22229004, -1.4404297, 0.06774902, 1.3994141, 0.04748535, -1.5693359, 2.2890625, 1.6611328, 0.4519043, -0.22155762, -4.2304688, -1.3486328, -1.3320312, -0.9248047, -0.17712402, 0.9057617, -1.0917969, -1.4355469, 0.67333984, 0.2668457, -2.5273438, 2.0410156, -1.5048828, -0.19702148, -2.0546875, -3.4765625, -2.3496094, -1.9902344, -0.34985352, 1.7939453, -1.3173828, -0.9458008, -1.6416016, 1.3095703, -2.5585938, -1.3076172, 0.33374023, 0.640625, 0.46923828, 1.8027344, 0.52734375, -0.9941406, 2.2792969, -0.11810303, -1.1210938, 0.047302246, 2.4082031, 0.63623047, 0.63427734, 0.609375, -0.6166992, 0.40844727, 0.72314453, 0.99658203, 1.9550781, 2.7324219, 1.0087891, 1.1484375, -2.2578125, -1.3496094, 0.49145508, 1.3476562, -2.0917969, 0.3857422, -0.8676758, 2.1289062, -0.10058594, -1.6513672, 0.25976562, 0.41357422, 0.24841309, -0.69677734, -0.98535156, 0.054992676, 0.29052734, 2.8652344, 0.19274902, 1.1660156, 1.7939453, 0.0028419495, 0.7973633, -1.4941406, -0.13696289, -1.2958984, -0.4777832, 1.8466797, 1.6464844, 1.4873047, 0.40576172, -2.3652344, -0.16699219, 1.0488281, -0.58984375, 0.061340332, -0.5415039, 0.77246094, 0.11480713, -0.47094727, -2.2636719, -0.117004395, 0.8286133, 0.81103516, -0.0690918, -0.97021484, 1.4482422, -0.16821289, -1.0117188, 2.0800781, 0.07165527, 1.9501953, 1.4257812, -1.0371094, 2.1542969, -4.0117188, 1.6748047, 0.82421875, 1.9306641, 0.49267578, -2.625, -0.11395264, 2.3671875, -0.28857422, -0.15783691, 2.1640625, 3.3945312, -0.4338379, 3.453125, -0.0031051636, -0.57128906, -0.070251465, -1.1650391, -1.1220703, -0.93359375, 0.27612305, 0.76464844, -1.1210938, 0.12158203, -0.3244629, -0.2265625, -0.38671875, -0.2590332, -1.5888672, -0.16809082, 0.33154297, -2.1914062, -0.5332031, 4.3203125, -2.5234375, 0.07086182, 2.3457031, -0.12042236, 2.0019531, -1.3125, -1.28125, -0.0390625, 0.89160156, -1.984375, 0.5058594, -0.087524414, 0.9692383, 0.83496094, -2.09375, 2.3417969, -1.0410156, 0.7451172, -0.19030762, -3.0527344, -0.66845703, -0.36816406, -2.1640625, 1.0488281, -2.2578125, -2.0019531, 1.4404297, 2.1367188, -0.12432861, -0.7128906, 1.5615234, -0.19226074, -1.3955078, 0.73291016, 2.4726562, -0.9902344, -3.7441406, -0.040527344, -0.6010742, -2.3574219, 1.1210938, -0.14257812, 0.035827637, -0.2614746, 1.0898438, 2.2597656, -0.4177246, -1.8447266, 0.049102783, -0.30981445, -4.84375, 1.0927734, -2.3671875, 0.6772461, -2.1972656, 0.017791748, -2.0664062, -2.1132812, 1.6083984, -0.95410156, 4.3554688, 1.6992188, 1.0615234, -2.25, -2.0605469, -0.44482422, -1.9384766, -2.2519531, 0.8154297, 0.5566406, -1.4238281, -0.30029297, -4.4921875, -0.5371094, -1.7167969, -1.0986328, 0.36621094, -1.5351562, -1.7646484, -1.0957031, -0.9121094, -1.2851562, -0.4711914, 1.7460938, 0.01739502, -2.3203125, 0.024536133, -0.48608398, -1.46875, 0.53027344, -1.4423828, 1.3056641, -1.7578125, 0.69091797, 0.45654297, -1.3857422, 2.7714844, -0.83203125, -3.2089844, -0.28076172, 3.53125, 2.2988281, 3.2949219, -0.15234375, -1.3388672, -0.8417969, -0.5131836, 2.3339844, 3.0058594, 0.96240234, 2.4902344, -0.89746094, 1.2089844, -0.15783691, 0.35595703, -0.0362854, 1.6123047, 2.7851562, 0.16992188, 1.2851562, 1.4033203, 2.28125, -2.6074219, -0.17297363, 0.82666016, -0.85546875, 3.3203125, 0.5566406, -1.6865234, 0.3959961, -0.061035156, 2.4941406, -0.46533203, 2.3554688, 0.5239258, -0.19384766, 1.8662109, -0.6220703, 0.1328125, 2.9335938, -0.27661133, -1.8007812, 1.7128906, 0.24035645, -1.6630859, -0.26782227, 0.7001953, -0.9399414, 0.2578125, 2.3183594, -1.0380859, 1.7167969, 0.57177734, -0.6123047, 0.53222656, -1.5878906, 1.1289062, 0.6621094, 1.2041016, -0.6020508, -1.5927734, -1.5986328, 0.25317383, -1.2167969, 2.5097656, 0.1394043, 0.018218994, 1.3115234, -3.7265625, -0.29614258, -1.7939453, 2.0449219, -0.19274902, -0.72558594, -0.29077148, 0.7216797, -3.25, -3.7871094, 0.05529785, -0.81640625, -1.125, 3.3769531, 2.1191406, -2.2753906, 0.028549194, -1.7421875, 1.7880859, 3.0898438, -0.4050293, -0.18322754, -0.84765625, -0.44384766, -1.4746094, -0.2775879, 1.5410156, 1.5380859, -2.4726562, -1.0263672, -0.0635376, 1.7412109, 1.3105469, 1.0742188, 0.40283203, 0.27661133, -0.1303711, 2.5507812, 1.5224609, 2.5273438, 0.6020508, 0.7675781, 0.72314453, -1.4882812, 1.1962891, 0.6176758, -3.3574219, -0.24414062, -0.09692383, -0.6381836, 2.7460938, -0.4868164, 0.37109375, -0.59521484, 0.46069336, -3.328125, -1.7675781, -1.9472656, 2.1054688, -1.8613281, -1.1865234, 1.1435547, 0.29492188, -2.8046875, -1.4121094, 0.09051514, -2.484375, -1.0068359, -0.4416504, 0.21813965, 0.8544922, -1.4257812, 0.16101074, -1.5029297, 0.09753418, 0.9404297, -0.08270264, -1.3652344, -2.3085938, 3.203125, 0.28515625, -0.09832764, 0.7114258, 1.7792969, 0.8095703, -1.4326172, 0.18933105, -1.6083984, 2.015625, -1.1015625, -2.5488281, -0.48876953, -1.15625, 0.94628906, -0.83447266, -2.0898438, 0.25756836, 0.068115234, 0.45458984, 1.3447266, 1.7363281, 0.91845703, -0.32373047, -2.2910156, 2.15625, -0.2631836, -1.1318359, -0.0597229, -1.3505859, -0.9453125, -0.4177246, -2.1542969, -3.0117188, 0.20373535, 1.2275391, 0.91064453, -2.7773438, 1.4707031, 1.8554688, 2.0371094, 0.4477539, -1.2070312, 0.48657227, 0.9453125, 2.8925781, 1.7832031, -0.40307617, 0.8388672, 0.6279297, 0.50341797, 1.3994141, -2.8574219, -0.14758301, -0.89160156, -0.69189453, -0.3635254, 0.14550781, 1.8251953, -1.2148438, -0.80859375, -1.3574219, -2.2246094, 3.7324219, -2.78125, 0.8520508, 0.44189453, -1.1738281, -0.91259766, 3.3535156, 1.7558594, 1.8964844, 2.5957031, -0.91503906, -1.1679688, 0.43164062, 1.2236328, 0.10235596, 1.1347656, -2.3691406, -0.4272461, 0.07543945, 1.4775391, -0.73291016, 0.37353516, 1.8457031, 1.5791016, -0.12463379, 1.3769531, 2.1582031, -0.6352539, 2.078125, 1.2070312, -0.39819336, -0.008712769, -0.030181885, 1.0361328, 2.3164062, -1.6455078, -1.7978516, 1.1201172, 0.5605469, -1.3828125, 1.453125, 0.19665527, -2.0644531, 0.0047454834, -2.7578125, -2.546875, 0.33740234, 0.23632812, -1.5185547, -0.3918457, 1.5009766, 0.30541992, 1.1669922, 2.3300781, -0.34399414, -1.4560547, 1.1621094, 2.5761719, 0.43432617, -3.5644531, -0.20983887, -3.6367188, 0.7050781, -0.80810547, 0.024551392, -0.4885254, 0.050689697, 1.7373047, -2.7578125, -1.3818359, -0.3642578, 0.47216797, -1.2636719, -0.34521484, 3.3125, -0.11798096, 0.2529297, -0.08911133, -1.1835938, -0.69873047, 1.9902344, 1.7050781, 1.4638672, 0.06518555, -1.2392578, -4.0351562, -4.7304688, -0.9765625, 0.94970703, -1.3886719, 0.8642578, -0.18579102, -0.94628906, 0.072631836, -1.0732422, 0.9736328, -2.4589844, 0.39697266, -0.3347168, -2.0996094, -1.1523438, -0.18896484, -0.02067566, 1.0380859, -1.2919922, -0.5683594, -1.6552734, -2.9550781, -2.4160156, -0.5385742, -1.0175781, 0.63720703, 0.6357422, -1.1269531, 1.7109375, 0.41186523, 1.4824219, 0.1628418, 1.5068359, -0.7705078, -0.6669922, 2.3671875, -1.2802734, -0.60253906, 2.1738281, -0.7895508, 3.3652344, 2.1816406, 1.5107422, -2.7402344, 0.97314453, 1.4248047, 0.72558594, 0.089538574, 1.1835938, 1.2412109, -0.25732422, 1.7832031, 2.0898438, -0.3996582, -1.9667969, -0.61376953, -1.1757812, -0.84814453, -1.9423828, -1.9804688, -0.70947266, 0.52246094, 0.6201172, 1.3789062, 0.99560547, 1.0126953, 0.67041016, -1.3525391, 1.7714844, -2.8242188, 1.9375, 1.6376953, -2.2675781, -2.234375, -2.8632812, 3.2539062, 1.0410156, -0.51464844, 0.4880371, 0.97509766, -0.5888672, 1.5957031, -0.41723633, 1.6357422, 0.050842285, 2.25, -2.0742188, 0.96435547, 2.625, -0.23498535, 1.1035156, -0.24926758, 0.34375, 0.25439453, 0.77685547, 1.7548828, -1.9521484, -0.24035645, -0.40014648, 0.5053711, -0.62841797, -0.48486328, 0.36254883, -2.6757812, -0.56103516, -1.2509766, -0.9248047, -4.7304688, 2.3671875, 0.20092773, -0.03753662, -0.23413086, 0.27661133, -0.8857422, -0.26245117, 0.9682617, -0.015716553, -1.671875, -1.4453125, -1.328125, 1.0859375, 2.1894531, -2.4140625, 0.69970703, -0.03656006, 2.1621094, -0.28710938, 0.90478516, -0.57714844, 0.3034668, 1.4521484, 2.6347656, 3.6386719, -0.14562988, 0.6303711, 0.80566406, 1.5908203, 2.5625, -2.3007812, -0.3466797, 1.0507812, 2.125, 2.6953125, -0.43530273, -0.22680664, -0.003145218, -0.07873535, 0.38623047, 0.89746094, 2.2011719, -3.5097656, 0.1340332, -0.12347412, -0.38085938, 2.4179688, 0.9267578, -1.4423828, -2.7128906, 0.10229492, -0.42529297, 2.6894531, -1.3632812, 1.3583984, 1.2265625, -1.6103516, 1.7373047, 0.006881714, 1.0273438, -2.4863281, -2.5136719, -0.57714844, 3.1152344, 0.7260742, 1.4130859, -2.234375, 0.24987793, -1.2929688, 1.7558594, 1.7871094, -0.31274414, 2.3496094, -1.3339844, 2.6777344, 3.4902344, -1.1025391, -0.55126953, 0.4375, 0.44799805, -3.9140625, 0.3552246, 0.44018555, 1.3232422, 0.14196777, -5.2851562, -1.125, -1.5429688, 0.15856934, -3.3300781, -0.81152344, -0.39941406, -3.3574219, 0.19946289, 0.8154297, -2.3457031, 2.9628906, 1.0732422, -0.0635376, 2.703125, 0.5571289, 0.30566406, 0.09197998, 1.0585938, 0.48242188, 0.49731445, -1.2880859, 1.5800781, 1.4863281, -1.7460938, -1.2841797, 2.3613281, 0.87939453, 1.1845703, 0.6123047, -0.47338867, 3.0429688, 2.2226562, -1.1894531, 1.6835938, -0.54052734, 1.2890625, 0.057678223, 0.23425293, 0.5566406, 0.45581055, -0.59472656, 1.2392578, -5.9023438, -0.1529541, 0.09991455, 0.14440918, 1.4296875, 0.13806152, -0.6591797, -1.4306641, -0.03668213, 1.7080078, -2.7148438, 0.32421875, -2.171875, 1.6308594, -0.67871094, -0.92089844, -1.1259766, 1.1386719, -1.90625, 0.48583984, 1.6591797, -0.3725586, -0.42041016, 0.2980957, -0.4716797, 1.1923828, 1.4960938, 1.1367188, -0.78515625, 0.16589355, -1.3105469, 1.3964844, -0.49609375, -0.45043945, 1.5605469, 2.0664062, 1.7480469, 0.78271484, -0.4958496, -1.9355469, -1.3144531, -2.6972656, 1.6289062, -0.38867188, 0.57128906, 0.85058594, 1.4296875, 2.3691406, -1.1220703, -0.20959473, -0.104003906, 1.5546875, 1.8583984, -0.74560547, 0.0446167, 1.3623047, 0.89697266, 1.1982422, 3.8164062, 3.3847656, -2.3828125, 0.765625, 2.4199219, -3.0292969, -1.7783203, -0.5473633, -1.2333984, -0.48339844, 0.8432617, 2.8554688, 3.5078125, 0.3334961, 0.05130005, -1.4677734, -0.06359863]}, "B07S8HQC5K": {"id": "B07S8HQC5K", "original": "Brand: eBasics\nName: Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading\nDescription: What is the purpose of these clips? How would one use them?
Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

Features:
1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
4. Smoker / Grill / Oven Safe and dish washer safe.

Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
Intelitopia Meat Thermometer
compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
\nFeatures: Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes\nUniversal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe\nEssential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer\nStainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading.\nSmoker / Grill / Oven Safe and dish washer safe. 2 Pack\n", "embedding": [-3.1738281, 1.8466797, 5.1132812, -0.2836914, -0.08258057, 0.03930664, -1.1914062, -0.49560547, 2.5683594, 1.1191406, 0.40527344, -0.15197754, -0.15673828, -2.0410156, 1.6835938, 1.8017578, 1.3515625, -0.87402344, 0.55859375, 2.5566406, 3.1425781, 2.5039062, 1.1875, -0.2927246, 2.25, 0.17980957, 3.9824219, -1.5878906, 1.5380859, -1.5830078, 2.5351562, 2.0234375, 1.2597656, 0.5859375, -2.0625, -0.6748047, -1.5400391, 0.9682617, 1.7949219, -0.29101562, 0.20507812, 0.5703125, 0.88720703, 0.72998047, -2.1035156, -1.6357422, -0.19604492, 3.0449219, -2.8574219, -0.9379883, 2.4199219, 3.0507812, -0.65185547, -0.20251465, -0.10241699, 3.1074219, -0.6489258, -3.8222656, 0.6386719, 0.70996094, 0.33203125, -0.87939453, -1.2929688, 1.5742188, 1.9101562, 1.2753906, 0.9458008, -2.8085938, -0.62402344, -0.4831543, -0.4975586, 0.46557617, -0.4086914, 0.74902344, 1.7412109, -2.2285156, -0.37109375, 0.24536133, -0.6088867, -0.0041122437, -1.3046875, 2.4394531, 0.4404297, -1.9980469, -0.051239014, -0.9042969, -0.38793945, 0.76416016, 2.8242188, -0.8203125, 0.64453125, 1.6630859, -1.796875, -4.265625, 1.1347656, -2.2519531, -0.9394531, -1.8847656, -0.4802246, 3.1953125, -3.0566406, 0.9321289, -0.18383789, 2.5273438, -1.4609375, -2.1835938, -0.07098389, 0.81347656, -3.015625, -3.7304688, -0.17700195, 2.1992188, -0.97802734, 1.5361328, -0.076660156, -0.5209961, 0.34716797, -0.52441406, -0.77441406, 1.0058594, 3.6796875, 0.07330322, 1.1357422, -1.2041016, -1.2285156, -0.984375, 1.1972656, -0.4482422, 3.2792969, -0.30078125, -1.1630859, -0.7607422, 0.70410156, -0.09655762, 1.9804688, -2.8378906, -0.87646484, -2.5625, -0.7866211, -0.30908203, -2.3808594, 0.16308594, 0.30078125, 1.2333984, -2.0761719, 0.31860352, -1.3583984, 1.5488281, 0.75146484, -0.79785156, 2.1875, -2.2167969, 0.7734375, 0.64990234, 2.4726562, 2.8183594, -0.3713379, -0.7910156, 3.8339844, 0.8823242, 1.7451172, -2.8886719, -0.2709961, -0.59277344, 0.18469238, -2.0761719, -2.0957031, 2.1523438, 1.8740234, 2.453125, 1.9003906, -1.0273438, 0.7373047, 0.27954102, 0.4572754, -2.3242188, 2.3203125, 3.9746094, -0.14013672, 2.8085938, -0.54248047, -0.7319336, -0.9428711, 0.4716797, 0.78515625, -1.5947266, -1.6230469, -0.6088867, 3.6328125, -0.63720703, 0.5024414, 2.953125, 0.6542969, -1.1591797, -1.1728516, -0.4609375, -1.5722656, -2.2949219, 0.4506836, -0.36743164, -4.3710938, -1.9638672, -0.5698242, -2.6855469, -0.3642578, -2.0917969, -2.359375, 2.0507812, 1.1748047, 3.4492188, -0.5961914, -1.8779297, 0.3125, 0.14074707, -0.98046875, -2.4179688, 1.6074219, 0.515625, 0.26831055, 2.0410156, -2.2460938, -0.76464844, -0.44482422, 3.2324219, -0.074523926, 1.5029297, -0.83935547, 0.96875, -1.9736328, -1.3291016, 3.0664062, -1.6435547, 0.13867188, -0.6611328, 0.5546875, 2.3574219, 1.1972656, -1.3193359, 0.024383545, 0.36523438, -0.6689453, -2.9941406, -0.2956543, -1.0351562, -1.1953125, -2.0585938, -2.515625, 3.6210938, -0.54541016, -0.46240234, 0.7363281, 0.89746094, -0.07269287, -1.1396484, -1.2236328, -0.45117188, -0.25268555, 1.5273438, -1.9257812, -2.078125, 3.0351562, -0.8388672, -1.3300781, 1.3203125, 3.8417969, 1.7792969, 2.3085938, 1.7060547, -0.004840851, -1.2109375, 2.5019531, -0.0009899139, -1.0771484, -0.8496094, 1.59375, 1.6367188, 1.0029297, 1.9101562, 1.0136719, -1.8759766, 0.44458008, 2.8242188, -0.7583008, -1.25, 1.0869141, -0.7446289, -1.9589844, -3.5625, 0.7788086, 0.9824219, 2.9746094, -0.36938477, -2.46875, 3.0722656, -0.043060303, 1.1181641, 0.9243164, -0.15905762, 1.4257812, -1.8828125, 0.9482422, 1.3056641, -1.5380859, 0.16345215, 1.8730469, 0.91259766, 1.703125, -0.87402344, 0.7758789, 2.2519531, -0.96435547, -2.3339844, -1.4951172, 1.3378906, -3.25, -3.53125, -1.4658203, -2.578125, -0.021957397, -1.9189453, 2.7402344, 2.0976562, 1.7470703, -2.5898438, 0.6279297, -0.03479004, 0.066345215, 0.97216797, 0.4814453, -1.1728516, 0.5258789, -0.6430664, 0.5859375, -1.7636719, -1.8144531, 0.34838867, 0.11682129, -2.4726562, -0.12487793, 1.3417969, -2.0234375, 1.0761719, -1.8134766, 1.1445312, -0.7260742, -1.3867188, -0.87158203, 0.6640625, 0.6791992, -1.4208984, 0.015625, 0.40795898, -0.94433594, -2.3652344, 1.4501953, -0.31030273, 1.4580078, 0.6064453, -1.4638672, 2.1894531, -1.8925781, 1.3583984, -0.08892822, 0.77978516, 0.2746582, -0.30322266, 0.9716797, -0.5058594, 0.9428711, -2.3652344, 1.5478516, -1.4833984, -0.45629883, -1.1914062, -0.8979492, 0.07543945, 0.74609375, 1.5527344, -1.4599609, 2.8925781, -1.2529297, 2.0625, 0.6743164, 0.30786133, -1.7695312, -1.5761719, -0.28076172, -1.3066406, -0.25146484, -2.8710938, -0.56689453, -0.58203125, 2.0332031, -0.87646484, -0.2770996, -1.5644531, 0.019577026, -1.2285156, -2.4355469, -1.7089844, 2.2128906, -1.2021484, -1.9726562, -0.72802734, -1.9208984, -1.9609375, -1.5332031, 0.7158203, 1.6806641, 0.03817749, 1.4990234, 0.8691406, 1.0380859, -0.20483398, -0.5654297, -1.6152344, 0.2734375, 1.1933594, -2.1738281, -0.92626953, 1.0546875, -0.890625, -0.3828125, 0.09649658, 3.3320312, 0.8071289, 3.7617188, -0.41259766, 1.1259766, 0.5258789, -0.26733398, 1.125, 0.021530151, 2.0546875, 0.93603516, -2.9667969, -1.6201172, 0.30004883, -0.87646484, -0.76708984, 0.625, 0.82421875, 2.265625, 2.65625, -0.49072266, 0.56396484, 0.091308594, -2.7890625, 2.2949219, 0.6376953, -0.1517334, -2.1992188, -1.1308594, 1.2070312, 0.66259766, 0.49951172, 1.6074219, 1.6503906, 1.8320312, 1.5058594, 0.13562012, -1.796875, -0.2722168, 0.66796875, 0.54541016, -0.48632812, 0.039978027, -0.4814453, -1.1582031, 0.15991211, -0.6958008, 2.1132812, -3.3359375, -0.79785156, 1.109375, -0.26367188, 0.24206543, -0.63183594, -0.7792969, -0.97802734, -1.7548828, -0.8457031, 0.73779297, -1.4550781, 1.8759766, -0.58740234, -3.203125, 0.37695312, 1.9589844, -0.25341797, 0.1574707, -0.4025879, 1.4667969, -1.6416016, 0.15319824, 0.22021484, -0.006542206, 1.3369141, -0.3684082, 0.7963867, 1.2646484, -0.35717773, -2.7753906, 0.5546875, 1.4541016, -1.1523438, -2.546875, 0.19421387, -0.14294434, 1.7724609, 1.2851562, -0.19006348, 0.84472656, 1.4921875, -1.6523438, -3.1484375, 0.6616211, 0.7338867, 0.02809143, 0.6308594, -0.5126953, 2.6074219, -0.30029297, -0.61328125, 1.1757812, 1.5029297, -2.6367188, -0.5605469, -4.828125, -0.4411621, -1.2763672, -3.2558594, 0.859375, -0.37524414, 2.8730469, 0.7475586, 2.3613281, 0.5493164, 4.125, 1.6601562, -2.1230469, -1.3505859, -0.67333984, -0.47021484, -0.4465332, -2.1679688, 5.859375, -0.34887695, -0.5678711, -0.95166016, 0.36083984, -0.99365234, 2.9960938, 0.69091797, 0.5439453, 0.27490234, 0.5864258, 0.23156738, 0.028427124, -0.036468506, 0.22009277, 1.7617188, -0.13586426, -0.10748291, 2.4003906, -1.734375, 0.52978516, -1.8837891, 2.9804688, 0.3010254, -0.76123047, 0.80126953, 0.75, 1.4589844, -1.1757812, -2.2792969, 0.118774414, -2.3828125, 0.78222656, 0.8027344, -0.8959961, 0.32202148, -2.7558594, -0.71484375, -1.046875, 0.12866211, 0.82958984, -0.38549805, -3.1757812, -1.2597656, 0.03805542, -1.0214844, -1.8994141, 0.024490356, -3.0976562, -0.5234375, -0.7788086, -1.9013672, 2.4589844, 0.24621582, -1.7841797, -1.7451172, 2.6757812, 3.1503906, -0.2121582, 2.21875, -3.3710938, 0.58203125, 0.104003906, -0.4909668, -1.1357422, -1.6123047, 1.8300781, 0.39233398, 0.09039307, 1.6640625, -0.671875, -0.05215454, 0.20629883, 2.1484375, 1.0820312, -0.56640625, 1.7216797, -1.2460938, 1.4638672, 3.0097656, -0.5239258, 4.1445312, -0.19885254, 2.9003906, 0.5180664, -0.99072266, 0.047302246, 1.3388672, 0.039916992, 0.19335938, -1.8701172, -0.3540039, 1.6259766, -0.06085205, -1.0673828, 0.016342163, -0.7832031, -0.56591797, 0.04159546, 2.0898438, 1.4560547, -2.8359375, -0.98535156, 3.0585938, 1.8994141, -0.51953125, 3.7324219, -0.7265625, -3.2011719, -0.5732422, 1.3144531, -2.2792969, 1.4707031, -0.65283203, -2.125, 3.0195312, -1.71875, -0.6772461, -0.018493652, 1.7021484, -0.22949219, 2.4433594, -1.6132812, -0.5449219, 4.1835938, -2.6308594, 0.4296875, 0.11517334, -0.12646484, 2.8378906, -1.1591797, -2.2695312, -0.4362793, 1.2773438, 1.5654297, -1.4443359, -3.0097656, -0.95751953, -2.7851562, -2.0175781, -0.34326172, -3.6660156, -1.9306641, 0.09515381, 1.9580078, 0.55615234, -1.6982422, 0.33276367, 3.2480469, 0.3774414, -0.86083984, -1.5761719, 3.1640625, -1.7587891, 1.1943359, 0.079589844, -1.1650391, -0.27856445, 1.3720703, 0.71435547, -0.022888184, 1.1962891, 1.6914062, -1.3320312, -0.9116211, -0.43432617, -2.6777344, -1.9970703, 0.14868164, 1.4277344, 1.2441406, 0.8618164, 1.0107422, 0.9550781, 0.77246094, -0.3659668, 0.64160156, 1.7138672, 0.87158203, -0.16821289, 0.6748047, -0.46191406, 0.1340332, -1.7373047, 1.3125, -0.0052337646, 2.7714844, -1.2509766, -3.7480469, -0.7993164, -0.3713379, -2.0976562, -2.546875, 1.4609375, 1.2246094, -2.1308594, -0.3918457, 0.09863281, -1.2685547, 2.1386719, -1.5927734, 0.6870117, -0.5600586, 0.0947876, 2.8476562, -1.8896484, 0.36499023, 0.085998535, 0.3840332, 1.3037109, 1.7705078, -1.0703125, 1.9140625, 1.4228516, -0.72314453, -3.0039062, -2.9785156, -0.70166016, 1.1445312, 0.62109375, 1.0107422, 2.0429688, -3.1445312, -5.0742188, 0.6899414, -0.67041016, -0.8334961, -1.8183594, 0.19421387, 2.7011719, -1.453125, 1.8183594, 0.21459961, 0.18334961, -2.3613281, 0.56640625, 1.3037109, 1.7041016, 0.38623047, -1.3496094, -0.4038086, -1.4638672, -0.8232422, 1.375, -1.7294922, -1.4570312, 1.25, -2.7070312, -1.2197266, 0.47851562, 1.9501953, -0.60791016, -2.1679688, 0.53466797, -1.9462891, 3.9492188, -2.4414062, 0.4086914, 1.6474609, 3.0585938, -1.8427734, 2.5234375, -0.9741211, -4.015625, 0.39038086, 0.115112305, 0.41088867, -0.29052734, 0.09661865, 0.35083008, -1.1904297, -0.63671875, 0.5385742, -3.34375, -1.53125, 2.4941406, 1.9921875, 0.48632812, -0.56933594, 2.7148438, 1.4023438, -0.29907227, 2.4394531, -1.671875, -0.8232422, -1.5703125, -2.6542969, -0.61865234, 0.21276855, -1.3310547, -0.31274414, 1.5058594, 2.1523438, -1.6611328, 0.73828125, -0.96875, 0.6357422, 1.0927734, 2.5683594, 1.0546875, 3.4550781, 3.4296875, 1.5078125, 3.6835938, -0.061523438, -0.6533203, -1.7382812, 0.6098633, -1.4277344, 0.82958984, -0.78027344, 1.5839844, 0.26220703, 0.5800781, -0.31298828, 0.5942383, -0.97216797, -0.77490234, 0.27441406, -0.67333984, -0.1920166, -3.265625, -0.7626953, -0.37158203, 0.5605469, -1.3476562, 1.8037109, 2.9179688, -0.05810547, -0.0826416, 0.4675293, -0.11126709, 0.51660156, -4.25, 1.0664062, 1.3046875, -0.49951172, -3.5761719, 1.5947266, 1.4931641, 1.4667969, 1.1113281, 0.31030273, 0.6796875, -0.43847656, 0.46069336, -1.3994141, -1.5478516, 1.4404297, 2.9238281, -0.42504883, -1.9785156, 1.5947266, -0.4399414, -4.9179688, 0.054626465, 3.0234375, 0.76171875, -0.041412354, -1.9052734, -5.109375, 2.28125, 0.22424316, 0.52441406, 0.6245117, -1.9199219, -1.0458984, 1.0371094, 0.58496094, 0.44604492, -0.25878906, 2.8867188, -0.91064453, -2.3027344, -1.5478516, 0.55322266, 0.84521484, 1.6171875, 0.9584961, -1.0273438, 0.859375, -1.3398438, 3.0039062, -0.3581543, -1.3730469, -3.4257812, 1.6152344, 1.0537109, 1.6240234, -0.79296875, -1.8730469, -1.1113281, 0.6328125, -0.11224365, -2.1738281, -1.2763672, -0.21862793, 1.0976562, -0.734375, 1.2324219, -0.31176758, 2.75, 0.5444336, 0.42285156, 2.8457031, 0.69628906, -2.1542969, 1.2265625, 1.8427734, -2.0410156, -0.45507812, -0.27856445, 1.9941406, -0.78564453, -1.0898438, 0.72021484, 1.5761719, -0.70947266, -0.30200195, 1.4296875, 1.5742188, 0.8364258, -0.29589844, 0.28198242, -1.1474609, -0.20617676, -0.7792969, -3.1367188, 0.16259766, 1.8691406, 0.73339844, -0.05001831, 0.02003479, 0.6699219, -0.5678711, -0.25390625, -0.6513672, 0.21264648, 1.9179688, 0.72802734, 1.03125, -1.5957031, -1.7998047, -0.5751953, -1.1044922, 0.70410156, 0.36523438, -2.0605469, -0.42626953, 0.3474121, 2.2148438, 1.234375, 0.7817383, -1.9990234, -1.9228516, 1.0664062, -2.9238281, -0.27563477, -0.7734375, 1.9091797, 1.1015625, 0.49902344, 2.6914062, 2.0507812, 0.98535156, 4.2382812, 0.062316895, -2.2871094, -3.0800781, 2.3515625, 1.53125, -0.18554688, 0.52978516, -0.8725586, -0.7026367, -0.99853516, -0.52441406, -0.09667969]}, "B074GXFLX5": {"id": "B074GXFLX5", "original": "Brand: GasOne\nName: Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:\nDescription: \nFeatures: HIGH PRESSURE SINGLE PROPANE BURNER - Gas One\u2019s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control.\nNO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner!\nEASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1\u2019s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator!\nRUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One\u2019s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1\u2019s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU!\nSAFETY 1ST - Includes a Regulator with ensured quality control\n", "embedding": [-2.2089844, 1.7978516, 1.2744141, 0.35791016, -0.13305664, 1.0322266, 1.1162109, -1.0507812, -0.63378906, 0.62646484, 0.9375, 0.171875, -0.4111328, -1.1875, 1.2646484, -0.4333496, 0.84033203, 1.6015625, 1.0371094, 1.4501953, 2.5195312, 1.2607422, 1.7050781, -0.5644531, -1.2714844, 1.0605469, 2.9707031, -3.4003906, -0.75390625, 0.31347656, 2.8007812, -0.6298828, 0.43408203, 1.9853516, -2.8613281, -0.8901367, -1.8105469, -0.5830078, -4.4179688, -1.6552734, -2.4492188, 0.9663086, 1.25, -0.18115234, -1.7871094, -0.26733398, 1.1611328, -0.48754883, -0.765625, 1.5478516, 1.0605469, 0.51123047, -2.53125, 0.87597656, -0.48950195, 0.7260742, 1.5107422, -2.5, 1.9736328, -0.23608398, 1.7773438, 1.7695312, -1.9326172, -0.2631836, -1.5820312, -1.5966797, -1.3300781, -0.1862793, -1.0517578, 0.084228516, 1.6699219, 0.59033203, 0.31713867, -0.45483398, -0.16625977, 1.1210938, -2.390625, 1.1318359, 2.7246094, -0.20141602, -1.5830078, 1.5244141, 1.1796875, -0.59521484, -0.33422852, 0.1920166, -1.1005859, -0.72509766, 2.0488281, 1.3173828, -1.0712891, 3.3222656, -2.5449219, -4.6953125, 0.8901367, -0.3642578, 1.4931641, 0.6381836, 1.1035156, 0.63623047, -1.1953125, 0.67285156, -0.7895508, 1.9462891, -0.66748047, -2.2402344, 1.9677734, 1.6074219, -2.375, 0.9785156, -1.3261719, -1.6337891, 1.3544922, -0.15393066, 1.3427734, -1.1806641, -1.4306641, 1.9267578, 4.78125, 0.6176758, 3.4746094, -0.64746094, 1.21875, -0.78466797, -0.3088379, 1.3496094, -1.3447266, -0.09729004, 4.0390625, -1.1542969, -0.36987305, -1.3896484, 2.4628906, 0.8671875, -0.81103516, -1.0322266, -0.80078125, -3.7753906, -2.203125, -1.359375, -2.2597656, 2.1972656, 1.3876953, 0.43408203, -2.484375, -0.51464844, -0.8955078, 1.1015625, 0.6738281, -1.5419922, 1.1875, -2.0273438, 0.2253418, -3.2597656, 0.85791016, 0.3828125, 0.26416016, -0.51953125, 2.7578125, 1.3896484, -0.61816406, -0.9316406, -1.5068359, 1.6259766, 0.20776367, -1.4208984, 0.2310791, 1.546875, -1.9570312, 0.7338867, -0.27026367, -1.6835938, -1.3818359, 0.31445312, 0.43432617, -1.7910156, -0.515625, 3.0527344, -0.17443848, -1.1269531, -3.4394531, -3.5664062, 1.0410156, -0.62353516, 0.8457031, -0.34594727, -0.29077148, -1.0146484, 0.38305664, -1.4091797, 0.36572266, 0.09484863, 1.5332031, 0.77685547, 0.68652344, -1.1767578, -1.0722656, -2.2070312, -0.46972656, 1.9199219, -0.0078125, -1.2441406, 0.45581055, -0.2310791, -1.2099609, -0.6479492, 0.8466797, -1.9160156, -0.765625, 1.8056641, 0.083984375, 0.097595215, 1.9501953, -0.11853027, -2.2226562, -1.5068359, 1.8417969, 1.7832031, 1.6015625, 1.4326172, 0.46948242, -1.6503906, 2.4609375, 1.5732422, 1.4570312, 0.92089844, 0.55126953, -0.8701172, -2.1328125, -1.3349609, 2.0058594, 1.7197266, -0.40405273, 0.5546875, -0.017044067, 2.4765625, 0.39135742, -2.2578125, 0.38867188, -0.09954834, -0.37573242, -1.0908203, -1.8095703, -0.2364502, -2.9648438, 1.7363281, -1.1445312, 0.074035645, 1.9853516, 0.7729492, 0.28173828, -0.2944336, -0.5229492, -0.4243164, -2.1269531, -1.9755859, 0.6855469, 0.6503906, -0.111206055, -1.1875, 2.9160156, 0.04324341, -0.8041992, 0.6743164, -0.75390625, -0.88964844, 1.9130859, 0.7895508, -1.6826172, 0.28173828, 2.4082031, 1.7949219, 3.9121094, -0.84472656, 2.1640625, 0.53271484, -2.1132812, 3.1367188, -0.94921875, 1.3066406, 0.7519531, -1.2724609, 1.1787109, -2.125, 1.6367188, 2.1933594, 2.7714844, 0.8198242, -1.0878906, -0.44995117, 4.5078125, -0.28930664, -1.9462891, 1.1210938, -2.0234375, 0.5336914, 0.15368652, 0.24645996, 1.4130859, -1.1289062, 2.1855469, 0.039245605, -0.023269653, -0.46044922, -0.7104492, -0.4350586, -1.1630859, 0.06628418, 0.16271973, 0.13232422, 0.31811523, -0.39819336, -1.4072266, 3.0214844, -2.7460938, -0.49194336, 1.9814453, -2.3964844, 0.31469727, 0.01864624, 1.3232422, 3.2949219, 1.9238281, -1.5136719, 2.5019531, 1.2841797, 1.2617188, 1.1523438, -0.092163086, -0.4243164, -1.0498047, -1.7910156, 0.27905273, -1.6621094, -1.4570312, 0.8701172, -2.7578125, -4.4492188, 1.0390625, -1.8300781, -2.5957031, 2.7167969, -2.28125, 2.1933594, -0.30859375, -2.2109375, -0.09265137, 0.296875, -1.3447266, -0.24206543, 1.6376953, 1.0351562, -0.5761719, -1.8896484, -0.87890625, -1.3085938, -0.13049316, 0.44726562, 0.35595703, 1.2177734, 0.064331055, 0.20361328, -0.5473633, 0.15673828, 0.062072754, -1.7724609, 1.5605469, -3.4042969, -0.4013672, -1.2734375, 0.30493164, -0.10583496, 0.060516357, -1.9208984, -0.41748047, 1.1845703, 0.070739746, 2.25, -0.23791504, 1.2587891, -1.0185547, -0.096069336, 0.55908203, -1.1552734, -3.2324219, -0.06201172, -1.2275391, -1.3632812, 0.006450653, -3.7792969, 0.2849121, -0.32348633, -0.14892578, -1.5576172, 0.36694336, -1.1181641, 0.32617188, 0.19873047, -2.0742188, -1.3242188, -0.1772461, -2.4355469, -3.4375, -0.8203125, 0.5317383, -2.0214844, 0.16638184, -0.15856934, 0.30126953, 0.93652344, -0.5336914, 2.2753906, 0.6738281, -0.62939453, -1.1318359, -2.5, 2.7421875, 1.1972656, -1.0224609, 1.2246094, -2.0683594, -0.9892578, -1.3398438, -0.5048828, 2.4335938, -0.3166504, 2.0878906, 0.25341797, 0.20410156, -0.7050781, 0.6303711, -1.0146484, -1.7841797, -1.0537109, 2.6425781, -1.5908203, -1.9960938, 1.3105469, 2.7851562, -1.5791016, 0.72802734, 3.0800781, 0.63964844, 0.7998047, 1.53125, 1.0957031, -0.80566406, -0.171875, -0.47998047, 2.3222656, -1.4609375, 0.6152344, 0.28295898, -0.3894043, 0.14538574, 1.6142578, 1.0693359, 2.2753906, 2.0742188, 1.5791016, 0.5751953, -1.7197266, 0.35083008, -0.3803711, 2.2539062, 0.53271484, 1.7041016, 0.31201172, -1.5830078, -2.8496094, 0.7026367, 1.4541016, -1.4423828, -0.7661133, 0.45410156, 0.3864746, 0.7290039, 1.2792969, -0.025619507, -0.9013672, 0.6669922, 1.546875, 1.265625, -0.3774414, 1.7851562, -0.25512695, 1.0507812, -1.1748047, 1.3769531, -0.7163086, -0.12976074, 0.5961914, 1.6503906, -3.5097656, -2.1523438, -1.3007812, -1.3818359, 0.3630371, 3.2714844, 0.53027344, -1.9970703, 0.8520508, -0.51953125, -1.1591797, 1.9931641, -1.9638672, -0.5917969, -2.25, 0.72509766, 0.5883789, 0.04977417, 1.1308594, 0.2401123, -1.0761719, 1.8349609, -3.9472656, 0.55810547, -0.55322266, -1.1630859, -1.5546875, 2.6953125, -1.0839844, 0.6948242, -1.6679688, 3.5996094, 0.080444336, 0.37939453, 2.8691406, -2.5410156, -0.02041626, -2.1269531, -5.1054688, 2.3242188, -0.85058594, -0.14453125, 3.7285156, 1.5117188, 0.48583984, 1.4755859, 1.1953125, -2.2792969, -0.6118164, -0.6254883, 1.1875, -2.4863281, -0.4658203, 0.4909668, 1.6953125, -2.1660156, -1.3583984, -1.0097656, 0.3137207, 0.5527344, 1.4990234, -4.0390625, 1.9628906, -0.92578125, 0.5786133, -0.73535156, -1.2236328, 0.60498047, -2.6210938, -0.6621094, -1.1230469, 1.0078125, -0.07647705, 0.33935547, -1.5185547, 3.7207031, 1.9433594, -0.9355469, -0.9980469, 1.9794922, 2.1621094, -0.5605469, -0.96533203, -2.8476562, -0.4873047, -0.40551758, 0.23168945, 0.49023438, -3.1582031, -0.7714844, 2.3085938, 2.7246094, 0.7739258, 1.2841797, 0.9873047, -2.1347656, 0.48657227, -0.81347656, -1.6835938, -0.28442383, -0.44580078, 0.89990234, -1.8447266, 0.9140625, -2.8769531, -1.1142578, 0.15209961, -0.33520508, -2.0625, 1.9072266, 1, 1.3847656, 0.76660156, -1.40625, -2.5449219, 0.009025574, -0.07086182, -1.1708984, 1.7421875, -0.81689453, 0.055511475, 1.4853516, 0.7944336, -0.09490967, -0.066711426, 2.3320312, -1.4472656, -0.60009766, -0.7211914, -0.22265625, -1.7529297, -1.2353516, -0.6245117, -1.0556641, 2.3886719, 0.8256836, 0.56884766, 0.9692383, 1.2412109, -1.4814453, 0.2722168, 1.7626953, 0.05218506, 0.44140625, 1.7763672, -0.26879883, -0.13415527, 0.87597656, -0.021820068, 0.8222656, 1.6083984, 0.06738281, -1.03125, 0.7104492, -1.1953125, -0.85839844, 1.8339844, 0.7890625, 0.97509766, 3.1640625, 2.0859375, -0.8774414, 0.46948242, 0.9824219, -2.1464844, -0.21972656, -0.032226562, -0.70166016, 1.7167969, 0.5551758, -1.8134766, 0.6430664, 5.0039062, -0.73583984, -0.111083984, 0.76416016, 0.48657227, 1.1123047, -1.6220703, -1.6835938, -1.9326172, -0.4453125, 0.5498047, -1.7978516, 0.25830078, 0.103393555, 1.3134766, 1.2548828, 0.33544922, -0.17443848, 2.0449219, -0.20410156, 0.17956543, -1.0771484, -1.0693359, -2.4589844, 2.03125, 2.2148438, 2.2832031, 0.5107422, 0.41357422, 1.0595703, -1.6660156, -2.4375, -0.8105469, 1.0576172, -1.7636719, -0.9790039, 2.5058594, -0.07897949, 0.3310547, -0.79296875, -1.4091797, -1.5654297, 2.2519531, 1.3730469, 0.34204102, -1.578125, -0.37963867, -2.7246094, -5.1484375, -0.3762207, 0.41796875, -1.9746094, -0.8544922, -0.7089844, -1.0292969, 0.19726562, -0.92285156, -0.10131836, -2.6015625, 0.1772461, -0.50146484, -1.3876953, 0.4946289, -1.0654297, 0.18969727, 1.0048828, 0.09509277, -1.125, 1.453125, -1.0771484, -0.7548828, 0.3959961, -1.5029297, -0.06964111, 0.08392334, -1.3173828, -0.023422241, 3.4667969, -0.18444824, -3.4667969, 3.3652344, -1.6464844, 0.16101074, 0.31591797, -1.0996094, 1.0722656, 1.1982422, -0.21032715, 1.4541016, 0.19335938, 0.4020996, -0.16210938, -0.54296875, 1.4101562, -0.1472168, -0.3581543, -1.6972656, 2.2617188, -0.90234375, 0.67578125, 2.0625, -0.8105469, -0.8359375, -1.4521484, -1.1464844, -0.32836914, -2.0195312, -0.049987793, -1.1044922, 0.45581055, 2.1835938, -0.8330078, 1.2871094, 1.2236328, -0.6328125, -0.59033203, 1.1660156, -2.0605469, 2.8691406, -0.38500977, 0.2536621, -1.9853516, -1.3613281, -0.13928223, 0.8745117, 1.0585938, -0.50341797, 1.7255859, -1.0742188, 0.82177734, -0.34423828, 1.1806641, 1.4648438, 2.1484375, 0.17175293, 1.8886719, 3.6035156, -0.8305664, 0.5776367, 0.55810547, 0.4675293, -0.018096924, 2.7226562, 1.7255859, -1.6015625, 0.124816895, -1.7412109, 2.4628906, 0.006454468, -0.9682617, 0.5239258, -0.02658081, -0.72509766, -1.0771484, -1.0478516, -1.9638672, 0.28735352, 2.0527344, -1.3496094, 0.14538574, 2.7109375, 0.6044922, 1.4472656, 2.5839844, 3.015625, -0.46411133, 1.1210938, -1.3603516, -0.3955078, 1.6474609, -2.171875, -0.1463623, 2.8222656, 0.6972656, -0.95996094, 0.9819336, -0.6303711, 2.4238281, 1.8320312, 0.75390625, 2.3261719, 0.28222656, 3.0957031, 0.6669922, 1.8339844, 2.3320312, 1.4003906, -0.046295166, 1.4003906, -0.12768555, -0.45214844, -0.52490234, 0.031951904, -0.7763672, -0.9711914, -0.19726562, 0.22558594, 0.890625, -4.8398438, 0.9633789, -1.4638672, 1.90625, -1.5673828, 0.9663086, -0.9296875, -0.21118164, 0.61376953, -0.8276367, -0.34985352, 0.042419434, -1.3681641, -0.2109375, 0.32177734, 1.8232422, -2.1484375, 0.5058594, -1.3505859, -2.2324219, 1.5908203, 1.2451172, 0.7495117, 2.1210938, 0.7866211, -0.107299805, 0.7661133, -0.19702148, 0.2890625, -3.4960938, 0.82421875, 0.08831787, 2.2773438, 1.5966797, -0.3515625, 2.9003906, -1.5253906, -3.4960938, -3.8144531, 3.8691406, 0.5463867, 1.1503906, -0.2220459, -2.2207031, 2.4472656, 0.15026855, 1.4492188, -3.2207031, 1.0078125, -0.65966797, -1.2421875, -1.5078125, 1.3310547, -1.2207031, 3.6523438, 0.22070312, -1.4921875, -0.7290039, 0.9838867, 1.6894531, 0.37036133, 0.8691406, -0.014831543, -0.04550171, -1.9853516, 2.7148438, 0.91015625, -1.7441406, -1.5458984, 3.1738281, 2.2539062, 0.7368164, 1.3994141, 0.7607422, -0.028533936, -0.4272461, 0.017028809, 0.21459961, -1.6083984, -1.9824219, -1.484375, -0.3100586, -1.5693359, -2.0273438, 0.58935547, -0.0791626, -0.4020996, 0.41577148, 2.921875, 0.08660889, -0.55908203, 0.57128906, -0.50146484, -1.0400391, -0.09741211, 0.026626587, -2.5449219, -0.9013672, -1.0351562, 0.21948242, 0.53466797, 0.05331421, -0.11328125, -0.9550781, 0.50927734, 1.1601562, 0.49829102, -0.3190918, 0.85058594, 1.2285156, -0.31933594, 0.085876465, 2.9765625, -2.5527344, 0.99072266, 1.2314453, -2.6601562, -0.67822266, -0.6665039, -0.40039062, 0.081848145, 3.2304688, 0.77685547, 1.5644531, -1.9433594, -1.5966797, -1.1162109, -2.3007812, 0.28393555, -0.51171875, -1.2939453, 0.099121094, 2.1210938, 2.15625, 0.004878998, 1.4160156, -0.003288269, -0.1505127, 1.4267578, 0.089660645, 2.2421875, -0.29833984, 0.4802246, -0.7089844, 2.9550781, -0.037628174, -2.0683594, -0.28027344, 1.3994141, -0.21484375, -3.546875, 1.7705078, -1.1064453, 0.44360352, -0.17626953, -0.13586426, 2.3222656, 2.5097656, -1.6757812, -1.6865234, -1.8535156]}, "B08C9YPBV9": {"id": "B08C9YPBV9", "original": "Brand: VIVOHOME\nName: VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

Features:
-The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
-No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
-The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
-Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
-Great stove for camping; It will really simplify your canning process

Product Specification:
-Rated output: 54,000 total BTU/hr, for 18,000 BTU each
-Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
-Stove Height: 29\"

Package Includes\uff1a
-1*Triple burner stove
-1*Extension hose & regulator
-4*Detachable legs
-1*Manual\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend\nTHREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove's body; It can also be used as a countertop stove without legs\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "embedding": [-1.3955078, 2.3320312, 3.7109375, 0.9316406, -0.26416016, 1.7099609, 1.2578125, -0.9863281, -2.2792969, 3.046875, -0.05709839, -0.2364502, 0.30639648, -2.4765625, -0.4814453, 0.92822266, -2.3476562, 0.62402344, -0.45141602, -0.28198242, 2.0820312, 0.56152344, 0.63134766, -0.32714844, -0.66845703, -0.9580078, 3.1757812, -4.75, -0.57470703, -1.2402344, 1.7470703, 1.0869141, 0.83935547, 2.1074219, -3.7460938, 0.058685303, -1.2939453, 0.26049805, -3.2402344, -0.6772461, -1.4179688, -1.7451172, 3.9414062, 0.12658691, -2.0078125, -1.3359375, 1.6650391, 1.0576172, -0.50878906, 0.7246094, 0.22949219, 0.91845703, 0.31103516, 0.80126953, -2.5917969, 1.5117188, -0.46948242, -2.4667969, 3.4863281, 0.23181152, 0.2631836, -0.6489258, -2.1875, 1.2382812, -0.39672852, 0.5175781, 1.7792969, -0.9663086, 0.029449463, -0.48876953, 1.6933594, 0.085754395, -0.81396484, -0.23376465, -0.33496094, -0.9243164, -2.53125, 0.99902344, 3.7617188, 0.6333008, -1.9902344, 3.8046875, 0.22924805, 1.2363281, -0.3095703, 1.2675781, -1.7714844, 0.030075073, 2.8515625, 0.19238281, -1.7568359, 1.7998047, -2.0585938, -3.7714844, 1.7314453, -0.4423828, 0.6455078, -0.8276367, -0.20251465, 0.7338867, -1.6181641, 1.4960938, -0.85791016, -0.07293701, -2.265625, 0.5, 2.890625, 1.5117188, -2.8046875, 2.4335938, -3.3183594, -0.60791016, 0.31860352, 0.46044922, 1.1787109, 1.9365234, -1.8984375, -1.1318359, 4.515625, 0.4350586, 5.3164062, 0.2668457, 1.0058594, -0.71777344, 1.2519531, 2.2363281, 1.1621094, 0.1842041, 3.2128906, 0.19702148, -1.3886719, -1.0605469, 2.0898438, -0.34350586, -2.4609375, -1.6132812, -1.8886719, -2.5507812, -5.2109375, -0.58984375, -1.7675781, 0.57666016, 1.9833984, -0.36669922, -4.125, -2.3105469, 1.4570312, 3.1542969, 1.1035156, -1.5556641, 0.10638428, -1.6318359, -1.6230469, -1.6611328, 2.1640625, 0.7451172, -0.6303711, -1.7363281, 3.2480469, 1.1787109, -0.4645996, -2.7910156, -2.09375, 1.4462891, 0.6977539, -3.1542969, 0.23425293, 0.60253906, -0.03955078, 2.5214844, -0.013290405, -3.1328125, 0.041656494, -0.83154297, 1.3916016, -0.6645508, -0.47509766, 2.2714844, 1.0546875, -0.2553711, -2.3496094, -1.8964844, 0.45483398, 3.4941406, -0.70703125, -1.8916016, 0.7739258, -0.09399414, 0.78125, -1.3945312, 0.37280273, 0.74658203, 0.13879395, -0.24951172, -0.50683594, -2.0644531, 0.51416016, -2.5800781, 0.15881348, 1.2529297, -0.0032634735, -1.8632812, 0.7416992, 0.28564453, -3.1640625, 0.25878906, -1.4208984, -0.47094727, 1.2763672, 2.9023438, 1.171875, -0.78564453, 3.625, 0.55322266, -1.0947266, -2.1367188, 2.6640625, 0.7631836, 1.3886719, 1.2607422, 1.1494141, -0.84277344, 0.5957031, 1.3212891, -0.5698242, 1.765625, 0.17285156, -1.4306641, -1.0595703, -1.4931641, 3.2929688, 0.9951172, -0.61083984, -0.14196777, -1.6103516, 2.7695312, 2.7871094, -1.3925781, -0.17224121, -0.4645996, 0.31713867, -2.1386719, 0.7739258, 0.50146484, -3.0390625, 0.6533203, 0.61621094, 0.85498047, 2.4707031, -0.34765625, -1.1748047, -1.6757812, 0.105285645, -0.63720703, 1.0107422, -0.08544922, 0.9526367, -0.48120117, -1.9599609, -1.8779297, 1.9394531, 1.4541016, -0.48632812, 1.3232422, 0.14318848, -0.8911133, 3.3359375, 2.3320312, -3.6328125, 0.42822266, -0.08496094, 1.3574219, 3.2988281, 0.43676758, 2.6113281, -0.42260742, -1.6621094, 2.6074219, -0.060333252, 2.2558594, 1.296875, -1.2255859, 2.0800781, -2.2832031, 0.3972168, 0.39990234, 2.3066406, -0.27661133, -1.1611328, 0.8417969, 5.9023438, -0.5444336, -1.9785156, 1.3242188, -3.4589844, 1.0761719, 0.74316406, -0.28930664, 0.5883789, 0.15856934, 1.9033203, -1.953125, -0.6904297, 1.0087891, -3.0683594, -0.43847656, 1.0683594, -3.6582031, 1.3544922, 0.3618164, -1.9013672, -0.5053711, -0.75097656, -0.18139648, -1.0234375, 0.07659912, 4.171875, -3.0117188, 2.4707031, 1.8320312, -0.24987793, 0.39111328, -1.5058594, -2.2636719, 0.703125, 1.140625, 0.6933594, 1.7890625, 0.5678711, -1.4824219, -1.1328125, -2.1328125, 0.3154297, -0.71435547, -0.68115234, -1.8876953, 0.092163086, -2.7285156, -0.29541016, -0.8154297, -0.8779297, 0.80859375, -2.5507812, -0.45703125, -2.1914062, -3.1503906, -0.2163086, -0.4597168, -1.1748047, -0.21350098, 1.1386719, 1.7675781, -1.2128906, -3.2460938, 0.5107422, -0.19714355, -1.265625, -0.6660156, -1.6210938, 0.7416992, -1.0302734, 0.42407227, 0.7011719, 1.8398438, -0.64746094, -2.296875, -0.28735352, -4.0625, 0.34545898, -0.8017578, -0.12445068, 0.16479492, 0.39575195, -1.3652344, -0.48364258, -0.30419922, 0.53027344, 1.9404297, 0.052612305, 0.62109375, 0.31811523, -2.4960938, -1.1611328, -2.0820312, -2.515625, -0.42749023, -0.546875, -1.7177734, -0.7841797, -5, -0.47705078, -2.1640625, -0.16674805, -0.6508789, 0.5449219, -0.52734375, 0.48999023, -1.7080078, -1.5507812, -1.4853516, -1.46875, -0.87109375, -0.06402588, -2.4492188, -0.25268555, -0.4104004, -0.025131226, 1.0957031, 1.2851562, 0.7729492, 0.3869629, 0.77490234, 0.17919922, 0.17919922, -0.7373047, -3.4628906, 2.7949219, 1.6123047, 1.0097656, 0.9604492, -2.1191406, 0.32128906, -1.6103516, -1.5449219, 2.5507812, 1.0576172, 2.9902344, -0.46948242, -0.6699219, 0.5917969, 2.1152344, -1.0185547, -1.1416016, -0.44140625, 3.4355469, -2.6113281, -1.1464844, 2.0761719, 2.609375, -3.3945312, 0.08679199, 1.5058594, 1.171875, 1.5136719, 1.5742188, 1.5722656, -1.1757812, -0.21740723, -1.8271484, 4.109375, 1.8339844, 0.5541992, -2.6171875, -0.0574646, 0.41870117, -0.31811523, 2.5019531, 0.8623047, 1.5830078, 2.953125, 0.90527344, -2.9726562, -0.33813477, -0.052093506, 0.24255371, 1.7773438, 2.5800781, -0.6069336, -0.8359375, -2.4472656, -0.33032227, 2.0585938, -1.0273438, 1.2451172, -0.021331787, 0.9921875, 0.3515625, 0.01977539, 0.7294922, 1.7001953, -0.13293457, 3.3671875, 0.40185547, -0.8022461, 1.8037109, -1.6328125, -0.9638672, -1.921875, 1.6015625, -0.16992188, -0.9316406, 0.87060547, 1.0849609, -1.8847656, -2.5820312, 0.23596191, 0.6411133, -1.5576172, 2.5195312, 0.19580078, -0.9145508, -0.43725586, -1.3095703, 0.07696533, 1.4550781, -0.1270752, -0.7236328, -0.19335938, -0.28173828, -0.10345459, -0.028305054, 1.8447266, 1.8017578, 0.32055664, -0.2939453, -3.2753906, -0.6303711, 1.140625, -1.7607422, -0.32983398, 3.1660156, 0.5078125, 1.2636719, -0.053375244, 3.5371094, -2.6191406, -1.1923828, 1.3710938, -2.6582031, 0.1081543, -2.4667969, -4.03125, 1.2675781, 0.85546875, -1.1220703, 2.2480469, -0.54052734, -1.3652344, -0.37158203, 1.5429688, -1.9404297, -1.7841797, -2.3710938, 1.8769531, -2.8027344, 1.6513672, 1.2050781, -0.2524414, -3.6875, -1.7050781, 0.24645996, 0.6303711, 1.6298828, 2.4550781, -2.015625, 0.33447266, -1.1210938, 0.45141602, -1.2050781, -0.14355469, 1.3779297, -0.28637695, 1.0888672, -1.2333984, 1.6953125, 1.7138672, 0.7504883, 1.3535156, 2.6386719, 0.39208984, 1.3876953, -1.1914062, 1.6923828, 2.8222656, -0.084350586, -1.4658203, -1.3369141, -0.61035156, -2.0253906, -0.0925293, 0.7495117, -0.45483398, -2.5722656, 1.9814453, 1.5546875, 0.7524414, 2.6992188, 0.21166992, -1.4892578, 0.89941406, -0.0067100525, -0.90625, -1.9345703, 1.2802734, 0.3088379, -2.9667969, 0.42895508, 0.30737305, -1.015625, 0.23754883, -0.32104492, 0.64746094, 2.8046875, 0.35351562, 1.9130859, 2.8417969, 0.28930664, -2.6035156, 0.74072266, -1.6240234, -0.42333984, 0.70458984, -0.4206543, -0.075927734, 1.8701172, 1.0126953, -1.3720703, -1.0976562, -0.20251465, 0.27856445, -0.97998047, -2.2636719, 1.4296875, -0.80371094, -1.6923828, 2.1464844, -0.63378906, 2.609375, -1.9863281, -0.74609375, -0.0881958, 1.3789062, -1.3066406, -1.5537109, -0.6845703, 0.54248047, 0.61279297, 0.40283203, 0.32470703, -1.1035156, 1.6552734, 0.058166504, 3.4121094, 0.45874023, 1.4648438, -0.22009277, 1.1005859, -0.90234375, -0.18029785, 0.34765625, -0.51123047, 0.16345215, 3.1015625, 1.9492188, 0.1071167, 3.7207031, -1.1669922, -1.3515625, -0.08404541, 0.9316406, -2.1640625, 2.4082031, -0.26123047, -2.4980469, 0.9140625, 3.9394531, -0.029022217, 0.8588867, -1.2148438, -0.2841797, -0.9013672, -4.0859375, 0.19506836, -1.0546875, -0.21008301, 0.22021484, -1.640625, -0.20361328, -0.796875, 3.0195312, 2.0273438, -1.0537109, 0.1751709, 2.5136719, -1.1933594, 0.14465332, 0.20874023, -0.18896484, -3.7304688, 0.6713867, 2.0039062, -0.16455078, 2.5253906, -0.49609375, -0.113098145, -0.89208984, -1.3369141, -1.5361328, 3.4394531, -2.3378906, -0.9941406, 1.1591797, -0.15222168, -0.79785156, -0.1751709, -2.71875, -2.2324219, 2.6210938, 1.1142578, 0.17700195, -0.26391602, -0.57470703, -1.25, -3.8984375, 0.115722656, 1.2890625, -1.3242188, -1.0253906, 1.1708984, -0.77001953, -2.4101562, 0.9526367, -0.4658203, -1.8554688, 0.29833984, -0.07659912, 0.15429688, -0.5336914, -0.4946289, 0.75439453, 2.9550781, 0.5449219, -0.08325195, -0.63623047, -2.3945312, -0.9145508, 1.5126953, -3.2285156, 1.5439453, 0.34326172, 0.062072754, 0.6459961, 2.7675781, -0.15612793, -0.56884766, 3.1621094, 0.10522461, 0.49536133, -1.046875, -2.6484375, 2.3417969, 0.28955078, -1.0683594, -0.041046143, -0.4597168, -0.9482422, 0.78027344, 0.734375, -0.54003906, 1.0517578, 0.17785645, -1.7353516, 1.2353516, 0.38623047, 0.37524414, 1.6757812, 0.7885742, -0.81103516, -2.5683594, -4.0664062, -1.4335938, -1.5917969, -0.67626953, -0.5263672, 0.7236328, 0.6123047, -0.06341553, -0.41210938, -0.42993164, 0.2775879, -1.7207031, 0.87402344, 0.28393555, 4.125, 2.7519531, -1.1464844, -3.4140625, -2.9257812, -0.43896484, -0.31860352, 1.0585938, -1.9042969, 2.546875, -2.9726562, 0.54345703, 0.14978027, 2.4199219, 2.7070312, 1.0341797, -1.5009766, 1.109375, 2.0625, -0.8256836, 0.3022461, 0.33984375, -0.114746094, -0.29003906, 3.4257812, 0.63623047, 0.22668457, 3.9277344, -2.2617188, 1.7246094, -1.6181641, -2.4179688, 2.2753906, -0.4255371, -1.9921875, -3.4335938, -1.1484375, -0.21276855, 2.6503906, 1.4472656, -0.023468018, -1.2275391, 2.5117188, -0.4189453, 2.0097656, 1.2558594, 1.9111328, 0.59472656, 1.6191406, 0.63427734, 0.78222656, 3.2207031, -1.0947266, 2.6679688, -0.9375, -1.6230469, -0.4033203, 2.4453125, 1.2148438, 2.1445312, 2.84375, 1.2011719, 1.4736328, 0.43896484, 2.6113281, -0.39135742, 1.2548828, 2.5859375, 0.6035156, -0.8955078, 1.09375, 1.2919922, -1.5888672, -1.5996094, 1.1503906, -0.59472656, -0.1694336, 0.5209961, -0.78808594, 1.9355469, -4.5117188, 1.8896484, -1.0263672, 2.1308594, -0.2841797, 1.0224609, -0.34814453, -0.5078125, -0.53027344, -0.95751953, -1.5019531, -1.7148438, 0.56884766, -1.3925781, 0.8457031, -0.4506836, -2.9296875, -0.07354736, -1.078125, -2.6289062, -1.8886719, 1.3945312, 0.56103516, 0.99365234, -1.1552734, 0.36157227, 1.4785156, 0.56347656, 1.3339844, -1.3027344, -0.23168945, 0.02444458, 2.6074219, 0.51953125, -0.014785767, 0.3972168, -0.7026367, -3.6367188, -4.7734375, 2.03125, 0.97558594, 2.0078125, 1.1210938, -2.7792969, 3.1132812, 0.46655273, 2.1347656, -0.81152344, 1.3417969, -1.1123047, -0.7133789, -2.0097656, 0.012039185, 0.27172852, 4.2421875, 1.6074219, -0.31591797, 1.7001953, -0.78466797, 1.1904297, 0.6171875, 1.0830078, -0.20593262, -0.38598633, 0.36621094, 0.87158203, 1.7822266, -1.59375, 0.5629883, 2.6230469, 1.2119141, 0.06781006, 0.77490234, -1.9169922, 1.4580078, 0.39819336, -1.15625, 0.37280273, -1.4550781, -2.1054688, -0.8027344, -0.72021484, -1.4638672, -1.3652344, 0.88916016, 0.9453125, -0.80615234, 1.5244141, 0.9448242, 0.9765625, 2.1972656, 1.1728516, -0.8769531, -1.6191406, -0.38623047, 0.0625, -0.9433594, -1.7382812, 0.7392578, 0.8100586, 2.7480469, 0.9326172, 0.87060547, -0.99658203, -1.0136719, -0.57177734, 0.82714844, -1.0263672, -0.5019531, -0.15686035, 0.7060547, -1.7607422, 3.8085938, -0.9428711, -0.8310547, 0.6699219, -3.0449219, -1.0947266, -0.62402344, -0.48828125, 2.1601562, 1.8740234, 0.22094727, 1.1875, -2.0488281, -2.75, -2.8222656, -0.18774414, 1.2119141, 0.5595703, -0.27856445, 1.2744141, -0.39257812, 0.7519531, -1.3037109, -0.8413086, 0.10992432, -1.9384766, -0.43432617, 0.81396484, -0.45385742, -0.19970703, 3.3046875, -0.6455078, 2.4785156, 0.7583008, -0.94091797, 2.9472656, 1.4003906, 1.0742188, -2.3613281, 0.40722656, -1.1689453, 0.3088379, -1.0917969, 0.019958496, 3.2402344, 1.0507812, -1.2529297, -2.7539062, -1.9394531]}, "B00IZCNP5C": {"id": "B00IZCNP5C", "original": "Brand: Flame King\nName: Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black\nDescription: \nFeatures: Securely Holds Two 30 pounds Propane Tanks\nFast and Easy To Use\nBuilt From A Durable Powder Coated Steel\n", "embedding": [-3.3066406, 1.2119141, 0.7294922, 0.07281494, 0.609375, -3.9023438, -0.027389526, -0.86279297, 0.3190918, 0.29589844, 2.5371094, -0.12194824, 0.6923828, -3.3144531, 0.28833008, -0.33520508, -1.3740234, 1.5605469, 2.2011719, 0.5917969, 2.1972656, 0.8208008, -0.57910156, -1.2001953, 1.1005859, -1.0048828, 2.8164062, -2.5019531, 0.12780762, 0.4560547, 0.6821289, 0.09552002, 2.1777344, 2.0800781, -0.5131836, -2.0332031, -0.7973633, -1.2871094, -5.203125, -1.0107422, -2.4277344, -2.9414062, 2.3339844, 1.4912109, -0.17700195, -0.6982422, -0.20495605, -0.16491699, 0.4790039, -0.984375, 1.8037109, 2.4511719, -1.0039062, 1.6894531, -2.0644531, 0.25390625, -0.0848999, -1.6328125, 0.7421875, 0.1920166, 0.9301758, -0.4909668, -2.9082031, 1.8583984, 0.86035156, 2.7421875, 0.2479248, 0.50683594, 0.46704102, 1.2216797, 0.8569336, 0.8564453, 0.38061523, -2.4296875, -1.3496094, 0.5830078, -2.1289062, 0.37231445, 1.53125, -1.1005859, -0.49560547, 2.2988281, -0.70214844, -1.1513672, 0.8642578, -1.9023438, 0.7421875, 0.7285156, 0.63183594, 1.5742188, -2.2363281, 1.5654297, -1.3291016, -2.2226562, 1.5097656, 2.0136719, 1.3847656, 1.9316406, 2.0117188, 2.1679688, 0.3395996, 0.2142334, -1.4482422, 1.2138672, -3.34375, -2.3046875, -0.6904297, -2.828125, -2.1035156, 1.5507812, -0.87597656, -0.030532837, 2.0703125, -0.6347656, -0.9375, 0.8515625, -0.1953125, 1.4238281, 1.3212891, 1.5117188, 3.3730469, -1.3681641, 2.140625, -1.5380859, 2.1152344, 1.9414062, -0.4465332, 3.0195312, 4.4101562, 0.015052795, 2, 1.4873047, 3.0039062, -0.4104004, 0.92285156, -2.7265625, -0.119140625, -2.03125, -2.1386719, -0.65771484, -1.9433594, -0.54248047, 1.4824219, -0.35986328, -3.8417969, -0.67578125, -0.6894531, -0.96972656, -1.0605469, -2.7890625, 0.62597656, -1.9208984, 0.2487793, 0.56103516, 2.0429688, 2.3574219, -1.2753906, -2.8085938, 0.8955078, 2.1230469, 0.28295898, -1.0859375, -0.65527344, 1.6806641, -1.2519531, -2.7070312, -0.15270996, 1.7626953, -0.7753906, 1.8388672, 0.62890625, -1.4804688, 0.41381836, 0.7060547, -1.265625, -1.4111328, -0.9116211, 0.7373047, 0.33203125, 1.7333984, -2.4355469, -1.1259766, -1.6142578, 0.1628418, 0.9140625, 1.1035156, -0.7788086, -1.78125, 2.0078125, -0.64990234, -2.2832031, 3.0898438, -2.7949219, 0.048217773, 1.0712891, -2.1640625, -2.7636719, -1.7529297, 1.3271484, 1.6367188, -1.1972656, -2.1445312, 1.3398438, -0.5859375, -2.4179688, -2.6953125, 1.7910156, -0.87841797, 0.015792847, 2.5449219, -0.59521484, -0.35888672, 2.3457031, -2.0859375, -1.5292969, -2.0683594, 0.061676025, 2.4726562, 2.9960938, 2.8261719, -0.004699707, -0.14465332, 1.3242188, 1.0644531, 0.21606445, 0.59277344, 0.9243164, 0.38867188, -3.6484375, 0.79296875, -0.17822266, 1.0751953, 0.4650879, 1.3427734, -1.3574219, 1.3242188, 0.9213867, -1.7431641, 0.2697754, 1.6601562, 0.9692383, 0.7011719, -0.6425781, -1.5126953, -1.3457031, 0.74365234, 0.30859375, 0.578125, 1.8525391, -0.9165039, 0.2890625, -1.1103516, -0.79541016, -0.8935547, 0.8149414, 1.2138672, 0.3857422, -0.089416504, 1.1425781, -3.6386719, 1.7177734, 0.69628906, -1.5488281, -0.48217773, -0.5151367, 0.15124512, 1.9736328, -0.45776367, -3.4648438, 2.2773438, -1.4160156, 0.49951172, 1.6308594, -1.5263672, 1.8583984, 2.390625, -1.546875, 2.5683594, -0.5102539, 2.8339844, 1.0058594, 0.2524414, 0.4423828, -2.5097656, 0.66308594, 0.7246094, 1.2158203, -0.32006836, -0.6274414, 2.2675781, 5.453125, -1.0107422, -0.734375, 1.3671875, 1.6484375, 0.7504883, 2.7226562, 0.15771484, 0.9067383, 0.22180176, -0.93359375, 0.2401123, 0.39868164, 0.38989258, 0.5107422, -1.1640625, 1.2792969, 0.26220703, 1.7919922, 0.10845947, -0.31323242, 0.5786133, -2.578125, 0.15722656, -0.24414062, 0.36499023, 4.4179688, -2.7910156, 1.7568359, 3.8828125, -0.096191406, 1.9267578, 2.6582031, -2.6523438, -0.8251953, 1.6611328, -0.86279297, 1.1455078, 0.50878906, 2.2871094, 0.21350098, -2.2207031, 0.7841797, -0.6455078, -0.24169922, 1.0048828, 0.31152344, -1.6884766, -0.6064453, -0.5703125, 0.5180664, -0.94970703, -1.0224609, 1.2841797, -0.4489746, -1.8652344, -0.7446289, 1.0449219, -0.8955078, -2.3222656, -0.64208984, 2.3945312, 0.07556152, -2.2148438, 0.7631836, -0.7416992, 1.0703125, 4.1328125, -0.9790039, -0.089782715, -0.17333984, 1.234375, -0.40625, -0.13916016, -1.7373047, -1.6386719, 4.2773438, -0.97314453, 1.6542969, -0.9580078, -0.8520508, -2.3496094, -0.984375, -0.7480469, -2.6816406, 0.96777344, -1.3486328, 2.2011719, 1.3486328, 1.3359375, -0.5385742, -0.09674072, -0.112854004, -0.5498047, -1.1396484, -1.8964844, 0.31347656, -2.015625, -1.5849609, -3.5644531, -0.011795044, -0.24304199, -0.76220703, -0.69921875, 1.9580078, -2.2480469, 0.4091797, 0.47802734, 0.76464844, 0.36108398, 1.7431641, -1.0449219, -3.4414062, -0.8208008, 1.6533203, -1.2011719, -1.9433594, -0.9423828, 1.34375, -0.7128906, -0.7714844, -1.3554688, -2.2382812, 2.0722656, -0.0049705505, -1.5019531, 0.70458984, 0.6069336, 1.4960938, 4.5625, -2.7265625, -0.2915039, -3.2636719, 0.2890625, 4.9804688, 1.2167969, 0.5205078, 0.14111328, -1.4150391, 0.9472656, -0.6323242, 0.58935547, 1.9013672, -0.78271484, 4.46875, -1.0537109, -1.5878906, 0.53027344, 2.328125, -4.15625, 0.49682617, 1.4296875, 0.1015625, 1.6835938, 1.5224609, -0.11193848, -2.0839844, 0.24169922, 0.99121094, 2.6503906, 1.03125, 0.40161133, -0.8823242, -0.14160156, -1.3720703, 0.24230957, 2.5273438, 0.9243164, 1.2617188, 2.8867188, 1.4394531, -1.6367188, -1.5087891, -0.79296875, 1.4736328, -0.31640625, 2.7089844, -0.8930664, -0.56103516, -1.6240234, 0.265625, 0.6225586, -0.48168945, 1.6806641, 1.1289062, 2.8515625, -1.5068359, 0.36572266, -0.87353516, -1.59375, -2.5761719, 4.3242188, -2.5800781, 0.6713867, 0.9140625, -1.3818359, 0.4584961, -3.6679688, 3.3242188, -2.546875, 0.63720703, -0.6191406, 2.7597656, -0.72998047, -1.3349609, 0.82373047, -2.0957031, -3.2753906, 3.3027344, 1.21875, -2.2460938, -0.0960083, -0.9375, 1.7773438, 0.61572266, 0.5673828, 1.8242188, 0.93408203, 0.19628906, -0.72558594, -0.40966797, 0.14416504, -0.3005371, -1.6787109, 0.96191406, -3.015625, 2.6464844, -0.3972168, 0.09802246, -0.875, 1.6220703, -1.0722656, 2.3515625, -2.1132812, 4.9257812, -1.0332031, 2.25, 2.5976562, -2.4824219, 0.734375, -1.8623047, -2.4042969, 1.4179688, -2.2636719, -0.17236328, 2.0722656, -0.35473633, 0.8857422, 1.6298828, 0.30664062, -2.6699219, -0.03302002, -1.9169922, 2.5917969, -3.1855469, 0.55371094, 0.7626953, 1.21875, -2.2519531, -2.5507812, 0.35742188, -1.4472656, 0.71533203, 0.56103516, -1.0615234, 0.3959961, 2.5957031, -0.8442383, 0.9033203, 0.2006836, 1.3291016, -1.0654297, 0.17285156, -1.6435547, 3.8632812, 1.4980469, 0.2487793, 0.9121094, 2.3183594, 1.5488281, -1.7529297, -2.6992188, -2.15625, 2.0175781, 0.17456055, -4.84375, -2.5, -0.30273438, 0.9584961, -1.0849609, 1.0849609, -0.68847656, 0.3317871, 4.1835938, -0.3774414, 1.0878906, 1.6640625, -0.34106445, -1.5888672, 0.19555664, 1.0361328, 1.1015625, 1.0283203, -2.078125, -0.13195801, -2.0703125, 1.3388672, -2.7363281, -1.3076172, -2.2539062, -0.9560547, -3.7304688, 1.8828125, 1.4599609, 2.9941406, 0.94140625, 0.96777344, 0.47070312, 0.4404297, 0.45288086, -0.82666016, 0.49194336, 0.83447266, -0.8564453, 1.4794922, -0.76904297, -0.057434082, 0.076538086, 0.5839844, -0.7050781, -0.8071289, -0.26245117, 0.5029297, -2.25, -1.9775391, 1.4736328, 0.40454102, 4.3398438, -3.0195312, -0.46679688, -0.17578125, 1.6835938, -1.15625, 2.3632812, -0.29418945, -0.03665161, 1.9638672, 0.18078613, -0.37280273, 0.16552734, 3.6660156, 0.2529297, 1.3964844, -3.2597656, -0.27197266, -0.24450684, 0.09082031, -0.060272217, -0.20532227, 1.2431641, 0.8442383, 0.4338379, -0.03387451, 1.1757812, 0.7001953, 0.96777344, -0.6430664, -4.078125, -2.2167969, -0.26171875, -0.4958496, 1.9921875, -0.5229492, -2.8320312, -0.48339844, 0.93652344, 0.4934082, 1.0722656, 1.8017578, -0.9814453, -1.1630859, -2.1777344, -1.5332031, -2.9082031, -0.5385742, 0.5004883, 0.004337311, -0.26513672, -0.39453125, -0.82470703, -1.4003906, 1.2226562, -0.5180664, -0.90966797, -0.057525635, -2.4101562, -1.0068359, 0.8359375, -4.4375, -0.41064453, -0.7944336, 0.21105957, -0.06585693, 0.46875, 2.34375, -1.5898438, 1.0361328, -1.2167969, 2.4140625, -0.30786133, -1.8378906, 2.1875, -0.76464844, 2.2246094, -0.671875, 0.033294678, -2.2246094, 1.8535156, 0.9091797, -0.8300781, -1.9511719, 1.1132812, -2.6367188, -4.96875, -2.3066406, 0.39672852, 1.9589844, -0.12072754, -2.0273438, -2.2617188, -0.21594238, -0.38378906, 0.22363281, -2.0234375, 0.11260986, -0.70458984, -0.7788086, -1.8603516, 1.3974609, 1.4296875, 0.69091797, 0.10876465, -0.80908203, -1.8681641, -3.1113281, -2.3847656, 1.1230469, -1.2998047, 1.5703125, -0.14526367, -1.3564453, 0.7548828, 2.9414062, -0.8051758, -3.3632812, 2.0234375, -1.5878906, 0.36914062, 2.84375, -1.6601562, -2.5136719, 1.2910156, -1.2939453, 0.8857422, 1.6513672, 1.3144531, -3.3222656, 0.51220703, -1.2382812, 1.7695312, -2.7792969, 0.80371094, 1.6533203, 1.5869141, 1.9931641, 0.734375, -1.5615234, -3.1679688, -1.9111328, -0.99365234, -0.5498047, -3.3671875, -0.45410156, -1.4160156, 1.9287109, -0.13024902, -1.0957031, -0.3190918, 0.004234314, -1.0380859, -1.0986328, 1.8193359, -3.7265625, 1.53125, 1.5283203, -1.6494141, -1.5214844, -1.1416016, 0.9819336, 0.23010254, -1.3652344, 1.2822266, 0.765625, 0.4091797, 1.4384766, -0.3935547, 2.2949219, 1.6113281, 1.7939453, -2.5996094, 0.89453125, 2.9140625, -0.24291992, -0.043518066, 0.021377563, -2.6503906, 1.1484375, 1.6191406, 0.79003906, -2.8378906, 0.94091797, 2.1835938, 0.032440186, 0.67626953, -1.46875, -0.69677734, -2.9179688, -1.4052734, -0.5073242, -1.5898438, -4.6640625, 2.2382812, -0.018814087, -1.6083984, 0.9121094, 0.93115234, 0.12298584, 0.4309082, 2.0761719, 0.81103516, -1.2958984, -0.7583008, 0.55029297, 1.0039062, 2.9316406, -1.5917969, 1.0751953, 0.62402344, 0.8232422, 0.05987549, 0.734375, -2.546875, 1.6669922, 1.1611328, 1.7861328, 5.2070312, -1.8945312, 2.7539062, -0.9091797, 1.5078125, 4.5429688, 0.10583496, 0.42236328, 0.012062073, 2.3925781, 0.38012695, -1.5791016, 0.6582031, -0.011245728, -0.035614014, 0.12512207, -0.17663574, 0.056854248, -1.5126953, 0.91796875, -0.51464844, -0.5527344, 0.9765625, 0.48217773, -1.2998047, -0.08880615, -0.58935547, 1.1298828, 0.58740234, -0.79541016, 0.9008789, -0.37670898, 0.13989258, 0.69091797, -0.23156738, -0.44677734, -1.1416016, -1.8085938, -0.08666992, 3.2070312, 0.8066406, -0.41796875, 0.3959961, 0.3840332, 0.16516113, 0.74902344, -0.2211914, -0.29296875, 0.77246094, -0.89941406, 1.6269531, 1.5361328, -0.55566406, 3.1796875, 1.7011719, -1.0429688, -4.4296875, 0.8569336, -2.5917969, -0.3322754, -0.5498047, -1.796875, 0.7207031, -0.7758789, 0.9301758, -3.2519531, -0.045654297, 0.30688477, -2.1210938, 1.875, 1.0175781, 0.5239258, 3.9160156, 2.8613281, -0.9746094, 1.7177734, -0.45947266, 0.44726562, 0.45581055, 0.90722656, -1.2216797, 3.0800781, -0.9189453, 2.3886719, -0.40673828, 0.5756836, -1.84375, 1.7646484, -0.1907959, 0.25146484, 0.91064453, -2.5703125, 2.3789062, 0.45361328, -0.09674072, 0.90527344, -3.1660156, 0.086120605, -0.24938965, -0.52197266, 1.4121094, -0.16296387, -1.5927734, 2.8242188, -2.0371094, -0.30322266, 2.4296875, -0.9091797, 1.4501953, -0.10986328, -1.1816406, -1.5351562, 1.6962891, 1.3310547, -1.9755859, -1.6523438, 0.90185547, 2.9179688, 0.046020508, -2.34375, -1.1972656, 0.8774414, -0.8383789, -0.5571289, 0.73046875, -0.9169922, -0.40820312, 1.3515625, -0.5703125, 0.4729004, 2.6582031, -0.45410156, 1.1992188, -0.9560547, -0.7714844, -0.3647461, 0.4296875, -2.4140625, -1.3564453, 1.0888672, 1.3955078, -0.63183594, 0.8588867, -3.40625, -1.0058594, -1.78125, 3.3671875, -0.7006836, -3.2265625, 0.19750977, 0.35498047, 2.28125, -0.97802734, -0.2890625, -0.48266602, 0.3395996, 0.8520508, -1.0263672, 1.4970703, -0.2368164, 0.041534424, -1.3730469, 2.9082031, 2.2109375, -1.8769531, 0.018188477, 0.34350586, -1.3759766, -0.97216797, -1.7861328, -1.3574219, -1.7841797, 1.3105469, 2.078125, 2.6210938, 1.7285156, -1.5917969, -3.7402344, -1.1162109]}, "B07MV43X4C": {"id": "B07MV43X4C", "original": "Brand: Cedar Green\nName: Cedar Green 330SA Earth Anchor, Black\nDescription: \nFeatures: Each Package Includes 6 Earth Anchors\n30\" Length with 3\" Dia Helix Auger & 1\" Inside Ring\nHeavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding\nEasy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs\nIdeal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake\n", "embedding": [-0.9926758, 1.1035156, 0.19934082, -1.7568359, 0.57714844, 0.7246094, -1.375, -1.6601562, 1.5771484, 0.6640625, 0.60498047, 2.8300781, -1.1357422, -4.3164062, -0.35009766, -1.4726562, -1.6025391, 0.9765625, -0.43115234, -2.3828125, 2.7949219, 0.4440918, 0.53222656, -1.8369141, 2.3984375, -0.36865234, 3.4238281, 0.15454102, 0.77685547, 2.0019531, 1.6523438, 0.6074219, 0.12036133, 1.0107422, -2.4453125, 0.33447266, 0.49389648, 0.48608398, -0.065979004, 1.1035156, -2.0117188, 1.0009766, 1.9882812, 1.2089844, -2.9160156, 2.3144531, 1.4238281, 1.0732422, 1.8115234, -1.1044922, 1.3076172, 2.0761719, -1.4326172, -0.5395508, -1.4580078, -0.6040039, -1.5146484, -3.9667969, 3.9765625, -0.014930725, 0.06213379, -0.8051758, -0.50439453, 2.8945312, -0.52197266, -0.105895996, -0.14257812, 0.55908203, 0.28295898, 2.1328125, -0.6821289, 1.7412109, -2.1152344, -1.2050781, -1.7070312, 0.6855469, -2.6699219, 1.2158203, -1.1289062, -1.9023438, -2.8984375, 1.4853516, -0.55126953, -1.5634766, -0.36547852, -1.0087891, -3.0957031, -0.7939453, -1.8017578, -3.3632812, -0.28076172, -0.50146484, -3.2519531, -5.6953125, -0.00061273575, -1.8574219, -0.9165039, -1.265625, -0.23498535, 2.6035156, -0.26708984, -2.4648438, 0.71533203, 0.8774414, -3.5390625, -0.81933594, 1.0029297, -0.8515625, 0.32836914, 1.6191406, -0.5341797, -0.13427734, 0.7392578, 0.7294922, -0.7661133, -0.4428711, 0.78027344, -0.91748047, 1.7041016, -0.1171875, 2.4609375, 0.3828125, -1.6767578, 1.1445312, 0.734375, 1.5117188, -0.33447266, 1.1054688, 1.1757812, -1.1894531, 1.3027344, -1.2646484, -1.4267578, 2.3085938, -0.4111328, 0.07543945, 1.4589844, 0.15161133, 1.2568359, 1.6728516, -3.28125, 3.3242188, 0.7270508, -0.6508789, -3.2285156, 1.5322266, -3.0292969, 0.4140625, -2.0253906, -1.2539062, -1.2285156, -1.5351562, -1.2958984, -1.3261719, 1.7099609, 1.4082031, -0.66845703, -1.0771484, 0.60009766, 2.0332031, -1.1738281, -1.7773438, -0.44580078, -2.5625, 0.75097656, -1.9707031, 1.2978516, -0.8725586, -0.6958008, 1.5273438, -0.13781738, -0.97314453, 2.5351562, 0.6430664, 0.07006836, -0.8886719, 0.4255371, -0.19604492, 0.06604004, -0.3791504, 0.6826172, 0.6982422, 0.27905273, 0.02281189, 0.25561523, 1.0458984, -0.006465912, -2.2070312, 0.3564453, -0.7734375, 0.66503906, -0.95214844, -2.5214844, -0.016983032, 1.5556641, -1.5585938, -0.5620117, 0.40625, 0.7006836, 1.8789062, -1.1816406, 2.1757812, -0.63378906, -0.041625977, -0.94433594, 0.18139648, -1.6318359, 0.3010254, 0.38061523, -0.6542969, 0.48828125, 0.32470703, -0.10949707, 1.1445312, 0.21875, -0.9770508, -0.7446289, -0.80810547, 2.0742188, 0.57470703, 0.97558594, 0.06542969, -2.6289062, -0.7504883, 1.3613281, -0.28295898, -1.3662109, -1.4443359, -0.25878906, 2.2753906, 1.7666016, 0.56591797, 0.8359375, 1.078125, 0.06237793, 1.1416016, -0.3527832, 1.5585938, 0.61376953, 0.4338379, 1.0351562, 0.2758789, -3.125, 0.30981445, -0.81933594, -1.1367188, -0.5649414, 1.5302734, -0.7910156, -0.48413086, -0.4892578, -1.4433594, -1.1386719, 1.0273438, 1.75, 2.4472656, -1.8544922, 2.0761719, -0.2824707, -2.6347656, -0.3828125, 0.3479004, 0.27685547, -0.6586914, 2.8203125, -1.0117188, -3.0019531, -0.31347656, -0.7993164, -1.8603516, -0.6220703, -1.4482422, 0.29760742, -0.7841797, 1.3105469, 0.37597656, -0.26513672, 1.671875, -1.9511719, 1.5, 0.17834473, 0.25097656, 1.0449219, -2.0761719, 0.7783203, -1.2089844, -1.375, -1.5839844, 0.9404297, 1.6044922, 2.0273438, -3.6757812, -3.6660156, 1.6552734, 0.57910156, 0.21154785, -0.113586426, 0.16491699, -0.15795898, 1.0400391, -0.1508789, 1.3955078, 0.15991211, 1.0332031, -0.17797852, 1.7392578, -1.1494141, 0.058258057, -0.6933594, 2.5820312, -0.8100586, -0.1541748, -0.6269531, 2.1738281, -1.7353516, 0.4963379, 1.7675781, -2.1054688, 0.39282227, 2.2636719, 1.1103516, 0.6196289, 0.51123047, -1.6972656, -1.7646484, 2.46875, -1.0332031, 0.1105957, -0.18884277, 0.026107788, 1.3417969, -1.4326172, -0.25048828, -0.83935547, 0.35424805, -2.3867188, 0.41918945, -1.6210938, -1.8544922, -1.125, 1.6386719, -0.9433594, 2.2382812, 1.0527344, 0.9423828, -1.8896484, 1.1865234, 3.3632812, 1.0146484, 3.8984375, 0.29467773, 2.2851562, -2.4570312, -1.9472656, -0.9921875, 0.6044922, 2.3261719, 3.5742188, -1.1464844, 0.8491211, 1.7236328, 3.1445312, 0.46972656, -1.4287109, 0.3725586, 2.4277344, -0.089782715, -1.3554688, 2.6699219, -0.53027344, 0.18371582, 0.4555664, 0.31591797, -0.54248047, 0.28930664, 0.91845703, 0.39208984, 4.5976562, 2.0410156, 1.4208984, -1.5800781, 0.26000977, 0.5654297, -2.1679688, 1.0175781, 0.5234375, -1.0996094, -1.1396484, 0.24719238, -1.6582031, 0.1239624, 0.31225586, 0.8432617, -0.77001953, -0.11999512, 0.20117188, -0.07318115, 0.29833984, 0.68847656, 0.06567383, -0.1496582, 0.33740234, 1.1982422, 0.34350586, -0.5292969, -1.8261719, -2.8652344, -0.43798828, 1.0273438, 0.3400879, -0.6816406, 1.0800781, 0.08276367, 0.6435547, 2.0800781, -2.2578125, 2.7363281, 1.7089844, -0.8041992, 1.5820312, -1.6542969, -0.43115234, -1.3544922, 1.6201172, 3.4980469, 0.22460938, 1.625, 0.52734375, 0.6171875, 0.56103516, 1.4267578, 1.5771484, -0.9272461, 1.6025391, -0.7944336, 1.8896484, 0.73095703, -0.24804688, 1.9306641, -2.7226562, -0.2409668, 1.3652344, 2.2109375, 2.5292969, 1.8994141, 0.86621094, 1.0761719, -0.27954102, -2.4570312, -1.1220703, 0.0019321442, -0.27197266, -0.5214844, 0.089416504, -0.29736328, 0.8671875, -0.40844727, 0.26464844, 1.0058594, 1.0351562, -3.3671875, 0.2548828, -1.8486328, -1.1308594, -1.7333984, -0.6201172, -1.2587891, -0.5151367, 1.8691406, 2.8535156, -0.9267578, 0.7260742, -0.08099365, 0.8017578, 1.5683594, -1.7802734, -1.6269531, 0.4584961, 1.9912109, -0.11230469, -1.3457031, -0.101989746, -0.13061523, -1.4492188, -0.9121094, -1.8642578, -0.29541016, -0.51708984, 2.4179688, 0.21362305, -1.4482422, -3.6171875, 1.890625, 0.32958984, -0.61279297, -1.8105469, -1.6699219, 1.2304688, 0.19506836, 1.0830078, -0.17895508, 3.1367188, -2.3457031, 1.8320312, -0.10601807, 2.3769531, -1.2607422, -0.7949219, -0.8222656, -1.2080078, 1.2714844, -2.6914062, -0.08166504, -1.6855469, 2.0664062, -0.6357422, 1.9755859, 2.4335938, -0.10522461, -0.23950195, 1.6142578, -0.6147461, 1.0566406, -0.1628418, 1.6679688, -6.574392e-05, 0.9267578, 2.1738281, -0.6196289, 1.1943359, -0.34985352, -1.578125, -1.2568359, -1.6240234, 1.4599609, 3.2480469, -0.46362305, 1.3339844, 1.796875, 0.6777344, -2.4960938, -0.42285156, -2.9394531, -0.12902832, -1.328125, -1.4267578, -1.4960938, 1.0869141, -0.22094727, -1.8798828, 0.12335205, -1.453125, 0.19165039, -0.6455078, -0.45410156, 0.55566406, 0.5839844, -0.9082031, -0.42041016, -1.1171875, 0.7583008, -0.9770508, 2.0234375, -0.19750977, 0.5214844, 1.6835938, -0.55371094, 1.5957031, 2.6015625, -1.2480469, -0.57910156, -1.1738281, -3.2832031, 0.07507324, -0.54345703, -2.0253906, 1.8769531, -1.0644531, 3.1640625, -2.5703125, 0.7753906, 1.5273438, -0.7607422, 1.5458984, 0.53222656, 0.86621094, 0.84277344, -0.54785156, 0.8803711, 0.8286133, 1.3710938, 0.48583984, -1.8115234, -2.3222656, 1.0078125, -1.4326172, 1.6582031, -2.1679688, -0.4326172, 2.4082031, 1.1601562, -0.5761719, 0.84277344, 1.359375, 0.8222656, 2.9609375, -1.1494141, 0.08215332, -0.19519043, 2.1914062, 0.5810547, 1.6494141, -0.5517578, 0.35302734, -1.6142578, -0.9863281, -2.2148438, -0.95996094, 0.6591797, -0.29101562, 0.51708984, -1.7207031, -0.14404297, 0.82470703, 1.5712891, -0.69189453, -1.78125, 1.0839844, -0.8227539, 0.55371094, 1.1708984, 2.1210938, -2.7675781, 2.6347656, -0.31518555, -0.6113281, 1.8769531, -0.8510742, 2.1386719, 0.21081543, 0.7475586, 0.2541504, -0.05419922, -1.3544922, -1.2070312, 0.7265625, -3.0097656, 0.5751953, 1.6523438, -0.070129395, -0.49438477, 1.3994141, 0.44384766, 0.9555664, 0.54541016, 2.6796875, 1.7636719, -0.2866211, -0.55566406, -1.7333984, -0.8251953, 2.7773438, -0.19055176, -3.25, -0.6142578, 1.265625, -0.21350098, 2.0078125, 0.50097656, -0.86816406, 1.0498047, 0.9375, 1.1933594, 1.0927734, -1.2666016, 3, 2.5605469, -1.5947266, -0.97753906, -0.3828125, 0.7915039, -0.9267578, -0.49072266, -0.1784668, 0.8232422, -1.3134766, -2.1757812, -0.6230469, -2.5644531, -1.7011719, -0.054534912, 1.6894531, -0.29541016, 0.9550781, 3.3730469, -0.9501953, -0.6098633, -1.2509766, 0.4716797, -1.9052734, -1.3378906, 0.9536133, 0.30126953, 2.6035156, -0.20947266, -1.3164062, 1.2587891, 0.3334961, 2.4453125, -0.1784668, -1.7753906, 0.78808594, -3.1894531, -2.1777344, 0.7290039, -1.1132812, -0.4724121, -0.8017578, -0.3347168, -0.9638672, -1.1630859, -0.2919922, -0.6459961, 2.96875, -0.43017578, 0.20385742, 0.04244995, 0.3894043, -0.38964844, -1.6494141, -0.45996094, -0.6328125, 1.8701172, 0.3864746, -1.40625, -2.4667969, -0.08679199, 0.74121094, 1.1152344, 0.091796875, 1.0996094, 2.4609375, 1.9199219, 1.9375, -1.3398438, 0.97314453, -2.2792969, 1.3691406, 1.2333984, -1.3232422, 0.7314453, 0.42407227, -0.49243164, -0.87841797, -0.44140625, 2.3867188, -1.5585938, -0.53515625, 2.3457031, -0.61376953, 3.1855469, 1.8896484, 1.453125, -0.02142334, 3.2832031, 1.1552734, -2.8574219, 1.1894531, -1.4013672, -0.13598633, 1.3710938, -2.6699219, -0.55078125, -0.9760742, 2.4492188, 0.7050781, -0.59277344, 1.9355469, -0.14782715, 1.2919922, -0.7836914, -0.5810547, -2.0996094, 1.1171875, -0.5488281, -1.0371094, -2.8242188, -2.6425781, 0.8120117, 3.0742188, -0.72216797, -0.98779297, -2.0703125, -1.7861328, -2.2382812, -0.48266602, 1.1416016, 2.7597656, 1.2128906, 0.015266418, 0.5786133, 0.58984375, 0.075927734, 0.7348633, 0.5048828, 3.0390625, -1.5117188, 1.1279297, 1.5400391, -1.2773438, 1.4570312, -0.1583252, -0.89160156, -0.17138672, -1.0917969, 0.7963867, -1.2138672, 1.3710938, -2.1269531, 1.2001953, -4.9179688, -1.0322266, -0.8173828, 0.32763672, 0.70654297, -0.47094727, -2.0761719, 1.2177734, 0.34472656, 0.51953125, -1.7119141, -1.8974609, 0.28857422, -0.65527344, 0.25878906, -1.9287109, -0.9921875, -0.2244873, 1.5722656, -0.9423828, -0.25048828, -1.0400391, 0.24035645, 2.2988281, 2.9785156, 2.8554688, 1.9619141, 0.6245117, 1.1484375, 1.8759766, 1.0556641, -1.3193359, 0.37158203, 2.1777344, 0.46728516, 1.4960938, -0.71875, -0.79785156, 1.3642578, 1.4697266, 0.59472656, 1.4150391, 0.78564453, -2.9648438, 0.27514648, 1.0380859, 0.89941406, -1.4990234, 1.5830078, -0.70410156, -0.98779297, 0.9458008, -0.34643555, -1.7080078, 1.6923828, -0.90283203, 0.8173828, -1.7080078, -0.20129395, -1.0224609, -1.1513672, -1.4482422, 0.5292969, -0.7519531, 1.7294922, 1.7275391, 1.0371094, -0.60253906, 2.1582031, 0.20129395, -0.72314453, -1.4726562, 0.21032715, 0.5229492, 0.13354492, 0.64501953, -0.90283203, -1.1181641, -0.5732422, 0.38793945, -1.7207031, -1.7207031, -0.08355713, 0.40576172, 0.37231445, 1.3525391, -3.96875, 1.3662109, 1.1464844, 2.4863281, -1.9951172, -1.0458984, -1.2001953, -2.6230469, -0.7890625, -1.2119141, 2.5175781, 1.5253906, 0.6958008, -0.5961914, -0.96191406, 0.9448242, 0.6040039, 0.8208008, 0.60253906, 0.8208008, 1.8291016, -0.5214844, 3.1601562, -0.77001953, 0.027862549, 0.46533203, -0.9042969, 1.2070312, 0.6201172, -0.20910645, -1.7041016, 0.88378906, -0.30200195, -0.3178711, -1.046875, -0.37231445, -1.6396484, 0.49169922, -0.81933594, 1.0009766, 0.5151367, -1.0380859, 1.4482422, 1.7753906, 1.9824219, -1.2060547, -1.6474609, 0.6928711, -0.16918945, 0.01977539, -1.7304688, -1.6757812, 2.0898438, -1.84375, 1.0947266, -0.73535156, 2.4726562, -2.0351562, -1.6425781, -0.1303711, 0.4555664, -0.020889282, 0.06222534, -0.60009766, -0.9628906, 2.0605469, 1.703125, 0.9716797, -0.33251953, 1.0009766, 1.4599609, -3.3554688, 1.5224609, -1.9414062, 0.71191406, -1.2587891, -0.01159668, -0.09057617, 2.0390625, 1.0878906, 0.3310547, -1.4130859, -2.1699219, -0.33813477, -1.2568359, 1.3320312, 0.37451172, -1.9023438, -1.1494141, 0.74902344, 1.1171875, 2.1953125, 0.19946289, -2.2851562, -1.1943359, 1.7167969, -1.2050781, 0.3166504, 0.08300781, -1.7167969, -0.24389648, 2.6523438, 2.2167969, 1.5644531, -0.5161133, 2.015625, -0.9321289, -0.96533203, 1.9638672, -1.1308594, 0.17553711, -0.7861328, -0.56152344, -0.022354126, -0.11584473, -2.6464844, -1.6445312, -0.7036133]}, "B004Q068YC": {"id": "B004Q068YC", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n4 Stainless steel burners\n48,800 BTU-per-hour input\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n", "embedding": [-1.4560547, 0.9658203, 1.7480469, 0.25927734, -0.18945312, 0.1340332, 0.023773193, -2.2128906, 0.6347656, 1.6894531, 2.7558594, -0.72802734, -0.5253906, -3.7050781, -0.023483276, -0.07873535, 3.4296875, 0.020004272, -0.011268616, 1.6337891, 0.37280273, 1.0205078, 3.6464844, -2.2773438, 0.9458008, 0.55810547, 2.5585938, -4.6367188, -2.5820312, -2.7441406, 0.69433594, 0.50683594, 0.45898438, 1.8583984, -4.2304688, -2.1992188, -2.8828125, 0.9746094, -2.9257812, 0.8652344, 0.6479492, -2.7050781, 0.036193848, -1.4511719, -2.2285156, 0.859375, 1.7949219, 0.14587402, -3.2695312, -0.6538086, 3.296875, 1.9882812, -1.2724609, 1.4453125, -0.98535156, 1.6171875, 1.7871094, -1.9335938, 0.36254883, 0.047302246, 2.5917969, -0.20141602, -1.46875, -1.7802734, -1.8466797, -0.76708984, -0.46948242, 0.45947266, 0.80908203, 1.3828125, 4.0351562, -2.2910156, -2.1601562, 2.0449219, -0.32543945, -1.3896484, -2.5175781, 2.703125, -0.44384766, -0.52246094, -1.9521484, 2.1289062, 2.4277344, -1.8632812, -0.14526367, 1.5039062, -0.17480469, -3.2363281, 1.46875, 0.5463867, -1.0996094, 1.3857422, -2.1132812, -2.0625, 2.3085938, -0.44091797, 0.84033203, 1.1132812, -0.3798828, 0.49047852, -1.2783203, 2.7636719, 0.42773438, -0.2487793, -2.2148438, -2.7851562, 1.8769531, -0.16223145, -3.5839844, -1.3789062, -1.2890625, 0.9169922, 0.44091797, 1.5810547, 1.2197266, 0.72998047, 1.4375, 2.6757812, 0.83740234, 1.1123047, 2.3320312, -1.5947266, 0.48120117, -0.8671875, -1.3818359, 0.41552734, -2.1738281, 2.1738281, 2.6875, -1.9355469, -0.46240234, -1.5869141, 4.2460938, 1.4365234, 0.6567383, -0.9663086, -1.7226562, -1.1884766, -3.390625, -0.068359375, -2.125, 1.5361328, 0.07611084, -1.4873047, -3.8417969, 1.0009766, -0.11352539, -0.122802734, 0.06854248, -1.1972656, -0.75146484, -1.8691406, 0.51708984, -3.5410156, 2.1152344, -0.6748047, -0.18859863, 0.86279297, 3.8808594, 2.8710938, 2.421875, -0.56933594, -3.0390625, -0.8642578, 1.6865234, -1.9677734, 0.96875, 0.65625, 0.046844482, 1.7392578, -0.39111328, -0.87158203, -0.5498047, 1.1181641, 1.6455078, -1.2275391, 0.32763672, 2.7011719, 0.3762207, -0.54003906, 1.4296875, -2.6523438, 1.0869141, -0.9941406, -0.75390625, -0.1965332, 2.90625, 1.0039062, 2.1953125, -1.3515625, 0.26586914, -1.0429688, 1.8095703, -1.6162109, 2.28125, -0.15588379, -2.96875, -2.0722656, 1.7128906, -0.8881836, -0.038848877, -0.36132812, 1.2919922, 0.08508301, -0.3334961, -2.6210938, -0.81689453, -2.9394531, -0.69433594, 1.1835938, 1.7646484, -0.69921875, 0.45336914, -1.0117188, 0.4206543, -0.14733887, 1.8828125, 0.82421875, -0.4951172, 3.9140625, -0.34326172, -0.40039062, 1.6884766, 1.2646484, 0.5864258, 0.8720703, 0.3022461, 1.1416016, -2.0136719, -2.0078125, 4.7421875, -0.75097656, -0.35107422, 1.3916016, 0.29418945, 3.0117188, 1.3984375, -1.2792969, 0.7792969, 1.2431641, 0.49365234, -0.7260742, -3.2167969, -1.1806641, -1.3955078, -1.5439453, -1.1777344, 1.1640625, 1.9394531, 1.3310547, 0.13867188, 0.090026855, 0.9873047, 1.4169922, -0.3972168, 1.0039062, -1.8818359, 0.9628906, -0.54589844, -2.8828125, 1.5332031, 0.27441406, -0.6748047, 0.7163086, 1.4931641, -2.3007812, 1.2558594, 1.2197266, -1.9365234, -2.4570312, -0.21472168, 0.39819336, 1.4169922, -3.3066406, 2.359375, 0.6923828, -1.5205078, 4.2226562, 1.5527344, 0.46948242, 0.8642578, -1.9550781, 2.2578125, -2.8554688, -0.66552734, 1.1933594, 2.1269531, -0.8486328, -1.0976562, -0.5620117, 4.4609375, -0.99316406, -2.1054688, 1.4404297, -1.3193359, 0.7182617, 2.75, 1.1210938, -0.98535156, 0.44091797, 2.9179688, -0.118652344, 0.5366211, 2.6484375, -0.62353516, -1.9648438, 0.52734375, -2.2695312, 0.296875, 1.0800781, -1.6240234, -0.83691406, -1.4609375, 1.5683594, -2.4628906, -0.16003418, 3.2871094, -2.9023438, 0.23339844, -0.30517578, 1.4736328, -0.29125977, -1.8212891, 0.95410156, -0.89453125, -0.73779297, -0.41064453, -0.1920166, -0.8574219, 0.14172363, -0.03375244, -0.9086914, -0.88427734, -3.1660156, -2.2695312, -0.91748047, -2.3964844, -2.3125, 0.22241211, -0.7348633, -0.15234375, 1.1113281, -3.5253906, -1.8632812, -0.44750977, -1.328125, -0.109191895, -0.3515625, -0.42578125, 0.39501953, 0.55126953, 1.6816406, -1.2890625, -1.9941406, -0.29125977, -0.0513916, 0.23742676, -0.5913086, 0.21044922, 0.10449219, -0.8310547, 1.0986328, -0.7729492, 1.6542969, 2.0742188, -1.7880859, -0.5019531, -3.0800781, 0.1932373, -3.3847656, 1.4511719, 0.07171631, 1.9365234, -3.1191406, -2.2597656, -0.4182129, 0.15185547, 3.84375, 0.9506836, 3.1445312, -0.65722656, 0.73876953, 0.34399414, -2.0039062, -1.4404297, 1.0332031, 1.7841797, -1.7421875, 1.5957031, -0.69140625, 0.04751587, -1.4277344, 0.25610352, -0.34692383, -0.47265625, -1.3066406, -0.25805664, -1.3447266, 0.8486328, -0.8232422, 1.0917969, -0.9404297, -1.3779297, -3.1484375, -1.5146484, -0.8911133, -1.2128906, -0.85546875, 0.86621094, -1.0585938, 1.6777344, 1.7675781, -0.44018555, 0.66015625, -0.9428711, -2.9667969, 3.1757812, 0.33618164, -2.3867188, 2.3613281, -2.5371094, -1.2226562, -2.2714844, 0.515625, 2.0078125, -0.3720703, 2.0234375, 1.78125, 0.9707031, 0.265625, -1.3955078, 0.22814941, -2.3046875, 0.3408203, 2.9160156, -2.3613281, -1.0097656, 0.50390625, 0.13232422, -2.8671875, 0.3959961, 3.2109375, 2.6445312, 2.7011719, 1.6523438, 0.3334961, 1.9560547, -1.9511719, 0.5830078, 0.95751953, 0.13171387, -0.1616211, -0.9921875, 2.2871094, -0.9863281, 2.4648438, 1.3125, 2.1777344, 3.4257812, 0.1928711, 0.5522461, 0.3869629, -0.7758789, 0.58984375, 1.6845703, -0.00021779537, 2.3632812, -0.7661133, -1.3740234, -2.15625, -0.07208252, -0.076416016, -0.2355957, -2.6152344, 0.81396484, -1.3945312, 0.54833984, 0.41015625, -0.7138672, 2.2851562, -0.9013672, -0.29541016, -0.45092773, 0.0024642944, 2.09375, -1.2470703, -0.061645508, -1.7724609, 0.007003784, -0.6503906, -2.3691406, 1.2265625, 3.2929688, -1.4648438, -1.0478516, -0.04208374, -1.6962891, 0.57910156, 2.5878906, -0.9345703, -0.09942627, 1.0380859, -2.6445312, 1.4580078, 2.1230469, 0.93896484, -1.2001953, -0.85595703, 0.7285156, -0.31689453, 0.39160156, 2.8183594, 0.057128906, -2.6542969, -0.5385742, -3.9003906, -1.3349609, 0.9980469, -1.7910156, -0.2253418, 2.8984375, 2.5214844, 0.33496094, -0.7709961, 2.0742188, -1.0898438, 0.5439453, 2.3808594, -3.7578125, 0.09490967, -4.5625, -3.5566406, 0.7685547, -2.65625, 0.57470703, -0.9506836, 1.2050781, -0.671875, 2.1992188, -0.53564453, -1.7089844, -0.9140625, -0.11279297, 0.3149414, -0.5419922, 1.1630859, -0.9091797, 0.40551758, -1.0566406, -3.1210938, -0.1932373, 0.7597656, 1.6787109, 0.2890625, -5.0976562, -0.066833496, -1.2236328, -0.8310547, -1.1601562, -1.1914062, 2.0898438, -0.5292969, 0.38549805, -3.0683594, 2.0839844, 1.1259766, -1.0224609, 0.9902344, 2.2070312, -0.53466797, -2.9433594, 1.2675781, 0.73876953, 3.0703125, -0.79248047, -1.8330078, -0.7314453, 0.28588867, 0.99121094, -1.4121094, 0.2298584, 0.9345703, -1.828125, 0.91748047, 2, 2.7558594, 0.7558594, 0.5180664, -3.0078125, -0.6411133, 0.8886719, -1.1513672, -3.2773438, -1.4111328, 0.9121094, -2.0664062, -0.359375, -2.3925781, -0.2565918, 0.39941406, -1.3076172, -3.0449219, 2.828125, 4.1640625, 1.7236328, 1.9316406, -0.80615234, 1.6982422, -1.5585938, 1.3886719, -1.5273438, 2.6074219, -0.18395996, -1.4746094, 3.3613281, 1.2890625, -0.5048828, 0.37719727, 1.4707031, -1.5644531, -1.8486328, -2.1542969, 0.04309082, -1.6152344, 0.6123047, 0.640625, 0.06726074, 2.8242188, 0.64453125, -2.0214844, 0.21228027, 0.64501953, -2.703125, 0.14099121, 0.17553711, -0.16345215, 0.116760254, 2.7246094, 2.4277344, 1.2158203, 0.09362793, -1.1445312, 2.59375, -0.026626587, 1.4003906, 2.0214844, 1.5107422, -0.5546875, -0.74560547, 1.5126953, 2.9121094, 1.4765625, 3.1582031, 0.9296875, -2.6894531, 1.3886719, 0.73828125, -2.4589844, 2.3066406, 1.3691406, -0.8676758, 1.6787109, 0.83984375, -4.1914062, -0.18432617, 2.0039062, -1.4931641, 1.8330078, -0.8120117, -0.9770508, 2.8769531, -0.52783203, 0.060455322, 0.41259766, -0.11981201, 1.7910156, 1.4628906, 0.23535156, -1.7753906, 1.9785156, 1.1347656, -1.6533203, -0.87939453, 2.9414062, -0.019760132, -0.57714844, -1.3847656, 0.20141602, 0.16625977, 0.25341797, 3.6484375, 0.88378906, 1.8789062, 0.046783447, 1.8623047, -1.3701172, -0.55078125, -1.9384766, 3.1699219, -1.5517578, 0.2775879, 0.94628906, -3.6191406, -0.03955078, -2.2929688, -1.2294922, -1.2753906, 1.1699219, 1.6005859, 0.35107422, 0.74560547, 0.103759766, -1.8212891, -3.9492188, 0.60791016, -0.24804688, 0.92041016, 0.5488281, 1.4355469, -2.0976562, 0.37890625, 1.5068359, 0.16625977, -1.7919922, 0.23571777, -0.65625, -0.017501831, -0.07324219, 0.6044922, -1.4462891, -0.10888672, 0.9892578, 2.0625, 1.3603516, -3.3164062, 0.05621338, -0.47216797, -0.41723633, 0.03265381, 1.9296875, 2.0058594, -1.4648438, 0.49804688, 0.4165039, -1.4941406, 2.828125, -2.765625, -1.5283203, 1.9375, -2.4179688, 1.734375, -0.15405273, -0.4416504, 0.35839844, -1.7958984, 0.77978516, 1.4589844, 0.8828125, -2.4902344, -0.6171875, -0.41064453, -2.3378906, 1.0244141, -2.0507812, 2.4472656, 1.7998047, -1.4365234, -1.4941406, -1.1142578, -2.0078125, 1.71875, -3.0273438, -2.0898438, -2.1289062, 1.6787109, -0.23608398, 1.3632812, -0.6977539, 2.0722656, -1.3505859, -1.5039062, 1.0986328, -0.85253906, 3.8476562, 2.6875, -0.63134766, -0.5288086, -1.5449219, -0.90234375, 1.6337891, 1.2802734, -2.0996094, 0.3786621, 0.19189453, 1.5654297, -1.2070312, 0.8046875, 0.9892578, 0.32226562, 0.12854004, 0.78027344, 2.9101562, -0.19274902, 1.4189453, 1.3212891, 0.007369995, -1.1103516, 4.390625, 2.1289062, -1.8300781, 1.8320312, -1.4765625, 1.0644531, 0.54785156, -0.44799805, -1.0410156, -0.84375, -1.0390625, -2.4160156, -1.875, -2.2714844, 1.4033203, 0.5473633, -2.2460938, -2.5488281, 1.15625, -0.36010742, 2.2207031, 0.76953125, 1.3857422, -1.3125, 1.3769531, 0.68310547, 1.0908203, 1.6787109, -2.6191406, 1.4746094, 2.328125, -0.703125, -0.3527832, 0.7285156, 1.28125, 4.2148438, -0.21398926, 1.2226562, 3.4042969, 1.6689453, 2.4179688, 0.53515625, 1.3691406, 1.0634766, -0.8959961, -0.9873047, 0.5888672, 0.1607666, 0.40478516, -0.43188477, 1.5273438, -1.6630859, 0.11590576, 0.5058594, -0.81396484, 0.2800293, -2.203125, 0.17773438, 1.4921875, 2.3359375, -2.9277344, -1.3173828, -1.2988281, 0.42089844, -0.6376953, -1.3203125, 1.3125, -0.28857422, 1.9863281, -1.6796875, -0.08660889, 1.8007812, -4.796875, 1.7900391, -0.7480469, -2.1035156, -1.2558594, -0.3671875, 0.6894531, 0.23828125, -1.265625, 0.5913086, 4.8164062, -0.3017578, 1.2744141, -4.0429688, -0.28027344, 0.50634766, 3.8398438, 0.41723633, -0.18554688, 0.5258789, -0.6098633, -4.6992188, -3.984375, 2.9082031, 1.9560547, 0.63964844, 2.5898438, -1.1425781, 3.015625, 0.32543945, 0.22473145, -2.1796875, 0.078125, -0.40600586, -1.1533203, -1.8613281, 1.2255859, -2.15625, -0.18762207, -0.0054969788, -0.2854004, 0.50097656, 1.4785156, 1.9404297, 0.8964844, 1.5664062, 1.3876953, 0.26489258, -0.08062744, 2.9960938, 0.44335938, -1.4765625, -2.1113281, 0.7558594, 1.6015625, -0.1665039, 0.1595459, -0.84033203, -0.9223633, -2.0429688, -0.3256836, 0.33374023, -1.4501953, -0.8647461, -0.030441284, 0.9741211, -3.4785156, -1.0556641, 2.9023438, 2.6074219, 1.1025391, 2.0820312, 2.1835938, -2.2167969, 0.14733887, -0.18310547, -0.24182129, -0.055664062, 0.3088379, 1.9667969, 0.7714844, -0.68359375, 1.4609375, 1.0214844, 1.4667969, -0.40527344, 0.75683594, -1.0957031, -1.6982422, -0.98291016, 1.7265625, -0.30981445, -0.70214844, 3.0957031, -0.30004883, -1.0605469, 1.4550781, 0.15893555, 0.23828125, -0.61621094, -2.8457031, -0.68359375, 0.15515137, -1.28125, 0.6767578, 2.5839844, 0.7167969, 0.47729492, -2.3554688, -2.4257812, -0.79052734, -2.59375, 1.2128906, -2.1855469, -2.0625, 0.35864258, 1.2148438, 2.1171875, 0.22668457, -0.8227539, -1.2558594, -0.6928711, 0.057159424, -1.2412109, 0.95166016, -0.7583008, -0.3149414, 0.17333984, 2.3261719, 2.1132812, 1.0986328, 0.95996094, 3.3105469, -0.23352051, -1.9365234, -0.39916992, 0.19921875, -0.6328125, -0.41503906, -1.2978516, 2.3691406, -0.8222656, -2.1796875, -0.18151855, -1.9130859]}, "B000EI759M": {"id": "B000EI759M", "original": "Brand: Texsport\nName: Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree\nDescription: Texsport Propane, Appliance Gas Hose 14229TEX\nFeatures: Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree\nSmooth fittings for easy bulk tank attachment\nNote: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY\n", "embedding": [-0.9482422, 2.0371094, 0.6533203, -1.3242188, -1.640625, -1.1171875, 0.04928589, -1.7939453, 2.4921875, -0.47607422, -0.41333008, 0.13134766, 0.19763184, -4.5742188, 2.7949219, -1.2246094, -0.10961914, 1.4990234, 0.4296875, 2.4140625, 0.3725586, -0.17736816, 1.21875, -1.9101562, 1.1894531, -1.8310547, 3.5449219, 0.9941406, -0.07922363, 0.8925781, 0.8925781, 2.1875, -0.13122559, 2.2636719, -1.8847656, -1.4765625, -0.28710938, -0.6533203, -2.8574219, 0.06262207, -3.1464844, -0.21228027, 2.96875, 0.53271484, -2.2480469, 0.65185547, 1.0166016, 1.5888672, 0.3852539, -1.7236328, 0.42456055, 0.40722656, -1.3154297, 0.7338867, -0.3461914, -0.18640137, -0.22229004, -2.8789062, 1.6513672, 1.1660156, 1.25, -2.0039062, 0.059265137, 1.53125, 0.035888672, 1.0175781, 0.5107422, -1.0634766, -1.0957031, 1.9970703, 1.2441406, 2.0039062, 0.029296875, -1.8242188, -1.9589844, 1.3183594, -4.0546875, -0.18383789, 1.4638672, -0.77734375, -0.29101562, 1.2675781, 1.9482422, -0.42773438, 0.7792969, -2.5332031, -2.7871094, 0.08996582, -0.03994751, 2.1445312, -3.7421875, 3.3007812, -1.9287109, -3.3535156, 0.98828125, -0.38916016, 0.5419922, 3.1171875, 1.8779297, 0.29467773, 1.1708984, -2.0820312, 0.062286377, 2.6054688, -1.1757812, -0.02986145, -0.39575195, 0.02760315, -0.3605957, 0.47216797, -0.32226562, 0.42163086, 2.2929688, -0.12438965, -0.36157227, -3.3964844, -0.16149902, -1.8662109, 3.28125, 0.38085938, 2.8007812, 0.29077148, 0.30249023, 1.4707031, 2.5625, 2.5136719, -0.44384766, 0.18115234, 1.1035156, -0.5131836, 0.9580078, -1.1416016, -1.0576172, -0.56689453, 1.0078125, -2.1113281, 1.4228516, -1.5712891, -0.5341797, -0.45166016, -4.1914062, -1.1533203, 1.8183594, 0.88183594, -2.1230469, 1.4580078, -2.6152344, 0.18981934, 2.8574219, -1.7060547, 0.54052734, -1.7080078, -0.20825195, -2.5976562, 3.0566406, 0.765625, 1.2529297, -0.95996094, 1.6591797, 1.6914062, 0.93066406, -0.6972656, -1.7363281, 1.1962891, -0.6464844, -6.4882812, 1.1523438, -1.1318359, -1.2236328, 0.6503906, 0.3479004, -3.0019531, -0.65185547, -0.22705078, -0.45996094, -1.5214844, 1.65625, 1.3369141, 1.1025391, -0.5805664, -1.8720703, 0.079711914, -0.3840332, -2.0820312, 1.3388672, 0.33276367, -1.4873047, -1.1308594, 0.45117188, -1.8554688, -0.08648682, 1.59375, -2.609375, 0.36547852, 0.91796875, -3.4550781, -2.1953125, 0.3256836, 1.9199219, 1.6757812, -2.2382812, 0.23718262, 0.49145508, 0.16833496, -1.7910156, -0.82666016, 1.8144531, -2.296875, -1.2099609, 2.4023438, -1.2431641, 0.23706055, 1.1113281, -0.42456055, 0.4880371, -2.703125, 4.1835938, 3.3378906, 3.5273438, -0.012420654, -0.6723633, 1.6162109, 0.69921875, -0.4921875, 1.1767578, 0.8208008, -1.640625, 1.0253906, -2.1484375, -0.74658203, 1.2626953, 1.1513672, -0.17272949, -0.5644531, 0.042297363, 1.8789062, 0.8183594, -0.7294922, 0.64697266, 4.0742188, 1.2509766, -1.1591797, -0.7451172, -0.11273193, 0.98876953, 0.7182617, 0.17785645, 1.3046875, -0.17993164, 0.94873047, 3.0117188, -0.6845703, 2.4980469, 0.9746094, 0.98291016, 0.33129883, 1.8974609, 2.8222656, -1.0576172, -0.7368164, -0.5595703, 0.02130127, -0.15905762, 0.87060547, 0.4501953, -0.15844727, 2.1972656, -3.4921875, -0.6772461, -1.4433594, -2.2167969, 2.9277344, 0.19421387, -1.0322266, 2.4882812, 0.063964844, -3.046875, 0.1083374, -1.0800781, 1.4785156, 2.7773438, 0.2709961, 1.9228516, -3.7246094, 1.3769531, 0.5341797, 1.9677734, -0.63671875, -1.6054688, 0.5410156, 3.9941406, -1.6708984, -0.21826172, 0.58935547, 2.5703125, 1.6611328, 0.09857178, 4.203125, -1.8554688, -2.4277344, 1.0527344, 1.3740234, -3.109375, 2.328125, 3.4980469, 1.9863281, 1.1201172, -1.2392578, 0.05886841, 1.0732422, -1.0019531, 0.049072266, -0.98828125, 1.1953125, -1.3339844, -1.109375, 0.79785156, -0.49853516, -0.5644531, 2.3144531, -0.98535156, 1.6259766, 2.0078125, -2.0195312, -0.6459961, 1.3525391, -1.2636719, 0.7373047, 1.8183594, 1.5791016, 0.41674805, -2.5585938, -0.39501953, -2.0917969, -2.6074219, 0.7207031, 0.93896484, -0.765625, 1.8037109, -3.1171875, -2.4335938, -1.4189453, 0.08312988, 3.5, -0.7548828, -1.1494141, 0.10522461, 1.9658203, -0.22399902, -0.9453125, 2.2089844, 2.2363281, 0.41577148, -1.3701172, 0.30615234, 0.0041389465, -0.1184082, 0.9692383, -1.6464844, -0.17150879, 2.1972656, 1.7177734, -0.5644531, -1.109375, -0.6455078, -2.3574219, 0.5366211, -4.3242188, 0.82714844, 2.3398438, 1.9765625, 1.4335938, 0.57128906, 0.10821533, -1.2558594, -0.79052734, 0.026992798, 0.8828125, 0.50927734, 1.96875, -1.5566406, -2.390625, -0.024490356, -1.6386719, -1.3701172, 0.05441284, 0.53466797, -1.3203125, 1.2832031, -2.4980469, 0.13110352, -1.3808594, 0.10357666, 0.5654297, -1.859375, -0.3293457, -0.6098633, 1.5664062, -1.6025391, 0.7392578, -0.8378906, 0.5629883, 0.6015625, 0.007408142, 0.0692749, -2.078125, -0.2536621, -1.2626953, -0.0019226074, -2.2265625, 0.20043945, 1.6191406, 0.18823242, 0.70410156, 1.8535156, -1.5126953, -0.25219727, 2.9804688, 1.0126953, 0.2142334, -1.4804688, -1.4521484, -0.90185547, 0.61572266, 3.3339844, 1.0761719, 0.24389648, 1.1933594, 1.8818359, 1.984375, 1.3388672, -1.2539062, -1.5136719, 0.5205078, 1.5810547, -3.4804688, 1.0849609, -0.35961914, -0.13415527, -2.7480469, -0.021316528, 0.22924805, 0.07495117, 1.9042969, 1.3173828, -0.8305664, -0.0103302, 2.4785156, 1.8105469, -0.18115234, 0.67578125, 0.58496094, 0.9536133, -2.3847656, -0.39746094, 0.7319336, 1.3203125, 1.0898438, 0.6347656, -0.29345703, -0.41259766, 0.9682617, 1.1884766, -0.63427734, -0.0063972473, 1.5585938, 1.109375, 2.1425781, -1.3115234, -0.3310547, -0.5019531, 1.484375, -1.8310547, 0.85058594, 2.8398438, 0.64404297, -0.51953125, 1.3027344, -2.8515625, -0.7246094, -1.5644531, 0.20153809, 1.1738281, -0.27270508, 0.7680664, -1.75, 1.9902344, -2.3066406, 2.8203125, -0.71484375, -0.859375, -2.0449219, -1.4453125, -2.4414062, -2.0761719, -1.2763672, -1.7158203, 1.1464844, 2.8515625, 3.5566406, -1.2236328, 0.32885742, 0.30664062, 0.6040039, 2.8867188, -0.15942383, -1.3984375, -1.1708984, -0.8510742, 1.9648438, 0.33789062, 0.9794922, 0.11260986, -0.6821289, 0.25683594, -0.35498047, 0.5942383, 0.5004883, -1.2617188, 0.0017004013, 0.28442383, 0.089538574, 1.2509766, 0.33813477, 1.6982422, -0.21105957, -0.62939453, 1.2041016, -2.3183594, -0.98291016, -1.0283203, -4.6757812, 0.4975586, -1.1884766, 0.9326172, 2.4941406, -2.8125, 0.3935547, 1.8710938, 0.6801758, -1.3945312, -2.421875, -1.1533203, -0.3227539, -2.390625, -1.0800781, -0.11791992, -0.24291992, -1.4257812, -0.8330078, -1.4580078, -2.1777344, -0.90722656, -1.4101562, -0.48950195, 0.4831543, -1.3017578, 0.62158203, 0.32592773, 0.6074219, 1.4199219, -2.1464844, -0.2602539, -3.3769531, 2.046875, 2.3984375, -0.05078125, -1.6308594, 2.671875, 1.2753906, -1.4941406, 0.85546875, -1.4814453, 2.3945312, 0.17553711, -3.1933594, -1.7119141, -2.5703125, 0.70166016, -2.9863281, -1.8017578, -1.9199219, -0.047302246, 1.5166016, 1.2597656, 0.27368164, 1.4785156, 0.77197266, -2.9101562, 1.3466797, 3.0761719, -0.6904297, -0.11755371, -3.5390625, -1.6728516, -1.4863281, -0.05657959, -1.0917969, -1.9365234, -0.99658203, -0.4345703, -0.56591797, 0.5332031, 0.7709961, 0.5566406, -0.18383789, -1.0585938, -0.6230469, 0.10015869, 1.9960938, 0.3479004, -0.52197266, -0.8183594, -0.7792969, 1.6279297, 0.5854492, -0.08935547, -1.5253906, -0.21398926, 0.609375, 0.0619812, -0.4375, -0.14013672, -0.44311523, -0.34716797, 0.7080078, -1.9873047, 3.6347656, -1.3476562, 2.1035156, 0.27416992, -3, -2.171875, 2.4414062, 0.49438477, 3.0976562, 0.2722168, -0.8378906, 1.6220703, 2.4316406, 2.3164062, 1.7978516, 1.3203125, -1.5117188, 0.12866211, 1.4423828, -0.76464844, -0.06866455, -0.0134887695, -0.10571289, 0.0016784668, 2.8789062, 3.0253906, 0.58691406, -0.9067383, -1.1386719, 2.1542969, 0.8256836, -0.056884766, -1.1796875, -0.18945312, 1.8779297, -1.8515625, -2.1699219, 0.18603516, 1.59375, -0.44873047, 2.2539062, 0.27490234, -0.3803711, -0.7758789, -2.3828125, -0.6484375, 0.8330078, -0.62841797, 2.4628906, -0.83447266, 2.5917969, 0.82714844, 1.1689453, 0.47045898, -0.98095703, -0.17382812, -1.4023438, -1.1259766, 0.70458984, 0.9003906, -1.5097656, -4.7851562, 0.08996582, -0.12365723, 0.1697998, -0.35742188, 1.3291016, -1.3769531, -0.44726562, -0.0021076202, -1.0058594, 0.31079102, -2.7128906, 0.6035156, 3.1347656, 1.5673828, 0.061401367, -1.0878906, -2.2246094, -0.39892578, 1.0283203, 1.0117188, -0.4013672, 0.4831543, -1.5732422, -2.6894531, -4.7617188, -1.2841797, 0.4814453, 0.8652344, -0.6020508, -1.8291016, -0.9277344, 0.63623047, -1.8271484, -0.1083374, -1.9013672, -0.6191406, -0.43530273, 0.5371094, -2.2773438, 1.6962891, -0.11639404, 0.47338867, -0.70458984, -0.46166992, -0.07885742, -0.8925781, -2.671875, 1.3349609, -2.1132812, 0.5830078, -0.17041016, -0.8183594, 0.8251953, 3.2578125, 0.17163086, -1.4345703, 0.9838867, -1.7763672, -0.9091797, -0.18457031, -2.6152344, 1.171875, 0.13806152, 0.42773438, 0.93115234, 0.81591797, 2.2207031, 0.61083984, -0.6225586, 1.8935547, 0.9482422, 0.57373047, 1.5605469, 1.9365234, 0.8129883, 3.7480469, 3.7636719, 1.1972656, -1.6220703, -2.1328125, -1.3154297, -1.28125, -2.2988281, 0.55371094, 0.9370117, 1.4492188, -1.078125, -0.71191406, 2.1640625, -1.8144531, 0.5185547, -2.1308594, 1.234375, -1.5615234, 2.1933594, -3.0390625, -2.0644531, -4.5546875, -0.28979492, 1.6992188, 3.3867188, -1.7539062, 0.18859863, 0.4128418, -1.2841797, -0.084350586, -1.0751953, 2.3476562, 1.8085938, 2.2675781, -1.9589844, -2.5996094, -0.81689453, 0.2902832, -1.1503906, 0.49414062, -1.1552734, 0.609375, 0.13977051, 2.6269531, -1.8535156, -2.0625, 1.3115234, 0.018066406, -0.61279297, -3.0917969, 1.2744141, -3.03125, 2.3945312, 0.95996094, -0.4951172, -2.8417969, 0.2668457, 0.5625, -0.64208984, 0.84277344, 2.2832031, 0.37402344, -1.3076172, 0.4333496, -0.22924805, 0.109436035, -1.34375, -0.59814453, 1.5898438, 0.71191406, -0.20397949, 1.4199219, 0.4951172, 0.59472656, -0.06677246, -0.18395996, -1.2011719, 1.2089844, -0.17675781, 2.9277344, 3.8398438, -0.6040039, 1.9257812, 0.56884766, 1.0869141, 0.28442383, -2.0351562, 2.6835938, 2.4023438, -0.64941406, 0.5834961, 0.8354492, 0.68359375, 0.41088867, 0.1595459, -1.0136719, 2.8476562, -0.28759766, -1.1533203, -0.3154297, 0.5371094, -0.65771484, -3.3652344, 1.3710938, -4.2460938, -0.5654297, 0.47680664, 1.4121094, -1.6083984, 0.7416992, 0.012336731, -0.2578125, -1.7138672, 0.9082031, -1.1738281, -1.2490234, -2.0859375, -0.7548828, 1.0537109, 1.8115234, 0.7055664, 0.14086914, -0.14575195, -1.8974609, 1.8984375, 2.6308594, 1.6708984, 0.4350586, 0.6044922, -1.1640625, 0.32714844, 3.25, -1.1777344, 1.7470703, 2.1152344, -0.8417969, -4.1328125, 1.21875, 0.21447754, -1.2763672, 1.3984375, -2.2734375, 0.2866211, -1.9580078, 0.17175293, -2.7714844, -2.8222656, 2.0175781, 0.80126953, -0.9169922, 0.46704102, -0.0044403076, 2.8828125, 1.1181641, -0.22229004, -0.34472656, 1.1240234, 1.3525391, -1.2851562, 0.97802734, -2.2011719, 0.2232666, -0.27734375, 2.0507812, 0.36791992, -2.1171875, 1.8564453, 1.0283203, -0.1227417, 0.921875, -0.6503906, 0.11816406, 2.9023438, 0.9692383, -0.43774414, -2.0742188, -1.7460938, -1.4267578, 0.8730469, 0.99365234, 0.10974121, -0.53125, -0.21325684, 2.3710938, -1.2451172, 1.8486328, -0.40795898, -1.7275391, -0.047607422, 1.4199219, -0.6567383, 1.0761719, 1.2080078, 1.9492188, -2.75, 0.6455078, 0.29345703, 0.28320312, -1.734375, -1.2041016, -1.2294922, 1.3652344, -2.3652344, -2.0332031, 1.1533203, 0.6381836, 0.7167969, -2.4765625, -2.9433594, 2.5175781, 1.6035156, 0.17749023, -0.48876953, -1.7412109, -1.4462891, 0.3215332, -0.7080078, -2.5136719, 0.31274414, 3.0722656, 0.022201538, 1.0947266, -2.4550781, -0.9746094, -1.3291016, -0.30859375, -0.026290894, -1.0185547, 1.1113281, 2.0039062, 2.6328125, 2.015625, 0.8120117, -0.49121094, -0.87353516, 1.1513672, 0.9604492, -1.7177734, 1.9492188, 0.63427734, -1.1738281, 0.31323242, 2.1601562, 0.9868164, 0.45996094, 0.46240234, 1.9833984, -0.8881836, -0.80126953, -0.55078125, -0.7246094, 0.90722656, 0.17028809, 1.2714844, 0.2783203, 0.82958984, 0.0049743652, -2.4921875, -0.44067383]}, "B00BWAPOB2": {"id": "B00BWAPOB2", "original": "Brand: Formosa Covers\nName: Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75\" Long\nDescription: Full weather protection for BBQ Grill up to 75\" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75\" Lx26\"Dx48\"H\nFeatures: WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won't act on the metal and tarnish it.\nOUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come.\nMADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking.\nUNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High\nSERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.\n", "embedding": [0.17126465, 0.8833008, 2.5742188, -1.8916016, -1.6669922, -0.41967773, 0.08728027, -2.4277344, 1.0351562, 1.234375, -0.86279297, 0.08782959, 1.1679688, -4.6210938, 2.1367188, -1.3251953, 2.0488281, 3.6601562, 3.1601562, -1.1298828, 1.1533203, -0.19165039, 0.45288086, 0.19165039, 1.2421875, -1.4990234, 3.6054688, -1.6025391, -1.9667969, 0.1295166, 1.6386719, 1.5625, -1.0966797, 1.75, -2.0332031, -3.28125, -0.48706055, 0.8359375, 0.4091797, -1.0361328, -0.10559082, -2.5488281, 2.7441406, 2.2011719, -2.8574219, 1.9365234, -0.7832031, -0.4194336, -1.0595703, -2.1523438, 0.18579102, -0.4489746, 1.8759766, 0.7182617, -0.96728516, 0.50097656, -0.71240234, -1.4208984, -1.9824219, -0.4345703, 0.7807617, -0.47509766, -0.46264648, 2.8144531, 0.04522705, -1.0664062, -0.359375, -1.0839844, 0.1850586, 0.60253906, 2.0644531, -0.35205078, -1.7138672, 0.94433594, 2.1210938, 1.3554688, -1.8066406, 1.4150391, 2.8417969, -2.1015625, 0.3815918, 3.65625, 0.45654297, -1.3535156, -0.17077637, -1.0117188, -3.7226562, 0.3137207, 0.9707031, 0.421875, 0.71240234, 2.4804688, -1.5498047, -3.6347656, -0.1418457, -2.7949219, 2.8457031, 1.3554688, -0.2709961, 0.32470703, -1.5341797, 0.00053834915, -1.8564453, 1.2822266, -2.7460938, -2.7460938, 1.7822266, -2.3710938, 1.1738281, 0.09454346, -0.8515625, 0.4169922, -1.2597656, 1.5996094, 3.9042969, -0.26831055, -2.234375, 2.1269531, -0.16125488, 1.1669922, 2.3242188, 1.2158203, -0.31567383, -3.8515625, 1.9453125, 0.27441406, 0.37817383, 2.0957031, 3.4902344, -0.7573242, -0.10913086, -2.125, 0.31518555, 0.39648438, -0.78027344, -0.71191406, -1.0830078, -0.08502197, -3.9824219, 2.6074219, -2.5742188, -1.8369141, 0.5097656, -0.8251953, -1.3505859, 0.0635376, -0.6611328, 3.765625, -1.3486328, -3.5859375, 0.26367188, -2.3496094, 0.99121094, -0.83251953, -0.18688965, -2.3378906, 1.6054688, -3.6425781, 3.5097656, 1.9541016, 3.4921875, -2.4257812, 2.5039062, 0.81884766, 1.3173828, -4.0742188, -0.016281128, 0.66259766, 0.6328125, 1.3603516, -0.06011963, -0.7470703, 0.95996094, 0.8876953, 0.32739258, 0.043151855, -1.3808594, 1.1748047, 1.2597656, 0.21081543, 2.3046875, 0.36035156, -1.1435547, 1.1767578, -2.0410156, -0.9003906, -0.59521484, -1.0439453, -1.0634766, -0.42944336, -0.39794922, -0.3017578, -2.0703125, 0.23120117, -2.9511719, -1.1113281, 0.24182129, -0.13427734, -1.4638672, 0.06149292, -0.090148926, -0.6899414, -0.70410156, 0.42749023, -4.0820312, -1.1679688, -0.34472656, 1.0478516, 0.08660889, 0.23400879, 1.3183594, -2.4101562, 1.3994141, 1.2861328, -2.5097656, 0.4885254, 1.2763672, 1.0175781, 2.0332031, 0.7944336, -3.8300781, 0.7163086, 0.4777832, 4.2265625, -0.4729004, 0.9111328, 0.9038086, 0.8203125, -1.0527344, -1.7226562, 1.4052734, 1.3789062, -1.5429688, -0.13708496, -0.22399902, -0.26049805, 0.80371094, -0.90625, -0.4716797, -0.80029297, 0.6982422, -2.2617188, -4.3398438, -0.96533203, 2.3847656, 1.9755859, -0.70410156, 1.8212891, 1.8095703, -1.4677734, -0.3876953, 2.2402344, 2.203125, -0.20373535, 1.4882812, 1.0664062, 0.45117188, 0.050567627, -2.1484375, -2.1738281, -0.5439453, -0.13574219, -0.027862549, 1.3427734, 0.37963867, -1.4931641, 1.4785156, -0.038085938, -1.3359375, -1.1875, 0.72314453, -0.5097656, 1.1103516, -0.3515625, 0.7504883, -0.33984375, 1.6064453, -0.9707031, 0.8149414, -0.32617188, 0.61572266, 1.9677734, 1.5742188, -1.6494141, -0.0038757324, -1.0332031, 0.03933716, -2.0820312, -0.9370117, 1.3515625, 1.8994141, 1.2734375, -2.2714844, 4.0429688, 1.0791016, -0.6508789, 0.66064453, -1.0341797, -2.0839844, 0.2211914, 0.9638672, 2.1445312, -0.9501953, 0.13891602, -1.7539062, -1.4052734, 0.88623047, -2.7558594, -1.6943359, 1.0585938, 0.8383789, 0.1048584, 1.0625, 0.84765625, -1.7919922, -1.8759766, 1.7597656, -1.5898438, 0.76660156, 0.013198853, 0.61572266, -0.43139648, -2.4277344, -2.1679688, 0.12298584, 0.4831543, -2.8066406, 1.7421875, 0.3425293, -0.97265625, -0.9741211, -2.4589844, 1.3994141, -0.077819824, -0.7973633, -3.0078125, -2.796875, 0.2553711, -0.42456055, -0.8642578, 1.1230469, -0.49414062, -3.3554688, -0.10308838, 0.5600586, -3.1074219, -0.090148926, -1.5917969, -0.7441406, 2.5722656, -0.4555664, -1.7685547, 0.26611328, -2.9238281, 0.5239258, -1.53125, -1.3574219, -0.65527344, 0.28930664, 0.27148438, 0.117370605, 0.56396484, 1.8193359, 1.1767578, 0.9609375, 1.0058594, -0.056793213, -2.7285156, 0.3256836, -2.0859375, -0.47827148, -2.3320312, 0.1652832, -3.9863281, -0.93896484, 0.28955078, -1.4921875, 2.8320312, 0.46850586, 1.1621094, -0.65234375, -1.765625, 1.8916016, 1.0751953, -1.4287109, -0.2409668, 2.3964844, -1.0585938, -0.6611328, -2.8945312, -2.09375, -1.1904297, 0.69873047, 0.068603516, -0.9682617, 1.5439453, 1.2246094, -2.5878906, -2.4589844, -0.17004395, 2.0703125, -0.5332031, 0.1842041, 0.2130127, -2.0332031, -2.3867188, -0.3605957, -2.2402344, 2.5175781, -1.8847656, 0.41088867, 1.71875, -0.5883789, 3.2070312, -1.6005859, -2.6835938, -0.29638672, 1.3056641, 1.8125, 0.23120117, 0.52197266, -1.1669922, 0.06549072, -0.43603516, 1.8300781, 2.3242188, 0.37353516, 1.5458984, 0.63720703, 0.9057617, -0.04751587, 0.015541077, -0.049316406, 2.9980469, 2.2675781, -0.70703125, -0.13903809, 0.17126465, -0.055480957, -3.5136719, 1.2441406, 1.5625, 0.40649414, 1.2080078, 1.5048828, 0.1385498, 2.0214844, 0.25073242, 5.1328125, -0.9350586, 2.8535156, -0.8876953, -0.92529297, 2.7578125, -0.15148926, 2.1210938, 1.6386719, 1.0683594, 1.2431641, 0.5756836, -1.7236328, -0.6899414, 1.0966797, 2.4707031, -0.1451416, -1.8603516, 3.1621094, -0.75878906, -0.3479004, 1.6064453, -1.8779297, 0.77001953, -1.7363281, 0.3305664, 3.0859375, -1.1972656, 0.62597656, 0.6533203, -2.1972656, -0.7573242, -3.6875, 0.1940918, -0.66748047, -2.1054688, 1.1826172, -4.0585938, -0.8857422, -0.8886719, 4.703125, 1.4951172, -1.4326172, -0.83203125, 1.1962891, -0.32202148, -1.3349609, 0.18945312, 2.0351562, -1.8896484, 3.1464844, 3.1855469, -1.2587891, 2.4980469, -3.453125, 2.1210938, 0.41503906, -1.3417969, -1.6298828, 0.037719727, -0.28295898, -1.0244141, 1.3642578, 0.5253906, 0.98779297, -1.0410156, 0.7480469, -2.1035156, 0.15893555, 2.1386719, -1.5273438, 0.056915283, 1.0380859, 0.4338379, 0.088012695, -0.32202148, 1.4052734, 0.5620117, -2.3671875, 0.72509766, -1.2783203, -0.921875, 0.27539062, -3.3515625, -2.3574219, -0.10510254, -0.2631836, 3.4707031, 1.2470703, 1.0878906, 2.2949219, -1.5771484, -0.5600586, 0.76904297, -1.9111328, -1.8261719, -0.31054688, -0.82470703, 1.5332031, 0.111572266, -1.8193359, -2.125, -2.2089844, -2.7207031, 0.6816406, 0.953125, 0.6850586, -0.0025405884, -3.3769531, 0.18322754, -0.29614258, -0.72265625, -0.3088379, 0.005214691, -0.17858887, 1.3046875, 0.67089844, 0.6308594, 0.14160156, 0.7866211, 0.88183594, -1.1181641, -1.2167969, 0.44677734, 1.9365234, 1.6328125, -0.68408203, -1.9716797, 1.5048828, 1.4853516, 2.1933594, -0.71191406, -1.9912109, 0.9926758, -0.70996094, 1.3574219, -0.38842773, 2.1523438, -0.26660156, 0.10760498, -3.03125, 0.74121094, -0.58496094, -1.7285156, -0.45703125, -1.0009766, 0.8725586, 3.8574219, -1.0634766, -1.2705078, 2.1386719, -0.3034668, 2.3300781, -0.8720703, 3.2265625, 1.0976562, 1.9433594, 2.9082031, -2.1289062, -0.63671875, -0.27734375, -1.3476562, -0.29003906, 0.5288086, -1.0439453, 0.74072266, 0.4711914, 1.0996094, -1.5488281, -2.203125, -1.3828125, -1.3242188, -0.47436523, -1.7236328, 1.8994141, 1.7529297, 0.67285156, 0.8041992, -0.7558594, 2.3261719, -1.4707031, -0.16723633, 1.3037109, -2.2792969, 0.0124435425, 2.3125, 1.3017578, -1.9082031, 1.9589844, -0.046173096, -0.9121094, -1.7412109, -0.7338867, -0.24206543, 1.8222656, -1.90625, -0.3774414, 0.33496094, -0.053649902, 0.18237305, -2.3261719, 2.1054688, 3.65625, -1.2294922, -0.64746094, 1.0625, -0.2668457, 0.87890625, 1.5400391, -0.15612793, 0.62353516, -0.51220703, -0.53027344, 1.0400391, 0.3942871, -2.9863281, 0.6357422, 0.69921875, -1.1435547, 0.7373047, -1.296875, -0.84375, 3.0917969, -2.4160156, -0.43676758, 0.27075195, -1.5869141, -1.171875, -0.3618164, 1.2597656, -1.8193359, -1.1455078, 3.7207031, 0.01651001, -3.2792969, 1.0625, -0.05206299, -0.10058594, -1.6972656, -1.6230469, -3.4960938, -2.1113281, 2.0292969, 2.2363281, 0.14770508, 0.98779297, 0.93603516, -1.5800781, 1.8408203, -0.48901367, 1.0947266, -0.54785156, 0.2878418, 4.2773438, -4.4765625, -1.9667969, -0.74072266, 1.4453125, 2.6835938, 0.16796875, 1.1064453, 0.38916016, 0.84472656, 0.1821289, -3.5703125, -3.0878906, -0.8339844, 0.80029297, -1.7412109, -0.4033203, -1.0908203, -0.03036499, 0.019241333, 0.109069824, 0.17651367, -0.28979492, -1.4228516, -0.95410156, -3.1542969, -2.9042969, -0.76660156, -0.63720703, 1.1386719, 0.9555664, 2.7382812, -0.4777832, -3.0488281, 0.6621094, 1.2285156, -3.3007812, -0.38500977, 1.8779297, -0.43823242, 1.9150391, 0.14794922, 0.7475586, -0.41870117, 2.1621094, 1.2626953, -0.083862305, 0.86279297, -1.1044922, -1.0205078, 0.47729492, -0.07965088, 2.75, -2.9316406, 0.78125, 1.1513672, -1.4150391, 2.1171875, 1.6591797, 0.0970459, 0.8227539, 1.5087891, 1.0576172, 0.8417969, 0.7734375, -1.4384766, 0.24694824, -2.1582031, -3.0488281, -0.0501709, -1.8388672, -3.5585938, -1.3388672, 0.90234375, 3.59375, 0.8388672, 2.4414062, 1.0683594, 2.4902344, -1.359375, -0.019012451, -0.60595703, 1.5029297, 0.5078125, -2.2832031, -1.0439453, -1.4453125, 1.2421875, 2.2871094, 0.99121094, -0.89941406, 0.47705078, -2.6464844, -0.92041016, 1.3359375, -1.4101562, 0.9555664, 0.6948242, 0.5800781, 1.0488281, 0.94970703, -0.49023438, 1.9169922, -0.12347412, 2.1660156, -1.2695312, 2.4355469, 0.18566895, -2.9765625, 0.4711914, -1.2763672, 0.6230469, 0.48364258, -1.6640625, 0.35913086, -0.96191406, 0.005722046, -1.296875, 0.07562256, -3.4707031, 0.328125, -0.31347656, 0.9760742, -0.9794922, 2.3808594, 0.421875, 1.9570312, 1.5478516, -0.4489746, -1.1503906, -0.36108398, -2.8457031, 0.16174316, 1.6826172, -1.8007812, -0.22607422, -0.34838867, -0.7919922, -1.5546875, 0.059051514, -0.5839844, 1.4785156, 0.4831543, 1.6396484, 2.5878906, 1.1806641, 1.0009766, -0.24841309, 2.6738281, -1.9394531, -1.5605469, 0.33691406, 3.5644531, 1.3505859, 2.328125, -0.50146484, 0.9902344, 1.9394531, -0.3395996, 0.49682617, 1.2285156, 1.3417969, -3.7617188, 0.7973633, 1.6201172, 0.47729492, 0.68652344, 1.2832031, -2.0371094, -0.78125, -0.13842773, -0.2939453, 3.3300781, -1.28125, 1.1787109, -0.4699707, 1.9628906, 1.2050781, -1.2871094, 0.77734375, 2.7128906, -2.4707031, -1.2763672, 1.3144531, 1.984375, 2.4628906, -0.77685547, 1.7353516, 2.2207031, 2.7480469, 1.2949219, -0.30444336, 0.31469727, -0.56591797, 0.9921875, 0.2668457, -1.5546875, -3.7128906, -0.33447266, -0.2265625, 0.58496094, 0.37768555, 0.2565918, 0.39233398, 2.7871094, -3.625, 0.30981445, 1.1357422, 2.2773438, 0.08868408, -0.8803711, -0.1928711, -2.1777344, -0.8911133, 1.6230469, -1.0595703, 2.6445312, -0.41137695, -0.89160156, 2.1582031, 1.6416016, 1.2451172, 1.4511719, 1.0605469, 0.36743164, 0.76220703, 0.640625, 1.7080078, 2.1816406, -0.47924805, 1.3330078, -0.09320068, 0.7578125, 1.3085938, 2.6367188, 0.98583984, 0.6323242, 0.94873047, 0.6723633, -1.8779297, -0.97265625, 0.49902344, -1.0166016, 1.8027344, 0.49291992, -1.0009766, 0.7036133, 1.5507812, 0.81396484, 2.5820312, 0.3088379, -2.4628906, 2.2167969, 0.6748047, -1.7783203, -0.21972656, 1.1542969, 0.47875977, 0.19055176, 0.88720703, -1.1572266, 0.47729492, 0.3713379, -0.47485352, -0.1977539, -0.19604492, 0.4489746, -0.12231445, -0.013130188, -1.53125, -1.4111328, 0.6455078, -1.5048828, -0.3630371, 0.7192383, 2.0859375, -1.7226562, -0.5986328, -1.6416016, 0.4104004, -1.5419922, -2.1992188, 1.1591797, 3.7519531, 3.5097656, -1.8652344, -0.5756836, -3.7050781, -1.0742188, 0.22424316, 2.1503906, -0.1850586, -0.29858398, 0.5083008, -0.07476807, 2.2421875, -0.3930664, -2.9003906, -0.41430664, 0.69433594, 0.6323242, -1.3212891, 0.22668457, 0.25610352, -1.6425781, 0.60595703, 1.9677734, 2.1308594, -0.63378906, 2.0019531, 2.1933594, -0.15307617, -2.4003906, 1.3662109, 0.7714844, 2.3710938, -0.014839172, 1.7236328, 0.72216797, -1.9853516, -0.0015134811, -0.96875, -1.3017578]}, "B00N5CQ252": {"id": "B00N5CQ252", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote\nDescription: Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.\nFeatures: \n", "embedding": [-2.9355469, 1.0605469, 0.33789062, -0.8203125, 1.5664062, 0.8754883, -1.5654297, -0.5732422, -0.7714844, 1.6611328, 1.9492188, 3.5585938, 1.1757812, -2.4609375, 1.078125, -0.84277344, -0.94677734, 1.3740234, 0.61376953, 0.14025879, 1.4179688, 3.3964844, 0.27978516, 0.8642578, -0.057617188, 0.16906738, 3.1035156, -2.1132812, 1.0605469, -0.47729492, 1.4726562, 0.7553711, -1.1083984, 0.92626953, -3.3125, -1.3769531, -1.2978516, 1.5253906, -2.4785156, -0.4819336, -2.0761719, -0.86621094, 2.5019531, 0.3996582, -2.3574219, -1.8623047, 1.9257812, 0.50634766, -1.8447266, 1.0537109, 0.8208008, 1.6005859, -1.9296875, -0.049957275, 0.52197266, 2.046875, 2.2734375, -2.8535156, 2.1777344, 1.3681641, 1.2441406, 0.7104492, -1.7324219, 0.09020996, -2.1875, 0.84375, 3.4199219, -0.23962402, -1.1064453, 0.04510498, 2.7578125, 1.8681641, 2.2050781, 1.3183594, -0.37939453, 1.4453125, -3.7675781, 1.3056641, 1.2529297, -0.890625, -0.8701172, 0.48632812, 0.2142334, -0.24475098, 0.93310547, -0.43798828, -2.8828125, -0.039642334, 1.8789062, 1.5517578, 0.4453125, 0.38598633, -1.0585938, -4.5078125, 1.7050781, -0.7832031, -0.75683594, -0.31811523, -0.22851562, 1.4746094, 0.73583984, 2.6171875, -1.2568359, -0.37402344, -0.9243164, -0.0005340576, 0.9746094, 3.8261719, -0.92578125, 0.26171875, -1.8662109, -0.5708008, 1.5566406, 0.67089844, -0.33081055, -0.13183594, -0.05871582, -2.1210938, 1.0976562, -2.5878906, 2.609375, -0.4453125, -0.018066406, 1.921875, 1.4677734, 0.22265625, -1.2587891, 3.1953125, 0.5678711, -1.2734375, 0.4946289, -1.7099609, 2.0878906, -1.4775391, -3.0839844, -0.36376953, -1.6132812, -1.1845703, -2.9921875, -2.1738281, 0.7348633, 3.2675781, 0.29077148, 0.7504883, -1.9960938, 0.7607422, -2.2285156, 0.9213867, 2.0976562, -1.1328125, 1.4511719, -1.09375, 0.29418945, -3.5859375, 0.109436035, 0.5292969, 1.1240234, -1.0673828, 0.3803711, -0.022094727, 0.47998047, -1.4013672, -1.8017578, 1.4882812, -1.5810547, -0.4909668, 2.2753906, -0.84765625, -1.6962891, 2.1894531, 0.82666016, 1.1748047, -0.4104004, -0.89404297, -0.56152344, -2.7402344, 1.0712891, 2.828125, 0.97265625, 0.30908203, -1.4570312, -0.73535156, 0.24279785, -0.4946289, 0.5595703, 0.32666016, 1.0888672, 0.49731445, -0.46875, -1.3779297, -1.4980469, 0.6220703, -0.7495117, 2.7480469, -1.8183594, -1.15625, -1.5791016, -0.83154297, 2.3574219, -2.1914062, -1.1904297, 1.3066406, -0.0736084, 0.35766602, -2.1621094, 0.31445312, -0.22265625, -2.1953125, 3.625, 1.0673828, 0.57177734, -1.2695312, 1.0800781, -0.8154297, 0.13012695, -3.5546875, 1.4892578, -1.5722656, -0.39819336, 0.12060547, 0.62353516, 0.45507812, 3.4941406, 1.1015625, -0.14221191, 1.4033203, 0.29296875, 1.2890625, -1.90625, -3.7246094, 0.42700195, 0.49780273, -1.2265625, -0.68603516, 0.12878418, 4.9804688, 0.14794922, -1.4472656, -0.64746094, 1.0683594, -0.5966797, -0.80371094, -1.9658203, 1.1279297, -0.20471191, -0.6748047, -1.2792969, 0.19445801, 1.0341797, 0.8286133, 0.35302734, -0.4765625, 1.4052734, 2.2929688, -0.67089844, -0.63964844, 0.25830078, 0.107543945, -0.45776367, -0.7871094, 1.2441406, 1.4169922, 0.48632812, 1.2617188, -1.5791016, -0.8027344, 2.3515625, -0.5366211, 1.0751953, -0.6689453, 0.5493164, 0.17358398, 1.7714844, 2.1152344, 1.7763672, -0.47338867, 0.39257812, 3.4199219, -0.30664062, 2.5117188, 1.390625, -1.7548828, 4.0703125, -1.3525391, 0.11773682, 0.1953125, 1.2236328, -0.59716797, 1.4833984, -0.9355469, 4.953125, 0.66064453, -2.875, 0.7910156, 0.28222656, 0.3190918, 1.3203125, 0.5527344, -1.6035156, -1.3710938, 2.2050781, 1.6015625, -0.36938477, 0.62841797, -0.27539062, 0.6713867, 0.6220703, -0.78222656, 1.1845703, -0.23937988, -0.009407043, -0.43408203, -3.1582031, -0.4074707, -2.5175781, -0.4741211, 3.109375, -2.6347656, 1.3525391, 0.115356445, 0.32348633, 2.8378906, -0.66796875, -1.6152344, -0.78759766, -0.35009766, -2.5273438, 1.4375, -1.0742188, -1.1064453, -0.5317383, -2.9472656, -1.0566406, -0.5649414, -0.40527344, 0.8364258, -0.5600586, -2.0195312, 0.4963379, 1.0029297, -1.8808594, 1.1689453, -1.6435547, 0.33422852, -0.0680542, 0.46191406, 0.7988281, -0.81689453, 0.20495605, 3.4960938, 1.8066406, 5.2148438, -2.2949219, -2.890625, -1.71875, 0.044708252, -1.8056641, 1.0234375, -0.48583984, -0.49145508, 0.97265625, -0.3959961, 0.40283203, -1.9003906, -0.36767578, -1.8935547, 0.59228516, -2.3261719, 0.29589844, 0.91552734, 2.796875, 0.91503906, 0.6660156, -1.2744141, -0.81591797, 0.12792969, -0.7949219, 1.3447266, -0.68359375, 0.8496094, 0.3227539, -2.2109375, -2.6679688, -2.8691406, -2.4628906, -0.22680664, -0.62890625, -1.3496094, -2.0332031, -2.2128906, 0.7163086, 0.27978516, 1.1083984, -0.1303711, 0.8261719, -1.65625, -1.2832031, 0.21813965, -1.1513672, 0.3955078, -2.3183594, -2.0761719, 0.59716797, 0.63720703, 0.6640625, -0.22399902, -3.6621094, -0.15991211, 0.20739746, 3.0507812, 0.8461914, -0.1048584, 1.1767578, 0.012527466, 0.59375, -3.0371094, 1.15625, 1.5234375, -1.6054688, -0.19030762, -2.0097656, -1.2617188, -1.7060547, 0.6303711, 3.3457031, 3.6933594, 0.24707031, 1.4589844, 0.016799927, 1.1494141, 3.3457031, 0.6855469, 0.49951172, -1.4189453, 2.2949219, -2.9160156, -0.5463867, 0.24291992, 1.4697266, -0.6347656, -1.1533203, 2.1347656, -0.44262695, 2.8515625, -0.75683594, 0.86279297, -1.9833984, -1.1220703, 0.7260742, 0.87060547, -0.85839844, -2.9804688, -0.0026779175, 0.23620605, 2.7578125, 0.98535156, 1.5664062, 1.8095703, 0.95214844, 0.1854248, 0.7553711, 1.3134766, -0.20336914, -0.17553711, 0.6323242, 0.9863281, -1.2919922, 0.6088867, 0.13513184, -1.40625, -2.8300781, 0.48413086, -1.9345703, 1.5244141, 2.5605469, 0.6225586, 0.52734375, 0.4086914, 0.99658203, -0.91064453, 0.9213867, 2.1738281, 0.2602539, 1.0888672, 2.3261719, -0.77001953, -1.4560547, -1.3691406, 2.3027344, 0.0037193298, -0.43652344, 0.9291992, 2.0585938, -3.7324219, -2.2207031, 2.1074219, -1.09375, -1.0058594, 2.2421875, 0.17138672, -0.20251465, 0.26098633, -2.71875, -0.21716309, 1.9980469, -0.10638428, -0.22485352, -1.7998047, 1.4638672, -0.4404297, 1.7382812, -0.30517578, -0.036468506, -0.96728516, 1.5898438, -1.6816406, -1.1103516, -1.5195312, -1.2832031, 0.84277344, 4.875, -0.50927734, -1.0205078, -0.6044922, 3.6699219, 0.89404297, -0.3552246, 3.2636719, -0.93847656, -1.3193359, -1.0693359, -3.640625, 1.4941406, -1.3007812, -0.76953125, 1.6923828, -0.17004395, 0.074157715, 3.0292969, -1.0332031, -3.015625, -1.4140625, 0.6713867, 1.1367188, -2.5097656, -3.1132812, -0.19177246, 0.3137207, -1.4355469, -1.296875, -1.0439453, 0.2578125, 0.65966797, 0.4189453, -2.9042969, 0.080078125, -2.0253906, -0.68603516, -0.6875, -0.37182617, 3.6542969, -1.359375, 0.95751953, -1.9199219, 1.8408203, 1.2333984, -0.4855957, 1.8603516, 2.609375, 1.4580078, 0.83447266, -0.19726562, -0.32226562, 2.9453125, 0.8691406, -1.2392578, -4.203125, 0.6586914, -0.61279297, -2.8945312, -0.8432617, -0.62597656, -1.6806641, 1.0849609, 2.2363281, 0.61083984, 0.13659668, -1.0341797, -1.1220703, -0.4477539, -2.0253906, -0.7207031, 1.3945312, -1.96875, 0.4963379, -0.8647461, -0.6748047, -0.05899048, 1.0722656, -0.0031700134, -1.3193359, -0.67822266, 4.3789062, 0.00015568733, 1.0654297, 1.4873047, 0.7470703, -2.4472656, -0.08013916, -0.49365234, -0.22180176, 1.2167969, 1.7695312, -0.58935547, 0.51220703, -1.0771484, -1.4003906, -0.048950195, 1.90625, -0.66748047, 1.0087891, 0.1772461, -2.03125, -1.3642578, -0.60791016, 1.7177734, -0.6479492, 2.4570312, -1.9257812, -0.10101318, -0.9511719, 1.6738281, -1.6699219, 0.6220703, -0.10437012, 0.5024414, -0.040893555, 1.1376953, -0.70410156, 0.80908203, 1.9746094, 0.6015625, 0.4741211, 1.3330078, 0.103271484, -1.6474609, -2.1523438, -1.0302734, 0.78466797, 1.1005859, 0.61279297, -0.38305664, 3.4511719, 0.13293457, -1.8710938, 2.1445312, 2.2539062, -1.7011719, -0.44091797, 1.4375, 1.1123047, -1.3769531, -0.038208008, -3.7363281, -0.46826172, 2.5722656, -1.4306641, -2.1230469, -0.27661133, -2.1484375, -1.2548828, -1.3857422, -3.2773438, 0.59765625, -3.4746094, 1.4960938, -0.703125, -1.0488281, -2.7675781, 0.90527344, 1.5449219, -1.8535156, -1.4384766, 1.8857422, -1.0361328, -0.65234375, -0.38500977, 0.3334961, -1.1904297, 0.113220215, 1.3105469, -0.17016602, 0.96484375, 0.17504883, 0.83447266, -1.2128906, -1.5498047, -1.2333984, 1.1533203, -1.8261719, -0.36889648, 2.2871094, 0.2770996, 2.1347656, 0.578125, -0.52490234, -0.9711914, 2.3496094, 1.1269531, 0.36523438, 0.9863281, -1.5458984, -3.2539062, -1.9960938, -1.6591797, 2.0859375, -1.1777344, -0.77197266, 0.017044067, -1.6318359, 1.6630859, -0.5029297, -0.6933594, -1.875, -1.1083984, -1.3896484, -0.6669922, -2.0039062, 0.7080078, 0.8154297, -2.3105469, 2.4355469, -1.9326172, 0.20605469, 0.85498047, -0.8725586, 1.9853516, 0.17504883, 1.2109375, -0.107543945, 0.703125, 1.0683594, 2.2871094, 1.9912109, -2.1230469, 0.10845947, -0.5078125, 1.2929688, 2.1464844, -2.3085938, 2.7089844, -0.17871094, 0.5654297, 0.0045700073, 1.6787109, 1.0234375, -1.8505859, 0.82128906, -0.26171875, -1.3701172, -1.7890625, -1.453125, 2.4941406, -2.1542969, -0.5776367, 1.5058594, -0.4165039, -1.9980469, -1.9599609, -2.375, -0.115234375, -2.0800781, -0.49682617, 0.2758789, 1.4580078, 0.07098389, -1.2841797, 1.5449219, 0.092041016, -0.6958008, -1.3554688, 0.20812988, -2.2519531, 3.2871094, -0.036956787, -2.0644531, -2.8300781, -1.9765625, 0.22546387, 1.5966797, 0.45141602, 0.2175293, -1.2587891, -1.3544922, -1.4970703, 0.7739258, 1.9433594, 1.8583984, 1.0576172, 0.22888184, -0.040100098, 1.1113281, 0.734375, 1.5810547, 1.0976562, 0.7504883, -0.13269043, 1.3095703, 3.8300781, -3.3007812, 0.5864258, -1.4169922, 0.97558594, -0.07531738, 0.9394531, 1.2392578, -1.7470703, -2.2792969, -0.5595703, -0.19873047, -0.0037078857, 1.5302734, 2.2636719, 1.7324219, -0.7675781, 1.0019531, 0.60791016, 1.8876953, 0.4099121, 2.03125, -1.7421875, -1.8642578, -0.73828125, 0.15246582, 0.96191406, -2.2988281, 0.9003906, 2.5234375, 0.7319336, -1.0458984, 0.7807617, 1.359375, 2.3242188, 0.070739746, 2.6621094, 3.4023438, 2.2402344, 3.5214844, 0.15026855, 0.6269531, 1.5791016, 0.018600464, 0.092285156, 0.38720703, 0.9682617, -0.5551758, -1.0439453, 2.0058594, -0.55908203, 0.49047852, -0.9819336, 0.38183594, -0.32958984, -3.6875, 0.9194336, 0.4099121, 0.13098145, -1.5253906, 0.52246094, -1.0537109, -1.0058594, -1.3564453, -2.515625, 1.3154297, 0.5024414, -2.4335938, -0.578125, -0.11480713, 1.6503906, -3.6289062, 0.58154297, 1.1367188, -2.0917969, 0.73876953, 2.0097656, -0.030197144, 0.72802734, 0.8041992, 1.9707031, 1.1689453, 1.5419922, -0.119018555, -1.7001953, -0.85839844, 0.31640625, 1.2636719, -1.6240234, -0.5078125, 0.096191406, -0.52783203, -3.2207031, -4.5234375, 2.0566406, -1.4423828, 1.7255859, 1.7597656, -2.2265625, 2.4277344, -0.23364258, 0.53271484, -2.6875, -1.0146484, 1.5566406, 0.40576172, -2.421875, 0.4243164, 0.13830566, -0.81347656, -0.22644043, 0.4645996, 2.2929688, -0.14013672, 0.97558594, 0.010215759, 1.8945312, 0.11578369, -0.9663086, -1.9580078, 1.5048828, 0.88964844, -0.82470703, 0.48901367, -1.4384766, 2.4375, -0.4724121, -1.9873047, 0.5366211, -1.6279297, 0.2668457, -0.74609375, 0.0074882507, -0.5600586, -2.7558594, -0.3347168, 2.1054688, 1.2998047, -0.7260742, 1.1523438, 1.7929688, -3.2304688, -0.72314453, 1.4550781, -0.90625, 0.6245117, 0.9223633, 0.43896484, -0.011833191, -2.359375, 2.7578125, -1.5820312, -3.1523438, 2.3574219, 1.3320312, -0.40161133, -1.3564453, 0.5390625, -0.671875, -0.015510559, 0.6611328, 2.2871094, -0.048583984, -2.4941406, -0.6772461, -1.6865234, 1.3789062, 4.3554688, -0.4465332, 0.52197266, -0.11364746, -2.2304688, -0.25878906, 1.8623047, 0.10662842, 2.4902344, 2.9765625, 1.6523438, 1.3378906, -4.0234375, -0.9301758, -2.4941406, -1.2167969, 1.0527344, -0.2524414, -0.9970703, 0.3178711, -0.44628906, 0.34326172, 3.5800781, -1.3144531, 1.7617188, -1.6474609, 0.064453125, 0.27001953, -0.7294922, 2.3515625, 2.8574219, -0.1986084, 3.0800781, 1.5878906, 0.4025879, 1.6806641, 2.6679688, 0.54589844, -0.89990234, 0.5288086, -1.6708984, 1.5605469, 0.32836914, -1.8515625, -0.13708496, 0.40063477, -0.06604004, -1.2841797, -3.7285156]}, "B07QT8FLPW": {"id": "B07QT8FLPW", "original": "Brand: Miaowoof\nName: Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

Make Grilling, Baking, Cooking Easier:
Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
It will not retain or transfer tastes or odors between uses.

Application:
Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

Tips for Maintaining:
Store mats flat or rolled upin storage for small space. Don\u2019t fold it.

Warning:
Do not let grease accumulate due to risk of grease fire.
Use mats at low-medium heat settings (300\u00b0F - 400\u00b0F).
To avoid scratching, only use wood, plastic or silicone utensils.
Do not use sharp stainless steel or metal tools to avoid scratching.
Don\u2019t use scratch pad or abrasive brush while cleaning mats.

Package Included:
6 * Solid Grill Mats
\nFeatures: 1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid\uff0c like pizza,squid,beef,eggs....\n2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.\n", "embedding": [1.2763672, 0.4206543, 1.8417969, -0.5185547, 1.1279297, 0.73828125, 0.89746094, -0.97216797, -0.78125, 2.8535156, -0.9038086, -0.038146973, 0.44384766, -2.7714844, 1.2285156, -1.4052734, 0.00050354004, 1.5058594, 2.6621094, 0.5307617, 0.3876953, -0.15283203, -0.5019531, -1.765625, 1.0898438, 0.921875, 4.3867188, -0.014862061, 0.5444336, -1.0693359, 1.0058594, 2.9296875, 1.1455078, 0.97802734, -3.6328125, -1.4609375, -0.8251953, 3.4550781, -0.61376953, 0.28466797, -1.5761719, -2.4511719, 0.56640625, 0.91552734, -2.9863281, 0.49804688, 0.10461426, 2.75, -0.37695312, -5.0039062, 2.0117188, 0.7636719, 1.4121094, 1.09375, -2.3496094, 1.7949219, -0.55908203, -1.7421875, 0.7866211, 0.16308594, 0.56103516, -0.7441406, -0.6279297, 0.37231445, 0.015426636, -1.4052734, 0.14477539, -1.5419922, 1.953125, -1.8310547, 1.7304688, 0.05038452, -1.5273438, -0.32739258, -0.88134766, -0.42895508, -0.7651367, -1.3105469, -0.5097656, -1.9501953, -0.69384766, 1.7529297, -0.42236328, -1.7724609, -0.21618652, -1.1240234, -2.0957031, 0.12817383, 1.9042969, 0.7368164, 0.14074707, 3.4765625, -2.9023438, -4.515625, 0.1850586, -3.09375, 1.3349609, 0.23840332, -2.7363281, 1.6875, -1.9863281, -0.2890625, -0.8798828, 1.2099609, -4.3359375, -3.3007812, 2.2871094, 0.07757568, 0.81591797, 0.14941406, -0.39892578, 0.49780273, -0.32763672, 0.8310547, 1.046875, 1.2265625, 1.578125, 0.41210938, 2.6875, 1.8271484, 3.9003906, 1.3564453, -0.16381836, -3.6386719, -0.23400879, -0.14538574, 0.546875, 1.6181641, 2.7519531, -2.5, -0.49658203, -1.3095703, -0.043304443, 0.47875977, -2.4375, -0.8696289, -0.65283203, -0.8432617, -1.1054688, 1.0664062, 0.30688477, -0.9135742, 0.2133789, -1.0068359, -3.0664062, -0.7792969, -2.4824219, 3.6777344, -1.8925781, -0.8857422, 0.5986328, -1.2607422, -0.3010254, -0.8413086, 0.94433594, -0.0072288513, 1.125, -0.06173706, 1.6591797, 0.9897461, 0.77001953, -1.7871094, -0.39794922, -0.32006836, 1.0683594, -2.3164062, -1.4208984, 2.1894531, 0.29614258, 2.4628906, 1.0644531, -1.5185547, 2.2011719, -0.13513184, 0.35473633, 0.15527344, 0.10473633, 2.7929688, -0.69189453, -2.4550781, 1.3408203, -3.0097656, 0.38354492, 2.7324219, 0.38916016, 1.5507812, 1.1015625, -0.16931152, 0.5073242, -1.2392578, -0.60498047, 2.921875, 1.0205078, 0.8666992, -1.6367188, -1.6992188, 0.40673828, -1.3388672, 0.84814453, -0.58935547, -0.5180664, -0.17370605, -1.8261719, -0.2006836, -2.2285156, -2.6757812, -2.2441406, 2.7558594, 2.6191406, -0.06866455, 0.95654297, -2.1679688, 2.1894531, 2.1933594, -1.8691406, -0.7895508, -1.3095703, -0.17114258, 0.8027344, 1.1738281, -1.1123047, -0.43432617, 0.42138672, 4.2070312, -1.8173828, 1.3779297, -0.3564453, 1.8007812, -0.4411621, -2.1796875, 1.3623047, 0.47192383, -0.70751953, -0.46972656, -1.3095703, 1.3759766, 1.8623047, -2.1230469, -0.5864258, -0.94384766, -1.2675781, -1.1513672, -2.2148438, -1.5576172, -0.85791016, -0.5805664, -0.68408203, 2.3769531, 1.0332031, -1.8134766, -1.3359375, 3.8691406, 1.2080078, -0.71435547, -0.10882568, 0.60498047, -0.45581055, -0.8652344, -2.5546875, -0.83203125, -0.26489258, 0.15551758, -0.74560547, 1.4765625, 1.9082031, -1.0146484, 1.9902344, -0.5761719, -2.8203125, -1.4599609, 2.1484375, -1.4746094, -0.6777344, -2.0527344, 0.88671875, 1.4550781, -1.5087891, 1.2900391, 0.69140625, -0.5253906, -0.52246094, 3.9472656, 0.23937988, -1.6044922, -2.3320312, 0.53759766, -2.2675781, -2.0585938, 0.82421875, 0.44702148, 2.5332031, 1.7773438, -2.4003906, 3.3886719, -0.7001953, 0.76660156, 1.9082031, -0.2944336, -1.3037109, 1.0410156, 0.17163086, 3.8007812, -0.98535156, 0.75439453, -1.7050781, -0.4584961, 1.3183594, -2.4765625, -0.71240234, 0.8105469, 0.71777344, 0.6582031, 1.6660156, 0.80566406, -2.390625, -1.3554688, 1.8222656, -1.9101562, 1.1054688, -1.4199219, -0.31201172, -0.07824707, -1.0664062, -2.5859375, 0.11895752, 2.4257812, 0.061798096, -0.32958984, 1.1455078, -1.3798828, 0.14648438, -0.52246094, 1.6923828, -0.9291992, -1.0322266, -2.6640625, -1.1923828, -0.7026367, 0.5571289, 0.5307617, 0.63183594, 1.2841797, -1.3310547, -0.6567383, -1.7744141, -2.6855469, -2.40625, -0.7583008, 0.35839844, 1.4267578, -0.92333984, 0.31933594, 0.2578125, -5.25, -0.5371094, 1.3886719, -0.06652832, 0.83496094, -2.7988281, 1.4150391, 0.14904785, 1.7402344, 1.2822266, 0.45507812, 0.73779297, 1.8652344, -2.3632812, -2.5058594, 0.91064453, -1.3115234, 0.60498047, -0.60791016, 0.9951172, -2.2070312, -0.5332031, 0.062561035, 0.8432617, 4.3007812, 0.5595703, 2.1601562, 0.40795898, -1.7724609, 1.1445312, 0.66064453, -1.2324219, -3.2285156, 1.2988281, -1.5087891, -0.04348755, -2.1484375, -0.72021484, -0.79345703, 0.33374023, 0.5102539, 3.1621094, 0.29882812, 3.1582031, -3.2265625, 0.6953125, 0.9189453, 1.5869141, -0.14245605, 0.5083008, -0.40307617, -0.7426758, -1.6972656, -1.3222656, 0.6635742, 1.5283203, -0.96777344, 0.1809082, 0.49291992, 0.18664551, 0.23706055, 1.0732422, -1.2373047, 0.74560547, -2.53125, -0.7285156, 0.028579712, -0.1673584, -0.6953125, -1.9208984, 0.36645508, 2.8261719, -0.29296875, 0.1665039, 0.51953125, 0.059417725, 2.7382812, 1.0429688, 0.09289551, 0.07354736, 1.6220703, 1.0693359, -0.7558594, -2.7851562, 1.7412109, 0.16259766, -2.75, 1, 1.7333984, 1.5146484, -0.0044555664, 0.022216797, -0.08135986, 1.1728516, -0.2861328, 3.4492188, -0.57128906, -0.8022461, -0.12927246, 0.009147644, 0.27001953, 0.7661133, 2.4453125, 1.5029297, 2.2480469, 0.9838867, 1.3876953, -0.6870117, -2.1660156, -0.117126465, 1.3212891, 0.36987305, -2.7714844, 2.6308594, -0.34033203, 0.75927734, 3.3984375, -1.265625, 0.6201172, -2.6191406, -1.1289062, 2.0097656, -1.5058594, -1.1728516, -2.6660156, -0.5498047, 0.2631836, -2.1171875, 0.2467041, -1.8408203, -1.9746094, 1.0322266, -2.3808594, -3.7578125, 2.171875, 3.4746094, -0.43310547, -1.2158203, -1.5849609, 3.0410156, -0.30859375, -1.5224609, -0.36987305, 2, -0.89990234, 0.93408203, -1.5097656, -0.8388672, 1.3320312, -4.046875, 0.88720703, 0.84814453, -1.7353516, -0.8222656, -3.1679688, -0.76123047, 0.8305664, -0.42456055, 0.05456543, 0.49145508, -2.640625, 0.70947266, -2.2460938, 0.29541016, -0.67285156, -2.4179688, 0.38720703, -0.20617676, 1.0976562, -0.57128906, -0.32739258, 4.1367188, 2.2109375, -1.8359375, 0.4177246, -2.9453125, -0.21838379, -1.4775391, -2.796875, 0.006580353, -1.7246094, -0.7368164, 4.4179688, 0.079833984, 0.81396484, 2.8105469, -1.2119141, -1.0527344, 0.06549072, -1.6162109, -0.9042969, 1.1376953, 0.33618164, 3.3300781, 1.5751953, -0.96240234, -0.63378906, -1.0751953, -1.1416016, 0.71435547, 0.6142578, 0.6928711, -0.11126709, -1.5283203, 0.10723877, 0.2758789, 1.0751953, -0.99365234, 0.03225708, 1.5615234, 1.1396484, 2.9296875, -2.5976562, 0.4494629, 1.2460938, -1.2148438, -0.7036133, -0.56103516, -0.9453125, 0.5439453, 1.9746094, -1.0029297, -0.80908203, 2.4023438, 0.57666016, 1.8310547, -0.80615234, -0.82177734, 0.46533203, -1.2568359, -0.22265625, 0.09197998, 1.5595703, 1.6748047, -1.1386719, -1.4150391, -0.25170898, -0.49194336, -3.4355469, -1.9169922, 1.6757812, 1.0908203, 1.1015625, -0.42089844, -0.95214844, 2.8300781, -0.5185547, -0.93359375, -2.1679688, 2.140625, 1.0019531, 0.56640625, 4.8984375, -2.7675781, -0.58691406, 1.4248047, -2.9335938, -0.74316406, -1.3808594, -0.50439453, -2.2734375, 0.453125, 2.0273438, -0.6015625, -1.53125, 0.5654297, -0.9223633, -0.7675781, -3.4648438, 1.1542969, -0.41577148, -0.60253906, 0.33422852, 0.25805664, 2.921875, -0.81591797, 1.7226562, 2.2011719, 1.2246094, -0.44335938, 0.7890625, -1.2939453, -0.90527344, 0.62939453, 0.28637695, 1.6318359, -0.87060547, -0.27539062, 1.5673828, 0.6118164, -2.8085938, 1.2089844, 0.5722656, 1.2832031, -0.8774414, -2.0683594, 2.2050781, 2.109375, -0.15185547, 0.16894531, -0.019699097, -1.7167969, 0.4387207, 2.6328125, -1.4746094, 1.6230469, -0.2442627, -1.84375, 1.1494141, -0.31469727, -1.8193359, -1.1025391, 1.1044922, -0.6958008, 0.97509766, -1.5, 0.012268066, 0.7841797, -2.4902344, -1.2509766, -2.4257812, -1.9316406, 1.9560547, -1.2861328, -0.37036133, 0.38916016, -0.10424805, 4.6601562, -0.96533203, -1.5664062, 1.8183594, -0.033447266, -1.1396484, -0.024780273, -1.9853516, -1.0976562, -0.06665039, -0.43017578, 1.7099609, 1.4443359, -0.88134766, 0.7636719, -2.484375, 1.5947266, -2.2167969, 2.8242188, -0.81103516, -0.08166504, 4.4570312, -3.4785156, -1.7119141, -1.6279297, 2.7578125, 1.4951172, 0.5727539, 2.2949219, -1.4804688, -0.9140625, 0.4675293, -1.3339844, -1.5800781, -0.3798828, 0.44433594, 0.54541016, -0.08691406, -0.43115234, -1.0224609, -0.2770996, 0.66796875, -0.1706543, 1.8320312, -0.2775879, -1.328125, -0.42016602, -1.7851562, -0.24560547, -0.095214844, 0.75634766, -0.63623047, 3.8789062, -1.4755859, -2.0332031, -0.032104492, -1.0361328, -2.21875, -1.6318359, 1.2382812, 1.265625, 0.43530273, 0.6298828, 1.1357422, -0.8125, 3.2304688, 0.16418457, 0.44067383, 2.5058594, 0.05697632, 0.061584473, -0.78466797, -3.4628906, -0.91015625, -3.7773438, 0.9272461, 0.45239258, -2.1738281, 1.5136719, 0.8930664, -1.6025391, -0.52783203, 0.14953613, 1.0683594, 0.81689453, 0.86083984, 0.25390625, 0.33325195, -2.6640625, -3.2207031, 0.5629883, -0.70166016, -1.7246094, -1.5859375, -0.7260742, 2.4140625, -0.5805664, 2.7304688, 0.43847656, -0.055114746, -0.12927246, 0.33740234, 1.140625, 0.7836914, 1.3134766, 0.37768555, -0.8256836, -1.8603516, 1.3291016, -0.39379883, 0.24584961, 1.0429688, -1.6289062, -2.5722656, -1.9736328, 0.5288086, 0.69970703, 2.4902344, 1.1787109, -0.6489258, 0.42919922, 1.2558594, -1.8671875, 1.3466797, 1.9287109, 2.3261719, -2.7792969, 3.5390625, -1.4316406, -2.7539062, 1.9111328, 0.07696533, -0.5756836, -0.5786133, -1.8896484, -0.3857422, -0.703125, -1.9238281, -2.0566406, 0.8725586, -2.6171875, 1.3798828, -0.99365234, 0.23144531, -1.3349609, 2.7617188, -0.77783203, 2.5566406, 2.0195312, 0.088256836, -0.068237305, -0.9506836, -2.5722656, 1.3115234, 1.9697266, 0.7597656, -1.4091797, 0.3984375, -0.6479492, -1.2089844, 1.4345703, 0.71728516, 0.0047454834, 0.14135742, 2.0234375, 2.6230469, 1.9003906, 2.3671875, 1.3486328, 2.9277344, 2.0195312, 0.7739258, -0.13110352, 2.4375, 0.3178711, 1.9980469, -0.2697754, 1.9941406, 0.3762207, -0.83203125, 0.99902344, 1.4248047, -0.16870117, -1.7138672, 1.7353516, -1.0839844, 0.03112793, -0.4638672, 0.9165039, -0.89746094, 0.2548828, -1.8300781, 0.5136719, 4.0234375, 0.50683594, 1.0097656, 1.6933594, 0.90185547, 1.15625, -3.8730469, 1.0576172, 1.703125, 1.1845703, -1.1679688, 2.6523438, 0.55810547, 1.2421875, -0.27807617, 1.9902344, 0.16809082, 1.2070312, 0.46118164, 0.9370117, -0.11633301, -0.4284668, 1.375, -1.6835938, -0.8046875, -0.48754883, -0.6591797, -2.0097656, -1.7167969, 0.9140625, 2.4121094, 1.8671875, 0.35864258, -3.0761719, -0.10809326, -0.11193848, 1.5136719, -1.21875, 0.8066406, 0.2800293, -2.9609375, -2.2480469, 2.2441406, 1.9277344, 0.75341797, 0.90527344, -2.9179688, 0.2849121, 1.4023438, 0.6743164, 1.3359375, -0.4555664, -1.5146484, 2.9550781, 0.13024902, 4.1171875, 1.515625, 3.4121094, -0.60302734, 0.080322266, 2.5019531, 0.4296875, 0.78466797, 1.1337891, -1.1845703, 0.46679688, -0.9584961, 1.1943359, -0.107666016, -1.0283203, -1.4072266, 0.2722168, -0.15332031, 0.011230469, 0.16149902, 0.6323242, 3.3671875, 2.3574219, -0.88916016, -2.2753906, 2.1542969, 1.9667969, -0.31713867, -1.3027344, -0.17492676, 0.44995117, 0.016098022, -0.66064453, 1.0693359, 0.9482422, 0.5576172, -1.4609375, 0.8173828, -0.52490234, 0.23791504, 0.36157227, 0.8984375, -2.0175781, -2.4609375, 1.71875, -0.45947266, 0.33325195, 0.8911133, -1.8974609, -2.3457031, 0.30737305, -0.6513672, -1.3388672, -1.0087891, -1.0253906, 1.1230469, 2.7792969, 1.4003906, 0.64990234, -2.5625, -2.4511719, 1.5800781, -0.5600586, 3.1953125, 0.7368164, -1.0507812, 0.42456055, -2.3691406, 2.4570312, 0.88134766, -2.6132812, -0.05444336, 0.025054932, 0.3737793, -1.1279297, 0.77441406, 2.140625, -0.61083984, -0.54052734, 2.5839844, 3.125, -0.023071289, 2.4726562, 1.3027344, 1.9257812, -2.3066406, -0.12609863, 0.41259766, 1.3037109, 1.2685547, -0.15649414, -1.0117188, -3.1347656, -1.6044922, -1.5097656, -0.35766602]}, "B071749XB4": {"id": "B071749XB4", "original": "Brand: GasOne\nName: GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black\nDescription: \nFeatures: Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose\nUniversal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output)\nBrass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring\nHeat resistant - cast iron will not melt easily compared to aluminum construction\nTo be used with propane only\n", "embedding": [-0.7089844, 1.5048828, 1.4345703, -0.093688965, 0.10736084, 0.43920898, 1.5087891, -1.8027344, 1.2734375, -0.43554688, -0.10748291, 0.6376953, -0.9975586, -1.8740234, 1.2451172, 0.06665039, 0.70703125, 1.8085938, 1.0332031, 0.92089844, 2.6230469, -0.19897461, 2.5859375, -2.9003906, -0.7944336, 1.7802734, 3.2988281, -3.15625, -0.49414062, -1.34375, 1.5820312, 0.8129883, -1.09375, 1.3916016, -2.9863281, -1.0859375, 0.74316406, -0.3269043, -4.46875, -0.9868164, -0.013435364, 1.3388672, 1.8007812, 0.31103516, -1.6933594, 1.6884766, 2.1171875, 0.15429688, -1.6611328, 0.546875, 1.1064453, 1.6386719, -0.9589844, 0.06088257, 1.0351562, 2.2207031, 1.5214844, -2.8769531, 0.21362305, 0.25390625, 2.7265625, 1.7119141, -2.3183594, -0.53125, -1.6875, 0.65722656, 0.33984375, -0.76171875, -1.3144531, 0.34960938, 1.8144531, 0.0061569214, 0.4091797, 0.6899414, 1.3212891, -1.2900391, -4.1054688, 0.53808594, 2.0136719, -2.4902344, -1.8222656, 1.1835938, 0.8881836, -0.63964844, -0.36694336, -0.3881836, -0.38256836, -0.76171875, 2.7519531, -1.0234375, -2.921875, 4.1445312, -1.9628906, -4.203125, 1.6884766, 0.8745117, 0.83984375, 0.64746094, 0.25878906, -0.20617676, -1.8300781, -1.1015625, -1.0859375, 2.6035156, -1.0566406, -0.96728516, 0.6538086, 2.2578125, -2.4921875, 1.5283203, -1.5439453, -1.21875, 1.2333984, -0.9868164, 1.1875, -1.3037109, 0.3527832, -1.2929688, 2.25, -0.77246094, 4.1835938, -1.3740234, -0.55322266, -1.6298828, 0.097717285, 1.7900391, 0.06341553, -1.3271484, 2.6386719, -2.4335938, 0.5283203, -1.7636719, 2.984375, 0.92041016, -1.1914062, -0.5703125, -1.3837891, -3.4414062, -2.9296875, -2.1308594, -3.0371094, 1.8076172, 0.43066406, -0.78027344, -3.0761719, 0.4465332, -0.5932617, 0.92089844, -0.44970703, -1.6142578, 1.3554688, -1.8847656, -0.7763672, -2.5507812, 2.2558594, 1.3769531, -0.2052002, -2.5351562, 3.1464844, 1.4501953, -0.21008301, 0.8847656, -1.1181641, 1.0986328, -0.70410156, -0.5283203, 0.13659668, -0.1965332, -1.4208984, 1.3037109, -2.6816406, -0.7050781, -1.9414062, 0.14538574, -0.54589844, -0.45532227, -0.4169922, 3.8222656, -1.3554688, 1.5195312, -3.4707031, -2.6132812, 0.71484375, -1.4863281, 2.8515625, -1.0888672, 1.1357422, -1.4130859, 0.2800293, -0.65478516, -0.9682617, -0.7915039, 2.0292969, 1.8886719, 0.20349121, -0.78564453, -0.33740234, -0.48266602, 0.007381439, 1.7792969, -1.5439453, -1.8525391, 0.5161133, 0.52197266, -1.4716797, -1.3710938, 0.28393555, -2.1464844, 1.2197266, 1.3583984, -0.13305664, -0.46801758, 1.7099609, 0.5673828, -0.078063965, -1.3886719, 1.8613281, 0.2746582, 1.5595703, 1.1943359, -0.4658203, -2.1621094, 1.8027344, 0.42285156, 1.2744141, 1.4277344, 0.20153809, 1.3320312, -1.9628906, -1.7890625, 3.1152344, 1.9736328, -0.13293457, 0.049987793, -0.49829102, 3.4609375, 0.42919922, -1.1015625, 0.73535156, -0.6777344, 0.14978027, -0.6430664, -2.2167969, -0.59033203, -1.9091797, 0.29760742, -1.3935547, 0.23425293, 1.6503906, 0.1574707, 1.2871094, -0.5439453, -1.1289062, -1.0625, -2.1503906, -0.07299805, -0.21936035, 0.65771484, 0.18481445, -1.6875, 2.4199219, -0.67089844, 0.1595459, 0.22192383, 0.02609253, -2.1367188, 1.5136719, -0.115600586, -0.8574219, 0.3544922, 0.9638672, 0.4777832, 4.4296875, -0.20019531, 1.0429688, 3.3261719, -1.7744141, 2.4765625, 0.27416992, 1.1708984, 0.038330078, -1.1015625, 1.8701172, -2.0859375, 2.4609375, 0.95654297, 1.8847656, -0.66796875, -2.2636719, 0.95996094, 3.8300781, -0.41870117, -2.1738281, 2.1777344, -1.1318359, 0.5317383, 0.3630371, -0.4177246, 0.5463867, -1.1123047, 1.6933594, 0.10772705, 0.19750977, 2.2363281, 0.3918457, 0.92285156, -0.3930664, -0.6899414, -0.6455078, 1.3603516, -0.36547852, -0.0058631897, -0.44091797, 2.8203125, -3.7773438, 0.8198242, 1.3730469, -2.6855469, 0.46142578, 0.10211182, 2.6308594, 2.4101562, 1.4921875, -0.85253906, 2.6464844, 1.4111328, -0.94140625, 0.34228516, -0.20458984, -1.4248047, -0.7285156, -1.1972656, -1.7548828, -0.88916016, -0.7558594, 0.6455078, -1.0908203, -2.6855469, 1.9326172, -2.53125, -0.1953125, 2.1601562, -2.6621094, 2.109375, -1.4658203, -2.2128906, -1.4375, 0.1472168, -1.6044922, -1.2246094, 1.7382812, 2.9003906, -1.8125, -3.1210938, -0.8208008, -1.0136719, 0.12915039, 0.90722656, 0.009506226, 1.4667969, 0.8515625, 0.5410156, 0.54589844, 0.62109375, 0.32910156, 0.2322998, 1.9042969, -3.2753906, -0.10253906, -1.4550781, 0.19177246, -0.96435547, -0.24450684, -2.4121094, -0.7426758, -0.5864258, 0.42822266, 1.796875, -2.0507812, 2.6835938, -0.5996094, -0.4177246, 1.3662109, -2.34375, -2.96875, 1.6923828, -0.36547852, -1.1728516, -0.6748047, -3.9609375, 1.9853516, -0.47827148, -0.38867188, 0.019638062, 0.12805176, -0.6044922, 0.73779297, 0.15527344, -0.9663086, 1.3144531, -0.53222656, 0.5175781, -0.79345703, 0.5541992, -0.7519531, -1.9003906, -0.6225586, 0.48583984, 1.4707031, -0.2709961, -0.097717285, 1.1503906, 1.0361328, 1.5146484, 0.23095703, -2.1113281, 0.9404297, 1.7148438, -0.27392578, 2.4472656, -3.3515625, -0.43920898, -2.2207031, -0.52978516, 1.6152344, -0.5097656, 2.8515625, 0.9946289, -0.5463867, 0.14245605, 0.111206055, -0.6323242, -2.25, 0.059906006, 2.8105469, -1.9560547, -2.6582031, 0.01890564, 1.8652344, -2.9902344, 1.0917969, 2.3574219, 1.171875, 1.2597656, 1.5966797, 1.0429688, -1.921875, -1.9150391, 0.62939453, 0.8305664, 0.4099121, 0.21704102, 0.34960938, 0.12792969, -0.35766602, 1.4150391, 1.9960938, 1.7832031, 3.1132812, 1.7148438, -0.11303711, 0.009689331, -1.1640625, 0.36254883, 1.1230469, -0.17346191, 1.3154297, 0.6274414, 0.14123535, -0.65625, -0.036132812, 1.3964844, -3.0898438, -0.70654297, 1.1054688, -0.9165039, 1.3095703, 0.27197266, -0.013977051, -0.68066406, 0.103515625, 0.74902344, 0.37646484, 1.2333984, 2.2910156, 0.35473633, 0.00030827522, -1.0576172, 1.9003906, 0.9682617, -0.7285156, -0.73583984, 0.87597656, -2.3828125, -2.8496094, 0.6591797, -2.7636719, 0.5263672, 1.7978516, -0.16723633, -1.5527344, 1.5585938, -1.0556641, -0.046325684, 0.67529297, -1.3710938, 1.0693359, -2.25, -2.1015625, -0.1809082, 0.5444336, 1.2382812, 1.0048828, -1.4716797, 0.17797852, -1.7744141, -1.0527344, -0.7270508, 0.29174805, -2.6738281, 0.5541992, -2.0703125, -1.1230469, -0.6123047, 2.7480469, 0.15563965, 0.5317383, 2.5488281, -1.671875, -0.7714844, -1.4306641, -2.8183594, 0.7402344, -2.6328125, 0.12841797, 2.2011719, 1.3417969, -0.26098633, 2.0292969, 0.32666016, -2.9082031, -0.5136719, 1.3935547, 1.3896484, -2.4433594, -2.921875, 2.1425781, 0.84521484, -2.0078125, -1.1933594, -0.36401367, -1.5566406, -1.1582031, 0.22314453, -3.375, 0.032440186, 1.5058594, 0.50927734, -0.9589844, -1.5664062, 1.1650391, -0.56347656, 0.29467773, -1.5566406, 2.0859375, 0.0065956116, 0.029037476, 0.04937744, 4.3632812, 1.2080078, 0.6274414, 0.96875, -0.7055664, 0.29516602, 0.12585449, -2.1132812, -0.6220703, 0.13391113, 1.6035156, -1.0644531, 0.70751953, -3.0390625, -1.78125, 0.7011719, 1.1171875, 1.2626953, 1.4179688, 2.2695312, -1.3330078, 0.09661865, -0.5185547, -1.2832031, 0.08227539, 0.3564453, 2.2988281, -1.3808594, 2.1933594, -1.9238281, 0.062927246, 0.8803711, -1.5761719, -2.3203125, -0.33911133, 1.3632812, -2.1445312, 0.25268555, -1.1513672, -1.6328125, -0.5449219, 0.23754883, -1.2617188, -0.6347656, -1.328125, 0.059295654, 0.6274414, 0.41430664, -0.20812988, 0.6274414, 0.88623047, -1.390625, 0.08276367, -0.45141602, 0.16833496, -1.1777344, -0.6323242, 0.24072266, -0.57958984, 2.0683594, -0.54541016, 0.13989258, -1.5097656, 0.453125, 0.04751587, -0.36669922, 1.3134766, -0.6958008, 1.4882812, 1.1875, 0.2208252, 2.5253906, 0.5214844, -0.61816406, 1.8085938, 1.7519531, 0.1920166, -0.7167969, 2.3359375, -1.0664062, -0.61083984, 2.3339844, 2.09375, 0.29614258, 2.7597656, 1.6591797, -0.9770508, 0.08959961, 2.2832031, -2.0058594, -1.2519531, -0.6538086, -1.0751953, 2.5703125, -0.07763672, -0.98828125, -0.24353027, 4.0976562, -1.5029297, 0.73535156, 1.3251953, -0.06768799, -0.83496094, -0.84375, -1.5527344, -2.9511719, 0.6640625, -0.78564453, -3.0292969, 1.9765625, -0.37231445, 2.0117188, 1.1992188, 0.68603516, -0.2783203, 1.4707031, -0.60498047, 0.5571289, -0.22033691, -0.27075195, -1.2324219, 1.9433594, 2.6152344, 1.6201172, 1.6738281, -1.6396484, 1.78125, -0.7114258, 0.36499023, 1.8261719, 1.2255859, -0.88916016, -1.2167969, 3.8007812, -1.3212891, -0.47509766, -2.3066406, -1.7197266, -0.8461914, 2.4628906, 1.4873047, 1.2099609, -0.49169922, 0.075683594, -1.8115234, -4.5664062, 0.23913574, 0.39941406, -0.15527344, 0.012428284, -1.6914062, 1.0332031, 0.24975586, -0.5629883, -0.0031929016, -1.7070312, 0.27270508, -0.29418945, 0.4099121, -0.32617188, -0.66503906, 0.8261719, 0.6645508, 0.029647827, 0.029510498, 1.2705078, -1.3505859, -2.2773438, 1.4443359, -0.48535156, 0.12231445, 2.2011719, -0.6933594, 1.1005859, 3.2402344, -0.47387695, -3.4648438, 1.0400391, -1.9628906, -0.63378906, 1.0087891, -2.328125, 2.1191406, 1.1201172, 0.059509277, 1.8505859, 0.27807617, -0.6035156, -0.81396484, -0.8901367, 1.6289062, 1.8505859, 0.6225586, -2.0625, 1.7236328, -0.75439453, 0.49951172, 0.9458008, -0.7011719, -2.6386719, -1.1210938, -1.3779297, -0.054534912, -1.1640625, -0.3786621, 0.35668945, 0.096069336, 1.5283203, -0.39013672, 1.7744141, -0.23095703, -0.01777649, 1.5732422, 2.6367188, -0.6621094, 3.9902344, 1.0546875, -0.41235352, -2.8984375, -1.6103516, -0.9111328, 2.2089844, 0.4987793, 0.8486328, 0.7636719, -0.7734375, -0.8852539, -1.4550781, -0.04611206, 0.6347656, 1.1152344, -0.7138672, 1.0449219, 3.9042969, -1.0839844, 1.1552734, 1.0449219, -1.0625, -0.5234375, 1.578125, 3.265625, -0.40039062, 1.0605469, -1.90625, 0.9838867, -0.68066406, -0.7026367, -1.3232422, -1.2763672, -0.5654297, -0.9238281, -0.7553711, -3.0957031, -0.23474121, -0.74316406, -0.64941406, 1.1425781, 0.7714844, -1.4023438, 0.43310547, 2.1835938, 3.4296875, -1.6982422, 1.3544922, -1.3417969, 0.21679688, 1.9345703, -2.1289062, 0.05255127, 2.0742188, 1.3095703, -1.2871094, -0.36083984, -0.66552734, 2.59375, 0.34375, 2.1367188, 1.9306641, 0.1439209, 1.7851562, 0.84277344, 2.3632812, 2.3027344, 0.09814453, 0.76123047, 0.61083984, -1.0087891, -0.7158203, -0.67333984, -1.5898438, -1.4882812, -2.0292969, 0.06591797, 0.7138672, 2.6425781, -1.7089844, 0.14978027, -0.43652344, 1.8505859, -2.4433594, 1.3105469, -1.2353516, -0.2512207, 0.5551758, -0.1887207, 2.6972656, 0.51123047, -1.7255859, -0.61865234, -0.4987793, 1.7294922, -2.3984375, 1.4560547, -0.8408203, -2.1054688, 0.90185547, 0.055267334, 1.1386719, -0.060058594, 1.0292969, 0.32495117, -0.49414062, 0.37280273, 0.030197144, -4.3632812, -0.07788086, 1.1679688, 2.9375, 0.70751953, -1.2763672, 2.8261719, -1.5996094, -0.42407227, -2.9511719, 3.5859375, 0.3125, -0.074645996, -0.20983887, -1.7910156, 1.1396484, -2.4003906, 1.9111328, -1.7353516, 1.3662109, 1.0400391, 0.0087509155, -0.46044922, 0.035003662, -1.765625, 2.2382812, 0.3359375, -1.4736328, 0.7446289, 1.5224609, 0.28076172, 0.29125977, 1.4091797, 1.6875, -0.35766602, -1.5888672, 1.9853516, 0.046539307, -2.0097656, 0.42895508, 3.0644531, 2.0332031, 0.7495117, 2.359375, 1.3398438, 0.19165039, 1.5615234, -0.91064453, -0.14196777, -1.0917969, -1.0029297, -1.5693359, -0.17260742, -0.6225586, -1.3466797, 2.75, 0.15563965, 0.75927734, -0.60058594, 1.6591797, -1.4355469, 0.41455078, -0.7158203, -1.6230469, -1.9697266, -2.1230469, 0.6455078, -3.3847656, -0.7680664, 0.5551758, 1.1162109, 0.1875, -0.6191406, -1.0576172, -0.39916992, 1.0087891, -0.10205078, 0.38793945, -1.9697266, 0.23181152, 0.265625, 0.11425781, -0.2824707, 0.7763672, -0.7583008, 0.45703125, -0.31225586, -1.2880859, -0.8671875, -0.32617188, -0.7583008, 0.6977539, 2.2851562, -0.3125, 1.7275391, -1.7714844, -4.4648438, -1.2734375, -1.9257812, 0.2619629, -0.84277344, -0.3022461, 0.1194458, 1.4423828, 2.1523438, -1.8886719, 2.2207031, -1.0732422, -0.22766113, 2.0585938, -1.7705078, 0.52246094, -0.7026367, 0.29467773, -0.27416992, 2.375, 1.4306641, -0.7597656, 1.4638672, 1.8212891, -0.05718994, -2.25, -0.122558594, -1.6845703, -1.1201172, 0.3010254, -0.71728516, 2.1816406, 2.1738281, -2.3867188, -0.4934082, -1.8847656]}, "B01LVUYVPT": {"id": "B01LVUYVPT", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFL-SO24DT 30,000 BTU's 24\" Southern Oak Vent Free Gas Log Set\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with propane or natural Gas\nUp to 30,000 BTU's/hr. heats up to 1,000 sq. Ft\nNo electricity required allows for reliable back-up heating incase of an Emergency situation\nDual burner system provides two rows of flames for a more full looking fire\n6 hand painted concrete logs inspired by nature\n", "embedding": [-1.7998047, 1.2753906, 1.4814453, -0.6035156, 0.9794922, -0.089904785, -0.4194336, -1.1484375, -0.6035156, 1.8554688, 2.828125, 3.2148438, 0.43237305, -3.15625, -0.04269409, -1.3740234, 0.77734375, 0.58251953, 0.8095703, -1.6347656, 1.2197266, 1.4765625, 0.050476074, -0.5722656, -0.6401367, -0.029647827, 3.0703125, -3.3027344, -0.32763672, -1.4667969, 1.7480469, 0.57421875, -0.08746338, 1.8798828, -3.34375, -2.3164062, -2.4628906, -0.09277344, -4.1640625, 0.46704102, -1.3056641, -1.1572266, 3.2421875, 1.8945312, -3.2207031, -1.0683594, 1.7080078, 0.28930664, -1.8339844, 1.9101562, 0.51171875, 2.1777344, -2.3710938, -0.09515381, -0.6503906, 2.4804688, 1.2714844, -0.7519531, 1.5117188, 1.3046875, 1.7929688, 0.59277344, -2.2207031, 1.6640625, 0.013435364, 2.0898438, 0.61083984, -0.22546387, -1.7822266, 0.0569458, 0.7026367, 1.0439453, 0.86865234, 1.4785156, -1.6064453, 0.16235352, -4.2304688, 1.125, 2.2890625, -1.6953125, -0.099121094, 0.9272461, -0.2944336, 0.3527832, -0.8173828, -0.3605957, -1.8144531, -0.36889648, 0.35229492, 0.24279785, 0.42089844, 1.2646484, -0.33496094, -4.1015625, 1.2441406, -1.3759766, -0.056121826, 0.21118164, -0.55126953, 0.93310547, 1.1894531, 1.5927734, -0.38891602, -2.0996094, -2.6152344, -0.4519043, 2.1269531, 2.6230469, -1.6738281, 2.2539062, -1.7880859, -0.4753418, 2.609375, 1.8115234, 0.055755615, 0.1541748, 0.2878418, -0.7709961, 3.1328125, 0.78759766, 2.3105469, -0.7861328, 1.5615234, 0.9038086, 1.890625, 1.1230469, -0.7001953, 2.8164062, 0.23510742, -1.9443359, 0.46923828, -2.0117188, 1.234375, -0.83251953, -0.10443115, -0.7426758, -0.484375, -2, -3.265625, -1.4082031, 0.36279297, 2.5605469, 0.26367188, 0.25732422, -2.2695312, -1.9794922, -0.045684814, -0.55126953, 1.9873047, -3.0878906, 0.2915039, -3.2265625, -0.23022461, -3.40625, -0.059295654, 0.028915405, 1.2919922, -0.68652344, 0.17614746, -0.11968994, -0.8930664, -1.2900391, -4, 1.0947266, -1.0791016, -2.0234375, 2.3652344, 0.19055176, -0.5234375, 1.7626953, -0.35083008, -0.78271484, 1.2070312, -2.3417969, 0.27905273, -2.2246094, 0.24450684, 2.9296875, -0.6791992, 0.70654297, -2.2246094, -0.2692871, -0.47753906, -1.2548828, -0.39013672, 1.5263672, 1.0273438, -0.69433594, 1.8730469, -1.453125, -1.3037109, 1.9042969, -1.2978516, 0.25097656, -0.5966797, -1.1113281, -0.6713867, -2.6542969, 2.4121094, 0.4338379, -0.41748047, 2.265625, 1.2197266, 0.7050781, -1.1933594, -1.9716797, -1.6035156, -1.0234375, 1.9492188, 1.2597656, -0.14990234, -1.0947266, 2.2324219, -0.37890625, 1.2792969, -2.6523438, 1.7216797, -0.25585938, -0.8964844, 0.8203125, 2.0585938, -0.25805664, 0.8095703, 0.6875, 1.7685547, 0.30322266, -0.40234375, -0.37036133, -2.59375, -1.4960938, 1.0742188, 0.018417358, 0.083618164, -0.6040039, 0.027038574, 3.0019531, 0.36376953, -0.08312988, 0.98339844, 1.2373047, 1.4833984, -0.26245117, -0.8823242, 1.140625, -1.2294922, 1.7832031, -0.53125, 1.2636719, 2.9296875, 1.0273438, -0.71728516, -1.1064453, 1.2978516, 1.3320312, 1.1855469, -0.74560547, -0.70654297, -0.47558594, -0.062438965, -2.2128906, 0.28027344, -0.5180664, 1.3359375, 1.3154297, -0.55566406, -1.2246094, 0.93408203, -0.020614624, -0.0014247894, -0.19555664, -0.9404297, 1.3916016, 2.0800781, -0.45703125, 1.5878906, -0.57910156, 0.60058594, 3.3730469, -1.4902344, 1.9570312, 0.89404297, -1.8486328, 0.96777344, -0.7807617, 0.23425293, 1.2001953, 0.15112305, 0.90966797, -0.29101562, -0.2783203, 6.0390625, -0.5620117, -3.1289062, 0.94921875, -0.70751953, -0.67822266, 0.8154297, -0.59277344, -0.099121094, -0.48999023, 1.7226562, 0.9033203, -0.3413086, 1.625, -1.3535156, -0.7480469, 1.5615234, -1.9785156, 0.9165039, 0.5029297, 0.5332031, -2.6914062, -1.2382812, 1.1621094, -4.171875, -0.54296875, 2.40625, -1.4707031, 2.3769531, 0.6958008, -0.14245605, 1.0673828, -1.7822266, -2.0566406, -1.5859375, 0.36791992, -0.75146484, 1.2929688, -0.27929688, -0.43920898, 0.34423828, -2.1972656, -1.2285156, -2.5039062, -1.5625, -0.76123047, 0.17211914, -0.57666016, -1.2939453, -1.2724609, 0.52197266, 0.28710938, -1.4404297, 0.2524414, -0.6953125, 0.22167969, -0.05230713, -1.2431641, -1.2822266, 3.046875, 1.3818359, 2.6386719, -3.4628906, -2.3261719, -1.4003906, -0.9814453, -1.2529297, 0.72216797, -1.1376953, 0.55078125, -0.07208252, -0.38305664, 0.27685547, -1.2539062, -0.7548828, -0.42089844, 2.0175781, -4.4375, 1.5019531, 0.9370117, -0.28149414, 0.76464844, 1.8076172, -1.7226562, 0.41503906, 0.52685547, 0.25170898, 2.4296875, 0.7338867, 1.7744141, 1.5195312, -0.78466797, -0.91845703, -3.921875, -1.0458984, 0.68847656, -1.3935547, -1.0351562, -0.5942383, -2.2246094, 1.0078125, -0.1694336, -1.2988281, 0.17077637, 1.0224609, -0.3786621, -2.7128906, -0.61279297, -0.42993164, -1.296875, -1.1162109, -2.4726562, -0.19445801, -0.5957031, -0.0035705566, -0.44433594, -1.7402344, 0.36254883, 0.5986328, 2.3710938, 1.6904297, 0.56933594, 0.37451172, 0.7368164, 1.8398438, -1.7314453, 2.2695312, 2.3066406, -0.062927246, -0.99121094, -2.1894531, -1.6621094, -2.1503906, -0.33496094, 3.4082031, 2.9921875, 1.1269531, 0.29736328, -1.1953125, -0.13354492, 3.1230469, -0.37695312, 0.65478516, -1.5478516, 1.2480469, -0.9838867, -0.85302734, 1.1962891, 0.7529297, -1.4423828, -1.0693359, 2.2167969, 0.76660156, 3.0253906, 0.8256836, 2.4433594, -0.25146484, -0.23547363, 0.5961914, 0.71484375, -0.9765625, -1.8720703, -1.1523438, 2.0878906, 1.3867188, 1.1005859, 1.5683594, 0.7788086, 0.6972656, 0.26245117, 0.50439453, -1.234375, 0.18493652, -0.35742188, 2.3945312, 2.0546875, 1.0097656, 0.56689453, -1.2714844, -1.8291016, -0.39624023, 0.84765625, -1.9667969, 0.3034668, 3.1230469, -0.12927246, 0.5415039, 1.6943359, 0.49560547, -0.86035156, 0.4645996, 1.3974609, 0.82177734, -0.4350586, 2.1328125, -2.1425781, -1.5214844, -1.8144531, 1.1396484, -0.6245117, -0.86279297, 0.3815918, 4.2304688, -3.3828125, -1.0791016, 1.8603516, 0.30273438, 1.8525391, 2.0683594, 0.03982544, -0.90234375, -0.36035156, -2.3417969, -0.15942383, 3.234375, 0.67041016, -0.80908203, -1.2958984, 2.0332031, 0.3413086, -0.017929077, -0.7480469, 1.1152344, -1.3134766, 0.82958984, -1.7236328, -1.5400391, 1.0361328, -0.67529297, 0.99121094, 4.140625, 0.124816895, -0.79833984, 0.43896484, 1.1386719, -2.0097656, -0.6298828, 4.5820312, 0.29345703, 1.3515625, -1.8261719, -2.9707031, -0.12902832, -0.06524658, -0.5214844, 2.1992188, 0.6694336, -0.41259766, 0.45898438, -0.41455078, -2.7773438, -0.8574219, -0.8515625, 0.6166992, -2.7148438, -0.52978516, -0.89160156, 0.67626953, -1.5341797, -0.6245117, -0.7290039, -0.35791016, -0.3095703, 0.50146484, -2.8652344, 0.81591797, -1.3525391, -0.34375, -1.5820312, -0.6040039, 2.5117188, -0.42211914, 1.1044922, -1.2285156, 1.8076172, 2.4023438, -0.042297363, 3.1152344, 2.7207031, 1.6289062, 0.33984375, -0.44628906, 1.5478516, 2.6757812, 0.18737793, -3.0507812, -3.9140625, 0.13366699, -0.4008789, -2.5253906, -1.6113281, -0.32739258, -1.7695312, 0.6074219, 2.1269531, 1.4765625, 2.1992188, -0.34985352, -1.1464844, 2.078125, 0.22546387, -0.5683594, -1.1103516, -2.2148438, -1.2119141, 0.18591309, 0.10076904, -1.0302734, -0.09350586, -0.77978516, -0.52441406, -0.48339844, 2.1347656, 1.1855469, 1.2783203, 1.5703125, -0.69384766, -1.1347656, -0.77197266, -0.055511475, 2.0097656, 1.6474609, 1.9355469, -1.4726562, 1.0839844, 1.2900391, -1.875, 0.34838867, -0.29638672, -0.21801758, 0.12878418, -0.5073242, -4.2539062, -1.3730469, 1.1552734, 1.1582031, -0.13110352, 1.9277344, -1.1904297, -1.4501953, 0.009864807, 1.0292969, -0.87109375, 0.9423828, -0.4309082, -0.5410156, 0.66015625, 2.09375, -1.6533203, 0.83496094, 1.25, 0.044525146, 1.7939453, 0.17114258, 0.42700195, -2.1484375, -0.73583984, -0.39013672, -0.14160156, 0.051239014, -0.5073242, -1.2275391, 3.046875, 1.5751953, -0.58496094, 2.9277344, 0.29833984, -2.828125, 0.8725586, 1.3740234, 2.2441406, 0.23510742, 0.055603027, -3.4980469, -1.6337891, 2.5566406, -1.7724609, -0.19482422, -0.52001953, -2.0976562, -1.4375, -1.5742188, -2.0644531, 0.2220459, -2.6816406, 0.41479492, 0.30908203, -1.3212891, -2.2890625, -0.8930664, 2.6132812, 0.4399414, -1.4355469, 2.1503906, 1.0654297, 0.32592773, -0.57421875, 1.0029297, -1.5, -0.71875, 0.8979492, -2.0039062, 1.2490234, 1.1367188, 1.0556641, -1.2714844, -0.88916016, -1.3652344, 1.296875, -1.0712891, -0.4362793, 2.2441406, -0.18847656, 1.4599609, -0.16906738, -1.8369141, -1.4794922, 1.0966797, 0.30078125, -0.5541992, -0.5541992, -1.0878906, -3.4707031, -2.4433594, -0.6801758, -0.30004883, -1.5390625, 0.023666382, -0.29467773, -2.2265625, 0.0010309219, 1.7314453, 0.9042969, -1.0136719, -1.5224609, -1.7763672, 0.17358398, -1.1533203, -1.9121094, 1.4345703, -0.92333984, 1.2148438, -1.0234375, 1.3955078, -0.68896484, -1.5244141, 0.9926758, 0.09185791, 0.72558594, -0.70654297, 1.7910156, 2.6054688, 2.578125, 1.8759766, -1.8671875, 0.79296875, 0.6923828, 0.6279297, 1.5097656, -1.2578125, 0.5761719, 1.1220703, 1.5751953, 0.26220703, -0.006340027, 0.8378906, 0.22351074, 2.0878906, 0.78027344, 0.52783203, 0.06915283, -0.9272461, 1.7304688, -0.5361328, 1.2841797, 1.1855469, 0.3605957, -0.7397461, -3.1953125, -0.034606934, -0.3383789, -2.9628906, -1.0576172, -0.20385742, 2.5722656, -0.051971436, 0.005722046, 0.4333496, 0.44335938, -0.2944336, -1.0214844, 0.33789062, -3.0546875, 2.359375, 0.61376953, 0.23327637, -3.1542969, -1.921875, 0.7441406, 0.24975586, 2.8046875, 0.089782715, 0.8364258, -1.765625, -0.8691406, -0.36645508, 1.6660156, 0.61816406, 0.9350586, -0.5961914, 1.7773438, 0.9243164, 0.6982422, 2.0371094, 0.96777344, 2.3476562, 0.96533203, 2.8632812, 3.4042969, -1.6611328, -0.7338867, -1.5595703, 0.23583984, -0.66552734, 0.016571045, 1.8271484, -1.9541016, -1.421875, -1.0654297, 0.18029785, -3.4355469, 2.0371094, 0.5444336, -0.1875, -1.1191406, 0.30737305, -0.025512695, 1.3710938, 0.88427734, -0.38061523, -1.3496094, -0.05026245, -0.008628845, -0.23706055, 2.6660156, -2.4140625, 1.1445312, 0.2915039, 0.5229492, -0.9868164, -0.25097656, -0.21728516, 3.25, 2.5253906, 3.359375, 2.046875, 2.28125, 2.8261719, -0.23205566, 1.1806641, 1.6337891, -1.2695312, -0.14282227, -0.06677246, 0.39282227, -0.5336914, -0.39892578, 1.2832031, -0.8339844, 0.20361328, 0.57421875, 1.8994141, -1.7177734, -4.4609375, 1.2490234, -0.05078125, 2.2910156, -3.296875, 0.5102539, 0.72998047, 0.41992188, -0.6044922, -3.8378906, 0.33618164, -0.1895752, 0.5332031, 0.44335938, -0.6894531, 1.3154297, -2.2421875, 0.093566895, -0.2861328, -2.6152344, -0.6113281, -1.1640625, 1.6757812, 0.19018555, 0.30322266, 1.2753906, 1.5458984, 0.35742188, 0.7246094, -1.5673828, -1.2099609, 0.7036133, 1.5410156, 1.0791016, -1.2412109, 0.5078125, 0.29296875, -1.390625, -4.7421875, 0.88720703, -0.15563965, 1.453125, 1.2216797, -1.0087891, 2.0273438, 0.87402344, 0.6567383, -2.9160156, -0.61328125, 0.25976562, 0.22033691, -2.0136719, 0.32861328, -0.8310547, 0.19262695, -0.16589355, 1.0107422, 2.2089844, -1.1806641, 1.8935547, 1.1044922, 0.38232422, 1.3671875, -0.28564453, 0.13659668, -0.27270508, 0.51123047, -0.68310547, -0.047698975, -0.11383057, 2.6582031, -0.55908203, 0.6064453, 0.6645508, -0.42333984, -1.8164062, -0.4177246, -1.7402344, -0.4333496, -2.8886719, -0.60058594, 0.98828125, -0.26123047, -1.3085938, -0.31811523, 1.3486328, -2.6757812, -0.54296875, 1.1445312, -0.55810547, 0.7207031, -0.08441162, -1.0507812, 1.0947266, -2.8613281, 2.8710938, -1.7841797, -1.0644531, 0.8334961, 2.0136719, 2.171875, -0.054504395, 1.8447266, 0.33129883, -1.2851562, 1.1591797, 2.0253906, 0.3544922, -0.24743652, 0.080200195, -1.6435547, 1.1123047, 3.2695312, -0.74609375, -0.9555664, 1.8212891, -1.4931641, -1.0644531, 2.7910156, -0.6435547, 2.5683594, 3.4257812, 1.7587891, 0.4489746, -3.453125, -1.6923828, -3.4667969, -0.7832031, 0.57421875, -1.4130859, 0.5605469, 0.7475586, -0.5961914, -0.103027344, 2, -1.8261719, 1.1445312, -0.7109375, 0.39916992, 0.7583008, 0.056488037, 0.45507812, 2.109375, -1.1464844, 2.9824219, 1.0771484, -0.7607422, -0.21105957, 3.2011719, 0.9482422, -1.3291016, 0.105285645, -2.6777344, 0.14428711, -0.4008789, -0.22814941, -0.6430664, 0.9355469, -0.6777344, -1.3085938, -2.0976562]}, "B006WRLBNU": {"id": "B006WRLBNU", "original": "Brand: Weber\nName: Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7\" Long\nDescription: \nFeatures: Cordierite stone absorbs moisture for light and crispy thin crust pizza\nCarry rack makes transporting the pizza quick and easy\nFits into the Gourmet BBQ System cooking grate so that it stays in place while grilling\nEnjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings\n", "embedding": [-0.44726562, 0.4873047, 1.1787109, -2.4238281, -0.5527344, 0.3996582, 0.60009766, -1.6210938, -0.4428711, 1.8300781, 0.8544922, -0.9277344, 0.39404297, -1.8369141, -0.69091797, 0.44091797, 0.7792969, -0.2614746, 0.79003906, 2.9863281, 1.5097656, 1.1611328, -0.5004883, -0.51171875, 2.3964844, -0.6899414, 3.0253906, -2.0488281, 0.080566406, -1.7304688, 0.9848633, -0.48046875, 1.6328125, 2.0625, -2.0292969, -0.14733887, -1.171875, 2.9726562, -0.39868164, 1.0449219, -0.67285156, -1.2988281, 1.8457031, 0.62890625, -3.1777344, 0.8027344, -1.1279297, 2.2988281, -0.28979492, -1.3378906, 2.296875, 1.9863281, 2.3769531, 1.2441406, -0.8149414, 1.1796875, 0.3215332, -3.1835938, 3.3828125, -0.8388672, -0.484375, -0.0574646, -2.8476562, 0.32836914, -1.1484375, -0.016067505, -0.45214844, 0.0043182373, 1.7529297, -1.421875, 1.1162109, 0.16503906, -0.93896484, -0.3803711, -0.5292969, -1.0009766, -0.20092773, 1.5800781, 0.043792725, -0.2709961, -1.203125, 2.0390625, 0.7319336, -1.9472656, -1.4042969, -0.7714844, 0.1303711, -1.7197266, 0.46875, -0.53271484, -0.11553955, 1.671875, -2.5273438, -3.9394531, 2.2402344, -0.47631836, -0.9707031, 2.3359375, -0.36547852, 2.4746094, 0.41992188, 2.5, -0.121032715, 0.79833984, -3.1992188, -0.8569336, 0.6357422, -0.6430664, -0.038208008, -1.0087891, -2.2363281, 1.5751953, 0.38623047, 2.484375, 2, -0.08569336, 0.8852539, 0.8251953, 0.8432617, 1.7285156, 2.3359375, -0.9584961, -1.4794922, -0.51123047, -1.1083984, 0.1459961, -0.31298828, 2.2929688, 2.5253906, -2.4082031, -1.1992188, 0.06756592, 1.109375, 1.8759766, -0.49414062, -2.3359375, -1.3466797, -1.515625, -1.4609375, 0.17407227, -0.30688477, 1.3496094, 2.3261719, -0.86279297, -1.3496094, 1.9052734, -0.13757324, -0.037231445, -1.8417969, -0.8027344, 0.016937256, -0.7163086, -1.8671875, -0.19750977, 1.4931641, -0.5991211, -0.34960938, -1.4970703, 1.4082031, 2.5273438, 1.4873047, -1.8613281, -0.34692383, 2.046875, 1.3388672, 0.044006348, -0.007873535, 2.8222656, -1.0654297, 3.8515625, 1.2246094, -0.80615234, 0.8881836, 0.7661133, 2.2109375, -1.7988281, -0.95166016, 1.2089844, 0.17175293, 0.63134766, 1.6582031, -3.2773438, -0.80029297, 1.3447266, -1.3574219, -1.8671875, 1.4179688, -0.29541016, 1.9042969, -1.2832031, 0.93066406, 1.5087891, 0.55029297, -0.72265625, 0.89746094, -0.60302734, -2.3554688, -1.9238281, 0.59716797, -1.1542969, -2.3222656, -1.4873047, 0.37695312, 0.3215332, -1.4765625, -2.8671875, 0.48779297, -0.5078125, 1.0117188, 1.7255859, 1.0087891, -1.2158203, 0.5136719, -0.1809082, -0.2524414, -2.078125, 2.2285156, 0.042877197, 1.6386719, 0.8461914, -0.9379883, -0.070739746, -1.6552734, 3.8085938, -1.5419922, 2.9824219, -0.25024414, -0.9458008, -0.5004883, 0.2064209, 2.5058594, 1.5488281, 0.6152344, 1.4609375, -0.17175293, 2.5195312, -0.016067505, 1.0029297, 0.71240234, 3.2929688, -0.30908203, -1.9462891, -4.1289062, -2.09375, -1.5234375, -1.5888672, -1.8007812, 1.9619141, 0.8535156, 0.27319336, -0.3203125, 1.4423828, 0.8569336, 1.0898438, 1.75, 1.3554688, -1.3193359, 2.4667969, -1.875, -1.2802734, -0.9433594, 0.07128906, -0.7714844, -0.2980957, 0.6542969, -1.1933594, 1.1923828, 2.1308594, -2.3007812, -1.3027344, -0.4020996, -0.91015625, 0.3894043, -1.4257812, 2.8554688, 2.5371094, -1.875, 0.072753906, 1.3173828, 0.6503906, 0.77978516, 1.5664062, 0.53271484, -2.75, -1.6621094, -0.062561035, -2.0097656, -0.45214844, -0.36108398, -1.1279297, 3.7558594, 0.27416992, -0.31176758, 2.1738281, -2.2148438, 1, 2.1582031, 0.57958984, 0.1340332, 1.9365234, 0.7890625, 0.5415039, 0.79541016, -0.015342712, -3.015625, 0.6958008, 2.2324219, -2.1484375, 1.1445312, 0.56933594, -1.5820312, -0.67089844, -1.8203125, -1.5585938, -3.4257812, -2.2402344, -1.9091797, -2.3300781, 0.77734375, 0.5083008, 1.0898438, 1.421875, -1.4492188, -0.7006836, -1.3554688, 0.9213867, -0.74853516, 1.4130859, 0.4736328, -0.42163086, -0.22741699, 0.46899414, 1.2675781, -1.1611328, -1.7236328, -0.98291016, -0.29858398, -3.0839844, 0.98535156, -0.26293945, -0.9892578, 2.9667969, -2.34375, -0.039489746, -1.5712891, -3.2070312, -1.921875, 1.2724609, -1.6123047, -1.3007812, 0.24597168, 0.68896484, -0.31420898, -5.4335938, 0.31591797, 1.5390625, 0.37597656, -1.5253906, -1.8925781, 0.9482422, 0.011489868, -0.07269287, -0.29077148, 0.42358398, 1.4882812, 1.2255859, 0.15136719, -0.8979492, 2.6308594, -1.3076172, -0.6923828, -0.62158203, 0.50439453, -3.0566406, -0.9399414, 1.3720703, -1.5966797, 6.3867188, -0.3305664, 1.8925781, -0.83984375, -0.024230957, 0.70214844, -0.030380249, -0.2685547, 1.0078125, 0.5390625, -2.9648438, -0.50683594, -2.6191406, 0.038269043, -2.5527344, -0.08148193, 0.07318115, -0.34350586, -1.3046875, 0.46484375, -2.4179688, 0.14074707, -1.1591797, 0.038391113, -0.54785156, -0.86621094, -1.7529297, 0.3659668, -1.7636719, -1.6484375, 0.64208984, 2.1894531, 0.5336914, 1.2529297, 0.58691406, -0.35595703, 0.02583313, 1.1210938, -3.21875, 1.140625, 0.070617676, -2.2148438, 1.5576172, 0.42285156, -1.0283203, -0.23547363, 1.0576172, 1.4511719, -1.1464844, 0.4802246, 2.4824219, 2.6386719, 0.3466797, -1.2363281, 1.5966797, -0.5888672, 1.1669922, 1.3378906, -0.15490723, -2.2363281, -0.42919922, -0.54052734, -2.3789062, -0.5048828, 2.2304688, 2.734375, -1.4697266, 2.3457031, 1.3925781, -1.0097656, -0.71875, 1.2265625, 2.4824219, -0.1303711, -1.3095703, 1.8886719, 3.1347656, -0.92333984, 3.0644531, 0.43823242, 1.9208984, 3.2324219, 0.23083496, 0.63427734, -1.8574219, 0.62646484, 0.22131348, 1.6240234, -1.9707031, 0.7504883, -1.0361328, -1.703125, 1.890625, -2.5742188, 0.86621094, -0.7788086, -1.6054688, 1.6796875, -0.48828125, -1.1679688, -0.5649414, 0.06463623, 0.7290039, -4.3203125, -0.93310547, 0.21960449, -1.3076172, 1.1591797, -2.8515625, -1.4912109, 0.76220703, 1.8886719, 0.5986328, -2.1679688, -0.30004883, 2.7597656, -1.2910156, -1.6181641, -0.9711914, -0.95166016, -0.578125, 2.0351562, 0.14562988, -1.5361328, 2.3261719, -1.9921875, 2.1816406, -0.20800781, 0.47070312, -0.29760742, -0.07946777, 0.47631836, 0.08001709, 0.43725586, 0.28857422, -2.1367188, -3.8496094, 0.62060547, -3.3691406, 0.21264648, 0.4975586, -0.87353516, -1.0576172, 0.73779297, 1.5712891, 0.71728516, -3.4355469, 4.7890625, -0.8183594, -3.0234375, 2.8828125, -0.74560547, -0.8964844, -4.3046875, -2.4296875, 0.36450195, -0.6323242, 1.9628906, 1.9960938, 0.4868164, 0.124816895, 3.4160156, -1.2578125, -2.0488281, -1.1484375, -1.1494141, 0.0340271, -0.7895508, 0.6035156, 0.5463867, -1.0839844, -0.49560547, -2.1640625, 0.4934082, 0.07232666, 2.0195312, 2.65625, -2.3535156, 0.390625, -2.8339844, -1.5380859, -1.6679688, 0.19018555, -0.3203125, -0.81933594, 1.5253906, -0.56396484, 2.4179688, 0.5527344, -0.5024414, -0.25, 1.3027344, 0.22399902, -1.3007812, -0.6542969, 0.031402588, 2.8105469, -0.3947754, -3.0351562, 0.20227051, 0.12219238, 2.4316406, -1.6328125, 0.9399414, 1.4384766, -3.6386719, -0.32617188, 1.1015625, -1.1669922, 1.2304688, 0.27514648, -2.40625, -2.2519531, -0.7182617, -1.2783203, -2.2402344, 0.11853027, 1.4873047, 0.060546875, -0.36645508, -1.7792969, 1.5625, -1.2529297, 1.2236328, -1.8173828, 1.8779297, 2.4257812, 1.1894531, 3.5410156, -2.0058594, 0.15393066, -1.4931641, -2.3320312, -0.37890625, 1.015625, 0.6196289, 0.3022461, 2.9863281, 1.4511719, -1.0078125, 0.107055664, 0.5317383, -0.24047852, -0.88671875, -2.3476562, 0.25170898, -2.0527344, -1.8554688, 0.5996094, -1.3115234, 1.9384766, 0.8730469, -0.9042969, -1.2392578, 0.45898438, -0.72753906, -0.7519531, 0.4736328, -0.7006836, 1.9111328, -0.24853516, 2.5273438, -2.6601562, 1.5615234, -0.060394287, 0.60546875, 0.57128906, 0.2866211, 1.3964844, 0.06817627, -2.1074219, -1.3359375, 1.6669922, 4.5507812, 1.6376953, 1.8291016, -0.2064209, -2.1152344, 1.7138672, 0.42382812, -3.4238281, 1.0126953, -0.32714844, -2.1621094, 0.94384766, -0.0736084, -3.7246094, -0.03878784, 0.7973633, -0.0075416565, 3.0644531, -2.6757812, 0.15039062, 1.8242188, -0.9067383, -1.6826172, 0.7080078, -0.6660156, 3.0332031, -1.1074219, 0.120666504, -1.171875, 0.59277344, 1.4589844, 0.7138672, -0.8496094, 0.6586914, -1.4335938, -0.9042969, -0.17797852, -1.4667969, -1.4365234, 0.28027344, 1.7675781, 1.9794922, 0.7236328, 0.12890625, 2.6992188, -1.2333984, 1.7705078, -2.3261719, 3.2070312, -1.3984375, 0.16723633, 0.47509766, -2.9921875, 0.105285645, -1.3515625, 2.1230469, -0.17272949, 0.8930664, -1.2294922, 0.34887695, -0.90771484, 0.36865234, -1.0986328, -2.5546875, -0.59521484, -1.3574219, 0.31323242, -0.55859375, -0.44384766, -2.1445312, -1.2109375, 1.2539062, 0.11352539, -0.6542969, 0.25390625, 0.5649414, -1.2724609, -1.640625, -2.0625, -0.53466797, -0.6386719, 0.13793945, -0.36254883, -0.9169922, -1.3164062, -0.85791016, 0.0022621155, -2.9726562, -0.18737793, 2.3515625, 2.4804688, -0.41455078, 2.5234375, 1.1494141, -1.4492188, 2.34375, -1.4794922, -1.4287109, 0.4729004, -0.5708008, 2.84375, -1.4472656, -0.36035156, 1.1201172, -1.1425781, 0.93603516, -0.71240234, 1.5332031, -0.19934082, -0.30249023, 1.1904297, -1.8408203, 1.9541016, 1.9492188, 0.4482422, 0.7294922, -1.4179688, -0.2685547, -2.6445312, -2.7089844, -0.070251465, -2.1386719, -0.9770508, -1.4960938, 0.43579102, 2.4335938, -0.79785156, -0.30615234, 1.3222656, 0.31860352, -0.0029945374, -1.4003906, -0.33325195, 2.8359375, 1.3515625, -1.1474609, -1.5869141, -2.2695312, 0.8847656, 0.24438477, -0.26245117, -1.2265625, 0.35302734, -1.9306641, -1.2119141, 2.3769531, 1.5996094, 1.5507812, 2.2558594, 0.8208008, 1.4199219, 2.1601562, -1.2177734, 2.2265625, 1.5078125, 1.6640625, -1.6806641, 2.890625, -2.3085938, -2.2519531, 1.2099609, -1.7529297, 1.8359375, 1.515625, -1.7246094, 1.4169922, -1.0996094, -0.8852539, -1.9013672, -2.7558594, -4.9726562, 1.5009766, 0.85839844, -0.3581543, 0.4189453, 1.8125, -0.89404297, 3.2089844, 2.2285156, 0.57421875, -2.7246094, 0.27294922, -1.2822266, 0.15075684, 2.1503906, -1.1220703, -0.0039367676, 0.49829102, -1.2763672, -1.9257812, 0.515625, 0.55566406, 2.515625, 0.41870117, 1.4082031, 1.7451172, 1.8408203, 2.5195312, 1.6416016, 1.0566406, 1.0976562, -1.0859375, 0.70996094, 0.70410156, 1.5175781, 0.23547363, -1.5527344, 2.4355469, 0.5673828, -1.8447266, -1.1884766, -0.18347168, -0.49194336, -0.7836914, 0.65478516, 1.7265625, 1.4638672, -1.8867188, -0.04232788, -0.77490234, -0.9584961, -0.80371094, 0.7910156, 2.9179688, 2.0097656, 0.9189453, 1.0947266, 2.3613281, 0.42260742, -0.73046875, 0.022338867, 3.4941406, -0.9604492, -3.4980469, 2.96875, 3.2675781, -1.2138672, 1.046875, 1.671875, 5.71875, 0.6953125, 0.5073242, 1.0039062, -2.0136719, 0.14782715, 1.3320312, -0.7602539, -0.60009766, -1.4511719, 0.40429688, -2.015625, -0.52734375, 1.5791016, -0.5209961, 3.0859375, 1.5214844, -1.4960938, 2.0253906, 2.1152344, 0.84521484, -1.2470703, -0.3383789, -0.014625549, -1.0390625, -1.7744141, -0.7680664, 0.7441406, 0.96240234, 1.9042969, -0.140625, 1.9091797, 1.6494141, 2.65625, -0.24328613, 0.14001465, -1.1132812, 0.5834961, -1.9453125, 4.1210938, -0.36523438, 0.46704102, -2.3671875, 0.1928711, 1.3076172, 0.14367676, 0.59716797, -2.0117188, -0.7973633, -1.2753906, -0.07312012, 1.4492188, 0.02168274, -0.91259766, 0.99316406, 1.3300781, -1.9589844, -2.1445312, 1.2919922, 0.7578125, 2.2402344, 2.7148438, 0.53759766, -2.5429688, 1.7109375, -1.2685547, 0.38842773, 0.3852539, 0.4284668, 1.6328125, 0.047027588, -0.24682617, 1.0517578, 0.6958008, -0.8310547, 1.3964844, -0.22949219, 0.59716797, 0.08648682, 1.0263672, 0.7558594, -0.6826172, -1.2441406, -0.2998047, -0.8935547, 0.6748047, 2.4726562, 1.1865234, 0.6035156, -1.2460938, -2.1699219, -0.7001953, 0.22924805, -0.7915039, -0.47631836, 2.2753906, -1.1435547, -0.7973633, -1.1298828, -1.6513672, 1.1953125, -0.9692383, 1.3496094, -0.41601562, -2.96875, -0.9326172, -1.7802734, 3.6503906, -0.034210205, -0.8354492, -2.5351562, -2.40625, 3.046875, 0.49609375, 1.640625, 0.3647461, -1.5205078, 1.5136719, 3.6347656, 1.6035156, -0.041748047, 1.0927734, 1.9951172, 0.53027344, -3.8105469, 0.09375, -0.96728516, 1.1425781, -2.3046875, 0.20727539, 0.05078125, -0.21813965, -0.23120117, -1.6347656, -1.0507812]}, "B0753BKVJX": {"id": "B0753BKVJX", "original": "Brand: GOJOOASIS\nName: GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet\nDescription: Specifications:
- Weight: 44lbs
- Cover Color: Brown/Coffee
- Frame Color: Black
- Material: Metal, Polyester
- Overall Dimensions: 98.4\"L x 59.1\"W x 106.3\"H

Features:
- Stylish double layered Fire-retardant canopy cover
- Slanted roof to help keep clear of debris
- 180GSM Polyester tent material and vented at top
- Rust resistant powder coated steel frame
- Come with hook on the middle top, put up fan, lights and so on
- 2 iron meshes for grill accessories, beverages or food
- Included 7 x Pegs
- 1 Bottle opener attached to frame
- Footprint size 8' x 5'
- Designed specifically to house a barbecue
- Assembly\u00a0required\u00a0comes\u00a0with\u00a0instructions\u00a0and\u00a0all\u00a0hardware\u00a0included

Note:
We do not recommend leaving set-up over several days, in adverse weather conditions.

Descriptions:
This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day.\u00a0The durable canopy protects you from harmful UV rays and has a stable iron frame.\u00a0There is one metal shelves on each side of the shelter to offer a handy place to set food and other items.\u00a0It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill.\u00a0Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.\nFeatures: Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide\nBBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDouble-tier top cover design not only looks good but is designed to make Good ventilating\nSafe flame-resistant top canopy with Water and UV resistant function for long lasting use\nGojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "embedding": [-0.94189453, 3.1503906, 2.0234375, -2.8007812, 0.2076416, 0.27661133, 0.20263672, -1.9384766, 2.265625, 1.4306641, -1.375, -1.4492188, 0.1126709, -5.1601562, 0.70410156, 1.0996094, 1.0205078, 1.0673828, 2.2558594, -1.1474609, 1.1669922, 0.4880371, -0.22290039, 0.036071777, 0.6269531, 0.3461914, 4.1445312, -2.0371094, 0.8076172, 0.26220703, 2.4316406, 1, 0.65771484, 1.4726562, -1.8261719, -1.7392578, -0.02319336, 0.18737793, -0.39892578, -1.2988281, -0.48876953, -2.9316406, 2.1679688, 2.5625, -0.2175293, 0.0047035217, -1.7724609, -0.049591064, 0.9946289, -2.0117188, 0.4025879, 1.8955078, 3.7753906, 0.22558594, -0.7373047, -1.6054688, -2.3222656, -1.7890625, 1.7832031, 0.23901367, -2.1015625, -1.0048828, -1.3916016, 2.6132812, -0.3371582, -2.5019531, 0.25195312, -1.4042969, 1.3525391, 0.12200928, 0.9584961, -1.5908203, -2.0761719, 0.12438965, 0.1352539, -0.8461914, -2.3964844, 0.8720703, 2.8574219, -0.25317383, -0.9086914, 1.65625, 2.8867188, -0.35961914, 0.71728516, -0.86083984, -1.7929688, 0.34887695, 1.0625, -1.5078125, -2.0351562, 0.67333984, -0.6430664, -3.9453125, 0.1182251, -3.0449219, 3.1210938, 0.36865234, -0.8857422, 2.4902344, -1.2744141, 0.33691406, 0.7006836, 0.19396973, -1.609375, -2.0449219, 0.80615234, -2.6640625, 0.17089844, 0.1439209, -0.5209961, 0.80566406, -0.5698242, -0.6665039, 1.15625, 0.7260742, -1.0644531, 4.2773438, 0.57373047, 0.73291016, 3.7988281, 1.046875, 0.62109375, -1.8994141, 0.5913086, -1.1923828, 0.32055664, 1.6796875, 2.5117188, -0.4711914, 0.22436523, -1.6435547, -0.9326172, 1.9140625, -2.1464844, -1.0957031, -2.7675781, -1.6435547, -4.5703125, 1.8583984, -2.8945312, 0.077819824, 2.2578125, -0.3251953, -2.2675781, -0.28857422, -1.5058594, 3.2519531, -0.025146484, -4.078125, 2.078125, -1.3388672, -0.6113281, 0.20129395, 0.42236328, -0.8730469, 0.9604492, -1.28125, 3.0136719, -0.5800781, 1.9472656, -1.6748047, -2.3789062, 1.0732422, -0.2644043, -2.2617188, 0.8754883, 2.671875, -1.3232422, 1.3730469, 2.0800781, -2.1992188, 2.2246094, 0.07080078, 1.8574219, -1.2314453, -0.85595703, 2.6660156, 1.3144531, 1.5302734, 0.24267578, -1.9228516, 1.2509766, 2.0273438, -1.3085938, -0.32788086, -1.3798828, -0.2286377, 0.42260742, -0.21166992, 0.06506348, 0.5151367, -0.7246094, 1.0908203, -2.3554688, -0.50634766, -1.0273438, -0.42773438, -1.0556641, 1.9765625, -0.72558594, -0.5234375, -1.7753906, 1.1074219, -1.4453125, -0.40014648, -2.2148438, 1.8955078, -0.5341797, 0.8857422, 1.6533203, -0.7919922, 2.1738281, 2.6933594, 0.0859375, 0.98095703, 0.81933594, 1.0859375, 1.6455078, 1.4472656, -1.8242188, -0.3840332, -1.1943359, 3.6894531, -0.5107422, 0.39892578, 1.5634766, -0.6689453, -1.8066406, 0.13720703, 0.6845703, -0.75146484, -0.22851562, 0.116760254, -1.1308594, 1.5517578, 0.6821289, -1.4111328, -0.53564453, -1.3261719, 2.1445312, -0.14660645, -2.2304688, -0.06188965, 0.17236328, 1.2402344, -0.24230957, 1.7880859, -0.85546875, -1.8564453, -0.77441406, 1.4658203, -0.50878906, -0.5283203, 0.77685547, 1.3525391, 0.37109375, 1.328125, -1.6875, -1.0507812, -0.6660156, -0.15063477, 0.8408203, 1.1113281, 0.31201172, 1.0751953, -0.76464844, 0.6015625, -3.9863281, -1.4931641, 1.9833984, 0.11859131, 1.2236328, -0.2097168, 0.64208984, -0.65722656, -1.4804688, -2.234375, -0.30981445, -0.91308594, -0.6738281, 1.9169922, 1.9443359, -0.859375, -2.1914062, -3.1328125, -1.8779297, -1.6533203, 0.14880371, 0.8901367, 2.6230469, 0.7836914, -0.5961914, 3.9414062, -1.5644531, -0.0184021, -0.1217041, -1.3056641, -1.5390625, 1.7148438, 0.3461914, 0.67041016, 0.42382812, -1.1523438, -1.2978516, -0.9995117, 0.9941406, -3.0390625, 0.4326172, 0.5629883, 1.3896484, 1.1591797, 0.33911133, -0.25024414, 0.5986328, -1.6660156, 1.7568359, -1.6416016, 0.8022461, 4.1367188, 0.44360352, 1.1943359, -0.85839844, -0.51464844, -0.6660156, 0.7475586, -0.7373047, 0.27001953, 0.93896484, -1.9589844, 1.71875, -1.6191406, 1.3671875, -2.4355469, -0.6411133, -2.7929688, -0.56103516, 0.06201172, -3.4980469, -0.12597656, -0.4975586, -2.6992188, -3.9648438, 0.4482422, -1.1259766, -3.9804688, 0.42773438, 1.9667969, -0.7475586, 3.5429688, -0.0904541, 0.42578125, 0.64160156, -3.0234375, -0.7133789, 1.6445312, 1.2167969, 2.7890625, -2.9628906, 1.921875, -2.5585938, 2.1699219, 0.113098145, -1.0732422, -0.7207031, -0.5805664, -1.6220703, -2.5117188, 0.5571289, 0.21179199, 0.41674805, -0.45336914, -0.61376953, -2.3222656, -1.8632812, 2.1601562, -0.6645508, 5.7148438, -0.01763916, -1.0947266, -2.109375, -2.4667969, 0.9213867, 0.00806427, -2.1875, -1.28125, -0.4309082, 0.91748047, -0.41552734, -1.6796875, -1.2744141, 0.33374023, -0.98339844, -0.33251953, -0.5878906, 0.77685547, 1.2529297, -1.4472656, -1.4560547, -2.640625, 2.1992188, -0.2890625, 0.052001953, -1.8945312, -0.25683594, -0.5576172, -1.3476562, -1.7060547, 2.2265625, -1.0849609, -0.3071289, 2.0332031, 1.1640625, 2.5273438, -0.27905273, -3.2226562, 2.9863281, 4.3632812, 0.7919922, -1.4560547, 0.1418457, -0.81152344, -2.7519531, 0.26538086, 3.0292969, 1.8085938, 2.4550781, 0.24829102, 1.3701172, 1.4052734, -0.30908203, -0.68359375, -1.5263672, 0.80859375, 3.9042969, 0.07543945, -1.3935547, 0.78027344, 1.28125, -2.6445312, 0.70166016, 1.0761719, -0.2775879, 0.6088867, -0.32763672, 0.94873047, 0.46289062, 0.3869629, 2.1660156, -0.8847656, 3.2382812, 2.0859375, -1.4140625, 0.6879883, -0.3605957, 1.3154297, 0.015686035, 1.765625, 0.6958008, 2.3671875, -0.055999756, -3.5957031, 0.44506836, 2.3632812, 1.2919922, -1.4521484, 2.2128906, -1.4746094, -0.52197266, -0.82666016, -0.4584961, 1.8583984, -0.0317688, -0.47924805, 1.9033203, -1.0322266, 0.06542969, 0.953125, -1.5039062, -0.70996094, -1.1904297, 0.25732422, -0.8515625, -2.6816406, 0.7089844, -3.84375, -4.28125, -0.28588867, 2.2207031, 0.96972656, -3.140625, -1.0976562, 3.0839844, 0.9926758, 0.92285156, -1.5634766, 0.33447266, -2.1699219, 2.1152344, 0.27124023, 0.053833008, 2.5644531, -1.5244141, 3.1367188, 1.8056641, -0.5527344, -3.2851562, -0.54296875, -2.2304688, 0.116882324, 0.81591797, 1.5380859, 0.57177734, -2.8417969, 0.39135742, -2.2285156, -0.15356445, 4.4453125, -1.5263672, -1.5751953, 0.59716797, 0.7026367, -0.35864258, 0.17407227, 2.8378906, 0.11779785, -1.8935547, 2.5566406, -0.79833984, 0.4086914, -0.6616211, -5.4414062, 0.3725586, -1.2236328, 0.75927734, 2.921875, -0.48583984, -0.8276367, 2.8515625, -1.9414062, -1.3798828, 0.09851074, -1.8476562, 0.44091797, -2.9453125, 0.36206055, 0.3251953, -2.234375, -2.1933594, -2.3359375, -0.39819336, 1.1240234, 0.63720703, 2.8515625, 0.7167969, 1.8046875, 0.07788086, 0.4206543, -1.1201172, 2.3828125, -0.46801758, -0.16809082, 0.4572754, -0.1508789, 1.4726562, 1.6464844, -0.21240234, 0.44213867, 0.5703125, 0.58740234, -0.55566406, -2.2226562, 0.08129883, 1.1923828, -0.8671875, -1.0332031, 0.6015625, -0.5073242, -0.39794922, -0.1126709, -2.4472656, 1.2353516, -1.9335938, 1.3105469, -1.7539062, 3.7792969, -0.16125488, -0.7910156, -3.625, 0.58251953, -0.6855469, 0.11279297, -1.8222656, -1.4394531, 0.45336914, 0.6430664, -0.24060059, -1.8623047, -0.60546875, 0.18664551, 0.09326172, -0.2626953, 2.1601562, 0.029830933, 2.7734375, 3.8066406, -2.3574219, -1.8330078, 2.4804688, -0.22338867, -0.16247559, 1.9960938, -1.0146484, 0.6323242, 0.062469482, 0.921875, -1.6201172, -1.9765625, -0.17980957, -0.96240234, -1.4833984, -2.0898438, 2.7988281, 0.8154297, -0.23095703, 0.37402344, -0.21618652, 3.9316406, -3.6796875, 0.05569458, 0.27856445, 1.3164062, -1.8144531, 1.0634766, 2.0898438, 1.5146484, 1.4082031, 2.3808594, -0.28588867, -0.48510742, 1.5332031, -1.0019531, 2.5957031, -1.8095703, -1.3066406, 1.3730469, -1.0146484, -0.20043945, -1.8935547, 2.2421875, 3.4316406, -0.8359375, 0.3461914, 1.7597656, -1.1103516, 2.5664062, 1.8271484, 0.92529297, 0.67529297, -0.55126953, -2.5625, 2.6171875, -2.0253906, -3.625, 0.04598999, -0.34521484, -1.8193359, 3.4375, -0.057769775, -0.38549805, 1.8720703, -0.23718262, 0.77441406, -0.12927246, -1.5068359, -0.045166016, 0.2939453, -0.40014648, -1.1621094, -0.28710938, 2.4941406, -1.6220703, 0.39868164, 1.4335938, 1.7695312, -0.5776367, -1.3115234, -0.3852539, -1.9394531, -2.3886719, 3.1660156, 2.9492188, 3.0273438, -0.36010742, 0.24523926, -3.5429688, -1.8535156, -2.4824219, 3.1328125, -2.0878906, 0.5024414, 1.7861328, -0.12054443, -0.6484375, -1.6992188, 2.546875, -0.44628906, 0.76904297, 0.39379883, 0.1204834, -0.105895996, -0.95751953, -3.0546875, -4.0507812, -1.6376953, 0.5571289, -0.7553711, -0.6142578, 0.37475586, -1.0332031, -1.5751953, -0.3071289, 0.07910156, 1.1552734, -1.0507812, 0.54248047, 0.51708984, -0.71875, -1.6894531, -0.17871094, -0.13256836, -0.33642578, 0.76416016, -1.3808594, -3.3710938, -0.2565918, 0.49682617, -1.8935547, -1.0439453, 1.4394531, -1.0947266, 1.4355469, 2.3964844, 0.4404297, 0.27539062, 1.0214844, -0.8232422, 0.8125, 0.91796875, -0.2644043, 1.4960938, -1.1845703, 1.1933594, -0.75439453, -3.7304688, 0.049438477, 0.8330078, 0.37304688, 1.8164062, 1.3242188, 0.5136719, 0.66748047, 0.78808594, 0.7885742, 2.2695312, 2.1113281, -0.4506836, 2.4492188, -2.4238281, -2.8417969, -0.78808594, -1.1923828, -2.296875, -0.6826172, 1.5742188, 0.59472656, 1.2460938, 2.8671875, 0.30126953, 2.2070312, -2.7011719, 0.23132324, 0.48876953, 0.68310547, -0.45410156, -1.7529297, -1.9130859, -4.1875, -0.96240234, 0.67041016, -1.6640625, 0.68603516, -1.3613281, -0.9243164, -1.0693359, -0.61328125, 0.40063477, 1.2841797, 2.1621094, -1.2578125, 3.46875, 0.36279297, -0.07904053, -0.02130127, -1.2519531, 0.76904297, -0.60498047, 2.34375, -1.0097656, -0.10266113, 1.4023438, -0.4934082, -0.82470703, -0.49389648, -1.9277344, 0.40356445, -1.875, -0.13244629, -0.88720703, -1.1162109, -2.28125, 1.7792969, -0.47045898, 1.1914062, 1.0078125, 2.3808594, -1.9384766, 1.3466797, 1.0498047, 1.7109375, -1.1142578, -0.32421875, 1.0908203, -0.7294922, 1.6191406, -0.31274414, 0.5390625, 0.9135742, 0.13696289, -0.6899414, 2.1328125, 1.0947266, 0.8959961, 1.9765625, 1.9023438, 3.3828125, 1.6914062, 2.4882812, 1.3691406, 2.1582031, 0.95410156, -3.1113281, 0.078063965, 1.9316406, 3.0605469, 0.90722656, 0.7607422, 0.9326172, 2.5644531, -1.5546875, 0.19909668, -0.71777344, 0.9848633, -2.9511719, 3.8027344, -0.75878906, 1.3867188, 0.27734375, 0.12017822, -0.8979492, -0.90527344, -3.2167969, -1.3085938, 2.1269531, 0.91064453, 0.9370117, -0.47485352, -1.3740234, -0.54589844, -3.6289062, -0.1640625, 0.5263672, -1.0986328, -2.5390625, 2.40625, 4.3359375, 2.1699219, 0.63916016, 2.3613281, -0.35742188, 1.3320312, 0.921875, 0.68847656, 1.1347656, -0.06573486, 0.8876953, 0.7109375, -2.3925781, -1.3974609, 1.2275391, 0.98779297, -2.2675781, 0.29858398, 0.5205078, 0.050201416, 2.8554688, -0.09655762, 0.86816406, 1.1005859, 2.4667969, -0.6958008, -1.1044922, -1.75, -2.1992188, 0.22265625, 1.1435547, 1.0078125, 3.9414062, 0.2705078, -0.76123047, 1.3466797, 0.5083008, -0.027877808, -0.1541748, 0.4411621, -0.6933594, 0.52734375, -0.79785156, 1.3867188, 1.4570312, 0.90478516, -0.6147461, -0.6972656, -1.9238281, -0.2841797, 2.2734375, 0.48828125, -0.34350586, -0.48095703, -1.0839844, 0.12988281, -3.8515625, -1.6210938, 0.032470703, -0.56347656, -2.7695312, -1.7519531, 0.86083984, 1.03125, 1.0439453, -0.28027344, 0.5678711, -0.3737793, -0.1862793, 0.4453125, -0.51660156, 0.3791504, 1.25, 1.5595703, -0.86865234, 0.36035156, 0.86572266, 1.1025391, 0.5864258, -0.90283203, -0.1274414, 1.3818359, 0.87109375, 1.7695312, 0.40966797, -0.5444336, -1.7490234, 0.03616333, 1.7558594, 1.859375, 1.5332031, -0.51660156, -3.4609375, -0.6508789, -3.2753906, 1.5039062, -2.453125, -1.8701172, -0.4794922, 3.9179688, 1.8349609, -0.7524414, -2.3320312, -2.578125, 0.39282227, -0.6147461, 1.5810547, 0.39648438, -3.1503906, -1.5214844, -0.81152344, 3.7792969, 0.14562988, 0.1763916, 1.2099609, -1.9277344, 1.9355469, -1.2988281, 0.20019531, 2.4042969, -1.6220703, 0.9248047, 2.7148438, 3.8730469, 0.76123047, 0.8183594, 1.0136719, 1.2412109, -4.2460938, 2.8457031, -1.4306641, 1.8623047, 1.0869141, 0.17480469, 0.89404297, -0.42773438, 0.022903442, -1.4912109, -1.6806641]}, "B07RX4JN5Q": {"id": "B07RX4JN5Q", "original": "Brand: Dailyart\nName: Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black\nDescription: Worried about food falling through the grille?

Prevent stains from besmirching your yard or deck?

Hate cleaning grills full of grease?


You will like Dailyart BBQ MAT- Making your BBQ more easily !

- Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

- The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

- Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

- The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

- Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and\u00a0vegetables.

- Easy to store:can be stored either flat or rolled up.

Specifications:

Thickness: 0.2mm
Size:Large 44 x 30 CM Coverage area
Material: PTFE glass fiber coating

Package included:

5 x BBQ Grill Mat
1x Wish card
\nFeatures: Non-stick design\uff1aGet more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor.\nHigh temperature resistance over 500 \u2109: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500\u2109 without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin.\nReusable\uff1aThe barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell.\nMultipurpose Barbecue Grill Mats\uff1aPerfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food.\nSafer and Healthier\uff1aWhen our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.\n", "embedding": [-0.77197266, 1.6074219, 0.93652344, -0.9785156, -0.1451416, -0.014877319, 1.8603516, -1.2880859, 0.5678711, 1.5849609, -0.6484375, -0.1928711, 0.5727539, -3.0527344, 1.3007812, -0.33642578, 0.8833008, 1.6894531, 2.6582031, 2.4316406, 0.56933594, 0.84765625, -0.28442383, -1.4101562, 0.13537598, 0.08880615, 3.703125, 0.15576172, 0.97753906, 0.12072754, 1.5917969, 1.6181641, -0.24694824, 1.9970703, -3.7128906, -0.3347168, 0.50927734, 2.6894531, -0.079711914, 0.35302734, -1.4609375, -3.4882812, 1.7929688, 2.5859375, -2.2128906, 1.3740234, -0.55566406, 1.3984375, 1.0957031, -4.0429688, 1.5273438, 0.89453125, 2.1289062, -0.11151123, -3.046875, 1.2304688, -0.59716797, -1.8349609, 0.6074219, 0.051513672, 0.7402344, -1.2021484, -0.26879883, 1.7470703, -0.26098633, -1.9433594, 0.1217041, -2.3203125, 0.5214844, -1.8330078, 0.3322754, -0.18310547, -0.9482422, 0.87939453, 0.14074707, -0.01399231, -1.2431641, 0.35839844, 0.30688477, -2.7226562, -1.2548828, 3.2441406, -0.14196777, -1.4707031, -0.5498047, -1.2636719, -3.7539062, 0.2322998, 1.5068359, -0.04449463, 0.8876953, 3.6386719, -2.1992188, -4.2265625, 1.5644531, -3.3710938, 1.3125, -0.8696289, -0.3088379, 2.8261719, -1.5214844, -0.15258789, -0.44799805, 2.5234375, -3.2480469, -2.0742188, 2.1132812, -0.3244629, 0.0869751, -0.19750977, 0.63720703, 0.42993164, -0.0925293, 1.1699219, 1.7167969, 1.2949219, 0.8984375, -0.28588867, 1.9462891, 1.4775391, 3.8632812, 1.609375, -0.026168823, -2.1757812, 0.32373047, -0.7446289, -0.74902344, 2.5605469, 1.8330078, -2.7597656, -0.27148438, -1.8466797, -0.7910156, -1.4707031, -1.4023438, -1.9072266, -0.5078125, -1.2587891, -2.2792969, 0.62597656, 0.19384766, -0.35961914, 1.7841797, -2.1054688, -2.5488281, -0.02973938, -2.7636719, 2.0878906, -2.1113281, -2.8222656, 0.45776367, -0.67285156, 1.0771484, 0.16723633, 0.020477295, -1.0566406, 1.8515625, -1.0107422, 1.8476562, 1.2314453, 1.4580078, -3.1855469, 0.14978027, 0.25146484, 1.2197266, -2.796875, -1.46875, 2.3671875, -0.30859375, 2.0644531, 0.5571289, -2.7597656, 1.6933594, -0.39526367, 0.41967773, -0.52685547, 0.097961426, 2.4863281, -0.8027344, -1.1914062, 1.0878906, -2.2753906, -0.31518555, 0.7324219, 0.49658203, -0.35375977, 0.8251953, -0.4790039, 0.5053711, -0.5913086, -0.15490723, 3.0449219, 0.053497314, 0.6279297, -2.3046875, -1.2753906, 0.671875, -2.2988281, 1.1621094, 0.28955078, 0.47729492, -0.5727539, -1.046875, -0.8222656, -2.4316406, -1.8261719, -0.33642578, 2.3144531, 1.6533203, 1.2695312, -1.3583984, -1.9501953, 2.4179688, 2.2324219, -0.9350586, -0.5727539, -1.4238281, -1.0742188, 1.6103516, 2.6542969, 0.04437256, 0.30517578, -1.4228516, 4.5117188, -1.3349609, 0.7993164, 0.07269287, 1.8105469, -0.56689453, -0.20617676, 1.2871094, -0.22302246, 0.70996094, 0.23254395, -0.6176758, 1.1601562, 1.3095703, -1.2392578, -1.265625, 0.3696289, -1.9375, -1.9511719, -1.9931641, -1.8291016, -0.77197266, -0.31982422, -0.29174805, 2.09375, 1.4716797, -2.3046875, 0.043792725, 3.6679688, 2.4902344, -0.14489746, 0.25878906, -0.5439453, 0.20776367, 0.3737793, -2.8496094, 0.4230957, -0.52001953, -0.9663086, -0.50341797, 1.8173828, 1.9902344, -0.6977539, 1.9560547, -0.1315918, -2.65625, -1.7617188, 0.55908203, -0.27270508, -1.3789062, -0.76904297, 1.7900391, -0.30297852, -1.5498047, 0.30029297, 0.5620117, -1.7617188, -0.0859375, 2.6933594, 0.71191406, 0.4165039, -1.6933594, -0.40307617, -1.1601562, -1.8681641, 1.5429688, 1.0722656, 3.40625, 1.3535156, -1.3925781, 2.9335938, -1.2539062, 0.8808594, 2.265625, 0.06225586, -1.8876953, -1.6162109, -0.17211914, 2.7773438, 0.033996582, 1.0927734, -0.25854492, -0.083862305, 2.4101562, -1.7246094, -0.14807129, 1.4101562, 0.84375, -0.5883789, 1.8603516, 1.203125, -2.9316406, -1.5634766, 0.5805664, -1.8417969, 1.1572266, -2.4589844, -0.77490234, 0.059631348, -0.3010254, -2.8085938, -0.5283203, 0.6855469, -0.0904541, -0.10131836, -0.2244873, -0.42114258, 1.0898438, -1.0380859, 1.1035156, 0.5097656, -2.9882812, -2.4707031, -1.3115234, -0.18981934, -1.0986328, -0.20239258, 0.012336731, 1.2050781, -0.80322266, -0.11029053, -1.4052734, -2.6035156, -2.4589844, -0.36328125, -0.111816406, 1.6347656, 0.46435547, 0.28344727, 0.3149414, -3.4121094, -0.019515991, 0.40161133, -0.15100098, 1.2080078, -2.2832031, -0.09991455, 0.04751587, -0.066223145, 1.0751953, 0.3017578, 0.71191406, 0.7421875, -1.2880859, -2.7578125, 0.9326172, -0.7109375, -0.026367188, -1.0615234, -0.3684082, -1.3193359, -0.57421875, -2.8066406, 0.31225586, 3.8125, 3.0517578e-05, 1.09375, -0.22265625, -0.6586914, 0.6269531, 1.1083984, -1.1992188, -1.7001953, -0.8027344, -1.5214844, -0.20507812, -1.515625, -0.57666016, -1.3251953, -0.32348633, -0.63183594, 3.6523438, -0.23815918, 3.4277344, -3.0839844, -0.62841797, -1.1875, 1.6699219, -0.9477539, 0.29882812, -1.7011719, -0.93896484, -0.72509766, -2.1914062, 0.10949707, 1.1533203, -1.0634766, 0.97021484, 1.2578125, 0.38110352, 0.3251953, 1.5878906, -1.7773438, 0.72998047, -1.3144531, -1.53125, 0.7861328, 0.32714844, -1.9892578, -0.9550781, -1.6152344, 4.3632812, -0.113342285, 1.2109375, -1.0205078, 0.9770508, 2.4003906, 0.76660156, 0.59521484, 0.16589355, 0.89941406, 1.8222656, -1.2050781, -2.3203125, 1.4863281, -0.28564453, -2.1328125, 0.60498047, 0.73779297, 0.34155273, 0.87939453, 1.6748047, 1.4267578, -0.5107422, 0.008255005, 3.6992188, 0.3203125, 0.74316406, -1.515625, 0.98876953, 0.4404297, 0.25854492, 1.9951172, 1.4462891, -0.08453369, 1.0556641, 1.2226562, -1.1347656, -2.5820312, 0.8491211, 2.9160156, 0.3618164, -0.69677734, 2.2167969, -0.16784668, -0.97509766, 3.8457031, -0.9453125, 0.21520996, -1.6757812, -0.13415527, 2.2519531, 0.19824219, -0.19604492, -1.6347656, -1.1044922, -1.5898438, -3.6582031, -0.08306885, -1.9814453, -1.9541016, 1.7197266, -1.3388672, -3.2773438, 1.1445312, 3.6816406, -0.9350586, -1.9511719, -2.4824219, 3.9414062, -1.3828125, -1.3632812, 0.6748047, 2.5839844, 0.2993164, 2.3828125, 0.42871094, -0.30249023, 1.2617188, -2.890625, 0.87646484, 1.1679688, -2.6171875, -0.9916992, -2.0429688, 0.16809082, 0.112976074, -0.60595703, 0.050567627, 2.109375, -1.9423828, 0.703125, -2.2617188, 0.26757812, -0.6269531, -1.3945312, -0.30371094, 1.4121094, 1.1894531, 0.61816406, 0.3630371, 3.5175781, 1.8017578, -2.2246094, 0.7832031, -3.0039062, -0.08795166, -1.3222656, -2.6679688, -0.1796875, -0.6166992, -1.3203125, 3.4765625, 1.8105469, 0.8378906, 3.4960938, 0.22253418, -0.90283203, 0.12927246, -2.7460938, -0.7236328, -1.1816406, 0.44360352, 2.1796875, 2.4121094, -0.34887695, -1.0410156, -1.7158203, -1.4521484, 1.0283203, -0.25341797, 1.1689453, -1.2841797, -2.453125, -1.5517578, 0.5395508, 1.3037109, -1.1152344, -0.14770508, 0.546875, 0.93066406, 2.4902344, -0.8173828, 0.39770508, 0.30200195, -0.9746094, -0.62353516, -0.75146484, -0.9013672, 0.3149414, 4.296875, -1.3554688, -1.5019531, -0.53466797, -0.38916016, 2.0078125, -0.6152344, -1.7880859, 0.29956055, -2.3925781, -0.4350586, -0.30444336, 1.5517578, 0.9248047, -2.4550781, -2.2207031, -0.453125, 0.7895508, -3.7109375, -1.6992188, -0.5830078, -1.4443359, 0.18566895, -1.5507812, -2.3125, 1.4335938, -0.7573242, 0.44482422, -1.5498047, 2.9140625, 0.116760254, 0.04711914, 5.6132812, -3.1347656, -0.2878418, 2.0253906, -3.5898438, -0.9609375, -0.12561035, -0.74121094, -2.3261719, 1.53125, 2.0761719, -1.0898438, -1.3662109, -0.06616211, 0.5371094, -1.6259766, -3.4804688, 0.8828125, -0.22253418, -0.671875, 1.8876953, -0.30688477, 3.0527344, -0.7973633, 2.15625, 3.2480469, -0.19165039, 0.06970215, 1.1806641, -0.13269043, -0.0038776398, 1.2197266, 1.6738281, 2.5507812, -1.7832031, -0.08355713, 0.34179688, 1.1474609, -2.9941406, 0.8125, 0.9746094, 0.9135742, -0.19873047, -1.8056641, 1.5898438, 2.9355469, -1.3095703, 1.5332031, -1.5917969, -1.9101562, 1.2216797, 1.1865234, -1.7246094, 0.5336914, -0.25512695, -1.2333984, 2.4667969, -1.5625, -1.0742188, 0.546875, 0.08544922, 0.1496582, 0.28637695, -1.0791016, 0.32202148, 1.2197266, -0.48291016, -0.35058594, -0.79589844, -1.8427734, 1.8642578, 0.33740234, 0.2709961, 0.47558594, 0.6801758, 3.8671875, -1.6669922, -1.546875, 1.5693359, 0.0871582, -0.101623535, 0.91064453, -1.2539062, -2.1542969, -1.6074219, -1.8769531, 0.79541016, 2.3847656, 0.6333008, 0.76904297, -2.3164062, 1.5283203, -2.5664062, 2.4707031, -1.8037109, -0.021636963, 3.7558594, -3.9121094, 0.03414917, -0.95654297, 0.5708008, 0.97509766, 0.18835449, 1.7324219, -1.9501953, -1.9599609, 0.20263672, -0.6010742, -2.1601562, -1.6289062, -0.07348633, 0.29711914, 0.091674805, -0.83691406, -1.1845703, 0.010108948, 1.1171875, 2.2128906, 1.9521484, 0.32104492, -1.8378906, -1.9169922, -2.453125, -0.14489746, 0.90771484, -0.2709961, 0.68359375, 4.4101562, -1.8222656, -2.2695312, -0.81884766, -0.21105957, -2.5605469, -2.4550781, 1.8876953, 0.6958008, 0.47583008, 0.23388672, 0.20739746, -1.1298828, 2.8984375, 0.40625, 0.19750977, 1.3359375, -0.3486328, -0.9838867, -1.5742188, -4.671875, 0.53222656, -3.8496094, 0.16369629, 0.46142578, -2.5410156, 0.95214844, 2.1542969, -2.359375, -0.76464844, -0.2043457, 1.8261719, 1.0761719, 1.3847656, -0.21569824, 1.4101562, -2.4199219, -2.8945312, 0.1451416, -1.46875, -1.9394531, -1.4931641, -0.2866211, 2.4589844, -0.39526367, 2.5449219, 0.3244629, 1.1640625, -1.4287109, 0.74658203, 0.875, 0.30639648, -0.6040039, 0.5698242, -1.5292969, -2.4042969, 1.2246094, 0.25268555, 0.9663086, 2.4257812, -1.46875, -2.09375, -1.8046875, 1.0791016, 0.2388916, 1.8076172, 1.5341797, 0.0592041, -0.87646484, 0.46118164, -1.7324219, 2.7988281, 1.5888672, 3.0585938, -1.6728516, 3.9394531, -0.6489258, -3.6816406, 0.7338867, -0.016433716, 0.13049316, -0.7421875, -1.8740234, 0.19885254, -1.2304688, -1.2568359, -1.4033203, -0.5332031, -2.3066406, 2.4433594, -0.10449219, 0.80859375, -1.1455078, 3.3085938, 0.63916016, 2.5136719, 4.171875, -1.4355469, -1.7714844, -0.84033203, -1.4121094, -0.109069824, 1.8574219, -0.64990234, -1.3544922, -1.0585938, -1.1757812, -1.2890625, 0.8276367, 1.5244141, 1.6220703, 0.7128906, 2.6542969, 3.6054688, 1.9726562, 3.5371094, 0.25927734, 2.7402344, 1.3369141, 1.34375, 0.6254883, 3.953125, 0.5385742, 0.42138672, -0.80078125, 0.93310547, 0.55371094, -0.49121094, -0.3581543, 0.014335632, -0.54003906, -1.7226562, 2.4277344, 0.44360352, -0.8798828, 0.3647461, 1.7421875, -2.1640625, -0.7158203, -1.2636719, 0.93359375, 3.1835938, 0.7631836, -0.25268555, 2.3125, 2.3417969, 2.1699219, -2.8300781, 1.15625, 1.1972656, 0.05178833, -1.625, 3.5058594, 0.32641602, 1.9208984, 0.8286133, 2.5761719, 0.72753906, 0.20715332, 1.2421875, 0.13647461, 0.94091797, -1.1591797, 1.8554688, -2.5273438, -2.1699219, -0.44458008, 0.06286621, -0.6567383, -1.3916016, 0.23828125, 0.92822266, 1.8203125, 1.2646484, -3.7949219, -0.7597656, 0.94384766, 1.0292969, -3.2089844, -0.013114929, -1.2919922, -2.8203125, -1.7099609, 0.35107422, 0.73095703, 1.1582031, 0.9116211, -0.953125, 1.3554688, 1.4433594, 1.3154297, 0.5317383, 0.2709961, -1.4521484, 1.7060547, -0.87158203, 4.375, 2.0390625, 1.6777344, -0.48876953, 1.1259766, 2.6035156, 1.1542969, 1.4775391, -0.13232422, -1.2177734, -0.26342773, 0.14685059, -0.77734375, -0.63134766, -1.1132812, -2.0214844, 0.25561523, 0.013008118, -2.0957031, 0.17822266, 0.35375977, 0.74902344, 0.99560547, 0.40625, -0.8330078, 1.4814453, 2.6855469, -0.6611328, -0.5029297, -1.34375, 0.3022461, -1.3466797, -1.7851562, 1.0166016, 1.8291016, 0.88671875, -0.76708984, 0.54541016, 0.20349121, -0.015205383, 0.49365234, 1.2460938, -2.6757812, -1.7568359, 0.29589844, -0.65771484, 1.8486328, 2.9316406, -0.23547363, -1.0888672, -1.2675781, -1.6728516, -1.1298828, 0.3762207, -1.5732422, 1.3339844, 4.109375, 1.2451172, -0.8066406, -2.4941406, -0.9057617, 2.4082031, -1.0458984, 2.1210938, -0.70458984, -0.6748047, -0.53515625, -2.5859375, 1.6269531, 1.0449219, -2.0664062, -0.5908203, -1.0683594, 0.27441406, -0.34350586, 1.7539062, 1.3388672, 0.48486328, -0.29248047, 1.7109375, 5.375, 1.6660156, 2.2304688, 2.9746094, 0.19592285, -1.4179688, -0.24060059, 0.86376953, 1.9560547, 1.8027344, -0.12414551, -0.36767578, -0.4128418, -0.80126953, -1.0517578, -0.34399414]}, "B002MEPTOE": {"id": "B002MEPTOE", "original": "Brand: Raypak\nName: Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.\nFeatures: 336,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "embedding": [-1.9091797, 0.22546387, 1.8759766, 0.4296875, 1.0332031, 2.0976562, 1.8974609, -1.5048828, -0.06854248, 2.1132812, 0.63720703, 1.2050781, 1.5927734, 0.77685547, 1.5585938, -1.5654297, 0.6176758, 0.4206543, 2.6035156, 1.7783203, -0.16589355, 1.0361328, 1.5410156, -0.63378906, 0.5214844, 0.25463867, 1.7939453, -1.6748047, -1.1601562, 0.51953125, -1.453125, 0.77783203, -0.4267578, 2.0019531, -0.6401367, -2.1621094, -1.7783203, 1.6298828, -2.7441406, -3.1289062, -2.2226562, -1.7734375, -0.85595703, -1.2509766, -0.40454102, 0.14709473, 0.7919922, -0.8330078, -0.08886719, 1.4433594, 0.8510742, -2.5351562, -0.72021484, 1.2011719, 0.71484375, -0.35107422, -0.28588867, -2.4042969, 2.9335938, 0.091430664, -1.7294922, -1.6162109, -2.2226562, 2.0742188, -0.13195801, -0.12182617, -1.6796875, -0.99560547, -1.5136719, 1.3574219, 2.0722656, 0.90283203, -1.1357422, 0.7426758, 0.31420898, 0.06222534, -2.0996094, -0.61621094, 4.1992188, 1.4638672, -2.1894531, -0.5761719, -0.1953125, -2.2246094, -3.4375, 0.014083862, -0.6713867, 0.0036125183, 1.2988281, 2.3476562, -2.0371094, 1.8798828, -0.16931152, -3.1855469, 0.5996094, -1.5888672, 0.46435547, 1.7490234, 1.0595703, 2.671875, 0.39770508, -1.2421875, 0.7524414, 0.21655273, -1.5361328, -0.80908203, 1.0810547, -0.21313477, -1.0791016, 1.6757812, -0.12646484, 1.0888672, 2.9667969, -2.3730469, -2.8339844, -0.38427734, 0.0116119385, 2.3691406, 5.4101562, 1.4804688, 0.8354492, 0.1821289, 2.4609375, -1.6416016, -0.9477539, -0.1550293, -0.85498047, -1.0839844, 1.7197266, -1.7021484, -0.32495117, -0.25341797, 2.125, -0.5385742, 0.3947754, -2.0058594, -2.1328125, -0.07647705, -5.09375, -1.2109375, -2.4335938, 1.9326172, 1.3427734, 0.7451172, -3.3925781, 0.097229004, -0.8144531, 1.4443359, -0.5083008, -0.89941406, 3.0820312, -2.5722656, -0.23291016, -1.5917969, -1.7246094, 1.6777344, 0.7001953, -2.8886719, 1.9873047, 3.6582031, 1.65625, 0.2388916, 0.9272461, 1.1347656, 0.8852539, -1.5791016, 1.6943359, -0.37646484, -0.54345703, 0.22460938, -0.32836914, -2.9355469, -1.8515625, -1.0507812, -1.3398438, -2.4628906, 0.14953613, 0.80078125, 1.625, -0.36669922, -3.2402344, -0.64990234, -2.6640625, 0.41870117, 1.4179688, -1.3867188, -3.1757812, -1.2050781, -0.74365234, -2.5800781, -0.21350098, 0.75683594, -0.5600586, -0.47607422, -1.3632812, -2.5976562, -3.9355469, -0.06304932, 1.4599609, 1.5126953, 0.79052734, 0.19433594, -0.28076172, -1.1523438, -2.2148438, -3.9609375, -0.09527588, -2.9921875, -0.96533203, 2.5234375, 0.44995117, -1.5380859, 0.72314453, -2.5976562, -0.30029297, -1.6367188, 1.8857422, -0.83691406, 1.2011719, 2.140625, -0.52001953, 0.5727539, -0.117370605, 0.85058594, -0.5883789, 2.7734375, 1.1669922, 0.13049316, -2.2988281, -1.0214844, 0.9033203, 1.1279297, -1.7744141, 0.32202148, -1.2421875, 2.640625, 0.83935547, 0.88134766, 1.3720703, -0.21728516, -0.5131836, -1.9501953, -0.6035156, -0.40234375, 0.114868164, 0.11730957, -2.6894531, 2.0332031, -0.12976074, 0.44873047, 1.0214844, -2.3105469, -0.4736328, -0.6557617, -0.97509766, -1.3056641, 1.3476562, -1.1982422, -0.66796875, -1.3574219, 3.890625, 1.5263672, -0.20410156, -1.0908203, -2.6640625, -0.9604492, 2.9375, 2.8886719, -2.3886719, 1.1933594, 0.08807373, 1.6708984, 1.0839844, 1.7285156, 0.9995117, 3.5878906, -1.3525391, 4.1445312, -0.7944336, 0.93896484, 1.0859375, 0.9916992, 2.4765625, -0.8754883, 0.6538086, 1.7832031, 0.76171875, -0.2956543, -0.9614258, 1.4990234, 0.8666992, -0.8671875, -2.453125, 2.7421875, -0.89746094, 2.4882812, 4.96875, -0.71484375, -1.0419922, -1.7851562, 2.0253906, 2.1269531, -1.6064453, -0.39526367, -2.4941406, -2.3164062, 0.96533203, -0.7216797, 0.28759766, 0.06768799, 0.23291016, -1.4257812, -5.0976562, -1.3105469, -4.671875, -1.1464844, 3.3730469, -2.7167969, 1.8427734, 0.73339844, -4.0664062, -0.7451172, -0.14562988, -0.7011719, -0.24719238, 1.3017578, -1.2558594, -1.0175781, -0.71777344, -1.0751953, -1.1650391, -1.8447266, 1.2851562, -0.98339844, -1.8613281, 0.088256836, -0.4091797, -3.2460938, -0.14831543, -1.7695312, -0.95947266, 2.125, 1.0361328, 1.5078125, 0.29003906, -1.3945312, 0.033996582, 0.17773438, -0.6713867, 0.19250488, 1.0605469, 0.60253906, 0.29711914, -2.8867188, 1.7919922, 1.0615234, -1.4941406, 0.15124512, -1.2841797, -1.0166016, -0.8046875, -0.9995117, 0.8696289, -1.0820312, 0.6533203, 0.4116211, 3.359375, -2.9707031, 2.6972656, -0.8676758, 1.9326172, -0.5800781, 0.7216797, 0.40478516, -1.1083984, 2.1816406, -1.0273438, 2.0976562, 2.3984375, 1.3710938, 0.35424805, 0.26049805, 1.1308594, 2.9726562, -3.1503906, 0.6933594, -0.8808594, -3.0996094, -0.8417969, -1.7675781, 1.578125, -2.3027344, 0.09136963, 0.90771484, -1.578125, -2.2558594, 1.2148438, 0.25952148, -0.61083984, -0.30908203, 0.578125, 0.06768799, 0.06903076, -2.0214844, -0.64501953, -1.7236328, 0.39233398, -0.07733154, 1.2646484, 1.1972656, 2.4550781, 2.3535156, -0.23413086, 1.0458984, -0.06976318, -5.2226562, 1.0009766, 2.1992188, -0.30151367, -1.0058594, -0.34594727, -1.8359375, -0.4033203, -0.9082031, 1.8662109, 1.2070312, 2.3574219, -1.0654297, -1.3779297, 3.5957031, 3.1738281, -0.9892578, -0.54785156, -1.7148438, 1.9033203, -1.4833984, -1.7880859, 1.2138672, 2.1542969, -1.7197266, -1.6601562, 2.4980469, -0.20544434, 3.1894531, 3.5976562, -1.4052734, 1.1660156, 1.7148438, 2.5039062, 2.1289062, 1.0615234, 0.038757324, -4.4179688, -0.013595581, 1.2587891, 1.5234375, 1.2626953, -0.52441406, -0.66503906, -0.38793945, 0.32714844, -1.5126953, -0.3635254, 2.0761719, 0.8540039, 0.7548828, 1.3193359, 0.6904297, 1.7324219, 2.1425781, 0.75, -1.6113281, -1.6484375, 1.4453125, 3.1582031, 3.5996094, -2.2265625, -1.3613281, -0.3479004, -0.12207031, -1.6787109, 1.8320312, -1.2929688, 1.0361328, 0.5283203, -1.046875, -1.4228516, -1.7578125, 1.5224609, -1.1044922, -0.3840332, 1.2470703, 0.21459961, -0.18457031, 0.43920898, -2.296875, -0.8466797, -1.3818359, 0.107543945, -0.0012111664, 0.2841797, -1.6152344, 0.9213867, 2.4160156, -0.81689453, -2.0039062, -0.4892578, -0.40698242, 1.0976562, 1.0595703, -0.3647461, 0.44970703, 2.1210938, -1.8115234, 0.03353882, -3.5976562, 0.16906738, 0.08258057, -0.43676758, -0.5258789, 2.546875, 0.60498047, 2.8632812, -0.81103516, 1.4853516, -1.3037109, -1.1103516, 2.1132812, -1.2519531, -1.6914062, -2.125, -6.0234375, 2.7714844, -2.3886719, -1.6191406, 1.8408203, 0.3935547, 0.9951172, -0.73876953, 0.83935547, -1.4296875, -2.0390625, -0.19165039, 1.9638672, -0.6464844, 2.1367188, 4.9296875, -0.4951172, -1.2011719, -1.4306641, -0.9121094, -0.36791992, 1.0615234, -0.1348877, 1.2041016, 0.64208984, -1.1279297, 1.0546875, -0.22583008, 0.9296875, -1.0195312, -0.6621094, -0.9316406, -0.45996094, 1.5517578, -1.1943359, 1.9541016, -0.61083984, 5.0664062, 1.2539062, -0.62646484, -0.67285156, 1.9277344, 3.0214844, 0.19677734, -2.6347656, -1.0175781, -0.88671875, 1.2832031, -1.2861328, -0.4169922, -1.1513672, -1.7509766, -0.3486328, -1.0947266, 1.3300781, 3.296875, -0.60595703, -2.3027344, 0.51464844, -1.1455078, -1.1044922, -1.0361328, 0.2956543, 0.26879883, -0.90625, -0.5410156, -1.0771484, -0.70410156, -2.6113281, -1.8759766, -4.1835938, 1.0595703, 2.3007812, 2.5664062, 1.2646484, -2.2441406, 0.124938965, -1.4433594, -0.71240234, 0.9213867, 0.73828125, 0.87353516, 0.9291992, 0.91308594, 1.296875, -1.7646484, -0.671875, 0.29907227, -0.60595703, 0.099731445, -1.4873047, 1.2626953, -0.9604492, -2.2773438, 2.265625, 0.2902832, 3.8261719, -3.046875, 0.52783203, -0.14074707, -1.0654297, -0.91503906, 1.2675781, 0.034057617, -0.60839844, 3.484375, -0.57421875, 0.43676758, -0.55371094, 0.3071289, -0.2548828, 1.7939453, -1.0800781, -0.6933594, -2.5996094, 2.8261719, -1.5917969, -0.12322998, 2.8515625, 1.8486328, 1.3359375, 2.1894531, 1.6650391, 0.30297852, 0.7319336, 0.6645508, 2.2246094, 1.0869141, 0.46118164, -0.5629883, -0.17614746, -1.4433594, -2.3730469, -0.83691406, 2.4804688, 0.030044556, 1.7050781, -0.47021484, -1.1982422, 0.23620605, -3.7226562, -1.5537109, -0.5541992, 2.8730469, 0.3034668, -0.17602539, -0.013374329, -0.26538086, 3.3867188, 1.2402344, -0.9536133, -0.5239258, 1.8056641, -1.0878906, -0.35107422, 1.7744141, -1.1484375, -1.4941406, -2.1035156, 0.54052734, 0.65771484, -0.11669922, 2.3066406, -0.23400879, -2.4726562, -1.7011719, -0.69921875, 1.4580078, -3, -0.43115234, 0.41357422, -1.9394531, -0.16906738, -1.1416016, -1.1220703, -3.2753906, 1.2792969, 1.9599609, -0.57910156, 0.024505615, -1.8300781, -1.5947266, -4.1601562, -1.8496094, 1.8886719, -0.26879883, 0.8510742, 0.1373291, -3.0078125, 0.21826172, 0.3696289, -0.74121094, 0.11529541, 1.9892578, -2.5585938, -1.0664062, -0.5229492, 2.6582031, 0.67871094, 0.5776367, -1.8710938, -1.6914062, 0.14355469, -1.4736328, -1.7119141, 0.17822266, 0.60595703, 0.890625, 1.3427734, -0.6538086, -0.9433594, 4.2070312, 0.30639648, -1.8632812, 0.9838867, 1.1083984, -0.36108398, 2.0839844, -1.0595703, 0.42456055, 1.0859375, 0.108947754, -0.9902344, 4.5039062, 0.09655762, 1.140625, -0.6660156, 0.21496582, 0.082458496, -0.8095703, 1.5859375, -0.15258789, 0.08178711, 1.2226562, -1.9716797, -0.99316406, -1.0234375, -3.0566406, -1.6367188, -0.3581543, -1.3378906, -0.13916016, -0.28149414, 1.3105469, 3.0449219, -1.3271484, 1.8066406, 1.6835938, -0.07537842, -1.4677734, -0.54541016, 1.1367188, 0.47338867, -0.9082031, -2.28125, -2.203125, -0.5541992, -0.7084961, -0.96484375, 1.1269531, -0.30639648, -0.5161133, -0.9428711, -0.38061523, 1.1621094, 2.7714844, -0.35620117, 0.07562256, -1.7880859, 0.11517334, 0.20019531, -0.71777344, -1.015625, 0.040008545, -0.2668457, 0.035949707, 2.7402344, 3.1660156, -1.3857422, -0.39794922, -0.38671875, 0.7734375, 0.5410156, -2.9472656, 3.3886719, -3.2207031, -1.3818359, -0.09442139, 0.12164307, -3.2675781, 0.09777832, 1.765625, 2.0078125, 0.41430664, 2.4609375, 1.7490234, -2.5039062, 0.9194336, -0.101257324, 0.5180664, 0.6279297, 0.41210938, -0.39257812, 3.7070312, 1.0722656, 0.8876953, -1.3339844, 1.1572266, -0.7519531, 0.96777344, -3.2285156, 0.8203125, 0.29492188, 1.6455078, 3.2695312, 1.03125, 2.0429688, 1.6240234, 0.54052734, 2.1523438, -2.0253906, 3.125, 1.2529297, 2.0390625, 0.36206055, -0.4482422, -0.5888672, 0.36499023, -2.0996094, -0.7792969, 0.92285156, 1.3623047, -0.003850937, -0.7089844, -1.7304688, -1.3955078, -1.2304688, 1.5058594, 0.029327393, 1.5869141, 0.2783203, 1.078125, 1.7470703, -0.5629883, 0.8852539, 0.79296875, -0.96533203, 1.4052734, -2.0703125, 0.46484375, 0.99365234, 0.69091797, 1.6660156, 2.0429688, -0.75878906, 0.97021484, -1.1689453, -0.6723633, -0.44140625, 0.8803711, 0.6567383, 1.1601562, -2.0527344, -1.7109375, 2.1542969, 2.25, -0.21508789, 2.9277344, -1.9755859, -0.21911621, -1.9873047, 0.8730469, -0.4482422, -0.9946289, -1.859375, -2.4960938, 3.1113281, -1.6757812, 0.3293457, -2.7910156, 0.65625, 1.0400391, -0.70166016, 0.8803711, 1.5136719, -0.23071289, 2.9160156, -0.89160156, 1.4462891, 0.64160156, -1.6796875, -0.3552246, -0.89746094, 2.6757812, -0.7939453, 0.29858398, -0.2841797, 3.9628906, 1.3564453, 0.90771484, 0.011756897, 0.29833984, -0.12890625, -0.20056152, -0.21398926, -1.7919922, 3.0566406, 0.017730713, 1.5322266, 2.9082031, -1.5009766, -0.89208984, 0.90283203, 0.90771484, 2.125, 1.5263672, 1.0654297, 0.6723633, -2.4980469, -0.30908203, 2.1308594, -0.8833008, 1.2597656, 0.17993164, -1.2060547, 0.06555176, 1.4453125, -0.1784668, -0.50634766, -0.14294434, -0.5986328, 0.35180664, 0.73339844, 0.5957031, -1.0380859, 1.1425781, -0.9169922, 2.5605469, 2.3476562, -1.7480469, 1.0351562, 0.7324219, -1.3203125, 0.112854004, 1.6455078, 0.88964844, 2.7363281, -2.7792969, -3.6601562, -0.8730469, -0.83740234, -0.0791626, 3.6640625, 0.59228516, 1.0947266, 0.7607422, -0.37182617, -2.9453125, -3.1386719, -0.59375, 0.8071289, -1.0585938, -0.8623047, 0.921875, 0.26611328, 2.1074219, 1.3583984, -1.5429688, 0.091552734, -1.3398438, 1.0429688, 1.1279297, 1.8476562, 1.34375, -0.23095703, 3.109375, 0.9291992, -0.7583008, -2.0527344, 2.1875, 0.2553711, -0.32592773, -0.9296875, -0.71728516, -0.9194336, 0.38427734, 0.18017578, 2.3242188, 1.9277344, -0.47094727, -1.3486328, -2.6308594, -3.0351562]}, "B07CVNQKR6": {"id": "B07CVNQKR6", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Specifications:\nFeatures automatic shut off system for low oxygen\nEasy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\n", "embedding": [-0.79785156, 2.0078125, 2.4492188, -0.5395508, -0.7338867, 0.8647461, 0.037139893, -1.640625, 0.09716797, 2.3613281, 1.5371094, -0.15783691, 0.39038086, -0.99072266, 0.9448242, 0.095703125, 0.7524414, 2.0175781, 1.2216797, -0.08862305, -0.69433594, -1.4609375, 2.9023438, -1.0400391, 0.9189453, 2.1464844, 1.7988281, -1.4951172, 1.0019531, 0.74902344, 2.0703125, 0.5336914, -2.3203125, 0.55615234, -1.8144531, -0.06616211, -2.9648438, 2.4863281, -2.7128906, 0.31152344, -1.5517578, 0.40576172, 1.8251953, -0.6645508, -0.96240234, 0.02104187, 2.7734375, 0.60839844, 0.5214844, -1.4541016, 2.015625, -0.4020996, -0.5805664, 0.98583984, -3.0898438, -0.8208008, -0.3395996, -2.5117188, 1.5410156, 0.9243164, 1.5419922, -2.0625, -2.1621094, 1.8955078, 0.35058594, -0.02041626, -1.6220703, 0.43554688, -2.7480469, 0.4560547, 2.5585938, 0.60595703, 0.12658691, 0.26342773, -0.81103516, 1.3867188, -3.625, 2.3261719, 2.359375, 3.4355469, -2.0742188, 2.125, 0.36157227, 0.5395508, -0.40429688, -1.8964844, -1.1259766, 1.3339844, 3.484375, 2.8535156, 0.3881836, 3.0507812, -0.33496094, -2.2617188, 0.7832031, -1.6347656, 0.81396484, 1.4501953, 1.0078125, 0.79785156, -0.41357422, -0.41210938, -0.20007324, 1.1914062, 1.1328125, 0.5024414, 1.2636719, -0.11437988, -2.6210938, -0.15649414, -2.5371094, 0.14562988, 1.3486328, -0.13635254, -3.078125, -1.15625, -0.061187744, 0.26733398, 4.7617188, 1.4941406, 4.1210938, 1.8203125, 2.3222656, -2.3925781, 0.17919922, 0.8408203, -1.1621094, -0.10235596, 0.9667969, -1.1220703, 0.16796875, -0.34179688, 1.3349609, -0.057800293, -0.5673828, -2.796875, -2.1894531, -2.1210938, -3.1074219, -0.05279541, -1.8076172, -0.6464844, 2.1679688, 1.5136719, -1.8574219, 0.008354187, -0.9042969, -0.42089844, -0.46777344, -0.3425293, 1.6728516, -3.4355469, -1.7792969, 1.0820312, 1.5117188, 1.3515625, 0.05078125, -1.2958984, 3.4453125, 1.8691406, 1.6259766, -2.3613281, -0.24316406, 1.3232422, 0.22814941, -1.5791016, -0.20056152, 2.21875, -1.2304688, 0.43676758, 1.4755859, -0.62402344, 1.1328125, -1.2958984, -0.07562256, -2.2207031, 1.21875, 2.2832031, 1.3896484, -0.87353516, -3.5058594, -0.34887695, -0.6621094, -0.38964844, 0.5595703, -2.359375, -3.2226562, 0.34033203, -0.72998047, -0.81689453, -1.7734375, 0.96484375, -0.6567383, -0.4399414, 1.109375, -2.5761719, -1.4248047, -1.3964844, 0.47216797, 0.19335938, -1.296875, -0.5258789, -1.4736328, -1.6962891, -3.9511719, -3, 0.7661133, -2.9023438, -0.81152344, 0.9057617, -0.7573242, -0.089538574, 0.32177734, -0.90966797, -0.03942871, -2.5273438, 1.9453125, -0.0949707, 1.9921875, 4.2226562, -0.13098145, 1.3359375, -0.07714844, -0.48388672, -0.5605469, 2.1953125, 0.8388672, -0.29296875, -0.09197998, -3.1875, 0.8222656, 0.35253906, 2.0390625, -1.1337891, -1.8378906, 2.4882812, -0.062072754, -1.3496094, 1.1513672, -0.0670166, -1.1728516, 0.40576172, -2.0625, -0.8618164, 0.6660156, 3.609375, 2.0878906, 1.0068359, 1.4345703, 1.8466797, -0.3413086, -1.3320312, 1.0283203, -0.30126953, -3.5234375, -0.43066406, 0.13012695, 0.24829102, -0.69384766, -2.1269531, 1.7060547, 1.8720703, 0.3828125, -2.4433594, -0.9399414, 0.30908203, 2.7578125, 2.078125, -0.34155273, 0.13964844, 1.0664062, 2.4941406, 0.7216797, 1.1777344, 0.265625, 2.5839844, 1.0361328, 2.5390625, -0.8100586, -0.11218262, 1.9550781, -0.31225586, 0.38745117, -1.7734375, 0.1060791, 0.67871094, 0.111206055, 0.44848633, 1.09375, 1.1357422, 2.1347656, -1.3779297, -0.9433594, -0.578125, -0.48120117, 2.9785156, 2.5820312, 0.055114746, -1.5800781, -0.3930664, 1.1953125, 2.6113281, -2.78125, -0.8901367, -0.84033203, -1.6376953, 0.8457031, -0.00065231323, 1.3017578, 0.8671875, 0.24267578, -2.8203125, -1.328125, -2.25, -4.5898438, -0.8364258, 1.9853516, -2.2460938, 2.7617188, 0.5209961, -0.36938477, -0.45996094, 0.9033203, -2.359375, -1.1035156, 0.5209961, -0.9326172, -1.8291016, -0.87109375, 0.5834961, 0.9091797, -2.0546875, 1.7939453, -1.8193359, -1.4404297, 0.7949219, 0.22045898, -0.82470703, 0.23291016, -0.026046753, -1.3828125, -1.28125, -1.1728516, 1.7304688, -0.6230469, -1.6142578, 0.08929443, 1.1503906, -0.3083496, -2.1523438, 0.5151367, -0.2866211, -1.5966797, -4.3359375, 2.5058594, 0.38134766, 0.10284424, 0.33007812, -1.0878906, -0.8208008, -1.0283203, -1.1875, 0.38623047, 0.5883789, 0.3725586, -0.65771484, 2.3945312, -3.8535156, 2.2539062, -1.8349609, 1.8476562, -0.5966797, -1.4179688, -0.89501953, -0.21118164, 2.8183594, 0.28295898, 0.6923828, 1.4794922, 1.0751953, 0.37719727, 1.6923828, 1.6601562, -0.76660156, -2.3300781, 0.49902344, -1.15625, -1.1865234, -1.390625, -1.2490234, -0.58251953, -1.0751953, 0.030303955, 1.6894531, -2.2109375, 0.5209961, -0.0060310364, -0.84472656, -1.7421875, -2.5234375, 0.87939453, 1.375, 0.3017578, -2.859375, 0.7910156, -1.4951172, -0.6928711, -3.7988281, 1.2724609, -1.109375, 0.30786133, 2.75, -0.75, 0.8613281, 0.7314453, -5.1679688, 1.8027344, 3.5996094, -0.31103516, -3.0644531, -0.37402344, -3.9882812, -0.89501953, -0.34375, 0.41357422, -0.28100586, 3.6542969, 0.03475952, 1.4326172, 2.8222656, 4.078125, 0.5307617, 0.8671875, -1.8076172, 2.7402344, -2.1269531, -2.0957031, -0.12121582, 2.4296875, -4.046875, -1.4101562, 1.6484375, -0.6401367, 1.6855469, 2.4160156, -0.6635742, 0.56347656, 2.3945312, 3.0585938, 3.8554688, 0.31982422, -1.3378906, -3.2519531, 1.1904297, 3.2617188, 3.1992188, -2.7421875, -0.7729492, 0.6464844, 1.9101562, 0.7661133, -1.6806641, 0.08325195, 1.6865234, 0.24829102, -0.25585938, 2.1464844, -0.8339844, 0.5283203, -0.18908691, 0.6533203, 0.48535156, -1.9980469, 0.15612793, 2.234375, 1.359375, -0.18237305, 0.42773438, -1.4541016, -1.1796875, -0.48828125, 1.3076172, 0.890625, 0.1784668, 0.8027344, -3.1953125, -1.5947266, -0.06933594, 1.4921875, -2.015625, -1.3076172, -0.7416992, 0.41357422, -0.8779297, 0.43579102, -2.4375, -0.44091797, -0.1340332, 3.3769531, -0.60058594, -1.2929688, -0.6767578, -1.3154297, 1.4775391, 0.5620117, 0.31860352, -1.6806641, 0.2614746, -0.859375, 1.6796875, 0.3869629, 1.9619141, 0.3857422, -2.7246094, 1.6230469, -0.6699219, 0.67529297, 1.90625, 0.72558594, -1.3193359, 3.6816406, -0.38110352, 1.5205078, -0.84277344, 1.4804688, -0.87158203, -1.1855469, 1.3681641, -2.703125, 0.734375, -1.6679688, -3.8789062, -0.56640625, -3.0078125, 0.5576172, 3.6269531, 0.5830078, 1.0292969, 0.27172852, -0.10192871, -1.609375, -3.0664062, -1.484375, 1.0039062, -2.8457031, 0.8222656, 3.0039062, 0.24597168, -2.2597656, -3.2324219, 2.3613281, -0.9926758, 1.0107422, -1.0878906, -0.8051758, 1.6113281, -1.8291016, -0.35913086, -0.7529297, 0.6928711, 0.3713379, -0.7944336, 0.21911621, -0.48779297, 1.4882812, 0.88378906, -0.82958984, -1.765625, 3.21875, 1.5947266, -2.1191406, 1.7441406, 1.4248047, 1.0517578, 2.1757812, -2.9121094, 0.28125, -0.27807617, 2.3574219, -0.7783203, -0.78125, 0.07086182, -0.21020508, -0.22265625, 0.70410156, 0.15234375, 2.3085938, 1.7236328, -3.1835938, 1.1650391, -1.9101562, -2, -1.7060547, -2.109375, -3.3046875, -0.6791992, -0.6879883, 1.2636719, -1.8320312, -2.5449219, -0.80029297, 0.2697754, 1.0478516, 2.3046875, 1.7216797, 2.0546875, -3.25, -0.065979004, -0.46923828, -1.1376953, 0.6738281, -1.1503906, -0.5209961, -1.0400391, -0.34545898, 0.32128906, -2.0800781, 1.4853516, 2.1132812, -1.8271484, 0.045562744, -0.7988281, -0.76416016, -0.2220459, -1.2919922, 3.4609375, -1.1542969, 4.015625, -1.6230469, 1.3369141, -0.70703125, -0.86083984, -1.2783203, 0.49047852, -1.7685547, 1.1083984, 0.59472656, 1.2128906, 2.4589844, -0.921875, 0.105773926, 0.29785156, 1.7197266, -0.48876953, 0.41333008, -1.1445312, 1.3398438, -0.62890625, -1.8183594, 1.2900391, -1.2578125, 0.12023926, 3.2089844, 3.7441406, 1.4501953, -0.058898926, -0.5673828, 0.16967773, 1.0488281, 1.6152344, 1.8398438, 2.3535156, -1.6142578, -2.3300781, -1.5253906, 2.28125, -0.3095703, 3.6582031, -0.1977539, -2.1582031, 0.15222168, -2.4414062, -2.6484375, 0.2253418, 1.0634766, -0.6230469, -2.4453125, -0.6777344, 0.041229248, 2.9902344, 4.421875, 0.4934082, 0.9614258, 0.7602539, 0.6225586, -0.080566406, 2.4414062, 1.0957031, -1.2851562, -0.7011719, 2.3945312, -0.99902344, 1.3642578, 0.76708984, 1.2529297, -2.2363281, -0.5136719, -1.6806641, 3.1582031, -1.5742188, -1.6328125, 0.78466797, 0.10308838, 1.0039062, -1.9052734, -2.640625, -2.09375, -0.78515625, 1.2441406, -1.5244141, -1.6669922, -2.8320312, -3.5039062, -3.8378906, -1.5136719, 0.609375, -0.22973633, -1.6855469, 0.6508789, -2.515625, -0.9038086, 1.2802734, -0.37036133, -0.69189453, -0.51464844, -2.3046875, 1.5751953, -0.55908203, -0.36157227, -0.08129883, 1.7900391, 0.8852539, 0.68066406, -0.7519531, -1.2001953, -3.3320312, 0.8671875, 0.60302734, -0.35107422, 0.42797852, -0.6645508, -0.9404297, 1.6816406, -0.50439453, -1.0048828, 0.3371582, 2.2402344, -1.9863281, 2.1777344, -2.1503906, 2.8359375, 0.6435547, -0.5708008, -1.1621094, 0.71240234, 4.0703125, 0.38134766, 0.69091797, -1.0849609, 0.1887207, -0.00026893616, 1.3945312, -1.0898438, -1.5029297, 2.4199219, 0.7207031, -0.23242188, 0.9067383, -3.0078125, -2.3457031, -1.0419922, -0.8105469, 1.0595703, 0.23071289, 0.1550293, -0.7714844, -0.7236328, 2.5703125, 0.05529785, 0.68408203, -2.0917969, -0.94384766, -1.5869141, 1.7314453, -0.46411133, -2.2070312, -0.9511719, -2.4082031, -0.68115234, 0.46972656, 0.4663086, -0.8027344, 0.52685547, 0.060424805, 1.2792969, -2.7011719, 4.9882812, 0.5048828, 0.2927246, -3.328125, 1.6386719, 2.1621094, 0.9716797, -1.6357422, 1.2919922, 2.2910156, -0.9765625, 1.5507812, 2.5859375, -2.6308594, -0.90722656, 0.42871094, -0.6279297, 0.51953125, -1.3203125, 3.1464844, -1.1660156, -0.16015625, 0.23339844, -0.51953125, -2.9003906, -0.5888672, 2.8554688, 0.32299805, 1.2099609, 1.6738281, 0.7963867, -0.40161133, -0.23718262, -0.79296875, -2.3417969, 0.3930664, 1.0263672, -0.9511719, 0.9667969, 0.41918945, 3.2871094, 1.6523438, 2.5644531, 0.22680664, 0.85058594, -2.296875, 1.3173828, 1.5625, 1.7724609, 1.4257812, 2.2949219, 2.8105469, 1.8291016, -0.33618164, 1.2285156, -1.4882812, 1.140625, 0.41308594, 1.8701172, -2.296875, -1.8681641, -0.048309326, 1.0761719, -3.234375, -2.7558594, 0.84277344, 0.60791016, -3.2285156, 1.3291016, -1.4482422, 1.4082031, -3.4550781, 2.0585938, -0.68359375, 0.51123047, 0.24645996, 0.31469727, 3.5839844, 0.71533203, -1.375, -0.26611328, 0.44555664, 0.40063477, -3.1640625, 0.3947754, 0.36987305, -1.1044922, -0.80029297, 3.8378906, 0.921875, 1.8535156, -1.3916016, 0.29638672, -0.22827148, 0.3137207, -0.4814453, -0.6455078, -2.3730469, -1.1054688, 0.9375, 3.1484375, 0.16723633, 2.0605469, -0.9765625, 1.1572266, -1.2177734, -0.11773682, 0.10620117, 0.044036865, -0.44458008, -2.234375, 3.3125, -0.99609375, 1.6064453, -0.5209961, 0.2836914, 1.6455078, 0.0134887695, -0.72998047, 1.0351562, -0.9868164, 4.4882812, -0.45483398, -3.0625, 1.1279297, -0.7236328, -0.94628906, -0.98876953, 0.3786621, 0.93652344, 0.68408203, 0.75878906, 1.7490234, -0.14453125, -1.2021484, -0.10003662, 0.014801025, -0.28466797, -0.49902344, -1.5820312, -1.3125, 2.3222656, 1.5449219, -0.018615723, 0.36767578, -1.375, 0.43408203, 0.65966797, -0.7182617, 0.4326172, 0.73095703, 1.5, -0.06213379, -2.625, 0.6816406, -0.034179688, -1.6123047, 1.9599609, -1.9814453, -1.6230469, 2.7695312, -1.0419922, -0.68115234, -0.4333496, -0.58740234, 3.234375, 0.26464844, 0.34716797, -0.08654785, -0.44189453, -0.21228027, 0.010467529, 1.3447266, 3.0742188, 0.63916016, -0.68896484, 0.29516602, -2.3847656, 0.9116211, 1.9580078, 1.9697266, 0.78125, -1.6699219, -3.5722656, -0.6513672, 0.38305664, -0.5361328, 2.2597656, 3, 1.4863281, 1.1181641, -1.8457031, -2.1738281, -1.5673828, -1.6992188, -0.50341797, 0.9301758, 1.1728516, -0.19018555, -0.8046875, -0.24243164, 1.1855469, 0.5107422, -1.4267578, 0.2536621, -0.092041016, -0.49804688, 1.9169922, 1.15625, 0.60839844, 1.2158203, 0.83691406, 2.2636719, 0.47265625, 0.5078125, -1.4755859, -0.47680664, -2.8789062, 0.46533203, -3.5117188, 0.640625, 0.9707031, 0.12756348, 1.1054688, -1.7998047, 1.1142578, -4.8164062, -0.96875]}, "B07QLDTY37": {"id": "B07QLDTY37", "original": "Brand: Cibicon\nName: Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)\nDescription:
Flame Retardant and Absorbent Material

The surface fabric of the Under Grill Mat is made of flame retardant material.

but the backing material is not flame retardant material.

This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

Perfect Pretection

The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

BBQ mess.This strong material is made from 100% recycled plastic bottles.

Easily Use

The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

Our material is environmentally safe. This product is safe for your entire family, including your pets.
.

If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

100% NO HASSEL Lifetime Guarantee.
\nFeatures: Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ\nPerfect Protection:This material is made of flame retardant material, It won't burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath.\nGood Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.\nEasily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size.\nSuggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.\n", "embedding": [-0.18261719, 1.2861328, 2.0683594, -1.3125, 0.061706543, -0.031433105, 0.97802734, -1.4853516, 1.0859375, 2.3710938, -1.8251953, -0.3955078, 1.9414062, -4.34375, 2.0703125, -0.04260254, 1.3925781, 1.7431641, 2.4316406, 0.22058105, 1.1640625, 0.69189453, 0.36499023, -0.86621094, 0.77978516, 1.0722656, 4.21875, -0.32250977, -0.2849121, -0.23217773, 1.9189453, 0.62402344, 0.34838867, 2.6269531, -3.6582031, -1.3164062, -0.36401367, 2.9902344, 0.60058594, 0.43701172, -0.734375, -4.5273438, 2.5507812, 1.0869141, -1.9892578, 2.3105469, -0.63916016, 2.2910156, 0.3486328, -5.265625, 2.4453125, -0.092163086, 0.72216797, -1.6162109, -2.6972656, 2.7246094, -0.4326172, -0.6689453, 0.28759766, -0.82373047, 0.67041016, 0.11175537, -0.2010498, 1.7929688, -0.21374512, -0.88720703, -0.007587433, -1.6123047, 0.94384766, -0.11242676, 1.0595703, -1.1386719, -0.66845703, -0.16821289, 0.6738281, -0.18359375, -0.5600586, 0.11236572, -0.5600586, -2.7597656, -0.12854004, 4.5351562, -0.5517578, -1.5029297, -0.007659912, -1.3408203, -2.7089844, 0.75878906, 1.9931641, 0.8413086, -0.22814941, 2.6503906, -1.5654297, -4.5507812, 0.35546875, -2.3867188, 1.7363281, 0.039489746, -0.24975586, 2.2480469, -0.62939453, 0.13659668, -0.49414062, 2.3300781, -3.5234375, -1.4902344, 2.9550781, -0.9267578, 1.1210938, -0.058258057, 1.9921875, 0.6357422, -0.5732422, 0.030426025, 3.3574219, 0.52978516, 0.8930664, 0.95947266, -0.013435364, 1.8789062, 4.3125, 0.58691406, -1.0253906, -1.2958984, -0.1652832, -0.80322266, 0.7758789, 1.8232422, 3.1269531, -2.9375, 2.71875, -0.04876709, -1.1972656, 0.7729492, -1.5019531, -1.4326172, -0.6303711, -0.99121094, -2.0234375, 1.4394531, -0.99853516, -0.9580078, 1.0449219, -0.34399414, -3.6796875, 0.53515625, -3.5175781, 3.2421875, -1.8984375, -1.7861328, 0.6040039, -0.24523926, 1.1142578, -1.0390625, 0.9394531, -1.2011719, 0.20288086, -2.5917969, 1.8916016, 2.1953125, 2.1660156, -1.5966797, 0.03753662, -1.9042969, 1.4248047, -2.6699219, -2.0585938, 1.1357422, -1.0927734, 1.203125, 0.20605469, -2.609375, 2.0058594, 0.037384033, 0.14709473, -0.75, 1.2216797, 2.25, 0.1340332, -0.98779297, 1.5107422, -2.2460938, -0.44335938, 1.4863281, 0.6958008, -0.4716797, -0.050048828, -1.4365234, -0.21191406, -1.1708984, -0.32592773, 2.2265625, -1.6533203, -0.33642578, -3.0097656, 0.009597778, -2.2753906, -1.2958984, 1.0839844, -0.9199219, -1.1845703, -1.8212891, -1.3115234, 1.0058594, -3.5390625, -1.9433594, -0.8066406, 2.1347656, 1.7285156, -0.63916016, -0.39916992, -1.2822266, 1.0361328, 0.96484375, -0.47802734, -0.453125, -1.2451172, 0.05239868, 1.5029297, 2.3203125, -0.99365234, -0.3227539, -1.0732422, 3.9199219, -0.82177734, 1.125, -0.13330078, 0.73828125, -1.5654297, -1.3339844, 1.0410156, 0.017730713, -0.8208008, -0.8208008, -0.48413086, 0.8408203, 1.5546875, -0.13183594, -1.6982422, -0.96191406, -1.0527344, -1.2783203, -2.7148438, -0.43139648, 0.27392578, 0.83740234, -0.1730957, 2.09375, -0.7607422, -1.2490234, -0.50878906, 2.5644531, 1.890625, -0.09991455, -0.36254883, 0.36523438, 0.44311523, 0.029571533, -2.5429688, -0.6269531, -1.0527344, -0.1138916, -1.8505859, 1.9824219, 0.2442627, -0.005168915, 1.0878906, 0.15319824, -2.9160156, -2.1914062, 0.015808105, -0.014877319, -1.2304688, -0.8173828, 0.80810547, -0.64160156, -1.5810547, 1.1884766, 0.38183594, -1.0595703, -0.87353516, 3.140625, 0.90185547, -0.25195312, -1.8945312, -0.28881836, -2.515625, -0.79345703, 0.57128906, -0.025924683, 2.5820312, -0.16357422, -1.9179688, 1.8710938, 0.3491211, -0.06829834, 2.7109375, 0.8417969, -1.4589844, -0.88134766, 1.9287109, 2.7050781, -0.9848633, 1.1503906, -0.5756836, 0.4970703, 1.1923828, -1.1630859, -1.5, 3.5761719, 0.4807129, 1.2138672, 2.6425781, 1.5517578, -2.3984375, -1.2158203, 1.5859375, -0.35986328, 1.1601562, -0.7963867, -1.4443359, -0.14221191, 0.18139648, -1.9726562, -2.953125, 1.1767578, -0.089538574, -0.53808594, 0.94433594, 0.059448242, -0.5439453, -1.7128906, -0.22619629, -0.01499939, -0.5722656, -1.1074219, -1.8486328, -0.46020508, -1.1396484, 0.16027832, -1.3544922, -0.3330078, -0.13293457, -1.2333984, -0.5786133, -2.4003906, -1.7392578, -1.0986328, -0.19665527, 1.578125, 0.6015625, 0.35766602, 0.6904297, -3.4238281, 0.31176758, -0.1463623, -0.3017578, 1.6582031, -1.2011719, -0.021438599, -0.22436523, 1.1992188, 1.5546875, -0.4958496, 1.3759766, 1.1328125, -3.375, -2.7714844, 2.1738281, -0.59814453, 0.20153809, -1.9511719, -0.44702148, -0.8432617, -1.3398438, -1.7363281, 1.4697266, 2.3144531, 0.48535156, 0.921875, -1.6152344, -0.2536621, 0.7324219, 1.3388672, -1.3544922, -0.94189453, 0.41015625, -1.7519531, -1.2441406, -2.109375, -1.7285156, -1.4677734, 0.4729004, -0.49438477, 2.4882812, 0.025360107, 5.015625, -2.4003906, -0.34399414, 0.70947266, 1.8359375, -0.45263672, 1.1318359, -2.3515625, -0.5708008, 0.24157715, -0.97021484, -2.1347656, 1.0810547, -1.5751953, -0.083740234, 0.68652344, 0.86279297, 1.2246094, -0.5913086, -2.6386719, -0.6640625, -1.1894531, -0.6176758, 1.6738281, 0.25805664, -1.4052734, -0.85302734, -1.6357422, 2.7539062, 0.16796875, 1.0214844, 1.2695312, -1.2128906, 2.3730469, 1.6376953, -1.1767578, 1.3876953, 0.82666016, 1.5527344, -2.8691406, -1.6289062, 2.1757812, 0.7758789, -1.6259766, -0.05227661, 0.16833496, -0.5800781, 0.37573242, 0.18554688, -0.30297852, 0.84521484, 0.87841797, 3.1445312, -1.6240234, 2.5078125, -0.7236328, -0.44702148, -0.44604492, 1.0244141, 2.2304688, 1.75, 1.5371094, -0.31640625, 1, -0.95410156, -2.0976562, 0.39868164, 1.0957031, 0.28222656, -0.765625, 0.1352539, -0.5942383, 0.22998047, 3.7363281, -1.5341797, 0.83203125, -1.7060547, 0.068725586, 1.4169922, 0.2619629, -1.3808594, -2.9199219, -1.3496094, 0.81152344, -3.0175781, 0.18835449, -1.9375, -1.2626953, 1.5595703, -2.7597656, -2.4980469, -1.2792969, 3.6074219, -1.0380859, -2.1816406, -1.8994141, 2.25, 0.38305664, -2.5742188, 0.6464844, 1.9912109, 0.07067871, 1.8232422, 0.08251953, -1.3486328, 2.625, -1.9140625, 1.5927734, 0.9008789, -1.7988281, -0.8286133, -1.9921875, -0.67871094, -1.1181641, 0.4152832, 0.68603516, 1.0039062, -1.3916016, 1.1621094, -1.9658203, 0.41357422, 0.6347656, -1.7939453, -0.6855469, 1.3623047, 1.7070312, 0.78564453, 0.31811523, 4.078125, 1.1679688, -0.33813477, 0.6821289, -3.375, -0.8354492, -1.1992188, -3.5410156, -1.1289062, -0.6748047, -2.1640625, 4.1054688, -0.26000977, 1.3955078, 4.1171875, 0.16552734, 0.06604004, -0.48461914, -1.7578125, -1.4589844, -1.2226562, -0.24230957, 2.9628906, 0.78808594, -0.34960938, -0.95458984, -1.2138672, -2.2070312, 1.5927734, 0.6791992, 1.5947266, -0.5048828, -1.0615234, 0.20007324, 0.9794922, -0.96435547, -0.8051758, 1.7333984, 0.7895508, 0.4506836, 1.8779297, -0.74658203, 0.7524414, 0.50634766, -1.1621094, -1.1113281, 1.3847656, -1.3330078, -1.7880859, 2.8027344, -1.6748047, -3.0839844, 1.171875, -0.12817383, 2.8769531, -0.8769531, -1.2558594, 0.64697266, -0.5336914, 0.62353516, 0.16723633, 2.671875, 0.3774414, -0.89990234, -2.84375, -0.111816406, 0.90966797, -2.5625, -1.3876953, 0.5024414, 0.10925293, 0.7392578, -1.6669922, -1.3925781, -0.22790527, 0.078552246, 0.67089844, -1.8300781, 3.0253906, 0.41381836, 0.8334961, 2.7363281, -3.1425781, 0.072143555, 2.5488281, -2.9804688, -0.26464844, 0.75634766, -0.27856445, -2.9628906, 1.3935547, 0.9404297, -1.4335938, -1.9228516, -0.35180664, 0.119018555, 0.2697754, -2.2890625, 1.2509766, 0.41552734, 0.46362305, 0.74609375, -1.2724609, 1.8710938, -0.48339844, 1.3789062, 3.3710938, -1.4121094, -0.21704102, 2.546875, 0.30639648, 1.0166016, 2.546875, 1.4619141, 2.2851562, -0.6933594, -0.21923828, -0.26293945, 0.14624023, -3.5722656, 2.3867188, 0.15161133, -0.62060547, -1.1025391, -0.7504883, 1.0068359, 4.15625, 0.42333984, 0.78759766, -0.44311523, -2.0917969, 2.2695312, 1.3203125, -1.8925781, 0.84375, -0.6513672, -0.32666016, 2.5488281, -0.8833008, -2.7324219, -0.9321289, 0.6015625, 0.49194336, 0.5595703, -0.44628906, 0.3630371, 3.1621094, -0.7495117, -0.41064453, -1.5566406, -1.9023438, -0.06323242, -1.390625, -1.1699219, -0.85253906, 0.35742188, 3.1445312, -1.3378906, -1.5947266, 1.4384766, -0.41479492, 1.2080078, 0.8022461, -0.8876953, -2.0703125, -2.7832031, -0.58447266, 1.1904297, 2.7128906, 0.5810547, 1.5498047, -1.9082031, 1.9433594, -3.125, 2.5585938, -2.171875, -0.9404297, 3.0078125, -2.4980469, 0.9375, -2.7363281, 1.5927734, 1.4755859, 0.24853516, 2.1503906, -1.2949219, -1.2607422, 0.38256836, -1.78125, -2.0644531, -1.2285156, -1.9257812, 0.12322998, 0.5, -0.16186523, -0.49389648, -0.23217773, 0.8540039, 2.0390625, 2.1679688, 0.11505127, -2.1484375, -2.3203125, -2.0566406, -0.76464844, -1.0673828, 0.86035156, -0.040405273, 3.4765625, -2.1875, -1.7763672, -1.4716797, -0.2368164, -1.8730469, -2.5410156, 2.3242188, -0.09753418, 0.2919922, 0.9121094, 0.004447937, -1.5283203, 3.3046875, 0.21655273, 0.4855957, 2.3261719, -0.9008789, -0.3347168, -1.3173828, -2.9375, 1.3144531, -3.9394531, 0.63916016, 0.7548828, -1.1464844, 2.3886719, 2.3496094, -0.8261719, -1.3095703, -0.025314331, 2.1933594, 2.6347656, 0.36694336, -1.5117188, 1.1835938, -3.5976562, -3.5332031, -0.36645508, -1.1777344, -1.3779297, -2.0195312, 0.62402344, 1.8496094, 0.5371094, 2.8085938, 0.08093262, 0.50341797, -1.7558594, 1.7080078, 1.8896484, 0.7285156, 1.1015625, 0.05807495, -2.4375, -2.4296875, 2.0703125, 1.640625, 0.5107422, 0.57666016, -1.4658203, -2.2675781, -0.019454956, 0.5629883, 1.0537109, 1.0410156, 1.5136719, 1.1728516, 0.5571289, -0.101867676, -2.4765625, 3.5410156, 1.2167969, 3.53125, -0.94628906, 2.5371094, 0.1628418, -4.8242188, 1.3486328, 0.67089844, -0.2529297, -0.11004639, -1.6845703, -1.1240234, -1.9521484, -0.90722656, -1.3339844, 1.3984375, -2.6464844, 1.2851562, 1.1708984, -0.16723633, 0.24975586, 3.5058594, -0.45581055, 1.3076172, 2.7109375, -0.17248535, -1.3535156, -1.3037109, -1.1894531, -0.27441406, 0.7998047, -0.4584961, -1.6279297, -0.55908203, -1.1005859, -1.4140625, -0.2541504, -0.6069336, 2.0371094, 0.89160156, 3.1289062, 4.9570312, 2.1621094, 2.5839844, 0.8388672, 3.4980469, 1.5410156, 1.3095703, 0.6953125, 2.9804688, 0.2253418, 1.6152344, -1.2597656, 1.1738281, 1.1132812, -0.42529297, 1.3095703, 0.30029297, 1.4775391, -1.9619141, 1.4472656, -0.57714844, 0.45898438, 1.0185547, 3.5859375, -2.2773438, 0.3371582, -1.2285156, 1.4501953, 3.4511719, 0.640625, 0.12756348, 0.7109375, 2.0097656, 1.6103516, -4.0507812, 1.4501953, 0.75341797, -1.3310547, -0.13781738, 2.875, -0.44213867, 1.3544922, 0.32543945, 0.84716797, 0.5883789, 1.2421875, 0.7792969, -0.50927734, 0.8935547, -1.5976562, 0.3605957, -1.3505859, -1.8408203, -2.4179688, 0.011703491, -1.0322266, -1.3125, 1.59375, 1.5976562, 2.4003906, 1.1542969, -1.9394531, -1.0146484, 0.37402344, 2.2773438, -2.7792969, 1.3876953, -1.4794922, -3.8125, -0.98583984, 1.4707031, 1.6826172, 1.2353516, 1.9404297, -1.6943359, 2.046875, 0.9926758, 0.7128906, -0.1829834, 0.087768555, -0.8183594, 2.4726562, -0.07421875, 3.15625, 0.8618164, 1.8203125, -0.0413208, 1.9550781, 3.3808594, -0.11602783, 0.45239258, 0.88378906, 0.77490234, 1.2011719, -0.014823914, 0.22509766, -1.1777344, -0.57666016, -0.2927246, -1.3574219, 0.29296875, -2.8496094, -0.11126709, 0.8466797, -0.0090789795, 1.0605469, -1.1601562, 0.14294434, 2.0175781, 2.2539062, -1.7880859, -1.3896484, -1.0410156, -0.42211914, -1.8574219, -1.8505859, 0.4404297, 0.5957031, -1.4824219, -2.1132812, -0.49609375, -0.3852539, 0.29663086, 0.5048828, 1.2265625, -3.1367188, -0.45092773, 0.8334961, -0.5463867, 1, 1.8632812, 0.41186523, -1.5283203, 0.09661865, -1.4951172, -1.5585938, -0.43310547, -1.2519531, -0.25585938, 3.3710938, 3.6484375, -0.59228516, -1.5517578, -1.5332031, 2.1308594, -0.7294922, 2.8476562, -0.2709961, -1.1464844, -0.5395508, -0.63427734, 2.6503906, 0.7636719, -2.7070312, -0.46948242, -0.19970703, 0.12487793, -2.2480469, 0.8017578, 0.39379883, 0.03994751, -0.34423828, 2.6621094, 4.140625, 0.98535156, 0.9404297, 1.484375, -0.4296875, -1.3486328, 1.3271484, -0.37329102, 2.3457031, 1.7783203, 0.68115234, 0.3408203, -0.859375, 0.03378296, -2.4746094, -0.8256836]}, "B002MET2CO": {"id": "B002MET2CO", "original": "Brand: Raypak\nName: Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.\nFeatures: 406,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "embedding": [-1.6005859, 0.5151367, 2.21875, 0.2590332, 1.2646484, 1.9433594, 1.8935547, -1.6914062, -0.40454102, 2.40625, 0.6298828, 1.5703125, 1.7382812, 0.9272461, 0.9902344, -1.6943359, 0.5917969, 0.26049805, 2.390625, 1.9960938, -0.21679688, 0.7524414, 1.6640625, -0.64404297, 0.609375, 0.6230469, 2.21875, -1.4951172, -1.1533203, -0.08935547, -1.6992188, 0.9301758, -0.30200195, 1.8017578, -0.73339844, -1.8037109, -1.8457031, 1.7353516, -2.8417969, -3.0566406, -2.0566406, -1.6757812, -0.82958984, -1.21875, -0.73095703, -0.094055176, 0.8017578, -0.8720703, -0.23254395, 1.2958984, 0.8725586, -2.2910156, -0.69189453, 1.0458984, 0.70410156, -0.3828125, -0.1463623, -2.1210938, 2.8203125, 0.30126953, -1.5664062, -1.4042969, -2.3066406, 2.0664062, 0.1385498, 0.28881836, -1.2265625, -1.0556641, -1.8564453, 1.1982422, 2.1582031, 0.9692383, -1.4589844, 1.0888672, 0.1920166, -0.44262695, -2.4355469, -0.08441162, 4.09375, 1.5146484, -1.8984375, -0.2746582, -0.30566406, -2.0546875, -3.2773438, -0.1763916, -0.3996582, 0.08026123, 1.4335938, 2.96875, -1.9941406, 2.0664062, 0.0473938, -3.3183594, 0.25195312, -1.6835938, 0.57470703, 1.6230469, 1.2382812, 2.7792969, 0.3395996, -1.3417969, 0.54785156, 0.24743652, -1.4267578, -0.56396484, 1.3759766, -0.39086914, -1.5410156, 1.3769531, -0.47338867, 0.9868164, 2.7070312, -2.2675781, -2.4589844, -0.41137695, -0.22827148, 2.2128906, 5.015625, 0.8520508, 1.0332031, 0.42504883, 2.2617188, -1.6259766, -0.76708984, 0.11029053, -0.7578125, -1.1689453, 1.8984375, -1.9365234, -0.32421875, 0.16052246, 2, -0.42041016, 0.58496094, -2.1503906, -2.4746094, -0.41503906, -5.15625, -0.9008789, -2.7890625, 2.1660156, 1.3759766, 0.6875, -3.4785156, 0.07208252, -1.0058594, 1.2919922, -0.25317383, -0.9243164, 3.3027344, -2.7089844, 0.012084961, -1.5849609, -1.2705078, 1.609375, 0.8852539, -2.796875, 2.15625, 3.7617188, 1.6787109, 0.22753906, 1.2392578, 1.1191406, 0.45239258, -1.5488281, 1.8339844, -0.640625, -0.5683594, -0.016311646, -0.068237305, -2.4296875, -1.4355469, -1.4462891, -1.390625, -2.28125, -0.002008438, 0.98779297, 1.7548828, -0.31420898, -3.3984375, -0.6821289, -2.7109375, 0.27978516, 1.5556641, -1.5791016, -3.203125, -0.95751953, -0.80078125, -2.4882812, -0.47485352, 0.52783203, -0.55908203, -0.64941406, -1.4296875, -2.4550781, -3.4726562, -0.008956909, 1.4335938, 1.5830078, 0.39672852, 0.091552734, -0.61035156, -1.328125, -2.4160156, -3.9628906, -0.23706055, -3.0371094, -0.9628906, 2.4492188, 0.7890625, -1.453125, 0.4345703, -2.171875, -0.08758545, -1.7333984, 1.7939453, -0.93066406, 1.1513672, 1.9150391, -0.48779297, 0.69677734, 0.09313965, 0.609375, -0.61376953, 2.9667969, 0.83740234, 0.19458008, -2.1503906, -1.5146484, 1.0419922, 1.0849609, -1.78125, 0.3083496, -1.3916016, 2.8984375, 0.66845703, 1.1318359, 1.4638672, -0.52197266, -0.07946777, -2.0117188, -0.7944336, -0.37475586, 0.35498047, 0.50683594, -2.53125, 2.2988281, -0.38110352, 0.4128418, 0.96777344, -1.9082031, -0.37231445, -0.44726562, -1.0859375, -1.1865234, 1.2109375, -0.8544922, -0.9716797, -1.1044922, 4.09375, 1.4609375, -0.43237305, -1.0019531, -2.5898438, -0.8754883, 2.5996094, 2.9121094, -2.6269531, 1.2568359, -0.059265137, 1.5566406, 0.9121094, 1.4667969, 0.96777344, 3.640625, -1.5986328, 4.0117188, -0.59375, 0.8232422, 1.3339844, 0.81591797, 2.5996094, -1.0478516, 0.7573242, 1.6230469, 0.7397461, -0.20385742, -1.0263672, 1.8642578, 0.75097656, -1.1875, -2.78125, 2.6113281, -0.97753906, 2.296875, 5.0546875, -0.67578125, -0.9404297, -1.3544922, 1.6113281, 1.8818359, -1.7207031, -0.6040039, -2.265625, -2.2597656, 0.74902344, -0.83740234, 0.49121094, -0.058746338, 0.64501953, -1.2265625, -4.9648438, -1.4853516, -4.7734375, -1.4794922, 3.7480469, -2.7265625, 1.9248047, 0.69921875, -3.890625, -0.7270508, -0.024612427, -0.86572266, 0.22192383, 0.7753906, -1.4746094, -0.90478516, -0.7734375, -1.0332031, -1.3134766, -1.8837891, 0.9921875, -1.2900391, -1.8632812, 0.2788086, -0.77734375, -3.0898438, 0.2800293, -1.7099609, -1.265625, 1.8818359, 0.796875, 1.2041016, 0.16442871, -1.2509766, -0.1685791, 0.4116211, -0.8129883, 0.18334961, 0.98046875, 1.0830078, 0.09838867, -3.0390625, 1.5166016, 0.6791992, -2, -0.029922485, -1.3457031, -0.9453125, -0.7807617, -1.1259766, 0.6191406, -1.3994141, 0.71484375, 0.46606445, 3.0976562, -3.1835938, 2.6621094, -0.90771484, 2.2050781, -0.38671875, 0.6557617, 0.32495117, -1.3193359, 1.9931641, -0.8701172, 2.1914062, 2.0605469, 1.3066406, 0.1998291, 0.45141602, 0.8979492, 2.921875, -2.9589844, 0.7080078, -1.2392578, -2.9824219, -0.9067383, -1.5488281, 1.859375, -2.15625, 0.14160156, 0.78564453, -1.7695312, -2.2167969, 1.1445312, 0.33276367, -0.71240234, -0.58935547, 0.6567383, 0.18078613, -0.010482788, -2.3925781, -1.0283203, -1.9208984, 0.52783203, -0.6796875, 1.1806641, 0.84716797, 2.71875, 2.2832031, 0.33007812, 1.0839844, -0.14831543, -5.0820312, 0.98583984, 2.4472656, -0.6665039, -0.9975586, -0.5996094, -1.5390625, -0.28979492, -0.79052734, 1.7412109, 1.1386719, 2.5175781, -0.9975586, -1.2216797, 3.8085938, 3.359375, -0.6069336, -0.29638672, -1.8232422, 1.5400391, -1.2880859, -1.7441406, 1.1230469, 2.1855469, -1.96875, -1.7832031, 2.4375, -0.12219238, 2.8222656, 3.3085938, -1.9208984, 0.8129883, 1.6386719, 2.4882812, 2.2363281, 1.3164062, 0.13049316, -4.1132812, 0.43139648, 1.2832031, 1.1103516, 1.2382812, -0.6479492, -0.8129883, -0.39233398, 0.32226562, -1.4492188, -0.36376953, 1.9912109, 0.79003906, 0.8574219, 1.4013672, 0.55810547, 1.7783203, 2.1523438, 0.7426758, -1.5683594, -1.7089844, 1.5068359, 2.9863281, 3.3105469, -1.9414062, -1.3056641, -0.105651855, -0.6196289, -1.5488281, 1.890625, -1.2363281, 0.9355469, 0.7421875, -0.9165039, -1.4716797, -1.6796875, 1.5654297, -1.1904297, -0.16455078, 1.1884766, 0.35546875, -0.1607666, 0.6796875, -2.3457031, -1.1289062, -1.1611328, -0.019073486, 0.51464844, 0.44921875, -1.4609375, 0.76464844, 2.3710938, -0.79833984, -1.5234375, -0.3791504, -0.77441406, 1.2685547, 0.70410156, -0.6904297, 0.5258789, 2.0722656, -1.8984375, -0.13256836, -3.5683594, 0.34228516, 0.18493652, -0.54345703, -0.34643555, 2.1054688, 0.41870117, 2.7207031, -0.7602539, 1.4804688, -1.5058594, -0.81152344, 2.140625, -1.3798828, -1.5585938, -1.7509766, -6.2773438, 2.4589844, -2.0878906, -1.2851562, 1.7685547, -0.003238678, 1.0576172, -0.72265625, 0.91015625, -1.1103516, -2.1523438, -0.051605225, 1.6240234, -0.41992188, 1.5888672, 4.9960938, -0.66259766, -0.8959961, -1.5712891, -0.7270508, -0.26513672, 1.3408203, -0.44726562, 0.82958984, 0.48120117, -1.0205078, 0.9526367, 0.00012803078, 0.7597656, -1.0664062, -0.640625, -0.8051758, -0.55566406, 2.0097656, -1.0410156, 2.0761719, -0.56152344, 4.7226562, 1.3388672, -0.97998047, -0.53222656, 1.7783203, 3.1679688, 0.2697754, -2.4257812, -0.4411621, -0.7167969, 1.2011719, -1.5449219, -0.5083008, -1.0410156, -1.6542969, -0.53466797, -1.1835938, 1.3144531, 3.4179688, -0.5517578, -2.0664062, 0.25976562, -1.2900391, -0.9301758, -1.5449219, 0.30395508, 0.62158203, -0.77734375, -0.6484375, -1.0605469, -0.9145508, -2.5703125, -1.8603516, -4.484375, 0.95947266, 2.7480469, 2.3613281, 1.484375, -2.171875, -0.10681152, -0.85546875, -0.5463867, 0.3840332, 0.6352539, 0.89501953, 0.7758789, 1.2207031, 1.7792969, -1.5302734, -0.8696289, 0.38964844, -0.7167969, 0.28320312, -1.421875, 1.3515625, -0.75683594, -2.296875, 2.4335938, 0.14526367, 3.9609375, -3.1210938, 0.47338867, -0.43530273, -1.3857422, -1.0292969, 1.2714844, -0.18896484, -0.76953125, 3.4023438, -0.39916992, 0.4296875, -0.4140625, -0.0043792725, 0.05697632, 1.7949219, -0.8359375, -0.8642578, -2.8789062, 2.7226562, -1.5654297, -0.17919922, 2.8398438, 1.5537109, 1.6054688, 2.2324219, 1.9248047, 0.17114258, 0.31713867, 0.33618164, 2.3632812, 0.7680664, 0.66845703, -0.33496094, -0.3623047, -1.4101562, -2.328125, -1.2451172, 2.234375, 0.1998291, 2.1855469, -0.4814453, -1.2763672, 0.42504883, -3.3261719, -1.3955078, -0.38549805, 2.84375, 0.23583984, -0.20996094, 0.0625, -0.010597229, 3.1621094, 1.3232422, -0.8745117, -0.65478516, 1.609375, -0.8955078, -0.14929199, 1.6699219, -1.2314453, -1.6347656, -2.21875, 0.74072266, 0.77490234, 0.10632324, 2.7089844, 0.12188721, -2.375, -1.1875, -0.84814453, 1.7001953, -3.0136719, -0.5361328, 0.43774414, -1.9189453, -0.3708496, -1.2958984, -0.9423828, -3.1816406, 1.0664062, 2.1367188, -0.8276367, -0.035247803, -1.9814453, -1.7763672, -4.1210938, -1.7753906, 1.7744141, 0.19494629, 0.7006836, -0.06451416, -3.109375, 0.30395508, 0.00756073, -0.7080078, 0.08074951, 1.9257812, -2.3339844, -0.91503906, -0.14758301, 3.0429688, 0.6953125, 0.52685547, -1.7890625, -1.7148438, -0.03543091, -1.4208984, -1.7197266, 0.17797852, 0.92041016, 0.63916016, 1.1875, -0.6972656, -1.0869141, 3.9433594, 0.4753418, -1.8486328, 1.1660156, 0.8144531, -0.23254395, 2.2363281, -1.0419922, 0.51904297, 1.0302734, 0.14428711, -1.0859375, 4.65625, -0.05456543, 1.21875, -0.6665039, 0.34228516, 0.15686035, -0.6459961, 1.3964844, -0.0076408386, -0.32348633, 1.4765625, -1.8544922, -0.77685547, -0.8774414, -3.09375, -1.6835938, -0.5078125, -1.2021484, -0.30151367, -0.4260254, 1.4140625, 2.9511719, -1.2089844, 1.9052734, 1.4492188, -0.0049209595, -1.1337891, -0.39916992, 1.3046875, 0.8457031, -0.68066406, -2.1132812, -2.1132812, -0.52734375, -0.90527344, -0.7998047, 1.0410156, -0.12084961, -0.77246094, -0.90966797, -0.28857422, 1.0214844, 3.0996094, -0.72558594, 0.19360352, -1.6699219, 0.24230957, 0.55859375, -0.6015625, -0.8979492, 0.05441284, -0.23669434, 0.0037574768, 2.7695312, 3.5292969, -1.4550781, -0.30737305, 0.009643555, 0.88183594, 0.5058594, -2.6621094, 3.0410156, -3.3164062, -1.1318359, -0.16381836, -0.0725708, -3.25, 0.37036133, 2.0078125, 2.1914062, 0.6147461, 2.3417969, 1.6806641, -2.9082031, 1.3242188, 0.13745117, 0.55371094, 0.40673828, 0.20581055, -0.3334961, 3.6074219, 1.0458984, 0.8383789, -1.5302734, 1.2177734, -0.61083984, 0.9995117, -3.3183594, 0.8955078, 0.35375977, 1.5917969, 3.3710938, 1.0751953, 2.2871094, 1.8203125, 0.7182617, 1.7519531, -1.9765625, 2.96875, 0.8833008, 2.1503906, 0.21191406, -0.2902832, -0.90966797, 0.34985352, -1.8496094, -0.8901367, 1.0615234, 1.3261719, -0.08508301, -0.4099121, -1.8808594, -1.1464844, -1.1689453, 1.4199219, -0.1295166, 1.5244141, 0.1673584, 0.9116211, 1.96875, -0.40283203, 0.6430664, 0.67333984, -1.1533203, 1.2783203, -2.3417969, 0.09448242, 0.8022461, 0.56933594, 1.7666016, 2.2402344, -0.35473633, 0.9248047, -0.97314453, -0.43359375, -0.50683594, 0.9995117, 0.7529297, 1.0410156, -1.6943359, -1.3740234, 2.359375, 2.3515625, -0.06335449, 3.1972656, -2.0332031, -0.43139648, -2.0585938, 0.3696289, -0.22961426, -0.9291992, -1.7998047, -2.6796875, 3.1875, -1.8330078, 0.11505127, -2.7207031, 0.2788086, 1.1738281, -0.51953125, 0.89941406, 1.6708984, -0.12988281, 2.9667969, -0.6015625, 1.2832031, 0.53466797, -1.5849609, -0.6245117, -0.90283203, 2.671875, -1.1435547, 0.068481445, -0.51123047, 3.9160156, 1.7587891, 0.9921875, -0.06640625, 0.45239258, -0.17456055, -0.08258057, -0.32910156, -1.7148438, 2.9375, -0.037506104, 1.8369141, 2.6777344, -1.4541016, -0.90185547, 0.64746094, 0.63720703, 2.34375, 0.98779297, 1.1484375, 0.3647461, -2.6679688, -0.110961914, 1.9238281, -0.95703125, 1.3447266, 0.055145264, -1.1396484, 0.20898438, 1.2958984, -0.25952148, -0.78515625, -0.14208984, -0.33862305, 0.3935547, 0.59716797, 0.3371582, -0.921875, 1.0439453, -0.5722656, 2.6074219, 2.6015625, -1.53125, 1.1083984, 0.89990234, -1.2236328, 0.37036133, 1.3505859, 0.6899414, 2.78125, -2.7128906, -3.7714844, -0.66015625, -0.52441406, -0.3449707, 3.5234375, 0.6254883, 1.3603516, 0.5991211, -0.9316406, -2.6425781, -3.0898438, -0.79589844, 0.80078125, -0.6904297, -0.7548828, 0.5131836, -0.16247559, 2.0566406, 1.3046875, -1.6103516, 0.2685547, -0.9941406, 0.7519531, 1.0839844, 1.8085938, 1.2792969, -0.43017578, 2.8085938, 1.4003906, 0.06585693, -2.1054688, 1.8701172, 0.18481445, -0.5493164, -1.1308594, -0.9248047, -1.0488281, 0.35205078, 0.30004883, 2.3515625, 2.046875, -0.57421875, -1.1621094, -2.7539062, -2.9238281]}, "B01LBW7S4Q": {"id": "B01LBW7S4Q", "original": "Brand: Weber\nName: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ\nDescription: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ\nFeatures: \n", "embedding": [-1.4238281, 1.5087891, 0.27514648, -2.2578125, 0.049957275, 2.5800781, 0.36328125, -2.5722656, 1.4013672, 0.3178711, 0.6689453, 2.1015625, -0.43896484, -4.7539062, 1.0576172, 0.8730469, 0.30444336, 0.44067383, -0.038848877, 3.6484375, 2.9785156, 2.2089844, -0.23583984, 1.0732422, 3.2910156, 0.6801758, 3.71875, -3.7167969, 0.37475586, -2.71875, 1.3378906, 0.8613281, -1.2373047, 0.98095703, -2.1328125, 0.60839844, -2.1425781, 0.6323242, -2.3945312, -0.54589844, -0.4128418, -1.1640625, 1.3730469, -1.0947266, -0.8100586, -1.84375, 0.08843994, 0.5444336, -1.4287109, -1.8808594, 1.3652344, 0.87597656, 0.46166992, -0.66503906, -2.0058594, 1.53125, -1.6806641, -2.3164062, 0.95996094, 0.7373047, 3.1347656, -1.2207031, -2.0273438, -2.5878906, 1.5429688, -0.18493652, -0.36791992, 1.0429688, 2.21875, -0.33398438, 3.0019531, 1.3583984, -2.8242188, 1.3164062, -0.28857422, 0.09887695, -1.0214844, 2.3066406, 1.6953125, -1.8964844, -1.0224609, 2.2949219, 0.3881836, -3.2695312, -0.84472656, 1.1699219, -0.60009766, -0.8076172, 3.8574219, 1.2431641, 0.6352539, -0.0960083, -0.8720703, -2.7285156, 1.5556641, -2.2050781, -0.24194336, 2.1914062, -0.77441406, 1.3076172, -0.7246094, -0.053344727, 0.04647827, -0.036376953, -2.6503906, 0.07232666, -0.39453125, -0.40478516, -0.35205078, -2.1875, -3.1738281, 1.1494141, -0.009162903, 0.2446289, 2.296875, 1.765625, 1.0117188, -0.24108887, -0.5214844, -0.35473633, 0.6879883, -0.84765625, 0.9760742, -1.8525391, -0.3173828, 0.6196289, -0.27807617, 2.71875, -0.18603516, -1.8310547, -0.97509766, 0.40307617, 4.0898438, 0.2944336, 1.2539062, -4.2851562, 0.5419922, -1.5976562, -0.47607422, -1.5273438, -1.3789062, 1.8466797, 1.9492188, -1.7783203, -1.4804688, -0.94628906, -0.29882812, -2.7578125, 0.39794922, -0.47094727, -0.030517578, 0.07824707, -2.4882812, -1.5488281, 2.6386719, -0.5151367, -0.49072266, 2.0039062, 1.1679688, 1.7109375, -0.47583008, -1.1279297, 0.34350586, 1.5957031, 0.81152344, -0.45532227, 0.14038086, 0.6875, 0.43969727, 3.0175781, 1.9042969, -0.60595703, 1.4121094, 0.5957031, 1.8203125, -1.1884766, -0.4345703, 1.5068359, 0.1451416, 2.8144531, -0.11047363, -0.67871094, 1.3789062, 0.9213867, 0.73828125, -0.70166016, 0.28979492, 1.5810547, 0.02168274, -0.37182617, 0.4230957, 2.09375, 0.06793213, -0.1706543, 0.46704102, -0.73828125, 0.4140625, -2.0898438, 1.2294922, -1.5869141, -2.5410156, -2.1074219, 0.8071289, 0.16833496, -0.73339844, -2.3925781, -1.3476562, 1.1074219, 0.28637695, 2.4804688, 1.9570312, -1.4726562, 0.49560547, 1.8388672, 0.099121094, -1.4628906, 0.7915039, -1.2548828, 0.20861816, 0.1352539, -1.3867188, 1.0908203, -0.41601562, 3.390625, 1.0253906, 0.43725586, 0.50927734, -0.21801758, -2.4492188, -0.12585449, 3.7265625, 1.8007812, 0.1850586, 1.8300781, -0.9863281, 2.5722656, 1.4277344, -0.34106445, -0.64746094, 0.31420898, 1.6865234, 1.7548828, -2.1230469, -0.72558594, -0.63623047, 1.0791016, -1.640625, 1.3798828, 0.16174316, 0.54052734, 0.4333496, -0.18054199, 0.8696289, -0.6933594, 0.79785156, 0.83203125, -1.9091797, 3.1484375, -2.3691406, -0.34814453, 3.2480469, -0.14111328, -0.6928711, 2.5957031, -0.91796875, -1.6953125, 1.8378906, 1.3535156, -1.2109375, -1.2304688, 1.3681641, 0.49169922, -0.04852295, -3.5136719, 2.7851562, 1.0527344, -1.0292969, 0.234375, -0.3894043, -0.9892578, -0.16784668, 0.83251953, 0.4880371, -3.2734375, 0.9477539, -1.0966797, 0.58740234, -3.2148438, -0.4091797, 1.3076172, 3.5546875, 0.40844727, -2.5507812, 2.4765625, -3.140625, 1.7919922, 0.34960938, 2.0292969, -2.0351562, 1.7216797, 1.3730469, 0.79785156, 1.3115234, 0.41259766, -0.24926758, 0.8823242, 1.4335938, -3.3027344, -1.8652344, 0.4506836, -0.6347656, -0.22717285, -0.25732422, 1.9775391, 0.546875, -1.03125, -2.5449219, -3.3789062, -0.7421875, -3.0957031, 1.8486328, 1.7714844, -1.1064453, 0.4711914, 0.072265625, -0.94921875, -3.0039062, 2.7675781, -0.32348633, 0.70751953, 0.36669922, 2.453125, -0.5751953, -2.9648438, -1.8691406, -1.3925781, -1.5253906, -2.2148438, 1.9902344, -0.42749023, 0.39624023, 0.55615234, -2.2207031, -2.4667969, -0.25927734, -2.5625, -1.2167969, -0.7036133, -2.3789062, -0.5004883, -1.7304688, 0.07299805, -1.2753906, -3.671875, 0.1472168, -2.2011719, 0.85302734, -0.02027893, -1.5966797, 2.234375, -0.4555664, -2.1601562, -1.4355469, 1.25, 2.0957031, -0.23449707, 1.9580078, -1.2070312, -1.3330078, -1.6513672, 0.96191406, -1.046875, 1.6083984, -2.5761719, 0.5625, 1.4121094, -0.13537598, 6.1328125, -0.8178711, 1.4628906, -1.5439453, -0.5253906, 0.87597656, -2.1972656, -0.69091797, -0.28955078, 0.13391113, -0.48486328, -2.3828125, -0.43115234, -1.0742188, -2.2226562, 0.15063477, 0.030685425, 1.3789062, 0.13867188, -1.0751953, -2.0390625, -1.3105469, 0.72558594, -0.7636719, -0.1274414, -2.8945312, -1.2236328, -0.2487793, -1.2324219, 0.15686035, -0.78808594, 1.8652344, 0.19482422, 0.72216797, 0.61083984, -0.3659668, 0.7661133, 1.6689453, -2.2460938, 4.1796875, -0.93652344, -1.1123047, 1.5869141, -0.4560547, -0.23388672, -3.6230469, -0.7861328, 1.9365234, 2.234375, 0.8730469, 1.9423828, 2.4492188, -1.0654297, -0.12963867, -1.53125, 0.6279297, 1.2382812, 2.9277344, 0.7495117, -3.5644531, 1.6357422, -0.0871582, -0.57714844, -0.26953125, -0.6821289, 2.671875, 2.2070312, 0.40112305, 3.4472656, 0.091674805, -0.6347656, 2.65625, 2.1308594, -1.8261719, -0.65283203, 1.5, 1.1298828, -1.0810547, 1.3916016, 0.23181152, 0.39111328, 2.3007812, 3.7714844, 1.1533203, -2.7519531, 1.8955078, -0.875, 2.921875, -1.7236328, 0.27734375, -0.2993164, -1.4833984, -0.49731445, -1.109375, -0.015068054, 0.2211914, -0.19763184, 1.3212891, -1.6728516, -3.0839844, 0.46606445, 1.8427734, 1.5419922, -0.16052246, -0.21728516, -1.9521484, -0.72558594, 1.3164062, -2.4882812, 0.38842773, -3.1210938, 0.76904297, 1.4355469, -3.1933594, -0.90966797, 2.2011719, -2.6191406, -2.4316406, -1.9199219, 1.4726562, -0.70458984, -0.019546509, 0.6586914, 0.3178711, 2.7539062, -2.96875, -0.93408203, 1.4130859, -0.28442383, -3.140625, 0.06951904, -1.9853516, 0.9394531, 1.0966797, -0.5131836, 0.1965332, -0.8779297, -0.04397583, -3.3007812, 0.40942383, 0.7290039, -1.9580078, -0.24987793, 1.2646484, 1.703125, -0.7910156, -1.0898438, 4.5898438, 0.78759766, 1.1904297, 2.9804688, -2.1445312, -0.2614746, -2.3847656, -3.9609375, -0.07678223, 0.19616699, 0.15332031, -0.26293945, 1.5263672, -1.3212891, 1.9023438, 0.9511719, 0.20874023, -1.6464844, -0.24841309, 2.7246094, -0.34521484, 1.8515625, 2.1425781, -2.1113281, -3.2363281, -3.4902344, 0.064941406, -1.2333984, 1.1513672, 1.0322266, -3.3046875, 0.8256836, 3.1210938, 0.9135742, -2.4492188, -0.11437988, 0.16015625, -1.0087891, 1.1669922, 0.10845947, 1.7626953, 1.3417969, -1.5380859, 0.77734375, -0.77783203, 1.859375, -1.8359375, 0.9458008, 1.1025391, 3.4648438, -0.35424805, -0.6464844, 0.6489258, -0.6191406, 0.46557617, -1.1015625, -0.057739258, 2.0351562, -0.8808594, -1.4238281, 1.5224609, 2.8769531, 0.80371094, 0.9863281, -1.5712891, 0.11956787, -0.1899414, -1.4824219, -1.6425781, 0.8432617, 0.37939453, -2.1308594, 0.44921875, -1.7539062, 3.0957031, -0.1875, -0.25756836, -0.14038086, 2.40625, 2.5039062, -0.8046875, 1.4726562, -0.5761719, -1.5429688, -0.30688477, -1.6308594, -1.6777344, 1.0234375, 0.5600586, 0.31982422, -0.29638672, 0.20043945, 0.3466797, 0.29858398, 0.62402344, 0.73339844, -0.94873047, -3.0585938, -2.5976562, -1.1152344, 1.75, -2.1855469, 1.3212891, 2.28125, -0.8803711, -0.4567871, 4.2148438, 1.2128906, -1.1210938, -0.8569336, 0.71533203, 0.2614746, -0.9838867, 3.5449219, 0.66064453, -2.6152344, -0.55566406, -0.88378906, 0.6894531, -1.1748047, 1.4775391, 1.9882812, 0.828125, 0.4128418, -2.9414062, 3.9921875, 0.81591797, 0.5649414, 3.8710938, -0.9213867, -2.9277344, -0.5053711, 2.2050781, -1.3916016, 2.4238281, 0.9458008, -1.8027344, 1.2431641, 0.08685303, -3.3242188, 0.59277344, 2.890625, -1.2988281, 0.77490234, -0.74902344, -0.048095703, 1.3955078, 1.8623047, -1.0449219, 0.40356445, 0.001581192, -0.117492676, -0.028137207, -1.4501953, -2.1210938, 0.22595215, 3.0761719, -1.9941406, -1.09375, 0.91748047, -0.55859375, -1.1367188, -4.015625, -2.4453125, -0.66503906, -0.3605957, 2.8242188, 1.8603516, 0.48950195, -0.47924805, 2.6347656, -1.3330078, -0.8178711, -1.9550781, -0.6801758, -1.6054688, 0.27246094, -0.17114258, -2.59375, -0.16564941, -1.3115234, 0.21887207, -0.13464355, -0.4970703, -0.11779785, -0.5913086, -1.3798828, 1.4462891, -1.5273438, -2.3320312, -2.6074219, -0.23693848, 2.0683594, -0.9868164, 1.2304688, -0.72021484, 1.5917969, 0.5644531, -1.1474609, -0.41137695, 1.8945312, 0.59228516, -1.3300781, -2.1972656, -0.3269043, -0.8022461, -1.4013672, 0.6933594, 2.4921875, -0.4663086, -3.9570312, -0.30566406, -2.1269531, -2.7363281, 0.13476562, 0.828125, -1.2431641, 0.48608398, 1.9111328, 2.2988281, -1.7539062, 3.15625, -4.3085938, -1.3115234, -1.0761719, -2.5957031, 2.8164062, -0.6352539, -1.359375, -0.86328125, 0.34960938, 1.5107422, 1.5214844, -0.9682617, 0.19116211, -1.1464844, 1.7207031, -1.3759766, 2.3652344, 1.3193359, 1.9443359, 1.3681641, 0.06488037, -0.39160156, -1.3857422, -1.1054688, -0.057281494, -2.5742188, -1.4550781, -2.5019531, 1.9990234, -0.34375, -0.26586914, -1.1894531, 1.3847656, 0.35595703, -1.3427734, 1.3515625, -0.38134766, 3.9570312, 1.9453125, -0.5722656, -0.84277344, -1.3603516, 0.20532227, 1.0371094, 0.9350586, -3.1269531, -0.55615234, -0.6923828, -1.2236328, -1.6367188, 2.8554688, 2.0449219, -0.7426758, -1.34375, 1.2783203, 1.9179688, -3.4492188, 0.6123047, 1.1210938, 3.2792969, -2.2089844, 2.1113281, -1.4570312, -1.8369141, 1.0185547, -1.4550781, -0.8613281, 0.5102539, -1.8154297, -1.5214844, 1.7460938, 0.31469727, -1.8251953, -1.7929688, -0.4951172, 3.5761719, -0.19958496, -1.1103516, -0.9916992, 2.8222656, -0.34594727, 1.390625, -1.9873047, 0.09094238, -4.328125, -0.86035156, -1.7207031, 1.2304688, 0.71777344, -2.1699219, 1.6464844, 1.8466797, -0.84472656, -0.43066406, 2, 0.42578125, 0.14624023, 1.5273438, 2.5449219, 1.2861328, 3.5039062, 0.8676758, 0.23046875, 4.5742188, 0.7832031, -1.7226562, 1.1171875, 2.2363281, 1.2285156, 1.8388672, -1.2480469, 0.6743164, 0.890625, 2.3574219, -0.24035645, -1.6845703, 1.9335938, -0.45532227, 1.5869141, -2.1933594, 1.9082031, -3.5136719, -0.3623047, -0.34936523, -0.6303711, -0.17687988, 0.048706055, 0.9067383, 1.296875, 1.1767578, 0.037261963, -1.4912109, 0.90478516, -5.0585938, -1.5878906, 1.7558594, -1.09375, -1.2207031, 2.2480469, 1.6572266, 0.46728516, 1.7841797, 0.9926758, 2.1191406, 0.5942383, 2.046875, -2.4335938, -1.6503906, 1.4287109, 0.94628906, -0.6274414, 0.3269043, 0.15356445, -2.9609375, -3.2050781, -3.0078125, 2.2128906, 0.7939453, 0.70166016, 1.1367188, -0.72021484, 2.8828125, 0.96240234, 0.72753906, -0.7368164, 0.6123047, 0.3251953, -0.42260742, 0.17773438, 0.90527344, 1.9570312, 0.59375, -1.1923828, -0.4675293, 0.015617371, 0.3408203, 1.2548828, 1.1884766, 0.0970459, 0.82373047, 0.62060547, -1.1582031, 1.4492188, -1.2705078, -0.44018555, -1.21875, 1.0908203, 1.4501953, 1.3916016, -0.41845703, -0.6298828, -1.1591797, -0.60791016, -0.49023438, 2.2949219, -0.28857422, -0.2685547, 1.7285156, 1.7109375, -2.9746094, -0.5444336, -0.3166504, 2.9101562, 2.9667969, 4, 3.0214844, -3.0800781, 0.3942871, -0.2919922, 1.4150391, -0.88134766, 0.13439941, 0.66552734, 1.8525391, 0.7871094, 3.1953125, 0.8803711, -0.14074707, -2, 0.6298828, -0.004207611, 0.059265137, -0.87402344, -1.2519531, -1.1708984, -3.4453125, 3.140625, 1.3476562, 0.012016296, 2.0410156, -0.42504883, -0.8666992, -1.9404297, -2.3984375, -3.5683594, -1.0830078, -1.9941406, 0.48388672, 4.90625, -0.6796875, 1.7949219, -0.55810547, -2.5214844, 2.1796875, -2.5175781, 0.2722168, -3.1933594, -1.2050781, -1.0175781, -1.2207031, 0.8769531, 0.4921875, -1.2070312, -2.8925781, -5.4492188, 1.6484375, 1.0615234, 1.9707031, -1.9287109, 1.234375, 3.8730469, 1.6953125, 2.3632812, 2.203125, -0.055541992, 2.8046875, 2.1660156, -1.8730469, 0.9086914, 0.3869629, 3.9785156, -1.8876953, -0.21447754, -0.98291016, 1.4130859, 0.5, 2.46875, -2.7167969]}, "B08XYJ7YQV": {"id": "B08XYJ7YQV", "original": "Brand: Flame King\nName: Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-2.3632812, 1.5292969, 2.3339844, 0.43041992, 0.54833984, -2.2792969, -0.22595215, 0.43041992, 1.9541016, -1.2607422, 1.4775391, 0.5517578, -0.17980957, -4.0117188, 1.7861328, 1.4521484, -0.66552734, 2.2402344, 1.0253906, -0.023635864, 2.1289062, 1.0742188, -1.0742188, -0.8779297, -0.06390381, -0.96533203, 2.8867188, -3.2519531, -0.60546875, -0.26367188, 0.58154297, -0.0016860962, -0.45776367, 2.3828125, -0.6376953, -0.67089844, 0.60302734, -1.4902344, -4.84375, -0.32714844, -2.3222656, -0.6689453, 1.5107422, -0.8725586, -1.6679688, -1.2480469, 0.1652832, -2.0878906, -0.16308594, -0.20581055, 1.3457031, 2.6171875, -0.33642578, 1.1728516, 1.0908203, 1.3710938, 0.9941406, -2.65625, 0.6040039, 0.51171875, 1.5976562, -0.12286377, -3.4277344, 2.5957031, -0.95654297, 0.7729492, 0.9033203, -0.50390625, 0.94970703, 1.6591797, 0.74902344, 0.7104492, 2.0449219, -0.92285156, -0.6142578, 1.2822266, -3.4667969, 0.66015625, 0.00012409687, 1.0146484, 0.10192871, 2.8886719, -0.14257812, -3.3613281, -1.3574219, -0.9379883, 0.6489258, 0.69628906, 0.19506836, -0.30810547, -1.9550781, 2.1503906, -0.30322266, -4.3164062, 2.359375, 0.6274414, 2.7578125, 2.6855469, 2.5820312, 0.027008057, 0.57177734, 0.14257812, 0.18273926, 1.1132812, -1.8857422, -1.71875, 1.2255859, 1.5615234, -2.3164062, 1.2998047, -0.23400879, -1.2519531, 1.5214844, -0.7832031, 0.009597778, 0.13342285, 0.19787598, 1.6962891, 0.953125, -1.1884766, 3.5234375, -2.8886719, 2.7226562, -0.86279297, 2.3105469, 1.3447266, -0.7993164, 0.09063721, 5.6132812, -0.17883301, 1.6396484, 0.0579834, 4.1992188, -1.5214844, 0.2199707, -2.4960938, -0.3425293, -2.3339844, -1.8525391, -1.3535156, -4.3476562, -0.61035156, 1.2001953, -0.43017578, -2.7578125, -0.80078125, -1.3925781, 0.7495117, -0.79541016, -2.0878906, 1.7109375, -1.3144531, 1.453125, -1.7119141, 2.7148438, 1.2529297, -1.8701172, -3.1953125, 0.31030273, 1.5527344, 1.9423828, 0.5605469, 0.14465332, 1.046875, -0.59716797, -2.6113281, 0.36645508, -0.14758301, -1.4121094, 2.0371094, -1.0195312, -2.0742188, -0.72021484, 1.5849609, -0.31201172, -0.24414062, 1.2529297, 0.7128906, 0.73828125, -0.18920898, -3.9160156, 0.65185547, -0.48657227, -2.1855469, 1.6552734, 0.5576172, -0.26367188, -1.4570312, 1.5419922, -0.43847656, -2.0566406, 1.9960938, -2.171875, 0.5605469, -0.68847656, -1.5693359, -4.5664062, -2.4453125, 0.8466797, 1.65625, 0.84277344, -1.2470703, 1.0107422, -0.15625, -1.7402344, -1.6835938, -0.30297852, -0.70654297, 2.046875, 0.057006836, -0.3725586, 0.47973633, 1.96875, -2.1289062, -1.6367188, -2.6953125, -1.1894531, 2.4472656, 1.6582031, 0.65722656, 1.2226562, 0.039031982, 1.5966797, 0.9873047, 1.3603516, 0.30639648, 1.6435547, 2.2597656, -3.8417969, -2.1640625, 1.7617188, 1.25, -0.30615234, 0.3461914, -1.8740234, 0.9946289, -0.30664062, -1.3720703, 0.92626953, 1.0019531, 0.07330322, 0.1887207, -0.40893555, 0.7451172, -1.7763672, -0.13574219, 1.2792969, 1.2949219, -0.28564453, -0.25195312, 0.6254883, -0.5209961, -1.0214844, -0.94189453, -0.58447266, 0.3413086, 1.5273438, 0.47998047, 0.9267578, -1.5537109, 1.71875, -2.0019531, -1.2216797, 2.15625, -2.0097656, 0.29052734, 1.5830078, -0.2932129, -2.3359375, 0.8613281, -1.9072266, 1.0507812, 1.8242188, -0.48583984, 0.7348633, 2.3515625, -1.109375, 3.1074219, -1.3408203, 1.6113281, -0.37109375, -0.7998047, 1.0458984, -1.9228516, 0.52246094, -0.18847656, 0.117492676, -0.38549805, -2.8066406, 0.23608398, 3.9550781, -1.4677734, -2.7109375, 1.7119141, 1.0292969, 1.2021484, 3.3457031, -0.47338867, 1.2021484, 0.51123047, 0.8544922, 0.33789062, -1.8652344, -0.01586914, -0.55078125, -0.8803711, 0.68603516, -0.73583984, -0.20678711, -0.0592041, -1.2578125, 0.2734375, -1.2822266, 0.4465332, 0.9428711, -0.89453125, 3.2539062, -3.0644531, 1.8613281, 1.3583984, 0.19372559, 1.9453125, 1.0537109, -1.1894531, -0.81152344, 0.84472656, -0.6035156, 2.0625, -0.60302734, 1.1279297, -0.09863281, -1.7998047, -0.5776367, -1.1982422, -0.7314453, 0.3642578, -1.1464844, -2.6699219, -0.671875, -2.8886719, 0.20214844, 0.2861328, -0.67285156, 1.4619141, 0.9892578, -1.40625, -0.38964844, -0.12231445, 0.06774902, -2.0664062, 1.6845703, 4.4453125, -0.56347656, -1.7333984, 1.9306641, -0.032287598, 1.0039062, 2.7109375, -0.6591797, -1.1953125, 0.13598633, -0.49194336, 0.3388672, -0.50878906, -0.28149414, -2.9492188, 1.2177734, -2.0664062, 2.1621094, -0.034454346, 0.36132812, -0.9277344, -0.12939453, -0.6254883, -2.7949219, -0.50927734, -2.1484375, 0.04135132, 0.7944336, 1.8339844, -2.0351562, -1.296875, 0.68359375, -1.1708984, -0.64990234, 0.5859375, 0.94433594, -1.96875, -2.1152344, -4.7773438, -0.46142578, -1.7773438, 0.0501709, -0.5986328, 0.042297363, -1.4326172, 0.9165039, 0.79785156, 0.68896484, -0.0043258667, -0.056610107, -0.69677734, -3.5585938, -0.17480469, -0.3461914, 0.54296875, -1.8134766, -1.6074219, 0.0690918, -1.2373047, -0.33984375, 0.9848633, -0.048217773, 2.0644531, 1.3359375, -3.7324219, 1.8222656, 1.3896484, 0.5083008, 3.0488281, -2.0703125, -0.59277344, -2.0019531, -0.23461914, 4.9492188, 1.0097656, 0.96240234, 0.6933594, -1.5986328, 0.6616211, -0.6796875, -0.80615234, 1.1523438, 0.21875, 3.7519531, -0.9628906, 0.14294434, 0.8027344, 1.6669922, -3.7890625, -0.765625, 1.1425781, -1.109375, 1.9130859, 0.4584961, -0.084106445, 0.44482422, 0.6357422, 1.6386719, 2.7167969, 0.75683594, -0.1496582, -1.4111328, -0.39819336, -0.5517578, -0.14416504, 4.2578125, -0.5629883, 0.6821289, 2.1757812, 0.40698242, 0.02758789, -0.7861328, -0.0045394897, 0.32543945, 1.7158203, 0.9580078, -0.55029297, 0.48120117, -1.8212891, -0.08428955, -0.3388672, -1.1474609, 1.7128906, 1.5, 0.6713867, 0.4765625, -1.1074219, -0.5673828, -0.9160156, -1.3134766, 4.2695312, -1.6904297, 2.1679688, -0.0024700165, -1.8046875, 1.0439453, -3.4335938, 2.5625, 0.52978516, 1.3623047, -0.33520508, 0.9248047, -1.40625, -3.9785156, 0.84814453, -1.2802734, -0.8935547, 2.2792969, 0.18652344, -3.3652344, 0.6665039, -1.7753906, 0.6904297, 1.1699219, -2.7421875, 1.3867188, 0.5488281, 0.7373047, -1.1621094, -0.42211914, 1.7216797, 1.4404297, -1.6025391, 0.53515625, -1.8691406, 1.0576172, 0.5888672, 1.1328125, -1.0546875, 0.19543457, -0.5576172, 1.6435547, -0.9506836, 3.171875, 0.13903809, 1.4833984, 1.6123047, -1.4980469, -0.019958496, -0.60595703, -3.3984375, 1.0146484, -2.1445312, -1.3945312, 0.7182617, -0.5288086, -0.22363281, -1.1298828, 0.6166992, -0.98535156, -1.3671875, -0.4802246, 2.5820312, -2.4746094, -0.24645996, -0.01802063, 1.5253906, -2.3144531, -2.7871094, -0.02796936, -0.99072266, -0.45385742, 0.9194336, -1.3535156, -0.16772461, 0.98046875, -1.2519531, 0.008888245, -1.2841797, 1.7958984, -0.14404297, -1.2617188, -1.9755859, 1.7060547, 2.0898438, 0.5649414, 1.7939453, 2.0292969, 0.65478516, 0.07287598, -0.9975586, -0.19714355, 1.0566406, 0.6616211, -4.2890625, -2.7207031, -0.77978516, 0.66015625, -3, 1.2275391, -0.9379883, 1.0585938, 2.578125, 0.15307617, 1.9882812, 1.9365234, 0.35742188, -0.7163086, 1.6699219, 1.5478516, -0.5942383, 0.27148438, -1.8808594, -1.0136719, -0.91503906, 2.71875, -1.9316406, -1.4619141, -2.1347656, 1.1816406, -4.0664062, 0.76464844, 2.2558594, 2.7441406, -0.3857422, -1.6503906, 0.029678345, 0.91748047, -0.80322266, -0.3317871, 0.21362305, -0.91748047, -1.3691406, 1.2480469, 1.5019531, -0.6113281, 0.73535156, 1.4355469, 0.22509766, -1.2021484, 0.51904297, 0.5751953, -1.8876953, 1.4404297, 0.029388428, 0.76660156, 3.1191406, -1.5722656, 0.32739258, 1.8271484, 0.08514404, -0.3803711, 1.203125, -0.43310547, 1.2792969, 2.0351562, 0.3466797, 1.2802734, 3.265625, 1.8945312, -0.48583984, 1.7460938, -2.0722656, 0.43286133, -0.06713867, 1.109375, -2.5820312, 1.0410156, 2.4902344, 1.5175781, -1.2929688, 1.0244141, 0.39013672, -1.3417969, 1.2773438, 1.1884766, -2.9160156, -3.3554688, -1.5712891, -0.14379883, 3.6679688, -1.0126953, -1.9833984, -0.2409668, 3.6542969, -0.63623047, 0.9707031, 0.17468262, -0.13928223, -1.0615234, -1.8623047, -2.0019531, -1.40625, 0.88964844, 0.82714844, -0.058624268, 0.50927734, -0.9868164, 0.24206543, -1.2089844, 1.5117188, 0.54833984, -0.46850586, -1.3134766, 0.058929443, 0.5708008, 0.5756836, -0.3605957, -0.36669922, -0.6064453, -0.5283203, 0.31274414, -1.3662109, 1.7246094, -0.6376953, -1.0048828, -2.3398438, 0.6542969, -0.47192383, -0.7583008, 3.5117188, -2.1191406, 2.4882812, -0.25805664, 0.63427734, -0.82421875, 1.8369141, 1.7041016, -0.63671875, 0.98876953, 0.8847656, -3.2148438, -4.5742188, -3.0957031, -0.8120117, -0.059936523, -0.44848633, -2.1054688, -1.5009766, -0.8691406, -0.6923828, -1.5595703, -1.6035156, 0.14746094, 0.12976074, -0.8041992, -0.7553711, 1.5146484, -0.28564453, 0.6958008, 2.125, -1.8779297, -0.59521484, -2.3261719, -0.9819336, 1.5927734, -1.0634766, 0.19726562, 0.58496094, -1.8974609, 0.58447266, 1.2373047, -0.3959961, -3.9160156, 1.8339844, -2.25, -0.7734375, 1.6943359, -2.578125, -1.3623047, 1.1279297, -0.54052734, 1.5917969, 2.46875, 1.2685547, -2.5664062, -1.4765625, -0.8051758, 1.7402344, -0.9638672, 0.859375, 1.7236328, 2.5507812, -0.0071907043, 1.5400391, -1.7080078, -1.0722656, -2.03125, -1.6289062, 0.5004883, -1.2558594, 0.80029297, 0.3244629, 0.6586914, -0.5649414, -0.7553711, -0.3088379, -0.3425293, -1.4443359, -1.609375, 3.1777344, -2.1503906, 3.6582031, 2.4160156, -1.7607422, -1.2587891, -0.6689453, 0.3154297, 0.20874023, -2.1269531, -1.2119141, 1.1289062, 0.95458984, 1.9326172, -0.59472656, 2.0625, -1.6484375, 1.0732422, -0.5097656, 0.46435547, 3.4375, -0.98535156, 2.0019531, 0.9433594, -2.2539062, 0.9560547, 1.9960938, 2.5332031, -1.4960938, 0.35546875, 0.39086914, -0.36108398, -0.48901367, -0.53515625, 0.63427734, -2.8183594, -1.5869141, 0.98828125, -0.9916992, -4.1953125, 0.91748047, -0.17150879, -0.9863281, -0.030807495, 0.026977539, -0.5751953, -0.7661133, 1.9111328, -0.31982422, -1.9433594, 0.053894043, 1.5283203, 0.15844727, 0.51171875, -1.5703125, 0.87890625, 0.72314453, 0.41308594, -0.3395996, 0.64990234, -2.5859375, 2.8691406, 0.88720703, 2.546875, 1.9716797, -0.9707031, 1.9736328, -0.6166992, 2.5292969, 3.4414062, 0.79345703, 1.3115234, -0.71533203, 1.1201172, 0.59277344, -1.4462891, 0.61621094, -0.22277832, 2.4238281, -0.69921875, 0.4296875, 1.7265625, -0.49536133, 0.82666016, -0.94433594, -0.66796875, -0.6279297, 1.2216797, -1.1376953, -0.96777344, 0.8745117, 0.85595703, 1.6210938, 0.0869751, 0.82470703, -0.2253418, 1.21875, 1.8623047, -0.06286621, -1.1416016, -1.03125, -2.2128906, 0.3942871, 2.3984375, 0.83740234, 0.7421875, 0.042175293, -1.6445312, -0.1850586, 0.94677734, -1.4619141, -1.5078125, 1.8388672, 0.3347168, 1.6806641, 2.1835938, -1.3154297, 4.0625, 1.6728516, -0.27490234, -3.6953125, 3.2617188, -1.6630859, -0.8417969, 0.42407227, -2.2792969, 1.2353516, -0.7138672, 0.14758301, -4.1640625, 1.7685547, 0.60009766, -0.5253906, 2.6582031, 0.57714844, -0.70410156, 2.4316406, 1.8876953, 0.3720703, 0.64746094, 0.14331055, 1, -0.11505127, 1.7285156, 0.7885742, -0.4152832, -0.83154297, 3.3925781, 1.0351562, -0.79296875, -1.2138672, 1.3505859, -0.15307617, 1.5117188, 0.066589355, -0.8769531, 1.7841797, 1.5419922, 1.1503906, 0.38330078, -1.3017578, -0.30859375, -1.8730469, -1.6640625, 1.1289062, -2.546875, -0.061950684, 2.0878906, -1.3574219, -2.5449219, 3.9785156, -0.4013672, -0.024765015, -0.3564453, -1.8710938, -1.5751953, 0.20483398, 1.2275391, -2.0761719, 0.29858398, 0.043273926, 2.5898438, -1.1074219, -1.8876953, -1.6142578, 0.5708008, -0.0072364807, -1.921875, 2.2988281, -0.89746094, 0.17260742, 1.4775391, -0.72314453, 1.2714844, 1.8427734, 0.5595703, 1.7910156, -1.0166016, -0.18041992, -0.27783203, 0.67822266, -1.3613281, -1.7167969, 0.5996094, 1.7626953, -0.42260742, -0.5395508, -3.5097656, -1.3486328, -0.8286133, 0.25585938, -0.57714844, -0.8564453, 1.1347656, 0.7832031, 0.5126953, -0.7763672, 0.72216797, 0.09490967, 0.8535156, 1.9814453, -0.8696289, 0.40820312, -0.86279297, -0.006126404, -0.82910156, 2.6210938, 2.2460938, -0.13989258, -0.46118164, 1.8554688, -1.8613281, 1.0263672, -0.08795166, -0.58740234, -0.17932129, 1.3876953, 1.5966797, 3.6953125, 1.7158203, -0.40576172, -1.2929688, -1.0029297]}, "B07CB4CV56": {"id": "B07CB4CV56", "original": "Brand: Kbrotech\nName: Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass)\nDescription: \nFeatures: The LPG adapter has any camping propane small tank input and a lindal value output.\nThe LPG adapter simply threads into the camping propane canister and your stove or stove's input end threads onto the LPG adapter.\nConvert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder\nThe Lindal Value Output is Auo-closed when it is not connected to the stove\nHigh quality 100% solid brass construction makes it corrosion resistant\n", "embedding": [0.2175293, 0.031829834, 2.515625, 1.8730469, -0.7998047, -0.29882812, -0.6816406, 0.77001953, 0.77246094, 1.2939453, 2.0507812, -0.8911133, 0.8413086, -4.1015625, 1.5419922, 0.3918457, 0.17285156, 0.51123047, 0.76464844, -0.7138672, 2.8085938, 0.31884766, -0.09661865, 0.5522461, 1.421875, 0.79833984, 4.6328125, -2.4316406, -0.42529297, -1.8857422, -0.01676941, -0.45043945, -1.4921875, 1.7246094, -1.6113281, -0.63378906, -1.6269531, 0.63378906, -4.5742188, -1.3916016, -1.6113281, 0.1772461, 1.9775391, 0.09765625, -3.7382812, -2.5058594, -0.46728516, 0.32373047, 0.70703125, 2.3828125, 1.2666016, 2.5644531, -1.3847656, 1.5126953, -2.1171875, -0.24780273, 1.0859375, -1.1142578, 1.1611328, -0.72021484, 0.8911133, 0.06097412, -0.9121094, 3.2070312, -0.29174805, 1.2578125, -2.046875, -2.4628906, 0.10211182, 0.6699219, 1.7822266, 0.9555664, 0.77783203, -1.2421875, -0.98876953, 0.5097656, -3.6425781, -0.5800781, 1.1357422, -0.73779297, -1.4423828, 2.1601562, 1.03125, -1.4921875, 0.36279297, -0.39746094, -1.8681641, 1.1601562, 0.90185547, -0.6308594, -0.8901367, 1.1279297, -0.30566406, -2.9863281, 0.68847656, -1.25, 1.1835938, 1.0146484, 2.3867188, 0.9248047, -1.5097656, 0.26123047, 0.7348633, -1.4638672, -1.1367188, 0.74121094, 1.2236328, 2.5234375, -2.6621094, -0.2746582, -1.2158203, -0.69873047, 3.1054688, 0.16455078, -0.5161133, 0.07891846, -1.9101562, -0.94677734, 2.4667969, 1.0253906, 5.1640625, 0.11065674, 2.1503906, -1.4091797, 0.9291992, 0.70703125, -0.75927734, -0.56591797, 1.6074219, 2.9199219, 0.5942383, 0.038330078, 3.3320312, -2.7070312, 0.22485352, -2.4746094, -1.7275391, -1.2919922, -0.88623047, -1.0791016, -3, -0.07928467, 1.4199219, -0.4741211, -4.2304688, -0.7270508, -1.3681641, 1.8691406, -0.16357422, -1.1738281, 1.0126953, -1.9628906, 0.96777344, 0.81347656, 2.9824219, 2.3359375, -2.2324219, -1.4306641, 1.3642578, 2.0019531, 0.28344727, -0.59814453, 0.734375, 1.8076172, -2.1757812, -2.5292969, 0.25048828, -0.019454956, -0.7441406, 0.7080078, 0.77246094, -1.6708984, 0.9902344, 0.014053345, -1.0947266, -2.5605469, 0.77197266, 2.6113281, 0.28930664, 1.5644531, -3.8652344, -3.1347656, 0.6303711, -0.57177734, 1.6279297, -0.24536133, -0.14526367, -0.92822266, 1.0478516, -1.6875, -2.0429688, 2.4453125, -1.0947266, -0.6166992, -0.5859375, -2.7089844, -2.6621094, -0.6816406, -0.20483398, 0.921875, -0.46923828, -0.87353516, 0.00957489, -0.10662842, -0.8774414, -0.87597656, 2.0214844, -2.1523438, -0.3779297, 2.8925781, 0.27026367, 1.2802734, 2.5996094, -1.7841797, -0.48388672, -1.8857422, 2.2089844, 1.8642578, 3.0566406, 0.79785156, 2.515625, -0.6245117, 0.8491211, 0.81152344, 0.9941406, 0.68066406, 0.17687988, 0.7680664, -2.8046875, -0.3857422, 3.6347656, 0.9741211, 0.93652344, -0.33813477, -0.59472656, 2.6621094, 0.34545898, -0.7470703, 1.4619141, 0.8041992, 0.05822754, -1.5302734, 2.3359375, -1.2382812, -0.82910156, -1.3359375, -0.52734375, 0.58740234, 2.5507812, -0.49438477, 1.3779297, -0.31201172, -1.0859375, -0.46240234, -1.1240234, 0.47045898, 1.078125, 1.2275391, -0.5493164, -1.375, 2.0878906, -1.5605469, 0.5292969, 1.1787109, 1.2617188, 1.1435547, 2.3574219, -0.33984375, 0.0051612854, 0.94677734, -0.8852539, 2.7128906, 2.8378906, -1.5351562, 1.5488281, 0.28344727, -0.21850586, 1.7001953, 0.12109375, 2.2265625, -0.24597168, -1.8388672, 2.2734375, -2.9882812, 0.9716797, 1.1708984, 0.6855469, -0.72998047, -3.1953125, -1.0878906, 4.5546875, -2.0332031, -1.9804688, 2.4960938, 0.8027344, 1.1787109, 0.9086914, -1.34375, 0.19055176, -1.2851562, -0.81396484, -0.08087158, 0.16772461, 1.4052734, 0.7519531, -0.26171875, -1.2060547, -1.2890625, 0.91845703, 1.6171875, -1.3710938, 0.64990234, -3.2089844, 0.44848633, -0.16235352, -1.7207031, 3.4960938, -2.7089844, 0.44628906, 0.58447266, -1.5488281, 0.8911133, 1.2314453, -2.0976562, 0.48706055, -0.49145508, -0.953125, 1.2021484, -0.16552734, 2.3007812, 0.039764404, -1.2617188, 0.8022461, -0.54296875, -1.3417969, 0.34155273, 0.076049805, -3.3261719, -0.61865234, -0.9916992, -0.62597656, 1.3857422, 0.70947266, 3.125, 0.6738281, -1.2568359, -1.1738281, 0.43579102, -0.44677734, -2.4140625, 0.8417969, 2.9296875, -1.6318359, -4.8125, 0.29956055, -1.1152344, 0.78125, -0.62158203, -0.99121094, 1.5195312, -0.7470703, -0.53515625, -0.89990234, 0.8623047, -0.13586426, -2.5507812, 2.9160156, -2.8808594, 0.5913086, -1.3017578, 1.7919922, -1.7001953, -0.031799316, -0.52734375, -1.5341797, -1.9677734, 0.7192383, 4.140625, -1.7568359, 0.35131836, -1.7919922, -0.034423828, -0.30151367, -0.5522461, -3.8417969, -0.17443848, -1.6220703, -0.24475098, 0.15197754, -4.1640625, 1.046875, -1.2089844, -0.34033203, -1.2802734, -0.72314453, -0.07342529, -0.31079102, 0.5209961, 0.55029297, -0.23413086, -0.9628906, -0.19494629, -0.16589355, 0.009178162, -0.119140625, -0.6689453, -0.14697266, 0.41210938, -0.26123047, -0.66259766, -1.2451172, -0.087768555, 0.7368164, 1.7470703, -0.0234375, -3.8007812, 1.5419922, 0.14868164, -2.0878906, 2.46875, 0.092163086, 0.10534668, -2.1777344, 0.044830322, 3.2167969, 1.9980469, 6.3359375, 0.3881836, 0.21618652, 0.81396484, 2.5625, -0.54296875, -1.28125, -0.6333008, 3.0820312, -1.9824219, -0.6635742, -0.15600586, -0.076538086, -2.6855469, 0.1899414, 0.53027344, 1.5761719, 4.1328125, -1.4140625, 1.0634766, -0.40625, -0.043518066, 0.6748047, 2.4335938, 0.9370117, 1.5859375, 0.045532227, 0.47583008, 0.875, -0.60498047, 0.10247803, 1.1894531, -0.12792969, 3.0234375, 2.9023438, -0.93847656, 1.0292969, -1.8808594, -1.1162109, -1.3037109, 1.5957031, 0.19567871, -0.25317383, -0.89208984, 0.6430664, 1.1875, -1.8916016, 1.2041016, 2.1230469, 1.1972656, 0.14465332, 0.7001953, -1.3574219, 0.34692383, -0.23925781, 0.6015625, 1.0292969, -0.03640747, 0.004261017, -0.51220703, 0.08520508, -0.38134766, 0.99365234, -1.0439453, 0.6254883, 0.67333984, -0.03842163, -0.15368652, -2.9394531, -1.1552734, -0.060546875, 0.5917969, 1.2480469, 0.24572754, -1.3535156, 0.77783203, 0.44921875, 0.58447266, 2.8925781, -2.0507812, -1.1806641, -2.2265625, 1.4228516, 0.7348633, 0.83154297, 1.7197266, -0.19592285, -2.3378906, -1.9130859, -2.3964844, -0.5854492, -2.2832031, -1.1367188, 0.45239258, -0.5722656, -0.30981445, 1.5839844, -0.62939453, 1.7207031, -0.94091797, -0.13806152, 1.8046875, -2.3554688, -0.33032227, -2.0585938, -4.1796875, 1.9140625, 0.8339844, 0.42138672, -0.5229492, 1.1875, -0.8823242, 0.21044922, 2.2792969, -3.5703125, -2.96875, -0.9433594, 2.2382812, -1.8271484, 0.120788574, 0.22998047, 1.8710938, -0.85546875, -1.7792969, 0.2298584, -1.9111328, -0.8276367, -1.0449219, -2.1796875, 0.8564453, 0.41455078, -1.0771484, -2.2070312, -3.1074219, 2.4121094, -0.3095703, -0.31640625, -1.75, 2.0175781, 1.7666016, 0.6948242, 1.3583984, 2.9316406, 2.4140625, -0.47460938, -1.2060547, -0.066589355, 1.8310547, 0.3774414, -3.0507812, -1.9628906, -0.52685547, -1.6962891, 0.9614258, -0.38354492, -1.3789062, -0.8613281, 1.4746094, 1.3564453, -0.023040771, 1.703125, -1.5068359, 0.3720703, 2.2207031, 0.10394287, -1.5019531, -0.62597656, -0.19372559, -0.4362793, -1.3496094, 1.4560547, 0.15942383, 2.3203125, 0.55566406, -1.5097656, -3.3105469, -0.45898438, 2.765625, 0.87890625, 0.74853516, -2.6132812, -1.1601562, 0.09680176, 1.2666016, 0.0982666, 0.73828125, -0.71533203, 0.16137695, 0.9580078, 2.0585938, -0.14929199, -0.7207031, -0.11584473, -0.16296387, -1.1708984, 0.005706787, 1.3017578, -2.0195312, 0.57421875, -0.2475586, -1.2099609, 2.6523438, 0.46655273, 0.75146484, -1.3759766, -0.29589844, -1.796875, 0.5644531, 0.7441406, 0.8149414, 0.6425781, 0.46655273, 3.3105469, 0.88720703, 0.9902344, 0.7597656, 1.6494141, -2.6738281, -0.43579102, 0.44506836, 1.6044922, -1.7773438, 1.4511719, 3.421875, 0.77685547, 0.7685547, 2.1640625, 2.2734375, -0.64697266, 1.7900391, 0.7519531, -0.45166016, -1.484375, -1.0224609, -2.4492188, 2.8925781, -2.0234375, -2.09375, -0.94921875, 2.6464844, -0.8564453, 1.7226562, 1.1367188, 0.49438477, -1.0927734, -3.8574219, -1.2617188, -1.4980469, -0.24902344, 1.0175781, 0.46826172, -0.028533936, 3.3515625, 1.0302734, 1.1044922, -0.61083984, -2.7011719, 1.1396484, 1.0869141, -2.5507812, -0.9169922, -1.1416016, -2.8769531, -0.9951172, 0.49438477, 0.6386719, 0.08215332, -0.3059082, 1.8691406, -1.2294922, -0.7133789, -0.56884766, -0.5522461, -3.1835938, 0.33666992, 1.5957031, 0.88720703, -0.97558594, -1.0810547, -0.47021484, -0.35888672, 2.9179688, -0.6645508, 0.3642578, -2.2832031, 1.9794922, -2.7324219, -4.390625, -0.68847656, -1.1992188, 1.4804688, 0.6196289, -1.6455078, -0.71435547, -0.48706055, -1.9189453, -0.43945312, -3.3574219, 1.2578125, -1.2958984, -0.42626953, 1.2724609, -0.027999878, 0.6503906, -0.31103516, 0.9082031, 0.13134766, -0.59033203, -2.96875, -1.8486328, 2.9921875, 0.5205078, -0.36499023, -1.6513672, 0.2734375, 1.1943359, -0.6699219, 2.25, -3.5136719, 1.6015625, -0.37719727, 0.40844727, 0.92578125, -1.0488281, 0.26660156, 2.2109375, -1.2695312, 1.796875, 2.6796875, 1.5908203, -1.5722656, -0.39501953, -0.31420898, -1.3632812, 1.0351562, 0.6401367, 2.3515625, 0.09790039, 1.2333984, 2.0742188, -0.48095703, 0.48461914, -1.9794922, -2.1054688, -1.2451172, -0.4140625, 2.7089844, -0.5131836, 1.4130859, -0.6748047, -1.3330078, -1.1972656, 0.33764648, -1.1181641, 0.16967773, 1.6601562, -3.3027344, 3.1992188, 0.12634277, -0.91796875, -1.5078125, -1.8955078, 1.4853516, -0.12634277, -1.0839844, -1.0048828, 2.7011719, -0.6323242, 2.4628906, -0.17211914, 2.6855469, 0.1907959, -0.105651855, -1.6875, 2.3652344, 1.8447266, -0.6611328, 1.0507812, 0.36645508, -0.02003479, 0.055480957, 2.6074219, 0.26660156, -1.9033203, 1.1503906, -1.5576172, 0.9711914, -1.5205078, -0.69677734, 0.1385498, -3.8027344, 0.47973633, 0.49267578, -1.5029297, 0.032073975, 2.8710938, 0.8798828, -0.06689453, 1.2802734, 1.7080078, -1.8808594, -0.45996094, 0.4194336, 1.6035156, -2.7128906, 0.07714844, 0.1907959, 1.2236328, 0.08874512, -1.7099609, 1.359375, 0.7211914, 2.6484375, 0.06008911, 1.4697266, 0.59375, 1.8564453, 0.91308594, 2.0488281, 0.6201172, 1.3349609, 2.7265625, -0.19763184, 0.8598633, 2.3378906, -0.08782959, 0.12817383, 0.3527832, -1.6445312, -0.14025879, -1.4267578, -0.77246094, -1.5693359, -1.515625, -0.34716797, -1.5175781, -0.6791992, -1.8886719, -0.30444336, -0.98779297, 0.25341797, -1.6289062, 0.47094727, -0.2043457, 0.047424316, 0.09399414, 0.6425781, 0.7626953, 0.89941406, 0.5332031, 0.6455078, 0.16699219, 1.3984375, 0.2993164, -0.3659668, -3.8652344, -1.8632812, -1.3857422, 2.296875, 0.53125, 1.2128906, 0.019989014, 2.578125, 1.6035156, -0.31958008, 1.4257812, -0.71191406, 1.2275391, 1.8681641, 2.2695312, 0.037109375, -1.0449219, 2.2089844, 1.6152344, -3.5898438, -2.0253906, 0.6972656, 0.28564453, 1.0224609, -0.76464844, -2.9511719, 1.9677734, -2.5410156, 0.4621582, -2.6699219, 0.055389404, 1.7578125, -0.13647461, -0.50390625, 0.6308594, 0.085998535, 0.9169922, 1.1318359, -1.484375, 2.2675781, 1.2490234, 1.8164062, 0.28564453, 0.69384766, 0.14343262, 2.1640625, -1.2109375, 3.1894531, 0.6933594, -1.0341797, -0.030136108, 3.5253906, 3.3710938, 1.4736328, -1.5107422, -0.28710938, 1.7822266, 0.7441406, 1.6806641, -1.4287109, -1.0517578, -1.2695312, -0.76953125, -1.1152344, 0.016021729, -0.61572266, 0.30273438, 0.39501953, 0.36523438, -0.07147217, 0.12695312, -1.7207031, 0.1385498, -0.58935547, -1.4726562, -0.19506836, -0.01473999, 1.3134766, -2.1289062, 0.35791016, -1.0273438, 0.83691406, 1.0419922, -2.7890625, 0.49365234, -1.5751953, -0.6401367, -0.109191895, 0.19836426, -0.1005249, -1.1738281, -1.0166016, -2.3671875, 0.85009766, 1.8076172, 1.0048828, -0.19873047, 0.6123047, 0.2487793, -1.2402344, 0.29003906, -1.8359375, -1.7158203, 1.7753906, -2.3574219, 1.5224609, -1.2314453, -1.9580078, -2.78125, -1.9931641, 0.5908203, 0.4416504, -1.6611328, 0.98046875, -0.5683594, 1.953125, -0.45361328, -2.3085938, 0.109558105, 1.015625, 0.65478516, -0.8564453, -0.41381836, -0.48339844, 0.95703125, 0.59716797, 1.8632812, 1.9707031, -0.57470703, -0.90966797, 1.9033203, 0.46362305, -0.6044922, -1.3066406, -0.24072266, -0.23168945, 0.8461914, 1.2558594, 1.3300781, -0.23925781, 0.82910156, -2.3671875, 1.9697266]}, "B07CNXY2XG": {"id": "B07CNXY2XG", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush \u2013 Gas Grill Cleaner - BBQ Brush\nDescription: Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included\nFeatures: Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nRestore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nCleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with\nThe extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before.\nQuarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.\n", "embedding": [0.5488281, 1.6650391, 0.6152344, -1.3369141, 1.5458984, 0.56884766, 0.36010742, -2.0722656, 0.92041016, 0.05316162, -1.7705078, -0.83251953, -1.0175781, -3.4472656, -3.4492188, 1.3017578, 0.6723633, 1.4052734, 2.6679688, 3.3789062, 0.37963867, -0.8183594, 0.57714844, 1.8203125, 0.7163086, -0.18432617, 2.125, -0.74853516, 1.9355469, 1.5458984, 1.7392578, -0.13586426, -0.94091797, 0.2836914, -3.6035156, 1.4101562, -0.6298828, 1.8339844, -1.2617188, -0.4909668, -1.5, 0.22436523, 0.21240234, 0.45458984, -3.9472656, 3.1972656, 0.9042969, 3.4375, 0.13464355, -4.4140625, 0.50097656, 0.30444336, 2.671875, 1.5371094, -1.6425781, 0.95703125, -1.5117188, -3.9707031, 0.029037476, -1.4951172, 2.9160156, 2.5039062, -1.453125, 0.22668457, 1.3857422, 1.7246094, 0.49414062, -0.06774902, -1.9492188, -1.7558594, -1.0615234, 1.3427734, 1.8955078, 0.4519043, 0.11187744, 1.4140625, -1.2607422, 1.1005859, 1.1171875, 0.9038086, -0.97509766, 1.7451172, -0.18701172, -2.7871094, 1.9003906, -0.28466797, -1.8857422, -1.109375, 2.2773438, -0.40478516, 0.5419922, 2.3261719, -1.9208984, -4.2226562, 0.90966797, -1.8251953, 0.5004883, -2.0390625, -0.0619812, 1.5820312, -2.5839844, 0.13220215, -1.0751953, 0.5126953, -1.3896484, -0.20812988, 0.58251953, 1.0371094, -3.9179688, -1.9072266, -1.1728516, 3.0253906, -1.5234375, 1.4511719, -0.8540039, -0.8383789, -2.3339844, -0.33398438, 0.16809082, 1.640625, 0.78222656, -0.6977539, 0.07824707, -0.37182617, 0.012962341, 0.16552734, 0.9326172, 2.6484375, 3.4296875, -0.8823242, 0.7558594, -3.8222656, 0.9082031, 1.0986328, 0.85253906, -1.3632812, -0.6748047, -0.6875, -1.0761719, -0.8457031, -1.3740234, -1.1894531, 2.5917969, -2.5410156, -1.5927734, 0.98339844, -1.3779297, -1.6806641, -0.39257812, -3.6738281, 1.7275391, -0.7290039, 1.7470703, -2.1171875, 2.6699219, 1.4726562, -1.0068359, -0.6567383, 0.52001953, 0.9814453, -1.0761719, -3.0371094, 0.32836914, 0.24658203, 0.17028809, -2.5742188, -2.2324219, 2.4746094, 1.4824219, 1.4746094, 0.20275879, -1.1201172, -0.18017578, -0.7753906, -0.75439453, -0.48291016, 1.1308594, 2.0507812, 0.5625, -0.46435547, 3.1386719, -2.1191406, 0.24560547, -1.1855469, -0.5859375, -0.01675415, 2.609375, 1.4726562, 2.0546875, -0.42578125, 3.6386719, 1.6474609, 0.9765625, 2.6386719, 0.1373291, -1.1660156, -0.60839844, -1.6025391, 0.40576172, 1.7666016, -2.3632812, -3.2851562, -1.4335938, -1.4589844, -1.3144531, -1.5585938, -0.0062408447, 0.4116211, 0.065979004, -0.37548828, 0.29956055, -1.1582031, 3.1875, -1.3974609, 1.0664062, -3.6542969, -0.41455078, -2.4804688, 1.328125, 1.5742188, -0.8935547, 0.2548828, -0.67822266, 0.9790039, 1.9755859, 2.078125, -2.3007812, 2.5097656, -0.5390625, 0.8911133, -0.4182129, 2.3710938, -1.4824219, -1.1875, -0.72753906, -1.0556641, 0.34399414, -1.0351562, 0.2076416, -0.5185547, -0.08483887, -0.47924805, -1.8349609, -0.43286133, 1.7998047, 0.027236938, -0.33666992, 1.640625, -0.45776367, -3.0292969, 1.3632812, 2.2382812, 2.1464844, 0.6796875, 0.14489746, 0.34277344, -0.8491211, -1.5439453, -2.4355469, 0.9355469, 0.31152344, -1.0625, 0.8540039, -0.43701172, 0.43408203, 0.08862305, 2.8789062, -1.7685547, -0.3786621, -3.1445312, -0.06890869, 0.7993164, -1.3525391, -1.5996094, -0.27197266, 1.0693359, -0.044555664, 0.7519531, -0.2919922, -0.38793945, 0.07684326, 1.8154297, 3.0175781, -1.1552734, -1.3457031, -2.4609375, -3.0683594, -2.3984375, 1.6738281, -1.2275391, 3.6816406, 0.67871094, -2.4472656, 1.6025391, -2.2929688, 1.4248047, 1.6884766, 1.0771484, -1.6601562, -0.7426758, 2.2148438, 0.9272461, -0.703125, 0.9589844, -1.7783203, 0.58691406, 0.8964844, -2.7207031, 0.48632812, 2.953125, -1.359375, -0.5800781, 2.7324219, 0.044952393, -4.3007812, 0.4416504, -2.4042969, -1.0917969, 1.1640625, -1.0820312, -1.1279297, -0.02458191, 1.0166016, -1.3544922, -2.9902344, -0.34423828, -0.53466797, -1.1152344, 1.1914062, -1.0566406, -0.21569824, 0.52978516, -0.54248047, -1.1318359, -2.4941406, -0.1161499, -0.27783203, -1.765625, 1.6621094, -1.7685547, -0.3671875, -0.30737305, -1.7373047, 1.5585938, -0.45043945, 1.0126953, -3.1796875, 0.94091797, 0.79589844, 1.5576172, -0.99316406, 0.26733398, -0.34472656, -1.8037109, 0.5205078, 0.8466797, 0.2631836, -0.6166992, -0.7290039, 0.41259766, -0.1015625, -0.15649414, -0.6357422, 1.6689453, 0.54003906, 0.48242188, -0.06945801, -1.1572266, 0.24853516, -0.42089844, 1.5292969, -0.21765137, 1.7949219, -0.2626953, 0.30810547, 1.0126953, 1.3984375, -1.4814453, -1.609375, 2.2011719, -1.1025391, -0.76123047, 0.55859375, 2.515625, -1.1191406, -1.0351562, 1.6386719, -0.22924805, 0.24487305, -2.1855469, 0.13256836, 1.0185547, -2.9277344, -0.81152344, 1.8994141, 0.81884766, 0.5180664, -1.7841797, -0.7109375, 2.9667969, 0.2088623, -0.6347656, 0.28051758, 1.59375, 0.86328125, -4.2578125, -1.0292969, -2.0839844, -0.7050781, -2.7617188, -0.8076172, 2.59375, 1.4648438, 0.7993164, 2.1230469, -2.2011719, 0.87939453, -2.0605469, -2.8613281, -0.70703125, 1.2539062, 0.9819336, -0.9111328, -0.03704834, 3.4667969, -0.12005615, 0.8027344, -1.7363281, 0.25634766, 1.2988281, 2.2949219, 0.5878906, -0.30664062, 1.4550781, 0.8696289, -1.2773438, -1.703125, 1.1748047, 1.6591797, 0.76464844, 3.578125, 1.3134766, 1.7724609, 0.36694336, 3.7675781, 1.3134766, 3.0996094, 0.13427734, 0.079711914, 1.0849609, -0.3544922, -1.7509766, 0.45776367, -0.5107422, -2.0683594, 0.9111328, -0.2927246, -0.36914062, 1.1660156, -0.10241699, -0.47143555, -0.20300293, 0.86035156, 0.30981445, 2.1289062, -0.6254883, 0.36523438, -0.9814453, -2.5039062, 1.5712891, -1.8652344, 2.2578125, -3.46875, -2.3125, 2.4003906, 1.2822266, 0.10998535, -1.6367188, 0.9658203, -2.0507812, -2.5976562, -0.26708984, -1.4023438, -0.14086914, 0.5776367, -1.2636719, -0.14733887, -0.43432617, 0.38183594, -0.53027344, -1.4814453, -3.1914062, 0.0071907043, 0.08892822, -1.0556641, 0.5058594, 1.6972656, -0.07128906, 1.9804688, 1.4648438, 0.75097656, 3.8144531, -2.4785156, 0.8125, -2.7226562, -2.8125, -0.5341797, -2.3183594, -0.11968994, -0.54785156, 1.1923828, 0.6274414, -0.97558594, 0.7729492, 1.6582031, -1.9619141, 1.4970703, -0.48388672, -2.296875, -1.2333984, 0.73583984, 1.6259766, -0.66845703, 1.9453125, 3.2675781, 1.4394531, -2.2226562, 0.9277344, -3.0449219, -1.5615234, -0.4753418, -1.7646484, 0.61572266, 2.0546875, 1.9511719, 1.8759766, 2.0585938, 0.14086914, 4.0117188, -0.4802246, 0.68847656, -0.44091797, 0.19934082, 1.4560547, 0.48046875, -0.96875, 2.5390625, 1.5996094, -1.1044922, -0.45629883, -0.25170898, -2.859375, -0.1505127, 1.7089844, -0.22192383, 0.5473633, -1.0458984, 1.2910156, -0.9199219, -0.20898438, 2.109375, -1.9628906, 0.37475586, -0.14611816, 0.028335571, 0.22814941, 1.9580078, -1.2382812, -0.7607422, -0.44482422, -1.3134766, -0.17163086, 0.7988281, 0.80126953, -0.15356445, -0.9189453, 1.0390625, -0.6245117, -1.1337891, -0.81103516, 1.3105469, -0.9038086, -2.2363281, 1.5488281, -0.16564941, -1.0917969, 0.99658203, -0.15771484, -2.7539062, -2.5546875, 0.93652344, -2.65625, -0.59033203, 0.765625, -0.71777344, -0.15600586, -1.5234375, -1.0478516, 0.029663086, 0.7133789, -1.9970703, -0.0335083, 2.8222656, 0.77783203, -0.74316406, 2.7714844, -0.9707031, 0.19665527, -1.5761719, -2.46875, -1.4873047, -1.3134766, 0.5786133, -1.7060547, -2.0859375, 1.1923828, -0.3725586, 0.66064453, 0.24499512, -1.6796875, -2.3242188, -2.71875, 2.0957031, 0.7519531, 1.3505859, 1.3310547, -2.1132812, 2.3945312, -0.48754883, 2.7363281, 3.6054688, 0.4711914, 1.0849609, 1.3193359, 1.2314453, 0.80566406, 1.3076172, 2.1816406, 4.8867188, -0.28759766, -1.2060547, 1.8222656, 1.0400391, -2.9648438, -1.0068359, 3.0996094, 1.1699219, 1.5498047, 1.6210938, 1.7041016, 0.1026001, 0.5546875, 2.6386719, 0.25463867, -1.4853516, 0.006641388, 2.5839844, -3.9863281, 0.8828125, -0.2993164, -1.0917969, 2.2070312, -1.2539062, -1.8193359, 1.3310547, 1.4501953, 0.83935547, 0.75, -3.8554688, 2.7382812, 1.6484375, 1.3720703, 0.5029297, -0.9272461, 0.55126953, 2.1269531, 1.2041016, 0.1842041, 2.3066406, 1.1386719, 1.9960938, -1.4140625, -1.3046875, 1.0576172, -0.32104492, 1.0712891, -0.054992676, -1.5683594, -2.2949219, 0.7133789, 0.5239258, 1.6767578, 0.53808594, 0.11810303, 2.25, -0.4645996, 1.1386719, -2.0390625, 2.3808594, -0.2993164, 0.40039062, 3.0742188, -3.2558594, 0.33544922, -2.3046875, -0.32983398, -0.6879883, 2.5273438, 2.9472656, -1.9580078, -3.3554688, -0.6640625, -1.1972656, -3.4140625, -0.9814453, -0.5546875, -0.027023315, 0.8457031, 0.62158203, 1.0322266, -0.6303711, 0.79052734, -0.6904297, 0.5756836, -1.9921875, 0.953125, -0.19567871, -2.0917969, 0.6621094, -0.5644531, -1.1035156, 0.54345703, 2.2851562, 1.7851562, -2.234375, 0.18066406, 1.7841797, -4.3398438, -2.0996094, 2.0605469, -0.9199219, -0.8496094, 0.012252808, 0.0021820068, -1.1669922, 0.8515625, -2.1308594, 0.50341797, -0.5180664, -1.3320312, -1.7949219, -1.3320312, -1.6445312, 0.79296875, 0.19177246, 1.4033203, 0.026657104, 1.3632812, 0.5966797, 2.3886719, -2.3554688, -0.61621094, -2.3164062, 1.6835938, 3.1640625, -1.421875, -0.49804688, 3.1503906, -3.0351562, -0.3310547, 0.74609375, -1.953125, 1.7304688, -0.91748047, -2.5117188, 0.52978516, -0.89453125, 0.77490234, -1.9248047, 0.3996582, -0.4753418, -1.2382812, 0.7421875, 3.4902344, -0.96435547, -1.1113281, -1.0253906, 1.1064453, -1.1435547, -0.66064453, 0.23828125, 0.98046875, 0.4404297, -2.484375, -1.4589844, -1.1201172, -0.17480469, 2.7460938, 1.0712891, 0.22570801, -3.3554688, 0.23071289, -1.5878906, 1.4980469, 0.08306885, 0.90722656, -0.4572754, 4, 0.18530273, -4.9648438, -1.2480469, -2.0546875, 0.19592285, 0.37768555, -3.7675781, -2.7460938, -3.3300781, 0.20776367, -1.6582031, 0.5449219, -2.7226562, 1.5576172, -0.35473633, -0.8876953, 0.5546875, 4.015625, 0.3984375, 3.4121094, 2.8476562, 0.6010742, -1.6201172, 0.29638672, -1.1816406, 0.28808594, 0.95947266, -2.3828125, 2.3515625, -1.1435547, 0.7363281, -1.5634766, 1.2314453, 3.1601562, -0.01878357, -0.7885742, 3.890625, 0.62402344, 2.1425781, 2.40625, 1.3740234, 2.3925781, -0.36865234, -0.23706055, -0.37597656, 2.9003906, -1.5976562, 1.1738281, -0.65722656, -0.75439453, -1.5546875, 1.5537109, 1.2460938, 0.83203125, 0.29345703, -4.4765625, 1.4921875, -0.32763672, -0.30859375, -0.16137695, -0.45874023, -2.859375, -0.27270508, 0.5029297, 0.17138672, 3.6210938, 2.5371094, 0.6171875, 1.0146484, -1.2216797, 2.2734375, -4.0429688, -0.80078125, -0.32470703, 1.0332031, 0.91015625, 1.5478516, -1.0439453, 0.4020996, 0.3623047, 1.0126953, -0.6791992, 0.64990234, 0.8095703, 0.011604309, -1.375, 1.1826172, 0.2397461, -0.20605469, -0.74853516, -2.7050781, 1.4648438, -1.1601562, -1.7128906, 2.6621094, -0.34594727, 0.40625, 2.6875, -4.734375, -1.8720703, 0.14904785, 3.171875, 0.2487793, 0.46777344, 0.028640747, 0.066467285, -0.8964844, -0.0491333, 2.1796875, 2.3105469, 1.3261719, -3.4042969, -0.12731934, 0.09069824, 0.25439453, -0.7998047, 1.6181641, -1.3574219, -1.0078125, -1.8525391, 0.78808594, 1.0810547, 1.4511719, 1.0107422, 2.3554688, -0.7919922, 2.2246094, 3.0761719, 1.6660156, -0.003993988, -0.6796875, 1.5410156, -1.0029297, 1.3837891, -2.8242188, 2.2304688, -0.23962402, 0.020935059, 1.1005859, 1.5859375, 1.0126953, -0.085998535, 0.8417969, 0.5, -1.0136719, 0.6381836, 1.8369141, -0.76464844, -2.0410156, -0.88183594, -0.8183594, -1.2089844, -1.6386719, 1.5966797, 0.88671875, 0.23864746, -0.8798828, 0.3557129, 0.44433594, 1.8525391, -0.16760254, -1.1035156, -2.4023438, 0.6923828, 1.1289062, 0.12670898, 3.1914062, 2.7050781, 0.5498047, -2.9492188, -0.73046875, -1.4394531, -0.53271484, -2.921875, -2.59375, 0.39990234, 3.6015625, 1.8222656, 1.9072266, -2.0644531, 0.14550781, 3.3496094, 0.55322266, -0.5307617, 2.1777344, -0.9501953, 0.2668457, -1.4003906, 1.5693359, 0.9511719, -2.2382812, -0.29467773, 1.4306641, -1.390625, 2.0371094, 1.1591797, -1.0546875, -0.22937012, 0.8588867, 1.1533203, 0.3125, 0.15527344, 1.1689453, 1.4814453, 3.1210938, -1.2753906, 0.98876953, -0.42016602, 1.3984375, 0.52490234, -0.90478516, -0.39770508, 0.3708496, -0.42260742, -0.5727539, -2.6679688]}, "B00TZPETFI": {"id": "B00TZPETFI", "original": "Brand: DOZYANT\nName: DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type\nDescription: \nFeatures: Converts POL LP tank to Qcc1/Type1 hoses and regulators.\nThis adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place.\nProvides secure and airtight connection between propane tank and gas grill.\nHand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\n", "embedding": [0.5214844, 0.65283203, 1.9677734, 1.5234375, -0.5151367, -1.8369141, 0.9272461, 0.9902344, 0.35375977, 1.8320312, 2.9238281, -1.1318359, 2.1503906, -3.3222656, 3.7382812, -0.4025879, 1.9833984, -0.33422852, 1.9560547, 2.2636719, 2.5722656, 0.23510742, 0.14416504, -0.7963867, 0.95703125, -0.8227539, 2.8007812, -0.89208984, -0.9433594, -2.2167969, -0.026000977, 0.28295898, -0.7480469, -0.23022461, -1.5644531, -1.2646484, 1.3369141, 0.91308594, -2.0351562, -0.4855957, -2.6054688, 2.6015625, 1.2333984, 0.3466797, -2.5039062, -2.3183594, -0.31201172, 0.17211914, 1.3378906, -0.37060547, 0.6274414, 3.0371094, 0.091552734, 2.1914062, -2.3144531, 2.0332031, 0.3046875, -3.3417969, 0.5908203, 1.1083984, 1.4101562, 0.7949219, -1.5419922, 1.3125, 0.44433594, 0.9038086, -0.87158203, 0.625, 0.58935547, 0.121154785, -0.24560547, 2.2773438, 1.8144531, -1.7695312, -2.6660156, 0.044647217, -3.2246094, 0.9199219, 1.1318359, -1.7373047, -0.85791016, -0.31982422, 0.101257324, -2.3242188, -0.5517578, -0.23510742, -0.6640625, 1.546875, 0.19348145, 1.3398438, -3.671875, 1.2685547, -1.4541016, -2.1542969, -0.5961914, 0.40795898, -1.1464844, 2.5976562, 2.8007812, 0.053741455, -1.8769531, 0.08465576, 1.1474609, 1.0214844, -2.3535156, -0.6401367, -2.1640625, 0.011230469, -1.9003906, 0.79296875, -0.47387695, 1.1923828, 2.7636719, -2.2128906, 0.13342285, -2.3457031, 0.28222656, -1.2060547, 0.5683594, 1.1132812, 2.75, -0.059387207, 1.7421875, -0.5732422, 1.7597656, 1.7705078, -1.6640625, -0.42456055, 2.9296875, -0.74316406, 0.88964844, 0.92578125, 1.7373047, -0.7338867, 1.3037109, -2.7128906, -0.7792969, -0.41723633, 0.6791992, -1.5498047, -2.4199219, 0.82128906, 0.79052734, 0.092041016, -4.203125, 0.52734375, -2.7890625, 1.5244141, 1.4804688, -1.3476562, 1.1660156, -2.5507812, 0.56640625, -0.59375, 2.1738281, 1.3730469, -0.50146484, -1.8271484, 1.5087891, 1.3447266, 1.0576172, -0.7167969, -0.24291992, 2.0507812, -0.40600586, -2.2480469, 1.2773438, 0.23815918, -0.88134766, 0.44482422, -2.1523438, -3.8925781, 0.7133789, -0.115112305, 0.49072266, -0.8198242, 0.97802734, 1.0439453, 0.50878906, 0.26464844, -3.3105469, -0.50097656, -0.23486328, -1.0947266, 1.5947266, -0.8256836, -2.546875, -1.3466797, 1.1152344, -2.328125, -1.5175781, 2.4960938, 0.9370117, 0.15014648, 0.6855469, -2.4628906, -1.3681641, -1.0263672, -0.68603516, 1.3916016, 0.14453125, -2.7402344, 1.1455078, -0.05368042, -0.9555664, -1.2109375, 1.1542969, -1.3759766, 0.22680664, 1.5117188, 0.46606445, 0.5107422, 2.1171875, -0.61328125, -1.0488281, -1.3173828, 1.6923828, 2.2695312, 1.7373047, 0.28393555, -1.8369141, 0.097351074, 0.61328125, 1.1455078, 1.3974609, 0.31469727, -0.42260742, 1.7011719, -2.0664062, -0.72265625, 2.0449219, 2.3476562, -2, 0.46972656, -0.31176758, 1.7001953, 1.5673828, 0.2298584, 1.6552734, 0.05026245, 0.59472656, -1.9462891, -1.0292969, -0.76464844, -0.8701172, 0.18908691, -2.2070312, 2.1875, 0.953125, -0.7998047, 0.1895752, 0.41137695, -2.1640625, -3.4453125, -2.9765625, 0.49023438, -0.06210327, 1.1816406, 0.58984375, -1.3076172, 2.6621094, -1.3935547, 1.4033203, -1.2568359, 1.5410156, 1.5869141, 1.9111328, -2.2226562, -1.1611328, -0.11553955, -0.1048584, 3.3769531, 3.0507812, 0.9506836, -0.7167969, 3.9648438, -2.3769531, 1.1552734, 0.4152832, 0.4572754, 2.5078125, 0.30981445, 1.1005859, -2.7832031, 0.27783203, 1.90625, 0.7910156, 0.17858887, -2.0136719, -1.4003906, 3.3515625, -1.0292969, -2.1328125, 1.6875, 3.0820312, 2.9082031, 0.8774414, -0.78222656, -2.7695312, 0.15307617, -1.7617188, 0.87597656, -2.5136719, 0.9482422, 3.1621094, 0.6948242, -2.0703125, -0.15930176, 0.7241211, 1.6474609, -1.1572266, -0.63134766, -2.4199219, -1.3544922, -1.8164062, -3.2128906, 0.7607422, -2.1621094, -2.0527344, 0.6923828, -0.17102051, 0.05569458, 1.4375, -1.3251953, 1.1494141, 1.3730469, -1.1552734, -0.45117188, 0.35327148, -0.6542969, 2.3164062, 0.0569458, 1.6611328, -1.7148438, -0.035095215, 1.15625, -0.6689453, -3.9394531, 0.7265625, -2.4257812, -0.16418457, -1.5537109, 1.5205078, 3.4589844, -0.0005669594, -1.4589844, -2.6035156, -0.87841797, -1.3056641, -2.8203125, -0.46289062, 3.2128906, -1.1103516, -4.0664062, 0.75146484, 0.74072266, 0.79296875, 2.9453125, -2.4394531, 0.74365234, 0.70947266, -1.0185547, -0.8378906, 0.6826172, 0.29052734, -0.7783203, 0.25170898, -3.5742188, -0.3322754, -0.9394531, 1.515625, 0.023971558, 0.7675781, -1.5673828, 0.16625977, 0.5229492, -1.5947266, 2.0566406, -0.76953125, 2.046875, 1.3310547, -0.9580078, 1.6904297, -1.6933594, -3.671875, 0.14562988, -0.9790039, -0.56591797, 0.8901367, -4.5273438, -0.7651367, -1.4189453, 0.8354492, -1.1113281, 0.005130768, -0.15185547, -0.09887695, 2.9433594, 0.25195312, 0.38183594, 1.2382812, -0.10107422, 0.29638672, 1.3847656, 1.8222656, -1.2705078, -1.5947266, -0.5961914, -0.6723633, 0.52783203, -1.6884766, 0.7055664, 0.78808594, 0.6118164, 0.54296875, -2.4355469, -0.96777344, 0.9526367, -0.6381836, 1.7255859, 0.09082031, -1.1523438, -2.9550781, -0.25219727, 3.9707031, 1.4267578, 4.0664062, 1.2753906, 2.3457031, -0.78759766, -0.07727051, -1.7470703, -1.8486328, -0.89208984, 2.6953125, -2.7949219, 0.20031738, -0.6220703, 0.12646484, -2.6992188, 1.890625, 0.6953125, -0.45043945, 2.609375, -0.46533203, -0.22741699, 0.18981934, 0.70214844, 2.5332031, 0.5498047, 0.33569336, 0.9824219, -0.074523926, 0.17944336, -1.2294922, -0.46728516, 0.4855957, 2.2832031, 0.7626953, 0.6352539, 0.7626953, -1.8710938, 0.39233398, 0.9296875, 0.4375, 0.56152344, 1.1132812, -0.2800293, 1.0693359, 0.48999023, 0.7993164, 1.0742188, -3.0800781, -0.5307617, 1.7177734, 1.3818359, -0.6923828, 0.42773438, -0.30639648, -0.97314453, -0.32836914, 0.2541504, 2.7382812, 1.8212891, -0.48657227, -0.2290039, 0.068115234, -1.75, 0.18139648, -0.55859375, 2.1152344, -1.3564453, -0.33911133, -1.0175781, -1.4648438, -1.4511719, -2.3203125, -2.4277344, 1.9335938, 0.97753906, -0.6855469, 0.13391113, 0.16186523, 1.8837891, 0.25585938, -1.8417969, -0.21533203, -0.89208984, -1.3447266, 0.17822266, -0.43798828, 2.8300781, 1.3828125, -2.6328125, -0.87109375, -0.9550781, 0.84277344, -2.1875, -0.38427734, -1.3916016, -3.5058594, 0.2746582, 2.4160156, 0.5629883, 3.328125, 0.40161133, -0.98535156, 0.65478516, -1.1230469, -0.87402344, -0.5488281, -4.9335938, 1.6367188, -2.3964844, 1.7246094, 2.1425781, 1.0117188, -1.328125, 1.1103516, 2.3847656, -3.328125, -0.73095703, -1.6835938, 1.2988281, -3.6992188, -0.3996582, 2.3515625, 1.6835938, 0.45654297, -0.6044922, 0.11529541, -0.9482422, -1.75, -1.0673828, -0.6933594, 0.51660156, -0.44799805, 0.9824219, -1.6269531, 0.41577148, 2.0644531, -0.026504517, -1.1572266, -1.2753906, 2.4414062, 1.1953125, 1.6015625, -1.3847656, 2.9941406, 3.7832031, 0.18334961, -0.31884766, -0.23364258, 2.96875, 0.40966797, -2.7207031, -0.30297852, -0.89501953, 0.7915039, -0.7626953, -0.123168945, 0.3605957, -0.008804321, 3.1679688, 0.22619629, 0.953125, 1.6113281, -0.4819336, -1.8066406, 0.5283203, -0.039520264, -3.1894531, 0.22021484, 1.5859375, 0.045135498, 0.78027344, -0.5419922, -2.0234375, 0.85498047, -0.6533203, -1.0351562, -2.1113281, 0.08294678, 0.60546875, -0.12158203, -0.92578125, -2.1386719, 0.3708496, -1.4882812, 0.24743652, 0.79345703, -1.6464844, -1.0019531, -1.0185547, 1.1474609, 2.0488281, 1.0488281, -0.82666016, 0.6425781, 1.7099609, -0.062927246, -0.55566406, 1.6757812, -0.88964844, -1.6826172, -0.9951172, -1.0898438, 2.0390625, -2.4628906, 0.21191406, 0.28881836, -1.0302734, -4.5585938, 1.7294922, 1.9306641, 1.5253906, 0.14819336, 0.24047852, 1.3037109, 2.3222656, -0.13806152, 1.1035156, 0.5058594, -1.3261719, -1.0341797, 0.7963867, 2.5820312, -1.3769531, 1.7373047, 1.8164062, 2.6933594, 1.8173828, 0.24072266, 0.9086914, -1.5087891, 0.9916992, 0.05770874, -0.43798828, -2.0410156, -0.7832031, -2.6015625, 3.8105469, -2.3964844, -2.0332031, 0.1270752, 1.1337891, 0.8232422, 0.6308594, 0.8203125, 0.40454102, -2.5839844, -4.2578125, -0.8227539, -0.32470703, 0.20202637, 1.1621094, -0.5234375, 2.0019531, 1.1865234, 1.2685547, 2.6152344, 0.59033203, 0.6894531, -1.4238281, -1.4169922, -2.2539062, -0.39868164, -3.3359375, -0.3774414, 0.24572754, 0.27246094, 4.1796875, 0.2529297, 0.46704102, 0.76416016, -0.15246582, -1.4521484, 0.24279785, 1.0175781, -1.125, -0.5029297, 4.1523438, 0.4716797, -2.4960938, -1.6728516, 0.17443848, -0.34521484, 0.37402344, 0.70214844, 0.09802246, -1.8515625, -0.11645508, -2.6308594, -3.3847656, -0.53808594, 1.2851562, 1.6962891, 0.8833008, -1.4355469, 0.26586914, 0.9086914, -1.3808594, -0.7265625, -2.1132812, 0.9482422, -1.2226562, -0.09637451, 2.1269531, 1.1347656, -0.28710938, -0.15881348, -0.6699219, -1.8193359, 0.6567383, -2.8203125, -1.3173828, 1.7988281, -3.3476562, -0.12878418, 0.03829956, -1.8046875, -0.2475586, 1.5722656, 1.7890625, -2.3554688, 2.3710938, -0.7324219, 0.9628906, 0.27368164, -1.21875, -0.6894531, 0.8208008, 0.41455078, -0.012771606, 3.9960938, 3.9492188, -1.3466797, 0.51171875, 0.7368164, -0.49316406, -0.1270752, -0.41210938, 0.3173828, 0.32788086, 1.9404297, 0.072509766, -1.4130859, -1.8955078, -2.3535156, 0.42871094, 0.13452148, -0.24499512, 0.9692383, 0.9951172, 1.4609375, 0.30517578, -0.21264648, -1.0380859, -1.0527344, -0.91796875, -1.34375, 2.0625, -1.8271484, 1.9980469, 0.40478516, -2.0136719, -2.0234375, -0.30371094, 3.4316406, 1.6230469, -1.0488281, 1.3720703, 0.26049805, 0.86279297, 0.79052734, -0.46704102, 2.3417969, -0.7158203, 0.8613281, 0.44067383, -1.1826172, 1.0390625, -3.1386719, -1.5537109, 1.296875, -1.9599609, 1.0830078, 1.2695312, 2.125, -2.5253906, -1.1201172, -0.8017578, -1.203125, -3.6386719, 1.0673828, -0.09918213, -3.2246094, 1.1640625, 1.3144531, -2.6328125, -0.87353516, 2.5859375, -2.5332031, 0.93847656, 2.0605469, 0.65283203, -2.3125, -1.2724609, 0.6586914, -0.48339844, -0.44628906, -0.59375, -1.4423828, 2.0175781, 1.8789062, -1.5830078, 1.0361328, 0.9526367, 1.7519531, 0.98876953, -0.08111572, 0.81103516, 2.53125, 0.19396973, 4.0078125, 2.9394531, 0.48876953, 2.7109375, 2.0214844, 3.1894531, 3.3222656, -1.1630859, 1.1572266, -0.5019531, -0.9379883, 0.7265625, -2.4140625, 0.3293457, 0.61328125, 0.21386719, -0.58447266, 0.5415039, 3.703125, -2.3769531, -1.0498047, -1.6933594, -1.0859375, -3.8320312, -0.60302734, -1.5283203, -0.27270508, 0.75341797, 0.84033203, 0.95166016, 2.28125, -1.5791016, 0.98046875, -0.07293701, 1.9355469, -1.3173828, -0.3408203, -2.1074219, -0.99609375, 1.1650391, 0.7607422, 1.1376953, -0.48876953, 2.2734375, 0.30639648, -0.6147461, 1.1210938, 0.7080078, -0.55322266, 1.0498047, -0.21728516, -0.10723877, 3.9902344, -0.6098633, 1.4482422, 0.73291016, -1.9755859, -3.9492188, 0.5385742, -0.67578125, -0.31030273, 0.3100586, -3.6621094, 0.35595703, -2.3828125, 0.54296875, -3.1113281, -1.4169922, 2.1972656, -4.1757812, 2.1855469, -0.030273438, -1.7197266, 2.6738281, 1.2226562, -1.4882812, 0.7397461, 0.5415039, 0.9975586, 0.37158203, -0.24597168, 1.1894531, 0.65722656, -2.3769531, 5.0351562, 0.11480713, -0.89453125, 0.040771484, 1.3427734, 0.88964844, 0.007423401, -0.1081543, -0.44311523, 0.9316406, 0.64697266, 0.20727539, -0.81591797, -1.40625, 0.24560547, -1.2197266, -1.6201172, -0.45166016, 0.5493164, 1.5546875, 1.4169922, -1.3583984, -0.5161133, 1.0771484, -1.7382812, 1.65625, 1.3447266, -1.5302734, -1.5537109, 0.9223633, 2.4042969, -2.015625, 1.3320312, 1.09375, -0.5776367, -0.4970703, -0.88720703, -2.3730469, 0.3786621, -1.5107422, -1.6044922, 0.9296875, 0.9169922, -1.4570312, -0.44848633, -2.6445312, 1.7529297, 2.671875, 0.21374512, 0.7421875, -0.30273438, -1.0859375, 0.7416992, -0.17077637, -0.5498047, 0.23059082, 1.6640625, -1.1689453, 1.0458984, -0.7133789, -3.3710938, -1.0673828, -2.2519531, 0.8051758, 0.54541016, -0.8364258, 0.90722656, 1.6738281, 1.9140625, -0.99365234, -1.3056641, -0.2836914, 0.41601562, 1.8076172, -1.9501953, -0.5, -0.062194824, 0.6098633, 1.5, 3.1914062, 1.7773438, -0.43945312, -2.1894531, 1.8740234, -0.1517334, -1.4121094, -0.82666016, -0.23413086, -0.7138672, 1.3427734, 1.0683594, 2.1210938, 1.2480469, -1.3056641, -2.4667969, 0.56347656]}, "B07FTK91YG": {"id": "B07FTK91YG", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump\nDescription: 1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
3.Ignition is provided by 2 D cell batteries which means electricity isn\u2019t required to power the unit. (batteries not included\uff09
4.The ideal low water pressure operating range for the Camplux BD158 is 2.8\uff5e110.0 PSI, work easily with great performance.
5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
6.The system also works with a 12 volt pump to get the desired pressure.
7.The gas water heater can't be used for drinking water.
8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

Easy to Use
1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
2. Connect the gas cylinder with the supplied gas hose and regulator.
3. Connect shower hose and shower head to the hot water outlet.
4. Connect water hose to the water inlet.
5. Insert 2 \"D\" cell batteries.
6. Enjoy instant hot water!

What's in the Box
1 x Camplux pro portable hot water system
1 x 1.2 GPM Water Pump
1 x 3 setting ON/OFF shower head and pedestal
1 x 5\"ft premium shower hose
1 x 5\"ft CSA approval gas hose & regulator
1 x Camplux 1.2 GPM Water Pump
1 x garden hose: 1/2\" BSP Female x 3/4\" GHT Female
1 x garden hose: 1/2\" BSP Female X 3/4\" GHT Male
1 x gas inlet connector: 1/2\" BSP Female x 5/8\" NPT Inverted Flare Male
1 x accessories package\uff08included water tape & screws \uff09
1 x instruction manual

Inquiry & aftersales service: support@camplux.com
Service hotline: (1)844-538-7475\nFeatures: Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don't need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one.\n3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV's and Boats.\nCSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 \u00b0F.\nPower Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise.\nImportant Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "embedding": [-1.5009766, 2.3730469, 1.6503906, 0.17993164, -0.86621094, -1.4951172, 1.03125, -2.2949219, 0.46948242, 2.4335938, 0.89453125, -0.61621094, 1.6738281, -1.3955078, 0.7944336, 0.5727539, 1.5712891, 0.2454834, 1.1464844, -0.4465332, 2.3554688, -0.24536133, 1.8701172, -1.2392578, 1.4677734, -1.0429688, 3.9824219, -1.3583984, -0.18847656, -0.055419922, 0.8803711, -0.22058105, -0.24035645, 1.1621094, -0.7807617, -0.6616211, -1.5400391, 1.2832031, -3.1269531, -1.8818359, -1.0302734, -0.5097656, 3.0664062, -1.2763672, -0.9423828, -2.2636719, 0.5732422, 0.9501953, 3.1171875, -2.4394531, -1.6708984, -0.4951172, -0.5161133, 1.1435547, -2.0839844, 0.8339844, -0.2709961, -1.4453125, 2.3515625, -0.122802734, -1.0986328, 1.1708984, -2.7402344, 2.046875, 0.68115234, 0.24267578, -0.3083496, -2.671875, 0.74853516, 0.7939453, -0.020996094, 2.3691406, 0.9243164, -0.9873047, -1.2841797, 0.47827148, -3.9511719, -0.09265137, 2.6230469, 1.1347656, -2.2695312, 1.6269531, 2.2734375, -3.8730469, -2.7539062, 0.42773438, -0.37817383, 1.1455078, -0.4440918, 1.0195312, -2.5390625, 1.7792969, -2.0585938, -4.1171875, -0.50390625, -2.515625, 1.9755859, 0.8808594, 2.7792969, 2.4433594, -1.3759766, -0.37963867, 0.80322266, -1.1279297, -3.171875, -0.51220703, 2.2109375, 1.7880859, -3.0039062, -0.111694336, -1.8916016, 0.83447266, 2.09375, -1.9941406, -0.39331055, -2.1894531, 1.3505859, -0.5234375, 3.0273438, 0.10443115, 3.1054688, -1.7597656, 1.9472656, -1.2294922, 1.8417969, -0.25073242, -0.4790039, 0.5683594, 0.47875977, 0.6611328, -1.0703125, -1.0517578, 3.703125, 0.5136719, 1.0507812, -3.125, -1.6386719, -2.3144531, -1.8007812, 0.07476807, -3.453125, 1.2060547, 1.2412109, 1.1923828, -5.2421875, -2.0898438, -1.0732422, -0.72753906, -1.1074219, -2.1835938, -0.13293457, -3.9882812, -1.1044922, -1.7900391, -0.56884766, 1.7275391, -1.6455078, -1.2714844, 1.7509766, 1.6044922, 0.5883789, 0.5449219, -1.0322266, 0.34570312, -0.26879883, -1.9140625, 1.3154297, 0.095703125, 0.9770508, -0.17956543, -1.2324219, -2.2421875, 0.6503906, -0.9921875, -1.2080078, -1.6904297, 1.3955078, 1.6494141, 2.9960938, -0.0690918, -3.5273438, 0.5053711, -0.26220703, 0.45532227, 1.8955078, -0.33276367, -1.5087891, -0.7167969, 0.5395508, -1.2646484, -1.2255859, 0.48828125, -2.2324219, -0.46044922, 0.3095703, -2.53125, -1.671875, -0.33374023, 0.6035156, 1.5439453, 1.2333984, -0.58203125, -0.39624023, -0.06982422, -0.28076172, -2.9316406, 1.0732422, -0.50146484, 0.07159424, 1.8984375, -0.036590576, 0.59228516, 2.2714844, -2.2226562, -2.1289062, 0.9003906, 1.4365234, -0.21496582, 2.96875, 0.54003906, -0.8378906, 0.8388672, 1.1474609, 1.6318359, 3.2207031, 0.59277344, -0.30737305, 1.5224609, -2.015625, -2.1738281, 1.6728516, 1.015625, -0.29248047, -1.0625, -1.6484375, 2.7226562, -0.7495117, 0.22973633, 0.8095703, -0.92871094, -0.48657227, -1.1787109, -0.7973633, 0.21777344, 0.69970703, -0.8129883, -2.6503906, 1.4121094, 0.3996582, 0.53125, 0.68847656, -1.359375, -0.1932373, -2.6230469, -4.1484375, -0.5332031, 1.2685547, 0.09039307, -0.27734375, -2.7285156, 3.1816406, 1.5966797, -0.7807617, 0.17687988, -1.46875, 0.42749023, 1.2509766, 0.61621094, -2.2246094, 3.0664062, 0.54296875, 2.3027344, 2.6757812, -0.29101562, 0.45874023, 0.5048828, -0.65185547, 0.99121094, -0.9951172, 1.0214844, -0.32617188, -2.7578125, 1.7050781, -1.7353516, -0.45092773, -1.0869141, 0.86816406, 0.37060547, -3.0097656, 0.33642578, 3.078125, -1.1552734, -3.8300781, 2.2265625, 0.6020508, 2.3515625, 4.4335938, 0.027816772, 1.1035156, 0.107543945, 0.9794922, 1.2705078, -1.6591797, 0.96191406, 0.83154297, -0.14453125, -0.9458008, -2.1953125, 1.1601562, 1.9111328, 0.6464844, -0.2109375, -1.7275391, 1.2275391, -1.9277344, -0.9145508, 1.4746094, -2.0996094, 0.16125488, 2.9628906, -0.3166504, 0.31689453, -1.0039062, -2.4980469, 0.92089844, -0.29760742, -1.9726562, 0.05090332, 1.0703125, 0.45922852, 0.9301758, 0.57421875, 1.6943359, -3.2265625, -0.5600586, -0.5209961, -0.23803711, -2.0351562, 0.14282227, -1.8515625, 0.31396484, -0.44921875, 1.0722656, 1.8681641, 0.47680664, -1.0634766, -1.3886719, 0.92285156, -1.3896484, -2.2734375, 1.1474609, 2.2363281, -1.4873047, -4.21875, 1.7080078, -1.0029297, -0.9589844, 1.4257812, -1.828125, 2.5078125, -1.8183594, -0.15649414, -0.21118164, -0.4572754, -0.4987793, -1.5556641, 1.4560547, -1.5058594, 2.9121094, 2.0722656, 2.1914062, -1.59375, 1.2304688, -1.0126953, -0.23352051, 0.3815918, -1.6523438, 2.3789062, 0.27734375, -0.44555664, -1.2099609, -2.390625, 0.35888672, -1.3427734, -2.5097656, 0.85498047, -0.9526367, -1.2685547, -0.91503906, -3.1640625, 0.86279297, 0.09039307, -1.7851562, -0.63623047, -3.0351562, -1.3037109, 0.9765625, 1.3603516, 1.1494141, 0.74658203, 1.5449219, -1.6621094, -3.3125, -0.99316406, -0.3017578, 0.75683594, 0.9707031, 1.0908203, -1.4296875, 0.50341797, -0.10668945, 3.5859375, 0.47680664, 1.1464844, -0.16015625, -3.9921875, 0.92285156, 1.6357422, 1.8486328, -0.11273193, 0.20227051, -0.44458008, -1.5566406, -0.14074707, 1.9130859, 1.2861328, 4.3046875, 0.56152344, 0.10620117, 1.4765625, -0.95458984, -0.36157227, -0.26782227, -1.2216797, 3.234375, -0.8486328, 1.4013672, 2.0722656, 2.6738281, -3.0488281, -0.16687012, 1.09375, 0.50634766, 2.4335938, 1.8701172, -1.5302734, -0.7524414, 1.9384766, 0.23181152, 1.4658203, -1.8798828, -0.54541016, -0.1628418, -0.5834961, -0.54541016, 0.8808594, -0.31445312, -0.13330078, -0.33740234, 0.14904785, 2.0449219, -1.4140625, 2.0546875, -0.5307617, -0.52246094, 2.2421875, 0.44580078, -0.23632812, 1.8125, -1.1708984, 0.45410156, -0.70458984, -1.4228516, 0.47875977, 1.3105469, 0.45776367, -0.20239258, -1.1328125, -0.3881836, -0.9165039, 0.5644531, 1.8261719, 0.2841797, 0.2133789, 1.9208984, -1.5361328, -2.0703125, -0.36914062, 0.42578125, 0.0021095276, -1.1845703, 0.60546875, -2.3476562, 0.8227539, -0.5961914, -2.0234375, -1.9228516, -1.4707031, 1.4052734, 1.7353516, -1.1943359, -1.2089844, 1.1347656, 2.4316406, 1.7148438, -1.1210938, -1.3603516, -3.578125, -0.53759766, 1.3662109, 0.9355469, 2.0253906, 1.9970703, -1.8867188, 0.79833984, -1.3984375, 0.78125, 0.7558594, -2.3632812, -0.42138672, -0.67333984, -2.1132812, 1.5205078, 1.4824219, 1.2734375, -1.2412109, 0.53027344, 2.4023438, -1.1142578, -0.25024414, -0.60546875, -3.9648438, 1.9492188, 0.17944336, -0.046966553, 1.4042969, 1.7607422, 1.2802734, -0.66748047, -0.48535156, -3.375, -1.8105469, -0.03289795, 1.984375, -2.3613281, 1.0078125, 0.54833984, -0.04953003, -0.95654297, -0.9477539, -0.27539062, -1.9511719, -0.63964844, -0.02305603, 0.421875, 2.046875, 0.45947266, 0.13391113, -0.16467285, 2.6464844, 2.4453125, -0.859375, -1.3994141, -1.6523438, -0.29638672, 0.6479492, 1.0761719, 0.06903076, 0.63378906, 1.9775391, 0.05215454, -1.8027344, 1.2636719, 1.2509766, -0.74853516, -2.4238281, -2.1015625, -1.0078125, 1.7841797, -0.45532227, -0.89990234, 0.34887695, -0.026611328, -1.7441406, -0.5722656, 1.453125, 2.9394531, -0.28979492, -1.3994141, 2.9003906, -0.12432861, -1.6494141, -1.9628906, -0.122802734, -0.50683594, -0.3413086, 0.46557617, -0.6142578, -0.9375, 0.9453125, 0.5888672, -1.3291016, 0.6816406, 0.12792969, 1.4238281, -0.13391113, -1.8759766, -2.890625, -0.48120117, 0.62402344, 0.66308594, 0.8544922, 1.3916016, -1.5556641, 1.7578125, 2.4589844, -1.1015625, 0.7895508, -0.068725586, -2.6914062, 0.09490967, -2.0820312, 1.1552734, 0.039093018, -0.055908203, 1.7119141, 0.91308594, 3.8847656, -0.03451538, 1.9931641, 0.5371094, 0.014099121, -1.1357422, 1.171875, 2.1503906, 1.4658203, 0.5527344, -0.28100586, 1.7041016, 1.2685547, 1.2324219, 0.49853516, 2.7792969, -0.9692383, -2.7988281, -2.8671875, 1.1982422, -0.59521484, -0.74072266, 0.60839844, -0.1295166, 1.8017578, 1.1943359, 3.1015625, -0.7832031, 1.8847656, 1.1445312, 1.2246094, -1.9042969, 0.6767578, -2.9238281, 2.4628906, -0.35229492, -0.99121094, 0.94140625, 1.7626953, 0.42041016, 1.4111328, 0.25708008, 0.6064453, -1.5556641, -1.8681641, -0.8984375, -1.84375, 3.0703125, 1.0751953, 0.009422302, 0.7285156, 2.4140625, 1.5507812, 3.1171875, 1.0019531, 1.3251953, 0.34936523, 0.6279297, -0.7373047, -1.5146484, -1.3037109, -2.125, -0.47631836, 1.7714844, 1.4511719, 1.3496094, 1.4121094, -0.8383789, -1.7167969, -0.9633789, -1.5869141, 1.6767578, -3.7089844, 0.1899414, -1.4951172, 2.2578125, -0.47924805, -1.0507812, -1.03125, 1.2832031, 0.6791992, -0.4416504, -0.8095703, -0.5419922, -0.4880371, -2.1269531, -5.7773438, -0.78759766, 2.0253906, 0.5756836, 0.9584961, -2.9082031, -0.21020508, 2.3867188, -0.20922852, 0.3779297, -2.03125, 2.703125, -0.5073242, 1.0722656, 0.9951172, -1.0507812, 0.35668945, 0.8984375, 0.9472656, -1.3134766, 0.6958008, -1.734375, -1.4921875, -0.074401855, -1.6650391, -1.5957031, 1.5429688, -2.2324219, -0.7680664, 3.8808594, 0.25146484, -0.8144531, 1.0751953, -1.4785156, -1.7578125, 0.23815918, 0.29248047, 2.0292969, 0.7470703, 1.6826172, 1.6132812, 2.1757812, 1.7197266, 0.90966797, 0.9628906, 0.88671875, 0.65185547, 1.7675781, -0.33007812, 0.27929688, -2.1035156, -0.77783203, 0.9326172, -0.83984375, -0.88916016, -1.9316406, -0.6669922, 0.13195801, -1.6162109, 0.6298828, 0.97509766, 1.2626953, 0.49291992, 1.0830078, 1.1611328, -0.5126953, 0.64697266, -0.72802734, -0.39916992, -0.6191406, 1.7470703, 0.21398926, -1.1337891, -3.0097656, -2.8867188, 1.8496094, 0.44067383, 1.3808594, -0.22216797, 0.8046875, -0.05697632, 1.1865234, 0.2064209, 1.7255859, -0.17077637, 0.8911133, -2.6777344, 1.8671875, 1.1542969, 0.41601562, -0.80615234, -0.3840332, 0.43579102, -0.019378662, 2.0761719, 2.96875, -0.8120117, 1.3515625, 0.05859375, 2.2851562, -0.49291992, -1.8037109, 1.3125, -1.5947266, 1.5410156, 0.004085541, -0.61816406, -2.0136719, 1.2753906, -0.07574463, -1.5058594, 2.4082031, 1.5371094, -1.7441406, -0.5415039, 2.4746094, -0.20593262, 0.13244629, 1.1865234, 0.7739258, -0.9584961, 1.3779297, -2.1445312, 0.74658203, 1.0810547, 2.5527344, 0.23547363, 0.3022461, 0.5449219, -0.7866211, 1.4169922, 2.2675781, 2.4511719, 0.46484375, 1.3310547, 2.375, 2.5273438, 1.3984375, -1.0166016, 0.84521484, 2.4335938, -0.35595703, -0.5751953, -2.2402344, -1.7900391, -0.29125977, -0.55126953, -1.8916016, -0.7441406, 1.2558594, -3.3632812, -3.203125, -1.5107422, 1.640625, -1.8417969, 1.4824219, -1.7060547, -1.5810547, -0.8588867, 0.038635254, -0.5991211, 0.6611328, -0.44482422, 2.7792969, -0.45117188, 0.6635742, -0.8828125, -1.109375, -3.5976562, -1.7783203, -0.24841309, 2.3164062, 2.6894531, 2.8164062, -1.5615234, -0.12963867, 2.921875, 0.5942383, 0.4584961, -0.5361328, 1.4355469, -1.7001953, 4.0703125, 1.9580078, -2.0273438, 3.390625, 1.0019531, -1.4521484, -1.2763672, 0.039367676, 0.51416016, -2.7851562, 0.9301758, -3.5996094, 0.27563477, -1.0917969, 1.8779297, -2.7382812, 3.0214844, 0.82714844, -3.2890625, 1.0166016, 1.0517578, -0.12371826, 1.6503906, 0.71435547, 0.6411133, -0.13867188, 0.22106934, 1.3701172, -0.3959961, 0.3256836, 0.3881836, 0.23583984, -2.5195312, 2.3730469, -0.01927185, -0.20507812, -0.14855957, 2.8320312, 0.19519043, 1.1425781, 0.50878906, -0.19995117, 2.8554688, -0.23510742, -0.6953125, 1.5253906, -0.57128906, 0.2614746, 1.1708984, -1.3134766, -1.0087891, -0.09246826, 0.8496094, 1.9228516, -2.5859375, -1.4462891, 1.1171875, 1.9511719, 1.3769531, -1.3183594, -1.6132812, -1.4794922, 1.1884766, -0.39453125, -0.63671875, 0.5756836, -1.7763672, -1.21875, -0.6503906, -1.6230469, 0.53271484, -1.3916016, -0.47070312, 0.6591797, 1.0615234, -3.0820312, 0.54833984, 0.79003906, -1.3652344, 1.3603516, 0.45825195, 0.6635742, 0.6557617, -4.2890625, -0.93115234, 0.14245605, -0.36791992, -1.3896484, 0.5136719, 0.1274414, -1.4248047, 3.8398438, -1.2919922, -0.7890625, -0.71728516, -1.4160156, 0.17712402, 0.8925781, -0.29711914, -0.26879883, 1.5888672, 2.4472656, -0.86572266, -0.58740234, -1.1279297, 0.2434082, 2.0898438, 0.94970703, -0.08874512, 0.1640625, -0.8881836, 0.061523438, 2.3613281, 0.2553711, -1.4228516, 0.26757812, 2.609375, 0.09082031, -0.75683594, -0.0927124, -1.6650391, -1.7705078, 0.71728516, 1.8769531, 3.8789062, -0.5415039, -1.0400391, -3.5820312, -1.5175781]}, "B07HDWFMMG": {"id": "B07HDWFMMG", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack)\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Easy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\nConnects directly into a 1 pound propane tank container for a 5.5 hour runtime\nFeatures automatic shut off system for low oxygen\n", "embedding": [-0.94677734, 2.0839844, 2.5917969, -0.6904297, -0.84033203, 1.0722656, -0.018966675, -1.7792969, 0.3034668, 2.4023438, 1.6416016, -0.039794922, 0.54785156, -1.0361328, 0.9550781, -0.19104004, 0.8959961, 2.125, 1.2636719, -0.15136719, -0.64160156, -1.4716797, 2.8417969, -1.0839844, 0.81640625, 2.3007812, 1.8925781, -1.6464844, 0.8769531, 0.85839844, 2.0546875, 0.56933594, -2.3144531, 0.4399414, -1.7363281, -0.23608398, -2.8261719, 2.3164062, -3.0566406, 0.10675049, -1.5107422, 0.3864746, 1.8818359, -0.47973633, -0.7841797, -0.21130371, 2.7695312, 0.52490234, 0.5625, -1.3701172, 1.8515625, -0.16491699, -0.55078125, 0.93115234, -3.2792969, -0.8613281, -0.103149414, -2.453125, 1.5419922, 1.0634766, 1.8339844, -2.1210938, -2.1796875, 1.9208984, 0.24377441, 0.008407593, -1.6484375, 0.3149414, -2.953125, 0.5625, 2.6210938, 0.6274414, 0.027404785, 0.3425293, -0.8769531, 1.7617188, -3.7324219, 2.3886719, 2.4316406, 3.2539062, -1.8847656, 2.0390625, 0.23669434, 0.51123047, -0.3630371, -1.9296875, -0.90478516, 1.4423828, 3.3398438, 2.8515625, 0.22229004, 2.9726562, -0.23095703, -2.3203125, 0.74560547, -1.6806641, 1.1699219, 1.5986328, 1.2392578, 0.7919922, -0.37817383, -0.4140625, -0.20080566, 1.1064453, 1.2246094, 0.46289062, 1.3164062, -0.12841797, -2.3613281, -0.13305664, -2.5234375, -0.037750244, 1.4658203, -0.056640625, -3.015625, -0.88378906, -0.22045898, 0.15368652, 4.625, 1.5498047, 4.2695312, 1.7685547, 2.4511719, -2.4960938, 0.5253906, 0.83447266, -1.2685547, 0.04763794, 0.86376953, -0.95410156, 0.2607422, -0.22607422, 1.2128906, 0.06707764, -0.234375, -2.7871094, -2.1738281, -2.2382812, -3.046875, 0.16992188, -1.875, -0.41430664, 2.3339844, 1.3964844, -2.1269531, -0.0045394897, -0.9213867, -0.43432617, -0.23852539, -0.48413086, 1.3320312, -3.484375, -1.7666016, 1.0957031, 1.4541016, 1.4160156, -0.049224854, -1.2431641, 3.3945312, 2.1269531, 1.4794922, -2.5351562, -0.24157715, 1.390625, 0.14367676, -1.8710938, 0.041015625, 2.0019531, -1.3164062, 0.69677734, 1.6542969, -0.9213867, 1.0595703, -1.2783203, -0.120666504, -2.3320312, 1.3369141, 2.1269531, 1.2978516, -0.72998047, -3.5410156, -0.26513672, -0.60253906, -0.25634766, 0.49658203, -2.4628906, -3.2871094, 0.3713379, -0.6386719, -0.8017578, -1.9824219, 0.88183594, -0.8598633, -0.3671875, 1.125, -2.5800781, -1.4130859, -1.2294922, 0.5595703, 0.48364258, -1.0996094, -0.54589844, -1.4394531, -1.6816406, -3.9082031, -3.0664062, 0.8173828, -2.875, -0.7402344, 0.94873047, -0.7207031, 0.041412354, 0.44458008, -0.6333008, -0.13952637, -2.4082031, 1.9169922, -0.032562256, 2.109375, 4.2382812, -0.15185547, 1.1494141, -0.08001709, -0.5024414, -0.5209961, 2.1757812, 0.9033203, -0.2286377, -0.12854004, -3.2226562, 0.7265625, 0.3322754, 2.1171875, -1.0400391, -1.7685547, 2.2890625, -0.041870117, -1.3007812, 1.0898438, -0.0008368492, -0.90527344, 0.3725586, -2.453125, -0.9189453, 0.56152344, 3.7558594, 2.0097656, 1.1181641, 1.5302734, 1.8867188, -0.22338867, -1.3125, 1.0185547, -0.3918457, -3.6210938, -0.6113281, 0.26586914, 0.6772461, -0.80322266, -1.9863281, 1.6962891, 1.9521484, 0.5283203, -2.3652344, -0.74560547, 0.23449707, 2.6816406, 1.875, -0.28564453, 0.35180664, 0.8930664, 2.4550781, 0.7451172, 0.86816406, 0.546875, 2.3789062, 0.8256836, 2.3613281, -0.98583984, -0.23779297, 1.7373047, -0.28173828, 0.3083496, -1.9023438, 0.38842773, 0.5161133, 0.27441406, 0.37231445, 0.9692383, 1.3476562, 2.234375, -1.4892578, -0.7451172, -0.5566406, -0.6933594, 2.9804688, 2.3945312, 0.042266846, -1.7382812, -0.3786621, 1.1757812, 2.4277344, -3.0390625, -0.90625, -0.80908203, -1.6689453, 0.8496094, -0.07873535, 1.3115234, 0.9169922, 0.16064453, -2.71875, -1.1748047, -2.25, -4.5507812, -0.8964844, 1.7265625, -2.2988281, 2.703125, 0.27148438, -0.38549805, -0.20922852, 0.71240234, -2.421875, -0.9145508, 0.47753906, -1.2080078, -1.6376953, -0.9707031, 0.6586914, 1.0908203, -2, 1.8623047, -1.9541016, -1.5771484, 0.69970703, 0.18835449, -1.0009766, 0.32006836, 0.086242676, -1.359375, -1.3935547, -1.1777344, 1.7119141, -0.5019531, -1.5732422, 0.11968994, 1.0722656, -0.6147461, -2.1875, 0.37890625, -0.3503418, -1.6181641, -4.328125, 2.6875, 0.18395996, 0.21813965, 0.40649414, -0.88720703, -0.8100586, -1.0703125, -1.1113281, 0.203125, 0.65234375, 0.23364258, -0.8354492, 2.4941406, -3.8828125, 2.2558594, -1.9189453, 1.9873047, -0.57373047, -1.3681641, -0.9682617, -0.43652344, 2.9785156, 0.35888672, 0.87060547, 1.2822266, 0.9169922, 0.24645996, 1.6152344, 1.7519531, -0.84814453, -2.2910156, 0.5698242, -1.2763672, -1.1601562, -1.0400391, -1.2490234, -0.7290039, -1.1591797, -0.19421387, 1.4199219, -2.1210938, 0.23876953, 0.13134766, -0.9375, -1.6259766, -2.5996094, 1.0371094, 1.2890625, 0.04336548, -2.6523438, 0.9736328, -1.5488281, -0.6616211, -4.1015625, 1.2138672, -1.2070312, 0.13769531, 2.8984375, -0.7573242, 1.0585938, 0.67041016, -5.3359375, 1.7539062, 3.75, -0.2088623, -3.2207031, -0.44799805, -3.96875, -0.9433594, -0.5756836, 0.44702148, -0.17858887, 3.6289062, 0.117370605, 1.2705078, 2.9628906, 3.9902344, 0.7294922, 0.93310547, -1.7607422, 2.7929688, -2.078125, -2.1210938, -0.020462036, 2.4160156, -3.9785156, -1.3007812, 1.59375, -0.4345703, 1.6054688, 2.3164062, -0.734375, 0.8359375, 2.4492188, 3.2050781, 3.8164062, 0.2602539, -1.3964844, -3.1074219, 1.3496094, 3.2988281, 3.53125, -2.6835938, -0.6254883, 0.7988281, 1.9365234, 0.7421875, -2.1289062, 0.14331055, 1.5615234, 0.21289062, -0.15319824, 2.1386719, -0.8125, 0.36889648, -0.057250977, 0.5810547, 0.45043945, -1.9931641, 0.37548828, 2.3515625, 1.1777344, -0.23205566, 0.59472656, -1.4492188, -1.0683594, -0.5361328, 1.4248047, 0.9609375, 0.07397461, 0.86328125, -3.0742188, -1.625, -0.04220581, 1.5302734, -2.046875, -1.3056641, -0.59228516, 0.4387207, -0.8647461, 0.4177246, -2.546875, -0.6533203, -0.24597168, 3.4941406, -0.60839844, -1.3007812, -0.62060547, -1.3886719, 1.5419922, 0.76708984, 0.3347168, -1.6748047, 0.124572754, -0.9868164, 1.7050781, 0.41308594, 1.9023438, 0.31811523, -2.8398438, 1.5390625, -0.70751953, 0.5595703, 2.2675781, 0.5996094, -1.1035156, 3.5195312, -0.40893555, 1.5556641, -0.546875, 1.5117188, -0.9814453, -1.1464844, 1.5810547, -2.6757812, 0.8208008, -1.6015625, -3.9121094, -0.6176758, -3.1347656, 0.7060547, 3.6289062, 0.5083008, 1.1660156, 0.33447266, -0.22338867, -1.6816406, -3.046875, -1.6191406, 0.92333984, -3.0371094, 0.8911133, 3.0488281, 0.111328125, -2.1152344, -3.421875, 2.2539062, -1.2724609, 0.9267578, -1.0478516, -0.82128906, 1.4433594, -1.7363281, -0.26489258, -0.8310547, 0.8261719, 0.16271973, -0.83251953, 0.140625, -0.4338379, 1.9013672, 1.0019531, -0.6870117, -1.6113281, 3.234375, 1.734375, -2.0292969, 1.8232422, 1.6132812, 0.89160156, 2.1191406, -2.9414062, 0.31445312, -0.34301758, 2.6640625, -0.8876953, -0.8491211, 0.07928467, -0.10211182, 0.012367249, 0.8486328, 0.4765625, 2.1757812, 1.6132812, -2.9726562, 1.3964844, -1.921875, -1.7988281, -1.6660156, -2.2832031, -3.3984375, -0.70410156, -0.7607422, 1.0449219, -1.7519531, -2.4160156, -0.78027344, 0.38476562, 1.1552734, 1.9863281, 1.6914062, 1.9433594, -3.125, -0.074401855, -0.31469727, -1.1611328, 0.8540039, -1.0859375, -0.62109375, -1.0683594, -0.15100098, 0.53125, -2.0820312, 1.4140625, 1.8408203, -1.7617188, 0.09234619, -0.9355469, -0.5957031, -0.06604004, -1.2626953, 3.2148438, -1.2197266, 3.9863281, -1.7890625, 1.1015625, -0.64453125, -0.81689453, -1.2675781, 0.56396484, -1.7548828, 0.86865234, 0.44140625, 1.4101562, 2.5234375, -0.9868164, 0.12414551, 0.4194336, 1.6572266, -0.6953125, 0.3190918, -1.1396484, 1.5283203, -0.69384766, -1.9501953, 1.3515625, -1.4042969, -0.004184723, 3.2519531, 3.7949219, 1.4550781, -0.16247559, -0.46875, 0.33203125, 0.96533203, 1.4492188, 1.8300781, 2.5878906, -1.5078125, -2.4160156, -1.2509766, 2.4824219, -0.14294434, 3.6367188, -0.29345703, -2.2265625, 0.21374512, -2.4570312, -2.3632812, 0.101257324, 1.1396484, -0.53271484, -2.46875, -0.68310547, 0.11541748, 2.8671875, 4.9101562, 0.6665039, 0.80859375, 0.6713867, 0.6591797, -0.17541504, 2.2753906, 1.1396484, -1.4199219, -0.7890625, 2.2324219, -1.109375, 1.515625, 0.73583984, 1.3320312, -2.3945312, -0.43359375, -1.6523438, 3.0703125, -1.59375, -1.6572266, 0.88916016, 0.14880371, 1.09375, -1.90625, -2.5839844, -1.9697266, -0.85791016, 1.1982422, -1.5507812, -1.6679688, -2.5878906, -3.7070312, -3.9335938, -1.6689453, 0.73779297, 0.028900146, -1.5449219, 0.47265625, -2.4453125, -0.7973633, 1.2695312, -0.3605957, -0.8881836, -0.4333496, -2.125, 1.7177734, -0.48950195, -0.4946289, -0.24865723, 1.6123047, 0.8442383, 0.62646484, -0.79345703, -1.3232422, -3.3632812, 0.7949219, 0.6826172, -0.5571289, 0.33520508, -0.7084961, -0.9145508, 1.9365234, -0.3947754, -0.9223633, 0.13171387, 2.1113281, -2.1289062, 2.109375, -2.3125, 2.8613281, 0.6621094, -0.6308594, -1.2070312, 0.9770508, 4.1132812, 0.45898438, 0.52978516, -0.9604492, 0.29296875, 0.32617188, 1.5498047, -0.97265625, -1.5878906, 2.1210938, 0.9223633, -0.09576416, 0.7553711, -3.0800781, -2.296875, -0.9321289, -1.0292969, 0.90527344, 0.37768555, 0.13952637, -0.58691406, -0.7246094, 2.5390625, -0.019500732, 0.78027344, -2.1953125, -1.0078125, -1.6621094, 1.7695312, -0.4699707, -2.2460938, -1.1845703, -2.3710938, -0.7475586, 0.6557617, 0.4650879, -0.6645508, 0.5253906, 0.052215576, 0.9604492, -2.8417969, 5.3164062, 0.3293457, 0.49389648, -3.4726562, 1.5732422, 2.40625, 1.0458984, -1.5507812, 1.1220703, 2.2558594, -1.0791016, 1.5742188, 2.3691406, -2.5625, -1.0195312, 0.18884277, -0.69189453, 0.58740234, -1.3798828, 3.0097656, -1.0839844, 0.05517578, 0.19348145, -0.60791016, -2.7636719, -0.6230469, 2.84375, 0.32958984, 1.3398438, 1.4589844, 0.7470703, -0.5883789, -0.32958984, -0.84228516, -2.4746094, 0.39257812, 1.0458984, -1.0351562, 0.8725586, 0.4189453, 3.21875, 1.9082031, 2.5214844, 0.3334961, 0.98779297, -1.9667969, 1.0927734, 1.4863281, 1.6494141, 1.6347656, 2.0253906, 2.6210938, 1.7939453, -0.25585938, 0.87158203, -1.6259766, 1.0605469, 0.2919922, 1.7724609, -2.2207031, -1.8105469, 0.034576416, 0.9638672, -3.0488281, -2.7832031, 0.8623047, 0.5004883, -3.0703125, 1.2548828, -1.2910156, 1.4072266, -3.4492188, 2.1054688, -0.67578125, 0.5332031, 0.22460938, 0.20373535, 3.5097656, 0.61279297, -1.4765625, -0.3137207, 0.41235352, 0.5371094, -3.0078125, 0.32836914, 0.09075928, -1.2773438, -0.9550781, 3.9160156, 0.8774414, 1.875, -1.4003906, 0.2631836, -0.28979492, 0.5078125, -0.4165039, -0.78808594, -2.2324219, -1.1074219, 0.91064453, 3.2617188, -0.032592773, 2.1386719, -0.6879883, 1.0888672, -1.4394531, -0.5307617, 0.025924683, 0.036895752, -0.4819336, -2.3027344, 3.4648438, -0.8857422, 1.5791016, -0.56152344, 0.10040283, 1.6269531, 0.06317139, -0.8833008, 1.0634766, -1.0195312, 4.3242188, -0.3684082, -3.0253906, 1.1318359, -0.63916016, -0.9013672, -0.9038086, 0.35986328, 1.0869141, 0.78466797, 0.7133789, 1.7275391, -0.103637695, -0.92578125, -0.12200928, 0.046722412, -0.23095703, -0.38891602, -1.4492188, -1.3105469, 2.453125, 1.6289062, -0.05996704, 0.21252441, -1.3457031, 0.36328125, 0.7661133, -0.69677734, 0.32885742, 0.7109375, 1.4863281, -0.077697754, -2.5917969, 0.8642578, 0.064208984, -1.5712891, 1.8955078, -2.2109375, -1.6132812, 2.9804688, -0.93896484, -0.7241211, -0.6176758, -0.47705078, 3.2265625, 0.06945801, 0.35253906, -0.33691406, -0.4350586, -0.17675781, 0.099853516, 1.546875, 3.0039062, 0.7338867, -0.48632812, 0.34155273, -2.5175781, 1.1943359, 1.8535156, 1.9980469, 0.8071289, -1.9365234, -3.4941406, -0.6230469, 0.3310547, -0.47924805, 2.078125, 3.1464844, 1.4150391, 1.2080078, -1.8779297, -2.1816406, -1.734375, -1.5166016, -0.41357422, 0.8232422, 1.0664062, -0.1505127, -0.90966797, -0.2631836, 1.2246094, 0.6567383, -1.4873047, 0.09008789, -0.23718262, -0.45483398, 1.7431641, 1.3056641, 0.46777344, 1.1210938, 1.0869141, 2.4824219, 0.60253906, 0.59375, -1.4853516, -0.44067383, -2.6757812, 0.43481445, -3.5839844, 0.4946289, 0.82128906, -0.04220581, 1.2197266, -1.8818359, 1.0605469, -4.5742188, -0.96533203]}, "B00HJ6OPAO": {"id": "B00HJ6OPAO", "original": "Brand: Camco\nName: Camco 40547 Thumbscrew & Nut for 40543 Tank Cover\nDescription: \nFeatures: Replacement hardware for Camco propane tank lid assembly\nIncludes two nuts and bolts\nGenuine replacement parts\nSave time and money by replacing just the lid assembly hardware\nDurable and easy to use\n", "embedding": [-0.72265625, 1.1269531, 3.8320312, -2.8476562, 0.24377441, -1.984375, 0.6411133, -1.6425781, 4.0625, 1.8466797, 1.0048828, -0.5214844, 2.5722656, -3.4550781, 1.1171875, -0.35498047, 0.3479004, 0.07940674, 2.7167969, 0.40844727, 3.5273438, -2.4433594, -0.013290405, -1.7548828, 0.16723633, 1.8427734, 3.6445312, -1.4394531, -1.3603516, 0.5761719, 1.484375, 1.0019531, -0.6508789, 2.28125, -0.67822266, 0.28515625, 0.42333984, 1.0009766, -1.3974609, 1.3115234, -3.6152344, 0.3413086, 4.0703125, 0.8930664, -1.7236328, -0.92041016, 0.28271484, 0.7050781, 1.0986328, -2.1972656, 0.55859375, 3.5039062, 0.8671875, 1.6699219, -0.15625, 2.0878906, -0.23864746, -2.0664062, -0.22521973, 0.8256836, -0.26220703, 0.14794922, -1.3408203, 2.5390625, -0.78808594, 3.0917969, -0.9082031, -0.45385742, -0.90478516, 1.8447266, -1.0556641, 3.9394531, 1.3339844, -0.63916016, -0.8544922, -1.7216797, -3.5332031, 1.3525391, -1.1044922, -0.5390625, 0.68896484, 1.9052734, -1.6865234, -2.6660156, 0.91015625, -2.5527344, 0.59521484, 1.2470703, 0.010543823, -0.5966797, 0.1616211, -0.041137695, -3.3027344, -3.3183594, -0.33251953, 1.0966797, -1.5273438, -1.9658203, 4.140625, 2.4648438, -2.8183594, -0.43652344, -0.41748047, -0.11376953, -2.3339844, -1.28125, 0.98583984, 0.037017822, -3.7714844, -0.22875977, -1.8642578, 1.3818359, -0.61816406, -1.7666016, -2.2597656, 0.9838867, -1.0839844, -1.3876953, -0.04949951, -0.48828125, 3.65625, -0.6582031, 0.08282471, -0.39526367, 1.4667969, 1.0800781, 0.07232666, 1.0556641, 2.9960938, 1.6972656, 1.53125, -0.9609375, 2.1640625, -2.2871094, 1.6943359, -1.4853516, -1.671875, -4.1132812, 2.28125, 1.1347656, -4.7890625, 0.7519531, 3.2402344, -0.97509766, -3.7421875, -0.7426758, -2.046875, 1.9912109, -0.043151855, -1.421875, 1.2207031, -1.5019531, -0.42651367, 0.35961914, 1.9677734, 1.2988281, -1.3984375, -0.056610107, -1.2324219, 2.8710938, 0.3630371, -1.9736328, -0.36328125, 0.35742188, -0.23327637, -0.20703125, 0.14257812, -2.7011719, 0.6660156, 3.5566406, -1.15625, -0.8930664, 0.33569336, -2.0625, -1.5878906, 0.15600586, 3.2070312, 2.8144531, -1.1474609, 1.9482422, -2.0703125, -0.90966797, -0.9848633, -0.6850586, 1.0507812, -2.0039062, -0.96240234, -1.5498047, 0.8779297, 1.1445312, 0.6245117, 1.6943359, -0.20080566, -2.3925781, 0.98046875, -2.0371094, -0.10839844, -0.9003906, 1.4570312, 2.1757812, -0.6308594, -1.9179688, -0.5571289, 0.050750732, -2.3515625, -1.296875, 0.6870117, 2.2109375, 2.1015625, 1.2402344, 0.42260742, 0.75683594, 1.6708984, -1.8076172, 0.2175293, -2.1210938, 0.2692871, -0.045166016, 2.5664062, 1.2734375, 2.109375, -0.6635742, -0.4777832, 0.3527832, 0.17126465, 4.1640625, -0.9868164, 1.0791016, 0.36035156, -2.1445312, 0.13952637, -0.80371094, -1.9912109, -0.44213867, -0.6464844, 1.4550781, 0.66259766, -2.3339844, 0.6069336, -1.8681641, 1.4287109, -2.5507812, 0.7241211, -1.4755859, 3.1660156, -0.055999756, -1.6601562, 1.4951172, -0.37963867, 0.18041992, 1.7294922, -0.20629883, -0.7626953, -0.29638672, -2.9511719, 2.8339844, 0.7084961, -0.14465332, 0.31323242, -2.3144531, 0.94921875, 0.2602539, 1.3945312, 1.1669922, 1.0683594, 0.5908203, 0.5859375, 0.06903076, -0.46972656, 1.0361328, 1.0546875, -0.87646484, 0.75634766, -0.47851562, 2.3769531, 2.8125, -1.0068359, 1.46875, 0.031280518, 1.828125, -0.73779297, 0.42944336, 0.8105469, -2.8125, 1.4521484, -1.9052734, -1.1230469, -1.4130859, -2.4042969, 1.1953125, 2.1777344, -0.7973633, -2.0371094, 3.9648438, 3.4941406, 2.1777344, 4.1796875, -1.0322266, -0.49414062, 0.7729492, -2.9257812, -0.79589844, -1.2441406, 2.1269531, -0.027786255, 0.6459961, -0.29296875, -1.265625, 2.5195312, 1.5595703, -2.0175781, -1.1113281, 0.085998535, -0.31835938, -0.34472656, -1.7958984, 2.6074219, -0.35473633, 0.103637695, -1.7041016, 1.5664062, 0.94384766, 0.6796875, -1.9091797, 1.6933594, -0.5366211, -3.6679688, -0.67871094, -0.90771484, 2.203125, 1.7548828, -0.7602539, 0.546875, -1.2011719, 0.11853027, 1.6464844, -2.6542969, -2.3007812, 1.6142578, 0.7895508, 1.8798828, -1.5664062, -0.23498535, 4.8007812, -0.016845703, -1.7333984, 0.67089844, 1.6933594, 2.2363281, -2.875, -1.015625, 3.21875, 0.57177734, -3.6425781, 1.1425781, 1.1044922, -0.3503418, 0.7416992, -0.87158203, 2.2421875, -1.3886719, 1.0166016, 0.89160156, -0.6772461, -1.0322266, 1.640625, 0.8696289, -2.421875, 1.0625, -3.3828125, -0.14294434, -1.2587891, 0.7602539, -1.9628906, -2.4453125, -0.75097656, -0.2220459, 2.8554688, 0.09698486, 1.8388672, -0.8154297, -1.0830078, -0.8154297, -3.1699219, -2.2558594, -0.10076904, 0.6879883, 0.6533203, 0.4399414, -2.9765625, 1.0869141, -2.9882812, 1.1337891, -1.3330078, -2.6777344, -2.1933594, -1.1123047, -1.4335938, 1.4980469, 0.67089844, 0.86035156, 0.6074219, -1.3203125, 0.08428955, 1.0332031, -0.57373047, -1.4794922, -1.7402344, 2.4277344, -0.47729492, -0.19018555, -0.39379883, -0.16259766, 1.3681641, -0.14343262, -2.7089844, 1.3427734, 3.5273438, 0.5961914, 0.34033203, -0.8017578, -2.0839844, -3.9472656, 0.4086914, 1.9824219, 2.0039062, 4.1328125, 1.3388672, 1.3427734, 0.44384766, -1.6396484, 2.2460938, 0.2277832, 0.2993164, 1.4345703, -0.87890625, -0.2541504, 2.03125, 2.0703125, -3.2792969, -0.15466309, 0.1796875, 0.16967773, 2.46875, 2.7929688, -2.7597656, 0.23999023, 1.8388672, 1.6376953, -0.43359375, 1.9931641, -0.45214844, 0.042907715, 0.47265625, -0.09942627, 0.7636719, -0.7421875, 0.22375488, -2.59375, 0.20532227, 0.5073242, -1.8007812, -1.1894531, 0.9838867, -2.9101562, -0.6230469, 0.0039634705, -0.07318115, 1.9355469, 1.8818359, -1.1982422, -0.80566406, -4.75, 1.2519531, 0.8310547, 1.0009766, -0.9501953, 2.234375, 1.0878906, 1.2216797, -1.4599609, 3.5898438, -1.6923828, -1.7412109, 1.5820312, -1.0107422, -1.515625, -2.5429688, 3.7578125, -1.5527344, 1.46875, 0.7475586, 0.84472656, 0.25952148, -1.5537109, -0.8847656, 0.35473633, -1.3164062, 1.8203125, 1.8125, -2.34375, -0.81347656, -1.7675781, 0.80810547, 0.55029297, -2.1074219, -1.3359375, -1.9462891, 0.6826172, -1.7158203, -0.34228516, 0.88916016, 1.0185547, -1.5527344, -0.12420654, -0.49365234, 2.3027344, -0.097839355, -1.3398438, -0.14770508, -0.4963379, -2.1601562, 1.3740234, 2.2070312, 2.8886719, 0.08666992, 3.1660156, -0.7607422, -0.21020508, 1.8427734, 0.25048828, -2.4472656, -0.19067383, 2.7617188, 1.7314453, 2.5195312, 1.875, 2.15625, 3.3046875, 1.7460938, -3.2558594, -3.0429688, -0.35180664, 0.95703125, -3.0449219, -2.1816406, 1.0966797, 2.1035156, -2.2519531, -3.140625, -0.1595459, -1.9892578, 0.52001953, -1.1591797, -1.5273438, 2.2714844, 1.6806641, 0.6269531, 0.96533203, 0.068359375, 0.8798828, 0.036224365, -0.9482422, -3.5527344, 2.9589844, 0.7944336, 0.8730469, -4.0234375, 0.64404297, 3.2988281, -1.125, 1.3447266, -2.3398438, -0.6635742, -0.0017719269, -1.796875, -0.63964844, -0.95458984, 0.5209961, -1.3476562, 2.6308594, 1.3935547, -0.49829102, 0.035003662, -0.4482422, -0.4362793, 3.0546875, -3.5605469, 0.86083984, 2.8886719, -0.484375, 1.1982422, 0.35864258, 0.6171875, 0.7480469, -1.7890625, -1.0126953, -1.4667969, 1.6953125, 1.4619141, 1.8115234, -2.1621094, -1.7255859, 0.14758301, 1.2285156, -0.027999878, -0.5366211, -1.3369141, 0.028442383, 1.3574219, 0.71240234, -2.9316406, -0.40942383, 0.15734863, -2.0527344, 0.34692383, -0.9399414, -0.6850586, -0.02104187, -1.8339844, 0.32421875, -0.5883789, -0.7368164, -1.7626953, 0.8623047, 0.86865234, -1.3828125, 3.1113281, -1.9853516, 3.4277344, -1.9326172, -1.6201172, -1.1484375, 2.1132812, 1.0175781, 1.2861328, 1.1123047, -1.859375, 1.0400391, 0.6040039, 0.70214844, -0.1685791, -1.6259766, 0.15246582, -3.3320312, 1.7792969, 2.6542969, -0.9189453, -1.5722656, 1.6914062, 1.9287109, -0.7758789, 1.5986328, 2.8203125, -0.96435547, -0.37817383, 0.4543457, -0.7416992, -1.3837891, 1.0439453, 0.6328125, 5.078125, -1.5058594, -2.15625, 1.3623047, 1.1826172, 0.10614014, 1.4804688, 0.23486328, 0.3642578, -1.4355469, -3.9042969, -0.30786133, 0.4934082, 2.4804688, 0.74658203, 0.14953613, 0.57666016, 1.5185547, -1.7744141, 2.5332031, -0.08526611, -0.77246094, 0.2824707, 1.1972656, -3.2070312, -2.1347656, -3.1503906, -0.5361328, -0.54589844, 1.5380859, 1.4287109, -1.2177734, -0.043914795, 3.4160156, -1.3085938, -0.87060547, -1.296875, -0.9267578, -1.0332031, 0.5048828, 2.0878906, 0.09838867, -0.98828125, -0.09387207, 0.17004395, 0.32250977, 2.0332031, -0.10235596, -2.9921875, 0.13342285, 1.1240234, -2.3085938, -2.8710938, -1.2158203, 0.55029297, 1.4492188, 1.1757812, -0.73046875, 0.3486328, 0.72998047, -3.5546875, -1.2783203, -1.4335938, -0.28955078, -1.1367188, 0.3010254, 3.1933594, 0.15625, 0.22802734, -0.42797852, -1.546875, 0.85791016, 0.5390625, -4.09375, -2.9648438, 3.9746094, -0.26611328, -0.49145508, -1.125, -2.1035156, 1.5380859, -0.16870117, 1.3701172, -1.4072266, -0.1005249, -2.6347656, -0.06341553, 0.99658203, 1.1152344, -0.31884766, 4.7734375, -0.75, 0.9980469, 1.6503906, 3.5839844, -0.8989258, 2.1523438, 2.046875, -1.3994141, 2.0996094, -0.33154297, 0.98291016, -0.08074951, 3.9394531, 1.5820312, -0.008338928, -0.6274414, -1.4130859, 0.64208984, -2.1289062, -1.5136719, 0.40161133, -0.44921875, 0.6923828, 0.1751709, -1.1640625, 1.5996094, -1.1982422, 0.44482422, -2.21875, 0.10809326, -1.453125, 1.5605469, -1.3076172, -0.26245117, -0.07867432, -0.67529297, 2.0253906, 0.39770508, -0.042510986, 1.0302734, 1.2021484, -1.5585938, 2.296875, -0.23754883, -0.1986084, 0.09503174, 0.22705078, -2.1777344, 0.3095703, 1.2089844, 0.9614258, -1.3056641, 0.19226074, 0.6245117, -0.06237793, -0.92333984, 2.7714844, -2.25, 1.921875, 0.21203613, -0.21386719, -2.6425781, -0.5546875, -0.5024414, -0.28442383, 0.81152344, 0.083862305, -1.4375, -1.7871094, 2.6757812, -0.62158203, 0.66064453, -0.17126465, 0.31640625, -0.6479492, -0.8574219, 1.7607422, -1.1210938, -0.8178711, -1.7490234, -0.84472656, -0.7807617, 0.08294678, -4.0078125, -0.0158844, -2.8007812, 1.6777344, -0.3852539, 1.1142578, 0.6118164, -0.10144043, 3.4082031, 2.9609375, 2.0527344, 0.103637695, 2.1425781, 0.8095703, 3.2773438, 0.89160156, 0.15527344, 0.8955078, 0.0036125183, -0.7949219, 1.1357422, -1.6533203, -0.2208252, 0.117614746, -0.3857422, -0.7211914, -0.33374023, 0.6713867, -2.234375, -2.484375, 0.3232422, -0.47509766, -0.2055664, 2.4824219, -4.0351562, -2.6171875, -0.3935547, -1.1289062, 2.3535156, -0.7524414, -0.48535156, 0.20385742, 1.6259766, 1.078125, 0.7841797, -2.9882812, -3.3027344, -0.79296875, -3.0703125, 1.265625, 1.5146484, 0.52978516, -0.5029297, -1.4355469, -0.6020508, -0.6328125, -2.5273438, -1.3681641, 1.2900391, -0.29125977, 2.1777344, 1.6269531, -0.53515625, 1.1318359, 2.7441406, -1.546875, -3.3769531, -1.5839844, 0.7871094, 0.32470703, 0.8046875, -2.1738281, 0.6201172, 0.6748047, 2.5371094, -0.4519043, -0.48217773, -0.43066406, -2.0058594, 0.064086914, 0.37646484, -0.28930664, 3.8242188, 0.75097656, -1.0917969, -0.01626587, 0.5810547, 1.8789062, 2.140625, 1.3701172, -1.3222656, -0.5371094, -1.0263672, 1.8300781, 1.9033203, -0.5756836, 2.03125, 3.4082031, 2.0566406, 0.5410156, -0.029190063, -2.8632812, 1.0292969, 0.116760254, 2.5527344, -1.6826172, -3.3984375, 0.14123535, 0.15356445, -0.20812988, 0.09564209, 0.24597168, -1.734375, 0.82373047, -0.94628906, -0.45043945, -0.91259766, -0.5957031, 2.296875, -0.1694336, -1.9443359, 0.24707031, -1.2011719, 0.9711914, -0.23254395, 0.82177734, 0.4855957, 2.1914062, 0.37280273, -2.875, 0.27197266, 0.46118164, -0.23413086, -0.20031738, 0.19311523, 0.21154785, -1.9960938, -1.625, -1.0234375, 1.765625, 0.7397461, -0.055145264, -1.9423828, -1.7490234, 0.0034885406, 0.111083984, 1.7412109, -1.3574219, -0.51123047, -0.0657959, 0.118774414, 1.0556641, 0.7392578, -1.6914062, 1.3466797, -5.6015625, 1.9824219, 2.4179688, -0.7680664, -0.056854248, 0.045410156, 1.7597656, -1.4726562, -0.68847656, -2.7421875, 0.6464844, -0.62158203, -2.90625, -0.77685547, -1.0976562, -0.8378906, 1.2539062, 3.2421875, 2.1367188, 1.4453125, 1.3789062, 2.25, -0.71191406, -0.60253906, -1.0820312, -1.8496094, -0.2849121, 0.4831543, 1.9736328, 2.5566406, -0.38354492, -0.40478516, -2.5058594, 0.12536621]}, "B07QRGWTMH": {"id": "B07QRGWTMH", "original": "Brand: LBLA\nName: LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers\nDescription: This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
but also can promote kids hand-eye coordination, creative expression and imaginative skills.

INTRODUCTION
1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
2.Turn on the switch of BBQ grill.
3. Use the sauce bottle to absorb water and add water to the water injection area.
4.Press the buttons, the BBQ grill will light up and emit smoke.

Notice: BBQ Grill requires 3*1.5 V \u201dAA\u201d Batteries (Not Included)
\u00a0 Not for children under 3 years.

PRODUCT SIZE:\u00a047.2*34.5*24.5 CM
PACKAGE WEIGHT:\u00a00.708 KG
PACKAGE SIZE:\u00a024*24.5*12 CM
\nFeatures: \u301019 Pieces Food Playset\u3011Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1\n\u3010Emulational Design\u3011Inject water into the grill, the bottom will feature as an electric \u201cburner\u201d, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls\n\u3010Safe for Kids\u3011Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt\n\u3010Convenient to Use\u3011This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n\u3010Need Batteries\u3011The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations\n", "embedding": [-0.6582031, 2.0429688, -0.22216797, -1.2753906, -1.8554688, 0.41357422, 2.4179688, -0.89941406, 0.4711914, 0.43432617, -1.2880859, -0.43237305, 1.3886719, -3.5273438, 1.5644531, -0.43310547, 1.4384766, 1.1894531, 1.0722656, 0.5263672, -1.0273438, -0.021896362, -0.9868164, -0.3852539, 1.0654297, -0.4777832, 2.9199219, -1.5429688, 1.3662109, -1.3027344, 3.2089844, 0.3466797, -0.625, 3.1796875, -2.921875, -0.86572266, -0.19885254, 1.3574219, -2.0683594, -1.0097656, -0.5019531, -1.8144531, 1.9023438, 1.9482422, -4.25, -0.064819336, -0.46142578, 0.5576172, -0.93066406, -0.4921875, 1.2841797, 1.1074219, -1.4990234, 0.2626953, -2.6679688, 1.5429688, -4.7734375, -0.74121094, -0.34179688, -2.828125, 2.0371094, 0.5307617, -0.50341797, -0.22912598, -0.28930664, -1.2666016, 0.10961914, -3.796875, 1.1582031, -1.2197266, 2.859375, -1.4052734, -0.7080078, -1.3066406, -0.9663086, 0.78515625, -2.6933594, 0.4555664, 0.83154297, -2.0898438, 1.2412109, 1.8076172, -0.17285156, -1.3974609, 0.26464844, -0.20812988, -3.2128906, -1.1298828, 2.4589844, 2.203125, 0.60009766, 1.6464844, -1.2353516, -4.515625, 2.3300781, -1.546875, 0.80371094, -0.3935547, 0.2421875, 3.0449219, 0.18273926, -2.1445312, 0.21069336, -1.5048828, 0.5083008, -0.6616211, 1.3085938, 1.4550781, -1.6689453, -0.19250488, -0.51171875, 2.1953125, -0.12512207, 0.9609375, 0.5498047, 0.62939453, -0.71533203, 2.6113281, 2.3613281, 1.6611328, 4.9335938, -2.3105469, 0.5810547, -2.4921875, -0.57958984, 0.008224487, -0.546875, 2.2519531, 1.4130859, -0.37231445, -1.8193359, 1.1386719, 2.3222656, -1.3671875, -1.9511719, -2.15625, -1.296875, -2.8652344, -1.4902344, 0.2310791, -1.9033203, -1.2021484, 2.6875, 1.0771484, -2.0507812, -0.072631836, -2.0820312, 1.4199219, 0.33862305, -3.7304688, 1.6542969, -2.3828125, -0.21911621, 0.6923828, 2.703125, 0.8691406, -1.3095703, -0.9926758, 0.8251953, 0.19580078, -0.043640137, -0.6591797, -0.04043579, 0.56103516, -1.0097656, -2.1425781, 0.74121094, 2.3203125, -0.67529297, 2.6347656, 0.8730469, -1.5751953, 1.8134766, 0.02243042, 0.0657959, -2.6640625, -2.5546875, 0.8144531, 0.20507812, -1.53125, 0.113098145, -1.6337891, 2.75, 2.5351562, -1.7070312, 0.7636719, -0.8808594, -0.6826172, 0.7036133, -0.98339844, 1.2744141, 0.99853516, -0.83984375, 0.6303711, -1.90625, -0.38305664, -0.53222656, 1.6523438, 1.5400391, 2.7285156, 1.5097656, -0.44702148, -0.18286133, 0.27075195, -1.5390625, -1.9501953, 0.14758301, -3.1171875, 0.9902344, 1.3085938, 1.1132812, 0.05178833, 2.4003906, 0.2746582, 0.30615234, -1.6708984, -1.5859375, -0.30493164, 2.6601562, 3.0722656, -1.7041016, -1.2363281, 0.25585938, 5.5390625, 0.3947754, 0.076538086, 0.6352539, -0.17199707, -2.1816406, 0.5830078, 1.0068359, -0.5107422, -1.1621094, -0.49316406, -0.09991455, 0.58496094, 1.4980469, 0.15307617, -0.21911621, 1.8720703, 0.28271484, -2.4667969, -0.18713379, 0.9770508, 0.20703125, -0.8496094, -0.86621094, 0.026473999, -2.125, -0.17163086, 1.2890625, 1.5214844, 0.8959961, -0.35327148, -0.47973633, 0.6850586, -2.5351562, 0.46728516, -3.4765625, -0.89746094, 2.2617188, 0.89941406, -0.77783203, 3.2792969, 2.6308594, 0.61328125, 4.3515625, -0.38671875, -1.5390625, -1.0292969, -0.023666382, 2.34375, 0.49243164, -1.2138672, -0.1005249, -0.1706543, -0.1965332, -1.5986328, 1.3857422, 0.19995117, -1.5908203, -2.1777344, 1.7578125, -1.5527344, -3.4179688, -0.16333008, -3.3925781, -1.9804688, 1.03125, 1.4042969, 4.1289062, -0.86328125, -1.9648438, 2.9902344, -3.4941406, -0.91308594, -0.7290039, -2.6308594, -0.55566406, 0.58740234, 2.1640625, 1.8886719, 1.1269531, -0.6582031, -0.07745361, -0.11291504, 0.4699707, -0.69970703, -0.21179199, 0.73828125, -1.0605469, -1.3388672, 1.078125, 2.21875, -0.72802734, -0.20056152, -0.031707764, -1.8623047, 1.4541016, 0.92871094, -1.3613281, 0.8613281, -0.15734863, -2.3515625, 1.2353516, 1.9033203, -0.64746094, 2.1152344, 0.2565918, -1.0898438, 0.64746094, -1.7236328, 0.6142578, -1.3583984, -2.4785156, -0.12042236, -1.1679688, -2.3144531, -1.0234375, -1.375, -0.6772461, 1.7558594, -1.6845703, 0.68603516, -0.5908203, -3.8027344, -1.4736328, -0.49267578, -0.8232422, 1.4462891, -0.23693848, 0.9448242, 0.52441406, -2.6738281, 0.9941406, 0.30810547, 2.8105469, 0.6870117, -2.3066406, -0.97998047, -0.80126953, 1.6201172, 0.33569336, -0.3347168, 0.7817383, -0.60253906, -1.1132812, -2.2285156, 2.2773438, -0.4814453, 0.2211914, 0.62597656, 0.21313477, -0.98779297, 0.83154297, -2.2207031, 0.38378906, 4.109375, -1.3369141, 0.7504883, -1.3964844, -0.55126953, 0.097229004, 1.9970703, -1.5927734, 0.26342773, -1.3310547, -1.5722656, 0.9428711, -0.8959961, 0.72216797, -1.3544922, 0.16516113, -1.2958984, 3.4511719, -0.8208008, 2.1464844, -1.9658203, 0.016326904, -1.0585938, 0.6713867, 0.47607422, -1.2109375, -1.0322266, -0.9604492, -2.0214844, -1.3037109, -0.7734375, 3.0058594, -0.8964844, -0.9272461, 0.21166992, 1.1425781, -2.046875, 1.5488281, -2.2792969, 3.2832031, -0.57470703, -0.65185547, -1.0185547, -0.76416016, -1.2158203, -1.5917969, -0.9536133, 2.3789062, 0.18139648, 2.359375, 0.18286133, -1.0712891, -0.8535156, 2.4042969, 1.0839844, 0.72558594, 2.34375, 2.7617188, -4.4570312, -0.034362793, 1.7363281, 3.8066406, -1.7460938, 0.39697266, 0.94970703, 1.0302734, 0.8071289, 0.92626953, 1.8378906, -0.62109375, 1.0478516, 0.16223145, -0.3269043, -1.7734375, -0.058044434, 0.8364258, -2.0507812, 0.016357422, 3.5742188, 0.9477539, -0.0335083, 0.5136719, 4.0117188, 1.1318359, -4.21875, 1.6552734, 0.08258057, 1.6591797, -0.0065574646, 1.2724609, -1.5019531, -0.06921387, -0.5878906, 1.6308594, -0.5332031, 0.15258789, 0.87890625, 2.2617188, 0.44726562, -2.0683594, 0.7626953, 0.3413086, -0.28320312, -2.2402344, -0.1583252, 0.95751953, -2.71875, -0.85839844, -1.203125, 0.37158203, -1.1894531, 2.2851562, -1.7392578, -1.1123047, 0.5644531, 3.5800781, -1.1699219, -1.2148438, -1.8642578, 2.7460938, -0.10595703, 0.1026001, -1.9492188, -3.0683594, 2.234375, -0.38110352, 1.6064453, 0.6328125, -2.4863281, -0.64746094, -0.19714355, 0.39038086, 0.9638672, 0.5996094, 2.453125, 1.0458984, -3.109375, 0.5439453, -3.0078125, 0.18847656, 0.028442383, -3.6738281, 0.7158203, 0.36791992, 0.41992188, 1.7773438, -1.2949219, 0.6928711, -0.74316406, 0.076538086, 1.7451172, -0.22241211, 0.6669922, -1.7607422, -3.1269531, 1.0224609, 0.3918457, -0.8979492, 1.8183594, 0.5415039, 0.44702148, 2.9648438, 0.21179199, 0.3083496, 0.58984375, -1.640625, 0.1986084, 0.5053711, 0.86572266, 1.4736328, 2.3554688, 0.21972656, -1.4091797, -0.56152344, -0.16870117, -0.9296875, 2.2070312, -1.8798828, 1.5195312, -1.4746094, 1.21875, -1.6171875, -0.021560669, -2.6171875, 0.54052734, -1.171875, -0.36694336, 1.0917969, 0.5185547, -0.035369873, 0.48754883, -0.26538086, 0.7080078, -0.83251953, -4.7695312, 0.16369629, 3.3652344, -0.45214844, -1.9414062, -0.32958984, 0.9667969, 0.9536133, -0.32666016, -1.6259766, -1.453125, -2.4042969, 0.7866211, 1.9375, 0.85302734, 2.625, -0.6357422, -2.6445312, -0.04043579, 1.2919922, -2.2265625, -2.8359375, -0.027816772, 0.01134491, 0.61083984, -0.8178711, -0.097595215, -0.8671875, 0.0020961761, 0.46069336, -1.4658203, 1.8544922, 2.1640625, -0.014389038, 4.265625, -1.2753906, -0.7783203, 1.5205078, -3.25, 1.703125, 1.6757812, -0.94873047, 0.23352051, -0.47583008, 0.13708496, -0.14208984, -2.2441406, -0.5913086, 0.90527344, 0.6586914, -0.064575195, 1.4082031, -0.7651367, 1.2148438, -0.13415527, -0.70410156, 1.2089844, -0.5180664, -0.61865234, 0.034606934, -0.39135742, -1.1513672, -0.4711914, 1.0556641, 1.5908203, -0.37939453, 3.046875, 2.7226562, 0.5546875, -0.82470703, -1.6464844, 1.3427734, -1.4892578, 0.4501953, -0.5878906, -0.15808105, 1.3164062, -0.6791992, 1.1171875, -0.63378906, 1.4892578, 0.65625, 0.38867188, -0.36499023, 2.0253906, 2.1816406, -1.5712891, 0.33129883, -1.2910156, 0.10424805, 0.079956055, 1.2158203, -4.6835938, -0.047821045, 1.171875, -0.6870117, 0.7836914, -1.6425781, -2.2558594, 2.2011719, 0.78027344, 0.27026367, 0.2397461, -1.7607422, -0.005859375, 1.0859375, -2.984375, 0.061340332, 0.1529541, 2.5585938, 1.7382812, -2.3242188, 0.7319336, -0.094177246, -0.63427734, -1.1308594, -0.54248047, -2.4023438, 0.070617676, 2.21875, 1.5390625, 1.7939453, 0.1451416, 2.2695312, -3.0039062, 2.1640625, -2.9082031, 1.2988281, -2.4316406, 2.1308594, 3.453125, -2.8867188, 0.43969727, -2.8144531, 2.3632812, -0.5605469, 1.6767578, 0.6640625, -1.734375, -4.2617188, 0.7060547, -1.8984375, -3.2226562, -1.7470703, -1.0917969, 0.7055664, -0.3154297, -0.042877197, -1.2578125, 0.26098633, 0.84033203, -0.49487305, -0.30273438, 0.99365234, -0.93066406, -0.9892578, -0.20080566, -1.1103516, 0.0032691956, -0.11968994, 0.91259766, 1.2402344, -2.0917969, -3.7851562, -1.9541016, 1.6337891, -2.8496094, -1.7148438, 2.328125, 0.33862305, 1.2207031, 0.95996094, 0.9301758, -2.2480469, 0.46557617, -0.13085938, 0.9135742, 0.78466797, -0.14758301, 1.9394531, -1.8544922, -1.2783203, -0.6201172, -3.2089844, 1.7265625, -0.06726074, 0.10998535, 0.55615234, -2.0976562, 1.0185547, -0.6538086, -1.3232422, 1.7617188, -1.2646484, 1.4960938, -0.15429688, -1.3017578, -3.7109375, -1.65625, -1.78125, -0.7504883, 0.9301758, -1.0800781, -0.42529297, -0.39770508, -0.11065674, 0.42700195, 0.35302734, 1.8300781, 1.0820312, 1.6181641, 2.3671875, 0.62646484, 2.9804688, 0.6870117, -0.51123047, -2.7070312, 1.2734375, -1.0429688, -3.0078125, 1.5683594, -0.53564453, -2.9960938, -0.20117188, 0.86279297, 0.4921875, 3.0371094, 2.2363281, -1.8359375, -1.5927734, 0.22058105, -2.8261719, 3.265625, 0.7788086, 1.8066406, -1.8583984, 4.9960938, -2.703125, -1.0205078, 2.4414062, -0.36669922, 2.4101562, -0.87060547, -3.1269531, 1.5966797, -1.4394531, -0.765625, 0.54003906, -0.3046875, -0.35351562, 1.3623047, 1.6445312, -0.56396484, -0.7270508, 4.453125, -1.8232422, 1.5664062, 1.4951172, -0.6279297, -2.5, -0.81103516, 1.0800781, -2.3964844, 0.7319336, -0.8540039, 1.8017578, -0.11138916, -1.3671875, -2.4472656, 0.7714844, 2.2246094, 1.4707031, 2.0898438, 1.6660156, 0.14440918, 2.0683594, 2.8046875, -0.007713318, 0.69677734, 0.70751953, 0.31225586, 0.62353516, 4.8632812, 0.5449219, -2.2636719, -0.06915283, 0.2644043, -1.6826172, 0.78759766, -0.018112183, 0.42285156, -1.125, 0.6040039, 2.390625, -0.06970215, 1.0908203, -2.4414062, -0.2055664, 1.0908203, -0.48828125, -0.77197266, 2.4179688, 0.5517578, 0.2290039, 2.6152344, 1.1855469, 1.1835938, 1.5820312, -1.1894531, 0.7915039, 0.24609375, 0.10821533, -0.14990234, 1.3867188, 1.5302734, -0.35302734, 1.71875, 1.0751953, 1.0048828, 0.5185547, 3.8164062, 0.7998047, -0.45263672, -0.47216797, 0.25927734, -0.2368164, 0.7109375, 0.1619873, 0.01411438, -1.1269531, 0.45898438, 3.4414062, -0.26367188, 2.1054688, 0.7011719, -3.0039062, 1.9091797, 0.11584473, 1.4462891, -0.6879883, 2.0039062, -1.109375, -0.52197266, -0.17785645, 2.3046875, 0.9067383, 0.18469238, 2.4628906, -2.3183594, 0.15161133, 2.7832031, 0.86035156, 0.36743164, 0.8310547, -2.6972656, 2.6113281, -0.8725586, 2.4863281, 0.11242676, 0.82666016, 0.9321289, 2.2480469, 1.4394531, 1.3144531, 2.3027344, 0.5283203, 1.8544922, -0.9511719, -1.2744141, -1.09375, -1.6669922, -2.0488281, -0.6328125, -0.28393555, 0.58984375, -0.71240234, -0.1875, 1.3671875, 1.4794922, 0.43530273, 0.07788086, -1.1621094, 0.6694336, 1.6796875, -0.7011719, 0.39575195, -2.1992188, 0.32421875, -0.10046387, 0.0012378693, 2.3007812, 0.60498047, 2.0664062, -1.7421875, 0.6870117, 0.5830078, 0.7763672, 0.36694336, -1.1796875, -2.6367188, -0.5541992, 1.2041016, -0.37109375, 1.2294922, 2.6132812, -0.5488281, -1.0761719, -0.045837402, -1.4150391, -0.10473633, -0.30419922, -3.5996094, -0.63671875, 2.4472656, 1.8681641, -0.07092285, -2.9042969, -4.0507812, 1.8291016, -0.40698242, 0.9345703, -0.3564453, -1.7939453, -0.7836914, -1.3261719, 2.1328125, -0.093811035, -1.6953125, 0.24035645, -0.40673828, 0.27978516, 0.32714844, 0.78125, 0.22363281, 1.1875, 1.6923828, 1.6357422, 2.4609375, 0.56103516, 0.17150879, 1.8076172, 1.3652344, -2.5566406, 0.69628906, 0.14916992, 0.9589844, -0.5600586, -0.5361328, -0.82714844, -1.9951172, 2.0644531, -0.86865234, -2.2441406]}, "B08W4Y34SR": {"id": "B08W4Y34SR", "original": "Brand: Outsunny\nName: Outsunny 8'x5' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown\nDescription: Don't you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you'd like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

Features:
- The steel roof is UV ray and water fighting for outdoor use
- Double roof has great air circulation and heat reduction
- Two side shelves for placing food and drink
- Including 8 ground stakes and 8 expansion screws for stable standing
- Assembly required


Specifications:
- Color: Brown
- Material: Aluminium, Steel
- Overall Dimension: 8.4' L x 5.2' W x 8' H
- Eave Height: 6.4'
- Shelf Size: 58.25\" L x 8.75\" W x 0.75\" T
- Shelf Height to the Ground: 3.3'
- Support Pole Spacing: 7.1', 5.2'
- Weight Capacity of Each Shelf: 55 lbs


\nFeatures: IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party\nCONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks.\nGREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing\nSTRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come\nBBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4'L x 5.2'W x 8'H, Eaves Height: 6.4'\n", "embedding": [-0.30566406, 1.9892578, 0.8286133, -1.0097656, 2.2460938, -0.5029297, 0.060546875, -1.9404297, 0.59814453, 0.9560547, -1.4248047, -0.029418945, 1.0195312, -4.3007812, 0.13562012, 0.4885254, 1.8964844, 1.9912109, 1.2373047, -1.6914062, 0.22961426, 1.1152344, -1.0488281, 0.54003906, 2.3046875, -0.7949219, 2.6269531, -1.0136719, -0.82373047, -0.2746582, 1.5009766, 1.7529297, -0.20703125, 0.9760742, -2.1582031, -1.3076172, 0.32836914, 0.34521484, 0.65527344, 0.13513184, -1.6523438, -2.5664062, 2.1425781, 0.73828125, -0.9794922, 1.7285156, -2.1054688, -0.36035156, 0.8798828, -1.9765625, 0.40649414, 0.47265625, 1.6347656, 0.40161133, -1.4511719, -0.36450195, -0.6743164, -2.8105469, 1.3769531, 1.0039062, -1.8994141, -3.3144531, -0.4260254, 3.3164062, 0.55371094, -2.0527344, 0.22375488, -2.265625, 1.8349609, -0.08605957, 0.1697998, -1.9443359, -3.5527344, 0.65966797, 0.1427002, -1.1708984, -3.1503906, 1.5185547, 0.859375, -0.78271484, -1.984375, 2.8027344, 1.7285156, -1.4482422, -1.3017578, -0.6591797, -1.3681641, -0.31982422, 1.4462891, -1.2421875, 1.2070312, -0.1673584, -0.8256836, -3.7832031, -0.50097656, -3.7011719, 1.890625, -0.54003906, -0.46142578, 3.2167969, 0.40722656, 0.8730469, -1.0957031, -0.6386719, -1.2382812, -1.6953125, 2.0703125, -2.1171875, -0.5288086, 0.5625, -0.43579102, 0.60009766, 0.26782227, -1.015625, 2.0351562, 0.35473633, -0.6953125, 2.4414062, 1.3076172, 1.5078125, 3.4707031, 2.8007812, 0.87158203, -1.0566406, -0.28833008, -0.89453125, 1.6865234, 0.76708984, 3.15625, -0.20898438, 0.12768555, -1.9511719, -0.88427734, 0.22583008, -2.1269531, -1.3896484, -2.6894531, -0.9814453, -4.6679688, 3.4160156, -1.8222656, -0.2607422, 2.9492188, -0.20483398, -2.234375, 0.9165039, -1.5146484, 2.03125, -0.48120117, -3.4355469, 0.18969727, -1.8828125, -0.67871094, -1.1533203, 0.75927734, -0.20654297, 1.8408203, -2.2890625, 2.8203125, 0.8183594, 1.3730469, -2.0996094, -2.3261719, 2.0390625, 0.69628906, -2.0214844, 1.5625, 1.0009766, -1.3496094, 1.0390625, 3.6523438, -1.2246094, 1.1386719, -0.4501953, 1.640625, -1.265625, -3.2148438, 1.9882812, 1.7490234, -0.1348877, -1.9179688, -1.9570312, 1.2441406, 1.3310547, -0.7294922, -0.87890625, -0.35009766, -0.4309082, -0.32299805, -0.5986328, 0.12188721, 0.020309448, -1.2695312, 0.99853516, -2.8515625, -0.8955078, -0.21618652, -0.1194458, 0.9189453, 1.4160156, -1.0410156, -0.48461914, -2.5644531, 1.3173828, -2.4960938, -0.6953125, -2.6191406, 1.4873047, 0.10241699, 0.7763672, 1.6201172, -0.5649414, 2.0371094, 1.1845703, 0.4650879, 1.4521484, 1.171875, 0.045135498, 2.4355469, 3.7753906, -0.0012722015, -0.1138916, -4.1210938, 3.7871094, 0.1895752, -0.3803711, 1.3662109, -0.16711426, -1.3105469, 1.5625, 1.6640625, 0.1340332, 0.91748047, 1.1650391, -1.3681641, 1.125, 0.73339844, -1.3076172, -0.8647461, -1.5283203, 1.0605469, -1.8935547, -1.1123047, 0.8457031, 0.6303711, 1.1376953, -1.1425781, 1.5771484, 0.68652344, -0.5136719, 0.22192383, 2.2011719, 0.91015625, -0.5527344, 1.3291016, 1.6601562, -0.8183594, -0.3388672, -3.03125, -1.5771484, -0.02949524, -1.5683594, 1.2285156, -0.38378906, 0.8613281, -0.83496094, -1.2246094, 1.0253906, -2.7324219, -1.9833984, 0.35205078, 0.67626953, 1.7128906, -0.86035156, 0.2052002, 1.0664062, -1.2109375, 0.21826172, 0.828125, -1.3925781, 0.38476562, 1.6962891, 1.7724609, -0.7602539, -0.7348633, -1.171875, 0.07739258, -0.6660156, -1.0058594, 0.23278809, 2.4375, -1.0800781, -1.6826172, 3.1367188, -2.0390625, -1.2431641, 1.6416016, -0.65966797, -2.2773438, 1.2685547, 2.1660156, 0.7973633, 1.1650391, -1.1181641, -0.34204102, -1.3125, 0.9970703, -4.8476562, 1.1386719, 1.7421875, 0.6503906, -0.16320801, -1.34375, -0.000995636, -0.20812988, -1.2783203, 2.5, -1.734375, 0.6777344, 4.640625, 0.98876953, 0.5551758, -0.56884766, -2.3496094, -0.5839844, 0.69628906, -1.0527344, -0.17663574, 0.6508789, -1.2910156, 1.7714844, -1.8955078, 1.5039062, -2.2910156, -0.012550354, -2.4355469, -1.0566406, 1.5791016, -3.03125, -2.2441406, 0.75097656, -1.0449219, -3.1210938, -0.25561523, -0.6635742, -4.0078125, 0.08166504, 1.6240234, -0.05291748, 3.4238281, 0.2854004, 1.7558594, 0.12963867, -2.5488281, 0.48535156, 0.828125, -0.7236328, 2.4707031, -3.6621094, 0.061706543, -0.6899414, 1.5634766, 0.12194824, -1.0507812, -1.0107422, -0.52197266, -1.6259766, -3.8320312, 1.3496094, 1.2587891, 0.80566406, -0.80078125, 0.17944336, -2.0839844, -2.2910156, 1.4492188, -0.41870117, 7.1171875, -1.0507812, -0.70654297, -1.4394531, -1.6298828, 0.029174805, -0.5625, -3.3554688, 0.40625, -1.8583984, 0.54052734, -0.82910156, -2.0429688, -0.57910156, 0.75927734, -0.20251465, -1.0615234, 0.04309082, 1.0664062, 0.43310547, -1.4833984, -2.21875, 0.067871094, 0.57666016, -0.12036133, 0.46118164, -1.4814453, -1.3691406, 0.24194336, -0.36767578, -1.5986328, 1.7871094, -1.1181641, -1.0693359, 1.0595703, 1.0390625, 3.0253906, -0.4333496, -1.3759766, 3.0039062, 3.0058594, -0.18640137, -1.7724609, 0.0736084, -0.5751953, -1.9150391, -0.5878906, 2.3886719, 2.8046875, 1.2294922, -1.2861328, 1.1992188, 0.3486328, -0.65625, 0.123291016, -0.68066406, 0.7451172, 2.4667969, -0.29760742, -2.1914062, 0.13830566, 0.94189453, -2.0859375, 0.13476562, -0.5517578, 0.14160156, 2.5117188, -0.3701172, -0.93896484, 1.8300781, -0.34350586, 1.5458984, -2.1308594, 2.6132812, 3.0683594, -2.0644531, 3.4921875, -0.93847656, 0.47875977, -0.32055664, -0.018341064, -0.3708496, 1.6474609, -0.51123047, -3.0078125, 0.5317383, 1.4892578, 0.32543945, -0.9863281, 2.5976562, -1.8203125, 0.4958496, 0.14282227, -0.53564453, 1.6787109, -1.4599609, -1.0400391, 1.1367188, -2.2441406, 0.38916016, -0.5019531, -0.33251953, -0.96972656, -0.50390625, 0.8613281, -0.7480469, -2.1015625, 1.1650391, -4.390625, -2.7011719, 0.32470703, 1.6777344, 0.1887207, -3.0214844, -1.4560547, 2.9316406, 2.0449219, -0.83935547, -0.9448242, 1.0507812, -0.9628906, 2.1308594, 0.26000977, -1.4287109, 1.1748047, -1.7089844, 2.9101562, 1.7226562, -0.9345703, -2.8300781, -1.0019531, -1.8330078, 1.0302734, 1.2148438, 1.4453125, 0.12536621, -2.7324219, -0.70410156, -1.0791016, 1.5595703, 2.46875, -1.78125, -0.82177734, 1.0419922, 0.48413086, 1.5039062, 0.8100586, 2.4941406, 0.8745117, -1.2724609, 2.0371094, -0.19543457, -0.3918457, -1.2900391, -4.5195312, 0.38427734, -1.5517578, -0.4309082, 2.1152344, -1.3857422, -1.4287109, 2.1933594, -1.1679688, -0.38330078, 0.22766113, -1.84375, -0.98095703, -2.7265625, -1.4082031, -0.8300781, -1.2216797, -1.3310547, -2.2695312, -0.28393555, 0.5527344, 1.5166016, 2.0488281, 1.2851562, 0.29711914, -1.8251953, 0.23608398, 1.3603516, 1.3349609, -0.90283203, -0.41064453, -0.066711426, 1.2050781, 1.9404297, 2.1132812, -0.6582031, 1.7255859, 0.8886719, 0.040496826, -0.8989258, -2.21875, -0.4230957, 2.4511719, -0.94628906, -2.0839844, -1.6142578, 0.6010742, 1.2490234, -0.39746094, -1.6679688, 1.5673828, -1.2470703, 0.76123047, -0.7290039, 2.8984375, -0.6816406, -2.3613281, -3.8691406, 0.012924194, 0.13122559, -0.79541016, -2.5644531, -0.09411621, 0.40722656, 2.421875, -1.1464844, -1.9804688, -0.44726562, 0.41259766, 1.5839844, -0.9560547, 1.5742188, 1.1289062, 3.1386719, 4.7109375, -1.6767578, -0.2376709, 3.1308594, -0.59765625, 1.1513672, 2.9316406, 0.02760315, -0.48583984, 1.5068359, 2.4394531, -2.3417969, -3.0332031, -0.31762695, 0.5854492, -1.21875, -2.5761719, 2.8378906, 1.0390625, 0.84521484, 2.5839844, 0.27441406, 2.0800781, -3.8789062, -0.4609375, 0.3017578, 0.18725586, -0.87646484, 1.3339844, 1.5039062, 1.0615234, 1.0986328, 0.3215332, -1.0498047, -1.2041016, 0.8544922, -0.49023438, 2.5273438, -2.5761719, -1.6103516, -0.1149292, -1.8466797, 0.3930664, -0.76708984, 1.2714844, 2.2714844, -1.0742188, 0.04901123, 0.8911133, -1.3720703, 2.7851562, 0.48242188, -0.26513672, 0.796875, 0.18847656, -2.0175781, 0.8173828, -0.040374756, -2.8242188, 0.7895508, -0.34423828, -1.6611328, 2.6660156, 0.14379883, -2.2773438, 2.6308594, -0.05407715, 0.89746094, 0.2763672, -1.7939453, 1.5585938, -0.34472656, -0.37670898, -1.1533203, -0.80810547, 1.8037109, -0.84277344, 0.34716797, 0.77685547, 1.1943359, 0.105895996, -0.51660156, -0.8432617, -2.2792969, -2.3222656, 2.3007812, 2.4726562, 2.859375, 0.70996094, 1.3974609, -4.2070312, -2.1113281, -2.7128906, 3.6660156, -2.9433594, -0.37280273, 0.8828125, 0.8833008, -1.7910156, -1.2734375, 0.79785156, 1.3994141, 0.1538086, 1.7197266, 0.7626953, -0.15515137, -0.6645508, -3.0195312, -3.7460938, -1.4707031, 0.5834961, -0.9819336, -0.055603027, -0.6870117, -0.5371094, -1.4257812, -0.34887695, 2.1835938, 1.8671875, -0.2121582, -0.026779175, 0.58935547, -0.85253906, -2.7636719, -1.4023438, -0.61035156, -2.1074219, 1.0507812, -1.4453125, -2.2480469, 0.05050659, 0.46679688, -1.796875, 0.42236328, 1.3847656, 1.0214844, 0.6958008, 2.3945312, -0.6191406, 0.21276855, 0.08660889, 0.57128906, 1.6914062, 0.9194336, -0.15222168, 1.3818359, -2.8261719, 0.31298828, 0.25708008, -2.9101562, -0.76416016, 1.0634766, 0.13647461, 1.1777344, 1.7832031, 1.3251953, 0.15209961, 1.1240234, -0.3408203, 1.8154297, 2.7910156, -0.33666992, 2.0449219, -1.9599609, -3.1875, -1.6435547, -1.4482422, -3.0800781, -1.828125, 2, -1.1523438, 2.6289062, 2.3867188, 1.6367188, 1.6601562, -1.9257812, 1.3876953, -0.029663086, 0.296875, 0.98779297, -1.1201172, -2.8828125, -4.2695312, -0.22314453, 0.72509766, -0.20812988, -0.7636719, 0.18273926, 0.45581055, -0.34301758, 0.35668945, 0.13293457, 1.3818359, 3.2871094, -0.83740234, 1.9257812, 0.041137695, 0.036834717, 0.55371094, -1.3544922, 1.4433594, 1.5097656, 0.29492188, -0.021697998, 1.2597656, 1.2646484, -0.80859375, 0.45361328, -0.5541992, -1.1054688, 0.84228516, -1.9042969, 0.09460449, 0.10192871, -0.6020508, -2.5058594, 1.9882812, -0.11859131, 0.07342529, -0.039276123, 3.03125, -2.0351562, 0.39941406, 1.5517578, 1.6308594, -0.02420044, -0.45532227, -0.30932617, -0.8129883, 2.359375, -0.4609375, 0.37670898, -0.7915039, 0.9321289, -0.6279297, 1.3232422, 1.2548828, 1.4267578, 2.0683594, 1.2832031, 2.6894531, 1.4755859, 1.7001953, 1.7900391, 1.5, -0.9790039, -4.234375, 0.51904297, 2.5175781, 3.7890625, -0.25732422, 2.2929688, 0.85546875, 1.6875, 0.3930664, 0.16357422, -0.57470703, 0.92041016, -3.6269531, 1.4980469, -0.06500244, 0.25732422, 1.0800781, 1.1503906, -0.55078125, -0.9013672, -3.4492188, -0.86621094, 1.2802734, 1.1601562, 0.17858887, -1.3320312, -0.31811523, -0.44604492, -1.7998047, 2.0585938, 0.04272461, -0.32958984, -2.078125, 0.7817383, 4.8007812, 1.671875, 0.22705078, 2.2871094, -0.5336914, 1.6035156, 3.421875, 2.5527344, 1.5537109, 0.0836792, 0.18664551, 0.37158203, -0.25683594, -2.4082031, 0.86279297, 0.70996094, -1.8828125, -1.0146484, 1.6269531, 1.0136719, 3.2480469, -0.3425293, 0.8852539, 0.50097656, 2.2695312, -2.8613281, -0.053771973, -2.2871094, -2.0292969, -0.35961914, 0.75146484, 0.88964844, 2.9042969, 2.0175781, -0.2734375, 2.25, 0.9536133, -0.640625, -0.25170898, 2.1210938, -0.35424805, 2.6582031, -0.6503906, 2.5117188, 0.63964844, 0.8076172, -1.4238281, -0.05517578, -1.6845703, -0.87353516, 2.5996094, -1.0585938, -0.22351074, -0.5595703, -0.83984375, -0.22558594, -2.2636719, -1.3486328, -0.8105469, -0.63427734, -2.3652344, -1.5244141, -1.4121094, 2.5390625, 0.66503906, 0.42089844, 1.3583984, -0.14099121, 0.78271484, 1.2705078, -0.032287598, 0.17651367, 0.7084961, 2.8261719, -0.48583984, -0.18725586, -0.49536133, 1.8300781, 1.7675781, 0.95214844, 1.2109375, 0.97753906, 1.3173828, 1.8759766, 1.1054688, 0.42163086, -1.8847656, 1.5, 0.74853516, -1.0351562, 1.8544922, 0.49951172, -2.6152344, 1.5849609, -2.6542969, 2.4453125, -0.9399414, -1.7050781, 0.65625, 3.2304688, 3.4316406, -0.80810547, -2.234375, -3.9003906, -0.40625, -0.546875, 1.5722656, -0.60058594, -2.390625, -1.0429688, 0.625, 2.9707031, 0.3215332, -0.31201172, 0.40942383, -0.92333984, 1.5136719, -1.9199219, 0.84814453, 1.4238281, -0.5761719, 0.9838867, 2.3886719, 2.8398438, 0.9458008, 0.37817383, 1.5039062, 1.1630859, -4.7265625, 2.140625, -1.5253906, 0.45385742, 0.36157227, 2.2304688, 1.5820312, -1.4658203, -1.2167969, -3.5136719, -0.44970703]}, "B085WSHG8H": {"id": "B085WSHG8H", "original": "Brand: Jeebel Camp\nName: Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output\nDescription: \nFeatures: \u3010Practicality\u3011Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical.\n\u3010Adjustable Control Valve\u3011On/off switch can adjust the gas refilling speed.\n\u3010Good Quality Materia\u3011Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting.\n\u3010Easy to use\u3011Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors.\n\u3010Include\u3011 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.\n", "embedding": [0.44067383, 1.7226562, 2.46875, 0.3125, -0.16821289, -0.8173828, -0.8623047, 0.5361328, 1.4238281, 2.0234375, 2.5410156, -2.2167969, 2.84375, -4.3867188, 0.8569336, -0.36083984, 0.05999756, 0.43554688, 0.77490234, 0.8671875, 2.9414062, -0.515625, 0.53466797, 0.5527344, 0.2529297, -0.13696289, 4.0195312, -3.0585938, -0.059020996, -0.31933594, 0.86035156, 0.21325684, -0.5986328, 1.5078125, -1.3710938, -1.2236328, -0.92871094, 0.18676758, -4.8359375, -1.03125, -1.4990234, -0.17492676, 3.0332031, -0.1652832, -2.4277344, -1.2480469, -0.13928223, 0.31225586, 1.4931641, 0.14318848, 0.95654297, 2.1289062, 0.35888672, 2.9101562, -1.8867188, -1.5732422, 1.0273438, -1.3310547, 1.8183594, -0.33740234, 0.86279297, 0.6958008, -1.9306641, 1.734375, 0.43432617, 0.36157227, -1.4257812, -1.8710938, 0.77734375, 1.0751953, 0.71240234, 0.7963867, -0.012619019, -1.3652344, -1.6523438, 0.5083008, -3.9863281, 0.6777344, 2.9570312, 0.17492676, -1.3085938, 2.4335938, 0.15344238, -1.6923828, 0.9902344, -0.5986328, -2.0898438, 1.3427734, 2.1289062, 1.1787109, -2.4433594, 0.9765625, -1.109375, -2.9433594, 1.0996094, -1.2080078, 0.7236328, 3.0507812, 2.9492188, 0.7114258, -1.9335938, -0.88916016, 0.64990234, -1.0566406, -2.140625, -1.6025391, 0.5336914, 1.1894531, -2.2011719, 0.39697266, -0.7504883, -0.5419922, 2.7070312, -0.85009766, -1.3212891, -1.1171875, -0.81689453, -1.7460938, 2.8691406, 0.5078125, 3.9589844, 0.8203125, 2.5605469, 0.5541992, 1.7490234, 1.2197266, -0.8701172, -0.6020508, 1.4072266, 1.5839844, 0.43310547, -0.8857422, 1.7509766, -1.5419922, 0.72558594, -2.3632812, -1.1806641, 0.07684326, -2.0234375, -1.8417969, -3.8125, -0.4152832, 2.453125, -0.7602539, -3.5683594, 0.5605469, -2.5273438, 1.609375, 1.6845703, -1.4853516, 1.2675781, -1.3662109, 1.0888672, 1.453125, 3.078125, 2.0644531, -1.2275391, -0.7104492, 1.2060547, 2.6992188, 0.05340576, 0.020812988, -0.7597656, 2.4199219, -0.53125, -3.5742188, 0.41748047, -0.88623047, -0.79541016, 2.2675781, -0.34887695, -2.5566406, 2.4277344, -0.049468994, -0.2467041, -3.1269531, 0.7558594, 2.28125, 1.7861328, 1.890625, -4.9179688, -3.0273438, -0.1505127, -2.4414062, 0.91308594, 0.21704102, -1.2666016, -1.6386719, 1.7666016, -0.8613281, -1.4111328, 2.5214844, -1.5234375, 0.80908203, -1.9619141, -2.0332031, -1.8330078, -1.9648438, 0.0914917, 1.2705078, -2.3144531, -0.6503906, 1.1904297, 0.23132324, -0.9921875, -0.69628906, 0.5151367, -2.0976562, 1.0292969, 2.9238281, -0.064453125, 0.80810547, 2.5703125, -1.4775391, 0.084472656, -2.0722656, 3.1640625, 1.8867188, 2.9589844, 0.20812988, 1.5537109, 1.2177734, 1.5527344, 0.18371582, 2.2734375, 1.0605469, -0.85058594, 0.68896484, -1.8662109, -0.8408203, 4.484375, 0.7841797, -0.02722168, -1.4921875, -0.6958008, 1.8085938, 1.3486328, -1.0253906, 2.8476562, 2.2734375, 0.28271484, -1.7939453, 0.06640625, -2.4277344, -0.05911255, -0.69433594, 0.58935547, -0.18933105, 1.8349609, -0.57421875, 2.125, -0.80908203, -2.5664062, -1.8730469, -1.0019531, 0.9379883, 1.5029297, 1.6738281, 0.8066406, -0.9580078, 1.9736328, -0.56884766, 1.1142578, 2.15625, 0.78808594, 1.5634766, 1.6601562, -1.0449219, -0.6665039, 0.6113281, -0.58691406, 3.0039062, 2.671875, -1.7998047, 1.4238281, -0.28271484, -1.0498047, 1.3642578, -0.08758545, 1.2939453, 1.0976562, -1.9619141, 1.8261719, -3.1445312, 0.93359375, -0.7675781, 1.7314453, 0.14892578, -2.8554688, -0.8310547, 4.09375, -1.7353516, -0.75634766, 2.1972656, 1.6679688, 1.7929688, 1.2431641, -1.2294922, 0.40478516, -1.3330078, -2.5253906, -0.13317871, -0.24829102, 2.3632812, 2.0664062, 1.125, -1.8046875, -1.2216797, 1.6269531, 2.4824219, -2.1210938, 1.78125, -2.265625, 0.44262695, 0.11260986, -0.97314453, 2.3769531, -3.6210938, -0.17712402, 1.7783203, -1.6757812, 0.21350098, 0.9091797, -2.6992188, -0.35205078, -0.7685547, -1.7138672, 0.6147461, 2.0292969, 1.3457031, 0.5522461, -1.0595703, -0.6801758, -2.7441406, -2.4726562, -0.3635254, -0.92871094, -2.8359375, -0.17956543, -1.2480469, -2.0585938, -0.8964844, -0.32739258, 4.0195312, 0.44677734, -0.41479492, -0.95214844, 1.2148438, 0.69384766, -1.8554688, 1.2822266, 4.25, -0.79248047, -4.609375, 0.12335205, -0.7553711, 1.4775391, 0.45947266, -1.1699219, 0.9189453, -0.22631836, 0.10870361, 0.39794922, 1.8085938, -0.7373047, -2.4199219, 1.3798828, -3.4199219, 0.057434082, -0.13415527, 3.1152344, -0.97998047, 1.2636719, -1.0927734, -1.6708984, -1.0839844, -1.4189453, 3.265625, 0.24084473, -0.05255127, -2.0527344, -1.1328125, 0.1821289, -1.5214844, -1.5380859, -0.3564453, 0.1829834, 0.1307373, 0.053100586, -4.78125, 1.1435547, -1.3779297, -0.036346436, -0.54003906, -3.8398438, -1.4746094, -1.7529297, 0.007575989, -0.4477539, -1.25, -1.4228516, -0.08843994, -1.1298828, 0.0690918, 0.12646484, 0.66259766, 0.82470703, -0.8671875, -0.3540039, -1.2568359, -1.5019531, -0.12683105, 0.6425781, 0.99121094, -0.75634766, -4.5976562, 2.2675781, 1.7148438, -1.9892578, 1.3740234, -0.60058594, -0.1619873, -2.1777344, -0.71728516, 3.3652344, 3.0214844, 3.8535156, 0.4206543, 1.203125, 2.0410156, 2.25, -0.49487305, -1.8759766, -1.0849609, 2.8300781, -1.3916016, -0.020935059, -0.51220703, 0.4189453, -3.2324219, 1.6738281, 0.5449219, 0.8017578, 2.0585938, -0.74560547, 1.1162109, 0.9267578, 0.01399231, 0.9423828, 2.4765625, -0.00060749054, 0.85595703, 0.24694824, 0.41333008, -0.40795898, -0.4350586, 0.54345703, 0.011154175, -0.5708008, 1.9755859, 1.8671875, -1.2675781, 1.6679688, -1.515625, -1.6826172, -0.70214844, 0.5878906, -0.12792969, -0.92871094, 0.2529297, 0.69970703, 1.8310547, -1.7431641, 0.59277344, 1.0390625, 1.0976562, -0.85253906, 0.83984375, -1.78125, -0.97314453, -0.22229004, 0.8569336, 0.22265625, -0.81103516, 0.03390503, -2.8417969, 1.2265625, -0.33569336, 1.0527344, -0.30249023, 0.71533203, 0.88916016, -0.87597656, -1.3027344, -2.5136719, -1.1152344, -0.63916016, 0.4855957, 3.4882812, 1.4150391, -1.9111328, 1.0947266, 0.8642578, 1.1826172, 2.0488281, -1.7304688, -2.4765625, -2.9667969, -0.34765625, 0.7285156, -0.12475586, 2.0410156, -0.0680542, -0.70214844, -1.0888672, -1.8691406, -0.20397949, 0.26098633, -0.23742676, -1.7773438, -1.2177734, -0.6269531, 0.51220703, 0.18798828, 2.1113281, -1.3183594, -0.53222656, 1.4677734, -1.9306641, 0.18518066, -0.7036133, -4.4609375, 1.3935547, 1.3095703, 0.71972656, -0.027618408, -0.094055176, -1.0566406, 0.67822266, 1.8935547, -3.5078125, -1.7890625, -0.85253906, 1.7783203, -2.0410156, 0.69433594, 1.5205078, 1.3515625, -1.7929688, -1.9931641, 0.5214844, -3.2675781, -1.7490234, -1.2880859, -2.8613281, 0.089538574, 0.3684082, 0.35229492, -2.9667969, -2.4003906, 1.4287109, -1.6005859, -0.14172363, -1.3994141, 1.5410156, 2.0019531, 1.53125, -0.07098389, 2.9199219, 1.8759766, 0.35058594, -0.7636719, -0.0071258545, 2.7519531, 0.5629883, -2.8476562, -0.6401367, -0.8203125, -1.2871094, 0.35986328, 0.12634277, -1.0419922, 0.15893555, 0.29418945, 0.5800781, 0.6821289, 1.4619141, -1.3427734, -0.6767578, 1.5175781, 1.1591797, -0.55371094, -1.0205078, -0.5839844, -1.5761719, -1.8662109, 0.39868164, -0.32128906, 1.3740234, -0.37890625, 0.94677734, -2.8671875, 0.6743164, 0.83691406, 0.9975586, 1.7402344, -1.6806641, -0.6953125, 0.6279297, 0.8276367, -0.59765625, 0.12054443, -2.2539062, -0.8105469, 1.8349609, 2.3027344, 0.03024292, -0.62841797, 0.58251953, -0.96875, -0.085998535, 0.16955566, 1.3710938, -1.2050781, 0.6098633, -0.2800293, -1.0625, 3.9609375, -0.21081543, 1.4130859, -0.88623047, -0.39233398, -1.2783203, 0.96191406, 1.2841797, 0.35253906, 0.1973877, 0.22583008, 2.8105469, 2.9121094, 0.0982666, 1.1865234, 1.2519531, -2.3496094, -1.3935547, 0.1784668, 1.9511719, -0.99560547, 1.5283203, 1.5214844, 0.92333984, 1.4501953, 2.40625, 0.02180481, -0.44677734, 2.6210938, 1.7294922, 0.984375, -1.6494141, -1.7480469, -0.13476562, 4.296875, -1.4384766, -2.5742188, 0.7753906, 1.5849609, 0.9291992, 1.875, 0.76123047, 0.7421875, -1.890625, -3.1894531, -1.2001953, 0.02923584, -0.21240234, 1.1738281, -1.0351562, 0.5522461, 1.2001953, 1.5009766, 0.9013672, -0.54541016, -1.6933594, 0.8017578, -0.60058594, -1.5527344, -1.3769531, -1.5927734, -2.2324219, -0.09906006, 0.38452148, 0.82714844, -0.15734863, -0.59472656, 1.5302734, 0.12237549, -1.3398438, -0.72021484, 0.68847656, -2.4589844, 0.30249023, 0.56640625, 1.8730469, -1.1376953, 0.4645996, 0.15185547, -0.7885742, 3.3847656, 0.77490234, -0.33398438, -0.66845703, -1.1494141, -1.9072266, -3.8300781, -1.1875, -0.15185547, 1.9375, 0.31347656, -0.7104492, -1.0996094, -0.15710449, -2.1035156, -0.5571289, -2.7207031, 1.1445312, -1.4091797, 0.11468506, 0.96533203, 1.4472656, 0.22302246, -0.86621094, 0.15551758, -0.2758789, -0.17687988, -2.5332031, -2.0351562, 3.4765625, 0.1854248, -0.48291016, -1.5458984, -0.59765625, 0.31469727, -0.9145508, 1.5576172, -1.6171875, 1.3320312, -1.1123047, 0.7973633, -0.02406311, -2.1015625, 0.72314453, 1.4912109, -0.14465332, 0.2692871, 2.0644531, 2.5058594, -0.5625, -1.3789062, 0.74316406, 0.11016846, 0.97021484, 0.9746094, 2.9433594, -0.6977539, 3.1386719, 1.7958984, -0.1739502, 0.28393555, -2.0390625, -2.6230469, -0.14379883, -0.94091797, 0.8227539, -0.61816406, 1.0068359, -0.69433594, -1.7861328, -1.6748047, -0.765625, 0.97998047, -0.5048828, 2.1113281, -2.2890625, 2.3789062, 0.8466797, -1.6328125, -3.234375, -0.984375, 2.9199219, 1.0361328, -1.6054688, 0.013725281, 1.3027344, -1.2509766, 1.9550781, -0.24499512, 3.2617188, 0.36987305, -0.6894531, -2.1484375, 0.32128906, 0.48168945, -2.1289062, 0.09301758, 0.40356445, -1.0136719, -0.48168945, 2.1113281, 2.046875, -1.7324219, 0.8203125, -0.95751953, 0.5883789, -1.7763672, -0.042785645, 0.23583984, -4.140625, 1.0917969, 0.32470703, -3.4101562, -1.6435547, 4.0234375, 0.1217041, -1.1035156, 1.6503906, 0.7158203, -0.8520508, -0.5073242, 1.0029297, 1.3701172, -1.8828125, -0.77001953, -0.47558594, 1.484375, 0.64941406, -2.0371094, 1.7861328, 0.95654297, 1.1611328, 1.2880859, 0.5522461, 1.7138672, 1.4941406, 0.18579102, 3.0175781, 1.53125, 1.5605469, 2.1738281, 0.17456055, 0.7294922, 0.48120117, -0.46679688, -0.41552734, 0.4909668, -2.1132812, 0.8125, -0.7167969, -0.82470703, -1.2880859, 0.058807373, -1.8085938, -1.5527344, 1.0136719, -1.4570312, -0.8222656, -1.6044922, 0.17285156, -2.1464844, 1.0400391, -0.78222656, -0.6381836, -0.066101074, 0.32250977, -0.4633789, 0.89990234, 1.6005859, 1.4804688, -0.29663086, 1.4355469, -0.76416016, -1.953125, -4.5, -2.0097656, -1.4921875, 2.4492188, 0.51123047, -0.88720703, 0.7055664, -0.79833984, 1.8994141, 1.2216797, -0.32617188, 0.3803711, 1.4023438, 0.03540039, 1.3349609, 2.7636719, -1.5634766, 0.6542969, 1.0869141, -2.2304688, -2.2910156, -0.19006348, 0.36914062, 0.65283203, -0.37329102, -4.0664062, 2.7109375, -2.84375, 0.13134766, -2.203125, -0.9477539, 1.7998047, 0.5292969, -1.5732422, 0.25097656, 0.052825928, 0.94433594, 0.3359375, -0.7246094, -0.24890137, 1.9443359, 1.1123047, -0.734375, 0.87109375, 1.0761719, 0.4020996, -0.1496582, 3.8535156, -0.030212402, -0.1940918, 1.7080078, 2.4140625, 1.7363281, 1.7695312, -0.08319092, -1.3486328, 2.5957031, 1.2558594, 1.8447266, 0.12988281, -1.8017578, -1.2373047, 0.28833008, 1.1669922, -1.2382812, -1.0859375, 0.6455078, -1.0976562, -1.4980469, -0.25610352, 0.54345703, -0.6411133, 0.9921875, -0.8041992, -0.6308594, -0.81884766, 0.40625, 1.1933594, -2.6523438, 1.3740234, -0.26757812, -0.640625, 1.0986328, -1.9248047, 1.3984375, -1.671875, -2.0253906, -2.2773438, -0.6513672, 0.9501953, -2.0742188, -0.9555664, -0.5522461, 1.890625, 4.328125, 1.1152344, 0.6816406, 0.46606445, -0.33569336, -0.49780273, -0.6489258, -2.0234375, 0.49609375, 1.5791016, -0.50634766, 0.46118164, -1.4189453, -1.5771484, -2.4121094, -1.2724609, -0.60546875, 0.29882812, -1.5761719, 1.7441406, 2.0253906, 1.4716797, 0.95214844, -1.2324219, -1.7011719, 1.5722656, 1.4306641, -1.4003906, -0.9345703, -0.5371094, 1.1201172, 1, 3.5449219, 2.765625, -1.2382812, -0.53027344, 1.484375, 0.13793945, -1.3222656, -1.2460938, 0.07501221, 0.2130127, 0.84765625, 2.8300781, 2.4023438, 1.1035156, 0.66259766, -1.96875, 1.8378906]}, "B07N2MXJ64": {"id": "B07N2MXJ64", "original": "Brand: YRYM HT\nName: YRYM HT Copper Grill Mat Set of 5-13\"x15.75\"Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill\nDescription:

It\u2019s 100% safe to use FREE from any harmful chemicals that might seep into your food.

The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

\u2605Cook without oil or fats more healthy

*SGS approved
*Foods retain more vitamins and minerals
*Does NOT absorb odors or transfer flavors

\u2605Make Grilling, Baking, Cooking Easier:
*Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
*This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
*It will not retain or transfer tastes or odors between uses.

\u2605Application:
*Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
*Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
*Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

\u2605Simple To Use:
*Simply place this mat on the food grill , It never sticks!
*They can also be cut to fit your particular grill or oven perfectly.

\u2605CLEAN-UP IS A BREEZE!
*Simply clean the mats with warm soapy water.
*Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe\uff01

\u2605Package Included:
5 * Cooper Grill Mats
1 * Oil Brush BBQ Liquid Pen

\u2605GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
Any questions you have, please don't hesitate to contact us

Your Purchase Is Risk Free. ADD TO CART TODAY!
\nFeatures: \u2665 Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves.\n\u2665 Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500\u00b0F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS.\n\u2665 Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package!\n\u2665 Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on!\n\u2665 Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.\n", "embedding": [0.33422852, 1.171875, 1.8427734, 0.70996094, 1.359375, 0.0814209, 1.6513672, -0.5864258, -0.25048828, 2.3496094, -0.3708496, 0.11212158, 1.125, -4.3789062, 1.9150391, -0.53759766, 0.9707031, 1.4716797, 1.7841797, 0.25952148, 0.41357422, 0.5058594, -0.55126953, -1.9130859, 1.2822266, 0.8378906, 3.2265625, -0.076049805, -0.85839844, -1.5644531, 1.1494141, 2.1777344, 0.64208984, 0.93603516, -3.1269531, -1.2939453, -1.078125, 3.3730469, -0.1484375, 0.578125, -1.6230469, -2.9589844, 0.24206543, 1.4306641, -2.8203125, 0.35302734, -0.3701172, 2.7480469, -0.5410156, -3.7285156, 2.4667969, -0.23120117, 2.1503906, 0.546875, -2.5371094, 1.8505859, -1.1474609, -2.1132812, 0.49487305, -0.58740234, 0.8183594, -1.9902344, -0.38378906, 2.1230469, 0.32299805, -1.4638672, 0.56884766, -2.4023438, 0.9472656, -1.9160156, -0.3642578, -0.5053711, -1.0322266, -0.59814453, -1.3789062, 0.5957031, -1.0615234, -1.2675781, -0.51953125, -1.8759766, -0.5385742, 3.4785156, -0.39794922, -2.1601562, 0.8125, -1.9765625, -2.1523438, -1.1035156, 3.9277344, 0.6748047, 0.7763672, 4.0195312, -3.2226562, -4.2265625, -0.057556152, -2.2363281, 0.6044922, -0.9301758, -1.4111328, 1.3632812, -0.96972656, -1.0136719, -0.3544922, 1.7998047, -4.5507812, -1.9521484, 2.0058594, 0.671875, 1.1611328, -0.21032715, -0.9008789, 1.9931641, -1.1845703, -0.3491211, 1.0517578, 0.0904541, 1.2900391, -2.0683594, 2.2734375, 2.5507812, 3.9375, 1.7255859, -0.6064453, -3.34375, 0.27197266, 0.17163086, 1.3476562, 0.9370117, 2.96875, -2.3203125, -0.12231445, -0.070007324, 1.2529297, -1.4873047, -1.2753906, -2.4628906, -1.2226562, -0.44750977, -2.4941406, 1.1220703, 0.44750977, -0.4013672, 2.6601562, -1.0517578, -2.1738281, -0.16638184, -1.9130859, 3.0488281, -2.7617188, 0.068359375, -0.083618164, -0.92285156, 0.39257812, 0.48999023, 2.5839844, 0.35986328, 1.2226562, 0.6928711, 1.4951172, 1.2373047, 0.37426758, -2.4433594, -1.5175781, 0.515625, 1.7685547, -2.4824219, -1.6240234, 1.6835938, -0.0970459, 3.8300781, 1.0576172, -2.0566406, 1.3232422, 0.021377563, 1.0576172, -0.85546875, -0.02633667, 2.5429688, -1.6777344, -0.8251953, -0.4921875, -3.0878906, -0.52001953, 1.9667969, -0.16223145, -0.265625, 1.0244141, -1.2255859, 1.6035156, -1.1259766, 0.2536621, 2.8867188, 1.4912109, 0.13647461, -2.2851562, -0.36694336, -0.08319092, -2.6113281, 1.1083984, -0.39648438, -0.41210938, -0.36547852, -1.0400391, -0.9658203, -2.1601562, -2.7617188, -1.5810547, 2.6621094, 2.0566406, 0.23632812, 0.15161133, -1.5888672, 1.5527344, 1.5419922, -1.8085938, -1.8251953, -0.9116211, 0.2783203, 1.2392578, 1.6181641, -0.62646484, -0.18359375, -0.4074707, 4.1835938, -2.53125, 1.1494141, 0.05883789, 2.0507812, -0.42358398, -1.6044922, 1.0966797, 0.9238281, 0.5917969, -0.9667969, -2.0097656, 2.0449219, 1.5410156, -2.3144531, -0.68066406, -0.101501465, -2.0566406, -0.7011719, -2.6992188, -1.7226562, -0.83203125, -0.3701172, -0.671875, 2.6621094, 0.37109375, -2.5390625, -0.53125, 3.6191406, 1.9208984, -1.5175781, -0.05227661, -0.19506836, 0.28808594, 0.057037354, -1.7275391, -0.80371094, -1.2773438, -0.70214844, -1.5625, 1.0644531, 0.85839844, -1.2431641, 3.2304688, -0.031555176, -2.3808594, -1.3789062, 1.1132812, -1.6455078, -0.41918945, -2.1660156, 1.1914062, 1.1015625, -1.1181641, 1.9863281, 0.9682617, 0.77490234, -0.13098145, 3.5039062, 0.79833984, -1.6435547, -1.6289062, 0.68310547, -2.0859375, -0.94189453, 1.2216797, -0.31640625, 3.2089844, 1.109375, -1.1708984, 3.4609375, -0.7480469, 0.9350586, 2.4882812, 0.034118652, -1.7197266, 0.1361084, -0.3413086, 3.3652344, -1.4365234, -0.3059082, -0.79785156, 0.63378906, 1.6142578, -2.2089844, -0.48876953, 3.609375, -0.65283203, -0.51220703, 0.46606445, 0.79541016, -3.0058594, -1.7382812, 0.6015625, -2.5488281, 0.50439453, -2.3613281, -0.32910156, 0.02142334, -0.49560547, -3.484375, -0.67529297, 1.9648438, -0.09741211, -0.87597656, 1.4179688, -0.8857422, 0.40795898, -1.046875, 1.3583984, -0.89697266, -1.5185547, -1.7275391, -1.3212891, -1.3173828, -0.66259766, 0.13391113, -0.5385742, 1.2646484, -0.9711914, -0.5566406, -0.8730469, -2.0585938, -1.8183594, -0.58984375, -0.73535156, 1.2373047, -1.4677734, 1.3056641, 0.48266602, -5.0273438, -0.02482605, 1.2275391, 0.3881836, 1.3291016, -3.1816406, -0.27392578, 1.4414062, 1.5498047, 1.34375, -0.02796936, 1.1220703, 2.5996094, -2.0078125, -2.7851562, 0.5317383, -0.53125, 0.3635254, -1.4677734, 0.6088867, -2.2050781, -0.85791016, -0.671875, 1.1230469, 4.2578125, 0.2298584, 2.0605469, -0.05319214, -0.94433594, 0.43725586, 0.7675781, -0.9921875, -2.4707031, 1.0751953, -2.7539062, -0.68652344, -1.8085938, -1.0253906, -1.0273438, 0.98535156, 1.0087891, 2.2109375, 0.035064697, 2.8925781, -2.953125, 0.59228516, 1.1425781, 0.48217773, -1.0458984, 0.53027344, 0.34057617, 0.0003118515, -0.8154297, -2.9863281, 0.6044922, 0.63427734, 0.06756592, 0.28955078, 0.89697266, 0.29785156, 1.0488281, 1.1757812, -2.3945312, 2.1132812, -1.28125, -1.6181641, 0.9941406, -0.45532227, -0.86621094, -2.7792969, -0.8701172, 3.6816406, 0.03656006, 1.0361328, 0.6591797, -0.10534668, 3.8320312, 2.2109375, 0.20837402, 0.44750977, 0.61621094, 0.95996094, -1.0380859, -3.9394531, 1.5068359, 0.2692871, -2.2421875, 1.5029297, 0.9248047, 1.1875, 0.016143799, 0.025054932, -0.93652344, 0.6738281, 0.44726562, 3.765625, -0.36767578, -0.35083008, -0.74853516, -0.38964844, 0.013298035, 1.7333984, 1.8789062, 1.7724609, 1.6142578, 1.3759766, 1.0078125, -0.6269531, -2.5351562, 0.32763672, 1.6943359, 0.5361328, -0.9921875, 2.2109375, -1.2929688, -0.7998047, 3.9277344, -2.28125, 0.48242188, -1.0019531, -0.75878906, 1.8369141, -0.42456055, -1.1269531, -1.8916016, -2, -0.30322266, -2.34375, 1.0888672, -2.8632812, -0.50097656, 1.0625, -3.0488281, -4.25, 1.5429688, 3.5292969, -0.5361328, -0.22973633, -2.3476562, 2.5175781, -1.7060547, -1.1699219, -0.4416504, 2.8710938, -1.4121094, 0.9580078, -0.12927246, -1.9082031, 0.6044922, -4.5820312, 0.68603516, 0.80810547, -3.2832031, -1.1015625, -2.1074219, -0.73291016, 0.33764648, -0.27001953, -1.0400391, 0.703125, -2.0996094, -0.08013916, -2.2421875, 0.76904297, -0.8261719, -1.8720703, 1.2597656, 0.75146484, 1.34375, -0.2019043, -0.2836914, 4.203125, 3.140625, -1.6630859, 0.64941406, -3.5253906, -0.27124023, -1.5927734, -4.0976562, -0.734375, -1.6621094, -0.35595703, 4.1210938, 0.11566162, 0.7939453, 2.6933594, 0.6328125, -1.6074219, 0.6665039, -3.0507812, -0.3774414, 0.18591309, 0.6689453, 2.2128906, 2.5078125, -1.3271484, -0.7817383, -0.8491211, -0.8461914, 1.3857422, 0.5888672, 0.36669922, 0.9394531, -1.3398438, -0.3942871, -0.11077881, 0.44848633, -0.9296875, 0.9526367, 1.2539062, 1.4365234, 2.7636719, -3.0507812, 1.3779297, 1.3339844, -0.79541016, -1.1318359, 0.3425293, -0.43359375, 0.8227539, 3.2636719, -0.28515625, -1.5146484, 0.89941406, -0.064331055, 2.7128906, -1.2050781, -0.32177734, 0.37524414, -1.2490234, -0.03994751, -0.16906738, 1.2089844, 2.0390625, -0.38305664, -1.7421875, 0.38476562, -0.34448242, -2.9550781, -1.3623047, 0.4309082, -0.44995117, -1.1992188, -1.2617188, -0.9277344, 2.3632812, -2.1953125, -0.67089844, -1.1191406, 2.6054688, 1.7666016, 1.2197266, 4.6640625, -3.2734375, 0.28833008, 0.86621094, -4.0507812, -1.6972656, -1.8671875, -0.5913086, -2.1152344, 1.1035156, 1.8261719, -0.40014648, -1.2763672, 0.42651367, -0.08013916, -1.4697266, -3.0527344, 1.8242188, -1.8183594, -0.54345703, 2.0097656, 0.033111572, 3.2070312, -1.3339844, 2.3378906, 1.5917969, -1.2167969, 0.015449524, -0.34594727, -1.3964844, 0.22131348, 1.2392578, 0.45581055, 1.5537109, -0.3779297, -0.875, 1.2119141, 0.85546875, -2.4433594, 2.4101562, 0.17480469, 3.0761719, -1.0273438, -0.73535156, 2.4082031, 1.4443359, -1.2177734, 0.59228516, -0.6777344, -0.92529297, 1.4013672, 2.6054688, -1.8144531, 0.6020508, 0.18310547, -1.0214844, 2.3144531, -1.2021484, -1.7900391, -0.43310547, 1.1943359, -0.12976074, 0.75146484, -1.9980469, -0.45385742, 0.59472656, -1.0966797, -1.8154297, -2.2070312, -1.0761719, 2.2460938, -1.5546875, 1.1005859, 0.22839355, 0.54003906, 4.3554688, -1.3388672, -1.3076172, 2.2265625, -0.35620117, -2.0585938, 1.1757812, -1.5322266, -1.5869141, -1.2529297, -0.47192383, 1.0498047, 0.99609375, -0.8125, 0.96240234, -0.9223633, 1.3623047, -1.5810547, 2.6386719, -1.5087891, -0.44140625, 4.0703125, -3.9394531, -2.3339844, -2, 1.8027344, 2.0058594, 0.19787598, 3.9902344, -2.3242188, -0.17956543, 0.15710449, -1.5292969, -1.5097656, -0.33398438, 0.39648438, 0.8466797, -0.040374756, -0.072509766, -0.7055664, -1.7929688, 0.4296875, 0.64501953, 1.6259766, -0.59814453, -1.28125, -0.44799805, -2.1699219, 0.23242188, -0.21801758, 1.2724609, 0.23071289, 4.25, -0.6308594, -1.6162109, -1.1660156, -1.4267578, -2.3027344, -0.18652344, 0.5756836, 0.953125, 0.99365234, 0.33935547, 0.15771484, -0.5883789, 3.9316406, -0.69873047, 0.90478516, 1.9638672, -0.79296875, -0.20251465, -0.7675781, -3.9003906, -0.7114258, -3.0058594, 1.8535156, -0.18334961, -3.3300781, 0.9941406, 1.4990234, -2.1992188, 0.008766174, 1.1425781, 2.8105469, 1.3974609, 0.5234375, -0.46826172, 0.9238281, -3.0742188, -3.3535156, 1.0966797, -0.74121094, -0.69140625, -1.6875, -0.7939453, 0.70214844, -1.0185547, 2.9980469, 0.49731445, -0.30151367, -0.6582031, 1.2705078, 1.1191406, 1.21875, 1.2363281, 0.3623047, -0.5888672, -1.4638672, 1.2333984, 0.06384277, 0.6772461, 1.3818359, -1.8740234, -2.0566406, -2.6816406, -0.28588867, 0.70751953, 1.5214844, 0.62841797, -0.49658203, 0.69189453, 1.8681641, -2.1464844, 0.75683594, 1.7119141, 2.8808594, -2.1816406, 3.4160156, -0.5932617, -3.5195312, 0.84277344, 0.30273438, -1.1464844, 0.06854248, -0.42993164, 0.18395996, -0.7602539, -1.8789062, -1.7255859, -0.42578125, -1.2666016, 1.8154297, -1.8310547, 1.1777344, -0.25073242, 3.5859375, 0.39379883, 2.1523438, 2.0078125, -0.46679688, -1.0771484, -0.4921875, -2.1816406, -0.61816406, 1.8359375, -0.5566406, -0.27270508, -0.107177734, -1.6142578, -1.7773438, 1.0410156, 0.9111328, 1.0429688, 1.1660156, 2.4414062, 3.046875, 2.2519531, 0.91552734, 1.1328125, 3.3457031, 1.6542969, 0.94091797, 0.028762817, 1.953125, 0.95654297, 2.3242188, 0.44433594, 1.7021484, 0.49389648, 0.52246094, 0.83984375, -0.072143555, 0.31445312, -1.4189453, 1.8779297, -0.17480469, 1.1669922, -0.9946289, 1.8994141, -2.1757812, 0.36499023, -2.4511719, 0.7915039, 4.078125, 1.9638672, 1.4199219, 1.1367188, 1.2841797, 2.1582031, -3.4082031, -0.2479248, 1.4277344, 0.78222656, -1.7617188, 2.7441406, 0.63916016, 1.6816406, 0.39404297, 0.38745117, 0.2019043, 1.5683594, 0.52783203, 2.2714844, 0.5058594, 0.20471191, 1.9570312, -1.2685547, -1.6230469, 0.09954834, -0.6694336, -1.2617188, -1.6328125, 0.14379883, 1.8652344, 1.5703125, 0.06304932, -3.5253906, -0.28833008, 0.18835449, 1.2236328, -2.6484375, 0.44921875, 0.35375977, -3.3007812, -2.1816406, 1.2080078, 0.9589844, 1.5556641, 1.2431641, -2.8242188, 1.4697266, 0.082458496, -0.19555664, 1.1699219, 0.88183594, -2.4472656, 2.5703125, 0.015853882, 5.1640625, 2.0214844, 2.5371094, 0.77001953, 0.1484375, 1.7568359, 1.203125, 0.71191406, 0.52734375, -0.76220703, 0.95654297, 0.087646484, 1.7490234, 0.004119873, -1.2011719, -1.7216797, 0.01914978, 0.058654785, -2.0449219, -0.3239746, 0.15673828, 2.2519531, 1.5878906, 0.7294922, -1.9501953, 2.8085938, 2.9003906, -0.40014648, -0.69189453, -1.7519531, -0.07519531, -1.6435547, -1.1787109, 1.9414062, 1.0195312, -0.41357422, -1.8125, 0.8076172, 0.11419678, 0.76220703, 0.12451172, 1.3955078, -1.7802734, -1.1787109, 1.8691406, -0.98291016, 0.15307617, 1.1757812, -0.96484375, -1.3193359, -0.07562256, -3.0859375, -1.4873047, 0.30493164, -2.0820312, 2.0839844, 2.8242188, 1.1660156, 0.024276733, -2.0566406, -2.7832031, 1.1982422, -0.7006836, 1.3271484, 1.0615234, -1.1416016, 0.3894043, -1.9599609, 1.0625, 2.1777344, -1.9287109, -0.7553711, 0.14746094, -0.08911133, -1.7460938, 1.5742188, 0.79296875, 1.6044922, -0.73876953, 2.7207031, 1.9746094, -0.07055664, 2.5390625, 3.296875, 0.98876953, -2.3261719, -0.003282547, 0.5761719, 1.2138672, 1.0957031, -0.28710938, -1.3007812, -1.3681641, -1.3242188, -2.2167969, 0.07232666]}, "B094HHS7Q4": {"id": "B094HHS7Q4", "original": "Brand: my aegean NATURAL\nName: My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ\nDescription:

My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it\u2019s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

The materials used in the manufacture of our product have been chosen with your health in mind. With it\u2019s high quality PTFE-Fiberglass material, it\u2019s long-lasting and suitable for reuse. It\u2019s thickness is 0.2 mm. This thickness is the most preferred.

You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

When using our product, we ask you to pay attention to just a few things:

- Please do not put the grill mat directly on the fired charcoal.

- Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

- Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

- Before cleaning, wait for it to cool down and first clean it with a dry cloth.

- If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

Thank you very much for choosing My Aegean grill mat.
\u00a0

\nFeatures: HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven.\nNON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories.\nREUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It\u2019s easy to clean and there is no need for a grill cleaning. Extends the life of your grill.\nMULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It\u2019s standard size is 15.75 x 13 inches, but you can cut it to any size you want.\nYOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.\n", "embedding": [0.6459961, 1.0742188, 1.3466797, -1.1806641, 1.9394531, 0.94921875, 0.46142578, -1.2177734, -0.15466309, 1.4570312, -1.1503906, -0.42089844, 1.2792969, -2.7109375, 1.2548828, -0.35424805, 1.1855469, 2.0703125, 1.125, 0.7260742, 3.1328125, 0.17016602, -0.6801758, -0.7133789, 0.61816406, -0.30908203, 3.5820312, -0.7324219, 1.7353516, -0.9838867, 1.0869141, 1.7216797, 0.08203125, 1.6787109, -2.6796875, -1.9560547, -0.3256836, 3.7304688, -0.6772461, 1.1855469, 0.06329346, -3.2128906, 0.8041992, 1.8496094, -1.8730469, 0.19128418, 0.38720703, 1.8564453, -0.25439453, -3.5625, 1.0869141, 0.8232422, 2.515625, -0.5810547, -1.7890625, 0.27075195, 0.8725586, -2.8886719, 1.2314453, 0.38500977, -0.43115234, -0.46899414, 1.2402344, 2.7714844, -1.453125, -0.62597656, 0.45532227, -2.1601562, -1.2861328, -2.3613281, 0.21142578, 1.0830078, -1.8652344, 1.6982422, -0.96728516, -0.6245117, -0.5214844, -0.49291992, 1.1484375, -1.7265625, -0.76708984, 0.6381836, -0.48217773, -0.8496094, 0.44384766, -0.50683594, -4.4960938, -0.54296875, 0.6640625, -1.8056641, 0.014389038, 1.6904297, -1.8779297, -5.1835938, -0.03540039, -2.4921875, -0.31054688, -0.7558594, -1.7285156, 2.1640625, -0.8022461, -0.82666016, 0.19750977, 1.1191406, -3.1679688, -2.5800781, 2.3300781, -1.1542969, 1.4667969, 0.7963867, 0.31689453, 0.9350586, 0.34423828, 2.0097656, 2.9433594, 0.74316406, 1.5302734, -1.5224609, 0.86328125, 1.2753906, 4.15625, 0.73291016, -0.45410156, -2.4394531, -0.33007812, -1.5898438, 0.5834961, 1.8847656, 2.3574219, -2.1289062, 0.9458008, -1.65625, -2.4433594, 1.3369141, -2.0722656, -0.6621094, 0.45922852, -0.43725586, -2.1582031, 0.9794922, 0.73095703, 0.453125, 1.5986328, -0.57666016, -1.7714844, 0.3828125, -3.1269531, 2.4921875, -1.4472656, -0.61621094, -0.17211914, -1.4326172, 1.5859375, -0.046173096, -0.5073242, 0.024414062, 0.87646484, -0.4177246, 2.2089844, 1.8203125, 0.8984375, -2.2441406, 0.008926392, 0.39208984, 0.5522461, -2.5585938, -1.1328125, 1.5634766, 0.6845703, 0.17651367, -1.3964844, -2.9921875, 1.8779297, 0.6542969, 0.018417358, 0.79248047, 0.38330078, 1.6425781, 0.14807129, -0.7294922, 0.75097656, -1.7441406, 1.0683594, 1.4150391, 0.017822266, -0.022384644, -0.52490234, -1.1152344, -0.07458496, -1.6171875, -0.56884766, 2.1015625, -0.87597656, 0.54785156, -3.34375, -1.4277344, 0.40673828, -0.9814453, 1.8154297, -1.1953125, -0.87890625, -0.37231445, -1.8095703, 0.3491211, -2.296875, -3.6914062, -4.3515625, 2.4570312, 1.4355469, -0.008071899, 0.42163086, -0.9267578, 1.0742188, 2.890625, -1.2626953, -1.4716797, -0.016815186, -0.6464844, 0.8515625, 1.3037109, -1.6201172, 0.3701172, -0.03463745, 2.8378906, -0.7470703, 1.1230469, 0.83935547, 2.4257812, -1.2197266, -1.4472656, 1.2851562, -0.58154297, -0.22717285, -0.25610352, 0.79833984, 0.7963867, 1.0058594, -0.31445312, -2.4414062, -0.9194336, -1.5136719, -2.0078125, -2.2558594, -0.7133789, 0.15185547, -1.3183594, -0.41333008, 2.765625, 2.015625, -1.796875, -1.3720703, 3.4199219, 0.37524414, 0.29101562, 1.0283203, 1.7910156, -0.7260742, 0.6040039, -2.7148438, -0.45581055, -0.09362793, 1.0097656, 0.04699707, 1.6230469, 2.8691406, -0.45483398, 0.8876953, 0.17138672, -3.25, -1.3505859, 1.7578125, -1.6279297, 0.69628906, -0.4790039, 0.80859375, -0.45166016, -1.5429688, 1.6416016, 0.8046875, 1.1103516, 0.056274414, 2.5078125, 0.97753906, -0.48168945, -1.3193359, -0.80322266, -0.69189453, -0.84277344, 0.9013672, 1.5605469, 3.6972656, 0.9663086, -2.3847656, 2.4257812, 0.20776367, -0.1772461, 2.0332031, -0.012763977, -1.7089844, -0.09857178, -0.06994629, 0.546875, -0.6958008, 0.5234375, -2.5117188, -0.20410156, 1.9423828, -1.9716797, -0.35791016, 1.0791016, 1.0058594, -0.25073242, 1.0400391, 1.3408203, -4.4921875, -1.109375, 0.09753418, -1.5556641, 1.0673828, -0.57958984, 0.44848633, 0.35913086, -1.0244141, -2.7324219, -1.8701172, 1.0400391, -1.09375, 0.050079346, -0.80029297, -0.94189453, 1.3222656, -1.1533203, -0.3479004, -2.2871094, -1.2675781, -1.3925781, -1.5800781, 1.0400391, -0.5917969, -0.22558594, 0.13513184, 1.1552734, -0.6015625, 0.9863281, -0.35595703, -1.9755859, -2.0390625, 0.41381836, 0.83935547, 2.7617188, 0.50927734, -0.5058594, 1.5458984, -3.8378906, -1.1699219, -0.78808594, 0.42089844, 1.9570312, -0.6513672, 0.8027344, 0.31396484, -0.091430664, 0.8823242, -0.65625, -0.037628174, 0.3955078, -1.9160156, -3.2871094, 0.4958496, -3.4609375, 1.4628906, -1.5400391, 0.8696289, -1.4951172, -1.4814453, -0.9511719, 0.2956543, 3.9257812, 0.9458008, 1.0810547, -0.8666992, -1.4775391, 0.68310547, 0.3449707, -0.68652344, -0.73095703, -1.1835938, -2.0546875, -0.005847931, -0.6894531, 0.4020996, 0.03353882, -0.37304688, -0.31933594, 2.2207031, 0.3642578, 2.546875, -3.7285156, 0.10784912, -1.0078125, 0.71972656, -1.53125, 1.8710938, -0.68603516, -0.20324707, 0.1829834, -1.5488281, 0.47485352, 1.0341797, -0.49047852, 0.48217773, 1.5292969, 0.81640625, -0.51660156, 1.1191406, -2.2441406, -0.02720642, -1.3076172, -1.3857422, 2.2460938, 1.2089844, -1.9423828, -1.3544922, -1.453125, 3.0839844, 1.8945312, -0.22338867, 0.66748047, 0.95751953, 2.7421875, 2.7578125, -0.0309906, -1.1513672, 0.13964844, 1.5146484, -0.30200195, -0.7368164, 1.5146484, 0.12512207, -1.6855469, 1.2919922, 0.6669922, 1.625, 1.5947266, 0.73779297, 1.4931641, 1.5917969, -0.21179199, 2.6015625, -0.71972656, 0.97802734, -0.99853516, -0.70166016, 0.64990234, 0.09643555, 1.1464844, 0.5004883, 1.1396484, -0.14880371, 1.1279297, -1.8955078, -2.0625, 0.45385742, 2.1679688, 0.08416748, -2.0175781, 2.1503906, -0.09069824, 0.50927734, 4.4140625, -0.09613037, 1.0322266, -1.5927734, 0.90234375, 0.8730469, 0.24633789, 0.2915039, -3.0742188, -0.67089844, -1.34375, -2.8242188, 0.8383789, -3.1015625, -2.2890625, 0.38793945, -1.0869141, -5.015625, 1.0927734, 4.0585938, -0.53222656, -2.0488281, -0.7026367, 3.0722656, -1.0146484, -1.5761719, 0.27563477, 2.2773438, 0.74316406, 1.8496094, -0.83496094, 1.5478516, 2.4003906, -2.265625, 1.9394531, 0.5419922, -1.0185547, -0.037322998, -1.2382812, -1.8359375, -0.4868164, 0.30249023, -0.34838867, 2.7070312, -2.0371094, 0.89208984, -1.1962891, 1.1484375, 0.21679688, -1.3066406, 0.30078125, 0.8232422, 1.4726562, -0.0982666, 0.06732178, 3.3183594, 1.6572266, -2.6230469, 1.3251953, -2.796875, -0.21411133, -1.6083984, -2.1542969, 0.36254883, -0.85302734, -2.3007812, 2.6269531, 0.22595215, 0.98828125, 3.2050781, 0.25219727, -1.4052734, 0.16149902, -1.3466797, -0.8808594, -0.8803711, -0.14343262, 2.5195312, 0.22644043, -1.1386719, -0.92041016, -1.9492188, -2.4453125, 0.3647461, -0.09844971, 1.1308594, -0.8911133, -2.3222656, -0.7807617, -0.5263672, 0.6074219, -0.81152344, -0.78222656, 0.5419922, 1.9443359, 2.9257812, -1.0732422, 1.8212891, 0.77685547, 0.15478516, -0.48632812, -0.89746094, -1.1630859, -0.20678711, 3.375, -0.87158203, -2.8222656, -0.6069336, -0.2734375, 0.017303467, -0.29614258, -1.1523438, 0.46875, -1.5322266, -0.52685547, 1.234375, 2.4375, 2.2441406, -0.62890625, -0.7915039, -2.0800781, 0.7583008, -1.2265625, -1.9160156, -0.6220703, -0.115112305, -0.061401367, -1.9863281, -1.5263672, 2.1210938, -0.57470703, -0.17492676, -0.8095703, 2.2636719, 1.1113281, -0.35302734, 5.203125, -3.6914062, 0.23632812, 1.5605469, -1.9472656, -1.1787109, 1.9775391, -0.9892578, -2.7949219, 0.49145508, 1.4169922, -2, -2.6601562, -1.2441406, 0.37939453, -1.7617188, -2.5878906, 1.3447266, -0.058135986, -0.2861328, 1.3085938, -0.48046875, 2.0898438, -1.25, 2.2578125, 1.6992188, -0.012359619, 0.25854492, 0.9482422, -1.7392578, -0.75927734, 1.4482422, 1.9853516, -0.5727539, -0.9560547, 0.16796875, -1.2421875, 1.4296875, -3.5136719, 0.6816406, 0.1763916, 1.5566406, 0.39672852, -0.05117798, 2.5839844, 2.6386719, -0.16174316, 1.4384766, -0.5209961, -1.5205078, 1.0341797, 1.8828125, -0.30419922, 0.29589844, -1.265625, -1.0957031, 1.125, -1.7724609, -2.4140625, 0.69970703, 0.6508789, 0.9897461, 0.20263672, 0.35986328, 0.45336914, 1.4882812, -0.4609375, -1.2753906, -1.1582031, -1.2822266, 0.63720703, -0.060943604, -0.32128906, -0.10534668, -0.2800293, 3.5253906, -2.0253906, -1.7070312, 2.9902344, -0.2644043, 0.12225342, -0.29077148, -1.6914062, -2.2539062, -2.078125, 0.013641357, 1.5693359, 1.4980469, 0.25708008, -0.020828247, -1.1650391, 2.3984375, -2.5214844, 1.0888672, -1.4042969, -1.4804688, 2.7832031, -3.4785156, 0.98583984, -1.3671875, 1.6259766, 1.7021484, 1.0214844, 1.7636719, -1.8652344, -0.48828125, -0.4645996, -2.1074219, -1.40625, -0.93310547, 1.1591797, 0.14880371, 0.2277832, 0.56152344, -0.23547363, -0.76416016, -0.29467773, 1.46875, 1.53125, -0.87353516, -0.8354492, -0.62597656, -2.3417969, -0.095947266, 0.37353516, 0.14147949, 0.54052734, 3.4570312, -1.8134766, -1.3876953, -0.38354492, -0.36865234, -2.2382812, -1.8642578, 1.8017578, 0.43725586, -0.1538086, -0.35595703, 2.1503906, -1.3896484, 3.2871094, 0.95996094, 0.7890625, 2.6308594, 0.31689453, 1.2773438, -0.19458008, -3.9414062, 0.94873047, -4.1367188, 0.28857422, -0.047790527, -2.2285156, 1.7216797, 2.6914062, -2.2148438, -0.7060547, -0.49560547, 1.1015625, 2.8398438, -0.5307617, 0.07977295, 1.5058594, -2.0898438, -3.7285156, -0.73339844, -1.1367188, -2.1386719, -1.4121094, -0.12768555, 1.8017578, 0.9580078, 2.3554688, 1.53125, 0.26464844, -1.4863281, 1.2744141, 0.37963867, -0.6044922, 0.59277344, 0.4025879, -2.7695312, -3.0117188, 0.10473633, 0.38549805, 0.29956055, 1.4589844, -0.7832031, -2.9238281, -2.7832031, 1.015625, 1.2441406, 3.0683594, 1.4902344, -0.34985352, -0.43798828, 0.8725586, -1.8378906, 1.3242188, 0.9970703, 3.6523438, -0.9848633, 4.0976562, -1.0869141, -2.8417969, 2.9609375, -0.20605469, 0.25048828, -0.12561035, -1.3623047, 0.7426758, -1.265625, -0.88964844, -1.4072266, 1.0693359, -1.9130859, 1.5322266, -0.6508789, 0.3046875, -0.5756836, 2.3105469, 0.9863281, 2.6308594, 2.7578125, 0.6796875, -0.5263672, -1.1181641, -2.9296875, 1.1289062, 1.6474609, -0.26000977, -0.6791992, -0.46142578, 0.4638672, -0.6586914, 2.8613281, 1.1650391, 1.3242188, -0.47875977, 2.6503906, 3.6386719, 1.8789062, 2.5703125, 0.23132324, 1.8935547, 1.1308594, 0.5292969, 0.7788086, 3.4707031, 0.6098633, 1.5732422, -0.13342285, 1.1552734, 1.8115234, -0.5488281, -0.11102295, -0.062683105, 0.19885254, -1.9072266, 1.078125, 1.4472656, -0.69189453, -1.1728516, 1.2939453, -1.5078125, -0.39379883, -0.41870117, 0.28222656, 3.0527344, 1.40625, 1.9921875, 0.09539795, 0.86083984, 1.6835938, -3.2636719, 1.4404297, 0.84716797, -0.7011719, -1.7412109, 4.2578125, 0.07574463, -0.29467773, 0.09454346, 2.1738281, 0.9057617, 1.6279297, 2.0957031, 0.47924805, 0.9980469, -0.8100586, 2.1875, -1.3994141, -1.9658203, 0.36694336, 0.46166992, -1.59375, -2.3886719, 0.6123047, -1.3203125, 1.0927734, 2.4238281, -5.6171875, 0.4025879, 1.2949219, 2.1308594, -4.0351562, 0.01991272, -1.7001953, -2.28125, -2.0703125, 1.2480469, 2.3652344, 1.3173828, 1.3964844, -1.6201172, 0.35229492, 1.2587891, 0.6894531, -0.46484375, 0.49536133, -0.51464844, 0.31835938, 0.14990234, 2.890625, 3.0058594, 1.3828125, -0.8803711, 0.3864746, 4, 0.6113281, 1.0585938, 0.45898438, 0.0017375946, 0.48486328, -0.2775879, -0.71972656, -0.44848633, -2.3242188, -1.2509766, -0.028076172, -0.3857422, -1.5263672, 1.0527344, 0.17932129, 0.703125, 1.7949219, 0.40698242, -1.2041016, 2.2714844, 2.046875, -1.0625, -2.1855469, -0.86621094, 0.09680176, -1.9433594, -1.296875, 0.36450195, 0.41088867, 0.24597168, -0.68896484, 0.89404297, -1.3154297, 0.51904297, 0.54833984, 1.1855469, -3.0234375, -2.1542969, 0.7758789, -1.0742188, 1.5341797, 2.84375, -1.0751953, -1.0273438, -0.021850586, -0.6591797, -0.040527344, -1.9189453, -0.6772461, 0.77490234, 3.7773438, 2.7128906, -0.42749023, -3.7734375, -1.7900391, -0.4008789, -2.0058594, 3.453125, -0.16394043, -0.90234375, -0.76416016, -2.2792969, 3.3808594, 1.2265625, -1.7929688, 0.10845947, 0.44458008, 1.4697266, -0.42749023, 1.5703125, 1.4365234, -1.5517578, -1.3994141, 2.4960938, 3.6464844, 1.1787109, 2.2285156, 2.7460938, -0.0036449432, -2.3164062, -0.21289062, -0.6738281, 1.1933594, 1.5996094, 0.4050293, -0.45043945, -1.1269531, -0.81396484, -0.4013672, -0.87646484]}, "B07YDCYCGD": {"id": "B07YDCYCGD", "original": "Brand: AugToy\nName: Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas\nDescription:

\u261e The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

\u261e All the food accessories add to the fun that kids has with this grill playset.

\u261e With this play grill, your kids will enjoy a bbq party with his little friends.

\u261e It is really a good Christmas gift for kids who love playing cooking game.\u00a0

\nFeatures: \ud83c\udf57 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids.\n\ud83c\udf62 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun.\n\ud83c\udf3d Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid\u2019s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included.\n\ud83c\udf74 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty.\n\ud83c\udf7b Pretend Play Kitchen Fun for Kids\uff1aWith this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.\n", "embedding": [-2.3359375, 2.1230469, 0.8125, -1.5908203, -1.4482422, 0.6879883, 2.3828125, -1.4511719, 1.1748047, -0.5058594, -0.9477539, 0.016311646, 1.3310547, -3.453125, 0.26489258, -0.13684082, 1.1464844, 1.2597656, -0.060150146, 1.2910156, -0.8852539, -0.039642334, -0.058380127, -0.6948242, 0.9013672, -0.97753906, 2.7792969, -1.4238281, 2.140625, -0.37402344, 2.7441406, 0.49023438, -0.6665039, 2.6738281, -3.4179688, -0.20239258, -0.99658203, 0.8676758, -1.8505859, -0.4880371, -0.91503906, -1.1767578, 1.8955078, 2.7421875, -4.3242188, -0.77441406, 0.7553711, 0.7651367, -2.2441406, -1.7041016, 0.81640625, 1.6953125, -1.3330078, 0.53515625, -3.5488281, 1.6738281, -5.46875, -0.028930664, -0.9213867, -2.7246094, 2.0644531, 0.6879883, -0.76953125, -0.54052734, 0.7011719, -1.1171875, 0.91259766, -1.9960938, 1.4238281, -1.7060547, 3.4746094, -1.3095703, -1.6240234, -0.12072754, -1.2451172, 1.2753906, -1.6181641, -0.101745605, 1.4746094, -2.5683594, 1.2119141, 1.3964844, -0.2861328, -1.6279297, 1.2705078, -0.005836487, -2.1191406, -2.0996094, 2.4804688, 2.9882812, 0.80078125, 2.0585938, -1.6660156, -4.0507812, 1.9824219, -1.4560547, 0.1895752, -0.57128906, 0.18408203, 3.0292969, 0.68896484, -1.9648438, -0.12902832, -2.1699219, -0.07232666, -0.46533203, 1.0654297, 1.0019531, -3.1953125, -0.2993164, -0.7998047, 1.6503906, -0.105407715, 0.74365234, 0.2614746, 0.59472656, -0.33569336, 2.3867188, 2.5332031, 0.5410156, 5.40625, -1.5791016, 0.43725586, -2.3183594, -1.0869141, 1.6113281, -0.12384033, 1.7460938, 2.2753906, -1.2353516, -1.5654297, 1.7529297, 1.8271484, -0.75878906, -2.5878906, -2.4277344, -2.0332031, -2.1210938, -1.8857422, 0.73828125, -1.2265625, -1.8564453, 2.9707031, 0.74316406, -2.1894531, 0.38134766, -1.7050781, 1.5556641, 1.8310547, -1.7441406, 1.7636719, -1.6884766, -0.44799805, 0.08483887, 3.1992188, 0.3466797, -1.5839844, -0.7583008, -0.44995117, 0.44067383, 0.5498047, -1.0595703, -0.67822266, 0.42285156, 0.31469727, -3.3535156, 0.59521484, 2.25, -1.2089844, 2.8554688, 0.6694336, -1.75, 2.3515625, 0.44506836, -0.38598633, -2.8554688, -1.9365234, 1.1298828, 1.3613281, -0.6254883, 1.5380859, -0.28149414, 2.4082031, 2.4589844, -2.3066406, 0.32739258, 0.047943115, -0.21020508, -0.12573242, -0.99365234, 0.54589844, 0.79345703, -1.6044922, 0.3647461, -2.8320312, -1.0986328, 0.020629883, 1.3535156, 1.7197266, 2.2402344, 0.31420898, 0.050109863, -0.86621094, -0.15991211, -2.3554688, -2.4667969, -0.54833984, -3.4746094, 1.2353516, 0.2631836, 2.0488281, 0.4182129, 1.8652344, 0.48266602, 0.09136963, -1.6210938, -1.8291016, -0.7036133, 2.3632812, 2.2519531, -2.1972656, -0.14160156, 0.5126953, 4.9960938, 0.79296875, 0.3947754, -0.4194336, 0.10095215, -2.7011719, 0.38110352, 0.41479492, -0.61279297, -2.3359375, -0.62646484, 0.10095215, 0.46166992, 2.6542969, 0.48510742, 0.18786621, 2.2167969, 1.1552734, -3.0332031, -0.5263672, 2.0605469, 0.4038086, 0.31933594, 0.060943604, 0.8154297, -3.4238281, 0.38867188, 0.63427734, 0.6088867, 1.5234375, -0.14978027, -0.78515625, 0.94140625, -3.234375, 1.5625, -3.5976562, -0.7758789, 2.6816406, 1.5107422, -1.1894531, 3.171875, 2.8808594, 0.8886719, 4.8515625, -1.1142578, -1.0751953, -1.5, 0.25195312, 1.6699219, 0.3461914, -0.9790039, -0.6074219, 0.4567871, -0.28466797, -1.7431641, 1.5136719, 0.44628906, -0.84765625, -1.4716797, 1.7783203, -0.9042969, -3.6660156, -0.8432617, -2.7636719, -2.828125, 1.7441406, 0.9321289, 4.8085938, -0.3334961, -1.3408203, 1.9511719, -2.9433594, 0.72753906, -0.037750244, -2.5703125, -1.3652344, 1.1650391, 1.8369141, 1.0224609, 0.103759766, -0.34326172, -0.22253418, -0.006072998, 0.8510742, -0.3479004, -0.3083496, 1.1279297, -1.2402344, -1.8759766, 1.2646484, 1.2314453, -0.1940918, 1.1601562, -0.7861328, -1.7021484, 1.7021484, 0.44726562, -1.3769531, 0.4741211, -0.3190918, -1.375, 1.4296875, 2.34375, -0.106933594, 1.4677734, 0.6928711, -1.1845703, 1.1777344, -0.34692383, 0.5463867, -2.546875, -2.5, 0.28198242, -1.3251953, -2.4121094, -1.0791016, -0.9111328, -0.91845703, 0.98291016, -1.5859375, -0.25097656, -0.93408203, -3.7910156, -1.0634766, -0.06951904, -1.6103516, 1.8183594, -1.3828125, 1.9697266, 1.5009766, -3.3203125, 0.49291992, 0.79003906, 3.3261719, 0.9199219, -2.765625, -1.0214844, -0.7573242, 1.4521484, 1.5996094, -0.56347656, 0.68652344, -0.74121094, -1.4873047, -1.3486328, 2.2460938, 0.47387695, -0.6694336, 1.0927734, 0.009651184, -0.36010742, -0.38183594, -1.0693359, 0.75878906, 4.34375, -1.0683594, 0.9848633, -0.46704102, -0.70166016, 0.27270508, 1.7314453, -1.71875, 0.31811523, -0.98828125, -1.7011719, 0.5136719, -0.17980957, 0.38476562, -1.6416016, 0.26416016, -0.62109375, 3.0058594, -1.0039062, 2.1855469, -1.6806641, -0.24255371, -1.0966797, -0.7114258, 0.921875, -0.70458984, -0.42529297, -0.12536621, -1.5908203, -2.3652344, -1.5410156, 2.5175781, -1.3808594, -0.49414062, -0.20922852, 0.99365234, -2.2988281, 2.1992188, -2.8183594, 3.6054688, -0.9165039, -0.8330078, -0.8466797, -1.1630859, -1.1953125, -3.3535156, -0.26416016, 2.8378906, -0.50390625, 0.9482422, 0.77441406, -1.6845703, 0.103759766, 2.3144531, 0.8911133, 0.6948242, 1.1796875, 2.9804688, -3.828125, 1.5634766, 2.2832031, 4.171875, -1.9619141, -0.14929199, 1.3994141, 0.6513672, 0.7817383, 0.3046875, 1.3017578, -0.4399414, 0.7661133, 0.64453125, 0.58984375, -1.7851562, -0.93408203, 0.5419922, -1.6689453, 0.78125, 3.2519531, 0.18835449, 0.26538086, 1.3066406, 3.1171875, 0.75390625, -2.6621094, 1.3310547, 0.07678223, 0.78271484, -0.015792847, 1.2304688, -1.2832031, -0.11529541, -0.8676758, 0.98779297, -0.017242432, 0.0057792664, 0.73583984, 3.3066406, -0.36450195, -2.5820312, 0.027938843, -0.06689453, 0.5620117, -0.93359375, 0.5888672, 0.15856934, -2.2480469, -0.79345703, -0.8022461, -0.70703125, -1.1064453, 2.6875, -1.9238281, -1.1035156, -0.1472168, 3.9082031, -0.59033203, -0.49291992, -1.3525391, 2.1171875, -0.5708008, -1.3349609, -1.7324219, -2.7753906, 2.2089844, -0.7949219, 0.9526367, 0.53564453, -2.2382812, 0.41870117, 0.8623047, -0.9526367, 0.52783203, 0.89404297, 2.7480469, 1.875, -2.7988281, 0.024993896, -3.1464844, -0.24609375, -0.066223145, -3.5976562, 1.0820312, 1.6044922, 0.72802734, 1.5517578, -1.4814453, 1.2285156, -0.13537598, -0.21081543, 1.2705078, -0.0390625, 0.10046387, -1.7597656, -3.0117188, 1.5039062, -0.953125, -0.68896484, 1.6171875, 0.46533203, -0.5341797, 3.6796875, 0.8959961, 0.83691406, 0.43408203, -1.4365234, 0.43164062, 0.4494629, -0.35131836, 2.0507812, 0.3347168, 0.49487305, -0.27441406, 0.32226562, 0.52978516, -1.5234375, 2.4433594, -2.0371094, 1.7490234, -2.0195312, 1.4482422, -1.0302734, 0.5864258, -3.5253906, 0.40551758, -0.8491211, -1.2207031, 1.7753906, 0.88134766, -0.25805664, -1.0820312, -0.69433594, 0.4958496, -0.7636719, -4.2265625, -1.0947266, 3.2636719, -0.45922852, -2.6308594, -0.118896484, 0.41137695, 0.96533203, -0.7451172, -1.0673828, -2.3183594, -1.7470703, 1.0126953, 2.421875, 1.0488281, 2.3632812, -0.77978516, -3.5078125, -1.1152344, 1.2685547, -2.4492188, -2.6484375, -0.15783691, -0.9370117, 0.86328125, -1.1767578, 0.24707031, -0.5751953, -0.2614746, 0.09222412, -0.875, 1.9306641, 2.3535156, -0.8125, 4.671875, -0.23046875, -1.0214844, 1.03125, -2.890625, 1.59375, 0.9375, -0.75341797, 0.4477539, -0.27319336, -0.55126953, -1.1572266, -2.0429688, -0.21008301, 0.92822266, 0.6245117, -0.4296875, 2.1367188, -0.2788086, 1.5341797, 0.08068848, -1.5283203, 1.3720703, -0.6113281, -1.1123047, 0.067871094, -0.5097656, -1.3378906, -0.46289062, 1.0390625, 2.1015625, -0.7216797, 3.265625, 2.515625, 0.8574219, 0.00667572, -1.3007812, 0.7758789, 0.12878418, 1.2285156, 0.42358398, 0.32861328, 1.1796875, -0.16027832, 1.1972656, -0.8642578, 2.4238281, 1.4414062, -0.7729492, -0.98046875, 1.6396484, 1.875, -1.2421875, -0.38793945, -0.86328125, 1.6953125, -0.8300781, 0.9042969, -4.71875, 0.0015087128, 1.2236328, -1.5683594, -0.06890869, -2.1464844, -3.5078125, 2.0839844, -0.33276367, 0.41430664, 0.91503906, -1.5058594, 0.81591797, 0.45214844, -2.2304688, -0.0010585785, 0.5371094, 2.4335938, 0.47802734, -2.1503906, 1.2597656, -0.921875, -0.22668457, -1.2070312, -0.69921875, -3.2148438, 0.33544922, 3.0742188, 0.8261719, 1.2988281, -0.1459961, 2.9785156, -2.5371094, 2.5371094, -3.1386719, 1.1933594, -2.5917969, 1.2587891, 1.7246094, -2.6035156, 0.20837402, -1.9589844, 1.9052734, -0.6542969, 2.2070312, 1.2177734, -2.0742188, -2.8945312, 0.7026367, -1.9501953, -3.1191406, -1.8935547, -0.6503906, 1.3154297, 0.07720947, 0.66259766, -0.2322998, 0.4633789, 1.0371094, -0.15002441, -0.6411133, 0.69921875, -0.59228516, -0.4411621, -1.4863281, -1.0888672, 0.5751953, 0.71191406, 2.2988281, -0.19458008, -2.7929688, -3.1953125, -1.0625, 1.9765625, -3.7871094, -0.9873047, 1.7685547, -0.20361328, 1.2919922, 1.6386719, 1.1689453, -1.0107422, 0.4506836, -0.20227051, 0.54833984, 1.1210938, -0.008918762, 2.453125, -1.6953125, -1.2373047, -1.1103516, -2.0703125, 2.3320312, 0.4411621, 0.29614258, 1.7431641, -1.3535156, 0.7739258, -1.2548828, -3.1230469, 1.2324219, -0.07293701, 1.7636719, 0.0009074211, -0.9916992, -3.7871094, -2.3027344, -1.9130859, -1.5566406, 1.4160156, -1.4726562, -0.58496094, -0.5131836, -0.26757812, 0.42163086, -1.0791016, 2.5625, 0.75878906, 1.4560547, 2.2597656, 1.2285156, 2.4707031, 0.65722656, -1.2636719, -1.6318359, 0.093322754, -0.48364258, -2.2207031, 0.9604492, -0.39819336, -2.4375, 0.73779297, 0.97509766, 0.82470703, 2.9316406, 1.0146484, -1.8671875, -1.5898438, 0.6333008, -2.5527344, 4.0078125, 0.78808594, 1.2646484, -2.40625, 4.8945312, -2.8417969, -0.004802704, 2.5078125, 0.44628906, 1.4365234, -1.0556641, -3.5214844, 0.859375, -0.37231445, -0.9169922, -0.21496582, -0.5214844, -0.4802246, 1.5498047, 1.9511719, -1.5488281, -0.7939453, 3.8632812, -1.9941406, 1.5175781, 2.5019531, 0.12597656, -1.3730469, 0.27197266, 1.6796875, -2.984375, -0.12963867, -0.80566406, 2.0488281, 0.3239746, -1.9169922, -2.2753906, 2.0292969, 2.3652344, 0.5205078, 2.3984375, 2.0371094, 0.6904297, 3.0332031, 3.1308594, 0.91015625, 0.6567383, 1.6914062, 0.12512207, 1.1542969, 4.9765625, 1.5830078, -2.2109375, 0.2524414, 0.5620117, -1.7373047, 0.7763672, -0.3083496, 0.79296875, -1.3574219, 0.99658203, 2.2070312, -0.31884766, -0.12805176, -3.515625, 0.8310547, 0.18798828, -0.27124023, -0.46875, 2.9882812, 0.014884949, 0.15917969, 1.7080078, 1.2958984, 0.74316406, 1.4404297, -2.6328125, 0.75146484, -0.10845947, 0.2619629, -0.5463867, 2.1113281, 0.7011719, 0.50927734, 0.9814453, 0.7919922, -0.32788086, 0.47802734, 3.9707031, 0.63427734, 0.44091797, 0.390625, -0.5131836, -0.18676758, -0.17700195, -0.04547119, -0.38085938, 0.14904785, 0.33618164, 3.8105469, -0.37353516, 1.8740234, 1.0771484, -3.1542969, 2.703125, 0.35620117, 1.4726562, -0.45239258, 2.7167969, -1.7314453, -0.15344238, -0.6821289, 2.1269531, 1.2167969, 0.9873047, 1.1376953, -2.8125, 1.0410156, 2.3222656, 0.88134766, -0.75390625, 1.2509766, -4.0234375, 1.5722656, -0.53759766, 2.5136719, 0.63916016, 0.3388672, 2.2050781, 1.3662109, 0.6923828, 1.7939453, 2.1757812, -1.5351562, 1.3095703, -0.23522949, -2.4316406, -0.80908203, -0.9995117, -1.8564453, -0.54541016, 0.88134766, -0.38598633, -0.57177734, 0.08691406, 0.953125, -0.5761719, 0.0206604, -0.1776123, -0.9736328, -0.58496094, 1.6982422, -0.008125305, -0.5678711, -1.9833984, 0.59228516, -0.38964844, -1.5761719, 2.8671875, 0.5551758, 2.171875, -1.8476562, 0.56347656, 0.81884766, 0.024810791, -0.22277832, -1.5058594, -3.0976562, -1.2197266, 0.6357422, 0.5595703, 1.7626953, 2.4375, -0.58447266, -0.90771484, -1.4345703, -2.9238281, -0.6743164, -0.12878418, -3.8417969, -0.29833984, 2.9804688, 2.8535156, -0.34301758, -3.4707031, -3.8769531, 1.4023438, -0.83447266, 1.1865234, -0.00548172, -1.8085938, -0.98583984, -1.0527344, 2.1230469, 0.06021118, -1.1777344, -0.6166992, 0.008842468, -1.1611328, 0.60595703, 0.7158203, 0.69677734, 2.6523438, 1.7333984, 2.3378906, 2.703125, 0.50390625, 0.7001953, 1.4589844, 1.0683594, -1.7294922, 1.5009766, -1.2050781, 1.5527344, 0.36743164, -0.7182617, -0.7348633, -2.5527344, 1.5458984, -1.7363281, -2.8535156]}, "B095KPPWGG": {"id": "B095KPPWGG", "original": "Brand: Lamesa\nName: Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.\nFeatures: 7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills.\n100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill.\nResusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up.\nFood-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F.\nIf you are not happy with your new grill mats, please contact us for a refund or replacement.\n", "embedding": [0.58251953, -0.006034851, 1.2841797, -1.15625, -0.84814453, -0.19140625, 1.2666016, -0.06427002, -0.021453857, 1.9589844, -1.1357422, -1.7158203, 0.33984375, -2.7636719, 1.828125, -1.6015625, 0.53759766, 2.0410156, 3.3730469, -0.038604736, 0.41357422, 0.26904297, -0.5, -1.6455078, 1.1337891, -0.45141602, 4.1484375, -0.5839844, 0.81884766, 0.3786621, 1.4169922, 1.8037109, -1.1494141, 2.2226562, -3.1054688, -1.8007812, -0.94384766, 2.6269531, -0.85791016, -1.3291016, -0.05432129, -3.65625, 1.0742188, 2.6367188, -2.8339844, -0.29223633, 0.42993164, 1.6230469, 0.19763184, -3.1875, 1.7128906, -0.21789551, 1.2763672, -0.060821533, -1.2675781, 1.1806641, -0.5546875, -1.6240234, 1.4345703, 0.41259766, -0.3630371, 0.27172852, -0.4892578, 0.921875, -0.9995117, -2.3417969, -0.015014648, -3.7070312, -0.08203125, -1.2871094, 0.8364258, -0.75683594, -0.17150879, 0.31152344, 0.087768555, 0.015060425, -1.2421875, -1.3525391, 0.35839844, -1.7373047, 1.1503906, 1.5263672, -0.5605469, -1.1074219, -0.27319336, -1.2041016, -3.3085938, 0.8300781, 0.11218262, 0.42236328, 0.3540039, 3.3964844, -1.5224609, -4.3554688, 1.4101562, -2.4257812, 0.48706055, -0.0065727234, -1.1474609, 1.2792969, -1.6357422, -0.49316406, -0.50390625, 1.9013672, -3.0273438, -2.2597656, 1.9638672, -0.099853516, 0.34814453, -0.29589844, 0.69189453, 0.123291016, 0.24890137, 1.6464844, 2.0722656, 1.9921875, 0.12023926, 0.08911133, 1.6025391, 1.3554688, 3.6835938, 0.22363281, 0.07904053, -2.6484375, 1.2460938, -1.0556641, 0.11584473, 3.3164062, 1.2949219, -1.0390625, -0.5415039, -2.4121094, 0.11828613, -1.3701172, -1.0136719, -1.4570312, -0.13098145, 0.25048828, -2.0820312, 0.6166992, 0.23217773, -1.0058594, 1.3173828, -0.54589844, -3.046875, 0.03262329, -2.7421875, 3.4667969, -2.5039062, -2.609375, 0.8691406, -0.87890625, 2.3359375, -1.8769531, 0.10394287, -0.83154297, 1.4199219, -0.6201172, 1.6552734, 2.1035156, -0.03652954, -1.1054688, 0.1472168, 0.09765625, 0.18127441, -2.8339844, 0.047821045, 1.171875, 0.33325195, 2.0742188, -0.56933594, -2.4726562, 1.2128906, 0.31225586, -1.0341797, -0.9350586, 0.55615234, 2.2910156, -0.06964111, -0.96435547, 0.49072266, -3.1210938, -0.05227661, 1.7246094, -0.6113281, 0.28833008, -0.38305664, -2.2988281, -0.5258789, -0.69384766, -0.19396973, 3.0703125, -1.4238281, 1.4853516, -2.6894531, -1.2402344, -0.21691895, -1.2910156, 0.56152344, -0.7470703, 0.019943237, -0.37695312, -1.6113281, -0.29760742, -1.9628906, -2.5527344, -1.6767578, 1.9990234, 1.5986328, 0.9916992, 0.113464355, -1.8085938, 2.1582031, 1.7041016, -1.8544922, -1.6074219, -0.75390625, 0.23339844, 1.4296875, 2.4316406, -0.9003906, -0.546875, -0.8515625, 3.5742188, -1.4238281, 1.1113281, 0.18139648, 1.2490234, -1.6113281, -0.51708984, 1.8808594, 0.01802063, -1.1025391, -1.0478516, 0.87890625, 0.7807617, 1.1572266, 0.23999023, -1.8623047, -0.45947266, -0.7241211, -2.0625, -0.79003906, -1.2617188, 0.51464844, -2.0175781, -0.26098633, 0.62060547, 0.8510742, -2.0722656, -0.5551758, 3.8847656, 1.3056641, 1.4697266, -1.0341797, 0.69189453, 0.14794922, -0.44604492, -2.0390625, 0.9941406, -0.69970703, 0.70214844, 0.44702148, 2.3632812, 1.1201172, -0.8666992, 2.7070312, -0.16418457, -2.2949219, -0.2763672, -0.89208984, -0.5161133, 0.9980469, -2.2148438, 1.2441406, 0.29882812, -2.390625, 0.47753906, 0.7055664, -0.4465332, -1.0351562, 2.65625, 1.0791016, -0.5283203, -2.0214844, 0.30639648, -2.4082031, -0.9868164, -0.5966797, 0.79003906, 2.3828125, 1.4599609, -1.7304688, 3.3730469, 0.45214844, -0.33984375, 2.1660156, -0.7988281, -1.9130859, -1.6181641, -0.036346436, 2.3476562, 0.32739258, 1.0449219, -1.6933594, -0.31030273, 1.40625, -1.7304688, -0.23718262, 2.4257812, 0.7607422, -0.4248047, 1.4238281, 2.1386719, -2.578125, -1.3007812, 0.9667969, -0.92089844, 0.25317383, -1.3574219, -0.5756836, 0.7006836, -0.36694336, -2.6171875, -0.6254883, 1.1259766, -0.73046875, 2.1386719, -0.08996582, 0.50927734, 0.07434082, -2.2109375, 0.18847656, -0.2524414, -2.1386719, -1.7568359, -0.87158203, 0.42993164, 0.37304688, 0.06317139, 0.54589844, 1.0625, -0.25097656, 0.6323242, -1.7255859, -2.6738281, -2.1328125, -2.390625, 0.39794922, 2.1699219, -0.4345703, 0.24707031, 0.48266602, -3.0625, 0.47265625, -0.70751953, -0.65527344, 0.5527344, -1.4658203, 0.44702148, -0.13269043, 0.96533203, 1.1474609, -0.87109375, -0.114746094, 2.0136719, -2.2128906, -2.1503906, 1.0566406, -1.3457031, 0.54833984, -1.3271484, -0.042907715, 0.07128906, -1.6757812, -2.1796875, 1.2529297, 2.3515625, -0.5029297, 2.0703125, -0.7529297, -1.5429688, 0.3684082, 2.3203125, -0.54345703, -0.5058594, 0.30004883, -2.21875, -0.027648926, -1.6328125, -0.13342285, -0.9819336, 0.03543091, -0.40454102, 3.6464844, 0.5214844, 3.5332031, -2.8828125, -1.1875, 0.097351074, 1.2890625, -0.25512695, 1.1767578, -1.6582031, 0.7050781, -0.64404297, -1.4169922, -0.02255249, 1.6025391, -1.0390625, 0.56884766, 0.4621582, 1.1337891, -1.15625, -0.25073242, -1.4628906, 0.009048462, -0.9291992, -1.2958984, 0.08721924, 0.68066406, -2.3359375, -0.92333984, -1.7910156, 3.1054688, 1.8193359, 1.3125, 1.1914062, 0.103149414, 3.7109375, 0.41796875, -0.24389648, -0.13696289, 1.0185547, 0.43847656, -1.2148438, -1.7089844, 1.40625, 1.1005859, -3.1914062, 1.234375, 0.46044922, 1.1259766, 0.81933594, 0.6386719, 1.765625, -0.7363281, 0.2668457, 3.1855469, -1.3671875, 0.88964844, -0.17468262, 0.009925842, -0.5917969, 0.8808594, 2.2636719, 1.6542969, 1.0761719, 0.09301758, 2.0546875, -1.3486328, -2.7050781, 1.2373047, 2.4648438, -0.5341797, -1.5869141, 0.94384766, -0.6699219, 1.03125, 3.3828125, -0.3762207, -0.3088379, -1.6855469, 0.765625, 1.5, -0.28125, -0.13134766, -0.98046875, -1.3974609, -0.79833984, -2.8125, 1.2470703, -1.4433594, -3.0371094, 2.0214844, -1.078125, -2.0195312, 1.2392578, 2.7363281, 0.49194336, -0.6948242, -1.1894531, 3.7988281, -0.31591797, -1.8271484, -0.69433594, 2.5078125, -0.052581787, 0.85791016, -1.2646484, -0.32202148, 1.3085938, -1.6162109, 1.2480469, 1.3095703, -3.2207031, -1.6044922, -3.21875, 1.0039062, -0.13574219, -0.3293457, -0.2368164, 1.4277344, -1.9326172, -0.36743164, -2.1269531, 1.0019531, -0.6430664, -1.8378906, 0.63720703, 0.2524414, 1.8066406, 1.15625, -0.28076172, 3.7089844, 1.0429688, -2.9414062, 0.86279297, -1.7880859, -0.2541504, -1.7539062, -2.2929688, -0.022033691, 0.40161133, -1.6279297, 3.5136719, 1.7089844, 1.8310547, 2.6992188, -0.95751953, -1.3935547, 0.16088867, -1.1523438, -0.38500977, -0.41357422, 1.9648438, 1.9951172, 1.7626953, -0.32543945, -0.034362793, -2.1699219, -3.1621094, 0.5415039, -0.62353516, -0.53564453, -0.26171875, -2.1484375, -0.19006348, -0.29956055, -0.15893555, -1.0869141, -0.3564453, 0.5449219, 1.4345703, 2.4335938, -0.7270508, 1.6816406, 0.76464844, -0.71533203, -0.46557617, -0.21838379, -1.9345703, 0.099609375, 2.6640625, -1.2685547, -0.80615234, -0.01096344, 0.3449707, 0.82958984, -0.67089844, -2.984375, 1.3242188, -1.2109375, 0.43725586, -0.23168945, 1.0117188, 1.1884766, -1.3847656, 0.1015625, 0.24133301, 0.25317383, -1.8046875, -2.6171875, 1.0527344, -0.49414062, 0.115600586, -0.35864258, -1.1142578, 2.1054688, -1.6943359, 1.5458984, -1.7080078, 1.4042969, 0.7397461, 0.31884766, 4.515625, -2.9550781, -0.8510742, 2.0253906, -2.8496094, -0.52441406, -0.11871338, -0.116882324, -1.8466797, 1.2158203, 2.1933594, -0.089904785, -2.1933594, -0.3227539, 0.4555664, -1.2158203, -1.5722656, 1.1347656, -0.921875, 0.80908203, -0.31713867, -0.11785889, 2.8671875, 0.039489746, 1.3261719, 1.3847656, -0.3371582, 0.44262695, 0.99560547, 0.29296875, -0.9638672, 1.5185547, 0.90527344, 1.0439453, -1.4550781, -0.029327393, 0.016021729, 0.953125, -3.4335938, 1.2783203, 0.16662598, 1.4912109, -1.9511719, -0.7348633, 2.0390625, 1.7109375, -0.9916992, 1.0537109, 0.77685547, -1.1484375, 0.8701172, 1.8613281, -1.0791016, 1.1689453, -0.41137695, -1.34375, 1.1875, -1.1396484, -2.7714844, -0.3251953, -0.002840042, 0.30786133, 0.8964844, -0.3022461, 0.5180664, 1.5751953, -1.4121094, -1.2646484, -1.5625, -1.5527344, 0.6411133, 0.3774414, -0.09881592, -0.20800781, -0.16003418, 4.1875, -0.92529297, -2.4453125, 1.0371094, -0.6113281, -0.27294922, 0.24023438, -1.9433594, -1.7792969, -1.5175781, -0.69384766, 1.3466797, 0.97314453, 0.64990234, 0.96875, -3.015625, 2.8125, -2.9082031, 0.5292969, -1.9970703, 0.16772461, 4.7304688, -5.078125, 0.18151855, -1.0117188, 2.6386719, 0.58935547, 0.7836914, 0.8051758, -2.1347656, -2.0292969, 1.5234375, -0.79003906, -2.6757812, -1.4169922, -0.99609375, 0.6591797, -0.28051758, -1.8466797, -1.0029297, 0.5229492, 1.0898438, 0.37353516, 1.7070312, 0.39379883, -1.2861328, -0.8798828, -3.0878906, 0.14916992, 1.2558594, 0.61035156, 0.27978516, 4.2851562, -1.7802734, -1.0175781, -1.328125, -0.54785156, -2.0195312, -2.4316406, 0.86328125, 1.3417969, -0.46142578, 0.7260742, 1.0371094, -2.1757812, 3.0332031, 0.17272949, 0.7792969, 1.6142578, 0.8491211, -1.2021484, -0.45361328, -3.5332031, 1.5253906, -3.8339844, -0.11743164, 0.47436523, -2.4511719, -0.14611816, 0.7524414, -2.9765625, -0.6166992, 0.7285156, 1.6933594, -0.019989014, 0.9628906, -0.0947876, -0.14257812, -3.3105469, -2.9121094, -0.29541016, -0.41503906, -1.8447266, -1.2539062, 0.69873047, 2.8261719, -0.36376953, 1.859375, 1.5722656, 0.6904297, -0.78271484, 2.1796875, 0.5756836, -0.22216797, 0.5605469, 0.8935547, -0.3642578, -3.7792969, 1.5371094, 0.5058594, 0.14196777, 1.9101562, -0.7685547, -3.34375, -0.3852539, 0.953125, 1.0234375, 1.8222656, 0.014930725, -1.3984375, -0.34643555, -0.0040016174, -2.2753906, 2.3652344, 1.3945312, 4.3320312, -2.1367188, 4.2421875, -2.125, -4.2929688, 3.3867188, -0.21948242, 0.19677734, -0.08721924, -2, 0.41357422, -0.95214844, -0.87841797, 0.057281494, 2.0449219, -2.1171875, 1.7734375, 0.9975586, 0.5253906, -0.81884766, 3.3378906, 0.066589355, 2.7265625, 3.5566406, -0.12249756, -1.9111328, -0.796875, -1.2919922, 0.45922852, 1.7226562, 0.022064209, -1.0712891, 0.38500977, -1.0214844, -1.5957031, 1.3183594, 1.3173828, 1.6054688, 0.8588867, 1.6738281, 3.2636719, 1.46875, 2.4160156, -0.13232422, 2.75, 0.13171387, 1.1894531, 1.0390625, 3.7226562, -0.39038086, 0.64160156, -0.8334961, 1.7998047, 0.23120117, -1.3134766, 0.6142578, -0.085754395, 0.4428711, -1.0898438, 2.1640625, -0.10296631, 0.6069336, -0.5024414, 0.39746094, -2.2929688, -0.34155273, 0.44433594, 0.5234375, 3.4980469, 0.71435547, 0.89208984, 0.3774414, 2.03125, 1.9384766, -2.3925781, 0.9682617, 1.1513672, -0.36621094, -0.9692383, 3.6269531, 0.71484375, 1.2978516, 1.3017578, 0.74853516, 1.8574219, 1.7802734, 1.1621094, 1.1298828, 0.8496094, -1.1201172, 1.671875, -2.7265625, -0.85546875, -0.77685547, 0.76708984, -1.3535156, 0.0034675598, 0.86083984, 1.0039062, 1.0712891, 0.41064453, -3.5058594, -0.24926758, 0.32177734, 0.48242188, -2.2597656, -0.4543457, -0.1932373, -2.4765625, -2.3671875, 2.7460938, 2.5449219, 0.88134766, -0.22277832, -1.25, 0.059448242, 1.4462891, 1.5166016, 0.9428711, -0.5473633, -1.2265625, 2.0683594, -0.101501465, 5.3242188, 2.4902344, 2.9746094, -0.77490234, 1.6025391, 3.671875, 0.11016846, 1.0078125, 1.8505859, -0.18041992, -1.4189453, 0.49145508, -1.9589844, -1.5429688, -2.1074219, -1.8837891, -0.25390625, 0.2836914, -1.2949219, -0.16870117, 0.6748047, 2.2851562, 2.1640625, 0.66308594, -1.7001953, 1.7890625, 2.5429688, -0.703125, -1.15625, -0.7036133, -0.7338867, -1.1025391, -0.5395508, 0.58154297, 1.7460938, 1.2226562, -1.9160156, 1.8554688, -1.5039062, -0.60791016, -0.113342285, 0.28833008, -2.7539062, -1.0546875, 1.4101562, -0.62060547, 1.1669922, 1.5791016, -1.2792969, -0.7714844, 1.9824219, -0.49365234, -1.3994141, -1.2773438, -1.5410156, 0.058746338, 3.6484375, 1.328125, -0.21862793, -2.1621094, -1.6386719, 1.8261719, -0.6640625, 2.4667969, -0.6635742, -1.7109375, -0.15551758, -1.5888672, 2.3886719, 1.5537109, -2.8691406, -0.31567383, -0.71972656, -1.1113281, -0.66845703, 1.7128906, 1.6289062, -1.1826172, -0.41235352, 3.1132812, 2.9257812, -0.15612793, 2.0390625, 2.5683594, 0.6113281, -1.9414062, 0.01171875, 0.7988281, 2.4042969, 1.6669922, 0.068237305, -1.4023438, -0.88916016, -1.5957031, -1.2578125, 0.076660156]}, "B08D8YH6W6": {"id": "B08D8YH6W6", "original": "Brand: WADEO\nName: WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nDescription: Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nFeatures: Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports.\n2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame.\nOur propane hose is 350PSI, High pressure resistance ensures your safety.\nEasy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill.\nOur products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc\n", "embedding": [-0.089782715, 1.0751953, 0.33276367, -0.14135742, -1.7021484, -0.78271484, 1.6757812, -0.1307373, 1.4033203, 0.28588867, 3.0761719, -0.0016307831, 3.1484375, -3.5058594, 1.2910156, 2.0703125, 0.6166992, 0.23571777, 1.9716797, 2.3964844, 3.6054688, 2.2011719, 0.8408203, 0.020141602, 0.95410156, -1.8291016, 2.3417969, -1.4433594, -1.8681641, 0.095825195, 0.4765625, -0.88183594, -1.2128906, -1.2773438, -2.8847656, 0.31958008, 1.3242188, 0.47045898, -1.2734375, -1.2607422, 0.13793945, 1.5957031, 3.4121094, 2.0039062, -2.2539062, 0.35131836, 1.0527344, -0.094055176, 0.3154297, -0.69677734, 0.17675781, 1.4970703, 0.5854492, 0.8959961, -1.2470703, 1.1728516, -0.2298584, -3.84375, 1.0878906, 0.055999756, 1.3623047, 1.3662109, -2.0019531, 0.84716797, 1.2011719, -0.69433594, -0.74560547, 0.004360199, -0.8364258, 0.8305664, -0.7636719, 1.8984375, 0.5683594, -1.3300781, -1.5673828, 0.7895508, -3.8496094, -1.3046875, 2.1601562, -0.41967773, -1.8457031, 1.4951172, 1.3066406, -1.3173828, -0.79052734, -0.09411621, -1.5576172, 1.0800781, 0.96240234, 2.4042969, -3.203125, 2.703125, -4.34375, -1.8349609, -0.07080078, 0.36938477, 0.9477539, 2.1894531, 4.2304688, 0.82128906, -0.6142578, 0.16210938, 0.4609375, 0.8261719, -2.671875, -0.6245117, -0.45703125, 0.27807617, -0.70703125, 0.06903076, -0.5527344, 1.9492188, 2.390625, -2.3417969, 0.11303711, -3.0488281, 1.0996094, -1.5292969, 1.3134766, 0.6582031, 1.5976562, -0.17077637, -0.5, 0.29614258, 2.7441406, 1.2763672, -0.20166016, 1.7285156, 2.3671875, -0.86035156, -0.27514648, 0.2915039, 2.3183594, -1.2382812, 2.875, -3.2558594, -1.9277344, -1.546875, -0.36694336, 0.022659302, -3.671875, 0.6665039, 0.63671875, -0.4724121, -4.1132812, -1.0263672, -2.4492188, 0.02671814, 1.3886719, -1.9003906, -0.63916016, -2.5058594, 0.5004883, 0.8852539, 3.6191406, 1.2324219, 1.0908203, 0.01586914, -0.17260742, -0.4375, 0.6274414, -0.93847656, -2.3710938, 2.5683594, -0.5004883, -4.21875, -0.42651367, 0.13427734, -2.6816406, 0.17370605, -0.8105469, -1.7119141, 2.5917969, -2.1230469, 1.7978516, -1.6308594, 1.5136719, 0.6035156, 1.0615234, 0.7988281, -3.7070312, -2.0234375, 0.47802734, -1.3740234, 1.8417969, 0.59765625, -2.7324219, -1.3916016, 2.4707031, 0.33520508, -0.64990234, 1.4130859, 0.44750977, 2.1757812, 0.6738281, 0.103393555, -4.5, -0.47607422, -0.8989258, 1.5927734, -2.3535156, -1.6210938, 1.6660156, 0.8144531, -2.3046875, 0.5229492, 0.78222656, -0.34570312, 0.65722656, 0.10809326, -1.0693359, 0.7705078, 2.703125, -1.6669922, -1.1601562, -0.6386719, 1.578125, 1.2246094, 2.4765625, 0.77441406, -1.8818359, -0.016052246, 0.69091797, 2.9121094, 2.0136719, 0.0027275085, -0.6665039, 2.5234375, -0.56152344, -1.0820312, 0.71240234, 1.0419922, 0.5083008, -0.7211914, -1.8720703, 2.0507812, 0.7753906, -0.50878906, 0.16918945, 3.65625, 1.9833984, 0.045013428, -1.5527344, -2.4726562, -1.1845703, -1.328125, -0.9296875, 2.5839844, -0.09674072, -0.56347656, 0.48046875, -0.31298828, -0.8227539, -3.5019531, -1.4423828, -0.3071289, -0.6088867, 1.1386719, 0.5888672, -0.016021729, 2.4316406, -3.2285156, 2.4726562, 0.090148926, 0.6225586, 0.26879883, 1.3876953, -2.7617188, -1.2558594, -0.70166016, -0.89160156, 2.6015625, 1.1533203, -1.0830078, 0.38964844, 2.4804688, -0.72558594, 1.703125, -0.13500977, 1.0380859, 2.4980469, -1.5449219, 2.5605469, -1.7333984, 0.2854004, 1.6533203, 2.2519531, 0.072631836, -1.4570312, 0.12731934, 2.3164062, 0.8901367, -1.9033203, 3.109375, 4.0742188, 0.5834961, 0.9506836, 0.67822266, 0.06286621, 0.67871094, -0.55371094, 0.32202148, -2.9589844, 1.4707031, 3.40625, 1.2255859, 0.2685547, -2.0195312, 1.5712891, 2.6152344, -1.7324219, 0.6542969, -0.47021484, -0.9536133, -3.015625, -1.4306641, 3.0546875, -0.6010742, -0.69384766, 0.2446289, -0.2244873, 0.09918213, 1.4335938, -0.91796875, -1.0507812, 0.63964844, -2.4765625, 0.5410156, 0.87890625, 0.9277344, 1.765625, -1.1162109, 0.6801758, -1.2470703, -1.0771484, 1.8808594, -0.8666992, -2.8359375, -0.8935547, -1.1298828, -0.7661133, -2.1601562, 0.54296875, 2.3378906, 1.1259766, -0.96533203, 0.6357422, 1.9794922, 1.2529297, -1.53125, -0.47705078, 1.8613281, -1.3193359, -2.5234375, 0.37182617, -0.11206055, -0.3544922, 1.9335938, -0.68310547, -0.22729492, 1.75, 1.7236328, -1.3662109, -0.09503174, 0.11859131, -0.55810547, 1.8427734, -2.328125, -1.1914062, -0.37548828, 0.9111328, -0.2800293, 0.7109375, -2.7792969, -1.9619141, 0.29345703, -1.3554688, 0.33496094, 0.4645996, 1.4541016, 0.40283203, -0.9223633, 0.68603516, -2.9453125, -2.5175781, -1.6269531, 0.38378906, 0.078125, 0.67578125, -3.8398438, -0.24951172, -0.6147461, 1.1396484, 0.16540527, -0.9511719, -0.88671875, -2.28125, 1.3271484, -1.4326172, 0.21191406, 0.8652344, -0.47338867, -0.55371094, 1.2011719, 1.1455078, -0.9589844, -1.28125, 0.020263672, -1.0419922, 0.3857422, -2.9824219, 1.3583984, 0.8935547, 1.4804688, 0.52783203, -0.6166992, 1.9814453, 1.7587891, -0.32470703, 2.3945312, -0.6010742, -0.73779297, -4.2734375, -1.4628906, 2.0566406, 2.640625, 1.6689453, 0.39672852, 1.0595703, 1.6572266, 1.1474609, -0.16308594, -0.80371094, -2.5839844, 3.2714844, -3.2089844, -0.77490234, -1.4638672, 0.9003906, -5.4492188, 1.9638672, 0.56396484, -0.09088135, 2.90625, -0.39233398, 2.3457031, -0.28442383, -0.34765625, 1.8564453, 0.8100586, 1.8496094, -1.0605469, 0.18188477, 0.00015938282, -0.9042969, -0.7207031, 1.3730469, 2.0390625, 2.0351562, 0.19091797, 0.33276367, -1.7324219, 0.8208008, -0.67089844, 1.9658203, 2.0664062, 1.1933594, 0.002412796, 0.9790039, -0.37475586, -0.7036133, 0.3293457, 0.9277344, -2.0410156, 0.107788086, 2.6835938, -1.5449219, 0.88378906, -2.2988281, 0.32250977, -1.2734375, 1.3974609, 0.9550781, 0.76953125, 0.3762207, -1.171875, 0.39941406, -1.4941406, 1.6884766, 0.23022461, 0.9736328, -1.5566406, -2.2832031, -1.5615234, -1.0185547, -1.5429688, 0.7841797, -1.1835938, 1.6455078, 3.7851562, -0.3034668, 0.14892578, -0.73046875, 1.7001953, 0.2902832, -1.3740234, -1.6708984, -0.5913086, -0.5625, 0.29711914, 0.18334961, 0.70214844, 1.046875, -2.5039062, 0.5444336, 0.41674805, -0.6713867, 0.067871094, -0.88183594, 0.09442139, -2.5957031, -1.4296875, 0.026351929, -0.1743164, 2.8320312, 1.5390625, -1.7529297, 1.0009766, -2.0234375, -0.20727539, -0.3071289, -5.03125, 0.7919922, -0.77441406, 1.8232422, 2.7675781, 0.64404297, -0.21459961, 0.8925781, 2.1777344, -3.6640625, -0.4567871, -1.9853516, 0.25805664, -2.5898438, -0.6142578, 1.8642578, 3.2109375, 0.2232666, -0.5307617, 1.2519531, -3.1347656, -0.42895508, 1.0205078, -1.2783203, 1.65625, -0.09942627, 0.071899414, -0.9716797, 0.15344238, 1.6953125, 0.04840088, -2.3261719, -3.0546875, 1.5048828, 2.25, 0.9580078, -0.9091797, 1.0849609, 2.4785156, -1.2822266, -0.80322266, 0.43920898, 4.21875, -0.4333496, -2.3085938, -0.6669922, -0.8203125, 0.2541504, -1.3134766, -0.07537842, -0.3161621, -0.3762207, 1.4316406, -0.7373047, 0.6538086, 1.6914062, -1.7763672, -4.5, -0.75390625, 0.25463867, -2.9316406, -0.25268555, -0.12670898, 0.5830078, -1.4599609, 0.4519043, -2.0839844, 0.3955078, 0.4970703, 0.1081543, -2.1777344, 1.1376953, -1.5527344, 2.6269531, 0.8881836, -2.5019531, -0.5761719, -0.6142578, 1.1933594, -0.24475098, -0.94970703, -1.3867188, -1.6523438, -0.15673828, 1.828125, 1.5214844, -1.5556641, 0.6699219, -0.5102539, -0.9370117, 0.43603516, 1.9472656, -1.6835938, -0.85253906, 0.21484375, -1.1826172, 4.3476562, -2.9453125, 1.0537109, -1.6601562, -1.4287109, -4.109375, 2.3203125, 1, 0.37548828, -1.0136719, 1.4375, 3.0410156, 2.1054688, -0.22668457, -0.5683594, 0.6801758, -0.09448242, -0.39770508, -0.5024414, 1.5087891, 0.8535156, 1.359375, 1.6875, 1.6386719, 1.5361328, -0.5966797, 1.2109375, -1.0761719, 0.58447266, 0.33691406, 0.6489258, -2.140625, -0.67041016, -1.0839844, 2.8027344, -1.6523438, -2.6953125, 1.4394531, 2.9824219, 0.9121094, 0.26464844, -0.47680664, -1.1845703, 0.1538086, -2.5273438, -1.9511719, 0.5048828, -1.4111328, -0.22143555, 0.2919922, 0.7963867, 0.23278809, 0.77978516, 2.1738281, 0.0335083, 0.055541992, -1.3232422, -1.9160156, -3.0371094, -0.3803711, -3.6113281, -2.7929688, 0.06161499, 0.91845703, 4.1953125, -0.23217773, 1.4638672, -1.4208984, 0.14538574, -0.66552734, 0.67285156, 1.9296875, -1.3476562, 0.3942871, 4.4609375, -0.79052734, -2.5585938, -1.2363281, -0.5800781, 0.6850586, -0.69091797, 1.7001953, -1.1210938, -1.2783203, -0.54785156, -2.9667969, -5.171875, -0.37304688, 2.1542969, 1.2724609, 0.13049316, -1.3837891, -2.5976562, -0.12988281, -0.19055176, -1.2587891, -1.8232422, 1.0263672, -2.1132812, -1.3164062, -0.69921875, 0.08880615, -0.08343506, -0.59228516, 0.51953125, -1.1689453, 0.5317383, -3.0957031, -1.3046875, 1.1738281, -0.20361328, -1.1601562, -0.5859375, -3.0644531, -0.17663574, -0.9736328, 0.30517578, -2.6074219, 0.9355469, -3.546875, 1.4121094, 0.16748047, -1.2871094, 0.4428711, -0.16223145, 0.51953125, -0.33154297, 2.5976562, 1.7939453, -0.20922852, -0.9707031, -1.1972656, -0.1496582, 0.20678711, 0.55810547, 1.0166016, 2.1894531, 1.8535156, 2.9628906, -1.9248047, -1.5615234, -1.9863281, -0.7294922, 0.40161133, -2.2773438, 2.5351562, 0.5307617, 1.9072266, 1.4775391, 0.6425781, 0.21350098, -2.0957031, -0.2590332, 0.4260254, 0.9897461, -1.8242188, 2.8125, -0.033569336, -0.7792969, -3.4785156, 0.23852539, 3.4375, 3.1289062, -0.5942383, 0.6542969, 0.049926758, 0.15405273, -1.3369141, -0.016830444, 1.65625, 0.19335938, 1.8447266, -2.140625, -1.1611328, 1.8564453, -2.0820312, 0.03652954, 1.2011719, -0.6669922, -0.92333984, -0.055236816, 0.36206055, -4.1679688, -0.004737854, 0.32543945, -0.20300293, -1.4306641, 1.0546875, 0.94873047, -2.6523438, 1.0693359, 0.50683594, -4.5898438, -1.6640625, 2.3808594, -0.89404297, -0.4543457, -0.14025879, 3.1152344, -1.1992188, 0.6333008, 0.6328125, -0.60302734, -0.020690918, -1.3691406, -1.1162109, -0.6347656, 0.81152344, -1.9492188, 0.19848633, 1.3125, -0.3935547, 1.2763672, -1.8046875, 1.7949219, 2.5761719, -0.42773438, 4.0742188, 1.3486328, 1.2587891, 2.59375, 2.6347656, 1.4111328, 0.5107422, -0.31445312, 1.2304688, 0.21862793, -0.6064453, 1.0683594, -2.2949219, 0.9790039, -0.61035156, 1.0869141, 1.4824219, 0.5498047, 3.4511719, -5.0546875, -0.4814453, -2.2402344, -0.50683594, -2.4960938, 1.2871094, -1.1494141, -0.61376953, -0.4963379, 2.6816406, -0.76904297, 3.3125, -0.49194336, 1.4863281, 0.6230469, 2.1992188, 1.1181641, -1.2480469, -1.6337891, -0.1595459, 1.3867188, 0.6201172, -0.033721924, -0.79785156, 0.7089844, 0.73046875, -0.8364258, 0.052642822, 0.42895508, 0.12347412, 0.17358398, -2.4238281, 2.1035156, 2.078125, 0.6694336, 2.8984375, 0.6376953, -0.07989502, -2.3769531, 1.4003906, 0.38549805, -1.3828125, 1.2402344, -3.0664062, 1.7929688, -1.5996094, -1.2158203, -2.2050781, 0.0234375, 0.7792969, -1.3466797, 1.5322266, 0.39746094, -0.86621094, -0.19091797, 1.8447266, -1.6601562, 0.7167969, 0.28271484, 0.045440674, 2.1328125, 0.9038086, 0.5161133, -0.16784668, -1.5839844, 4.703125, 0.25952148, -0.5810547, 1.2578125, 1.7324219, 0.4284668, 0.9511719, -0.296875, -0.70947266, 2.0214844, 0.92041016, 0.63623047, -0.1217041, -2.1445312, -0.89404297, 0.024307251, -1.0761719, -0.6323242, -1.640625, 0.6201172, -0.19763184, -1.9072266, -0.3076172, 0.21484375, -1.2021484, 3.5390625, 3.5351562, -1.1738281, -0.63183594, -1.2578125, 0.66064453, -2.5566406, 0.77685547, 1.3398438, -2.4199219, -0.81103516, -3.2851562, -1.0673828, 0.20129395, -0.7729492, -2.390625, 0.51660156, -0.77441406, -1.7158203, -0.72509766, -1.9355469, 1.6816406, 2.703125, 1.2363281, 0.18286133, -0.22888184, -1.1689453, 1.7988281, -1.1152344, -3.0351562, 0.6147461, 0.69384766, 2.3398438, 2.1953125, -2.5292969, -1.109375, 0.95751953, -1.8164062, 1.4091797, -0.20227051, -2.859375, 0.796875, 2.8847656, 1.2607422, 1.4433594, -1.6777344, -1.3662109, 0.8691406, 1.2988281, -3.1972656, -0.37841797, 0.061187744, 0.11077881, 1.8515625, 5.2851562, 2.6972656, -0.24169922, -0.65527344, 4.03125, -0.3017578, -2.2597656, 1.828125, 0.14257812, 1.1201172, 1.8076172, 1.1074219, 1.9140625, 0.48168945, -1.4023438, -2.5390625, 1.1328125]}, "B00YDST5EW": {"id": "B00YDST5EW", "original": "Brand: onlyfire\nName: onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others\nDescription: The onlyfire 14451 igniter fits Models of following BBQ gas grills:\u00a0

Uniflame Part Numbers: 55-07-448;

Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

Amana Part Numbers: FCTG3007029;

Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

Suitable Models of BBQ gas grills:
Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

Exact-fit parts !Cooks better! Durable construction and Lasts longer!

A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

\nFeatures: 7/8\" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet \"AA\" Battery Push Button Ignitor (Battery not include)\nFits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP\nFits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650\nFits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603\nSuitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372\n", "embedding": [-2.6660156, 0.82714844, 0.35302734, -0.49658203, 1.9072266, 0.9926758, 2.3261719, -1.7548828, 1.4794922, 0.047729492, 1.6162109, -1.625, -0.19018555, -2.9628906, 0.49731445, 2.8867188, 2.8789062, -1.2841797, 1.2685547, 1.7167969, -0.032989502, 3.4667969, 0.9711914, -1.2685547, 0.08331299, 1.8984375, 4.4296875, -2.6640625, 1.7763672, -2.9140625, 0.9589844, -1.4726562, -1.9003906, 1.5322266, -3.7890625, 0.25073242, -0.44921875, 0.7915039, -3.7246094, 1.4980469, 0.83740234, 1.2910156, 1.5957031, -0.45043945, -1.9726562, -0.6621094, 2.3789062, 0.73583984, -1.6240234, -1.6796875, 1.9267578, 2.71875, 0.075683594, 1.1904297, -1.1738281, 4.40625, -1.0839844, -1.7666016, 0.26123047, -0.032592773, 5.1601562, -0.15893555, -1.6474609, 1.2958984, -1.2558594, 1.3632812, 0.3017578, 0.828125, 0.3864746, -1.0742188, 2.2617188, 0.17687988, 0.2019043, 0.36499023, 0.29956055, 0.45751953, -4.1328125, 2.0644531, -1.5683594, -0.4428711, -1.2236328, 1.8964844, 0.08660889, -4.0546875, 1.8115234, -1.0175781, -1.1982422, -0.47729492, 3.3046875, 0.8330078, -1.0107422, 0.12756348, -1.4980469, -3.4492188, 2.7539062, -1.7988281, 1.2949219, 1.1494141, -1.5283203, 1.4306641, -2.7070312, 0.035064697, -2.2597656, -1.2460938, -0.94091797, -0.25805664, 0.88671875, 1.5869141, -3.0546875, 0.06817627, -0.65527344, 1.0634766, 1.5654297, -0.2166748, 0.4963379, -0.70751953, 1.1376953, -0.6538086, 1.8779297, 0.32958984, 4.7578125, 0.08294678, 1.3554688, -2.421875, -1.6386719, -0.7246094, -1.6542969, 0.46313477, 4.7070312, 0.43896484, -0.6040039, -2.7832031, 4.140625, 0.33374023, -1.1171875, -3.390625, -2.7597656, -2.3300781, -1.7304688, -0.83984375, -4.1953125, 0.27197266, 1.0800781, -1.78125, -3.3359375, 1.4511719, -1.6513672, 0.98339844, -0.8588867, 0.52441406, 3.5371094, -1.6289062, -0.81103516, -3.5976562, 2.8222656, 0.5385742, -1.6728516, -1.9345703, 2.8789062, 1.3847656, 0.89697266, -2.34375, 0.5180664, 0.058898926, -1.7558594, -0.9472656, -1.0146484, -0.5493164, 1.5380859, 2.109375, -0.265625, -1.0537109, 0.5419922, 1.4052734, -0.025772095, -1.5761719, -3.0546875, 2.625, 0.85058594, 0.87109375, -2.4980469, -0.86865234, 0.9350586, 0.94140625, 1.3359375, -0.62402344, 1.4472656, 0.3083496, 1.1875, -0.35424805, 1.6201172, 1.09375, 0.19177246, 1.4863281, -0.77490234, -0.5908203, -0.98095703, -1.2988281, -0.35839844, -0.8076172, -1.7890625, -0.9003906, -1.5136719, -0.28198242, -1.7333984, -2.9082031, -1.5302734, -0.29833984, 1.0683594, -0.05239868, 1.1279297, -1.25, 1.5644531, -1.6875, 1.5664062, -2.3574219, 2.5761719, -0.6171875, 0.2939453, 2.84375, 0.53125, -0.78759766, 0.6904297, 3.5742188, 0.7451172, 4.0546875, -0.025787354, 1.3925781, -2.296875, -2.8574219, 2.7558594, 0.69091797, -1.3974609, -0.55615234, -0.07421875, 2.1679688, 1.3007812, -1.8671875, 1.6787109, -0.28735352, -1.1943359, -3.6074219, 0.6635742, -0.49658203, -1.2744141, -0.14892578, -2.78125, 0.15856934, 1.1611328, -1.2685547, 0.62841797, 3.0253906, 0.67041016, 1.6728516, -3.1738281, -0.07141113, 0.14562988, 1.3857422, -1.5195312, -3.2226562, 2.3222656, -0.55322266, -0.5366211, 1.9316406, -0.10723877, -2.2089844, 2.484375, -0.5083008, -1.0595703, -1.0683594, 1.4111328, -0.3400879, 1.0712891, -0.103149414, 2.1269531, 0.005683899, -0.9741211, 2.1054688, 3.359375, -1.2519531, -0.82958984, -1.9746094, 3.640625, 0.03677368, 0.30273438, -0.21057129, -0.921875, -2.2109375, -0.011795044, 1.1533203, 3.4921875, -0.84765625, -3.7871094, 4.5039062, -1.25, 0.8691406, 2.1015625, -1.0058594, 0.6503906, -0.083862305, 1.2304688, 2.4550781, 2.1171875, 1.6103516, 1.4863281, 0.5878906, 2.15625, -2.4472656, 0.064331055, 2.6464844, -0.5307617, -0.1850586, -1.0380859, 2.8105469, -1.2783203, -2.2304688, 0.015930176, -1.9365234, 3.3261719, -1.53125, 0.7573242, 1.6416016, -0.39404297, -0.77490234, -1.6660156, 0.5776367, -2.5644531, 1.0458984, -0.59521484, -0.18774414, -1.3642578, 1.3623047, 0.44628906, -5.078125, -2.9335938, -0.02949524, -3.3945312, -3.2988281, -0.5629883, -1.1621094, -2.2578125, 1.1699219, -3.6621094, 2.6289062, -0.08959961, -1.1630859, -1.0117188, -1.2363281, -0.3244629, -1.6513672, -0.72021484, 2.2167969, 0.7993164, -1.6142578, 0.90234375, -0.07080078, 1.3730469, 1.7353516, 0.15930176, 0.3544922, 0.02947998, 0.09442139, -2.3144531, 0.2746582, 0.9824219, -1.2001953, -0.72558594, -2.4433594, -1.0429688, -2.640625, 1.1435547, 0.16174316, 1.2353516, -3.1035156, -0.27416992, 0.2734375, -0.7006836, 2.9355469, -0.6640625, 2.0273438, -1.8476562, -0.29711914, 0.95214844, -2.9726562, -2.3300781, -0.77685547, 1.1552734, 0.5649414, -3.0742188, -1.4560547, -1.5888672, 0.9741211, -1.1494141, -2.0175781, -0.7807617, -1.1210938, 3.1835938, -0.2536621, 1.1152344, 0.4423828, 0.6542969, 0.14697266, -2.0996094, -1.0410156, -1.8085938, -0.5415039, 0.12512207, -2.1132812, 0.97558594, -1.0673828, -0.4152832, -1.2158203, 1.5878906, 0.06085205, 0.52490234, -2.6601562, 1.6640625, 0.65283203, -3.5097656, 1.9238281, -0.30029297, 0.7919922, -4.0195312, 0.7871094, 3.1621094, 0.43017578, 3.1503906, -0.09716797, 0.6816406, 1.3134766, 0.15283203, 0.22351074, -0.7265625, 0.4038086, 1.9121094, -0.38745117, -2.9238281, 0.7451172, 0.5209961, -1.6308594, -0.21313477, 1.9570312, 0.6699219, 3.1640625, 1.1220703, 1.0839844, 2.3457031, -0.12963867, 0.61865234, 0.017288208, 0.72216797, -1.7763672, -0.40063477, 0.58447266, -1.4667969, 3.0234375, 0.84375, -0.5883789, 1.1132812, 2.1113281, 1.0712891, -1.5253906, -0.119262695, 1.0146484, 2.5078125, -0.16235352, 1.7792969, -1.1103516, -0.056365967, 1.1210938, 0.77685547, 0.16223145, -2.3007812, -1.8427734, 2.2363281, 1.6269531, -0.91503906, -0.30322266, 0.7397461, 1.078125, 0.5366211, -0.4790039, -1.4580078, -1.5761719, -1.2578125, 1.4277344, -0.29077148, -2.5097656, 0.6738281, -0.8828125, 0.41210938, -0.80322266, 0.40161133, -1.1865234, -1.3974609, 0.6723633, 2.3691406, 0.32226562, -0.6254883, -1.0087891, -2.4882812, 2.7304688, -1.0742188, -0.6694336, 1.703125, -2.7773438, 1.0507812, -1.3476562, 0.03366089, -0.024291992, 2.2148438, 3.5117188, 1.0605469, -1.1748047, 0.39624023, -3.8144531, -0.66748047, -0.83251953, -1.1269531, -0.5029297, 3.7148438, 1.5556641, 1.8105469, -1.5927734, 2.8632812, -0.23474121, 1.5166016, 4.2851562, -4.5859375, -1.8886719, -1.1894531, -6.1367188, 2.6445312, -0.27490234, 0.60498047, 0.11383057, 1.8173828, 0.12695312, 3.1621094, -1.7822266, -2.1210938, -1.9746094, -1.7978516, 0.55029297, 1.0136719, -2.5410156, 3.2089844, 0.18640137, -2.4707031, -3.9140625, -1.0185547, -1.5556641, 1.2998047, 1.1855469, -4.09375, 1.8105469, -0.4699707, -0.2376709, -0.6386719, -1.4921875, 2.9296875, -0.61572266, 0.21508789, -1.6621094, 2.6074219, -0.20825195, 2.0117188, -0.47851562, 2.0644531, 2.3945312, -1.0751953, 0.19897461, 0.5703125, 2.2402344, -0.07751465, -4.1289062, -1.7333984, 1.3818359, -0.3552246, -1.265625, 0.30981445, -0.90722656, -2.9960938, -0.22045898, -0.35302734, 1.7753906, 2.9863281, 1.0839844, -1.0615234, -1.3017578, -2.0898438, -1.7832031, -0.11651611, -0.86279297, -1.0908203, -1.2177734, 0.30688477, -1.5126953, 1.34375, -2.3632812, -4.1523438, -4.8398438, 3.1425781, 0.11828613, 1.2822266, 2.6054688, -1.3134766, 1.0478516, -0.55859375, -0.6894531, -0.29907227, 0.29833984, 0.05911255, 0.81884766, 1.0263672, 0.2322998, 0.4975586, -0.37963867, 1.7480469, -0.7709961, 0.6298828, -1.8486328, -1.0117188, -3.8222656, -0.2697754, 1.4960938, 0.36108398, 3.0449219, 0.7246094, 1.6835938, 0.91552734, -0.5751953, -0.69628906, 0.7402344, 3.28125, 0.06008911, 2.1933594, 3.59375, 2.8515625, 0.7441406, -0.3400879, 0.7451172, 0.4794922, -3.0136719, 0.31469727, 1.4873047, 0.78125, -0.9897461, 0.7011719, 2.4902344, 2.0195312, -1.3330078, 2.4179688, -0.42089844, -2.8535156, 2.0878906, 1.2441406, -2.2695312, -0.05130005, -1.4003906, -0.44433594, 1.0595703, 0.7109375, -2.390625, -2.6308594, 2.8496094, -1.140625, -0.12609863, 0.8930664, -0.4506836, 1.2373047, -1.6669922, -1.0654297, -0.57421875, 2.4667969, 0.28125, -0.7426758, 0.23950195, -0.21801758, 1.75, 0.3852539, -0.22180176, -1.2304688, 1.6142578, 0.62060547, -2.2089844, -0.33666992, -2.0253906, 0.4753418, 1.2919922, 2.03125, 0.2553711, 2.7578125, -1.2714844, 0.60791016, -2.0917969, 0.7265625, -3.0136719, 1.2285156, -0.50439453, 1.0605469, 1.1728516, -1.7753906, 1.6513672, -1.3925781, 2.1152344, 0.34179688, 2.2792969, -0.12426758, 0.7836914, -1.2490234, -0.066711426, -1.4091797, -4.0117188, -3.5839844, 0.3791504, 1.4873047, 0.8076172, 0.3798828, 0.16345215, 0.6875, 1.1484375, 0.46289062, -2.9179688, 0.11035156, -1.8007812, 0.048461914, 2.3242188, -0.2841797, -1.8457031, -0.13476562, -0.18566895, 0.91748047, 1.4277344, -3.5507812, -0.6123047, 2.1699219, -2.625, -0.29467773, 1.3203125, 0.8520508, 0.015258789, -0.70654297, 0.9790039, -3.1308594, 1.1132812, -2.8085938, -1.8515625, 1.1240234, 0.46826172, 1.3916016, -0.8178711, -1.171875, 1.5625, -2.1347656, 1.6445312, -1.2773438, 0.27661133, 1.0117188, -1.4667969, -1.9628906, -2.0136719, -1.0527344, 1.2480469, 1.859375, -0.38330078, -2.1210938, 1.4492188, -4.4492188, -2.4316406, 0.31323242, -0.46264648, 1.15625, -2.0761719, 1.4306641, 0.18713379, -0.084106445, -0.14111328, 1.9951172, -1.0117188, -1.2080078, 0.9399414, 0.031982422, 2.9316406, 0.90527344, -0.9501953, -0.80859375, 0.24890137, -0.004261017, -0.86572266, 1.0146484, -0.69140625, -0.7788086, -0.6767578, 0.2355957, -1.0390625, 3.2851562, 3.5664062, -2.4335938, -0.8803711, 0.1508789, 1.9580078, 1.8896484, 2.0820312, 1.046875, 0.84375, 0.5600586, 4.4648438, -0.69433594, -2.9570312, 1.2509766, -2.1464844, 0.42089844, 1.2197266, -2.25, -1.2705078, -1.3320312, -1.0654297, -0.47631836, -0.8720703, -2.1074219, 2.1015625, 0.18273926, -0.06530762, 1.4892578, 2.3164062, 1.1767578, 2.2832031, 2.2734375, 2.375, -0.3269043, -0.72802734, -0.13024902, 0.2626953, 0.41870117, -1.9033203, 0.08459473, -0.22509766, 0.69677734, 0.41381836, 2.7558594, 0.6821289, 0.86572266, 0.07800293, 2.2226562, 0.2841797, 1.9941406, 2.5976562, -0.07977295, 0.054870605, 2.5078125, -1.1181641, 1.4345703, 0.8725586, 0.6464844, 1.1572266, -2.671875, -0.1427002, -2.5957031, -0.09326172, -1.3447266, -0.9160156, 1.6181641, -3.0234375, 0.56884766, 0.26464844, 3.1171875, -3.5878906, -0.7626953, -1.3916016, 0.1854248, 1.4648438, 0.4165039, 3.625, -0.2052002, 1.0517578, 1.4902344, 1.2958984, 2.96875, -4.3671875, 0.5883789, -0.43725586, -0.06567383, 0.72314453, 0.60058594, 0.5625, 1.2050781, 0.8544922, 2.4804688, 1.2070312, -1.46875, 2.4667969, -4.2109375, 2.4003906, 0.5957031, 2.9609375, -0.3034668, -1.390625, 2.5566406, -1.3652344, -5.890625, -3.6269531, 2.671875, -0.5336914, -0.04324341, 1.0830078, -4, 2.0976562, 2.7207031, 0.8408203, -1.0644531, 2.2636719, 0.19555664, -0.77246094, 0.63916016, 0.5078125, -0.35791016, 0.22827148, -0.89746094, -2.7167969, 0.80908203, 2.7890625, 1.9443359, 0.5004883, 2.0703125, -0.6279297, -1.7177734, -2.1113281, 1.8613281, -0.9921875, 0.0647583, -1.7363281, 1.0664062, 1.8095703, 1.8447266, 0.7661133, -1.6435547, -1.8515625, -0.53515625, -0.30493164, 1.4697266, -0.97314453, -2.7910156, -0.16442871, 2.328125, -0.8676758, -2.4296875, 2.7714844, 1.4365234, -0.93603516, -0.85058594, -0.69970703, -1.5449219, 2.1699219, -0.4362793, -1.8769531, -1.5126953, -2.421875, -0.4272461, 0.6459961, -1.8574219, 2.015625, 0.107299805, 1.8466797, -2.7207031, -0.2878418, 2.1835938, 0.7138672, -0.27734375, 2.1113281, -0.6894531, -2.046875, 1.1132812, -2.1230469, -0.76660156, 3.1035156, -1.1035156, 0.8466797, -2.5136719, -0.87597656, -0.89697266, -0.47436523, -2.2792969, 0.62939453, 3.3984375, 1.4228516, 1.34375, -2.0546875, -1.3388672, 0.47216797, -0.5419922, 2.7070312, 0.42895508, -1.0351562, 0.072021484, -1.9384766, 4.3789062, -1.0488281, -0.9116211, -1.1552734, -1.3632812, -0.51464844, 0.7192383, 0.5878906, 0.80615234, 2.2636719, 1.3876953, 2.5859375, 2.6601562, -0.7939453, 2.6582031, 2.7539062, 0.7158203, -1.2167969, 0.5761719, -1.8867188, 0.8442383, 0.4597168, -1.3867188, 1.1035156, -0.62353516, 1.515625, -0.625, -1.0292969]}, "B08TBJCZCG": {"id": "B08TBJCZCG", "original": "Brand: Supsiah\nName: Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)\nDescription: \nFeatures: \ud835\udde9\ud835\uddf6\ud835\uddfb\ud835\ude01\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddd5\ud835\ude02\ud835\ude00\ud835\uddf6\ud835\uddfb\ud835\uddf2\ud835\ude00\ud835\ude00 \ud835\udde6\ud835\ude02\ud835\uddf6\ud835\ude01\ud835\uddf0\ud835\uddee\ud835\ude00\ud835\uddf2 \ud835\udde6\ud835\ude01\ud835\ude06\ud835\uddf9\ud835\uddf2: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life.\n\ud835\uddd9\ud835\uddff\ud835\uddf2\ud835\uddf2 \ud835\uddd4\ud835\ude00\ud835\ude00\ud835\uddf2\ud835\uddfa\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd5\ud835\uddd5\ud835\udde4 \ud835\uddda\ud835\uddff\ud835\uddf6\ud835\uddf9\ud835\uddf9 \ud835\uddda\ud835\uddff\ud835\uddee\ud835\ude01\ud835\uddf2: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use.\n\ud835\udde7\ud835\ude04\ud835\uddfc \ud835\uddd6\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddff\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddf6\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9 \ud835\uddd5\ud835\uddfc\ud835\ude05: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient.\n\ud835\uddd8\ud835\ude05\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\ude00\ud835\uddf6\ud835\ude01\ud835\uddf2 \ud835\uddd6\ud835\uddff\ud835\uddee\ud835\uddf3\ud835\ude01\ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\ude00\ud835\uddf5\ud835\uddf6\ud835\uddfd: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production.\n\ud835\uddd8\ud835\uddee\ud835\ude00\ud835\ude06 \ud835\ude01\ud835\uddfc \ud835\uddd4\ud835\uddf1\ud835\uddf1 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.\n", "embedding": [-1.1503906, 1.2314453, 0.46289062, -0.90234375, -1.7421875, 1.1640625, 2.2929688, -2.7226562, -1.8320312, 1.9042969, 1.6660156, 0.2434082, 1.6552734, -4.375, 0.25341797, -0.2409668, 0.43725586, 0.58984375, 2.9316406, 1.0410156, -0.45507812, 0.5234375, 1.1445312, -1.4736328, 0.84814453, 0.0034599304, 4.921875, -2.1738281, 0.7426758, -1.4169922, 1.2109375, -0.28686523, 1.5234375, 1.4882812, -2.1386719, -0.112854004, -1.9990234, 0.81933594, -0.7709961, -0.13513184, -1.1806641, -2.2617188, 0.49853516, -0.25708008, -2.2480469, -0.03366089, -0.94384766, -0.46240234, -0.6894531, -2.3457031, -0.5576172, 0.35498047, 0.6176758, 2.1484375, -2.9296875, 0.73876953, -0.53271484, -1.7373047, 0.17102051, -0.14916992, 3.109375, -0.24719238, -0.79589844, 0.9658203, -0.041870117, -2.6953125, -0.3630371, -0.36157227, 0.37304688, -0.57373047, 0.08496094, -1.4287109, -2.3886719, 1.3457031, -0.76416016, -1.1894531, -2.0078125, 2.546875, 1.0664062, 0.6118164, -2.0722656, 1.8994141, 1.7294922, -0.85839844, -0.95703125, 1.5244141, -1.4316406, -0.36108398, 0.052612305, 0.76708984, -1.1152344, 1.3730469, -1.7373047, -6.5820312, 1.6064453, -2.0585938, 0.7573242, -0.6640625, -0.82373047, 1.3369141, 0.37426758, -0.57714844, -0.060150146, 0.39648438, -2.3007812, -1.6113281, 0.90771484, 1.0244141, 0.097351074, 1.4267578, -1.1025391, 0.079711914, 2.1953125, 0.39624023, 0.7817383, 0.7758789, -0.48583984, 1.1914062, 2.5214844, 1.3144531, 3.2929688, 0.15429688, 0.04916382, -2.0332031, -1.0996094, -0.54296875, -0.86035156, 2.0742188, 4.4726562, 0.13256836, 1.6513672, -0.4489746, -0.47338867, 0.35473633, -2.1582031, -1.8095703, -0.8881836, -1.1298828, -1.1777344, 1.6123047, -2.8476562, 0.84277344, 2.7128906, -2.0273438, -1.34375, 0.060821533, -1.8447266, 1.6064453, -0.40405273, -2.015625, -1.5537109, -1.1357422, -0.9345703, -1.9238281, 0.92333984, -1.0078125, 0.15429688, -2.0820312, 2.0019531, 0.42236328, 2.7714844, -3.2949219, -1.0224609, 1.0166016, 2.2324219, -2.7070312, 0.95458984, 1.4755859, -0.073791504, 1.8955078, 0.5439453, -1.7255859, 0.24597168, -0.63964844, 1.8310547, -0.6274414, -1.9052734, 1.3173828, 0.2836914, -0.5678711, 0.10839844, -2.3886719, 1.4433594, 0.5341797, -0.25756836, -0.064208984, 0.15527344, -0.01576233, -1.1865234, -0.9238281, 0.35375977, 1.0419922, -1.1572266, 0.99902344, -1.0683594, -0.23132324, 0.058410645, -1.0761719, -1.2421875, 0.66259766, -1.1464844, -0.5214844, -0.7128906, 0.120788574, -1.9404297, -1.6650391, 0.43286133, 0.29101562, 3.2304688, 1.3046875, 0.20178223, -1.2626953, 1.421875, 2.0898438, 0.0569458, -1.2958984, 0.40014648, -1.2529297, 1.4306641, 1.7578125, -1.1152344, 0.10357666, 0.044128418, 2.5351562, -0.3881836, 0.7548828, 0.49291992, 1.5283203, -0.8823242, -0.8100586, 1.890625, 1.4550781, -2.3183594, 0.58203125, -1.2548828, 1.71875, 0.16723633, -0.28076172, -1.5087891, -0.034484863, 1.2978516, -2.1542969, -1.5410156, -0.2709961, -2.0605469, -0.17321777, -1.0761719, 2.328125, 0.9658203, -0.60839844, -0.38305664, 0.66259766, 0.018295288, 2.1445312, -0.46142578, 2.8359375, 0.1459961, 0.03527832, -1.6308594, -0.4038086, 2.1640625, 1.8632812, 0.11987305, 0.6845703, 1.0166016, -1.4130859, 1.1152344, 0.3173828, -2.9277344, -0.4807129, 1.5537109, 0.60498047, 1.4052734, -0.2265625, 1.7304688, 0.5048828, -0.68896484, 0.9580078, 2.3691406, 0.7241211, -0.24963379, 1.9160156, 1.2490234, -1.5400391, -2.2539062, -1.8212891, -2.0332031, -0.9716797, 0.8432617, 1.03125, 4.3007812, 0.3137207, 0.68847656, 3.7519531, -1.1474609, -1.1083984, 1.4677734, 1.9609375, -0.37329102, 1.3203125, 2.0253906, 0.95458984, 1.5673828, 1.7109375, -1.5576172, -1.3476562, 0.51171875, -2.9804688, -1.3867188, 0.7758789, -1.8505859, -0.8413086, 0.14770508, -0.47314453, -1.7919922, -1.5820312, -1.7207031, -2.2089844, -0.26123047, 2.0683594, 0.4387207, 0.49487305, -1.0097656, -1.34375, -0.9267578, 1.7314453, -0.24316406, 1.6513672, 2.6503906, -0.18066406, 0.40722656, 0.24865723, 0.4716797, -2.7792969, -3.6503906, -2.296875, -1.4814453, -0.7890625, 1.4677734, -1.0224609, 0.033233643, -0.6723633, -2.2636719, -1.4003906, -0.28295898, -4.15625, -0.30249023, -1.3603516, -1.046875, 1.3984375, -1.4580078, -0.2290039, 1.4726562, -4.84375, -0.8642578, 0.37670898, 1.3349609, 0.04309082, -2.5742188, 1.8017578, -1.0273438, 0.24255371, -0.15808105, -0.40625, 0.6147461, 0.14318848, -0.8334961, -2.9394531, 0.36108398, -0.004196167, -0.9038086, 0.04373169, 1.8417969, -2.9238281, -1.0322266, 1.1845703, -0.4453125, 5.5234375, 1.5097656, 2.3476562, -1.4921875, -0.48364258, -1.3857422, 0.28930664, -1.7392578, -2.6601562, 0.8930664, -1.0615234, -0.93359375, -3.1679688, 0.35791016, -0.7211914, -1.3212891, -1.0957031, 1.3173828, -1.3535156, 1.7011719, -2.1914062, -0.94873047, -1.1699219, 2.8085938, 1.3554688, 0.053222656, -1.3310547, -0.71240234, -1.9404297, 0.39746094, 1.9101562, 2.6308594, -0.3178711, 0.9277344, 0.7314453, 1.09375, -0.20092773, 0.56640625, -1.2626953, 3.390625, 2.0722656, -2.1171875, -1.2128906, -1.1035156, -0.32299805, -2.2832031, 0.13232422, 2.2949219, 2.3730469, 1.0253906, 0.038879395, 1.1064453, -0.80078125, -0.037750244, -0.73828125, -0.043701172, 2.21875, 2.2382812, -1.6132812, -1.0292969, 1.9736328, 2.2382812, -1.9990234, 0.42382812, 0.54345703, 0.83203125, 1.1357422, 0.87353516, 0.73828125, 0.47729492, -0.546875, 0.3449707, 0.7314453, -0.6586914, -1.8300781, 0.95166016, 0.38305664, -0.46313477, 1.90625, 1.8603516, 0.9267578, 2.1757812, 1.8710938, 0.94140625, -3.046875, 1.5527344, 1.4560547, 2.3300781, -0.16882324, 2.34375, -1.6269531, -0.6586914, 0.6953125, -0.9067383, 0.45117188, -1.4423828, -0.12536621, 2.4902344, -1.2236328, -0.7519531, -0.27978516, -0.2409668, -1.1416016, -1.375, 0.71484375, -2.1484375, -2.6601562, -0.43286133, -2.6796875, -2.2207031, -0.50634766, 1.4169922, -0.3720703, -1.2734375, 1.4248047, 2.1894531, -0.20410156, -1.2578125, -1.8349609, 1.3339844, -0.9848633, 3.5371094, 0.67871094, -1.0898438, 2.25, -2.1777344, 1.5810547, 1.8105469, 0.084472656, -0.6713867, -1.0664062, -1.3359375, 0.68115234, -0.36816406, 1.2705078, -0.27685547, -2.9492188, 0.7973633, -2.3261719, -0.15686035, 1.2314453, -1.0888672, -0.47851562, 1.4726562, 1.9238281, 1.3769531, -1.1855469, 4.6757812, 1.3808594, -2.6230469, 0.7216797, -2.0820312, -1.4042969, -0.7519531, -4.7851562, 0.8676758, -0.28295898, 0.21472168, 2.640625, 0.9003906, 0.61083984, 1.6943359, 0.6196289, -1.1367188, 0.084472656, -3.6601562, -0.7841797, -1.3378906, -0.48413086, 1.3173828, 0.095703125, -1.7880859, -1.5097656, 0.3125, -0.6748047, 2.4082031, 0.5566406, -1.4492188, 0.13549805, -2.0039062, 0.9472656, -1.7910156, 0.32983398, 0.90966797, -0.79589844, -0.84814453, 0.44067383, 1.6542969, 1.2050781, -0.0574646, 0.2055664, 2.5507812, 0.5048828, -1.2041016, -1.3378906, 0.39086914, 1.1240234, -0.9897461, -1.9677734, 0.53027344, -1.2285156, -2.4257812, -2.4707031, 0.6303711, 1.7021484, -1.9609375, 2.5195312, 0.121154785, 2.640625, 2.0351562, 0.5136719, -1.5224609, -0.8256836, -0.57421875, -1.7060547, -1.5947266, 0.62890625, -0.33544922, 0.73339844, -0.7841797, -0.37548828, 0.42114258, 0.4963379, 0.8779297, 0.9355469, 2.5722656, 0.4711914, 1.5351562, 3.78125, -1.4580078, -0.8979492, 0.5102539, -1.2382812, 0.38916016, 1.0175781, -0.19348145, -0.38134766, 1.0429688, 2.1308594, -1.9921875, -0.19177246, -0.6308594, -0.3059082, 0.27929688, -1.3525391, 2.2441406, -0.9135742, -0.7475586, -2.2109375, 0.5708008, 2.2871094, -1.6269531, 0.06939697, 1.0390625, 0.4645996, -0.86328125, -0.7128906, 0.90771484, 1.3466797, 1.5107422, 0.12597656, -0.8178711, -1.4707031, -0.02835083, 0.28881836, 2.9472656, -2.2773438, -1.1503906, 0.5966797, -0.66308594, 0.49682617, -1.2041016, 1.1269531, 2.40625, 0.6347656, 2.3183594, -0.04699707, -0.33862305, 1.1738281, 1.9814453, -1.9921875, 0.27368164, 0.48754883, -0.5859375, 0.6870117, 0.58203125, -4.4296875, -1.5722656, 1.0556641, -1.1308594, 0.9921875, -2.4023438, -2.2558594, 0.34448242, -2.1816406, 0.21411133, 1.1591797, -2.6367188, 0.85839844, -0.60302734, 1.171875, -1.0742188, 0.6044922, 3.1816406, 1.4902344, -0.3630371, 1.7246094, -1.0556641, -0.03829956, -1.2851562, -1.0605469, -4.0664062, -1.0419922, 2.3789062, 2.3417969, 2.1914062, 0.7060547, 1.984375, -1.0576172, 0.69189453, -1.9433594, 2.8183594, -0.8911133, 1.5722656, 3.3261719, -1.7539062, 0.7583008, -0.9169922, 1.9355469, 1.5527344, 0.765625, 1.0234375, -0.5908203, -0.6298828, 0.3474121, -2.5507812, -4.8242188, -1.78125, 0.055511475, 0.64160156, 1.0410156, 1.0595703, 0.5024414, 0.76904297, 0.38745117, 0.83154297, -0.6503906, -1.4570312, -0.05105591, 0.2512207, -1.2695312, -0.9243164, -0.34985352, 1.484375, 0.6142578, 0.68066406, -1.0664062, -2.4726562, -0.7416992, 0.064086914, -3.3515625, 0.05255127, -0.3701172, 0.18920898, -0.19934082, 0.25610352, 2.0761719, -0.76464844, 3.0585938, -1.3320312, 0.85791016, -0.076049805, -0.8144531, 1.5810547, -0.64990234, -1.0751953, 0.51171875, -2.7441406, 1.7294922, 1.1464844, 0.2758789, 1.4931641, 1.1933594, -0.82128906, -0.64941406, -0.4494629, -0.03274536, 1.0273438, 1.4443359, 0.3552246, -0.5830078, -3.3125, -2.0761719, 0.36889648, -0.53222656, -0.8491211, -2.4199219, 1.8271484, 0.068847656, 1.1601562, 0.453125, 0.49047852, -0.2199707, -2.640625, 1.3583984, 0.8071289, 1.8662109, 3.0371094, -1.1679688, -2.5332031, -2.4453125, 0.80029297, 0.9296875, -0.45922852, 0.12902832, -0.54589844, -1.1191406, 0.5654297, 0.7583008, 1.3740234, 2.7089844, 0.7089844, -0.31347656, 1.1962891, 0.6064453, -0.6381836, 0.17919922, 1.4892578, 3.1992188, -0.77783203, 3.6132812, -0.8935547, -1.0947266, 0.94921875, -1.3359375, 0.72753906, -0.26635742, -2.7167969, 1.4228516, -2.4902344, -0.27148438, -3.0273438, -0.67333984, -2.0976562, 1.9726562, 0.27856445, -2.4765625, -0.28149414, 3, -0.96191406, 0.69433594, 1.8320312, 1.2861328, -0.06341553, -0.30419922, -1.1552734, 0.5888672, 0.94873047, -0.84375, -0.02961731, 0.23217773, -1.3134766, 0.9794922, 2.3515625, 0.8510742, 2.3828125, 1.0253906, 1.015625, 1.71875, 3.4941406, 3.7128906, -0.44458008, 1.0654297, 2.0292969, -3.1445312, 0.9379883, 2.71875, 1.3613281, -0.068481445, -0.4284668, 1.8964844, 1.046875, 0.93310547, 1.0546875, 1.3730469, -0.5776367, -1.1201172, 2.0449219, -0.15820312, 0.16967773, -1.5185547, 0.48364258, -1.2822266, -0.047698975, -1.0634766, -2.4257812, 1.3789062, -1.1855469, 0.9477539, -0.5048828, 1.3378906, 0.96728516, -3.6347656, 0.5917969, 1.1328125, -1.1777344, -1.7363281, 0.64453125, 2.3007812, 1.5, -0.63427734, 1.1992188, 2.0585938, -0.3503418, 2.5410156, 1.3251953, 1.1289062, 0.016021729, 1.0810547, -0.8125, -0.19238281, -0.4411621, -0.6220703, -1.8261719, -1.3613281, 0.8730469, 0.18774414, 1.7207031, 1.7597656, -1.5537109, 0.4489746, 1.1816406, 1.2119141, -0.3383789, -0.22106934, -0.86572266, -1.7851562, -2.0214844, 0.6015625, 0.8881836, 2.3945312, 2.1542969, 1.1689453, 1.6425781, 2.390625, 1.6728516, 0.31201172, 0.5522461, -0.48657227, 1.6396484, -2.9648438, 0.60546875, -1.15625, 1.6357422, -1.4453125, 1.5, 1.1816406, 1.1689453, 1.6640625, -0.7294922, -0.08917236, -1.1347656, 0.5131836, 0.45751953, -0.50927734, -1.9638672, -1.0615234, 1.5185547, -1.4960938, -0.54296875, 1.1757812, 2.0136719, 0.060180664, 0.87841797, 1.3710938, -1.8691406, 0.31762695, 0.9135742, -0.22424316, -1.7587891, -0.74658203, 0.21557617, 0.45507812, -0.2685547, 0.24023438, 1.0078125, 0.52783203, -0.2088623, 1.7558594, 0.53466797, -0.080322266, -0.28833008, 0.47387695, -0.85546875, -1.9375, 1.0546875, 0.60302734, 1.2392578, 1.7373047, 1.3105469, -2.0449219, 1.7783203, -0.47045898, 0.3161621, -0.45996094, -2.3242188, 0.27416992, 3.9609375, 2.4882812, -0.13085938, -2.1992188, -3.0058594, 1.0576172, -1.3105469, 2.4960938, 0.21020508, -2.8125, -0.10681152, -2.4394531, 1.6777344, 0.18652344, -0.63427734, -1.2675781, -0.7421875, -0.3317871, -1.8837891, 1.2109375, 1.5078125, -0.68603516, -0.07763672, 3.8066406, 1.3916016, 1.3388672, 1.5449219, -0.07672119, 2.5722656, -3.0742188, 1.3037109, -1.703125, 1.4628906, 0.29858398, -1.4306641, 1.0742188, -0.31469727, 0.79345703, -2.40625, -0.7338867]}, "B01DVJ66H2": {"id": "B01DVJ66H2", "original": "Brand: Cooking Gift Set\nName: Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men\nDescription: Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
This grill kit includes the ultimate bbq smoker accessories:
  1. All-Natural Cherry Wood Chips
  2. All Natural Apple Wood Chips
  3. All-Natural Hickory Wood Chips
  4. Universal Grill Scraper / Bottle Opener
  5. Specialty Grilling Thermometer
  6. Stainless Steel Grill Smoker Box
  7. Hickory Smoked Salt
  8. Instructions, Recipe Cards, Care Instructions
When you grill over a base of our quality wood chips, you're kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
Looking for a gift for men who everything?
This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he'll love and his tastebuds will remember.\nFeatures: Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That's why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We're devoted to helping you get great results with the right tools and thorough instructions. And if you're ever stumped- we're available to help.\n100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don't settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips.\nTop-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything.\nThe Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They're unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything.\nAdd 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.\n", "embedding": [-0.91845703, 2.5136719, 2.3808594, -1.3144531, 1.7421875, 1.53125, 1.9951172, -1.7714844, 0.5239258, -0.21643066, 0.81689453, 2.0625, 1.2822266, -3.7265625, -1.1435547, -0.7578125, -1.9355469, 1.2480469, 1.0644531, -0.101989746, 0.8642578, 0.69628906, 0.7519531, -0.23840332, 1.4306641, 0.3720703, 4.015625, -2.3085938, 2.2929688, 0.7734375, 1.4326172, -0.13110352, 0.3544922, 2.7011719, -1.8945312, 0.9199219, 0.9892578, -0.8544922, 0.51660156, 0.40063477, -0.78222656, -1.3496094, 1.2802734, 1.765625, -4.15625, -1.3134766, -1.2949219, 1.7089844, -1.5820312, -3.1074219, 0.8066406, 2.8359375, -1.2871094, -0.21826172, -3.4960938, 1.1191406, -1.3261719, -3.2480469, 1.1474609, -0.00843811, 0.89404297, 0.077697754, -0.4477539, 0.38012695, -1.4384766, 0.40576172, 2.2460938, 0.081848145, -1.1464844, -0.67871094, 2.2988281, -0.68408203, -1.2177734, -0.9760742, -0.29003906, 0.81103516, -1.0634766, 1.3505859, -0.033813477, 0.79345703, -0.41845703, 2.8046875, -0.18078613, -1.5019531, 1.109375, -1.3222656, -2.3300781, 0.46411133, 1.8925781, 0.81933594, 0.90771484, 2.1464844, -0.72802734, -4.5195312, 0.91748047, -1.8808594, -1.6035156, -2.8339844, -0.47094727, 1.7304688, 0.2084961, -0.10107422, 0.9057617, 0.6201172, -2.4179688, 0.28564453, -0.14221191, 3.3613281, -2.296875, 0.13928223, -2.625, 1.1630859, 0.60839844, 1.2841797, 1.9921875, 2.8984375, -1.5839844, -1.3486328, 2.0273438, -0.09399414, 4.0390625, 1.2939453, 0.044036865, -1.3603516, -0.20532227, 0.076049805, -0.94091797, 4.5, 2.2519531, -0.5234375, 0.84228516, -0.22705078, -0.24743652, -0.47680664, -2.4042969, -2.1640625, -2.4101562, 0.4050293, -0.64501953, 1.5332031, 0.85546875, 2.1289062, 1.5371094, 0.10839844, -1.1591797, 0.8618164, -0.89404297, 0.81640625, -0.8041992, -2.2675781, 2.1015625, -1.3203125, -0.4013672, -1.5419922, 0.9667969, -1.1191406, 1.8955078, -1.4375, 0.05166626, 1.1162109, -0.67285156, -2.6699219, 0.35205078, 2.1796875, -0.33447266, -4.1796875, -0.27856445, 1.5039062, -1.2558594, 2.3007812, 1.6679688, 0.5078125, 1.0244141, -0.2927246, 0.67285156, -2.8632812, 0.25, 2.6542969, 1.0507812, -0.7026367, 3.46875, -2.375, 0.84765625, 1.3378906, 0.27319336, -0.5810547, 2.234375, 0.6279297, 0.6845703, -0.33569336, 1.6533203, 0.59228516, -0.048736572, 2.0117188, -0.15515137, -3.5957031, 1.9863281, -1.3583984, 1.6572266, 0.62597656, -1.7783203, 1.7890625, -0.5102539, 0.44628906, -1.1914062, -1.9257812, 0.9316406, -1.4033203, 2.3632812, 2.8398438, 0.9267578, -1.6044922, -0.45361328, 1.3779297, -0.2322998, -2.1992188, 0.07879639, -2.7480469, 1.0537109, 1.1142578, -1.5048828, 0.5786133, 0.7128906, 2.1679688, 1.1162109, 0.87109375, -0.43286133, 1.1171875, 0.91845703, -0.9091797, -0.7338867, 0.67333984, -0.94384766, 1.0546875, -0.41601562, 0.5883789, 1.3085938, -2.265625, -0.80615234, -1.7167969, -0.10986328, -0.103759766, -1.0458984, -1.0029297, -1.6445312, -0.48632812, -0.08331299, 1.8339844, -0.09136963, -1.0761719, -3.609375, 0.5390625, 2.0742188, 1.5839844, -1.7041016, -1.1953125, -1.6044922, -0.7114258, -2.9726562, 0.9316406, 1.2392578, 0.24316406, -0.5029297, 1.9873047, 0.88964844, 0.13867188, 2.828125, -0.9003906, -1.6396484, -2.3183594, -0.09118652, -0.38989258, 1.0625, -0.6357422, 2.7285156, 0.3737793, 0.45776367, -0.014343262, -0.045288086, -0.5698242, 0.036010742, 1.2441406, 1.7285156, -1.6152344, -0.59277344, -1.2363281, -2.3828125, -2.3417969, 2.8574219, 1.7998047, 5.3789062, 0.17504883, -0.16931152, 2.6992188, -3.2578125, 1.1220703, -0.5761719, -0.64697266, -1.1542969, 0.34204102, 1.9150391, 0.85253906, 0.8691406, -1.4345703, -1.8769531, -0.24658203, 1.8173828, -0.34814453, 0.5258789, -0.3972168, -1.8291016, -1.7617188, -0.95410156, 0.65771484, -2.2050781, -0.4296875, -1.9208984, -1.5048828, -0.5878906, -0.3725586, 0.19787598, 1.8095703, 0.49316406, -2.6875, -1.9511719, 2.4296875, -1.4033203, 1.0087891, -0.4580078, -0.60595703, 1.78125, 0.08905029, 1.7773438, -0.69140625, -1.7333984, -1.1474609, 0.5439453, -2.0117188, -0.021087646, 1.6787109, -0.63720703, -0.65722656, -2.2910156, 0.14978027, -1.3173828, -2.0761719, -1.2705078, -0.3725586, -1.7841797, 4.453125, -2.2558594, 1.8769531, 0.6303711, -5.03125, -0.50683594, 0.59277344, 1.9853516, -0.19494629, -2.2363281, 0.5620117, -0.89941406, -0.42749023, 0.24304199, -0.086120605, 0.36865234, 0.20043945, 2.3632812, -1.6660156, 0.16101074, -1.7128906, -0.9941406, -0.101989746, 3.6484375, -1.4707031, -1.7636719, 1.6933594, -0.22509766, 4.1367188, -0.3166504, -0.734375, -1.6777344, 0.47973633, -1.3320312, -0.5463867, -1.1083984, -2.1875, 0.74121094, -1.484375, 0.07330322, -2.0917969, 2.0078125, -1.5820312, -0.11401367, -1.453125, 3.6230469, -1.8554688, -0.55810547, -0.84716797, -0.35986328, 0.9160156, -0.5698242, 0.88183594, -0.37182617, -0.9506836, 0.921875, -0.56152344, -2.640625, -0.64453125, 3.1757812, -1.5224609, 0.7792969, 0.94970703, 1.0664062, -0.45239258, 2.3222656, -2.5019531, 3.3945312, 1.3769531, -2.4511719, -2.5683594, -0.27148438, -1.7285156, -2.2324219, 2.3808594, 2.8632812, 0.32983398, 0.3322754, 1.1201172, 0.2878418, -0.25830078, 3.890625, -0.53466797, -0.6430664, 1.9267578, 2.1582031, -2.2753906, -2.546875, 2.0019531, 0.60253906, -1.7119141, -0.62060547, 2.2070312, 0.06616211, 0.68847656, 0.57958984, 1.1982422, 0.77734375, -0.39672852, 2.4414062, 0.9970703, -2.1855469, -1.0693359, 1.0976562, -1.0703125, 0.3310547, 0.45507812, 0.8613281, 1.5332031, 3.7695312, 1.0732422, 0.7651367, -0.23596191, 1.1220703, -0.20617676, 2.828125, -0.68652344, 1.2578125, -1.6054688, -1.2548828, 0.59472656, -1.0273438, 1.9267578, -2.3457031, 0.15820312, 2.4550781, -0.36157227, -1.3085938, 0.7709961, -0.17529297, 0.64160156, -1.5087891, -0.20483398, -2.3671875, 0.36108398, 2.2304688, -0.5175781, -3.2363281, -2.8984375, 1.5449219, -0.4338379, -0.30786133, -0.75927734, 2.2070312, -1.2011719, -0.18640137, 0.14746094, 1.4814453, -2.5976562, 1.6923828, -2.4179688, -0.51953125, 0.93603516, -4.1992188, 1.6552734, 2.0957031, -0.51708984, 0.22399902, -0.2512207, -0.5961914, -1.5898438, -0.059020996, 0.81347656, 0.35180664, -1.9873047, 0.34375, -1.4755859, -0.6635742, 0.2442627, -2.6289062, -0.5913086, 1.9462891, 0.89990234, 0.52490234, -0.7553711, 3.9179688, 0.75683594, -2.3261719, 3.0117188, -1.2998047, 0.45239258, -1.8183594, -3.4414062, 1.0351562, -0.7661133, -0.7285156, 0.70751953, 1.8222656, 0.40527344, 3.8515625, 1.1884766, 0.1616211, -0.55126953, -0.7446289, 0.23791504, -1.5742188, -0.9682617, -0.28295898, -0.24133301, -1.3828125, -1.5722656, -0.5151367, -1.7099609, 2.6523438, 1.1582031, -1.9501953, 1.0947266, -3.9941406, 0.49243164, -0.26538086, 0.5776367, -1.6191406, -2.5371094, 0.5883789, 0.60595703, 2.8476562, 1.9765625, -0.2939453, -0.94970703, -0.11224365, -0.5058594, -1.6220703, -1.8056641, 0.8798828, 3.71875, -0.27172852, 0.6713867, -1.0693359, -0.2878418, -0.28857422, 0.3930664, 0.44580078, 0.5253906, -2.3828125, 0.4013672, 1.8876953, 1.2939453, 1.3339844, -1.6552734, -1.6162109, -1.5839844, 0.42333984, -0.5727539, -2.5859375, -2.4667969, -1.3427734, -0.80371094, -1.1748047, -1.5234375, 1.2490234, 0.66748047, -0.40307617, 0.045654297, 1.5771484, 2.3789062, 1.7939453, 4.2109375, 0.95410156, -0.9458008, 2.1191406, -3.4082031, 1.4101562, -0.66015625, -0.16137695, -2.1269531, -0.00021362305, -1.1201172, -1.0126953, 0.9711914, 0.14294434, 2.5683594, 0.029266357, -1.4570312, 0.020263672, 0.13195801, -0.1907959, 0.12817383, -1.7441406, 1.8720703, -1.7451172, -1.015625, 1.6113281, 0.56591797, -1.1220703, -0.45288086, 1.0058594, 0.5463867, -0.6459961, 2.859375, 0.14489746, -1.8212891, 0.7661133, 1.5498047, 0.4790039, 1.3535156, 0.7739258, 1.2314453, 0.3857422, 0.3125, -0.97314453, 3.2578125, 1.2880859, -1.5029297, 5.265625, 0.85839844, -1.4912109, -0.2775879, 1.7207031, -2.4628906, 1.3916016, 1.1367188, -0.99658203, 0.26049805, 0.59521484, -2.2148438, -1.0615234, 1.0849609, -1.0488281, 1.8701172, -2.3261719, -2.1660156, 1.4941406, -1.7119141, 0.12402344, -1.2890625, -0.7211914, 0.99609375, -0.07635498, -0.99316406, -2.5332031, 1.5615234, 4.078125, 0.15283203, -0.7558594, 1.6298828, -0.9604492, -0.59375, -1.3544922, -0.83447266, -2.0488281, -2.2070312, 1.8935547, 2.0117188, 1.4716797, 0.1315918, 4.03125, -1.8339844, 1.6982422, -3.9863281, 2.8769531, -2.2773438, -0.058380127, 1.3339844, -2.9980469, 2.0488281, -1.6933594, 2.3339844, 1.0673828, 1.9638672, -0.5419922, -3.015625, -0.70996094, 1.5419922, -2.1542969, -3.5234375, -1.9003906, 0.05935669, 0.55029297, -1.0458984, 1.3515625, 0.44921875, 1.1542969, -1.1640625, -0.60253906, -1.3574219, -0.8383789, -0.7368164, 0.4362793, -4.0546875, 0.49316406, 0.22766113, -1.4882812, 2.3164062, 1.3876953, -0.81103516, -3.2207031, 0.9580078, -0.52001953, -1.4619141, -1.1835938, 0.96191406, 0.54785156, 1.2226562, 1.1591797, 1.8535156, -0.10424805, 2.2070312, -2.1757812, -0.4152832, -1.8662109, -2.6601562, 1.4892578, -1.9609375, -1.7373047, -0.07092285, -2.2285156, 1.9716797, -0.6411133, -0.48413086, 2.125, -2.296875, -0.32885742, -0.8173828, -0.20800781, 0.6484375, 1.3251953, -0.22680664, 0.5292969, -1.6679688, -3.3496094, -0.5620117, 0.24841309, -1.3085938, 0.7583008, -0.8725586, 1.3955078, 1.2197266, -0.38110352, 1.4863281, 2.1152344, -0.09643555, -1.1162109, -0.6586914, -0.095336914, 2.3574219, -0.34936523, -1.0712891, -0.63134766, -0.73828125, -0.45336914, 0.46240234, -0.12023926, -0.23876953, -1.9541016, -1.0185547, -0.0087890625, 1.1308594, 2.015625, 1.515625, 1.3730469, -0.08758545, -0.45507812, 0.6386719, -1.1777344, 2.7070312, 0.12695312, 2.5097656, -1.7060547, 3.34375, -2.9628906, -1.921875, 0.34838867, -0.6269531, -0.42285156, -0.046417236, -2.8496094, -0.22790527, 0.25878906, 0.5805664, -2.4140625, 0.10974121, -1.0097656, 0.62646484, -0.36450195, -0.35620117, -2.5097656, 3.6230469, -0.5625, 3.9335938, 2.0175781, -1.9052734, -3.1582031, -0.70458984, -0.15588379, -1.3203125, 1.1386719, 0.39038086, 1.2167969, 0.8222656, -1.2744141, -0.6455078, 3.2265625, 1.5253906, 0.6870117, 1.2480469, 2.6269531, 0.014846802, 4.4140625, 3.3007812, 0.15063477, 0.47509766, 3.5214844, -0.7685547, 1.6425781, 3.7304688, 2.4257812, 0.84521484, -0.17993164, 1.8564453, 0.39331055, -0.31469727, -0.79052734, 0.4645996, -1.4208984, -0.68652344, 3.2792969, 0.61865234, -1.0556641, -1.7011719, 1.2480469, -0.5126953, -0.13891602, -3.1503906, -1.5244141, 2.6953125, 0.34936523, 0.609375, -0.9604492, 0.68359375, 0.6142578, -4.28125, 0.7470703, 1.5214844, -1.0019531, -1.2578125, 2.5546875, 0.88671875, 0.6166992, 0.90478516, 1.0009766, 1.6699219, 1.5869141, 2.1972656, 1.5664062, -0.70214844, -0.54296875, 1.2109375, -0.31079102, -2.3027344, -1.6552734, -1.3867188, -2.2675781, -1.9853516, 1.7480469, -0.09460449, 3.7246094, 1.1875, -3.3886719, 1.7480469, 0.95703125, 1.8378906, -0.29248047, 1.6835938, 0.12023926, -1.5283203, -2.3183594, 0.7207031, 1.6875, 0.56640625, 0.2746582, -2.0625, 1.6591797, 1.7041016, 1.8876953, 0.36132812, 1.0878906, -1.0898438, -1.3320312, 0.39282227, 2.4628906, 1.046875, 2.4960938, 0.421875, 0.30932617, 1.3671875, 1.1611328, 0.16870117, -0.7675781, 0.068847656, 0.1850586, -2.3613281, 0.7895508, 0.29589844, -4.8203125, -1.5683594, 1.6660156, -1.5136719, -0.39868164, -0.30615234, 2.6503906, 2.03125, -0.0491333, 0.25439453, -2.8183594, -0.8120117, 0.35913086, 0.3227539, -0.51953125, 0.27294922, -0.6269531, -0.90771484, -2.7148438, 0.81640625, 2.140625, 0.2368164, -1.0888672, 0.9511719, 0.5239258, -0.14746094, 0.5024414, -1.2158203, -0.51904297, -2.53125, 0.4326172, -0.46728516, 1.5888672, 1.8183594, 0.88623047, -1.2158203, -1.1855469, -1.0400391, -0.47143555, -0.13867188, 0.19641113, 2.9140625, 4.1523438, 1.4941406, -0.3154297, -1.7519531, -2.6425781, 1.0595703, -3.8828125, 0.52685547, 1.4355469, -1.2978516, -0.41064453, -2.15625, 0.48657227, 0.9453125, -1.6210938, 1.2578125, -2.0253906, -0.68408203, -0.89404297, 1.9121094, 1.4638672, 1.1630859, 1.4599609, 3.1835938, 1.1171875, 0.81152344, 1.3125, 0.7475586, 0.98876953, -1.0732422, 0.0023345947, -0.3852539, 1.9042969, 0.26904297, -1.8759766, -1.4335938, -0.4038086, 0.28344727, -1.3847656, -2.3632812]}, "B00008ZA09": {"id": "B00008ZA09", "original": "Brand: Bernzomatic\nName: Bernzomatic TS4000 Trigger Start Torch\nDescription: \nFeatures: TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings.\nDURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip.\nHIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance.\nSWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.\n", "embedding": [-0.18640137, 2.8652344, 0.38793945, -3.2363281, -0.12768555, -1.5888672, 0.4387207, -0.90527344, 0.7265625, -1.4394531, 0.41088867, -1.0996094, -1.5839844, -2.0429688, -1.4482422, 0.66748047, -1.0810547, -1.1220703, -0.11364746, 1.3017578, -0.21484375, 0.8300781, 3.4609375, -1.9228516, 0.51123047, 1.0888672, 4.2109375, -3.1777344, -1.09375, -0.45703125, 2.5039062, 0.6503906, 0.0069122314, 0.27612305, -0.8779297, 1.7021484, 1.1005859, -1.1699219, -1.9423828, -1.2070312, -0.03829956, 0.21154785, 1.1044922, 0.01727295, -0.6694336, 2.8613281, -3.2773438, -0.1697998, -1.6162109, 1.9365234, 0.73046875, 1.3027344, -0.36743164, 0.23999023, 1.4267578, 0.47680664, -1.4345703, -1.1953125, 0.8754883, 0.5136719, 1.9482422, 0.54003906, -1.5986328, 1.6220703, -0.2631836, 2.328125, -1.6738281, 0.3161621, 1.7675781, 0.39916992, 0.47436523, 0.82373047, 1.0976562, -0.76171875, 1.1279297, 0.95996094, -3.3339844, 1.8554688, 0.34350586, 0.32617188, 0.3071289, 2.2011719, -0.5859375, 0.11987305, 2.1601562, -1.8398438, -0.9423828, 0.65478516, 1.2802734, -0.67529297, 0.42773438, -0.9760742, -0.24963379, -3.2714844, 2.9277344, -0.73876953, 0.6870117, 0.62060547, 1.3066406, 1.921875, -0.04385376, -0.3408203, 1.2714844, 1.4003906, -2.9492188, -0.40478516, -1.59375, 0.3371582, 0.4284668, -0.89746094, -2.4980469, 1.0009766, 0.28808594, 2.0195312, -2.3378906, -0.36743164, 0.24682617, -2.3183594, 2.015625, 0.22167969, 2.0664062, -0.30444336, -0.18017578, -2.2871094, 1.3134766, -1.0107422, -0.113342285, -0.30786133, 1.7119141, 0.45581055, 0.68408203, -1.3046875, 3.6953125, 0.14819336, 1.1669922, -1.5771484, -2.046875, -0.16882324, -1.9453125, 0.27612305, -4.1992188, 2.3769531, -0.05392456, -2.0097656, -4.6367188, -0.5292969, 1.2138672, 0.40063477, 1.0878906, -1.3222656, -0.45117188, -2.1914062, -2.1171875, -2.3339844, 1.4365234, 1.4970703, -3.7148438, -0.53027344, 2.5273438, 1.0849609, 0.95751953, 1.0019531, -0.40063477, 0.75, -2.1132812, -2.2441406, 0.030227661, 2.4238281, 1.3818359, 3.6289062, 0.18530273, -0.9711914, -0.68359375, -2.6132812, -0.16125488, -1.7119141, 0.12561035, 3.4628906, 0.5991211, 0.38891602, -0.74609375, -1.7646484, -0.124938965, -2.2148438, 1.3144531, -2.9707031, -0.52978516, -0.2644043, 1.1660156, -1.1650391, 0.5708008, 2.3066406, 0.37646484, -1.2109375, 2.1582031, -1.7646484, -1.2519531, -2.5722656, 0.64404297, 0.7294922, -1.5966797, -1.6855469, -0.09802246, 2, -1.7304688, 0.14782715, 0.87060547, 0.9433594, -0.32788086, 0.89160156, 1.7919922, -0.17077637, 1.0849609, -1.3359375, 0.52783203, -2.8144531, 0.06732178, 0.73046875, 1.4091797, 1.0517578, 1.4423828, -2.5683594, 0.7890625, 1.5097656, 1.1259766, 2.546875, -1.8935547, -1.1552734, -0.3190918, -0.1772461, -0.9863281, 0.2902832, -0.02067566, -0.8041992, -0.48901367, 1.4765625, -1.2988281, 0.8417969, 1.7021484, -0.49658203, -0.16015625, 0.66845703, 0.10852051, 0.05731201, 1.1494141, -2.2558594, -0.3762207, 0.2998047, -0.7836914, -0.6621094, 3.2617188, -0.18041992, 2.5, 1.8964844, -1.5664062, -2.609375, 1.0546875, 0.12719727, 0.48754883, -3.8828125, 2.28125, 0.5131836, 0.4350586, -1.0761719, 1.1083984, -2.4511719, -0.0014219284, -0.24816895, 2.2539062, -0.060424805, -0.31274414, 0.075683594, -0.061798096, 0.99560547, 2.3691406, 4.296875, -0.24084473, 1.8886719, 1.109375, 1.3447266, 0.75097656, -0.29663086, 1.5498047, -2.0859375, 0.45922852, -0.9682617, 2.078125, -1.5898438, -0.68847656, 0.50927734, 4.109375, -1.5800781, -2.3710938, -0.23217773, -0.60595703, 2.9472656, 0.5048828, 0.6010742, 0.9633789, -2.90625, 1.5009766, 1.5605469, -0.011306763, 2.828125, 0.5986328, 0.5449219, 0.55126953, -1.546875, 0.16955566, 0.92333984, 1.5087891, 0.33251953, -0.0068588257, 0.7182617, -2.8867188, -1.1611328, 2.6953125, -3.3339844, 0.99853516, -0.17871094, 2.8222656, 3.78125, 2.0117188, -1.4824219, -0.0287323, -0.6459961, -0.7944336, 0.9760742, 1.8173828, 1.5087891, -1.9326172, -1.3886719, -0.70947266, -3.7050781, -0.5732422, 0.067993164, 0.27148438, -5.203125, 1.7607422, -2.3984375, -1.1777344, 4.6875, -2.1816406, 0.93847656, 1.1191406, -3.4375, -0.5942383, 0.70703125, -1.0273438, -0.61083984, -1.3056641, 2.7636719, 1.1513672, -2.1601562, 0.12060547, -0.27783203, 0.9580078, 1.4306641, -0.9526367, 1.4853516, 0.73828125, 0.30419922, -1.3808594, 2.8496094, 2.3476562, -3.2128906, 2.6308594, -2.5703125, -0.20117188, -1.0507812, 2.3652344, -0.062927246, 1.6699219, -1.4091797, 0.97021484, 0.5917969, 0.41088867, 1.1171875, 0.5932617, 1.4248047, 0.18103027, -1.4414062, 0.5253906, -2.1738281, -2.7714844, 1.8945312, 1.1630859, -0.62353516, 1.7226562, -0.44360352, -1.3974609, 0.30273438, -0.7426758, -1.3027344, -1.3574219, -0.57958984, 0.56933594, -1.6826172, -0.2052002, 2.0371094, -2.0332031, -1.2802734, -3.2324219, -2.3671875, -0.5830078, -0.09954834, 0.4951172, -0.78222656, -0.73339844, 0.8574219, -0.796875, -0.35131836, 0.9765625, -0.06774902, 2.2636719, -3.0957031, 0.60839844, 0.72265625, -1.6630859, 2.0957031, -0.6513672, 0.22814941, -1.8310547, 1.1220703, 1.6904297, -0.24169922, 1.4589844, -0.2956543, 0.11090088, 0.15319824, 3.2207031, -1.6611328, -2.7480469, -1.1152344, -1.3271484, -1.1503906, -1.8271484, 0.8330078, -0.22912598, -1.8535156, -1.4892578, 2.1542969, -1.2744141, 0.077819824, 2.71875, -4.0546875, 2.3964844, -2.1777344, -0.14379883, -0.22912598, -1.0449219, 3.5117188, 0.5878906, 0.9448242, 1.2011719, 0.19152832, 0.20690918, 0.37158203, 1.7832031, 2.0351562, 1.7949219, 0.6635742, -0.39648438, 0.15490723, 3.1503906, 1.71875, 1.3017578, 0.53271484, -1.3105469, 0.84765625, 1.4980469, 1.6240234, -1.6054688, -1.6816406, 0.40405273, -0.18273926, -0.8857422, 1.7480469, 1.5244141, -0.6669922, -2.6933594, 0.95751953, -1.3115234, -2.2148438, -0.5961914, -0.08428955, 2.2402344, -4.6757812, -0.33911133, -0.26464844, -0.6386719, -1.125, -1.1835938, 0.5336914, -0.09301758, -1.78125, 1.3134766, -0.21838379, 2.5019531, -0.3725586, -1.3486328, 0.45922852, -1.8017578, 0.014968872, 0.60498047, -3.0195312, -1.1816406, -1.171875, -0.81347656, 0.69091797, -0.0040779114, -1.3535156, -2.0371094, 0.39501953, 2.9726562, -2.3144531, 2.4980469, 0.41577148, -3.0800781, 1.4648438, 1.7851562, -1.0400391, -1.3759766, 0.088134766, 1.0029297, 0.17785645, -1.34375, 1.3964844, -2.09375, -2.4042969, -4.9140625, -0.9067383, 0.5839844, 0.4790039, 1.8691406, 2.3125, -0.5161133, 1.2421875, 0.2565918, 1.6220703, -0.35205078, -2.3730469, -0.16564941, 2.2617188, -0.6738281, -2.140625, 1.3007812, 1.8886719, -0.5488281, -0.7890625, -0.73828125, -0.28515625, 0.36669922, 0.27734375, 0.56591797, 0.09625244, -0.41333008, -0.87597656, 0.6791992, -1.3095703, 1.8193359, -0.11236572, -0.08886719, -1.9970703, 0.45458984, -0.60058594, 0.15283203, -0.6381836, 1.5615234, 2.7402344, 0.16345215, -0.9326172, -1.1298828, 2.2207031, 1.6591797, -3.5820312, -0.14746094, -1.2119141, 1.5253906, -0.6801758, 2.6542969, -0.07513428, -1.8886719, -0.099365234, 0.44384766, -0.22753906, 2.1132812, -0.50341797, -1.0449219, -0.7861328, -1.9384766, -1.2080078, -1.1474609, 1.9033203, 2.890625, 0.30493164, 1.5048828, 0.8334961, 1.5341797, -0.8276367, -2.4941406, -1.5820312, 0.36791992, 2.3710938, -0.7705078, 1.2841797, -1.3330078, -1.3417969, -1.9902344, 1.2265625, -1.5644531, -0.074645996, -1.28125, 1.2197266, 1.8671875, 0.14685059, 0.7446289, -0.59716797, 2.0253906, -1.7158203, -0.25610352, -0.22253418, -0.3388672, -1.6689453, -0.07128906, 2.4511719, -0.22753906, 0.47436523, -0.004924774, -0.39624023, -0.5097656, 0.5126953, -0.1149292, -0.94677734, -0.100097656, -0.19995117, 2.21875, 0.6386719, 3.9121094, -1.1064453, -1.0654297, 2.9863281, 0.016433716, -0.12408447, 2.6933594, 0.48779297, 1.1669922, -1.1582031, -1.9238281, 1.3144531, 0.14562988, 0.09857178, 2.859375, -0.99121094, -0.125, -1.4169922, 1.9199219, -2.3808594, 0.5595703, -1.2001953, -2.71875, 3.3007812, 0.46069336, -1.1611328, 0.14245605, 3.1679688, -1.5585938, 0.5258789, -1.421875, 1.1337891, 0.6220703, -0.55029297, -2.0449219, -1.6474609, 4.1523438, 1.3408203, 0.019454956, 0.7192383, 1.0488281, 1.9423828, 0.9941406, -0.18981934, -0.74316406, 0.47680664, 1.9082031, -1.65625, 0.1821289, -0.6298828, -0.082092285, 2.0136719, 0.58447266, 1.0839844, 1.8515625, 2.3007812, 1.8095703, -0.7890625, 0.17993164, -0.49853516, -0.39160156, -0.62939453, 0.49291992, 2.1953125, -0.82421875, 1.1064453, -0.17919922, -0.14245605, -1.2900391, 0.7661133, 0.2709961, -1.3466797, -1.7333984, -0.60546875, -3.2832031, -3.265625, -1.9560547, -0.3149414, 0.71240234, 1.3369141, 1.7548828, 0.15588379, -0.6699219, -0.66845703, 1.7431641, -0.5678711, 0.9042969, -1.3642578, 0.9746094, -0.8486328, -0.90234375, -0.10101318, -1.0166016, -1.2246094, -0.2692871, 3.7050781, -1.2421875, -3.8652344, 3.9570312, 0.7133789, -0.33251953, 0.8330078, 0.6713867, -0.02734375, 2.3457031, -1.5810547, -1.7148438, 0.30859375, -1.5019531, -0.20751953, 0.36645508, -2.0839844, -0.56347656, 2.6835938, 0.7915039, -1.46875, 1.3554688, 0.8544922, -1.1738281, -0.024032593, 0.49121094, -1.46875, -0.5073242, -3.1347656, 0.7597656, 0.93066406, 0.7963867, 1.4052734, -0.8125, 0.2902832, 0.60009766, 0.9482422, -1.0839844, 0.3046875, 2.8378906, -0.111572266, 1.3271484, -0.35595703, 0.7089844, 1.4970703, -0.88427734, -1.4453125, 0.13989258, 0.39868164, 0.043640137, 2.484375, -1.5800781, -3.5195312, 0.22741699, -1.4179688, 2, 3.4296875, 0.99316406, -0.46166992, 2.2871094, -1.5009766, -0.29736328, 0.9267578, 0.73828125, -0.8222656, -1.3613281, -1.2978516, -1.7783203, 0.56933594, -1.7480469, 0.05731201, 2.359375, -0.39135742, 0.51416016, 0.20141602, 0.18371582, -2.6152344, 1.2197266, -0.7714844, -1.3027344, 2.7460938, 0.09161377, -0.7661133, 0.41015625, -0.0947876, 2.4472656, 2.4550781, -2.3359375, -0.85595703, 2.4824219, 0.94628906, 0.74658203, 1.3574219, -0.84472656, 0.64160156, 1.5273438, 1.8652344, -2.2148438, -1.0957031, 0.7167969, 0.9609375, 1.7929688, -2.3066406, 1.2226562, -0.41064453, 2.0214844, 0.3359375, 0.6748047, -1.0185547, 0.14257812, 1.3896484, 1.5048828, -0.35009766, 3.0722656, 1.0683594, -0.22998047, -0.30126953, 1.7421875, 0.69921875, 3.5097656, 0.75439453, 0.7792969, -0.42358398, -0.14575195, -1.3115234, -0.49536133, -1.484375, -1.3105469, -0.6953125, -0.70703125, -2.3007812, 0.01878357, 0.91308594, 0.21777344, -1.9550781, 0.30639648, -1.2148438, -1.0439453, -1.2714844, 2.7695312, 2.1894531, -1.6865234, -2.2128906, -0.9633789, -1.2724609, -0.7631836, -2.4902344, 0.031036377, -1.3115234, 0.5332031, 1.0507812, 1.3242188, 0.30273438, -0.0058174133, -0.13574219, 1.1933594, 0.4958496, -0.95166016, -0.037475586, -2.921875, -0.47070312, 1.6318359, 2.6855469, -0.88623047, 0.5385742, -0.24890137, 1.9589844, -1.453125, -1.265625, 2.5058594, 0.6777344, -1.6191406, 2.6269531, -1.1738281, 1.2949219, -2.3339844, -0.48120117, -0.39868164, 0.83984375, 1.4814453, 0.48828125, 1.1523438, 0.47485352, 1.0605469, 2.2011719, -1.515625, -0.2861328, -1.1992188, -1.8349609, 0.06958008, -2.5058594, 0.9946289, -1.0839844, 0.28393555, -3.0058594, 2.3359375, -1.1259766, -4.0703125, -1.2841797, 4.7617188, -2.1523438, 0.4880371, 0.15332031, -2.0214844, 0.12976074, -3.3945312, 0.4326172, 1.6835938, -0.91552734, -4.9804688, 0.7631836, -1.0537109, 0.60058594, -0.23999023, -0.13879395, 2.828125, -0.5673828, -0.64941406, 0.017211914, 0.3244629, 1.0195312, 2.7890625, -0.7260742, -0.017547607, 1.1113281, 0.66552734, -1.8398438, -2.0332031, 2.0078125, 3.9355469, 0.33911133, -2.0019531, -0.31225586, -1.8535156, -0.5473633, 2.6113281, 0.9008789, 0.52246094, 0.10949707, 2.3144531, -1.3818359, -1.8974609, 1.5722656, -1.3730469, 2.2792969, -0.04977417, -5.0859375, -2.046875, 0.18688965, -1.1992188, 1.6748047, 1.4267578, -1.4335938, 0.63720703, 0.3791504, -2.8222656, 0.3310547, -2.0039062, -0.3071289, 0.8925781, -2.3183594, 1.5615234, 0.5708008, 3.6386719, -2.5878906, 0.56103516, -0.30078125, -1.1552734, 0.81396484, -2.2714844, 2.1601562, -1.4160156, -0.89404297, -0.19836426, 2.9277344, -1.8896484, -0.21899414, 0.4440918, 1.8408203, 1.5, -0.75390625, 0.3317871, -3.8261719, 2.3828125, 1.1777344, -1.4746094, 1.3310547, 1.5097656, -0.671875, -3.0976562, -2.8535156]}, "B08M9HL7XW": {"id": "B08M9HL7XW", "original": "Brand: Lovely Snail\nName: Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic\nDescription: Features:
Durable metal frame
Thermometer on the lid
Airflow control
Coal grids for cooking chambers
Attractive wood handles

Grill material: metal
Grill grid material: stainless steel
Overall size: 16.5 x 11.8 x 14.6 inch
Weight: 3.6 kg/7.9 lb
Color: black/green
Delivery contents: 1 x charcoal grill + 1 x instruction
Please Note: Please assemble the grill by adults.

\nFeatures: \u3010Outdoor BBQ Grill\u3011: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences.\n\u3010Versatile Charcoal Grill\u3011: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness.\n\u3010Healthy & Premium Quality\u3011: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy.\n\u3010Precise Cooking\u3011: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising.\n\u3010Easy to Assemble & Use\u3011: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.\n", "embedding": [-0.35009766, 2.0117188, 1.4785156, 0.38842773, -1.0175781, 0.043640137, 1.3925781, -1.4873047, -0.0053520203, 2.7949219, -0.06652832, 0.20605469, 0.91308594, -3.875, -1.5429688, 0.48413086, 1.1142578, 0.31030273, 1.6777344, -3.34375, 0.83154297, 0.14050293, 1.7617188, 0.4309082, 2.0859375, -2.2148438, 2.5195312, -1.5556641, 0.16516113, -1.578125, 1.8662109, -0.6743164, 0.59716797, 1.703125, -0.9345703, -0.47924805, -0.77783203, 0.4724121, 0.3479004, -0.040496826, -0.3815918, 0.4111328, 0.055480957, 0.96435547, -4.4960938, 0.7207031, -1.6611328, 1.1992188, -0.024475098, -0.7319336, 0.18725586, 0.9248047, -0.87109375, 0.8066406, -2.0917969, 1.5078125, -0.09436035, -2.9121094, 1.5302734, -1.7431641, 1.5039062, 0.39208984, -0.56591797, 2.5253906, -0.24389648, -1.1699219, -0.57128906, -0.65283203, -0.6430664, -1.0087891, -0.33764648, 2.3691406, -1.3730469, -0.012710571, -0.2902832, -1.2167969, -2.7871094, 2.8671875, 0.52197266, 0.92089844, -1.7822266, 2.9433594, -0.11578369, -1.0644531, -0.44335938, 1.4619141, -2.46875, 0.07104492, 0.70214844, -0.5917969, 0.34936523, 1.1630859, -1.0917969, -3.5761719, -0.36547852, -4.7070312, 0.3251953, -0.49560547, -1.8945312, -0.3955078, -0.5473633, -1.3574219, -0.5751953, -1.5634766, -1.5615234, -1.0361328, 1.9160156, 1.3125, -1.6494141, 1.984375, -1.3417969, -0.30493164, 1.0625, 1.8212891, 1.4101562, 0.02407837, -1.3574219, 2.7089844, 1.0400391, 2.2363281, 3.7539062, 0.29541016, 0.5541992, -1.9296875, 0.5336914, -0.8232422, -0.6254883, -0.053131104, 2.2265625, 0.039794922, -0.81689453, -1.8496094, 0.42895508, -0.22741699, -1.9980469, -1.0888672, -0.35864258, -0.88378906, -1.5634766, 2.9023438, -1.8369141, -0.0070266724, 2.2519531, -1.5927734, -3.3613281, -1.0703125, -0.6767578, 2.5703125, 0.7055664, -2.8925781, -1.4130859, -1.8535156, -0.020996094, 0.23034668, 0.18432617, -0.04449463, -1.0585938, -2.296875, 2.4277344, -0.95458984, 1.78125, -2.7773438, -1.296875, 1.1386719, 0.6713867, -2.421875, 0.49731445, 0.7583008, 0.10101318, 2.0996094, 0.9033203, 0.37353516, 1.5810547, -0.3803711, 1.3828125, -0.79003906, -2.0234375, 1.1875, -0.5541992, -1.2285156, -1.0869141, -4.0273438, 2.1699219, 2.6445312, -0.75097656, 0.1204834, 1.7558594, 1.3632812, -1.4072266, -1.8574219, -0.12805176, 1.2490234, -0.5805664, -0.04800415, -1.5478516, -0.19445801, 0.66748047, -2.3242188, 0.0914917, 2.4589844, 1.6953125, 1.2558594, -1.9697266, 0.1776123, -3.3359375, -1.6386719, -3.046875, 0.55126953, 1.2802734, 1.0419922, 1.1982422, -1.2255859, 3.6777344, 2.0292969, 0.45825195, -1.734375, 1.6679688, -1.3613281, 1.9833984, 2.4003906, -0.18383789, -1.6083984, 0.14367676, 3.0351562, 0.19226074, 0.9277344, -0.20935059, 1.1933594, 1.9111328, -0.79345703, 2.0019531, 0.13110352, -0.46972656, -0.56640625, 0.3251953, 1.65625, -0.3166504, -0.12438965, -2.1835938, 1.6884766, 0.043945312, -1.6484375, -2.1933594, -1.5595703, -1.4453125, -2.9453125, -2.1113281, 2.046875, 1.7714844, -2.0898438, -0.5, 2.2421875, -0.63916016, 1.4228516, 0.31884766, 0.50439453, 1.0986328, -0.6640625, -1.2978516, -2.4472656, 0.28637695, -0.4819336, 1.1572266, 1.7128906, 2.6875, 0.38305664, 0.7885742, 2.109375, -1.9970703, -0.13244629, 0.61621094, 1.390625, 1.1230469, -0.8691406, 0.5229492, 0.45874023, 0.3474121, 1.8427734, 1.4335938, 0.4790039, 0.4416504, 0.9277344, 1.6855469, -2.5234375, -2.5351562, -1.3574219, -1.5556641, -0.69873047, 0.03390503, 1.0273438, 3.9140625, -0.8173828, -1.9804688, 3.7226562, -1.7197266, 0.3413086, 1.5429688, -2.0292969, 0.43725586, 2.8476562, -0.93408203, 1.8291016, 0.38305664, 1.4033203, -1.5253906, -1.8525391, 2.6816406, -3.9023438, -0.95703125, 0.33447266, -0.51220703, 0.15209961, -1.3417969, -0.00315094, -1.1582031, -2.2207031, 1.5009766, -2.03125, -0.14587402, 1.4023438, -1.2207031, -2.2226562, -0.67285156, -2.125, -1.9472656, 2.9238281, -1.1425781, -0.21398926, 2.1308594, -0.47680664, 0.7290039, -1.1259766, 0.13317871, -0.80859375, -2.8867188, -3.6113281, -1.7890625, -1.9169922, -0.8017578, -3.0585938, -0.4909668, 0.6538086, -1.9150391, 0.7963867, 0.26660156, -3.4140625, 0.12573242, -1.0039062, 0.37817383, 2.6367188, -2.2070312, 0.2705078, 0.62646484, -4.7890625, -0.024536133, 0.29541016, -0.515625, 0.17321777, -3.4765625, 0.8930664, -0.75683594, -1.1445312, -0.41967773, 0.1005249, 1.6308594, -0.2467041, 0.22814941, -2.0449219, 1.9589844, -1.7158203, -2.2871094, -2.375, 2.8222656, -3.8808594, -2.6464844, -0.7631836, 0.56591797, 3.5839844, -0.18139648, 1.3193359, -2.0527344, 0.07635498, -0.29492188, -1.2695312, -3.1113281, 0.048217773, 0.35961914, -1.1435547, -0.8017578, -2.6132812, 0.47827148, 0.33764648, -1.1943359, -2.4570312, 1.5048828, -1.7285156, 2.3144531, -2.8457031, 0.8569336, -0.45629883, 1.5712891, -0.66503906, 0.59765625, -0.9482422, -2.28125, 0.9121094, -1.4775391, 1.3535156, 1.7763672, -0.43579102, 0.74365234, 0.25073242, 1.1113281, 0.6699219, 0.7084961, -2.7753906, 3.4296875, 0.421875, -2.421875, 0.93115234, -0.087646484, -1.1923828, -3.0078125, -1.0712891, 2.3027344, 2.6269531, 1.7558594, -1.6542969, -0.99560547, 0.033813477, 0.7519531, 1.4541016, -0.32495117, 2.1269531, 3.0371094, -1.4150391, -0.9003906, 0.41992188, 2.2246094, -2.7324219, 1.4921875, 1.7900391, 2.15625, 2.34375, 1.0732422, 2.7148438, -1.0166016, -1.6113281, 0.012123108, -0.8149414, -0.1439209, 1.1083984, -1.6318359, -1.4873047, -0.09289551, 1.0546875, -0.5698242, 0.45507812, 0.7739258, 3.4921875, -0.48754883, -1.5429688, 1.4003906, 0.58740234, 0.84521484, -0.59277344, 2.515625, -1.5234375, 0.24780273, -0.5024414, -0.5078125, 0.8979492, -0.6845703, -0.34570312, 3.0117188, -1.5136719, -0.7138672, -0.74560547, 0.18139648, -0.038513184, -2.2519531, -0.25732422, -2.6835938, -0.5800781, 2.484375, -3.0585938, -3.0214844, -0.25683594, 0.58154297, -1.5947266, -2.1152344, 1.5087891, 1.4599609, 1.6884766, -1.7607422, -0.87060547, 2.7011719, -0.8852539, 2.5429688, 0.38891602, 0.23254395, 1.9072266, -0.3486328, 2.4921875, -0.8540039, -1.3183594, -1.2587891, -2.6640625, 0.20800781, 0.0021953583, 0.6542969, 0.53027344, -1.6181641, -3.8378906, -0.22570801, -2.1523438, 0.60009766, 1.2460938, -1.7470703, -0.828125, -0.18811035, 2.78125, 1.5166016, -0.42382812, 2.0917969, 0.047821045, -1.4746094, 3.1816406, -0.5834961, -0.10217285, -2.5410156, -3.1113281, 2.3125, -0.23181152, -1.328125, 2.0703125, 1.2158203, -1.2412109, 1.4365234, 0.30297852, -2.078125, -0.5214844, -2.5761719, -1.3935547, -0.9477539, -0.3544922, -0.33789062, 1.1904297, -1.0380859, -1.5947266, -0.16394043, -0.0770874, 2.546875, 1.7851562, 0.88916016, 1.4267578, -2.9746094, 0.22827148, -0.6459961, -0.51708984, 1.0859375, -1.1611328, -0.09869385, -0.64697266, -0.5073242, 0.28955078, -0.42773438, 1.8876953, 0.7753906, 0.14868164, 1.46875, -1.7861328, 1.6347656, 1.9462891, 0.92333984, -1.6523438, -2.6523438, 0.31225586, -0.9692383, -0.072265625, -1.1855469, 1.8164062, -4.859375, 0.6665039, 0.50927734, 2.1738281, 2.7226562, -2.6445312, -1.0693359, -0.48754883, 0.7241211, -2.6484375, -1.6396484, 1.1005859, 0.021835327, 0.7109375, 0.75634766, -0.9003906, 1.1230469, -0.6533203, 1.078125, -0.6230469, 1.1201172, 2.0625, 2.9433594, 4.6054688, -2.2929688, -1.6435547, 0.13830566, -0.9589844, 0.09655762, 1.7138672, -1.5722656, -1.1171875, 0.61572266, 2.7949219, -1.7451172, -1.7412109, 0.027450562, -0.39672852, -0.7216797, -1.5078125, 2.2246094, -0.81347656, 0.44262695, 1.5996094, -1.1875, 2.703125, -1.6650391, -0.007881165, -0.14465332, 0.50146484, -0.53125, -1.1503906, -1.0019531, 0.88916016, 0.80126953, -0.25952148, -0.8256836, -0.24194336, -0.2902832, 0.21166992, 2.5859375, -1.4472656, -0.8959961, -1.7480469, -0.36523438, -0.74609375, -0.035980225, 0.8286133, 1.3486328, -0.57910156, 2.5234375, -0.42285156, -1.0244141, 1.5791016, 1.5214844, -1.5400391, -1.2158203, 1.2753906, -1.0976562, -0.35058594, 0.22021484, -5.5429688, -2.1875, 0.7236328, -1.8564453, 2.5839844, -0.4387207, -2.0195312, 1.4208984, -1.3193359, 0.8901367, -0.53564453, -1.5751953, 0.84521484, 0.9760742, -0.3984375, 1.5683594, -0.6503906, 2.2539062, -1.3613281, -1.9716797, 2.3789062, 0.14978027, -0.45166016, -0.84521484, -1.6953125, -2.0722656, -1.9912109, 2.2070312, 2.6816406, 2.2910156, 0.7392578, 1.6533203, -2.03125, -0.07879639, -4.171875, 1.8964844, -2.28125, 0.7705078, 1.1318359, -1.6669922, -0.27319336, -1.9599609, 2.0078125, 1.8339844, 1.5576172, 1.5576172, -1.125, -2.2246094, -0.57421875, -2.9941406, -3.0585938, -1.0068359, 0.25463867, 0.36547852, 0.40161133, 2.2285156, -0.34936523, -0.3491211, 0.4338379, 0.47875977, -1.1777344, -0.35009766, 0.03366089, 1.4970703, -0.6948242, -0.46557617, -1.2167969, 0.86621094, 1.8623047, 1.9228516, 2.0214844, -3.0253906, 0.35375977, 1.2802734, -1.6474609, -1.6796875, 0.7246094, 2.5058594, 0.5083008, 0.58984375, 1.8369141, -0.85595703, 1.6035156, -1.2167969, 1.6728516, 0.62060547, -0.32202148, 1.1796875, -1.2929688, -1.1835938, 0.6640625, -3.1035156, 1.8271484, 0.29711914, -0.37353516, -0.5727539, 0.7480469, 0.27807617, -0.8623047, 0.8232422, 1.0205078, 1.0029297, 0.74560547, 1.8115234, 0.890625, -2.0390625, -2.1640625, 0.16333008, -0.76464844, 0.23937988, -1.4609375, 1.7958984, 1.0253906, 1.4667969, 2.3339844, 1.2841797, -0.62109375, -2.0390625, -0.93847656, 0.24511719, 1.6904297, 3.4433594, -1.4824219, -3.1464844, -1.5908203, 0.7548828, 0.26538086, 0.20336914, 0.23864746, -0.1907959, -0.25927734, -0.38598633, 0.17834473, 1.1982422, 1.8408203, 1.2841797, -1.0253906, 1.2060547, 1.2050781, -2.0488281, 1.9814453, 1.6308594, 3.0195312, -0.028457642, 2.3085938, -1.9130859, -2.1191406, 3.0078125, -0.6821289, 0.7451172, -0.27954102, -1.8662109, 1.1835938, -1.4267578, -0.47998047, -2.0214844, -0.29785156, -1.5732422, 1.9091797, -0.35766602, -1.8945312, -0.36254883, 2.8808594, -0.84716797, 3.7207031, 0.3828125, -0.111572266, 0.9169922, 0.95410156, -1.9755859, -0.7138672, 0.76171875, -1.2011719, 0.55126953, -0.32861328, -0.71875, -1.7470703, 2.8984375, 2.9433594, 2.4238281, -0.32299805, 3.3789062, 0.18591309, 2.9160156, 3.9042969, -0.34155273, 2.0800781, 2.1894531, -3.3085938, 0.43798828, 3.7773438, 1.5927734, 0.42504883, 0.17578125, -0.082214355, 0.32958984, -0.23120117, 0.9794922, 0.28759766, 0.07287598, -1.8535156, 1.4501953, 0.76660156, -0.74365234, -2.0253906, 0.91064453, -1.2294922, 0.8520508, -1.8515625, -1.8994141, 0.4807129, -0.49291992, 2.7226562, 0.28125, 0.6933594, -0.6972656, -4.359375, 0.030639648, 1.4882812, -1.0810547, -0.32470703, 0.92578125, 1.625, 0.13415527, -0.5996094, 0.9160156, 1.6953125, -1.2431641, 3.7792969, 1.9091797, -0.87646484, 0.98535156, 1.421875, -2.0195312, -2.8378906, -0.515625, -0.12335205, -2.2363281, 0.23999023, -0.42333984, 1.7128906, 2.4980469, 1.4667969, -3.3710938, 1.5722656, 0.9082031, 1.8183594, -0.45483398, 2.3144531, -1.1669922, -1.3242188, -2.0917969, -0.36694336, 0.38720703, 0.71777344, 0.7919922, 0.13391113, 2.7226562, 1.4052734, 2.5058594, 0.6972656, 2.2207031, -0.4404297, 1.3105469, -1.375, 1.9082031, -0.89208984, 0.28344727, -1.8613281, 1.2578125, 1.2050781, -0.12792969, 1.4033203, 0.19238281, 1.0683594, -1.2275391, -0.05859375, -1.0859375, 0.12182617, -3.8222656, -2.453125, 1.1484375, -0.35839844, 0.1875, 0.01184082, 0.8774414, 1.8652344, 2.0371094, 1.6904297, -0.5644531, 3.75, 2.75, 0.06939697, -1.2822266, 0.24157715, 1.6386719, 0.9667969, 0.9707031, 0.51220703, 2.7207031, 2.5429688, 0.21594238, 2.390625, -0.6669922, 0.6645508, 0.50146484, -0.4074707, 0.7783203, -1.6103516, 2.6230469, 0.8720703, 0.8486328, 3.1894531, 1.3554688, -2.6367188, 0.49121094, 1.7890625, 1.5507812, -1.1318359, -1.6865234, 0.60498047, 4.171875, 1.8388672, -1.1171875, -2.6796875, -5.3085938, -1.3027344, -0.07092285, 1.8193359, 1.1582031, -1.9404297, 0.67089844, -1.9189453, 0.6118164, -0.2680664, -1.7666016, 0.89404297, 0.20837402, 1.1171875, 0.5415039, 0.9892578, 0.35620117, 1.7021484, 0.8515625, 2.9980469, 0.94384766, 2.6191406, 0.38085938, 2.2207031, 1.2265625, -3.6445312, 0.17541504, -0.81152344, 1.3193359, 0.8066406, 1.9375, -0.4880371, 0.23596191, 0.68847656, -1.0869141, -1.0869141]}, "B01M133XUS": {"id": "B01M133XUS", "original": "Brand: BBQ Coverpro\nName: BBQ Coverpro Built-in Grill Cover up to 37\"\nDescription:

BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


\u203bVinyl cover for built-in 37-inch grill.
\u203bProtects built-in grill from all weather conditions.
\u203bHigh heat resistant cover, UV protection and resists cold cracking.
\u203bSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down.
\u203bHeavy Gauge 600 D polyester with PVC coated water repellent top.

We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

\nFeatures: Vinyl cover for built-in 37-inch grill\nProtects built-in grill from all weather conditions\nHigh heat resistant cover, UV protection and resists cold cracking\nSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down\nHeavy Gauge 600 D polyester with PVC coated water repellent top\n", "embedding": [-0.06561279, 1.3974609, 1.8105469, -0.9736328, -2.4785156, 0.44384766, 1.0908203, -2.2792969, 1.1445312, 1.7363281, -0.22094727, -1.2880859, -0.057739258, -3.9511719, 1.8164062, 1.2529297, 2.3476562, 3.25, 4.1992188, -0.58496094, 0.8691406, 0.8803711, -0.6171875, 1.2285156, -0.35058594, -0.33691406, 4.90625, -3.7617188, -1.140625, 0.20959473, 1.828125, 0.14147949, 0.52490234, 1.9492188, -1.4101562, -1.2011719, -1.5976562, 1.5722656, 1.15625, -2.0683594, -1.4667969, -2.3046875, 3.0078125, 1.2832031, -2.671875, -0.18249512, -1.1162109, 1.3232422, -0.09442139, -2.5664062, 1.8759766, 0.88378906, 2.6933594, 1.3476562, -2.5273438, 2.0195312, -0.9321289, -1.3066406, -1.7832031, -0.09075928, 0.3581543, -0.95166016, -0.88183594, 1.8027344, -1.546875, -0.3413086, -1.4140625, -0.82421875, 2.6523438, -0.60791016, 1.8476562, 0.98095703, -1.9023438, -0.7451172, 2.8554688, -0.81933594, -2.8574219, 0.17016602, 0.38061523, -1.9716797, -0.23901367, 4.9765625, -1.2910156, -2.4550781, 0.017913818, -0.07659912, -3.6425781, -2.0429688, 0.8828125, -1.9375, 0.84814453, 1.1533203, -1.5390625, -3.671875, 0.48339844, -2.7480469, 1.7382812, 1.5693359, 2.3144531, 2.0488281, 0.57714844, 1.0664062, 0.13647461, -0.3713379, -1.7353516, -3.1230469, 1.6855469, -1.53125, -1.4306641, 0.019256592, -1.4140625, 1.1552734, -0.05203247, -0.6015625, 1.5820312, 0.2590332, -1.5625, 3.2363281, 0.46679688, 3.3574219, 1.3203125, -0.34350586, 0.5551758, -2.2929688, -0.21520996, -0.5629883, -0.4975586, 2.0917969, 4.2460938, -0.28295898, 0.83984375, -0.9667969, 2.4667969, 1.4931641, 0.3815918, -0.39160156, -2.8769531, -1.5957031, -2.7324219, 0.9980469, -1.7128906, -1.125, 1.7998047, -0.9951172, -1.4052734, -1.8212891, 1.4404297, 1.4121094, -1.9599609, -3.171875, 1.6044922, -2.7753906, 0.21582031, -0.22839355, -1.0214844, -0.71435547, 0.34887695, -3.6347656, 2.0761719, 0.89697266, 2.2675781, -2.0078125, 2.2128906, 2.5839844, 1.9902344, -3.2246094, -1.7480469, 1.0175781, 0.8535156, 1.9335938, 1.0009766, -1.8027344, 0.3701172, 0.30786133, 1.6367188, -0.51171875, -1.0097656, 3.8613281, -0.17443848, 0.36083984, 0.5629883, -0.546875, -1.1044922, 2.0703125, -1.328125, -1.2070312, 0.034301758, -1.4150391, 1.7138672, -1.3154297, -0.35839844, 0.051208496, -1.2763672, 1.0400391, -1.6279297, -0.3918457, -0.7011719, -1.5683594, 1.9335938, 0.9555664, -1.3339844, -1.3808594, 0.26489258, 0.43164062, -2.9589844, -0.9707031, -1.6611328, 0.86279297, 0.0115356445, 0.3479004, 0.8623047, -1.8847656, 1.9238281, -0.9199219, 0.2705078, -0.7504883, 0.9243164, -0.76904297, 1.6035156, 1.8232422, -1.4121094, 1.0693359, -0.37280273, 4.9921875, -1.7578125, 1.7919922, 1.8271484, 1.6914062, -1.7871094, -0.067993164, 1.9316406, 1.6347656, -0.35766602, -0.27197266, -0.58496094, -0.18261719, 2.0371094, -1.6015625, -0.38208008, 0.29467773, -0.49536133, -2.5644531, -2.1074219, -2.1347656, 2.5507812, 3.5546875, -2.4316406, 1.6572266, 1.9296875, -0.8359375, -0.020187378, 0.19506836, 0.97558594, -0.5751953, 0.5366211, 1.0556641, 0.57177734, 0.14587402, -3.2226562, -2.2988281, -0.09460449, -1.3632812, -2.3046875, 1.5917969, -0.05621338, -1.5214844, 1.2460938, 0.37060547, -2.0878906, -2.2929688, 2.1464844, -0.41381836, 0.36889648, -0.50341797, 2.0234375, 0.13806152, 0.24572754, 1.0087891, -0.31982422, -1.5371094, 1.3916016, 1.8378906, 2.0214844, -0.2956543, -1.2841797, 0.3166504, -1.2021484, -1.0126953, -0.6567383, -0.53515625, 1.2431641, 0.17175293, -3.3359375, 4.1484375, -1.6318359, -0.31347656, 0.47094727, -2.1328125, -0.83203125, 0.20776367, 1.8955078, 0.86621094, 0.19482422, 0.18273926, -0.27661133, -0.7441406, 0.28271484, -2.7363281, -1.4541016, 0.66845703, -0.08770752, -1.5693359, -0.3569336, -0.36254883, -0.85791016, -0.9790039, 0.53027344, -2.6074219, 1.9355469, 1.4443359, 0.31054688, 0.8642578, -1.5078125, -1.8925781, -0.46533203, 0.7246094, -0.70996094, -0.20495605, 0.8417969, -1.4140625, -1.1826172, -2.1074219, 2.0664062, 0.10626221, -0.73535156, -2.1328125, -2.21875, -0.06958008, -1.1992188, 0.15966797, 1.5576172, -0.5078125, -3.9550781, -0.068725586, 0.4020996, -3.9101562, -0.9238281, -0.10003662, -1.4931641, 1.7939453, -0.009635925, -0.066467285, 1.0517578, -3.6914062, 1.6416016, -0.8823242, -1.5009766, -1.0791016, -0.045928955, -0.5136719, -0.70996094, -0.19177246, 1.0947266, 1.4257812, 1.9863281, 2.7460938, -0.50341797, -3.1835938, -0.50146484, -2.0175781, -1.2685547, -2.1132812, -0.8613281, -3.6621094, -1.0732422, 1.2636719, -0.66552734, 2.4960938, 0.14746094, 1.6201172, -0.37158203, -0.4736328, 2.2792969, -0.083984375, -2.0019531, -1.5058594, -0.36669922, -0.96972656, -0.21862793, -3.0097656, -0.82470703, -1.2783203, -0.20825195, -1.3710938, -1.3154297, -0.074157715, 0.85595703, -1.5068359, -2.0097656, -0.6015625, -0.06341553, -1.1289062, -0.8774414, -1.1259766, -2.3125, -3.1835938, -0.12133789, -1.6347656, 2.5371094, -0.66259766, 0.39160156, 0.75634766, -0.94433594, 2.9785156, -1.4238281, -4.1640625, 1.4990234, 1.140625, 0.13171387, -0.30517578, 1.0585938, -2.7460938, -0.83935547, -1.7275391, 2.7109375, 1.4785156, 1.3154297, 1.5351562, -0.5336914, 0.97753906, -0.15759277, 0.15283203, -0.8828125, 1.4140625, 3.3457031, -1.8730469, -0.16271973, -0.27954102, 0.0446167, -0.8227539, -0.06976318, 2.0839844, -0.63427734, 1.6337891, 2.3125, 0.75878906, 2.3613281, 0.8027344, 3.6875, -1.7949219, 1.9677734, 1.5332031, -2.1132812, 3.2480469, -0.09625244, 1.8945312, 2.8925781, -0.14379883, 1.1630859, 0.5854492, 0.11907959, 0.61083984, 1.0556641, 1.3046875, 1.8496094, -0.29125977, 2.4296875, -0.69921875, -0.72216797, 1.2324219, -1.5927734, 0.64746094, -0.9765625, -0.24829102, 2.5917969, -0.31640625, -1.1425781, 0.9716797, -0.45996094, -1.4267578, -1.8779297, -0.30078125, -1.2558594, -2.8730469, 0.6040039, -2.7714844, -1.5419922, -2.140625, 3.0390625, 0.19897461, -1.3769531, -0.72265625, 2.140625, 0.10205078, -1.9082031, 1.734375, 2.1484375, -0.48632812, 1.0576172, 1.5292969, -2.4316406, 1.1240234, -3.6171875, 2.53125, 2.4726562, -1.5439453, -1.1083984, 1.5673828, -0.36572266, -1.8701172, 0.7919922, 2.4492188, 1.1347656, -0.6879883, -1.0283203, -1.921875, 0.043395996, -0.3034668, -2.8046875, -0.72216797, 2.1445312, 0.18579102, 0.9423828, -0.17456055, 0.28808594, -0.3413086, -1.3222656, 0.68066406, -1.6552734, 0.94970703, -0.34375, -3.9433594, -0.18200684, -0.7290039, -1.2851562, 2.0371094, 1.6171875, 0.86035156, 2.1582031, -0.56884766, 0.14172363, 1.1582031, -2.2519531, -0.91308594, -0.71191406, -0.5097656, 0.8388672, 1.6445312, -1.8759766, -1.0390625, -0.8901367, -2.3046875, 1.5107422, 0.7636719, -1.8691406, 0.29785156, -2.3398438, 0.7207031, -1.7705078, -0.48339844, 1.546875, 0.3959961, -1.3232422, 0.73828125, 0.39697266, 1.4326172, 0.019744873, -1.1269531, 0.44506836, -1.59375, -1.6621094, -1.03125, 1.9160156, 2.1835938, -1.21875, -2.203125, -0.6459961, 0.625, -0.27978516, 0.93652344, -1.1582031, -0.29614258, -0.22241211, 0.6298828, -0.6328125, 1.1171875, 1.1494141, -0.9160156, -2.3066406, 0.045562744, -2.1816406, -0.91064453, -1.0361328, -0.7998047, 0.34399414, 2.1210938, -1.4384766, -2.2519531, 2.0703125, -0.4501953, 0.88720703, -2.6933594, 3.7636719, 0.75439453, 2.5878906, 2.9589844, -1.6806641, 1.2128906, 1.5449219, -2.4296875, 1.5478516, 1.7392578, -1.9316406, 2.2480469, -0.94384766, 1.4960938, -2.9882812, -1.3339844, -1.3574219, -0.7753906, -0.91064453, -2.9453125, 3.0761719, 0.80615234, 0.89404297, 1.5498047, -2.6328125, 2.7050781, -0.45874023, 1.4570312, 0.75390625, 0.115600586, -0.29858398, 1.8769531, 0.65966797, -0.19006348, 2.3789062, -0.33911133, -0.99316406, -1.3447266, -1.7197266, -0.8144531, 2.2226562, -1.9853516, -2.4433594, 0.18334961, 0.53808594, -0.16723633, -1.6083984, 1.7109375, 4.4101562, -1.3652344, 2.0917969, 0.8984375, -0.7607422, 0.9746094, 2.4375, -1.8291016, 1.2744141, 0.26879883, -1.0976562, 2.8925781, -0.20959473, -3.8242188, -0.07183838, 1.6474609, -1.6318359, 1.3388672, -1.5107422, -1.9619141, 2.15625, -1.9580078, 0.55029297, 0.56347656, -0.4501953, 0.45776367, -1.0859375, 1.4345703, -1.8076172, 0.8125, 2.6796875, -0.7133789, -3.5820312, 1.8583984, 0.26391602, -0.93603516, -2.0390625, 0.35107422, -2.9589844, -1.3496094, 1.8632812, 0.27905273, 0.96484375, 0.7558594, 1.0302734, -3.7070312, 0.63964844, -1.78125, 2.6972656, -1.5869141, 0.03829956, 2.3652344, -2.8125, -2.3203125, -1.3134766, 0.58496094, 1.5976562, 1.2646484, 3.0800781, 0.46557617, 0.5761719, -0.8666992, -2.9570312, -2.9550781, -1.7236328, 0.2298584, -1.6289062, 2.4121094, 1.46875, 0.47192383, 0.43603516, 0.07196045, 0.72998047, -0.68847656, 1.0537109, -0.7871094, -2.015625, -1.5146484, -2.2089844, -2.2050781, 0.58447266, 0.80126953, 1.7705078, -1.2802734, -3.8613281, 0.63964844, 1.421875, -3.1152344, -1.0322266, 3.0449219, 0.8251953, 1.5517578, -0.26904297, -0.5258789, -0.9296875, 2.9179688, 0.61572266, -0.5986328, 1.2998047, 0.2487793, 0.48828125, 0.44799805, -0.53466797, 2.2480469, -1.8134766, 0.08074951, 1.4794922, -1.1738281, 1.8457031, 0.093688965, 0.76953125, 0.92041016, 1.1074219, 2.0683594, 0.734375, 0.1640625, -1.9472656, -0.18713379, -2.640625, -3.359375, -0.57666016, -2.3808594, -3.4746094, -1.8212891, 0.6015625, 3.5371094, 2.3203125, 0.96777344, 1.8027344, 2.2265625, -1.3320312, 0.113220215, -0.7060547, 0.56103516, 0.88623047, -0.88134766, -0.9926758, -1.15625, 2.265625, 0.89208984, -0.8378906, -0.5073242, 1.0146484, -2.296875, 0.25024414, 1.6962891, 1.7861328, 0.44995117, 0.6455078, 1.2363281, -0.101501465, 2.4726562, -0.63183594, 2.4667969, -0.51220703, 1.7548828, -1.9960938, 3.2402344, -0.056610107, -1.0400391, -0.1673584, -1.0966797, 1.109375, 0.13696289, -1.9814453, -0.18481445, -1.6611328, 0.0004644394, -1.7177734, -2.0976562, -4.8007812, 1.5673828, -0.78466797, -1.1503906, -1.9013672, 3.5136719, 1.4794922, 3.1386719, 2.8496094, 0.08782959, -0.15979004, -0.01348114, -1.3320312, -0.5644531, 2.0410156, -1.6591797, 1.1582031, -1.7539062, -0.8076172, -1.2529297, 0.5644531, 0.7817383, 1.765625, 2.3945312, 1.6962891, 2.6953125, 1.3232422, 1.4306641, 0.35620117, 1.2402344, 0.24645996, -3.3613281, 0.3798828, 3.4648438, 1.9189453, 1.5683594, -1.7255859, 0.92285156, 1.1679688, 0.58935547, 1.0615234, 2.3925781, 0.8383789, -3.5410156, 1.1513672, -0.38989258, 1.6337891, 0.3100586, -0.29467773, -1.3203125, -0.8417969, -0.7260742, 2.1015625, 3.0507812, -1.0400391, 1.5732422, 0.9243164, 2.5, 1.1494141, -1.3476562, 0.5024414, 2.9160156, -2.7792969, -1.0097656, -0.15588379, 1.3349609, 2.0410156, 0.30444336, 1.2929688, 1.5478516, 1.7597656, 0.8955078, 0.30639648, 0.8232422, 0.890625, 1.9453125, 0.66064453, -2.1347656, -3.796875, -0.71728516, -1.0673828, -1.0712891, 1.265625, 1.8095703, 3.0761719, 0.5395508, -3.90625, 1.4111328, 1.015625, 3.2890625, -0.84033203, 0.5209961, -0.80615234, -2.5253906, -0.44335938, 1.5205078, -1.5830078, 2.2539062, 0.68847656, -1.3564453, 2.5976562, 0.70996094, 2.4960938, 0.70458984, 2.5488281, -0.6113281, 1.1728516, -0.096191406, 1.2207031, 2.1308594, -0.97753906, -0.22924805, 1.4384766, -1.0859375, 1.6904297, 2.8984375, -2.1894531, 0.7246094, 1.0615234, 1.1894531, -1.5683594, -2.1875, -0.07727051, -1.0791016, 1.3007812, -1.7333984, -0.2298584, 1.5332031, 2.3671875, 1.078125, 0.9248047, 0.38256836, -0.39257812, 3.5761719, 0.5522461, -1.8886719, 0.21032715, 0.81933594, -0.0107040405, 0.34277344, 0.19799805, -1.5078125, 1.484375, 0.27978516, -0.84716797, -0.26293945, 0.70410156, 0.49658203, -0.08123779, -1.3134766, -1.3837891, -0.40112305, 1.1005859, -0.84765625, 0.9609375, 0.7944336, 1.9082031, -2.3378906, -1.328125, -0.43798828, -0.9248047, 1.0859375, -1.9052734, 1.8935547, 3.0175781, 1.7470703, -0.95751953, -0.0619812, -3.421875, -0.5053711, -1.2783203, 1.2773438, 0.73583984, 0.4189453, 0.31884766, -1.7597656, 2.2070312, -0.029937744, -1.0039062, -0.97558594, 0.1920166, 1.3125, -0.3215332, 0.72753906, 0.11743164, 1.2910156, 1.3798828, 2.3652344, 1.5292969, -0.5727539, 2.4140625, 1.9433594, 0.6660156, -2.90625, 2.28125, 1.1503906, 2.3046875, -1.5488281, 1.9023438, 1.3203125, -1.3945312, -0.0025730133, -2.4042969, -0.057281494]}, "B07N12VXHK": {"id": "B07N12VXHK", "original": "Brand: Simplistex\nName: Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills\nDescription: BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18\" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!\nFeatures: The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools.\nExtra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18\" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here!\nOur grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come.\nOur BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point!\n1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!\n", "embedding": [-1.4814453, 2.7617188, 1.6816406, -2.1308594, 0.0036239624, 0.097351074, -1.5449219, -1.7763672, 1.65625, 0.24145508, -1.1201172, 0.14001465, -0.3955078, -2.1230469, -1.9824219, -0.07952881, 0.28686523, 1.5253906, 2.2988281, 1.5849609, 1.3232422, -0.001964569, 0.8569336, -1.0351562, 1.7324219, -0.73046875, 3.9511719, -2.3125, 1.9521484, -0.42114258, 1.4433594, 0.5859375, -0.37158203, 2.1191406, -3.6796875, 0.6152344, -0.70947266, 1.4814453, -0.6738281, -0.73876953, 0.068115234, -0.37109375, 1.6074219, 0.73291016, -3.3496094, 1.4677734, -0.5361328, 1.7773438, -1.8964844, -4.3515625, 1.5576172, 1.8740234, 1.4248047, 1.4140625, -2.5136719, 1.3183594, -1.1005859, -4.1367188, 2.3808594, -0.4206543, 3.1289062, -1.5908203, 0.6484375, 0.6274414, 1.4296875, 0.08117676, 1.9853516, -1.6035156, 0.5576172, -0.29833984, -1.1611328, 0.23669434, -1.1933594, -0.8017578, -1.0449219, 0.9819336, -0.6352539, 2.1328125, 0.37695312, -0.06072998, -1.5712891, 4.2109375, -1.1611328, -3.1933594, -0.23547363, -2.0058594, -0.53466797, 0.39404297, 0.7246094, -2.40625, -0.83984375, 1.5488281, -2.0878906, -4.765625, 1.4697266, -2.484375, 1.9912109, -0.050750732, 0.34057617, 1.6855469, -2.5566406, 0.10858154, -0.04559326, -0.5493164, -0.51708984, -0.3918457, 2.921875, 1.7929688, -1.3789062, -1.2236328, -1.2001953, 1.9121094, -0.2401123, 0.30981445, -1.2617188, 0.11303711, -1.0175781, 1.0175781, -0.9472656, 2.2753906, 2.2011719, 0.6489258, -0.49731445, -0.41748047, 0.51220703, 0.8540039, -0.22045898, 3.140625, 3.1796875, -0.59716797, -1.1289062, -1.484375, -1.4033203, -2.1484375, 1.9960938, -3.0683594, -1.1542969, 0.048095703, -0.93603516, 3.8007812, -0.20739746, -0.578125, 2.6367188, -1.1376953, -2.3320312, 0.40405273, -0.2442627, 0.1282959, -0.13061523, -0.7270508, 1.0585938, -1.4667969, 1.1259766, -1.7685547, 3.7363281, -0.10699463, 0.56640625, -0.5908203, 2.2265625, 2.9121094, -0.3161621, -2.0507812, 0.05935669, 0.8432617, 1.4892578, -4.5078125, -0.3479004, 3.1777344, 0.484375, 1.4199219, 0.18115234, -2.5820312, -0.49536133, -0.78125, -0.4099121, -0.031982422, 0.8569336, 3.0996094, -0.8647461, -0.27905273, 1.1513672, -2.4023438, 1.2109375, 1.2333984, 0.45825195, -0.93310547, 2.1152344, 0.07922363, 0.5292969, -0.7084961, 1.3476562, 1.7558594, -1.3671875, -0.08093262, 0.026947021, -3.1523438, -0.9238281, -2.5175781, -1.3896484, 0.61865234, -1.1025391, -3.6972656, 0.25756836, -0.7050781, -1.3320312, -0.7890625, -0.99365234, 0.18322754, 2.0742188, 2.4902344, 1.3720703, -1.796875, 1.5634766, -1.0380859, 0.26049805, -1.6523438, 0.86083984, -0.5131836, 2.2851562, 1.2626953, -1.7197266, -0.7578125, -2.5371094, 2.7265625, 2.5292969, 0.3022461, -1.1494141, 1.7578125, -0.23803711, 0.91845703, 1.4384766, 1.1298828, -0.7397461, 0.13146973, -0.7236328, 0.7236328, 1.9472656, -2.4765625, -2.9511719, -0.4099121, 0.20495605, -1.9375, -0.64941406, 0.07623291, 0.91308594, -2.03125, -0.5283203, 1.1416016, -0.26708984, -2.6894531, -0.4033203, 2.8085938, 2.5917969, 1.0791016, 1.2626953, 1.1748047, -1.2304688, 1.3330078, -3.4082031, -0.10168457, 1.7158203, -0.36791992, 1.4882812, 0.105163574, 1.9853516, -1.5478516, 2.9453125, -2.2324219, 0.29296875, -0.88916016, -0.088256836, 0.5644531, 0.81591797, 0.107299805, 1.5449219, 0.3095703, -0.6328125, 0.24279785, 1.4833984, -2.1523438, 0.08215332, 0.69677734, 3.2148438, -1.5371094, -0.03201294, -1.6582031, -0.5336914, -1.2021484, 1.2402344, 0.8852539, 5.3945312, 1.2919922, -2.8574219, 3.09375, -1.7519531, 0.16796875, 1.9316406, 1.0771484, -1.0019531, -1.9208984, 1.3017578, 1.5371094, 0.9296875, 1.7167969, -0.46728516, 1.1738281, 1.1767578, -1.8984375, -0.7558594, 1.6992188, -3.1171875, -0.66748047, 0.8261719, 0.7607422, -1.9873047, -0.81689453, -2.6894531, -0.5463867, 1.2675781, -0.7895508, 0.51953125, 1.1484375, 1.2099609, -1.4560547, -0.78564453, 1.4296875, -1.9658203, 0.79248047, 0.7573242, 0.8178711, 0.7910156, 0.43847656, -0.24450684, -0.84765625, -0.63916016, 0.2697754, -0.37841797, -0.90478516, 1.15625, -1.0283203, 0.016723633, -0.64941406, -1.3681641, 0.7753906, -0.8203125, -0.7426758, -2.8945312, -1.9072266, 0.044891357, -0.38842773, -1.0517578, -0.045410156, 1.5986328, -0.703125, 0.6113281, -0.98046875, 1.3486328, 0.6279297, 0.10546875, 0.71533203, -1.1748047, -0.3581543, 0.1538086, 2.4785156, -0.15734863, 0.2685547, 0.45532227, -2.7988281, 0.029968262, -0.95654297, 0.12219238, -0.25952148, 1.5058594, 0.40722656, -1.3535156, -1.4384766, 1.4121094, 0.042907715, -1.4091797, 3.1308594, -0.43676758, -1.4960938, 0.26049805, -0.08258057, -0.8491211, -1.9345703, 2.2753906, 0.009750366, -0.15222168, -2.03125, 0.6845703, -1.0771484, -1.7744141, -1.9746094, 2.5371094, -1.0869141, 0.72021484, -1.8134766, -3.0605469, 0.6435547, 1.3046875, 1.3808594, -0.67041016, -1.5078125, -0.4260254, -1.1162109, 0.7998047, -1.9912109, 0.37036133, -1.3261719, -1.8632812, 0.8979492, -0.4326172, -1.2626953, 1.7236328, -1.0742188, 0.671875, -0.81347656, -2.2480469, -0.74560547, 1.4521484, -0.50097656, -0.3581543, -2.2382812, 4.375, 0.088134766, 2.421875, -0.5517578, 0.73046875, 0.9375, 1.0322266, -0.46166992, -1.3896484, 2.0703125, 1.3271484, -1.9257812, -1.3300781, 1.9111328, -1.2373047, -2.3613281, 3.5722656, -1.1220703, 2.4609375, 2.2421875, 1.6923828, 0.11517334, 0.46606445, -1.2724609, 1.1425781, 1.1074219, -0.46850586, -2.6894531, 0.81396484, -0.49316406, -1.0400391, 0.011734009, 0.46801758, 1.2167969, 1.7597656, 1.3925781, -0.08392334, -2.1699219, 1.2324219, -0.14672852, 2.2109375, 0.109375, 1.5087891, -0.12249756, -1.7402344, 0.022918701, -0.2286377, 1.0507812, -2.3359375, 0.39379883, 3.0117188, 0.36035156, 0.14453125, -0.9316406, -0.55859375, -1.6328125, -2.4726562, 1.1865234, -1.0625, -1.2900391, 0.6513672, -0.58984375, 0.22155762, -0.8256836, 3.2460938, -0.20715332, -0.7246094, -0.34326172, 0.296875, 0.17944336, -0.11633301, -2.7539062, 2.7890625, 0.20446777, 1.8955078, -0.5834961, -1.1621094, 2.9589844, -3.5507812, -0.18884277, 0.35864258, -2.765625, -0.5649414, -0.82421875, 0.028015137, 1.6220703, 0.6176758, 0.42285156, 1.2851562, 0.7368164, -0.76953125, -1.2587891, 2.0214844, -1.2900391, -1.3671875, -0.89404297, 0.25878906, 2.046875, 1.0117188, 0.68847656, 3.578125, 2.3828125, -3.3515625, -1.8369141, -5.2148438, -1.1367188, -1.9277344, -2.5605469, 0.118896484, 2.9804688, 1.0820312, 1.1494141, 1.1835938, 0.6767578, 4.7070312, 1.2431641, -2.15625, 0.9291992, -0.6982422, 1.8857422, -0.52685547, 0.4020996, 1.7792969, -0.2697754, 0.47216797, -1.5175781, 0.51708984, -2.7792969, 0.9868164, -0.6611328, -0.2529297, -0.9067383, 0.6225586, 0.024169922, 0.43823242, -0.7915039, 0.17272949, -0.9614258, 0.056427002, -0.5800781, 0.6152344, -1.1142578, 1.6386719, -2.2421875, 0.56152344, -0.18005371, -2.2714844, -2.2871094, -0.48754883, 2.7617188, -0.75390625, -1.0380859, 0.5048828, -0.85253906, -0.890625, 0.7871094, 0.7236328, 0.54541016, -2.734375, 2.2050781, 0.30029297, -0.87646484, 3.0976562, 0.13452148, -2.4902344, -2.1503906, 1.7509766, -3.2695312, -2.1054688, 0.8383789, -2.3808594, 1.2353516, 0.41577148, -1.3535156, 2.2089844, -0.37109375, 0.5185547, -0.055755615, 2.0585938, 1.875, -1.2558594, 4.2929688, -1.5410156, -0.59277344, 1.6054688, -2.4472656, -1.7646484, 0.38671875, -0.3935547, -0.5839844, 1.3105469, 1.4160156, -0.03842163, 0.734375, -0.41870117, 1.1054688, -0.6459961, -2.7949219, 2.3652344, -1.4980469, 0.3713379, 0.53466797, -1.4189453, 0.6538086, -0.5703125, 1.6689453, 1.8427734, 0.79003906, -1.0263672, -0.5678711, 0.6972656, 0.014564514, -1.1650391, 1.875, 2.2949219, -1.2294922, 0.004085541, 1.9912109, 1.0449219, -3.0546875, -0.36572266, 1.0058594, 0.98339844, -0.21130371, 0.5678711, 0.68359375, 1.4179688, -1.4882812, 1.7578125, 0.026855469, -3.0976562, 1.7011719, 1.0322266, -2.8535156, 1.2060547, -0.78564453, -0.7651367, 1.0371094, 0.056396484, -1.5488281, 1.7128906, 1.5751953, -1.3574219, -0.8076172, -3.0703125, 0.39282227, 0.83154297, -1.6269531, 1.4619141, -1.1435547, -2.0820312, 1.2363281, 0.45288086, -0.19372559, 1.1533203, 1.1201172, 3.6269531, -0.1817627, -0.9511719, 0.37182617, -0.859375, 1.2666016, -1.3349609, -2.6367188, -2.6914062, -0.17077637, 0.76464844, 2.2636719, 0.60498047, 1.6972656, 1.2363281, -0.6982422, 1.9951172, -1.6503906, 2.1738281, -1.0351562, 0.8798828, 1.0869141, -2.8027344, 0.06719971, 0.05303955, 2.0371094, 1.1523438, 0.42260742, -0.13549805, -2.03125, -2.4746094, 0.9243164, -1.1230469, -3.5605469, 0.48901367, -1.0830078, 1.2148438, 1.3535156, -0.99658203, 0.9067383, 0.5136719, -1.9345703, -0.17382812, 0.9291992, -0.47314453, 1.21875, -0.07244873, -1.3652344, -0.017929077, 0.3564453, 0.3154297, 0.34765625, 3.3808594, -0.6220703, -1.4873047, 0.8232422, 1.8183594, -3.0917969, -3.09375, 1.0175781, -0.6826172, -2.5136719, 0.4855957, -0.6982422, -2.0703125, -0.8847656, -1.2363281, -1.9619141, -0.76416016, -0.5703125, 0.32055664, -2.1640625, -1.4365234, 1.8603516, -3.5664062, 0.9560547, 1.3945312, -0.086364746, 3.3222656, 1.1386719, -1.6679688, 0.18322754, -0.7495117, 1.2402344, 1.2294922, 1.5117188, 0.16760254, 0.4572754, -3.5957031, -0.96435547, 0.23376465, -0.29589844, 2.4160156, -1.8613281, -0.65966797, 1.1123047, -1.09375, -1.0185547, -1.8544922, 0.4560547, -1.9169922, 1.3017578, 0.18054199, 3.3261719, -0.011482239, -0.37817383, 0.5332031, -1.7314453, 0.08087158, 0.54052734, -1.1914062, -0.32055664, -0.32714844, -1.2109375, 0.068481445, 0.011054993, 1.6367188, 1.75, 0.8105469, -1.6855469, -2.1464844, 0.9355469, -1.6611328, 1.6015625, 1.5175781, 0.73828125, -0.5488281, 4.2851562, -0.89697266, -3.9414062, 0.85058594, -2.1054688, 1.0419922, 1.8261719, -2.1503906, -0.17529297, -0.7524414, 2.5644531, -2.6933594, 0.32788086, -1.9375, 2.0898438, 0.031021118, -0.49047852, -0.0925293, 4.5390625, 0.6323242, 3.3671875, 3.5175781, -1.5068359, -0.7529297, -1.4521484, -0.23571777, -0.21557617, -0.5151367, -0.46826172, 0.83740234, 0.14916992, 0.2841797, -0.7397461, 0.98876953, 1.6015625, 0.17468262, -1.203125, 1.9003906, 0.2590332, 4.1445312, 4.0039062, -0.1932373, 2.5078125, 1.2841797, -0.31323242, 0.28833008, 4.59375, -0.68359375, -0.59472656, -0.09692383, 1.3300781, -0.7680664, 2.0488281, -0.58154297, 0.77685547, -0.99072266, -1.8291016, 1.6279297, 1.2392578, -1.5458984, -1.3457031, 0.70947266, -2.6074219, -1.2509766, 0.45947266, 0.16113281, 1.890625, 1.1699219, -0.28051758, -2.2050781, -1.984375, 1.8261719, -2.5195312, -0.117492676, -0.85791016, -1.2255859, -3.0917969, 1.3388672, 1.9033203, 0.9121094, 0.27416992, 0.10699463, 1.2392578, 0.67333984, 1.0263672, 0.50146484, -0.5996094, 1.015625, 1.2089844, -2.0917969, -1.5595703, -2.1640625, 1.0078125, -1.375, 1.1542969, 2.2890625, 2.1210938, 0.7890625, 0.40161133, -4.859375, 0.5371094, 0.6298828, 0.10827637, -1.3515625, -1.9296875, 1.9667969, -0.25463867, -0.6147461, 0.7871094, -0.23413086, 1.9667969, 0.41186523, -2.5019531, 0.97265625, -0.10571289, 0.4506836, 0.77246094, 2.3535156, -3.1425781, 0.050109863, -0.86083984, 2.5253906, -0.43188477, 0.09631348, 0.76904297, 1.953125, 0.44433594, 2.203125, 1.0986328, 0.18811035, 0.3100586, -2.5019531, 1.3164062, -0.46679688, 0.39648438, -2.5527344, 1.8310547, 0.15356445, -0.4267578, -0.89160156, 2.9414062, 0.875, 1.1855469, 1.90625, -0.25268555, -0.66552734, 0.04937744, 1.4248047, -0.11407471, -0.99365234, -1.0556641, 0.20800781, -0.16809082, -2.3671875, 0.22729492, 1.2119141, -1.1376953, -2.4609375, 1.1376953, -0.13671875, -0.21386719, 1.0576172, -1.2539062, -1.9912109, 0.41748047, 0.5126953, -0.6796875, 0.81884766, 1.6542969, 0.100097656, -1.9482422, -0.39624023, -0.7114258, -1.7119141, 0.084350586, -2.2578125, 0.008636475, 3.2695312, 1.4257812, 1.3183594, -0.9760742, -0.09887695, 1.2792969, 0.48583984, 1.0214844, 0.07513428, -1.0576172, -1.4052734, -0.20507812, 2.65625, 0.73095703, -2.0136719, -2.5214844, -0.24169922, -3.0234375, 0.26538086, 1.3632812, -1.7333984, -0.041656494, 0.74365234, 2.2636719, 0.35351562, 1.2949219, 2.6113281, 3.1835938, 0.36132812, -1.5742188, 0.7885742, -0.14318848, 2.2089844, -0.2064209, 0.29589844, 0.8666992, 1.0830078, -0.58203125, -0.69189453, 0.14953613]}, "B00823W9B0": {"id": "B00823W9B0", "original": "Brand: Mr. Heater\nName: Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "embedding": [-0.032806396, 0.60498047, 1.6796875, 0.7558594, -0.6850586, -0.74316406, 1.5478516, -1.8125, 0.5527344, 0.40966797, 1.1230469, 0.171875, -0.4621582, -2.8359375, 1.3144531, -1.6953125, 0.49658203, 0.52734375, 2.3203125, -0.53271484, 0.2290039, 0.14904785, 0.6425781, -1.8007812, 2.2382812, 1.0986328, 4.4492188, -2.6367188, -0.40527344, 0.203125, 0.23461914, 1.4609375, -0.4074707, 1.3730469, -0.46655273, -1.2587891, -3.1757812, 0.4248047, -3.7890625, -0.75341797, -2.1191406, -0.7861328, -0.18017578, 0.8261719, -1.5019531, -1.4570312, 0.21984863, -1.2558594, -0.5029297, 0.17773438, -0.6660156, -0.25439453, 0.23022461, 0.13793945, -1.4423828, -1.1787109, -1.640625, -3.2519531, 1.6992188, 0.5805664, 1.0888672, -1.7548828, -2.3398438, 1.2216797, 0.69628906, 1.3359375, 0.4580078, -1.2744141, -0.88671875, 1.1474609, 2.1289062, 0.25317383, 0.050354004, -1.0087891, 0.1161499, -0.34204102, -1.5712891, 0.39501953, 2.4179688, -0.98339844, -0.47558594, 2.5898438, 0.29345703, 1.0273438, -0.6274414, -2.0898438, -0.52441406, 0.61816406, 1.7890625, 0.7060547, -2.6621094, 1.7109375, -0.6870117, -4.5742188, 0.79345703, -1.1953125, 0.08496094, 0.0670166, 0.1307373, 1.8505859, 1.7490234, 0.42749023, 0.8408203, -0.8652344, -1.5244141, -0.9448242, -0.35791016, 0.9267578, -0.41601562, 1.7636719, -2.0078125, -0.10925293, 2.5429688, 0.36743164, -2.75, -0.097961426, 0.7001953, 2.9980469, 4.578125, 2.1699219, 3.6933594, -2.0722656, 2.3085938, -1.2529297, 0.77001953, 0.8144531, -0.048095703, 0.5078125, 1.6171875, -2.6523438, 3.9921875, 0.51904297, 0.8979492, 0.6850586, 0.5522461, -1.2109375, -1.4804688, -1.7646484, -2.8398438, -1.5722656, -1.2558594, 0.85253906, 2.0039062, -0.4506836, -3.1738281, -2.0039062, 0.12335205, 0.19934082, -1.1259766, -2.0722656, -0.23254395, -2.7519531, -0.38989258, 0.92822266, 0.5859375, 2.4960938, -0.6855469, -0.9140625, 2.2910156, 2.1386719, 1.2998047, 0.41748047, -1.4775391, 1.3330078, -0.75097656, -3.1972656, 0.84033203, 1.1318359, -0.5283203, 2.8515625, 0.39404297, -2.7070312, -0.37182617, -1.2050781, -0.15942383, -2.2675781, 1.1552734, 2.0507812, -0.35839844, -0.20031738, -4.0585938, -0.54345703, -0.011543274, -0.57958984, 1.5458984, -0.9560547, -1.3242188, -1.7480469, 0.3708496, 0.37719727, -0.8120117, 0.054229736, -0.7836914, 0.66552734, -0.91503906, -2.2109375, -2.2207031, -1.9960938, 3.6855469, 1.0263672, -2.0761719, 1.2216797, -1.6826172, -1.1259766, -2.2753906, -2.5566406, 1.1064453, -0.36694336, 1.1650391, 1.7880859, 1.0068359, -0.73828125, 2.1386719, -0.7993164, -0.10357666, -3.0332031, 1.1279297, -0.94873047, 2.3222656, 2.7109375, -0.59716797, 0.005897522, -0.4970703, -0.111083984, -1.2001953, 3.2421875, 0.79589844, 0.9638672, -1.8720703, -1.3193359, 2.4941406, 1.7958984, 0.66552734, 1.0332031, -0.5385742, 1.359375, 1.4042969, 0.47070312, 0.8095703, 0.6582031, 1.3955078, -0.41064453, -0.50634766, -1.1425781, 0.4338379, 1.8378906, -0.20544434, 1.2841797, 0.6777344, 0.8105469, 0.6894531, -1.0263672, -0.12011719, -0.9682617, -2.703125, 1.0986328, 0.8823242, 0.50390625, 0.24206543, -2.1757812, -0.2709961, 1.2441406, -0.06530762, 0.61328125, -0.33618164, -0.42993164, 2.8085938, 1.4072266, -1.1435547, 0.5292969, 0.36791992, 3.8515625, 0.6225586, 0.86328125, 2.234375, 1.7460938, 0.059539795, 3.2910156, -1.2587891, 1.2929688, 0.8486328, -0.24523926, -0.014884949, -1.0234375, -0.82128906, 0.33740234, -0.26367188, 0.95458984, -2.3027344, 0.29663086, 4.0234375, -0.8388672, 0.21789551, 1.3779297, -0.65722656, 1.7324219, 2.7460938, -1.3720703, -1.0556641, -0.51123047, 1.2255859, 1.5976562, -1.3984375, 1.2783203, -1.4912109, -1.6513672, 0.28588867, -0.5019531, -0.26367188, 0.90234375, 3.0332031, -1.2216797, -2.4042969, -1.5634766, -4.21875, -0.5966797, 1.3837891, -4.6875, 0.9916992, 1.7724609, 0.96240234, 0.3095703, 0.9819336, -1.015625, 0.28759766, 0.49926758, 0.11242676, 2.2753906, -0.36083984, -0.50390625, 1.0185547, -1.4160156, 1.1298828, -0.7919922, -2.5742188, 0.44604492, 0.37353516, -1.3652344, 2.6972656, -0.45483398, 1.0341797, 1.6835938, -1.8623047, 1.8935547, -0.42382812, -1.6494141, -0.81640625, 1.0234375, -0.3425293, -3.234375, -0.10656738, 0.39257812, -2.1132812, -6.3515625, -0.4873047, 1.5683594, -0.93652344, 0.41503906, -1.2285156, 0.2211914, 1.0546875, -1.0302734, -0.13781738, -1.0576172, -1.5830078, -2.2929688, 1.0185547, -2.5390625, 2.0703125, -1.7333984, 0.36987305, -1.6259766, -0.42236328, -1.2460938, -2.1171875, 3.4003906, 0.73779297, 3.5683594, 0.5395508, 1.9951172, 1.2353516, 0.25073242, 0.40649414, -2.0117188, -1.75, -0.7348633, -0.54589844, -1.4375, 0.33569336, -3.7910156, 0.06048584, -0.3256836, -1.2617188, 0.79345703, 0.81884766, -1.2460938, -0.026351929, 0.12878418, -0.60791016, -0.75634766, -1.6201172, 0.057281494, -0.2277832, -1.2246094, 0.5576172, 0.17138672, -0.25341797, -1.7197266, 0.9160156, 0.97558594, 0.3725586, 1.8291016, -0.66259766, 2.1542969, 1.875, -3.9257812, 2.3945312, 1.8603516, 0.76904297, -0.84472656, -1.8203125, -1.7148438, -2.0878906, -0.37695312, 2.9941406, 1.0898438, 2.640625, 0.46118164, -0.022842407, 1.7041016, 2.09375, -1.0136719, 1.3154297, -1.6435547, 1.6015625, -1.3095703, -1.9746094, 1.2832031, 2.9179688, -3.8300781, -1.6074219, 2.0761719, -0.25732422, 0.71533203, 1.6748047, -0.89990234, 0.28710938, 3.0273438, -0.044067383, 1.3525391, -1.6523438, -0.3659668, -1.2539062, 0.41064453, 3.015625, 3.3476562, 0.15722656, -1.0175781, 0.96191406, 0.91845703, 1.0556641, -0.83203125, -0.7626953, -0.085632324, 1.5703125, 0.12585449, 2.9335938, 0.009056091, 1.2128906, 1.0234375, 0.37719727, 0.9995117, -0.9272461, -0.43530273, 2.3242188, -0.68310547, -0.3330078, 0.11505127, -0.99121094, 0.18322754, -0.84472656, 1.3710938, -1.2519531, 0.57470703, 1.1904297, -1.8359375, -2.7011719, -1.6230469, 1.9140625, -1.0507812, -1.1396484, -0.20300293, 1.3359375, -1.4169922, -0.3095703, -2.9042969, -0.70654297, -1.1269531, 1.8300781, -1.484375, -1.8076172, -1.7294922, 0.22644043, 0.37890625, 1.7539062, -0.24743652, -0.37304688, -0.5595703, -1.7285156, 1.875, -0.8125, 1.2851562, 1.0908203, -3.0664062, 0.1373291, -2.7050781, -1.3798828, 2.34375, -1.2236328, -0.7192383, 1.6396484, -1.1777344, 3.2265625, -0.9121094, 3.4824219, -0.96972656, -0.46020508, 1, -0.83691406, 0.6542969, -1.8193359, -3.4355469, 0.5463867, -1.3701172, -0.3227539, 4.2226562, 0.05316162, 1.2744141, -1.2792969, 1.4453125, -1.1230469, -2.7578125, -0.82958984, 0.88183594, -1.7841797, 0.70751953, 2.3183594, 1.2900391, -3.8613281, -1.8652344, 0.7182617, -2.0996094, -0.09515381, 0.58984375, 1.2666016, 0.56396484, -0.6645508, 2.1328125, -1.6035156, 0.30126953, -0.5800781, 0.11206055, -0.82910156, -0.90185547, 2.4101562, 1.3427734, 1.0498047, -0.45996094, 3.2695312, 1.0039062, 0.29370117, -0.44799805, 0.52441406, 0.1628418, 0.6020508, -3.0996094, -1.3671875, -1.8212891, 0.4975586, 0.34960938, 0.65527344, 0.010482788, -0.46044922, -0.105529785, 0.80615234, 1.1533203, 1.9921875, 2.6210938, -0.47045898, 1.3056641, 0.18640137, -2.3085938, -1.2001953, -0.9189453, -0.8652344, -1.5097656, 1.5449219, -0.10449219, 0.5185547, -2.0234375, -0.71777344, -0.5292969, -1.0546875, 2.7578125, 2.3046875, -0.12780762, -0.7734375, -1.9121094, -1.1494141, -0.27905273, 1.1308594, -0.70458984, 1.0361328, -0.84521484, -0.34375, 2.0175781, -2.0800781, 1.5722656, 0.5517578, -0.8105469, 0.36328125, -1.2988281, 0.021774292, -0.20056152, -0.5371094, -0.27783203, -0.6098633, 3.5390625, -0.7163086, 0.85839844, 0.5058594, 0.4909668, 1.1181641, 0.49829102, -0.7524414, -1.1669922, 3.0722656, -0.27612305, -0.04574585, -1.6210938, 0.45361328, 2.65625, 2.0683594, -0.52490234, -0.6723633, -0.60595703, 1.2070312, -1.9150391, -0.86279297, 2.328125, -0.83691406, -0.7114258, 3.3789062, 2.4960938, 1.1552734, 1.0615234, 1.5634766, -1.1689453, 1.4228516, -0.15075684, -0.39501953, 1.0869141, -0.33764648, -4.1171875, -1.2363281, 2.6132812, -0.9145508, 2.6269531, -0.46264648, -1.8515625, -1.9775391, -3.0175781, -3.0371094, -2.1855469, -0.09246826, 0.052947998, -1.2587891, 0.066101074, -1.2080078, 1.0712891, 3.6503906, -0.045654297, -0.09741211, 0.2619629, -0.6953125, 0.012863159, -0.50341797, 0.67529297, -1.8076172, 0.3935547, 0.7631836, -0.55908203, 0.20568848, 2.4609375, 1.5839844, -1.6923828, -0.8798828, 0.0101623535, 2.3007812, -1.9384766, -1.7910156, 0.9941406, -0.0027694702, -0.46533203, -1.3984375, -1.703125, -2.046875, 1.5947266, -0.09234619, 0.9038086, 0.17687988, -0.16186523, -3.9863281, -2.2148438, -1.9121094, -0.6850586, 0.07446289, 0.18591309, 0.17004395, -2.2890625, 0.46264648, 0.30639648, 0.93115234, -0.7270508, 1.3105469, -1.8867188, 1.6103516, -0.3137207, -1.6279297, 0.3947754, 0.8569336, -0.19519043, 0.71240234, -0.8984375, -1.8652344, -3.6191406, -0.87109375, 0.30615234, -0.20043945, 0.39697266, 0.25756836, 1.1630859, 3.296875, -0.7006836, -2.5898438, 0.5629883, 0.16894531, -1.1806641, 2.8769531, -1.7236328, 0.8276367, 2.0683594, -1.8398438, -1.0810547, 1.2275391, 2.078125, -0.45263672, 0.22717285, 0.14855957, 0.46875, 0.20495605, 0.32128906, 2.1328125, -0.19812012, 2.2675781, 0.7338867, 0.7084961, -0.10827637, -1.8154297, -1.0263672, 0.6699219, -1.7919922, -0.3293457, -0.25732422, 1.5478516, 0.35205078, 0.8496094, 2.8691406, 0.1583252, 1.6083984, -0.8510742, 0.9892578, -0.75439453, 1.109375, 0.6176758, -1.6728516, -3.7441406, -1.1083984, -0.9370117, 2.1582031, 0.82421875, -0.018829346, 0.34448242, -1.3457031, -0.14355469, 0.080200195, 1.5673828, 0.12597656, 1.3222656, -2.0996094, 2.65625, 1.9902344, -0.98828125, -1.3505859, -0.48242188, 1.8496094, -2.0878906, 1.9042969, 2.5683594, 0.012458801, 0.08117676, -0.26782227, 1.2197266, 1.0244141, -1.7011719, 1.7763672, -3.75, -0.7416992, 0.13586426, -1.1425781, -3.3476562, 0.5620117, 0.6972656, -1.0146484, 1.3828125, 0.89208984, -0.058044434, 0.91845703, 2.1757812, -0.31445312, -1.2509766, 0.6298828, -0.51220703, -1.7558594, 3.4550781, -0.37695312, 3.0488281, 0.87890625, 1.6748047, -0.8828125, -0.7211914, -1.1923828, 1.3662109, 4.8085938, 2.3144531, 2.4140625, 0.5708008, 0.30371094, 2.2851562, 0.9423828, 3.234375, -2.4316406, 0.015144348, 1.0683594, 0.7734375, -0.31860352, -0.6894531, 0.23596191, 0.23388672, -0.7109375, -2.0175781, 0.47387695, 0.5180664, -0.024490356, -0.9370117, 0.3137207, 0.7182617, -2.0273438, 1.6552734, 0.7475586, 0.328125, 0.47216797, -0.09838867, 0.94628906, -0.07611084, 1.109375, 1.1279297, -0.8144531, 3.0292969, -1.7929688, 0.5161133, 1.6259766, -0.7207031, 0.07550049, 1.5019531, 0.49902344, 0.84814453, -0.18347168, -1.6074219, -1.0703125, -1.2988281, -1.4541016, -0.49047852, -1.3662109, 0.49316406, 0.09234619, 2.328125, 0.7910156, 1.4960938, 0.7080078, 2.515625, -2.4316406, 2.2070312, -0.6015625, -0.8618164, 0.5620117, -0.22753906, 1.8447266, -1.8476562, 0.71435547, -2.3261719, 0.9189453, 1.5644531, -1.5742188, -0.44580078, 0.11151123, -0.29345703, 3.6074219, -1.0898438, 0.51953125, 1.9248047, -1.890625, 0.10241699, -0.94677734, 0.7705078, -0.43701172, 2.3007812, -0.5625, 2.3886719, 0.8959961, -0.38208008, 0.7680664, 1.1171875, 1.4501953, 0.39819336, 1.4033203, -1.4228516, 2.1542969, -0.15539551, -0.78759766, 0.31054688, -0.78515625, -0.16430664, -0.64697266, -0.5419922, -0.5205078, -0.19470215, -0.22253418, 0.64501953, -1.9833984, 0.42114258, 3.3632812, 0.095581055, 0.22668457, -2.640625, -1.8095703, -0.47558594, -1.0449219, -0.3779297, -0.38598633, 0.2944336, 0.4189453, 1.5048828, 0.47192383, 0.48486328, -0.61621094, -1.9414062, -2.1503906, 1.1542969, 1.2050781, -0.8730469, 0.87353516, 0.40063477, -0.9609375, -0.8984375, 1.4150391, 1.7490234, 0.3059082, -1.4414062, -0.47924805, -2.8046875, 1.2021484, -0.94921875, 2.1328125, 1.1933594, -1.2119141, 1.6123047, -2.3046875, -3.1210938, -2.5703125, -1.6025391, 0.5595703, -0.8496094, -0.39941406, 0.3684082, 2.8613281, 2.3085938, 0.49243164, 0.54003906, 0.29760742, -0.17810059, 1.7636719, 0.74560547, 0.8251953, -0.3959961, 0.043640137, 0.06124878, 0.55810547, -0.036987305, -0.18603516, 1.8388672, 1.1171875, 0.65966797, -2.5292969, -0.42358398, -1.5, -1.2763672, 0.71777344, -0.88378906, 1.2138672, 0.9121094, -2.9921875, -4.4609375, -1.0341797]}, "B000646U3Q": {"id": "B000646U3Q", "original": "Brand: Coleman\nName: Coleman 2000032171 Cooking Stoves Accessories & Parts\nDescription: \nFeatures: Replacement gas stove regulator for Coleman stoves with gas pressure issues\nMaintains steady propane gas pressure in Coleman stoves\nFits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves\nBrings new life to beloved Coleman stoves that require maintenance\nCheck user manual of your Coleman stove to confirm compatibility\n", "embedding": [-1.0253906, -0.68408203, 1.5185547, 1.7832031, 0.8623047, 0.57470703, 1.0136719, -0.9550781, 0.113708496, 0.84716797, 2.8554688, -1.5371094, 0.47802734, 0.2626953, 1.9013672, 0.37817383, 0.30395508, 0.38842773, -0.31518555, 0.10839844, 1.7958984, -0.8652344, -0.48388672, -0.8491211, 0.4633789, 0.7709961, 2.8398438, -4.7851562, -0.7836914, -2.28125, 1.3828125, -0.9711914, -0.06951904, 2.9707031, -2.3925781, -0.42822266, -0.8466797, 1.5195312, -3.7207031, 0.12426758, -3.234375, 3.21875, 2.0214844, -1.2392578, -0.7104492, -1.5605469, 1.2412109, -0.120666504, -2.5136719, -0.73291016, 1.1582031, 2.40625, -0.46020508, 0.7998047, 0.27978516, 1.9003906, -0.2956543, -0.75927734, 0.51464844, 0.47509766, 0.99853516, -0.37402344, -2, 1.1425781, -1.8554688, 3.2246094, 1.2021484, 0.051513672, -0.9008789, 0.3864746, 1.7128906, -0.13220215, -0.3852539, -2.3398438, -2.9785156, -0.82714844, -3.9042969, -1.1738281, 0.6557617, -1.3515625, -1.8564453, 0.39697266, 1.6337891, -1.328125, -0.4013672, -0.13842773, -0.4140625, 1.0332031, 0.4572754, -0.59521484, -1.6035156, -0.11218262, -1.5527344, -2.7128906, 0.18591309, -0.15026855, -0.010498047, -0.0569458, 0.51953125, -1.1337891, -2.5488281, 0.6879883, -0.04324341, 1.0361328, -1.6123047, -0.1303711, 1.6982422, 1.9619141, -3.6132812, -0.14355469, -2.1992188, -1.6279297, 1.8876953, -0.78808594, -0.25439453, 0.4033203, -0.43530273, -0.74365234, 2.0371094, 0.064331055, 4.7460938, -0.02142334, 0.27490234, -0.41015625, -1.4267578, 2.578125, -0.38061523, -1.7685547, 3.2128906, -0.2944336, -0.59228516, -1.2802734, 4.2226562, -0.79296875, -2.0625, -1.9228516, -1.8291016, -2.2675781, -2.3203125, -1.5410156, -2.0351562, -0.63183594, 0.61865234, 1.6513672, -4.3203125, -0.60546875, -1.2646484, 3.7949219, 1.0068359, -1.8076172, 1.53125, -0.8486328, -0.46704102, -1.1679688, 1.7792969, 1.078125, -1.6162109, -1.5673828, 3.4609375, 1.0595703, -0.8129883, -1.1132812, 0.048797607, 1.4619141, 0.027389526, 0.064941406, -0.026229858, 0.171875, -2.0664062, 2.7851562, 0.07104492, -2.5449219, -0.8989258, 0.64990234, 0.19799805, -0.23596191, -0.14477539, 4.6679688, 1.2070312, -1.5654297, -5.1875, -3.0371094, 1.2607422, 0.34472656, 1.2529297, 0.038513184, -0.6386719, -0.04901123, 1.1826172, -1.4550781, -0.52685547, 1.1464844, 0.14685059, 0.090148926, -2.4394531, -1.6435547, -2.2324219, -0.7993164, 0.43920898, 2.6015625, -1.96875, -0.29052734, 0.37597656, 2.5292969, -2.1210938, 0.022598267, 0.5620117, -1.9550781, 1.8525391, 3.3320312, 1.9648438, -0.63623047, 2.3398438, -0.58496094, -0.7348633, -1.4824219, 1.3857422, 2.4355469, 1.0957031, 1.4765625, 0.9711914, -1.0410156, 0.03768921, -1.0615234, 0.56103516, 1.7265625, 1.5449219, 0.3869629, -0.7475586, -2.0136719, 2.765625, 2.4101562, -2.5039062, 0.15441895, -0.70654297, 2.734375, 1.1005859, -1.6669922, 1.0253906, -1.0458984, -0.053863525, -1.3671875, 1.1015625, -0.63183594, -0.21459961, 0.7211914, 1.1201172, 0.36083984, 2.5136719, 0.45629883, 0.03289795, 0.7709961, -2.2929688, 0.25219727, -4.1953125, 0.3762207, 1.6845703, 0.26391602, -0.081726074, -2.6445312, 1.6240234, 1.9853516, -0.40649414, 0.9941406, -0.77246094, 0.013648987, 2.6386719, -0.3125, -1.6298828, -0.4482422, 1.4472656, 1.6367188, 2.3847656, -0.57128906, 1.7568359, -0.29711914, -1.0478516, 2.6542969, -0.2401123, 0.7080078, 0.7363281, -0.875, 2.2363281, -2.5976562, 0.002796173, 1.6640625, 1.3476562, 0.4387207, -3.0253906, 0.46777344, 3.9296875, -3.0976562, -2.4550781, 3.7441406, -1.6210938, -0.4897461, -0.37231445, 1.0693359, 1.1933594, -0.8847656, 2.1484375, -0.3203125, -0.06951904, 1.1074219, -1.7412109, 0.49438477, -1.4394531, -1.4960938, -0.25708008, -0.69873047, -1.9130859, -2.8632812, -1.3935547, 1.8798828, -1.1728516, 0.36621094, 1.4472656, -1.6064453, 1.1904297, 0.22094727, 0.35009766, 0.7915039, 0.11859131, 0.10821533, 2.1425781, 0.8261719, -0.6586914, 3.0976562, 0.60595703, 0.6386719, 0.9926758, -2.6816406, 0.25756836, -1.4238281, -2.7402344, 0.9033203, -0.015113831, -5.8359375, 1.3173828, 1.6904297, -1.3925781, 1.9814453, -1.8632812, 5.2773438, -2.9375, -0.8300781, 0.10699463, 1.2050781, 1.0205078, -1.4355469, 1.7773438, 2.265625, -0.31445312, -2.1914062, -1.3535156, -0.074035645, 1.0048828, -1.7880859, 0.27294922, 1.7851562, 1.4365234, 0.56689453, -0.29125977, 0.7915039, -0.9941406, -1.8115234, 1.2421875, -3.4316406, -0.34643555, -1.2509766, 0.6899414, 0.7182617, 1.3076172, -2.4042969, -0.35058594, 2.4257812, -0.7558594, 4.40625, -2.4667969, 1.390625, -1.2949219, -0.6455078, 0.9526367, -4.3125, -3.2402344, 1.2773438, 1.5976562, 0.91064453, 0.21508789, -3.234375, 0.63916016, -0.40405273, -0.10559082, -1.4160156, -0.3737793, -0.5390625, 0.7607422, 1.1533203, -0.083984375, 0.62060547, 2.1601562, -0.26049805, -2.1523438, -0.8935547, 0.82373047, -2.3320312, 0.43725586, -0.7573242, 0.07598877, -0.06793213, -0.73291016, 0.17138672, 1.3837891, 1.6328125, -1.8017578, -3.1464844, 0.25708008, 0.33813477, 0.4338379, 3.2109375, -1.5429688, -0.72216797, -4.3164062, -0.3359375, 1.1064453, 1.1611328, 2.1328125, -0.28710938, 0.60009766, 0.48608398, 1.3925781, -1.1884766, -0.3552246, -0.6401367, 4.2421875, -1.2978516, -4.0507812, 1.7070312, 0.42504883, -2.2773438, -1.8945312, -0.08972168, 0.03503418, 2.0703125, 2.5664062, -0.02230835, -0.65234375, -0.043548584, 0.40795898, 1.7880859, -0.39648438, 0.90722656, -0.6982422, 0.9267578, 0.80908203, 0.7636719, 0.30566406, 2.2109375, 0.05697632, -0.2849121, 2.5664062, -1.34375, 1.3115234, 0.7006836, 0.2211914, 0.65185547, 2.5488281, 0.7426758, 0.32080078, -1.6816406, -0.50146484, 2.453125, -3.8496094, 1.8837891, 1.8984375, 1.0449219, -1.4238281, 1.6240234, -1.2392578, 2.2636719, -0.33544922, 0.75146484, 1.2988281, 0.36108398, 1.3242188, -1.0917969, -1.5175781, -2.2949219, 3.8632812, -0.9926758, 0.26586914, 0.48168945, 1.5224609, -1.7998047, -3.0371094, -3.3125, -0.09240723, 0.73291016, 2.3769531, 0.060333252, -2.6074219, 0.36645508, -0.18029785, 1.4238281, 3.6445312, -3.5136719, -0.43847656, 0.14758301, -1.1181641, -2.5253906, 0.875, 3.6445312, 1.2373047, -1.9443359, 0.2319336, -2.5351562, 1.0419922, 0.23120117, -1.2607422, -0.21496582, 0.6386719, -1.5498047, 0.4091797, 0.3137207, 3.7851562, -3.1464844, -0.48706055, 0.7006836, -2.3359375, -0.671875, -2.953125, -3.1992188, 1.7080078, -0.52685547, -0.14501953, 0.064086914, -0.040771484, -0.21032715, 3.03125, -1.0449219, -3.1601562, -1.0517578, -0.39233398, -1.4384766, -1.5693359, -0.24816895, 1.7578125, -0.5600586, -2.34375, -1.9404297, 0.15942383, -3.1386719, 0.6479492, 1.0683594, -3.8554688, -0.047668457, -1.2050781, 3.1757812, -0.23327637, -1.1318359, 2.9414062, 1.1035156, 0.15917969, -2.9648438, 3.2441406, 1.5615234, 1.3027344, -1.0673828, 2.2363281, 3.1347656, -0.84033203, 1.7412109, 0.22998047, 0.59472656, 0.7495117, -1.0087891, -0.36376953, -2.0566406, -0.71972656, -0.82177734, 0.3557129, -0.35913086, -1.9990234, -0.37402344, 2.2597656, 1.0957031, 2.5957031, 0.052215576, 0.10992432, 1.1298828, 0.94628906, -1.3740234, -0.7998047, -0.74658203, -1.2646484, -1.0859375, 0.8823242, -1.9228516, 0.16894531, -0.56884766, -1.4707031, -2.6914062, -0.7006836, -0.7368164, 1.8037109, -0.80322266, -1.2607422, -2.9648438, -0.19921875, -0.32177734, -0.052642822, -1.1318359, 0.6142578, 0.5571289, 1.7353516, 2.1015625, -0.8769531, -1.6337891, 0.14550781, -1.2216797, -0.24707031, -0.23535156, 0.9375, -1.3515625, 0.75634766, 0.1430664, -0.16345215, 0.48486328, -1.3222656, 0.60546875, 1.6845703, 1.0830078, -1.9042969, 0.73535156, 0.6381836, 1.8681641, 0.9189453, -0.06976318, 1.7617188, 0.36938477, 1.7734375, 0.6035156, 0.25927734, 0.74658203, 0.5522461, 2.1152344, 1.2216797, -1.21875, 2.0390625, 1.2324219, 1.2373047, 0.71240234, 2.7890625, 2.3808594, -1.7470703, 1.9785156, -0.75146484, -0.89208984, -0.7285156, 0.34301758, 0.35986328, 2.375, -0.41015625, -1.4697266, -0.6425781, 2.2871094, -0.90771484, 1.9609375, 0.9848633, -0.7895508, -0.86035156, -3.2851562, -0.5649414, -0.83496094, -0.82373047, -0.4482422, -2.7753906, 1.6220703, -0.06964111, 1.1435547, 2.2382812, 1.5605469, -1.1923828, -1.2392578, -1.9882812, -0.16589355, -2.5898438, -1.8398438, -0.8828125, 1.1777344, 0.90966797, -0.22338867, 1.0654297, -1.6123047, 2.6875, -1.7001953, -0.92041016, -0.09069824, 0.7783203, -1.6865234, -0.78222656, 2.0097656, -0.3059082, -0.6586914, -0.9145508, 0.37817383, -0.45483398, 3.015625, 0.16088867, 1.4267578, -1.2216797, 1.0771484, -2.7480469, -2.8613281, 0.41088867, 1.2011719, 1.4267578, -1.5683594, -1.7324219, -0.33618164, -0.6113281, -2.3671875, -2.3789062, -3.5136719, 0.16137695, 0.6386719, 0.40551758, 1.1142578, -0.19873047, -0.091796875, 0.6689453, -0.13122559, 1.3759766, -0.51464844, -2.4902344, -2.4296875, 0.8955078, -1.109375, 0.52490234, 0.69677734, -1.1787109, 0.8989258, -0.7163086, 0.8823242, 0.42041016, 0.76660156, -0.024154663, -1.0429688, 1.9082031, -1.3378906, 0.5864258, 2.8730469, -0.7504883, 1.7197266, 0.6777344, 0.8803711, 0.16967773, 1.9091797, 0.8183594, -0.44018555, 2.2050781, -2.9941406, 0.044830322, -0.39135742, 1.2773438, -0.0036392212, -0.18225098, -0.84716797, -2.4257812, 0.45751953, 0.3955078, -0.3474121, -0.38134766, 0.7084961, 2.8320312, 0.29174805, 0.953125, -0.49975586, 1.7451172, 0.9238281, 0.640625, 0.50146484, -1.5410156, 3.1464844, -0.090148926, -0.25732422, -1.2304688, -1.3457031, 1.9951172, -1.1767578, 1.3300781, 1.0966797, 0.3178711, -0.8300781, 2.5996094, -1.3291016, 2.2988281, 1.6328125, 1.84375, 0.011016846, 2.7519531, 4.4570312, -0.8808594, -0.9301758, 0.92822266, -1.7011719, -2.1425781, 2.4179688, 1.3427734, -1.5830078, 2.4609375, -1.8154297, 0.55859375, -0.33642578, -1.1044922, 1.2871094, -1.0332031, -0.15844727, -0.5180664, 0.30810547, -3.1210938, 2.6914062, -0.16101074, -1.7148438, 0.46313477, 1.2460938, 0.13256836, -0.7504883, -0.5527344, -0.17236328, -1.8720703, 0.41015625, 0.59814453, -0.18273926, 1.8837891, -0.5107422, -0.21508789, 1.0839844, 0.8300781, 0.4074707, 0.63134766, -0.54589844, 3.8867188, 3.984375, 2.0917969, 2.8027344, 0.90185547, 2.2304688, 1.0410156, 1.8525391, 0.921875, 1.7041016, -2.3417969, 2.2421875, -0.65185547, 0.5751953, -0.96240234, -0.36523438, -0.9238281, -0.076293945, -0.39282227, 1.5791016, 0.55029297, -2.703125, -1.21875, -0.32250977, 2.8242188, -1.4208984, 0.7714844, 1.2792969, 0.61328125, 0.9008789, -0.5942383, -0.15405273, -1.4667969, -0.22595215, -0.43359375, 0.37231445, 2.953125, 0.58154297, -0.08947754, -3.1289062, -1.8251953, -0.29125977, -0.24536133, 1.5078125, 0.050048828, 1.4931641, 1.4091797, -0.4008789, -1.0175781, -0.9277344, -3.4003906, 0.65478516, 1.2753906, 2.640625, 1.5390625, -1.3964844, 1.6445312, 0.099975586, -2.4023438, -3.3457031, 1.5478516, -0.7524414, 1.6445312, -0.7807617, -3.1347656, 2.7792969, 0.9921875, 1.2373047, -1.5712891, 1.7382812, 0.5366211, -1.7167969, -1.8251953, 0.00642395, -2.0859375, 2.7285156, 2.1640625, -1.640625, 0.85253906, 0.17675781, 2.5761719, -0.62353516, 0.8144531, 0.7607422, 2.2480469, -1.1923828, 2.484375, 1.1953125, -0.62890625, -0.9296875, 3.9160156, 3.7324219, -0.36669922, -3.4375, -0.09698486, 1.5146484, 2.0722656, 1.609375, -0.95654297, -1.84375, -0.8491211, -0.16296387, -0.61865234, -0.24475098, -2.7871094, 1.0634766, 2.0996094, -1.5458984, 1.6435547, 1.2578125, -1.3125, -0.4477539, -2.5390625, -0.8955078, -1.6630859, -0.026473999, 1.3798828, -1.7724609, -0.9580078, 0.7841797, 0.3515625, -0.28027344, -1.1962891, 0.0138549805, 0.3642578, -0.20031738, -1.7851562, -0.5986328, 0.02078247, -0.6879883, -0.95214844, 0.074157715, 0.047210693, 0.44970703, -1.2714844, -0.09539795, -0.7475586, -0.9863281, -1.4765625, -1.5380859, -0.98876953, 1.9882812, 2, -2.1347656, 2.6074219, -1.0458984, -0.8955078, -1.2597656, -2.1875, 3.6054688, 1.7792969, -0.79345703, 0.67089844, 0.67089844, 1.3740234, -2.5683594, -0.77978516, -1.6982422, 0.117248535, 0.8959961, -2.3515625, -0.8803711, -0.30566406, -2.0214844, 0.32177734, 2.5390625, 0.74072266, -0.8432617, 0.6166992, -0.98046875, 0.6796875, -1.8925781, -0.30004883, -0.70214844, -2.015625, -1.7119141, 0.30200195, 2.8007812, -0.921875, -1.2265625, -2.4414062, 0.6044922]}, "B07Y8GZK6V": {"id": "B07Y8GZK6V", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers\nDescription:

Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

Specification:

  • Forge Type: Double Burner Forge
  • Burner: Double Burner
  • Burner Nozzle Material: SS-304
  • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
  • Forge Internal Dimension: 6.5\" (H) x 5.5\" (W) x 18\"(L)
  • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
  • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

Connection Kit:

  • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
  • 5 ft. (2 Meter) gas hose pipe
  • 2 hose clamp

Product user manual & assembly instruction provided with packing.

\nFeatures: Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1\" thick high density ceramic fiber blanket\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\nReduce fuel consumption\nTwo Burners, Individually controlled with ball valves\n", "embedding": [-0.05255127, 1.5546875, -0.52001953, -0.5625, -0.46704102, -0.52734375, 0.49487305, -2.2109375, -0.98779297, 1.5166016, 1.1943359, 0.6694336, 1.0615234, -2.4121094, -0.25878906, -0.8598633, -0.7416992, -0.09503174, 1.1494141, 3.4394531, 2.4296875, -0.3774414, 1.8701172, 0.5419922, 1.0439453, -0.036865234, 3.0859375, -3.2148438, 0.65966797, -0.33325195, -0.010047913, -1.0351562, 0.5131836, 0.4267578, -2.7480469, -0.67529297, -2.4335938, -0.0541687, -1.3271484, 0.82958984, 0.009094238, 0.1932373, 2.578125, 1.0097656, -2.7734375, 0.55322266, 1.1054688, 0.44506836, -1.2441406, -0.14013672, 0.8354492, -0.07672119, 0.88671875, 1.1552734, -1.4306641, -0.5576172, -1.0605469, -1.7988281, 2.9121094, -0.12939453, 1.9765625, 0.14709473, -1.2226562, 0.8486328, -1.4570312, 1.0888672, 1.1865234, -1.7998047, -0.75683594, -1.1855469, 0.19995117, 1.5976562, 1.4082031, 0.69091797, 1.8496094, -0.9921875, -1.6435547, 1.9736328, 1.2890625, 0.4621582, -1.0429688, -0.048217773, 1.0107422, -0.38671875, -0.68115234, 0.27392578, -1.1015625, -0.06286621, 1.5439453, 2.9335938, 0.7348633, 0.38256836, -1.4892578, -5.6875, 1.2958984, -1.8095703, 0.6328125, 1.0898438, 0.66503906, 2.2402344, -1.0429688, -0.09020996, -1.5117188, 1.4404297, -2.6425781, 0.032043457, 0.9038086, 3.421875, -0.8623047, 1.0947266, -1.9628906, -0.38183594, 0.8989258, -0.3798828, -0.15686035, -1.5976562, 0.64990234, -0.5385742, 1.9238281, -0.9301758, 3.09375, -1.2705078, -0.08666992, -1.0126953, 0.50634766, 2.4941406, 0.16784668, 0.9560547, 2.8945312, -2.9511719, -0.53515625, -0.72314453, 0.8461914, -1.0273438, -1.8369141, -0.29077148, -1.2011719, -0.2775879, -4.4882812, -1.1582031, -0.3071289, 2.1523438, -0.0847168, -2.4238281, -2.2890625, 1.0224609, -0.26049805, 1.0039062, 0.22973633, -1.4042969, 0.81591797, -2.0117188, -1.1679688, -2.0996094, 1.2587891, 1.4599609, -0.09460449, -2.6074219, 2.7871094, 0.36254883, -0.28955078, 0.05807495, 1.2333984, 1.625, -3.1503906, 0.3005371, 0.5576172, 1.3535156, -2.484375, 0.9848633, 0.9848633, -1.2958984, 0.06011963, 0.2529297, -0.68896484, -1.9931641, -0.15100098, 1.8486328, 1.6933594, -1.0683594, -1.9208984, -1.3964844, 1.7978516, -0.4086914, 1.0097656, -0.43823242, 2.0058594, -0.8076172, -0.58496094, 0.43408203, -2.1367188, -0.89746094, 1.7226562, 2.0917969, -0.10144043, -1.7333984, 0.7807617, -2.2890625, 2.4824219, -2.2597656, -3.421875, -1.3144531, 0.7011719, 1.1552734, -3.5214844, -1.4013672, 0.56884766, 0.6191406, 3.1367188, 1.5576172, 0.12084961, -1.15625, 0.48754883, 0.8095703, 0.08856201, -3.6738281, -0.5546875, -0.6689453, 1.3125, -1.0458984, -0.85253906, -0.7519531, 1.625, 1.2314453, 4.0273438, 1.7773438, -0.57373047, 1.4609375, -2.40625, -0.6254883, 2.8984375, 2.5136719, -2.5078125, 0.6855469, -0.6694336, 2.1425781, -0.1616211, -1.4863281, 2.2480469, -0.17492676, 1.1152344, -1.3232422, -0.6611328, -0.16113281, -0.27075195, 0.040618896, 0.05621338, -0.96533203, 1.1464844, 0.35009766, 1.046875, 0.95703125, 1.4248047, 3.4042969, -0.7055664, 0.3046875, 0.90283203, -1.1962891, -1.28125, -2.6328125, 0.91015625, 0.6904297, -0.6386719, 1.2294922, 1.6123047, -1.3408203, -1.1171875, -0.5083008, -1.0136719, 1.5703125, 1.2626953, 1.5009766, 1.9013672, 1.5390625, 1.4335938, 1.5751953, -1.5107422, 2.3203125, -0.4958496, 2.3007812, -0.13256836, -2.1484375, 1.4990234, -1.3505859, 0.7290039, 0.5410156, 3.6503906, -0.40771484, -1.1015625, 1.9716797, 5.8945312, -0.9238281, -1.3486328, 2.6699219, -0.9736328, 0.4663086, -0.3474121, 3, 0.31958008, -1.6171875, 1.5712891, 0.9169922, 1.9150391, 1.6757812, -1.0761719, 0.703125, 2.6132812, -0.6152344, 0.5878906, -0.29638672, 1.5175781, 1.1230469, 0.078186035, 2.1582031, -3.3183594, -0.50927734, 1.6191406, -2.0644531, 1.7207031, 1.2441406, 0.29638672, 1.8730469, 1.0683594, 0.39990234, -0.1595459, 0.9863281, 0.11364746, 1.5859375, 0.8100586, -1.3945312, -1.7050781, -1.4619141, -2.4414062, -1.4707031, 0.17016602, 0.9736328, 1.6220703, -1.984375, 1.6542969, -1.3291016, 1.3974609, 0.36865234, -1.8525391, 0.026229858, -0.112854004, -0.03753662, -1.6445312, -0.30517578, -1.2900391, -1.1494141, 2.0976562, 3.6894531, -2.4667969, -2.6992188, -2.0332031, -2.1796875, -0.87939453, -0.17773438, -1.2070312, 1.9990234, -0.55322266, -0.4963379, 0.9223633, -0.90478516, -0.24963379, -0.39282227, 0.5439453, -2.6933594, 0.5854492, -0.062042236, -0.5209961, 0.09301758, -0.31982422, -0.8359375, -0.49682617, -0.828125, -0.6074219, 3.5117188, 0.4169922, 1.859375, -1.4697266, -2.9941406, -1.6484375, -0.8618164, -1.5341797, -0.64453125, -0.06188965, -0.80322266, -2.0195312, -3.1953125, -0.34350586, 0.36206055, -1.0332031, 0.038757324, 1.1582031, -0.8461914, 0.27539062, -0.4699707, -1.5292969, 0.016571045, 0.6738281, 1.0957031, -1.3974609, 0.6826172, -1.8320312, -0.85009766, -1.3759766, -0.061828613, 0.84521484, -1.2695312, 0.013809204, -0.97021484, -0.13183594, -1.6318359, 1.9277344, -1.2900391, 1.1171875, 0.70751953, -1.4248047, 0.73583984, -2.0097656, -0.122558594, -0.26953125, -0.69433594, 3.7734375, -0.18615723, 0.48120117, 0.16821289, 0.30615234, 1.1240234, 2.71875, -2.0644531, -2.0605469, 0.9267578, 2.4628906, -2.4824219, -1.3017578, 1.1113281, 1.9326172, -3.7871094, 0.8979492, 2.7734375, 0.3630371, 0.5161133, 2.7265625, 1.4238281, 0.53271484, -1.4814453, -0.31298828, 1.1484375, 0.7080078, -0.50341797, 0.5683594, -0.32299805, 0.58740234, 0.8417969, 2.1757812, 0.76904297, 3.2792969, 2.9746094, 1.1972656, -1.5205078, -1.8251953, -0.8330078, 0.14038086, -1.0039062, 2.0234375, -0.60791016, -0.5698242, -0.8208008, 0.17333984, 1.8134766, -1.9697266, -1.1621094, 0.87109375, -0.4831543, 0.7163086, -1.3085938, 1.4384766, -0.7114258, -1.1738281, 1.6621094, -0.058929443, -1.28125, 0.79003906, 0.5966797, 1.6337891, -2.3105469, 1.4433594, 0.13439941, -0.32739258, -0.96191406, 0.68310547, -1.0722656, -0.82666016, 0.14318848, -0.04046631, -0.3840332, 1.6806641, 1.2802734, 0.40771484, -1.8613281, -1.5078125, -0.20947266, -1.4648438, 0.30859375, 0.4970703, -1.3955078, -0.37451172, -0.92578125, -0.2208252, 0.04473877, 1.3330078, 0.16247559, 0.82714844, -1.2919922, -0.31884766, -0.2626953, -2.3886719, -0.25390625, 4.046875, -0.8041992, 0.1328125, 0.35009766, 3.5195312, -1.9316406, -0.48266602, 1.1972656, -3.046875, -1.0566406, -0.47827148, -2.6640625, 0.83935547, -0.22424316, 1.2333984, 3.3144531, -0.9770508, 0.46264648, 2.8828125, -0.089904785, -3.921875, -2.3925781, 0.33422852, 1.3085938, -2.3105469, -3.796875, 1.7949219, -1.1494141, -1.9277344, 1.5390625, 1.9814453, -1.3564453, 0.9902344, 1.1015625, -3.5019531, -1.1630859, 0.9589844, -0.041870117, 0.95214844, -1.6572266, 0.69091797, -0.8261719, 0.004875183, -1.4355469, 1.5390625, 0.42993164, -0.30541992, 1.1777344, 1.6123047, 1.2324219, -0.8510742, -0.09094238, -1.0263672, 2.4277344, 0.98291016, -1.59375, 1.9072266, 0.19506836, 0.85839844, -0.93896484, -0.69140625, 0.3076172, -1.7011719, 1.6533203, 1.7255859, 1.6035156, 1.7636719, 1.6767578, -0.16357422, -0.013282776, 1.0185547, -1.6005859, 0.028396606, 0.4494629, 0.04699707, -2.4472656, 1.5253906, -1.6523438, -0.86621094, 2.0644531, 1.4404297, -1.6269531, 2.9550781, 1.8789062, 0.29711914, 1.9345703, -0.7089844, -1.8105469, 0.32958984, -0.40795898, -1.09375, 0.3347168, -0.88183594, 0.46875, 1.71875, -1.0634766, 0.51171875, 0.7294922, 1.9785156, -1.4228516, 0.3947754, -0.3815918, -0.86376953, -1.6259766, -0.4658203, -0.07543945, -0.6972656, 0.92871094, -0.2998047, -2.8535156, 2.5429688, 1.0664062, -0.73291016, -1.9365234, 0.18322754, -3.3867188, -0.4501953, 1.4580078, -0.45288086, 1.7285156, 0.4543457, 2.1269531, 0.4794922, 0.9604492, 1.4033203, -0.04776001, 0.59375, -0.6464844, -1.1777344, 2.3984375, 0.19189453, 0.7402344, 2.8125, -0.82714844, -2.2851562, 0.9472656, 1.6630859, -3.7207031, -0.7519531, -0.3659668, -1.3681641, -0.48291016, 1.5273438, -2.4804688, 0.34106445, 2.0917969, -1.0332031, 0.036376953, -1.3271484, -0.65185547, 1.4765625, -1.2714844, -0.3474121, -1.1845703, -1.2910156, 2.2148438, -0.061187744, -0.08050537, -1.1083984, 2.3398438, 0.5102539, -1.2001953, -0.021331787, 0.41601562, -1.515625, 0.61816406, -0.75634766, -1.6357422, -2.6269531, 1.1992188, 1.4208984, 1.8554688, 1.2666016, 1.3496094, 0.6118164, -2.3046875, 0.7504883, 0.44189453, 0.68115234, -1.2080078, -0.8466797, 1.5439453, -0.9091797, 0.3857422, -0.16247559, 0.44189453, -2.453125, 1.4980469, 1.7412109, 0.6958008, -0.71484375, -0.2861328, -2.265625, -4.8085938, -0.7392578, 0.8432617, -0.56591797, 0.6767578, 1.4619141, -0.22045898, 1.9160156, -1.5117188, 0.18652344, -0.9316406, 0.012176514, 0.5175781, -0.46411133, -4.0976562, -0.049804688, 1.8144531, -0.06341553, 0.06616211, -1.1103516, -0.1529541, -1.0566406, -1.0263672, 0.9848633, -0.41625977, 1.4628906, -0.953125, -1.375, -0.57470703, 2.4824219, 2.0683594, -2.0644531, -0.70703125, -3.3847656, -0.68066406, -0.105163574, -2.0839844, 0.28979492, 0.71728516, 0.51708984, 0.027069092, 0.70703125, -0.9169922, -1.5126953, -1.140625, 0.9003906, 0.89208984, -1.6787109, -1.1152344, -0.24804688, -1.1650391, 0.9458008, -0.5629883, 1.3896484, -2.9628906, -0.5996094, -1.2646484, 1.1357422, -1.65625, -0.27368164, -1.2431641, 2.8027344, 3.4628906, -0.5498047, 1.2636719, 1.6201172, -0.4284668, 0.033935547, 0.8461914, -1.6884766, 2.8691406, -0.41088867, -1.5771484, -1.9921875, -1.7900391, 0.85595703, 0.9033203, 0.20373535, -0.8598633, -1.7265625, -0.96484375, 0.34643555, 0.103149414, -0.5317383, 3.4609375, 0.26245117, -1.5068359, 0.5517578, -0.20581055, -0.04055786, 0.6040039, 1.7626953, 0.72509766, -0.4572754, 1.7080078, 1.5546875, -2.9785156, -0.26953125, -1.3564453, 1.2558594, 0.10772705, -0.71875, -1.1220703, -2.0585938, -0.92089844, -2.2695312, 0.77197266, -2.828125, 1.6875, 0.36108398, -0.4404297, 0.39233398, 1.2167969, -1.0957031, 2.8007812, 4.1132812, 2.3476562, -0.81933594, -0.70996094, -3.1445312, -1.4892578, 1.2910156, -0.65625, -0.42993164, 1.7050781, 0.2487793, -0.9770508, 1.2705078, 2.203125, 3.3085938, 0.9135742, 1.0400391, 0.7705078, 0.82666016, 2.4882812, 0.23059082, 1.0800781, 2.4394531, 0.8027344, -2.9160156, 1.7324219, -0.64746094, 0.6196289, -2.3671875, 0.4104004, -2.5039062, -1.7773438, -1.1044922, -1.6630859, 0.24621582, -3.3261719, 0.98876953, 0.055725098, -0.7817383, -1.2539062, -0.85253906, -0.36645508, 0.65234375, 1.4765625, -0.35839844, -0.035705566, 0.7573242, -0.5859375, -0.9604492, -1.0449219, 1.2509766, -4.28125, 2.1503906, -0.65966797, -1.7568359, 2.609375, 1.9521484, -1.0205078, 1.6474609, 1.6669922, 0.5654297, 2.6386719, -0.4338379, -0.042999268, -0.15405273, -0.77441406, 2.2871094, 3.8984375, 1.2490234, -1.3779297, 0.68652344, -1.3427734, -2.3046875, -2.765625, 2.53125, -0.3388672, -0.39379883, 0.78271484, -0.43139648, 1.6923828, -0.6425781, 2.4296875, -2.7226562, 1.1708984, 1.2041016, -2.5019531, -1.7138672, 1.5332031, 1.6748047, 1.4365234, 0.016571045, -1.1386719, -0.066467285, 3.1972656, 2.2558594, 0.26049805, -0.38793945, 0.103271484, -0.17871094, -1.9580078, 2.5585938, -0.011268616, -0.10772705, -1.2314453, 3.2246094, 1.8056641, 1.3720703, 1.4335938, -0.39819336, 0.63134766, -1.8339844, 0.4411621, 0.20397949, 0.23291016, -1.6816406, -1.2529297, 1.0839844, 0.20959473, -0.58984375, 1.8496094, 0.39257812, -1.1181641, -0.29663086, 2.8007812, -1.7617188, -0.921875, 1.7207031, -0.115356445, -4.609375, -2.7382812, 1.1826172, -1.9667969, -2.4746094, 1.0605469, 1.4375, -0.12658691, -0.23254395, -0.24511719, -1.8740234, 0.95166016, 0.0005950928, 0.14807129, -0.52246094, -1.5351562, 0.36938477, -0.45703125, -0.4736328, 2.7597656, -0.7597656, 2.1621094, 2.9003906, -2.8378906, -0.7895508, -0.25146484, -0.8442383, 0.5756836, 2.6015625, 0.6904297, 1.0498047, -2.0996094, -4.1015625, -0.65771484, -0.9291992, 0.9868164, -0.7416992, -0.9711914, 0.51123047, 1.1787109, 3.8886719, -1.1425781, -0.9111328, 0.76416016, -0.15234375, 0.8720703, 1.3691406, 2.0761719, 1.7207031, 2.0175781, 0.18261719, 3.5488281, 2.6074219, -1.3378906, 1.7021484, 0.6791992, 0.13562012, -1.4882812, -0.9267578, 0.18530273, 0.8540039, 0.96728516, -1.9248047, 0.06201172, -0.018707275, -1.3896484, -2.8300781, -2.1210938]}, "B01GGDBLF2": {"id": "B01GGDBLF2", "original": "Brand: VORTEX (IN)DIRECT HEAT\nName: VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg\nDescription: Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8\" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA\nFeatures: \ud83d\udd25 \u3010MEDIUM SIZE\u3011 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more!\n\ud83d\udd25 \u3010VERSITILE\u3011 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared.\n\ud83d\udd25 \u3010EASY TO USE\u3011 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8\u201d tall\n\ud83d\udd25 \u3010AWARD WINNING\u3011 Makes awesome crispy chicken wings and seared steak!\n\ud83d\udd25 \u3010GENUINE\u3011 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.\n", "embedding": [-2.640625, 1.0986328, 1.8984375, -2.3320312, -1.0957031, 0.3251953, -1.0439453, -1.0986328, 0.17468262, 1.0595703, 0.06567383, 1.1806641, -1.7216797, -2.5371094, -0.026931763, 0.2927246, 1.3242188, 0.12768555, -1.2519531, 0.15466309, 3.3417969, 2.2167969, 0.8208008, -2.4296875, 1.9853516, 1.4580078, 4.3828125, -3.59375, 1.6259766, -0.45410156, 1.5917969, 2.3945312, 0.32128906, 2.3984375, -2.6777344, 0.09246826, -1.1884766, -0.028747559, -0.62060547, -0.53125, -1.6298828, -1.09375, 1.8554688, 0.3527832, -3.2910156, -0.94433594, 0.5854492, -0.38916016, -1.3603516, -0.4099121, 1.8779297, 0.38964844, -0.5566406, 0.7290039, -1.5048828, 4.0039062, -1.25, -1.9677734, 0.56347656, -0.74072266, -0.20043945, -1.7197266, -2.0605469, 1.84375, -0.8129883, 1.8916016, 0.2932129, 0.13415527, 0.45532227, -0.75683594, 1.1826172, 0.5571289, -2.7890625, 0.097351074, -0.61328125, -1.9482422, -3.3554688, -0.51171875, 0.4645996, -0.7036133, -1.4267578, 2.4648438, -0.29711914, -1.8476562, 0.08911133, 0.6796875, -0.78564453, -1.0498047, 2.4199219, 0.35595703, -0.46069336, 2.0449219, -0.10668945, -4.2460938, 2.5742188, -4.265625, -0.40673828, 0.085632324, -3.3144531, 1.1269531, -1.2929688, 0.28198242, 0.7060547, -0.9707031, -2.8730469, -0.25683594, 0.5214844, -0.67529297, -1.6904297, -0.7944336, -1.4658203, 0.013336182, 0.07366943, 1.9658203, 1.8388672, 0.375, 0.61083984, -0.4116211, 2.0625, -0.13244629, 3.3613281, -0.6645508, 1.5927734, -1.4794922, 1.2705078, -0.013313293, 0.30541992, -0.17150879, 3.640625, -1.4277344, 0.21887207, -0.33496094, 2.8027344, -1.3007812, -0.47558594, -3.8652344, -1.2871094, -0.49414062, -2.3007812, 0.54785156, -1.4316406, -0.62646484, 1.8105469, -1.15625, -3.3378906, -1.8769531, 0.17407227, -0.23840332, -0.6875, -0.9589844, 0.84716797, -1.6318359, -0.546875, -0.28930664, 2.6308594, 0.35473633, -1.1777344, -1.5292969, 1.4814453, 0.75, 0.13476562, -0.4152832, -0.31713867, -0.5419922, -0.8256836, -2.7773438, 0.05618286, 1.4208984, 0.9082031, 4.578125, 0.6152344, -0.18811035, 0.6777344, -2.1542969, 2.5957031, -1.7080078, 0.22998047, 1.0263672, 2.8828125, 1.3505859, -2.9316406, -0.4663086, -0.56396484, 0.7241211, -0.31396484, -0.7636719, 0.58447266, 1.8916016, 2.4101562, -1.6777344, 0.27197266, 0.50683594, 1.0742188, 0.24743652, 1.1835938, -0.1739502, -0.6123047, -2.0390625, 2.2871094, -0.28320312, -1.3125, -1.8974609, 0.17578125, -0.84521484, 0.07043457, -0.6459961, -1.0322266, 0.1661377, 0.66308594, 3.2949219, -0.18701172, -0.76953125, 0.61328125, 1.5419922, -1.2324219, -0.11352539, 2.015625, 1.4912109, 2.4746094, -1.0292969, -0.63916016, 0.07196045, -1.3046875, 3.7792969, 1.0498047, 0.47436523, 1.3720703, 0.17370605, -5.1875, -1.7685547, 2.9941406, 1.1933594, 0.37402344, 0.6489258, -0.47485352, 4.25, 2.8632812, -0.35791016, 0.24682617, 2.3066406, -0.0736084, 0.2939453, -1.0654297, 1.2001953, -0.21850586, 0.4880371, -1.1455078, 4.171875, 0.058898926, 1.0175781, -0.4794922, 1.4082031, 1.2705078, -2.0117188, 1.3945312, -0.23840332, -0.5239258, 1.0136719, -0.6767578, -3.1171875, 1.7021484, -0.75634766, -1.1621094, 0.8417969, -0.36865234, -1.2128906, 1.7089844, 2.2441406, -0.8696289, -0.84716797, 1.1621094, 0.91503906, -0.07287598, -1.5878906, 2.0019531, 1.5292969, 0.24621582, 1.1591797, 0.84277344, -0.73583984, 0.6201172, -0.056610107, 0.5620117, -1.4013672, 1.1279297, -1.0019531, -1.0205078, -0.8544922, 0.38232422, -0.46191406, 2.9121094, 1.3935547, -1.9042969, 2.5078125, -0.5888672, 2.1054688, 1.5205078, 0.37939453, -0.23657227, 2.0800781, 0.93359375, 0.80029297, -2.0664062, 0.37768555, -2.4277344, -0.46923828, 2.5117188, -1.7509766, 0.44921875, 1.9746094, -0.4230957, -1.7441406, -1.1669922, -1.0898438, -1.1650391, -0.5517578, 1.7666016, -2.1542969, 1.2949219, -0.63623047, 1.421875, 0.6586914, 0.0055732727, -2.2734375, 0.5566406, 1.2539062, -0.17028809, 2.2167969, -1.1757812, -0.13989258, -0.8154297, -0.6176758, 0.55859375, -1.9794922, -0.87060547, -0.19152832, -0.6816406, -1.6806641, -1.4375, -1.0166016, -0.4880371, 1.3427734, -2.1289062, -1.0390625, -0.54785156, -3.3300781, -1.6015625, -0.8808594, -0.9326172, -0.76220703, 1.7275391, 0.80029297, -1.6523438, -3.9824219, -0.01902771, -0.52441406, 0.90234375, -1.2324219, -1.2578125, 2.0585938, -0.3269043, -1.0107422, -0.4284668, 0.66748047, 1.4863281, 1.8173828, -0.3540039, -1.8222656, 2.9101562, -2.3867188, 1.9228516, -1.2763672, -1.1455078, -1.3720703, -0.3491211, 0.0076560974, 0.9296875, 3.7792969, -0.72753906, 1.6201172, -0.56884766, 0.12371826, 0.010665894, -0.18457031, -0.4560547, -0.17651367, -0.77441406, -1.8876953, -3.0800781, -2.640625, -2.1015625, -1.453125, -0.22680664, 0.9189453, -0.037506104, 1.1552734, 0.18884277, -1.1816406, -0.95947266, -1.2558594, -0.90478516, -0.7446289, -1.7021484, -0.31933594, -0.97314453, -1.8056641, -2.3515625, 0.97558594, 1.65625, -0.640625, 1.8964844, 2.1113281, -0.006591797, 2.171875, 0.7597656, -2.0175781, 1.21875, 0.41723633, -0.2130127, 1.9824219, -0.7651367, -1.171875, -3.375, 2.4628906, 3.6484375, 0.93847656, 3.125, 0.6933594, 0.44580078, 0.5805664, 1.203125, 0.80615234, 0.12658691, 1.6621094, 2.3613281, 0.056732178, -1.6230469, 0.23535156, 0.7519531, -1.2900391, -1.4775391, 1.6416016, 0.9711914, 1.6679688, 0.34179688, 0.5756836, 1.4384766, -0.54541016, 2.0371094, 4.0859375, 0.8535156, -0.43481445, -0.59765625, 0.44335938, 1.7753906, 0.2841797, 1.3876953, -0.50390625, 1.5722656, 2.1875, 0.07287598, -1.1376953, 0.35107422, -0.16015625, 0.3269043, 1.5351562, 2.6621094, 0.1875, 0.0524292, -1.4404297, 2.2636719, 2.0742188, 0.29052734, 0.98095703, 1.7333984, -0.703125, -1.0292969, -0.32983398, 0.82958984, 1.1025391, -2.0800781, 2.4707031, -1.6035156, -0.69970703, 1.4208984, -1.5039062, -2.5371094, -1.7587891, 2.1113281, 0.37817383, -0.3474121, -0.46142578, -0.16967773, -0.29956055, -1.0810547, 0.22192383, 0.6074219, 0.6557617, 0.03189087, 0.81347656, -1.8105469, 0.054718018, -2.2441406, -0.7167969, 0.57470703, -0.043395996, -2.0117188, -0.01586914, 0.8691406, 3.0273438, -0.09234619, 0.28564453, 0.71777344, 3.0566406, -1.375, -3.0449219, -1.5566406, 0.1809082, -3.4785156, 0.41357422, 1.8828125, 1.5, -0.13452148, -0.20031738, 1.6425781, -0.49023438, -0.9980469, 2.3125, -2.1679688, 0.609375, -1.4599609, -3.3886719, 0.3618164, -1.1201172, -0.11566162, 0.9213867, 0.32495117, 0.5605469, 1.4140625, 1.8798828, -2.5566406, -0.5805664, -2.1269531, 0.46484375, -1.7861328, 1.1347656, 0.66064453, -0.047424316, -3.640625, 0.21850586, 0.3581543, -0.26757812, 1.984375, 0.25268555, -1.8027344, 1.5683594, -0.2890625, 1.1035156, -2.0214844, 1.375, -0.5336914, -0.7792969, 1.1513672, -0.9350586, 2.8046875, 0.026779175, 0.44335938, -0.17785645, 1.7089844, -0.56591797, 0.45996094, -0.28076172, 2.2050781, 2.6386719, -0.23657227, -1.1054688, -0.59765625, 0.4013672, 0.30444336, -3.1972656, 0.2746582, -0.7167969, -1.6621094, -0.0011320114, -1.3164062, -0.16809082, 2.2128906, 1.0449219, -4.6835938, 0.26049805, -1.6318359, -0.28173828, -2.09375, 0.30786133, -1.0498047, -1.1357422, 1.9658203, -1.5283203, 1.1455078, -0.0703125, 0.9482422, -0.82470703, 0.94873047, 2.1875, 2.7148438, 1.84375, -2.6855469, -1.1943359, -0.38671875, -0.9946289, -0.75878906, 0.95654297, 0.19616699, 0.7348633, 1.9189453, 0.12261963, -1.6113281, -0.453125, 0.65625, 2.1445312, -0.13867188, -2.03125, -1.1416016, -1.6660156, 1.1845703, 1.4433594, -0.4519043, 2.5722656, -0.22595215, -0.4025879, 1.0400391, -1.1591797, -1.78125, 1.1064453, -0.75878906, 1.3095703, -0.029632568, 0.20446777, 1.7138672, -0.6870117, 0.7944336, -0.08618164, 2.0332031, 1.2978516, 0.8339844, -0.24523926, 0.61816406, -2.6152344, -0.43945312, 4.4414062, -1.3212891, -0.84375, 4.0898438, 1.2294922, -2.3867188, 1.5224609, 1.4228516, -2.5507812, 0.14038086, -0.10821533, -1.8476562, 1.6015625, -0.49047852, -1.859375, -0.72314453, 2.75, -1.21875, 2.0488281, 0.7963867, -1.8095703, 2.5351562, -2.4355469, -0.0680542, -1.1601562, -0.3461914, 1.1708984, -0.081604004, -0.96875, -1.2373047, 1.6591797, 1.8603516, -1.9794922, -1.5712891, 0.33154297, -1.0566406, -1.5810547, -1.4990234, -1.6503906, -2.5273438, -1.6162109, 1.9941406, 0.68652344, 0.002494812, 0.06518555, 1.6328125, -1.7050781, -1.5273438, -3.4453125, -0.9321289, -3.3710938, 0.0062713623, 2.5742188, -2.671875, -1.0273438, -0.90966797, -2.2734375, -0.1665039, 0.2548828, -0.33984375, -0.51660156, 1.1542969, -0.4477539, -2.1191406, -2.7636719, -2.5664062, 0.5283203, 0.49145508, -1.7373047, 0.3388672, -0.90966797, -2.2832031, 1.0664062, -1.1787109, -1.5722656, 0.033050537, 0.09820557, -0.8886719, -1.3349609, -1.4814453, 0.0013895035, 0.61376953, 2.9355469, 1.5810547, 0.3425293, -3.2988281, -0.18688965, 2.1660156, -3.3105469, -0.07910156, 0.6621094, -0.13928223, 1.6279297, 1.6328125, -0.6191406, -1.8486328, 1.6220703, -1.859375, 0.79541016, -0.36669922, -1.9609375, 2.2949219, -1.3818359, -1.1328125, -0.5, 0.82958984, 1.9912109, 1.3652344, 0.69140625, 0.17651367, 1.1835938, -0.47583008, 0.7792969, 0.3046875, 0.68652344, 1.0751953, 0.9375, 1.6933594, 1.1376953, -3.8085938, -2.9121094, -1.5341797, -1.7724609, -0.13085938, -1.3291016, 0.9711914, 1.1533203, -0.50439453, 2.1132812, 1.9208984, 1.4414062, 0.21459961, -0.6269531, -0.77734375, 3.765625, 2.015625, -2.8671875, -1.3339844, 0.6196289, 0.16687012, -1.5371094, -0.012466431, -3.4882812, 0.7636719, -2.0507812, -1.0488281, -0.3347168, 0.5493164, 1.15625, -0.8330078, -1.2949219, 1.8847656, 2.6308594, -0.16137695, 2.3183594, 1.4228516, 1.8925781, -1.2304688, 3.0078125, 1.6259766, -0.8730469, 1.0908203, 0.19226074, 0.73535156, 0.71191406, -1.3554688, 2.4453125, 0.8149414, -1.3095703, 0.116882324, -2.9042969, -0.38305664, 2.4335938, 1.1650391, -0.061920166, 0.46606445, 0.98339844, 0.6035156, 0.7915039, 1.4707031, 0.77490234, -3.171875, 0.35424805, -2.3554688, 0.6411133, 1.3339844, -1.7382812, 0.86865234, 0.20324707, -0.121398926, -0.33935547, -1.3007812, -0.5004883, 0.62646484, 1.1132812, 3.7871094, -0.47973633, 1.6152344, 1.1621094, 1.5292969, 4.1328125, 0.29614258, -2.0429688, -0.35961914, 0.43969727, 3.3886719, 0.15625, -1.0341797, 1.6796875, -0.35229492, 1.9472656, -1.1748047, -2.6289062, 2.15625, -4.5117188, 0.7675781, -1.4160156, 0.6489258, -2.9492188, -0.2421875, 0.28686523, -0.36572266, -0.47436523, -0.7470703, 2.3203125, 1.1552734, 1.6679688, 0.105529785, -0.39331055, -0.40527344, -3.4785156, -1.1757812, 0.6508789, -1.5595703, -1.5302734, 1.5429688, 2.4160156, 1.7529297, -1.7382812, -3.203125, 1.2763672, 0.6538086, 0.5673828, -1.4140625, -0.35107422, 0.40527344, 0.7128906, -0.66503906, -1.4648438, 1.4228516, -1.5048828, -3.5917969, -1.7587891, 2.6015625, 1.3154297, 1.1289062, -0.7866211, -3.1152344, 2.0957031, 1.3115234, 1.6308594, -1.625, 0.69140625, 0.5986328, -1.3554688, -0.1928711, -0.17956543, 0.5283203, 3.7050781, -0.15783691, -0.55029297, 0.20800781, -1.7861328, 1.9306641, 2.1015625, 2.2792969, -0.89404297, 0.055023193, 0.59228516, 1.515625, 0.32006836, -1.7226562, -0.1595459, 0.72021484, 0.22045898, 2.9433594, 1.2783203, -0.68359375, -0.66552734, 1.3447266, -1.2304688, 0.24047852, -0.36523438, 0.026397705, -0.097473145, -0.19702148, 0.19177246, -0.34692383, -0.8154297, 2.4238281, -0.4128418, 0.9472656, 0.16308594, -2.0058594, 1.3603516, 0.034240723, -1.5400391, 0.5317383, 0.6376953, 1.6464844, 0.640625, -1.1298828, 1.0058594, 0.7080078, 0.44067383, 0.1875, 1.0566406, 0.82373047, 0.7128906, -1.8144531, 0.028274536, -0.37109375, -1.703125, 0.6279297, -1.6679688, 0.47216797, 1.2246094, 0.8588867, -0.18847656, -1.6660156, -1.6035156, -2.640625, 1.0917969, -0.8598633, 0.91552734, 2.3164062, 0.9614258, 0.5673828, -2.0644531, -2.0878906, -0.9667969, 0.09313965, -0.4716797, -1.9658203, -1.6757812, 0.9692383, 1.0234375, 0.9667969, 0.4572754, 0.53271484, 0.31079102, -1.2294922, 1.09375, 0.25585938, 0.81591797, -0.8671875, 0.8227539, 0.9970703, 0.79052734, -0.4453125, 1.3691406, 0.99316406, 3.4335938, 1.6875, -1.9912109, -0.67285156, 1.171875, 2.6542969, 0.4482422, -0.72021484, 1.2216797, 0.5756836, -1.0712891, -2.3242188, -1.6171875]}, "B07NVMY43D": {"id": "B07NVMY43D", "original": "Brand: MR. TORCH\nName: BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only)\nDescription: The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.\nFeatures: Upgraded Full Metal Cover Version, change old design's plastic knob to solid brass constructed knob.\nOur torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability.\nStrong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350\u2103, meets the most common needs for both professionals and DIY fans.\nSmart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane\nWith recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.\n", "embedding": [0.41723633, 1.4199219, -0.5332031, -0.10321045, 1.7382812, -1.4091797, 0.19360352, -0.2142334, 0.85058594, 0.74365234, -1.3613281, -0.41381836, 0.10522461, -4.59375, -0.70703125, 0.30737305, -1.8046875, 0.18737793, 1.6601562, 0.66308594, 0.49829102, 0.6772461, 1.484375, -1.4003906, 0.88427734, -1.4169922, 3.5898438, -0.8256836, 2.2675781, -1.3867188, 1.3330078, 0.26391602, -0.26098633, 0.09063721, -2.0703125, 0.96240234, 0.3088379, -0.5966797, -4.015625, -1.109375, -1.9951172, 0.2902832, 1.2587891, -0.7001953, -3.0761719, 1.5019531, -1.0634766, 1.2138672, -0.25146484, -1.8720703, 0.76416016, 1.5205078, -0.23168945, -0.15625, 1.5458984, -1.5800781, 0.043426514, -2.9355469, 1.9628906, -1.3808594, 3.2558594, -0.25732422, -1.9355469, 0.024047852, 0.30639648, 1.2148438, -1.8066406, -2.28125, -1.3662109, 1.3271484, 1.2451172, 3.125, 2.984375, 0.43579102, 1.1113281, -0.08428955, -2.75, 1.3105469, 1.2275391, 0.7729492, 0.3293457, 2.4726562, 1.4277344, -0.58154297, -1.4707031, -1.1162109, -0.97265625, 1.4228516, 1.6191406, 3.1289062, -2.2695312, 2.4960938, -0.5576172, -4.640625, 3.2949219, -1.0351562, 0.7089844, -0.013496399, 1.2636719, 0.7763672, 1.0332031, -0.34887695, -1.9003906, 2.234375, -2.2792969, 0.036315918, -0.18017578, 1.9228516, -3.1542969, 0.8256836, -1.5947266, 0.06939697, 0.9785156, 0.79052734, -2.5449219, -0.08605957, -0.95410156, -0.5576172, 2.1386719, 0.4248047, 3.1855469, -1.5214844, -1.1171875, -2.578125, 1.2597656, 2.4121094, -1.4580078, 0.37841797, 1.3515625, -0.9926758, -0.33618164, 0.014129639, 1.9570312, -1.1855469, -1.8339844, -1.2255859, -1.0341797, -1.1806641, -2.2519531, -2.3164062, -2.7207031, 3.1074219, -1.7421875, -1.4736328, -3.4140625, 0.85009766, -1.9208984, -1.0048828, 0.21704102, -0.6328125, 1.3583984, -0.6567383, -1.5322266, -1.8720703, 3.1015625, 2.3203125, 1.5341797, -0.359375, 3.4628906, -0.8647461, 2.5976562, 0.8886719, -1.7773438, 1.4492188, -2.7753906, -1.4121094, 1.6503906, 0.43530273, -0.15625, 0.5073242, 0.0071792603, 1.5332031, -1.9072266, 1.2675781, -1.1757812, -1.1923828, 0.67285156, 2.9316406, 1.0986328, -0.45385742, -0.26538086, -1.5, 0.46728516, -2.1953125, 2.234375, 0.7294922, 0.05529785, -1.7382812, 0.43408203, -1.9521484, 1.1572266, 0.8808594, 0.1217041, 0.75146484, -0.14257812, -1.7910156, 0.2644043, -1.2949219, 1.5996094, -0.20495605, -3.0039062, -0.23632812, -0.40625, -0.013847351, -2.5800781, -2.2382812, 0.037475586, 0.75390625, 1.8291016, 1.6923828, -1.4111328, -0.8496094, 1.6738281, -0.3630371, -0.3215332, -2.1191406, -0.19519043, -1.4326172, 1.2792969, 0.13684082, 1.0039062, -1.5283203, 1.4785156, 3.2910156, 0.84033203, 0.52246094, -2.2460938, -0.5756836, -1.5576172, -3.4746094, 1.1376953, 1.5986328, -0.82666016, -1.1992188, -0.026382446, 1.0380859, -0.70703125, -1.6210938, 2.2597656, -1.5566406, 0.006916046, -1.4248047, -2.171875, -0.72314453, 2.4628906, -0.32055664, -0.46923828, -0.20935059, 0.41601562, -0.20019531, 3.0859375, -0.28051758, 2.2460938, 0.14489746, -0.3017578, 0.22546387, -0.8261719, 1.1103516, 0.21520996, 0.20373535, 2.6425781, 1.8847656, -1.2226562, 1.4375, 1.4189453, -0.7861328, 1.1044922, -0.8334961, 0.3786621, 0.4025879, 0.19494629, 1.9375, 0.40844727, 0.93310547, 4.2578125, 2.3730469, -0.47192383, 2.15625, 0.94433594, 2.0605469, 0.7519531, -0.27734375, 2.3359375, -3.9472656, -0.30029297, -1.2236328, 2.3242188, -0.39160156, -0.3918457, 1.4169922, 3.2128906, -0.2692871, -1.7724609, 1.1113281, 0.57470703, 2.1132812, 2.5605469, 1.2597656, -0.41088867, -2.5957031, 2.5058594, 0.9658203, 0.1204834, 0.0024852753, 1.1533203, 0.13452148, 1.0595703, -0.6435547, 1.0888672, -0.88183594, 0.19567871, 3.5488281, 0.4633789, 1.8222656, -1.7861328, -0.19177246, 0.7573242, -3.5078125, 1.4521484, -0.55371094, 2.2167969, 2.7441406, 1.9589844, -1.2080078, 0.75927734, 0.16101074, -2.3164062, 2.5058594, 0.52783203, 0.28271484, 0.023468018, -0.7944336, 0.3972168, -2.2695312, -0.8779297, 0.7558594, 0.88916016, -3.3515625, -1.0224609, -3.1835938, -0.2697754, 2.2265625, -0.37695312, 1.3847656, -1.1220703, 0.026351929, -0.7861328, 0.10205078, -0.64697266, -0.69628906, 0.40551758, 4.265625, -1.7998047, -2.1953125, 0.5810547, -0.49951172, -1.7441406, 0.95996094, -1.7871094, 1.5771484, -0.4260254, 0.31445312, 0.12939453, 1.0058594, 0.058532715, -2.078125, 2.9980469, -3.1640625, -1.1669922, -0.65185547, 2.6328125, -0.02330017, -1.546875, -1.2695312, -1.3837891, -1.765625, 0.44848633, 2.8183594, 0.43408203, 2.5546875, -0.2668457, -1.4238281, 0.39819336, -0.028915405, -1.8896484, 0.08905029, 1.1289062, -1.9003906, -2.3203125, -2.7753906, 0.52246094, -1.3095703, -1.2128906, 1.8955078, -0.46923828, -0.43359375, 1.0576172, -0.4855957, 0.43530273, 1.2900391, -1.0810547, -0.09753418, -3.1835938, 2.1347656, -1.1308594, -2.171875, 0.09411621, -1.5029297, 0.4416504, -2.2050781, -0.08605957, 0.19018555, 2.1914062, 0.3413086, 2.8671875, -2.3203125, -0.15905762, -1.4472656, 0.7011719, -0.82373047, -3.2382812, -0.45922852, -0.077819824, 0.76171875, 3.6113281, -0.4741211, 0.8378906, -0.6489258, 0.0024299622, -0.3088379, -0.9873047, -1.6943359, -1.2460938, 1.0957031, 1.3603516, -3.0332031, 0.6743164, 1.3505859, 1.7402344, -3.5292969, 1.2675781, 2.3925781, -0.06286621, -0.121520996, 0.7949219, -0.21911621, -1.8769531, -1.2724609, -0.61865234, 2.0195312, 0.02381897, -0.7285156, 1.3496094, -0.14001465, -0.515625, -0.49072266, 0.9560547, 0.80566406, 0.8642578, 2.203125, 0.6098633, -1.1650391, -0.98583984, -0.6411133, 1.8662109, 0.8515625, 1.9677734, -0.56884766, 0.3173828, 0.36743164, -1.5800781, 0.3322754, -1.8583984, -1.0371094, 0.1270752, 3.1171875, -0.3659668, -1.3945312, -0.5395508, 0.65966797, -1.328125, 1.4375, -2.53125, 0.33862305, 2.1269531, -0.30932617, 2.7832031, -1.2695312, 1.4746094, 0.052856445, -1.0878906, -0.84521484, -0.14794922, -0.7885742, -1.7148438, -1.2636719, -1.2587891, -0.09259033, 3.4824219, -0.4182129, -2.4433594, -0.13366699, -2.4570312, -2.1347656, -1.1777344, -1.9804688, -0.12017822, -1.9980469, 0.9458008, 0.20544434, 0.5263672, -1.3144531, 0.2244873, 0.32226562, 2.1054688, -1.3242188, 1.9189453, 0.07281494, -1.0947266, -0.015365601, 0.8330078, -1.1552734, -2.3828125, 0.3701172, 1.7744141, -0.09484863, -0.875, 2.3808594, -2.2011719, -2.1503906, -2.90625, -1.9238281, 1.6103516, -1.6875, -0.34472656, 2.4707031, -0.4104004, 0.8754883, -0.62841797, -0.01991272, -0.63964844, -2.0722656, 1.3984375, 2.4960938, -1.8027344, -3.9316406, 0.8461914, 0.6796875, -2.0410156, -0.28344727, 0.43530273, -0.53564453, 0.060791016, 1.0947266, -0.4975586, 0.8857422, 1.2783203, 1.3867188, 1.6552734, -1.1347656, 0.35986328, -1.4003906, -0.5488281, -1.8242188, 0.6542969, 0.38305664, -0.4177246, 1.7949219, 1.3828125, 1.4775391, -0.9145508, 0.3564453, 1.0595703, 3.3183594, -0.057373047, -1.515625, 1.3369141, -1.1376953, 2.6582031, -0.9970703, -0.64208984, -0.75439453, -1.9853516, 2.4003906, 0.27124023, 0.13781738, 0.98779297, 2.6816406, -2.0019531, 1.6210938, 0.5957031, -3.3496094, 0.124938965, 1.9443359, 0.7504883, -0.30371094, 1.3818359, -0.20422363, 0.97314453, 1.1826172, -2.2675781, -1.3291016, 1.6025391, 2.5273438, -0.059661865, 3.0234375, 0.84472656, -1.8066406, -1.7226562, 2.0527344, -1.5996094, 0.1184082, 1.1044922, -0.23388672, 2.2421875, 1.5664062, 0.5517578, 0.66552734, 2.9101562, -2.0566406, 0.5410156, 0.7089844, -0.28588867, -1.8964844, 0.31811523, 0.17687988, -0.9824219, 1.0957031, -0.8120117, 0.84228516, 0.80371094, -0.12902832, -0.86279297, 0.40527344, 0.6972656, -0.69873047, -0.26464844, 1.5410156, 3.0058594, 1.9570312, 0.2265625, -0.60498047, 0.59814453, -0.70166016, 0.15698242, 1.0371094, 0.1619873, -1.4179688, -1.5703125, 2.6777344, 1.2441406, 1.4833984, 1.5839844, -0.34375, -1.8623047, -0.85302734, 2.4394531, -3.1484375, -1.1328125, -2.5820312, -0.39819336, 2.40625, -0.073913574, 0.32763672, -1.5625, 2.3378906, 1.1337891, 0.9375, -0.1394043, -0.3557129, 0.53759766, -1.4189453, -2.0820312, -2.1601562, 1.9960938, 0.11016846, 0.6274414, -0.9423828, -0.23266602, 1.7246094, 1.5576172, -0.7246094, 0.1751709, -0.27441406, 0.28100586, 1.0585938, 1.1699219, 0.22875977, -1.2529297, 2.7578125, -0.6176758, -0.72802734, 1.390625, -0.3310547, 3.1445312, -1.0058594, -0.2763672, -0.7402344, 0.375, -1.5039062, -0.2064209, 4.6484375, -1.0292969, 1.9287109, 0.5683594, -0.8105469, -0.50439453, 0.1105957, 0.5341797, 0.06842041, -4.140625, -0.121032715, -3.1015625, -4.1640625, -2.0488281, -0.21496582, -0.86816406, 1.5654297, -0.9091797, -0.8203125, 0.8276367, -0.8105469, 0.8198242, 0.6582031, 0.32739258, 0.48120117, 0.55566406, -2.5097656, 1.4941406, 1.2958984, 1.6162109, 1.0673828, -0.62402344, 1.7226562, -1.5839844, -3.2011719, 1.203125, -1.8251953, -0.46826172, -0.3371582, -0.5708008, 0.33862305, 2.3925781, 0.32495117, -1.875, -1.0351562, -2.1367188, 0.98779297, 0.96435547, -4.0546875, -1.6728516, 1.2548828, 0.3293457, 0.4831543, 2.5683594, 1.0751953, -3.546875, -1.1123047, -0.6464844, 0.21984863, -0.39160156, -0.030349731, 0.9941406, 0.08081055, 0.47973633, 1.8242188, 2.6230469, -3.5957031, -0.8652344, -0.93603516, -0.030334473, -2.2441406, 1.7148438, -1.0800781, 0.86328125, -1.0683594, -0.09008789, 1.3134766, -0.89208984, 0.5595703, -1.4746094, 1.3066406, -0.7739258, 4.2695312, -0.7548828, -3.3085938, -1.8349609, -2.0742188, 3.5273438, 1.0791016, -0.9848633, 0.28710938, 0.59228516, -0.9873047, -1.1201172, -1.2255859, -0.4243164, 0.006717682, 1.4990234, -2.9863281, 0.5942383, 1.6513672, -1.515625, 1.8828125, 1.6513672, 0.9370117, -0.77734375, 0.2824707, 1.1425781, -4.0742188, 0.12597656, -0.61816406, -1.3964844, -0.0046920776, -0.5234375, -1.1972656, -1.7890625, 0.6845703, 0.20397949, 0.60302734, -0.41210938, -1.5869141, 1.8896484, 1.2822266, 0.69091797, 2.7011719, -2.3300781, -0.52978516, 4.4101562, 0.7060547, -0.90283203, -0.8833008, -1.7841797, 0.7675781, 1.4316406, -3.1445312, 1.1875, 1.2929688, 1.6679688, -2.078125, 0.9506836, 2.1894531, 0.5078125, -0.2697754, 4.265625, 1.4882812, -0.2319336, 2.2109375, 0.22851562, -0.10015869, 0.4165039, 1.1083984, 1.2216797, 2.3828125, 0.14562988, 1.3251953, 0.022506714, -0.25952148, -0.48901367, -1.2246094, -2.7402344, 1.1728516, 1.4335938, -2.7480469, 1.9824219, -2.7480469, -1.9619141, -2.2089844, -0.73095703, -3.34375, -0.27172852, -1.5244141, 0.83740234, 1.140625, 0.9296875, -2.515625, 1.8759766, -0.43701172, 0.50927734, -4.59375, 0.30004883, -1.1376953, 0.56152344, 2.5683594, 2.3085938, 0.21362305, 1.0439453, 1.1044922, 3.5664062, 0.11907959, 1.9277344, 0.76464844, -2.0683594, 0.5917969, 1.8056641, 1.8525391, 1.5673828, -0.9399414, 0.45654297, -0.23535156, 0.26220703, -3.7128906, 5.3515625, -0.07116699, -2.8476562, 1.7275391, -1.8730469, -0.77783203, -3.0175781, 1.9462891, -1.8681641, 0.97314453, 2.6972656, -2.09375, 0.35424805, 1.5078125, 2.0507812, 2.9414062, -0.80566406, -2.1269531, -0.33129883, 0.56396484, 1.4462891, -0.27807617, -1.5, 0.83203125, -0.076660156, -2.9238281, 3.8066406, 0.055755615, 0.11187744, -1.7558594, 2.4980469, 1.734375, 1.7119141, 0.7519531, -0.75634766, 0.9921875, -0.40014648, -0.14208984, 1.9589844, 0.8564453, -1.6513672, -0.90283203, 1.3339844, 0.82128906, -0.75634766, 0.6455078, 1.2519531, -3.8867188, -0.99560547, 0.18066406, -2.3476562, -0.1026001, 2.796875, -1.5927734, -2.9433594, -0.46923828, 2.2597656, -2.2382812, -2.7832031, 0.32617188, 1.8300781, -0.94384766, -2.484375, 1.0039062, -0.7348633, 1.1582031, 0.066467285, -0.14758301, -0.73095703, -1.4824219, 1.2900391, 0.12658691, -1.9013672, 0.80566406, -1.0195312, 0.26123047, 1.7871094, -3.2070312, -1.1943359, -1.9052734, -1.109375, 0.14428711, 2.5175781, -0.0146484375, 1.0488281, -0.6098633, -3.203125, 1.8740234, 0.5805664, 0.2397461, -0.67089844, -0.6899414, 0.4477539, 0.6645508, 2.2519531, -1.6845703, 0.031234741, -0.28344727, 0.9277344, 0.66259766, -1.0820312, 2.7460938, 1.0292969, -0.24694824, 1.3203125, 2.6289062, 2.6972656, -0.23413086, 1.6953125, 1.5791016, 1.2011719, -0.8676758, -1.640625, -1.5351562, 0.4645996, -0.6191406, -0.52001953, 1.0048828, 0.20031738, -0.8232422, -1.9902344, -1.4111328]}, "B08124CP1Z": {"id": "B08124CP1Z", "original": "Brand: Mrinb-Sports\nName: Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting\nDescription: \nFeatures: \n", "embedding": [1.5625, 1.1835938, 0.9736328, 0.60302734, -0.020202637, 1.6035156, -0.53808594, -1.9257812, -0.06689453, 1.046875, 0.88378906, 0.4885254, 0.7890625, -3.2304688, 1.1230469, 0.44921875, 1.2255859, 1.1699219, 1.0917969, -1.1367188, 0.9536133, -0.076660156, 1.7001953, -2.203125, 1.1914062, 1.5195312, 6.1953125, -1.5498047, -0.3251953, -0.20092773, 1.1806641, 1.5039062, -0.2434082, 1.5292969, -2.2519531, -0.75146484, -3.5351562, -0.014976501, -1.9072266, -0.0076522827, -0.5961914, -0.6152344, -0.42407227, -0.31176758, -2.6113281, -1.1943359, 0.48754883, -0.47509766, -1.4199219, -0.23535156, 0.6015625, -0.1171875, -1.2705078, 0.7895508, -1.9453125, -0.23913574, -1.8408203, -2.546875, 0.875, -0.10241699, 0.9379883, -1.8632812, -0.78808594, 0.30029297, -0.096191406, 1.5195312, -1.0908203, -2.0527344, 0.6088867, 0.67089844, 2.6386719, 0.13085938, -0.5732422, -0.88720703, 0.9082031, -0.3388672, -3.5253906, 1.1777344, 2.2089844, -0.9399414, -1.046875, 2.4335938, 1.3154297, 0.18652344, 0.3466797, -1.2548828, -0.58984375, -1.0537109, 1.765625, 1.3515625, -2.4882812, 1.3359375, -0.7705078, -5.2382812, 0.96484375, -1.2109375, 0.9458008, 0.9355469, -0.44360352, 1.2373047, 1.2695312, -0.013839722, 2.0078125, 0.28442383, -0.8535156, -0.6796875, 0.7631836, 1.2773438, -1.3320312, 0.5654297, -2.734375, -0.4970703, 1.4794922, 1.3007812, -1.7324219, 0.5439453, 0.33398438, 2.2851562, 3.9746094, 0.6513672, 3.6074219, -1.5361328, 1.8720703, -0.76708984, 0.6586914, -0.91503906, -0.5419922, 0.24963379, 0.6298828, -1.2314453, 2.8476562, 1.1484375, 1.2978516, -0.103881836, -0.8930664, -1.2724609, -2.0097656, -2.8808594, -1.5869141, -2.1289062, -1.4619141, -0.022338867, 2.2519531, -1.2421875, -2.9765625, -0.625, 0.3425293, 1.9199219, 0.62353516, -2.0605469, 0.4116211, -0.7763672, -1.2128906, 0.9770508, 1.2353516, 1.5917969, -1.3320312, -0.7998047, 3.7304688, 2.0449219, 1.2939453, -0.15075684, -0.9189453, 0.074523926, -1.2851562, -2.9257812, -0.2836914, 0.7626953, -0.8232422, 2.4765625, 2.1308594, -2.1230469, 0.3413086, -1.7832031, 0.26391602, -2.2167969, 1.1015625, 2.5097656, 1.4199219, -1.3203125, -2.9570312, -1.9453125, -0.10461426, 0.049713135, 1.6171875, -0.21447754, -0.9453125, -0.4050293, 0.22070312, -0.11621094, -0.5126953, 0.41357422, -1.7861328, 1.2871094, 0.91308594, -2.7109375, -1.6083984, -2.1933594, 3.1230469, 1.7617188, -2.8730469, 0.87353516, -1.4970703, -0.3161621, -1.5234375, -2.3652344, 0.6791992, -0.1005249, 1.5214844, 0.9667969, 0.27416992, 0.027496338, 2.0683594, 2.2734375, 0.2536621, -1.9667969, 0.70996094, -0.60595703, 2.9355469, 3.5996094, 0.013893127, 0.40698242, 0.24841309, -0.6958008, 0.44262695, 2.7109375, 0.31054688, 0.32080078, -1.7988281, -1.3242188, 2.8828125, 0.82128906, -0.61572266, 0.87939453, -0.13549805, 2.3320312, 0.6796875, -0.11206055, 0.31860352, 0.80908203, -0.5214844, -0.69433594, -1.0507812, -1.3261719, -1.1835938, 0.45288086, -0.23754883, -0.6298828, 2.1015625, 1.2910156, 0.50634766, -0.6582031, -0.63720703, -0.21655273, -1.2070312, 0.640625, 1.1796875, 0.5175781, -0.5673828, -2.21875, 1.3847656, 1.0253906, -0.7397461, 0.77441406, 1.8652344, -1.0195312, 2.9824219, 0.8203125, -0.9086914, -0.79833984, 0.75634766, 2.3164062, 1.7832031, 0.27539062, 2.3378906, 0.6791992, -1.390625, 3.3222656, -1.0595703, 0.8959961, -0.27319336, -0.8857422, 0.52246094, -1.078125, -0.82470703, -0.23815918, -0.2956543, 0.71435547, -1.2041016, -0.008392334, 4.1523438, -0.8701172, -1.2285156, 2.9863281, -1.4882812, 1.7167969, 0.7944336, -0.5107422, 0.25341797, -0.079711914, 2.3261719, 1.7958984, -1.0205078, 0.6035156, -1.0478516, -1.2070312, 0.15844727, -2.2695312, -0.58154297, 0.8413086, 2.6835938, -1.0791016, -1.7373047, -0.6660156, -2.796875, -0.55078125, 1.3164062, -3.7597656, 1.1357422, 1.8984375, 0.6743164, 0.027450562, 1.2841797, -0.9995117, 0.17797852, 1.8535156, -0.54296875, 1.6582031, 0.18493652, -0.7871094, -0.11071777, -0.96240234, 0.06347656, -1.8457031, -1.3115234, -0.63916016, 0.31420898, -1.8984375, 1.2128906, -0.3618164, -0.8847656, 1.5537109, -1.0263672, 1.6416016, 0.83740234, -2.8066406, -1.8779297, 0.9819336, 0.00036859512, -2.40625, 0.3347168, 0.3322754, -0.8461914, -6.2851562, -0.4753418, 1.1132812, 0.0027503967, 0.35742188, -1.4863281, 1.0888672, 0.91308594, -1.4169922, 0.13842773, -0.5644531, -0.18444824, -2.109375, 1.4970703, -3.3261719, 2.015625, -0.36523438, 1.0302734, 0.33251953, -0.70703125, -1.3027344, -1.2714844, 2.4238281, 0.7861328, 4.9140625, -0.089904785, 1.4443359, -0.79345703, 0.060333252, -0.17041016, -1.6875, -3.2773438, -0.17041016, -1.7490234, -0.39135742, -0.6020508, -2.4042969, -0.08068848, -0.8666992, -0.67333984, -0.27807617, 0.6430664, 0.3371582, 0.09710693, -1.5068359, -0.14575195, -0.18920898, -1.5751953, 0.31958008, -0.37109375, -1.2216797, -0.30273438, -0.58203125, 0.51708984, -1.2890625, 2.3554688, -0.3876953, -0.6538086, 1.2197266, -0.6567383, 0.49047852, 0.77441406, -4.328125, 2.7226562, 1.0478516, 0.22070312, -1.1669922, -0.8857422, -0.5131836, -1.1904297, 0.71484375, 2.5214844, 0.89208984, 2.4511719, 1.0380859, -0.3737793, 0.4716797, 2.6503906, -0.7006836, 1.2402344, -0.48413086, 0.8828125, -1.4248047, -2.3652344, 0.22912598, 1.4912109, -3.4335938, -0.54541016, 1.4003906, 0.73779297, -0.092285156, -0.4326172, -1.5322266, 0.18530273, 1.4296875, -0.60839844, 0.2619629, -1.2734375, -0.32080078, -0.18444824, -0.6386719, 2.0351562, 3.09375, -0.7792969, -0.5942383, 0.7441406, 0.67333984, 1.9882812, -0.7910156, 0.2836914, -0.5263672, -0.59033203, -1.5634766, 1.6640625, 0.2685547, 0.26611328, 0.71728516, -0.111206055, 0.82714844, 0.06427002, -0.42504883, 2.2226562, -0.5991211, -0.2607422, 0.11779785, -0.5517578, -0.91845703, -0.29663086, 0.84375, -0.97265625, -1.1660156, 1.1845703, -2.5976562, -2.2792969, -1.9628906, 0.014450073, -0.63427734, -1.9824219, -0.7475586, 1.0839844, -1.5361328, -0.7807617, -1.3847656, -1.328125, -0.83935547, 1.5634766, -1.6699219, -0.0052108765, -0.68896484, 1.5302734, -0.16174316, 4.0664062, -0.48632812, -1.1650391, -0.5444336, -1.1162109, 0.4645996, -0.5629883, 2.2597656, 1.2675781, -4.0195312, 0.5932617, -3.2558594, -1.6337891, 2.1835938, -2.1601562, 1.4804688, 2.6113281, 0.33203125, 2.5976562, 0.3852539, 3.015625, -2.921875, 0.57128906, 2.6992188, -0.5102539, 0.21008301, -1.7734375, -2.9335938, 1.6464844, -1.3515625, 0.16918945, 2.2753906, -0.2709961, 0.04840088, 1.4804688, -0.22229004, -0.4206543, -3.7441406, -0.23449707, 0.91015625, -2.8261719, 1.3701172, 1.7363281, -0.5151367, -2.6933594, -0.82958984, -0.30810547, -0.76171875, -0.2709961, 0.15112305, -0.1529541, -0.375, -0.22912598, 0.56884766, -1.1992188, -0.65185547, 0.44482422, 0.3330078, -0.5048828, -0.89453125, 1.9208984, 1.2470703, 0.81640625, -0.29418945, 3.0527344, 0.2758789, 0.19848633, -0.12915039, 0.8017578, 1.3876953, -0.13098145, -2.0234375, -0.36450195, -1.9707031, -0.92578125, 0.296875, 0.7138672, -0.38012695, -1.0556641, -0.77734375, 2.0976562, 1.9453125, 1.5195312, 0.54248047, -0.5698242, 1.1230469, -1.8964844, -1.171875, -1.7792969, -0.32104492, 1.1015625, -0.5410156, 0.84814453, 0.46289062, 0.12670898, -0.6118164, -2.4394531, 0.8808594, -0.8100586, 2.3476562, 1.4707031, 2.2792969, -0.4645996, -1.3320312, -0.49658203, -1.1083984, 1.5917969, -0.21728516, -0.1496582, -0.023071289, 1.1201172, 2.6152344, -1.5742188, -0.04324341, 1.3466797, -1.1630859, 0.7348633, -1.0576172, 1.2402344, -0.8227539, -1.2382812, -0.9169922, -2.1015625, 1.9736328, 0.036743164, -0.020523071, 1.1425781, 1.0009766, 0.13305664, 0.8535156, 1.1884766, -0.46118164, 1.2304688, 0.14758301, 0.59716797, -1.0878906, 0.9038086, 2.9277344, 1.7783203, -1.1855469, 0.7963867, 0.8979492, -1.1328125, -1.2705078, -1.0996094, 2.2246094, 0.6538086, -0.54003906, 2.9179688, 0.062469482, 0.30908203, 1.3818359, 2.8242188, -0.42260742, 0.9995117, -1.5839844, -1.0449219, 0.87353516, 0.12548828, -3.1757812, -0.63720703, 0.625, -1.5322266, 3.7011719, -2.4316406, -1.2949219, 0.074401855, -2.90625, -1.3681641, -1.8427734, -0.43725586, 0.74560547, -1.2197266, 0.6464844, 0.0028705597, 1.5117188, 2.1679688, -0.04220581, -0.49609375, 1.0654297, -1.1943359, -0.35180664, -0.070617676, 1.0244141, -0.37597656, -0.13061523, 0.80371094, 0.6376953, 0.32885742, 0.8066406, 0.10998535, -3.0078125, -0.8774414, -2.3554688, 1.9931641, -2.2050781, -1.7460938, 0.68066406, 1.5654297, 0.86279297, -1.0214844, -0.73046875, -1.6542969, 2.3632812, 0.69921875, 0.06542969, -1.4511719, -0.5942383, -3.6738281, -2.5898438, -1.1845703, -0.7397461, 0.8208008, -0.49682617, -0.21362305, -1.09375, 0.22875977, -0.73095703, 1.5927734, -1.1201172, 1.0751953, -1.2216797, 1.3662109, 0.6401367, -0.91845703, 0.13317871, -0.19055176, -0.33520508, 0.58935547, -0.30517578, -0.7416992, -3.4609375, 0.33520508, -0.2607422, -1.1162109, 1.2578125, 0.30493164, 1.3203125, 3.171875, 2.1523438, -1.6826172, 1.0449219, -1.3251953, -1.1806641, 0.8798828, -2.265625, 1.5537109, 0.42700195, -1.8369141, -1.4716797, -1.625, 1.7529297, -1.0654297, -0.5527344, 0.18737793, -0.5371094, -0.18225098, -0.84033203, 1.4423828, -0.54345703, 2.3476562, 1.0546875, 0.2697754, 0.35864258, -1.9707031, -1.5419922, 0.34033203, -2.1054688, -0.96875, -0.83203125, 0.7597656, -0.021331787, 0.17980957, 2.2363281, 1.4404297, 3.125, 0.20056152, 0.9355469, -1.2685547, 3.0761719, 1.8134766, 0.15563965, -3.7773438, -2.6503906, -0.15820312, 1.9003906, -0.028656006, -0.81689453, -1.0576172, -1.7529297, -0.86035156, -0.2388916, 1.8046875, 2.4296875, 1.8203125, -1.7949219, 2.6054688, 1.9873047, -1.0351562, -0.24707031, 0.11273193, 1.8359375, -0.98339844, 3.2226562, 0.7348633, -0.7519531, 0.19543457, 0.44702148, 1.2734375, 0.21569824, -2.1152344, 1.2988281, -3.53125, -0.2631836, 0.75634766, -0.8027344, -2.9511719, 0.8754883, 1.3056641, -0.48657227, 1.3173828, 1.3574219, -0.5996094, 1.3222656, 1.0322266, 0.18115234, -1.4707031, -0.22973633, -0.085632324, -0.5410156, 2.3105469, 0.65625, 2.8066406, 2.6152344, 2.0429688, -0.3076172, 2.25, -0.15344238, 1.453125, 4.1210938, 2.2363281, 0.87841797, 0.8046875, 1.1269531, 1.6123047, 1.8662109, 2.2773438, -2.8574219, -0.29956055, 1.4511719, 0.3293457, -0.8544922, -0.12207031, -0.6484375, 0.65283203, -0.80859375, -0.6713867, -0.110839844, 0.48339844, -1.4755859, 0.0541687, -0.43359375, 0.73095703, -2.859375, 0.99658203, 0.016845703, 0.8310547, 0.041015625, 0.07348633, 0.26342773, -0.85839844, 1.5527344, 1.0820312, -0.45629883, 1.6914062, -1.7197266, 0.09484863, 0.8964844, -1.2939453, -0.1104126, 1.1328125, 1.6943359, 2.0859375, 0.26586914, 1.0644531, 1.7470703, -2.3398438, -0.25317383, -0.38842773, -1.5166016, 0.79296875, 0.8232422, 1.7871094, 0.47729492, 1.5859375, -0.3708496, 0.3071289, -2.8730469, 2.5488281, 0.10803223, -0.9003906, 0.8618164, -1.1132812, 1.9589844, -1.5722656, -0.3918457, -0.13476562, 1.0625, 1.4091797, -1.3134766, -1.1445312, 1.2285156, 0.97216797, 2.4277344, -0.14685059, -1.4755859, 1.9921875, -0.3623047, 1.2548828, -0.3881836, -0.26538086, -0.7036133, 1.8759766, -0.9121094, 2.2675781, -0.3347168, 0.49975586, -1.2558594, 2.9863281, 1.2910156, 1.3359375, 0.37573242, -0.6035156, 1.7675781, -0.5708008, -1.0117188, -0.33862305, -1.6777344, -0.98291016, -0.35083008, -0.62597656, -1.1943359, -1.8076172, 0.2619629, -0.05041504, -1.6796875, 0.7338867, 2.4570312, -1.0732422, 0.59228516, -0.96533203, -1.0966797, -0.2163086, -0.83154297, 0.04727173, 0.5991211, -0.5722656, 0.073791504, 0.51171875, 0.53271484, -0.7890625, 0.4699707, -2.3828125, -0.7006836, 0.47827148, 0.70458984, -1.0244141, -0.21044922, -0.4658203, -0.9785156, -0.0109939575, 1.7783203, 1.1630859, 0.5722656, 0.12164307, -0.8066406, -0.98828125, 0.6933594, -0.6254883, 0.86035156, 2.3867188, -1.0634766, 0.7104492, -3.4023438, -3.9921875, -2.3886719, -0.45483398, 0.9057617, 0.89941406, -0.055511475, 0.76660156, 1.7070312, 2.1640625, -1.3291016, 0.73095703, 0.41357422, -0.38842773, 1.9902344, 1.0595703, 0.7763672, 0.99121094, 0.89941406, -0.36645508, 1.8652344, 1.1240234, 0.47631836, 1.7265625, 0.43115234, 0.80371094, -1.1464844, -0.7871094, -2.3847656, 0.7524414, 1.4921875, -1.7294922, 1.0507812, -0.9082031, -2.1855469, -3.7070312, -0.71533203]}, "B07P8BN5X1": {"id": "B07P8BN5X1", "original": "Brand: Cal Flame\nName: Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone\nDescription: \nFeatures: Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board\nLiquid propane ready, Natural gas conversion compatible by certified technician.\nSeamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge\nPatented cast stainless steel knobs, with independent burner ignition system\nHeavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design\n", "embedding": [-0.4633789, -0.17749023, 2.5703125, -2.0527344, 1.6455078, 0.68066406, 1.1103516, -1.4003906, -2.1582031, 2.0957031, 0.36987305, 0.84033203, -2.1347656, -2.9296875, 2.21875, -0.6621094, 0.7441406, 0.7685547, 0.17041016, -0.4580078, 3.3496094, -0.34423828, -1.0546875, -1.2109375, 2.1503906, 1.1367188, 4.7265625, -2.4023438, 0.20019531, -1.0224609, 0.19226074, 1.9238281, 0.26538086, 1.2177734, -2.9199219, -0.47753906, -0.5463867, 1.5712891, -2.2636719, 1.4492188, -1.9013672, -0.9091797, 1.46875, 1.7431641, -2.5136719, -0.64404297, 1.1845703, 0.9980469, -0.98339844, -2.2207031, 0.4736328, 1.5527344, -0.3095703, -1.4921875, -1.4296875, 0.71875, 0.06506348, -2.703125, 1.6884766, 0.9589844, 0.43725586, -1.09375, -1.2558594, 3.0175781, -1.5957031, -0.81591797, -0.20043945, -0.4946289, 1.1767578, 0.20983887, 1.7675781, 0.1496582, -1.5595703, 1.0830078, -0.46435547, -0.63183594, -2.0078125, 1.7431641, -0.5683594, -0.58984375, -1.1904297, 1.2412109, -0.25170898, -1.1171875, 0.36889648, -0.15930176, -1.7080078, 0.31347656, -0.013252258, -0.22338867, -0.59716797, 1.9560547, -0.35375977, -3.9277344, 1.9267578, -2.0195312, 0.7998047, 0.17541504, -0.95703125, 2.7441406, -1.5, 0.7084961, -0.7036133, -0.8100586, -2.2050781, -1.2578125, 1.9267578, -1.2802734, -2.3398438, 0.88134766, -1.3818359, 0.20056152, -0.3527832, 1.2783203, 3.2148438, 0.8613281, 0.8432617, 0.6958008, 1.4003906, 1.4492188, 2.3203125, -0.3125, -1.1865234, -1.9267578, 2.1738281, 0.8354492, -0.6699219, 1.3994141, 4.2226562, -2.1542969, 0.13415527, -0.20629883, 1.265625, 0.39404297, -1.5761719, -2.3476562, -1.0166016, -0.77441406, -3.3125, -1.0722656, -1.5302734, 1.7441406, 0.95166016, 0.4152832, -4.4179688, -1.0498047, 0.36889648, 0.9472656, -0.9682617, -1.4716797, -1.3173828, -0.44482422, 1.78125, -1.4365234, -0.11431885, -0.7626953, -0.99072266, -2.890625, 2.734375, 0.71875, -0.57373047, -1.0722656, 0.54345703, 1.5615234, -2.4492188, -1.0644531, -0.6796875, 1.25, 0.16149902, 1.1123047, -1.5966797, -2.3710938, 1.4511719, -0.011703491, 0.22998047, -0.22595215, -2.1503906, 1.8066406, -0.57470703, 0.7182617, -0.4609375, -2.2246094, 2.0332031, 1.2695312, 1.1113281, -0.45947266, -0.65771484, -1.3642578, 0.3005371, -1.5742188, -0.74658203, 2.1621094, 0.75439453, 0.75878906, -1.2958984, -1.0693359, -0.7602539, -1.0673828, 1.4492188, -0.5942383, -0.8095703, -0.25512695, -3.1386719, -0.052764893, -1.2089844, -2.1386719, -1.4853516, 0.1015625, 2.15625, 1.4853516, 1.3876953, -0.7216797, 1.2460938, -2.1621094, 0.32128906, -1.359375, 0.9550781, -0.8510742, 0.43286133, 1.7392578, 0.18371582, -0.6958008, 0.61621094, 2.8613281, -1.1162109, 1.890625, 0.7910156, 1.0205078, -2.4277344, -0.16906738, 2.9433594, 1.3417969, 0.18359375, 1.3867188, -0.39892578, 1.8193359, 2.2363281, -0.5625, -0.5522461, -0.91308594, 0.19909668, -0.85791016, -0.9824219, 1.3564453, -0.46142578, 0.16174316, -1.0380859, 2.0722656, 1.8544922, 1.0605469, -1.8544922, 2.7890625, -0.4189453, 0.26831055, -0.28027344, 1.7041016, -0.52978516, 1.5380859, -0.014266968, -2.3632812, 0.53515625, -0.110961914, -0.6791992, 0.41259766, 0.22839355, -1.2265625, 3.1660156, 0.43920898, -3.3476562, -0.15588379, 0.10595703, -1.5126953, 2.6816406, 1.3291016, 2.3769531, 1.8476562, -0.5683594, 0.8925781, 1.7314453, 1.7246094, 0.3334961, -1.5488281, 1.8349609, -1.8232422, 0.12927246, -2.2285156, -0.17956543, -1.0742188, -0.30371094, 0.40356445, 5.1640625, -0.38378906, -3.0488281, 4.421875, -2.4980469, 0.95996094, 1.3154297, -1.5351562, -1.2763672, -0.9980469, 0.7597656, 2.5527344, -1.2128906, 1.4833984, -0.5214844, -0.2734375, -0.19506836, 1.3544922, -0.027908325, 2.0976562, -0.6899414, 0.11407471, -1.8652344, 0.4621582, -2.5, -1.328125, 2.1425781, -1.8701172, 1.3339844, -0.39648438, 1.0527344, 1.3535156, -0.41723633, -0.67041016, 0.26708984, 2.15625, -0.79296875, -1.0546875, 0.3942871, -0.63720703, -1.3642578, -0.49267578, 1.2587891, -2.265625, -1.2509766, -0.87841797, -1.0683594, -1.4541016, -0.6269531, 0.15258789, 1.265625, 0.9536133, -1.2480469, -0.58984375, -1.4873047, -3.6464844, -1.109375, -0.12487793, -1.9179688, -0.01689148, -0.48583984, 2.9628906, 0.23950195, -5.0429688, -0.5019531, -0.9682617, -1.7255859, 1.9941406, -2.7089844, 1.0185547, -1.1113281, 0.88134766, 0.1739502, -0.16357422, 0.0041770935, -0.3684082, -0.40771484, -3.3378906, 0.6279297, -2.6738281, 1.7958984, -0.31591797, 0.22851562, -1.9365234, -0.32836914, -0.22363281, -0.98828125, 4.6054688, 0.78271484, -0.15881348, -2.7167969, -0.23352051, 1.234375, 0.14013672, -0.5830078, -1.3349609, -0.35302734, -0.68359375, -1.2949219, -2.7050781, 0.9526367, 0.60009766, 1.7167969, -0.60595703, 1.1533203, -0.5175781, 1.2460938, 0.25195312, -0.4333496, -1.0791016, -0.8076172, -0.5444336, 0.7832031, -1.8798828, -2.4765625, -1.2900391, -1.2060547, 0.9589844, 2.375, -0.32373047, 0.34033203, 1.4931641, -0.26098633, 0.26513672, 1.859375, -2.6191406, 1.0478516, -1.1259766, -1.3916016, 2.4003906, -1.3291016, -3.25, -0.93359375, -1.3349609, 3.7363281, -0.9863281, 2.828125, -0.6484375, 0.23352051, 1.9794922, -0.33154297, -0.9819336, -2.4570312, -0.027923584, 2.0292969, -2.1738281, -1.0507812, -0.35546875, 0.77441406, -1.7402344, -2.5839844, 1.5615234, 0.8173828, 2.8867188, 0.35351562, 0.021362305, 0.013076782, 0.21484375, 0.2919922, 0.63183594, 0.84375, 0.84472656, -2.4296875, 2.4023438, 1.7548828, 2.3085938, 0.48486328, 0.94433594, 4.1757812, 0.80078125, -0.82910156, -0.33154297, -0.33740234, 0.5654297, 1.6972656, 0.9897461, 1.8720703, -0.27539062, 0.14941406, 1.09375, -1.4736328, -0.6425781, -1.2392578, -0.80859375, 1.2470703, 0.5913086, 1.3457031, -0.9560547, 0.8149414, -0.46899414, -1.8544922, 1.4501953, -2.1757812, -0.3972168, -0.8300781, -0.9633789, -0.74365234, -1.9511719, 2.8769531, 0.6308594, -2.6523438, -1.3251953, 2.0703125, -0.4958496, -2.8710938, 0.29345703, 0.9682617, -1.046875, 1.3300781, -1.4707031, -1.2177734, 1.4199219, -2.4394531, 0.49853516, 1.2617188, -0.8457031, 0.91015625, -1.1708984, 1.0732422, 1.7177734, 1.7792969, 1.4882812, 1.4248047, -0.66503906, -0.1274414, -1.6044922, 0.6142578, 0.123168945, -1.1601562, -1.2304688, 0.73339844, 0.6328125, 1.7255859, -0.49731445, 4.1679688, -0.89404297, -2.0761719, 1.8154297, -3.5800781, -1.2001953, -3.71875, -4.1171875, 1.4160156, -0.7260742, 0.96875, 2.2929688, -0.84765625, -0.94873047, 0.9350586, 0.22497559, -2.1796875, -1.4648438, -0.6977539, 0.36108398, -0.9223633, -2.4472656, 2.2636719, -0.021728516, -2.3496094, -1.2998047, 0.42822266, 0.19665527, 1.5673828, -0.08935547, -1.5966797, -0.2512207, 0.08605957, 0.39379883, 1.6855469, -1.2109375, 1.3818359, -1.7324219, 0.5488281, -1.3125, 2.1113281, 0.11932373, 0.47070312, 1.7988281, 1.1474609, 0.6455078, -0.4074707, -0.08532715, 0.17199707, 1.9140625, 0.38623047, -2.6953125, -0.14746094, 0.25317383, 1.9746094, -0.60498047, 1.5654297, -0.2434082, -2.6347656, -0.20825195, -0.26782227, 1.0458984, 2.8339844, -0.48413086, -1.4970703, -0.5625, 1.0673828, -2.5996094, -1.015625, -0.29223633, 1.2373047, -1.46875, 0.90771484, -0.43603516, 2.0371094, -1.9980469, -1.1513672, -2.7578125, 0.20361328, 2.0644531, 0.16552734, 2.8398438, -3.0410156, -1.5605469, 2.2207031, -1.2011719, 0.37329102, 2.1152344, -0.9824219, 0.38745117, 1.0263672, 0.96728516, -0.83691406, -0.0030326843, 1.2255859, -1.8759766, 0.24084473, -0.2121582, -1.2148438, -1.1728516, -1.1748047, 2.28125, 0.8222656, 1.3066406, -2.6289062, -1.2324219, -0.88720703, 0.21691895, -2.2929688, 0.17163086, -1.5019531, -0.42211914, 3.1464844, 1.3847656, 2.0175781, -0.49414062, 0.019744873, 0.5395508, 2.4921875, -1.4794922, 0.9277344, -0.12988281, -0.28637695, 0.1038208, -0.97265625, 2.0429688, 2.6835938, -0.0748291, 1.8066406, 0.28637695, -2.859375, 1.6435547, -0.8129883, -0.2298584, 0.00970459, -2.5703125, -1.5947266, 1.6591797, -0.22302246, -3.234375, -2.0761719, 3.2539062, -0.109436035, 1.1240234, 1.4023438, -1.8408203, -1.2841797, -2.4023438, -1.1103516, -1.6865234, -2.640625, 0.8720703, -0.33740234, -1.4794922, -2.4257812, -0.8144531, 2.7421875, -0.8286133, -1.2197266, 3.5273438, 0.2800293, -0.28710938, 0.5883789, -1.0556641, -1.7705078, -0.30981445, 3.3632812, 0.5419922, 1.9980469, 1.3554688, 3.8496094, -0.7832031, 3.3457031, -1.9179688, 2.0839844, -2.25, -0.7861328, 1.3037109, -1.7597656, -0.5161133, -1.765625, 1.0048828, -0.30126953, 1.7246094, 1.5253906, -1.3476562, -1.7890625, 0.24182129, -1.2177734, -1.8271484, -0.6020508, -0.38110352, 0.49829102, -0.8852539, -1.2158203, 0.2298584, -0.82421875, -0.06628418, -0.6147461, 0.093322754, -0.99365234, -1.2568359, 0.019927979, 0.1262207, 0.46240234, 0.73046875, 1.5068359, 0.0715332, 0.4560547, -0.9506836, -2.828125, -1.6875, 1.7929688, -1.5429688, 1.3261719, 1.2070312, 0.44799805, 1.3125, 1.046875, 0.74658203, -2.671875, 1.7441406, -0.15393066, -0.103515625, 2.6269531, -0.3166504, 2.1171875, 0.25634766, -0.5463867, 1.3691406, -2.7988281, -0.37670898, 1.2597656, -1.2851562, 0.7939453, 1.5195312, 0.6748047, -0.21105957, 1.9785156, 0.21960449, 2.359375, 0.50341797, -0.79785156, -0.5239258, -1.8779297, -3.3105469, -1.6738281, -1.7988281, 0.0031547546, -1.3632812, 1.4785156, 1.0214844, 0.8769531, 1.0625, -0.62890625, 0.9946289, -1.1044922, 0.9770508, 0.4260254, 1.9433594, 1.8037109, -1.7734375, -2.3925781, -4.6054688, 1.0458984, 1.6230469, 0.5439453, -1.8583984, -0.13293457, -2.5234375, -0.20080566, 1.0322266, 1.9853516, 0.6201172, -0.1739502, -0.80810547, 1.2236328, 2.2226562, -1.5029297, 1.7958984, 0.96875, 2.6328125, -1.5048828, 3.7265625, 1.7402344, -2.5136719, 4.9726562, -2.1933594, -0.78808594, -0.38061523, -0.18286133, 1.3701172, -2.2617188, 0.37402344, -1.3125, 0.43823242, -3.2519531, 2.6992188, 0.89404297, 0.009208679, -1.1074219, 0.8696289, 0.33764648, 1.4736328, 2.1367188, 0.92626953, -0.71875, 0.2590332, 0.93359375, -0.5415039, 2.1992188, 0.36010742, -0.30029297, -0.5864258, -1.2021484, -0.8588867, 2.7207031, -2.5449219, 2.4394531, 2.3164062, 1.8662109, 2.5761719, 0.96972656, 2.40625, 1.3037109, 3.2929688, 1.7197266, -0.49169922, -0.9086914, 1.5742188, 2.4882812, -0.16381836, -1.9833984, 0.9277344, 0.8017578, 0.33862305, -0.68066406, 0.8076172, 0.5800781, -1.0693359, 0.86328125, 0.1529541, 1.7255859, -1.234375, 0.019882202, -1.8261719, 0.9116211, -0.5073242, 1.8242188, 1.2939453, -1.6533203, 1.3349609, -0.46069336, -1.3291016, -1.4042969, -1.9414062, -0.23449707, -0.23742676, 0.67333984, -1.2861328, 1.75, 0.5410156, -0.48364258, 1.3564453, 2.5957031, 1.2294922, 3.296875, 0.3972168, -0.6118164, 0.6381836, 0.24206543, 2.4882812, -2.3203125, -1.8525391, 0.36669922, -1.4736328, -1.7802734, -1.0634766, 1.0634766, 1.2539062, 1.3496094, 0.95458984, -1.7539062, 0.6357422, 0.4013672, 1.8271484, -2.6582031, 0.2980957, 1.0322266, -2.3105469, -2.0253906, -0.2841797, 0.4873047, 1.2539062, 0.8535156, -2.15625, 0.8071289, -0.30786133, 1.5136719, 1.5419922, 1.4365234, -1.3759766, 0.82177734, -1.9814453, 3.3125, 1.1787109, -0.6015625, -1.5576172, 3.7480469, 1.3955078, -0.24267578, 0.7651367, -2.5820312, -0.09564209, -0.5756836, 0.9980469, -0.3178711, -3.6074219, -0.20324707, -0.30932617, -1.4003906, -0.23693848, -2.1171875, 1.1230469, 2.8554688, 2.1054688, 1.8212891, -0.096191406, -1.84375, 1.9121094, -1.8037109, -2.6777344, 0.93115234, -0.11907959, 1.9248047, -0.13110352, -3.1132812, 2.7929688, 2.9648438, 1.2529297, -0.45703125, -0.6640625, 0.08862305, 1.3642578, -0.1586914, 2.7089844, -1.4716797, -0.56933594, 1.6455078, -0.38598633, -1.1630859, 1.8886719, -0.8886719, -1.1835938, 0.055023193, -0.060516357, 0.33618164, 3.0527344, -1.6123047, -0.30004883, 3.0566406, 1.1044922, 1.0976562, -3.0976562, -3.3671875, -0.12487793, 0.32885742, 2.5566406, -1.0820312, -0.4794922, 0.37695312, -0.45532227, 3.2441406, -0.29492188, -0.63916016, -0.875, -2.5449219, 1.2675781, -0.19824219, 2.2324219, -0.13476562, 0.32470703, 0.625, 0.58447266, 0.22045898, 0.49414062, 1.8974609, 3.7636719, -0.115722656, -3.0351562, 1.2744141, -1.2792969, 2.5351562, 1.6337891, 0.053955078, 1.0830078, -0.6230469, -0.6401367, -3.3671875, -1.0322266]}, "B00GJEPTJS": {"id": "B00GJEPTJS", "original": "Brand: Char-Griller\nName: Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite\nDescription: \nFeatures: KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking\nLARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once\nBEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8\" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks\nEASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan\nDIMENSIONS - 31\u201dL x 45\u201dW x 47\u201dH, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin' Stone, both sold separately)\n", "embedding": [-1.8330078, 0.4111328, 2.0019531, -0.83740234, -1.6572266, -0.9746094, 1.1474609, -0.7451172, -1.3046875, 2.9921875, 2.0917969, -1.5791016, -0.51220703, -1.6083984, 0.80371094, 1.0214844, 1.5498047, 1.3613281, 2.9238281, 0.83203125, 1.25, 1.1689453, 1.0205078, -0.8339844, 2.6523438, 0.063964844, 3.9980469, -1.9609375, 2.4785156, -1.4160156, 1.7324219, -0.19641113, -0.58740234, 1.4111328, -1.1865234, 1.453125, -0.90722656, 2.4101562, -2.484375, 1.7568359, -1.5341797, -0.024307251, 1.5332031, 1.5107422, -2.9179688, -3.0644531, 0.2614746, 1.1708984, 0.86035156, -1.75, 1.125, 1.546875, -0.5029297, -0.2626953, -1.8916016, 2.7480469, -0.7949219, -1.6699219, 0.10290527, 0.012863159, -1.0029297, 0.6542969, -1.2939453, 2.8007812, -2.1210938, 0.9995117, 0.7807617, -0.81933594, 0.80566406, -1.7539062, 1.3662109, -0.1048584, -1.9033203, -0.2578125, -0.6777344, -0.42919922, -1.9570312, 1.1230469, 0.43896484, -0.66308594, -2.140625, 1.2568359, 0.038085938, -2.1464844, -0.97998047, 1.0546875, -0.02104187, -1.0888672, 0.3930664, 0.28979492, 1.2070312, 0.27124023, -1.0908203, -2.96875, 3.9824219, -1.6855469, 0.22998047, 0.7495117, -1.4804688, 0.2097168, -1.1064453, -0.8798828, -1.0751953, -0.8989258, -2.9042969, 1.1962891, 1.2324219, 1.0810547, -2.2070312, 2.1230469, -1.9248047, -0.109069824, 0.24072266, 2.1054688, 1.5019531, 0.5864258, 0.9086914, 1.2841797, 0.09918213, 0.32250977, 3.8515625, 0.85839844, -1.2060547, -1.3916016, -0.6928711, -0.66064453, 0.20129395, 0.9658203, 6.7773438, -0.5307617, 1.2646484, -0.14013672, 2.2539062, 1.0322266, -1.3330078, -1.8720703, -0.5629883, 0.38305664, -1.4833984, 1.4111328, -1.0957031, 0.032958984, 1.7333984, -1.7148438, -4.015625, -2.3066406, 0.90283203, 0.60791016, -1.2050781, -3.5175781, 1.1767578, -2.7695312, 0.00017666817, 1.1191406, -0.19042969, -2.4101562, -1.0986328, -3.1933594, 0.46411133, -0.8803711, 0.63378906, -1.4433594, 0.16491699, 0.47387695, -0.38745117, -0.49536133, -2.8203125, 2.265625, -0.8510742, 3.140625, -0.7363281, -2.765625, 2.1132812, -2.1425781, 0.8359375, -1.3085938, -0.7055664, -0.26635742, 2.3164062, 1.3017578, 0.093322754, -2.5019531, 1.2109375, -0.2644043, 0.68310547, -0.035491943, 0.18188477, 1.1074219, 0.19458008, -0.953125, 0.3701172, 2.2304688, -0.3869629, 1.2285156, -1.6513672, -0.35888672, -1.7832031, -1.1474609, 1.4472656, 0.082458496, -1.3076172, 0.32739258, -0.96972656, -2.3867188, -0.48291016, -0.7084961, -1.1328125, -1.2480469, 2.6679688, 1.1103516, 1.7480469, -2.1738281, 1.0644531, 1.3222656, -0.89404297, -1.7880859, 0.17272949, -1.4443359, 2.1035156, 2.2109375, -0.17333984, 0.6503906, 0.97753906, 2.7226562, 0.29956055, 2.6660156, 1.9013672, 1.9951172, -2.8867188, -1.0849609, 1.5966797, 0.41577148, -0.36132812, 1.0019531, 0.75341797, 2.4316406, 2.0507812, 1.0791016, -1.8183594, -0.24108887, 0.5888672, 0.10827637, -0.38012695, -2.0449219, -0.29418945, -0.10681152, -1.0615234, 3.2988281, 1.2314453, 0.9921875, -1.0800781, 1.2167969, -0.19567871, -0.06225586, 0.9213867, 0.93310547, 0.1274414, 0.8022461, 0.17175293, -2.8300781, 1.6347656, -0.3972168, -0.9472656, 0.32714844, -0.10003662, -0.8442383, 2.9121094, 2.2578125, -1.3554688, -1.9521484, 2.46875, -0.47607422, 0.36499023, -0.60546875, 1.6806641, 1.9257812, 0.73876953, 0.9604492, 1.8574219, 1.2548828, -0.46289062, 2.0761719, 1.0595703, -2.4179688, -2.0410156, -2.0527344, -1.3691406, -1.9365234, 1.0966797, 2.6894531, 3.6171875, 1.546875, -3.2988281, 3.8574219, 0.96728516, 0.93652344, 1.2509766, -0.8095703, -0.8569336, 1.3242188, 0.1418457, 1.0908203, -0.8930664, -1.6347656, -3.5429688, -1.2988281, 3.6582031, -0.6972656, 0.21789551, 1.234375, 0.14501953, 0.921875, -0.44921875, 1.5751953, -0.9658203, 0.14538574, 1.4111328, -3.7460938, -0.5317383, 0.61816406, 1.8691406, 0.3881836, 0.27416992, -2.1289062, 0.4567871, 2.4589844, -1.2470703, 1.0478516, 0.73535156, -2.0703125, 0.13989258, 0.044952393, 0.86376953, -2.0195312, -1.8837891, -1.2519531, -1.2519531, -2.3632812, -1.1220703, -1.6005859, -0.2446289, 0.9824219, -1.4404297, 0.2800293, -1.7792969, -4.1757812, -0.47070312, -0.2064209, -0.77441406, 1.4462891, -1.0234375, 0.62158203, 0.38012695, -5.7929688, -0.9091797, -0.20178223, 0.49780273, 1.1230469, -2.3164062, 1.03125, 0.88964844, 0.35107422, -0.44213867, -0.43017578, 1.4892578, -0.28393555, -0.33374023, -0.79296875, 1.2910156, -2.9140625, 0.38305664, -0.6152344, -0.97314453, -2.2226562, -1.890625, 0.060760498, -1.1279297, 3.5273438, -1.5273438, -0.27783203, -0.33154297, -1.0927734, 2.0488281, 0.38378906, -2.5058594, -1.6738281, -0.084228516, -0.57714844, -2.3886719, -2.5136719, -1.5634766, 0.62158203, -0.1381836, -1.265625, 1.1816406, -2.2128906, 1.8701172, -3.5390625, -0.11767578, -2.9707031, 0.49731445, -1.9091797, -0.22155762, -2.6367188, -1.2841797, -1.8525391, -3.078125, 0.97265625, 2.1210938, 0.26489258, 1.4814453, 1.6767578, 1.7412109, 2.6152344, 0.27026367, -3.3183594, 3.4511719, 1.7978516, -0.42138672, 1.0898438, -1.2041016, -3.34375, -2.7832031, -0.11425781, 4.0625, 0.9667969, 1.6943359, -0.78222656, 1.7285156, 1.5302734, 0.6669922, 1.6669922, -0.5239258, 1.4189453, 3.1582031, -0.95947266, -2.0996094, 0.6801758, 1.9404297, -1.5546875, -0.95458984, 2.9433594, 0.5571289, 2.8125, 1.1054688, 0.89501953, 0.30541992, -0.81103516, 3.1035156, 0.4169922, 1.9306641, 0.96435547, 1.4189453, -0.39038086, 0.9980469, -0.18322754, 0.13879395, -0.13879395, 3.2324219, 1.8134766, 0.0993042, -1.4550781, 0.05996704, 0.038085938, 1.6474609, -0.84228516, 2.7304688, -1.5830078, 1.4775391, 0.28027344, -0.60546875, 0.74853516, -1.6337891, -0.57910156, 2.0917969, -0.20251465, 0.82666016, 1.3076172, 2.2910156, -0.50439453, -0.4885254, 0.45825195, -2.9414062, -0.58496094, -0.6879883, -0.46728516, -2.2675781, -1.8369141, 1.984375, -0.55322266, 0.14538574, -1.5449219, 3.078125, 1.7216797, -0.28930664, 0.375, 2.1816406, -1.1767578, 1.2480469, 1.234375, -1.6630859, 1.8134766, -2.1699219, 0.5703125, -0.9458008, -1.1347656, -0.0793457, -0.077941895, 1.6777344, -0.8046875, 2.4589844, -1.0361328, -0.93310547, -1.2099609, 0.11773682, -3.8359375, -0.48291016, 0.53759766, -3.4980469, -0.25634766, 1.9423828, 0.023345947, 0.45214844, -1.3867188, 2.7480469, 0.00040483475, -1.0117188, 2.9804688, -1.5214844, -1.6152344, -2.5703125, -4.4570312, 0.68652344, -1.0458984, 0.55859375, 3.2324219, 0.9458008, 0.94628906, 3.3203125, 0.9794922, -2.8808594, -1.4267578, -3.4628906, -1.2197266, 0.05734253, -1.7890625, 1.3291016, 0.8496094, -3.1972656, -1.7675781, -0.37402344, -2.2070312, 1.3681641, 1.1601562, -2.1523438, 0.5996094, -1.3242188, 1.0673828, -1.5166016, -0.50683594, 1.0361328, -1.3037109, -0.37890625, -1.4824219, 1.1757812, 2.7910156, -1.0351562, 2.796875, 0.81103516, -0.3239746, -1.0273438, -0.20385742, 0.99316406, 2.8339844, -0.85791016, -2.2441406, -2.2050781, 0.5253906, -2.0195312, -1.6904297, 1.2900391, 0.10626221, -1.7246094, 0.86083984, -0.6044922, 1.734375, 2.7734375, -1.6025391, -0.96435547, -0.21118164, -1.7705078, -1.5693359, -0.37036133, 1.5478516, -0.96972656, -0.3491211, 1.7773438, -2.2460938, 1.6611328, -0.32714844, 1.3632812, -2.9648438, 2.1171875, 1.5449219, 3.1699219, 4.1367188, -1.1220703, -0.26000977, 0.796875, 0.0087509155, -0.7949219, -0.015312195, -0.33642578, 0.984375, 0.6147461, -0.070373535, -1.4902344, -1.4404297, 1.3896484, -0.5214844, 1.5, -2.9785156, 1.4912109, -2.8164062, -1.1513672, 0.37670898, -0.6713867, 2.6074219, -0.49438477, -0.085632324, -0.050689697, 0.2512207, -1.7958984, 1.7792969, -1.3515625, 0.4477539, 1.2138672, 0.6333008, 1.2851562, -2.4648438, 0.5966797, -0.5419922, 1.8564453, 0.34301758, -0.26123047, 0.9111328, -1.1669922, -1.5644531, -0.6196289, 3.4121094, 2.1640625, 0.041656494, 4.0820312, 1.421875, -1.7617188, 0.7338867, 1.0654297, -2.3867188, -1.6425781, -1.40625, -1.4169922, 1.2617188, -0.40429688, -4.375, -2.53125, 1.6728516, 0.26733398, 2.9082031, 0.859375, -3.0546875, 1.1259766, -1.9707031, -1.3496094, -2.1953125, -1.4326172, 0.31152344, -0.4765625, -0.82910156, -2.0136719, -0.50878906, 4.1757812, -3.1777344, -1.8212891, 1.8457031, -0.8964844, -0.8457031, 0.03778076, -2.1542969, -3.3574219, -1.5498047, 2.3164062, 2.0273438, 1.6269531, 0.8071289, 2.1386719, -1.6679688, 0.7001953, -1.4052734, 1.7978516, -3.1484375, -0.62841797, 0.4272461, -2.0722656, 1.3066406, -1.4003906, 1.15625, -0.97021484, 2.3378906, 0.50878906, 0.1161499, -0.8491211, 1.4199219, -2.921875, -2.0820312, -2.9238281, 1.6396484, 1.53125, 0.097961426, 1.0458984, 0.6699219, 1.2607422, 0.9848633, -2.0839844, 0.13183594, -0.4465332, -0.83251953, -1.6152344, -0.35986328, 0.2553711, -1.1279297, 0.12145996, 3.3144531, 0.62841797, -0.38256836, -2.3496094, -2.0078125, 1.828125, -2.1992188, -0.08886719, 0.74902344, 0.34472656, 1.7167969, 0.9370117, 1.5048828, -1.1337891, 2.7949219, -1.21875, -0.15258789, 1.0771484, 0.46704102, 0.9692383, -0.5107422, -3.015625, -1.3242188, -1.7099609, 1.71875, -0.09643555, -0.30151367, 0.034606934, 1.2382812, -0.93603516, 0.56689453, -0.7626953, 1.0371094, 1.3603516, 0.31152344, -0.515625, 1.1982422, -1.6884766, -2.5136719, 0.5283203, -1.1386719, -0.27954102, -2.4023438, 0.8857422, 0.72216797, -1.8369141, 1.7744141, 1.2011719, 1.0400391, -1.5751953, 0.52783203, -1.4101562, 1.6630859, 1.8476562, -3.0234375, -1.7744141, -1.5556641, -0.062316895, 0.042541504, -0.097595215, -3.2832031, 0.64453125, -0.0022945404, -0.1282959, 1.7763672, 2.9316406, 1.9814453, -2.5195312, -0.8779297, 2.1425781, 1.9882812, -0.52978516, 2.2421875, -0.026504517, 2.703125, -1.4394531, 3.3769531, 0.8774414, -1.0517578, 0.6098633, -0.8720703, 0.36108398, -0.016235352, -0.42456055, 1.6826172, -2.9042969, -2.3789062, -1.6738281, -0.62060547, -1.359375, -0.703125, 1.1933594, -1.3222656, 1.5068359, 2.0175781, -0.8071289, 4.1328125, 1.6162109, 1.5175781, 0.28710938, 0.24890137, -1.0322266, -0.74609375, 0.8901367, -1.8779297, 1.4794922, 0.30541992, 0.14831543, -0.5957031, 1.8896484, 1.4853516, 1.0390625, 1.9316406, 1.8212891, -0.21789551, 2.1523438, 1.7109375, 0.039764404, 1.4023438, 4.0390625, -0.93896484, 1.1220703, 0.52441406, 3.6425781, 0.30273438, -2.6777344, 2.734375, -0.5029297, -0.05102539, -0.6845703, -0.9243164, 2.3984375, -2.6699219, 1.3886719, -1.3974609, -0.39013672, -2.3183594, -1.4570312, -0.98339844, -0.05267334, -0.8066406, -0.82958984, 2.1523438, -0.12597656, 0.7861328, -0.014198303, 1.3212891, 0.70751953, -3.9003906, -0.89404297, 1.5488281, -0.13757324, -1.3417969, 0.8261719, 1.3564453, 1.6494141, -0.42163086, 0.69921875, 0.4230957, 1.3955078, 0.59765625, 0.0030097961, -0.65185547, -0.15795898, -0.19226074, -2.0644531, -2.6816406, 1.6240234, -0.22961426, -2.0273438, -1.8349609, 1.4316406, -0.060943604, 2.4101562, 1.4716797, -1.6523438, 2.3164062, -0.21899414, 1.3808594, -2.0722656, 1.5009766, -0.6855469, -3.5429688, -3.0332031, -1.109375, 0.8544922, 2.7304688, 1.1855469, -0.4260254, 0.8515625, -0.22631836, 3.3710938, 1.7978516, 2.9453125, -0.87353516, 0.7529297, -0.36499023, 1.5566406, -0.19799805, 1.890625, -0.40893555, 0.79833984, 0.5214844, 2.3554688, 1.53125, -0.9555664, -1.6162109, 0.041412354, -0.49023438, 0.16894531, -1.2695312, -1.7441406, -2.3691406, -0.13110352, -1.5283203, -0.7651367, 2.2226562, 2.0722656, 0.5366211, 0.41967773, 0.16845703, -2.5898438, 1.2988281, -0.20996094, -1.5117188, -0.30859375, 0.8076172, 0.85791016, -0.22814941, -1.9609375, 1.7080078, 1.3320312, 2.2675781, -0.43017578, 0.41308594, -0.29101562, 0.6040039, -1.4755859, -0.43945312, -1.4404297, -1.4619141, 1.1044922, -0.9375, 0.3203125, 1.7646484, 0.125, -0.8173828, -0.15820312, 0.3852539, -0.26098633, 0.6923828, -1.1845703, 2.4804688, 2.8847656, 1.0068359, -2.3867188, -0.9550781, -3.2695312, -0.92822266, -1.7333984, 3.0585938, 0.11444092, -2.3652344, 1.2138672, -0.3173828, 2.1777344, 1.2333984, -0.9326172, 1.9042969, -1.6787109, 2.40625, -0.74658203, 0.9951172, 0.7636719, 2.0488281, -1.0566406, 0.9682617, 0.56347656, 1.2460938, -0.59814453, 0.80029297, 0.9169922, -3.2441406, -0.114746094, 0.14453125, 3.5136719, 0.515625, -0.7050781, 0.86621094, -0.16333008, -0.84472656, -2.0976562, -3.4101562]}, "B08HPTJG1W": {"id": "B08HPTJG1W", "original": "Brand: Safe 'n Easy\nName: Safe 'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)\nDescription: Safe \u2018n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe \u2018n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe \u2018n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.\nFeatures: Professional Formula \u2013 Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food.\nSafe and Easy to Use. Spray On, Let Set. Rinse Off \u2013 Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly.\nPowerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting \u2013 Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily.\nMade In The USA \u2013 Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers.\nSatisfaction Guaranteed \u2013 Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you\u2019re not completely satisfied just contact us for a full refund.\n", "embedding": [0.44335938, 1.2841797, 2.6933594, -1.5703125, -0.3071289, 1.4775391, 1.515625, -2.0546875, -0.9902344, 2.1386719, -3.0117188, -0.3996582, 0.22363281, -1.5957031, -0.65234375, 1.0996094, 0.26171875, 2.4785156, 3.09375, 2.3730469, 1.1074219, 1.9091797, 1.1386719, 0.4921875, 0.4921875, 0.019592285, 4.078125, -2.6347656, -0.11566162, -2.0449219, 1.1455078, 0.2836914, -0.7441406, 1.2382812, -4.2070312, 1.0136719, -0.890625, 0.60253906, -1.7490234, 0.17175293, -1.703125, -1.6494141, 1.7509766, 0.18920898, -4.0507812, 1.6738281, -0.5336914, 1.1630859, 1.5751953, -2.0664062, 0.89160156, 1.3691406, 1.6748047, -0.47094727, -1.625, 2.2382812, 2.1269531, -3.0332031, 0.3852539, 0.6928711, 1.6728516, 2.6914062, -0.69433594, -0.12780762, 2.2109375, -1.1748047, -0.0006656647, -1.2109375, 1.578125, -4.171875, 0.18054199, 0.67529297, -1.9375, -0.52685547, 0.15039062, 1.7910156, -1.65625, 1.1113281, 0.91796875, 0.20800781, -0.7705078, 2.9082031, -1.0976562, -2.2929688, -1.0556641, 0.9482422, -0.22167969, -0.23693848, 1.6054688, -0.7080078, -0.41308594, 3.5800781, -1.0351562, -4.4453125, 2.6582031, -2.0566406, 0.359375, 0.43579102, 0.4091797, 0.98535156, -1.2431641, -1.6591797, -1.4287109, 1.9931641, -1.9833984, -0.022857666, 2.2382812, 2.4472656, -2.7910156, -0.0793457, 0.16259766, 0.33642578, -1.0244141, -0.28588867, 1.2158203, 1.2568359, -0.2697754, 1.5722656, 0.72265625, 1.5400391, 1.3662109, -1.9794922, 0.88964844, -0.7011719, -0.24938965, -1.1767578, 1.1289062, 1.5136719, 1.0576172, -0.8095703, 0.9580078, -0.8623047, 0.57421875, -1.1933594, 0.76904297, -1.0029297, 0.17163086, -3.1269531, -3.40625, 0.23999023, -1.8671875, -0.7631836, 1.2216797, -2.4375, -1.7431641, -0.21044922, 0.9716797, -1.3935547, 0.63916016, -1.3144531, 0.2208252, -0.19812012, 0.83740234, -1.796875, 2.0019531, -0.45629883, -1.8613281, -3.2558594, 2.5722656, 3.0878906, 1.5947266, -1.9716797, -0.5361328, -0.10241699, 1.2246094, -0.9472656, 0.3581543, 1.4638672, 1.6289062, 0.85498047, 1.1972656, -2.5644531, 1.2021484, 0.12011719, 1.7070312, -0.2956543, 0.4638672, 3.3105469, -0.57470703, -3.0605469, 0.098083496, -2.0214844, -1.4072266, 1.3085938, -0.17919922, -0.050842285, 1.6855469, 1.2705078, 0.24182129, -2.1328125, 1.2597656, 3.2421875, -0.16479492, 1.4658203, -2.0253906, -0.52685547, -1.0605469, -0.8520508, -0.8178711, 2.5332031, -1.3076172, -2.1796875, -1.4804688, -0.3515625, -0.6401367, -2.6914062, -0.8618164, 1.1630859, 0.54785156, 0.4255371, -0.08337402, -2.6894531, 1.1630859, -0.33032227, 0.92871094, -1.7763672, -1.7431641, 0.072387695, 1.2792969, 1.8837891, -1.9707031, -0.105773926, 0.22253418, 3.0976562, 0.1694336, 2.3535156, -0.07342529, 0.58740234, -1.7636719, 1.2480469, 1.1435547, 0.79296875, -1.1435547, 0.37841797, -0.009880066, -0.21911621, -0.85839844, 1.8925781, -2.3789062, 0.028182983, -0.1743164, 0.92578125, -1.5605469, 0.84375, 0.33032227, -2.2226562, 0.39501953, 2.1230469, -1.2919922, -1.5673828, -0.6928711, 3.6523438, 0.5102539, 0.89746094, 0.39916992, 0.24829102, -0.6645508, 0.83251953, -3.1191406, 2.1855469, 0.7817383, 0.89697266, 1.0332031, 1.0019531, 0.32788086, 1.6777344, 2.6738281, 1.0244141, -0.72314453, -2.8554688, 1.4287109, 0.8125, -0.54833984, -0.73583984, -0.8276367, -0.15270996, -0.6479492, -0.79345703, 0.6044922, -1.3886719, -0.68603516, 0.93310547, 1.6083984, -1.3554688, 1.4560547, 0.24316406, -1.3867188, 0.49023438, -0.8671875, -2.5664062, 4.0078125, -0.6064453, -3.7871094, 0.8730469, -1.0595703, 0.89501953, 3.3183594, -0.26831055, -1.4345703, -0.58740234, 2.5722656, -0.07720947, -0.6254883, 1.9316406, -1.8798828, -0.61865234, 0.69970703, -3.1269531, -1.4980469, 2.7734375, 1.6054688, 1.4550781, 3.0390625, 1.4462891, -1.7490234, 0.22875977, -0.4338379, -1.0849609, -0.50390625, -0.7294922, -0.6323242, 0.91845703, -1.1787109, -2.4902344, -1.1367188, 1.2519531, -1.3222656, 1.9931641, -0.48510742, -2.6152344, 0.33935547, 0.88183594, 0.15881348, 0.7988281, -1.9238281, -0.08538818, -1.4189453, -1.7441406, 1.4599609, -2.28125, -0.59521484, -0.61083984, 0.5185547, -2.2597656, -0.03137207, -1.7871094, -3.8671875, -2.9765625, -0.0949707, 0.45874023, 0.96240234, 0.59228516, 0.7236328, -1.6748047, 1.1347656, 0.18188477, -1.8447266, -0.22607422, -2.4414062, 1.7753906, -0.39575195, -0.5175781, 0.6142578, -0.19628906, 0.83691406, 0.5600586, -1.6738281, -3.7050781, 2.140625, -2.0273438, 0.53466797, -1.5761719, 0.8881836, -0.21679688, -0.44213867, -0.20678711, 0.8911133, 0.93115234, -0.64990234, 1.8183594, 0.5126953, -2.6582031, 1.5400391, 1.0146484, -3.2871094, -0.51464844, 0.89208984, -1.1962891, -0.9086914, -2.8964844, 0.53466797, -1.5400391, -2.9082031, -0.1451416, 3.9433594, -1.1982422, 1.4931641, -1.2568359, -0.08416748, 1.9482422, 1.0947266, -0.53808594, -1.6982422, -0.7270508, -0.4074707, -2.2382812, -2.390625, -0.5292969, 1.0166016, -1.8740234, 0.8310547, 1.3330078, 0.89990234, -0.87646484, -0.12298584, -3.5234375, 2.4003906, -1.484375, -3.1601562, 0.953125, 0.39331055, -0.12133789, -1.6132812, -1.8144531, 1.7890625, 2.0683594, 1.6503906, 0.89453125, -0.37036133, 1.7363281, 0.95458984, -1.9580078, -0.6879883, 1.7539062, 1.7568359, -0.7338867, -2.4140625, 1.4990234, 0.625, -0.059753418, 1.4462891, -0.3635254, 0.9326172, 3.3398438, 3.2519531, 0.90966797, 1.0175781, -0.43774414, 1.9970703, -0.79541016, 0.093688965, 0.3515625, -0.06713867, -1.2119141, -1.0859375, 0.39868164, 0.40649414, 1.6953125, 1.8984375, 3.3769531, -0.8959961, -2.8417969, 0.68115234, 1.1162109, 1.0859375, -1.1835938, 0.3515625, -0.9277344, -0.61035156, -0.79833984, -1.1220703, -0.35864258, -1.7441406, 1.5019531, 2.3417969, 0.69189453, 0.4909668, -1.2900391, 1.5507812, 0.27319336, -2.1738281, -0.69970703, 0.23388672, 0.54589844, 0.1038208, -2.8378906, -0.7246094, -2.4335938, 2.5917969, 0.10418701, -3.8183594, -2.4492188, 2.0644531, -1.3310547, -2.1484375, 0.2376709, 1.9160156, 0.68603516, 1.3203125, -0.24487305, -0.2944336, 3.0703125, -1.3085938, -0.74072266, 1.2646484, -4.3671875, -1.0117188, -2.6015625, 1.25, -0.5644531, 0.68066406, 0.4934082, 2.5996094, -1.5625, 0.78222656, -1.7070312, 1.7900391, -1.4970703, -0.82470703, 0.2536621, 0.86083984, 1.9355469, 1.1464844, 1.7441406, 3.328125, 2.3867188, -0.62646484, 0.6352539, -2.4492188, -1.2617188, -1.0205078, -4.1835938, -0.8120117, 0.50390625, 0.14550781, 1.2275391, 0.38208008, 0.21154785, 2.2988281, -0.91748047, -0.06222534, -0.40673828, -0.4621582, 1.6240234, 0.78222656, 1.2685547, 2.2421875, 0.89990234, -1.9443359, -0.90185547, -2.2050781, -2.2460938, 1.2167969, 0.69384766, 0.53466797, 0.50146484, -1.1054688, 0.64501953, 0.47509766, -0.9116211, 0.30322266, 0.5371094, 0.5229492, -1.5771484, 0.5234375, -0.38671875, 0.28344727, -0.18676758, -0.06213379, 1.4931641, 0.6386719, -2.6855469, -1.4501953, 2.3164062, -0.072265625, 0.3408203, 0.9707031, -0.515625, 1.1035156, -0.82910156, -1.1259766, -0.7626953, -1.6757812, -0.03173828, -0.59765625, 0.7504883, 0.30029297, 1.1650391, -1.0136719, -0.83691406, 0.41845703, -2.6992188, -2.2773438, 0.19616699, -0.78564453, 0.55126953, -0.13989258, -1.8564453, -0.5410156, -0.15124512, -1.1064453, -1.7539062, 2.0917969, 3.0703125, -0.55810547, 1.6103516, -0.9819336, -1.4863281, 1.1484375, -2.0605469, -1.15625, 2.4707031, -0.2364502, -1.9365234, -0.85595703, 0.19372559, 0.2854004, 1.09375, -0.12365723, -2.1171875, 0.24279785, -3.7128906, 2.0390625, 0.37768555, 3.0898438, -0.33740234, 0.2578125, 1.5957031, -2.6503906, 0.11853027, 2.9277344, 0.0713501, -0.030303955, -0.64697266, 2.2539062, 1.7236328, 1.3876953, 1.9580078, 4.0507812, -1.2441406, -0.38549805, 1.1474609, 0.6699219, -3.0585938, 1.3769531, 1.3144531, 0.85546875, 0.036712646, 0.21252441, 2.3691406, 1.2919922, -0.058258057, 0.24865723, 0.32055664, -3.5605469, 1.4775391, 0.86621094, -1.4052734, 0.8388672, -0.2368164, -3.1484375, 2.109375, -0.80322266, -1.8544922, 0.6669922, 1.3535156, -1.1396484, 1.3271484, -2.1738281, 1.3769531, 1.0585938, -0.7426758, -0.6489258, -0.6147461, 0.3322754, -0.64208984, 1.3496094, -0.77001953, 2.5097656, -0.72998047, 3.6972656, -0.8203125, -1.6787109, 0.6879883, -2.0097656, 1.1416016, -0.13305664, -2.2949219, -2.9902344, -1.6318359, -0.39086914, 1.5976562, 2.1054688, 0.8774414, 0.9941406, -0.62109375, -1.015625, -0.73046875, 1.1474609, -0.99658203, -1.4111328, 2.4335938, -3.0644531, 0.4909668, -3.0625, 0.4411621, 1.7021484, 1.4414062, 1.6132812, -2.6777344, -2.1894531, 0.89160156, -1.2236328, -3.4785156, -2.59375, -0.1706543, -0.10003662, -0.25463867, -0.7182617, 0.9350586, 0.29833984, 0.8203125, 2.1230469, -1.1845703, 0.24743652, 0.76904297, -1.6337891, -1.5664062, 1.0078125, -1.3115234, 0.0071029663, -0.060668945, 1.8027344, 1.1835938, -2.171875, -0.8569336, 0.27392578, -2.1191406, -3.9160156, 4.40625, 0.4399414, -1.2441406, 0.9458008, 0.19885254, -3.3261719, 2.6699219, -2.9160156, 0.08666992, -0.5800781, -0.9536133, -0.65722656, -2.015625, -1.5712891, 2.5605469, -1.2578125, 1.3955078, 1.0458984, -0.43115234, 2.1777344, 1.2861328, -1.3056641, -0.26611328, -1.3076172, 2.8652344, 2.6777344, 0.43310547, -0.6035156, 1.9697266, -3.46875, -1.5126953, -0.22058105, 0.57714844, 0.9433594, -2.2695312, -0.05340576, 0.54833984, 0.014274597, 1.1962891, 0.8183594, -1.4130859, 1.1289062, 2.7910156, 0.27514648, 4.3867188, 2.1640625, -0.3762207, -0.47680664, -2.5664062, 0.06732178, 0.8989258, 0.14648438, 1.8964844, -1.171875, -1.6259766, -0.20019531, -1.0185547, 2.8574219, -0.2619629, 2.3222656, 0.5185547, -0.22802734, 1.8066406, -5.2148438, 3.3359375, 1.2480469, 2.9492188, -1.2744141, 2.6171875, -0.6411133, -0.7832031, 0.14538574, -1.4863281, 1.2441406, 0.31469727, -3.7226562, -1.3916016, -2.5175781, -0.6352539, -1.6748047, 1.2734375, -2.265625, 1.5380859, -0.0859375, 0.011817932, 0.28344727, 3.8164062, 0.7578125, 0.43945312, 2.5859375, 1.5751953, -1.8603516, -0.22729492, -0.94677734, -0.3684082, 0.45336914, -3.1503906, -0.4501953, -0.8876953, 0.171875, -1.4892578, -0.5698242, 2.3066406, 0.18078613, -1.2089844, 1.9462891, 1.9052734, 0.8310547, 2.0957031, 2.6484375, 3.921875, 2.2246094, -0.13110352, 1.3212891, 3.5703125, -0.16442871, 0.051696777, -0.62109375, 2.2832031, -1.0029297, 0.41918945, 1.0712891, 0.7265625, 3.0859375, -2.7324219, 0.7685547, 0.07373047, -0.4951172, -0.6689453, 0.6850586, -3.0625, -2.2558594, 1.2255859, 1.0625, 1.4960938, 1.015625, -0.40429688, -1.2148438, 0.08721924, 3.3613281, -4.3632812, 0.46777344, 0.054534912, 0.2626953, 1.8925781, 2.1738281, 0.25585938, 1.5957031, -0.39257812, 2.3203125, -2.1738281, 0.41064453, 2.1503906, -1.5078125, -0.5830078, 1.4824219, 0.6376953, -1.7822266, -1.2285156, 0.18457031, 0.44995117, 0.5180664, -0.6191406, 2.1074219, 1.2539062, -0.08416748, 2.9824219, -1.3730469, -0.2133789, 0.2409668, 2.8945312, -1.6748047, 0.9301758, -2.6835938, -1.1835938, -1.1308594, 1.5625, 0.30249023, 1.9130859, 0.4025879, -3.3886719, 1.7607422, 0.35229492, 0.6171875, -0.42700195, 2.4179688, 0.68066406, -0.48046875, -1.9560547, 2.1796875, 1.8964844, 0.044769287, -3.9589844, 2.0078125, 0.4050293, 0.39233398, 2.6152344, 1.4667969, 2.1210938, -0.9667969, -1.2470703, -0.70654297, -0.34326172, -2.1660156, 0.5385742, -2.7246094, -0.24609375, -2.4570312, 1.0175781, 1.8183594, -0.44702148, 0.9326172, 1.8671875, 0.47338867, 0.66015625, 1.9355469, 0.8671875, -1.5371094, -1.2714844, -2.0839844, -0.8066406, -0.62939453, 0.11468506, 1.2939453, -0.6225586, -1.4111328, -0.35302734, -1.5576172, 0.048797607, 0.36376953, 1.0175781, -2.4140625, 0.36767578, 1.4433594, -0.60498047, 2.7675781, 1.828125, -0.14074707, -0.6459961, -1.7714844, -1.5458984, -1.9814453, -0.9116211, -0.31201172, -1.1513672, 4.3359375, 2.6660156, 0.36987305, -4.2929688, -0.98535156, 1.2783203, -0.92089844, -0.61035156, -0.97998047, -0.3173828, -0.51123047, -0.8823242, 1.3632812, -0.62890625, -1.9287109, -0.9355469, 0.72021484, -0.043518066, 0.40429688, 1.7890625, -0.1665039, 0.027435303, 2.6601562, 1.078125, 4.0195312, 0.7739258, 1.2109375, 1.6181641, 0.109802246, -2.1367188, 1.1757812, -1.2324219, 1.5820312, 0.22998047, 0.234375, 0.44213867, 1.2460938, -0.20275879, 0.68847656, -2.6679688]}, "B07T6SH2Q3": {"id": "B07T6SH2Q3", "original": "Brand: TUYU\nName: RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)\nDescription: \nFeatures: FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer.\nHeavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions.\nCustom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover.\nConvenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank.\nGuarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.\n", "embedding": [1.0322266, 1.8134766, 2.8027344, 0.23901367, -0.55029297, -0.68359375, 0.100097656, -1.3964844, 1.9296875, 2.5253906, 0.9604492, -0.3881836, 0.69628906, -3.6152344, 0.96435547, 0.018859863, 0.1003418, 2.3867188, 3.6308594, 0.7158203, 2.0507812, 0.5571289, 0.8808594, 0.30981445, 0.83935547, -1.3886719, 3.0683594, -1.8720703, -2.2363281, 0.8305664, 1.21875, -0.16955566, -0.14672852, 2.9472656, 0.6347656, -1.4277344, -1.1855469, -0.51123047, -2.7988281, -1.2060547, -3.6367188, -2.1464844, 3.7207031, 0.54052734, -0.36376953, -1.7597656, -1.1845703, -1.9404297, 0.59228516, -1.1337891, 0.26953125, 0.5727539, 1.6826172, 1.7265625, -1.6601562, -0.68896484, -0.5864258, -0.41748047, -0.20056152, 2.1015625, -1.0517578, -1.3164062, -2.0195312, 2.1503906, 0.21618652, -0.08874512, -1.2519531, -1.3662109, 0.9824219, 1.3876953, 2.3164062, 0.16357422, 0.97558594, -0.8652344, 0.86572266, 0.3540039, -1.9267578, 1.125, 2.7011719, -0.30859375, 1.5517578, 3.3769531, -1.390625, -1.4697266, 0.009735107, -0.6118164, -0.8022461, -0.015655518, 0.8198242, 0.33789062, -3.2285156, 1.6152344, -2.1152344, -3.171875, -1.5566406, 0.4753418, 3.3925781, 2.5039062, 3.9042969, 0.46069336, 0.4946289, 0.16088867, -1.3330078, 0.38378906, -3.2226562, -2.2578125, 0.78564453, -2.3027344, -1.5917969, 1.1152344, -0.32788086, -1.0839844, 0.3737793, -1.7773438, -0.2705078, 0.56103516, -0.7597656, 0.35498047, 2.0625, 1.5712891, 3.390625, -1.015625, 0.97509766, -1.4619141, 2.3398438, 0.27075195, -0.79052734, 1.1933594, 2.4160156, -0.6875, 1.0068359, 0.7158203, 0.2602539, 0.045440674, 1.4121094, 0.057891846, -1.5947266, -1.5898438, -2.0742188, 1.2070312, -2.3925781, -1.6142578, 0.9980469, 0.0132369995, -2.7050781, 0.14050293, -1.3398438, 2.4726562, -0.21276855, -2.6523438, 0.50390625, -2.9453125, -0.33520508, -0.78515625, 1.0585938, 0.8857422, 0.13378906, -3.2011719, 1.1474609, 2.84375, 2.9921875, -1.2050781, 0.35424805, 1.4101562, 0.13061523, -3.6523438, 0.7314453, -0.07672119, -0.9199219, 1.3027344, -0.95410156, -2.0605469, 1.1171875, 0.6381836, -0.9873047, -1.4296875, 2.3242188, 0.7270508, 1.828125, -0.28027344, -4.578125, -0.546875, -2.2226562, 0.36987305, -1.1015625, 0.5493164, -1.7792969, -1.6484375, 0.39331055, -1.2636719, -2.1269531, 1.390625, -1.609375, -0.9472656, -1.1474609, -3.0839844, -3.4335938, -1.6074219, 0.13220215, 1.5136719, -1.2695312, -1.046875, -1.7724609, 0.28198242, -1.9296875, -1.7949219, 1.4667969, 0.25830078, 1.5175781, 0.5253906, -0.58740234, -0.19470215, 3.0898438, 0.22705078, -1.8222656, 0.33618164, 1.5976562, 1.3544922, 1.4746094, 1.4013672, -0.74902344, 1.0478516, 1.890625, 2.1445312, 0.5214844, 2.7929688, 1.1552734, 0.2142334, -1.1132812, 0.42504883, -0.2849121, 1.4853516, -1.71875, -0.5004883, -1.1445312, 1.8759766, 0.049316406, -1.9365234, 0.14025879, 0.42016602, -0.33520508, -1.4306641, -1.5878906, -0.83496094, 1.421875, 3.4082031, -0.34570312, 0.67285156, 2.2851562, -1.0537109, 0.51220703, -0.9399414, 0.1381836, -2.7226562, -0.8305664, 1.5107422, 1.4042969, 0.56152344, 0.828125, -2.0976562, 1.0957031, 1.3789062, -0.9838867, 1.0390625, -1.5732422, 0.9995117, 0.8486328, -0.19042969, -2.6992188, 1.1972656, 0.11785889, 0.63720703, -1.2519531, -1.5859375, 2.7910156, 0.060638428, -0.36132812, 1.3574219, 0.017425537, 2.8222656, 1.3681641, -0.87158203, 0.9448242, -3.03125, 1.3828125, 1.4365234, 1.8525391, 0.9794922, -1.9433594, 0.81396484, 2.765625, -0.24060059, -0.56103516, 2.1171875, 3.1328125, 0.10595703, 3.7675781, 0.1171875, -0.13098145, 1.53125, -1.2304688, -0.40307617, -0.9863281, 0.60546875, 0.7314453, -1.6064453, -0.13012695, -1.4355469, 1.2597656, 0.9604492, 1.3417969, -0.49023438, -2.015625, -1.9208984, -0.96728516, -1.1484375, 3.8027344, -2.7988281, -0.07006836, 3.0917969, -1.046875, 0.6308594, -0.43530273, -1.4072266, 0.35839844, 0.3774414, -2.1328125, 0.37548828, 0.70996094, 0.6977539, 0.80126953, -2.7519531, 2.5449219, 0.1373291, 0.75097656, -0.1517334, -2.1484375, -1.5390625, -0.033172607, -1.2792969, 1.2382812, -2.0273438, -0.8198242, 1.7880859, 1.4814453, -1.0644531, -0.7685547, 1.7353516, -2.2011719, -1.0371094, -0.3400879, 1.7832031, -1.3554688, -3.4140625, 1.0654297, 0.040802002, -2.3691406, 2.1835938, -1.2832031, -0.101257324, -0.6230469, 0.7114258, 2.3144531, -0.6044922, -1.1025391, -0.42773438, 0.8330078, -4.3710938, 1.4111328, -2.3046875, 0.42407227, -2.8691406, 0.3569336, -1.6904297, -1.6552734, 2.5351562, -2.2714844, 3.2363281, 2.2089844, 0.39526367, -1.2236328, -2.0078125, -0.77734375, -1.0761719, -2.1875, -1.2265625, 0.91064453, -2.1347656, -0.41723633, -4.5351562, -1.3505859, -2.0371094, -1.0371094, 0.61816406, -1.8300781, -0.4716797, -0.0345459, -0.98535156, -0.093566895, -0.5332031, 2.3242188, -1.6835938, -1.7597656, 0.13977051, -0.092041016, -0.8359375, -0.4074707, -2.1386719, 0.9267578, -1.4082031, 0.23693848, 0.58154297, -1.3085938, 2.4394531, -2.1953125, -3.5214844, -0.35986328, 3.0917969, 2.8535156, 2.8027344, -0.20593262, -1.25, -1.6621094, -0.21398926, 3.1269531, 2.90625, 0.68408203, 2.3261719, 0.2800293, -0.13305664, -0.9692383, 0.9316406, 0.9033203, 0.71240234, 2.9707031, -0.7832031, 0.9238281, 1.6972656, 2.6503906, -3.2890625, -0.35620117, 0.54785156, -1.0400391, 2.9589844, 1.5644531, -2.234375, -0.6723633, 0.86865234, 1.0371094, -0.6386719, 1.8320312, 0.78466797, 1.6728516, 1.2421875, -0.21472168, 1.1162109, 2.3027344, 0.00440979, -2.8574219, 1.4394531, 0.42700195, -2.03125, 0.08935547, 0.31323242, -0.9399414, -0.8623047, 1.9794922, -0.6245117, 0.77441406, 0.36376953, -0.61035156, -0.5517578, -0.46362305, 0.46679688, 0.0121536255, 2.2148438, -0.18688965, -0.8286133, -2.4082031, 0.19042969, -1.2490234, 1.9394531, -0.64697266, -0.5185547, 1.8320312, -3.4570312, -0.24194336, -2.46875, 1.8535156, -0.5722656, 0.13171387, 0.45239258, 1.1328125, -2.0546875, -2.6171875, 0.11627197, -0.44140625, -2.7089844, 4.375, 3.6386719, -2.15625, -0.44702148, -1.2177734, 3.2792969, 2.0449219, -0.21716309, -1.2685547, -1.2138672, 1.0478516, -1.3535156, -0.81884766, 1.5703125, 2.3496094, -2.2480469, -0.40161133, -0.6611328, 1.7734375, 1.4511719, 0.69091797, 0.62060547, 0.7763672, -0.94628906, 2.7597656, 1.2998047, 3.6679688, -0.3540039, 1.9697266, 1.0761719, -0.7734375, 1.1298828, 0.27905273, -3.5859375, -0.7661133, 0.30078125, -1.3134766, 3.2519531, 0.1706543, 0.87353516, -0.24389648, -0.35107422, -2.2890625, -1.4423828, -3.4375, 2.0136719, -2.8691406, -0.4658203, 1.1142578, 0.54345703, -2.3125, -1.265625, -0.546875, -1.9082031, -0.33203125, -0.07647705, 0.3635254, 1.4238281, -1.4121094, -0.72802734, -0.6328125, 1.1953125, -0.1829834, 0.055664062, -1.1357422, -1.1669922, 2.34375, 0.4711914, -0.043273926, 0.20483398, 3.0449219, 0.57421875, -0.86328125, -0.30639648, -0.8647461, 2.2246094, -1.5712891, -3.3007812, -1.7421875, -0.61328125, 0.64746094, 0.37548828, -1.1542969, 0.57958984, 1.2705078, 1.515625, 1.2822266, 1.9511719, 1.1210938, -1.1699219, -2.3691406, 2.3730469, -1.1367188, -0.42626953, -0.43969727, -2.6914062, 0.6850586, -0.59765625, -2.2109375, -1.5644531, -0.025756836, 1.0859375, 1.3369141, -2.4179688, 2.1523438, 1.9462891, 2.4335938, 1.4248047, 0.4724121, 0.111694336, 0.5209961, 2.0527344, 1.7451172, -0.98828125, 0.6821289, 0.6826172, 0.7709961, -0.15893555, -1.7646484, -1.0390625, -1.4365234, -1.5869141, 0.62597656, 0.3203125, 2.3574219, -0.8125, -2.1757812, 0.2775879, -1.4453125, 4.6289062, -3.2929688, 1.2460938, -0.27514648, -1.2910156, -1.3613281, 2.0214844, 2.2460938, 0.51953125, 0.546875, -1.4794922, -2.0078125, 0.13793945, 1.6591797, 1.2207031, 1.0986328, -2.1757812, -0.81347656, 0.03616333, 1.5458984, -0.23754883, -0.9091797, 1.6738281, 2.4375, 0.62841797, 0.4033203, 2.0292969, 0.7163086, 1.7177734, 1.5771484, -0.18798828, -1.3759766, 0.6948242, 1.7148438, 2.40625, -1.8427734, -3.3945312, 1.9853516, -0.18945312, 0.44799805, 2.484375, -0.35302734, -1.1123047, -0.55859375, -3.8769531, -2.1972656, -0.5698242, 0.33740234, -0.82421875, -0.9897461, 1.6367188, -0.44921875, 1.0009766, 1.9306641, -0.17590332, -0.9326172, -0.20373535, 1.328125, -0.8569336, -3.0292969, -0.40722656, -4.078125, 0.04336548, -1.0078125, 0.63183594, -1.1972656, 1.09375, 0.62158203, -3.21875, -0.4399414, -0.9609375, 1.3945312, -1.7421875, 0.1842041, 2.7480469, 0.48120117, -0.55566406, -0.08325195, -0.26586914, -0.76123047, 2.8144531, 1.8515625, 0.22814941, 0.8701172, 0.45483398, -3.7109375, -5.1679688, -0.9824219, 1.1484375, -0.00083875656, 0.81347656, -0.82177734, -0.96240234, 0.63720703, -2.1308594, 0.8725586, -2.0957031, 1.2773438, -2.0390625, -1.4824219, -0.48754883, 0.18005371, 0.62353516, 0.6201172, -1.3505859, -0.35717773, -2.4082031, -2.4101562, -3.21875, -1.46875, -1.1494141, 0.1517334, 1.1826172, -0.49951172, 2.0761719, -0.0036334991, 2.1328125, 0.18798828, 1.6318359, -0.9892578, -0.5048828, 2.4492188, 0.17358398, -1.3955078, 2.0839844, -1.0947266, 2.2246094, 2.2929688, 1.4462891, -2.328125, 0.9814453, 0.2553711, -0.0023021698, -1.4316406, 0.35180664, 1.2880859, 1.3085938, 1.4824219, 1.0556641, -2.1152344, -2.0507812, -1.3984375, -1.6142578, -0.56640625, -2.7050781, -2.1054688, -0.11920166, 0.7265625, 1.3945312, 1.4814453, 0.82421875, 1.4277344, 1.0888672, -2.2910156, 0.7324219, -2.7890625, 2.2148438, 1.0019531, -1.7382812, -2.0136719, -3.1054688, 3.6210938, 1.265625, -0.09442139, 1.5498047, 0.2277832, 0.09222412, 1.3642578, -0.048095703, 1.7197266, 1.3847656, 2.6738281, -1.6005859, 1.7695312, 2.9941406, -0.68359375, -0.63134766, -1.7763672, -0.8540039, -0.27612305, 1.0625, 1.9726562, -2.3867188, -0.2915039, 1.8857422, -0.1027832, -0.16638184, -1.4433594, -0.3022461, -3.1308594, -0.7988281, -1.5214844, -0.87597656, -4.3515625, 2.828125, -0.04647827, -0.24865723, 1.2001953, 0.9663086, -1.1328125, 0.1505127, 2.5214844, -0.88134766, -0.40698242, -1.0644531, -0.81152344, 0.14465332, 1.9931641, -2.9140625, 1.0800781, -1.0703125, 0.82714844, 0.19763184, 1.8115234, -0.09509277, 0.8955078, 1.7988281, 2.3964844, 4.2421875, -0.48046875, 0.59033203, 0.7138672, 1.3945312, 3.0234375, -1.9384766, 0.33129883, 1.3085938, 2.4082031, 3.6855469, -1.5947266, -0.87402344, 0.44482422, -0.78027344, 0.7158203, 0.44262695, 0.9272461, -3.2988281, -0.05227661, -0.28955078, -0.8413086, 1.5039062, 1.4912109, -2.0351562, -2.6621094, -0.27294922, -0.85302734, 1.3486328, -0.97216797, 1.9658203, 1.0009766, -0.19567871, 2.5996094, -0.58447266, 0.7919922, -2.3847656, -3.15625, -0.6484375, 2.3535156, 1.3212891, 1.6474609, -0.38989258, 0.87402344, -0.04397583, 1.6220703, -0.022140503, -0.3215332, 2.1308594, -2.71875, 1.8320312, 2.6679688, -1.3056641, -0.76220703, 0.73779297, 0.70996094, -4.3242188, -0.9355469, -0.20715332, 0.4038086, 0.2277832, -3.1621094, 0.21447754, -0.859375, 0.6928711, -2.2675781, 0.11883545, -0.59033203, -4.578125, 1.1289062, 1.5556641, -1.2958984, 3.9472656, 0.41381836, 0.17211914, 2.5136719, 0.6347656, 0.2388916, 1.2617188, 0.32910156, -0.82373047, 1.0693359, -0.03829956, 2.3574219, 2.4902344, -1.4921875, -0.28881836, 2.0605469, -0.4013672, 0.73291016, 0.5073242, -1.7890625, 3.9492188, 0.44628906, -0.54296875, 0.9711914, -0.7192383, 0.80078125, -0.89697266, 0.171875, -0.121520996, 0.2993164, -0.5185547, 1.8828125, -4.5507812, -0.30126953, 0.5888672, -0.2548828, 1.5908203, -0.07373047, -1.0234375, -0.59472656, 0.27734375, 1.3232422, -3.4609375, 0.24975586, -2.3613281, 0.8491211, -0.87109375, -1.6611328, -1.1630859, 1.2119141, -1.984375, 0.5917969, 1.6914062, -0.5419922, -0.0597229, -0.026062012, -1.7685547, 0.6513672, 2.2011719, 0.25732422, -0.3408203, -0.7675781, -1.5957031, 0.087890625, -0.7163086, -0.66064453, 1.453125, 2.4101562, 2.4277344, -0.6948242, 0.96972656, -1.9550781, -1.2539062, -2.9941406, 2.3242188, 0.7836914, -0.3112793, 0.6274414, 1.0361328, 2.328125, -1.4287109, -0.625, 0.5727539, 0.7729492, 1.1240234, -0.6982422, 1.1064453, 1.4931641, -0.41674805, 1.4306641, 3.4238281, 3.2109375, -3.0097656, 1.3183594, 0.47973633, -2.5917969, -1.6103516, -1.2011719, -1.0957031, -1.5185547, 0.9873047, 2.34375, 4.7695312, 0.9033203, -0.64697266, -2.6953125, -0.2692871]}, "B07HJY1Z4B": {"id": "B07HJY1Z4B", "original": "Brand: Backyard BBQ Unlimited\nName: Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt\nDescription: \nFeatures: Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped\nOur sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You're Going To Want More. Great for the restaurant owner of grill master of the family.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [-1.6357422, 2.2949219, 0.0473938, 0.6220703, 0.26049805, 0.9819336, 2.5546875, -0.31933594, -0.13427734, -0.2524414, 0.5239258, -1.7158203, -1.0478516, -3.0859375, -1.4550781, 1.109375, 1.1679688, -0.21960449, 1.4404297, 0.80908203, 0.108947754, -0.43725586, 1.4492188, 0.7236328, 0.7285156, 0.66845703, 2.8320312, -1.4716797, 1.9316406, 0.042663574, 2.5664062, 1.0371094, -0.022109985, 1.6054688, -2.0957031, 2.5117188, -0.4946289, -1.0498047, 0.03677368, 2.1582031, -1.3789062, -1.1650391, 0.9946289, 1.8125, -3.5351562, 0.80566406, 0.1583252, 0.86816406, -1.9941406, -3.5097656, 0.7998047, 2.5410156, -0.6635742, 0.5292969, -1.2109375, 0.5751953, -0.6220703, -0.25463867, 0.089904785, -0.9082031, 0.7260742, 0.1694336, -0.99365234, -0.9121094, 1.9228516, 0.021957397, -1.9853516, 0.36645508, 1.0693359, 0.15551758, 1.1357422, 0.1038208, -3.9570312, -0.14440918, 0.24926758, 0.0473938, 0.16931152, -0.39160156, -1.4882812, -1.0390625, 1.1289062, 4.265625, 0.3269043, -2.25, 0.046691895, 0.7685547, -3.1523438, -0.9042969, 1.7021484, 0.28735352, 2.3710938, 3.4277344, -2.5625, -3.4257812, 2.1796875, -1.65625, 0.97216797, -0.17553711, 0.78125, 1.3457031, 0.5620117, -0.68310547, 0.5805664, -0.44360352, 1.5742188, 0.44262695, -0.6118164, 0.8041992, -3.1425781, -0.32128906, -1.6875, 2.6796875, 2.4414062, -0.24438477, 2.1933594, -0.5029297, -1.3759766, 1.7050781, 1.9511719, 0.17199707, 2.3300781, -0.9477539, 1.3837891, -0.22351074, -2.265625, 0.05215454, 0.08282471, 2.7167969, 2.5429688, 0.4765625, 1.5927734, -0.56396484, -2.2792969, -2.5351562, 0.19519043, -0.91064453, -0.62158203, -0.38061523, 1.1953125, 2.0839844, -0.2565918, -0.5966797, 1.5869141, -0.84277344, -0.80908203, -1.1962891, -0.7451172, -0.8496094, -1.6181641, -3.2871094, 0.41308594, -0.9423828, -2.0175781, -1.8417969, 3.5703125, -0.99658203, -0.8569336, -0.77441406, 0.28076172, -0.89404297, 0.31713867, -1.1757812, 0.17346191, -0.10961914, 1.7734375, -2.9238281, -3.4199219, 0.41723633, 0.70654297, 2.0664062, -0.40307617, -0.30688477, 3.8769531, -2.4355469, 1.8613281, -0.90722656, -0.14233398, 1.4150391, -0.66503906, 0.39868164, -0.09552002, -0.03845215, 1.1748047, 1.9619141, -1.3320312, -2.1621094, 0.3791504, 0.41577148, 1.3359375, -0.11871338, 3.6503906, 1.3193359, 1.3583984, 2.0117188, 1.0292969, 0.9794922, 0.46264648, -1.6640625, 1.6123047, 0.9902344, -0.2854004, 0.1463623, -1.9892578, 0.10357666, -2.4726562, -1.9697266, 0.70703125, -2.5996094, 2.390625, 0.73583984, -0.2536621, -2.2128906, 0.8701172, 0.97558594, 0.0949707, -1.5234375, 1.2626953, -0.43896484, 1.4560547, 2.8613281, -0.64501953, -0.16320801, 1.4902344, 1.84375, -0.6557617, 0.13562012, -2.0019531, 1.4677734, -0.91503906, 0.20727539, 2.4667969, 2.3300781, 0.2166748, 0.42285156, -2.9453125, -0.2331543, 1.2119141, -3.6230469, -2.1582031, 1.8466797, 1.1171875, -2.2734375, -2.0527344, -3.0820312, 0.6850586, 0.6254883, -2.6796875, 1.9765625, -0.06304932, 0.74560547, 0.4802246, 0.9316406, 0.12573242, 0.4729004, -0.24926758, 1.7001953, -0.8066406, 0.4501953, -3.4414062, 0.67822266, 1.3349609, -0.6088867, -1.5283203, 1.8935547, 0.9628906, 0.6401367, 3.6386719, 1.6748047, -1.0615234, -1.6591797, 2.1933594, 3, -2.7617188, -3.3886719, 1.9140625, 0.061157227, -0.6279297, -0.2770996, 0.35839844, -1.8671875, -1.5273438, 2.3105469, -0.4946289, -0.10839844, -0.7246094, -0.2109375, -2.1523438, -3.0761719, 0.95214844, 1.2265625, 2.3789062, 2.5371094, 0.4099121, 0.3178711, -2.2167969, -0.41723633, -0.8642578, -1.7958984, -0.8598633, 2.7265625, 1.0263672, -0.40966797, 0.34448242, 0.7426758, -0.22106934, 0.32080078, -0.06665039, -0.15478516, 0.04940796, 0.9506836, 0.5571289, -1.0400391, -0.38671875, -1.3427734, -1.0654297, -1.7314453, -2.4589844, 0.26367188, 0.50097656, 1.8251953, 2.0527344, 1.3105469, -0.29833984, -1.1582031, -0.0119018555, 2.2265625, -1.1328125, 0.98828125, 0.8310547, -0.7836914, 1.6445312, -0.030914307, 0.30078125, -1.4892578, -1.5068359, 0.3161621, -1.8701172, 0.80566406, 0.57421875, 0.41430664, -1.5195312, 0.56347656, -2.4492188, -0.4765625, -1.1816406, -3.2773438, -0.75097656, -0.51464844, -0.1430664, 0.6503906, -1.1796875, 0.022338867, -1.0234375, -2.8300781, 0.27392578, 0.3701172, 1.9248047, 1.3427734, 0.03250122, 0.5605469, -1.8457031, -2.2832031, -0.4189453, -0.18664551, 1.4023438, 0.4489746, 0.85839844, -2.6933594, 1.0195312, -1.3408203, -3.2753906, -0.42822266, 1.3037109, -1.7949219, 1.2861328, -0.117248535, -2.0585938, 2.9023438, 0.90966797, 0.025405884, -0.022277832, -1.5224609, 0.6567383, 0.6411133, -2.2441406, 0.053771973, 2.0703125, -0.83251953, -1.2783203, -2.1894531, 1.1533203, 0.4248047, 0.5571289, -0.67578125, 3.859375, -1.4921875, 0.35913086, -0.19824219, 1.3994141, 2.2832031, 1.6533203, 0.65185547, -0.31079102, -2.0800781, 0.01902771, -1.2470703, -0.61035156, -1.4306641, 1.5566406, -2.1445312, 0.11395264, 0.1352539, 0.22436523, -1.4580078, -2.3535156, -2.5664062, 0.9370117, 0.24841309, -1.0400391, -1.75, 0.7133789, -2.4082031, 0.107666016, -0.4165039, 1.5400391, 1.1611328, 2.1503906, 1.3203125, 1.1220703, -1.3242188, -0.34350586, 1.1181641, 0.72314453, 2.2832031, 1.3681641, -1.0253906, -2.0429688, 0.91308594, 0.3984375, -0.99658203, -1.4931641, 2.2050781, -0.78125, 0.00617218, 0.53222656, 0.5551758, 0.54003906, -1.3886719, 2.2421875, -0.48461914, -0.5541992, -2.0507812, 2.7460938, -0.5566406, -1.546875, 1.4150391, 0.5083008, -0.6645508, 2.6191406, 1.5224609, 0.10003662, -0.02583313, 0.2680664, 0.30395508, 1.8613281, 1.6738281, 0.24499512, 0.39208984, -0.37475586, 1.6005859, -0.83447266, 2.3710938, -1.2490234, -0.09820557, 0.55615234, -0.2565918, -1.5507812, 1.2099609, 1.3076172, -1.2353516, -1.2705078, -2.3515625, 0.87597656, -1.6054688, 0.06549072, -2.0742188, -1.7753906, -0.6347656, 1.1904297, -1.7431641, -1.015625, -0.7685547, 2.140625, 0.6279297, -0.04196167, -0.22387695, 2.5390625, -0.055603027, 0.21984863, -0.7470703, -1.0058594, 1.3242188, -1.1220703, 1.4775391, 0.69140625, -0.87158203, 0.07891846, 0.35498047, -0.2208252, 3.6308594, -0.01210022, 0.0074539185, 0.8564453, -0.95703125, 0.41259766, -2.2753906, 1.7558594, 2.7167969, -1.640625, -0.8027344, 2.0488281, -1.0146484, -2.2988281, -0.12573242, 2.7734375, 1.5136719, -0.91796875, 1.2070312, 0.9399414, 1.34375, -1.0488281, -1.4707031, -0.6972656, 1.1298828, -0.9794922, 3.8125, 1.6787109, -0.7338867, 3.1621094, 1.1494141, -1.0429688, -2.1699219, -0.3317871, 0.0099105835, 0.3034668, -0.91503906, 0.20690918, 1.8798828, -1.9082031, -0.44604492, -0.4897461, -1.5869141, 0.5493164, -0.37524414, -2.09375, 1.4316406, -1.765625, 1.0410156, -0.47338867, -0.96777344, 0.5029297, -0.96875, -0.13684082, -0.3413086, 1.1113281, 0.2841797, 0.49829102, -2.2148438, 0.5175781, -0.1182251, -0.53564453, -1.1875, 0.46411133, 3.9316406, -0.6245117, -1.5175781, -0.73828125, 2.0410156, -1.796875, -0.35473633, -0.36865234, 0.3461914, -1.8066406, -2.5566406, -0.10095215, 2.2050781, 0.94433594, 0.3173828, -1.5673828, 1.0087891, -1.0791016, 0.32104492, -1.6923828, -0.50341797, 0.24487305, -0.42285156, 0.4892578, 0.58984375, 1.8886719, 0.30688477, 0.40014648, -0.55078125, 1.3203125, 2.8789062, -0.02293396, 3.8671875, 1.4257812, -2.9199219, 2.3613281, -1.9697266, 2.0449219, 0.89990234, -1.1689453, -0.36010742, -0.5571289, 0.10748291, 0.6171875, -0.6123047, -0.21838379, -1.1621094, 0.65771484, -1.6933594, 1.8007812, 0.40039062, 0.38989258, 0.2993164, -2.0253906, 2.3964844, -1.2138672, 1.6884766, 4.265625, 0.08782959, -0.70410156, 0.7470703, 2.3515625, 0.26171875, 0.03744507, 1.8886719, 0.7841797, -1.9931641, -1.0917969, -0.109375, -0.52441406, -1.7255859, 0.8588867, 0.8100586, 0.022521973, -0.26416016, -0.6850586, 1.2324219, 3.90625, -1.8359375, 1.7646484, 0.13977051, -2.0351562, 0.56396484, 3.0449219, -3.2441406, 2.1660156, -0.14355469, 0.7871094, 0.43530273, 1.0195312, -2.4140625, -2.2265625, -0.35083008, -0.49951172, 2.4082031, 0.3791504, -1.8486328, 0.10168457, -2.109375, -2.5234375, 2.6875, -1.4375, 1.9619141, -0.6035156, -1.5820312, -2.5136719, -0.17175293, 2.8378906, -0.32617188, 0.2529297, 0.7026367, 0.19470215, -2.5292969, -1.9355469, -0.96777344, -1.2089844, 0.56689453, 2.7988281, 2.015625, -0.8027344, -0.12609863, 0.3701172, -3.4941406, 1.5009766, -1.2197266, 3.1835938, -0.2133789, 1.7763672, 1.1503906, -1.40625, 1.7294922, -2.15625, 0.6767578, 0.032958984, -0.48608398, -0.8618164, -2.0644531, -0.8496094, 1.8007812, -0.97021484, -3.2421875, -2.1777344, 0.2541504, 3.140625, -0.35742188, -0.13537598, 2.8710938, 2.3808594, -0.09777832, 0.8208008, 0.23986816, 0.37719727, -1.7382812, -0.3881836, -1.5146484, -1.5830078, -0.18225098, -0.3569336, 1.3115234, -2.5273438, -0.1295166, -0.5805664, -0.28344727, 1.3251953, -4.4609375, -2.0351562, 1.6796875, 0.44335938, 0.83935547, -1.8740234, 3.3730469, 0.030517578, 1.4667969, -2.9199219, -0.92626953, -2.6484375, -0.33081055, 1.3056641, -2.3320312, -0.7885742, 1.8320312, -3.0703125, -0.5888672, 0.10522461, 0.62646484, -0.29663086, -0.11578369, -1.7216797, -0.49682617, -1.1894531, 1.5126953, 1.5722656, 1.5517578, -0.18164062, 0.83740234, -3.7480469, -2.5117188, -2, -1.6533203, -1.3710938, -2.0078125, -0.5126953, 0.03237915, 0.5058594, 2.1835938, 0.15844727, 2.1035156, -1.1796875, -1.4736328, -1.0517578, 0.27368164, 0.66308594, 0.4675293, -1.4599609, -0.17358398, -0.2541504, 0.5722656, 0.8383789, 0.14367676, -2, -1.0126953, -1.5849609, -1.5380859, 1.1308594, 1.7744141, -0.89941406, -0.9345703, -0.28344727, 2.4042969, -2.8984375, -1.2587891, 0.053131104, 1.1826172, -1.5175781, 3.9179688, -2.6464844, -1.1396484, 0.2770996, 0.059295654, -0.578125, 2.4414062, -1.9228516, 0.8432617, -0.4033203, 1.3632812, -2.3808594, -3.71875, -0.5644531, 1.1210938, -0.10986328, -0.4567871, 0.60498047, 3.5214844, 1.5039062, -0.10546875, 1.0732422, -0.5683594, 0.24816895, -1.3310547, 0.35424805, -1.3017578, -0.27124023, -1.2333984, 0.7919922, -1.0546875, -2.0820312, -0.24499512, 0.62109375, 1.5703125, 3.0507812, 1.4501953, 2.5683594, 0.9423828, 3.2734375, 2.2480469, 0.40942383, 2.1289062, 0.59716797, -1.7919922, 1.609375, 2.3671875, 2.125, -0.75683594, -2.2167969, 2.5175781, -0.9560547, 0.66308594, 0.3996582, -0.34985352, -1.5869141, 0.09838867, 1.9804688, -0.38085938, 0.17004395, -2.59375, 1.9785156, -0.57714844, -1.5390625, -2.578125, 1.5185547, -0.60058594, -1.3613281, 2.3144531, -0.3076172, 2.4511719, -0.74560547, -2.2480469, 1.0859375, 1.1806641, -2.4433594, 0.87890625, 2.5195312, 1.3808594, -0.42260742, 0.11022949, 1.0917969, 0.28027344, 1.8349609, 1.7460938, 1.5068359, -0.71972656, 0.2709961, 0.6850586, -2.4667969, -1.4394531, 0.5390625, -1.7470703, -1.6035156, -1.7988281, 0.93603516, -0.0041770935, 0.9458008, -1.1572266, -1.9511719, 2.3320312, 0.8598633, 2.4023438, 2.1953125, 2.4199219, -0.5341797, -2.421875, -0.22949219, 1.8105469, 0.83691406, -0.5751953, -0.77734375, -1.3242188, 1.1875, 1.3466797, 1.4785156, 1.1884766, 0.92089844, -0.3317871, 1.1435547, 0.53125, 0.47387695, 0.17822266, -0.19873047, 0.7338867, 0.7182617, -0.5493164, 2.6757812, 0.3515625, -2.3515625, 0.90625, -2.5429688, -1.3935547, -0.11602783, 0.6855469, -2.2460938, -0.22375488, 1.4404297, -0.47216797, -0.63378906, 0.09197998, 1.8808594, 2.4453125, -0.5541992, 2.1015625, -1.3769531, 0.79248047, 0.91015625, -0.7138672, 1.890625, -1.3115234, 0.039764404, 0.79345703, -0.67285156, 1.3808594, 1.3457031, -0.37817383, 0.4025879, -0.8076172, -1.6689453, 1.4511719, -0.4909668, 0.114990234, -1.1904297, -3.375, 0.7607422, 0.60498047, 1.3125, -0.05911255, 2.15625, -2.5, -0.92333984, -1.6025391, -0.6323242, 0.65722656, -1.4765625, 2.1933594, 2.3769531, 1.171875, -1.4316406, -1.9804688, -2.4746094, 3.3632812, -4.0390625, 0.19970703, -0.56884766, 0.19433594, 0.10858154, -0.8232422, -0.5415039, -0.5053711, -0.7246094, 0.36010742, -2.015625, -0.05911255, -1.3056641, 0.0848999, -0.21142578, 0.6323242, 0.40014648, 0.3227539, 2.4882812, 1.7861328, 2.125, 0.8618164, 1.8486328, -0.36206055, -0.11468506, 3.0585938, 0.99902344, -1.2226562, -1.6904297, -1.0175781, -1.7949219, -0.19970703, -1.0693359, 0.10858154]}, "B08MQRP2DT": {"id": "B08MQRP2DT", "original": "Brand: Western Wood\nName: Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag\nDescription: Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.\nFeatures: Variety 6 Pack of Smoking Chips\nTry Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs.\nUse with gas grills, electric smokers, griddles, kettle grills and ceramic grills\n", "embedding": [-1.1132812, 1.1425781, 0.7495117, -1.0878906, 2.0761719, 0.8310547, 2.9550781, 0.22009277, -0.87890625, -0.5283203, 1.2958984, 2.921875, 0.2548828, -4.984375, -0.96777344, -3.1367188, -2.9277344, 0.44848633, 3.6933594, 1.7685547, 0.84765625, -0.09991455, -0.16125488, 1.0898438, 2.9414062, 0.85839844, 1.3427734, 0.46191406, 1.2802734, 0.74658203, 1.7568359, -0.41503906, 0.3227539, 2.140625, -1.6953125, 2.1933594, 0.42773438, -1.5322266, 0.77490234, 2.7050781, -1.5400391, -0.93310547, 1.8691406, 1.8486328, -3.2617188, -1.5205078, 0.6430664, -2.1796875, -1.4238281, -0.4387207, 0.15136719, 1.1855469, -2.1679688, 0.8725586, -1.9541016, 2.1386719, 0.3864746, -1.7851562, -1.2929688, 1.3203125, 2.3710938, -0.68066406, -0.5786133, 0.5522461, -1.5410156, 0.5126953, 1.0097656, 0.27001953, 1.1640625, 1.4589844, 2.5488281, 1.5205078, -1.6845703, -0.7866211, -1.8046875, 2.03125, -0.5576172, 2.9199219, -1.3515625, 0.42138672, 0.01260376, 2.0488281, -1.9023438, -1.5498047, -0.059906006, -1.0664062, -0.9477539, 1.4902344, -1.1601562, 1.9521484, 1.0976562, 1.0205078, -0.7192383, -4.1445312, 0.7915039, -1.4355469, -2.3671875, -1.2763672, -0.9819336, 1.6220703, 2.2265625, -1.4482422, -0.5078125, 0.99658203, -2.5683594, -0.017440796, 0.27294922, 1.8476562, 0.7060547, 0.62060547, -1.1328125, 0.61083984, 1.8671875, 1.5761719, 2.796875, 1.1552734, 0.72314453, -2.6992188, 1.2070312, 0.54589844, 2.6972656, -0.4140625, 1.4589844, -0.9404297, 1.0371094, -0.38256836, -1.2587891, 3.1640625, 1.7607422, -2.4511719, 0.09033203, -1.7167969, 0.3059082, 1.4628906, 0.37939453, -1.2470703, -0.22473145, -0.45141602, -0.03643799, 0.73779297, -1.3535156, 1.2998047, -0.60546875, 1.0947266, -0.8203125, 0.98535156, 0.15454102, 0.18701172, 0.67578125, -2.4238281, 1.0751953, -1.0458984, -0.17443848, -2.0195312, 0.49902344, -0.23742676, 1.234375, -0.12438965, 0.011238098, -1.1523438, -1.7617188, -2.3339844, 0.4638672, 1.9570312, -2.0234375, -2.4785156, 0.08898926, 0.17150879, 0.5395508, 2.4140625, 0.39794922, -0.35791016, 0.7480469, 0.23181152, 0.40185547, -0.2619629, 0.050872803, 2.296875, 2.3867188, -2.2910156, 1.6845703, -0.3630371, -0.8544922, 0.41918945, -1.2275391, -0.07397461, 0.3630371, 0.7758789, -0.066101074, -1.2900391, 1.2910156, -0.03503418, -0.4404297, 0.4729004, 1.5, -0.80029297, 0.07116699, -2.9765625, 0.21362305, 0.36621094, -1.8398438, 1.1328125, 0.09375, 0.6748047, -0.6484375, -2.3769531, 0.30810547, -0.6738281, 0.59375, 0.7421875, 0.67626953, -0.88183594, -0.17541504, 2.4589844, -2.8339844, -3.578125, 0.30004883, -3.4707031, 0.30419922, 0.54296875, -0.05819702, 2.0996094, -0.13977051, 1.4853516, -0.49731445, 2.0820312, 0.24414062, -0.28833008, 1.6669922, -0.6801758, 1.0458984, -0.19396973, 1.0009766, 0.30493164, -0.8330078, 1.0498047, 1.9824219, -2.7988281, 0.55029297, 0.009033203, -0.2084961, 0.3449707, -1.1523438, -0.17919922, -1.5048828, -1.2978516, -0.98876953, -0.12188721, 0.46289062, -0.27905273, -1.328125, 0.109558105, 1.7392578, 0.92041016, 0.69189453, 1.2109375, -0.94921875, -0.29125977, -1.9277344, -1.1298828, 2.6484375, -1.0917969, 2.3105469, 0.43676758, 1.0478516, -1.1074219, 1.0751953, 1.2705078, -2.4101562, -2.4511719, -0.8496094, 0.5151367, 0.031341553, -0.87841797, 2.4257812, 1.1054688, -0.24902344, 0.12561035, -0.014587402, 0.072631836, 0.010864258, 2.6484375, 1.3642578, -0.67871094, -1.3359375, -0.46655273, -1.1914062, -1.4199219, 1.9951172, 2.3730469, 4.0039062, -0.75341797, -3.4414062, -0.12878418, -0.9667969, -0.24035645, -1.5654297, 1.4541016, -0.32128906, 1.0712891, 1.5576172, 2.0351562, -1.3984375, -0.8955078, -3.2617188, 0.5854492, 1.6992188, -1.3457031, 1.6376953, 0.46948242, -0.23583984, -0.74121094, -0.6616211, 0.74121094, -3.0507812, 0.7441406, 0.2487793, -1.3457031, 0.050354004, -0.5913086, 1.6699219, 2.2949219, 0.9345703, -1.0039062, -1.2705078, 3.3066406, -2.7246094, 0.11230469, -1.9355469, -0.6401367, 0.6508789, -0.7729492, -0.8261719, -0.87841797, -0.11431885, -1.2841797, 0.4658203, -0.83691406, 0.3317871, 1.7939453, 0.21911621, -0.9580078, -2.9726562, 0.22021484, -0.48168945, -0.9560547, 0.81396484, -0.73779297, -0.8911133, 5.0390625, -0.66748047, 2.2226562, 0.73583984, -2.9980469, 0.16247559, 0.90234375, 0.57910156, -0.8881836, -1.7363281, -0.35888672, 0.23046875, -1.8808594, -0.82666016, 0.51660156, -0.036224365, 0.93115234, 0.5883789, -2.4511719, 3.0878906, -1.1982422, 2.4082031, -1.0097656, 2.9414062, -2.3066406, -1.5683594, 0.63378906, -0.8701172, 3.6933594, 0.52441406, 0.7319336, -1.2714844, -1.2841797, -1.4951172, -0.2142334, -0.58496094, -1.7382812, 1.1591797, -0.5151367, -0.51660156, -2.6855469, 0.7973633, -2.6894531, 0.671875, -0.7446289, 2.359375, 0.78759766, -2.0839844, -0.65625, -0.5205078, 1.6962891, 0.62353516, -1.9824219, 1.1044922, -1.4697266, 1.7207031, -1.0380859, -1.2832031, 0.5449219, 0.7207031, -0.95458984, 2.09375, 0.02368164, 0.27270508, -1.4267578, 0.059753418, -1.1005859, 4.2617188, 1.3867188, -1.2216797, -0.52783203, -1.0390625, -1.7060547, -0.8535156, 2.1640625, 3.7050781, 3.609375, -0.039764404, -0.028823853, 2.9257812, 0.85546875, 1.7753906, -1.6484375, 0.122680664, 2.0019531, 1.3769531, -2.9433594, -2.7324219, 0.8725586, 0.3713379, 0.32592773, 0.8598633, 1.7978516, -0.33764648, 0.95996094, 2.0429688, 1.6660156, 0.5239258, -0.7895508, 2.640625, -1.5185547, -1.3339844, 0.1862793, -0.45141602, 1.7578125, 1.2207031, -1.0761719, 1.9121094, 1.4814453, 2.2011719, 1.6914062, 0.76220703, -0.3779297, 1.3916016, 0.6269531, 3.703125, 0.15808105, 0.70654297, 0.09118652, -0.75, -0.26513672, 0.72998047, -0.08325195, -3.9121094, -0.41674805, 2.4257812, -0.0009813309, -0.62890625, 1.3828125, -0.11755371, -0.85839844, -2.6328125, 1.5556641, -2.0097656, -1.9541016, 2.2304688, -1.9355469, -1.2216797, -3.6445312, 1.5146484, 1.0839844, 1.9785156, -1.9121094, 1.7822266, 0.7446289, -1.6738281, 0.2763672, 2.2988281, -1.7822266, 1.7138672, 0.2454834, 0.17578125, -0.2322998, -2.9902344, 1.4667969, 1.2578125, 2.0859375, -1.7060547, -0.77685547, -0.3125, -0.46313477, -0.5449219, 0.5834961, -0.3852539, 0.8955078, 1.0380859, -1.5869141, 0.4086914, 0.4038086, -4.328125, 0.79296875, 1.8183594, 1.8232422, -0.53808594, 0.099365234, 2.6914062, 1.0898438, -0.44580078, 3.8242188, -1.8154297, -0.796875, -0.63183594, -2.8554688, 0.005706787, -0.64453125, -1.2880859, 1.1328125, -0.122802734, -1.1953125, 2.140625, 0.24035645, 1.5371094, 0.4104004, -2.8671875, -0.3642578, 0.33984375, -0.96728516, -0.9614258, 0.33935547, -3.0527344, -2.3300781, -1.1367188, -1.3671875, 0.8647461, -0.22277832, -0.87890625, 2.5019531, -4.1796875, 1.1835938, -0.9589844, 0.3059082, 0.31689453, -3.3046875, 0.59472656, 0.8852539, 1.2402344, 1.9599609, 0.16589355, 1.2646484, -1.0263672, 0.22460938, -1.5292969, -1.7958984, 2.0839844, 3.8535156, -0.52783203, -0.20837402, -0.003211975, 1.2382812, -0.4909668, -3.2382812, 0.29125977, 0.53515625, -0.4638672, -0.08331299, 2.0253906, 2.078125, 2.6640625, 0.51464844, -1.1425781, -1.7910156, 0.9042969, 0.08111572, -2.5410156, -2.2011719, -0.28955078, -0.3413086, -0.30737305, -1.0224609, -0.042755127, -0.030929565, 1.1679688, 0.94873047, 1.9746094, 1.8876953, 1.9541016, 1.6953125, 1.3740234, -1.5712891, 0.6591797, -1.9052734, 2.1972656, -0.85839844, 1.0302734, -0.5595703, 0.5024414, -2.4375, -0.265625, -2.7480469, -0.32080078, 2.1992188, -0.025268555, -0.31445312, -1.3125, 0.24865723, 1.3466797, -0.31323242, -1.4033203, 1.8339844, -1.2060547, -1.90625, 1.5478516, 1.1953125, -3.8105469, 0.82421875, 0.88427734, -0.93847656, -0.53466797, 0.66308594, -0.082458496, -1.4179688, 0.63427734, 1.0195312, 2.3398438, 2.2050781, 0.9897461, 0.16015625, 0.84765625, 0.5151367, 0.0513916, 0.83935547, -0.51464844, 0.0090789795, 4.4726562, 0.6147461, -2.7402344, -1.2255859, 1.2275391, -1.5556641, 1.4882812, -0.035125732, -2.8242188, 0.9951172, -0.07330322, -3.2832031, -0.8095703, 1.4238281, -1.5263672, 2.1542969, -1.8359375, -3.0097656, 2.4199219, -1.65625, -0.5600586, -0.45922852, -1.2080078, 2.5703125, 0.79345703, -1.0371094, -2.3300781, -0.5234375, 3.0136719, 0.65527344, -0.90771484, 0.078552246, -0.80029297, -0.7011719, -1.6367188, -1.0664062, -1.7646484, -2.2910156, 0.95458984, 2.1074219, -0.36987305, 1.4492188, 2.484375, -1.5537109, 2.2207031, -4.0859375, 1.4345703, -3.671875, 1.5244141, 1.9570312, -4.1328125, 0.025115967, -2.7597656, 2.0859375, 1.3876953, -0.6245117, 0.73535156, -2.3613281, -0.04751587, 1.9755859, -1.9013672, -3.5097656, -2.9277344, 0.8022461, 1.2548828, -2.7734375, 1.5654297, -0.7104492, 0.08441162, -0.78759766, -1.0214844, -0.0019454956, -1.2294922, -0.9897461, -0.75927734, -3.1894531, 0.8100586, -1.2763672, -2.8183594, -0.14807129, 2.2773438, 0.07293701, -2.4902344, 1.5898438, 0.1439209, -0.3876953, 0.3017578, 0.93310547, -0.3852539, 3.3203125, -0.7661133, 2.2675781, 0.43237305, 2.5820312, -2.2480469, -0.21240234, -0.98583984, -2.3046875, 0.47558594, -1.9160156, 0.0061836243, 1.0810547, -0.40478516, 1.9892578, -1.3632812, -0.85839844, 1.3671875, -3.0429688, 0.36523438, -0.36132812, 1.7910156, 1.8261719, 0.23059082, 1.5683594, 1.2099609, -0.2368164, -2.8320312, -1.2294922, -2.0664062, -2.1445312, -2.6054688, -0.16723633, 3.9472656, 2.0546875, -0.3803711, 1.7929688, -0.30273438, -1.6816406, -2.5097656, 0.47558594, -2.0566406, 3.3984375, 0.5439453, -1.890625, -1.6728516, -0.123168945, -0.07598877, 0.50146484, -0.8979492, -1.5322266, 1.1826172, -0.3449707, -1.3164062, 0.012802124, 1.0371094, 1.9394531, 1.8759766, 0.07159424, -0.74658203, 1.9716797, -0.79833984, -0.038513184, 1.8554688, 1.2070312, -0.24511719, 1.7294922, -1.5917969, -0.27734375, -1.9375, -1.7705078, -0.64160156, 0.008262634, -2.4765625, 1.5244141, 1.0195312, -0.45996094, -1.7402344, 0.2319336, -1.1708984, 1.2128906, -1.1416016, -0.9477539, -2.3066406, 0.71191406, 0.72265625, 2.6328125, 2.0019531, -1.0458984, -1.3261719, -0.80615234, -3.2519531, 2.6699219, 2.2089844, -0.37890625, -1.2324219, -0.10559082, -2.1289062, -0.68603516, 3.3183594, 0.8691406, 2.2558594, 0.45385742, 1.5478516, 0.6904297, 3.1445312, 2.3886719, 0.99609375, 2.1289062, 1.359375, -2.5605469, 2.7695312, 2.1757812, 1.9794922, 1.2919922, -1.4121094, 3.5957031, 0.03756714, 2.6933594, 0.9291992, 0.32714844, -0.30322266, -1.8447266, 1.3505859, -1.4033203, 0.35986328, -2.4082031, 1.5371094, -1.4345703, -1.2402344, -1.0976562, -1.9375, 1.2080078, 0.080200195, 0.36523438, 0.4794922, 1.1279297, -0.88916016, -4.5234375, -2.0566406, 0.23913574, -1.2763672, 0.5205078, 1.6875, 0.16381836, 0.061950684, 1.1044922, 0.7397461, 2.9179688, 2.1796875, 1.8144531, -1.8525391, -0.17150879, -0.61621094, 1.4121094, 0.5756836, -2.6621094, -1.8144531, -0.28051758, -4.2695312, -3.2246094, 0.18664551, 0.09991455, 3.9257812, 2.9902344, -3.578125, 0.66845703, 0.4177246, -0.06021118, -1.3564453, 1.6962891, 0.5854492, -1.0107422, -3.1601562, 0.28515625, 2.875, 1.8037109, 0.9160156, -0.62060547, -0.7133789, 3.1308594, 1.8798828, 1.7236328, 0.5703125, -1.5175781, -0.5, -0.22045898, 4.3554688, 0.1652832, 1.5917969, 1.6269531, -0.085754395, 2.1796875, 1.2011719, -0.56933594, -1.8974609, -1.9775391, 0.04638672, -0.4794922, 0.1665039, 0.03933716, -3.6171875, -0.23815918, -1.0654297, -2.4375, -0.6816406, 0.3293457, 2.4726562, 1.3457031, 1.4375, 0.8383789, -3.4140625, 0.20422363, -1.2509766, 1.3632812, -1.265625, 0.2512207, 1.3701172, 0.10839844, -1.4101562, 0.6088867, 3.234375, 0.12780762, -0.25805664, 1.4677734, 0.44580078, 1.8447266, -2.7734375, -1.2421875, 0.3317871, -3.2558594, 0.7392578, -0.71728516, -0.38134766, 0.14477539, -0.107788086, -1.7548828, 0.85839844, -1.6533203, -1.765625, 1.4970703, 0.62060547, 0.85498047, 3.2753906, -0.041290283, 0.22314453, -0.24902344, -2.0371094, 0.42749023, -2.6933594, 0.43945312, 0.5493164, -0.23828125, 0.5307617, -0.31298828, 0.018295288, 2.4042969, -2.7851562, 1.5498047, -1.9794922, -0.12097168, -0.6665039, 1.5976562, -0.1505127, -0.22009277, 1.3164062, 3.484375, 0.6015625, 1.6816406, 0.7973633, 3.1367188, 0.75341797, -1.3886719, 0.30810547, -0.3017578, 2.8125, -1.34375, -1.4589844, -1.1083984, -0.62890625, -0.61279297, -2.4082031, -3.6757812]}, "B08C9SNF7H": {"id": "B08C9SNF7H", "original": "Brand: Pinshion\nName: Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild\nDescription:

Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

Specification:

Components: furnace body + bracket + carbon plate + grilled net + carbon net

Baking tray size: 17 x 11.5 inch

After installation of a single product size: 17 x 11.5 x 9.3 inch

Colour: Black

Material: iron + chrome grilled net

Package included:

1 x Folding BBQ Grill

1 x Grilled net

1 x Charcoal net

Only the above package content, other products are not included.

\nFeatures: \u3010Newest Design\u3011Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill.\n\u3010Easy to use & Fold\u3011There are bracelets on both sides of the grill for easy carrying the grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok.\n\u3010Outdoor BBQ Partner\u3011Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends.\n\u3010Safety & Healthy\u3011High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food).\n\u3010Suitable for Many Occasions\u3011Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\n", "embedding": [-2.4960938, 2.1855469, 0.88134766, -0.6123047, 0.7080078, 0.22521973, 2.5136719, -1.3662109, -2.1308594, 1.9130859, -0.18469238, -1.2792969, 1.7773438, -4.3164062, 0.5541992, 1.0996094, 0.65478516, 1.1640625, 2.4511719, 0.51123047, 0.4658203, 1.5019531, 1.1748047, 0.19433594, 1.3837891, -1.1474609, 2.8886719, -0.8774414, 1.7871094, -1.2773438, 2.578125, 0.30566406, 0.09552002, 1.6425781, -2.8964844, 0.7988281, -1.8671875, 0.98828125, 0.26953125, 0.09686279, 0.3552246, -1.3095703, 3.5410156, -1.8183594, -3.359375, -0.72753906, -1.4414062, 0.3046875, 1.2558594, -3.3105469, 1.6503906, 0.7158203, 2.5410156, 1.4130859, -2.8046875, 0.019729614, -1.2822266, -3.3203125, 1.0029297, -1.1142578, 1.5400391, -0.18029785, 0.005996704, 2.890625, -0.6064453, -2.0078125, -0.671875, -0.68603516, 0.74121094, 0.37475586, 0.6430664, 0.80371094, -1.9765625, -0.055603027, 0.7661133, 0.22387695, -2.4882812, 1.7255859, 0.921875, 2.1269531, -1.84375, 2.4160156, 1.2363281, -1.4208984, -0.41259766, 0.8964844, -2.0761719, 0.7753906, 2.6074219, 1.0761719, -0.061523438, 2.7929688, -1.6611328, -4.4335938, 2.3242188, -2.2207031, 0.88916016, -0.22265625, -1.1386719, 2.7773438, -0.19165039, -0.88623047, -0.43432617, -1.0087891, -2.0859375, -0.9453125, 1.5429688, 0.27954102, 0.22717285, 1.9453125, -2.0722656, -0.009292603, 2.1308594, 0.68359375, 1.1220703, 0.32885742, -0.12158203, 2.2226562, 1.078125, 0.8198242, 4.7734375, 0.87158203, 0.6772461, -2.9726562, 0.44580078, -1.1826172, -1.4130859, 0.19165039, 3.1601562, 0.08898926, -0.27929688, -1.6074219, -0.43896484, 1.3056641, -3.0097656, -2.9570312, -1.0400391, -0.85839844, -3.4082031, 2.6621094, -0.9067383, 1.3847656, 3.4082031, -0.3737793, -2.8535156, -0.74560547, -0.8959961, 1.6884766, -0.3527832, -3.2167969, -0.6113281, -1.2646484, -0.8354492, -0.70947266, 1.3671875, -0.19604492, -0.83251953, -2.5039062, 3.5078125, -0.09185791, 1.7607422, -2.3925781, -1.0302734, 0.68847656, 1.640625, -1.7353516, 0.3564453, 2.1191406, -0.007637024, 2.8964844, 0.5175781, -0.99658203, 1.4931641, 0.35913086, 1.7832031, -1.3300781, -1.6689453, 1.9443359, 1.8251953, -1.2392578, 0.44262695, -1.3642578, 1.5097656, 1.484375, 0.2319336, -1.015625, -0.01360321, 0.45483398, -1.4648438, -1.8769531, 0.061920166, -0.12902832, -1.2597656, -0.37695312, -0.86816406, -0.87402344, -0.6430664, -1.1923828, -0.18127441, 1.6660156, -0.7685547, 0.10827637, -2.2539062, 0.35058594, -3.0957031, -1.8847656, -0.58984375, 1.9511719, 1.8798828, 1.7119141, -0.6040039, -1.0302734, 2.1972656, 1.3183594, -0.6040039, -1.3994141, 1.4404297, -1.6044922, 1.0039062, 1.6611328, -0.27905273, -1.1855469, -2.1191406, 4.0117188, 1.3037109, 2.0625, -0.42626953, -0.61376953, 1.4814453, -0.35351562, 3.3339844, 0.054351807, -0.17419434, 0.9301758, -1.0507812, 1.9833984, 0.42456055, -1.21875, -1.4091797, 1.0224609, 0.18469238, -3.3945312, -1.7197266, -1.2197266, -1.0224609, -2.1933594, -2.8066406, 1.765625, 1.7675781, -0.5029297, -0.3173828, 0.6791992, -1.1513672, 1.2070312, 0.50683594, 1.8359375, -0.32226562, -0.15307617, -3.2695312, -1.828125, 0.23156738, 1.2822266, 0.56591797, 0.71435547, 1.4150391, -1.3984375, 2.0078125, -0.09069824, -2.9746094, 0.4428711, 1.0576172, 1.296875, 0.91748047, -0.15612793, 1.9746094, -1.0087891, -0.4189453, -0.58984375, 2.4902344, -0.19067383, -0.14709473, 1.1914062, 2.2109375, -1.6601562, -3.2089844, -2.0390625, -0.1484375, -1.9169922, 1.2919922, 2.015625, 3.7480469, -0.5595703, -2.2246094, 2.421875, -2.7089844, 0.8222656, 0.8305664, -0.5019531, 0.94189453, 2.5273438, 1.0898438, 2.8125, 0.26879883, 0.9511719, -2.0996094, -1.4287109, 1.2558594, -2.6679688, -0.103027344, 0.42700195, -1.3417969, 0.4272461, -0.75927734, 0.21618652, -1.5361328, -2.0195312, -0.1928711, -2.2304688, -0.36621094, 3.4101562, -0.48339844, -0.036224365, -1.0410156, -2.6699219, -1.2539062, 2.4902344, -1.5908203, 0.26391602, 2.7617188, -1.2939453, 0.028442383, 0.28222656, 1.9990234, -2.2714844, -1.9560547, -2.7773438, -0.26220703, -1.4619141, -0.27807617, -1.2275391, -1.0849609, -0.3618164, -2.1230469, -1.0234375, -1.0957031, -3.4316406, 0.27001953, 0.49023438, -0.96484375, 1.5107422, -1.0039062, 0.4326172, 1.8388672, -4.9023438, 0.88427734, 0.32202148, 1.3603516, -0.047729492, -2.125, 0.41357422, -0.9355469, 1.1923828, -0.27441406, 0.9785156, 0.6972656, -1.6464844, -0.72558594, -1.2783203, 0.5126953, -0.4880371, 0.048065186, -0.7006836, 0.23876953, -2.8730469, -1.3955078, 0.90283203, -1.9042969, 4.8085938, -0.6508789, 2.0585938, -1.859375, -1.0742188, 0.30004883, -1.1523438, -3.890625, -1.6474609, -0.0129776, -0.017105103, -2.421875, -2.4316406, -0.33764648, 0.6298828, -1.7958984, -1.1455078, 1.4638672, -1.0458984, 1.4414062, -1.7998047, -0.9555664, 0.03717041, 2.4433594, 0.023971558, -0.61816406, -2.1328125, -0.69384766, -0.22302246, -0.56689453, -0.52197266, 1.3623047, -0.88378906, 0.47875977, 0.9145508, 1.6621094, -0.03302002, 1.1679688, -1.2167969, 2.9101562, -0.024215698, -1.5908203, 0.62890625, -0.36328125, 0.33496094, -4.0390625, 0.34643555, 2.2988281, 1.1650391, 1.7353516, -1.3925781, -0.15637207, 1.2392578, -0.0692749, -1.6728516, 0.89453125, 1.7158203, 2.9394531, -2.6679688, -0.23156738, 0.24206543, 2.2558594, -2.9765625, 1.625, 2.1992188, 1.1269531, 0.69091797, 1.2255859, 2.3320312, -1.1103516, -0.14501953, 1.4667969, 1.0410156, 2.4414062, -0.71972656, 0.2734375, -0.9580078, -0.53564453, 2.2597656, -0.1920166, 0.70214844, 2.3027344, 2.6542969, 1.25, -3.734375, 1.4404297, 0.50439453, 2.0214844, -0.3527832, 3.0878906, -1.1689453, -0.9057617, 0.4560547, -1.2978516, 0.43481445, -1.4443359, -0.5463867, 2.4824219, 0.76416016, -0.09197998, -0.71484375, 0.5444336, -1.6787109, -2.1875, 0.8017578, -2.3925781, -3.1816406, 0.79541016, -2.7011719, -2.640625, -0.47021484, 1.4072266, 0.25463867, -1.9814453, 0.8496094, 2.84375, 1.0859375, -2.0605469, -1.5214844, 1.2929688, -1.5068359, 2.7871094, -0.28955078, -0.38549805, 1.6435547, -0.25170898, 1.4443359, 0.60839844, -0.6347656, -2.2753906, -0.43164062, -1.6044922, 1.0449219, 1.3476562, 1.1708984, 0.16564941, -2.9023438, -0.095825195, -3.0039062, 0.92285156, 1.0742188, -1.8164062, -1.2226562, -0.33862305, 2.2246094, 0.18603516, -2.3847656, 3.4433594, -0.32983398, -1.3476562, 1.9824219, -1.2011719, -1.9931641, -1.921875, -3.2265625, 0.9946289, -0.16918945, -0.28222656, 1.7978516, 0.14465332, -0.85253906, 2.8808594, 0.046417236, -0.87597656, -0.90966797, -2.2695312, 0.10266113, -2.125, 0.9638672, 1.5351562, 0.5703125, -1.4873047, -1.6132812, -1.0693359, 0.77197266, 2.5253906, 1.8554688, 0.69433594, 0.8745117, -2.6484375, 1.265625, 0.043518066, -0.6772461, -0.1887207, -0.7783203, 0.123046875, -1.3056641, 0.91259766, 0.6616211, -0.23706055, 0.26831055, 1.3115234, 0.0463562, 0.8095703, -0.484375, 2.3769531, 2.8886719, -0.3947754, -2.4492188, -1.8330078, -1.3027344, -1.7714844, -0.8364258, -0.22485352, 0.06591797, -3.2753906, 1.7568359, -0.67285156, 2.4960938, 1.9677734, -0.37426758, -2.03125, -1.5263672, -0.8071289, -3.0664062, -1.8867188, -1.296875, 0.3959961, 0.37353516, 0.88427734, -1.4501953, 1.2929688, -0.101989746, -0.5678711, 0.6767578, 2.8203125, 2.4589844, 3.0742188, 3.7714844, 0.35205078, 0.14001465, 2.0058594, -2.1152344, -0.08782959, 1.4746094, -1.7099609, 0.9067383, 1.2490234, 1.6308594, -1.8828125, -2.0761719, 0.36279297, -1.1503906, -0.4350586, -1.1591797, 2.2480469, -1.1484375, -0.57421875, -0.5493164, -1.84375, 1.9726562, -1.1279297, 0.2064209, 0.5419922, 0.9458008, 0.12109375, -0.91552734, 0.8417969, 0.4597168, -0.36083984, -0.20446777, -1.2138672, -1.5566406, -0.49365234, -0.83740234, 3.0332031, -2.4160156, -1.9042969, 0.48999023, -1.1591797, -0.2467041, -2.3613281, -0.29174805, 3.2851562, 0.5341797, 1.7607422, -0.75634766, -1.0566406, 2.2636719, 1.3076172, -2.5976562, -1.0605469, -0.61376953, -0.70996094, 0.20129395, 0.43432617, -3.9824219, -0.030960083, 0.703125, -1.3525391, 2.6015625, -0.88623047, -1.2050781, 1.3417969, -1.9199219, 0.40356445, 0.6635742, -2.8007812, 1.0976562, -1.1328125, -1.0566406, -0.9472656, 0.51416016, 2.9082031, -0.5834961, -0.4663086, 2.2167969, -0.37768555, 0.37719727, -0.56689453, -1.6640625, -3.2050781, -1.6621094, 1.9833984, 3.3398438, 1.8212891, -1.2949219, 0.21691895, -1.5878906, 0.26513672, -3.3359375, 2.5820312, -2.8984375, 0.8461914, 1.9482422, -0.91015625, 0.9682617, -1.6513672, 2.1640625, 0.34545898, 1.7226562, 1.0439453, 0.11999512, -1.1982422, -0.7529297, -1.9980469, -5.015625, -1.7041016, -0.5810547, 0.18859863, 0.11505127, 1.1796875, -0.78027344, -0.8774414, -0.10333252, 1.1689453, 0.1083374, -0.82177734, -0.048461914, -0.5571289, -0.9394531, -0.73828125, -1.640625, 1.7255859, 1.5175781, 1.3330078, -0.80078125, -2.5371094, -0.059906006, 1.1230469, -3.2539062, 0.022003174, -0.52734375, -0.71191406, 0.90234375, 0.066467285, 1.4980469, -1.0830078, 1.6289062, -0.8647461, 0.043945312, 1.0712891, -0.43896484, 1.3271484, -1.2265625, -1.7197266, 1.5253906, -2.6308594, 1.6738281, -0.61376953, -0.5078125, -0.28955078, 1.7451172, -0.3786621, 0.0960083, 0.7944336, 0.6723633, 2.0117188, 1.3583984, 1.1728516, -0.52246094, -2.4003906, -3.9941406, -0.15808105, -1.0361328, -1.5947266, -1.8779297, 2.140625, 1.8564453, 0.11480713, 1.5458984, 1.1943359, 0.54052734, -1.7851562, 1.7626953, -0.2331543, 2.0703125, 3.4238281, -1.4726562, -2.0214844, -1.9941406, -0.35717773, -0.62841797, -0.3569336, -1.3417969, 0.46557617, -2.140625, -0.6064453, -0.7705078, 1.734375, 2.4238281, 1.1162109, -0.47851562, 0.9658203, 1.3193359, -1.0771484, 0.7910156, 0.47314453, 3.4824219, -0.56884766, 2.7441406, -0.9506836, -1.5058594, 1.2910156, -1.7304688, 1.3173828, -1.3183594, -2.0488281, 1.2460938, -0.5776367, -0.31103516, -2.4082031, -0.7836914, -2.8046875, 2.6621094, -0.19824219, -0.20397949, 1.0957031, 3.3027344, -0.48461914, 2.6210938, 1.1494141, 0.51171875, 1.3916016, 1.9033203, -1.9042969, 0.5385742, 1.3037109, -1.3457031, 1.0556641, 0.48510742, 0.22351074, 1.0195312, 4.046875, 2.6308594, 2.6777344, 0.5385742, 2.71875, 1.5546875, 2.1894531, 4.1601562, -0.5786133, 1.3447266, 3.6894531, -3.0644531, 1.0224609, 2.8710938, 1.9755859, -1.5146484, -1.2724609, 0.79003906, 0.4609375, 0.033721924, -1.0478516, 0.47729492, -0.28881836, -3.2460938, 3.4785156, -0.9560547, -0.8261719, -1.8837891, 1.6220703, -2.0429688, -0.62158203, -2.15625, -1.8984375, 0.77197266, -1.1669922, -0.2524414, 0.28588867, 1.4404297, -0.4074707, -2.1269531, 0.0140686035, 1.1445312, 0.0053100586, -0.5419922, 1.5439453, 2.0039062, 1.6914062, 0.6616211, 1.7597656, 2.7480469, 0.30566406, 3.6074219, 0.17407227, 1.4511719, 0.6879883, 2.0527344, 0.024353027, -3.3691406, -2.1738281, 0.39208984, -0.87158203, -0.37963867, 0.7290039, -0.18884277, 1.9111328, 1.6230469, -0.88427734, 0.9404297, 1.5449219, 2.4804688, 0.8535156, 1.4111328, -1.3056641, -2.6875, -2.2890625, -2.0605469, 1.9414062, 2.7363281, 1.3320312, -0.38867188, 2.6777344, 2.140625, 1.7041016, 0.5605469, 0.17370605, -1.171875, 1.1445312, -2.71875, 2.3339844, -1.21875, 0.5, -1.0029297, 0.97265625, 1.6298828, 1.25, 0.58935547, -0.6611328, -0.35009766, -0.6850586, -0.6220703, 0.59716797, -0.60253906, -1.7939453, 0.032989502, 1.1298828, -1.4365234, -1.8769531, 0.8120117, 4.0039062, 1.7392578, 1.734375, 0.3059082, -1.3027344, 1.6816406, 0.18566895, -0.19396973, -2.2988281, 0.1694336, 0.19091797, 0.15844727, -0.25, -0.39794922, -0.36621094, 1.0683594, 0.59716797, 1.9570312, -1.1347656, 2.0488281, -0.12976074, 0.9511719, -1.8300781, -1.3125, 0.890625, 1.3740234, -0.7026367, 3.8847656, 0.16638184, -1.7958984, 0.8095703, -0.17907715, 1.7001953, -1.3378906, -1.8886719, -1.6640625, 4.1796875, 1.3183594, -0.19726562, -2.0390625, -3.7519531, 0.65234375, -0.609375, 1.7431641, 2.4082031, -3.0507812, 0.03741455, -2.2558594, 2.4648438, -0.1295166, -1.296875, -0.1126709, 0.21911621, 0.8623047, -0.7661133, 0.9995117, 1.8554688, -0.7832031, 1.6455078, 3.9570312, 1.8496094, 2.0527344, 2.2734375, -0.51464844, 1.2460938, -3.5097656, -0.28857422, -1.7080078, 2.0332031, 0.09094238, 0.9711914, 0.53759766, -0.64404297, 0.28881836, -3.2128906, -1.1503906]}, "B07477NMF4": {"id": "B07477NMF4", "original": "Brand: ThermoPro\nName: ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver\nDescription: \nFeatures: BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs\nDual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually\nLarge, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments\nHighly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within \u00b11.8\u00b0f (\u00b11\u00b0c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716\u00b0f and a wide temperature of 14\u02daf to 572\u02daf (-10\u02dac to 300\u02dac), cook anything in any grill setup\nEasy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill\n", "embedding": [-4.53125, 1.6914062, 4.5742188, 1.0371094, -0.6767578, 0.5966797, -0.84765625, 0.8286133, 0.32641602, 0.77441406, 0.55908203, -0.77685547, -1.0957031, -1.4248047, 1.1455078, 0.90478516, 1.1533203, 0.60302734, 1.6757812, 3.4589844, 2.2167969, 2.4375, -0.13305664, -0.46411133, 2.2050781, 0.37841797, 2.2460938, -2.6230469, -0.7553711, -1.3759766, 3.0585938, 3.7011719, 0.47460938, 0.73535156, -1.9921875, -0.31811523, -1.5263672, 0.8515625, 0.4387207, -0.20080566, -0.35595703, 0.76660156, 0.5522461, 2.8886719, -2.9160156, -1.6982422, -1.0800781, 1.828125, -2.765625, 0.2376709, 0.23461914, 2.6484375, -1.5869141, -0.030303955, 0.48999023, 0.8535156, 0.34960938, -2.5566406, 0.7763672, 0.9423828, -0.44995117, -0.050201416, -2.4375, 0.6821289, 0.90625, -0.3161621, 0.39086914, -2.6796875, 0.6245117, 0.35620117, 0.6591797, -0.23266602, 0.5229492, 1.2900391, 1.4892578, -1.7509766, 0.20593262, 0.5185547, 1.7900391, 1.1210938, -0.67089844, 2.8964844, -0.12890625, -1.6308594, 0.5229492, -2.0234375, 0.8105469, 0.42138672, 2.9472656, -0.4020996, -0.56396484, 2.6542969, -1.9814453, -3.421875, 1.8232422, -1.6005859, -0.3527832, -0.7817383, -1.46875, 2.5390625, -1.4384766, -0.6142578, -0.20776367, 1.2998047, -2.5214844, -2.5800781, 0.6508789, 1.3544922, -3.6855469, -1.8769531, -1.609375, 1.4785156, 0.33764648, 0.5839844, -0.90625, 0.38500977, -0.031677246, 1.0976562, 0.17016602, 1.8681641, 1.6904297, -1.8808594, 0.5727539, -1.3085938, -0.36621094, 0.90722656, 2.1503906, 0.23083496, 1.3808594, 0.87353516, -1.3525391, -0.66796875, 0.81933594, -0.9091797, 2.2558594, -2.4296875, -2.0390625, -1.609375, -2.5, -1.4326172, -1.7919922, 1.1533203, -0.77441406, 1.6679688, -1.1367188, -1.8505859, 0.21398926, 0.8286133, 1.6816406, -1.4111328, 1.6777344, -2.5566406, 0.30517578, -0.32226562, 1.8730469, 1.3652344, -0.7729492, -0.13562012, 2.6582031, 1.0332031, 0.08319092, -0.8496094, -1.3603516, -0.77441406, 0.9760742, -0.20166016, -2.8105469, 1.6542969, 1.5302734, 2.5703125, 1.2685547, -1.6582031, 0.6611328, -0.64941406, 0.71240234, -3.1347656, 2.328125, 3.6152344, 1.7607422, 2.046875, -1.3916016, -1.3339844, 0.3215332, 1.0683594, -0.20202637, -2.3671875, -1.4736328, 0.9267578, 2.8261719, -2.6464844, 2.2949219, 2.84375, 1.4892578, 0.54003906, -0.14147949, -0.33276367, -1.2900391, -3.5117188, 1.7529297, 0.10406494, -0.5136719, -0.026016235, -1.890625, -3.0664062, -0.77685547, -1.7880859, 0.21899414, -0.5751953, 1.6396484, 1.0654297, 0.37060547, -1.8867188, 0.6044922, -1.9101562, 0.10192871, -2.9648438, 0.8774414, 0.5629883, -0.5732422, 2.2539062, -0.41259766, -0.37231445, 0.4230957, 4.5898438, -2.1152344, 2.2714844, -0.32617188, 0.7651367, -1.6386719, -0.2854004, 2.9550781, -0.27563477, 1.1289062, -1.9248047, -0.7290039, 1.4394531, 0.58496094, -1.6103516, -1.1474609, 0.49047852, -0.25585938, -2.0703125, 0.30541992, -0.88378906, -0.65283203, -0.61328125, -2.9121094, 3.640625, 1.6289062, -0.6484375, 0.36767578, 0.67089844, 0.023132324, -0.67529297, 0.51660156, -0.76708984, -0.17871094, 0.97558594, -2.5175781, -1.9667969, 1.5556641, -0.24121094, -2.234375, 2.4355469, 2.0488281, 0.16577148, 4.1914062, 1.9238281, -0.60302734, -1.0087891, 1.2910156, -0.41186523, -1.2587891, 0.4494629, 1.8632812, 1.8544922, 1.1347656, 1.2060547, 1.7099609, -1.6845703, 0.65234375, 2.1328125, -0.43041992, -0.88720703, 0.5419922, 0.15942383, -2.0273438, -1.6572266, -0.10626221, -0.085510254, 3.4882812, 1.3447266, -3.0078125, 3.1347656, -2.671875, 0.46166992, -0.8574219, -1.6738281, 1.5371094, -2.8398438, 2.8945312, 0.20727539, -1.7597656, -0.9160156, -0.45581055, 0.5263672, 1.9707031, -0.6640625, 1.5683594, 1.0185547, 0.98828125, -1.5527344, -3.1074219, -0.4152832, -0.62060547, -2.7207031, 0.27929688, -2.5097656, 1.1787109, -1.5332031, 1.5087891, 2.7285156, 0.9272461, -1.2519531, 0.99316406, 1.7119141, -0.2770996, 0.9326172, 1.3359375, 0.26782227, 0.17016602, -1.1103516, 0.42114258, 0.25268555, -2.6445312, 0.32592773, -1.3466797, -1.2802734, -0.25073242, 0.25561523, -1.4140625, 2.3320312, -1.6572266, -0.026794434, -0.1385498, -1.8798828, -0.34472656, -1.3330078, -0.22216797, -1.4384766, 0.39453125, -1.2773438, -0.9868164, -2.3964844, 1.5527344, 0.4519043, -1.1953125, -0.11022949, -3.0585938, 1.2558594, -2.4121094, 0.20727539, 1.1210938, 0.93408203, 0.15515137, -1.3613281, 1.7001953, -1.7832031, -0.0362854, -3.5957031, 0.70703125, -2.0410156, -0.065979004, -2.0234375, 0.10284424, 0.51953125, 0.6489258, 1.1943359, -1.3955078, 3.0449219, -1.9853516, 1.8378906, 2.1699219, 2.1933594, -1.3183594, -2.0761719, -0.2614746, -1.8691406, -1.6640625, -3.5566406, -0.003709793, 0.029006958, 1.6767578, -0.23449707, 0.13696289, -0.9555664, 0.96972656, -2.0136719, -2.8652344, -1.0332031, 2.1074219, -1.7978516, -1.8671875, -1.984375, -0.38256836, -1.8466797, -2.4394531, 1.3291016, 1.9394531, 0.7949219, 3.5253906, 1.2841797, 0.78515625, 0.13562012, -0.8725586, -3.6855469, 1.5537109, 0.8305664, -2.46875, -0.79345703, -0.08721924, -0.9946289, 0.50634766, -0.43139648, 3.5332031, 0.9716797, 3.9863281, -1.1796875, 0.015960693, 1.7021484, 1.6953125, 0.4152832, -0.51464844, 1.4316406, 0.60595703, -4.2421875, -2.4726562, 1.2861328, 1.109375, 0.08001709, -2.9785156, 0.6953125, 1.1396484, 4.7148438, 0.77197266, -1.4248047, -0.48706055, -2.4863281, 2.0625, -0.7084961, -2.5175781, -1.7714844, -0.26416016, 0.99658203, 0.75439453, 0.83496094, 3.9394531, -0.13806152, 0.7910156, 1.4287109, 0.72558594, -1.7109375, -1.6513672, 1.2587891, 1.3896484, 0.9477539, 0.5541992, 0.3630371, -0.97998047, 0.6645508, 0.093688965, 0.87646484, -1.5673828, -0.5307617, 0.8574219, -0.4104004, 0.9272461, 0.82714844, -0.124572754, -0.34033203, -2, -0.35229492, 1.5966797, -1.0546875, 1.7246094, -0.52197266, -1.1660156, -1.3144531, 1.2587891, -0.9248047, 0.3779297, -0.5805664, 2.375, -1.3300781, -1.2119141, 0.56396484, 0.99853516, -0.46435547, -1.4462891, -0.31420898, -0.13757324, -1.3164062, -2.75, -0.2878418, 1.3417969, -2.6777344, -2.5859375, -0.75146484, 2.2988281, 1.4990234, 0.08282471, -1.0390625, 0.58691406, 0.49658203, -1.9697266, -4.0585938, 0.63378906, 0.8779297, -0.9453125, 0.20678711, 1.8447266, 1.4501953, 0.4555664, -0.8491211, 1.3525391, 0.5654297, -3.7207031, 0.03591919, -2.6816406, -0.7163086, -1.8017578, -4.3203125, 1.3154297, -0.2902832, 2.1738281, 1.6464844, 1.8642578, 1.1308594, 2.9042969, 0.48120117, -2.7285156, -1.6816406, -0.75, -0.35351562, -0.109069824, -1.1767578, 5.2460938, 0.91552734, -0.3947754, -0.6899414, -1.2675781, 0.23535156, 2.6875, 1.9423828, 1.4052734, 0.41796875, -0.107543945, -0.082092285, -0.22802734, 0.08178711, -0.22619629, 0.026672363, -0.80126953, -1.6845703, 1.8994141, -2.9101562, 0.30810547, -1.5839844, 3.1445312, -0.42260742, 0.5703125, -1.0556641, 2.0546875, 1.3476562, -0.31884766, -1.1113281, -0.9394531, -1.6640625, 1.5332031, -0.23535156, -0.82470703, -0.077941895, -3.2714844, -2.1289062, 0.3244629, -0.38452148, 0.57714844, 1.3056641, -2.515625, 0.51904297, -0.038391113, -1.3447266, -0.80615234, -0.24145508, -3.1933594, 0.2854004, -0.23217773, 0.6513672, 0.7519531, -2.1289062, -1.125, -3.7070312, 3.5214844, 3.2265625, 1.0664062, 3.1367188, -0.30151367, -0.7128906, 0.18469238, -0.8847656, -0.0005979538, -0.84033203, 1.0566406, 0.35058594, 0.10058594, 1.4658203, -1.265625, -1.0019531, 0.9160156, 1.0537109, 0.8461914, -0.4489746, 0.13122559, -1.3769531, 0.96435547, 4.5078125, 0.85498047, 3.2265625, -1.4365234, 2.140625, -0.53222656, -1.4990234, -0.3786621, 1.0771484, 0.4567871, 0.31835938, 0.20727539, 0.34301758, 2.1777344, -1.7216797, -0.5410156, 0.6503906, -0.54296875, 1.125, 2.0292969, 1.4111328, 1.2304688, -2.1953125, -2.0800781, 2.7578125, 2.1855469, -1.5664062, 4.6367188, -0.17248535, -2.2050781, 0.65478516, 2.3496094, -2.1308594, 1.4658203, -0.7402344, -1.4814453, 0.30419922, 0.08178711, -2.4902344, 0.22521973, 2.4980469, -0.68359375, 1.8710938, -1.2949219, -1.1757812, 2.8671875, -3.1269531, -0.21386719, -0.18286133, -0.62353516, 1.2666016, -1.015625, -2.5078125, -1.5712891, 2.7382812, 2.2011719, -1.3847656, -1.0615234, 0.20678711, -1.9746094, -2.1523438, -0.10205078, -1.8691406, -2.7695312, -0.8959961, 0.8569336, -0.59716797, -1.3837891, 0.47729492, 1.5869141, -1.2011719, -0.3310547, -1.1611328, 4, -1.6044922, 0.41333008, -0.15234375, 0.45141602, -1.4960938, 0.9760742, 0.047912598, -2.046875, 1.2792969, 2.1445312, -0.9111328, -1.4052734, 0.55566406, -2.6523438, -3.4296875, -0.82177734, 1.7148438, 1.1962891, -0.51660156, 0.028060913, 0.04714966, -0.61376953, -1.2636719, 0.93359375, -0.94140625, 0.6508789, -1.3203125, -0.26904297, -0.5751953, -0.47021484, -0.42089844, 1.5986328, 0.44262695, 1.8056641, -1.6162109, -3.3847656, -1.4287109, -0.4855957, -2.7167969, -2.7734375, 1.7109375, 2.3261719, -2.3398438, 0.7651367, -0.39208984, -1.9472656, 2.7050781, -0.5361328, 0.94873047, 0.44848633, 0.35913086, 1.2919922, -2.3476562, 0.9243164, 1.2734375, -0.81933594, -0.13879395, 1.9804688, -3.1289062, 0.9638672, 0.69140625, -1.9179688, -1.8496094, -1.6103516, -0.36108398, 0.02418518, -0.01247406, -0.10803223, 1.4052734, -3.1738281, -5.3671875, -1.0234375, -1.5742188, -0.042541504, -2.8046875, 0.42260742, 2.5839844, -0.20117188, 1.9912109, 0.5292969, 1.0380859, -3.8359375, 0.67089844, 1.3945312, 1.2490234, 1.3125, -0.83496094, 0.18103027, -2.1582031, -0.16235352, 1.4013672, -1.1025391, -1.7207031, 0.59033203, -2.4296875, -0.7758789, 0.41601562, 2.8339844, -0.15625, -0.9975586, -0.08276367, 0.55126953, 2.984375, -1.8095703, -0.28295898, 0.421875, 3.1035156, -0.9194336, 4.25, 0.14758301, -2.6953125, 0.7006836, -1.5869141, -0.23449707, -0.09118652, -0.124572754, 2.2050781, -1.4511719, -0.65771484, 1.3320312, -3.4199219, -0.32348633, 1.8535156, 3.5566406, -0.34692383, -0.87939453, 4.953125, 1.4853516, 0.029907227, 3.1816406, -1.4814453, 0.99316406, -0.9550781, -1.1796875, -1.1191406, 1.8193359, -1.7773438, 0.26708984, 1.5458984, 0.8364258, -2.2910156, 2.1582031, 0.16430664, 1.9931641, 1.4257812, 1.8457031, 2.6640625, 1.8339844, 2.3085938, 1.0820312, 2.6171875, 0.7236328, -1.3525391, -0.4104004, 2.3164062, 0.2064209, 0.4333496, -1.3847656, 1.0068359, -0.8886719, 0.3161621, 0.46411133, 1.6875, -0.8041992, 1.1152344, 1.6582031, 0.30566406, 0.49658203, -3.8886719, -0.5004883, -0.43603516, 1.3525391, -2.5625, 3.6386719, 1.4667969, -0.7402344, 0.5283203, -0.6171875, 0.19726562, 2.140625, -2.9003906, 0.44628906, 1.6494141, -1.0380859, -1.4257812, -0.002462387, 0.99658203, 1.8867188, 2.2558594, -1.03125, -0.671875, 0.86621094, 1.1416016, -0.26367188, -1.2568359, -0.21911621, 2.7675781, -1.90625, -0.81933594, 0.51904297, -0.5, -3.4414062, 0.4333496, 2.453125, -0.49902344, 2.7734375, -2.4628906, -3.4277344, 2.9765625, 0.049072266, 0.5625, -0.40673828, -0.20080566, 0.4465332, 0.34521484, 1.9052734, 1.2919922, -0.4033203, 2.015625, -2.8925781, -2.0410156, -1.4589844, -0.27197266, 1.0742188, 2.3066406, 1.0380859, -0.22290039, -0.18603516, 0.5917969, 2.9785156, -0.9082031, -1.3867188, -3.0273438, 1.3417969, -0.5839844, 0.86816406, 0.3684082, -2.9863281, -0.80126953, -0.8540039, -2.0390625, -0.6147461, -0.46704102, 1.28125, 0.86621094, -0.63916016, 0.9682617, -0.22692871, 2.1679688, 2.53125, 0.8276367, 1.1796875, 1.0009766, -1.7861328, 2.53125, 1.4785156, -2.0019531, 1.8466797, 0.2512207, 1.1005859, -0.28271484, -0.11798096, -0.7607422, 0.2998047, -0.49121094, -0.30981445, 0.88916016, 1.9111328, 0.8339844, 1.0048828, 0.44189453, -0.4658203, 0.7895508, -1.9404297, -3.1953125, 1.0576172, 1.6591797, -0.9638672, 0.099121094, -0.9321289, -0.8588867, -1.1923828, 0.62646484, 0.55078125, 1.1230469, 2.7832031, 1.6699219, 0.4296875, -0.20532227, -2.0917969, -1.4707031, -0.85595703, -1.2001953, -0.46533203, 0.6958008, 0.7128906, -1.3876953, 1.3535156, 0.22131348, -1.4863281, -0.9667969, -3.0136719, 0.7363281, -1.8828125, 0.73828125, -0.77197266, 0.60791016, 0.8286133, 1.2099609, 0.8276367, 0.94140625, 3.4335938, 2.9257812, 1.6132812, -2.6992188, -1.9658203, 1.9423828, 1.6308594, 0.43017578, 2.3320312, 0.2614746, -0.36157227, -0.4020996, -1.0341797, -1.6386719]}, "B07QPQZ1B8": {"id": "B07QPQZ1B8", "original": "Brand: grilljoy\nName: grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men\nDescription:
Why is this the best BBQ Grilling Tools Set for you?
Quality, Durability, Design, Utility. You'll get 6 complete BBQ Accessories Kit.
Why choose us?
Grill better, faster, and with less effort
Design
Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you'll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
Premium Quality
Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
Gift Ideas
It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
Note:
1.Please keep sharp tools away from children to avoid hurting.
2.We recommend cleaning all tools before and after use and dry them for better maintenance.
3.Please store the tools set in a cool and dry place for save.\nFeatures: \u3010Complete Barbecue Accessories\u3011BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe.\n\u3010Premium Quality\u3011Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don't worry about rusting or cracking. You can't find a better barbecue tool set than this.\n\u3010Elegant Design\u3011As soon you remove these deluxe tools from the portable bag, you'll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm.\n\u3010Convenient Storage\u3011Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\n\u3010Satisfactory After-sales Service\u3011 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.\n", "embedding": [-1.0244141, 2.9433594, 1.7666016, -0.45361328, 0.45263672, 1.0615234, 1.0185547, -0.7553711, 1.4257812, -0.796875, -0.51660156, -0.5708008, 0.35766602, -2.640625, -2.8457031, 1.1425781, -0.7792969, 1.0166016, 2.5527344, 2.1679688, 0.88720703, 0.49560547, 1.1865234, 1.5771484, 1.59375, 0.26367188, 3.7597656, -3.0273438, 2.734375, 1.109375, 1.5800781, 0.56103516, 0.7988281, 1.8476562, -3.6113281, -0.41601562, 0.78808594, 2.2695312, -0.6586914, 0.028152466, -0.5917969, -0.76123047, 1.8398438, 2.2832031, -3.6855469, 0.6821289, -1.0205078, 1.8574219, -1.4189453, -3.9980469, 0.6669922, 2.0976562, 0.00054359436, 0.7138672, -2.8261719, 2.2929688, -1.53125, -4.59375, 1.9140625, -0.97509766, 2.0097656, -0.7626953, -0.18115234, -1.3740234, 1.4111328, -1.0527344, 1.5859375, -0.8730469, -0.055511475, -1.3857422, -0.29077148, 0.26831055, -0.6586914, -0.94873047, 0.08721924, 0.09069824, -0.6459961, 2.3359375, 0.38012695, 1.7617188, -1.7724609, 3.4570312, 0.17834473, -3.6367188, 0.47094727, -1.21875, -1.0576172, 0.31982422, 1.1279297, -0.86572266, -1.6484375, 3, -2.2460938, -4.6171875, 2.4101562, -1.3183594, 0.59033203, -2.3320312, 1.2480469, 1.7421875, -2.1699219, -0.75097656, 0.49267578, 0.4650879, -0.0068855286, -0.43530273, 0.98876953, 1.4208984, -2.8007812, -1.5029297, -2.2363281, 0.9770508, -0.4099121, 0.87597656, -1.6201172, 0.97558594, -1.2587891, 0.6010742, 0.7709961, 1.9921875, 2.421875, 1.0830078, -0.65527344, -1.9726562, -0.41210938, 1.7871094, -0.79589844, 4.8945312, 4.1679688, 0.24780273, -0.7807617, -0.8989258, 0.39526367, -1.7724609, 0.41992188, -2.921875, -1.5175781, -1.0546875, -1.3496094, 3.3886719, -0.11218262, 0.27685547, 2.7460938, -0.94677734, -1.9501953, 0.9633789, -0.28173828, 0.27905273, 0.2788086, -1.921875, 0.8901367, -1.3037109, 0.25024414, -1.1992188, 3.6113281, -0.10491943, 2.1464844, 0.050689697, 1.3837891, 1.0507812, 0.37548828, -3.2441406, 0.2939453, 1.9794922, 0.2902832, -3.0703125, -0.9716797, 3.78125, -0.03869629, 1.8447266, 0.47729492, -2.0625, 0.22094727, -1.0917969, -0.35986328, -0.8520508, 0.62841797, 2.6601562, 0.40429688, 0.0947876, 1.6328125, -4.171875, 1.1582031, 2.640625, 0.44726562, -1.9433594, 2.8261719, 0.43530273, 1.0722656, -0.12145996, 1.9902344, 1.1904297, 0.359375, 1.4609375, 0.66308594, -2.921875, 0.7246094, -2, -0.99658203, 1.0908203, -0.8833008, -3.5078125, 0.5961914, -0.57714844, -1.2568359, -1.9423828, -0.53515625, -0.7011719, 2.1347656, 1.5214844, 0.7260742, -1.4042969, 1.8935547, 0.99658203, 1.0400391, -2.2832031, 0.56347656, -1.8808594, 2.3203125, 1.2958984, -2.09375, -0.4934082, -1.6738281, 2.7851562, 1.7802734, 0.5800781, -1.3925781, 1.6474609, -1.0791016, -0.052124023, 0.16845703, 0.6738281, 0.46142578, 1.1796875, -1.4003906, 0.7783203, 0.48046875, -3.1035156, -1.890625, -0.64160156, 1.0898438, -1.1855469, -0.35375977, -1.5410156, -1.2207031, -1.6181641, 0.47094727, 1.7802734, -0.8330078, -3.0429688, -0.7241211, 2.2636719, 0.7109375, 0.56689453, 0.11291504, 0.31152344, -1.34375, 1.0371094, -3.7617188, 0.78564453, 1.6865234, 0.050720215, 1.1738281, 0.5317383, 1.1328125, -0.89453125, 2.84375, -2.1542969, -1.1386719, -0.15332031, 0.27905273, 0.578125, -0.63378906, -0.8876953, 3.2675781, 1.5244141, -1.5439453, 0.03869629, 0.9873047, -1.9921875, -1.0966797, 0.032348633, 2, -1.7919922, -1.0087891, -1.9355469, -2.09375, -1.9970703, 1.5595703, 1.7226562, 5.9023438, 1.0322266, -1.5878906, 3.7207031, -1.5771484, 1.6191406, 1.7851562, 0.074523926, -0.80566406, 0.28320312, -0.7607422, 1.3623047, 0.5546875, 0.5991211, -1.1396484, -0.375, 1.1152344, -3.0703125, -0.31811523, 0.82128906, -3.71875, 0.122802734, 1.3652344, 0.3869629, -1.6630859, -0.025604248, -2.9902344, -0.79003906, 0.26098633, -0.33544922, 0.26123047, 2.4082031, -0.25341797, -2.5390625, -0.6123047, 1.3388672, -1.9697266, 0.7758789, 0.58496094, 0.33666992, 1.4228516, 0.38549805, 0.09082031, -1.8046875, -1.8203125, -1.2353516, -1.4667969, -0.99121094, 1.2832031, -0.2998047, -0.5786133, -0.9692383, -3.0214844, -0.27807617, -1.7705078, -2.6269531, -3.1074219, 0.32592773, 0.33496094, -0.38134766, -2.3320312, 0.95214844, 1.2158203, -2.5175781, 0.9375, 0.025543213, 0.8496094, 0.3774414, -2.2402344, 1.4765625, -0.94677734, -0.7675781, 0.890625, 2.0585938, -0.6098633, -0.53222656, 1.8583984, -3.0019531, 0.60058594, -1.0410156, -0.4814453, 1.046875, 1.2978516, -1.7128906, -0.5595703, -1.3857422, 0.45581055, 2.4101562, -2.21875, 1.4667969, 0.8730469, -0.58691406, 0.14672852, 0.37304688, -0.77978516, -2.7109375, 2.4609375, -1.1845703, 0.84228516, -2.3261719, 1.5166016, -2.2363281, -0.95751953, 0.26757812, 3.4589844, -1.7109375, 1.2109375, -1.4892578, -2.234375, 0.20239258, 1.1103516, 1.2958984, -0.57910156, -0.76464844, -1.4394531, -1.2851562, -0.6855469, -3.0097656, 2.5820312, -2.4648438, -2.015625, 1.5625, 0.69091797, 0.14697266, 1.7695312, -1.5800781, 1.171875, 0.2734375, -2.171875, -2.3886719, 0.17089844, -1.53125, -2.4472656, -0.2919922, 3.2324219, -0.9140625, 1.8789062, -0.32421875, 0.8378906, 0.07110596, 1.5341797, -0.7128906, -0.36889648, 1.2451172, 1.1953125, -0.59472656, -2.0253906, 1.2421875, 0.10809326, -1.1152344, 2.7578125, 0.93896484, 1.4980469, 1.3554688, 1.4228516, 0.71484375, 1.0205078, -1.4726562, 1.6953125, 1.4072266, -0.6870117, -3.4453125, 1.6572266, -0.57910156, -2.8886719, 0.4633789, 1.3203125, 0.26171875, 2.7792969, 1.6083984, -0.64453125, -1.9550781, 1.6386719, 1.7041016, 2.2636719, 0.3815918, 1.046875, -1.5224609, -1.7978516, 0.9213867, -1.2255859, 2.1210938, -3.3320312, -0.7138672, 2.0117188, -0.024230957, 0.5078125, -0.7885742, -0.5629883, -1.8613281, -2.0214844, 0.79248047, -2.0332031, -1.4765625, -0.8833008, -0.64697266, 0.48364258, -0.059051514, 2.2617188, -0.4831543, -0.6152344, -1.84375, 2.4667969, -1.3222656, -0.4597168, -0.84814453, 1.3662109, -1.6914062, 1.2744141, -0.9941406, -1.9414062, 2.8125, -4.3632812, 0.86572266, 0.08581543, -1.4199219, -0.36572266, 0.8442383, -1.09375, 0.97265625, 0.84814453, 0.42919922, 0.7578125, -1.0175781, 0.011024475, -0.86621094, 1.2978516, 0.19934082, -1.8212891, -0.98046875, 0.4099121, 1.5654297, 0.7714844, -1.3398438, 3.2109375, 1.2958984, -3.1621094, 0.36157227, -3.5039062, -1.296875, -1.203125, -3.3574219, 0.67285156, 1.7744141, 1.9960938, 1.09375, 1.1552734, 0.7993164, 4.7109375, 0.4765625, -1.9990234, 0.5258789, 0.0064849854, 0.31396484, 0.13134766, 0.038116455, 1.4179688, 0.17004395, -0.0019874573, -2.7832031, 0.8378906, -1.9101562, 1.9394531, -0.030960083, -0.99121094, 0.13012695, -1.5234375, 0.6230469, -1.1376953, 0.8286133, -0.076416016, -2.7929688, 0.03540039, -0.032562256, 1.9316406, 0.71240234, 1.3642578, -3.6054688, 0.12597656, 0.2619629, -2.8574219, -1.6621094, 1.2148438, 4.1875, -0.6899414, -0.5751953, -0.25732422, -0.013633728, -0.63378906, 0.025848389, 1.4667969, -1.1259766, -1.8613281, 0.7885742, 0.5917969, -0.40063477, 2.8535156, -0.39526367, -1.8339844, -1.2021484, 2.6621094, -2.3066406, -2.2226562, 0.28393555, -2.1386719, 0.6791992, -0.9067383, -1.8769531, 1.9570312, -1.6396484, 0.38842773, -0.30200195, 2.0058594, 0.7705078, -0.22399902, 5.0703125, -0.94140625, 0.031829834, 1.3212891, -3.1347656, -1.6845703, -0.8383789, 0.2998047, -0.88964844, 0.5673828, 0.85546875, -0.15307617, 1.5400391, 0.44360352, 1.2207031, -0.625, -2.5351562, 2.5898438, -0.77734375, 0.18640137, -0.4189453, -1.9462891, 2.4003906, 0.2536621, 1.1103516, 2.7558594, 0.46411133, -0.8984375, -1.2910156, 0.83740234, 0.029937744, 0.31103516, 1.8896484, 2.546875, -0.98583984, -1.1396484, 0.3293457, 0.19042969, -0.099243164, 0.5151367, 1.1162109, 1.7041016, -1.1816406, -0.29052734, 2.3046875, 1.71875, -1.5273438, 3.6367188, -1.0048828, -3.5976562, 2.0742188, 1.2373047, -3.2871094, 0.5102539, 0.22363281, -1.3525391, 0.033843994, -0.33251953, -0.49487305, 0.6508789, 0.30371094, -0.77001953, 0.02558899, -3.7109375, -1.0683594, 0.61816406, -0.2097168, 0.6801758, -1.1474609, -0.6928711, 1.7714844, 0.10064697, 0.28100586, 0.5986328, 2.546875, 3.7070312, 0.73779297, -1.0849609, 0.3935547, -1.3730469, 0.19787598, 0.06506348, -1.0722656, -2.8945312, 1.2988281, 2.4628906, 2.046875, 1.1064453, 0.328125, 2.2480469, -1.5556641, 1.5605469, -1.4863281, 3.5820312, -1.4121094, 0.8330078, 0.9770508, -3.0585938, -0.49658203, -1.1826172, 2.6972656, 0.5029297, 0.92041016, -0.110839844, -2.0351562, -1.5664062, 0.05130005, -0.6347656, -4.4921875, -1.0654297, -0.16345215, 0.56396484, 0.6586914, -0.53027344, 0.39892578, -0.4465332, -1.0927734, -1.1142578, 0.2902832, -0.68847656, 0.95410156, 0.37817383, -2.9257812, -0.5644531, -0.10858154, -0.23205566, 1.265625, 1.5605469, -1.1933594, -4.09375, 0.8144531, -0.22558594, -2.6933594, -2.6621094, 1.9755859, -0.22216797, -0.36206055, 0.57128906, -0.13806152, -1.1757812, 0.006252289, -2.2558594, -0.65478516, -2.46875, -1.3759766, 1.2783203, -2.328125, -2.046875, -0.18225098, -2.5585938, 2.1992188, -0.10620117, 1.3837891, 2.2753906, 0.5083008, -1.4833984, -0.99853516, -1.2568359, 1.5800781, 0.90722656, 0.6269531, 0.64746094, -0.4267578, -3.3105469, -0.2590332, 0.67089844, -0.7451172, 2.0195312, -2.6113281, -0.5908203, 1.5029297, 0.062805176, -1.0654297, -1.1943359, 0.61083984, -0.78271484, -0.82421875, 1.234375, 3.0839844, 1.3115234, -1.6083984, 0.5629883, -0.9277344, 0.39819336, -0.48461914, -1.875, -0.45043945, 0.11657715, -0.60546875, -1.171875, 0.5341797, 1.2832031, 2.4023438, -0.10699463, -2.3007812, -1.8876953, 1.3779297, -1.7255859, 2.8027344, 0.47338867, -0.055023193, -0.7685547, 4.0234375, -2.015625, -2.6445312, 1.296875, -1.1669922, 0.91552734, 1.1455078, -2.4511719, -1.1025391, -0.69970703, 1.8134766, -2.0195312, -1.5742188, -2.34375, 0.85791016, 0.23620605, -0.23828125, -0.83740234, 4.1992188, -0.40844727, 2.7578125, 1.8154297, -0.8256836, -1.9853516, -1.1552734, -0.10681152, 0.8745117, 1.515625, -0.7314453, 1.1416016, 0.89160156, -1.5664062, -1.6181641, 1.5214844, 2.2382812, -0.1026001, -0.17211914, 1.5214844, 0.28955078, 4.3164062, 4.2382812, 0.17871094, 0.9248047, 2.28125, -0.44482422, 0.37817383, 3.4296875, 0.6381836, -1.9111328, -0.10668945, 0.39697266, -0.4350586, 0.44677734, 0.3383789, 1.28125, -0.69677734, -0.38183594, 1.8730469, 1.1542969, -0.8886719, -0.8203125, 0.018554688, -1.6826172, -2.0859375, -1.2636719, -0.3408203, 3.0976562, 1.0458984, 0.33813477, -1.2558594, -0.8925781, 2.0449219, -2.4355469, 0.9741211, 1.0595703, -0.41455078, -2.3671875, 1.7832031, 2.125, 1.0527344, 2.6386719, 0.4958496, -0.2043457, 1.5205078, 0.9794922, 0.80126953, -1.03125, 0.28466797, 1.5419922, -0.5029297, -1.0800781, -1.3701172, -0.8520508, -1.9257812, 0.6616211, 2.0644531, 1.2324219, 2.3242188, 0.032043457, -5.5585938, 1.4433594, 1.4013672, 2.5136719, -0.34204102, 0.8466797, 1.7861328, -0.375, -0.5908203, 0.41870117, -0.26513672, 0.8071289, 1.2275391, -2.3203125, 0.82177734, 0.87597656, 0.40039062, 1.6064453, 2.4765625, -2.0507812, -1.0488281, 0.9160156, 2.1582031, -0.059906006, 2.375, -0.3046875, 2.09375, -0.47802734, 1.2490234, 1.4755859, -0.49194336, 0.2980957, -0.96972656, 1.1220703, 0.9892578, 0.36523438, -2.9160156, -0.1027832, 0.42236328, -1.1181641, 0.3503418, 2.9707031, 2.2363281, 2.1523438, 0.78271484, -0.5175781, -2.0488281, 1.4912109, 1.5332031, -1.4697266, -0.44580078, -0.8491211, 0.07232666, -0.8852539, -1.4658203, 0.7871094, 0.8808594, 0.7211914, -2.5859375, 0.6542969, -0.3166504, 0.40161133, 0.73876953, -1.8222656, -2.3671875, -1.7197266, 0.036132812, 1.3535156, 1.9423828, 2.09375, -0.4609375, -0.5649414, -1.7363281, -0.76416016, 0.09429932, -0.78808594, -2.4296875, 0.84228516, 3.3515625, 2.15625, -0.5209961, -2.09375, -1.9033203, 2.6015625, -2.0039062, 0.02017212, 1.1689453, -1.5283203, -0.72509766, -1.8681641, 2.2890625, 0.52783203, -1.8603516, -0.38208008, 0.27124023, -0.4375, 0.64990234, 1.6308594, -0.38720703, -0.49780273, 1.4765625, 3.3496094, 1.1923828, -0.2319336, 2.0566406, 3.2851562, 1.3359375, -1.6445312, 1.3466797, 0.6533203, 3.7578125, 0.02407837, 0.119628906, 0.20788574, -0.41845703, 0.38012695, 1.1699219, -0.9145508]}, "B071D1SYLY": {"id": "B071D1SYLY", "original": "Brand: SENMOD\nName: SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails\nDescription:

The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4\" SAE inverted flare and the outlet is a 3/8\" NPT female pipe thread.

  • 262,500 BTU's Per Hour Capacity.\u00a0
  • Set at standard propane low pressure - 11\" Water Column.
  • Regulator body is 6 1/4\" Overall Height.
  • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
  • Adjustable gas pressure. Also has a pressure tap.\u00a0
  • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
  • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
  • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
  • Durable and easy to use.
  • Dual stage design maintains constant gas pressure under changing demand and conditions
  • 2 x 15\" Acme x 1/4\" Inverted flare pigtails are included.\u00a0
\nFeatures: 262,500 BTU's Per Hour Capacity.\nSet at standard propane low pressure - 11\" Water Column.\nIf you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product.\nThe Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.\nMounting screws not included.\n", "embedding": [0.22277832, 0.5136719, -0.4572754, 2.046875, -1.1318359, -1.4189453, 1.8320312, -0.96240234, 0.71972656, 0.51416016, 1.4130859, -0.36206055, 1.6474609, -1.4628906, 0.67529297, 1.1201172, 0.86621094, -0.9038086, 1.921875, 0.6796875, 0.051239014, 0.20690918, 1.6269531, -0.9560547, 2.4941406, -0.061828613, 3.4277344, -2.7578125, -2.2539062, 0.46289062, 1.3164062, -0.3635254, -2.2929688, 2.3496094, 0.12866211, 0.6176758, -1.4130859, -0.69677734, -3.9726562, 0.078552246, -1.9345703, 0.14318848, 1.3232422, -2.171875, -2.2070312, -2.9433594, 1.9628906, -1.4980469, 1.1738281, 0.65966797, -0.4099121, 1.7431641, 0.7583008, 1.5224609, 0.1586914, -1.4238281, 0.5053711, 0.17028809, 0.8305664, 2.9199219, 0.9448242, -0.15026855, -3.0234375, 0.23901367, -0.94921875, 0.20617676, -1.7929688, 0.22814941, 0.6689453, 0.81640625, 1.5214844, -1.2529297, 1.2753906, -2.3613281, -0.9614258, 2.015625, -3.484375, -0.4663086, 1.9238281, -0.0061836243, -0.80859375, 0.68408203, 0.4946289, -0.23339844, -0.15270996, 1.4326172, 0.5253906, 2.546875, 1.2773438, 1.1074219, -2.2792969, -0.44506836, -1.8583984, -4.1132812, 0.2993164, 0.86621094, 1.0917969, 0.77197266, 2.2519531, 0.9765625, 0.58691406, 1.8876953, -0.34326172, 0.85546875, -2.3535156, 1.0351562, 1.5400391, 2.171875, -3.3613281, -1.2197266, -0.6459961, -0.045959473, 1.5117188, -1.8574219, -1.2958984, 0.103149414, -0.67626953, -0.6123047, 1.7841797, -0.29736328, 3.4648438, 0.05432129, 0.7973633, -0.11785889, 1.1484375, 0.3305664, -0.890625, -0.20617676, 2.4609375, 0.42382812, 0.5800781, -0.38134766, 4.0859375, 0.79589844, 1.7207031, -2.1386719, -1.8535156, -2.6191406, -2.5644531, -0.6777344, -2.8125, 0.32128906, 2.2304688, 0.15930176, -2.6015625, 0.8930664, -2.9628906, 1.2060547, 2.5800781, -1.9580078, 3.1328125, -1.9921875, 0.7163086, -2.5625, 1.5126953, 0.3017578, -0.08087158, -0.9794922, 0.47973633, 0.7089844, 1.1523438, -1.8251953, -2.5253906, 0.8598633, -2.8085938, -0.8300781, 1.625, -0.2121582, -0.03643799, 0.2800293, -0.9863281, -1.1035156, 1.2421875, 0.42895508, -0.8779297, -0.9213867, -0.20239258, 1.4169922, 3.4960938, 0.953125, -4.3554688, -1.1259766, -1.0869141, -1.3769531, 2.6210938, 1.4599609, -0.61376953, -1.3505859, 0.6772461, -1.1669922, -2.609375, 1.4814453, -1.3740234, -1.8603516, -0.9272461, -2.9082031, -4.8789062, -0.9584961, -0.3840332, 1.8564453, 0.5258789, -0.6489258, -1.0058594, 1.0810547, -2.1894531, -0.93603516, 0.4584961, -0.7597656, -1.1757812, 2.8964844, -0.18884277, -0.3408203, 1.1933594, -2.6230469, 0.18969727, -1.6904297, 1.4150391, 0.9111328, 0.12988281, 0.140625, 1.2744141, 2.3632812, 3.1640625, 0.27197266, 3.2109375, 0.5390625, -0.092163086, -1.2216797, -1.078125, -0.9526367, 0.9345703, 0.87841797, -1.7382812, -1.4902344, -0.86279297, 1.7724609, -0.05987549, -0.19543457, 1.0693359, -0.78466797, 0.66748047, -1.1923828, 1.3066406, -0.115722656, 0.5800781, 0.99609375, -2.3066406, 1.0185547, 2.9140625, -0.19104004, 1, -0.81152344, -2.7851562, -1.0917969, -1.2509766, 0.24829102, 0.86279297, -0.67333984, 0.7182617, -1.4179688, 3.2597656, 0.92871094, 0.703125, 1.5527344, -0.50097656, 1.0292969, 1.7626953, -0.058410645, -1.3925781, 0.68603516, -0.47558594, 1.7265625, 2.1054688, -0.8413086, 1.5439453, 1.0742188, 0.5019531, 1.8261719, -0.097717285, 1.1445312, 1.3095703, -1.3535156, 0.50390625, -2.8300781, 1.5097656, 2.703125, 0.52783203, 2.2910156, -3.0019531, 0.48657227, 2.6855469, -3.0449219, -2.0839844, 1.6787109, 2.1191406, -0.24084473, 3.0390625, -0.11517334, 0.07476807, -0.51464844, -0.31640625, 0.32617188, -1.4042969, 0.3708496, 1.1005859, -0.8222656, -0.6464844, 0.44580078, 0.009025574, 0.8935547, -0.33154297, -0.46362305, -3.1074219, 1.2607422, 0.98095703, -0.4633789, 3.6914062, -1.5292969, 0.30029297, 1.5253906, -1.1923828, -0.90527344, -0.8364258, -0.5107422, -0.22668457, -0.44604492, -0.5761719, -0.76220703, 1.1171875, 0.5595703, -0.08215332, -1.2578125, 2.2226562, -1.4638672, 0.20898438, 1.6367188, -1.2851562, -3.1386719, 0.26293945, 0.38598633, -0.6142578, -1.4541016, 0.6748047, 2, 3.1777344, 2.2753906, -0.37353516, -0.25756836, 1.2900391, -0.7260742, 0.7480469, 2.234375, -0.44970703, -1.90625, -1.328125, -0.37036133, -0.9199219, 0.20007324, -0.9272461, 1.1474609, -1.4716797, 1.0390625, 0.50390625, -0.76953125, -1.1845703, -1.2021484, 1.7167969, -2.6484375, 0.2578125, 0.42993164, 2.3222656, -1.8535156, 1.3828125, -1.3730469, -0.27685547, 0.49145508, -1.7539062, 3.1445312, 0.7832031, -0.33447266, -1.3681641, 0.25708008, -0.0035820007, -0.8647461, -2.3164062, 1.6689453, 1.0820312, -0.8286133, 0.21411133, -1.6054688, -1.3134766, 0.11846924, -0.49243164, -1.3759766, -2.5273438, -1.3740234, -0.060028076, 0.98779297, 0.98876953, 1.4414062, 3.3105469, -2.7753906, -2.53125, -0.26513672, 1.3037109, 0.7207031, 0.09326172, 0.03074646, 0.2734375, -0.24658203, 0.18762207, -0.07348633, -0.08117676, -0.11315918, -1.4726562, -3.1582031, -0.58691406, 2.1992188, -0.23400879, 3.4863281, -1.1728516, 0.11212158, -2.09375, -1.5097656, 3.5214844, 1.9902344, 3.8671875, -1.2167969, 1.0371094, 0.4416504, 0.30566406, -0.44262695, -0.22033691, -2.2597656, 2.3183594, -2.9726562, -1.4238281, 1.9228516, -0.39575195, -1.7265625, 3.0761719, -0.56152344, -0.68847656, 4.9609375, 0.68847656, -0.6064453, 0.16992188, 1.4882812, -0.5673828, -0.57128906, -0.016342163, 1.3398438, -0.99658203, 1.2314453, 0.23071289, -0.11206055, 1.2597656, 1.9599609, -2.0253906, 0.515625, 3.15625, -2.5605469, 1.7871094, -0.21154785, -0.53808594, -0.7314453, 1.8193359, -1.2314453, 0.5576172, -0.9223633, 1.3222656, -0.47924805, -1.5693359, -0.03616333, -0.77978516, 3.9765625, -0.34326172, 0.040283203, 0.24121094, -0.46533203, 1.4873047, 1.5517578, 1.7392578, -0.58691406, 1.0605469, -2.1660156, 0.92626953, -1.6347656, 0.54833984, -0.7348633, 1.7460938, -0.025482178, 0.14099121, -0.2244873, -2.3242188, -1.1220703, -1.234375, -0.32885742, 2.6777344, 2.7714844, -0.73828125, 0.01663208, -1.3544922, 1.6669922, 1.1289062, -0.69628906, -1.2421875, -1.4707031, 1.7509766, -0.08660889, -1.6630859, 2.8730469, 1.3535156, -1.6523438, -1.109375, -3.0371094, 0.9111328, -0.24133301, -0.18432617, 1.1308594, 1.5888672, -0.5185547, 1.7558594, 0.66064453, 2.6777344, -1.3046875, 2.40625, 1.8193359, -1.9326172, -1.3173828, -2.2226562, -4.6601562, 0.119384766, -1.6523438, 1.3310547, 0.4116211, 0.8725586, 0.6645508, 0.5283203, 0.9433594, -2.4199219, -1.1972656, -1.4755859, 2.3691406, -3.0332031, 0.8754883, 0.5234375, -0.089782715, -0.058654785, -2.09375, -2.9511719, -1.0078125, -1.6484375, -0.5410156, -0.93896484, 1.8037109, -0.61279297, 0.6713867, 0.7480469, -0.6611328, 1.1611328, 0.43310547, -1.3720703, -4.2382812, 2.3886719, 0.115356445, 0.38256836, -1.0429688, 1.6103516, 2.5136719, -1.0722656, -2.1230469, -0.2919922, 2.4160156, -0.09350586, 0.08068848, -1.9052734, -2.4121094, -0.56933594, -1.3076172, -1.0927734, 1.6621094, -0.70947266, 0.61279297, 1.2900391, 1.1826172, 1.7382812, -1.4404297, -0.6269531, 3.1210938, 0.5234375, -0.7739258, 0.94873047, -1.7695312, 1.1757812, -1.8320312, 0.5913086, -1.1074219, -2.4570312, -1.5234375, -1.2724609, -2.3652344, 1.3613281, -0.28759766, 0.8198242, -1.4931641, 0.5776367, 0.31835938, 1.4267578, 1.0449219, 0.8730469, -0.5961914, -0.69091797, -0.13134766, 2.15625, 2.8105469, 0.49487305, -1.3427734, 0.7241211, -2.6757812, -0.84277344, 0.62402344, 0.24487305, -0.3930664, -0.79052734, 2.2695312, 1.9052734, 1.7441406, -2.8164062, 2.4296875, 0.9604492, 0.5571289, -2.2851562, 2.8984375, 2.4082031, 2.203125, 0.38232422, -0.3095703, 0.41235352, 0.18884277, 0.5415039, -1.5732422, -0.25512695, -1.7773438, -3.0957031, -0.59228516, 1.6005859, 0.51171875, 0.10345459, -0.5185547, 0.36694336, 0.6533203, -1.0244141, 2.7910156, -0.03213501, 2.7363281, -0.89697266, 0.7890625, -1.7294922, 0.32104492, -0.9423828, 1.8339844, -0.5839844, -3.1835938, -0.22607422, 1.7890625, -0.43603516, 0.47021484, 1.2617188, 0.44799805, -0.99072266, -2.5273438, -0.84521484, 0.5654297, -0.06341553, 0.48120117, -0.58935547, 0.8598633, 1.0458984, 0.80078125, 1.3388672, -1.0654297, 0.07727051, -0.059020996, 1.5751953, -1.6376953, -1.0546875, -0.8413086, -3.0546875, -1.9394531, -0.25610352, 1.125, 0.39038086, -0.6166992, -0.6425781, -0.86279297, -4.0507812, -0.9921875, 0.8911133, -0.26757812, 0.45947266, 2.6992188, 1.0175781, 1.4316406, 0.26489258, 0.5991211, -1.5371094, 1.984375, 1.1738281, 0.44799805, -0.6660156, 1.1396484, -3.0703125, -5.359375, -0.6796875, 1.3447266, -0.6220703, -0.90527344, -1.2382812, -1.6806641, 2.1679688, -1.109375, 0.15795898, -3.8554688, 1.7919922, -1.09375, -0.54589844, 1.1074219, 0.7758789, -0.90283203, 0.75878906, -1.0117188, -1.3613281, -1.5927734, -3.3183594, -1.1777344, 0.49951172, 0.95751953, 0.20617676, -0.7578125, -2.4609375, -1.4863281, 0.6694336, 1.1132812, -0.10522461, -0.27685547, -3.0078125, -0.020385742, -0.41796875, -1.5224609, 0.4802246, 2.3359375, 1.8349609, 2.234375, 2.8515625, 1.4130859, -1.3710938, -0.29516602, 0.5029297, -1.1308594, 0.81103516, -0.018981934, 0.6020508, -0.07116699, 0.18518066, 2.1269531, -1.6025391, -1.3222656, -2.6855469, -2.109375, 0.58251953, -0.35864258, 0.29760742, -0.68115234, 2.9355469, 0.45288086, -0.96191406, 0.62109375, 0.31201172, -1.390625, -0.41870117, 2.1015625, -1.9726562, 1.2041016, 0.5019531, -2.0761719, -1.2792969, -1.8378906, 1.5556641, 1.6894531, 0.4729004, 1.9755859, 1.3115234, -0.82666016, 3.28125, -0.8964844, 2.1289062, 0.4790039, 0.9379883, -1.1152344, 0.037506104, 0.21484375, -0.067871094, -0.9501953, 1.7695312, -1.9453125, -0.1628418, -0.5727539, 3.140625, -2.6484375, 1.0078125, -1.4130859, 0.23901367, -1.5302734, -0.81103516, 1.0283203, -2.2480469, -0.14416504, -1.0273438, 0.25097656, -3.4042969, 5.4375, 1.3203125, -0.7114258, 0.73779297, 1.1953125, 0.32104492, -2.4355469, 2.046875, 0.7553711, 0.8496094, 0.11077881, -0.46826172, 0.48583984, 0.27978516, -3.4179688, 1.2216797, 0.6455078, 3.9160156, 0.94677734, 1.1484375, 0.38989258, 2.2480469, 1.9814453, -0.49560547, 2.8652344, -0.35180664, 1.5322266, 1.3271484, 1.5996094, 1.4677734, 0.87841797, -0.47387695, 0.33447266, -0.5258789, 0.83251953, -1.78125, -0.96435547, -1.3867188, 0.9375, 1.0976562, -0.9638672, 0.40893555, -2.5800781, -0.32666016, -0.3779297, 1.3457031, -1.8427734, 0.8598633, -1.6191406, -0.019622803, -0.6098633, -0.117126465, 0.42407227, 1.1347656, -1.0898438, 0.54541016, 1.0253906, 1.2617188, 0.17492676, -1.03125, -2.1308594, -0.032562256, 2.1445312, 1.53125, 1.6728516, -0.20275879, 0.9863281, 2.0859375, -1.8115234, -0.8515625, 1.1621094, -1.7626953, 0.77734375, -1.2978516, 3.2851562, 3.3496094, -1.8642578, 2.078125, 1.4697266, -1.234375, -4.1328125, 0.09313965, -0.6611328, 0.034179688, -0.6660156, -5.3828125, 1.7783203, -1.1484375, -1.2548828, -3.0488281, 0.7895508, -0.4013672, -1.1152344, 1.5751953, 0.8779297, -1.9658203, 0.87402344, 0.88916016, -0.37548828, 0.6503906, 0.20153809, 1.0751953, 0.32128906, 2.8144531, 0.20898438, 0.3659668, -1.7314453, 3.2773438, 1.9453125, -1.4951172, -0.043060303, 2.3105469, 0.0012750626, 0.26220703, -0.46606445, -0.23498535, 2.9238281, 1.453125, -2.046875, 1.2597656, -1.5039062, 1.5302734, 0.19140625, -0.8286133, 0.15429688, -0.9277344, -1.2910156, 2.2792969, -3.2285156, -1.25, 0.77734375, -0.73779297, 1.8623047, -0.7973633, 0.123168945, -1.6279297, 0.8310547, 0.52783203, -1.25, 0.58935547, 0.31323242, 1.6142578, 1.1259766, -3.0664062, 0.3461914, -1.0400391, -0.4584961, 0.31811523, -0.007873535, 0.5410156, -0.70166016, 1.4892578, -3.2578125, 1.6650391, 3.0722656, -1.2958984, 2.484375, -1.1152344, -0.062347412, 0.8911133, -2.2617188, -0.2355957, 0.15795898, 1.0976562, 0.55078125, -0.041290283, -0.5214844, -0.42260742, -0.27539062, -3.1894531, 2.2226562, -0.5234375, -2.0078125, -0.3293457, 0.69970703, 2.8105469, -0.57958984, 0.15783691, -1.3457031, -0.8095703, -0.42407227, -1.1455078, 0.029342651, 0.9238281, -0.6894531, 1.6855469, 3.21875, 1.2490234, -1.2734375, -0.82958984, 0.94628906, -1.8525391, -0.28125, 0.10626221, -2.3574219, -3.1445312, -0.25732422, 2.5429688, 4.21875, 0.47875977, 0.9116211, -2.5683594, 0.625]}, "B01LYJBJG2": {"id": "B01LYJBJG2", "original": "Brand: PMC Supplies LLC\nName: Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set\nDescription: This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

Designed with a lid handle for easy lid removal.

Made in the USA by PMC Supplies

Dimensions: Outer: 4\" (101 mm) Diameter x 4\" (101 mm) Height, Inner: 1.7\" Diameter x 1.5\" Depth, and Wall Thickness: 1.15\" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

Also Includes:

(1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or \"slag\" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

(1) Pair of 12-1/2\" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

(2) Graphite Crucibles: 1.75\" Height x 1.5\" in Diameter; with a capacity of 5 ounces of gold.

(1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

Please contact us with any questions. Thanks for looking!\nFeatures: Made in the USA By PMC Supplies\nRequires 2 standard propane bottles and propane tips (not included)\nIncludes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups\nMelts 2 to 5 ounces of gold\nCan also be used with silver, copper, brass, aluminum, and other precious metals\n", "embedding": [1.0537109, 0.5439453, 0.7163086, -1.0117188, -0.33740234, 1.8623047, -0.88183594, 0.1083374, -1.3095703, 2.1152344, 0.12109375, 2.5214844, 0.23388672, -1.9277344, 0.2529297, -0.0670166, -1.4677734, 0.08459473, 0.6538086, 0.36450195, 4.2539062, -0.0036773682, 1.0146484, 0.6333008, 2.3867188, 0.60839844, 3.3730469, -2.7695312, 0.67529297, 0.12963867, 0.2932129, 1.421875, 2.0644531, 0.15063477, -0.7636719, -1.3603516, -1.4873047, 1.1455078, -2.4394531, 1.5927734, -1.2314453, 0.984375, -0.13244629, -0.4970703, -3.1230469, -1.4472656, 0.59033203, 2.7226562, -1.3183594, -0.2746582, -0.9321289, -0.1005249, 0.44628906, 0.3244629, -1.7255859, 0.23828125, -0.86279297, -1.296875, 3.0332031, -1.6611328, -0.52978516, -0.3125, -2.4960938, 0.265625, -1.4892578, -0.9526367, -1.4707031, -2.9296875, 0.44335938, -0.38208008, 0.4194336, 1.2646484, 0.77734375, -1.8964844, -1.3037109, -0.6040039, 0.3486328, 1.4238281, 0.6464844, 0.3647461, -2.1386719, 1.3251953, -0.18395996, -0.35864258, -1.515625, -1.5126953, 1.0732422, -0.09075928, 1.09375, 1.8222656, -0.7578125, 1.7353516, -0.61816406, -5.1796875, 1.2929688, -1.5527344, -0.056518555, -0.2685547, 2.7578125, 2.5117188, -0.9350586, -0.35913086, -0.6826172, -0.010910034, -1.3242188, -0.061340332, 3.6835938, 2.8808594, -2.3183594, 0.026809692, -2.2890625, 0.13989258, 0.15258789, -1.3574219, -1.2353516, -0.8486328, 0.041900635, 0.05239868, 1.6367188, -0.76464844, 4.3984375, -0.5078125, 1.5507812, -1.6787109, 0.625, 2.203125, 0.25512695, -0.41503906, 0.3701172, -1.3046875, -0.98876953, 3.1582031, 2.4648438, -0.32641602, -3.5253906, -1.3027344, -2.0703125, 0.6645508, -3.0449219, -3.6171875, -1.3730469, 3.7480469, 0.5229492, -0.6767578, -2.8183594, -0.41381836, -0.953125, 0.42944336, 0.43920898, 0.7421875, 0.9580078, -1.2519531, -1.4345703, -1.1044922, 1.1425781, -0.31298828, 0.14257812, -1.6738281, 1.3828125, 1.7353516, 0.1394043, 0.05279541, -0.016723633, 4.3085938, -2.8808594, 0.45288086, 1.2705078, -0.6386719, 0.75439453, 1.2978516, 1.9677734, 0.2052002, 0.2019043, 0.98046875, -1.0996094, -1.9648438, -0.33813477, -0.30688477, -0.6743164, -1.6230469, -1.2353516, -2.4394531, -0.5078125, 0.2993164, 1.8359375, 1.6572266, 4.0664062, -0.21044922, -0.8701172, -1.8105469, -2.5390625, 1.15625, 0.9404297, 2.1835938, -1.5478516, -2.2070312, -0.19384766, -0.9121094, 0.4963379, 0.105163574, -1.2851562, -0.7885742, -1.109375, 0.64160156, -1.4003906, -1.9619141, 0.8041992, 0.24743652, 1.5205078, 2.6289062, 0.08880615, -2.1113281, 0.3166504, -1.2773438, -0.50634766, -2.75, -1.3339844, 1.0839844, 0.9814453, -1.1542969, -0.7416992, 0.31933594, -0.29711914, 2.1757812, 2.8476562, 2.5214844, 0.17480469, 1.0478516, -3.2871094, -1.4570312, 0.67871094, 1.1386719, -0.9121094, -0.3017578, -0.2998047, 1.5136719, 0.99902344, -1.1337891, 2.5507812, -1.3964844, -0.37817383, -0.18652344, -0.9975586, -1.2431641, -1.3447266, 0.53759766, 0.018463135, 0.6972656, -0.11022949, -0.70703125, -0.8540039, 0.3359375, 1.4267578, -0.16894531, -0.2529297, 0.65966797, 0.6821289, -0.16577148, 1.1455078, -1.3242188, 2.0800781, 1.6318359, -2.0996094, -0.5004883, 3.6835938, -0.25952148, 1.8964844, -2.9667969, -1.5097656, 2.3105469, 3.2714844, -0.5673828, 0.7890625, 0.6899414, 0.73876953, 1.5849609, -1.2470703, 2.4472656, -0.68359375, 2.6542969, -0.4008789, -1.5224609, 0.36523438, -2.9589844, 1.2978516, 1.8193359, 2.2128906, 0.09466553, 2.1269531, 1.2919922, 3.9023438, -0.027999878, -1.1806641, 1.7958984, -1.4414062, 1.9492188, -0.77685547, 0.88720703, -0.82666016, -1.2998047, 0.1776123, 3.125, 0.88183594, -2.0742188, 0.625, 0.9550781, 1.2275391, -0.61035156, 0.043792725, 0.42749023, -0.46655273, -0.08972168, -0.7807617, 3.0605469, -1.9697266, -0.8955078, 0.19250488, -1.6826172, 1.5087891, -0.10229492, 1.7392578, -0.27124023, -0.64697266, -1.7080078, 2.9941406, 2.2441406, -1.0136719, 2.2109375, 0.61621094, -1.0068359, 0.45458984, 0.044311523, 1.0791016, 0.31445312, -1.0488281, 1.8310547, 1.2060547, -2.9121094, 0.23010254, 0.18530273, 1.7226562, 1.9228516, -0.6855469, -0.6425781, -0.83496094, -1.8310547, -1.3486328, 0.11999512, -0.4428711, -2.1503906, 1.4560547, 1.0898438, -2.9179688, -3.7148438, -2.2714844, -1.1328125, -0.10992432, 0.36010742, -0.17504883, 0.67626953, 1.8173828, 0.7583008, -0.80078125, -0.90722656, -1.4707031, -0.3383789, 0.72509766, -2.6328125, 2.6171875, -1.2333984, -0.0826416, -1.8398438, -1.0341797, -1.1689453, -1.6279297, -1.8320312, -0.049957275, 3.6855469, -1.1757812, 2.0195312, -1.109375, -0.12432861, -2.1621094, -0.69921875, -3.0097656, -0.6479492, -0.12585449, -1.3398438, 0.33081055, -1.7666016, -0.12231445, 0.30395508, -1.6777344, -0.4086914, 1.8339844, -0.7739258, 0.5673828, 0.40820312, 0.2626953, 0.8754883, -0.050842285, -0.18017578, -0.023025513, 2.5273438, -1.1533203, -0.13500977, 0.07922363, 2.7460938, 1.8320312, -0.70996094, 1.3320312, 0.3310547, 0.85546875, -0.75390625, 1.4619141, -2.8007812, 0.84277344, -0.9760742, -0.5004883, 0.29418945, -1.5683594, 1.2275391, 0.41186523, -0.35864258, 2.6640625, 0.8300781, 1.5595703, -1.7041016, 1.2890625, 0.68115234, 1.7001953, -1.3251953, -1.5810547, 1.8095703, 2.09375, -1.6826172, -2.5566406, 1.15625, 2.328125, -3.4316406, 0.44189453, 1.6337891, 1.3916016, -0.3774414, 0.3869629, 0.60302734, -1.1308594, 0.5546875, 3.3710938, 2.6113281, -1.890625, 0.36547852, 1.4306641, -0.7446289, 3.0214844, -1.234375, 0.7988281, 1.9472656, 0.46435547, 0.66845703, 2.3964844, -2.0859375, -1.0244141, 1.2333984, 0.013320923, -2.0546875, 1.8896484, -1.1679688, 0.41870117, 0.40820312, -1.2890625, 0.859375, -3.9257812, 1.5849609, 1.3349609, 1.0068359, -1.3789062, -1.8837891, 1.1298828, 0.9716797, -0.72021484, 1.8955078, 0.4765625, 1.2373047, 3.6640625, -0.7446289, -1.1455078, 1.5996094, 4.3046875, -0.36694336, -0.27563477, -0.7265625, 1.4628906, -1.3447266, -2.9140625, 0.57958984, 0.37841797, -0.40698242, 0.81591797, -1.6386719, -1.0673828, -0.34350586, -3.6230469, 0.08782959, -0.08074951, -1.6191406, -0.16784668, -1.5927734, 1.2314453, -0.87646484, -0.41210938, -1.2841797, 0.2758789, -2.0429688, -0.09777832, -2.0800781, -2.2871094, 0.42236328, -2.9101562, 0.24890137, -0.56884766, 0.2709961, -0.25170898, -1.5332031, 2.7167969, 0.1796875, 1.7001953, 0.20385742, -1.0605469, -0.72314453, -1.9375, -0.25732422, 0.7036133, -0.5473633, 0.50927734, 1.8232422, 2.1113281, -1.9755859, 1.8232422, -0.4560547, -5.1953125, -0.96240234, 0.45507812, 1.9072266, -1.4570312, -1.265625, -0.10253906, 0.05130005, -0.9296875, -0.9003906, 1.4912109, 0.6459961, -0.40356445, 0.12524414, -0.43286133, 0.58154297, 0.75390625, -0.46679688, -0.047607422, -0.5786133, -0.4326172, 0.6616211, 0.4189453, -0.11315918, 3.1777344, -1.0576172, -1.9101562, 0.82177734, 0.14453125, 0.14538574, 0.40698242, 1.1162109, -0.8833008, 2.4589844, 0.4970703, 0.7158203, 1.3486328, -2.6015625, 0.3088379, 0.07867432, 1.2695312, 0.75146484, -2.4765625, -1.2011719, 1.1279297, 1.1386719, 1.3457031, 0.6308594, -1.0644531, 1.2373047, 0.14074707, -3.6816406, 0.36889648, 1.6953125, 0.9501953, -0.9379883, 1.8183594, 0.6801758, 2.1191406, -0.1628418, -0.035217285, -3.1542969, 0.23010254, 3.0976562, 1.4638672, 1.9423828, -3.7050781, -2.0136719, 0.09631348, -0.59814453, -0.62597656, 0.8955078, 0.74658203, 0.8857422, 0.87939453, -0.07293701, -0.70947266, 0.17626953, 2.2324219, -0.29541016, 0.25097656, 1.4199219, -1.1748047, -3.1269531, -1.3369141, -0.7636719, 0.86621094, 2.2636719, -1.1298828, 0.6621094, -1.2792969, 1.6113281, -2.9042969, -0.02558899, -1.6738281, -1.3398438, 0.058776855, 0.41333008, 3.296875, 0.3791504, 1.8535156, 1.1396484, 0.6894531, -0.29589844, 0.83691406, -1.1386719, 1.0517578, -2.6953125, -0.32641602, 0.7241211, -0.64501953, -1.0761719, 1.5380859, -0.9189453, -1.6474609, 1.3818359, 0.7758789, -0.3828125, 0.48291016, -2.4121094, -1.2548828, 0.9082031, 0.020095825, -2.4179688, -1.34375, 2.3652344, -0.51171875, 2.0820312, 0.15075684, -1.8300781, -0.59277344, 1.9814453, -1.6669922, -0.40893555, -0.50439453, -0.68310547, -0.3474121, -2.3808594, 2.0410156, 1.9101562, 2.2636719, -0.04144287, -1.3378906, 1.1582031, -0.8540039, -1.4667969, 1.046875, -0.33764648, -2.4589844, 0.9248047, 0.19604492, 2.1640625, 0.67333984, -0.4892578, 1.75, -1.4189453, 0.7163086, 0.9165039, -0.07324219, -1.1113281, -1.0712891, 2.2578125, -0.6660156, 1.1835938, -0.58984375, 0.5996094, 0.35253906, 2.4824219, -0.06549072, -1.1054688, -2.5253906, -0.08258057, -2.5175781, -3.15625, -1.1611328, 0.23254395, -0.5527344, -0.113342285, 2.1835938, 1.0859375, 0.32763672, -0.13757324, 1.1816406, -1.9492188, 0.7949219, 1.9111328, -0.8613281, -2.6679688, 0.90722656, 1.3291016, -2.2226562, 2.4570312, -0.031173706, -0.09552002, -1.0917969, -1.6806641, -0.36450195, 0.1673584, -0.5854492, -1.2216797, -1.4638672, 1.2382812, 0.34985352, 2.0566406, -2.4804688, 0.8276367, -1.5058594, -0.39501953, -0.6118164, -1.0791016, 1.9042969, -0.00605011, -1.1572266, 0.6147461, 1.0839844, 0.96777344, -2.1347656, -0.4453125, -0.109558105, -0.48950195, -0.08850098, 0.70214844, -1.0097656, 0.5019531, -0.20666504, 1.3349609, -0.1381836, -1.9960938, -2.2089844, -2.4746094, -0.62402344, -0.9526367, -0.5307617, -0.58935547, 1.5097656, -0.22924805, -2.8457031, 1.7460938, 1.3847656, -0.7675781, 1.0087891, 1.6777344, -1.9023438, 2.9570312, 0.21923828, 0.27539062, -3.671875, -2.6933594, 2.8886719, -0.99121094, -1.0488281, 1.4824219, -0.48461914, 0.12976074, 0.04562378, -0.390625, 0.40454102, 0.71777344, -1.7910156, -2.3105469, 4.15625, 2.1464844, -0.0054397583, 2.5625, 0.45947266, 1.8710938, -0.9741211, 3.2460938, 0.37426758, -1.0166016, 0.016342163, -1.5488281, 1.1933594, -2.9726562, -0.041778564, -1.3251953, 0.8857422, 0.68847656, -2.1933594, 2.3457031, -1.2070312, 2.1660156, 0.22167969, 0.8833008, 1.2861328, -0.6196289, -0.4296875, -0.44506836, 3.4882812, 0.009979248, -0.39331055, 1.1669922, -1.3535156, 0.43969727, 1.4433594, -0.52734375, -0.8041992, 1.4013672, 1.5126953, -1.4980469, 0.25390625, 1.2119141, -0.19396973, 0.19091797, 2.2148438, 0.16345215, 0.27612305, 1.0810547, -1.3378906, 3.2929688, 2.5625, 2.1640625, -1.9873047, 1.4931641, -0.031921387, 1.9492188, 0.5644531, 0.22106934, 0.64404297, -0.81396484, -3.625, 0.40429688, -0.7080078, -1.7158203, 1.1269531, -1.1191406, -0.53125, 0.31225586, -1.9794922, 0.72216797, 0.3347168, -0.4621582, -2.0390625, 1.359375, 1.7734375, -3.5058594, -0.29736328, -2.3183594, 2.6699219, -2.8828125, -0.45239258, -0.4736328, -0.048614502, 1.0888672, 3.1054688, -0.15209961, 1.5039062, 0.6640625, 2.5996094, 2.7011719, 1.7304688, 0.0047912598, -0.5209961, -0.3852539, 0.9536133, 2.7636719, 2.6855469, 0.014572144, 2.0390625, -1.2871094, -2.5234375, -0.07788086, -0.36816406, 1.9931641, -0.8051758, -0.47729492, -0.15979004, -0.54345703, -1.6240234, 1.1923828, -3.0019531, 0.45922852, 2.4824219, -3.0859375, -0.51953125, 0.5834961, 0.9790039, 0.6201172, 0.953125, -0.21166992, 0.8828125, 0.14697266, -0.043792725, 2.7011719, 0.546875, -0.7504883, 2.5175781, -2.4394531, 1.3681641, -1.3105469, 0.3540039, -1.4697266, 2.3183594, 2.9375, 0.42358398, 0.7270508, 1.8164062, -1.4384766, -0.5942383, 0.63720703, -1.2724609, 0.8286133, -0.4777832, -0.41845703, 0.80908203, 1.1220703, 1.1904297, 3.5839844, -1.8740234, -2.8671875, 0.0073013306, 1.6484375, -1.3027344, -1.21875, -1.1396484, -0.31347656, 0.7324219, -2.3085938, 1.1914062, -1.9892578, -1.7197266, 0.6875, 0.28466797, 1.4101562, -2.3886719, 0.2758789, 0.74316406, 0.9658203, 1.1035156, -0.109191895, -0.97753906, -0.023635864, 1.9248047, -0.46972656, -0.13183594, 0.16052246, 0.13317871, -1.3632812, -0.0073623657, -1.4179688, -1.6162109, -0.63427734, 2.5351562, 1.4931641, 2.6152344, -0.8256836, 1.9433594, 0.05105591, -6.3203125, 1.0957031, -1.2421875, 0.37426758, 0.5517578, -1.171875, 0.33544922, 0.4807129, 2.1933594, -0.57177734, -1.8242188, 0.24987793, 1.0742188, 1.0810547, 1.5380859, 0.90478516, 2.0117188, -0.12670898, 1.0029297, 2.1386719, 0.9560547, -0.10949707, 1.2939453, 2.3359375, 0.24035645, -1.2080078, -1.2041016, -2.2734375, -0.14343262, -0.64453125, -1.8271484, 0.5698242, -1.9951172, 0.19384766, -1.9365234, -1.796875]}, "B07F1QRTCK": {"id": "B07F1QRTCK", "original": "Brand: SHINESTAR\nName: SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack\nDescription: Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper's propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4\" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service\nFeatures: \u3010Standard Connector\u3011 5/16\" diameter LP hose, ACME nut x 1/4\" male NPT\n\u3010Application\u3011 Connect your camper's 1/4\" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4\" inverted flare)\n\u3010More Durable\u3011 Stainless braided hose effectively reduce damage caused by friction and animals\n\u3010CSA Certified\u3011 Excess flow safety and thermal shutoff\n\u3010Package Includes\u3011 2 \u00d7 RV pigtail hose, 1 year worry-free customer service\n", "embedding": [-1.3496094, 2.4589844, -0.046875, 2.0761719, -1.6376953, -1.0810547, 0.90625, -0.70703125, 2.7109375, 0.18054199, 1.1806641, -0.5151367, 1.0439453, -3.9394531, 0.09350586, -0.9394531, -0.8310547, 0.59375, 2.3789062, 2.4042969, 2.1738281, 0.21716309, 1.3300781, 0.40063477, 1.9599609, -1.3554688, 1.8144531, -1.5859375, -0.0151901245, 0.12719727, 0.7636719, -0.02178955, -0.66308594, 1.6474609, -0.33813477, -0.7055664, -0.73046875, -0.79296875, -3.9257812, -1.6396484, -3.6230469, 1.6914062, 2.9101562, 1.2382812, -2.6171875, 1.5654297, 1.5683594, -0.08062744, -0.10650635, 0.41333008, -1.1103516, -1.1289062, 0.057434082, 1.5488281, -0.68652344, -2.6757812, -1.4902344, -2.703125, 1.0595703, 2.1972656, 0.49658203, -0.8535156, -2.0097656, 0.7475586, -0.022338867, 1.7929688, 0.3310547, -0.30664062, 1.1728516, 1.2412109, 0.9135742, 0.87109375, -0.2055664, -2.1035156, 0.34521484, 1.4902344, -2.5917969, 0.4050293, 1.9941406, 1.3574219, -0.08648682, 0.43603516, -1.4072266, -1.21875, 1.8164062, 0.36987305, -2.1757812, 0.36376953, 1.2558594, 0.8588867, -2.46875, 3.46875, -3.2519531, -2.5664062, 0.22009277, 0.9008789, 0.29638672, 0.3996582, 2.7539062, -0.36279297, -1.109375, -2.3496094, -0.46118164, 2.2636719, -2.3671875, -1.0820312, -0.58203125, -0.36132812, -2.0058594, 0.053833008, -0.046142578, 0.7470703, 0.9194336, -0.8886719, 0.6635742, -2.9746094, 0.62841797, -2.171875, 2.4785156, -0.7026367, 2.4257812, 1.9169922, 0.42407227, 0.21643066, 0.98291016, 1.3857422, -0.296875, 0.42993164, 1.6240234, -0.48120117, 0.44360352, -3.046875, 1.8222656, 1.2373047, 1.3466797, -2.5253906, -0.6503906, -1.3232422, -1.0478516, 0.5078125, -4.484375, 0.34838867, 1.609375, 0.49389648, -4.3203125, -0.31591797, -2.0039062, 0.63671875, 2.5957031, -0.9272461, 1.0058594, -0.77978516, -0.045806885, -1.5771484, 2.2753906, 2.03125, 1.4736328, -1.2558594, 2.1894531, 2.7382812, 0.47631836, 0.39135742, -2.8691406, 2.359375, 0.03173828, -4.4648438, -0.6333008, 0.47094727, -0.8886719, 0.61328125, -1.3085938, -4.234375, 0.49780273, 0.41992188, -0.4440918, -1.9140625, 2.0390625, -0.53466797, 2.4726562, 0.9560547, -4.265625, -2.0839844, 0.96875, -2.2324219, 0.16662598, -0.7685547, -0.8725586, -1.8037109, 0.98779297, -0.12670898, -2.1171875, 0.35717773, -0.26660156, -0.27001953, -0.6425781, -1.8164062, -1.09375, -2.0234375, 1.4462891, 2.015625, -1.265625, 0.057617188, -0.40600586, 0.8564453, -0.48706055, -0.95703125, 0.90283203, 0.32714844, -0.21984863, 1.3369141, -0.6816406, -0.31396484, 1.9921875, -1.7197266, -1.203125, -2.1328125, 0.40844727, 2.9335938, 0.94628906, 2.3964844, 0.3701172, 1.7910156, 2.2460938, -0.9248047, 2.4589844, 0.6152344, -0.7421875, 0.484375, -1.0732422, -0.93310547, 2.8925781, 2.6757812, -1.515625, -0.6201172, -0.17346191, 1.9199219, 1.734375, -1.5947266, 0.5673828, 1.9921875, -0.88183594, -1.4804688, -1.890625, -1.4765625, 1.3837891, -0.23181152, -1.4052734, -0.002779007, 3.1992188, -0.13342285, 1.5400391, -0.70751953, -0.9394531, 0.14465332, 0.02154541, -0.37597656, 0.5756836, 1.2490234, 0.84033203, -2.7460938, 1.7255859, 1.203125, -0.31030273, 0.8720703, 1.1513672, 1.3769531, 1.9833984, -1.1445312, -1.2441406, 1.5917969, -2.5371094, 2.546875, 0.6352539, -3.203125, 0.44604492, 1.3378906, -2.2988281, 3.7460938, -0.20874023, 1.7470703, 2.0488281, -0.9194336, 1.4228516, -2.5292969, 2.65625, 1.2480469, 1.9462891, 0.59375, -1.4765625, 2.5039062, 3.6191406, 0.86279297, -0.69140625, 0.9506836, 2.7734375, 1.4951172, 2.3457031, 0.99853516, -0.7919922, -0.40039062, -0.9746094, 1.4169922, -0.82128906, -0.38476562, 1.0410156, -0.21508789, 0.33764648, -1.4033203, 0.88671875, 0.27197266, -1.2158203, -2.7636719, -3.0175781, 0.82958984, -2.0019531, -1.0087891, 2.0800781, -1.3515625, -1.4941406, 2.4960938, -0.58984375, -0.80126953, 0.5131836, -1.8623047, 0.5239258, 2.2441406, -3.28125, 1.4853516, 2.3359375, 2.1699219, 0.6191406, -2.0253906, -0.05831909, -1.9433594, -0.80810547, 0.3330078, -2.0507812, -2.0488281, 0.7011719, -0.70996094, -1.5039062, 0.4428711, 0.47631836, 3.4453125, 1.2255859, -0.09210205, -0.88134766, 2.0527344, 1.7070312, -0.26464844, 0.16564941, 2.359375, -1.1230469, -1.3779297, -0.104003906, -0.60791016, -1.1474609, 2.1699219, -1.4970703, -0.12524414, 2.0566406, 1.0166016, 1.1269531, 0.4885254, -0.3479004, -3.7675781, -0.14978027, -3.546875, -0.33081055, -0.070617676, 1.5693359, -3.3457031, 0.67285156, -1.6875, -2.9726562, 0.9140625, -1.4365234, 1.7255859, 0.81591797, 2.6132812, -2.1796875, -0.30200195, -0.07489014, 0.42407227, -3.1152344, 1.2910156, 2.4101562, -2.375, 0.2130127, -3.4453125, 0.6923828, -0.8652344, 0.5024414, -0.27001953, -1.7177734, -0.7084961, -0.92871094, 0.6171875, -1.7841797, 0.4206543, 1.9443359, -0.24865723, -2.3613281, 0.104003906, 0.84521484, 0.06665039, -1.6591797, 1.5234375, -0.28759766, -1.6767578, -1.0166016, 1.6640625, 0.10687256, 0.7504883, -0.88964844, -2.59375, 0.9970703, 3.0859375, -0.18371582, 1.6835938, -0.93310547, 0.6635742, -2.046875, -1.6992188, 1.1953125, 2.4375, 2.015625, -0.57470703, -0.016937256, 0.8901367, -0.3684082, -0.8725586, -0.5854492, 0.7416992, 2.9082031, -1.0732422, -1.7792969, -0.30688477, 1.4863281, -4.6015625, 1.2871094, -0.08868408, -1.8984375, 2.7480469, 1.3876953, -0.5473633, -1.3632812, 1.4892578, 1.8652344, 0.35864258, 0.7050781, 0.28637695, 1.7734375, 0.7260742, -0.57421875, 0.5185547, 2.0527344, 0.24255371, -1.3154297, 0.21472168, 0.22851562, -0.390625, 0.9707031, 1.5078125, -1.1113281, 0.64501953, 0.6850586, -0.97021484, 0.14172363, -1.65625, 0.71533203, 1.8359375, -1.4873047, -1.7988281, 1.5400391, 1.5917969, -0.7216797, 0.07598877, -1.2841797, -0.35327148, -1.5683594, -1.0263672, -0.042510986, 1.3535156, 2.3398438, -1.3876953, 2.5332031, -1.1845703, 3.8496094, 0.32299805, 0.3059082, -1.5527344, -0.41479492, -3.1660156, -1.9912109, 0.390625, -2.0996094, -2.9414062, 2.9941406, 2.7558594, -2.3867188, 0.71484375, -0.041900635, 1.2089844, 1.6552734, -2.96875, -0.38110352, -1.6767578, -0.25805664, 0.12609863, 0.13342285, 1.1123047, -0.6748047, -1.7255859, -0.49926758, -1.1767578, 0.40234375, 1.2294922, 2.6796875, -1.7480469, 0.7529297, -0.42871094, 1.734375, 0.6899414, 2.9609375, 0.72753906, 0.9794922, 0.20898438, -2.7617188, -0.13903809, -0.6489258, -3.8066406, -0.1574707, -0.114868164, -0.06048584, 2.2949219, 1.7226562, -0.12548828, -0.026794434, 2.2128906, -2.7558594, -0.5961914, -1.2431641, 0.9057617, -1.1767578, 0.5595703, 0.6113281, 1.0107422, -1.265625, -2.7519531, 0.18884277, -2.0527344, -2.1835938, 0.1842041, -1.5986328, 0.36914062, -2.6132812, 0.19824219, -1.8730469, -0.5205078, 1.2138672, -1.3671875, 0.13903809, -3.8242188, 1.2333984, 0.7861328, 1.2490234, -0.75439453, 4.1367188, 1.3027344, -0.76660156, -0.11798096, -0.34838867, 3.4941406, -0.73291016, -2.8320312, -0.6455078, -1.8955078, -0.32885742, 0.2932129, 1.2060547, 1.2353516, -0.44213867, 0.8671875, 0.0030345917, 1.2285156, 2.8613281, -2.046875, -2.8105469, 0.64208984, 0.9082031, -1.0478516, 0.6748047, -1.8300781, -0.8256836, -2.8378906, 0.68359375, -1.2275391, -1.4804688, -0.4790039, 2.3457031, -3.5605469, 0.8696289, 0.63378906, 0.17016602, 0.55126953, -0.9638672, -0.36743164, -1.1113281, 0.21972656, -0.3503418, -0.055358887, -2.5820312, 0.25170898, 0.053009033, -0.7441406, -0.33691406, -1.2324219, -0.7651367, -1.3837891, -1.7207031, -0.71875, 1.1611328, -0.5097656, -2.4082031, 1.8330078, -2.21875, 4.7773438, 0.3347168, 2.515625, 1.4072266, -0.7890625, -0.6743164, 2.0117188, 2.3164062, 2.8769531, 0.49926758, 0.1484375, 2.1484375, 1.0761719, 1.7021484, -0.5834961, 1.6875, -1.9599609, -0.99316406, -0.10620117, 1.9697266, -0.4362793, 1.3671875, 0.9272461, -0.012039185, 1.6777344, 2.9589844, -0.072631836, -0.21105957, 1.9121094, 0.5703125, 0.27929688, -0.07989502, 1.3349609, 0.45239258, 3.8984375, -1.7207031, -2.6445312, 1.2080078, 2.5546875, -0.14038086, 1.5546875, 0.15270996, -0.5498047, -1.3828125, -2.265625, -2.1074219, 0.8720703, -0.78222656, 0.24121094, -1.1914062, 1.8681641, 1.0556641, 2.6484375, 1.5058594, -0.34716797, -0.6118164, -1.140625, 0.15100098, -1.6240234, -2.5722656, -0.63916016, -3.3671875, -0.042907715, -0.28637695, 1.0244141, -0.2861328, -0.87060547, 0.6274414, -0.74365234, -0.1361084, 1.4375, 0.9453125, -1.0273438, 0.12451172, 1.7880859, 0.38745117, 0.11328125, -1.1083984, -0.3959961, -1.6123047, 0.9580078, 2.2910156, 0.73583984, -0.375, -1.2587891, -1.6474609, -7.1523438, 0.7006836, 1.4140625, -0.24633789, 0.14770508, -2.0175781, -0.5239258, 0.5932617, -0.6894531, -0.07720947, -0.35498047, 0.66845703, -0.36914062, -0.03668213, -0.92089844, -0.35839844, -0.3984375, -0.22009277, -2.8613281, 0.45410156, -0.18286133, -2.2597656, -3.21875, 1.5625, -1.6074219, -0.5527344, 2.0371094, -1.1201172, 0.5810547, 0.3400879, 1.2480469, -1.4208984, 1.7451172, -2.0527344, 0.6040039, 1.9619141, -2.6484375, 0.93408203, 1.7158203, -1.2578125, 0.15026855, 2.4042969, 1.671875, -0.99853516, -0.79833984, 0.80908203, -0.29614258, -0.5834961, -0.76171875, 0.48657227, 0.15112305, 2.0644531, 2.5117188, -0.12219238, -0.7944336, -0.73535156, -2.0957031, 0.6147461, -1.6982422, -1.5234375, 0.61279297, 2, 2.2539062, -0.99560547, 1.7304688, 0.38256836, 0.5498047, -2.2949219, 1.9707031, -2.7265625, 3.0625, 0.51123047, -2.1933594, -3.3457031, 0.50878906, 3.8710938, 1.9921875, -0.5810547, -0.5991211, 0.6665039, 0.9501953, 0.42333984, -1.2958984, -0.40576172, 1.1142578, 1.8417969, -1.2509766, -0.82958984, 0.6220703, -1.2207031, 0.2055664, -0.27539062, -0.65234375, -0.20092773, 1.0029297, 2.9296875, -1.9619141, 1.3486328, -1.1152344, 0.7480469, -0.6171875, -0.2763672, -0.5151367, -2.734375, 0.9916992, 0.5722656, -1.9628906, -3.984375, 2.9375, 0.7402344, 0.08984375, 1.3974609, 1.9755859, 0.6098633, -0.43969727, 0.7885742, 0.20263672, 0.1328125, -1.0429688, -2.0039062, 0.38793945, 1.6103516, -2.0449219, 1.2695312, 0.18908691, 0.9082031, 0.055877686, -1.2353516, 0.60058594, 1.6044922, 0.8183594, 3.6894531, 3.4023438, -0.6401367, 2.0703125, -0.4140625, 3.0996094, 2.1503906, -2.2167969, 1.6611328, 2.0898438, 0.5800781, 1.6669922, -1.2470703, 0.7519531, -0.49682617, 0.49731445, -1.1806641, 1.7333984, 2.1328125, -3.7519531, -0.54541016, -0.9140625, -2.8671875, -0.7705078, 1.5449219, -1.7412109, -0.2800293, 2.0449219, -0.8334961, 0.18188477, 2.3164062, -1.4980469, 0.9609375, -2.3613281, 3.2207031, -0.123291016, -1.7548828, -3.3554688, -3.0703125, 0.9082031, 2.4472656, 0.4675293, -0.4790039, 0.1809082, -0.7294922, 0.24121094, 1.8710938, 0.15209961, -0.29467773, 0.7705078, -1.7744141, 2.6875, 0.4074707, -1.6425781, 0.57958984, 0.5756836, -1.8222656, -4.6367188, 1.2158203, 0.91552734, -0.90966797, -0.69873047, -3.3339844, 0.9379883, -2.3632812, 0.75634766, -2.5664062, -1.7744141, 0.10620117, -2.5703125, 0.081848145, -1.0185547, -0.63427734, 2.3613281, -0.29492188, 0.34716797, 0.85058594, 0.6850586, 0.84375, 0.15124512, 0.49536133, -0.29833984, -0.5444336, -0.7680664, 3.9902344, -1.0136719, -2.4921875, -0.10986328, 2.234375, 0.12451172, 1.2939453, 0.44970703, -1.8896484, 2.3828125, -1.265625, -0.5727539, 0.14550781, -1.8652344, -1.1787109, 1.4121094, -0.08392334, -0.39160156, 0.27172852, -0.58154297, 1.0175781, -2.1757812, 0.81152344, 2.7539062, -2.2285156, 1.7773438, 2.0058594, -0.90625, -1.4726562, 1.3769531, 2.03125, -0.5629883, 0.67578125, -0.21777344, 1.5664062, -0.65478516, -1.1591797, -0.14929199, 0.22619629, -1.3408203, -0.43286133, 0.8964844, 0.93652344, -1.8623047, 1.0888672, -0.65283203, 0.7348633, 3.4746094, 0.38891602, 2.7285156, 0.10522461, -0.59716797, -0.5048828, -2.7050781, -2.2597656, 0.5722656, 1.609375, -0.31567383, -0.031555176, 0.62060547, -2.1660156, -0.8046875, -1.6982422, 0.8457031, -0.31469727, -3.78125, 1.0859375, 1.65625, 0.7661133, -0.01524353, 1.1982422, 0.5048828, 1.8730469, 1.7363281, -2.6777344, 1.8945312, -1.5839844, 0.10601807, -0.36645508, 3.8164062, 1.5859375, -1.4511719, 0.8828125, 0.5649414, -1.2041016, -1.3046875, -0.07513428, 0.44873047, -1.0341797, 1.2451172, 2.3320312, 2.8378906, 1.6796875, -1.1455078, -1.5810547, 0.6040039]}, "B07QYCHS2P": {"id": "B07QYCHS2P", "original": "Brand: Cook N Home\nName: Cook N Home Style 32cm Stovetop grill Korean BBQ, Black\nDescription: \nFeatures: Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight\nNonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free\nDie-cast aluminum is break resistant and does not warp;\nTraditional Korean BBQ style, product made in Korea\nWorks on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended\n", "embedding": [-0.55615234, 0.19250488, 2.3808594, 0.68652344, -0.8666992, -1.5830078, -0.10797119, 0.034423828, -1.3066406, 1.3212891, 0.9394531, -2.34375, -0.44604492, -1.8935547, 0.81591797, 1.4892578, 1.9023438, 1.7431641, -0.06829834, -0.4116211, 0.9555664, -0.10333252, -1.0400391, -1.0068359, 3.1269531, 0.7739258, 4.2539062, -2.7246094, -0.04095459, -2.1367188, 1.2314453, 2.3828125, -0.34399414, 2.7441406, -1.5224609, -1.7675781, -2.34375, 1.9394531, -2.6464844, 1.2939453, -0.24121094, -0.39672852, -0.74316406, 1.4101562, -3.7246094, 0.17199707, -0.19433594, 0.25048828, -0.765625, 0.3815918, -0.30615234, 0.37841797, 0.9526367, 0.78759766, -0.69921875, 0.8276367, -0.76708984, -1.875, -0.09259033, -1.9716797, 0.20263672, -0.48510742, -1.3623047, 0.2722168, -0.9135742, -0.23925781, 1.6230469, -1.4257812, 0.81591797, 0.39941406, 1.6191406, -0.5673828, -2.1328125, -0.29833984, 0.9501953, -1.6455078, -1.3046875, 0.93310547, -0.03451538, -1.1787109, -1.0224609, 2.9316406, 0.2454834, -2.6523438, -0.3581543, -0.3100586, -1.0683594, -2.2441406, 0.8828125, -0.44628906, -1.0644531, 1.0117188, -0.5151367, -3.84375, 2.6464844, 0.29516602, -0.42285156, 0.43432617, -0.77685547, 1.0537109, -0.79052734, -1.28125, -0.79541016, -0.60498047, -2.0839844, -1.1074219, 1.171875, 0.3659668, -1.5410156, 1.5234375, -0.84228516, -0.11077881, 0.32006836, 0.11016846, 1.6035156, 2.3886719, -0.075927734, 2.1484375, 0.2548828, 1.3173828, 2.3066406, -0.8984375, 0.09472656, -2.7089844, -0.81640625, 1.6572266, 0.10430908, 0.3244629, 4.796875, -1.2773438, 0.48364258, -0.26733398, 1.6367188, -0.95751953, -2.4785156, -1.625, -0.5029297, -1.2001953, -3.3789062, 0.6074219, -1.28125, 0.25048828, 2.8027344, -1.4033203, -3.4550781, -0.9316406, 1.2099609, 1.359375, -0.33813477, -1.7509766, 0.21398926, -1.8388672, 1.3232422, 0.79052734, 2.1660156, -0.34228516, -2.96875, -2.5429688, 1.7714844, 1.8310547, 1.4130859, -1.8339844, -0.37548828, 3.4941406, 0.7832031, 0.55859375, -2.0976562, 2.3632812, 0.8129883, 1.5253906, -0.75927734, -3.9960938, 0.5390625, -0.15283203, -0.02784729, 0.5708008, -1.2001953, 2.0878906, 0.7529297, 0.50146484, 0.08673096, -3.5566406, 1.2861328, 1.5585938, -0.93847656, -2.171875, 0.515625, -0.004173279, 0.9296875, -0.94140625, -0.15771484, -0.54296875, 0.8935547, 0.52441406, -0.7050781, -0.05380249, -0.20935059, -0.028671265, -0.05041504, 2.0136719, -1.4423828, -1.0947266, -0.97265625, 0.58691406, -0.96728516, -3.0351562, -1.34375, -0.5683594, 0.54541016, 1.9394531, 2.7519531, -0.7602539, 1.9892578, 0.14587402, -0.6113281, -2.5703125, -1.4033203, 0.09442139, 3.1425781, 2.4277344, -0.5136719, -0.1619873, 0.4326172, 0.86816406, -0.7192383, 2.1816406, 3.0371094, 1.3095703, -0.82177734, -0.41870117, 2.0332031, 2.3339844, -1.5, 1.1220703, -0.54833984, 1.9394531, 1.2880859, -0.30493164, -1.8095703, -0.8803711, -0.9375, -2.0605469, -1.1308594, -2.7460938, 0.21948242, 0.064941406, -0.62597656, 1.75, 0.104003906, -0.16760254, -0.19970703, 2.0097656, 0.0031929016, -0.79541016, -0.28393555, 2.2324219, -0.70654297, -1.3271484, -1.6796875, 0.042938232, 1.0878906, 0.92578125, -0.16589355, 1.6728516, 0.32495117, -1.2431641, 3.9472656, 0.39208984, -3.1425781, -2.5136719, -0.08935547, 0.37353516, 1.9541016, -0.6582031, -0.49438477, 1.6953125, -1.4765625, 2.6621094, -0.18115234, 1.5869141, -0.44702148, -0.94677734, 2.0332031, -1.6113281, -0.46606445, -0.21887207, -2.4882812, -1.3447266, 0.35424805, 2.2578125, 4.359375, 0.11639404, -3.8769531, 3.2382812, -2.8496094, -0.76171875, 0.7836914, -0.91308594, -1.9980469, -0.25219727, 1.9433594, 3.4179688, -0.30078125, 0.39111328, -0.60302734, -0.29077148, 1.1943359, -1.6328125, -0.78759766, 0.9580078, 1.9433594, -0.69677734, -1.1591797, 2.6621094, -1.3193359, 0.07611084, -0.26171875, -2.5898438, 1.0253906, 1.2568359, -0.81591797, 0.99072266, -1.7705078, -3.4160156, 0.5, 2.9667969, -1.2382812, 1.8408203, 0.38989258, -1.7666016, -0.97216797, 0.3359375, 0.10144043, -0.0435791, -1.875, -2.0351562, -2.1953125, -1.4638672, 0.62646484, -1.4990234, 0.49926758, 2.1542969, -2.9003906, 0.25146484, -1.4511719, -4.375, -0.8491211, -2.7753906, -0.35961914, 2.3457031, 0.2998047, 0.6640625, -0.17553711, -3.9667969, -0.34960938, 0.57666016, -0.10638428, -0.057800293, -2.0078125, -0.19262695, 2.6796875, 0.66308594, -0.4423828, 0.47216797, -0.7402344, -0.10760498, -0.47631836, -2.3320312, 0.87890625, -2.7949219, 0.91552734, -0.4404297, 1.0742188, -1.8779297, -1.8330078, 0.41845703, 0.43603516, 4.6015625, -0.5991211, 1.5039062, 0.42578125, -1.6357422, 1.3300781, 0.35620117, -2.6230469, -1.8085938, -0.25512695, -1.3583984, -0.12536621, -2.2578125, 0.58935547, -1.0175781, -0.18981934, -1.2099609, 2.4160156, 0.7578125, 0.68896484, -2.4550781, 0.29101562, 0.10394287, 0.27124023, 0.49145508, 0.68408203, -2.2207031, -0.97216797, -0.9794922, -2.2382812, -0.14941406, 1.65625, -0.14050293, 0.11437988, 1.5224609, 0.7685547, 0.32421875, 0.46069336, -3.3984375, 4.5117188, -2.6953125, -1.2285156, 1.8925781, -0.28930664, -0.76953125, -1.734375, 0.5390625, 3.8496094, 1.9550781, 4.109375, -0.22436523, 0.35180664, 1.7978516, 4.7304688, 0.013198853, -0.27246094, 1.4550781, 0.48876953, -0.48364258, -1.7382812, 0.5395508, -0.5161133, -1.1738281, -0.008407593, 0.14379883, 0.5859375, 1.0517578, 2.6777344, 0.31030273, 0.31420898, 0.00081539154, 3.2890625, -0.6738281, -0.70458984, -0.8520508, -0.7919922, 0.95996094, -0.120666504, 1.5390625, 3.0800781, 0.43188477, 2.5683594, 2.015625, 1.1074219, -0.46240234, -1.0351562, 1.1474609, 1.3564453, -2.2636719, 4.8554688, -1.6259766, 0.28027344, 0.46289062, -0.86572266, 2.0058594, -1.7695312, -1.2861328, 2.2070312, -2.0253906, -0.20605469, 0.016357422, 0.024017334, -0.5439453, -2.0527344, -1.1152344, -1.4746094, -3.2285156, -0.09069824, -1.6025391, -0.94384766, -3.0996094, 2.1464844, -0.03527832, -0.69677734, -2.7128906, 3.6660156, -1.8134766, -0.89941406, -0.9213867, 1.7958984, 0.087646484, -0.71435547, -0.51220703, -1.6816406, 2.7734375, -0.57958984, -1.0517578, 1.3554688, -1.9111328, -0.013122559, 0.23168945, -0.7807617, 0.6196289, 0.6333008, 0.9091797, 1.3535156, -0.008918762, -0.33666992, -4.3789062, -0.5991211, 0.67285156, -1.7216797, -0.55615234, 0.28857422, -0.09008789, 0.88183594, -2.3378906, 1.9169922, -1.1982422, -0.7993164, 0.0625, -3.203125, 0.0927124, -0.5048828, -3.8339844, 0.120910645, 1.4003906, -0.7739258, -0.5449219, 0.14428711, 0.11254883, 2.6269531, 0.9628906, -0.44995117, -0.70214844, -1.8564453, 0.3708496, -0.47558594, 0.13000488, 1.09375, 3.1933594, -1.7578125, -2.2441406, -0.81689453, -0.43041992, 1.3662109, 1.0234375, -0.22729492, 0.20092773, -0.7993164, 0.9526367, -1.6787109, -1.2617188, -0.105285645, -0.46362305, -0.28759766, 0.08886719, 0.38427734, 3.2070312, -0.06542969, 0.6669922, 0.6723633, -0.91064453, 0.19311523, -1.4550781, -0.53564453, 0.14440918, -0.7529297, -2.5429688, -1.46875, -0.61572266, -0.20776367, -2.2148438, 0.6484375, 0.08673096, 0.10650635, 0.19628906, 1.5126953, 1.0048828, 3.75, 1.0078125, 0.06768799, -0.85791016, 0.9121094, -1.8408203, -1.3935547, 0.48828125, 1.1035156, 1.3447266, 1.0478516, -0.55322266, 3.1191406, -1.4208984, -0.21594238, -3.78125, 2.5507812, 3.0722656, 1.2304688, 3.7910156, -2.6132812, -1.8710938, 1.015625, -2.1601562, -1.2089844, 0.39160156, -0.16760254, -0.22241211, -1.3203125, -0.05267334, 0.38745117, -1.9794922, 0.6972656, 0.62353516, 0.81103516, -2.7832031, -0.44604492, -1.4560547, 0.4375, 0.4897461, -0.37451172, 1.3154297, -1.7890625, -1.0488281, 2.1992188, 0.8925781, -1.3671875, -0.2841797, -1.6699219, -0.4091797, 1.6181641, 1.0595703, 0.57373047, -1.0410156, 1.1816406, -1.6328125, 3.2050781, -0.6064453, 0.64990234, 1.3974609, 1.7607422, -1.28125, -1.6533203, 2.2617188, 2.0878906, -0.85595703, 2.4121094, -0.25683594, -1.9941406, 2.3828125, 1.921875, -1.1826172, -0.33447266, -1.1035156, -0.63964844, 0.84765625, -0.26220703, -3.5566406, -0.59033203, 2.1171875, 0.4086914, 2.8828125, -1.6425781, -0.49438477, -0.27539062, -2.5449219, 0.47387695, -1.0878906, -1.0068359, -1.5498047, -0.6923828, -0.13146973, -1.8535156, 0.60595703, 3.4414062, -0.7709961, -2.3652344, 2.8222656, -0.6328125, 0.8408203, -0.7441406, -1.4638672, -1.53125, -0.30151367, 2.0878906, 1.5517578, 0.5102539, 0.13269043, 0.17687988, -1.4550781, 2.2558594, -0.23754883, 1.2666016, -2.2851562, -0.23388672, 3.4648438, -3.2167969, -1.5751953, -0.38232422, 2.0898438, 0.37426758, 0.30493164, 1.6308594, 0.08856201, -0.3918457, 0.03756714, -1.3134766, -0.796875, -1.3964844, 1.0185547, 1.5976562, -1.7041016, -0.29638672, 1.3330078, -0.90234375, -0.28686523, -0.67626953, 0.17150879, -0.06896973, 1.1367188, -2.5996094, -1.3759766, -0.21044922, -1.0595703, -1.7666016, 2.0820312, 1.6357422, 0.16638184, -2.0351562, -0.36035156, 1.9580078, -1.5205078, -2.0117188, 2.9453125, 0.6694336, 1.4453125, 0.0927124, 1.984375, -2.8222656, 3.1386719, -0.54296875, 0.21276855, 2.125, 0.9091797, -2.3457031, 0.16870117, -1.4794922, -1.4482422, -2.1464844, 0.13085938, 1.5361328, -1.8144531, 1.9628906, 0.7182617, -0.16137695, 0.32788086, 0.57128906, 1.9169922, 0.36645508, 2.0527344, -1.3818359, 1.7001953, -2.5058594, -2.0839844, -0.25561523, -1.0429688, -0.021377563, -0.85058594, 1.8427734, 1.0927734, 1.2011719, 0.8613281, -0.45507812, 2.4316406, 0.9506836, 2.1171875, 1.2333984, 2.1074219, 2.2382812, -1.4707031, -1.171875, -1.1376953, 1.234375, -0.7788086, -0.32177734, -1.2158203, 0.19116211, -0.27856445, -0.55029297, 0.32177734, 0.45703125, 2.3652344, 1.1953125, -0.35009766, 1.8134766, 2.015625, -1.7050781, 2.7441406, -0.7241211, 2.5703125, -0.7216797, 5.5039062, 1.09375, 0.082458496, 1.0507812, -0.80371094, 0.3466797, 0.29052734, -2.3027344, -0.09313965, -2.4101562, -1.7402344, -0.45629883, -0.52978516, -3.5195312, 0.47973633, -1.734375, -0.54052734, -0.79785156, 1.7441406, -0.13720703, 3.9101562, 1.3066406, 0.5449219, -0.22668457, -0.26367188, -0.001461029, -0.2866211, 2.4492188, -1.1572266, 1.8710938, -0.4033203, -1.8857422, -1.3291016, 0.1439209, 0.7416992, 2.2949219, 1.8789062, 3.0234375, 2.0820312, 3.0546875, 2.2617188, 1.1269531, 1.5107422, 3.6386719, 0.087768555, 0.21765137, 2.9667969, -1.0966797, 0.15600586, -1.3105469, 1.5117188, -1.2363281, -0.35351562, 1.53125, 0.26049805, 0.46142578, -1.671875, 1.5068359, -1.1826172, 0.23962402, -0.77001953, -1.0126953, -0.79785156, -0.64941406, 2.0078125, -0.47460938, 1.6425781, -0.35180664, 2.0605469, -1.8310547, 0.2614746, 3.1503906, -3.1367188, 1.2080078, 0.6567383, 0.42871094, 0.24023438, -0.119018555, 2.2285156, 1.1123047, 0.5908203, 2.0117188, 0.8227539, 1.3847656, 1.4736328, -0.19372559, 0.5209961, 1.1865234, 1.0214844, -1.1757812, -0.65527344, 1.6054688, 0.43481445, -1.3037109, -1.9335938, 2.4589844, -1.4912109, 1.625, 1.2773438, -2.7285156, 1.6367188, 1.1513672, 2.4003906, -0.9326172, 3.4921875, -0.43579102, -2.0136719, -0.4140625, 0.9897461, -0.21826172, 1.5078125, 0.5727539, -2.2695312, 0.38061523, -0.3942871, 1.2265625, 1.2890625, 0.8613281, -1.2050781, 2.2871094, 0.37109375, 3.515625, 0.5644531, 0.022857666, -0.091430664, 0.609375, 2.4199219, 1.9492188, 1.53125, -0.32128906, -1.0693359, -1.1992188, 1.1757812, -1.2578125, -2.0898438, -1.5253906, -2.1757812, -0.1743164, -1.4345703, -1.6855469, 3.515625, 0.09631348, 2.046875, 0.85009766, 0.77685547, -2.53125, 1.5683594, 0.44677734, -1.1650391, -0.8442383, -3.1328125, 0.9584961, -0.39404297, -0.59277344, 0.051483154, 0.9428711, 2.125, -0.6298828, 0.4543457, -1.8173828, -0.64941406, -0.2614746, -0.140625, -1.2841797, -0.7055664, 1.5703125, 0.43847656, -0.9790039, 3.234375, -1.2900391, -0.36572266, -1.0322266, -1.1005859, -1.5869141, -0.31567383, -0.49951172, -0.6040039, 2.4453125, -0.41259766, -1.4199219, -0.98291016, -4.7226562, -1.5673828, -1.2998047, 0.34643555, -0.52490234, -2.1875, 0.37280273, 0.11193848, 0.20812988, 0.38305664, -3.4882812, -0.124938965, -1.1445312, 0.5419922, -0.7207031, 0.5371094, -0.7246094, -0.6713867, -0.9609375, 1.2011719, 1.0654297, 0.6767578, 0.9189453, 3.0625, 1.1210938, -2.3535156, 1.4931641, -0.84033203, 2.3964844, -0.16333008, -0.93847656, 2.0449219, 1.3535156, -1.0546875, -1.0976562, -2.8613281]}, "B0039Z5NNM": {"id": "B0039Z5NNM", "original": "Brand: Music City Metals\nName: Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others\nDescription: \nFeatures: Listing is for 1 control knob.\n2.3125 inch dia. control knob\nFits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N\nFits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01\n", "embedding": [-3.0136719, -0.17834473, 2.6894531, -1.0263672, 2.3710938, 0.8574219, -0.98535156, 0.32861328, 1.2304688, -0.41870117, 2.5820312, 0.4177246, 1.6445312, -2.09375, 0.29101562, 3.1953125, 1.4023438, 0.28149414, -0.7080078, 1.8105469, 0.97021484, -0.8046875, 0.4880371, -2.5742188, 0.68603516, 2.7695312, 3.9140625, -1.9707031, 3.0527344, -3.0449219, 0.9658203, -0.17102051, -1.4560547, 1.6376953, -3.1035156, 1.0908203, 1.9189453, 2.6484375, -2.0507812, 0.69970703, 0.52978516, 0.0287323, -0.15905762, 1.1513672, -1.6513672, -1.765625, 1.4345703, 0.020462036, -2.9121094, -1.3603516, 1.9707031, 1.9013672, 0.09692383, 0.16894531, -1.8789062, 2.4628906, -1.7167969, -0.37182617, -0.14672852, -0.21118164, 2.5332031, -0.059143066, -2.5859375, 0.73779297, 0.3786621, 5.0625, 0.19750977, 0.15563965, 0.20703125, -1.1054688, -0.053863525, 1.7988281, -0.07055664, -0.009292603, 0.45239258, -0.47509766, -1.8535156, -0.31762695, -2.5351562, -1.2109375, -2.9707031, 1.6660156, -2.0664062, -2.4082031, 1.5449219, -2.0957031, -1.9726562, -0.2265625, 1.9980469, 2.1582031, -0.5708008, 0.09100342, -2.8398438, -1.7363281, 2.484375, -0.3701172, -2.3359375, -0.8442383, 2.0097656, 1.2705078, -2.7460938, -3.2285156, 0.47680664, -1.4453125, -1.0761719, -0.9003906, 0.51220703, 1.0449219, -2.6679688, -2.5058594, -0.05105591, 0.9355469, -1.4287109, -2.4648438, -0.13342285, -1.6025391, 1.4082031, -0.115356445, -0.94921875, -0.50146484, 2.6484375, 0.37060547, 0.40600586, -1.5830078, -1.5234375, -0.4345703, 0.6958008, 0.5942383, 6.0664062, -0.06225586, 0.63134766, -0.69189453, 4.4648438, -1.1494141, 0.041137695, -2.0878906, -1.0810547, -1.6240234, -0.8408203, 0.2211914, -1.2412109, 0.56347656, 1.1992188, -2.734375, -3.7558594, 1.0566406, -3.1191406, 0.019592285, -0.35180664, -0.6738281, 0.48510742, 0.3647461, -0.89941406, -0.84521484, 2.0585938, -0.5961914, 0.082214355, -1.9423828, -1.1679688, 0.45043945, 0.35498047, 0.69628906, -1.0380859, 1.0371094, -0.5107422, -0.2734375, -1.7050781, 1.2148438, -0.3996582, 2.375, 0.58154297, 1.6738281, 2.5078125, -0.61035156, -1.1279297, -0.19067383, -0.47973633, 1.9707031, -0.21484375, 0.7470703, 0.12164307, -2.3691406, -0.26708984, 1.3056641, 0.64746094, -1.5009766, 0.22692871, 0.27490234, 1.0253906, 1.9921875, 0.7441406, 1.0390625, 1.9833984, 0.4716797, -0.4345703, 0.24841309, -0.25268555, -1.03125, -0.06286621, 0.17236328, -2.375, -0.2890625, 1.3056641, 0.14111328, -2.0019531, -1.671875, 1.3300781, 0.96777344, 1.140625, 0.35668945, 1.5664062, -1.7763672, 2.6113281, -1.2822266, 2.9101562, -2.9765625, 1.2539062, 2.0195312, -0.064941406, 2.984375, -1.0263672, -0.8857422, -0.15063477, 4.0625, 0.04473877, 1.7089844, 0.42700195, 2.0742188, -2.765625, -2.6230469, 1.6660156, -1.4658203, -1.8564453, 0.65478516, 0.7915039, 1.6191406, 2.2480469, -2.2597656, 1.1669922, 0.05178833, -0.7949219, -3.5195312, -2.0742188, -2.3691406, -0.3959961, -0.609375, -4.6328125, -0.061645508, 1.6142578, 1.0195312, -0.765625, 2.1230469, -0.18127441, -0.421875, -2.0722656, 0.5673828, 3.0546875, 1.4248047, -0.9897461, -2.7929688, 2.4980469, -0.3491211, -0.16967773, 1.8837891, 1.8769531, 0.38354492, 4.4648438, -2.0078125, -1.1650391, -0.5854492, 0.064331055, -0.8046875, -0.13061523, -1.0263672, 0.28076172, 1.4306641, 0.27270508, 4.3242188, 2.0664062, -0.46435547, 1.0361328, 0.63964844, 3.6796875, -1.5410156, 0.9526367, 2.1582031, -2.9824219, -1.4443359, 0.10437012, 1.0625, 3.0722656, 1.7568359, -4.9375, 3.6074219, -0.8413086, 0.2841797, -0.30859375, -3.5859375, -2.7285156, 1.1728516, 1.0976562, 2.0683594, 1.7773438, 1.1708984, -1.1582031, 0.79248047, -0.17944336, 0.05807495, -0.6845703, 1.5351562, -0.5966797, 0.5175781, -0.057403564, -0.5161133, -0.19628906, -1.3291016, -0.25756836, -3.0761719, 1.5703125, -2.25, -0.55908203, 1.3125, 0.06555176, -1.8730469, 1.5185547, 3.1367188, -1.7832031, 0.17736816, -0.5644531, -0.9404297, -0.8408203, 0.5073242, 2.8046875, -2.7460938, -3.0058594, 0.50927734, -2.5097656, -3.1601562, -0.020736694, 0.9501953, -0.6533203, 2.2324219, -3.1015625, 1.8837891, -1.7636719, -3.921875, -1.2988281, -0.117004395, 0.96191406, -1.7373047, -1.3378906, 1.5068359, -1.46875, -2.7226562, 1.4892578, 0.3371582, 2.0996094, 2.296875, -0.39111328, 0.62402344, 0.33642578, -1.2597656, -0.6069336, 1.1835938, 0.7573242, 1.2304688, -0.703125, -2.765625, -1.4072266, -1.6933594, -0.4091797, -1.6601562, -0.19067383, -2.9511719, -2.1386719, -0.90234375, -1.3173828, 2.6328125, -1.1738281, 2.2792969, -0.025802612, 0.32421875, 2.7226562, -3.75, -1.4980469, -0.28027344, 2.5585938, 0.5263672, -0.7036133, -1.1816406, 0.8178711, -1.109375, 0.5517578, -1.5664062, -0.4777832, -0.53515625, 1.9550781, -2.9765625, 0.62597656, -0.75341797, 2.0253906, -0.40625, -1.4980469, 0.36743164, -0.3996582, -3.7480469, -1.0634766, -2.6191406, -0.06088257, 0.5239258, -0.9946289, 0.4128418, 0.2154541, 1.3007812, 1.3710938, -2.0996094, 1.2832031, -2.8613281, -2.7773438, 0.73876953, -1.5048828, -2.3671875, -3.3457031, -0.3388672, 3.0097656, 0.5175781, 3.2753906, 0.12445068, 1.3398438, 0.29638672, 0.3239746, 1.390625, 0.50439453, 2.7539062, 1.8876953, -0.89941406, -2.6816406, 2.0292969, 0.8540039, -2.9570312, -0.32885742, 2.0292969, 2.6738281, 1.8378906, 2.3886719, -0.101257324, 0.33251953, -1.5058594, 3.2324219, 0.12683105, 1.8759766, 0.4963379, 1.6923828, 1.1611328, 0.44213867, 2.8535156, 0.77001953, 1.7724609, 2.1074219, -1.1240234, -0.035583496, -1.9013672, 0.45922852, 1.6875, 1.6191406, -2.8789062, 3.2988281, -1.2851562, 0.8305664, 1.5839844, 0.4387207, 1.1132812, -4.7695312, 0.26611328, 3.5820312, -0.00036168098, -1.0292969, 1.2158203, 0.1920166, 0.25048828, -2.5898438, 0.4128418, -1.1953125, 0.04171753, -0.71777344, -1.5, 0.064331055, -1.0449219, 4.2304688, 0.40698242, -0.6772461, -0.24633789, 2.1953125, -0.13256836, -1.7871094, 2.2675781, 2.9238281, -0.56103516, -0.6142578, -0.27124023, -2.0195312, 3.6132812, -2.2089844, -0.079956055, -0.75439453, -3.0058594, 0.7885742, 0.47070312, -2.765625, 3.1621094, 0.37939453, 1.1035156, 0.5620117, -2.3828125, -0.5703125, -3.2167969, -1.5673828, 0.19750977, -3.4824219, -1.3251953, 0.47583008, -0.00034713745, 1.2373047, -1.9189453, 2.1152344, 0.24194336, -0.7138672, 0.42919922, -1.0605469, 2.015625, -1.9130859, -3.2402344, 2.8554688, 1.3925781, 0.24279785, -0.17687988, 3.2382812, 0.27685547, 5.796875, 0.28466797, -2.140625, 0.5571289, -0.7182617, -1.1660156, -0.35791016, -2.0253906, 0.7553711, -0.29101562, -0.38745117, -2.984375, 0.6669922, -2.0722656, 1.5341797, 0.61083984, -3.3867188, 0.6069336, 0.390625, 0.5463867, -1.4492188, 0.28076172, 1.7744141, 0.8095703, 0.19934082, 0.21557617, 3.7324219, 2.7910156, -0.72509766, 0.8828125, 1.0869141, 0.2788086, -1.0341797, 2.3632812, -0.27392578, 1.3701172, -0.8833008, -2.3710938, -0.03375244, 1.3486328, 1.0400391, 0.46850586, 1.3261719, 1.3886719, -4.328125, -0.19958496, 0.70996094, -1.5419922, 2.0546875, -1.2148438, -2.7460938, -1.4707031, -0.020355225, -0.30322266, 0.4038086, 0.45117188, 0.7270508, -1.0673828, 0.33984375, -2.6972656, 1.8183594, -2.2578125, -2.6679688, -3.5136719, 0.8041992, 1.0527344, -1.0048828, 3.0410156, -1.4746094, 0.08685303, 0.45385742, -1.7041016, -1.1445312, -1.8027344, -2.09375, 2.1757812, -0.31762695, 2.4882812, -0.9111328, -0.7246094, 2.9355469, -1.7958984, 1.7333984, -0.99902344, 1.9257812, -2.0351562, 2.8046875, 2.3320312, -0.82910156, 2.0234375, -0.3569336, 2.5507812, 1.0869141, -0.19213867, -1.5292969, 1.6337891, 0.6201172, -1.5234375, 1.5634766, 0.9526367, 4.3046875, -0.60595703, 0.28320312, -0.74609375, -1.5742188, 0.69873047, -0.453125, 2.7792969, 2.9101562, -1.375, -0.74365234, 3.9140625, 1.8867188, -0.51123047, 3.0625, -0.13195801, -4.2382812, 1.578125, 1.2851562, -2.1171875, -0.4855957, -0.17993164, 0.7919922, 1.4628906, -1.0136719, -2.421875, -1.9609375, 1.1875, -1.0195312, 0.63427734, 0.15209961, -0.6533203, 1.5166016, -3.3613281, -1.4384766, -1.0761719, -0.3491211, 0.8618164, -1.3115234, 0.012763977, -0.02178955, 0.12072754, 3.3691406, -1.8779297, -2.9667969, 0.09698486, 0.19555664, -0.113098145, -0.6489258, 0.47875977, 0.55810547, -0.2783203, 0.69189453, 1.1699219, 1.6318359, -0.28515625, 4.0546875, -2.1328125, 1.7744141, -1.7333984, 0.057678223, -1.4179688, -1.8701172, 1.8662109, -1.3632812, -1.1552734, -3.2675781, 3.2109375, 0.4489746, 3.6835938, 0.59521484, -0.7558594, -0.7089844, 1.1513672, 0.22827148, -1.1455078, -2.1777344, -1.2480469, 2.3027344, -0.17321777, 0.12176514, 0.14611816, -1.0830078, -0.99560547, -0.24658203, 0.57958984, -2.0644531, -1.0097656, -0.91796875, 1.3222656, -0.43774414, -2.2109375, -2.0761719, 1.8066406, 1.2246094, -0.89160156, -3.359375, -1.5039062, 1.34375, -1.9794922, -1.7646484, 1.09375, -0.68896484, 1.5996094, -2.0839844, 2.5273438, -1.0449219, 1.4658203, -0.14575195, 0.6796875, 2.5449219, -0.060638428, 0.24353027, -0.4633789, -1.609375, 0.2902832, 0.84765625, 1.2744141, -2.3339844, 0.81103516, -0.77441406, 0.17150879, 1.5390625, -1.8818359, -1.5507812, 0.12695312, 0.59472656, 0.074645996, -0.6689453, 2.4042969, -2.6523438, -0.3486328, -2.0058594, -0.5185547, -0.35986328, -0.671875, 0.07147217, 1.2929688, -1.6103516, -0.42138672, 1.9423828, -0.4650879, 0.9794922, -2.0117188, -0.56640625, 0.099121094, 0.62939453, -0.39501953, 0.5541992, 0.89453125, -0.17590332, -0.45166016, 0.2565918, -2.5800781, -1.0976562, -0.9169922, -0.15344238, 0.08892822, -0.11981201, 0.90185547, -2.8496094, -0.43603516, -0.011512756, 2.6210938, 0.10223389, 1.1337891, 0.2705078, 0.9916992, -0.05899048, 4.0546875, 0.09039307, -0.8178711, 0.16625977, -0.7583008, 2.3769531, -2.640625, -1.8896484, -0.7138672, 0.7480469, 0.55566406, -3.2519531, -3.2851562, -3.2714844, 0.64208984, -1.5791016, 0.22570801, -0.73583984, 1.7128906, 0.49682617, 1.421875, 0.28344727, 1.1074219, -1.6933594, -0.8881836, -3.0878906, 1.0263672, 0.7890625, -1.140625, -1.6054688, 0.4248047, 0.1619873, -0.6899414, 0.06976318, 1.1347656, 1.3925781, 0.36083984, 1.1201172, 0.122924805, 1.8710938, 1.46875, 0.1829834, 1.4482422, 2.3417969, -0.4128418, -0.34423828, 0.9243164, 1.0634766, 0.30078125, -2.8398438, 2.6679688, -0.4128418, 1.1552734, 1.0927734, 0.67041016, 1.859375, -1.8427734, 0.8442383, -1.2900391, 0.5698242, -2.5898438, 0.3383789, -0.56640625, -0.38598633, -1.7246094, -0.16345215, 5.640625, -0.024383545, -0.875, 1.5175781, -2.8144531, 1.7412109, -0.5830078, -0.60253906, 2.4511719, -1.8310547, -0.025436401, -1.2148438, 1.2490234, -0.8178711, 3.921875, 2.21875, 1.7421875, 0.7675781, 0.74365234, -1.4882812, 2.4921875, 1.6689453, 0.5180664, -0.55859375, -1.9541016, 1.3857422, 1.1591797, -3.1992188, -2.1660156, 1.7226562, 0.8154297, 1.0175781, 0.88720703, -3.453125, -1.4550781, 0.2878418, -0.070251465, -2.3476562, 0.9794922, 0.68115234, -1.1181641, -0.16149902, 0.31176758, -0.89746094, 1.2890625, -0.01727295, -0.9638672, -0.41870117, 2.0273438, 1.1992188, 2.2929688, 0.5107422, 0.11981201, 1.8486328, -0.26879883, 0.9667969, -1.7392578, 1.2373047, 0.6064453, 0.7763672, 1.3535156, 0.5776367, 1.3867188, -3.6113281, -3.6308594, 2.7265625, -0.3720703, -1.0742188, -2.0859375, -0.40551758, 0.09820557, 2.0039062, 0.7260742, -1.7783203, 3.34375, 0.2854004, 0.6816406, 1.3037109, -0.17700195, -1.6855469, 2.9941406, 0.27905273, -0.8178711, -0.019470215, -1.0117188, 1.4199219, -0.19445801, -1.71875, 3.3652344, 0.8178711, 2.5722656, -2.0703125, -1.6669922, -0.09954834, 0.37597656, 0.16186523, -2.1347656, -0.59277344, -3.6757812, -0.24377441, -1.5117188, 1.2978516, 0.99902344, 1.2275391, 0.15588379, -4.25, 1.8710938, 0.5800781, -0.5991211, -1.7021484, 0.40283203, 1.9091797, -1.3837891, 0.7597656, -1.1533203, -3.6054688, 2.5996094, -0.11505127, 1.4501953, -0.43701172, -1.9648438, 0.44873047, -0.4267578, 3.3398438, 1.0371094, -1.5742188, -1.9707031, 1.3583984, 0.8461914, -1.4111328, -2.7695312, 0.61865234, 0.7661133, -0.27172852, 2.4433594, 1.9482422, 1.5058594, 0.6064453, 1.4003906, 0.05706787, 0.2680664, 1.5830078, 0.6044922, 0.8798828, 1.5332031, -2.2832031, 1.7607422, 0.5727539, 1.4853516, 1.0214844, -1.8886719]}, "B07KX3FW9C": {"id": "B07KX3FW9C", "original": "Brand: Simond Store\nName: Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers\nDescription:

Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600\u00b0F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

Include Accessories with Identification

  • FORGE: Forge Body
  • PART-A: Single Burner
  • PART-B: Burner Air Chock Valve (1 Pcs)
  • PART-C: Gas Inlet pipe with valve
  • PART-D: 6.5' (2M) Gas Hose with clamps
  • PART-E: Refractory Fire Brick
  • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
  • PART-G: Teflon Tape
  • PART-H: Metal Holding Stand

Specification

  • Material: 1/8\" Thick Structural Square Steel Pipe
  • Burner Nozzle Material : SS-304
  • Inside Floor : 1\" Thick Refractory Brick
  • Inside Insulation Material : 1\" Thick Refractory Ceramic Fiber 2600\u00b0F 8 pcf
  • Forge Internal Dimension : 2.75\" x 4\" x 10\"
  • Burner: Single Burner

Note: User Manual, Assembly and Safety instructions are Included in the packing.

\nFeatures: Single Burner Propane Forge Furnace with 2600 degree capacity\nlined by 1\" thick high density ceramic fiber blanket\nComparatively High Tensile Strength & Can withstand Direct Flame\nComes with stand\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "embedding": [0.22253418, 1.8408203, -0.53027344, -0.7973633, -1.3574219, -0.26513672, 0.041778564, -1.8486328, -0.7602539, 1.1621094, 0.6069336, 0.5053711, 0.91259766, -2.1308594, -0.2290039, -0.25170898, -1.1855469, 0.16088867, 1.5322266, 3.5058594, 2.3964844, -0.042938232, 1.6347656, -0.8022461, 1.0791016, -0.066101074, 2.9609375, -3.1484375, 0.27978516, -0.020141602, 0.08935547, -0.5756836, 0.60253906, 0.73095703, -2.3769531, -0.75927734, -2.3554688, 0.05392456, -1.1416016, 0.82373047, -0.54003906, 0.86572266, 2.4628906, 0.8173828, -3.1679688, 0.66845703, 1.6269531, 0.49902344, -0.54003906, -0.5449219, 0.13635254, -0.29296875, 0.8901367, 0.9790039, -1.4111328, -0.80322266, -1.0859375, -2.1523438, 3.0605469, -0.4909668, 1.7470703, -0.47192383, -1.7001953, 0.5878906, -1.7207031, 0.5292969, 0.6220703, -2.3164062, -0.2836914, -0.5629883, -0.1071167, 2.1171875, 1.3886719, -0.3149414, 2.3339844, -0.8105469, -1.4023438, 1.4970703, 0.96875, -0.47143555, -1.7226562, 0.21765137, 0.16796875, -0.3774414, -0.8779297, 0.07733154, -0.921875, -0.13720703, 1.609375, 3.0644531, 0.73339844, 0.8232422, -1.4482422, -6.0742188, 1.5654297, -1.4345703, 0.60498047, 0.2800293, -0.63183594, 2.4707031, -1.0244141, 0.16687012, -1.4365234, 1.4902344, -2.0722656, 0.28027344, 1.0888672, 3.875, -1.1357422, 1.0068359, -1.2148438, 0.2680664, 0.9458008, -0.38110352, -0.082458496, -1.0683594, -0.004749298, -0.5810547, 1.2871094, -0.63623047, 3.7011719, -0.39379883, 0.41088867, -1.2207031, -0.5493164, 2.8300781, -0.66552734, 0.47265625, 2.8183594, -2.4824219, -0.7167969, -1.0292969, 0.47802734, -0.59277344, -2.8027344, -0.9902344, -0.96972656, 0.17419434, -3.4980469, -1.1464844, 0.23547363, 2.1152344, -0.5029297, -2.4902344, -2.4960938, 0.5727539, -0.13574219, 0.8535156, 0.3972168, -0.33422852, 1.3505859, -2.2578125, -2.0917969, -1.0273438, 0.88623047, 1.9453125, 0.100097656, -3, 2.5214844, 0.36816406, 0.11791992, -0.2770996, 0.4111328, 1.5214844, -2.3164062, 0.1920166, 0.2607422, 1.2558594, -2.3183594, 1.3261719, 1.4501953, -2.1542969, -0.07312012, -0.02180481, -0.022506714, -1.5996094, -0.5004883, 2, 1.5351562, -1.7148438, -1.6025391, -0.9506836, 1.7353516, -1.2685547, 0.9013672, -0.8359375, 1.6816406, -0.7236328, -0.037750244, 0.7480469, -2.3964844, -0.29711914, 2.21875, 2.2519531, -0.029891968, -1.4277344, 1.1113281, -3.6835938, 2.2832031, -1.4082031, -3.1367188, -2.0664062, 0.85595703, 1.0576172, -2.9277344, -1.0839844, 0.5551758, 1.1132812, 2.4023438, 2.515625, 0.15808105, -1.0019531, 0.2619629, 0.6142578, -0.0024852753, -4.3671875, -0.69677734, -0.90527344, 1.6113281, -0.60009766, -1.1855469, -0.9243164, 0.75634766, 0.7675781, 4.1171875, 1.4394531, -0.42114258, 1.4248047, -2.140625, -0.12536621, 3.3945312, 2.5332031, -2.3710938, 1.1923828, -0.7602539, 1.6425781, 0.5605469, -1.3935547, 2.5742188, -1.0595703, 1.2841797, -1.0693359, -0.031158447, -1.0068359, -0.66015625, -0.17297363, -0.21716309, -0.40307617, 1.0244141, -0.0690918, 1.0292969, -0.11853027, 1.2578125, 2.4335938, -0.74853516, -0.19616699, 0.047576904, -1.6933594, -1.6298828, -2.7226562, 1.1630859, 0.3894043, -0.79296875, 0.31860352, 1.9921875, -1.4833984, -0.55908203, -0.19567871, -1.0507812, 1.4892578, 2.2441406, 0.62158203, 1.6064453, 2.0800781, 1.2041016, 1.4853516, -1.4912109, 2.7871094, -1.078125, 1.4794922, 0.31958008, -1.8740234, 1.6220703, -1.859375, 0.7729492, -0.5859375, 2.3183594, -0.32641602, -1.2568359, 1.8994141, 6.15625, -0.43823242, -0.23205566, 2.3710938, -0.5961914, 0.38867188, 0.021606445, 2.2617188, 0.35009766, -1.9287109, 1.6523438, 0.7553711, 1.78125, 0.91845703, -0.70410156, 1.0888672, 2.7617188, -0.9770508, 0.39135742, -0.5883789, 0.2578125, -0.070373535, 0.04776001, 2.9941406, -3.0820312, 0.0826416, 0.7998047, -2.5820312, 1.7636719, 0.62841797, 1.5742188, 2.1660156, 1.5371094, 0.2265625, -0.018157959, 1.4716797, 0.032043457, 1.9003906, 0.8881836, -1.3867188, -1.4560547, -1.7177734, -1.8486328, -0.8959961, 0.10882568, 0.71533203, 1.1738281, -2.1035156, 1.3251953, -1.6582031, 0.8676758, 0.5024414, -1.1669922, 0.50097656, -0.3828125, 0.052825928, -1.6914062, -0.58251953, -0.82421875, -0.65722656, 2.6738281, 3.2109375, -1.9824219, -2.1738281, -2.0175781, -1.5986328, -1.4150391, -0.46411133, -1.0146484, 2.6640625, -0.8276367, 0.5566406, 0.41479492, -1.1289062, 0.095703125, 0.0020980835, 1.0507812, -2.4941406, 0.005317688, 0.18811035, -1.1152344, 0.42236328, -0.98046875, -0.46069336, -0.44482422, -0.46679688, -0.06335449, 3.4746094, 0.52246094, 2.3203125, -1.40625, -1.8974609, -1.2724609, -0.29736328, -1.5283203, -0.003622055, -0.8408203, -1.0175781, -2.1445312, -3.6210938, -0.06677246, -0.45214844, -0.85498047, 0.038085938, 0.7109375, -0.9765625, 0.39624023, 0.026428223, -1.9580078, 0.5444336, -0.50390625, 1.6445312, -1.1005859, 0.1772461, -1.7275391, -0.2788086, -0.79833984, 1.5664062, 0.96777344, -1.2128906, -0.17700195, -0.9848633, -0.38256836, -1.5556641, 1.9785156, -1.7890625, 1.5566406, 0.10571289, -1.546875, -0.4489746, -1.7333984, -0.66845703, 0.36987305, -1.1962891, 3.4394531, -0.5019531, 0.79833984, 0.0015659332, 0.25610352, 1.4355469, 1.7226562, -2.4296875, -2.4882812, 0.9995117, 1.8056641, -2.2382812, -0.8027344, 1.2480469, 2.0664062, -3.4882812, 1.7353516, 3.3203125, 0.34179688, 0.21313477, 2.2441406, 1.578125, -0.38061523, -1.2568359, 0.0017900467, 0.95654297, 0.23706055, -0.18652344, 0.036834717, -0.25708008, 0.9946289, 0.16503906, 2.6132812, 0.80908203, 3.546875, 3.1484375, 1.8066406, -1.8134766, -1.9658203, -0.47851562, 0.34887695, -0.13879395, 1.8730469, -0.44311523, -0.96875, -0.57421875, 1.0058594, 1.8369141, -2.0820312, -1.3691406, 1.8349609, -0.45581055, 0.63134766, -1.0429688, 1.3642578, -1.3886719, -0.74609375, 1.2695312, 0.18103027, -1.4921875, 0.7553711, 0.93847656, 1.2841797, -1.9736328, 1.2841797, 0.4284668, -0.8378906, -0.8046875, 0.9526367, -1.1875, -0.9555664, 0.58447266, -0.036895752, -0.47314453, 1.5214844, 0.6640625, -0.37719727, -1.6982422, -1.5996094, -0.5620117, -1.109375, 0.18322754, 0.44799805, -0.7368164, -1.234375, -1.1933594, 0.24694824, -0.088134766, 0.97753906, 0.59716797, 0.12420654, -1.1386719, -1.2402344, -0.39453125, -2.3945312, -0.42822266, 3.4335938, -0.8989258, 0.92822266, 0.8066406, 3.4726562, -1.6914062, -0.5839844, 1.0029297, -3.3320312, -0.038208008, -0.66796875, -2.5742188, 0.47680664, -0.4560547, 1.6552734, 3.1347656, -0.44384766, 0.36547852, 2.4882812, 0.80908203, -4.5546875, -1.7050781, 0.21679688, 1.7519531, -2.3066406, -3.3378906, 1.9267578, -0.11071777, -1.2451172, 1.2783203, 2.8378906, -0.1730957, 1.0751953, 0.044036865, -3.0234375, -0.78515625, 2.0605469, 0.039978027, -0.06335449, -1.1767578, 0.52490234, -0.6948242, 0.15515137, -0.42163086, 2.1660156, 0.06829834, 0.20080566, 0.5126953, 1.6923828, 0.49023438, -1.2304688, -0.40454102, -1.3486328, 1.6103516, 0.45776367, 0.0021781921, 2.7421875, -0.42041016, 0.62939453, -0.8989258, 0.2944336, 0.33813477, -1.859375, 1.6318359, 1.3759766, 1.6865234, 1.7050781, 1.25, 0.074279785, 0.054901123, 0.94628906, -1.6132812, -0.17163086, 0.77978516, 0.3244629, -2.3964844, 1.7802734, -2.0039062, -0.5883789, 1.2080078, 1.1376953, -1.7050781, 2.3886719, 2.0703125, 0.9135742, 1.6523438, -0.27197266, -2.0234375, -0.3461914, -0.50341797, -0.51708984, 0.7011719, -0.5366211, 0.5488281, 1.5458984, -0.5517578, 0.23864746, 0.72753906, 2.2070312, -0.38330078, 0.3972168, -0.3713379, -0.38256836, -1.8916016, -0.37475586, -0.37670898, -1.2382812, 0.75878906, -0.6611328, -1.8662109, 2.1132812, 1.9746094, -1.2451172, -1.3027344, -0.31689453, -3.0371094, 0.33081055, 1.4697266, -0.8696289, 0.6220703, 0.5107422, 2.1796875, 0.5419922, 0.77246094, 1.0410156, -0.18054199, 0.8876953, -0.7368164, -1.3457031, 1.3730469, 0.18969727, -0.2861328, 3.5058594, -0.3310547, -2.0761719, 0.36328125, 1.9248047, -3.5722656, 0.111328125, -0.7607422, -1.4960938, 0.9301758, 2.3535156, -2.7167969, -0.049346924, 2.0214844, -1.1474609, 0.23596191, -1.5771484, -0.5473633, 1.4033203, -0.97509766, -0.073913574, -1.3535156, -1.171875, 2.5800781, -0.18200684, -0.5463867, -0.8955078, 2.3574219, 0.08538818, -0.41577148, -0.106933594, 0.8959961, -1.1113281, 0.08380127, -0.36938477, -1.8613281, -1.8095703, 0.96728516, 1.0556641, 1.1923828, 0.95996094, 1.1289062, 0.5541992, -1.7832031, 1.0449219, 0.7241211, 0.60839844, -1.7216797, -0.27416992, 2.0410156, -1.1757812, 0.7158203, -0.25439453, -0.053222656, -1.9160156, 1.40625, 1.6289062, 0.20043945, -0.92041016, 0.11920166, -1.9482422, -4.8007812, -0.6323242, 0.60595703, -0.7607422, 0.88378906, 1.1982422, -0.08099365, 1.0195312, -0.9770508, -0.36035156, -0.49414062, -0.33251953, 1.4648438, -0.4267578, -3.0253906, 0.015640259, 2.3789062, -0.0051498413, 0.19787598, -0.78222656, -0.10406494, -1.0058594, -0.9746094, 1.3447266, -0.25830078, 2.1601562, -0.8535156, -0.93408203, -0.37109375, 2.3847656, 1.6923828, -2.1367188, 0.15734863, -3.8144531, -1.1367188, -0.63427734, -1.8583984, 0.19934082, 0.87890625, 0.66064453, -0.15966797, 0.70947266, -0.98876953, -0.8984375, -1.6748047, 0.79248047, 0.58740234, -1.3525391, -0.013053894, 0.7207031, -1.2353516, 0.7314453, 0.29833984, 1.1103516, -3.2832031, -1.1210938, -1.1464844, 1.3505859, -1.1035156, -0.20397949, -1.6523438, 2.2734375, 3.6289062, -0.66308594, 0.76464844, 1.0185547, -0.30981445, 0.7680664, 0.7626953, -0.99121094, 2.7871094, -0.7236328, -2.3105469, -2.75, -2.2832031, 0.9145508, 1.2431641, 0.2932129, -1.7939453, -1.0507812, -1.1787109, 0.7558594, 0.31762695, -0.8095703, 3.1152344, 0.20703125, -1.2226562, 0.5517578, -0.39941406, -0.042144775, 0.6386719, 1.3837891, 0.9604492, -0.79541016, 1.6669922, 1.8271484, -2.3007812, 0.05014038, -1.5039062, 0.7885742, 0.30395508, -0.99121094, -0.29003906, -2.0644531, -0.7441406, -1.7988281, 0.3125, -3.3828125, 0.94384766, 0.5473633, -0.32226562, 0.21069336, 0.90771484, -1.0859375, 2.7363281, 4.3320312, 2.28125, -0.7705078, -0.16516113, -2.015625, -0.67041016, 1.2011719, -0.057373047, -0.42016602, 1.4638672, 0.20056152, -1.0693359, 0.78125, 1.5068359, 2.7753906, 0.6279297, 0.921875, 0.09295654, 0.61572266, 1.9150391, -0.33374023, 2.0039062, 2.5527344, 0.3725586, -2.4375, 1.5039062, -0.5234375, 0.07836914, -2.5195312, 1.0751953, -1.8466797, -1.6074219, -1.4072266, -1.5732422, 0.019683838, -3.03125, 1.5644531, -0.5029297, -1.1982422, -0.9350586, -0.5498047, -1.3378906, 0.6611328, 1.4863281, 0.050445557, -0.14245605, 1.6875, -1.8789062, -0.2763672, -0.5654297, 0.044555664, -3.8242188, 1.5644531, -0.5498047, -1.7666016, 1.7148438, 2.0039062, -0.6015625, 1.2763672, 0.94189453, -0.34375, 1.6396484, -1.3925781, 0.002204895, 0.54345703, -1.2949219, 1.9082031, 3.6582031, 1.4082031, -1.1113281, 0.640625, -2.2460938, -2.1679688, -2.1132812, 2.515625, 0.42919922, -0.44335938, 0.2788086, 0.25927734, 1.28125, -0.5332031, 2.4980469, -1.5839844, 0.0848999, 1.5927734, -2.0605469, -1.8154297, 1.7138672, 1.2060547, 1.0751953, 0.060150146, -0.93115234, -0.4658203, 2.9511719, 1.7177734, 0.2939453, -0.5288086, -0.0062026978, 0.08691406, -2.5078125, 2.7089844, -0.48632812, 0.052001953, -0.55322266, 3.3730469, 2.5664062, 1.8085938, 0.42749023, -0.18908691, -0.2368164, -1.5947266, -0.6298828, 0.6591797, 0.49682617, -1.3369141, -1.3740234, 1.1455078, 1.3173828, -0.82666016, 1.328125, 0.13024902, -0.67626953, -0.19006348, 2.2910156, -1.7060547, -1.5546875, 1.7744141, -0.15991211, -3.9804688, -1.8535156, 0.83447266, -1.3027344, -2.1289062, 0.8691406, 1.6171875, 0.2142334, -0.03756714, 0.011108398, -1.7792969, 1.390625, -0.43041992, 0.10748291, -0.14245605, -0.90283203, 0.7871094, 0.3876953, -0.8129883, 1.6542969, -0.15527344, 1.0908203, 3.0625, -2.7519531, -0.61572266, -1.4443359, -0.7939453, 0.47998047, 2.1660156, -0.40112305, 1.3134766, -1.09375, -4.0742188, -0.90478516, -0.8491211, 1.3632812, -0.0076522827, -1.2939453, 0.08996582, 1.4433594, 4.1640625, -1.5058594, -1.2646484, 0.05618286, 0.004688263, 0.8652344, 1.4873047, 2.5, 1.7177734, 2.3320312, 0.18981934, 4.0976562, 2.2695312, -1.5400391, 1.7509766, 1.59375, 0.6801758, -1.4853516, -0.7714844, 0.53515625, 0.9941406, 0.85595703, -2.3457031, -0.33398438, 0.7368164, -1.2832031, -2.6582031, -1.7558594]}, "B073XD9W9D": {"id": "B073XD9W9D", "original": "Brand: Cook Time\nName: BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches\nDescription:

Color:Black + Copper

Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy!\u00a0

Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.\u00a0

Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.\u00a0

With one of these mats down, you can prepare a full breakfast in a matter of minutes.\u00a0

They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.\u00a0

For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.\u00a0

These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.\u00a0

These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...\u00a0

-Veggies

-Shrimp\u00a0

-Fish

-Bacon\u00a0

-Pizza\u00a0

-Pancakes\u00a0

BBQ Grill Mats Size: 15.75\" x 13\"

Note: can not directly contact the fire source

\nFeatures: 100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill.\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit!\nAPPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!\n", "embedding": [-0.7763672, 1.6533203, 2.0761719, -0.67871094, 1.6367188, 0.7885742, 0.9682617, -0.53564453, 1.6074219, 0.9682617, -1.8105469, -0.6923828, 1.8457031, -3.4550781, 1.4072266, -0.8442383, 0.71875, 2.4824219, 1.7080078, 1.9589844, 0.6669922, 0.2310791, 0.051635742, -2.6367188, 1.5595703, 0.46704102, 2.2324219, -0.96191406, 0.9614258, 0.034606934, 2.1132812, 1.3037109, 0.2685547, 2.1582031, -3.4160156, -2.0761719, -0.20690918, 2.9160156, -0.20507812, -0.87646484, -0.31713867, -2.9042969, 1.9824219, 1.7275391, -2.9199219, 0.30151367, 0.052215576, 2.171875, -2.2285156, -3.84375, 2.6230469, 1.1191406, 3.5371094, -0.36547852, -2.6230469, 1.4765625, -1.3105469, -1.2763672, 0.8432617, -0.28295898, -1.0498047, -1.2333984, -1.2402344, 1.2529297, 0.52197266, -1.3359375, -0.020996094, -2.8789062, 1.0722656, -1.4316406, 0.22167969, -0.33569336, -0.44433594, 0.60302734, -0.9243164, -0.8027344, -1.4111328, 0.017456055, -0.28344727, -2.5820312, -0.22265625, 3.3007812, -1.2587891, -0.5991211, 1.2958984, -2.3339844, -2.8457031, -0.75634766, 2.9453125, -0.95703125, -0.1352539, 2.4902344, -1.4423828, -4.0078125, 0.58203125, -3.0644531, 1.6933594, 0.21691895, -0.8286133, 2.640625, -2.4335938, -0.6118164, -0.8022461, 2.0019531, -3.90625, -3.3085938, 1.9404297, -0.71484375, 0.32861328, 0.4621582, 0.057739258, 1.2597656, 0.5517578, 1.5595703, 2.1835938, 1.6591797, -0.7636719, -1.1386719, 0.7211914, 1.9316406, 4.7070312, 2.2792969, 0.11584473, -2.2519531, 1.1386719, 0.24243164, -0.55859375, 1.3603516, 2.53125, -2.46875, -0.7626953, -0.82666016, -0.92041016, -0.35961914, -1.6074219, -1.6464844, -0.9453125, -0.5390625, -2.515625, 2.1757812, 1.4228516, -0.30981445, 2.7128906, -0.45922852, -3.0429688, -0.08538818, -1.8144531, 4.1914062, -1.7871094, -1.8125, 1.4980469, -0.71533203, 0.77246094, -0.4675293, 1.8544922, -0.08880615, 1.4707031, 0.38012695, 1.4882812, 2.4023438, 1.4306641, -2.6152344, -1.9365234, 0.3630371, 1.5087891, -3.3105469, -1.78125, 1.5087891, 0.22497559, 3.3398438, 0.1194458, -2.5117188, 1.4912109, -0.45092773, -0.25976562, -0.18359375, 0.8979492, 2.6875, -1.8623047, -1.4804688, 0.6826172, -3.3359375, -0.7685547, 1.1455078, -0.95947266, 0.68896484, 0.9042969, -0.63720703, 1.7177734, -1.1357422, 0.2121582, 2.8574219, -0.20690918, 0.6142578, -2.3417969, -1.9121094, 0.0881958, -0.9536133, 2.4199219, -0.78222656, -0.17211914, -1, -1.4541016, -0.03805542, -2.5859375, -3.3632812, -1.8691406, 2.7382812, 2.4023438, 0.67626953, -0.4428711, -1.1416016, 1.8984375, 2.2324219, -1.7255859, -0.8095703, 0.52197266, -0.25854492, 0.8833008, 1.1738281, -1.0996094, -0.4711914, -2.0878906, 3.9296875, 0.37353516, 1.4355469, -0.45288086, 1.9111328, -1, -0.8779297, 1.3632812, -0.5878906, 0.38964844, -0.7060547, -0.41674805, 2.734375, 2.625, -2.0449219, -2.3144531, 0.0027999878, -1.0839844, -1.7158203, -1.7685547, -2.9023438, -1.1650391, -0.90625, -0.81103516, 1.5566406, 0.68408203, -2.671875, -1.1591797, 4.3554688, 1.6015625, -0.7133789, -1.2373047, 0.2944336, -0.28125, -0.19042969, -2.7265625, -0.32104492, -0.54785156, -0.08093262, -0.089416504, 2.0820312, 1.6484375, -1.0302734, 1.6386719, -0.3190918, -2.1367188, 0.3076172, 0.40185547, -1.9707031, 0.26367188, -0.7270508, 1.4277344, -0.93603516, -3.1835938, -0.07104492, 1.4335938, 0.19104004, -0.5083008, 2.7539062, 1.5878906, -1.6650391, -3.5761719, -0.2163086, -0.21936035, -2.4921875, 1.8574219, 0.57177734, 3.8125, 2.0917969, -1.3779297, 2.109375, -1.3330078, 0.4868164, 1.5429688, -0.9355469, -1.5625, -0.22741699, -0.4975586, 3.6210938, -0.31860352, 0.46313477, -0.9628906, 1.0488281, 2.6582031, -1.8857422, -1.4130859, 2.3046875, 0.13391113, -1.5351562, 1.3867188, 1.7988281, -2.2382812, -1.5078125, 1.5039062, -0.48413086, 1.1357422, -1.9335938, -0.81103516, -0.5810547, -0.46923828, -3.4121094, -0.8339844, 2.421875, -1.3603516, 1.2041016, 0.45654297, 0.85791016, 0.6425781, -1.5839844, 0.9868164, -0.26635742, -1.7783203, -1.2294922, -0.8930664, -0.8598633, -2.296875, 0.34765625, -1.0419922, 0.9628906, -0.7348633, 1.5205078, -0.96728516, -2.3339844, -1.6992188, 0.11505127, -0.26293945, 2.2558594, -0.25976562, 0.5161133, 0.2331543, -2.8515625, 0.77246094, 0.5361328, 0.40966797, 0.76660156, -1.3808594, -0.11401367, 0.12408447, -0.012054443, 1.5859375, 1.2275391, 0.3269043, 1.6679688, -1.8154297, -2.1289062, 1.0595703, -0.3881836, -0.8647461, -1.0244141, -0.2722168, -1.2216797, -1.1806641, -1.0566406, 0.9453125, 3.3066406, 0.22705078, 1.6533203, -1.8662109, -0.8925781, 0.5800781, 1.0439453, -1.1884766, -0.6640625, 0.60839844, -1.3359375, -1.3496094, -1.8876953, -0.57128906, -2.09375, -0.26000977, -1.3056641, 2.7988281, 0.91552734, 4.265625, -2.6054688, -0.59521484, 0.5830078, 1.1865234, -0.41430664, -0.5551758, -0.33666992, 0.97021484, -0.19641113, -1.5546875, -0.53564453, 1.6152344, -0.97265625, 0.63964844, 1.5126953, 0.5776367, -0.003929138, 1.0292969, 0.15100098, 0.22009277, -2.7480469, -1.4794922, 0.9555664, 1.4482422, -1.0507812, -1.5341797, -2.6015625, 3.359375, 0.94628906, 1.3857422, -0.39526367, 0.0036811829, 3.1074219, 0.9399414, 1.046875, -1.0703125, 2.5664062, 0.37182617, -0.6035156, -1.3818359, 1.4199219, 0.4248047, -2.7070312, 1.1621094, 1.2519531, 1.2529297, -0.091430664, 0.20239258, -0.1652832, -0.71533203, -0.25268555, 3.8632812, -1.0712891, 0.099731445, -1.0800781, 0.69384766, -1.2597656, 0.76904297, 2.3886719, 2.125, 1.2490234, -0.66552734, 1.6376953, -1.3115234, -2.9648438, 0.73291016, 1.2832031, -0.54589844, -1.0068359, 1.8056641, 0.7915039, -0.055725098, 5.1054688, -1.4501953, 1.4648438, -1.7431641, 0.9291992, 2.9140625, 0.5292969, -0.46948242, -2.2714844, -1.2333984, -0.87890625, -2.8984375, 0.6879883, -3.1933594, -1.8349609, 1.78125, -1.78125, -4.546875, 1.6259766, 3.4433594, -0.63720703, -1.2666016, -1.2363281, 2.8730469, -0.85595703, -1.4101562, -0.6191406, 2.7109375, -0.6459961, 2.0917969, -1.3867188, -0.19128418, 1.7011719, -2.2421875, 1.9013672, -0.7421875, -2.859375, -1.65625, -1.6552734, 0.117492676, 1.8642578, -0.078552246, -0.97558594, 1.0458984, -1.0078125, -0.18530273, -2.8398438, 0.91796875, 0.36645508, -2.7988281, 0.77783203, -0.14953613, 1.9404297, -0.9423828, -0.6948242, 3.1269531, 1.7470703, -1.8359375, 0.2644043, -3.2773438, -0.019577026, -1.3193359, -1.8037109, -0.12219238, -0.41381836, -0.9145508, 3.875, 1.7822266, 1.2255859, 3.90625, -0.5761719, -2.5859375, 0.9165039, -1.4179688, -0.54785156, -1.3388672, 0.6513672, 3.5683594, 1.1298828, -0.72998047, -0.5966797, -1.4951172, -0.87109375, 0.41455078, -0.51708984, 2.0449219, -0.4790039, -1.8310547, -0.51123047, 0.32470703, 0.42700195, -2.65625, 0.3725586, 1.4423828, 1.7841797, 3.8125, -2.0351562, 1.0585938, -0.48657227, 0.2705078, -1.5439453, 0.19018555, -1.2167969, 0.081848145, 4.21875, -0.8183594, -2.0449219, -0.27392578, -0.02204895, 1.6738281, 0.07507324, -1.7294922, 0.58935547, -2.1992188, -0.19445801, 0.4892578, 2.3417969, 1.1464844, -1.9794922, -1.4160156, -1.1953125, 0.64501953, -1.9423828, -1.3271484, -0.42822266, -0.6069336, -0.7446289, 0.12390137, -1.3164062, 3.0195312, -1.0507812, -0.69873047, -1.7558594, 2.5058594, -0.65527344, 0.7373047, 6.5625, -2.7207031, 0.14453125, 2.4609375, -4.0234375, -1.2304688, -0.38623047, -1.0927734, -2.1855469, 1.8583984, 2.3125, -1.7255859, -2.0410156, -0.3881836, 0.6225586, -0.60302734, -1.921875, 2.3808594, -1.5107422, -0.7294922, 1.5957031, -0.84033203, 2.9765625, -1.0361328, 2.3925781, 2.5800781, -0.2956543, 0.6279297, 1.6123047, -0.3540039, -0.93603516, 0.83203125, 1.8691406, -0.043945312, -0.3959961, -0.36621094, 0.5605469, 0.4477539, -4.21875, 1.8828125, 0.12011719, 1.8330078, -1.6279297, -1.7724609, 1.7871094, 3.8105469, -0.6899414, 2.5449219, -1.0957031, -1.0585938, 1.375, 1.6376953, -0.8574219, 1.2529297, -1.3115234, -0.8691406, 2.0058594, -1.6210938, -1.2431641, 0.27001953, 1.2441406, 0.11584473, -0.28979492, -1.5498047, 1.0966797, 1.8476562, -1.1699219, -0.0904541, -1.59375, -1.2226562, 1.7978516, -1.4345703, -0.076660156, 0.1586914, 0.51953125, 3.421875, -2.25, -2.0351562, 1.8291016, -0.08203125, 0.37768555, -0.16101074, -2.8808594, -3.3867188, -1.9892578, -1.2919922, 1.5507812, 1.5058594, 0.3203125, 1.7626953, -1.8828125, 2.2617188, -3.6523438, 1.3232422, -1.8212891, 0.051574707, 3.9746094, -4.8867188, 0.26464844, -0.7685547, 1.484375, 1.0888672, 0.24694824, 2.8339844, -3.1699219, -1.6660156, 0.8486328, -1.2978516, -2.3027344, -0.09649658, -0.07543945, 1.3457031, -0.021362305, -0.79541016, 0.20446777, -1.0566406, -0.74072266, -0.24194336, 0.93652344, 0.5336914, -0.32104492, -1.6054688, -2.4042969, 0.117126465, 0.007095337, 0.6977539, 0.53808594, 5.2070312, -0.7446289, -2.1289062, -0.28271484, 0.18981934, -2.9980469, -2.1230469, 1.8867188, 0.15722656, -0.14245605, 0.57177734, 0.2322998, -1.6796875, 1.9746094, 0.7895508, 0.34545898, 1.3671875, -0.03439331, -1.6425781, -0.57714844, -3.6542969, 0.69921875, -3.8398438, 0.7519531, 0.6118164, -3.4609375, 1.4404297, 1.8681641, -1.7158203, -0.6333008, -0.36645508, 0.98095703, 0.99121094, 0.9560547, 0.34570312, -0.24841309, -3.1542969, -4.5546875, 0.36791992, -1.7851562, -1.4853516, -0.8852539, -0.09716797, 2.6738281, -0.7348633, 1.84375, 1.0898438, 1.1396484, -1.4785156, 1.2939453, 0.6591797, 0.98095703, 0.58251953, 0.92089844, -1.1914062, -1.7480469, 1.3798828, -0.46264648, -0.09100342, 2.125, -2.4882812, -2.8789062, -2.0292969, 0.6557617, 0.9477539, 2.2304688, 2.2460938, -1.2373047, -1.1640625, 0.8066406, -2.3886719, 2.3105469, 1.3681641, 2.28125, -2.1777344, 4.3710938, -2.7636719, -4.9023438, 1.1513672, -0.63623047, -1.4960938, 0.20996094, -0.8984375, -0.033813477, 0.1940918, -1.8974609, -1.2910156, 0.46264648, -0.625, 2.9941406, -1.1601562, 0.30981445, -0.63183594, 3.1933594, 0.5185547, 2.2324219, 3.1074219, -0.3701172, -1.7412109, -1.3417969, -0.46899414, 0.73339844, 0.7246094, -1.7314453, -0.81152344, -0.2644043, -0.7714844, -1.0117188, 3.265625, 0.70166016, 0.024230957, -0.10620117, 2.4003906, 3.7734375, 1.7431641, 2.5644531, -0.4609375, 2.6796875, 1.4238281, 1.3730469, 0.38256836, 2.4121094, 0.9277344, 1.6777344, -0.6699219, 2.2890625, 0.27294922, 1.0351562, -0.3857422, 0.75878906, -0.86083984, -2.3066406, 3.4003906, 1.4355469, -1.1640625, 0.43847656, 0.35717773, -3.4003906, -0.6748047, -1.5009766, 0.025848389, 3.5546875, 0.62646484, 1.3945312, 0.62841797, 0.88671875, 2.1933594, -2.8398438, 0.9350586, 1.3173828, -0.28686523, -2.1855469, 1.9482422, -0.09729004, 1.4580078, 0.24328613, 0.113220215, 1.5634766, 2.2519531, 0.6425781, 2.1621094, 0.21813965, -1.0253906, 2.5488281, -2.1933594, -2.0566406, -2.1523438, 0.23266602, -0.5234375, -1.3632812, 0.20227051, 1.3701172, 1.8994141, 0.12072754, -5.234375, 0.875, 0.70410156, 1.34375, -1.4628906, -0.3251953, -0.8979492, -3.7167969, -1.6191406, 1.6132812, 2.15625, 1.0546875, -0.4584961, -1.7529297, 0.7885742, 0.50634766, 2.4238281, 1.2382812, -0.19824219, -1.4365234, 1.2607422, 0.05340576, 3.8574219, 1.8027344, 2.2910156, 0.57373047, 0.66845703, 2.4765625, 1.6914062, 0.23242188, 1.515625, -0.5161133, -0.0960083, -1.0742188, -0.43408203, -0.2322998, -1.4121094, -1.6171875, 0.5395508, 0.9145508, -1.3828125, -0.14660645, 0.7661133, 1.3203125, 3.0273438, -0.036956787, -1.5, 2.2304688, 3.3613281, -0.9379883, -0.73046875, -0.6904297, 0.027313232, -1.5361328, -1.6679688, 1.234375, 1.6923828, 0.65722656, -1.7802734, 0.5341797, -0.22045898, -0.38427734, 0.9111328, 0.5629883, -2.0898438, -2.5722656, 1.5195312, -0.5361328, 1.2001953, 2.6816406, -1.2392578, -1.8300781, -1.1054688, -2.3398438, -0.77685547, -1.8203125, -1.3818359, 2.078125, 3.1445312, 0.93408203, -0.054473877, -0.9926758, -1.4033203, 1.9384766, -0.74316406, 3.3808594, 1.1044922, -2.5332031, -0.23571777, -2.921875, 1.7558594, 0.7553711, -2.9433594, -0.18908691, -0.93408203, -0.51220703, -1.3417969, 0.46923828, 0.9746094, 0.8520508, 0.8935547, 2.2460938, 3.6542969, 0.39990234, 2.4355469, 1.5419922, 0.44140625, -1.3544922, -1.0039062, -0.00060606, 1.9619141, 0.17236328, 0.09881592, -0.4230957, -0.22753906, -0.890625, -0.89453125, -0.5751953]}, "B01FUSLMDK": {"id": "B01FUSLMDK", "original": "Brand: BBQ GALORE TURBO\nName: BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366\nDescription: BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.\nFeatures: \n", "embedding": [-2.9824219, 2.3046875, 0.9169922, -2.9628906, 1.3613281, -0.13696289, -0.27856445, -1.7128906, 3.6855469, 0.69970703, 3.0566406, -0.36767578, 0.94433594, -3.0585938, 1.4462891, 2.5839844, 0.7294922, 1.7216797, 2.8691406, 1.6845703, 0.4729004, 0.5107422, -0.35742188, -0.5527344, 0.4873047, 0.6855469, 2.5664062, -2.5898438, 2.4355469, -2.1269531, 1.3935547, -0.9711914, -0.59814453, 2.6796875, -2.2402344, 0.8520508, 0.7973633, 2.3828125, -2.9101562, -0.80859375, -0.83496094, 0.4934082, 1.1591797, 0.037597656, -2.0273438, -1.5839844, -1.5947266, 2.6445312, -2.1074219, -0.36083984, 1.6865234, 4.03125, -2.2148438, 0.30541992, -1.1435547, 3.2246094, -1.8193359, -1.7060547, 0.4873047, -0.42382812, 2.8710938, 1.3681641, -3.4375, 0.8105469, 0.39575195, 3.7832031, 1.1132812, -0.55371094, -0.35498047, -2.8417969, 1.1689453, 2.0605469, -1.0566406, 0.15917969, 1.0332031, -0.19873047, -1.1201172, -0.11029053, -1.3027344, -0.47631836, 0.26953125, 2.6210938, 0.6855469, -4.921875, 0.81933594, 0.62402344, 0.22302246, 0.6401367, 4.2070312, -1.1591797, -0.07366943, 0.27026367, -0.48217773, -2.6640625, 1.5322266, 0.17858887, -1.6123047, 1.6025391, 0.36694336, -0.38720703, -0.875, -0.8520508, -1.4951172, -2.3808594, -0.68310547, 0.43530273, -0.9213867, 1.8935547, -2.984375, -1.2119141, -1.8457031, 2.3085938, 1.3759766, -0.34057617, 0.20361328, -0.31396484, 0.33032227, 0.85498047, 0.27026367, 0.68408203, 0.27172852, -2.09375, -0.34814453, -2.2519531, -0.8496094, 0.13000488, 0.5678711, 0.3557129, 5.5117188, -0.12927246, 1.4472656, 0.6191406, 4.7695312, -2.4550781, 1.7275391, -3.1914062, -1.4794922, -1.5917969, 1.7412109, 0.038146973, -0.2355957, 0.6484375, 2.5039062, -1.5400391, -4.0195312, -2.0175781, 0.20336914, 0.23095703, 0.453125, -0.6875, -0.22021484, -0.64404297, 0.5317383, -0.8925781, 1.9833984, 0.17919922, 0.8515625, -2.1855469, -0.37451172, -0.15283203, 0.44970703, -1.9306641, 0.609375, 2.9257812, -2.8300781, -1.1337891, -3.0039062, 3.5449219, -0.92626953, 3.3867188, -1.0234375, 0.2878418, 0.07525635, -2.421875, 0.8364258, -0.44604492, 0.28100586, 2.3496094, 1.2871094, 2.1308594, -1.421875, -0.5600586, -0.14990234, 1.3564453, -0.9814453, -0.41235352, 0.40966797, 0.5, 3.1601562, 0.6958008, 2.5820312, 1.5410156, 3.1035156, 1.2265625, 1.4609375, -0.5541992, 0.4987793, -1.1933594, -0.23278809, -0.41748047, -2.6425781, -5.1523438, 1.3447266, -0.79345703, -2.09375, -2.578125, -0.27172852, 0.56689453, 1.6669922, 0.013313293, 1.8193359, 0.081848145, 2.4609375, 0.1899414, 1.3183594, -2.59375, 1.4257812, 1.3193359, 2.9355469, 0.9140625, 1.2363281, -1.4160156, -0.7988281, 4.6484375, 1.6464844, 1.6435547, 1.5224609, 1.4033203, -3.765625, -2.2890625, 1.7636719, 1.6240234, -1.8242188, -0.24572754, 1.2763672, 1.9023438, 2.4121094, -3.3808594, -0.25805664, 0.19140625, -0.13427734, -3.4375, -0.58740234, -0.54052734, 0.91796875, 1.2275391, -3.0117188, 0.34838867, -1.1552734, 0.5546875, 1.3095703, 2.9726562, 1.3007812, 0.5620117, -0.119384766, -1.0625, -0.024597168, 2.1835938, -1.9570312, -3.4140625, 2.6171875, -1.2871094, -0.07861328, 0.5517578, -0.87353516, -1.7246094, 3.5800781, -0.6123047, -1.5058594, -2.4765625, 1.1083984, 0.76416016, 1.9736328, 0.011253357, 0.3166504, 3.9433594, -1.0410156, 0.9638672, -0.6098633, -0.60302734, -1.1298828, 2.0449219, 2.6132812, -2.5878906, 0.7529297, -0.04815674, -1.6728516, -1.8789062, 0.034423828, -0.20141602, 2.9550781, -0.2548828, -2.1308594, 3.4882812, -1.0927734, -0.35083008, 2.8789062, -1.1669922, 0.68652344, 0.042541504, -0.26489258, 0.98291016, -0.79052734, 1.0488281, 0.068237305, 0.5546875, 2.2421875, -2.015625, -0.71875, 1.7783203, -2.1367188, 0.8232422, -0.37695312, -0.3347168, -0.27319336, -2.0234375, 0.48901367, -1.4550781, 1.5263672, -0.6411133, 0.048950195, 2.6855469, 1.3115234, -2.1972656, 0.8618164, 0.1907959, -0.123168945, -0.83740234, 0.8417969, 0.35864258, -0.7104492, -0.23486328, 1.1875, -0.27661133, -1.7441406, -0.29907227, -4.484375, -1.9648438, -0.13549805, -1.5234375, -1.8623047, 1.2558594, -1.8945312, 2.265625, -2.1269531, -4.96875, -1.8193359, -0.15209961, -0.20715332, -0.54833984, -0.5234375, 0.023406982, -0.18005371, -2.6679688, 2.7207031, -2.1679688, 0.94970703, 0.28955078, -0.23132324, 1.2392578, -1.9833984, -1.3457031, -1.4160156, 1.5166016, 0.93652344, -0.5527344, 0.6699219, -2.1035156, 0.022506714, -2.6484375, 1.671875, -1.3662109, 0.9370117, -2.9453125, -1.1699219, -1.1474609, -0.35229492, 1.5224609, -1.6064453, 1.3007812, -1.8974609, 0.095336914, 2.5605469, -0.9941406, 0.15075684, -1.2636719, 0.97802734, -1.5771484, -2.7675781, -2.7265625, -1.1035156, -1.3613281, -0.38061523, -1.2480469, -1.1298828, 0.19641113, 0.82714844, -1.9541016, -0.3173828, -2.0820312, 0.42407227, -0.6977539, -2.0039062, 1.1757812, -0.8300781, -1.2060547, -2.4550781, -3.2949219, 0.80322266, -1.3662109, -0.9355469, -0.50683594, -1.0458984, 0.117492676, 0.9458008, -2.9726562, 0.6489258, -0.30395508, -3.109375, 0.7338867, 0.7661133, -1.3457031, -1.2822266, -1.125, 4.1328125, 1.1884766, 3.8554688, 0.80566406, 2.1503906, 1.0625, -2.2109375, 1.8623047, 1.3457031, 3.015625, 3.1308594, -0.37231445, -0.13916016, -0.2064209, -0.08526611, -2.2402344, 2.0429688, 1.9892578, 0.5751953, 2.4628906, 1.8964844, -0.71435547, 0.7265625, -1.8046875, 2.9179688, 2.0371094, 0.48046875, -0.47631836, 0.08605957, 0.1583252, 0.6801758, 1.8125, 1.6240234, 1.5488281, 2.0644531, 1.4169922, 0.21118164, 1.1542969, 1.5253906, 1.6376953, 4.3242188, 0.46191406, 3.4023438, -0.40649414, -1.3730469, -0.7270508, 1.9394531, 1.7871094, -4.0820312, 0.6586914, 2.78125, 0.4111328, -2.7519531, 2.0449219, 1.2939453, 0.75439453, -2.9570312, 0.8881836, -1.8369141, -0.13720703, -1.4345703, 0.1772461, -0.5576172, -2.0976562, 3.8925781, -2.3476562, 2.0390625, 0.6166992, -1.1796875, 2.0585938, -2.4980469, 3.0585938, 1.1865234, -0.7026367, 2.234375, 1.4560547, -0.6328125, 0.91796875, -2.15625, -0.1743164, -1.1953125, -2.1230469, 1.046875, 0.13586426, -0.89404297, 2.265625, 0.22631836, 0.31054688, -0.38134766, 0.37939453, -1.3457031, -1.6474609, -0.36938477, -2.0605469, -2.0742188, -2.3222656, 2.734375, 0.19152832, -1.53125, -0.39160156, 1.6601562, 1.2363281, -0.6484375, 0.3112793, -1.7148438, -1.3613281, -1.1523438, -2.6523438, 2.4355469, 0.82714844, -0.113098145, 1.1992188, 2.3769531, -0.35546875, 3.5625, -0.42797852, -2.078125, -0.7626953, -0.8647461, 0.5214844, 0.88623047, -2.4238281, 0.08508301, -1.0488281, 1.0761719, -2.7265625, 1.6640625, -0.4423828, 1.6240234, 0.86083984, -3.4785156, -0.13134766, 0.4897461, 0.21020508, -1.2607422, 0.4753418, -0.13928223, -1.3623047, -1.3095703, -2.1035156, 2.4355469, 0.6694336, -0.2939453, -2.9863281, 1.4755859, 0.27026367, -1.6572266, 1.3095703, -2.1191406, 3.6914062, -0.29248047, -2.8320312, -1.8525391, -0.9916992, 0.39575195, -1.6962891, 2.2539062, -0.3166504, -2.1796875, 2.2734375, 0.48510742, -1.1669922, 1.5351562, 1.6894531, -3.1484375, -1.1220703, -2.9160156, -0.21228027, 0.31811523, 0.5776367, -1.1933594, 0.38305664, 1.2294922, -2.7050781, -0.5419922, -1.1816406, -1.1689453, -2.0175781, -0.08605957, 0.22351074, 0.5288086, 1.6923828, -1.1083984, 0.24182129, -1.2216797, 0.62109375, -2.0058594, -0.6826172, -1.6572266, 0.50439453, 0.36206055, -0.10546875, -0.6274414, 1.1679688, 2.6152344, -2.140625, 0.3737793, -1.4951172, 0.62060547, -3.2539062, 1.6474609, 2.8261719, 0.6088867, 1.0722656, -0.056549072, -0.06738281, 0.84472656, -0.49365234, -2.4609375, 1.5400391, 0.7553711, -1.0205078, 0.99902344, 2.6464844, 1.9628906, -0.5908203, 0.8305664, -2.9902344, 0.20654297, 0.9975586, -1.2978516, 0.55859375, 1.8916016, -1.9658203, -0.24902344, 3.2597656, 0.4597168, -0.58935547, 3.7011719, 0.87060547, -4.8242188, 0.51220703, 1.0957031, -5.0429688, -1.7246094, 2.1640625, -3.6425781, 0.6743164, -0.70654297, -0.95410156, -1.1298828, 2.6601562, -1.0576172, 0.3173828, -0.016220093, 0.044525146, 0.5214844, -2.1914062, 0.38427734, -1.71875, -0.6459961, 0.7675781, 0.18969727, -0.16601562, 1.8681641, -0.06640625, 3.6835938, -2.6660156, -3.1191406, 1.578125, -0.2536621, -0.296875, -0.027694702, -0.59228516, -0.7319336, -0.21374512, 0.7426758, 0.64697266, 0.7241211, -0.2055664, 1.3251953, -3.1445312, 2.015625, -1.3916016, 1.0458984, -1.5625, -1.6435547, 3.8144531, -0.83935547, -1.7871094, -3.7695312, 1.6787109, 1.6289062, 0.8515625, 1.0166016, -2.1074219, -0.26293945, 1.2949219, -1.3466797, -2.9863281, -2.6015625, 1.0771484, 1.1416016, -0.31640625, 0.061798096, 1.6601562, -0.39794922, 0.057037354, -1.7451172, -1.2167969, 0.30737305, -1.5166016, -1.3339844, 0.89208984, -0.03503418, -1.5166016, -1.7558594, 1.1152344, 0.32202148, 1.0488281, -3.9023438, -0.18347168, 3.609375, -3.4121094, -1.7333984, 2.4785156, -3.1894531, 0.8100586, -0.62060547, -0.49951172, -1.2421875, 1.5195312, -1.25, 0.5253906, 1.0078125, -0.39526367, 0.046447754, -0.57128906, -0.28735352, 0.7675781, 1.6816406, 2.1699219, 1.3027344, 1.3828125, 0.31274414, 1.0625, -1.0683594, -1.8017578, -3.1152344, 0.56152344, 1.7851562, -1.0898438, -0.6381836, 0.9785156, -1.2431641, -0.14453125, -3.1191406, 0.27368164, 1.6787109, -1.7646484, -0.3581543, 1.3505859, -1.3232422, -2.5664062, 0.73291016, -0.9238281, 0.031402588, 1.1865234, -0.9916992, 2.2324219, 0.20227051, -0.50634766, 1.7636719, 0.23876953, 0.93652344, 0.38305664, -0.5600586, -2.4667969, 1.4013672, 0.5600586, 0.22741699, -0.36889648, 2.1972656, 1.3144531, -1.3886719, -1.1660156, 0.74316406, 2.7050781, -0.9423828, 0.017196655, 0.29907227, 2.1796875, 1.0830078, 4.1289062, 0.3701172, -2.6367188, -0.12249756, -1.2363281, 3.4082031, -0.16748047, -2.7988281, 0.90625, 0.6230469, -1.7119141, -0.24328613, -2.8828125, -2.0898438, -0.86816406, -0.9169922, -0.18115234, -1.4414062, 2.1933594, 1.5410156, 2.3476562, 0.097473145, -0.025421143, -1.0566406, -0.50097656, -1.2792969, -0.7163086, 0.25805664, -1.8369141, -0.29882812, 0.421875, 1.1210938, -0.4345703, -1.5859375, 1.8740234, 0.72753906, -2.3476562, 0.82177734, 0.10217285, 2.4179688, 2.5761719, -0.19946289, 3.171875, 2.7167969, 0.39672852, 1.0166016, 0.6333008, 0.984375, -1.4960938, -2.2402344, 0.90771484, -0.45092773, 0.20837402, 1.3203125, -2.125, 1.6435547, -1.5292969, 1.5957031, -0.044281006, -0.54052734, -3.0917969, -0.8466797, -2.2851562, 1.2529297, -1.1972656, 0.87939453, 3.0214844, 1.6435547, 0.4338379, -1.5019531, -1.4414062, 1.9560547, -2.4082031, 0.010398865, 2.7597656, -0.2939453, 0.00667572, -0.4951172, 1.3505859, -0.31591797, 2.0273438, -1.6787109, 0.21765137, -1.2568359, 1.4824219, -0.29125977, -0.1161499, 0.6098633, 1.1601562, -0.8364258, -1.8759766, 2.046875, 1.8330078, -4.9023438, -3.4785156, 2.15625, -0.17382812, 0.6298828, 1.7529297, -3.0976562, 2.8613281, 0.10321045, 0.22302246, -1.9277344, 1.7177734, 0.14648438, 0.69140625, 1.4980469, 1.6875, 0.57714844, 2.9003906, 3.234375, 0.53027344, 1.4052734, 1.1220703, 2.6757812, 2.5234375, 4.546875, -1.6894531, -0.90478516, -0.765625, 0.58496094, -0.4934082, -1.484375, 1.5869141, 2.078125, 1.0625, 1.6787109, 2.3027344, -1.8251953, -0.16259766, 0.63427734, 1.8183594, 0.34179688, -1.0498047, -0.70166016, 1.6181641, 0.9765625, 0.08459473, -1.4306641, 2.9316406, -1.3007812, 0.49951172, 0.875, 0.65625, -0.7084961, 2.6679688, -0.58447266, -0.39868164, -0.4501953, -1.4775391, 0.27905273, -0.5966797, -0.09613037, 1.3222656, 1.6933594, 1.1464844, -1.859375, -2.0175781, 0.25, 0.96728516, -0.9658203, -0.55566406, -0.25073242, -1.6611328, -0.87060547, -2.8574219, 2.6855469, 1.2304688, 1.0966797, -1.4921875, -1.9570312, -0.39526367, -0.8076172, -0.40063477, -2.8925781, -0.8720703, 1.5263672, 0.01134491, 1.2460938, -1.0214844, -2.4257812, 2.390625, 0.5463867, 0.92529297, -0.40307617, -1.2324219, 0.37158203, -1.0244141, 3.6484375, -0.42749023, -1.5625, -1.7753906, -1.5439453, 0.65771484, -0.7919922, -0.8588867, -2.0957031, 0.87353516, -0.9970703, 0.47827148, 0.32836914, 0.50341797, -0.16418457, 1.4150391, 0.51708984, -2.1484375, -0.074523926, 1.0195312, 2.3398438, 0.24572754, -0.53125, 1.0322266, 0.45166016, 1.4541016, 2.1660156, 0.08050537]}, "B001DC7FPM": {"id": "B001DC7FPM", "original": "Brand: Stansport\nName: Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black\nDescription: \nFeatures: Compatible with most standard 16.4 oz propane canisters\nWide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances\nSwivel extension feet for added stability - Feet fold away completely for storage\nMade of durable high impact plastic for reliability and lightness\nReplacement base for camping or hunting stoves and propane accessories\n", "embedding": [-0.34716797, 1.0751953, 1.5654297, -1.4619141, 0.6254883, 1.609375, 0.96972656, -0.70458984, 0.63916016, 2.5527344, -0.04034424, 1.0800781, 0.8701172, -3.0644531, 0.13562012, 1.7636719, 0.1862793, 1.0888672, -1.0107422, 0.18249512, 2.3417969, 0.16809082, -0.7265625, -3.3417969, 0.71435547, -0.7182617, 3.6328125, -1.4716797, 0.09777832, -1.4492188, -0.21020508, -2.015625, 1.5751953, 2.3652344, -3.34375, 0.058410645, -0.7290039, -0.8857422, -3.2636719, -0.7885742, -1.4111328, 1.3847656, 2.5878906, 0.9482422, -2.0859375, -0.1920166, 1.1748047, 0.27563477, 1.0175781, 1.03125, 0.60546875, 0.7915039, -1.3037109, 1.5742188, -0.13171387, 0.03414917, 1.7919922, -2.8808594, 2.1269531, 0.8105469, 0.54003906, -0.09741211, -1.5390625, 1.0273438, -1.6318359, 1.4619141, 1.1289062, -1.9941406, -0.37304688, 0.48583984, 2.0527344, -0.7211914, 0.94677734, -2.8125, 1.3291016, -0.8857422, -2.703125, 1.2089844, 0.45507812, -0.5131836, -3.75, 2.7050781, 0.03567505, -0.14550781, -1.0722656, -1.1738281, -1.1738281, -0.35058594, -0.88671875, -0.082336426, -3.2519531, 1.3291016, -1.4501953, -3.7226562, -0.5209961, -1.3378906, 2.5136719, 0.19580078, 0.4711914, 0.15905762, -0.78564453, 0.16052246, 0.50341797, 1.0888672, -1.2333984, 0.5263672, 2.7695312, 0.35302734, -1.2207031, -1.0263672, -1.1435547, -0.42626953, 2.4609375, -0.34326172, -0.12670898, 0.89208984, -2.5429688, 0.49560547, 2.1230469, 2.0722656, 5.6367188, -1.1845703, 0.39990234, -0.62597656, 0.8027344, 3.0273438, -1.1416016, 0.08544922, 3.4394531, 0.021987915, -0.11621094, 0.7451172, 1.9658203, -0.96435547, -2.0878906, -0.50878906, -1.2763672, -0.7050781, 0.7451172, -3.7890625, -2.0136719, 0.09075928, 0.53222656, 0.18261719, -4.6523438, 0.17858887, -1.2177734, 1.3261719, -1.34375, -2.7089844, 1.0820312, -2.34375, -0.1295166, -0.3972168, 1.7363281, 1.7158203, -0.2890625, -1.0732422, 1.4609375, 1.8847656, 2.2851562, -1.6259766, 0.13122559, 1.8007812, 1.1259766, -4.546875, 0.21899414, 0.66015625, -0.03164673, 1.2480469, 1.4765625, -2.2617188, -1.2275391, -2.3535156, 0.6074219, -0.8491211, 0.36499023, 2.9375, -1.0507812, -1.2705078, -2.109375, -1.0556641, 0.56689453, 0.28686523, 2.4550781, -0.35107422, -0.6645508, -1.5947266, -1.1542969, -0.30932617, -2.5703125, 1.5488281, -1.6591797, -0.19702148, -0.51708984, -3.4804688, 0.013465881, -2.5878906, 1.7119141, 3.65625, -2.6484375, -1.4384766, -0.6582031, 1.9033203, -2.1289062, -0.043823242, 1.5800781, 0.99365234, 0.68603516, 0.5024414, 0.98876953, 0.3630371, 1.7666016, -1.1171875, -1.6503906, -1.4091797, 2.90625, 1.3095703, 3.2304688, 2.25, 0.10443115, -0.796875, 0.5629883, -0.39819336, 0.88623047, 2.4453125, 1.0273438, -0.10229492, -2.2539062, 0.68066406, 0.20275879, -0.26733398, -2.8339844, 0.89501953, -0.24121094, 2.5703125, 0.46411133, -0.11553955, 1.0058594, 0.32373047, -0.51123047, -1.9160156, -0.32006836, 0.44433594, -0.1706543, -1.0693359, -0.49194336, -1.0390625, 2.5429688, 0.9213867, 0.21582031, 0.18286133, 2.1425781, 0.24304199, 0.19616699, 0.9038086, 1.1630859, -0.58740234, -0.86376953, -2.9941406, 1.2480469, 0.49023438, -0.23474121, -0.30078125, 0.94628906, 0.06585693, 2.5839844, 0.96777344, -0.25561523, -0.43798828, -0.82128906, 0.4873047, 3.3378906, -0.41186523, 1.3242188, 1.1806641, -1.7773438, 3.0058594, 0.19470215, 2.3398438, 0.8798828, 0.6113281, 1.8544922, -3.828125, 0.71191406, 0.27978516, 0.6533203, -0.38476562, -2.8632812, -0.79248047, 3.9394531, -1.0546875, -1.2939453, 0.9291992, -0.021514893, 0.7578125, 1.9130859, 1.1826172, 0.72753906, -1.3652344, -0.06072998, 0.064086914, 0.5673828, 1.9521484, -0.5019531, 0.9272461, 0.82373047, -2.3867188, -0.014625549, 0.4790039, -0.8911133, -0.05090332, -0.25634766, 1.3291016, -0.4777832, 0.09893799, 2.7832031, -2.3125, 2.0722656, 0.6933594, 0.8588867, 0.32226562, 0.035583496, -1.1181641, -0.74072266, 2.0957031, -1.3193359, 1.5927734, 2.1230469, 1.0273438, -0.61572266, -0.63378906, 0.71435547, -0.99609375, -0.89208984, 1.1240234, -1.8408203, -2.1503906, 0.047058105, -0.26342773, 1.1513672, 1.8740234, -1.7207031, 1.2109375, -0.6152344, -3.0957031, 0.40063477, 0.9980469, -0.47631836, -1.8867188, 0.8955078, 2.5117188, 0.41601562, -3.1210938, -1.5068359, -0.29467773, 0.24707031, -0.98876953, -1.8105469, 1.671875, -1.6191406, 1.3066406, -1.2119141, -0.140625, -0.4206543, -2.8574219, 1.3330078, -3.2089844, 1.8388672, 0.78222656, 1.171875, -1.1259766, 0.87939453, -0.36767578, -1.9833984, 1.5185547, 1.0742188, 3.1425781, -0.83496094, 0.10809326, -1.1416016, 0.08905029, -1.3339844, -0.4873047, -3.2578125, 1.96875, -0.17321777, -1.2705078, -0.9794922, -4.0507812, 0.22387695, -2.1503906, 1.0214844, -0.640625, 0.76904297, -1.0605469, -0.3154297, 0.7338867, -0.2607422, 0.33569336, -1.1025391, -0.21826172, 1.0507812, -0.64746094, 0.107421875, -0.06365967, -0.085510254, -0.2939453, 0.7163086, -1.9140625, -0.64990234, 1.3398438, -1.0830078, 0.8666992, 1.1347656, -0.8647461, 1.3876953, 1.2558594, -0.13049316, 2.8515625, -2.4980469, -1.0166016, -0.32250977, 0.49853516, 2.9960938, 0.09375, 1.5068359, 1.0849609, 0.5161133, -0.7753906, -0.3557129, -2.9804688, -0.8378906, -0.2722168, 2.75, -0.20361328, -0.7519531, 0.1743164, 0.7866211, -1.7460938, 1.1210938, -0.35229492, 1.7910156, 1.2802734, 1.2558594, -1.7314453, -2.34375, 0.52001953, -0.20300293, 0.33129883, 0.25170898, 0.23962402, -1.4589844, 1.3427734, 0.88134766, 0.21044922, 1.5869141, 1.4511719, 2.1171875, 0.8461914, 1.78125, 0.64941406, 0.5756836, 0.82128906, -0.4897461, -0.90283203, 4.140625, -0.69921875, 2.7148438, -1.7236328, 1.5878906, 2.7753906, -1.6220703, 0.5258789, 0.6894531, -0.5048828, -0.20800781, 0.44140625, -1.3525391, -0.2680664, -0.4855957, 1.4697266, 0.6591797, -2.0136719, 0.80322266, -0.890625, 1.6621094, -2.3085938, 1.1064453, -0.78466797, -1.9335938, -0.68896484, -0.08117676, -0.7685547, -2.9199219, -2.0136719, -2.4277344, 0.8574219, 1.7197266, 2.3105469, -0.48413086, -0.8408203, -1.2958984, 0.5776367, 4.046875, -1.5292969, -0.27441406, 0.4663086, 0.33520508, -1.0810547, -2.1386719, 2.7851562, 1.6933594, -2.9667969, -0.9633789, -1.4814453, 1.0888672, -1.4726562, -1.5283203, 0.5029297, 0.96191406, -0.4440918, 2.25, -0.4260254, 2.5703125, -2.5566406, -0.31323242, 2.6191406, -0.63916016, -0.02708435, -2.7773438, -1.3818359, 1.4267578, -0.56884766, 0.7783203, 2.1582031, 1.828125, -0.6455078, 1.3544922, 0.32006836, -2.3671875, -2.0996094, -1.1025391, 1.6064453, -3.1308594, -1.1591797, -0.57373047, 0.6586914, -2.5683594, -1.2919922, 0.3095703, -1.3828125, 0.34448242, -0.2626953, -0.94189453, 0.47998047, 0.21179199, -1.046875, -0.2956543, 0.64990234, 2.265625, -1.3154297, 0.12597656, -1.7021484, 1.4648438, 2.0625, 1.203125, -0.22033691, 1.7998047, 1.8173828, -0.30249023, -1.5292969, -1.6425781, 0.30029297, -1.0361328, -0.22143555, 0.54003906, -2.6738281, 1.2285156, -1.09375, -0.46850586, 1.8681641, -1.4228516, 1.9501953, 0.23242188, -0.9189453, 2.4824219, -0.3947754, -0.82128906, 0.9370117, -0.54541016, 0.37963867, -1.8085938, -1.2333984, 0.7583008, 0.12207031, 0.78759766, -1.0605469, -0.46923828, -1.4511719, -1.5126953, -0.8598633, 0.115722656, 0.039733887, -0.0062675476, -0.23779297, -0.45361328, -2.25, 1.1855469, 0.61328125, 0.7636719, 0.19848633, 2.2089844, -1.3945312, 1.5878906, 0.51220703, -0.7915039, -2.7226562, 1.3115234, 0.29052734, -3.4003906, -1.3144531, 1.0341797, -3.8632812, -0.6142578, -0.8876953, -0.20935059, 0.9716797, -0.88671875, 1.0458984, 0.2685547, 1.4960938, -1.3974609, 1.2001953, -0.17504883, 1.5585938, 1.015625, -0.7529297, 0.49926758, -1.7695312, 3.0410156, 0.06323242, 2.9179688, -1.453125, 1.7441406, 2.9160156, 1.2207031, 1.4150391, 1.1455078, -0.043945312, 1.9990234, 0.85498047, 1.7890625, 2.4160156, -2.0234375, 1.6533203, -0.15722656, -1.8535156, 0.52001953, 0.953125, -2.0371094, 2.421875, -2.3652344, -3.3027344, 0.76464844, 1.7412109, -0.9711914, 0.56103516, -0.8144531, -1.375, -0.3491211, -3.6230469, -0.5107422, -0.6455078, -0.15270996, 0.79052734, -0.21411133, 1.3212891, 0.76708984, 0.44604492, -0.045776367, 0.546875, -1.1962891, -0.39819336, -0.16442871, 0.90234375, -1.2802734, -0.07946777, -1.6367188, 2.0039062, -0.2364502, 2.4667969, 0.42529297, 1.5576172, 1.484375, -1.5830078, -2.3339844, -1.5957031, 1.0478516, -2.0078125, -1.8183594, 4.1640625, 1.2900391, 0.5341797, 0.3383789, -1.4589844, -2.0683594, 1.3378906, 0.12695312, 0.3083496, -2.515625, 0.73876953, -2.9804688, -3.7109375, -1.8837891, 0.23327637, 0.3864746, -1.078125, -0.6870117, 0.06335449, 0.4465332, -1.9746094, 0.8144531, -2.6113281, 1.1357422, 1.1376953, 1.2871094, -0.40112305, -1.0380859, 0.4855957, 1.8271484, -0.04510498, 2.265625, -1.2675781, -1.9345703, -2.5996094, 1.6083984, 0.20336914, 1.4804688, -0.375, -1.6689453, 0.48876953, 1.3261719, 0.20422363, -2.3847656, 2.2929688, -2.390625, -0.12683105, 0.6171875, -2.3613281, -1.7177734, 1.5234375, -0.8154297, 2.4121094, 0.58251953, -0.5341797, -0.46484375, -1.4882812, -1.0283203, 0.46826172, 0.18164062, 0.19921875, 1.4365234, -0.70654297, 2.453125, 1.2734375, -1.5263672, -1.5361328, -1.2138672, -1.1601562, -1.0126953, -0.8803711, 1.09375, -0.4921875, 0.7451172, 0.77783203, -1.3486328, -0.75927734, -0.3647461, 0.18469238, 1.1435547, 2.5195312, -1.8945312, 3.5253906, -1.6074219, 0.5620117, -1.3535156, -3.3242188, 0.06768799, 1.2773438, 0.7807617, 1.0449219, 1.5693359, -0.6435547, 2.3046875, 0.94384766, 2.9589844, 1.6337891, 1.7382812, -0.23352051, 1.0136719, 1.2949219, 0.22741699, 0.89501953, 2.4082031, 0.29418945, 0.17919922, -0.14294434, 0.36938477, -0.7207031, 2.0351562, -0.51416016, 0.52197266, -0.6142578, -3.4628906, 1.8984375, -1.4130859, -0.086364746, -1.8154297, 0.72753906, -2.3886719, 0.96240234, 0.7373047, -0.9008789, 1.0302734, 0.5756836, -2.953125, -0.41259766, -0.5727539, 1.3476562, -2.8027344, -0.9355469, 1.3242188, 1.5654297, 2.6914062, -0.578125, -0.56591797, 0.29882812, 1.6992188, -1.5908203, 1.0908203, -0.2775879, 2.3964844, 0.50878906, 1.0117188, 3.4960938, -0.14978027, 2.6953125, 0.70458984, 1.7148438, 4.1640625, 0.19677734, -0.6196289, 1.9726562, -0.9169922, -0.5805664, -2.5800781, -0.71728516, -0.9428711, -1.5234375, 1.6884766, 0.8886719, 1.0058594, -3.3769531, 1.0292969, -1.5947266, 1.5126953, -0.44995117, -0.51416016, -1.2216797, -2.0351562, 0.9892578, 0.38208008, 0.64453125, -1.2001953, 0.20629883, 0.09954834, -1.359375, 0.37597656, -0.80371094, -0.6303711, -2.1015625, -1.0341797, -0.06072998, 2.3710938, 1.1601562, 0.18725586, 1.3427734, 0.81933594, 0.6171875, -1.1337891, -0.19873047, -0.45629883, -0.40942383, -0.44873047, 1.4306641, 1.2509766, -0.9194336, 2.7246094, 2.4726562, -2.7734375, -2.9277344, 2.0898438, -0.42016602, 0.5786133, 0.99121094, -2.9042969, -1.4775391, -0.69873047, 0.37597656, -1.8759766, -0.3479004, -0.39257812, -2.8535156, 0.047454834, -0.2758789, 1.4238281, 1.9140625, -0.18151855, -2.0976562, 2.2636719, 0.8359375, 1.828125, 0.48657227, 0.05883789, -1.3525391, 3.2617188, -3.03125, 5.3125, 1.3916016, 0.09173584, -0.50439453, 3.5371094, 2.7949219, -0.5854492, -0.5966797, -1.6015625, 2.1679688, 0.65234375, -0.7182617, -0.80126953, -3.0117188, 0.05429077, 2.25, -2.8222656, 0.74609375, -2.3710938, -0.7451172, 1.4541016, -0.96728516, 2.6464844, 0.98535156, -1.7138672, -0.78271484, -0.26660156, -0.71435547, -0.92626953, 1.0976562, 1.6748047, -1.9384766, -1.7128906, 1.0585938, 1.390625, 0.95751953, -1.6982422, 0.8544922, 0.39501953, -1.8007812, -1.2919922, 0.42529297, 0.51416016, -0.37109375, 1.8681641, -2.5800781, -1.1044922, 1.1611328, 0.6040039, -1.3886719, 1.0380859, -2.1171875, 2.7128906, -0.6791992, -1.4863281, -0.41577148, 2.3320312, -1.5517578, 1.1113281, -0.26513672, -2.703125, 0.1538086, 0.36254883, 1.0810547, -0.08459473, -0.11022949, 0.48388672, 2.5976562, 2.8398438, -1.2763672, 1.0263672, -2.40625, 0.5878906, 1.0273438, -0.2626953, 1.1630859, -0.13122559, -1.6640625, 0.9277344, 5.53125, 0.26708984, -2.0878906, 0.7265625, 2.3105469, -1.0019531, -2.7421875, -0.62402344, -1.2568359, -0.7104492, -0.65722656, -0.6459961, 2.4589844, 0.97509766, -0.97802734, -3.4472656, 0.29638672]}, "B07FWVSNR9": {"id": "B07FWVSNR9", "original": "Brand: GRILLMATIC\nName: GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up\nDescription: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
REUSABLE - Easy to clean. Dishwasher safe.
HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.\nFeatures: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.\nIMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.\nGRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.\nNON-STICK - Teflon keeps grilled or baked food from sticking to the mat.\nREUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.\n", "embedding": [-0.8666992, 1.3857422, 0.86376953, -0.484375, 0.8378906, 0.7480469, 0.47045898, -0.7080078, 0.78125, 2.1269531, -1.7099609, 0.066467285, -0.019088745, -3.359375, 1.1015625, 0.6933594, 0.84277344, 2.2109375, 2.2070312, 1.7226562, 1.6923828, 0.8496094, -0.7807617, -1.0517578, 1.1083984, 0.0947876, 3.4179688, -1.0537109, 1.5556641, -0.3400879, 2.0097656, 1.9208984, 0.5751953, 3.0078125, -3.9121094, -1.8779297, 0.00015866756, 3.2011719, -0.5839844, -0.2775879, -1.1386719, -4.6132812, 1.2421875, 1.3818359, -2.5410156, -0.15783691, -0.24047852, 2.359375, -1.3173828, -4.0234375, 2.2578125, 0.044006348, 2.0195312, 0.32983398, -2.8046875, 1.8144531, -0.48217773, -0.49804688, -0.07104492, -0.6381836, 0.3149414, -1.2128906, -0.95751953, 1.6289062, -0.031707764, -1.40625, 0.91748047, -2.2539062, 0.33618164, -2.796875, 1.0253906, -1.3515625, -0.3334961, 0.7895508, -0.65722656, -0.10394287, -0.11035156, -0.39697266, -0.46826172, -2.0683594, -0.35986328, 3.6621094, -0.45336914, -0.9711914, 0.24072266, -2.3476562, -1.7617188, 0.18444824, 2.4433594, -1.046875, 0.5649414, 2.796875, -1.9462891, -3.9765625, -0.17089844, -2.8085938, 1.6875, 0.13171387, -1.3945312, 1.4892578, -1.5976562, -0.80810547, -0.1706543, 2.7441406, -4.1914062, -2.0449219, 2.6171875, -0.20837402, 0.9951172, -0.7832031, 0.515625, 0.5307617, -0.37182617, 1.2578125, 2.9746094, 1.1142578, 0.58447266, -0.43164062, 1.3349609, 1.8769531, 3.625, 1.0771484, -0.85791016, -2.359375, 0.23291016, -0.7529297, 0.4873047, 2.875, 2.5253906, -1.9902344, 0.23449707, -1.171875, 0.16760254, -1.1455078, -0.5058594, -2.0859375, 0.24401855, -0.68408203, -3.5820312, 1.5566406, 0.8828125, -1.1279297, 2.390625, -1.1074219, -2.703125, 0.048858643, -2.4785156, 2.7539062, -1.5117188, -2.2558594, 0.2524414, -0.3215332, 1.90625, -0.65722656, 1.0996094, -0.5185547, 0.84716797, -0.9946289, 0.9453125, 1.5908203, 1.8378906, -2.515625, -1.1289062, -0.9448242, 1.3193359, -2.21875, -2.3964844, 1.7851562, 0.0016317368, 1.9921875, 0.10223389, -2.0605469, 1.5615234, -0.16833496, 0.31591797, -1.296875, 0.47607422, 1.8291016, -0.92333984, -0.62402344, 0.49365234, -2.4433594, -1.75, 2.7324219, -0.019348145, -0.42041016, 0.73291016, -0.7441406, 1.5429688, -1.3535156, -0.6489258, 3.3222656, 0.27294922, 0.45288086, -1.5419922, -1.8886719, -0.8540039, -2.1542969, 1.2421875, -0.6147461, 0.9658203, -0.46044922, -1.9189453, -0.8676758, -2.7539062, -2.3417969, -1.5185547, 1.7792969, 1.6201172, 0.9692383, -0.7128906, -1.3447266, 2.140625, 1.7089844, -0.4482422, -1.5751953, 0.124938965, -0.06359863, 1.5527344, 1.6953125, -0.8984375, -0.65234375, -0.6303711, 4.4140625, -1.53125, 1.6279297, -0.5161133, 2.5429688, -1.1845703, -1.6660156, 1.609375, -0.061767578, 0.65625, -0.25097656, 0.30859375, 1.5078125, 2.2421875, 0.21618652, -2.234375, 0.3647461, -1.0039062, -0.74316406, -1.2324219, -1.9755859, -0.734375, -0.15527344, -0.17114258, 1.3691406, 0.8823242, -2.3886719, 0.42700195, 4.4804688, 2.1171875, -0.012260437, 0.14440918, 0.8383789, 0.6069336, 0.7470703, -2.9511719, -1.2783203, -2.0234375, -0.36791992, -0.77783203, 1.6875, 1.7910156, -0.25170898, 2.7441406, 0.045562744, -1.6210938, -1.3330078, 0.5805664, -1.65625, -0.95654297, -1.4912109, 2.0957031, 0.061523438, -2.0625, 0.9663086, 1.4335938, -0.3474121, -0.018829346, 2.7460938, 0.61376953, -0.20166016, -3.1777344, 0.9765625, -1.5185547, -0.9560547, 1.4179688, -0.15576172, 3.3945312, 1.5361328, -2.0039062, 1.6201172, -0.42822266, 0.47924805, 2.6660156, -0.26000977, -2.9785156, -0.19909668, -0.07702637, 2.4121094, -1.5410156, 0.7866211, -1.1533203, -0.07550049, 2.7011719, -2.2480469, -1.5439453, 3.0800781, 1.4882812, -0.21179199, 1.8251953, 1.1982422, -2.8085938, -1.6884766, 1.6455078, -0.9790039, 0.52490234, -1.8710938, -1.0947266, 0.051483154, -0.7919922, -2.4707031, -1.3134766, 1.8339844, -0.20227051, -0.121520996, 0.13891602, -0.019104004, 0.4038086, -1.3554688, 0.5834961, 0.47583008, -2.0976562, -0.9482422, -2.4746094, -0.26733398, -0.8935547, -0.11541748, -1.3955078, 1.0126953, -1.1621094, -0.7265625, -2.2128906, -2.4316406, -3.203125, -1.6210938, -0.13806152, 1.5898438, 0.14794922, 0.15722656, -0.1730957, -3.3417969, 0.8149414, 0.6015625, -1.03125, 1.6835938, -2.3691406, -0.8173828, 0.66064453, -0.4609375, 1.8984375, -0.36523438, 0.17919922, 2.3867188, -2.7890625, -2.4492188, 0.6538086, -1.3320312, 0.35961914, -1.6699219, -0.8051758, -1.0439453, -0.53808594, -2.0429688, 1.3388672, 2.8359375, -0.30981445, 1.6865234, -0.79589844, -0.5957031, 0.084350586, 1.1298828, -0.84228516, -1.7880859, 0.18115234, -1.9228516, -1.0810547, -1.859375, -0.87890625, -1.2900391, 0.21704102, -0.7167969, 3.1230469, 0.1829834, 4.5859375, -2.2128906, 0.19934082, 0.91552734, 1.3583984, -0.38061523, 1.0322266, -1.1445312, 0.3149414, -0.58691406, -2.7207031, -1.6611328, 1.1308594, -1.3076172, 0.88964844, 0.671875, 0.5395508, -0.26586914, 0.7163086, -1.0214844, -0.7207031, -1.7744141, -1.5117188, 1.5400391, 0.6958008, -2.8671875, -1.6884766, -2.0078125, 3.8203125, 0.23266602, 1.078125, 0.56347656, -0.49438477, 3.1582031, 1.6220703, 0.80371094, 1.3642578, 1.2763672, 0.51123047, -1.0478516, -1.7744141, 2.4257812, 0.32763672, -1.6337891, 0.10595703, 1.2216797, 0.6772461, 1.1943359, 0.67578125, 0.2775879, 0.054534912, -0.5546875, 3.203125, -0.18164062, 0.7036133, -1.2548828, 0.113464355, 0.17553711, 0.89941406, 2.4941406, 2.0136719, 0.20397949, -0.15490723, 0.5917969, -0.33764648, -2.6816406, 0.82910156, 1.8066406, 0.7548828, -1.3857422, 2.5839844, 0.41625977, -0.22094727, 3.7714844, -0.7949219, -0.20495605, -1.4658203, 0.6591797, 1.5488281, 0.7836914, -0.15246582, -2.8164062, -1.6318359, -0.6225586, -3.5898438, 0.89697266, -2.3925781, -1.4716797, 1.5351562, -1.5322266, -4.421875, 0.9633789, 3.9882812, -1.8789062, -1.5117188, -1.9882812, 4.1992188, -0.5883789, -1.6523438, 0.78125, 1.8984375, 0.3671875, 1.7382812, -0.75927734, -0.8745117, 2.5195312, -2.484375, 0.92041016, 0.5395508, -2.6328125, -1.3681641, -1.1074219, -0.28320312, -0.22363281, -0.53222656, -0.48413086, 0.26464844, -1.7138672, -0.24279785, -1.7451172, 0.48706055, -0.87646484, -1.1464844, -0.7788086, 1.4443359, 1.1416016, -0.23254395, -0.009376526, 3.3300781, 0.7631836, -1.6347656, 0.7885742, -3.5, -0.6621094, -1.6396484, -3.1601562, -0.51464844, -0.7324219, -1.7392578, 4.9960938, 0.16577148, 1.5146484, 3.7519531, -0.15673828, -1.2460938, 0.36816406, -1.8535156, -1.2597656, -1.5927734, -0.097595215, 3.0820312, 2.1503906, -1.2734375, -0.3935547, -1.6279297, -1.3515625, 1.0732422, -0.3232422, 1.2070312, -1.2460938, -2.2070312, -0.80810547, 0.6455078, 0.28930664, -1.1044922, -0.33862305, 1.0839844, 1.40625, 3.1230469, -1.5419922, 0.67333984, -0.27319336, -1.0185547, -0.5004883, 0.7685547, -0.5292969, 0.89208984, 3.4101562, -1.0869141, -2.6484375, -1.0673828, -0.28173828, 2.0449219, -0.10394287, -1.1933594, 0.29418945, -1.5244141, 0.20373535, 0.41235352, 2.1855469, 1.2841797, -0.7192383, -2.1210938, -0.071777344, 0.5444336, -2.6757812, -2.3710938, 0.81591797, -0.5834961, -0.082092285, -1.4121094, -0.93847656, 1.5800781, -2.5546875, -0.10217285, -1.5976562, 2.7539062, 0.23254395, 0.5917969, 5.1601562, -3.7558594, 0.42089844, 2.1582031, -3.9179688, -2.1171875, -0.5805664, -0.22229004, -3.3105469, 2.2832031, 2.4101562, -2.09375, -1.8193359, 0.011222839, 0.65234375, -0.38085938, -3.5644531, 1.4697266, -1.6328125, -0.18811035, 1.0566406, -1.1103516, 3.4277344, -0.6791992, 2.0175781, 2.34375, -0.4140625, 0.68066406, 0.85546875, -0.70947266, 0.021224976, 2.046875, 1.0039062, 1.0888672, -0.21557617, -0.5073242, 0.6123047, 0.9160156, -3.296875, 2.8632812, 0.5541992, 1.4511719, -1.2412109, -0.7734375, 1.8662109, 3.0800781, -0.4345703, 1.3496094, -1.3466797, -2.2460938, 0.7158203, 1.2998047, -1.9257812, 0.22705078, -0.8408203, -0.45092773, 2.34375, -1.7070312, -0.8334961, -0.6357422, -0.3774414, 0.10687256, 0.31958008, -0.13598633, 0.71435547, 1.8378906, -0.796875, -0.9609375, -2.3828125, -1.6787109, 1.1767578, -1.0136719, 0.9946289, -0.7392578, -0.6254883, 4.1796875, -2.6015625, -2.609375, 1.2509766, -0.44702148, 1.6347656, 0.70751953, -1.3193359, -2.9570312, -2.1347656, -1.1210938, 0.06652832, 1.6181641, -0.10168457, 1.4052734, -2.0371094, 2.3847656, -2.8359375, 1.4443359, -1.3515625, -0.9584961, 2.7636719, -4.7695312, -0.46679688, -2.2324219, 1.7363281, 0.640625, 1.0224609, 1.9980469, -1.9472656, -0.51171875, 0.9663086, -0.69677734, -2, -1.5498047, 0.7060547, 1.3730469, -0.75634766, -0.32299805, -0.54589844, -0.8588867, 0.8300781, 1.8427734, 0.6542969, 0.34765625, -1.3466797, -1.7392578, -2.3398438, 0.17663574, 0.41748047, 0.95214844, 1.5097656, 4.5078125, -2.3632812, -1.640625, -0.5957031, -1.3886719, -3.1269531, -1.7285156, 1.9287109, 0.6948242, -0.40454102, 0.44506836, 0.13867188, -0.9765625, 3.4160156, -0.3203125, 0.5649414, 2.296875, -0.6381836, -0.9399414, -0.99560547, -4.234375, 1.3310547, -3.8222656, 0.42163086, 0.19616699, -2.6152344, -0.21191406, 2.9726562, -2.5410156, -1.6181641, -0.089660645, 1.5087891, 1.6611328, 0.15893555, -0.47338867, 1.2939453, -2.5117188, -3.1953125, 0.46142578, -1.2197266, -0.8046875, -1.6220703, -0.9301758, 2.5625, 0.64746094, 1.8037109, 0.81152344, 0.64746094, -1.3789062, 1.0273438, 0.6821289, 0.6401367, 0.90966797, 0.6064453, -2.0253906, -1.953125, 0.87597656, 0.8276367, 0.2939453, 2.0449219, -1.3369141, -2.0898438, -1.0439453, 0.3178711, 1.0966797, 3.2402344, 1.2109375, -0.12335205, -0.8989258, 0.57128906, -2.5605469, 3.2402344, 1.6074219, 3.0996094, -2.1894531, 4.328125, -1.8330078, -5.3515625, 1.4570312, -0.54003906, 0.037384033, 0.04260254, -0.7661133, -0.40527344, -1.8085938, -1.7949219, -0.9951172, 0.23937988, -1.1025391, 2.4980469, 0.5078125, 1.3203125, -0.35668945, 3.3847656, 1.1748047, 3.1777344, 3.0839844, -0.16210938, -1.2080078, -0.9394531, -1.265625, 0.31762695, 1.46875, -1.1748047, 0.32861328, 0.11968994, -1.0263672, -1.8867188, 1.5791016, 1.234375, 1.7626953, 0.69091797, 2.21875, 3.9023438, 1.0009766, 2.6269531, 1.0605469, 2.5371094, 0.93896484, 1.3769531, 0.0026988983, 3.2441406, 1.2734375, 0.6503906, -0.73876953, 1.6289062, 0.1394043, -0.80810547, 1.3496094, 0.68652344, -0.8774414, -1.4091797, 2.2480469, 0.9819336, -0.19055176, 0.12878418, 1.0527344, -2.5761719, -0.7416992, -1.1445312, 1.3349609, 3.7519531, 0.48486328, 1.1962891, 0.93847656, 0.43969727, 3.1914062, -2.6503906, 0.3725586, 1.1445312, -0.4580078, -1.8515625, 3.5742188, -0.034454346, 1.4130859, 1.0966797, -0.31860352, 1.0380859, 1.2773438, 0.6640625, -0.26391602, 0.32763672, -0.93847656, 1.1152344, -1.9853516, -1.7099609, -1.8662109, -0.16601562, -0.71191406, -1.96875, 0.7133789, 1.0039062, 2.5214844, 0.63916016, -4.7773438, -0.81347656, 0.9355469, 2.0703125, -3.6035156, 0.5449219, -0.19750977, -2.8847656, -2.3925781, 1.7070312, 1.1943359, 1.5166016, 1.1210938, -1.7333984, 1.9433594, 0.96972656, 1.9316406, -0.07775879, 0.5571289, -1.3583984, 1.0498047, 0.7392578, 3.9472656, 1.53125, 1.3710938, -0.21105957, 0.9399414, 3.3632812, 1.1552734, 0.7163086, 1.3955078, -0.81640625, 0.10900879, -0.55908203, -0.21801758, -0.39672852, -1.4384766, -1.8671875, 0.083862305, -0.018096924, -1.9814453, -0.47558594, 0.42871094, 1.5488281, 1.2519531, -0.39038086, -0.4416504, 2.6386719, 2.4375, -0.74853516, -0.008163452, -0.6074219, 0.21643066, -1.7861328, -1.09375, 1.5947266, 1.9199219, 0.60302734, -1.1914062, 0.8911133, 0.5571289, 0.6279297, -0.025268555, 2.125, -2.8144531, -1.2871094, 0.27539062, -0.70751953, 2.1542969, 2.9511719, -1.0302734, -1.0751953, -0.8027344, -1.4296875, -0.6269531, -1.3447266, -1.2744141, 1.0917969, 4.0664062, 2.140625, 0.08630371, -1.46875, -0.87890625, 1.8886719, -0.7788086, 2.6054688, -0.113220215, -0.26416016, 0.091430664, -1.8994141, 1.8134766, 0.48657227, -2.0585938, 0.44628906, -0.6230469, -0.23864746, -0.9067383, 1.0273438, 1.4306641, 0.17370605, -0.86865234, 2.09375, 3.4316406, 0.56640625, 2.8144531, 2.2734375, 0.057647705, -2.4042969, -0.42016602, -0.08557129, 1.7333984, 1.7363281, 0.19689941, -0.9633789, -0.23144531, -0.72753906, -1.4765625, -0.41308594]}, "B01IHHLB3W": {"id": "B01IHHLB3W", "original": "Brand: ThermoPro\nName: ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer\nDescription: \nFeatures: Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor\nAccurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to \u00b10.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on\nEasy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage\nSmart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included\nBacklight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\n", "embedding": [-4.0664062, 2.2167969, 4.96875, 1.0439453, -0.28637695, 0.9038086, -2.0800781, 1.3798828, 0.7133789, 0.9067383, 0.7158203, 0.4033203, -0.3203125, -0.17199707, 2.6894531, 1.4355469, -0.22131348, 0.4892578, 1.46875, 2.6269531, 2.2871094, 2.53125, -1.5712891, -0.9423828, 2.3945312, -0.8466797, 1.9736328, -1.8671875, -1.0449219, -1.7119141, 3.2519531, 3.3574219, 0.7661133, 1.3691406, -1.1972656, 0.24645996, -0.53271484, 0.37548828, 0.5029297, 0.6660156, -0.15905762, 1.4550781, 0.22888184, 1.9160156, -3.2480469, -1.4023438, -1.5751953, 2.5234375, -3.1367188, 0.75, -1.0839844, 2.6074219, -2.8925781, -0.21313477, 0.8408203, 0.8129883, 0.6015625, -1.8457031, 0.8984375, -0.1743164, -0.5336914, -0.11553955, -0.7416992, 0.5180664, 1.5810547, -0.48901367, -0.009254456, -2.796875, -0.03314209, 0.39819336, 1.4609375, 0.86279297, 1.7412109, 0.41601562, 1.1962891, -1.9648438, -0.8120117, 1.3017578, 1.375, 0.8520508, -1.0390625, 2.3867188, -1.0576172, -2.9101562, 0.15881348, -2.4882812, -0.12670898, -0.4267578, 2.6035156, 0.13244629, -0.021865845, 2.6972656, -1.9248047, -1.5566406, 1.7558594, -1.6308594, -1.1123047, -0.9506836, 0.5883789, 2.6347656, -1.3242188, -0.98535156, 0.07739258, 1.2998047, -0.9038086, -1.8056641, -0.06939697, 1.3232422, -3.90625, -0.8613281, -1.7773438, 1.0625, 1.0498047, 0.41601562, -0.8222656, -0.51708984, 0.39868164, -0.15185547, 0.27368164, 1.0869141, 2.5019531, -1.4863281, 0.31079102, -0.6098633, -0.46948242, 0.17456055, 2.0097656, -0.39819336, 1.2617188, -0.17614746, -1.0683594, -0.28979492, 1.1201172, -2.296875, 1.2333984, -1.9248047, -1.6376953, -2.3125, -1.5283203, -2.0996094, -1.6542969, 1.234375, -0.1529541, 1.1689453, -1.9267578, -1.2373047, 0.6899414, 0.38891602, 2.3105469, -1.6376953, 2.3964844, -2.203125, -2.1445312, 1.3310547, 2.1816406, 1.3515625, -1.3232422, 0.41552734, 3.0039062, 0.55810547, -0.5786133, -0.90771484, -1.1035156, -0.3112793, 1.7177734, -0.16516113, -2.9472656, 0.6069336, 2.4511719, 1.9833984, 0.8256836, -0.43969727, 1.9443359, -0.09790039, 0.68066406, -2.9296875, 3.0644531, 3.3417969, 1.0869141, 1.3144531, -0.97021484, -0.65478516, 0.1307373, 1.8974609, -0.02470398, -3.0410156, -1.1181641, 0.24182129, 0.79345703, -2.6347656, 2.4746094, 1.8017578, 0.8798828, 0.10028076, -0.050628662, -0.97558594, -2.0117188, -1.9462891, 1.2001953, 1.1259766, 0.8540039, 0.1184082, -2.5605469, -2.8203125, -0.8857422, -2.6621094, 0.86621094, -0.31640625, 1.3535156, 1.5244141, 0.35327148, -2.2070312, 0.20617676, -0.4416504, 0.6435547, -3.3945312, 0.54296875, -0.60058594, -0.15661621, 2.4316406, 0.56152344, -1.7548828, -0.4013672, 3.8828125, -1.8828125, 2.4707031, -0.82421875, 0.49072266, -0.94189453, -1.0019531, 3.7832031, -0.9458008, 0.19030762, -2.5976562, -1.0039062, 1.1914062, 1.5126953, -0.625, -1.1972656, 0.6308594, -0.30908203, -2.4082031, -0.4008789, -2.4804688, -0.3713379, -0.43310547, -1.5634766, 2.6367188, 1.1523438, 0.37060547, 0.027526855, 0.0034732819, -0.6015625, -0.49609375, 0.25683594, 0.03265381, 0.08355713, 0.6772461, -2.421875, -1.9335938, 1.4179688, 0.24719238, -1.8671875, 1.7763672, 2.4589844, 0.14501953, 5.0390625, 2.1210938, -0.65283203, -0.2446289, 1.5322266, 0.9633789, -2.4726562, 0.06628418, 1.4121094, 2.9570312, 0.7265625, 0.2043457, 2.1269531, -1.3330078, -0.23742676, 1.3056641, -0.93896484, -0.9091797, 0.3623047, 0.17626953, -1.9570312, -2.3847656, -0.6484375, 0.70166016, 4.1054688, 0.2861328, -2.703125, 3.1035156, -2.5761719, 1.3535156, -1.1914062, -1.2792969, 0.37695312, -1.4726562, 2.2539062, 0.5078125, -2.34375, 0.56347656, 0.9458008, 0.7871094, 1.7617188, -0.33081055, 1.09375, 0.5654297, 1.3242188, -1.3183594, -3.0683594, -0.29785156, 0.07171631, -2.8867188, 0.24438477, -2.34375, 1.2929688, -1.4726562, 2.7695312, 2.5566406, 2.8886719, -2.0546875, 1.3291016, 2.8066406, -0.8701172, 0.7294922, 0.68408203, -0.20007324, 0.61865234, -1.7294922, 0.4909668, -0.045684814, -2.8222656, 0.21252441, -1.6230469, -1.1816406, -0.11175537, -0.16674805, -1.8007812, 1.9277344, -1.1142578, 0.21362305, -1.0400391, -2.5058594, -0.7416992, -0.81103516, -0.83447266, -1.1425781, -0.2548828, -0.15148926, -0.34570312, -1.9052734, 2.4980469, 1.3457031, -0.79541016, 0.45092773, -3.3613281, 0.3798828, -1.4160156, 0.13964844, 1.2490234, 1.4902344, 0.62060547, -2.7070312, 0.796875, -1.2109375, 0.8046875, -2.921875, 1.2949219, -1.8613281, -1.1806641, -1.3632812, -0.2919922, -0.5673828, 1.3525391, 1.1445312, -2.1523438, 3.5117188, -2.4882812, 1.1572266, 1.6220703, 1.9042969, -1.6894531, -2.1855469, 0.11981201, -1.6904297, -0.9121094, -3.9277344, 0.54003906, -0.96435547, 2.1054688, 0.5966797, 0.6557617, -0.90283203, 1.5273438, -1.0175781, -2.3925781, -0.14648438, 0.11444092, -1.1005859, -0.4987793, -2.2460938, -0.97021484, -1.8652344, -2.5390625, 1.5839844, 1.3193359, 1.0673828, 4.3203125, 1.3164062, 0.10736084, -0.013999939, -0.40063477, -3.8105469, 0.84521484, 0.5390625, -1.0830078, -1.2060547, -0.625, -0.46704102, 1.2226562, -0.48291016, 2.8730469, 0.3383789, 3.6386719, -0.44995117, -0.6142578, 0.7583008, 1.8867188, -0.98828125, -0.98876953, 2.2851562, 0.41064453, -3.7792969, -2.3828125, 0.4519043, 2.0390625, -0.375, -3.1445312, 0.8276367, 1.2597656, 2.9511719, 1.0976562, -1.7841797, -1.4365234, -1.1601562, 2.1035156, -0.8486328, -1.953125, -1.3603516, -1.2734375, 0.26611328, 0.8022461, -0.23950195, 3.1015625, -0.09362793, 0.91845703, 1.2958984, 0.5878906, -1.9707031, -2.671875, 0.23413086, 0.31762695, 0.87353516, 0.2376709, 0.9472656, -0.26245117, 0.89746094, 0.18713379, 0.67041016, -2.9882812, 0.61083984, 0.33789062, -0.54003906, 0.9765625, 1.1806641, -1.0566406, -0.51953125, -2.4472656, -0.75, 1.6669922, -1.3398438, 2.9960938, -0.7631836, -2.2519531, -1.703125, 1.6826172, -1.1933594, 0.28393555, -0.45532227, 1.6972656, -1.3027344, -0.70458984, -0.39233398, 0.9008789, -1.4765625, -2.4609375, -1.2871094, -0.50146484, -0.9921875, -1.2773438, -0.7558594, 1.7197266, -2.5703125, -2.046875, -0.34716797, 2.3378906, 2.3125, 0.6308594, -1.3457031, 1.2841797, 0.1060791, -1.4990234, -4.3554688, 0.95654297, 1.6962891, -1.6035156, 0.115234375, 0.77783203, 0.8847656, 1.6396484, -1.0527344, 0.9067383, 0.63378906, -3.3554688, 0.004432678, -2.7519531, -0.9790039, -2.0820312, -3.7832031, 1.1679688, -0.23608398, 1.3867188, 2.703125, 1.640625, 0.4958496, 2.1445312, 2.2636719, -2.3261719, -2.2480469, -1.1015625, 0.81103516, 1.0097656, -0.44726562, 5.7460938, 1.8232422, -1.2792969, -0.34399414, -1.5146484, 0.4753418, 2.4394531, 0.90185547, 2.4121094, 0.6328125, -1.3066406, -0.90722656, -0.6713867, -0.65771484, -0.7758789, 0.5102539, -0.17529297, -1.2929688, 1.7724609, -2.5605469, -0.3173828, -2.6679688, 3.671875, -0.47314453, 1.4326172, -0.5097656, 1.6894531, 1.0654297, 0.56933594, -1.0244141, -0.81689453, -2.7890625, 1.9042969, 0.86083984, -0.2836914, -0.55810547, -3.8613281, -2.0429688, -0.8203125, -1.9541016, 1.7285156, 1.1347656, -1.3242188, 0.4597168, 1.1279297, -0.82666016, -0.25854492, 0.4243164, -2.8828125, 0.02180481, 0.8256836, 2.4121094, 0.79003906, -3.0585938, -1.171875, -2.75, 3.3847656, 2.8125, 0.76220703, 2.984375, 0.45092773, -1.1816406, 0.051971436, -1.2724609, 0.16796875, -0.30664062, 1.3759766, 0.6777344, -0.37353516, 1.3671875, -1.4160156, -0.99853516, 1.3320312, 1.6845703, 1.4980469, -1.7558594, 0.92871094, -0.87402344, 0.5957031, 4.546875, -0.35717773, 3.7089844, 0.42895508, 1.6923828, -0.24523926, -2.0996094, 0.5776367, 0.1652832, 0.008323669, 0.5341797, -0.29516602, 0.19396973, 3.1230469, -0.8535156, -0.38476562, 0.45288086, -0.26586914, 0.09838867, 2.3964844, 1.1601562, 1.4335938, -3.8847656, -1.1210938, 2.8222656, 2.4394531, -0.77490234, 4.2265625, -0.08862305, -1.4101562, 0.27661133, 3.5839844, -0.8569336, 1.5292969, -1.5351562, -1.3847656, 0.6557617, -1.2216797, -2.3671875, -0.18774414, 3.0917969, -1.578125, 2.7441406, -1.7695312, -1.6923828, 1.8730469, -3.9824219, 0.1348877, -0.40600586, -0.38623047, 1.7382812, -1.1835938, -1.5869141, -1.0566406, 2.4316406, 2.6601562, -1.6787109, -0.21618652, 0.070007324, -2.3027344, -1.6982422, -0.5473633, -0.34301758, -2.0917969, 0.15649414, 0.93115234, -0.94921875, -2.0683594, 0.16992188, 2.2617188, -1.1035156, -0.2541504, -1.5341797, 2.8359375, -2.1875, 0.2614746, -2.5859375, 1.6748047, -1.3632812, 0.28564453, -0.005092621, -2.203125, 0.859375, 2.140625, -0.8828125, -2.6777344, 0.69433594, -1.6533203, -2.9414062, -0.8901367, 1.3779297, 1.3818359, -1.0429688, 0.40283203, 0.48168945, -1.7724609, -0.8442383, 1.0058594, -0.6176758, 0.703125, -0.51708984, -0.19421387, -0.8208008, -0.16052246, -1.4511719, 1.2646484, 0.13232422, 1.5390625, -0.68408203, -2.2929688, -2.2421875, 0.3527832, -3.8789062, -2.3828125, 0.93115234, 2.1582031, -0.9633789, 2.0117188, 0.81591797, -3.1679688, 2.8085938, -0.2746582, 1.4833984, 0.7836914, 0.4350586, 1.1640625, -1.3242188, 1.3144531, -0.34301758, -0.7368164, 0.98876953, 0.86328125, -3.2089844, 1.2734375, 0.22692871, -1.2158203, -1.4306641, -1.0087891, -0.20800781, -0.20690918, 0.48291016, 0.4621582, 0.6660156, -2.9882812, -5.0234375, -1.3574219, -1.0625, -0.37353516, -2.0429688, 0.4267578, 3.1464844, -0.09503174, 2.2636719, -0.5253906, 1.2001953, -3.6113281, 1.0839844, 0.7949219, 2.0683594, 0.62597656, -1.0390625, -0.6225586, -1.9765625, -0.65722656, 2.015625, -0.55810547, -2.5722656, 0.4777832, -2.3339844, -1.5117188, 1.2304688, 2.2421875, -0.9038086, -2.1894531, 0.07116699, 0.69140625, 2.1933594, -1.7285156, -0.73095703, 0.9663086, 2.8554688, -1.1835938, 3.4277344, 0.34033203, -1.8798828, -0.28344727, -0.9033203, -1.1513672, -0.37548828, -1.1933594, 2.3828125, -0.8984375, 0.09643555, 1.2822266, -3.0703125, 0.68115234, 1.0439453, 2.8710938, 0.49291992, -0.17199707, 3.3320312, 0.8232422, -0.3305664, 1.8535156, -1.5986328, 0.69970703, -1.5556641, 0.03817749, -1.0507812, 1.9511719, -2.8886719, -0.29174805, 0.27392578, 0.7089844, -2.6875, 2.6679688, -0.47607422, 0.83154297, 2.0722656, 3.1582031, 1.9492188, 2.0136719, 2.2734375, 0.085876465, 1.8154297, 1.5175781, -1.3251953, 0.13439941, 2.6035156, 0.27270508, 0.64990234, -2.6875, 0.88378906, -0.34228516, -0.018508911, 0.22668457, 1.9560547, -0.43188477, 0.6459961, 1.1142578, 0.20373535, -0.16027832, -4.2382812, 0.12902832, -0.6665039, 0.25512695, -2.3652344, 3.2519531, 1.7412109, -2.2285156, 0.42456055, -0.9404297, 0.56152344, 0.8959961, -2.2382812, 1.421875, 1.7001953, -0.7817383, -1.1152344, 0.7944336, -0.09729004, 1.3984375, 2.3691406, -1.3544922, -0.6796875, 0.07067871, 0.6743164, -0.006385803, -1.5146484, 0.21948242, 2.4160156, -1.4130859, -1.5927734, 0.8833008, -1.5712891, -2.6445312, 0.8027344, 1.7548828, -0.21105957, 1.453125, -2.5019531, -2.8613281, 1.7285156, 0.06793213, 1.0224609, 1.0341797, -0.48754883, 0.61621094, -0.83154297, 2.6875, 1.1074219, -0.5888672, 2.9101562, -3.2441406, -2.5546875, -0.87060547, -0.39916992, 1.0595703, 2.0292969, -0.15563965, 0.17626953, 1.1328125, 0.3395996, 3.5097656, -0.82470703, -2.8417969, -2.5703125, 2.0429688, 0.117004395, 1.1025391, -0.109802246, -3.7695312, -0.42016602, -0.14318848, -1.9824219, -1.4287109, -0.9160156, 1.609375, 1.4121094, -1.7197266, 1.2949219, 0.32788086, 2.1523438, 0.9477539, 1.2333984, 1.1962891, 1.3671875, -1.8085938, 2.1074219, 2.078125, -1.8027344, 1.2431641, -0.0309906, 1.4111328, 0.2626953, 0.095703125, -0.41577148, 0.80615234, -0.049224854, 0.17346191, 0.72509766, 1.6621094, 1.5029297, 1.171875, 0.31030273, -1.5234375, 1.2109375, -2.8945312, -3.2753906, 0.8701172, 1.4755859, -1.0117188, -0.038146973, -0.6713867, -1.2666016, -1.2207031, 1.1015625, 1.1464844, 1.1894531, 2.1289062, 1.2148438, 1.0888672, -0.55322266, -2.5546875, -1.1787109, -0.49023438, -1.4980469, -0.1385498, 1.5166016, 0.7368164, -0.38598633, 0.18725586, -0.7416992, -0.56347656, -1.6748047, -2.0742188, 0.73046875, -2.5898438, 1.5380859, -2.1347656, 1.1933594, 1.1835938, -0.51660156, 0.7709961, 1.9462891, 3.9453125, 1.7890625, 0.75146484, -1.6835938, -2.3027344, 3.0644531, 1.9472656, 0.45288086, 1.9023438, 0.068359375, -0.6982422, 0.03451538, -0.82666016, -1.8378906]}, "B07X8ZN8MS": {"id": "B07X8ZN8MS", "original": "Brand: Anpro\nName: Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father's Day, Smoker, Camping, Kitchen,21 PCS-Standard\nDescription: Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard\nFeatures: DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again.\nPRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection.\nELEGANT DESIGN FOR GRILLING: You'll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend.\nPROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father\u2019s day grilling gifts for men, excellent gift for any camping lovers.\nHASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.\n", "embedding": [-0.7324219, 2.3515625, 1.0664062, 0.4309082, -1.2900391, 1.7080078, 0.55615234, -1.6367188, 0.8286133, -0.4897461, -0.21862793, -0.089538574, 1.9960938, -2.6972656, -0.4555664, 0.66064453, -0.10479736, 1.6455078, 1.0849609, 1.6572266, 1.8066406, 1.0283203, 1.015625, 0.52783203, 1.1162109, 0.21923828, 5.8046875, -3.3046875, 2.5625, 0.6274414, 1.7041016, 0.7084961, 1.3730469, 2.1171875, -2.5585938, 1.4648438, -1.6923828, 1.3476562, -0.3076172, -0.08569336, -1.7099609, -0.9902344, 1.8691406, 0.59765625, -3.4335938, -0.6176758, -0.6791992, 2.7089844, -1.0166016, -3.4160156, 0.6430664, 2.4726562, -0.006389618, 0.86035156, -3.4570312, 0.7675781, -1.2119141, -3.3632812, 1.4736328, 0.24230957, 0.09643555, -0.56152344, -0.640625, -0.9423828, 0.4934082, -0.5283203, 1.2353516, -1.09375, 0.5371094, -1.1386719, 0.3425293, -0.9472656, -1.265625, -1.1259766, -0.08258057, 0.26000977, -0.47705078, 0.25024414, 1.0419922, 0.4765625, -1.8613281, 3.7460938, -0.07342529, -1.9667969, 1.2412109, -1.578125, -1.3632812, -0.5024414, 2.6269531, -1.0517578, -0.78564453, 2.4726562, -1.671875, -5.5429688, 2.65625, -1.9443359, 0.19616699, -2.0390625, 1.0419922, 1.8662109, -0.7705078, 0.035339355, 1.2275391, 0.8408203, -1.8056641, 0.10772705, 0.43017578, 1.1025391, -1.4472656, -0.95214844, -1.1582031, 0.39624023, 1.1630859, 0.7182617, -0.67529297, 1.953125, -1.5449219, 0.28881836, 1.6884766, 2.1289062, 3.5292969, 1.7197266, -0.65722656, -1.2167969, -0.62841797, 1.0556641, -1.1015625, 4.015625, 2.7480469, 0.40527344, 0.35205078, -0.9223633, 0.1940918, -0.045074463, -0.21655273, -1.7324219, -1.8144531, -0.31274414, -0.5942383, 2.8613281, -0.3955078, 0.9536133, 1.8574219, -0.9038086, -2.7539062, 0.3552246, -1.2607422, 0.34033203, 0.20141602, -0.77685547, 2.4570312, -1.8701172, -0.2915039, -0.67089844, 2.2421875, -0.30664062, 1.1181641, -0.37841797, 2.4335938, 1.8603516, 0.43774414, -3.8554688, 1.2919922, 2.3476562, 0.7470703, -3.4980469, -1.4541016, 1.8837891, -0.054534912, 1.0839844, 0.6533203, -2.7285156, -0.35302734, -1.1738281, -0.18054199, -1.4335938, 0.42749023, 3.0234375, 0.6171875, 0.0048217773, 0.6484375, -3.0722656, 0.8828125, 1.8339844, 2.2265625, -0.9609375, 0.024520874, 0.37646484, 1.2451172, -1.2724609, 0.13537598, 0.84033203, -1.0087891, 1.6767578, -0.81689453, -3.6542969, 1.5576172, -2.9355469, -0.61279297, 1.2177734, -2.4511719, -0.8125, 0.6533203, -0.53564453, -0.85498047, -1.7451172, 0.7060547, 0.08203125, 2.125, 2.078125, 1.2324219, -1.2832031, 1.4482422, -0.45874023, 0.6542969, -1.4863281, 0.8730469, -1.1318359, 2.0429688, 1.5742188, -2.4101562, 1.6083984, -0.63183594, 2.4375, 0.98339844, 0.60058594, -0.6381836, 2.3339844, -1.3798828, -0.7089844, 0.53466797, 0.07562256, -1.0820312, 0.9902344, -0.55078125, 0.9716797, 0.29785156, -2.3085938, -1.0566406, -0.76660156, -0.6430664, -1.8017578, -1.6416016, -0.8876953, -0.8857422, 0.07910156, -1.7509766, 2.9726562, -0.04751587, -1.3798828, -0.35009766, 0.13781738, 0.055847168, 0.14538574, -0.17749023, 0.50878906, -1.8574219, 1.0556641, -4.390625, 0.35327148, 0.7421875, 0.94970703, -0.70654297, 0.89160156, 1.1757812, -0.50341797, 2.8652344, -1.984375, -1.2392578, -0.5786133, 0.7363281, 0.84277344, 1.0458984, 0.16088867, 2.625, 1.2119141, -0.7397461, 0.93310547, 0.30395508, -0.8623047, 0.061523438, 0.9609375, 1.4267578, -0.875, 0.32250977, -1.4697266, -1.2255859, -2.7011719, 1.2636719, 1.9423828, 4.6328125, 1.0595703, -1.4199219, 4.1796875, -2.0195312, 1.1240234, 0.703125, 0.4958496, -0.8979492, -0.4658203, 1.0019531, 1.8759766, 1.3632812, 0.20336914, 0.07800293, 0.11804199, -0.10656738, -2.3320312, -0.57910156, 1.3574219, -2.1035156, -0.703125, -0.107666016, 1.4521484, -2.1484375, -1.4775391, -1.3535156, -2.1054688, 1.4785156, 0.2368164, 1.0878906, 1.1455078, 0.3955078, -2.75, -0.95214844, 0.7270508, -1.4833984, 1.7011719, 1.1103516, -0.84277344, 2.9394531, -0.1628418, 0.35327148, -0.13757324, -2.0078125, -0.3371582, -1.2363281, -1.7177734, 1.3496094, 0.18823242, -0.0076828003, -1.2060547, -2.3183594, -0.2890625, -2.3535156, -2.8300781, -2.8632812, -0.9404297, -0.7319336, -0.13745117, -0.6855469, 0.5175781, 0.921875, -3.0546875, 1.4121094, 0.25634766, 1.5722656, -0.30517578, -0.9824219, 1.6582031, -1.0458984, -0.121154785, 1.8417969, 1.8007812, -0.06222534, -1.4707031, 2.2226562, -2.7851562, 0.44799805, -0.7573242, -0.4724121, 0.4560547, 0.6010742, -1.3496094, -0.7138672, 0.21923828, -1.3613281, 2.9238281, -1.6357422, 0.9765625, -0.43847656, 0.25830078, 1.0820312, -0.2166748, -1.3144531, -3.2167969, 1.7978516, -1.4677734, -0.27514648, -1.3339844, 0.70410156, -1.5996094, -0.68310547, -0.29370117, 1.1445312, -1.0478516, 1.5478516, -0.061828613, -1.6933594, -0.6020508, 0.49658203, 0.21142578, -0.76904297, -1.0830078, -0.60009766, -0.33325195, -0.6713867, -1.3017578, 3.1582031, -1.3300781, -1.8818359, 0.38720703, 0.052703857, -0.48291016, 0.5341797, -2.5644531, 1.7197266, 2.0117188, -2.3457031, -1.4824219, 0.07562256, -1.5791016, -1.2861328, 1.6474609, 3.1015625, 0.9916992, 1.2744141, 0.6958008, 0.16430664, 0.78027344, 2.2519531, -0.671875, -1.4472656, 1.5888672, 3.4453125, -1.0263672, -2.3789062, 0.50878906, 0.32006836, -2.5605469, 1.2226562, 0.15124512, 0.4777832, 2.9804688, 0.90966797, 2.1386719, 2.46875, 0.115112305, 2.2246094, 0.6694336, -0.8930664, -1.5957031, 1.1855469, -0.5410156, -1.2294922, 1.0351562, 0.9892578, 0.0033283234, 3.1386719, 0.8666992, 0.09515381, -0.9897461, 1.6289062, 1.5478516, 1.2216797, -0.5488281, 1.0253906, -1.5771484, -0.5317383, -0.050109863, -1.1103516, 2.0742188, -2.5195312, -0.13842773, 2.0546875, -0.27124023, -0.11907959, 0.3005371, 0.023910522, 0.21105957, -0.4362793, -0.5908203, -1.3544922, -0.8535156, 0.515625, -0.18334961, -2.2304688, -0.7348633, 2.0351562, -0.8574219, -0.8725586, -0.7871094, 2.5664062, -1.4160156, -0.39038086, -0.4099121, 0.86816406, -0.15454102, 2.3457031, -0.7338867, -1.1650391, 2.4140625, -2.9160156, 1.3789062, 1.5927734, -1.9208984, 0.60302734, -0.08581543, -1.5117188, -1.6191406, -0.8613281, 1.4072266, 0.8544922, -2.5585938, -0.4790039, -2.1738281, 0.4880371, -0.46875, -1.3076172, -0.68652344, 1.0595703, 1.8291016, 0.35009766, -0.5517578, 2.1523438, 1.3212891, -2.7421875, 0.9345703, -4.2890625, -0.9116211, -1.296875, -2.4980469, 1.1064453, 0.012161255, 1.3349609, 0.059051514, 1.7275391, 0.27148438, 4.5273438, 0.3388672, -1.2880859, -1.1777344, 0.5205078, 0.31030273, -1.6914062, -0.89746094, 0.5131836, 0.8154297, -0.62939453, -1.1269531, 0.6464844, -1.5205078, 1.5175781, -0.328125, -1.1357422, 0.19140625, -0.6298828, 0.25805664, -0.7402344, 0.7182617, -1.5742188, -1.1914062, 0.6191406, -0.8144531, 1.3007812, 1.1142578, -0.3630371, -3.2070312, 1.1914062, -0.3395996, -1.6601562, -1.515625, -0.28222656, 2.6699219, -0.484375, -2.0429688, -0.36083984, -1.9804688, 0.049591064, 0.5439453, -0.05355835, 0.8222656, -1.8417969, 1.0507812, 0.1104126, -0.23840332, 1.8417969, -0.6479492, -2.0332031, -1.0253906, 1.984375, -0.9658203, -3.4140625, -0.99902344, -2.1914062, 0.8022461, -1.2148438, -1.2041016, 1.0009766, -0.46655273, 0.4560547, -1.46875, 1.7880859, 1.4082031, -0.61621094, 4.6054688, -0.4892578, -0.53808594, 0.7910156, -1.4990234, -0.77685547, -0.4255371, -1.0117188, -0.13684082, -0.67285156, 0.8833008, -1.4472656, 1.2089844, -0.015335083, 0.36279297, -1, -2.3203125, 2.0449219, 0.46704102, -0.034332275, -0.47631836, -1.1171875, 2.3417969, -0.83251953, 2.5351562, 0.80566406, 0.9453125, -0.3869629, -0.35058594, 0.3347168, 1.2509766, -0.27685547, 1.7050781, 2.1054688, -2.1660156, 0.5126953, 0.7036133, -0.13061523, -0.5283203, 0.36499023, 1.2617188, 1.1005859, -1.0976562, -1.1542969, 1.8818359, 1.2607422, -1.3740234, 4.2578125, -0.74902344, -1.9550781, 1.6113281, 0.87939453, -2.6582031, 0.3930664, -0.21875, -0.984375, 0.7758789, 0.98095703, -1.3730469, 0.84033203, -0.33447266, -0.57470703, 0.6635742, -2.5136719, -0.7236328, 0.4128418, -1.2558594, 0.58447266, -2.2460938, -0.7861328, 1.5371094, -0.8754883, 0.19848633, -0.5371094, 2.0234375, 2.8359375, 0.5644531, -1.7617188, 0.5283203, -1.4326172, -0.16491699, -0.8564453, -1.0712891, -3.4804688, -0.51464844, 2.3613281, 1.8447266, 1.6230469, -0.25732422, 1.5068359, -0.9741211, 1.5048828, -1.4169922, 4.1601562, -0.92871094, 0.19506836, 1.8789062, -1.1425781, -0.7504883, -1.4042969, 0.99316406, 0.53027344, 2.4238281, -0.14257812, -0.6411133, -0.90722656, 0.2866211, -0.72314453, -4.859375, -1.2900391, -0.008926392, -0.30126953, 1.0458984, -0.8417969, 1.4306641, 1.0214844, -1.5986328, 0.19604492, -0.3491211, 0.116760254, 0.21875, 0.78222656, -2.7089844, 0.08111572, -0.38964844, 0.3161621, 2.3710938, 1.2353516, -1.6738281, -3.5664062, 0.39794922, 0.22961426, -2.6542969, -1.7792969, 1.8066406, -0.2800293, -1.4375, 0.22485352, 0.8881836, -1.2080078, 0.8417969, 0.00881958, -1.5585938, -2.5488281, -1.4521484, 1.7792969, -0.004722595, -1.5791016, 0.8027344, -2.1054688, 1.4667969, 0.2614746, 0.33154297, 2.8886719, -0.024627686, -1.1572266, -0.007549286, -1.0039062, 1.4990234, 0.7524414, -0.034851074, -1.0947266, -1.0507812, -3.6542969, -2.5097656, 0.7055664, -0.84472656, 0.98339844, -1.4375, -0.60302734, 2.2304688, -0.3552246, 0.5566406, -0.4362793, 1.6025391, -2.4023438, 0.66845703, 0.5678711, 1.96875, 0.640625, -0.5673828, 0.359375, -1.2705078, 0.52783203, 1.5361328, -0.41015625, 0.17749023, -0.65966797, -0.65722656, -0.41357422, 1.5976562, 2.3769531, 1.9785156, -0.6899414, 0.15490723, -1.1103516, 1.0800781, -0.7548828, 2.2382812, 0.7578125, 0.84716797, -1.5507812, 5.3554688, -1.5771484, -2.3613281, 0.3984375, -0.9511719, 1.234375, -0.050994873, -3.4667969, -0.78808594, -1.8349609, 0.44433594, -1.8085938, 0.025787354, -2.71875, 0.14831543, 1.0800781, -0.83935547, -0.69189453, 4.8085938, -0.40283203, 2.1523438, 1.6318359, -0.5341797, -1.9589844, -1.5400391, 0.2277832, -0.10461426, 0.66845703, -0.004421234, 1.3447266, 0.73876953, -0.43969727, -0.8857422, 3.4414062, 0.953125, 0.087646484, 0.025665283, 2.2929688, 1.2294922, 3.4492188, 2.8652344, 0.7236328, 1.4228516, 2.8632812, -1.0537109, -0.04147339, 4.078125, -0.4477539, -1.0664062, -0.15930176, 0.67285156, 0.05999756, -0.5673828, -0.7397461, 0.9633789, -0.6645508, -0.42529297, 1.5693359, 1.8125, -0.19116211, -1.4443359, 0.77783203, -1.2041016, -1.2509766, -1.5478516, -0.45922852, 2.6699219, -0.0904541, 0.18701172, -1.5175781, 0.17272949, 2.6894531, -2.3925781, -0.6147461, 1.3066406, -1.1269531, -1.9169922, 2.3144531, 1.0332031, 0.77783203, 2.3730469, 0.49121094, 0.23376465, 1.4648438, 0.8491211, -0.203125, 0.1751709, 0.20837402, 2.5390625, -0.87597656, -0.44482422, -0.14892578, -0.6220703, -1.2753906, 0.02027893, 2.1914062, 0.5004883, 2.7539062, -0.83935547, -5.5039062, 2.3828125, 0.8251953, 2.0117188, -2.0332031, 0.9921875, 0.88623047, -1.2148438, -1.0908203, 0.5239258, -0.018630981, 1.2265625, 1.3193359, -2.0234375, 1.6787109, 1.3271484, 1.7666016, 0.39331055, 1.4160156, -1.6386719, 1.7402344, -0.32177734, 1.6298828, -0.2467041, 1.7119141, -1.4492188, 1.0478516, 0.3671875, 1.8291016, 1.3076172, -0.9477539, -0.11743164, -0.36206055, -0.6279297, -1.3066406, -0.7919922, -2.8085938, 0.35327148, -0.5473633, -0.80029297, 0.18823242, 1.6855469, 2.3027344, 2.0371094, -0.15515137, -0.7373047, -2.6582031, 1.3486328, -0.24743652, -1.1923828, -1.7382812, -1.3330078, 0.19030762, -0.04421997, -1.1240234, -0.8754883, 1.2167969, -0.7636719, -1.8867188, 0.9472656, -0.16882324, -0.71777344, 0.07574463, -0.95654297, -1.8857422, -1.2871094, -0.7915039, -1.0390625, 1.6337891, 2.7089844, 0.4501953, -1.0439453, -2.6113281, -0.5678711, -1.4589844, -0.328125, -0.8125, 2.8613281, 3.0390625, 1.3261719, -0.030273438, -1.7617188, -1.9902344, 0.7290039, -1.9931641, 0.7602539, 1.4599609, -0.86279297, 0.58740234, -2.1699219, 2.7285156, -0.45483398, -1.6005859, -0.18566895, -1.1816406, -0.13830566, -0.028869629, -0.08880615, 1.0957031, -0.6743164, 0.2553711, 3.0976562, 1.0830078, 1.1132812, 1.9980469, 2.2207031, 0.42236328, -1.5585938, 0.76220703, 0.21594238, 2.0390625, 0.0057907104, 0.53466797, 0.7167969, 0.036834717, 0.4482422, -0.46826172, 1.2988281]}, "B000HCR89W": {"id": "B000HCR89W", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Fits barbecue grills 64\"L x 30\"D x 48\"H\nWEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc)\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "embedding": [1.3554688, 0.93359375, 3.0625, -2.9472656, -0.09655762, 1.5136719, 1.2861328, -1.46875, 2.6914062, 2.6738281, -0.3996582, 0.34716797, -0.6455078, -3.96875, 1.1767578, 0.7368164, 1.1669922, 2.6074219, 2.5742188, -1.8671875, 1.3242188, 1.0429688, -0.5341797, 0.41186523, 0.92529297, -0.5131836, 5.4648438, -4.1445312, 0.22460938, 1.2626953, 2.7597656, 0.93603516, -0.34155273, 2.9082031, -2.0351562, -1.46875, 0.3388672, 2.3378906, 0.96728516, -1.3583984, -1.4619141, -1.7744141, 2.8847656, 1.7509766, -2.4140625, -0.3713379, 0.6875, 1.296875, -0.30200195, -2.2265625, 1.5146484, 2.4726562, 2.6445312, 0.41430664, -3.59375, 3.6523438, 0.41577148, -1.9736328, 1.453125, -0.047821045, -1.2822266, -1.2011719, -1.2617188, 1.8916016, -0.7089844, -0.3569336, 0.5229492, -0.5830078, 0.33032227, 0.3137207, 1.9736328, -0.7890625, -2.53125, -0.3154297, 1.7255859, -1.7158203, -2.2382812, 1.0205078, 0.6352539, -2.3339844, -2.3203125, 3.7480469, -0.6201172, -2.6445312, -0.92578125, -0.042907715, -2.1679688, -0.28100586, 0.80810547, -2.9257812, -1.3056641, 1.7822266, -1.2578125, -3.8085938, 0.41601562, -3.9609375, 2.4980469, 0.99853516, 0.11627197, -0.48583984, -1.3652344, 1.5742188, -0.9560547, -0.47436523, -3.2109375, -2.5390625, 0.17797852, -2.3691406, 0.3762207, -0.17004395, -1.4638672, 0.044189453, -0.9916992, 1.8798828, 2.5449219, 1.1611328, -2.3203125, 1.5214844, 0.03189087, 0.44726562, 1.3066406, -0.5073242, 0.09631348, -2.1386719, 0.2368164, -0.66845703, -0.0670166, 3.8183594, 3.1503906, -1.8222656, 1.265625, -1.2773438, 2.7070312, 1.5097656, -0.68896484, -1.2275391, -0.97021484, -0.546875, -2.7460938, 0.72314453, 0.099365234, -1.296875, 0.8466797, -0.9584961, -2.8476562, -0.5283203, 0.92333984, 2.3828125, -1.21875, -3.1425781, 0.6582031, -2.7226562, 0.5253906, -1.5136719, 0.6425781, -0.25170898, 1.0341797, -5.0351562, 3.4980469, 2.984375, 1.7675781, -2.9453125, 2.4609375, 0.18029785, 1.2519531, -1.8320312, 0.012023926, 0.09844971, 0.92285156, 2.4179688, -1.4580078, -1.3837891, 0.9589844, -0.81689453, 1.8369141, -0.2052002, 0.8857422, 1.8681641, 0.6254883, 1.2646484, -0.64990234, -0.8881836, -0.75878906, -0.7807617, -1.0976562, -1.078125, -0.55029297, 0.17822266, 2.2773438, 0.15649414, -0.81152344, 1.1083984, -3.1132812, -0.24450684, -1.6396484, -2.5195312, -0.8676758, -0.7871094, -0.4428711, 0.66064453, -1.7939453, -2.5351562, -0.81640625, 0.20019531, -1.8603516, -1.0683594, -1.6865234, -0.41967773, 0.18469238, 0.94189453, 1.0371094, -2.7480469, 2.7402344, 0.7426758, -0.6533203, -0.609375, 1.4853516, -2.1191406, 2.078125, 0.6147461, -1.5761719, 0.6689453, 1.0234375, 2.59375, 0.13891602, 0.91259766, 1.0019531, 0.5942383, -3.1191406, -1.4130859, 0.16101074, 0.53271484, -0.5410156, -0.34521484, -0.3857422, 1.5507812, 1.2695312, -0.7451172, -0.96435547, -0.07342529, -1.8535156, -2.5429688, -1.828125, 0.5258789, 2.3320312, 1.1425781, -1.4677734, 1.4863281, 0.47094727, -0.56347656, 0.03753662, -0.1998291, 0.4104004, -0.8378906, 0.7441406, 1.8632812, -0.2685547, 2.1015625, -0.4909668, -0.5942383, 0.41796875, -0.9770508, -2.21875, 1.1865234, -0.66064453, -2.5273438, 0.9375, 1.1005859, -2.0058594, -2.4648438, 0.53466797, -0.3696289, 1.0830078, -0.41015625, 2.4414062, 1.4111328, -0.34985352, 1.2871094, -0.29467773, -1.6455078, 1.3740234, 0.42041016, 2.75, -1.1630859, 1.09375, -0.29614258, -1.3544922, -1.4160156, -0.5517578, 0.50439453, 3.9550781, 0.30322266, -2.0605469, 4.8867188, -0.8383789, 0.28125, 2.6152344, -1.4140625, -1.8916016, 1.4111328, 1.4414062, 0.68066406, -0.1607666, 0.85595703, -1.4472656, -0.7705078, -0.26513672, -3.5136719, -1.65625, 0.32299805, -2.1660156, -2.1171875, 0.7060547, 0.5083008, -3.0996094, -1.3339844, 1.6982422, -3.2441406, 0.30273438, -0.5493164, 0.23352051, 0.36816406, -2.6855469, -2.1484375, 0.00082683563, -0.14978027, -2.4316406, 1.1591797, 1.0283203, 0.11907959, 0.93847656, -0.5961914, -0.104003906, -1.6621094, -1.6181641, -2.8789062, -2.0371094, -1.4970703, -0.5571289, -0.4326172, 0.58935547, -0.9003906, -1.7333984, 0.6875, 0.5517578, -2.6015625, -1.5976562, -0.23059082, -0.7714844, 3.1445312, 0.23339844, -0.50878906, 0.33129883, -3.8027344, 0.640625, -2.03125, -1.5292969, 0.22021484, -0.066589355, 0.65966797, -0.08886719, 1.0683594, 0.6513672, 1.1835938, 0.8232422, 1.3818359, -0.054504395, -2.78125, 0.9057617, 0.12261963, -0.17468262, -0.48535156, 1.0898438, -2.6308594, -2.5234375, -0.015960693, -1.0664062, 5.1171875, -0.2006836, 1.8671875, -1.0839844, -1.6982422, 0.8173828, -0.62597656, -0.8564453, 2.3886719, -0.16479492, -1.5712891, 0.4711914, -2.1816406, -1.4404297, -1.3994141, -0.25048828, 0.0859375, -1.1572266, -0.4790039, 0.9472656, -3.0332031, -1.140625, -2.3046875, 1.6923828, -0.82421875, -0.3046875, -0.6201172, -2.2558594, -1.4882812, -1.0429688, -2.5410156, 2.8554688, -2.0546875, -0.14892578, 1.8652344, -0.80810547, 3.5429688, 0.64746094, -3.9746094, 1.0498047, 1.3105469, 2.15625, 1.9345703, 1.7255859, -2.65625, -0.21594238, 0.32421875, 2.3691406, 1.3085938, 0.9345703, 1.3310547, 0.43408203, 0.45410156, -0.034240723, 0.3125, -0.23046875, 0.5708008, 2.6113281, 0.25976562, -0.22497559, 1.7822266, -2.3808594, -1.78125, 1.4208984, 0.63964844, -1.15625, 1.3291016, 0.66796875, 0.6220703, 2.0078125, -0.69091797, 3.1171875, 0.33422852, 3.2695312, -0.69091797, 0.48876953, 1.0136719, -1.8056641, 1.3154297, 1.1513672, 1.03125, 0.6098633, -1.0429688, -1.3613281, 0.5810547, 1.0615234, 2.2578125, 0.86083984, -1.0410156, 1.2109375, -1.5654297, -0.80126953, 1.1074219, -1.7373047, 1.0644531, -1.0957031, 1.4130859, 3.0917969, -1.1386719, 0.36157227, -0.04598999, -1.015625, 1.3095703, -2.5058594, -0.39941406, -2.2402344, -1.7177734, -0.2166748, -3.828125, -2.21875, -0.2536621, 3.6289062, 1.5244141, -2.8710938, -0.6455078, 2.765625, -0.625, -1.3056641, 1.0722656, 0.67529297, -0.25512695, 1.2119141, 3.1972656, -2.1054688, 2.0742188, -3.9804688, 1.4912109, 2.2675781, -0.3227539, -0.9370117, 0.3935547, -1.3183594, 0.1829834, 1.6181641, 1.1044922, 1.6689453, -0.7705078, -0.9868164, -2.6269531, -0.7504883, 2.4511719, -1.8164062, 0.42163086, 1.2646484, 1.7197266, 0.19885254, 0.47436523, 2.0898438, -1.5058594, -3.96875, 1.5664062, -0.8881836, 0.36621094, 0.22143555, -4.1914062, -0.68115234, 1.0966797, -1.5664062, 0.2454834, 0.82958984, 0.77197266, 3.7539062, 0.13964844, -1.2763672, -0.05682373, -2.2128906, -1.3242188, -1.1347656, -0.46948242, -0.30664062, -0.14453125, -2.2148438, -0.9194336, -0.9580078, -2.0625, 0.9116211, 0.99902344, -1.1035156, -1.1826172, -3.203125, 1.9013672, -1.5068359, 1.0449219, 1.0009766, 0.18164062, 0.114746094, -1.25, 1.1044922, 0.09057617, 0.9580078, 0.46362305, 1.6982422, -1.6777344, -1.3896484, -1.4501953, 0.44921875, 2.71875, -0.9453125, -2.9511719, -0.33422852, -0.06286621, 0.50439453, -1.890625, -1.2470703, -0.25561523, -1.8378906, -1.0537109, -0.1204834, 0.8647461, 2.2480469, -1.4101562, -2.8867188, 1.4189453, -2.1601562, -0.27148438, -1.6972656, 0.73046875, -0.31860352, 1.5830078, -0.8515625, -1.6035156, 1.9658203, 0.2590332, -0.2512207, -1.8222656, 3.2246094, 0.90478516, 1.5029297, 3.2929688, -2.2460938, 0.21765137, 1.9951172, -2.5390625, 0.4658203, 1.2128906, -1.0605469, 2.2871094, -0.89208984, 1.8681641, -2.84375, -0.1541748, -2.9863281, 0.47070312, -2.03125, -1.7822266, 1.0498047, 0.05130005, 0.22351074, -0.60009766, -1.8183594, 2.9648438, -1.5605469, -0.050231934, 1.7939453, 0.20410156, -0.47460938, 1.5810547, 0.41333008, 0.12561035, 0.3088379, 1.1152344, 0.18127441, -0.9223633, -0.48657227, -1.0966797, 2.2871094, -0.921875, -0.9379883, 0.4428711, 0.29052734, -0.3647461, -0.54296875, 2.6640625, 2.7070312, -0.3544922, 1.3300781, 0.46875, -2.9550781, 3.4023438, 0.8027344, -0.6069336, 0.2512207, -1.1552734, -0.021911621, 3.4355469, -1.1748047, -2.8320312, -0.921875, 1.7480469, -0.93847656, 1.7207031, -1.2509766, -0.10205078, 1.3945312, -1.8359375, -1.2451172, -0.025619507, 0.11291504, -0.6479492, -0.0635376, 0.5600586, -1.6279297, 0.7963867, 2.9375, -0.68066406, -3.5332031, 2.0097656, 0.20202637, -1.0712891, -1.8212891, -0.78027344, -2.1113281, -1.4140625, 2.8027344, 1.4638672, 1.0654297, 1.1611328, 1.9013672, -1.8847656, 0.42651367, -1.3359375, 2.8496094, -2.3203125, 0.6464844, 3.1484375, -2.0917969, -0.37890625, -1.4023438, 1.4316406, 1.4111328, 0.103515625, 0.23327637, 0.73095703, 0.5097656, -1.2402344, -2.078125, -2.0234375, -1.2714844, -0.66064453, -1.2763672, 0.90722656, -0.121276855, -0.32421875, 0.040283203, 0.2783203, -0.13476562, 0.38916016, 0.3544922, -0.4152832, -0.17956543, -0.9370117, -1.9931641, -0.51171875, 1.5810547, 1.8056641, 2.6152344, -1.3486328, -3.3945312, 0.6557617, 1.5146484, -3.1972656, -0.8652344, 2.2265625, 0.9477539, 1.3408203, 0.78027344, 0.63916016, 0.40429688, 1.2041016, -0.6401367, 0.2619629, 0.7529297, -0.8203125, 1.75, -0.13671875, -2.1230469, 1.2890625, -0.6879883, 0.18945312, 2.1738281, -0.51708984, 2.7050781, 1.578125, -0.014877319, 0.6035156, 1.3457031, 1.046875, 2.1230469, -0.54541016, -0.14929199, 1.09375, -1.6230469, -1.8994141, -0.8847656, -3.4941406, -0.78564453, -1.5556641, -0.093688965, 1.9550781, 1.640625, 0.23828125, 0.3395996, 2.7558594, -0.89697266, -0.58154297, -0.29956055, 2.8339844, 1.0126953, -1.1005859, -0.40966797, -1.7294922, -0.8930664, 2.3554688, 1.2441406, -0.8149414, 0.7607422, -3.7910156, -0.78027344, 0.3864746, 1.6552734, -0.8183594, -0.111694336, -0.034851074, 1.0097656, 2.7695312, -1.5507812, 3.9667969, 0.4206543, 2.0097656, -1.9472656, 4.5976562, 1.6513672, -3.3320312, 1.0859375, -1.703125, 1.4052734, 0.5151367, -0.48510742, 1.2695312, -0.5522461, -0.42456055, -2.4082031, -0.2824707, -3.7949219, 0.18603516, 0.64990234, -1.1445312, -0.41552734, 0.87158203, 1.1845703, 3.1171875, 2.3417969, -0.7871094, -2.15625, -0.29003906, -1.0244141, -0.2590332, 0.56689453, -0.79003906, 1.4873047, -0.52734375, -0.02670288, -0.73828125, 0.6660156, -0.66503906, 0.5571289, 3.0175781, 3.1230469, 0.61865234, 2.5996094, 2.0683594, 0.84521484, 1.8720703, 0.31982422, -2.0019531, -1.1318359, 2.7890625, 2.2441406, 1.3837891, -2.078125, 0.09588623, 1.8173828, 1.34375, 0.6557617, 1.0292969, 1.0517578, -3.2675781, 0.2322998, 1.8837891, 1.1630859, -1.3984375, -0.19934082, -0.82421875, -0.93847656, 0.78808594, -0.46264648, 2.7011719, -1.4326172, 2.453125, 1.5986328, 0.65478516, -0.46264648, -1.0888672, 0.15332031, 1.8339844, -2.6347656, -1.359375, 2.4824219, 2.5332031, 2.125, -0.81689453, 0.83447266, 2.3476562, 2.5390625, -0.13134766, -0.2524414, 0.081970215, -1.0283203, 0.69873047, 1.46875, -1.3525391, -1.4550781, -2.0566406, -1.4267578, -1.3623047, 1.6240234, 2.0605469, 0.39526367, 2, -3.9433594, 1.7587891, 2.1132812, 1.2451172, -0.28637695, -1.3242188, -0.053619385, -1.7197266, -1.4990234, -0.58496094, -2.2929688, 2.09375, 1.5634766, 0.38476562, 2.4960938, 0.09564209, 1.0908203, 0.87060547, 1.8808594, -0.69433594, 0.22265625, 0.38916016, 1.7666016, 2.6640625, -1.4433594, 0.38452148, 1.7617188, -0.32128906, 1.4326172, 1.2216797, -0.98291016, 1.8476562, 2.2304688, 1.1357422, 0.79296875, -2.0292969, -1.8261719, 1.6806641, -0.03100586, 0.63964844, -0.9345703, 1.71875, 0.9926758, -0.80908203, 1.8945312, 1.4609375, -0.95996094, 1.6630859, -2.1738281, -1.7958984, -1.5820312, -0.42773438, 0.90966797, 0.11828613, 0.37109375, -1.3701172, 1.7001953, 0.46826172, -0.4658203, 1.2695312, 1.3242188, -1.5341797, 0.53759766, -1.1337891, -2.6054688, 0.0066604614, -0.048187256, -0.37060547, 0.4506836, 1.9189453, 2.65625, -1.484375, -3.2011719, -2.3359375, -1.0810547, 0.057250977, -1.9160156, 2.0175781, 3.1972656, 2.0332031, -1.2226562, -2.2519531, -0.026641846, -0.44335938, -0.45483398, 1.9921875, -0.26220703, -0.80615234, 0.82470703, -0.63964844, 2.453125, 0.12927246, -2.6464844, -0.48706055, -0.9916992, 1.6923828, -0.83691406, 0.0132751465, -0.1239624, 0.57373047, 1.2646484, 2.5449219, 2.3671875, -0.0063171387, 1.2441406, 3.5859375, -0.3310547, -1.6201172, -0.37475586, 0.7314453, 2.5917969, -0.50146484, 1.6894531, 1.7041016, 0.3461914, 0.5888672, -1.90625, -0.6875]}, "B07L9S7C1R": {"id": "B07L9S7C1R", "original": "Brand: Zerodis\nName: Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue\nDescription: Specifications:
Condition: 100% Brand New
Material: Plastic + Stainless Steel
Main Color: Black
Power Supply: 4 * AA Batteries (not included)
Total Length: Approx. 26.5cm/10.43in
Wind Tube Length: 5.9cm/2.32in
Weight: Approx. 161g

Package Included:
1 * Handheld Electric BBQ Fan

\nFeatures: \u3010Electrical Power\u3011 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows\n\u3010Quick Heat\u3011 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney\n\u3010Safety Use\u3011 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan\n\u3010Compact Size\u3011 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated\n\u3010Cooking Helper\u3011BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit\n", "embedding": [-1.3544922, 2.7324219, 0.1817627, -0.89501953, 0.58740234, -0.3137207, 0.53027344, -0.9453125, 0.030044556, 3.3945312, -1.0351562, -0.72509766, -1.5791016, -2.8710938, -1.0976562, 1.7285156, 0.76708984, 0.9160156, 0.8432617, 0.46728516, 0.8803711, 0.2849121, -0.09338379, -0.94189453, 0.22949219, 0.16687012, 3.8925781, -1.2207031, 0.671875, -0.8457031, 0.5214844, -1.1904297, -2.2617188, 0.27246094, -2.9433594, 0.4572754, -1.15625, 2.2265625, -0.42871094, -1.1982422, 1.3544922, -0.9863281, 1.6308594, 0.5551758, -1.8330078, 1.1298828, -1.5400391, 0.7890625, 1.4541016, -2.3417969, 1.3652344, 0.57421875, 0.3955078, 1.6230469, -2.5546875, 0.52001953, -1.0722656, -3.6132812, 3.0996094, -1.0498047, 3.0722656, -0.54589844, -1.6386719, 1.5644531, 1.6357422, -1.46875, -0.94921875, -1.0839844, -0.40576172, -0.4248047, 0.3996582, 0.32666016, -0.7895508, -0.1640625, -1.5537109, -0.43798828, -3.53125, 1.9755859, 1.4023438, 1.6542969, -1.4287109, 0.33862305, 1.7294922, -2.2871094, 0.038879395, -1.1982422, -1.7177734, -0.04534912, 0.5390625, 0.82714844, -0.84033203, 2.0722656, -1.5048828, -4.2695312, 2.1503906, -3.53125, 0.007045746, -2.9394531, -1.4912109, 1.1933594, -1.0976562, 0.10284424, -1.0068359, -0.59228516, 0.75683594, 0.49731445, 0.101379395, 0.7558594, -0.39575195, -1.4599609, -2.5253906, 0.7714844, 0.5136719, 1.0546875, -0.45483398, -2.4238281, 1.2900391, 1.40625, 4.4921875, 0.08795166, 1.9541016, -1.3232422, 0.40014648, -2.1289062, 0.53271484, 0.22546387, 0.7939453, 0.074279785, 3.8027344, -0.26904297, -0.31762695, -1.4023438, 1.0126953, 1.5126953, -0.5131836, -2.5175781, -0.25317383, -1.2568359, -3.5683594, -0.8510742, -0.36254883, 0.07141113, 3.6601562, -1.0410156, -3.2441406, -1.1318359, 0.6557617, -0.36010742, -0.5209961, -3.1328125, 1.0390625, -1.3564453, -1.09375, -1.7285156, 0.3786621, 1.9492188, -1.5185547, -1.7548828, 3.2441406, -0.25854492, -1.1152344, -3.3886719, 1.8183594, 1.3125, -1.0419922, -1.4248047, 1.6279297, 2.0878906, 0.2685547, 2.0136719, 1.7558594, -2.9160156, 0.67578125, -1.8564453, 0.7246094, -2.7070312, -2.8125, 3.6484375, 0.7319336, -1.9755859, -2.4199219, -1.8779297, 3.0683594, 0.39331055, 0.7583008, 0.05935669, -0.7138672, -0.44604492, 0.29589844, -1.0761719, 0.07086182, 0.49414062, 1.2636719, 1.7363281, -0.18017578, 0.16418457, 0.5703125, -1.8916016, 0.8486328, 2.8984375, -2.2871094, -1.65625, -1.7773438, 0.020339966, -2.3417969, -1.0800781, -1.7529297, 1.2324219, 2.9492188, 0.064697266, -0.15429688, -0.9404297, 4.4765625, 1.3798828, 1.8828125, -2.6308594, 0.24206543, -1.5126953, 2.2089844, 2.1132812, 0.43676758, -1.1630859, -0.5161133, 2.1503906, 0.070495605, 1.7109375, -1.2441406, 0.28808594, -2.1621094, -0.390625, 2.2695312, 0.8510742, 0.6166992, -0.47729492, -0.953125, 1.2509766, 0.5551758, -1.34375, 1.1015625, 0.13671875, 0.3137207, -2.1328125, 0.36816406, 0.6323242, -0.42700195, -1.8916016, -0.25561523, 2.8867188, 0.45458984, -0.79003906, -1.3984375, 0.53271484, 0.3395996, 0.71875, -2.1953125, -0.25268555, 0.04046631, -0.27075195, -1.4638672, -0.8540039, 1.5703125, 0.12658691, 0.43554688, -0.29833984, -0.085998535, -1.3925781, 1.3847656, -0.13110352, -0.5522461, 0.1274414, 0.78808594, 1.9150391, 0.9897461, 2.0175781, 2.8359375, -0.51953125, -0.18139648, 0.2121582, 0.7680664, -1.625, -0.14526367, -1.609375, 2.6425781, -1.4716797, -0.5522461, -1.4765625, 0.006755829, -0.6816406, -0.94140625, 1.0332031, 2.9414062, -0.18041992, -2.5585938, 2.7871094, -3.5527344, 1.8779297, 0.2927246, 0.34887695, 0.16931152, -0.18676758, 0.8574219, 0.5263672, -1.4824219, 1.9365234, -0.89501953, -0.3095703, 1.3730469, -2.4453125, -1.9521484, 0.68408203, -1.25, -1.7177734, -1.6591797, -0.6899414, -3.671875, -1.421875, -1.5214844, -2.078125, 1.9599609, 1.859375, 0.050933838, 2.0332031, -1.0507812, -2.2753906, -0.9760742, 0.21801758, -0.55566406, 0.18774414, 1.6865234, -2.4003906, 0.04119873, -1.7226562, 1.25, -2.5996094, 0.14086914, -1.8027344, 0.75683594, -1.9736328, 3.0742188, 0.103515625, -0.46069336, 0.76953125, -0.6904297, 0.88427734, 0.8408203, -2.71875, -3.0039062, 1.0195312, 1.0097656, -0.11651611, 0.1887207, 1.4521484, 1.4482422, -4.6835938, -0.9892578, -0.031311035, 0.7949219, -0.578125, -3.9941406, 1.1455078, -0.55908203, 0.28710938, -1.5449219, 0.875, 1.1933594, -0.1739502, -0.43286133, -3.2871094, 0.9897461, 1.8349609, 2.3300781, 2.1660156, 0.40893555, -0.6904297, -0.31445312, 1.0478516, -0.058532715, 3.1796875, -1.7744141, 1.6435547, -1.0615234, -1.7685547, 0.5864258, 1.1611328, -3.9199219, -0.6923828, -1.0537109, -1.8349609, -1.4580078, -2.5839844, 1.0224609, 0.18200684, 0.13171387, 0.375, 1.5537109, 1.3896484, 1.1044922, -2.0605469, -0.73095703, 0.16210938, -2.1796875, -0.56103516, -1.0078125, -1.5683594, -1.6376953, -2.8417969, -0.043060303, -0.53466797, 1.1113281, -0.64941406, -0.46801758, 2.140625, 1.0058594, 0.27148438, 0.68359375, -3.0039062, 2.4960938, 0.96972656, -1.875, -2.2695312, 1.7285156, 0.17700195, -2.9589844, -0.21435547, 2.4960938, -0.9658203, 3.6113281, -0.9067383, -0.34643555, -0.107177734, 0.8486328, -1.2050781, -1.5263672, 0.26782227, 1.6992188, -2.5253906, -1.4541016, 0.7104492, 1.0517578, -0.3630371, 0.62597656, 1.7021484, 1.0683594, 1.1484375, 2.4589844, 0.4387207, 1.1992188, 1.2871094, -0.9863281, 2.4921875, 0.29638672, 0.375, -1.0615234, -0.47460938, -0.25830078, 1.4677734, 0.92578125, -1.5800781, 3.4511719, 4.0078125, 1.5478516, -0.40771484, -0.051513672, -0.06719971, 0.91503906, -0.14575195, 1.4501953, 0.27319336, -1.5498047, -0.80029297, 0.57373047, 1.9101562, -0.42333984, -0.5083008, 2.921875, 0.20935059, 0.82421875, -0.84033203, 0.6533203, -2.8007812, -2.3574219, 1.09375, -1.1289062, -2.0351562, -1.5625, -1.9277344, -0.7055664, -0.091552734, 0.8881836, -0.36010742, -2.5117188, -1.1474609, 0.050201416, -0.7285156, -0.35668945, -1.1259766, 1.3994141, -0.064697266, 2.8339844, 0.14733887, -0.48413086, 1.2021484, -1.3115234, 0.26782227, -0.45483398, -0.47998047, -1.3349609, -1.6230469, -1.8916016, 2.8359375, 2.5214844, 2.8789062, 1.15625, -0.4008789, 0.98046875, 0.8046875, -0.80810547, 0.96435547, -2.0390625, 0.6113281, 0.9604492, 0.42773438, 0.99609375, 2.0585938, 2.5625, -1.0458984, -1.7666016, 1.8828125, 0.46923828, -1.1044922, -0.80322266, -2.4609375, 2.53125, 1.2470703, 2.0859375, 2.3574219, -0.14038086, 0.9321289, 2.125, 0.73291016, -1.4921875, -1.3310547, 0.8696289, 1.1835938, 0.75390625, 0.59375, 2.5449219, -1.8583984, -1.0380859, -0.43530273, -0.28027344, -0.3166504, 0.10223389, 2.2207031, -0.06390381, 0.75927734, -1.2988281, 2.5839844, -0.87353516, 0.94140625, 1.125, -1.1582031, 0.6308594, -0.91748047, 1.6669922, 0.61865234, -0.49926758, -0.6074219, 1.3623047, 1.5449219, -2.4042969, 0.34936523, 2.2851562, 1.7529297, -0.50634766, -3.109375, 0.40478516, -0.051757812, -2.2929688, -0.018707275, 1.3935547, -0.46606445, -3.28125, 2.7597656, 0.3010254, -0.015853882, 1.8730469, 2.1933594, -3.03125, 0.41308594, -1.5595703, -1.3847656, -2.28125, 0.41430664, -0.5234375, -1.1171875, 0.99609375, -2.1699219, 0.49951172, 1.4541016, -1.3837891, -1.1953125, 1.1396484, 1.1552734, 0.75683594, 3.6367188, -2.4824219, -0.99365234, 0.21240234, -2.3496094, -0.04626465, 0.18676758, -0.39404297, 0.53759766, -0.9082031, 3.4511719, -2.3027344, 0.76464844, -0.10369873, -1.2177734, -0.4050293, -1.5087891, 1.6416016, -1.2148438, 0.24145508, 0.9946289, 0.5449219, 1.1142578, -0.7841797, 1.3251953, 1.8691406, 0.87402344, -0.6635742, -1.1601562, 1.1640625, 0.609375, -0.2244873, 1.2441406, 1.0537109, -0.5107422, -1.375, 1.3583984, 2.84375, 0.32641602, -2.1640625, 0.32421875, -1.9921875, 0.58984375, 1.5019531, 0.6870117, 1.0488281, 1.5634766, 2.3886719, 0.3581543, -1.9970703, 2.0878906, 1.7070312, -1.0683594, 2.4023438, -1.2255859, -2.9882812, -0.15551758, -0.17163086, 0.05609131, 1.2744141, 2.6953125, -0.734375, 0.4987793, -2.9648438, -0.34814453, -0.38330078, -0.3046875, -0.11407471, -0.0619812, -1.8291016, 1.9179688, -0.2512207, 0.5942383, 0.9057617, 1.4873047, 2.5429688, -0.11138916, -1.8583984, 1.3935547, -0.8417969, -0.103759766, 0.18029785, -2.3613281, -2.296875, -0.002029419, 2.1289062, 1.3876953, 2.7304688, 2.3046875, 1.2207031, -2.9882812, 0.20703125, -1.6123047, 1.8857422, -3.9746094, 0.75, 1.2792969, -0.5410156, 0.9160156, -2.1210938, -0.13171387, -0.42871094, 0.8779297, 0.16662598, -1.5292969, -2.2539062, -1.1269531, -1.9150391, -4.8046875, -2.7246094, -0.67041016, -0.6591797, 0.6508789, 0.87353516, -0.033599854, -1.6113281, -0.2709961, -2.4023438, 1.7021484, -0.88134766, 0.50097656, 0.89208984, -1.9609375, -0.99316406, -0.23901367, -0.11871338, -0.6665039, -0.035095215, 0.59277344, -1.6835938, -0.56640625, 1.8115234, -1.6650391, 1.1767578, 1.8085938, -1.3095703, 2.1523438, 3.0273438, 1.7265625, -1.3457031, 2.0703125, -1.1142578, -0.3984375, -2.6445312, -0.5332031, 1.2265625, -1.7666016, -1.6083984, -1.21875, -0.36401367, 1.8535156, 2.96875, 0.5498047, 1.6914062, 1.1181641, 0.53222656, -1.8320312, -0.30273438, 0.30981445, 1.9394531, 0.44433594, 0.35791016, -0.26171875, -1.7099609, -1.4824219, 0.38378906, -0.41137695, 0.8442383, 0.20202637, -1.1748047, 0.21838379, 1.8164062, 1.3779297, 0.2993164, 0.83251953, -0.16345215, 0.5488281, 1.9570312, 4.2695312, 1.6083984, -1.8955078, -0.58740234, -0.8227539, 0.94384766, -0.7128906, 0.3400879, 0.056610107, 0.64941406, -2.7382812, -1.5615234, -0.9399414, 2.9960938, 2.5253906, -0.51171875, -2.8828125, 0.33789062, 1.4023438, -0.10241699, -1.5693359, -0.44335938, 1.6728516, -0.83203125, 3.2617188, 0.0881958, -0.5751953, 0.81396484, -1.2626953, 1.3701172, 0.0012874603, -4.25, 0.99902344, -1.5664062, -1.7929688, 0.1685791, -2.0761719, -3.7753906, 1.8798828, 0.4416504, -1.5478516, -0.04473877, 3.7011719, -1.5830078, 1.7236328, 1.8964844, -0.8642578, 0.19433594, -0.22436523, -0.04837036, 0.4819336, 2.6132812, -0.24243164, 2.1113281, -0.15600586, -0.6245117, -1.0068359, 0.9111328, 1.5400391, 0.1427002, 0.031311035, 1.7978516, 0.28344727, 3.5371094, 2.6855469, 0.99609375, 1.3183594, 0.78808594, -1.1386719, 1.2099609, 1.9277344, 0.5932617, -2.4101562, -3.1035156, -1.3330078, -0.2479248, 0.6357422, 0.18786621, 1.9833984, 1.0664062, -1.7519531, -0.13806152, -0.9345703, 1.6523438, -0.45092773, 1.5478516, -0.040924072, -0.15026855, -1.2597656, 1.4091797, 2.0585938, 0.10070801, 1.6777344, 0.33862305, -1.1962891, 0.30932617, -4.15625, 1.5791016, -0.82421875, 0.52490234, 0.061157227, 1.6816406, 2.1054688, 1.9384766, 0.71240234, 1.5058594, 0.8154297, -1.8066406, 2.671875, 0.63964844, -0.49853516, -0.6791992, 3.0839844, 0.4753418, -0.87402344, 0.5629883, -1.3320312, -2.25, -2.5078125, 2.7890625, 1.3691406, 0.088256836, 0.8774414, -1.1845703, -0.203125, 0.5888672, 3.3417969, -0.78808594, 1.2041016, 0.20568848, 1.0292969, -0.75439453, -1.5224609, 2.3359375, 2.828125, 1.5849609, -1.1640625, 0.74560547, 0.81933594, -0.4140625, -2.2949219, -1.0273438, -0.45532227, -1.6591797, -1.8808594, 0.5678711, -0.09637451, -0.54541016, -0.22399902, 2.1601562, 0.3046875, 2.3535156, 1.7792969, -1.2177734, 2.3046875, -1.2373047, 0.21875, -2.5546875, -0.0038337708, -2.6875, 1.6757812, -0.8613281, -1.6435547, 0.20471191, 0.027679443, 0.6489258, 1.6064453, 0.64453125, 2.2792969, -0.60253906, -0.4946289, 0.8417969, -1.8505859, 1.0751953, -0.48950195, 0.8227539, -0.68847656, -0.61328125, 1.5849609, 0.5722656, 0.8017578, 1.1914062, -0.3552246, -1.7314453, 0.62890625, 1.5273438, 0.42895508, -1.8398438, 0.7607422, 0.9135742, 0.7109375, 0.30737305, 1.4052734, 0.97509766, -1.96875, -0.5830078, -1.1708984, -1.2890625, -1.0009766, -1.7265625, 0.95996094, 2.2753906, 0.5776367, -0.59716797, -4.84375, -0.66064453, 1.9384766, 0.43530273, 0.092285156, -0.34375, -2.8066406, 1.2441406, -0.6113281, 3.203125, -0.15808105, -0.5966797, -0.100097656, 0.7392578, 2.6582031, 2.2363281, 0.18017578, 0.6538086, -0.9296875, 1.0742188, 2.8398438, -0.035339355, -0.40551758, 2.0039062, 0.3034668, 2.359375, -3.421875, -0.34179688, -2.84375, 1.171875, 1.0341797, -0.75146484, 0.17626953, 0.48999023, 0.7236328, -1.6542969, -2.2246094]}, "B084JG7KBQ": {"id": "B084JG7KBQ", "original": "Brand: Outsunny\nName: Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard\nDescription: Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

Features:
- 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
- PA coated polyester canopy top offers sunray and light rain protection
- Side awning provides extra sun protection
- Durable metal frame with extra supporting bars for added stability
- Comes with stakes for the legs for added support
- 2 platform shelves for grill accessories, beverages or food
- 5 hookers for cooking tools
- Easy to assemble
NOTE: Not to be left up during adverse weather conditions.

Specifications:
- Color: Black, Grey
- Materials: Steel, Polyester
- Overall Dimension: 85.75\" L x 54.25\" W x 85\" H
- Peak Height: 85\" H
- Sidewall Height: 76\" H
- Net Weight: 44 lbs


\nFeatures: STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging.\nWEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions.\nSTORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools.\nSTURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station.\nOverall Dimension: 85.75\" L x 54.25\" W x 85\" H, Eaves Height: 85\" H, Side Awning Size:78.75\" L x 19.75\" W ,\n", "embedding": [-0.68652344, 2.7363281, 1.6083984, -1.1083984, 2.0117188, 0.95996094, 1.2509766, -0.71191406, 1.9794922, 0.8911133, -1.46875, -0.2097168, 0.06402588, -4.6367188, 0.07165527, 0.83203125, 2.0136719, 2.0136719, 1.7304688, -2.7578125, 0.72998047, 1.0820312, -0.66259766, -0.7426758, 2.1777344, -0.4560547, 3.5214844, -0.95947266, -0.6074219, 0.6166992, 1.8427734, 1.28125, -0.75927734, 1.7890625, -2.8261719, -0.95410156, 0.26416016, 0.3869629, 0.6796875, -1.1152344, -1.5908203, -2.9980469, 3.4492188, 1.2128906, -0.82714844, 1.6953125, -1.671875, -0.7084961, 0.86865234, -2.0351562, 0.062194824, 0.9243164, 2.6542969, -0.11779785, -0.93652344, -0.62060547, -0.86865234, -2.0351562, 1.5966797, 1.0810547, -1.0712891, -2.4492188, -1.171875, 3.5234375, 0.42407227, -2.5800781, 0.29711914, -1.2402344, 0.4284668, 0.3166504, 0.74853516, -2.0117188, -2.9511719, 0.7919922, 0.27294922, -1.0898438, -3.6152344, 1.6884766, 2.6914062, -0.69921875, -1.5732422, 2.2265625, 2.25, -1.6972656, 0.69189453, -0.7104492, -2.7773438, 0.46606445, 0.96533203, -1.3066406, -0.5493164, 0.15161133, -1.59375, -3.7460938, -0.12420654, -3.921875, 1.3300781, 0.6035156, -0.8935547, 2.734375, -0.038482666, 0.19506836, -0.5498047, 0.12585449, -1.7158203, -0.8925781, 1.7128906, -3.0136719, 0.546875, 0.4506836, -0.24414062, 0.70214844, -0.036224365, -0.7763672, 1.3984375, 0.77441406, -1.3320312, 2.4980469, 0.11706543, 1.796875, 2.1328125, 2.8789062, 1.0869141, -1.0419922, 0.35546875, -2.890625, 0.44213867, 1.3955078, 4.546875, 0.20007324, -0.025100708, -2.2695312, -0.7788086, 0.86083984, -2.015625, -1.5322266, -2.1523438, -0.5488281, -4.8359375, 3.0546875, -0.92529297, -0.7680664, 2.1601562, -0.5253906, -2.0058594, 0.51904297, -1.0205078, 2.9179688, -1.015625, -4.5820312, 1.2568359, -1.1357422, -0.57373047, 0.36621094, 1.1660156, -1.3037109, 2.6777344, -2.2949219, 2.9511719, 0.3408203, 1.609375, -3.2246094, -2.0820312, 1.6337891, -0.7270508, -2.7558594, 0.84814453, 0.49829102, -0.81103516, 1.1796875, 2.5449219, -1.8378906, 2.171875, -0.26293945, 1.9238281, -1.3847656, -2.4101562, 2.2246094, 1.09375, -0.56396484, -0.5385742, -2.1894531, 0.91845703, 1.3769531, -1.0244141, -1.6777344, -0.87109375, 0.41235352, -0.42138672, -0.7529297, 0.3779297, 0.39892578, -2.1816406, 1.4697266, -3.6464844, -0.4399414, -1.1494141, -0.5917969, 0.4482422, 1.7294922, -0.9272461, -1.0322266, -1.40625, 1.4882812, -2.5839844, -0.1640625, -2.8867188, 2.2988281, -0.10699463, 1.2949219, 1.4052734, -1.2402344, 1.7919922, 2.4511719, -0.24084473, 1.0595703, 2.3105469, -0.039978027, 2.0195312, 2.7519531, -0.8330078, -0.6875, -2.8144531, 3.5195312, -0.7807617, 0.80566406, 1.1728516, -0.8930664, -0.56103516, 0.5395508, 1.1015625, 0.13500977, 1.3144531, 0.9301758, -0.7290039, 0.9946289, 1.0283203, -1.6240234, -0.5878906, -2.0625, 1.2236328, -2.6015625, -0.6953125, 0.52490234, 0.78271484, 0.6777344, -1.6767578, 1.6542969, 0.5517578, -0.7553711, -0.35424805, 0.72021484, -0.6904297, -0.8911133, 1.0126953, 1.0556641, -0.6582031, 0.53759766, -2.7109375, -0.8178711, 0.1439209, -0.053833008, 1.7695312, 0.9663086, 0.023986816, -0.6123047, -0.23718262, 1.8359375, -3.2597656, -1.7871094, 0.93359375, 0.2998047, 2.0351562, -0.31420898, 0.47485352, 0.6855469, -1.0253906, -0.18798828, 0.46289062, -0.5576172, 0.62890625, 1.5712891, 2.5078125, -1.2021484, -1.0722656, -2.6679688, -0.8466797, -1.0439453, -1.3056641, 0.45581055, 2.03125, -1.1357422, -1.4394531, 3.3535156, -1.6992188, -1.0175781, 1.8876953, -1.8115234, -1.3984375, 1.1660156, 2.8789062, 1.3681641, 1.5166016, -0.48876953, -0.24047852, -0.91796875, 0.6328125, -4.40625, 0.018829346, 2.4785156, -0.71533203, -0.7519531, -0.7402344, 0.06964111, 0.034301758, -1.4072266, 3.0449219, -1.46875, 0.27075195, 3.3886719, 0.7607422, 1.7685547, -0.69970703, -1.9873047, -1.8808594, 0.15783691, -0.6386719, -0.61816406, 0.9580078, -0.953125, 1.0869141, -2.2890625, 0.8149414, -1.6669922, 0.57470703, -3.2578125, -1.140625, 3.0820312, -3.8847656, -1.9794922, 1.4033203, -2.0898438, -2.7890625, 1.4882812, -0.20898438, -4.1484375, 0.7631836, 2.3789062, 0.15319824, 4.2070312, 0.21606445, 1.3466797, 1.7568359, -2.8125, 0.47729492, 1.9150391, 0.22009277, 1.9277344, -3.4628906, 0.38891602, -1.4433594, 1.5712891, 0.93652344, -0.4609375, -0.3881836, -0.24816895, -0.7324219, -4.0351562, 0.62158203, 1.2851562, 1.0771484, -1.7197266, 1.1435547, -2.5761719, -2.3085938, 2.203125, -1.5361328, 6.6171875, -1.0458984, -0.8745117, -2.8515625, -1.4306641, 1.2792969, 0.10333252, -3.2480469, -0.024780273, -1.7724609, 0.51904297, -1.0332031, -1.9355469, -0.15258789, -0.29785156, -0.13330078, -0.46606445, 0.10058594, 1.8408203, 0.4152832, -2.1230469, -0.8486328, -1.1298828, 0.88134766, 0.6669922, 0.38964844, -1.8476562, -0.22851562, 0.27392578, -0.75097656, -1.0839844, 2.5410156, -1.1054688, -1.0371094, 0.8413086, 0.28686523, 3.0722656, -1.5, -1.9023438, 2.5566406, 4.4101562, -0.0725708, -0.7504883, 0.95410156, -0.78759766, -1.7597656, -0.25952148, 3.6308594, 2.4746094, 1.3251953, -1.0351562, 1.0888672, 1.2382812, -0.36572266, -0.67529297, -0.6816406, 0.81591797, 3.6777344, 0.31713867, -2.4277344, 0.03753662, 0.8203125, -3.1484375, 1.5458984, -0.7626953, 0.43725586, 3.3769531, -0.06817627, -1.5361328, 0.80615234, 0.046295166, 1.140625, -3.1503906, 3.3847656, 2.234375, -2.4667969, 1.6132812, -1.1181641, 1.0146484, -0.19018555, 0.017822266, -0.18225098, 1.1757812, 0.11541748, -3.3007812, 0.9892578, 2.0429688, 1.3935547, -0.8208008, 1.6289062, -1.4648438, -0.29614258, 0.33740234, -0.45751953, 1.6494141, -1.8300781, -0.51220703, 2.0214844, -0.8457031, 0.35864258, 0.2919922, -0.57714844, -0.7421875, -0.01222229, 0.1227417, -0.9506836, -2.2382812, 0.5102539, -4.3984375, -3.0800781, 0.26098633, 2.0019531, 0.2154541, -2.7617188, -1.5498047, 1.9306641, 1.7119141, -0.63964844, -2.109375, 0.45532227, -1.6015625, 1.7412109, 0.6542969, -1.4707031, 0.9277344, -0.7973633, 3.3457031, 1.5917969, -1.7675781, -3.1738281, -0.13024902, -1.6904297, 0.18164062, 0.9477539, 0.6425781, 0.2442627, -2.3222656, 0.10058594, -0.42382812, 0.45214844, 3.890625, -1.8066406, -0.61572266, 0.5961914, 1.3984375, -0.17163086, 0.124572754, 2.4316406, 0.9448242, -1.9013672, 1.9033203, 0.11529541, -0.67578125, -0.66845703, -4.703125, -0.023727417, -1.3320312, -0.73339844, 2.3554688, 0.88378906, -1.6464844, 1.5419922, -0.7402344, -0.33789062, 0.23962402, -2.3398438, -1.1210938, -3.3632812, -1.0712891, 0.002002716, -1.8916016, -1.6835938, -2.9023438, -0.5883789, 0.22473145, 1.0205078, 1.9023438, 1.5791016, 0.3017578, -1.3916016, 0.38842773, 0.6010742, 1.7851562, -1.5712891, -0.56347656, -0.040985107, 0.19384766, 1.0498047, 1.8378906, -0.93115234, 0.5595703, 1.5009766, -0.2253418, -1.1171875, -2.3476562, 0.72314453, 2.234375, -1.0498047, -2.640625, -1.2373047, 0.34716797, -0.5810547, -0.78125, -2.2714844, 1.8027344, -1.9267578, 1.0820312, -0.6899414, 2.3808594, -0.21923828, -2.2167969, -4.6875, 0.26293945, 0.056365967, -1.4453125, -1.8486328, -2.1191406, -1.0957031, 2.7050781, -0.8300781, -1.2724609, -0.27441406, -0.40600586, 1.7861328, -0.5703125, 1.3652344, 0.7475586, 2.8808594, 4.4140625, -1.2255859, -0.37817383, 2.8359375, -0.2770996, 0.5883789, 3.2382812, -0.88427734, -0.8901367, 0.7973633, 1.7060547, -2.8886719, -2.9121094, -0.2746582, 0.4645996, -1.6464844, -1.5292969, 3.265625, 0.5205078, -0.1282959, 1.09375, -1.1347656, 2.5097656, -4.2265625, -0.30859375, 0.19116211, 0.24243164, -1.109375, 1.6552734, 3, 1.3486328, 0.36865234, 0.9511719, -2.1503906, -0.82373047, 0.5991211, -0.6743164, 1.890625, -3.0625, -1.8769531, -0.1706543, -1.7617188, 0.7114258, -0.9428711, 2.1523438, 2.9882812, -1.1611328, -0.35595703, 0.6303711, -0.36914062, 3.5058594, 0.7939453, -0.2619629, 0.8808594, 0.9086914, -1.5439453, 1.2460938, -0.51171875, -2.7929688, 0.87939453, 0.4309082, -1.5126953, 3.109375, 0.45874023, -1.7832031, 2.2421875, 0.3083496, 0.9042969, 1.0498047, -1.2197266, 0.2927246, 0.022613525, -0.44628906, -1.8857422, -0.73583984, 2.3417969, -2.125, -0.52001953, 1.6943359, 2.28125, -0.5214844, -0.8691406, -1.0830078, -2.1289062, -3.0253906, 2.1425781, 3.0039062, 2.8652344, 0.27661133, 0.5205078, -3.2675781, -2.1777344, -3.03125, 3.6992188, -2.3886719, 0.8442383, 1.7285156, 0.42944336, -0.2680664, -2.28125, 1.5712891, 1.1728516, 0.4387207, 0.40429688, 0.99560547, 0.024551392, -0.9355469, -2.3847656, -3.2167969, -1.7734375, 0.029647827, -0.8120117, 0.6098633, -0.6689453, -0.71875, -2.0917969, -0.35668945, 1.3476562, 2.1328125, -1.0253906, -0.20300293, 0.46044922, -0.9008789, -2.3085938, -1.9824219, -0.14001465, -1.5576172, 1.796875, -0.24108887, -2.359375, -1.0078125, 0.9550781, -2.484375, 0.0004014969, 1.9101562, 0.38305664, 2.1152344, 2.7265625, -0.15856934, 0.14501953, -0.13806152, 0.27319336, 1.1035156, 1.1181641, 0.12695312, 1.4941406, -1.6982422, -0.54541016, 0.88378906, -3.0253906, -0.11260986, 1.1943359, 0.36132812, 1.7324219, 2.203125, 0.98095703, 0.3959961, 0.7163086, 0.37182617, 2.1679688, 1.0449219, -1.0800781, 2.1640625, -2.1894531, -3.0097656, -1.1015625, -2.1875, -2.1972656, -0.66796875, 1.4238281, -0.9267578, 2.4550781, 2.9628906, 1.0878906, 2.5488281, -2.03125, 0.68896484, -0.14123535, 0.8232422, 0.50390625, -1.0332031, -1.828125, -4.1757812, -0.36547852, 1.6845703, 0.005218506, -0.77978516, -1.0146484, -1.3652344, -1.5058594, 0.6894531, 0.21948242, 1.4492188, 2.640625, -0.67529297, 0.99902344, 0.6147461, 0.72021484, -0.44848633, -1.0693359, 1.5527344, 0.96191406, 0.71875, 0.21875, 0.46313477, 0.5698242, -1.3457031, 1.0205078, -0.54003906, -1.8339844, 1.8652344, -1.2167969, 0.22680664, -0.22180176, -0.5102539, -2.5800781, 1.1757812, 0.2915039, 0.52001953, 0.42407227, 3.890625, -1.8486328, 0.3635254, 1.6875, 0.90722656, 0.2548828, -1.0332031, 0.3161621, -0.65185547, 1.9052734, 0.05621338, 0.29882812, 0.22216797, 0.92285156, -0.30639648, 2.2011719, 0.45654297, 0.84277344, 2.0429688, 1.6748047, 2.1757812, 2.0039062, 1.640625, 1.4492188, 1.6396484, -0.80029297, -4.2148438, 0.7675781, 2.2246094, 3.2929688, -0.59765625, 2.0078125, 0.5830078, 1.9189453, -0.02684021, 0.8569336, 0.1583252, 1.140625, -2.8398438, 1.7431641, 0.010101318, 1.1748047, 1.1162109, 1.7451172, -1.0791016, -0.87646484, -2.7050781, -1.2226562, 1.5869141, 0.5961914, 0.13208008, -2.1367188, -0.046142578, 0.49682617, -2.2089844, 1.03125, 0.73095703, -0.007259369, -1.3496094, 2.4902344, 3.5351562, 1.9511719, -0.7216797, 1.9091797, -0.12927246, 1.4990234, 3.1953125, 2.5058594, 1.0341797, -0.64941406, 0.61376953, 0.41308594, -0.28295898, -2.9492188, 1.5263672, 1.2480469, -2.3007812, -1.4667969, 1.0947266, 1.0009766, 2.6640625, -1.3496094, 0.32080078, 0.0052261353, 2.7539062, -1.4814453, -0.70654297, -1.6855469, -1.4257812, -0.19567871, -0.3293457, 0.6977539, 2.2167969, 1.7587891, -0.74560547, 2.4550781, 1.3203125, -0.97998047, -0.44360352, 1.1650391, -0.99609375, 1.8359375, -0.92822266, 2.078125, 1.7802734, 0.54052734, 0.012626648, -0.059783936, -1.2646484, -1.5546875, 2.4882812, -1.1103516, 0.1328125, 0.671875, -0.7084961, 0.27416992, -2.1835938, -2.0410156, -0.21472168, 0.26538086, -1.9306641, -1.9521484, -1.0605469, 3.0332031, 1.0058594, 0.23913574, 0.57177734, -0.6020508, 0.22497559, 1.5253906, -0.73339844, 0.98779297, -0.96191406, 2.1914062, -0.28027344, -0.11859131, -0.7236328, 2.21875, 0.8886719, -0.17089844, 1.8310547, 1.0576172, 1.3603516, 2.1230469, 0.45947266, 0.44750977, -1.9326172, 0.6611328, 1.0830078, -0.65478516, 2.3398438, 1.2900391, -3.1054688, 0.84277344, -3.4082031, 1.9306641, -1.5625, -2.1660156, 0.7163086, 2.9570312, 3.3730469, -1.125, -3.5136719, -3.2285156, -0.38720703, -0.67529297, 2.0742188, -0.1665039, -2.2285156, -1.4765625, -0.85253906, 2.8457031, -0.062683105, -0.21765137, 0.2322998, -0.796875, 1.9003906, -2.3457031, -0.9824219, 1.5957031, -0.8515625, 0.97998047, 2.71875, 3.2226562, 1.3818359, 0.12890625, 1.8037109, 0.94433594, -4.0117188, 3.1757812, -0.48950195, 1.4951172, 1.0185547, 1.9453125, 0.12512207, -0.6484375, -0.06100464, -3.0039062, -1.3554688]}, "B00OV88E5A": {"id": "B00OV88E5A", "original": "Brand: Gas Light Pro\nName: Propane Tip for Gas Lantern 123SID\nDescription: Rosebud flame\nFeatures: Propane(LP) tip for gas lanterns.\n2 1/8\" tall\n1/8\" MNPT\nBrass components\nAdjustable air intake\n", "embedding": [0.9638672, -0.7055664, 0.7807617, 0.12902832, -0.60595703, 1.0898438, -0.66552734, -0.64697266, 3.0507812, 0.56689453, -1.3759766, -0.3503418, -0.63427734, -3.7402344, 2.1992188, 0.37963867, 1.0751953, 0.6533203, 2.6914062, -1.5820312, 0.50146484, 0.18908691, 1.2021484, -1.5390625, 1.1474609, 0.7441406, 4.0078125, -0.7338867, 1.1894531, 0.3786621, 1.0488281, -0.46655273, -1.2861328, 2.0078125, -3.7128906, -2.0878906, -2.1113281, -1.8154297, -3.6367188, -1.4423828, -2.1386719, 1.5449219, -0.06915283, -0.6567383, -2.7480469, -0.1361084, -1.2363281, 0.20385742, -0.051361084, -0.6074219, 0.88183594, 0.096069336, -1.6777344, -0.2286377, 0.2758789, -1.5400391, 1.3173828, -2.1757812, 1.2519531, 0.41455078, 1.0166016, -1.0058594, -2.7636719, -0.81347656, 0.8598633, 0.52685547, -1.4316406, -2.9609375, -0.14794922, 1.6904297, 1.8144531, 2.2148438, 3.234375, -1.7197266, 1.4257812, 0.0859375, -1.1552734, 1.6308594, -0.7988281, 0.89404297, -0.107910156, 0.68847656, 1.71875, -1.4296875, 0.58251953, -0.8618164, -3.0117188, -0.99316406, -0.96777344, 0.74902344, -1.2763672, 3.0703125, -1.3623047, -3.6835938, 2.4042969, -0.5463867, 0.59228516, 1.7949219, -0.9926758, -0.87939453, -0.18859863, 0.056121826, 1.2177734, -0.8779297, -0.45825195, 0.06213379, 0.8388672, 1.8623047, -1.3525391, -0.63183594, -0.2166748, -3.2695312, 2.1074219, -0.9067383, -1.0322266, -0.39892578, 1.4746094, 0.37963867, 2.0429688, -0.61083984, 1.2373047, -1.8984375, 1.2578125, 1.0634766, 0.86279297, 0.28979492, -2.6503906, 0.1751709, 0.8378906, -1.0390625, 0.41455078, 0.23620605, 2.5332031, -3.0351562, -1.9101562, -2.0898438, -1.2949219, -1.4121094, -1.4208984, -2.5292969, -2.5820312, -1.5830078, 1.3642578, 0.13769531, -4.1289062, 1.2685547, -3.4824219, 0.48657227, 0.008255005, -1.9169922, 2.9257812, 0.07598877, -0.0036849976, -0.5839844, 1.3955078, 1.5449219, 0.4345703, -1.1054688, 4.4023438, 1.6533203, 1.6269531, -1.7597656, -2.0859375, 0.97314453, -0.3869629, -1.53125, 0.578125, -0.36791992, 3.0761719, 0.08239746, 0.59814453, -1.9921875, -1.1962891, 2.7558594, -2.6054688, -3.3457031, 1.4189453, 0.89453125, -0.8930664, -0.8461914, -4.3984375, -2.640625, 0.58740234, -2.3652344, 3.1152344, 0.85595703, -1.9433594, -2.7792969, -0.39501953, 0.24584961, -0.014381409, 1.5107422, -1.0888672, 1.6269531, -0.1104126, -1.2949219, -2.1777344, -3, 1.1621094, 1.7412109, -2.109375, 0.15368652, -0.98339844, 0.16784668, -0.6513672, -0.93408203, 0.38354492, -1.0302734, -0.5053711, 2.7832031, 0.50683594, 0.4580078, 2.6269531, -2.765625, 2.6132812, -2.2109375, -0.6333008, 0.57177734, 2.4980469, 3.9453125, 1.8154297, 0.74560547, -1.1191406, 1.5917969, 0.7363281, 1.0146484, -0.7138672, 0.47021484, -1.9423828, -1.4267578, 2.5117188, 0.71777344, -1.8945312, -1.0185547, 1.4130859, 2.1914062, -1.1611328, -1.6523438, 2.1816406, 0.5205078, -0.83984375, -2.1113281, -1.8359375, 0.57958984, -1.3896484, -1.5068359, -0.51123047, -1.5214844, 1.5996094, 0.7553711, 0.9663086, -0.11273193, -0.29907227, 1.5546875, -1.3964844, 1.4345703, 0.68408203, 2.0644531, 0.74853516, 0.66748047, 3.3847656, 1.5371094, -0.29223633, -0.13305664, 1.3447266, 0.58740234, 0.7915039, -0.54248047, -1.1933594, 0.26293945, -1.0390625, 1.7949219, 1.5546875, 2.4414062, 2.2988281, 1.84375, -1.9902344, 2.5683594, 2.3339844, 3.0253906, -0.13000488, 0.37524414, 2.109375, -3.5507812, -1.0625, 2.1621094, 1.1855469, -0.08673096, -1.4775391, 0.66552734, 3.8398438, -3.0371094, -1.1621094, 2.5917969, 0.0848999, 1.7255859, 0.018035889, 2.859375, -0.5932617, -2.7734375, 1.3310547, 1.6123047, -0.1126709, 3.5058594, 4.015625, -0.3725586, -0.5917969, -0.6088867, 0.5727539, 0.5605469, 0.7480469, -0.70410156, -0.6591797, 1.7246094, -1.5566406, -0.2565918, 0.062561035, -1.3662109, 0.35253906, 1.8828125, -0.49902344, 1.5566406, 1.8388672, -0.011497498, -0.71875, 2.6796875, -3.3847656, 0.7788086, 0.6791992, 1.3613281, 0.27124023, -0.9277344, -0.36791992, -1.6601562, -0.67285156, 0.3347168, -1.3662109, -1.7783203, 2.1953125, -5.2734375, -0.3720703, 2.9296875, -0.9892578, 3.9882812, -0.02607727, -2.6308594, -0.5463867, -0.7861328, -0.26049805, -0.47387695, -0.67578125, 3.0078125, -0.50439453, -2.8535156, -0.7192383, 0.68896484, -0.65234375, 1.2382812, -1.2988281, 0.5957031, 0.4453125, 0.828125, 0.8979492, -1.9306641, -1.0976562, -1.7675781, 1.9082031, -1.9296875, -1.5224609, 0.12243652, 2.9472656, -1.3056641, 0.28320312, -0.30395508, -1.6650391, -1.6611328, -0.38012695, 4.6328125, -1.3046875, 1.21875, -2.8886719, -1.0224609, 1.3076172, -0.97314453, -4.3867188, -0.32055664, -1.5908203, 1.4355469, -2.1582031, -3.734375, 1.9433594, -0.6899414, 0.18481445, -1.1992188, -1.1484375, -1.9326172, 1.3925781, -0.019134521, 0.88427734, 1.3388672, -1.5341797, 1.5, -0.14855957, 0.9448242, -0.8154297, -1.2177734, 0.6245117, -0.69384766, -0.48120117, -0.75146484, 1.9072266, -0.3798828, 0.15246582, 1.0595703, 1.7792969, -3.5058594, 1.8388672, 1.1552734, -0.85595703, 0.27514648, -3.140625, 0.28173828, 0.28735352, -0.84375, 3.3203125, 2.078125, 2.4570312, 0.76953125, 0.29589844, -0.48876953, 0.30664062, -2.2246094, -1.0039062, 0.17785645, 2.5976562, -3.4238281, -1.6738281, 0.017990112, 0.19702148, -2.3027344, -0.21850586, 1.2050781, -0.43652344, 3.546875, -0.3798828, -0.24377441, -1.7080078, -1.1015625, 0.10467529, -0.7182617, -2.0761719, -0.064819336, -2.6523438, -1.8417969, 2.4902344, 0.91064453, 1.1357422, 0.42651367, 0.047943115, 1.2480469, 0.3190918, 1.6025391, 0.7475586, -0.11590576, 0.52246094, -0.16491699, -0.22741699, -1.2919922, -0.6166992, -0.5932617, 1.3027344, 0.26635742, -2.4785156, 1.0332031, 2.0703125, 1.1328125, -1.5527344, -0.029388428, -0.36547852, -2.6347656, -1.4238281, 2.0253906, 0.29858398, -0.79833984, 0.47924805, -1.7294922, 3.0996094, -2.0078125, 2.1933594, -0.23608398, -0.9536133, 0.04727173, -0.05859375, -2.1171875, -2.2832031, -1.7763672, -1.2851562, -0.8222656, 2.875, -1.4990234, -0.50390625, 0.40722656, 0.011260986, -1.3525391, 1.0996094, 0.07067871, -1.1777344, -1.4345703, -0.53515625, -0.1953125, -0.29785156, 2.1054688, -1.1445312, -1.2402344, 0.62402344, -0.8354492, 1.1025391, 0.079711914, 0.890625, -1.8916016, 0.38793945, -0.8925781, 1.5185547, -0.88964844, 3.0488281, -0.97998047, 1.3671875, -0.027374268, 0.30004883, -1.3496094, -0.76660156, -2.2304688, 2.7617188, -1.8525391, -0.20202637, 2.1074219, -1.4726562, -1.0234375, 0.9477539, 0.6875, -1.4960938, -1.1318359, 1.0292969, 2.0410156, -2.4023438, -2.9375, -0.5444336, 1.8886719, -2.4492188, -0.21105957, 0.96728516, 0.5751953, -0.61328125, 0.22045898, -0.38500977, -1.8447266, 0.9223633, 0.07879639, 0.6123047, -1.3779297, 3.7246094, -3.0527344, -0.58740234, -2.8183594, 0.95166016, 2.6289062, -0.38378906, 0.80859375, 3.4609375, 3.2246094, -0.5097656, 2.4238281, 0.12371826, 1.1914062, 0.9379883, -1.7998047, -0.48120117, -0.28637695, 0.011360168, -0.2109375, -0.4248047, -0.9277344, -0.53759766, 1.9375, 1.7285156, -0.47827148, -1.0800781, 1.6445312, -3.0585938, 1.8662109, 0.06173706, -3.3847656, 1.0576172, -0.11779785, -1.2041016, -1.1689453, 2.4082031, -1.1953125, -0.4296875, -1.4882812, -0.005970001, -3.1699219, -1.4726562, 2.171875, 0.120666504, 0.6542969, -0.7519531, -1.1816406, -0.39526367, 0.8095703, -0.40039062, -0.3696289, -0.3322754, 1.5849609, 1.1347656, 1.6230469, 1.15625, -0.48657227, 0.48999023, -2.8339844, 1.0791016, 0.44262695, -0.3479004, -2.3261719, -0.1706543, -0.71484375, -0.01651001, 1.53125, -2.765625, 2.5, -0.75097656, 0.24865723, -0.99853516, 1.3496094, 1.4619141, 4.953125, 0.4633789, 0.69921875, 1.9755859, 2.0039062, 2.828125, -2.3203125, 1.4638672, 0.40698242, 1.0625, 0.18701172, 0.29101562, -2.0175781, 2.7910156, -0.9741211, 1.6816406, 1.1416016, 1.3710938, -1.7148438, -2.5800781, 0.8027344, 2.1074219, -1.0703125, -0.064086914, -1.5449219, 0.30541992, 1.3164062, -0.15942383, -1.2792969, -1.4130859, 2.7246094, -0.35327148, 1.6308594, 1.5429688, -0.26391602, -3.6289062, -1.0693359, -2.5820312, -4.1523438, -2.1074219, 0.75390625, -1.3564453, 0.78222656, 1.6503906, 0.9711914, -1.6347656, 0.8105469, -0.7651367, 0.24353027, -1.2431641, -0.71191406, -0.74365234, 0.72314453, -1.6181641, 2.4492188, 0.83496094, -0.47851562, -2.0859375, -0.01789856, 3.0898438, -1.9101562, -2.1113281, -0.8745117, -0.30541992, 0.109680176, 2.3828125, 3.2070312, 1.3681641, -0.023880005, -0.7939453, -0.66308594, -2.2441406, 4.5742188, 1.0185547, 1.0527344, -4.25, -0.99853516, -2.4179688, -4.6015625, -2.7792969, -1.5087891, 0.07281494, 1.8310547, -2.1386719, 0.47851562, -0.62939453, 0.8300781, -0.8256836, -0.9555664, 0.84716797, 0.31591797, 0.65625, 0.16589355, 2.5605469, 0.2956543, -1.0400391, -1.9111328, 1.0019531, -0.13562012, -0.33642578, -2.5253906, 3.1054688, -0.95410156, -0.03982544, 2.5410156, -2.0527344, 0.6220703, 1.9287109, -0.12371826, -2.6386719, -0.06573486, -0.9633789, -1.6962891, 0.036254883, -0.5258789, -0.55126953, 0.4050293, 0.6533203, 2.3554688, 3.6484375, 2.9257812, -1.6875, 0.1850586, 0.2709961, -1.4199219, -0.52685547, -1.1103516, 2.5078125, -1.6240234, 1.6816406, 1.9423828, -1.09375, -0.80810547, 0.029800415, -1.0576172, 1.0986328, -0.5942383, 1.3242188, 0.81689453, 0.6743164, -0.7651367, -0.18066406, 0.44482422, 1.8496094, 0.13696289, 1.1816406, 3.0292969, -1.4238281, 1.3115234, 1.4082031, -0.21789551, -2.5175781, -3.2773438, 2.9570312, 2.5683594, -2.2402344, 0.52246094, 1.0175781, -1.0527344, -0.06100464, -2.2207031, -0.05706787, 2.6269531, 0.42529297, -2.7890625, 0.5263672, 1.1308594, -1.1074219, 1.2148438, 1.9414062, 0.6508789, 0.07684326, 0.15283203, 1.1181641, -3.765625, -0.21374512, 0.12347412, 2.4960938, -0.84033203, -0.009986877, -0.036346436, -0.9243164, -0.71777344, 1.2412109, 2.3476562, -3.2695312, 1.5419922, 1.1044922, -1.3896484, 1.3017578, 2.2324219, -2.0878906, 1.3037109, 1.9238281, 1.0976562, -0.93603516, -2.5039062, 0.99902344, 2.1953125, 1.7714844, -1.4960938, 2.9160156, 2.9453125, 1.2246094, 0.2590332, 0.7685547, 0.58935547, 0.5678711, 0.2775879, 2.0527344, 2.5117188, 0.40966797, 1.4384766, 0.59521484, 0.7128906, 2.4765625, -0.68896484, 2.0234375, 1.5546875, -0.8544922, -0.72216797, -1.6005859, -1.1591797, -0.7260742, -1.0693359, -1.4267578, 1.3125, 1.6777344, -1.2998047, 0.3881836, -1.3408203, 0.2467041, -0.13696289, 1.0830078, -2.2109375, -0.5800781, 0.97216797, -0.8569336, 0.59033203, 1.4580078, 1.1298828, -0.5336914, -1.3691406, 2.1054688, -1.0771484, -0.4152832, -1.1679688, -1.8359375, 2.1308594, 4.5703125, 1.5107422, 2.734375, 0.41723633, 0.3557129, 2.1152344, 0.59765625, -0.42651367, -0.921875, 0.85791016, 1.1503906, 1.5292969, -0.82421875, -1.4560547, -0.23071289, 0.2475586, -2.2363281, -2.6953125, 3.1660156, -0.020736694, -0.8354492, -1.0166016, -2.0761719, -0.56933594, -1.8955078, 0.06524658, -0.49291992, -1.1484375, 0.043670654, 1.6943359, -0.020324707, 1.4296875, -0.35668945, 0.15222168, -0.21557617, -2.109375, 0.734375, 1.8359375, -0.10534668, -1.1044922, -0.23693848, -0.15979004, 2.9882812, -2.0527344, 2.0976562, 0.19128418, -0.80078125, -0.65478516, 3.0683594, 3.3144531, 1.4179688, -0.75878906, 0.1550293, 0.92871094, 0.07965088, 2.7363281, -1.8867188, -0.29248047, -0.90185547, 1.0039062, 0.46264648, 0.48266602, -0.9316406, 0.703125, 2.546875, -3.0625, 2.1914062, 0.77441406, -1.2421875, -1.0869141, -1.0107422, -1.9345703, -1.9980469, -0.90966797, 2.2441406, -0.6894531, -0.27026367, 1.4355469, 2.2597656, 0.6621094, -1.3896484, -0.5180664, -0.63378906, -0.32495117, 0.81689453, 0.33813477, 1.6894531, 0.3010254, 0.53564453, -0.13146973, -0.5571289, -0.41088867, -0.22094727, -0.95458984, 2.1582031, -0.56689453, 0.2088623, -1.4023438, -1.5107422, 0.4675293, 3.2421875, -1.5712891, 1.1425781, -0.40820312, -2.4355469, -0.36254883, -0.1439209, -1.1054688, 0.69189453, -0.26123047, -0.6254883, 2.2304688, 1.7607422, -2.2695312, 2.484375, -0.9555664, -0.19812012, 2.1152344, -0.5288086, 0.6665039, 0.30737305, 0.43774414, 1.3671875, 0.6230469, 0.034088135, -0.9399414, 1.2421875, -1.6152344, 0.9321289, -2.0019531, 0.21813965, -1.3808594, 0.70654297, 0.7714844, 0.0041236877, 0.16491699, 1.3232422, -1.6494141, -1.6923828, -0.09692383]}, "B07MNH28TP": {"id": "B07MNH28TP", "original": "Brand: MASTERCANOPY\nName: MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown)\nDescription: \nFeatures: \u2705Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated.\n\u2705Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top.\n\u2705Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric.\n\u2705Rational Design: Two handy shelves for grill accessories, beverages and food. 8' x 5' shade provides enough space to set most kinds of grills. Perfect choice for BBQ.\n\u2705Free Gift: 2 LED Lights.\n", "embedding": [-1.3720703, 2.1542969, 0.5810547, -2.4160156, 1.0195312, 1.5322266, 0.640625, -0.78564453, 1.2333984, 1.7246094, -1.1103516, -1.4882812, -1.6269531, -3.9121094, -0.4248047, 0.7841797, 0.76708984, 2.2167969, 2.5214844, -1.0410156, 1.1933594, 1.1621094, -2.0527344, -0.28930664, 1.7207031, 0.026672363, 3.5898438, -1.8876953, 0.30371094, -0.3383789, 1.7128906, 0.68603516, 0.47558594, 1.9365234, -2.8632812, -0.5151367, -0.5498047, 1.5439453, 0.4165039, -2.2050781, -0.40649414, -3.2148438, 3.0605469, -0.45825195, -0.40405273, 1.4638672, -1.1875, 0.4404297, 1.0419922, -2.7207031, 1.0166016, 2.0664062, 2.8261719, 0.17663574, -0.8803711, -0.9145508, -0.5986328, -1.0507812, 1.3378906, -0.35009766, -0.40673828, -2.8203125, 0.23706055, 2.6425781, -0.92626953, -1.4589844, 0.25268555, -0.41015625, 1.5048828, -0.31884766, 1.3164062, -3.8886719, -1.8740234, -0.39013672, -0.16967773, -1.5439453, -2.3066406, 1.5292969, 1.9638672, -1.09375, -1.6318359, 2.1425781, 2.6855469, -1.1806641, -0.70166016, -0.46142578, -0.65185547, 0.5996094, 1.2050781, -1.7763672, -0.64208984, 0.92333984, -1.2148438, -2.0820312, 0.98535156, -2.4238281, 2.8925781, 0.081604004, -0.70458984, 3.7089844, 0.25097656, 1.0751953, 0.31298828, -0.4362793, -2.4921875, -1.4609375, 2.5449219, -2.6015625, 0.8935547, -0.48461914, -0.41723633, 0.5966797, -0.9814453, -0.6772461, 1.3925781, 0.5463867, -0.8774414, 2.4257812, 0.83251953, 2.3828125, 3, 1.8300781, -0.043884277, -1.7548828, 0.28295898, -1.4023438, 1.0175781, 2.40625, 3.2089844, -0.038635254, -0.18688965, -3.3535156, 1.1123047, 1.9121094, -0.57910156, -1.2382812, -2.2714844, -0.9453125, -4.3125, 3.1171875, -1.5546875, 1.3212891, 1.7177734, -0.46850586, -3.3085938, 0.19970703, -2.578125, 2.6679688, -1.4082031, -3.2167969, 2.0078125, -1.1591797, -0.6503906, -0.52685547, 0.796875, -1.9121094, 0.8588867, -1.5175781, 3.3183594, 0.52001953, 1.953125, -0.7338867, -3.0703125, 0.27856445, 0.51123047, -3.2851562, 0.56591797, 2.5585938, -0.3642578, 0.64746094, 2.65625, -2.1484375, 1.1201172, -0.80078125, 1.5371094, -0.14074707, -2.4414062, 2.1875, 0.65234375, -0.13793945, -1.25, -2.6503906, 1.9404297, 1.3066406, -0.84472656, -0.8105469, -0.63183594, 0.12756348, -0.5205078, -0.44189453, -0.5366211, 0.77734375, -1.3466797, 1.4248047, -2.4550781, -1.5439453, -1.2490234, -0.29833984, -0.43237305, -0.48339844, -0.9277344, -1.1230469, -2.1972656, 0.66748047, -2.2324219, 0.2890625, -1.7685547, 1.3486328, 1.9570312, 1.2861328, 1.4765625, -0.24902344, 2.1757812, 0.6069336, -0.26538086, 1.1123047, -0.22644043, 1.078125, 1.6953125, 3.0039062, -1.1396484, -0.88916016, -2.0390625, 2.9707031, -1.8310547, 1.7255859, 1.4462891, -0.07080078, -2.1386719, -0.91552734, 1.6171875, 0.30664062, 0.19824219, 0.24182129, -0.8618164, 2.5371094, 1.046875, 0.3161621, 0.027954102, -1.2802734, -0.40820312, -0.7001953, -1.1699219, 0.63916016, 0.3503418, -0.5727539, -0.6352539, 1.2119141, -0.7836914, -1.2871094, -1.0996094, 2.21875, 0.9609375, -0.77978516, 0.69873047, 2.15625, -0.08831787, 0.4345703, -3.0859375, -1.96875, -1.1972656, -0.6225586, 1.8574219, -0.35009766, 0.19873047, -1.2294922, 0.13903809, 2.1328125, -2.890625, -1.6376953, 1.8857422, -0.29760742, 0.9980469, -0.87890625, 2.6914062, 0.40576172, -1.2509766, -1.4091797, 1.0322266, -2.2929688, -0.14257812, 1.2802734, 2.5878906, -0.9301758, -2.1191406, -1.4326172, -0.021911621, -1.2001953, -0.16931152, -0.7626953, 2.8027344, 0.8378906, -1.3837891, 3.625, -0.8227539, -0.4584961, 1.453125, -0.61328125, -2.15625, -0.20129395, 1.7929688, 2.1503906, 0.9716797, -0.42382812, -1.1914062, -1.2480469, 0.36328125, -3.1542969, -1.1113281, 1.0087891, 1.0791016, 0.03479004, -1.2402344, -1.4042969, -0.39746094, -1.6357422, 2.9960938, -2.0136719, 0.064575195, 5.0078125, 0.56152344, 1.5683594, 0.34545898, -1.6416016, -0.4284668, 0.5395508, 0.49047852, 0.45703125, 0.65527344, -1.0351562, 1.4736328, -1.9306641, 1.8642578, -2.2773438, -1.3222656, -3.1132812, 0.7714844, -0.13049316, -3.0332031, -0.6064453, 1.1845703, -1.3339844, -3.0117188, -0.066589355, -0.84765625, -4.3359375, -0.86621094, 1.6513672, 0.20727539, 3.6367188, 0.0075645447, 0.7001953, -0.76904297, -3.9902344, -0.36376953, 2.2929688, -0.2454834, 2.8554688, -2.5839844, 1.0742188, -1.6650391, 1.671875, 0.27172852, -0.46313477, -0.6772461, 0.0826416, -1.125, -3.234375, 0.46044922, 0.51904297, 0.5834961, -0.97509766, 0.35766602, -0.8569336, -2.3574219, 1.359375, -0.41259766, 6.2148438, 0.23254395, 0.25024414, -1.8496094, -1.2128906, 1.6396484, 0.21691895, -1.9589844, -0.3034668, -0.5449219, 1.0683594, -1.0527344, -1.0683594, -1.4794922, 0.07196045, 0.49951172, -0.27490234, 0.66845703, 0.5810547, 2.2070312, -1.4609375, -0.5810547, -0.4921875, 2.2617188, 0.13916016, -0.006298065, -3.328125, -0.6484375, -0.91503906, -1.1845703, -0.84765625, 2.1914062, -1.3212891, 0.28100586, 1.6845703, -0.07684326, 4.15625, -0.8105469, -2.6953125, 3.7636719, 3.2441406, 0.23754883, -0.27124023, -0.72021484, -1.7626953, -2.5, -0.46704102, 2.5507812, 1.4375, 1.96875, -1.3232422, -0.4189453, 0.20776367, 0.08282471, -0.6879883, -0.9746094, 0.63134766, 2.734375, -0.17285156, -2.6074219, 0.27294922, 1.1474609, -1.4492188, -0.43847656, 1.4775391, -0.7763672, 1.9394531, 0.54785156, -0.005504608, 1.3671875, -0.08947754, 3.5234375, -1.1445312, 4.828125, 2.2753906, -1.9951172, 2.4433594, -1.1445312, 0.87402344, 0.4050293, 1.2880859, 0.9633789, 0.9790039, 1.3652344, -4.15625, 1.1513672, 1.8154297, 2.6875, -1.5146484, 2.1972656, -1.4091797, -0.3564453, 0.37475586, -1.3554688, 0.9453125, -0.4050293, -0.5722656, 0.05279541, -1.2304688, 1.9716797, 0.41210938, -1.4736328, -0.14770508, -1.8984375, 0.34277344, -1.1054688, -0.85595703, 0.26123047, -3.3554688, -4.4570312, -1.1757812, 2.5019531, 1.2607422, -1.8847656, -0.7993164, 2.7558594, 2.5214844, -0.25463867, -0.20349121, 1.1044922, -2.0703125, 0.90527344, -0.2927246, -1.2246094, 2.0820312, -3.0371094, 2.78125, 1.7128906, -0.98876953, -1.6591797, -0.45874023, -1.921875, 0.19506836, 1.6757812, 1.71875, 1.3466797, -3.3183594, -0.052703857, -2.5097656, -0.4362793, 3.0859375, -2.2695312, -0.6699219, 0.62158203, 1.1025391, 1.09375, -0.41723633, 3.2929688, 0.9291992, -2.6835938, 2.0292969, -0.90966797, -0.35546875, -2.1054688, -3.6914062, 0.054260254, -3.1230469, -1.4443359, 1.8769531, -0.14501953, 0.28833008, 2.03125, -1.6835938, -1.8789062, -0.6425781, -1.46875, -0.042907715, -2.7089844, -0.11804199, -0.1463623, -1.390625, -2.5683594, -1.9658203, -0.95751953, -0.19177246, 1.2128906, 2.109375, 0.78125, 1.7558594, -0.88720703, 0.24841309, 0.30297852, 1.6933594, -0.29833984, -0.34033203, 0.5546875, -0.09674072, 1.1875, 1.6464844, -0.07861328, 0.45898438, -0.35620117, 0.39697266, -1.0859375, -2.4707031, 0.49072266, 1.6259766, -0.8833008, -2.1816406, -0.76416016, -0.4741211, 0.84228516, -0.64208984, -2.5292969, 2.3515625, -2.375, 0.6748047, 0.09460449, 3.3378906, -1.3701172, -1.5869141, -4.390625, -1.7207031, -0.11999512, -1.5371094, -2.1953125, -1.4335938, -0.24365234, 0.9667969, -1.1523438, -1.6640625, -1.078125, -1.3359375, 0.44262695, -1.4199219, 1.1601562, 1.2148438, 2.4472656, 3.9179688, -2.2246094, -1.5107422, 4.3046875, -0.51220703, -0.24365234, 2.9042969, -0.25341797, 0.10656738, 0.89404297, 1.7216797, -4.0820312, -3.2167969, 0.9765625, -0.06378174, -2.7402344, -2.5019531, 2.6660156, 1.4638672, -0.39038086, 0.9765625, 0.29370117, 2.9726562, -4.1992188, -0.86083984, 0.14379883, 1.8720703, -2.0703125, 0.7397461, 1.8740234, -0.08380127, 1.5146484, 1.4814453, -0.09869385, -1.6298828, 1.0068359, 0.27563477, 3.1054688, -2.6386719, -1.3984375, -0.11895752, -1.7080078, 0.38476562, -1.6875, 0.7416992, 2.6660156, 0.5620117, 0.8676758, 1.0839844, -0.33520508, 2.7363281, 0.55566406, -1.0751953, 1.1103516, -0.38598633, -2.5253906, 2.1386719, -1.2841797, -3.4042969, 0.03765869, 0.088134766, -1.8925781, 1.8544922, 0.41748047, -1.7353516, 2.0996094, -0.9116211, 0.44262695, 0.036621094, -0.515625, 0.59472656, 0.58740234, -0.19299316, -1.3134766, 0.15368652, 3.6875, -0.059509277, -0.54003906, 2.5039062, 1.0439453, 0.22045898, -1.4365234, -0.06488037, -2.4980469, -2.6191406, 3.3027344, 2.1015625, 1.9736328, 1.703125, 1.3916016, -3.5117188, -0.8618164, -2.4628906, 3.3574219, -2.5117188, -0.65478516, 1.2568359, -0.83935547, -0.46313477, -2.8261719, 3.5136719, -0.56103516, 0.7348633, 1.0878906, 1.2910156, -0.25195312, 0.12512207, -2.1132812, -4.3359375, -2.40625, -1.4677734, 0.42773438, -0.9042969, 1.3720703, -2.125, -1.9951172, 1.5292969, 0.7192383, 1.8232422, 0.025665283, -0.9482422, 0.8955078, -2.3730469, -1.8466797, -0.86865234, -1.2509766, -1.6181641, 1.8300781, -1.5810547, -2.9902344, -1.8779297, -0.23840332, -2.3574219, 0.4099121, 1.5488281, -0.5083008, 1.3662109, 2.7519531, -0.68115234, -0.71875, 0.8774414, 0.9951172, 1.1757812, 1.9521484, -0.3984375, 1.8701172, -1.8789062, -1.6015625, -0.34765625, -2.5742188, -1.2246094, 0.22839355, -0.2939453, -0.010055542, 2.5761719, 0.3630371, -0.5229492, 2.0234375, 0.21472168, 2.8046875, 1.6054688, -1.5585938, 1.6162109, -2.0195312, -2.7539062, -1.0253906, -2.4589844, -1.6669922, -0.56640625, 2.2304688, -1.3359375, 2.1757812, 0.86083984, 0.84765625, 2.1894531, -2.5488281, 0.6220703, -0.35791016, 1.0498047, -0.22399902, -1.4404297, -1.5722656, -4.4492188, -0.22937012, 0.8364258, 0.45483398, 0.20422363, -2.0664062, -1.4697266, -0.91748047, 0.45629883, 0.12719727, 1.1953125, 1.2734375, -1.7734375, 2.6933594, -0.29003906, 0.20654297, -0.48461914, -0.46240234, 1.9990234, 0.14648438, 2.0957031, -1.1865234, -0.32592773, 2.2871094, -2.5390625, -0.4165039, -0.07659912, -3.4785156, 1.4404297, -1.6865234, -0.21813965, -0.12072754, -0.8105469, -2.796875, 1.3671875, 0.61865234, -0.09460449, 0.1776123, 3.59375, -3.1230469, 2.5234375, 1.1953125, 1.6503906, -0.14379883, 0.74902344, 0.051940918, -1.3837891, 3.0683594, -1.3964844, 0.5546875, 0.23278809, 0.453125, 0.45922852, 1.4570312, 1.1816406, 0.6166992, 3.1914062, 0.15710449, 2.1523438, 1.6210938, 0.7939453, 1.8730469, 1.2988281, 0.86572266, -2.0175781, 0.90966797, 2.9433594, 4.1601562, -0.52978516, 1.5341797, 0.21313477, 1.0537109, -0.6879883, -0.41064453, -1.2021484, 1.0253906, -2.6347656, 1.6601562, 0.008094788, 0.52001953, -0.38916016, -0.9746094, -1.6904297, -1.3310547, -3.9492188, -0.34887695, 1.9853516, 0.42700195, -0.3244629, -0.8881836, -0.5361328, -0.10253906, -2.578125, 0.90185547, -0.11254883, -0.20471191, -2.0390625, 2.0703125, 2.9042969, 0.44311523, 0.9692383, 2.5878906, 0.59033203, 2.0019531, 1.7294922, 0.6850586, 0.39282227, -0.7817383, 0.7006836, -0.06512451, -1.0234375, -1.7294922, 0.44384766, 0.6621094, -1.6035156, -0.61035156, 0.81591797, -0.6040039, 2.9003906, 0.8417969, -0.11328125, -0.14331055, 2.1855469, -1.7802734, -0.2866211, -1.6035156, -2.8574219, 0.053009033, 0.79833984, 2.1914062, 3.6816406, 0.8833008, -0.8955078, 2.3320312, 1.4375, -0.053100586, -0.41503906, 0.9472656, -0.58203125, 3.09375, -0.640625, 1.5791016, 1.7109375, 1.4228516, -0.6972656, 1.5175781, -0.22912598, -0.4987793, 1.9833984, 0.6542969, -0.09069824, 0.39697266, -1.3974609, -1.3515625, -3.0253906, -0.5942383, -0.28930664, -1.0742188, -2.3085938, -2.359375, -0.3449707, 2.0332031, 2.0371094, 1.3359375, 0.06021118, -0.20715332, 0.7133789, 0.30639648, 0.10632324, 0.93652344, 2.1972656, 1.6806641, -1.0126953, 1.046875, 0.45263672, 1.65625, 1.6865234, -1.2558594, 0.16552734, 2.4980469, 1.4189453, 2.0234375, 0.31152344, -1.0722656, -1.0986328, 0.7495117, 1.1621094, 0.54345703, 1.8115234, -0.25512695, -1.5585938, -0.2763672, -1.7431641, 1.5673828, -1.0742188, -1.5751953, 0.6713867, 4.171875, 1.0546875, 1.0048828, -1.9716797, -2.7363281, 0.62158203, -0.46484375, 2.8085938, -0.69628906, -2.3339844, -1.8251953, -0.17736816, 3.3457031, -0.02760315, 0.3244629, 0.09063721, -2.0566406, 1.2949219, -0.99365234, 1.4960938, 2.453125, -2.4765625, 1.4443359, 2.2480469, 2.2480469, -0.94091797, 2.0039062, 0.97314453, 0.81103516, -2.453125, 1.9980469, -1.7314453, 1.5224609, 0.44677734, 1.6416016, -0.0970459, -1.0615234, 0.23962402, -1.6484375, -1.4453125]}, "B01N8WLXO6": {"id": "B01N8WLXO6", "original": "Brand: Napoleon\nName: Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 304 stainless steel construction and chrome accents\nHeavy duty stainless steel \"Wave\" grill grates and dual level sear plates with internal halogen lights\n(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker\n18,000 BTU rear infrared burner and rotisserie kit included\n", "embedding": [-1.5986328, -0.53564453, 3.2597656, 1.1494141, 0.6201172, -0.13427734, -0.17480469, -1.6181641, -0.90625, 0.3232422, 2.6992188, -0.53564453, -0.6357422, -0.7158203, 0.9453125, -0.4892578, 1.9238281, 0.62109375, 0.7060547, -0.4255371, 0.7426758, 1.4853516, 1.8369141, -0.3671875, -1.1005859, 0.58740234, 4.25, -2.1113281, -0.7714844, -2.7011719, 0.9560547, -0.3930664, 0.101989746, 0.0619812, -3.296875, -1.5107422, -1.7929688, 2.3359375, -3.1308594, 1.1357422, 0.3618164, -0.9604492, 0.07763672, 0.2631836, -1.5205078, -0.12683105, -0.3828125, 2.4980469, -3.1074219, -1.1425781, 0.9580078, 0.24658203, -0.80908203, -0.23449707, -1.3095703, 1.4707031, 2.1308594, -0.56933594, -0.15600586, 0.13635254, 0.9873047, 0.8105469, -1.3193359, -1.2558594, -2.125, 1.1972656, 0.98046875, 0.328125, 0.68603516, 0.1665039, 1.8828125, 1.3466797, -0.25268555, 0.7089844, -0.9199219, -2.46875, -2.4472656, 1.1953125, 1.1494141, -0.50439453, -0.1706543, 1.4628906, 2.3222656, -2.3867188, 0.97509766, 1.0273438, -1.9248047, -1.1777344, 0.53466797, 0.38842773, -0.44506836, 0.84716797, -2.0410156, -2.7402344, 3.0019531, -0.57666016, -0.6928711, 1.7246094, -0.28027344, 1.5927734, 0.52978516, -0.8569336, -0.5073242, -2.1074219, -2.2363281, -1.9804688, 2.4453125, 0.40893555, -3.234375, -0.70947266, -1.9042969, -1.3457031, 2.5214844, 0.7709961, 1.0576172, 1.1962891, 2.1308594, 3.0566406, 0.25463867, -0.15600586, 1.4257812, -2.0097656, 0.64746094, 0.61816406, -0.5917969, -0.5209961, -3.2792969, 1.9921875, 3.2714844, -0.1928711, 0.34423828, -0.46069336, 3.59375, 1.3974609, -1.8339844, -1.5957031, -0.54248047, -2.0019531, -4.5351562, 0.91845703, -0.06298828, 0.28588867, 0.32373047, 0.14770508, -2.9550781, -0.0056266785, -0.103637695, 0.43041992, -0.65966797, -0.52783203, 1.9052734, -1.9863281, 1.5429688, -3.9511719, 0.40673828, -0.6958008, -1.3798828, -1.9658203, 2.7089844, 1.328125, 2.4570312, -1.5644531, -2.9921875, 1.8759766, -0.20581055, -2.9960938, -0.82714844, 1.7744141, 0.7138672, 2.4765625, -0.073913574, -2.9882812, -0.40454102, 0.41455078, 0.11206055, -0.88720703, -0.33398438, 1.8291016, 0.55371094, -1.6601562, -2.0507812, -1.5527344, 0.47143555, -0.12359619, -0.24060059, -0.5341797, 1.0166016, 0.92822266, 1.5585938, -1.703125, 0.9941406, -0.8232422, -1.0820312, 0.96484375, -1.0478516, -2.2304688, -0.21166992, -1.0820312, 1.8818359, -1.5283203, -1.2304688, 0.28466797, 0.32226562, 0.2849121, -2.4824219, -3.703125, -2.4414062, -1.3105469, 0.103271484, 2.7207031, 2.84375, -1.3427734, 0.96240234, -1.265625, 1.2910156, -1.6435547, 2.375, -0.75341797, -0.1373291, 3.4140625, 0.67626953, 0.28637695, -0.07385254, 2.5800781, -0.11022949, 3.5234375, 0.027816772, 2.4316406, -2.9550781, -1.4189453, 3.265625, 0.6640625, -0.7861328, 0.41918945, 0.9580078, 2.4824219, 0.29125977, -1.3710938, -1.0947266, 0.8876953, -1.2744141, -2.7011719, -0.85791016, -1.0947266, 0.18188477, 0.52978516, -2.5, 1.1044922, 2.6621094, 2.78125, -1.2949219, -0.43701172, 1.3232422, 0.9604492, -0.60009766, 1.5185547, -0.08648682, 2.5605469, -1.4316406, -2.203125, 1.3417969, 1.3574219, -0.83740234, 0.6567383, 0.40820312, -1.0537109, 3.2519531, 0.27978516, -1.3486328, -1.3427734, -0.97753906, -0.28076172, 2.5761719, 1.0917969, 0.69140625, -0.14660645, -2.1933594, 3.2636719, -0.43896484, 2.5351562, 0.2524414, -0.13757324, 2.8242188, -1.9130859, -1.7744141, 1.0410156, 0.057434082, -0.12188721, -0.97216797, 1.2529297, 6.1132812, -1.7519531, -2.4238281, 2.2792969, -0.10748291, 1.0908203, 2.1757812, -0.8129883, -0.7763672, -2.3554688, 3.1289062, 0.93408203, 0.9975586, 1.3759766, 0.26464844, -0.9765625, -0.19213867, -1.1162109, -0.23486328, -2.0078125, -0.051513672, -0.15344238, -1.9052734, 1.4892578, -0.0803833, -0.64697266, 0.60498047, -3.1308594, 1.8701172, 0.24694824, 0.51220703, 1.7246094, -1.1064453, -0.24890137, -0.98583984, 0.07519531, -0.38671875, 1.6455078, -0.26245117, -1.1015625, 0.04852295, -0.8623047, 0.63623047, -2.5546875, -1.6904297, 1.140625, -2.4707031, -0.8076172, -1.1308594, -2.5039062, -2.4746094, 1.7929688, -2.4003906, 0.06185913, -1.7080078, -3.6386719, -2.1503906, -1.0439453, -0.66748047, 2.0078125, 1.2255859, 0.7963867, 0.7807617, -3.4453125, -1.34375, -0.6386719, -2.4453125, 1.1171875, -1.5097656, 0.16381836, -0.56689453, -0.42260742, -0.35913086, -0.2722168, 0.41503906, -2.3789062, -0.36206055, -2.2890625, -0.20056152, -2.9199219, 2.1855469, -0.3149414, 1.8339844, -2.6230469, -1.2773438, -1.3769531, -1.4335938, 2.7597656, 0.3317871, 1.4306641, 0.8901367, -0.91308594, 2.4785156, -1.8173828, -1.5878906, -1.3847656, 0.011680603, -2.9335938, -2.078125, -3.0058594, -0.29345703, 0.08782959, -0.5527344, -1.7050781, 0.8442383, -2.9277344, 2.8242188, -1.5400391, -1.1308594, -0.71777344, -0.40820312, -0.08795166, 0.15881348, -2.109375, -0.78808594, -1.2109375, -1.4541016, 0.2434082, 1.0703125, 1.4443359, 2.8496094, 0.859375, -0.18286133, -0.33422852, 0.17150879, -5.1523438, 0.98876953, 0.5932617, -2.40625, 2.09375, -1.4921875, -0.28344727, -2.3945312, 0.64208984, 1.9824219, 2.4394531, 2.3828125, 1.5810547, 0.2734375, 2.0273438, 0.74365234, -0.20410156, -0.66259766, 0.3857422, 2.5644531, -0.8105469, -0.6484375, -1.0751953, 1.8193359, -0.8383789, -2.2773438, 2.2382812, 1.1835938, 3.1289062, 1.4638672, -0.49658203, 1.0869141, -1.0400391, 1.4082031, 0.044311523, 0.017562866, -1.0683594, -1.2802734, 1.7275391, 1.4716797, 1.0625, 2.8027344, -0.3876953, 1.6074219, -1.3300781, 1.2226562, -0.2109375, 0.6508789, 0.04360962, 2.9511719, -0.61865234, 2.6757812, -0.31079102, 1.1162109, 1.0976562, 2.2089844, 1.2558594, -1.5732422, 0.65234375, 1.5566406, 0.4345703, 0.15356445, -0.29467773, 0.87646484, 1.1308594, 1.0986328, 1.671875, -0.1204834, 0.93359375, -0.4194336, 0.60253906, -1.7753906, -2.3886719, 1.8027344, -0.21899414, -2.6640625, -0.08294678, 2.6523438, 0.51220703, -0.5073242, 1.2666016, 0.21557617, -0.9189453, 1.3222656, -1.2480469, 1.0224609, 1.3984375, -0.30419922, 0.66064453, 0.7680664, -1.1074219, 0.87109375, -1.7226562, 1.3173828, -0.98876953, -0.10223389, 2.4648438, 1.2675781, -3.6757812, -0.48510742, -2.7363281, -0.0028018951, -1.4414062, -1.4638672, -2.4804688, 2.4785156, 1.2402344, 0.8310547, -1.4785156, 2.6503906, -0.8852539, -1.8671875, 1.6210938, -2.9335938, 0.16589355, -3.78125, -3.640625, 1.8642578, -1.046875, -0.32910156, 0.13195801, -0.46484375, -0.86376953, 2.34375, -0.35327148, -2.4785156, -1.5244141, 0.25756836, 1.4052734, 0.8203125, -1.7666016, 1.5820312, -0.6279297, -2.5800781, -1.7636719, -1.4082031, 0.62402344, 0.76171875, 2.4394531, -2.6855469, 0.23620605, -1.1552734, 1.6044922, 0.1821289, -1.0097656, 1.2275391, -1.4628906, -0.11206055, -3.7089844, 1.6298828, 1.9726562, -0.2397461, 0.73339844, -0.2631836, 1.1064453, -0.33764648, 1.4951172, -0.15844727, 3.5214844, -0.13195801, -2.0097656, -3.4003906, 0.03390503, 0.8486328, -2.0898438, 0.38964844, -1.5146484, -2.0234375, 0.38989258, 1.2998047, 1.1552734, 1.7294922, 0.5839844, -2.7148438, -1.9746094, 1.5322266, -2.4804688, -0.24536133, -0.75097656, -0.6904297, -0.24609375, 0.26660156, -1.0332031, -0.96533203, -3.421875, -2.0371094, -2.6855469, 2.8085938, 3.3144531, 2.3476562, 0.46557617, -0.71191406, -0.92089844, -0.40600586, 1.3115234, -0.58496094, 2.3613281, -0.7084961, -0.7080078, 1.2363281, 1.0761719, -1.0136719, -0.7470703, 2.4335938, -1.0214844, -0.5595703, -1.8789062, -1.2333984, -2.8730469, -1.3994141, 0.67822266, -0.14746094, 2.6308594, -0.66259766, -1.3769531, -1.7617188, 0.50683594, 0.26000977, 0.5600586, -0.6425781, 1.1777344, 1.1015625, 2.5039062, 0.2479248, 0.6020508, 0.75390625, -0.08514404, 2.75, -0.029190063, 1.3896484, 0.7338867, -0.65966797, -0.9326172, -1.7109375, 2.3261719, 2.4042969, 0.85791016, 4.7578125, 1.2099609, -3.5332031, 2.1699219, -0.15185547, -2.6308594, 0.79345703, 1.3125, 0.51660156, -0.28076172, 1.1748047, -4.1601562, -0.91845703, 2.0488281, -1.5019531, 0.50341797, 1.0332031, -1.1777344, -0.5776367, -1.5361328, -1.1796875, -0.59375, 0.20214844, -1.2773438, 0.25976562, -0.09289551, -1.7021484, 0.32080078, 1.2548828, -0.31567383, -0.9399414, 4.5820312, 0.296875, 0.56347656, -0.93115234, 0.44360352, 0.6621094, 0.6743164, 1.7099609, 0.9819336, 1.9277344, -0.5214844, 1.0986328, -2.5546875, -0.39453125, -1.0097656, 3.8046875, -1.8847656, -2.5527344, 0.13354492, -0.6689453, 1.3798828, -1.6875, -0.0046424866, -0.8232422, 2.2285156, 1.7949219, -0.07409668, -0.3947754, -0.55859375, -1.7753906, -2.125, -2.7109375, 1.421875, 1.7607422, 0.88183594, 0.77685547, -2.171875, 0.8515625, 0.31054688, 0.15588379, -3.1171875, 0.004875183, -1.171875, -0.39746094, -0.5673828, 1.328125, -1.5244141, -0.14440918, 1.2324219, -0.9663086, 2.4414062, -3.6113281, -2.7890625, 1.4501953, -1.2900391, 0.54296875, 2.4101562, -0.51220703, -2.4921875, 1.5048828, -0.57128906, -1.0605469, 2.0351562, -1.9208984, -1.0107422, 2.9570312, -0.4206543, 1.7724609, -0.068481445, -1.3857422, 1.0009766, -0.14038086, 0.6958008, 0.105895996, 0.0024585724, 0.35375977, -0.3840332, -1.7080078, -1.6582031, 0.58740234, -1.5253906, 3.2929688, 0.5620117, -1.3505859, -2.5507812, -1.0097656, -1.7832031, 0.099731445, -1.8935547, -0.24816895, -2.34375, 1.5068359, -0.15527344, 0.57910156, -0.14123535, 2.1367188, 0.9453125, -1.3291016, 0.96533203, -1.9726562, 2.3300781, 2.2089844, -1.9296875, -0.9946289, -2.359375, -0.053619385, 2.4003906, 0.86083984, -0.75, -1.0117188, -0.49072266, -0.2043457, -0.055755615, 0.6713867, 1.2724609, -1.3066406, -1.3056641, 0.67089844, 2.15625, 0.1965332, 1.1015625, 0.25317383, 0.2770996, -0.4248047, 4.2421875, 0.91845703, -1.8652344, 1.921875, -2.4101562, 1.9980469, 1.6875, -0.9746094, -0.16967773, -0.9003906, -1.1572266, -1.0302734, -0.5522461, -3.7695312, 0.5488281, -0.5205078, 0.5053711, 0.32421875, 1.8251953, 1.4667969, 2.3398438, 0.8691406, 1.3085938, 0.8457031, 1.703125, 1.1269531, 1.3574219, 1.7890625, -1.5673828, 1.2392578, 1.0878906, 0.00023686886, -0.27514648, 2.5175781, 1.5058594, 2.3808594, 0.97216797, 2.359375, 4.9375, 2.1210938, 1.2001953, 0.6455078, 1.1582031, 2.0839844, -0.25708008, -0.041809082, 1.3691406, 1.7773438, -0.68652344, 0.21594238, 2.4980469, -1.5048828, -1.6123047, -1.4443359, 0.21557617, 0.017028809, -0.25634766, 1.5449219, 0.5522461, 0.97753906, -2.6445312, -0.063964844, -2.4804688, 1.2792969, 0.25512695, -1.8261719, 1.9189453, 0.3112793, 0.98339844, 0.017288208, -1.5917969, 1.8759766, -5.0078125, 0.19067383, -0.3137207, -0.41430664, 0.68310547, 0.3408203, 0.3918457, 0.074645996, 1.1494141, 0.2722168, 3.3652344, 1.78125, 2.2011719, -3, -0.094055176, 0.6245117, 3.625, -1.9951172, 1.1318359, 3.4453125, -0.011932373, -3.3945312, -5.828125, 2.5175781, -0.34179688, 1.6689453, 2.8925781, -1.4667969, 3.1445312, -0.4958496, 0.6088867, -2.4453125, 1.8994141, 0.48461914, -1.9492188, -1.4628906, 1.3154297, -0.23693848, 1.4326172, 0.38842773, -1.4169922, 2.3867188, -1.7128906, 3.3046875, 0.2631836, 2.5800781, 0.6230469, -0.4326172, -0.121520996, 1.9941406, 1.7421875, -0.9086914, -0.3618164, 1.4726562, 1.5898438, -0.005836487, 0.61083984, -0.15808105, -1.2548828, -0.45361328, -0.7709961, -0.25708008, -0.19567871, 0.10748291, -0.47143555, 1.5820312, -3.1953125, -1.4736328, 2.9511719, 1.8251953, -0.79052734, -0.4958496, 2.3925781, -2.1113281, 1.328125, -0.48535156, -0.8261719, -0.89160156, -0.27368164, 1.9863281, 1.8935547, -1.6289062, -1.0351562, 1.1904297, 1.203125, -0.49291992, 0.7216797, -0.06311035, -1.9443359, -0.051452637, 2.7675781, -1.2177734, -1.7197266, 1.9980469, -0.1328125, -0.023590088, 1.8769531, -0.64453125, 0.69628906, -2.0449219, -0.6225586, -0.6904297, -0.76220703, -1.1533203, 0.89453125, 3.1894531, 0.59716797, 2.0800781, -3.1074219, -3.7070312, -1.4863281, -2.59375, 2.0214844, -1.4169922, -0.40942383, 0.6064453, 0.98583984, 3.6308594, -1.8125, -2.59375, -0.23425293, -0.2944336, 0.61621094, 0.10076904, 2.7089844, 1.5322266, 1.3564453, 0.7270508, -0.50390625, 0.88378906, -0.57666016, 1.3925781, 2.9589844, -0.22265625, -1.4052734, 1.9580078, -1.9492188, 0.15563965, 0.38989258, -0.09008789, 0.3486328, 0.4873047, -0.6665039, 0.20410156, -2.2714844]}, "B08SVXLXZT": {"id": "B08SVXLXZT", "original": "Brand: SXTBWFY\nName: SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men\nDescription: Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
Grilling in one of life\u2019s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone's inner grill master.
Enjoy every BBQ party.

Product details:
Tools Material: Food-grade Stainless Steel
Storage Case Material: Oxford Cloth
Package size\uff1a15.8 \u00d7 5 \u00d7 2 inches
Product weight: 2.2 pounds
Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

Warm Notice:
Store your bbq tools properly and keep sharp or metal tools away from children.
In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

\nFeatures: \ud83c\udf56\u3010Valuable 23 Barbecue Accessories Set\u3011This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue.\n\ud83c\udf56\u3010Premium Stainless Steel Material\u3011Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob.\n\ud83c\udf56\u3010Intimate Design\u3011All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill.\n\ud83c\udf56\u3010Portable and Versatile\u3011The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father\u2019s day grilling gifts or special gift for your family and friend.\n\ud83c\udf56\u3010Hassle-free Customer Service\u3011We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!\n", "embedding": [-1.4580078, 3.4394531, 1.3144531, -0.56152344, 0.38012695, 0.21154785, 1.3261719, -1.0546875, 0.2783203, 1.2871094, -0.29052734, 0.27319336, 0.9550781, -3.0605469, -1.4130859, 0.7421875, 0.5292969, 0.23278809, 1.5458984, 1.7617188, 1.0185547, 1.1816406, 1.4960938, 0.57958984, 2.0605469, 0.12060547, 4.0117188, -2.7441406, 1.4316406, -0.6176758, 1.7441406, 0.45166016, 0.40942383, 1.5253906, -3.4453125, 0.6738281, 0.64160156, 1.6904297, -0.002166748, 0.30078125, -0.6533203, -1.296875, 2.515625, 1.234375, -3.7792969, 0.27954102, -0.7368164, 1.2568359, -0.57714844, -4.0546875, 0.7451172, 1.7666016, -0.32836914, 1.2177734, -2.7929688, 0.45385742, -1.5380859, -3.6894531, 1.78125, -1.1132812, 2.90625, -1.1083984, -0.5864258, -0.027786255, 0.62158203, -0.6142578, 0.64941406, -0.45947266, 0.078063965, -0.21484375, -0.14831543, -0.32250977, -0.25317383, 0.11541748, -0.51464844, -0.20495605, -2.3769531, 2.2324219, 0.37182617, 0.95166016, -2.7714844, 3.5332031, -0.41381836, -3.2363281, 0.27563477, -1.1708984, -0.88378906, -0.29907227, 1.7998047, 0.009284973, -1.1083984, 2.1621094, -1.9804688, -5.5546875, 1.8359375, -1.7167969, 1.1816406, -2.0234375, 0.2244873, 1.7919922, -0.8232422, -0.017837524, -0.1361084, 1.2539062, -1.4707031, -0.08428955, 1.3212891, 0.58935547, -1.3193359, -0.4350586, -1.9853516, 2.140625, -0.45703125, -0.047943115, -0.9013672, -0.2364502, -0.85498047, 0.70703125, 1.1220703, 2.421875, 2.8867188, 1.4892578, -0.0692749, -1.8476562, -0.71435547, 1.3964844, -0.25830078, 3.3222656, 3.1640625, 0.30273438, -1.3408203, -1.6035156, -0.4790039, -2.1796875, -0.43798828, -2.8398438, -1.6044922, -0.55908203, -2.3886719, 1.9101562, -0.78222656, 1.7148438, 2.9648438, -1.1640625, -3.046875, 0.54052734, 0.048339844, 0.6074219, -0.7211914, -1.4931641, 0.1104126, -1.3408203, 0.11352539, -0.97216797, 3.2988281, 0.18444824, 1.4169922, 0.21276855, 2.0820312, 0.7783203, 0.921875, -3.609375, -0.00078868866, 1.4736328, 0.5649414, -3.6074219, -0.43115234, 2.9238281, -0.45996094, 1.8554688, 0.65478516, -1.4863281, 0.6430664, -0.6113281, 0.23608398, -0.98095703, -0.30419922, 2.6914062, 0.09350586, -0.3671875, 2.3652344, -2.8847656, 0.8364258, 2.4667969, 0.00843811, -2.015625, 1.7861328, 0.16479492, 0.86035156, -1.2841797, 0.52197266, 0.80908203, -0.24829102, 1.1171875, 2.0058594, -1.6191406, -0.08404541, -1.5712891, -0.7636719, 0.30786133, 0.32543945, -1.9951172, 0.6694336, 0.8129883, -1.8876953, -2.1992188, -0.085876465, -0.24719238, 2.6738281, 1.9472656, 0.7885742, -1.5341797, 1.8105469, 0.10095215, 0.7246094, -1.6464844, 0.48339844, -0.3305664, 2.5546875, 1.1162109, -1.46875, -0.9736328, -1.6904297, 3.0292969, 0.58496094, 0.29907227, -0.9501953, 0.9477539, -0.5698242, -0.21154785, 0.51708984, 0.49389648, 0.2854004, 0.12402344, -1.140625, 1.6376953, 0.32861328, -2.7851562, -1.3105469, 0.049102783, 0.44555664, -0.93408203, -1.1240234, -0.93896484, -0.53271484, -0.9042969, -1.3603516, 2.109375, 0.3527832, -2.7246094, -0.7011719, 1.5732422, 2.5449219, 1.1660156, 0.2121582, 1.2128906, -0.578125, -0.073913574, -3.7285156, -0.45214844, 0.6357422, -0.15539551, -0.33251953, 1.2568359, 0.99072266, -1.1308594, 3.5097656, -0.9121094, -1.6347656, -0.48095703, 0.56396484, -0.083862305, 0.52246094, -1.2802734, 2.2792969, 1.9755859, -1.2099609, 0.81884766, 1.1191406, -0.9394531, -1.2177734, -0.5722656, 2.328125, -2.0957031, 0.43359375, -2.078125, -1.2431641, -2.4941406, 1.4140625, 1.6630859, 4.765625, 0.34399414, -1.7363281, 4.796875, -2.4726562, 0.66259766, 0.88720703, 1.0947266, 0.29760742, 0.17321777, 1.0800781, 1.9902344, 1.1904297, 1.2373047, -1.359375, 0.55859375, 1.5605469, -3.4882812, -0.140625, 1.3466797, -2.5078125, -0.4958496, 0.8442383, 0.25732422, -0.7246094, -1.9589844, -1.7158203, -0.9873047, 1.4960938, 0.88671875, 1.2412109, 2.0351562, -0.8491211, -1.8017578, -0.6611328, 1.4033203, -1.1513672, 0.48413086, 1.0410156, -1.4394531, 1.6845703, 0.59472656, 0.7915039, -0.9375, -0.83203125, -1.8544922, -2.0683594, -1.5410156, 1.0351562, -0.484375, 0.14147949, -0.7524414, -3.9414062, -0.7036133, -1.7148438, -3.2578125, -2.1679688, 0.6118164, -0.6010742, -0.2763672, -1.2490234, 0.9526367, 0.5776367, -3.109375, 0.11999512, 0.15197754, 1.2695312, -0.09185791, -2.6933594, 1.171875, -1.6416016, 0.27612305, -0.734375, 1.6503906, 0.24938965, -0.9267578, 1.6376953, -2.3339844, 0.51708984, -0.2364502, -0.39404297, -0.09552002, 0.7685547, -1.4589844, -1.1738281, -1.0917969, -0.640625, 2.8378906, -1.4462891, 2.3691406, 0.1739502, -1.2636719, -0.61083984, 0.13671875, -0.8300781, -1.3310547, 1.1826172, -1.5126953, -0.009971619, -1.6171875, 1.390625, -1.9433594, 0.05947876, -0.19665527, 3.7890625, -0.4934082, 0.89208984, -1.3271484, -1.2949219, 0.34301758, 0.19543457, 0.47631836, -1.4257812, -0.6425781, -0.8901367, -1.8710938, -0.6855469, -0.6386719, 2.4121094, -1.0078125, -1.5576172, 0.703125, 0.2541504, -0.087402344, 1.3300781, -1.7226562, 1.4814453, 0.9291992, -2.5820312, -0.56347656, 0.6196289, -0.9658203, -2.1601562, 0.23620605, 3.8105469, 0.44677734, 1.4404297, 0.015449524, 0.103271484, -0.040252686, 1.8261719, -0.54589844, -0.04663086, 2.125, 2.5566406, -1.1572266, -2.4238281, 1.2607422, 0.49658203, -1.3525391, 2.0585938, 0.054229736, 1.6855469, 1.6455078, 1.9648438, -0.085632324, 1.5742188, -1.5771484, 1.4560547, 0.78564453, -0.40649414, -2.8828125, 0.28149414, -0.75, -1.421875, 0.84228516, 1.3398438, 0.41381836, 3.2265625, 2.1796875, -0.68115234, -1.7646484, 0.89501953, 1.9941406, 0.37280273, 0.057128906, 0.8925781, -1.2900391, -1.7949219, -0.6567383, -0.9868164, 1.8300781, -2.7304688, -0.09851074, 1.6005859, -0.95947266, 1.1474609, 0.25756836, -0.765625, -1.0478516, -3.1953125, 0.7080078, -1.8339844, -2.4921875, 0.6333008, -1.0527344, -1.4306641, -1.1796875, 1.1884766, -0.6191406, 0.21960449, -1.1826172, 2.203125, -0.90234375, -0.68115234, -1.3242188, 0.5239258, -1.5136719, 2.5449219, 0.4790039, -1.9345703, 1.8730469, -3.953125, 1.1796875, 0.97265625, -1.9248047, -0.3942871, -0.018234253, -1.1767578, 0.79052734, -0.16967773, -0.49072266, 1.0029297, -1.2148438, 0.5097656, -1.7871094, 1.1728516, -0.3022461, -2.9257812, 0.30859375, 0.30786133, 1.9082031, 1.6132812, -0.39135742, 2.4433594, 0.9536133, -2.1699219, 1.0175781, -4.1992188, -1.4628906, -1.3359375, -3.7070312, 0.5341797, 0.30493164, 2.5351562, 1.4697266, 1.0205078, 0.90771484, 3.3417969, -0.0026893616, -1.7402344, 0.122924805, -0.640625, -0.27856445, -0.9067383, -0.021713257, 0.1875, -0.010887146, -0.7421875, -2.2304688, 0.3239746, -1.234375, 2.6699219, 0.079833984, -1.2324219, 2.1621094, -1.2568359, -0.5908203, -0.83740234, 0.39990234, -0.23632812, -1.8720703, 0.12512207, -0.32861328, 1.6748047, -0.5097656, 0.140625, -1.84375, 0.21252441, -0.35229492, -2.6230469, -1.046875, 1.5146484, 2.2753906, -0.390625, -1.6416016, 0.53271484, 0.15844727, 0.56933594, -0.13134766, 0.7001953, 0.8618164, -1.4697266, 0.88671875, 0.8847656, -0.39916992, 2.5625, 0.0029468536, -2.4414062, -0.9243164, 1.7490234, -1.5576172, -3.3222656, -0.5839844, -0.69873047, 0.59472656, -0.7573242, -1.0380859, 0.5161133, -0.84716797, 0.36083984, 0.25390625, 2.9414062, 2.15625, 1.1376953, 4.4570312, -0.04336548, -0.6040039, 1.0068359, -2.1445312, -1.4667969, 0.32470703, -0.107666016, -0.48510742, 1.8046875, 0.8652344, -0.38916016, 0.6069336, 0.30078125, 0.10046387, -1.0410156, -2.5605469, 2.796875, -0.8178711, 0.55371094, 0.19384766, -0.97021484, 1.4472656, 0.086364746, 0.74560547, 2.0625, 0.45922852, -0.74902344, -0.018569946, 0.40795898, 0.16540527, 0.8701172, 1.4130859, 1.4736328, -1.2617188, -0.7006836, 0.9160156, 0.5576172, -0.62158203, 0.8588867, 0.22302246, 1.6689453, 0.0019435883, -0.76464844, 2.5878906, 2.1621094, -1.0957031, 2.2285156, -0.5834961, -2.8789062, 1.2597656, 1.1152344, -4.0234375, 0.21789551, 0.32104492, -0.9082031, 0.5961914, -0.68896484, -1.0712891, -0.11340332, 0.41723633, -0.70458984, -0.05130005, -3.6796875, -0.7495117, 2.1484375, -1.6630859, 1.0644531, -0.70996094, -1.0380859, 0.86328125, -0.41625977, 0.42895508, 0.6640625, 2.6328125, 3.6171875, 0.040649414, -1.3154297, -0.39379883, -1.9609375, 0.6020508, 0.7685547, -1.2119141, -2.4257812, -0.8725586, 2.2617188, 3.546875, 1.8046875, 0.67333984, 1.4130859, -1.2685547, 1.2753906, -2.0839844, 2.7402344, -2.1367188, 1.3466797, 1.9355469, -1.8105469, -0.62841797, -1.8447266, 2.4199219, 1.0302734, 0.61328125, 0.21887207, -1.3183594, -0.8779297, 0.9267578, -1.8515625, -5.09375, -1.171875, -0.99560547, 0.7758789, 0.24243164, -0.81689453, -1.1474609, -0.38500977, -0.84716797, -0.28344727, 0.06616211, -0.31103516, 1.8232422, 0.30249023, -1.8583984, -0.31982422, -0.55126953, 0.45410156, 1.4677734, 1.3232422, -0.2644043, -4.03125, -0.4753418, -0.39526367, -2.8964844, -0.9995117, 1.3662109, 0.08148193, -0.46533203, 1.1835938, 0.40698242, -0.6479492, 1.1025391, -1.9726562, -0.31835938, -2.3183594, -0.5961914, 0.43188477, -2.1679688, -0.46240234, -0.18579102, -2.6777344, 2.5, 0.89697266, 0.6191406, 1.4199219, 0.71728516, -0.026168823, -0.5131836, -0.14196777, 1.21875, 0.7026367, 1.4511719, 0.7895508, -0.85253906, -3.6015625, -1.4599609, 0.8129883, -0.4650879, 1.4560547, -2.7871094, 0.46850586, 0.70166016, 0.58251953, -0.21606445, -1.1308594, 0.70214844, -1.7412109, -0.16430664, 1.4052734, 3.0664062, 1.4765625, -1.5644531, -0.4675293, -1.3125, 0.42651367, -0.2244873, -1.0703125, -0.35546875, -1.4658203, -0.9604492, -0.50927734, -0.32666016, 1.0878906, 2.8320312, 0.45117188, -0.80371094, -0.7246094, 0.74609375, -1.1533203, 2.8066406, 1.2021484, 0.99853516, -0.51171875, 3.0351562, -2.4375, -2.84375, 0.66308594, -0.8354492, 1.0605469, 1.0214844, -2.9277344, -0.4453125, -0.89697266, 1.5507812, -2.0273438, -2.2734375, -1.4902344, 1.3583984, -0.29516602, 0.105285645, -0.65527344, 3.6503906, -1.1386719, 2.1367188, 2.28125, -1.1357422, -2.125, -1.0800781, -1.7128906, -0.079833984, 1.1416016, -0.20812988, 0.96875, 0.14697266, -0.48168945, -0.6508789, 1.9980469, 1.6972656, 0.53027344, -0.21350098, 1.2148438, 0.09075928, 4.3398438, 2.9492188, 0.30249023, 1.0302734, 3.0039062, -1.0722656, -0.14428711, 4.5273438, 1.3388672, -1.6298828, -0.09814453, 1.4365234, -0.59814453, 0.02116394, 0.20251465, 1.1660156, 0.021530151, -1.21875, 3.0449219, 0.83251953, 0.3059082, -0.7963867, 0.9033203, -1.390625, -1.6708984, -1.7236328, 0.2998047, 3.1464844, 0.6796875, 0.6738281, -1.0644531, 0.265625, 1.796875, -2.4257812, -0.34692383, 1.3222656, -1.2578125, -2.6601562, 2.5644531, 2.4121094, 1.5214844, 1.9091797, 1.2509766, 1.046875, 0.087524414, 0.6401367, 0.13171387, 0.4482422, 0.29125977, 1.2548828, -0.7182617, -1.4882812, -1.0751953, -0.49951172, -2.6621094, -0.32055664, 2.0429688, 1.4101562, 2.125, -0.3918457, -4.8554688, 0.8798828, 1.1132812, 3.2382812, -0.18652344, 1.1347656, 1.2167969, -1.8105469, -0.8959961, 0.6738281, 0.59228516, 1.3173828, 1.4003906, -0.25927734, 1.0839844, 1.4609375, 1.2021484, 1.5878906, 1.7958984, -1.84375, 0.41455078, 0.25830078, 2.0175781, -0.4267578, 0.6323242, -2.3105469, 1.6181641, 0.36572266, 1.2324219, 1.3701172, -0.7548828, 0.30786133, -1.4570312, 0.4248047, 0.38110352, -0.15661621, -2.5527344, -0.56591797, 0.058929443, -0.17614746, -0.06604004, 1.2304688, 2.6933594, 2.0917969, 0.9086914, -0.08557129, -1.6376953, 1.7695312, 1.1367188, -0.8388672, -1.2998047, -0.8046875, 0.82910156, -1.0595703, -1.8105469, 0.4272461, 0.8613281, -1.2421875, -2.4003906, 0.578125, -0.17810059, 0.17700195, -0.7910156, -1.4677734, -1.8964844, -1.7939453, 0.84033203, -0.19714355, 1.2490234, 0.9350586, 1.1484375, -0.93652344, -1.8183594, -0.5908203, 0.2709961, 0.119506836, -1.0595703, 0.88427734, 2.8496094, 1.4042969, -0.6582031, -2.1152344, -2.1777344, 2.7929688, -0.86376953, 0.28955078, 0.890625, -2.6777344, -0.20080566, -1.7529297, 2.984375, -0.2133789, -2.2089844, -1.4013672, -0.72216797, -1.3466797, 0.74072266, 0.29541016, -0.94628906, -0.6381836, 0.30664062, 3.6113281, 0.7524414, 1.4902344, 2.265625, 2.8242188, 1.1943359, -1.296875, 1.5429688, 0.8642578, 2.2734375, -0.49023438, -0.7739258, 1.0419922, 1.0527344, 0.23693848, 0.32983398, -0.8339844]}, "B000NWAO74": {"id": "B000NWAO74", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72\"L x 30\"D x 51\"H\nWEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "embedding": [1.2255859, 0.7973633, 2.8515625, -2.6582031, 0.07336426, 1.5439453, 1.3525391, -1.2441406, 2.7050781, 2.75, -0.57666016, 0.11883545, -1.1738281, -3.7792969, 1.5595703, 0.46801758, 1.1357422, 2.4785156, 2.7363281, -1.8408203, 1.1298828, 1.1660156, -1.0068359, 0.4609375, 1.0732422, -0.34277344, 5.1367188, -4.0429688, 0.43920898, 1.0556641, 2.6894531, 0.44458008, -0.6254883, 3.0253906, -2.2011719, -1.9492188, -0.06213379, 2.4160156, 0.78271484, -1.3056641, -1.5810547, -1.5849609, 2.75, 1.9775391, -2.5683594, -0.29370117, 0.75146484, 1.2265625, 0.10601807, -2.2363281, 0.7504883, 2.2011719, 3.1484375, 0.7734375, -3.6328125, 3.484375, 0.19726562, -2.0214844, 1.5664062, 0.031463623, -1.4033203, -1.5087891, -0.95654297, 2.09375, 0.00868988, -0.61328125, 0.4777832, -0.6069336, 0.18737793, 0.60498047, 2.0117188, -0.5024414, -2.4277344, -0.101501465, 1.7412109, -1.8955078, -1.4404297, 1.0927734, 0.9394531, -2.359375, -2.0136719, 3.3925781, -0.5131836, -2.6191406, -0.9375, -0.06713867, -2.3730469, 0.024230957, 0.84716797, -2.6640625, -1.390625, 1.4023438, -1.4248047, -3.7871094, 0.020767212, -3.7832031, 1.9208984, 0.96240234, -0.04147339, -0.828125, -1.2226562, 1.6328125, -1.1787109, -0.6635742, -2.5175781, -2.1699219, 0.38354492, -2.2089844, 0.8745117, -0.50390625, -1.1914062, 0.11669922, -1.0400391, 1.8427734, 2.2421875, 1.0771484, -2.2285156, 1.3662109, 0.043182373, 0.62402344, 1.0859375, -0.42895508, 0.20959473, -2.609375, 0.1928711, -0.5830078, -0.033691406, 3.9550781, 3.3457031, -1.7197266, 1.328125, -1.7734375, 2.4902344, 1.5869141, -0.6269531, -1.0986328, -0.90283203, -0.44067383, -2.5292969, 0.8613281, 0.22021484, -1.1748047, 0.6694336, -0.91015625, -2.90625, -1.234375, 1.1904297, 2.4082031, -1.6298828, -3.4082031, 0.49609375, -2.7246094, 1.1162109, -1.5751953, 0.4609375, -0.61572266, 0.9243164, -5.0039062, 3.640625, 2.5410156, 1.9521484, -2.6425781, 2.2597656, 0.19616699, 1.6708984, -2.3222656, -0.44555664, 0.6455078, 0.9291992, 2.921875, -1.5, -1.1835938, 1.4335938, -0.9824219, 1.8193359, -0.034088135, 1.0693359, 1.7695312, 0.5395508, 0.8930664, -0.42382812, -0.9584961, -0.5654297, -0.44433594, -1.6552734, -1.4765625, -0.4099121, 0.08013916, 1.8603516, 0.007007599, -0.6225586, 1.1103516, -3.0859375, -0.10205078, -1.7333984, -2.5371094, -1.3388672, -1.0361328, -0.70703125, 0.68310547, -1.7978516, -2.5507812, -0.8535156, 0.4921875, -1.8603516, -0.94140625, -1.4697266, -0.06817627, -0.031021118, 1.109375, 0.93115234, -2.90625, 2.765625, 0.29614258, -0.94921875, -0.921875, 2.0253906, -2.234375, 1.8632812, 0.6645508, -1.5712891, 0.9448242, 0.8339844, 2.5253906, 0.16394043, 1.1855469, 0.9243164, 0.5957031, -2.5878906, -1.3076172, 0.3166504, 0.453125, -0.90966797, -0.37109375, -0.28881836, 1.1201172, 1.1123047, -0.93359375, -1.1464844, -0.13684082, -1.9716797, -3.0214844, -1.1669922, 0.60302734, 2.5058594, 1.5146484, -1.78125, 1.5458984, 0.99072266, -0.73291016, -0.30322266, 0.09643555, 0.46777344, -0.78466797, 0.7602539, 1.9375, -0.38891602, 1.7998047, -0.7207031, -0.7050781, 0.22937012, -1.0117188, -2.1328125, 1.2744141, -0.5698242, -2.5800781, 1.3681641, 0.76171875, -1.9804688, -2.2910156, 0.85009766, -0.21520996, 1.2255859, 0.17871094, 2.3261719, 0.90625, -0.061553955, 1.1142578, -0.36938477, -1.7148438, 1.0683594, 0.62158203, 2.8574219, -0.8808594, 0.68359375, -0.21643066, -1.9853516, -0.88134766, -1.0078125, 0.5551758, 3.5683594, 0.39575195, -1.6650391, 5.140625, -0.23144531, 0.25854492, 2.7578125, -1.0917969, -1.9267578, 1.34375, 1.9091797, 0.84716797, -0.3166504, 0.34692383, -1.7851562, -1.2011719, -0.043914795, -3.4355469, -1.3486328, 0.17687988, -2.0371094, -2.0605469, 0.72998047, 0.83154297, -3.09375, -0.81884766, 1.2333984, -3.296875, 0.8515625, -0.79052734, 0.05114746, 0.6152344, -3.1015625, -2.1152344, -0.24597168, 0.38256836, -2.4082031, 1.2294922, 1.2412109, -0.35083008, 0.72021484, -0.62402344, 0.44433594, -1.3945312, -1.7539062, -2.8417969, -1.9492188, -0.65625, -0.60009766, 0.06573486, 0.6557617, -1.2333984, -1.6572266, 0.60302734, 0.27368164, -2.4941406, -1.6025391, -0.105407715, -0.54248047, 3.0527344, 0.013496399, -0.61083984, 0.36621094, -3.6386719, 0.7734375, -1.6865234, -1.5810547, 0.37719727, 0.05441284, 0.41430664, -0.4963379, 1, 1.0380859, 1.1445312, 0.67529297, 1.1074219, -0.0118637085, -2.7265625, 1.1875, 0.140625, -0.14819336, -1.1132812, 1.2314453, -2.4511719, -2.3378906, -0.08569336, -1.2177734, 4.9921875, 0.1262207, 2.1210938, -0.8808594, -1.8681641, 0.87890625, -0.22619629, -0.5102539, 2.1035156, -0.070251465, -1.9072266, 0.28051758, -2.359375, -1.4541016, -1.4853516, -0.2692871, 0.17468262, -0.89501953, -0.33984375, 0.5332031, -2.8261719, -1.3867188, -2.3476562, 1.5859375, -0.7519531, -0.38964844, -0.80126953, -1.7841797, -1.4677734, -0.6015625, -2.0175781, 3.1738281, -1.6875, 0.066101074, 1.6123047, -1.0966797, 3.1738281, 0.2668457, -4.1210938, 0.7338867, 1.3554688, 2.3652344, 2.1953125, 1.7216797, -2.8183594, -0.15490723, 0.20117188, 2.5097656, 1.7783203, 0.80859375, 1.4228516, 0.47192383, 0.62646484, 0.01373291, 0.05847168, -0.15222168, 0.7446289, 2.6640625, 0.17907715, 0.05444336, 1.9599609, -2.4355469, -1.6650391, 1.3955078, 0.6323242, -1.546875, 1.640625, 1.0810547, 0.92333984, 2.0566406, -0.42163086, 2.9160156, -0.21228027, 3.2597656, -0.8178711, 0.17919922, 1.1494141, -1.7138672, 1.2070312, 1.0302734, 1.1220703, 0.6357422, -0.7631836, -1.7001953, 0.48046875, 1.2714844, 2.4472656, 1.3310547, -0.8442383, 1.0302734, -1.6005859, -0.30566406, 1.3115234, -1.8740234, 1.3857422, -1.2783203, 1.5732422, 3.1191406, -1.328125, 0.19091797, -0.36108398, -1.3330078, 1.1025391, -2.6503906, -0.3161621, -2.1074219, -1.8671875, -0.058380127, -3.984375, -2.7128906, -0.40405273, 3.3066406, 1.7382812, -3.0683594, -0.81396484, 2.7421875, -0.8730469, -1.2167969, 1.1748047, 0.7910156, -0.41381836, 1.2714844, 2.9375, -2.5410156, 2.0019531, -3.5703125, 1.2685547, 2.2402344, -0.4699707, -1.2255859, 0.1583252, -1.3359375, 0.3400879, 1.7880859, 1.3056641, 1.75, -0.77197266, -0.99853516, -2.640625, -0.55029297, 2.3378906, -1.3798828, 0.18811035, 1.0361328, 1.9609375, 0.23718262, 0.39648438, 1.7900391, -1.7099609, -4.0039062, 1.0908203, -0.47583008, -0.12756348, 0.07489014, -4.1367188, -0.9926758, 1.1845703, -1.8115234, 0.8671875, 0.96240234, 0.75634766, 3.390625, 0.004047394, -1.4853516, -0.19592285, -2.4824219, -1.2001953, -1.3134766, -0.08520508, -0.18664551, -0.54833984, -2.3046875, -0.7807617, -1.0126953, -1.9443359, 1.0371094, 1.2578125, -0.7817383, -0.9379883, -3.171875, 2.2167969, -1.5087891, 1.3681641, 0.77685547, 0.15393066, 0.14257812, -1.3837891, 1.0068359, 0.32910156, 0.98583984, 0.40454102, 1.7578125, -1.7197266, -1.2109375, -1.2099609, 0.36743164, 2.8828125, -1.1611328, -2.4042969, -0.47338867, -0.04638672, 0.4267578, -1.3828125, -1.4228516, -0.38842773, -1.8818359, -1.2763672, -0.34960938, 0.74853516, 2.1230469, -1.84375, -3.0097656, 1.6728516, -2.2285156, -0.22521973, -1.6279297, 0.8027344, -0.24987793, 1.3427734, -1.2675781, -1.1962891, 1.8974609, 0.011024475, -0.3996582, -1.6591797, 3.203125, 0.45922852, 1.8037109, 3.71875, -2.1308594, 0.21203613, 2.1386719, -2.703125, 0.8959961, 1.2597656, -0.3984375, 2.4003906, -1.2167969, 1.1601562, -2.6523438, 0.060180664, -3.109375, 0.5708008, -1.7138672, -1.53125, 1.2695312, 0.22851562, 0.29467773, -0.3371582, -1.9960938, 2.390625, -1.6757812, 0.047943115, 1.5898438, -0.023864746, -0.4440918, 1.7255859, 0.24560547, 0.038970947, 0.82373047, 0.8339844, 0.16931152, -0.9633789, -0.45922852, -0.8959961, 2.0527344, -0.8613281, -0.93408203, -0.14074707, 0.46411133, -0.35473633, -0.75146484, 2.4082031, 3.0527344, -1.0048828, 1.2851562, 0.24938965, -2.5761719, 3.4394531, 0.75341797, -0.5620117, 0.57177734, -1.046875, -0.07318115, 3.0410156, -0.9863281, -2.9160156, -0.8964844, 1.6669922, -1.3515625, 1.6914062, -1.2177734, 0.39331055, 1.2470703, -2.3574219, -1.4189453, -0.12249756, 0.1595459, -1.4912109, -0.60009766, 0.38061523, -1.5869141, 0.5859375, 2.7285156, -0.6044922, -3.0097656, 2.3105469, 0.22399902, -0.5180664, -1.9345703, -0.94921875, -2.1621094, -1.6679688, 2.6953125, 1.4794922, 0.97998047, 1.0517578, 1.4482422, -1.7978516, 0.31811523, -1.5820312, 2.7597656, -2.1308594, 0.52490234, 2.96875, -2.0214844, -0.25708008, -1.3476562, 1.2939453, 2, 0.37402344, 0.48632812, 0.71484375, 0.20275879, -1.4453125, -1.84375, -2.2363281, -1.1337891, -0.6303711, -1.6376953, 0.8432617, -0.09637451, -0.7734375, -0.13684082, 0.1430664, -0.47875977, 0.79345703, 0.12451172, -0.3347168, -0.44458008, -1.0595703, -1.9794922, -0.52490234, 2.15625, 2.0175781, 2.4433594, -1.4140625, -3.09375, 0.44140625, 1.5615234, -3.2871094, -0.9584961, 2.2402344, 1.0361328, 1.5859375, 1.0576172, 0.46606445, 0.80078125, 1.2490234, -0.6459961, -0.11224365, 0.7397461, -0.54589844, 1.6835938, -0.4362793, -2.2910156, 1.4013672, -0.6870117, 0.22155762, 1.9833984, -0.37670898, 2.6503906, 2.0566406, -0.006122589, 1.0498047, 1.6533203, 1.5498047, 1.8388672, -0.23181152, -0.15979004, 0.95751953, -2.1699219, -1.9853516, -0.8046875, -3.515625, -0.91259766, -1.7724609, -0.4802246, 1.9892578, 1.8466797, -0.1517334, 0.3972168, 2.8769531, -0.9995117, -0.53808594, -0.4020996, 2.3964844, 1.1484375, -1.1738281, -0.50439453, -1.7509766, -0.56591797, 1.8076172, 1.3671875, -0.6879883, 1.2226562, -3.5390625, -0.875, 0.34887695, 1.4716797, -0.45288086, -0.23242188, -0.3701172, 0.97802734, 2.4394531, -1.5751953, 3.6933594, 0.60009766, 2.3320312, -2.1171875, 4.578125, 1.5625, -3, 1.5205078, -1.6865234, 1.7568359, 0.6357422, -0.5834961, 1.5244141, -0.6245117, -0.4033203, -2.5976562, -0.34399414, -3.6738281, 0.45703125, 0.23962402, -1.0263672, -0.03265381, 1.4023438, 1.6201172, 3.046875, 2.2597656, -1.0126953, -2.0703125, -0.43579102, -1.2070312, -0.23010254, 0.5107422, -0.6694336, 1.1474609, -0.5913086, 0.012756348, -1.0273438, 0.46313477, -0.5571289, 0.59033203, 3.2285156, 2.7089844, -0.13989258, 2.0957031, 1.9023438, 0.4572754, 1.5166016, 0.018478394, -1.8398438, -1.0273438, 3.1035156, 2.5175781, 1.2714844, -2.4707031, 0.24816895, 2.0058594, 1.0625, 0.765625, 1.0263672, 0.9350586, -3.3027344, 0.16101074, 1.7021484, 1.2802734, -1.2138672, -0.020141602, -0.9277344, -1.1240234, 0.8847656, -0.57910156, 2.8613281, -1.9335938, 2.1660156, 1.6044922, 0.9790039, -0.83154297, -1.0742188, 0.53515625, 2.0097656, -2.65625, -1.2373047, 2.7421875, 2.5175781, 1.8271484, -0.87158203, 0.6435547, 2.0683594, 2.5566406, 0.074279785, 0.007080078, 0.29125977, -1.15625, 0.84521484, 2.0664062, -1.0869141, -1.6982422, -1.9648438, -1.1191406, -1.0146484, 1.7607422, 1.8525391, 0.47070312, 1.9306641, -4.1796875, 1.2890625, 2.0097656, 1.1923828, -0.1751709, -1.1074219, 0.28735352, -2.5234375, -2.1074219, -0.9584961, -1.8759766, 2.3945312, 1.7695312, 0.5029297, 3.078125, 0.37768555, 1.3867188, 1.0302734, 1.9228516, -0.8432617, 0.1973877, 0.4465332, 2.046875, 2.4824219, -1.90625, 0.5644531, 1.9345703, -0.6040039, 1.0224609, 1.3662109, -0.6020508, 1.8837891, 2.3242188, 1.125, 0.7739258, -1.9638672, -1.7275391, 1.7705078, 0.36499023, 0.6503906, -0.9272461, 1.5966797, 0.95751953, -1.2978516, 1.6806641, 1.2177734, -0.68896484, 1.6054688, -2.2480469, -1.5419922, -2.1542969, 0.008026123, 0.7319336, 0.42993164, -0.07684326, -2.0253906, 1.9931641, 0.64941406, -0.08111572, 1.09375, 1.3466797, -1.3867188, 0.5214844, -1.5234375, -2.6074219, -0.5229492, 0.041229248, -0.47070312, 0.41577148, 2.34375, 2.9667969, -1.9482422, -3.1484375, -2.1621094, -0.36401367, 0.55615234, -1.9648438, 2.3203125, 3.3359375, 2.5800781, -1.0878906, -2.2441406, -0.1307373, -0.08428955, -0.4645996, 2.2285156, -0.10870361, -0.9926758, 0.9926758, -0.52246094, 2.078125, -0.34545898, -2.8730469, -0.39575195, -1.0361328, 1.5693359, -0.60791016, 0.32641602, 0.09234619, 0.61865234, 1.1318359, 2.3730469, 1.8876953, -0.29711914, 1.5693359, 4.0625, -0.32006836, -1.6328125, 0.10784912, 1.0849609, 2.7363281, -0.41503906, 1.7998047, 1.1523438, 0.43920898, 0.52490234, -1.8173828, -0.72509766]}, "B08BW61RDG": {"id": "B08BW61RDG", "original": "Brand: BBQ'n Grill\nName: BBQ'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil\u00a0Grills\nDescription: Now you can barbecue like you never have before with ease.\u00a0 This unique Barbecuing accessory makes rib booking virtually automatic.\u00a0 Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ\u2019n Grill rack, cover and then do nothing until they are ready to eat!\u00a0 This technique allows the meat to cook on both sides at the same time.\u00a0 Use on any covered charcoal grill of 19\u201d or more across and 17\u201d or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken\u00a0without\u00a0constant attention,\u00a0without\u00a0fussing,\u00a0without\u00a0turning, and\u00a0without\u00a0charring or burning.\u00a0 The BBQ\u2019n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food.\u00a0\nFeatures: Makes Barbecuing Ribs and Chicken Effortless\nWorks with Charcoal or Gas\nWorks with Round, Square or Rectangular Grills\nMade from Heavy Duty Plated Steel\n", "embedding": [-2.9980469, 1.7939453, 1.71875, -1.0048828, 0.99853516, -0.7524414, 0.6582031, -1.7753906, -0.52783203, 1.140625, 0.44140625, -1.5351562, 1.5332031, -2.359375, -1.0546875, 0.109069824, 0.9091797, 1.3886719, 1.6748047, 1.890625, -0.41357422, 1.9267578, 1.7089844, -0.32348633, 1.0224609, 1.7597656, 2.0351562, -0.3557129, 0.09185791, 0.20703125, 4.0742188, 0.26367188, -1.703125, 0.99609375, -2.8476562, 0.025024414, -0.033935547, 0.91259766, 0.43823242, 1.8017578, 1.5478516, -1.8046875, 1.6191406, 1.1181641, -3.6054688, 0.3317871, -0.6230469, 1.4003906, -0.43701172, 0.47924805, 1.5761719, 1.8574219, -0.20410156, 1.1181641, -2.6503906, 0.82177734, -0.5566406, -3.9179688, 0.48583984, -1.9248047, 0.92333984, -0.20898438, -2.9101562, 1.7529297, -1.2158203, -1.7265625, -1.5332031, -0.41015625, 0.7236328, -1.6982422, 0.59277344, 0.13977051, -1.75, -1.2705078, -0.22387695, -0.18591309, -1.8203125, -0.32226562, 0.9951172, -1.625, -1.5185547, 1.5175781, 0.93896484, 0.06982422, 0.55908203, -0.9038086, -0.83691406, -0.77441406, 4.0859375, 0.6689453, 3.3867188, 2.0585938, -3.0410156, -4.0507812, 1.7451172, -2.9804688, -0.6279297, -0.67041016, -2.0839844, 3.1328125, -0.06530762, 1.0957031, -0.8178711, 0.4675293, -2.9667969, -0.64746094, -0.39404297, -0.20898438, -0.46606445, -0.5595703, -1.3164062, 2.8496094, 0.38330078, 2.3203125, 1.7607422, 0.3552246, -0.1015625, 1.6738281, -0.2199707, -0.07757568, 3.4941406, 1.8076172, 0.70996094, -1.3125, -0.7348633, 1.125, -0.09094238, 1.2714844, 3.7558594, -0.92285156, -1.5068359, -2.3867188, 1.0009766, 0.43798828, -1.8935547, -0.8154297, -1.5791016, -1.8769531, -2.46875, 3.0742188, -0.33618164, -0.26586914, 1.1503906, -0.89208984, -1.6972656, 1.359375, 0.5361328, 1.8544922, 0.23461914, -2.9746094, 0.5678711, -1.2128906, 0.1661377, 0.65185547, 2.1757812, 0.09387207, -2.25, -0.8330078, 1.3232422, 0.45654297, 0.15148926, -3.5625, -0.42456055, 0.3166504, 0.06964111, -0.040649414, -1.4863281, 2.8359375, -0.111206055, 2.8164062, 3.1679688, -0.9404297, 1.7871094, -0.71435547, 3.2382812, -2.7285156, -0.092285156, 2.1230469, 0.48364258, -1.8359375, -0.36865234, -3.03125, 0.32788086, 2.0566406, 0.24145508, 0.6791992, 0.22045898, 3.3691406, 3.9492188, -0.7783203, 1.0136719, -1.5898438, 1.1455078, 1.0078125, -0.34765625, -0.81396484, 0.38598633, -0.88964844, -2.0136719, 1.5205078, -3.421875, -0.09881592, 0.7290039, -0.095458984, -1.5224609, -1.3378906, 0.23205566, 1.328125, 0.4050293, 2.4707031, -1.2724609, -1.4433594, 1.1074219, 2.6621094, 0.74365234, -1.9355469, 0.23498535, -1.3769531, 4.484375, 3.3496094, -0.35717773, -0.09039307, -0.53515625, 2.4414062, 0.06329346, 0.515625, -0.51660156, -1.1923828, -2.2460938, 1.6455078, 2.5449219, -0.08935547, -0.53808594, 1.2226562, -2.0195312, 1.3535156, -0.5136719, -1.4990234, -0.19384766, 1.9638672, -0.16711426, -0.44921875, -0.52783203, -2.03125, 0.39453125, -0.48242188, -2.4394531, 2.3007812, 0.64697266, -1.3359375, -2.2558594, -0.18188477, 1.8720703, -1.2412109, 0.8095703, -0.01675415, -3.6679688, 0.15991211, -2.5410156, -0.453125, 0.2944336, -0.921875, -0.14990234, 0.33642578, 1.6748047, -1.0498047, 1.1806641, 1.0361328, -2.4472656, -2.890625, -0.074279785, -0.38427734, 0.47387695, 0.35058594, 0.38330078, -0.046051025, -0.032928467, 0.19946289, -1.2958984, -0.5727539, 1.0126953, 1.3447266, 2.015625, -0.5883789, -2.5371094, 0.8232422, -1.8720703, -2.0351562, 2.5566406, 1.6894531, 3.8496094, 0.53222656, -0.46728516, 2.296875, -1.5878906, -1.2236328, 0.51464844, -0.94140625, 0.4621582, 2.3320312, 0.4633789, 0.71777344, 1.2119141, 2.1757812, -0.4543457, -1.9550781, 1.4306641, -1.1777344, -0.014320374, 1.5566406, 1.6464844, -1.1972656, -1.0722656, 1.1933594, -1.6015625, 0.46533203, 1.1474609, -1.2734375, 1.2548828, 0.71972656, 1.6484375, 0.87353516, 0.43481445, -3.6308594, -2.0097656, 1.4765625, -1.3974609, -0.94677734, 0.035339355, -0.8330078, -0.44677734, -0.3095703, -0.048095703, 0.20507812, -2.3730469, -1.5107422, -1.5263672, -1.875, -2.0644531, -0.60009766, -1.6933594, -0.6064453, -1.7832031, -0.16491699, -2.078125, -1.4453125, -2.3027344, -1.75, 1.4160156, 0.044067383, -0.9140625, -0.9951172, 0.031555176, -4.3203125, 0.26757812, -0.084350586, -0.023208618, 0.6958008, -0.99853516, 1.6875, -0.2376709, 0.6933594, 0.37548828, 1.7001953, 1.8408203, 1.2636719, -1.046875, -1.3535156, 1.5908203, -0.39819336, -0.8540039, -2.1191406, -0.05834961, -2.1894531, -0.65234375, 0.9892578, -3.5625, 3.2558594, -0.36621094, 1.5517578, -0.81152344, 2.2402344, 0.29345703, 0.6748047, -2.2519531, -0.4321289, -0.9819336, -0.63378906, -0.5263672, -2.4648438, 0.85009766, 0.53808594, -1.5449219, -0.86621094, 0.8413086, -1.9482422, 1.6123047, -1.6113281, -2.3027344, 1.0888672, 0.6958008, -0.12121582, -0.39086914, -1.2333984, 0.06921387, -1.8828125, -1.9404297, -0.71777344, 2.5820312, -1.6621094, 0.5004883, 0.6386719, -0.06518555, -0.7138672, -1.7089844, -3.515625, 2.1757812, -1.2353516, -1.2753906, 1.8613281, 1.7636719, -1.0214844, -3.8847656, 1.3652344, 1.9189453, 3.6054688, 3.1152344, 2.3398438, 0.046569824, 0.8491211, 2.3164062, 1.7792969, -0.17456055, 2.2558594, 0.9663086, -0.48828125, -2.9101562, -1.4853516, 2.4101562, -1.4707031, 0.5727539, 2.7109375, 1.5869141, 2.5703125, 1.9238281, 1.6982422, -0.42260742, -3.0527344, 0.7763672, 1.4462891, -0.07116699, 0.77246094, -0.22497559, 0.24902344, 1.5410156, 0.64941406, 1.0791016, 1.546875, 2.8554688, 2.6679688, 0.7421875, -1.8183594, 0.63134766, 0.5449219, 1.6621094, -0.8779297, 1.3925781, -0.0041503906, -1.5566406, 0.17541504, -1.1982422, 2.3769531, -0.93359375, -0.23596191, 3.1679688, 0.9736328, -1.2246094, 0.3388672, 0.38549805, -1.0449219, -1.640625, -1.4628906, -0.005050659, -0.37060547, -0.29248047, -2.7460938, -2.9042969, -1.5341797, 1.6328125, -2.6132812, -3.7851562, -1.6640625, 3.7226562, -1.6298828, 0.18457031, 0.58935547, 1.2910156, 0.28149414, 1.4521484, 0.51708984, -0.61279297, 1.5380859, -2.1035156, 1.2832031, -0.5859375, -0.8178711, -1.2949219, -0.6669922, -1.8886719, 0.1628418, -0.4116211, -0.3173828, 0.25830078, -0.79785156, -1.6933594, -3.953125, -0.1809082, 0.4777832, -2.8476562, -1.3974609, 1.0283203, 0.5546875, -1.2363281, -0.7192383, 3.4648438, 0.38330078, -1.4355469, 1.4277344, -2.328125, -1.3398438, -2.3027344, -3.78125, 0.3461914, -1.0410156, 1.2822266, 1.5849609, -0.0134887695, -0.03466797, 4.546875, -1.7128906, -1.34375, 0.4934082, -1.421875, 0.10028076, 0.46044922, 1.0253906, 2.4355469, 1.6484375, -0.83740234, -1.5517578, -1.2480469, -0.89208984, 2.9023438, 1.90625, -1.8310547, 1.2832031, -1.4091797, 2.2929688, -1.5234375, -0.78466797, -0.37548828, -1.5673828, 0.047912598, 1.4101562, 2.4375, -1.0439453, -0.40673828, -2.0605469, 0.54541016, -0.6796875, -2.0878906, -2.2519531, -0.21032715, 1.7236328, -0.67529297, -1.8613281, -1.0683594, 0.6948242, -0.70214844, -0.5732422, -0.6845703, -0.9819336, -3.0898438, 0.3491211, 0.5131836, 1.2382812, 2.6289062, 0.17321777, -1.5839844, -2.8183594, -1.5166016, 0.7158203, -1.2558594, -0.30615234, 1.2763672, -0.5336914, 0.22558594, -2.8886719, 1.2480469, 0.4584961, -0.73876953, -2.1054688, 1.7265625, 2.2382812, 1.8496094, 5.1601562, -0.06161499, 1.4042969, 0.18273926, -2.8007812, -0.8569336, 0.26049805, -2.1152344, -0.008049011, -0.04385376, -1.0947266, -0.22241211, -1.4648438, 1.0742188, -1.3447266, 0.55322266, -1.1542969, 1.875, -1.7089844, 1.5986328, 2.5058594, -2.7207031, 2.7617188, -1.546875, -0.875, 1.7841797, 2.4472656, -0.28173828, 1.4238281, -1.0283203, 0.88183594, -0.30078125, 2.0898438, 0.1204834, -2.1660156, -0.7241211, -1.8173828, -0.63183594, -1.1816406, 0.5292969, -0.93847656, 0.33740234, 0.07946777, -2.6386719, 1.8769531, 3.4648438, -0.7260742, 1.5234375, 1.2861328, -1.6621094, 0.6323242, 1.2871094, -4.0703125, 0.87353516, -0.2709961, -0.93603516, 1.3964844, 0.9350586, -3.453125, -0.57128906, 1.3496094, 0.36376953, 1.8876953, -0.51660156, -0.2824707, 3.2460938, 0.3798828, -0.59277344, -1.1074219, -2.9804688, 2.1484375, -0.86083984, -0.64501953, 0.0066108704, -0.9428711, 1.3232422, 0.5498047, -2.3378906, 1.2714844, -1.1005859, -1.296875, -0.05657959, -2.3378906, -1.6855469, -2.0019531, 2.1132812, 1.5957031, 3.5722656, 0.69433594, 3.0117188, -2.7558594, 0.48828125, -0.53808594, 2.8574219, -2.0722656, 0.99316406, 3.6152344, -3.8691406, -0.11340332, -1.5488281, 0.29785156, -0.19458008, 1.3466797, 1.5644531, -1.1181641, -1.8935547, 0.44018555, -2.4960938, -3.6289062, -0.2944336, 1.8886719, 1.1337891, -0.28979492, 0.21020508, -0.81152344, 0.57421875, 0.23278809, -0.94384766, 1.546875, 0.58203125, 1.3457031, -2.5878906, -2.0039062, -0.06994629, 0.94433594, -0.1665039, 1.2685547, 2.6914062, 0.3881836, -1.1865234, 1.8847656, 1.0996094, -3.0429688, -0.45507812, 2.2148438, 0.9794922, 0.015098572, 0.9506836, 1.1669922, -1.0292969, 1.5068359, -1.5351562, 0.55126953, -0.0024299622, -1.203125, 0.18432617, -1.0917969, -0.6015625, 0.2758789, -3.0585938, 1.5058594, 0.91259766, 0.23303223, 2.2304688, 0.12188721, -1.0947266, -0.27661133, 0.6088867, 1.1582031, 1.6796875, 0.64501953, -0.6777344, -0.44848633, -2.0664062, -3.5214844, -1.5273438, -1.3183594, -0.86328125, -3.0976562, 1.2753906, 1.4433594, -1.2890625, 2.6171875, 1.0371094, 1.5068359, 0.6772461, 0.8100586, -0.50341797, 0.6796875, 1.5722656, -1.5537109, 0.2944336, -0.73535156, 0.6958008, 0.46166992, -0.7475586, -0.44213867, -0.32714844, -0.64746094, -0.8569336, -0.81884766, 1.7128906, 1.7246094, 0.6723633, 0.4243164, -0.15063477, 0.8173828, -0.28564453, 0.26879883, 0.70166016, 0.29541016, -0.75683594, 3.6621094, -1.4609375, -2.1523438, 0.8251953, -1.6972656, 0.7915039, 1.8847656, -1.4658203, 0.56152344, -1.6689453, -2.2226562, -2.4570312, -2.8535156, -1.6328125, 0.9663086, -0.33520508, -0.53808594, -1.5996094, 4.5976562, -0.42236328, 2.78125, 0.84277344, 0.68652344, -1.2099609, -0.9296875, -1.2460938, -0.35888672, 1.5585938, -1.9423828, 1.1455078, 1.2060547, -1.4736328, -1.3183594, 0.5708008, 1.7265625, 2.1816406, -0.0026130676, 3.9003906, 3.1757812, 3.2871094, 3.9316406, -0.06121826, 1.59375, 1.5410156, -1.5976562, 0.91308594, 2.21875, 0.625, -0.23339844, -2.4023438, 1.8623047, 0.25561523, -1.0332031, 1.2822266, -0.44384766, -0.072387695, -1.9941406, 3.1640625, 0.55371094, 0.9790039, 0.4296875, 1.1269531, -0.9399414, -1.3564453, -2.2695312, 0.87890625, 2.1992188, 0.5839844, 1.5537109, -0.88134766, 1.3886719, -0.47387695, -3.7910156, 0.29736328, 3.0898438, 0.4243164, -0.6982422, 2.9765625, 2.1992188, 2.671875, 0.9326172, -0.1616211, 0.88378906, -0.038146973, 4.0234375, 0.41015625, -2.4042969, -0.053222656, 1.1679688, -1.6767578, -1.2890625, -1.5351562, 0.22033691, -0.58691406, -0.24572754, 2.46875, 0.9091797, 3.0332031, 0.82714844, -1.5078125, 3.4941406, 0.7504883, 2.4003906, 0.40185547, 0.34326172, -1.0449219, -2.21875, -1.9560547, 0.23706055, 0.64697266, 1.1083984, 1.0947266, -1.4121094, 1.6982422, 0.34326172, 0.78466797, 1.4775391, 1.6621094, -1.0244141, -0.11456299, -0.20629883, 2.1035156, -1.5371094, -1.9658203, -0.68652344, -0.5097656, 0.37768555, 1.8935547, 2.4101562, -0.6508789, -2.6210938, -1.3994141, -0.35180664, -0.6669922, -0.9741211, -2.4511719, -0.54003906, -0.7348633, -0.007457733, 0.61621094, -0.01171875, 2.2304688, 2.8769531, -0.16625977, -0.80078125, -1.71875, 2.7246094, 1.0566406, -1.1826172, -0.29663086, -0.47729492, 0.75878906, 0.9951172, 0.24475098, 0.3947754, 1.4355469, -0.2836914, -0.23803711, 1.4433594, 0.7319336, 0.9638672, 0.5488281, -0.12072754, -1.6933594, -1.828125, 0.7158203, -0.39892578, 0.84472656, 2.1757812, -0.053466797, -0.8618164, -1.9824219, -0.05795288, -0.41479492, -1.2060547, -2.8027344, 1.0947266, 2.3632812, 1.7089844, -1.7832031, 0.2824707, -2.171875, 2.9824219, -1.0332031, 1.9394531, -0.45263672, -3.234375, 1.6777344, -1.0175781, 1.8466797, -0.17272949, -3.7402344, -0.29077148, -0.39697266, 1.0800781, -0.8515625, 1.2441406, 0.20544434, 0.11004639, -1.1640625, 2.0683594, 2.9941406, 0.33276367, 0.7373047, 2.25, 0.40234375, -2.5878906, 1.4580078, -1.0117188, 2.125, -0.23962402, -0.3449707, -1.3310547, 0.20019531, -0.56347656, -0.6484375, -0.45751953]}, "B06ZY5W3R7": {"id": "B06ZY5W3R7", "original": "Brand: Unknown\nName: Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator\nDescription: \nFeatures: \n", "embedding": [1.3720703, -0.6635742, 0.83691406, 0.41308594, -0.30908203, 0.039398193, 1.9658203, -1.4257812, 0.95654297, -0.34692383, 1.9921875, 0.6845703, 0.30639648, -1.7070312, 2.6132812, 1.1259766, 0.8959961, 0.59277344, 0.8496094, -0.42089844, -0.15270996, 0.87841797, 2.2011719, -1.3710938, 1.9658203, 0.38476562, 6.0429688, -2.9882812, -1.2158203, 0.39404297, 1.5947266, 0.13378906, -1.6230469, 2.9140625, -0.93603516, 1.0214844, -1.6357422, -0.31958008, -3.1757812, 1.0869141, -1.1962891, -0.5102539, 1.3291016, -0.28027344, -2.9628906, -2.2929688, 1.9179688, -1.4863281, -0.16052246, 1.1416016, 0.62890625, 1.2246094, 0.5722656, 0.5683594, -0.45043945, 0.70751953, -0.7573242, -0.36401367, 0.61865234, 2.9824219, 1.2050781, -0.044311523, -2.1191406, -0.34375, -0.8364258, 1.9863281, -0.19665527, -0.109558105, 0.40478516, 1.125, 1.5664062, -1.0966797, 0.60302734, -1.9931641, -0.5654297, 1.9521484, -3.3164062, -0.64746094, 0.8173828, -1.2099609, -0.47558594, 0.6308594, 0.38012695, -1.3496094, -0.3635254, -0.13305664, -0.98583984, -0.1616211, 1.2978516, 0.78759766, -2.6386719, -0.14929199, -0.6020508, -5.1992188, 0.8276367, 1.4990234, -0.84521484, 0.96191406, 1.9980469, 1.1376953, 0.90185547, 1.7490234, 1.3212891, 0.98095703, -2.7773438, 1.7060547, 2.1542969, 1.6054688, -2.9003906, -1.1640625, -1.1796875, -1.7734375, 1.0244141, -0.41748047, -0.08569336, 0.6772461, -0.6645508, 0.59765625, 2.8554688, -1.2363281, 2.9785156, -0.52001953, 0.6035156, 0.6977539, 0.46972656, 0.43603516, -0.6064453, 1.1367188, 3.5898438, -0.5283203, 1.9306641, 1.3427734, 3.8398438, 0.70410156, 1.4794922, -2.5136719, -2.0742188, -2.7988281, -1.9140625, -1.6162109, -1.2949219, -0.035858154, 2.3261719, -0.88134766, -2.8105469, -0.32348633, -1.7871094, 1.5527344, 1.1025391, -1.3457031, 1.5859375, -1.8505859, 0.3305664, -0.5253906, 1.3505859, 0.070251465, -1.8056641, -2.4746094, 1.2197266, 0.88427734, 0.77490234, -0.47802734, -1.8193359, 0.87939453, -2.9101562, -0.8071289, 0.8925781, -0.6567383, -0.5620117, 1.7275391, -0.7285156, -1.2412109, -0.16369629, -0.34033203, -0.06210327, 0.7504883, 1.1005859, 1.5273438, 2.4296875, 0.6928711, -2.6484375, 0.26416016, -2.0175781, -1.4306641, 3.0039062, -0.94384766, -0.765625, -1.8642578, 0.9550781, -1.5292969, -1.9960938, 0.72558594, -1.7587891, 0.3479004, -0.44702148, -2.9257812, -3.6933594, -0.15844727, 0.7114258, 1.8476562, -0.65771484, 0.029342651, -0.609375, 0.8779297, -0.73779297, -1.7949219, 0.94140625, -0.30322266, -0.62402344, 0.92578125, 1.4912109, -0.58984375, 1.6621094, -0.80322266, 1.1542969, -4.375, 0.20874023, 0.4892578, 0.01625061, 1.1425781, 0.74316406, 1.5976562, 1.4619141, -0.1776123, 2.5371094, -0.15515137, 0.18359375, -0.43725586, -1.9208984, -0.6508789, 1.8027344, 1.5244141, -1.9121094, -0.35351562, -0.51171875, 1.6767578, 0.83154297, -0.63916016, 1.0371094, 0.02078247, 0.89404297, -1.0566406, 1.6640625, -0.38110352, 0.89453125, 1.2802734, -1.4365234, 1.7558594, 3.5957031, 1.0410156, 0.5258789, -0.06585693, -2.4804688, 0.022232056, -1.5537109, 1.0332031, 1.4052734, -0.51416016, 1.4296875, -0.4633789, 3.3925781, 1.0830078, 0.30151367, 0.5654297, 0.27246094, 0.51660156, 2.3007812, -0.22216797, -0.80615234, -0.85595703, -0.44628906, 1.6220703, 1.9560547, -0.29589844, 1.9853516, 1.6484375, -0.52001953, 2.15625, -0.80126953, 0.89160156, 0.3852539, -1.3613281, 0.32177734, -2.1132812, 1.8642578, 1.4570312, -0.9379883, 0.09881592, -4.1328125, 0.39331055, 3.4628906, -3.3769531, -1.4365234, 3.3691406, 1.5791016, 0.15026855, 3.5664062, -0.50878906, -1.6425781, 0.33520508, 1.6962891, 1.9609375, -0.8334961, -0.19262695, -0.19262695, -1.7587891, -0.3557129, -0.25097656, -0.88671875, 1.7617188, -0.5239258, -1.8222656, -2.5859375, 1.4375, 0.55078125, -0.7763672, 1.7099609, -2.9980469, 0.9135742, 0.08123779, -0.89941406, 0.50341797, 0.09442139, 1.2275391, 0.6489258, 0.64404297, -0.8959961, -0.20129395, 1.5537109, -0.14379883, -1.0996094, -0.28100586, 0.72216797, -1.0097656, -0.17443848, 1.8046875, -1.9912109, -2.1757812, 1.5859375, 0.91552734, -1.0546875, -0.46728516, -0.0059928894, 0.7089844, 1.4609375, 1.0878906, -0.71240234, 0.35473633, -0.24438477, -0.82421875, 0.09765625, 1.4902344, -0.18859863, -3.484375, -1.7021484, 1.3164062, -0.8310547, -0.3017578, -1.7519531, 0.050048828, -0.49169922, -0.47924805, 1.0058594, -1.875, -0.76171875, -2.3339844, 2.6484375, -2.8320312, 1.0791016, -0.076660156, 2.0996094, -0.5449219, 1.3378906, -1.625, -0.85058594, 0.09643555, -0.34960938, 4.3398438, 0.33251953, 0.07678223, 0.5878906, 0.79345703, -0.038726807, -2.5371094, -2.2539062, 1.4892578, 0.8652344, -0.89990234, 0.5654297, -1.9560547, -0.046875, -0.23352051, -0.45361328, -0.50683594, -1.3632812, -0.7133789, 0.4609375, 0.3010254, 1.2128906, -0.23791504, 1.5878906, -0.7573242, -1.0820312, 0.4375, 0.13623047, 0.50634766, 0.27661133, -0.5722656, 1.5214844, 0.07092285, -0.103027344, 0.61035156, 0.12322998, 0.90527344, -0.6791992, -2.265625, 0.08868408, 2.4179688, 0.0074691772, 1.9912109, -0.15490723, 0.5029297, -0.7182617, 0.7729492, 2.9960938, 1.8994141, 4.125, -0.2088623, 2.2792969, 0.16723633, -0.36914062, -2.9121094, -0.2397461, -1.2207031, 3.0800781, -2.8359375, -1.6416016, 1.1015625, -1.1875, -2.4296875, 0.7182617, -0.61328125, 0.23852539, 4.515625, 0.80615234, -0.89941406, 0.3173828, 1.9824219, -0.6748047, -0.6425781, -0.9941406, -0.20422363, 0.28637695, 0.20800781, 0.98291016, 0.0335083, 1.5976562, 0.24621582, -1.0556641, -0.19348145, 3.0566406, -1.9091797, 1.5761719, -0.073791504, 0.11456299, -0.6435547, -0.7817383, -0.69384766, 0.18640137, -0.03289795, 1.34375, -0.6098633, -1.9912109, 0.45532227, 0.1015625, 0.8383789, -0.49243164, 0.31884766, -0.3803711, 0.19848633, 0.7314453, 1.1943359, 0.064819336, -0.31469727, 0.27490234, -1.4267578, -0.45874023, -1.65625, 0.9116211, -0.061157227, 0.6196289, -0.46166992, 1.40625, -1.0996094, -1.6015625, -1.0136719, -1.6044922, 0.33447266, 0.62646484, 1.5683594, 0.54833984, -0.5048828, -0.2770996, 0.77441406, 2.3554688, -0.91308594, -0.60546875, -1.0996094, 1.8154297, 0.7602539, -0.74853516, 2.953125, 1.6386719, -3.2363281, -1.1533203, -3.0976562, -1.0791016, 1.0175781, -0.32666016, 0.99316406, 1.3652344, -0.9013672, 2.0292969, -0.35205078, 2.9765625, -3.0859375, 0.70996094, 2.890625, -1.5302734, -0.6933594, -1.8554688, -3.8359375, 0.60546875, -0.9423828, -0.14245605, -0.34594727, 0.33935547, 0.64160156, 1.2880859, 0.3232422, -0.66015625, -1.2744141, 0.05718994, 2.3007812, -2.2070312, 0.03677368, 0.36694336, -0.12286377, -2.4921875, -1.71875, -1.4453125, -1.3125, -1.8916016, -0.6611328, -2.1074219, 0.27539062, -0.6982422, 1.0478516, 0.44848633, -1.0371094, 1.4648438, 1.2421875, -1.3017578, -3.3378906, 2.515625, 0.94433594, -0.4423828, -0.18103027, 3.1132812, 1.1982422, -0.82373047, -0.9746094, -0.9394531, 1.6845703, 0.36914062, -0.8857422, -2.4609375, -3.2734375, -1.8691406, -0.3479004, 0.014923096, 0.37548828, -0.85009766, 0.265625, 2.0507812, 0.8339844, 1.0039062, 0.71728516, -0.26831055, 3.2988281, -0.85498047, -0.68652344, -0.47705078, -2.3183594, 2.1660156, -1.8408203, 0.05227661, -0.46972656, -1.9755859, -0.5722656, -2.8515625, -1.3710938, 1.4384766, 0.99560547, 0.45043945, -0.74072266, 0.2536621, -0.6435547, -0.49829102, 0.8183594, 1.8652344, -0.5498047, -1.0664062, -0.20324707, 0.54296875, 4.3554688, -0.9848633, -1.3154297, 0.28442383, -2.8984375, -0.7216797, -0.04763794, 0.24377441, -1.3691406, -1.7988281, 0.35083008, 0.2998047, 1.6308594, -0.95410156, 1.8662109, 1.9277344, 0.45581055, -1.5185547, 1.6699219, 1.0976562, 1.4082031, 2.1699219, -0.47729492, 0.23071289, -0.02619934, 1.1533203, 0.9628906, -0.40283203, -1.7675781, -2.0507812, 0.38012695, 0.31420898, -0.066101074, -0.7573242, 0.8613281, 0.10424805, 1.5371094, 1.0283203, 2.8964844, -0.8647461, 3.5996094, -1.0683594, 0.35229492, -1.0615234, -1.5039062, -1.3994141, 2.4824219, -1.7841797, -3.4511719, -0.35986328, 1.4365234, -0.69189453, 1.4902344, 1.1025391, 0.6152344, -2.0839844, -3.1308594, -1.1162109, 0.5864258, 0.2770996, 2.0429688, -0.54003906, 2.0136719, 0.44580078, 1.0517578, 1.2998047, -1.2871094, 0.08166504, 0.21398926, -1.1074219, -0.93896484, -1.3818359, 0.16699219, -2.4628906, -1.8808594, 0.61083984, 0.6875, 0.54248047, -0.20153809, -0.6723633, -1.1669922, -2.8261719, -0.61035156, 1.7617188, -1.0585938, -0.08843994, 2.2363281, 0.7866211, 1.1669922, -0.32177734, 0.53125, -2.1933594, 2.328125, 1.46875, 1.1552734, -1.0839844, 1.3583984, -2.4550781, -3.640625, -1.3720703, -0.30688477, 0.009811401, -0.3623047, -1.8564453, -2.2675781, 3.3125, -2.1054688, 0.6020508, -2.7285156, 1.0195312, -1.2460938, 0.37158203, 1.8789062, -0.052764893, -0.0748291, 2.2363281, -1.3769531, -1.4189453, -1.1621094, -1.0029297, -4.7460938, 1.0097656, -0.3305664, 0.26367188, 0.44555664, -0.94628906, 0.42407227, 1.3310547, 2.9121094, -1.1279297, -0.056549072, -1.1679688, -1.4394531, -0.15185547, -1.6083984, 0.47802734, 1.6972656, 0.06304932, 2.0917969, 2.5214844, 2.1855469, -0.42529297, 0.3395996, 0.050109863, -1.6787109, 0.44726562, -0.6020508, 1.1210938, 0.2783203, 0.031341553, 1.2900391, -1.6220703, -1.2460938, -1.7773438, -2.5761719, 0.46972656, -0.9736328, 0.67333984, -0.33862305, 2.078125, 2.0898438, -0.5644531, 1.3330078, 1.9003906, 0.6635742, 0.48461914, 1.1591797, -1.6972656, 3.1796875, 1.6640625, -1.9384766, -1.4511719, -1.9570312, -0.1550293, 2.5625, 0.5180664, -0.13903809, -0.41918945, -1.5849609, 1.6845703, -0.5126953, 0.44555664, 0.52441406, 0.33813477, 0.9892578, 0.52490234, 0.42382812, -0.09197998, -1.4785156, 0.09906006, 0.2890625, -1.5908203, 0.4494629, 2.3417969, -1.3408203, 0.4404297, -1.5527344, 0.99560547, -0.6982422, -1.9902344, 1.0693359, -2.7832031, -0.3696289, -0.65625, 0.47070312, -3.5996094, 3.0449219, 1.0068359, -0.42626953, 0.66064453, 0.63720703, -1.1787109, -0.6660156, 1.2919922, -0.36157227, -0.46875, 0.39135742, 1.4091797, -0.53564453, 0.7553711, -3.3828125, 3.1523438, 0.25878906, 3.6621094, 0.84277344, 0.55029297, -0.41137695, 2.6445312, 4.546875, 0.32958984, 2.125, 0.22216797, 1.2099609, 1.2148438, 2.0976562, 1.6025391, -1.3691406, 1.2294922, 1.7441406, 0.038726807, 0.3088379, -1.9355469, -1.2509766, 0.20227051, 1.5810547, 1.0302734, -0.6020508, -0.7363281, -0.5722656, -0.7871094, -0.1373291, 2.3789062, -1.5800781, 1.4755859, -1.0322266, 0.67285156, 1.7119141, -1.1435547, 1.1533203, -0.47387695, 0.7133789, 0.34179688, -0.20666504, 1.6025391, -0.18884277, -1.84375, -0.20959473, -1.3193359, 0.7011719, -1.5498047, 1.0371094, -0.78027344, 0.6010742, 1.3867188, -0.67089844, -0.8417969, 1.4033203, -2.4492188, 0.78027344, -0.034606934, 2.3242188, 1.6904297, -1.7480469, 2.4726562, 1.2939453, -0.5566406, -5.28125, 2.6210938, 0.10583496, 0.5595703, -0.34960938, -2.7851562, 1.7607422, -1.2900391, -0.8364258, -1.8007812, 0.6660156, -0.06402588, -1.9785156, 1.4384766, -0.1295166, -2.6230469, 1.7626953, -0.07080078, 1.0615234, 0.89208984, -0.07312012, 1.4560547, 0.4182129, 3.4042969, 0.6113281, -1.0058594, -1.7880859, 2.5976562, 1.2646484, -1.8056641, -0.5541992, 3.140625, 0.5336914, 0.46240234, 1.3886719, -2.4335938, 2.8417969, 1.6269531, -1.7753906, 0.52685547, -2.8925781, 0.90625, 1.0449219, -0.57373047, -0.67089844, -1.4941406, 0.046081543, 1.8662109, -2.4550781, -0.8779297, 2.4746094, -1.0185547, 0.62402344, -2.2070312, -1.4648438, -4.3632812, 1.0878906, 0.20617676, 0.14733887, -1.0478516, -0.3947754, 1.8515625, -0.55859375, -1.2558594, -0.79345703, -0.48461914, -0.35668945, -0.80615234, 1.3984375, -0.66748047, -1, 0.024719238, -2.234375, 1.0185547, 1.5390625, -0.45532227, 1.4970703, -1.7539062, 0.36669922, -0.15344238, -1.5322266, -0.8730469, 0.31884766, 0.3408203, -0.39770508, 0.36157227, -2.8300781, -1.6953125, -0.828125, -1.8095703, 2.09375, 0.20019531, -0.8300781, -0.35473633, 1.0097656, 3.8144531, -1.8466797, -0.9824219, -0.094177246, -2.1679688, 0.23400879, -0.074401855, -0.6723633, 0.14611816, -0.15771484, 1.1269531, 2.5859375, 0.45117188, 0.07312012, -0.44702148, 0.87597656, -0.80908203, 0.18859863, -0.14208984, -1.3544922, -2.1230469, -0.83447266, 0.64404297, 3.796875, 1.0634766, 1.1181641, -2.1152344, -0.7128906]}, "B088P94WNH": {"id": "B088P94WNH", "original": "Brand: Mr. Heater\nName: Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack)\nDescription: Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You'll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you'll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.\nFeatures: Compact but powerful with 3800 BTU of heat\nIdeal for decks, patios, campsites, fishing, hunting, and emergency situations\nHeats any space of up to 100 square feet\nUses 1 pound disposable propane tank as fuel source\n45 degree heating angle helps direct radiant heat where you need it most\n", "embedding": [-0.06652832, 1.6914062, 3.2851562, 1.9511719, -1.8310547, 2.1542969, 1.7089844, -0.9501953, 0.86376953, 2.8789062, 2.1113281, 0.4963379, 1.3837891, -1.5566406, 0.1743164, -1.9814453, 1.6982422, 0.27172852, 1.5341797, -0.56152344, -0.14013672, -1.6630859, 1.3398438, -1.5839844, -0.6484375, 0.9633789, 2.5976562, -1.7353516, -1.6611328, 0.53027344, 0.98876953, 0.24963379, 0.02961731, 1.2988281, -0.9091797, -1.1494141, -3.515625, 0.11212158, -2.515625, -2.2050781, -2.2890625, -1.3867188, 0.36645508, -0.40478516, -1.9921875, -0.22998047, 1.5810547, 0.19104004, 1.5595703, 0.49169922, -0.21264648, -1.0400391, -1.6982422, 1.0185547, -2.8789062, -0.22485352, -2.1699219, -4.1953125, 2, 0.28833008, 0.98828125, -1.5146484, -0.89404297, 1.4785156, 1.3564453, 1.0351562, -1.9716797, 0.7524414, -0.96972656, 1.3515625, 3.0664062, 0.6826172, -1.9697266, 0.023864746, 0.55810547, 0.5239258, -2.2910156, 0.62109375, 5.5429688, 1.5771484, -1.1894531, 0.90527344, -0.79003906, 1.6005859, -0.7397461, -0.23461914, -0.86865234, 1.2636719, 3.0644531, 3.0019531, -0.57373047, 1.6728516, -1.2451172, -3.0371094, 1.4101562, -3.2382812, 1.2089844, 1.0966797, 1.2773438, 2.2792969, 0.017242432, -0.07849121, 0.3642578, -0.82421875, -0.64697266, -1.0039062, 0.18078613, 1.9814453, -0.42529297, 3.5878906, -2.7636719, 2.3808594, 3.5976562, -0.43359375, -3.4296875, -0.9145508, -0.6435547, 2.6113281, 6.4375, 2.0078125, 3.7402344, -1.1816406, 2.9335938, -2.4648438, 0.93847656, 0.18225098, -0.7192383, 0.016738892, 1.1357422, -1.0605469, 0.6123047, 0.65283203, 0.8364258, 0.13623047, 0.5175781, -2.7539062, -2.1035156, -1.7148438, -3.2792969, -3.15625, -0.17041016, 0.67626953, 1.9970703, 1.1230469, -2.3710938, -2.2929688, -0.67529297, 1.2451172, -0.0047454834, -1.5097656, 1.2402344, -2.2617188, -2.5605469, 0.72558594, -0.28979492, 3.1367188, 0.07293701, 1.2080078, 4.0859375, 2.3183594, 1.0683594, -0.71533203, -0.10681152, 0.73583984, -0.26000977, -3.2871094, 1.8691406, 0.1430664, 0.011329651, 2.3964844, 1.6347656, -2.6875, 0.1977539, -2.1230469, 0.25976562, -2.4042969, 0.38720703, 1.9257812, 1.0644531, -2.0546875, -4.6054688, 0.35986328, 1.3339844, 1.0917969, 0.9946289, -1.0390625, -2.9960938, 0.38745117, 0.09967041, -0.7158203, 0.11193848, 0.21899414, -0.04562378, 0.11859131, -0.15783691, -1.6162109, -1.2382812, -2.2636719, 3.4707031, 2.1777344, -1.5878906, -0.6479492, -0.3178711, -1.7900391, -2.3378906, -2.5898438, -0.16333008, -1.8017578, 0.8823242, 1.625, -1.4980469, 0.8066406, 2.8847656, 0.6308594, 0.6176758, -0.099365234, 1.0068359, -0.29614258, 2.2226562, 3.3417969, -0.48168945, 0.6616211, 0.52734375, 1.7060547, -1.5498047, 2.3925781, 0.6821289, -2.2734375, -0.10900879, -1.6181641, 2.2421875, 0.9428711, 1.6757812, -0.3737793, -1.8847656, 2.5957031, 1.2353516, 1.1855469, 0.86376953, -0.64160156, -0.6738281, -1.7646484, -0.43041992, -1.1142578, -0.8457031, 2.6523438, 0.0007171631, 0.9082031, 0.34423828, -0.33374023, 0.5776367, -1.5136719, -0.58251953, -2.3574219, -2.7636719, -0.25854492, 0.6098633, 0.55029297, -0.88623047, -1.2412109, 1.6660156, 1.4541016, 0.103149414, 1.8847656, -0.049468994, -0.62060547, 3.1777344, 2.4316406, -1.7021484, 0.5996094, 0.73779297, 3.4550781, 0.67578125, 1.9697266, 0.53222656, 0.8725586, -0.40283203, 3.3769531, -3.3261719, 0.5722656, 1.2001953, -0.38891602, -1.4228516, -1.4072266, -1.0517578, 0.6533203, 1.0322266, 0.62597656, 0.08660889, 1.1142578, 3.5917969, 0.098083496, -1.03125, 0.18676758, -1.2421875, 2.1425781, 2.0292969, -0.99902344, 1.59375, -0.47558594, 3.1523438, -0.27026367, -3.5507812, 0.7758789, -1.1953125, -2.4355469, 0.17980957, -1.7988281, 1.3730469, -0.38671875, 0.92578125, -1.0615234, -0.9707031, -1.9951172, -3.7851562, -0.8598633, 2.5, -3.6777344, 1.5087891, 1.578125, 0.53027344, -0.7133789, -0.025039673, -1.6474609, -0.07354736, -0.2043457, -0.28759766, 0.80126953, -0.9658203, -0.77734375, -0.2524414, -1.3388672, 2.453125, -2.1542969, -2.8085938, -0.47973633, -0.3232422, -2.5449219, 0.54541016, -1.5332031, -1.4667969, 1.6601562, -1.5449219, 1.7705078, 0.74902344, -1.7529297, -0.3359375, 1.3925781, -0.8496094, -1.4199219, -0.113708496, -0.9345703, -2.1425781, -5.8242188, 0.99902344, 1.65625, -1.0136719, -0.26538086, -1.6425781, 1.4794922, -1.9716797, -1.5078125, 1.1230469, 0.4338379, 0.026870728, -1.6396484, 2.0429688, -4.6757812, 1.7197266, -1.4482422, -1.1962891, -1.9130859, -1.7480469, -0.22839355, -1.8798828, 3.8046875, 0.07928467, 3.0039062, 1.3632812, 0.69873047, -0.117004395, 0.23852539, 1.3740234, 0.4272461, -3.2226562, -1.3300781, -1.8779297, -2.3886719, -1.3232422, -2.7539062, 0.45214844, -1.1601562, -1.9873047, 0.0044288635, -1.4570312, 0.060760498, -0.7246094, -1.5253906, 0.062683105, -1.4951172, 0.050201416, 0.07019043, -0.5390625, -2.3945312, 0.4453125, -1.1767578, 0.7602539, -2.6621094, 0.6455078, 0.85058594, 0.19665527, 1.5566406, -1.03125, -0.15258789, 0.5625, -5.0898438, 2.2460938, 3.7539062, 0.7841797, -1.5537109, -0.9345703, -2.046875, -1.0390625, -0.99072266, 1.9941406, -1.4814453, 3.3007812, 0.7373047, -0.7919922, 0.083984375, 2.5390625, -2.3457031, 0.26879883, -0.7475586, 2.2304688, -2.75, -0.62646484, 1.1591797, 2.5664062, -1.6787109, 0.8251953, 1.9794922, -1.03125, 0.5410156, 0.24768066, -0.4975586, 1.3164062, 2.0957031, -0.796875, 2.7773438, -0.52490234, -1.1142578, -2.1933594, 0.6982422, 1.2832031, 3.0820312, -3.0820312, 0.47583008, 0.16870117, 2.5390625, -1.7246094, -2.9589844, 1.0478516, 0.5317383, 0.39941406, 0.84814453, 1.7021484, -0.13122559, -0.20690918, -1.1455078, 2.2890625, 2.2832031, 0.08306885, -0.8095703, 2.3066406, 1.0947266, -2.9492188, -0.73876953, 0.6713867, -0.07397461, -1.1982422, 0.6166992, 0.18200684, 0.5961914, 0.66259766, -3.0820312, -2.4121094, -0.9526367, -0.5107422, -1.7099609, -1.7470703, 1.3144531, 1.1845703, -0.26416016, -0.01322937, -3.6113281, -0.86328125, -1.6298828, 2.6835938, -0.93603516, -1.296875, -1.1787109, 0.3400879, 0.9399414, 1.2568359, -1.1894531, -2.6035156, -1.3046875, -2.2421875, 0.64990234, -0.6279297, 2.3847656, 0.9716797, -2.4199219, -0.32910156, -2.8691406, -0.68652344, 1.4589844, -1.5888672, -0.56152344, 3.6035156, -0.36279297, 2.2285156, -0.4802246, 3.3203125, -1.7685547, 1.2529297, 2.4960938, -0.6323242, 2.0664062, -0.6484375, -5.2929688, 1.546875, -1.3603516, 0.8510742, 2.6777344, -1.9003906, 0.4375, -0.60009766, 0.48095703, -0.24072266, -3.6953125, -2.1582031, 0.7944336, -3.3261719, 1.5292969, 2.1640625, -1.0546875, -2.7070312, -1.2900391, -0.32226562, -0.46362305, 1.1669922, 0.8095703, -0.2722168, 1.9033203, -1.0507812, 1.4150391, -1.078125, 1.1005859, -0.39672852, 0.050201416, -0.76171875, -1.7060547, 1.7900391, -0.10192871, 0.16918945, 0.13671875, 4.421875, 0.29956055, -2.6796875, 0.6303711, 2.4101562, 1.4521484, -0.21813965, -1.9111328, 0.6357422, -1.3740234, -1.5507812, 0.4909668, -0.59277344, -0.5131836, -1.5068359, 0.9448242, 1.5185547, 1.0390625, 2.3378906, 1.5498047, -1.5126953, 1.2021484, -1.1884766, -1.328125, -1.7353516, 0.26953125, -3.0234375, -0.45532227, 1.3203125, -0.8276367, 0.79052734, -1.3378906, 0.07550049, -0.07672119, 1.3769531, 2.2089844, 2.8632812, 1.6298828, 0.11627197, -0.5991211, 1.5927734, -2.1699219, 0.4152832, -0.92333984, 0.68896484, 1.4101562, 0.77783203, 2.4550781, -1.6630859, 1.7265625, 0.38378906, -1.7626953, 2.1582031, -0.03302002, 1.3505859, -0.6826172, -0.9746094, 1.5, -0.2043457, 3.7402344, -1.6328125, -0.0084991455, 0.14709473, 0.8203125, -0.99609375, -0.47143555, 0.6484375, -0.7636719, 1.1943359, 0.06756592, 0.55908203, -0.4597168, 0.59765625, 2.5703125, 2.1015625, -0.44702148, -2.0332031, -1.2949219, 1.1875, -0.40161133, -0.40063477, 2.4667969, -2.2929688, 0.6142578, 1.9414062, 1.5273438, 1.9716797, 0.10998535, 1.8828125, -1.7675781, 0.7919922, 1.9638672, -0.2932129, 3.1777344, 1.1328125, -2.2285156, -0.28125, 3.3789062, 0.6308594, 2.3457031, -2.4199219, -1.7246094, -0.30249023, -1.9746094, -0.54589844, -2.90625, 0.6088867, -1.4677734, -1.4082031, -0.3359375, -0.5258789, 3.6523438, 2.3867188, 0.10662842, 0.35742188, 1.7626953, 0.14868164, -0.31762695, 0.5332031, 0.43554688, -0.4501953, -0.25146484, -0.19091797, 0.76660156, 1.4072266, 1.0224609, 0.52197266, -3.5722656, -0.96777344, -2.3125, 2.078125, -2.0332031, -1.2158203, 1.5634766, 2.1933594, 0.49365234, -0.6513672, -3.0410156, -1.6484375, 2.0761719, -1.4121094, -0.08874512, -1.2412109, -1.6865234, -3.515625, -3.3789062, 0.12487793, 2.0996094, -1.1806641, 1.0947266, -0.87109375, -2.5371094, 0.12890625, 0.5722656, -0.017120361, -0.7392578, 2.2714844, -1.8701172, 1.140625, 1.234375, -1.2333984, 0.09075928, 1.8974609, -1.1025391, 0.7910156, -0.76220703, -1.8496094, -2.2832031, 0.82910156, -0.5288086, -1.6894531, 1.7753906, -0.40356445, 0.6904297, 3.5507812, 1.2558594, -2.0722656, 0.8300781, -1.1845703, 0.14526367, 1.734375, -2.6816406, 3.0878906, 0.94628906, -0.8276367, -1.5947266, 1.5478516, 3.6484375, 1.0966797, -0.14196777, 0.35424805, -0.22314453, 0.99853516, 1.9208984, 0.11254883, -2.2421875, 0.9345703, 0.94140625, 1.1181641, 0.54052734, -3.8046875, -0.60546875, -1.1191406, -1.7861328, -0.5966797, 0.06201172, 0.87353516, 0.3515625, -1.7119141, 2.1621094, 0.16711426, 2.3515625, -1.7646484, -0.3227539, 0.31396484, 1.3945312, -0.44580078, -0.5488281, -2.7597656, -2.7109375, -0.8276367, 0.82421875, -0.15209961, -0.6582031, 0.6635742, -2.4492188, 0.3125, -0.92626953, 2.4160156, 2.0957031, 1.3769531, -1.7978516, 0.8276367, 1.0019531, -0.7583008, -0.66845703, -0.2705078, 2.2714844, -0.57373047, 3.1894531, 1.6552734, -1.3388672, -1.6601562, -0.009651184, 2.2050781, -0.1619873, -2.1542969, 2.7382812, -4.1523438, -0.5678711, -0.66845703, -0.22607422, -2.1425781, 0.68603516, 1.0605469, -0.73291016, 0.8354492, 2.4785156, 0.101135254, -1.4482422, 1.1914062, -0.23022461, -0.7011719, 0.5751953, -0.5205078, -1.1669922, 2.1210938, 0.7133789, 3.9082031, 2.1132812, 0.3876953, 0.11529541, 2.1523438, 1.1425781, -0.32006836, 3.3964844, 1.8134766, 1.5195312, 0.20959473, 1.0166016, 1.7314453, -0.06311035, 2.8378906, -2.1699219, 0.34448242, 0.89404297, 0.73779297, -0.70947266, -0.64501953, -0.5883789, -0.89160156, -1.0761719, -2.0214844, 0.06286621, 1.0771484, -0.9633789, 0.80859375, -0.34057617, 1.0380859, -2.7011719, 2.4628906, 1.5625, 1.109375, -1.0126953, 1.1289062, 0.62890625, -0.75927734, 1.1552734, 0.94384766, 0.9746094, 1.8134766, -1.2646484, 2.1757812, 1.5410156, -1.2998047, 0.2788086, 4.1015625, 1.0791016, 1.6269531, -0.011299133, 0.6201172, -1.109375, -1.9003906, -0.9760742, 0.7416992, -2.3671875, -1.0078125, -0.30371094, 4.2148438, -0.8725586, 0.17944336, 0.14819336, -1.3017578, -2.3203125, 0.8378906, 0.828125, -0.40673828, -1.171875, -1.3876953, 3.7148438, -1.8828125, 0.8022461, -0.12322998, 1.3896484, 0.3161621, 0.5957031, -1.9003906, 2.1699219, 0.18811035, 3, -1.015625, -0.66796875, 0.4963379, 0.0814209, -0.21081543, -0.59765625, -0.16003418, -1.6054688, 1.4853516, -1.2509766, 0.22790527, 1.6474609, -0.34838867, 0.16345215, 0.94921875, 0.09411621, -0.28637695, 2.0605469, -1.2353516, 0.7392578, 0.17614746, -0.0057525635, 0.030303955, -0.66552734, -1.0507812, -1.0419922, -1.0761719, -0.41088867, 1.1572266, 0.30639648, 1.0878906, -3.1132812, 1.3076172, 2.9980469, 0.26171875, 0.33251953, -0.5019531, -2.953125, -0.35864258, -1.1630859, -2.2480469, -0.7138672, 0.6123047, -0.82421875, -0.98876953, 0.97802734, 0.81884766, 0.5551758, -3.0214844, -2.4746094, 0.9614258, 0.8491211, -0.45581055, 0.4165039, 0.25439453, -2.1621094, 0.57958984, 1.2382812, 2.0097656, -0.17980957, -0.2241211, -2.015625, -1.78125, -0.15344238, 0.8535156, 3.5039062, 3.0019531, 0.08581543, 1.84375, -2.6523438, -3.1074219, -2.9707031, 0.08392334, -1.0039062, 0.2902832, -0.55126953, 0.84716797, 0.14196777, 0.38745117, 0.45483398, 1.2636719, -0.36401367, -0.4477539, 1.3046875, 2.7792969, -0.021224976, 0.52978516, 1.2285156, -0.7114258, 0.49121094, 1.3183594, -0.77734375, 3.1796875, -1.2949219, 1.9228516, -2.0683594, 0.4675293, -1.4736328, -0.74609375, -0.07281494, 0.23828125, 1.3076172, 0.060577393, -0.28515625, -4.8398438, 0.43310547]}, "B07NPYMSW8": {"id": "B07NPYMSW8", "original": "Brand: Hot Sox\nName: Hot Sox Boys' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth\nDescription: \nFeatures: 60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex\nImported\nPull On closure\nMachine Wash\nThese BBQ food socks are also available in men's and women's socks\n", "embedding": [-0.3552246, 1.1806641, 1.1679688, -0.2902832, -0.9946289, -3.3046875, 2.4609375, -0.035949707, 0.77734375, 0.5444336, 0.2644043, 1.9394531, 1.0537109, -2.6796875, -0.09069824, -2.5957031, 0.6220703, 0.07330322, -0.9472656, 0.67285156, 2.1152344, -0.66064453, 1.8730469, -4.2148438, -2.8339844, 3.5488281, 3.609375, 0.3737793, 0.49316406, -1.1855469, 0.24450684, 0.22180176, 1.6435547, 1.4707031, -2.4199219, -0.5854492, 0.059509277, -0.39892578, -0.99902344, 1.4951172, -0.95751953, -2.8046875, 0.5908203, 5.2617188, -3.3164062, 0.6982422, 1.7763672, 3.2929688, -1.7421875, -0.48388672, -0.20117188, 0.4987793, -2.1679688, 0.85498047, 0.37451172, 3.3261719, 1.1630859, -1.0166016, -1.3203125, -0.22888184, -0.48486328, -2.1796875, -0.42041016, 0.71484375, -2.1640625, 2.7324219, -1.9814453, -1.7412109, -0.092163086, 0.98779297, 0.44702148, 0.38232422, -2.6855469, -0.5258789, 0.3125, 1.6757812, -4.046875, 1.6162109, -0.14807129, -2.3886719, -0.66503906, 1.203125, 0.17163086, -0.37109375, -0.18371582, 0.13952637, -1.1582031, -1.5244141, 0.3959961, 0.7363281, -1.546875, 1.984375, -2.046875, -3.2675781, 0.4033203, 0.11175537, 0.5961914, -0.5258789, 1.2958984, 0.8261719, -0.014755249, -2.8535156, 0.4802246, 0.83984375, 0.73535156, -2.0722656, -0.3708496, -0.68652344, -1.0302734, 0.78808594, -1.9013672, 0.3840332, 3.1308594, 0.93847656, 2.3632812, -1.6923828, 0.3330078, -1.7929688, 0.45458984, -0.89697266, 2.9433594, 0.08843994, 2.2773438, 1.0371094, 0.8964844, -0.63671875, 1.6298828, 1.0849609, 2.078125, -0.1619873, 1.3232422, 0.59472656, -0.027648926, -1.515625, -0.57470703, -2.1621094, -2.1015625, -1.9560547, -1.2138672, 0.43823242, -2.0390625, -2.7890625, 0.18115234, -1.4667969, -2.28125, -1.2949219, -0.2800293, 3.4882812, -1.9052734, -2.2851562, 0.21264648, 1.4501953, -1.4873047, -0.13256836, 1.5380859, 0.04888916, 1.9912109, -0.28198242, 0.56689453, -1.5839844, 2.6855469, -1.1523438, 1.1103516, 0.5810547, -1.0283203, -0.87109375, -2.4980469, -1.7412109, -1.3242188, 1.1894531, 0.70996094, -0.5522461, 2.1425781, -3.4570312, 0.61816406, 0.1829834, -1.9638672, 1.875, 0.6933594, -0.04345703, 1.4257812, -2.7128906, 2.6015625, 3.4394531, 0.9145508, 0.10595703, -0.45654297, 0.32421875, -0.9375, -0.7480469, -0.74072266, -1.6328125, 0.52490234, 2.4199219, 0.4169922, -1.2509766, 0.6972656, -0.29760742, 3.6640625, 1.6191406, 0.72753906, -0.20007324, 2.9980469, 1.3476562, -1.9082031, -2.171875, 0.49804688, 0.48828125, 1.2998047, -0.39624023, 1.6708984, -2.4003906, 0.25219727, 2.9296875, -1.328125, 0.46533203, 2.4980469, -1.1269531, 3.6894531, 2.1484375, -0.30981445, 0.2680664, 0.20788574, -2.0800781, -0.5913086, -0.9121094, 1.3935547, 0.010650635, -0.58691406, -1.0673828, 2.1152344, 2.3320312, -0.008934021, 0.059295654, -0.9003906, 1.9296875, 0.71728516, -0.84277344, -0.7416992, 1.0292969, 2.234375, 2.8828125, -3.9667969, 0.13342285, -1.9052734, -0.3544922, -1.2929688, 1.6611328, -1.9052734, -0.4008789, 0.4309082, 1.3115234, 0.8354492, 0.9609375, 0.20080566, -1.1445312, -0.4638672, 0.5073242, -2.9394531, -1.1875, 1.5957031, 0.6850586, -2.5742188, 1.8583984, 1.4560547, -0.5048828, 3.0351562, -0.09631348, -1.6220703, -1.6064453, 0.6904297, 0.8359375, 0.8725586, -2.296875, -0.21228027, 2.2421875, -0.5541992, 2.25, -0.73583984, -0.8261719, -1.0927734, -0.28076172, 0.4572754, -0.111450195, 1.7177734, -0.10394287, -2.3964844, -1.5244141, -1.4501953, 1.0800781, 2.4980469, 0.42456055, 1.4345703, 2.6484375, -2.1347656, -0.17016602, 1.3408203, 1.1289062, -1.859375, 0.15441895, 0.7319336, 2.0527344, -0.11004639, -0.9633789, -0.90527344, 0.7260742, 1.0361328, -0.7558594, -0.60839844, 1.5341797, 0.043029785, -2.1425781, 1.1083984, 1.2119141, -1.5849609, -0.90625, 0.77490234, 0.1751709, 1.5595703, -0.49267578, 1.7314453, -0.16503906, 2.3085938, -1.6904297, 0.87060547, 3.0214844, -3.6210938, 1.0234375, -1.9179688, -2.1171875, 0.01727295, 0.44140625, -1.5673828, -1.8291016, -0.5053711, -0.44091797, -1.5429688, 0.8598633, 0.7626953, 1.1201172, -0.3935547, 1.3642578, -0.6796875, 0.6274414, -0.30200195, -2.4355469, -1.9970703, -1.5410156, 0.45458984, -1.0214844, 0.54589844, 1.2021484, 0.9145508, -3.5214844, -0.6645508, 0.05593872, -1.8369141, 0.75390625, -4.3671875, -0.7348633, 1.5625, -1.0136719, 0.2866211, 0.83447266, -0.11193848, 0.21606445, -0.68408203, -3.9609375, 1.3671875, 0.61865234, -1.7724609, -2.6914062, -0.021469116, -2.4589844, -1.2431641, 2.0351562, 1.609375, 5.2460938, -0.8046875, 1.5341797, -1.9785156, 1.9082031, -0.79052734, 0.43408203, -0.59277344, -0.5957031, -0.40893555, 0.20446777, -0.26538086, -2.2890625, 1.5595703, -1.0332031, 2.3789062, 0.60546875, 2.765625, 0.23583984, -2.3457031, -0.54003906, 0.25561523, 0.38671875, 0.53027344, -0.24926758, -0.36206055, -0.2541504, -2.8125, -1.3779297, -0.5878906, 0.4482422, 2.7890625, 0.61035156, 1.2802734, -0.5595703, -0.051971436, -0.7705078, 0.97998047, -0.5839844, 3.875, 2.109375, -0.5678711, -2.7226562, -0.9863281, 0.56689453, -0.71191406, 1.0742188, 0.8925781, -0.45166016, 3.375, 2.5839844, -0.6352539, -0.77001953, 2.9902344, -1.2822266, 1.4121094, 3.015625, 0.2980957, 3.71875, -1.609375, -0.2154541, 0.091552734, -1.9453125, -0.04458618, -0.8276367, 3.2714844, 0.34399414, 0.8642578, -0.093566895, -1.4111328, 0.009056091, 3.1894531, -1.0253906, -2.0214844, 0.043823242, 1.890625, -1.828125, 1.0195312, 2.9960938, 1.8642578, 1.0117188, 2.2675781, 0.7416992, 0.5620117, 0.73339844, -0.13623047, 2.6171875, -1.6416016, 2.0390625, 0.9169922, 1.6416016, 1.5517578, 1.3867188, 0.5058594, 0.84765625, -1.5605469, -0.45361328, 2.25, -2.1542969, -2.09375, 0.2401123, -0.99853516, -1.1582031, -1.1679688, 0.029129028, -2.5195312, -2.0585938, 0.21911621, -1.0195312, -2.0839844, -2.0605469, 2.3847656, -2.078125, -0.1262207, -2.0097656, 2.1601562, -0.57373047, -1.4541016, 1.5058594, -0.625, -1.5605469, 1.296875, 2.2109375, 0.5292969, 1.3710938, -0.42041016, -0.38891602, 4.2304688, -0.47485352, -2.6367188, -2.2460938, -1.0410156, 2.8222656, -1.6035156, -0.9902344, 1.0986328, -1.0507812, -0.18859863, -3.2109375, 0.81640625, 2.4335938, -2.2929688, -1.0136719, 3.5722656, -1.4804688, 0.82910156, -0.57373047, 0.8569336, -0.93603516, -0.23913574, 3.2773438, -2.0878906, 0.57910156, 0.87597656, -3.4082031, -2.1347656, 0.29077148, -0.5161133, 3.265625, 2.0390625, 0.6225586, 3.8789062, 1.7773438, -0.6347656, -0.8408203, -0.90527344, -0.9472656, -0.69189453, -0.9848633, -0.59814453, 0.8154297, -0.67626953, -1.6787109, 0.55810547, -2.5976562, 1.140625, -1.0029297, -1.0576172, -0.80322266, -0.7011719, 0.18688965, 0.99902344, -0.5205078, -0.73095703, -0.2824707, 0.015930176, 1.4365234, -0.68652344, 0.9663086, 0.10473633, -2.328125, 3.4765625, 0.06304932, 0.55810547, -3.2558594, 0.022598267, -0.32958984, -1.4033203, -0.13513184, 0.084350586, 0.25048828, 1.4433594, -0.6816406, -1.015625, 0.43188477, 0.6660156, -0.75878906, 0.77001953, 1.1875, 2.6757812, 0.91552734, -1.8554688, 0.6176758, -1.2978516, 0.35473633, 0.6816406, -0.23718262, 0.65185547, 2.609375, 1.9775391, -0.88964844, 1.1787109, 0.9506836, 3.078125, 2.3730469, -1.5898438, -0.55029297, -0.4958496, 2.9765625, -2.5722656, -0.74853516, -1.0634766, -3.5976562, 2.3105469, -0.94140625, -2.4941406, -3.0527344, -0.45532227, 1.5078125, 0.58496094, 0.96484375, -0.45922852, 0.97558594, 0.83935547, -2.1074219, -0.74072266, 0.4892578, 1.0605469, -0.5234375, -2.9511719, 1.1533203, 1.5605469, -1.1953125, 3.6425781, 0.039123535, -0.46191406, 2.28125, 0.96728516, 1.3730469, 1.7558594, 1.0332031, -1.1689453, -0.97021484, 1.0117188, 0.85302734, 2.4121094, 0.18383789, 1.8349609, -0.6323242, 2.0136719, 0.15307617, -1.359375, 0.5341797, -0.22106934, -0.06781006, 2.75, 1.6191406, -0.7705078, -0.43408203, 2.5507812, -0.93652344, 0.65966797, -0.6040039, -0.1850586, 0.7026367, 0.5336914, -2.8085938, 1.6611328, 0.028274536, -0.1459961, 2.4609375, -0.38427734, -1.9394531, -0.6953125, -1.0625, -0.3232422, -1.5683594, -2.6855469, 1.4326172, 1.4394531, 0.16040039, -3.3808594, -0.5571289, 3.1738281, 1.8642578, -1.2900391, -1.1152344, -1.6054688, -0.087768555, -0.7426758, 0.39282227, 0.59375, -1.1337891, 1.9013672, 1.8007812, -0.1586914, 1.2373047, 2.671875, -2.0742188, 2.7148438, -3.140625, 1.8017578, -2.0351562, -0.6513672, 2.7890625, -0.3852539, -1.2382812, -1.6191406, -0.5258789, 2.1738281, 0.033416748, 0.10021973, -1.3076172, 0.63623047, 1.3769531, -1.4824219, -4.9414062, -0.3857422, -0.057556152, 2.2929688, -1.171875, -2.0585938, 1.1748047, -0.43530273, -2.4765625, -1.015625, -0.9536133, 0.68115234, -0.14709473, -1.4384766, 1.7011719, -1.0966797, -1.953125, 0.4008789, -0.72998047, 1.4453125, 1.2587891, -2.1953125, -0.62402344, 0.29101562, -4.3085938, -1.3945312, 1.9052734, 1.4443359, 1.5566406, -0.9223633, 2.1289062, -1.0146484, 3.6035156, -2.4316406, 1.5458984, -1.7070312, -0.99316406, 1.0214844, -1.5605469, -0.25073242, 0.8071289, -2.6347656, 1.5839844, 0.17236328, -2.3164062, 1.8945312, -0.8017578, 0.9199219, -1.3193359, 0.38500977, 0.7661133, 0.56152344, 3.0332031, -0.49047852, 0.6118164, -2.8476562, -1.5400391, -1.6279297, -0.28979492, -1.2509766, 0.2241211, 1.0126953, 1.7929688, 0.71435547, 2.0117188, -1.9111328, 3.15625, 0.07952881, -0.7866211, -1.5517578, 1.0009766, 2.2402344, 1.0361328, -4.3945312, 0.033050537, 1.0898438, 2.7734375, 0.13537598, -1.7939453, -3.0761719, -0.31860352, -2.9160156, -1.234375, 1.1728516, 2.0664062, 2.1699219, -0.22729492, 0.6171875, 1.1611328, 0.70703125, -0.06976318, 0.59277344, 1.0625, -1.6298828, 2.4140625, 0.9160156, 0.06970215, -2.7304688, 0.9375, -0.07043457, 1.7255859, -0.8544922, -0.34448242, 0.06750488, 1.8701172, 0.26220703, -3.3984375, 0.5151367, -0.48364258, 1.1044922, -0.66064453, 0.1105957, 1.5361328, -1.1855469, -0.6352539, 0.8569336, 0.8886719, -2.2265625, -0.6376953, 0.17370605, -1.3994141, 2.3652344, -0.7558594, 1.3974609, 2.0996094, -2.234375, 0.20373535, -0.88623047, 0.3400879, 3.140625, 1.6923828, -0.22021484, 1.9433594, -0.079956055, 0.23071289, 1.4589844, 2.8144531, -0.2006836, -2.7402344, 0.9819336, 1.4160156, -1.7548828, 0.69189453, -0.8696289, 0.28344727, -0.47143555, -0.15344238, 0.2055664, 1.3662109, 1.0888672, -0.48486328, -0.16040039, -0.20214844, 0.14001465, -1.5917969, 1.4599609, -2.9824219, -1.4541016, -1.28125, 0.7973633, -0.44580078, 0.7006836, -0.64697266, -2.2597656, 1.4296875, 1.9677734, -1.6552734, -1.4023438, 2.03125, -1.1025391, -0.7084961, 0.9838867, 2.0683594, 1.7148438, 2.7734375, -2.9296875, 2.2558594, -0.703125, -0.07800293, -1.3632812, -0.75878906, 0.11279297, -0.7475586, 0.0715332, 0.53222656, 0.6220703, -1.6083984, -0.68359375, -0.39624023, 1.9833984, -0.5029297, -0.5136719, 0.34155273, -4.8007812, -1.46875, 2.4550781, 1.7578125, -0.18359375, 1.6875, 1.5419922, -0.6904297, 0.3395996, -0.12719727, 0.6142578, 2.0117188, -0.68115234, -0.8886719, -0.4897461, -0.035217285, 1.9296875, 1.1904297, -0.85498047, -0.7441406, 3.1308594, -0.66748047, 1.5195312, -0.71728516, 0.6430664, -0.4387207, -0.46875, 1.1152344, 1.9804688, 1.2275391, 1.1787109, 0.84228516, -0.09197998, 0.80810547, -1.8339844, -4.796875, -1.9111328, 0.11773682, 0.9116211, 0.11206055, -0.6796875, -2.484375, -0.5332031, 1.9462891, 1.7880859, 3.4023438, -3.84375, 1.0898438, 1.5478516, -2.1347656, 1.7861328, -2.90625, -0.4272461, 0.3515625, -0.18713379, 2.453125, 1.0292969, 1.4853516, -2.7734375, -0.70458984, -0.7973633, -0.24560547, -1.9130859, -1.1943359, -0.75439453, -3.3710938, 0.7011719, -1.6171875, 0.67089844, -2.1347656, 1.7304688, -1.3378906, -0.6699219, -2.9472656, -0.32348633, 2.5527344, 0.94433594, 0.57373047, 1.1103516, 1.1953125, -3.2539062, -1.6230469, -4.5703125, 0.009185791, -1.6337891, -1.9619141, -0.5493164, -1.0644531, -0.41625977, -0.8886719, 1.6064453, -0.77246094, -0.2878418, 0.7783203, -2.6191406, -0.5361328, -0.5131836, 0.4128418, -2.8769531, -0.5498047, -1.1650391, 3.7324219, 2.5917969, 2.3652344, 1.3867188, 2.1503906, -0.070617676, 0.000702858, 1.3144531, 3.0019531, 1.0341797, -1.8857422, -1.9287109, 1.2890625, -0.5625, 0.0690918, -0.8828125, -0.99072266]}, "B0861XQ5M8": {"id": "B0861XQ5M8", "original": "Brand: BBQ Light\nName: LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ\nDescription: Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.\nFeatures: Let the barbecue in the night happier.\nTurns on and off manually or with tilt sensor activation.\nLED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours.\nResists heat and moisture damage with glass-reinforced nylon construction.\nFits current Spirit, Genesis, Genesis II and Summit Grills.\n", "embedding": [-1.21875, 0.2626953, 1.9238281, -0.1697998, -1.2919922, 0.99121094, 1.9042969, -0.73291016, 1.5683594, 0.8041992, -0.3269043, -3.421875, -0.54833984, -4.5117188, 0.19604492, -0.52001953, 2.484375, -0.4951172, 0.6953125, 0.12445068, 2.4902344, 1.4765625, -1.2363281, -0.93310547, 2.2910156, 1.7451172, 3.421875, -2.3183594, -0.20288086, -2.6992188, 2.9902344, 1.90625, -0.37231445, 1.6337891, -2.5761719, -2.2929688, -2.875, 1.9462891, -1.9111328, -1.2109375, 0.016571045, -1.0185547, 1.8613281, 0.16760254, -2.3222656, 3.4082031, -0.57128906, 0.5698242, -1.8496094, 1.1767578, 2.15625, 1.7929688, 0.44018555, 0.58935547, -0.50390625, 0.3293457, 1.0302734, -1.8017578, 1.4853516, -2.4277344, 3.0976562, 0.37182617, -1.4296875, -0.75634766, 0.6040039, -1.6542969, -0.70947266, -1.0546875, 1.125, -0.5708008, 3.4316406, -2.0605469, -0.7128906, -0.37402344, 1.2177734, -1.109375, 0.23510742, 0.86816406, -1.6445312, -0.39990234, -1.3183594, 2.2910156, 0.21838379, -1.2822266, -0.26391602, 1.0712891, -0.5883789, -0.03363037, 1.6767578, 0.08654785, -0.41186523, 0.35742188, -0.4645996, -2.1835938, 1.9179688, -2.984375, -0.52783203, -1.65625, -1.9736328, 2.1523438, -1.7470703, 0.52246094, -1.9238281, -1.5859375, -0.8154297, -1.0917969, 2.0957031, -2.4160156, -0.37475586, -2.6230469, -0.81396484, -0.1730957, -0.39404297, 2.6230469, 1.1132812, -0.13696289, 0.7163086, 1.7724609, 0.04196167, 4.4375, 1.4355469, -0.8623047, -0.015197754, -0.40698242, -1.4316406, -1.4853516, 1.5361328, 1.1132812, 1.2861328, -0.90185547, -0.7871094, 1.0429688, 3.0351562, 0.8666992, 1.2099609, -0.55126953, -1.5878906, -2.34375, -1.75, -1.6826172, -2.6386719, -1.4882812, 1.6103516, 0.010986328, -2.4882812, 1.3291016, -0.77441406, 0.6928711, -1.7919922, -0.8964844, 2.2851562, -0.9926758, -0.4519043, -1.6386719, 0.076293945, 0.7753906, -0.43017578, 1.0146484, 2.5976562, 1.1289062, 2.4511719, -1.5097656, 0.021347046, -1.8046875, 1.1210938, -0.2368164, 0.6430664, 1.8261719, 0.5991211, 0.8823242, 1.4033203, -2.4433594, 2.0292969, -0.50634766, 0.8535156, -2.296875, -1.5791016, 1.9003906, -1.3330078, 0.5732422, -1.7441406, -2.234375, 1.2529297, -1.6386719, -0.3527832, 0.2401123, -1.0029297, -0.890625, 1.4462891, -1.9570312, 1.0224609, 2.4433594, 0.7338867, -0.48706055, 0.68603516, 0.5541992, -3.875, -2.3398438, -0.81689453, -1.0839844, -0.71484375, -2.0761719, 1.1435547, 0.32226562, -1.1015625, -2.9277344, 0.58691406, 1.4853516, -1.9179688, 0.61816406, 0.3503418, -0.9506836, 1.5136719, -0.8413086, 0.57958984, -1.7236328, 1.0898438, -0.4260254, 1.6982422, 5.2304688, -0.96484375, -0.36450195, -0.85546875, 4.1992188, -0.7524414, 1.0136719, 1.0234375, -0.79003906, -2.1894531, -0.6298828, 3.25, -0.8989258, -0.7138672, -1.9433594, -0.37451172, 2.8574219, -1.0078125, 0.90527344, 0.32666016, -0.29174805, -1.3369141, -3.1289062, -1.3076172, -0.33325195, -2.0722656, -0.62158203, -2.8222656, 2.1210938, -0.7885742, -1.7324219, 3.0683594, 3.0390625, 1.1298828, 0.78808594, -1.1826172, 0.6923828, -0.80371094, 1.5791016, -3.0625, -2.3164062, 2.5214844, 1.9707031, -2.1660156, 2.6757812, 0.25927734, -0.39404297, 0.6748047, 2.9042969, -0.6513672, -2.265625, 1.5888672, 0.2824707, -1.5458984, -0.14685059, 2.9746094, 1.9042969, 1.4365234, 0.5571289, 2.4003906, -1.3554688, -1.3046875, -0.046051025, 1.25, -0.4892578, -1.5126953, -0.89746094, -1.4580078, -0.76171875, -0.85058594, 1.5546875, 2.9902344, 0.57128906, -3.3183594, 4.125, -3.1289062, -0.27905273, 2.015625, -0.43603516, -0.19274902, 0.05834961, 3.0527344, 0.8540039, -0.41967773, 1.6142578, 1.1142578, 1.2138672, 1.9462891, -3.5410156, 0.34033203, 3.4101562, -0.7739258, 0.27148438, -2.2050781, 1.0966797, -1.7421875, -1.9042969, 2.1914062, -1.6074219, 0.95751953, 1.9462891, 0.3869629, 0.7192383, 1.0048828, -1.2128906, -0.8676758, 0.9663086, 0.059814453, 0.038513184, 1.3378906, -0.062927246, -2.5722656, -2.5742188, -0.74609375, -0.45263672, -1.6103516, -4.2421875, -0.70996094, -2.7753906, -0.28881836, -1.6074219, -0.4802246, 1.2158203, -0.1899414, 1.4423828, 0.82958984, -1.7763672, 0.010749817, -0.13842773, 2.5332031, -0.60546875, 0.85498047, -1.0957031, 0.011268616, -1.9511719, 2.2011719, 2.609375, 1.2060547, -0.2286377, -1.2363281, 3.4785156, 0.4050293, 0.20056152, -0.013137817, 1.0517578, 1.3613281, 0.07043457, 0.21850586, -2.4082031, -0.21350098, -3.2226562, 2.8164062, -0.59716797, 1.0371094, -3.1035156, -0.72265625, 0.011924744, -1.4775391, 3.1914062, -0.12426758, 1.8886719, -0.65722656, 0.6640625, 1.2490234, 0.7910156, -0.43310547, -1.5449219, 0.53564453, -0.3947754, -1.3066406, -4.6054688, -2.0410156, 0.39282227, 1.1171875, 0.61816406, -1.6767578, 0.82666016, 1.6279297, -2.5332031, -1.2246094, 1.5761719, 0.99902344, -0.39257812, -0.047607422, -2.2753906, -3.4902344, -1.0634766, -1.2373047, -0.17199707, 4, 0.022338867, 1.6757812, 1.2871094, 1.5048828, 2.6523438, -1.8300781, -4.9414062, 2.9335938, 1.2548828, -3.5566406, 0.6767578, -0.11755371, -0.7314453, -1.4267578, -0.0826416, 2.5625, 0.24938965, 2.65625, -1.8300781, 0.46435547, -1.328125, 3.1074219, 0.23413086, 0.984375, 1.4638672, 1.3056641, -3.3574219, -2.6738281, -1.5166016, 0.5625, 1.046875, -2.8359375, 0.5830078, 1.421875, 2.3847656, 1.2919922, 1.90625, -0.33862305, -1.2578125, 1.8271484, -1.6591797, -1.2421875, 1.7080078, -1.3105469, 0.8334961, -0.63720703, 0.8930664, 2.0703125, 2.9609375, 2.4433594, 2.5898438, 0.3540039, -0.20605469, -0.29833984, 2.1035156, 2.09375, -2.6699219, 0.35058594, -1.0390625, -1.3867188, 2.3925781, 0.64941406, 1.9951172, -0.02281189, -2.1191406, 2.5234375, 2.0214844, 0.17675781, 1.4091797, 1.3007812, -0.76708984, -1.8291016, -1.2294922, -1.4404297, -2.3964844, -1.8974609, -1.5986328, -0.73291016, -1.5507812, 1.7236328, 0.484375, -2.8183594, -0.16101074, 0.6821289, -1.7353516, -1.2294922, 0.074401855, 1.3466797, -0.36206055, 0.9946289, 0.17175293, -0.73339844, 1.3046875, -3.2285156, -0.09161377, -0.47143555, 0.3269043, -3.3359375, -1.0888672, 1.2578125, 1.5673828, 1.5292969, 1.7470703, -1.1318359, -0.50390625, -0.30664062, -2.5371094, 0.31298828, 0.37060547, -1.1640625, -2.0898438, 2.8710938, 1.4013672, -0.7866211, -0.77246094, 1.0732422, 0.70458984, 0.11114502, 0.69189453, -1.0693359, -2.2109375, -2.3164062, -3.6542969, 1.0136719, -2.6113281, 0.103027344, -1.0712891, -0.07171631, 1.8007812, 0.92626953, 0.5839844, -0.62353516, -1.2607422, -0.50341797, -0.48510742, 0.8564453, 0.9916992, 1.4082031, -1.5625, -0.4230957, -3.5175781, -1.8125, -0.027954102, 1.1591797, 1.9287109, -0.091552734, 0.39794922, -1.2431641, -0.9301758, -1.8720703, 0.48217773, 1.8066406, 0.046661377, 0.31103516, -2.3867188, 1.4433594, -0.18615723, 0.6665039, -1.0273438, 1.0292969, 0.2980957, -1.3144531, -0.27539062, 0.63378906, 2.3828125, -0.22521973, -1.7705078, 0.21618652, 0.8334961, 0.054779053, -0.36767578, -1.2978516, 0.0143585205, -1.4541016, 0.2220459, 1.4394531, 1.0830078, 0.2927246, -0.4560547, -2.8320312, -1.2480469, -0.90478516, -2.9785156, -1.6611328, 1.3652344, 0.5546875, -0.96191406, -0.50390625, -0.67578125, 0.071899414, -2.5898438, -0.26293945, -3.3535156, 3.0058594, 2.6171875, 2.2128906, 2.4609375, -0.97021484, -0.38232422, 0.30688477, -1.4921875, -2.5566406, 0.6689453, 0.79296875, -0.081726074, 1.2539062, 1.8417969, -0.073913574, -0.27929688, 2.1640625, -0.71191406, 0.52246094, -1.3164062, -0.97021484, -2.9433594, 2.546875, 1.2392578, 0.30908203, 1.2880859, -1.9140625, -0.12463379, -0.73535156, 1.171875, -1.9628906, -0.140625, 1.1132812, -0.32080078, 1.1953125, 1.4453125, 2.3652344, 0.17492676, 1.1123047, -1.2832031, 0.96875, -1.1005859, 0.71191406, -0.6225586, -0.7138672, 0.006790161, -0.85498047, 1.4873047, 1.9736328, 0.45043945, 1.3232422, 0.7709961, -0.8125, 2.796875, 1.9970703, -2.84375, 1.5126953, 0.7998047, -2.1738281, 1.2861328, -1.2011719, -2.1445312, -1.0888672, 2.3515625, -0.05380249, 1.8769531, 0.6699219, -0.8964844, 2.6972656, -0.3671875, -0.5522461, 0.1071167, -0.44311523, 0.7182617, 0.70996094, -0.8823242, -0.24536133, 0.83496094, 0.66845703, 2.1210938, -2.3476562, 1.1542969, -0.5517578, -1.6650391, 0.57128906, 0.21057129, -4.1757812, -2.1914062, 1.5458984, 1.3730469, 0.03652954, 1.1845703, 2.0019531, -0.0211792, -1.8583984, -3.6660156, 1.5878906, -2.1972656, 0.5283203, 1.4326172, -2.7617188, -0.57958984, -1.2236328, 0.53808594, -0.11999512, -0.18664551, 1.2705078, 0.9121094, -1.2792969, 1.4970703, -1.5058594, -2.4863281, -1.3027344, -2.0664062, -1.3867188, -0.7866211, -0.5332031, 0.24511719, -1.3525391, 0.60253906, 0.039886475, 1.1230469, 0.88183594, -1.2519531, 0.70410156, -0.22729492, -1.0654297, -1.3701172, 0.7319336, -0.3491211, 3.1464844, -1.2929688, -3.8925781, -0.32470703, 0.34960938, -1.8671875, -1.5888672, 3.3574219, 1.8798828, 0.34228516, 2.5644531, -1.4101562, -2.9355469, 2.515625, 1.5478516, 0.41992188, 0.96972656, 0.49169922, 1.6367188, -1.8457031, -0.9614258, 0.6899414, -1.4755859, 1.2060547, 0.045074463, -1.5019531, 0.14355469, -0.53515625, 1.1416016, -3.015625, 0.6538086, -0.96875, 1.0107422, 0.19396973, -2.265625, 0.5288086, -4, -4.75, -0.17175293, -2.8886719, 0.48095703, -2.4375, -0.80078125, 1.0927734, 2.2050781, -0.040527344, 1.4023438, -0.32080078, -2.2675781, 0.14587402, 4.1445312, 2.0761719, 3.0625, -1.3984375, -0.77001953, -3.1464844, 0.8310547, -0.29956055, -0.15759277, -1.2236328, 0.6870117, -4.0546875, -0.16235352, -0.123535156, 3.3984375, -0.24853516, -1.7841797, -0.84228516, 0.76953125, 1.7861328, -0.58740234, 1.9257812, 1.6484375, 0.82666016, 0.3413086, 2.7539062, -1.0576172, -1.4003906, 2.421875, -2.9785156, 2.671875, -0.0034999847, -2.1464844, 0.47216797, -0.9501953, -1.1914062, 1.3242188, -2.2285156, -1.6542969, 1.6269531, 0.5883789, -0.2824707, -1.5234375, 3.0234375, 0.9746094, 2.0273438, 0.47998047, -0.2006836, -1.9716797, -1.1386719, -1.5039062, 0.22192383, 1.5332031, -3.0683594, 0.4440918, -0.3347168, -0.96728516, -0.63134766, -0.012252808, -0.31835938, 1.1533203, -0.06225586, 0.4091797, 2.1835938, 2.2753906, 1.4921875, 1.0273438, 0.46655273, 0.41455078, -1.1318359, 1.4628906, 2.421875, 0.7026367, -0.8251953, -1.0986328, 0.64501953, -1.8408203, 0.3178711, 2.6347656, -0.77246094, 2.375, -0.27294922, -0.89941406, 0.66796875, 2.7851562, -2.140625, 0.7915039, -1.1542969, 0.03640747, -0.03933716, 2.2910156, 4.0703125, -0.32861328, 1.6191406, -1.2392578, 1.375, 1.9833984, -3.7617188, 0.75683594, 0.9790039, 1.4169922, -1.7929688, 1.3359375, 1.8046875, 0.85546875, 0.9086914, 2.3789062, 2.109375, -0.22753906, 3.109375, -1.5849609, -1.6640625, -0.54345703, 2.7089844, -2.4921875, 0.41210938, -0.7548828, -1.6132812, -5.0664062, 0.021499634, 1.9804688, 0.55908203, 0.97021484, 1.8701172, -1.9541016, 1.5126953, -0.671875, 1.7861328, -0.52783203, 0.16687012, -2.703125, 1.1435547, 0.7109375, 0.30737305, 1.9140625, 0.1776123, 1.3242188, -3.1132812, 0.6665039, 0.82714844, 0.4013672, 0.61376953, 0.86816406, -0.17480469, 2.5058594, -0.9291992, 1.9433594, 1.5390625, -0.43164062, -2.2714844, 1.9316406, 0.70214844, -0.51708984, 0.18835449, -0.5439453, 0.7001953, -0.24584961, 0.07891846, 0.86621094, -3.0214844, -0.15039062, -0.45092773, 0.13537598, -0.031677246, 0.53222656, 0.2709961, 4.1328125, 2.6191406, 1.4746094, -0.57421875, -2.4335938, 1.2138672, -0.41601562, -1.4892578, 0.37451172, 1.9453125, 0.7553711, 0.12121582, 1.5214844, 2.0507812, 0.4567871, 0.88671875, -1.7099609, 0.40429688, -0.09234619, 1.1455078, 1.234375, -0.93847656, -0.9003906, 0.92626953, 0.65185547, -0.78125, 0.068603516, 1.53125, -1.046875, 0.070617676, -0.19506836, -1.2832031, 1.8925781, 1.4111328, -1.5996094, 2.4511719, 3.078125, 2.5, -1.6542969, -3.25, -1.2265625, 0.45458984, -1.9404297, 0.40039062, -2.5039062, -1.4716797, -1.4267578, -1.4306641, 2.4335938, -1.0107422, 0.87109375, -0.99902344, -1.4609375, 0.46289062, -1.9433594, 2.6367188, -0.8569336, -2.0996094, 2.1972656, 1.0175781, 1.0136719, 1.4248047, 2.4453125, 2.8320312, -0.06915283, -2.0136719, 0.05227661, -0.42236328, 1.1972656, 0.61376953, 2.734375, -0.08807373, -0.49926758, 1.1708984, -0.3088379, -1.6621094]}, "B07G8HFNWB": {"id": "B07G8HFNWB", "original": "Brand: Hot Sox\nName: Hot Sox Men's Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)\nDescription: \nFeatures: Barbecue in style with these bold men's crew socks!\n50% Cotton 25% Polyester 23% Nylon 2% Spandex\nFits men's shoe size 6 - 12.5\nMachine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron.\nOne pair pack\n", "embedding": [-0.9238281, 1.5898438, 0.71435547, 0.20983887, -0.86376953, -2.8632812, 1.8496094, 0.028274536, 0.2409668, 0.38110352, -0.26391602, 0.95996094, 1.5039062, -1.8652344, -0.43920898, -2.953125, -0.71972656, 0.2915039, 0.24328613, 0.4345703, 2.4082031, -0.6152344, 1.8544922, -4.4296875, -2.1640625, 3.2695312, 3.9472656, 0.12384033, 0.8730469, 0.1875, 0.22070312, 0.16345215, 1.9658203, 1.1464844, -2.4785156, -1.2490234, -0.3408203, -0.34765625, -1.3779297, 0.8457031, -0.8173828, -1.1386719, 1.0214844, 4.4960938, -1.9658203, 0.11230469, 1, 2.8925781, -0.71484375, -1.5107422, -1.1669922, -0.03414917, -2.7578125, 0.9370117, 0.40161133, 2.90625, 1.8701172, -0.44482422, -0.87939453, -0.6347656, -0.5517578, -1.8486328, -0.20910645, 0.85839844, -2.4394531, 3.21875, -1.2255859, -2.0410156, -0.18359375, 0.6699219, -0.21838379, 0.9472656, -1.3984375, 0.1081543, 0.9223633, 2.0976562, -2.8710938, 1.1455078, -0.041229248, -1.9511719, 0.7089844, 0.7998047, 0.4897461, 0.37670898, 0.3330078, -0.57177734, -0.50439453, -0.58984375, -0.097229004, 0.7636719, -0.5961914, 1.8447266, -2.0546875, -3.8476562, -0.44433594, -0.6772461, 0.24487305, -1.3388672, -0.85595703, 0.828125, -1.0068359, -2.3085938, 1.0732422, 1.8535156, 0.04800415, -1.3300781, -0.032073975, -0.29223633, -0.50097656, 0.7675781, -2.1191406, 0.3466797, 3.0625, 0.34570312, 1.9882812, -1.8720703, 0.39501953, -1.8886719, 1.2587891, -1.2851562, 2.4101562, 0.08868408, 3.1289062, 1.2607422, 0.3540039, -0.59472656, 1.6103516, 0.09869385, 0.76464844, -0.14978027, 1.6005859, -0.27270508, -0.9873047, -1.3984375, -1.7705078, -1.2890625, -1.375, -0.5180664, -1.8095703, 0.45922852, -2.3339844, -1.5605469, -0.29467773, -1.9482422, -1.8671875, -1.2744141, -1.1279297, 3.0195312, -2.2695312, -2.2851562, -0.7319336, 1.7871094, -1.7685547, -0.15429688, 0.021011353, 0.19213867, 2.6679688, -1.6044922, 1.4091797, -1.2939453, 1.7011719, -1.4394531, 0.40625, 0.9042969, -1.1621094, -1.0244141, -2.4121094, -1.7089844, -2.1035156, 0.8623047, -0.7182617, -0.45166016, 1.3789062, -4.2773438, 0.43139648, -0.4897461, -1.4365234, 1.5263672, 0.15429688, 1.1064453, 1.7060547, -2.9355469, 1.875, 2.0019531, 2.0644531, -1.5722656, 0.17211914, -0.94677734, -2.0859375, -0.055511475, -1.3613281, -2.0625, 1.0332031, 2.5839844, 0.5698242, -1.125, 1.3339844, -1.3847656, 3.2363281, 1.6455078, 0.41064453, -0.49194336, 2.7988281, 1.9794922, -2.4941406, -2.9179688, 2.0488281, 0.68359375, 0.73779297, 0.22583008, 0.9399414, -1.5195312, -0.42382812, 2.6386719, -1.5517578, 0.42260742, 2.0566406, -1.859375, 3.0625, 2.8261719, -0.21960449, 0.3569336, -0.087524414, -3.3417969, 0.09326172, 0.28979492, 1.4501953, -0.5336914, -0.53271484, -1.5390625, 1.984375, 1.9414062, -0.38842773, 0.6015625, -0.5253906, 2.25, 0.67578125, -0.30200195, -0.94970703, 0.5366211, 1.2958984, 3.1054688, -3.6621094, -0.890625, -2.4082031, -0.1685791, -1.0205078, 1.84375, -1.0996094, -0.23950195, 0.2722168, -0.2956543, 1.7626953, 2.0664062, -0.30786133, -1.8789062, -0.052886963, -0.21411133, -1.9580078, -1.65625, 1.2041016, 0.7080078, -1.8740234, 1.4472656, 0.17663574, 0.37475586, 2.0507812, 1.1259766, -0.89160156, -0.8413086, 1.2880859, 0.23779297, 1.1181641, -1.3876953, -0.29345703, 2.4296875, -0.3232422, 1.3857422, -0.08270264, -0.71240234, -1.3164062, 0.8691406, 0.6113281, -1.3535156, 2.1992188, -1.1230469, -2.1835938, -1.5078125, -0.81884766, 0.5410156, 1.7207031, -0.04522705, 2.5390625, 1.9648438, -1.5673828, 0.21777344, 1.4052734, 2.1972656, -1.5947266, -1.3632812, 1.0878906, 2.078125, -0.011047363, -1.5390625, -1.0517578, 0.92529297, 0.77490234, 1.1445312, -0.06008911, 0.90527344, -0.17907715, -2.6503906, 1.4736328, 1.8671875, -2.1132812, -1.4677734, 0.53222656, 0.49975586, 1.6425781, -0.08642578, 1.4433594, 0.7885742, 1.4746094, -2.3085938, 0.8808594, 2.2734375, -3.6796875, 1.0419922, -1.125, -1.6787109, 0.14123535, 1.0556641, -0.90185547, -2.0195312, -0.6533203, -0.65722656, -0.5673828, 1.9658203, 0.18859863, 1.3378906, 0.5805664, 1.8867188, -0.4970703, 0.23168945, 0.035736084, -2.984375, -1.9707031, -1.1357422, -0.28198242, -1.0722656, 1.171875, 1.0478516, 0.56347656, -2.5546875, -1.8613281, -0.25805664, -1.4453125, 1.2675781, -4.1796875, -0.045928955, 0.39526367, -0.84228516, 0.06573486, 0.47827148, 0.40405273, -0.23339844, -1.2832031, -4.1054688, 2.0253906, 1.0917969, -1.6728516, -2.7363281, 0.51171875, -1.8798828, -2.2265625, 2.2460938, 2.3476562, 5.234375, -1.0634766, 0.95654297, -2.3417969, 1.2695312, -0.90478516, 0.6640625, -0.81347656, 0.50341797, -1.5, 0.8461914, 0.054382324, -2.9023438, 1.2675781, -1.1015625, 1.9160156, 0.72802734, 2.3457031, 0.1381836, -1.65625, -0.31054688, -0.76220703, 0.18103027, 0.86376953, -0.96728516, 1.015625, -0.2548828, -2.6640625, -1.6787109, -0.41235352, 2.2871094, 2.1914062, 0.39160156, 1.6542969, 0.12658691, -0.30078125, 0.15478516, 0.5102539, -1.5830078, 2.6894531, 2.6542969, -0.27685547, -3.5449219, 0.029159546, 0.11651611, -1.1152344, 0.5390625, 0.56591797, -0.06347656, 2.2851562, 2.1347656, -0.91064453, -0.4345703, 3.2324219, -1.4003906, 0.8310547, 2.7988281, 0.85009766, 3.96875, -2.5898438, 0.72558594, 0.27319336, -1.8759766, -0.42041016, -0.7446289, 1.8496094, 0.7475586, 0.87158203, -0.5722656, -2.3457031, 0.48901367, 3.3378906, -0.97753906, -1.4013672, 0.7338867, 1.4794922, -2.1953125, 0.39672852, 1.9785156, 1.9013672, 1.2529297, 2.7050781, 0.42041016, -0.1862793, 0.5600586, 0.13867188, 2.2597656, -1.6923828, 0.984375, -0.41064453, 1.9541016, 1.7431641, 1.1806641, 0.07507324, 2.3945312, -2.4921875, 0.4584961, 1.7822266, -2.8007812, -1.3027344, 0.7553711, -0.45043945, -1.9511719, -1.109375, -0.6669922, -2.1640625, -1.7275391, 0.67822266, -0.52783203, -1.1171875, -1.6503906, 2.6894531, -2.1464844, -0.5913086, -1.2089844, 1.0791016, -0.46875, -0.9296875, 1.5097656, -0.74658203, -1.3535156, 1.1865234, 1.8994141, 0.14196777, 0.8286133, -1.2919922, -0.43579102, 3.3710938, -1.2841797, -2.3554688, -2.09375, -1.0732422, 2.1855469, -1.6357422, -1.8964844, 1.5361328, -0.31591797, 0.46264648, -2.3789062, 0.41918945, 2.9296875, -2.3554688, -1.6171875, 4.3164062, -1.8447266, 0.6201172, 0.31176758, 1.7714844, 0.70947266, -0.57128906, 2.3886719, -0.7602539, 1.6523438, 1.4736328, -3.03125, -1.7734375, 0.05029297, -0.107910156, 2.9238281, 2.2773438, 0.9692383, 2.390625, 0.8222656, -0.47387695, -0.89941406, 0.24597168, -0.8618164, -1.7363281, -1.0527344, -0.3659668, 1.0039062, -0.7636719, -1.6582031, 0.99609375, -2.3730469, 1.0644531, -1.3134766, -1.5351562, -1.0917969, -0.06100464, -0.5410156, 1.1865234, -0.68847656, 0.06384277, -0.23535156, 0.3803711, 1.5332031, -0.9375, 0.9838867, 0.20617676, -2.4355469, 3.6875, 1.2539062, 0.9477539, -3.1640625, -0.08306885, -0.69189453, -1.0419922, 0.18200684, 0.7890625, -0.4951172, 1.9160156, -0.006099701, -0.59814453, 0.57910156, 0.61328125, -0.3100586, 1.0087891, 1.1972656, 1.9111328, 1.1591797, -1.1679688, 1.0820312, -2.0136719, 0.44482422, 0.60253906, -0.95654297, 0.0769043, 1.8183594, 1.9316406, -1.1318359, 0.46313477, 1.3222656, 3.78125, 1.8535156, -0.6982422, -0.38427734, -0.57177734, 2.4316406, -2.9902344, -0.5048828, -0.46020508, -3.984375, 1.7724609, -1.1318359, -1.9003906, -2.65625, 0.1307373, 1.1806641, 0.7451172, 2.1972656, -0.9667969, 0.5488281, 0.9355469, -3.1035156, -2.0996094, 0.7661133, 0.89160156, 0.18237305, -2.3476562, 1.6748047, 0.7832031, -0.25195312, 5.0039062, 0.67041016, -0.65771484, 1.5615234, 0.65283203, 1.5761719, 1.4814453, 1.0820312, -1.7851562, -0.7006836, 1.4873047, 1.8261719, 2.2128906, 1.4248047, 1.9736328, -0.62353516, 1.5605469, 0.1920166, -2.0742188, 0.6425781, -0.16772461, -0.30737305, 2.7480469, 1.0097656, -0.5053711, -0.45166016, 1.6347656, -0.8911133, 1.2773438, 0.61279297, -0.22717285, 0.8417969, 0.43920898, -1.4951172, 1.5839844, 0.014839172, 0.2241211, 1.3505859, -0.17504883, -1.8193359, -0.6401367, -0.7675781, -0.49072266, -1.4482422, -1.6357422, 0.7216797, 0.41845703, 0.5395508, -3.3105469, 0.032318115, 3.1914062, 1.515625, -0.6274414, -0.42626953, -1.9707031, -1.2568359, -0.9135742, -1.1425781, 0.6850586, -1.6220703, 1.3203125, 1.7373047, 0.47558594, 0.9555664, 3.1503906, -2.0703125, 1.7753906, -1.9667969, 1.7587891, -1.7636719, -0.29003906, 2.4628906, -0.31884766, -0.5620117, -1.4697266, -0.9921875, 1.4931641, 0.17785645, 0.108947754, -1.2695312, 0.8256836, 0.6645508, -1.9277344, -4.7070312, -0.3059082, -0.9794922, 2.2558594, -1.1621094, -2.2851562, 1.5244141, 0.42041016, -2.6992188, -0.10070801, -1.5019531, 0.61328125, 0.25146484, -0.9423828, 0.96191406, -1.8642578, -1.5722656, -0.3955078, -1.1445312, -0.5463867, 1.5664062, -1.9003906, -1.0546875, 0.26000977, -3.4101562, -1.8847656, 2.3320312, 0.6933594, 1.0732422, 0.5522461, 2.4355469, 0.60595703, 3.9960938, -2.4160156, 0.4572754, -2.4394531, -1.1962891, 0.7998047, -1.0107422, -0.10443115, 0.77685547, -1.2119141, 2.2792969, 1.0390625, -1.5488281, 2.1640625, -1.0488281, 0.21386719, -0.4638672, 0.27783203, 0.921875, 0.3449707, 2.0917969, 0.24597168, 0.64941406, -2.8613281, -1.3320312, -0.2524414, -0.48266602, -0.8432617, 0.7426758, 1.1943359, 1.9912109, 1.6523438, 2.6582031, -0.8198242, 1.8896484, 0.14001465, -0.5942383, -1.9707031, 0.9868164, 1.8837891, 0.8691406, -4.34375, -0.8647461, -0.010513306, 2.7851562, 0.8408203, -0.76660156, -2.4980469, -0.1538086, -2.3730469, -1.7128906, 0.9765625, 2.7011719, 1.6982422, -0.5131836, 0.58154297, 0.08380127, 1.1210938, 0.039123535, -0.17883301, 2.5839844, -2.5839844, 2.3007812, 1.4609375, -0.91796875, -2.6855469, 1.0351562, 0.53564453, 1.2773438, -0.9692383, -0.23205566, -0.10076904, 1.9160156, 0.72216797, -3.0039062, 0.60791016, -0.39746094, 0.11291504, -0.7661133, 1.1601562, 1.3164062, -1.2509766, -1.2626953, 0.81884766, 0.91015625, -2.3007812, -0.9482422, 0.77441406, -0.84521484, 2.9726562, -0.29785156, 0.21325684, 2.0214844, -1.4394531, 0.93847656, -1.2167969, 0.16296387, 1.2041016, 1.5820312, -0.15612793, 1.7421875, 0.33544922, -0.28222656, 1.7138672, 1.9111328, -0.4099121, -2.4804688, 0.4802246, 1.6630859, -1.2285156, 0.47509766, -0.040130615, 0.7783203, 0.86279297, 0.032470703, -0.18432617, 1.7402344, 0.7270508, -0.77441406, -0.058380127, 0.72802734, 0.06201172, -2.0410156, 0.93896484, -2.5957031, -0.6611328, -1.7460938, 0.18237305, 0.4267578, 0.46899414, -0.8417969, -2.125, 0.36523438, 1.4541016, -2.515625, -2.203125, 1.1474609, -1.4892578, 0.10571289, 2.1992188, 1.9990234, 2.1054688, 1.7392578, -2.3730469, 1.2685547, -1.2421875, -0.8745117, -0.7080078, -0.32299805, -0.5605469, -0.37304688, 0.15466309, -1.1298828, 0.17895508, -1.5566406, 0.26342773, 0.10784912, 1.0302734, 0.37768555, -0.9394531, -0.17089844, -4.3046875, 0.19799805, 1.0107422, 1.3300781, 0.9145508, 1.5722656, 1.5664062, -0.29492188, 1.2412109, -0.21533203, 0.92285156, 0.4025879, -1.7255859, -1.0898438, 0.3359375, 0.8417969, 2.1464844, 0.1472168, -1.4238281, -0.028686523, 3.1679688, -0.80078125, 1.6035156, 0.37036133, 1.5107422, -0.20788574, 0.7763672, 0.5366211, 1.9296875, 1.1367188, 1.7636719, 0.50439453, 0.171875, 0.8144531, -0.61816406, -3.734375, -2.2089844, 0.64941406, 1.0810547, 0.06262207, -0.34960938, -1.7753906, -1.2939453, 0.4880371, 2.203125, 2.0605469, -3.9179688, 0.08862305, 1.7285156, -2.1171875, 0.9838867, -2.1738281, -0.49682617, 1.3164062, 0.16296387, 2.7597656, 1.2578125, 0.48095703, -2.2324219, -1.703125, -1.2246094, -0.82910156, -1.2685547, -1.3066406, -0.44506836, -3.0625, 1.3974609, -1.5410156, 0.79541016, -1.9814453, 1.3740234, -0.8564453, -0.5463867, -2.2910156, -0.29907227, 1.8769531, 1.9863281, 1.4101562, 0.6508789, 0.65185547, -2.5351562, -0.6894531, -3.90625, 0.63720703, -2.6269531, -1.3984375, -0.19238281, -0.56640625, -0.90283203, -0.36401367, 0.9526367, -1.1445312, 0.082092285, 0.9160156, -2.2773438, -0.7192383, -0.47509766, 0.64160156, -1.890625, -0.2355957, -1.1777344, 3.78125, 1.3417969, 2.9570312, 1.2226562, 0.9941406, -0.07611084, -0.2668457, 1.7998047, 1.7480469, 1.4013672, -1.71875, -1.3134766, 0.26538086, 0.25219727, -0.8754883, -0.15795898, -1.0244141]}, "B000DZKZLQ": {"id": "B000DZKZLQ", "original": "Brand: Mr. Heater\nName: Mr. Heater F273769 Portable Propane Table Top Regulator with a 1\"-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular\nDescription: \nFeatures: \n", "embedding": [-0.6904297, 0.44458008, 1.7675781, 0.6875, -1.0908203, -0.5292969, 0.58691406, -2.2871094, -0.7001953, 0.7607422, 2.359375, 1.4677734, 0.15917969, -1.1386719, 2.4589844, -0.68603516, 1.4277344, -0.11566162, 1.2470703, -1.0019531, -0.71484375, -0.76953125, 1.7275391, -2.5800781, 1.1611328, 2.0175781, 4.8515625, -2.6035156, 0.28442383, -0.43554688, 0.045837402, 0.9267578, 0.42333984, 2.4785156, -1.0302734, -1.53125, -2.1523438, 0.11315918, -4.0546875, 0.34838867, -1.5234375, 1.71875, -1.0839844, 0.7133789, -2.3769531, -1.0771484, 1.5488281, -1.0371094, -0.7817383, 0.33154297, 0.56933594, -0.97314453, 0.5229492, 0.41479492, -1.5097656, 0.23083496, -2.7089844, -2.8632812, -0.16967773, 1.0419922, 2.6191406, -1.1210938, -3.2441406, 1.1904297, 0.8515625, 2.9160156, 0.21899414, -0.45336914, -0.30078125, 0.8979492, 1.6669922, -0.49145508, -0.51464844, -1.1035156, -0.75146484, 0.76123047, -3.2871094, -0.33447266, 3.1152344, -1.6689453, -0.734375, 0.9501953, 0.35717773, 0.055145264, -0.64404297, -1.6572266, -0.2631836, -0.5463867, 2.3417969, 2.3300781, -1.2705078, 0.6538086, -1.4550781, -4.8632812, 0.96875, 0.9008789, -0.06994629, 0.25610352, -1.6435547, 1.7441406, -0.12414551, -0.43310547, 1.5947266, 0.15539551, -1.9296875, 0.36083984, 0.5053711, 1.7158203, -2.3125, 0.4411621, -2.0019531, 0.0067329407, 3.2402344, -0.090148926, -0.7788086, -0.13146973, 0.61328125, 0.74072266, 5.0820312, -0.765625, 3.3242188, -0.69921875, 2.0605469, -0.8989258, 0.27026367, 0.2614746, -1.6074219, 0.6611328, 2.0253906, -2.1347656, 2.2617188, 0.20788574, 1.4892578, -0.34033203, -1.7001953, -2.4003906, -1.3955078, -3.2226562, -2.6914062, -3.1191406, -1.9990234, 0.78808594, 1.0273438, -0.43945312, -3.5292969, -1.2285156, -0.51220703, 0.87109375, -0.5551758, -1.3798828, 1.4970703, -1.9921875, -1.7548828, -0.34985352, 1.2783203, 2.0625, -0.76904297, -0.5205078, 2.4375, 1.421875, 0.99658203, -0.048034668, -0.68847656, 1.9042969, -2.0371094, -0.2553711, 0.5805664, 0.45898438, -0.8598633, 2.7714844, 0.7890625, -1.8193359, -0.5029297, -0.80126953, -0.375, -0.9692383, 0.97802734, 2.4882812, 0.68896484, -0.81884766, -3.1523438, -1.4736328, -0.0002092123, -2.3613281, 3.1699219, -1.4433594, -1.7822266, -1.2910156, 0.67578125, 0.14465332, -1.9082031, 0.40161133, 0.34106445, 0.22558594, 0.11846924, -2.1542969, -2.3789062, -2.09375, 3.7089844, 1.3349609, -2.5136719, -0.14416504, -0.15490723, -0.82373047, -1.6845703, -2.4003906, 0.81591797, -0.18786621, 1.0488281, 1.0400391, -0.061462402, -0.88623047, 0.296875, 0.022842407, 0.22460938, -3.46875, 1.8154297, 0.22937012, 0.7270508, 2.0976562, 0.6713867, 0.58984375, 0.19592285, -0.82177734, 0.25146484, 1.8857422, 1.0976562, 0.30615234, -2.2753906, -1.4091797, 1.6953125, 2.390625, -0.02218628, 0.81103516, -0.24731445, 2.1738281, 1.6826172, -0.040374756, 1.9667969, -0.65625, 1.4931641, -0.3972168, 1.3720703, -1.3574219, 1.0214844, 2.0351562, -1.3300781, 1.0957031, 1.328125, 2.9023438, 1.3349609, 0.13415527, -1.0927734, -1.0097656, -2.8613281, 0.57128906, 0.69091797, 0.12237549, 0.5864258, -1.4697266, 1.9814453, 0.6254883, -1.1269531, 0.7915039, 1.1142578, -0.76171875, 2.8417969, 0.07220459, -0.72021484, 0.10491943, 0.58984375, 3.625, 1.1533203, 1.2412109, 0.64697266, 1.921875, -1.5908203, 3.3574219, -0.9067383, 0.5, -0.09051514, -0.76708984, 1.2392578, -0.6201172, 1.1015625, 0.5449219, -1.2431641, 1.7236328, -2.7753906, 0.60009766, 2.8808594, -0.48266602, 0.4819336, 1.8349609, 0.36669922, 1.2890625, 2.6464844, -1.7753906, -0.33740234, -0.5498047, 1.3378906, 1.1035156, -0.92333984, 0.31225586, 0.009765625, -0.89501953, -0.43017578, -0.95410156, -1.4150391, 1.7734375, 1.0869141, -1.8769531, -2.2675781, -0.25097656, -4.234375, -1.2646484, 0.84228516, -3.3535156, 1.7490234, 0.16784668, 0.2902832, 1.6103516, 0.421875, -1.3095703, 0.58203125, 0.40795898, -0.7709961, 2.2441406, -0.4609375, -2.1289062, -0.039489746, -0.5004883, 0.8359375, -1.7333984, -2.3164062, 1.8857422, -0.94384766, -2.8066406, 2.5273438, 0.19958496, -0.3383789, 2.1289062, -2.0878906, 3, -0.26098633, -1.0878906, -1.5712891, 0.1652832, -0.34228516, -1.4511719, 0.04928589, 1.2753906, -1.4169922, -5.1054688, -0.21655273, 0.46289062, -1.0449219, 0.2644043, -0.6899414, 0.83251953, 0.89941406, -1.4746094, 0.11224365, -1.6572266, -0.32495117, -1.2646484, 0.81640625, -2.5527344, 1.2734375, -0.75097656, 1.5839844, -0.9716797, -0.107910156, -0.61572266, -0.76953125, 1.0869141, 0.16674805, 2.6933594, 0.50683594, 2.2929688, -0.20617676, 1.5800781, 0.52197266, -2.0507812, -2.2988281, 0.37817383, -1.6582031, -0.99853516, -1.6328125, -3.0820312, 0.99658203, 0.5527344, -0.5493164, -0.10046387, 0.45629883, 0.121154785, -0.77246094, -0.37719727, -0.47314453, -0.4987793, -1.4755859, 0.14465332, -0.49951172, -0.04763794, 0.27929688, -1.4550781, -0.23571777, -0.64404297, 1.5605469, 0.85058594, 1.5957031, 0.40185547, -0.24707031, 1.1640625, 1.6982422, -2.8125, 0.48706055, 1.0302734, 0.15002441, 0.21398926, -1.3847656, -0.44482422, -0.51660156, -1.4921875, 2.4257812, 0.19592285, 2.59375, 0.8208008, 0.0993042, 0.39868164, 1.3535156, -2.4570312, 1.0439453, -0.7963867, 2.3183594, -1.0068359, -2.703125, 1.3427734, 1.5361328, -2.65625, -1.4199219, 1.0488281, -0.55371094, 1.2890625, 0.18615723, -0.9169922, -0.5336914, 2.3320312, 0.88427734, 0.86816406, -0.44604492, 0.01675415, -1.0126953, -0.100097656, 2.2773438, 2.9394531, 0.21252441, -1.1816406, 0.57958984, -0.040252686, 2.1601562, -2.0878906, -0.21704102, 0.20812988, 1.1103516, 0.24133301, 2.8964844, -0.14733887, 1.8974609, 0.9536133, 0.7895508, 1.8222656, -2.2929688, -0.3322754, 2.1875, 0.38110352, -0.6015625, -0.40942383, 0.37695312, -0.18066406, -0.69189453, 0.54052734, -0.21166992, 0.43774414, 1.4208984, -1.3076172, -2.4121094, -2.0273438, 1.9785156, -1.8271484, -0.09466553, -0.23693848, 1.8261719, -2.2519531, -0.67333984, -2.0722656, -1.8681641, -0.7216797, 1.1191406, -1.4902344, -1.5380859, -0.92871094, 1.6025391, -1.2490234, 1.0136719, -1.1337891, -0.12451172, -0.1661377, -0.74072266, 1.3876953, -1.2333984, 1.328125, 0.040740967, -2.484375, -1.0146484, -1.9013672, -1.53125, 1.5048828, -0.5024414, -0.12200928, 1.0478516, -1.7324219, 1.640625, -0.73046875, 1.8798828, -3.2539062, 0.0093307495, 2.0117188, -1.3925781, -0.08428955, -1.9511719, -4.1015625, 0.050048828, -2.5585938, 0.49438477, 2.1308594, -0.118774414, 1.375, 1.5644531, 1.7236328, -0.6977539, -1.7177734, -0.06341553, 0.36083984, -1.2597656, -0.63427734, 4.0664062, 0.97265625, -2.9628906, -1.1708984, 1.2578125, -0.83447266, -0.55566406, -0.48168945, -1.2441406, -1.1123047, -0.2565918, 1.9833984, -1.2001953, -1.6943359, 0.8701172, 0.32299805, -0.7260742, -1.7197266, 3.9042969, 0.72314453, 1.0878906, -0.10369873, 4.6484375, 1.4248047, -0.1986084, 0.77734375, 1.1064453, 1.4384766, 0.3059082, -2.1054688, -0.63378906, -1.8535156, -0.8310547, 0.07330322, 0.8330078, 0.60498047, -2.1152344, -1.3652344, 1.3251953, 0.8095703, 2.5371094, 1.3720703, -1.3720703, 2.1464844, -1.2958984, -1.4423828, -1.0214844, 0.94140625, 0.38500977, -3.421875, 1.6572266, -1.2099609, 0.9580078, -0.9951172, -2.5019531, -0.5239258, -0.61572266, 1.8564453, 0.9399414, -0.37353516, -1.0566406, -2.5761719, -1.5869141, -0.72314453, 0.875, -0.72314453, -0.29760742, -0.47851562, 0.4741211, 2.9433594, -1.65625, 1.375, 0.030014038, -1.0400391, 1.4169922, 0.030685425, -0.49975586, -0.65527344, -1.9814453, 1.2109375, -1.1494141, 3.1738281, -1.4785156, 1.2861328, 0.35424805, 0.26513672, 0.33642578, 2.1738281, 0.17443848, -0.7060547, 4.1132812, 0.67871094, 0.12988281, -1.1689453, 0.113098145, 2.6894531, 0.44702148, -1.5957031, -0.15637207, 0.10736084, 1.1953125, -1.3896484, -1.0722656, 2.2441406, -0.9692383, 0.00617218, 3.0800781, 1.9355469, -0.17077637, 1.2138672, 1.0800781, -2.1972656, 1.0712891, -1.1826172, 0.18688965, 2.0117188, 0.67578125, -3.5585938, -0.6357422, 1.9228516, -1.0527344, 1.9951172, 0.18823242, -1.1533203, -0.74902344, -3.1230469, -3.046875, -2.1484375, -0.40820312, -0.06109619, -1.84375, 1.0751953, 0.17163086, 2.8222656, 2.6699219, -0.6298828, -1.2333984, 0.0473938, -1.0439453, -0.31958008, 0.74560547, 0.74121094, -1.3212891, -0.49829102, 1.0390625, -1.0244141, 0.49731445, 0.6254883, 0.99365234, -1.4638672, -0.83935547, -0.77685547, 1.2626953, -0.7973633, -2.0097656, 2.1015625, -0.5161133, -0.55371094, -0.8852539, -1.6328125, -0.77685547, 1.7275391, -0.29516602, 1.9121094, -0.45458984, -0.328125, -3.0917969, -2.5820312, -1.40625, 0.61279297, -0.2944336, 0.07067871, -1.6738281, -2.2382812, 2.4394531, 0.5229492, 1.0527344, -1.5019531, 1.234375, -0.09875488, 0.7885742, 1.4638672, -1.0458984, 0.79589844, 1.1367188, 0.02961731, 0.25854492, -1.28125, -2.1074219, -3.9121094, 1.1035156, 1.2509766, -0.52001953, 1.8378906, -0.07702637, 0.8305664, 1.3857422, 2.1386719, -2.1914062, 0.051696777, -1.3837891, -1.7197266, 1.2871094, -3.0898438, 1.4082031, 0.84375, -0.34643555, -0.5024414, 1.4355469, 3.0195312, 0.29077148, 0.55322266, 0.4790039, -0.17956543, 0.53564453, -1.0605469, 0.9838867, -0.89501953, 1.859375, 1.0810547, 0.10699463, -0.29833984, -3.2324219, -0.69921875, -0.13183594, -1.9863281, 0.41015625, 0.53564453, 0.29736328, 1.3183594, -0.97558594, 1.9296875, 1.6503906, 0.96435547, 0.36083984, 0.4284668, -1.0185547, 3.6894531, 0.76123047, -1.8886719, -3.1816406, -0.5966797, -0.7036133, 2.4316406, 0.83203125, -0.037109375, -0.10614014, -1.7607422, -0.16955566, -0.54345703, 1.2001953, 0.15136719, 0.070373535, -1.1425781, 0.15893555, 1.453125, -1.9941406, -0.24255371, 0.52783203, 2.4160156, -1.1123047, 1.8027344, 2.1484375, -2.1679688, -0.08154297, -1.2294922, 1.9208984, 0.3479004, -1.6689453, 2.1855469, -2.4804688, -0.53027344, 1.2363281, -0.7216797, -2.0253906, 0.78027344, 1.3046875, 0.053497314, 1.4970703, 0.079711914, 0.20031738, -1.3027344, 1.8779297, -1.3212891, -2.4863281, 0.29638672, -0.1895752, 0.089660645, 2.546875, -0.07342529, 2.6445312, 2.0800781, 1.8916016, -0.5209961, 0.04510498, -1.34375, 1.8544922, 4.8867188, 1.7431641, 1.8769531, -0.5161133, 1.5048828, 1.0429688, 1.1181641, 1.5439453, -1.7451172, 0.3972168, 1.5390625, 0.09918213, -1.0507812, -0.65771484, -0.5097656, -0.4206543, -0.90527344, -1.1503906, 1.328125, 2.8300781, 0.56103516, -1.5683594, -0.23278809, 0.045166016, -2.2910156, 1.7607422, 0.16088867, 1.2832031, 3.0292969, -0.83496094, 1.5947266, 0.79052734, 0.4753418, 0.95410156, 0.66015625, 3.6347656, -1.2734375, -0.17895508, 0.703125, -1.1269531, 1.5224609, 1.1591797, 0.4855957, -0.17687988, 0.39331055, -1.1630859, -0.4375, -0.38867188, -1.6699219, -2.5527344, -1.2216797, 0.7368164, 1.3701172, 3.1894531, 0.24682617, 1.8349609, 0.2932129, 1.4775391, -3.1914062, 2.6445312, 0.8203125, -0.9057617, 0.1875, -2.0605469, 1.0322266, 0.02015686, -0.44213867, -0.47509766, 0.7651367, 1.0566406, -1.21875, 0.20336914, -0.25219727, -2.359375, 3.6582031, -0.044708252, 0.7080078, 0.23144531, -0.3239746, 1.7646484, 0.099121094, 0.62841797, -0.40429688, 0.9267578, -1.5869141, 1.9501953, 0.88134766, -0.9482422, 0.20935059, 1.4130859, 1.9160156, -0.091430664, 1.5029297, -1.1025391, 1.7197266, 1.7392578, -1.3427734, 0.6958008, -1.4238281, 0.44604492, -0.33911133, 0.09918213, -0.10217285, -1.7734375, 0.8911133, 0.66748047, -2.8085938, 0.40234375, 1.7753906, -0.67333984, 0.43579102, -2.1308594, -2.0058594, -0.93652344, -0.8486328, -0.24938965, -0.72216797, -1.0136719, 0.13500977, 1.9433594, 0.3942871, 0.70654297, -0.60546875, -2.3085938, -0.8754883, -0.10070801, 1.4375, -0.75146484, 0.13598633, 0.16540527, -1.1259766, -0.6225586, 1.2509766, 1.5488281, 1.546875, -1.7958984, -0.34326172, -1.3505859, 0.25683594, -0.32641602, 1.9111328, 1.4228516, -0.3239746, 1.8720703, -2.0410156, -3.734375, -2.3085938, -1.6064453, 2.0136719, 1.0244141, 0.21777344, 0.609375, 1.3613281, 2.4316406, -0.88964844, 1.3056641, 0.796875, -0.5185547, 1.6787109, 0.29052734, 1.2021484, 0.04171753, 1.3408203, 0.3503418, 2.1132812, 1.0595703, 0.13500977, 1.3378906, 0.6713867, -0.0110321045, -1.7597656, 0.24438477, -1.1396484, -1.2900391, -0.1673584, -1.3525391, 2.609375, 0.34521484, -1.8964844, -3.4335938, -1.2373047]}, "B007M2FWEI": {"id": "B007M2FWEI", "original": "Brand: \nName: Camping Emergency Butane Heater Coherent Heat Source Survival Tools\nDescription: Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.\nFeatures: Use standard butane gas cartidge for portability\nCeramic burner\nPressure sensing safety shut off device\nGas consumption 100gm/hr\nCE certificate\n", "embedding": [-0.23950195, 0.6201172, 1.7460938, -0.27734375, -0.671875, 1.1933594, 0.32226562, -1.8085938, -0.20568848, 2.3007812, 0.6621094, 0.059448242, 0.2775879, -1.6279297, 2.0527344, 0.0259552, 1.0751953, -0.18603516, -1.1113281, -0.13598633, 2.8027344, -0.7290039, 2.2207031, -0.60498047, -1.6796875, 0.86328125, 5.5273438, -2.640625, 0.5385742, -1.4199219, 0.32006836, 0.9536133, -0.35180664, 2.0566406, -3.3144531, -0.006252289, -1.8154297, 1.8564453, -3.4746094, -0.80029297, -1.6210938, 0.31640625, 0.6459961, -0.49243164, -2.4550781, -0.27929688, 2.2519531, -1.078125, -0.10821533, -0.85498047, 1.3408203, 0.065979004, -1.8701172, 0.08905029, -1.4882812, 0.6035156, -1.4150391, -2.1777344, 2.5273438, 1.4111328, 1.1425781, -0.10760498, -0.64404297, 0.5595703, -0.33251953, 1.9238281, 0.4033203, -2.0800781, -1.8779297, 1.0117188, 1.4414062, 0.16040039, -1.1806641, -0.16333008, -0.28466797, -2.0253906, -0.2932129, 0.6328125, 1.734375, -0.7416992, -0.73046875, -0.017303467, 0.30029297, -0.81152344, -1.5517578, -0.89453125, -0.8261719, 0.8510742, 0.44580078, 1.2783203, -2.0839844, 2.0351562, -0.8984375, -4.4335938, 1.3535156, -2.3632812, -0.8955078, -0.32226562, -0.5800781, 1.8525391, -0.81689453, 1.2460938, 0.5078125, 0.30151367, -2.5996094, 0.4909668, 2.5097656, 2.0214844, -1.7412109, 0.47387695, -2.6914062, -1.3945312, 0.39453125, -0.25854492, -2.8867188, 0.5551758, 1.2558594, -0.29174805, 3.9316406, -0.4477539, 2.7363281, -1.2041016, 0.26611328, -2.0898438, 1.4169922, 1.6572266, 0.7319336, 0.6142578, 2.34375, -1.0820312, 0.6821289, 1.5185547, -0.4560547, -0.12322998, -1.1953125, -1.3554688, -2.7792969, -1.7910156, -1.9033203, -1.8388672, -2.9394531, 1.5126953, 0.53271484, -0.62939453, -2.5351562, -0.70996094, -1.6054688, 1.7490234, -0.31201172, 0.8696289, 0.7319336, -1.9316406, 0.8798828, -4.0507812, 1.2734375, 2.1015625, -1.203125, -0.80371094, 5.1289062, 2.0566406, -0.34692383, -0.40112305, 0.46484375, 0.15332031, -1.2910156, -1.9638672, 0.68603516, 0.3869629, -0.55859375, 0.9375, 0.8232422, -2.2792969, -0.73779297, -0.6694336, -0.9897461, -1.0517578, 0.45263672, 1.1474609, 0.61621094, -0.15112305, -2.8632812, -1.0712891, 0.72314453, 1.4111328, 1.3515625, -0.40039062, -0.5966797, -2.9882812, -0.14208984, -0.77441406, -0.79296875, 1.0253906, -0.42700195, 0.6113281, 0.7792969, -1.0292969, -0.53027344, -2.0859375, 0.63427734, -0.046142578, -0.38793945, -1.4550781, -0.57666016, 0.63623047, -2.375, -2.7851562, -0.03753662, 0.64697266, 2.2363281, 1.5, 0.51660156, 0.02583313, 2.0820312, 0.59277344, -0.5732422, -2.3261719, 0.062438965, -0.06304932, 0.91748047, 2.3886719, -1.0068359, -0.18322754, -0.5229492, -0.4831543, -0.02861023, 2.6015625, 0.9526367, -0.2993164, -2.0957031, -2.1679688, 1.6777344, 1.328125, -0.41918945, -0.3022461, 0.31884766, 2.2226562, -0.71875, -0.3791504, 1.984375, -0.5678711, 0.3623047, -1.3369141, -0.07659912, 1.3789062, 0.9716797, -0.6123047, 0.026550293, 0.70654297, 0.51416016, -0.6347656, 0.47924805, 0.5180664, 0.19641113, 2.28125, -2.171875, 0.9897461, 0.578125, 0.6435547, 0.1149292, -1.4707031, 1.046875, 1.7880859, -1.1757812, 1.0078125, 0.27563477, -0.9604492, 1.1552734, -0.43188477, -0.9277344, -0.23413086, 0.9663086, 2.0136719, 2.3144531, 1.3808594, 2.3828125, 2.0351562, -0.61376953, 1.3876953, -0.49047852, 1.7988281, 0.07867432, 0.3137207, 1.0126953, -0.036254883, 0.6196289, -0.80322266, -1.2626953, 0.82714844, -2.09375, 0.29418945, 3.6835938, -1.0986328, -3.2382812, 3.6425781, -1.7480469, 0.56152344, 1.2841797, 1.234375, -0.10601807, -1.8183594, 1.1396484, 0.66064453, -0.6074219, 1.765625, -3.1523438, -0.016433716, 1.3066406, -0.67089844, 1.2949219, 3.4316406, 0.35742188, -0.7495117, -2.8222656, -0.80322266, -4.0742188, -0.77490234, 0.45214844, -3.1660156, 1.7070312, 0.21032715, -0.5151367, 0.8984375, 0.61035156, -2.1210938, 0.41577148, 0.62353516, -0.028793335, 2.6699219, -0.1920166, -0.9140625, 0.023971558, -1.484375, -1.2695312, -0.7060547, -1.4541016, 1.0644531, -0.30859375, -2.7714844, 2.3925781, -0.4020996, -0.05105591, 0.47387695, -0.78808594, 0.35253906, -1.5410156, 0.0473938, -2.1230469, 0.16540527, 1.1445312, -3.2226562, 1.5791016, 1.9794922, -1.8886719, -4.0703125, 0.09667969, -0.91259766, -0.78027344, 0.96484375, -1.7929688, 1.1738281, -0.16455078, -0.20568848, 1.3896484, -0.14135742, -1.7128906, -1.1494141, 0.8647461, -3.2753906, 2.4121094, -1.765625, 2.2714844, 0.06365967, 0.22644043, -0.3322754, -0.74072266, 2.6289062, 0.515625, 1.609375, 0.0904541, 1.0761719, -0.055267334, -0.2993164, -0.78271484, -1.2558594, -2.7832031, 1.4394531, -1.1474609, -1.3457031, -1.6025391, -2.9375, -0.05545044, 0.10668945, -0.088256836, -0.5527344, 0.10418701, 0.40283203, -0.14624023, -1.0810547, -0.0030841827, -0.4177246, -0.49243164, -0.19909668, -0.7441406, 0.36376953, -1.0234375, -1.6074219, -0.8051758, -0.68847656, 1.7255859, -0.2253418, -0.046691895, 1.4511719, -0.044555664, 0.7578125, 1.7138672, -3.8613281, 0.2076416, 1.9941406, -0.70214844, -1.2539062, -1.5205078, -1.1523438, -0.82714844, 0.25439453, 3.2265625, -0.33544922, 3.5683594, 0.8183594, 0.8300781, -0.62890625, 3.4179688, -1.1005859, 0.4831543, -0.12286377, 1.5175781, -2.4394531, -2.6035156, 1.1269531, 1.3007812, -2.2070312, -0.2980957, 1.1962891, -0.02607727, 2.3398438, 2.0585938, -2.2460938, 0.5161133, 0.546875, -0.9555664, 2.5859375, 0.17919922, -1.0117188, -0.31982422, -0.19311523, 1.8291016, 2.1054688, 0.9140625, 2.0820312, 1.4677734, 0.4934082, 2.2421875, -0.16430664, -0.93310547, -0.71533203, 0.9116211, 1.0322266, 1.1933594, 0.03189087, -0.46142578, 0.9584961, 0.47998047, 1.7070312, -2.4394531, 1.0771484, 1.640625, 0.3515625, -0.6821289, -0.796875, -1.3154297, -0.43676758, -1.9921875, 1.8740234, 1.2978516, 0.17700195, 0.97265625, -2.2050781, -0.60791016, -2.0761719, 1.1767578, -0.7426758, 0.95166016, 0.93847656, 0.86865234, -2.0625, -2.2714844, -1.3046875, -0.66796875, 0.5883789, 2.5820312, -1.0175781, -1.1699219, 0.72265625, -1.8359375, -0.4958496, 1.1669922, -0.5395508, 0.0020427704, -0.57910156, -1.453125, 0.26904297, -0.66308594, 0.1586914, 1.9560547, -1.2421875, 1.3740234, -0.74853516, -0.8745117, 1.1289062, -1.1933594, -0.27612305, 2.0585938, -1.0126953, -0.46484375, 0.44360352, 2.6347656, -1.3183594, -3.2011719, 1.1523438, -0.84814453, 0.27612305, 0.1821289, -3.3085938, 0.6826172, -0.24645996, 0.5073242, 2.8046875, -0.06500244, 1.5585938, 1.7490234, 0.80615234, -2.1074219, -3.0820312, 0.6699219, 1.0458984, -1.9882812, 0.018997192, 1.0458984, -1.8867188, -2.0878906, -0.26611328, -0.6669922, -2.2265625, 1.1816406, 0.8515625, -0.7939453, 0.08911133, 0.8330078, 2.2753906, 0.0066566467, -0.16809082, -1.0458984, 0.055389404, 0.38916016, -2.4414062, 1.9248047, -0.42626953, 0.9433594, -0.8071289, 4.2890625, 1.6708984, -0.6191406, -0.027511597, 1.2285156, 0.5546875, 0.15551758, -2.1289062, 0.32861328, -1.6064453, 0.67822266, -1.1767578, 0.19421387, -1.2070312, -1.4375, 1.6347656, 1.9345703, 1.2841797, 2.1191406, 0.89941406, -0.96875, 1.0478516, 0.14147949, -2.65625, -1.8222656, 0.5390625, -0.83203125, -0.10870361, 1.6884766, -0.08203125, -2.6816406, -0.24389648, -1.5664062, -0.45288086, -0.9296875, 2.0449219, 1.2021484, 0.5029297, -2.3574219, -2.5527344, -1.1777344, 0.16992188, 1.8710938, 0.45239258, 1.1640625, 0.81103516, 0.11853027, 0.8671875, -0.5058594, -0.0625, 1.3134766, 0.41186523, 0.59765625, -0.6777344, 0.15356445, -0.69873047, -0.8208008, -0.96875, 0.64404297, 2.109375, -1.8671875, -0.68115234, -0.31811523, 1.1875, -0.08416748, -1.6699219, 0.8149414, -0.67822266, -0.35839844, -0.15368652, 3.0292969, -1.7294922, 0.9506836, 0.71484375, 0.7578125, 0.091552734, -0.16430664, 0.71777344, 0.77490234, -1.3710938, -0.9165039, 2.5957031, 1.5107422, -0.93310547, 2.4433594, 2.3691406, -0.92333984, 1.265625, 1.4375, -1.6083984, 0.80322266, -1.6650391, -0.4416504, 2.1054688, -0.92529297, -1.1220703, 0.16455078, 2.4394531, 0.40722656, 3.1171875, -0.9194336, -1.5478516, -0.69189453, -2.4335938, -0.83154297, -1.7275391, -0.13366699, -0.40112305, -2.2070312, 0.26708984, 0.63378906, 2.6308594, 2.390625, 0.46850586, -0.19824219, 0.76123047, -2.484375, -0.36279297, 1.8642578, -1.1152344, -2.1953125, -0.29711914, 1.6806641, 1.5966797, 1.4199219, 2.4492188, 1.2294922, -0.6777344, 0.029220581, -1.4941406, 0.73876953, -2.2734375, -1.1943359, 0.7753906, -1.2041016, 1.171875, -1.6904297, -1.2089844, -0.75683594, 1.3417969, -1.1640625, -0.23913574, -1.1142578, -1.1894531, -2.5878906, -2.2285156, -0.5913086, -1.2304688, -1.8330078, 0.055908203, -1.5703125, -1.0009766, 0.21496582, -0.5566406, 1.6074219, -0.42456055, 0.7910156, -0.17785645, 1.5351562, -0.4753418, -0.32006836, 1.0029297, 1.3925781, -0.6152344, 0.8378906, -2.0488281, -2.0996094, -2.6015625, 0.29882812, -0.80322266, -0.2055664, 0.089416504, 0.17163086, 1.0742188, 3.8242188, 2.3105469, -1.7578125, 1.4208984, 1.7021484, -1.2294922, 1.6357422, -2.1875, 1.8935547, 1.3789062, -0.7451172, -0.032318115, 1.7949219, -0.765625, -0.004711151, 1.5986328, 2.1582031, 0.47314453, 0.1550293, -2.0019531, 0.42993164, 0.15454102, 1.1523438, 0.10131836, 1.6962891, -0.2919922, -3.1425781, -1.5761719, -0.79589844, -1.796875, -0.45385742, -0.009422302, 2.6582031, -0.40722656, 0.4633789, 0.66259766, -0.23510742, 1.0302734, -1.0888672, 1.0927734, 0.94189453, 3.2714844, 1.0107422, -0.21362305, -2.3164062, -2.15625, 0.9692383, 2.3515625, -0.4182129, -0.54589844, -0.14440918, -1.9599609, -0.0993042, -1.6679688, 1.7099609, 0.56689453, 1.0966797, -1.5791016, 1.5693359, 3.6015625, -2.0234375, -0.43823242, 0.025817871, 1.2021484, -1.0478516, 1.9277344, -0.10321045, -2.4238281, 1.6943359, -0.8378906, 1.8076172, -1.3398438, -2.7910156, 2.1054688, -2.5546875, 0.41845703, 0.7421875, 0.75390625, -2.3886719, 1.3769531, 1.2988281, -0.43359375, 0.70458984, 0.91064453, -0.5449219, 1.0664062, 2.4824219, 0.5390625, -2.7285156, -0.90722656, -2.328125, -1.7216797, 2.1386719, 0.14868164, 0.41992188, 0.5317383, 2.4335938, 0.56591797, 1.5087891, -1.2841797, 2.2324219, 3.5703125, 1.625, 0.7402344, 1.1894531, 2.2304688, 1.5195312, 1.9941406, -0.55029297, -0.9951172, -0.75390625, 0.099853516, 0.034088135, -0.5913086, -1.4277344, 0.46435547, 1.03125, -0.6035156, -2.1972656, 1.6572266, 2.1542969, -2.0898438, -0.5996094, 1.0068359, 0.8051758, -2.1386719, 1.3427734, -0.2705078, 2.8046875, 2.046875, 0.31640625, 0.6328125, 0.16308594, 0.21813965, -0.52978516, -0.049835205, 2.9628906, -2.6542969, -0.19335938, -0.5673828, -2.2441406, -0.9838867, 1.5654297, -0.0637207, 0.6791992, 0.5463867, 0.73779297, 0.65966797, -0.9135742, 0.37548828, -0.45898438, -1.46875, 1.7431641, 3.1308594, 2.0273438, 0.6635742, 1.1601562, -0.7475586, -0.3479004, -1.4208984, 1.8476562, 0.06542969, -1.0537109, 0.75634766, -2.484375, 2.5839844, -0.42822266, 1.5273438, -3.7910156, 0.88623047, 1.4355469, 0.0146865845, -1.4453125, 0.60009766, 1.8027344, 1.7392578, -0.032592773, 0.22961426, 9.059906e-05, -0.16333008, 2.359375, -0.8383789, 0.33520508, 0.51123047, -0.009147644, -1.0253906, 1.3691406, 0.32202148, -1.5537109, -0.9375, 3.3066406, 0.8486328, 0.37597656, -0.69433594, -0.76904297, 2.0253906, -0.025283813, 0.15734863, -0.99902344, -1.2753906, -3.0839844, 0.97998047, -1.3525391, -0.82714844, 0.48828125, 1.9287109, 0.006263733, -3.2050781, -0.7109375, 2.4648438, -0.46411133, 0.5722656, -0.93847656, -3.5507812, -1.4619141, -1.3144531, -0.13537598, -0.70996094, -1.3603516, -0.90722656, -0.034484863, -0.46313477, -0.6074219, 0.55371094, -0.062316895, -0.11260986, 0.3322754, 0.7158203, -1.6074219, 1.0400391, 0.09863281, -2.3105469, 1.4892578, 1.8554688, 1.5537109, 0.4736328, 1.9541016, -1.9169922, -0.43945312, 0.41796875, -0.70166016, 1.4013672, 0.95458984, 0.080200195, 1.0849609, -2.7402344, -1.4921875, 0.07324219, -1.4042969, 0.5234375, 0.8046875, -0.5595703, 0.4873047, 1.1806641, 2.6503906, -1.0595703, 0.2524414, -1.3876953, 0.5888672, 0.82177734, 0.32202148, 1.7373047, 0.79833984, -0.046051025, 0.41796875, 1.7929688, 1.0908203, -0.2019043, 2.1660156, 1.0410156, 0.25390625, -0.22497559, -0.96728516, -1.5644531, 0.15661621, 1.0498047, 0.8876953, 2.3339844, -1.125, -1.1210938, -2.9765625, 1.5664062]}, "B07FLBPHCD": {"id": "B07FLBPHCD", "original": "Brand: Happy BBQ Apparel\nName: BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt\nDescription: \nFeatures: This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh!\nThis fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby!\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.049713135, 2.8222656, -1.4443359, -0.67626953, -0.1595459, 0.8642578, 2.484375, -0.84521484, 1.6611328, 0.20117188, 0.15124512, -0.47607422, 0.609375, -4.9726562, -0.72216797, 1.0976562, -0.01285553, -0.07904053, 1.5644531, -0.7739258, 1.1171875, -1.7285156, 2.0039062, -0.19921875, -1.0966797, 0.73583984, 4.2304688, -1.2451172, 1.6347656, 0.6845703, 2.984375, 0.9716797, 0.49316406, 1.7773438, -2.2011719, 2.3417969, -1.1962891, -0.045532227, 0.16137695, 1.8730469, -1.6474609, -0.62109375, 1.0234375, 1.7226562, -2.984375, 0.2680664, -1.828125, 1.640625, -2.0976562, -3.4414062, 0.83203125, 3.1210938, -1.2460938, 0.9980469, -1.8505859, 1.1015625, -0.72998047, -0.067871094, -0.45776367, -0.72509766, 0.51416016, 0.28149414, -1.0019531, 0.12731934, 1.8671875, 1.4482422, -1.5390625, -0.45629883, -0.14526367, -1.1806641, 0.62890625, -0.9946289, -1.5595703, -0.024429321, 0.77441406, 1.6035156, 0.88183594, 0.17370605, -0.09918213, -0.97802734, 1.7636719, 3.8164062, -0.081848145, -1.8203125, -0.98535156, -0.44921875, -2.4296875, -0.6489258, 2.5996094, -1.1210938, 1.1591797, 2.34375, -2.7011719, -4.4960938, 1.5966797, -2.2285156, 0.8198242, -1.3310547, 1.1171875, 1.2880859, -1.1015625, -2.1757812, 0.62646484, 1.1904297, -0.5957031, -0.3251953, 0.111328125, 0.88671875, -2.6503906, 0.50097656, -2.09375, 1.6416016, 1.3359375, 0.20056152, 1.7285156, 0.020874023, -0.8989258, 1.2890625, 3.640625, -1.0927734, 1.4697266, -1.3339844, 2.1777344, -2.3085938, -1.1640625, 0.68408203, 0.578125, 2.4667969, 2.1035156, -0.37939453, 3.4414062, 0.22033691, -0.92822266, -1.5771484, -0.45654297, -0.7573242, 0.089782715, -0.21569824, -0.26489258, 2.7695312, -1.0019531, -0.115478516, 1.9873047, -1.4560547, -0.4729004, -0.9067383, -1.3349609, 0.30664062, -0.016036987, -2.2441406, 0.6166992, -1.9775391, -1.4150391, 0.19152832, 1.6171875, 0.65234375, -0.70654297, -1.6533203, 1.4306641, -1.2216797, 0.71728516, -1.140625, 0.68359375, 0.60595703, -0.25, -2.0898438, -2.2207031, 1.1904297, -1.4912109, 2.4902344, -0.36035156, -0.29223633, 2.6328125, -2.9648438, 2.6875, -2.0292969, 0.2783203, 1.3779297, -0.30908203, -0.49780273, -0.3083496, -2.3378906, 1.9189453, 1.1328125, -0.1887207, -2.359375, 0.5307617, 1.1826172, 0.8442383, -1.4345703, 0.9458008, 0.72998047, 2.1777344, 1.5234375, 0.27978516, 0.22021484, 0.69433594, -2.4238281, 0.5629883, 1.4306641, 0.37060547, -0.73779297, -2.1367188, -1.1826172, -1.3955078, -3.2480469, 1.8183594, -2.9375, 0.8461914, -1.0683594, 0.118896484, -1.328125, 0.16088867, 1.8349609, 0.39379883, -1.6845703, -0.3779297, -2.265625, 1.9892578, 2.0820312, -0.8569336, 1.5488281, 0.5053711, 1.875, -1.1435547, 0.41333008, -0.7402344, 1.8378906, -1.3046875, -0.49023438, 1.6230469, 1.7988281, -0.1809082, -0.4345703, -0.91015625, 0.86035156, 0.28076172, -0.93310547, -1.5693359, -0.34155273, 0.30273438, 0.026748657, -2.9746094, -2.9355469, 0.8959961, 1.7226562, -1.6767578, 3.3457031, 1.2900391, 0.73046875, 0.50390625, 1.0302734, -0.62060547, 0.9326172, -0.77197266, 0.31860352, -0.29101562, -0.29589844, -2.25, -0.099975586, 1.5556641, -0.4169922, -2.6835938, 0.9243164, 0.34326172, 1.8701172, 3.1132812, 1.5087891, -0.9057617, -2.6582031, 2.9785156, 2.3203125, -1.1992188, -2.5410156, 2.7851562, 0.24243164, -0.80126953, 0.10986328, 0.6484375, -1.1416016, -0.7495117, 0.7807617, -0.40625, -0.8569336, 1.796875, -0.10760498, -2.4472656, -2.4921875, -0.23266602, 0.9379883, 3.0234375, 0.16955566, 2.9628906, 1.3378906, -1.6855469, 2.53125, -1.3330078, -0.6582031, 0.25561523, 1.5332031, 1.2558594, -0.2919922, -1.2324219, -0.09509277, -0.8232422, -0.09051514, 0.33764648, -0.1920166, -0.2824707, 1.0214844, 1.9599609, -2.171875, -0.4921875, 0.2578125, -2.0761719, -3.9003906, -1.0693359, -1.7998047, 0.62060547, 2.0371094, 2.6386719, 1.0605469, 0.8955078, -1.8730469, 0.033203125, 1.8291016, -1.3798828, 1.0009766, 0.6489258, 0.9042969, 1.9765625, 0.3244629, -1.2587891, -0.074157715, -1.8388672, -1.3769531, -0.8359375, -0.30859375, 0.5546875, -0.017990112, 0.53808594, -0.4494629, -1.0546875, 0.89453125, 0.15539551, -2.4511719, -0.47509766, 0.48901367, 0.6660156, -0.2722168, -1.0947266, -0.6953125, -1.3974609, -4.4960938, -1.0791016, -0.11260986, 1.8613281, 0.5996094, -1.7314453, 0.1541748, -1.4228516, -0.8720703, 1.7177734, 0.49536133, 1.1259766, -0.12213135, 0.5498047, -2.6796875, 1.6494141, -2.109375, -1.4658203, -0.11413574, 1.6640625, -1.9169922, 1.0966797, 0.9008789, -1.9169922, 4.8476562, -0.6694336, -0.35058594, -0.8286133, -1.4648438, 2.2441406, 2.0410156, -1.9287109, 0.3166504, 1.7724609, -0.32836914, -1.0292969, -3.8496094, 0.4675293, -0.5654297, 0.006626129, -0.69433594, 3.015625, 0.022979736, -1.0263672, -0.97314453, 1.5585938, 0.022720337, 1.8652344, 0.55566406, -2.0195312, -0.8769531, 0.9223633, -1.1943359, -2.2773438, -1.4189453, 2.5195312, -1.4550781, 1.8330078, 0.9350586, 1.0263672, 1.0214844, -1.3710938, -3.9199219, 1.2363281, 2.6855469, -0.92285156, -1.7734375, -0.35351562, -2.4375, -1.8232422, 1.2744141, 1.4433594, 1.2119141, 0.46289062, 2.4472656, 2.3085938, -1.4951172, -0.2199707, 0.28222656, 1.796875, 2.3828125, 2.2089844, -0.6323242, -2.296875, 0.3798828, 1.2910156, 0.20410156, -1.2041016, 2.1386719, -0.2614746, 0.55908203, 0.14221191, 1.3203125, 0.21936035, -1.0507812, 1.0097656, -1.7333984, -1.2734375, -0.42871094, 0.97314453, -0.84375, -1.3955078, 1.2070312, 1.5078125, -0.00856781, 1.9462891, 0.6088867, 0.33032227, -1.2265625, 0.8017578, 1.0498047, 1.6152344, 1.2998047, 1.9980469, -0.19262695, -0.7138672, 1.3154297, -1.4111328, 2.453125, -1.7753906, 0.28320312, 2.328125, -1.2441406, -1.8095703, 0.8461914, 0.39404297, 0.58496094, -0.47338867, -2.8945312, -0.7729492, -0.734375, 0.44702148, -2.6464844, -1.8496094, -1.3427734, -0.64208984, -1.9287109, -1.4003906, -0.7416992, 1.4697266, -1.4414062, 0.23547363, 0.47143555, 2.2382812, 1.1474609, 1.1142578, -0.30493164, -0.26513672, -0.012321472, -2.015625, 0.25024414, 1.4765625, -1.4677734, -1.0234375, -0.5644531, 0.25585938, 2.4042969, -1.4023438, -1.3447266, 0.5439453, -2.2597656, -0.69873047, -3.2363281, -0.39819336, 1.6435547, -2.9785156, -0.5913086, 2.9980469, -1.6054688, -2.1835938, -0.49902344, 3.0605469, 1.1054688, -1.6230469, 2.5371094, 0.95410156, 2.3652344, -0.48754883, -2.171875, -0.16235352, 1.4248047, -1.7929688, 3.5234375, 1.0859375, 0.0036411285, 2.390625, 0.83447266, 0.69677734, -1.6845703, -0.3305664, -0.23779297, -0.87109375, 0.28759766, -0.7734375, 2.0546875, -0.29101562, -1.5722656, -1.1708984, -1.65625, 0.90283203, 0.053710938, -1.6064453, 0.73876953, -2.2753906, 0.47338867, -0.091308594, 0.29736328, -0.3371582, -0.94873047, -0.25732422, -0.14672852, 1.4404297, 1.0595703, 1.0957031, -1.8242188, 1.8398438, -0.34643555, 0.013809204, -2.7929688, 1.21875, 3.1074219, 0.03768921, -2.5234375, 0.2956543, 0.6074219, 0.4284668, 0.08270264, 0.59277344, -0.31982422, -1.2421875, -2.234375, -0.8256836, 2.1367188, 1.0732422, 0.9428711, -3.515625, 0.8442383, -1.5322266, -0.84033203, -0.67089844, -1.9414062, 0.10736084, 2.015625, 0.55908203, -1.2460938, 0.42871094, 0.1619873, 0.5732422, -2.9277344, 1.8505859, 2.7792969, 0.11682129, 3.3867188, -0.69921875, -2.1171875, 0.94384766, -0.39331055, 0.35131836, 1.0800781, -0.19360352, 0.37280273, -0.42651367, -0.34350586, 0.10626221, 0.47070312, -1.4433594, -2.4902344, 0.9667969, -1.4238281, 1.5039062, 0.2770996, 0.6933594, -0.50097656, -1.8056641, 2.8730469, -0.5839844, -0.35913086, 4.65625, 0.52246094, -0.8676758, 1.0693359, 1.9628906, 0.9970703, -0.4260254, 0.28881836, 0.02444458, -2.6347656, -2.1972656, 0.7114258, -1.3496094, -1.1689453, 2.0761719, 0.5234375, 0.60302734, 0.6020508, -1.4912109, 1.8974609, 3.9003906, -0.85009766, 2.6035156, 0.8432617, -0.546875, 2.2070312, 2.5332031, -4.28125, 0.71972656, -0.9291992, 0.0446167, 0.79296875, 1.8974609, -1.9609375, -1.7646484, -0.08166504, -1.6337891, 3.4921875, 1.4248047, -0.4140625, -1.2265625, -1.9414062, -3.3769531, 1.0751953, -0.8959961, 2.4785156, -0.039886475, -0.2734375, -2.1484375, -0.33032227, 3.2324219, -0.39379883, 0.55078125, 0.79345703, -0.66845703, -2.9414062, -1.9414062, -0.90234375, -2.8730469, -1.4414062, 1.9169922, 1.1796875, -0.24353027, 1.1767578, 0.7519531, -2.4042969, 1.6259766, -2.3359375, 3.2675781, -0.5522461, 1.5488281, 2.640625, -0.8017578, 1.1279297, -2.9863281, -0.13500977, -0.14465332, -0.13085938, 1.8740234, -1.5742188, -0.03439331, 1.2050781, -1.6083984, -3.7363281, -1.4140625, 0.87890625, 2.3691406, 0.25976562, -0.23925781, 2.8300781, -0.3322754, -0.9863281, -0.35083008, 0.45288086, 0.5131836, -1.2041016, -1.5214844, -0.85253906, -1.0556641, 0.87109375, -1.5556641, 2.5039062, -1.1416016, -0.67041016, -0.9291992, -0.96484375, -0.10601807, -5.0234375, -1.3427734, 1.7626953, 0.6855469, 1.2226562, 0.29833984, 4.109375, 0.5175781, 2.1113281, -1.3232422, -0.8691406, -1.6542969, -1.4589844, 1.3291016, -2.390625, -0.8613281, 0.83203125, -1.6894531, 1.4208984, 0.25463867, -0.18981934, 1.3291016, 0.37939453, -0.94677734, 0.39868164, 0.044189453, 1.0976562, 1.7792969, 0.3161621, -0.6459961, -0.5073242, -2.6699219, -3.0039062, -1.0576172, -1.2373047, -1.5292969, -1.3310547, 1.0322266, 1.1435547, 1.25, 2.4882812, 1.6318359, 1.9248047, -0.5366211, 0.10168457, -1.15625, 1.0390625, 0.28637695, 0.029953003, -1.6298828, -1.4384766, 1.0595703, 1.3125, 0.8413086, 0.11224365, -2.5410156, -1.0820312, -2.0605469, -0.22167969, 1.5234375, 1.8632812, 0.8305664, -0.52490234, 1.9023438, 1.5029297, -2.5625, -2.2910156, -0.5932617, 1.0390625, -1.6425781, 5.4179688, -0.36621094, -1.7910156, -0.5419922, 0.44262695, 0.67089844, 2.6367188, -1.8115234, 0.65478516, -2.453125, 0.3852539, -1.1904297, -3.0683594, -0.33154297, -0.08862305, 1.1035156, 0.26708984, 0.35717773, 1.9023438, -0.3137207, 0.4099121, 0.22558594, -2.8144531, -1.5390625, -0.78515625, 1.8935547, -2.5761719, 0.26513672, -1.5751953, 1.3427734, 0.16845703, -1.3212891, 0.49316406, 0.97265625, 0.91259766, 1.7597656, 2.4980469, 2.875, 0.67089844, 5.0351562, 2.2714844, -0.14221191, 3.6445312, 0.52441406, -0.60791016, 0.83447266, 2.6816406, 1.9794922, 1.1474609, -1.4179688, 1.1826172, -1.3515625, -0.50341797, -0.2878418, -0.36401367, -0.5805664, -0.78515625, 0.40112305, 0.73339844, 1.6884766, -2.515625, 0.39648438, 0.24609375, -0.87158203, -2.421875, 0.77783203, 1.6269531, 0.296875, -0.010971069, -1.1503906, 1.1767578, 0.4560547, -3.4667969, 1.0742188, 2.5976562, -2.5332031, 0.8027344, 2.0488281, 2.5390625, 0.7451172, -0.63916016, -1.09375, 0.7480469, 0.6801758, 0.94677734, 1.1513672, -0.3269043, 0.078063965, 1.5849609, -0.5620117, -2.546875, -0.23278809, -2.5097656, 0.8305664, -2.546875, 2.2460938, 0.21655273, 2.6289062, -0.5180664, -2.5820312, 2.0117188, 0.75927734, 3.0410156, 1.5058594, 1.9501953, 0.023635864, -3.3417969, 0.36572266, 0.8989258, -0.29492188, 1.7314453, -0.74609375, -2.3789062, 0.2479248, 0.23510742, 1.6669922, 0.65185547, 0.059173584, 0.8676758, 1.1474609, 0.004386902, 0.36108398, -0.56591797, -1.2958984, 1.0390625, 0.33544922, -0.66748047, 2.5957031, 0.6225586, -1.8505859, 1.8515625, -1.4433594, -0.34179688, -0.35742188, -0.66796875, -3.1660156, -0.89404297, 1.1064453, -1.0107422, -1.2285156, -0.38891602, 0.86572266, 0.4477539, 1.4599609, 0.076049805, -1.8935547, 0.5102539, -0.12145996, 0.1270752, 1.5966797, -1.2177734, 1.5644531, 0.11651611, 0.6958008, 1.7402344, 1.2265625, 0.19836426, -1.0371094, -2.0136719, -2.1757812, 0.13696289, 0.3605957, 1.0703125, -1.0126953, -2.6308594, -0.89501953, -0.07659912, 1.3183594, 0.64404297, 1.7236328, -2.7851562, -1.3945312, -2.2851562, -2.0957031, 1.390625, 0.36914062, 4.21875, 1.7998047, 1.5712891, -2.8105469, -1.4091797, -3.1035156, 3.0234375, -3.2949219, 0.5864258, 0.58251953, 0.69189453, 0.6191406, -0.99609375, -1.2734375, -1.0791016, -0.5957031, 2.0820312, -1.7978516, 1.4394531, -1.5039062, 1.0097656, 0.18481445, -0.6542969, -0.6279297, 1.25, 2.1835938, 1.8525391, 0.6748047, 1.2470703, 2.3808594, 0.05050659, -0.20666504, 1.65625, 1.0039062, -0.13427734, -1.0917969, -0.22106934, 0.96484375, 0.51464844, -1.0683594, -1.2890625]}, "B08JTM7VNS": {"id": "B08JTM7VNS", "original": "Brand: Hisencn\nName: Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12\" for 22.5'' Smokers, Performer Premium Grill\nDescription: \nFeatures: \u3010Compatibility\u3011Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate.\n\u3010Dimensions\u301114.5\" L (the handle part is included) x 12\" W x 1.5\" H.\n\u3010Material\u3011Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill.\n\u3010Features\u3011Seals the moisture and flavor of barbecue and retain the original flavor of barbecue.\n\u3010High-quality\u3011Provides exceptional heat retention and distributiensuring evenly cooked food.\n", "embedding": [-1.6015625, 0.8066406, 0.25146484, -1.5039062, -0.038085938, 0.62646484, 1.0917969, -0.42041016, 0.7246094, 1.5332031, 2.2597656, -0.09460449, 0.05810547, -3.0722656, -0.32250977, 0.08135986, 1.3378906, -0.42919922, 1.5146484, 0.85058594, 2.2832031, 1.1005859, 0.7314453, -0.6743164, 0.84716797, 1.8984375, 4.671875, -3.1425781, 1.2988281, -2.6757812, 2.8828125, -0.80029297, 1.78125, 0.8833008, -2.1386719, -0.15759277, -2.2480469, 2.453125, -1.1464844, 0.37426758, -0.5073242, 0.11541748, 0.4025879, 0.02684021, -2.7167969, 0.81640625, -0.3479004, 2.2753906, -1.921875, -0.08300781, 2.9628906, 1.8808594, -0.27978516, 0.890625, -0.70703125, 3.9257812, 0.5151367, -1.0253906, 0.6435547, -0.8569336, 2.6894531, 0.32739258, -1.7148438, -0.17602539, -0.05895996, -0.079833984, 1.4091797, -0.43774414, 0.9121094, -0.86572266, 1.4277344, -0.94091797, -2.375, -0.29956055, -0.5698242, -1.8486328, -1.1464844, 1.109375, 0.38842773, -0.5439453, -2.1992188, 2.7441406, 0.56884766, -2.34375, 0.11199951, -0.75390625, -0.8613281, -2.2363281, 1.9257812, -1.2597656, 0.20166016, 2.5351562, -1.796875, -3.7734375, 2.2382812, -2.1425781, 0.32348633, -1.2744141, -1.9238281, 0.9223633, -1.3164062, 0.17346191, -1.390625, 0.57714844, -3.8027344, -1.1845703, 1.4042969, 0.52783203, -0.2208252, -0.48046875, -1.5585938, 0.45874023, -0.23925781, 1.9257812, 0.6567383, 0.044158936, 1.1337891, 0.37695312, 1.1357422, 0.6982422, 3.1210938, 0.13537598, -0.3310547, -1.8710938, -0.8588867, -0.64746094, 0.12261963, 0.7631836, 3.6210938, -2.3828125, -0.3479004, -0.46020508, 2.8535156, -0.40771484, -1.1064453, -1.6484375, -1.2539062, 1.1191406, -2.1953125, 1.4003906, -0.48339844, 0.9916992, 1.3847656, -0.07891846, -2.9355469, 0.31713867, -0.20666504, -0.017242432, -0.73095703, -0.47070312, 0.74121094, -1.8867188, -0.8803711, -0.77734375, 2.4238281, -0.6269531, -0.51123047, -0.8432617, 1.8320312, 1.6210938, 1.3398438, -1.3164062, 0.6542969, 1.9140625, 1.4414062, 1.0615234, -0.9379883, 2.6074219, 0.016860962, 3.6269531, 0.77490234, 0.70947266, 0.9526367, -0.87890625, 1.8193359, -1.2197266, -0.9404297, 1.9482422, -0.9638672, 0.25756836, -1.0175781, -4.078125, -0.007423401, -0.28320312, 0.4650879, -0.49121094, -0.3190918, 0.77441406, 1.8632812, 0.06500244, 0.083862305, -0.12420654, 1.671875, 0.30908203, -0.28173828, -0.17907715, 0.30297852, -2.9179688, -0.23828125, -0.73828125, -1.9082031, -1.1630859, 1.1396484, -0.20739746, -1.0537109, -2.6816406, -1.0224609, -0.59814453, 1.3583984, 1.3818359, 1.5498047, -2.4199219, 0.6928711, 1.2617188, -0.5834961, -0.59521484, 1.9287109, -1.0585938, 0.42358398, 1.0419922, -1.6582031, -0.89501953, 0.8457031, 3.1875, -0.04498291, 1.4511719, -0.12878418, 1.1328125, -2.2460938, -1.6289062, 2.6425781, 0.5366211, -0.4099121, 2.1992188, 0.29345703, 3.7578125, 0.46044922, -0.44873047, 0.077697754, 1.4833984, 0.08728027, 0.19665527, -2.6484375, -1.3808594, -0.7060547, 0.40112305, -2.6074219, 3.1621094, 0.5600586, 0.28027344, -1.0048828, 0.8881836, -0.12548828, 1.2744141, 0.30126953, 1.0107422, -1.5097656, 0.74609375, -0.84521484, -2.7109375, -1.0039062, -0.9667969, -2.1113281, 0.38549805, 0.2849121, -0.9272461, 1.6640625, 1.6513672, -0.8730469, -1.5488281, 0.6699219, 0.2130127, 0.5551758, -2.0058594, 2.78125, 1.9316406, -0.36547852, 0.62402344, -0.17651367, -0.578125, 0.3701172, 1.0673828, 1.0917969, -0.6796875, 0.44873047, 0.045166016, -0.3503418, -0.90722656, -1.1503906, 1.0683594, 4.09375, 1.4667969, -1.6904297, 4.3671875, -0.9667969, 1.3808594, -0.06707764, -0.8388672, -0.5786133, 2.0136719, 0.9770508, 1.5722656, 1.5185547, 1.9970703, -1.6230469, 1.3759766, 1.3779297, -2.5917969, -1.5195312, 1.7666016, -0.10223389, -0.8095703, -1.3330078, -0.2442627, -2.7460938, -1.4091797, 0.14794922, -1.8330078, -0.12634277, -1.3261719, 1.9394531, -0.12359619, -1.4736328, -1.7998047, 0.36572266, 1.0810547, -0.21008301, 1.5009766, 1.3125, -1.6503906, -0.44067383, -0.42358398, -0.8027344, -1.1679688, -2.7753906, -1.1259766, -0.25683594, -2.0800781, 0.72558594, -0.81640625, -0.29052734, 1.3984375, -2.359375, 0.9746094, -0.5019531, -4.3085938, -2.5390625, 0.42919922, -1.3105469, -0.7675781, -0.54296875, 0.7114258, -2.0136719, -5.1835938, -0.76123047, -1.2148438, 3.1992188, -0.18066406, -1.3925781, 1.109375, 0.7832031, -0.79589844, 0.83691406, 1.8183594, 1.8505859, 0.5595703, 0.4753418, -3.1113281, -0.17224121, -1.8261719, -0.3293457, -1.4003906, 0.5732422, -2.5742188, -0.8803711, -0.1204834, -1.6318359, 4.1679688, -0.022369385, 3.3007812, -0.45874023, 1.3710938, 1.1992188, -1.0009766, -2.6484375, 0.014015198, 0.9458008, -1.7880859, -0.72314453, -2.7519531, -1.7695312, -2.1308594, -0.25439453, -0.10205078, 0.35229492, -0.9199219, -0.31469727, -1.8583984, -1.9638672, -1.5859375, 1.0019531, -0.43041992, 0.39208984, -0.21289062, -1.6621094, -1.0283203, -0.93359375, -0.036102295, 2.2324219, -0.2644043, -0.040161133, 0.8676758, -0.38330078, 1.6865234, -0.5654297, -1.9199219, 3.1816406, 0.66845703, -1.4277344, 1.5058594, -2.1425781, -2.2890625, -4.0507812, 0.4609375, 2.6210938, -0.035888672, 1.1552734, 1.421875, 1.4550781, -0.074157715, 1.7744141, 2.0683594, -0.99316406, 0.72509766, 2.6035156, -0.29296875, -2.8378906, 0.9863281, -0.32592773, -2.796875, -1.1835938, 2.1640625, 1.7695312, 0.31835938, 1.0449219, 2.3378906, 0.2130127, -1.6240234, 3.4550781, 1.1464844, 0.6542969, 0.54248047, 1.6455078, 1.0732422, -0.28735352, 0.97753906, 0.6040039, 0.51660156, 2.0761719, 0.74316406, 0.6743164, -0.41210938, 0.57714844, -0.18395996, 2.3242188, -1.03125, 2.2617188, -1.3583984, -0.54541016, -0.060058594, -2.0214844, 1.828125, -1.2998047, -2.2636719, 3.0644531, -0.53125, -0.070739746, -0.63134766, 0.7661133, 0.9189453, -0.6586914, -1.3955078, -1.234375, 0.19091797, 0.3059082, -1.390625, -1.1962891, -1.5097656, 1.7880859, -0.9794922, -1.9404297, -0.83496094, 2.0332031, -0.012878418, -1.5224609, 0.34521484, 0.03137207, -0.18969727, 1.1728516, -0.52246094, -2.6738281, 1.5537109, -1.3857422, 0.46899414, 0.20861816, 0.0034294128, -0.3935547, -0.5996094, -0.83691406, 0.48706055, 1.7470703, 0.9628906, -0.4091797, -1.4423828, -1.2041016, -2.9980469, -1.8984375, 0.64941406, -2.3789062, -1.0800781, 0.16088867, 1.3095703, 0.2644043, -0.92285156, 2.7148438, -0.81884766, -1.6699219, 2.1796875, -1.6542969, -0.84814453, -3.3339844, -3.2070312, 1.2226562, -1.7802734, -0.5722656, 0.83496094, 2.2421875, -0.9790039, 4.21875, 1.2910156, -1.75, -0.9707031, -1.7988281, -0.39990234, -0.118652344, 1.1533203, 0.20056152, 0.2548828, -1.3378906, -2.4628906, 0.58935547, -1.5, 0.4897461, 0.6308594, -4.3515625, 0.24304199, -1.5371094, 0.6064453, -2.1386719, -0.11706543, -1.28125, 0.0033092499, 1.0537109, -0.14733887, 0.9790039, -0.4519043, -0.06793213, 1.5214844, 1.8134766, -0.09881592, -1.3242188, 1.0556641, 0.77001953, 3.0644531, -0.42089844, -0.75683594, -1.1699219, 0.6201172, -0.7211914, -0.99560547, -0.88134766, -0.10620117, -2.0898438, -1.2539062, -0.7133789, 1.4511719, 2.5644531, 1.6279297, -1.9960938, -0.8388672, -0.75439453, -1.4082031, -2.453125, -0.5883789, -0.7265625, 0.74560547, 2.4042969, -2.1210938, 2.6015625, -1.0800781, 0.8178711, -2.8398438, 1.5576172, 2.4785156, 2.1113281, 3.7304688, -2.3320312, 0.21020508, -0.6225586, -1.453125, -2.4511719, 1.3652344, -1.4306641, 0.046722412, 2.0722656, -0.5761719, -0.49316406, 0.16760254, -0.7324219, -0.15710449, -0.89501953, -2.4375, 0.14086914, -1.7304688, -0.8676758, 0.47192383, -0.15576172, 0.7089844, -1.1777344, -2.0039062, 1.0332031, 0.9326172, -1.5380859, 0.609375, 1.3457031, 0.1743164, -0.2421875, 1.5947266, 2.1816406, -1.78125, -0.22351074, -0.5234375, 0.82910156, -0.9741211, 0.39990234, 0.5175781, 1.5683594, -1.6230469, 0.30078125, 3.2734375, 2.3339844, 0.13305664, 3.6972656, 0.7475586, -2.9804688, 1.1542969, 1.9863281, -2.6386719, 0.60058594, 0.93603516, -1.1416016, 1.4404297, 1.1416016, -4.7304688, -2.0742188, 1.6855469, -0.7792969, 0.42797852, -0.028198242, -0.921875, 0.014144897, -3.1328125, -0.1953125, -0.22741699, -1.2353516, 1.2285156, -0.953125, -0.3623047, -1.5214844, 1.9462891, 3.8164062, -0.2722168, -2.4726562, 2.3222656, -0.94140625, -0.96191406, -0.76171875, -0.22595215, -1.671875, 0.40820312, 2.6972656, 2.4472656, 2.0625, 0.42700195, 3.21875, -1.1279297, 1.5576172, -0.35766602, 2.3847656, -1.0615234, -0.91308594, 0.62353516, -2.3164062, -1.1630859, -3.2636719, 0.5488281, 0.42504883, 1.1494141, 1.1162109, 1.4130859, -0.42260742, 1.3574219, -0.5107422, -1.5947266, -0.8222656, 0.6879883, 0.93408203, 0.8779297, 0.8027344, -0.16540527, -0.67333984, -0.10205078, 0.54248047, -0.9003906, 0.05718994, -1.6757812, -1.4414062, -1.8505859, -0.7294922, -0.068359375, -0.60839844, 0.921875, 0.73339844, 1.0732422, -3.2636719, 0.12011719, 1.1269531, -2.03125, 0.19470215, 0.9277344, 0.72753906, 1.203125, 0.43530273, 1.7607422, -1.4755859, 1.5498047, -1.0058594, -0.93115234, 0.8496094, -1.3925781, 3.3164062, -1.0449219, -1.2832031, -0.7114258, -1.2080078, 1.5546875, 0.82714844, -0.98095703, 1.2910156, 1.0556641, -0.37524414, -3.046875, -0.37817383, 0.8232422, 1.9482422, -0.19262695, 0.10180664, 0.7998047, -0.96533203, -2.4101562, 0.84033203, -2.734375, -0.94628906, -0.98779297, 0.3786621, 2.7753906, -0.48266602, 0.026062012, 1.8740234, 0.07757568, -0.95166016, 0.1706543, -1.7089844, 3.4472656, 2.0039062, -0.9638672, -1.3173828, -0.6777344, 0.3671875, 0.97558594, 0.7314453, -3.1347656, 0.79248047, -2.015625, -0.36157227, -0.1439209, 1.1083984, 0.6123047, -1.0556641, -0.53515625, 1.6074219, 2.7011719, -1.4814453, 2.5527344, 1.0927734, 1.28125, -2.265625, 3.90625, 0.9848633, 0.578125, 0.79345703, -2.8359375, 2.4257812, 0.03149414, -0.3269043, 0.29541016, -1.3232422, -1.6269531, -1.4873047, -2.9121094, -2.46875, 1.1757812, -0.06451416, -2.4628906, -0.38256836, 1.7832031, -1.7880859, 2.8671875, 1.2919922, 2.3457031, -1.6318359, 0.060791016, -3.3398438, 0.09661865, 1.7392578, -1.1240234, -0.5419922, 1.9423828, 0.29492188, -1.4082031, 0.37719727, -0.09576416, 1.8623047, 2.0917969, 3.1835938, 0.56591797, 2.6425781, 2.375, 0.92285156, 3.5214844, 1.96875, -0.35473633, -1.4541016, 1.8486328, 0.8696289, 0.8071289, -1.0898438, 2.4101562, -1.1123047, 0.6953125, 0.27929688, -1.1171875, 2.1074219, -3.1699219, -0.40820312, 0.98779297, 1.8955078, -2.140625, -0.88623047, 0.21862793, -0.12841797, 0.20812988, -0.3569336, 1.8896484, 0.7026367, 0.43432617, -0.5605469, 0.022567749, 2.2050781, -3.9882812, 0.61328125, 1.0146484, -1.2109375, -2.3847656, 2.0566406, 1.5761719, 0.5732422, 1.2060547, -0.23449707, 2.2363281, 0.15576172, 0.97216797, -0.87646484, -1.1298828, 1.0742188, 2.0644531, 0.34643555, -1.359375, 0.8383789, -1.7060547, -2.4023438, -0.68115234, 1.7304688, 1.0576172, 2.4023438, 1.5849609, -2.8886719, 3.015625, 0.101745605, 1.0585938, -1.2519531, 0.12902832, -0.34399414, -1.9970703, -2.3261719, -1.6005859, 0.32983398, 0.7949219, 1.2363281, -0.89941406, 1.4580078, 0.8833008, 2.203125, 1.7949219, 1.6083984, -0.32592773, 1.8173828, 0.11047363, 1.1669922, -2.375, -0.5449219, -0.9404297, 1.5732422, -0.28320312, 0.39624023, 2.1210938, -1.4365234, -2.8164062, 0.016571045, 0.6816406, 1.4287109, 0.0018005371, -1.9277344, 0.46118164, 1.7832031, -2.6796875, -0.95214844, 3.0917969, 1.1005859, 1.7080078, 2.2148438, 1.2939453, -2.4882812, 2.3730469, -0.9428711, 1.4257812, 0.28125, -0.40112305, 1.6181641, 0.5644531, -0.17321777, 1.1035156, 2.0605469, 1.1279297, -0.6635742, -0.32470703, -0.8730469, -0.27661133, 0.41723633, -0.6503906, -0.8613281, -2.3144531, -0.018875122, -1.1445312, 0.9345703, 3.4804688, 0.47583008, -0.21411133, -2.0761719, -1.0126953, -0.9135742, 0.24133301, -1.4033203, 1.7763672, 3.2910156, -0.3737793, -1.0048828, -1.6289062, -3.1074219, -0.81884766, -1.7734375, 1.4580078, 0.5517578, -1.9375, -0.36328125, 0.56396484, 1.2216797, -1.2177734, -0.80908203, -0.91552734, -1.3359375, 2.5253906, -1.8574219, 1.6953125, -0.47265625, -0.5654297, 0.85253906, 2.4121094, 0.38745117, 1.4648438, 0.4362793, 2.9550781, 0.6357422, -4.0703125, 0.7993164, 0.48217773, 3.3339844, 0.36889648, -0.107177734, 0.57421875, 0.17749023, -0.12902832, 0.046875, -0.921875]}, "B005MBHFJG": {"id": "B005MBHFJG", "original": "Brand: UCO\nName: UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50\nDescription: UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:\nFeatures: Burns up to 1 minute, 5X longer than regular matches\nContains 50 safety matches\nLonger length (3.75\") keeps fingers from getting burned\nCarbonized match stick for safer fire starting\nIdeal for campfires, fireplaces, stoves, BBQ's, lanterns, candles, and more\n", "embedding": [-1.7695312, -1.203125, 1.6357422, 0.2685547, -0.8515625, -0.84277344, 2.7207031, -1.4863281, -0.45703125, -0.7109375, -1.4238281, -0.74853516, -1.1748047, -2.6640625, 0.4494629, -1.3066406, -1.2900391, 1.7363281, 1.1601562, -0.5551758, 0.06982422, -2.4257812, 2.1796875, -2.5683594, 1.2021484, 0.052001953, 3.1601562, -3.5, -1.6103516, -1.7978516, 0.89697266, 2.328125, 1.0263672, 0.97314453, -3.5957031, -0.73291016, -2.4902344, -1.8671875, -2.3925781, -1.1923828, 0.41845703, -0.5498047, 0.4885254, -0.29248047, 0.2734375, -1.8125, 1.2333984, 1.0009766, -0.81347656, -0.1661377, 0.9086914, 1.4931641, 0.87158203, -0.61816406, -2.2109375, 3.8554688, -0.9160156, -0.83154297, 2.53125, 1.0634766, 1.8642578, 0.40527344, -1.1132812, 1.5185547, -1.1142578, -0.29638672, -1.5390625, -2.4707031, -0.56103516, -1.15625, 1.109375, -0.022109985, -0.6401367, 1.8671875, 1.3466797, 1.7294922, -1.2041016, 3.1699219, 1.0976562, 0.3503418, -0.4230957, 4.515625, 1.9365234, 1.4794922, -0.50097656, -0.22924805, -2.5585938, 0.70751953, 0.8959961, 2.390625, -1.7910156, 0.041992188, 0.39404297, -3.7792969, 1.8232422, -1.4521484, 0.9301758, -0.63916016, -0.09753418, -0.96777344, 0.9091797, 1.1542969, -0.08392334, 0.1015625, -0.8378906, -1.1044922, 0.4501953, 1.1572266, 1.3300781, 1.5908203, -1.7607422, -1.3857422, 1.3554688, -0.43652344, 1.3398438, 1.6005859, -1.6640625, -0.43237305, 2.53125, -0.9819336, 2.9667969, -0.19494629, 1.4736328, -1.9150391, 2.8261719, 1.2988281, 0.30664062, 0.66015625, -0.78222656, -1.0634766, 0.5395508, -1.3496094, -0.24450684, -0.16931152, -2.7675781, 0.05456543, -0.85595703, -1.2636719, 0.6669922, -1.0751953, -4.5429688, -0.7114258, -0.9350586, -0.5234375, -2.9140625, 1.140625, -1.8857422, 2.8652344, 0.6586914, -1.5927734, 0.44140625, -0.33251953, -0.93359375, -3.1289062, 1.7685547, 0.09442139, 0.84277344, -1.5800781, 1.7294922, 1.6132812, -1.7402344, -3.0449219, 1.8261719, 0.7885742, -1.5341797, -0.38623047, 0.24902344, 0.07757568, -0.38500977, 1.4150391, -1.1767578, -1.4101562, -0.3425293, -0.80371094, -0.640625, -0.89160156, -0.7402344, 0.55078125, 0.64208984, -0.5415039, -2.125, -1.296875, 0.83740234, 0.71484375, -0.6225586, 1.1220703, -0.72216797, -3.1660156, 0.1616211, 0.2775879, -1.5615234, -0.1616211, -1.7626953, -0.5527344, 0.051635742, 0.7480469, -1.7978516, -3.4042969, -0.85595703, 0.9091797, -2.4121094, -0.17126465, 2.1035156, 1.7089844, -2.2089844, -0.7260742, -0.6357422, 2.4609375, 2.6230469, 1.71875, -0.5, -0.82666016, 1.2851562, 0.069885254, -1.1425781, -3.390625, -0.14953613, 0.8911133, 1.3134766, 3.0683594, -2.2851562, -1.6787109, 1.7910156, 2.9121094, -0.7739258, 3.3261719, 0.8833008, -0.3154297, 0.27124023, -2.7285156, 1.1035156, -1.0166016, -1.5341797, -0.14807129, 0.41503906, 1.1259766, 0.64990234, -2.1484375, 1.9980469, -1.7529297, -0.44262695, -0.63378906, -0.23840332, 1.6591797, 1.1025391, 2.1328125, 1.5234375, 1.2988281, 3.3457031, -1.7900391, 0.9868164, 0.7792969, 0.39453125, 0.046661377, -3.4023438, -1.1181641, -1.3701172, -0.23937988, -0.18664551, -0.20703125, 1.7695312, 2.8789062, 1.0039062, 0.43725586, -1.2353516, -1.5849609, -1.34375, 0.7026367, -0.72216797, -1.0800781, 0.5917969, 0.65625, 1.9980469, 2.3320312, 2.7109375, -1.3574219, 1.1835938, -0.46044922, 2.2792969, 2.3867188, 0.48632812, 2.0175781, 2.8125, -2.3886719, -1.2314453, -0.89208984, -0.38330078, -2.1933594, -1.1220703, 0.8901367, 3.6738281, -2.0429688, -3.4902344, 2.8769531, -2.7167969, 0.9970703, 0.23095703, 2.0761719, -0.43041992, -2.7226562, 3.9121094, 0.95214844, 1.3828125, 0.9453125, -0.7915039, 1.6416016, 3.7539062, -2.2285156, -0.32055664, 0.09576416, 0.05444336, 0.7919922, -0.09185791, 0.054382324, -2.5175781, -0.54345703, 1.5498047, -0.3173828, 3.3457031, -0.09661865, -0.10827637, 1.3730469, -0.27416992, -1.3173828, -0.07739258, 1.0087891, 1.1132812, 2.2070312, -0.75390625, 1.078125, -0.36914062, -1.9755859, -0.3125, 0.28100586, 0.55078125, -1.7568359, 0.8286133, -3.5625, 1.2568359, 0.45410156, 2.6542969, 3.7714844, -2.1347656, 0.68603516, -0.8461914, 0.35205078, 0.03781128, -0.7470703, -1.1542969, 1.0458984, -0.14135742, 4.125, 0.5004883, -4.53125, 1.8701172, -1.1484375, 0.62890625, 0.8852539, -1.0810547, 0.42529297, -0.06488037, 1.4189453, 1.4677734, 1.3515625, 0.4753418, -1.3193359, -0.4885254, -3.8203125, 2.765625, -1.4882812, -0.16540527, 0.2142334, 2.5019531, -2.5117188, -2.4960938, 2.5625, -0.21350098, 0.5678711, 0.23266602, 2.6640625, 0.2121582, -3.2207031, -0.09265137, 2.59375, -0.43066406, -0.5859375, 0.4411621, -2.0371094, -1.8056641, -4.0078125, -1.5195312, -1.1132812, -2.1914062, 0.51953125, 1.9716797, 1.5742188, -0.038513184, -1.6376953, -1.0898438, -0.6645508, -0.6533203, -0.1138916, 1.3027344, 2.6855469, -1.6455078, -0.7089844, 2.7265625, -0.13757324, 2.4042969, -0.6796875, 0.71875, 1.7939453, 0.24499512, 0.32592773, 0.07165527, -3.2089844, -0.5732422, 1.0556641, 0.77978516, 0.56689453, -2.5410156, 0.32202148, -0.03475952, -0.8261719, 2.0253906, -1.0810547, 1.9423828, 1.7158203, 2.3476562, 1.2373047, 1.4394531, -1.7666016, -0.30737305, 1.9375, 1.7138672, -1.3173828, -1.6035156, 1.6572266, 0.1895752, -4.8203125, 0.29370117, -0.3696289, -0.016342163, 0.23046875, -0.6982422, 0.1640625, 2.2148438, -0.3894043, -0.060546875, -0.16784668, -1.0664062, 2.0351562, 0.23925781, 0.024505615, 2.3417969, 1.9960938, 3.46875, 2.6035156, 2.5585938, 2.2832031, -2.3476562, -2.5703125, -0.9248047, 0.51708984, 2.2597656, 0.59033203, 2.7070312, -0.19360352, -0.7060547, -0.50146484, -0.84765625, 2.8183594, -3.2421875, 0.7441406, 2.0175781, -1.7226562, 0.07635498, 1.1845703, -0.09692383, 0.66503906, -1.7578125, 0.8388672, 0.32714844, -0.5493164, -0.47045898, -1.1884766, 1.2910156, -1.1455078, 1.8056641, 0.8378906, -0.25805664, -1.8291016, -0.47436523, -2.0859375, -0.84375, -2.1347656, 1.5322266, -1.8417969, 4.390625, -0.9526367, -4.6953125, -0.11859131, -3.2128906, 0.12561035, 0.0037269592, 1.015625, -2.5957031, -1.4863281, -1.9599609, -0.8745117, -1.0117188, 1.0820312, 1.1152344, 1.8720703, 3.2695312, -1.5888672, 1.0175781, -0.99316406, -2.5527344, -0.2788086, 2.8691406, -0.2878418, 1.6904297, 1.4248047, 3.2558594, -0.9536133, 2.140625, 3.0136719, -0.8691406, -0.9790039, 0.84375, -1.9375, -0.45263672, -0.6870117, 0.84716797, 1.3056641, -2.9550781, -0.78222656, 0.7392578, 0.018035889, 0.18859863, -2.234375, -2.3242188, 1.0839844, -3.5449219, -2.8164062, 2.0097656, -1.0683594, -1.3886719, -2.234375, -3.0644531, 0.12695312, 0.8105469, 1.6181641, -2, 0.30566406, -0.3828125, 0.47558594, 1.7763672, 1.0048828, 0.67089844, 1.8964844, 0.72314453, -0.093444824, 2.1523438, -0.16748047, 0.47558594, 2.328125, 1.7548828, 0.9458008, 0.22631836, 1.8085938, -2.8046875, 0.70996094, -0.031219482, -0.89990234, -0.10235596, 0.62158203, 1.0478516, -1.7871094, -1.7666016, -0.7788086, 0.14758301, 1.9433594, -0.8144531, 2.9375, 2.5117188, 2.0429688, 1.6816406, 1.6738281, 2.3652344, -0.5571289, 0.17358398, -1.015625, -1.0576172, -2.0585938, 1.5390625, -0.38842773, -1.4863281, 1.0068359, 1.0263672, 0.37426758, 0.7260742, -1.3457031, -0.07244873, 1.6259766, -1.6259766, -1.3330078, -1.796875, -2.5703125, -0.95654297, -0.82666016, -0.37817383, 1.2138672, 0.5444336, -1.7089844, 2.734375, 0.18286133, 0.16235352, 0.69140625, 0.9770508, -0.99609375, 0.063964844, -0.7739258, 2.4511719, -0.8305664, -0.6635742, 1.4394531, -2.4433594, -0.5131836, -0.9379883, -0.5576172, -2.4960938, -0.45141602, 0.15209961, -0.17175293, 1.2353516, -0.4802246, 0.72509766, 1.8886719, 1.8525391, -1.5888672, 0.78515625, -0.2602539, 0.93652344, 1.7285156, 1.5205078, -0.64404297, -0.7817383, 2.71875, 1.3066406, -1.7724609, 3.1601562, 1.203125, -1.0439453, 0.17504883, 1.2988281, -2.3613281, -0.2322998, -1.7001953, -2.84375, 2.75, 0.8613281, -0.46435547, 1.2988281, 1.7070312, -0.72216797, 2.5664062, -1.4082031, -0.2915039, -1.6044922, -1.3046875, -0.9980469, -3.9277344, 1.0322266, 0.77441406, -1.0410156, 0.6894531, -1.2880859, -0.5761719, 0.9433594, 1.7841797, -1.8398438, 0.44018555, -1.0263672, -0.5722656, 1.0292969, -2.7207031, -1.4287109, 0.43652344, -0.8754883, -0.49560547, 2.8457031, -2.4960938, 1.6601562, -0.8515625, -0.1920166, -1.2841797, 1.3134766, -0.55371094, 0.23339844, 3.8789062, -1.1474609, -0.5776367, -2.2636719, 0.55810547, -0.5366211, 1.5351562, -0.9482422, -0.1538086, -0.22705078, 2.3339844, -2.1015625, -0.46948242, -0.29589844, -0.54589844, -0.26757812, -1.0693359, -2.7363281, -0.6796875, -0.97802734, -1.0810547, -0.5913086, -0.82177734, -0.86279297, -1.1953125, -0.1352539, -2.7988281, 1.4501953, -1.1484375, 2.2675781, -2.1992188, 2.3164062, -1.8671875, -2.7167969, -3.7285156, 0.5419922, -1.7939453, 0.2388916, 3.5253906, -0.12780762, 2.2578125, 3.015625, 0.04928589, 2.1484375, 0.89990234, -1.5019531, 1.1796875, -1.4345703, -1.5029297, 2.7695312, 0.69140625, -0.77490234, 1.4384766, -1.75, -0.69140625, -0.2602539, 0.6113281, 3.2539062, -0.9189453, 1.2880859, 0.9848633, 1.9248047, -0.45288086, 0.3701172, -0.099487305, -1.8876953, -0.10290527, -4.0429688, 0.022750854, -0.59716797, -1.5341797, -0.8051758, 0.13769531, 2.5332031, -0.054779053, -1.1464844, 2.5390625, 0.86816406, -1.0263672, -1.5820312, 1.4433594, 1.1611328, 2.0800781, 0.23693848, -2.0722656, -0.017532349, -1.4384766, 0.77441406, 3.4492188, 0.19506836, -0.56689453, 2.4589844, -2.6875, -1.7109375, -1.0996094, 0.58935547, -0.484375, 1.921875, -0.4729004, 1.3339844, 2.0039062, -1.6875, -0.08227539, 1.21875, -0.8486328, -3.2246094, 1.0742188, 1.4150391, -0.43041992, 0.6196289, -0.5727539, -1.7890625, -0.58154297, -2.1386719, -0.95751953, -2.2304688, -0.5541992, -1.5361328, 2.3964844, -2.0546875, -0.23706055, 0.12414551, -2.234375, -0.37597656, 0.18249512, -1.9677734, 0.1574707, 0.6176758, 1.0585938, -2.6816406, -1.9277344, -0.69384766, 0.7246094, 2.3242188, -1.0439453, -0.48901367, 0.12414551, -0.42504883, -2.0761719, 0.9716797, 0.8823242, -0.0859375, 1.5039062, 1.0966797, 0.7841797, 0.6503906, 2.5488281, 0.2836914, 1.1318359, -1.0078125, -2.0546875, 0.45581055, 2.7578125, -0.55371094, 1.0488281, 0.59277344, -0.21826172, 0.29492188, -0.20617676, -0.9199219, 0.25341797, 2.9648438, -0.23413086, 2.3632812, 1.1347656, 3.59375, -0.7607422, 0.546875, -0.21166992, 1.7832031, -1.2021484, 0.9711914, 2.7988281, 0.85009766, -0.9345703, 0.4951172, 0.87939453, 1.0966797, -2.484375, -0.16357422, 0.2166748, -2.5136719, 0.7324219, 2.0429688, 1.2548828, 1.2626953, 1.6826172, 1.6142578, 0.14318848, -0.059661865, 1.2919922, -1.53125, 0.32617188, 0.8173828, 0.8027344, -1.5009766, -0.9428711, -1.3710938, 0.265625, -4.2539062, -1.4169922, 1.7363281, -0.90771484, 1.9580078, 1.8730469, -0.86621094, 1.3164062, -0.34594727, -0.61279297, -1.0849609, -1.1103516, 1.0048828, -1.2695312, 0.67089844, -0.18811035, 1.3408203, 0.99609375, 3.2753906, -3.3007812, 0.3857422, 2.6367188, 0.44604492, 0.4116211, 2.0644531, -0.90966797, 0.94384766, 0.5571289, 1.7236328, 0.6894531, 2.4746094, 0.5415039, 2.9667969, 0.7495117, -1.9101562, 0.98876953, -0.359375, 0.66064453, -0.39624023, 0.6640625, -0.5239258, -0.81152344, -2.3984375, -2.2382812, -0.671875, -0.7324219, 2.203125, -0.0524292, 0.9980469, -1.4257812, 1.5351562, -0.33764648, -2.171875, 0.9194336, -1.0673828, -0.8105469, -1.3242188, -1.1025391, -0.65771484, -1.6103516, -0.80029297, 1.03125, 2.5605469, -1.2060547, -0.6542969, -0.4753418, 0.13537598, 1.2460938, -0.5839844, 1.1074219, -1.2402344, 0.12573242, 0.5048828, -1.5224609, -2.2734375, 0.85302734, 0.53222656, 0.3400879, 2.4160156, -2.0761719, -0.97802734, -1.3945312, -2.9960938, -0.54541016, 4.1523438, 0.45141602, 1.3720703, -0.5703125, -2.6835938, -2.9296875, -1.5332031, 0.70166016, 1.6572266, 1.2919922, 0.5029297, 0.7607422, 1.7617188, -0.40893555, -2.03125, 0.33862305, 0.61865234, -0.7050781, -0.3293457, 1.5703125, -0.040130615, 1.5224609, -1.1425781, 1.6943359, 2.7460938, 2.3242188, 1.0009766, -0.8574219, 0.2355957, -2.625, 0.088012695, -1.5390625, 1.9697266, 1.0361328, -1, 1.3662109, -3.0878906, -1.4580078, -1.6201172, 0.055389404]}, "B07FMQ3PS1": {"id": "B07FMQ3PS1", "original": "Brand: MVZAWINO\nName: Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12\" Stainless Steel\nDescription: For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
Enjoy BBQ party with your families & friends.

Features:
Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
Burns/Smokes for up to 5 hours.
Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
You can smoke anything from cheese to steaks!
Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

Specifications:
Color: Silver
Material: 304 stainless steel
Style: Hexagon design
Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01\"
Brush length: 30.5 cm
Brush hair length: 20 cm
Hook length: 13 cm
Hook opening diameter: 3 cm

Package included:
1 x Pellet Smoker Tube for Any Grill
1 x Brush
1 x Hook
\nFeatures: FOR ANY TYPE SMOKER \u2013 This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more.\nUP TO 5+ HOURS BILLOWING SMOKE \u2013 Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours.\nSAFETY MATERIAL & REPEATEDLY USE \u2013 This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use.\nIMPROVED HEXAGON DESIGN \u2013 This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food.\nGREAT GIFT & FREE BONUS ITEMS \u2013 A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.\n", "embedding": [-2.734375, 1.8447266, 2.1796875, -0.43310547, 1.2617188, -0.57128906, 2.2714844, 0.35180664, 0.39868164, 0.6274414, 0.13500977, -1.1357422, 0.3178711, -2.5429688, 0.6489258, -0.46728516, -1.4101562, -0.23266602, 1.2978516, 2.9746094, 1.0087891, 2.2929688, 0.953125, -1.7929688, 2.8359375, 0.84472656, 3.4316406, -1.9912109, 1.6728516, -1.5820312, 0.04260254, 0.29223633, -0.6347656, -0.27319336, -3.3535156, -1.2890625, 1.1210938, -0.2763672, -2.078125, 0.03475952, 0.6640625, 0.37646484, 1.7236328, 1.46875, -4.4492188, -0.38061523, -0.94384766, 1.0742188, -0.98779297, -0.7441406, 0.44189453, 2.2011719, -0.3269043, 1.0927734, -1.3583984, 1.1875, -0.28442383, -3.1328125, 0.21447754, -0.28198242, 0.13830566, -0.53759766, -1.5166016, 0.5307617, -1.78125, -0.81640625, 0.51171875, -1.59375, 0.2401123, -1.4951172, 0.93652344, 1.1337891, 0.65771484, 1.3105469, -1.9482422, -1.2363281, -3.3339844, 2.46875, 0.11657715, -0.025772095, 0.11035156, 2.8691406, -1.1865234, -0.058746338, 0.07635498, -0.45947266, -1.2646484, 2.3632812, 2.21875, 0.6904297, -1.1962891, 1.7089844, -1.3291016, -3.65625, 1.9394531, -1.9160156, -0.4560547, -0.031173706, -2.5722656, 0.61816406, -0.5732422, 0.671875, -0.95703125, -0.93115234, -1.1787109, -1.9677734, 0.031707764, 1.6201172, -2.2207031, 0.86279297, -1.1953125, 1.5615234, 0.6953125, 1.6123047, 2.2402344, -0.77978516, -0.9350586, -0.46069336, 1.7695312, 0.68603516, 4.3476562, 0.92871094, 0.8901367, -1.5126953, 0.77001953, 0.69873047, -0.8178711, 0.7910156, 4.7382812, -1.7412109, -1.0136719, -1.9658203, 0.9746094, -1.6123047, -0.9628906, -1.7763672, -0.31079102, -0.33569336, -0.60253906, -1.3671875, -2.9101562, 1.4306641, 1.2402344, -2.2558594, -4.6328125, -0.00092315674, 1.2089844, 1.3417969, 1.2509766, -2.2851562, 2.7285156, -1.7724609, -0.61621094, -1.3974609, 3.0527344, -1.0019531, 0.51464844, -1.2373047, 1.9375, -0.24975586, 1.5996094, -1.6367188, -1.8105469, 0.9995117, -0.87158203, -3.9960938, -1.2939453, 1.5351562, 1.6875, 2.9824219, -1.0302734, -1.1513672, -0.1182251, -0.7114258, 1.6845703, -1.8242188, 0.65625, 1.8339844, 0.2705078, -1.015625, -1.6210938, -2.5, 1.3173828, -0.1574707, -0.1194458, 0.6152344, 2.9511719, 1.3144531, 1.7460938, -1.4658203, 0.5102539, 1.5947266, -0.9794922, 1.3193359, 0.05706787, -1.2324219, -1.0527344, -0.84472656, 1.9560547, 0.099609375, -0.9277344, -0.56347656, -0.75683594, -0.2487793, -2.5507812, -2.1074219, -1.3115234, -0.8876953, 0.45214844, 2.7734375, 0.828125, -0.9794922, 2.9238281, -0.20129395, -0.49853516, -1.8212891, 0.9580078, 0.10736084, 1.6132812, 1.4619141, 0.033721924, -0.95166016, -0.68603516, 2.2363281, 1.3925781, 3.2695312, -0.7006836, 1.7685547, -1.4501953, -1.2431641, 2.65625, -0.7636719, -0.94091797, -0.37060547, -0.3894043, 1.3447266, 2.0605469, 0.23925781, -0.30395508, 1.5224609, 1.0908203, -0.97021484, 0.12792969, -2.3769531, -1.9443359, -0.85839844, -1.6611328, 1.2871094, 1.6621094, -0.06591797, -2.6015625, 1.5751953, 1.3173828, -1.6201172, -0.50341797, 0.36328125, -0.97509766, 1.3681641, -0.27954102, -1.6953125, 2.7539062, -0.08166504, 1.1787109, 0.79248047, 0.8623047, -0.5991211, 2.9882812, 0.046142578, -2.8789062, -1.2675781, 0.07128906, -0.021392822, 0.703125, 0.07849121, 2.4726562, 1.1191406, -2.0273438, 1.2382812, 2.6230469, 0.75878906, 1.1035156, 1.2587891, 2.3964844, -2.890625, -2.1171875, -1.7275391, 0.7416992, -2.5371094, 1.0185547, 0.98535156, 5.0273438, 1.3759766, -2.0917969, 1.3144531, -0.2932129, 0.94970703, 0.4555664, -0.52001953, -0.36010742, -0.21582031, 0.99365234, 0.0501709, -0.6220703, -0.04534912, -0.98828125, -1.3847656, 2.4121094, -0.7734375, 0.45043945, -0.63623047, -1.0273438, -0.3017578, -0.81396484, -1.4199219, -2.5585938, -0.29956055, 1.4169922, -1.0136719, 1.2128906, -0.10333252, 1.9667969, 1.0185547, 0.4482422, -2.171875, -0.9213867, 2.2128906, -0.6254883, 2.9296875, -0.78759766, -1.7119141, -0.32202148, -0.35375977, 1.7177734, -2.0410156, -2.6914062, -0.85498047, -1.234375, -1.7412109, -0.72558594, -1.6201172, -2.1035156, 1.1494141, -1.6835938, 0.57373047, -1.9990234, -1.9960938, -0.5385742, -0.9423828, 0.4140625, 1.7597656, -0.82177734, 2.625, 0.73876953, -5.4726562, -1.2695312, 1.6230469, 0.19543457, 0.5317383, -1.1552734, -0.25268555, 0.08642578, -1.0205078, -0.7788086, 0.92285156, 2.4726562, -0.453125, -0.6142578, -2.1914062, 1.5820312, -1.5957031, 0.29785156, -0.5805664, 1.2089844, -1.3916016, -1.6142578, 0.7675781, 0.54541016, 2.4941406, -0.107666016, 1.3427734, -0.29907227, -0.31347656, 0.20288086, -0.5708008, -2.5292969, -0.23168945, 0.88623047, -1.0957031, -1.1123047, -3.0878906, 0.07354736, -0.38452148, -1.3613281, -1.2617188, 1.8808594, -0.8725586, 0.8911133, -2.3984375, -1.9394531, 0.6152344, -1.1220703, -0.04776001, -0.89941406, -0.8051758, 0.19567871, 0.045440674, -0.9321289, 1.1269531, 1.3828125, -1.3271484, 1.1103516, 2.0878906, 1.0927734, -0.9707031, 1.1533203, -1.6611328, 1.7021484, -0.7241211, -2.8867188, 1.5302734, -0.0067443848, 0.4111328, -2.40625, -0.9736328, 3.3710938, 2.1152344, 1.6972656, -0.6220703, -0.40893555, 1.1162109, 0.2939453, 1.2880859, -1.0078125, 1.0556641, 3.5585938, -2.6464844, -1.53125, 1.2246094, 1.4111328, -3.46875, -2.5625, 2.7871094, -0.34106445, 2.0195312, 1.4091797, 1.3447266, -0.09576416, -0.86621094, 2.1542969, 2.1679688, -0.9790039, -0.16772461, -0.52734375, -0.56396484, 0.073913574, 0.71875, 1.8359375, 0.13256836, 1.6289062, 2.9121094, 0.69970703, -1.5058594, 0.018096924, -1.6660156, 1.6640625, -0.0769043, 5.0742188, -0.09613037, -0.046203613, -0.29077148, 0.5053711, 1.5927734, -1.9404297, -1.2021484, 2.5859375, 0.22216797, -0.95947266, -0.25, 0.94140625, 0.90234375, -2.1953125, 0.74072266, -0.75634766, 1.0244141, 2.3203125, -0.48364258, -2.5, -1.5117188, 1.3085938, 0.11352539, -1.1455078, -0.46435547, -0.44604492, -1.5859375, -1.3994141, -0.4645996, 1.515625, -1.5859375, 1.8916016, -2.3867188, -1.2109375, 1.3496094, -1.8330078, 1.3505859, -0.15258789, 0.35083008, -0.52685547, -1.0126953, 0.6816406, 0.70166016, -0.17053223, 0.82666016, -0.6689453, -2.8339844, -0.6020508, -2.4746094, 0.24377441, -0.43920898, -3.9375, -0.67041016, 0.28125, 2.5703125, 0.11816406, -0.35083008, 2.8378906, 0.9951172, -0.57958984, 1.9736328, -2.7578125, -0.28125, -4.2695312, -3.6289062, 2.4316406, -1.6425781, -0.57910156, 3.8378906, 0.53222656, -0.049591064, 1.9482422, 1.9697266, -2.9199219, -1.1171875, -1.6376953, 0.9042969, -0.11645508, -0.98535156, 2.0371094, 1.3955078, -2.8300781, -0.94628906, -1.2871094, -0.53466797, 0.5102539, 1.3457031, -1.8886719, 1.4667969, -2.2539062, 0.34375, -0.01675415, -0.41723633, 2.2363281, -1.0263672, 1.2207031, 0.12231445, 2.2402344, 1.9013672, 1.9072266, 0.18774414, 0.36328125, 0.30249023, -0.066467285, -0.9794922, 1.5800781, 3.3554688, -0.40625, -1.0820312, -1.6259766, 1.1884766, -0.23815918, -1.3632812, 0.0012683868, -0.3371582, -3.8164062, 0.86376953, 0.3232422, 1.5019531, 1.1894531, -0.90478516, -3.4648438, -1.1806641, -0.4753418, -4.140625, -1.7089844, 0.44628906, 0.42089844, -1.8076172, 1.1484375, -1.1982422, 0.98583984, 0.9082031, -0.76904297, -1.3857422, 1.5078125, 1.7871094, 2.8398438, 3.5195312, 0.008728027, -0.83251953, -0.90478516, -1.7509766, 0.8457031, -0.32250977, -0.001537323, -2.125, 0.65478516, 0.4411621, -1.3144531, -0.4897461, 1.0839844, 1.3759766, 0.8540039, -1.8505859, 0.62060547, -2.4902344, -2.3007812, 1.5839844, -1.375, 2.7265625, -1.6933594, -0.45361328, -0.4399414, -0.053497314, -0.9682617, 1.1464844, -0.734375, 0.26513672, 0.9707031, 1.3759766, 2.1679688, -1.4482422, 0.49975586, -0.51708984, 2.3886719, -0.4543457, 1.5078125, 0.92285156, 0.5239258, -0.9472656, 0.4411621, 2.9785156, 3.9511719, -0.54296875, 4.0625, 0.6176758, -2.1757812, -0.7265625, 1.1552734, -1.8652344, 0.5361328, -0.4086914, -1.2246094, 0.6274414, -0.12390137, -1.5644531, -0.4091797, 2.5820312, -1.0439453, 1.6962891, -1.1806641, -2.1621094, 0.9863281, -1.9111328, -0.44604492, -2.6035156, -0.98046875, 1.5810547, 0.2644043, -1.1103516, 0.48046875, 1.1972656, 3.1230469, -2.2773438, -0.93847656, 1.0380859, -1.125, 1.2363281, -0.22741699, -2.2109375, -3.6679688, 0.5175781, 0.72021484, 0.609375, 1.7011719, 0.39038086, 3.015625, -2.53125, -0.20581055, -2.2929688, 1.8574219, -2.0097656, 0.5175781, 2.5546875, -4, 0.34838867, 0.36669922, 0.4501953, -0.07458496, 1.1162109, 0.13623047, -3.625, -1.3671875, 0.35961914, -2.6601562, -4.6914062, -2.2382812, 0.76708984, 0.22814941, -0.7182617, 1.5019531, 0.21716309, 0.5395508, 1.1445312, 0.67871094, -1.0419922, 0.36206055, -1.0410156, 0.11004639, -2.8789062, 0.5107422, -0.9980469, 0.15112305, 1.6240234, 0.3371582, 1.4199219, -2.6015625, -1.6259766, 1.3417969, -1.6025391, -1.7666016, 0.859375, 0.2722168, -0.80371094, 0.0066566467, 0.32714844, -1.9921875, 2.2734375, -1.9003906, 0.107177734, -0.29345703, -2.046875, 1.1015625, -0.96533203, -1.7226562, -0.42749023, 1.3964844, 1.8574219, -1.5830078, -0.12902832, 0.03842163, 0.74365234, -0.7993164, -0.8730469, -0.73876953, 0.16833496, 1.7392578, 1.8076172, 0.62646484, -2.1523438, -2.9433594, -3.5429688, -1.3720703, -0.5600586, 0.82958984, -0.19580078, 1.53125, 0.6269531, -0.3310547, 2.7734375, 1.1298828, -0.13867188, -1.2197266, 1.3808594, 0.5332031, 3.4941406, 1.9072266, -1.8583984, -0.5839844, -0.6982422, 0.99853516, 0.18554688, -0.55566406, 0.87353516, 0.75341797, -0.3635254, -1.1728516, -0.2475586, 0.85009766, 0.3642578, 2.0507812, -2.3320312, -0.4387207, 1.6083984, -2.2167969, 2.0996094, 1.5507812, 1.3056641, -0.99365234, 2.1933594, -3.3242188, -1.2119141, 2.03125, -0.79345703, 1.6738281, 1.7910156, -2.46875, 0.73339844, -1.6621094, -1.1552734, 0.18945312, -0.72558594, 1.0625, 2.9414062, -0.09320068, -1, -0.5883789, 3.3046875, -0.50390625, 0.42163086, 3.59375, 0.34228516, -0.80029297, 1.0605469, -0.8359375, 1.0449219, 2.8554688, -4.0546875, -0.14489746, 0.5493164, -0.5913086, -1.8125, 3.9882812, 2.3730469, 1.0126953, -0.7006836, 3.3515625, 1.8291016, 1.7470703, 2.2890625, -0.58984375, 1.0810547, 0.93652344, -0.88378906, 0.9238281, 1.4609375, 1.9326172, 0.74609375, 0.33789062, 2.1601562, -0.3232422, -0.8754883, -1.5253906, -0.32177734, 0.5786133, -3.7207031, 1.4550781, -0.75097656, -1.9892578, -3.2558594, -0.7963867, -0.73583984, -1.2822266, -1.0224609, -0.1541748, 2.9882812, 0.09063721, 1.0605469, 0.48168945, 0.2680664, -0.0040016174, -3.5859375, 0.6767578, 1.609375, -1.3945312, 0.8574219, 1.0927734, 0.11102295, 0.4411621, -0.99658203, -0.42285156, 1.5009766, 1.3144531, 2.8515625, 0.32006836, -0.68652344, -0.16784668, 1.7861328, -1.1679688, -1.421875, -0.18981934, -0.20935059, -2.671875, -2.203125, 2.0019531, 0.20397949, 1.4609375, 1.2744141, -2.2148438, 1.7539062, -0.5566406, -0.07019043, 0.021331787, 1.5048828, 0.390625, -0.8354492, 0.24291992, 1.2275391, 2.6308594, 3.6386719, -1.3457031, -0.6513672, 1.9433594, 0.41455078, 1.8154297, 1.8369141, 0.43066406, -0.025039673, 0.88916016, -0.93603516, 3.6757812, -0.20727539, 0.51904297, 0.2631836, 1.9853516, 0.7104492, 1.4453125, -0.70166016, 1.9853516, -0.11340332, 0.033203125, -3.03125, 1.1572266, 0.8457031, -2.6660156, -2.8066406, 0.2800293, -0.453125, 0.73876953, -0.62060547, 0.047973633, -1.3994141, 2.2363281, 0.22668457, -1.7392578, 0.6503906, 2.5351562, -0.92822266, 0.0020046234, 0.68652344, 0.95751953, 0.7138672, -2.0605469, 2.3183594, 0.32202148, 2.5058594, 0.3569336, 1.9902344, 1.3134766, 0.33740234, -0.8178711, -0.8359375, -1.6269531, -3.1425781, 2.1035156, -0.7714844, 1.2138672, 2.1210938, -0.25585938, -0.55322266, 0.08282471, 0.21716309, 0.8095703, -2.0429688, -2.2792969, 2.1171875, 2.6621094, -0.41235352, 1.8251953, -1.3935547, -3.5761719, 0.48657227, -1.7167969, 2.0546875, -1.2509766, -1.9599609, 2.2460938, 0.79052734, 2.2207031, 0.5107422, -1.5820312, 1.6171875, -0.76953125, 0.48461914, -0.47485352, 0.048187256, 0.9375, 1.84375, 0.79833984, 3.4140625, 1.2626953, -1.25, 1.8701172, 1.5361328, 2.3769531, -3.140625, -0.42529297, -1.2392578, 0.9785156, 1.0957031, -0.40405273, 0.4814453, -0.98046875, -1.3125, -2.3476562, -2.7949219]}, "B016HUP1LO": {"id": "B016HUP1LO", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with Propane or Natural Gas\nUp to 20,000 BTU's/hr heats up to 700 sq. ft.\nThermostat control knob automatically maintains your ideal heat level\nDual burner provides 2 rows of flames for a more full looking fire\nSeparately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution\n", "embedding": [-1.3300781, 0.4650879, 2.328125, 1.4736328, -0.28930664, -0.08795166, 0.84472656, -1.3964844, -1.5537109, 2.0136719, 2.2617188, 2.0878906, 0.15649414, -2.4257812, 0.42626953, -0.2763672, 1.5341797, 0.33544922, 0.18054199, 0.39575195, 1.0976562, 0.7080078, -0.19396973, 0.23474121, -0.9970703, 0.44458008, 3.2558594, -3.1347656, -0.14782715, -2.6191406, 1.4609375, 0.9111328, 0.55322266, 1.8310547, -2.5644531, -1.0449219, -1.9785156, -0.11895752, -3.2421875, 0.3227539, -0.70703125, -0.48364258, 2.8417969, 1.7646484, -3.4316406, -0.86572266, 1.1396484, 0.36010742, -2.1445312, 1.1835938, 0.7285156, 0.9580078, -1.8056641, 0.9394531, 0.08068848, 1.0996094, -0.42578125, -1.0195312, 0.7260742, 0.57666016, 0.83447266, -0.95751953, -1.2480469, 0.5683594, -0.00084495544, 1.7402344, 0.8105469, 0.06945801, -2.3574219, -0.68359375, 0.72265625, 0.75341797, -0.082214355, 0.86083984, -1.6816406, -0.6425781, -4.7460938, 1.2792969, 1.8105469, -1.1621094, 0.20617676, 2.3886719, -0.421875, 0.111694336, -0.6245117, 1.1425781, 0.32250977, -0.10107422, 0.3564453, 0.22558594, 0.34106445, 0.3618164, -0.43774414, -3.9082031, 1.7041016, 0.4453125, 0.72314453, -0.13623047, -0.37597656, 0.67822266, 0.71240234, 1.2929688, 0.21679688, -1.3896484, -2.2128906, -0.1640625, 3.1367188, 2.9726562, -3.4765625, 1.4082031, -3.0546875, 0.21447754, 2.203125, 1.3251953, -0.21203613, -0.07086182, 0.703125, 0.6738281, 3.4082031, 1.7998047, 3.0800781, -1.2128906, 0.97753906, 0.8598633, 0.9770508, 1.4326172, 0.14929199, 0.6611328, 1.59375, -2.2148438, -0.60498047, 0.06896973, 2.1308594, -0.296875, -0.103027344, -2.7597656, -1.9121094, -3.0390625, -2.859375, -1.9638672, -0.109313965, 1.8046875, -0.2890625, 0.40844727, -4.0898438, -2.4765625, 0.47338867, 0.41601562, 1.6171875, -2.796875, 0.77246094, -1.7509766, -0.15234375, -0.79785156, 0.6953125, -0.24975586, 0.25, -0.80566406, 0.99316406, 0.2783203, -1.1455078, -1.1962891, -4.609375, 0.5180664, -0.15930176, -2.0390625, 1.9208984, 1.4423828, -0.7685547, 2.3222656, 0.03741455, -2.2363281, 0.61035156, -1.1152344, -0.070251465, -1.1269531, -1.3183594, 2.2636719, 0.5209961, -0.2199707, -2.9433594, -0.23876953, 0.17944336, -0.2841797, 0.14868164, 0.72509766, -0.2244873, -0.06756592, 1.7587891, -0.7680664, -0.67871094, 1.2890625, 0.25927734, -0.27294922, -0.5932617, -1.2080078, -1.1982422, -2.3125, 1.5390625, 0.7475586, -0.30322266, 1.6542969, 0.17114258, 1.5546875, -1.0751953, -0.82177734, -0.6665039, -0.29467773, 2.1835938, 2.4414062, 2.4375, -0.9038086, 2.3671875, -1.1318359, 0.15625, -1.2109375, 2.0761719, 0.52441406, -0.23278809, 2.15625, 1.21875, -0.52978516, 0.030334473, 0.92285156, -0.20996094, 0.4177246, 0.796875, 0.35620117, -2.4140625, -2.2109375, 2.1386719, 0.94628906, 0.55322266, -0.17150879, -0.026733398, 2.8808594, 1.2294922, 0.056152344, 0.4741211, 0.97802734, 0.004108429, 0.09613037, 0.5961914, -0.44799805, -2.0761719, 2.46875, -0.640625, 1.8115234, 2.0703125, 2.1933594, -1.15625, -0.8071289, 1.3300781, 0.75878906, -0.81933594, -0.9067383, 1.5742188, 0.28735352, -0.82958984, -2.3183594, 0.8466797, 0.6894531, -1.4316406, 2.1132812, -0.78808594, -0.59277344, 4.1171875, 0.8417969, -0.6245117, -0.30737305, -0.4892578, 0.97753906, 2.6914062, -1.1191406, 1.6142578, -0.68310547, -0.89404297, 3.4492188, -1.2392578, 2.1796875, 1.3564453, -1.9804688, 1.9130859, -0.39990234, -0.55371094, 1.7919922, 3.2441406, 1.3369141, -2.09375, -0.9941406, 5.59375, -1.1181641, -1.9921875, 1.7412109, -1.8544922, -1.2363281, 1.0751953, -0.12890625, 0.14782715, -0.82177734, 1.6933594, -0.3959961, 0.20996094, -0.15026855, -1.1621094, -0.58154297, 0.94189453, -0.81103516, -0.046325684, 0.48095703, 0.15612793, -2.4941406, -0.5463867, -0.47216797, -3.7851562, 0.2890625, 2.1523438, -1.2617188, 2.5507812, 0.4465332, 0.43481445, 0.063964844, -1.7148438, -0.22277832, -0.27612305, 0.13903809, 1.0888672, 2.3125, 1.0117188, -0.39941406, -1.5869141, -1.4521484, -0.43481445, -2.9960938, -2.8496094, -0.13635254, 0.9580078, -2.7792969, -0.2019043, -1.7705078, 0.21557617, 1.9277344, -2.7421875, 1.3515625, -1.34375, -1.3974609, 0.27856445, -1.6132812, 0.007171631, 0.1105957, 1.2744141, 1.6054688, -2.1992188, -2.9082031, -1.8398438, -0.12634277, -0.5185547, -0.7885742, -2.5742188, 1.5996094, 0.54589844, 0.33789062, -0.38916016, -0.42626953, -0.48828125, -0.86865234, 1.0498047, -3.4902344, 0.26293945, 0.091308594, 0.11773682, 1.2587891, 0.4428711, -1.0664062, -1.1835938, 0.48339844, 0.1920166, 3.828125, -0.0004131794, 2.1914062, 0.01991272, -0.94970703, -1.5761719, -3.7128906, -1.3388672, -0.08850098, -0.6538086, -0.26049805, -1.7275391, -1.9726562, 1.1542969, 0.18737793, -1.4628906, -0.89501953, -0.17773438, 0.21838379, -1.046875, 0.22131348, -0.75146484, -0.036987305, -1.3164062, -1.8496094, -0.92626953, -1.6953125, -0.05117798, -1.6748047, -1.2802734, 1.4833984, 0.6245117, 1.8085938, 2.984375, 0.35009766, 0.5878906, 0.9111328, 2.0839844, -3.3828125, 3.0585938, 0.22192383, 0.5288086, -1.2939453, -2.3320312, -1.8759766, -2.7734375, -0.9638672, 3.0371094, 2.875, 1.7578125, -0.2800293, -2.1445312, 0.8676758, 2.6113281, -0.9345703, -0.20153809, -1.4150391, 1.7255859, -1.6455078, -1.4609375, 1.9326172, 1.8349609, -2.7226562, -2.0527344, 0.5214844, 1.4482422, 2.9609375, 1.4501953, 1.7353516, -0.59521484, 1.1865234, 0.625, 0.9638672, 0.5371094, -0.2319336, -1.5556641, 2.4667969, 0.3154297, 0.05227661, 3.1035156, 0.5551758, 0.20361328, -0.14160156, 0.39819336, -2.7207031, 1.203125, -0.8066406, 0.79833984, 1.8515625, 2.953125, 0.6245117, 0.08081055, -1.2001953, -0.30151367, 0.8364258, -1.125, -0.75341797, 2.1210938, 1.0380859, -0.3359375, 0.73876953, 1.1533203, 0.08917236, -0.28833008, 2.7363281, 0.3005371, -0.4260254, 2.828125, -1.3798828, -1, -2.6640625, 1.1044922, -1.4189453, -0.8515625, -0.41137695, 3.1015625, -2.9804688, -0.8808594, 0.38793945, -0.8466797, 2.1152344, 1.1162109, -0.5419922, -1.2207031, -0.5024414, -0.9941406, -2.296875, 3.3027344, -0.10559082, 0.072143555, 0.33129883, 2.2988281, -0.14685059, -0.07635498, 0.09429932, 1.0214844, -0.921875, 0.45922852, -2.4121094, -3.1816406, 1.6308594, -1.5009766, 1.3457031, 2.9667969, -0.38623047, 1.3798828, -0.006717682, 2.1113281, -3.0742188, -1.8349609, 3.8574219, -1.2285156, 0.35375977, -3.5742188, -2.46875, 0.035369873, 0.15466309, -0.4951172, 2.5078125, 1.4814453, -0.90722656, -0.2578125, 0.35253906, -2.890625, -1.0136719, 0.16931152, -0.23046875, -1.3076172, 0.67333984, -0.34643555, 0.34716797, -2.7402344, -0.11071777, 0.71240234, -0.40112305, 1, 1.5488281, -3.0332031, 0.16918945, -0.6069336, 0.80566406, -0.25561523, -1.5292969, 2.4179688, 0.055725098, -0.0970459, -0.86816406, 1.71875, 2.40625, -1.0351562, 1.5986328, 2.8574219, 1.4765625, -0.36083984, -0.20727539, 2.5957031, 1.9902344, -0.5107422, -3.2304688, -2.9921875, -0.8364258, -1.6845703, -1.3964844, -0.06011963, 0.4753418, -1.6591797, 0.08929443, 2.1953125, 0.077941895, 2.9785156, 1.0761719, -1.5214844, 0.8339844, -1.2568359, -2.0429688, -0.96435547, -1.3408203, -0.087890625, -0.2376709, 0.62060547, -1.1455078, 0.6977539, -2.5371094, -0.82373047, -1.8623047, 1.1982422, 1.1875, 1.1914062, 3.0253906, -0.48339844, -2.1132812, -0.6201172, -0.4411621, 0.13806152, 0.38183594, 0.31518555, 0.32836914, 2.3574219, 3.6367188, -1.40625, 0.81884766, 0.5083008, -0.93066406, 0.4909668, -0.6738281, -0.6850586, -1.4609375, -0.08062744, 2.9179688, 0.4050293, 1.2089844, -1.0410156, -1.2001953, 0.81640625, 1.3037109, -1.2939453, 0.7895508, -1.0058594, -1.3291016, 0.9838867, 2.28125, -1.0449219, -0.34155273, 0.2010498, -0.3022461, 1.7001953, 0.28808594, 1.5410156, -1.3447266, 0.14611816, -0.93359375, -0.8051758, 0.17578125, -0.58691406, -0.20678711, 4.1640625, 0.70751953, 0.5004883, 1.7880859, -0.41479492, -3.1855469, 1.1650391, 0.78466797, 0.91503906, 1.0683594, 1.4619141, -2.5371094, -0.60791016, 3.1171875, -1.1054688, 0.4013672, -0.2980957, -1.6816406, -1.1425781, -4.1835938, -2.6796875, 0.016921997, -2.2695312, -0.2680664, -0.94189453, -0.7685547, -1.3320312, -0.70654297, 2.2792969, 0.054016113, -0.24829102, 1.0693359, 0.7055664, 0.97314453, -1.4423828, 0.7138672, -1.8398438, 1.3701172, 1.6953125, -2.8769531, 1.7685547, 0.9511719, -0.8330078, -1.7607422, -0.5732422, -0.5883789, 2.0527344, -2.4355469, -1.0078125, 0.6850586, -0.2607422, 0.14477539, -0.8574219, -2.4160156, -2.8964844, 1.8369141, 1.0800781, 0.7705078, -1.1503906, -1.0878906, -1.8154297, -3.3144531, -0.8378906, 0.66845703, -0.85791016, 0.43237305, 0.13659668, -1.2519531, -0.42382812, 1.1669922, 1.5673828, -1.2539062, -0.61376953, -0.6166992, -0.6611328, -0.3881836, -3.3398438, 0.004337311, 0.9863281, 1.7177734, -0.91015625, 0.8071289, -1.5380859, -1.9980469, 0.59814453, -1.0859375, 2.1386719, 0.24194336, 0.9941406, 1.3310547, 0.9692383, 0.2836914, -1.8242188, 0.13452148, 0.515625, 1.0566406, 1.5625, -1.0654297, -0.28173828, 0.7216797, 0.25708008, -0.17236328, 0.4802246, 0.5908203, 0.76464844, 0.7729492, -0.5292969, -0.24707031, -0.09094238, -2.7148438, 1.0888672, -0.3166504, 1.2402344, 0.4399414, -0.11462402, 0.19665527, -2.375, -0.86083984, -0.47387695, -1.9677734, 0.17956543, -0.5161133, 2.1660156, 0.25439453, -0.3239746, -0.32641602, 0.6274414, 0.18835449, -0.859375, 0.51416016, -1.15625, 1.8837891, 2.0859375, 0.91748047, -3.2363281, -2.2851562, 1.1738281, -0.7080078, 2.7519531, -0.66308594, 0.5332031, -2.4980469, 0.1809082, -1.0820312, 1.1152344, 1.6660156, 0.71533203, -0.7944336, 1.7480469, 2.1816406, -0.90966797, 0.9682617, 1.0146484, 1.1806641, -0.0034637451, 4.2148438, 1.4414062, 0.5698242, 0.6245117, -0.4169922, 0.93066406, -0.6899414, 0.30029297, 2.0546875, -1.6933594, -2.1621094, -1.09375, -1.8212891, -3.2578125, 2.3945312, 0.9765625, 0.32958984, -0.91503906, 1.7568359, 0.80810547, 2.2460938, 1.9414062, -0.48364258, 0.8847656, 2.4023438, -1.2314453, -0.63671875, 3.0390625, -2.3222656, 1.6328125, 0.2376709, 1.5947266, -0.9394531, 1.1396484, 0.39672852, 3.0175781, 4.6601562, 3.03125, 1.765625, 1.2939453, 0.890625, 0.21972656, 0.9194336, 1.265625, -0.09765625, -0.35205078, 1.5488281, 0.3713379, -0.38964844, -1.0556641, 0.72314453, -0.6821289, 1.4306641, 0.22351074, -0.6386719, -1.3222656, -5.0273438, 0.31274414, -0.6479492, 1.8310547, -2.8945312, -0.38378906, 0.21716309, 0.8486328, 0.59033203, -3.0390625, 1.0800781, -0.70703125, 0.29516602, 0.6455078, -1.9384766, 2.0898438, -1.0673828, 1.4365234, -0.7944336, -2.7910156, -0.14111328, -1.9863281, 1.0175781, 0.63183594, 0.49609375, -0.23950195, 2.046875, 0.13708496, 0.4169922, -2.1855469, 0.6088867, 0.5078125, 1.9082031, 0.24365234, 0.51464844, 1.3251953, -0.3642578, -2.2773438, -4.0546875, 2.3554688, -1.3251953, 0.69628906, 1.1298828, -0.9121094, 2.9199219, 1.4736328, -0.6176758, -2.6328125, 0.77783203, -0.20495605, -0.51416016, -1.1992188, 1.7353516, -0.46557617, 1.6552734, 0.5629883, -0.75390625, 2.5019531, -2.3007812, 1.5898438, 0.12915039, -0.3359375, 1.4150391, -0.105773926, -0.72216797, 0.53515625, 1.0400391, -1.9277344, -0.13269043, 1.7285156, 2.7363281, -1.1914062, 0.2154541, -0.35205078, 1.3447266, -1.0859375, 0.46801758, 0.03463745, -1.8808594, -1.9804688, -2.4628906, 0.6196289, -2.015625, -3.5195312, 1.2373047, 0.18725586, -2.5039062, -0.072143555, 3.2929688, -0.78466797, 1.0126953, 0.66259766, 0.25732422, 0.46362305, -1.125, 1.0859375, -1.3291016, -1.8623047, 1.1054688, 2.1835938, 2.1269531, -0.031951904, 0.64990234, 0.33911133, -1.6181641, 2.3125, 1.0136719, -0.5131836, -0.047790527, 0.5439453, -0.86279297, -0.5991211, 3.1171875, -1.2685547, -0.33496094, 0.41430664, -1.6191406, -1.0361328, 1.8330078, -0.86328125, 2.6289062, 1.9746094, 2.1953125, 0.43041992, -1.8242188, -1.453125, -2.1914062, 0.67089844, 2.1992188, -0.32861328, -0.51220703, 0.54003906, -0.3918457, 0.42626953, -0.4140625, -1.7910156, 0.8671875, -0.7807617, 0.28686523, 0.44189453, 0.36645508, -1.6943359, 1.8242188, -0.75439453, 2.4648438, -0.84716797, -1.0400391, 0.921875, 2.4199219, 1.8525391, -2.9882812, -0.30615234, -2.59375, -0.012512207, 0.2705078, -1.6875, 0.5283203, 1.890625, -1.0439453, -2.1484375, -2.3066406]}, "B07FQVDWZ4": {"id": "B07FQVDWZ4", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill\nDescription: The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer's request. Cordless Drill NOT included.\nFeatures: The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits.\nRestore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco\nThe Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush.\nCleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with.\nOur brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.\u201d\n", "embedding": [0.12030029, 1.1835938, 0.6074219, -1.0693359, 1.4189453, 0.11730957, 0.1784668, -1.7080078, 0.5341797, -0.4284668, -1.3935547, -0.9399414, -1.4873047, -2.6191406, -3.9179688, 0.6088867, 0.07519531, 0.94189453, 2.2070312, 3.3847656, 0.27441406, -1.0986328, 0.88964844, 1.2890625, 0.8378906, -0.5410156, 1.8769531, -0.23217773, 2.0371094, 1.0898438, 1.7431641, -0.38745117, -0.48632812, 0.47436523, -2.7128906, 1.6708984, -0.39916992, 2.2519531, -0.5859375, -0.24804688, -1.4589844, 0.39257812, -0.12231445, 0.58447266, -3.6894531, 2.9082031, 1.4404297, 3.5507812, 0.34301758, -3.9726562, 1.2021484, -0.69091797, 2.234375, 1.3339844, -1.4892578, 1.1582031, -1.4960938, -4.234375, 0.07556152, -1.78125, 3.1816406, 1.9892578, -1.1220703, 0.18029785, 1.5986328, 2.5742188, -0.032562256, 0.44750977, -2.3554688, -1.9345703, -0.8071289, 1.8007812, 1.2568359, 0.38891602, -0.31811523, 1.7861328, -1.7636719, 0.97021484, 2.0058594, 0.81347656, -0.9448242, 1.8505859, -1.1884766, -2.7207031, 2.4570312, -0.39160156, -2.0839844, -0.43139648, 2.0078125, 0.2836914, 0.94677734, 2.7558594, -2.4121094, -4.1601562, 1.1337891, -1.4238281, 0.33129883, -2.4472656, -0.94433594, 1.625, -2.1230469, -0.42260742, -0.6401367, 0.36010742, -1.0185547, -0.21191406, 0.7114258, 0.71728516, -3.8339844, -1.5058594, -1.4648438, 2.8320312, -2.4335938, 1.8173828, -1.1152344, -1.8095703, -1.8896484, -0.4350586, 1.265625, 0.7397461, 1.0185547, -0.7158203, 0.10058594, -0.27392578, 0.37670898, 0.4321289, 0.4873047, 1.9560547, 3.2734375, 0.20983887, 0.47460938, -2.6835938, 0.7128906, 1.7265625, 1.0654297, -1.7841797, 0.06866455, -0.57714844, -0.020828247, -0.85546875, -1.0166016, -1.0859375, 2.5546875, -2.6796875, -1.9375, 1.1367188, -0.90185547, -1.5537109, -0.45166016, -2.4726562, 1.7890625, -0.26660156, 1.4179688, -2.0332031, 2.5449219, 1.40625, -1.3046875, 0.05706787, -0.022567749, 1.2402344, -0.42089844, -2.9941406, 0.3310547, 0.35058594, -0.015640259, -2.1542969, -2.5039062, 1.7910156, 1.9199219, 1.3554688, 0.23693848, -1.3828125, -0.46044922, -0.66552734, -1.2148438, -0.2253418, 1.1132812, 1.8066406, 0.37890625, -0.27563477, 2.7089844, -1.5810547, 0.57373047, -0.5776367, -0.2763672, -0.047698975, 2.7910156, 0.83251953, 1.4150391, -1.1201172, 3.5136719, 1.1484375, 0.90527344, 1.84375, -0.296875, -1.0087891, -0.46606445, -2.0742188, -0.024673462, 2.1894531, -2.2050781, -3.7734375, -1.1025391, -1.5839844, -1.2275391, -1.2402344, -0.7109375, 1.2861328, -0.81884766, -0.2692871, -0.13745117, -0.7548828, 3.1386719, -1.15625, 0.5517578, -3.2363281, -0.030578613, -2.4707031, 0.90625, 1.6816406, -0.59277344, -0.48779297, -0.3544922, 0.34155273, 2.0625, 2.4902344, -2.6210938, 2.1289062, -0.81591797, 1.171875, -0.27612305, 2.3398438, -0.7631836, -1.5253906, -0.85839844, -0.51416016, 0.50146484, -1.1689453, 0.22180176, -0.42895508, -0.5600586, -0.18640137, -1.9658203, 0.09832764, 1.2685547, -0.7348633, -0.7524414, 2.265625, -0.4272461, -3.8476562, 1.0898438, 1.9677734, 2.2617188, 0.7548828, 0.6586914, 0.4074707, -1.6679688, -1.3251953, -2.6152344, 0.18005371, 0.96972656, -1.0449219, 1.0380859, -0.45874023, 0.07598877, 0.72021484, 3.1523438, -1.2255859, 0.27514648, -2.2636719, -0.21350098, 0.47827148, -1.5957031, -0.5805664, -0.02330017, 0.88183594, -0.9238281, 0.25, -0.35229492, -0.32226562, -0.35058594, 1.5839844, 2.8769531, -1.3017578, -0.23864746, -3.0488281, -3.328125, -2.1523438, 2.1152344, -0.2758789, 3.8886719, 0.5341797, -2.2480469, 1.7470703, -2.6269531, 1.1289062, 1.5927734, 1.046875, -1.1347656, -0.4946289, 1.8564453, 0.62060547, -0.46435547, 0.9628906, -1.7929688, 0.13916016, 1.40625, -2.1015625, 0.3876953, 2.6328125, -1.5263672, -0.80810547, 2.0957031, -0.53564453, -3.7089844, 0.54833984, -2.5585938, -1.0283203, 1.7138672, -1.1787109, -1.6943359, 0.029647827, 1.6103516, -1.2802734, -2.6992188, -0.0076141357, -0.37768555, -1.0712891, 1.625, -1.2685547, 0.18249512, 0.5571289, -0.71533203, -1.3105469, -1.8203125, 0.045440674, 0.095703125, -2.2070312, 1.7011719, -1.6533203, -0.12322998, 0.18664551, -1.1113281, 1.5410156, -0.5463867, 1.1923828, -3.1054688, 0.9301758, 1.2841797, 1.0400391, -0.8359375, 0.5996094, 0.056732178, -1.9599609, 0.79345703, 1.2148438, 0.1194458, -0.026901245, -0.79541016, 0.8149414, -0.328125, 0.012496948, -0.7314453, 1.8544922, 0.89453125, 0.6621094, 0.023452759, -1.1552734, 0.8227539, -0.5703125, 1.3818359, -0.14025879, 1.0507812, 0.20458984, 0.5097656, 1.4697266, 1.4306641, -1.2060547, -1.3847656, 2.4023438, -0.90722656, -0.36767578, 0.60839844, 2.4453125, -1.3564453, -1.0166016, 1.1142578, -0.34838867, -0.056427002, -2.4140625, 0.009681702, 1.0878906, -3.3183594, -0.103027344, 2.0625, 0.53125, 0.7441406, -1.6074219, -1.0039062, 3.2734375, -0.3564453, -0.2932129, 0.1616211, 2.0039062, 1.0244141, -4.3671875, -1.1591797, -1.2324219, -0.07727051, -2.5703125, -0.7133789, 2.6542969, 1.015625, 0.03640747, 2.21875, -2.7597656, 0.64941406, -2.7851562, -2.2226562, -0.6254883, 0.9716797, 1.2402344, -0.30981445, 0.22375488, 3.0449219, -0.31225586, 0.35424805, -1.8701172, 0.44482422, 0.63134766, 2.0019531, 0.25830078, -0.12109375, 2.203125, 1.3154297, -1.71875, -1.4404297, 0.42358398, 1.2861328, 0.87646484, 3.4375, 0.9296875, 2.0351562, 0.33764648, 3.3339844, 1.1611328, 2.5253906, 0.00844574, 0.2163086, 1.0263672, -0.30371094, -1.9208984, 0.63671875, -0.8935547, -2.484375, 0.9033203, -0.35107422, -1.0087891, 1.9267578, -0.5439453, -0.04385376, 0.33569336, 0.21191406, -0.008796692, 1.8173828, -0.1352539, 0.9370117, -0.38549805, -2.2128906, 2.0097656, -1.5712891, 2.7363281, -3.6386719, -2.4726562, 2.2851562, 1.8642578, -0.05316162, -1.6640625, 0.5498047, -1.5078125, -2.7597656, -0.4621582, -2.0019531, 0.17016602, -0.07727051, -1.5214844, 0.31445312, -0.88671875, 0.7866211, -0.44604492, -1.3759766, -3.359375, -0.5805664, -0.1126709, -1.2216797, 0.2788086, 1.3671875, -0.27441406, 2.0761719, 0.7519531, 0.90185547, 4.2890625, -2.1699219, 1.0078125, -3.0644531, -2.4414062, -0.4970703, -2.1113281, -0.37182617, -0.54589844, 0.36816406, 0.64208984, -1.1074219, 0.70654297, 1.1572266, -1.6337891, 1.3652344, -0.11639404, -1.9121094, -1.3095703, 0.7036133, 1.5380859, -0.65771484, 2.2480469, 3.4570312, 1.2519531, -2.0820312, 1.484375, -2.8125, -2.0859375, -0.67333984, -1.3710938, -0.4152832, 1.9960938, 2.3144531, 2.0039062, 1.9970703, 0.40234375, 3.5332031, -0.22192383, 0.8833008, -0.5253906, 0.2265625, 2.1132812, 0.79296875, -1.0253906, 2.8476562, 1.6982422, -1.4804688, -0.40820312, 0.42407227, -2.5664062, -0.40161133, 1.5595703, -1.1054688, 0.4819336, -1.2490234, 1.03125, -0.8359375, -0.13708496, 2.1582031, -2.1621094, 0.86328125, 0.37695312, -0.6088867, 0.03274536, 1.9570312, -1.1318359, -0.14538574, -0.50683594, -1.0947266, 0.32128906, 0.60253906, 0.68408203, -0.37426758, -0.70166016, 1.203125, -0.2536621, -0.7714844, -0.7631836, 2.0039062, -0.56884766, -2.1894531, 1.3037109, 0.084472656, -0.9892578, 0.5996094, 0.21496582, -3.1074219, -2.921875, 1.0830078, -3.0644531, -1.2509766, 1.0048828, 0.049682617, 0.33398438, -1.5361328, -0.5722656, 0.09649658, 0.9194336, -2.25, 0.047607422, 2.1933594, 1.4121094, -1.0253906, 2.6757812, -0.6113281, 0.5727539, -1.9228516, -1.6181641, -1.5283203, -1.4238281, 1.2207031, -1.4130859, -2.2402344, 0.74902344, -0.93115234, 0.9794922, 0.081604004, -1.2128906, -2.1640625, -2.9785156, 1.4130859, 0.69970703, 1.3447266, 1.5576172, -2.3828125, 2.2167969, -0.47485352, 2.7558594, 4.6875, 0.34179688, 0.36157227, 1.1728516, 1.2333984, 0.15612793, 0.7817383, 1.6132812, 5.4414062, -0.3864746, -1.0429688, 1.9951172, 1.9990234, -3.484375, -1.4287109, 3.1816406, 1.0322266, 1.4052734, 1.2070312, 1.6181641, 0.16040039, 0.8173828, 2.0878906, -0.10784912, -1.3945312, -0.39233398, 2.0390625, -4.296875, 1.09375, -0.40551758, -0.5439453, 2.3828125, -1.2128906, -1.4658203, 1.4873047, 0.47851562, 0.9511719, 0.67041016, -3.5058594, 2.4042969, 1.6982422, 1.3535156, 0.36621094, -1.0380859, 1.2089844, 1.6064453, 1.3925781, -0.047210693, 2.0488281, 1.4423828, 1.7890625, -1.4609375, -0.9296875, 0.061401367, 0.03479004, 1, -0.18896484, -0.70458984, -2.5136719, 0.58154297, -0.36865234, 1.5888672, 0.93896484, 0.12408447, 2.3417969, -0.32592773, 1.4736328, -1.7822266, 1.8183594, -0.30541992, 0.31713867, 2.4980469, -3.8242188, 0.041778564, -1.5966797, -0.5932617, -1.0175781, 3.2207031, 2.4355469, -2.2578125, -3.6835938, -0.91259766, -1.2246094, -2.5429688, -0.5317383, -0.6088867, 0.48901367, 0.7836914, 0.10784912, 1.5869141, -0.45043945, 0.50390625, -0.9848633, 1.1679688, -2.3339844, 1.4697266, 0.24047852, -2.4003906, 0.51123047, -0.39575195, -0.69677734, 0.9868164, 2.4804688, 1.5595703, -2.2109375, -0.44262695, 1.8027344, -3.859375, -1.6503906, 2.5429688, -0.83203125, -0.21459961, -0.114868164, 0.50878906, -1.3310547, 1, -2.5332031, 0.25390625, -0.83496094, -1.8349609, -1.1484375, -1.8359375, -2.4960938, 0.91796875, 0.6064453, 1.8916016, -0.5097656, 1.2119141, 0.29956055, 1.9794922, -2.1972656, -0.78222656, -2.5175781, 2.1113281, 2.9628906, -1.6904297, -0.32666016, 3.1152344, -2.6171875, -0.10583496, 1.2587891, -1.6591797, 1.6181641, -0.35424805, -2.0761719, 0.8383789, -0.52978516, 0.96777344, -1.6103516, 0.2388916, -1.0136719, -1.6474609, 0.5336914, 3.4824219, -0.68115234, -1.8134766, -0.3383789, 0.52197266, -0.9916992, -0.49243164, 0.4038086, 0.87060547, -0.6035156, -2.2578125, -1.6494141, -0.8413086, 0.50097656, 2.703125, 0.8989258, 0.113098145, -3.5605469, -0.21838379, -1.3837891, 1.3378906, 0.06726074, 0.9091797, -0.30932617, 3.9707031, -0.1381836, -4.2773438, -1.3242188, -1.921875, 0.34448242, 0.83984375, -4.5859375, -2.4316406, -3.2421875, 0.0847168, -1.2441406, 0.26342773, -2.6367188, 0.92626953, -0.119262695, -0.50683594, 0.7495117, 3.9765625, 0.6508789, 3.15625, 2.9003906, 1.0136719, -1.1728516, 0.52783203, -0.6743164, 0.97802734, 0.60595703, -3.2050781, 2.4199219, -1.2753906, 0.82177734, -1.3193359, 0.9892578, 3.203125, 0.20654297, -0.9472656, 3.40625, 0.1895752, 2.2519531, 1.625, 1.4912109, 2.4335938, -0.016983032, -0.11035156, -0.32177734, 2.7597656, -1.8710938, 1.3652344, -1.1103516, -1.1386719, -1.6337891, 0.9692383, 0.9824219, 1.1601562, 0.6953125, -4.171875, 0.7871094, -0.7167969, -0.76220703, -0.90625, -0.33911133, -2.4511719, 0.6225586, 1.0253906, 0.08123779, 3.6074219, 2.9160156, 0.4350586, 1.1191406, -1.7138672, 1.9853516, -3.9511719, -0.5913086, -0.42919922, 1.1035156, 0.6723633, 1.2548828, -1.1875, 0.1776123, 0.29785156, 1.0947266, -1.2148438, 1.0410156, 0.5317383, -0.21496582, -2.7597656, 1.0566406, 0.1875, -0.85546875, -0.88916016, -3.34375, 1.6015625, -1.0244141, -1.3857422, 2.2480469, -0.23706055, 0.13293457, 2.9023438, -4.6523438, -2.4277344, 0.09539795, 2.8183594, 0.20837402, 0.88964844, -0.15612793, 0.2590332, -0.02079773, -0.17541504, 2.7773438, 2.4492188, 0.9770508, -3.0253906, 0.5083008, -0.21508789, 0.13879395, -0.13293457, 0.9199219, -2.0898438, -0.47705078, -1.6669922, 0.9013672, 0.95458984, 1.1015625, 1.1445312, 3.2460938, -1.0751953, 1.8525391, 3.3554688, 1.5302734, 0.16882324, -0.640625, 1.0605469, -1.1171875, 1.7021484, -2.9023438, 1.8837891, -0.8876953, 0.35327148, 1.4208984, 1.3105469, 0.091430664, 0.6479492, 1.3671875, -0.1616211, -1.0244141, 0.4934082, 1.4345703, -0.99853516, -2.4511719, -0.4621582, -1.1396484, -0.9838867, -2.0683594, 1.6416016, 1.15625, -0.26464844, -0.3371582, 0.19995117, 0.47729492, 1.7646484, 0.36767578, -1.0195312, -2.0996094, 0.028335571, 1.3876953, 0.32617188, 3.1757812, 2.6464844, 0.3317871, -2.6308594, -0.97753906, -1.5351562, -0.9477539, -2.4863281, -2.4609375, 0.83691406, 2.7871094, 0.76708984, 1.7177734, -2.6269531, -0.37426758, 3.1132812, -0.10205078, 0.13549805, 2.0390625, -0.9707031, 0.113708496, -1.125, 1.7402344, 0.42016602, -1.8955078, -0.06463623, 2.1796875, -1.4619141, 1.5869141, 1.0917969, -0.118652344, -0.37036133, 1.3066406, 1.1230469, -0.1282959, 0.055999756, 1.2373047, 1.546875, 2.8320312, -1.6396484, 0.6303711, -0.0670166, 1.1640625, 0.9819336, -1.359375, -0.7548828, 0.47973633, -0.89697266, -0.52978516, -2.375]}, "B081Q5YVT3": {"id": "B081Q5YVT3", "original": "Brand: Podoy\nName: Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder\nDescription:

Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

Waterproof: Made of waterproof material, you don't have to worry about getting wet even if it rains or snows.\u00a0

Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

Prevent your propane tank from experiencing premature fading and damage from the sun.

The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

\nFeatures: \u25b2PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb\n\u25b2HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on.\n\u25b2This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn't freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio.\n\u25b2Velcro closure at top, elasticized bottom for a neat, tailored fit.\n\u25b2If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you're not completely satisfied, you can ask for a replacement or full refund.\n", "embedding": [0.007835388, 1.4541016, 2.9863281, 0.2841797, -0.71191406, -0.06060791, 1.6611328, 0.34179688, 1.4521484, 2.1132812, 0.3779297, 0.83447266, 2.3125, -4.0507812, 1.7431641, 0.10675049, 0.014709473, 2.3378906, 3.4785156, 0.24719238, 3.1269531, -0.10510254, 1.4394531, -0.80908203, 1.6787109, -1.0283203, 3.2148438, -2.5195312, -1.3125, -0.023849487, 0.68847656, -1.0146484, -0.29101562, 1.7607422, -0.29736328, -2.0566406, -0.2631836, 0.5732422, -2.3515625, 0.04272461, -3.7753906, -1.6416016, 2.6992188, 1.0898438, -0.73095703, -0.93896484, -2.1835938, -0.49560547, 0.29882812, -2.4960938, 0.12158203, 0.28100586, 2.2363281, 2.1601562, -1.6767578, 0.7001953, 0.49047852, -2.890625, -0.5566406, 1.1884766, -0.42822266, -0.8154297, -2.0117188, 2.5117188, -0.042755127, -0.5126953, -2.0117188, 0.5263672, 0.8051758, 1.0537109, 2.96875, 1.5039062, 0.39208984, -0.45336914, 0.5102539, -0.5097656, -2.5292969, 1.8828125, 3.6386719, -0.42407227, 0.97558594, 3.4082031, -1.5107422, -1.4833984, 0.4975586, 0.20361328, -1.8769531, 0.37353516, 1.4521484, 1.2880859, -1.9638672, 1.7353516, -1.9746094, -4.1132812, -0.16088867, -0.1986084, 1.9433594, 0.81591797, 2.2324219, 0.68603516, -0.09851074, 0.42822266, -1.28125, -0.53125, -3.1289062, -2.1601562, 0.5776367, -2.0175781, -0.7207031, 0.66503906, 0.41259766, 0.56103516, 2.03125, -1.9804688, 0.68896484, -0.25341797, -0.8330078, 0.5175781, 1.7089844, 3.5175781, 4.6914062, -0.84765625, 1.7822266, -1.015625, 1.2089844, 1.2236328, -0.93115234, 0.48242188, 3.5429688, -0.82910156, 2.0800781, -0.22631836, 0.7919922, 0.048583984, 0.19665527, -1.5126953, -0.5083008, -1.9316406, -2.125, 1.2558594, -2.7089844, -1.5800781, 1.8291016, -0.46240234, -4.2578125, 0.63623047, -0.6020508, 2.3769531, -0.8833008, -3.2265625, 1.0927734, -1.1503906, -1.5126953, -0.07171631, 0.5058594, 0.2783203, 0.8574219, -3.1035156, 3.1914062, 1.9941406, 4.4765625, -1.9140625, -0.80322266, 1.2753906, 2.1738281, -3.0839844, 1.1123047, 0.013023376, 0.5229492, 1.4306641, -0.20336914, -1.8017578, 0.55908203, 0.48754883, -0.2355957, -1.4111328, 1.09375, 2.7519531, 0.8666992, -0.86083984, -2.6191406, -0.20129395, -0.26708984, 0.6933594, 0.025375366, 0.14074707, -2.4648438, -0.30371094, -0.1586914, -1.4980469, -2.2753906, 2.1699219, -0.96191406, -0.7416992, -2.1796875, -2.5136719, -1.46875, -2.0703125, -0.28637695, 1.5361328, -0.8959961, -1.4853516, -1.1591797, 0.703125, -2.8828125, -1.0898438, 0.10180664, -0.18554688, 0.8544922, 0.86376953, 1.5224609, -0.98876953, 2.7089844, 0.058502197, -0.8540039, -0.25439453, 2.0253906, 0.95166016, 1.9130859, 1.9345703, -0.8623047, 0.5708008, -0.49365234, 2.9003906, 0.41723633, 2.9492188, 1.1806641, -0.10266113, -1.5048828, -0.6381836, -0.23425293, 0.7441406, -1.0625, 0.82910156, -1.1083984, 1.0419922, 0.3918457, -1.6738281, -0.1262207, 0.1640625, 0.22265625, -1.4248047, -1.4775391, -1.1044922, 0.10229492, 1.2880859, -2.1601562, 1.4619141, 1.0283203, -1.2207031, -0.7163086, 0.014579773, 0.8857422, -3.109375, -0.00381279, 1.2138672, 0.8051758, 0.1451416, -0.79541016, -1.6738281, 0.86083984, 1.7285156, -0.75341797, 0.1463623, 0.14135742, 1.6542969, 1.40625, 0.19946289, -3.1210938, 1.046875, 1.6552734, 0.9633789, -0.0048065186, -1.296875, 0.26879883, 1.0175781, -0.3515625, 1.4501953, -0.36914062, 2.3066406, 1.5253906, 0.8935547, 1.2294922, -2.6308594, 0.3869629, 0.4880371, 2.0175781, -0.5546875, -0.7915039, -0.58740234, 3.0761719, -0.4814453, -0.5341797, 2.3632812, 1.6640625, 1.265625, 2.5253906, -1.4580078, -0.83154297, 0.3864746, -1.6826172, 0.14746094, -2.2441406, -0.26220703, 1.0878906, -1.7548828, -1.0605469, -1.5839844, -0.0115356445, 0.34545898, 0.33740234, -0.07922363, -0.5517578, -0.8959961, -1.2568359, -2.6386719, 3.84375, -2.5429688, -1.0380859, 2.9570312, -0.54541016, -0.3076172, -1.1181641, -1.4882812, -0.38916016, 0.8305664, -2.0742188, 0.24536133, 0.4519043, -1.6865234, -0.24804688, -2.0800781, 2.2519531, -1.1035156, -0.8461914, -1.1582031, -2.8691406, -1.21875, 0.25146484, -3.1484375, 1.0898438, -1.5947266, -2.1191406, 1.5205078, 1.1933594, -2.5332031, -0.6225586, 0.80322266, -2.0878906, 0.15307617, -0.015571594, 0.57373047, -0.09112549, -3.3808594, -0.66259766, 1.921875, -3.0976562, 0.8901367, -1.5439453, 0.35620117, -1.0800781, -0.31689453, 2.0390625, -0.6958008, -0.29223633, -1.421875, 1.0722656, -4.1445312, 1.5576172, -1.6914062, -0.21960449, -3.9394531, -0.25097656, -2.578125, -2.4140625, 1.1953125, -1.3955078, 4.140625, 1.4482422, 0.95703125, -0.95947266, -0.49682617, 1.0068359, -1.1503906, -3.7109375, -1.2695312, 1.3076172, -2.0820312, -0.26635742, -4.3867188, -0.6386719, -2.90625, 0.21850586, 0.2088623, -1.2783203, -2.2089844, -0.12695312, -1.1552734, -0.19592285, -1.1806641, 1.4169922, 0.5126953, -2.0507812, 0.05331421, -0.86621094, -1.2939453, -0.17578125, -0.44702148, 1.6816406, -0.8051758, 1.1728516, 1.0966797, -1.5273438, 2.4960938, -0.74560547, -3.1074219, -0.8955078, 1.8916016, 1.2519531, 2.890625, -0.50097656, -0.8540039, -2.2167969, -1.2626953, 2.9375, 3.03125, 1.234375, 0.92529297, -0.58740234, 0.07141113, -1.5849609, -0.36572266, 0.37060547, 1.2294922, 3.9023438, -2.1933594, 0.5361328, 0.28735352, 2.2265625, -2.59375, 0.012992859, 1.7558594, -0.87402344, 3.2949219, 1.7216797, -1.2802734, -0.37182617, 0.46704102, 2.375, -0.045318604, 1.3339844, 1.1660156, -0.49780273, 1.0136719, 0.06555176, 1.4941406, 2.4238281, 0.8833008, -2.0449219, 2.4296875, 0.79003906, -0.2770996, 0.6777344, 0.4404297, 0.24609375, 0.27905273, 3.5976562, 0.52197266, 1.2929688, 0.93066406, -0.6328125, -0.23266602, -1.9931641, 0.71728516, 2.2734375, 1.3505859, -1.2177734, -1.3984375, -0.81884766, -0.39746094, -2.3789062, 2.0527344, -0.90771484, -1.3896484, 1.9609375, -2.1621094, -1.7783203, -1.7324219, 2.2734375, -0.2055664, -1.4052734, 0.36791992, 1.1162109, -1.0146484, -2.734375, 0.4152832, -0.04232788, -1.5576172, 2.9921875, 1.4794922, -0.94677734, -0.39135742, -1.9238281, 3.2539062, 1.9560547, -1.1191406, -0.9921875, -0.064575195, -0.5395508, -1.6259766, 0.46166992, 2.1347656, 1.7548828, -3.7519531, 0.04360962, -1.7109375, 2.609375, 1.1396484, -0.2241211, 0.17199707, -0.1932373, -0.23254395, 1.9628906, 1.2861328, 1.9082031, -0.33666992, 1.2802734, 1.6025391, -1.3818359, 0.8173828, -0.19274902, -4.3164062, -0.15905762, -1.2646484, -1.3203125, 3.9765625, -0.23522949, 0.36010742, -0.35498047, 0.57373047, -3.5390625, -0.46655273, -2.2558594, 0.609375, -3.0566406, -0.7729492, 1.6210938, 1.0087891, -3.2949219, -1.5625, 0.17602539, -1.0791016, -0.5654297, 0.36206055, 0.5708008, 1.3066406, -1.3525391, -0.20739746, -1.5605469, 1.0625, 1.1796875, 0.50341797, -1.3134766, -0.43481445, 1.4482422, 0.57958984, 0.68408203, -0.70214844, 2.1269531, 0.9326172, -1.2832031, 0.91064453, -0.6113281, 2.4433594, -1.4169922, -3.5976562, -1.6611328, -0.08581543, 1.1152344, -0.35229492, -1.2138672, 0.22619629, 0.6948242, 0.70751953, 0.5644531, 1.9560547, 0.50439453, -1.2861328, -3.0117188, 2.0976562, -0.45361328, -1.234375, -0.3486328, -1.3955078, 1.1416016, 0.5942383, -2.4746094, -2.1425781, 1.2148438, -0.26635742, 1.0869141, -1.8232422, 1.8730469, 3.3652344, 2.578125, 2.140625, -0.79003906, 0.096069336, 1.3681641, 0.07043457, 2.1464844, -1.4208984, -1.2490234, 0.018615723, 1.1162109, 1.3779297, -2.3320312, -0.80859375, -1.1191406, -1.4833984, 0.008796692, -1.3242188, 1.8828125, 0.1616211, -0.2602539, -0.37182617, -2.5136719, 3.6152344, -2.84375, 2.1738281, -0.31103516, -0.6411133, -1.0986328, 3.2617188, 1.3544922, 0.46264648, 2.2636719, -1.3125, -1.5957031, 0.024597168, 0.71777344, 1.6308594, 1.6152344, -1.6347656, -0.47631836, 1.1972656, 1.8769531, -0.7050781, -0.10467529, 1.6044922, 3.1699219, 0.4885254, 0.69091797, 1.7626953, 0.18432617, 0.86621094, 2.1269531, -0.45654297, -0.49780273, 0.6826172, -0.17443848, 1.5654297, -1.6484375, -3.6347656, 0.82373047, 0.43041992, -0.48535156, 1.9433594, -0.99365234, -1.6826172, 0.12072754, -3.7871094, -1.8505859, -1.5839844, -0.77978516, -0.05596924, 0.17675781, 0.7524414, 0.7709961, 1.3671875, 2.8339844, -0.74121094, -2.0175781, 0.28149414, 0.14440918, 0.25073242, -0.62158203, -1.1689453, -4.4414062, -1.7324219, 0.6220703, 0.7182617, -0.04006958, 0.82177734, 2.0332031, -3.3925781, -0.10882568, -0.09100342, 1.4746094, -1.9912109, -0.18347168, 3.8125, -0.7890625, -1.2333984, -0.96777344, 0.18945312, -0.8676758, 2.3320312, 1.8134766, 0.43066406, 0.32348633, -0.21618652, -3.1269531, -5.2773438, -0.83935547, 1.5546875, -0.90722656, 1.7617188, 0.31958008, 0.35888672, 1.0722656, -1, -0.49609375, -1.6826172, 2.2324219, -1.5673828, -1.4648438, -0.6425781, -0.2512207, -0.7651367, -0.2902832, -0.08215332, -0.26708984, -2.2382812, -3.1425781, -1.5810547, -0.19934082, -2.0234375, -0.3618164, 1.4990234, -1.0888672, 0.6020508, -0.122802734, 1.3886719, 0.11804199, 2.2792969, -0.79345703, 0.2421875, 1.8232422, 0.063964844, -0.94189453, 0.32299805, -0.008140564, 1.0537109, 2.3105469, 1.5849609, -2.5410156, 0.19946289, 1.8476562, 1.6923828, 0.5317383, 1.0791016, 1.2773438, 1.2763672, 2.3203125, 1.7480469, -1.8291016, -0.97314453, -1.9023438, -1.6376953, -0.6870117, -1.1816406, -2.1953125, -1.1660156, 0.69140625, 1.5107422, 0.8886719, 1.4697266, 0.85058594, 0.78125, -3.1289062, 0.3857422, -1.0498047, 1.6650391, 1.3955078, -2.8085938, -4.0820312, -2.078125, 3.1308594, 0.65625, -1.2275391, 0.88134766, 0.19128418, 0.19934082, 0.66796875, 0.100097656, 2.1035156, 0.7001953, 2.1679688, -0.82128906, 0.064575195, 2.2148438, -1.2773438, 1.1933594, -0.6923828, 1.3779297, -0.70996094, 0.7597656, 0.45922852, -2.7773438, -1.0693359, 1.2763672, 0.3400879, -0.78515625, -2.4296875, -0.8881836, -1.4189453, 0.19555664, -1.0888672, -1.2958984, -4.1484375, 2.84375, 0.5366211, -0.3076172, 0.9511719, 1.3144531, -0.11859131, 0.4650879, 0.86376953, 0.95947266, -0.045928955, -0.5966797, -0.86865234, 1.140625, 1.9169922, -2.6171875, 1.2119141, -1.2919922, 0.33203125, -2.203125, 1.6503906, 0.24047852, 0.90234375, -0.37402344, 2.7167969, 4.75, 0.025238037, 1.7724609, 0.076171875, 1.9677734, 2.4707031, -2.2070312, 1.2333984, 1.5751953, 3.2910156, 3.1601562, -0.76904297, -0.41503906, 0.30371094, -1.7333984, 0.32617188, 2.1933594, 3.2050781, -2.8183594, 0.9272461, -0.63671875, -1.8447266, -0.42504883, 1.7265625, -2.203125, -1.9042969, -1.6005859, 0.4892578, 2.2910156, -0.48364258, 2.1015625, -0.046569824, -0.1083374, 1.3359375, -1.5097656, 0.92333984, -0.60058594, -2.1210938, -1.6162109, 2.7324219, 1.9589844, 1.8945312, -0.5605469, 0.51660156, -0.23657227, 1.6904297, 1.6367188, -0.68408203, 0.28686523, -1.2607422, 1.6386719, 2.7441406, -1.9160156, -0.23400879, 0.035461426, 0.29492188, -3.3320312, -0.37768555, 1.1689453, 0.6333008, -0.15917969, -3.6269531, -0.043029785, -2.0507812, 1.5146484, -2.6660156, 0.095214844, -1.5361328, -3.8164062, 0.8491211, 0.97021484, -0.66308594, 3.3847656, 0.40942383, 0.5629883, 3.203125, 0.82958984, 0.8544922, -0.3779297, 1.0087891, -0.10699463, 2.0253906, 0.3720703, 3.1054688, 2.1191406, -2.4882812, -1.1630859, 2.1992188, -0.02798462, 0.23022461, 1.4833984, -1.1835938, 2.4570312, 1.5058594, -0.8798828, 1.0126953, -0.5751953, 0.8432617, -1.0410156, 0.49731445, 0.39282227, -0.6879883, -0.6816406, 1.7167969, -1.8261719, 0.46289062, 0.9916992, 0.5136719, 2.6992188, 0.4362793, -1.4296875, -1.1318359, 0.80859375, 0.8886719, -2.046875, 1.5585938, -1.3662109, 0.40478516, 1.2158203, -1.3515625, -1.4873047, 0.26049805, -0.4013672, 0.23352051, 1.2158203, 0.6542969, -1.2910156, 0.22937012, -1.7089844, 0.69384766, 1.8691406, 0.95166016, -0.70654297, -1.4589844, -1.3105469, 1.2773438, -0.7685547, -1.2060547, 2.0332031, 3.171875, 0.9736328, 0.23791504, 0.5332031, -4.3007812, -1.5888672, -3.4902344, 2.4453125, 0.45776367, -0.7524414, 0.1899414, 0.9814453, 2.2675781, -0.23815918, -1.0097656, 0.9165039, 0.9975586, 1.8876953, -0.36547852, 0.7128906, 1.4990234, 0.0037441254, 1.2958984, 2.7695312, 2.0136719, -1.734375, 0.75634766, 1.7509766, -1.6748047, -3.4140625, 0.07849121, -0.06768799, -1.4111328, 0.93310547, 2.6796875, 1.8955078, -1.2695312, -1.2509766, -0.95458984, -1.0068359]}, "B009H3QVOK": {"id": "B009H3QVOK", "original": "Brand: Fire Sense\nName: Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp\nDescription: \nFeatures: This outdoor patio heater is made using heavy duty commercial grade steel.\nThis small patio heater can be taken indoors easily due to its light weight.\nThe portable heater makes use of a standard 1 pound LPG propane tank.\nYou can turn on this patio heater in an instant with the push of a button.\nThis outdoor heater is perfect for your porch or any other outdoor venue.\n", "embedding": [-1.6035156, 0.57128906, 2.1816406, 0.29541016, -0.57177734, 0.25610352, 1.5439453, -0.4970703, -2.2675781, 3.6542969, 0.5913086, -0.37695312, -0.78271484, -3.9238281, 0.6113281, -0.94970703, -0.055664062, 1.3818359, -0.002161026, -0.008712769, 2.7597656, -0.3935547, -0.2758789, -0.85546875, 1.6533203, -1.125, 2.4804688, -1.8886719, -0.18322754, -1.4755859, -0.11303711, 1.4365234, -0.13623047, 1.1201172, -1.2490234, -1.3134766, -0.9638672, 1.9521484, -4.5507812, -0.34521484, -0.7241211, -1.6992188, 1.7392578, 0.57470703, -1.015625, 0.9536133, 2.3261719, 1.0830078, -0.13061523, 0.11077881, 0.21105957, 0.031585693, -0.81152344, -1.1884766, -2.7050781, -0.18762207, -1.4667969, -3.5371094, 1.9638672, 0.047576904, 1.6230469, -0.5883789, -0.98779297, 1.9003906, 0.3828125, 2.6074219, -0.8466797, -0.8886719, -0.45288086, 0.07409668, 2.6347656, -0.28222656, -0.24780273, -0.38916016, 0.4272461, 1.1982422, -0.84765625, 0.5498047, 2.3652344, 0.73339844, -1.4482422, 0.7553711, -0.54541016, 0.5488281, -0.6772461, -0.6142578, -1.2304688, 0.73095703, 1.1484375, 3.3105469, -0.2626953, 2.6289062, -1.4589844, -2.6835938, 2.8867188, -1.09375, 0.52685547, 0.81933594, -1.1523438, 1.4414062, 0.2446289, -0.32641602, -0.86279297, -1.1630859, -0.7548828, -1.046875, 2.3046875, 1.7226562, -1.6904297, 0.91503906, -0.67578125, 0.9555664, 1.2763672, -0.8095703, -2.171875, -0.68310547, 1.4863281, 0.3996582, 5.3164062, 1.25, 5.2851562, -1.3632812, 1.4414062, -3.3691406, 0.45898438, 1.1289062, 0.5444336, -0.81640625, 0.005809784, -1.3662109, 0.9980469, 0.83496094, -0.22216797, -0.58154297, -0.3774414, -0.9238281, 0.15344238, -1.8730469, -2.9433594, 0.26513672, -1.2626953, 0.68652344, 0.83203125, 0.75878906, -4.046875, -0.6328125, -0.8046875, 0.4921875, -1.09375, -0.6923828, 0.3269043, -0.38012695, -0.5834961, -2.1035156, 0.45629883, 2.0820312, -0.8208008, -1.7480469, 3.6542969, 1.0332031, 1.9755859, -0.80029297, -0.33154297, 0.018936157, 0.7416992, -0.8515625, 2.7324219, 0.71533203, -0.016494751, 1.2939453, -0.015319824, -3.1503906, -0.29785156, -0.92041016, -0.08557129, -2.1230469, -1.0576172, 1.5751953, 0.27661133, -0.1673584, -2.2128906, -0.22949219, 0.77246094, 1.0253906, 1.2392578, -1.7929688, -2.0546875, -2.3046875, -2.2851562, -2.5800781, -0.0993042, 0.37451172, -0.13134766, -1.6533203, 0.54541016, -2.3964844, -2.4921875, -3.1328125, 1.6962891, -1.3232422, -0.7104492, -1.0341797, -1.2304688, 0.33984375, -3.578125, -3.2988281, 0.60253906, 0.29614258, 0.546875, 1.4238281, 0.7861328, -0.7651367, -0.13757324, -1.2753906, 0.56933594, -2.2949219, 2.3984375, -0.8886719, -0.4868164, 2.9238281, 0.19885254, -0.04144287, -0.006641388, 2.1054688, -1.7519531, 2.75, 0.049804688, -0.15856934, -1.640625, -2.0273438, 3.671875, 1.0214844, -0.013168335, 0.890625, -2.0039062, 3.1582031, -0.035095215, 0.28222656, 1.328125, -1.1074219, 1.1289062, -1.0839844, -2.21875, 0.41723633, -1.0449219, -1.1416016, 1.1542969, 1.84375, 1.21875, 0.045043945, 0.038024902, -0.02748108, 0.5419922, 1.4580078, -2.1484375, 1.6240234, -0.0736084, 0.91796875, -0.83154297, -1.8789062, 1.3964844, 2.6621094, -1.6591797, 0.64208984, -0.3046875, 0.26489258, 3.7128906, 0.6767578, -1.46875, 1.3603516, -0.42285156, 2.0253906, 0.9428711, 1.6611328, 0.8417969, 0.86035156, -1.7529297, 3.1875, 0.6904297, 0.87841797, 0.35253906, -1.25, 2.1484375, -0.9980469, -0.9355469, -1.3613281, 0.3857422, 0.06439209, -0.03741455, 1.0957031, 4.4296875, -0.11505127, -1.9951172, 1.4619141, -2.6640625, 2.4824219, 0.7060547, -0.6040039, -0.43237305, -1.0625, 3.1132812, 1.1308594, -2.6171875, 0.49951172, -1.8681641, 0.46777344, 0.59521484, -2.1699219, 1.3701172, 0.78271484, 0.18981934, -0.8383789, -2.2382812, -1.0390625, -2.7597656, -1.9814453, 0.9580078, -3.0507812, 1.7460938, 1.6113281, 0.20141602, -0.3803711, 0.116760254, -2.125, -0.28735352, 1.0380859, -1.9111328, 1.4960938, 0.43920898, -0.96240234, -1.2646484, -2.2636719, 1.4433594, -2.7636719, -1.8613281, -0.49145508, -0.8071289, -1.03125, 0.9692383, -0.7548828, -0.9135742, 1.9091797, -0.50146484, 0.37768555, -0.54052734, -0.53271484, -0.38085938, 1.0839844, -1.6445312, -0.43725586, 1.2324219, 2.6738281, -2.2382812, -2.5078125, -0.1194458, 1.5810547, 0.33935547, 0.7524414, -0.20739746, 0.5673828, -0.30126953, 0.30639648, 0.09020996, 0.57910156, -0.23864746, -2.1328125, 0.18896484, -4.1054688, 0.49365234, -2.4492188, 0.49316406, -0.5239258, -1.3007812, -0.18566895, -0.5385742, 1.1494141, -0.6010742, 3.6914062, 0.3564453, 3.7128906, -2.453125, 0.0012245178, 0.46777344, -0.50146484, -4.3476562, -0.98291016, -1.2978516, -0.33422852, -1.21875, -2.0722656, 0.23583984, -1.6630859, 0.6772461, 1.109375, -0.46533203, 0.45922852, 0.18041992, 0.40942383, 0.73779297, -0.08654785, 0.01109314, 1.4414062, 0.66503906, -2.6757812, -0.043945312, -0.5644531, -0.45507812, -1.5830078, 1.7705078, 0.062164307, 0.65625, 1.8564453, -0.1340332, 1.1787109, 0.5205078, -4.6132812, 1.8925781, 1.4697266, -0.8256836, -1.0117188, -2.6542969, -2.4570312, -1.5595703, 1.3300781, 2.8574219, 1.0429688, 3.5507812, -1.1005859, -1.2949219, -0.19616699, 2.4921875, -1.9111328, -0.68115234, -0.6230469, 2.9179688, -3.3730469, 0.37280273, 2.1386719, 4.7734375, -1.421875, -1.1503906, -0.7866211, 1.0878906, 2.71875, 0.22009277, -2.7167969, 0.6455078, 1.0078125, 0.796875, 1.8066406, -0.2232666, -2.4511719, -0.8989258, 0.79589844, 1.4326172, 1.8027344, -0.4699707, 1.1826172, 1.9130859, 2.5488281, 0.7915039, -1.7382812, 0.49365234, -0.26171875, 0.40112305, -0.61376953, 2.5820312, -1.8613281, -0.15063477, -1.0625, 0.9692383, 0.5546875, -1.7392578, -0.67333984, 0.64746094, 2.7675781, -0.99560547, -0.4116211, 1.0742188, -0.5698242, -1.8710938, 1.0820312, 1.1865234, 0.21826172, 0.6196289, -1.8886719, 0.08294678, -1.3457031, 1.2607422, 0.14978027, -2.3046875, 0.9042969, 0.64990234, 0.18273926, -2.1054688, -3.2851562, -1.5712891, -1.1015625, 3.4199219, -2.4492188, -0.8222656, -0.27270508, -1.7460938, 1.3027344, 0.34472656, -1.3505859, -1.1328125, -0.063964844, -1.4755859, 0.5859375, 0.7446289, 0.17175293, 0.7241211, -2.4101562, -0.09527588, -2.1191406, -0.1887207, 1.4023438, -1.6611328, -0.6113281, 1.9248047, -0.24975586, 2.0625, -1.4033203, 2.4765625, -1.4169922, -1.8496094, 1.5605469, -1.1210938, 0.37963867, -1.2060547, -4.6640625, 0.023147583, -1.2431641, 0.24951172, 1.3759766, -0.111816406, -0.39575195, 0.28857422, -0.14208984, -2.9277344, -4.2617188, -0.3708496, 0.88183594, -2.6992188, 0.39819336, 1.1660156, -1.5419922, -1.0800781, -2.3671875, 0.39257812, 0.7998047, 0.6669922, 1.4326172, 0.46142578, 1.5771484, -1.6308594, 1.0498047, -0.15222168, -0.8203125, -1.2978516, -0.9741211, 0.98535156, -0.9394531, 3.3515625, 0.36987305, 0.4921875, 1.9521484, 4.125, 1.1044922, -0.39501953, 1.6035156, 1.0205078, 1.9726562, 0.48510742, -3.5449219, 1.9960938, -0.9355469, 0.47265625, -1.5585938, -0.6303711, 1.8203125, -2.3105469, 0.62158203, 1.6132812, 1.1210938, 1.8388672, 2.6054688, -3.5722656, 0.14331055, 0.63134766, -2.3164062, -2.9785156, 0.81933594, -0.41503906, -1.6113281, 1.9248047, 0.6567383, -0.27148438, -1.4619141, -2.1054688, -1.3925781, 1.9453125, 4.6796875, 2.4199219, 1.6210938, -1.7041016, -1.0146484, 0.08782959, -0.69677734, -0.9604492, 2.3164062, 1.7490234, 0.71777344, 1.7998047, 3.578125, -0.5654297, -0.11651611, 1.7685547, -1.5810547, 1.171875, -1.3720703, -0.79833984, -1.0742188, -0.875, -0.36645508, 0.06665039, 1.1845703, -1.6464844, -1.3847656, -0.65478516, -0.3305664, -1.5205078, -0.9736328, 1.0664062, -0.1328125, 2.2304688, 0.048675537, 2.3808594, -0.2010498, 2.0019531, 2.3554688, 2.3300781, -2.5351562, -0.83154297, -0.23303223, 0.21569824, -0.034332275, 0.70996094, 2.0820312, -0.1496582, 0.79785156, 2.1777344, 1.2050781, 0.5800781, 2.0351562, 1.3974609, -2.2578125, 0.49194336, -0.88183594, -0.2878418, -0.21655273, -0.5649414, -3.3066406, -0.9355469, 1.9541016, -0.16772461, 1.8046875, 0.015792847, -1.2919922, -0.68066406, -1.8837891, -2.3300781, -0.9057617, 0.107666016, 0.8334961, -0.29833984, -1.2226562, -2.1015625, 2.4257812, 2.828125, -0.40185547, 0.21716309, 1.8134766, 0.060577393, -0.42749023, 0.52246094, -0.92871094, -0.71875, -0.36914062, 0.15197754, 1.4033203, 1.5087891, 0.9375, 1.2412109, -2.1992188, -0.6191406, -1.0791016, 2.2851562, -2.7929688, -1.8701172, -0.17700195, 1.7216797, 0.3293457, -2.0722656, -1.2080078, -1.65625, 1.4794922, -1.7861328, 1.1337891, -0.3503418, -1.0800781, -1.3349609, -2.5507812, -2.0097656, -1.125, -0.9785156, 0.18078613, -2.34375, -2.6640625, -0.3762207, 0.19091797, 0.92529297, 0.12695312, 0.05682373, -0.5004883, 1.1669922, -1.4267578, 0.29785156, 0.6269531, 2.203125, 0.66064453, 0.25756836, -1.1064453, -2.1132812, -1.1914062, -0.50390625, -0.6542969, 1.2119141, 0.8876953, 1.1679688, 0.86035156, 3.9785156, 1.8300781, -3.0136719, 1.0126953, 1.2080078, 0.21411133, 3.640625, -1.8017578, 1.0244141, 0.6381836, 0.05908203, -0.6113281, -1.40625, -0.55615234, -1.265625, 0.81396484, -1.3193359, 0.8730469, 0.91503906, -0.18395996, 0.9316406, -0.54052734, 1.5507812, 1.2451172, -1.0849609, -1.3193359, -3.0234375, -1.6113281, -1.8798828, 0.047210693, -0.41577148, -1.5117188, 1.7392578, -0.07067871, 0.72753906, 1.4052734, 1.4267578, 1.3349609, -2.6308594, 0.1928711, 2.1503906, 2.2617188, 1.7119141, -1.9677734, -3.7949219, -4.2421875, -1.6259766, 1.2050781, 0.12719727, -1.2373047, -1.4873047, -2.6230469, 0.34277344, -0.9321289, 2.4238281, 2.0058594, 0.5175781, -3.1386719, 1.2490234, 1.9863281, -1.875, 1.2626953, -0.08642578, 2.9550781, -0.39624023, 2.8125, 2.2988281, -1.5800781, 1.9570312, -0.2915039, 1.609375, 0.19604492, -1.7460938, 0.67285156, -2.0136719, -0.22875977, 0.058929443, -1.890625, -2.2578125, 0.51171875, 2.34375, 0.0925293, -0.025314331, 1.9208984, -0.7080078, -0.21496582, 1.1318359, -0.123168945, -0.05279541, 1.0087891, -1.1347656, 0.7050781, 3.6640625, 0.74609375, 1.1015625, 0.23034668, -0.31591797, -0.9453125, 1.5302734, 0.43823242, 1.5175781, 2.2910156, 2.0410156, 2.2246094, 0.69677734, 1.8574219, 0.890625, -0.6586914, 2.515625, -1.7167969, 0.31958008, 1.3681641, 1.8955078, -0.8334961, -0.0019702911, -0.011932373, 1.3994141, -1.4423828, -2.9082031, -0.3935547, 2.1230469, -1.3623047, 1.9951172, -0.74560547, 2.3320312, -3.0429688, 1.3466797, -0.7446289, 1.3388672, 0.2590332, 0.109436035, 0.76464844, -1.4726562, -1.3398438, -1.1914062, 0.3125, 0.20825195, -2.3378906, 2.1152344, -0.9838867, -1.2080078, 0.36987305, 3.484375, 0.7421875, -0.2512207, 0.09008789, 2.4980469, 0.65234375, 1.6201172, 1.0898438, 0.3798828, -2.4003906, 0.30444336, 2.1621094, 2.4335938, -1.0576172, 0.6640625, 0.32470703, -1.1494141, -0.6542969, 1.2060547, 0.87841797, -0.6508789, -0.107299805, 0.4699707, 1.2177734, -1.2050781, 2.2402344, -2.1289062, 2.0625, 1.1015625, 0.5732422, 1.0771484, 0.7832031, -0.6542969, 3.2636719, 0.6699219, -0.67333984, 1.0947266, -0.16955566, -0.21911621, -0.62060547, 0.55126953, -1.2119141, 2.0019531, -0.7832031, 1.6005859, 0.27124023, 0.49536133, 0.4897461, 1.3681641, 2.3828125, -0.8774414, -0.21777344, -1.1484375, 0.58447266, -0.41137695, -1.5488281, 0.33569336, -0.57128906, -1.2792969, 0.21936035, 1.3359375, 0.1628418, -0.8442383, 0.70458984, 1.6982422, -0.34838867, -0.21655273, 1.3720703, -0.9375, 0.89453125, -1.0634766, -1.0693359, -0.3618164, -0.5678711, 0.31445312, -1.8300781, -0.74365234, 0.23046875, 0.65234375, -0.6616211, 0.30639648, 0.033966064, -2.1542969, -1.3417969, 1.0058594, 2.0078125, 0.13183594, 2.0371094, 0.8623047, 0.39160156, -1.9345703, 1.4824219, 0.5834961, 0.6616211, -0.5649414, -3.0292969, -0.48364258, 0.20092773, -0.03665161, 0.8666992, 3.8769531, 1.7148438, 1.5615234, -3.2421875, -4.3710938, -1.2587891, 0.55078125, 0.8515625, -1.2001953, -1.2880859, -0.22473145, -0.9091797, 2.2636719, 0.14746094, -0.64990234, 0.11645508, -0.12188721, 0.36083984, 0.37939453, 1.7705078, 0.66845703, 0.039215088, -0.5019531, 2.2539062, 1.6171875, 1.3125, 2.5117188, 0.68408203, -0.32104492, -3.4902344, 0.49658203, -1.4570312, 0.37939453, 0.921875, 0.67285156, 1.3085938, -0.15686035, -0.4909668, -4.6875, -0.07684326]}, "B07QYJKFQZ": {"id": "B07QYJKFQZ", "original": "Brand: thermomate\nName: Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White\nDescription: \ud83d\udce2 What are the benefits of using thermomate propane gas tankless water heater?

\u2705 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It's ideal for RV' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

\u2705 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

\u2705 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77\u00b0F rise in temperature. This means that if your tap water is at 59\u00b0F, it will instantly deliver 1.32 gallons per minute of hot water at 113\u00b0F.

\u2705 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 \"D\" cell batteries to ignite the electronic spark module.

\u2705 5. It's designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance\uff0cyou can take it anywhere to get instant hot water.


\ud83d\udcd6 Specifications

Max. Flow Rate: 1.32GPM

Related Gas Pressure: 0.4 PSI

Power Rating: 34,000 BTU/Hr

Activation Flow Rate: 0.44GPM

Water Pressure: 2.5 PSI ~ 110 PSI

Flue Type: LPG ( Liquid Propane Only )

Power Source: 2 \"D\" Cell Batteries ( Not Included )

Vent Pipe: No needed for outdoor use

\nFeatures: [2.5 PSI Water Pressure Startup]\u00a0Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV's and Boats.\n[Instant Hot Water On Demand]\u00a0Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving,\u00a0saving up to 50% on water heating costs.\u00a0\n[Multi Safety Protection]\u00a0Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 \u00b0F.\n[Compact Exquisite Design]\u00a0Compact and space-saving design with minimal noise output which is portable for outdoors.\u00a0\u00a0A great\u00a0partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool.\n[Easy to Install]\u00a0Equipped with 1/2\" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it's the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).\n", "embedding": [-1.4667969, 3.0839844, 2.3886719, 0.65527344, -0.7285156, -0.4519043, -0.80078125, -2.3144531, -0.0635376, 1.7880859, 1.1933594, -0.012954712, 0.2878418, -2.0078125, -0.20959473, -0.16259766, 0.96435547, 0.28442383, 0.17932129, 0.9370117, 2.8007812, 0.62353516, 2.1015625, -2.59375, 0.2841797, 0.25830078, 2.6074219, -3.1210938, -1.7382812, 0.6772461, 0.4140625, 0.2607422, -0.41137695, 2.5019531, -0.64941406, -1.4091797, -3.0546875, 1.6005859, -2.5234375, -0.2364502, -0.31054688, -1.9433594, 0.28881836, -0.20397949, -1.4814453, -1.7802734, 0.7392578, -0.21130371, -0.2915039, -0.74560547, -0.8808594, -0.19519043, -1.8896484, 1.1035156, -0.0047912598, -1.8896484, -1.3837891, -1.2021484, 2.7929688, 1.4785156, -0.62060547, -1.6826172, -4.0039062, 0.46044922, -0.73046875, 0.28100586, -0.26953125, -2.8378906, -0.54003906, 0.33276367, 3.4648438, -0.3972168, 0.3359375, 0.21057129, -0.06536865, -0.62109375, -4.234375, 0.3154297, 3.9160156, 0.6689453, -0.8779297, 2.734375, 1.203125, -1.4267578, -0.7373047, -0.26391602, -0.42285156, -0.76171875, 1.8525391, 1.9335938, -1.1347656, 4.546875, -1.4492188, -2.1738281, 0.33813477, -1.4599609, 2.65625, 1.5839844, 0.9160156, 0.5336914, -0.47583008, 0.52001953, 0.41064453, 0.064208984, -3.6328125, -1.2880859, 1.5546875, 1.8515625, -2.6972656, 0.3864746, -2.5351562, -0.35253906, 1.71875, -0.90966797, -1.7666016, -0.2692871, 2.4394531, -0.42651367, 4.7148438, -0.09844971, 2.7167969, -1.2324219, 2.5195312, -1.3720703, 1.1435547, -1.0146484, 0.18725586, -0.9760742, -1.0957031, -0.74658203, -0.6748047, -0.35595703, 1.8066406, 0.47729492, 0.3100586, -1.1152344, -1.4550781, -3.515625, -5.5078125, -0.24377441, -2.0683594, 2.5019531, 1.6083984, 1.1123047, -4.7070312, -0.640625, -1.09375, 0.54345703, -0.7207031, 0.8857422, 2.1933594, -3.34375, -0.74121094, -1.6650391, 1.2900391, 2.5996094, -1.5869141, -0.41333008, 2.5488281, 2.8359375, 0.9003906, 0.32714844, -2.359375, 1.5898438, 0.40405273, -1.4345703, 2.0078125, -0.9326172, 0.6279297, 0.64990234, -0.24902344, -0.7426758, 1.5488281, 0.19995117, 0.64941406, -3.2539062, 1.0859375, 1.6953125, 1.0996094, -0.80029297, -5.4921875, -0.4814453, -1.2109375, 0.11810303, -0.25927734, 0.10839844, -1.2724609, -1.1064453, 0.16357422, -0.6069336, -1.2578125, -0.1315918, 0.5073242, -1.4130859, 1.4111328, -2.9140625, -3.1992188, -0.3959961, 1.6279297, 0.82177734, 1.1503906, -0.6230469, -1.6855469, -0.9116211, -0.053131104, -3.3945312, 0.62841797, 0.124572754, -0.36547852, 2.0898438, 0.2536621, 0.39697266, 0.6464844, -0.005531311, -1.9208984, 0.6069336, 1.9482422, 2.3652344, 1.1132812, 1.4560547, -0.5878906, 1.0771484, 1.7158203, 1.6308594, 0.25830078, 1.8359375, 0.06561279, 0.17980957, -1.8544922, -2.796875, 3.2421875, -0.44873047, 0.85839844, -0.8198242, 0.24194336, 3.2910156, 0.6254883, 1.5683594, 0.31982422, -0.044067383, -0.38891602, -1.5898438, -0.66748047, -0.07110596, 0.030899048, 0.056854248, -0.43579102, -0.3930664, 1.2148438, 0.03866577, -0.04345703, -1.7236328, 1.1923828, -2.3359375, -3.6582031, -1.5732422, -0.031280518, 0.1427002, -0.1574707, -3.2988281, 1.3828125, 1.7402344, -0.7011719, 1.1845703, -0.96777344, -0.60595703, 2.3378906, 1.7441406, -2.5664062, 2.2597656, 1.1113281, 3.3242188, 1.3974609, -0.27124023, 1.2744141, 0.92529297, -0.98046875, 2.2871094, 1.1513672, 0.9003906, 1.1279297, -2.5214844, 0.5571289, -2.3183594, 1.3056641, 0.42016602, 1.4638672, 1.3837891, -1.2392578, -0.17016602, 3.453125, -0.4951172, -2.4765625, 1.3837891, -1.1015625, 1.9199219, 3.8964844, -1.0585938, 0.7553711, -0.4182129, 2.0175781, -0.07745361, -2.8476562, 1.0166016, 0.7270508, 0.051818848, -0.24194336, -0.7060547, 1.5585938, 1.2705078, 1.0703125, -2.3300781, -2.7089844, -0.30395508, -3.9355469, -0.3503418, 3.234375, -2.4960938, 0.14953613, 2.140625, -0.94921875, 0.2241211, 1.5283203, -3.8359375, 0.9790039, -1.0302734, -1.1074219, 1.4335938, -0.5019531, -0.7734375, 2.0703125, -1.2324219, 2.0957031, -2.3808594, -1.3007812, 0.4765625, 0.1352539, -2.6582031, 0.7426758, -0.7758789, -0.5410156, 1.3652344, 0.6113281, 1.1669922, 1.3994141, -1.6474609, -2.1660156, 0.2866211, -0.23925781, -3.3925781, 1.7578125, 0.41186523, -2.5722656, -3.9355469, 1.3339844, 1.4492188, -0.089904785, 1.1650391, -1.6210938, 0.51660156, -0.48339844, 0.9433594, -0.2680664, 0.091674805, 1.0166016, -2.1582031, 0.14892578, -2.9179688, 3.0664062, -0.93603516, 1.8857422, -2.9667969, -0.5083008, -0.7709961, -0.81103516, 0.90722656, 0.9658203, 1.6611328, 1.6445312, 2.2480469, -2.015625, -0.28857422, -1.4296875, -0.99658203, -0.83251953, 0.9628906, -2.8046875, -3.0996094, -0.37890625, -2.6015625, -0.48999023, -1.9326172, -1.4365234, 0.6616211, -1.7763672, -1.4316406, 0.50683594, 1.6464844, 0.24597168, 0.51660156, 0.69921875, -0.87646484, -1.7753906, -3.09375, -1.1972656, 0.33862305, 0.45703125, -0.1730957, -0.9902344, 0.34399414, 1.9853516, 3.4570312, 0.18811035, 0.38378906, 1.1005859, -4.4804688, -0.28955078, 2.1640625, 0.20532227, -0.0011224747, -0.5019531, -0.90283203, -1.484375, -1.3583984, 1.5244141, 0.6152344, 4.1210938, 0.018920898, -1.3359375, 1.7207031, 0.8276367, 2.3867188, 1.1503906, -0.14892578, 1.7988281, -1.6367188, -0.92285156, 3.3496094, 2.9140625, -3.9570312, -0.29882812, 2.1816406, 1.0703125, 3.4609375, 2.4726562, -1.8876953, 0.94628906, 1.9365234, 1.7226562, 2.9628906, -0.81884766, -2.3496094, -0.6040039, 0.72216797, 2.4453125, 1.3876953, -0.46411133, 0.25219727, -0.41308594, 1.3056641, 1.7958984, -3.6640625, -0.2479248, 0.5957031, 0.08258057, 2.1425781, 2.4394531, 0.12133789, 0.095947266, -2.6425781, 2.7988281, -0.6591797, 0.38134766, -0.5136719, 0.9277344, 1.5185547, 0.7939453, -0.53466797, -1.3154297, 0.4321289, -0.44213867, 2.0722656, 1.3574219, 0.68115234, 2.28125, -1.7558594, -3.0488281, -0.017410278, -0.8955078, 0.33520508, -0.52734375, 1.4677734, -0.18249512, -3.3632812, -0.7050781, -0.9667969, -3.265625, -0.8173828, 1.7441406, -1.4267578, -0.96972656, -1.3886719, -0.2166748, 1.4423828, 1.8886719, -1.4746094, -1.7490234, -2.2558594, -0.0947876, 3.4589844, 0.19482422, 1.6142578, 1.4101562, -2.578125, 0.24609375, -3.59375, 0.13745117, 1.7666016, -1.1787109, 0.3894043, 1.46875, -1.0732422, 0.13623047, -0.24377441, 1.8457031, -0.47192383, -0.29467773, 2.1582031, -2.4804688, 0.19677734, -2.6601562, -4.9140625, -0.7290039, -2.2089844, 0.24890137, 2.2089844, 0.87402344, 0.85839844, -1.2324219, 0.1977539, -2.8574219, -2.0136719, 0.051574707, 3.9824219, -2.2890625, 3.8320312, 2.5878906, -0.04425049, -1.71875, -2.7675781, -1.28125, 0.8413086, 0.4560547, -0.3071289, -0.019256592, 0.4741211, -0.9819336, -0.9448242, -2.0820312, 1.8457031, -1.1962891, 0.66552734, -0.5288086, -0.23999023, 2.515625, -0.8828125, 1.8652344, 0.5859375, 2.6132812, 1.2695312, -0.061309814, -0.8520508, 1.7978516, 0.4399414, -0.5966797, -3.9257812, -2.0253906, -2.2128906, 3.2285156, 0.8442383, -0.42797852, -0.15246582, -2.5527344, -1.6152344, 0.34765625, 1.1220703, 1.9267578, 1.8173828, -3.0429688, 0.99121094, 0.08514404, -4.25, -3.1894531, -0.6430664, -0.53271484, -2.1386719, 0.10803223, 0.41845703, -1.4599609, -1.6953125, -0.21765137, -1.2421875, 1.0410156, 2.2988281, 1.5800781, 1.1425781, -2.4042969, -1.1005859, -1.1933594, -1.2392578, -0.3840332, 0.7182617, 2.4179688, -0.1315918, 2.3144531, 1.1582031, -2.1972656, 1.7167969, 0.14501953, -1.1699219, 1.0126953, -1.6494141, -0.72509766, -1.6630859, -1.4726562, 1.7324219, -0.53222656, 4.109375, 0.45629883, 1.1513672, 0.3696289, -0.5463867, -0.60302734, 0.3779297, 0.48608398, 0.87060547, 0.6142578, 2.4609375, 1.3037109, 0.8676758, 0.60791016, 1.1494141, 2.2890625, -0.19494629, 0.7246094, -1.3232422, 1.8613281, -0.8564453, 0.88427734, 2.078125, 0.3190918, 0.4267578, 1.6171875, 2.7304688, 0.13745117, -0.3071289, 2.5214844, 0.7446289, 0.91552734, 0.5107422, -1.4228516, 2.96875, -1.6210938, -1.4863281, 0.16088867, 4.4140625, -0.44873047, 1.9892578, -0.83740234, -0.33203125, 0.7163086, -2.3222656, -3.5703125, -1.9052734, 1.7138672, 0.9086914, -1.3242188, -0.1463623, 1.4013672, 3.7363281, 3.5917969, -0.06976318, 1.7001953, 1.8779297, -0.38452148, -0.22192383, -0.4086914, -1.7578125, -1.7646484, 0.31445312, 0.40112305, -0.038116455, 0.47314453, 1.5371094, 0.040649414, -1.890625, -2.0351562, -1.8066406, 1.5009766, -3.1757812, -1.2607422, -0.0947876, 0.8671875, 1.7724609, -0.9140625, -2.3261719, -1.1162109, -0.3786621, 0.6923828, -0.2397461, 0.3215332, -0.98535156, -3.4980469, -4.8476562, -0.69970703, 0.38964844, 1.6259766, 0.06549072, -0.091552734, -1.0185547, -0.62646484, 1.1435547, 0.7729492, -0.85546875, 3.1777344, -0.37817383, 1.2802734, -0.31860352, 0.52490234, 0.40649414, 0.027648926, 1.7158203, -0.004306793, -1.0693359, -2.1875, -2.9101562, -2.3671875, -0.8461914, -0.5600586, 0.3569336, 0.6298828, -1.6328125, 2.3476562, -0.36157227, -2.3867188, 2.4765625, -1.0351562, -1.7255859, 2.7792969, -0.3984375, 0.8618164, -0.47436523, 0.74853516, -0.25878906, 0.9926758, 1.7568359, 0.3137207, 1.2695312, -0.31298828, 0.99560547, -0.41015625, -0.09692383, -0.26611328, -1.3691406, 1.296875, 0.3540039, 0.015686035, -0.24279785, -2.8574219, -1.4453125, 0.8144531, -2.140625, 0.32226562, 0.5957031, -0.074401855, -0.6923828, 0.6328125, 1.34375, 0.8305664, -0.2475586, -1.9326172, -0.2211914, -0.7192383, 2.6191406, -0.44555664, -1.5488281, -2.4003906, -4.0507812, 0.8730469, 0.87353516, 1.1875, 0.49438477, -1.1542969, 0.90771484, 0.06530762, 0.03250122, 3.1640625, 1.1582031, 1.0244141, -3.5390625, 3.1699219, 3.0859375, -0.93115234, -1.2851562, 0.32348633, 0.609375, -0.30566406, 1.8125, 2.6445312, -0.81591797, -0.40234375, 0.009147644, 1.2607422, 0.41479492, -2.4140625, 1.2314453, -2.0097656, -0.06439209, 0.87890625, -2.2988281, -1.3173828, 1.1054688, 1.0078125, -1.671875, 2.0078125, 1.9873047, -0.4699707, -0.095458984, 1.2509766, 0.62402344, -1.4414062, 0.8876953, 0.7753906, -0.90527344, 1.5458984, -1.7197266, 1.25, 1.6679688, 2.5605469, 0.64501953, 1.8105469, 0.5576172, 1.1289062, -0.47265625, 2.9609375, 3.9746094, -0.2980957, 0.7265625, 0.7836914, 2.8320312, 2.4003906, -0.85839844, 0.99072266, -0.33764648, 0.9111328, 0.3515625, -1.5136719, 0.07861328, 0.27368164, -1.5488281, -2.59375, 0.43652344, -0.39868164, -1.9785156, -1.1796875, -0.44604492, 0.88623047, -3.4238281, 2.0898438, -0.92041016, 0.16992188, -1.1162109, 0.18701172, 1.3984375, 0.4387207, 0.3881836, 0.26733398, -0.80371094, 0.55859375, -3.4238281, 2.9863281, -1.0888672, -1.6757812, 0.21972656, 3.4140625, 2.1113281, 2.1601562, -1.6259766, -0.2758789, 1.0371094, 0.515625, -0.5073242, -2.09375, -0.2631836, -1.9951172, 2.4042969, 3.1640625, -1.4882812, 1.9960938, -1.6669922, -0.3552246, -0.90283203, 1.2314453, -0.032226562, -3.265625, -0.99072266, -2.4414062, 0.67333984, -0.5605469, 0.27490234, -3.3320312, 1.5751953, 3.1503906, -2.4121094, 0.42529297, 2.4414062, -1.4160156, 2.4082031, -1.4208984, -0.061279297, 0.2607422, 0.83251953, 0.20288086, 0.15161133, 0.19995117, 0.45361328, -0.44140625, 0.15795898, 2.4121094, 1.2763672, -1.5498047, -0.8129883, 0.8652344, 0.5703125, 1.5136719, 0.36206055, -1.5126953, 2.0859375, -1.4384766, -3.1425781, -0.030715942, 0.5126953, 1.4238281, 0.09643555, -1.1845703, -1.4179688, 0.77978516, 0.11260986, 1.0107422, -3.2402344, -0.58203125, 2.1835938, 0.4272461, -1.3085938, -0.32055664, -1.7119141, 1.9423828, -0.31811523, 1.4951172, -1.9101562, 0.8461914, -1.8691406, -1.2021484, -0.17980957, -0.0725708, 1.4482422, -1.2265625, -0.9609375, 2.0664062, 3.171875, -1.5996094, 0.69384766, 0.24169922, -2.4414062, -0.0077590942, 0.9355469, 0.9448242, 0.52783203, -2.8339844, -2.5722656, -0.24804688, -0.6069336, 0.32788086, 2.4609375, 2.3574219, -0.24389648, 2.7070312, -1.3974609, -1.1728516, 0.61035156, -1.9013672, -0.43701172, 0.33154297, -0.3173828, 0.46777344, 1.6611328, 2.2441406, 0.57421875, -0.3154297, -0.90966797, 1.0439453, 0.6010742, 2.3183594, 1.8193359, 0.94091797, 0.12359619, -0.5751953, 2.8046875, 1.90625, -1.1367188, 1.3623047, 2.2734375, -0.35620117, -1.7324219, -1.2285156, -1.9677734, -2.0957031, 0.96484375, 0.066467285, 3.4609375, -1.0966797, -1.3701172, -3.8789062, -1.3300781]}, "B0874MTD5B": {"id": "B0874MTD5B", "original": "Brand: Gaier\nName: Gaier Barbecue Grill 8'x 5'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard\nDescription: Product Dimensions:
- Weight: 44.1lbs
- Overall size: 98.4 x 59.1 x 106.3 inches
- Material: Metal, Polyester
- Cover Color: Brown/Coffee
- Frame Color: Black\nFeatures: BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDurable steel frame with powder-coated finish is rust-resistant\nVented, double-tiered canopy offers smoke ventilation and stability against windy conditions\nShelves on both sides provide space for placing cutleries or grilling accessories\nGaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "embedding": [-0.7114258, 2.3984375, 1.4052734, -3.2910156, 0.7895508, 0.9526367, 0.9926758, -1.6865234, 1.2685547, 2.6699219, 0.1505127, -1.1982422, 0.07940674, -3.3964844, 0.7734375, 1.6132812, 2.0234375, 1.2333984, 2.2578125, -0.62158203, 0.9609375, 0.04006958, -0.7236328, 1.4511719, 0.82958984, 0.9584961, 3.5214844, -2.5664062, 0.85791016, -0.48120117, 1.7314453, 0.60302734, 0.921875, 1.3701172, -1.8857422, -2.0019531, -0.9082031, 0.71240234, 0.76660156, -1.5048828, -0.52197266, -2.7597656, 1.8828125, 1.4785156, -0.5205078, 1.9667969, -1.4765625, 1.2451172, 0.23413086, -1.9755859, 1.0009766, 0.62158203, 2.4882812, 0.43896484, -0.5253906, -0.9111328, -1.3779297, -1.8935547, 2.0078125, -0.7626953, -1.3017578, -1.8896484, -0.30249023, 3.0625, -1.359375, -1.4482422, -0.13269043, -1.2070312, 1.1044922, -0.07366943, 1.5390625, -2.0644531, -1.7998047, -0.7402344, 0.46728516, -0.7285156, -1.2216797, 1.4179688, 1.6679688, 0.21813965, -0.49414062, 2.1425781, 3.0917969, -1.6425781, 1.5585938, -2.1523438, -2.578125, -1.4443359, 1.5068359, -1.6738281, -0.12756348, 1.4755859, -1.0136719, -2.3320312, 0.29467773, -2.6835938, 2.2695312, 0.5185547, -0.6582031, 3.3417969, -0.5053711, -0.72558594, 0.80322266, 0.78564453, -1.1162109, -1.8027344, 2.5253906, -1.9570312, -0.05770874, -0.2064209, -0.83935547, 1.03125, -1.7158203, -0.2364502, 0.5136719, -0.20288086, -0.5209961, 3.2285156, 0.89208984, 0.9941406, 3.1796875, 2.9453125, 0.7651367, -3.21875, 0.24108887, -2.7070312, 1.0117188, 1.5722656, 2.7832031, -0.80810547, 0.20947266, -2.5351562, -0.5991211, 1.7412109, -2.5742188, -0.85839844, -2.2695312, -0.8310547, -4.8671875, 2.4023438, -1.5878906, 0.049346924, 2.6796875, -0.23376465, -2.5878906, -0.24072266, -0.97216797, 3.6972656, -0.35424805, -2.6699219, 1.5703125, -2.671875, -1.3574219, 1.7333984, 0.62939453, -0.96777344, 0.7475586, -1.1240234, 2.8769531, 0.0036392212, 2.7441406, -2.4921875, -1.7119141, 0.6230469, 0.7714844, -0.8886719, 1.0214844, 3.5722656, -1.3076172, 1.4931641, 2.4355469, -1.3603516, 1.1611328, -0.9199219, 1.0673828, -1.8017578, -1.7197266, 1.5058594, 0.71875, -0.80566406, -0.2602539, -3.3671875, 0.6665039, 1.0888672, -1.21875, -0.38012695, -1.65625, 0.70751953, -0.47143555, 0.17785645, 0.08691406, -0.18261719, -0.44091797, 0.87841797, -3.3730469, -0.18139648, -1.6464844, -0.5073242, -1.7587891, 0.64697266, 0.40283203, 0.70947266, -1.4619141, 1.8212891, -1.3720703, -0.36254883, -2.1992188, 0.4152832, -0.3330078, 0.29492188, 1.3183594, -0.4963379, 1.6669922, 1.9287109, 0.59375, 1.4570312, 0.49169922, 0.35864258, 1.0625, 1.8974609, -1.296875, -0.6147461, -1.5175781, 3.5351562, -2.0546875, 1.0380859, 1.2958984, 0.51708984, -0.4230957, -0.46435547, 1.0498047, -0.43115234, 0.85009766, 0.35083008, 0.041748047, 0.8881836, -0.113708496, -1.1816406, -0.53027344, -1.140625, 1.3251953, 0.70214844, -2.2421875, -0.36523438, -0.52197266, -0.033111572, -0.57421875, 1.9052734, -0.6694336, -2.1484375, -0.5644531, 2.09375, 0.1772461, 0.79296875, 0.6323242, 2.3027344, 0.13964844, 1.6660156, -1.5722656, -2.1972656, -1.4736328, -0.8769531, 1.7373047, 0.6220703, 1.0683594, 0.002105713, -1.578125, 1.2958984, -2.0703125, 0.07727051, 1.2246094, 0.53759766, 0.5786133, -1.1015625, 1.6669922, -0.8017578, -0.63916016, -1.4609375, -0.7944336, -1.9433594, 0.23828125, 1.6367188, 1.8076172, -0.6357422, -0.9785156, -1.8183594, -1.6513672, -1.3671875, 0.29052734, 1.1435547, 1.7412109, -0.72753906, -1.2822266, 4.5351562, -1.2099609, -0.034820557, 0.62402344, -0.76220703, -1.5537109, 0.6635742, 0.56152344, 1.1767578, 0.5444336, -1.8867188, -1.1328125, -1.5957031, 1.7783203, -3.625, -0.32543945, 1.28125, 1.1738281, 0.94921875, -0.43286133, -0.8466797, -0.578125, -1.4755859, 2.9980469, -2.2324219, 0.45043945, 3.484375, -0.019348145, 1.3613281, -1.140625, -1.2070312, -2.203125, 1.1044922, -0.9038086, 0.4020996, 0.62060547, -1.2324219, 0.90185547, -1.6533203, 0.47021484, -2.3828125, -0.55810547, -2.2460938, 0.33935547, -0.81347656, -3.140625, -0.8876953, 0.18701172, -1.2324219, -3.3320312, 0.8647461, -0.6503906, -4.2070312, 0.3022461, 2.8046875, -0.23425293, 2.9257812, -0.4753418, 0.85791016, -0.022323608, -1.9960938, -0.37182617, 1.6435547, 1.7197266, 1.9345703, -2.4101562, 0.8208008, -1.1923828, 1.7636719, -0.28735352, -0.43041992, -0.06567383, 0.26708984, -0.27441406, -3.203125, 1.046875, -0.123046875, 0.50439453, 0.20007324, -0.55371094, -2.4335938, -2.0273438, 1.0058594, -1.4609375, 5.5390625, 1.0996094, 0.7055664, -1.6904297, -1.1855469, 0.44506836, -1.03125, -2.5078125, -1.203125, -1.0273438, -0.006500244, -1.4677734, -2.2578125, -0.051483154, -0.24035645, 0.21520996, -0.28076172, 0.50683594, -0.13635254, 0.26708984, -2.1601562, -0.88427734, -0.99560547, 1.6425781, 0.08648682, -0.56396484, -2.546875, -1.0244141, -0.5444336, -0.7734375, -2.0664062, 3.1757812, -0.5957031, 0.105651855, 2.046875, -0.18701172, 2.6015625, -0.85498047, -3.5527344, 3.1328125, 3.8710938, 0.5776367, -1.7695312, 0.17480469, -2.6484375, -3.5878906, 0.5336914, 1.5751953, 2.90625, 2.6484375, 0.5625, 1.1074219, 0.056671143, 0.60498047, -1.7304688, -2.3886719, 0.8208008, 3.1445312, 0.29248047, -2.5273438, -0.09692383, 0.43310547, -2.234375, 0.0748291, 1.6777344, -0.09729004, 0.8359375, 0.056365967, 1.3027344, 1.2333984, 0.7089844, 3.1132812, -1.8027344, 3.6933594, 1.1943359, -1.5527344, 1.7373047, -2.0488281, 1.9238281, 0.3684082, 1.0488281, 1.6816406, 2.3554688, -0.25463867, -3.1015625, -0.19873047, 2.0488281, 1.7158203, -2.3085938, 2.1367188, -1.1474609, 0.14990234, 0.66552734, -2.140625, 1.8408203, -0.6767578, -0.8623047, 2.0976562, -0.4921875, 0.59375, 1.2802734, -2.4492188, -0.033203125, -2.1074219, -1.2119141, -1.8916016, -1.5068359, 0.28710938, -4.2617188, -5.0742188, -1.6904297, 2.2617188, 0.48583984, -2.7949219, -0.71728516, 2.1484375, 1.2832031, 1.2539062, -0.31274414, 1.0244141, -2.3554688, 0.76660156, 0.13891602, -0.7734375, 2.0976562, -2.4628906, 2.9589844, 0.9892578, -0.84521484, -3.5488281, 0.24279785, -2.1308594, 0.13830566, 0.68603516, 1.28125, 0.43286133, -4.0898438, -0.12866211, -1.9228516, -0.7192383, 5.0742188, -0.2919922, -1.3789062, 0.86621094, 1.5683594, 1.2910156, -0.6166992, 3.3984375, -0.12249756, -0.37402344, 2.6308594, -0.8779297, 0.22229004, -1.7617188, -5.4101562, -0.15881348, -1.9414062, 0.3190918, 3.2226562, -0.32226562, -0.21520996, 1.4912109, -1.7617188, -1.0185547, -1.2539062, -2.5644531, 0.18823242, -3.2050781, 1.2324219, -0.16638184, -1.1601562, -1.8769531, -3.3964844, -0.6508789, 0.33129883, 1.8515625, 2.5, 0.17675781, 0.7216797, 0.24182129, -0.7319336, 0.0037822723, 2.2011719, -1.2705078, -0.9848633, 0.83203125, 0.3359375, 2.2929688, -0.8276367, -0.87597656, 1.4433594, 1.9287109, 1.3007812, -1.7519531, -2.2929688, -0.44750977, 2.9472656, -0.4658203, -2.5507812, -0.9584961, 0.32861328, -0.35058594, -0.5258789, -2.1328125, 1.0664062, -2.4765625, -0.062927246, -0.68847656, 3.1796875, 0.40063477, -0.875, -4.3398438, -0.19360352, 0.38208008, 0.57958984, -1.9736328, -0.6411133, -0.051818848, 1.2685547, -0.7607422, -2.0527344, -0.15930176, 0.050048828, 0.9736328, -1.5234375, 1.0595703, 1.8583984, 2.3710938, 3.7519531, -2.8691406, 0.2434082, 2.1621094, 0.23425293, -0.7939453, 2.9785156, -1.3134766, 1.296875, 1.5195312, 0.17407227, -2.3847656, -1.9873047, 0.8432617, -2.2773438, -1.3837891, -1.0615234, 2.3183594, 1.1308594, -0.62158203, 1.2265625, 0.5385742, 3.4492188, -2.8945312, -2.109375, 0.70947266, 2.2480469, -2.984375, 0.69189453, 1.5615234, 1.7929688, 1, 0.62158203, 0.29125977, -0.22253418, 0.47094727, -0.35473633, 1.609375, -2.7617188, -1.1787109, 1.5644531, -0.12512207, 0.3996582, -1.9541016, 2.4882812, 3.2539062, -0.9111328, 1.7314453, 1.3925781, -1.7744141, 1.5859375, 1.4121094, -0.32910156, 0.107421875, -0.7441406, -3.0917969, 1.9033203, -0.34643555, -3.5136719, -0.4099121, -0.5932617, -1.7363281, 3.6660156, 0.48266602, -1.4033203, 2.4824219, -1.1015625, 0.5541992, -0.1352539, -1.3349609, 1.0878906, 0.1907959, -0.8408203, -1.8515625, 0.29858398, 3.7382812, -0.9091797, -0.02407837, 1.4980469, 1.4287109, -0.3095703, -1.5078125, -0.25512695, -2.5410156, -3.7421875, 3.0742188, 2.828125, 1.5244141, 1.4404297, 0.85009766, -4.0820312, -1.1679688, -2.453125, 3.7265625, -1.1298828, -0.12054443, 1.7265625, -0.8881836, 0.42944336, -2.34375, 1.5947266, 0.049102783, 0.72314453, 1.7958984, 1.3994141, -1.8974609, -1.0566406, -2.8203125, -3.6894531, -1.8798828, 0.45385742, -0.084228516, -0.16638184, 1.7216797, -2.21875, -2.4472656, -0.27954102, 0.67822266, 1.0625, -0.91308594, 0.9404297, 0.2919922, -1.7070312, -1.6220703, 0.2232666, -0.375, -1.2568359, 2.515625, -0.6430664, -2.5917969, -1.3076172, 0.3154297, -1.7753906, 0.4453125, 1.4853516, -0.12420654, 1.4550781, 1.6650391, 1.3261719, -1.0878906, 0.8486328, 0.73046875, 0.34155273, 1.6689453, 0.2232666, 1.8037109, -1.8564453, -1.0146484, -0.17077637, -2.8964844, -0.5097656, 1.1855469, -0.66015625, 1.2558594, 2.0722656, 0.1227417, -0.25732422, 1.4121094, 1.0761719, 2.796875, 1.1708984, -2.2636719, 2.7480469, -1.4160156, -2.5390625, -0.71728516, -2.078125, -3.1914062, -0.08325195, 0.93066406, 1.2617188, 0.97216797, 2.1015625, 1.3017578, 1.46875, -1.9101562, 0.66308594, -0.8515625, 0.84277344, 0.04864502, -1.1992188, -2.9453125, -4.0703125, 0.07836914, 2.2167969, 0.14978027, -0.2142334, -1.6542969, -1.9804688, -1.4667969, -0.07385254, -0.5605469, 1.4892578, 2.2070312, -2.2578125, 3.8691406, 1.359375, -0.048034668, -0.46533203, -0.13537598, 1.3730469, -0.7084961, 3.0917969, -0.63720703, -0.22753906, 1.4511719, -1.2285156, -0.04421997, -0.04574585, -2.0742188, 0.6376953, -1.7382812, 0.35351562, -0.95214844, -1.6435547, -4.0390625, 2.4785156, -0.95947266, -0.25927734, -0.06555176, 2.7226562, -1.1816406, 2.6777344, 1.71875, 2.4257812, -2.1875, -1.2421875, -0.20922852, -0.5839844, 2.2460938, -0.6220703, 0.6542969, 1.1259766, 0.3984375, -0.26904297, 2.7050781, 0.578125, 1.3662109, 3.0273438, 0.13354492, 1.6132812, 1.40625, 2.0683594, 1.0078125, 2.3066406, 1.5712891, -2.09375, 0.6513672, 3.3613281, 3.9335938, 0.9038086, 0.40551758, 0.45458984, 1.3652344, -1.3154297, 0.875, -1.1972656, 1.0839844, -4.5273438, 1.6083984, 0.1673584, 1.2646484, 0.42749023, 0.34765625, -0.43408203, -0.19616699, -3.9765625, -0.92626953, 1.8447266, 0.7207031, -0.4963379, -0.60791016, 0.03451538, 0.72216797, -2.6113281, -0.003353119, 0.1595459, -0.8227539, -1.9443359, 3.4316406, 3.1933594, 0.73779297, 0.39697266, 2.1171875, 1.21875, 2.0566406, 1.7607422, 0.45507812, 0.8388672, -0.3552246, 0.82177734, 0.046081543, -0.24414062, -1.7880859, -0.93652344, 1.171875, -1.8994141, 0.4387207, 0.6665039, 0.017089844, 2.4433594, -0.082092285, 0.6904297, 1.0820312, 2.2207031, -1.2607422, -0.4309082, -2.5078125, -2.8554688, -0.6113281, 0.61279297, 0.41992188, 3.4238281, 0.0993042, -1.9042969, 0.70458984, 1.9511719, -0.10424805, -0.36523438, 0.1538086, -0.47216797, 1.2480469, -1.5888672, 1.5664062, 0.13171387, -0.47753906, -0.3779297, -0.58203125, -0.5654297, -0.15136719, 2.8710938, -0.44580078, -0.61328125, 0.42163086, 0.53515625, -0.35620117, -4.1835938, -1.5078125, 0.1361084, 0.8071289, -2.4609375, -1.7177734, 0.16003418, 0.14953613, 1.0898438, 0.0713501, 1.0341797, -0.3984375, -0.51123047, 1.546875, 0.085876465, 1.8613281, -0.40649414, 0.70947266, -1.640625, 0.2541504, 0.82714844, 1.0800781, 1.5585938, -1.3447266, 0.5888672, 1.3955078, 1.2636719, 1.9414062, 0.75, -0.6118164, -2.0976562, -0.95751953, -0.01626587, 1.3828125, 1.4960938, 1.0214844, -1.7158203, -1.3603516, -2.5039062, 0.87060547, -1.2226562, -0.7294922, 1.0507812, 3.7011719, 2.5078125, 0.30078125, -2.3730469, -1.9101562, 0.9160156, -0.81347656, 1.3867188, 0.95947266, -2.7402344, -1.0458984, 0.7504883, 3.5488281, -1.3349609, -0.95214844, 1.0878906, -1.7431641, 2.1015625, -1.8798828, 1.2041016, 1.8994141, -1.7421875, 1.6132812, 2.1015625, 3.5800781, -0.89160156, 1.1201172, 0.9423828, 0.4033203, -3.1425781, 2.6875, -0.453125, 2.9902344, 0.5751953, 1.0556641, 0.6123047, -1.1191406, 0.45361328, -0.75878906, -1.7421875]}, "B085J1RSWD": {"id": "B085J1RSWD", "original": "Brand: Dometic\nName: Dometic 50216 RV 2-Burner Propane Cooktop\nDescription: The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It\u2019s the ideal cooking companion, wherever you are!\nFeatures: \n", "embedding": [-2.2714844, 0.5048828, 1.7460938, 0.36621094, -1.0595703, -0.22009277, -0.087646484, -0.15478516, -1.5712891, 3.7617188, 2.3417969, 1.3359375, 0.36645508, -1.0419922, -1.4824219, 0.18017578, -0.31567383, -0.5854492, 0.9213867, -0.7182617, 2.0117188, -0.31445312, -0.31689453, 0.25, 0.1463623, 0.077697754, 2.9355469, -4.2578125, -1.6152344, -1.0283203, 1.9140625, 1.0429688, 1.796875, 2.0664062, -1.9404297, -0.296875, -1.5683594, 0.5932617, -3.5546875, 0.6352539, -1.8447266, 0.5566406, 0.7348633, 0.037475586, -2.9589844, -1.1728516, -0.13208008, -1.0263672, -1.859375, 0.31152344, 2.4511719, 1.4902344, 0.4802246, 1.1191406, -2.5175781, 1.546875, -0.45996094, -2.0429688, 1.9443359, 1.3759766, -0.7216797, 1.4912109, -2.8808594, 1.0214844, -0.9658203, 0.40600586, -0.62060547, 0.9243164, 0.95947266, -2.0214844, 3, 0.065979004, -3.0703125, -0.0440979, 0.2849121, -2.8085938, -2.8984375, 0.5932617, 2.6816406, -0.4008789, -0.6821289, 1.2226562, 1.2666016, -1.3066406, 1.7587891, -0.9145508, 1.1220703, -0.17199707, 2.546875, 1.5605469, -2.4277344, 2.1953125, -2.4941406, -2.0117188, 2.4257812, -0.30517578, 1.0595703, 1.1708984, -1.2294922, 1.5595703, -2.8867188, 0.8457031, 0.24169922, -1.3671875, -3.6621094, -0.8286133, 0.29736328, -0.9375, -2.9355469, -0.15258789, -3.1621094, 0.8979492, 0.8227539, -1.2744141, 0.89697266, 0.7324219, -0.40625, 0.8701172, 1.4931641, 0.9589844, 3.2675781, -1.1279297, 1.2949219, -1.421875, 2.5605469, 2.0605469, -1.2841797, -0.30273438, 3.0195312, -1.6708984, -1.1044922, -0.8828125, 1.8828125, -1.1787109, -1.8486328, -2.1640625, -3.1640625, -1.9179688, -4.1992188, -0.9370117, -2.1113281, 0.066589355, 1.2353516, 0.56884766, -2.6542969, -0.50439453, -0.21875, 1.4199219, 1.234375, -0.8300781, 0.61865234, -2.0976562, -0.9008789, -3.0605469, 3.4140625, -0.09057617, -2.4960938, 0.017807007, 3.7734375, 1.2558594, -0.07867432, -4.4140625, -0.78027344, 2.7363281, 0.21069336, 0.08746338, 0.44433594, 2.6230469, 1.015625, 1.7070312, -1.4296875, -1.7949219, 0.55908203, -1.9277344, -0.39086914, -1.0234375, -1.1210938, 2.7421875, 1.2226562, -0.9848633, -3.9296875, -2.0878906, -0.12310791, 2.4101562, -0.48706055, -1.7617188, 1.4257812, 0.64697266, 1.3662109, -2.5039062, -1.5078125, 0.6503906, 1.0869141, -0.6557617, 0.60302734, -1.0058594, -2.9121094, -2.6035156, 0.19885254, 0.9082031, 0.6767578, -0.47680664, -1.6484375, 0.7998047, -1.7783203, -0.51708984, 0.32495117, -0.91845703, 2.0527344, 2.0097656, 2.4414062, -2.59375, 3.4277344, -1.8603516, -0.6567383, 0.025512695, -0.32348633, 2.6835938, 0.41577148, 1.7675781, -0.8666992, -1.9169922, 2.1914062, 2.2285156, -2.21875, 1.5566406, 1, -0.35961914, -1.7197266, -0.7480469, 1.8486328, 0.83496094, -1.2441406, 0.63964844, -2.0117188, 1.9199219, 1.9550781, -1.7763672, 0.19689941, -0.89990234, 1.5869141, -1.390625, 0.96728516, 1.4707031, 0.54785156, 0.8720703, -1.8154297, 2.3320312, 1.1591797, 2.1132812, -2.6503906, -1.8164062, 0.71240234, -2.4492188, -2.6816406, -1.6699219, -0.13806152, -0.90722656, -0.6875, -3.0410156, 0.9375, 1.0830078, -1.5888672, -0.3076172, -0.7504883, 1.640625, 3.9882812, 0.81347656, -3.8574219, -0.55371094, 1.5605469, 2.2675781, 2.2714844, 1.6240234, 0.96484375, 0.86572266, -1.9882812, 2.046875, 1.0683594, 3.5371094, 2.6992188, -0.060913086, 3.0078125, -0.48583984, -0.3786621, 2.0898438, 1.9873047, 1.3095703, -1.3408203, -0.27734375, 3.7304688, -1.6376953, -3.9511719, 1.7910156, -2.5878906, 3.28125, 1.1992188, -0.29516602, 0.0025920868, -0.4404297, -1.4814453, 1.0244141, -0.4038086, 2.203125, -1.5566406, -1.0322266, -0.9199219, 0.5805664, 1.2197266, 0.39697266, 2.0078125, -0.6567383, -3.3671875, -1.9042969, -1.0742188, -0.45898438, 4.6015625, -1.1582031, 1.5917969, 0.6616211, 0.98291016, 0.30810547, -1.8085938, -1.8046875, 1.3193359, -0.61083984, 0.32910156, -0.55371094, 1.5068359, -1.234375, 0.26391602, -0.57958984, 2.2128906, -0.78515625, -1.828125, 1.4121094, -0.7783203, -4.2773438, 0.42822266, 0.85595703, 0.25024414, 2.1660156, -1.9121094, 0.39770508, -1.2197266, -3.0722656, -2.1835938, -1.4335938, -2.0078125, -3.59375, 1.2792969, 0.39257812, -1.0039062, -4.3671875, 0.79052734, 0.49243164, -1.2216797, -0.05102539, -1.8037109, 1.1679688, -0.55322266, -0.6220703, 1.0595703, 0.66503906, -0.74560547, -2.359375, -0.9428711, -3.7675781, 1.3496094, -0.56591797, 0.73339844, -0.36401367, 0.4934082, -1.9824219, -0.040893555, 1.0283203, -1.3056641, 2.6933594, -0.20275879, -0.07537842, 2.3359375, 0.28979492, 1.2792969, -0.5810547, -4.5585938, -0.39160156, 0.33081055, -2.5117188, -4.3085938, -3.4921875, 0.93847656, -1.8066406, 2.0214844, 0.41967773, -0.36132812, 0.7729492, 1.3154297, -0.07940674, -0.26416016, 3.21875, -0.045166016, -2.7636719, 0.09301758, -0.21923828, -0.06137085, -0.65771484, -1.2792969, 0.58447266, 2.1816406, -0.0029945374, 1.2050781, -0.03955078, -2.1503906, -0.7006836, -0.71875, -2.9160156, 0.7446289, -0.68652344, -0.122558594, 4.0898438, -1.5195312, -1.046875, -3.5078125, -1.1484375, 2.28125, 0.3161621, 4.671875, -0.44262695, -0.5239258, 1.2109375, 2.2460938, 0.3239746, -0.9736328, -0.10656738, 1.2958984, -3.6738281, -2.4570312, 0.78759766, -0.062683105, -0.6542969, -0.7529297, 1.3515625, -0.29296875, 3.2890625, 1.5478516, -1.5429688, -0.7133789, -0.8623047, 1.0966797, 3.1816406, -0.8598633, 1.1865234, -2.2324219, -0.19750977, 2.8535156, 1.1210938, -0.12902832, 3.3867188, 1.0390625, 2.0039062, 3.09375, -2.6367188, -0.54248047, 1.4443359, -0.8334961, -0.6660156, 4.1914062, -0.44018555, 1.5546875, -0.10961914, 0.7871094, -0.7338867, -2.5546875, 1.3242188, 1.6982422, 2.3808594, 0.25390625, -0.296875, 0.29492188, 2.5371094, -0.4621582, 2.5703125, 0.25805664, 0.029296875, 2.3730469, -0.7426758, 0.121154785, -3.3457031, 1.7304688, -0.47045898, -0.018432617, 0.33325195, 1.9794922, -2.3320312, -1.6464844, -0.52783203, 1.6279297, -1.375, 0.95947266, 1.0830078, -0.62060547, -1.3925781, 0.53027344, 0.11090088, 1.5097656, -1.4707031, 0.71972656, -0.5566406, 0.5546875, -0.0030155182, 0.019958496, 4, 1.4033203, -0.40161133, -0.55566406, -3.4570312, -0.52734375, -1.7568359, -1.2539062, -0.44067383, 1.0263672, -0.11657715, 0.6435547, -0.27929688, 3.4492188, -1.1806641, 0.07104492, 1.2304688, -0.8769531, -0.19787598, -2.4941406, -4.6367188, 1.9228516, 0.41748047, 0.4020996, 1.9521484, -1.5996094, 0.3017578, 0.42895508, 0.82666016, -3.109375, -1.8896484, -1.5019531, 1.265625, -2.7910156, -0.31567383, 2.6132812, -1.453125, -1.8574219, 0.27075195, -1.6699219, 1.6259766, 1.2392578, 1.4960938, -1.9208984, 0.7792969, 0.09320068, 0.6503906, -0.58203125, 0.22924805, 2.1191406, 0.40185547, -0.081848145, -3.3554688, 1.5380859, -2.9628906, -1.640625, -0.054504395, 2.0644531, 2.1738281, -0.31469727, 0.68847656, 0.7734375, -0.3935547, 0.20275879, -3.6757812, -1.2617188, 1.5625, -0.72265625, 0.5488281, 0.6333008, -0.34765625, -1.5927734, -0.25561523, 2.234375, -0.79052734, 2.2988281, 0.9770508, 0.6064453, 0.5253906, 0.18786621, -3.5039062, -1.3066406, 1.0429688, -0.099121094, -2.1289062, -0.045806885, 0.2006836, 0.8227539, -0.42578125, -2.7851562, -2.8066406, 1.5791016, 3.9804688, 0.14990234, 2.8242188, -1.3144531, -2.4960938, 0.22741699, -0.099975586, 0.5078125, 0.5449219, -0.6425781, 2.9414062, 1.4931641, 0.91064453, -0.84814453, 0.6772461, 1.3056641, -1.8300781, -0.2866211, 0.3491211, 0.77197266, 0.046844482, -1.3183594, 3.7441406, 0.46362305, 1.4130859, -2.4511719, 0.74609375, -1.4033203, 3.0332031, -0.35424805, 0.74365234, 1.4824219, -0.24121094, -0.43798828, -0.43725586, 1.6357422, -1.9833984, 0.60009766, 0.23120117, 3.1269531, 1.5322266, 0.42871094, 3.0957031, 0.67285156, -1.1689453, -0.2939453, 1.4628906, 2.7460938, -0.6826172, 2.9609375, 1.3837891, -2.9882812, 2.0644531, -0.5102539, -0.9033203, -0.85546875, -0.56103516, -0.9897461, -0.44506836, 0.13293457, -1.7998047, 1.1152344, 3.1035156, -1.25, 0.3857422, -1.4794922, -0.84375, -0.95996094, -3.2675781, -1.8691406, -0.030975342, -0.38110352, -1.7050781, -2.4941406, -1.8466797, 1.9814453, 0.48291016, 0.34521484, -1.1806641, -1.328125, 1.7792969, 0.17553711, 0.021072388, -0.46240234, -0.82910156, -2.34375, 1.9482422, 2.7617188, 0.7636719, 1.9736328, 3.0332031, 0.46289062, -0.88916016, 0.007156372, -2.3261719, 2.2011719, -2.25, 0.14819336, 1.7373047, -2.453125, -1.8291016, -1.6162109, -0.32739258, -1.3564453, 2.4296875, -0.05834961, -1.5830078, -0.80078125, 2.921875, -0.44799805, -2.7988281, 0.0345459, 1.2148438, -0.33691406, -0.7104492, 0.5, -1.3046875, -0.4091797, -2.265625, -0.09118652, -2.5839844, 0.123413086, -1.6582031, 0.2130127, -1.4667969, 1.4501953, 1.3876953, -0.47192383, 1.4033203, -1.2890625, -0.29882812, -3.921875, -0.7729492, 2.7148438, 1.2373047, 0.9916992, 2.6308594, -0.20751953, 1.3583984, 1.1376953, -1.4384766, -1.1308594, 1.3320312, -0.26611328, 0.8647461, -0.62060547, -0.9433594, 0.20080566, 0.34960938, 0.5332031, 0.1517334, 1.7919922, 0.31054688, -0.80810547, 0.98095703, -0.25317383, -0.025558472, 0.36450195, -1.8691406, -0.8901367, 0.10473633, 1.3935547, -0.2763672, -0.030014038, 0.4580078, -3.4609375, -1.1416016, -1.9160156, -2.6132812, -0.1463623, -0.19787598, 1.1259766, 0.34399414, -0.09466553, 0.7504883, 0.71972656, -1.3037109, -0.055023193, 0.76953125, -0.07366943, 3.7011719, 2.6035156, -1.2304688, 0.56396484, -1.1552734, 1.7353516, 1.1904297, 1.9580078, 0.40161133, 0.43969727, -1.5332031, 1.3505859, -0.24121094, 2.4707031, 2.3808594, -0.7060547, -0.38623047, -0.3095703, 2.7324219, -1.7753906, -0.3696289, 0.8442383, -1.4160156, -0.119018555, 5.3867188, 0.85791016, -2.28125, 2.1972656, -0.91064453, -0.5527344, -2.1699219, -1.2539062, 0.08856201, -1.7607422, -2.3945312, -0.16186523, -0.14477539, -2.7792969, 2.8867188, 0.9448242, 0.25830078, -0.10272217, 1.4785156, 0.53222656, 1.2949219, 2.2929688, 1.6552734, 0.42822266, 1.3837891, 0.46484375, 1.1787109, 1.8242188, 0.21240234, 1.0166016, -0.93603516, -0.013664246, -2.0585938, 2.0742188, -1.4082031, 1.4101562, 1.3232422, 1.3564453, 2.4394531, 1.1933594, 2.4707031, 0.8125, 2.1132812, 0.9511719, 0.7241211, -0.20874023, 0.7114258, -0.26586914, -1.25, -1.3574219, 0.39208984, -1.4101562, -1.6181641, -1.453125, -0.59521484, 0.86279297, -2.8457031, 0.118896484, 0.110839844, 1.3486328, -1.3681641, -0.6323242, 0.7050781, 0.84228516, -1.3183594, 1.0361328, 1.7998047, -0.7817383, 0.1977539, -0.7583008, -0.9868164, 2.3027344, -4.140625, 0.5102539, 0.6098633, 1.5341797, 1.5605469, 1.4228516, 1.1757812, 0.30981445, 0.068237305, 2.5761719, 0.43798828, 1.2851562, 1.1445312, -1.1064453, 0.011764526, -0.65722656, 3.4335938, 1.0849609, 0.5498047, 1.9794922, -0.42578125, -1.1015625, -2.8769531, 1.4169922, 2.9394531, 1.1152344, 0.46923828, -3.7558594, 3.0546875, -1.5478516, 0.119628906, -2.1835938, 1.5517578, -0.7783203, -1.8652344, -0.90478516, 0.9995117, 0.4321289, 2.4277344, 0.79052734, -2.1972656, 2.4355469, -0.5629883, 1.640625, 2.109375, 0.1005249, -0.83447266, 0.8959961, -0.16870117, 2.2617188, 0.060516357, -2.53125, -1.3837891, 2.7460938, 1.5566406, -0.7285156, -0.3317871, -4.296875, 1.2285156, -1.1513672, -1.4882812, -1.7207031, -2.6464844, 0.39892578, -0.07244873, -2.2265625, 0.70703125, -1.1943359, 0.42163086, 2.4824219, -2.2226562, -0.39697266, 1.2167969, -1.0185547, 2.7675781, 2.40625, -0.40820312, 1.8378906, -1.5273438, 0.59814453, -0.18408203, -3.0292969, 1.9462891, 0.3798828, 0.7011719, -0.6230469, -1.6699219, -1.4179688, -2.3964844, 2.4257812, 2.3144531, 0.3708496, -0.6928711, -0.19934082, -0.85302734, -0.2902832, 4.796875, -0.7416992, 0.5605469, -1.9169922, -2.1074219, -1.4072266, 0.14611816, -0.8378906, 1.1015625, 2.8066406, 1.1894531, 0.4104004, -0.29614258, -2.8867188, -1.6972656, -2.4140625, 2.2011719, 0.5756836, -0.15100098, -0.016906738, 0.54003906, 2.3945312, -1.2167969, -0.5527344, -0.47998047, -0.88134766, 0.63378906, -0.122802734, 1.1757812, 0.23657227, 1.6572266, 0.13024902, 0.7270508, 1.3085938, -3.2675781, -0.013977051, 3.1484375, -0.55615234, -1.9306641, -0.35473633, -0.8540039, -1.2060547, 0.5756836, 0.6582031, 1.2158203, -0.21655273, -0.33666992, -2.0253906, -1.4970703]}, "B077KRTY7C": {"id": "B077KRTY7C", "original": "Brand: Gimiton\nName: Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool\nDescription: \u25cfSpecification:
Material: ABS plastic + Stainless Steel
Color: black
Length: 7inches(18cm)
Width: 3inches(8cm)
Weight: 4 OZ

\u25cfFeatures:
1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

\u25cfNotes:
1. Please allow slight color difference due to different monitor's brightness and contrast settings.
2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
3. Pls note that there's no battery included with the blower, you need to prepare it by yourself.
\nFeatures: \u2605ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance.\n\u2605Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily.\n\u2605Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients.\n\u2605Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted.\n\u2605Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.\n", "embedding": [-1.8330078, 2.96875, 0.17614746, 0.48583984, -0.9863281, -0.037506104, -0.099487305, -2.0585938, 0.9038086, 2.7890625, -1.4892578, -1.5654297, -0.46606445, -2.2949219, -1.2324219, 2.6054688, 0.50927734, 1.5722656, 0.7504883, 0.86621094, 1.4765625, 0.11553955, 0.4790039, -0.0284729, 0.5527344, -0.92089844, 3.8964844, -2.0976562, 0.99121094, -2.3398438, 1.1435547, -1.3544922, -0.37695312, 0.78564453, -2.1933594, 0.9765625, -2.0566406, 1.7412109, -1.2548828, -1.0615234, 0.38427734, -2.0664062, 1.1181641, 0.41088867, -2.0683594, 1.0791016, -0.07165527, -0.4169922, 0.76660156, -2.1035156, 0.098083496, 0.85253906, 0.36645508, 1.4267578, -1.7402344, 1.5830078, -2.0722656, -2.0234375, 2.90625, -1.1953125, 3.4042969, -0.3774414, -0.93115234, 2.1035156, 0.79003906, -0.82177734, 0.021484375, -1.5439453, -2.1015625, 0.64160156, 0.10015869, 0.37670898, 0.33740234, -0.33154297, -0.62353516, -0.25317383, -4.0273438, 2.2460938, 1.7578125, 1.8408203, -1.6679688, 1.4482422, 2.0664062, -1.6875, 0.6665039, -1.0576172, -1.4443359, -1.3183594, 1.6484375, 0.8388672, -2.0175781, 2.4824219, -3.2148438, -5.1210938, 1.2763672, -2.9160156, 1.4179688, -1.2021484, -0.48486328, 1.4658203, -0.7783203, -2.0214844, -0.5283203, 0.19934082, -0.5991211, 1.3964844, 2.3476562, 1.4755859, -0.5786133, 0.5107422, -2.0761719, 0.31518555, 0.26635742, -0.28808594, -1.5849609, -3.1875, 1.5253906, 0.4033203, 4.3828125, 0.17321777, 3.9609375, -1.0195312, 0.24157715, -2.8828125, 0.8623047, -0.29541016, -0.58935547, -0.0023841858, 3.2109375, 0.2668457, 0.4729004, -0.1706543, 0.21582031, 0.8911133, -1.0058594, -1.9853516, 0.7832031, -2.1113281, -3.8984375, 0.111572266, -0.89453125, 0.3984375, 4.0859375, -2.2226562, -3.9511719, -0.4572754, -0.9785156, 0.022735596, -0.30517578, -1.8222656, 0.39819336, -1.3769531, -1.0029297, -1.3164062, 1.0380859, 0.9785156, -0.43286133, -2.2753906, 1.8837891, -0.048797607, 0.65283203, -2.8242188, 0.28100586, 0.17749023, -0.5385742, -0.8886719, 1.3408203, 1.0966797, 0.26635742, 2.078125, 1.1035156, -2.1875, 1.6005859, -2.1835938, 0.25268555, -1.6513672, -1.5556641, 2.0332031, 0.44677734, -0.22717285, -1.0449219, -1.7480469, 2.5625, 1.4726562, 0.9707031, -0.4086914, -0.50878906, -1.7998047, -0.28198242, -0.56152344, -2.3359375, 0.02078247, 1.1396484, 1.6289062, -1.1777344, -1.0634766, -0.43676758, -2.5585938, 0.8544922, 0.5410156, -1.9853516, -0.15515137, -1.3847656, -0.3154297, -3.2128906, -2.4238281, -1.4013672, 1.6875, 1.5634766, 0.44189453, -0.96240234, -0.15307617, 4.3125, 0.50341797, 1.8466797, -2.140625, 0.5546875, -1.9736328, 0.85791016, 1.4833984, 0.72802734, -0.22644043, 0.5986328, 3.0664062, -0.5151367, 0.41308594, -0.58251953, 2.2675781, -2.4667969, -2.0878906, 2.4648438, 0.5786133, 1.1152344, 0.8720703, -0.45166016, 1.7939453, -0.6713867, -1.28125, 0.90625, -0.984375, -0.34350586, -2.9296875, -0.80908203, -0.67822266, -1.6103516, -1.5429688, -1.1445312, 1.0761719, 0.58691406, -0.56347656, 0.24926758, 0.38842773, 0.3791504, 0.80029297, -2.7890625, 0.4790039, -0.17883301, -0.036743164, -1.8974609, -3.1289062, 1.2832031, 2.0175781, 0.7089844, 0.37548828, 1.0693359, -1.6044922, 0.73291016, -0.8232422, 0.11401367, 0.94873047, 0.9902344, 1.7871094, 0.60058594, 1.6230469, 2.7304688, -1.3671875, -0.011047363, 1.6650391, 1.9042969, -1.8496094, -1.2910156, -1.1669922, 2.3925781, -1.9121094, -0.63623047, -1.4121094, 1.1396484, -1.3935547, -0.2524414, 1.1347656, 3.4335938, -1.2822266, -2.8613281, 2.9628906, -2.7285156, 2.4628906, 0.00016021729, 1.2138672, 1.1386719, 0.38061523, 1.0996094, 0.20874023, -1.4648438, 0.69921875, 0.06085205, 0.8408203, 2.6796875, -2.8125, -1.2509766, 0.2454834, -0.26489258, -0.29516602, -1.9013672, -0.5986328, -2.5332031, -1.5390625, -1.0722656, -2.0390625, 1.2285156, 1.3203125, 0.008590698, 2.1640625, -0.9814453, -2.4902344, -0.89453125, 1.4492188, -1.2626953, 0.66503906, 1.3662109, -2.078125, 0.4663086, -1.8242188, 1.4746094, -2.3535156, 0.9692383, -0.93115234, 1.1396484, -1.7753906, 2.5253906, -0.9345703, 0.17248535, -0.028442383, -1.6230469, 1.6494141, -0.03265381, -2.1855469, -2.4570312, 1.2177734, -0.34204102, -1.0673828, 0.9614258, 3.0605469, 0.72802734, -4.4453125, -0.49316406, 1.3027344, 2.4589844, 0.3088379, -2.7246094, 0.03262329, -0.19482422, 0.8955078, -1.1025391, -1.0273438, 0.68066406, -1.8525391, -0.34033203, -3.2265625, 1.4042969, 0.050628662, 1.3779297, 2.3144531, 0.17370605, -2.4628906, -0.18518066, 0.5048828, 0.056915283, 3.1621094, -1.34375, 1.0527344, -0.2692871, -2.3710938, 1.3164062, 0.2680664, -2.53125, -0.6933594, -0.15673828, -0.37231445, -1.7949219, -2.3945312, 1.0761719, -0.5961914, -1.4296875, 0.7758789, 1.9052734, 2.0859375, 1.4785156, -2.1171875, -0.4177246, -0.36376953, -0.3540039, -0.096191406, -1.8828125, -1.2539062, -2.3730469, -1.2714844, 0.15856934, -1.0537109, 0.6611328, -1.0078125, -0.8754883, 1.7216797, 0.75, 1.2412109, 0.85791016, -3.6425781, 2.6953125, 1.5380859, -2.4472656, -1.9726562, 0.64404297, 0.31323242, -3.4355469, 0.6933594, 2.375, -0.0395813, 1.921875, -0.24121094, -0.55859375, 0.69140625, 1.1582031, 0.12768555, -0.7573242, 0.8076172, 1.96875, -2.2578125, -2.4042969, -0.21240234, 2.0527344, -2.9960938, 0.8125, 2.6992188, 0.5756836, 0.37475586, 1.3027344, 0.27124023, 1.4296875, 1.9697266, -0.7685547, 1.1123047, 0.56396484, -1.1523438, -1.1269531, -1.2578125, -0.10449219, 1.4931641, 0.61865234, -1.2207031, 2.1289062, 3.8105469, 1.3310547, -1.4335938, -0.13842773, -0.62939453, 1.1025391, -0.23205566, 2.28125, 0.37329102, -1.1914062, -0.8330078, 0.105773926, 1.984375, -1.7890625, -1.0087891, 2.7050781, -0.07550049, 0.37353516, -1.8183594, 0.42529297, -2.2480469, -2.671875, 1.3320312, -0.53515625, -1.1904297, -1.8339844, -1.7607422, -1.4199219, 0.4033203, 0.8208008, 0.5292969, -1.5078125, -1.0732422, -0.10076904, -1.109375, -0.63134766, -1.0820312, 1.0126953, 1.0224609, 2.640625, 0.048217773, -1.2529297, 2.3652344, -2.6015625, 1.4033203, 0.57421875, 0.70996094, -0.4741211, -0.23205566, -2.4453125, 2.9355469, 2.9414062, 1.6220703, -0.20739746, -1.3388672, 0.7548828, 0.27490234, -0.4699707, 2.3339844, -0.65625, 0.24243164, 1.4931641, -1.0869141, 0.828125, 1.3193359, 2.4609375, 0.034820557, -0.3635254, 2.453125, -0.21313477, -1.3300781, -1.1894531, -3.1113281, 1.2080078, -0.5175781, 1.171875, 3.0917969, -0.46142578, 1.4189453, 1.8671875, -0.8364258, -1.2119141, -2.6289062, 0.2993164, 0.90283203, -0.85839844, -0.75683594, 0.7949219, -2.046875, -1.7646484, -1.0703125, -0.46484375, -0.027709961, -0.6459961, 2.2460938, -1.1591797, 0.9663086, -0.61279297, 1.7480469, -1.4287109, 0.5698242, 0.15185547, -0.29882812, 0.22973633, -1.8496094, 2.1054688, 0.6616211, -0.11047363, 1.9072266, 1.9003906, 1.6455078, -1.4804688, 0.09448242, 2.2382812, 2.3984375, -0.2619629, -2.6933594, -0.101745605, -0.17163086, -0.22058105, 1.1337891, 0.75878906, -0.34057617, -2.3574219, 1.6875, -0.3713379, 2.5039062, 1.3037109, 2.9453125, -3.1035156, -0.02848816, -0.15270996, -1.0761719, -2.2597656, -0.02949524, -0.60302734, -1.2451172, 1.3642578, -1.9130859, 0.71435547, 1.0048828, -0.33081055, -1.6982422, 1.5966797, 0.3046875, 1.4121094, 3.8476562, -2.5839844, -1.2177734, 0.98876953, -0.82373047, -1.5888672, 1.0419922, 1.0292969, -0.24951172, -0.26171875, 2.3886719, -2.4707031, 0.42919922, 0.55615234, -1.6269531, 0.88671875, -1.5673828, 2.9707031, -0.7182617, 0.6455078, 1.4414062, 0.4074707, 2.3183594, -0.04360962, 0.47314453, 0.8798828, 0.43823242, -0.30029297, -1.5009766, 0.21020508, 0.6958008, 0.6020508, 0.8964844, 1.6298828, 0.6176758, 0.09887695, 0.76123047, 2.4667969, -0.40478516, -1.1660156, 0.38549805, -1.0654297, -1.3125, 0.80078125, 0.8510742, 1.2412109, 0.9477539, 2.2558594, -0.21716309, -1.7744141, 2.6835938, 3.8828125, -2.2773438, 1.0478516, -0.1817627, -1.4433594, 0.49560547, -0.25634766, 1.0097656, 1.5751953, 1.4248047, -1.2724609, 1.5292969, -1.6435547, 0.070007324, -0.69921875, -1.1103516, -0.53515625, -0.07598877, -1.7792969, -0.6381836, -0.97021484, 1.2197266, 0.69140625, 1.8886719, 1.6474609, -0.9042969, -0.06109619, 0.63916016, -1.2226562, 1.6259766, -0.8017578, -1.2675781, -2.1953125, -0.017623901, 0.5878906, 1.1318359, 3.5605469, 1.8242188, 0.26123047, -2.7539062, 1.1943359, -1.7216797, 1.2392578, -3.4238281, -0.47265625, 0.9008789, 0.43066406, 1.1953125, -2.5195312, -0.124816895, 0.40185547, 1.1064453, 1.9599609, 0.41015625, -2.1660156, -1.8886719, -2.5761719, -3.5371094, -1.9082031, -0.041931152, 0.32104492, 0.97558594, 0.4321289, -1.5371094, -3.0507812, -0.09442139, -0.9375, 1.2451172, -1.2226562, 0.34643555, 0.5488281, -2.1113281, 0.3647461, -1.40625, 0.12249756, -0.33666992, 0.27319336, 0.5361328, -1.9667969, -1.8378906, 1.03125, -1.5527344, 0.70703125, 2.2382812, -1.8173828, 0.6074219, 3.0605469, 1.0009766, -1.8466797, 2.8066406, -1.2880859, -1.6220703, -0.14440918, -0.5683594, 3.3554688, -1.0888672, -1.5439453, -1.1396484, -1.59375, 0.82470703, 1.4091797, 1.1318359, 0.3840332, 1.7080078, 0.23010254, -1.5820312, -1.1376953, 1.1787109, 1.3789062, 1.0683594, 0.49829102, 1, -1.5146484, -1.4599609, 1.0087891, -1.6279297, 0.2052002, 0.63378906, -0.73535156, 1.0263672, 2.6152344, 1.6269531, 0.22680664, 0.8964844, -0.33007812, 1.4423828, 0.59716797, 3.8085938, 3.5820312, -2.0761719, -0.95654297, -0.88671875, 0.7626953, 0.52441406, 0.10620117, -0.7084961, 0.24365234, -1.8242188, -1.5810547, -0.16760254, 1.7353516, 3.7597656, 0.8027344, -3.2285156, 1.6689453, 2.4589844, 0.23095703, -0.49951172, -0.53808594, 2.6992188, -0.74853516, 3.2988281, 0.76660156, -0.1262207, 1.2685547, -0.8491211, 1.4746094, 0.020248413, -3.6914062, 0.08831787, -2.1523438, -1.9755859, -1.3994141, -2.6074219, -3.5410156, 1.7333984, -0.77978516, -0.6748047, 0.56933594, 3, -1.6572266, 1.7539062, 2.4863281, -0.75341797, -0.38476562, -0.85253906, -1.1826172, 0.36523438, 1.2792969, -0.7832031, 1.8710938, 1.9033203, -0.19091797, -0.75927734, 1.6972656, 2.5175781, 0.5625, -0.39257812, 1.4150391, 0.6538086, 2.9746094, 2.6757812, 1.4238281, 0.34399414, 2.390625, -0.99560547, 1.6376953, 2.3242188, 1.3046875, -0.63964844, -2.2265625, -0.97998047, -0.50634766, -0.5136719, -0.29882812, 0.75927734, 0.56591797, -1.1181641, 0.62158203, -1.1904297, 1.5761719, -1.0820312, 2.2851562, -0.03781128, -1.1347656, -2.2304688, 0.41015625, 2.1425781, 1.0048828, -0.24084473, 1.5458984, -1.2851562, 1.1816406, -4.3554688, 1.4453125, -0.46533203, -0.7216797, 0.6777344, 2.328125, 1.2441406, 1.6044922, 0.5053711, 2.3242188, -0.6645508, -2.2128906, 2.1035156, 0.65722656, 1.5878906, 0.22949219, 3.5683594, 0.9736328, -0.83251953, 0.021438599, -1.0585938, -1.2861328, -3.0390625, 2.7851562, -0.08685303, 0.2290039, 1.2783203, -1.8261719, -0.96728516, 0.35302734, 2.8183594, -2.9238281, 2.046875, 0.3659668, -0.1381836, -0.7138672, 1.2734375, 1.2919922, 2.2441406, 2.3769531, -0.80615234, 1.5185547, 2.0820312, 0.46435547, -1.2646484, -0.8442383, 0.98291016, -0.68359375, -1.1787109, 1.0273438, -1.3564453, 0.039642334, -1.3007812, 2.21875, 1.2041016, 2.5, 3.6328125, -1.6435547, 2.0625, -1.4765625, -1.1054688, -1.1855469, -0.13183594, -2.0429688, -0.27294922, -0.6484375, -1.4169922, -1.0029297, 0.8154297, -0.73779297, 0.3190918, 0.37524414, 0.21569824, 0.008026123, 0.18725586, 1.9814453, -1.0390625, -1.5800781, -1.6025391, 0.84814453, -1.0654297, -0.57666016, 1.1035156, -0.12817383, -0.53271484, -0.7636719, 0.3293457, -2.3828125, 1.3808594, 0.3022461, 0.9038086, -1.4912109, 0.1138916, -0.2376709, 0.5649414, 0.9560547, 1.1367188, 0.0619812, -0.63134766, -1.2734375, -1.6064453, -0.22265625, -1.9755859, -0.8696289, 0.34423828, 2.75, -0.19226074, 0.83935547, -3.7480469, -1.7666016, 2.078125, 0.19421387, 1.5400391, 0.38549805, -2.546875, 0.03237915, -0.21594238, 3.40625, -0.29541016, 0.3149414, -0.5800781, 1.3955078, 1.8369141, 0.38891602, -1.2460938, 1.2148438, -0.73095703, -0.9008789, 2.9550781, 0.82470703, 0.13330078, 3.3203125, 0.4194336, 1.5576172, -2.8710938, -0.328125, -3.0605469, 0.6743164, 2.2050781, -0.9116211, 0.4572754, -0.04724121, 0.40014648, -2.1914062, -2.5664062]}, "B07MJP4ZQV": {"id": "B07MJP4ZQV", "original": "Brand: homenote\nName: homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping\nDescription: HOMENOTE professional griddle tools set
provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It's a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
KEY FEATURES:
- 2 Oversized griddle SPATULAS\uff0cgreat for flipping beef cubes, fried egg, rice, noodle and vegetables.
- 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
- 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
- 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
- 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
- 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
- Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
- Stronger and thicker stainless steel making them Not easily damaged or broken.
- Dishwasher safe. Easy clean with warm soapy water.
- Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
IDEAL GIFT CHOICE
- Give him/her a surprise !

Don\u2019t know how to choose a gift for Father's Day? A complete set of griddle tools will be the best gift for your father, It\u2019s time to upgrade your father\u2019s old barbecue tools !
Its also the perfect gift choice for Christmas, friend\u2019s birthday, griddle, grill and camping lovers !

Accessories Dimensions:
2 Spatulas: 14.45 x 2.81 inches
2 Flipper/Turners: 11.64 x 2.73 inches
1 Chopper Scrapper: 6.64 x 4.69 inches
2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
1 Storage bag: 15.6 x 6.25 inches
1 RECIPE: 7.03 x 5.47 inches
\nFeatures: Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning)\nMultipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.\nMust Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag.\nPerfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers.\nEnjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals\n", "embedding": [-1.9257812, 1.1396484, 1.6181641, -0.25024414, -0.34545898, 1.3525391, 0.2915039, -0.6699219, 0.7636719, -0.3137207, -1.6943359, 0.5991211, 1.1806641, -2.4023438, -0.9716797, 0.10058594, 0.7163086, 0.13049316, 0.55078125, 0.29711914, 3.5273438, 1.4755859, -0.18249512, -0.8955078, 1.3505859, 0.66796875, 6.2617188, -2.8632812, 0.94921875, 2.5234375, 2.3867188, 0.60546875, 0.051330566, 0.92822266, -2.4511719, -0.6123047, 0.40234375, 2.2949219, -1.6171875, -0.77197266, 0.13928223, 0.29003906, 1.0712891, 1.9960938, -2.6464844, -1.6035156, -0.68408203, 2.1347656, -2.0859375, -2.9609375, 0.15405273, 1.4169922, -0.60595703, 0.074157715, -2.1132812, 0.875, -1.9199219, -2.2988281, 1.6201172, -0.62109375, 0.87939453, -0.45336914, -1.6669922, 0.5576172, 1.1767578, -1.3710938, 1.2314453, -1.5546875, -1.1826172, -1.078125, -0.6459961, -1.3300781, -0.7285156, -0.38256836, -1.4541016, -1.3242188, 0.34545898, -0.009460449, 1.7822266, -0.10656738, -0.24450684, 3.3085938, 0.5786133, -2.1035156, 1.1777344, -1.8681641, -0.5703125, -0.056121826, 1.9365234, -0.47070312, -1.3652344, 1.8828125, -1.5556641, -5.1132812, 1.7783203, -1.3779297, -0.21118164, -1.8515625, 1.3134766, 2.6503906, -1.5869141, 0.49169922, 1.1357422, 0.7055664, -3.1972656, -0.5859375, 3.0214844, 0.43554688, -0.5722656, 0.3388672, -2.5410156, -0.39868164, 0.18737793, 0.77197266, -0.10296631, 1.8408203, -0.7998047, -1.1201172, 1.0214844, 1.1484375, 3.0546875, 0.9350586, -1.4599609, 0.30737305, 0.94384766, 0.6953125, 0.31030273, 2.3242188, 2.7519531, 0.1427002, 0.19213867, -0.35302734, 1.2548828, -2.0644531, -2.5957031, -2.65625, -0.12023926, -1.4003906, -1.3984375, 1.5273438, 1.3710938, 0.6899414, 3.3769531, 0.28393555, -3.3828125, -0.11022949, -0.33984375, 2.25, 1.0576172, -0.56396484, 0.5214844, -1.9492188, 0.0053710938, -0.9326172, 3.4628906, -1.6591797, 0.72802734, 1.5683594, 2.4335938, 1.1396484, 1.1328125, -1.7480469, -1.4082031, 1.9775391, 1.8164062, -2.9941406, -0.36279297, 2.8710938, -0.6879883, 2.8398438, 0.9711914, -2.0214844, 0.50683594, -0.44995117, -0.22302246, -2.0839844, 0.39697266, 1.5810547, -0.9975586, -1.0898438, 0.36621094, -3.4257812, 1.1464844, 2.4375, 0.6171875, -2.1679688, 0.5341797, -0.61035156, 0.5605469, 0.42993164, 0.7055664, 0.45166016, -0.12658691, 0.39013672, -1.3847656, -3.4042969, 0.88427734, -2.3710938, -0.33740234, 2.0117188, -1.3642578, -1.8242188, 0.12402344, -0.83496094, -0.6928711, -0.57958984, -0.18359375, 0.89208984, 1.5869141, 2.0390625, 1.8154297, -0.9926758, 0.9082031, 2.2949219, 0.36206055, -0.5722656, 2.1171875, -0.7446289, 1.8681641, 0.78271484, -1.2978516, -0.27954102, -2.1152344, 1.8710938, 1.4912109, 0.22290039, -0.9003906, 1.5507812, -0.7211914, -0.26635742, 1.6621094, 0.59716797, 0.2454834, 1.9023438, -0.090026855, 0.7832031, 1.0527344, -3.0742188, -0.29833984, 0.24829102, 1.7246094, -1.5605469, 0.3244629, -1.4707031, -0.92333984, 2.7109375, 0.2631836, 1.1728516, 0.19519043, -1.3037109, -2.2265625, 0.7133789, 1.4033203, -1.3408203, -0.7270508, -0.061340332, -1.2773438, 0.30517578, -1.8173828, 0.097229004, 0.1772461, 0.9394531, 0.96875, 1.8154297, 1.4941406, -1.1269531, 1.5410156, -0.17590332, -0.3798828, 0.28808594, 0.6479492, 0.41333008, 1.8320312, -1.2128906, 1.8417969, -0.06011963, -0.97265625, -0.118652344, 0.92089844, 0.18981934, 0.15112305, 0.40429688, 1.2666016, -0.061706543, -0.34472656, -1.609375, -1.8125, -0.7910156, 1.2363281, 3.3144531, 5.1015625, -0.28027344, -0.52197266, 5.1171875, -1.3369141, 2.1210938, -1.1425781, -1.4541016, -0.9921875, -1.6464844, -0.9433594, 1.7578125, 0.5073242, 0.09692383, -1.8701172, 0.8955078, -0.54345703, -0.27954102, 0.79785156, 1.1435547, -0.8876953, -0.29174805, 0.01322937, 1.5498047, -0.04953003, -0.50683594, -1.8759766, -0.60546875, 0.33984375, -1.1191406, 0.7685547, 0.60791016, 0.9667969, -2.5761719, 0.8354492, 0.41723633, -0.9873047, 2.4609375, 1.8359375, -0.50390625, 2.7265625, 0.07751465, 0.42236328, -0.9472656, -3.7246094, 0.062561035, -0.7739258, -1.8681641, 2.390625, -0.67626953, -0.10986328, 0.63134766, -2.2207031, 1.2509766, -1.5664062, -3.0234375, -2.7226562, 0.85546875, -0.94970703, 0.103515625, -1.4785156, 0.7207031, -0.21484375, -5.765625, -0.56347656, -1.9960938, 1.7314453, -0.31591797, -2.4921875, 0.890625, 0.13439941, 0.54589844, 1.0214844, 0.09790039, -1.5478516, 0.6176758, 0.14196777, -1.4628906, 1.1542969, 0.3076172, 0.033813477, -0.48364258, -0.22729492, -2.1289062, -0.5839844, -0.25585938, 0.5288086, 4.2109375, -1.6005859, 0.69677734, -0.10272217, 0.40625, 0.22729492, 0.42871094, -0.9848633, -1.9941406, -0.27734375, -1.4511719, 0.6308594, -3.3027344, -0.22338867, -1.6308594, -0.75683594, -1.6396484, 0.13635254, -2.5742188, 0.4560547, -1.5859375, -1.5986328, -2.1328125, -0.5102539, 1.4248047, -1.7705078, 0.32958984, -0.16381836, 0.6435547, -0.69433594, -1.5224609, 3.2128906, -1.5078125, -1.8105469, 0.82958984, 0.99609375, -0.64501953, 0.23730469, -3.0019531, 1.8759766, 0.5541992, -2.1738281, -1.7255859, 1.3525391, -0.74560547, -2.09375, -0.5473633, 2.5585938, -0.48217773, 2.6425781, 0.7348633, 0.2849121, 2.3691406, 1.2099609, 0.55029297, 0.17126465, 0.49072266, 0.55615234, 0.20690918, -2.8925781, 1.8212891, -0.56884766, -3.0761719, 1.8164062, -0.26489258, 1.3417969, 2.2929688, 0.6723633, -0.29467773, 0.6850586, -0.34960938, 0.53515625, 1.8515625, -2.3964844, -2.2617188, 1.1132812, -0.53808594, 0.98779297, 0.007972717, 0.5185547, 0.65283203, 2.2871094, -0.74902344, 0.49267578, -2.8046875, 1.0341797, -0.9135742, 0.77978516, 1.1982422, 1.5869141, 0.05908203, -1.21875, 1.1474609, -0.76171875, 2.6523438, -2.0996094, -0.90625, 1.4560547, -1.4394531, -0.015167236, 1.3242188, -0.20214844, 0.20153809, -0.39794922, 0.13293457, -1.5400391, -2.2363281, -0.014472961, -0.3173828, -2.1015625, -1.1367188, 4.0898438, 0.2565918, -1.5244141, 0.68359375, 1.9541016, -2.8398438, 0.09136963, -2.3242188, 0.81396484, -0.86865234, 1.2851562, -1.1777344, -2.2773438, 1.3261719, -2.2324219, -0.8911133, -0.39233398, -2.3125, -0.120910645, -0.87402344, -1.6484375, 0.6586914, 1.8798828, -0.17651367, 1.0761719, -1.7714844, -0.6933594, -1.9082031, 0.090026855, 0.53808594, -1.4375, -0.28344727, 0.4814453, 1, 0.2758789, -0.2783203, 3.2207031, 0.15515137, -3.375, -0.37304688, -2.8359375, -1.0087891, -1.3837891, -2.6328125, 1.0800781, 0.73291016, 1.0800781, 0.52246094, 1.1210938, 0.23669434, 3.9335938, 1.3046875, -0.85058594, 0.2980957, -0.23937988, 0.6381836, -0.76708984, -0.53466797, 1.3125, -0.0113220215, -1.1572266, -1.4208984, 1.1123047, -0.9033203, 2.1835938, 0.16394043, -1.7441406, -0.63427734, -0.6645508, 0.7050781, -0.28515625, 0.90478516, -2.6269531, -0.72998047, 0.5439453, 0.68115234, 2.6328125, -0.0670166, 1.1708984, -2.5332031, -0.7290039, -0.1529541, -1.2529297, -0.63964844, 0.34155273, 2.4511719, -0.25219727, 0.46899414, -2.0097656, -0.35888672, 1.0576172, 0.89941406, -0.28833008, -0.025314331, -1.8886719, -1.1152344, 0.016418457, -0.0680542, 1.8818359, 0.92626953, -0.3083496, 0.032714844, 2.4570312, -1.7744141, -2.1699219, -0.27441406, -2.2089844, 0.31835938, -1.1103516, -2.1171875, 2.4296875, -2.1972656, 1.5488281, -0.012130737, -0.008285522, -0.78027344, 0.7788086, 4.5742188, -2.0585938, -1.6503906, 2.2265625, -2.1191406, -1.3320312, 0.08947754, 0.26757812, -1.0136719, -0.018188477, -1.28125, -0.3947754, 2.0859375, -1.5585938, 1.9619141, 0.2692871, -2.9746094, 1.8535156, -0.20422363, -0.6098633, -0.34545898, -0.0025615692, 1.6425781, -0.8754883, -0.19396973, 1.8515625, 0.24401855, 0.59472656, -0.013885498, 0.5444336, 0.4362793, -1.0302734, 1.2832031, 0.9863281, -1.734375, -1.3271484, 0.24523926, 0.9042969, 0.11175537, 1.4130859, 2.1972656, 1.8125, -1.1005859, 1.1367188, 3.1328125, 1.2939453, -1.7314453, 2.8046875, -0.8808594, -2.1660156, 1.8134766, 1.1279297, -1.8515625, -0.32543945, -0.5761719, -0.83203125, 0.52685547, 0.059051514, -2.3554688, 0.56591797, 0.54296875, -1.6494141, 0.41625977, -1.296875, 0.08947754, -0.9975586, -1.3486328, -0.67578125, -2.0273438, -1.7753906, 0.008644104, -1.3300781, -0.22338867, 1.6748047, 1.7236328, 2.9589844, -0.5371094, -0.23254395, 1.2949219, -1.8671875, 0.33569336, 0.18737793, -1.7646484, -2.5898438, 1.0976562, 2.5859375, 2.5214844, 0.38745117, 0.3395996, 1.1689453, -1.4101562, 1.0097656, -1.5410156, 2.40625, -2.0859375, 0.41748047, 0.35302734, -1.7685547, -2.6171875, -0.97021484, 1.6962891, 0.18615723, 2.4042969, 0.06536865, -0.8046875, -0.084228516, 1.53125, -1.2753906, -2.8339844, 0.53515625, -0.56884766, 0.25, 1.1894531, 0.3190918, 0.15185547, -0.74609375, -0.8598633, -1.2744141, 0.67089844, 0.90185547, 0.56347656, -0.007598877, -1.5917969, -0.8857422, 0.006034851, -0.4543457, 1.6347656, 3.2050781, -0.95703125, -1.8164062, -1.5742188, 0.8925781, -0.4501953, -1.7392578, -0.50341797, -0.52197266, -0.22521973, 1.5253906, 1.3017578, -1.984375, 2.0742188, -1.3251953, -0.45288086, -1.6445312, -0.5605469, 1.5585938, -1.8203125, -2.0800781, -0.23901367, -1.6552734, 2.0742188, 1.6806641, -1.3476562, 2.46875, 1.2382812, -1.5126953, -1.0908203, 0.1661377, 0.1986084, 1.0195312, 0.91796875, 1.7802734, -0.026290894, -2.0058594, -1.6767578, 1.2021484, -1.2597656, 0.36669922, -0.19506836, 0.67626953, 1.3203125, -0.42407227, 0.7060547, -0.33129883, 1.1210938, -1.4570312, 0.9511719, 0.48999023, 2.3535156, 1.3125, -1.1464844, -0.008415222, -1.3701172, 0.9350586, 1.4003906, -0.08087158, -1.1953125, -2.0585938, -1.1982422, -1.8789062, -0.16381836, 0.93896484, 0.33935547, 0.14477539, -0.703125, -0.4741211, 0.8432617, -2.1816406, 1.5488281, 0.2109375, 2.5996094, -2.5546875, 1.8427734, -1.3896484, -1.234375, 1.9404297, -1.6923828, 1.265625, 0.59765625, -0.97998047, -0.36987305, 0.87939453, 0.7216797, -0.5126953, -1.9423828, -1.3564453, 0.1529541, 0.68408203, -0.030426025, 0.37109375, 2.65625, 1.1904297, 3.8222656, 1.5058594, -0.08618164, -2.2363281, -0.98095703, -1.0146484, -0.7260742, -0.47851562, 1.4912109, 1.9960938, 2.2382812, 0.1652832, -2.3378906, -0.22058105, 0.9267578, 1.1748047, 1.3251953, 2.8300781, 1.4248047, 3.6816406, 2.2871094, 1.0224609, 2.3457031, 0.45410156, 0.3244629, -1.0761719, 1.9570312, 0.25097656, -0.5703125, -0.61572266, 1.1025391, -0.69433594, -0.11022949, -0.27197266, 0.7133789, -0.17163086, -1.8837891, 2.9707031, 0.53125, 0.67626953, -1.375, 1.3544922, -1.390625, 0.26904297, -1.2060547, -1.9609375, 0.53564453, 1.2099609, -0.06262207, -1.5947266, -0.32470703, 2.7734375, -4.203125, 0.06982422, 0.84228516, 0.11248779, -1.1679688, 3.5488281, 2.4179688, 1.9765625, 2.5996094, -3.1875, -0.12030029, 0.58935547, -0.17456055, 0.94677734, -0.94628906, 1.3154297, 0.5390625, -0.25048828, -1.0185547, -0.48339844, -1.0527344, -0.8305664, 1.0019531, 1.2041016, 2.9941406, 1.6933594, 0.47314453, -4.3359375, 1.9726562, 1.3427734, 0.8847656, -0.8720703, 0.7104492, 0.07897949, -0.9604492, -2.8769531, 0.4477539, 0.5097656, 0.70751953, -0.33813477, -1.9482422, 1.5273438, -0.1418457, 0.6621094, 0.8808594, 2.25, -0.91845703, 0.33789062, 0.32763672, 1.6904297, 0.15844727, 0.7348633, 0.3701172, 0.4987793, 1.9121094, 0.38208008, 2.1835938, -1.296875, -0.80615234, 0.44091797, 0.08892822, 0.8154297, 1.3183594, -2.8183594, 0.49804688, 0.5253906, -2.0976562, -0.6386719, 0.546875, 1.0263672, 1.5566406, 0.9614258, -0.87109375, -1.4677734, 0.4428711, 0.8129883, -0.45507812, 0.9008789, -2.1347656, 0.24108887, -0.4921875, -1.1103516, -0.09820557, 0.1508789, -0.28857422, -2.1347656, 2.3574219, -1.2998047, 0.10852051, 0.6972656, 0.15600586, -0.7319336, -2.59375, -1.4179688, 0.85302734, 0.71972656, 2.9160156, -0.33251953, -1.1201172, -1.6943359, -0.49414062, -1.0888672, -1.140625, -2.2675781, 0.6015625, 3.8183594, 2.296875, 0.48461914, -2.75, -0.9584961, 0.7626953, -3.1699219, 1.0957031, 1.7148438, -1.6806641, -1.0761719, 1.2294922, 1.15625, 1.2109375, -1.0957031, -0.08807373, -0.80615234, 0.8408203, -0.99072266, 1.7050781, -0.01550293, -1.6015625, 1.1054688, 1.765625, 0.625, 1.96875, 2.671875, 3.2304688, 0.68603516, -2.90625, 0.42407227, 1.1796875, 2.7109375, 1.0253906, 0.1796875, 0.5239258, -0.5205078, 0.5209961, -0.41503906, 0.15405273]}, "B086Z4BMB8": {"id": "B086Z4BMB8", "original": "Brand: DuroMax\nName: DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax\u2019s exclusive MX2 switch that harnesses the generator's full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet\n", "embedding": [-0.64746094, -0.45263672, 1.6230469, 0.18664551, -1.2861328, 0.22351074, 2.34375, -0.1159668, -2.0488281, 1.3769531, -0.2578125, 0.5991211, 0.56640625, -2.03125, -0.07940674, 0.47680664, 0.6425781, 1.6894531, 0.60546875, -0.7573242, 1.2451172, 0.11077881, 1.0205078, 1.640625, 0.12866211, -0.41088867, 3.109375, -2.5683594, -0.2902832, 0.30859375, 1.0908203, 0.03942871, -0.5917969, 0.34692383, -1.9902344, 1.6474609, 0.22888184, 1.2714844, -3.8085938, 0.12915039, -0.98876953, 0.6816406, 1.8417969, -0.50683594, -1.9453125, -3.6875, 0.75927734, 0.054107666, 0.4326172, 0.29833984, 1.9023438, 2.7460938, 0.24890137, -0.6948242, -0.067993164, 2.9257812, 0.9946289, -2.09375, 2.9140625, 3.0878906, -0.62646484, 0.32714844, -1.8164062, 0.48486328, -1.5039062, -0.42797852, 0.4638672, 0.32788086, -1.3046875, -2.609375, 3.1035156, 1.3798828, -1.0009766, -0.50439453, -1.1044922, 1.0361328, -3.4492188, 1.4482422, 2.3945312, 0.7651367, -0.9086914, 1.0556641, 2.0078125, -1.4140625, 0.1574707, 0.32202148, -0.049560547, 0.20117188, 0.123046875, 2.6445312, -3.7148438, 2.984375, -2.578125, -3.8457031, 3.1777344, 0.38427734, -1.0849609, 0.08886719, 1.5771484, 2.3398438, 0.7573242, 0.7988281, -0.52783203, 0.5, -0.032836914, 0.18432617, 1.0722656, 0.10418701, -1.8964844, 0.234375, -2.6230469, 2.3261719, 0.32202148, -0.01512146, -0.9580078, -1.4697266, 2.0488281, -1.3857422, 4.6367188, 0.6123047, 2.53125, -1.7539062, 1.9003906, -0.33935547, 2.7851562, 1.2265625, 1.7871094, 3.0683594, 3.1328125, 1.3623047, 0.75927734, -0.33447266, 1.78125, -0.62353516, 0.9316406, -1.6181641, 0.62158203, -2.5605469, -2.9511719, -1.4248047, -2.4609375, -0.26220703, 1.1845703, -0.8701172, -3.7871094, -1.3623047, -1.1259766, -1.4228516, -0.029785156, -1.7851562, 2.1601562, -4.3046875, 0.4909668, -2.4414062, 1.2158203, -0.47973633, -0.097473145, -0.6689453, 1.4238281, 0.010948181, 0.39111328, 0.5913086, -1.2958984, -0.3005371, 0.49731445, -3.3886719, 1.2792969, 0.014846802, -0.20922852, -1.4121094, -1.9003906, -1.8222656, 0.6269531, -2.265625, 0.37890625, -3.1171875, -1.0039062, 0.51953125, 1.640625, -0.21398926, -0.9741211, 2.5761719, -1.4013672, 0.24328613, 0.75097656, 0.41552734, 2.59375, -1.078125, 0.05609131, -2, -1.3671875, 0.578125, -2.1113281, 0.9980469, 1.9873047, -2.4609375, -2.109375, -1.25, 3.7988281, -0.40014648, 0.14819336, -2.109375, -0.036621094, -2.4023438, -1.5146484, -3.2539062, -0.084106445, -1.1904297, 0.66552734, -1.5546875, 0.7939453, 0.25634766, 3.1601562, -1.9560547, -2.1113281, -2.34375, -1.7460938, 0.39770508, -1.5185547, 0.23010254, -0.33813477, -0.48266602, 2.1777344, -1.3945312, -1.0771484, 2.3828125, 0.018707275, 0.59033203, -2.9765625, -4.5078125, 1.2695312, 0.97753906, -0.40112305, -1.2597656, -0.42358398, 1.2451172, -0.83984375, 1.4326172, 0.34375, -0.45654297, 1.5048828, 0.9711914, -0.047912598, 1.8486328, 1.6611328, -0.79345703, -1.1699219, 2.25, 0.2746582, 0.13452148, -0.19067383, -0.40649414, 0.40014648, -1.2353516, 0.234375, 0.27319336, -0.03866577, -1.1357422, 0.08282471, -2.5664062, 0.99560547, -0.0440979, -1.1367188, -0.5419922, -1.4160156, -0.34399414, 1.9414062, -0.72558594, -1.8203125, 0.56640625, 2.5839844, 2.2949219, 0.54296875, 2.2226562, 0.7089844, 1.5380859, 0.7011719, 2.0175781, 2.0019531, 2.671875, 0.08508301, -0.5004883, -0.68310547, -2.4023438, -0.39648438, -1.3603516, 0.84716797, 0.8876953, -0.9819336, -0.091918945, 0.9194336, -2.1523438, -5.71875, 1.5585938, -0.057922363, 3.9589844, 3.5507812, -0.07092285, 1.8066406, -0.40576172, 0.7988281, -0.021362305, -1.9863281, 2.5175781, 0.46264648, 0.67578125, -0.21936035, -1.7128906, 0.41088867, 1.4648438, 0.5288086, 0.0070152283, 1.1259766, 0.16601562, -1.0146484, -0.40405273, 2.6210938, -1.9248047, 2.15625, 1.2861328, -0.6743164, 0.5625, -0.3798828, -1.2773438, 0.34033203, -1.9658203, 1.7207031, -1.03125, 0.06112671, -1.4472656, -1.25, -0.78808594, 0.65283203, -0.2692871, -0.21923828, 0.1907959, -1.7402344, -2.0996094, 1.0205078, -0.9863281, 1.0673828, -1.0048828, 0.13586426, -0.91259766, 0.01586914, -2.5703125, -1.1181641, -0.7207031, -1.4990234, -1.9414062, 1.9736328, 1.9970703, 0.87646484, -1.0595703, -2.2363281, -0.10522461, -0.5415039, 3.5898438, -1.8427734, 1.7158203, -0.95458984, 0.48242188, 0.6435547, 0.4255371, 1.125, -2.5644531, 0.56347656, -3.4101562, 2.3691406, 0.24084473, 0.8388672, -0.7832031, 0.101623535, -0.3293457, -2.3261719, 1.9921875, -0.41601562, 0.39746094, -1.3867188, 1.4042969, 1.3544922, -3.3222656, 1.4355469, 0.5600586, -1.7773438, -0.08691406, 0.9370117, -1.5986328, -0.40039062, -2.1484375, 1.9560547, 2.1777344, -1.8789062, 1.734375, 0.015449524, -0.24438477, 0.8203125, -2.0488281, 1.3847656, 3.1308594, 0.55078125, -1.1904297, -1.0175781, -0.18811035, -0.62060547, 0.10369873, -1.4316406, -1.5458984, 0.37548828, 2.8203125, 0.6689453, 0.72314453, -0.89208984, -1.0761719, 1.0244141, -3.0058594, 1.4541016, 1.2548828, -0.70458984, 1.5566406, -1.109375, 0.16894531, -2.0878906, -1.2724609, 4.5390625, -1.7011719, 3.2265625, 0.3371582, 0.15234375, -0.49169922, 2.3710938, -0.18273926, -1.4609375, -2.7597656, 2.96875, -1.7421875, 0.50927734, -0.26586914, 0.8808594, -1.4335938, -0.6645508, 2.9589844, 1.5908203, 4.7304688, 1.4228516, -1.7851562, 2.6113281, 0.8647461, 0.7402344, 1.1787109, -0.7236328, 0.19995117, -1.6943359, -0.9863281, -0.08441162, 1.0810547, 2.0273438, 0.21813965, 1.7626953, 1.4238281, -0.32104492, 1.4902344, -0.30737305, 0.58447266, -2.0859375, 3.4941406, 3.8417969, -1.2382812, 3.3203125, -2.0332031, 0.15356445, 1.0449219, -0.37695312, 0.8388672, 3.0585938, 0.8725586, 1.4746094, 0.6040039, -0.3540039, 0.14978027, -1.5673828, 0.32226562, -1.0039062, -0.6743164, 0.765625, -1.1025391, -0.68066406, -2.4824219, -0.04550171, -1.8457031, 1.2109375, -0.40600586, -0.025512695, -0.50683594, -0.52783203, -0.62597656, -0.45288086, -1.3085938, 1.25, 2.2285156, -0.29492188, 1.0732422, -1.6894531, 1.2714844, 0.5131836, 0.45922852, -1.2587891, -0.88378906, -1.8652344, -0.6152344, -0.90234375, -0.24450684, 1.4433594, -0.96777344, 1.4287109, 1.0986328, -0.83740234, -0.4033203, -0.0758667, 1.2626953, 1.3046875, -2.2460938, 1.3134766, 0.73291016, 1.5634766, 0.0007843971, 2.1894531, 2.9824219, -1.4208984, -0.92041016, -1.0917969, -0.65478516, 1.0810547, -1.4384766, 0.6821289, 4.0507812, 0.09631348, 1.1894531, -0.12219238, 0.8100586, -3.0878906, -1.8056641, -0.4362793, 1.8623047, -2.734375, -2.4453125, 0.4716797, -0.90478516, -1.015625, 0.71533203, -1.9277344, -0.05569458, 0.31323242, 0.60302734, 0.6254883, 2.6171875, -1.015625, -0.51171875, -0.53564453, 0.80078125, 2.9101562, -0.73828125, -0.2277832, -2.6601562, 0.6557617, -0.2919922, -1.0947266, 1.7402344, 2.3144531, 0.024047852, -0.41552734, 1.1699219, 0.6689453, 0.23632812, 0.51464844, -2.8730469, -0.93603516, 0.15246582, 1.4658203, -3.28125, -1.3662109, 1.5019531, -2.1738281, -0.028244019, -0.66552734, 0.89941406, 0.9741211, 3.5410156, -0.9194336, 1.90625, 1.8564453, -3.7246094, -0.2277832, -0.3857422, 0.8803711, -0.90966797, -2.0625, -1.5341797, -0.77197266, 0.29077148, -0.35864258, -0.57714844, 1.3408203, 0.7426758, 0.6411133, -0.04559326, 1, -0.20080566, 0.21289062, 2.7734375, -0.5859375, 0.23925781, 0.3486328, 0.34399414, -0.77734375, 2.0644531, -1.359375, -0.71484375, 1.0585938, -1.2158203, -1.6464844, -0.5839844, -1.1386719, -1.2177734, -0.75634766, 0.36938477, 0.30737305, 2.0253906, -0.44384766, 1.2617188, 1.3847656, 0.090148926, -2.6894531, 0.89404297, 1.4335938, -0.3071289, 1.1357422, -0.83740234, 2.8574219, 0.1809082, -0.7006836, 1.9970703, 2.046875, -1.4082031, -0.5957031, 1.9101562, 0.114868164, -0.82373047, 1.1132812, 1.3134766, 0.48388672, 0.55078125, -1.3935547, 1.4384766, -0.6064453, 3.1035156, 0.025360107, -0.91064453, -1.0644531, 0.5019531, -1.2353516, 0.039794922, 0.24169922, -0.39892578, -0.7011719, 1.1748047, -0.8129883, 0.8696289, 0.74365234, -0.73779297, -1.7285156, -2.1386719, -0.80908203, -0.18737793, -0.24377441, 0.18029785, -0.86572266, 0.19482422, -0.8300781, 1.421875, 0.6196289, -1.5546875, 0.25830078, 0.8173828, 0.8144531, 0.030792236, -0.70996094, 0.9633789, -4.890625, -0.13671875, 1.1054688, -0.5859375, 1.0732422, 2.3105469, -1.90625, -1.2324219, -2.6757812, -0.6870117, 1.0888672, -0.7631836, -1.6298828, 0.5439453, -1.0761719, 1.3398438, 0.9277344, -1.8701172, -1.8515625, 1.2236328, 0.17590332, 0.18835449, -0.28588867, 0.1763916, -2.328125, -4.0664062, -2.7597656, 1.3115234, -0.27929688, -0.34033203, 0.68652344, -2.7460938, 1.4960938, 1.3320312, 1.53125, -1.6884766, 1.1835938, -1.3964844, 1.6357422, -0.8486328, 0.20727539, -1.2568359, 0.34179688, 1.7998047, -1.5292969, 1.7177734, -3.3945312, -3.0507812, -1.4804688, 2.1953125, -1.421875, 1.2568359, -0.36254883, 1.2519531, 2.8457031, -0.011756897, -0.17602539, 0.8847656, -2.1660156, 0.43115234, -1.2832031, -2.4804688, -0.2590332, 1.96875, 0.08581543, 1.6582031, 2.1582031, 2.5527344, 0.52246094, 0.11981201, -3.2949219, 1.3457031, 0.32128906, -0.4423828, -0.87646484, 0.9169922, 1.9736328, -1.7910156, -0.48364258, -2.2675781, -0.042938232, -1.1884766, -0.3540039, -1.4433594, -0.26245117, 0.6118164, -0.0826416, -0.89404297, 1.96875, -0.105041504, -0.30566406, -0.8251953, -0.17175293, 0.116882324, -1.4082031, 1.7763672, 2.4316406, -1.2490234, -3.8417969, 0.5239258, 0.9453125, -0.09857178, 2.1347656, -0.107910156, -0.15002441, -2.6152344, -1.1943359, -1.5751953, 1.4121094, -0.27612305, 0.65722656, -0.77246094, 0.1282959, 0.9189453, 0.69140625, -0.47460938, 2.1914062, -1.8515625, -1.0175781, 0.09631348, 2.0644531, -2.5253906, 1.4814453, -0.85839844, 0.1237793, 0.37573242, -3.4765625, 0.93603516, -1.2744141, -1.4765625, -0.28320312, 0.38916016, -0.23925781, -0.008850098, -0.60791016, -0.30639648, -0.045715332, 1.6552734, -1.9091797, -2.1875, 2.2597656, -1.0410156, -2.2578125, 1.1064453, -2.2929688, -0.6459961, 2.46875, -2.6757812, 3.2675781, -0.22363281, 0.8925781, -1.0683594, 0.39404297, -1.2978516, 1.1025391, 1.0527344, 1.1767578, 0.84716797, 1.4707031, -0.00028800964, 0.6948242, -0.18554688, -0.34692383, -0.5239258, 1.1845703, 1.2548828, -0.24523926, 1.2695312, -1.9589844, -0.32714844, -0.49169922, -1.0537109, -1.8886719, -0.13464355, 3.1855469, -3.8183594, 1.2509766, 0.5522461, 1.0419922, -3.5761719, -0.08544922, -0.4411621, 1.2060547, 0.040252686, 1.3310547, 2.1503906, 0.7294922, -0.17834473, 1.4980469, -2.4394531, 0.088256836, -1.0703125, 0.19604492, 0.73046875, 0.00040483475, 1.2822266, -0.87597656, -2.4746094, 1.625, 1.9560547, 1.4160156, 0.035491943, -0.25024414, 1.2480469, -2.9960938, 1.8339844, 0.14294434, 4.140625, 2.5527344, 0.28198242, 2.3378906, 0.48706055, 0.02130127, -1.8320312, 0.8911133, 0.16479492, -0.33544922, 0.30395508, -4.0390625, 0.25195312, -2.3632812, 1.9589844, -2.3574219, 1.3964844, -0.009223938, -0.94384766, 1.1640625, 1.3769531, 0.09118652, 2.9570312, 1.0800781, -1.1142578, 1.8613281, 2.2714844, 0.16760254, -0.24707031, 0.86621094, -0.090026855, 0.8623047, -0.25, 0.9536133, 0.63427734, -0.86865234, -0.4970703, -0.29467773, 1.8417969, -0.43408203, 1.0498047, -0.15075684, 2.7792969, 0.19995117, -1.7910156, -2.2109375, -0.67871094, 0.55615234, 0.049468994, -1.4316406, 0.7714844, 1.6796875, 1.3457031, 3.7792969, -1.5244141, -1.8574219, 0.62646484, 0.09259033, 1.4677734, -0.16015625, -0.5957031, -1.0263672, -1.3886719, 0.045196533, -2.1328125, 1.3183594, 0.7836914, 0.12371826, -1.3310547, -2.4140625, -2.1914062, -0.24609375, -0.22167969, 0.71191406, 0.4868164, -1.7421875, 3.203125, 1.4628906, -1.8203125, 2.5527344, 3.3398438, -0.34838867, 2.0390625, -0.8017578, -1.2958984, -0.48339844, -2.8242188, -0.049987793, 1.4072266, 0.9189453, -0.07647705, 1.3144531, -3.1757812, -1.4638672, -2.1152344, -1.0576172, 0.72558594, -1.5117188, 0.55126953, 1.0449219, 0.13928223, 1.0927734, -0.65234375, -0.25585938, -0.08581543, -0.07086182, 0.9633789, 1.0009766, -0.9472656, 1.8574219, 1.8730469, 0.5239258, 0.45776367, 2.7734375, 0.40722656, 0.5727539, -0.4621582, -2.0878906, -1.390625, -0.39648438, 0.30444336, -1.3847656, 1.2675781, 1.5087891, 0.18603516, 0.086364746, 0.2800293, -2.0371094, -2.578125]}, "B07RNX3G8J": {"id": "B07RNX3G8J", "original": "Brand: Renook\nName: RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch\nDescription:

Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

ATTENTION:


1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


Healthier

Don't worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

make food is very healthy and delicious.

More Usages

Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It's really amazing!

Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart\uff01

\nFeatures: 1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them.\n2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks.\n3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new.\n4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.\n", "embedding": [-0.92578125, 0.051116943, 1.6767578, -0.66259766, 1.5263672, 0.6069336, 1.1259766, -0.48657227, 0.09899902, 1.9355469, -0.018981934, -1.1689453, 0.5546875, -3.9121094, -0.15930176, -0.37719727, 0.11968994, 1.6630859, 3.7441406, 0.030380249, 0.1541748, 0.60302734, 0.97265625, -1.5585938, -0.012481689, 0.99902344, 4.5117188, -0.62890625, -0.13964844, 0.10650635, 1.9521484, 1.7197266, 0.66845703, 1.9443359, -2.7421875, -0.81933594, -1.3203125, 3.1035156, -0.27929688, -0.55371094, -1.2529297, -3.0585938, 1.4824219, 1.4882812, -1.8417969, 0.43896484, -0.65625, 1.3925781, -0.94970703, -2.5742188, 1.5615234, 0.20422363, 2.8652344, 0.3256836, -2.0625, 1.1914062, -0.006629944, -1.0566406, -0.22253418, 0.6303711, -0.5756836, -0.5390625, -1.6533203, 0.9848633, -0.64990234, -0.92089844, 0.16296387, -1.0214844, 0.6328125, -1.9394531, 0.89697266, -1.2441406, -0.18688965, 0.5419922, -0.35668945, -0.0042533875, -0.4116211, -1.3740234, -0.010894775, -1.109375, 0.3154297, 3.1015625, 0.12432861, -1.0849609, -0.6411133, -1.8339844, -3.15625, 0.013298035, 2.6953125, -0.25439453, 0.70214844, 3.734375, -2.1347656, -4.2851562, 0.16772461, -2.6191406, 0.45581055, 0.20483398, -1.6386719, 2.3574219, -1.6542969, -1.7431641, -1.0244141, 1.9013672, -4.171875, -2.6191406, 2.1757812, -0.43066406, 0.37036133, -0.44335938, 0.1459961, 0.26660156, 1.5791016, 0.1307373, 1.8066406, 0.42456055, -0.33911133, 1.2773438, 1.0136719, -1.0888672, 4.078125, 0.64990234, -0.27319336, -3.0839844, 0.3552246, -1.3164062, 0.7158203, 1.6845703, 2.4199219, -2.46875, -0.08319092, -0.41845703, -0.6245117, -0.5917969, -2.6152344, -0.036102295, -1.1591797, 0.63427734, -2.7421875, 1.8740234, -0.29614258, 0.11303711, 1.7333984, -0.5917969, -2.4160156, -0.041290283, -1.8076172, 3.4433594, -2.3671875, -0.8803711, 0.10876465, -1.0771484, 1.9414062, -1.2226562, 0.23864746, -0.6225586, 1.1748047, -0.81152344, 0.8691406, 1.3105469, 1.0439453, -2.1328125, 0.40844727, 0.69921875, 0.5029297, -2.546875, -1.2705078, 1.4638672, -0.43115234, 1.765625, -0.5629883, -1.5927734, 0.99609375, -0.8408203, 0.15820312, -0.9301758, -0.14465332, 4.5078125, 0.15039062, -1.1328125, 0.031982422, -3.4414062, 0.02684021, 1.9208984, -0.71972656, -0.034179688, -0.6347656, -0.5073242, 0.14099121, -0.7524414, 0.15454102, 2.2890625, -0.19433594, 0.69628906, -2.3144531, -0.33520508, 0.15075684, -2.8828125, 0.9980469, -0.2685547, -0.22631836, -1.2197266, -0.60546875, -1.0976562, -3.0292969, -2.8574219, -2.8652344, 1.6044922, 0.7319336, -0.30541992, 0.5029297, -2.7441406, 0.7788086, 1.2597656, -1.2060547, -1.7353516, -0.4296875, -0.28222656, 0.8198242, 3.0878906, -0.27441406, -0.11694336, 0.31103516, 3.5898438, -1.2578125, 2.3085938, -0.6767578, 1.3466797, -0.04498291, -0.57373047, 2.4179688, 1.4121094, -1.2177734, 0.296875, -0.5205078, 1.4765625, 2.6191406, -1.1533203, -1.3056641, -0.18066406, -1.53125, -1.7753906, -0.9042969, -2.6523438, 0.29467773, 0.31030273, -0.16442871, 2.5625, 2.2226562, -0.45581055, -0.012237549, 4.3710938, -0.0871582, 0.16833496, 0.6176758, 0.6142578, -0.05999756, -0.45117188, -1.4355469, 0.006767273, -0.8515625, -0.49023438, -1.5410156, 0.7036133, -0.04095459, -0.19616699, 2.2734375, 1.6005859, -3.2636719, -1.4726562, -1.1640625, -0.7036133, -0.30444336, -1.3730469, 0.56933594, 0.7128906, -2.1972656, 0.54785156, 0.8642578, 0.13317871, 0.30004883, 3.2753906, 0.34887695, -0.39331055, -2.7890625, -0.064086914, -1.8554688, -0.6425781, 1.9785156, 2.2011719, 4.0859375, 1.15625, -0.7714844, 2.3203125, -0.48095703, -0.2854004, 1.4824219, -0.27685547, -1.1591797, -1.5019531, -1.1972656, 2.0292969, -0.55078125, 0.30688477, -1.8769531, -0.4165039, 1.2080078, -1.0654297, -0.2939453, 2.7460938, 0.9277344, -0.22851562, 0.2878418, 1.7070312, -2.6386719, -1.8574219, 2.1621094, -1.8056641, 1.2548828, -1.7695312, -0.78564453, -0.27026367, -0.66308594, -2.0097656, -0.3642578, 1.7958984, -0.703125, -0.29516602, -0.13464355, -0.63623047, -0.61572266, -1.8261719, -0.17480469, 0.30810547, -2.4238281, -1.6259766, -1.7539062, -0.9165039, -2.3769531, 1.2363281, -1.3916016, -0.15075684, -1.5449219, 0.041870117, -1.0302734, -2.9628906, -2.6210938, -1.2744141, -0.3955078, 2.0449219, 0.5629883, 1.9160156, 0.3647461, -4.6289062, 0.12902832, -0.48168945, -1.8232422, 1.4414062, -3.5546875, -0.056427002, 0.89453125, -0.5175781, 0.94677734, -0.31518555, 0.6611328, 1.5390625, -2.4375, -2.0507812, 0.48583984, -1.0087891, 1.0175781, -1.4804688, 0.057617188, -1.6943359, -0.6669922, -1.5302734, 0.1274414, 3.9238281, -0.15820312, -0.10998535, -1.8476562, -1.0976562, 2.3789062, 1.4892578, -2.6367188, -1.6992188, -0.47192383, -2.6660156, -1.546875, -2.3789062, -1.0644531, -0.5229492, -1.1757812, -1.3173828, 1.6748047, -0.30444336, 2.9433594, -3.7832031, -0.22058105, -0.21008301, 2.1035156, -0.99853516, 1.2773438, -0.55859375, -0.59228516, -1.2138672, -2.3496094, -0.59277344, 2.1992188, -1.59375, 1.3496094, 0.3779297, -0.4506836, 0.1673584, -0.055358887, -1.6025391, -0.60595703, -1.3027344, -1.4404297, 0.72314453, 0.8510742, -1.3544922, -1.1386719, -1.6181641, 3.6992188, -0.08831787, 2, 2.1269531, 0.2211914, 3.3203125, 2.1542969, -0.046325684, 0.2602539, 1.1357422, 0.86572266, -0.6801758, -2.0644531, 2.0683594, 0.22509766, -1.2207031, 0.24572754, 0.3720703, -0.11419678, 1.1728516, 0.52490234, 0.09857178, -0.26782227, -0.91845703, 3.1464844, 1.1689453, 0.5439453, 0.7890625, 0.13452148, 0.059753418, 2.203125, 2.3652344, 2.9609375, 0.84277344, 0.5126953, 0.6118164, 0.24243164, -2.2324219, -0.27856445, 2.6054688, 1.4560547, -0.8535156, 2.2070312, -0.30517578, -0.012313843, 3.6445312, -0.048187256, 1.109375, -1.6552734, 0.53222656, 1.6044922, 0.44702148, -0.9741211, -2.2167969, -0.78222656, -0.9536133, -3.0683594, 0.9057617, -2, -3.7226562, 0.80322266, -2.1328125, -3.5429688, 0.3010254, 3.5761719, -0.83496094, -1.8085938, -0.47265625, 2.7382812, -0.95654297, -1.8007812, -0.032409668, 0.42382812, -0.6508789, 1.515625, 0.6723633, -0.5234375, 2.3144531, -2.5058594, 0.4543457, 1.0009766, -2.8183594, -0.68847656, -2.3574219, -0.91845703, -0.13830566, -0.7211914, 1.1611328, 1.9550781, -0.42016602, 0.25732422, -1.6425781, 1.5595703, 0.21398926, -1.0654297, -0.75097656, 0.78808594, -0.14624023, -0.14953613, 0.34326172, 4.5898438, 1.3095703, -2.7871094, 1.9482422, -2.4746094, -0.31274414, -0.17138672, -2.8300781, 0.8125, 0.36572266, -1.8486328, 3.5214844, -0.41333008, 0.49023438, 3.59375, -0.5361328, 0.17407227, -0.030593872, -1.8369141, -0.96435547, -0.17077637, 0.35058594, 4.0039062, 1.0615234, -1.2753906, -0.7089844, -0.6430664, -0.8779297, 0.88378906, 0.9355469, -0.74316406, -0.8413086, -3.7128906, 0.31176758, 0.9863281, -0.22949219, -0.80859375, -0.58740234, 0.18322754, -0.22070312, 3.6875, -2.0527344, 1.5419922, 1.2451172, -1.0292969, -0.8251953, 0.48901367, -0.9980469, -0.6816406, 4.8710938, -0.76464844, -1.7060547, 0.016174316, -0.03591919, 0.34106445, -0.9501953, -1.3730469, 0.5546875, -1.3603516, 0.6191406, -0.59033203, 1.9414062, 1.2744141, 0.24487305, 0.12207031, -0.1607666, 0.076660156, -1.5556641, -1.2324219, 0.9165039, 0.17871094, 0.55566406, -1.5429688, -2.5800781, 2.734375, -2.2402344, 0.56152344, -2.5449219, 1.7919922, 1.1943359, 0.107666016, 4.7539062, -3.09375, -0.14379883, 0.5751953, -3.3046875, -1.7070312, 0.5732422, -1.8066406, -2.4492188, 2.0664062, 2.0644531, -0.046447754, -1.9628906, -0.57958984, 0.5810547, -0.5214844, -2.9511719, 1.2792969, -1.3427734, -0.69433594, 2, -1.1162109, 2.8339844, -0.75097656, 1.9287109, 2.7519531, -0.1262207, 0.075683594, 1.8720703, 1.0703125, 0.36254883, 0.875, 0.91796875, 1.4746094, -1.4003906, -0.7519531, 0.5498047, 1.5771484, -1.8720703, 1.1347656, 0.07531738, 0.7939453, -1.6074219, -0.9145508, 3.265625, 2.25, -0.49829102, 2.1015625, 0.8701172, -2.4257812, 2.1210938, 1.8720703, -0.70166016, 1.3388672, -1.3232422, -0.7973633, 2.3320312, -1.1113281, -2.0039062, -1.2626953, 0.7182617, 0.37036133, 0.9038086, -1.5664062, 1.1064453, 2.0800781, -1.9150391, -0.7866211, -1.6591797, -0.83203125, 1.0410156, -0.28930664, 1.4980469, -0.45947266, 1.0371094, 3.6210938, -1.0615234, -2.1269531, 2.0625, -0.0692749, -0.75439453, 0.55126953, -1.0595703, -2.3261719, -2.5078125, -1.0507812, 0.64453125, 1.9550781, -0.34570312, 1.9394531, -3.1855469, 2.203125, -2.0390625, 2.4570312, -0.89404297, 0.0028896332, 4.21875, -4.1679688, -1.5859375, -1.1181641, 1.7724609, -0.45532227, 0.9458008, 1.6123047, -0.031402588, -0.80029297, -0.31933594, -1.5537109, -2.9238281, -1.0292969, 1.6435547, 1.0029297, -0.47827148, -0.921875, -1.2138672, 0.28344727, 0.8417969, 1.4072266, -0.7001953, -0.60839844, -1.3535156, -2.2851562, -1.6679688, 0.020523071, 1, 0.9970703, -0.6230469, 3.3808594, -2.1621094, -1.7041016, -0.88720703, -0.6953125, -2.7890625, -0.8208008, 2.1914062, -0.43286133, -0.037902832, 1.1904297, 0.40429688, 1.0341797, 3.828125, -1.3955078, 0.13659668, 2.0644531, -0.6303711, -0.41918945, -0.46923828, -3.4160156, 1.2685547, -3.0214844, 1.0957031, 0.765625, -3.3574219, 1.1865234, 1.0800781, -2.3847656, -2.1367188, 0.69921875, 0.35009766, 0.21655273, 0.21191406, -0.011459351, 1.1220703, -2.2246094, -1.8447266, -0.48632812, -1.1230469, -2.0390625, -1.2548828, 0.08276367, 4.0117188, -1.3212891, 2.9375, 1.4921875, 1.4882812, -0.6669922, 1.3710938, -0.4050293, 0.012710571, 0.2199707, -1.3066406, -0.16662598, -2.1855469, 1.5224609, 0.5888672, 0.57958984, 1.6328125, -1.0859375, -2.0292969, -1.8134766, 0.075927734, 0.45141602, 1.5810547, 0.69921875, 1.4179688, -0.4638672, 0.26489258, -1.5498047, 1.2138672, 0.6176758, 2.78125, -1.9833984, 3.4609375, -0.37426758, -3.7636719, 2.6933594, -1.0058594, 0.62060547, 1.9150391, -0.66748047, -0.44458008, -1.9160156, -1.7939453, -1.2539062, 1.2431641, -3.5234375, 1.6162109, 0.09655762, 0.9941406, -0.26904297, 2.1367188, 1.3857422, 2.7597656, 2.703125, 0.73095703, -1.234375, -0.78515625, -1.8291016, 0.82958984, 1.8505859, 1.4462891, 0.73583984, -0.3449707, -1.0292969, -1.3701172, 0.35498047, -0.42919922, 2.4023438, 1.3232422, 1.0292969, 3.7109375, 2.7207031, 2.5839844, 1.1347656, 2.2109375, 1.1865234, -0.066101074, -0.029663086, 3.1191406, 2.1796875, 0.92578125, -1.5146484, 1.7792969, 0.10644531, 0.21252441, 0.9609375, 0.4091797, 0.7973633, -1.0654297, 1.5654297, 0.48583984, 0.9296875, 0.99072266, 1.6962891, -2.2617188, -0.10595703, -1.609375, 1.9697266, 3.0117188, 0.28198242, 0.93847656, 1.5839844, 1.2314453, 1.828125, -4.6523438, -0.18530273, 1.2939453, 0.50341797, 0.050445557, 3.5292969, 0.13195801, 0.62890625, 0.4831543, 2.4550781, -0.359375, 0.57421875, 1.3066406, 1.6269531, 0.91845703, -0.54248047, 2.5742188, -2.5214844, -1.8632812, -1.2490234, -0.21105957, -2.2148438, -1.578125, 1.1396484, 1.234375, 3.2304688, 0.6381836, -5.234375, -0.0513916, 0.039733887, 0.68652344, -2.3417969, 0.6850586, -0.7895508, -2.8789062, -2.4589844, 1.3740234, 1.1376953, 2.3867188, 0.54296875, -0.65185547, 2.7363281, 0.60058594, 0.33081055, -0.124938965, 2.5214844, -1.9726562, 0.17797852, 0.123168945, 4.5429688, 1.6923828, 1.3964844, 0.62939453, 1.9130859, 1.7802734, 0.9296875, 2.5898438, 0.30786133, 0.21240234, 0.09088135, 0.4494629, -0.21350098, -0.4633789, -2.2207031, -1.0507812, 0.42382812, -1.6582031, -1.3867188, 0.24816895, 0.29589844, 1.5703125, 2.0019531, 0.3491211, -2.2207031, 3.3691406, 2.1953125, -1.2226562, -0.18652344, -0.16967773, 0.50390625, -0.5288086, -1.7255859, 1.5019531, 2.1914062, -0.8051758, -0.6850586, 0.37451172, -1.4228516, 0.72998047, -0.15307617, 2.578125, -2.1816406, -2.0566406, 1.4677734, 1.0449219, 1.1347656, 2.3710938, -0.7817383, -0.6791992, -0.26538086, -2.6074219, -1.0712891, -1.9267578, -2.4101562, 0.55371094, 3.6542969, 1.4140625, -0.37158203, -1.2167969, -3.4316406, 0.94140625, -0.7661133, 2.5644531, -0.51708984, 0.31689453, 0.22216797, -0.94873047, 2.7480469, -1.2099609, -1.5966797, -0.5888672, -1.3105469, 1.4013672, 0.30908203, 1.0556641, 0.85253906, 1.1728516, -0.79541016, 4.0703125, 3.7480469, 0.22570801, 1.7714844, 0.88671875, 0.5029297, -3.9160156, 0.45507812, 0.11981201, 1.2050781, 1.0830078, 0.11791992, -0.5473633, -1.4316406, -1.0517578, -2.2167969, -1.0488281]}, "B000NV6HOE": {"id": "B000NV6HOE", "original": "Brand: Traeger\nName: Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)\nDescription: \nFeatures: MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger\u2019s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts.\nNOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn\u2019t just happen, it\u2019s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills.\nTRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood's unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content\u2014the sweet spot\u2014to maintain a perfect burn-to-smoke ratio\nPAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood\nFEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag\n", "embedding": [-1.9072266, -0.18005371, 0.26782227, -2.6269531, 0.2902832, -0.8901367, 0.6010742, -0.6357422, -0.09161377, -0.72802734, 1.7734375, 1.0185547, 1.171875, -2.984375, 0.62890625, -2.09375, -2.859375, 1.6123047, 1.0878906, -0.1739502, 0.7529297, 0.5390625, -2.8691406, -0.99853516, 2.1875, -0.39526367, 2.6308594, -1.9697266, 0.79248047, 1.1347656, 1.6425781, -0.85546875, 0.40600586, 0.37573242, -0.2536621, -0.75683594, -1.3076172, -0.28735352, -2.0878906, 0.1274414, -1.8964844, -0.88671875, 0.6015625, 2.0664062, -2.8164062, 1.8291016, 0.6225586, 2.09375, -2.125, -1.09375, -0.95166016, 1.8544922, -1.8339844, -1.1767578, 0.8901367, -0.8666992, 0.34448242, -3.6191406, -0.25756836, 0.88427734, 1.15625, 0.20178223, 0.16503906, 1.2851562, -1.6357422, 1.2265625, -0.23901367, -0.9140625, -0.8222656, -0.2919922, 3.8984375, 2.28125, -0.29467773, 0.57958984, -0.796875, 0.43823242, -0.9824219, -0.48901367, -0.18347168, -0.1776123, 1.4570312, 3.6582031, 0.5864258, -0.3408203, 1.9072266, -0.49536133, -2.140625, 1.8076172, 0.52978516, 0.5986328, 1.3857422, 1.0458984, -0.99853516, -3.28125, 2.2617188, -0.6274414, -1.1699219, 0.2578125, 1.1640625, 2.1132812, 1.5283203, -1.4375, -1.2568359, 1.2529297, -4.3515625, -1.3232422, 0.23400879, -0.35864258, -0.18701172, 1.4814453, -2.7148438, 3.4804688, 0.8901367, 2.4472656, 1.2490234, 0.39526367, -0.6376953, -2.8183594, 0.40405273, 1.4345703, 4.2148438, -0.72802734, 0.45825195, 0.0036201477, 0.3725586, 0.24645996, 0.6567383, 2.7109375, 0.6328125, -2.2753906, 1.046875, -2.390625, 0.57666016, 1.2763672, -0.85058594, -1.2421875, 0.44726562, -1.3105469, 0.048583984, -2.6367188, -0.43139648, 1.953125, -1.2734375, 0.96875, -1.6533203, 0.24658203, -0.64941406, 1.5888672, -0.2052002, -1.2099609, 1.7519531, -0.8935547, -1.2431641, -1.9345703, 0.52197266, -0.49414062, -0.017501831, 1.3603516, 1.0224609, -0.025726318, -0.14892578, -0.9609375, 0.1862793, 1.5087891, -2.1152344, -4.4335938, 1.0488281, 0.22424316, 1.0722656, 1.9091797, 2.7128906, -0.4868164, -0.6308594, -0.16833496, 1.2939453, -2.0957031, 0.80322266, 2.2226562, -0.11804199, -0.9433594, -0.31811523, 0.123413086, -0.72802734, -0.5048828, 0.107421875, -0.55566406, 2.1855469, 0.100097656, 0.31152344, -1.4101562, 0.6660156, 0.99902344, -1.140625, -0.24829102, 0.55859375, -2.1035156, 0.87646484, -2.8046875, 0.73779297, -3.0117188, -2.1699219, 1.3671875, -1.8408203, -0.40551758, -0.75146484, -1.2900391, -1.5888672, -0.49316406, 0.73583984, 0.8208008, 1.0507812, -2.0996094, 0.47753906, 1.5605469, -1.984375, -2.4140625, 2.3066406, -0.76171875, 0.9736328, 0.1986084, -1.1591797, 0.7885742, -0.7421875, 2.0878906, 0.05215454, 1.5107422, -1.0058594, 0.68896484, -2.2988281, -2.5019531, 2.171875, 0.8383789, -0.7832031, -0.56103516, -0.50341797, 1.3183594, 0.87597656, 0.5986328, -1.3935547, 3.2597656, -0.9814453, 0.24182129, 0.08300781, -1.8886719, 0.4946289, -1.1992188, -0.9711914, 0.3852539, 1.0917969, 0.77490234, -1.3740234, 1.3544922, 3.578125, 1.9648438, -1.6982422, -0.85302734, -3.0996094, 0.82421875, -2.1035156, -1.2763672, 1.28125, 0.36694336, 1.7285156, 1.2587891, 0.91064453, 0.06060791, -0.31323242, 0.22631836, -1.4970703, -1.3964844, 0.21069336, 0.021575928, -0.10296631, 0.02973938, 2.7636719, 0.12121582, -0.5473633, 1.0664062, -0.9663086, 1.1699219, 0.73095703, 0.15539551, 0.3005371, 0.15527344, -0.3725586, -2.1523438, 0.13671875, -1.5371094, -0.4091797, 2.15625, 6.15625, 0.52978516, -2.6835938, 0.6459961, -0.6879883, 0.49316406, 0.21838379, -0.6479492, -0.41015625, -0.67333984, 2.3847656, 1.3369141, 0.390625, -0.5996094, -0.9248047, 0.6845703, 1.6660156, 0.23754883, 1.3017578, 0.74560547, -0.14282227, -0.02583313, -2.3671875, 0.2142334, -3.3339844, 0.66503906, 0.43286133, -2.2558594, 0.5605469, -1.8701172, 1.6005859, 2.3945312, 2.0214844, -3.140625, -1.3496094, 1.2998047, -0.47460938, 2.1621094, -2.3339844, -0.99072266, 0.26708984, -1.5722656, 0.7348633, 0.06536865, -3.0917969, 1.0361328, -1.0390625, -2.3574219, -0.5571289, 0.7294922, -1.3320312, 0.9189453, -3.0917969, 2.1914062, -2.1035156, -0.70166016, 1.546875, -0.30932617, -0.82177734, 3.46875, -0.6870117, 2.4941406, 0.37109375, -2.2480469, -2.3730469, -0.45898438, -0.54833984, -0.4946289, 0.81640625, -0.44628906, 0.40234375, -1.5224609, -2.2402344, -2.2929688, 0.88427734, -0.7919922, 1.0029297, -2.1601562, -0.027496338, -1.3701172, 0.4489746, -0.48779297, -0.056488037, -0.8173828, -0.4267578, -0.97314453, -0.33422852, 3.0683594, 0.9423828, 2.3085938, -1.7617188, -0.15161133, -0.19677734, -0.5546875, -1.9208984, -2.5058594, 0.84472656, -2.2441406, -1.9794922, -2.3398438, 0.18457031, -1.3300781, 0.37304688, -0.34838867, 0.9003906, 1.2714844, 1.0283203, -1.609375, -1.0859375, 0.98828125, -0.33251953, -0.95458984, -0.2709961, 0.7451172, 1.2529297, -0.15637207, -1.8447266, 1.2998047, 1.5410156, 1.0185547, 2.6914062, -0.9824219, -0.20629883, -1.9091797, 1.5703125, -1.9882812, 1.7470703, 1.5605469, -1.3935547, 0.22045898, -1.0302734, -2.5136719, -0.39208984, 0.16625977, 2.28125, 2.1835938, 0.6611328, 1.3242188, 0.10949707, 0.5566406, 0.15319824, 0.12243652, 0.16918945, 0.32763672, 0.19348145, -2.4804688, -1.6279297, -0.24072266, -0.0051002502, -0.9213867, -1.0234375, 2.0332031, 1.1728516, -1.2050781, 2.0195312, 1.5595703, 0.3881836, -2.2695312, 3.4199219, 0.69873047, -1.5654297, -1.796875, -0.10284424, 1.640625, 2.2734375, 0.9897461, 1.6757812, 3.234375, 1.4345703, 1.3398438, -1.0732422, -1.0341797, 0.5761719, -1.9101562, 1.6279297, -0.24975586, -0.1685791, 0.27856445, -1.5039062, 1.6855469, -2.3828125, 1.8798828, -1.1865234, 0.06335449, 2.21875, -0.59472656, -0.9121094, 2.6132812, 0.77685547, 0.50683594, -1.4169922, 1.0859375, -0.21118164, -0.15124512, 3.5175781, -0.8022461, -1.6962891, -4.296875, 2.1679688, -1.0205078, -1.7314453, 0.26953125, 2.6660156, -0.19226074, -0.71240234, -0.55908203, 0.9765625, -0.7236328, 0.4345703, -1.1650391, -0.0070991516, 1.3544922, -0.6791992, 2.3066406, 2.3691406, 1.0615234, -1.4726562, -2.8886719, 0.44677734, 0.3359375, 0.9550781, -0.2109375, 0.52685547, -0.9609375, 1.1142578, -2.9570312, 1.9189453, 0.88427734, -3.4433594, 2.8945312, 3.28125, 0.40576172, -0.3017578, -0.60302734, 2.3144531, 0.42529297, 0.47973633, 4.1171875, -2.1503906, 0.75146484, -1.1054688, -2.3535156, 1.5332031, 1.2158203, -0.47924805, 3.7597656, -0.016815186, 0.49658203, 2.3867188, -0.13391113, -0.7910156, -4.1210938, -0.87402344, -0.5625, -0.87402344, -0.5371094, -0.36401367, 0.9213867, -0.9638672, -2.0078125, -1.8173828, -0.7470703, 0.3540039, 0.60595703, -2.1679688, 1.59375, -3.3964844, 0.4814453, -1.0146484, -1.8466797, -0.101867676, -1.0244141, 0.62402344, 1.046875, 1.8818359, -0.35986328, 0.8310547, 1.4257812, -1.0048828, -0.046722412, -0.9169922, -0.4399414, -0.12805176, 2.5664062, 1.4443359, -0.8642578, -0.75390625, -1.4443359, 0.24047852, -1.4042969, -1.7236328, -0.30126953, -1.8408203, -1.1621094, 1.7919922, 2.5585938, 1.6708984, 0.36279297, 1.0820312, -1.9765625, 0.015029907, 0.42895508, -2.7207031, -2.6816406, 0.29956055, -1.0136719, 0.34716797, -1.8144531, 0.5649414, -2.1894531, -0.40551758, 1.5019531, 3.3378906, 3.1152344, 1.7685547, 3.7929688, -0.51171875, -0.16442871, 1.9902344, -0.30541992, 0.14294434, -0.6245117, 2.1367188, -0.026153564, 2.1660156, -0.24914551, -0.15734863, -2.46875, 0.7675781, -0.054779053, -0.13952637, 0.30566406, -1.1328125, -0.37060547, 0.1965332, 1.796875, -0.69970703, 1.8818359, -0.48901367, -0.8076172, 1.7617188, 2.1464844, -1.8681641, 0.93310547, 0.9433594, -2.671875, 1.2529297, 2.0527344, 0.28320312, -1.984375, 0.27978516, 1.8144531, 0.63378906, -0.7416992, 1.6289062, 0.9350586, 0.5439453, -0.35595703, 0.65722656, 2.9628906, 0.5078125, 0.55859375, 2.9316406, 1.7480469, 0.26635742, 0.7573242, 2.0117188, -0.6328125, 1.6777344, 0.17565918, -3.0136719, -0.6171875, 1.0556641, -4.3242188, -1.4589844, 2.1796875, -0.8886719, 0.42236328, -1.2958984, -2.1953125, 1.4667969, -1.1689453, -1.6513672, 1.828125, -1.6494141, 1.4707031, 2.3300781, -1.7783203, -2.0605469, -1.0292969, 3.4863281, -3.0273438, -0.3178711, 1.1982422, 1.0087891, 1.2392578, -2.0839844, -1.1035156, -2.2070312, -2.3515625, 0.32006836, 2.4101562, 0.5419922, 1.1679688, 3.8574219, -1.3251953, 1.2402344, -2.9804688, 0.7661133, -3.1757812, -0.72753906, 2.953125, -2.4082031, 2.78125, 0.7241211, 0.25219727, 2.0429688, 1.296875, 0.40966797, -2.4609375, -2.3066406, 2.2851562, -2.390625, -3.8789062, -2.8183594, 0.53027344, 0.045013428, -0.49194336, 2.2851562, -1.0410156, -0.06402588, -0.99853516, -0.6196289, -0.76416016, 0.02293396, 0.45361328, 0.38061523, -3.0175781, -0.16052246, 0.42944336, -2.3808594, 1.6337891, 2.6914062, 1.1064453, -3.4179688, 0.27270508, 0.32226562, 0.5390625, 0.25952148, -0.62109375, 0.15014648, -0.96533203, -0.15734863, 2.21875, -1.0283203, 2.6445312, -1.1640625, 0.88916016, 0.3935547, -1.3300781, 1.0673828, -1.9746094, -1.0087891, 0.42895508, -1.0166016, 2.2773438, -0.8203125, -0.8017578, 0.07946777, -1.1914062, 0.3100586, 0.31103516, 1.0986328, -0.25341797, 1.7617188, 1.3935547, 1.7773438, -0.89941406, -3.09375, -2.2890625, -2.4394531, -1.1464844, -1.9326172, -0.8105469, 3.1972656, 2.2246094, -2.1171875, 1.8261719, 2.0800781, 0.29541016, -1.8095703, 0.0725708, -1.890625, 2.0625, -0.22595215, 0.12243652, -2.4824219, -0.7421875, 0.48901367, 3.796875, -0.20410156, 0.41625977, -0.3334961, -1.4345703, -3.3808594, 1.4755859, 2.46875, 0.33935547, 1.6054688, -0.32299805, -0.4501953, 2.5234375, -1.0751953, 0.7055664, 1.7050781, 2.6816406, -0.9423828, 1.9160156, -1.6728516, -2.7265625, 1.9951172, -2.4648438, -0.5288086, 1.3662109, -1.0996094, 0.95166016, 1.03125, 0.15478516, -0.1965332, -0.14318848, -1.9716797, 1.5527344, -1.1943359, -0.09326172, -2.0371094, 2.7246094, 2.390625, 4.0429688, 3.1484375, 1.0351562, -0.36621094, -1.6162109, -0.11254883, 0.5800781, 1.3359375, -2.7285156, 0.9316406, 0.32666016, -0.66503906, -1.8310547, 1.9970703, -1.6035156, 1.4462891, 0.66748047, 1.9951172, 2.8847656, 2.15625, 2.9003906, 0.17358398, 2.2363281, 0.62890625, -0.38256836, 1.2099609, 1.2666016, 0.37182617, 2.7460938, -0.58496094, 2.4375, -1.0244141, 1.125, 0.42211914, -3.15625, -0.6826172, -3.6152344, 2.5136719, 0.75878906, 1.0234375, -3.7773438, 0.7504883, -2.3476562, 0.15820312, -1.9052734, -1.4589844, -0.043151855, 1.2294922, -0.63378906, 0.49780273, -0.052642822, -1.3505859, -4.8398438, 0.13891602, 0.4885254, -0.7055664, 2.0722656, 2.4824219, 1.3828125, -1.4960938, -0.002729416, 1.1533203, 3.7324219, 1.5947266, 0.16564941, -0.6376953, -2.3320312, 1.0957031, 0.6879883, -0.8359375, -0.9916992, -0.1307373, 0.2286377, -1.6533203, -1.7294922, 1.5029297, -2.6191406, 2.0996094, 2.8867188, -4.0195312, 1.8339844, -0.46801758, -0.6801758, -0.90527344, -0.4013672, -0.35595703, -0.63916016, -3.671875, 1.9326172, 3.3046875, 1.5615234, -1.6396484, -1.7568359, 0.00045776367, 0.8251953, 2.5878906, 1.515625, 1.0068359, -1.0722656, -0.8642578, -0.47680664, 2.2851562, 0.3334961, -1.4697266, 0.8886719, -1.2646484, 3.8203125, 0.6230469, 0.1706543, 0.28222656, -2.3164062, -1.6035156, -3.0996094, -0.67871094, -0.14868164, -3.34375, -0.41357422, 0.09863281, -0.0680542, -0.71240234, -1.0712891, 3.2988281, -0.19519043, 1.3535156, 3.4628906, -2.5820312, -0.6694336, 0.92333984, 0.7783203, 1.2939453, -0.39013672, 1.9257812, -1.9404297, -1.2304688, 3.2734375, 2.5566406, -0.07354736, -2.171875, 1.2089844, 1.5224609, -1.1484375, -1.0927734, 0.9165039, 1.2978516, -2.90625, 2.4746094, -1.4755859, 1.4765625, 3.3925781, -0.18615723, -1.0078125, -0.2849121, -2.7128906, -2.6035156, -1.2900391, -1.046875, 1.2089844, 2.7011719, 0.7910156, 2.2285156, -1.1669922, -2.3515625, -0.8095703, -2.0136719, 3.8984375, 0.059387207, -2.1582031, -1.046875, 0.6166992, -0.040405273, 2.6132812, -1.5390625, 0.32080078, -2.9414062, -1.4404297, -0.45361328, 1.4560547, 0.7636719, 1.2138672, -0.3227539, 3.15625, 0.87841797, -0.08312988, 1.8125, 3.1992188, 1.4150391, -1.5087891, -0.004722595, -0.06530762, 1.0185547, -2.2460938, -1.5976562, -1.6464844, -0.21984863, -0.6850586, -1.6552734, -3.6308594]}, "B0009PURJA": {"id": "B0009PURJA", "original": "Brand: Coleman\nName: Coleman Camp Oven\nDescription: \nFeatures: Portable camping oven lets you bake with confidence at the campsite\nFits on Coleman Propane and Liquid Fuel Camp Stoves\nAdjustable rack can be set at 3 heights for versatile baking\nEasy-Clean Aluminum Steel Construction Resists Scratches and Corrosion\nFolds flat for easy storage and carrying\n", "embedding": [-0.4416504, 0.52978516, 2.4824219, 0.5175781, -0.1015625, -0.5654297, -0.14648438, -0.10974121, -1.9892578, 3.2226562, 0.09820557, -0.44604492, -0.38891602, -1.328125, -0.50439453, -0.4699707, -0.36279297, 1.6943359, -1.0273438, -0.4572754, 3.9042969, -0.6850586, -1.0087891, -1.3388672, 0.7397461, 0.7915039, 4.4179688, -4.9375, -1.0996094, 0.3076172, 1.0117188, 0.14233398, 0.26342773, 2.1015625, -2.5566406, -0.2668457, -2.8125, 2.2871094, -2.1074219, -1.0898438, -1.5820312, -2.0703125, 2.2148438, 0.42041016, -1.1191406, -2.1679688, 1.1503906, -0.58251953, -1.3427734, -0.049560547, 2.0214844, 1.8291016, 2.4140625, 0.67089844, -1.8808594, 0.52246094, 0.54296875, -0.32299805, 2.5410156, -0.41430664, -1.6015625, -0.1204834, -3.8242188, 2.4394531, -0.6118164, -0.54833984, -0.6953125, -0.63427734, -0.23828125, -0.34521484, 2.2753906, -0.9946289, -3.2539062, -1.9785156, -0.11883545, -1.59375, -1.7099609, -0.28808594, 1.1376953, 1.0576172, -0.68115234, 1.1074219, 1.3476562, 0.4699707, -2.0605469, -0.62841797, -0.87939453, -1.0566406, 0.28344727, 0.9838867, -1.6933594, 1.4570312, -1.6523438, -3.2773438, 0.8564453, -1.8720703, -0.21069336, -0.1685791, -1.3056641, 0.64453125, -2.828125, 2.15625, -0.44360352, -1.1552734, -4.203125, -1.2529297, 3.5175781, 0.0009646416, -2.0234375, -0.2434082, -2.5585938, -3.2128906, 1.3544922, 1.6757812, -0.4892578, 1.9785156, -2.2988281, 0.59765625, 3.3867188, -0.6665039, 3.2089844, -0.65625, 1.7236328, -0.057495117, 0.21972656, 2.6445312, 1.4101562, -0.30786133, 1.8798828, -0.015838623, -2.1171875, 0.9135742, 1.9414062, 1.0693359, -4.2109375, -1.0751953, -1.0566406, -1.3037109, -2.5957031, 0.15600586, -0.59765625, 0.7788086, 3.2246094, 0.43798828, -4.15625, -1.2705078, 1.171875, 3.7675781, -0.044311523, -0.7734375, -0.91748047, -0.8828125, -0.46948242, 0.1932373, 1.5126953, 1.4121094, -3.8730469, -2.5625, 2.3203125, 1.2705078, 0.7050781, -2.0058594, -0.6508789, 1.7451172, 0.80078125, 0.67285156, -0.11798096, 0.58203125, -1.1455078, 2.3613281, -0.6088867, -4.6171875, 1.7207031, 0.45458984, 2.0859375, -1.8955078, 0.2541504, 2.0957031, -0.20983887, 0.15783691, -2.4785156, -3.9960938, 0.6879883, 2.0058594, -0.40429688, -1.59375, -0.98535156, -1.0429688, 1.0048828, -0.9160156, -0.46362305, 1.7978516, 0.014457703, -0.24206543, -3.25, -1.3603516, 1.3916016, -0.88964844, -0.39013672, 2.1660156, -0.6166992, -1.1513672, 0.22741699, 1.3476562, -2.5195312, -0.7792969, -0.07861328, 0.2722168, 1.6035156, 2.1933594, 2.3359375, -0.9121094, 1.5517578, -0.90283203, -1.3105469, -2.6230469, 0.41870117, -0.70703125, 2.9121094, 1.1103516, 0.81640625, -0.81689453, -1.6064453, 0.78466797, -2.3300781, 3.0742188, 0.34277344, -1.4638672, -0.13134766, -1.0039062, 2.2714844, 1.9355469, -1.4677734, 0.26000977, -0.0057640076, 2.2910156, 1.5546875, -1.6269531, 0.9199219, -1.9257812, -0.10107422, -0.9067383, 1.4101562, -0.15966797, 0.08856201, -0.9067383, 0.13415527, 0.88427734, 1.96875, 1.3623047, -0.083496094, -0.59277344, -2.9746094, 0.6879883, -1.0830078, 0.88671875, -0.265625, 0.3203125, -1.1650391, -1.8642578, -0.12384033, 1.8769531, -1.3544922, -0.35351562, 1.8398438, -0.24365234, 1.15625, -0.048187256, -2.2832031, 0.8261719, 0.6020508, 1.0009766, 2.8496094, 2.5488281, 1.6777344, -0.8520508, 0.15698242, 2.2597656, 0.94970703, 2.6738281, 0.09094238, 0.5605469, 1.5517578, -3.0351562, -2.4492188, 0.39379883, -0.43017578, -0.83740234, -0.63427734, 0.8857422, 5.1953125, -1.4316406, -1.6494141, 3.4785156, -2.8671875, 3.8984375, 0.20153809, -1.4501953, -1.1435547, 0.46923828, 1.5644531, -0.25048828, -0.15234375, 1.8857422, -3.9902344, 0.6015625, -0.8334961, -1.7558594, 1.8994141, -0.54003906, -1.3476562, -1.2753906, -2.4941406, 1.8242188, -0.14953613, 0.63378906, 2.3105469, -3.0292969, 0.95751953, 1.7333984, 0.65722656, 1.4589844, 0.22509766, -1.5126953, 1.5908203, 1.4501953, -0.9868164, 1.2207031, -0.017715454, -2.8417969, 0.46362305, -2.3789062, 1.8398438, 1.0078125, -1.7578125, -0.6386719, 0.016357422, -3.7675781, 0.015106201, 1.5927734, 0.21386719, 1.4394531, -1.4833984, 1.6123047, -3.6132812, -0.99316406, -0.38745117, 1.3359375, -0.22045898, -0.12512207, 2.4628906, 0.8520508, -1.7236328, -4.2226562, -1.7792969, 1.0976562, -1.2441406, -1.2705078, -2.0292969, -0.26342773, 1.046875, 0.68115234, -0.28881836, 0.5209961, -1.8769531, -0.15612793, -2.9238281, -2.1210938, 3.1035156, -0.8442383, 0.1204834, 0.49072266, -0.74853516, -1.4765625, -0.7841797, 2.328125, -0.035583496, 6.9375, -1.0058594, 0.06323242, -0.24377441, -1.1474609, 0.39135742, -0.59814453, -3.3613281, 0.28637695, -0.39941406, 0.41503906, -0.4128418, -5.6914062, -0.25878906, -1.5693359, 0.17480469, -0.09777832, 1.1386719, -2.0664062, 0.5415039, -1.5253906, -0.4699707, -0.87402344, 0.31323242, -0.39111328, 0.4387207, -1.2011719, -0.60009766, 0.28808594, 1.0087891, -1.1591797, 0.9736328, -0.36938477, -1.53125, 1.3544922, -0.20336914, -0.107055664, -1.6640625, -2.765625, 2.5859375, 0.7988281, 0.5854492, 1.7128906, -1.6748047, -0.16540527, -2.4550781, -0.45629883, 2.4707031, 1.1015625, 2.4140625, 0.31713867, 1.3662109, 0.8339844, 2.1601562, 0.35327148, -0.15441895, 0.9770508, 1.5087891, -1.2060547, -3.1757812, 1.125, 1.7890625, -2.4921875, -1.15625, 0.24890137, 2.2832031, -0.05795288, 2.9101562, -0.35913086, -0.4934082, 0.30419922, -0.49609375, 4.2539062, -0.62060547, -0.080078125, -0.63134766, -0.5654297, 3.2988281, -0.2434082, 0.028869629, 0.9560547, 0.9003906, 2.7070312, 3.7089844, -1.2607422, 0.32861328, 0.94189453, 0.40405273, 0.9243164, 2.0058594, -0.44335938, -0.7866211, 0.27978516, -1.5419922, 2.4804688, -0.8510742, 0.79248047, 0.18261719, -0.8457031, 0.69873047, -0.58935547, -0.40893555, 1.0849609, -1.6835938, 1.765625, -1.0683594, -0.90185547, -0.053100586, -1.5625, -4.0078125, 1.1679688, 2.6484375, 0.47216797, -2.2226562, 1.2910156, 4.140625, -0.21240234, -1.5820312, -4.3398438, 0.2277832, -0.98291016, 1.6484375, 1.2050781, -2.3457031, -0.7714844, -0.21350098, 0.6069336, 1.2910156, -2.421875, -2.1542969, -1.3964844, -0.81933594, 0.5415039, 0.44018555, 0.8535156, 1.6435547, -0.64697266, 0.27441406, -2.3984375, -0.005962372, -0.7451172, -1.9609375, 0.22033691, 0.41674805, 0.19787598, -1.2089844, 0.47607422, 3.3457031, -3.3085938, -1.6113281, 0.9716797, -0.75878906, -0.15881348, -0.55810547, -1.5566406, 1.2919922, 1.3134766, 0.83203125, 1.015625, -1.6279297, 0.35766602, 0.42358398, 0.23535156, -1.6435547, -2.7089844, -0.42700195, 1.5517578, -1.8007812, 0.44799805, 2.1679688, -1.1376953, -2.9277344, -0.83740234, -0.34423828, 0.12231445, 0.8388672, 1.5986328, -1.7666016, -0.023391724, -2.3027344, 2.4453125, 0.8125, 0.56640625, -0.24060059, 1.7792969, 1.1455078, -1.3300781, 3.0253906, 0.6425781, 0.5961914, 0.82470703, 2.4472656, 0.7529297, 0.1694336, 0.00579834, 1.3662109, -0.2614746, 1.1181641, -2.2304688, -0.70410156, -2.6113281, -1.0791016, -0.31298828, 0.60546875, -0.26513672, -1.8291016, 1.8798828, 1.6142578, 0.23937988, 0.9272461, 0.69140625, -0.62060547, 1.4423828, -0.17077637, -0.3166504, -1.5585938, 0.40771484, -0.008354187, -1.7392578, 1.3564453, -0.34960938, 0.38842773, 2.3925781, 0.35864258, -1.7822266, 0.39208984, 0.734375, 1.859375, 2.3320312, -0.56884766, -3.1640625, 0.45214844, -2.15625, 0.26123047, -0.359375, 0.48608398, 0.0129852295, 2.4492188, 1.0732422, -1.6679688, -0.8613281, -1.5175781, -0.25463867, 0.859375, -1.8486328, 0.39086914, -1.4492188, 1.2294922, -1.6962891, -0.6411133, 1.5126953, -2.1796875, 0.26367188, -0.20056152, 2.4648438, -0.7783203, -1.0390625, -0.80029297, 0.5097656, 0.8256836, -2.8300781, 0.33618164, -1.4003906, 1.3613281, 1.2529297, 2.0722656, 0.3857422, -0.47338867, 2.3125, 1.0791016, -1.0869141, -0.68847656, -0.11401367, 1.1064453, -1.71875, 2.0566406, 1.0605469, 0.17907715, 1.7929688, 0.8408203, 1.0283203, -0.29541016, -0.81933594, -1.4765625, 4.0390625, -2.3847656, -2.9902344, 1.6484375, 1.0605469, 0.39892578, 2.4121094, -0.19458008, 0.10882568, -0.9824219, -1.9794922, 0.10723877, -1.3769531, -0.29956055, 0.2166748, -1.8056641, 0.44482422, -1.6269531, 1.9384766, 3.6054688, 1.3115234, -2.0800781, 1.015625, -2.7714844, 1.6142578, -1.4335938, -3.4257812, -1.9101562, -0.9536133, 1.5205078, -0.10144043, -0.1776123, 0.6699219, 2.40625, -0.77490234, -1.4589844, -2.203125, 3.2910156, -3.5332031, -0.17663574, -1.3183594, 0.66748047, -1.4179688, -0.36157227, 0.6538086, -1.6083984, 2.3242188, 0.7055664, 1.0244141, 0.52734375, 1.2646484, -2.6855469, -3.3085938, 0.64697266, -1.4794922, -0.27246094, -1.7949219, 1.15625, -2.140625, -1.9091797, -0.71777344, -2.2363281, -1.8515625, 0.7104492, 1.5419922, -0.117004395, -0.3864746, 0.8671875, -0.043182373, 0.4873047, -0.91748047, 2.2871094, -0.40478516, -2.1132812, -1.3974609, 1.1582031, -0.88427734, 0.8388672, 0.44262695, 1.0351562, 0.9550781, 2.0351562, 1.8583984, 0.59277344, 2.6308594, 0.23925781, -0.27026367, 0.2479248, -0.34960938, 0.2578125, 2.1289062, -0.796875, 0.44873047, -1.5751953, -0.47998047, -0.64990234, -0.024978638, -0.60546875, 1.7041016, 1.5976562, -0.1204834, 2.4375, -0.7265625, 1.2822266, 1.5986328, 0.2890625, 0.21386719, -2.9433594, -2.9296875, 0.1673584, 0.011650085, -1.4404297, -1.3105469, 1.0566406, 1.8251953, 1.296875, 0.9916992, 0.34814453, 3.1210938, 0.6542969, 0.8959961, -0.68847656, 2.5039062, 2.0039062, -1.3505859, -0.97509766, -2.5351562, 1.2666016, 0.66064453, 0.36865234, -1.2226562, 0.4453125, -1.0351562, 1.5175781, -0.703125, 2.0410156, 1.3701172, 1.3037109, -0.30932617, 2.6347656, 3.5703125, -1.2705078, -0.4050293, -1.5214844, 0.27246094, -3.1640625, 2.5976562, -0.7680664, -1.0292969, 2.8125, -2.9765625, 0.7993164, -1.1660156, -0.2541504, 0.56396484, -1.8798828, -1.3876953, -1.78125, 0.28808594, -1.4013672, 3.8730469, 0.50927734, -1.8730469, 1.1787109, 0.9199219, -1.1201172, -0.46484375, 2.2167969, 1.6679688, -2.1660156, -0.055999756, 0.87109375, 0.5673828, 3.3144531, -1.1484375, 2.4277344, -0.49194336, -0.48950195, 1.9550781, 1.8291016, 3.4199219, 2.546875, 4.0390625, 1.8027344, 3.3671875, -0.37841797, 3.2617188, 1.2519531, 0.2878418, -0.61865234, -0.21350098, -3.2714844, 0.8564453, -0.97314453, -0.25756836, -0.34179688, 2.0683594, 0.27441406, -0.8261719, -1.8984375, 2.5898438, -0.56689453, -2.3105469, 2.1757812, 1.3876953, 2.7246094, 0.07385254, 0.34423828, 1.5332031, -0.9375, -1.1240234, -0.21911621, -0.56640625, -2.0253906, 1.1962891, -0.94921875, 0.9892578, 0.7885742, -0.042816162, -1.5644531, -2.8222656, -0.9003906, -1.2919922, -0.03112793, 1.5458984, 1.4013672, 0.1697998, 1.8007812, 0.52783203, -0.85498047, 1.1201172, -0.5073242, 0.84472656, 0.13598633, 2.8066406, 0.0043411255, -0.70947266, 0.3864746, -0.99560547, -1.7080078, -1.6972656, 0.055664062, 1.0947266, 3.0898438, -0.016815186, -2.1269531, 1.5556641, 0.8154297, 4.1015625, -1.7519531, 1.9726562, 0.8857422, -1.5488281, -3.1542969, -0.9506836, -0.18457031, 2.8730469, 1.4482422, -1.6757812, 0.64746094, -0.6435547, 2.1640625, 0.28710938, 0.81689453, 0.99609375, 0.8125, -0.46411133, 2.6523438, 1.7763672, 2.4492188, 0.08111572, 1.8876953, 2.1210938, 0.5283203, -1.0390625, -1.609375, 1.5722656, 0.0023384094, 0.023117065, -1.2753906, -1.1513672, -1.2392578, 0.5307617, 0.81396484, -1.765625, 1.2138672, 0.06439209, -0.0690918, -1.1171875, 0.7607422, 0.036376953, -0.31518555, -0.051940918, -1.8544922, -0.8432617, -1.1376953, -0.16003418, 1.6523438, -0.19311523, -0.38916016, 0.3474121, 0.8339844, -0.32250977, 0.9746094, 2.0332031, -1.2734375, -0.6816406, -0.65527344, 0.66796875, -1.5126953, -0.22131348, -0.92285156, 1.4013672, -0.81103516, 2.9902344, -1.75, 0.035491943, 0.34106445, -1.1074219, -0.86865234, -1.3359375, 0.24902344, 0.8720703, 3.1425781, -0.8496094, 0.92529297, -1.2285156, -3.8183594, -2.8261719, -2.4882812, 0.40356445, 1.5253906, -1.1025391, 0.6904297, 0.79248047, 0.80859375, -1.6386719, -0.13305664, -0.5366211, 0.32128906, 1.5244141, -1.3681641, -1.0390625, 3.0703125, -0.30615234, -1.1376953, 1.84375, 1.2148438, 1.2324219, 2.5742188, 0.35424805, 0.36816406, -3.3925781, 0.53759766, -1.0449219, -1.7333984, -2.5, 1.2685547, 1.59375, -0.8964844, -0.6694336, -2.8125, -1.0380859]}, "B004C2OF62": {"id": "B004C2OF62", "original": "Brand: Weber\nName: WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001)\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n6 Stainless steel burners\n60,000 BTU-per-hour input\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n10,600 BTU-per hour input sear burner\n", "embedding": [-1.3408203, 0.84521484, 1.7392578, -0.15124512, -0.38085938, 0.08526611, -0.031311035, -2.4238281, 0.5917969, 1.4892578, 2.4414062, -1.3466797, -1.0078125, -3.4101562, -0.15283203, -0.12634277, 3.3496094, -0.4597168, 0.07745361, 1.6689453, 0.21350098, 1.0449219, 3.7792969, -2.0585938, 1.1298828, 0.6435547, 3.4023438, -4.421875, -2.4414062, -2.4882812, 0.9140625, 0.75927734, 0.87939453, 2.2109375, -3.9960938, -2.4160156, -3.1171875, 1.3134766, -2.4667969, 0.81103516, 0.7241211, -2.3847656, -0.1586914, -1.1484375, -2.4960938, 1.0068359, 1.2158203, -0.13793945, -3.0136719, -0.8666992, 3.1523438, 1.5478516, -0.91503906, 1.5976562, -1.3193359, 1.7949219, 1.8525391, -1.9023438, 0.6176758, 0.03451538, 2.2871094, -0.5, -1.6943359, -1.515625, -2.0703125, -0.74658203, -1.1142578, 0.58447266, 0.80908203, 1.4140625, 3.4472656, -2.1464844, -1.6962891, 2.03125, -0.09185791, -1.3173828, -2.3496094, 2.9667969, -0.94677734, -0.89208984, -1.765625, 1.8613281, 2.7285156, -1.3974609, -0.09857178, 1.5371094, -0.41723633, -2.8964844, 0.89746094, 0.13415527, -0.6503906, 1.0087891, -2.46875, -2.3867188, 2.1660156, -1.0195312, 0.40429688, 0.70166016, -0.6245117, 0.5073242, -1.2871094, 2.7265625, 0.07659912, 0.054016113, -2.2695312, -2.8886719, 2.0058594, -0.066467285, -3.7402344, -1.9775391, -1.0732422, 1.1748047, 0.61572266, 1.6816406, 1.3662109, -0.21447754, 1.2177734, 2.8398438, 1.0166016, 0.90966797, 2.2636719, -1.3740234, 0.10845947, -0.9189453, -1.7060547, -0.09741211, -2.3164062, 2.0546875, 2.7246094, -2.5097656, -0.3894043, -1.5136719, 4.0234375, 1.1386719, 0.43164062, -1.1142578, -1.7636719, -0.8149414, -3.0214844, 0.2890625, -2.0371094, 1.6455078, 0.016433716, -1.5625, -3.6953125, 0.61816406, -0.10760498, -0.044067383, -0.19909668, -1.1142578, -1.1123047, -2.2089844, 0.1895752, -3.8574219, 1.4677734, -0.8222656, -0.5732422, 1.15625, 3.5, 2.7597656, 2.3808594, -0.35180664, -2.15625, -0.75439453, 1.3662109, -2.3144531, 0.89453125, 1.2060547, 0.024368286, 1.8310547, -0.5961914, -0.8647461, 0.0040893555, 1.2099609, 1.7783203, -0.94433594, 0.25048828, 2.2128906, 0.35253906, -0.7548828, 1.0449219, -2.5332031, 1.0078125, -1.0556641, -0.72216797, -0.92285156, 3.2402344, 1.546875, 2.1777344, -1.5361328, 0.4873047, -0.43676758, 2.0566406, -1.4375, 2.3066406, -0.8491211, -3.1132812, -1.921875, 1.7724609, -0.87646484, 0.10473633, -0.38623047, 1.15625, -0.3059082, -0.3178711, -2.8515625, -1.0302734, -2.8730469, -0.45043945, 0.9404297, 1.84375, -0.7426758, 0.49853516, -1.2822266, -0.41479492, -0.3659668, 2.3632812, 0.6923828, -0.35864258, 3.9882812, -0.8491211, -0.093566895, 1.5791016, 1.2802734, 0.9199219, 0.5966797, 0.21228027, 0.9609375, -1.5458984, -1.6767578, 4.2421875, -0.5209961, -0.5053711, 1.5546875, 0.2849121, 3.2714844, 1.7128906, -1.2089844, 0.67578125, 0.72509766, 0.23876953, -0.36938477, -2.7285156, -1.1494141, -1.1992188, -1.6943359, -1.6337891, 1.8017578, 2.328125, 1.5839844, 0.120788574, 0.3100586, 1.2333984, 2.0546875, -0.5263672, 0.49536133, -1.8398438, 0.8457031, -0.15637207, -2.6542969, 1.5048828, 0.12731934, -0.94189453, 0.61328125, 1.4423828, -2.6347656, 1.3544922, 1.6855469, -1.703125, -2.6621094, 0.19689941, 0.43896484, 1.3886719, -3.015625, 2.4179688, 0.6425781, -1.2646484, 3.6152344, 1.5332031, 0.14453125, 0.68652344, -1.6904297, 1.7988281, -2.6386719, -1.1914062, 0.9428711, 1.0117188, -0.59716797, -1.6064453, -0.15234375, 4.8320312, -0.8261719, -2.4160156, 1.6904297, -1.3847656, 0.85058594, 2.90625, 0.77001953, -0.3251953, 0.47705078, 2.8515625, 0.16577148, 0.7036133, 2.5039062, -1.2548828, -2.234375, 0.94873047, -2.1816406, 0.1697998, 1.2685547, -1.578125, -1.2089844, -1.6279297, 1.8037109, -2.6425781, -0.06329346, 3.28125, -3.0644531, 0.12036133, -0.57373047, 1.4863281, 0.21398926, -2.0019531, 1.4541016, -0.61621094, -0.64990234, -0.3244629, 0.040039062, -0.44726562, 0.25341797, 0.2536621, -0.66259766, -0.72509766, -3.21875, -2.1054688, -1.3710938, -2.984375, -2.1328125, 0.008651733, -0.3828125, 0.044830322, 1.4863281, -3.1308594, -1.7167969, -0.2578125, -1.6230469, -0.42333984, -1.1318359, -0.13244629, 0.35986328, 0.62939453, 1.4511719, -0.8354492, -2.3964844, -0.29003906, -0.8305664, 0.5942383, -0.73779297, -0.42041016, 0.11987305, -0.6196289, 0.9238281, -0.7739258, 2.1347656, 2.1210938, -1.7333984, -0.5732422, -3.109375, 0.20666504, -3.046875, 1.4736328, 0.07232666, 2.5253906, -3.2167969, -1.5771484, -0.3474121, 0.1184082, 4.0078125, 0.96435547, 3.40625, -0.66015625, 0.8022461, 0.5131836, -1.0869141, -1.53125, 0.7006836, 1.8222656, -2.0175781, 1.8232422, -1.5761719, 0.13476562, -1.6982422, -0.34936523, -0.68896484, -0.5336914, -1.234375, -0.45507812, -1.7626953, 0.9086914, -0.8105469, 1.0048828, -0.71972656, -1.1191406, -3.2285156, -1.1347656, -1.5566406, -1.3457031, -0.68066406, 0.99365234, -1.2128906, 1.5498047, 1.6728516, -0.56152344, 0.57910156, -0.8569336, -2.7558594, 2.40625, 0.41992188, -2.4472656, 2.5390625, -2.125, -0.84472656, -2.1289062, 0.9194336, 2.484375, -0.30981445, 1.8974609, 1.7724609, 1.3623047, 0.60546875, -1.2236328, 0.30615234, -2.3867188, 0.122558594, 2.8574219, -1.953125, -1.2753906, 0.52246094, -0.11431885, -3.0078125, 0.19506836, 3.2421875, 2.4746094, 2.4082031, 1.9667969, 0.54052734, 2.1757812, -2.046875, 0.9526367, 0.7324219, 0.07104492, -0.06744385, -0.7133789, 2.1113281, -1.1816406, 2.4589844, 1.5839844, 2.25, 3.3144531, 0.064819336, 0.28125, 0.26708984, -0.8881836, 0.69921875, 1.59375, 0.5859375, 2.3476562, -1.0400391, -1.4394531, -2.2070312, 0.33618164, 0.32470703, -0.29956055, -2.6015625, 1.640625, -1.8701172, 0.6748047, 0.23144531, -0.7314453, 1.8818359, -1.1162109, -0.7714844, -0.95703125, -0.5004883, 2.2695312, -0.75439453, 0.45361328, -2.09375, -0.17785645, -0.94091797, -2.578125, 1.1298828, 3.1542969, -1.3632812, -0.76904297, -0.58984375, -1.3203125, 0.18444824, 2.5371094, -0.6176758, -0.19128418, 0.8964844, -2.7089844, 1.4267578, 1.9648438, 0.94091797, -1.1660156, -0.9682617, 0.5776367, -0.515625, 0.7841797, 2.4433594, 0.28686523, -2.8261719, -0.30419922, -3.125, -1.3955078, 0.60546875, -2.125, -0.42407227, 2.4980469, 2.4980469, 0.29516602, -0.47143555, 2.0625, -0.7993164, 0.16333008, 2.4472656, -3.5683594, 0.3154297, -3.9179688, -3.6621094, 1.0117188, -2.515625, 0.5517578, -0.27490234, 1.0800781, -0.4230957, 1.96875, -0.46240234, -1.0751953, -0.6582031, -0.38745117, -0.17321777, 0.008087158, 0.9086914, -1.5361328, 0.02407837, -0.99072266, -2.9179688, -0.39990234, 0.6411133, 1.4921875, 0.14526367, -4.3671875, 0.30249023, -1.5615234, -0.61035156, -1.1582031, -0.9316406, 2.1269531, -0.7416992, 0.16357422, -3.1523438, 1.8544922, 0.609375, -0.9223633, 0.8720703, 1.8867188, -0.3713379, -3.3359375, 1.0371094, 0.5996094, 3.3632812, -0.8183594, -1.6337891, -0.5600586, 0.5283203, 0.6357422, -1.1142578, 0.42041016, 0.8388672, -1.8808594, 0.5522461, 1.9365234, 2.5722656, 1.2275391, 0.14050293, -2.5390625, -0.2944336, 0.9213867, -1.5273438, -3.1074219, -1.421875, 0.64404297, -2.1035156, -0.107177734, -2.7246094, -0.16040039, 0.21533203, -0.9951172, -3.0878906, 2.875, 3.6601562, 1.7636719, 1.7265625, -1.5957031, 2.0859375, -1.6601562, 1.7519531, -1.5302734, 2.546875, -0.28076172, -1.3056641, 3.0898438, 1.0039062, -0.6269531, 0.44628906, 1.3007812, -1.3369141, -1.7871094, -2.2109375, 0.5107422, -1.3769531, 0.5751953, 0.9194336, 0.003622055, 2.7890625, 0.72021484, -2.0332031, 0.75878906, 0.97216797, -2.5351562, 0.4194336, 0.45996094, -0.60498047, 0.07751465, 2.5429688, 3.0253906, 1.15625, 0.19360352, -0.56640625, 2.390625, -0.28808594, 1.3476562, 2.1953125, 1.9287109, -0.55322266, -0.41186523, 1.9199219, 2.296875, 1.5966797, 3.2167969, 1.2402344, -3.0488281, 1.8007812, 0.91552734, -2.7265625, 2.1445312, 1.1845703, -0.984375, 1.6601562, 0.9692383, -3.8964844, -0.32983398, 2.1816406, -1.4404297, 1.8339844, -0.8544922, -0.97021484, 2.6328125, -0.8364258, -0.0040740967, 0.6821289, -0.009269714, 1.78125, 1.1699219, 0.3076172, -1.0810547, 2.0664062, 1.0488281, -1.4501953, -1.0576172, 2.8808594, 0.34057617, -0.8911133, -0.9970703, -0.068481445, -0.14562988, 0.18249512, 3.71875, 1.1962891, 1.8105469, 0.13317871, 2.1777344, -1.1884766, -0.18896484, -1.8730469, 3.6640625, -1.6708984, 0.16113281, 0.096069336, -3.75, -1.0166016, -2.390625, -0.8515625, -0.55126953, 1.5166016, 1.3359375, 0.070739746, 0.76464844, 0.2602539, -1.8457031, -4.0585938, 0.37475586, -0.076171875, 0.93408203, 0.6748047, 1.4492188, -1.5400391, 0.6699219, 1.3115234, 0.25708008, -1.7851562, 0.44555664, 0.0077819824, -0.11553955, -0.070373535, 0.35009766, -1.3388672, -0.4501953, 1.0927734, 1.8457031, 1.3896484, -2.8476562, 0.48461914, -0.9746094, -0.7783203, -0.6245117, 2.2441406, 1.4863281, -0.9199219, 1.0390625, 0.71728516, -0.91796875, 2.6015625, -2.6875, -1.84375, 1.8642578, -2.3359375, 1.9326172, -0.48266602, -0.49487305, 0.21130371, -1.5732422, 1.1728516, 1.9462891, 1.1259766, -2.0683594, -0.6020508, -0.25854492, -2.7167969, 0.7504883, -2.0039062, 2.3066406, 1.6630859, -1.1621094, -1.0390625, -1.3730469, -1.9492188, 1.4238281, -3.1171875, -1.8701172, -1.8525391, 1.7958984, 0.24304199, 1.1132812, -0.37963867, 1.953125, -1.2910156, -1.5927734, 0.5209961, -0.87353516, 3.6972656, 2.8105469, -0.6948242, 0.025802612, -1.203125, -0.9008789, 2.1660156, 1.1357422, -1.9941406, 0.6713867, -0.12207031, 1.421875, -1.0888672, 0.6069336, 0.859375, 0.22473145, 0.2607422, 0.44848633, 2.7675781, -0.62060547, 1.5791016, 0.9375, 0.4736328, -1.2001953, 3.8574219, 1.7451172, -1.71875, 1.9921875, -1.6591797, 0.5678711, 0.79052734, -0.73535156, -1.34375, -0.5253906, -0.69677734, -2.0332031, -1.5517578, -2.8476562, 1.0732422, 0.76708984, -2, -2.0742188, 1.3417969, -0.22692871, 2.1855469, 0.79785156, 1.3847656, -1.4345703, 1.5703125, 0.4260254, 1.0849609, 1.3828125, -3.1757812, 1.0195312, 2.3730469, -0.5644531, -0.3947754, 0.7871094, 1.2949219, 3.6445312, -0.34887695, 0.68408203, 2.9316406, 1.4775391, 2.359375, 0.9428711, 1.2666016, 0.47705078, -0.7211914, -1.2285156, 0.44604492, 0.5551758, 0.8588867, -0.4567871, 1.6835938, -1.8017578, 0.059539795, 0.27124023, -1.1318359, 0.40649414, -1.7353516, 0.09942627, 1.2070312, 2.1796875, -3.2324219, -1.71875, -1.5185547, 0.91015625, -0.0060195923, -1.0800781, 1.7929688, 0.1821289, 1.84375, -1.2802734, -0.31323242, 1.7412109, -4.546875, 1.7685547, -0.3618164, -1.4765625, -1.0654297, -1.0292969, 0.75146484, 0.46289062, -1.7314453, 1.1298828, 4.5195312, -0.067871094, 1.4550781, -3.8476562, -0.19946289, 0.9423828, 3.9589844, 0.5991211, -0.18481445, 0.59765625, -0.14038086, -4.9609375, -3.8105469, 3.2714844, 2.0234375, 0.055145264, 2.7871094, -1.4257812, 3.21875, -0.18579102, -0.30004883, -2.296875, 0.38964844, -0.29638672, -1.3359375, -2.0527344, 0.95703125, -2.0820312, -0.2685547, -0.095703125, -0.2590332, 0.36743164, 1.5263672, 2.0078125, 0.90722656, 2.0058594, 0.91015625, 0.34594727, -0.42456055, 3.3125, 0.31445312, -1.4111328, -2.1582031, 0.68066406, 1.3574219, -0.026412964, 0.33544922, -0.7973633, -0.9868164, -1.8359375, -0.04815674, 0.5444336, -1.2841797, -1, -0.10748291, 1.1201172, -3.1386719, -0.7680664, 3.0820312, 1.96875, 1.421875, 2.0273438, 1.6933594, -2.3242188, 0.17163086, -0.14343262, -0.08886719, 0.125, 0.81347656, 1.4804688, 0.98876953, -0.7758789, 1.0673828, 0.8461914, 1.2832031, -0.29736328, 0.67285156, -0.8208008, -0.80078125, -0.7524414, 1.5292969, -0.89160156, -0.87353516, 3.6933594, -0.44848633, -0.57958984, 1.7402344, 0.46923828, 0.06488037, -0.6616211, -2.6640625, -0.5800781, -0.3815918, -1.2324219, 0.97753906, 2.6582031, 0.8017578, 0.35327148, -2.015625, -2.3808594, -0.9765625, -2.8105469, 1.1376953, -2.1035156, -2.0878906, 0.02128601, 1.6083984, 2.3984375, -0.22924805, -1.1259766, -1.4667969, -0.69140625, 0.9345703, -1.0224609, 1.2421875, -0.5776367, -0.12347412, 0.34472656, 2.0351562, 1.9814453, 1.0800781, 0.7939453, 3.3867188, -0.5205078, -2.3730469, -0.36914062, 0.06744385, -0.5883789, -0.69970703, -1.0566406, 1.7910156, -0.8803711, -1.7978516, 0.25219727, -1.7519531]}, "B07JQBVK9K": {"id": "B07JQBVK9K", "original": "Brand: Techwood\nName: Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
by Product Liability Insurance of United States.

- 120V 60Hz 1600Watts

- Product dimensions: 17.9 x 11 x 14.8 inches

- Humanization Features,Rotatable Venting System,Let Safety Be With You
Fully electric system, 1600W power operated and a variable temperature controller give you a
happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
happy hours come with safety assurance for you and your family, friends. and apartment
approved,your landlord will love this grill just as much as you do.

- Adjustable Temperature Control
Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
to get the best results on any kind of food.

- 15+ servings,Easy To Use and Install and Maintain Tidy

The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
cookies, potatoes and many other delicious foods and complete meals.

- Foldable warming grill : keep the food in temperature for good taste.

\nFeatures: \ud83c\udf56\u3010 FAST-HEATING\u3011 Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere.\n\ud83c\udf56\u3010HIGH CAPACITY\u3011 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n\ud83c\udf56\u3010APARTMENT-APPROVED\u3011Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can\u2019t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n\ud83c\udf56\u3010TEMPERATURE CONTROL\u3011The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean\n\ud83c\udf56\u3010Get Yours Now, Risk-Free\u3011Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.\n", "embedding": [-3.1054688, 1.0283203, 1.6181641, 0.04449463, 0.90966797, -0.62597656, 1.9873047, -0.34570312, -2.4882812, 1.5693359, 0.84375, 1.7929688, -0.81152344, -2.8730469, -1.1914062, 0.4711914, 1.0185547, 0.094177246, 0.5185547, -0.703125, 0.49780273, -0.016342163, -0.3503418, -2.296875, -0.14428711, -1.3896484, 2.7519531, -1.9824219, 0.2055664, -1.1162109, 0.99365234, -0.20788574, 0.19177246, 2.0957031, -1.7177734, 0.19128418, -1.2373047, 2.7089844, 0.43774414, 0.111206055, -0.95654297, -2.9375, 1.921875, 2.5234375, -4.015625, -0.23815918, -0.30444336, 3.1425781, 0.23669434, -0.7207031, 2.6074219, 0.82666016, 0.9160156, 0.07763672, -1.4785156, -0.14331055, -1.1835938, -3.5605469, 1.1279297, -1.5585938, 2.4667969, -2.21875, 0.7998047, 2.4589844, -1.4482422, -1.890625, 0.105407715, -0.52685547, -0.72998047, -0.98876953, 3.1503906, -1.3876953, -0.9160156, 1.390625, -1.0234375, -1.0869141, -2.7890625, 2.015625, 1.3496094, -0.52734375, -2.3652344, 2.0019531, 1.2529297, -2.2929688, 0.37451172, 0.89941406, -2.4824219, 0.107055664, 2.1699219, 2.328125, 1.4355469, 1.0097656, -1.7753906, -3.9433594, 2.0722656, -0.24743652, -0.79589844, -1.2109375, -0.9667969, 3.765625, 1.0039062, 0.45288086, -1.0595703, 0.22277832, -3.0195312, -1.5830078, 1.7763672, 0.72998047, -1.2802734, 0.54345703, -1.4648438, 1.6113281, 0.26489258, 1.0625, 2.2109375, -0.2163086, -0.25170898, 1.0488281, 3.2480469, 3.171875, 3.6699219, 0.41308594, 1.5107422, -2.0742188, -0.37109375, -0.7368164, 1.0107422, 2.2773438, 3.1875, -1.4306641, -1.2978516, -0.63720703, -0.105041504, 1.5644531, -1.9609375, -2.6347656, -1.2597656, -0.90234375, -2.4960938, -0.15332031, -1.6171875, 1.2236328, 2.3925781, -0.27026367, -2.3457031, -0.47192383, 0.19104004, -0.018478394, -1.2949219, -1.5068359, -0.16430664, -1.8085938, -1.3251953, -2.96875, 0.18408203, -0.42382812, -1.4277344, 0.30419922, 2.0859375, -0.8911133, 0.99658203, -1.9267578, -2.1054688, 0.13085938, -0.18041992, -1.5146484, -0.38183594, 2.2402344, 0.1616211, 1.8310547, 0.73876953, -0.6972656, 0.7763672, -1.1201172, 1.7919922, -1.1953125, -0.79003906, 3.3945312, 0.94873047, -1.2851562, 2.2460938, -0.7792969, 0.74853516, 0.8251953, -0.69189453, -0.68066406, 1.0107422, 0.13085938, 0.21728516, -2.6601562, 1.7373047, 0.3408203, 0.0748291, -1.1416016, 1.6972656, -0.2364502, -0.19604492, -1.9824219, 2.1679688, 0.67822266, 1.1972656, 1.2392578, -0.6113281, -1.671875, -1.5693359, -2.3515625, -3.0332031, 0.008636475, -1.7597656, 1.2724609, -0.5703125, -1.09375, 0.6435547, -0.98583984, 0.9638672, -3.4746094, 2.2714844, -1.5429688, 0.8984375, 2.9472656, -0.65966797, 0.008140564, -0.05770874, 3.4960938, -1.1689453, -0.06951904, -1.1943359, -0.48657227, -0.890625, -0.3527832, 1.1582031, -0.4482422, 1.9453125, 0.3017578, -1.1347656, 1.8710938, 1.7382812, -0.047790527, -0.60498047, 1.1347656, 0.9682617, -2.3652344, 0.5673828, -0.45581055, -1.8066406, -0.93359375, -4.4140625, 4.2460938, 0.3972168, -1.2148438, -1.3203125, 0.27319336, 1.2148438, 2.4492188, 0.52197266, 0.7060547, -0.6425781, 0.41430664, -3.9453125, -1.9609375, -0.25073242, 1.5976562, -0.44360352, 0.6303711, -0.8364258, -1.0488281, 4.5742188, 0.14208984, -2.6953125, -2.1289062, 0.73583984, 0.43188477, 0.4970703, 1.2636719, 1.4931641, -1.0292969, -0.76660156, 0.20263672, -0.2548828, -0.2479248, 0.61816406, 1.2480469, 3.4746094, -0.77685547, -0.5986328, -1.8476562, -0.37890625, -0.29858398, 1.8193359, 0.15478516, 4.6445312, 0.38867188, -3.7597656, 3.6875, -4.9335938, 0.63183594, 1.3271484, -1.3945312, 0.41235352, 0.7402344, 2.4140625, 1.0019531, -1.1347656, -0.37426758, -2.8925781, -0.5908203, 0.016540527, -2.4492188, 0.45654297, 1.6015625, -1.1103516, -2.3808594, -1.7246094, -0.09173584, -3.5371094, 0.0309906, 0.85009766, -1.859375, 1.5947266, 2.0058594, -0.6386719, 1.2695312, -0.3791504, -2.2792969, -2.4570312, -0.30615234, 0.33398438, -0.6333008, -0.24377441, -3.3417969, 0.20593262, -1.5205078, 1.7246094, -1.7148438, -1.5517578, -1.9892578, -2.1992188, -3.0917969, -0.8925781, 0.89746094, -1.7714844, 0.8178711, -1.4355469, -1.9306641, -1.0009766, -0.37280273, -0.9082031, 0.24572754, -0.20251465, 2.7636719, 0.68066406, 0.091918945, 2.6894531, -4.375, -0.80322266, 0.8334961, 1.0703125, 0.36010742, -3.1503906, 0.18725586, -1.3642578, 1.1269531, -0.6113281, 0.2154541, 1.2724609, -1.0585938, -1.2070312, -3.2421875, -0.13476562, -0.8828125, -0.9003906, 0.75878906, -0.40820312, -1.6503906, -1.0595703, -1.0068359, 0.21655273, 3.2382812, 1.0751953, 3.6621094, -0.29345703, 1.2753906, 0.0090789795, 0.54785156, -1.1298828, -2.7304688, -0.8569336, -1.8955078, -0.57470703, -1.7607422, 0.76123047, -1.046875, -0.3708496, -1.4257812, 1.6396484, 0.14855957, -0.15014648, -1.9033203, -0.24072266, -0.13317871, -1.0742188, -0.96728516, -0.1685791, -2.875, 0.48120117, -1.5253906, -1.53125, 0.78564453, 1.5019531, 0.09509277, 3.5585938, 1.0166016, -0.34960938, -0.53515625, 1.8242188, -2.3222656, 3.5859375, -0.09222412, -2.0527344, -0.17565918, 0.5786133, -0.9394531, -1.1123047, 0.7104492, 2.765625, 0.80859375, 1.4824219, -0.27416992, -0.13452148, 1.7001953, 2.4589844, 0.1796875, -0.48583984, 0.0647583, 2.4296875, -3.2441406, 0.06359863, 1.1191406, 1.9492188, 1.1386719, -0.73828125, 1.8417969, 2.0078125, 1.8525391, 2.5097656, 2.5917969, 0.37768555, -1.2470703, 1.5947266, 0.12371826, 0.3984375, 0.47680664, -0.7446289, 0.54296875, 0.40698242, 2.6035156, 1.7382812, 0.30395508, 1.3095703, 2.4785156, 0.86572266, -1.3056641, -0.5703125, 0.5126953, 1.3105469, 1.3203125, 1.9970703, -0.20214844, -3.0136719, -0.12841797, 1.4140625, -0.1352539, 0.63916016, -1.5097656, 3.7324219, -0.33520508, 0.79785156, -0.2043457, 0.80566406, -1.0380859, -2.6386719, 1.2490234, -2.3808594, -1.5351562, 0.82177734, -2.0644531, -2.8574219, -2.4375, 1.9072266, 0.46411133, -1.1376953, 0.8925781, 3.2480469, 0.6953125, -1.015625, 0.11029053, 1.7363281, 0.45654297, 1.3964844, -1.4453125, -1.1582031, 0.5546875, -2.0976562, 1.6396484, 1.0078125, 1.1523438, -1.4199219, 0.74365234, -1.3759766, -0.09106445, 1.8564453, 1.2587891, -1.5214844, -1.3964844, 0.5546875, -2.6914062, -1.3320312, 0.234375, -2.703125, -0.08880615, 1.6367188, 0.5029297, 1.2021484, -1.4160156, 1.0166016, -2.1367188, -2.5644531, 2.0683594, -2.2207031, -0.25585938, -3.0976562, -4.8398438, 1.0458984, -0.1907959, -0.47875977, 2.6914062, 0.41381836, 1.0507812, 3.0585938, 0.65771484, -0.2536621, -0.49389648, -3.0566406, -0.2019043, -2.984375, 1.09375, 0.6796875, 0.125, -2.0976562, -1.8203125, -0.38330078, 1.3515625, 3.2832031, 2.5996094, -0.93408203, 1.4707031, -3.2441406, -0.9814453, -0.95654297, -0.48461914, 0.6479492, 0.31347656, 0.19506836, 1.1201172, -0.50878906, 1.5839844, -0.5419922, 0.6894531, 0.66259766, -1.8535156, -3.8886719, -0.2746582, 2.9003906, 2.0761719, -0.61328125, -1.9121094, -2.0410156, 0.8989258, -1.9238281, -0.71533203, -1.2324219, -0.44018555, -2.8125, 1.3349609, 1.3271484, 0.9086914, 1.4101562, 0.42138672, -3.1835938, -1.4873047, 0.010505676, -2.6523438, -3.1640625, -1.03125, -0.38867188, -1.0283203, -1.4169922, -0.72998047, -1.953125, -1.2558594, -1.9052734, -0.9892578, 3.6992188, 3.2929688, 3.4726562, 5.4570312, -1.4882812, -1.0410156, 2.171875, -1.4160156, -0.4597168, 0.34814453, 0.80810547, -1.4355469, 0.6542969, 1.9365234, -2.2910156, -0.33276367, -0.7763672, 0.87060547, -0.1619873, -2.1425781, 1.1386719, -0.15246582, -0.39208984, 1.5136719, -2.1875, 2.1308594, -1.6279297, 0.6142578, -0.10986328, 1.015625, -1.1357422, -0.055847168, -0.16345215, 0.77490234, 1.1933594, 1.8935547, 1.1884766, -1.0849609, -0.024795532, 1.2050781, 3.2324219, -0.5708008, -0.3173828, 0.5004883, -1.0234375, 2.328125, -0.46655273, 2.4199219, 1.4814453, 0.50683594, 2.8105469, -0.5390625, -1.7246094, 1.3486328, 0.2548828, -1.5791016, 1.2148438, 1.4814453, -1.1835938, 2.2089844, -0.26367188, -2.9824219, -1.3583984, 1.1572266, -1.0371094, 0.6508789, -1.234375, -1.3544922, 1.4511719, -1.8886719, 0.6826172, -0.7241211, -1.2197266, 2.2558594, -0.39160156, -0.4128418, -0.6489258, 1.1005859, 2.8984375, -2.4941406, -1.6708984, 2.8378906, 0.6191406, 1.6230469, 0.8989258, -0.07513428, -2.1777344, -2.9003906, 2.2207031, 0.12536621, 2.921875, 0.07519531, 0.6660156, -0.9946289, 2.125, -4.4765625, 4.4453125, -3.5253906, -1.0126953, 2.4414062, -2.7871094, 1.4658203, -2.2597656, 0.09057617, 0.97314453, 2.0683594, 1.5742188, -2.0058594, -0.82958984, 0.18786621, -1.8740234, -3.3242188, -1.6601562, 0.2232666, -1.0371094, -1.0029297, 2.7050781, -2.8671875, -2.1152344, 1.8662109, -0.24853516, -0.30737305, -1.1152344, -0.5566406, -2.0761719, -1.1064453, 0.90722656, -0.17102051, 1.7021484, 3.4160156, 0.9682617, 0.072143555, -4.7851562, 0.5566406, 0.16674805, -0.49243164, 1.1630859, 0.9526367, 1.2646484, 0.55908203, 1.6455078, 1.2470703, -1.1738281, 3.8925781, -2.3925781, -0.3881836, 1.7099609, 0.31152344, 0.28271484, -2.6425781, -1.0791016, 0.68603516, -2.6972656, 1.8076172, 0.6669922, -1.6044922, 0.3647461, -0.4099121, 0.96435547, -1.4414062, 0.57958984, 1.2695312, 1.8105469, 0.25, -0.111328125, -0.034729004, -2.8535156, -2.7578125, -1.3007812, -1.1552734, -0.010169983, -3.1875, -0.28076172, 2.9042969, 0.21105957, 1.2294922, 0.29541016, 0.171875, -2.0175781, -0.5805664, -0.29541016, 1.9189453, 1.2851562, -2.6132812, -1.1914062, -0.20678711, 0.123291016, -0.61816406, -0.32958984, -1.3828125, -0.5493164, -1.7451172, -0.7470703, 2.0390625, 2.7070312, 2.5, -0.42333984, 1.0634766, 0.42529297, 1.0185547, -1.9511719, 0.3256836, -0.8261719, 3.5039062, 0.92626953, 4.0664062, 0.20141602, -1.2568359, 1.5703125, -0.9892578, 2.6992188, -0.77246094, -4.7617188, 1.2099609, -0.093566895, -1.0292969, -2.7324219, -0.93603516, -3.4648438, 1.3632812, 1.4130859, 0.84375, -2.4296875, 3.8496094, 0.5566406, 4.3164062, 2.2773438, 0.29370117, 1.2724609, 1.7285156, -0.26586914, 0.58691406, 2.6386719, -1.3789062, 0.45751953, -0.4506836, -1.3056641, -1.9648438, 2.109375, -0.9614258, 2.2851562, 1.6445312, 0.77490234, 2.8613281, 1.8349609, 1.9746094, 0.3005371, 0.4345703, 2.3183594, 0.2619629, 0.48876953, 3.46875, 3.0371094, -0.3215332, -1.1708984, 2.1855469, 0.43432617, 0.25463867, -0.049743652, 1.15625, 0.5722656, -4.8125, 2.2324219, 0.77734375, 1.3017578, -1.4736328, -0.060028076, -2.1855469, -0.43725586, 0.2265625, 1.2324219, 2.3984375, 0.69970703, 0.3425293, 0.828125, 0.6142578, -0.9042969, -3.8085938, 1.2666016, 0.6948242, 0.546875, -0.6298828, 1.84375, 1.0205078, 1.2216797, -0.9902344, 0.5649414, 2.328125, 0.21154785, 3.1953125, -0.9863281, 0.21643066, 0.42211914, 2.2558594, -0.53271484, -0.095947266, -0.49609375, -1.3525391, -2.9082031, -2.6230469, 2.328125, -0.5996094, 2.4335938, 1.5888672, -2.4550781, 0.79345703, 1.6269531, 1.7949219, -1.6328125, 1.6201172, -1.7060547, -0.7216797, -0.38110352, -0.46411133, 1.3955078, 3.1582031, -0.5083008, -0.5517578, 2.796875, 1.0957031, 1.8300781, 0.7392578, -0.3095703, -0.88964844, -0.5493164, -0.34448242, 0.62841797, 2.8828125, -1.0917969, 0.39770508, 0.89941406, 1.1142578, -0.12249756, 0.8305664, -2.4042969, -0.7998047, -0.5864258, -1.8300781, -0.7988281, 0.34350586, -3.0195312, -0.8496094, 0.6933594, -0.56689453, -2.8359375, 1.6357422, 1.5185547, 2.2734375, 1.0664062, -0.671875, -1.5136719, 0.99121094, 0.6586914, 0.3972168, 0.19238281, 2.1328125, 0.7338867, -1.3896484, -1.1396484, 0.8989258, 1.8486328, 1.6542969, 0.7753906, 0.76904297, 1.0693359, 0.30151367, 2.5488281, 0.39160156, -1.6152344, -1.5585938, 0.5908203, 0.13720703, 1.2607422, 3.6308594, 0.73339844, -1.4394531, -1.9726562, -3.2929688, 1.0283203, 0.9785156, -1.9824219, 1.2695312, 3.1816406, 2.2207031, -1.53125, -3.8242188, -1.9775391, -0.7246094, -0.4477539, 2.8105469, -0.37158203, -1.0595703, 0.5566406, -1.953125, 1.7949219, 1.2021484, -0.92578125, 0.9248047, 0.2836914, 0.39575195, 0.6020508, 1.9619141, 2.0449219, 1.2265625, -0.0736084, 2.6132812, 1.2236328, -0.21179199, 1.9511719, 2.3007812, 1.2128906, -3.6210938, 1.2314453, -0.2866211, 1.921875, 1.3476562, 0.64404297, 0.89746094, -0.44433594, 0.4116211, -2.5644531, -3.3613281]}, "B086Z452V9": {"id": "B086Z452V9", "original": "Brand: DuroMax\nName: DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "embedding": [-0.5126953, -0.014587402, 0.9790039, 0.46044922, -2.03125, 0.2286377, 2.5644531, 0.31079102, -1.5859375, 1.1376953, -0.067871094, 0.6010742, 0.58984375, -0.6948242, 0.5498047, 0.22570801, 0.03152466, 1.8330078, 0.16796875, -0.24121094, 2.2832031, 0.45239258, 0.88134766, 1.3310547, 0.41748047, -0.23510742, 2.7695312, -2.7773438, -0.97802734, 0.4963379, 1.1621094, 0.26049805, -0.2130127, 1.1699219, -1.8476562, 1.7929688, 0.17358398, 1.2597656, -2.8574219, -0.31323242, -1.6777344, 0.29907227, 2.0917969, -0.6982422, -1.9238281, -3.2226562, 0.20983887, 0.3708496, 0.84228516, 1.4697266, 2.0488281, 2.3730469, 0.47583008, -0.46801758, 0.6386719, 3.3867188, 0.8544922, -1.7880859, 3.7929688, 2.9023438, 0.030044556, 0.15356445, -1.7880859, 0.25390625, -1.7705078, -0.58447266, 0.5620117, 0.38183594, -0.8125, -2.7890625, 2.5566406, 1.1933594, -0.6479492, -0.91064453, -0.83154297, 1.1796875, -3.390625, 2.0605469, 2.6230469, 1.3984375, -1.1933594, 0.9472656, 1.7441406, -1.4023438, 0.08514404, -0.29541016, -0.51464844, -0.6738281, -0.6582031, 2.453125, -4.1640625, 2.0898438, -3.2910156, -3.9003906, 2.7714844, 0.36914062, -1.0175781, 1.2080078, 1.7880859, 2.7324219, 0.20715332, 1.3720703, -0.15075684, 0.734375, -0.9428711, 0.09899902, 1.4082031, 0.35229492, -2.0019531, 0.049865723, -1.6474609, 2.1796875, 0.5126953, -0.4819336, -1.0009766, -1.3408203, 1.8251953, -1.1064453, 5.1328125, -0.11456299, 2.8105469, -2.3417969, 1.6367188, -0.40405273, 2.3203125, 0.6977539, 1.3369141, 3.1171875, 3.0800781, 0.4580078, 1.1035156, -0.09057617, 1.3691406, -0.8935547, -0.18322754, -1.9482422, 0.1932373, -2.5644531, -3.2050781, -0.9633789, -1.9121094, -1.1728516, 1.6279297, -1.1210938, -3.6132812, -1.3623047, -1.5712891, -1.1699219, 0.36206055, -1.4003906, 2.3203125, -3.4589844, 0.23596191, -2.7460938, 1.28125, 0.36376953, -0.40698242, -0.4873047, 2.2988281, 0.7158203, 0.09918213, 0.2644043, -1.4755859, -0.47338867, 0.68652344, -3.8730469, 0.6464844, 1.1171875, -0.29614258, -1.0458984, -2.4003906, -2.6640625, -0.2939453, -2.3671875, 1.1542969, -3.0332031, -1.0986328, 0.20483398, 1.2333984, -0.85302734, -1.0058594, 1.7705078, -0.9394531, -0.012260437, 0.66015625, -0.33691406, 2.0957031, -0.5205078, -0.52783203, -2.2421875, -1.4609375, 0.8613281, -1.3837891, 1.0712891, 1.6308594, -2.609375, -1.4970703, -1.4785156, 4.0898438, -0.89160156, 0.59521484, -1.5351562, 0.24377441, -1.8574219, -1.5166016, -3.3710938, 0.6821289, -1.6689453, 0.7036133, -1.6806641, 0.79296875, 0.38598633, 2.6035156, -1.8720703, -2.2382812, -2.6210938, -1.8164062, 0.4736328, -1.7412109, 0.7260742, 0.32714844, -0.40405273, 2.296875, -1.3925781, -1.2050781, 2.2324219, 0.43554688, -0.049835205, -2.8886719, -3.1230469, 0.58251953, 1.4277344, 0.099121094, -1.8720703, -0.52734375, 1.0449219, -1.2597656, 1.0224609, 0.73095703, 0.22875977, 1.2011719, 1.6621094, -0.75390625, 1.5654297, 2.0917969, -0.94921875, -0.49291992, 2.3710938, 0.5151367, 0.3010254, -0.37719727, -0.7241211, 0.30126953, -1.0771484, -0.046539307, 0.028579712, 0.64501953, -0.39648438, 0.31884766, -2.3671875, 0.60253906, 0.55029297, -0.35717773, -0.052215576, -1.7929688, -0.54833984, 2.0996094, -0.34057617, -1.2216797, 0.50878906, 2.8125, 2.2089844, -0.095825195, 2.375, 0.94091797, 1.7460938, 0.30810547, 2.5253906, 2.203125, 2.828125, 0.53759766, -0.94433594, -1.0136719, -2.4179688, 0.33032227, -0.953125, 0.17419434, 0.93896484, -1.4140625, -0.6088867, 1.1259766, -2.2851562, -5.3671875, 0.9926758, -0.46069336, 4.8007812, 2.3417969, -0.1694336, 1.28125, -0.2697754, 0.025161743, 0.8798828, -1.5625, 2.671875, -0.02973938, 0.09552002, -0.11450195, -2.5488281, 0.67089844, 0.7685547, 1.2089844, -0.84716797, 0.5097656, 0.46606445, -1.7050781, -0.61328125, 2.5839844, -2.1835938, 1.8310547, 1.0224609, -0.083496094, 1.1689453, -0.35375977, -1.4892578, -0.14770508, -1.2675781, 2.1210938, -1.1025391, 0.2854004, -1.5039062, -1.7275391, -0.85498047, 0.65625, -0.35107422, 0.2121582, -0.16259766, -1.7148438, -1.8046875, 1.3818359, -0.41601562, 0.98291016, -0.3540039, 0.45996094, -1.3857422, 0.2932129, -2.2285156, -0.8833008, -0.92529297, -1.8066406, -1.5205078, 2.4257812, 2.4804688, 1.0341797, -0.71484375, -2.0097656, -0.06311035, -0.4724121, 3.1035156, -1.6259766, 1.5537109, -0.6357422, 0.63134766, 0.86083984, 0.027862549, 0.8354492, -3.4511719, -0.006412506, -3.0820312, 2.9335938, 0.40673828, 0.86865234, -0.5761719, 0.6777344, -0.15966797, -1.2998047, 1.9404297, -0.11828613, 1.1845703, -1.4296875, 0.9501953, 1.4550781, -3.4296875, 1.7910156, -0.0005726814, -1.5810547, -0.11895752, 0.98876953, -1.4707031, 0.13696289, -3.0214844, 1.8955078, 1.8466797, -1.8193359, 1.5087891, 0.19067383, -0.6489258, 0.5058594, -1.8125, 2.2558594, 2.796875, 0.69140625, -0.88134766, -1.6982422, -0.26049805, -0.69433594, -0.16320801, -2.03125, -1.4052734, -0.31762695, 2.8183594, 0.38891602, 1.4804688, -1.3886719, -0.8022461, 1.4677734, -3.0800781, 1.2158203, 0.9848633, -0.38134766, 1.5771484, -1.3867188, 0.066467285, -2.1757812, -0.65527344, 4.8046875, -0.73535156, 3.109375, 0.39013672, 0.40576172, -0.9433594, 2.0019531, -0.39819336, -1.8251953, -2.1699219, 3.3554688, -1.0283203, -0.2409668, -0.11602783, 0.40454102, -1.1416016, -0.9082031, 3.2070312, 1.0341797, 3.8046875, 1.2001953, -1.9501953, 2.0488281, 0.59814453, 0.92578125, 0.61621094, -1.6074219, 0.12670898, -1.9589844, -1.2421875, -0.37280273, 1.5205078, 1.1455078, -0.20935059, 1.0117188, 1.4785156, -0.32861328, 0.7783203, -0.05682373, 0.88183594, -1.3349609, 3.171875, 3.7441406, -1.1943359, 2.5214844, -1.9873047, -0.16687012, 1.7929688, -0.7919922, 0.69677734, 3.6445312, 0.35131836, 0.6479492, -0.07598877, -0.80126953, -0.039611816, -1.4414062, -0.96435547, -0.70703125, -0.7060547, 1.1064453, -1.8066406, -0.38378906, -1.9091797, -0.32006836, -1.5097656, 1.2402344, -0.47094727, -0.06225586, 0.35327148, -0.8232422, -1.3847656, -0.20532227, -1.1621094, 0.98828125, 1.9580078, -0.08917236, 0.95996094, -1.5283203, 1.6103516, 0.8935547, -0.14367676, -1.0273438, -0.63623047, -2.3125, -0.8071289, -0.4638672, 0.07110596, 0.77734375, -1.8320312, 1.5214844, 1.1660156, -0.088256836, -0.23278809, 0.62939453, 0.8955078, 1.5419922, -2.1855469, 1.2626953, 0.15942383, 1.5761719, 0.14135742, 2.0097656, 3.0742188, -1.25, -0.828125, -0.9355469, -1.6962891, 1.0341797, -1.2392578, 0.2619629, 4.5, 0.30810547, 0.59716797, 0.20471191, 0.23046875, -3.1875, -1.4814453, -0.33422852, 1.4619141, -2.9628906, -2.6542969, 0.4736328, -0.050842285, -0.98095703, 0.97216797, -2.6542969, 0.20080566, -0.3154297, 1.0507812, 0.7841797, 2.703125, -0.91503906, -0.82910156, -0.45263672, -0.10491943, 2.3671875, -0.2421875, -0.09790039, -2.6835938, 0.9213867, -0.49291992, -1.0908203, 1.2724609, 3.5546875, -0.34179688, 0.20263672, 1.4511719, 1.1074219, 1.0136719, 0.40600586, -2.4335938, -1.2050781, 0.16625977, 2.0429688, -2.7695312, -0.78027344, 1.8320312, -2.3886719, 0.100097656, -0.69677734, 0.40698242, 1.2519531, 3.4804688, -0.46044922, 2.1308594, 1.8652344, -3.2988281, 0.18457031, -0.6020508, 0.66064453, -0.87353516, -1.9726562, -1.3867188, -0.3227539, 0.8798828, -0.63671875, -1.2412109, 1.4228516, 0.5722656, 0.7553711, 0.15356445, 0.52978516, -0.8852539, -0.08770752, 2.9570312, -0.43701172, 0.1427002, 0.21777344, 0.9394531, -0.7607422, 1.9726562, -1.3212891, -0.39404297, 1.0205078, -1.4765625, -2.1640625, -1.0068359, -0.97558594, -1.7792969, -0.9091797, 0.15734863, 0.21362305, 1.6933594, -0.8886719, 1.1582031, 1.4902344, 0.42993164, -2.4589844, 0.6738281, 1.2851562, 1.3574219, 1.3505859, -1.2890625, 3.6875, 0.045684814, 0.10620117, 1.8554688, 1.7119141, -1.7177734, 0.23571777, 1.3935547, -0.49829102, -0.9550781, 1.8310547, 0.67089844, 0.45361328, 0.6357422, -1.15625, 0.89941406, 0.12023926, 3.5546875, 0.3779297, -0.66064453, -1.2324219, 0.95996094, -0.43139648, -0.040283203, -0.22546387, -0.23852539, -0.03967285, 1.3134766, -0.81152344, 0.35620117, 0.3095703, -0.3947754, -2.1054688, -2.078125, -0.59033203, 0.28710938, -1.0253906, 0.4951172, -1.1367188, 0.41308594, -0.12976074, 1.2568359, 0.7001953, -1.9033203, -0.019012451, 0.82958984, 0.6411133, 0.29956055, -0.07891846, 1.1005859, -5.078125, -0.23962402, 0.71875, -0.23791504, 1.3789062, 2.4921875, -2.1582031, -1.7050781, -3.3105469, 0.16040039, 1.4482422, -1.0595703, -1.5039062, 0.70996094, -1.6025391, 1.4355469, 1.0351562, -2.5625, -1.4892578, 1.6660156, 0.1697998, -0.15722656, -0.3984375, -0.4267578, -2.1152344, -4.2148438, -2.3515625, 1.4384766, -0.57177734, 0.17480469, 0.8330078, -3.2753906, 1.1884766, 1.0732422, 2.0625, -2.1171875, 1.3535156, -1.2558594, 1.6835938, -0.80322266, -0.43823242, -1.3466797, 0.17028809, 1.1943359, -1.3193359, 2.2832031, -3.3945312, -3.3046875, -1.8457031, 2.0058594, -0.9111328, 0.8378906, -0.72021484, 1.3359375, 2.7890625, -0.17932129, -0.40356445, 0.55615234, -1.4482422, -0.60839844, -0.20703125, -1.9853516, -0.62597656, 1.9833984, 0.19042969, 1.3164062, 2.1660156, 2.9824219, 0.45581055, -0.47070312, -2.9023438, 1.1025391, 0.26391602, -0.0814209, -1.0595703, 2.0058594, 2.0761719, -2.640625, -0.08026123, -2.0800781, -0.3088379, -1.0419922, -0.2927246, -1.1240234, -0.24450684, 0.3725586, 0.4921875, 0.099243164, 1.0302734, -0.1784668, -0.10418701, -0.9448242, -0.42041016, -0.031051636, -1.8349609, 2.5859375, 1.9814453, -0.31811523, -3.7519531, 0.5644531, 1.0175781, -0.11566162, 1.9101562, -0.3540039, -0.18395996, -2.6757812, -1.8291016, -1.3115234, 1.1943359, -0.00856781, 1.1318359, -0.38916016, 0.54052734, 0.7626953, 0.59033203, -0.5810547, 1.8349609, -1.1171875, -0.97753906, 0.3774414, 2.3183594, -2.1210938, 1.0341797, -1.1972656, 0.66748047, 0.86328125, -3.3476562, 1.1367188, -1.0419922, -1.3291016, 0.007659912, 0.3955078, 0.054992676, 0.23730469, -0.4091797, -0.58496094, 0.02671814, 2.3457031, -1.7695312, -1.9150391, 2.2890625, -0.94140625, -2.3378906, 1.6455078, -1.9550781, 0.097595215, 2.2851562, -2.8964844, 2.3046875, -0.19042969, 1.2539062, -0.9716797, -0.44628906, -2.3144531, 1.3916016, 0.9008789, 0.90283203, 1.3330078, 1.9794922, -0.23608398, 0.6533203, 0.13208008, -0.24182129, -0.1550293, 1.6025391, 0.83447266, -0.5214844, 1.9384766, -1.6787109, 0.25561523, -0.33325195, -0.703125, -2.3476562, 0.29760742, 2.9453125, -3.2539062, 1.4833984, 0.5239258, 1.3085938, -2.8613281, 0.0030345917, -0.16442871, 1.0078125, 0.16564941, 1.1816406, 2.4433594, 0.35180664, -0.6875, 1.5195312, -2.515625, 0.10662842, -0.54052734, -0.43286133, 0.47924805, 0.40893555, 1.8398438, -1.2822266, -1.9082031, 1.4746094, 1.5917969, 1.8359375, 0.49414062, -0.078308105, 0.94921875, -2.9140625, 1.7558594, 0.118652344, 4.671875, 1.8359375, 0.34472656, 2.046875, -0.12915039, -0.7441406, -2.328125, 0.57421875, 0.80566406, 0.2290039, 0.07318115, -3.4707031, 0.47460938, -2.1875, 2.1015625, -2.4960938, 1.5185547, -0.44384766, -1.0078125, 0.8955078, 1.5107422, 0.3088379, 2.8613281, 0.66308594, -0.55566406, 2.0019531, 1.9609375, 0.55908203, -0.57373047, 1.2255859, 0.65625, 1.3007812, -0.12384033, 0.33740234, 0.24841309, -1.2001953, -1.7851562, -0.34936523, 2.078125, -0.28173828, 0.6044922, -0.7416992, 2.5507812, -0.5571289, -1.8691406, -1.4160156, 0.05090332, 0.13000488, 0.25219727, -1.90625, 0.86621094, 1.9541016, 1.7421875, 3.7382812, -1.5537109, -1.6162109, 0.57910156, 0.44213867, 1.0449219, 0.59277344, -0.42114258, -1.4667969, -0.8886719, 0.15722656, -2.0332031, 1.3544922, 0.9394531, 0.33251953, -1.0097656, -2.5957031, -3.0546875, 0.21264648, -1.3369141, 0.46142578, 0.9238281, -1.6748047, 2.5820312, 1.6660156, -2.2617188, 2.5410156, 3.2519531, -1.2314453, 2.3574219, -1.1396484, -1.9775391, -1.2324219, -3.2890625, 0.2052002, 1.2519531, 0.51953125, -0.13122559, 1.4501953, -3.3242188, -1.9550781, -2.5351562, -1.5, 0.99658203, -1.5429688, 0.5283203, 1.1972656, 0.15576172, 1.2099609, -0.41601562, -0.7963867, -0.25976562, -0.58984375, 1.2314453, 0.59765625, -0.8666992, 1.8085938, 2.0957031, 0.18017578, -0.1505127, 1.2382812, -0.42211914, 0.6010742, -0.5566406, -2.6582031, -1.6005859, 0.017684937, 0.80126953, -1.8828125, 1.3574219, 1.5791016, 0.39672852, 0.7480469, -0.18713379, -1.5566406, -3.0625]}, "B00TG8GLCS": {"id": "B00TG8GLCS", "original": "Brand: Raypak\nName: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater\nDescription: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool's surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.\nFeatures: Cupro-nickel gas pool and spa heater\nPagoda design ensures heater stays active in harsh weather conditions\nMicroprocessor controlled thermostat\nDigital display\nOn-board self diagnostics\n", "embedding": [-1.8320312, 1.0292969, 2.3574219, 0.44970703, 1.4755859, 0.95654297, 2.4316406, -1.4853516, -0.2854004, 2.1152344, 0.6582031, 2.1367188, 1.8828125, 1.5810547, 1.2792969, -1.8955078, 0.077819824, 0.10144043, 1.0693359, 1.2470703, -0.6411133, 0.26171875, 1.8867188, -0.64160156, 0.32373047, 1.3603516, 2.1601562, -1.5097656, -1.7148438, -0.7324219, -0.5107422, 0.56103516, -1.3320312, 0.23205566, -1.0322266, -2.3359375, -0.9663086, 1.9335938, -2.8613281, -1.8134766, -2.1660156, -0.29052734, -1.2119141, -0.5751953, -0.45263672, -0.9326172, -0.22741699, 0.11956787, 0.12756348, -0.49975586, 1.2412109, -1.3417969, -1.6699219, 1.0439453, -0.41918945, -0.5185547, 0.2529297, -2.5878906, 1.8417969, -0.08148193, -1.3320312, -1.7138672, -2.4511719, 2.0898438, -0.16003418, -0.71484375, -2.1015625, -1.8476562, -2.1210938, 1.3164062, 1.2597656, 2.0566406, -1.1123047, 0.87353516, -0.6040039, -0.7680664, -3.1035156, -0.81689453, 3.3828125, 1.1787109, -1.6660156, -0.453125, 0.4621582, -2.5722656, -3.5078125, 0.8066406, -0.5527344, 0.0791626, 0.13671875, 2.6992188, -2.3613281, 1.640625, 0.19238281, -3, 0.10144043, -2.0175781, -0.095581055, 1.9707031, 1.0664062, 2.8574219, -1.015625, -1.3496094, 0.31982422, -0.47973633, -1.2314453, -0.8544922, 1.0185547, -0.39111328, -2.0761719, 0.7182617, -0.37036133, 0.8876953, 3.125, -2.5742188, -2.6484375, -0.22058105, 0.35229492, 2.5625, 4.8554688, 1.3974609, 1.2451172, 0.3059082, 2.8144531, -1.7265625, -0.9272461, 0.19372559, -1.1611328, -1.8984375, 1.75, -1.5029297, -0.10015869, 0.31835938, 1.8623047, -0.11224365, -0.5473633, -2.8046875, -2.3671875, -1.3486328, -4.21875, -0.084106445, -3.4375, 0.46118164, 1.4267578, 0.6958008, -3.8535156, 0.15710449, -0.20593262, 2.2382812, -0.6748047, -0.45263672, 3.1132812, -1.78125, 0.82421875, -0.78125, -1.3085938, 1.5517578, 0.8256836, -4.0898438, 2.4316406, 2.3730469, 1.5693359, 0.27856445, 1.5253906, 1.5947266, 0.101623535, -0.44995117, 0.15014648, 0.15966797, -1.1904297, 0.07635498, -0.47827148, -2.4511719, -0.99658203, -0.8222656, -1.5957031, -2.765625, -0.15942383, 0.5488281, 2.5878906, -0.8339844, -2.7675781, -1.1015625, -2.0332031, 0.33447266, 2.3535156, -0.9243164, -2.9726562, -0.11291504, -1.4609375, -2.6757812, 0.24035645, 0.85009766, -0.44091797, -0.053588867, -1.1347656, -0.93652344, -3.4882812, 0.9707031, -0.15698242, 2.4316406, 0.49731445, -0.93310547, -0.15661621, -0.3864746, -1.8144531, -4.4453125, -0.15112305, -1.7070312, -0.3647461, 1.9658203, 1.8564453, -0.47631836, 0.88671875, -2.3535156, -0.34521484, -0.30249023, 0.6699219, -1.0888672, 1.3417969, 2.9628906, -0.5517578, -0.4272461, -0.9560547, 0.59521484, -0.88427734, 3.5488281, 1.7880859, 0.97021484, -1.7246094, -1.5917969, 0.8378906, 0.5942383, -2.0644531, -0.02708435, -0.37158203, 2.1386719, 0.72558594, -0.62939453, 2.2128906, -1.5732422, -0.8066406, -1.7646484, -0.4814453, 0.51953125, 1.2949219, 0.7426758, -2.1738281, 2.1738281, 0.13635254, 0.8808594, 0.23449707, -1.546875, -0.9140625, -1.2998047, -1.8525391, -0.4794922, 1.5078125, -1.4589844, -0.6357422, -1.3876953, 3.4570312, 2.0078125, -0.2052002, -0.7734375, -2.6386719, -0.5107422, 2.4707031, 2.1582031, -2.234375, 0.46142578, -0.13000488, 1.9550781, 1.2216797, 1.7841797, 0.09777832, 2.9863281, -1.1679688, 3.7207031, -0.60595703, 0.82421875, 0.4975586, -0.08282471, 2.2167969, -0.99609375, 0.6191406, 1.5566406, 0.35498047, 0.49121094, -0.77783203, 0.8808594, 1.0732422, -1.9755859, -2.5761719, 2.8164062, -0.5551758, 2.9160156, 4.84375, -0.113708496, -1.3105469, -1.6025391, 2.078125, 2.0390625, -1.4199219, -0.08917236, -2.3085938, -1.4755859, 0.7338867, -0.38134766, 0.4506836, -0.56103516, -0.049438477, -0.8222656, -3.5371094, -1.4794922, -3.6464844, -0.091918945, 3.4765625, -1.6660156, 2.7480469, 0.69140625, -3.6503906, -0.25830078, -0.33422852, -1.8544922, 0.21960449, 2.1132812, -2.3183594, -1.5566406, -0.61328125, -0.009346008, -0.57714844, -1.6015625, 1.9365234, -2.0566406, -1.2509766, -0.007511139, 0.4489746, -2.8945312, -1.3691406, -0.8769531, -0.9790039, 2.6601562, 0.7910156, 0.97216797, -1.4130859, -2.6953125, -0.20629883, -0.43041992, 0.115112305, -0.1875, 1.3271484, 1.0273438, 0.10723877, -3.5683594, 2.0644531, 0.5488281, -2.1816406, -0.24169922, -1.828125, -0.011604309, -0.84814453, -0.7495117, 0.7080078, -0.7817383, -0.058746338, 0.91064453, 2.6289062, -2.7597656, 4.8710938, -1.1015625, 3.453125, 0.074035645, 0.3786621, -0.66845703, -2.1503906, 2.8457031, -0.17150879, 3.4238281, 1.2705078, 1.5908203, 0.10784912, 0.18981934, 1.0917969, 1.6982422, -3.0859375, 0.40063477, -1.1523438, -1.7402344, -0.5551758, -1.8867188, 0.83935547, -2.7519531, -0.53466797, 0.8876953, -1.5605469, -1.9042969, 0.2854004, 0.4650879, -0.22705078, -0.89208984, 1.2314453, 0.12188721, -0.2607422, -1.1660156, -0.29467773, -1.4609375, 0.6245117, -0.27197266, 1.6767578, 0.6533203, 2.5625, 1.9257812, -0.14624023, 1.9111328, -0.24243164, -5.7578125, 0.19104004, 1.5732422, 0.43286133, -1.0234375, -1.4755859, -1.6865234, -1.4960938, 0.07800293, 3, 1.265625, 3.3398438, -0.30444336, -1.5917969, 3.8886719, 3.1210938, -0.6777344, 0.30273438, -0.062072754, 2.265625, -0.51123047, -2.0546875, 0.9741211, 2.6074219, -2.3007812, -1.1416016, 1.7841797, 0.48828125, 3.125, 2.8300781, -1.796875, 0.5019531, 2.3671875, 2.953125, 1.421875, 0.7109375, -0.99609375, -3.4667969, 0.026885986, 2.2128906, 1.3632812, 1.0703125, 0.2607422, -1.3789062, -0.42358398, 0.17858887, -0.89453125, 0.17663574, 2.2558594, -0.5332031, -0.29248047, 2.0878906, 0.076416016, 2.8535156, 2.1464844, 0.6196289, -0.8588867, -3.1425781, 1.8300781, 4.3710938, 1.8740234, -1.7529297, -2.3984375, -2.0117188, 0.090026855, -1.3378906, 1.0888672, -0.4428711, 0.64160156, 0.6640625, -1.8417969, -1.5996094, -1.4179688, 2.5332031, -1.3457031, -0.9453125, 0.96972656, 0.7626953, 0.3635254, 0.40551758, -1.8320312, -0.78125, -1.7441406, 0.97314453, -0.16564941, -0.9433594, -2.1679688, 1.8984375, 1.4248047, -0.4831543, -1.8349609, -1.3564453, -1.2128906, 0.24768066, 1.0917969, -0.6816406, -0.117004395, 2.7597656, -2.5761719, 0.4038086, -2.7636719, 0.32885742, 0.15576172, -0.32836914, 0.105407715, 1.9082031, 0.9189453, 2.3378906, -0.13439941, 0.97314453, -1.2861328, -0.7709961, 2.1660156, -1.4501953, -1.3369141, -1.3291016, -5.3789062, 2.6035156, -2.1738281, -0.92626953, 2.15625, -0.107910156, 1.4111328, 0.32861328, -0.13183594, -1.2451172, -2.5078125, -0.3076172, 2.1894531, -0.9345703, 1.0185547, 3.921875, -0.5571289, -1.0761719, -2.0273438, -0.27490234, -0.25463867, 0.5698242, -0.16357422, 0.9560547, 1.3759766, -0.21032715, 1.3203125, 0.117370605, 1.078125, -0.59472656, -0.27319336, -0.33740234, -0.10559082, 1.1269531, -0.7290039, 2.2460938, -0.5678711, 5.2382812, 1.9003906, -1.2070312, 1.390625, 0.79248047, 1.5644531, 0.19372559, -1.8320312, -0.7416992, -1.0839844, 2.8261719, -1.6396484, -0.5957031, -1.0585938, -1.0449219, -1.6943359, -0.42163086, 1.4609375, 3.140625, 0.054992676, -1.9833984, 1.546875, -1.0917969, -1.8369141, -0.8515625, 0.17834473, 0.91503906, -0.37475586, -1.0791016, -0.63964844, -1.1367188, -1.2207031, -1.6503906, -3.9453125, 0.24169922, 2.0078125, 2.4140625, 1.6757812, -2.5976562, -0.014625549, -1.0322266, -0.52490234, 0.38720703, -0.1706543, 0.85546875, 0.6640625, -0.04360962, 1.5644531, -1.5185547, -1.0087891, 0.8457031, -1.0126953, 0.11627197, -1.2900391, 0.7451172, -0.8417969, -1.5673828, 2.671875, -0.24682617, 3.3886719, -2.1953125, -0.18920898, -0.8925781, -1.3525391, -1.5595703, 1.6220703, -0.48486328, -0.105163574, 2.0742188, -0.70751953, 1.9414062, 0.23413086, 0.0836792, 0.029937744, 1.9082031, 0.60253906, -0.49902344, -1.5136719, 2.1445312, -2.6464844, -1.4042969, 2.5449219, 2.3261719, 1.0253906, 2.4101562, 1.8027344, 0.074157715, 1.6367188, -0.06161499, 3.78125, 1.6826172, 0.7441406, 0.04333496, -0.21362305, -1.8144531, -2.3378906, -1.1455078, 1.7841797, 0.44458008, 4.1015625, -0.93603516, -0.6508789, 0.2878418, -3.7539062, -1.5175781, -1.7119141, 1.8583984, -0.9824219, -0.6748047, -0.17919922, 0.8466797, 2.1074219, 2.6269531, 0.36083984, -0.96777344, 1.2070312, -0.2512207, -0.028442383, 2.2988281, -1.5410156, -1.1806641, -1.9746094, 1.1230469, 0.4543457, 0.17224121, 2.5722656, 0.58154297, -1.5605469, -2.2246094, -1.03125, 1.0205078, -3.0332031, -1.6591797, 0.77441406, -0.82421875, -0.1270752, -1.3544922, -0.1730957, -2.3085938, 1.7080078, 1.2705078, -1.3085938, -1.2119141, -1.8125, -1.2314453, -4.0664062, -1.6445312, 1.2705078, 0.55908203, -0.022323608, -1.0615234, -3.1328125, -0.13635254, -0.27539062, -1.7685547, 0.5292969, 1.0712891, -1.6279297, -0.88378906, 0.27441406, 2.1601562, -0.41870117, -0.5673828, -1.2353516, -1.4746094, 0.08081055, -0.8647461, -1.4960938, 0.21582031, 0.26757812, 0.06237793, 1.8769531, -0.7998047, 0.056030273, 2.7910156, -0.8417969, -1.2910156, 0.48779297, 1.8339844, 0.2854004, 2.4140625, -1.5537109, 0.16516113, 0.050201416, 0.9135742, -0.859375, 4.1992188, 0.6538086, 1.2236328, 0.042114258, 1.328125, 0.82373047, 0.058685303, 2.546875, -0.06768799, -0.7548828, 1.6835938, -0.85546875, -0.59472656, -1.3027344, -3.2167969, -1.5214844, -1.5351562, -0.9296875, -0.066711426, -0.734375, 1.0244141, 2.125, -0.9243164, 2.1152344, 1.5517578, -0.51220703, -0.08648682, -0.39501953, 0.62646484, 1.453125, -0.7338867, -3.3242188, -2.859375, -1.0341797, 0.14892578, -1.6347656, 0.84033203, -0.95996094, -1.3095703, 0.86621094, 0.117126465, -0.8930664, 2.6796875, -0.95751953, 0.7871094, -2.5722656, 0.36108398, 1.0136719, -0.5073242, -1.7294922, -0.47460938, 0.34179688, -0.21118164, 1.8808594, 3.4667969, -1.2099609, -0.18188477, 0.28344727, 0.58447266, 0.22741699, -2.2460938, 2.8183594, -2.15625, -0.5761719, -0.5673828, -1.1767578, -1.3164062, -0.47021484, 2.2324219, 1.3935547, 0.92822266, 2.0371094, 0.57373047, -3.8964844, 1.4814453, -0.23730469, -0.10272217, -0.15612793, 0.76904297, -0.30664062, 2.5292969, 0.8959961, 0.23864746, -0.70458984, 1.6269531, -0.41186523, 0.08862305, -2.4824219, 0.22460938, 0.92041016, 1.3300781, 3.015625, 1.0693359, 2.59375, 1.5771484, 0.72216797, 0.96484375, -1.4248047, 2.0117188, 0.07287598, 1.9013672, 0.54345703, -1.2861328, -1.2841797, 0.6713867, -1.7597656, -0.7001953, 0.63964844, 2.0117188, -0.25170898, 0.90478516, -2.6933594, -1.4375, -0.38549805, 2.2285156, 0.35327148, 1.3984375, -0.036315918, 0.39672852, 2.6523438, -0.3330078, 2.2382812, 0.62402344, -1.1630859, 0.68115234, -2.6816406, 0.3371582, 0.099975586, 0.6069336, 0.14453125, 1.9941406, 0.6044922, 1.1787109, -0.5957031, -0.78564453, -0.62939453, 2.3144531, 1.5380859, 1.0371094, -1.296875, -0.3581543, 2.5644531, 2.7792969, -0.42358398, 3.2675781, -3.4453125, 0.66064453, -1.2841797, 0.16625977, 0.68115234, -0.7734375, -0.8754883, -1.2578125, 2.3359375, -1.2607422, 1.8515625, -1.8203125, 1.1748047, 2.0058594, -1.8486328, 0.90722656, 1.6376953, -0.35375977, 3.0117188, 0.040863037, -0.49853516, 0.88916016, -2.1503906, -0.8701172, -0.7973633, 2.2480469, -0.8251953, 1.5625, -0.10058594, 4.4492188, 0.9296875, 0.97216797, -0.7866211, 0.06463623, 0.29956055, -0.65966797, -0.7602539, -1.46875, 2.703125, 1.3662109, 1.5537109, 2.8359375, -1.6552734, -0.41430664, 0.68847656, 0.72021484, 1.3916016, 1.7324219, 1.1367188, -0.101257324, -2.6328125, 0.34765625, 1.7246094, -1.6748047, 1.7216797, -0.2919922, -0.77978516, -0.2208252, 0.75927734, -0.049041748, -0.055480957, -1.1298828, -0.41723633, 0.30932617, -0.19812012, 0.21484375, -0.41088867, 1.578125, -0.29736328, 2.5585938, 1.9013672, -2, -0.2783203, 0.6972656, -1.0546875, 1.2275391, 0.4260254, 0.3244629, 1.2099609, -2.5820312, -3.1269531, -0.4597168, -0.47192383, 0.028335571, 1.6025391, 0.38916016, 1.0605469, 0.79541016, -0.19726562, -2.3359375, -2.6269531, -0.6958008, 0.91064453, -0.6669922, -0.9238281, 0.22241211, 0.88964844, 2.2480469, 1.1630859, -2.1640625, -0.013893127, 0.09063721, 0.6113281, -1.6582031, 0.8745117, 2.1113281, -0.73583984, 2.359375, 1.1591797, 1.8105469, -1.9111328, 1.1064453, -0.5517578, -0.9326172, -2.5273438, 0.8208008, -1.2421875, -0.29663086, 0.3786621, 1.4179688, 1.5419922, -2.4082031, -1.1132812, -1.9257812, -2.5820312]}, "B06Y5WZQJP": {"id": "B06Y5WZQJP", "original": "Brand: SMETA\nName: SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black\nDescription: General Introduction

This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

Specifications:
Net Volume:2.1 cu ft
Net Weight:48lb
Temperature Range: 32\u2109~50\u2109
Product dimension(W*D*H): 18*18.7*27.1 inch
Power supply:AC 110V/DC 12V/Propane(gas/LPG)
Rated Frequency:60HZ
Input Power: AC 90W ;DC 90W
Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
This product come with connection cord,can directly connect the cigarette lighter of the car

IMPORTANT THINGS TO KNOW:
Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

PLEASE NOTE:
If you have any questions,please feel free to contact us,we will try our best to help you!
NOTE:
This product USES propane to generate electricity. The product itself does not contain gas.
\nFeatures: 110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping\nDimensions 18*18.7*27.1 inches, campact size easy to carry on the way\nApproximate gas consumption per day: 0.4 lb\nTemperature range 32\u2109~50\u2109 without freezer\nReversible door. Advanced absorption cooling system, super quiet without noise.\n", "embedding": [0.9970703, 1.4941406, -0.3647461, 2.7167969, -0.6269531, -0.20593262, 0.45410156, -2.8261719, 1.421875, 1.9111328, 1.9052734, 0.49487305, 1.2705078, -1.3945312, 1.4091797, 1.3183594, -0.96875, 1.2255859, -0.013549805, 0.94970703, 0.56933594, 0.7246094, 1.125, 1.2675781, 2.671875, 0.13000488, 3.1464844, -2.0664062, -1.1601562, 0.13989258, 0.019439697, 1.3037109, -1.515625, 1.1826172, -1.1591797, -2.4238281, -1.7832031, -0.060272217, 1.4238281, 0.01889038, 0.3100586, -2.4492188, 2.4804688, -0.15808105, -3.40625, -1.2255859, 1.6142578, -1.3964844, 0.28808594, -0.36889648, 0.30029297, 0.84716797, -1.6591797, 1.8486328, -2.40625, 0.2614746, 0.8491211, -0.49414062, 2.359375, 1.5996094, -1.3349609, 0.24731445, -1.7900391, 0.69873047, -2.6035156, -0.32958984, 2.9179688, -1.2451172, 0.067871094, -1.3925781, 1.9619141, 0.049041748, -0.7104492, 0.88720703, -2.7148438, 1.3701172, -1.4902344, 0.44091797, 2.6054688, 0.83984375, -0.56884766, 1.4130859, 1.1875, -0.32226562, 0.7080078, -0.49047852, 0.1730957, 0.6748047, -0.35229492, 0.63183594, -2.3125, 1.0615234, -3.2246094, -4.265625, 0.62646484, -0.67822266, 0.35009766, 0.8457031, 3.6210938, 1.2089844, -0.6347656, 1.1542969, 0.05493164, -0.15478516, -1.9404297, -1.5097656, 1.234375, 2.1816406, -2.6074219, 0.84765625, -2.1152344, -0.81689453, 1.5, -0.14929199, -0.76708984, -0.06225586, 0.94384766, 2.8476562, 5.1601562, 0.02218628, 2.015625, 0.5185547, 1.7998047, 0.15356445, -0.98779297, 0.015670776, 0.16040039, 1.359375, 1.6308594, -0.8154297, -0.7573242, 1.3154297, 0.20629883, -1.7255859, 0.48828125, -1.2705078, -1.0791016, -2.9941406, -3.78125, -0.6982422, -2.0214844, 1.8632812, 2.4179688, -1.3261719, -3.0917969, 1.0292969, -1.3564453, -0.41870117, 0.035705566, 1.5810547, 2.0117188, -2.3847656, -1.1611328, -1.4707031, -0.15246582, 0.2722168, -1.6445312, -1.0878906, 1.5107422, 2.0566406, 1.2080078, -1.9042969, -3.1425781, 1.4658203, 1.3085938, -2.28125, 0.5385742, -0.50341797, -0.4633789, -0.52441406, 0.99072266, -3.40625, 0.41748047, 2.3203125, -0.41381836, -1.0253906, 0.12866211, 1.1835938, 2.2285156, 0.15686035, -1.7617188, -0.5605469, -0.7426758, -0.24731445, -0.9291992, -0.9375, 0.14001465, -2.8925781, 1.1845703, -3.0429688, -0.6152344, -0.7524414, -1.3652344, 0.8852539, 2.4804688, -3.09375, -3.4746094, 2.3066406, 0.30419922, -0.3869629, 0.81640625, -0.2705078, -0.8798828, 1.9111328, -2.2949219, -1.8525391, -1.1416016, -3.6113281, -0.030471802, 1.015625, -0.084106445, -0.18798828, 2.4101562, -1.4619141, 0.68310547, -1.0761719, 2.3847656, 3.9238281, 1.2490234, 0.6357422, 0.37329102, 1.1396484, 2.2167969, 1.3359375, 0.60009766, 1.7626953, -0.625, -1.453125, -1.3945312, -3.0390625, 4.0976562, 0.10266113, -0.3215332, -0.5205078, -0.11236572, 2.4570312, 0.059448242, -0.1829834, 0.38134766, 2.0898438, 0.68310547, -0.9121094, 0.062042236, -1.3847656, -0.49804688, -0.5996094, -1.5332031, 1.8632812, 2.78125, 0.47558594, 1.9570312, -2.4023438, -1.5693359, 1.0605469, -0.7265625, 0.28442383, 0.8178711, 1.8310547, -0.7182617, -2.8730469, 0.3894043, 1.4033203, -1.6992188, 0.421875, 2.3085938, -0.041168213, 1.15625, 1.0429688, -2.1992188, -0.46289062, 1.4443359, 0.84472656, 0.69628906, 1.0888672, -1.1025391, -0.41455078, 0.8198242, 1.6367188, 2.0019531, 3.7109375, -0.06048584, -1.7197266, -0.8618164, -0.5419922, 1.4228516, 1.6396484, -0.28076172, 2.0976562, 0.7548828, 1.7265625, 3.0703125, -0.85302734, -3.2597656, 3.2480469, 0.44873047, 1.234375, 1.0576172, 0.5214844, -0.17626953, 0.58740234, 1.8212891, 1.2128906, -0.92089844, 1.1542969, -1.7802734, -0.9477539, -0.47338867, -0.37548828, 2.2441406, 0.17346191, -0.22314453, -1.8017578, -3.1171875, -1.8466797, -0.25927734, -1.6298828, 3.8691406, -0.45825195, -0.12261963, 2.0507812, -0.45361328, 1.2373047, -2.171875, -2.2070312, -0.7104492, -0.37524414, -0.26831055, -0.3359375, -0.6982422, -1.4091797, 0.76171875, -0.73291016, 1.7734375, -1.34375, -1.46875, 0.0047187805, -1.3789062, -1.4667969, -0.87402344, 0.34765625, -1.9267578, -0.7324219, -3.6210938, 0.5683594, 0.2142334, -1.4101562, -1.2050781, -1.3525391, 1.90625, -0.4494629, 1.6308594, 1.0712891, -1.1113281, -3.5410156, -2.0644531, 1.1123047, -0.7636719, -0.52197266, -0.734375, 0.80078125, -1.3701172, -1.1552734, 0.31933594, -0.39697266, -0.75683594, 0.76171875, -1.5507812, -4.6210938, 2.0039062, -2.0957031, 0.041229248, -0.7993164, -0.76220703, -2.078125, 0.49267578, 0.7402344, -0.89453125, 4.4648438, 0.21643066, 0.3815918, -1.2089844, -1.0019531, -0.8725586, -1.0859375, -2.8085938, -1.7871094, -0.48828125, -2.9511719, -2.4355469, -1.9609375, 0.38720703, -0.12756348, 0.023666382, -1.1835938, 1.8740234, 0.5957031, -0.30932617, -0.5888672, 0.058166504, 1.3447266, 1.3271484, -1.3710938, -1.0478516, -0.7939453, -0.54003906, 0.9145508, -1.3037109, 1.0605469, 1.1308594, -0.05407715, -0.8520508, 1.7685547, -1.3740234, -1.953125, 0.5654297, -1.8691406, -1.6875, 1.9423828, -1.2246094, -1.1464844, 1.2587891, -0.7128906, -2.7460938, -0.07159424, 1.3476562, 1.6962891, 2.7871094, 0.18115234, 0.15307617, 0.83984375, 1.8203125, 2.0527344, 0.18310547, -0.35131836, 0.62109375, -2.0097656, -1.6494141, 1.8007812, 2.1113281, -2.7578125, -3.515625, 0.10308838, 1.2685547, 2.0722656, 3.9492188, 1.0058594, 1.1650391, 1.1572266, 0.18432617, 0.5185547, -1.1835938, 0.19580078, -1.1152344, -1.0917969, 1.6914062, 1.4755859, -0.014503479, 0.89453125, -1.0039062, 0.31958008, 0.89990234, -3.796875, -0.0121536255, -0.22937012, -2.9765625, -1.9208984, -0.90966797, -0.17907715, 0.27783203, -1.9179688, 0.16662598, -0.4741211, -0.8105469, -0.34643555, -2.2480469, -1.0380859, 1.25, 0.63720703, -2.7929688, 0.38964844, -0.2097168, 0.31860352, 0.3425293, -0.7294922, 1.8320312, -2.6386719, -3.2714844, -1.1855469, -0.85791016, -1.1630859, -0.08660889, 0.26782227, 2.5292969, -2.2851562, 0.27514648, -0.88720703, 0.43554688, -2.046875, 2.5117188, 0.6796875, 0.3112793, -0.3720703, -0.9394531, 0.8022461, 2.078125, -0.53027344, -0.48535156, -1.8164062, 0.92529297, 2.2832031, -1.3798828, 1.5810547, 1.0917969, -2.1113281, 1.3154297, -1.6679688, 1.8710938, -2.0449219, 0.21118164, 2.2578125, 1.0800781, -0.36132812, 4.0625, -0.1854248, 1.8056641, -0.06359863, -0.0003643036, 1.9511719, -4.9257812, 0.55615234, -0.85791016, -3.859375, 0.86279297, -0.28027344, 0.09472656, 2.8710938, 0.9765625, -0.10638428, 0.71240234, -0.12939453, -2.4804688, -1.8291016, 0.36889648, 1.6992188, -0.8857422, 0.14697266, 0.17822266, -0.7416992, -1.1025391, 0.82714844, -2.5507812, 0.67529297, 0.49780273, 1.0576172, 1.0507812, 2.5800781, -1.2021484, 0.05432129, -0.30541992, 0.06112671, -0.021560669, -0.38012695, 1.5917969, -2.25, 3.8789062, -0.6010742, 0.58251953, -0.46826172, 0.94921875, -0.31030273, -0.8725586, -2.8925781, 0.77783203, -0.18652344, -0.07385254, -2.9316406, -0.4645996, -3.2480469, 0.39086914, -0.7734375, -0.15429688, 0.62109375, -2.3398438, -0.122802734, 2.4140625, 0.21057129, 1.0878906, -0.025985718, -1.7373047, 0.45703125, 1.3505859, 0.7553711, -1.6601562, -1.6865234, -0.09173584, -1.3935547, 0.037628174, 0.5366211, -1.6708984, -0.5888672, -0.80615234, -1.0087891, 2.0644531, 1.3603516, 1.5742188, 0.859375, -0.7216797, 2.1738281, -2.4667969, -0.19299316, 0.5644531, 3.6210938, 2.171875, 1.6845703, 1.0058594, 1.6972656, -2.9785156, -0.3564453, 0.27905273, -2.3476562, 2.5390625, -0.83935547, 1.1035156, -2.2070312, -1.640625, 1.3857422, 1.0087891, 3.5253906, -1.1572266, 1.3964844, 2.453125, 1.5410156, -0.47558594, 2.7207031, 1.3144531, 2.0117188, 1.9707031, -1.5283203, -0.19042969, 0.038269043, 1.7617188, 2.4003906, 0.033966064, 0.30126953, -1.5849609, -1.0351562, -0.2607422, -0.3154297, 0.12225342, 1.0869141, 0.23327637, 0.50341797, -0.69921875, 0.7182617, -0.9794922, 1.3173828, -0.24438477, 1.0927734, 0.67333984, -0.51464844, 1.7070312, 1.0283203, -1.5253906, -2.2070312, 0.51953125, 1.8544922, -0.04989624, 0.23925781, -1.8056641, -1.8085938, -0.088134766, -4.2773438, -2.2128906, 2.2304688, 0.17614746, 1.0917969, -0.7138672, 2.0019531, 1.8613281, 2.9570312, 1.3320312, -2.0390625, -0.8598633, 0.5258789, 1.3447266, 0.3564453, -1.7128906, -0.7788086, -2.8925781, 0.88378906, 3.1289062, 1.1152344, 0.8598633, 0.52246094, -1.8564453, -1.5810547, -2.3867188, -2.4335938, 1.9892578, -0.86328125, 0.35913086, 2.0214844, 0.68603516, 1.0966797, 0.8027344, 0.24890137, -0.19689941, 4.5742188, 1.7480469, 0.44848633, 0.27539062, -1.9921875, -2.9355469, -4.9492188, 0.80615234, 0.09436035, -1.8828125, -1.9580078, 0.10668945, -3.4511719, 1.6933594, -0.25830078, 3.2617188, -2.3203125, 0.5395508, 0.26416016, -0.2565918, -1.9365234, -0.93652344, -1.3417969, 0.61035156, -2.0488281, -0.90234375, -0.67285156, -3.8613281, -0.42993164, 0.056427002, -0.028533936, -0.45776367, -0.6713867, 0.35058594, 0.16137695, 2.3183594, 2.34375, -1.9326172, -0.22094727, -2.0273438, 0.047912598, 1.3525391, -0.7421875, 0.48120117, -0.67333984, 0.55810547, -1.2324219, -0.79003906, 2.5644531, -0.14624023, 1.3740234, -0.26757812, 1.3398438, -0.6621094, -1.5488281, 1.6582031, -0.16210938, 0.63378906, 1.0283203, -0.36254883, -0.12915039, -2.7089844, -2.4296875, 0.8457031, -2.3964844, -0.8129883, -0.47875977, 0.50927734, -0.11920166, -0.79589844, 2.2832031, 2.0898438, 0.058776855, -0.9350586, 0.42993164, -2.5058594, 1.1669922, 0.9379883, -0.8027344, -2.1386719, -0.83691406, 1.9794922, 1.7255859, 2.5839844, -0.20007324, -1.2783203, -2.8417969, -0.14355469, 0.023330688, -0.5136719, 4.2929688, 2.2050781, -1.4638672, 0.70458984, -1.09375, 1.03125, -0.49169922, 1.5097656, 1.2685547, 1.53125, 1.5351562, -1.3125, -1.2070312, 1.4824219, 1.0634766, 2.0253906, -0.41601562, -2.8359375, 1.1318359, -2.8828125, -1.1123047, 0.42260742, 0.087524414, -1.9951172, 5.046875, 1.7714844, -1.8935547, 0.5600586, 0.6015625, -0.89746094, 0.6298828, 1.0654297, -0.42797852, -1.3457031, -0.4873047, -0.53027344, -0.9692383, 1.1083984, -1.4853516, 2.2949219, 1.7753906, 2.2734375, 1.0644531, 1.9511719, -0.02470398, 0.55908203, 3.2695312, -0.64746094, 2.7402344, 1.1347656, 2.6191406, 1.0683594, 0.22766113, 0.05517578, -0.22045898, 0.24084473, 1.2275391, 0.4970703, 0.61279297, -2.6699219, 1.4121094, -0.22473145, -1.3876953, 0.9584961, -0.27246094, -0.79052734, -1.7060547, -0.059509277, -0.058135986, 1.921875, -1.3037109, 0.03640747, -0.45214844, -1.8808594, 0.19311523, -0.796875, 0.5644531, -1.265625, 2.6503906, 0.47436523, 1.5712891, 1.3710938, -1.1650391, 0.6616211, -0.61328125, 0.06298828, -1.1152344, -1.9677734, 2.3730469, 0.07757568, -2.4941406, 2.203125, 0.9760742, -1.2587891, -0.2861328, 0.77001953, -0.22668457, -0.13574219, 2.0898438, 1.6972656, -0.7011719, 0.26538086, 0.17443848, -3.3964844, -2.9648438, 0.3251953, -0.17480469, -0.3779297, 0.8022461, -3.5488281, 1.1777344, 2.0976562, 0.96728516, -1.9433594, 1.390625, 0.0013589859, -1.2363281, 1.5019531, 2.8769531, 0.1862793, 3.0253906, 0.6503906, 0.06970215, 0.71728516, -1.2255859, 0.070251465, 0.75390625, 2.3671875, 1.1367188, 0.921875, -1.1035156, 0.9941406, 1.6630859, 0.15759277, 1.0048828, -0.4189453, 1.5751953, 1.4824219, -1.5263672, -2.0761719, 1.9287109, -0.5517578, -2.1367188, -1.3779297, -2.3867188, -1.1210938, -0.4699707, 0.21008301, -1.5585938, 0.026611328, -2.0058594, -0.7397461, -3.7207031, -0.8208008, 2.3984375, -0.46313477, 1.3486328, 3.3222656, -0.55126953, 1.4101562, -0.5083008, 2.8691406, 0.3005371, 0.5097656, 0.51416016, -0.7973633, -0.6748047, 1.1591797, 2.7324219, -1.7705078, -1.9619141, 1.3408203, 1.6464844, -0.56103516, 0.4880371, 0.64208984, -0.62646484, 2.1796875, 2.1660156, -0.084228516, 0.08117676, -0.60498047, -1.2734375, -2.1523438, -0.38085938, 1.2402344, 2.5683594, 2.3632812, 0.3515625, 0.65185547, -2.8984375, -0.19262695, -0.03036499, 0.89990234, 3.625, 0.59765625, -3.3457031, 0.9238281, 1.0371094, 2.4941406, 0.4580078, 0.9848633, -2.1894531, -0.22094727, 2.140625, 1.0693359, -0.5463867, 2.46875, -3.0664062, -1.2148438, 2.4980469, 1.5341797, -0.48388672, 1.2070312, -0.62646484, 1.1552734, -1.9042969, 1.0742188, -1.6044922, -2.5136719, 0.13146973, 0.8457031, 0.5698242, 0.66308594, 1.4423828, -2.9335938, -0.22436523]}, "B001KLJX9M": {"id": "B001KLJX9M", "original": "Brand: Mr Heater\nName: Compact Radiant Propane Heater by Mr. Heater\nDescription: Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline\nFeatures: \n", "embedding": [-0.012550354, -0.47802734, 3, 1.78125, -1.0644531, 1.1972656, 1.53125, -1.0087891, 0.8989258, 1.4414062, 2.2246094, 1.0732422, 0.13232422, -2.0898438, 1.1318359, -1.0058594, 1.5527344, 0.49121094, 2.1289062, -0.7636719, 0.20056152, -0.9135742, 1.2001953, -2.5507812, 0.21557617, 2.0878906, 5.4257812, -1.6601562, -0.89208984, -0.5966797, 0.21911621, 0.31201172, 0.41064453, 2.21875, -2.1757812, -0.7519531, -3.2871094, 0.32983398, -2.5, -0.66845703, -1.5732422, -0.030151367, -0.6040039, 1.1923828, -2.8183594, -0.9980469, 1.4833984, -0.48242188, -0.35253906, -0.49682617, 0.91796875, -0.6323242, -2.5722656, 0.21716309, -1.0722656, 1.0615234, -2.2949219, -3.6503906, 1.1435547, 0.5336914, 0.03161621, -1.1728516, -2.8320312, 0.6513672, 0.82177734, 1.6464844, -1.3886719, 0.29077148, -0.08416748, 0.118896484, 3.0195312, -0.082092285, -1.0751953, -0.7583008, 1.8134766, -1.1113281, -4.0039062, 0.34106445, 3.2421875, 0.16723633, -0.390625, 1.0283203, 0.001001358, 1.0742188, -1.5009766, -0.62109375, -1.0498047, 0.8417969, 2.4921875, 2.421875, -0.8432617, 1.7539062, -1.1318359, -3.0625, 1.5419922, -2.2304688, -0.32373047, 0.68408203, 0.08123779, 1.5625, 0.6357422, 0.58496094, 0.52246094, -1.2109375, -0.7216797, -1.1845703, -0.08154297, 1.5244141, -0.9736328, 2.3320312, -2.6347656, 2.1132812, 4.2382812, -0.006412506, -2.25, -0.85058594, 0.16503906, 2.5253906, 5.1835938, 0.6748047, 2.9355469, -2.1132812, 3.2617188, -1.6396484, -0.27490234, -0.38793945, -1.1357422, 1.3613281, 0.63964844, -3.4863281, 1.5449219, 1.1083984, 2.6582031, 0.45581055, -0.17004395, -2.15625, -1.9228516, -2.2011719, -2.796875, -4.4414062, -0.29907227, 0.6176758, 0.9033203, 1.0761719, -3.703125, -1.7441406, -0.2915039, -0.41723633, -1.1240234, -0.9794922, 2.2519531, -2.8203125, -2.34375, 0.609375, 0.07159424, 3.2695312, -0.39501953, 0.08306885, 3.078125, 1.3457031, 1.1191406, 0.39331055, -0.16137695, 1.1904297, -1.4384766, -2.2402344, 0.625, 0.63720703, -0.6582031, 2.8554688, 0.4663086, -2.0097656, 1.3271484, -1.6503906, -0.6767578, -2.4316406, 0.5371094, 3.1601562, 0.98779297, -1.0810547, -3.4238281, -0.12817383, 0.9272461, -0.41674805, 1.1464844, -0.47387695, -2.5117188, -0.016403198, 0.49487305, 0.024505615, 0.43286133, 0.5966797, -0.09295654, 0.9272461, 0.42260742, -1.4658203, -1.4755859, -2.1777344, 3.5117188, 0.8417969, -2.8535156, -0.09576416, -0.75390625, -1.3886719, -1.3095703, -3.7910156, 0.5048828, -2.1855469, 0.6010742, 1.0566406, -0.74072266, -0.7841797, 2.3007812, -0.41870117, 1.5175781, -1.1767578, 0.85302734, -0.98828125, 2.0273438, 2.6621094, -0.3190918, 0.96533203, 0.8676758, 0.43920898, -0.9790039, 2.9667969, 0.52734375, -0.9326172, -0.859375, -2.015625, 2.5390625, 1.6914062, 0.5473633, -0.1940918, -1.0771484, 1.9873047, 1.4052734, 1.1015625, 1.0302734, 0.15881348, -0.3618164, -0.375, 0.94384766, -0.9213867, 0.19213867, 2.8476562, 0.25561523, 0.6088867, 0.98046875, 1.6904297, 0.37670898, -0.69189453, 0.000849247, -1.1875, -2.9375, 1, 0.5083008, -0.01348114, -0.6020508, -0.7011719, 1.8046875, 0.55322266, -0.69970703, 1.7177734, -0.28735352, -0.37060547, 3.9394531, 2.6855469, -0.87109375, -0.06097412, 1.0634766, 3.6796875, 0.5317383, 1.7607422, -0.390625, 1.9902344, 0.31567383, 3.8808594, -2.2929688, 0.7216797, 0.54003906, -1.3417969, 0.21191406, -0.80566406, -0.91259766, 0.64160156, 0.31420898, 0.80322266, -1.0976562, 0.38793945, 3.5019531, -0.18786621, -1.5009766, 2.8867188, -0.5078125, 2.0273438, 1.265625, -0.95996094, -0.2956543, -0.49316406, 2.625, 0.58251953, -1.9228516, 0.6435547, -0.72558594, -0.81884766, -0.8129883, -0.8574219, 0.46411133, 0.07904053, 2.3652344, -1.3759766, -0.86083984, -1.6777344, -4.6601562, -0.06341553, 3.6367188, -3.3945312, 1.1416016, 0.5986328, 1.7773438, 0.4116211, 1.4609375, -0.20544434, 0.32617188, -0.21875, -0.46728516, 2.5761719, -1.0146484, -1.0771484, -0.34399414, 0.56396484, 1.2646484, -2.1523438, -2.0253906, 1.5878906, -0.71484375, -3.4726562, 1.9003906, -0.17504883, -0.89990234, 1.9189453, -2.5410156, 2.2578125, -0.12597656, -2.2265625, -0.83984375, 0.7729492, 0.12200928, -1.6914062, 0.86083984, 0.859375, -2.3613281, -5.9726562, -0.04788208, 1.4765625, -1.9853516, 0.20019531, -0.66796875, 1.3720703, -0.75390625, -2.0019531, 0.059539795, -1.6865234, -0.40942383, -0.45629883, 1.7910156, -3.109375, 2.0820312, -1.2617188, -0.052734375, -1.4658203, -1.6220703, -0.36279297, -2.1894531, 3.890625, 0.40551758, 4.7617188, 0.4921875, 1.2646484, 0.56884766, -0.2944336, 0.9770508, -1.2021484, -2.6445312, -0.43725586, -1.3291016, -1.4658203, -2.4453125, -3.3242188, 1.0371094, 0.3178711, -1.1933594, 0.16821289, -0.78466797, -0.5864258, -1.4746094, 0.16833496, 0.53515625, -0.27978516, -0.33154297, 0.47802734, 0.24987793, -1.5458984, 0.41259766, -0.63427734, -0.18713379, -2.7246094, 0.5732422, 1.0244141, 1.3662109, 0.88916016, -0.81103516, 1.0087891, 0.79052734, -3.9648438, 2.1992188, 3.3007812, 0.9794922, -0.97509766, -0.55859375, -2.8398438, -1.3173828, -0.84716797, 2.859375, 0.097717285, 3.4511719, 1.59375, -1.5126953, 0.57666016, 3.1757812, -2.6972656, 0.2927246, -1.6572266, 2.0410156, -1.96875, -1.8310547, 0.47143555, 1.8134766, -2.2988281, -0.19714355, 2.3769531, -1.0078125, 0.79541016, 0.37670898, -0.7084961, 0.19494629, 2.6640625, 0.85302734, 2.0644531, -1.5273438, -1.7607422, -1.7783203, -0.1665039, 2.2011719, 3.0136719, -2.0917969, 0.15722656, 1.2714844, 1.0302734, -0.061340332, -1.2519531, 0.68408203, -0.2915039, 0.35791016, 1.0556641, 1.8681641, -0.28149414, 1.8359375, -0.76904297, 2.8339844, 1.3515625, -0.17480469, -1.0449219, 3.078125, 0.76953125, -1.8339844, -0.7783203, 0.84228516, 0.34570312, -0.7573242, 1.1845703, -0.6699219, 0.2709961, 1.6708984, -2.1953125, -2.8339844, -1.3984375, 0.43310547, -0.6401367, -1.4472656, 1.0634766, 1.1542969, -0.38891602, 0.54052734, -2.8476562, -0.7270508, -0.6699219, 1.5322266, -1.1533203, -1.5107422, -1.4511719, 0.57910156, -0.40820312, 1.2939453, -1.5439453, -1.9648438, -1.0859375, -1.9541016, 1.3886719, -1.1435547, 2.6035156, 0.9863281, -1.9677734, 0.15917969, -3.5742188, -1.8427734, 0.6665039, -2.0175781, -0.51220703, 2.7519531, -0.6928711, 1.2988281, -0.82128906, 4.0625, -1.3632812, 1.0341797, 2.4902344, -1.0996094, 1.7744141, -2.1542969, -4.9101562, 1.0683594, -1.4697266, 0.71191406, 2.8769531, -0.40722656, 0.34399414, -1.0166016, 0.49145508, -1.7392578, -3.640625, 0.054718018, 0.89208984, -0.9326172, 0.02848816, 2.7128906, 0.039031982, -4.2304688, -1.0712891, 0.056549072, -0.34448242, 1.1865234, 0.6147461, -1.3994141, 1.5126953, -1.1171875, 1.4931641, -1.5136719, 0.3137207, 1.0244141, 0.5595703, -0.26123047, -1.9091797, 2.0917969, 1.4580078, -0.14465332, 0.077941895, 3.3671875, 0.8623047, -2.578125, 1.1953125, 1.4941406, 1.6318359, 0.19189453, -2.5683594, -0.7792969, -1.6669922, -1.1445312, 0.23132324, -0.15893555, -0.23400879, -2.0117188, -0.46704102, 0.57177734, 1.7773438, 2.4980469, 2.1640625, -1.4248047, 0.7294922, -0.43896484, -2.2753906, -1.4130859, 0.30249023, -1.2412109, -1.4785156, 1.5839844, -0.25048828, 0.59033203, -1.7734375, -0.36254883, -1.0263672, -0.33666992, 2.6445312, 2.0136719, 0.050048828, -0.6879883, -2.6113281, -0.56933594, -2.0390625, 0.89746094, -0.6513672, 1.0478516, 0.1315918, 0.91503906, 3.0117188, -1.3085938, 1.8056641, 0.8925781, -2.3242188, 1.2470703, -0.69970703, -0.024841309, -1.5751953, -1.0449219, 0.88378906, -0.5102539, 3.9296875, -0.46289062, 0.22924805, 0.12756348, 0.10803223, -0.051452637, 0.2915039, 0.24487305, -1.2822266, 2.7636719, 0.35864258, 0.8720703, -0.9355469, 0.027832031, 2.3554688, 1.9619141, -0.13293457, -1.1308594, -0.80615234, 0.89941406, -1.3017578, -1.3066406, 3.3203125, -1.7597656, 0.44189453, 3.1582031, 0.84228516, 0.578125, 0.18041992, 1.8291016, -2.4589844, 1.2402344, 0.734375, 0.11517334, 1.9628906, 1.3466797, -3.2871094, -1.7041016, 3.1679688, -0.3334961, 2.2011719, -1.5703125, -1.0439453, -1.1474609, -2.0371094, -2.0136719, -2.5019531, 0.67822266, -1.1835938, -1.1757812, 0.11352539, -0.3100586, 3.2792969, 2.5625, -0.59228516, -0.71240234, 0.6503906, -0.48535156, -0.61572266, 0.2097168, 0.066223145, -1.4677734, -0.63378906, 0.7705078, 0.3232422, -0.32226562, 1.4765625, 0.74316406, -2.8691406, -0.94970703, -1.6113281, 2.3007812, -2.3730469, -0.6621094, 1.4160156, 0.48242188, 0.86083984, -0.5800781, -2.828125, -1.3740234, 2.0546875, -1.4765625, 0.17749023, 0.14611816, -0.9926758, -3.2304688, -2.8496094, -1.7597656, 0.7998047, -0.24902344, -0.28955078, -0.18579102, -2.0429688, 1.1572266, 1.2578125, 1.0390625, -1.2392578, 1.4755859, -1.7226562, 2.0058594, 2.0429688, -1.3378906, 0.039733887, 0.61572266, 0.20178223, 1.0488281, 0.2692871, -2.3535156, -4.0039062, -0.18823242, -0.9526367, -0.38867188, 1.7744141, 0.24963379, 1.0927734, 2.234375, 1.8808594, -3.125, 0.47485352, -1.6240234, 0.6894531, 2.421875, -1.5185547, 1.7626953, 0.98291016, -1.359375, -1.0585938, 1.7988281, 3.5878906, -0.23657227, 0.10888672, 0.20935059, -1.6572266, 0.3515625, 0.4255371, 0.47680664, -2.0800781, 2.5175781, 0.050689697, 1.6699219, -0.5024414, -3.9492188, -0.59228516, -0.609375, -1.9755859, -0.52734375, -0.23510742, 1.7021484, -0.14611816, -1.2080078, 2.3671875, 0.25073242, 2.5703125, -0.17980957, 0.6958008, -1.1953125, 2.0742188, 0.2331543, -0.87646484, -2.9667969, -0.7583008, -1.3378906, 0.9013672, 1.7470703, -0.4790039, -0.33032227, -2.40625, 0.014839172, 0.18237305, 0.59716797, 1.4267578, 0.57177734, -1.9091797, 1.8642578, 1.0605469, -1.7011719, -0.5234375, 0.13598633, 2.9707031, -1.0205078, 2.7207031, 2.1132812, -2.4648438, -1.3632812, 0.15270996, 2.3632812, 0.7841797, -1.6328125, 2.0371094, -4.5390625, -0.75146484, -0.63427734, -0.47680664, -2.8066406, 1.4541016, 0.9770508, -0.6201172, 1.2705078, 1.9453125, 0.37695312, -0.78808594, 1.9814453, -0.06756592, -1.4121094, 0.52978516, -0.41601562, -1.2265625, 2.4042969, -1.0380859, 4.1875, 1.9960938, 1.1015625, -0.26489258, 1.3115234, -0.2277832, 0.6699219, 5.53125, 2.3808594, 1.8535156, 0.6669922, 1.4746094, 2.5371094, 1.0917969, 3.0644531, -2.1230469, 0.734375, 0.79296875, 0.42285156, -0.18359375, -1.6767578, -0.36132812, -0.58691406, -1.2246094, -2.6113281, -0.18005371, 1.7568359, -1.3691406, -0.49194336, 0.63134766, 1.2089844, -3.7988281, 1.0029297, 0.29541016, 1.1640625, 0.34716797, 0.08630371, 2.3164062, 0.28735352, 0.7060547, 1.3574219, -0.0061950684, 2.6464844, -1.9072266, 1.4277344, 2.203125, -1.3115234, 1.1767578, 1.2890625, 0.40454102, 1.3427734, 0.38745117, 0.010978699, -0.078063965, -2.1621094, -2.5957031, -0.47045898, -1.7246094, 0.09289551, -0.15222168, 3.0839844, -0.23962402, 1.2910156, -1.3808594, -0.15942383, -2.8105469, 3.2246094, 0.074279785, -1.4091797, 0.10443115, -0.9091797, 2.5507812, -1.3994141, 0.38183594, -0.75878906, 1.0029297, 0.95996094, 0.6640625, -1.5371094, 1.8808594, -0.10205078, 2.4667969, -1.0185547, -0.6147461, 1.0214844, -0.5751953, 0.75341797, -0.5498047, 0.5786133, -0.9584961, 1.4990234, -1.8642578, 0.9736328, 1.3603516, -0.6699219, 0.028747559, 1.2128906, 1.5869141, -0.36376953, 1.2402344, -1.1601562, 0.8300781, 0.5830078, -1.0595703, 0.35742188, -1.6748047, -0.8745117, -1.4365234, -1.3671875, -0.47631836, -0.50634766, 0.7324219, 0.69091797, -3.0351562, 1.1259766, 2.9570312, 0.09680176, 0.22998047, -1.2939453, -2.5332031, -1.5908203, -1.3652344, -1.2802734, 0.11224365, 0.61328125, 0.38623047, 0.03982544, 1.328125, 0.85009766, -0.43408203, -2.8339844, -2.3945312, -0.45483398, 0.9145508, -1.3291016, -0.7050781, -0.6689453, -2.5917969, -0.42260742, 0.5678711, 0.6582031, 0.5786133, -0.76220703, -1.5634766, -3.0546875, 1.2011719, 1.171875, 2.328125, 2.3261719, 0.46777344, 2.1660156, -3.3964844, -3.3378906, -2.4980469, -0.5678711, -0.47998047, 0.072021484, -0.124816895, 0.5317383, 0.96728516, 1.0078125, -0.3239746, 0.38549805, 1.4619141, -0.42016602, 1.375, 2.59375, 0.7207031, -0.6816406, 2.4042969, -0.02519226, 0.16821289, 0.49365234, -0.30541992, 2.0996094, -0.7495117, 1.6113281, -2.8066406, 0.34448242, -1.7148438, -0.6176758, 0.022125244, -0.421875, 1.1728516, 0.34057617, -1.2001953, -4.1796875, -0.6333008]}, "B07WF2X9LV": {"id": "B07WF2X9LV", "original": "Brand: BBQ Classic Parts\nName: BBQ Classic Parts 7\" Diameter Wheel and 5/16\" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1\nDescription: This is for a Single 7\" diameter black plastic wheel. Features a 5/16\" diameter axle hole, 1-3/4\" long axle hub and 1-7/8\" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.\nFeatures: High Quality that's made to last!!\n", "embedding": [-1.1455078, 0.42871094, 1.3291016, -2.6503906, 1.6875, -1.4755859, 1.2431641, -1.2519531, 0.52001953, 0.72802734, 3.3398438, -1.5410156, 0.06304932, -4.8476562, -0.16040039, 1.90625, -0.5888672, -2.4882812, 1.3242188, 1.8417969, 1.65625, 2.5039062, 1.4404297, -2.2949219, 2.1777344, 0.3059082, 2.8554688, -0.40454102, 2.078125, -0.7104492, 1.2373047, -0.62158203, 1.0253906, 1.7919922, -2.7539062, -0.16833496, 1.1357422, 2.7910156, -1.6044922, 1.8789062, -2.3886719, -0.23718262, 2.2519531, 2.8105469, -2.7265625, -0.50097656, 2.1894531, 0.30737305, 0.9082031, -3.9550781, 1.3876953, 2.3574219, -0.16137695, 1.1933594, -3.5390625, 1.8837891, -2.0097656, -0.6455078, 1.4257812, 1.1904297, 1.5107422, 1.5908203, -0.3256836, 1.9140625, -1.9863281, 3.8007812, 1.5175781, -0.5205078, 1.0488281, -1.1621094, 0.7294922, 1.2304688, -3.1640625, -0.46362305, 0.2487793, -0.4794922, -3.1289062, -0.03982544, -0.8105469, -1.4853516, -1.828125, 1.8632812, -0.76953125, -4.1015625, 0.65185547, -3.2910156, -1.3769531, -0.6982422, 2.6386719, -0.3334961, 1.0537109, 0.6425781, -2.0097656, -2.171875, 2.4785156, -1.4580078, -1.8847656, -2.8535156, 1.7695312, 0.6640625, -0.5605469, -0.59033203, -1.1894531, -1.5810547, -1.3183594, -1.2011719, -0.070739746, -2.8574219, -2.0644531, 0.48339844, -1.8359375, 1.7822266, 1.7685547, 0.36645508, -0.49902344, -1.2744141, 0.21032715, -1.2021484, 1.1240234, -0.5078125, 3.7460938, 1.9980469, 2.6699219, -1.6445312, -0.020553589, -2.28125, 0.054382324, 1.5224609, 3.6445312, -1.6162109, -0.515625, -2.7910156, 3.6191406, 0.18835449, -0.5522461, -1.4453125, -0.27124023, 0.8925781, 0.24597168, -0.9638672, -0.46533203, 1.1972656, 1.6650391, 0.29516602, -2.328125, -2.0585938, -0.78515625, -0.8276367, -2.0566406, -0.6430664, 3.3769531, -1.0244141, -1.3896484, 0.3486328, -0.028823853, 0.28222656, -0.65527344, -0.74121094, 1.0097656, 0.40722656, 0.6489258, -1.9716797, 1.2275391, 2.9414062, 0.42504883, -0.03677368, -0.72509766, 0.34814453, -0.103881836, 2.5546875, 1.125, -1.7021484, 2.203125, -2.6191406, 1.5761719, 1.0898438, -2.0976562, 2.7050781, 0.43823242, -0.66845703, -0.4008789, -2.6484375, -0.043121338, -0.69433594, 0.6953125, -1.84375, -0.2010498, -0.67822266, 1.4941406, 0.1875, -2.2617188, 0.41748047, 0.27124023, -0.38085938, 0.31640625, 0.36938477, 0.055633545, -1.5029297, 0.85302734, 0.4440918, -3.8105469, -1.6005859, 1.3339844, -1.3076172, 0.12347412, 0.26464844, -1.1230469, 0.14038086, 2.2714844, -0.24975586, -0.28027344, -2.4199219, 0.7163086, -0.34350586, -1.3164062, -0.9472656, 0.7729492, 1.0097656, 1.6533203, 2.2480469, -1.7880859, 0.6977539, 0.28710938, 2.1445312, -0.20593262, 1.7255859, 0.47387695, 1.9101562, -2.7109375, -1.3388672, 1.2363281, 1.6386719, 0.20251465, 0.33276367, -0.49951172, 2.71875, 3.4980469, -0.69091797, 0.12213135, -0.2290039, -1.0761719, -2.0605469, -0.25683594, -1.1337891, 0.18005371, 3, -3.8496094, 0.92871094, 2.0332031, -0.8491211, 0.3942871, 0.22387695, -0.41479492, 1.9345703, 0.71191406, 1.4384766, -0.7109375, 0.5024414, 0.040496826, -2.2070312, 3.5332031, -0.80859375, -3.8808594, -0.20483398, 1.4990234, -1.3183594, 2.9941406, 0.9042969, -1.4755859, -2.1894531, 0.59228516, 0.73339844, 1.1171875, -0.37768555, 1.3378906, 2.3359375, 1.3242188, 2.9863281, 1.3583984, -0.92822266, 2.2285156, 1.4414062, 2.4355469, -0.31079102, 1.3027344, 0.28027344, -1.5058594, 0.5732422, 1.5615234, 1.4472656, 3.6699219, 0.75097656, -3.2910156, 2.0664062, 1.4794922, 1.7011719, 0.98095703, -1.9296875, 0.87109375, 0.3408203, -2.4609375, -0.059509277, 1.8300781, 1.2636719, 0.29785156, 0.9238281, 0.79589844, 0.24377441, 1.5908203, 0.33618164, -0.94433594, 1.5107422, -2.3027344, 0.63378906, -0.953125, -1.21875, 0.8022461, -1.0166016, 2.2480469, -0.09234619, 0.18310547, 0.29638672, 0.9848633, -1.3759766, -0.8178711, 2.0605469, -2.5527344, -1.0917969, 0.16833496, -1.7890625, 1.7451172, 1.8203125, 1.0390625, -1.6357422, -3.1035156, -1.4355469, 0.89501953, 0.4309082, 0.2775879, 0.45874023, 0.35327148, 0.02053833, -2.4023438, 4.0039062, -2.0507812, -4.6210938, -1.7421875, 0.48510742, 1.0732422, 0.40649414, -0.62646484, 0.7788086, -1.9082031, -5.6015625, 1.2636719, -1.1484375, 1.7685547, 1.8261719, -2.2734375, -0.60498047, 0.27563477, -1.3291016, -1.7451172, -0.8847656, 0.60302734, -0.67578125, 1.6533203, -2.4472656, -0.42163086, -2.2011719, 0.4423828, -0.9033203, 1.2207031, -2.4179688, -1.2626953, 0.0018558502, -2.7167969, 3.4511719, -0.50634766, 0.2854004, -0.4855957, 2.4589844, 0.7602539, -1.0449219, -3.2890625, 0.28808594, 0.70751953, 1.2539062, -2.1699219, -2.9785156, 0.2944336, -0.9711914, 2.5136719, 0.328125, 0.29248047, 0.8959961, 0.080078125, -1.8496094, -1.5449219, -0.6645508, 0.3544922, -2.0253906, -0.3503418, -0.77685547, -1.0830078, -0.8911133, -1.6601562, -0.55371094, 3.7480469, -0.59375, 0.6635742, -0.56640625, -1.7304688, 3.1308594, 2.2402344, -0.6933594, 3.5566406, 1.6816406, -1.1367188, 0.3215332, 0.671875, -2.4726562, -3.2519531, -1.2626953, 3.6328125, 0.40771484, 1.1953125, -1.8544922, 2.8066406, -1.0869141, 1.8837891, 1.4824219, -0.7651367, 1.1357422, 1.0410156, -0.15185547, -2.2578125, 1.1396484, -0.22631836, -1.5917969, 0.5727539, 1.0410156, 0.6386719, 1.2744141, 2.0117188, 1.7880859, -0.7553711, -2.8417969, 4.1015625, 1.3291016, 0.5605469, 1.4130859, 3.3847656, 2.3496094, 0.42236328, 0.92333984, -0.4934082, 2.3300781, 2.9746094, 2.2734375, 0.8959961, -1.8525391, 0.94921875, 0.93652344, -0.14978027, -0.43969727, -0.7421875, -0.80908203, 1.7490234, 1.2109375, -0.81640625, 2.5625, -2.8828125, -0.9609375, 2.8964844, 2.0039062, -0.9980469, -0.080078125, 0.028060913, -0.32006836, -0.25439453, -1.1240234, -2.9140625, -0.60058594, 0.50439453, 0.016403198, -2.2363281, 0.34765625, 2.4335938, -0.5708008, -1.9023438, -2.1152344, 0.32788086, 1.1445312, -1.7607422, 0.20031738, 2.2148438, -1.2841797, 1.1347656, 1.8720703, -2.3476562, 0.027145386, -1.6611328, 1.4208984, -1.0566406, -1.6416016, -1.0615234, -2.3300781, -1.3486328, 2.8183594, 2.3066406, -0.9091797, 1.3476562, -1.2822266, -0.9345703, -1.1289062, 0.96777344, -0.47485352, -3.875, -3.0136719, 0.7807617, -0.017974854, 1.234375, 0.1439209, 2.7597656, -0.052612305, -1.5214844, 1.2138672, 1.8154297, 0.9458008, -1.4277344, -3.3476562, 2.0371094, -0.10101318, 1.421875, 1.9511719, 2.40625, -1.4169922, 4.9179688, 0.6347656, -2.0078125, 0.42651367, -1.7177734, -1.9638672, -0.26123047, -2.125, 1.3037109, -1.8232422, -0.8378906, -2.640625, 0.921875, -0.9394531, 0.98779297, -2.7285156, -2.6914062, 1.0888672, -0.16479492, -0.5917969, 0.08782959, 0.2109375, -0.3076172, -1.2041016, -0.44189453, -1.4345703, 2.8632812, 1.7402344, 0.35205078, -0.5517578, 1.9365234, -0.15576172, -1.7431641, -0.4453125, -1.1865234, 3.1269531, 0.073913574, -2.6953125, -1.4375, 2.8457031, -2.71875, -0.8959961, 0.8989258, -0.72998047, -1.9404297, 1.3173828, -2.3242188, -0.59375, 2.1875, -1.4189453, -1.2597656, -1.8056641, -1.6689453, -0.97216797, -0.107543945, 0.06384277, -0.018188477, 1.2822266, 1.578125, -2.5859375, 1.8212891, -0.9633789, 1.1972656, -2.1191406, 0.3894043, 0.20935059, 0.9350586, 3.2851562, -2.8046875, -1.2080078, -0.73046875, -0.5961914, -0.44750977, 0.083984375, -3.9394531, 0.5673828, -0.60498047, -0.1340332, -1.0146484, -0.053009033, -0.18115234, -0.04034424, -0.38134766, -2.2890625, 1.9101562, -2.5429688, -0.86328125, 1.9882812, -1.0283203, 0.63378906, -0.41601562, -0.09893799, 0.5493164, 0.48828125, -1.9013672, 2.3535156, -0.22607422, 0.83203125, 1.4941406, 0.58251953, 1.0205078, -3.3261719, 0.7973633, 1.1630859, -1.1582031, 0.18652344, -0.8623047, -0.5024414, 2.2167969, -0.5654297, 0.99609375, 2.7949219, 1.6435547, 0.67871094, 2.3964844, 0.53125, -1.8408203, 0.26538086, 1.5742188, -4.2304688, -1.3427734, 0.09307861, -2.3652344, 0.6767578, -1.0390625, -3.4394531, -0.16357422, 1.7568359, 0.43969727, 1.0644531, 0.22607422, -1.3076172, 0.47924805, -2.09375, 0.12756348, 0.08807373, -0.45532227, 1.8496094, -0.79541016, -0.71875, -0.54003906, 3.1015625, 1.9775391, -1.1376953, -1.8144531, 1.5693359, -1.2207031, -2.8886719, -0.578125, -3.0585938, 0.26123047, -0.3046875, 1.1630859, 3.7460938, 0.6767578, 0.15795898, 2.234375, -2.9199219, 2.7675781, -2.9179688, 0.06640625, -3.7792969, -0.06732178, 1.8144531, -1.1074219, 0.042816162, -1.2460938, 2.4140625, 0.9038086, 1.421875, 0.22277832, -0.076660156, 1.7675781, 2.2265625, -1.09375, -1.1015625, -2.6289062, 1.0917969, 1.4619141, 1.6757812, 0.84375, -0.83496094, -0.26098633, -0.734375, -2.0058594, -1.9091797, -0.30908203, -0.37939453, -0.7890625, 1.2236328, -1.2001953, -1.5419922, -1.2353516, 0.45410156, 1.3886719, -0.26489258, -4.4726562, -1.9423828, 3.8222656, -3.3515625, 0.8041992, 1.8466797, 1.3535156, 1.5703125, 0.41674805, 3.0292969, -1.1064453, 2.3710938, -0.28515625, 1.4589844, 1.6621094, 2.9609375, 1.6171875, -1.5390625, -1.8007812, -0.94677734, 1.1455078, 3.5039062, -1.4550781, -0.36572266, 1.234375, -0.14379883, 0.27612305, -1.3574219, 0.29492188, 1.3427734, 3.0136719, 0.34887695, -2.765625, 2.0566406, -2.8300781, -0.7421875, -0.15222168, -2.9296875, -0.015930176, -1.7001953, 0.63134766, 0.42211914, 0.06335449, -0.51708984, -0.8725586, -0.03112793, -0.79296875, -0.14746094, -3.015625, 3.4375, 1.1328125, -1.875, 0.3359375, 2.0703125, 1.0712891, -1.3076172, 0.80126953, -1.1396484, -0.5751953, -2.5996094, -1.1220703, -0.46679688, 2.2246094, 0.86572266, -2.2441406, -0.76904297, -0.5830078, 1.1787109, -0.12854004, 3.1425781, 0.4182129, 0.32202148, -0.6875, 3.2792969, 1.1826172, -0.27001953, 2.3183594, -2.4785156, 1.6005859, -1.5126953, 0.20019531, 2.0507812, -0.9448242, -0.18164062, -0.5097656, -2.2773438, -1.8183594, 0.86572266, -1.421875, -0.24926758, 0.4399414, 1.0146484, 1.6201172, 2.8222656, -0.7109375, 1.1054688, -1.2763672, -1.1640625, -2.9414062, 1.9755859, 0.7583008, -0.9902344, -0.68310547, -0.88720703, 0.3178711, 0.1706543, -1.7539062, 1.5058594, 0.43237305, -1.2109375, 3.8632812, 0.27612305, 2.9335938, 2.6015625, 1.4306641, 2.7226562, 3.21875, -0.6850586, -0.114868164, 1.265625, 1.5195312, 0.28955078, -4.4453125, 1.2636719, -1.6269531, 1.8027344, 0.19421387, 0.76123047, 2.7011719, -2.3242188, 0.45825195, -1.8076172, 0.89453125, -4.0546875, -1.0058594, -1.765625, -1.2822266, -0.82128906, -0.6948242, 4.8398438, 2.3808594, -2.6660156, -1.0380859, 1.2783203, 0.88720703, -1.2958984, -1.4404297, 1.7363281, -0.9213867, -1.4716797, 1.421875, 2.25, 0.44482422, 3.078125, 1.4394531, 1.3691406, -0.1875, -0.63378906, -1.5058594, 0.3479004, 2.7207031, -2.703125, -0.95947266, -2.8554688, 0.9951172, -0.8051758, -3.0917969, -0.8354492, -0.24523926, -0.92041016, 2.1777344, 1.4003906, -3.5976562, 0.4169922, -0.44360352, 1.2851562, -1.1113281, -0.23339844, -1.3886719, 0.15393066, -0.70996094, -2.0878906, 0.72802734, 2.4589844, 2.65625, -1.3496094, 0.54052734, 0.38208008, 2.1933594, 2.484375, 2.4199219, -0.95947266, 0.8071289, -1.0820312, 2.4765625, -0.8671875, -0.06378174, 1.0664062, -0.9770508, 1.7529297, -0.105895996, 0.7871094, -2.2070312, -1.8261719, 0.81689453, 2.4941406, -1.2490234, -2.7539062, -2.3710938, -0.5419922, 0.61572266, 0.32763672, -1.2353516, 1.7636719, 2.578125, 1.9941406, 1.0039062, -1.9755859, -0.3786621, 3.078125, -2.5039062, -1.4023438, -0.3388672, -0.107910156, 1.3154297, -0.49291992, 0.42944336, 2.9453125, 0.69970703, 0.18469238, -1.8769531, -0.027832031, -0.045013428, -0.57714844, -1.3125, -0.96191406, -0.27197266, -5.5117188, 0.3852539, -2.5507812, -0.09509277, 1.0166016, -0.15917969, -1.6611328, -2.4140625, 0.21936035, -1.8583984, 2.4707031, -2.875, 0.5986328, 3.46875, 0.6254883, -0.03253174, -0.023834229, -3.7910156, -0.5019531, -1.953125, 1.3896484, 1.1083984, -1.3261719, -0.5185547, -2.1777344, 1.7441406, -1.6699219, -0.90527344, 0.4140625, -0.40283203, 4.4726562, -0.54541016, 1.1455078, 0.16711426, -1.2597656, 0.75146484, 3.40625, 0.85009766, 1.265625, 0.77783203, 2.9941406, 2.2148438, -3.0976562, -0.14331055, 0.018692017, 2.1855469, -1.90625, 0.41235352, -0.18334961, 0.2006836, 0.06549072, -1.2041016, 0.8779297]}, "B07VZC21DG": {"id": "B07VZC21DG", "original": "Brand: yuxiangBBQ\nName: yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18\" W x 23\" H x 23\" D)\nDescription:

18\"W by 23\"H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

Introduction:

18\"W x 23\"H x 23\"D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

Why Choose Us?

1.Carefully designed: Modern minimalist style and Light Luxury

2.New Upgrade:Better, Prettier and More Handy

3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

We heartily provide customers the best products in the cheapest price.

Package Contents:

1 X Triple Drawer

1 X Screwdriver

3 X Handles

1 X English manual

\nFeatures: Product size: 18\" W x 23\"H x 23\" D. Cut hole size: 16\"Wx21\"Hx 23\". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently.\nOur outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance.\nFully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly.\nBox frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects.\nFast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible\n", "embedding": [-1.6640625, 2.0058594, 1.2753906, 0.86376953, 1.78125, -1.109375, -1.3144531, -1.5253906, -0.37963867, 1.8662109, 0.85595703, 0.8071289, -0.015052795, -1.3710938, 0.28222656, 1.6816406, -1.1083984, -0.33544922, 0.6660156, 0.83984375, -0.5239258, 1.8261719, -0.23034668, 0.71484375, 3.3925781, 1.1982422, 2.8300781, -0.29736328, 1.9189453, 1.0214844, 1.0800781, 1.2539062, 1.3720703, 1.0830078, -1.0908203, 1.3857422, 0.24865723, 1.4677734, 0.38134766, 1.3916016, 0.5776367, -2.3886719, 3.390625, 1.4160156, -4.0234375, 1.3085938, -1.1494141, 1.0791016, 0.27148438, -4.2265625, 1.2480469, 2.0078125, 0.8408203, 3.0820312, -2.3457031, -0.35107422, 2.0761719, -5.0976562, -0.578125, -1.6142578, 0.56591797, -0.07861328, -1.6162109, 3.2363281, 1.8632812, -1.4189453, 0.3449707, 0.8432617, 1.0361328, 2.265625, -1.5175781, 0.2019043, -1.7890625, -1.9257812, -0.30664062, -1.0693359, -0.2409668, 2.3886719, 0.8959961, 1.4150391, -4.1210938, 1.234375, -0.058166504, -1.8759766, -0.46606445, -0.34228516, -2.7128906, -3.1328125, -0.5625, -0.13769531, -0.48876953, 2.1699219, -1.8564453, -4.1601562, 2.7929688, -3.1601562, -0.42236328, -0.99560547, 1.7470703, 2.7578125, -0.033813477, 0.6870117, -1.3105469, 0.59521484, -0.3947754, -2.3085938, 0.50341797, 0.9355469, -2.1679688, 0.25024414, -4.5429688, 3.6074219, 0.7001953, -0.06689453, 1.9375, -0.00057792664, 0.3388672, 0.6479492, 2.3339844, 2.28125, 0.65185547, 1.5371094, -0.5058594, -2.46875, 1.0410156, 1.5253906, 0.18371582, 1.9013672, 4.7695312, -0.28295898, 0.95947266, -3.5625, -0.021636963, -2.0273438, 0.045806885, -2.7695312, -1.8759766, -2.0410156, -2.1054688, 2.3671875, -1.5634766, 1.2333984, 2.5605469, -1.9804688, -0.5595703, 0.85253906, 0.06329346, -0.48168945, -1.5693359, -4.3242188, -1.9619141, -1.5341797, 1.8476562, -0.0055160522, 2.3925781, -0.41625977, 0.036224365, -2.0117188, 3.4902344, 0.21130371, -0.48266602, -4.203125, 0.8959961, 3.4316406, -0.79052734, -2.8476562, -0.2211914, 2.09375, 0.35888672, 2.4023438, 1.1708984, -3.3339844, 0.29833984, -0.26538086, 1.3535156, 0.8300781, -1.0322266, 2.0898438, 2.3066406, -0.79003906, 1.1748047, -2.7792969, 0.33520508, 2.1074219, -1.4472656, -0.2548828, 1.2148438, -2.2285156, 1.0917969, -2.234375, 0.6635742, 0.18676758, -2.4667969, -0.5576172, 1.6484375, -0.5288086, -2.0351562, -0.1977539, -1.8662109, -0.7338867, 2.4257812, -1.4345703, -0.22570801, 0.1340332, -2.4628906, -0.2541504, -0.50097656, -0.20996094, 3.796875, 1.1552734, 1.5800781, -0.49902344, 3.7832031, -0.61083984, -0.5234375, -1.7167969, 1.0566406, -0.14855957, 2.8085938, 1.8134766, 0.08972168, -0.095581055, -3.21875, 2.2871094, 1.4804688, 0.7084961, 0.32299805, -1.0566406, 0.0736084, 1.5244141, 2.90625, 0.5913086, 0.8876953, -0.0025901794, -1.8330078, 0.35083008, 1.3945312, -2.9355469, -1.5322266, -0.35107422, 1.5644531, -1.40625, -0.2548828, 0.6201172, -0.24719238, -0.69677734, -1.3701172, 2.8203125, -0.3088379, -1.4277344, -0.8881836, -1.2216797, 1.1494141, -2.1699219, 1.7041016, 1.0351562, -1.5009766, -1.984375, -2.46875, -2.140625, 0.6826172, -1.1162109, 1.8046875, -1.9375, 1.7294922, -1.0117188, 1.0566406, -0.6328125, -3.5078125, -1.6552734, -0.8564453, 1.2763672, 1.4404297, -2.4472656, 1.5664062, 2.2832031, -0.78564453, 1.6845703, 0.3696289, 0.6147461, 0.1171875, -2.765625, 1.9765625, -0.5439453, -0.640625, -0.5932617, -1.6953125, -0.29174805, 0.61328125, 2.3886719, 5.6484375, -0.8901367, -3.1191406, 4.5507812, -1.5371094, -0.24597168, 0.57177734, -1.2880859, 1.3603516, -0.9550781, 0.123291016, 0.68408203, 0.058624268, 2.2890625, -1.4658203, -1.4091797, 1.5195312, -2.2617188, -0.30664062, 0.75878906, -2.7578125, 0.20202637, -0.5527344, -1.3115234, 0.109802246, 0.5566406, 0.3762207, -0.95703125, 2.8144531, 1.0898438, 0.23022461, -0.2854004, -2.0957031, -1.4726562, -3.4433594, 0.21142578, -0.97509766, -2.2050781, -0.77490234, -1.7734375, 0.9746094, -0.64697266, 1.8564453, -1.4121094, -2.3828125, -3.6152344, -2.25, -0.9091797, -1.1894531, 0.5756836, 0.2692871, -0.018234253, -3.0625, -0.31347656, -0.6713867, -1.4306641, -2.1328125, 0.18579102, -0.3684082, -1.1152344, -0.6171875, -0.94384766, -0.37939453, -5.2070312, 2.6757812, 0.5917969, 1.4306641, 1.7871094, -2.1269531, 1.6357422, -1.5625, 1.2373047, -0.69677734, 2.640625, -1.0400391, 0.1739502, 0.98779297, -3.9316406, 1.8496094, -0.24353027, 1.3320312, -2.0644531, 2.2167969, -0.051513672, -0.62841797, -0.9794922, -3.2792969, 4.0390625, 1.5283203, 0.39672852, -0.58935547, 0.48168945, 0.5180664, -1.2900391, -1.0791016, -1.1103516, 1.5419922, -1.5234375, -0.48754883, -2.9003906, 2.8027344, -1.3476562, 0.94921875, 0.27905273, 2.4804688, 0.34399414, -0.5883789, -3.1699219, -1.3613281, 1.1142578, -0.2409668, -1.0263672, -1.0341797, -1.7001953, -1.5419922, -0.1348877, 0.3684082, 0.8076172, 2.265625, -2.265625, -2.8925781, 0.32788086, 0.48535156, 0.3125, 0.44604492, -1.2285156, 2.3105469, -0.2043457, -3.171875, 0.54589844, 0.7368164, -0.953125, -3.421875, -0.5698242, 2.015625, -1.5361328, 3.71875, -1.1425781, 0.13110352, 0.265625, 1.1962891, 0.4230957, -1.3623047, 2.2304688, 0.57128906, -0.6743164, -1.9238281, 0.38867188, 1.5283203, -3.0136719, 1.1484375, -0.4802246, 0.78466797, -0.49658203, 2.0566406, 1.7304688, -0.41845703, -1.7734375, -0.9921875, 1.3144531, 1.2880859, 0.1459961, -3.7675781, 1.6640625, -4.0117188, 1.2548828, 0.31274414, -0.61865234, 2.6367188, 1.4472656, 0.23291016, -1.8369141, -0.9189453, 0.30517578, -0.8222656, -2.5722656, 1.0615234, -1.5771484, -2.5761719, -0.8066406, -2.3105469, 0.4584961, -3.75, 0.6142578, 0.7714844, -1.7900391, 1.9921875, -0.16748047, -1.859375, -1.8574219, -3.6699219, 1.5585938, -1.6083984, -2.96875, -0.87939453, -3.6796875, -1.1455078, -1.1367188, 0.29101562, 0.25732422, -0.5566406, -2.9941406, 1.2695312, -0.9580078, -1.1396484, -1.7675781, 0.89453125, -2.796875, 2.4101562, -0.24768066, -1.6357422, 0.8256836, -0.44091797, 1.8300781, -1.1669922, -0.76416016, 0.0340271, -0.33276367, -0.4255371, 1.1894531, -0.27124023, 0.30517578, 3.1601562, -0.9291992, -0.32373047, -1.8105469, 2.1503906, 1.8535156, 0.8911133, -0.47924805, 0.13269043, 1.9033203, 4.5195312, -1.9804688, 1.1367188, -0.7890625, -0.45922852, 1.6660156, -2.6171875, -0.26538086, 0.02557373, -1.5185547, 0.7104492, 1.4160156, 0.7729492, 1.7744141, 0.7944336, -2.3476562, 1.8330078, 0.72509766, -3.1210938, -0.45507812, -1.1152344, 0.6923828, 0.21960449, -0.9404297, 1.8183594, 0.3317871, -0.82421875, 0.52001953, -0.073913574, -1.1904297, 0.8017578, 0.4321289, -0.8149414, 4.3242188, 0.50146484, 0.29101562, -0.57128906, -0.46435547, -0.50683594, -0.53125, 0.5073242, -0.8339844, 1.6630859, -2.1503906, -0.0064430237, -0.72314453, 1.6162109, -1.6904297, -1.2607422, -3.4101562, 1.2265625, 2.0117188, -0.07904053, -1.2929688, -1.8369141, 1.0878906, 1.2626953, 0.51464844, 1.1982422, 0.47338867, -1.4384766, -0.1472168, -0.0473938, -1.2109375, 1.4550781, -0.14074707, -0.011833191, -0.5366211, 0.9589844, -2.1679688, -2.015625, 0.1862793, -1.9296875, 0.3544922, 0.8027344, -0.71533203, 3.6269531, -0.4729004, -1.1533203, 0.60839844, 3.1503906, 2.3886719, 2.2675781, 3.3183594, -2.7792969, -0.1303711, 2.4785156, -1.5195312, 1.3759766, 0.7392578, -1.3164062, 0.26635742, 0.17211914, 0.9550781, -1.0722656, 0.41723633, -0.27978516, 1.1679688, 0.3708496, -1.5742188, 2.8378906, 1.0947266, -1.7412109, 2.3671875, -0.91308594, 1.9042969, -1.6796875, 0.08679199, 2.609375, 0.79052734, -1.4267578, 0.8886719, -0.6557617, 1.8964844, 0.8691406, 0.73339844, 1.4511719, -2.0410156, 0.3166504, 2.3789062, 2.9902344, -0.08068848, -1.2919922, 0.6791992, 1.2353516, -0.23718262, -0.6713867, 2.9042969, 4.9921875, -0.8935547, 0.70751953, 0.546875, -1.6337891, 3.0117188, -0.56933594, -1.7314453, 0.061828613, -2.1171875, -0.9091797, 1.4150391, 0.2824707, -0.5410156, 0.2824707, 1.3642578, -0.7270508, 0.7836914, -2.171875, -2.4628906, 0.36572266, -2.0390625, 0.051879883, 2.6601562, -0.9926758, -0.50683594, 0.21240234, -0.95703125, -1.046875, 1.9111328, 2.140625, 1.1611328, -0.29003906, 0.13000488, 1.2705078, 1.1132812, 0.83984375, 0.25976562, -0.29125977, 0.8408203, 3.6367188, 2.5039062, 0.7915039, 2.1347656, 2.4589844, -0.19592285, 0.5673828, -2.9003906, 3.6269531, -0.7631836, 0.82470703, 1.9443359, -2.5527344, -2.4199219, 0.35205078, 1.4873047, 0.23059082, 2.3945312, 2.4414062, -0.066833496, -0.8510742, -0.52685547, -1.3798828, -4.2617188, -0.19018555, -0.65527344, -0.36499023, -1.7197266, 0.3034668, -2.4042969, -1.3310547, -1.0634766, 0.027801514, 0.70703125, -1.2705078, -0.6230469, -0.70751953, -1.9804688, -1.2529297, -0.00038337708, 2.7695312, -1.4755859, -0.05871582, 0.38964844, -3.21875, -0.8696289, 1.9121094, -2.3847656, -0.9433594, 0.91796875, -0.6303711, 1.8134766, 1.0947266, -0.33325195, -1.9189453, 0.37353516, -1.4990234, 0.69970703, -0.9355469, 0.5292969, 0.37524414, 0.042236328, -1.5703125, -0.11956787, -3.9199219, 2.3066406, -2.2304688, 0.14685059, -0.46435547, 0.640625, 2.5410156, 1.0732422, 1.3339844, 1.8789062, 0.07977295, 1.5390625, 3.0371094, 1.8027344, -4.1484375, -1.8105469, -1.3955078, -2.203125, -0.38452148, -1.8925781, -0.9038086, 1.3486328, -0.16125488, -0.32763672, 1.1787109, -0.6147461, 0.103515625, 0.9916992, -0.8417969, 1.6962891, 1.4179688, -1.1171875, -2.1464844, -2.8027344, 1.1435547, -1.0751953, -0.5102539, -3.859375, 0.7109375, -1.9033203, -0.32250977, 1.1621094, 0.47753906, 3.2910156, 2.5722656, -3.3339844, -1.2470703, 2.1914062, 0.8457031, 2.2226562, 0.41625977, 1.2861328, -0.13781738, 4.8125, -0.6113281, -1.2646484, 3.3867188, -2.2734375, -0.26489258, 0.1973877, -3.6347656, 1.6572266, -1.4257812, 0.7324219, -2.9570312, -1.5878906, -1.4550781, 1.6992188, -0.12841797, -0.26123047, -1.3037109, 2.7558594, 0.6845703, 0.8486328, 2.5527344, -1.6601562, -0.35302734, -0.8198242, 1.2451172, 1.2080078, 3.9550781, 0.63720703, 1.1015625, 0.2861328, -0.26611328, -1.2304688, 4.125, 1.7773438, 1.1552734, 0.79248047, 0.23596191, -0.48364258, 2.0058594, 3.90625, -0.0019187927, 0.34277344, 2.6328125, -0.3317871, -1.1015625, 0.99121094, 0.6557617, -1.0791016, 0.019485474, 1.1962891, -0.36743164, -0.3256836, 1.1503906, 0.8334961, 1.2832031, 0.2548828, 1.5361328, -0.53027344, 0.29882812, -1.6337891, -0.99658203, -1.9414062, -3.125, -1.1943359, 0.81347656, 0.4819336, 0.64746094, 2.6523438, 1.0087891, 1.5146484, 0.27392578, -0.7739258, -0.7993164, 0.004295349, 0.30639648, -2.1757812, 2.2089844, 3.375, 1.1855469, -1.1230469, 4.1210938, 2.1894531, 0.50097656, -0.98583984, 0.49975586, 1.0732422, 0.22644043, 1.7060547, -0.11651611, -1.5341797, -1.0166016, 1.7675781, -0.17687988, -1.1123047, 2.0039062, -0.06311035, 2.8320312, 0.7919922, -4.3046875, 0.23278809, 1.8574219, 2.484375, -1.4394531, 2.015625, -0.062683105, -3.2460938, -1.421875, -1.9960938, 1.4003906, 2.1503906, 2.7011719, -1.3349609, 2.2480469, 1.6767578, 0.49121094, 1.7021484, 2.4082031, -0.79589844, -0.94873047, 0.51123047, 4.6757812, 0.0736084, 0.9433594, 0.07989502, -0.28442383, -0.7817383, 0.43676758, 2.8613281, -1.9003906, 1.0009766, -1.734375, 0.26123047, 0.71240234, -1.5068359, -1.1474609, 0.3737793, -1.1650391, -0.024459839, -0.1451416, -0.04437256, 0.57177734, 3.1777344, 0.95214844, -0.8144531, -1.0078125, 3.9550781, 0.4873047, -0.96777344, 0.7480469, -1.2832031, 1.2197266, 0.19555664, -0.21960449, -0.77734375, -0.39379883, -1.0966797, -0.93310547, 3.2304688, -0.3552246, 0.73291016, 0.17529297, -1.3681641, -0.16760254, -0.05203247, 0.7163086, -1.3310547, 0.52978516, 4.53125, -0.56347656, -0.7558594, -0.8803711, 0.8745117, 0.0008916855, 1.2587891, -1.7246094, -0.28222656, 2.65625, 1.4541016, -1.0878906, -1.7402344, -3.3710938, 2.0507812, -0.87939453, 1.9453125, 0.28271484, -1.2597656, -0.4892578, -1.5019531, 0.18286133, 0.55859375, -2.2304688, -1.6748047, 0.082214355, 0.055786133, -0.57177734, 0.086120605, -2.0195312, -0.93115234, 0.22106934, 3.2890625, 2.2089844, -0.35351562, 1.9726562, 3.0957031, 1.2744141, -1.1279297, 0.014297485, 0.4086914, 2.7851562, -1.3964844, -0.75927734, -0.14550781, -0.9614258, 0.5366211, -1.875, -2.0488281]}, "B0818XQ13S": {"id": "B0818XQ13S", "original": "Brand: BeebeeRun\nName: BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,\nDescription: \nFeatures: \ud83c\udf61\u301023 Pieces Food Playset\u3011BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1, \u00a0salt*1, pepper*1,BBQ grill*1\n\ud83c\udf62\u3010Play and Learn\u3011 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half\n\ud83c\udf61\u3010100% Safe\u3011All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers\u2019 hands\n\ud83c\udf62\u3010Gift For Ages 3 To Up\u3011The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun.\n\ud83c\udf61\u3010Convenient to Use\u3011Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n", "embedding": [-1.9052734, 2.2832031, 0.057861328, -1.7783203, -0.2836914, 1.2675781, 2.0195312, -1.0283203, 0.8388672, -1.1669922, 0.45898438, 1.4248047, 1.0771484, -2.3457031, 1.1933594, -0.08343506, 1.7285156, 1.7314453, -0.26098633, -0.20935059, -0.15124512, -0.55908203, -0.68652344, -0.6303711, -1.0751953, -0.6098633, 3.1113281, -1.5068359, 1.0986328, 0.086120605, 2.6054688, 0.30810547, 0.9296875, 3.5, -3.0488281, -0.0129852295, -0.051513672, 1.2666016, -1.0302734, -1.0410156, -0.2800293, -0.35375977, 1.8300781, 2.7304688, -4, -0.37573242, -0.7998047, 0.62890625, -1.6455078, -2.5683594, 0.062042236, 3.0253906, -2.96875, 0.49072266, -3.0566406, 0.84033203, -4.4140625, -1.0205078, -0.23791504, -2.2148438, 0.9663086, 0.92529297, -0.7114258, -0.37060547, -0.8461914, -0.8676758, 0.6040039, -2.2714844, 1.3320312, -1.453125, 3.7207031, -0.022445679, -2.0019531, -0.28320312, -1.2578125, 0.8676758, -1.2998047, -0.64453125, 0.76171875, -1.6279297, 1.0341797, -0.24572754, -1.03125, -1.4003906, 0.37426758, -0.5644531, -2.6464844, -2.2382812, 2.7890625, 2.1191406, 1.3515625, 0.71728516, -1.2109375, -3.9433594, 2.7988281, -1.1347656, -1.4501953, -1.0205078, 0.45361328, 3.4257812, 0.18835449, -2.4980469, 0.28125, 0.035705566, -0.78808594, -0.86865234, 0.52490234, 0.32495117, -2.5253906, 0.0814209, -1.7929688, 2.6679688, 0.46435547, 0.51416016, 0.81591797, 1.2421875, -0.92871094, 1.8408203, 0.97558594, 1.4902344, 4.0390625, -1.4316406, 1.5527344, -1.7890625, -0.37329102, 1.0283203, 0.23657227, 1.5419922, 1.4355469, -1.4101562, -0.84765625, -0.18371582, 1.0605469, -0.104003906, -3.7617188, -1.3515625, -2.3496094, -1.9501953, -0.8823242, 0.3305664, 0.0814209, 0.10046387, 0.89453125, 1.4384766, -1.1503906, 1.2333984, -0.54345703, 2.0117188, 1.4248047, -3.1035156, 1.4990234, -1.8603516, -2.0625, 0.3618164, 2.1269531, 1.3232422, -1.1425781, -0.31274414, 1.5009766, 0.25634766, -0.05041504, 0.26708984, -1.1103516, 0.73046875, -0.734375, -2.5683594, 0.9970703, 2.2226562, -2.203125, 2.6816406, 2.3613281, -0.21789551, 1.5009766, 0.19848633, 0.44335938, -2.0019531, -1.9726562, 1.3300781, 1.0869141, -2.0292969, 2.109375, -1.6640625, 1.8251953, 2.5839844, -1.3740234, 0.49072266, -0.47314453, -0.89160156, -0.35986328, -0.7739258, 1.0322266, 0.40454102, 0.7055664, 1.3193359, -1.5605469, -1.3085938, 1.1123047, 0.9394531, 0.23388672, 2.9492188, 1.3134766, 0.88378906, -0.21179199, 0.63134766, -1.5917969, -1.7919922, -1.4335938, -1.1660156, 2.6464844, -0.22021484, 1.6914062, 0.12475586, 1.6074219, 1.2773438, -0.21923828, -1.3505859, -1.9990234, 0.03265381, 1.5703125, 2.0273438, -3.0546875, -0.11437988, -0.35742188, 2.8144531, 0.32885742, -0.6635742, 1.2138672, -0.6875, -1.6640625, -0.25439453, 0.0046310425, -0.23742676, -1.3583984, -0.4033203, 0.15441895, -0.33569336, 1.640625, -1.2314453, 0.012916565, 1.0234375, 0.96972656, -1.2822266, -2.1074219, 0.5834961, 0.39624023, 1.7001953, -0.9013672, 0.69189453, -2.5644531, -0.38012695, 0.08691406, 1.5146484, 1.5478516, 0.28051758, -0.02217102, 0.6269531, -3.5058594, 0.33789062, -3.6875, 0.5029297, 2.4628906, 1.1572266, -1.6738281, 0.3491211, 3.8886719, 0.48388672, 2.7265625, -0.3630371, -1.8359375, -2.859375, 0.3293457, 1.3037109, 1.1425781, -2.1757812, -0.043426514, 0.11065674, -0.4716797, -0.90527344, -0.111328125, 0.17980957, -0.73535156, -1.7314453, 0.70458984, 0.11431885, -2.5996094, -0.63378906, -1.90625, -3.1777344, 1.9277344, 1.0751953, 3.8359375, -1.1474609, -0.41235352, 2.8183594, -4.1171875, 0.12213135, -2.0351562, -2.0136719, -0.39379883, 0.8198242, 2.4160156, 2.8261719, 2, -2.8945312, -0.097351074, 1.3232422, 0.20166016, 0.6176758, 0.041412354, 0.11413574, -0.88671875, -2.3476562, 0.76171875, 2.5566406, -0.5048828, 0.98339844, -0.8486328, -1.4609375, 1.7109375, -0.5932617, -1.4609375, 0.9526367, -0.3491211, -1.3759766, 1.4580078, 2.5234375, 0.14379883, -0.5566406, 1.4501953, -1.9472656, 0.9326172, -0.07550049, 0.5566406, -1.2783203, -2.2714844, -0.7441406, -0.24060059, -2.859375, -1.1279297, -1.2792969, -0.05230713, 0.6557617, -3.1054688, 1.1982422, -1.2509766, -2.484375, -1.8408203, 0.8930664, -0.74853516, 3.203125, -1.2167969, 1.1132812, 0.0335083, -2.4804688, 0.06124878, -1.2470703, 2.5800781, 1.4912109, -3.5625, -1.1318359, -0.15209961, 1.8251953, 2.3574219, -0.26464844, 1.2050781, -0.8364258, -0.60302734, -2.7265625, 1.9824219, -0.11248779, -1.0673828, 1.1318359, 1.3466797, -1.8623047, 0.90722656, -0.953125, 1.8789062, 4.125, -1.1416016, 1.1748047, -0.9897461, 0.11236572, -0.53759766, 0.02696228, -1.8232422, 0.7084961, -0.19006348, -2.1132812, 1.6308594, -0.3173828, 0.8232422, -1.5273438, 1.0800781, -1.2207031, 4.0625, -0.22167969, -0.23937988, -1.4199219, -0.70458984, -1.4267578, 1.0009766, 0.37890625, -0.6040039, 0.26293945, -0.60253906, -2.7246094, -2.1386719, -1.6865234, 2.1523438, -1.2070312, -0.2709961, -1.2119141, 1.3173828, -1.6240234, 3.6933594, -1.6259766, 4.3046875, 0.07006836, -1.3710938, -2.4453125, 0.004371643, -1.3115234, -2.0625, 0.040527344, 1.2255859, 0.2590332, 1.2001953, 0.4519043, -0.9980469, -0.71240234, 2.7304688, 1.1503906, -0.16516113, 2.1835938, 1.1210938, -2.1054688, 0.5649414, 1.9638672, 4.0703125, -1.5185547, -0.17321777, 1.2314453, 0.73046875, 0.0062408447, 1.0390625, 1.7978516, -1.5146484, 0.09643555, -0.9145508, -0.97753906, -2.453125, -0.01777649, 1.3515625, -1.3496094, 1.0039062, 3.0234375, -0.07318115, 1.0234375, 1.7753906, 1.6640625, -0.1607666, -4.4492188, 1.9111328, 0.18115234, 0.019226074, -0.8808594, -0.92871094, -1.3652344, 0.90234375, -0.34521484, 0.7895508, -1.0068359, -0.47387695, 0.25610352, 2.859375, -1.7470703, -2.0410156, -1.0673828, -0.7011719, -0.21728516, -2.3359375, -0.062469482, -0.2758789, -3, -0.86621094, -0.76171875, -1.4169922, -0.021148682, 2.3261719, -0.7636719, -1.6748047, -0.35546875, 3.6328125, -0.42016602, -1.109375, -1.0625, 1.7431641, -0.24731445, 0.54248047, -0.06689453, -2.0507812, 1.5458984, 0.2199707, 2.0488281, 2.0410156, -1.890625, 0.01335907, 0.25024414, -1.6806641, -0.33666992, 1.0458984, 1.7802734, 2.5273438, -2.4375, 1.0859375, -3.0917969, -1.1103516, 0.10687256, -4.78125, 0.7314453, 0.9589844, -0.34594727, 1.4941406, -0.82958984, 0.7739258, -1.2451172, -0.23120117, 1.1972656, 1.2509766, 1.2021484, -2.0996094, -1.765625, 1.4541016, 0.94970703, -0.38867188, 0.6582031, 1.5253906, -0.6147461, 3.8066406, -1.0634766, 0.5888672, 1.1503906, -0.5415039, -0.39794922, -0.6801758, -0.45874023, -0.109313965, 0.2644043, 1.2109375, -0.8852539, -0.15856934, -0.4255371, -0.37475586, 2.5898438, -1.6650391, 1.8144531, -1.7226562, 1.5449219, -1.8535156, 0.49243164, -3.7617188, 0.62890625, -0.6201172, -1.5556641, 1.4726562, 1.6005859, -0.28295898, -0.29833984, -0.31225586, -0.36254883, -1.9326172, -3.2265625, -0.032684326, 1.1318359, -0.43896484, -1.3359375, 0.43725586, -0.97216797, 0.4350586, 0.06011963, -0.5097656, -1.7900391, -1.4199219, 0.13232422, 3.28125, 0.18054199, 1.9638672, -0.06768799, -1.9453125, -0.58203125, 0.2861328, -1.3388672, -2.5683594, -1.8261719, 0.23632812, 1.3925781, -0.7104492, -1.2294922, -1.6376953, 1.4365234, 0.59716797, 0.049346924, 2.0371094, 2.3476562, -0.80810547, 5.65625, -0.0026130676, -1.9296875, 0.3942871, -2.7050781, 1.8603516, 2.3066406, -1.1826172, 0.64990234, -1.1337891, -1.7158203, -0.42285156, -2.5078125, -0.98046875, 0.24658203, 0.19665527, -0.2446289, 2.1582031, 0.82470703, 1.5576172, -0.52783203, -0.8828125, 0.99560547, -0.09655762, -2.2695312, 1.7861328, 1.3779297, -0.46264648, -1.3125, 1.0126953, 1.1455078, -0.26513672, 4.0195312, 1.8925781, 0.48950195, -0.36865234, -0.24816895, 0.55859375, 1.2675781, 0.23962402, 0.55126953, 0.46850586, 1.5244141, -0.6748047, 1.1601562, -0.4650879, 1.9824219, 2.3242188, 0.4506836, -0.16223145, 2.5625, 1.7675781, -0.8442383, 1.0712891, -0.4609375, -0.10864258, -0.7480469, 2.1777344, -5.8710938, 0.9165039, 0.83203125, -1.1181641, 0.27856445, -3.1640625, -1.3876953, 2.296875, 0.61621094, 0.8232422, 1.6835938, -2.421875, -0.13366699, 0.82128906, -2.9628906, -0.7915039, -0.37597656, 1.4931641, 0.26245117, -2.2089844, 1.0478516, -1.0917969, -0.9863281, -2.9316406, -1.0107422, -1.6376953, 0.8769531, 3.0742188, 2.2050781, 1.46875, -0.40795898, 1.9052734, -2.3886719, 2.40625, -3.2148438, 2.2167969, -2.4316406, 0.3046875, 2.2148438, -3.0078125, 1.1337891, -2.6503906, 2.1816406, -0.32373047, 1.5888672, 1.4169922, -2.5019531, -2.5351562, 2.3691406, -2.3945312, -2.5546875, -0.40478516, -0.1361084, 1.0527344, 0.050994873, 0.6171875, -0.57958984, -0.74121094, -1.6982422, -1.6015625, -0.18835449, 1.1015625, 0.7861328, -1.8417969, -0.21228027, -0.7895508, -0.36645508, -1.6708984, 0.36254883, 0.23791504, -2.2539062, -2.1289062, 0.12402344, 1.1621094, -2.4433594, -1.6679688, 3.0742188, -0.047943115, 1.2568359, 0.6669922, 2.8300781, 0.033325195, 0.7885742, 0.98046875, 1.0390625, -0.10461426, 0.24157715, 3.8398438, -2.2480469, 0.32641602, -1.4423828, -3.5566406, 2.1503906, -0.5776367, -0.58984375, 1.7128906, -2.0273438, 1.5556641, -0.76416016, -2.1113281, -0.016708374, -0.7910156, 0.8388672, 0.27807617, -0.5439453, -3.4257812, -1.3466797, -1.6738281, -1.6240234, -0.15637207, -0.9970703, -0.36889648, 0.4489746, 0.2602539, 0.36157227, -1.1035156, 1.6708984, 1.9785156, 0.90722656, 0.6123047, 1.1230469, 1.9511719, 1.0078125, -1.9550781, -1.9628906, 1.6943359, 0.48950195, -1.84375, 0.58447266, -1.4541016, -3.3496094, -0.82177734, 0.7495117, 0.53564453, 3.2265625, 1.7099609, -0.37329102, -2.3359375, -0.037322998, -3.140625, 2.9453125, 0.64453125, 2.1445312, -1.8603516, 3.9257812, -2.8867188, -0.02796936, 2.5957031, -0.47045898, 1.2470703, -0.796875, -2.6425781, 1.4101562, -0.14318848, 0.16748047, -1.1181641, -0.69628906, -1.9453125, 1.1503906, 0.7133789, -0.93603516, -0.6508789, 3.0195312, -2.4550781, 2.0683594, 2.2753906, -1.1533203, -2.3652344, 0.37426758, 0.640625, -1.5283203, 0.101745605, -0.4008789, 1.5732422, 0.75439453, -1.03125, -1.8789062, 0.11743164, 1.5996094, 0.7001953, 3.21875, 1.8964844, 0.3244629, 3.4492188, 2.4316406, 0.96240234, 1.5126953, 1.2675781, 1.0126953, -0.8251953, 4.59375, -0.61376953, -1.6884766, 0.7192383, 1.5214844, -1.3671875, 1.875, -0.46435547, 0.21447754, -1.9873047, 1.03125, 3.9140625, -1.6162109, 0.012763977, -2.4628906, 0.8095703, 0.48706055, -0.6225586, -1.5009766, 1.9580078, 0.24157715, 1.3925781, 2.8828125, 1.1650391, 0.5600586, 1.2373047, -1.2705078, 1.0429688, -0.27246094, -0.82910156, -1.1699219, 0.78759766, 1.34375, 0.13903809, 0.9584961, 0.8125, 1.1816406, -0.5961914, 1.2304688, 0.94921875, -0.3161621, -1.1650391, -0.9111328, 1.4384766, -0.5576172, 0.0982666, -1.4482422, -0.39233398, 0.40234375, 3.6464844, 1.1386719, 2.3984375, 1.6738281, -3.5234375, 3.0625, 0.1706543, -0.008598328, -0.6269531, 1.0634766, -1.8144531, -0.24304199, -2.1230469, 2.6289062, 1.5029297, 0.050231934, 1.8134766, -0.9189453, -0.75341797, 2.1132812, 1.4140625, 0.32226562, 1.6611328, -2.9238281, 0.98828125, -1.0380859, 3.0742188, -0.71875, 2.3125, 1.9628906, 0.33251953, 0.8857422, 1.6220703, 1.8320312, -0.07067871, 0.22668457, -1.6855469, -1.2128906, -1.7431641, -1.46875, -2.6875, 0.027526855, 0.013267517, 0.21911621, -0.4802246, -0.025970459, 1.3271484, 1.8408203, 1.1386719, 1.8027344, -1.6044922, 0.6381836, 0.6923828, 1.4169922, -1.2402344, -0.9238281, -0.34423828, 0.7832031, -0.7817383, 3.0566406, 0.39868164, -0.12646484, -1.0830078, -0.25512695, 0.5205078, 0.8520508, -0.026901245, -1.1464844, -1.9169922, -2.3242188, -0.7866211, 1.3623047, 2.0117188, 3.5566406, 1.2626953, -1.4794922, -1.3662109, -1.5146484, 0.45825195, 0.26342773, -1.5087891, -0.140625, 2.4707031, 1.9228516, -0.16516113, -1.8115234, -3.4628906, 1.2734375, 0.79296875, 0.8564453, 1.9111328, -1.7285156, -1.5546875, -1.1113281, 0.46972656, 0.8461914, -2.3515625, 0.07354736, -0.39111328, 1.6035156, 0.14147949, 1.1513672, 0.46411133, 0.5385742, 0.9892578, 2.6816406, 1.3769531, 0.859375, 0.8989258, 1.8876953, 1.9306641, -1.3710938, 0.9511719, 0.2602539, 0.057159424, -1.3623047, -1.4599609, -0.9301758, -1.5976562, 1.9150391, -0.02571106, -2.6601562]}, "B086Z49LJ5": {"id": "B086Z49LJ5", "original": "Brand: DuroMax\nName: DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "embedding": [-0.3779297, -0.08557129, 0.91015625, 0.7910156, -1.65625, 0.21838379, 2.6425781, 0.44848633, -1.6933594, 1.5126953, 0.01802063, 0.89941406, 0.39868164, -0.72802734, -0.1385498, -0.35864258, -0.06060791, 1.8974609, 0.28686523, -0.84716797, 2.0371094, 0.39770508, 0.66064453, 1.7617188, 0.56640625, -0.6948242, 2.9101562, -2.5136719, -1.2392578, 0.76904297, 1.3037109, -0.024536133, -0.6616211, 0.79345703, -1.6337891, 1.5751953, 0.09875488, 1.2128906, -3.0429688, 0.00054073334, -1.2880859, 0.58251953, 2.1523438, -0.7167969, -2.1835938, -3.1113281, 0.7011719, -0.08526611, -0.025939941, 1.1181641, 2.0234375, 2.5703125, 0.57714844, -0.7783203, 0.87109375, 2.8574219, 1.1552734, -1.8613281, 3.0136719, 3.1425781, -0.8276367, 0.45507812, -1.7441406, 0.48266602, -1.9169922, -0.37182617, 0.46240234, 0.18884277, -1.3847656, -2.8867188, 2.4589844, 1.5996094, -0.29516602, -0.88427734, -0.5966797, 0.87060547, -3.3808594, 2.0390625, 2.4726562, 1.0400391, -0.7246094, 0.5083008, 1.7841797, -1.2939453, 0.17651367, -0.29223633, -0.15344238, 0.0925293, -0.5595703, 2.25, -4.0976562, 2.1113281, -3.0800781, -3.9394531, 2.3515625, -0.23022461, -0.85009766, 0.8691406, 1.5439453, 2.4628906, 0.2697754, 1.2216797, -0.7705078, 0.97558594, -0.39770508, 0.60546875, 1.0644531, 0.77734375, -1.7558594, 0.5571289, -2.0351562, 2.1699219, 0.66845703, -0.71972656, -0.98046875, -1.3105469, 1.8740234, -1.0078125, 4.9257812, 0.41088867, 2.8828125, -1.9238281, 1.6875, -0.51220703, 2.9863281, 0.67333984, 1.3925781, 2.9726562, 2.9394531, -0.099243164, 0.70458984, 0.04925537, 1.4267578, -0.68115234, -0.18676758, -1.3300781, 0.5991211, -2.2363281, -2.4335938, -1.0585938, -2.7128906, -0.5834961, 1.3193359, -0.9970703, -3.4824219, -1.2978516, -0.93652344, -0.9838867, 0.83740234, -2.0488281, 1.8544922, -3.4648438, -0.24743652, -2.9511719, 1.1152344, 0.08673096, 0.34350586, -0.9472656, 2.1152344, 0.76464844, -0.012619019, 0.13952637, -1.4570312, -0.25268555, 0.5761719, -3.7636719, 0.9526367, 1.0224609, -0.7573242, -1.5537109, -2.515625, -2.1738281, 0.037475586, -1.7304688, 1.1953125, -3.4804688, -0.7709961, 0.19140625, 1.4072266, -0.99072266, -0.87060547, 1.7724609, -1.1757812, -0.072387695, 0.39941406, 0.103637695, 2.5664062, -0.39892578, -0.17041016, -2.2246094, -1.3808594, 0.71484375, -1.4980469, 0.97509766, 1.8916016, -2.8046875, -1.7714844, -1.7207031, 4.28125, -0.43310547, 0.09967041, -1.5732422, -0.7285156, -2.0292969, -1.1738281, -3.1992188, 0.5239258, -1.6484375, 0.32226562, -1.2919922, 0.6791992, 0.17749023, 2.8515625, -1.8164062, -2.0761719, -2.6914062, -1.9667969, 0.20800781, -1.5976562, 0.61816406, -0.35986328, -0.3022461, 2.4179688, -1.7148438, -0.8251953, 1.8330078, 0.33032227, 0.08282471, -3.1542969, -3.6796875, 0.70947266, 1.0615234, -0.6074219, -1.5625, -0.58935547, 0.87353516, -0.9926758, 1.2597656, 0.5761719, 0.3256836, 1.4980469, 1.3271484, -0.095581055, 1.4990234, 1.6279297, -1.2470703, -0.50878906, 2.4863281, 0.17297363, 0.35668945, -0.51220703, -0.09399414, 0.47998047, -1.4970703, -0.33251953, 0.38598633, 0.28173828, -0.47143555, 0.34814453, -2.7851562, 0.46704102, -0.0010356903, -0.89160156, 0.09094238, -1.8876953, -0.55078125, 2.0449219, -0.7011719, -1.6113281, 0.5097656, 2.3769531, 2.6328125, -0.20727539, 2.3886719, 1.0810547, 1.3867188, 0.3161621, 3.0859375, 2.4140625, 2.9746094, 0.41870117, -1.0205078, -0.7348633, -2.7636719, -0.061431885, -0.63427734, 0.0871582, 1.2148438, -1.3212891, -0.23571777, 1.3632812, -2.0859375, -5.40625, 1.2587891, -0.55908203, 4.65625, 2.3730469, 0.22668457, 1.0478516, -0.1821289, 0.18017578, 0.4494629, -1.4707031, 3.1660156, 0.31103516, -0.03591919, -0.44384766, -2.6035156, 0.6611328, 0.55859375, 1.0244141, -1.0742188, 0.8232422, 0.60595703, -1.8134766, -0.55078125, 2.6757812, -1.9091797, 1.6445312, 1.3115234, -0.17016602, 0.44384766, -0.054351807, -1.4033203, 0.15014648, -1.3447266, 1.4335938, -1.2783203, 0.14770508, -1.5029297, -1.5908203, -0.85595703, 0.72753906, -0.41357422, -0.27319336, -0.11138916, -1.8652344, -1.8642578, 1.3837891, -0.46948242, 0.7036133, -0.6621094, 0.33374023, -1.5, 0.20458984, -1.6132812, -0.60302734, -0.7133789, -1.7490234, -1.6894531, 2.1953125, 2.3769531, 0.8432617, -0.75439453, -1.7851562, -0.031051636, -0.47558594, 3.5390625, -1.7431641, 1.7490234, -0.94921875, 0.7026367, 1.1416016, 0.18371582, 0.6933594, -3.5644531, 0.2355957, -3.2773438, 2.875, 0.6738281, 0.27856445, -0.7519531, 0.27368164, -0.3623047, -1.6113281, 2.0703125, -0.51171875, 0.9980469, -1.6503906, 1.0136719, 1.5068359, -3.3925781, 1.9267578, 0.32983398, -2.1191406, 0.7260742, 1.2021484, -1.4140625, -0.70214844, -2.7910156, 1.6464844, 1.8730469, -1.7724609, 1.1533203, -0.0051727295, -0.67626953, 0.65478516, -1.6582031, 1.7529297, 2.9023438, 0.65185547, -1.3759766, -1.1552734, -0.11236572, -1.2285156, -0.5576172, -1.7558594, -2.4296875, -0.21643066, 2.4042969, 0.4975586, 2.0351562, -1.2148438, -1.1103516, 1.2304688, -3.0546875, 1.3115234, 1.1474609, -0.453125, 1.3027344, -1.0917969, -0.022979736, -2.3085938, -0.57714844, 4.6132812, -0.9238281, 3.4628906, 0.50634766, 0.18664551, -0.39868164, 2.4101562, -0.1239624, -1.3378906, -2.0390625, 3.4628906, -1.1308594, -0.13317871, -0.5605469, 0.34594727, -1.3085938, -1.0195312, 3.0390625, 0.8989258, 3.6894531, 0.79052734, -1.7353516, 1.90625, 0.5126953, 0.98876953, 0.93115234, -1.3027344, 0.23950195, -1.5693359, -1.4199219, -0.43017578, 1.2900391, 1.1386719, 0.32250977, 1.4892578, 1.5703125, -0.4584961, 0.7963867, 0.053131104, 0.92041016, -0.7919922, 3.7285156, 3.4707031, -1.2753906, 2.9003906, -1.7480469, -0.1850586, 1.6572266, -0.7832031, 0.7270508, 3.6757812, 0.3623047, 0.92822266, 0.29882812, -0.54589844, -0.24182129, -1.5205078, -0.8510742, -0.7973633, -0.22155762, 1.2363281, -1.8828125, -0.2487793, -2.1386719, -0.09698486, -1.5029297, 1.2734375, -0.21191406, -0.103515625, -0.061279297, -0.95751953, -1.3417969, -0.25708008, -0.6557617, 1.4707031, 2.5878906, 0.0042266846, 1.0683594, -1.5351562, 1.7910156, 0.68066406, -0.26611328, -0.72314453, -0.8959961, -2.0664062, -0.6611328, -0.39794922, 0.34228516, 0.57958984, -1.3994141, 1.5458984, 0.9770508, -0.009109497, -0.29736328, 0.5917969, 0.84716797, 1.4726562, -1.8310547, 1.3232422, 0.5678711, 1.1806641, 0.101379395, 1.8554688, 3.4433594, -1.5566406, -0.96240234, -1.2373047, -1.6582031, 1.4365234, -1.3662109, 0.12792969, 4.4882812, 0.45874023, 0.9091797, -0.20654297, 0.25268555, -3.5566406, -1.7509766, -0.6621094, 1.5820312, -2.9140625, -2.3925781, 0.13439941, 0.30200195, -0.56152344, 1.4511719, -2.609375, 0.30126953, -0.17822266, 1.0527344, 0.59521484, 2.8300781, -1.2285156, -0.53222656, -0.7705078, 0.6826172, 2.5644531, -0.12524414, -0.1505127, -2.2519531, 1.0263672, -0.65234375, -1.1855469, 1.3544922, 3.4941406, -0.5917969, -0.35986328, 1.3359375, 0.7573242, 0.9580078, 0.49682617, -2.3359375, -0.81152344, -0.17687988, 2.1855469, -2.4785156, -1.0029297, 1.2070312, -2.2226562, -0.90185547, -0.7050781, 0.47973633, 1.46875, 3.6445312, -0.03933716, 1.8544922, 2.1386719, -3.5605469, 0.04840088, -0.6147461, 0.37670898, -1.0654297, -1.4853516, -1.1230469, -1.1005859, 0.58154297, -0.83984375, -1.3007812, 1.5087891, 0.44384766, 0.70947266, 0.35351562, 0.5732422, -0.5576172, -0.0026130676, 3.046875, -0.32128906, -0.22973633, 0.6904297, 0.69189453, -0.9301758, 1.9306641, -0.87402344, -0.32788086, 1.2626953, -1.2226562, -2.1914062, -0.81347656, -0.96533203, -1.7626953, -0.84716797, 0.24645996, 0.24487305, 1.8037109, -1.0800781, 0.6020508, 1.3691406, 0.31396484, -2.5058594, 1.0527344, 1.1855469, 0.5317383, 1.1757812, -0.9628906, 3.9960938, 0.61572266, 0.25097656, 1.3916016, 1.9560547, -1.7890625, -0.21716309, 1.1650391, -0.44799805, -1.1230469, 1.6845703, 0.85791016, 0.5053711, 0.6303711, -0.7919922, 1.2177734, -0.21203613, 3.4160156, 0.57470703, -0.65185547, -0.7558594, 1.0341797, -0.5292969, -0.3864746, -0.009086609, 0.14758301, -0.43188477, 1.3310547, -0.18273926, 0.5410156, 0.33154297, 0.07543945, -2.5273438, -2.203125, -0.9824219, -0.010856628, -0.86865234, -0.24743652, -1.3867188, 0.09729004, 0.5732422, 0.6425781, 0.61572266, -1.5742188, 0.31884766, 0.9848633, 0.36083984, 0.10913086, -0.36279297, 1.0439453, -4.890625, -0.4338379, 1.2626953, -0.79345703, 1.6259766, 2.8085938, -1.7294922, -1.5107422, -2.984375, -0.19189453, 1.7421875, -1.1972656, -1.2851562, 1.1357422, -0.9892578, 1.4375, 0.79052734, -2.0722656, -2.328125, 1.4150391, 0.29711914, -0.44555664, -0.72314453, -0.37670898, -2.2910156, -4.4414062, -2.0507812, 0.8227539, -0.50927734, -0.23144531, 0.88427734, -3.109375, 0.90625, 0.7832031, 1.9433594, -1.8056641, 1.4755859, -1.3369141, 1.125, -0.7705078, -0.29467773, -1.2734375, 0.2939453, 1.7587891, -1.9863281, 1.8886719, -3.3066406, -2.9003906, -2.1054688, 2.0371094, -0.9951172, 0.9326172, -0.81640625, 1.4785156, 2.7636719, -0.29248047, -0.25952148, 0.7919922, -1.7402344, -0.38745117, -0.65722656, -2.1386719, -0.9428711, 1.7158203, 0.14135742, 1.4658203, 2.8300781, 2.5957031, 0.059051514, -0.18603516, -2.3007812, 1.3681641, 0.33496094, 0.17687988, -0.45092773, 1.8837891, 2.3808594, -2.4785156, 0.12854004, -1.7070312, 0.24645996, -1.2539062, 0.084350586, -0.9272461, -0.48168945, 0.36108398, 0.7446289, -0.27319336, 1.2792969, 0.06567383, 0.14526367, -0.95654297, -0.24291992, 0.13720703, -1.5332031, 2.5996094, 1.7490234, -0.6875, -3.890625, 0.33862305, 1.3623047, -0.09387207, 2.1699219, -0.27148438, -0.38256836, -2.375, -1.6708984, -1.0966797, 1.7939453, -0.30932617, 0.6611328, -0.3251953, 0.5307617, 1.1162109, 0.7661133, -0.5317383, 1.5839844, -1.1171875, -1.0634766, 0.87597656, 2.2792969, -2.4550781, 1.0361328, -1.0957031, 0.022079468, 0.55126953, -3.0039062, 0.94677734, -1.6318359, -1.4433594, 0.07305908, 0.5644531, -0.65771484, 0.4489746, -1.09375, -0.6958008, 0.2939453, 2.1191406, -1.4189453, -1.8037109, 3.1445312, -1.1396484, -1.8505859, 1.3642578, -1.9833984, -0.049743652, 2.0078125, -2.6191406, 2.5683594, -0.60595703, 0.9394531, -1.4755859, -0.2133789, -2.2207031, 0.96875, 1.2197266, 1.2998047, 1.34375, 1.6689453, -0.44702148, 0.36572266, 0.53759766, -0.3935547, -0.025619507, 1.1650391, 1.1083984, -0.47192383, 1.8574219, -2.0644531, -0.49291992, -0.49414062, -1.2001953, -2.3769531, 0.421875, 2.8046875, -3.8867188, 1.59375, 0.77734375, 1.6074219, -2.9179688, -0.11566162, 0.02583313, 0.93847656, -0.50097656, 0.90771484, 2.015625, 0.105041504, -0.7519531, 1.7177734, -3.0957031, -0.9375, -1.1601562, -0.21179199, 0.015472412, -0.12634277, 2.0917969, -0.7675781, -1.9570312, 1.6757812, 1.6152344, 2.0136719, 0.38452148, -0.04953003, 1.1191406, -2.1191406, 2.2011719, -0.045532227, 4.8046875, 2.171875, 0.73876953, 2.2441406, -0.4892578, -0.52246094, -1.6972656, 0.5024414, 0.4099121, -0.5371094, -0.35668945, -3.1191406, 0.4267578, -1.3476562, 2.0175781, -2.3261719, 1.3203125, -0.45629883, -0.47436523, 0.77978516, 1.7958984, 0.8208008, 2.6113281, 0.6582031, -0.39746094, 2.6464844, 1.7832031, 0.39282227, -0.14831543, 1.3056641, 1.0107422, 1.2685547, 0.13684082, 1.1503906, 0.3552246, -1.0859375, -1.2060547, 0.20080566, 2.4355469, -0.08605957, 0.34033203, -1.1074219, 2.4941406, -0.2277832, -2.5585938, -1.8583984, -0.29223633, 0.22705078, 0.35986328, -2.1113281, 0.96191406, 1.9482422, 1.4707031, 3.8417969, -1.53125, -1.5615234, 0.9223633, 0.13745117, 0.63720703, 0.32958984, -0.37939453, -1.8730469, -1.2675781, 0.05041504, -2.3886719, 0.9536133, 0.9736328, 0.5371094, -0.8276367, -2.5390625, -2.5019531, 0.41625977, -0.8989258, 0.97021484, 0.77783203, -1.5537109, 2.5605469, 1.8535156, -1.7851562, 2.3574219, 3.1660156, -0.8823242, 2.1699219, -1.0917969, -1.9580078, -0.7910156, -3.0703125, -0.6455078, 1.5751953, 0.5932617, -0.13574219, 0.99902344, -3.4609375, -1.2392578, -1.8261719, -1.0664062, 1.2685547, -1.1103516, 0.24890137, 1.7646484, 0.37402344, 1.1152344, -0.7446289, -0.41503906, -0.07312012, -0.9057617, 1.1835938, 0.74609375, -1.1132812, 2.2460938, 1.7705078, -0.07470703, -0.14819336, 1.4619141, -0.22387695, 0.6669922, -0.34960938, -2.7460938, -1.7333984, -0.5966797, 0.95996094, -1.9589844, 1.7949219, 1.7773438, 0.36010742, 0.8823242, -0.6123047, -2.1445312, -3.1523438]}, "B01MSYK6BU": {"id": "B01MSYK6BU", "original": "Brand: only fire\nName: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch\nDescription: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.\nFeatures: Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel.\nPerfect replacement part for charcoal or gas grill.\nUsed for picnic, camping, outdoor cooking, turn your fire pit into a grill.\nHinged center to fold in half makes it easy to add Charcoals, logs and clean embers.\nDouble-check the dimensions of your grills or fire pit before ordering.!\n", "embedding": [-0.7758789, 0.44091797, 1.0244141, -0.56103516, -0.46704102, 0.4897461, 2.2558594, -0.076538086, 0.3540039, 2.0234375, -1.6044922, -2.2949219, -0.16174316, -3.734375, 0.12548828, -0.21582031, -0.49389648, 0.1340332, 1.1757812, 0.2775879, 1.0351562, 0.52197266, -0.31958008, 0.13781738, 1.2001953, -0.21520996, 2.8398438, -1.9355469, 1.5380859, -0.41137695, 1.7929688, 2.7148438, 1.7919922, 1.6181641, -3.1777344, 0.31323242, -2.328125, 2.2617188, -0.84716797, -1.2919922, 0.46972656, -2.6152344, 3.1621094, 1.5410156, -2.5683594, 0.72314453, 2.1191406, 1.4755859, -1.4023438, -2.7265625, 2.5878906, 2.5214844, 0.27856445, 2.8984375, -1.3974609, 1.7089844, -3.5390625, -2.6191406, 1.265625, -2.0019531, 2.8613281, 0.4802246, -0.62646484, 0.4423828, -0.5727539, -0.31762695, -0.63427734, -0.43237305, -1.5, -0.6791992, 0.68847656, -1.5595703, -0.7529297, -0.5288086, 2.8398438, -0.90722656, -0.7529297, 0.30029297, -0.7661133, -0.14819336, -1.8056641, 3.2832031, -0.0826416, -1.2246094, 1.0585938, -1.6542969, -2.1933594, -2.0917969, 0.5449219, 0.8886719, 0.17175293, 2.1113281, -1.6289062, -1.5488281, 1.4902344, -1.6572266, 2.1660156, -0.67041016, -1.1708984, 0.61035156, -1.2636719, 2.3945312, -1.8779297, -0.5888672, -3.4511719, -0.35180664, 1.3740234, -0.5078125, 0.45654297, 1.0351562, -1.3837891, 2.484375, -0.16931152, 0.29101562, 0.7338867, 0.4572754, 0.049865723, 1.3535156, 3.4980469, -0.81152344, 4.2773438, 1.1367188, 0.44458008, -2.5507812, 0.93408203, 0.5576172, -0.34106445, 1.703125, 2.3574219, -1.5107422, -0.9291992, -3.375, 1.0722656, 0.65478516, -3.1679688, -0.53808594, -3.0761719, 2.0390625, -2.9160156, 2.4355469, -1.0644531, 2.6035156, 2.3457031, -0.16931152, -5.0234375, 1.1923828, -1.4140625, 3.7070312, -0.12817383, -2.5878906, 1.3994141, -0.36010742, 0.46362305, -1.9755859, 2.5292969, -1.0771484, 0.28979492, 0.19628906, 3.125, -0.9448242, 1.9375, -3.1503906, -0.44726562, 1.9775391, 0.3076172, -1.40625, -1.3945312, 1.9628906, 1.0820312, 0.7573242, 1.2958984, -1.2705078, 1.0195312, 0.73583984, 0.8305664, 0.21032715, -0.61035156, 2.46875, -0.7709961, -0.1427002, -1.0029297, -1.75, 2.6992188, 2.0449219, 0.11608887, -0.22827148, 0.96240234, -0.18981934, 1.8505859, -0.13842773, -1.3359375, -0.14050293, -0.64160156, 0.25878906, 0.024932861, -1.7021484, -0.5053711, -2.6796875, -0.42407227, 1.0791016, -1.5947266, -0.025222778, -1.7958984, 0.74560547, -1.8447266, -0.095703125, -0.96728516, 0.96240234, 2.2011719, 0.73046875, 1.140625, -1.9287109, 0.6503906, -0.4814453, -0.2133789, -2.4667969, 0.35058594, 0.4987793, 2.1679688, 2.1621094, -0.24389648, -0.60791016, 0.15979004, 3.5839844, -1.2636719, 0.9536133, -0.69140625, -0.3984375, -0.41748047, -1.9970703, 3.0078125, -0.63378906, -0.62402344, 1.2880859, -2.0625, 3.2734375, 2.6601562, -2.0058594, 1.0644531, -0.2927246, 0.85595703, -1.3398438, 1.0302734, -0.98291016, -0.049865723, -1.4589844, -1.2275391, 2.1679688, 0.9746094, -2.1542969, -1.1337891, 1.5771484, 1.1425781, 2.2207031, -0.5864258, 0.3125, -0.95703125, -1.7919922, -2.2675781, -0.9033203, 0.55126953, 1.4863281, 0.2578125, 0.31518555, 2.0390625, -1.2871094, 2.2480469, -1.8496094, -3.3320312, -1.5976562, 0.14709473, 0.14453125, 1.3037109, 0.14025879, 0.080200195, 0.04534912, 0.34399414, -0.004814148, 1.5986328, 0.04748535, 0.12854004, 0.5605469, 3.9453125, 1.1943359, -2.90625, -1.4345703, 0.10229492, -0.3762207, 0.79296875, 0.2861328, 4.015625, 1.8955078, -0.71435547, 3.1796875, -2.6230469, 0.9794922, 1.2246094, -1.6611328, 0.68896484, -0.123291016, 0.60839844, 2.1386719, 2.015625, 2.7949219, -1.8554688, 0.5761719, 1.2636719, -3.9921875, -0.70751953, 4.0234375, -0.14196777, -0.95751953, -2.0761719, 0.27490234, -2.4882812, -0.90625, 1.9384766, -1.234375, 3.9980469, 2.0058594, 1.5800781, -0.39135742, -0.0003247261, -3.0175781, -2.0253906, 1.5527344, -0.86816406, 1.0273438, 0.7895508, -1.5976562, -2.0917969, -1.3203125, -0.045898438, -1.7910156, -2.7714844, -1.9228516, -1.0400391, -0.0075798035, 0.6015625, -0.03805542, -0.11090088, 1.7275391, -3.8691406, 0.055847168, -1.1308594, -1.9462891, -0.4255371, -1.5283203, -0.8535156, 1.75, -1.6621094, 1.3388672, -0.43115234, -4.578125, 0.60253906, 0.90722656, 1.6425781, 0.54541016, -0.84716797, -0.013641357, -0.13464355, 2.1445312, 0.98828125, 2.0722656, 0.6020508, -1.9580078, -0.75927734, -2.6347656, 0.81396484, 0.8725586, -0.24389648, -1.8642578, 1.1591797, -0.8588867, -3.0097656, -0.6010742, -1.7294922, 3.2851562, -0.93408203, 3.4375, -0.38012695, 0.5336914, 0.27807617, 1.3769531, -1.5947266, -0.9536133, 1.7626953, -1.0966797, -3.1699219, -2.8046875, -1.3789062, -0.24255371, -1.4003906, -0.40820312, 1.546875, -1.2695312, 0.8461914, -1.2333984, -0.8310547, 1.140625, -0.6489258, 0.52246094, 2.2714844, -0.9477539, -0.93652344, 0.45898438, 0.28710938, 0.8305664, 2.0898438, -3.1757812, -1.40625, 0.17382812, 0.17858887, 0.008369446, -0.86621094, -1.9609375, 0.30517578, -0.35888672, -1.6445312, 2.7421875, -2.3925781, -1.5419922, -4.0742188, -1.2314453, 3.9707031, 0.5756836, -0.24780273, 0.15258789, -1.3574219, 2.2773438, 0.7734375, -1.1777344, -0.8378906, 1.5605469, 2.1796875, -3.5644531, -2.359375, 0.3334961, 3.7636719, -2.4453125, 2.953125, -0.29052734, -0.5698242, 0.7871094, 1.6337891, 0.09954834, 0.6503906, -3.0117188, 1.6455078, 1.9824219, 1.3095703, -1.2685547, -1.4873047, 0.6669922, 1.28125, 0.49365234, 1.8476562, 0.2763672, 2.71875, 1.5742188, -0.5366211, -0.22546387, 0.055480957, 0.47973633, 1.7587891, -0.22619629, 2.5820312, -1.5244141, -1.6923828, 0.62890625, 0.5541992, 1.6523438, -2.1015625, -0.19067383, 0.75146484, 0.08795166, -0.36914062, -0.4597168, 0.41430664, -2.3652344, -2.1464844, 1.1904297, -1.6035156, -1.5927734, 0.82714844, 0.60058594, -1.3632812, -0.23950195, 2.6445312, -2.0546875, -1.8251953, -1.6328125, 2.625, 1.4492188, -0.27490234, -3.7675781, -1.1337891, -0.1986084, 2.1992188, 0.84521484, -1.0488281, 2.2539062, -2.7148438, 2.3046875, 0.19873047, -0.8564453, 0.6816406, 0.0012655258, -2.2773438, 0.5727539, 0.2668457, 0.51953125, -0.11212158, -2.234375, -0.45239258, -1.9628906, -0.85839844, 0.95703125, -2.6679688, -1.2392578, 1.34375, 0.86328125, -1.3769531, -2.4453125, 2.7050781, -0.66503906, -1.8115234, 0.82373047, -2.4101562, -1.4423828, -2.3085938, -3.2929688, 0.20581055, -1.4013672, 0.63427734, 2.3789062, 0.30322266, -0.89697266, 1.6376953, -0.8354492, -0.9951172, -0.7480469, -1.3398438, 0.6220703, -0.8256836, 0.051940918, 1.2089844, 1.1972656, -0.5727539, -0.69189453, -1.1025391, 0.70703125, 1.2431641, 1.0400391, -2.3261719, 0.5107422, -1.1611328, 0.71972656, 1.1328125, -1.0527344, 0.20153809, -0.7758789, 0.107421875, -0.6870117, 1.5488281, -1.8964844, 1.8388672, 1.4345703, 1.4560547, 0.05340576, 0.16052246, 0.22644043, 0.17980957, 2.1738281, -0.6855469, -2.3632812, -1.1757812, -0.61621094, -0.53808594, 0.53271484, -0.5263672, -0.07720947, -3.5683594, 0.97314453, -2.9921875, 1.0439453, 1.5097656, 1.4707031, -1.2373047, -2.1269531, -1.4472656, -1.9716797, -2.2285156, -0.2109375, 0.59472656, -0.77441406, 0.9736328, -1.6923828, 2.984375, -3.140625, -2.9882812, -1.9335938, 1.4960938, 2.2792969, 0.7910156, 5.9453125, -0.75634766, -0.43530273, 1.9355469, -3.6347656, -3.078125, -0.16589355, -2.1796875, 0.060333252, 1.2412109, -0.4790039, -0.18859863, -1.4755859, 0.04928589, -0.49658203, -0.8027344, -2.7890625, 2.1367188, -3.1113281, -0.70703125, -0.0042304993, 0.19995117, -0.43041992, 0.98095703, -0.6845703, -1.4638672, 2.6230469, -0.25512695, 0.6582031, -0.07861328, -0.47973633, 2.4648438, 0.9277344, 0.44677734, 0.8071289, 1.2148438, 0.00415802, 1.8974609, -2.5742188, -0.0027942657, 0.37963867, 2.2949219, -1.4150391, -2.2246094, 1.3339844, 3.4746094, -2.2285156, 0.7260742, -0.7709961, -2.2285156, 2.6640625, 2.1328125, -4.0039062, -0.2133789, -0.6459961, -2.3964844, 0.12084961, -0.5776367, -2.4121094, -0.16638184, 1.4970703, -0.546875, 0.15466309, -2.1425781, -1.0849609, 0.6230469, -1.7304688, 0.024002075, -2.2539062, -3.3398438, 0.8496094, -1.8720703, -0.099365234, -1.2041016, 1.7109375, 2.375, 1.1474609, -1.1943359, 1.03125, -0.9536133, 1.1757812, 0.23803711, -0.20349121, -1.2236328, -0.18151855, 1.6240234, 0.83251953, 3, -0.7338867, 2.3300781, 0.953125, 1.203125, -0.6386719, 4.109375, -1.0097656, 0.8178711, 3.2089844, -1.4960938, -2.4824219, -1.7939453, 2.3652344, 0.47094727, 2.0136719, 1.4960938, 1.515625, -0.4650879, 0.2878418, -1.4492188, -2.7675781, -1.9404297, -0.328125, -0.36938477, 0.19396973, -0.96240234, -0.041412354, -1.140625, 1.4433594, -0.8701172, 1.5664062, 1.0068359, 0.78759766, -0.18676758, -3.2207031, 1.6933594, 1.0322266, 2.4296875, 0.6347656, 3.1328125, -0.59472656, -2.4277344, 2.0625, 2.7421875, -2.9882812, 1.1777344, 2.078125, 0.56884766, -0.06542969, 1.9541016, -1.53125, -0.6694336, 1.2607422, 0.9580078, 1.3964844, 3.1289062, 0.16235352, 1.0654297, -0.5463867, -1.9853516, 1.65625, -4.9648438, -1.4970703, -0.15197754, -0.7475586, 0.8442383, 0.8720703, -0.8183594, -1.1074219, 0.6064453, 0.98583984, 0.014701843, 1.4003906, -1.0224609, 0.6958008, -4.3554688, -3.3125, -0.8779297, -2.4335938, 0.024749756, -1.2607422, 1.1054688, 2.1523438, -0.3215332, 1.9072266, -0.24987793, 1.6162109, -0.49804688, 1.1367188, 0.59716797, 2.3164062, -0.11090088, -0.52783203, -0.80371094, -0.32202148, -0.87939453, 1.5800781, -1.6689453, -0.94091797, 0.28808594, -1.7119141, -0.8198242, 0.9536133, 1.2753906, 1.9765625, -0.8510742, -1.5507812, -0.49487305, 1.5820312, -0.6611328, 1.9228516, -0.82128906, 0.9267578, -0.56103516, 2.0292969, -1.9228516, -1.5605469, 2.7890625, -2.1855469, -0.8027344, -0.77197266, -0.41992188, -2.0078125, -1.7011719, -1.2021484, -1.9892578, -1.1894531, -1.4560547, 1.5908203, -0.5395508, 0.85546875, -0.94970703, 2.5410156, -0.57128906, 2.1757812, 3.1484375, 0.875, 0.17578125, 0.13024902, -0.54052734, 1.5107422, 2.0449219, 0.32226562, -1.4667969, -0.953125, -1.4287109, -1.1757812, 2.7578125, 1.2685547, 1.5029297, 0.82714844, 2.171875, 1.8007812, 1.3955078, 4.796875, 0.034820557, 1.0488281, 1.4658203, -0.9863281, -2.03125, 2.2578125, 0.58203125, -0.37939453, 0.5986328, -0.1616211, -1.9101562, 0.18225098, -1.4921875, 0.0022945404, 2.3691406, -2.6425781, 2.375, 1.4824219, 0.12231445, -1.5839844, 0.082214355, -2.3105469, -0.8491211, -0.8178711, 0.016143799, 3.375, -0.9238281, -1.1386719, -1.1542969, 0.15722656, -0.66064453, -4.6953125, 0.8623047, 0.51464844, 0.07196045, -1.1757812, 2.5214844, 1.0273438, -0.8105469, 0.9013672, 2.0410156, 3.0078125, 0.55078125, 1.0654297, 0.96972656, 0.016830444, 0.9301758, 3.0019531, -1.5712891, -2.6230469, -0.07299805, -0.00491333, -2.3886719, -1.6494141, 2.6074219, 0.7832031, 1.8857422, 2.3535156, -3.546875, 2.265625, 1.0878906, 1.0742188, -1.7529297, 1.9384766, 0.60839844, -3.3242188, -1.8007812, -0.1628418, 0.90283203, -0.13305664, 0.24780273, -0.5019531, 0.9458008, 0.6269531, 1.2138672, 1.6464844, 0.9301758, -1.5625, 2.2929688, 0.3527832, 3.1894531, -0.63427734, 0.8413086, 0.4465332, 1.4257812, 0.38549805, 0.19934082, 3.015625, -1.5507812, -0.49902344, -1.1220703, -1.3193359, -2.0058594, -2.0898438, -2.9726562, -0.6020508, 2.4980469, -0.60302734, 0.89404297, 0.86083984, 0.44702148, 2.2636719, 1.1777344, -0.46313477, -2.15625, 3.1289062, 0.99365234, -0.22302246, -0.016738892, -0.03970337, 2.5683594, 1.3535156, -2.0507812, 0.34179688, 2.9335938, 0.07543945, -1.4863281, 1.2099609, -0.48779297, 0.0048942566, 0.6176758, 0.46118164, -0.5800781, -0.8510742, 0.96240234, 1.1230469, -0.94189453, 3.4042969, -1.1738281, -2.125, 0.29614258, -3.1582031, -0.81884766, -1.4746094, -2.0117188, -0.15698242, 4.1953125, 2.6972656, 0.5551758, -1.4296875, -3.2050781, 0.79296875, 0.34936523, 1.6699219, -0.17468262, -2.8808594, -0.31518555, 1.5039062, 1.3193359, -0.31982422, 0.017868042, 0.3894043, 1.1787109, -0.31933594, -0.8232422, 1.4775391, 1.0810547, -0.11767578, -1.6357422, 2.7734375, 1.6025391, 0.28735352, 2.4277344, 1.46875, 1.4589844, -4.15625, 1.3876953, -0.20935059, 1.4892578, 0.83496094, -0.1697998, 0.23486328, -0.5126953, -0.8256836, -2.8320312, -1.2021484]}, "B0787R3KFX": {"id": "B0787R3KFX", "original": "Brand: grilljoy\nName: grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men\nDescription:
Upgrade your grilling today
This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

Handsome set makes a perfect gift.
An inspired gift idea for your dad, groomsmen or anyone you like.It's an ideal gift for special occasions like gathering, Wedding, birthday, valentine's day, holiday, Christmas.
Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

Enjoy your amazing BBQ time
Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

All the features you need - None that you don't\u00a0
1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
5.Elongated handles keep your hands safe from the heat.
6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
8.dishwasher safe or cleaned quickly with warm water and soap.

If you have interest,Just click \"add to cart\" to get this grill kit and enjoy your amazing BBQ time!\nFeatures: Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling.\nPremium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe.\nUser-friendly Design --- We design grilling tools from the user's perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns.\nConvenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\nSatisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.\n", "embedding": [-1.3154297, 3.21875, 1.1318359, 0.016143799, 0.039154053, 1.0019531, 0.92285156, -0.36865234, 1.7373047, -0.24743652, -0.05050659, 1.1435547, 0.22314453, -2.4980469, -2.3007812, 1.6015625, -0.359375, 0.5673828, 2.4199219, 1.9443359, 0.64941406, 1.0390625, 1.0078125, 1.015625, 1.6230469, 0.14355469, 3.9746094, -2.9121094, 2.1425781, 1.1152344, 1.6806641, 0.5229492, 0.5996094, 1.8300781, -3.078125, 0.08294678, 0.5517578, 2.5859375, -0.765625, 0.6621094, -0.7631836, -0.61279297, 1.9267578, 2.2675781, -2.9492188, 0.37597656, -0.51123047, 1.7890625, -1.4814453, -4.390625, 0.6269531, 2.4238281, -0.4946289, 0.96533203, -3.1914062, 2.1992188, -1.7636719, -4.65625, 1.6708984, -0.74658203, 1.3417969, -0.7338867, -0.4519043, -0.96435547, 1.4648438, -1.3193359, 1.1328125, -0.6669922, -0.27514648, -1.2451172, 0.07537842, -0.34887695, -0.89697266, -0.6352539, 0.32958984, -0.055847168, -0.64697266, 1.9501953, 0.048828125, 0.57421875, -1.3466797, 4.0195312, -0.06201172, -2.9589844, 0.52978516, -1.4335938, -0.84765625, 0.9506836, 0.86279297, -1.1933594, -1.2148438, 2.7324219, -1.9970703, -5, 2.4394531, -0.9013672, 0.5473633, -2.0371094, 0.92871094, 1.9365234, -2.1367188, -0.38012695, 0.5625, 0.59033203, -0.62597656, -0.28125, 0.9291992, 0.9370117, -2.7089844, -1.8095703, -2.5292969, 1.8193359, -0.14672852, 0.66796875, -2.4414062, 1.2324219, -1.21875, 0.26416016, 0.85058594, 1.8896484, 2.6484375, 2.015625, -1.1445312, -1.7802734, -0.7446289, 2.6171875, -0.14819336, 4.4648438, 3.5234375, 0.5283203, -0.99853516, -1.2363281, -0.21276855, -1.8349609, 0.2368164, -2.8710938, -1.4658203, -1.2529297, -1.0410156, 2.8515625, -0.28125, 0.7260742, 3.1074219, -0.72998047, -2.7675781, 0.6801758, -0.042633057, 0.19042969, -0.40844727, -0.98876953, 0.6035156, -1.4677734, -0.32983398, -1.2919922, 3.71875, -0.3203125, 2.1074219, -0.3190918, 1.0292969, 0.89404297, 0.29589844, -3.0039062, 0.46118164, 1.5654297, 0.19445801, -3.2617188, -1.3769531, 3.8730469, -0.24279785, 1.5292969, 1.0117188, -1.3261719, 0.7661133, -1.1923828, -0.67871094, -1.0224609, 0.6484375, 2.6855469, 0.06628418, 0.098083496, 1.1533203, -3.8320312, 0.69140625, 3.2089844, 0.7397461, -1.7910156, 2.7460938, 0.5361328, 0.6738281, -0.14819336, 1.5810547, 1.1074219, -0.14807129, 1.3134766, 0.4663086, -2.6835938, -0.26733398, -2.0058594, -0.89941406, 1.2060547, -0.8520508, -3.3496094, 0.17797852, -0.6611328, -1.0244141, -0.88134766, -0.061035156, -0.33398438, 2.5527344, 2.8457031, 1.2871094, -1.5146484, 2.5429688, 0.33935547, 1.1103516, -2.4003906, 1.0751953, -1.3564453, 2.2011719, 2.0429688, -2.4199219, -0.37353516, -1.7138672, 2.5664062, 2.0371094, 0.48242188, -1.3134766, 1.9755859, -1.2480469, 0.26000977, 0.17993164, 0.41992188, 0.6010742, 1.2451172, -1.4804688, 1.3779297, 0.70458984, -2.8085938, -1.6025391, -0.65966797, 1.7089844, -1.5058594, 0.15368652, -1.359375, -0.74316406, -0.8457031, 0.20581055, 2.1054688, -0.24206543, -2.9023438, -1.2695312, 1.9248047, 1.5322266, 0.23388672, -0.34179688, 0.93066406, -1.5810547, 1.2236328, -2.9121094, -0.24584961, 1.3310547, 0.7441406, 0.84716797, 0.7421875, 0.95458984, -0.72998047, 2.984375, -3.0058594, -0.9995117, 0.1340332, 0.007255554, 0.44604492, -0.6611328, -1.171875, 3.0625, 1.0947266, -1.6181641, 0.54296875, 1.1230469, -1.8378906, -0.22595215, 0.01939392, 1.9609375, -2.0058594, -0.3305664, -1.5117188, -1.6865234, -2.6796875, 1.5195312, 2.8652344, 5.5078125, 1.2988281, -1.2587891, 4.6953125, -1.5644531, 1.6474609, 1.515625, 0.19055176, -0.97753906, -0.3552246, -0.8417969, 1.2988281, 0.6376953, 0.65722656, -0.94433594, -0.7607422, 1.0400391, -3.1152344, -0.20629883, 1.5087891, -3.6914062, -0.5708008, 0.8701172, 0.41845703, -1.8125, -0.2607422, -2.5898438, -0.57177734, 0.9501953, 0.25219727, 0.41796875, 2.0761719, 0.7739258, -2.3066406, -0.43066406, 1.1660156, -1.4082031, 1.3212891, 0.5620117, -0.3173828, 1.9511719, 0.21472168, 0.66064453, -1.3046875, -1.6347656, -1.34375, -1.6640625, -1.8466797, 2.3964844, 0.010223389, -0.19543457, -1.4785156, -2.9628906, -0.28637695, -2.8222656, -2.4765625, -2.703125, 0.6113281, 0.31274414, -0.91308594, -2.0449219, 0.78271484, 0.8222656, -3.0957031, 0.6220703, 0.43554688, 1.09375, 0.6713867, -2.5605469, 1.2597656, -1.0410156, -0.2010498, 0.6196289, 1.4013672, -0.70654297, -0.26757812, 2.0507812, -3.1757812, 0.79345703, -1.2246094, -0.5336914, 0.3852539, 0.90478516, -1.3183594, -0.6254883, -0.93359375, -0.22717285, 2.7167969, -2.2910156, 1.4726562, 0.5288086, -0.62353516, 0.020812988, -0.07019043, -0.16467285, -3.2558594, 2.3222656, -1.3251953, 0.9863281, -2.4804688, 1.8330078, -1.8476562, -0.7553711, -0.06359863, 3.390625, -1.9042969, 1.2109375, -1.2939453, -2.4003906, 0.13623047, 1.2275391, 1.3193359, -0.4177246, -0.9628906, -1.1503906, -0.93896484, -0.039489746, -2.8027344, 3.4335938, -1.7392578, -1.6757812, 1.1113281, 0.7504883, 0.2355957, 1.3613281, -2.5996094, 0.90527344, 0.8149414, -2.3144531, -2.1425781, 0.09814453, -1.2158203, -2.9375, -0.015991211, 2.8085938, -0.3996582, 2.5761719, -0.39379883, 0.55029297, 0.63427734, 1.8095703, -0.48583984, -0.34960938, 0.9711914, 1.6367188, -0.47583008, -2.5292969, 1.4990234, 0.25854492, -1.7919922, 1.8681641, 0.39111328, 0.97021484, 2.234375, 1.5205078, 0.74853516, 1.1367188, -1.7412109, 1.7373047, 1.2470703, -0.95214844, -3.4550781, 2.1894531, 0.11968994, -2.4023438, 0.16784668, 1.890625, 0.33032227, 2.8847656, 1.4013672, -0.49780273, -3.1171875, 1.8378906, 1.8378906, 2.2929688, 0.22338867, 1.6826172, -1.1914062, -1.1123047, 0.081848145, -0.97265625, 2.1933594, -3.4609375, -0.9511719, 2.0136719, 0.17578125, 0.05215454, -0.05783081, -0.73779297, -1.0566406, -2.0546875, 0.92089844, -2.4941406, -0.53466797, -0.41870117, -0.8051758, -0.02468872, -0.42651367, 2.9101562, -0.13391113, -0.12988281, -1.6523438, 2.1425781, -0.8305664, -0.30297852, -1.5488281, 1.203125, -0.88671875, 1.4667969, -1.4492188, -1.6044922, 2.4667969, -4.1523438, 1.1621094, 0.028701782, -0.82666016, 0.11566162, 0.7475586, -0.9169922, 0.8754883, 0.4880371, 0.94433594, 0.6972656, -1.0673828, -0.33789062, -0.76123047, 1.5097656, 0.63623047, -1.984375, -1.1523438, 1.0878906, 0.7988281, 1.3173828, -1.1347656, 3.4863281, 1.4169922, -3.0664062, 0.77783203, -3.7910156, -1.3066406, -1.7880859, -3.3066406, -0.03857422, 1.3535156, 1.6689453, 1.3710938, 0.6948242, 0.5332031, 4.8164062, 0.609375, -2.7734375, 0.28955078, 0.16235352, 0.48999023, -0.33618164, 0.22827148, 1.8935547, 0.4074707, -0.49902344, -2.8867188, 1.0576172, -2.0078125, 2.4941406, -0.24536133, -1.5908203, 0.5151367, -1.9296875, 0.6821289, -1.4726562, 0.57714844, -0.98876953, -2.0722656, 0.13183594, 0.10394287, 2.3828125, -0.019760132, 0.68847656, -3.3457031, -0.33984375, 0.025772095, -3.015625, -1.28125, 0.3552246, 4.0976562, -0.90966797, -1.2910156, -0.7011719, -0.3959961, -0.4152832, 0.78271484, 0.78564453, -0.19995117, -1.8759766, 0.2770996, 0.78027344, -0.09289551, 2.7207031, 0.18457031, -2.171875, -1.1875, 3.0175781, -2.2050781, -2.5839844, -0.007873535, -1.7470703, -0.027023315, -1.4736328, -1.5166016, 1.6396484, -1.7851562, -0.10046387, -0.5180664, 1.9804688, 0.7504883, -0.13256836, 4.8945312, -0.7519531, 0.123535156, 1.421875, -2.9941406, -2.0683594, -1.0703125, 1.1171875, -0.4033203, 0.7158203, 0.73095703, -0.08465576, 1.8613281, -0.17785645, 1.1689453, -0.46020508, -1.9404297, 2.1816406, -0.6220703, -0.51171875, -0.09692383, -1.3779297, 2.2128906, 0.15307617, 0.8305664, 2.421875, 0.34521484, -1.1992188, -0.4794922, -0.19067383, -0.34155273, 0.5019531, 1.8007812, 2.3261719, -1.7138672, -1.4648438, 0.7026367, -0.25024414, -0.8334961, 1.3613281, 1.2060547, 1.6503906, -0.9277344, -0.06161499, 2.4570312, 1.8691406, -1.8427734, 3.9394531, -0.9169922, -3.3007812, 1.6875, 0.9501953, -3.7089844, 0.64208984, 0.4099121, -0.88183594, -0.3876953, 0.23937988, -1.1181641, 0.6904297, -0.2841797, -1.0537109, 0.56152344, -3.5253906, -1.3505859, 0.59521484, -0.38891602, 0.29296875, -1.4863281, -0.8261719, 0.9301758, -0.72314453, 0.33325195, 0.3215332, 2.5507812, 3.5253906, 0.6816406, -1.9541016, -0.26489258, -1.2783203, -0.08026123, 0.13317871, -1.4453125, -3.3828125, 0.75341797, 2.3359375, 1.9648438, 1.0732422, 0.5410156, 2.9804688, -1.5683594, 1.6318359, -0.8491211, 3.5625, -1.6171875, 1.140625, 0.9970703, -2.9042969, -0.16955566, -0.89746094, 2.3867188, 0.35766602, 1.5771484, -0.37109375, -1.1503906, -1.5888672, 0.49682617, -1.0107422, -4.6875, -0.52734375, -0.19946289, 0.8129883, 0.5263672, -0.1574707, 0.06109619, 0.43188477, -1.3242188, -0.78466797, 0.92089844, -0.515625, 0.6347656, 0.22961426, -2.7949219, -0.1986084, 0.11401367, -0.34106445, 1.9160156, 1.421875, -1.7148438, -4.0195312, -0.007637024, -0.87060547, -1.9199219, -1.8408203, 1.3417969, 0.28833008, -0.11816406, 0.4182129, -0.10406494, -1.3486328, -0.5288086, -2.1230469, -0.47070312, -2.5527344, -1.3017578, 1.4140625, -2.1757812, -2.3496094, -0.23925781, -2.3535156, 2.5898438, -0.015823364, 1.5615234, 1.5341797, -0.11993408, -1.1806641, -0.92285156, -1.0683594, 1.6445312, 0.46118164, 0.68115234, 0.79345703, -0.5991211, -3.734375, -0.6699219, 0.953125, -1.1669922, 1.5732422, -2.0039062, -0.57958984, 1.6201172, -0.29101562, -0.99560547, -0.7993164, 0.86572266, -1.6894531, -0.921875, 0.83496094, 2.2734375, 1.3251953, -2.109375, 0.28076172, -1.4199219, 1.0224609, -0.3095703, -1.4238281, -0.114990234, -0.23693848, -0.24401855, -0.22216797, 0.41918945, 1.9121094, 2.5, -0.6972656, -2.2304688, -1.4208984, 1.34375, -1.8232422, 2.4160156, 0.7290039, 0.62353516, -1.0419922, 3.6152344, -1.7548828, -1.9960938, 1.4785156, -0.36035156, 0.66845703, 0.3618164, -2.4980469, -1.0400391, -1.0527344, 2.0292969, -2.2558594, -2.0976562, -2.1171875, 1.6015625, 0.28881836, 0.34521484, -0.5649414, 4.390625, 0.3076172, 2.7675781, 1.4755859, -0.9326172, -2.0820312, -1.0214844, -0.068725586, 0.9091797, 1.4609375, -0.058380127, 0.8183594, 0.8227539, -1.1279297, -1.4892578, 1.3554688, 2.0644531, 0.5913086, -0.35229492, 2.3105469, 0.5258789, 3.9179688, 3.6113281, -0.26171875, 0.7866211, 2.1855469, -0.5566406, -0.028915405, 3.78125, 0.64501953, -1.5966797, -0.58691406, 0.42211914, -0.44702148, 0.25463867, -0.049804688, 1.1181641, -0.24890137, -0.72509766, 2.1230469, 1.7080078, -0.46069336, -0.44311523, -0.34448242, -1.7412109, -1.5439453, -1.1748047, -0.58691406, 2.9511719, 0.97021484, -0.16442871, -0.71191406, -1.1953125, 2.6875, -1.9091797, 0.75, 0.59472656, -1.1835938, -2.3203125, 2.0566406, 2.2324219, 0.9194336, 2.5449219, 0.37695312, -0.4560547, 1.2392578, 1.0507812, 1.2402344, -0.71777344, 0.5307617, 2.1308594, -0.3786621, -1.2607422, -1.4765625, -0.69189453, -2.3046875, 1.4248047, 1.3837891, 0.7885742, 2.6582031, -1.0957031, -5.34375, 1.1376953, 1.7363281, 2.15625, -0.5004883, 0.7158203, 1.6464844, -1.0136719, -0.39404297, -0.14489746, 0.2475586, 0.81103516, 0.38989258, -2.1992188, 1.3056641, 1.0410156, 0.68847656, 1.9013672, 1.5507812, -1.8212891, -0.5834961, 0.87158203, 2.4882812, -0.8100586, 1.4140625, -0.6176758, 1.5195312, -0.16101074, 0.28564453, 2.2734375, -1.0761719, 0.50439453, -1.2695312, -0.03555298, 0.16040039, 0.28222656, -2.3710938, -0.13354492, 0.32836914, -1.1005859, -0.12854004, 2.2714844, 1.4238281, 1.5419922, 0.7192383, -1.4560547, -1.2929688, 1.0917969, 1.6601562, -1.5761719, -0.10180664, -0.7714844, 0.3322754, -0.8774414, -1.9970703, 0.87353516, 1.5751953, 0.19091797, -3.1933594, 0.53466797, 0.098083496, -0.4375, 0.86621094, -1.9814453, -1.3955078, -2.4960938, -0.14245605, 0.6669922, 1.8427734, 2.0214844, -0.53466797, -0.9633789, -1.765625, -0.23986816, 0.26293945, 0.032196045, -1.9970703, 1.921875, 3.0039062, 1.9365234, -0.5522461, -1.9091797, -1.1816406, 2.9609375, -2.4960938, 1.0361328, 0.7163086, -1.5419922, -0.66845703, -2.1386719, 2.5917969, 0.2376709, -2.1210938, -0.51660156, 0.36499023, -1.0458984, 0.3803711, 1.3076172, -0.012535095, -1.0712891, 1.3632812, 3.4082031, 1.4492188, -0.1071167, 2.4609375, 4.2929688, 1.2285156, -2.2617188, 0.94970703, 0.7055664, 2.5546875, -0.008331299, 0.53222656, 0.6455078, -0.53125, 0.62109375, 0.67285156, -0.7675781]}, "B082ZZDL3S": {"id": "B082ZZDL3S", "original": "Brand: HaSteeL\nName: HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women\nDescription: Professional Safety Quality for Years of Use!

Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

Complete 32PCS BBQ Grilling Tools Set:

\ufe521 x Large 4-in-1 Spatula
\ufe521 x Small Kitchen Tong
\ufe521 x Large Power Tongs
\ufe521 x Strong Grill Fork
\ufe521 x Long Knife
\ufe521 x Basting Brush
\ufe521 x Digital Meat Thermometer
\ufe521 x Meat Injector
\ufe521 x Multi-purpose Scissor With Cover
\ufe521 x Extra Cleaning Brush Head
\ufe522 x Grill Cleaning Brushes
\ufe522 x Grill Mats
\ufe522 x Salt & Pepper Shakers
\ufe526 x Kabob Skewers
\ufe528 x Corn Holders
\ufe521 x Cotton Case
\ufe521 x Carrying Bag

A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
will be a sweet gift for men, women and any camping lovers no matter it's a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

Using Tips:

\u25cf Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
\u25cf Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
\u25cf The knife is extremely sharp so please keep it out of reach of children.
\u25cf Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
\u25cf Please store all grill accessories in cool & dry places.\nFeatures: COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools\nSUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break\nEASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly\nPORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean\nMAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women\n", "embedding": [-1.3720703, 3.1289062, 2.0820312, -0.43115234, -0.6323242, 1.1923828, 0.77441406, -1.7695312, 0.46557617, 0.5727539, -0.30493164, 0.15368652, 0.5205078, -3.0410156, -2.2949219, 0.079589844, 0.1340332, 0.14013672, 1.5292969, 1.1923828, 1.1806641, 0.2705078, 1.3828125, 0.9951172, 2.2480469, -0.072021484, 4.765625, -3.1523438, 1.4785156, 1.0820312, 2.1933594, 0.34301758, -0.009811401, 1.9785156, -2.4238281, 0.1661377, 0.38842773, 1.0839844, -1.9462891, -0.61621094, -0.58984375, -0.36743164, 2.7207031, 1.3095703, -2.6875, 1.0136719, -0.48828125, 2.0136719, -1.3115234, -3.0390625, 0.3708496, 1.6435547, -0.5253906, 1.6289062, -3.1210938, 0.37597656, -1.2138672, -3.2050781, 1.6083984, -0.88964844, 1.8408203, -0.9604492, -0.6557617, -0.072753906, 0.8388672, -0.24255371, 2.2460938, -1.5791016, -1.4042969, 0.07354736, 0.66259766, -2.0898438, -1.2177734, -0.71191406, -0.5385742, -0.43798828, -0.6503906, 1.1884766, 0.3876953, 1.6386719, -2.3457031, 4.3632812, -0.40185547, -2.8945312, 1.6005859, -1.7548828, -1.2802734, -0.08538818, 2.0625, -1.1826172, -1.0117188, 2.84375, -1.9716797, -5.4960938, 2.1386719, -1.5761719, 0.25341797, -2.5332031, 1.5751953, 1.4541016, -1.4560547, -0.040161133, 0.6118164, 1.4638672, -1.7148438, -0.41967773, 1.4472656, 1.4501953, -1.2236328, -0.2590332, -2.2363281, 1.0361328, -0.43188477, 0.4975586, -0.9091797, 1.7734375, -1.2080078, -0.3088379, 2.2148438, 1.4873047, 3.7109375, 1.0917969, -0.87841797, -1.734375, 0.09289551, 0.7973633, -0.4074707, 3.3984375, 3.2246094, -0.033294678, -0.171875, -2.3496094, -0.5332031, -1.0380859, -1.5761719, -2.0371094, -2.1503906, -0.17248535, -2.8964844, 1.8701172, -0.24609375, 1.5410156, 3.3066406, -0.31054688, -2.3164062, 0.42944336, -1.3876953, 0.5239258, 0.02798462, -0.6748047, 0.74902344, -2.0175781, 0.21765137, -0.68310547, 3.4570312, -0.11602783, 1.5888672, -0.1459961, 3.3945312, 2.53125, 0.40063477, -3.140625, -1.28125, 1.1533203, 1.3271484, -4.5976562, -0.7832031, 3.4042969, 0.18371582, 2.0332031, 0.8847656, -2.5976562, -0.009429932, -1.1855469, 0.12585449, -1.6552734, 0.70654297, 3.0136719, 0.23779297, -0.4387207, 1.1904297, -3.2480469, 0.9248047, 2.703125, 0.2709961, -2.1445312, 1.2763672, -0.57128906, 0.36499023, -0.37597656, 0.55615234, 0.94433594, -1.0361328, 0.27783203, 0.6303711, -1.7636719, 0.06567383, -1.6367188, -1.3388672, 1.5986328, 0.033111572, -1.625, -0.040985107, 0.051605225, -1.5195312, -1.0175781, -0.15808105, -1.3671875, 2.375, 2.0117188, 0.4621582, -0.7866211, 1.7666016, 1.3564453, 0.6147461, -2.7675781, 0.76953125, 0.13061523, 1.1181641, 1.3984375, -1.203125, -0.22631836, -1.0634766, 1.7880859, 1.3632812, 0.47729492, -1.0908203, 1.0585938, -0.42626953, -0.07519531, 0.35498047, 0.81347656, 0.55078125, 0.9848633, -0.90722656, 0.8105469, 0.47851562, -2.9609375, -0.68847656, -0.1262207, 0.97216797, -1.2167969, -1.5488281, -1.2783203, -0.83691406, -0.5571289, 0.52441406, 1.0126953, 0.49121094, -2.8300781, -1.3291016, 0.98095703, 1.375, 0.68847656, -0.028244019, 1.1738281, -0.93310547, 0.038604736, -2.0683594, -0.19030762, 0.5522461, 0.63964844, 0.36450195, 1.0488281, 0.06451416, -0.50439453, 2.6503906, -0.2529297, -1.0322266, -0.09075928, 0.3256836, 0.21069336, 0.9824219, -2.5761719, 2.7539062, 0.88134766, -1, -0.20483398, 0.5073242, -1.4658203, -1.0097656, 0.26489258, 1.6572266, -1.8662109, 0.7993164, -2.078125, -0.6040039, -1.3115234, 1.1992188, 2.625, 5.7851562, 0.22607422, -1.3876953, 4.6054688, -1.8320312, 1.2841797, 0.6352539, 0.12670898, -0.98095703, 0.10235596, 0.7602539, 1.28125, 0.9399414, 0.79589844, -2.4589844, -0.44555664, 0.7861328, -3.0332031, 0.18688965, 2.0585938, -2.1054688, -0.7631836, -0.3955078, 0.41088867, -1.4550781, -1.2050781, -2.1015625, -1.7353516, 1.4414062, 0.7919922, -0.7001953, 1.3564453, -0.82421875, -3.0800781, -0.63964844, 1.0703125, -1.1064453, 1.9941406, 1.1660156, -0.5703125, 1.9853516, -0.47216797, -0.3828125, -1.5976562, -1.2822266, -1.3232422, -1.0859375, -1.2197266, 1.5556641, 0.058807373, -0.37670898, -0.42089844, -2.9628906, -0.11352539, -1.7011719, -2.6269531, -1.9853516, 0.5625, -0.0013275146, 1.2333984, -1.9160156, 1.3173828, 1.0634766, -3.7578125, -0.65625, -0.6401367, 2.8652344, -0.15722656, -1.3798828, 0.26611328, -0.3017578, 0.11444092, 0.08123779, 1.1962891, -0.1161499, -0.6459961, 2.1074219, -3.1777344, 0.67578125, -0.29174805, -0.07696533, 0.22265625, 1.9589844, -1.6318359, -1.5341797, -0.37524414, -0.35766602, 3.5527344, -1.5410156, 0.9316406, -0.2692871, -0.14379883, -0.3479004, -0.57666016, -0.49658203, -2.0234375, 2.1015625, -2.2695312, 1.8232422, -2.6835938, 0.8520508, -1.6035156, -0.71240234, -0.5019531, 2.7773438, -2.1445312, 1.0068359, -2.3164062, -1.9238281, -1.1748047, 0.8203125, 1.4492188, -1.0332031, -0.47265625, -1.3623047, -0.5864258, -0.27246094, -1.8671875, 3.2324219, -2.0019531, -1.96875, 2.4414062, 0.67041016, -0.20837402, 1.0654297, -3.1347656, 2.3847656, 1.5371094, -3.2578125, -1.0458984, 0.20336914, -1.2197266, -1.2041016, -0.06262207, 2.6035156, -0.058044434, 1.2324219, 0.097839355, -0.5913086, 1.2685547, 1.5703125, 0.061065674, -0.76904297, 1.2509766, 1.6181641, -0.7397461, -3.0859375, 1.7685547, -0.63623047, -2.6503906, 1.4824219, 0.42919922, 1.8037109, 0.93603516, 1.8408203, 0.8779297, 2.2148438, -0.30322266, 1.2958984, 1.296875, -0.47973633, -3.1894531, 1.5927734, -0.5600586, -1.265625, 1.3759766, 0.75634766, 0.9057617, 2.7402344, 0.7988281, 0.34521484, -1.9882812, 0.984375, 1.7490234, 1.4257812, 0.10168457, 1.1669922, -1.3378906, -1.9492188, 0.2602539, -1.3076172, 2.0078125, -1.9912109, -0.060272217, 0.8300781, -1.2412109, 1.1611328, 0.54003906, -1.5302734, -1.0869141, -2.1914062, 0.37231445, -2.1679688, -2.4980469, 0.83984375, -0.32055664, -1.1064453, -0.94628906, 2.6796875, -0.3310547, -0.10064697, -0.6274414, 1.7001953, -0.97314453, -0.6923828, -1.6757812, 0.6899414, -0.5776367, 3.0214844, -0.25268555, -1.7060547, 1.5605469, -3.7773438, 1.3623047, -0.18066406, -1.203125, 0.6777344, -0.40600586, -1.1123047, 0.7050781, 0.46166992, 0.60546875, 1.0595703, -1.1591797, 0.010887146, -1.5693359, 0.16271973, 1.2802734, -1.1376953, -0.86279297, 1.7382812, 0.7714844, 2.2636719, 0.24597168, 3.5527344, 0.7524414, -3.28125, 1.1992188, -2.9472656, -0.47265625, -2.0351562, -3.8203125, 1.4648438, 0.3413086, 0.7373047, 1.2216797, 1.1503906, 0.40771484, 3.1816406, 0.2734375, -1.5927734, 1.2509766, -0.2866211, 0.17993164, -0.3947754, 0.5258789, 1.1416016, 1.0507812, -1.5234375, -3.4277344, 0.35546875, -2.3945312, 1.9130859, -0.97216797, -1.8720703, 0.47485352, -1.1738281, 0.7348633, -1.7050781, 0.27441406, -2.25, -2.3183594, 0.55078125, -0.7128906, 2.1582031, 0.7084961, 0.69677734, -2.4570312, 0.68896484, -0.32373047, -1.7958984, -1.9970703, 1.5117188, 2.8632812, 0.023223877, -1.6865234, -0.46435547, -0.6591797, 0.29785156, 0.3371582, 0.5571289, 0.9863281, -1.671875, 0.21289062, 0.8183594, 0.7138672, 2.6503906, 0.35351562, -0.77978516, -0.117126465, 3.1660156, -1.2089844, -4.2109375, -0.9975586, -2.2539062, -0.625, -0.42041016, -1.7119141, 0.7216797, -1.1171875, 0.9785156, -0.9091797, 2.1054688, 0.4951172, 0.46704102, 4.2226562, -0.7060547, -0.67333984, 1.4365234, -2.4394531, -2, 0.41967773, -0.47460938, -0.8339844, 1.2197266, -0.7475586, -0.51464844, 1.0751953, -0.6328125, 0.89160156, -1.5136719, -2.6523438, 1.4873047, -1.5976562, -0.0010147095, -0.44458008, -0.8852539, 2.7382812, 0.38598633, 0.75683594, 2.8085938, 0.21276855, -0.18481445, -0.8232422, -0.3359375, 0.5161133, 1.0527344, 1.8828125, 2.0820312, -1.4482422, -0.14746094, 0.8564453, 0.30029297, -0.72753906, 0.83740234, 1.2734375, 2.1015625, -0.82128906, -0.18188477, 3.203125, 1.8291016, -0.8261719, 3.28125, -0.109313965, -1.4072266, 2.2929688, 1.4423828, -3.3925781, 0.5708008, 0.5, -0.7314453, 1.0546875, -0.25024414, -2.4785156, -0.32861328, 0.8930664, -0.5361328, 0.8222656, -2.640625, -1.6337891, 0.5004883, -1.0136719, 0.23803711, -1.0341797, -0.25561523, 1.5400391, -1.2490234, 1.0664062, -0.12133789, 3.2578125, 3.7734375, -0.2553711, -1.3623047, 0.49829102, -1.6884766, 0.23925781, 0.8144531, -0.6567383, -3.984375, -0.76904297, 3.25, 2.375, 1.1181641, 0.42626953, 3.1015625, -1.1396484, 0.9995117, -1.3837891, 3.6464844, -2.4726562, 0.43359375, 0.6635742, -2.203125, -0.52490234, -1.4169922, 2.0761719, 0.9248047, 1.2148438, -0.10107422, -1.9648438, -0.72021484, 0.8183594, -2.2617188, -4.6640625, -0.18139648, -0.25854492, 0.6142578, 1.2382812, -0.5913086, -0.3215332, -0.47485352, -0.2475586, -0.98583984, -0.008346558, -0.29370117, 1.0019531, 0.43969727, -3.1289062, -0.8071289, -0.41748047, 0.19714355, 1.3398438, 2.4257812, -0.45043945, -3.8203125, -0.71875, -0.3449707, -1.0976562, -2.1367188, 0.73535156, 0.74902344, -0.71484375, 0.5600586, 0.9741211, -1.2958984, 1.4667969, -1.7900391, -0.7661133, -1.6308594, -1.6181641, 1.7158203, -1.4052734, -2.5214844, -0.14880371, -2.3535156, 1.7080078, 0.6533203, 0.31225586, 2.2441406, 0.8300781, -1.0585938, -0.9477539, -0.22546387, 1.3496094, 0.9238281, 0.7363281, 0.71240234, -0.3244629, -3.0917969, -1.5917969, 1.6201172, -0.4807129, 0.9453125, -1.5117188, 0.117248535, 1.6308594, -0.30810547, 0.57910156, -0.5239258, 0.82128906, -1.8945312, -0.64746094, 1.0166016, 3.1015625, 1.5253906, -1.2275391, -0.6879883, -0.19006348, -0.14050293, 1.4589844, -1.28125, -0.29370117, -1.7666016, -2.1425781, -0.3774414, 0.3408203, 0.5878906, 2.1347656, -0.26611328, -1.3408203, 0.17175293, 1.5302734, -0.040985107, 2.4023438, 0.2286377, 1.0068359, -0.6586914, 3.0761719, -1.8974609, -2.2128906, 1.4130859, -1.4697266, 0.89941406, 0.6254883, -2.125, 0.07763672, -0.7089844, 1.65625, -2.5351562, -1.7832031, -2.0527344, 0.6455078, 0.09277344, 0.17211914, -0.43896484, 3.828125, -0.57177734, 3.2128906, 1.7490234, 0.06036377, -2.3300781, -1.1279297, 0.03274536, 0.0003824234, 0.82470703, -0.16711426, 0.86376953, 0.35766602, -0.061920166, -1.578125, 1.921875, 1.7451172, 0.8046875, -0.04736328, 1.9541016, 1.0693359, 4.9335938, 3.53125, -0.3840332, 0.96777344, 2.6074219, -0.99609375, -0.77978516, 3.9238281, 0.92822266, -0.7001953, 0.78759766, 1.3398438, -1.3066406, -0.28466797, 0.19335938, 1.1220703, -0.56640625, -0.70947266, 2.3964844, 0.7114258, 0.5175781, -1.234375, 1.4658203, -0.8754883, -0.040039062, -1.1669922, -1.5390625, 2.4609375, 0.5620117, -0.28808594, -1.3251953, 0.47265625, 2.5644531, -3, -0.27807617, 0.65527344, -1.7226562, -3.578125, 1.8740234, 2.4082031, 0.8027344, 1.7128906, 0.17883301, 0.4255371, 0.64501953, 0.3959961, 0.7807617, 0.68847656, -0.3149414, 1.5712891, -1.4365234, -2.0371094, -1.0693359, -0.42919922, -1.8945312, 0.019515991, 1.0273438, 2.125, 2.0097656, -0.25463867, -5.7578125, 1.8574219, 1.2578125, 3.5078125, -0.3232422, 1.3740234, -0.034423828, -0.5292969, -2.1992188, 0.3017578, 0.10205078, 1.3486328, 0.7792969, -1.2890625, -0.3227539, 2.0351562, 1.2207031, 0.13916016, 2.1757812, -0.86376953, 0.0069503784, 0.7817383, 2.2363281, -0.32202148, 2.2519531, -0.74902344, 1.4628906, 0.7558594, 1.3603516, 1.8330078, -1.7089844, 0.65478516, -0.7089844, -0.9111328, 0.095458984, -0.002714157, -3.203125, 0.41455078, 1.2666016, -1.59375, 0.19299316, 2.1679688, 2.2246094, 1.7802734, 0.24304199, 0.33789062, -1.7021484, 1.203125, 0.4819336, -0.70703125, -0.7290039, -1.234375, 0.20385742, -0.4260254, -1.3291016, 0.13269043, 1.2900391, -0.6328125, -2.8730469, 1.7128906, 0.24353027, -0.07281494, 0.17590332, -1.3828125, -2.0488281, -1.9580078, -0.35766602, 0.67871094, 1.6357422, 2.1660156, 0.99072266, -1.4755859, -1.8183594, -0.25146484, -0.7338867, -1.0498047, -1.9521484, 1.421875, 3.3847656, 1.8935547, -0.61035156, -2.9628906, -2.0019531, 0.8461914, -2.4023438, -0.2166748, 1.3076172, -1.78125, -0.53466797, -1.5185547, 2.5546875, -0.13452148, -0.9682617, -0.4609375, -0.29907227, -0.9033203, 0.62158203, 1.0117188, -0.26513672, -0.46289062, 1.0908203, 2.359375, 0.81347656, 1.7246094, 2.7109375, 2.2714844, 1.6738281, -2.015625, 1.1015625, 0.9916992, 2.671875, 0.0970459, 1.0244141, 0.35864258, 0.49804688, -0.033843994, 0.017807007, -0.19567871]}, "B07X2WCR21": {"id": "B07X2WCR21", "original": "Brand: i COVER\nName: iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo\nDescription: \nFeatures: \u3010Upgraded & Tear-Resistant Material\u3011iCOVER heavy duty waterproof grill cover measures: 60\"(width) x 22.5\"(depth) x 41\"(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill.\n\u3010UV Protective & Fade-Resistant\u3011The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability.\n\u3010Snug Fit & Stable\u3011These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season.\n\u3010Decent Protection\u3011The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off.\nAt Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.\n", "embedding": [1.2099609, 1.6425781, 3.3125, -2.0722656, 0.23522949, -0.22729492, 0.54589844, -2.2480469, 1.7441406, 2.5917969, -1.5849609, -1.7275391, 1.4199219, -5.5, 0.609375, 0.50341797, 0.3269043, 3.09375, 3.0390625, -2.734375, 1.5107422, 0.6723633, 0.20446777, 1.2421875, 0.25097656, -0.97509766, 4.671875, -2.3671875, -1.2900391, -1.0839844, 1.4931641, 0.5078125, 0.53808594, 1.8320312, -1.9628906, -1.8544922, -1.4433594, 1.7119141, 1.0644531, -1.0625, -2.5625, -1.8652344, 2.2910156, 1.1308594, -2.5078125, 0.7470703, -2.8867188, -0.6591797, -0.5131836, -1.6015625, 1.5224609, 1.8789062, 3.0019531, 0.8754883, -2.9589844, 2.7851562, 0.5053711, -1.7060547, -0.8051758, -0.7919922, 0.45532227, -0.42822266, -1.1982422, 2.25, -1.3232422, -1.546875, 0.7636719, -0.5493164, 1.8789062, 0.671875, 2.0664062, 0.43896484, -1.6523438, 0.05154419, 2.234375, -1.0419922, -1.7666016, 1.6279297, 1.3310547, -1.3935547, -1.3613281, 5.2265625, -0.72753906, -3.3085938, -1.1025391, -0.37060547, -1.6611328, -1.9707031, 2.1777344, -0.92626953, -0.62060547, 1.4726562, -1.0087891, -3.5117188, 0.13867188, -3.5605469, 2.5625, 0.42285156, 0.94091797, -0.19042969, -1.5136719, 0.5966797, -1.2558594, -0.06100464, -3.0390625, -2.0488281, 2.40625, -0.9868164, 0.45507812, -0.08227539, -0.5517578, -0.43774414, -0.94628906, 1.0517578, 2.5800781, 0.6894531, -1.1054688, 2.9785156, -0.37841797, 1.8916016, 3.1484375, -1.1513672, -0.54589844, -1.8671875, 0.79541016, 0.43676758, -0.3713379, 0.13000488, 3.3496094, -0.99316406, 1.34375, -0.6245117, 0.1875, 1.8583984, -0.97802734, 0.091918945, -1.5810547, -0.82958984, -3.0820312, 2.0566406, -2.2578125, -2.3398438, -0.38183594, -2.0429688, -1.8320312, 0.07788086, -0.91064453, 4.2421875, -1.4804688, -3.6972656, 0.40722656, -1.9990234, 0.36083984, -0.3972168, 0.91845703, -0.3293457, 0.32055664, -3.1542969, 3.0996094, 2.34375, 2.6660156, -1.5878906, 1.8046875, 0.9355469, 2.6425781, -2.6308594, 0.04144287, -0.60839844, -0.43408203, 1.65625, 1.1152344, -1.4414062, 0.7807617, 0.9916992, 1.4736328, -1.0556641, 0.97509766, 1.3046875, -0.17651367, 1.4335938, 0.46533203, -1.8974609, -0.22680664, 1.0478516, -1.1259766, -1.4570312, 0.83496094, 0.32861328, 0.7680664, -0.67529297, -0.9194336, 0.15563965, -0.71777344, -0.27563477, -1.71875, -0.4921875, -0.6533203, -0.48461914, -0.20654297, 0.5932617, -1.6308594, -2.2890625, -1.7734375, -0.111328125, -2.4121094, -1.71875, -2.4609375, 0.03451538, -0.006439209, 0.57714844, 0.7993164, -1.3808594, 3.4453125, 1.0517578, -1.359375, -0.77685547, 1.9960938, 0.33081055, 1.5634766, 1.1572266, -2.7539062, -0.09857178, 0.7504883, 3.2167969, -1.4921875, 1.0742188, 2.0722656, 0.7602539, -0.23535156, -0.9741211, 0.06286621, 1.0664062, -0.28271484, -0.5595703, -0.9970703, 0.7080078, 0.66015625, 0.020645142, -0.6401367, 0.41381836, -2.0605469, -1.9863281, -3.6132812, -1.8671875, 1.8251953, 1.6347656, -1.9560547, 2.4238281, -0.2788086, -1.0751953, -0.46850586, 0.96435547, -0.7216797, -0.9682617, 0.06451416, 1.0947266, 0.5, -0.43017578, -1.15625, -1.3808594, -0.82128906, -0.8564453, -1.5810547, 0.85595703, -1.1396484, -0.013244629, 0.37158203, 1.3554688, -1.3378906, -2.7207031, 1.5439453, -0.14343262, -0.26416016, -1.2460938, 1.3789062, -0.47802734, 0.53125, -0.019302368, 1.3486328, -0.6088867, 0.45263672, 2.0859375, 1.7734375, -2.3515625, 0.23181152, -0.72753906, -0.003326416, -1.4042969, -1.96875, 0.2758789, 2.8730469, 0.4333496, -2.8828125, 3.796875, -0.50390625, 0.55029297, 1.8173828, -1.4287109, -1.6474609, 2.359375, 0.29467773, 1.5712891, -1.1542969, 1.0146484, -2.25, -1.2861328, 0.73828125, -1.78125, -2.2265625, 1.5224609, 0.99365234, 1.0478516, -0.65625, -0.4736328, -2.2011719, -1.75, 1.3671875, -2.4511719, 0.111694336, 0.42089844, -0.37304688, 0.91845703, -2.1367188, -1.1259766, -0.21362305, -0.57128906, -1.6679688, 0.06530762, 0.75878906, -0.97314453, -0.22583008, -2.0175781, 1.1357422, -0.67822266, -0.5463867, -3.7988281, -2.4921875, -1.5234375, -0.73876953, -1.0615234, 0.7714844, -0.6381836, -2.5898438, 1.2333984, 1.171875, -3.1289062, -0.8076172, -0.034606934, -1.5371094, 1.7138672, -0.42089844, -0.23388672, 0.5439453, -5.1445312, 1.15625, -1.8417969, -0.5888672, -0.69628906, -2.0957031, 0.0072288513, 0.9404297, 0.6245117, 0.11810303, 1.5869141, 1.3144531, -0.02798462, 0.23913574, -2.9375, -0.06817627, -2.5, -0.16320801, -1.1074219, 0.7192383, -3.5898438, -1.8486328, 1.5888672, -0.36328125, 3.2832031, 0.08618164, 0.44018555, -0.39282227, -1.2607422, 1.1396484, 0.6401367, -2.2363281, 0.78515625, 0.54785156, -1.5302734, -0.32714844, -4.5507812, -2.9648438, -0.7651367, -0.50439453, 0.48999023, -1.4570312, -0.13464355, 2.5097656, -3.7148438, -1.6796875, -1.8310547, 1.2441406, -0.8378906, 0.15356445, -0.6323242, -3.2519531, -2.2871094, -1.3232422, -2.5761719, 1.7724609, -1.8554688, 0.9692383, 2.78125, -0.9370117, 5.3046875, -0.83496094, -4.4179688, 1.4765625, 1.2226562, 0.34936523, 3.203125, -0.34472656, -0.7553711, -1.0849609, 1.5341797, 2.7695312, 0.34643555, 1.0205078, 2.2910156, 1.0634766, 1.9482422, 0.6357422, 1.5039062, -0.7216797, 0.89990234, 2.5019531, -0.45874023, 0.122680664, 0.6176758, 0.24206543, -1.2460938, -0.32958984, 3.0410156, 0.09375, -0.121398926, 1.4433594, -0.76171875, 0.95654297, -0.5019531, 2.7871094, -1.0996094, 3.1152344, 0.7832031, -0.61572266, 1.0214844, -1.7578125, 2.3671875, 2.0234375, 0.94091797, 0.17419434, 1.8378906, 0.4284668, 1.0957031, -0.2590332, 1.4619141, -0.24291992, -1.4755859, 2.4355469, -1.2207031, 0.54296875, 2.1015625, -2.6582031, 1.7099609, -0.61083984, 0.24609375, 2.2207031, -1.8388672, 0.14440918, -0.6411133, -0.19226074, -0.083618164, -2.7734375, -0.60498047, -2.4277344, -0.19091797, -0.21826172, -3.2480469, -1.3613281, -1.0283203, 3.4121094, 0.98779297, -1.4179688, -0.7944336, 1.6191406, -1.3974609, -1.6914062, 1.5009766, 2.4140625, -0.796875, 1.3320312, 3.6328125, -1.4150391, 2.2578125, -3.4101562, 1.6582031, 0.29077148, -0.48754883, -0.19665527, 0.26464844, -0.19226074, -0.8496094, 2.3359375, 1.921875, 2.2089844, -0.9121094, -0.21081543, -1.3808594, -0.14428711, 1.2753906, -1.3095703, -1.0332031, 1.1923828, 0.87109375, 0.12219238, 0.3774414, 1.1738281, 0.15429688, -2.4238281, 1.4794922, -1.2587891, 0.17504883, 0.89990234, -4.171875, -0.81396484, 0.26831055, -1.8105469, 2.3125, 0.24536133, 1.1650391, 1.3203125, 0.79248047, -0.2631836, 0.75146484, -2.7792969, -2.3417969, 0.10180664, -0.56396484, 1.5498047, -0.22705078, -1.78125, -1.5878906, -2.4824219, -1.4228516, 1.3242188, 0.4326172, 0.5, 0.9814453, -2.8027344, 0.73779297, -2.8105469, -0.31567383, 0.42919922, 0.8696289, -0.65478516, -0.16186523, 0.72998047, 0.060791016, 0.6381836, 1.0488281, 0.8701172, -1.1787109, -0.8466797, -0.30810547, 1.7939453, 1.6357422, -1.2617188, -3.5996094, -0.17700195, 1.2607422, 1.9697266, 0.89697266, -0.8496094, -0.70996094, -0.82910156, -0.16992188, 0.13427734, 2.1601562, 1.1992188, -1.3154297, -1.1787109, 0.81933594, -2.0332031, -1.4501953, -0.7939453, 0.25561523, 1.1572266, 1.34375, -1.9794922, -2.6640625, 2.7539062, -0.5522461, -0.69677734, -1.9658203, 3.8671875, 2.5390625, 2.0019531, 2.328125, -3.0664062, 0.58203125, 0.9658203, 0.047576904, 0.083618164, 0.29760742, -1.1416016, 0.49072266, -0.07330322, 0.35742188, -2.7089844, -1.6591797, -0.7705078, -0.10858154, -0.2626953, -3.34375, 2.4921875, 0.52978516, 1.6240234, 1.0693359, -2.5664062, 2.765625, -0.7211914, -0.65478516, 2.0195312, -2.0644531, 0.35205078, 1.3876953, 0.40063477, -0.5292969, 0.3647461, -0.19726562, 0.07171631, -0.97509766, -0.76660156, 0.12231445, 1.4794922, -0.9848633, -0.7841797, 1.0107422, 0.71240234, -1.7294922, -1.0585938, 3.0273438, 2.6894531, -0.3059082, 0.8105469, 1.5976562, -1.8037109, 1.5869141, 1.5292969, -0.055541992, 0.34350586, -0.6904297, -0.69677734, 1.9248047, -1.4003906, -2.3300781, -0.1665039, 1.5537109, -0.30908203, 2.1875, -1.4433594, -1.1210938, 2.3457031, -1.703125, -0.60302734, 0.020523071, -0.4182129, -0.024612427, -0.6069336, 2.03125, -0.79003906, 0.4831543, 3.2421875, -1.8759766, -3.6484375, 1.0712891, -0.86328125, -0.6669922, -1.1503906, -1.1738281, -3.0019531, -0.72998047, 2.1015625, 1.9570312, 1.5800781, 0.21691895, 2.0058594, -1.1074219, 0.54785156, -0.34228516, 1.9521484, -3.3183594, -1.4394531, 1.5332031, -1.7666016, -1.6962891, -2.0273438, -0.21191406, 1.6083984, 1.5908203, 1.7255859, 0.25439453, 0.9692383, -0.057006836, -3.3222656, -1.8710938, -1.0292969, 0.21459961, -0.7192383, 1.3925781, 0.1619873, 1.0087891, 0.5209961, -0.72998047, -0.69970703, -0.44580078, 0.03475952, -1.40625, -2.0664062, -1.0546875, -1.6611328, -1.40625, 1.0791016, 0.43579102, 0.9628906, 0.5332031, -4.0703125, 0.1862793, 0.18457031, -2.1425781, -1.578125, 2.3378906, 0.93896484, 2.0351562, 0.08081055, -0.26367188, 0.89208984, 3.7636719, -0.28222656, -0.3959961, 1.9833984, -1.4990234, 0.50878906, -0.39794922, -1.5839844, 0.99121094, -1.3789062, 1.2509766, 0.69628906, -0.8256836, 2.1191406, 2.1601562, 0.36035156, 0.09008789, 0.8413086, 1.71875, 3.3085938, 0.24609375, -1.4462891, 0.82128906, -1.1025391, -2.1992188, -0.026748657, -2.1445312, -2.2070312, -2.0527344, -0.31201172, 2.2578125, 1.5634766, 1.2675781, 1.6396484, 1.3847656, -1.2167969, -0.12683105, 0.17651367, 3.6894531, 0.9526367, -2.8085938, 0.24487305, -1.0341797, 0.78515625, 2.2539062, 0.1161499, 0.016296387, 0.38916016, -1.3730469, 0.43676758, 0.33129883, 2.4648438, 0.0680542, 0.4794922, 1.0166016, 1.2167969, 2.6308594, -0.8442383, 1.1943359, -1.1474609, 1.4453125, -1.7294922, 2.9667969, 0.049316406, -2.7890625, -0.5722656, -1.2050781, 0.12976074, 0.921875, -1.9150391, -0.32714844, -1.3896484, -1.5332031, -1.4921875, -0.5800781, -4.046875, 0.8364258, -0.31860352, -0.21740723, -0.3486328, 1.4423828, -0.36206055, 3.1484375, 1.6894531, -0.08502197, -0.62158203, 0.7158203, -1.7402344, -0.033416748, -0.40454102, -2.15625, 0.19140625, -1.8613281, 0.96240234, -0.9404297, 0.38061523, -0.2006836, 0.50878906, 1.7353516, 2.9472656, 2.7949219, 2.9042969, 1.5517578, 1.7363281, 1.7294922, 0.39770508, -2.1542969, 0.44702148, 1.7050781, 1.4863281, 3.3964844, -1.2207031, 0.036834717, 1.7626953, -0.13232422, 0.25830078, 0.1640625, 1.7275391, -2.2832031, 0.5058594, 1.0800781, 0.42626953, -0.5097656, 1.8232422, -0.6586914, -0.84277344, 0.7060547, 0.24353027, 4.421875, -0.65283203, 2.2519531, 1.2392578, 1.8759766, 1.1835938, -3.5253906, 0.984375, 1.9052734, -1.9560547, -1.4257812, 0.6176758, 1.6210938, 2.7890625, -1.1728516, 1.1748047, 1.09375, 1.8847656, 0.95410156, -1.1660156, 1.3095703, 0.18676758, 1.2568359, 1.3476562, -1.8105469, -1.4316406, 0.6821289, -1.8984375, -1.6142578, 0.5595703, 1.9736328, 1.4941406, 1.0634766, -4.2695312, 2.28125, -0.21459961, 2.1074219, -0.4230957, 0.45947266, -1.2871094, -2.6445312, -0.1772461, 0.36328125, -1.34375, 2.6054688, 0.25927734, 0.43017578, 3.2949219, 0.94628906, 2.3574219, 0.9980469, 1.8115234, 0.55371094, 1.1044922, 1.4023438, 1.4189453, 2.0449219, -0.17663574, 1.1328125, 1.7021484, -0.42749023, 1.2509766, 1.5869141, -1.4257812, 2.4316406, 2.7949219, -0.8935547, 1.3105469, -0.21508789, -0.25024414, -1.3603516, 0.5161133, -0.14208984, -1.6259766, 1.4013672, 2.2792969, 0.85302734, 1.9902344, 1.4990234, -0.49487305, 2.6367188, 0.9067383, -0.43603516, -1.2050781, 0.7080078, 0.9707031, -0.6479492, -0.11804199, -1.0537109, -0.28564453, -1.0507812, -0.5571289, -0.828125, 0.54345703, -0.45751953, -0.12915039, 1.5703125, -1.2851562, -0.5332031, 0.030090332, 0.11743164, -0.22302246, 1.8105469, 1.0957031, -1.3134766, -1.6894531, -1.0654297, -0.25927734, -2.1777344, -1.7978516, 2.0332031, 2.9511719, 1.4267578, -2.4199219, -0.48291016, -3.4335938, -1.75, -1.1035156, 1.8320312, 0.3725586, -0.33789062, -0.2541504, -0.03866577, 2.7714844, 0.75878906, -1.0849609, -0.006576538, 0.2055664, 2.515625, -0.58935547, -0.9667969, -0.34716797, 0.4296875, 1.5810547, 1.4189453, 3.6347656, -0.44262695, 0.38452148, 2.3867188, -1.375, -2.8027344, 0.09008789, 0.60839844, 1.0019531, 0.15710449, 2.4003906, 1.0664062, -0.28710938, -0.7055664, -0.4921875, -1.4892578]}, "B07PZDVLW5": {"id": "B07PZDVLW5", "original": "Brand: Mr. Heater\nName: Mr. Heater MH18B Portable Propane Heater, Red\nDescription: \nFeatures: 4, 000, 9, 000, or 18, 000 BTU per hour\nHeats up to 450 sq. ft.\nHi-Med-Low heat settings\nAutomatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off\nTHE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .\n", "embedding": [0.15600586, 1.2783203, 2.90625, 1.2998047, -1.7636719, 0.14489746, 0.34033203, -1.3945312, -0.7426758, 1.5546875, 0.6816406, 0.22277832, -0.37231445, -1.3476562, 1.5917969, -1.8134766, 0.43652344, 0.6689453, 1.953125, -0.54003906, 0.3034668, 0.3244629, 1.1621094, -2.3691406, 0.8803711, 1.1152344, 4.515625, -2.4589844, -0.8515625, 0.37841797, 0.17749023, 0.7319336, -0.35107422, 2.0390625, -1.5351562, -0.9970703, -3.8378906, 0.99316406, -3.5, -0.8359375, -1.1865234, -0.6958008, -0.45825195, 0.78759766, -2.2890625, -1.8837891, 1.5791016, -1.6953125, 0.14318848, 0.83935547, 0.40112305, 0.17150879, -0.64453125, -0.26367188, -1.3886719, 0.27856445, -0.8276367, -2.9160156, 1.8369141, 0.578125, 1.5566406, -1.484375, -2.3164062, 1.1630859, 0.1895752, 0.98779297, -0.055023193, -0.48461914, -0.07495117, 0.69677734, 0.9526367, 0.013801575, -0.69873047, -0.38354492, 0.02746582, 0.27124023, -2.3574219, 1.3535156, 2.6914062, -0.35180664, -0.6088867, 1.8671875, 0.8227539, 1.7158203, -1.4121094, -1.6152344, -0.19897461, 0.20910645, 1.8710938, 2.0761719, -2.0761719, 1.890625, -1.1318359, -5.3242188, 2.6914062, -1.4443359, 0.19970703, 0.3642578, 1.0517578, 1.9755859, 1.1103516, 0.3881836, 0.29345703, -0.35986328, -1.2958984, 0.057037354, 0.7426758, 0.9951172, -1.7402344, 0.75439453, -2.1484375, 0.09197998, 1.9658203, 0.6279297, -2.6640625, -0.40112305, 1.28125, 2.0546875, 6.0078125, 1.2089844, 2.9296875, -0.40551758, 2.2910156, -0.6508789, 0.04824829, 0.5439453, 0.53808594, 0.4555664, 1.4160156, -1.7529297, 2.3359375, 0.1977539, -0.17565918, 0.13134766, -0.8144531, -1.3242188, -1.2412109, -2.2089844, -4.0039062, -2.2128906, -1.6982422, 0.065979004, 1.6230469, -0.86083984, -2.6425781, -1.4824219, -0.6308594, -0.22277832, -0.07659912, -0.8286133, 0.59814453, -1.640625, -1.0917969, -1.2695312, 0.10870361, 2.625, -0.017120361, 0.32836914, 2.1269531, 2.4042969, 1.796875, 1.4277344, -1.6894531, 1.9238281, -0.8569336, -2.3632812, 1.1220703, 0.8183594, -0.38623047, 2.6542969, 0.9584961, -2.6464844, 0.2788086, -0.7451172, 0.24719238, -1.8330078, 1.5742188, 1.7714844, -0.5859375, 0.38989258, -3.4414062, -1.1835938, -0.1953125, -0.34326172, 1.8447266, -1.7314453, -1.9501953, -1.2382812, 0.37548828, 0.23791504, -0.9682617, 0.28051758, 0.27416992, 0.35253906, 0.062927246, -2.1171875, -1.5878906, -3.0195312, 2.8925781, 1.0400391, -1.6425781, 0.5800781, -0.035339355, -1.5996094, -1.5556641, -2.1738281, 0.421875, -1.2158203, 0.67041016, 1.7939453, 0.43530273, -0.5698242, 1.3037109, -1.2119141, -0.6821289, -3.8652344, 1.3037109, -0.21899414, 0.60546875, 1.796875, -0.4970703, 1.3691406, 0.22961426, -0.12213135, -0.40576172, 2.125, 0.51171875, -0.15283203, -2.234375, -2.171875, 2.5625, 1.7636719, 0.9980469, 0.3737793, -0.15063477, 1.8007812, -0.08648682, -0.31030273, 0.8847656, 0.8330078, -0.57421875, 0.073791504, -0.29003906, -0.9550781, -0.043823242, 2.0019531, -1.2832031, 2.4746094, -0.41357422, 1.0585938, 0.8027344, -1.1054688, -0.5629883, 0.06335449, -2.3789062, 0.28588867, 0.87060547, -0.7788086, 0.19030762, -1.6875, -0.19104004, 0.93115234, -0.3425293, 1.4736328, -0.31176758, -0.32250977, 3.6582031, 1.5664062, -0.33032227, -0.25341797, 1.6328125, 3.2421875, 0.086364746, 1.6816406, 0.5205078, 0.90625, 0.090026855, 3.2851562, -1.0957031, 0.62939453, 0.089660645, -0.034179688, -0.1973877, -1.3046875, 0.04534912, -0.2208252, -0.51171875, 1.2900391, -1.421875, 0.103759766, 2.6113281, 0.14367676, -1.9980469, 1.3974609, -0.35009766, 1.1630859, 2.1757812, -1.1386719, 0.68359375, -1.2617188, 2.9550781, 0.47631836, -1.4794922, -0.11785889, -1.5078125, -3.0917969, -0.18041992, -0.74560547, -0.67285156, 1.5273438, 2.5019531, -2.1582031, -2.6425781, -0.6645508, -3.078125, -0.9902344, 1.1855469, -3.8769531, 1.3173828, 0.95458984, 0.43603516, 1.7353516, -0.37231445, -0.4934082, 0.48706055, -0.7216797, 0.8544922, 2.4101562, -0.1227417, -1.5029297, 0.10797119, -1.0976562, 1.2939453, -1.4648438, -2.5585938, 0.80908203, -0.8286133, -1.4726562, 1.4228516, -0.28466797, 0.017791748, 2.28125, -1.4560547, 1.1484375, 0.10650635, -0.7734375, -1.7519531, -0.46826172, 0.35913086, -2.265625, 1.2490234, -0.6508789, -1.8984375, -5.5, -0.023239136, 0.08050537, -1.9042969, 0.765625, -1.1376953, 0.54541016, 0.33447266, -1.3037109, 1.390625, -1.578125, -1.0712891, -2.2011719, 1.2119141, -3.1210938, 1.4648438, -1.5615234, 0.46166992, -2.0078125, -0.80566406, 0.19104004, -0.7529297, 2.1660156, 0.54003906, 1.3515625, 0.40795898, 2.1113281, 0.5258789, 1.765625, 0.5541992, -1.3544922, -1.8417969, 0.5683594, -0.71240234, -2.3769531, -0.9970703, -3.8398438, 0.5185547, 0.46875, -1.9658203, 0.7783203, 0.8964844, 0.15112305, -0.040252686, -0.5834961, -0.87158203, -0.96435547, -1.0292969, 0.40527344, -0.2286377, -1.7421875, 0.17285156, -1.4667969, -0.5888672, -1.4521484, 0.7080078, 1.5595703, 0.3515625, 1.2939453, 0.039886475, 1.8925781, 1.1035156, -5.25, 2.3925781, 1.8828125, -0.76953125, -1.9179688, -0.89941406, -0.71240234, -1.9658203, -1.4003906, 2.3730469, 0.39379883, 3.5488281, 0.011169434, -0.21325684, 1.6640625, 3.3007812, -1.3320312, 0.5678711, -1.2470703, 0.5151367, -1.6123047, -1.7958984, 1.1035156, 2.4042969, -2.5625, -2.015625, 1.8681641, -0.45385742, 1.2695312, 0.68603516, -1.59375, -0.8676758, 3.1113281, 0.6899414, 1.8789062, -0.39038086, -0.5834961, -1.4941406, 0.17004395, 1.8779297, 3.2148438, 0.50683594, -0.59716797, 0.79003906, 1.2158203, 0.7573242, -1.3300781, -0.24572754, 0.42651367, 0.23364258, 1.0048828, 1.3183594, -0.14990234, 1.4794922, 0.27539062, 0.6489258, 0.9589844, -1.4433594, -0.24475098, 1.3876953, -0.18945312, -0.3166504, -0.3947754, 0.42041016, -0.6088867, -1.2724609, 0.2487793, 0.2668457, 0.1026001, 0.66259766, -2.0488281, -1.9160156, -1.6005859, 1.4169922, -0.17150879, -0.2709961, -0.23059082, 1.5341797, -1.4697266, -0.7285156, -2.6542969, -0.7841797, -0.36206055, 0.70214844, -0.8149414, -1.2753906, -0.29589844, -0.375, 0.4025879, 0.9326172, -0.5205078, -0.66796875, -0.11010742, -1.3564453, 1.7958984, -0.75, 0.52001953, 1.2695312, -2.2871094, 0.03564453, -2.2382812, -1.0195312, 2.1757812, -0.27392578, 0.28710938, 2.7929688, -1.9960938, 2.1230469, -0.28198242, 3.2539062, -1.578125, -0.020736694, 1.3935547, -0.25341797, -0.18774414, -1.2246094, -4.5273438, -0.18322754, -1.8847656, 0.66503906, 3.1425781, -0.43310547, 0.5395508, -0.3618164, 1.1279297, 0.09082031, -2.3574219, -0.9135742, 0.92822266, -1.6269531, 1.1376953, 3.1621094, 0.96875, -3.109375, -1.0654297, -0.28198242, -0.3251953, 0.8852539, 0.38989258, -0.98095703, 1.1806641, -0.70947266, 2.7382812, -2.0195312, -0.09075928, 0.9375, 0.22827148, -0.92626953, -0.28955078, 2.5058594, 0.3371582, 0.2722168, -0.1973877, 3.6132812, 0.60302734, -1.765625, -0.4584961, 1.1474609, 0.9482422, -0.13696289, -1.9921875, -1.0595703, -1.1357422, -0.53027344, 0.77001953, 0.27294922, -0.43139648, -1.1728516, -0.58447266, 2.1484375, 2.0683594, 0.88623047, 1.4863281, -1.5078125, 1.5566406, -0.28100586, -1.8867188, -1.4589844, 0.32080078, -1.8847656, -1.0478516, 1.6865234, -0.55810547, -0.5332031, -1.2099609, -0.8300781, -0.115722656, 0.67822266, 2.2929688, 2.703125, 0.4580078, -0.59277344, -1.2138672, -1.6933594, -0.5644531, 1.5986328, -1.1181641, 1.5039062, -0.05496216, 0.1484375, 3.0351562, -1.8564453, 1.40625, 0.94677734, -1.7353516, 0.7089844, -0.6923828, 0.036315918, -0.11114502, -0.27856445, 0.13500977, -0.20251465, 3.3828125, -1.3173828, 0.24267578, 1.8359375, -0.7050781, 1.0419922, 0.9033203, -0.44433594, -1.2421875, 3.9199219, 0.14819336, 1.6347656, -0.71875, -0.8647461, 1.7158203, 1.0478516, -1.796875, -0.86572266, -1.1582031, 0.94970703, -1.4189453, -1.4970703, 1.6796875, -0.9135742, -0.5600586, 2.96875, 2.5546875, 0.49804688, 1.59375, 1.7001953, -0.6850586, 1.828125, -0.5336914, 0.42919922, 1.8066406, -0.020706177, -2.6621094, -1.6230469, 1.6865234, -0.25097656, 1.4833984, -0.7089844, -2.3066406, -0.23303223, -1.9804688, -1.7509766, -1.1933594, -0.11584473, -0.56933594, -2.2382812, -0.2890625, -0.45483398, 3.2578125, 4.375, 0.4597168, 0.1373291, 1.7841797, -0.47485352, 0.2241211, 0.7246094, -0.00617218, -1.4824219, -0.3930664, 1.4208984, -1.2958984, 0.6503906, 2.3457031, 0.29223633, -1.8261719, 0.11065674, -0.65527344, 2.3691406, -1.4130859, -1.84375, 0.6010742, -0.5932617, 0.51660156, -1.3886719, -2.2011719, -2.171875, 1.484375, 1.6171875, 0.27368164, -0.34350586, -0.94921875, -3.4804688, -1.4619141, -2.9550781, -0.2697754, -0.6464844, 0.0055160522, -0.27319336, -2.4980469, 0.4116211, 1.0087891, 1.4970703, -0.32177734, 1.7929688, -1.4990234, 0.76123047, 0.77441406, -0.45874023, 0.87353516, 0.25927734, 0.33447266, -0.7866211, -0.3486328, -0.83496094, -3.6230469, 0.41845703, 0.7871094, -0.6533203, 1.4130859, -0.33154297, 0.08013916, 3.1992188, 1.1113281, -2.4511719, 0.9057617, -0.6611328, -1.1611328, 2.4140625, -1.8232422, 1.8623047, 0.89160156, -0.9848633, -0.15881348, 0.4169922, 3.0019531, 0.65625, 0.15356445, -0.3071289, -0.30371094, 0.4260254, -0.45483398, 1.5185547, -0.5644531, 0.6425781, 1.3066406, 1.1865234, 0.8354492, -2.1582031, -0.97802734, -0.30688477, -1.2128906, -1.8652344, -0.4025879, 0.49560547, 0.4729004, -0.32006836, 2.359375, 1.0449219, 1.7050781, -1.3632812, 0.41308594, -0.06878662, 1.5595703, 1.4980469, -1.4277344, -3.3730469, -1.4658203, -0.39013672, 2.1367188, 0.8339844, -1.9658203, -0.51904297, -1.7773438, -0.1685791, -0.66845703, 1.6669922, 0.80859375, 0.3251953, -1.1181641, 1.9443359, 1.4257812, -1.8457031, -0.24975586, 0.0021324158, 2.5039062, -3.0976562, 1.8095703, 2.3125, -1.0322266, -0.3190918, -0.22351074, 0.6464844, -0.5991211, -2.7519531, 2.7304688, -3.5390625, -0.83984375, 1.6845703, -1.1591797, -3.0898438, 0.43481445, 1.2939453, -0.7006836, 1.7255859, 1.6669922, 0.57666016, -0.72509766, 1.7724609, -1.2724609, -0.64160156, 1.1201172, -0.6074219, -1.2939453, 2.453125, -0.8334961, 3.8886719, 2.1601562, 1.6689453, -0.65722656, 0.1027832, -1.1660156, 0.7104492, 4.515625, 1.4814453, 1.390625, 0.52441406, 0.36889648, 1.6972656, 0.56884766, 1.5234375, -1.9013672, 0.5214844, 0.32177734, -0.51464844, -0.484375, -1.1035156, 0.75390625, 0.69189453, -0.91308594, -2.3242188, 1.0214844, 2.4179688, 0.23120117, -0.29736328, 0.26000977, 1.7714844, -2.0390625, 1.2363281, 0.80615234, 1.5976562, 0.8613281, -0.07525635, 1.9863281, 1.1347656, -0.75878906, 0.6538086, -0.80078125, 2.78125, -0.26171875, 0.5708008, 1.3857422, -0.07086182, 0.9770508, 0.91845703, 0.15783691, 1.6337891, -0.28466797, -1.2988281, -1.4970703, -0.9970703, -0.8022461, -1.0126953, -0.005592346, 1.0205078, 0.43823242, 2.4589844, 1.2460938, 0.86621094, 1.2529297, 0.8984375, -1.7724609, 2.6796875, -0.12731934, -0.52685547, 0.072143555, -1.5546875, 2.078125, -1.5439453, -0.5908203, -2.5546875, 0.32348633, 1.6738281, 0.3466797, -1.5058594, 0.8901367, -0.72216797, 2.1425781, -2.4667969, 0.3190918, 0.33203125, 0.08880615, 1.5205078, -0.20910645, 0.5917969, 0.2800293, 0.7631836, -1.1621094, 1.6347656, 0.19812012, -0.109802246, -0.7792969, 1.3427734, 0.8466797, 0.75634766, 2.4882812, -0.84814453, 1.5820312, -0.13989258, -0.7397461, 0.328125, -0.15441895, 0.14245605, -0.31518555, -1.3095703, -0.40576172, -0.2824707, 1.0087891, 0.9633789, -1.8896484, -0.39379883, 2.3613281, 0.5258789, 0.7495117, -2.1992188, -2.0898438, 0.19348145, -0.59277344, -0.265625, 1.1699219, -0.31982422, 0.110961914, 0.6484375, 0.109802246, 0.8676758, -0.54003906, -2.5351562, -0.9057617, 1.4716797, 1.34375, -0.41748047, 0.101745605, 0.31762695, -0.94677734, -0.46142578, 1.3417969, 1.1044922, 1.3789062, -0.45922852, -0.63134766, -2.0527344, 0.5102539, 0.013641357, 2.5449219, 0.10437012, -0.4580078, 1.1572266, -2.9707031, -2.8789062, -2.8730469, -1.5351562, -0.055847168, -0.10119629, -1.0957031, -0.39453125, 1.0029297, 1.7705078, 1.2294922, 0.36865234, 0.2734375, -1.2041016, 1.2958984, 1.7880859, -0.09729004, 0.3125, 0.7998047, 0.56396484, 1.8027344, 1.0332031, 0.21508789, 1.9121094, 0.6738281, 0.04647827, -2.0527344, -0.018371582, -1.5566406, -0.8041992, -0.44750977, -0.76708984, 2.2910156, 0.6118164, -1.6210938, -2.2734375, -1.0966797]}, "B07BFBDP5B": {"id": "B07BFBDP5B", "original": "Brand: Outspark\nName: Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel\nDescription: Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.\nFeatures: BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal\nFit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles\nSize: 12\" diameter at the base, 8\" diameter at the top, 5\" tall\nPlease check size requirements before ordering\n", "embedding": [-2.6035156, 0.35498047, 1.6376953, -1.8017578, -0.7861328, 1.0712891, 0.22155762, -0.7661133, -0.96875, -0.051513672, 1.5908203, 0.49975586, -1.0410156, -3.6972656, -0.9458008, 1.1201172, 1.640625, -1.2705078, -0.75341797, 0.3894043, 3.2597656, -0.099121094, 0.94384766, -2.8828125, 2.7988281, 0.34155273, 3.1386719, -2.5644531, 0.070251465, -1.4306641, 0.4580078, 0.5722656, -1.7548828, 1.8623047, -3.7949219, 0.4675293, -0.5722656, -0.4892578, -1.8974609, 0.9946289, -0.08380127, -0.6464844, 0.63427734, 1.7177734, -2.7988281, -1.3554688, 0.30029297, -0.98046875, -1.3251953, -1.8408203, 0.058898926, 0.022155762, 0.5102539, 1.3730469, -2.3320312, 2.8535156, -0.81347656, -1.4013672, 0.8598633, 0.2758789, 0.44189453, -0.5024414, -1.9101562, 1.5458984, -1.5556641, 0.94433594, -0.09899902, 0.33520508, 0.8520508, 0.27392578, 0.093566895, 0.24084473, -2.1621094, 0.5336914, -0.5761719, -0.19641113, -2.2734375, 0.88720703, 1.4277344, 0.6772461, -1.2724609, 1.7958984, 0.8696289, -0.8154297, -0.44848633, -0.24951172, -0.94140625, -2.2441406, 0.81689453, -0.0019931793, -0.484375, 1.1914062, -0.8618164, -3.0351562, 3.9628906, -3.7851562, -0.30419922, -0.8154297, 0.09667969, 0.76416016, -2.2929688, 0.45483398, 0.8725586, -1.4355469, -2.0195312, -0.5810547, -0.054107666, 1.1591797, -2.4003906, -1.3359375, -2.9804688, 0.7158203, 0.90185547, 0.49731445, 0.5131836, 0.9458008, 0.5131836, 0.71240234, 1.8505859, 0.5576172, 3.515625, -1.1113281, 0.0025634766, -1.0351562, 0.38671875, -0.06817627, 0.9765625, -0.37768555, 2.8691406, 0.46435547, 0.27905273, -1.6044922, 4.6679688, -0.31811523, -1.0253906, -3.4550781, -1.5039062, -1.5908203, 0.06378174, -0.28271484, -2.6933594, -0.49902344, 2.6191406, -2.6425781, -3.6074219, -1.1386719, 0.32080078, -1.6367188, 0.19580078, 0.6542969, 0.44482422, -0.7866211, -1.359375, 0.8510742, 2.3613281, -1.4130859, -0.5625, 0.98583984, -1.0244141, 1.0673828, -0.22424316, -1.2578125, -0.53027344, -0.31640625, -1.3427734, -2.6503906, 1.1230469, 0.37475586, 0.6035156, 3.3476562, 0.62939453, 1.2470703, 0.9135742, -1.7060547, 1.7246094, -1.8994141, -0.17895508, 1.6337891, 1.1796875, 0.8388672, -1.5117188, -1.6171875, -1.7128906, 1.1835938, 0.19104004, 0.047424316, -0.9091797, 1.0517578, 1.4746094, -1.9970703, 0.3840332, 0.09265137, 1.9970703, -0.7792969, 0.19250488, 0.083618164, -0.5332031, -2.2109375, 1.1396484, 1.1005859, -1.1210938, -0.6381836, 0.9042969, -1.3037109, 0.12524414, -0.7011719, -0.53515625, -0.009178162, 0.7792969, 2.4238281, 0.3569336, -1.2265625, 1.5332031, 0.5253906, -1.4960938, -0.8515625, 2.0957031, 0.2286377, 2.0332031, 1.3359375, -0.7504883, -0.34326172, 2.1542969, 4.828125, 0.40600586, 1.9023438, 0.93603516, 0.97509766, -4.2539062, -1.2724609, 3.2226562, 1.0019531, 0.062286377, -0.13806152, -0.43579102, 3.2148438, 2.6953125, -2.1015625, 0.22070312, 0.15283203, 0.57373047, -1.609375, -0.8647461, 0.59472656, -0.640625, -1.2294922, -1.3457031, 2.5859375, 1.7021484, 0.21569824, -1.4677734, 1.546875, 1.4667969, -1.8671875, -0.6582031, 0.23547363, -0.7294922, -0.63964844, -0.5175781, -2.5722656, 2.9179688, -0.10913086, -0.4128418, 1.5400391, -0.56933594, -0.25561523, 2.0976562, 2.7109375, -2.4433594, -0.90527344, 0.7260742, 0.34765625, 1.2011719, -1.2382812, 1.6191406, 1.3671875, 0.2919922, 1.4375, 2.2597656, -0.81396484, 1.0361328, -0.72265625, 0.08062744, -1.1806641, 1.2363281, -0.30371094, -0.30541992, -1.4013672, -1.1884766, 0.5151367, 4.7890625, 0.4501953, -1.4716797, 2.7265625, 0.20983887, 3.0566406, 0.8041992, -0.12695312, -0.03074646, 2.2753906, 0.74072266, 1.7099609, -1.7470703, -0.6689453, -1.4902344, 0.10534668, 3.7558594, -0.65625, 1.4414062, 1.1855469, 0.03665161, -0.6308594, -2.9199219, -1.2138672, 0.16333008, -0.8642578, 1.5869141, -1.0791016, 0.034729004, -0.89453125, 0.72802734, -0.5410156, 0.011260986, -0.26513672, 1.6708984, 2.3378906, -0.8208008, 1.8320312, 0.66259766, 0.47485352, 0.21435547, 0.001159668, 1.7900391, -0.12536621, -1.4394531, -1.5039062, -0.56591797, -2.1425781, -1.3632812, -0.42456055, 0.9760742, 2.7832031, -3.078125, -0.37426758, -0.14929199, -4.9609375, -2.2207031, -0.7661133, 0.29418945, -1.0644531, 0.19348145, 1.5800781, -2.1503906, -5.3710938, 0.17443848, 1.4921875, 2.2324219, -1.15625, -1.8291016, 1.9863281, -0.8876953, 0.37109375, -1.0585938, 0.16040039, 1.5478516, -0.052337646, -0.17785645, -2.4277344, 0.44995117, -2.4804688, 1.0820312, -1.9667969, -1.3867188, -2.9179688, -0.8417969, 0.59033203, -0.6171875, 4.0820312, 0.28735352, 3.2089844, -1.5439453, -0.24804688, 0.19519043, -0.15966797, -1.9345703, 0.66259766, -0.7397461, -1.6259766, -0.9760742, -1.3671875, -0.77685547, -2.2851562, -0.7441406, 0.6074219, 0.796875, 1.3105469, -0.79003906, -1.3193359, -0.26904297, -1.4990234, 0.11419678, -2.2421875, -1.7802734, -0.89697266, -2.3242188, -0.46313477, -2.0644531, 1.3164062, 3.1816406, 0.0051345825, 1.0527344, 2.7851562, -0.27197266, 0.5126953, 0.48364258, -1.8144531, 2.234375, -0.46655273, -1.9628906, 1.4277344, -1.7070312, -1.5068359, -1.9560547, 1.0869141, 2.7910156, -0.26660156, 3.2773438, 0.2956543, 1.0732422, -0.18115234, 0.13391113, 0.42749023, -1.5498047, 2.6113281, 2.9433594, -0.69189453, -2.3574219, 1.0537109, 1.7275391, -3.4902344, -0.9951172, 2.2480469, 1.4453125, 0.8154297, -0.3137207, 0.7167969, 0.3774414, 0.7246094, 1.0537109, 2.8613281, -1.5517578, 1.2197266, 1.0292969, 1.84375, 1.6015625, 1.2275391, 1.1767578, 1.546875, 2.0527344, 2.6679688, 1.0205078, -2.5273438, -0.30029297, 0.053100586, 2.1542969, 0.43310547, 3.4570312, -1.4794922, 0.6538086, -0.6220703, 1.6591797, 2.0566406, -0.81933594, 0.35302734, 3.0136719, -1.8076172, -0.8354492, 0.7084961, 1.0263672, 1.2275391, -1.8056641, 0.69628906, -0.7680664, -1.0029297, 0.60302734, -2.921875, -1.4863281, -2.2695312, 1.4013672, -0.3466797, -0.41577148, 1.0107422, 0.088378906, -0.34350586, -0.6191406, -0.2932129, 1.8623047, -1.2177734, 0.18896484, 0.59814453, -1.2294922, 0.3232422, -1.7421875, 0.41137695, 1.1875, -0.8076172, -1.1806641, 1.0097656, 1.3886719, 2.9355469, 0.91259766, 0.11987305, -1.0556641, 0.73779297, 0.3449707, -4.4335938, -0.85302734, 1.9414062, -4.8867188, 0.2487793, -0.096069336, -0.34179688, 0.45483398, -1.0917969, 2.1289062, -1.4130859, -0.008163452, 3.2441406, -1.5205078, 0.10620117, -1.1533203, -1.9394531, 0.72998047, -1.890625, 0.46728516, -0.24377441, 2.3300781, -0.13586426, 1.4160156, 1.3154297, -2.6054688, -1.6835938, -2.4941406, 0.31323242, -0.65966797, -0.6899414, 0.68603516, -0.85302734, -4.0625, -1.3486328, 0.5854492, 1.515625, 1.1181641, -0.03692627, -1.8125, 2.6132812, -1.0839844, 0.034057617, -2.1503906, 3.3066406, -0.98583984, -1.7802734, 0.13635254, 0.5786133, 3.078125, 0.15246582, 0.6533203, 0.17114258, 1.5429688, -0.5473633, -0.8276367, -0.8120117, 1.2490234, 1.1787109, 0.07318115, -0.7949219, 0.029724121, 0.38110352, 0.22607422, -0.67578125, 0.1394043, 0.35327148, -1.9501953, -0.54052734, -0.0703125, 0.44555664, 1.8515625, 1.0097656, -2.7265625, 0.60839844, -0.80029297, -1.6923828, -1.6269531, -0.50097656, -0.77197266, -1.2382812, 3.0644531, -0.35205078, 1.3378906, -1.0205078, 1.9228516, -1.2099609, 0.9272461, 1.8164062, 2.3457031, 3.6933594, -1.7001953, -1.8261719, -1.0380859, 0.03353882, 0.44726562, 0.65527344, 0.20983887, -0.3161621, 0.9946289, -0.5473633, -1.1240234, -1.5097656, 1.9638672, 1.6152344, 1.8720703, -1.5283203, 0.5883789, -1.3183594, 1.1162109, 2.796875, 0.9145508, 0.84375, -0.7919922, 0.20471191, 0.8461914, 1.0166016, -4.328125, 0.78759766, -0.57958984, 1.1621094, -0.50146484, 0.4855957, 2.8183594, -2.7148438, 1.0664062, -0.14343262, 1.6376953, 0.4807129, 0.40234375, 0.8334961, 1.9248047, -1.5722656, -0.26831055, 2.7265625, -0.09490967, 1.2597656, 2.6738281, 1.0166016, -2.0195312, 0.7294922, 0.8569336, -0.69140625, 1.3994141, 0.7285156, -2.0976562, 1.0351562, -0.44628906, -3.5644531, -0.5136719, 3.4335938, -0.9511719, 2.2988281, -0.60498047, -1.9121094, 1.7285156, -3.1425781, -0.8383789, -0.75927734, -0.23327637, 1.8808594, -1.4570312, -0.14001465, 0.68896484, 0.97216797, 3.5664062, -2.1464844, -2.3828125, 1.1640625, -1.0371094, -2.0429688, -1.3183594, -2.5058594, -2.8125, -0.94189453, 1.953125, 2.2207031, 0.3540039, 1.4082031, 1.609375, -0.6196289, -0.93896484, -3.2890625, -0.64160156, -2.6679688, 0.92529297, 2.3515625, -2.3828125, -0.23999023, -1.0585938, -0.72314453, -0.6010742, -0.3623047, -0.51660156, 1.1494141, -0.5810547, 1.8486328, -1.8945312, -2.2851562, -2.7324219, 1.0009766, 0.921875, -1.2919922, 0.46826172, -0.63964844, -2.1523438, 1.2978516, -2.1796875, -1.3466797, 0.33129883, 0.5395508, -0.8261719, 0.6401367, -1.2792969, -0.24243164, -1.59375, 1.2324219, 1.7792969, 0.17810059, -2.7285156, -0.92626953, 2.9179688, -1.9423828, 0.99121094, -0.18811035, -0.796875, 2.7265625, -0.07116699, 1.1083984, -1.7646484, 0.48632812, -2.1777344, 0.51123047, -0.022415161, -1.1835938, 0.9975586, -2.1210938, -0.63623047, -0.92041016, 0.29516602, 1.6152344, 0.7314453, 0.2109375, 0.15588379, -0.15625, 0.99316406, 0.022369385, -1.0175781, -0.14733887, -0.07330322, 0.8911133, -0.007575989, 1.9052734, -2.1582031, -1.5097656, 0.27197266, -1.7998047, 0.55371094, -1.203125, 1.0185547, 0.2939453, -1.2578125, 2.6972656, 1.5556641, 0.66308594, -0.546875, 0.15368652, -1.0009766, 3.2890625, 2.59375, -3.3769531, -1.1289062, -0.13366699, 0.8691406, -1.0234375, 1.4746094, -4.625, -0.42651367, -0.15148926, -0.55371094, 0.33129883, 1.2128906, 3.03125, 0.83203125, -1.7607422, 2.0195312, 2.09375, -0.17041016, 1.9140625, 1.65625, 1.3574219, -3.9179688, 4.4179688, 0.3486328, 1.2236328, 1.5986328, -1.6728516, 1.1152344, 0.89453125, -2.7382812, 2.2734375, 0.65625, -1.7294922, -1.6259766, -2.2167969, -0.35351562, 1.1611328, 0.27441406, -1.234375, -0.6850586, 0.9926758, -0.30859375, 1.1035156, 0.30151367, -0.07922363, -1.8212891, -1.1416016, -1.296875, 0.029647827, 0.95703125, -2.1757812, 1.5878906, 0.88720703, -2.0605469, -0.80126953, -0.5756836, 1.1835938, 1.1474609, -0.3713379, 2.1933594, -0.17614746, 1.4384766, 2.0371094, 0.72998047, 2.3710938, 1.3916016, -0.94921875, 1.7001953, 0.7104492, 1.3945312, 1.1318359, -1.4775391, 1.0302734, -1.5390625, 1.9570312, -0.95410156, -1.8085938, 1.6767578, -2.9941406, -0.33691406, -1.7167969, 2.65625, -2.6386719, -0.68359375, 0.58203125, -0.44360352, -1.4716797, -1.5400391, 1.1943359, 1.0507812, 0.70703125, -1.3652344, -0.1928711, 0.54833984, -4.7773438, 0.2220459, 0.84814453, -0.84814453, -0.87890625, 1.1074219, 2.4042969, 0.9667969, -1.3310547, -0.9423828, 0.7324219, -0.9370117, 1.8037109, -0.82470703, -1.7529297, 0.6879883, 0.48608398, -0.3552246, -1.8359375, 1.4814453, -1.3388672, -3.0273438, -1.515625, 0.48608398, 1.9863281, 1.3486328, 0.7373047, -1.8222656, 1.6787109, 0.57470703, 1.6494141, -0.42358398, 1.6923828, -0.04373169, -0.69433594, 0.43139648, -0.18701172, 1.7148438, 1.7851562, -2.078125, 0.10748291, 0.16772461, 0.22570801, 1.4775391, 2.4277344, 1.3193359, -0.45947266, 1.1025391, -0.99658203, 2.4980469, -0.09692383, -1.1855469, -0.21936035, 0.23852539, 1.0751953, 2.4570312, 1.8154297, -2.6289062, -0.63183594, 0.27294922, 0.44750977, 0.4897461, -0.7631836, -1.84375, -0.7026367, 0.012535095, -1.7275391, -1.046875, -0.39770508, 1.8417969, 1.3759766, 1.8251953, 0.8383789, -2.7460938, 0.84814453, 0.35864258, -0.9848633, 1.75, 0.05706787, 1.4609375, 0.14086914, -0.0028362274, 1.4316406, -0.056762695, 1.609375, -1.2773438, 0.7685547, -0.88183594, 1.1240234, -1.3232422, -0.21411133, 1.0097656, -3.5996094, 1.1953125, -2.2636719, 0.8676758, 1.0712891, 0.40307617, -0.35205078, -1.359375, -1.8330078, -0.9042969, 0.9082031, -2.2480469, 0.80078125, 3.3164062, -0.19799805, -1.3583984, 0.6723633, -1.7871094, 1.109375, -1.5654297, 1.1132812, 0.06323242, -3.6308594, 0.33007812, 1.5, 1.5371094, 0.0670166, -0.30493164, 0.23535156, -1.2724609, 2.7773438, -0.82666016, 0.52197266, -1.3085938, -1.6484375, 0.109558105, 3.3847656, 1.5214844, 1.6230469, -0.16674805, 2.8632812, 3.078125, -3.1074219, 0.06958008, 1.1855469, 1.8017578, 0.034057617, -0.9814453, -0.33862305, -0.6298828, 0.32714844, -1.2617188, -1.0898438]}, "B08VWF26NT": {"id": "B08VWF26NT", "original": "Brand: Patelai\nName: 2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch\nDescription:
Features:

Extra long design:
These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

Stainless steel blade:
Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won't stain the food residue, convenient to clean, reusable and durable for your long-term needs.

Specification:
Material: stainless steel, wood
Size: approx. 20 inches in full length
Color: as shown in pictures

Package content:
1 x Slotted spatula
1 x Solid kitchen spatula

Note:
Pointed parts include, please use it carefully and keep away from kids.
Manual measurement, please allow slight errors on size.
The colors may exist slight difference due to different screens.\nFeatures: Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire\nThickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use\n4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge\nNice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more\nMultiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience\n", "embedding": [-3.0878906, 1.1621094, 1.9072266, -0.8852539, 0.7207031, 0.4338379, 1.4404297, -0.69921875, 1.0947266, 0.05404663, 0.35742188, -0.007118225, -0.3798828, -3.3652344, -1.1054688, 2.0859375, 0.6591797, 0.4482422, 2.7070312, 3.1699219, 1.0830078, -0.16369629, -0.47265625, 0.6879883, 0.98779297, -0.3269043, 3.0839844, -2.9726562, 2.0917969, 1.2568359, 1.0068359, 0.09643555, 0.8847656, 0.9892578, -1.9287109, -0.7871094, -0.27172852, 2.6914062, 0.86376953, -1.2460938, 0.40600586, -1.3574219, 0.9399414, 1.7978516, -3.2460938, 1.8125, -1.2275391, 1.9443359, -2.5976562, -2.7558594, 0.4946289, 2.15625, -0.4025879, 1.0136719, -2.1386719, 1.625, -2.2480469, -3.7304688, 0.7373047, -3.1855469, 1.9726562, -0.08392334, -0.2232666, -0.4633789, 1.3417969, -1.6328125, -0.14123535, -2.1191406, -1.4716797, -1.0419922, -1.0888672, -0.59765625, -0.64746094, -0.5800781, -0.023040771, -2.3300781, -0.63964844, -0.0715332, -0.44750977, -0.4699707, -1.0732422, 1.1416016, 0.76708984, -2.2226562, -1.0654297, 0.34301758, -2.1777344, 1.0527344, -0.9814453, -1.3378906, -2.3476562, 1.4628906, -1.3554688, -3.7890625, 2.2597656, -0.95654297, -0.123168945, -1.1064453, 0.062438965, 1.1240234, -0.43579102, -0.90478516, 0.7709961, 0.9926758, -0.63134766, -1.6005859, 1.7626953, 1.4414062, -1.8046875, -1.0761719, -2.7597656, 1.5361328, 1.1523438, 0.3034668, -0.6489258, 0.5283203, -0.6879883, 1.0429688, 0.36547852, 2.3554688, 1.2236328, 0.6855469, -2.84375, -2.0371094, -0.041046143, 2.0820312, -1.0996094, 3.2460938, 3.6113281, -0.640625, -0.08306885, -0.22314453, 0.17260742, -1.2246094, 0.4753418, -2.4746094, -0.29223633, 0.36889648, -0.4020996, 1.6035156, -0.118774414, 0.9838867, 3.0488281, 0.70947266, -2.9394531, -0.09448242, -0.001250267, 1.4179688, -1.7988281, -2.515625, -0.1694336, -0.16516113, 0.99365234, -1.1621094, 2.5722656, -0.7324219, 1.3603516, -0.53125, 0.4663086, -0.46289062, 0.5830078, -2.203125, 0.45288086, 1.609375, 0.9428711, -2.0371094, -1.8037109, 3.1621094, 0.19189453, 1.7167969, 0.58935547, 0.40185547, 0.26220703, -0.34155273, -0.61083984, -0.6669922, 0.5097656, 1.4980469, 0.017700195, -0.28881836, 1.7285156, -4.0117188, 2.1757812, 1.7978516, 0.4519043, -0.43896484, 2.7089844, -1.4550781, 2.2695312, 0.7285156, 3.2480469, 1.1699219, 1.8935547, 0.17114258, 0.7519531, -1.6455078, -2.3339844, -1.8759766, -0.6689453, 1.0576172, -2.4511719, -2.2011719, 0.0017814636, -0.28564453, -0.72802734, 0.75683594, -1.7333984, -0.6484375, 2.0683594, 3.1757812, 2.4101562, -0.69970703, 1.4414062, -1.2734375, 0.90966797, -2.1601562, 0.7104492, -0.4580078, 2.3984375, 2.5292969, -0.7739258, 0.0017156601, -3.6015625, 4.2890625, -0.20959473, 0.120788574, -0.40795898, 2.4550781, 0.47924805, 0.4790039, 1.9716797, 0.45410156, -0.1739502, 2.1601562, 0.17114258, 0.46020508, 1.4492188, -3.7753906, -1.4980469, 1.5644531, 0.84814453, -3, 0.18151855, -1.6552734, 0.3930664, -1.1083984, -0.43530273, -0.3083496, 0.3642578, -2.125, -2.1914062, 2.1503906, 1.5087891, 1.2910156, -0.5708008, 1.0703125, -1.1806641, 0.94970703, -3.2910156, 0.31054688, 2.9667969, 0.082336426, 2.0078125, 0.5527344, 1.3037109, -0.27392578, 2.2890625, -1.6787109, -2.6464844, -1.1494141, 0.10473633, 0.47583008, 0.74658203, -1.0341797, 1.8046875, 0.91503906, -0.24511719, -0.09887695, 1.28125, 0.06567383, 0.6953125, 0.3227539, 3.4921875, -1.359375, -2.8710938, -0.2770996, -2.4140625, -1.1591797, 0.45947266, 0.54345703, 4.1875, 0.3623047, -0.87597656, 3.1191406, -0.15588379, 0.71777344, 2.6835938, 2.0292969, -1.2177734, -2.0683594, -0.068115234, 2.015625, 0.6948242, 1.0117188, -0.0637207, -0.6411133, 0.21813965, -1.5654297, -0.92041016, 1.2724609, -4.203125, 0.016403198, -0.74902344, -1.1523438, -0.6923828, 0.17675781, -1.0615234, 1.3085938, 0.18310547, -0.55078125, -1.1347656, -0.07562256, 1.5146484, -1.7246094, -0.95654297, 0.75390625, -0.0074043274, 2.7304688, 1.3671875, 0.5102539, -0.85302734, -0.33740234, -0.5708008, -1.171875, -2.4140625, -0.76660156, -2.5625, -0.48413086, 2.1972656, -0.19555664, -0.16333008, 1.6513672, -2.6503906, 0.18896484, -1.9140625, -3.5722656, -0.17602539, 0.9433594, 1.6953125, 0.10998535, -2.1425781, -0.99853516, 0.044036865, -4.375, -0.5024414, -1.4033203, 0.69921875, -1.7744141, -1.9726562, 1.0566406, -0.52978516, 0.38720703, 0.7998047, -0.31567383, 0.0236969, 1.2207031, 0.11639404, -2.4101562, 0.06994629, -1.6064453, 0.2298584, 0.56103516, 0.7050781, -2.5996094, -1.4853516, -2.0917969, 1.4677734, 2.3085938, -0.051452637, 3.0214844, -0.8154297, -0.7734375, 0.80371094, 1.703125, 2.5683594, -3.2578125, 1.0849609, -2.5214844, 0.6586914, -1.8203125, 1.5957031, -1.4121094, -0.86572266, -1.4199219, 2.3339844, -1.5175781, -0.44848633, -2.4179688, -3.4804688, -1.1533203, 0.13867188, 1.0019531, 0.23901367, 0.33691406, -0.6503906, -1.9316406, 0.13317871, -1.0957031, 0.9160156, -1.0869141, -0.60791016, 2.1503906, 0.45214844, 0.32226562, 1.1435547, -0.47436523, 0.055664062, -2.3886719, -0.13891602, -1.3789062, -0.54541016, -0.9189453, -1.1279297, -1.7636719, 2.5839844, -0.23913574, 3.5546875, -0.99121094, 1.8935547, -0.019577026, 1.7900391, -0.6435547, -0.6977539, 1.4404297, 1.3232422, -0.234375, -0.0362854, 1.4765625, -0.29663086, -2.4335938, 2.0722656, -0.32836914, 0.7192383, 1.6162109, 1.8691406, 0.8486328, 0.15515137, -3.1816406, 2.1464844, 0.2541504, -0.12194824, -2.84375, 1.5791016, 0.3383789, -2.5644531, 0.24060059, 3.1484375, 0.88671875, 1.2294922, 1.5654297, -0.35546875, -2.9980469, 3.171875, -0.56689453, 3.2695312, 0.75634766, 1.9257812, -0.5078125, -1.8017578, 1.0234375, -0.8046875, 0.5698242, -2.8242188, -0.6040039, 3.1503906, -1.4199219, -0.4699707, 0.5317383, -0.19238281, -1.5136719, -3.3632812, 1.4609375, -0.6928711, -2.3203125, -0.01007843, -1.2783203, 1.5, -0.4296875, 4.7890625, -0.8183594, -1.0322266, -0.88671875, 2.5507812, -1.9423828, -0.6640625, -2.0957031, 3.2011719, -0.32177734, 1.8701172, -0.6411133, -0.5185547, 3.8378906, -4.109375, 1.4160156, -0.9116211, -1.5419922, 0.53808594, 1.5771484, 0.2467041, 1.0595703, 0.48168945, -0.30126953, 0.27124023, -1.7451172, -0.4663086, -1.9345703, 0.30566406, 0.3984375, -3.5722656, -0.6713867, -0.39331055, -0.4116211, 1.4853516, -1.0146484, 3.5898438, 1.3076172, -3.6796875, -0.68408203, -2.1816406, -1.1796875, -0.38549805, -2.2265625, 1.4003906, 1.3046875, 0.8359375, 0.8808594, 0.61865234, -0.22521973, 7.140625, 1.2353516, -1.5849609, 1.4619141, -1.1640625, -0.24609375, -0.25097656, -0.33203125, 1.2158203, 1.2294922, 0.3125, -1.7666016, 1.5771484, -1.7685547, 2.2734375, 1.9404297, -1.2822266, -0.99072266, -3.8886719, 1.8320312, 0.5307617, -0.28198242, 0.4165039, -2.3886719, -1.0322266, -0.23754883, 0.8720703, 0.09649658, 2.1132812, -1.2314453, -0.06854248, 0.83691406, -1.3330078, -1.0273438, -0.67822266, 3.6660156, -1.4003906, 0.119018555, -1.7871094, -0.034484863, 0.06161499, -0.9404297, 0.5908203, 0.0103302, -2.2773438, 0.0748291, 1.0039062, -2.3378906, 2.8808594, 2.1835938, -2.7617188, -2.8691406, 0.53271484, -1.9824219, -0.8334961, -0.3527832, 0.28564453, 0.38671875, 0.15942383, -1.0810547, 1.5908203, -2.7480469, 0.28857422, -0.7753906, 1.5224609, -0.6376953, 0.5336914, 4.96875, -1.7050781, -1.0527344, 0.032409668, -2.4589844, -0.83154297, -0.8310547, 0.7207031, -0.2939453, 0.8671875, 0.61621094, 1.03125, 0.28393555, -0.53027344, 0.62353516, -0.3125, -1.6796875, 2.9414062, -0.88671875, -1.3408203, 0.97802734, -0.29541016, 1.8740234, -0.11187744, 0.9165039, -0.1027832, 1.2060547, -2.0351562, -0.03677368, -1.1669922, -1.5585938, 0.76904297, 2.5898438, 0.73583984, -0.54296875, -1.0341797, -0.5205078, 0.89208984, -0.37353516, -0.5341797, 2.2011719, 0.6621094, -0.8100586, 0.5239258, 1.4257812, 3.6269531, -0.6118164, 3.8671875, -0.640625, -3.171875, 2.90625, 1.6845703, -3.7246094, 0.5566406, -1.2138672, -2.9433594, 0.3737793, 0.2454834, -2.5234375, 1.7021484, 2.3574219, -1.4003906, -1.1757812, -3.8398438, -0.24438477, -1.1357422, -1.5273438, 0.7138672, -1.96875, -3.9804688, -0.115112305, 0.21472168, -1.2265625, 1.3369141, 0.14404297, 2.7363281, -1.0302734, -1.0498047, 1.2226562, -1.0585938, 1.25, -0.73095703, -3.3828125, -3.3457031, 2.2597656, 2.3203125, 1.9384766, -1.1728516, 0.21606445, 2.1503906, -0.3696289, 2.2617188, -0.7709961, 3.7226562, -0.66308594, 1.8359375, 3.8964844, -2.9472656, -1.5507812, -1.3339844, 2.8808594, 0.7285156, 2.5292969, 0.23425293, -1.4277344, -1.7041016, 0.30908203, -0.23254395, -2.4726562, 0.015701294, 0.69628906, -0.64208984, 0.54296875, -1.2119141, -0.5078125, -0.56591797, -0.8701172, -1.6884766, 1.7607422, 0.14147949, 0.33618164, -1.5224609, -1.5917969, 1.1611328, -0.7661133, -1.1015625, -0.4453125, 3.0742188, -1.7138672, -2.1074219, -0.49194336, 0.87402344, -1.4091797, -0.63623047, 1.2841797, -1.3525391, 0.51660156, -0.9916992, 0.50439453, -2.2792969, -0.4543457, 0.41870117, 0.3918457, -1.3271484, -0.30908203, 2.5996094, -2.5078125, -1.3876953, -0.10888672, -2.6582031, 2.1835938, 1.9414062, -1.0947266, 1.2070312, -0.48168945, -2.3417969, -1.0097656, -0.46850586, 0.32763672, 0.6425781, 1.3447266, 0.8847656, 0.22253418, -2.0878906, 0.012123108, -0.84375, -0.5053711, 0.74316406, -0.5810547, -0.07348633, 3.2246094, -0.71777344, -2.1757812, -0.43969727, 0.34985352, -1.3623047, 0.76123047, 0.108947754, 1.6611328, 0.5283203, -0.19018555, 0.5629883, -3.0371094, 0.90625, 0.19812012, -1.6279297, -2.4238281, 0.60595703, -1.1357422, -0.9296875, 1.1425781, -0.7426758, 1.9677734, 1.0039062, -1.6230469, -0.63623047, -0.22546387, -3.0566406, -0.49487305, 1.2978516, 1.4521484, -0.62158203, 3.1992188, -1.6259766, -2.3984375, 2.3847656, -1.0625, 1.3427734, 0.9682617, -1.2285156, -1.1035156, 0.5053711, 1.3476562, -2.0253906, -1.8710938, -2.1308594, 1.5390625, 1.1621094, -0.99658203, -2.2226562, 2.6777344, 1.3935547, 3.4785156, 2.6640625, 0.11364746, -1.1640625, 1.2412109, -0.2956543, 1.7451172, 1.6386719, -0.2290039, 0.06695557, 1.0996094, 0.18310547, -1.9833984, 0.5366211, 0.5307617, 0.80859375, 0.004501343, 1.9960938, 0.88427734, 2.9667969, 4.3632812, -0.60791016, 3.1054688, 0.4165039, 0.34985352, -1.6289062, 4.3359375, 0.17260742, -1.4003906, -1.0800781, 0.4567871, -0.76464844, 1.78125, 0.51708984, 1.1337891, -0.016311646, -1.8115234, 2.0742188, 0.96533203, -0.9404297, -1.03125, 1.0849609, -1.1132812, -0.5878906, -0.5024414, -0.014015198, 2.6914062, 1.3925781, 0.29174805, 0.27856445, -0.7553711, 1.1074219, -2.0859375, 2.4375, 1.3779297, -0.9042969, -1.7021484, 2.2460938, 1.8632812, 0.35620117, 2.5605469, -0.15600586, 1.6787109, 1.4238281, -0.121276855, 1.5390625, -1.2333984, 0.61816406, -0.46679688, -1.8613281, -0.25805664, -2.7109375, -0.5551758, -1.7949219, 0.4189453, 3.2246094, 0.20275879, 1.4511719, 2.0175781, -4.203125, 0.024291992, 0.38891602, -1.5205078, -0.22180176, 0.2084961, 1.5263672, 0.31884766, -1.5957031, 0.7895508, 0.43896484, 0.9140625, 0.5073242, -1.2148438, 0.13623047, 0.31420898, 0.54589844, 1.8203125, 0.43896484, -2.3613281, -0.33740234, 0.73095703, 3.125, -0.67089844, 1.1904297, 1.9873047, 1.3261719, 1.1152344, 0.37231445, 4.046875, -1.8232422, 1.1035156, -0.5654297, 0.19067383, -0.5498047, -0.07385254, -1.3867188, -0.077819824, -0.5161133, -2.2070312, -0.35058594, 2.6777344, 0.17565918, 2.6035156, 2.3203125, -0.6176758, -4.1210938, 1.0595703, 1.2802734, 0.24597168, -0.6586914, 0.32104492, 0.60791016, -0.56152344, -0.2783203, -0.44458008, 1.3896484, 1.0820312, -2.8964844, 0.5175781, -0.6171875, -0.43286133, 1.1884766, -1.5947266, -0.46850586, -2.03125, 0.62060547, 0.36572266, 1.4365234, 3.1582031, -0.30273438, -1.2744141, -0.92822266, 0.43139648, -0.42016602, -0.7265625, -4.0742188, -0.7363281, 3.4863281, 0.1418457, 1.1367188, 0.23547363, -0.32202148, 3.359375, -0.9838867, 1.328125, 0.09881592, -2.3730469, -1.5458984, 1.1044922, 1.4863281, 1.2294922, -2.375, -0.47680664, 0.46435547, -1.5283203, -1.2392578, 2.03125, -0.8984375, -1.828125, 0.9560547, 3.0410156, 0.61865234, -1.4755859, 2.2617188, 3.546875, 2.8027344, -2.8964844, 0.8828125, 1.8740234, 5.2421875, -0.6381836, 1.9003906, 0.39746094, -0.19177246, -0.29833984, -0.70214844, -1.6259766]}, "B085NSXPG4": {"id": "B085NSXPG4", "original": "Brand: ThermoPro\nName: ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey\nDescription: \nFeatures: Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion\nTouch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions\nHighly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14\u02daf to 572\u02daf with the highest accuracy of \u00b11.8\u00b0f/1\u00b0c and fast read times of 1-2 seconds\n6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again\nEasy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole\n", "embedding": [-3.5332031, 2.3925781, 4.8984375, 0.99316406, 0.23840332, 0.7324219, -1.0195312, 0.640625, 0.68847656, 0.2142334, 0.6308594, -0.38891602, -0.85058594, -1.2773438, 1.4423828, 0.81640625, 0.61035156, 0.8261719, 1.2587891, 2.7070312, 2.6484375, 1.9511719, -0.40698242, -1.1933594, 2.5664062, -0.36328125, 2.25, -2.2089844, -0.8066406, -1.3867188, 3.3144531, 4.0078125, 0.38793945, 0.90722656, -1.828125, -0.3581543, -0.59521484, 0.33422852, 0.27783203, -0.12451172, -0.1784668, 0.5917969, 0.024169922, 2.3828125, -3.2382812, -1.3105469, -1.2167969, 1.5058594, -2.2539062, 1.0136719, 0.4177246, 2.5449219, -2.0878906, -0.69873047, 0.75634766, 1.1396484, 1.4042969, -3.3847656, 1.5292969, 0.49951172, 0.07336426, -0.37890625, -1.7685547, 0.7114258, 0.12609863, -0.0869751, 0.08465576, -3.0253906, 0.2890625, 0.8925781, 1.2919922, 0.47338867, 0.31884766, 1.0986328, 1.0908203, -1.0712891, -0.11077881, 0.65771484, 1.7695312, 1.2216797, -0.6020508, 2.8046875, 0.3125, -1.9296875, 0.8154297, -2.0507812, 0.6274414, 0.091308594, 2.890625, -0.15429688, 0.010246277, 3.3476562, -1.8808594, -3.2558594, 2.1113281, -1.5419922, -1.1962891, -1.0166016, -1.7148438, 2.421875, -1.4072266, -0.7451172, 0.015945435, 1.4179688, -2.1757812, -1.984375, 1.0097656, 1.2519531, -3.4570312, -1.6308594, -1.4052734, 2.0449219, 0.014312744, 0.59472656, -0.8183594, 0.7285156, -0.17944336, -0.2919922, 0.47680664, 1.8144531, 1.3466797, -1.9326172, 0.6826172, -0.84228516, 0.3076172, 0.7866211, 1.9179688, -0.2824707, 0.8725586, 0.35668945, -1.3027344, -0.94140625, 0.46606445, -0.9863281, 1.6738281, -2.0800781, -2.2460938, -1.2099609, -1.7666016, -1.515625, -1.8427734, 0.9291992, -0.13134766, 1.5673828, -1.09375, -1.3564453, 0.43286133, 0.7089844, 1.6904297, -1.0771484, 2.21875, -2.1699219, -0.5004883, -0.546875, 1.9160156, 1.3417969, -0.76416016, -0.041900635, 2.9824219, 1.1103516, 0.19152832, -1.3945312, -1.6953125, -0.44750977, 1.03125, -0.4658203, -2.6425781, 1.1835938, 1.1064453, 2.78125, 1.3242188, -2.0546875, 1.0947266, -0.44140625, -0.06561279, -3.2949219, 2.9257812, 3.0039062, 1.2939453, 2.5527344, -1.1289062, -1.6445312, -0.20727539, 0.72265625, -0.16564941, -2.9882812, -1.8066406, 0.72314453, 2.40625, -2.6875, 1.7548828, 2.6269531, 0.94873047, 0.49169922, -0.25439453, -0.09716797, -1.296875, -3.1523438, 0.9399414, -0.09509277, -0.31274414, -0.7216797, -1.6416016, -2.6894531, -0.5756836, -1.3359375, 0.7285156, -0.03475952, 1.7587891, 1.3916016, 0.37304688, -1.8388672, 0.41088867, -0.5996094, 0.22546387, -2.9863281, 1.0361328, 0.23669434, -0.8833008, 1.9433594, -0.112976074, -0.91845703, 0.26000977, 3.9785156, -1.7421875, 2.3535156, -1.1992188, 0.5253906, -1.1376953, -1.40625, 3.1699219, -0.57714844, 1.453125, -1.8662109, -1.1650391, 1.8974609, 0.6748047, -1.5917969, -0.8671875, 0.81152344, -0.7260742, -2.5195312, -0.2614746, -1.3183594, -0.7631836, -0.5024414, -2.3671875, 3.1835938, 1.6787109, 0.24194336, 0.58203125, 0.0012931824, -0.38085938, -0.97802734, 0.77001953, -0.66259766, 0.32763672, 2.03125, -2.8007812, -1.2568359, 1.4619141, -0.1459961, -1.6601562, 2.7910156, 1.6494141, 0.42529297, 4.2773438, 2.46875, -0.40893555, -1.1953125, 1.4248047, -0.50341797, -1.1933594, -0.55126953, 1.875, 2.4179688, 0.5810547, 0.8803711, 1.5761719, -1.328125, 0.23742676, 2.2519531, -0.46875, -1.6269531, 1.3212891, -0.4716797, -1.9511719, -1.703125, 0.16503906, 0.46313477, 4.0546875, 0.97998047, -2.8457031, 3.0351562, -2.3007812, 1.1035156, -1.984375, -1.8632812, 1.0273438, -2.2402344, 2.5898438, -0.16772461, -1.4511719, -1.0712891, -0.06567383, 0.86572266, 1.7197266, -0.9291992, 1.7060547, 1.1962891, 0.69189453, -1.9375, -3.3984375, -0.48217773, -0.6274414, -2.8632812, -0.23242188, -2.234375, 0.73779297, -1.8007812, 2.6386719, 3.4140625, 1.3193359, -1.0576172, 1.4433594, 1.859375, -0.8613281, 0.8232422, 1.4638672, -0.08642578, 0.71728516, -1.3554688, 0.66796875, -0.36328125, -2.8125, 0.88623047, -1.5712891, -1.2402344, -0.9199219, 0.1237793, -1.953125, 2.1210938, -2.0722656, 0.6201172, -0.6010742, -1.6542969, -0.5620117, -0.8027344, -0.5390625, -1.1367188, 0.1940918, -0.61328125, -1.0683594, -2.0078125, 1.7304688, 0.64404297, -0.9428711, 0.15209961, -3.0800781, 1.1240234, -2.28125, -0.02154541, 0.67626953, 0.75439453, 0.50146484, -1.4707031, 1.5566406, -2.1425781, 0.060455322, -3.1464844, 1.46875, -1.2207031, -0.59472656, -2.0039062, 0.26489258, 0.4362793, 0.8725586, 0.94189453, -1.8369141, 2.9804688, -2.1015625, 1.7089844, 1.8916016, 2.3945312, -2.5585938, -1.7236328, -0.77441406, -1.8808594, -1.4052734, -4.4882812, 0.29101562, -0.2939453, 2.203125, 0.43676758, 0.3251953, -0.5800781, 0.5859375, -2.0234375, -3.2402344, -1.2617188, 0.70947266, -1.5380859, -0.8833008, -1.8095703, -0.12902832, -2.2050781, -2.4277344, 1.7636719, 2.3339844, 1.1220703, 3.4628906, 1.25, 0.9770508, -0.007881165, -0.6279297, -4.1445312, 2.0097656, 1.3027344, -2.6367188, -1.3623047, -0.44213867, -1.4208984, 1.7773438, -0.0043525696, 3.0175781, 1.1855469, 4.2695312, -0.81689453, 0.54248047, 0.5444336, 1.6142578, 0.47143555, -0.78271484, 2.296875, 0.12731934, -3.6035156, -2.7832031, 0.48486328, 1.2539062, 0.20581055, -2.7539062, 0.28710938, 2.046875, 4.1445312, 0.8774414, -1.6474609, -0.7993164, -2.3789062, 1.7519531, -0.8071289, -2.3476562, -2.2089844, 0.09552002, 1.578125, 1.1552734, 0.5390625, 3.7460938, 0.2607422, 1.7236328, 0.98876953, 0.5566406, -1.3837891, -1.6845703, 1.1035156, 0.9902344, 1.1269531, -0.42651367, 0.41625977, -0.4633789, 0.7963867, 0.35180664, 1.6445312, -2.1015625, -0.5205078, 0.0036258698, -0.54589844, 0.8901367, 1.0361328, -0.38671875, -0.75097656, -2.1230469, -0.3305664, 2.0039062, -1.2050781, 1.8076172, -0.3232422, -1.2666016, -0.3491211, 0.72021484, -0.32983398, 0.33642578, -1.2441406, 1.7412109, -1.3388672, -1.0136719, 0.23291016, 1.1904297, -1.0029297, -1.4541016, -0.7050781, -0.00015187263, -1.1796875, -2.7246094, 0.15991211, 1.4482422, -2.6015625, -2.6796875, -0.8359375, 1.9394531, 1.7587891, 0.086364746, -1.4501953, 0.30688477, 0.44433594, -1.0566406, -3.9414062, 0.72753906, 0.4206543, -0.40893555, 0.64746094, 0.6328125, 1.1367188, 0.38867188, -0.88427734, 1.1796875, 0.67285156, -3.1738281, 0.2775879, -2.4707031, -0.89160156, -1.5839844, -4.84375, 1.4804688, -0.4736328, 2.21875, 1.3476562, 2.0097656, 0.8095703, 2.8027344, 1.2568359, -2.0019531, -1.5048828, -0.5097656, 0.21533203, 0.34277344, -1.2314453, 5.390625, 1.3017578, -0.5097656, -1.1171875, -1.6982422, 0.5932617, 2.2460938, 1.2949219, 0.44628906, 0.3425293, -0.51171875, -0.4230957, -1.0087891, -0.08282471, -0.47631836, -0.05697632, -0.5932617, -0.84375, 2.2890625, -2.9472656, 0.75927734, -1.9023438, 3.8300781, -0.24316406, 0.24938965, -0.7470703, 1.5957031, 1.9892578, 0.35205078, -0.8232422, -0.24145508, -1.6298828, 1.1923828, 0.13500977, -0.78515625, -0.019378662, -3.5585938, -1.5810547, 0.20373535, -0.9589844, 0.7836914, 1.2880859, -1.4892578, 0.6459961, 0.93310547, -0.11907959, -1.5214844, -0.13867188, -2.8339844, 0.1586914, 0.18029785, 0.9350586, 0.8598633, -1.3457031, -0.35864258, -3.5273438, 3.5, 3.15625, 0.52001953, 3.2929688, -0.7607422, -1.3291016, -0.5908203, -0.375, 0.29248047, -0.7988281, 1.6328125, 0.08630371, 0.6586914, 1.1269531, -1.0888672, -1.5683594, 0.82470703, 1.2998047, 1.4365234, -0.36401367, 0.5029297, -1.4033203, 0.9086914, 4.2851562, 0.3137207, 3.0410156, -0.44311523, 1.9023438, -0.07128906, -1.7285156, -0.45507812, -0.019622803, 0.5131836, 0.42382812, -0.08459473, 0.058410645, 2.9472656, -1.3828125, -0.43701172, 0.013717651, -0.34228516, 1.2431641, 2.703125, 1.1259766, 1.5048828, -2.4179688, -1.9863281, 2.8632812, 2.4160156, -1.5332031, 5.015625, -0.2644043, -1.4804688, 0.20007324, 3.4414062, -1.3125, 1.4082031, -0.51416016, -1.6679688, 1.2070312, -0.56689453, -2.3496094, 0.25097656, 3.6464844, -1.0976562, 2.3945312, -1.9267578, -1.2617188, 2.9414062, -2.9296875, -0.29223633, -0.28100586, -0.10229492, 1.8388672, -1.3789062, -1.6767578, -1.1552734, 2.3867188, 1.9013672, -1.5429688, -0.55078125, 0.17736816, -2.0644531, -1.3662109, -0.044128418, -1.3701172, -2.7109375, -0.47143555, 0.81103516, 0.039489746, -1.3486328, 0.26586914, 1.8837891, -1.0087891, -0.8305664, -1.1943359, 3.3574219, -2.5429688, 1.078125, -0.4362793, 1.1630859, -1.1484375, 0.7026367, -0.97558594, -1.4199219, 1.0957031, 1.9492188, -0.9350586, -1.7138672, 0.45532227, -2.3476562, -2.6191406, -0.9223633, 1.8857422, 0.9902344, -0.8095703, -0.7324219, 0.17004395, -1.0771484, -1.1103516, 1.4384766, -0.6591797, 1.2011719, -1.015625, 0.1352539, -1.4199219, -0.5019531, -0.8979492, 0.7944336, -0.26708984, 1.1220703, -1.25, -3.2402344, -1.7167969, 0.3876953, -2.9824219, -2.8867188, 1.1337891, 2.7207031, -2.046875, 1.3671875, 0.5029297, -2.3730469, 3.2773438, -0.61572266, 1.0664062, 0.21398926, -0.25805664, 2.1640625, -2.1953125, 1.2441406, 1.1044922, -0.19177246, 0.70410156, 1.2578125, -2.8789062, 1.5166016, 0.10974121, -1.7929688, -2.1347656, -1.8720703, 0.03111267, -0.49243164, 0.18798828, -0.0715332, 1.2792969, -3.1953125, -5.5195312, -1.3828125, -1.390625, -0.6191406, -2.6640625, 0.5751953, 2.4238281, -1.1337891, 2.109375, 0.69970703, 0.9975586, -3.8808594, 0.8261719, 1.2695312, 1.2158203, 2.15625, -0.9741211, -0.034454346, -2.3007812, 0.25219727, 2.5175781, -1.0615234, -2.3164062, 0.51660156, -2.3730469, -1.2099609, 0.55029297, 2.4550781, 0.016815186, -1.3085938, 0.07519531, 0.34985352, 3.3203125, -1.8613281, 0.07611084, 0.55371094, 3.5605469, -1.1650391, 4.0664062, 0.6176758, -2.3574219, 0.57128906, -1.7480469, -0.27124023, -0.4128418, -0.80322266, 2.0292969, -1.4355469, 0.32885742, 1.4931641, -3.7167969, 0.17260742, 1.6201172, 2.9804688, 0.4814453, -1.0410156, 4.6835938, 1.9589844, -0.10797119, 1.9394531, -1.1376953, 0.7421875, -1.4775391, -1.4228516, -0.44970703, 1.8388672, -2.0019531, 0.14160156, 1.7304688, 0.93896484, -2.5703125, 2.3632812, -0.34765625, 1.6650391, 1.0263672, 2.2949219, 2.5117188, 2.3417969, 2.4960938, 0.96484375, 2.9726562, 1.1357422, -1.7392578, 0.13195801, 1.7617188, 0.14001465, 0.9511719, -1.7724609, 1.8007812, -0.7211914, 0.19812012, 0.61376953, 1.703125, -1.1542969, 1.3632812, 0.98095703, -0.3720703, 0.5839844, -3.59375, -0.23815918, -0.52783203, 1.2724609, -2.4902344, 2.5742188, 1.8417969, -0.5800781, 0.61035156, -0.69873047, 0.93896484, 1.4882812, -3.5488281, -0.14343262, 1.2265625, -1.2929688, -1.5078125, 1.0908203, 0.8383789, 1.3349609, 2.1914062, -1.1914062, -1.2792969, 0.43945312, 1.6064453, -0.38793945, -1.4980469, -0.34326172, 2.2421875, -2.265625, -0.97265625, 1.7685547, -1.1591797, -3.6015625, 0.54248047, 2.7441406, -0.68408203, 2.4472656, -2.0273438, -3.8300781, 3.0527344, 0.4543457, 0.73046875, -0.33764648, -1.0546875, 0.4560547, 0.47973633, 1.6513672, 1.1591797, -0.51660156, 1.9423828, -2.7734375, -2.3789062, -1.8261719, -0.6196289, 1.2089844, 2.1835938, 0.8652344, -0.016662598, -0.5366211, 0.64746094, 2.9824219, -0.95410156, -1.4833984, -3.09375, 1.765625, -0.47753906, 1.1542969, -0.44921875, -3.2441406, -1.9316406, -0.81933594, -2.0917969, -0.9941406, 0.26953125, 0.7104492, 0.43896484, -1.3007812, 0.87060547, 0.48291016, 1.9238281, 2.2519531, 0.78027344, 1.6689453, 1.0742188, -2.3007812, 2.1464844, 1.4804688, -1.6738281, 2.09375, -0.62060547, 1.1962891, -0.10784912, -0.21850586, -0.58154297, 0.4020996, -1.1074219, -0.050872803, 1.4414062, 2.0976562, 0.8598633, 0.3659668, 0.70410156, -1.0615234, 0.5292969, -2.2011719, -3.3105469, 0.5024414, 1.4296875, -1.2617188, -0.06097412, 0.054748535, -0.8066406, -1.4951172, 0.62158203, 0.7265625, 1.0996094, 2.6191406, 1.6005859, 0.24890137, -0.99316406, -2.8300781, -1.1992188, -1.4003906, -1.6064453, -0.2763672, 1.0205078, 0.90478516, -1.0888672, 0.94140625, 0.05307007, -1.2099609, -1.3173828, -3.1367188, 0.99560547, -2.4863281, 1.2519531, -1.3710938, 0.35107422, 0.69628906, 0.6738281, 0.83154297, 0.91748047, 3.3632812, 3.0390625, 1.453125, -2.8222656, -2.4042969, 2.1796875, 1.0644531, 0.079589844, 1.7636719, 0.19470215, -0.42871094, -0.49438477, -0.7495117, -1.1445312]}, "B01HGFBNL6": {"id": "B01HGFBNL6", "original": "Brand: Homitt\nName: Homitt HT-GC01 Grill Cover, 58inch, Black\nDescription: \nFeatures: Dimensions: This Homitt bbq cover measures 58\"L x 24\"W x 48\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new\nFading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering\nHandles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing)\n", "embedding": [0.67871094, 0.9013672, 3.0683594, -0.22131348, -1.3193359, 0.8232422, 0.5097656, -2.1601562, 1.8027344, 2.6425781, -0.10290527, -0.5078125, 0.13586426, -3.8242188, 0.70703125, -0.42260742, 2.8652344, 1.6035156, 2.9414062, -1.6728516, 2.6953125, -0.52685547, 1.0126953, 0.6074219, -0.06628418, -0.5058594, 5.0078125, -2.40625, -1.5644531, -0.85839844, 1.8339844, 0.96533203, 0.6694336, 2.6953125, -1.6972656, -1.609375, -1.453125, 1.2753906, -0.41479492, -1.328125, -1.8818359, -2.09375, 2.8339844, 3.2167969, -2.8574219, 0.5732422, -1.0693359, 1.4707031, -1.2685547, -0.5986328, 2.0273438, 2.671875, 1.0869141, 0.60009766, -1.1728516, 3.6386719, -1.2021484, -0.9121094, -0.89941406, -0.8852539, 0.90722656, -2.1230469, -0.43579102, 1.3388672, -1.3349609, 0.032989502, 1.7910156, -1.2158203, 0.4675293, 0.7817383, -0.2553711, -0.5913086, -0.5834961, 0.062286377, 0.85498047, -0.6821289, -2.2304688, 1.8125, 1.8964844, -2.296875, 0.17089844, 5.8671875, -0.8886719, -2.0605469, 0.3779297, -0.51416016, -2.1289062, -2.6523438, 2.5976562, -2.0800781, 0.1763916, 0.8208008, -2.4277344, -3.7402344, -0.43237305, -1.8632812, 2.5976562, 1.5302734, 1.4794922, 0.41601562, -0.7944336, -0.20275879, -1.1484375, 0.7167969, -1.8564453, -2.0527344, 1.0859375, -0.38232422, -0.3317871, 0.8300781, -0.9863281, 0.1583252, -0.14746094, 1.7314453, 1.8261719, 0.20581055, -1.1748047, 0.60595703, -0.16870117, 2.5527344, 2.5820312, -1.2421875, -0.21765137, -1.5488281, 1.2861328, -1.3857422, 0.053009033, 0.32348633, 3.8691406, -0.75097656, 1.1943359, -0.05227661, 1.2304688, -1.0214844, -0.69921875, 0.24853516, -2.125, -0.10076904, -2.8183594, 0.96435547, -0.24182129, -2.1132812, 2.3144531, -1.4619141, -3.2441406, -0.47338867, -1.6953125, 2.5703125, -1.984375, -3.109375, 0.7519531, -1.7822266, 0.1730957, -1.0234375, 1.2773438, -1.4394531, 1.2685547, -2.0136719, 3.0878906, 1.6640625, 3.4550781, -1.8476562, -0.21533203, 0.64208984, 3.5742188, -2.5585938, -1.2177734, 1.2089844, 0.071899414, 3.1171875, -0.0038642883, -1.3417969, 0.81933594, -0.15942383, 1.1035156, -0.22229004, 0.27075195, 1.8242188, -0.88427734, 0.9165039, -0.30419922, -1.2470703, -0.6035156, 1.0224609, -0.83935547, -1.7851562, -1.1845703, -1.796875, 0.66748047, -1.1660156, -0.48046875, -0.3244629, 1.265625, -0.07940674, -1.875, -0.8076172, -1.3974609, -1.9052734, 0.45483398, 1.015625, -0.76464844, -1.2509766, 0.16870117, -1.2216797, -2.2460938, -2.0605469, -0.6503906, -0.3071289, 0.8149414, 1.0898438, 1.0869141, -1.4755859, 2.0898438, 1.5654297, -1.3994141, 0.0413208, 2.4277344, -1.4492188, 0.9223633, 0.77978516, -0.8129883, 0.33789062, 0.97314453, 3.9433594, -1.6152344, 0.11383057, 1.7470703, 1.5908203, -1.1181641, -1.1591797, 0.28637695, 1.9511719, 0.7475586, 0.47265625, -0.92041016, 1.7714844, -0.42089844, -2.0488281, -0.5546875, 0.5839844, -1.2607422, -1.5058594, -3.2070312, -2.1132812, 0.68603516, 3.3066406, -1.2568359, 1.8359375, 2.3925781, -1.3466797, -1.1542969, 0.4658203, 1.0888672, -0.22387695, -0.30395508, 0.43701172, -0.09460449, -0.25952148, -0.9892578, -2.0351562, -0.43115234, -1.8681641, -1.5205078, 1.1289062, -0.24279785, -0.6503906, 1.9355469, 1.0498047, -2.1914062, -1.3798828, 1.2060547, 0.19396973, 0.1574707, -1.5253906, 1.6191406, 0.57714844, 0.57666016, 1.3583984, -0.05050659, -0.4711914, 0.52783203, 2.8574219, 2.5859375, -1.3427734, 0.18371582, -0.05255127, -0.50878906, -1.484375, -0.59765625, 0.4819336, 2.1894531, 0.33251953, -1.15625, 3.84375, 0.41430664, -0.53125, 0.16760254, -2.7363281, -1.5742188, 0.58203125, 0.108947754, 0.9975586, 1.0419922, 1.2167969, -0.46289062, 0.042663574, 0.19494629, -1.4082031, 0.36499023, 1.5947266, 0.6352539, -0.54785156, -0.25878906, 1.4775391, -1.6113281, -1.1533203, 1.1298828, -2.7441406, -0.5551758, -0.46191406, 0.40185547, -0.5444336, -1.0068359, -1.8037109, 0.3322754, 0.9526367, -1.8291016, 0.5600586, 1.109375, -0.07989502, 0.34765625, -1.7548828, 0.28027344, -0.91064453, -1.4277344, -2.3691406, -3.1308594, -1.7822266, 0.02684021, -1.5332031, -0.56640625, 0.10021973, -2.5117188, 2.6894531, 0.3383789, -3.3515625, -1.1738281, 0.63134766, -1.9121094, 3.0566406, -1.3974609, 0.62841797, -0.22106934, -4.1757812, 0.27734375, -0.33666992, 0.50390625, -0.11920166, -0.9326172, -0.52783203, 1.3339844, 1.1923828, 0.86816406, 1.6445312, 1.4560547, 1.2841797, 0.84765625, -3.9667969, -0.49194336, -1.3730469, -0.74072266, -2.8183594, -0.41333008, -3.3066406, -0.7519531, 1.5400391, 0.20593262, 2.5839844, 0.73876953, 1.4970703, 0.8857422, 0.5732422, 1.4609375, -0.2763672, -1.4931641, -0.7578125, 1.1679688, -1.0722656, -0.37109375, -3.6386719, -1.8681641, -1.7402344, -0.50927734, -0.24645996, -1.4941406, 0.3371582, 1.0654297, -2.9121094, -1.1171875, -1.5019531, 0.6591797, -0.42797852, 0.2878418, -0.22192383, -2.4101562, -2.6816406, -1.6621094, -0.96875, 2.4785156, -1.4716797, -0.0016593933, 0.73535156, -1.2861328, 3.0957031, -0.84716797, -5.0976562, 1.3339844, 1.3271484, 0.5917969, 0.6635742, 0.21936035, -1.4492188, -0.4345703, -0.4038086, 1.6953125, 0.051483154, -0.26757812, 1.453125, 0.16345215, 1.1279297, 0.46704102, 1.2568359, 0.050323486, 1.1220703, 2.4453125, -0.49780273, -2.0820312, 0.9921875, 0.5048828, -1.8330078, -0.1940918, 1.3515625, -0.19592285, 1.171875, 0.97558594, -0.6298828, -0.33984375, 0.3708496, 2.265625, -1.8447266, 0.84228516, 0.1463623, -0.118896484, 1.0839844, -0.44262695, 2.9042969, 2.5566406, 1.3369141, 0.8852539, 0.37182617, 0.26342773, 0.9501953, -0.5732422, 1.1572266, 1.6914062, -0.37939453, 1.859375, -1.2578125, -0.3479004, 2.9648438, -0.45703125, 1.9023438, -0.5966797, -0.15246582, 2.7265625, -1.1699219, -0.36010742, 0.6660156, 0.022628784, -0.51464844, -1.4716797, -2.0996094, -1.2705078, -1.5126953, 0.46240234, -2.109375, -2.8769531, -1.1484375, 4.734375, -0.73583984, -0.9248047, -0.97802734, 2.3808594, -2.0507812, -0.50927734, -0.24963379, 1.7050781, 0.0791626, 2.3046875, 2.4433594, -2.3320312, 1.8076172, -2.3886719, 0.58740234, 1.3935547, -1.6386719, -0.4116211, 0.6513672, -0.26586914, 0.4345703, 0.38208008, 0.07110596, 1.2910156, -0.48266602, -0.87353516, -2.4804688, -0.12237549, 1.2988281, -1.2880859, -0.18859863, 3.8925781, 0.13977051, 0.36987305, -1.8378906, 3.3183594, -0.6347656, -1.2900391, 1.2988281, -1.9003906, 0.84033203, -1.0234375, -3.90625, -0.5649414, -1.0957031, -1.6777344, 2.0976562, 1.171875, 0.46826172, 1.6845703, 1.3447266, -0.75, 0.37060547, -2.9765625, -2.9960938, -1.515625, -1.5, 1.1015625, 0.23547363, -2.1816406, -1.9208984, -1.8007812, -1.5263672, 0.97314453, -0.6953125, -1.7050781, -0.87597656, -0.82958984, 0.019332886, -1.5400391, -0.14990234, 0.07397461, 0.38354492, -0.22998047, 1.1455078, 1.2285156, -1.5556641, -0.07751465, 0.4987793, 1.9765625, -1.6171875, -1.9394531, 0.33618164, 1.3417969, 2.6640625, -1.3095703, -3.71875, -0.5722656, 0.03024292, 2.0058594, 0.3864746, -0.7265625, 0.48950195, -1.640625, 0.18371582, -0.19067383, 2.5898438, 1.28125, -0.7661133, -1.7548828, 1.7919922, -1.1699219, -1.8173828, -1.4931641, 0.32958984, -0.5253906, 0.59033203, -2.0039062, -2.3710938, 3.2050781, -1.5820312, 0.35253906, -1.6494141, 2.8867188, 0.81640625, 1.3701172, 3.0273438, -1.6826172, -0.20581055, 1.9003906, -2.4628906, -0.43920898, -1.0703125, -1.3095703, 1.1210938, -0.09680176, 0.39160156, -1.3027344, -1.0791016, -1.6054688, -0.36328125, -0.65966797, -2.1757812, 1.5996094, -0.23083496, -0.60546875, 2.4824219, -1.6533203, 2.9882812, -1.0878906, 0.2836914, 2.1054688, -1.4970703, 0.33251953, 1.6933594, 0.6015625, -0.8671875, 0.76464844, 0.6616211, -0.38476562, -0.2322998, -1.3427734, 0.65771484, 1.6386719, -2.4160156, -0.546875, 1.2070312, 1.3789062, -0.2878418, -1.4550781, 1.8818359, 2.4453125, 0.29345703, 1.4970703, 0.16271973, -1.8544922, 1.6337891, 2.2460938, -1, 0.31079102, 2.2890625, 0.6767578, 3.15625, -0.55371094, -2.9433594, -1.015625, 2.0605469, -1.5498047, 1.2246094, 0.20300293, -1.0595703, 0.8066406, -2.3203125, 0.018936157, 0.1427002, -2.1875, -0.4272461, -1.7841797, 1.890625, 0.02217102, 1.7988281, 3.4941406, -0.7416992, -3.171875, 1.6132812, 0.38427734, -1.2919922, -0.58496094, -1.0380859, -2.3261719, -1.3007812, 0.62353516, 1.4111328, 0.5830078, 1.3896484, 2.1445312, -1.453125, 1.7597656, -0.18395996, 2.5566406, -2.3613281, -1.2402344, 4.0234375, -2.7851562, -3.6660156, -1.9287109, 0.24365234, 0.6557617, 0.8388672, 2.1230469, 0.65625, -0.101379395, -0.26953125, -3.5820312, -0.3737793, -1.2841797, -0.039001465, 0.048583984, 2.2539062, -0.24536133, 0.27270508, -0.45947266, -0.32592773, 0.29003906, -0.4345703, -0.0262146, -0.7758789, -2.59375, 1.0087891, -2.3945312, -1.7138672, 2.1738281, 1.4492188, 2.1191406, 0.5683594, -3.1074219, -0.77734375, 1.5439453, -2.5664062, -0.7246094, 1.9003906, 0.84228516, 1.8261719, 0.31298828, 1.1533203, -0.80029297, 3.5976562, 0.08544922, 0.081848145, 3, 0.23779297, 0.19799805, -0.38476562, -1.7480469, 0.46240234, -1.7822266, 2.8066406, 1.140625, -2.34375, 2.1796875, 1.3798828, -1.8984375, -0.6357422, 1.6923828, 2.015625, 1.8427734, 0.6196289, -1.0917969, 0.84521484, -1.9306641, -0.69189453, -0.45263672, -3.0546875, -2.1484375, -0.54785156, 0.6411133, 2.2363281, 1.5263672, 1.2695312, -0.049591064, 2.3496094, -1.4345703, -1.046875, -0.10559082, 2, 1.6162109, -2.0390625, -0.7373047, -0.2680664, 0.6328125, 1.9980469, -0.041015625, -0.52734375, -0.51464844, -2.0644531, -1.6542969, 0.9267578, 0.3552246, 0.18017578, 0.9477539, 0.60058594, 0.95166016, 3.0683594, -0.6455078, 1.1875, 0.2109375, 1.8408203, -1.546875, 1.6074219, -0.050476074, -3.125, -1.9208984, -0.7265625, 0.15661621, -0.18395996, -0.21582031, 0.20092773, -1.4785156, -1.2451172, -1.578125, -2.5429688, -4.5859375, 0.41870117, -0.83203125, -0.13146973, -0.3798828, 2.8574219, 0.6455078, 4.09375, 1.1523438, -0.021118164, -0.4741211, -0.79833984, -1.7041016, -1.2255859, 0.43530273, -0.7988281, 0.97558594, -0.43823242, 0.32202148, -1.2871094, 0.4243164, -0.31396484, 0.8022461, 2.0214844, 2.6347656, 2.3066406, 2.0527344, 0.84472656, 0.81103516, 1.1894531, 0.29760742, -1.1259766, 0.7109375, 2.2421875, 1.3720703, 3.4042969, -0.6176758, 1.3642578, 0.87841797, -0.18701172, 0.6152344, 1.0751953, 2.0820312, -2.5253906, 1.2060547, -0.3935547, 1.0195312, -1.2685547, 0.6875, -2.0878906, -0.7109375, 0.40551758, -0.35083008, 3.1738281, 0.5263672, 0.19836426, 1.3017578, 1.6533203, 2.5644531, -2.1542969, 1.1943359, 2.4003906, -0.9941406, -2.0605469, 0.2668457, 2.3964844, 1.390625, 0.77197266, -0.8574219, 2.2226562, 2.4511719, -0.34399414, -1.1152344, 0.9941406, 0.31152344, 1.3544922, 0.3227539, -1.5976562, -1.6035156, -0.09277344, -1.5507812, -2.5839844, 0.58935547, 1.2900391, 1.5361328, 0.8515625, -4.6875, 1.0507812, 1.1767578, 1.9794922, -0.7158203, -0.5078125, -1.15625, -1.2070312, -1.2744141, 1.2207031, -1.9746094, 1.2158203, 0.17687988, -2.2148438, 3.2910156, 0.82177734, 1.3466797, 1.0761719, 1.6074219, 0.51220703, 2.046875, -0.3461914, 1.4980469, 1.1787109, 0.17700195, 0.6567383, 2.4121094, 1.1865234, 1.1025391, 2.46875, -0.7890625, -0.08416748, 2.4316406, 2.1308594, 1.5546875, -0.5258789, -1.6669922, -0.9580078, 2.4316406, -0.63671875, -2.1601562, 2.7480469, 2.1445312, 0.24475098, 1.9580078, 1.3730469, -1.6044922, 1.8730469, 1.0341797, -0.29370117, -0.32373047, -0.63183594, 0.8232422, -0.58740234, -1.1386719, -0.9213867, 2.1191406, -0.101989746, -2.6347656, -0.55859375, -0.31640625, -0.08691406, -0.7138672, 0.6245117, -0.5761719, -1.0751953, -0.6386719, -0.016189575, -0.4675293, 1, 2.0585938, -2.3515625, -1.8447266, -2.2402344, -1.0654297, -0.4519043, -2.4003906, 2.3242188, 3.9863281, 1.4648438, -1.5820312, -0.96435547, -1.2675781, -0.9916992, -1.6679688, 1.5390625, 0.66308594, -0.21105957, -0.078308105, 0.77783203, 1.3261719, -0.70654297, -2.2578125, -0.67333984, -1.6621094, 1.8535156, -1.8310547, 1.2568359, -1.6933594, 0.20935059, -0.07531738, 1.8964844, 1.734375, 0.18127441, 0.8564453, 2.7167969, 0.42333984, -2.6621094, -0.17736816, 2.4238281, 1.765625, 0.66503906, 1.390625, 1.1523438, 0.8828125, -0.15283203, -1.6787109, -0.9941406]}, "B078964VVX": {"id": "B078964VVX", "original": "Brand: Westinghouse Outdoor Power Equipment\nName: Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant\nDescription: \nFeatures: 7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob\nIntuitive Control Panel Features Two GFCI 5\u201320R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety\nPlug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User\u2019s Manual To Get You Started Right Out of the Box (Minimal Assembly Required)\nPowered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter\n", "embedding": [-0.2788086, 0.023712158, 0.5805664, -0.42138672, -1.03125, 0.38476562, 3.6425781, -0.07678223, -2.7675781, 0.4128418, 0.65283203, 1.4892578, -0.07897949, -4.4726562, -2.2382812, -0.078308105, -1.4208984, 0.40576172, -0.10015869, 1.4150391, 0.6982422, -0.32983398, 2.3847656, 0.15393066, 1.7207031, 0.38110352, 2.9746094, -2.8496094, -0.5605469, -0.41992188, 1.0859375, 0.27539062, -1.3183594, 1.7177734, -2.515625, 1.9208984, -0.13049316, 1.9775391, -1.6201172, 0.5102539, -0.7841797, 0.9790039, 2.8183594, -1.0830078, -1.3876953, -0.87158203, 0.8076172, -2.7480469, 1.6875, 1.4609375, 1.1455078, 1.0839844, 0.3474121, 0.45507812, -0.057769775, 1.6660156, -0.0022354126, -2.1171875, 2.2773438, 1.7587891, 2.0175781, -0.11968994, -1.3173828, 0.4580078, 0.1739502, -1.71875, 0.92041016, 1.4560547, -0.4260254, 0.109436035, 3.5507812, -0.31445312, -0.6904297, 0.21130371, -1.2685547, 0.8051758, -4.4960938, 1.0507812, 2.9453125, 0.1854248, -2.1484375, -0.72314453, 0.6582031, -2.1015625, -0.17480469, 0.5966797, -1.5390625, 0.8227539, -2.1933594, 3.0195312, -2.7851562, 2.140625, -4.1484375, -3.2539062, 2.0488281, 1.1943359, -1.5361328, -0.19580078, 0.9863281, 2.1523438, 1.9082031, 0.3684082, -0.7104492, 0.6411133, -2.1640625, 1.0185547, 3.0605469, 0.1574707, -1.0732422, 1.1738281, -1.2539062, 0.011100769, 0.5957031, -0.14685059, -1.1728516, -1.0869141, 3.0878906, -1.4072266, 4.375, 2.3828125, 2.9472656, -1.2314453, 2.8242188, 0.16369629, 0.54345703, -0.6386719, -0.9794922, 1.3818359, 2.8730469, -0.65234375, -1.0009766, -0.9746094, 1.5957031, -0.99072266, 1.1269531, -0.9291992, 1.8603516, -2.3105469, -3.9394531, 0.6894531, -1.1748047, 1.1035156, 1.5810547, -1.2675781, -3.875, -1.9394531, -1.6367188, -0.45385742, -2.0917969, -1.6513672, 0.4560547, -2.8378906, -0.5107422, 0.02130127, 1.6083984, 0.9033203, -0.5151367, 0.9711914, 1.2402344, 0.26757812, 0.99316406, 0.20422363, -0.105651855, -0.49023438, 1.3447266, -1.6523438, 2.0859375, -0.91064453, -0.08319092, 0.029418945, -1.4892578, -1.7558594, 1.7197266, -1.2783203, 0.09362793, -1.0341797, -2.390625, 0.8105469, -0.12792969, 0.30322266, 0.34692383, -0.28857422, -0.6616211, -0.3569336, 0.023742676, -1.8496094, 1.0244141, -1.2119141, -1.2714844, -3.2460938, -1.5117188, -0.6069336, 0.4428711, -1.5498047, 2.0234375, -3.7734375, -2.7753906, -2.4160156, 2.0488281, 1.1572266, 0.53515625, -0.47680664, 2.7089844, -0.16503906, -2.9199219, -3.7070312, 0.20214844, 0.26513672, -0.15209961, -0.5385742, 0.22521973, 1.1679688, 2.5351562, -0.18652344, -1.7802734, -2.9414062, 0.57177734, 0.28076172, -0.4169922, 0.8417969, 0.16064453, 0.021453857, 2.7929688, -0.5566406, -0.50097656, 1.6865234, 0.19030762, -0.5239258, -1.7441406, -1.7578125, 1.1826172, -0.116882324, 0.45288086, -1.015625, -0.9995117, 1.9375, 1.1142578, -0.7026367, 1.4658203, 0.45385742, 0.13513184, 0.41552734, 1.1962891, 2.3222656, -0.5053711, -1.0175781, -2.1699219, 1.875, 0.40795898, -1.3017578, -0.86279297, -2.7324219, 0.48364258, -0.7006836, -0.73535156, 1.0292969, 0.13964844, -1.3779297, -0.79541016, -2.6972656, 1.5429688, -0.4165039, -0.33276367, -0.23400879, -1.5146484, -2.8085938, 0.42333984, 1.0839844, -1.4140625, 0.36791992, 1.3886719, 0.36694336, 1.0800781, 0.34936523, 0.44604492, 0.7661133, 1.2109375, 2.4296875, 1.7265625, 0.41625977, -1.0185547, -1.3232422, -0.04067993, -0.37329102, -0.8769531, 0.85498047, 1.0615234, 0.72265625, -2.0820312, 2.0917969, 2.5878906, -2.265625, -6.0390625, 2.6523438, 0.42285156, 2.265625, 1.9785156, -0.90625, 2.2382812, 0.5996094, 1.4707031, 0.5126953, -0.8535156, 3.0332031, -0.43676758, 1.7949219, -0.3190918, -3.9082031, 1.5, 1.2011719, 0.035888672, -2.0136719, -0.004890442, 1.7978516, -3.0058594, -0.090148926, 1.3710938, -2.7910156, 2.4648438, 0.15112305, -0.4182129, 1.1015625, -1.9287109, -0.42993164, -0.26904297, -1.1328125, 1.6884766, -1.0107422, -0.88964844, -2.3984375, -1.4873047, -1.1621094, 0.20300293, -2.1992188, -0.3605957, 0.25170898, -1.2304688, -1.8388672, 2.9101562, -0.27001953, 1.7490234, -0.8120117, -2.1464844, -1.1552734, 1.625, -2.2089844, 0.109436035, -1.9658203, -1.8964844, -0.73535156, 1.7314453, 3.5898438, 0.15441895, -2.5507812, -0.7871094, 0.6489258, 0.8354492, 2.3632812, 0.31933594, -0.09552002, 0.099731445, 1.2050781, -0.14453125, 0.38134766, 0.80322266, -0.88378906, 0.50927734, -4.2929688, 3.0976562, 0.57421875, 0.0758667, -1.1513672, 1.1552734, -1.2636719, -0.33325195, 1.7324219, -0.3125, 5.515625, 0.52001953, 2.9082031, 0.31518555, -2.3632812, -0.059326172, -2.8085938, -0.10723877, 1.34375, -1.7802734, 0.5761719, 1.9882812, -2.2519531, 2.2519531, 0.53271484, -2.390625, 0.8300781, 0.37573242, -0.08654785, -0.7861328, -1.4746094, 2.375, 2.1074219, 1.0917969, 0.3623047, -1.4082031, -3.4628906, -1.1591797, -1.0244141, 0.7084961, -0.9682617, 0.48754883, 2.1015625, 0.6152344, -0.022903442, -0.39013672, -1.8818359, 0.4465332, -3.1269531, 3.5136719, 3.9375, -1.5234375, 2.5234375, -2.5019531, 0.52197266, -3.5117188, 0.097351074, 4.0429688, 0.50146484, 2.171875, -0.45043945, -1.1738281, -0.024353027, 4.7304688, 0.21582031, -1.9306641, -4.4492188, 3.6679688, -1.9794922, -0.45385742, 1.8173828, 0.8071289, -2.6171875, 0.021774292, 2.1542969, 2.5351562, 3.5800781, 1.3925781, 1.4462891, 1.5839844, -0.53808594, 0.55810547, 0.08129883, 0.56933594, -0.6503906, -1.8115234, -0.24353027, -1.4814453, 0.5517578, -0.48999023, -0.41748047, 0.6113281, 1.5087891, 2.2851562, 0.34277344, -0.91015625, 0.17858887, -0.43188477, 3.5917969, 2.0820312, -1.2197266, 1.8349609, -0.8432617, 0.7089844, -0.0127334595, -1.5332031, -0.11755371, 2.3730469, 1.8105469, 1.2109375, 0.17260742, -1.2597656, 0.43286133, -1.0625, -0.4008789, -2.8027344, -1.3398438, 0.76953125, -1.8574219, 1.3564453, -3.3535156, -1.7851562, -0.71435547, 0.66308594, -0.4477539, -0.16345215, -1.3339844, -0.4309082, -1.1132812, -2.6035156, -0.4885254, 2.5234375, 0.8105469, -0.49975586, -0.5097656, -1.5771484, 1.7236328, -1.0507812, 0.4453125, -0.41992188, 0.52246094, -2.3710938, 0.43701172, -0.63183594, -0.2705078, -0.04534912, -1.8486328, 1.3896484, 1.1289062, -0.78564453, 1.4882812, -2.2675781, 1.6132812, -1.6025391, -0.48413086, 2.9785156, 1.0380859, 1.1669922, -2.1269531, 2.484375, 2.6191406, -0.85058594, -0.4350586, -3.5644531, -2.0058594, 0.15319824, -0.80859375, -0.95458984, 2.6113281, 1.2939453, 1.1201172, -1.2587891, 0.38061523, -1.5087891, 0.12878418, 0.5180664, 0.70947266, -1.8867188, -1.2509766, -1.0869141, -1.2900391, -1.9072266, -1.4287109, 0.44335938, 0.27612305, -0.61083984, -0.3540039, -0.32202148, 4.6523438, -0.70458984, -2.4355469, -1.1386719, -0.13830566, 1.9404297, -0.7763672, 0.50439453, -1.7236328, 0.19714355, 0.64941406, -1.9101562, 3.5, 2.9941406, -0.037841797, -0.94091797, -0.17504883, 2.7792969, 0.5180664, -0.3269043, -2.1230469, 0.1451416, 2.5019531, 0.7583008, -1.7216797, 0.13537598, 0.72314453, -1.0732422, -1.0185547, 0.90966797, 0.7636719, 0.14294434, 2.5683594, -2.046875, 0.9916992, 1.0966797, -1.2158203, -1.6679688, -2, 1.2636719, -3.0175781, 0.59814453, -0.85498047, -0.8823242, -0.4116211, 0.43188477, -1.7558594, 4.1679688, -0.11444092, 1.3779297, 1.2148438, 0.9165039, 0.86035156, 0.32958984, 3.3359375, -0.34936523, 1.0498047, 0.65283203, -0.1932373, 1.1191406, 2.1914062, -2.1972656, -1.7958984, 0.5620117, -0.7739258, -0.72216797, -1.1123047, -0.66308594, -0.5288086, 1.0742188, 0.07965088, 0.12188721, 1.0869141, -1.0986328, 2.1621094, 2.0273438, 0.46801758, -3.3144531, 0.2927246, 1.1005859, 0.40063477, 2.0976562, -0.91259766, 1.7275391, -0.34301758, -0.6269531, 2.4414062, 1.7197266, -2.3789062, 0.35913086, 0.18786621, 1.2490234, -0.10107422, 0.55371094, 0.45458984, -1.5566406, 2.140625, -0.5253906, 0.5078125, -1.5107422, 1.5839844, 0.32836914, -2.7148438, -0.47314453, 2.5351562, -0.7402344, 1.3173828, -0.6958008, -0.52978516, 0.13256836, 1.8701172, -0.1340332, 0.15625, -0.19165039, 0.4345703, -0.87402344, -1.8310547, -0.4633789, 1.1484375, -0.5078125, 0.5419922, -3.0136719, 0.8540039, -2.7441406, 1.6367188, 0.6586914, -0.5961914, -0.3479004, 1.6005859, -0.76416016, -0.020828247, 0.29638672, -0.2331543, -5.5117188, 0.03125, 0.9482422, 2.5058594, 1.5107422, 2.890625, -1.7490234, -0.9165039, -1.1435547, -1.2373047, 1.5751953, -1.4882812, -1.0820312, -0.72753906, 2.046875, 1.2861328, 0.57910156, -2.6367188, -1.0585938, -0.8173828, -0.5253906, -0.5185547, 1.625, 0.114868164, -1.1367188, -4.453125, -2.5273438, 0.41723633, -0.35595703, 0.8720703, 0.8364258, -3.4824219, -1.0029297, 1.9433594, -0.31323242, -1.2197266, 0.91552734, -1.2792969, 1.6494141, -1.0380859, -1.0029297, -1.9570312, -0.014129639, 0.42504883, 0.9477539, 2.6113281, -2.5976562, -3.0800781, -0.57910156, 3.6210938, 1.4375, 1.5351562, -0.94970703, -0.06149292, 1.7617188, 0.92285156, -0.94677734, 0.57373047, -3.1035156, -2.328125, 1.5488281, -0.5776367, -1.6816406, -0.8300781, -2.3027344, 1.4541016, 0.7441406, 2.3417969, 1.8320312, 0.98779297, -2.9199219, 0.66259766, 0.9980469, -1.9316406, 0.51660156, 1.015625, 3.2304688, -0.27416992, -1.0732422, -0.9526367, -1.4257812, -0.96972656, 0.8129883, -2.3789062, 0.3408203, 2.1171875, 0.32836914, 0.54833984, 3.0253906, -1.2851562, -1.3916016, -1.6152344, 0.5751953, -0.15075684, -2.2773438, 2.9121094, 0.1796875, -1.7011719, -2.421875, 0.72021484, 0.3671875, -0.84765625, 3.0722656, -1.1914062, -0.69970703, -1.9140625, -0.21325684, -2.0488281, 2.4140625, 2.4355469, 1.1826172, -1.3974609, -1.1318359, -0.09979248, 1.2832031, -1.0556641, 2.6855469, -1.8388672, -1.2001953, 0.97216797, 0.42944336, -0.23059082, 0.023620605, -1.6132812, 2.4101562, 0.35742188, -2.8554688, 0.4482422, -0.57177734, -1.1279297, -1.1455078, 0.33154297, -2.4824219, 0.06341553, 0.40795898, -0.9916992, 0.72314453, 0.01285553, -1.6201172, 0.45458984, 1.0947266, 1.0615234, -2.4511719, 0.39208984, -0.6635742, -0.10614014, 3.1464844, -2.9414062, 1.6396484, 0.0703125, 1.4013672, -0.6464844, 0.53808594, -0.7084961, 2.7089844, 1.6279297, 0.09515381, 0.59033203, 3.1347656, 1.1894531, 1.9169922, -0.96533203, 1.8603516, 1.0136719, 0.6118164, 1.5117188, 0.95703125, 1.4384766, -3.2304688, 0.13793945, -1.1689453, -0.7182617, 0.026184082, 0.4567871, 1.6933594, -4.2382812, 0.013572693, -0.35424805, 2.1035156, -2.3652344, 1.3779297, 0.072387695, -0.7192383, 0.79003906, 1.6113281, 2.5605469, 0.3269043, -1.2763672, -0.22583008, -1.09375, -0.83496094, -0.5185547, 0.7397461, 0.03237915, 0.92089844, 0.71484375, -0.9863281, -1.6982422, 0.86621094, 1.2324219, 1.5205078, 2.0664062, -1.9453125, 0.5649414, -3.0585938, 1.6513672, 0.5058594, 5.3671875, 4.03125, 1.2460938, 1.4931641, 1.7871094, -1.1757812, -1.8076172, 1.1259766, 1.7412109, -0.74902344, 0.47338867, -2.984375, 0.23815918, -0.08782959, 1.4199219, -2.1289062, 2.3046875, -0.82128906, -2.0761719, -0.17053223, 0.9526367, 0.10784912, 1.5126953, 1.2587891, 1.4443359, 1.7734375, 2.9902344, -1, 0.16467285, 0.052368164, -0.75927734, 0.8857422, 0.78271484, 0.56103516, 0.55126953, -2.2050781, -1.1474609, 0.40966797, 1.3876953, 0.57666016, 1.0166016, -2.4296875, 0.81396484, 0.5727539, -1.9716797, 0.35107422, -0.6459961, -0.3515625, 0.1998291, 0.14575195, -0.87646484, -0.1451416, 1.9013672, 2.8339844, -0.8535156, -1.0419922, 0.8642578, 1.9541016, 1.0898438, -1.0107422, -0.57470703, -2.109375, -2.890625, -0.32666016, -1.3183594, 1.6435547, -0.82714844, 0.12670898, -0.7246094, -3.3730469, -0.5649414, -1.1845703, 0.5810547, -0.9277344, 2.1054688, -1.2451172, 0.014373779, 1.6279297, -0.57177734, 2.0566406, 2.953125, -1.0087891, 1.7792969, -2.2285156, -2.7050781, 0.84716797, -2.7460938, 1.1162109, 2.3203125, 0.68847656, -0.31274414, 0.7089844, -3.6035156, -1.5732422, -2.4980469, -2.4785156, 0.4387207, 0.23376465, -1.3330078, -0.6401367, 0.671875, 1.2041016, 0.7211914, -1.1132812, 0.5083008, 0.036895752, 0.5083008, 0.7392578, -1.6679688, 2.0625, 1.2666016, 1.0546875, 0.82910156, 2.6289062, 0.82470703, 0.50146484, 3.0078125, -1.4619141, -1.3125, 0.8154297, 0.22338867, -0.5629883, -1.2626953, 0.23986816, -0.033966064, 1.7675781, 0.22143555, -1.2412109, -3.6386719]}, "B07Y8CCDBP": {"id": "B07Y8CCDBP", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door\nDescription:

Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

Specification:

  • Forge Type: Double Burner Forge With One Side Door
  • Burner: Double Burner
  • Burner Nozzle Material: SS-304
  • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
  • Forge Internal Dimension: 5.4\" (H) x 5.4\" (W) x 18\"(L)
  • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
  • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

Connection Kit:

  • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
  • 5 ft. (2 Meter) gas hose pipe
  • 2 hose clamp

Product user manual & assembly instruction provided with packing.

\nFeatures: Double Burner Single Door Propane Forge Furnace with 2600 degree capacity\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nlined by 1\" thick high density ceramic fiber blanket\nReduce fuel consumption\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "embedding": [-0.64501953, 1.5820312, -0.3388672, -1.0898438, -0.3239746, -0.10571289, -0.119018555, -2.1132812, -0.4074707, 1.4628906, 1.4208984, 0.41186523, 0.72021484, -2.6074219, -0.101745605, -0.90771484, -1.0029297, 0.18640137, 1.0136719, 2.7773438, 1.9726562, -0.31298828, 1.8916016, 0.17468262, 1.2792969, -0.10559082, 3.0390625, -3.8457031, 0.4494629, -0.34448242, -0.0017623901, -0.7270508, 0.37109375, 1.0244141, -2.7753906, -0.2980957, -2.0253906, -0.3737793, -1.5146484, 0.25073242, -0.051513672, 0.47387695, 2.3320312, 0.7470703, -3.2597656, 0.91845703, 0.9345703, -0.019744873, -1.3369141, 0.3935547, 1.0166016, 0.5683594, 0.8911133, 1.3828125, -2.6542969, -0.08337402, -0.7714844, -2.2226562, 3.3554688, 0.024398804, 1.8818359, 0.33569336, -1.6738281, 0.44433594, -1.3144531, 1.1230469, 0.91845703, -1.2470703, -0.35083008, -0.16491699, 0.22961426, 1.6533203, 0.8647461, 1.0117188, 1.8193359, -1.328125, -1.46875, 2.4804688, 2.21875, 0.16088867, -0.9189453, 0.74609375, 0.9477539, -0.9848633, -0.49560547, 0.14660645, -0.3408203, -0.3774414, 1.2363281, 2.7089844, 0.32739258, 0.38964844, -0.90771484, -5.53125, 1.3691406, -1.6748047, 0.8071289, 1.0039062, 0.2244873, 2.7148438, -0.66845703, 0.1899414, -1.6132812, 0.85009766, -2.1894531, -0.3173828, 0.4729004, 4.0390625, -0.48266602, 1.046875, -1.8271484, -0.66845703, 1.3408203, -0.19946289, 0.23266602, -1.3330078, 0.80371094, 0.16040039, 2.6484375, -0.9555664, 2.234375, -1.2578125, -0.21240234, -1.2744141, 0.09118652, 2.2949219, -0.32885742, 1.4658203, 3.515625, -2.6386719, -0.43164062, -1.1220703, 1.1269531, -0.77978516, -1.6484375, -0.2602539, -0.7963867, 0.13110352, -4.4804688, -0.4699707, -0.7084961, 2.1542969, 0.15734863, -2.7480469, -2.4042969, 0.875, 0.059906006, 1.1464844, 0.05859375, -1.5517578, 0.18359375, -2.1035156, -0.91064453, -3.0820312, 1.6201172, 0.79833984, 0.27368164, -2.1367188, 2.984375, 0.47680664, -0.3017578, -0.33325195, 0.6386719, 2.3027344, -3.109375, 0.6035156, 0.31079102, 1.296875, -2.0488281, 1.203125, 0.5385742, -1.8046875, -0.032440186, -0.34521484, -0.5859375, -2.0976562, -0.48657227, 2.0820312, 1.734375, -0.88378906, -2.6269531, -1.6660156, 1.0214844, -0.16210938, 0.48950195, -0.84375, 2.2109375, -0.71972656, -0.9243164, -0.2668457, -2.1328125, -0.9658203, 1.9804688, 2.1386719, 0.72216797, -1.1552734, 0.6855469, -2.7324219, 1.9501953, -2.2695312, -2.5898438, -2.2304688, 0.12841797, 1.1113281, -3.4960938, -0.90966797, 0.5361328, -0.2578125, 3.1035156, 1.4902344, 1.0947266, -1.0410156, 0.10534668, 0.5991211, -0.021011353, -4.140625, -0.37524414, -0.3947754, 1.0839844, -1.5693359, 0.07849121, -1.6474609, 0.89941406, 1.4921875, 4.1523438, 2.2851562, -0.5214844, 0.37719727, -2.2070312, -0.6430664, 3.125, 2.0625, -2.8183594, 1.5332031, -0.9423828, 2.609375, -0.6381836, -2.0039062, 1.6416016, -0.06188965, 1.1552734, -1.6884766, -0.46313477, -0.5527344, -0.44873047, 0.5722656, 0.07836914, -0.6411133, 1.2841797, 0.0154800415, 0.8125, 1.0166016, 1.5390625, 3.3886719, -0.6977539, 0.38330078, 1.2177734, -1.203125, -0.80810547, -2.7558594, 1.3720703, 0.15539551, -0.92871094, 0.8105469, 1.2099609, -1.4169922, -0.43798828, -0.7338867, -1.5029297, 1.6464844, 1.2958984, 0.86083984, 2.4648438, 1.6318359, 1.2714844, 1.9140625, -1.5263672, 2.5195312, -0.5629883, 1.9072266, 0.10412598, -2.2851562, 1.84375, -1.3447266, 0.60253906, 0.76464844, 3.6894531, -0.6269531, -0.84765625, 2.0761719, 5.5546875, -1.4980469, -1.5332031, 3.4082031, -0.9199219, 0.5419922, -0.85791016, 2.6367188, -0.35327148, -1.6210938, 1.6337891, 0.80615234, 1.3251953, 0.5625, -1.5966797, 0.2290039, 2.2382812, -0.6635742, 0.023605347, -0.074523926, 1.3847656, 1.0673828, -0.3894043, 1.4326172, -2.9726562, -1.0419922, 1.4873047, -2.3222656, 2.1582031, 0.40429688, 0.4543457, 1.8144531, 0.7241211, 0.49560547, -0.09039307, 1.3955078, -0.023757935, 1.3232422, 1.0917969, -1.6669922, -1.7392578, -1.2949219, -1.2607422, -1.3447266, -0.20239258, 0.7705078, 1.1035156, -1.5488281, 1.1621094, -0.8852539, 1.1044922, 0.13696289, -2.0351562, -0.13110352, 0.19116211, 0.0074882507, -1.3945312, -0.8642578, -0.9550781, -1.1513672, 2.2558594, 3.1796875, -2.8066406, -3.1679688, -2.1113281, -2.0332031, -1.3505859, 0.13305664, -1.3583984, 1.7001953, -0.54345703, -0.36914062, 0.5390625, -0.7138672, -0.17749023, 0.058166504, 0.6845703, -3.0234375, 0.6591797, 0.097717285, -0.9868164, -0.24902344, -0.85595703, -0.53027344, -0.68359375, -0.43530273, -1.0605469, 4.0039062, 1.0439453, 1.8125, -1.0361328, -2.3964844, -1.5322266, -0.8984375, -2.0546875, -0.41601562, 0.33691406, -0.5004883, -2.3808594, -3.1113281, -0.0072021484, -0.4802246, -0.8286133, -0.3630371, 1.5859375, -0.9291992, 0.75878906, -1.4589844, -1.5039062, -0.05130005, 1.0957031, 1.3037109, -1.7685547, 0.049316406, -1.6826172, -1.3154297, -1.0224609, 0.66015625, 1.0097656, -1.1914062, 0.17651367, -0.6972656, -0.27490234, -1.6699219, 1.2822266, -1.6992188, 0.9482422, 1.6923828, -2.5644531, 0.5175781, -1.3632812, -0.03717041, -0.76464844, -1.0683594, 3.890625, -0.3527832, 0.77197266, -0.87939453, -0.40429688, 0.83691406, 2.6777344, -0.7104492, -2.4707031, 0.9038086, 1.5595703, -2.9003906, -0.67822266, 0.91796875, 1.4990234, -3.4394531, 0.32373047, 2.9746094, -0.16625977, 1.0341797, 1.8994141, 0.5517578, 0.9995117, -1.8388672, -0.040039062, 1.2080078, -0.23547363, -0.59033203, 0.3708496, 0.068237305, -0.091308594, 0.33251953, 2.2011719, 0.8959961, 3.2871094, 3.375, 2.0839844, -1.6210938, -1.5625, -0.53271484, 0.097473145, -1.6962891, 2.0859375, -1.0429688, -0.92041016, -1.3505859, 0.13879395, 1.5146484, -2.2578125, -1.2021484, 1.2080078, -1.1523438, 0.30126953, -0.7866211, 1.5380859, -0.47216797, -1.5302734, 1.4394531, -0.04574585, -1.4785156, 0.93652344, -0.04196167, 1.4873047, -1.7617188, 1.7636719, -0.014640808, 0.080322266, -1.0263672, 0.70996094, -0.9448242, -0.4650879, -0.27685547, 0.29223633, -1.1904297, 2.2050781, 1.4990234, -0.06530762, -1.0292969, -1.5458984, 0.42333984, -1.3359375, 0.23669434, 0.6645508, -1.7714844, -0.27246094, -0.7441406, 0.34106445, 0.051483154, 1.5595703, -0.28320312, 0.9921875, -1.5869141, -0.36914062, -0.4970703, -2.3085938, -0.6635742, 4.421875, -1.2050781, -0.123535156, 0.3190918, 3.2441406, -1.3232422, -0.89501953, 0.9477539, -2.9765625, -0.59228516, 0.26245117, -2.6484375, 0.68652344, -0.26733398, 1.3388672, 2.9433594, -0.8041992, 0.88916016, 3.1054688, 0.115112305, -4.2148438, -2.1308594, -0.010627747, 1.2705078, -2.1425781, -3.6113281, 0.76171875, -1.6318359, -1.4628906, 1.8828125, 2.0449219, -0.8383789, 1.5029297, 1.1337891, -4.15625, -0.6796875, 0.8183594, 0.4038086, 0.7739258, -2.1796875, 0.9121094, -0.24645996, -0.27368164, -2.0566406, 1.5771484, 0.5678711, -0.47753906, 1.3642578, 2.7734375, 1.515625, -1.5527344, 0.25927734, -0.28076172, 2.0625, 0.65966797, -1.3876953, 2.2988281, -0.070739746, 1.34375, -1.2275391, -0.084472656, 0.096069336, -1.8789062, 2.0917969, 2.1679688, 1.8740234, 1.3007812, 1.3144531, -0.2866211, -0.062072754, 0.44580078, -1.7275391, 0.07623291, 1.1875, 0.087890625, -2.4082031, 1.5546875, -2.0117188, 0.01991272, 2.3339844, 1.1826172, -2.03125, 3.0957031, 2.3808594, 0.8544922, 2.1074219, -0.7128906, -1.5810547, 0.3083496, -0.8876953, -0.32714844, 0.58984375, -0.85791016, 0.5214844, 1.3173828, -0.03503418, 0.12683105, 0.41845703, 1.9111328, -0.58154297, 0.7607422, -0.7163086, -0.98339844, -0.87890625, -0.6113281, -0.43554688, -0.68896484, 0.9536133, -0.19116211, -2.5273438, 2.6582031, 0.98046875, -0.5908203, -1.5859375, 0.59277344, -3.7402344, 0.041107178, 1.2597656, 0.22570801, 1.2382812, 0.95947266, 2.3925781, 1.3046875, 1.0644531, 1.6035156, -0.43554688, 0.08618164, -0.48095703, -1.40625, 2.0839844, 0.9765625, -0.2758789, 2.9570312, -1.0810547, -2.4160156, 1.3701172, 1.3945312, -3.7539062, -1.2929688, -0.4194336, -1.4726562, -0.03869629, 1.8789062, -2.1035156, -0.8383789, 1.5507812, -1.1845703, 0.039916992, -1.3886719, -0.9897461, 1.5068359, -0.93896484, 0.16394043, -1.1748047, -1.125, 1.6523438, 0.22875977, 0.20629883, -1.2675781, 2.3125, 0.71728516, -0.6567383, -0.050933838, 0.6401367, -1.2138672, 1.578125, -0.90283203, -1.8466797, -2.2285156, 0.8823242, 1.5078125, 2.3828125, 1.25, 1.125, 1.3847656, -2.8554688, 0.95458984, 0.3955078, 0.60546875, -1.1259766, -0.4753418, 1.28125, -1.1083984, 0.011512756, 0.05456543, 0.37329102, -1.828125, 1.4921875, 1.9501953, -0.075927734, -1.1347656, 0.104003906, -2.5996094, -4.6953125, -1.4287109, 0.5830078, -0.48754883, 0.46899414, 1.2011719, -1.0253906, 2.3242188, -1.0390625, 0.07739258, -1.2792969, 0.17480469, 0.19494629, -0.9555664, -3.2871094, -0.48242188, 1.2939453, -0.12854004, 0.13232422, -1.4609375, -0.41796875, -1.5898438, -1.1357422, 1.7314453, -0.06329346, 1.5507812, -0.4855957, -1.3867188, -0.8720703, 2.7265625, 1.2871094, -2.5253906, -0.37475586, -3.6542969, -1.0527344, 0.41015625, -1.1445312, -0.030975342, 0.7421875, 0.55029297, -0.08441162, 1.1748047, -1.0146484, -1.6240234, -0.6689453, 0.7841797, 0.3803711, -1.1269531, -0.82421875, -0.26049805, -0.6669922, 0.6166992, 0.3791504, 1.5058594, -2.7128906, -1.2841797, -1.2011719, 1.0927734, -2.0292969, -0.7915039, -1.4658203, 2.4121094, 3.6875, 0.1274414, 1.0732422, 1.9013672, -0.3630371, 0.115234375, 0.66308594, -1.7099609, 2.6464844, -0.35839844, -1.5341797, -2.6367188, -1.6142578, 1.3222656, 0.046936035, -0.30786133, -0.76220703, -1.3916016, -1.0771484, 1.1455078, -0.2685547, 0.18933105, 3.1796875, -0.6977539, -1.7050781, 0.8754883, -0.07745361, -0.062408447, 1.6943359, 1.6386719, 0.90234375, -0.5317383, 1.9228516, 0.95703125, -3.0175781, -0.018875122, -1.5283203, 1.1601562, -0.609375, -0.30932617, -0.44213867, -2.3378906, -1.4257812, -1.9326172, 0.6958008, -3.0390625, 2.2890625, 0.6386719, -0.06945801, -0.053833008, 1.9794922, -0.19299316, 2.9179688, 4.140625, 2.3027344, -0.77685547, -0.16052246, -3.1210938, -1.7548828, 1.2021484, -0.52001953, -0.5722656, 1.5898438, 0.5957031, -0.9135742, 1.0947266, 2.2265625, 3.0605469, 0.56884766, 1.0576172, 0.33764648, 1.8017578, 1.9853516, 0.099975586, 0.7109375, 2.375, 0.69189453, -2.6679688, 1.4316406, -0.13110352, -0.16516113, -1.6328125, 1.3095703, -2.4902344, -1.4990234, -1.8105469, -0.9423828, 0.37841797, -3.0664062, 1.5976562, -0.2775879, -0.3540039, -1.1679688, -0.81884766, -0.31347656, 0.025985718, 1.7392578, -0.29516602, -0.30322266, 0.44726562, -1.1064453, -0.4482422, -0.7324219, 0.64990234, -4.171875, 1.8769531, -0.9008789, -2.0390625, 2.4980469, 1.5810547, 0.27075195, 1.8193359, 1.625, 1.1210938, 2.0703125, -0.66308594, -0.09118652, -0.23278809, -1.0644531, 1.8574219, 3.5996094, 1.1962891, -1.4677734, 1.1240234, -0.6801758, -2.7734375, -2.7109375, 2.140625, 0.55322266, -0.37646484, 0.51953125, -0.37817383, 1.7177734, -0.47631836, 2.7421875, -2.453125, 1.5976562, 1.0800781, -2.8222656, -1.5859375, 2.1328125, 1.1455078, 1.9003906, 0.31298828, -0.7011719, -0.11260986, 2.9746094, 2.2851562, 0.6879883, 0.013877869, 0.026397705, -0.47705078, -0.9633789, 2.3671875, 0.22521973, -0.10839844, -1.3867188, 3.421875, 1.4130859, 1.234375, 1.0556641, 0.31054688, 0.3269043, -1.6708984, 0.6069336, 0.43554688, 0.21618652, -1.8486328, -0.8979492, 0.8623047, -0.5410156, -0.25268555, 2.0957031, -0.09484863, -1.4453125, -0.9042969, 2.5839844, -1.3339844, -0.3005371, 1.2412109, -0.21032715, -3.4765625, -2.3925781, 1.7763672, -1.9179688, -2.5527344, 0.71972656, 1.9267578, 0.62597656, -0.7675781, 0.089538574, -1.8388672, 1.0859375, 0.034240723, -0.3815918, -0.34448242, -1.1240234, 0.6333008, -0.17504883, -0.8520508, 2.5917969, -0.34155273, 1.75, 2.0585938, -2.4785156, -0.7871094, 0.009140015, -0.73828125, 0.3400879, 2.53125, 1.1816406, 1.0976562, -1.7255859, -4.75, -0.4729004, -0.71972656, 1.0332031, -0.28344727, -0.47265625, -0.3076172, 1.1289062, 3.2929688, -0.9658203, -0.99609375, 0.4963379, -0.16101074, 0.9736328, 1.0380859, 2.03125, 1.5078125, 2.0722656, 0.25048828, 3.6582031, 2.4082031, -0.7705078, 2.09375, 1.0410156, 0.6748047, -0.94433594, -0.82470703, 0.03805542, 1.4824219, 1.2675781, -2.0742188, 0.27270508, 0.06329346, -1.5947266, -2.7226562, -2.2519531]}, "B093FC5SB6": {"id": "B093FC5SB6", "original": "Brand: Aliyoham\nName: Pellet Smoker Tube, Aliyoham 12'' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)\nDescription:

With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

You need our pellet smoker tube for sure!

We have everything you need in one package.

-1xPellet smoker tube

-1xCleaning Brush\u00a0

-1xSilicone Brush

-3xS Shape Hooks

It is also a fantastic gift, we have beautiful box as you can see in picture.

If you have any question, message us any time!

\nFeatures: Aliyoham 12'' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food.\nPut your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill.\nA smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more.\nPremium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it\u2019s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around.\nOur product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.\n", "embedding": [-1.9921875, 1.4179688, 1.3896484, 0.38378906, 0.44262695, -0.421875, 1.2021484, -0.54541016, -0.35302734, 0.77978516, 0.734375, -1.4375, 0.01210022, -1.8310547, -0.75878906, -1.0214844, 0.4189453, -0.35717773, 2.4179688, 2.328125, 2.0761719, 0.5234375, 0.18078613, -1.9970703, 3.3261719, 0.78027344, 3.0917969, -0.71777344, 1.7314453, -1.1376953, 0.68603516, 0.031433105, -1.6455078, -0.013305664, -2.5683594, -0.3388672, 1.265625, -0.59472656, -1.7695312, 0.05722046, 1.3085938, 0.06652832, 1.0947266, 2.3613281, -4.7226562, 0.080322266, -2.1855469, 1.2294922, -0.50927734, -0.47192383, -0.2722168, 1.1875, 0.3774414, 1.3164062, -0.6020508, 0.9916992, -0.875, -3.6933594, 0.56640625, -0.2626953, 0.4897461, -0.15551758, -1.3671875, 0.9609375, -1.1074219, -1.7148438, -0.328125, -1.7324219, -0.49975586, -0.33813477, -0.12902832, 0.04248047, 1.1894531, 0.73046875, -0.50878906, -1.140625, -2.6367188, 1.3164062, 0.43530273, 0.47143555, 0.48291016, 1.8847656, -0.33447266, -0.11804199, 0.66503906, -1.4189453, -1.6083984, 0.60546875, 0.7138672, 0.124938965, -0.068359375, -0.43115234, -1.0996094, -4.671875, 2.6152344, -2.984375, -0.15881348, 0.19909668, -2.1230469, 0.3564453, -1.0712891, 0.3071289, -0.87939453, -1.4492188, -2.5195312, -0.9814453, 0.8051758, 1.9199219, -1.4716797, 0.4350586, -0.6171875, 1.421875, 1.2509766, 0.99658203, 0.85009766, -0.8364258, -0.6376953, 0.0016889572, 1.3984375, 1.2128906, 2.8457031, 0.16125488, 1.3085938, -2.5507812, 0.10845947, 0.63623047, -0.48120117, 0.13464355, 3.7832031, 0.107299805, -0.26831055, -2.796875, 0.71533203, -1.4599609, -0.37329102, -1.8095703, -0.6850586, 0.0048675537, -1.90625, -1.1611328, -1.6269531, 1.1220703, 2.2421875, -1.1181641, -3.0957031, -0.21960449, 0.1430664, 1.0429688, 0.18347168, -1.5722656, 1.8105469, -1.4257812, 1.0419922, -1.2050781, 1.2353516, -0.01461792, 0.0814209, -0.1550293, 0.68896484, 0.03717041, 0.9433594, -1.7539062, -1.25, 1.6669922, -1.5341797, -3.3691406, -1.2519531, 2.0976562, -0.46826172, 4.6992188, 0.05908203, -1.7841797, -0.5341797, -0.17199707, 1.0742188, -1.2871094, 0.7324219, 1.7783203, 0.6489258, -0.84765625, -1.7998047, -2.0605469, 2.4433594, -0.20996094, 0.2878418, 0.019760132, 0.8823242, -0.3269043, 1.5722656, -0.53759766, 2.53125, 2.46875, -0.8569336, 1.4072266, -0.8623047, -0.4885254, -1.5400391, -1.9472656, 1.6152344, -0.63720703, -1.8847656, -0.23754883, -1.71875, -0.73291016, -2.2695312, -2.3164062, -0.61572266, -0.4831543, 0.39916992, 3.015625, 0.52734375, -0.34521484, 2.640625, -0.8725586, -0.40625, -1.7216797, 1.5253906, -1.7363281, 1.6865234, 2.28125, -0.11114502, -0.6123047, -0.33251953, 2.734375, 2.0527344, 3.3359375, -0.99609375, 1.6425781, -0.20861816, -0.11743164, 1.9677734, 0.47680664, -0.2529297, -0.75341797, 0.40649414, 1.0644531, 2.5683594, -1.5302734, -0.08190918, 0.44677734, -0.4182129, -2.6542969, 0.01576233, -2.6113281, -1.9267578, -1.7509766, -1.3037109, 0.5541992, 1.2001953, -0.5810547, -2.5976562, 1.578125, 2.1230469, -2.1816406, -1.6230469, 0.44873047, -2.4453125, 0.37890625, -0.58154297, -1.359375, 3.2382812, -0.7626953, 2.625, 0.79296875, 0.8378906, -0.56152344, 2.140625, 0.48486328, -2.3671875, -0.6352539, 0.4946289, -0.15307617, 0.48339844, -1.0507812, 2.4921875, 0.59765625, -0.9472656, 0.46533203, 2.0917969, 0.40649414, 0.69189453, 0.29345703, 2.7597656, -3.1855469, -1.8388672, -2.8144531, -0.60253906, -2.6074219, 0.8623047, 0.2208252, 5.1054688, 0.4519043, -1.4541016, 1.8330078, -0.8413086, -0.0625, 0.79589844, -0.09832764, -0.6557617, -1.3251953, 1.8994141, 0.043670654, -0.27392578, 0.030380249, -0.6074219, -0.72802734, 1.3984375, 0.73339844, 0.9477539, -0.2475586, -0.6020508, -0.21069336, -1.5097656, -0.8959961, -2.1171875, 0.95947266, -0.5605469, -0.3046875, 0.46020508, -0.38500977, 0.5908203, -0.03579712, 0.61865234, -1.6210938, -1.1044922, 1.9785156, -1.8417969, 1.5742188, 0.5390625, -1.5185547, 0.39257812, -0.11627197, 0.99902344, -2.0390625, -2.1582031, -1.3339844, 0.09869385, -2.5800781, 0.2890625, -2.4863281, -0.88427734, 0.74853516, -2.7773438, 3.0058594, -0.3269043, -0.9794922, -0.7470703, 0.5756836, 0.44750977, 2.3730469, -1.0947266, 3.0800781, 1.7880859, -4.5625, -0.9345703, 2.0898438, 0.52490234, -0.15454102, -1.2304688, 1.0507812, -0.22595215, -0.32592773, -0.5493164, -0.16381836, 1.5410156, -0.23010254, -0.21411133, -2.6699219, 1.1396484, -0.8330078, 2.1152344, -1.1298828, 2.1894531, -1.0800781, -1.015625, 2.5078125, 0.9604492, 2.8535156, 0.96875, 1.0976562, -0.8027344, -1.2392578, -0.22753906, -0.91796875, -2.96875, -1.2392578, 1.6816406, -0.6191406, -1.2490234, -3.6777344, 1.4941406, -0.47998047, -1.2177734, 0.124938965, 1.6621094, -0.9501953, 0.039093018, -2.7167969, -2.140625, 0.86376953, -1.6757812, 0.10888672, -0.46557617, -0.041503906, 0.44189453, -0.51416016, -0.04776001, -0.3815918, 1.2304688, -0.5180664, 0.06890869, 1.9511719, 1.4423828, -0.828125, 1.8769531, -2.1621094, 2.9628906, -0.6591797, -4.125, 0.6191406, -0.3605957, -0.3400879, -2.6816406, -0.8730469, 3.0996094, 1.7666016, 1.4765625, 0.10656738, 1.4609375, 2.1914062, 0.25073242, -0.85498047, -0.6425781, 1.2412109, 1.8671875, -3.4785156, -2.3164062, 1.9765625, 1.1708984, -2.1738281, -1.3164062, 2.5410156, 0.9970703, 1.6240234, 1.1464844, -0.18151855, -0.4206543, -0.083984375, 0.53222656, 1.0302734, -1.9179688, 0.32885742, 0.40649414, -0.4375, 1.5009766, 1.0712891, 0.34716797, 0.34155273, 1.8095703, 2.1582031, 0.03161621, -0.71484375, -0.12902832, -1.9423828, 2.2363281, -1.0429688, 2.8769531, -1.25, -1.5214844, 0.453125, 0.41430664, 1.1162109, -2.4960938, -2.0820312, 2.5019531, 0.5498047, -1.8398438, -0.37231445, 0.30908203, -0.17553711, -2.0996094, 0.7558594, -0.6796875, -0.2980957, 0.609375, -0.72558594, -1.3535156, -1.3164062, 1.4199219, 1.3193359, -0.66259766, -0.7246094, -0.21069336, -0.9746094, -0.7504883, -1.5175781, 3.4882812, -0.44311523, 1.8564453, -2.3613281, -0.107055664, 1.3583984, -2.1269531, 1.5078125, -0.48632812, 0.24450684, -0.23913574, -1.5566406, 0.03933716, 1.5585938, 0.4597168, 0.6791992, -0.0869751, -1.3769531, 0.22424316, -2.96875, 0.32226562, 0.4008789, -3.21875, -0.20153809, 1.0185547, 1.3388672, -0.22216797, -0.6801758, 2.8671875, 0.9765625, -1.5966797, 1.4365234, -1.4296875, -0.95410156, -3.5644531, -3.3632812, 2.5976562, 0.10522461, 0.30786133, 3.1542969, 0.58154297, -0.31396484, 1.3574219, 1.0693359, -1.1738281, -1.1953125, -1.8925781, 1.7382812, -0.2631836, -0.95166016, 2.6210938, 1.9208984, -2.3378906, -0.7392578, 0.11303711, -1.4453125, -0.13256836, 0.88964844, -1.1591797, 1.3134766, -2.0898438, 1.2236328, -0.12939453, -0.92578125, 0.9355469, -1.8554688, 0.21508789, 1.203125, 1.7978516, -0.13830566, 2.0097656, -0.25048828, 0.5263672, 0.55126953, -1.6318359, -2.5957031, 1.671875, 2.9238281, -0.33520508, -0.17382812, -0.46923828, 0.75341797, -1.2060547, -0.6381836, 0.9165039, -0.91796875, -1.5097656, 1.1396484, 1.4306641, 1.5439453, 2.1191406, 0.2310791, -1.1191406, -0.98095703, -0.27172852, -4.1601562, -1.4833984, 0.90722656, -0.8305664, -0.93310547, 1.4316406, -1.2617188, 1.9023438, 1.2275391, -0.11328125, 0.18371582, 0.5864258, 3.1132812, 1.5722656, 4.7226562, -0.73828125, -1.0166016, -1.4482422, -2.7695312, 0.8432617, -0.074523926, 0.28955078, -2.4707031, 0.51953125, 0.5371094, 0.23425293, 0.22375488, 0.54785156, 1.2451172, 1.7519531, -1.2763672, 0.9116211, -2.2929688, -0.74121094, 1.3828125, -0.74316406, 2.5039062, -1.2607422, -0.30932617, 0.3605957, -0.27807617, -1.1123047, 0.08984375, -0.5053711, 1.2695312, 0.6201172, 1.453125, 2.7265625, -2.046875, 0.068481445, 0.13391113, 2.8476562, -0.27612305, 1.1015625, 1.0195312, 1.0820312, -0.33081055, 1.8232422, 2.8164062, 2.1679688, -0.6533203, 3.5644531, 0.80078125, -1.2792969, -0.33642578, 2.6191406, -2.3417969, 0.78222656, -0.15258789, -1.171875, 1.2207031, 0.31591797, -1.3818359, 1.1015625, 2.3027344, -0.22033691, 0.7685547, -2.5507812, -1.3193359, 1.3388672, -2.7382812, -1.4404297, -2.2597656, -1.2216797, 0.89453125, 0.65527344, -1.515625, 1.8125, 1.015625, 2.7246094, -1.8056641, -1.8125, 2.1171875, -0.8310547, 0.16455078, -0.48461914, -3.2675781, -3.1308594, 0.16748047, 1.2695312, 0.71777344, 0.796875, 0.7519531, 2.8203125, -1.6523438, 1.4033203, -2.4101562, 2.1367188, -2.4707031, 1.2363281, 3.5742188, -3.578125, -0.29467773, 0.87158203, 1.0761719, 0.07849121, 1.2519531, 0.16040039, -2.5605469, -2.0976562, -0.55029297, -3.5390625, -4.1640625, -1.875, 0.15136719, 0.43774414, 0.6665039, 1.4082031, -0.5932617, -0.8144531, -0.56103516, -0.4777832, -0.15222168, -0.41259766, -1.0908203, -0.013969421, -2.0429688, -0.08215332, -0.6245117, -0.6767578, 0.88427734, 0.4885254, 1.3847656, -2.8476562, -1.6025391, 2.0566406, -0.6459961, -1.8798828, -0.06286621, -0.35229492, 0.47607422, 0.9477539, -0.09436035, -1.6708984, 1.3222656, -1.5625, 0.119506836, -0.45654297, -0.4885254, 1.4707031, -1.0488281, -0.8935547, -0.42504883, -0.3474121, 2.8691406, -0.4338379, -0.9897461, 1.1308594, -0.36376953, -0.7241211, -0.1463623, -0.96435547, 0.53564453, 2.1523438, 1.4814453, 1.2246094, -0.9326172, -2.828125, -2.3359375, -0.1541748, 0.16552734, -0.765625, -1.1337891, 2.2597656, 0.46289062, -0.20690918, 1.8564453, 0.37817383, -0.1484375, -0.05444336, 0.028747559, 1.0244141, 3.2070312, 1.2275391, -1.4824219, -0.67578125, -1.1728516, 1.4160156, 1.0527344, -0.19274902, -0.38256836, 0.5620117, -0.6074219, -1.3320312, 0.296875, 1.953125, 2.4628906, 1.7382812, -1.1162109, -0.3100586, 1.0546875, -2.9980469, 2.1113281, 0.7182617, 2.9882812, -0.25952148, 3.0449219, -2.0605469, -0.85058594, 1.2324219, -1.7753906, 1.2197266, 2.2011719, -2.1757812, 0.71777344, -2.0996094, -1.2226562, -0.14282227, 0.48632812, -0.3544922, 1.0625, -0.49951172, -1.0771484, -0.012313843, 2.9589844, -0.22998047, 1.7294922, 4.0859375, 0.061187744, -0.8881836, -0.34277344, -0.50927734, 0.6567383, 1.5478516, -2.9609375, 0.27685547, 1.2109375, -1.0615234, -2.1425781, 2.3007812, 3.2695312, -0.012557983, 0.04736328, 3.6738281, 0.2944336, 2.8046875, 2.4238281, -0.36157227, 0.94140625, 1.34375, -1.3232422, 0.39038086, 2.9257812, 0.42919922, 0.6640625, 1.109375, 1.1943359, -1.0605469, -0.45751953, -0.82128906, -0.7055664, -0.5625, -1.4990234, 1.53125, -0.16503906, -0.8911133, -2.90625, 0.101501465, -1.0605469, -0.78125, -2.4023438, -0.28295898, 2.9960938, 1.8857422, 0.85839844, 1.7226562, 0.08154297, 0.875, -4.9296875, 1.5, 1.0644531, -0.13122559, 0.9589844, 1.0146484, 1.0292969, 0.49072266, -0.95654297, 0.53125, 0.28735352, 1.9804688, 2.1484375, 1.5234375, -0.80126953, -0.6176758, 0.9350586, -1.2841797, -2.8535156, -0.94091797, -1.1142578, -1.6601562, -1.3183594, 1.9287109, -0.47998047, 2.3574219, 1.4345703, -1.6279297, 1.9267578, -1.2421875, 0.6455078, 0.37109375, 1.4833984, 1.7861328, 0.91259766, -1.6660156, 0.18164062, 1.8056641, 2.2910156, -1.1113281, -1.3222656, 0.28735352, 0.039398193, -0.05368042, 1.0488281, 1.0351562, -1.8046875, -0.67041016, -1.8251953, 4.9414062, 0.28881836, 0.7451172, 1.3076172, 2.3085938, 0.69921875, 1.8662109, 0.6694336, 0.087646484, 0.4099121, -1.5244141, -1.1513672, 1.9824219, 1.9677734, -2.7265625, -1.5966797, 0.025512695, -0.3696289, 1.5742188, 0.33154297, -0.67626953, 0.38671875, 1.5449219, 0.24438477, -2.0683594, -0.8071289, 1.8349609, -1.1796875, -0.36328125, -0.39086914, -0.1796875, -0.33447266, -2.7050781, 0.77490234, 0.26831055, 2.2167969, 0.4934082, 2.1894531, -0.53808594, 0.7451172, -0.20239258, -1.4121094, -0.6694336, -2.6015625, 1.1523438, -0.82421875, 0.71728516, 1.7324219, 0.5131836, -1.8330078, 1.5283203, -0.21740723, -0.02357483, -2.0585938, -2.1679688, 0.58203125, 2.7324219, 0.0022945404, 0.62402344, -0.7441406, -2.3027344, 2.921875, -1.4814453, 0.86376953, 0.37890625, -2.8125, 2.4003906, 1.6025391, 2.1113281, 2.1835938, -3.8632812, 0.5263672, -0.92822266, 0.27075195, -0.79296875, 0.8457031, 0.4868164, 0.109375, 0.7416992, 3.453125, -0.09588623, -0.76708984, 2.4179688, 2.0722656, 3.3574219, -3.8574219, -1.4550781, -0.6586914, 0.87646484, 1.0546875, -0.17041016, 0.14099121, 0.44580078, -0.9277344, -2.7890625, -2.0761719]}, "B08TMVDJ6W": {"id": "B08TMVDJ6W", "original": "Brand: Atatod\nName: Atatod 14\" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14\" W x 21\" H x 23\" D inch)\nDescription:

Introduction:

14\"inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

Size:

14\" W x 21\" H x 23\" D ( Product Size )

12\" W x 19\" H (Cut-out )

Package :

1 X Stainless Triple Drawer

1 X English manual

\nFeatures: Outdoor Kitchen Triple Drawer;Overall Size:14\"W x 21\"H x 23\"D inch,Cut-Out Size:12\"W x 19\"H inch\nFully Enclosed Drawer Box \u2013 protects against the Weather\nHigh Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look\nDrawer Sizes are all 12 Inch Width by 4.5\" Top, 6.5\" Middle & 8\" Bottom\nBlend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components\n", "embedding": [-4.5585938, 1.7626953, 1.8447266, 0.57958984, 1.1884766, -1.0839844, -1.2998047, -0.15649414, 0.5517578, 2.9492188, 1.234375, 1.4003906, 0.0055503845, 0.111328125, -1.0498047, 1.2080078, 0.18151855, -0.9169922, 0.45825195, 0.75390625, 1.2353516, 0.96240234, -0.08148193, -0.58496094, 1.7744141, 1.5830078, 3.0488281, -1.1083984, 2.1894531, 0.6142578, 1.9697266, 0.9848633, 2.09375, 1.3427734, -1.3837891, 1.4160156, -0.3708496, 2.2070312, -1.5810547, 2.3554688, -0.26220703, -2.5136719, 1.9208984, 1.6933594, -3.9941406, -0.20153809, -0.002412796, 1.6123047, 0.84765625, -3.0273438, 0.8798828, 2.9355469, -0.2578125, 2.625, -1.3398438, 0.31591797, 2.7109375, -5.0859375, 0.28979492, -1.5371094, 0.35498047, 0.57910156, -1.3339844, 2.3847656, 1.0166016, -0.17224121, 1.4316406, 0.91503906, 0.04244995, 1.234375, -1.3417969, -0.10675049, -1.3662109, -1.4541016, -0.4633789, -1.2138672, -0.6689453, 1.7636719, 0.8959961, 1.0166016, -3.5, 1.4892578, -1.1347656, -1.3564453, 0.12298584, -0.47314453, -2.1816406, -3.1660156, -0.94433594, -0.36279297, -0.15197754, 1.7705078, -1.5234375, -3.4785156, 2.4765625, -3.8261719, 0.5126953, -1.0410156, 1.3144531, 2.5976562, -0.74316406, 0.26098633, -0.59716797, 0.38208008, -1.4931641, -1.1425781, 0.9716797, 0.03060913, -2.7988281, 0.01524353, -4.0507812, 2.7207031, 1.1396484, 0.16113281, 1.6328125, 0.10064697, 0.40307617, 0.75390625, 2.6933594, 2.5039062, 2.1308594, 0.21142578, -0.35766602, -1.7177734, 1.1972656, 1.7783203, 0.38964844, 1.5996094, 4.0351562, 0.6328125, 1.0341797, -2.7675781, 1.0966797, -0.92871094, 0.47216797, -0.82958984, -2.1269531, -2.7519531, -1.6630859, 2.2207031, -2.1386719, -0.07873535, 3.0292969, -1.6455078, -1.4052734, -0.6435547, 0.113220215, -0.8261719, -1.5625, -3.4707031, -1.2558594, -1.7050781, 2.0546875, -1.7041016, 2.0742188, -1.5146484, -0.45214844, -2.1855469, 3.5117188, 1.0751953, 1.1503906, -4.3242188, 0.28833008, 2.3671875, -0.34399414, -1.0820312, -1.7158203, 1.8515625, 0.8598633, 1.5449219, 1.4072266, -1.9824219, -0.27319336, -2.5664062, 1.0009766, 0.024841309, -0.4296875, 2.0742188, 2.5078125, -0.39086914, 0.69628906, -3.8671875, 1.2998047, 2.6621094, -1.9228516, -0.44213867, 0.2286377, -1.7285156, 0.7939453, -2.1796875, 0.27124023, -1.0751953, -0.30273438, -1.3935547, 0.47631836, -1.2421875, -1.6240234, -0.5776367, -1.0664062, -2.0449219, 2.0820312, -1.3378906, -0.82421875, -0.1784668, -2.9628906, 0.42504883, 1.0107422, -0.2619629, 2.9648438, 1.3828125, 2.5996094, -0.009597778, 2.6855469, -1.6240234, -0.7270508, -1.7773438, 2.0097656, -0.19824219, 3.4726562, 1.8271484, 1.2441406, 0.8105469, -1.0683594, 2.5449219, 0.21582031, 1.4335938, 0.45898438, -0.9042969, -0.2849121, 1.0546875, 2.2304688, 0.31591797, 1.5302734, 1.2402344, -1.1621094, 1.1328125, 0.48583984, -2.2441406, -1.5625, 1.4677734, 0.99658203, -1.7011719, 0.7114258, 1.3164062, 0.69677734, -0.6801758, -2.1914062, 2.7382812, -0.09564209, -1.7802734, -0.0690918, -2.3730469, 1.1132812, -2.5800781, 1.8300781, 0.55810547, -1.3203125, -0.49365234, -2.2773438, -3.0351562, 1.2910156, -1.5878906, 0.9213867, -1.6044922, 2.0742188, 0.2409668, 2.109375, -0.29760742, -3.0253906, -0.8666992, -1.0683594, 0.4645996, 1.5615234, -1.0458984, 1.3310547, 2.7382812, 0.14916992, 2.6464844, 0.18518066, 0.8286133, 0.4807129, -1.9296875, 2.1816406, -0.033447266, -0.15820312, 0.39819336, -1.4335938, -0.58691406, 1.7333984, 1.7490234, 3.6816406, -1.3759766, -3.3671875, 3.9003906, -0.10308838, 0.39038086, 1.3046875, -1.4316406, 0.3618164, -0.91796875, -1.2509766, -0.014915466, 0.33666992, 1.8925781, -0.52685547, -0.57958984, 0.9848633, -0.70947266, 0.8125, 1.3779297, -2.625, 0.02229309, -1.1162109, 0.9790039, -0.8095703, 0.070007324, 2.8320312, -0.75, 2.9238281, 0.13464355, 0.16760254, 0.014892578, 0.022628784, -0.9199219, -2.6269531, -0.74121094, -0.6982422, -2.2539062, -0.84521484, -1.3769531, 1.2919922, -0.20385742, 1.8564453, -1.3759766, -1.3554688, -1.6435547, -2.9375, -0.58154297, 0.26586914, 0.55615234, 0.6982422, 0.8129883, -2.6660156, 0.18518066, -0.79296875, -1.6376953, -1.6484375, 0.57470703, -1.5273438, -1.0009766, 1.0126953, -1.0078125, -0.52490234, -4.4492188, 2.421875, 1.4716797, 1.2714844, 0.12817383, -2.0976562, 1.8681641, -1.8193359, 0.3569336, 0.21704102, 2.1132812, -0.6435547, -0.58251953, -0.001964569, -3.8203125, 2.28125, -1.3896484, 1.1699219, -2.9257812, 1.1630859, -0.11743164, -0.33520508, -1.7734375, -1.9072266, 4.9335938, 2.6230469, 0.7709961, 0.5830078, 0.7949219, 0.9892578, -0.62353516, -0.23168945, -1.7773438, -1.1220703, -0.85058594, -0.81103516, -3.5605469, 3.0878906, -2.3632812, 1.9072266, -0.69433594, 2.1347656, 0.9008789, -1.0273438, -2.1953125, -1.1259766, 0.7192383, 0.027191162, -1.9589844, -1.5322266, -1.4873047, -1.6435547, 1.0126953, -0.1472168, 1.9375, 3.4042969, -1.5664062, -2.2109375, 1.2412109, -0.3515625, -0.20410156, -0.80566406, -1.7705078, 1.4794922, 0.011741638, -2.0839844, 0.7758789, -0.19140625, -1.7744141, -2.9804688, -1.2744141, 2.9648438, -0.8041992, 3.9082031, -2.1621094, 0.06896973, -0.74853516, 0.42822266, 0.6899414, -1.2177734, 1.9560547, 2.296875, -1.0488281, -2.4082031, 1.4677734, 0.39868164, -3.3339844, 0.0036888123, 0.070129395, 0.10479736, 1.3203125, 2.2714844, 1.6767578, -0.048828125, -1.3076172, -1.2783203, 1.2441406, 0.107055664, 1.0996094, -2.5019531, 0.19152832, -2.7792969, 0.31713867, 0.17285156, -0.2409668, 1.4160156, 1.4892578, 0.3491211, -1.7509766, -1.7705078, -0.15100098, -1.3134766, -2.3847656, 1.0234375, -1.1875, -1.4140625, -0.4946289, -0.765625, -0.34057617, -3.1855469, 1.0009766, 0.9526367, -0.24511719, 1.1074219, -0.4182129, -1.3613281, 0.10632324, -3.8476562, 1.0742188, -1.9335938, -3.2617188, -1.1611328, -2.5214844, -0.6928711, -1.2626953, 1.5830078, 1.2666016, -1.8623047, -2.5625, 1.6240234, -1.7802734, -0.12017822, -1.3173828, 1.3427734, -0.88916016, 0.7866211, -0.25756836, -1.5273438, 0.2788086, -0.52978516, 1.1953125, -0.88671875, -2.3496094, 0.3474121, 1.3476562, -0.69384766, 0.14831543, -0.7270508, -0.5317383, 2.8105469, 0.02772522, -1.1083984, -2.8378906, 2.0976562, 0.6347656, 0.64697266, -0.29101562, 1.6884766, 1.8056641, 4.1601562, -2.421875, 1.4130859, -0.45166016, 0.87890625, 2.2304688, -1.3847656, 0.35009766, -2.5449219, -2.328125, 0.8486328, 1.7470703, 0.04397583, 2.234375, 1.5722656, -1.2421875, 2.1367188, 1.6728516, -2.6777344, -2.3652344, -1.1240234, 0.5161133, -1.2978516, -1.6289062, 1.8759766, 0.48779297, -1.8125, 0.35839844, -0.38745117, -0.4260254, 1.6396484, 0.16247559, -0.70703125, 3.0273438, -0.35766602, -0.82177734, 0.47583008, -0.64990234, -1.2324219, -0.023498535, 0.8510742, -1.7714844, 2.9121094, -3.5058594, -0.890625, 0.39331055, 2.4902344, -1.3193359, -0.5673828, -4.6132812, 0.75878906, 1.7490234, -0.9814453, -2.3808594, -1.0234375, 0.37817383, 0.6855469, 0.6899414, 1.34375, 0.5576172, -1.8535156, -0.7026367, -0.6645508, -2.21875, 1.390625, 0.9790039, -1.7509766, 0.42773438, 0.89990234, -0.87646484, -1.5761719, 0.37646484, -1.2978516, -0.36010742, 0.7763672, -0.69970703, 3.7441406, -0.37939453, -1.65625, -0.0011148453, 3.2304688, 3.5546875, 1.4726562, 3.9863281, -1.9541016, -1.2285156, 2.3339844, -0.84375, 0.40112305, 1.4833984, -0.50634766, 1.1904297, -0.56640625, 0.15722656, -1.3115234, 0.7573242, -1.5664062, 0.7182617, 0.07446289, -0.86328125, 0.6894531, 0.97753906, -2.7734375, 2.5039062, -0.70654297, 3.3183594, -1.2451172, 1.4208984, 2.4472656, 0.92333984, -1.6005859, 1.8564453, -0.69628906, 1.5771484, -0.3293457, 0.11907959, 1.3066406, -2.6367188, 1.171875, 2.1425781, 2.9042969, -0.6694336, -0.92871094, 1.9580078, 0.47192383, 0.044799805, -1.6005859, 1.78125, 4.6835938, -0.29882812, 1.6865234, 0.5620117, -2.5449219, 2.5527344, -0.75683594, -2.0253906, -0.7607422, -1.8789062, -0.96728516, 2.8632812, -0.99365234, -0.19885254, 1.5068359, 2.8457031, -1.75, -0.80908203, -0.7241211, -2.015625, 0.070251465, -3.6757812, -0.5961914, 1.3808594, -3.1171875, -0.48510742, -0.40014648, -1.7080078, -0.115478516, 1.1308594, 2.3613281, 0.4375, -0.9736328, 0.14233398, 2.2695312, 0.5029297, 0.6591797, 0.5605469, -2.171875, 0.6386719, 2.375, 2.1660156, 0.78466797, 3.7226562, 2.0898438, -1.1005859, 1.3310547, -2.7871094, 3.578125, -1.3466797, 1.0439453, 2.0117188, -1.6630859, -2.125, -0.92871094, 1.1484375, 0.011741638, 2.1660156, 2.9667969, -0.26611328, 0.23791504, -0.15075684, -1.4892578, -3.6621094, -1.4091797, 0.013694763, -1.6669922, -1.3583984, 0.23657227, -2.9023438, -0.77197266, -1.6884766, 0.28833008, -0.99365234, -0.29370117, -0.484375, -0.6557617, -1.1992188, -1.1660156, 0.105407715, 3.2441406, -1.1757812, 1.5166016, -1.1640625, -3.0742188, -1.3183594, 3.5410156, -1.9619141, -1.7509766, 1.9648438, -0.2927246, 0.29077148, 1.0947266, 0.4741211, -1.9892578, 0.7236328, -0.49853516, 1.1953125, 0.94970703, 1.4033203, 0.86621094, -1.0302734, -2.1914062, 0.30737305, -2.5566406, 2.671875, -1.4316406, 1.1865234, -0.2442627, -0.13708496, 1.6552734, 0.51171875, 0.97558594, 1.4121094, 0.045776367, 0.9238281, 2.0644531, 2.7871094, -3.8554688, -1.8925781, -1.6601562, -2.8046875, 0.32250977, -1.296875, -0.96728516, 1.28125, -0.81396484, 0.78808594, -0.5131836, -0.49682617, -0.69921875, 1.3916016, -1.7255859, 1.9658203, 1.4189453, -0.5498047, -0.7470703, -1.7978516, 1.8339844, -0.5205078, -0.8676758, -4.640625, 1.7001953, -2.2304688, 0.32128906, 1.7666016, 0.12683105, 2.9707031, 1.0097656, -2.5703125, -0.66796875, 2.171875, -0.25195312, 2.1328125, 0.14465332, 0.4506836, -1.2246094, 4.5859375, 0.062072754, -0.5986328, 3.0078125, -0.35913086, 0.36523438, 0.060546875, -2.7207031, 1.1513672, -2.5625, -0.35302734, -2.2578125, -0.71533203, -0.89990234, 0.77734375, 1.4248047, -1.1376953, 0.19091797, 3.7617188, 0.6533203, 1.2617188, 2.5585938, -1.0126953, -1.0410156, -0.37182617, 1.5146484, 2.1816406, 3.4667969, 0.41137695, 1.7871094, -1.1347656, 1.7373047, -2.6132812, 4.2734375, 1.7646484, 0.3395996, 0.20227051, 0.048858643, -0.14916992, 1.0390625, 3.625, -0.19909668, 0.9970703, 2.5859375, 0.7080078, -0.6357422, 2.4316406, 0.24743652, -1.5351562, 0.06149292, 0.7416992, -1.3720703, -0.01802063, 0.06689453, 0.35131836, 1.5585938, 0.101989746, 2.09375, 0.18225098, -0.55029297, -1.1396484, -1.5341797, -1.15625, -1.9921875, -0.48095703, 1.7949219, 0.9267578, 0.21887207, 1.4580078, -0.2265625, 0.9638672, 0.24572754, -0.70996094, 0.08099365, -1.6181641, 1.1796875, -2.4277344, 1.3955078, 3.4023438, 1.4580078, -2.4492188, 3.6679688, 2.3164062, 0.15722656, -1.2509766, -0.4243164, 1.6503906, 0.8144531, 1.4335938, -2.4355469, -1.9208984, -1.75, 1.9853516, -0.69970703, -3.1601562, 1.6220703, 0.47973633, 2.859375, 0.83740234, -5.4960938, 0.34448242, 1.6435547, 0.89941406, -2.6054688, 1.7001953, -0.47485352, -2.1171875, -1.4267578, -0.6796875, 1.7529297, 1.7363281, 2.0253906, -1.4765625, 2.2285156, 0.9790039, 0.27270508, 1.3828125, 0.81640625, -0.5698242, 0.10662842, -0.34448242, 4.1640625, 1.2578125, 0.14379883, -0.5776367, 0.33862305, -0.7348633, 0.5419922, 2.6347656, -3.4707031, 0.83740234, -1.8505859, 0.47802734, 0.84033203, -2.4960938, -0.81933594, 0.13708496, -2.2011719, -0.47998047, -0.3088379, 0.67626953, -0.5083008, 1.5966797, 0.9716797, -2.0117188, 0.008361816, 3.390625, 1.2021484, 0.08343506, 0.34985352, -1.0537109, 1.8574219, 0.17932129, -1.5791016, -1.1445312, 1.0908203, -0.9448242, -1.0361328, 1.4697266, -0.30395508, -0.46435547, -0.76904297, -0.93115234, 0.31323242, -0.36254883, -0.28125, -2.4257812, -0.23095703, 3.5761719, -0.9916992, -0.6196289, -1.5273438, 0.091552734, -0.5024414, 1.5595703, -0.41503906, 1.2900391, 2.2089844, 0.7426758, -0.8251953, -1.2275391, -2.15625, 1.2314453, -0.4868164, 1.1845703, 0.76953125, -0.56640625, -1.7822266, -0.69677734, 0.9370117, 0.18762207, -1.6875, -1.0224609, -0.3618164, 0.95166016, -1.3515625, -0.5776367, -1.1982422, -1.1708984, 0.008277893, 1.5341797, 1.8154297, -0.15588379, 1.4404297, 4.4492188, 0.09222412, -1.7939453, -1.6865234, 0.5991211, 2.140625, -0.85546875, 1.3046875, 0.25805664, 0.21350098, 0.8310547, -1.2275391, -3.1855469]}, "B07J9HK1RB": {"id": "B07J9HK1RB", "original": "Brand: Think Gizmos\nName: Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+\nDescription: Fuel your child's imagination with one of the best interactive playset toys for toddlers you can buy\u2026. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child\u2019s concentration and fine hand skills. It's also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It's advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a \u2018ThinkGizmos\u2019 branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.\nFeatures: \ud83c\udf56 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ\u2019s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series.\n\ud83c\udf7d\ufe0f ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food.\n\ud83c\udf56 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food.\n\ud83c\udf7d\ufe0f LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6.\n\ud83c\udf56 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won\u2019t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.\n", "embedding": [-2.2480469, 2.1699219, 0.5024414, -2.0527344, -0.0736084, 0.5913086, 1.6513672, -0.14758301, 0.26708984, 0.46875, -1.8789062, -0.39868164, 1.2138672, -3.1972656, 1.0751953, -0.75634766, 1.4013672, 1.6708984, 0.089660645, 1.0742188, 0.4206543, -0.6489258, 0.4309082, -0.22302246, 0.10961914, -0.024765015, 3.1074219, -1.1796875, 0.67626953, -0.7861328, 2.6132812, 0.62939453, 1.3828125, 2.5019531, -2.5429688, -0.22009277, 0.0713501, 1.2568359, 0.3684082, -1.2265625, 0.12524414, -2.1464844, 2.046875, 0.72265625, -2.9824219, -1.3056641, -0.0045700073, 1.3496094, -1.4853516, -1.4755859, 2.0644531, 1.0693359, -1.5664062, 0.26660156, -2.5800781, 2.1367188, -3.8378906, -0.54003906, 0.31689453, -0.6386719, 2.2851562, -1.6054688, -0.72998047, -0.32177734, -0.4399414, -1.4941406, -0.23291016, -2.9335938, 1.5595703, -1.546875, 3.671875, -1.4199219, -1.2314453, -0.81152344, -0.99560547, 0.5625, -2.6503906, -0.98046875, 0.23181152, -1.9052734, 0.44580078, 1.0185547, 0.7861328, -0.8833008, 1.1708984, -0.60009766, -1.6933594, -0.9501953, 3.0625, 1.4619141, 0.61279297, 0.29077148, -0.6875, -5.5234375, 1.3232422, -2.0957031, 0.63720703, -1.3984375, -0.8691406, 3.3242188, 1.8525391, -1.7226562, 1.0126953, -1.3623047, 0.66845703, -1.2089844, 2.2460938, 0.55029297, -1.4990234, -0.69433594, -1.296875, 2.0976562, -0.76708984, 0.40966797, -0.21044922, 0.18310547, -0.013809204, 2.3476562, 1.1757812, 1.1728516, 3.3945312, -0.36865234, 0.9951172, -3.3398438, -0.5756836, -0.5961914, -0.8486328, 1.5996094, 2.796875, -0.32080078, -1.1357422, 2.7070312, 0.44213867, -0.06951904, -1.6269531, -1.2470703, -2.0625, -2.9726562, -2.5683594, 2.4199219, -0.5722656, 0.04849243, 3.4101562, 0.47607422, 0.31445312, 0.18518066, -1.6845703, 2.1953125, -0.5175781, -1.9453125, 1.1210938, -1.7958984, -0.7060547, 0.48632812, 2.5429688, -0.12561035, -1.8369141, 1.0419922, 0.9116211, 0.15332031, 1.7529297, -0.51464844, -0.31689453, -0.32373047, -0.47924805, -2.1289062, 0.90478516, 2.53125, -0.4345703, 2.2949219, 1.3828125, -0.5751953, 2.0976562, -1.1289062, 0.35424805, -2.6035156, -2.7753906, 1.2929688, 1.4775391, -0.98583984, 0.2322998, -1.3847656, 3.1738281, 2.2207031, -0.3239746, 0.042785645, 0.5551758, -0.044555664, -0.036224365, -1.0957031, 1.7373047, 0.31689453, -0.8461914, 1.1992188, -0.2890625, 0.8720703, -1.0097656, 1.0498047, 1.2080078, 1.6845703, -0.8569336, 0.5517578, 0.19848633, -0.7026367, -0.8964844, -2.0332031, 0.36450195, -1.7646484, 1.2607422, 0.7583008, 0.4572754, 1.2978516, 1.7695312, 1.0615234, 0.4909668, -1.0625, -0.5957031, 0.8208008, 2.4570312, 1.4921875, -2.6679688, -1.2158203, -1.2529297, 4.984375, 0.27392578, 1.1816406, 0.8261719, -0.77978516, -1.8291016, 0.26171875, 0.75634766, 0.7089844, -0.46142578, -0.52978516, -0.5576172, 0.6557617, 1.5869141, 0.48388672, 0.18603516, 0.57958984, 0.07446289, -2.3945312, -1.1191406, 1.5566406, -0.09484863, -1.0019531, -1.8886719, 1.7958984, -1.6425781, -0.28515625, -0.42016602, 1.6455078, 1.8486328, 0.90185547, 0.45947266, -0.6123047, -1.9521484, 0.032440186, -3.0878906, -0.37109375, 0.94384766, 0.116882324, -1.2792969, 1.9912109, 2.4570312, 0.21191406, 3.7929688, -1.0654297, -0.99316406, -1.1298828, 2.2910156, 2.3027344, -1.1787109, -0.5419922, 1.7890625, 0.97802734, -0.13232422, -1.8027344, 1.9277344, -1.1240234, -0.39038086, -0.70947266, 0.37426758, -1.6445312, -2.3710938, -0.31445312, -3.3691406, -1.4794922, 2.0839844, -0.45751953, 2.8203125, -1.1083984, -1.1542969, 2.3339844, -4.4414062, -1.5839844, -0.09588623, -2.0058594, -0.14404297, 1.1367188, 1.8583984, 2.9433594, 0.8769531, -2.2832031, -0.095214844, 0.5029297, 0.7885742, -2.4765625, -0.71435547, 0.3310547, -0.6513672, -1.1689453, 0.6430664, 1.3945312, -0.39648438, 0.5205078, 0.5961914, -0.7729492, 0.15441895, 0.34033203, 0.5102539, -0.07385254, -0.32543945, -1.7705078, 1.2197266, 1.3671875, -0.7421875, -0.21472168, 0.089904785, -1.0371094, 1.5976562, -0.5473633, 1.5322266, -2.7304688, -0.4074707, -0.26489258, -0.5888672, -2.5625, -1.3847656, -0.51904297, -0.06008911, 1.3505859, -1.4541016, -1.4921875, -0.61328125, -5.2265625, -1.2099609, 1.2666016, -0.9086914, -1.1083984, -0.8125, 1.4179688, 1.3125, -3.6542969, 0.87402344, 0.5463867, 3.7128906, 1.90625, -3.5195312, -0.07489014, -1.5537109, 1.2695312, 0.87646484, -0.7421875, -0.5732422, -1.0546875, -1.7470703, -2.5546875, 1.5898438, 0.38452148, 0.14892578, 1.4960938, 0.40722656, -1.1533203, 1.1152344, -0.24133301, 0.6645508, 4.46875, -2.8417969, 1.2480469, 0.009109497, -0.28515625, 0.38256836, 0.3713379, -1.3154297, -1.0908203, -1.40625, -1.4580078, -0.39038086, -0.9033203, 0.70947266, -1.2910156, 1.609375, 0.59228516, 2.1679688, -0.62353516, 2.40625, -2.2988281, 0.47192383, -1.5820312, 1.3085938, 0.7290039, -1.0654297, -0.8066406, -1.7099609, -1.6904297, -1.3154297, -2.1113281, 2.3359375, 0.47143555, 1.3388672, 0.09106445, 1.1142578, -1.8857422, 2.7363281, -0.59472656, 3.7695312, -0.6323242, -0.83691406, -2.2773438, 0.68652344, -1.4287109, -1.9023438, 0.9238281, 1.3193359, -2.0234375, 1.3251953, 0.18151855, -0.6147461, -0.20727539, 2.3496094, 0.6791992, 1.0976562, 2.9238281, 1.6591797, -2.9101562, 0.22692871, 1.6240234, 2.5585938, -1.3447266, -0.08929443, 1.5380859, 0.578125, 0.45922852, 0.05218506, 0.6191406, 0.27270508, 0.31884766, 0.69970703, -1.1083984, -1.3886719, -0.57470703, -0.19494629, -1.2675781, -0.48388672, 2.0429688, -0.12976074, -0.21386719, 0.4152832, 2.3632812, 1.7675781, -4.234375, 2.2910156, 1.7578125, 1.7597656, 0.45336914, 0.06695557, -0.7470703, 0.25317383, -0.84228516, 1.3007812, -0.12512207, 1.1005859, -0.56396484, 1.7304688, -0.30493164, -1.5976562, -0.46923828, 0.1817627, -0.49121094, -1.2363281, 0.54785156, -0.038909912, -1.9667969, -0.08673096, -2.8808594, -0.71240234, -0.5288086, 2.9121094, -1.2675781, -0.41870117, 0.97998047, 2.6523438, -1.1445312, -0.09490967, -1.1181641, 1.3632812, -0.23291016, -0.04421997, -1.9882812, -1.6396484, 2.0097656, -0.17834473, 0.71777344, 2.1074219, -2.2851562, -0.38134766, -0.19555664, -0.7001953, 1.6083984, 0.5336914, 2.3691406, 1.359375, -1.7285156, 0.05758667, -3.4101562, 0.22729492, -0.48095703, -2.8105469, 0.8222656, -0.4128418, 0.14172363, 1.8867188, -1.4492188, 1.6201172, 0.44018555, 0.17370605, 0.4025879, -0.013832092, 0.5444336, -3.2617188, -2.6484375, 1.3525391, 1.0078125, 0.14855957, 1.4091797, -0.17114258, -0.8227539, 4.546875, -0.30688477, 0.25317383, 0.46557617, -1.1484375, -0.62890625, 0.15270996, 0.6040039, 1.9697266, -0.3371582, 1.6787109, -0.8964844, 0.35424805, -0.2841797, -0.15234375, 0.42749023, -0.84765625, 0.9892578, -1.2080078, 0.70996094, -1.5322266, 1.0419922, -3.6464844, 0.84033203, -0.9472656, 0.20019531, 2.15625, 0.86279297, -0.13244629, -0.30004883, -0.13659668, 0.9946289, -0.3395996, -4.5390625, 0.609375, 2.3457031, -0.6401367, -1.9853516, 0.31933594, 0.68408203, 1.3896484, -1.1484375, -1.0419922, -1.8310547, -1.5898438, 0.52246094, -0.007713318, 0.93115234, 1.2558594, -0.1619873, -2.8007812, -0.2919922, -0.71728516, -2.7109375, -2.4902344, -0.34350586, 0.6274414, -0.014511108, -1.8955078, 0.3864746, 0.22802734, 1.0253906, 1.6835938, -0.033111572, 0.45947266, 0.2919922, -1.0722656, 4.2617188, -1.3076172, -0.07989502, 1.5595703, -2.609375, 0.9848633, 1.4580078, -0.71240234, 1.9453125, -0.13122559, -0.56103516, -1.5908203, -0.8461914, -0.21313477, 0.6645508, 2.0039062, -0.24865723, 2.046875, -1.0380859, 0.97753906, 0.4362793, -0.8769531, 2.0117188, -0.58691406, 1.0126953, 0.6411133, 0.16918945, -0.8198242, -0.37426758, 2.3417969, 1.5703125, 0.7709961, 2.5742188, 2.90625, 0.5605469, -0.8442383, 0.32714844, 0.5366211, -0.8173828, 0.066345215, -0.92578125, -0.421875, 0.22937012, -0.4152832, 1.7246094, -0.64697266, 1.6601562, 0.32080078, -0.4255371, -1.1416016, 1.6347656, 2.4667969, -0.67285156, 1.1591797, -0.86083984, 0.03945923, 0.38256836, 1, -3.8515625, -0.033843994, -0.7104492, 0.2076416, 0.9765625, -0.8173828, -3.1074219, 2.1425781, -0.35131836, -0.31103516, 0.8876953, -1.5585938, 1.1582031, -0.4621582, -2.0546875, -0.66552734, 0.18395996, 2.6386719, 1.6279297, -1.2353516, 0.65625, -0.04135132, 1.0849609, -0.61328125, -0.79052734, -1.7880859, 0.099609375, 2.7890625, 2.5625, 1.9267578, -0.98291016, 2.2988281, -3.6621094, 1.1269531, -4.3867188, 0.87109375, -2.4277344, 1.8710938, 0.7675781, -2.359375, -0.46557617, -2.3359375, 2.5332031, -0.38452148, 1.7207031, 0.24829102, -2.0117188, -2.8613281, 1.4101562, -2.953125, -3.4785156, -1.4677734, -0.6323242, 2.0390625, -0.009429932, -0.73095703, -1.8339844, -1.0644531, 1.6679688, -1.0419922, -0.52441406, 1.6943359, 0.70458984, -1.2929688, -0.84472656, -0.58740234, -0.21875, 0.6748047, 1.3701172, 0.9980469, -2.0898438, -3.7382812, -0.9033203, 0.84814453, -2.6308594, -2.28125, 2.8613281, 0.012390137, 0.03579712, 2.7480469, -0.2019043, -0.90185547, 0.87109375, 0.74365234, -0.3486328, -1.4882812, -0.80322266, 3.4414062, -3.5957031, -0.37329102, -0.92333984, -3.1992188, 1.6650391, 0.15148926, -0.055664062, 0.9145508, -0.7895508, 0.88916016, -0.38891602, -1.1201172, 0.47631836, -1.2099609, 0.8847656, -0.79541016, -0.41015625, -2.9296875, -2.0527344, -1.4433594, -0.122558594, -0.15197754, -0.6689453, -0.45922852, -0.96972656, -0.5546875, 0.7988281, -0.5058594, 0.65527344, 1.1503906, 0.24133301, 2.3300781, 1.5185547, 1.1074219, 0.08654785, -1.1308594, -1.9462891, -0.18408203, -0.6220703, -1.7832031, 0.87841797, -1.8984375, -3.1035156, -1.0302734, 0.99609375, 0.31445312, 2.6191406, 1.6679688, -1.6279297, -1.8945312, -0.76171875, -2.3066406, 2.484375, 1.2636719, 1.6162109, -1.359375, 4.3320312, -2.5566406, 0.46289062, 1.7871094, -1.0751953, 2.3632812, -1.46875, -2.2519531, 0.58984375, 0.82373047, 0.5488281, 1.4042969, -1.5507812, -0.8623047, 1.6679688, 2.2871094, -0.33374023, -0.08178711, 4.1679688, -2.2832031, -0.62060547, 1.0185547, -0.8696289, -2.1582031, -0.041625977, 1.9589844, -1.2412109, -0.640625, -0.2208252, 1.8330078, 0.38330078, -1.1777344, 0.26538086, 0.6035156, 1.1435547, 1.6044922, 1.2695312, 2.3691406, -0.095947266, 2.3632812, 0.15673828, 1.0332031, 1.3095703, 1.6494141, -0.93603516, 0.7001953, 4.2460938, 0.6147461, -1.2861328, -0.77490234, 0.21118164, 0.4873047, 0.32226562, -1.6826172, 0.6142578, -0.8046875, -0.1842041, 1.7324219, -0.095336914, 1.0507812, -1.9160156, 1.1201172, 0.5620117, -0.5698242, -2.890625, 2.3554688, 2.0253906, 1.1904297, 2.2363281, 1.9316406, 0.037200928, 1.7070312, -1.8300781, 0.25756836, 0.96875, -0.81347656, -3.5898438, 2.6796875, 1.2363281, 0.7573242, 1.7783203, 1.8085938, 1.1640625, -1.0390625, 3.5644531, -0.07397461, 0.09887695, -1.296875, 0.22509766, 0.14050293, -0.74560547, -0.71240234, -1.5605469, 0.03817749, 0.18835449, 3.0957031, 0.03363037, 0.9736328, -0.7714844, -3.84375, -0.31396484, 1.7392578, 1.640625, -0.05496216, 0.52978516, -2.0507812, -0.8491211, -0.0013046265, 1.7734375, 1.3515625, 1.9589844, 1.2578125, -3.0449219, -0.87890625, 3.3652344, 0.74853516, 0.21203613, 1.5615234, -1.2646484, 1.4619141, -0.63378906, 1.5947266, -0.13586426, 1.046875, 0.4152832, 2.125, 1.7792969, 1.9628906, 2.2773438, -1.5869141, -0.50390625, -1.1035156, -2.1699219, -1.0439453, -0.734375, -1.1884766, -0.091430664, -0.64160156, -0.16125488, -0.3852539, -0.7788086, 1.4208984, 1.0927734, -0.12445068, -0.54345703, -1.5693359, -0.22546387, 1.3349609, -0.49145508, 0.6201172, -1.3076172, 0.8144531, -0.0018558502, 0.04989624, 2.1582031, -0.5932617, 0.45874023, -1.8681641, 0.7167969, 1.4804688, 0.77734375, 0.54003906, 0.27905273, -3.3242188, -1.1708984, 0.89453125, -0.30541992, 1.5410156, 0.86279297, -0.69091797, -0.35083008, -1.0791016, -1.3144531, 1.0888672, 0.64501953, -2.5273438, -0.73876953, 2.4765625, 1.6416016, 0.34155273, -1.9892578, -2.4785156, 1.2548828, 0.8310547, 0.4206543, 0.2241211, 0.21838379, -1.1523438, -1.5361328, 3.1582031, 0.4567871, -1.1308594, -0.74365234, -1.7128906, 1.0566406, 1.4003906, 0.4428711, 0.84814453, -1.1201172, 2.0058594, 2.4746094, 2.2148438, 1.4560547, 1.2685547, 0.74609375, 1.7675781, -2.3847656, 1.3212891, -1.3857422, 1.5107422, -0.69189453, -0.37646484, -1.0449219, -2.1503906, 1.7929688, -1.2822266, -1.2021484]}, "B081JMSBPF": {"id": "B081JMSBPF", "original": "Brand: A AIFAMY\nName: Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange\nDescription: FANTASTIC GIFT IDEAS for Father\u2019s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron\nFeatures: TOP PRANK GIFT -- the most lifelike body like human\u2019s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day\nJUST REAL -- a big belly apron with bushy hair, that\u2019s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun\nADJUSTABLE -- One size fits most; Size: Length is 29.5\" including neck strap 37\" approx, Width 26.3\"; give you a snug and comfortable feeling when wearing it\nMaterial:100% Polyester; machine washable\nPREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items\n", "embedding": [-0.3388672, 2.8476562, 1.7548828, -0.20861816, -0.6069336, -0.079711914, 1.0146484, -1.5830078, 0.57714844, -0.011116028, 1.1865234, -0.1550293, 2.4570312, -2.8984375, -0.65283203, -0.74853516, 0.6816406, 0.4658203, 0.5, 0.40527344, 1.328125, -1.234375, 2.2617188, 0.6953125, 0.014724731, 0.30151367, 3.4804688, -1.5302734, 1.4541016, 1.8349609, 1.3447266, 0.97753906, 0.37548828, 1.7998047, -2.1796875, 0.62402344, 0.3791504, -0.3708496, -0.5756836, 0.2680664, -1.1337891, -2.2578125, 1.9433594, 1.6962891, -4.4023438, 0.296875, -0.41137695, 1.8857422, -1.5625, -2.7753906, 0.2310791, 2.1308594, 1.09375, 0.60791016, -1.5292969, 2.5839844, 0.7573242, -1.671875, -0.07434082, -1.5957031, -0.6411133, 0.15185547, 0.20727539, 0.2775879, 1.6494141, -1.4208984, -0.41796875, -0.86865234, 0.15783691, -1.5429688, 0.28222656, -0.43286133, -1.5400391, -0.5415039, -0.44213867, 2.4570312, 0.44750977, 0.28051758, 1.2490234, -0.40063477, 1.7734375, 2.4785156, 0.5214844, -2.7207031, -0.7314453, -1.5449219, -1.9023438, 0.43725586, 2.0527344, 0.66259766, 1.9433594, 3.3886719, -1.7529297, -5.4023438, 1.7685547, -2.2382812, -0.63378906, -2.3046875, 0.5292969, 3.5351562, -1.5605469, -1.40625, 1.6630859, 2.3789062, -0.67089844, -1.0703125, -0.73046875, -0.01902771, 0.16247559, -1.0166016, -1.8496094, 0.68066406, 2.2753906, 0.8808594, 2.2421875, 1.7333984, -0.6870117, 1.2011719, 1.6318359, 1.1708984, 1.8925781, 0.52490234, 2.1835938, -1.4882812, -1.1875, 0.005130768, -1.5507812, 2.3789062, 3.0117188, 0.25976562, 0.89941406, -1.0126953, -1.3183594, -0.18029785, -1.6298828, -1.1425781, -0.2536621, -0.21984863, -0.05380249, 2.1464844, 0.20385742, -0.8261719, 1.0107422, -0.08428955, -0.6381836, 0.13171387, -1.9414062, 1.8417969, 0.5683594, -1.7744141, 1.5585938, -1.5253906, -0.42626953, -0.0619812, 1.1679688, 0.87841797, 0.004219055, -1.2890625, 1.6796875, 0.6582031, 2.0175781, -2.1269531, 1.8828125, 1.1367188, 0.96875, -2.6679688, -1.2597656, 0.3400879, -0.15563965, 2.0273438, 0.47875977, -2.3828125, 2.8046875, -0.1583252, 0.70947266, -1.3212891, -0.42285156, 0.50439453, 0.17651367, 0.7285156, -0.28881836, -1.7998047, 0.80810547, 1.59375, 0.1161499, -2.0722656, -3.5351562, -1.0175781, 0.42114258, -1.234375, -0.8203125, -1.5478516, -0.7114258, 1.2421875, -2.4667969, -2.1738281, 1.2851562, -0.14367676, 0.14538574, 1.3339844, -0.8984375, -1.0800781, -0.609375, 0.01914978, -1.8320312, -1.4892578, 1.7011719, -1.953125, 2.2753906, 0.7138672, 0.7241211, 0.08911133, 1.9345703, 2.4960938, -0.81347656, -0.7167969, 0.20141602, -2.8945312, 1.6103516, 0.08868408, -1.8457031, 2.546875, 0.25976562, 1.4765625, -0.484375, 1.1445312, -0.26611328, 1.09375, 0.09033203, -0.58691406, 0.8442383, 0.13989258, -0.74121094, 0.03488159, -0.40942383, 0.19250488, 1.3808594, -2.0234375, -1.4863281, -0.3227539, -1.2841797, -2.78125, -3.2890625, -1.3681641, 0.5942383, 1.9755859, -1.9716797, 2.1484375, -1.0976562, -0.29736328, 1.1601562, -0.43676758, -0.6972656, -0.484375, -0.45288086, 1.640625, -1.8144531, 1.2705078, -2.6308594, -0.66796875, 0.8833008, 0.2578125, -0.43798828, 3.1699219, 1.5039062, 1.1298828, 3.5371094, -0.46069336, 0.13842773, 0.23925781, 2.7304688, 2.4492188, 1.7314453, -1.8115234, 1.1210938, 1.3994141, -1.2373047, -0.42626953, 0.9379883, -1, 0.14782715, 0.67822266, -0.13903809, -0.94384766, 0.03918457, 0.82128906, -1.9628906, -3.3378906, 0.7709961, 1.9873047, 2.8359375, 0.064819336, 0.4489746, 2.0585938, -0.42163086, 1.2519531, -0.059295654, -2.2949219, -1.4765625, -0.12780762, 0.98291016, 0.07867432, 0.72753906, 1.9882812, -0.27148438, -0.7993164, 0.051086426, -0.9448242, -0.60839844, 1.0732422, -0.048217773, -1.4599609, 0.27026367, 0.35083008, -2.4550781, -2.625, -0.640625, 0.37158203, 0.22802734, 0.8857422, 2.6640625, 1.6240234, -0.73046875, -2.0117188, -0.53808594, 1.4082031, -2.7441406, 1.9511719, 0.18286133, -0.6660156, 1.1894531, -0.22692871, 0.9296875, -1.7714844, -1.6142578, -0.007041931, -0.5366211, 0.11431885, -0.022018433, 0.8935547, -1.2617188, -0.7636719, -3.0253906, 1.2871094, 0.5576172, -1.8203125, -0.09472656, -0.045288086, 0.28759766, 1.0644531, -0.54833984, -0.99072266, -0.0015544891, -4.4179688, -0.14916992, 1.2607422, 1.859375, 0.5463867, -1.9492188, 1.1484375, -0.83935547, -0.6430664, 2.1074219, -0.13220215, -0.53027344, -0.16918945, -0.14257812, -2.8320312, 1.515625, -0.8027344, 0.21594238, 0.23608398, 1.2363281, -1.2509766, -0.6113281, 0.20910645, -1.8496094, 4.0390625, -0.1182251, -0.86621094, 1.1123047, -1.2197266, 1.1611328, 1.7763672, -1.4355469, -1.1796875, -0.15588379, 0.37109375, -0.62060547, -3.5605469, 0.40307617, -1.0703125, 1.1289062, 0.20471191, 2.0253906, 1.2138672, -0.70654297, -2.4765625, 1.0097656, 0.22998047, 0.87353516, 0.46118164, -1.5371094, -0.5854492, -1.4541016, -0.48168945, -0.109191895, -1.0693359, 3.4238281, -1.4375, -0.15270996, -0.8491211, 0.044067383, -3.2734375, -0.9423828, -1.9960938, 0.8745117, 2.3671875, -0.37353516, -1.5019531, 0.9707031, 0.5761719, -0.30981445, 1.0390625, 0.17602539, 1.4404297, 2.7402344, 1.4746094, 1.6337891, -0.29736328, 2.9882812, -0.58496094, -0.33764648, 2.2871094, 1.3125, 0.2824707, -0.10333252, 0.40722656, 1.5273438, -2.4941406, 0.56152344, 1.7441406, 0.40185547, 0.08404541, 0.22570801, 2.765625, 0.71875, -0.3071289, 2.546875, -1.6162109, 0.49951172, -0.76464844, -0.11517334, 0.4411621, -0.8876953, 1.6337891, -0.2397461, -0.035217285, 1.5136719, 0.51220703, -0.9057617, -0.69140625, 2.1757812, 0.80322266, -0.69384766, 1.6630859, -0.43432617, 0.074645996, 0.79345703, 2.8242188, -1.2998047, 1.9101562, -0.9609375, 0.9248047, 1.1103516, -0.14550781, -0.953125, -0.828125, -1.2988281, 0.59375, -1.796875, -2.3457031, -2.0722656, -1.9472656, -0.45239258, -1.8964844, -1.2148438, 0.640625, 2.6640625, -2.6953125, -0.97265625, -1.3007812, 0.8881836, -2.9433594, 1.2441406, 0.31982422, 1.4628906, 0.76904297, 2.9140625, 0.39697266, -1.3847656, 1.7783203, -2.453125, 0.16821289, 1.5283203, -1.921875, -1.1572266, -0.51464844, -0.17028809, -1.0351562, -2.2617188, -1.1992188, 3.2753906, -1.6943359, 0.42504883, -1.1640625, 0.3803711, 2.3398438, -1.2294922, -0.2590332, -0.078125, -0.041931152, 0.6357422, 0.6386719, 2.9394531, -0.7529297, -0.421875, 1.4414062, 0.62402344, -0.16564941, 0.13269043, -2.2871094, 0.051330566, 1.1162109, -1.1376953, 4.0976562, 0.08538818, 0.796875, 3.4257812, -0.29125977, 0.3779297, 0.14746094, -0.7714844, -1.4863281, 0.3161621, -0.7314453, 1.0117188, 0.14282227, -0.20776367, 0.33325195, -0.09844971, -1.921875, -1.0810547, -0.057434082, -1.0078125, -0.35742188, -2.6679688, 0.88720703, 0.12194824, 0.53222656, -1.1523438, -0.8696289, -0.32299805, -0.039794922, 2.9511719, -0.8383789, 0.38989258, -2.8476562, 2.8378906, 1.3339844, -0.14758301, -3.3359375, -0.32128906, 2.8613281, -0.29785156, -2.5175781, -0.7607422, -0.49194336, -1.2255859, 0.39282227, 0.16601562, 0.97265625, -0.7939453, -1.4443359, 1.9326172, 0.45507812, -0.14135742, -0.2878418, -2.4882812, 0.76416016, 0.765625, -1.1337891, -2.2421875, -0.30786133, -0.1640625, 1.1337891, -2.0097656, -1.5263672, 0.9707031, 1.1123047, 2.5800781, -0.8613281, 2.7441406, -0.18640137, 0.63916016, 6.1835938, -0.40698242, -0.63671875, -0.22399902, -0.97558594, 1.4482422, 1.5410156, -0.14819336, 2.1640625, -2.5253906, 0.4975586, -0.6557617, 1.2773438, -0.9482422, -0.72509766, 1.3076172, -0.5214844, 0.75439453, 0.8666992, 0.045654297, -1.4326172, -1.4189453, 2.7675781, -1.3085938, 0.8955078, 2.2773438, -0.8852539, 0.12756348, 1.8916016, 0.5102539, 0.94189453, -0.9785156, -0.17773438, -1.25, -1.1416016, -1.3017578, 0.484375, -0.6826172, 0.13537598, -0.43310547, 0.5932617, 0.9277344, -0.07159424, -1.9345703, 1.6621094, 3.1367188, 0.71728516, 1.4667969, -1.3339844, 0.55908203, 0.06097412, 1.6162109, -3.2070312, 0.0043907166, -0.089660645, -0.02128601, 2.8125, 0.59472656, -0.7993164, 0.39257812, -0.4013672, 0.16955566, 1.7519531, 0.88720703, -1.7353516, 0.08959961, -2.9472656, -2.2402344, 1.0546875, -1.4697266, 0.066223145, -0.9785156, -1.0253906, -3.8789062, -0.6201172, 3.0898438, 1.9013672, -0.41333008, 0.46142578, -0.9301758, -2.2714844, -2.53125, -1.3818359, -2.0839844, -0.47143555, 1.2626953, 2.375, 0.9394531, 0.93847656, 1.3085938, -0.28466797, 2.5410156, -0.4086914, 2.4316406, -1.1845703, -0.12792969, 1.2070312, -1.1523438, 0.42114258, 0.38183594, 0.6845703, 0.765625, 1.9814453, 0.28515625, -0.7314453, -0.048339844, -1.4716797, -1.8037109, -2.8066406, -1.3359375, 1.6533203, -0.021270752, -0.85595703, -0.31054688, 1.2861328, 0.35742188, -3.0742188, -0.042114258, -0.6376953, -0.43408203, -0.12463379, -0.5625, -1.0273438, -2.1777344, -0.06573486, -0.07525635, 1.3583984, -1.8378906, -0.5283203, -1.890625, -1.8085938, 1.1425781, -5.25, -3.515625, 1.1601562, -0.17626953, 0.8095703, -0.6459961, 4.71875, -1.0361328, 1.5087891, -2.5039062, -0.24438477, -2.7226562, -0.3256836, 1.6240234, -1.7246094, -1.5214844, 1.0224609, -1.9570312, 3.3417969, 0.92041016, -0.55029297, 4.125, -1.4238281, -0.3251953, 0.7807617, 0.04135132, 1.9433594, 1.8867188, 2.203125, -0.51220703, 0.06951904, -3.3398438, -1.7626953, 0.066467285, -2.2148438, -0.87841797, -0.70214844, 1.0351562, 1.2675781, 0.97265625, 1.9853516, 0.44628906, 2.6503906, -0.68115234, 0.1328125, -0.13952637, 0.31982422, 2.2460938, -0.40112305, -0.734375, -1.1738281, 1.4628906, 1.0507812, 0.75341797, 0.8769531, -2.0683594, -2.3476562, -0.056793213, 0.17126465, 0.9326172, 2.25, 0.5307617, 0.5776367, -0.15136719, 0.39208984, -2.2324219, 0.37646484, 0.94433594, 1.6542969, -2.3339844, 4.1484375, -2.1914062, -2.875, -0.28320312, 0.40795898, 1.8935547, 0.30273438, -1.6728516, -0.30786133, -2.9648438, 0.39257812, -0.1517334, -2.0234375, -1.7832031, -0.07208252, 0.01890564, 0.19116211, -0.37036133, 2.9394531, -0.31176758, -0.39697266, 1.2158203, -2.0429688, -1.4414062, -1.3779297, 0.90185547, -0.6645508, 1.140625, -0.9291992, 1.2978516, 1.2089844, 0.26782227, -1.3242188, 0.43139648, 1.0888672, -0.6040039, 2.09375, 2.6152344, -0.049926758, 3.5878906, 2.2226562, 0.07147217, 1.1767578, -0.6225586, -0.10656738, 0.86376953, 5.015625, 0.4873047, 1.2666016, -1.2050781, 1.9414062, 0.09320068, -1.0498047, 0.09906006, 2.1601562, -2.71875, 0.092163086, -0.50146484, 1.1220703, -1.5927734, -0.6694336, 1.4414062, 0.1673584, -1.3554688, -2.1894531, 0.37963867, 1.1875, -0.9897461, 1.2138672, -1.8876953, 2.390625, 0.91552734, -2.1933594, 0.73535156, 0.5263672, 0.20544434, -0.69628906, 3.71875, 2.2578125, 0.99072266, 0.33569336, -0.8154297, 0.05569458, 1.2626953, 1.2363281, 0.29052734, 0.3557129, -0.6923828, 0.042114258, -0.17126465, 0.4716797, -0.15734863, -2.3398438, 0.18371582, -0.0021877289, 0.8310547, -0.18017578, -0.8618164, -1.1591797, -4.0234375, 3.1757812, 1.3984375, 1.7988281, 0.57128906, 0.77441406, -1.2294922, -0.6245117, -0.59472656, -0.1184082, -0.8544922, 1.4589844, 1.7060547, -3.0371094, -0.111328125, 2.1035156, 1.6171875, 0.5107422, -0.27197266, -1.4873047, 2.3085938, -0.22167969, 0.69189453, 1.0810547, 1.0986328, -0.5449219, -0.6899414, 1.5273438, 1.1904297, 1.7988281, -2.4746094, 1.8867188, -2.1015625, 1.6845703, -1.1962891, -1.5283203, -2.8046875, -0.8911133, 0.07714844, -0.7133789, -0.1652832, 1.2451172, -0.7792969, -0.014160156, 0.074401855, 0.25268555, -2.4492188, 0.05126953, 0.82958984, -1.5585938, -1.0078125, -2.4140625, 0.40649414, 0.55859375, -0.103881836, 0.27294922, 0.6269531, -0.4753418, -0.5415039, 0.95996094, -2.1757812, -1.7695312, 0.27929688, -0.4177246, -1.2802734, -2.1367188, -1.1533203, -0.9609375, 0.65966797, 3.8300781, 0.8071289, -0.34594727, -0.7602539, -1.0234375, -0.54052734, -0.9272461, 0.38012695, 3.8457031, 1.1679688, 2.0800781, -1.8828125, -1.2617188, -1.8095703, 0.19750977, -4.171875, -0.14135742, 0.9926758, -2.1464844, 1.0625, -1.0634766, 1.15625, -2.5859375, -2.2304688, 0.9301758, -0.95947266, 1.1757812, -1.7128906, 1.5419922, 1.0839844, -1.0585938, -0.75390625, 1.8798828, 1.3867188, 1.8945312, 1.0703125, 2.7167969, 0.9223633, -0.5004883, 0.66015625, 1.25, 1.9609375, -0.99609375, 1.7958984, -1.1171875, -0.16784668, 1.3515625, -1.421875, -0.7265625]}, "B07F7LR53H": {"id": "B07F7LR53H", "original": "Brand: Exquisite\nName: Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round\nDescription: Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

Colors:\u00a0Red, Blue, Black, Teal

Sizes:\u00a084 inch. Round, 54 Inch. x 108 Inch. Rectangle\u00a0

What you get:\u00a012 individually wrapped disposable tablecloths

Uses:\u00a0These premium quality table covers are great for Bbq's, picnics, camping, outdoors\u00a0 \u00a0 \u00a0 \u00a0 events, parties, and any other gingham themed event

\nFeatures: PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!!\nSPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!!\nHIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event.\nDISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it.\nSELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.\n", "embedding": [0.5576172, -1.1328125, 2.4882812, -2.1601562, 2.8105469, -0.4650879, -1.1601562, -2.3613281, 0.90771484, -0.54345703, -0.5917969, 1.7431641, 3.7753906, -3.5390625, 0.15026855, 1.4697266, -0.12634277, 2.25, 2.2011719, -2.5898438, -0.15429688, -0.9067383, 1.0878906, -0.36791992, 1.3398438, 0.13439941, 2.3164062, -2.3515625, -0.9355469, 2.1757812, 3.1386719, 1.828125, 0.8208008, 2.3886719, -0.90625, -0.875, 1.3398438, -0.6855469, 0.29370117, -0.21008301, -1.1318359, -2.4667969, 1.7929688, 2.0351562, -2.5859375, -0.0993042, -2.109375, -1.9941406, -2.890625, -2.9824219, 0.29077148, -0.031158447, 2.9472656, 0.0793457, -0.19006348, 0.9716797, -0.6010742, 1.1054688, -0.27148438, 0.56347656, 1.2402344, -0.8964844, 1.4794922, 3.328125, -0.64990234, -1.0878906, -1.3134766, -1.3583984, -0.46069336, 0.59716797, -1.4189453, 0.7758789, -1.9267578, -0.19628906, -0.44799805, 1.3505859, -1.5439453, 1.7910156, -0.40795898, -2.6953125, 0.4111328, 1.1347656, 0.12854004, -2.8925781, -0.8754883, -1.5322266, -1.109375, 1.1367188, 0.04727173, -1.5820312, -1.2802734, 1.1376953, -1.7880859, -4.4414062, -0.051940918, -4.1210938, 1.9111328, -0.88427734, 0.9848633, 3.3085938, -1.6347656, -1.5029297, 1.6083984, -0.54248047, -0.7114258, -1.5751953, 2.9453125, -1.4521484, -1.4707031, 0.23522949, -1.5273438, 0.1373291, -0.103027344, 0.02482605, 1.7773438, 1.8164062, -0.3251953, 1.6601562, 0.87841797, 0.2109375, 2.0664062, 1.0205078, 1.3935547, -1.6884766, -0.019805908, 0.6323242, -1.8535156, 1.4794922, 2.7988281, 0.88964844, -0.23913574, -0.07305908, -0.34765625, 0.99658203, -2.4785156, -1.1689453, -0.77490234, -1.6142578, -2.1679688, 2.3457031, -1.8623047, -2.1035156, 1.1660156, -0.28173828, -0.8208008, 0.65722656, -1.5126953, 3.0078125, -0.12512207, -1.4082031, 0.25610352, 0.42138672, 0.6269531, -1.3359375, 0.05810547, 0.28833008, 2.7929688, -0.73535156, 3.3515625, 2.3964844, 1.4921875, -3.4140625, 0.51464844, 0.31640625, 2.5390625, -1.1455078, 0.08758545, -0.62841797, 0.69628906, 0.8276367, 0.77734375, -1.0263672, 1.4541016, -0.18444824, 0.14587402, 0.1505127, -2.1542969, 0.72265625, 1.3017578, -2.0214844, 1.0888672, -1.2324219, -1.0253906, 0.17224121, -1.0058594, -2.1289062, 0.4309082, -1.2431641, -1.6220703, -1.125, -1.1005859, -0.11798096, -2.5996094, 0.55078125, -3.9863281, -1.9677734, -0.6411133, 0.60839844, -0.9970703, 3.1621094, 0.50878906, 0.39282227, -0.3215332, -1.3505859, -2.5429688, -1.9111328, 0.29785156, 1.1728516, -0.73046875, -1.9160156, -0.71484375, -2.2421875, 2.6914062, 1.3896484, -1.2851562, 0.004486084, 0.35961914, -0.9584961, 0.8022461, 0.81640625, -0.11853027, 0.92333984, -1.5996094, 2.7695312, 0.40576172, -0.76708984, 1.4580078, -0.103759766, -0.3564453, 0.4650879, -1.7734375, 1.7695312, 0.27734375, -0.1541748, -0.1821289, -0.045196533, 0.9604492, -2.3105469, 0.22851562, -1.7021484, 0.28393555, -2.6933594, -2.5664062, -0.7470703, 1.8251953, 0.24365234, -0.41967773, -0.03567505, -0.12109375, -1.6953125, -1.3330078, 1.6748047, 1.1972656, -0.26123047, -1.3300781, 0.8779297, -0.41870117, -2.3320312, -1.7792969, -2.5253906, 0.08618164, 1.6591797, -0.3215332, -0.5703125, 0.47192383, 1.8193359, 0.25512695, 0.43579102, -1.5742188, 0.27734375, -0.58154297, 0.46435547, 1.7324219, -1.5195312, -1.5039062, 0.099487305, -1.5332031, 0.2902832, 1.3925781, -1.125, 0.35107422, 0.70947266, 2.5898438, 0.13623047, -0.17443848, -0.9716797, -0.7319336, -0.00920105, 0.017974854, 0.9042969, 2.7460938, -1.9707031, -0.7216797, 1.453125, -0.99121094, 0.012268066, -0.09741211, -3.1367188, -1.1240234, 1.0585938, 0.78027344, 1.5908203, 0.21740723, -0.72753906, -1.1572266, -0.6982422, -0.5629883, -0.90283203, -1.2392578, 0.9892578, -0.07977295, -0.17028809, 0.5488281, 1.0683594, 0.83984375, -1.6054688, 1.4980469, -0.14086914, -0.5878906, 1.8242188, 0.8569336, 0.18908691, -2.1445312, -2.671875, -1.4443359, 1.7539062, -4.1484375, -0.67333984, 0.17993164, 0.55615234, 1.6787109, -0.5209961, 1.3652344, -0.9550781, -1.5546875, -0.15466309, -2.6757812, -0.5205078, -3.6679688, -2.1230469, 0.46679688, -1.6181641, -3.8730469, 2.5957031, 3.2128906, -0.92333984, 0.9682617, 0.15332031, -0.119628906, 0.06542969, 0.02130127, -2.0585938, -0.3630371, -3.5117188, 1.8681641, -0.14099121, 0.3005371, 1.2138672, -1.4052734, -1.0810547, 1.0361328, 2.0664062, 1.9697266, -0.13745117, -1.5771484, -0.42333984, -2.8671875, -2.0039062, 0.39575195, 0.5878906, 1.9375, -1.2744141, 1.3867188, -2.7089844, 1.6767578, -0.8305664, -0.5336914, 4.7109375, 0.114868164, 0.46362305, 1.0029297, 0.03463745, -0.83984375, 0.4345703, -1.6367188, 0.9428711, 0.44140625, -0.21557617, -2.9394531, -2.7832031, -1.4033203, -0.35839844, -1.2304688, 1.3310547, -0.20935059, 1.9091797, 2.9667969, -3.1503906, -3.0390625, -0.78466797, 4.1875, -1.1318359, -1.0439453, 1.0029297, -2.8007812, 0.1340332, -0.6333008, -1.8867188, 2.3691406, 0.4033203, 0.93847656, 0.4572754, -1.1357422, 0.64208984, 1.3427734, -1.4404297, 2.53125, -0.7636719, 2.21875, -0.3322754, 1.2246094, 0.8486328, 0.5932617, -0.3955078, 0.6386719, 0.6870117, 2.125, 0.74560547, 1.8847656, 0.4025879, 0.7480469, -1.8876953, 1.6611328, 2.5019531, -0.029037476, 0.2208252, -2.09375, -0.90234375, 0.20996094, -2.3398438, 0.11584473, 1.5302734, 1.1054688, 0.018173218, -0.3791504, 0.47583008, 1.9941406, 0.1538086, 4.078125, -1.6416016, 1.6943359, 0.41674805, -0.87646484, 0.61865234, 0.7993164, -0.67871094, 2.7128906, 1.9414062, -0.125, -1.3681641, -0.105895996, -4.6679688, 1.7402344, 4.0664062, 0.9946289, 1.9355469, 1.4873047, -1.1083984, 0.7114258, 4.5703125, -0.15185547, 0.2376709, -1.4570312, 3.6972656, 1.7402344, -1.1660156, 0.16491699, -1.4121094, -2.5351562, -0.10168457, -2.6894531, 0.47705078, -2.3066406, -2.2363281, 1.5234375, -4.7109375, -0.8173828, 1.4433594, 4.0507812, -1.25, -1.2236328, -1.4228516, 1.0478516, 0.032043457, 1.5947266, 0.20019531, 1.5771484, -0.5253906, 2.2871094, 0.6699219, -1.7919922, 1.6103516, -1.5371094, 0.18115234, 2.2910156, -2.7304688, -1.2539062, -0.62402344, -1.4794922, -0.8017578, 0.6557617, -0.5571289, 1.9023438, -1.7841797, -1.7753906, -0.3059082, -0.4345703, 2.0214844, -1.4404297, -0.58740234, -3.1113281, -1.3056641, 0.046539307, -1.6103516, 0.6508789, -0.18164062, 0.23522949, 0.87939453, 0.82958984, -1.1601562, -0.45141602, -3.2128906, -0.9111328, 0.1307373, -1.5634766, 0.46166992, 1.1787109, 0.6879883, 4.84375, -1.2744141, 0.45898438, 2.6835938, -1.9169922, -1.8320312, -0.71533203, -0.26708984, 0.46191406, -0.42626953, 1.3896484, -1.4335938, -0.9609375, 1.7861328, -1.6357422, 0.51904297, 1.2021484, 1.9375, -3.0195312, 1.9335938, 0.78027344, 1.5361328, -0.81396484, -0.62597656, -1.5996094, 0.70996094, 3.6621094, -0.48364258, 0.11444092, -1.5185547, 1.0380859, -1.7529297, -0.7265625, -2.9453125, 0.8432617, 2.6269531, -1.5585938, -1.2070312, 0.23620605, -0.84277344, 0.9003906, -0.50927734, -0.82421875, -0.9272461, -1.5117188, -2.546875, -0.05819702, 1.1816406, 0.84521484, -0.30664062, -1.5019531, 1.3398438, 1.5, -3.7519531, 1.1171875, -1.6308594, 0.7363281, 3.0371094, -0.06933594, -1.7470703, 0.45288086, -1.4941406, 1.3505859, -0.33740234, 5.1484375, 0.06311035, 1.9560547, 6.3984375, -3.0019531, 1.0888672, 2.5136719, -0.6191406, 2.6386719, 0.0814209, 0.9194336, 2.0117188, 0.1484375, 0.4753418, -1.3056641, -0.7207031, 0.21984863, -0.5683594, -0.21911621, -0.83203125, 3.5996094, 0.58935547, 1.8671875, 0.8129883, -1.3515625, 2.1503906, -1.2080078, 1.9921875, 0.49121094, 0.8041992, -0.76416016, 1.5810547, 2.6132812, -0.51220703, -1.0429688, -1.1865234, -0.6635742, -0.51708984, -1.6523438, -2.5585938, 1.9912109, -1.6269531, -0.003276825, 0.27246094, -0.122924805, -0.57128906, -1.3027344, 1.8720703, 2.8320312, 0.20043945, -0.36132812, -0.089416504, -0.5185547, 3.5878906, 2.328125, 1.0771484, -0.79003906, 0.8076172, 1.8193359, 1.2265625, -0.08544922, -1.4296875, -1.0419922, -1.4560547, 0.37182617, 2.5, 1.2949219, -2.2265625, 1.7265625, -1.3925781, 0.5834961, 0.58984375, -0.73291016, -0.34326172, -1.8837891, 1.609375, -0.6699219, -0.40161133, 2.9863281, 1.3046875, -1.8037109, -0.8642578, 2.1113281, -0.5708008, -0.47924805, 1.0126953, -2.5234375, -1.9052734, 0.13269043, 1.4785156, 1.1201172, 1.4482422, 2.40625, -2.3417969, 2.0332031, -3.8046875, 0.27294922, -2.8710938, -0.49780273, 3.4921875, -4.0976562, -0.4946289, -0.12011719, 2.2636719, 3.1210938, 0.32177734, 0.29077148, 0.20874023, -2.7578125, 0.44555664, -2.8984375, -1.5986328, -1.0849609, 0.48339844, -0.75878906, -1.8398438, -2.734375, -0.38256836, -0.33569336, -0.58935547, 0.01914978, -0.20581055, 0.026382446, -0.3955078, -3.2988281, 1.3779297, -0.31762695, -0.6489258, -1.5322266, -2.8632812, 2.015625, -0.2614746, -2.8886719, -0.3034668, 2.78125, -3.390625, -1.5556641, 0.8979492, -1.3808594, 2.9003906, 0.93408203, 0.80029297, 1.6230469, 0.7348633, 1.0966797, -0.53808594, 0.49560547, -0.2322998, -0.12634277, -2.9921875, -0.89160156, 2.7128906, -0.9194336, 1.3994141, 0.90722656, -0.37280273, 2.734375, -0.11706543, -0.6269531, 0.24182129, 1.2216797, 0.7270508, 2.0039062, 1.4023438, -0.44506836, 0.77490234, -2.6953125, -1.5419922, -2.9785156, -3.0664062, -2.5078125, -0.5205078, -0.33618164, 0.19165039, 0.3635254, -0.14746094, 2.9238281, 3.8027344, -0.1953125, 0.78564453, -2.2207031, 2.0761719, 1.6132812, -1.0908203, -0.80810547, -0.13110352, 1.0439453, 1.0859375, 0.12109375, -1.0166016, -0.12585449, -2.0859375, -1.2255859, -0.21166992, -0.66503906, -0.27929688, 1.5039062, -0.1932373, 0.36816406, 1.9892578, -0.59716797, 1.3408203, -1.7246094, 0.93896484, -0.85302734, 3.0371094, -0.5957031, -3.5722656, 0.06262207, -1.5751953, 1.9199219, 0.2253418, -0.6459961, 1.1611328, 1.2626953, -0.3972168, -2.8085938, 1.796875, -1.6816406, 2.1757812, -0.7651367, 1.1142578, -0.26733398, 2.3457031, -0.57470703, 1.1181641, 2.3671875, -3.7714844, -1.4833984, -0.8017578, 0.3244629, -0.016311646, 0.35327148, -1.4492188, 1.0742188, 0.33691406, -0.6328125, -1.5712891, -0.9863281, -1.6806641, -1.0595703, 2.6464844, 2.5410156, 0.5019531, 2.1621094, 3.2246094, 0.07873535, -0.5283203, -0.6088867, -0.47802734, 1.7265625, 4.3945312, 1.0166016, 0.99072266, -1.6435547, 0.8769531, 0.7783203, 0.7558594, 0.038269043, 0.7998047, -0.72216797, -1.1894531, 0.062927246, 1.2617188, 1.2607422, 1.8535156, 0.6074219, -0.14001465, -0.5019531, -0.18273926, -2.5957031, 3.3046875, 0.72265625, 0.4091797, 0.5678711, 2.2324219, 0.5727539, -0.8383789, 1.0322266, 0.37451172, -0.0491333, 0.057769775, 0.65185547, 2.890625, 2.7167969, 0.99609375, 0.9248047, -0.11846924, 1.9443359, 2.2207031, 1.0556641, 2.1816406, -0.30322266, -0.40478516, -1.2519531, -0.5058594, -2.2265625, 0.4663086, 3.7929688, -0.91845703, -0.4338379, 1.8037109, 0.70947266, 0.16333008, -4.8945312, -0.9453125, 3.0722656, -1.0683594, -2.3027344, -1.3291016, -2.6640625, 0.27954102, 2.9355469, 0.6591797, 0.18896484, 1.0820312, 1.5498047, -1.5117188, 1.3037109, 2.15625, 0.7265625, 1.8828125, 0.33569336, -0.9082031, 1.3017578, 1.2919922, 0.7451172, 1.2119141, 0.9189453, 1.4570312, -0.6430664, 0.6801758, -2.59375, 1.7080078, -1.6572266, 0.8305664, 0.82177734, 0.6772461, -0.4584961, -0.25195312, -1.7441406, 1.2158203, -1.0615234, 0.14160156, -1.8154297, -0.70410156, -0.5390625, -0.74365234, 0.019821167, 0.78222656, -1.7939453, 1.5439453, -0.061553955, -1.7138672, 0.91552734, -1.6054688, 0.8286133, -0.8227539, -0.08428955, -0.1986084, 1.2783203, -0.61572266, -1.3085938, 1.0253906, 0.33544922, 1.1621094, 2.5332031, 0.61083984, -2.6660156, -0.050598145, 0.16784668, -1.1542969, 2.0839844, 0.5463867, -0.17980957, 0.0022449493, -0.3630371, -1.0898438, 2.890625, -1.1376953, -1.6054688, 1.1835938, 2.8945312, 4.4335938, -1.4462891, 2.1796875, -2.2246094, 0.9526367, -1.4345703, 2.2734375, 2.1425781, -1.6708984, 0.068359375, 1.2431641, 3.4609375, -2.3769531, -3.6425781, -0.1706543, 0.6582031, -1.0986328, -3.9160156, 1.4658203, -0.8198242, -0.49536133, 2.0820312, 0.65625, 3.9960938, 1.1357422, 1.4394531, 4.1328125, -0.19262695, -0.11279297, 1.7568359, -0.98339844, 0.21472168, -1.3251953, 1.1347656, 0.99121094, -1.1337891, 2.0019531, -0.9316406, 0.20935059]}, "B07FSVCSSL": {"id": "B07FSVCSSL", "original": "Brand: EG\nName: Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook\nDescription: \nFeatures: A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases.\nPORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks.\nVISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane.\nADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-).\nLIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.\n", "embedding": [-1.6503906, 0.94384766, 2.09375, 1.4511719, -0.47607422, 1.3261719, 0.23669434, 0.58154297, 2.0585938, 0.50341797, 0.9589844, -0.24157715, 1.1630859, -1.3984375, 1.2802734, 0.6542969, 0.36157227, 1.46875, 0.19799805, 2.4960938, 3.3867188, 1.7607422, 0.3466797, -1.1679688, 0.07611084, -0.037719727, 3.9589844, -2.046875, -1.3232422, -2.2128906, 1.2949219, -0.28393555, -0.7089844, 2.2558594, -1.0419922, -0.92041016, 0.7036133, -1.2363281, -0.39819336, -1.3642578, -0.46557617, 0.34228516, -0.27929688, 0.32543945, -2.4667969, -1.2275391, -1.5419922, -0.79785156, 0.3852539, 0.10784912, 1.0908203, 0.11859131, -2.2363281, -0.50878906, 0.27172852, 1.1162109, 2.8457031, -0.71875, 0.40234375, 1.0078125, 1.1083984, 3.0371094, -1.4082031, -0.3010254, -0.36621094, -0.5541992, 1.2148438, 0.6123047, -0.25048828, 2.171875, -0.3557129, 0.0088272095, 1.8867188, 0.12683105, -1.4433594, 3.3222656, -0.8022461, 0.6855469, 0.59814453, -0.4489746, 1.1152344, 0.46240234, 0.09509277, -2.1289062, -1.2333984, -1.6767578, 0.14086914, -1.0791016, -0.7963867, -0.7832031, -2.7734375, 1.4648438, -1.6171875, -4.9921875, 0.82421875, -1.5917969, 0.23730469, 0.036224365, -0.043762207, 1.0859375, 1.7177734, -0.1796875, 0.35009766, 1.2841797, -1.1875, -1.7841797, 1.0771484, 1.8701172, -0.64941406, -1.5175781, 0.4946289, -1.1064453, 0.11383057, -0.7207031, -0.7675781, 0.24475098, 1.2695312, 0.09875488, 3.2675781, -0.35180664, 1.9638672, -1.9707031, -0.26049805, 0.82421875, 0.66748047, -1.6474609, -0.3166504, -1.8310547, 1.2226562, -2.0917969, 1.4960938, 1.3730469, 0.76464844, -0.117492676, 0.050628662, -0.96533203, 0.13977051, -3.9140625, -3.140625, -2.90625, -3.7792969, -0.029052734, -1.5, -0.18444824, 0.7270508, 1.0019531, -3.1757812, 2.0742188, 0.2697754, 0.21484375, 0.6748047, 0.0463562, 1.7402344, -1.1289062, 1.5419922, 1.2382812, -2.1679688, -2.9921875, 2.3398438, 1.5136719, 1.8583984, -0.14953613, -1.8242188, -2.8261719, 0.68359375, -4.234375, 1.0927734, 0.1920166, -0.8027344, 1.4375, 0.6772461, 0.14660645, -0.13879395, 0.6191406, 0.49853516, -3.2304688, 1.9023438, 0.8886719, 1.1083984, 0.2614746, -3.0546875, -0.9741211, 0.8149414, -1.6269531, 1.9248047, 0.94189453, -0.24902344, -1.5429688, -1.3300781, -2.2558594, 0.12976074, 1.9433594, -1.3291016, 1.75, -2.1679688, -0.59277344, -2.5566406, 1.1240234, 1.7714844, 1.8896484, -1.7578125, 0.31103516, 0.4716797, 1.1962891, -1.4003906, -0.8378906, 0.31274414, -0.07867432, 0.2364502, 0.58740234, 0.9291992, -1.4970703, 2.5761719, -2.1113281, 1.2138672, -1.1416016, 0.3095703, 1.8955078, 0.3779297, 0.79003906, 1.3408203, 0.35009766, 3.3964844, 1.8017578, 1.5849609, 1.0839844, -0.7910156, 0.43774414, -0.9379883, -3.4863281, 2.6777344, -0.99853516, -0.7529297, -3.0332031, 0.0871582, 1.0673828, -1.8935547, 0.32104492, 1.6806641, 2.3554688, -1.6103516, 0.5551758, -1.8378906, -0.60253906, -1.5644531, -2.3007812, -0.265625, 2.1679688, 0.30444336, 1.9287109, 2.9375, 0.5600586, -0.49023438, 1.2402344, -2.0683594, 0.8642578, 1.5185547, 3.0898438, 0.20727539, -1.0566406, -0.6425781, 1.9707031, 0.3864746, 2.546875, 0.3791504, 1.2275391, -0.2310791, 0.6645508, 1.0771484, -0.98779297, -0.10809326, -0.12133789, -0.11206055, 1.2138672, 1.1347656, 1.9931641, 0.14819336, 1.7958984, -0.3022461, 0.63720703, -0.80859375, -2.2617188, -1.5820312, -2.1152344, 0.42089844, 0.06317139, -1.0712891, 0.671875, -1.3164062, 0.36767578, 2.9785156, -0.8256836, -2.125, 3.1484375, 1.2119141, 0.08886719, 1.0703125, 0.8095703, 0.47705078, 0.51904297, 1.1435547, 2.0800781, -1.4433594, 1.8320312, 1.6015625, 0.120788574, -0.62109375, -1.5986328, -0.45214844, 0.6801758, -0.3791504, 1.7685547, -1.0429688, 0.35009766, 0.22570801, -2.875, 0.47338867, -1.6230469, -1.3554688, 1.5351562, -0.13012695, 2.6875, 1.5996094, -0.9526367, -0.40063477, 0.8720703, 1.5449219, -0.73535156, 0.5498047, -0.47265625, 1.4921875, -0.65234375, -0.22167969, -2.9882812, -1.5078125, 0.33691406, -3.6210938, -3.4433594, 0.4091797, -2.3925781, -2.4492188, 0.49145508, 1.1591797, 1.2558594, 1.3867188, 1.0361328, -0.09832764, 1.6416016, 0.8154297, -1.9892578, 1.0449219, 4.0039062, -0.75683594, -1.4941406, -1.2509766, -0.15991211, -0.3713379, 2.3457031, -0.66748047, -1.7958984, -0.2841797, 0.5786133, 0.81640625, -0.52001953, -2.2402344, -1.6621094, 0.17883301, -2.4785156, 0.15612793, -1.9833984, 2.7402344, -0.15710449, -0.42236328, -2.1777344, -0.5932617, 0.038513184, -0.05645752, 1.0234375, -0.30810547, 1.9082031, -1.3476562, -0.8066406, -1.2197266, -1.203125, -3.3457031, 0.3046875, -0.8251953, -1.4931641, -1.3847656, -2.4609375, 0.70654297, 1.4765625, 1.1669922, 0.46850586, 0.48754883, -1.1347656, 0.28149414, -0.7602539, 0.6196289, 1.3251953, -0.16992188, -1.5644531, -2.515625, 0.64453125, -1.2861328, -1.0634766, -0.15136719, -1.5253906, -0.057434082, 0.0647583, 1.5244141, 0.7944336, 2.0292969, 0.19897461, 0.8198242, -3.0195312, 0.4165039, 2.2871094, -3.375, -0.28930664, -0.5566406, 0.27954102, -1.0800781, 0.5839844, 3.6132812, 1.9931641, 2.515625, -0.37158203, -0.95214844, 0.64453125, 2.9765625, -1.3671875, -0.7373047, 0.15234375, 1.2294922, -3.0214844, -0.5654297, 1.2431641, -0.44213867, -0.95410156, -1.9443359, 1.7324219, 1.6826172, 2.1933594, -0.6220703, -1.0390625, -0.24291992, -0.7114258, 0.3713379, -1.3623047, -0.40649414, -0.121276855, -1.0556641, 0.93603516, -0.75927734, 0.67871094, 1.6943359, 0.03237915, 0.7973633, 0.69873047, -0.83251953, -0.08569336, -0.71533203, -0.1182251, 0.7363281, -0.6904297, 0.3034668, 0.45410156, 1.5449219, 1.2578125, -1.2304688, 1.2246094, -1.0712891, -1.2998047, -0.76904297, 0.7729492, -0.38989258, -1.3388672, -2.0117188, 2.1347656, -1.6542969, 0.07775879, 0.69677734, 0.58935547, -0.2565918, -2.6289062, -1.3232422, -0.2232666, 1.0605469, -1.6787109, -0.47021484, -0.69091797, 0.8256836, -2.859375, -2.5839844, 1.7353516, 0.26953125, 0.34106445, 1.1943359, -0.6542969, 0.5180664, 1.3535156, 0.6665039, 0.091308594, 3.5976562, -1.3720703, -1.1787109, -2.0898438, -0.10424805, -2.7050781, -0.57177734, 1.078125, 0.76953125, -2.0078125, -0.25073242, 0.04397583, 0.10601807, -0.5415039, 0.45092773, -0.21069336, -1.1875, 0.095947266, 1.921875, 0.22705078, 0.17590332, 1.2128906, 1.8369141, 1.6416016, -2.7539062, 0.359375, 0.5029297, -3.3925781, 2.7617188, -1.4511719, 0.34350586, 1.5927734, -0.88671875, 0.7036133, -0.1116333, 0.3395996, -3.4140625, -1.5410156, 0.06488037, 1.0009766, -0.6542969, -2.2089844, 1.3496094, -0.10205078, 0.1505127, -0.5942383, -2.2871094, -0.53564453, 0.09442139, 0.6855469, 1.1337891, 1.2636719, 1.0029297, 0.5805664, -0.8027344, -1.6621094, 0.33374023, -0.85009766, -0.34765625, -2.7636719, 3.0058594, 0.4807129, 0.13134766, 0.65966797, 2.8144531, 0.4868164, -0.96435547, -0.04272461, -1.1279297, 1.3222656, 0.17089844, -2.0234375, 0.0059547424, -1.4638672, 2.3886719, 0.19641113, -0.032226562, -0.9448242, -0.46020508, 0.5234375, 0.1796875, 0.6308594, 0.21032715, -0.02909851, -1.3427734, 0.59765625, 0.3774414, -1.7246094, 0.2364502, -1.1640625, -0.41967773, 0.59277344, 1.546875, -2.796875, 1.8720703, 1.8164062, -0.88427734, -3.0117188, 1.0605469, 2.4726562, 0.9794922, -0.44458008, -0.7519531, 0.55126953, 1.2470703, 2.9296875, 0.46899414, 0.07720947, 0.17687988, -0.27978516, 0.76220703, 2.5136719, -1.9394531, -0.6152344, 0.4638672, -1.2431641, 2.2011719, 1.0283203, 1.6865234, -2.59375, -0.5258789, -0.24951172, 0.25463867, 2.6523438, -3.1425781, -0.6298828, 0.63134766, 0.13354492, -0.19946289, 1.0439453, 1.1357422, 2.3925781, -0.1694336, -1.7783203, 2.7578125, 3.0019531, -0.075683594, -0.2890625, -0.06298828, -1.9267578, -0.63623047, 0.034301758, 1.2070312, -1.6201172, 1.5849609, 1.9375, 2.0917969, 1.6376953, 1.3085938, -1.2773438, -0.70996094, 0.8833008, 1.7460938, -1.1513672, -0.16894531, -1.2412109, 1.5820312, 0.85595703, -1.4414062, -0.8666992, 0.011779785, 1.1132812, 0.734375, 0.7553711, 0.44726562, -0.80859375, -0.73535156, -0.53027344, -3.7792969, -0.1270752, -0.88720703, 0.98291016, 0.43554688, 0.37646484, -1.5361328, 1.3974609, 0.7338867, 0.9736328, -0.75390625, 1.3095703, -1.3955078, 0.67285156, -0.34692383, -0.35302734, -1.1347656, 1.0800781, -0.46484375, 0.52978516, 0.53222656, 0.64697266, 2.6503906, -1.0078125, -1.5214844, -1.0585938, -1.2558594, -1.6484375, -1.2890625, 2.5117188, -0.7470703, -0.17858887, -0.051574707, 0.7006836, 0.3017578, 2.8964844, 1.7792969, -0.08392334, -1.5878906, -1.7392578, -2.4492188, -3.2246094, 0.0020427704, 0.054992676, -0.79541016, 1.1757812, -1.2226562, -1.0986328, 0.28637695, -0.7583008, 1.0166016, -1.8730469, 1.1855469, -1.1679688, 1.1455078, -0.12347412, 0.40112305, -1.5527344, 0.18481445, 1.3691406, -1.8349609, 0.57714844, -2.9804688, -3.4882812, -0.6640625, -0.44555664, -1.4541016, 0.15734863, -0.4675293, 1.9609375, 2.3300781, 2.1308594, -1.6767578, 0.11956787, -1.7958984, -0.83935547, 0.93359375, -2.359375, 1.5253906, 0.004749298, -0.002790451, 0.5385742, 1.7744141, 0.4753418, -1.3378906, -0.24597168, -0.9765625, 0.89990234, 1.0009766, 0.58496094, 1.8740234, -0.56103516, 0.8149414, 0.3581543, -0.70947266, 1.0205078, -1.5, -2.7011719, 1.2802734, -1.1884766, 0.86816406, 0.5366211, 2.4355469, -1.6523438, 1.1171875, -0.21142578, 2.4355469, -1.8691406, -2.0429688, 1.1064453, -0.032226562, 2.1523438, 3.4433594, -1.109375, -2.0039062, -0.49804688, 1.1503906, 2.9082031, 0.23693848, -1.4619141, 0.87646484, -2.09375, -0.39990234, -0.13769531, 1.9550781, -0.7446289, 0.9819336, 0.18078613, 0.79541016, 2.5527344, -0.7338867, 1.1230469, 1.3037109, 0.95410156, -0.98046875, 0.2644043, 0.16870117, -1.5800781, 0.28442383, 0.024215698, 1.0820312, -0.63427734, -0.81884766, 0.124572754, -3.1503906, 0.17858887, 0.51416016, -2.0117188, -1.2216797, 3.7539062, 0.6767578, -0.48535156, -2.078125, 1.5820312, -1.8798828, 0.11639404, 0.05596924, -1.2441406, -3.1972656, -1.3808594, -2.4433594, -0.9458008, 0.7207031, -3.2597656, -0.22363281, 2.9882812, 0.81884766, -1.1962891, 3.2382812, 1.1572266, 1.2568359, 1.578125, 3.9667969, 0.89990234, -0.2854004, 1.5986328, 2.3183594, 0.56152344, 0.78466797, -1.1328125, -0.27124023, 0.55078125, 0.15490723, 2.6621094, -1.4248047, 0.48486328, 0.10296631, 0.56640625, -0.0287323, 0.4338379, 1.1630859, -1.0771484, 1.2128906, -0.7817383, 0.14013672, -2.5742188, 1.6376953, -0.48608398, -0.092285156, 0.80078125, 0.5366211, -0.13452148, -3.4726562, 1.3037109, 1.1435547, -0.5292969, 2.1210938, -1.1298828, -0.15759277, -0.4038086, -2.0175781, -1.7568359, -0.36865234, -0.6694336, -1.0273438, 1.1416016, 0.41577148, -0.24816895, -0.7109375, 1.9726562, -1.9619141, 0.9042969, 0.07122803, 1.2626953, 1.5234375, -1.7041016, 1.0605469, -0.9277344, 0.1541748, -1.9082031, 1.9326172, -0.2800293, -0.33666992, -0.15332031, -2.1425781, -0.08520508, 0.6533203, 0.9248047, -3.0507812, 0.41455078, -0.4621582, 1.3759766, 0.6582031, 2.0117188, 0.14819336, -0.049591064, 1.1015625, 0.42700195, -0.23950195, 1.5009766, 2.2382812, -0.8432617, -0.93896484, 0.83935547, -0.46142578, -2.3242188, 1.1005859, 1.0146484, -0.2824707, -1.109375, 1.3935547, 0.50927734, 0.38378906, -1.5839844, -0.13500977, 0.08569336, 0.6386719, -0.6147461, -1.6230469, -1.0664062, 0.14160156, 0.50439453, -1.2167969, 0.8833008, -1.1503906, 0.07421875, 0.0597229, -3.2890625, -0.8623047, 1.1308594, 0.37841797, -0.43945312, 1.125, -0.8310547, -0.8769531, -1.0205078, 0.69091797, -2.4414062, -0.14099121, -1.7792969, -1.3388672, -1.5292969, -1.6162109, 0.25024414, 1.3828125, -0.85595703, 0.7504883, 2.25, 0.43945312, 1.9501953, 1.3007812, -2.6035156, 2.8300781, 0.88720703, 0.29760742, -0.5126953, 0.34472656, 1.0341797, 2.0625, -1.0361328, 0.5410156, 1.0458984, 2.9316406, 2.0546875, 1.3300781, -1.1650391, -1.9306641, 0.3317871, -1.0732422, -1.0322266, -0.5541992, 0.110839844, -0.22888184, 3.1328125, 3.6289062, 0.26953125, 2.3691406, -0.15283203, 0.5449219, 1.6513672, -1.1328125, 1.0341797, 0.34960938, 0.059417725, -0.12042236, 2.4765625, 3.3808594, 0.29785156, 0.18225098, 0.30004883, -2.09375, 0.64453125, 0.5830078, -2.2167969, 0.88671875, 2.0429688, 0.17822266, 1.2490234, 0.48266602, -0.09466553, -0.74853516, -0.6386719]}, "B000FDKXN6": {"id": "B000FDKXN6", "original": "Brand: Volcano Grills\nName: Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)\nDescription: \nFeatures: 3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately)\nPortable: Collapses down to 5\", fits in carrying case for easy storage and transportation. Sets up in just seconds.\nVersatile: grill, Dutch oven, wok, bake, roast, fry, fire pit\nUse for camping, tailgating, RV's, emergency preparedness, survival, and prepping\nSafe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber\n", "embedding": [0.2980957, 1.1396484, 2.0527344, -1.0859375, -1.8525391, 0.2980957, 2.1503906, -0.9765625, -1.5820312, 2.8925781, -1.0097656, -0.1439209, -1.7470703, -3.4101562, -0.24023438, 1.9384766, -0.24487305, 1.3144531, 0.15527344, 0.49389648, 1.7158203, 0.050079346, 0.82666016, -0.08508301, 1.6464844, -0.4716797, 4.2851562, -4.296875, 0.010063171, -1.03125, 0.80810547, 0.39233398, 1.2226562, 1.8964844, -3.34375, -0.859375, -2.2773438, 1.1464844, -1.8212891, -0.8959961, -0.33935547, -0.054351807, 3.1484375, -0.2746582, -3.5800781, -3.4160156, 2.2460938, 0.86865234, -0.421875, -0.53027344, 2.7597656, 1.9941406, 0.69140625, 0.55810547, -2.1601562, 2.3769531, -1.671875, -2.3476562, 2.5527344, 0.5698242, -0.04977417, 0.57958984, -2.0292969, 0.328125, -2.7441406, 0.53759766, -0.16687012, 0.8618164, 1.1738281, -1.7988281, 3.2832031, 0.73583984, -0.80322266, 0.21691895, -0.78125, -0.47509766, -2.2089844, 2.0546875, 1.1464844, 0.38452148, -1.1103516, 4, 1.15625, 0.10101318, 0.7036133, 0.62353516, -1.7050781, 0.92333984, 0.34057617, 0.3149414, -1.71875, 1.8388672, -1.0263672, -3.8769531, 1.6650391, 0.15942383, -0.093566895, -0.036102295, -0.37329102, 0.4074707, -0.085876465, 1.4257812, -0.29296875, -2.5917969, -3.0878906, 1.3134766, 2.3027344, 0.26782227, -1.2851562, 0.8208008, -2.9980469, -1.2822266, 1.4785156, 1.6894531, 1.1064453, 1.1962891, -1.4931641, -0.2487793, 3.234375, 0.7060547, 4.2578125, -1.2480469, 1.0214844, -1.5507812, 1.6269531, 1.7011719, -0.6220703, 1.2949219, 3.5253906, -1.0273438, -0.32080078, 0.27954102, 3.3300781, -1.2080078, -2.7753906, -1.9013672, -0.6254883, -2.8964844, -3.109375, -0.25097656, -1.4511719, 0.94189453, 3.1972656, -1.1533203, -3.8300781, -1.9208984, 0.42700195, 2.453125, 0.8251953, -1.9658203, -0.76660156, -2.2519531, -1.5068359, -1.1962891, 1.7216797, -0.12249756, -1.1318359, -1.8378906, 3.1015625, 0.19689941, 0.6777344, -2.1367188, -1.6171875, 1.6669922, 0.42016602, -2.7207031, -0.16674805, 2.046875, -0.55615234, 2.5019531, -1.0205078, -1.8105469, 0.4736328, -0.38378906, 2.2382812, -0.23840332, -0.024978638, 1.7304688, 1.7871094, -0.6586914, -1.1191406, -1.2490234, 1.3095703, 1.8378906, 0.56884766, -1.0400391, 1.2939453, 0.2076416, -1.0419922, -1.5947266, 0.6743164, -0.3076172, -2.015625, -0.2376709, 1.0488281, -2.1367188, -1.3007812, -1.6640625, -0.35009766, 1.4082031, -0.21520996, -0.4020996, -0.38500977, 0.83251953, -2.1054688, -0.71972656, -1.3310547, -0.9003906, -0.41333008, 1.9384766, 1.3251953, -0.16821289, 3.8925781, 1.3144531, -0.8276367, -3.3417969, 1.5585938, 0.65625, 0.49487305, 0.515625, 0.48706055, -1.1308594, -0.6777344, 1.1064453, -0.15478516, 2.6835938, 0.2692871, -0.9946289, -2.5703125, -0.26220703, 2.7773438, -0.1270752, -0.67285156, 0.7246094, 0.11755371, 3.671875, 1.8525391, -0.33081055, -0.9003906, 0.34960938, -0.30932617, -0.35424805, 0.4975586, 0.34814453, -2.0859375, 0.023101807, 0.10095215, 2.1464844, 3.0390625, -0.13024902, -1.5410156, -0.1541748, -0.81689453, 0.5209961, 0.6826172, 0.91552734, -0.12573242, 1.3066406, -0.25756836, -0.90185547, 1.3984375, 2.8007812, -1.0625, 0.2175293, 0.033721924, -1.8603516, 1.0058594, 1.2568359, -2.9453125, 0.35083008, 1.3876953, 2.3027344, 2.3378906, 0.38012695, 2.15625, -0.15441895, -0.5546875, 0.75390625, 1.0566406, 2.9023438, -0.2043457, -0.040863037, 2.2519531, -3.265625, -0.17028809, -0.67626953, 1.0742188, -1.1210938, -0.3803711, 1.4082031, 5.4296875, 0.43725586, -2.6015625, 3.6640625, -3.1347656, 1.5878906, 0.26464844, -0.32641602, 0.6621094, 2.2851562, 1.1533203, -1.0107422, -1.0498047, 1.140625, -3.5, -0.98828125, 2.0253906, -3.890625, 0.4350586, 0.46313477, -1.7431641, -1.8388672, 0.4411621, 0.49804688, -1.2724609, 0.20202637, 1.9238281, -1.7841797, 2.1992188, 2.046875, 1.2988281, 1.3398438, -1.4658203, -2.0605469, -0.8041992, 1.4824219, -1.5400391, 2.1972656, 0.080322266, -1.5166016, -0.6254883, -1.5615234, 1.0234375, -2.2792969, -1.0605469, -0.7348633, 0.5131836, -2.6113281, 2.6484375, -0.3166504, -0.08459473, 0.40942383, -2.4257812, 0.39746094, -1.9697266, -2.78125, -0.07659912, 0.002916336, -1.0712891, -0.04525757, 0.56884766, 1.6552734, 0.74365234, -4.0195312, -1.7666016, 0.008781433, -0.7084961, -1.4375, -2.4023438, 0.73095703, -1.4082031, -0.18737793, -0.40844727, 0.0032024384, 0.10449219, -1.4121094, 0.0036334991, -1.8359375, 1.1621094, -0.06726074, 0.6074219, 0.3425293, 0.86865234, -1.8828125, -2.515625, 0.4958496, -0.19042969, 4.78125, -1.1533203, 1.0849609, -0.359375, -2.4707031, 0.05130005, -1.1484375, -2.3828125, -1.3808594, -0.70947266, -2.4414062, -2.3964844, -3.1289062, -0.97558594, -1.1513672, 0.11151123, -0.70947266, 1.7050781, -1.1660156, -0.13134766, -1.8896484, 1.7978516, -0.9038086, -0.6582031, 0.92822266, -0.19824219, -1.3554688, -0.59472656, -0.18139648, 0.14868164, -1.34375, 2.1308594, 0.7368164, 1.2128906, 1.5439453, 0.80078125, 0.5283203, 1.6445312, -2.9179688, 1.7304688, 1.7441406, -0.55859375, 2.4863281, -0.80322266, 0.93603516, -2.6523438, -1.4970703, 2.2167969, 1.28125, 1.8808594, -0.96972656, -0.55810547, 0.85253906, 0.11730957, -0.9638672, -0.25146484, 1.2167969, 3.0566406, -3.0878906, -1.0097656, 0.6826172, 2.1738281, -3.2929688, -0.039367676, 1.2421875, 0.070495605, 1.25, 1.4111328, 1.7460938, 0.66064453, -0.018798828, -0.93847656, 1.9482422, 0.72802734, -1.6152344, -1.6777344, -0.8203125, 0.4633789, 0.38720703, -1.0146484, 0.64941406, 1.0664062, 3.3847656, 0.21911621, -2.0117188, 1.1308594, -0.3371582, 1.2666016, 1.4580078, 3.6914062, -0.46166992, 0.6455078, -1.3759766, 1.2167969, 1.7197266, 0.2088623, 1.2988281, 0.7504883, -0.39135742, -0.79589844, 0.35473633, 1.7636719, 0.054351807, -0.9824219, 2.0703125, -2.6660156, -0.51416016, 0.8564453, -0.8989258, -2.0585938, -1.8759766, 2.1503906, 0.23400879, -0.76904297, -0.5913086, 1.7324219, -0.75634766, -2.3867188, -1.3681641, 0.21203613, -0.8491211, 2.4804688, 0.8701172, -1.6259766, 1.2226562, -3.6972656, 0.06585693, 2.0097656, 1.5507812, 0.9038086, 0.9453125, 0.00089120865, -0.0803833, 0.46826172, 1.8466797, -1.0400391, -1.8457031, -0.16577148, -3.234375, -1.4765625, -0.2512207, -1.8769531, 0.1730957, 2.9433594, 1.3701172, 1.7851562, -0.8823242, 3.2324219, -1.1826172, -0.9951172, 1.4306641, -2.125, -0.077941895, -3.1621094, -4.1835938, 0.94140625, 0.090270996, -0.6503906, 4.0078125, -0.66552734, -1.5195312, -0.45117188, 0.7290039, -3.2109375, -0.44018555, -1.3398438, 2.0878906, -2.5566406, 0.47851562, 0.6586914, 0.5698242, -3.4042969, -1.4511719, 0.06536865, 0.29345703, 1.75, 1.4248047, -2.2617188, -0.79785156, -1.1933594, 0.7861328, -1.8935547, 0.51464844, 0.5703125, 0.4338379, 0.14025879, -1.6054688, 1.4443359, 1.1279297, -0.6484375, 2.2246094, 1.7607422, 0.5727539, 0.4572754, 0.058898926, 1.2988281, 2.5390625, -0.03967285, -1.2265625, -2.7109375, -0.70751953, -1.4443359, -0.9868164, 0.9663086, 1.6845703, -2.9296875, 1.5556641, -0.42529297, 1.3916016, 2.59375, -0.0024433136, -2.6523438, 0.96875, 0.72314453, -0.7949219, -1.9277344, 1.5478516, -0.26831055, -3.1796875, 0.23962402, -0.2619629, 0.13708496, 0.1842041, -0.64453125, 0.68408203, 0.63964844, 0.44970703, 1.6640625, 1.6875, 0.16674805, -2.1425781, -0.12976074, -1.8720703, -0.45532227, 0.4580078, 0.6879883, 1.3984375, 1.0332031, 0.87841797, -1.6503906, 0.1194458, -0.82421875, 0.32006836, -1.0566406, -0.97802734, 0.3293457, -2.6933594, -0.39404297, -1.1933594, -2.0195312, 2.3105469, -0.28686523, -0.61279297, -0.8413086, 1.2089844, -0.25463867, 0.36035156, -1.2109375, 2.1132812, 1.3056641, 0.34301758, 1.6582031, 1.0283203, 1.4785156, 0.7089844, 2.4257812, -0.25830078, 1.1943359, 0.296875, -0.34936523, -1.0820312, 0.13781738, 0.8334961, 1.6162109, 0.9863281, 2.8847656, 0.6694336, -1.5654297, 1.9375, -0.6152344, -2.6347656, -0.24353027, -1.2148438, -2.7070312, 2.4570312, 0.38964844, -2.6035156, 0.60302734, 2.2382812, -1.7841797, 2.765625, -1.4287109, -0.77001953, -0.38549805, -2.1425781, -0.5029297, -1.3759766, -1.3242188, 1.6513672, -1.5009766, -0.3696289, -1.6669922, 1.3535156, 2.5820312, -0.4020996, 0.07928467, 2.0976562, -1.9394531, 0.4020996, -0.3876953, -1.3955078, -2.3710938, 0.765625, 2.1289062, 0.5620117, 2.2617188, -0.066101074, 0.55859375, -2.15625, -2.1269531, -2.6835938, 1.7666016, -2.6875, -1.0917969, 0.578125, -1.0742188, 0.7104492, -0.6801758, -1.2958984, -0.4658203, 2.8164062, 0.9760742, -0.23254395, 0.05670166, 0.9243164, -2.6484375, -3.7539062, -1.7011719, 0.49047852, 0.265625, -0.8457031, 1.6171875, -1.6035156, -2.4882812, 1.9042969, -0.2956543, -1.6230469, -0.33325195, -0.105773926, 0.61035156, -2.5019531, 0.1772461, -0.17407227, 2.1796875, 3.1582031, 0.7753906, -0.9291992, -3.5800781, -0.6870117, 0.3798828, -2.4980469, 0.43310547, -0.10614014, 1.234375, 0.107299805, 2.7832031, 0.63720703, -1.0488281, 2.65625, -2.6425781, 0.23364258, -0.44799805, -2.375, 1.6435547, 0.5078125, -2.1054688, 1.3896484, -1.2314453, 1.3076172, -0.34692383, 0.9165039, -1.1464844, 1.3046875, 0.32250977, -1.3212891, 1.4189453, 2.8085938, -0.296875, 0.48828125, -0.04647827, -0.5175781, -3.8027344, -3.3007812, -0.43481445, -1.71875, -0.8310547, -0.65625, -0.10333252, 0.47705078, 0.6152344, 0.25976562, 1.2001953, 0.19262695, -0.47436523, 0.2298584, 0.12963867, 3.3613281, 2.4570312, -1.6669922, -2.9746094, -2.9042969, 0.25830078, -0.11810303, 0.14916992, -0.6381836, 1.6201172, -1.7021484, -0.6699219, 0.9086914, 3.0351562, 1.859375, 0.03265381, -2.234375, 1.8554688, 2.9042969, -1.9589844, 0.77685547, 1.2832031, 1.9873047, -1.3349609, 1.6826172, -0.7685547, -1.5244141, 2.5019531, -1.7373047, 0.99365234, -1.1152344, -1.9941406, 2.2929688, 0.37695312, -1.2470703, -3.28125, -0.75390625, -1.203125, 1.3964844, 0.47583008, -0.00033211708, 0.31201172, 0.92578125, -1.0712891, 2.7441406, 1.3984375, 1.4804688, -1.6679688, 0.9628906, -0.8613281, 0.62109375, 2.3710938, -0.34692383, 1.7304688, 0.5498047, -1.2314453, 0.27026367, 2.6582031, 1.7880859, 3.0390625, 1.3027344, 2.578125, 1.2802734, 1.4394531, 1.2919922, -0.50634766, 1.1074219, 1.5175781, -0.58447266, 1.3945312, 0.3955078, 2.1191406, -0.88671875, -1.5546875, 0.8666992, 0.46142578, 0.8129883, -0.7480469, -0.06756592, 0.890625, -5.5585938, 2.6152344, -0.124938965, -0.28271484, -1.546875, 1.1425781, -0.3955078, 0.4897461, 0.88720703, -0.33496094, 0.9189453, -1.0078125, 0.79785156, 0.036193848, 0.04269409, -0.5498047, -2.5703125, -0.44750977, 0.2668457, -2.2207031, -1.9726562, 1.8964844, 0.70751953, 0.9711914, -0.17883301, 1.9863281, 2.2246094, 0.03414917, 1.1318359, -0.1427002, -0.36376953, -0.18701172, 2.4160156, 1.0185547, -0.17883301, 1.3476562, -0.7607422, -3.9316406, -3.1894531, 2.1992188, -0.69384766, 2.1054688, -0.8305664, -2.0175781, 2.46875, 1.8046875, 0.9951172, -1.3310547, 1.8222656, 0.35595703, -2.2480469, -1.7978516, -0.29467773, 1.4414062, 2.6015625, 1.4423828, -0.5732422, 2.2246094, 0.03213501, 2.9433594, 0.9316406, 1.3818359, -0.120666504, -1.1396484, 0.08685303, 0.99316406, 0.91064453, -0.6665039, -1.6230469, 2.2167969, 1.1630859, 0.93310547, -0.029815674, -1.703125, 0.5761719, 0.38720703, -2.1367188, -0.92578125, -1.1054688, -1.5673828, -0.21264648, -0.17150879, 0.7519531, -0.37304688, 0.5830078, 0.8925781, -1.4277344, 0.92333984, -0.028640747, 0.14233398, 1.4033203, 0.78271484, -0.3371582, -1.5546875, -0.7211914, 0.28833008, 0.26879883, -0.80126953, 0.94384766, 0.9794922, 1.5537109, 0.6010742, 1.1689453, 0.09631348, -1.6582031, -0.6879883, 1.5957031, -2.1210938, -0.90185547, -0.09716797, 0.9091797, -0.087524414, 3.3847656, 0.7636719, -0.8852539, -0.35351562, -1.6650391, -0.6591797, -0.87353516, -0.42407227, 1.1494141, 3.484375, 0.7089844, 1.1533203, -2.8554688, -3.1035156, -1.6542969, -1.7939453, 2.9394531, 0.6220703, -0.9794922, 1.2900391, -2.8476562, 1.6259766, -0.0003414154, -0.021850586, 1.2529297, -1.0449219, 0.875, 0.38720703, 1.0273438, 0.45996094, 1.2705078, -0.15893555, 2.8027344, -0.11987305, 1.3417969, 2.0058594, 0.3161621, 1.8964844, -2.2871094, -0.5180664, -1.4560547, 0.83691406, -0.39916992, -0.47607422, 1.7841797, -1.3339844, -0.2854004, -2.65625, -2.265625]}, "B00LP57K7A": {"id": "B00LP57K7A", "original": "Brand: Napoleon\nName: Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n7 burner grill with up to 86,000 BTUs\nTotal cooking area: 1000 sq. In\nDual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off\n9.5 Mm stainless steel wave cooking grids\n", "embedding": [-2.4042969, -0.18737793, 2.9707031, 1.6582031, 0.2631836, 0.15185547, 0.10070801, -0.76708984, 0.40527344, 1.1074219, 2.4492188, -0.49951172, -0.4645996, -0.6196289, 0.91748047, -0.13256836, 2.2792969, 1.3466797, 0.62646484, 0.68603516, 0.4934082, 0.49023438, 1.9277344, -0.9140625, -1.1035156, 0.73339844, 3.2988281, -2.6992188, -0.60839844, -2.9667969, 0.93896484, -0.11236572, 0.80029297, 0.07543945, -3.4746094, -1.6357422, -1.5351562, 2.359375, -3.4277344, 0.7607422, -0.2163086, -0.92089844, 0.98828125, -0.3635254, -1.9091797, -0.5498047, -0.7680664, 1.5576172, -3.1210938, -1.3876953, 1.3330078, 1.2412109, -0.7963867, 0.22216797, -1.3291016, 0.6899414, 2.7695312, -0.55078125, -0.81103516, -0.23364258, 0.8388672, 0.4814453, -1.2285156, -0.46020508, -1.6953125, 1.1943359, -0.23864746, -0.010421753, 0.32470703, 1.0234375, 0.6479492, 1.5292969, -1.0927734, 0.38598633, -2.2851562, -2.8769531, -2.5371094, 1.5048828, 0.21691895, -0.26708984, -1.4541016, 2.2363281, 2.046875, -2.7382812, -0.40722656, 1.4208984, -1.8476562, -1.7294922, -0.12805176, 0.34716797, -0.4716797, 1.1787109, -1.6396484, -2.2929688, 2.7851562, -0.4765625, 0.24108887, 2.1074219, 0.34570312, 1.7226562, 0.16345215, -0.1352539, -0.32250977, -1.9394531, -2.2226562, -2.953125, 3.3183594, 0.9345703, -4.0546875, -0.3112793, -0.9423828, -0.4477539, 3.3515625, 1.2080078, 1.9560547, 1.3173828, 2.2753906, 2.9238281, -0.15637207, 2.2460938, 2.4121094, -1.7802734, 1.0517578, 0.7192383, 0.67041016, 0.4897461, -3.5292969, 1.7216797, 4.1171875, 0.16894531, 0.92089844, -1.9931641, 3.4277344, 0.7207031, -0.703125, -2.0976562, -0.75439453, -1.296875, -3.5761719, 1.8847656, -0.6801758, 1.2978516, -0.5102539, -0.21203613, -3.2695312, 0.7260742, -0.5541992, -0.30566406, -0.4897461, -1.5458984, 0.2932129, -1.3066406, 1.8222656, -3.1386719, 0.7963867, -1.3681641, -0.9638672, -1.1103516, 3.4316406, 1.8935547, 2.3613281, -1.8525391, -2.9179688, 2.1074219, -0.1274414, -3.6699219, -0.9770508, 1.8564453, 1.5517578, 1.9785156, -0.3486328, -2.9121094, -0.3540039, 0.4675293, 0.7036133, 0.0390625, -0.16308594, 1.6875, 0.21813965, -2.4824219, -1.1123047, -1.7255859, 1.3886719, -0.5683594, -1.0625, -0.5185547, 1.9306641, 1.34375, 1.5537109, -2.2558594, 0.50146484, -0.37426758, -0.20239258, 0.98779297, -0.7709961, -2.4121094, -0.3713379, -1.1572266, 2.4960938, -0.68310547, -0.38867188, -0.5703125, 1.3046875, 0.21154785, -2.2929688, -3.3378906, -2.0292969, -1.8125, -0.43896484, 1.6943359, 3.0742188, -1.2470703, 1.3955078, -2.3046875, 0.30371094, -1.1865234, 2.2460938, 0.28881836, 0.41845703, 3.9121094, -0.15527344, 0.3881836, 0.29345703, 1.8867188, 0.32836914, 2.2519531, 0.7885742, 1.8916016, -2.8144531, -1.1513672, 2.96875, 0.48632812, -0.64697266, 0.9736328, 0.44726562, 2.5332031, 0.62109375, -2.5429688, -0.6088867, 0.39086914, -1.2314453, -2.2597656, -2.1757812, -1.1865234, -0.58251953, 0.94873047, -3.0722656, 1.0644531, 2.6816406, 2.1640625, -0.7265625, -0.08239746, 1.1015625, 0.21374512, -1.2314453, 0.41455078, 0.23962402, 1.7607422, -1.7441406, -2.3476562, 1.3828125, 0.7519531, -1.0966797, -0.092041016, 0.8129883, -1.6816406, 4.0742188, -0.83203125, -2.6132812, -1.5009766, -0.5571289, -0.47070312, 2.9550781, -0.5761719, 0.98046875, 0.35986328, -3.4023438, 4.4257812, 0.13708496, 2.640625, -0.4091797, 0.5283203, 2.84375, -2.9902344, -2.109375, 2.296875, 0.5253906, 0.5996094, -1.7480469, 0.49414062, 5.9257812, -1.1787109, -1.8125, 1.8720703, 0.06945801, -0.017669678, 2.8222656, -0.076049805, -0.46679688, -2.2382812, 2.2558594, 1.8125, 1.9257812, 1.1875, 0.83984375, -1.9003906, -0.36743164, -1.2275391, -0.3623047, -1.9238281, 0.056640625, -0.10736084, -1.7119141, 1.6005859, -0.22436523, -0.19628906, 0.4050293, -2.5722656, 2.0566406, 0.20458984, 0.79296875, 1.9931641, -1.2333984, -0.1616211, 0.1472168, 0.87890625, -0.5234375, 1.5, -0.7055664, -0.30737305, 0.6147461, -0.8154297, 1.0605469, -2.6171875, -2.7128906, 0.42749023, -3.4921875, -1.2792969, -1.4433594, -2.3164062, -1.5800781, 1.8144531, -3.5097656, 0.41870117, -1.671875, -3.8515625, -1.9570312, -1.4570312, -0.7636719, 1.015625, 2.0585938, 0.6152344, 0.32666016, -2.7246094, -0.2878418, -0.9248047, -1.6689453, 1.4316406, 0.046325684, -0.17553711, -2.0234375, 0.6982422, -0.7426758, 0.85546875, 0.38476562, -2.5351562, -0.46728516, -2.6699219, 0.07543945, -2.96875, 0.97265625, -1.6083984, 1.9667969, -2.8203125, -1.5498047, -2.2910156, -0.9741211, 2.5664062, 0.23449707, 1.4951172, 0.4699707, -1.2226562, 2.0332031, -1.8417969, -1.1669922, -1.2695312, 1.0849609, -1.9804688, -0.9609375, -3.0097656, 0.24694824, 0.08258057, -0.8564453, -2.0546875, 0.7285156, -2.6972656, 2.6445312, -1.1650391, 0.15209961, -0.31860352, 0.5048828, -0.88720703, -0.29248047, -2.6171875, -0.7631836, 0.00969696, -0.8510742, -0.07092285, 0.34301758, 0.018814087, 1.5126953, 1.1464844, -0.17248535, -0.26708984, -0.12683105, -4.1171875, 1.1113281, 0.04147339, -3.0332031, 2.0019531, -2.125, -0.20532227, -2.0117188, -0.18432617, 2.3046875, 1.90625, 1.9472656, 1.3046875, -0.28808594, 1.2607422, -0.0045700073, -0.23498535, -1.5507812, 0.45385742, 2.046875, -0.34692383, -0.35009766, -1.0527344, 2.1933594, -1.5429688, -0.9086914, 3.0878906, 1.6103516, 2.7988281, 1.3232422, -1.1914062, 0.7441406, -1.1064453, 2.2578125, -0.13378906, -0.056793213, -1.0683594, -1.2802734, 1.6591797, -0.2763672, 1.8330078, 3.0722656, 0.41357422, 1.5429688, -1.5605469, -0.06689453, -0.5913086, 0.24401855, 0.15905762, 3.1992188, 0.3630371, 3.4511719, -0.049743652, 1.3867188, -0.17565918, 1.4179688, 1.7060547, -2.1171875, -0.5283203, 1.6650391, -0.37304688, 0.59228516, -1.1464844, 0.3503418, 0.56689453, 0.9501953, 1.3017578, 0.27783203, 0.69921875, 0.9975586, 1.0341797, -1.2060547, -1.0107422, 0.69384766, -1.6621094, -2.6796875, -0.54833984, 2.6054688, 0.8100586, -1.5185547, 0.3581543, -0.9003906, -0.37182617, 2.0644531, -0.95751953, 0.10803223, 1.8505859, -0.86572266, 1.3720703, 1.0126953, -1.5722656, 0.21606445, -1.1005859, 0.74365234, -0.31884766, -0.28271484, 1.9892578, 1.4511719, -3.3085938, 0.38989258, -3.4257812, 0.22570801, -1.6757812, -2.6445312, -2.6367188, 2.2890625, 2.4101562, 1.3886719, -0.11450195, 1.9287109, -0.21813965, -1.5478516, 1.2851562, -3.6425781, 1.4072266, -2.9433594, -3.3085938, 2.1777344, -1.2021484, -0.26733398, -0.38232422, 0.15820312, -1.4521484, 2.0996094, -0.021835327, -3.484375, -0.7128906, -0.30737305, 0.5625, 0.21960449, -1.7978516, -0.2541504, 0.18322754, -1.9179688, -2.1523438, -1.4824219, -0.2902832, 1.5195312, 2.390625, -2.7792969, 1.2226562, -1.7792969, 1.3730469, 0.8388672, -0.47558594, 0.61328125, -1.7148438, -0.21618652, -3.4277344, 1.0732422, 1.2197266, 0.30639648, 0.49780273, -0.035003662, 0.16088867, -0.63720703, 0.77978516, 0.6401367, 3.7480469, -0.2536621, -1.9130859, -2.4375, 0.92822266, 1.0908203, -2.3984375, -0.3334961, -1.3779297, -1.2939453, 0.032104492, 1.2207031, 1.8417969, 1.125, 0.47558594, -2.1699219, -1.2011719, 2.1191406, -3.0253906, -0.4248047, -0.12420654, -0.53027344, 1.2939453, 0.27929688, -1.6611328, -0.7861328, -3.4902344, -1.5488281, -3.3613281, 3.1445312, 3.2910156, 2.8730469, 0.3737793, -0.042022705, -0.2130127, -0.9448242, 0.9638672, -0.3984375, 2.6386719, -0.8491211, -1.6601562, 1.4873047, 2.3339844, -1.4736328, -1.1240234, 2.9140625, -1.2285156, -0.89941406, -2.0039062, 0.22485352, -2.9433594, -1.1142578, 0.18286133, -1.1318359, 2.4394531, -0.0803833, -0.86083984, -1.0048828, 1.0449219, 0.11633301, 0.39501953, 0.07244873, 0.61376953, 1.5087891, 3.2597656, 0.8432617, 0.48413086, 0.8588867, -0.6557617, 2.953125, -1.0039062, 1.2373047, 0.22937012, 0.40014648, -1.4345703, -2.1445312, 1.7773438, 2.2246094, 0.03164673, 4.3007812, 1.7529297, -3.9355469, 2.0722656, -0.062347412, -3.5292969, 0.39111328, 1.4492188, -0.21447754, 0.44018555, 1.7568359, -4.1132812, -0.5161133, 2.2792969, -1.3583984, 0.40112305, 0.05267334, -1.2197266, -0.070617676, -1.7919922, -0.49023438, -0.8466797, 1.1582031, -0.3256836, 0.53759766, 0.5053711, -0.93066406, -0.28198242, 1.9570312, 0.11340332, -0.9770508, 4.296875, 1.2636719, 0.48754883, -0.5019531, 0.2705078, 1.3085938, 2.1777344, 2.2695312, 0.7133789, 2.6308594, -0.93359375, 0.78271484, -2.3613281, -0.46020508, -0.7910156, 4.078125, -1.1318359, -2.2070312, 0.3671875, -0.8911133, -0.27416992, -1.9589844, 0.9848633, -0.12445068, 1.6708984, 1.1523438, -0.9350586, -0.6123047, -1.0576172, -1.90625, -2.8691406, -1.8261719, 2.2070312, 1.7080078, 0.6411133, -0.18811035, -1.3203125, 0.60009766, -0.15429688, -0.02218628, -3.7734375, 0.29101562, -0.10681152, -0.73291016, -0.14770508, 1.3623047, -1.2324219, -0.76660156, 1.3417969, -0.4182129, 2.2773438, -4.1367188, -2.171875, 1.7539062, -1.5830078, -0.171875, 2.2871094, -0.28857422, -1.6162109, 1.8046875, -0.453125, -1.6337891, 2.7011719, -2.5390625, -0.96191406, 2.6152344, 0.66845703, -0.32470703, 0.32861328, -1.0263672, 1.9287109, -1.1201172, 0.3400879, -0.57128906, -0.070617676, -0.41308594, 0.140625, -0.97265625, -1.4560547, 0.953125, -1.6738281, 2.5546875, 1.6660156, -1.0039062, -2.6640625, -1.5302734, -2.4453125, 0.33422852, -2.2714844, -0.24938965, -2.6367188, 1.6591797, 0.48535156, 0.7158203, 0.0007548332, 1.7753906, -0.22851562, -1.3759766, 1.4394531, -2.2480469, 1.6962891, 1.84375, -0.93603516, -1.0136719, -2.1640625, 0.18591309, 1.4746094, 0.5527344, -0.95410156, 0.07055664, 0.77246094, 0.3010254, -0.21740723, 0.4243164, 1.5976562, -0.6870117, -2.0292969, 0.12158203, 3.2285156, 0.05444336, 1.8212891, 0.5600586, 0.35473633, -0.4609375, 4.8125, 1.2451172, -2.0585938, 1.9589844, -2.1425781, 0.9067383, 1.2255859, -0.4819336, -1.2011719, -1.4423828, -0.32885742, -1.9091797, -0.95214844, -4.0625, 0.43066406, -0.72802734, -1.0126953, 0.3112793, 2.5664062, 0.81396484, 2.1542969, 1.2197266, 0.92285156, 1.6044922, 2.3945312, 0.5317383, 1.1220703, 2.140625, -2.4550781, 0.14172363, 1.1738281, 0.0206604, -0.6699219, 1.5908203, 1.2050781, 2.8457031, -0.6303711, 1.2324219, 4.7578125, 1.109375, 1.2353516, 0.19714355, 1.1191406, 2.109375, 0.19213867, -0.9501953, 1.2666016, 0.6669922, -0.020141602, 1.1269531, 2.1289062, -2.2792969, -1.8525391, -1.3964844, -0.13134766, 0.6694336, -0.9868164, 2.3730469, 0.0065231323, 0.64990234, -2.4902344, -1.6445312, -2.6582031, 0.14782715, -0.03012085, -1.6142578, 1.6962891, 0.010635376, 1.8994141, 0.16271973, -0.22961426, 1.4160156, -3.8261719, 0.0209198, -1.2617188, -0.86035156, 0.63671875, -0.54003906, 0.06567383, 0.16027832, 1.2255859, 0.76708984, 3.4023438, 1.6435547, 0.98339844, -2.4550781, 0.38354492, 1.1132812, 4.2421875, -0.3828125, 1.2070312, 3.6347656, 0.12133789, -3.765625, -4.4492188, 2.4648438, -0.22192383, 1.5322266, 3.5722656, -2.4042969, 2.6835938, 0.056152344, 1.1845703, -2.6875, 1.2246094, 1.203125, -2.5488281, -0.8857422, 1.4023438, -0.3425293, 0.69873047, 1.6474609, -1.2509766, 2.4277344, -1.3183594, 3.015625, 0.4321289, 1.8886719, 0.72314453, 0.76220703, -0.2536621, 2.5371094, 1.4101562, -0.78808594, -1.0712891, 1.3232422, 1.59375, 0.44628906, 0.15563965, 0.2890625, -1.3828125, -1.5078125, -0.1763916, -0.18774414, -0.6855469, -0.4387207, -0.84375, 1.0078125, -2.4179688, -1.6542969, 4.4921875, 1.2421875, -1.1289062, -0.27807617, 2.6835938, -1.7138672, 1.7333984, -0.14941406, -0.3671875, -0.30932617, 0.25561523, 1.9804688, 1.6044922, -0.99121094, -0.8442383, 0.81884766, 2.0039062, -0.93066406, 0.8017578, 0.5410156, -1.4980469, -0.1505127, 1.9560547, -1.7841797, -1.1933594, 2.8964844, -0.15686035, -0.72216797, 1.8583984, -0.9345703, 0.0107803345, -1.0498047, -1.3310547, 0.2841797, -0.32226562, -1.8886719, -0.3894043, 3.0976562, 0.5644531, 1.9023438, -2.546875, -3.5859375, -1.8134766, -2.4707031, 1.6103516, -1.0507812, -1.2480469, 0.30151367, 0.734375, 2.7988281, -1.1005859, -2.421875, -0.24914551, 1.0263672, 0.4423828, 0.03387451, 2.7441406, 0.95214844, 0.49169922, 0.03289795, 0.60498047, 1.0458984, -0.89941406, 1.2080078, 2.1445312, -0.14147949, -2.5292969, 1.2167969, -1.6152344, -0.0010843277, 0.18310547, 0.5444336, 0.63720703, -0.27539062, -0.099487305, 0.296875, -1.9560547]}, "B07GC2F1YW": {"id": "B07GC2F1YW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "embedding": [-1.3007812, 0.42211914, 0.9658203, -0.6425781, 1.3857422, 1.4755859, 1.3525391, 0.2578125, -2.2578125, 1.1962891, 2.3535156, 0.9008789, -0.82470703, -1.6728516, 0.4025879, 0.34326172, 0.5136719, 1.2734375, 0.4951172, -0.13317871, 0.70654297, 1.6806641, -0.90185547, -2.8125, 2.0859375, 0.83691406, 4.1875, -2.0390625, -0.06842041, -1.1699219, 0.60498047, 0.061828613, -0.10241699, 1.5263672, -2.8183594, 0.2722168, 0.6230469, 0.56396484, 0.36157227, -0.6694336, -1.3554688, -0.75927734, 0.8222656, 2.1953125, -3.0351562, -1.71875, 0.31201172, 2.3300781, -0.039642334, -0.85839844, 1.3955078, 1.9824219, -1.4121094, 1.2832031, -1.1884766, 2.25, 0.16394043, -2.4882812, 0.67285156, 0.21154785, 1.2832031, -0.65234375, -1.6845703, 0.57421875, -2.4453125, -1.1416016, 1.0693359, -0.18688965, 0.40307617, -1.6279297, 2.1855469, 1.0322266, -0.5078125, 0.95654297, -1.390625, -0.2175293, -2.9414062, 1.453125, -0.32177734, -1.1445312, -1.3671875, 1.6865234, 0.10687256, -0.20739746, -0.0362854, -0.5415039, -0.9892578, 1.7480469, 1.4033203, -0.32299805, 1.4560547, -1.6005859, -0.65771484, -4.2109375, 2.1191406, -0.6542969, -0.6279297, 0.8886719, -0.0067253113, 1.4042969, 1.0175781, 0.4116211, -0.4675293, -1.3242188, -2.2734375, -0.4892578, 1.9931641, 1.5449219, -1.3261719, -1.1416016, -1.1230469, 1.3183594, 1.6289062, 0.3112793, 1.6962891, -1.6464844, 0.6816406, 1.3359375, 0.9321289, 2.2714844, 2.6796875, 0.04800415, -0.17248535, -0.8227539, -0.38549805, 0.051818848, 0.73583984, 0.42163086, 4.9257812, -1.5888672, -0.63427734, -0.4633789, 1.2158203, -0.9614258, -0.17285156, -1.7080078, -1.8769531, -0.17370605, -2.328125, -0.40673828, -0.94921875, 2.2089844, 1.4882812, 0.203125, -3.2675781, -0.19921875, 0.9819336, 1.109375, -0.1303711, -3.2753906, 0.5859375, -0.62841797, -0.5996094, -2.2519531, -0.4501953, -0.42578125, -1.0039062, -0.9638672, 0.14611816, -0.65966797, 0.5136719, -0.96728516, -1.0410156, 1.0634766, -1.796875, -1.7353516, 0.90234375, 1.8681641, -0.47338867, 2.203125, 0.5703125, -0.010002136, -0.006538391, -1.3164062, 1.5654297, -1.3583984, -0.22131348, 3.3359375, 1.2802734, -1.4199219, -0.6738281, 0.1928711, -0.04940796, -0.55322266, 0.6074219, -0.84277344, 1.1015625, 2.3769531, 1.6210938, -2.4550781, 2.2871094, 1.9472656, 1.4873047, 1.1455078, 0.33569336, -1.3232422, 0.033111572, -2.1074219, 1.2431641, -1.3876953, 0.13232422, 1.2529297, -1.8847656, -0.4855957, -1.2382812, -1.0039062, 0.038085938, -1.1240234, 2.2480469, 1.8027344, 2.7871094, -1.2177734, -0.44458008, -0.21411133, 1.4023438, -2.4863281, 3.6269531, -1.7236328, 1.7929688, 1.3632812, -0.49902344, -0.18640137, 0.4868164, 3.7832031, -0.5395508, 0.28076172, 0.70751953, 0.64453125, -0.671875, -0.22424316, 1.4335938, 0.6611328, -1.0429688, -0.64404297, -0.08947754, 0.9316406, 1.8261719, 1.0888672, 0.30517578, -0.55029297, 0.61621094, 0.37597656, -0.9033203, -0.24658203, -1.7080078, 0.17980957, -3.6503906, 1.7080078, 0.8129883, -1.5673828, -1.0292969, 1.9824219, 3.6152344, 0.6333008, -2.4472656, 0.42700195, -0.2944336, 0.07458496, -1.4160156, -0.7685547, 2.8691406, -1.3662109, 2.7304688, 0.37060547, 1.8388672, -0.9458008, 4.078125, 1.171875, 0.123291016, -1.3632812, -0.35424805, 0.08795166, 1.9423828, 0.03881836, 2.9550781, 2.453125, -1.3388672, 0.98291016, 1.2158203, -0.53125, 0.6279297, 0.78027344, 2.296875, -2.1855469, -0.6508789, -1.0195312, -1.875, -1.6923828, -1.0058594, 0.0035648346, 4.6523438, -0.28710938, -3.5214844, 1.2353516, -1.4082031, 0.8886719, -0.7373047, -1.8339844, -0.49829102, 0.9926758, 0.99902344, 1.1181641, 0.113464355, 0.24389648, -1.7548828, -1.0195312, 0.8330078, -0.43164062, -0.14355469, 2.0683594, -0.9614258, 0.3876953, -3.0292969, -1.0478516, -3.0566406, 0.33935547, 1.9638672, -2.4179688, 0.4609375, -0.13745117, 1.4736328, 1.7304688, -0.052520752, -1.0966797, -1.8769531, 1.6259766, -0.7734375, 0.5175781, -0.75, -2.9589844, -0.21887207, -0.9765625, -0.0463562, -1.1943359, -1.7050781, -1.3574219, -2.1699219, -3.0859375, -2.015625, 0.27392578, -2.2558594, -0.37158203, -1.9189453, -0.2758789, -2.1777344, -3.3261719, -0.79003906, -2.0742188, -1.2236328, 3.5117188, -1.3408203, 2.4101562, 0.9667969, -3.6777344, 0.98535156, 1.5175781, -0.6503906, -0.40478516, -2.8496094, 0.12609863, -1.0908203, -0.36621094, -1.9511719, 0.91308594, 1.7138672, -0.65283203, 1.0664062, -2.4609375, -1.3154297, -0.5727539, -0.29467773, -1.21875, 0.9980469, -1.2675781, -0.7993164, 1.1123047, 0.47460938, 2.5878906, -0.8769531, 1.8193359, -0.57958984, 1.3544922, 0.8847656, -1.3154297, -2.5, -0.7578125, 1.0917969, -1.1191406, -1.1054688, -3.3085938, -0.71728516, -0.4086914, 0.8588867, -1.5595703, -0.32055664, -1.1044922, 2.453125, -1.2460938, 0.14953613, 0.20275879, -0.0491333, -1.4990234, 0.6977539, -2.8925781, 1.1083984, -2.0527344, -2.1582031, -0.5136719, 1.4267578, 0.62841797, 1.0175781, 0.8676758, 0.9926758, -0.96728516, 0.30249023, -2.0234375, 2.2714844, -0.8208008, -2.2851562, 0.8847656, 0.5488281, -2.7226562, -2.2578125, 0.08081055, 4.5234375, 1.1865234, 3.0976562, -0.41479492, 0.5366211, 0.3088379, -0.36254883, -0.6694336, -0.36621094, 0.10101318, 2.71875, -2.6777344, -1.1113281, -0.51660156, 1.3515625, -1.3632812, -1.3632812, 2.9238281, 0.44384766, 2.7832031, 1.9697266, 0.19494629, 1.0078125, -1.2851562, 1.6611328, -0.24072266, -0.82910156, 0.016571045, -1.2333984, 1.0517578, -0.03149414, 1.171875, 1.7099609, 2.4824219, 2.7578125, 2.2226562, 1.5322266, 0.060577393, 1.1162109, 0.018157959, 2.75, 0.24279785, 3.2089844, -0.7480469, 0.71484375, 0.52001953, -1.3125, 0.56152344, -0.6191406, -0.15600586, 2.5292969, 1.0175781, -0.90625, 0.80859375, 0.20483398, -0.64697266, -0.41577148, 2.2382812, -1.1816406, 0.33911133, 1.8876953, -0.14746094, -2.6171875, -2.4394531, 0.14575195, -0.29614258, -0.30200195, 0.42041016, 2.921875, 1.7890625, 0.25439453, -0.5317383, 0.8408203, -1.6894531, -0.15551758, -1.4726562, 0.59472656, -0.12548828, -2.2402344, 0.86376953, 0.16003418, -0.18896484, -1.3925781, -0.71191406, 1.1435547, -0.47338867, 1.2783203, 1.1738281, -0.8544922, -2.8261719, -0.4951172, -3.1660156, 1.5644531, 0.63427734, -4.953125, -0.81347656, 1.9335938, 1.4375, 0.05923462, -0.7836914, 2.453125, 0.19250488, -1.4121094, 3.2949219, -2.4882812, -0.7714844, -2.5839844, -4.390625, 1.4287109, -1.0507812, -0.78271484, 5.0195312, 1.2539062, 0.3840332, 2.265625, 0.8779297, -3.1933594, -1.3671875, -0.8457031, -0.95751953, -1.2998047, -0.88378906, 0.56884766, 0.016571045, -2.5957031, -0.5258789, -0.5292969, -0.5317383, 0.6591797, 0.89160156, -1.8574219, 0.99365234, -2.2421875, 0.40673828, 0.28808594, -0.41577148, 1.859375, -1.4619141, 0.45166016, 0.7192383, 2.2363281, 0.31469727, -0.6635742, -0.21655273, 0.16467285, 0.41601562, -1.4404297, 0.18444824, 2.5097656, 2.3046875, -0.14892578, -1.8466797, -2.1425781, 0.33666992, -0.2824707, -1.8417969, 0.02822876, -0.4567871, -1.9492188, 0.8457031, 0.82714844, 0.1665039, 1.3388672, -0.4946289, -2.3203125, 0.65478516, -2.2011719, -1.8173828, -1.7509766, -0.6582031, 0.89697266, -1.3066406, -0.10321045, -0.3557129, 0.8208008, -0.9614258, -0.68408203, -1.9208984, 2.5351562, 1.6113281, 2.546875, 3.7265625, -0.4375, 1.0917969, 2.3847656, -1.0566406, 1.5791016, -1.625, -0.5727539, 0.14440918, 1.9677734, 1.4707031, -1.4013672, -1.8095703, 0.5576172, -0.72753906, 2.0175781, -1.9228516, 1.2529297, -1.625, 0.30151367, 0.23046875, -2.4667969, 0.97998047, -1.3203125, -1.7431641, 0.66015625, -0.33251953, -2.3222656, -0.5004883, 0.22302246, 0.18688965, 1.4267578, 2, -0.20959473, -2.0566406, -0.9926758, -0.31835938, 0.9145508, -0.17370605, 0.46704102, -0.30615234, -0.12939453, -0.22338867, 0.30737305, 1.6777344, 1.9638672, 1.3730469, 4.265625, 0.96728516, -1.7128906, 0.16052246, 1.0371094, -0.7885742, 2.1132812, 0.3852539, -2.1835938, 1.7597656, 0.71435547, -4.359375, -1.5771484, 2.3808594, -0.921875, 1.1923828, -0.85498047, -1.0273438, 1.6914062, -2.0742188, 0.68115234, 0.65478516, -1.7871094, 2.375, 0.55371094, -2.4375, -1.7324219, -0.12780762, 2.8789062, -1.6816406, -1.2558594, 2.7792969, 0.12164307, 0.8989258, 0.38427734, -1.3242188, -1.2324219, -2.3691406, 2.8203125, 1.734375, 0.94677734, 0.30810547, 3.1972656, -3.0820312, 0.21325684, -2.953125, 3.3691406, -4.890625, -1.8408203, 0.19470215, -2.234375, -1.4189453, -1.5839844, 0.37109375, 0.69970703, 2.6210938, 1.3427734, -2.6035156, -1.0458984, 1.3125, -2.1621094, -5.734375, -2.4316406, 0.016464233, -0.3918457, -0.27001953, 1.5185547, 0.3486328, 1.7304688, 0.6479492, -1.6523438, -0.21496582, -0.45703125, -2.3398438, -0.5883789, 0.20617676, 0.33764648, -0.16870117, 1.1435547, 2.8046875, -0.92041016, 1.2548828, -2.75, 0.84277344, -0.9477539, -1.0615234, 0.57128906, -0.11090088, 1.0732422, 0.06561279, 0.10290527, 0.49780273, -2.9023438, 2.4003906, -0.67578125, -0.6430664, 0.5698242, -1.4355469, -0.36547852, -0.28466797, 0.087524414, -1.3417969, -0.41625977, 2.1386719, 0.21350098, -2.5410156, -0.42822266, 0.03286743, -0.6513672, -1.125, 1.2207031, -0.15991211, 0.0019111633, -1.0380859, 0.78564453, -2.2070312, -2.1171875, -1.9472656, -1.6611328, -0.62646484, 0.17163086, -1.9472656, 1.7910156, 0.087768555, -0.69384766, 1.625, 0.7636719, -0.3010254, -2.4785156, -0.09790039, 1.5625, 1.953125, 1.7421875, -1.0341797, -1.5078125, -1.2568359, -0.5991211, 0.51171875, -0.31860352, 0.8964844, 0.62353516, -0.5419922, -1.2880859, 0.98095703, 1.8955078, 1.3525391, 0.58740234, -0.5913086, 0.29467773, 1.0439453, -0.91015625, 1.8701172, -0.6772461, 1.5185547, -0.07775879, 3.0175781, -0.7402344, -2.4335938, 1.4414062, -2.4960938, -0.11480713, -0.36767578, -1.2714844, 0.119018555, 0.8828125, 0.1282959, 0.3310547, 0.115722656, -1.8408203, 2.8574219, -0.3791504, -0.37426758, -1.1513672, 3.1738281, 0.7026367, 2.6289062, 1.8115234, 0.97998047, 0.15100098, 0.83154297, 0.63378906, -0.61035156, 2.4257812, -1.5449219, -0.50878906, 0.37060547, -1.8681641, -1.7558594, 4.0859375, 0.53515625, 2.1054688, 1.1630859, 1.8515625, 2.3515625, 1.1992188, 2.0703125, 0.72216797, 0.24035645, 1.6591797, -0.7949219, 1.6787109, 1.1650391, 3.7265625, 1.2324219, -1.2529297, 0.49780273, 0.27416992, 0.6196289, 0.7910156, -0.16113281, -0.18237305, -3.3046875, 2.2324219, -1.3300781, 0.76464844, -3.203125, -0.060577393, -1.6816406, -1.2626953, -1.0410156, 0.50927734, 3.6308594, 0.091552734, 0.29125977, 0.27197266, -0.054870605, 0.83740234, -3.9394531, -1.640625, 1.2490234, -0.9091797, 0.22399902, 0.43896484, 1.5673828, -0.0041656494, 1.828125, -0.26635742, 2.4960938, 1.53125, 0.7602539, -0.99560547, -1.2890625, 0.4777832, 1.6660156, -0.020385742, -1.3671875, 0.7861328, 0.7246094, -2.4472656, -2.203125, 1.2597656, 0.31225586, 2.6875, 2.1816406, -1.8037109, 1.8720703, -1.6503906, -0.4729004, -0.60058594, 1.5175781, 0.057922363, -0.74658203, -1.5849609, -0.234375, 1.9238281, 2.1894531, -0.6069336, -0.45263672, 0.85302734, -0.0131073, 2.4101562, -0.5654297, 1.9111328, -0.9423828, 0.5229492, -1.9443359, 3.2890625, -0.29614258, 0.80566406, -1.4023438, -0.07342529, 1.2363281, -0.04397583, 0.10827637, 1.8242188, -0.8989258, -0.7216797, -0.7709961, 0.61035156, 0.023040771, -2.703125, -2.4902344, 1.5664062, -0.20703125, -2.8964844, 0.076049805, 3.515625, 1.7568359, 0.84228516, 2.7597656, -1.9257812, 1.8574219, 0.43798828, -0.1303711, 0.09338379, 1.1474609, -0.101745605, -0.21228027, -2.2753906, 2.0625, 2.1933594, 1.7441406, -0.34033203, 0.7709961, 2.1992188, 1.3271484, 0.87939453, -0.23242188, -1.6523438, -1.0888672, 1.5966797, -0.34375, 2.1152344, 1.9853516, 0.0048103333, 0.54345703, -1.0234375, -1.1582031, -0.4494629, 0.5229492, -1.4130859, 1.8515625, 3.296875, 1.5546875, -0.5908203, -1.9150391, -2.1542969, -0.47192383, -0.58935547, 2.3769531, -0.55810547, -1.6962891, -0.60498047, -0.41748047, 0.29248047, 1.8896484, -2.8925781, 1.0917969, -2.9882812, 0.6489258, 0.5854492, 0.33789062, -0.27514648, 0.19592285, 1.5654297, 3.5058594, 0.22851562, -0.42211914, 0.17443848, 2.6894531, 0.86572266, -3.4492188, 0.7558594, -1.7939453, 1.84375, -0.54052734, 0.921875, -0.9863281, -0.28100586, -0.6699219, -1.5917969, -2.4433594]}, "B08V521V9N": {"id": "B08V521V9N", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater\nDescription: \nFeatures: Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips.\nEasy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries.\n3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins.\nEnergy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour.\nImportant Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "embedding": [-1.1425781, 2.4355469, 1.6679688, 0.5810547, -1.0859375, -0.8125, 1.1474609, -1.8349609, -0.41186523, 3.0917969, 1.6220703, -0.88378906, 1.6503906, -1.4033203, 0.02243042, 0.0103302, 1.1552734, 0.21020508, 0.7758789, -1.0830078, 2.9003906, -0.10095215, 1.8017578, -2.2636719, 1.2753906, -0.2541504, 2.3984375, -2.8789062, -1.0966797, 0.4584961, 0.3540039, 0.33447266, 0.5756836, 2.1464844, -1.0771484, -0.6508789, -2.3789062, 1.3642578, -3.2070312, -1.7392578, -0.8129883, -2.6484375, 1.8320312, -0.9970703, -0.30859375, -2.90625, 1.3759766, 0.20202637, 1.5488281, -0.26489258, -1.8271484, -0.35473633, 0.019943237, 1.4013672, -2.2402344, 0.06488037, -0.38891602, -2.1933594, 2.2851562, 0.84375, -1.25, -0.54003906, -2.4628906, 2.1796875, -0.14404297, 0.23620605, -0.40429688, -2.609375, -0.2541504, 0.7910156, 2.1054688, 0.6333008, 0.84716797, -0.86816406, -0.57666016, 0.7290039, -2.6757812, 0.4111328, 2.4394531, 2.3730469, -1.7519531, 1.5107422, 1.1132812, -2.4726562, -2.5898438, 0.009819031, -0.84375, -0.09466553, 0.39160156, 1.9511719, -2.0703125, 2.8554688, -1.5654297, -1.7714844, -0.27954102, -2.15625, 2.3671875, 2.0351562, 2.421875, 1.3310547, -2.5585938, -0.75683594, 0.21008301, -1.3056641, -2.3046875, -0.43896484, 2.1757812, 1.3417969, -2.2851562, 0.6748047, -2.2519531, -0.36547852, 2.5, -1.2763672, -1.4375, -1.2216797, 1.8027344, -0.11730957, 4.4570312, -0.0793457, 3.828125, -0.6923828, 2.4414062, -2.5898438, 0.8413086, -0.18945312, -0.16931152, -1.359375, -0.48339844, -0.71533203, -0.6220703, 0.12194824, 2.6914062, 1.4423828, -0.21447754, -2.1347656, -1.5498047, -2.625, -3.0976562, -0.06561279, -2.5273438, 1.3203125, 1.4179688, 1.1904297, -5.2695312, -1.7480469, -0.78759766, 0.5449219, -0.040161133, -0.5732422, -0.16369629, -3.1015625, -0.74121094, -1.3066406, 0.33496094, 2.5644531, -1.2792969, -1.2148438, 3.6835938, 1.7373047, 0.8823242, -0.5180664, -1.0878906, 0.09454346, 1.0009766, -2.03125, 2.2265625, 0.22290039, 0.6376953, 0.32373047, -1.0068359, -2.2128906, 0.94970703, -0.04220581, -0.05001831, -2.2011719, -0.16748047, 1.8105469, 1.8798828, -0.3269043, -4.7773438, -0.71533203, -0.08782959, 1.3398438, 1.8691406, -1.1142578, -1.4248047, -0.98876953, -1.0566406, -1.6748047, -1.6123047, 0.9584961, -2.1503906, -1.7128906, -0.36157227, -2.4921875, -2.4667969, -0.2607422, 1.8857422, 1.8359375, 1.1464844, -0.7998047, -0.66064453, 0.10205078, -1.1660156, -2.3203125, 0.5751953, -1.0185547, 0.47802734, 2.4257812, 0.1538086, 0.5019531, 2.0058594, -0.30151367, -2.2089844, 0.5698242, 2.4863281, 0.7060547, 2.2167969, 1.6875, -0.21960449, 0.18823242, 1.4853516, 1.671875, 0.875, 1.0234375, 0.96777344, 0.15063477, -1.7744141, -1.8339844, 3.2050781, 0.40112305, -0.52001953, -0.7084961, -1.1933594, 3.0175781, 0.2692871, 0.82714844, 0.61328125, 0.011924744, -0.5209961, -1.6660156, -0.77978516, -0.26733398, -1.0400391, -0.40185547, -1.5693359, 0.65283203, 1.0869141, 0.2849121, 1.3085938, -2.1679688, 0.029937744, -1.9033203, -3.2382812, -0.1071167, 0.78808594, 0.5830078, -0.6826172, -3.5234375, 1.7275391, 2.0546875, 0.35888672, 1.7089844, -1.2578125, 0.31884766, 2.7167969, 2.1621094, -2.3046875, 3.40625, 0.36157227, 3.1953125, 2.1972656, -0.4116211, 2.0429688, 0.65283203, -0.52783203, 2.1484375, -0.14758301, 0.5229492, 0.5288086, -3.2304688, 1.5722656, -1.7675781, 0.07067871, -0.34399414, 0.5654297, 0.5366211, -2.375, 0.4633789, 3.2324219, -1.2060547, -2.2753906, 0.9550781, -1.3125, 2.2265625, 3.6308594, 0.6113281, 0.61816406, 0.73828125, 1.2119141, 0.5029297, -2.0917969, 2.5839844, -0.60058594, -1.2558594, -0.50683594, -2.140625, 2.2675781, 1.703125, 0.29345703, -0.47875977, -2.8535156, -0.6142578, -3.1386719, -0.68066406, 2.3789062, -3.7460938, -0.08355713, 4.3632812, -1.0048828, 0.23693848, -0.049926758, -2.5136719, 0.7788086, 0.9897461, -2.9316406, 1.6660156, 0.37939453, -1, 1.6210938, -0.8413086, 1.1875, -2.2597656, -0.5336914, -1.0976562, 1.0380859, -2.6289062, 0.66015625, -0.9501953, -0.5761719, 0.067993164, 0.86621094, 0.6669922, -0.56884766, -1.0556641, -0.6738281, 0.2980957, -1.359375, -2.5566406, 1.3623047, 1.6523438, -1.6552734, -3.5957031, 2.1679688, 0.47851562, -0.13659668, 1.7314453, -1.6210938, 1.8808594, -0.9501953, 0.83251953, -0.2548828, 0.40576172, -0.038269043, -4.03125, 1.5517578, -2.9453125, 3.3554688, -0.4572754, 2.53125, -1.7919922, 0.11694336, -0.75683594, -1.03125, 2.5507812, -1.1240234, 2.7207031, 0.44091797, 0.73095703, -0.91552734, -1.8798828, -0.42016602, -0.8378906, -1.4501953, 2.1386719, -1.5322266, -1.8466797, -1.7363281, -3.6113281, -0.04397583, -0.8442383, -2.0996094, 0.24816895, -2.9375, -1.1425781, 0.9399414, 1.0322266, 2.2011719, -0.52783203, -0.00072431564, -1.4726562, -2.6152344, -2.3730469, -1.3115234, 0.5102539, -0.08898926, -0.24572754, -0.25634766, 0.80126953, 0.5551758, 2.9550781, -0.50097656, 0.8769531, 0.021255493, -4.6328125, 0.64208984, 2.1210938, 2.1621094, 0.111206055, -1.1611328, -1.0253906, -2.9550781, -0.22351074, 2.3359375, 1.4804688, 3.3730469, 0.8105469, -0.35717773, 0.7729492, 0.4638672, 0.17480469, -0.5541992, -0.8300781, 3.4453125, -1.8457031, -0.25976562, 1.7714844, 3.125, -3.4589844, -0.06365967, 1.3857422, 0.1772461, 2.6113281, 1.3134766, -0.7324219, 0.5410156, 1.3349609, -0.32910156, 2.3085938, -0.20349121, -0.8125, -0.8564453, -0.47021484, 1.3056641, 1.1806641, -1.9550781, 0.94189453, 0.17993164, 1.9238281, 1.4150391, -2.1875, 0.40234375, 0.6743164, 0.34375, 1.8857422, 2.1894531, -0.92333984, 0.99316406, -1.3662109, 0.875, 0.4609375, -0.98876953, 0.6113281, 0.4934082, 1.9287109, -0.10852051, 0.093566895, -0.62158203, -0.31518555, -0.4189453, 1.9287109, 0.65234375, 0.64501953, 1.9902344, -2.5820312, -3.3105469, -0.11505127, 0.234375, 0.234375, -1.6875, 1.2763672, -0.12322998, -0.6245117, -1.3183594, -2.6015625, -2.6601562, -2.0878906, 2.21875, 0.1697998, -1.2246094, -1.8496094, 1.2041016, 1.6542969, 2.296875, -0.0046043396, -1.8505859, -2.8613281, -1.1181641, 1.4375, 0.13757324, 1.6171875, 1.5976562, -2.7363281, 0.27075195, -2.6503906, -0.14074707, 2.2714844, -0.96191406, -0.7988281, 1.1005859, -0.4321289, 0.49536133, -0.35058594, 1.7919922, -2.4179688, -0.09753418, 2.703125, -0.54003906, -0.16149902, -1.4785156, -5.2890625, 1.2919922, -1.1621094, -1.3544922, 1.6162109, 0.8930664, 1.2490234, -1.2089844, 0.35229492, -3.0566406, -2.6601562, -1.4921875, 2.6386719, -2.9335938, 3.2675781, 1.3798828, 0.41357422, -1.0605469, -1.8076172, -0.7988281, -0.40844727, -0.6489258, -0.26953125, 0.74609375, 1.5966797, -1.0585938, -0.24169922, -0.5571289, 2.0488281, 0.3334961, -0.20654297, -0.9746094, -1.1035156, 0.7607422, -0.28344727, 0.70214844, 0.057037354, 3.3710938, 2.53125, 0.7319336, -1.2705078, 1.9375, 1.2509766, 0.14501953, -3.84375, -2.2792969, -1.9902344, 1.1523438, 0.44091797, -1.2216797, 0.6855469, -1.2880859, -0.3605957, 0.63964844, 1.2275391, 3.4433594, 0.5761719, -1.3320312, 1.7724609, 0.921875, -3.0683594, -2.4121094, -0.84716797, -0.21533203, -0.11645508, -1.1542969, 0.71533203, -1.5205078, 0.30737305, 0.28515625, -1.2392578, 0.8261719, 1.7998047, 2.5585938, 0.84472656, -1.5458984, -1.5771484, -0.21911621, -0.68310547, 0.6269531, -0.16796875, 1.8710938, 0.75097656, 2.2480469, 2.5039062, -1.5888672, 1.25, 0.28564453, -1.5390625, 1.3154297, -1.4521484, 0.6152344, -0.76660156, -1.0302734, 0.72802734, 0.27026367, 3.4648438, -0.50683594, 0.09820557, -0.39868164, -0.0023097992, -1.4248047, 0.52783203, 1.5039062, 2.0566406, -0.24389648, -0.30688477, 0.7529297, -0.39208984, 1.4267578, -0.0758667, 3.7148438, -1.1875, -1.6513672, -1.8984375, 1.1474609, -1.2978516, 0.33813477, 0.39892578, 0.8588867, 1.5986328, 1.109375, 2.2089844, 0.45336914, 1.2363281, 1.1699219, 1.4638672, -1.2773438, 0.8461914, -1.4101562, 2.1308594, -1.21875, -2.0117188, 0.95410156, 2.15625, -0.07550049, 2.1621094, 0.38745117, -0.4440918, -1.2148438, -2.5839844, -1.7412109, -1.6083984, 1.6289062, -0.22265625, -1.4560547, 0.66015625, 0.65771484, 2.5996094, 3.546875, 0.7763672, 1.203125, 0.89453125, 0.21142578, -0.9038086, 0.15539551, -1.6367188, -1.8476562, -0.19384766, 0.8486328, 0.44921875, 0.95166016, 2.0019531, -0.76708984, -1.4433594, -2.15625, -1.3007812, 2.0683594, -3.6484375, -0.56396484, -1.7021484, 2, 0.40112305, -1.3115234, -1.6357422, 0.72265625, 1.6376953, -1.4160156, 0.484375, -0.13342285, -1.1015625, -2.5761719, -5.6523438, -0.3154297, 0.96875, 1.1601562, 0.24926758, -1.6972656, -2.2617188, 0.7182617, 0.69628906, 0.3190918, -1.1953125, 1.9638672, -1.0341797, 2.0722656, 0.54003906, -0.12658691, 0.7480469, 1.1611328, 1.5253906, -0.3076172, -0.8208008, -1.5566406, -2.2871094, -0.48876953, -1.5888672, -0.32836914, 0.7319336, -0.8989258, -0.09692383, 3.9355469, -0.008003235, -1.9042969, 1.3476562, -0.3642578, -2.8222656, 1.9775391, -0.88671875, 2.3359375, 1.1982422, 1.4111328, 0.20080566, 0.98876953, 1.0722656, 0.53466797, 1.3154297, -0.30786133, 1.6894531, 1.4345703, 0.33374023, 1.2412109, -1.0195312, 0.23413086, 0.84716797, -0.034698486, -1.2626953, -3.3183594, -1.7587891, -0.29125977, -1.3398438, 0.26123047, 0.42114258, 2.3613281, 0.2175293, 1.140625, 0.7133789, -0.19848633, 1.0820312, -2.234375, 0.26733398, -1.2207031, 2.3496094, 0.6088867, -2.0761719, -3.8222656, -5.1835938, 0.85058594, 0.15246582, 0.96777344, -0.52197266, -0.69677734, 0.34301758, 1.5302734, 0.097351074, 2.9746094, 0.70166016, 0.6484375, -3.1367188, 2.4648438, 2.2851562, 0.22790527, -1.5029297, -0.0049819946, 0.5151367, -1.7734375, 3.2402344, 1.6611328, -0.03012085, 0.6689453, 0.116760254, 2.0488281, -0.93603516, -2.2734375, 1.6083984, -2.703125, 1.5673828, 0.23461914, -1.0097656, -0.22253418, 1.1396484, 0.41845703, -0.5185547, 2.671875, 1.9248047, -1.2197266, -0.9838867, 1.46875, 0.4873047, -1.2841797, 1.1142578, 1.0458984, -0.87158203, 2.7089844, -1.3740234, 0.23901367, 1.5019531, 1.90625, -0.07635498, 1.4453125, 0.11450195, 0.8442383, 1.2832031, 2.2480469, 3.1132812, -0.9506836, 1.2763672, 0.8300781, 1.2753906, 2.015625, -1.8457031, 1.2207031, 0.8276367, 0.67285156, -0.92626953, -1.3193359, -0.29516602, -0.2401123, -1.2958984, -3.1933594, -0.64453125, 0.0037193298, -1.9697266, -2.4199219, -0.7080078, 0.3557129, -2.390625, 2.1855469, -0.65283203, -0.1973877, -1.3769531, 0.15808105, -0.08062744, -1.3359375, 0.08544922, 1.4013672, 0.9819336, -0.25854492, -1.3837891, 1.0546875, -1.9755859, -1.1044922, 0.5551758, 3.2128906, 1.7148438, 1.9335938, -1.3779297, 1.3515625, 2.7890625, 0.31640625, 0.16784668, -0.40698242, 1.3652344, -1.7695312, 4.1640625, 2.9667969, -2.2695312, 2.8710938, -0.30932617, -0.30200195, -2.2246094, -0.9042969, -0.65527344, -2.3691406, -0.41577148, -1.6962891, 1.4296875, -1.3017578, 1.1376953, -3.6054688, 3.2734375, 1.3515625, -3.0898438, -0.6386719, 0.34985352, -0.34887695, 2.5527344, 0.27929688, 0.3330078, 0.94970703, 0.7973633, 1.625, -0.72216797, 0.3232422, -0.5258789, 0.41186523, -1.0986328, 2.7167969, 0.20117188, -0.7529297, -0.8173828, 1.7060547, -0.0025501251, 0.86279297, -1.8632812, -1.5449219, 3.6660156, -0.05340576, -0.6772461, 0.08441162, -0.6425781, 0.023086548, 1.0302734, 0.13635254, -1.1533203, -0.25561523, 1.8105469, 2.0703125, -3.0273438, -0.8725586, 0.8598633, 0.609375, 0.66552734, -2.2324219, -2.3632812, -0.97558594, 0.4868164, 0.7138672, -1.4199219, 0.9472656, -1.2080078, -0.8881836, 0.6513672, -0.1282959, 1.2392578, -1.2265625, -0.9375, 1.2177734, 1.7978516, -1.4404297, 0.53027344, 0.30004883, -1.125, -0.63964844, 1.7041016, 0.9291992, 1.2587891, -2.6621094, -1.375, -0.43432617, -0.29638672, -0.42871094, 1.3056641, 2.0703125, 0.71435547, 1.6152344, -0.72265625, -2.5839844, -1.0761719, -2.4453125, 0.48242188, 0.03515625, -0.6303711, 0.75878906, 0.9951172, 1.3779297, -0.44628906, -0.23254395, -0.7050781, 0.98876953, 1.5576172, 1.2246094, 1.0742188, 1.1464844, -0.90234375, -0.51708984, 1.8476562, 1.8330078, -1.0507812, 1.3779297, 1.8974609, -0.74316406, -1.5976562, -0.45410156, -1.7734375, -2.4238281, 1.4414062, 2.21875, 4.6328125, -1.5498047, -2.0722656, -4.5117188, -1.0849609]}, "B08BZ7FNRM": {"id": "B08BZ7FNRM", "original": "Brand: GloryShine\nName: GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)\nDescription: \nFeatures: Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table\nMade of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won't crack in the cold\nCome with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy\nCover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models.\nFits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.\n", "embedding": [1.2119141, 0.67285156, 1.765625, -1.9746094, 1.0634766, 1.4638672, 0.31713867, -1.8740234, 0.7783203, 3.2265625, -0.5991211, -0.4243164, 1.6650391, -3.4785156, 3.21875, 0.5629883, -0.42456055, 2.7773438, 3.34375, -2.390625, 1.5849609, -1.65625, 0.57177734, -0.65234375, 0.22607422, -1.1669922, 4.2304688, -2.2441406, -1.2568359, -0.53808594, 1.2851562, 1.2685547, -0.64160156, 1.6757812, -2.1933594, -1.0224609, -0.23986816, 0.47924805, -0.6455078, 0.5205078, -3.1230469, -2.46875, 2.3691406, 3.1660156, -1.6904297, 1.7304688, -0.029953003, -1.9326172, 0.008071899, -1.2861328, 1.6503906, -0.12597656, 1.2167969, 0.4650879, -0.85839844, 1.3789062, -1.2744141, -0.91308594, 1.8710938, 0.41967773, 1.4853516, -1.4492188, -0.0012378693, 3.3378906, -1.7177734, 0.87109375, -1.0537109, -0.57373047, 0.62597656, 0.71777344, 1.2509766, 0.8442383, 1.5166016, -0.6489258, 3.1445312, -0.8671875, -3.7304688, 1.7900391, 3.3828125, -2.4492188, 1.2246094, 2.328125, 0.1381836, -1.8828125, 0.123413086, -1.2978516, -1.1875, -1.5673828, -0.45874023, 1.4882812, -0.077941895, 2.828125, -0.6191406, -2.9101562, 0.14526367, -1.7353516, 2.6992188, 1.3964844, 0.06866455, 0.101745605, -0.056732178, -0.20251465, 0.34106445, -0.03894043, -3.375, -1.6865234, 1.5136719, -0.6376953, 0.5234375, 0.45166016, -0.36865234, -0.2322998, 0.6464844, -1.453125, -1.3300781, 2.1855469, 0.7661133, 1.4453125, 2.1835938, 1.3330078, 3.9785156, 1.3300781, 0.31152344, -2.2539062, 2.2285156, -0.6665039, -2.2128906, 2.0214844, 1.2050781, -2.1738281, 0.37158203, -2.8710938, 0.7470703, 0.10070801, -2.2128906, 0.40649414, -3.2109375, 0.10821533, -2.2011719, 0.52685547, -0.99316406, -1.6113281, 1.390625, -0.2836914, -3.21875, -0.8984375, -1.4833984, 4.3867188, 0.025146484, -1.6513672, -0.09643555, 0.59765625, 0.08483887, -2.1777344, -0.22009277, -0.36914062, 0.90771484, -3.8378906, 3.7382812, 1.1806641, 2.1660156, -0.3701172, 0.26953125, 0.58251953, 1.1005859, -0.6308594, 2.7851562, 0.30615234, 0.25268555, 2.6015625, -0.07897949, -1.6728516, 0.16174316, 0.78027344, -0.5263672, 0.08728027, -0.61376953, 0.55029297, 2.4121094, 0.52734375, -0.78564453, 0.50634766, 0.20349121, 0.22302246, -0.22290039, -2.2246094, -1.2392578, -2.5371094, -0.40625, -1.0332031, -2.0839844, 0.38085938, -2.4648438, 0.08227539, -1.9794922, -1.9931641, -3.0195312, -1.7382812, 1.2929688, 0.85839844, -1.34375, 1.2011719, -0.9741211, -0.40649414, -3.8300781, -2.2207031, -0.71484375, 2.7519531, 1.2382812, -0.038909912, -0.53027344, -1.5039062, 1.2880859, 2.3457031, -0.19226074, 0.5385742, 1.2929688, 0.79248047, 1.8085938, 1.28125, 0.19946289, -0.06317139, 2.0097656, 3.5371094, -0.07684326, 1.1601562, 1.4658203, 0.9716797, -1.7021484, -1.6767578, 2.2714844, 1.5634766, 0.5761719, 1.4619141, -2.1582031, 1.59375, -0.12915039, -0.3232422, 1.6210938, -0.9067383, 0.23706055, -1.953125, -2.5976562, -0.6230469, -0.22058105, 1.6552734, 0.49169922, 0.81933594, 1.6669922, -0.48754883, -1.8125, 0.21533203, 0.7626953, 1.3662109, 0.014343262, 0.30615234, -0.11004639, -0.39257812, 1.2636719, -0.66308594, -1.0136719, 0.85546875, -0.5864258, 1.7119141, -2.0527344, -2.1152344, 1.3505859, -1.6679688, -2.7871094, -0.25585938, -0.046081543, -0.23144531, 2.3183594, -0.68896484, 1.0019531, -0.56396484, -0.38256836, 1.609375, 0.87060547, 1.7607422, -0.43041992, 0.3918457, 1.8125, -0.8964844, 0.44580078, -0.056152344, 0.7626953, 0.06896973, -0.39648438, -0.040649414, 2.5, -1.4960938, 0.0541687, 2.0664062, -0.24121094, -0.105407715, -0.16674805, -0.49829102, -0.9277344, -0.25634766, -0.5263672, 2.8144531, 1.3505859, 2.2460938, -0.9326172, 1.1660156, -0.3881836, -1.4375, -0.10192871, 0.8125, -0.1640625, -0.2932129, -0.19091797, 0.93115234, -2.0410156, -2.4609375, 2.1640625, -2.1074219, 0.77441406, 0.89990234, -0.6621094, 0.35620117, -2.1347656, -2.5605469, 1.1503906, 2.7988281, -3.4511719, 0.38427734, 0.8964844, -0.6245117, -1.5917969, -0.8823242, 0.24206543, -2.9707031, -1.2382812, -3.9453125, -3.3808594, -0.8852539, 0.13952637, -3.1503906, 0.98339844, -0.76708984, 0.11785889, 1.2832031, -0.7675781, -2.3359375, 0.40234375, 0.40283203, -2.6113281, 0.6582031, -0.70166016, 2.4492188, -0.7368164, -1.9599609, 1.2841797, 1.1416016, 0.3869629, -0.5239258, -1.2919922, -1.1230469, -0.78125, 1.8496094, 1.2626953, -1.9912109, 1.8740234, -2.3535156, -0.7583008, -4.015625, 0.2541504, 0.1204834, -0.04055786, -0.82177734, 1.1875, -2.2988281, -1.2714844, 1.0498047, -1.5605469, 5.734375, 0.53808594, 1.4892578, -0.6220703, -1.3193359, 1.3642578, -0.484375, -2.109375, 1.0751953, 0.12597656, -0.3322754, -3.8105469, -2.2050781, -1.9824219, -1.0478516, -1.0283203, 0.7529297, -0.88183594, -0.52197266, 1.8378906, -2.7773438, -0.60058594, -0.9785156, 0.66748047, 0.13366699, 0.20788574, 1.0146484, -4.1367188, -1.3300781, -1.6933594, -0.4567871, 2.4960938, -1.2431641, 1.59375, 1.8759766, -2.75, 2.9277344, 0.5151367, -4.09375, 1.2978516, 2.7128906, 2.609375, 1.3603516, -1.1279297, -2.1582031, -0.54589844, 1.2724609, 1.5146484, 0.62890625, -0.6274414, 0.08630371, -0.5083008, 1.0400391, -0.18273926, -0.82373047, 0.75927734, -0.08544922, 2.0136719, -2.375, -0.1652832, 0.10534668, 0.87109375, -2.8242188, -0.11187744, 1.6142578, -1.4082031, -0.77441406, -1.1982422, 0.9355469, 0.8120117, -0.11651611, 2.5292969, -2.2421875, 1.984375, 1.2060547, 0.29418945, 1.1914062, 1.7841797, 1.9658203, 2.375, 1.015625, 2.0488281, 0.80615234, 0.31860352, -2.8398438, 1.1816406, 0.9980469, 1.4404297, 0.14331055, 2, -1.2617188, 0.57910156, 1.4541016, -0.59033203, -0.014167786, -0.96728516, 0.36499023, 1.8125, 0.16357422, -1.2392578, -1.5546875, -0.29492188, -0.828125, -1.9960938, 0.5317383, -1.4423828, -1.5234375, 1.2480469, -2.2597656, 0.46557617, -1.1386719, 3.5683594, 0.56591797, -1.796875, -0.6660156, 2.6542969, -0.7729492, -1.1816406, 1.2099609, -1.2392578, -0.6899414, 3.0039062, 0.8046875, -2.4726562, 1.5703125, -2.703125, 0.66552734, 2.5078125, 0.5083008, 0.6459961, 1.5332031, -1.1074219, -1.9277344, 2.2167969, 1.0527344, 0.8105469, -1.8017578, 0.67333984, -1.1308594, -2.0820312, 3.4785156, -1.5654297, -0.43969727, 2.1835938, -0.34277344, 0.26611328, -0.41259766, 2.0292969, -1.5820312, -1.0322266, 3.390625, 0.07421875, -0.72998047, -0.99560547, -4.53125, -0.45776367, -1.7685547, -0.9267578, 2.0195312, 0.3544922, 0.10797119, 0.49487305, -2.2011719, -1.9306641, -1.2587891, -1.2490234, -2.109375, -3.0488281, -1.8828125, 0.11328125, 0.7080078, -1.125, 0.00806427, -0.9213867, -0.058258057, 0.005241394, 0.7294922, 0.5083008, -0.9560547, -2.84375, 0.64941406, -0.32104492, 0.75439453, 0.4729004, -0.3100586, -0.67822266, -1.3964844, 1.9033203, 0.6796875, -1.1367188, 1.5947266, 3.1835938, 0.09814453, 0.49951172, 0.8144531, 0.890625, 3.3144531, -0.8930664, -2.3222656, -0.48632812, -1.265625, 2.5117188, -0.69677734, -1.2070312, 0.2709961, -1.7597656, 0.33520508, -1.2207031, 2.0605469, 1.6796875, 0.61816406, -2.5253906, 1.9082031, -2.4550781, -2.3789062, -0.09857178, -0.042755127, -0.70703125, -0.16796875, -0.47583008, -2.1074219, 1.9345703, -2.65625, 0.8071289, -1.0322266, 2.9335938, 1.3935547, 1.5253906, 3.9140625, -1.7158203, -1.6357422, 0.61328125, -2.265625, 1.1621094, 1.1074219, -1.0273438, 1.4121094, 1.8134766, -0.6274414, -0.65771484, -0.96484375, 1.0605469, -1.7998047, 0.028152466, -1.3427734, -0.29858398, -0.20727539, -0.96875, -1.1259766, -1.0849609, 0.21459961, -0.6357422, -1.0732422, 0.5751953, -0.35986328, -0.4116211, 0.07513428, 0.95751953, -1.5732422, 1.2480469, 1.8808594, -0.41015625, 1.9755859, 2.1953125, 0.40844727, 2.3554688, -2.6972656, 0.67089844, 0.6582031, 0.39160156, -2.5566406, -1.9482422, 1.1689453, 3.6035156, -3.4179688, 1.5947266, -0.4008789, -1.4755859, 2.8828125, 1.5976562, -2.5488281, -0.3190918, -0.30273438, -0.63671875, 0.3947754, 0.5932617, -2.6972656, -0.5571289, 0.7890625, -0.63623047, 2.8164062, 0.27441406, -3.2402344, -0.72265625, -1.6699219, -1.359375, 0.86083984, -2.1796875, -1.5449219, -1.8037109, 1.8623047, -1.4394531, -0.39868164, 1.7119141, 0.13000488, -2.5117188, 1.0917969, -0.89746094, -1.4199219, -1.6738281, 1.5566406, -1.0898438, -0.03149414, 0.025909424, 0.73339844, 2.1308594, -1.1113281, 1.2890625, -1.4404297, 0.6269531, 0.42578125, 2.5976562, -0.77783203, -0.33251953, 2.8183594, -0.26220703, 1.6435547, -0.84716797, 0.53125, 0.38012695, 0.9321289, -0.91552734, 1.6816406, -1.1318359, 0.01890564, -2.2558594, -1.6464844, -1.4853516, -1.4853516, -2.3007812, 0.9248047, -2.7246094, 1.2998047, -0.028152466, -0.09637451, -0.039886475, -0.3942871, -0.2944336, -1.5625, -1.5332031, -1.4677734, -0.40844727, 0.88964844, 1.2109375, 0.14123535, -0.15612793, 0.67041016, -2.6972656, 0.20532227, 2.1699219, -2.4199219, 1.8496094, 1.3417969, -0.4152832, 3.6699219, 1.5644531, 0.14160156, -0.9404297, 1.6025391, 1.2568359, -0.7553711, 2.4628906, -0.9379883, 0.31713867, 0.28735352, -2.125, 2.7070312, -1.7441406, 0.17456055, 0.42797852, -0.07165527, 0.9980469, 0.51660156, -1.1728516, -0.6699219, 1.0742188, 2.7304688, 2.6484375, 1.9462891, -3.1640625, -0.55810547, -0.8198242, -1.8173828, -0.74560547, -2.1699219, -2.3613281, -0.023620605, 1.609375, 1.1298828, 0.99560547, 1.4941406, 1.5361328, 3.2460938, -0.7167969, 0.6274414, -0.1227417, 2.5253906, 0.4645996, -1.0644531, -1.0869141, -3.375, 1.5263672, 3.2421875, 0.31103516, -1.4550781, -0.017227173, -2.8574219, 0.85498047, 0.24414062, 1.0498047, 0.39160156, 0.9458008, 0.2553711, 2.7128906, 0.578125, -0.55615234, 2.5078125, -0.4663086, 2.671875, -0.578125, 1.8603516, 1.9150391, -2.4140625, 0.8745117, -0.3762207, -0.8227539, -1.0253906, 0.08148193, 0.2685547, -1.8466797, -0.81396484, -2.7480469, -1.0390625, -5.0390625, -0.124572754, -0.030548096, 0.76904297, -0.66015625, -0.60839844, -0.8588867, 3.5234375, 1.8847656, -1.7548828, -0.86572266, -1.6191406, -1.3203125, 0.7089844, 0.7265625, 0.5, -2.0058594, -0.42382812, -0.50634766, -0.54541016, 0.34960938, -0.86035156, 0.4169922, 2.375, 2.8925781, 1.2978516, 0.3088379, 1.1699219, -0.27856445, 1.8515625, 1.3837891, -1.9863281, -0.16638184, 2.6835938, 2.1386719, 1.9208984, 0.6538086, -0.23144531, 1.6650391, -1.2089844, 0.0050239563, 1.3066406, 1.6230469, -2.4257812, 0.4296875, -1.3652344, 2.2382812, -1.0019531, 1.3457031, -2.0019531, -0.03427124, 1.4326172, -0.91552734, 2.0507812, -1.4150391, -1.5917969, 1.4501953, 1.9003906, 0.5004883, -3.2988281, 1.6347656, 0.46166992, -3.4804688, -1.0185547, 2.7753906, 1.5253906, 1.9638672, -0.6611328, 1.4804688, 1.6650391, 3.203125, 0.18725586, 0.79248047, 0.61328125, 0.34277344, 1.8945312, 0.6870117, -2.6347656, -2.7128906, 1.2832031, -1.1425781, -2.40625, 0.99560547, 0.7089844, 0.7597656, 0.5727539, 0.36328125, 0.19348145, 1.1552734, 0.6875, -1.4365234, -1.3144531, -0.054901123, -0.35473633, 0.15527344, 0.7871094, -0.7050781, 2.3046875, 0.5419922, -0.53808594, 2.5546875, 1.6210938, 1.1445312, 1.234375, -0.3017578, 0.31518555, 2.234375, -0.8569336, 0.9941406, 1.40625, 0.5053711, 0.15649414, 2.0566406, 1.546875, -1.1259766, 0.21911621, -1.9482422, 0.55078125, 0.5493164, -0.05984497, 1.3203125, -1.2685547, -0.79785156, -0.45117188, 0.5058594, 0.55859375, -3.265625, 1.7431641, 1.4003906, -0.10852051, -1.5205078, 1.1044922, -1.3710938, 1.8085938, 0.9291992, -0.62841797, -0.9111328, -0.7397461, 0.8774414, -1.8378906, -1.5869141, -2.1445312, 1.1806641, -1.2978516, -1.4990234, -1.3701172, 2.0117188, -0.47705078, 1.1513672, 3.6523438, -1.1835938, 0.07611084, -1.1660156, 0.90771484, -1.0878906, 0.76416016, -0.5595703, -1.2753906, -0.013832092, -2.8710938, 0.5498047, 0.78466797, -4.3085938, -0.2734375, 4.4609375, 3.7285156, -1.703125, -0.93896484, -3.6796875, -1.2363281, 0.8701172, 2.4511719, 0.60498047, 0.27612305, 0.044525146, 0.57910156, 4.765625, -1.1708984, -0.030731201, -1.2412109, -0.5415039, 1.7685547, -1.9101562, 1.6025391, -0.73535156, 0.7841797, 2.1230469, 0.6845703, 2.1640625, -0.35009766, 1.6054688, 2.6171875, -0.5541992, -1.9150391, 0.3305664, -0.97998047, 1.2705078, 2.515625, 0.51171875, -0.12060547, 0.0004580021, -0.6894531, -3.6855469, 0.0129470825]}, "B088B7KYC2": {"id": "B088B7KYC2", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n\u2605AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180\u00baf to 450\u00baf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!\u2605FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.\n", "embedding": [-1.0419922, 1.5488281, 0.9145508, -0.8535156, 0.19677734, 0.9116211, 0.76708984, -0.75146484, -2.2285156, 1.8603516, 2.0078125, 0.48583984, -1.5507812, -0.76220703, 0.8745117, 0.8886719, 1.2978516, 1.15625, -0.20178223, -0.2854004, 0.7680664, 1.5810547, -0.58935547, -2.5195312, 1.5947266, 1.7958984, 3.7539062, -2.1699219, -0.29882812, -0.81396484, 1.4912109, 0.7324219, -0.08984375, 1.1748047, -3.1503906, 0.9394531, 0.26635742, 1.5644531, 0.4633789, -0.6743164, -0.12335205, -0.70410156, 0.63623047, 1.6972656, -2.2929688, -0.45043945, 0.010475159, 2.9199219, -0.42407227, -0.40625, 1.4375, 1.8662109, -0.8520508, 1.2626953, -0.95996094, 1.9550781, -0.71972656, -1.2958984, 0.51708984, -0.039123535, 1.9189453, -0.11694336, -1.9013672, -0.0927124, -3.0136719, -1.5849609, 1.0966797, -0.5073242, 0.5625, -1.7929688, 2.4277344, 0.11102295, -0.64941406, 0.19458008, -0.10949707, -0.1842041, -3.8125, 1.0839844, 0.6738281, -0.5283203, -1.5898438, 1.7783203, 0.41674805, -1.6279297, 0.53027344, 0.2524414, -0.69873047, 1.3886719, 2.0058594, -0.2734375, 0.75341797, -0.58691406, -0.6767578, -5.25, 1.7773438, -1.2138672, 0.46069336, 0.6977539, -0.30981445, 1.8193359, -0.20727539, 0.82373047, -1.3339844, -0.4807129, -1.4296875, -1, 1.7607422, 1.1123047, -2.5234375, -0.7885742, -1.2197266, 0.92871094, 1.2783203, -0.020599365, 1.4951172, -2.0722656, 0.76171875, 2.7675781, 1.1230469, 1.4042969, 2.1054688, 0.10272217, -0.34155273, -0.65966797, -1.0654297, -0.86328125, 0.48535156, 0.16247559, 4.7304688, -2.0605469, -1.0820312, -0.19384766, 1.1435547, -0.25585938, -1.0078125, -2.0527344, -1.5136719, -0.018814087, -3.6191406, 0.6665039, -1.3242188, 2.359375, 1.7753906, -0.14501953, -3.1269531, -0.7314453, 1.5107422, 1.0732422, 0.7211914, -2.2050781, 0.8027344, -0.7036133, -0.73339844, -2.4296875, -0.13964844, 0.0925293, -1.7041016, -1.9570312, 1.7558594, -0.16015625, 0.5253906, -0.76953125, -0.6118164, 1.2246094, -0.7602539, -0.24780273, 0.42260742, 2.3710938, -1.1435547, 1.9492188, -0.089538574, -0.984375, 0.33129883, -0.85253906, 1.78125, -1.2519531, -1.1210938, 3.1132812, 0.85498047, -1.0439453, -1.3681641, -0.8383789, -0.28686523, 0.34375, 0.8955078, -2.2519531, 0.7753906, 2.8066406, 1.3759766, -2.1425781, 1.5986328, 1.7714844, 1.8935547, 0.5751953, 0.8105469, -0.6479492, -0.59814453, -1.5136719, 0.81689453, -0.90234375, 0.48583984, 0.18200684, -1.5722656, -0.5151367, -0.4934082, -0.6611328, 0.053100586, -1.5742188, 1.6777344, 1.6279297, 1.7089844, -1.4853516, 0.20385742, -1.0419922, 1.3105469, -2.4863281, 2.4667969, -1.0488281, 1.4179688, 2.4882812, -0.09716797, -0.93603516, 1.0576172, 2.9140625, 0.27416992, 0.46923828, 0.8642578, 0.023452759, -2.3652344, -0.43847656, 1.7011719, 0.56884766, -1.5996094, -1.0283203, -0.051483154, 1.0644531, 1.0322266, 0.55126953, 0.14160156, -0.82666016, -0.19567871, 0.5073242, -1.0634766, 0.12243652, -1.3417969, 0.32910156, -3.0898438, 2.7011719, 0.21459961, -1.7207031, 0.39111328, 1.2792969, 3.2558594, 0.8691406, -1.9589844, 0.65283203, 0.022369385, 0.6118164, -1.0800781, -1.2548828, 1.7753906, -1.0341797, 0.9560547, 0.23010254, 1.1240234, -1.4267578, 4.2890625, 1.7148438, -0.50097656, -1.0654297, 0.70166016, 0.41259766, 1.7578125, -0.05230713, 2.140625, 2.8925781, -0.15930176, 1.6660156, 0.7739258, -1.2382812, 0.73095703, 1.1875, 2.4296875, -2.5351562, -0.12322998, -0.27172852, -1.5371094, -1.4335938, -0.42749023, 0.6269531, 4.3398438, 0.5942383, -3.5449219, 1.9589844, -2.4941406, 1.3095703, 0.039886475, -1.7910156, -1.0644531, 1.0107422, 1.3583984, 1.3466797, -0.80078125, 0.06695557, -1.7558594, -1.8603516, -0.20385742, -1.3115234, -0.63671875, 1.4628906, -0.28051758, -0.73876953, -2.5097656, -0.4658203, -3.2324219, 0.35766602, 1.375, -2.484375, 1.34375, 0.97265625, 2.2304688, 2.1914062, -0.33398438, -1.5166016, -0.92626953, 1.2246094, -0.44555664, 0.48510742, -1.0966797, -3.0175781, -0.84228516, -0.7260742, 0.5371094, -1.7041016, -1.0634766, -1.2412109, -2.3964844, -2.9765625, -1.8027344, 0.7392578, -2.4589844, 0.04437256, -0.6899414, -1.2587891, -1.9023438, -2.8730469, -0.7319336, -2.4023438, -1.0605469, 2.5859375, -0.9638672, 1.1005859, 0.6826172, -2.9453125, 0.6225586, 0.5996094, -1.0839844, -0.9394531, -2.1757812, 0.30664062, -0.91064453, 0.25463867, -1.7324219, 1.3769531, 1.7919922, -0.77685547, 1.3759766, -2.4628906, -1.4599609, -0.6430664, -0.17175293, -0.9819336, 0.46948242, -1.4931641, -1.0341797, 1.3457031, -0.29077148, 3.0566406, -1.9472656, 1.6669922, -1.0273438, 1.3691406, 1.1220703, 0.10076904, -2.3183594, 0.48120117, 1.25, -0.7524414, -0.5097656, -3.1933594, -1.5009766, 0.1809082, 1.3212891, -1.6171875, -0.4338379, -1.4785156, 2.6464844, -1.7578125, -0.4243164, 0.24523926, 0.68603516, -1.1503906, -0.81689453, -2.7011719, 0.47558594, -2.5917969, -1.6220703, -0.19348145, 0.97802734, 0.69970703, 0.5600586, 2.5253906, 0.74658203, -0.07196045, -0.5395508, -4.0585938, 2.4882812, -0.49316406, -2.6640625, 0.78808594, 1.5107422, -2.2226562, -2.8320312, -0.7026367, 3.5566406, 1.2724609, 3.8378906, -0.9145508, -0.46166992, -0.14880371, 0.23791504, 0.9785156, -0.92529297, 0.40478516, 3.1210938, -2.0742188, -1.4541016, -0.9448242, 1.2851562, -1.1796875, -1.5380859, 2.0078125, -0.18103027, 1.2587891, 1.5605469, 0.016937256, 1.0751953, -1.9755859, 1.7607422, -0.7294922, -0.24987793, 0.57958984, -0.84472656, 0.15441895, -0.37768555, 1.7568359, 0.8666992, 2.2421875, 2.4160156, 1.5410156, 1.5585938, -0.43139648, 0.9033203, 0.83740234, 1.7646484, 0.51464844, 2.4394531, -0.4099121, 0.27856445, -0.7373047, -0.83935547, 0.90527344, -0.81103516, -0.6376953, 2.9863281, 0.6660156, 0.08666992, 0.88623047, 0.005168915, -0.7060547, -0.89160156, 0.62158203, -1.7021484, -0.43139648, 1.2646484, -0.4309082, -1.5927734, -1.7578125, 1.3710938, -0.38720703, -0.07611084, 0.1508789, 2.9804688, 1.0458984, -0.020050049, -0.058258057, 0.70654297, -1.2197266, 0.3408203, -0.96191406, -0.16052246, 0.3503418, -2.6679688, 0.38232422, -0.32739258, -2.3769531, -0.64990234, -0.74316406, 0.56689453, 0.89990234, 1.1728516, 0.7841797, -0.5522461, -1.9580078, -0.7504883, -2.9765625, 1.4951172, 1.2080078, -2.7363281, -1.0576172, 2.0449219, 1.3964844, 0.6801758, -0.3022461, 2.6445312, 0.69921875, -2.3691406, 2.5390625, -3.3789062, -1.1279297, -2.1308594, -4.765625, 1.3876953, -0.73828125, -0.75390625, 5.1601562, 0.4567871, 0.19763184, 2.2207031, -0.24658203, -3.3828125, -0.73339844, -0.26733398, -0.38500977, -0.21691895, -0.22241211, 0.9760742, 0.9223633, -1.0556641, -0.38378906, -0.7944336, -0.54785156, 0.62353516, 1.5126953, -1.0185547, 1.1806641, -2.3652344, 0.16723633, 0.32202148, -0.2084961, 1.4824219, -0.38476562, 0.4260254, -0.06008911, 1.9082031, -0.5024414, -0.6894531, -0.74658203, 1.1435547, 0.27929688, -1.3828125, 0.24938965, 1.1142578, 2.1484375, -0.055236816, -1.8193359, -2.2324219, 0.6352539, 0.3791504, -1.2167969, 0.7558594, -0.21276855, -2.7167969, 0.7661133, 0.31420898, 0.20385742, 1.8173828, -0.72216797, -3.1035156, 0.61621094, -0.92578125, -1.6699219, -2.0292969, 1.4775391, 1.0742188, -1.2832031, -0.39916992, -1.0146484, 0.8276367, -0.8383789, -1.1835938, -3.1640625, 2.5410156, 1.5976562, 1.3867188, 3.109375, -1.4931641, 0.43603516, 2.4140625, -1.1582031, 0.15136719, -0.7475586, -2.3867188, 1.0400391, 1.6210938, 1.8144531, -1.6943359, -1.2490234, 1.1005859, -2.1367188, 1.4326172, -2.3476562, 1.2558594, -2.0371094, -0.76464844, 0.3671875, -1.9755859, 0.79248047, -2.2695312, -1.5576172, 1.2304688, -0.53125, -1.4628906, -0.32910156, 0.014640808, 0.49731445, 1.7998047, 2.7734375, 1.2695312, -1.6533203, -1.5957031, 0.21447754, 1.0117188, -1.1376953, -0.06854248, -1.7978516, -0.8095703, -0.45239258, -0.55908203, 1.4667969, 2.0996094, 1.1611328, 3.2832031, 0.7910156, -1.3476562, 0.5136719, 0.9526367, -1.6953125, 1.6396484, 0.8120117, -2.1425781, 1.7666016, -0.12915039, -2.4472656, -1.1953125, 2.5507812, -0.34936523, 0.9428711, -0.9506836, -0.72558594, 0.5761719, -0.9995117, -0.2668457, 0.49902344, -1.1767578, 1.75, -0.2055664, -1.5566406, -0.9375, 0.4741211, 3.1757812, -0.9067383, -1.3085938, 2.6445312, -0.6074219, 0.7036133, 0.81884766, -1.4179688, -1.8476562, -1.8408203, 3.7421875, 1.3164062, 2.6835938, 0.1652832, 3.4355469, -2.8242188, 0.3161621, -1.3486328, 4.3164062, -2.6816406, -1.9501953, 0.4440918, -1.6210938, -0.8120117, -1.8779297, 0.9189453, 0.063964844, 1.8613281, 1.4482422, -2.7734375, -0.59814453, 0.24377441, -2.0351562, -6.2695312, -1.3779297, -0.28808594, -0.8857422, -0.08648682, 1.0820312, 1.4433594, 1.1591797, 0.8022461, -0.45581055, 0.56933594, -0.09020996, -1.2792969, -0.8798828, 0.18017578, 0.16247559, 0.21069336, 1.5605469, 1.8466797, -1.1875, 1.1328125, -2.2832031, -0.08502197, -0.6894531, -1.3779297, -0.20324707, -0.20483398, 0.4802246, -0.15576172, 0.60791016, 0.55371094, -3.2128906, 1.6533203, -1.9941406, -0.70703125, 0.76953125, -0.7524414, -0.0014333725, -0.4868164, -0.21813965, -1.3857422, -0.38183594, 1.1308594, 1.0380859, -2.0253906, 0.22729492, 1.4990234, -1.5537109, -0.79541016, 0.35083008, 0.8041992, 0.117492676, -1.0859375, 0.50146484, -1.9365234, -1.5771484, -2.2910156, -0.82177734, -0.4921875, 0.37841797, -2.265625, 1.3632812, 0.8803711, -0.22192383, 1.8271484, 0.07171631, -0.08013916, -2.1621094, -0.8779297, 1.5117188, 2.5, 0.73583984, -1.0498047, -1.1054688, -1.7412109, -0.78564453, 0.33129883, 0.0647583, 0.46704102, -0.09899902, -1.0634766, -0.765625, 0.390625, 2.0996094, 1.3457031, -0.5527344, -0.9633789, 0.5288086, 1.7666016, -1.1201172, 1.8447266, -0.2626953, 1.5654297, -0.16088867, 4.1367188, 0.09820557, -1.8662109, 0.99316406, -1.9257812, 0.053741455, -0.3112793, -1.4013672, -0.11584473, -0.3425293, 0.52685547, 0.8408203, -0.4008789, -2.3769531, 2.2070312, 1.1162109, 0.032318115, -0.22497559, 2.7617188, 0.79345703, 1.9873047, 1.6865234, 1.8994141, 0.4543457, 1.2285156, 0.78759766, -0.73291016, 1.9746094, -0.8198242, 0.0317688, 0.5776367, -0.4716797, -0.9868164, 3.25, 0.72021484, 2.1425781, 0.09777832, 1.7724609, 3.2988281, 2.2148438, 2.0371094, 0.3947754, 1.7353516, 1.4433594, -0.45751953, 0.8823242, 1.3808594, 3.4921875, 0.8647461, -1.34375, 0.5732422, 0.43847656, 0.66064453, 0.2980957, -0.06561279, 0.33007812, -3.1152344, 2.0390625, -1.0126953, 0.04071045, -2.0800781, -0.32177734, -0.2841797, -0.50390625, -1.0419922, 1.7539062, 5.0546875, -0.2199707, -0.59521484, -0.30395508, -0.6621094, 0.83447266, -2.9941406, -1.3583984, 1.2216797, -0.5180664, 0.021774292, -0.59277344, 1.7353516, 0.5732422, 1.9179688, 0.11468506, 1.9140625, 1.2363281, 1.8056641, -1.6220703, -0.14025879, 1.1943359, 2.25, -0.55615234, 0.10534668, 1.8613281, 0.35864258, -3.1230469, -1.3740234, 1.5058594, 1.3652344, 1.4130859, 0.69970703, -1.6572266, 1.8261719, -0.5463867, 0.9638672, -0.89208984, 1.6914062, -0.27026367, -1.5283203, 0.097595215, 0.07989502, 0.9716797, 1.875, -0.69970703, -0.4140625, 0.84033203, 0.5175781, 2.5976562, -0.4802246, 2.2988281, 0.05493164, 0.7583008, -1.7070312, 3.3925781, -0.5595703, 0.4128418, -2.5351562, 1.3662109, -0.20959473, -0.0005068779, 1.1669922, 1.0322266, -0.5332031, -1.0625, -1.0292969, 0.23449707, -0.6635742, -1.4287109, -1.7001953, 0.76953125, -0.3642578, -1.8779297, 1.03125, 2.4882812, 1.65625, -0.21887207, 3.0898438, -1.5244141, 2.4570312, 0.051330566, -1.7841797, 0.06768799, 0.9477539, -0.30004883, -0.10241699, -2.0175781, 2.2148438, 1.9873047, 2.1113281, -1.1689453, 0.08569336, 2.2421875, -0.05581665, 1.4199219, 0.21557617, -2.0488281, -0.27246094, 2.0585938, -0.064941406, 1.4199219, 1.8300781, -0.84033203, 1.2607422, -1.8925781, -1.2382812, -0.9345703, -0.4333496, -1.2666016, 1.5234375, 2.5214844, 1.2509766, -1.1992188, -3, -2.7558594, -0.78759766, -0.7597656, 2.3046875, -0.7709961, -1.4267578, -0.12414551, -0.98876953, 1.1787109, 1.5859375, -1.6005859, 0.6118164, -1.6113281, 0.28149414, 0.95166016, -0.06585693, -0.6621094, -0.42163086, 1.0712891, 2.5019531, 0.5131836, -0.65283203, 0.5605469, 2.9765625, -0.67871094, -3.8007812, 1.8164062, -1.7089844, 2.3125, -0.7685547, 1.0039062, 0.12670898, -0.17016602, -0.035461426, -0.8774414, -2.4570312]}, "B00BM9RD4Y": {"id": "B00BM9RD4Y", "original": "Brand: Mary Lake-Thompson\nName: Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4\nDescription: These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you'll find they're made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What's more, they're dishwasher safe. Just be sure to keep them from the microwave or oven.\nFeatures: They look like paper plates but they're actually durable melamine\nPrinted with summer BBQ food designs by Mary Lake-Thompson\nSturdy weight with a smooth matte finish\nGreat for garden parties, picnics and kids; matching platter also available\n9\" in diameter; dishwasher-safe, no microwave or oven\n", "embedding": [-3.0351562, -0.55371094, 1.7021484, -0.43286133, 1.3574219, -1.8964844, -0.73876953, -0.27856445, 0.33740234, -0.51904297, -0.86376953, -0.4802246, 1.9921875, -1.6748047, -0.31713867, 1.8261719, -0.87939453, -0.28100586, 0.7573242, -2.1074219, -0.023239136, -1.8496094, -2.3613281, -2.8203125, 3.5898438, -0.7421875, 1.0458984, -1.8837891, -0.26391602, 0.7524414, 2.6503906, 1.9873047, -0.9736328, 3.2109375, -2.2363281, 0.9902344, -0.117248535, 0.4296875, -1.4169922, -0.90185547, -2.0566406, -3.1894531, 0.796875, 0.4831543, -3.3710938, -1.9511719, -0.6982422, -0.58496094, -3.1269531, -1.3017578, -0.25219727, 0.9316406, 3.4628906, 0.80810547, -0.6381836, -1.6289062, -1.6240234, -0.38354492, 0.31469727, -0.25878906, -1.4130859, -3.484375, -0.8510742, 1.4824219, -0.74560547, -0.8613281, -1.1865234, -3.7851562, -0.96972656, 0.8178711, 1.0429688, 0.48413086, -1.4628906, -1.3251953, -1.7509766, -2.3710938, -1.1318359, 0.8959961, -2.6875, -2.1855469, -0.30688477, 3.3320312, 0.03744507, 0.34277344, -0.88427734, 0.045135498, -3.6601562, -1.5029297, 1.2041016, -0.052337646, 0.42529297, 2.5625, -0.32348633, -3.546875, 1.8408203, -3.2246094, 2.3808594, -1.8789062, 1.8974609, 0.7895508, -0.37939453, -0.028961182, -0.6147461, 2.78125, -0.4897461, 0.18981934, 2.4707031, -0.30126953, -0.29174805, -0.83691406, -1.4853516, 1.046875, 0.8774414, -0.78564453, 1.7617188, 2.3125, 2.0214844, 0.5004883, 1.3925781, 2.2363281, 3.7636719, -0.17944336, 2.1679688, -2.5585938, 1.8974609, 0.98095703, -0.12731934, 1.9550781, 0.34448242, -1.9814453, 0.16821289, -1.609375, -0.31176758, 0.98291016, -4.3632812, -3.6875, 0.5239258, 0.54003906, 0.89941406, 1.390625, 1.2685547, 0.56591797, 1.5009766, 0.94091797, -2.4199219, -0.7480469, -2.8125, 1.1298828, -1.1748047, -1.4570312, 0.078125, 0.21252441, 0.39086914, 1.0009766, -0.6850586, -1.5429688, 2.2148438, 0.21643066, 2.0429688, 1.7324219, 0.23046875, 1.5175781, -1.0234375, 2.0136719, 2.8691406, -0.7314453, 0.80078125, 0.47924805, 1.1894531, 4.4648438, 0.15405273, -0.4482422, 0.5214844, -1.4160156, -1.8574219, -0.9589844, 1.7236328, 0.5644531, -2.6972656, -2.4707031, -1.015625, -2.0859375, -2.1601562, 0.8339844, -0.7373047, -0.84472656, -1.1875, -0.6743164, -1.3164062, -0.44140625, 0.43554688, 1.4589844, -1.5869141, 0.09729004, -4.7148438, -1.5488281, -1.7226562, -1.3291016, 1.0195312, -0.95410156, 2.1269531, 0.49829102, -3.7734375, 0.0592041, 0.8564453, -2.9042969, -1.9267578, 0.53271484, -1.5117188, 1.7324219, -0.39575195, -1.2480469, -0.62890625, -0.6821289, -1.5175781, -3.1640625, -0.06561279, -0.4272461, -0.1048584, 3.2929688, -0.6743164, -0.56591797, -0.7763672, 3.5253906, -3.296875, -0.8178711, 1.3496094, 1.1347656, -1.9365234, 0.5175781, -0.36645508, 0.9238281, 0.41259766, -0.1776123, 1.7089844, 0.8535156, 2.3984375, -2.7285156, 0.55566406, -0.62597656, 0.6040039, -1.4619141, -2.1796875, -1.2763672, 1.1171875, 2.1230469, -1.3378906, 3.2871094, 2.2324219, -0.7441406, -0.28442383, 0.31933594, 2.3769531, 0.35107422, -0.9189453, 1.3251953, -0.054534912, -2.4921875, 0.0836792, -0.013725281, 3.2246094, -1.0498047, -0.96240234, -0.40307617, 1.9443359, 2.484375, 4.1914062, 1.2089844, -4.34375, 0.15710449, 0.8774414, 0.89404297, 0.068603516, -2.6992188, 0.59228516, 0.71777344, -1.6376953, 0.32177734, 1.6591797, -0.4074707, 1.6738281, 3.4492188, 1.4707031, 0.5029297, -0.59765625, 0.20324707, -1.9667969, 1, 1.2861328, 1.5429688, 3.5683594, -1.6728516, 1.6708984, 1.1240234, -2.6445312, 2.28125, 1.8330078, -1.8457031, 0.1616211, -0.6801758, -1.2851562, 0.6020508, 1.109375, -1.3720703, -0.35229492, -0.23913574, -0.11071777, -0.52490234, 0.3203125, -0.8222656, 0.72021484, -1.1464844, -2.6269531, -0.38793945, 1.0517578, -2.0253906, -0.5053711, -1.984375, 1.7089844, -1.53125, 0.16845703, 0.5107422, -1.8564453, -0.35620117, 1.7529297, 2.0253906, -3.2519531, 1.515625, 0.78759766, 3.3574219, 2.5273438, -1.7080078, 1.4023438, -1.4628906, -3.3730469, -1.8095703, -1.2382812, 0.12561035, 0.5029297, 1.2148438, 0.9453125, 1.2226562, -0.13171387, 0.36547852, -0.31835938, -0.7348633, 0.7373047, 1.1962891, -1.2548828, 1.6357422, -1.6142578, -3.5585938, -0.5175781, -1.734375, 1.0556641, -2.0546875, 1.9228516, 0.5083008, -2.0097656, -1.6318359, 0.037261963, 1.7998047, 1.8320312, -2.1289062, 0.3137207, 0.89990234, -0.36572266, -1.8710938, -0.2607422, 0.8383789, -0.1171875, -1.3330078, 0.5644531, 0.6567383, 0.58935547, -1.1953125, 0.35986328, 4.703125, -0.24707031, 0.7578125, -0.34399414, 0.28979492, -1.7050781, 0.50634766, -2.3515625, 1.7304688, 2.5820312, -1.9511719, 1.0839844, -1.5410156, -0.30908203, -0.73095703, 1.8554688, -0.90966797, 1.0429688, -0.18859863, 3.5234375, -1.3574219, -0.8300781, -1.640625, 1.7724609, 1.3837891, -0.07354736, -2.2128906, -1.4765625, -0.41210938, -3.5, -1.1972656, 2.5097656, -2.2246094, 1.9365234, 1.3554688, -0.90283203, 0.7426758, 1.3037109, -0.8408203, 1.1308594, -2.3515625, -1.6132812, 0.5991211, 0.9814453, -1.1582031, -0.00207901, 0.08660889, 1.390625, 2.0136719, 1.5009766, 0.36865234, 3.6074219, 0.62841797, -1.4765625, -0.7084961, 0.40698242, 0.7817383, -1.4589844, -1.9931641, -2.0585938, 1.7050781, 1.5830078, -1.7802734, -0.6152344, 0.8178711, 2.9140625, -1.3369141, 0.18835449, 1.2773438, -0.6230469, 0.18078613, 0.88671875, -1.4404297, -0.578125, 0.5136719, -0.18640137, -0.073913574, 3.7441406, 0.70458984, 0.66064453, 1.9091797, -0.69873047, 0.13708496, 0.99560547, -3.8164062, 2.3710938, 1.5341797, 0.12939453, 0.9145508, -0.4423828, -1.1103516, 0.91796875, 3.6601562, -0.71972656, -0.18383789, -2.6972656, 1.9775391, 2.171875, -3.9160156, 0.5546875, -1.5898438, -0.55859375, 0.14709473, -4.4296875, 4.6132812, -0.67578125, -2.109375, 1.4267578, -1.4550781, -3.6757812, 1.5263672, 2.1914062, -0.52490234, 0.38745117, 0.6347656, 3.1914062, 2.7246094, -1.1835938, -2.7246094, 0.921875, -1.3037109, 1.4765625, -1.2285156, -2.7480469, -1.2177734, -0.74658203, -1.0800781, -0.33813477, -1.2197266, -2.1308594, -0.47827148, -0.75634766, -0.32958984, -1.1826172, 0.011329651, 1.1171875, -1.9882812, -0.5761719, -3.0996094, 0.49902344, 2.3457031, 0.18591309, 2.5390625, -1.6201172, -1.8154297, -0.42773438, -2.2480469, 1.7011719, 0.91064453, -2.4785156, 0.5600586, 1.0458984, 0.33935547, -2.5449219, -1.3515625, 0.18737793, 1.2138672, -0.6894531, 1.4824219, 0.51123047, 0.6611328, 3.796875, 0.32641602, 0.42993164, 0.7939453, -0.22668457, -2.4003906, -1.4394531, -0.36376953, 1.3251953, 3.0625, -0.6870117, -0.2890625, -1.7451172, 1.1855469, 1.7304688, -1.21875, 0.94091797, 2.2929688, -0.9921875, -1.7929688, 0.18151855, 1.9130859, -2.1972656, -2.2363281, -0.5283203, 0.875, 3.828125, -1.6123047, 0.070739746, -0.73046875, -1.3759766, -2.0332031, 1.1484375, -0.86376953, 0.8730469, 1.6474609, -0.41455078, -1.9960938, -3.3242188, 1.4423828, 1.21875, 0.5126953, -0.6376953, -0.3635254, -2.4589844, -3.2753906, -1.5517578, 1.0263672, 1.4931641, -0.3959961, 0.47924805, 1.0175781, 0.8178711, -2.0566406, -0.3996582, -0.3334961, -0.08093262, -0.38183594, -0.7763672, 0.4794922, 3.0742188, -4.6875, 0.82128906, 0.70458984, 3.0605469, 0.96435547, 2.5214844, 3.5507812, -3.4238281, -2.5664062, 2.078125, -2.8808594, -0.02432251, 0.44213867, 0.3557129, 0.09564209, 2.7949219, -1.5214844, 0.35229492, -0.6635742, -2.0585938, -0.039764404, 0.9716797, -1.0537109, 1.2353516, 0.9379883, 0.66796875, 0.17944336, -0.39208984, 2.4589844, 0.6191406, 2.2636719, 1.0185547, 0.51904297, -0.18225098, 0.7866211, -1.4326172, 0.73291016, 0.73291016, 0.33203125, -0.21655273, -3.3027344, 0.15795898, -0.21533203, -0.3330078, -1.4472656, 1.1396484, 1.5107422, 0.9067383, 0.0119018555, -1.7851562, 2.3496094, 0.33007812, -0.30371094, 0.13146973, -0.049743652, -1.8066406, 2.171875, 1.4570312, -1.5224609, -0.6870117, 0.45654297, -1.4101562, 2.8085938, 0.27783203, -1.8964844, -1.1318359, -0.55859375, -1.71875, 1.6513672, 0.7919922, 0.22729492, 0.17602539, -2.046875, -2.4863281, -0.24084473, -1.859375, 0.8774414, -3.4492188, -0.51660156, 1.6367188, 0.6196289, 2.7441406, 1.1630859, -2.5390625, 0.45166016, 0.95654297, -1.8232422, -1.0390625, -0.9243164, -2.3613281, -0.6665039, 1.9746094, 2.5742188, -2.3457031, 1.0664062, 0.9868164, -1.4882812, 1.8798828, -2.96875, 1.1005859, -1.6015625, 0.8198242, 2.6171875, -1.9589844, 0.67822266, -0.11236572, 3.0449219, 1.9042969, -0.52783203, 0.2849121, -0.7788086, -2.5820312, 1.0195312, -0.7080078, -2.5019531, -1.5517578, -0.5854492, 1.59375, -0.45336914, -0.8222656, -0.01361084, -1.7548828, -0.27539062, 0.023071289, 1.3662109, 1.1103516, 1.2001953, -1.7089844, 1.4775391, -0.11340332, 1.5917969, -1.5957031, 0.68408203, 4.0234375, -2.6640625, -3.0917969, -2.6894531, 2.3046875, -0.8979492, -2.2773438, -0.27197266, -0.49169922, 0.80322266, 0.9526367, 2.0253906, -0.7050781, 1.640625, 0.3269043, -0.5449219, 0.7973633, 2.1210938, -0.48291016, -2.4648438, 0.31469727, 0.43530273, -1.71875, 0.9770508, 0.55371094, -0.09698486, -2.4355469, -0.24304199, -1.1728516, 0.9433594, 2.6308594, -1.1435547, 0.014144897, 0.84521484, 0.7919922, 0.24987793, -2.1582031, -2.1992188, -1.2490234, -2.0527344, -2.2246094, -0.4658203, 0.32421875, 1.515625, -0.30444336, 0.34179688, 2.9492188, 2.1601562, 0.65966797, -0.2121582, -1.4267578, 0.27001953, 2.3964844, 0.03845215, -1.9873047, -0.7685547, 1.2451172, -1.4550781, 0.7573242, 0.03793335, 0.6777344, -1.7695312, 0.15661621, 0.8925781, 1.5195312, 0.6870117, 1.9589844, -1.625, 1.0810547, 3.9941406, -1.7304688, 0.8935547, 0.55859375, 0.734375, -3.2109375, 3.7480469, 0.8964844, -2.4003906, 0.42016602, 0.3557129, -0.98535156, -0.73828125, -1.5771484, 1.3251953, 1.1816406, -1.6894531, -1.6738281, 1.15625, -0.09484863, 1.28125, -0.15820312, 2.7265625, 1.0048828, 1.6123047, -0.31054688, 2.5664062, 1.6552734, -3.2734375, 0.084106445, -0.8745117, -0.6777344, 1.0771484, 1.3671875, 0.35058594, 2.2675781, -0.27490234, -2.7753906, -2.0820312, 0.63964844, -0.35595703, 0.047027588, 1.0654297, 2.1230469, 0.22839355, 0.41503906, 3.6953125, -0.5107422, 1.9101562, 1.0869141, 1.7148438, 0.48266602, 1.7978516, -0.1027832, 0.5786133, 0.32348633, 1.8408203, -0.18151855, 0.9604492, -0.4885254, -0.45043945, -2.5761719, 0.54541016, 1.7011719, -0.92578125, 1.7949219, 0.23925781, -0.75439453, -2.046875, -1.1904297, -0.8442383, -0.81591797, 3.2050781, 2.0820312, -0.16027832, -0.13903809, 1.8496094, 2.6679688, 0.3486328, 0.828125, 0.52685547, 0.8203125, -0.98095703, 4.3164062, 3.0683594, 0.33642578, 1.4726562, -0.29956055, 1.5693359, 1.8632812, 1.7910156, 1.7089844, 1.6181641, 1.2021484, 0.38330078, -1.4394531, -0.55029297, 1.1484375, -0.5917969, 1.1679688, -0.99121094, -0.6152344, 0.19018555, 1.3320312, 0.5498047, -2.7128906, 0.36547852, -0.42407227, -0.97509766, -1.8447266, -0.6357422, 0.3251953, -1.609375, 0.31811523, 0.68359375, 1.7910156, 0.74365234, 1.3154297, -0.8901367, 0.8486328, 1.5683594, 1.0527344, 1.2626953, 0.83203125, -0.6542969, 3.0761719, -1.1328125, 5.3085938, 2.3457031, -0.7861328, 1.5292969, -0.39770508, -0.6074219, 0.8100586, 1.4238281, -2.3769531, 0.42919922, -0.94873047, 0.5498047, -1.0234375, 0.5180664, -1.0078125, -1.6933594, -0.78271484, 1.0673828, -4.1171875, -1.1748047, 3.1132812, 2.3164062, 1.1748047, 0.022384644, -2.8183594, 0.8959961, -0.34643555, -0.45581055, 0.828125, 0.29858398, 1.4990234, -1.1728516, 0.5205078, 0.74560547, 2.8085938, 1.140625, -0.44067383, 0.9848633, -1.4082031, -0.33544922, 0.7133789, 2.8789062, -1.2226562, 0.16967773, -0.008071899, 1.8740234, 0.13330078, 3.1152344, -2.3320312, -0.97314453, -0.57714844, -1.5996094, -0.6123047, -0.73095703, -0.8432617, -0.1809082, 2.4511719, 0.42822266, 0.023910522, 2.3300781, -1.9736328, -0.5253906, -0.62060547, 0.8017578, 1.7119141, -2.9746094, -0.77246094, 0.58691406, -0.36279297, 1.0380859, -2.3710938, 0.55078125, -0.34106445, -0.068359375, -1.4658203, 2.0585938, 1.4404297, -1.1806641, 1.1533203, 0.8881836, 2.8476562, -0.28149414, 0.29516602, 4.2382812, 1.0683594, -0.5732422, -0.6899414, 4.1015625, -0.2121582, -0.43359375, 0.58740234, -0.21435547, -1.6591797, -1.3554688, -1.5683594, 0.8964844]}, "B00KUJCH66": {"id": "B00KUJCH66", "original": "Brand: Grillaholics\nName: Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty\nDescription:

THE SECRET TO GRILLING LIKE A PRO

Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

  • Set of two 15.75\" x 13\" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
  • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
  • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
  • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
  • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
  • Note:\nFeatures: [Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you'll ever need. NEVER buy another grill mat again.\n[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat.\n[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze.\n[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\n[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you\u2019ll get a product you love or we\u2019ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.\n", "embedding": [-0.6538086, 1.8916016, 0.6201172, -0.5966797, 0.19335938, 1.2041016, 2.0976562, -0.98779297, 0.9399414, 1.9736328, -0.91796875, -0.79833984, 0.60009766, -4.0117188, 0.27172852, -0.22375488, 0.4892578, 1.4980469, 3.5214844, 1.4755859, 1.3027344, 1.1591797, 0.07312012, -1.6464844, 0.93115234, 0.04296875, 3.7128906, 0.39379883, 0.75439453, 0.65625, 2.2753906, 1.8027344, 0.09362793, 2.3398438, -3.8535156, -0.6586914, 0.1772461, 3.65625, 0.5419922, -0.0070266724, -1.5400391, -4.4570312, 1.8417969, 1.8564453, -1.875, 0.6928711, -0.5756836, 2.9042969, -0.33935547, -3.7304688, 2.0859375, 0.7133789, 1.9619141, 0.4753418, -2.3574219, 2.671875, -0.010696411, -1.9931641, -0.15014648, 0.13427734, 0.18640137, -0.48828125, -0.6582031, 1.3652344, -0.18200684, -1.8076172, 1.0839844, -2.1542969, -0.052642822, -2.4277344, 0.84033203, -0.62158203, -1.2001953, 0.7861328, -0.17736816, 1.0722656, -0.37451172, -0.09484863, -0.005836487, -2.3828125, -0.9067383, 3.8691406, -0.45214844, -0.6489258, 0.78125, -1.7011719, -3.7734375, 0.11633301, 2.2128906, -0.6826172, 0.95458984, 2.1171875, -2.7714844, -4.1171875, 0.14135742, -2.3242188, 1.4609375, -0.46533203, -1.2695312, 2.1152344, -1.3369141, -0.81591797, -0.3737793, 2.3828125, -2.8300781, -1.7519531, 2.7519531, 0.016204834, 1.1542969, -0.81396484, 0.89941406, 1.2304688, 0.77978516, 1.5214844, 2.0273438, 1.0097656, 0.46606445, 0.76904297, 1.9511719, 1.5693359, 3.765625, 1.1708984, -0.8027344, -2.3183594, -0.07476807, -0.5917969, 0.028396606, 2.890625, 2.4785156, -1.9785156, 0.43188477, -1.34375, -0.062683105, -1.1113281, -0.3173828, -1.7695312, -0.16894531, -0.16430664, -2.0175781, 1.7792969, 0.47070312, -1.1025391, 1.6220703, -1.0068359, -2.9902344, 0.0007967949, -3.3496094, 2.9414062, -1.8447266, -2.3007812, 0.36206055, -0.7084961, 1.34375, -0.18115234, 0.63623047, -1.0761719, 1.5136719, -0.48095703, 1.0068359, 1.0859375, 1.0595703, -2.5703125, -0.30078125, -1.1582031, 2.28125, -2.7460938, -2.0136719, 1.5078125, 0.22717285, 2.078125, 0.4128418, -1.7685547, 1.0722656, -0.5810547, 0.5834961, -0.54345703, 0.75146484, 1.6884766, -1.0771484, -0.69189453, 0.89941406, -2.4238281, -0.5258789, 2.1933594, 0.46923828, -0.859375, 0.41333008, -1.0371094, 0.35180664, -0.8496094, 0.23376465, 3.0527344, 0.3256836, 0.88378906, -1.8876953, -0.7709961, -0.36791992, -2.2167969, 1.265625, -1.1416016, 0.28564453, -0.62646484, -1.2939453, -1.4609375, -2.6308594, -2.1933594, -1.609375, 2.0585938, 2.0214844, 0.6040039, -0.5283203, -1.5683594, 1.9541016, 2.8691406, -0.74853516, -1.0888672, 0.43847656, -0.48388672, 1.7998047, 3.1855469, -0.97021484, -0.40014648, -0.6220703, 4.7226562, -1.9589844, 0.94628906, -0.27441406, 1.3779297, -1.3056641, -0.58935547, 1.1884766, 0.23156738, 0.80126953, -0.44213867, -0.41015625, 1.4345703, 2.46875, -0.6669922, -1.8662109, 0.37280273, -1.6513672, -0.35986328, -1.9287109, -2.0996094, -0.8222656, 0.1459961, -1.015625, 1.7539062, 1.265625, -2.1796875, -0.45898438, 3.8808594, 2.3671875, -1.0566406, -0.59765625, 0.25878906, -0.20581055, 0.4482422, -2.1855469, -0.22753906, -0.87890625, -1.1259766, 0.14794922, 1.3955078, 1.3789062, -0.73339844, 1.6943359, 0.5776367, -2.5097656, -0.81933594, 0.2541504, -0.74853516, -1.1376953, -2.2089844, 1.4462891, 0.29418945, -2.4355469, 0.80371094, 0.22192383, -1.8896484, -0.19909668, 3.3125, 0.49243164, 0.45458984, -3.0644531, 0.77978516, -2.0039062, -1.6826172, 0.7348633, 0.5361328, 3.8125, 1.953125, -1.0898438, 2.3144531, -0.17285156, -0.46533203, 2.15625, -0.2919922, -2.2304688, 0.4609375, -0.05065918, 2.1542969, -0.33251953, 1.2509766, -1.1552734, -0.38110352, 2.328125, -2.3027344, -0.92529297, 2.3789062, 0.17626953, -0.5756836, 1.5341797, 0.47851562, -3.0761719, -2.0625, 0.97998047, -1.4492188, 0.50634766, -1.3212891, -0.9008789, -0.73095703, -0.0758667, -2.8691406, -0.7626953, 1.4785156, -0.7348633, -0.46484375, 0.57373047, 0.11633301, 0.9067383, -1.5830078, 0.27514648, 0.16516113, -2.2304688, -2.0898438, -2.3085938, -0.21826172, -0.35986328, -0.1262207, -0.76464844, 0.73583984, -1.3730469, -0.00579834, -1.4179688, -2.9179688, -1.5957031, -2.0839844, -0.30395508, 1.2021484, -0.7998047, 0.5703125, 0.39404297, -3.7929688, 1.0058594, 0.7080078, 0.08648682, 1.1035156, -1.3544922, -0.1784668, 0.40112305, -0.33544922, 1.0234375, -0.15185547, 0.9086914, 2.9746094, -1.7460938, -2.9101562, 0.71435547, -2.0410156, 0.32128906, -2.3398438, -0.64746094, -1.7324219, -0.3840332, -0.97802734, 0.70166016, 2.1015625, -0.4169922, 1.5732422, -0.052978516, -1.1308594, 0.91259766, 1.6904297, -1.34375, -1.9912109, -0.2685547, -2.0351562, 0.18786621, -1.3642578, -1.2431641, -1.6884766, 0.19067383, -0.48706055, 2.0371094, 0.32128906, 3.5507812, -2.5273438, -0.1940918, -0.052581787, 1.2148438, -0.69921875, 0.35839844, -1.8710938, 0.0234375, -1.1123047, -2.1972656, -1.0283203, 1.4736328, -1.5566406, 1.1503906, 0.5908203, 0.60595703, 0.12536621, -0.90625, -1.2089844, 0.21875, -0.6982422, -1.1386719, 0.8442383, 0.53271484, -2.4863281, -1.2119141, -1.9960938, 2.8730469, 0.64746094, 0.75, 1.4863281, -0.016830444, 2.9941406, 1.09375, 0.9189453, 0.71484375, 1.1220703, 1.4970703, -1.453125, -2.2304688, 1.4912109, 0.16149902, -2.4160156, 0.25708008, 1.2890625, 1.0908203, -0.11450195, 0.6225586, 1.6162109, -0.28295898, -0.64208984, 2.8574219, -0.64501953, 0.38500977, -1.1132812, 0.33374023, 0.6977539, 0.2775879, 2.3535156, 1.9160156, 0.26123047, 0.7939453, 0.5180664, -1.2529297, -2.8476562, 0.8925781, 2.2871094, 1.1923828, -1.3769531, 2.2871094, -0.91552734, 0.46801758, 4.234375, -1.1992188, 0.109558105, -2.1503906, -0.5683594, 1.3955078, 0.16796875, -0.81347656, -2.0488281, -0.9213867, -0.6621094, -2.8828125, 0.96875, -2.1132812, -1.6855469, 1.3476562, -1.390625, -3.9199219, 1.3642578, 3.8632812, -2.2832031, -2.078125, -1.5712891, 3.0605469, -0.13146973, -1.1044922, 0.008621216, 1.5214844, -0.5722656, 2.2207031, 0.024932861, -0.77978516, 2.2109375, -3.09375, 1.8984375, 0.57958984, -2.1542969, -0.5961914, -1.6582031, 0.6777344, -0.29003906, -0.1673584, -0.15966797, 0.5161133, -2.0605469, 0.89501953, -1.8056641, 0.75, 0.07397461, -1.6708984, -0.33276367, 2.0117188, 1.5283203, 0.2692871, -0.6777344, 4.5664062, 2.0644531, -1.6142578, 1.5751953, -3.0722656, -0.51171875, -1.4589844, -3.1816406, -0.67626953, -1.1630859, -1.9316406, 4.6484375, 0.7426758, 1.703125, 3.375, -0.8647461, -1.1005859, 0.74121094, -2.46875, -1.8134766, -0.6484375, 0.6020508, 2.5683594, 1.7421875, -1.078125, -0.93408203, -1.1738281, -2.1367188, 1.0146484, -0.3959961, 0.63964844, -0.12176514, -2.7089844, -0.45166016, -0.14611816, 1.0273438, -0.25219727, -0.828125, 0.6767578, 1.0966797, 3.0917969, -1.9804688, 0.96435547, -0.16174316, -0.7602539, -1.0302734, 1.1044922, -1.2392578, 0.7089844, 4.2148438, -1.3486328, -1.5029297, -0.67578125, -0.43310547, 1.7021484, -0.22155762, -0.8730469, 0.8730469, -1.0400391, -0.42285156, -0.37573242, 2.34375, 1.6816406, -0.99609375, -1.3779297, -0.7895508, 0.37768555, -2.234375, -1.7451172, 0.30908203, -0.65966797, 0.22497559, -1.5849609, -1.6210938, 2.1464844, -1.6806641, 0.5805664, -1.3417969, 3.625, -1.1318359, 0.32592773, 5.28125, -3.1230469, 0.27001953, 2.8710938, -3.6601562, -1.0068359, 0.2668457, -0.83447266, -3.3339844, 1.1816406, 2.4707031, -1.0009766, -1.5820312, -0.36914062, 0.59277344, -1.2080078, -3.3320312, 0.9423828, -0.7402344, -0.26367188, 1.0957031, -0.30322266, 3.4238281, -0.73291016, 1.7119141, 2.6894531, 0.16540527, 0.5678711, 0.8066406, -0.5966797, 0.18127441, 1.5292969, 1.2695312, 1.9316406, -1.8369141, -0.6425781, 0.061767578, 0.75097656, -4.03125, 1.5410156, 0.43481445, 0.37304688, -1.3808594, -0.7807617, 2.1660156, 2.3574219, -0.27807617, 1.1347656, -0.17443848, -1.5947266, 1.3681641, 1.2578125, -2.1894531, 1.0371094, 0.5083008, -1.4257812, 2.3222656, -1.5097656, -2.1992188, -0.5566406, 0.80615234, 0.43359375, 0.2849121, -0.51416016, 0.9169922, 1.7773438, -1.0605469, -1.4296875, -1.5117188, -1.8291016, 1.3066406, -0.9760742, 0.4230957, -0.9824219, -0.44995117, 4.1796875, -1.6210938, -1.7431641, 1.4208984, -0.41235352, 0.008132935, -0.20629883, -1.4462891, -2.4785156, -1.5390625, -1.7841797, 0.93603516, 2.0996094, 0.36108398, 1.1933594, -2.0644531, 2.7890625, -3.1738281, 2.6035156, -1.7978516, -0.54296875, 3.1679688, -3.921875, -0.7285156, -1.5585938, 1.1181641, 0.7128906, 0.46484375, 1.0908203, -0.72314453, -1.7373047, 0.04019165, -1.1884766, -2.1289062, -0.953125, -0.07562256, 0.59033203, -0.6142578, -0.8183594, -0.22155762, 0.18774414, 1.4628906, 0.7373047, 1.6318359, 0.10217285, -1.7207031, -1.7558594, -2.3652344, -0.48266602, 0.58740234, 0.61328125, 0.09259033, 4.53125, -1.6542969, -1.7666016, -0.0032691956, -0.92285156, -3.1757812, -1.8994141, 1.4707031, 0.06903076, -0.054473877, 0.3137207, 0.75634766, -0.984375, 3.5527344, 0.27416992, 0.5595703, 1.3925781, -0.45043945, -0.50097656, -0.8540039, -4.6210938, 0.81103516, -3.8710938, 0.7548828, 1.1162109, -2.1738281, 1.0390625, 1.6386719, -2.265625, -0.96533203, 0.37158203, 1.2226562, 1.1679688, 0.35473633, -0.39868164, 1.2773438, -2.828125, -2.2597656, 0.98095703, -1.4482422, -1.6347656, -1.3242188, -0.16186523, 2.4941406, -0.08441162, 2.6152344, 0.59375, 0.5600586, -1.5996094, 0.20507812, 0.33276367, 0.34765625, 0.5239258, 0.0357666, -1.4628906, -1.7539062, 1.4082031, 1.03125, 0.5029297, 2.8046875, -1.0263672, -2.0546875, -1.2792969, 0.48266602, 1.3808594, 3.2675781, 0.83984375, -0.11505127, -0.9121094, -0.0736084, -1.7285156, 1.734375, 1.2685547, 3.3769531, -2.4726562, 3.7929688, -1.5419922, -2.8359375, 1.4980469, -0.14355469, -0.092163086, 0.24975586, -1.5683594, -0.7241211, -1.1054688, -1.3056641, -1.2158203, 0.54003906, -1.7441406, 1.4589844, 0.4050293, 0.75097656, -0.26635742, 3.2675781, 0.57714844, 2.7558594, 3.1972656, -0.41625977, -1.2910156, -1.3671875, -1.7236328, 0.21899414, 0.83154297, -0.7084961, -0.17163086, 0.20495605, -1.0986328, -1.6083984, 0.6928711, 1.0068359, 1.7001953, 0.24511719, 2.1542969, 3.8867188, 1.5507812, 2.9316406, 0.87841797, 2.4472656, 0.9448242, 0.1809082, 0.6010742, 3.9277344, 1.2470703, 1.3769531, -1.1777344, 1.5634766, 0.32055664, -0.27539062, 0.44995117, 0.10406494, -0.17626953, -0.78515625, 2.4199219, 0.49731445, 0.45263672, 0.24279785, 1.4091797, -2.5390625, -0.7104492, -1.5859375, 0.56396484, 3.6757812, 1.0458984, 0.19763184, 1.7626953, 1.7578125, 2.5605469, -3.6503906, 0.56103516, 1.4482422, -1.0693359, -1.7294922, 2.8320312, 0.25317383, 0.91308594, 1.3710938, 0.29711914, 0.7480469, 1.0605469, 1.5322266, 0.64990234, -0.48388672, -1.4511719, 1.5898438, -2.1484375, -2.1777344, -2.0644531, 0.25610352, -1.4462891, -1.7998047, 0.08294678, 1.3505859, 2.5878906, 0.8569336, -4.5859375, -0.37036133, 0.6870117, 1.7685547, -2.8222656, 0.3552246, -1.1025391, -3.2578125, -1.9931641, 1.0986328, 1.2939453, 1.21875, 1.2314453, -1.5888672, 1.9101562, 1.6816406, 0.73583984, 0.8745117, 0.37060547, -0.5620117, 2.1152344, -0.14416504, 4.6640625, 1.1777344, 2.328125, 0.0039863586, 0.2097168, 2.4355469, 1.1953125, 2.2226562, 0.6796875, -1.0732422, -0.82373047, -0.2775879, 0.30029297, -0.24328613, -1.2841797, -1.2578125, -0.16662598, -0.9091797, -2.1015625, -0.69091797, 0.6352539, 1.5732422, 1.9599609, 0.796875, -1.2783203, 2.3730469, 2.7207031, -1.1191406, -1.0380859, -0.6791992, -0.4169922, -1.2392578, -0.9770508, 1.2167969, 1.6396484, -0.14685059, -1.8359375, 0.28735352, -0.36157227, 0.7636719, 0.008865356, 1.3300781, -1.9589844, -1.7587891, 0.5229492, -0.29858398, 1.0800781, 2.5703125, -0.64208984, -1.4755859, -0.6464844, -2.2929688, -1.0947266, -1.046875, -1.9873047, 1.6630859, 3.4570312, 2.2402344, -0.46899414, -1.78125, -1.3115234, 2.8457031, -1.2705078, 2.5078125, -0.51953125, -1.1142578, -0.1538086, -2.1914062, 1.3398438, 1.0498047, -1.5058594, -0.31420898, -0.8984375, 0.41552734, -0.33154297, 1.6210938, 1.2607422, -0.42089844, -0.9746094, 2.8476562, 3.8574219, 2.0117188, 1.7460938, 2.7285156, 0.6645508, -2.2792969, -0.20825195, 0.20483398, 1.6757812, 2.2441406, 0.009048462, -1.0830078, -1.4414062, -1.0556641, -1.8642578, -0.26049805]}, "B06ZYM3MSW": {"id": "B06ZYM3MSW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "embedding": [-1.2851562, 0.41796875, 0.9375, -0.34423828, 1.3642578, 1.4990234, 1.3535156, 0.265625, -2.1855469, 1.2939453, 2.3027344, 0.79541016, -0.75390625, -1.5302734, 0.32495117, 0.3486328, 0.5786133, 1.2382812, 0.51171875, -0.27319336, 0.67089844, 1.5996094, -0.9526367, -2.8730469, 1.9414062, 0.7207031, 4.1757812, -2.1054688, -0.14257812, -1.1699219, 0.53222656, 0.16174316, -0.089660645, 1.5810547, -2.7597656, 0.24328613, 0.4951172, 0.39086914, 0.4453125, -0.6225586, -1.328125, -0.90966797, 1.0830078, 2.2382812, -3, -1.7373047, 0.18078613, 2.0234375, 0.22473145, -0.91015625, 1.1884766, 1.9394531, -1.2548828, 1.1572266, -1.1132812, 2.2578125, 0.3503418, -2.5078125, 0.68603516, 0.2467041, 1.2861328, -0.57714844, -1.8232422, 0.5058594, -2.3632812, -1.2089844, 1.1181641, -0.2692871, 0.39697266, -1.5810547, 1.8798828, 1.1083984, -0.43359375, 0.9580078, -1.2792969, -0.42651367, -2.9648438, 1.4482422, -0.13745117, -1.1542969, -1.5712891, 1.8730469, 0.07952881, -0.36010742, -0.08404541, -0.64697266, -1.1240234, 1.6376953, 1.5224609, -0.23376465, 1.5039062, -1.6425781, -0.67871094, -4.0625, 2.0761719, -0.8359375, -0.32226562, 1.0800781, -0.14489746, 1.328125, 0.9033203, 0.29467773, -0.5810547, -1.3828125, -2.4101562, -0.6254883, 2.0039062, 1.5673828, -1.2080078, -0.9707031, -1.0585938, 1.1660156, 2.0644531, 0.4387207, 1.7021484, -1.5205078, 0.75097656, 1.4033203, 0.60791016, 2.4160156, 2.6738281, 0.0062065125, -0.2130127, -0.8911133, -0.31640625, 0.0690918, 0.6118164, 0.22387695, 4.9257812, -1.6962891, -0.42456055, -0.6376953, 1.3583984, -0.8378906, -0.3100586, -1.7226562, -1.8388672, -0.22814941, -2.34375, -0.36035156, -0.86376953, 2.1132812, 1.6044922, 0.08868408, -3.7148438, -0.3149414, 0.81640625, 1.1337891, -0.2692871, -3.53125, 0.4807129, -0.74560547, -0.43408203, -2.1992188, -0.46118164, -0.57128906, -0.87353516, -1.2695312, 0.2800293, -0.5307617, 0.68603516, -1.1132812, -1.0800781, 1.0185547, -1.6210938, -1.6025391, 0.77490234, 1.7802734, -0.2644043, 2.21875, 0.5678711, -0.20336914, -0.014762878, -1.4423828, 1.5332031, -1.1474609, -0.4753418, 3.1953125, 1.4306641, -1.3730469, -0.70996094, 0.23413086, 0.14123535, -0.81689453, 0.34375, -1.0078125, 1.0029297, 2.3808594, 1.8232422, -2.3710938, 2.2480469, 1.7265625, 1.6816406, 1.2011719, 0.20898438, -1.390625, 0.17712402, -1.9375, 1.3466797, -1.1025391, 0.1574707, 1.1933594, -1.7060547, -0.49072266, -1.2148438, -0.9003906, 0.2421875, -1.2900391, 2.5878906, 1.6748047, 2.6679688, -1.1806641, -0.45043945, -0.20410156, 1.5117188, -2.3847656, 3.4492188, -1.875, 2.0546875, 1.3496094, -0.27392578, -0.22875977, 0.609375, 3.6308594, -0.5996094, 0.38500977, 0.83496094, 0.65234375, -0.61083984, -0.18969727, 1.4091797, 0.6191406, -0.9711914, -0.6142578, -0.022705078, 1.0810547, 1.6806641, 1.0664062, 0.40698242, -0.5292969, 0.6088867, 0.1899414, -1.1113281, -0.3984375, -1.6591797, 0.3798828, -3.7929688, 1.6826172, 0.69384766, -1.5927734, -1.046875, 1.9335938, 3.7148438, 0.5600586, -2.4394531, 0.2932129, -0.3564453, 0.15234375, -1.4472656, -0.85009766, 2.75, -1.3095703, 2.8789062, 0.5551758, 1.7763672, -0.8515625, 3.9140625, 0.9838867, 0.009315491, -1.0654297, -0.3798828, 0.21362305, 1.9960938, 0.01612854, 2.9003906, 2.1855469, -1.4423828, 1.0244141, 0.9980469, -0.44458008, 0.76171875, 0.78515625, 2.2617188, -2.2832031, -0.8466797, -1.0820312, -1.9951172, -1.5410156, -0.9355469, 0.10064697, 4.3789062, -0.42333984, -3.4550781, 1.2382812, -1.1171875, 0.77685547, -0.65527344, -1.8574219, -0.41748047, 1.1679688, 0.90966797, 1.1865234, 0.37231445, 0.4309082, -1.7470703, -0.9873047, 0.7841797, -0.5410156, -0.05065918, 2.0605469, -0.79003906, 0.57714844, -2.9277344, -1.0097656, -2.9277344, 0.4284668, 2.2890625, -2.4453125, 0.2849121, -0.0993042, 1.7392578, 1.6386719, -0.124694824, -1.3515625, -1.8964844, 1.6699219, -0.78564453, 0.7480469, -0.54345703, -2.90625, -0.45410156, -0.9819336, 0.046783447, -1.1074219, -1.9072266, -1.3759766, -2.2910156, -2.6933594, -2.1191406, 0.015419006, -2.3710938, -0.39160156, -1.8173828, -0.36914062, -2.1015625, -3.3398438, -0.69189453, -1.9267578, -1.1298828, 3.4433594, -1.3222656, 2.3867188, 1.0166016, -3.7578125, 1.0615234, 1.6298828, -0.46777344, -0.6088867, -2.9472656, 0.17834473, -1.078125, -0.21325684, -1.9824219, 1.0048828, 1.78125, -0.8027344, 1.1572266, -2.4375, -1.2314453, -0.6616211, -0.44628906, -1.4179688, 0.81933594, -1.2988281, -0.75439453, 1.0664062, 0.390625, 2.5722656, -0.9589844, 1.7275391, -0.4008789, 1.4326172, 1.0605469, -1.1171875, -2.6835938, -0.85253906, 1.078125, -1.2626953, -1.3867188, -3.1738281, -0.8203125, -0.41723633, 0.7426758, -1.5410156, -0.45361328, -0.94921875, 2.5625, -1.2158203, 0.20422363, 0.40478516, -0.17590332, -1.3789062, 0.546875, -3.171875, 0.83740234, -2.0214844, -2.0683594, -0.47509766, 1.4794922, 0.54052734, 0.8613281, 0.9453125, 0.8276367, -0.9091797, 0.045135498, -2.0449219, 2.3515625, -1.0556641, -2.125, 0.9819336, 0.30078125, -2.6289062, -2.1796875, 0.020370483, 4.4765625, 1.1992188, 3.1914062, -0.41357422, 0.5566406, 0.29370117, -0.1685791, -0.7583008, -0.25610352, 0.1739502, 2.9003906, -2.7167969, -1.0839844, -0.4807129, 1.4492188, -1.4453125, -1.3984375, 3.0253906, 0.30859375, 2.7929688, 2, 0.3239746, 0.99365234, -1.1396484, 1.6464844, -0.27734375, -0.84277344, -0.09020996, -1.1210938, 1.0810547, -0.077819824, 1.1630859, 1.8486328, 2.1738281, 2.9570312, 2.2929688, 1.6035156, 0.12487793, 0.94921875, 0.044769287, 2.8789062, 0.3857422, 3.4707031, -0.9267578, 0.74658203, 0.7836914, -1.2802734, 0.73339844, -0.60791016, -0.12841797, 2.609375, 1.2744141, -1.1044922, 0.76464844, 0.3293457, -0.85058594, -0.4111328, 2.0253906, -1.046875, 0.36108398, 2.0761719, -0.11608887, -2.6855469, -2.4746094, 0.021957397, -0.4050293, -0.42041016, 0.29492188, 2.9238281, 1.7636719, 0.36547852, -0.4182129, 0.55078125, -1.7402344, -0.012130737, -1.5117188, 0.38256836, 0.12548828, -2.0957031, 0.96875, 0.12890625, -0.14172363, -1.2050781, -0.5800781, 1.0888672, -0.5991211, 1.2939453, 1.2001953, -0.96972656, -2.8183594, -0.74658203, -3.25, 1.7509766, 0.5761719, -5.0117188, -0.8046875, 1.9716797, 1.3847656, -0.008651733, -0.9975586, 2.5546875, 0.045898438, -1.1367188, 3.3652344, -2.3046875, -0.64453125, -2.5429688, -4.390625, 1.4248047, -1.3007812, -0.7558594, 5.03125, 1.3701172, 0.359375, 2.5058594, 1.0136719, -3.2207031, -1.5146484, -1.0341797, -1.109375, -1.5673828, -0.9160156, 0.54003906, -0.022033691, -2.4746094, -0.5390625, -0.46972656, -0.37817383, 0.7553711, 0.734375, -1.7412109, 0.7524414, -2.1269531, 0.35205078, 0.2220459, -0.1227417, 1.8896484, -1.6425781, 0.375, 0.6069336, 2.1953125, 0.25219727, -0.7236328, 0.06210327, 0.06970215, 0.27368164, -1.4921875, -0.12445068, 2.3789062, 2.15625, -0.26660156, -1.8173828, -2.0410156, 0.5415039, -0.18591309, -1.8603516, 0.07147217, -0.48608398, -1.7939453, 0.890625, 0.62939453, 0.10546875, 1.3876953, -0.7006836, -2.3417969, 0.6669922, -2.1757812, -1.8300781, -1.6513672, -0.6640625, 0.9501953, -1.2871094, 0.068847656, -0.44384766, 0.94628906, -1.1484375, -0.6152344, -2.1132812, 2.9746094, 1.5458984, 2.65625, 3.9570312, -0.1739502, 1.0683594, 2.3105469, -1.1298828, 1.5400391, -1.6240234, -0.56591797, 0.28588867, 2.0898438, 1.5048828, -1.2539062, -1.9111328, 0.86865234, -0.67578125, 1.9804688, -1.9570312, 1.5332031, -1.609375, 0.2746582, 0.13354492, -2.7636719, 1.1210938, -1.2451172, -1.6054688, 0.6489258, -0.30371094, -2.265625, -0.29516602, 0.29052734, 0.22070312, 1.4130859, 1.7314453, -0.20776367, -2.09375, -0.99902344, -0.47314453, 0.9140625, -0.33325195, 0.33325195, -0.30151367, -0.4416504, -0.33276367, 0.08514404, 1.6210938, 2.3496094, 1.3945312, 4.1953125, 1.03125, -1.8447266, 0.20581055, 1.1279297, -1.0361328, 1.9589844, 0.5834961, -2.1738281, 1.9765625, 0.7680664, -4.578125, -1.5908203, 2.5117188, -0.93115234, 1.1923828, -0.83984375, -1.0869141, 1.5634766, -2.2480469, 0.6279297, 0.5131836, -1.7451172, 2.1210938, 0.265625, -2.3535156, -1.6464844, -0.16442871, 3.0039062, -1.7509766, -1.3994141, 2.7421875, 0.16809082, 0.84716797, 0.33081055, -1.3828125, -1.1972656, -2.2246094, 2.5371094, 1.6855469, 1.0605469, 0.5444336, 3.0136719, -3.0371094, 0.18225098, -3.0117188, 3.34375, -4.6953125, -1.8876953, 0.58447266, -2.3398438, -1.4902344, -1.6142578, 0.48486328, 0.6645508, 2.5742188, 1.4472656, -2.5625, -0.98583984, 1.1796875, -1.9287109, -5.7226562, -2.4707031, 0.13562012, -0.40625, -0.08532715, 1.4160156, 0.4794922, 1.6103516, 0.5180664, -1.8388672, -0.2133789, -0.40649414, -2.5214844, -0.67089844, 0.21289062, 0.3918457, -0.3076172, 1.2636719, 2.7070312, -0.93115234, 1.1230469, -2.6894531, 0.8598633, -0.52197266, -1.2792969, 0.6015625, -0.07086182, 1.1289062, -0.072509766, 0.18920898, 0.7734375, -2.6132812, 2.5839844, -0.578125, -0.57910156, 0.71191406, -1.3164062, -0.6870117, -0.41577148, 0.03326416, -1.3271484, -0.3334961, 2.3125, 0.20739746, -2.7070312, -0.75, 0.20605469, -0.9267578, -0.9248047, 1.2910156, -0.09906006, -0.0690918, -1.0898438, 0.69140625, -2.3027344, -2.0058594, -1.8203125, -1.5791016, -0.75878906, 0.20483398, -2.03125, 1.6513672, 0.21948242, -0.8022461, 1.4746094, 1.0097656, -0.10644531, -2.3671875, -0.03262329, 1.5419922, 1.7597656, 1.9179688, -1.0039062, -1.2216797, -1.0390625, -0.67529297, 0.5004883, -0.34692383, 0.86572266, 0.640625, -0.5317383, -1.2558594, 1.0986328, 1.8017578, 1.4853516, 0.66503906, -0.86865234, 0.15405273, 0.9614258, -0.92871094, 1.890625, -0.7294922, 1.5029297, -0.1550293, 3.3671875, -0.6635742, -2.7285156, 1.4716797, -2.453125, -0.10632324, -0.40844727, -1.2568359, 0.06210327, 0.93847656, -0.034301758, 0.37939453, -0.0087509155, -1.7519531, 3, -0.49291992, -0.6040039, -0.90771484, 3.2324219, 0.4260254, 2.6054688, 1.6923828, 0.99365234, 0.33984375, 0.77978516, 0.45458984, -0.63378906, 2.5332031, -1.7421875, -0.28637695, 0.29858398, -2.0449219, -1.9091797, 4.09375, 0.75097656, 1.9785156, 1.0332031, 2.0449219, 2.515625, 1.015625, 2.09375, 0.5649414, 0.042816162, 1.6240234, -0.8144531, 1.5283203, 0.91308594, 3.9101562, 1.2285156, -1.4199219, 0.5493164, 0.20019531, 0.62939453, 0.7001953, -0.13586426, -0.18591309, -3.4257812, 2.40625, -1.4306641, 0.5708008, -2.9277344, -0.30688477, -1.6386719, -1.2167969, -1.2285156, 0.5444336, 3.6992188, 0.035736084, 0.24084473, 0.36645508, 0.099853516, 0.8305664, -3.7929688, -1.6474609, 1.3193359, -0.9140625, 0.52734375, 0.5449219, 1.625, 0.029907227, 2.0253906, -0.42919922, 2.6386719, 1.6630859, 0.7055664, -0.75097656, -1.2197266, 0.55908203, 1.4990234, -0.18237305, -1.3945312, 0.6020508, 0.68066406, -2.4042969, -2.4550781, 1.2460938, 0.19335938, 2.5585938, 2.0722656, -1.8173828, 1.8535156, -1.6875, -0.5317383, -0.63671875, 1.5117188, -0.12084961, -0.5776367, -1.6025391, -0.22229004, 1.8447266, 2.2695312, -0.5229492, -0.5493164, 0.8251953, 0.0128479, 2.2597656, -0.59521484, 1.6992188, -0.6855469, 0.42871094, -2.1230469, 3.3144531, -0.33862305, 0.9448242, -1.2226562, -0.039764404, 1.1064453, 0.041015625, 0.13684082, 1.7939453, -0.91064453, -0.9091797, -0.75927734, 0.7397461, -0.024780273, -2.6425781, -2.3945312, 1.7685547, -0.09094238, -2.8886719, 0.059326172, 3.6152344, 1.7197266, 0.8833008, 2.828125, -1.9746094, 2.0488281, 0.4807129, -0.16809082, 0.14208984, 1.1298828, -0.15112305, -0.29125977, -2.3144531, 2.0351562, 2.3125, 1.6083984, -0.42382812, 0.87109375, 2.0917969, 1.3681641, 0.57373047, -0.33496094, -1.6005859, -1.0830078, 1.7128906, -0.39331055, 2.0097656, 1.8193359, 0.0993042, 0.5864258, -1.1054688, -1.0380859, -0.38793945, 0.4362793, -1.3808594, 1.9423828, 3.4238281, 1.7109375, -0.5307617, -1.5927734, -2.1855469, -0.5473633, -0.39111328, 2.3359375, -0.54003906, -1.6738281, -0.5214844, -0.39453125, 0.30688477, 1.6552734, -3.0292969, 1.140625, -2.9863281, 0.6557617, 0.4428711, 0.40820312, -0.48486328, 0.15356445, 1.5302734, 3.5136719, 0.38671875, -0.37353516, 0.030136108, 2.5644531, 0.9980469, -3.296875, 0.63183594, -1.7236328, 1.9482422, -0.38183594, 1.1054688, -0.90283203, -0.19372559, -0.8330078, -1.7275391, -2.4121094]}, "B07VW72J5D": {"id": "B07VW72J5D", "original": "Brand: Taimasi\nName: Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women\nDescription: \nFeatures: [Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily.\n[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears.\n[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use.\n[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below.\n[The Best Gift]: It is a great gift for any occasion, perfect for father\u2019s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!\n", "embedding": [-2.3046875, 2.9355469, 3.1269531, -1.2548828, 0.9267578, -0.13623047, -1.0117188, -1.0380859, 1.6083984, 2.1757812, 0.2548828, -0.7128906, 0.27270508, -1.9140625, -0.8569336, 1.4775391, 0.37768555, 0.19494629, 2.1230469, 2.5722656, 1.2763672, 0.031982422, 0.34423828, -0.4699707, 2.703125, -1.2451172, 4.7265625, -2.5507812, 1.7548828, -0.43823242, 2.0039062, 1.4892578, 0.42285156, 1.3603516, -2.4003906, -0.43579102, 0.6020508, 0.7714844, -0.3720703, -0.38452148, 0.32128906, -1.078125, 2.4492188, 0.95703125, -3.3417969, -0.6176758, -1.5273438, 3.0332031, -1.8652344, -4.7773438, -0.60302734, 1.078125, -0.0770874, 1.6982422, -1.8505859, -0.8071289, -1.6132812, -2.2949219, 2.4433594, -0.18041992, 1.6962891, -1.0654297, 0.20996094, -0.82128906, 1.3007812, -1.1796875, 1.1269531, -2.1308594, 0.22558594, -0.5786133, -0.14318848, -0.16235352, 0.46777344, -0.5761719, -0.35595703, -0.65234375, -0.8027344, 1.0722656, 0.14953613, 1.4072266, -1.3525391, 2.4609375, 0.64453125, -3.3847656, 1.3076172, -0.77197266, -0.80859375, -0.1439209, 0.70947266, 0.2524414, -2.2949219, 2.2832031, -1.15625, -4.8164062, 3.2460938, -2.1425781, 1.1123047, -0.71484375, 0.13183594, 0.46606445, -2.3046875, -0.6328125, 0.74902344, 2.3457031, -2.84375, -1.5029297, 0.05899048, 0.8598633, -1.5449219, -0.8691406, -1.8417969, 0.20629883, -0.06378174, 1.0341797, -1.9804688, 0.9267578, 0.30786133, -1.5556641, 0.8925781, 2.0742188, 2.9003906, 0.44628906, -1.0244141, -2.1425781, -0.99316406, -0.22753906, -0.4711914, 3.0449219, 2.9160156, 0.27416992, -0.6308594, -2.4726562, 0.01537323, -0.80322266, 0.36987305, -2.4023438, -1.171875, -0.41748047, -2.8105469, 2.796875, 0.2824707, 1.5175781, 2.234375, -0.53222656, -2.8242188, 0.34570312, -0.90771484, 1.3769531, 0.068115234, -1.1962891, 2.0371094, -1.671875, -0.48706055, -1.5253906, 2.65625, -0.51708984, 0.92089844, 1.0800781, 2.078125, 1.5927734, 0.1928711, -2.0898438, 0.14453125, 0.68310547, 1.0908203, -3.4667969, -0.7661133, 3.0371094, 0.07385254, 1.4267578, 0.8647461, -4.3515625, 1.2119141, -0.8442383, -1.2539062, -0.9667969, 1.3037109, 2.7734375, 0.8022461, 0.2836914, 2.3144531, -3.5390625, -0.5859375, 2.2617188, -0.043029785, -1.9863281, 0.79589844, -1.0576172, 0.8808594, -1.2021484, 1.5771484, 2.1640625, 0.33203125, 0.5625, 1.2939453, -2.6132812, -0.54541016, -0.6166992, -0.24829102, -0.7290039, -0.76464844, -1.296875, -0.4555664, -0.6801758, -0.8779297, -2.8242188, -0.79345703, -0.7558594, 2.5664062, 2.5058594, 1.0009766, -0.6118164, 1.0185547, 1.3095703, 0.64160156, -1.7148438, 0.296875, -1.1806641, 0.56884766, 0.83154297, -0.91259766, 0.04449463, -1.1728516, 3.1640625, 1.3798828, 0.8725586, -1.0332031, 1.9775391, -0.55322266, -0.3581543, 0.55078125, 0.6748047, 0.484375, -0.44335938, -0.23486328, 0.85498047, 1.3486328, -1.8828125, -0.88134766, -1.3359375, 0.17126465, -1.8486328, -0.93310547, -1.3388672, -0.72265625, -1.3466797, 0.08227539, 0.8754883, 0.89990234, -2.0976562, -0.121032715, 1.5898438, 2.2089844, 0.33862305, -0.5073242, 1.2011719, -1.2509766, 0.28881836, -3.1132812, -0.4206543, 2.5234375, 0.76953125, 1.0332031, 1.0351562, 0.26513672, -0.22473145, 3.1660156, -1.8066406, -1.7939453, 0.8701172, 1.2685547, 0.72802734, -0.032684326, -1.8867188, 3.1191406, 1.9833984, -1.0224609, 0.30493164, 1.5029297, -0.9165039, 0.5361328, 0.63720703, 1.7939453, -1.3681641, -0.11328125, -2.2792969, -1.2011719, -0.27807617, 0.91503906, 2.5839844, 4.6054688, 0.69628906, -1.8310547, 4.4335938, -2.0410156, 0.7236328, 1.4648438, 0.84033203, -0.47070312, -1.2558594, 0.34814453, 2.0566406, 0.040130615, 0.5107422, -1.4316406, 0.090270996, 1.5722656, -1.0283203, 0.67871094, 1.3769531, -0.68847656, 0.34765625, 0.5136719, 0.9423828, -1.7753906, 0.13415527, -1.8359375, -1.3583984, 0.85839844, 0.25512695, 0.5756836, 1.6074219, -0.4013672, -2.5664062, 0.39868164, 1.2529297, -1.1640625, 0.8305664, 1.6152344, 0.4338379, 1.6474609, -0.8144531, 0.109558105, -1.8583984, -1.6660156, -0.3227539, -0.91259766, -0.70654297, 1.8154297, -0.44995117, -0.20983887, 0.6508789, -2.2597656, 0.24169922, -1.5644531, -3.0449219, -2.5605469, 0.65966797, -0.18334961, 0.53125, -1.2246094, 0.30664062, 0.61279297, -3.9023438, 0.16040039, -0.5019531, 1.3837891, 0.14746094, -1.6796875, 2.015625, 0.48168945, 1.53125, 1.5849609, 1.5341797, -0.45263672, -1.0517578, 1.5214844, -2.0058594, -0.19335938, -1.9609375, -0.19824219, 0.006175995, 1.0341797, -2.0332031, -0.1986084, -1.3496094, -0.6972656, 1.8710938, -1.3212891, 2.21875, 0.99072266, -1.4160156, -0.79833984, 0.16931152, -0.111572266, -1.8232422, 2.0351562, -0.59277344, 1.3984375, -0.8461914, 1.3291016, -2.625, 0.12005615, 0.63916016, 2.6738281, -0.44848633, 1.3896484, -1.6962891, -2.234375, 0.7026367, 1.1992188, 1.4638672, -1.0087891, -1.6582031, -0.2836914, -1.5615234, 0.66503906, -0.9790039, 2.1582031, -2.0058594, -0.68652344, 0.5463867, 0.69921875, 0.31689453, 0.39086914, -1.7255859, 0.7817383, -0.41015625, -1.6308594, -1.3261719, 0.29174805, -2.6972656, -1.6855469, -0.27172852, 2.5839844, 0.41552734, 1.7001953, -0.18908691, -0.007259369, -0.18884277, 0.84521484, 0.8027344, 0.2998047, 1.4248047, 0.2310791, -1.3427734, -2.4550781, 2.1523438, 0.43530273, -3.2519531, 1.6689453, 0.77734375, 1.6533203, 0.5888672, 0.80126953, -0.18408203, 0.6826172, -0.97509766, 2.8789062, 0.027282715, -0.7470703, -2.6894531, 0.7910156, -0.50878906, -1.9257812, 0.9355469, 1.4140625, 0.10626221, 2.0078125, 0.60302734, -1.0576172, -2.1933594, -0.13989258, 0.5449219, 1.2773438, -1.6582031, 0.5942383, -1.6933594, -2.1484375, 0.515625, -0.47509766, 0.39453125, -2.6523438, -0.28759766, 1.9980469, -0.27612305, 1.0791016, -0.57958984, -1.1445312, -0.77734375, -2.1523438, 0.6689453, -1.3496094, -2.3691406, 0.7416992, -0.32763672, -0.9926758, -0.46020508, 2.5234375, 1.0947266, -0.32666016, -1.2734375, 2.5039062, -1.7314453, -0.98535156, -1.7460938, 1.3330078, -1.2597656, 1.7587891, -0.7680664, -0.33691406, 2.53125, -3.7578125, 0.81884766, 1.0693359, -2.1367188, 0.6582031, 0.5834961, -0.2758789, 1.0458984, 0.48510742, -0.2602539, -0.06890869, -2.1191406, 0.4230957, -2.7109375, 1.9394531, 0.46606445, -0.9711914, 0.6801758, 0.16296387, 0.9633789, 2.1386719, -1.2246094, 3.7167969, 1.1162109, -3.3417969, -0.44262695, -2.6503906, -1.4667969, -1.3466797, -1.8310547, 0.4831543, -0.50927734, 1.8046875, 1.4599609, 0.7705078, 0.9169922, 3.8320312, 0.28271484, -2.0839844, -0.52001953, -0.34399414, 0.6982422, 0.27441406, -0.10827637, 2.21875, 0.14892578, -0.17712402, -2.375, 1.3466797, -1.8310547, 1.7304688, -0.7470703, -0.17370605, -0.15710449, -1.0458984, 0.17663574, -0.7470703, 0.15258789, -1.7265625, -2.5273438, 0.8183594, -0.61035156, 2.484375, -1.2304688, 0.21838379, -2.4511719, 0.59228516, 0.18041992, -2.3261719, -0.8149414, 1.1425781, 2.1640625, -0.5332031, -1.5097656, 1.7802734, -0.47802734, 0.57373047, 0.6010742, 1.0947266, -0.2553711, -2.25, -0.3876953, 0.9433594, -0.921875, 2.2304688, 0.25024414, -1.9472656, -0.46240234, 1.9375, -1.9482422, -3.1621094, 0.8417969, -1.5302734, 0.2800293, 0.85058594, -0.57666016, 2.3242188, -1.8007812, 0.3239746, -0.42236328, 1.8144531, 1.4580078, -0.20202637, 4.6054688, 0.043121338, -0.7714844, 1.1142578, -1.5292969, -1.7773438, -0.5151367, 0.3564453, 0.76464844, -0.053649902, 0.65771484, 0.13977051, 0.97753906, -0.5175781, 0.9838867, 0.022964478, -1.2167969, 3.40625, -0.5654297, -1.8613281, -0.29223633, -0.75439453, 3.296875, -0.0012493134, 1.1962891, 0.8598633, -0.36450195, -0.5385742, -0.23486328, 0.23132324, 0.030151367, 0.3618164, 2.390625, 2.4375, -1.6523438, -1.3525391, 0.19921875, 0.49267578, -0.5029297, 1.7089844, 1.609375, 1.8417969, -0.5786133, -1.4052734, 2.1367188, 1.6474609, -1.0390625, 2.7890625, 0.04586792, -2.375, 0.62158203, 1.9609375, -2.9179688, 0.05670166, -1.453125, -1.1289062, 0.74316406, -0.21459961, -0.99316406, -0.23254395, 0.95214844, -0.9741211, 0.14318848, -3.0019531, -0.6044922, 0.7885742, -3.2929688, -0.42529297, -0.9946289, -0.890625, 0.6098633, -0.9326172, -0.24511719, 0.5566406, 0.8701172, 4.4335938, -1.8613281, -0.89941406, 0.44848633, -1.0400391, -0.27856445, -0.67529297, -2.4296875, -2.140625, 1.0800781, 1.9404297, 3.3261719, 0.35961914, 1.0410156, 1.5703125, -1.3642578, 2.2011719, -1.8232422, 2.3105469, -0.88183594, 0.7290039, 1.7978516, -2.5820312, 0.31323242, -1.6044922, 2.2089844, -0.9584961, 0.99121094, 0.44189453, -1.8896484, -0.9980469, 1.1816406, -1.0605469, -3.5761719, -1.1845703, -0.35791016, 1.6728516, 1.9404297, -0.10119629, 0.29736328, -0.85302734, -1.6162109, -1.0136719, 0.75927734, -0.78222656, 1.6494141, 0.44995117, -2.7070312, 0.4909668, 0.47973633, 0.20788574, 1.0517578, 3.6757812, -1.6025391, -2.7480469, -1.2373047, 0.025039673, -2.1699219, -1.3476562, 1.0537109, 0.4345703, -0.94384766, 1.3291016, 1.65625, 0.19274902, 0.47314453, 0.19848633, -0.7480469, -0.83203125, -0.37060547, 0.42797852, -1.4384766, -2.5683594, -0.48486328, -3.2109375, 1.4638672, 0.48657227, 0.93652344, 2.3867188, 0.38134766, -1.5449219, -1.2451172, -0.6977539, 1.15625, 0.88623047, 0.7270508, 0.8383789, -0.1730957, -2.4746094, -1.390625, 1.1298828, -0.7729492, 1.1308594, -3.0449219, 0.026367188, 1.7158203, 0.19665527, 0.2932129, -0.70654297, 1.0195312, -3.1660156, -0.09020996, 0.5341797, 2.6679688, 1.5166016, -0.8569336, 0.39257812, -2.8574219, -0.48486328, 0.8198242, -1.609375, -0.51464844, -0.9135742, -1.9638672, -1.4765625, 0.3972168, 0.6479492, 3.0351562, -0.29785156, -2.8457031, -0.81152344, 1.4746094, -1.9931641, 1.4902344, 1.9033203, 1.8183594, -1.3818359, 4.96875, -2.6191406, -2.7753906, 2.3359375, 0.5703125, -0.9794922, 0.49121094, -2.125, -0.890625, -0.5527344, 1.703125, -1.9267578, -0.7089844, -3.3828125, 0.14672852, 1.1591797, -0.34301758, 0.11578369, 2.4746094, 0.0033302307, 3.3066406, 2.078125, -0.42651367, -1.1474609, -1.09375, -1.6337891, -0.24414062, 0.72216797, 0.73876953, 0.5102539, 1.9990234, -0.0395813, -1.4912109, 2.0273438, 0.4567871, 0.22131348, -0.10241699, 1.7275391, 0.09222412, 4.5195312, 3.34375, -0.005680084, 2.2207031, 3.0917969, 0.35009766, -0.08093262, 2.4980469, 0.6557617, -0.9057617, -0.6894531, 0.2998047, -0.8720703, 0.12597656, -0.09466553, 1.6796875, -1.7119141, 0.36376953, 1.9277344, 0.050231934, -1.4589844, -2.1230469, 0.9916992, -2.2285156, -1.2539062, -1.4257812, -0.09899902, 3.6816406, 0.14685059, -0.32543945, -1.4042969, -0.8300781, 2.1777344, -3.2558594, 1.2041016, 1.0888672, 0.6767578, -3.9550781, 2.9296875, 2.5039062, 1.4111328, 1.3603516, 0.14758301, 1.3261719, 2.1289062, 0.5126953, 0.7763672, 0.22644043, -0.6801758, 1.828125, -2.2265625, -1.0058594, -1.0996094, -0.78125, -0.91064453, 0.36816406, 1.6513672, 0.12792969, 1.4042969, -0.3725586, -5.0351562, 1.0986328, 0.39672852, 1.5839844, -0.4465332, 0.30688477, 1.6035156, -1.8183594, -1.0517578, 1.4296875, 0.72753906, 1.6806641, -0.35083008, -1.8144531, -0.6376953, 1.1884766, 1.1064453, 0.89160156, 0.74072266, -0.76708984, -0.8618164, -0.22106934, 2.234375, 0.46020508, 1.6015625, -1.5097656, 1.4580078, 1.0839844, 1.7431641, 1.1474609, -1.0146484, -0.12347412, -0.86328125, -0.1381836, 0.64404297, 0.7817383, -1.2265625, -0.34326172, 0.12756348, -0.8051758, 0.953125, 1.5605469, 2.1347656, 2.5117188, 0.3154297, -0.4621582, -2.9882812, 1.6845703, 0.84716797, -1.5419922, -0.63671875, -0.65478516, 0.6381836, -1.5507812, -2.359375, 0.4416504, 1.7050781, -0.18457031, -3.1953125, 2.3535156, -0.43823242, 0.47436523, -0.056640625, -1.0703125, -1.6259766, -1.2314453, 0.5048828, 0.18432617, 0.10223389, 1.0361328, -0.36279297, 0.15649414, -0.28125, -0.64404297, -1.3632812, -0.7836914, -1.6894531, 0.14685059, 2.3886719, 1.3144531, -0.5136719, -1.3837891, -1.1767578, 2.3808594, -1.4648438, 0.82421875, 0.9790039, -2.0117188, -0.2064209, -2.15625, 2.0097656, 0.7651367, -2.5898438, -1.1025391, -0.96875, -2.3476562, -0.058624268, 1.9082031, 0.49560547, -1.4082031, 0.6738281, 2.4707031, 1.2265625, 0.5698242, 3.0292969, 1.5703125, 1.9716797, -1.6513672, -0.9472656, 1.2050781, 4.8085938, 0.6591797, -1.1445312, 0.7866211, 0.06311035, -1.1259766, -0.20617676, 0.009635925]}, "B081X7ZB4Q": {"id": "B081X7ZB4Q", "original": "Brand: Z GRILLS\nName: Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque.\n\u2605SEARING ENABLED: Temperature can goes as high as 1000\u2109. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode.\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n", "embedding": [-1.4072266, 0.9267578, 1.1083984, -0.21740723, 1.1503906, 1.1894531, 1.1601562, -0.59814453, -2.40625, 1.1103516, 2.0644531, -0.36523438, -1.2216797, -1.9326172, 0.9169922, -0.04534912, 0.6503906, 0.6269531, 0.12719727, -0.57421875, 1.109375, 0.67285156, -0.1484375, -2.9746094, 2.4042969, 1.421875, 4.3945312, -2.1542969, 0.35717773, -1.0097656, 1.2431641, 0.76904297, 0.60791016, 0.6660156, -3.1816406, 0.14465332, 0.055786133, 0.9946289, 0.32226562, 0.25024414, -0.62402344, -0.5678711, 0.84375, 2.4160156, -3.2597656, -1.3115234, 0.21154785, 2.4414062, -0.40161133, -0.8310547, 1.6728516, 2.8691406, -1.71875, 1.6835938, -0.8725586, 2.0878906, -0.28320312, -2.4355469, 0.08215332, 0.26171875, 0.79833984, -0.94189453, -1.6982422, 1.0107422, -3.3808594, -1.34375, 1.2509766, -0.78125, 0.84228516, -1.4179688, 2.4023438, 0.81103516, -0.14013672, -0.005859375, -1.0166016, -0.39208984, -3.5625, 1.2148438, -0.1928711, -0.98583984, -0.97265625, 1.7597656, 0.113220215, -1.5761719, 0.36938477, -0.14489746, -1.0078125, 1.2900391, 2.0429688, 0.24328613, 1.3652344, -0.6010742, -0.74658203, -4.5, 1.6835938, -1.2236328, -0.28515625, 0.64746094, -0.24487305, 1.9599609, 0.51416016, 0.1685791, -1.7519531, -0.47338867, -1.8798828, -0.6694336, 2.3359375, 1.3613281, -2.5097656, -0.77001953, -1.671875, 1.1347656, 1.2314453, 0.2626953, 1.8105469, -2.0800781, 0.73291016, 1.5273438, 1.2939453, 2.4316406, 2.9238281, 0.4230957, -0.08087158, -1.2441406, -0.7661133, -0.110839844, 0.5053711, 0.19372559, 4.6523438, -2.4980469, -0.029022217, -0.5288086, 1.7978516, -0.3725586, -0.057128906, -1.015625, -1.6318359, -0.6923828, -3.1777344, 0.13415527, -0.83935547, 2.3867188, 0.8647461, 0.23181152, -3.2011719, 0.0038414001, 0.75878906, 1.6005859, 1.09375, -2.7890625, 0.11663818, -1.4130859, -0.94970703, -1.9716797, 0.06427002, 0.1361084, -1.28125, -1.8935547, 0.9355469, -0.3786621, 1.4882812, -0.8881836, -0.89501953, 1.9921875, -1.8613281, -0.47680664, 1.1738281, 1.3730469, -0.24304199, 2.4023438, 0.8305664, -0.5102539, 0.22729492, -1.0664062, 1.421875, -1.6103516, -0.03652954, 3.6699219, 0.74072266, -1.4179688, -0.5498047, -0.23046875, 0.021820068, 0.020858765, 0.4802246, -1.1279297, 1.5537109, 2.3300781, 1.1816406, -2.203125, 2.1015625, 1.5283203, 1.6689453, 0.5805664, 0.6381836, -1.1992188, 0.2166748, -1.3183594, 1.1123047, -1.0683594, 0.4892578, 0.5996094, -2.4980469, -1.15625, -1.2333984, -0.5683594, -0.9140625, -1.9052734, 2.2050781, 1.1650391, 2.5195312, -0.6455078, -0.11767578, -1.359375, 0.81347656, -2.9960938, 2.9765625, -2.1210938, 1.2978516, 1.5546875, -0.1652832, -0.011489868, 0.06732178, 2.4628906, 0.5883789, 0.53515625, 0.5258789, 0.2746582, -1.3457031, -0.33032227, 1.6933594, -0.15148926, -1.2783203, -0.65625, -0.5175781, 1.4335938, 1.7841797, 0.38452148, -0.3972168, -0.6982422, -0.42822266, 0.34179688, -0.5253906, -0.16516113, -1.4765625, -0.6850586, -3.6738281, 1.8173828, 0.25561523, -1.0078125, -0.33789062, 1.5595703, 2.6074219, 0.32885742, -2.3730469, 0.19055176, -0.84814453, -0.10131836, -1.1796875, -1.3066406, 2.7402344, -0.43017578, 1.8896484, 0.5571289, 1.6220703, -1.2255859, 4.2539062, 1.4990234, -0.55126953, -0.6254883, 0.57910156, 0.026153564, 1.8681641, 0.61572266, 2.2441406, 2.6191406, -0.86865234, 1.1904297, 0.50927734, -0.80566406, 0.44726562, 0.85498047, 2.578125, -2.8125, -0.19909668, -0.79248047, -1.5791016, -1.5576172, -0.7246094, -0.23583984, 4.453125, -0.3791504, -4.28125, 1.7900391, -1.9765625, 1.046875, -0.51220703, -1.6035156, -0.640625, 0.60546875, 1.8964844, 0.8496094, -0.43164062, -0.18066406, -1.9882812, -1.7666016, 0.18139648, -0.44677734, -0.5517578, 1.1044922, -1.0898438, 0.3330078, -2.7246094, -0.79345703, -3.0878906, -0.04397583, 2.296875, -2.6914062, 0.75390625, 0.51416016, 1.3925781, 2.0957031, -0.32592773, -1.96875, -1.5556641, 1.8867188, -1.3886719, 0.21154785, -0.85498047, -2.9335938, -0.2319336, -1.5078125, 1.0839844, -1.46875, -2.2480469, -1.6123047, -1.9287109, -3.6660156, -1.7900391, 0.97558594, -1.8339844, 0.06549072, -1.6943359, -0.26123047, -1.7255859, -2.5214844, -0.20629883, -2.8339844, -0.8618164, 3.3125, -0.68115234, 2.1582031, 0.96484375, -4.2304688, 0.48779297, 1.6230469, -0.7675781, -0.5053711, -3.4414062, 0.69384766, -0.984375, 0.23913574, -1.7939453, 1.4755859, 1.7236328, -1.0537109, 1.2998047, -3.1191406, -0.69140625, -0.59375, 0.3786621, -0.5600586, 1.2314453, -2.2363281, -0.94140625, 0.9868164, 0.18383789, 2.7675781, -0.66845703, 1.7949219, -1.2578125, 1.6054688, 0.8564453, -0.6352539, -2.8144531, -0.34448242, 1.2773438, -0.8798828, -0.8823242, -3.2421875, -1.3398438, -0.39916992, 0.8076172, -1.6123047, 0.73291016, -1.4980469, 1.7851562, -1.2402344, 0.15612793, 0.28149414, 0.4025879, -1.6875, 0.39331055, -3.21875, 1.1142578, -2.3242188, -2.1347656, 0.08026123, 1.2353516, 0.44555664, 1.0078125, 2.2675781, 0.80322266, -0.47509766, 0.027404785, -2.7265625, 2.4316406, -0.5961914, -2.8652344, 1.0039062, 0.7470703, -2.7089844, -2.1152344, 0.20373535, 4.0859375, 1.0878906, 2.7597656, -1.3652344, 0.27929688, 1.109375, -0.35083008, -0.1907959, -1.0400391, 0.53222656, 2.453125, -2.7363281, -1.3935547, -0.5, 1.1943359, -1.2783203, -1.5283203, 2.2910156, 0.26831055, 2.2675781, 2.5117188, -0.058685303, 1.1455078, -1.6113281, 1.3125, 0.027008057, -0.11987305, 0.8129883, -1.3564453, 0.6801758, -0.21679688, 1.2001953, 1.1835938, 2.6777344, 2.34375, 2.5898438, 1.0810547, 0.25830078, 0.4260254, 0.21057129, 2.375, 0.29541016, 3.1875, -0.28295898, 0.2590332, 0.8227539, -1.0625, 0.53222656, -1.6621094, -0.96191406, 2.9140625, 0.116760254, -0.5830078, 1.3779297, 0.08679199, -0.5078125, -0.5756836, 1.7597656, -1.6796875, -0.27661133, 1.7910156, -0.021194458, -1.8847656, -2.1582031, 1.2460938, -0.59277344, -0.8383789, 0.7758789, 3.0195312, 1.0273438, -0.15026855, -0.61279297, 1.2255859, -1.9990234, 0.4572754, -1.1191406, -0.6538086, 0.070373535, -2.7734375, 1.3740234, -0.027709961, -0.41552734, -0.72216797, -0.95654297, 1.7021484, 0.703125, 1.5947266, 0.76904297, -0.34057617, -2.0878906, -0.24694824, -3.4199219, 0.98095703, 0.39990234, -3.9765625, -0.12109375, 2.2011719, 1.2050781, 0.01927185, -0.34960938, 2.6738281, -0.088256836, -2.0566406, 2.5859375, -2.6914062, -0.89160156, -2.5996094, -4.984375, 1.1269531, -1, -0.76171875, 4.765625, 0.9584961, 0.21655273, 1.7490234, 0.36157227, -3.0976562, -1.0966797, -0.92578125, -0.5703125, -0.4946289, -0.65527344, 0.19116211, 0.5151367, -1.6269531, -0.9135742, -1.4208984, -0.76416016, 0.33422852, 1.9238281, -1.9033203, 0.88623047, -2.0585938, 0.3642578, 0.10321045, -0.5629883, 2.0351562, -0.2331543, 0.6196289, 0.16552734, 1.6708984, -0.16088867, 0.07476807, 0.37548828, 1.1015625, 0.3400879, -2.1640625, 0.10784912, 1.7832031, 2.3125, 0.2553711, -1.0625, -1.9785156, 0.21643066, -0.10839844, -1.5351562, 0.4958496, -0.70947266, -1.609375, 0.77001953, 0.49804688, 0.6645508, 1.6953125, -0.74609375, -2.4082031, 0.88427734, -1.3759766, -2.0585938, -2.8710938, -0.029800415, 1.0097656, -1.7265625, 0.48999023, -0.44018555, 0.4958496, -0.96435547, -1.3779297, -2.5253906, 2.6992188, 1.8515625, 1.9570312, 3.3261719, -0.8720703, 0.40600586, 2.84375, -1.3261719, 1.1435547, -1.1425781, -1.1152344, 0.21777344, 1.1738281, 1.3232422, -1.5810547, -2.296875, 1.1933594, -1.046875, 2.1191406, -1.8603516, 0.4802246, -1.6757812, 0.3161621, 1.2060547, -2.0507812, 1.3632812, -2.1015625, -1.8544922, 1.2070312, -0.059753418, -1.5263672, -0.36010742, -0.9008789, -0.07824707, 1.3037109, 1.9228516, 0.57177734, -1.1279297, -1.3994141, -0.02029419, 1.0673828, 0.052886963, 0.085632324, -0.80810547, -0.13989258, -0.2692871, -0.51904297, 1.5957031, 1.6484375, 1.1464844, 4.140625, 1.7324219, -1.6962891, 0.2890625, 0.070739746, -0.64453125, 1.9960938, 0.9477539, -2.0742188, 1.4882812, 0.48657227, -3.2480469, -2.0546875, 3.0566406, -0.39624023, 1.3935547, -0.90234375, -1.5449219, 1.3144531, -1.7734375, 0.5332031, 0.24316406, -1.6601562, 2.1816406, 0.5209961, -2.484375, -0.90527344, 0.4560547, 3.2871094, -2.2128906, -0.7114258, 2.6660156, 0.19104004, 0.45117188, 1.0957031, -2.109375, -1.4052734, -1.7978516, 3.1933594, 1.0419922, 1.5595703, 0.20861816, 3.3535156, -2.2949219, 0.50341797, -2.6679688, 4.265625, -4.453125, -2.0625, 0.51220703, -1.8466797, -1.2949219, -1.53125, 1.1611328, 0.36914062, 2.5761719, 1.7451172, -2.9550781, -0.22924805, 0.1652832, -2.1679688, -4.78125, -1.6367188, 0.08929443, -0.45385742, -0.5029297, 1.2216797, 0.98095703, 0.8144531, 0.17102051, -1.3935547, -0.20605469, -0.17272949, -1.7011719, -0.26611328, 0.30859375, 0.76220703, -0.05105591, 1.7841797, 2.7363281, -1.0517578, 0.9111328, -2.8261719, 0.41845703, -1.03125, -0.7895508, 0.2565918, 0.059509277, 0.8334961, 0.25732422, 0.10803223, 0.43920898, -3.0761719, 2.3574219, -0.9980469, -0.86083984, 1.40625, -1.4990234, 0.0074157715, -0.61035156, 0.12963867, -1.4433594, -0.21374512, 1.6855469, 0.4387207, -1.8066406, 0.64501953, 0.4260254, -0.5419922, -0.34887695, 1.0615234, -0.57666016, 0.39868164, -1.0820312, 1.2265625, -2.2402344, -2.234375, -2.453125, -1.4570312, -0.7939453, 0.059265137, -2.6484375, 1.7841797, 0.55078125, -0.36157227, 1.8095703, 0.64404297, -1.1289062, -1.90625, -0.7006836, 1.2617188, 2.7011719, 1.1201172, -1.3398438, -1.3037109, -1.0390625, -0.45410156, 0.58740234, -0.89941406, 0.64501953, -0.010665894, -0.7441406, -0.09448242, 0.4099121, 2.2246094, 1.2099609, -0.012077332, -0.6074219, 0.5283203, 1.3212891, -1.1806641, 0.81884766, -0.29248047, 1.5097656, -0.17456055, 2.9960938, -0.2166748, -2.0214844, 1.1542969, -2.796875, 0.0043182373, -0.3955078, -1.7568359, 0.27514648, -0.49975586, 0.57470703, 0.02670288, 0.5205078, -2.2871094, 2.6308594, 0.38623047, -0.9111328, -0.9482422, 2.4101562, 0.74121094, 1.9482422, 2.1035156, 0.8173828, -0.0059280396, 1.2880859, 1.1113281, -0.64404297, 2.6035156, -1.0322266, 0.02923584, 1.0888672, -1.2255859, -0.9692383, 3.4511719, 0.5878906, 1.5107422, 0.9453125, 2.0761719, 2.9003906, 2.0761719, 2.3007812, 0.80908203, 0.9350586, 1.3515625, -0.20715332, 0.49682617, 1.1953125, 3.7460938, 1.2421875, -0.74365234, 0.7705078, 0.025100708, 1.5166016, 0.49121094, -0.40698242, 0.061920166, -2.7480469, 1.8662109, -1.0966797, 0.59765625, -3.0996094, 0.17700195, -0.46118164, -0.4375, -0.42114258, 0.47314453, 3.8300781, -0.22155762, 0.06573486, 0.014945984, -0.84277344, 0.33325195, -4.0664062, -0.8017578, 0.95654297, -0.6689453, 0.5776367, 0.5419922, 1.2734375, 0.025161743, 1.6152344, 0.1842041, 2.125, 1.4482422, 1.5009766, -1.4951172, -0.61376953, 1.1083984, 1.8994141, -0.3474121, -0.32666016, 1.0634766, 0.45922852, -2.5566406, -2.0703125, 1.3339844, 0.765625, 2.1640625, 1.3310547, -1.8339844, 2.5136719, -1.0966797, 0.07299805, -0.17895508, 1.3017578, 0.4819336, -1.6347656, -0.9453125, 0.5576172, 1.1738281, 2.0898438, -1.1435547, -0.8769531, 0.36572266, 0.36254883, 2.4863281, 0.12017822, 2.4140625, -0.117248535, -0.15344238, -1.8330078, 3.6542969, -1.0908203, 0.67285156, -0.6801758, 0.7753906, 0.6645508, 0.1743164, 0.06109619, 1.4443359, -0.9316406, -0.33569336, -1.4433594, 1.1650391, -0.88916016, -1.5712891, -1.7822266, 1.3173828, 0.07678223, -1.7167969, 0.09283447, 3.0488281, 1.9169922, 0.6850586, 2.6933594, -2.109375, 2.2558594, 0.40112305, -0.12524414, 0.6245117, 0.984375, 0.121154785, -0.36547852, -2.2070312, 1.8164062, 1.7949219, 2.0625, -1.0185547, 1.5380859, 1.7128906, 0.78515625, 1.2490234, -0.25439453, -1.8457031, -0.3791504, 1.3964844, -0.30029297, 2.0449219, 1.8681641, -0.061828613, 0.14257812, -1.5488281, -1.4345703, -1.1474609, 0.10461426, -1.0908203, 1.5703125, 2.2167969, 0.9433594, -0.2836914, -2.0019531, -3.015625, -0.75878906, -0.5541992, 2.0957031, 0.1784668, -1.4267578, -0.27319336, -0.24841309, 0.2685547, 2.4628906, -2.5351562, 1.0830078, -1.7734375, 0.70166016, 1.1953125, -0.115722656, -0.050842285, -0.028656006, 1.0888672, 3.2441406, 0.19812012, -0.40649414, 0.43945312, 2.0605469, -0.06365967, -3.6308594, 0.9580078, -1.8505859, 2.1347656, -0.8881836, 1.1757812, 0.116760254, -0.26611328, -0.57714844, -1.2539062, -2.9570312]}, "B01HXQTNVK": {"id": "B01HXQTNVK", "original": "Brand: Aoocan\nName: Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty\nDescription:

    Each set has 5 of the highest quality grill mats that makes grilling anything easy!

    Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

    Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

    You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

    They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

    For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

    These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

    These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

    -Veggies
    -Shrimp
    -Fish
    -Bacon
    -Pizza
    -Pancakes
    -Eggs
    -Anything else you want to put on the grill!

    BBQ Grill Mats Size: 15.75\" x 13\"

    \nFeatures: A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue.\nEASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don't need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\nSECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better.\nMULTIPURPOSE--While you're baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS.\nBEST OF ALL - Best value in bbq grill accessories! If you're not completely satisfied, we'll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "embedding": [-1.0449219, 1.7626953, 2.1523438, -0.81591797, 0.87353516, -0.29418945, 1.5039062, -0.18664551, 0.61865234, 1.7236328, -0.6821289, -0.63378906, 1.0986328, -3.140625, 0.7597656, 0.29638672, 0.34765625, 3.0664062, 2.7285156, 1.3320312, 1.3974609, 0.75146484, 0.5991211, -2.3378906, 0.22009277, 1.4462891, 2.8046875, -0.11340332, 0.8310547, -0.21154785, 1.5810547, 0.49365234, 0.25170898, 1.5986328, -3.7148438, -0.8730469, 0.21691895, 3.875, -1.5410156, -0.35180664, -1.1152344, -3.2265625, 1.3339844, 2.6269531, -3.0742188, 0.19897461, 1.1621094, 2.078125, -0.54003906, -3.34375, 3.0507812, 1.0527344, 2.5273438, -0.67578125, -2.0917969, 1.8417969, -0.26513672, -2.1464844, 0.10394287, 0.7446289, -0.39379883, 0.15307617, -1.2617188, 2.3671875, -0.80908203, -2.0449219, 0.23779297, -1.7109375, 0.56884766, -2.3652344, 0.5698242, -0.62841797, -1.0498047, 0.49609375, -0.73535156, 0.070739746, -1.5322266, -0.69628906, -0.23510742, -2.109375, -0.2208252, 1.0791016, 0.23205566, -0.5830078, 0.27929688, -0.4482422, -3.1132812, 0.6894531, 1.6972656, 0.65527344, -0.059570312, 3.2285156, -2.5019531, -4.25, -0.1496582, -2.46875, 0.40307617, -1.7832031, -1.3212891, 1.9882812, -2.0429688, -0.33642578, -0.3791504, 2.4628906, -3.1074219, -1.5126953, 2.4140625, -1.4736328, 1.015625, 0.47192383, 0.18762207, -0.69628906, -0.12561035, 1.2490234, 2.4023438, 1.6582031, 0.796875, -0.92578125, 0.5551758, 0.49536133, 4.9335938, 2.1621094, -1.3779297, -2.3417969, 0.49536133, -0.3630371, -0.7739258, 1.8730469, 3.1132812, -2.1757812, -0.44677734, -1.5683594, -0.46704102, 0.09631348, -2.1992188, -1.4619141, -0.043426514, -0.73339844, -1.8242188, 1.7324219, -0.44433594, -1.3847656, 1.6435547, -0.5024414, -3.21875, -0.5961914, -1.9677734, 3.5917969, -1.3505859, -2.390625, 0.19116211, -1.5322266, 0.9824219, -1.4482422, 0.9277344, -0.69677734, 0.9868164, 0.005744934, 0.6118164, 0.75146484, 0.79248047, -2.6855469, -0.3149414, 1.0878906, 1.3027344, -2.4140625, -1.6484375, 2.0410156, -0.13586426, 2.2089844, -1.3076172, -2.3886719, 2.1152344, -0.8623047, 0.42041016, -0.609375, 0.15197754, 2.7558594, -0.25878906, -1.7441406, 1.2890625, -3.1347656, 0.85302734, 2.7402344, -0.6010742, -0.17150879, -0.5395508, -0.62890625, 0.4975586, -0.96875, -0.55126953, 2.9902344, -0.02168274, 0.78466797, -3.1621094, -1.7216797, 0.8256836, -2.0039062, 1.4375, -0.01663208, -0.5908203, -1.1787109, -1.4882812, 0.37719727, -2.5058594, -2.3398438, -2.5644531, 2.7363281, 2.2480469, -0.10345459, 1.2050781, -1.9912109, 1.7373047, 3.1855469, -2.3007812, -1.3613281, -0.7631836, -1.0126953, 1.3730469, 2.3183594, -1.7539062, -0.38842773, 0.09741211, 2.703125, -0.875, 2.3652344, 0.008178711, 1.5185547, -0.53027344, -1.3935547, 0.37597656, -0.2253418, -0.05709839, 0.64160156, -0.3803711, 1.7128906, 1.7773438, -1.5380859, -2.2148438, -1.1396484, -0.3251953, -1.1582031, -2.2246094, -0.45581055, -0.6713867, -0.61279297, -0.44677734, 1.9140625, 0.95458984, -2.1601562, -2.3203125, 3.5839844, 1.5302734, -0.85253906, 0.29907227, -0.0068359375, 0.041748047, -0.14526367, -2.7050781, 0.113464355, -0.043762207, 0.5830078, 0.43676758, 1.3535156, 1.3300781, -0.53808594, 1.2724609, 0.06616211, -2.5859375, -1.1220703, 1.4785156, -1.8408203, 0.6772461, -1.6777344, 0.16491699, -0.42504883, -1.7646484, 1.3701172, 1.0742188, 0.59521484, 0.42358398, 3.9199219, 1.625, -0.91015625, -3.3945312, -0.984375, -1.9335938, -2.1738281, 1.9716797, 2.1230469, 3.3125, 1.6865234, -2.3476562, 2.5410156, -0.1899414, 0.82421875, 1.4628906, -1.1386719, -2.0761719, 0.032104492, -1.1767578, 2.9257812, -1.0576172, 1.0419922, -1.3066406, 0.3083496, 2.1328125, -2.6425781, -0.049865723, 1.3828125, 0.13098145, -0.46166992, 2.1152344, 2.9277344, -3.6367188, -1.1943359, 1.7021484, -1.9316406, 0.64208984, -2.3105469, -0.27685547, 0.52685547, -0.044830322, -1.8251953, 0.24816895, 1.9433594, -0.37109375, 0.41186523, -0.099975586, -0.5708008, -0.064575195, -0.92285156, 1.2216797, -0.92041016, -1.3916016, -1.4804688, -1.7080078, -0.36328125, 0.11199951, 0.1328125, -1.1826172, 0.2956543, -0.9013672, -0.032684326, -1.953125, -2.1679688, -1.9199219, -0.20825195, -0.1730957, 0.77001953, 0.24145508, 0.020904541, 0.43676758, -4.953125, -0.11187744, 0.96435547, -0.6821289, 1.3369141, -2.6289062, 0.3791504, 0.22070312, 0.88623047, 1.2001953, -0.5854492, -0.26953125, 1.9951172, -2.234375, -2.1113281, 2.1953125, -1.4423828, 0.009941101, -0.50341797, 0.28393555, -1.6796875, -1.2392578, -0.98095703, 0.052001953, 3.7265625, 0.31201172, 0.81640625, 0.43164062, -1.6845703, 0.27075195, 0.8515625, -0.87646484, -2.46875, -0.30932617, -1.703125, -0.25219727, -1.734375, -0.43701172, -1.2773438, 0.25610352, -1.2919922, 2.5898438, 0.107055664, 3.0234375, -2.4277344, -0.83935547, -0.34472656, 1.6748047, -0.21948242, 1.0185547, -0.671875, 0.074157715, -0.68310547, -2.1113281, -0.84228516, 1.6054688, -0.82421875, 0.51953125, 2.53125, 0.9711914, -0.52246094, 0.8364258, -0.0038833618, -0.29711914, -0.5878906, -1.0644531, -0.05117798, 0.5629883, -0.70166016, -2.2714844, -1.9931641, 3.6679688, -0.103759766, 0.85595703, 0.16394043, 0.8129883, 3.3027344, 0.79589844, 1.2373047, 0.28027344, 1.7539062, 0.71777344, -0.53808594, -1.7998047, 1.3808594, 1.7529297, -2.6992188, 1.9306641, 0.8691406, 1.3125, 0.6689453, 0.7128906, 1.359375, 0.15856934, -0.08703613, 3.9199219, 0.030136108, 0.41552734, -1.0966797, 1.1572266, -0.65185547, 1.9199219, 2.5957031, 1.9541016, 1.0585938, 1.8339844, 1.7089844, -0.36083984, -3.7363281, 0.27001953, 1.6210938, -0.6928711, -0.37060547, 2.6074219, 0.19763184, 1.0146484, 3.6914062, -0.37597656, -0.25976562, -1.9990234, 0.105529785, 1.9423828, -0.27490234, 0.37304688, -1.328125, -0.34521484, -0.54541016, -2.0019531, 1.9003906, -1.7890625, -2.6367188, 0.49243164, -0.6977539, -5.0585938, 1.8408203, 4.6171875, -0.69921875, -1.8378906, -1.9677734, 2.7421875, -0.8540039, -1.7060547, -0.039855957, 2.3027344, -1.0605469, 2.0644531, -0.027877808, -1.2304688, 1.2949219, -2.671875, 1.2734375, 0.74365234, -3.1738281, -1.0039062, -2.0957031, -0.008079529, -0.8623047, -0.39672852, -0.83935547, 1.1552734, -1.7871094, 1.6152344, -2.2929688, 0.6948242, -1.1679688, -2.1933594, 0.03756714, 1.3564453, 1.2617188, -0.7807617, -0.09295654, 4.6132812, 2.4433594, -2.0039062, -0.20617676, -2.6113281, 0.26245117, -1.3662109, -2.2675781, 0.21569824, 0.37548828, -1.1494141, 5.4140625, 1.0917969, 1.5322266, 3.8125, -0.8364258, -1.2109375, 0.06451416, -1.953125, -0.37231445, -1.4736328, 0.07537842, 3.5761719, 1.0693359, -1.3544922, -0.8227539, -1.2158203, -2.1015625, 0.1026001, 0.69921875, -0.41674805, -0.73291016, -2.5351562, -0.097961426, 1.0927734, 2.3984375, -0.29296875, 0.27563477, 1.0654297, 1.4804688, 3.6992188, -1.4296875, 1.2822266, 0.2055664, -0.98339844, -0.4724121, 0.097229004, -0.7807617, 0.47509766, 2.9238281, -0.8149414, -1.7519531, -0.93896484, -0.35791016, 0.3642578, -1.4414062, -1.8212891, 0.28881836, -1.1767578, 1.2910156, -0.026397705, 2.2949219, 2.1953125, -1.4238281, -1.5244141, -0.9995117, -0.8486328, -1.5927734, -0.69091797, -0.16394043, -0.17797852, -0.12719727, -0.9511719, -1.9121094, 2.3964844, -0.40576172, 0.5498047, -0.82128906, 1.7431641, -0.3894043, -0.45507812, 5.015625, -2.7109375, -0.09210205, 1.2763672, -3.6015625, -0.3701172, -1.0849609, -0.19311523, -2.3320312, 0.44848633, 0.85009766, -0.39013672, -1.1875, -0.7675781, 0.72509766, -1.9287109, -3.8671875, 0.27001953, -0.39233398, -0.8300781, 0.09246826, -0.0031166077, 2.9589844, -2.0039062, 2.3964844, 1.3476562, -0.20153809, -0.4260254, 0.8544922, -0.8642578, 0.9370117, 0.5566406, 1.3945312, 0.5107422, -1.7148438, 0.30908203, -0.7182617, 1.0673828, -2.2988281, 0.7192383, 0.022216797, 1.2519531, 0.28271484, -1.7285156, 2.5371094, 1.0917969, -0.91748047, 1.4599609, 0.48950195, -2.0292969, 0.27246094, 1.9951172, -1.3486328, 0.53125, -0.4819336, -1.4902344, 2.3320312, -1.8408203, -1.9931641, 0.6933594, 0.045196533, 0.04449463, -0.37475586, -0.01927185, 0.9082031, 1.5126953, -1.3691406, -1.2568359, -2.7910156, -0.93896484, 0.95410156, -0.8808594, -0.17150879, -0.27954102, 0.45385742, 4.5351562, -0.8076172, -1.3349609, 2.7753906, -0.5517578, -1.3427734, -0.50146484, -3.203125, -2.7871094, -0.8623047, -0.75097656, 2.0625, 2.0703125, -0.37573242, 0.4272461, -2.5625, 2.4863281, -2.8613281, 3.0136719, -1.5097656, 0.53125, 4.140625, -4.0859375, -1.2880859, -1.8818359, 1.3271484, 0.9057617, -0.4765625, 1.2792969, -1.9921875, -0.70458984, 0.43237305, -1.1816406, -1.2871094, -0.95410156, 1.8076172, 0.6245117, -1.1455078, -0.58203125, 0.07501221, -0.39038086, 0.72216797, 0.5961914, 1.6289062, -0.9658203, -1.4130859, -1.4257812, -1.6669922, 0.11895752, -0.30297852, 1.1972656, -0.6977539, 3.3164062, -1.8945312, -1.7724609, -0.0904541, -0.72802734, -2.9199219, -1.3330078, 2.2050781, 0.75927734, 0.13427734, 0.86816406, 0.70458984, -0.6660156, 3.6523438, -0.3408203, 1.1210938, 1.2099609, 0.9560547, -0.17163086, -0.44213867, -4.8398438, 0.64746094, -3.9199219, 0.57177734, -0.19580078, -1.9521484, 1.7636719, 1.7265625, -2.0566406, -1.3505859, -0.47998047, 1.3417969, 0.6567383, 1.0644531, -0.85058594, 0.18640137, -2.3671875, -3.0117188, -0.033843994, -0.3239746, -1.6181641, -0.98876953, 0.20666504, 2.9902344, -0.057739258, 2.4355469, -0.97314453, 1.0117188, -1.34375, 1.7246094, 1.0107422, 0.50927734, 0.15209961, 0.66748047, -1.25, -2.3496094, 1.3740234, -1.1640625, 0.10473633, 1.5615234, -1.1210938, -2.4472656, -1.6083984, 0.6040039, 1.0605469, 2.4023438, 1.0214844, -0.54296875, -0.109436035, 0.76660156, -1.5126953, 1.0273438, 1.9902344, 2.2988281, -3.0585938, 3.2207031, -0.67089844, -2.7050781, 1.8417969, -0.65478516, -1.2099609, -0.94873047, -1.4990234, -0.18371582, -1.0732422, -1.1962891, -1.5097656, 0.72314453, -1.4072266, 1.4921875, 0.022567749, 0.75097656, -0.9404297, 3.3222656, -0.11798096, 2.7539062, 2.9023438, 0.91259766, -1.609375, -1.2958984, -1.5966797, 0.5097656, 2.8828125, 0.05291748, -0.16235352, 0.35131836, -0.63183594, -1.3183594, 2.5507812, 1.6591797, 0.94970703, 0.7885742, 2.3027344, 4.140625, 1.7431641, 3.0585938, 0.6171875, 2.9042969, 2.0214844, 0.47729492, 0.75634766, 2.9804688, 0.88964844, 0.92089844, -0.8095703, 2.5117188, 1.6953125, -1.2753906, 0.41723633, 1.2617188, -0.16442871, -2.2988281, 2.5976562, 1.4609375, -0.004184723, 0.25952148, 0.8803711, -3.1699219, -0.9873047, -1.2011719, 0.5, 3.8613281, 0.36767578, 0.44750977, 0.6879883, 1.5078125, 2.4570312, -3.0175781, 0.7963867, 0.2980957, -0.27685547, -1.6484375, 3.3164062, 0.43701172, 2.5214844, 1.4375, 1.8574219, 0.32202148, 0.82128906, 1.3720703, -0.16833496, 0.58203125, -1.0576172, 2.5878906, -2.2382812, -1.9980469, -0.7216797, -0.6069336, -1.453125, -1.9931641, 0.06210327, 0.4169922, 2.0957031, 1.5244141, -4.8359375, -0.2006836, 1.2861328, 2.4257812, -2.5390625, 0.7055664, -1.3320312, -3.7304688, -2.296875, -0.2746582, 1.9326172, 1.2236328, 1.1884766, -2.7988281, 0.38427734, 1.1484375, 1.359375, 0.9604492, 0.078308105, -1.9501953, 1.7060547, -1.5009766, 3.9765625, 2.7109375, 3.1152344, -0.12084961, 0.15539551, 2.5585938, 0.5024414, 1.3935547, 0.51708984, -1.2216797, 0.14404297, 0.50683594, -0.29589844, -0.27856445, -1.046875, -1.6123047, -1.3378906, -0.47631836, -0.3408203, 0.7573242, -0.47021484, 1.8378906, 1.7548828, -1.0605469, -2.5976562, 2.3066406, 2.1445312, -0.5073242, -0.8388672, -0.2565918, 1.2158203, -2.1757812, -2.5351562, 1.59375, 1.0097656, 0.9941406, -0.8696289, 0.02784729, -0.69873047, -0.28100586, 0.037261963, 1.3300781, -2.8085938, -2.1464844, -0.10253906, -0.38110352, 1.5283203, 2.6542969, -1.9433594, -1.609375, -0.3154297, -1.5966797, -0.23071289, -1.7597656, -2.4199219, 1.2382812, 3.515625, 1.3251953, -0.18530273, -3.09375, -2.3476562, 1.3994141, -1.2958984, 2.9472656, 1.4492188, -1.0966797, 0.6171875, -3.4511719, 2.0195312, 0.08001709, -2.1875, 0.066345215, -0.1439209, 1.4931641, -1.0878906, 1.6386719, 2.0683594, -0.6816406, -0.8769531, 3.6210938, 5.3554688, 1.1376953, 2.3144531, 1.5966797, -0.09564209, -2.7695312, 0.3137207, -0.70166016, 1.9052734, 1.8535156, 0.019241333, 0.18835449, -1.890625, -1.2333984, -1.0683594, -1.5605469]}, "B08DTXWRB5": {"id": "B08DTXWRB5", "original": "Brand: Traeger\nName: Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag\nDescription: \nFeatures: Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\nProduct 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef\nProduct 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers\nProduct 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ\nProduct 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\n", "embedding": [-0.8925781, -0.5957031, -0.08709717, -2.5703125, 0.6010742, -1.6738281, 1.2880859, -0.69091797, -0.51660156, -0.16821289, 1.9726562, 1.4189453, 0.42626953, -2.7421875, 0.95214844, -1.3310547, -2.3144531, 1.8066406, 1.5292969, -1.0703125, 0.75634766, 0.8696289, -1.7529297, -0.8222656, 1.6289062, -0.9111328, 3.3710938, -1.1728516, 0.25634766, 1.3408203, 1.5693359, -1.1816406, 0.68603516, 1.5898438, -0.6010742, -1.1982422, -0.7236328, -0.42016602, -2.2265625, 0.12915039, -2.2773438, -0.69189453, -0.21044922, 1.7685547, -2.8203125, 0.9267578, -0.20825195, 1.6357422, -1.7285156, -0.5151367, -0.20166016, 2.046875, -1.7373047, -0.68066406, -0.19506836, 0.12841797, 0.7597656, -3.6269531, 0.05645752, -0.21520996, 1.9941406, 0.61083984, -0.09240723, 1.1582031, -2.4042969, 1.8134766, 0.5576172, -0.6435547, -1.4033203, -0.11450195, 3.2324219, 2.7734375, -0.44604492, 0.4428711, -1.0244141, 1.7255859, -1.5957031, -0.31323242, -1.0664062, -0.5644531, 1.3046875, 3.3242188, 0.48291016, -1.1435547, 2.6289062, -0.65722656, -2.2363281, 1.0029297, 0.67333984, 0.25634766, 1.5, 0.17504883, -0.95410156, -3.7910156, 2.0136719, -0.23425293, -1.1044922, 0.026184082, 1.0742188, 1.4892578, 1.8574219, -1.7539062, 0.006752014, 0.21582031, -3.7773438, -1.1162109, 0.50097656, 0.060150146, -0.7988281, 1.4316406, -2.8769531, 2.1210938, 1.7080078, 1.7783203, 2.1074219, 0.6352539, -0.20239258, -1.6748047, 0.34350586, 0.6791992, 4.0664062, -1.2324219, -0.28808594, 0.33325195, -0.33544922, 0.44506836, 0.78027344, 2.3691406, 0.9814453, -1.8125, 1.4814453, -1.6396484, 0.9604492, 0.8354492, -2.3164062, -0.6821289, 0.56103516, -1.9189453, 0.13012695, -2.0371094, -0.15393066, 1.6582031, -0.97314453, 0.9760742, -2.4199219, -0.578125, -0.54052734, 1.6835938, -1.1933594, -1.1914062, 1.1416016, -0.51708984, -0.99853516, -2.0019531, 1.2744141, 0.09802246, 0.6777344, 0.0970459, 1.0615234, 0.39697266, 0.7314453, -1.5634766, 0.51953125, 0.9770508, -1.7607422, -3.2363281, 1.0166016, 0.38061523, -0.10021973, 1.6757812, 2.0136719, -0.22265625, -1.3242188, 0.56396484, 1.0820312, -1.7714844, 1.5146484, 1.9257812, 0.39672852, -0.24682617, 1.1484375, -0.1182251, -0.20141602, -0.43017578, 0.8125, -0.32983398, 0.5395508, -0.29663086, -0.49389648, -1.6582031, 0.76953125, -0.12005615, -0.7709961, 0.5180664, 0.84277344, -2.2949219, 0.015899658, -2.4824219, 0.5708008, -2.3261719, -2.2382812, 2.0078125, -0.75927734, -0.43920898, -0.49731445, -0.7470703, -1.1445312, -0.9951172, -0.47216797, 0.7636719, 1.0703125, -2.25, 0.92626953, 0.86279297, -1.7441406, -2.5742188, 0.7451172, -0.66796875, 2.2285156, 0.34887695, -0.21728516, 0.4802246, -0.5029297, 1.3769531, -0.56591797, 0.12097168, -0.64208984, 0.53222656, -1.7617188, -1.7841797, 1.8447266, 1.3818359, -0.39746094, 0.35766602, -0.92333984, 0.15466309, 0.69433594, 0.2861328, -1.4023438, 2.7714844, -1.8447266, 0.41137695, -0.2524414, -1.4052734, 1.2099609, -0.26757812, -1.3535156, -1.0556641, 0.9814453, 1.3457031, -0.9667969, 0.1541748, 3.4492188, 2.2851562, -1.375, -0.1159668, -1.6152344, 1.4667969, -1.6035156, -1.3720703, 1.7128906, 0.09552002, 0.4873047, -0.013702393, 0.0069007874, 0.17016602, -0.8720703, -0.32910156, -0.7753906, -1.8828125, 0.29663086, -0.39331055, 0.46044922, -0.47436523, 2.5898438, 0.79345703, -0.62060547, 2.1875, -2.2460938, 1.8955078, 1.1552734, 0.072387695, 0.8745117, -0.018432617, 0.32470703, -2.0996094, 0.52001953, -1.6845703, -0.9145508, 2.1992188, 6.0820312, -0.045684814, -2.0175781, 1.4794922, -0.8666992, 1.6142578, -0.5708008, -0.80371094, -1.6455078, -0.83447266, 2.6503906, 0.63134766, 1.03125, -0.44677734, -0.90527344, -0.0070381165, 0.8613281, 0.18286133, 0.36621094, 0.5786133, -0.9790039, -0.36499023, -3.1210938, -0.33813477, -3.8808594, 0.99658203, 0.44482422, -2.8417969, 0.16430664, -1.4189453, 1.8564453, 2.2792969, 1.9228516, -2.3632812, -1.5693359, 1.0996094, -0.65722656, 1.9990234, -1.2119141, -1.3759766, 0.7861328, -1.0458984, -0.6621094, 0.30004883, -2.2382812, 1.1259766, -1.1123047, -3.5878906, 0.079956055, 0.82910156, -0.9716797, 0.6152344, -2.7304688, 1.8837891, -0.37670898, -1.6123047, 1.2216797, -0.40698242, -0.91845703, 3.1523438, -0.81591797, 1.9189453, 0.09307861, -2.7578125, -2.2148438, -0.41430664, -0.74902344, -0.45654297, 0.54248047, 0.1619873, 1.3349609, -1.9580078, -1.8476562, -2.1289062, 0.7392578, -1.0146484, 1.6806641, -1.9150391, 0.43823242, -1.8105469, 1.1904297, -0.88964844, 0.4411621, -0.5522461, -1.0410156, -0.66748047, 0.72314453, 3.9726562, 1.3193359, 1.8457031, -0.61816406, -0.9926758, -0.2529297, -1.3417969, -2.546875, -1.6972656, 0.74902344, -2.515625, -0.7290039, -3.3007812, 0.578125, -0.90185547, 0.16027832, -0.5263672, -0.14416504, 1.4287109, 1.3828125, -1.4726562, -0.9082031, 0.45874023, -0.51708984, -1.3007812, -0.8442383, 0.7114258, 0.7246094, 0.032684326, -2.3242188, 0.56347656, 0.7392578, 1.1445312, 1.7617188, -0.70947266, -0.14794922, -1.7099609, 1.7158203, -2.8164062, 3.1035156, 1.0537109, -1.3203125, 0.91552734, -0.7241211, -2.3886719, -0.4116211, -0.16308594, 3.25, 2.7421875, 1.5341797, 2.046875, 0.16271973, 0.40893555, 0.50341797, -0.47729492, -0.2866211, 0.3959961, 1.1171875, -1.4619141, -1.2402344, 0.123168945, -0.9716797, -1.4443359, -0.27514648, 2.4765625, 1.1777344, 0.2290039, 1.7001953, 0.9970703, 0.71240234, -1.4453125, 2.875, 0.046325684, -2.2265625, -2.0625, 0.00057029724, 1.3818359, 1.9169922, 0.27368164, 1.1171875, 2.2382812, 1.8496094, 0.39013672, -1.5830078, 0.19311523, 0.8486328, -0.85839844, 1.9814453, 0.98291016, -0.38085938, -0.21520996, -1.7578125, 1.9248047, -2.2050781, 0.9008789, -1.2724609, 0.7651367, 2.9550781, -0.8520508, -1.6953125, 2.6328125, 0.5620117, 0.93603516, -1.2158203, 1.5419922, -0.7963867, -0.08905029, 3.0605469, -0.31713867, -1.9511719, -3.921875, 2.234375, -1.3896484, -1.3359375, -0.0060272217, 2.7929688, 0.30151367, -0.5629883, -0.9013672, 1.7792969, -0.9785156, 0.08770752, -0.12902832, 0.37304688, 1.9121094, -1.2011719, 2.1425781, 3.4785156, -0.08337402, -1.3466797, -2.6738281, 0.08721924, -0.60791016, 1.5107422, -0.59277344, -0.16040039, -1.7675781, 1.9033203, -2.7539062, 0.44384766, 0.21765137, -3.0878906, 2.0742188, 3.4980469, -0.6411133, 0.16540527, -1.1113281, 2.4316406, 0.8183594, 0.90527344, 4.234375, -2.1132812, -0.25683594, -1.1347656, -2.765625, 2.0332031, 1.3544922, -0.91015625, 3.2519531, -0.3828125, 0.49682617, 3.3730469, -0.50683594, 0.058288574, -3.3105469, -0.5126953, 0.11212158, -1.1777344, -1.3769531, -2.4082031, 1.2607422, -0.77783203, -2.578125, -2.2871094, -0.77734375, 0.42358398, 1.6357422, -2.5410156, 1.3125, -3.1816406, 0.20275879, -1.5810547, -1.0986328, 0.6074219, -0.63183594, 0.42944336, -0.40698242, 1.4853516, 0.5058594, 0.8095703, 1.5869141, -0.34570312, -0.5131836, -0.37573242, -0.11071777, -0.121032715, 2.8125, 1.0800781, -1.7617188, -1.3134766, -2.1679688, 0.111206055, -1.3535156, -1.2216797, -1.1787109, -1.6279297, -1.2089844, 1.6669922, 1.6806641, 1.5839844, 0.19677734, 1.0869141, -0.6948242, 0.8041992, 0.91064453, -1.5449219, -1.9375, 0.8696289, -0.7294922, 0.79833984, -1.9042969, 0.37597656, -1.1679688, -0.10290527, 1.1982422, 3.1171875, 2.5703125, 1.0234375, 4.2148438, -0.7583008, -0.19506836, 0.6816406, 0.48901367, 0.4255371, 0.10949707, 1.015625, 0.107666016, 1.0761719, -1.2431641, -0.10089111, -1.8632812, 0.091552734, -0.36621094, -0.95166016, 0.8208008, -1.7978516, -0.28100586, 0.21496582, 1.5458984, -1.3564453, 2.1425781, -0.7138672, -1.6796875, 2, 2.4355469, -1.8964844, 0.86328125, 0.72558594, -2.1386719, 1.5966797, 1.2128906, 1.0341797, -2.2792969, 0.9267578, 1.4189453, 1.0166016, -0.012435913, 1.3847656, 1.4765625, 1.0351562, 0.34594727, 1.3027344, 2.1289062, 0.021377563, 1.2919922, 3.4257812, 1.2919922, 0.52197266, 1.3115234, 2.75, -0.7260742, 0.76904297, 0.84228516, -1.9072266, -0.6982422, 0.10412598, -4.3789062, -0.61279297, 1.8554688, -0.7651367, 0.56347656, -0.7685547, -1.7783203, -0.15283203, -0.4958496, -1.5029297, 0.7060547, -1.9306641, 1.2978516, 2.6875, -1.1806641, -1.6386719, -0.6220703, 3.75, -2.5683594, -0.15368652, 0.5830078, 0.92822266, 0.3491211, -2, -0.38427734, -1.3134766, -2.2929688, -0.43554688, 2.0273438, -0.009567261, 1.6542969, 4.6132812, -2.4140625, 1.1337891, -3.5742188, 1.2119141, -4.0429688, -0.7373047, 3.0878906, -1.6933594, 1.8242188, 0.12597656, -0.014808655, 1.8339844, 1.9755859, 1.2158203, -2.1367188, -1.8457031, 1.7041016, -2.2734375, -3.7363281, -3.2070312, 0.47460938, 0.44970703, -0.55615234, 1.4873047, -1.8300781, 0.51123047, -0.89697266, -0.41381836, -1.2001953, -0.3256836, -5.6803226e-05, 0.5551758, -1.875, -0.5395508, 0.0005979538, -1.9765625, 1.0166016, 1.5214844, 2.1855469, -2.1171875, 0.20629883, 0.17822266, -0.13635254, 0.6801758, -0.39208984, 0.038757324, -0.24719238, 0.31982422, 2.3769531, -1.0458984, 2.8496094, -1.2441406, 0.5541992, 1.0546875, -1.8398438, 1.7060547, -1.6367188, -0.921875, -0.39624023, -0.4892578, 2.6679688, -0.17041016, -0.4501953, 0.08392334, -1.7636719, -0.50683594, -0.38183594, 2.0371094, 0.45629883, 1.0097656, 1.6123047, 0.62158203, 0.12408447, -2.8554688, -1.7050781, -1.8349609, -2.0566406, -1.0429688, -0.10546875, 2.4707031, 2.765625, -2.078125, 1.3417969, 1.2285156, 0.6201172, -0.32348633, -0.9633789, -2.0878906, 2.0253906, 0.8691406, -0.1472168, -2.9824219, -0.074035645, 1.2353516, 3.2636719, -0.3696289, 0.051696777, -0.35180664, -2.2714844, -3.6464844, 1.3242188, 2.2167969, -0.078063965, 1.1894531, -0.045806885, -0.42919922, 2.9355469, 0.19018555, 1.1152344, 0.6152344, 2.0996094, -0.18701172, 1.4384766, -1.1650391, -2.4726562, 0.08258057, -2.5488281, -0.484375, 1.3115234, 0.18933105, 0.32177734, 0.41186523, 1.0849609, -0.33447266, -0.20300293, -0.97216797, 0.24182129, -1.1845703, 0.41381836, -2.0917969, 2.609375, 1.1484375, 3.5058594, 2.5410156, 0.28833008, -1.7880859, -1.0263672, -0.10028076, 0.32641602, 1.7148438, -2.5546875, 1.0927734, 0.6074219, -0.6616211, -2.2773438, 1.9550781, -0.84277344, 1.4501953, 1.2480469, 2.453125, 3.5703125, 2.5, 3.2011719, 0.46777344, 1.7617188, 1.2314453, -0.3942871, 1.3251953, 1.9453125, 0.6616211, 3.2519531, -0.68603516, 1.5498047, -0.6230469, 1.2958984, 0.033081055, -2.3300781, -0.8564453, -2.3515625, 3.5039062, 0.83447266, 1.2148438, -3.5175781, 1.4404297, -2.0585938, -0.1541748, -0.63623047, -2.5507812, -0.5810547, 1.1074219, -1.1025391, 0.6333008, -0.42333984, -0.7446289, -4.2539062, 0.1932373, 0.00491333, -0.7998047, 1.4384766, 1.2363281, 0.66503906, -1.4160156, -0.31445312, -0.29614258, 3.5429688, 1.1015625, 0.16564941, -0.80810547, -1.7392578, 0.8666992, 0.6894531, -1.5839844, -1.9833984, 0.67871094, 0.22143555, -1.8349609, -2.609375, 1.8886719, -2.09375, 2.8671875, 3.3085938, -3.9433594, 2.3125, -0.39697266, -0.20092773, -1.3105469, -0.2788086, -0.18603516, -0.040802002, -2.8808594, 1.6552734, 1.9814453, 1.5507812, -1.0146484, -0.76220703, -0.33935547, 0.015914917, 2.8300781, 0.7011719, 1.21875, -0.6845703, -0.8354492, -0.27807617, 2.6386719, -0.07684326, -0.9213867, 0.7314453, -1.5761719, 3.9414062, 1.2363281, 0.042633057, 0.23547363, -2.0722656, -0.8613281, -2.0175781, 0.58447266, -0.4736328, -4.5507812, -0.3642578, 0.6665039, -0.0625, -0.5888672, -1.1005859, 3.9257812, -0.42797852, 0.7402344, 3.9394531, -1.7167969, -0.51660156, 1.0214844, 0.79052734, -0.3408203, -0.40405273, 1.1855469, -1.6904297, -1.0117188, 2.5488281, 2.8691406, -0.99121094, -2.7480469, 0.42773438, 1.6484375, -0.07208252, -0.54345703, 0.67529297, 0.36376953, -2.203125, 1.7480469, -1.2460938, 1.5537109, 2.2578125, 0.18078613, -0.4921875, -0.008522034, -3.2441406, -2.9375, -0.5288086, -0.4572754, 1.1757812, 2.3339844, 0.5576172, 2.6132812, -0.734375, -2.4804688, -1.7617188, -2.7910156, 3.0410156, 0.6347656, -1.7792969, -0.8666992, 0.23791504, -0.19128418, 1.7753906, -2.1484375, 1.2773438, -3.1738281, -0.93066406, -0.44482422, 1.7617188, 0.6689453, 2.0429688, -0.43066406, 3.8066406, -0.16503906, 0.25195312, 2.1542969, 3.6796875, 0.96191406, -1.4980469, 0.61865234, -0.9008789, 0.19799805, -1.4716797, -1.6308594, -1.5507812, 0.19616699, -0.75146484, -1.2890625, -3.6425781]}, "B072KLKZD7": {"id": "B072KLKZD7", "original": "Brand: Slim Jim\nName: Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)\nDescription: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
    Fresh and original products directly from the manufacturer
    We provide excellent customer service. Your question will be answered in less than 12 hrs.
    Customer is our first priority\nFeatures: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )\n", "embedding": [-1.3427734, 1.4931641, 1.5761719, 0.096069336, -2.65625, 0.51904297, -0.69140625, -0.029937744, 0.89404297, 0.11151123, 1.9580078, -0.9682617, 0.7519531, -1.3828125, -0.6279297, -1.9814453, -1.2558594, 0.14538574, 0.7265625, 1.7197266, 0.68066406, 0.6816406, -0.4116211, -0.1352539, 0.50683594, 1.0078125, 2.7421875, 0.25805664, 0.056396484, -0.27978516, 1.5371094, -2.0664062, -0.1619873, 1.1035156, -0.35107422, -0.40795898, 0.3479004, -1.6943359, -2.3808594, -0.15258789, -0.76220703, -1.1669922, 0.72509766, 1.0966797, -2.1953125, -1.1455078, -1.796875, -0.6191406, -1.7978516, -0.31811523, 1.3701172, 1.4697266, -0.4633789, 0.7138672, 0.15112305, 1.9208984, -0.42114258, -2.640625, -0.7363281, -0.9316406, 2.515625, -2.2539062, 1.8632812, 0.03466797, 0.1105957, -2.5097656, -1.5341797, -1.9179688, -0.23095703, -2.0703125, 2.2128906, 1.7333984, -3.1699219, 0.23205566, -2.6210938, 2.015625, -5.2851562, 3.9160156, -0.91064453, -1.6308594, 1.8857422, 0.7792969, -1.0302734, 0.23754883, 0.98779297, -1.078125, 0.8989258, -0.2861328, 2.5917969, 3.1035156, -0.8515625, 0.82177734, 0.18981934, -4.28125, 1.4599609, -2.28125, -0.42871094, 1.0039062, 0.28295898, 0.45825195, 1.21875, -0.5649414, 0.20593262, 1.2255859, 1.2636719, -0.32104492, 1.5878906, 2.4863281, -0.57666016, 1.0380859, -3.0488281, 2.9921875, 2.4960938, -0.7866211, -0.24450684, 0.9394531, 1.4863281, -2.3320312, 1.3925781, -0.0028266907, -1.5136719, 0.0011224747, 0.22009277, -0.11407471, 0.52734375, -0.49658203, -1.5761719, 0.05731201, 0.31591797, -0.40454102, -1.7998047, 1.4003906, 2.4804688, -3.0332031, -2.3125, -2.5625, -1.3525391, -0.5449219, -1.1308594, -0.35107422, -2.4746094, 1.4677734, -0.4104004, -0.63720703, -0.45996094, 0.5473633, -1.6035156, -1.8505859, 2.5742188, -3.2578125, -0.24084473, 1.7382812, -0.8105469, -1.1318359, 1.1152344, -2.8261719, 0.33154297, 2.7402344, -0.6064453, 0.23815918, -1.671875, -0.6611328, -2.0800781, 3.7890625, -1.0546875, -2.9921875, -1.5048828, 0.3244629, 1.8945312, 1.7783203, 1.0107422, -1.3320312, 0.14746094, -0.9589844, 1.0605469, -2.0273438, -0.15478516, 1.484375, 0.49316406, 0.6010742, -1.8291016, -2.7382812, 1.4384766, 0.9453125, 1.5273438, -1.8173828, -1.9101562, -0.50878906, -1.4746094, 0.10986328, 1.5712891, -1.5654297, -1.8408203, 2.2871094, -0.17248535, 2.4765625, 0.4182129, -2.2011719, 3.0351562, 0.98095703, -2.1796875, 0.41357422, 3.2011719, 0.09552002, -1.0283203, -0.85791016, 1.6123047, -0.8276367, 1.0351562, 3.0644531, -0.37304688, 0.32543945, 2.8613281, 0.45874023, -1.0693359, -2.4492188, 0.38720703, -0.5761719, 1.578125, 1.4052734, -2.0371094, 0.58984375, -0.7988281, -1.4775391, -0.80126953, 2.7421875, 2.3066406, -0.06347656, -0.115356445, -0.43188477, 2.7597656, 1.3115234, 1.2773438, -0.55126953, -0.47680664, 1.2998047, 2.7460938, -2.3769531, -0.44091797, 1.9394531, -1.9462891, -0.15917969, -4.2226562, -2.2890625, -1.0351562, 1.5039062, -1.6005859, -0.3791504, 0.58935547, -1.2734375, 0.48364258, 1.9960938, 3.234375, -2.4960938, 0.105773926, 0.27026367, -0.86279297, 1.1054688, 0.21899414, -1.3994141, 2.8730469, -0.52978516, 0.3413086, 2.7714844, -1.6894531, 0.52001953, 3.8808594, 2.5644531, -0.671875, -3.2265625, 3.4921875, -0.042938232, 0.78564453, -1.0107422, 1.4658203, -0.67529297, 1.6630859, 2.0039062, 0.1472168, 1.3798828, -0.41723633, -0.52441406, -0.18920898, 0.13586426, -1.7285156, -1.9707031, -0.29223633, -0.3552246, 2.8183594, -0.7167969, 3.8203125, -0.10180664, 1.0732422, 1.5048828, -1.0996094, 1.0927734, 0.20214844, -0.68847656, -0.71777344, -1.5595703, 0.79345703, 0.2841797, 2.2050781, 1.8964844, 1.6650391, 2.1582031, 0.8232422, 0.30615234, -0.32543945, -1.0507812, -0.045684814, 0.2614746, -0.74365234, 0.40161133, 0.24353027, 0.17456055, -1.5771484, -0.2475586, 1.7460938, 0.22753906, -0.40673828, 1.2666016, 1.7421875, -1.3857422, 0.88427734, 0.8671875, -2.5683594, 1.1591797, 1.4267578, 0.5395508, 1.0732422, 0.9169922, 0.9042969, -2.1738281, -2.5742188, -1.3642578, -3.0683594, -4.0546875, 1.8535156, 2.4296875, -2.1230469, 1.2099609, -2.7871094, 1.3564453, 0.7939453, -0.14123535, 0.9584961, -0.37402344, -1.2871094, -0.86572266, -1.3369141, -0.64697266, 1.7392578, -5.3710938, -0.36035156, -0.56591797, 1.2226562, -0.40454102, -2.0390625, 1.3925781, 0.26782227, -3.4394531, 0.14294434, -0.34814453, -0.3095703, 1.6904297, 0.11743164, -2.6621094, 0.65771484, -0.89404297, 1.3193359, -1.1484375, 1.0302734, -1.1181641, -0.76904297, -0.46289062, 2.703125, 2.7246094, -1.2773438, -2.3828125, 1.2041016, 0.14123535, 0.61572266, -1.8427734, -0.23266602, -1.7314453, 2.1933594, -0.6640625, -0.19482422, -2.5117188, 1.1591797, -1.2841797, -1.0585938, -1.8447266, 0.23303223, -0.3479004, -0.09295654, -1.3613281, -3.0234375, -0.11791992, -1.0898438, -0.28833008, -0.8457031, -0.61328125, -0.31835938, -1.9267578, 0.7241211, 1.5078125, -1.0654297, -1.6923828, 1.8847656, -1.9648438, 0.1772461, 0.140625, 1.1767578, -0.73291016, 5.2617188, 0.5180664, -2.4648438, -2.1796875, 0.80566406, -1.0253906, -0.80371094, -2.96875, 1.5136719, 1.2246094, 1.0683594, 1.2685547, 2.9980469, -0.21850586, 0.63916016, -1.2324219, 0.0859375, 2.1289062, -0.20617676, 1.8808594, -0.9970703, 0.8310547, 1.8701172, -0.56591797, 1.7724609, -1.9072266, 1.921875, 1.8876953, -0.29882812, -0.74316406, -3.2167969, -1.5126953, 1.1269531, -1.8291016, -1.1699219, 2.1582031, -0.56884766, 1.1035156, -1.5058594, 1.5234375, 1.3623047, 0.13452148, 3.0273438, 0.19030762, 0.1116333, -2.078125, 4.4101562, 0.12658691, 0.4765625, -0.34643555, -0.09277344, -0.6196289, 1.4902344, 1.3515625, 0.18273926, 0.35864258, -0.63378906, 0.051361084, 2.1386719, -3.6757812, -2.5507812, 2.0996094, 0.4296875, -1.7255859, -2.4804688, 3.0429688, -1.1318359, -1.5341797, -0.38500977, -4.0039062, -1.6054688, -2.6621094, 1.9248047, -2.8242188, 0.22399902, -0.55322266, -1.9716797, -3.3183594, -0.0070381165, -2.71875, 3.2617188, 0.77197266, 1.28125, 1.5615234, -4.53125, 2.1796875, 1.2089844, -0.94433594, 0.85058594, -2.6152344, -0.9111328, 0.39916992, -1.6630859, 0.07092285, -1.8789062, -2.1054688, 2.5839844, 2.8496094, -0.40039062, -2.0703125, -0.95458984, 1.8798828, -2.8125, 1.2197266, 1.7373047, -1.8203125, 1.7373047, 0.8911133, 4.5742188, 2.2167969, 3.5683594, 1.578125, -0.48217773, -0.42797852, -1.1201172, -2.5234375, 1.265625, 1.2626953, 0.8027344, 3.5039062, -1.5634766, -0.6850586, 4.0742188, 2.5136719, 2.5859375, 0.6665039, -1.2558594, -1.4189453, 0.23132324, -0.07733154, 0.3930664, -1.8037109, -1.2451172, 0.2512207, 0.79052734, -3.5488281, 1.25, 0.09680176, -3.3554688, 1.1035156, 1.4658203, 0.87402344, -2.5742188, 0.20751953, 3.3320312, 0.57470703, 0.16430664, 1.2226562, 1.5195312, 2.4121094, -0.1430664, -2.7226562, 0.4716797, 1.3154297, -1.9248047, 0.8173828, 0.9663086, 2.09375, -0.30810547, 0.67822266, -0.21813965, -1.921875, -1.3496094, -1.6269531, 1.1132812, -0.9194336, 0.30151367, -0.7866211, 0.99121094, 2.0117188, 1.4404297, 0.7763672, 2.078125, -0.2355957, -1.6191406, 0.5673828, 1.1425781, -0.07342529, -1.5722656, -0.2705078, 0.9682617, -1.5126953, 1.6621094, -1.2148438, 1.1796875, 0.9838867, 1.7939453, 0.39160156, -1.6015625, 3.0039062, 1.3046875, -1.6298828, 0.014076233, -0.9038086, 2.1816406, -0.15893555, -0.31567383, 0.9189453, 1.1738281, -0.31225586, 1.8232422, -0.006652832, 1.8945312, 3.3652344, 0.7807617, -1.9716797, 0.37231445, -0.77734375, 0.7114258, 2.6855469, -0.12658691, 4.5976562, -1.5410156, 1.1982422, 2.4511719, 0.7475586, -0.73291016, 2.1699219, 1.4814453, -2.7949219, 1.8222656, 2.0625, 3.0488281, -0.26586914, 1.0234375, 2.7753906, 3.0546875, -1.0097656, -0.84814453, 0.50097656, 1.3857422, -0.17138672, -0.095581055, -0.13195801, 0.49853516, 0.12225342, 3.0039062, 1.0244141, -1.2714844, 0.53271484, 1.1796875, 1.8203125, 1.0556641, 0.14160156, -2.2304688, 1.4863281, 0.65478516, -1.2988281, -0.41333008, 0.051452637, -0.010604858, -0.37524414, -0.08111572, -0.9482422, 0.97802734, 0.058441162, 0.11450195, -1.7773438, 0.3942871, -0.4794922, 0.6796875, 0.0680542, -0.7133789, -1.0712891, 1.7255859, 0.31396484, 0.38745117, 0.48388672, -0.18127441, -1.4101562, -1.6484375, -0.1541748, -1.6845703, 1.5732422, -0.796875, 0.44848633, 0.84472656, 0.5917969, 1.8232422, -0.8745117, 1.140625, -2.8828125, -0.96777344, -2.953125, 0.35424805, -0.27197266, 0.7104492, -0.42504883, -1.0341797, 1.3095703, 0.6035156, 0.8129883, -0.2944336, -3.8378906, -0.41479492, 0.008552551, -2.5332031, -2.4433594, -2.3378906, 0.90234375, 2.9746094, -3.6308594, -0.3479004, -1.7617188, -0.117492676, -2.0292969, 0.47827148, -2.2714844, 0.99365234, 0.70166016, -1.0341797, -0.17089844, -2.7636719, -0.71777344, -2.8359375, -1.1386719, 0.1652832, 1.8613281, 1.0722656, -2.8417969, -0.59716797, 0.15332031, -0.7026367, 1.6962891, -2.2167969, 1.1689453, -0.31347656, 2.3359375, 0.09637451, 2.8535156, -3.5683594, 1.1689453, -2.2246094, -1.0888672, 2.6542969, -3.1308594, -2.0351562, -2.5800781, -0.14550781, 3.1992188, -0.78564453, -2.2480469, 0.39672852, -1.3154297, 0.4243164, 1.3291016, 3.046875, 0.78564453, -2.0507812, 1.9326172, 0.48632812, 0.9135742, -2.2421875, -0.00818634, -1.8476562, -2.1933594, -1.9296875, 0.037017822, 0.5644531, 0.41967773, -3.5195312, -0.5024414, 1.140625, 0.2993164, 0.64941406, 0.9199219, -1.6708984, 1.6210938, 0.1352539, -1.5429688, -2.109375, -0.90234375, 4.125, 2.0175781, 0.08508301, -0.94921875, -0.15161133, -1.4765625, -0.8510742, -0.27807617, 3.4042969, 4.875, 2.4414062, 0.04071045, 0.057891846, 1.6015625, -1.0351562, 0.1920166, 1.7001953, 2.8828125, -0.9873047, 1.390625, -0.13635254, -0.86035156, 0.00041985512, 1.171875, -0.1394043, 2.2832031, -2.3261719, -0.28735352, -1.0849609, 1.3212891, 0.5371094, -2.9414062, 0.94677734, 0.6953125, -1.5654297, 0.066101074, 0.93847656, 1.5078125, 2.2402344, 0.6386719, 1.1201172, -0.13745117, -0.65722656, -0.14257812, -0.17163086, 1.3203125, -1.7128906, -0.91308594, 2.4414062, 0.1739502, 0.05331421, -0.7192383, 2.859375, 2.2714844, -1.4208984, 0.3540039, 0.25805664, -0.081848145, 1.6435547, -1.2070312, 0.5708008, 0.8251953, 1.8730469, -3.2539062, 0.21496582, 1.7734375, -0.8046875, 2.6269531, 1.2011719, 1.8378906, 0.00655365, 0.6308594, -2.1171875, -0.30932617, 1.4541016, 1.1230469, 0.77734375, 0.58496094, 0.066833496, -1.0976562, 0.46142578, 0.140625, -2.6738281, -1.2939453, -1.1572266, 1.5371094, 2.3242188, 3.3359375, -0.4584961, -1.7861328, 1.7177734, -2.2402344, -1.2607422, 0.46923828, -1.8388672, -1.8447266, 0.1541748, 0.8095703, 0.17028809, 2.5214844, 1.3076172, 0.91308594, -0.92578125, -2.2285156, -0.6201172, -0.2442627, -0.72314453, -0.12194824, -1.8525391, -1.5039062, -0.6088867, -2.0019531, -6.0390625, -1.5712891, 0.9067383, 1.2734375, 0.94433594, 3.71875, -1.6962891, 1.5136719, 0.5263672, -0.8129883, 1.1269531, -2.4628906, -2.9882812, 1.3945312, -2.2558594, 1.7148438, 1.5722656, 0.82666016, -0.17797852, -1.1337891, 0.38500977, 1.5126953, -2.1171875, 0.6738281, -0.07385254, 0.07366943, 1.1650391, -2.0351562, 2.5351562, -1.7792969, 2.3828125, 1.7138672, 0.19567871, 1.3378906, 0.43139648, 3.453125, -0.21716309, -1.1240234, -2.2519531, 1.3671875, 1.4238281, -1.3886719, -2.4648438, -0.0017433167, -2.4003906, -1.4404297, -2.8417969, 1.3017578, 0.6821289, 0.4831543, 2.0507812, 0.30981445, -0.6689453, 2.1367188, 2.015625, 0.62402344, -0.10949707, -0.67285156, -1.3847656, 1.6083984, -0.04284668, 1.7255859, 0.59814453, 0.3017578, -1.1210938, -0.9536133, -1.6132812, 0.21325684, -2.1054688, -1.1777344, 2.1757812, -2.2792969, 1.2578125, 0.062805176, -0.8774414, -0.5541992, 0.014183044, -2.1816406, -0.23217773, 0.24353027, -2.1738281, 0.87402344, -1.9482422, 0.035369873, 2.546875, -0.984375, 1.0058594, 1.4833984, -2.5, -2.3457031, -1.3388672, -1.8076172, -1.9746094, -1.4501953, 0.57177734, 0.38208008, 0.80322266, 1.6523438, 2.890625, -3.1816406, -1.5439453, 3.1308594, -0.12854004, -0.40356445, 0.44335938, 1.6826172, 1.7060547, 4.1132812, -0.8745117, 1.6962891, 1.0292969, 1.1757812, 2.6855469, -2.140625, 2.1738281, 1.0703125, 1.3134766, -1.3173828, -3.9628906, -1.1083984, -0.26538086, 1.3398438, -0.6767578, -1.5136719]}, "B07748V3PL": {"id": "B07748V3PL", "original": "Brand: Fasmov\nName: Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios\nDescription: This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you're getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nFeatures: Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills.\nGrill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls.\nReusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season.\nEasy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nProtect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It's a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.\n", "embedding": [-0.5883789, 0.9868164, 1.2177734, -1.421875, -0.32128906, 0.5332031, 0.59814453, -1.4560547, -0.7133789, 2.7851562, -0.94677734, 0.12670898, 0.73583984, -3.9472656, 1.8515625, -0.44506836, 0.6245117, 2.0234375, 3.0136719, 0.29907227, 1.2441406, 0.30786133, -1.4824219, -0.20178223, 1.7617188, -1.078125, 3.9921875, -0.04324341, 0.17907715, 1.5, 0.6977539, 1.9804688, 1.515625, 3.4941406, -3.0742188, -1.0644531, 0.08520508, 3.7011719, 2.140625, 1.4697266, -1.9160156, -4.296875, 3.375, 2.2109375, -2.4863281, 0.7661133, 0.32348633, 1.1660156, 1.03125, -4.8164062, 0.73339844, 0.030670166, 1.4003906, -0.19714355, -2.7011719, 1.7246094, 0.14660645, -1.6152344, 1.1875, -0.061706543, -0.5756836, -0.81152344, 1.1640625, 2.1582031, -0.5708008, -0.35302734, -0.25268555, -2.2167969, 2.7246094, -1.0839844, -0.38867188, -1.1972656, -1.3066406, 0.47192383, 1.2568359, -0.87841797, -0.2775879, 1.3486328, -0.23083496, -2.0800781, -1.7470703, 4.3828125, -1.0439453, -1.5302734, -0.7270508, -1.2587891, -3.8417969, 0.6694336, 0.45629883, -0.23339844, 0.60498047, 2.6210938, -1.5615234, -3.7109375, 0.53759766, -3.0332031, 1.4785156, -0.17956543, 0.14440918, 2.9472656, -0.8198242, 0.36572266, 0.14526367, 1.7382812, -4.0351562, -1.7900391, 2.2265625, -0.64746094, 1.9257812, 0.6347656, 0.7836914, 1.5097656, -0.070617676, -0.26489258, 3.0917969, 1.7314453, 0.45239258, 1.0537109, 0.38452148, 3.1679688, 4.2070312, 1.9765625, -0.81884766, -1.5712891, 1.5488281, -0.9897461, 1.0742188, 1.8935547, 1.4003906, -1.3457031, 1.7490234, -0.54003906, -0.31225586, 0.37109375, -0.25341797, -0.5751953, -0.35205078, -1.4101562, -2.2480469, 0.96875, -1.0107422, -0.17883301, 0.8613281, -1.1787109, -2.9257812, 0.046875, -2.0390625, 2.4492188, -1.1855469, -3.5214844, -1.6650391, -1.5712891, 0.6308594, -0.39233398, -1.0009766, -2.1953125, 0.95703125, -2.3652344, 0.8510742, 1.9599609, 2.109375, -2.234375, 0.9194336, -0.55810547, 1.3046875, -4.375, -1.5800781, 0.6386719, -0.5571289, 1.6474609, 0.6123047, -1.4541016, 1.9433594, -0.87597656, 1.046875, -0.359375, 1.2617188, 2.234375, -0.12298584, -1.1875, 1.4863281, -0.71533203, -0.9111328, 1.3896484, 0.80029297, -0.025115967, -1.1728516, -1.5820312, 0.26098633, -1.3623047, -0.8222656, 2.6757812, -2.015625, -0.09326172, -1.9248047, -1.3876953, -1.6699219, -1.8017578, 1.7978516, -1.0996094, -0.11639404, -1.1025391, -2.34375, -0.7084961, -2.8730469, -2.1894531, -1.4492188, 2.5332031, 2.3105469, -0.5678711, -0.47753906, -1.5507812, 0.06060791, 0.8203125, -0.66503906, -0.05279541, -1.0605469, 0.4572754, 1.8046875, 2.0253906, -1.2734375, 0.022720337, -0.24267578, 3.8789062, -2.390625, 1.3525391, -0.07147217, 2.0136719, -1.7919922, -1.4169922, 1.8144531, 0.4807129, -0.012001038, -0.6040039, -1.0654297, 0.7548828, 2.3359375, 0.13110352, -0.83496094, -0.78515625, -0.8203125, -2.0605469, -1.9013672, -0.79003906, -0.16333008, 0.66552734, 0.09326172, 2.1386719, 0.19885254, -0.7729492, -1.0205078, 2.9277344, 0.9506836, -0.52441406, -0.14831543, 0.83935547, 0.9902344, -0.7133789, -2.59375, -0.42236328, -1.3349609, 0.26635742, -1.3125, 2.609375, 0.23608398, -1.4863281, 2.6855469, 1.5214844, -3.2578125, -2.0664062, -0.22009277, 0.94970703, -0.48046875, -0.7104492, 1.2314453, -0.30908203, -1.7265625, 1.5634766, 1.5898438, -1.03125, -0.76171875, 3.2910156, 0.80859375, -0.4831543, -1.359375, -1.0859375, -1.1728516, -0.8886719, 0.20678711, -0.28955078, 3.0234375, 1.0332031, -1.1650391, 1.8691406, 0.87402344, 0.828125, 3.2714844, 0.2800293, -1.5166016, -0.5107422, 1.2783203, 2.4296875, -2.1386719, 1.3398438, -0.6352539, 0.014419556, 2.1269531, -2.5761719, -0.71484375, 2.8007812, -0.4650879, 1.0244141, 2.9804688, 0.15942383, -1.9013672, -1.6044922, 1.8144531, -0.52441406, 0.6669922, -0.7607422, 0.5292969, -0.2915039, -0.41601562, -2.1347656, -1.6806641, 1.2246094, 0.068481445, -0.1697998, 0.55126953, -0.02255249, 0.6333008, -1.78125, 0.6977539, 0.030456543, -1.3916016, -2.9824219, -1.6533203, -0.058776855, -1.7763672, 1.0527344, 0.07727051, -0.4506836, -1.0488281, -2.1035156, -0.7246094, -3.2792969, -1.1865234, -1.9287109, -0.96728516, 0.9819336, 0.4008789, 0.6489258, 2.0195312, -2.6875, 0.7895508, 1.7773438, -1.1191406, 1.3212891, -2.7617188, 1.640625, -1.4628906, 1.0839844, 1.3964844, -0.78125, 1.2636719, 1.1865234, -2.328125, -4.3359375, 2.15625, -0.14233398, -0.93408203, -1.453125, -0.86328125, -0.84375, -2.5273438, -2.6679688, 0.73339844, 2.328125, 1.2011719, 0.22619629, -1.9052734, -1.2460938, 0.72753906, 1.9257812, -1.3466797, -1.2285156, -0.33496094, -1.4951172, 0.3474121, -1.5332031, -0.7519531, -1.4824219, 2.1699219, 0.057556152, 2.6621094, 0.028457642, 3.6582031, -1.1962891, -0.6791992, 0.06719971, 2.2773438, -0.9482422, 2.0976562, -2.1640625, -1.8916016, 1.1210938, -1.4619141, -1.7177734, 1.375, -1.7607422, 0.9116211, 0.53271484, -0.47216797, 0.9526367, -0.49194336, -2.1132812, -0.6977539, -1.0605469, -0.50634766, 0.62109375, -0.40771484, -3.0507812, -0.5395508, -1.7548828, 3.3496094, -0.85253906, 0.58691406, 0.98535156, -2.1074219, 2.2753906, 0.78271484, -1.5117188, -0.27612305, 1.9257812, 1.7353516, -1.5791016, -0.08874512, 2.3984375, -0.22314453, -1.8769531, 0.23510742, -0.29345703, -0.7207031, 0.828125, -0.56640625, -0.7451172, 0.80029297, 0.42236328, 3.4570312, -0.99560547, 1.8378906, -1.2236328, -0.46972656, 1.1484375, 0.80810547, 1.6171875, 1.0253906, 1.3349609, 0.57177734, 1.4755859, -1.9462891, -1.2880859, 0.4128418, 1.8027344, 0.42944336, -1.265625, 2.1796875, -0.14831543, 0.5913086, 2.5195312, -1.0419922, 0.69140625, -1.0380859, 0.8515625, 0.91064453, -0.6201172, 0.5029297, -1.9023438, -1.0361328, -0.59521484, -3.734375, 0.6303711, -2.1777344, -1.4511719, 1.1455078, -2.7578125, -2.3945312, -1.2900391, 2.9121094, -0.99316406, -1.8544922, -1.4013672, 2.6640625, 0.87646484, -1.8828125, 0.7998047, 1.9960938, 0.23962402, 0.8803711, 0.9628906, -1.8710938, 1.4931641, -2.7246094, 0.84716797, 2.0097656, -0.28857422, -1.1708984, -0.5332031, 1.3974609, 0.15539551, -0.36791992, 1.0947266, 1.9970703, -0.91552734, -0.11981201, -2.5292969, 0.7783203, 0.18896484, -1.8769531, -0.28344727, 1.6074219, 1.1738281, 1.5869141, 0.3935547, 2.5136719, 1.0654297, -1.1699219, 1.1904297, -3.3496094, -0.1227417, -0.11035156, -3.9023438, -1.8691406, -0.15039062, -2.6855469, 3.7949219, -0.5097656, 1.5742188, 2.4238281, -0.35424805, -2.3027344, -0.5644531, -1.5976562, -1.5605469, -1.9951172, 0.26953125, 3.4785156, 0.5253906, -2.1132812, 0.0006341934, -0.9663086, -1.0986328, 1.6972656, 0.08911133, 1.8896484, -0.6098633, -2.375, -0.5854492, 0.7290039, -0.09185791, 0.08996582, 1.0029297, 0.72802734, 2.0664062, 1.1728516, -0.9482422, 0.41186523, -0.82470703, -1.3125, -1.3183594, 0.4555664, -1.6328125, -0.8823242, 2.6054688, -1.4394531, -2.7324219, -0.011528015, -0.8535156, 2.1679688, -0.91503906, -1.6308594, 2.3730469, -0.31396484, -0.3317871, 1.0966797, 2.8847656, 0.8457031, -1.0771484, -1.3300781, -0.12249756, -0.6591797, -2.25, -1.3232422, -1.0722656, -0.078063965, 0.16833496, -2.0859375, -0.7548828, 1.2265625, -1.7060547, 0.5644531, -1.9023438, 2.7695312, 0.2849121, 0.7626953, 3.3789062, -2.484375, -0.18713379, 1.5917969, -3.4882812, -0.5029297, 1.8671875, 0.033416748, -3.453125, 1.2167969, 1.5712891, -1.7783203, -1.4453125, -1.0917969, 0.66503906, 0.19848633, -3.4101562, 2.6777344, 0.5205078, -0.012374878, 1.3046875, -0.6401367, 1.6816406, -0.234375, 2.1464844, 2.0488281, -0.53564453, 0.4711914, 2.6582031, -0.30810547, 0.49682617, 3.0253906, 1.6416016, 0.76660156, -0.36279297, -0.1352539, 0.5097656, 0.20080566, -4.2851562, 1.5126953, -0.71240234, -0.5673828, -0.4165039, -0.8261719, 2.3027344, 3.125, -0.06878662, -0.033935547, -0.66796875, -2.3730469, 1.6445312, 1.4375, -1.2988281, -0.08557129, -0.4951172, -2.3925781, 2.5449219, -1.5341797, -2.5117188, 0.0692749, 1.2587891, -0.0970459, 0.8432617, -1.3662109, 0.17578125, 2.7265625, -1.6201172, 0.20495605, -0.49169922, -2.6953125, 0.921875, -0.48754883, 0.23291016, -1.2783203, -0.044311523, 2.9941406, -3.2382812, -2.1835938, 1.6171875, 0.7109375, 0.11907959, 0.31225586, -1.1523438, -3.0644531, -2.3457031, -0.7216797, 0.40600586, 2.3613281, 0.79296875, 0.6508789, -1.7978516, 1.1591797, -1.3222656, 2.9667969, -2.7460938, -0.17663574, 3.2734375, -2.5683594, -0.76220703, -1.3398438, 1.6210938, 1.9804688, 0.16992188, 2.625, 0.4658203, -0.2397461, -0.43188477, -1.4082031, -1.515625, -0.8847656, -1.0566406, -0.29003906, 0.11279297, -0.73095703, -0.90966797, 0.3244629, 0.51171875, 2.1152344, 2.3242188, 0.35058594, -2.2402344, -2.8125, -2.5878906, -1.5996094, -0.65527344, 0.61621094, 0.82910156, 2.9160156, -2.6757812, -2.8789062, -0.65966797, -1.0283203, -1.6474609, -2.1679688, 2.1210938, 0.53125, 0.8286133, 0.7480469, 0.5966797, -1.7119141, 3.6171875, -0.21862793, 0.66748047, 2.2304688, -0.9506836, -0.09564209, -0.53466797, -1.8828125, 0.5917969, -4.8125, 1.3808594, 0.07470703, -2.0566406, 2.6035156, 2.0761719, -0.6328125, -0.19128418, 0.08074951, 0.9296875, 1.7773438, 0.007633209, -1.0976562, -0.24694824, -3.4804688, -3.7910156, -0.3330078, -1.7353516, -1.9707031, -3.3886719, -0.5107422, 2.03125, 0.39331055, 2.7988281, 1.2724609, 1.7070312, -2.2207031, 0.55566406, 0.40161133, 0.28076172, 0.5332031, -0.79345703, -2.1816406, -3.0058594, 1.34375, 1.6210938, 1.3261719, 0.72509766, -0.4645996, -2.1015625, 0.76660156, 2.2207031, 1.1308594, 1.421875, 0.046844482, 1.5322266, 0.5341797, -1.2177734, -2.4804688, 3.3535156, 0.6821289, 3.6699219, -0.8413086, 2.9609375, 1.5283203, -3.6699219, 1.6679688, -0.6088867, -0.05355835, -0.5419922, -1.6806641, 0.3010254, -1.8857422, -0.89453125, -1.9423828, 0.6616211, -1.9101562, 0.7246094, 0.6801758, -0.88378906, -0.35961914, 1.9082031, -0.4885254, 0.7788086, 2.5410156, -1.8349609, 0.11291504, 0.42456055, -1.4501953, -0.07470703, 1.9375, -0.14477539, -2.6640625, -0.54589844, -0.67089844, -1.9863281, -0.07623291, -1.1005859, 0.9160156, 1.1826172, 1.5175781, 4.5898438, 0.91259766, 2.2714844, 1.2011719, 3.953125, 2.9921875, 0.85546875, 1.9638672, 3.6875, 1.0673828, 1.0380859, -0.006855011, 0.7089844, 2.0976562, -0.22814941, 0.3984375, 1.1376953, 0.96240234, -1.9169922, 1.8564453, -0.48413086, 0.84765625, 0.038848877, 2.7519531, -2.8203125, -0.44750977, -1.0263672, 1.1826172, 1.9042969, -0.52441406, 0.7685547, 1.734375, 2.9726562, 0.5180664, -2.3046875, 1.6650391, 0.72558594, -0.85498047, -0.78759766, 3.4140625, 0.045562744, 1.9345703, -1.453125, 1.3457031, 0.14343262, 2.0722656, -0.017227173, -0.56152344, 0.43579102, -1.6445312, -0.03466797, -0.13269043, -2.3652344, -2.6269531, 1.296875, -0.7246094, -1.1875, 0.01411438, 1.7275391, 1.3564453, 0.08050537, -3.3984375, -0.96875, 0.78466797, 2.1035156, -1.8232422, 1.0341797, -1.5615234, -3.0761719, -1.2216797, 0.9692383, 0.64501953, 1.3798828, 1.65625, -0.91796875, 2.6015625, 0.8300781, 1.3759766, -0.5395508, 0.6948242, -2.15625, 1.8154297, -0.060699463, 3.2734375, 2.3613281, 2.0898438, -0.42626953, 0.8588867, 2.9277344, 0.63671875, 0.22363281, 0.09100342, 0.60791016, 0.5, 0.078308105, -0.6982422, -1.5195312, -0.03451538, -1.0087891, -1.4130859, -0.26342773, -3.6972656, 0.10632324, 1.0791016, 0.4482422, 1.0615234, -1.1523438, -1.1455078, 3.2539062, 2.6757812, -1.8388672, 0.30541992, 0.328125, -0.15917969, -1.5830078, -0.48632812, 0.1665039, 1.0458984, -0.8354492, -0.4350586, -0.041931152, -1.1513672, -1.0234375, -0.44555664, 1.5292969, -1.7714844, -0.6508789, 0.14245605, -0.31420898, 1.5898438, 2.0644531, 0.091674805, -0.86621094, -0.66552734, -0.78466797, -0.053375244, 0.31591797, -1.7011719, 0.49560547, 3.7167969, 2.7910156, -1.546875, -1.0625, -1.6845703, 1.2021484, 1.3125, 3.7128906, -1.1171875, -0.8408203, -0.5708008, -1.2207031, 2.4921875, 2.3828125, -1.4921875, -0.51660156, -0.9682617, 0.7211914, -1.8916016, 0.8364258, 0.66064453, -0.32421875, -0.64501953, 3.1953125, 3.9199219, 1.3193359, 1.8271484, 1.5917969, 0.16125488, -1.3525391, 0.6923828, 0.7578125, 2.0976562, 1.3974609, 0.9160156, 0.040405273, -0.81591797, -0.4411621, -2.8652344, -0.47753906]}, "B08V4RVHJ6": {"id": "B08V4RVHJ6", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux 2.64 GPM Propane Gas Water Heater, Outdoor Camping Tankless Water Heater with Digital Display, White\nDescription:

    Features

    1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

    2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

    3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

    4.Turn the ignition on with 2 \"D\" batteries whenever electricity is not accessible!

    5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

    6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

    7.The system also works great on modified water systems with a 12 volt water pump.

    8.The gas water heater can't be used for drinking water.

    Warm Remind:\u00a0 Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

    Easy to Use

    Get the instant portable gas hot water system that's easy to set up and use!

    1. Install the gas water heater on the wall.

    2. Connect the gas cylinder with the supplied gas hose and regulator.

    3. Connect shower hose and shower head to the hot water outlet.

    4. Connect water hose to the water inlet.

    5. Insert 2 size \"D\" batteries.

    6. Enjoy instant hot water!

    What's in the Box

    1 x Camplux 10L tankless water heater

    1 x 5\"ft 3 setting ON/OFF shower head and pedestal

    1 x 5\"ft CSA approval gas hose & regulator

    ") + utility.drop_collection(collection_name) + + collection = Collection(collection_name, data=None, schema=collection_schema) + + bbq_embeddings = json.load(open("/bbq_embeddings.json", "r")) + docs = list(bbq_embeddings.values()) + + records = [ + [doc["id"] for doc in docs], + [doc["original"] for doc in docs], + [doc["embedding"] for doc in docs], + ] + + collection.insert(records) + + collection.create_index( + field_name="summary", + index_params={ + "metric_type": "L2", + "index_type": "IVF_FLAT", + "params": {"nlist": 128}, + }, + ) + + connections.disconnect("default") + print("Finished loading data") diff --git a/milvus/docker-compose.yml b/milvus/docker-compose.yml new file mode 100644 index 000000000..ed1db163e --- /dev/null +++ b/milvus/docker-compose.yml @@ -0,0 +1,72 @@ +version: '3.5' + +services: + etcd: + container_name: milvus-etcd + image: quay.io/coreos/etcd:v3.5.5 + environment: + - ETCD_AUTO_COMPACTION_MODE=revision + - ETCD_AUTO_COMPACTION_RETENTION=1000 + - ETCD_QUOTA_BACKEND_BYTES=4294967296 + - ETCD_SNAPSHOT_COUNT=50000 + volumes: + - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd + command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd + + minio: + container_name: milvus-minio + image: minio/minio:RELEASE.2023-03-20T20-16-18Z + environment: + MINIO_ACCESS_KEY: minioadmin + MINIO_SECRET_KEY: minioadmin + volumes: + - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data + command: minio server /minio_data + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] + interval: 30s + timeout: 20s + retries: 3 + + standalone: + container_name: milvus-standalone + image: milvusdb/milvus:v2.2.11 + command: ["milvus", "run", "standalone"] + environment: + ETCD_ENDPOINTS: etcd:2379 + MINIO_ADDRESS: minio:9000 + volumes: + - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus + ports: + - "19530:19530" + - "9091:9091" + depends_on: + - "etcd" + - "minio" + + data-loader: + image: python:3.11 + depends_on: + minio: + condition: service_healthy + standalone: + condition: service_started + etcd: + condition: service_started + environment: + - MILVUS_CLUSTER_HOST=standalone + - MILVUS_CLUSTER_PORT=19530 + - MILVUS_COLLECTION=bbq + volumes: + - ./dev/bbq_embeddings.json:/bbq_embeddings.json + - ./dev/load_data.py:/load_data.py + command: > + bash -c " + pip install --no-cache-dir pymilvus && + python /load_data.py" + profiles: + - tools + +networks: + default: + name: milvus \ No newline at end of file diff --git a/milvus/poetry.lock b/milvus/poetry.lock new file mode 100644 index 000000000..ba70b6b1f --- /dev/null +++ b/milvus/poetry.lock @@ -0,0 +1,1449 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "backoff" +version = "2.2.1" +description = "Function decoration for backoff and retry" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, + {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "cohere" +version = "4.18.0" +description = "" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "cohere-4.18.0-py3-none-any.whl", hash = "sha256:26b5be3f93c0046be7fd89b2e724190e10f9fceac8bcf8f22581368a1f3af2e4"}, + {file = "cohere-4.18.0.tar.gz", hash = "sha256:ed3d5703384412312fd827e669364b2f0eb3678a1206987cb3e1d98b88409c31"}, +] + +[package.dependencies] +aiohttp = ">=3.0,<4.0" +backoff = ">=2.0,<3.0" +fastavro = "1.7.4" +importlib_metadata = ">=6.0,<7.0" +requests = ">=2.25.0,<3.0.0" +urllib3 = ">=1.26,<3" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "environs" +version = "9.5.0" +description = "simplified environment variable parsing" +optional = false +python-versions = ">=3.6" +files = [ + {file = "environs-9.5.0-py2.py3-none-any.whl", hash = "sha256:1e549569a3de49c05f856f40bce86979e7d5ffbbc4398e7f338574c220189124"}, + {file = "environs-9.5.0.tar.gz", hash = "sha256:a76307b36fbe856bdca7ee9161e6c466fd7fcffc297109a118c59b54e27e30c9"}, +] + +[package.dependencies] +marshmallow = ">=3.0.0" +python-dotenv = "*" + +[package.extras] +dev = ["dj-database-url", "dj-email-url", "django-cache-url", "flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)", "pytest", "tox"] +django = ["dj-database-url", "dj-email-url", "django-cache-url"] +lint = ["flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)"] +tests = ["dj-database-url", "dj-email-url", "django-cache-url", "pytest"] + +[[package]] +name = "fastavro" +version = "1.7.4" +description = "Fast read/write of AVRO files" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastavro-1.7.4-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7568e621b94e061974b2a96d70670d09910e0a71482dd8610b153c07bd768497"}, + {file = "fastavro-1.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4ec994faf64b743647f0027fcc56b01dc15d46c0e48fa15828277cb02dbdcd6"}, + {file = "fastavro-1.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:727fdc1ddd12fcc6addab0b6df12ef999a6babe4b753db891f78aa2ee33edc77"}, + {file = "fastavro-1.7.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b2f0cb3f7795fcb0042e0bbbe51204c28338a455986d68409b26dcbde64dd69a"}, + {file = "fastavro-1.7.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bb0a8b5016a99be4b8ce3550889a1bd968c0fb3f521bcfbae24210c6342aee0c"}, + {file = "fastavro-1.7.4-cp310-cp310-win_amd64.whl", hash = "sha256:1d2040b2bf3dc1a75170ea44d1e7e09f84fb77f40ef2e6c6b9f2eaf710557083"}, + {file = "fastavro-1.7.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5542423f46bb7fc9699c467cbf151c2713aa6976ef14f4f5ec3532d80d0bb616"}, + {file = "fastavro-1.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec396e6ab6b272708c8b9a0142df01fff4c7a1f168050f292ab92fdaee0b0257"}, + {file = "fastavro-1.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39b10d68c03371b79f461feca1c6c7e9d3f6aea2e9c7472b25cd749c57562aa1"}, + {file = "fastavro-1.7.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f94d5168ec72f3cfcf2181df1c46ad240dc1fcf361717447d2c5237121b9df55"}, + {file = "fastavro-1.7.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bad3dc279ed4ce747989259035cb3607f189ef7aff40339202f9321ca7f83d0b"}, + {file = "fastavro-1.7.4-cp311-cp311-win_amd64.whl", hash = "sha256:8480ff444d9c7abd0bf121dd68656bd2115caca8ed28e71936eff348fde706e0"}, + {file = "fastavro-1.7.4-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:bd3d669f4ec6915c88bb80b7c14e01d2c3ceb93a61de5dcf33ff13972bba505e"}, + {file = "fastavro-1.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a312b128536b81bdb79f27076f513b998abe7d13ee6fe52e99bc01f7ad9b06a"}, + {file = "fastavro-1.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:487054d1419f1bfa41e7f19c718cbdbbb254319d3fd5b9ac411054d6432b9d40"}, + {file = "fastavro-1.7.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d2897fe7d1d5b27dcd33c43d68480de36e55a0e651d7731004a36162cd3eed9e"}, + {file = "fastavro-1.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6d318b49fd648a1fd93394411fe23761b486ac65dadea7c52dbeb0d0bef30221"}, + {file = "fastavro-1.7.4-cp37-cp37m-win_amd64.whl", hash = "sha256:a117c3b122a8110c6ab99b3e66736790b4be19ceefb1edf0e732c33b3dc411c8"}, + {file = "fastavro-1.7.4-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:0cca15e1a1f829e40524004342e425acfb594cefbd3388b0a5d13542750623ac"}, + {file = "fastavro-1.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9211ec7a18a46a2aee01a2a979fd79f05f36b11fdb1bc469c9d9fd8cec32579"}, + {file = "fastavro-1.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f16bde6b5fb51e15233bfcee0378f48d4221201ba45e497a8063f6d216b7aad7"}, + {file = "fastavro-1.7.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aeca55c905ff4c667f2158564654a778918988811ae3eb28592767edcf5f5c4a"}, + {file = "fastavro-1.7.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b244f3abc024fc043d6637284ba2ffee5a1291c08a0f361ea1af4d829f66f303"}, + {file = "fastavro-1.7.4-cp38-cp38-win_amd64.whl", hash = "sha256:b64e394c87cb99d0681727e1ae5d3633906a72abeab5ea0c692394aeb5a56607"}, + {file = "fastavro-1.7.4-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:8c8115bdb1c862354d9abd0ea23eab85793bbff139087f2607bd4b83e8ae07ab"}, + {file = "fastavro-1.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b27dd08f2338a478185c6ba23308002f334642ce83a6aeaf8308271efef88062"}, + {file = "fastavro-1.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f087c246afab8bac08d86ef21be87cbf4f3779348fb960c081863fc3d570412c"}, + {file = "fastavro-1.7.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b4077e17a2bab37af96e5ca52e61b6f2b85e4577e7a2903f6814642eb6a834f7"}, + {file = "fastavro-1.7.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:776511cecf2ea9da4edd0de5015c1562cd9063683cf94f79bc9e20bab8f06923"}, + {file = "fastavro-1.7.4-cp39-cp39-win_amd64.whl", hash = "sha256:a7ea5565fe2c145e074ce9ba75fafd5479a86b34a8dbd00dd1835cf192290e14"}, + {file = "fastavro-1.7.4.tar.gz", hash = "sha256:6450f47ac4db95ec3a9e6434fec1f8a3c4c8c941de16205832ca8c67dd23d0d2"}, +] + +[package.extras] +codecs = ["lz4", "python-snappy", "zstandard"] +lz4 = ["lz4"] +snappy = ["python-snappy"] +zstandard = ["zstandard"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "grpcio" +version = "1.56.0" +description = "HTTP/2-based RPC framework" +optional = false +python-versions = ">=3.7" +files = [ + {file = "grpcio-1.56.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:fb34ace11419f1ae321c36ccaa18d81cd3f20728cd191250be42949d6845bb2d"}, + {file = "grpcio-1.56.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:008767c0aed4899e657b50f2e0beacbabccab51359eba547f860e7c55f2be6ba"}, + {file = "grpcio-1.56.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:17f47aeb9be0da5337f9ff33ebb8795899021e6c0741ee68bd69774a7804ca86"}, + {file = "grpcio-1.56.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43c50d810cc26349b093bf2cfe86756ab3e9aba3e7e681d360930c1268e1399a"}, + {file = "grpcio-1.56.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:187b8f71bad7d41eea15e0c9812aaa2b87adfb343895fffb704fb040ca731863"}, + {file = "grpcio-1.56.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:881575f240eb5db72ddca4dc5602898c29bc082e0d94599bf20588fb7d1ee6a0"}, + {file = "grpcio-1.56.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c243b158dd7585021d16c50498c4b2ec0a64a6119967440c5ff2d8c89e72330e"}, + {file = "grpcio-1.56.0-cp310-cp310-win32.whl", hash = "sha256:8b3b2c7b5feef90bc9a5fa1c7f97637e55ec3e76460c6d16c3013952ee479cd9"}, + {file = "grpcio-1.56.0-cp310-cp310-win_amd64.whl", hash = "sha256:03a80451530fd3b8b155e0c4480434f6be669daf7ecba56f73ef98f94222ee01"}, + {file = "grpcio-1.56.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:64bd3abcf9fb4a9fa4ede8d0d34686314a7075f62a1502217b227991d9ca4245"}, + {file = "grpcio-1.56.0-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:fdc3a895791af4addbb826808d4c9c35917c59bb5c430d729f44224e51c92d61"}, + {file = "grpcio-1.56.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:4f84a6fd4482e5fe73b297d4874b62a535bc75dc6aec8e9fe0dc88106cd40397"}, + {file = "grpcio-1.56.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14e70b4dda3183abea94c72d41d5930c333b21f8561c1904a372d80370592ef3"}, + {file = "grpcio-1.56.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b5ce42a5ebe3e04796246ba50357f1813c44a6efe17a37f8dc7a5c470377312"}, + {file = "grpcio-1.56.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:8219f17baf069fe8e42bd8ca0b312b875595e43a70cabf397be4fda488e2f27d"}, + {file = "grpcio-1.56.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:defdd14b518e6e468466f799aaa69db0355bca8d3a5ea75fb912d28ba6f8af31"}, + {file = "grpcio-1.56.0-cp311-cp311-win32.whl", hash = "sha256:50f4daa698835accbbcc60e61e0bc29636c0156ddcafb3891c987e533a0031ba"}, + {file = "grpcio-1.56.0-cp311-cp311-win_amd64.whl", hash = "sha256:59c4e606993a47146fbeaf304b9e78c447f5b9ee5641cae013028c4cca784617"}, + {file = "grpcio-1.56.0-cp37-cp37m-linux_armv7l.whl", hash = "sha256:b1f4b6f25a87d80b28dd6d02e87d63fe1577fe6d04a60a17454e3f8077a38279"}, + {file = "grpcio-1.56.0-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:c2148170e01d464d41011a878088444c13413264418b557f0bdcd1bf1b674a0e"}, + {file = "grpcio-1.56.0-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:0409de787ebbf08c9d2bca2bcc7762c1efe72eada164af78b50567a8dfc7253c"}, + {file = "grpcio-1.56.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66f0369d27f4c105cd21059d635860bb2ea81bd593061c45fb64875103f40e4a"}, + {file = "grpcio-1.56.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38fdf5bd0a1c754ce6bf9311a3c2c7ebe56e88b8763593316b69e0e9a56af1de"}, + {file = "grpcio-1.56.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:79d4c5911d12a7aa671e5eb40cbb50a830396525014d2d6f254ea2ba180ce637"}, + {file = "grpcio-1.56.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5d2fc471668a7222e213f86ef76933b18cdda6a51ea1322034478df8c6519959"}, + {file = "grpcio-1.56.0-cp37-cp37m-win_amd64.whl", hash = "sha256:991224fd485e088d3cb5e34366053691a4848a6b7112b8f5625a411305c26691"}, + {file = "grpcio-1.56.0-cp38-cp38-linux_armv7l.whl", hash = "sha256:c6f36621aabecbaff3e70c4d1d924c76c8e6a7ffec60c331893640a4af0a8037"}, + {file = "grpcio-1.56.0-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:1eadd6de258901929223f422ffed7f8b310c0323324caf59227f9899ea1b1674"}, + {file = "grpcio-1.56.0-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:72836b5a1d4f508ffbcfe35033d027859cc737972f9dddbe33fb75d687421e2e"}, + {file = "grpcio-1.56.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f92a99ab0c7772fb6859bf2e4f44ad30088d18f7c67b83205297bfb229e0d2cf"}, + {file = "grpcio-1.56.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa08affbf672d051cd3da62303901aeb7042a2c188c03b2c2a2d346fc5e81c14"}, + {file = "grpcio-1.56.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:e2db108b4c8e29c145e95b0226973a66d73ae3e3e7fae00329294af4e27f1c42"}, + {file = "grpcio-1.56.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8674fdbd28266d8efbcddacf4ec3643f76fe6376f73283fd63a8374c14b0ef7c"}, + {file = "grpcio-1.56.0-cp38-cp38-win32.whl", hash = "sha256:bd55f743e654fb050c665968d7ec2c33f03578a4bbb163cfce38024775ff54cc"}, + {file = "grpcio-1.56.0-cp38-cp38-win_amd64.whl", hash = "sha256:c63bc5ac6c7e646c296fed9139097ae0f0e63f36f0864d7ce431cce61fe0118a"}, + {file = "grpcio-1.56.0-cp39-cp39-linux_armv7l.whl", hash = "sha256:c0bc9dda550785d23f4f025be614b7faa8d0293e10811f0f8536cf50435b7a30"}, + {file = "grpcio-1.56.0-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:d596408bab632ec7b947761e83ce6b3e7632e26b76d64c239ba66b554b7ee286"}, + {file = "grpcio-1.56.0-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:76b6e6e1ee9bda32e6e933efd61c512e9a9f377d7c580977f090d1a9c78cca44"}, + {file = "grpcio-1.56.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7beb84ebd0a3f732625124b73969d12b7350c5d9d64ddf81ae739bbc63d5b1ed"}, + {file = "grpcio-1.56.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83ec714bbbe9b9502177c842417fde39f7a267031e01fa3cd83f1ca49688f537"}, + {file = "grpcio-1.56.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:4feee75565d1b5ab09cb3a5da672b84ca7f6dd80ee07a50f5537207a9af543a4"}, + {file = "grpcio-1.56.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b4638a796778329cc8e142e4f57c705adb286b3ba64e00b0fa91eeb919611be8"}, + {file = "grpcio-1.56.0-cp39-cp39-win32.whl", hash = "sha256:437af5a7673bca89c4bc0a993382200592d104dd7bf55eddcd141cef91f40bab"}, + {file = "grpcio-1.56.0-cp39-cp39-win_amd64.whl", hash = "sha256:4241a1c2c76e748023c834995cd916570e7180ee478969c2d79a60ce007bc837"}, + {file = "grpcio-1.56.0.tar.gz", hash = "sha256:4c08ee21b3d10315b8dc26f6c13917b20ed574cdbed2d2d80c53d5508fdcc0f2"}, +] + +[package.extras] +protobuf = ["grpcio-tools (>=1.56.0)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "importlib-metadata" +version = "6.8.0" +description = "Read metadata from Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, +] + +[package.dependencies] +zipp = ">=0.5" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +perf = ["ipython"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "marshmallow" +version = "3.20.1" +description = "A lightweight library for converting complex datatypes to and from native Python datatypes." +optional = false +python-versions = ">=3.8" +files = [ + {file = "marshmallow-3.20.1-py3-none-any.whl", hash = "sha256:684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c"}, + {file = "marshmallow-3.20.1.tar.gz", hash = "sha256:5d2371bbe42000f2b3fb5eaa065224df7d8f8597bc19a1bbfa5bfe7fba8da889"}, +] + +[package.dependencies] +packaging = ">=17.0" + +[package.extras] +dev = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)", "pytest", "pytz", "simplejson", "tox"] +docs = ["alabaster (==0.7.13)", "autodocsumm (==0.2.11)", "sphinx (==7.0.1)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] +lint = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)"] +tests = ["pytest", "pytz", "simplejson"] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "numpy" +version = "1.25.1" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:77d339465dff3eb33c701430bcb9c325b60354698340229e1dff97745e6b3efa"}, + {file = "numpy-1.25.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d736b75c3f2cb96843a5c7f8d8ccc414768d34b0a75f466c05f3a739b406f10b"}, + {file = "numpy-1.25.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a90725800caeaa160732d6b31f3f843ebd45d6b5f3eec9e8cc287e30f2805bf"}, + {file = "numpy-1.25.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c6c9261d21e617c6dc5eacba35cb68ec36bb72adcff0dee63f8fbc899362588"}, + {file = "numpy-1.25.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0def91f8af6ec4bb94c370e38c575855bf1d0be8a8fbfba42ef9c073faf2cf19"}, + {file = "numpy-1.25.1-cp310-cp310-win32.whl", hash = "sha256:fd67b306320dcadea700a8f79b9e671e607f8696e98ec255915c0c6d6b818503"}, + {file = "numpy-1.25.1-cp310-cp310-win_amd64.whl", hash = "sha256:c1516db588987450b85595586605742879e50dcce923e8973f79529651545b57"}, + {file = "numpy-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b82655dd8efeea69dbf85d00fca40013d7f503212bc5259056244961268b66e"}, + {file = "numpy-1.25.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e8f6049c4878cb16960fbbfb22105e49d13d752d4d8371b55110941fb3b17800"}, + {file = "numpy-1.25.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41a56b70e8139884eccb2f733c2f7378af06c82304959e174f8e7370af112e09"}, + {file = "numpy-1.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5154b1a25ec796b1aee12ac1b22f414f94752c5f94832f14d8d6c9ac40bcca6"}, + {file = "numpy-1.25.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38eb6548bb91c421261b4805dc44def9ca1a6eef6444ce35ad1669c0f1a3fc5d"}, + {file = "numpy-1.25.1-cp311-cp311-win32.whl", hash = "sha256:791f409064d0a69dd20579345d852c59822c6aa087f23b07b1b4e28ff5880fcb"}, + {file = "numpy-1.25.1-cp311-cp311-win_amd64.whl", hash = "sha256:c40571fe966393b212689aa17e32ed905924120737194b5d5c1b20b9ed0fb171"}, + {file = "numpy-1.25.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3d7abcdd85aea3e6cdddb59af2350c7ab1ed764397f8eec97a038ad244d2d105"}, + {file = "numpy-1.25.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1a180429394f81c7933634ae49b37b472d343cccb5bb0c4a575ac8bbc433722f"}, + {file = "numpy-1.25.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d412c1697c3853c6fc3cb9751b4915859c7afe6a277c2bf00acf287d56c4e625"}, + {file = "numpy-1.25.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20e1266411120a4f16fad8efa8e0454d21d00b8c7cee5b5ccad7565d95eb42dd"}, + {file = "numpy-1.25.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f76aebc3358ade9eacf9bc2bb8ae589863a4f911611694103af05346637df1b7"}, + {file = "numpy-1.25.1-cp39-cp39-win32.whl", hash = "sha256:247d3ffdd7775bdf191f848be8d49100495114c82c2bd134e8d5d075fb386a1c"}, + {file = "numpy-1.25.1-cp39-cp39-win_amd64.whl", hash = "sha256:1d5d3c68e443c90b38fdf8ef40e60e2538a27548b39b12b73132456847f4b631"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:35a9527c977b924042170a0887de727cd84ff179e478481404c5dc66b4170009"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d3fe3dd0506a28493d82dc3cf254be8cd0d26f4008a417385cbf1ae95b54004"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:012097b5b0d00a11070e8f2e261128c44157a8689f7dedcf35576e525893f4fe"}, + {file = "numpy-1.25.1.tar.gz", hash = "sha256:9a3a9f3a61480cc086117b426a8bd86869c213fc4072e606f01c4e4b66eb92bf"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pandas" +version = "2.0.3" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"}, + {file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"}, + {file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"}, + {file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"}, + {file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"}, + {file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"}, + {file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"}, + {file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"}, + {file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"}, + {file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"}, + {file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"}, +] + +[package.dependencies] +numpy = {version = ">=1.23.2", markers = "python_version >= \"3.11\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.1" + +[package.extras] +all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] +aws = ["s3fs (>=2021.08.0)"] +clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] +compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] +computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"] +feather = ["pyarrow (>=7.0.0)"] +fss = ["fsspec (>=2021.07.0)"] +gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"] +hdf5 = ["tables (>=3.6.1)"] +html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"] +mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"] +parquet = ["pyarrow (>=7.0.0)"] +performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"] +plot = ["matplotlib (>=3.6.1)"] +postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] +spss = ["pyreadstat (>=1.1.2)"] +sql-other = ["SQLAlchemy (>=1.4.16)"] +test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.6.3)"] + +[[package]] +name = "protobuf" +version = "4.23.4" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.23.4-cp310-abi3-win32.whl", hash = "sha256:5fea3c64d41ea5ecf5697b83e41d09b9589e6f20b677ab3c48e5f242d9b7897b"}, + {file = "protobuf-4.23.4-cp310-abi3-win_amd64.whl", hash = "sha256:7b19b6266d92ca6a2a87effa88ecc4af73ebc5cfde194dc737cf8ef23a9a3b12"}, + {file = "protobuf-4.23.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8547bf44fe8cec3c69e3042f5c4fb3e36eb2a7a013bb0a44c018fc1e427aafbd"}, + {file = "protobuf-4.23.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:fee88269a090ada09ca63551bf2f573eb2424035bcf2cb1b121895b01a46594a"}, + {file = "protobuf-4.23.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:effeac51ab79332d44fba74660d40ae79985901ac21bca408f8dc335a81aa597"}, + {file = "protobuf-4.23.4-cp37-cp37m-win32.whl", hash = "sha256:c3e0939433c40796ca4cfc0fac08af50b00eb66a40bbbc5dee711998fb0bbc1e"}, + {file = "protobuf-4.23.4-cp37-cp37m-win_amd64.whl", hash = "sha256:9053df6df8e5a76c84339ee4a9f5a2661ceee4a0dab019e8663c50ba324208b0"}, + {file = "protobuf-4.23.4-cp38-cp38-win32.whl", hash = "sha256:e1c915778d8ced71e26fcf43c0866d7499891bca14c4368448a82edc61fdbc70"}, + {file = "protobuf-4.23.4-cp38-cp38-win_amd64.whl", hash = "sha256:351cc90f7d10839c480aeb9b870a211e322bf05f6ab3f55fcb2f51331f80a7d2"}, + {file = "protobuf-4.23.4-cp39-cp39-win32.whl", hash = "sha256:6dd9b9940e3f17077e820b75851126615ee38643c2c5332aa7a359988820c720"}, + {file = "protobuf-4.23.4-cp39-cp39-win_amd64.whl", hash = "sha256:0a5759f5696895de8cc913f084e27fd4125e8fb0914bb729a17816a33819f474"}, + {file = "protobuf-4.23.4-py3-none-any.whl", hash = "sha256:e9d0be5bf34b275b9f87ba7407796556abeeba635455d036c7351f7c183ef8ff"}, + {file = "protobuf-4.23.4.tar.gz", hash = "sha256:ccd9430c0719dce806b93f89c91de7977304729e55377f872a92465d548329a9"}, +] + +[[package]] +name = "pymilvus" +version = "2.2.14" +description = "Python Sdk for Milvus" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pymilvus-2.2.14-py3-none-any.whl", hash = "sha256:c19c757832d46cb2688078cb09fbcaa2c8dea1acebcb3b9a087505c0435d10cc"}, + {file = "pymilvus-2.2.14.tar.gz", hash = "sha256:c89b983823b8fb8d9e0ee30977b272e93c31056622d9cea942ec259130bf6e36"}, +] + +[package.dependencies] +environs = "<=9.5.0" +grpcio = ">=1.49.1,<=1.56.0" +pandas = ">=1.2.4" +protobuf = ">=3.20.0" +ujson = ">=2.0.0" + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pytz" +version = "2023.3" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tzdata" +version = "2023.3" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, + {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, +] + +[[package]] +name = "ujson" +version = "5.8.0" +description = "Ultra fast JSON encoder and decoder for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "ujson-5.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4511560d75b15ecb367eef561554959b9d49b6ec3b8d5634212f9fed74a6df1"}, + {file = "ujson-5.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9399eaa5d1931a0ead49dce3ffacbea63f3177978588b956036bfe53cdf6af75"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4e7bb7eba0e1963f8b768f9c458ecb193e5bf6977090182e2b4f4408f35ac76"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40931d7c08c4ce99adc4b409ddb1bbb01635a950e81239c2382cfe24251b127a"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d53039d39de65360e924b511c7ca1a67b0975c34c015dd468fca492b11caa8f7"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bdf04c6af3852161be9613e458a1fb67327910391de8ffedb8332e60800147a2"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a70f776bda2e5072a086c02792c7863ba5833d565189e09fabbd04c8b4c3abba"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f26629ac531d712f93192c233a74888bc8b8212558bd7d04c349125f10199fcf"}, + {file = "ujson-5.8.0-cp310-cp310-win32.whl", hash = "sha256:7ecc33b107ae88405aebdb8d82c13d6944be2331ebb04399134c03171509371a"}, + {file = "ujson-5.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:3b27a8da7a080add559a3b73ec9ebd52e82cc4419f7c6fb7266e62439a055ed0"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:193349a998cd821483a25f5df30b44e8f495423840ee11b3b28df092ddfd0f7f"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ddeabbc78b2aed531f167d1e70387b151900bc856d61e9325fcdfefb2a51ad8"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ce24909a9c25062e60653073dd6d5e6ec9d6ad7ed6e0069450d5b673c854405"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27a2a3c7620ebe43641e926a1062bc04e92dbe90d3501687957d71b4bdddaec4"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b852bdf920fe9f84e2a2c210cc45f1b64f763b4f7d01468b33f7791698e455e"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:20768961a6a706170497129960762ded9c89fb1c10db2989c56956b162e2a8a3"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e0147d41e9fb5cd174207c4a2895c5e24813204499fd0839951d4c8784a23bf5"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e3673053b036fd161ae7a5a33358ccae6793ee89fd499000204676baafd7b3aa"}, + {file = "ujson-5.8.0-cp311-cp311-win32.whl", hash = "sha256:a89cf3cd8bf33a37600431b7024a7ccf499db25f9f0b332947fbc79043aad879"}, + {file = "ujson-5.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3659deec9ab9eb19e8646932bfe6fe22730757c4addbe9d7d5544e879dc1b721"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:102bf31c56f59538cccdfec45649780ae00657e86247c07edac434cb14d5388c"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:299a312c3e85edee1178cb6453645217ba23b4e3186412677fa48e9a7f986de6"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2e385a7679b9088d7bc43a64811a7713cc7c33d032d020f757c54e7d41931ae"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad24ec130855d4430a682c7a60ca0bc158f8253ec81feed4073801f6b6cb681b"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16fde596d5e45bdf0d7de615346a102510ac8c405098e5595625015b0d4b5296"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6d230d870d1ce03df915e694dcfa3f4e8714369cce2346686dbe0bc8e3f135e7"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9571de0c53db5cbc265945e08f093f093af2c5a11e14772c72d8e37fceeedd08"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7cba16b26efe774c096a5e822e4f27097b7c81ed6fb5264a2b3f5fd8784bab30"}, + {file = "ujson-5.8.0-cp312-cp312-win32.whl", hash = "sha256:48c7d373ff22366eecfa36a52b9b55b0ee5bd44c2b50e16084aa88b9de038916"}, + {file = "ujson-5.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:5ac97b1e182d81cf395ded620528c59f4177eee024b4b39a50cdd7b720fdeec6"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2a64cc32bb4a436e5813b83f5aab0889927e5ea1788bf99b930fad853c5625cb"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e54578fa8838ddc722539a752adfce9372474114f8c127bb316db5392d942f8b"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9721cd112b5e4687cb4ade12a7b8af8b048d4991227ae8066d9c4b3a6642a582"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d9707e5aacf63fb919f6237d6490c4e0244c7f8d3dc2a0f84d7dec5db7cb54c"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0be81bae295f65a6896b0c9030b55a106fb2dec69ef877253a87bc7c9c5308f7"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae7f4725c344bf437e9b881019c558416fe84ad9c6b67426416c131ad577df67"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9ab282d67ef3097105552bf151438b551cc4bedb3f24d80fada830f2e132aeb9"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:94c7bd9880fa33fcf7f6d7f4cc032e2371adee3c5dba2922b918987141d1bf07"}, + {file = "ujson-5.8.0-cp38-cp38-win32.whl", hash = "sha256:bf5737dbcfe0fa0ac8fa599eceafae86b376492c8f1e4b84e3adf765f03fb564"}, + {file = "ujson-5.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:11da6bed916f9bfacf13f4fc6a9594abd62b2bb115acfb17a77b0f03bee4cfd5"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:69b3104a2603bab510497ceabc186ba40fef38ec731c0ccaa662e01ff94a985c"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9249fdefeb021e00b46025e77feed89cd91ffe9b3a49415239103fc1d5d9c29a"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2873d196725a8193f56dde527b322c4bc79ed97cd60f1d087826ac3290cf9207"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a4dafa9010c366589f55afb0fd67084acd8added1a51251008f9ff2c3e44042"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a42baa647a50fa8bed53d4e242be61023bd37b93577f27f90ffe521ac9dc7a3"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f3554eaadffe416c6f543af442066afa6549edbc34fe6a7719818c3e72ebfe95"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:fb87decf38cc82bcdea1d7511e73629e651bdec3a43ab40985167ab8449b769c"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:407d60eb942c318482bbfb1e66be093308bb11617d41c613e33b4ce5be789adc"}, + {file = "ujson-5.8.0-cp39-cp39-win32.whl", hash = "sha256:0fe1b7edaf560ca6ab023f81cbeaf9946a240876a993b8c5a21a1c539171d903"}, + {file = "ujson-5.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3f9b63530a5392eb687baff3989d0fb5f45194ae5b1ca8276282fb647f8dcdb3"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:efeddf950fb15a832376c0c01d8d7713479fbeceaed1eaecb2665aa62c305aec"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d8283ac5d03e65f488530c43d6610134309085b71db4f675e9cf5dff96a8282"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb0142f6f10f57598655340a3b2c70ed4646cbe674191da195eb0985a9813b83"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07d459aca895eb17eb463b00441986b021b9312c6c8cc1d06880925c7f51009c"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d524a8c15cfc863705991d70bbec998456a42c405c291d0f84a74ad7f35c5109"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d6f84a7a175c75beecde53a624881ff618e9433045a69fcfb5e154b73cdaa377"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b748797131ac7b29826d1524db1cc366d2722ab7afacc2ce1287cdafccddbf1f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e72ba76313d48a1a3a42e7dc9d1db32ea93fac782ad8dde6f8b13e35c229130"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f504117a39cb98abba4153bf0b46b4954cc5d62f6351a14660201500ba31fe7f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a8c91b6f4bf23f274af9002b128d133b735141e867109487d17e344d38b87d94"}, + {file = "ujson-5.8.0.tar.gz", hash = "sha256:78e318def4ade898a461b3d92a79f9441e7e0e4d2ad5419abed4336d702c7425"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[[package]] +name = "zipp" +version = "3.16.2" +description = "Backport of pathlib-compatible object wrapper for zip files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, + {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "e5bb399c41bf4a26615cf3db9f784fa23d761cbf1c594cb73323065d7c5bd4b8" diff --git a/milvus/provider/__init__.py b/milvus/provider/__init__.py new file mode 100644 index 000000000..4b4869f2a --- /dev/null +++ b/milvus/provider/__init__.py @@ -0,0 +1,30 @@ +import connexion # type: ignore +import logging +import os + +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/milvus/provider/app.py b/milvus/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/milvus/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/milvus/provider/provider.py b/milvus/provider/provider.py new file mode 100644 index 000000000..357b07275 --- /dev/null +++ b/milvus/provider/provider.py @@ -0,0 +1,62 @@ +from flask import current_app as app +import logging + +import cohere +from pymilvus import connections, Collection + + +logger = logging.getLogger(__name__) +milvus_connection = None +cohere_client = None + + +def search(query): + global milvus_connection + global cohere_client + + if not cohere_client: + assert ( + apikey := app.config.get("COHERE_APIKEY") + ), "MILVUS_COHERE_APIKEY env var must be set" + cohere_client = cohere.Client(apikey) + if not milvus_connection: + milvus_connection = connections.connect( + alias="default", + host=app.config["CLUSTER_HOST"], + port=app.config["CLUSTER_PORT"], + ) + + # Since we need a vector in order to query Milvus, we'll use the Cohere API to generate an embedding. + # Naturally, you should use the same embedding model that you used to generate the vectors for the original data. + xq = cohere_client.embed( + [query], + model=app.config["COHERE_EMBED_MODEL"], + ).embeddings + + collection = Collection(name=app.config["COLLECTION"]) + collection.load() + + top_k = 10 + params = {"metric_type": "L2", "params": {"nprobe": 10}} + output_fields = [ + field.name + for field in collection.schema.fields + if field.name != app.config["VECTOR_FIELD"] + ] + + search_results = collection.search( + xq, + anns_field=app.config["VECTOR_FIELD"], + param=params, + limit=top_k, + output_fields=output_fields, + ) + + connections.remove_connection(alias="default") + + results = [ + {field: result.entity.get(field) for field in output_fields} + for result in search_results[0] + ] + + return results diff --git a/milvus/pyproject.toml b/milvus/pyproject.toml new file mode 100644 index 000000000..30fd9b45d --- /dev/null +++ b/milvus/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "milvus-connector" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +pymilvus = "^2.2.14" +cohere = "^4.18.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/miro/.env-template b/miro/.env-template new file mode 100644 index 000000000..48abacdb1 --- /dev/null +++ b/miro/.env-template @@ -0,0 +1,2 @@ +MIRO_ACCESS_TOKEN= +MIRO_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/miro/README.md b/miro/README.md new file mode 100644 index 000000000..77f1d6864 --- /dev/null +++ b/miro/README.md @@ -0,0 +1,44 @@ +# Miro Quick Start Connector + +Connects Cohere to Miro, the planning and collaboration tool. + +## Limitations + +The Miro connector currently allows full-text search of a board's title and description, including partial matching. + +## Configuration + +To configure this connector you will have to either create a new Miro app, see [here](https://developers.miro.com/docs/rest-api-build-your-first-hello-world-app#step-1-create-your-app-in-miro), or configuring an existing app. + +Your app will require at the least the `board:read` permission to allow searching your boards, once that is done you can save and install the app, a message should notify you that the app was successfully installed, and give you an access token. Use this token for the `MIRO_ACCESS_TOKEN` environment variable. + +Finally, to protect this connector from abuse, the `MIRO_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/miro/poetry.lock b/miro/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/miro/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/miro/provider/__init__.py b/miro/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/miro/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/miro/provider/app.py b/miro/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/miro/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/miro/provider/provider.py b/miro/provider/provider.py new file mode 100644 index 000000000..0adbd7108 --- /dev/null +++ b/miro/provider/provider.py @@ -0,0 +1,36 @@ +import logging +import json +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.miro.com/v2" + + +def search(query) -> list[dict[str, Any]]: + url = BASE_PATH + "/boards" + assert (token := app.config.get("ACCESS_TOKEN")), "MIRO_ACCESS_TOKEN must be set" + + params = {"query": query} + + headers = { + "Authorization": f"Bearer {token}", + } + + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["data"] diff --git a/miro/pyproject.toml b/miro/pyproject.toml new file mode 100644 index 000000000..af761d68c --- /dev/null +++ b/miro/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "miro" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/mongodb/.env-template b/mongodb/.env-template new file mode 100644 index 000000000..c251b73a9 --- /dev/null +++ b/mongodb/.env-template @@ -0,0 +1,5 @@ +MONGODB_CONNECTION_STRING=mongodb+srv://MYUSER:MYPASSWORD@mydomain.mongodb.net/?retryWrites=true&w=majority +MONGODB_DB=test +MONGODB_COLLECTIONS=people,users +MONGODB_CONNECTOR_FIELD_MAPPING={"email":"text","name":"title"} +MONGODB_CONNECTOR_API_KEY=abcde diff --git a/mongodb/README.md b/mongodb/README.md new file mode 100644 index 000000000..5cc1fab72 --- /dev/null +++ b/mongodb/README.md @@ -0,0 +1,70 @@ +# MongoDB Quick Start Connector + +Connects Cohere to a MongoDB instance using PyMongo. + +## Limitations + +The MongoDB connector will search across all defined collections of your MongoDB database. You can set one or many collections using the `MONGODB_COLLECTIONS` environment variable. Note that it will perform a full-text search only on the fields that have a **text index** defined. It will then return the key-value document as-is. We recommend adding a `MONGODB_CONNECTOR_FIELD_MAPPING` variable to map your document keys to the `text` and `title` keys for Cohere to ingest. + +## Configuration + +1. Setting up your MongoDB connection + +To connect your MongoDB instance, you will need a MongoDB user account that has at least read-access enabled. Note down the username and password. Then you will need to retrieve your connection string based on your MongoDB deployment type, see their[documentation](https://www.mongodb.com/basics/mongodb-connection-string). + +For example, the connection string should look like `mongodb+srv://MYUSER:MYPASSWORD@mydomain.mongodb.net/?retryWrites=true&w=majority`. Use this value for the `MONGODB_CONNECTION_STRING` environment variable. + +Important: For production, make sure you whitelist the IPv4 address of the deployed server to allow the connection to your MongoDB instance. + +Then you can specify the Database and Collection(s) using respectively the `MONGODB_DB` and `MONGODB_COLLECTIONS` variables. If you want to search across multiple collections under the same database, you can add a comma separated string. For example, `collection1,collection2`. + +2. Creating your indices + +Next, for each collection you want to search, add text indices. On MongoDB cloud, you can go to Database > Collections > Select a Collection > Indexes tab > Create Index, then add your index definition. For example, a collection `Users` that you would like to search `name` and `email` would have an index that looks like: + +``` +{ + "name": "text", + "email": "text" +} +``` + +## Development + +A development MongoDB server can be started with `docker-compose up`. To load test data into MongoDB, +you can use the following command: + +```bash +docker-compose run data-loader +``` + +```bash +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry. We recommend using in-project +virtual environments: + +```bash +poetry config virtualenvs.in-project true +poetry install +``` + +Then start the server: + +```bash +poetry run flask --app provider run --debug +``` + +Once the Mongo and Flask servers are running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/mongodb/dev/__init__.py b/mongodb/dev/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/mongodb/dev/load_data.py b/mongodb/dev/load_data.py new file mode 100644 index 000000000..5300a850c --- /dev/null +++ b/mongodb/dev/load_data.py @@ -0,0 +1,43 @@ +import csv +import logging +import os + +import pymongo +from dotenv import load_dotenv + + +logger = logging.getLogger(__name__) +logger.info("Loading BBQ Test Data") + +load_dotenv() + +client = pymongo.MongoClient( + host=os.environ.get("MONGODB_HOST", "mongo"), + port=os.environ.get("MONGODB_PORT", 27017), + username=os.environ.get("MONGODB_ROOT_USERNAME", "root"), + password=os.environ.get("MONGODB_ROOT_PASSWORD", "example"), +) + +fields = [] + +db = client.bbq + +with open("/bbq.csv", newline="") as csvfile: + reader = csv.DictReader(csvfile) + + for row in reader: + db.bbqs.insert_one(row) + +db.bbqs.drop_indexes() +db.bbqs.create_index( + [ + ("Name", pymongo.TEXT), + ("Description", pymongo.TEXT), + ("Features", pymongo.TEXT), + ("Brand", pymongo.TEXT), + ("Color", pymongo.TEXT), + ("Rank", pymongo.TEXT), + ], + name="bbq_index", + default_language="english", +) diff --git a/mongodb/docker-compose.yml b/mongodb/docker-compose.yml new file mode 100644 index 000000000..0b7ef0b7f --- /dev/null +++ b/mongodb/docker-compose.yml @@ -0,0 +1,32 @@ +version: "1" +services: + mongo: + image: mongo:latest + container_name: mongo + restart: unless-stopped + ports: + - 27017:27017 + environment: + MONGO_INITDB_ROOT_USERNAME: root + MONGO_INITDB_ROOT_PASSWORD: example + MONGO_INITDB_DATABASE: bbq + networks: + - mongo-network + + data-loader: + image: python:3.11 + container_name: data-loader + depends_on: + - mongo + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/load_data.py + command: sh -c "pip install pymongo python-dotenv && python3 /load_data.py" + profiles: + - tools + networks: + - mongo-network + +networks: + mongo-network: + driver: bridge diff --git a/mongodb/poetry.lock b/mongodb/poetry.lock new file mode 100644 index 000000000..af08fc447 --- /dev/null +++ b/mongodb/poetry.lock @@ -0,0 +1,888 @@ +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "dnspython" +version = "2.4.1" +description = "DNS toolkit" +optional = false +python-versions = ">=3.8,<4.0" +files = [ + {file = "dnspython-2.4.1-py3-none-any.whl", hash = "sha256:5b7488477388b8c0b70a8ce93b227c5603bc7b77f1565afe8e729c36c51447d7"}, + {file = "dnspython-2.4.1.tar.gz", hash = "sha256:c33971c79af5be968bb897e95c2448e11a645ee84d93b265ce0b7aabe5dfdca8"}, +] + +[package.extras] +dnssec = ["cryptography (>=2.6,<42.0)"] +doh = ["h2 (>=4.1.0)", "httpcore (>=0.17.3)", "httpx (>=0.24.1)"] +doq = ["aioquic (>=0.9.20)"] +idna = ["idna (>=2.1,<4.0)"] +trio = ["trio (>=0.14,<0.23)"] +wmi = ["wmi (>=1.5.1,<2.0.0)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "platformdirs" +version = "3.9.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.9.1-py3-none-any.whl", hash = "sha256:ad8291ae0ae5072f66c16945166cb11c63394c7a3ad1b1bc9828ca3162da8c2f"}, + {file = "platformdirs-3.9.1.tar.gz", hash = "sha256:1b42b450ad933e981d56e59f1b97495428c9bd60698baab9f3eb3d00d5822421"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "pymongo" +version = "4.4.1" +description = "Python driver for MongoDB " +optional = false +python-versions = ">=3.7" +files = [ + {file = "pymongo-4.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:bbdd6c719cc2ea440d7245ba71ecdda507275071753c6ffe9c8232647246f575"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux1_i686.whl", hash = "sha256:a438508dd8007a4a724601c3790db46fe0edc3d7d172acafc5f148ceb4a07815"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:3a350d03959f9d5b7f2ea0621f5bb2eb3927b8fc1c4031d12cfd3949839d4f66"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux2014_i686.whl", hash = "sha256:e6d5d2c97c35f83dc65ccd5d64c7ed16eba6d9403e3744e847aee648c432f0bb"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux2014_ppc64le.whl", hash = "sha256:1944b16ffef3573ae064196460de43eb1c865a64fed23551b5eac1951d80acca"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux2014_s390x.whl", hash = "sha256:912b0fdc16500125dc1837be8b13c99d6782d93d6cd099d0e090e2aca0b6d100"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:d1b1c8eb21de4cb5e296614e8b775d5ecf9c56b7d3c6000f4bfdb17f9e244e72"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3b508e0de613b906267f2c484cb5e9afd3a64680e1af23386ca8f99a29c6145"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f41feb8cf429799ac43ed34504839954aa7d907f8bd9ecb52ed5ff0d2ea84245"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1897123c4bede1af0c264a3bc389a2505bae50d85e4f211288d352928c02d017"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c4bcd285bf0f5272d50628e4ea3989738e3af1251b2dd7bf50da2d593f3a56"}, + {file = "pymongo-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:995b868ccc9df8d36cb28142363e3911846fe9f43348d942951f60cdd7f62224"}, + {file = "pymongo-4.4.1-cp310-cp310-win32.whl", hash = "sha256:a5198beca36778f19a98b56f541a0529502046bc867b352dda5b6322e1ddc4fd"}, + {file = "pymongo-4.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:a86d20210c9805a032cda14225087ec483613aff0955327c7871a3c980562c5b"}, + {file = "pymongo-4.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5a2a1da505ea78787b0382c92dc21a45d19918014394b220c4734857e9c73694"}, + {file = "pymongo-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35545583396684ea70a0b005034a469bf3f447732396e5b3d50bec94890b8d5c"}, + {file = "pymongo-4.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5248fdf7244a5e976279fe154d116c73f6206e0be71074ea9d9b1e73b5893dd5"}, + {file = "pymongo-4.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:44381b817eeb47a41bbfbd279594a7fb21017e0e3e15550eb0fd3758333097f3"}, + {file = "pymongo-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f0bd25de90b804cc95e548f55f430df2b47f242a4d7bbce486db62f3b3c981f"}, + {file = "pymongo-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d67f4029c57b36a0278aeae044ce382752c078c7625cef71b5e2cf3e576961f9"}, + {file = "pymongo-4.4.1-cp311-cp311-win32.whl", hash = "sha256:8082eef0d8c711c9c272906fa469965e52b44dbdb8a589b54857b1351dc2e511"}, + {file = "pymongo-4.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:980da627edc1275896d7d4670596433ec66e1f452ec244e07bbb2f91c955b581"}, + {file = "pymongo-4.4.1-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:6cf08997d3ecf9a1eabe12c35aa82a5c588f53fac054ed46fe5c16a0a20ea43d"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:a6750449759f0a83adc9df3a469483a8c3eef077490b76f30c03dc8f7a4b1d66"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:efa67f46c1678df541e8f41247d22430905f80a3296d9c914aaa793f2c9fa1db"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:d9a5e16a32fb1000c72a8734ddd8ae291974deb5d38d40d1bdd01dbe4024eeb0"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:36b0b06c6e830d190215fced82872e5fd8239771063afa206f9adc09574018a3"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux2014_ppc64le.whl", hash = "sha256:4ec9c6d4547c93cf39787c249969f7348ef6c4d36439af10d57b5ee65f3dfbf9"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux2014_s390x.whl", hash = "sha256:5368801ca6b66aacc5cc013258f11899cd6a4c3bb28cec435dd67f835905e9d2"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:91848d555155ad4594de5e575b6452adc471bc7bc4b4d2b1f4f15a78a8af7843"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0f08a2dba1469252462c414b66cb416c7f7295f2c85e50f735122a251fcb131"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2fe4bbf2b2c91e4690b5658b0fbb98ca6e0a8fba9ececd65b4e7d2d1df3e9b01"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e307d67641d0e2f7e7d6ee3dad880d090dace96cc1d95c99d15bd9f545a1168"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d43634594f2486cc9bb604a1dc0914234878c4faf6604574a25260cb2faaa06"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef0e3279e72cccc3dc7be75b12b1e54cc938d7ce13f5f22bea844b9d9d5fecd4"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05935f5a4bbae0a99482147588351b7b17999f4a4e6e55abfb74367ac58c0634"}, + {file = "pymongo-4.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:854d92d2437e3496742e17342496e1f3d9efb22455501fd6010aa3658138e457"}, + {file = "pymongo-4.4.1-cp37-cp37m-win32.whl", hash = "sha256:ddffc0c6d0e92cf43dc6c47639d1ef9ab3c280db2998a33dbb9953bd864841e1"}, + {file = "pymongo-4.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:2259302d8ab51cd56c3d9d5cca325977e35a0bb3a15a297ec124d2da56c214f7"}, + {file = "pymongo-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:262a4073d2ee0654f0314ef4d9aab1d8c13dc8dae5c102312e152c02bfa7bdb7"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:022c91e2a41eefbcddc844c534520a13c6f613666c37b9fb9ed039eff47bd2e4"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:a0d326c3ba989091026fbc4827638dc169abdbb0c0bbe593716921543f530af6"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:5a1e5b931bf729b2eacd720a0e40201c2d5ed0e2bada60863f19b069bb5016c4"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:54d0b8b6f2548e15b09232827d9ba8e03a599c9a30534f7f2c7bae79df2d1f91"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux2014_ppc64le.whl", hash = "sha256:e426e213ab07a73f8759ab8d69e87d05d7a60b3ecbf7673965948dcf8ebc1c9f"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux2014_s390x.whl", hash = "sha256:53831effe4dc0243231a944dfbd87896e42b1cf081776930de5cc74371405e3b"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:977c34b5b0b50bd169fbca1a4dd06fbfdfd8ac47734fdc3473532c10098e16ce"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fab52db4d3aa3b73bcf920fb375dbea63bf0df0cb4bdb38c5a0a69e16568cc21"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bb935789276422d8875f051837356edfccdb886e673444d91e4941a8142bd48"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d45243ff4800320c842c45e01c91037e281840e8c6ed2949ed82a70f55c0e6a"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32d6d2b7e14bb6bc052f6cba0c1cf4d47a2b49c56ea1ed0f960a02bc9afaefb2"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:85b92b3828b2c923ed448f820c147ee51fa4566e35c9bf88415586eb0192ced2"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3f345380f6d6d6d1dc6db9fa5c8480c439ea79553b71a2cbe3030a1f20676595"}, + {file = "pymongo-4.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0dcc64747b628a96bcfc6405c42acae3762c85d8ae8c1ce18834b8151cad7486"}, + {file = "pymongo-4.4.1-cp38-cp38-win32.whl", hash = "sha256:ebe1683ec85d8bca389183d01ecf4640c797d6f22e6dac3453a6c492920d5ec3"}, + {file = "pymongo-4.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:58c492e28057838792bed67875f982ffbd3c9ceb67341cc03811859fddb8efbf"}, + {file = "pymongo-4.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:aed21b3142311ad139629c4e101b54f25447ec40d6f42c72ad5c1a6f4f851f3a"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:98764ae13de0ab80ba824ca0b84177006dec51f48dfb7c944d8fa78ab645c67f"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:7b7127bb35f10d974ec1bd5573389e99054c558b821c9f23bb8ff94e7ae6e612"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:48409bac0f6a62825c306c9a124698df920afdc396132908a8e88b466925a248"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:55b6ebeeabe32a9d2e38eeb90f07c020cb91098b34b5fca42ff3991cb6e6e621"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux2014_ppc64le.whl", hash = "sha256:4e6a70c9d437b043fb07eef1796060f476359e5b7d8e23baa49f1a70379d6543"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux2014_s390x.whl", hash = "sha256:0bdbbcc1ef3a56347630c57eda5cd9536bdbdb82754b3108c66cbc51b5233dfb"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:04ec1c5451ad358fdbff28ddc6e8a3d1b5f62178d38cd08007a251bc3f59445a"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a7739bcebdbeb5648edb15af00fd38f2ab5de20851a1341d229494a638284cc"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02dba4ea2a6f22de4b50864d3957a0110b75d3eeb40aeab0b0ff64bcb5a063e6"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:884a35c0740744a48f67210692841581ab83a4608d3a031e7125022989ef65f8"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2aab6d1cff00d68212eca75d2260980202b14038d9298fed7d5c455fe3285c7c"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae1f85223193f249320f695eec4242cdcc311357f5f5064c2e72cfd18017e8ee"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b25d2ccdb2901655cc56c0fc978c5ddb35029c46bfd30d182d0e23fffd55b14b"}, + {file = "pymongo-4.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:334d41649f157c56a47fb289bae3b647a867c1a74f5f3a8a371fb361580bd9d3"}, + {file = "pymongo-4.4.1-cp39-cp39-win32.whl", hash = "sha256:c409e5888a94a3ff99783fffd9477128ffab8416e3f8b2c633993eecdcd5c267"}, + {file = "pymongo-4.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:3681caf37edbe05f72f0d351e4a6cb5874ec7ab5eeb99df3a277dbf110093739"}, + {file = "pymongo-4.4.1.tar.gz", hash = "sha256:a4df87dbbd03ac6372d24f2a8054b4dc33de497d5227b50ec649f436ad574284"}, +] + +[package.dependencies] +dnspython = ">=1.16.0,<3.0.0" + +[package.extras] +aws = ["pymongo-auth-aws (<2.0.0)"] +encryption = ["pymongo-auth-aws (<2.0.0)", "pymongocrypt (>=1.6.0,<2.0.0)"] +gssapi = ["pykerberos"] +ocsp = ["certifi", "pyopenssl (>=17.2.0)", "requests (<3.0.0)", "service-identity (>=18.1.0)"] +snappy = ["python-snappy"] +zstd = ["zstandard"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "a179db15f18c2d01b6de2ad76bc56186962c6f767933d21d8fbab3dbd360c021" diff --git a/mongodb/provider/__init__.py b/mongodb/provider/__init__.py new file mode 100644 index 000000000..6c2834bdb --- /dev/null +++ b/mongodb/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/mongodb/provider/app.py b/mongodb/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/mongodb/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/mongodb/provider/client.py b/mongodb/provider/client.py new file mode 100644 index 000000000..adbc6c9dd --- /dev/null +++ b/mongodb/provider/client.py @@ -0,0 +1,19 @@ +import pymongo + +from flask import current_app as app + +client = None + + +def get_client(): + assert ( + connection_string := app.config.get("CONNECTION_STRING") + ), "MONGODB_CONNECTION_STRING must be set" + global client + + if not client: + client = pymongo.MongoClient( + connection_string, + ) + + return client diff --git a/mongodb/provider/provider.py b/mongodb/provider/provider.py new file mode 100644 index 000000000..ca2889bc4 --- /dev/null +++ b/mongodb/provider/provider.py @@ -0,0 +1,54 @@ +from typing import Any +from flask import current_app as app + +from .client import get_client + + +def search(query) -> list[dict[str, Any]]: + assert (db := app.config.get("DB")), "MONGODB_DB must be set" + assert ( + collections := app.config.get("COLLECTIONS") + ), "MONGODB_COLLECTIONS must be set" + + client = get_client() + search_collections = collections.split(",") + db = client[db] + + results = [] + for collection in search_collections: + collection_results = db[collection].find({"$text": {"$search": query}}) + + for result in collection_results: + results.append(serialize_result(dict(result))) + + return results + + +def flatten_obj(d, parent_key="", sep="_"): + flattened = {} + for k, v in d.items(): + new_key = f"{parent_key}{sep}{k}" if parent_key else k + if isinstance(v, dict): + flattened.update(flatten_obj(v, new_key, sep=sep)) + elif isinstance(v, list): + flattened[new_key] = ", ".join(str(item) for item in v) + else: + flattened[new_key] = str(v) + return flattened + + +def serialize_result(result): + mappings = app.config.get("CONNECTOR_FIELD_MAPPING") + + # Add any connector mappings, e.g: text, title + for key, value in mappings.items(): + if key in result: + result[value] = result.pop(key) + + # Serialize ID object + result["id"] = str(result.pop("_id")) + + # Flatten any nested dictionaries and arrays + result = flatten_obj(result) + + return result diff --git a/mongodb/pyproject.toml b/mongodb/pyproject.toml new file mode 100644 index 000000000..5f5da6f93 --- /dev/null +++ b/mongodb/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "mongodb" +version = "0.1.0" +description = "Connects Cohere with MongoDB." +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +pymongo = "4.4.1" +gunicorn = "^21.2.0" + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + diff --git a/mysql/.env-template b/mysql/.env-template new file mode 100644 index 000000000..d5f16f288 --- /dev/null +++ b/mysql/.env-template @@ -0,0 +1,7 @@ +MYSQL_HOST=mysql +MYSQL_USER=mysql +MYSQL_PASSWORD=password +MYSQL_DATABASE=bbq +MYSQL_TABLE_NAME=bbq +MYSQL_FTS_COLUMNS=id, name, description, features, country +MYSQL_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/mysql/README.md b/mysql/README.md new file mode 100644 index 000000000..08eb962c1 --- /dev/null +++ b/mysql/README.md @@ -0,0 +1,44 @@ +# MySQL Quick Start Connector + +This project allows you to create a simple connection to MySQL that can be used with Cohere's API. + +## Limitations + +The MySQL connector only allows search within a specific table, and for specific text columns. Ideally, you should add indices on these columns to speed up the query time. There is no way currently to add complex conditions, or JOINs of any kind. + +## Development + +Start MySQL server with: + +```bash +$ docker-compose up --build +``` + +This will create a MySQL database called :code:`bbq`, with test data. + +To start your local Flask server, create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/mysql/bbq.sql b/mysql/bbq.sql new file mode 100644 index 000000000..dd0fe25e6 --- /dev/null +++ b/mysql/bbq.sql @@ -0,0 +1,57 @@ +-- MySQL dump 10.13 Distrib 8.0.33, for Linux (aarch64) +-- +-- Host: localhost Database: bbq +-- ------------------------------------------------------ +-- Server version 8.0.33 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `bbq` +-- + +DROP TABLE IF EXISTS `bbq`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `bbq` ( + `id` varchar(255) NOT NULL, + `name` varchar(255) DEFAULT NULL, + `description` text, + `features` text, + `brand` varchar(255) DEFAULT NULL, + `color` varchar(255) DEFAULT NULL, + `country` varchar(255) DEFAULT NULL, + `rank` int DEFAULT NULL, + FULLTEXT KEY `bbq_search_idx` (`id`,`name`,`description`,`features`,`country`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bbq` +-- + +LOCK TABLES `bbq` WRITE; +/*!40000 ALTER TABLE `bbq` DISABLE KEYS */; +INSERT INTO `bbq` VALUES ('B08Z7K4VZ9','Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver','','High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance.\nSpacious Cooking Area: Consists of primary cooking area – 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space – 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering.\nSear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups.\nGreat Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time.\nHassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.','Royal Gourmet','Silver','us',1),('B08588PLK8','NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel','Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

    Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
    Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
    Grilling Surface: 226.3 square inches
    Total BTU: 9,200
    Gas Type: Propane','✅ TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual\n✅ 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant.\n✅ ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners.\n✅ OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required!\n✅ SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.','NOMADIQ','Black','us',2),('B082HG76CB','MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves','Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean','❤ STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob\n❤ FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving\n❤ PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming\n❤ ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill\n❤ MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking','MASTER COOK','Black','us',3),('B07P8RTTWP','Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black','','443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether.\n39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push.\nSide burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience.\nGlossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look.\nGrease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.','Royal Gourmet','Black','us',4),('B08XTGT9J1','Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver','','Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time.\nHigh Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat.\nSear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces.\nHassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\nDurable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.','Royal Gourmet','Stainless Steel,Silver','us',5),('B091F5ND56','Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue','','Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.','Royal Gourmet','Blue','us',6),('B091F4D7FF','Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver','','High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time.\nSufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.','Royal Gourmet','Silver','us',7),('B091F4VJLR','Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee','','Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.','Royal Gourmet','Coffee','us',8),('B08YLPZZ65','Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue','Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2\" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!','Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking\nElectric Start - Simply push a button to start the burner on this mini travel smoker grill\nConverts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use\nBuilt in Thermometer - Barbeque to perfection with the easy to read temperature gauge\nFast and quick set up - Very simple to install and remove - makes the perfect boat accessories','Bunker Up Fishin','Stainless Steel','us',9),('B071NWQ8Q9','MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel','','►36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner\n►This propane gas grill has integrated piezo ignition system ensures quick and reliable startups\n►400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack\n►Stylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control\n►Stable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want','MASTER COOK','Sliver-Black','us',10),('B091TKS5XG','Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver','','High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power.\nSufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.','Royal Gourmet','Silver','us',11),('B000W8JNLC','XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator','Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24\"(L) x 14\"(W) x 5\"(H) Package Contents: Propane Stove Regulator Hose','Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on\nDurable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting\nPortable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors\nSafe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage\nPowerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.','XtremepowerUS','Gray','us',12),('B00004TBJ4','Char- Broil Standard Portable Liquid Propane Gas Grill','','Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don\'t have to wait for the grill to cool down to move it\nCook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that\'s easy to clean and dishwasher safe\n11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders\nQuality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill\nGreat for grilling and indirect cooking at low temperatures - just close the lid and you\'ll get even heat and low flare-ups','Char-Broil','Black','us',13),('B07GJQRH3K','Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ','NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

    Why choose it?

    This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

    The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

    The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

    Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

    Specifications:

    Material: Cast Iron
    Color: Black
    Energy Type: LPG
    Size(Lx Wx H): 9.45\" x 9.45\" x 4.72\"
    Weight: 4.19 lbs
    Load-bearing: 22 lbs

    Package included:

    1 x Single Burner Camp Stove (regulator not include)
    1 X Screw (for oxygen control valve)
    2 x Screw (for gas pipe, the pipe is not included )
    2 x Screw (for gas valve)
    4 x Screw

    Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
    2. Gas line and regulator Not Included.','Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included\nCompact and portable design: size(Lx Wx H): 9.45\" x 9.45\" x 4.72\", easy to install and use, good for small cooking\nSafety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions\nFlame adjustable, 4 detachable legs, save space, convenient to carry and transport\nPackage List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.','Boshen','Black','us',14),('B01KJGBC6A','Char-Broil Portable 240 Liquid Propane Gas Grill','','240 Square inch cooking area and built to travel\nSturdy legs for stability on a Table or the ground, carrying handles for easy transport\nLid-mounted temperature gauge, painted porcelain body\nFor use with 1Lb propane tanks, (Sold Separately)','Char-Broil','Black','us',15),('B07BLHCHX6','Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black','','COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Arrives fully assembled\nPUSH-BUTTON IGNITION: For matchless lighting','Coleman','Black','us',16),('B01BW4K0LG','MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan','Compatible with both high and low pressure lines – ideal for trailers – this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That’s why we created the MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat – or vegetable – you’re grilling which means you’ll be able to get that delicious “seared on the outside, juicy on the inside” performance every time. Thanks to the closing lid you’ll find it’s much easier to get evenly-cooked food and keep the bugs away while you’re cooking. 

    Product details:

    • Adjustable cooking temperature
    • Large porcelain cooking grid
    • Piezo igniter
    • Heat indicator
    • Folding support legs
    • Brushed stainless steel cover
    • Grease pan
    • Certified for USA and CANADA
    Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.','U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go\nFOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute\nADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking\nGREASE PAN - Quick clean grease tray keeps your grilling area clean\n354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source','MARTIN','Stainless Steel','us',17),('B07XVBJT3R','Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal','','Lion L90000 40\" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface.\nComponent package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack.\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nPackage Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.','Lion Premium Grills','Stainless Steel','us',18),('B07BLH19MX','Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black','','GRILLING POWER: Up to 20,000 total BTUs\n3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control\nLARGE GRILLING AREA: 285 sq. inches\nEASY SETUP: Sturdy quick-fold legs and wheels\nTHERMOMETER: Integrated design for accurate temperature monitoring','Coleman','Black','us',19),('B01HITNEEE','American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black','','360 square inches of cooking space over porcelain-coated grates. Convectional cooking system\n170 square inch porcelain-coated swing-a-way rack for warming\nThree stainless steel in-line burners for cooking performance\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space','AMERICAN GOURMET','Black','us',20),('B07BLHC2G2','Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red','','COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Sturdy quick-fold legs and wheels\nPUSH-BUTTON IGNITION: For matchless lighting','Coleman','Red','us',21),('B07NR9G7BC','Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel','','288 sq. inches of total cooking surface\n10,000 BTU stainless steel \"U\" shaped burner for maximum heat distribution\nFolding legs and locking lid make moving grill easy\nChrome-coated warming rack_Stainless steel construction and cooking grates\nPush-button ignition lights burner quickly and easily','Masterbuilt','Stainless Steel','us',22),('B07JZV24HV','Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel','','Power Source: Propane/ liquid petroleum gas. The propane tank is not included.\nExclusive Stainless Steel finish for increased style and durability\nReliable electric ignition to fire up your grill and 10, 000 BTU side burner\nPorcelain-coated grease pan is durable and can be removed for easy cleaning\nStainless Steel burners emit flame from the top to allow for even cooking','Char-Broil','Stainless Steel','us',23),('B00BFPMLI8','Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill','','Road worthy and built to travel easy\nCast aluminum firebox and lid with dual stainless steel latches and temp gauge\nHigh-impact frame with legs and carry handles\nNo flare-up TRU-Infrared cooking system\n200 square inch stainless steel grilling grate','Char-Broil','Black','us',24),('B01ENX3VX2','Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black','','Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast\n316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6’’ L x 13.4’’ W and 3.5 mm thickness. 15 patties can be cooked altogether at once\nPiezo Ignition: Durable stainless steel control panel with piezo ignition system\nOil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use\nPerfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors','Royal Gourmet','Black','us',25),('B06XY4SHXG','Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel','','5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor\nPorcelain-enameled cooking grates and warming rack offer a total of 797 square inches cooking area, which is consisted of a primary cooking area of 598 square Inches and a secondary cooking area of 199 square inches\nHeavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement\nElectronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space\nRemovable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters','Royal Gourmet','Stainless Steel','us',26),('B01FTD8JB4','Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22\'\' L, Black','','SPACIOUS COOKING SURFACE: 22.4\" L x 21.7\" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly.\nPOWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total.\nQUICK START-UP: Electronic ignition system offers a reliable spark at every simple push.\nNO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup.\nEASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.','Royal Gourmet','Black','us',27),('B08689LFJ9','Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle','Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

    Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

    Note:
    The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
    Glass stones shown in photos are decoration only, and are NOT included.
    Batteries: 1 AA battery required (NOT included).

    Dimensions: 43.3\" (L) x 29.1\" (W) x 24.2\" (H)
    Package Includes:
    1 x 43 inch gas fire pit table
    1 x Hose regulator valve set (assembled)
    1 x Hardware and tools
    1 x Assembly & user manual

    Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.','Ambience: 18\" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires.\nMaterials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included.\nFeatures: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included).\nDual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off.\nDimensions & Packing Included:Overall Table Size :43.3\" (L) x 29.1\" (W) x 24.2\" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.','Grand patio','Brown','us',28),('B0098HR1FI','Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black','','Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual\nGrill dimensions: Lid Open - 63\"H x 52\"W x 32\"D. Lid Closed - 45.5\"H x 52\"W x 24\"D. Grilling area dimensions: 529 square inches\nPropane gas grill works with Standard 20 lb LP tank (sold separately).\nOther specifications: BTU-Per-Hour Input – 32,000. Stainless Steel Burners – 3. Side tables – 2 (Stationary) Swivel Casters – 2\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time','Weber','Black','us',29),('B00RFXS1Z6','Weber 51010001 Q1200 Liquid Propane Grill, Black','','One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nDimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\nEasy-start electronic ignition and infinite control burner valve settings\nCare instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)','Weber','Black','us',30),('B07P7M1NH8','Megamaster 820-0065C Propane Gas Grill, Red + Black','','Assembly required (Easy!)\nFoldable legs and soft handles\nDurable high-grade stainless steel main burner\nStrong steel frame with a heat-resistant coating finish\nA cooking power of 11,000 total BTU\'s with even and consistent heat','Megamaster','Red + Black','us',31),('B01ENV3UDA','Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black','','Combination of gas grill and griddle with two individual cooking zones | Easy assembly required\nProduct dimensions – 66.1\" L x 21.8\" W x 43.7\" H | Clearance space around product – 36” | Product weight – 103.6 lbs. | Cooking area (Two) – 292 sq. inches each | Gas tank size – 20 lb. | Burners output (4) – 12,000 BTU each\nAutomatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel\nTwo fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms’ reach\nWith fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup','Royal Gourmet','Black','us',32),('B07G6Z2MLN','Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter','COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
    PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy','WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank\nGREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances\nMAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install\nEASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening.\nPACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge','Wadoy','','us',33),('B01HID4Y7Q','Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel','','2-burner, 24,000-BTU Cabinet Gas Grill\n300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates\nStainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional\nElectronic ignition for fast and reliable startups. Metal side shelves fold down when not in use.\nConvenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.','Char-Broil','Stainless Steel','us',34),('B01HITNEEY','American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black','','280 square inches of cooking space over porcelain-coated grates\nTwo stainless steel in-line burners for cooking performance;Assembly Required\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\nPiezo ignition system for fast and reliable startups. Cooking System: Convectional','AMERICAN GOURMET','Black','us',35),('B07B8SPXTG','Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP','Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...','Blaze Grills offers a best-in-class Lifetime warranty\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef\nFull-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\nCast stainless steel Linear Burners for durability and longevity','Blaze','Stainless Steel','us',36),('B00DYN0438','Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36” Outdoor Griddle Station with Side Shelf, 36 Inch, Black','','Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain.\nReplace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you\'ll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nRestaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nControllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf\nDurability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze','Blackstone','Black','us',37),('B01N1G04RL','Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black','','Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs.\nPortable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts.\nAutomatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel.\nNo Fussy Cleanup: Removable oil management system facilitates easy cleanup.\nAmple Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms’ reach.','Royal Gourmet','Black','us',38),('B00FGEINVI','Weber 57060001 Q3200 Liquid Propane Grill,White','','Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nGrill-Out handle light. Battery type: AAA\nEasy-start electronic ignition and infinite control burner valve settings\nOperates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75','Weber','White','us',39),('B07PJS4B4X','Napoleon TQ285XBL1 Propane Gas Grill, Blue','','Blue portable grill with scissor cart\nMaterial Type: Cast Iron','Napoleon','Blue','us',40),('B087HNGXRB','Megamaster 720-0988EA Propane Gas Grill, Black/Silver','','Assembly required\nDurable high-grade stainless steel main burner\nStainless steel control panel with two large easy to transport wheels\nHeavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area\nA cooking power of 30,000 total BTU\'s with strong, even and consistent heat','Megamaster','Black/Silver','us',41),('B00FDOON9C','Weber 54060001 Q2200 Liquid Propane Grill , Gray','','Total cooking area = 280 Square Inches\nStainless steel burner puts out 12,000 BTU-per-hour\nPorcelain-enameled, cast iron cooking grates\nElectronic ignition with built in thermometer\nTwo folding work tables','Weber','Gray','us',42),('B077JTCMKQ','Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black','','Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates\n529 Square inches of cooking space over three burners. Left Table down width - 42 inches\n30, 000 BTU-per-hour input main burners with fuel gauge\nOpen cart design with six tool hooks and two large wheels.Built-in lid thermometer','Weber','Black','us',43),('B004H4WWA6','Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red','','Portable gas grill with 145-square-inch grilling area and foldaway legs\nCooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish\nPowerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate\nAluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure\nPronounced briefcase-style carrying handle; weighs 13.5 pounds','Cuisinart','Petit Gourmet Tabletop Gas Grill, Red','us',44),('B00FDOON9W','Weber 53060001 Q2000 Liquid Propane Grill,White','','One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D\nPush-button ignition and infinite control burner valve settings\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)','Weber','white','us',45),('B083QN4Z6H','Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack','','Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding.\nThis propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter.\nHigh-quality brass construction gas gauge meter, you\'ll never have to worry about leaks or running out of propane again.\nMonitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nComing With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.','Generep','','us',46),('B07YBLSF7M','Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer','Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.','★STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance\n★STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking\n★LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space\n★TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation\n★BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.','Monument Grills','Stainless Steel','us',47),('B07H636NBH','Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black','','This product is a Liquid Propane unit\nEquipped with the powerful Gs4 high performance grilling system\nUse the side burner to Simmer BBQ sauce or sauté veggies; Infinite control burner valves\nSear station creates an intense heat zone to quickly add sear marks on meat\nDimensions: Lid Open 62\"H x 59\"W x 31\"D || Lid Closed 47\"H x 59\"W x 29\"D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches','Weber','Black','us',48),('B07H5RHYCF','Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel','','GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\n7mm diameter solid stainless steel rod cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\nCompatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature','Weber','Stainless Steel','us',49),('B002BCSX0Y','Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch','Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.','580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates\nFront-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people\nSide burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner\nEnclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only\nDimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D','Weber','Stainless Steel','us',50),('B010ILB4KU','Weber 51040001 Q1200 Liquid Propane Grill, Red','','One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area\nPorcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body\nBuilt-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan\nDimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings\nUses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box','Weber','Red','us',51),('B07H5Z54J8','Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black','','Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area – 513 square inches | Tuck-Away warming rack area – 156 square inches | Wheel base dimensions – 38” from left to right and 29” from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)','Weber','Black','us',52),('B077K1MK8N','Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black','','Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color\nGrill dimensions: Lid Open - 57\"H x 48\"W x 26\"D. Lid Closed - 44.5\"H x 48\"W x 27\"D. Each cooking grate is 10.16” x 17.5\", for a combined measurement of approximately 20.32\" x 17.5\"\nPropane gas grill works with Standard 20 lb LP tank.\nFeatures: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame\nTwo burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system','Weber','Black','us',53),('B00AB7SDC4','Huntington 30040HNT Liquid Propane Gas Grill,Black','','Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust\n30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty\n430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack\nA 10,000 BTU burner allows you to prepare mouth-watering side dishes\nEasy to maintain porcelain coated cooking grid','Huntington','Black','us',54),('B004BH7T5W','Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel','','Island not included\nPlease reference building guide for Weber model number 7360001 prior to building island\n9 mm diameter stainless steel rod cooking grates\nStainless steel Flavorizer bars\nSnap-Jet individual burner ignition system','Weber','Stainless Steel','us',55),('B089D4KPM3','KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel','','Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited\nFlush side burner cover creates extra workspace when the side burner is Not in use\nIncludes removable rear-acceSS catch pan, warming rack and caster wheels.\nConvertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003','KitchenAid','Red + Stainless Steel','us',56),('B08F27PWFS','Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating','','【Grill and Griddle Combo】--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA]\n【Rapid Heating】--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious.\n【Easy Cleaning】-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use.\n【Anti-deformation Surface】-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature.\n【Power Source Type】--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.','CAMPLUX ENJOY OUTDOOR LIFE','','us',57),('B01LPY9R8U','DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater','','This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nProvides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.','DOZYANT','Propane Splitter','us',58),('B00FDOONEC','Weber 50060001 Q1000 Liquid Propane Grill,Chrome','','One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches\nPush-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately)\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes','Weber','Chrome','us',59),('B07L93KFNN','Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray','','New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling\nNew easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray\nUpgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall\n346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit\nCompact 21\" X 21\" (Lid closed) footprint perfect for the Small patio/balcony','Fuego','Dark Gray','us',60),('B0070U0KXA','Lion Premium Grills L75625 32\" Propane Grill','','830 square inches of cooking surface\n75,000 total BTUs\nPremium solid stainless steel cooking grates\nSize: 32?\nstainless steel smoker head with polished edges','Lion Premium Grills','white','us',61),('B007WH7S4A','DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection','','Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks\nLong lasting high quality material provides secure, air-tight connection between propane tank\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low\nThis propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter\nNo tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances','DOZYANT','Black','us',62),('B078VTH8B7','DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater','','This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.','DOZYANT','Propane Gray-Splitter','us',63),('B0098HR0PY','Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black','','Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required\nGrill dimensions: Lid Open – 63\" H x 50\" W x 32\" D | Lid Closed – 45.5\" H x 50\" W x 24\" D | Primary cooking area – 360 square inches | Warming rack area – 90 square inches | Total cooking area – 450 square inches/20.4” W x 17.5” D | Weight – 113.8\nHeavy-duty caster wheels for easily moving your grill on grass or a patio\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system','Weber','Black','us',64),('B07H636NBG','Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper','','Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area – 513 square inches | Tuck-Away warming rack area – 156 square inches | Wheel base dimensions – 38” from left to right and 29” from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)','Weber','Copper','us',65),('B07H6193C8','Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black','','This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\nThe built-in fuel gauge lets you see how much fuel is left in the tank','Weber','Black','us',66),('B08GSDFS67','AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover','AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42\"x20\"x25\" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction','🔥Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience.\n🔥High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control.\n🔥Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame.\n🔥Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.','AVAWING','Black','us',67),('B07QGL9CPQ','Pantin (Propane Gas) 13\" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU','Pantin PCWR-D13 compact single burner 13\" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual “L” shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.','16 guage one piece stainless steel stove top extended to front and two sides with forming technology.\nPropane Gas 13\" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat).\n100% stainless steel and heavy gauge reinforced steel angle chassis.\nHeavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability.\nCast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16\"W x 18\"D x 30\"H; We provide curbside delivery only.','PANTIN','Silver','us',68),('B07D1G6QQ1','MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover','Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.','304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section.\nComes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36\" skewer and motor.\nLarge 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free.\nPower Req: 110v/60hz. Overall Size: 154\" W (122.5\" W without side tables installed), 24.75\" D x 35.5\" Countertop H. Overall Height 52\" (Top of faucet head). Main Grill Section: 55\" W x 46\" H (overall) x 26.5\" D (Including knobs). Countertop 35.5\" H x 24.75\" D.\nRefrigerator/Wine Cooler Section: 49.5\" W (with Side Table) or 33.5\" W (without Side Table) x 25\" D x 35.5\" H. Sink Section: 49.25\" W (with Side Table) or 33.5\" W (without Side Table) x 28\" D x 35.5\" Countertop H or 52\" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.','MCP Island Grills','Stainless Steel','us',69),('B07S1KMJQH','Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown','Specifications:
    Overall Dimensions: 52\"(L) x 34\"(W) x 24.75\"(H)
    Dimensions w/ Glass Partition: 52\"(L) x 34\"(W) x 30.25\"(H)
    Glass Partition: 27.75\"(L) x 12\"(W) x 5.5\"(H)
    Weight: 73 lbs.
    Table Material: Aluminum, Wicker
    Cover Material: 300D Oxford Fabric
    BTU: 50,000
    Assembly required (with instructions)
    NOTE: Works with standard 20-pound propane tanks

    Package Includes:
    Fire pit table
    Glass rocks
    Glass wind guard

    BCP SKU: SKY5268

    ','ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop\nGLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze\nCONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU\nENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire\nDURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52\"(L) x 34\"(W) x 24.75\"(H)','Best Choice Products','Brown','us',70),('B00KCNV9KU','Broil King 922164 Baron 440 Liquid Propane Gas Grill','','4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly\n10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length\n644-sq in total cooking area, including 444 sq. in of primary cooking space,\nReversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs\nDurable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces','Broil King','Black','us',71),('B08BF7G65N','32\" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion','','【Easy to Assemble】 This upgraded this 32 inch fire pit table to meet customers\' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base.\n【Excellent Accessories】Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table.\n【Safe And Test】This 32 inch outdoor fire table is CSA certified. This propane fire pit table‘s heat output is 50,000 BTU. Every fire table\'s Ignition function is tested before leaving the factory and ignition device can easily adjust flame.\n【High-class Materials & Quality Assurance】The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life.\n【Service】It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.','SNAN','','us',72),('B08T21432X','Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover','*New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.','High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas!\nBlue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000.\n6 Burners each at 11,000 BTU\'s, 1 Cast Iron Side Burner at 12,000 BTU\'s, 1 Infrared Rear Burner at 12,000 BTU\'s, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides).\nOverall Exterior Grill Size: 89.5\" W x 25\" D x 47\" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24\" if you do not install the side towel racks on left / right side. Counter depth: 22.75\" not including the handles and knobs. Counter height: 35.5\", With the grill lid open overall height: 60\". If the side sink and side table are not installed Width: 58\".\nSink Basin Size: 10.5\" Wide x 12.5\" Deep x 7\" Tall. Rotisserie Size: Actual rod is 44\" long, but 38\" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38\" Wide x 18\" Deep. Warming rack on top is 37.5\" Wide x 6\" Deep. Side Burner: 13.25\" Deep x 10.5\".','MCP Island Grills','Stainless Steel','us',73),('B000BWFTJE','King Kooker 24WC 12\" Portable Propane Outdoor Cooker with Wok, 18.5\" L x 8\" H x 18.5\" W, Black','','Sport Type: Camping & Hiking\nCountry of origin : United States\nPackage weight : 10 Lbs\nProduct type : Outdoor Living\nPortable propane outdoor cooker with 24-inch bolt-together frame','King Kooker','Black','us',74),('B01BEY69FA','Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28\" x 28\", Gray','','STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space.\nINCLUDES: 6. 6 lbs Lava Rock and PVC Cover\nAdjustable flames are the perfect addition to light up the garden.\nBURNING AREA: (W) 16. 93\" x (L) 16. 93\" x (H) 2. 95\"; BTU: 40, 000; ETL-listed\nDIMENSIONS: (W) 28\" x (L) 28\" x (H) 9. 05\" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA','Peaktop','Gray','us',75),('B074QQW4PC','Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill','','COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power\nCOOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack\nCAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat\nPREP SPACE: Two 18\" x 13\" side tables provide ample space for food prep\nCONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.','Cuisinart','Full Size Four-Burner Gas Grill','us',76),('B00AB7SD9W','Huntington 24025 Liquid Propane Gas Grill','','Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves\nPorcelain coated wire cooking grids and stainless steel cooking system\nSure-Lite push button ignition system and Accu-Flow burner valves\nHeat resistant front mounted handle\nEZ-Q-Cart design and 5 stage quality enamel paint process','Huntington','','us',77),('B00F3BHB80','Cuisinart CGG-306 Chef\'s Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel','','FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches.\nTWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling.\nSTAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat.\nLIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you\nIDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).','Cuisinart','Professional Gas Grill, Two-Burner, Stainless Steel','us',78),('B07ZZM9S3B','Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black','','The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner\nPrecise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing\nUse the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience\nThe stainless steel cooking grids are virtually maintenance free\nDurable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather','Napoleon','Black','us',79),('B01J3S1NWI','Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill','','146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use.\n8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability.\nCOMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more.\nNO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches.\nLOCKING LID: The lid latches down allowing for quick and easy transport','Cuisinart','Grillster 8,000 BTU Portable Gas Grill','us',80),('B07NBNPSLG','Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray','Highlights:
    Elegant Square Design
    Easy to Use
    Handles for Portability
    Includes Matching Side Table/Tank Storage
    Weather-Resistant Pit Cover

    Specifications:
    Overall Dimensions: 34.75\"(L) x 34.75\"(W) x 12\"(H)
    Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
    Weight: 70.6 lbs.
    Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
    Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
    BTU: 40,000
    Note: The propane tank should be placed under the side table (tank not included)
    Assembly required (with instructions)

    Package Includes:
    Fire pit
    Side table
    Glass Rocks
    Pit cover
    Hose

    BCP SKU: SKY5230


    Ships and arrives in 2 separate boxes. Delivery times may vary per box.','MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s\'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75\"(L) x 34.75\"(W) x 12\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.','Best Choice Products','Gray','us',81),('B0836CBZN1','GASPRO 1500℉ Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified','The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

    You can do so many dishes in the different heat zones:
    Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
    Seafood: shrimp, skewers, salmon filets.
    Veggies: corn, potato chips, large pieces onion.
    You can also make sandwiches, nachos, enchiladas, hamburgers.

    The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

    GASPRO infrared grill unique designed double-use connection:
    1lb connection and standard grill connection (3/8” male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
    1.Uses disposable 16.4 oz LP cylinder (sold separately)
    2.Uses big LP propane tank. (Propane hose sold separately)
    3.Uses RV Propane tank. (Propane hose sold separately)

    Product Specification:
    Material: 304 Stainless Steel
    Flow Capacity: 9000 BTU/hr
    Fueled Type: LP Gas Propane
    Ignition Type: Push Button Electronic Igniter
    Product Dimension: 9.3\" W x 30.7\" D x 16.3\" H
    Product Weight: 19.4 lbs
    Temperature Range: 200-1500 Fahrenheit

    Package Included:
    Rod Grid x 1
    Grease Tray x 1
    Wooden Grid Tool x 1
    Silicone Oven Mitts x 2
    Sheet Metal Cooking Grid x 1
    Product Manual x 1

    Warning:
    OUTDOOR USE ONLY
    ','Boasts the infrared cooking system reaches an incredible 1500°F, serves up steakhouse-quality steaks about 2 min per side.\n6-notches in the grill rack determined the grate\'s proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies.\nGives you multiple connection options, built-in a standard 3/8” male flare fitting in the valve and regulator. It allows you to connect any 3/8” female flare hose to a big propane tank.\nOpening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it.\nPass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.','GASPRO','Silver','us',82),('B07NBM6V8X','Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown','Highlights:
    Elegant Rectangular Design
    Easy to Use
    Handles for Portability
    Includes Matching Side Table/Tank Storage
    Weather-Resistant Pit Cover

    Specifications:
    Overall Dimensions: 48\"(L) x 27.25\"(W) x 13.5\"(H)
    Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
    Weight: 84 lbs.
    Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
    Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
    BTU: 50,000
    Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
    Assembly required (with instructions)

    Package Includes:
    Fire pit
    Side table
    Glass rocks
    Hose
    Pit cover

    BCP SKU: SKY5229


    Ships and arrives in 2 separate boxes. Delivery times may vary per box.','MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s\'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: The fire pit\'s classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48\"(L) x 27.25\"(W) x 13.5\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.','Best Choice Products','Brown','us',83),('B078FBVGX6','Broil King 814154 Gem 320 Liquid Propane Grill','','24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners\nStainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer\nTherma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert\nLarge 7\"/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish','Broil King','','us',84),('B07W4JX6QS','Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper','Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
    This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
    PREMIUM
    Made of 100% high quality brass, it is extra durable and strong for long-term usage.
    Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
    CONVENIENT
    The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
    Tips:
    1. The indicator could not show the exact content of the tank but give an approximate value.
    2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
    Safe Protection
    Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
    Easy Installation
    With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
    Wide Application
    Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
    ','【2 Way Propane Hose Splitter】: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage.\n【Clear Gauge Level Indicator】 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank.\n【Premium Quality】: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using.\n【Easy Installtion】: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier.\n【Wide Application】: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.','Kohree','2 Way Propane Tank Y Splitter Adapter with Gauge','us',85),('B07M6V9BMW','Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel','','80, 000 BTU\'s, 4 Stainless Steel main burners, 900 in² total cooking area\nDimensions: 66.50\" W x 25.50\" D x 51.75\" H (Lid Closed) | Cooking Area: 17.75 x 28 in\nLed Spectrum night light control knobs and safety feature\nLift ease roll top lid. double doors for storage and easy roll locking casters\nInfrared rear rotisserie burner','Napoleon','Stainless Steel','us',86),('B01I32H5QI','Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch','This product is a 12\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
    Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
    Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
    Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.','Fire Pit Burner Ring, Diameter 12-inch\nRing Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual','Stanbroil','12-Inch','us',87),('B07ZQBMV2Y','Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV','Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...','All components are constucted of 304 stainless steel for durability and longevity\nLarge storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank\nHeight adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans\nFaux-granite counter tops for prep and storage space while looking stylish\nIncludes built-in sink and outdoor refrigerator for added functionality and entertainment value','Mont Alpi','Stainless Steel','us',88),('B07VLJZVB2','BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32\" Combination Door/Drawer Package Deal','BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32\" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.','Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375\" W x 21.25\" D x 8.50\" H\nBest of Backyard Series USA MADE 304 Stainless Steel 32\" Combination Door/Drawer Combo. Cutout: 30.125\"W x 19.125\"H x 21\"D\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures\nFull-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots','Blaze Grills','','us',89),('B01I32H7NY','Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch','This product is a 18\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
    Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
    Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
    Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.','Fire Pit Burner Ring Diameter 18-inch\nRing Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual','Stanbroil','18-Inch','us',90),('B07MHT9TQX','Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel','','66,000 BTU\'s\n4 Stainless Steel Main Burners\n760 in Total Cooking Area\nNIGHT LIGHT Control Knobs with SafetyGlow\n7.5 mm Stainless Steel Iconic WAVE Cooking Grids','Napoleon','Stainless Steel','us',91),('B003WKUNLQ','Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane','','75, 000 BTU\'s of cooking power, heats up fast and can easily sear your favorite cuts of meat\n4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking\n304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n810 sq. Inches of cooking surface including warming rack\nReliable Piezo igniters on every valve plus twin lighting system','BULL','Metallic','us',92),('B00ISKDOES','Coleman Party Propane Grill','','Compact, portable BBQ grill ideal for camping, picnics, and tailgating\nDelivers 8,000 BTUs of cooking power across grilling surface\nInstaStart push-button ignition for convenient matchless lighting\nPerfectFlow technology provides consistent performance even in extreme conditions\nDetachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area','Coleman','','us',93),('B09CKPH9ZJ','Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver','','Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways.\n2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle.\nHeat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking.\nCabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up.\nProtected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.','Royal Gourmet','Silver','us',94),('B00O4D1CUG','Standard Propane Fuel Cylinder - Pack of 3','The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600° F.','','Bernzomatic','','us',95),('B00O4D1F44','Standard Propane Fuel Cylinder - Pack of 6','Standard propane fuel cylinder pack of 6 de bernzomatic','','Bernzomatic','','us',96),('B08J3WDZCP','SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification','SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!','🔥【 FASHION DESIGN】This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc.\n🔥【 SAFE & WARM BONFIRE EXPERIENCE】 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere\n🔥【DIMENSIONS & PACKING INCLUDED】Overall table size : L32\" x W32\"x H25\", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual\n🔥【CONVENIENTLY ASSEMBLE & MULTI-FUNCTION】Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.','SNAN','Black','us',97),('B00S57U1QS','Coleman RoadTrip LX Propane Grill','','Portable propane grill ideal for tailgating, picnicking, and camping\nDelivers 20,000 btus of heat with 2 independently adjustable burners\nSwaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately)\nPerfect flow technology provides consistent performance, even in extreme conditions\nCollapsible stand folds for compact storage; Tabletop setup lets you use grill without stand','Coleman','','us',98),('B088KD4JJ4','Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)','Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

    MAIN FEATURES
    ★ Made of 600D heavyweight oxford fabric with PVC layer
    ★ Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
    ★ Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
    ★ Superb wrapped sewing makes it stronger and nicer look
    ★ Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
    ★ Come with 4 useful accessories to avoid being pierced by table\'s sharp corners

    SPECIFICATIONS
    - Brand: Saking
    - Condition: New
    - Colour: Black
    - Material: Heavy-duty Oxford with PVC
    - Shape: Square
    - Dimensions:
    29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

    PACKAGE
    1 x Square Fire Table cover
    1 x Storage bag for the cover
    4 x additional protective items

    NOTE:
    Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit','🔥 【 Perfect Fit for 28x28 Tall Square Fire Tables 】Cover size: 29\" L x 29\" W x 25\" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit)\n🔥 【 100% Waterproof Material 】 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables\n🔥 【 100% Windproof Design 】 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly\n🔥 【 Air Vents & Handles 】 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off\n🎁 【 What You Get 】 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table\'s sharp corners','Saking','Black','us',99),('B08GY9MT25','Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181','','ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction.\nGLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit.\nCONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space.\nPREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use.\nSTAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase','Bluegrass Living','Concrete','us',100),('B002PJJ0MI','Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor','','✓ HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances\n✓ EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands\n✓ DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head\n✓ HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability','GasOne','','us',101),('B0836MR1K7','PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills','1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
    2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
    3. Concealed air vent design upgrade to prevent rain into your grill.','🍀【Please measure your grill before purchase】 30\" L x 24\" W x 44\" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis.\n🍀 【Premium Sewing Technology】Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity.\n🍀 【Premium UV Resistant Fabric】 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather.\n🍀 【Secure Fit 】Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit.\n🍀 【2 Handles】 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.','PATIOPTION','Black','us',102),('B0195MZHBK','Blackstone 1650 Tabletop Grill without Hood Propane Fuelled – 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black','','Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use\nEasy to store - simply store the griddle top upside down on top of the griddle body After use to save space\nNo hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors\nSpacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability\nFast and even heating - this grill has a stainless Steel \"H\" Burner that heats up fast! The \"H\" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output','Blackstone','Black','us',103),('B001NDK8C8','Propane Weed Burner Torch','Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.','Measures roughly 22 1/2 long\n3 nozzles are included, 1-1/8”, 1-3/8” and 2”\nHooks up to standard size propane tank with 60” long attached hose\nBurns to 3000°F\nFlow control valve','','','us',104),('B004FPZACE','BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch','','Trigger-start ignition easily ignites the flame\nVersatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nAngled stainless steel burn tube\nFlame control valve easily sizes flame and extinguishes when finished','Bernzomatic','','us',105),('B00XOBY97C','Coleman Roadtrip X-Cursion Propane Grill','','Made of the highest quality materials\nCamping cooking grills\nAnother quality Coleman Signature product','Coleman','Blue','us',106),('B07CQ5ND65','Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas','The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that\'s normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that\'s perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)','Freestanding propane gas grill\n304 stainless steel grill body construction\n(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU\nflame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface\nOverall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU','Blaze','Stainless Steel','us',107),('B004BHEK5O','Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill','','4 Stainless steel burners\n48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n4 Stainless steel burners','Weber','Stainless Steel','us',108),('B009971BM6','Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch','','RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you\'ll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nTRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels.\nSATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!','Blackstone','Black','us',109),('B00LILH3V4','Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze','','Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios\nMade with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements\nPiezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided.\nSafety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility\nSecure the patio heater when not in use to avoid any potential damage to the patio heater','Amazon Basics','Havana Bronze','us',110),('B075KQ1VV2','STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black)','','FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper!\nPORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center.\nDESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen!\nHIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike!\nNO MATCHES REQUIRED: The electronic igniter ensures you won\'t be eating a cold meal, even if you lose your matches during a long hike!','Stansport','Blue','us',111),('B082MTXG5Z','Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White','','Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn\'t have this, most places won\'t fill it!\nLeading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories','Flame King','White','us',112),('B073SMX1TC','Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black','','✓ PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n✓ COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21” x W 21” x H 9.5” with total output of 58,000 BTU/HR.\n✓ BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n✓ COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately.\n✓ SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.','Outland Living','Black','us',113),('B079YB3FTK','Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack)','Larger 30 pound size for added use time on the job or at home.','High grade steel welded construction\nPremium OPD valve assembly\nX-ray and hydrostatic tested\nPowder coated for long lasting exterior protection','Flame King','','us',114),('B07Q47ZGK4','Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White','','High-grade steel welded propane cylinder\nPremium POL valve assembly\nX-ray and hydrostatic tested\nDot approved\n100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill','Flame King','White','us',115),('B078HFRNPQ','Blackstone 36\" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black','','NEW FEATURES - This unit comes equipped with Blackstone\'s new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone\'s new rear grease management system to help eliminate mess.\nRESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks.\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you\'ll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nHEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe\nTRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels','Blackstone','Black','us',116),('B082XSFG73','NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.','Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers\' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.','【Upgraded Material】: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice.\n【Wide Compatibility】: The upgraded grill cover measures 60\"(W)*23\"(D)*42\"(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering.\n【Handles & Straps & Covered Air Vents】: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off.\n【Easy to Use & Clean】: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering.\n【Reliable Customer Service and Warranty】: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.','NEXCOVER','Black','us',117),('B012RMROVG','Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze','','External Integrated Piezo Ignition. BTU\'s: 40,000. Uses a 20lb Propane Tank\nStainless Steel Lid Included\nCSA Regulator and Hose Included\nFireglass Included\nThermocouple and Anti Tilt Safety Devices','Hiland','Hammered Bronze','us',118),('B08JG6NS6L','WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17\" and 22\" Table Grill and Most LP Gas Grill with 3/8\'\' Connect Fitting','ATTENTION!!!
    Only Use for Low Pressure System.
    Please keep away from children.
    The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
    DO NOT PUT THE HOSE TOO CLOSE TO THE COOKING AREA OR IT MAY CAUGHT HOSE MELTING AND GAS LEAKAGE.','🌟Two ways to Use: If your grill is Blackstone 17 \"and 22\" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8\'\' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly.\n🌟Fits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8\" male flare connection. And it also suitable for Blackstone 17” and 22” table grill (Need to use the propane elbow adapter).\n🌟Great Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8\'\' male flare.\n🌟Material: Durable material provides secure and safe connection from your grill to other appliances. and it\'s only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use.\n🌟Please Note: Working Temperature rang: -30℃~50℃, please keep your grill away from fire in case the hose melting and result in gas leakage; ❗Only use for low pressure system, you cannot connect this kit on a high pressure application. ❗Before buying, make sure the kit\'s size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.','WADEO','','us',119),('B07Q7MCXNG','Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve','','Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn\'t have this, most places won\'t fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.','Flame King','White','us',120),('B07LBK17K9','Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)','Product Description
    This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

    Features
    Heavy duty cast iron body
    Powder coating makes it is waterproof and anti-rust
    Triple burner outputs a total whopping BTU of 225,000
    Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
    Adjustable firepower make your cook more delicious
    Removable feet make it can be easily carried or stored
    External valve CSA certification
    Specifications
    Finish: Black
    Product Type: Triple burner
    Material: Cast iron
    Item Dimensions:34”x17.5”x28.5”
    Item Weight:33.5lbs
    Hose Dimensions:0.5”x51”
    Max: 250 Psig
    BTU : 225,000
    Package includes:
    1 x Single burner stove
    1 x Instruction
    ','🔥 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious.\n🔥 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you’re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time.\n🔥 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more.\n🔥 Safety: This burner’s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook.\n🔥 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.','Goplus','Black','us',121),('B081SMW6PL','WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More','Length:12 Feet
    3/8\'\' Female Flare Fitting x 3/8\'\' Male Flare Fitting
    Attention:ONLY use for low pressure propane appliance
    Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
    Please Note:
    1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
    2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
    3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
    ','👉12 Feet long propane hose, extended propane hose with 3/8\'\' Female Flare Fitting x 3/8\'\' Male Flare Fitting, can meet your BBQ needs.\n👉Convenience: 12FT propane appliance extension hose is convenient for you. You don\'t have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances.\n👉Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting.\n👉Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More.\n👉Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.','WADEO','','us',122),('B004LZN5ES','Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve','','Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn\'t have this, most places won\'t fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.','Flame King','White','us',123),('B07PHRM55J','Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills','','【Fits Charbroil Performance 4 Burner Grills】Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills.\n【Fits Charbroil Performance 5 Burner Grills】 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 【Fits Charbroil Performance 6 Burner Grills】 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619.\nIf you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; ▲If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM.\nBurner Dimesion: 17 3/4\" x 3/5\", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16\" X 2 1/12\", Material : Stainless steel ; Original parts number: G470-0004-W1. 【Adjustable Crossover Channels with Instructions】Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\nRepair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.','Hisencn','Steel','us',124),('B00T36LG5U','ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover','','Fit\'s Double 20 LB propane tanks\nThe fabric is designed to look like a diamond plated steel and matches the plating on your vehicle\nSecures with an elasticized bottom hem and zipper\n1 cover per box','ADCO','Silver','us',125),('B00GOW6VAQ','Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White)','','Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene','Camco','White','us',126),('B00GOW6V5G','Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black)','','Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit. Patented.\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene','Camco','Black','us',127),('B07YFKY7KV','PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze','
    Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

    SPECFICATION:
    SIZE: 88\" Tall, 32\" Reflector and 18\" Base.
    COLOR: Bronze Hammered Finish
    MATERIAL: Stainless Steel
    HEAT SOURCE: Propane/Butane
    BTU OUTPUT: 46000 BTUs
    HEAT RANGE DIAMETER: 20sqm
    Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced \"Pilotless\" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
    ','Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included).\nHeat range up to 18 feet in diameter.Emits 46,000 BTU\'s of steady warmth.\nReliable pulse ignition, tip over protection system and convenient wheel assembly.\nStainless steel burners and double-mantle heating grid for optimal durability.\nOUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32\" diameter dome x 18\" diameter base x 88\" high. Zips open and closed with ease.','Pamapic','Bronze','us',128),('B002ZY0IU6','Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White','','High grade steel welded propane cylinder\nPOL valve assembly\nX-ray and hydrostatic tested\nDOT approved\nPowder coated for long lasting exterior protection','Flame King','White','us',129),('B00OXKQQYC','Coleman Propane Grill Adapter, 1-Pound','','Attaches to any full-size propane grill\nAllows for hook-up to a 1-lb. (0.45 kg) fuel cylinder\nAll brass construction','Coleman','Multi','us',130),('B087N2JQD8','Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W','Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill','Burner Dimension: 12.6\" x 1.5\" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ;\nHeat Plate Dimension: 13\" x 4\" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ;\nFits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nRepair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order.\n【Adjustable Crossover Channels with Instructions】Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.','Hisencn','','us',131),('B096N8WRF6','Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case','','Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up.\nTabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks.\nExtra Storage: Handy side pocket for your wand lighter or other BBQ accessories.\nPerfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25”.\nStorage Case included.','Taslett','','us',132),('B00OMYK83O','Camco 40572 Black Heavy-Duty Double Propane Tank Cover','','Removable top panel provides easy access to gas valves\nHeavy-duty polypropylene\nFor two 20 pounds propane tanks\nEasy to install and highly durable\nProtect your propane bottles from flying debris','Camco','Black','us',133),('B07HCVSGFL','GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC','','✓ rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather\n✓ propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one’s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\n✓ Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\n✓ individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\n✓ high quality Regulator - the double burner’s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected','GasOne','Old Style Black QCC','us',134),('B07F5233N1','ICON 12867 Deluxe Propane Tank Cover , Black','','Improves the look & value of the RV\nPart number: 12867\nFit type: Universal Fit\nPackage Weight: 10.0 pounds','ICON','Black','us',135),('B003UHVVV2','Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant','','Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn\'t have this, most places won\'t fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.','Flame King','White','us',136),('B06XWJPSDJ','GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black','','High output - exerting up to 65, 000 BTU, gas one’s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up\nHEAT ADJUSTABLE – control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank\n14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height\nSTEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use\nLow height strong frame – Gas one’s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts','GasOne','QCC','us',137),('B010Y82OQU','Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb)','','Protects Your RV\'s Propane Tank: Protect your propane bottles from flying debris\nCompatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top\nDimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D)\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer.','Camco','Black','us',138),('B077RVXR9Y','BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder','

    BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


    ※BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
    ※Material:Heavy Duty Vinyl With 300D Polyester lining.
    ※Dimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
    ※This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
    ※Easily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
    We guarantee satisfaction that if you\'re not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

    ','Material:Heavy Duty Vinyl With 300D Polyester lining.\nDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.\nThis propane tank cover is prevent your cover from experiencing premature fading and damage from the sun.\nEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit.\nWarranty- 90 Days 100% Money Back and 24 Months Guarantee.','BroilPro Accessories','Black','us',139),('B083J4G6BK','WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting','Product Specification
    Propane Burner Head :
    Material: High quality Cast Iron
    Negotiability: Air Shutter can control the amount of air coming in.
    Propane Hose and High Pressure Regulator:
    Length: 4FT/48inch
    Inlet Pressure: 25-250PSIG
    Outlet Pressure: 0-20PSIG
    Type: High pressure LPG hose

    Universality:
    Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

    Brass Fitting :
    Material: High Quality Brass
    3/8\" flare M x 1/8\" MNPT
    ','🔥Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators.\n🔥Propane Regulator: Output pressure 0-20 PSI adjustable with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8\"-18 UNF outlet connection.\n🔥Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting.\n🔥Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment.\n🔥Package Included: One cast iron high pressure burner head, one 3/8\" flare M x 1/8\" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.','WADEO','','us',140),('B0009PUR5E','Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner','','COOKING POWER: Up to 10,000 total BTUs\nPRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions\nPERFECTHEAT DESIGN: More efficient cooking with less fuel\n1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan\nWIND BAFFLES: Shield burner from wind for maximum heat','Coleman','Green','us',141),('B00Z4T34CI','Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks','This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800° Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.','Dimensions: 21L x 21W x 29.1H inches\nUses standard liquid propane gas tanks\nSteel frame and stainless steel burner\nFire-retardant, inorganic material exterior','Red Ember','','us',142),('B00KY4S388','Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU','','✓ PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n✓ COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19” x W 19” x H 11” with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI\n✓ BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n✓ COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately.\n✓ SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual','Outland Living','Black','us',143),('B01M4SA4PG','GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More','

    Product Specification

    -High pressure LPG hose

    -Inlet Pressure:25-250PSIG

    -Outlet Pressure :0-20PSIG

    -Flow Capacity :122000 BTU/Hr

    -Certificate: CSA

    -Length of hose:4feet/48inch


    How to use it?

    1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

    2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

    3.Installs is not complex at all, even you don\'t need any tool required.

    This is an essential part of converting your fire pit/table to a best flame


    What equipment can it be used for?

     Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,  turkey fryers,torches and variety of high pressure applications


    Are you still worried about not being able to accurately adjust the temperature of the smoker/range?  

    This regulator will not make your smoker/range temperature too high or low,You can use it to precisely adjust the temperature of your device.


    Are you still worried about the small flame of your grill?

     If you have this propane regulator,you can really crank up the flames for quicker,Made your grill heat better than when it was new.


    Warm Tips

     1. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

    2. Not suitable for appliances which need low pressure regulator

    ','[Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature.\n[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8” male flare connector\n[Extra gift] Come with pipe fitting 3/8\" flare M x 1/8\" MNPT Orifice, it fits all Propane Appliances with 1/8 Male\n[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder.\n[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off','GASPRO','Black','us',144),('B01M2DKPX0','GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure','Features:
    ● Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

    ● Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

    ● Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

    ● Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

    Specification:
    - Low Pressure LPG hose
    -Inlet Pressure: 25-250PSI
    -Outlet Pressure: 11\"W.C.
    -Flow Capacity: 95000 BTU/Hour
    -Certificate: CSA -Hose Length: 6feet/72inch

    Warning: Only for OUTDOOR Use.','【Standard Connector】Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16\" diameter LP hose\n【Diverse Use】Fits for propane grill, camp stove, fire pit, heater, water heater, etc\n【100% Safety】Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank\n【Control Gas Flow】The Outlet Pressure of the regulator is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels\n【Nice Length】 6 FT long enough hose allows for flexible configurations','GASPRO','Black','us',145),('B08XYJP6DZ','Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray','','Never run out of propane - Built-in accurate gauge\nThe HOG can be used both vertically and horizontally\nEZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges.\nNew design with built in wheels for ease of transport\nRugged, high grade steel welded construction','Flame King','Gray','us',146),('B07DP2KKWT','Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979','Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.','Plastic Trailer\nAbout 6 Inches Long\nComes in Clear Plastic Box\nFore Ages 14 and up','Tonkin','','us',147),('B01KGKFPM6','Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose','','Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one’s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\nRugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize\nAdjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\nIndividual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\nHigh quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected','GasOne','Black','us',148),('B07621BM5H','Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)','Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs','Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood\nSuperior refractory ceramic logs are reinforced with steel rods for greater integrity\nEfficient design helps preserve and protect natural resources\nThis Peterson Real Fyre gas log set is designed for indoor use only\nIncludes Auto-Safety Pilot control valve and Flexible Gas Connection Kit','Peterson Real Fyre','Live Oak (LP) (includes gas connection kit)','us',149),('B07MCNNWW8','Kitma 13\" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU','

    KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

    Commercial Liquid Propane Work Range Feature:

    ●Durable stainless steel structure - gives the unit superior corrosion resistance and cleanability

    ●Heavy duty burners - provides stable flame to fry food quickly

    ●Adjustable stainless steel legs -adjusts the height of griddle to meet your needs

    About Product:

    Size: 34 \'\'×20.8\'\'×17.9\'\'

    Total BTU: 95,000BTU/h

    Intake-tube pressure: 10 in.W.C.

    Nozzle No: #67

    Package Includes:

    Work Range*1(completely installed )

    Instructions*1

    ★About us:

    We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform “maintenance staff on-site service” within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

    ','【Continuous Pilot】Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs\n【Powerful 95,000 BTU Burner】This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you\'ll need to cook. And it measures 13\" in diameter to accommodate your different size wok\n【Stainless Steel Construction】This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service\n【Easy to Load and Adjustable】This unit\'s rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface\n【Quality Warranty】Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition','kitma','Silver','us',150),('B00VG0S56Y','Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More',' Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

    Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection:

    ● Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

    ● Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

    ● Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

    ● Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

    Care and Use
    ► Allow grill to cool before covering.
    ► To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
    ► Air dry for next use.

    Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.','【Upgraded Material】- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements.\n【Handles and Straps】- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5” wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off.\n【Covered Air Vents】- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds.\n【BBQ Grill Cover Dimension】- 60 inch grill cover measures 60\" width by 23\" depth and 42\" height, fits most grills with 3 to 4 burners, width between 53” and 58”. ﹡Not designed to cover the wheels entirely, the grill could be moved freely with cover on.\n【Wide Selection】 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"UNICOOK\" button on top to find the right cover to protect your grill.','Unicook','black','us',151),('B001RU04XK','Coleman Fold N Go + Propane Grill','','Portable folding grill with built-in handle for easy transport and storage\nDelivers 6,000 BTUs of heat across 105 sq. in. of grilling surface\nAdjustable horseshoe burner for precise temperature control and even heating\nInstaStart button ignites grill without the need for a match or lighter\nRemovable dishwasher-safe cooking surface and grease tray for easy cleaning','Coleman','Red','us',152),('B00PHNN5VG','Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)','','Protects Your RV\'s Propane Tank: Protects your propane gas tank from flying road debris\nCompatibility: Fits 20 lb. steel double tanks\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer\nDimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)','Camco','Black','us',153),('B00008ZA0C','BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head','','Manual start (light with a Bernzomatic Spark Lighter, sold separately)\nBasic pencil flame for small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nBrass construction for durability\nFlame control valve easily sizes flame and extinguishes when finished','BernzOmatic','Copper','us',154),('B00FWKVGQ0','Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU','','PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\nNO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24” x W 24” x H 13” with total output of 58,000 BTU/HR.\nBEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\nCOMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately.\nSIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual','Outland Living','Black','us',155),('B07GQZ1LGP','JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers','\'\'JIESUO\'\' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

    DIMENSIONS
    This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

    HEAVY DUTY MATERIAL
    This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

    WATERPROOF
    The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

    UV RESISTANT
    UV and fade-resistant fabric material prevents damage from the sunlight.

    WIND-RESISTANT
    Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

    GOOD STITCHING, EFFECTIVE PROTECTION
    Superior textile process, \'Precision Two-Thread Stitching\' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

    SPECIFICATION
    Material: 100% 600D polyester fabrics
    Product Dimensions: 60\" L x 24\" D x 44\" H
    Package Included:
    1* JIESUO 60 In Gas Grill Cover
    1* Storage Bag

    JIESUO grill cover design concept is to solve past pain points, improve user experience.
    You get what you pay off.
    At last thank you for your purchase.','DIMENSIONS - This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.)\nUPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills.\nGOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, \'Precision Two-Thread Stitching\' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it\'s sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it.\nConvenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain.\nEasy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.','Jiesuo','Black','us',156),('B07433QCTC','SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure','Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8\" Male Flare Connector)

    1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
    2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
    3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
    4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
    5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

    Q: How do you know if you need a parallel or vertical low pressure regulator hose?
    A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

    Attention:
    1.For Outdoor Use Only.
    2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
    3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
    4.Keeping the hose away from HIGH TEMPERATURE.

    Product Specification:
    Certificate : CSA
    Outlet Pressure:11’’W.C.
    Flow Capacity: 80000 BTU/Hr
    Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
    Please double check your appliance connection to see if it has a 3/8’’ Male Flare Fitting Connector.','【Standard Connector】 Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16\" diameter LP hose\n【Multi-Purpose】 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n【Durable & Sturdy】 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank\n【Control Gas Flow】 The gas grill regulator and hose\'s Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n【Perfect Length】 Gives you plenty of length, allowing for flexible configurations','SHINESTAR','','us',157),('B07CZ8H9V4','Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)','Description
    This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

    Features
    Heavy duty cast iron body
    Powder coating makes it is waterproof and anti-rust
    Equipped with a cast iron head, outputs a whopping BTU of 100000.
    Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
    Adjustable firepower make your cook more delicious
    Removable feet make it can be easily carried or stored
    External valve CSA certification

    Specifications
    Finish: Black
    Product Type: Single burner
    Material: Cast iron
    Item Dimensions:15.5”x15.5”x17”
    Item Weight:13lb
    Hose Dimensions:0.5”x51”
    Max: 250 Psig
    BTU : 100000
    Package includes:
    1 x Single burner stove
    1 x Instruction','Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up.\nCast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious.\nCooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time.\nDetachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage.\nSafety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)','Goplus','Black','us',158),('B088CYL9WB','Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table','This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

    As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

    The fire pit table has solid construction and is easy to assemble.

    40,000 BTU propane gas fire pit, square steel firebowl.

    Note:
    The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
    Lava rocks shown in photos are decoration only, and are NOT included.
    Batteries: 1 AA batteries required (NOT included).

    Product Specifications:
    Chair materials: Powder-coated steel, olefin fabric
    Chairs size: 27.5\" (W) x 30.5\" (D) x 33.7\" (H)
    Load of chair: 200lbs-300 lbs
    Chair package Includes: 4 Chairs, tools needed, assembly guide

    Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
    Firetable size: 31.8\" (L) x 31.8\" (W) x 24.2\" (H)
    Firetable package included: 1 x 32 inch gas fire pit table

    Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

    Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.','FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we\'ll sort you out in 24 hours.\nCOMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces.\nSTURDY & DURABLE: Chairs and table\'s frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles.\nFEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included.\nHIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.','Grand patio','Grey-Brown','us',159),('B00005OU9D','Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches','','Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time\n2 adjustable burners: For precise temperature control\nWind-blocking panels: Shield burners from wind\nPressure regulator: Pressure-control technology for consistent performance, even in extreme conditions\nRuntime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)','Coleman','Green','us',160),('B004FPZAA6','Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar','','Engineered design for lightweight strength\nRugged, damage resistant all steel construction\nRust inhibiting Durabond powder coat paint\nInteriors that are clean, dry and scale free\nComfortable hand-holds in the collar for easier lifting','Worthington','','us',161),('B07RJDY54G','GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS)','Converts 1/4\" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

    For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

    Please double check your propane appliance connection before you order.
    (2 PCS)','Standard P.O.L. tank connection and 1/4\" male NTP to male POL, built-in excess flow protection(2 PCS)\nProvides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks\nUse for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly\nIt fit for BBQ, camping stoves, propane heater, or cooking outdoor\nEasy and quick to install to your propane equipment','GasSaf','2 pack','us',162),('B00L1RSKHQ','KitchenAid Built In Head Propane Gas Grill in Stainless Steel','','Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions\nNo assembly required\nPackage Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H\nFull stainless Steel construction','KitchenAid','Black','us',163),('B07P5KPZ1T','GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit','GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.','【Adjustable Propane Regulator】 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n【Accurately】 You can accurately adjust the pressure according to the built-in gauge dial\n【Durable and Chew-proof】 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n【Perfect Fit】 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n【Brass Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare','GASPRO','','us',164),('B085Y769KW','TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch','TheElves heavy duty waterproof Fire Pit/table Cover:
    1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
    2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
    3#. Waterproof design and air vents at sides can keep fire pit/table dry.
    4#. Double stitched seams add the strength of cover.
    5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
    6#. Protect fire pit/table from UV, rain, dust, bird\'s dropping etc.
    7#. Come with four useful accessories that prevent the cover from being scratched.

    Package Include:
    1 x Fire Pit Cover
    1 x Storage Bag
    4 x Accessories That Prevent The Cover From Being Scratched

    TheElves Team:
    ---We are the producers of covers.
    ---We provide high quality covers.
    ---We provide efficient logistics.
    ---We provide satisfactory customer service.','Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table.\nDurable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant.\nWater-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry.\nWindproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated.\nExtra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.','TheElves','Square','us',165),('B07W87SKTP','5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More','It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
    The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
    The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

    Specification
    - Length: 5 feet / 60 Inch/152.5 cm
    - Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
    - Inlet Pressure: 25-250PSIG
    - Outlet Pressure: 0-20PSIG
    - Max.flow capacity:136000BTU
    - End Connector: 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

    * The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
    * There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
    * This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

    Note:
    1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
    2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
    ','Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8\" flare M x 1/8\" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nAdjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator.\nHigh quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off.\n100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances.\nNo tools needed, easy and quick attachment for easier installation.','DOZYANT','','us',166),('B095JY9XMN','Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)','

    Have you already start the wonderful Barbecue party?
    Is your grill still look as new as you bought it?

    BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
    BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

    How does the Grill Cover protect your expensive grill?

    1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
    600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
    Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

    2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
    With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

    3.Extra Larger Design Ensure to Fit Various Kinds of Grills
    According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58\"x24\"x48\")fits most brands of grills, such as Weber, Char Broil etc.
    And, it also fits well for the 2 3 4 burner gas grill.
    Warm tips: Please measure your grill first before purchasing!

    4.Handle,velcro straps, Vents
    The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
    The convenient velcro straps ensure tightness for extreme outdoor conditions. Don\'t worry the grill cover will be blown off.
    The vents help keep you expensive grill ventilation.','FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58\"x 24\"x 48\") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly\nRIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring\n600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc\n100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don\'t allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area\'s all year\'s rainy day\n2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don\'t worry to have it outside on a typical wet and stormy day','Zovoty','Black','us',167),('B07QP6RCJW','GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS)','Propane Tank Gauge
    Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
    Easy to Attach
    It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
    Solid Brass Withstands Weather, Scratching, Denting and Corroding
    Color Coded Dial for Easy Viewing
    How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak','1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks\n2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement.\n3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety\n4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy.\n5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.','GasSaf','2 pack','us',168),('B001DC5HBG','Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)','','Handy five-foot Propane Hose and Regulator Assembly tube\nFunctions as an extension cord for your outdoor propane appliances\nDesigned for use with Stansport\'s cast iron propane stove models 208, 209, and 210\n11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity\nNot universally compatible with all brands, Use caution when using propane appliances, For outdoor use only','Stansport','Black','us',169),('B00CRW6ZP8','Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head','','60, 000 BTU\'s of cooking power, Liquid Propane Outlaw Drop-In Grill Head\nUnit Dimensions: 32.25\" W x 24.12\" D x 21.25\" H | Cooking Grid Dimensions: 30 X 19\"\nWarming Rack 210 Sq. In. | Cooking Surface 810 Sq. In.\n5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking\n305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates','Bull Outdoor Products','white','us',170),('B00IREGQAE','Weber 62753 19-1/2\" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer','Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.','19-1/2\" Weber LP SEAR Burner Tube.\nFits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.','Weber','','us',171),('B007O0MIIG','Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze','','39-Inch tall portable glass tube patio heater\nHammered Bronze finish. Quartz Glass Tube\nHeat output: 9500 BTU\'s. Electronic Ignition\nGas type: Propane\nUses a 1 lb propane tank (lasts 2-3 hrs. on high)','Hiland','Bronze','us',172),('B001EHKQ2A','Stansport Single Burner 5,500 BTU Propane Stove, Black','','Durable heavy gauge steel with baked on enamel finish\nIndividual regulator on/off control knob adjusts burner up to 5500 BTU\'s\nStove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included)\nWind baffles supports cookware and shields burners\nLow profile base for stability','Stansport','Black','us',173),('B016YLUXLE','Propane Fuel Cylinders, 4 pk./16 oz.','

    Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

    ','8.0 LBR\n310326 332418 335648 333264\n014045324069','Coleman','','us',174),('B00NG14614','Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5\", Bronze','','Includes lid, stones, tank holder, gas hose and regulator\nSteel frame with rubbed bronze finish\nUses 20 pound propane tank (not included) and has a 50,000 BTU output\nSafe for wood decks and great for camping or tailgating\nDimensions are 18.5\" wide and 14.7\" high','Bond Manufacturing','Bronze','us',175),('B06WLHJ8GJ','Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))','
    Fellie Cover BBQ Grill Cover---Provide full protection for your grill

    Wide Compatibility:
    This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill\'s dimensions for proper fit.

    Adjustable Funtion (Wind-proof):
    Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

    Water-resistant:
    This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

    Durable Burner Gas Grill Cover:
    Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

    Firm Protection:
    Double stitching (Sewing), which is more durable than one-line stitching.

    Easy Installation:
    You can easily put this grill cover on or off.

    Easy to store/carry:
    Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

    Note: Please keep away from open flame and other sources of ignition.


    Item Color: Black
    Package included
    1 * Grill Cover
    1 * Packing Bag','Find the Perfect Cover - Measures 75\"Wx28\"Dx46\"H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill\'s dimensions for proper fit\nDurable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round\nEasy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds\nSecure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won\'t blow away in the wind\nEasy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage','F Fellie Cover','','us',176),('B094MW12HR','SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black','Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)','DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill\nPROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.\nWATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank.\nEXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage.\nGREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.','SIRUITON','Upgrade-2','us',177),('B01MXN574C','Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black','Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

    High Quality
    The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

    Fit More Brands
    The barbecue grill cover fits many brands. The size is 72” long * 26” deep * 47” high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

    Advantages
    1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
    2.The grill cover inside has a weather proof liner so you don\'t have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

    Easy to Install
    Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

    Package includes
    1*BBQ grill cover
    ','Dimensions: This Homitt bbq cover measures 72\"L x 26\"W x 47\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHandles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill\'s dimension for proper fit before purchasing).','Homitt','Black','us',178),('B000WB2BH2','Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A','','Regulator and hose ready to use\nHose length: 150cm (59in)\nConnecting outlet: 5/8\" Unf\nIncompatible with Bunsen burner','GasOne','Brown/A','us',179),('B00D3P0QAI','Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel','','','Thermo Tiki','Stainless Steel','us',180),('B00ED9WMNC','Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black)','','Replacement cap for new style RV propane tank covers\nFunctional design for easy access to both propane tanks and changeover regulator\nIncludes attachment hardware\nMade of heavy duty, UV stabilized polypropylene\nBlack','Camco','Black','us',181),('B074W2B6M8','Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black','','DIMENSIONS: This Homitt bbq cover measures 60\"L x 28\"W x 44\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill\'s dimension for proper fit before purchasing).','Homitt','Black','us',182),('B00KM9ATAA','EDMBG 3 Pack Gas LIGHTERS 11\" Refillable Butane BBQ Kitchen Fireplace Grill Utility','BBQ Grill Lighters - Extended Reach - 11\" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!','Extended Reach - 11\" total length\nSafety Lock - to keep safe from the little ones\nFlame Size Regulator - for all condition\nRefillable','EDMBG','Multicolor','us',183),('B00IZCNOXK','Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black','','RV/TRAILER COMPATIBLE - Flame King’s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are!\nCOMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface\nMOUNTABLE or FREE STANDING – The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping!\nSECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces\nPLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48\" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96\" Quick Connect Regulator Hose, Item LPRH8','Flame King','Silver','us',184),('B00FL8LL7M','Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb','','Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it\nOur fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes\nHeat Rating: Higher temperature when compared to logs, lava rocks, stones, etc.\nIdeal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires\nAvailable in 10 and 20 pounds','Hiland','Bahama Blend','us',185),('B07Y337Y8T','COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover','','✅【 Great Bowls of Fire! 】: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party’s just begun in patio space or backyard.\n✅【 Rockin’ Bowl 】: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob.\n✅【 Fire is so Delightful 】: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady.\n✅【 Weights and Measures 】: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you’ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people.\n✅【 Warranty and Service 】: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!','COSIEST','Greyish-Green','us',186),('B07Z3MSPMV','BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze','This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.','☀LIGHT WEIGHT AND PORTABLE – This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU\'s\n☀SAFTY DESIGN –The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident\n☀WILDLY USE – Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use\n☀EASY AEESEMBLY – BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour\n☀MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating','BALI OUTDOORS','bronze','us',187),('B00I8IY6E2','Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White','','For use on propane powered floor waxing, burnishing and polishing machine that use propane.\nComes with convenient installed propane level gauge, so you can always tell how much propane you have.\nPowder coated for long lasting exterior protection\nNewly designed all-in-one multi valve\nPowder coated for long lasting exterior protection, high grade steel welded construction','Flame King','White','us',188),('B014DAVHSQ','ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer','','300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use\nDual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions\nFood and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ\nConvenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything\nHigh accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32°f to 572°f (0°c to 300°c) and high accuracy of 1. 8°f ( 1°c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings','ThermoPro','Orange','us',189),('B000QYNUXE','Garcima Paella Dual Ring Butane/Propane Gas Burner, Black, 40 cm','','Fits 22 inch paella pans and smaller.\nTwo concentric rings of flame, each independently controlled by its own knob.\nOuter ring is 16\" in diameter. Inner ring has 8 1/2\" diameter.\nGreat for making paella, camping, outdoor kitchens, and brewing beer.\nMade in Spain. CE certified.','La Paella','Black','us',190),('B000QYNUXE','GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro','','Medidas: 400mm.\nColor negro.\nMuy práctico y fácil de usar.\nArticulo también conocido como hornillo, hornilla cocina, fuego paellas.\nIdeal para cocinar con paellera.','Garcima','Negro','es',190),('B07XKXSSND','SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty','

    Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

    This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

    Lightweight, Heavy Duty Design

    The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

    Easy to Use Trigger Start

    The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame’s output. Effectively treat small and large areas with this torch.

    A Safe Long-Reaching Handle

    The handle reaches 34” in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

    One Year Warranty

    Backed by our 1 year USA warranty against manufacturing defects. We are based out of Denver, CO, and offer customer service and support via phone, text, and e-mail.

    ','OUTDOOR UTILITY TORCH ✔ Great for use in gardening, construction, grill ignition, and more.\nTRIGGER START ✔ Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame’s output.\nLIGHTWEIGHT, HEAVY DUTY ✔ Slip-resistant foam handle for maximum comfort.\nLONG-REACH KEEPS YOU AT A SAFE-DISTANCE ✔ Reaches 34” in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire.\nPOWERFUL ✔ 20,000 BTU output, fully adjustable via knob.','SPARC','Black','us',191),('B07X6CJ99H','WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More','4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material:PVC、cuprum
    Length:  4 Feet
    Weight : 20.46oz
    Inlet Pressre: 25~250 PSIG
    Outlet Pressure: 0~30 PSIG adjutable
    Gauge reading: 0 – 60 PSI (1- 400 xkpa ) 
    Outlet Connection: 5/8\"-18 UNF Female flare swivel fitting( 3/8\" SAE)
    Certificate: CSA
    Max. flow capacity:
    150,000 BTU/hr.
    Works with QCC1/ Type 1 propane tank
    ','Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\nEasy and quick to install. Type 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch).\n3/8” female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8\" male flare connector.\n3/8\" Female Flare Fitting has an outside diameter of 5/8\", come with pipe fitting 3/8\" flare M x 1/8\" MNPT.\nCSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.','WADEO','','us',192),('B01M2YIWRF','Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover','','Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H\nGardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt\nClick-close straps snap at front to secure cover on the windiest days\nElastic hem cord for a tight and custom fit\nAir vents reduce inside condensation and wind lofting','Classic Accessories','Pebble','us',193),('B07263CMYG','KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection','Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
    Specifications:
    -Hose Length: 4 Ft/48 Inch
    -Inlet Pressre: 25~250 PSIG
    -Outlet Pressure: 0~30 PSIG adjutable
    -Outlet Connection: 3/8\" Female flare swivel fitting','Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose.\nBuilt-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator\'s Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it\'s defective itself.\nType 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL.\nEasy and quick to install. Perfect for propane forge/foundry.\nPlease DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.','KIBOW','0~30PSIG','us',194),('B07JNK5CHG','High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU','Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.','Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings\nPowerful 100,000 BTU/Hr + burner\nIncludes hose and regulator and only requires standard size propane tank\nDimensions: 13\" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs\nMatchless ignitor','LW','','us',195),('B07TNWQV77','XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn','High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day’s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15\"(W) x 15\"(L) x 13\"(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove','From tailgating to the backyard chef, cook-off chili to the day\'s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable\nWide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control\nPerfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting\nCooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days\nEasy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy','XtremepowerUS','Black','us',196),('B00NCSUZBQ','Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size','','New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nBurner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems','Magma','Multi','us',197),('B00NVUUPEM','Coleman Propane Fuel Case of 6','Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.','','Coleman','','us',198),('B0765BJV74','Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant','','The 58\" x 24\" x 48\" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information!\nSecure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions.\nEasy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come!\nRegardless of what you\'re looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover.\nPlease click the \"Visit the Grillman Store\" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!','Grillman','Black','us',199),('B00ARJOTSI','Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment','Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

    THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.','Liquid propane gas bunsen burner\nAluminum burning mixer tube with brass flame stabilizer\nAccepts 6 to 8mm tubing\nBase diameter - 80mm, height - 160mm, burner tube diameter - 13mm\nDie cast zinc alloy base. May come with a gold or blue base.','EISCO','','us',200),('B01LYQLDVJ','Stanbroil 3/8\" X 18\" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace','Key Features:

    - This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
    - Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
    - Provides extra corrosion protection from accidental contact with common household chemicals.
    - Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

    Compatibility:

    ✔ Propane
    ✔ Natural Gas
    ✔ Gas Fire Pits
    ✔ Gas Fireplaces
    ✔ Gas Log Sets

    Tips for checking and addressing problem of whistling

    ➤ Flex Line Problems:
    1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
    2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
    3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

    ➤ Gas Pressure is Too High
    ~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

    ~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
    . Natural gas: Between 3.5” WC and 7” WC.
    Propane: 7” WC and 11” WC
    ','Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance\n3/8\" OD x 1/4\" ID 18 inch Stainless steel pipe coated black gas line with fittings\n3/8\" Male Flare x 1/2\" Male NPT fitting end, 3/8\" Male Flare x 1/2\" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience\nCSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners\nThere is a staggered pitch every 2\" to Eliminate Whistling','Stanbroil','Black','us',201),('B078K8DSXC','Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet','','✓ A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances\n✓ LONG LASTING AND DURABLE - Gas One’s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience\n✓ MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside ⅜-inch flare fitting and has an outside diameter of ⅝ inches\n✓ READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use','GasOne','','us',202),('B08TRF6CMF','samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only','20lb Propane Tank Gas Cover','【Fit Well】: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better.\n【Outside Storage Pocket】: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage.\n【Humanized Design】: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow.\n【Stable Tabletop Feature】: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank.\n【Protect Your Tank】: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.','samdew','','us',203),('B078RGBKN7','SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included','Get it, you can control the temperature of your appliance exactly what you want

    Description
    0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
    This is an essential part of converting your fire pit/table to a larger flame
    Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
    Comes with a brass orifice connector, 3/8\" Flare M x 1/8\" MNPT
    SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

    Feature
    Length: 5 feet/ 60inch
    Hose Connection: QCC1/Type1 x 3/8\'\' female flare fitting
    Outlet Outside Diameter: 5/8\"-18 UNF
    Orifice Fitting Connector: 3/8\" Flare M x 1/8\" MNPT Pipe Fitting
    Gas Flow: 120,000BTU/Hr
    Material: Durable rubber hose and solid brass fitting
    Warm Tips
    - In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
    - Please double check your propane appliance/adapter connection is 3/8\" Male flare fitting

    Note: For Outdoor Use Only.
    ','【Adjustable】 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need\n【Multi Purpose】 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n【Well Made】 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security\n【Standard Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare\n【Extra Bonus】 Comes with a brass orifice connector with 3/8\" Flare M x 1/8\" MNPT','SHINESTAR','Black','us',204),('B07D9GZ43Y','SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit','ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your\'re trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves','【Quick & Handy】 Propane hose extension is designed for extending the propane line on gas appliances.\n【Multi-Purpose】 Works with RV, griddle, grill, stove, fire pit, heater and so on.\n【Exclusive Material】 Made from braided stainless steel and solid brass, rust-proof & leak-free.\n【Perfect Length】 6-foot long, more flexible to move grill anywhere you want.\n【Brass Fittings】 3/8 inch female flare fittings on both ends.','SHINESTAR','','us',205),('B0771WRDGT','Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16\" Square','

    The Concord single propane burner is built like a tank.

    Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

    For the holiday season, this is the perfect burner for your turkey fryer.

    To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go….

    For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






    Measurements: Burner Stand 16.5\" Wide x 16.5\" Height

    Burner head is 10\" Wide.






    Concord burners - make every outing count.

    ','Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x16.5\".\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.','Concord','Black','us',206),('B083GGFXFT','SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges','SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

    Description
    ✔ Ability to check the fuel level without having to remove the tank.
    ✔ Checks for leaks on propane appliances
    ✔ See at a glance when your propane level is low
    ✔ Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

    What is it use for?
    It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
    How to detect leaks?
    To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

    ★ NOTE: Will not read levels immediately: begins working when propane is flowing
    ','【Awesome Connection】 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L.\n【Double Function Gauge】 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety\n【Multi-Purpose】 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking\n【Easy to Install】 It only takes 1 minute to screw it on by hands. Installation is a snap.\n【Standard Adapter】 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.','SHINESTAR','','us',207),('B077TFYR4T','Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage','','Rich heritage finish\nPropane ready (fuel conversion not permitted)\nUp to 20, 000 BTU\'s/hr heats up to 700 sq. Ft\nThermostat control knob automatically maintains your ideal heat level\nWall or corner installation options included','Pleasant Hearth','Rich Heritage','us',208),('B09B76PJKX','Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)','Want to make your gas tank durable enough to serve you for a long time?
    We sincerely recommend our propane gas tank cover bag to you!

    Features
    1. Measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder
    2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
    3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
    4. Easy to pick up or place the gas tank and open or close the valve
    5. With four ventilation grommets, two side pockets and thick carrying handles

    Specification:
    Color: Black
    Size: 12.5\" x 19.4\"
    Material: 600D Oxford Cloth','[Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it\'s absolutely perfect for placing it next to your outdoor grill or camping stove.\n[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank.\n[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table.\n[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve.\n[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don\'t strangle your hand at all.','PAMASE','Black','us',209),('B07B8SN67W','Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane','Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you\'re hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.','DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output\nSTAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment\nKEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements\nPUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start\nEASY CLEANUP: Full-width drip tray offers quick and easy cleanup','Blaze Grills','Stainless Steel','us',210),('B08KHCX3CW','Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose','','','Dumble','','us',211),('B078KPHKZD','ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer','','Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to ±0.9 degree Fahrenheit\nSuper long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands\nLock function: Kitchen thermometer can lock the current temperature; the reading won’t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included\nBacklight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\nWide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking','ThermoPro','Orange','us',212),('B07FC7KCJD','GASPRO 6-Foot Propane Hose with 3/8\" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided','Feature:
    Hose Length: 6ft
    Connector: 3/8\" female flare fitting x 3/8\" female flare fitting.
    Material: Stainless steel braided.

    Warning: Only for OUTDOOR Use.
    ','【Awesome Extension】 Extend your existing hose to reach the gas appliance. No need to carry a large tank around.\n【Widely Applied】 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more.\n【Nice Length】 6 feet in length allows getting more distance and moving around where it is needed.\n【Durable & Chew-Proof】 Stainless steel braided hose effectively reduces damage caused by friction and animals.\n【Standard Connector】 3/8\" female flare fitting x 3/8\" female flare fitting.','GASPRO','Steel','us',213),('B07W6MTWVF','Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank','Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank','【Application】: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter.\n【Multipurpose】: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating.\n【Very Cost Effective】 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more.\n【Easy to Use】: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance.\n【Safe Connection】: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.','Kohree','Black','us',214),('B07PYVNJ2Z','GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More','How to use it:
    The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

    Great for:
    RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

    Warning: Only for OUTDOOR Use.','【Well Gas Control 】Two-stage regulator results in a more consistent inlet pressure between the first and second stage\n【Standard Connector】QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare\n【Outlet Pressure】11\" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow\n【 Compatibility 】Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more\n【 High Quality 】 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank','GASPRO','Black','us',215),('B000C77UYA','Manchester Tank & Equip 10393.1 11lb Propane Tank','','Colonial white powder coated finish\nVertical cylinder design\nProduct weighs 11 pounds\nAll cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E\nAll Manchester cylinders are triple tested with dry pneumatic air','Manchester Tank','','us',216),('B016NA3XAO','DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU','','High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes.\nMade to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors.\nIndoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you\'ve been looking for.\nPropane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator.\nQuality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.','DuraSteel','','us',217),('B08S3533D9','Folocy 14 1/2\" x 6 1/4\" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC','SPECIFICATION:
    Material: Stainless Steel
     Products Included: Set of 3 × Barbecue bbq grill pipe burner replacement

    ADVANTAGE
    Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
    ','Dimensions: 14.5 x 6.25 inch (14 1/2\" x 6 1/4\"), Material: Stainless Steel Center-fed Pipe Burner\nSuperior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use.\nFit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nEasy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water.\nNotices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend removing the original part and comparing it to our bbq grill parts.','Folocy','','us',218),('B012ZY1RNM','Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black','','Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks\nLid makes accessing propane tanks easier and more efficient\nKit includes hardware needed for installation\nConstructed of UV-stabilized polypropylene\nBlack','Camco','Black','us',219),('B07SB2Q8X7','GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit','GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
    The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
    If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
    The propane hose body is made of stainlesssteel it will long lasting for your appliance
    This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

    Specification
    - Length: 12feet / 144 Inch/366 cm
    style=\"margin-left: 5.25pt;\"
    - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
    - Inlet Pressure: 25-250PSIG
    - Outlet Pressure: 0-30PSIG
    - Max.flow capacity:136000BTU
    - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

    Warm Tips
    -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
    -Not suitable for appliances which need low pressure regulator
    ','【Adjustable】 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n【Accurately】 You can accurately adjust the pressure according to the built-in gauge dial\n【Durable and Chew-proof】 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n【Perfect Fit】 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more\n【Brass Connector】 P.O.L. x 3/8″ Female Flare, orifice connector with 3/8\" Flare M x 1/8\" MNPT','GASPRO','','us',220),('B074MDC1JV','Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating','','Item size: 56.7in x21.3in x24in\nFull Stainless Steel Burner and High Quality constructure\nHeat resistant tempered glass wind guard included\nLava glass, table lid and a protection cover included\nUse with 20lb. propane tank (not included) ETL Approved','LEGACY HEATING','WOOD BRUSHED','us',221),('B00PKVS3HG','Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray','','Safely heats cylinder to an optimal 90 ° F / 32 °C (± 10 °F/5 °C)\nSaves money by optimizing gas and material usage\nIncrease flow rate performance and efficiency of gas cylinders\nEliminate unnecessary cylinder refills in cold weather\nCertified to UL/CSA/CE standards','Powerblanket','Charcoal Gray','us',222),('B000P9GZSW','Texsport Portable Outdoor Propane Heater','','Sport Type: Camping & Hiking','Texsport','Silver','us',223),('B096VKRVW5','GCBSAEQ ​1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8\" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part','Product specifications
    Type: 1LB Propane Tank Regulator
    Connection 1: 1LB female connector (1\" x 20 female throwaway cylinder thread)
    Connection 2: 3/8\" Male flare connector(5/8\"-18UNF Thread)
    Material: Brass
    Package: 1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.
    Easy to install
    1LB propane regulator to 3/8\" male flare adapter is convenient and quick to install, just need to rotate manually.
    Safe to use
    1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.
    Applicable scene
    1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose‘s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
    Material
    1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
    Note
    1. Please check your connector before ordering.
    2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
    3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don\'t use it.
    4.Propane elbow fitting adapter is only suitable for Blackstone 17\" and 22\" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
    ','★【Package】1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.\n★【Safe to use】1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.\n★【Applicable scene】1LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose‘s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.\n★【Notice】1LB propane camp grill stove regulator connection to 3/8\" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder.\n★【Quality Assurance】1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.','GCBSAEQ','3/8\" to 1LB','us',224),('B004KH4LAE','Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze','','Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included\nPatio heater dimensions: 21.5\" W x 21\" D x 91\" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top – 36”/91.4cm. Side – 24”/60.9 cm\nIncludes a reliable igniter and a Safety auto shut off tilt valve\nUses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU\nThe latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction','Hiland','Hammered Bronze','us',225),('B07ZGHCR2M','12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator …','

    You can control the temperature of your appliance exactly what you want

    ✅The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

    ✅If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

    ✅Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator\'s Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

    Specification

    - Length: 12feet / 144 Inch/366 cm

    style=\"margin-left: 5.25pt;\"

    - Apply to: propane burners, stove, gas grill, turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

    - Inlet Pressure: 25-250PSIG

    - Outlet Pressure: 0-30PSIG

    - Max.flow capacity:136000BTU

    - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

    Warm Tips   

    1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

    2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

    3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE. ALL propane appliances are OUTDOOR Use.

    After sale guarantee

    You are not satisfied, don\'t be too quick to leave a negative comment, you can request a replacement or a full refund. Contact us! We will show you a satisfactory solution.

    ','【Measure Your Pressure】Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\n【End Fitting to Appliance】12Foot 0-30 PSI High pressure stainless steel hose, 3/8” female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8’’ male flare connector.\n【New upgrade】Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don\'t need to move your atmospheric bottle. Gas Pressure Gauge allow you control of the heat output with a precise level, to keep your outdoor cooker in optimal operating condition.\n【Durable Material Design】The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank.\n【SAFETY】Pass CSA certificate for your safety, excellent sealing quality is promised for your safety. propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.','LONGADS','','us',226),('B01N01N50Z','Elementi Lunar Bowl Cast Concrete Fire Pit - LP','A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the \'Lunar Bowl\' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42\" x 42\" x 16\". Burner Ring Size: 12\" (Dia.). Burner Pan Size: 23.7\" Diameter (I.D.).','Model #: OFG101-LP\nBTUs (max): 45,000\nFuel Type: Liquid Propane\nBody construction: Glass fiber reinforced concrete\nOverall Dimensions: 42\" x 42\" x 16\"','Elementi','','us',227),('B07YHC58TG','SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill','Description:
    Replace short regulator hose kit on gas appliance.
    Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
    12ft long enough to put the propane tank where needed with length to spare.
    Added protection of the stainless steel braided around the hose.
    Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
    Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

    Feature:
    Hose Length: 12 Feet
    Connection: Acme nut (QCC) x 3/8\'\' Female Flare Fitting
    Outlet Pressure:11\" W.C.
    Flow Capacity: 80,000 BTU/Hr
    Length: 12 feet /144 inch

    NOTE:
    FULLY TIGHTENED at both sides of hose before using to prevent leakage.
    To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
    Keeping the hose away from HIGH TEMPERATURE.
    For Outdoor Use Only.
    ','【Perfect Upgrade】The attached propane gauge can detect dangerous leaks and read fuel level at glance\n【More Durable】Stainless braided hose prevents whatever animals from chewing through your hose\n【Standard Connector】Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16\" diameter LP hose\n【Multi-Purpose】Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n【Control Gas Flow】The regulator Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again','SHINESTAR','','us',228),('B01GZPBCPU','DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8\" Female Flare Nut, 2 Feet','','Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8\" Female Flare swivel nut which has an outside diameter of 5/8\" In order to accommodate for the flare seat\nReplacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill.\nEasy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator.\nSafety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels\nFits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application','DOZYANT','Parallel','us',229),('B01AH5M8M0','Concord Banjo 16” Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove','

    This Concord single burner portable Gas Stove is built like a tank..

    Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10” single burner head (replaceable), and stand.

    This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you\'re ready to go. It also has removable legs for easy storage.

    Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

    Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




    Measurements: Burner Stand 16.5\" Wide x 12\" Height

    Burner head is 10\" Wide.



    Concord burners - make every outing count.
    ','Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x12\"(Height).\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.','Concord','','us',230),('B07KM2GSW7','ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing','

    75,000 BTU Outdoor Propane Stove
    Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

    SPECIFICATON
    Material: Cast Iron
    Output: 75,000 BTU
    Burner Diameter: 10.24 inch
    Hose: 47.2 inch
    Dimension: 15.7\"L x 15.7\"W x 29.9\"H

    ','75,000BTU ★ Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time.\nQUICK ASSEMBLY ★ Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7’’ x 15.7’’. ONLY works with propane, any other gas is not available.\nEASY OPERATION ♡ Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow.\nSPACE-SAVING ♡ Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height.\nSTURDY FRAME ♡ This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.','ROVSUN','','us',231),('B07RZTL6TK','Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection','Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


    ✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
    ✔ Measures Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High
    ✔ Premium Oxford and upgraded PVC backed polyester fabric
    ✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
    ✔ Air vents reduce inside condensation and wind lofting
    ✔ Padded handles for easy fitting and removal
    ✔ All weahter protection
    ✔ All round drawstring bottom with cord locks for added security to make it won\'t blow away in the wind
    ','NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles\nDRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill\nDIMENSION:Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High, Fits standard 20 lbs cylinder propane tank for Weber grill\nPREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank\nMAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won\'t blow away in the wind.BE READY for anything Mother Nature can throw at you','Linkool','Black','us',232),('B08H18XLP9','ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU','','🔥【STURDY AND DURABLE】The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable.\n🔥【ADJUSTABLE BURNER】200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods.\n🔥【RELIABLE SAFETY】The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use.\n🔥【STABLE DESIGN)】The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use.\n🔥【PORTABLE DESIGN】The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking','ARC Advanced Royal Champion','Stainless Steel','us',233),('B0014E3MSI','Camco 59013 Single Stage Propane Low Press Regulator','','Maintains a constant 11\" WC propane pressure\n200,000 BTU/HR\nFor connecting free standing gas bottle to low pressure gas appliances\n1/4\" Female NPT (Inlet) x 3/8\" Female NPT (Outlet)\nUL Listed','Camco','','us',234),('B08FMFK7CN','Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17\" and 22\" Blackstone Tabletop Camper Grill','6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122°F
    No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
    Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
    CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
    Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
    Specifications:
    A. 3/8\" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
    B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
    Warm Tips:
    * This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
    Quality Standard:
    CSA
    Package Included:
    1 Pcs x Propane Elbow Adapter.
    1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.','6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122°F\nNo Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit\nGreat Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill\nCSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model\nElbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping','METER STAR','','us',235),('B003CV5IGK','Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel','','Up to 11000 BTU\'s\n304 Stainless steel construction\n7 foot heat radius\nElectronic push button igniter\nPerfect for your backyard','Napoleon','Stainless Steel','us',236),('B08XBC336Y','2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking','
    Features:

    Nice gifts for BBQ lover:
    This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

    Practical and useful:
    These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

    Specifications:
    Material: stainless steel, wood
    Color: as the picture shown
    Quantity: 2 pieces

    Package include:
    1 x Grill spatula
    1 x Barbecue tong

    Note:
    Pointed parts include, please use it carefully and keep away from kids.
    Manual measurement, please allow slight errors on size.
    The colors may exist slight difference due to different screens.','Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier\nThickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ\nLong handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control\nMultiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat\nEasy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you','GeiSerailie','','us',237),('B077SP5BJP','GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black','','✓ propane adapter that saves money - Gas one\'s propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can\'t recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money!\n✓ STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One\'s propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting\n✓ extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter\'s solid bras materials ensure longevity as well as Universal usage\n✓ GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience\n✓ easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you\'re ready to refill! / fits Qcc1/Type1 & 1lb propane tanks','GasOne','QCC','us',238),('B086V7Y4LR','Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige','

    Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

    New product Promotion: 15% Off.

    Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

    Advantages from other covers:

    ►Made of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

    ►Large padded handle loops for easy fitting, removal, hanging and convenient storage.

    ► Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

    ► Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

    ►The cover is easily folded for storage and won\'t take up a lot of room whilst not in use.

    ►Easy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

    ►Note: Please allow your grill to cool before covering.

    Kindly Note:

    1.Please Measure Before Purchasing.

    2.Be sure the cover is of the same shape as your grill.

    3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

    ','Size: This bbq grill cover measures 72\" Length x 26\" Width x 47\" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill\'s dimensions for proper fit before purchasing.\nSuper Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc.\nUv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant.\nHandles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting.\nGood Shopping Experience: We think you\'re going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.','Vailge','Beige&brown','us',239),('B07WYJTB3P','ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in','','ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment.\nTECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area.\nDEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nSTYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.','ProCom','29 In.','us',240),('B0024ECBMA','Camco 59313 Vertical Two Stage Propane Regulator , Gray','','Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances\nInlet: 1/4\" Female NPT Outlet: 3/8\" Female NPT\nOutlet pressure 11\"WC\nFor vertical mount applications\n160,000 BTU/hr','Camco','Gray','us',241),('B0787VMCT8','FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze','','Ⅰ 【EASY TO ASSEMBLY:】All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater\nⅡ 【PUT LOTS OF HEATER:】The patio heater’s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it’s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater\nⅢ 【MULTIPLE PLACE USAGE:】The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters\nⅣ 【SAFTY:】 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater\nⅤ 【HIGH QUALITY MATERIAL:】 The patio heater use high quality stainless steel of the heating element which isn’t easy to melt/burn off, and the outdoor heater fire can’t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater','FDW','Bronze','us',242),('B073KV4WLJ','GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb','','Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn’t enough, gas one’s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\nSave money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one’s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\nEASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\nSafety 1st - top quality propane hose adapter','GasOne','black','us',243),('B003T08FV4','Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver','','seasons: All year long','Hiland','Hammered Silver','us',244),('B00TFYOC5G','Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer','The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you\'re making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.','50,000 BTU Cast Iron Burner\n18 Quart Aluminum Pot\nTwo Aluminum Strainer Baskets with Insulated Handle\n21\" Welded Stand & Dual-sided for cooking two foods at once','Chard','','us',245),('B087B6RSSF','5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection','Propane has a meter that tells you how much pressure you\'re rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator\'s Max. It will shutoff the gas flow automatically.','【Scope of application】 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8\" Extended connector.\n【CSA certification】 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety.\n【Quality】 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment.\n【Additional table】 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.\n【After-sales service】 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.','Chulan','','us',246),('B01HQRD8EO','Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold)','','DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included\nAUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove\nEASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition\nSAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected\nVERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness','GasOne','Stove','us',247),('B0002P1D0Y','Red Dragon CD-100 Propane Cylinder Dolly,Steel','','A handy way to move a simple 20 pound cylinder while flaming\nThis dolly makes the perfect companion for any Red Dragon Torch Kit\nIdeally suited for LP Gas cylinders up to 40 pounds.\nThe single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch\nWhen the torch is not in operation, it can be stored on the convenient torch bracket.','Red Dragon','Steel','us',248),('B00QB6PBZQ','Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket','','DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements.\nCONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose.\nDISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items.\nWEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use.\nPERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25\" diameter by 18.5\" height to ensure a snug fit for your 20 lb propane tank.','Outland Living','Black','us',249),('B01IRR7HSU','GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case','Who doesn\'t like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we\'ve come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.','Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case\nPiezo-electric ignition that eliminates the use for lighter/matches\nBuilt in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane)\nHeat adjustable dial to your desired heat','GasOne','Stove + Windscreen','us',250),('B007HG7SM8','Camco 59843 20\" Pigtail Propane Hose Connectors - Acme x 1/4\" Male NPT','','Connect your camper\'s 1/4\" NPT inlet regulator to a 20lb or 30lb LP tank\nRated for 200,000 BTUs per hour\nBuilt-in excess flow and thermal protection\n20\" hose\nACME nut x 1/4\" male NPT','Camco','','us',251),('B00NCSUZDE','Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size','','New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 12\"x18\" main grilling area 5-1/2\"x18\" secondary grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens','Magma','Multi','us',252),('B016M5A2SQ','Weber Spirit E330 Lp Black Grill','','Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling\nSear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer\nKeep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or sauté veggies on the side burner\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won’t rust or peal over time','Weber','Black','us',253),('B00QMVEG8S','Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner','','COOKING POWER: Up to 22,000 total BTUs\nPUSH-BUTTON IGNITION: For matchless lighting\n2 ADJUSTABLE BURNERS: For precise temperature control\nWIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes\nPRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions','Coleman','','us',254),('B00V8JJGOI','2-Stage Propane Tank Regulator with 2 Pigtail Hoses','Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.','Don’t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks.\nHooks up 2 propane tanks to your RV at once so you’ll always have a fuel supply.\nAuto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow.\nLets you remove empty propane cylinder without interrupting propane supply.\nIncludes 2 12-inch pigtail hoses.','HKESTG','','us',255),('B0179IK62C','Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nMake the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results\nDurable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready\nDo more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb\nMake your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space','Broil King','Stainless Steel','us',256),('B08KSLN5VC','GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag','','EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle\nDIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck\nHIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage\nCONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation\nHIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease','GasOne','','us',257),('B083VS1N2M','Baja 900-Watt Propane Powered Inverter Generator, BAI911LP','','','Baja','','us',258),('B07PYV2NMZ','GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range','How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more','【Standard Connector 】Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8\" Female Flare. 5/16\" diameter LP hose\n【Well Gas Control 】Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances\n【 Max BTU Flow】Providing 11\" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow\n【Compatibility】Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more\n【High Quality】 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank','GASPRO','Black','us',259),('B082M8BYTK','BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze','Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

    A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There\'s a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

    Your safety is our priority, and that\'s why we\'ve equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30°, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

    Specifications:
    Heat Range: 175 Sq/Ft (15\' Radius)
    Diameter of Dome Reflector: 31.9\"
    Support Pole Size: 2.9\" Diamter, 34.3\"Height
    Size of Burner: 11\"Diameter, 12\"Height
    Size of Base: 18.1\"Diameter, 3.39\"Height
    Overall Height: 7.25FT','[COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants.\n[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures.\n[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night.\n[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck.\n[LOVE-IT OR 100 DAY RETURNS] We guarantee that you’ll love this product. If not, simply return within 100 days of purchase.','BELLEZE','Bronze','us',260),('B08SBQJ7P1','Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill','It is an ideal substitute for the 16.4oz/1lb green camping small propane tank','🎁 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device.\n🏆 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment.\n🌙 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank\n🔒Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage\n📧 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use','Foinwer','','us',261),('B015S0VALO','71\'\' Propane Gas Stove Burner REGULATOR 71\'\' Hose 20,000 BTU Propane Regulator','**Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.','Low pressure propane stove regulator\nHose length: 71\'\' long\n0-20 PSI ; BTU max: 20,000\n** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully**\nQuantity: 1 ; Shipping Weight: 1 lb','','','us',262),('B07M6RMP1V','ARC, 339S Super Propane Burner Stove with Electron Strike,13\" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing','','🔥Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances.\n🔥Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors.\n🔥Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious\n🔥High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included.\n🔥Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.','ARC Advanced Royal Champion','Stainless Steel','us',263),('B074BT57HG','Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black','','1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat\n2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.','Renook','Black','us',264),('B07T6F3CWS','GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot','Product description:
    Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
    Taking the regulator hose end connect to your 3/8’’ male flare connector propane appliance.
    Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8\"male flare connector
    0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
    This is an essential part of converting your fire pit/table to a larger flame

    Specification:
    Certificate : CSA
    Gas Type : LP/LPG
    Regulator Type : High Pressure
    Outlet Pressure : 0-20 PSIG
    Inlet Pressure :25-250 PSI
    Flow Capacity : 120000 BTU/Hr
    Hose Length : 8 feet/ 96 inch
    End Connector : 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

    NOTE:
    1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
    2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
    3.Not suitable for appliances which need low pressure regulator

    Warning:
    Only for OUTDOOR Use.','【Adjustable】 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs\n【Durable and Chew-proof】 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose\n【Perfect Fit】 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n【8ft Length】 Gives you adequate length for appliance and tank placement\n【Brass Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare','GASPRO','','us',265),('B07QBZN1HS','Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe','Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

    Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

    Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won\'t wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0°F, ensure superior performance and long-lasting.

    Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
    1. Constructed with new generation rip & fade resistant fabric and vinyl coating
    2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
    3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
    4. Fastening straps at bottom keep your bbq cover securely in place

    Care and Use:
    1. Allow grill to cool before covering
    2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
    3. Air Dry for next use.

    Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the \"Visit the Unicook Store\" button to get the proper cover you need.','【Grill Cover Dimension】- 60 inch grill cover measures 60\"W x 23\"D x 42\"H, fits most brands of grill with width between 54\" and 58\". ﹡Measure your grill before purchasing to determine the proper cover.\n【Fade Resistant】- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection.\n【No Water Leaking】- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams.\n【Handles and Straps】- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days.\n【Wide Selection】 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.','Unicook','Neutral Taupe','us',266),('B07H5RHXJN','Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nGS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.','Weber','Black','us',267),('B018A484AK','Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long','EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.','EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nNO HARMFUL BRISTLES: Don\'t take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury.\nTOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There\'s a universal brass head that fits any grill grate rack and a wooden handle totaling 16\".\nUNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA.\nLIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.','Martin Grill Gadget','','us',268),('B07WK2GZGD','STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut','

    STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

    1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
    2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
    3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

    Product Instructions:
    1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
    2.Taking the regulator hose end connect to your 3/8\" male flare connector propane appliance.
    3.Checking this hose both ends must be fully tightened.

    Specification:
    Inlet:QCC-1 Tank Connection (ACME)
    Outlet: 3/8\" Female Flare Nut
    Flow Capacity: 80000 BTU/Hr
    Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
    Certificate: CSA
    Gas Type: LP/LPG
    Material: Rubber / Brass

    Attention:
    1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
    2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
    3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
    4.Keeping the hose away from HIGH TEMPERATURE.

    Note:
    Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

    ','NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter.\nCSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator\'s Max. flow capacity too much, it will shut off the gas flow automatically.\nEASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8\" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8\" male flare connector propane appliance. It’s compatible with your 20-50 lb propane gas tank.\nUNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills.\nA MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.','STYDDI','Black','us',269),('B001ABPB2U','Stansport Propane Appliance to Distribution Post, 5 Feet','','Works on 30 inch distribution post\nWorks on all propane appliances\nHeavy duty quality hose\nBrass fittings for security to appliances and tanks\nBuy more than one to put on distribution post','Stansport','Multicolor','us',270),('B01N1RO9WG','Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove','','✓ 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included)\n✓ PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame\n✓ EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness***\n✓ SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism\n✓ WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind','GasOne','Stove','us',271),('B0848RWBP7','GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black','','✓ Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn’t enough, gas one’s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\n✓ Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one’s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\n✓ Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\n✓ EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\n✓ Safety 1st - top quality propane hose adapter','GasOne','black','us',272),('B083G4SNQX','58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black','ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

    Features:
    -Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
    -Ccomes with a storage zipper bag. So it is very easy to fold when you don\'t need it
    -Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
    -With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

    Care and Use:
    1. Allow grill to cool before covering.
    2. The water repellent finish enables stain-preventing and easy cleaning
    3. Dry up the cover in the sun for next use or storage it to the bag

    What you could get?
    1 x 58inch grill cover
    1 x Storage bag
    Lifetime Product guarantee','【WIDE COMPATIBILITY】The bbq cover measures 58\"L x 24\"W x 46\"H inch, Check your grill\'s dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss\n【Rip Resistant & UV Protection】: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly.\n【PORTABLE & CONVENIENCE】The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle\n【LIGHTWEIGHT BUT DURABLE MATERIAL】:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new\n【LIFETIME REPLACEMENT】Any issues with the ripping or fading, please contact us and we\'ll make this right and give you the satisfied answer!','ORIENT FAMULAY','Black','us',273),('B07Y5RY59R','Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal','','Lion L75000 32\" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface.\nComponent package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nBest of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.','Lion Premium Grills','Stainless Steel','us',274),('B00Q9MF83M','Tabletop Gas Patio Heater Finish: Stainless Steel','HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30\". Overall Width - Side to Side: -12\". Overall Depth - Front to Back: -12\". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.','','AZ Patio Heaters','Bronze','us',275),('B0024ECC3S','Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)','','Easy access to gas valves\nHeavy-duty polypropylene\nPolar White\nFor two 20 lb propane tanks\nEasy to install and highly durable','Camco','Polar White','us',276),('B07GRFTR4S','GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC','','✓ MEASURE YOUR PRESSURE – Use Gas One’s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One’s Pressure Gauge lets users control their heat with a precise level of accuracy\n✓ USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable\n✓ DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners\n✓ COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow\n✓ STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI','GasOne','Old Black QCC','us',277),('B01BEOULUE','BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single))','Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.','Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders\nPerfect for lanterns, single burner stoves, grills, heaters and other propane appliances\nGreat to take camping, hunting, on construction jobs, work, tailgating!\nLightweight, sturdy, long lasting.\nMade in the USA!','BootYo!','Black','us',278),('B06XTGCQ7P','GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep','','Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects\nHigh heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU)\nConvenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box\nHeavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSafety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)','GasOne','','us',279),('B07D6FSMX3','Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill','Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking','Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\nFirm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting.\nEasy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean.\nAdjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill’ height and balance.\nGrill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.','ISUMER','Sliver','us',280),('B07PHKT5XC','GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black','','Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements\nHigh heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control\nConvenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection\nHeavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSteel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas','GasOne','Black','us',281),('B088YP9G4N','Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker','
    Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

    With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

    Technical Details:
    Premium Material: Solid iron support + Chrome plated BBQ wire mesh
    Color: Black','The grill doesn\'t need to be installed. When you\'re barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE’S GATHERING]','LETION','Stainless Steel','us',282),('B07JPZXW51','WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required','','','TECHOST','','us',283),('B00WLYOAB8','Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black','Specifications: 
    Onlyfire 14451 Electric Push Button Igniter
    One \"AA\" Battery Is Needed. (Battery Not Included)
    4 Male Spade Connector Outlets

    Original Part Numbers:   03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

    Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

    Uniflame Part Numbers: 55-07-448;

    Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

    Amana Part Numbers: FCTG3007029;

    Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

    Suitable Models of BBQ gas grills:
    Fits Various gas grill models of BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

    Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

    Exact-fit parts !Cooks better! Durable construction and Lasts longer!

    A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

    NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

    Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

    ','CSA Certified, Requires 7/8\" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt \"AA\" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001,\nOriginal Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1\nFits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP\nFits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720\nKenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371','onlyfire','Black','us',284),('B09B48Y5JB','H0MEpartss 200lb / 420lb Propane Tank Lid 16\" Diameter Cover Top Above Ground Black Plastic','Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~\"','✅ Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid\"\n✅ We have only quality products.\n✅ High quality- save your time and your money.\n✅ Ensure long-lasting and effective performance.','H0MEpartss','','us',285),('B0783GVCFV','Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches\nBoasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D\n529 Square inches of cooking space over three burners','Weber','Black','us',286),('B088YRD1WT','Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ','
    Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

    With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

    Technical Details:
    Premium Material: Solid iron support + Chrome plated BBQ wire mesh
    Unfolded Product Dimensions :14.96\'\'x10.62\'\'x7.87\'\'
    Folded Product Dimensions : 13.77\'\'x9.4\'\'x2.36\'\'
    Product weight: 3.53 lb
    Color: Black','►The barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.','LETION','Stainless Steel','us',287),('B0009PUQAK','Coleman High-Pressure Propane Hose and Adapter','','5-foot hose and adapter attaches propane appliances to 20-pound propane tanks\nGreat for use with Coleman grills, stoves, lanterns, heaters, and more\nA cost-efficient solution to regularly replacing 1-pound canisters\nAllows propane devices to last up to 20x longer without refueling\nHand tighten counterclockwise','Coleman','Black','us',288),('B08FQY2LBK','GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8\" Male Connector Suitable for Turkey Fryer,Fish Fryer,Propane Burner,Fire Pit and More- CSA Certified','GasSaf Adjustable Propane Regulator Hose
    Product features
    The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
    Specifications: Hose length: 4 feet / 48 inches
    Regulator type: high pressure
    Gas type: LP / LPG
    Inlet pressure: 25-250 PSI
    Outlet pressure: 0-10PSIG
    Capacity: 122000 BTU/Hr
    Tail connection: 1/8-inches male connector
    Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
    ','【Product Parameters】:Adjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector\n【Flame Control】: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI)\n【More Reliable】: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment\n【Scope of Application】: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice\n【Easy to install】: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working','GasSaf','','us',289),('B00NCSUZHK','Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size','','New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens','Magma','Multi','us',290),('B0817KW1JV','All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red','','12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG)\n18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load\nFuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start\n2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit\nEPA Certified. Non C. A. R. B. Compliant, not available to ship to California','All Power America','Black/Red','us',291),('B010O0ZWWQ','Shasta Vent 8\" Dia. I.D. Class A, All Fuel, SS \"Chimney Cap\" for 8\" Shasta Vent Chimneys','','Oil, coal, natural gas, propane burning appliances\nNatural drafting building heating appliances\nZero-clearance factory-built fireplaces\nDouble wall chimney system for residential and building heating appliances','SHASTA VENT','','us',292),('B072JYD7MC','Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More',' Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

    Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection:

    ● Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

    ● Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

    ● Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

    ● Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

    Care and Use
    ► Allow grill to cool before covering.
    ► To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
    ► Air dry for next use.

    Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.','【Fade Resistant Grill Cover】- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt.\n【Fabric Handles】- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage\n【Fastening Straps】- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off\n【Small Grill Cover Dimension】- 2 burner grill cover measures 32\" width by 24\" depth and 43\" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. ﹡Be sure to measure your grill first to determine the proper cover size\n【Wide Selection】 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.','Unicook','black','us',293),('B08P38XD3T','Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)','
    FEATURES:

    -Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
    -Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
    -Water-Resistant,All Weather Protection
    dual propane tank cover rv
    rv propane tank cover double
    travel trailer double propane tank cover
    travel trailer propane tank cover
    ','♥FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28\"x 12\"x 18\"inch ( (71cm x 30.5cm x 45.7cm)\n♥Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank.\n♥propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal.\n♥EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements\n♥100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.','CEMGYIUK','Grey','us',294),('B07F2VP353','Fire-Maple \"Fixed Star 1\" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use','Portable Propane Stove Burner for Camping
    The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

    Specifications:
    Materials: Aluminum, stainless steel, copper, silicone
    Open: Ф128x173mm
    Weight: 1.13Ib/511g

    ','HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves.\nCOMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz!\nINTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly.\nSAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure.\n30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!','Fire-Maple','Black','us',295),('B07VHP3M9L','Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART','','Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires\nWiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required\nSimple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48”, height 2.1cm/0.83”, nice decoration, install it in kitchen or anywhere refers to gas leaking\nFireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use\nPackage Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.','MESMART','','us',296),('B07QG6QCLD','APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking',' This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
    Features:
    Made of stainless steel for durability.
    Mounts to a gas stove and requires no electricity Rust proof emitter guard.
    Adjustable safety valve controls gas flow and heating power.
    Weighs 320G and comes in a storage bag, convenient to carry.
    Specifications:
    Material: Stainless steel & Aluminum alloy & Copper
    Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
    Net Weight: 320g
    Package List:
    1 * Heater
    1 * Canister Stand
    1 * Storage Bag
    ','Note: Propane Tank Need Mapp Adapter to use (product don\'t contain adapter)\nWeighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)\nPackage List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn\'t contain gas tank)\nMaterial: Stainless steel & Aluminum alloy & Copper','APG outdoor','Metallic','us',297),('B07C1KZK5W','DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified','','CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel\nCOST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks.\nWEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.','DOZYANT','Black','us',298),('B072559N4L','LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch','

    Each set has 6 of the highest quality grill mats that makes grilling anything easy!

    Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

    Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

    You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

    They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

    For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

    These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

    These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

    -Veggies
    -Shrimp
    -Fish
    -Bacon
    -Pizza
    -Pancakes
    -Eggs
    -Anything else you want to put on the grill!

    BBQ Grill Mats Size: 15.75\" x 13\"

    ','100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill!\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit!\nSECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!','LOOCH','Black','us',299),('B07C2KCQXX','Cuisinart CGG-750 Portable, Venture Gas Grill, Red','','154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\n9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control.\nCOMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nPROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure.\nLARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.','Cuisinart','Venture Gas Grill, Red','us',300),('B077GDYMCX','Weber 7137 Tank Cover','','UV inhibitors in fabric resists fading\nBreathable, weather resistant fabric\nProtects cylinder from the elements\nDrawstring keeps the cover in Place\nFits standard size 20Lb liquid propane tank (Sold Separately)','Weber','Multicolor','us',301),('B00T95H1PE','Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types','The Best Grill Brush For Cleaning Your BBQ. Here’s Why:

    Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18\" Long Handle.

    Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

    Ready For Cleaning That\'s So Quick & Easy You May Even Enjoy It?

    Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you\'ll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

    Hard On Grime - Gentle On Grates

    This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

    So What Are You Waiting For? Click The \"Add To Cart\" Button Above To Get Your Brand New Brush Delivered Today.

    Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it\'s time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.','GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it’ll bend or break.\nSAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that’ll get your grill looking good as new, but don’t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types.\nEASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you’ll be done in a flash.\n18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time.\nBBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they\'ll love! Backed by Alpha Griller\'s 90-Day Satisfaction Guarantee.','Alpha Grillers','Gray','us',302),('B07PFQHD1W','Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt','','This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you\'re a fan of Mr. Robot as well as the hit BBQ restaurant.\nOfficially Licensed USA Network Mr. Robot Tee.\nLightweight, Classic fit, Double-needle sleeve and bottom hem','USA Network','Black','us',303),('B071ZM8YVC','GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep','','Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects\nHigh heat output- fully adjustable heat-control regulator knob, power with Control\nHeavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting\nSafety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\nSteel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank','GasOne','Black','us',304),('B0098HR10I','Weber 47510001 Spirit E310 Natural Gas Grill, Black','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nPerfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won’t rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system','Weber','Black','us',305),('B005EOSOIW','Mr. Heater MH15 Single Tank Top Outdoor Propane Heater','','Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction','Mr. Heater','Silver','us',306),('B07VW6QZF5','GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)','','【Healthy and Safe Choice】These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture.\n【High Temperature Resistance】Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500℉, won\'t burn or shrink, go through microwave quite well\n【A Good helper to BBQ & Baking】Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg.\n【Secret to Save Money】Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities\n【No Mess, Easy to Clean】Dishwasher safe means clean-up is a breeze! Don\'t waste anymore time scraping the \"crud\" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!','GQC','','us',307),('B081J6T3BZ','ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat','','4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill’s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe\n500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard\nStandalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance\nOptimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of ±1.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required\nSmart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat','ThermoPro','Orange','us',308),('B07N24FPJ1','Home State Texas Gift T-Shirt Men And Women','','Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more\nWear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more\nLightweight, Classic fit, Double-needle sleeve and bottom hem','Home State Texas Shirts','Black','us',309),('B07FSJ3FNJ','20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches','
    Product Features:
    Size: 12.5 x 12.5 x 24 inches.
    Material: Heavy Duty Polyester UV coated nano environmental protection materials.
    Durable, scratch resistant polyester with UV protection all year round.
    Easy to Clean: Low Circle Machine Wash & Handwash.
    Upgrade Your Patio or Garden Décor.
    SHIPMENT TIME

    1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
    2.The normal arrival time of Dispatched from Seller is between 10-15 days
    3.Holiday Season Peak time maybe longer than normal delivery.','This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nConvenient side velcro and magic tape allows for easy set up.\nEasily clean this 20lb propane tank with damp duster or by hosing with clean water.\nPERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb.\n100% RISK FREE BUY: A necessary great father’s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!','HERSENT','Black','us',310),('B00NO1O6ZC','Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks','','✓ User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers\n✓ LONG LASTING AND DURABLE - Gas One’s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance\n✓ READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection)\n✓ MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside ⅜-inch flare fitting and has an outside diameter of ⅝ inches','GASONE','Old Style Black QCC','us',311),('B08D8S7BK1','KILILIUN 2 Pack 15 inch 1/4\" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4\" Male NPT and QCC1 Connector for Standard 2-Stage Regulator','

    Package Included:

    2Pcs x 1/4\" NPT RV Propane Pigtail Hose with Gauge

    1Pc x Thread Seal Tape

    2Pcs x PVC Dust Covers


    Feature:

    Material: Durable 100% solid brass fitting and Stainless steel braided hose

    Inlet connector: QCC1

    Outlet connector: 1/4\" Male NPT


    Convenience:

    You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


    Installation:

    Easy to install and No extra tools needed.


    Display:

    The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


    Kindly Note:

    1/4\'\' Male NPT(Not 1/4\" male inverted flare). Please check your connector before you order.

    ','[Package included] 2 pack 15inch QCC1 1/4\" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4\" inverted flare).\n[Durable Material] 1/4\" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather.\n[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks.\n[Extensive Application] You can connect the RV propane pigtail hose 1/4\" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking.\n[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.','KILILIUN','','us',312),('B07Q4DMHK9','BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY','','Max Temperature heat up to 2642°F (1450°C), Powerful Supper Swirl Cyclone Flame\nTrigger Start Piezo Ignition, Anti-flaring\nUse standard propane or MAPP or MAP/Pro gas cartridge\nIdeal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers;\nMade in Taiwan, with the highest quality control.','MR. TORCH','Blue','us',313),('B009V11U6C','Shrink RapidShrink 100 Propane Heat Tool','','It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors\nOur product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition\nManufactured in United States','Dr. Shrink','BLUE','us',314),('B00004Z2FP','Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit','','Quickly hooks up to any refillable propane tank (20lb cylinder Works great)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2, 000-degrees F\nThe weed Dragon has received the National home gardening club member tested seal-of-approval.\nMade in the U.S.A.','Red Dragon','Steel','us',315),('B07G4899R5','Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry','What are The Benefits of Using Camplux Single Burner Camping Stove ?

    1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What\'s more,the powder coating makes it is waterproof and anti-rust.
    2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
    3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
    4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
    5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it\'s more safety to use wrench in order to tighten).
    6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
    7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
    8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

    Specifications:

    Color: Black
    Product Type: Single Burner
    Material: Cast Iron
    Product Extension Size:15.75×15.75×28.8 Inch(40*40*73cm)
    Product Size without Extension:15.75×15.75×16.9(40*40*43cm)
    Type of Gas:Propane
    Heat Output:200,000 BTU/HR
    Regulator Length: 5 feet / 60 inch/152.5 cm
    Usage Condition:Normal Outdoor

    What You Will Get:

    1 x Propane Gas Camp Stove
    1 x High Pressure CSA Certified Regulator
    1 x User Manual

    Inquiry & after sales service: support@camplux.com
    Service hotline: (844)-538-7475','200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time\nDetachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking\nEasy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb\nHigh Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It\'s hard to destroy and has a long service life\nWok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services','CAMPLUX ENJOY OUTDOOR LIFE','Black','us',316),('B07XDJKQ22','VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr','Are you ready to go camping? Take VIVOHOME’s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

    Features:
    -The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
    -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
    -The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
    -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
    -Great stove for camping; It will really simplify your canning process

    Product Specification:
    -Rated output: 36,000 total BTU/hr, for 18,000 BTU each
    -Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
    -Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
    -Note: The product is equipped with a 10 PSI regulator, and it\'s also suitable for the 20 PSI regulator.
    -Stove Height: 29\" without windscreen /35\" total

    Package Includes:
    -1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

    Product Warranty:
    -We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.','GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don\'t want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended\n2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you’re cooking at the right rate\nVERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life','VIVOHOME','Black','us',317),('B01DAOM5SW','Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set','','Durable, charcoal grey finish patio heater with heat output of 46,000 BTU\'s\nHeater features a piezo ignition and safety auto shut-off tilt valve\nStandup patio heater cover protects against rain, snow and other outdoor elements\nUsing click-close straps, cover easily snaps around heater to secure the cover on windy days\nCover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater','AmazonBasics','Havana Bronze','us',318),('B01HQSUMII','ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black','','TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft.\nDEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\nSAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected.\nDIMENSIONS: 25” H x 33.5” W x 13” D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900','ProCom','Black','us',319),('B07S2KQ8PL','Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack','Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.','','C-M Propane Fuel','','us',320),('B001H1HL76','Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone','','Throw the ultimate s’mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl!\n40,000 BTU heat output provides warmth and light\nNatural lava rock included to cover the stainless steel burner.\nProtective cover included to preserve the fire pit\'s integrity.\nConstructed of durable and lightweight Envirostone for outdoor use','Bond Manufacturing','Natural Stone','us',321),('B07FJQ3KNK','Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies','The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.','✓ DUEL FUEL PORTABLE GAS STOVE – Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove’s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED)\n✓ PREMIUM GOLD DESIGN – The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures.\n✓ SAFETY FEATURES – Gas One’s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner.\n✓ HIGH HEAT OUTPUT – Gas One’s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove’s control knob.\n✓ AUTO PIEZO IGNITION – The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to “spark” an ignition with a click. Simple to use, and fitting for any and every outdoor setting.','GasOne','Stove','us',322),('B088HCDXVP','Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill,Easy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black','1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG\'s non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.','100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500℉, Keep your family safe while enjoy delicious grilling food.\nMULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need.\nNO MESS - With our grill mats, you won\'t have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you\'ll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze!\nEasy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don\'t waste your time scraping the \"crud\" off your grill - get back to enjoying the BBQ with your friends and family!','Smaid','Mesh Grill Mats','us',323),('B091YNGC2Y','BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs','','🥩Greatly Fits Various Grills🍖: 58\"L x 24\"W x 44\"H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing.\n🥩600D Super Heavy-Duty Materials🍖: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant.\n🥩Distinct Design Features🍖: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use.\n🥩Wind-Resistant gas grill covers🍖: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away.\n🥩Hassle-Free Cleaning🍖: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.','iClanda','','us',324),('B07W64SGBK','DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color','','For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need.\nThe Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.','DOZYANT','Color','us',325),('B07H5RJ8YJ','Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\niGrill 3 compatible, for perfectly grilled food (accessory sold separately)','Weber','Black','us',326),('B093BP356D','BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze','BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night','▶MULTI-PROTECTION◀ BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won’t be affected by the windy weather\n▶NICE AMBIANCE◀ Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame\n▶OPTIMIZED PRODUCT STRUCTURE◀ Wheels are different from the usual smooth surface wheels, it uses gear design, won\'t out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater\n▶REASONABLE AND HIGH-EFFICIENCY◀ Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition\n▶BLENDING OF CLASSICAL AND MODERN BEAUTY!◀ Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night','BALI OUTDOORS','Bronze, Stainless Steel','us',327),('B003K6SI7S','Texsport Sportsmate Portable Propane Heater','','Ideal for golf carts\nDurable stainless steel burner\nPressure regulator on/off control valve adjusts burners up to 3,000 BTUs\nIncludes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included)\nAuto shut off valve shuts off fuel if flame goes out','Texsport','Silver','us',328),('B097LDZ1W2','RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer','RV Propane Tank Cover','【 FITS TANK】Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch.\n【ZIPPER DESIGN】zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal.\n【CUSTOM YOUR TANK】The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls.\n【WITH ELASTIC BAND 】 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days.\n【HIGH QUALITY】Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.','BeadChica','','us',329),('B06Y5XFF6F','DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank','','Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel\nCost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks.\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMulti-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.','DOZYANT','Black & Gold color','us',330),('B07FP4WHML','Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch','Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

    Steel construction with easy grip handles

    Black mesh pattern naturally creates \'x marks\' in steak and other grilled foods

    Use as serving tray after grilling is done. Great camping accessory

    Creates perfect grill marks on food without any hassle.

    ','36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings\nSturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood\nIt is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate!\nSteel construction for warp resistance.\nCreate perfect grill marks in your food, making the BBQ more fun.','only fire','Black','us',331),('B071NL9D7J','Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)','2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves','2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only\nCompatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P\nTo be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves','GasOne','','us',332),('B07F8N2WQS','Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24\'\'x13\'\'x9\'\'','What’s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

    Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

    Portable Camping Grill Details
    L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
    Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
    Weight:2.5Kg
    Material: Rolled and stainless steel

    Luxury Travel Grill
    Quickly assembled BBQ
    Lightweight fold design
    Ventilation holes and Drawer type dust box

    Travel Camping Barbecue Grill
    For picnics in the park
    For sociable hours during camping
    For the lunch break during hikes
    Great when you get the munchies at a festival
    ','【Brilliant Camping & Party BBQ Tool】Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families.\n【Lightweight & Portable】Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up.\n【Perfect For Outdoor】This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It\'s perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group\n【Best BBQ Grill For You】The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact\n【QUALITY GUARANTEE】: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.','Ruutcasy','','us',333),('B07RKYMBCN','Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories','\"Easily Switch Wood Chips

    The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

    Premium Features

    Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

    Great Gift Idea

    Surprise your Friends and Family with a Kaluns® smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

    Warning:

    Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

    Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns™ You made the right choice, don\'t hesitate, Click the \'Add to Cart\' Button Now!

    \"','Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey\nDeluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust  and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast.\nConvenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard.\nA New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.','Kaluns','stainless steel','us',334),('B00FLRBXEO','Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart','','Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut\nGenuine Weber part for Genesis 300-series gas grills\nRegulates liquid propane flow for consistent, uniform heat distribution\n2-year limited warranty','Weber','standart','us',335),('B000BRJOV8','ADCO 2111 White RV Propane Tank Cover, Single 20','','ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank )\nProtect propane bottles while in storage with this deluxe heavy-duty vinyl cover\nVelcro closure at top, elasticized bottom for a neat tailored fit\nSingle tank cover, fits 20 pounds ( 5 Gallon tank )\nPolar White','ADCO','White','us',336),('B000WEMH32','Weber 7502 Hose and Regulator Kit (21-Inch),Assorted','','Hose and regulator replacement kit for Weber propane grills\nProvides secure, airtight connection between grill and tank\nFits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold\nIncludes 21-inch QCC1 hose, regulator, and instruction sheet\nGenuine Weber replacement part','Weber','Assorted','us',337),('B00I8IY6I8','Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant','','Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical\nSafety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered','Flame King','White','us',338),('B08C92F6KZ','CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills','Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill’s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone','1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner.\nFormulated to safely clean burnt food and grease off of BBQ grill cooking surfaces.\nWorks great on grill grates, smokers, ovens, microwaves, and more.\nPair with our Citrusafe BBQ Grill Scrubber for optimal results.','CitruSafe','Blue','us',339),('B089NMPKBV','Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W','Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.','[♨ LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it\'s space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It\'s compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it\'s a perfect size for camping.\n[♨ FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill’s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food.\n[♨ HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n[♨ APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n[♨ GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products\' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.','Techwood','Red/Black','us',340),('B001AUPQVM','Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit','','Quickly hooks up to any refillable propane tank (20lb cylinder recommended)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2,000-degrees F\nThe Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval.\nMade in the U.S.A.','Weed Dragon','','us',341),('B07Z4H47Z2','STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More','STYDDI let you eat like a king!

    The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

    If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

    The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

    This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


    Specification:
    Material: Rubber PVC + Brass
    Length: 4 feet / 48 Inch/122 cm
    Gauge reading: 0 – 60 PSI (1- 400kpa)
    Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
    Fryer Accessory Type: High Pressure Regulator
    Outdoor Living Product Type: Fryer Accessory
    Inlet Pressure: 25-250PSIG
    Outlet Pressure: 0-30PSIG
    Certificate: CSA','ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners.\nBUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy.\nA MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8\"-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It’s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nEXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator\'s Max. flow capacity too much, it will shut off the gas flow automatically.\nEASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.','STYDDI','','us',342),('B07DTNNJR9','Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications','Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

    The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

    Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

    The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

    Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

    All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

    The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

    We\'re so confident that you\'ll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It\'s the only product in it\'s class to offer such a guarantee!
    ','MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps.\nBUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements.\nCUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres.\nEASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts.\nGUARANTEED We\'re so confident that you\'ll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It\'s the only product in its class to offer such a guarantee!','Good Life, Inc','Red','us',343),('B00IZCNOS0','Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers','','Allows removal of empty cylinder for refill without interrupting propane supply\nFor RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty\nPairs well with our 48 Inch Thermo Plastic Hose, item 100383-48.\nDouble stage design maintains constant gas pressure under changing demand and conditions\nInlets are 1/4\" SAE inverted flare and outlet is 3/8\" NPT female pipe thread. Regulator is factory set at 11wc (water column)','Flame King','Silver','us',344),('B081GNNVJK','Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub','','Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper.\nCompatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice.\nEasy Storage: Each rub comes in a stackable aluminum tin container\nMade in the USA','Traeger','','us',345),('B001DC5HAW','Stansport 3 Outlet Propane Distribution Post','','Simple, versatile device lets you operate three propane devices from one bulk propane cylinder\nWorks with lanterns, stoves, heaters, and other propane appliances\nThree outlets, each with its own auto shut-off valve\nAdjustable base ensures stability on uneven terrain\n30-inch device weighs just two pounds, and packs easily','Stansport','Multicolor','us',346),('B01GE77QT0','ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer','','Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself\nHassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition\nKitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature\nUSDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes\nDurable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit','ThermoPro','Orange','us',347),('B00B58A0QU','Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14\", Red, 14.5\" x 14.5\" x 15\"','','150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\nDUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control.\nTHREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport.\nCOMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.','Cuisinart','Portable BBQ Charcoal Grill, 14\" (Red)','us',348),('B07KBYD4WZ','Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type','

    Description:

    - Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
    - Allows you to quickly and easily check the amount of propane in the tank
    - Monitors fuel level without removing the tank.Easy to install
    - Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
    - Heavy duty 100% solid brass construction

    Specification:

    - Capacity: 80000-150000BTU/hour
    - Operating temperature: -40°C - + 55°C
    - Inlet: 25-250PSIG
    - Outlet: 2.5PSIG-20PSIG

    - Material: copper

    - Size: approx. 100*60mm/3.94*2.36inch

    Package Includes:

    1 Piece Propane Tank Adapter


    Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

    ','Allows you to quickly and easily check the amount of propane in the tank\nPropane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\nMonitors fuel level without removing the tank.Easy to install\nHeavy duty 100% solid brass construction','Homyl','','us',349),('B0872C7BXM','Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches','Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

    Features:
    Material: Heavy Duty 600D Oxford fabric and PVC cover.
    Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
    Durable, scratch resistant polyester with UV protection all year round.
    This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
    Keeps dust and dirt from the tank\'s exterior, cover up ugly propane tank eye sore.
    Easy to Clean: Low Circle Machine Wash & Handwash.

    100% Satisfaction Guaranteed:
    30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
    ','PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nPROPANE TANK COVER DIMENSIONS: 7.5\" Diameter (top) x 12.6\" Diameter (bottom) x 23.6\" High, fits for most cylinder propane tank up to 20lb.\nFEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank.\nEASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage.\n100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.','Senvate','Black','us',350),('B07S8HQC5K','Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading','What is the purpose of these clips? How would one use them?
    Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
    How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

    Features:
    1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
    2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
    3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
    4. Smoker / Grill / Oven Safe and dish washer safe.

    Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
    Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
    compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
    compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
    compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
    Intelitopia Meat Thermometer
    compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
    compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
    ','Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes\nUniversal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe\nEssential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer\nStainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading.\nSmoker / Grill / Oven Safe and dish washer safe. 2 Pack','eBasics','Silver','us',351),('B074GXFLX5','Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:','','HIGH PRESSURE SINGLE PROPANE BURNER - Gas One’s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control.\nNO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner!\nEASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1’s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator!\nRUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One’s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1’s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU!\nSAFETY 1ST - Includes a Regulator with ensured quality control','GasOne','Old Style Black QCC','us',352),('B08C9YPBV9','VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout','Are you ready to go camping? Take VIVOHOME’s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

    Features:
    -The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
    -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
    -The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
    -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
    -Great stove for camping; It will really simplify your canning process

    Product Specification:
    -Rated output: 54,000 total BTU/hr, for 18,000 BTU each
    -Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
    -Stove Height: 29\"

    Package Includes:
    -1*Triple burner stove
    -1*Extension hose & regulator
    -4*Detachable legs
    -1*Manual','GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don\'t want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend\nTHREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you’re cooking at the right rate\nVERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove\'s body; It can also be used as a countertop stove without legs\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life','VIVOHOME','Black','us',353),('B00IZCNP5C','Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black','','Securely Holds Two 30 pounds Propane Tanks\nFast and Easy To Use\nBuilt From A Durable Powder Coated Steel','Flame King','Black','us',354),('B07MV43X4C','Cedar Green 330SA Earth Anchor, Black','','Each Package Includes 6 Earth Anchors\n30\" Length with 3\" Dia Helix Auger & 1\" Inside Ring\nHeavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding\nEasy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs\nIdeal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake','Cedar Green','BLACK','us',355),('B004Q068YC','Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n4 Stainless steel burners\n48,800 BTU-per-hour input\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box','Weber','Stainless Steel','us',356),('B000EI759M','Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree','Texsport Propane, Appliance Gas Hose 14229TEX','Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree\nSmooth fittings for easy bulk tank attachment\nNote: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY','Texsport','','us',357),('B00BWAPOB2','Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75\" Long','Full weather protection for BBQ Grill up to 75\" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75\" Lx26\"Dx48\"H','WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won\'t act on the metal and tarnish it.\nOUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come.\nMADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking.\nUNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High\nSERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.','Formosa Covers','Taupe','us',358),('B00N5CQ252','Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote','Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.','','Peterson Real Fyre','','us',359),('B07QT8FLPW','Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat','It’s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

    The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

    Make Grilling, Baking, Cooking Easier:
    Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
    This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
    It will not retain or transfer tastes or odors between uses.

    Application:
    Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
    Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
    Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

    Tips for Maintaining:
    Store mats flat or rolled upin storage for small space. Don’t fold it.

    Warning:
    Do not let grease accumulate due to risk of grease fire.
    Use mats at low-medium heat settings (300°F - 400°F).
    To avoid scratching, only use wood, plastic or silicone utensils.
    Do not use sharp stainless steel or metal tools to avoid scratching.
    Don’t use scratch pad or abrasive brush while cleaning mats.

    Package Included:
    6 * Solid Grill Mats
    ','1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid, like pizza,squid,beef,eggs....\n2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.','Miaowoof','Copper','us',360),('B071749XB4','GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black','','Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose\nUniversal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output)\nBrass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring\nHeat resistant - cast iron will not melt easily compared to aluminum construction\nTo be used with propane only','GasOne','black','us',361),('B01LVUYVPT','Pleasant Hearth VFL-SO24DT 30,000 BTU\'s 24\" Southern Oak Vent Free Gas Log Set','','Dual fuel technology allows the unit to be operated with propane or natural Gas\nUp to 30,000 BTU\'s/hr. heats up to 1,000 sq. Ft\nNo electricity required allows for reliable back-up heating incase of an Emergency situation\nDual burner system provides two rows of flames for a more full looking fire\n6 hand painted concrete logs inspired by nature','Pleasant Hearth','','us',362),('B006WRLBNU','Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7\" Long','','Cordierite stone absorbs moisture for light and crispy thin crust pizza\nCarry rack makes transporting the pizza quick and easy\nFits into the Gourmet BBQ System cooking grate so that it stays in place while grilling\nEnjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings','Weber','Beige','us',363),('B0753BKVJX','GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet','Specifications:
    - Weight: 44lbs
    - Cover Color: Brown/Coffee
    - Frame Color: Black
    - Material: Metal, Polyester
    - Overall Dimensions: 98.4\"L x 59.1\"W x 106.3\"H

    Features:
    - Stylish double layered Fire-retardant canopy cover
    - Slanted roof to help keep clear of debris
    - 180GSM Polyester tent material and vented at top
    - Rust resistant powder coated steel frame
    - Come with hook on the middle top, put up fan, lights and so on
    - 2 iron meshes for grill accessories, beverages or food
    - Included 7 x Pegs
    - 1 Bottle opener attached to frame
    - Footprint size 8\' x 5\'
    - Designed specifically to house a barbecue
    - Assembly required comes with instructions and all hardware included

    Note:
    We do not recommend leaving set-up over several days, in adverse weather conditions.

    Descriptions:
    This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day. The durable canopy protects you from harmful UV rays and has a stable iron frame. There is one metal shelves on each side of the shelter to offer a handy place to set food and other items. It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill. Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.','Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide\nBBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDouble-tier top cover design not only looks good but is designed to make Good ventilating\nSafe flame-resistant top canopy with Water and UV resistant function for long lasting use\nGojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on','GOJOOASIS','Brown','us',364),('B07RX4JN5Q','Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black','Worried about food falling through the grille?

    Prevent stains from besmirching your yard or deck?

    Hate cleaning grills full of grease?


    You will like Dailyart BBQ MAT- Making your BBQ more easily !

    - Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

    - The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

    - Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

    - The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

    - Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and vegetables.

    - Easy to store:can be stored either flat or rolled up.

    Specifications:

    Thickness: 0.2mm
    Size:Large 44 x 30 CM Coverage area
    Material: PTFE glass fiber coating

    Package included:

    5 x BBQ Grill Mat
    1x Wish card
    ','Non-stick design:Get more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor.\nHigh temperature resistance over 500 ℉: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500℉ without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin.\nReusable:The barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell.\nMultipurpose Barbecue Grill Mats:Perfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food.\nSafer and Healthier:When our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.','Dailyart','Black','us',365),('B002MEPTOE','Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater','The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it\'s designed differently than most heaters on the market. The Raypak Digital Propane Heater\'s unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It\'s also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.','336,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile','Raypak','','us',366),('B07CVNQKR6','Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater','Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.','Specifications:\nFeatures automatic shut off system for low oxygen\nEasy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter','Mr. Heater','Black','us',367),('B07QLDTY37','Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)','
    Flame Retardant and Absorbent Material

    The surface fabric of the Under Grill Mat is made of flame retardant material.

    but the backing material is not flame retardant material.

    This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

    from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

    Perfect Pretection

    The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

    surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

    BBQ mess.This strong material is made from 100% recycled plastic bottles.

    Easily Use

    The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

    Our material is environmentally safe. This product is safe for your entire family, including your pets.
    .

    If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

    100% NO HASSEL Lifetime Guarantee.
    ','Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ\nPerfect Protection:This material is made of flame retardant material, It won\'t burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath.\nGood Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.\nEasily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size.\nSuggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.','Cibicon','','us',368),('B002MET2CO','Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater','The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it\'s designed differently than most heaters on the market. The Raypak Digital Propane Heater\'s unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It\'s also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.','406,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile','Raypak','Multicolor','us',369),('B01LBW7S4Q','Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ','Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ','','Weber','','us',370),('B08XYJ7YQV','Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White','','Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn\'t have this, most places won\'t fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we\'ve got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.','Flame King','White','us',371),('B07CB4CV56','Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass)','','The LPG adapter has any camping propane small tank input and a lindal value output.\nThe LPG adapter simply threads into the camping propane canister and your stove or stove\'s input end threads onto the LPG adapter.\nConvert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder\nThe Lindal Value Output is Auo-closed when it is not connected to the stove\nHigh quality 100% solid brass construction makes it corrosion resistant','Kbrotech','Gold','us',372),('B07CNXY2XG','Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush – Gas Grill Cleaner - BBQ Brush','Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included','Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nRestore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nCleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you’re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with\nThe extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before.\nQuarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.','Drill Brush Power Scrubber by Useful Products','Black','us',373),('B00TZPETFI','DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type','','Converts POL LP tank to Qcc1/Type1 hoses and regulators.\nThis adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place.\nProvides secure and airtight connection between propane tank and gas grill.\nHand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.','DOZYANT','POL to QCC1 Adapter','us',374),('B07FTK91YG','Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump','1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
    2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
    3.Ignition is provided by 2 D cell batteries which means electricity isn’t required to power the unit. (batteries not included)
    4.The ideal low water pressure operating range for the Camplux BD158 is 2.8~110.0 PSI, work easily with great performance.
    5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
    6.The system also works with a 12 volt pump to get the desired pressure.
    7.The gas water heater can\'t be used for drinking water.
    8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

    Easy to Use
    1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
    2. Connect the gas cylinder with the supplied gas hose and regulator.
    3. Connect shower hose and shower head to the hot water outlet.
    4. Connect water hose to the water inlet.
    5. Insert 2 \"D\" cell batteries.
    6. Enjoy instant hot water!

    What\'s in the Box
    1 x Camplux pro portable hot water system
    1 x 1.2 GPM Water Pump
    1 x 3 setting ON/OFF shower head and pedestal
    1 x 5\"ft premium shower hose
    1 x 5\"ft CSA approval gas hose & regulator
    1 x Camplux 1.2 GPM Water Pump
    1 x garden hose: 1/2\" BSP Female x 3/4\" GHT Female
    1 x garden hose: 1/2\" BSP Female X 3/4\" GHT Male
    1 x gas inlet connector: 1/2\" BSP Female x 5/8\" NPT Inverted Flare Male
    1 x accessories package(included water tape & screws )
    1 x instruction manual

    Inquiry & aftersales service: support@camplux.com
    Service hotline: (1)844-538-7475','Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don\'t need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one.\n3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV\'s and Boats.\nCSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 °F.\nPower Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise.\nImportant Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.','CAMPLUX ENJOY OUTDOOR LIFE','Peral White','us',375),('B07HDWFMMG','Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack)','Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.','Easy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\nConnects directly into a 1 pound propane tank container for a 5.5 hour runtime\nFeatures automatic shut off system for low oxygen','Mr. Heater','','us',376),('B00HJ6OPAO','Camco 40547 Thumbscrew & Nut for 40543 Tank Cover','','Replacement hardware for Camco propane tank lid assembly\nIncludes two nuts and bolts\nGenuine replacement parts\nSave time and money by replacing just the lid assembly hardware\nDurable and easy to use','Camco','','us',377),('B07QRGWTMH','LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers','This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
    but also can promote kids hand-eye coordination, creative expression and imaginative skills.

    INTRODUCTION
    1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
    2.Turn on the switch of BBQ grill.
    3. Use the sauce bottle to absorb water and add water to the water injection area.
    4.Press the buttons, the BBQ grill will light up and emit smoke.

    Notice: BBQ Grill requires 3*1.5 V ”AA” Batteries (Not Included)
      Not for children under 3 years.

    PRODUCT SIZE: 47.2*34.5*24.5 CM
    PACKAGE WEIGHT: 0.708 KG
    PACKAGE SIZE: 24*24.5*12 CM
    ','【19 Pieces Food Playset】Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1\n【Emulational Design】Inject water into the grill, the bottom will feature as an electric “burner”, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls\n【Safe for Kids】Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt\n【Convenient to Use】This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n【Need Batteries】The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations','LBLA','','us',378),('B08W4Y34SR','Outsunny 8\'x5\' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown','Don\'t you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you\'d like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

    Features:
    - The steel roof is UV ray and water fighting for outdoor use
    - Double roof has great air circulation and heat reduction
    - Two side shelves for placing food and drink
    - Including 8 ground stakes and 8 expansion screws for stable standing
    - Assembly required


    Specifications:
    - Color: Brown
    - Material: Aluminium, Steel
    - Overall Dimension: 8.4\' L x 5.2\' W x 8\' H
    - Eave Height: 6.4\'
    - Shelf Size: 58.25\" L x 8.75\" W x 0.75\" T
    - Shelf Height to the Ground: 3.3\'
    - Support Pole Spacing: 7.1\', 5.2\'
    - Weight Capacity of Each Shelf: 55 lbs


    ','IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party\nCONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks.\nGREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing\nSTRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come\nBBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4\'L x 5.2\'W x 8\'H, Eaves Height: 6.4\'','Outsunny','Brown','us',379),('B085WSHG8H','Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output','','【Practicality】Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical.\n【Adjustable Control Valve】On/off switch can adjust the gas refilling speed.\n【Good Quality Materia】Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting.\n【Easy to use】Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors.\n【Include】 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.','Jeebel Camp','Propane Tank Adapter Extension Hose','us',380),('B07N2MXJ64','YRYM HT Copper Grill Mat Set of 5-13\"x15.75\"Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill','

    It’s 100% safe to use FREE from any harmful chemicals that might seep into your food.

    The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

    ★Cook without oil or fats more healthy

    *SGS approved
    *Foods retain more vitamins and minerals
    *Does NOT absorb odors or transfer flavors

    ★Make Grilling, Baking, Cooking Easier:
    *Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
    *This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
    *It will not retain or transfer tastes or odors between uses.

    ★Application:
    *Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
    *Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
    *Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

    ★Simple To Use:
    *Simply place this mat on the food grill , It never sticks!
    *They can also be cut to fit your particular grill or oven perfectly.

    ★CLEAN-UP IS A BREEZE!
    *Simply clean the mats with warm soapy water.
    *Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe!

    ★Package Included:
    5 * Cooper Grill Mats
    1 * Oil Brush BBQ Liquid Pen

    ★GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
    Any questions you have, please don\'t hesitate to contact us

    Your Purchase Is Risk Free. ADD TO CART TODAY!
    ','♥ Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves.\n♥ Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500°F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS.\n♥ Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package!\n♥ Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on!\n♥ Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.','YRYM HT','Copper','us',381),('B094HHS7Q4','My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ','

    My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it’s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

    The materials used in the manufacture of our product have been chosen with your health in mind. With it’s high quality PTFE-Fiberglass material, it’s long-lasting and suitable for reuse. It’s thickness is 0.2 mm. This thickness is the most preferred.

    You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

    When using our product, we ask you to pay attention to just a few things:

    - Please do not put the grill mat directly on the fired charcoal.

    - Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

    - Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

    - Before cleaning, wait for it to cool down and first clean it with a dry cloth.

    - If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

    Thank you very much for choosing My Aegean grill mat.
     

    ','HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven.\nNON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories.\nREUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It’s easy to clean and there is no need for a grill cleaning. Extends the life of your grill.\nMULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It’s standard size is 15.75 x 13 inches, but you can cut it to any size you want.\nYOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.','my aegean NATURAL','','us',382),('B07YDCYCGD','Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas','

    ☞ The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

    ☞ All the food accessories add to the fun that kids has with this grill playset.

    ☞ With this play grill, your kids will enjoy a bbq party with his little friends.

    ☞ It is really a good Christmas gift for kids who love playing cooking game. 

    ','🍗 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids.\n🍢 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun.\n🌽 Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid’s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included.\n🍴 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty.\n🍻 Pretend Play Kitchen Fun for Kids:With this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.','AugToy','','us',383),('B095KPPWGG','Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)','It’s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.','7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills.\n100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill.\nResusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up.\nFood-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F.\nIf you are not happy with your new grill mats, please contact us for a refund or replacement.','Lamesa','','us',384),('B08D8YH6W6','WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank','Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank','Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports.\n2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame.\nOur propane hose is 350PSI, High pressure resistance ensures your safety.\nEasy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill.\nOur products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc','WADEO','','us',385),('B00YDST5EW','onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others','The onlyfire 14451 igniter fits Models of following BBQ gas grills: 

    Uniflame Part Numbers: 55-07-448;

    Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

    Amana Part Numbers: FCTG3007029;

    Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

    Suitable Models of BBQ gas grills:
    Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

    Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

    Exact-fit parts !Cooks better! Durable construction and Lasts longer!

    A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

    NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

    Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

    ','7/8\" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet \"AA\" Battery Push Button Ignitor (Battery not include)\nFits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP\nFits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650\nFits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603\nSuitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372','onlyfire','','us',386),('B08TBJCZCG','Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)','','𝗩𝗶𝗻𝘁𝗮𝗴𝗲 𝗕𝘂𝘀𝗶𝗻𝗲𝘀𝘀 𝗦𝘂𝗶𝘁𝗰𝗮𝘀𝗲 𝗦𝘁𝘆𝗹𝗲: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life.\n𝗙𝗿𝗲𝗲 𝗔𝘀𝘀𝗲𝗺𝗯𝗹𝗲 𝗕𝗕𝗤 𝗚𝗿𝗶𝗹𝗹 𝗚𝗿𝗮𝘁𝗲: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use.\n𝗧𝘄𝗼 𝗖𝗼𝗺𝗽𝗿𝗲𝘀𝘀𝗶𝗯𝗹𝗲 𝗖𝗵𝗮𝗿𝗰𝗼𝗮𝗹 𝗕𝗼𝘅: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient.\n𝗘𝘅𝗾𝘂𝗶𝘀𝗶𝘁𝗲 𝗖𝗿𝗮𝗳𝘁𝗺𝗮𝗻𝘀𝗵𝗶𝗽: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production.\n𝗘𝗮𝘀𝘆 𝘁𝗼 𝗔𝗱𝗱 𝗖𝗵𝗮𝗿𝗰𝗼𝗮𝗹: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.','Supsiah','Mat Black','us',387),('B01DVJ66H2','Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men','Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
    This grill kit includes the ultimate bbq smoker accessories:
    1. All-Natural Cherry Wood Chips
    2. All Natural Apple Wood Chips
    3. All-Natural Hickory Wood Chips
    4. Universal Grill Scraper / Bottle Opener
    5. Specialty Grilling Thermometer
    6. Stainless Steel Grill Smoker Box
    7. Hickory Smoked Salt
    8. Instructions, Recipe Cards, Care Instructions
    When you grill over a base of our quality wood chips, you\'re kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
    Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
    Looking for a gift for men who everything?
    This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he\'ll love and his tastebuds will remember.','Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That\'s why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We\'re devoted to helping you get great results with the right tools and thorough instructions. And if you\'re ever stumped- we\'re available to help.\n100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don\'t settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips.\nTop-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything.\nThe Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They\'re unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything.\nAdd 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.','Cooking Gift Set','Kraft Brown','us',388),('B00008ZA09','Bernzomatic TS4000 Trigger Start Torch','','TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings.\nDURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip.\nHIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance.\nSWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.','Bernzomatic','Stainless Steel,Brass','us',389),('B08M9HL7XW','Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic','Features:
    Durable metal frame
    Thermometer on the lid
    Airflow control
    Coal grids for cooking chambers
    Attractive wood handles

    Grill material: metal
    Grill grid material: stainless steel
    Overall size: 16.5 x 11.8 x 14.6 inch
    Weight: 3.6 kg/7.9 lb
    Color: black/green
    Delivery contents: 1 x charcoal grill + 1 x instruction
    Please Note: Please assemble the grill by adults.

    ','【Outdoor BBQ Grill】: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences.\n【Versatile Charcoal Grill】: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness.\n【Healthy & Premium Quality】: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy.\n【Precise Cooking】: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising.\n【Easy to Assemble & Use】: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.','Lovely Snail','Black','us',390),('B01M133XUS','BBQ Coverpro Built-in Grill Cover up to 37\"','

    BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


    ※Vinyl cover for built-in 37-inch grill.
    ※Protects built-in grill from all weather conditions.
    ※High heat resistant cover, UV protection and resists cold cracking.
    ※Size: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down.
    ※Heavy Gauge 600 D polyester with PVC coated water repellent top.

    We guarantee satisfaction that if you\'re not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

    ','Vinyl cover for built-in 37-inch grill\nProtects built-in grill from all weather conditions\nHigh heat resistant cover, UV protection and resists cold cracking\nSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down\nHeavy Gauge 600 D polyester with PVC coated water repellent top','BBQ Coverpro','','us',391),('B07N12VXHK','Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills','BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18\" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!','The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools.\nExtra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18\" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here!\nOur grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come.\nOur BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point!\n1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!','Simplistex','Stainless Steel','us',392),('B00823W9B0','Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)','','Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction','Mr. Heater','Multicolored','us',393),('B000646U3Q','Coleman 2000032171 Cooking Stoves Accessories & Parts','','Replacement gas stove regulator for Coleman stoves with gas pressure issues\nMaintains steady propane gas pressure in Coleman stoves\nFits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves\nBrings new life to beloved Coleman stoves that require maintenance\nCheck user manual of your Coleman stove to confirm compatibility','Coleman','Multi','us',394),('B07Y8GZK6V','Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers','

    Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

    Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600°F (1425°C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

    The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

    Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

    Specification:

    • Forge Type: Double Burner Forge
    • Burner: Double Burner
    • Burner Nozzle Material: SS-304
    • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
    • Forge Internal Dimension: 6.5\" (H) x 5.5\" (W) x 18\"(L)
    • Forge Insulation: 1” thick Refractory Ceramic Fibre of 2600°F
    • Floor Insulation: 1” thick Rigid Block of Refractory Fire Brick

    Connection Kit:

    • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
    • 5 ft. (2 Meter) gas hose pipe
    • 2 hose clamp

    Product user manual & assembly instruction provided with packing.

    ','Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1\" thick high density ceramic fiber blanket\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\nReduce fuel consumption\nTwo Burners, Individually controlled with ball valves','Simond Store','','us',395),('B01GGDBLF2','VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg','Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8\" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA','🔥 【MEDIUM SIZE】 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more!\n🔥 【VERSITILE】 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared.\n🔥 【EASY TO USE】 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8” tall\n🔥 【AWARD WINNING】 Makes awesome crispy chicken wings and seared steak!\n🔥 【GENUINE】 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.','VORTEX (IN)DIRECT HEAT','stainless','us',396),('B07NVMY43D','BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only)','The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.','Upgraded Full Metal Cover Version, change old design\'s plastic knob to solid brass constructed knob.\nOur torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability.\nStrong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350℃, meets the most common needs for both professionals and DIY fans.\nSmart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane\nWith recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.','MR. TORCH','Gold','us',397),('B08124CP1Z','Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting','','','Mrinb-Sports','','us',398),('B07P8BN5X1','Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone','','Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board\nLiquid propane ready, Natural gas conversion compatible by certified technician.\nSeamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge\nPatented cast stainless steel knobs, with independent burner ignition system\nHeavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design','Cal Flame','Earth Tone','us',399),('B00GJEPTJS','Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite','','KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking\nLARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once\nBEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8\" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks\nEASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan\nDIMENSIONS - 31”L x 45”W x 47”H, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin\' Stone, both sold separately)','Char-Griller','Graphite','us',400),('B08HPTJG1W','Safe \'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)','Safe ‘n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe ‘n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe ‘n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.','Professional Formula – Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food.\nSafe and Easy to Use. Spray On, Let Set. Rinse Off – Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly.\nPowerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting – Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily.\nMade In The USA – Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers.\nSatisfaction Guaranteed – Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you’re not completely satisfied just contact us for a full refund.','Safe \'n Easy','','us',401),('B07T6SH2Q3','RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)','','FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer.\nHeavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions.\nCustom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover.\nConvenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank.\nGuarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.','TUYU','Gray','us',402),('B07HJY1Z4B','Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt','','Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped\nOur sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You\'re Going To Want More. Great for the restaurant owner of grill master of the family.\nLightweight, Classic fit, Double-needle sleeve and bottom hem','Backyard BBQ Unlimited','Black','us',403),('B08MQRP2DT','Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag','Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.','Variety 6 Pack of Smoking Chips\nTry Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs.\nUse with gas grills, electric smokers, griddles, kettle grills and ceramic grills','Western Wood','','us',404),('B08C9SNF7H','Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild','

    Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

    Specification:

    Components: furnace body + bracket + carbon plate + grilled net + carbon net

    Baking tray size: 17 x 11.5 inch

    After installation of a single product size: 17 x 11.5 x 9.3 inch

    Colour: Black

    Material: iron + chrome grilled net

    Package included:

    1 x Folding BBQ Grill

    1 x Grilled net

    1 x Charcoal net

    Only the above package content, other products are not included.

    ','【Newest Design】Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill.\n【Easy to use & Fold】There are bracelets on both sides of the grill for easy carrying the grill doesn\'t need to be installed. When you\'re barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok.\n【Outdoor BBQ Partner】Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends.\n【Safety & Healthy】High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food).\n【Suitable for Many Occasions】Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.','Pinshion','','us',405),('B07477NMF4','ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver','','BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs\nDual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually\nLarge, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments\nHighly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within ±1.8°f (±1°c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716°f and a wide temperature of 14˚f to 572˚f (-10˚c to 300˚c), cook anything in any grill setup\nEasy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill','ThermoPro','Silver grill thermometer','us',406),('B07QPQZ1B8','grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men','
    Why is this the best BBQ Grilling Tools Set for you?
    Quality, Durability, Design, Utility. You\'ll get 6 complete BBQ Accessories Kit.
    Why choose us?
    Grill better, faster, and with less effort
    Design
    Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you\'ll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
    Premium Quality
    Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
    Gift Ideas
    It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
    Note:
    1.Please keep sharp tools away from children to avoid hurting.
    2.We recommend cleaning all tools before and after use and dry them for better maintenance.
    3.Please store the tools set in a cool and dry place for save.','【Complete Barbecue Accessories】BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe.\n【Premium Quality】Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don\'t worry about rusting or cracking. You can\'t find a better barbecue tool set than this.\n【Elegant Design】As soon you remove these deluxe tools from the portable bag, you\'ll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm.\n【Convenient Storage】Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father’s Day, birthdays, Christmas, wedding and housewarming.\n【Satisfactory After-sales Service】 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.','grilljoy','6pcs bbq tool set with bag','us',407),('B071D1SYLY','SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails','

    The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4\" SAE inverted flare and the outlet is a 3/8\" NPT female pipe thread.

    • 262,500 BTU\'s Per Hour Capacity. 
    • Set at standard propane low pressure - 11\" Water Column.
    • Regulator body is 6 1/4\" Overall Height.
    • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
    • Adjustable gas pressure. Also has a pressure tap. 
    • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
    • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
    • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
    • Durable and easy to use.
    • Dual stage design maintains constant gas pressure under changing demand and conditions
    • 2 x 15\" Acme x 1/4\" Inverted flare pigtails are included. 
    ','262,500 BTU\'s Per Hour Capacity.\nSet at standard propane low pressure - 11\" Water Column.\nIf you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product.\nThe Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.\nMounting screws not included.','SENMOD','Gray','us',408),('B01LYJBJG2','Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set','This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

    Designed with a lid handle for easy lid removal.

    Made in the USA by PMC Supplies

    Dimensions: Outer: 4\" (101 mm) Diameter x 4\" (101 mm) Height, Inner: 1.7\" Diameter x 1.5\" Depth, and Wall Thickness: 1.15\" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

    Also Includes:

    (1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or \"slag\" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

    (1) Pair of 12-1/2\" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

    (2) Graphite Crucibles: 1.75\" Height x 1.5\" in Diameter; with a capacity of 5 ounces of gold.

    (1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

    Please contact us with any questions. Thanks for looking!','Made in the USA By PMC Supplies\nRequires 2 standard propane bottles and propane tips (not included)\nIncludes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups\nMelts 2 to 5 ounces of gold\nCan also be used with silver, copper, brass, aluminum, and other precious metals','PMC Supplies LLC','Silver','us',409),('B07F1QRTCK','SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack','Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper\'s propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4\" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service','【Standard Connector】 5/16\" diameter LP hose, ACME nut x 1/4\" male NPT\n【Application】 Connect your camper\'s 1/4\" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4\" inverted flare)\n【More Durable】 Stainless braided hose effectively reduce damage caused by friction and animals\n【CSA Certified】 Excess flow safety and thermal shutoff\n【Package Includes】 2 × RV pigtail hose, 1 year worry-free customer service','SHINESTAR','','us',410),('B07QYCHS2P','Cook N Home Style 32cm Stovetop grill Korean BBQ, Black','','Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight\nNonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free\nDie-cast aluminum is break resistant and does not warp;\nTraditional Korean BBQ style, product made in Korea\nWorks on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended','Cook N Home','Black','us',411),('B0039Z5NNM','Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others','','Listing is for 1 control knob.\n2.3125 inch dia. control knob\nFits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N\nFits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01','Music City Metals','','us',412),('B07KX3FW9C','Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers','

    Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600°F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

    The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

    Include Accessories with Identification

    • FORGE: Forge Body
    • PART-A: Single Burner
    • PART-B: Burner Air Chock Valve (1 Pcs)
    • PART-C: Gas Inlet pipe with valve
    • PART-D: 6.5\' (2M) Gas Hose with clamps
    • PART-E: Refractory Fire Brick
    • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
    • PART-G: Teflon Tape
    • PART-H: Metal Holding Stand

    Specification

    • Material: 1/8\" Thick Structural Square Steel Pipe
    • Burner Nozzle Material : SS-304
    • Inside Floor : 1\" Thick Refractory Brick
    • Inside Insulation Material : 1\" Thick Refractory Ceramic Fiber 2600°F 8 pcf
    • Forge Internal Dimension : 2.75\" x 4\" x 10\"
    • Burner: Single Burner

    Note: User Manual, Assembly and Safety instructions are Included in the packing.

    ','Single Burner Propane Forge Furnace with 2600 degree capacity\nlined by 1\" thick high density ceramic fiber blanket\nComparatively High Tensile Strength & Can withstand Direct Flame\nComes with stand\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.','Simond Store','','us',413),('B073XD9W9D','BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches','

    Color:Black + Copper

    Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy! 

    Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on. 

    Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses. 

    With one of these mats down, you can prepare a full breakfast in a matter of minutes. 

    They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off. 

    For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours. 

    These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying. 

    These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling... 

    -Veggies

    -Shrimp 

    -Fish

    -Bacon 

    -Pizza 

    -Pancakes 

    BBQ Grill Mats Size: 15.75\" x 13\"

    Note: can not directly contact the fire source

    ','100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill.\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit!\nAPPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!','Cook Time','Black','us',414),('B01FUSLMDK','BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366','BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures\' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.','','BBQ GALORE TURBO','','us',415),('B001DC7FPM','Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black','','Compatible with most standard 16.4 oz propane canisters\nWide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances\nSwivel extension feet for added stability - Feet fold away completely for storage\nMade of durable high impact plastic for reliability and lightness\nReplacement base for camping or hunting stoves and propane accessories','Stansport','Black','us',416),('B07FWVSNR9','GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up','MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
    IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
    GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
    NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
    REUSABLE - Easy to clean. Dishwasher safe.
    HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.','MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.\nIMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.\nGRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.\nNON-STICK - Teflon keeps grilled or baked food from sticking to the mat.\nREUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.','GRILLMATIC','','us',417),('B01IHHLB3W','ThermoPro TP03B Termómetro Digital Cocina de Lectura instantánea Termometro Barbacoa para Carne Líquidos Alimentos Leche Aceite','','【Rápido y Preciso】 Con una sonda de acero inoxidable apto para uso alimentario de aproximadamente 10 cm y una punta extra fina, el termómetro de cocción ofrece resultados de medición exactos en 3-5 segundos. Temperatura del rango de medición: -50 ° C ~ 300 ° C\n【Muy Fácil de Usar】 Con el práctico mecanismo de plegado, es un juego de niños desplegar la sonda y pegarla. El termómetro para carnes proporciona los resultados exactos de la medición en muy poco tiempo\n【Pantalla Retroiluminada】 El termómetro de cocción tiene una pantalla LCD con retroiluminación, con la que el número es fácil de leer en el sol y en la oscuridad. Es perfecto para uso doméstico y profesional, ya sea que esté cocinando en casa para su familia, entreteniendo a amigos o asando a la parrilla\n【Fijación Colgante o Magnética】 El imán en la parte posterior permite que el termómetro grill se fije fácilmente a la estufa o grill, o se cuelgue con el gancho, por lo que su posicionamiento es absolutamente flexible\n【Apagado Automático】 Este termómetro de grill se apaga automáticamente si no se pulsa ningún botón durante 10 minutos. Fuente de alimentación con batería AAA (incluida en la entrega). Escala de temperatura conmutable entre Celsius y Fahrenheit','ThermoPro','','es',418),('B01IHHLB3W','ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer','','Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor\nAccurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to ±0.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on\nEasy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage\nSmart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included\nBacklight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors','ThermoPro','Orange red','us',418),('B07X8ZN8MS','Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father\'s Day, Smoker, Camping, Kitchen,21 PCS-Standard','Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard','DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again.\nPRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection.\nELEGANT DESIGN FOR GRILLING: You\'ll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend.\nPROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father’s day grilling gifts for men, excellent gift for any camping lovers.\nHASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.','Anpro','','us',419),('B000HCR89W','Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover','','THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Fits barbecue grills 64\"L x 30\"D x 48\"H\nWEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc)\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt','Classic Accessories','Pebble','us',420),('B07L9S7C1R','Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue','Specifications:
    Condition: 100% Brand New
    Material: Plastic + Stainless Steel
    Main Color: Black
    Power Supply: 4 * AA Batteries (not included)
    Total Length: Approx. 26.5cm/10.43in
    Wind Tube Length: 5.9cm/2.32in
    Weight: Approx. 161g

    Package Included:
    1 * Handheld Electric BBQ Fan

    ','【Electrical Power】 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows\n【Quick Heat】 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney\n【Safety Use】 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan\n【Compact Size】 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated\n【Cooking Helper】BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit','Zerodis','','us',421),('B084JG7KBQ','Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard','Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

    Features:
    - 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
    - PA coated polyester canopy top offers sunray and light rain protection
    - Side awning provides extra sun protection
    - Durable metal frame with extra supporting bars for added stability
    - Comes with stakes for the legs for added support
    - 2 platform shelves for grill accessories, beverages or food
    - 5 hookers for cooking tools
    - Easy to assemble
    NOTE: Not to be left up during adverse weather conditions.

    Specifications:
    - Color: Black, Grey
    - Materials: Steel, Polyester
    - Overall Dimension: 85.75\" L x 54.25\" W x 85\" H
    - Peak Height: 85\" H
    - Sidewall Height: 76\" H
    - Net Weight: 44 lbs


    ','STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging.\nWEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions.\nSTORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools.\nSTURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station.\nOverall Dimension: 85.75\" L x 54.25\" W x 85\" H, Eaves Height: 85\" H, Side Awning Size:78.75\" L x 19.75\" W ,','Outsunny','multi','us',422),('B00OV88E5A','Propane Tip for Gas Lantern 123SID','Rosebud flame','Propane(LP) tip for gas lanterns.\n2 1/8\" tall\n1/8\" MNPT\nBrass components\nAdjustable air intake','Gas Light Pro','Brass','us',423),('B07MNH28TP','MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown)','','✅Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated.\n✅Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top.\n✅Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric.\n✅Rational Design: Two handy shelves for grill accessories, beverages and food. 8\' x 5\' shade provides enough space to set most kinds of grills. Perfect choice for BBQ.\n✅Free Gift: 2 LED Lights.','MASTERCANOPY','Brown','us',424),('B01N8WLXO6','Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 304 stainless steel construction and chrome accents\nHeavy duty stainless steel \"Wave\" grill grates and dual level sear plates with internal halogen lights\n(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker\n18,000 BTU rear infrared burner and rotisserie kit included','Napoleon','','us',425),('B08SVXLXZT','SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men','Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
    Grilling in one of life’s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone\'s inner grill master.
    Enjoy every BBQ party.

    Product details:
    Tools Material: Food-grade Stainless Steel
    Storage Case Material: Oxford Cloth
    Package size:15.8 × 5 × 2 inches
    Product weight: 2.2 pounds
    Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

    Warm Notice:
    Store your bbq tools properly and keep sharp or metal tools away from children.
    In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

    ','🍖【Valuable 23 Barbecue Accessories Set】This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue.\n🍖【Premium Stainless Steel Material】Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob.\n🍖【Intimate Design】All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill.\n🍖【Portable and Versatile】The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father’s day grilling gifts or special gift for your family and friend.\n🍖【Hassle-free Customer Service】We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!','SXTBWFY','','us',426),('B000NWAO74','Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover','','THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72\"L x 30\"D x 51\"H\nWEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt','Classic Accessories','Pebble','us',427),('B08BW61RDG','BBQ\'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil Grills','Now you can barbecue like you never have before with ease.  This unique Barbecuing accessory makes rib booking virtually automatic.  Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ’n Grill rack, cover and then do nothing until they are ready to eat!  This technique allows the meat to cook on both sides at the same time.  Use on any covered charcoal grill of 19” or more across and 17” or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken without constant attention, without fussing, without turning, and without charring or burning.  The BBQ’n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food. ','Makes Barbecuing Ribs and Chicken Effortless\nWorks with Charcoal or Gas\nWorks with Round, Square or Rectangular Grills\nMade from Heavy Duty Plated Steel','BBQ\'n Grill','Stainless Steel','us',428),('B06ZY5W3R7','Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator','','','Unknown','','us',429),('B088P94WNH','Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack)','Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You\'ll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you\'ll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.','Compact but powerful with 3800 BTU of heat\nIdeal for decks, patios, campsites, fishing, hunting, and emergency situations\nHeats any space of up to 100 square feet\nUses 1 pound disposable propane tank as fuel source\n45 degree heating angle helps direct radiant heat where you need it most','Mr. Heater','Black','us',430),('B07NPYMSW8','Hot Sox Boys\' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth','','60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex\nImported\nPull On closure\nMachine Wash\nThese BBQ food socks are also available in men\'s and women\'s socks','Hot Sox','Bbq (Grey Heather)','us',431),('B0861XQ5M8','LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ','Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.','Let the barbecue in the night happier.\nTurns on and off manually or with tilt sensor activation.\nLED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours.\nResists heat and moisture damage with glass-reinforced nylon construction.\nFits current Spirit, Genesis, Genesis II and Summit Grills.','BBQ Light','','us',432),('B07G8HFNWB','Hot Sox Men\'s Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)','','Barbecue in style with these bold men\'s crew socks!\n50% Cotton 25% Polyester 23% Nylon 2% Spandex\nFits men\'s shoe size 6 - 12.5\nMachine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron.\nOne pair pack','Hot Sox','Bbq Food (Black)','us',433),('B000DZKZLQ','Mr. Heater F273769 Portable Propane Table Top Regulator with a 1\"-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular','','','Mr. Heater','Silver','us',434),('B007M2FWEI','Camping Emergency Butane Heater Coherent Heat Source Survival Tools','Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.','Use standard butane gas cartidge for portability\nCeramic burner\nPressure sensing safety shut off device\nGas consumption 100gm/hr\nCE certificate','','Red','us',435),('B07FLBPHCD','BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt','','This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh!\nThis fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby!\nLightweight, Classic fit, Double-needle sleeve and bottom hem','Happy BBQ Apparel','Black','us',436),('B08JTM7VNS','Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12\" for 22.5\'\' Smokers, Performer Premium Grill','','【Compatibility】Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate.\n【Dimensions】14.5\" L (the handle part is included) x 12\" W x 1.5\" H.\n【Material】Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill.\n【Features】Seals the moisture and flavor of barbecue and retain the original flavor of barbecue.\n【High-quality】Provides exceptional heat retention and distributiensuring evenly cooked food.','Hisencn','','us',437),('B005MBHFJG','UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50','UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:','Burns up to 1 minute, 5X longer than regular matches\nContains 50 safety matches\nLonger length (3.75\") keeps fingers from getting burned\nCarbonized match stick for safer fire starting\nIdeal for campfires, fireplaces, stoves, BBQ\'s, lanterns, candles, and more','UCO','','us',438),('B07FMQ3PS1','Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12\" Stainless Steel',' For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
    Enjoy BBQ party with your families & friends.

    Features:
    Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
    Burns/Smokes for up to 5 hours.
    Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
    You can smoke anything from cheese to steaks!
    Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
    Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
    With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
    Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
    Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

    Specifications:
    Color: Silver
    Material: 304 stainless steel
    Style: Hexagon design
    Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01\"
    Brush length: 30.5 cm
    Brush hair length: 20 cm
    Hook length: 13 cm
    Hook opening diameter: 3 cm

    Package included:
    1 x Pellet Smoker Tube for Any Grill
    1 x Brush
    1 x Hook
    ','FOR ANY TYPE SMOKER – This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more.\nUP TO 5+ HOURS BILLOWING SMOKE – Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours.\nSAFETY MATERIAL & REPEATEDLY USE – This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use.\nIMPROVED HEXAGON DESIGN – This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food.\nGREAT GIFT & FREE BONUS ITEMS – A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.','MVZAWINO','Hexagon','us',439),('B016HUP1LO','Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove','','Dual fuel technology allows the unit to be operated with Propane or Natural Gas\nUp to 20,000 BTU\'s/hr heats up to 700 sq. ft.\nThermostat control knob automatically maintains your ideal heat level\nDual burner provides 2 rows of flames for a more full looking fire\nSeparately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution','Pleasant Hearth','','us',440),('B07FQVDWZ4','The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill','The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer\'s request. Cordless Drill NOT included.','The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits.\nRestore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco\nThe Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush.\nCleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you’re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with.\nOur brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.”','Drill Brush Power Scrubber by Useful Products','Black','us',441),('B081Q5YVT3','Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder','

    Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

    Waterproof: Made of waterproof material, you don\'t have to worry about getting wet even if it rains or snows. 

    Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

    Prevent your propane tank from experiencing premature fading and damage from the sun.

    The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

    ','▲PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb\n▲HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on.\n▲This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn\'t freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio.\n▲Velcro closure at top, elasticized bottom for a neat, tailored fit.\n▲If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you\'re not completely satisfied, you can ask for a replacement or full refund.','Podoy','BLACK','us',442),('B009H3QVOK','Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp','','This outdoor patio heater is made using heavy duty commercial grade steel.\nThis small patio heater can be taken indoors easily due to its light weight.\nThe portable heater makes use of a standard 1 pound LPG propane tank.\nYou can turn on this patio heater in an instant with the push of a button.\nThis outdoor heater is perfect for your porch or any other outdoor venue.','Fire Sense','Bronze','us',443),('B07QYJKFQZ','Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White','📢 What are the benefits of using thermomate propane gas tankless water heater?

    ✅ 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It\'s ideal for RV\' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

    ✅ 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

    ✅ 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77°F rise in temperature. This means that if your tap water is at 59°F, it will instantly deliver 1.32 gallons per minute of hot water at 113°F.

    ✅ 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV\'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 \"D\" cell batteries to ignite the electronic spark module.

    ✅ 5. It\'s designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance,you can take it anywhere to get instant hot water.


    📖 Specifications

    Max. Flow Rate: 1.32GPM

    Related Gas Pressure: 0.4 PSI

    Power Rating: 34,000 BTU/Hr

    Activation Flow Rate: 0.44GPM

    Water Pressure: 2.5 PSI ~ 110 PSI

    Flue Type: LPG ( Liquid Propane Only )

    Power Source: 2 \"D\" Cell Batteries ( Not Included )

    Vent Pipe: No needed for outdoor use

    ','[2.5 PSI Water Pressure Startup] Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV\'s and Boats.\n[Instant Hot Water On Demand] Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving, saving up to 50% on water heating costs. \n[Multi Safety Protection] Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 °F.\n[Compact Exquisite Design] Compact and space-saving design with minimal noise output which is portable for outdoors.  A great partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool.\n[Easy to Install] Equipped with 1/2\" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it\'s the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).','thermomate','White','us',444),('B0874MTD5B','Gaier Barbecue Grill 8\'x 5\'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard','Product Dimensions:
    - Weight: 44.1lbs
    - Overall size: 98.4 x 59.1 x 106.3 inches
    - Material: Metal, Polyester
    - Cover Color: Brown/Coffee
    - Frame Color: Black','BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDurable steel frame with powder-coated finish is rust-resistant\nVented, double-tiered canopy offers smoke ventilation and stability against windy conditions\nShelves on both sides provide space for placing cutleries or grilling accessories\nGaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on','Gaier','','us',445),('B085J1RSWD','Dometic 50216 RV 2-Burner Propane Cooktop','The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It’s the ideal cooking companion, wherever you are!','','Dometic','','us',446),('B077KRTY7C','Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool','●Specification:
    Material: ABS plastic + Stainless Steel
    Color: black
    Length: 7inches(18cm)
    Width: 3inches(8cm)
    Weight: 4 OZ

    ●Features:
    1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
    2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
    3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
    4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
    5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

    ●Notes:
    1. Please allow slight color difference due to different monitor\'s brightness and contrast settings.
    2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
    3. Pls note that there\'s no battery included with the blower, you need to prepare it by yourself.
    ','★ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance.\n★Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily.\n★Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients.\n★Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted.\n★Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.','Gimiton','','us',447),('B07MJP4ZQV','homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping','HOMENOTE professional griddle tools set
    provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It\'s a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
    KEY FEATURES:
    - 2 Oversized griddle SPATULAS,great for flipping beef cubes, fried egg, rice, noodle and vegetables.
    - 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
    - 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
    - 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
    - 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
    - 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
    - Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
    - Stronger and thicker stainless steel making them Not easily damaged or broken.
    - Dishwasher safe. Easy clean with warm soapy water.
    - Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
    IDEAL GIFT CHOICE
    - Give him/her a surprise !

    Don’t know how to choose a gift for Father\'s Day? A complete set of griddle tools will be the best gift for your father, It’s time to upgrade your father’s old barbecue tools !
    Its also the perfect gift choice for Christmas, friend’s birthday, griddle, grill and camping lovers !

    Accessories Dimensions:
    2 Spatulas: 14.45 x 2.81 inches
    2 Flipper/Turners: 11.64 x 2.73 inches
    1 Chopper Scrapper: 6.64 x 4.69 inches
    2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
    1 Storage bag: 15.6 x 6.25 inches
    1 RECIPE: 7.03 x 5.47 inches
    ','Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning)\nMultipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.\nMust Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag.\nPerfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers.\nEnjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals','homenote','7-Pieces','us',448),('B086Z4BMB8','DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue','','All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax’s exclusive MX2 switch that harnesses the generator\'s full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet','DuroMax','Blue','us',449),('B07RNX3G8J','RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch','

    Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

    Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

    ATTENTION:


    1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

    2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

    3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


    Healthier

    Don\'t worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

    make food is very healthy and delicious.

    More Usages

    Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

    breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It\'s really amazing!

    Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart!

    ','1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them.\n2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks.\n3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new.\n4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.','Renook','Black','us',450),('B000NV6HOE','Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)','','MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger’s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts.\nNOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn’t just happen, it’s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills.\nTRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood\'s unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content—the sweet spot—to maintain a perfect burn-to-smoke ratio\nPAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood\nFEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag','Traeger','Mesquite','us',451),('B0009PURJA','Coleman Camp Oven','','Portable camping oven lets you bake with confidence at the campsite\nFits on Coleman Propane and Liquid Fuel Camp Stoves\nAdjustable rack can be set at 3 heights for versatile baking\nEasy-Clean Aluminum Steel Construction Resists Scratches and Corrosion\nFolds flat for easy storage and carrying','Coleman','','us',452),('B004C2OF62','WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001)','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n6 Stainless steel burners\n60,000 BTU-per-hour input\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n10,600 BTU-per hour input sear burner','Weber','Stainless Steel','us',453),('B07JQBVK9K','Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W','Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
    picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
    by Product Liability Insurance of United States.

    - 120V 60Hz 1600Watts

    - Product dimensions: 17.9 x 11 x 14.8 inches

    - Humanization Features,Rotatable Venting System,Let Safety Be With You
    Fully electric system, 1600W power operated and a variable temperature controller give you a
    happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
    happy hours come with safety assurance for you and your family, friends. and apartment
    approved,your landlord will love this grill just as much as you do.

    - Adjustable Temperature Control
    Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
    to get the best results on any kind of food.

    - 15+ servings,Easy To Use and Install and Maintain Tidy

    The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
    cookies, potatoes and many other delicious foods and complete meals.

    - Foldable warming grill : keep the food in temperature for good taste.

    ','🍖【 FAST-HEATING】 Portable electric grill’s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere.\n🍖【HIGH CAPACITY】 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n🍖【APARTMENT-APPROVED】Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can’t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n🍖【TEMPERATURE CONTROL】The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean\n🍖【Get Yours Now, Risk-Free】Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.','Techwood','RED','us',454),('B086Z452V9','DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue','','All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!','DuroMax','Blue','us',455),('B00TG8GLCS','Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater','Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it\'s designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater\'s unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool\'s surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It\'s also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.','Cupro-nickel gas pool and spa heater\nPagoda design ensures heater stays active in harsh weather conditions\nMicroprocessor controlled thermostat\nDigital display\nOn-board self diagnostics','Raypak','Fashion Gray','us',456),('B06Y5WZQJP','SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black','General Introduction

    This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
    It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

    Specifications:
    Net Volume:2.1 cu ft
    Net Weight:48lb
    Temperature Range: 32℉~50℉
    Product dimension(W*D*H): 18*18.7*27.1 inch
    Power supply:AC 110V/DC 12V/Propane(gas/LPG)
    Rated Frequency:60HZ
    Input Power: AC 90W ;DC 90W
    Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
    This product come with connection cord,can directly connect the cigarette lighter of the car

    IMPORTANT THINGS TO KNOW:
    Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
    Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
    Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

    PLEASE NOTE:
    If you have any questions,please feel free to contact us,we will try our best to help you!
    NOTE:
    This product USES propane to generate electricity. The product itself does not contain gas.
    ','110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping\nDimensions 18*18.7*27.1 inches, campact size easy to carry on the way\nApproximate gas consumption per day: 0.4 lb\nTemperature range 32℉~50℉ without freezer\nReversible door. Advanced absorption cooling system, super quiet without noise.','SMETA','Black','us',457),('B001KLJX9M','Compact Radiant Propane Heater by Mr. Heater','Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline','','Mr Heater','gray','us',458),('B07WF2X9LV','BBQ Classic Parts 7\" Diameter Wheel and 5/16\" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1','This is for a Single 7\" diameter black plastic wheel. Features a 5/16\" diameter axle hole, 1-3/4\" long axle hub and 1-7/8\" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.','High Quality that\'s made to last!!','BBQ Classic Parts','','us',459),('B07VZC21DG','yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18\" W x 23\" H x 23\" D)','

    18\"W by 23\"H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

    Introduction:

    18\"W x 23\"H x 23\"D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

    Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

    Why Choose Us?

    1.Carefully designed: Modern minimalist style and Light Luxury

    2.New Upgrade:Better, Prettier and More Handy

    3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

    We heartily provide customers the best products in the cheapest price.

    Package Contents:

    1 X Triple Drawer

    1 X Screwdriver

    3 X Handles

    1 X English manual

    ','Product size: 18\" W x 23\"H x 23\" D. Cut hole size: 16\"Wx21\"Hx 23\". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently.\nOur outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance.\nFully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly.\nBox frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects.\nFast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible','yuxiangBBQ','','us',460),('B0818XQ13S','BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,','','🍡【23 Pieces Food Playset】BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1,  salt*1, pepper*1,BBQ grill*1\n🍢【Play and Learn】 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half\n🍡【100% Safe】All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers’ hands\n🍢【Gift For Ages 3 To Up】The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun.\n🍡【Convenient to Use】Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized','BeebeeRun','','us',461),('B086Z49LJ5','DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue','','All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!','DuroMax','Blue','us',462),('B01MSYK6BU','Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch','Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.','Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel.\nPerfect replacement part for charcoal or gas grill.\nUsed for picnic, camping, outdoor cooking, turn your fire pit into a grill.\nHinged center to fold in half makes it easy to add Charcoals, logs and clean embers.\nDouble-check the dimensions of your grills or fire pit before ordering.!','only fire','','us',463),('B0787R3KFX','grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men','
    Upgrade your grilling today
    This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
    These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

    Handsome set makes a perfect gift.
    An inspired gift idea for your dad, groomsmen or anyone you like.It\'s an ideal gift for special occasions like gathering, Wedding, birthday, valentine\'s day, holiday, Christmas.
    Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

    Enjoy your amazing BBQ time
    Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

    All the features you need - None that you don\'t 
    1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
    2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
    3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
    4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
    5.Elongated handles keep your hands safe from the heat.
    6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
    7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
    8.dishwasher safe or cleaned quickly with warm water and soap.

    If you have interest,Just click \"add to cart\" to get this grill kit and enjoy your amazing BBQ time!','Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling.\nPremium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe.\nUser-friendly Design --- We design grilling tools from the user\'s perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns.\nConvenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father’s Day, birthdays, Christmas, wedding and housewarming.\nSatisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.','grilljoy','silver','us',464),('B082ZZDL3S','HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women','Professional Safety Quality for Years of Use!

    Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
    to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

    Complete 32PCS BBQ Grilling Tools Set:

    ﹒1 x Large 4-in-1 Spatula
    ﹒1 x Small Kitchen Tong
    ﹒1 x Large Power Tongs
    ﹒1 x Strong Grill Fork
    ﹒1 x Long Knife
    ﹒1 x Basting Brush
    ﹒1 x Digital Meat Thermometer
    ﹒1 x Meat Injector
    ﹒1 x Multi-purpose Scissor With Cover
    ﹒1 x Extra Cleaning Brush Head
    ﹒2 x Grill Cleaning Brushes
    ﹒2 x Grill Mats
    ﹒2 x Salt & Pepper Shakers
    ﹒6 x Kabob Skewers
    ﹒8 x Corn Holders
    ﹒1 x Cotton Case
    ﹒1 x Carrying Bag

    A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

    From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
    will be a sweet gift for men, women and any camping lovers no matter it\'s a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

    Using Tips:

    ● Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
    ● Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
    ● The knife is extremely sharp so please keep it out of reach of children.
    ● Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
    ● Please store all grill accessories in cool & dry places.','COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools\nSUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break\nEASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly\nPORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean\nMAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women','HaSteeL','Stainless Steel Handle','us',465),('B07X2WCR21','iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo','','【Upgraded & Tear-Resistant Material】iCOVER heavy duty waterproof grill cover measures: 60\"(width) x 22.5\"(depth) x 41\"(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill.\n【UV Protective & Fade-Resistant】The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability.\n【Snug Fit & Stable】These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season.\n【Decent Protection】The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off.\nAt Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.','i COVER','Black','us',466),('B07PZDVLW5','Mr. Heater MH18B Portable Propane Heater, Red','','4, 000, 9, 000, or 18, 000 BTU per hour\nHeats up to 450 sq. ft.\nHi-Med-Low heat settings\nAutomatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off\nTHE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .','Mr. Heater','Red','us',467),('B07BFBDP5B','Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel','Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.','BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal\nFit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles\nSize: 12\" diameter at the base, 8\" diameter at the top, 5\" tall\nPlease check size requirements before ordering','Outspark','AA1','us',468),('B08VWF26NT','2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch','
    Features:

    Extra long design:
    These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

    Stainless steel blade:
    Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won\'t stain the food residue, convenient to clean, reusable and durable for your long-term needs.

    Specification:
    Material: stainless steel, wood
    Size: approx. 20 inches in full length
    Color: as shown in pictures

    Package content:
    1 x Slotted spatula
    1 x Solid kitchen spatula

    Note:
    Pointed parts include, please use it carefully and keep away from kids.
    Manual measurement, please allow slight errors on size.
    The colors may exist slight difference due to different screens.','Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire\nThickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use\n4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge\nNice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more\nMultiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience','Patelai','','us',469),('B085NSXPG4','ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey','','Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion\nTouch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions\nHighly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14˚f to 572˚f with the highest accuracy of ±1.8°f/1°c and fast read times of 1-2 seconds\n6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again\nEasy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole','ThermoPro','sliver','us',470),('B01HGFBNL6','Homitt HT-GC01 Grill Cover, 58inch, Black','','Dimensions: This Homitt bbq cover measures 58\"L x 24\"W x 48\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new\nFading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering\nHandles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill\'s dimension for proper fit before purchasing)','Homitt','Black','us',471),('B078964VVX','Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant','','7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob\nIntuitive Control Panel Features Two GFCI 5–20R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety\nPlug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User’s Manual To Get You Started Right Out of the Box (Minimal Assembly Required)\nPowered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter','Westinghouse Outdoor Power Equipment','Transfer Switch Ready, CARB Compliant','us',472),('B07Y8CCDBP','Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door','

    Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

    Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600°F (1425°C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

    The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

    Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

    Specification:

    • Forge Type: Double Burner Forge With One Side Door
    • Burner: Double Burner
    • Burner Nozzle Material: SS-304
    • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
    • Forge Internal Dimension: 5.4\" (H) x 5.4\" (W) x 18\"(L)
    • Forge Insulation: 1” thick Refractory Ceramic Fibre of 2600°F
    • Floor Insulation: 1” thick Rigid Block of Refractory Fire Brick

    Connection Kit:

    • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
    • 5 ft. (2 Meter) gas hose pipe
    • 2 hose clamp

    Product user manual & assembly instruction provided with packing.

    ','Double Burner Single Door Propane Forge Furnace with 2600 degree capacity\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nlined by 1\" thick high density ceramic fiber blanket\nReduce fuel consumption\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.','Simond Store','','us',473),('B093FC5SB6','Pellet Smoker Tube, Aliyoham 12\'\' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)','

    With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

    You need our pellet smoker tube for sure!

    We have everything you need in one package.

    -1xPellet smoker tube

    -1xCleaning Brush 

    -1xSilicone Brush

    -3xS Shape Hooks

    It is also a fantastic gift, we have beautiful box as you can see in picture.

    If you have any question, message us any time!

    ','Aliyoham 12\'\' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food.\nPut your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill.\nA smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more.\nPremium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it’s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around.\nOur product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.','Aliyoham','Stainless Steel 304','us',474),('B08TMVDJ6W','Atatod 14\" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14\" W x 21\" H x 23\" D inch)','

    Introduction:

    14\"inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

    Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

    Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

    Size:

    14\" W x 21\" H x 23\" D ( Product Size )

    12\" W x 19\" H (Cut-out )

    Package :

    1 X Stainless Triple Drawer

    1 X English manual

    ','Outdoor Kitchen Triple Drawer;Overall Size:14\"W x 21\"H x 23\"D inch,Cut-Out Size:12\"W x 19\"H inch\nFully Enclosed Drawer Box – protects against the Weather\nHigh Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look\nDrawer Sizes are all 12 Inch Width by 4.5\" Top, 6.5\" Middle & 8\" Bottom\nBlend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components','Atatod','Triple Drawer','us',475),('B07J9HK1RB','Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+','Fuel your child\'s imagination with one of the best interactive playset toys for toddlers you can buy…. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child’s concentration and fine hand skills. It\'s also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It\'s advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a ‘ThinkGizmos’ branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.','🍖 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ’s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series.\n🍽️ ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food.\n🍖 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food.\n🍽️ LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6.\n🍖 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won’t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.','Think Gizmos','','us',476),('B081JMSBPF','Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange','FANTASTIC GIFT IDEAS for Father’s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron','TOP PRANK GIFT -- the most lifelike body like human’s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day\nJUST REAL -- a big belly apron with bushy hair, that’s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun\nADJUSTABLE -- One size fits most; Size: Length is 29.5\" including neck strap 37\" approx, Width 26.3\"; give you a snug and comfortable feeling when wearing it\nMaterial:100% Polyester; machine washable\nPREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items','A AIFAMY','Red','us',477),('B07F7LR53H','Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round','Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

    Colors: Red, Blue, Black, Teal

    Sizes: 84 inch. Round, 54 Inch. x 108 Inch. Rectangle 

    What you get: 12 individually wrapped disposable tablecloths

    Uses: These premium quality table covers are great for Bbq\'s, picnics, camping, outdoors        events, parties, and any other gingham themed event

    ','PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!!\nSPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!!\nHIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event.\nDISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it.\nSELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.','Exquisite','Dark Blue','us',478),('B07FSVCSSL','Detector de Gas Natural, Detector de Fugas de Gas Propano, Detector de Gas Butano, Sensor Portátil de Gas Explosivo, Probador de Gas Metano, GLP, GNL; Sensor de Cuello Flexible','Como el único minorista de este detector de gas Y201, brindamos asistencia de expertos con nuestro químico para responder cualquier pregunta técnica. Compre con confianza; Este dispositivo está cubierto por nuestra garantía de reemplazo de por vida.

    ENCUENTRE FUGAS DE GAS EN CASA:
    Encuentre la ubicación de cualquier fuga de gas natural, propano, LP o combustible al hacer funcionar la sonda del sensor a lo largo de una tubería de gas, línea de combustible o cerca de cualquier olor a gas. Determine las fugas de combustible de su cortadora de césped o automóvil. Una fuga de gas es detectada cuando suena la alarma y se encienden los LED. No pague la tarifa de diagnóstico de un técnico cuando puede encontrar una fuga de gas en cualquier momento con este detector de gas natural y propano.

    PASOS / CONSEJOS DE USO: Vea el video en https://www.amazon.com/vdp/17873f5854174d4db2087794a60238be
    -Para detectar fugas mientras minimiza las falsas alarmas, gire el dial de sensibilidad hacia arriba (+) hasta que el dispositivo comience a emitir una alarma lejos de cualquier fuga de gas. Gire el dial de sensibilidad hacia abajo (-) ligeramente hasta que la alarma se detenga, pero el primer LED permanece encendido. Ahora, cualquier pequeño aumento del nivel de gas (¡debido a una fuga!) hará que suene la alarma.
    -Si suena la alarma antes de encontrar una fuga, se debe disminuir la sensibilidad para evitar falsas alarmas.
    -Permita que el dispositivo caliente el sensor durante 10 segundos hasta que la luz amarilla de \"Warm Up\" se apague.

    ESPECIFICACIONES:
    Sensibilidad máxima: 50 ppm
    Rango de alarma: 10% -40% LEL
    Tiempo de calentamiento: 10s
    Tiempo de respuesta: ≤2s (10% LEL)
    Alarma: visual con 6 LEDs rojos, sonora con frecuencia de tono variable
    Potencia: 3 pilas AAA

    Después de la compra, recibirá el manual del usuario en español por correo electrónico.','MÚLTIPLES GASES DETECTABLES: localiza fugas de gas combustible y fugas explosivas de metano / gas natural, propano, combustible, etano, butano, alcohol, gas de carbón, gasolina, tolueno, queroseno, gas de alcantarillado y otros gases inflamables.\nFLEXIBLE Y PORTÁTIL DETECTOR DE FUGAS DE GASES: Doble el cuello del sensor de 12 pulgadas en cualquier dirección a lo largo de las tuberías de gas y las líneas de combustible o dentro de espacios confinados. Alimentado por 3 baterías AAA, este detector de gas portátil se puede llevar a cualquier lugar para encontrar fugas en el exterior o en el interior.\nINDICADORES VISUALES / SONOROS DE PRESENCIA GASES: 6 LEDs con alarma de 85dB notifican al usuario de la presencia y concentraciones relativas de fugas de gas natural y propano.\nSENSIBILIDAD AJUSTABLE: Aumente el dial de sensibilidad para encontrar pequeñas fugas de gas. Disminuya la sensibilidad para encontrar mayores fugas de gas explosivo mientras filtra las falsas alarmas de los niveles normales de gas.\nGARANTÍA DE POR VIDA + DISEÑO ORIGINAL: Como el único minorista de este artículo, respaldamos completamente este producto y lo reemplazaremos si alguna vez se rompe. Contamos con un químico en el personal para responder cualquier pregunta técnica. El eBook (20+ páginas) está en inglés.','EG','','es',479),('B07FSVCSSL','Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook','','A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases.\nPORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks.\nVISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane.\nADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-).\nLIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.','EG','','us',479),('B000FDKXN6','Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)','','3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately)\nPortable: Collapses down to 5\", fits in carrying case for easy storage and transportation. Sets up in just seconds.\nVersatile: grill, Dutch oven, wok, bake, roast, fry, fire pit\nUse for camping, tailgating, RV\'s, emergency preparedness, survival, and prepping\nSafe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber','Volcano Grills','Charcoal','us',480),('B00LP57K7A','Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel','','This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n7 burner grill with up to 86,000 BTUs\nTotal cooking area: 1000 sq. In\nDual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off\n9.5 Mm stainless steel wave cooking grids','Napoleon','Stainless Steel','us',481),('B07GC2F1YW','Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver','','ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq✓bake✓roast✓braise✓smoke✓grill✓sear✓char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It’s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180° to 450° F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly','Z GRILLS','700 Silver','us',482),('B08V521V9N','Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater','','Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips.\nEasy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries.\n3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins.\nEnergy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour.\nImportant Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.','CAMPLUX ENJOY OUTDOOR LIFE','White','us',483),('B08BZ7FNRM','GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)','','Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table\nMade of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won\'t crack in the cold\nCome with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy\nCover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models.\nFits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.','GloryShine','','us',484),('B088B7KYC2','Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze','','★ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill\n★PELLET GRILL TECHNOLOGY--★ FLAVOR--There just isn’t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you’ll taste the difference from a GAS or CARBON grill; ★ ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; ★EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n★EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. ★EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. ★EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. ★EASY TO MOVE--Upgraded cart with locking caster wheels.\n★2020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180°f to 450°f.\n★AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180ºf to 450ºf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!★FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.','Z GRILLS','Bronze','us',485),('B00BM9RD4Y','Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4','These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you\'ll find they\'re made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What\'s more, they\'re dishwasher safe. Just be sure to keep them from the microwave or oven.','They look like paper plates but they\'re actually durable melamine\nPrinted with summer BBQ food designs by Mary Lake-Thompson\nSturdy weight with a smooth matte finish\nGreat for garden parties, picnics and kids; matching platter also available\n9\" in diameter; dishwasher-safe, no microwave or oven','Mary Lake-Thompson','red, white, yellow','us',486),('B00KUJCH66','Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty','

    THE SECRET TO GRILLING LIKE A PRO

    Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

    THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

    • Set of two 15.75\" x 13\" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
    • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
    • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
    • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
    • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
    • Note:','[Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you\'ll ever need. NEVER buy another grill mat again.\n[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat.\n[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you\'ll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze.\n[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\n[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you’ll get a product you love or we’ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.','Grillaholics','','us',487),('B06ZYM3MSW','Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black','','ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq✓bake✓roast✓braise✓smoke✓grill✓sear✓char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It’s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180° to 450° F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly','Z GRILLS','Black','us',488),('B07VW72J5D','Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women','','[Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily.\n[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears.\n[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use.\n[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below.\n[The Best Gift]: It is a great gift for any occasion, perfect for father’s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!','Taimasi','standard','us',489),('B081X7ZB4Q','Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper','','★ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque.\n★SEARING ENABLED: Temperature can goes as high as 1000℉. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode.\n★PELLET GRILL TECHNOLOGY--★ FLAVOR--There just isn’t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you’ll taste the difference from a GAS or CARBON grill; ★ ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; ★EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n★EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. ★EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. ★EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. ★EASY TO MOVE--Upgraded cart with locking caster wheels.\n★2020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180°f to 450°f.','Z GRILLS','ZPG-6002B','us',490),('B01HXQTNVK','Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty','

      Each set has 5 of the highest quality grill mats that makes grilling anything easy!

      Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

      You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

      They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

      For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

      These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

      These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

      -Veggies
      -Shrimp
      -Fish
      -Bacon
      -Pizza
      -Pancakes
      -Eggs
      -Anything else you want to put on the grill!

      BBQ Grill Mats Size: 15.75\" x 13\"

      ','A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue.\nEASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don\'t need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\nSECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better.\nMULTIPURPOSE--While you\'re baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS.\nBEST OF ALL - Best value in bbq grill accessories! If you\'re not completely satisfied, we\'ll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.','Aoocan','5Black','us',491),('B08DTXWRB5','Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag','','Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\nProduct 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef\nProduct 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers\nProduct 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ\nProduct 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food','Traeger','','us',492),('B072KLKZD7','Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)','Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
      Fresh and original products directly from the manufacturer
      We provide excellent customer service. Your question will be answered in less than 12 hrs.
      Customer is our first priority','Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )','Slim Jim','','us',493),('B07748V3PL','Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios','This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you\'re getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.','Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills.\nGrill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls.\nReusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season.\nEasy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nProtect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It\'s a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.','Fasmov','Charcoal','us',494),('B08V4RVHJ6','Camplux 2.64 GPM Propane Gas Water Heater, Outdoor Camping Tankless Water Heater with Digital Display, White','

      Features

      1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

      2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

      3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

      4.Turn the ignition on with 2 \"D\" batteries whenever electricity is not accessible!

      5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

      6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

      7.The system also works great on modified water systems with a 12 volt water pump.

      8.The gas water heater can\'t be used for drinking water.

      Warm Remind:  Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

      Easy to Use

      Get the instant portable gas hot water system that\'s easy to set up and use!

      1. Install the gas water heater on the wall.

      2. Connect the gas cylinder with the supplied gas hose and regulator.

      3. Connect shower hose and shower head to the hot water outlet.

      4. Connect water hose to the water inlet.

      5. Insert 2 size \"D\" batteries.

      6. Enjoy instant hot water!

      What\'s in the Box

      1 x Camplux 10L tankless water heater

      1 x 5\"ft 3 setting ON/OFF shower head and pedestal

      1 x 5\"ft CSA approval gas hose & regulator

      =5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.11.17" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, + {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.6" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.20.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.20.0-py3-none-any.whl", hash = "sha256:ed6231f0429ecf966f5bc8dfef245998220549cbbcf140f913b7464c52c3b6b3"}, + {file = "jsonschema-4.20.0.tar.gz", hash = "sha256:4f614fd46d8d61258610998997743ec5492a648b33cf478c1ddc23ed4598a5fa"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.11.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.11.1-py3-none-any.whl", hash = "sha256:f596778ab612b3fd29f72ea0d990393d0540a5aab18bf0407a46632eab540779"}, + {file = "jsonschema_specifications-2023.11.1.tar.gz", hash = "sha256:c9b234904ffe02f079bf91b14d79987faa685fd4b39c377a0996954c0090b9ca"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "mysql-connector-python" +version = "8.0.33" +description = "MySQL driver written in Python" +optional = false +python-versions = "*" +files = [ + {file = "mysql-connector-python-8.0.33.tar.gz", hash = "sha256:9775331fa60b5d5a6925781d77eee4384e2b54a12dea694ffdefd1cf1a9c0fdb"}, + {file = "mysql_connector_python-8.0.33-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:241483065ad062256985e082e3cbb3e7d1d6d2275cee17c66d22525b09096201"}, + {file = "mysql_connector_python-8.0.33-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:9f5eb33e29742c5f8ef23df2d3f0de0e46f4325e4324016e15aba7f8665a68c0"}, + {file = "mysql_connector_python-8.0.33-cp310-cp310-manylinux1_i686.whl", hash = "sha256:4c82fb70f44f2469c0879434c1d8ee3162f56a40cc8f5ca1cc4d97f06c84cd43"}, + {file = "mysql_connector_python-8.0.33-cp310-cp310-manylinux1_x86_64.whl", hash = "sha256:016662c6252f2c5f47805d9168187be1316d0c1d7109f9fe668482c3d6e5711d"}, + {file = "mysql_connector_python-8.0.33-cp310-cp310-win_amd64.whl", hash = "sha256:46ff8a10c13f39996d60f45c30cf2ea15e883bc71d58259ed2fea0a5a6fb93a3"}, + {file = "mysql_connector_python-8.0.33-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:db422b19347c5d00e078dd64e281e5b1e5a19a2d972dc2d9733b136d79c34798"}, + {file = "mysql_connector_python-8.0.33-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:37eace5b7eb676a41ff1edc5cf6ce4ae1c28406d1a6fe84941e6aa396d688195"}, + {file = "mysql_connector_python-8.0.33-cp311-cp311-manylinux1_i686.whl", hash = "sha256:753d07fb39a67f7f35fe6e6a4fac12008287661de59f9d5c0bf4da3359d83eb8"}, + {file = "mysql_connector_python-8.0.33-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:984f5649e6abee04461d6f52fbc77387d7137b8fd003c54bac66505006f17183"}, + {file = "mysql_connector_python-8.0.33-cp311-cp311-win_amd64.whl", hash = "sha256:f324233af7ec9fcb19c23096af27662459708c0465886cb017d78ff3f5b78b55"}, + {file = "mysql_connector_python-8.0.33-cp37-cp37m-macosx_12_0_x86_64.whl", hash = "sha256:41db4452a99ee28494313eab1aa7749475d3e39bed7b24a0868aee45bd0d9c73"}, + {file = "mysql_connector_python-8.0.33-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:34d5c5f6ec7c1e75bf972def40d097138e097dc694e36dec89a5dd604ef7aada"}, + {file = "mysql_connector_python-8.0.33-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:a632d7b0e569a46e6d44e6cd3f8db747995a787a081870697dbfd3ae18949339"}, + {file = "mysql_connector_python-8.0.33-cp37-cp37m-win_amd64.whl", hash = "sha256:e853e12c00e3beabc581f4e039222708ee606fef80a3bac6b1f497ed89a31aea"}, + {file = "mysql_connector_python-8.0.33-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:96f7fb0ccfe96e6e478e5f0f034c99bda961b99ffa1c746cee39cfea45b0c04d"}, + {file = "mysql_connector_python-8.0.33-cp38-cp38-manylinux1_i686.whl", hash = "sha256:7318f416b9defe84b2bd025304bab62b68f8d8fcbe479af5593161eff12ef169"}, + {file = "mysql_connector_python-8.0.33-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:0004426e964856148e1cde31e9b8be63ae3013715b048ff0f2ede69a6ddd36f7"}, + {file = "mysql_connector_python-8.0.33-cp38-cp38-win_amd64.whl", hash = "sha256:d8167868ebad8d78ba69babd028626e96a51365cab76edf735b2559731759b62"}, + {file = "mysql_connector_python-8.0.33-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:f403ff22d3514d08028590fef463d17dc107ac72ea27a49429614949d82fda40"}, + {file = "mysql_connector_python-8.0.33-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:af9feec311d8ea51261e1ef1f959a442708e30f0024d08d0fb537b07a1271634"}, + {file = "mysql_connector_python-8.0.33-cp39-cp39-manylinux1_i686.whl", hash = "sha256:7266d7b2550f9fe0cdcea1647aa6aade352e14095042b6a3921c9152cf8543e8"}, + {file = "mysql_connector_python-8.0.33-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:ea05590cb972b114efa027c343b4b7110d8e8450493984ebfb9a651e27674636"}, + {file = "mysql_connector_python-8.0.33-cp39-cp39-win_amd64.whl", hash = "sha256:3bedf8265fb31698e4144ca54e241e3386802c3a437745b1a536a74cbe7e4fb9"}, + {file = "mysql_connector_python-8.0.33-py2.py3-none-any.whl", hash = "sha256:c20a85a69af41d2d7d5cf52106f0b9473775819d189487c6ff3d3f3946931ca2"}, +] + +[package.dependencies] +protobuf = ">=3.11.0,<=3.20.3" + +[package.extras] +compression = ["lz4 (>=2.1.6,<=4.3.2)", "zstandard (>=0.12.0,<=0.19.0)"] +dns-srv = ["dnspython (>=1.16.0,<=2.3.0)"] +gssapi = ["gssapi (>=1.6.9,<=1.8.2)"] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "4.0.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-4.0.0-py3-none-any.whl", hash = "sha256:118c954d7e949b35437270383a3f2531e99dd93cf7ce4dc8340d3356d30f173b"}, + {file = "platformdirs-4.0.0.tar.gz", hash = "sha256:cb633b2bcf10c51af60beb0ab06d2f1d69064b43abf4c185ca6b28865f3f9731"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "protobuf" +version = "3.20.3" +description = "Protocol Buffers" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-3.20.3-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:f4bd856d702e5b0d96a00ec6b307b0f51c1982c2bf9c0052cf9019e9a544ba99"}, + {file = "protobuf-3.20.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9aae4406ea63d825636cc11ffb34ad3379335803216ee3a856787bcf5ccc751e"}, + {file = "protobuf-3.20.3-cp310-cp310-win32.whl", hash = "sha256:28545383d61f55b57cf4df63eebd9827754fd2dc25f80c5253f9184235db242c"}, + {file = "protobuf-3.20.3-cp310-cp310-win_amd64.whl", hash = "sha256:67a3598f0a2dcbc58d02dd1928544e7d88f764b47d4a286202913f0b2801c2e7"}, + {file = "protobuf-3.20.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:899dc660cd599d7352d6f10d83c95df430a38b410c1b66b407a6b29265d66469"}, + {file = "protobuf-3.20.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e64857f395505ebf3d2569935506ae0dfc4a15cb80dc25261176c784662cdcc4"}, + {file = "protobuf-3.20.3-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:d9e4432ff660d67d775c66ac42a67cf2453c27cb4d738fc22cb53b5d84c135d4"}, + {file = "protobuf-3.20.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:74480f79a023f90dc6e18febbf7b8bac7508420f2006fabd512013c0c238f454"}, + {file = "protobuf-3.20.3-cp37-cp37m-win32.whl", hash = "sha256:b6cc7ba72a8850621bfec987cb72623e703b7fe2b9127a161ce61e61558ad905"}, + {file = "protobuf-3.20.3-cp37-cp37m-win_amd64.whl", hash = "sha256:8c0c984a1b8fef4086329ff8dd19ac77576b384079247c770f29cc8ce3afa06c"}, + {file = "protobuf-3.20.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:de78575669dddf6099a8a0f46a27e82a1783c557ccc38ee620ed8cc96d3be7d7"}, + {file = "protobuf-3.20.3-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:f4c42102bc82a51108e449cbb32b19b180022941c727bac0cfd50170341f16ee"}, + {file = "protobuf-3.20.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:44246bab5dd4b7fbd3c0c80b6f16686808fab0e4aca819ade6e8d294a29c7050"}, + {file = "protobuf-3.20.3-cp38-cp38-win32.whl", hash = "sha256:c02ce36ec760252242a33967d51c289fd0e1c0e6e5cc9397e2279177716add86"}, + {file = "protobuf-3.20.3-cp38-cp38-win_amd64.whl", hash = "sha256:447d43819997825d4e71bf5769d869b968ce96848b6479397e29fc24c4a5dfe9"}, + {file = "protobuf-3.20.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:398a9e0c3eaceb34ec1aee71894ca3299605fa8e761544934378bbc6c97de23b"}, + {file = "protobuf-3.20.3-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bf01b5720be110540be4286e791db73f84a2b721072a3711efff6c324cdf074b"}, + {file = "protobuf-3.20.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:daa564862dd0d39c00f8086f88700fdbe8bc717e993a21e90711acfed02f2402"}, + {file = "protobuf-3.20.3-cp39-cp39-win32.whl", hash = "sha256:819559cafa1a373b7096a482b504ae8a857c89593cf3a25af743ac9ecbd23480"}, + {file = "protobuf-3.20.3-cp39-cp39-win_amd64.whl", hash = "sha256:03038ac1cfbc41aa21f6afcbcd357281d7521b4157926f30ebecc8d4ea59dcb7"}, + {file = "protobuf-3.20.3-py2.py3-none-any.whl", hash = "sha256:a7ca6d488aa8ff7f329d4c545b2dbad8ac31464f1d8b1c87ad1346717731e4db"}, + {file = "protobuf-3.20.3.tar.gz", hash = "sha256:2e3427429c9cffebf259491be0af70189607f365c2f41c7c3764af6f337105f2"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.31.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.31.1-py3-none-any.whl", hash = "sha256:c19c4d006f1757e3dd75c4f784d38f8698d87b649c54f9ace14e5e8c9667c01d"}, + {file = "referencing-0.31.1.tar.gz", hash = "sha256:81a1471c68c9d5e3831c30ad1dd9815c45b558e596653db751a2bfdd17b3b9ec"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.13.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.13.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:1ceebd0ae4f3e9b2b6b553b51971921853ae4eebf3f54086be0565d59291e53d"}, + {file = "rpds_py-0.13.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:46e1ed994a0920f350a4547a38471217eb86f57377e9314fbaaa329b71b7dfe3"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee353bb51f648924926ed05e0122b6a0b1ae709396a80eb583449d5d477fcdf7"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:530190eb0cd778363bbb7596612ded0bb9fef662daa98e9d92a0419ab27ae914"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d311e44dd16d2434d5506d57ef4d7036544fc3c25c14b6992ef41f541b10fb"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e72f750048b32d39e87fc85c225c50b2a6715034848dbb196bf3348aa761fa1"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db09b98c7540df69d4b47218da3fbd7cb466db0fb932e971c321f1c76f155266"}, + {file = "rpds_py-0.13.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2ac26f50736324beb0282c819668328d53fc38543fa61eeea2c32ea8ea6eab8d"}, + {file = "rpds_py-0.13.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12ecf89bd54734c3c2c79898ae2021dca42750c7bcfb67f8fb3315453738ac8f"}, + {file = "rpds_py-0.13.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a44c8440183b43167fd1a0819e8356692bf5db1ad14ce140dbd40a1485f2dea"}, + {file = "rpds_py-0.13.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcef4f2d3dc603150421de85c916da19471f24d838c3c62a4f04c1eb511642c1"}, + {file = "rpds_py-0.13.2-cp310-none-win32.whl", hash = "sha256:ee6faebb265e28920a6f23a7d4c362414b3f4bb30607141d718b991669e49ddc"}, + {file = "rpds_py-0.13.2-cp310-none-win_amd64.whl", hash = "sha256:ac96d67b37f28e4b6ecf507c3405f52a40658c0a806dffde624a8fcb0314d5fd"}, + {file = "rpds_py-0.13.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:b5f6328e8e2ae8238fc767703ab7b95785521c42bb2b8790984e3477d7fa71ad"}, + {file = "rpds_py-0.13.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:729408136ef8d45a28ee9a7411917c9e3459cf266c7e23c2f7d4bb8ef9e0da42"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65cfed9c807c27dee76407e8bb29e6f4e391e436774bcc769a037ff25ad8646e"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aefbdc934115d2f9278f153952003ac52cd2650e7313750390b334518c589568"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d48db29bd47814671afdd76c7652aefacc25cf96aad6daefa82d738ee87461e2"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3c55d7f2d817183d43220738270efd3ce4e7a7b7cbdaefa6d551ed3d6ed89190"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6aadae3042f8e6db3376d9e91f194c606c9a45273c170621d46128f35aef7cd0"}, + {file = "rpds_py-0.13.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5feae2f9aa7270e2c071f488fab256d768e88e01b958f123a690f1cc3061a09c"}, + {file = "rpds_py-0.13.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:51967a67ea0d7b9b5cd86036878e2d82c0b6183616961c26d825b8c994d4f2c8"}, + {file = "rpds_py-0.13.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d0c10d803549427f427085ed7aebc39832f6e818a011dcd8785e9c6a1ba9b3e"}, + {file = "rpds_py-0.13.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:603d5868f7419081d616dab7ac3cfa285296735e7350f7b1e4f548f6f953ee7d"}, + {file = "rpds_py-0.13.2-cp311-none-win32.whl", hash = "sha256:b8996ffb60c69f677245f5abdbcc623e9442bcc91ed81b6cd6187129ad1fa3e7"}, + {file = "rpds_py-0.13.2-cp311-none-win_amd64.whl", hash = "sha256:5379e49d7e80dca9811b36894493d1c1ecb4c57de05c36f5d0dd09982af20211"}, + {file = "rpds_py-0.13.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:8a776a29b77fe0cc28fedfd87277b0d0f7aa930174b7e504d764e0b43a05f381"}, + {file = "rpds_py-0.13.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2a1472956c5bcc49fb0252b965239bffe801acc9394f8b7c1014ae9258e4572b"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f252dfb4852a527987a9156cbcae3022a30f86c9d26f4f17b8c967d7580d65d2"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f0d320e70b6b2300ff6029e234e79fe44e9dbbfc7b98597ba28e054bd6606a57"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ade2ccb937060c299ab0dfb2dea3d2ddf7e098ed63ee3d651ebfc2c8d1e8632a"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9d121be0217787a7d59a5c6195b0842d3f701007333426e5154bf72346aa658"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fa6bd071ec6d90f6e7baa66ae25820d57a8ab1b0a3c6d3edf1834d4b26fafa2"}, + {file = "rpds_py-0.13.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c918621ee0a3d1fe61c313f2489464f2ae3d13633e60f520a8002a5e910982ee"}, + {file = "rpds_py-0.13.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:25b28b3d33ec0a78e944aaaed7e5e2a94ac811bcd68b557ca48a0c30f87497d2"}, + {file = "rpds_py-0.13.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:31e220a040b89a01505128c2f8a59ee74732f666439a03e65ccbf3824cdddae7"}, + {file = "rpds_py-0.13.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:15253fff410873ebf3cfba1cc686a37711efcd9b8cb30ea21bb14a973e393f60"}, + {file = "rpds_py-0.13.2-cp312-none-win32.whl", hash = "sha256:b981a370f8f41c4024c170b42fbe9e691ae2dbc19d1d99151a69e2c84a0d194d"}, + {file = "rpds_py-0.13.2-cp312-none-win_amd64.whl", hash = "sha256:4c4e314d36d4f31236a545696a480aa04ea170a0b021e9a59ab1ed94d4c3ef27"}, + {file = "rpds_py-0.13.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:80e5acb81cb49fd9f2d5c08f8b74ffff14ee73b10ca88297ab4619e946bcb1e1"}, + {file = "rpds_py-0.13.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:efe093acc43e869348f6f2224df7f452eab63a2c60a6c6cd6b50fd35c4e075ba"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c2a61c0e4811012b0ba9f6cdcb4437865df5d29eab5d6018ba13cee1c3064a0"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:751758d9dd04d548ec679224cc00e3591f5ebf1ff159ed0d4aba6a0746352452"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6ba8858933f0c1a979781272a5f65646fca8c18c93c99c6ddb5513ad96fa54b1"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bfdfbe6a36bc3059fff845d64c42f2644cf875c65f5005db54f90cdfdf1df815"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa0379c1935c44053c98826bc99ac95f3a5355675a297ac9ce0dfad0ce2d50ca"}, + {file = "rpds_py-0.13.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d5593855b5b2b73dd8413c3fdfa5d95b99d657658f947ba2c4318591e745d083"}, + {file = "rpds_py-0.13.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2a7bef6977043673750a88da064fd513f89505111014b4e00fbdd13329cd4e9a"}, + {file = "rpds_py-0.13.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:3ab96754d23372009638a402a1ed12a27711598dd49d8316a22597141962fe66"}, + {file = "rpds_py-0.13.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:e06cfea0ece444571d24c18ed465bc93afb8c8d8d74422eb7026662f3d3f779b"}, + {file = "rpds_py-0.13.2-cp38-none-win32.whl", hash = "sha256:5493569f861fb7b05af6d048d00d773c6162415ae521b7010197c98810a14cab"}, + {file = "rpds_py-0.13.2-cp38-none-win_amd64.whl", hash = "sha256:b07501b720cf060c5856f7b5626e75b8e353b5f98b9b354a21eb4bfa47e421b1"}, + {file = "rpds_py-0.13.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:881df98f0a8404d32b6de0fd33e91c1b90ed1516a80d4d6dc69d414b8850474c"}, + {file = "rpds_py-0.13.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d79c159adea0f1f4617f54aa156568ac69968f9ef4d1e5fefffc0a180830308e"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38d4f822ee2f338febcc85aaa2547eb5ba31ba6ff68d10b8ec988929d23bb6b4"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5d75d6d220d55cdced2f32cc22f599475dbe881229aeddba6c79c2e9df35a2b3"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d97e9ae94fb96df1ee3cb09ca376c34e8a122f36927230f4c8a97f469994bff"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:67a429520e97621a763cf9b3ba27574779c4e96e49a27ff8a1aa99ee70beb28a"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:188435794405c7f0573311747c85a96b63c954a5f2111b1df8018979eca0f2f0"}, + {file = "rpds_py-0.13.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:38f9bf2ad754b4a45b8210a6c732fe876b8a14e14d5992a8c4b7c1ef78740f53"}, + {file = "rpds_py-0.13.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a6ba2cb7d676e9415b9e9ac7e2aae401dc1b1e666943d1f7bc66223d3d73467b"}, + {file = "rpds_py-0.13.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:eaffbd8814bb1b5dc3ea156a4c5928081ba50419f9175f4fc95269e040eff8f0"}, + {file = "rpds_py-0.13.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a4c1058cdae6237d97af272b326e5f78ee7ee3bbffa6b24b09db4d828810468"}, + {file = "rpds_py-0.13.2-cp39-none-win32.whl", hash = "sha256:b5267feb19070bef34b8dea27e2b504ebd9d31748e3ecacb3a4101da6fcb255c"}, + {file = "rpds_py-0.13.2-cp39-none-win_amd64.whl", hash = "sha256:ddf23960cb42b69bce13045d5bc66f18c7d53774c66c13f24cf1b9c144ba3141"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:97163a1ab265a1073a6372eca9f4eeb9f8c6327457a0b22ddfc4a17dcd613e74"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:25ea41635d22b2eb6326f58e608550e55d01df51b8a580ea7e75396bafbb28e9"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76d59d4d451ba77f08cb4cd9268dec07be5bc65f73666302dbb5061989b17198"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e7c564c58cf8f248fe859a4f0fe501b050663f3d7fbc342172f259124fb59933"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61dbc1e01dc0c5875da2f7ae36d6e918dc1b8d2ce04e871793976594aad8a57a"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fdb82eb60d31b0c033a8e8ee9f3fc7dfbaa042211131c29da29aea8531b4f18f"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d204957169f0b3511fb95395a9da7d4490fb361763a9f8b32b345a7fe119cb45"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c45008ca79bad237cbc03c72bc5205e8c6f66403773929b1b50f7d84ef9e4d07"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:79bf58c08f0756adba691d480b5a20e4ad23f33e1ae121584cf3a21717c36dfa"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e86593bf8637659e6a6ed58854b6c87ec4e9e45ee8a4adfd936831cef55c2d21"}, + {file = "rpds_py-0.13.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d329896c40d9e1e5c7715c98529e4a188a1f2df51212fd65102b32465612b5dc"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:4a5375c5fff13f209527cd886dc75394f040c7d1ecad0a2cb0627f13ebe78a12"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:06d218e4464d31301e943b65b2c6919318ea6f69703a351961e1baaf60347276"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1f41d32a2ddc5a94df4b829b395916a4b7f103350fa76ba6de625fcb9e773ac"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6bc568b05e02cd612be53900c88aaa55012e744930ba2eeb56279db4c6676eb3"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d94d78418203904730585efa71002286ac4c8ac0689d0eb61e3c465f9e608ff"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bed0252c85e21cf73d2d033643c945b460d6a02fc4a7d644e3b2d6f5f2956c64"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:244e173bb6d8f3b2f0c4d7370a1aa341f35da3e57ffd1798e5b2917b91731fd3"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7f55cd9cf1564b7b03f238e4c017ca4794c05b01a783e9291065cb2858d86ce4"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f03a1b3a4c03e3e0161642ac5367f08479ab29972ea0ffcd4fa18f729cd2be0a"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:f5f4424cb87a20b016bfdc157ff48757b89d2cc426256961643d443c6c277007"}, + {file = "rpds_py-0.13.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c82bbf7e03748417c3a88c1b0b291288ce3e4887a795a3addaa7a1cfd9e7153e"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:c0095b8aa3e432e32d372e9a7737e65b58d5ed23b9620fea7cb81f17672f1fa1"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4c2d26aa03d877c9730bf005621c92da263523a1e99247590abbbe252ccb7824"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96f2975fb14f39c5fe75203f33dd3010fe37d1c4e33177feef1107b5ced750e3"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4dcc5ee1d0275cb78d443fdebd0241e58772a354a6d518b1d7af1580bbd2c4e8"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61d42d2b08430854485135504f672c14d4fc644dd243a9c17e7c4e0faf5ed07e"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d3a61e928feddc458a55110f42f626a2a20bea942ccedb6fb4cee70b4830ed41"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7de12b69d95072394998c622cfd7e8cea8f560db5fca6a62a148f902a1029f8b"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87a90f5545fd61f6964e65eebde4dc3fa8660bb7d87adb01d4cf17e0a2b484ad"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:9c95a1a290f9acf7a8f2ebbdd183e99215d491beea52d61aa2a7a7d2c618ddc6"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:35f53c76a712e323c779ca39b9a81b13f219a8e3bc15f106ed1e1462d56fcfe9"}, + {file = "rpds_py-0.13.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:96fb0899bb2ab353f42e5374c8f0789f54e0a94ef2f02b9ac7149c56622eaf31"}, + {file = "rpds_py-0.13.2.tar.gz", hash = "sha256:f8eae66a1304de7368932b42d801c67969fd090ddb1a7a24f27b435ed4bed68f"}, +] + +[[package]] +name = "setuptools" +version = "69.0.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-69.0.2-py3-none-any.whl", hash = "sha256:1e8fdff6797d3865f37397be788a4e3cba233608e9b509382a2777d25ebde7f2"}, + {file = "setuptools-69.0.2.tar.gz", hash = "sha256:735896e78a4742605974de002ac60562d286fa8051a7e2299445e8e8fbb01aa6"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.1.0" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.1.0-py3-none-any.whl", hash = "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3"}, + {file = "urllib3-2.1.0.tar.gz", hash = "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "ef940d7a97d28378d915c196695707bc5bd281e633f322db6582d3905c95b965" diff --git a/mysql/provider/__init__.py b/mysql/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/mysql/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/mysql/provider/app.py b/mysql/provider/app.py new file mode 100644 index 000000000..9bbd87db6 --- /dev/null +++ b/mysql/provider/app.py @@ -0,0 +1,32 @@ +import logging +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + data = provider.search(body["query"]) + return {"results": data} + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/mysql/provider/provider.py b/mysql/provider/provider.py new file mode 100644 index 000000000..4c8ffdea3 --- /dev/null +++ b/mysql/provider/provider.py @@ -0,0 +1,40 @@ +import logging +import os + +from mysql import connector +from flask import current_app as app + +logger = logging.getLogger(__name__) + + +def search(query): + assert (host := app.config.get("HOST")), "MYSQL_HOST must be set" + assert (user := app.config.get("USER")), "MYSQL_USER must be set" + assert (password := app.config.get("PASSWORD")), "MYSQL_PASSWORD must be set" + assert (database := app.config.get("DATABASE")), "MYSQL_DATABASE must be set" + assert (table_name := app.config.get("TABLE_NAME")), "MYSQL_TABLE_NAME must be set" + assert (columns := app.config.get("FTS_COLUMNS")), "MYSQL_FTS_COLUMNS must be set" + + connection = connector.connect( + host=host, + user=user, + password=password, + database=database, + ) + cursor = connection.cursor(dictionary=True) + + search_query = f""" + SELECT * + FROM {table_name} + WHERE + MATCH({columns}) + AGAINST(%s); + """ + + logger.debug(f'Querying for "{query}"') + cursor.execute(search_query, (query,)) + data = cursor.fetchall() + cursor.close() + connection.close() + + return data diff --git a/mysql/pyproject.toml b/mysql/pyproject.toml new file mode 100644 index 000000000..570b29a37 --- /dev/null +++ b/mysql/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "mysql" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +gunicorn = "^20.1.0" +black = "^23.11.0" +python-dotenv = "^1.0.0" +mysql-connector-python = "8.0.33" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/notion/.env-template b/notion/.env-template new file mode 100644 index 000000000..7541fddc2 --- /dev/null +++ b/notion/.env-template @@ -0,0 +1,2 @@ +NOTION_API_TOKEN= +NOTION_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/notion/README.md b/notion/README.md new file mode 100644 index 000000000..0a3cd2ffe --- /dev/null +++ b/notion/README.md @@ -0,0 +1,47 @@ +# Notion Quick Start Connector + +This search connector is for connecting Cohere to Notion, the planning and collaboration tool. + +## Limitations + +The Notion connector can currently only search documents in your Notion space by title. In addition, only pages and subpages with your integration enabled will be included in the search. See the `Configuration` section of this README for more details. + +## Configuration + +To use this connector you will need to have Workspace Owner privileges over your Notion space, and to create a +new integration. + +To do so, click on Settings & members > My connections > Develop or manage integrations, +then create a new internal integration. You can then generate a secret token for that integration. Use this +for the `NOTION_API_TOKEN` environment variable. + +Then, to expose any page and subpage to the integration, you will need to go to that page +and click from the top-right, ... > Add connections > [Your connection name]. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/notion/poetry.lock b/notion/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/notion/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/notion/provider/__init__.py b/notion/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/notion/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/notion/provider/app.py b/notion/provider/app.py new file mode 100644 index 000000000..4a3234570 --- /dev/null +++ b/notion/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/notion/provider/client.py b/notion/provider/client.py new file mode 100644 index 000000000..c8eedc80e --- /dev/null +++ b/notion/provider/client.py @@ -0,0 +1,55 @@ +import requests +import json +from . import UpstreamProviderError +from flask import current_app as app + +client = None + + +class NotionSearchClient: + base_url = "https://api.notion.com/v1" + notion_version = "2022-02-22" + + def __init__(self, key): + self.headers = { + "Authorization": f"Bearer {key}", + "Notion-Version": self.notion_version, + } + + def _make_request(self, method, url, params={}, data={}): + response = requests.request( + method, + url, + headers=self.headers, + params=params, + data=json.dumps(data), + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def retrieve_child_blocks(self, block_id): + url = f"{self.base_url}/blocks/{block_id}/children" + response = self._make_request("GET", url) + + return response["results"] + + def search_documents(self, query): + url = f"{self.base_url}/search" + data = {"query": query} + response = self._make_request("POST", url, {}, data) + + return response["results"] + + +def get_client(): + global client + if client is not None: + return client + + assert (token := app.config.get("API_TOKEN")), "NOTION_API_TOKEN must be set" + client = NotionSearchClient(token) + return client diff --git a/notion/provider/provider.py b/notion/provider/provider.py new file mode 100644 index 000000000..daff835da --- /dev/null +++ b/notion/provider/provider.py @@ -0,0 +1,59 @@ +import logging +from typing import Any + + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def decorate_and_serialize_search_results(page): + """ + By default Notion does not return page contents, need to fetch each child block of a + page and stick together to form the text. + """ + notion_client = get_client() + + if page.get("id") is None: + return + + blocks = notion_client.retrieve_child_blocks(page["id"]) + + text = "" + # Notion will return a sub-dictionary keyed by the type of block that contains + # the plain-text we are looking for + for block in blocks: + type = block.get("type") + if type in block: + rich_text = block[type].get("rich_text", []) + if rich_text: + text += rich_text[0]["plain_text"] + + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_page = { + key: str(value) + for key, value in page.items() + if isinstance(value, (str, int, bool)) + } + + data = { + **stripped_page, + "text": text, + } + + if (title := page.get("properties", {}).get("title")) is not None: + data["title"] = title["title"][0]["plain_text"] + + return data + + +def search(query) -> list[dict[str, Any]]: + notion_client = get_client() + + search_results = notion_client.search_documents(query) + + results = [] + for page in search_results: + results.append(decorate_and_serialize_search_results(page)) + + return results diff --git a/notion/pyproject.toml b/notion/pyproject.toml new file mode 100644 index 000000000..b4d569d31 --- /dev/null +++ b/notion/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "notion" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/opensearch/.env-template b/opensearch/.env-template new file mode 100644 index 000000000..1e70875fd --- /dev/null +++ b/opensearch/.env-template @@ -0,0 +1,9 @@ +OPENSEARCH_HOST= +OPENSEARCH_PORT= +OPENSEARCH_USER= +OPENSEARCH_PASS= +OPENSEARCH_INDEX= +OPENSEARCH_USE_SSL= +OPENSEARCH_SEARCH_LIMIT= +OPENSEARCH_FIELDS_MAPPING= +OPENSEARCH_CONNECTOR_API_KEY= diff --git a/opensearch/README.md b/opensearch/README.md new file mode 100644 index 000000000..c636e33e3 --- /dev/null +++ b/opensearch/README.md @@ -0,0 +1,113 @@ +# Opensearch Quick Start Connector + +This package connects Cohere to Opensearch. It features a simple local development setup. + +# Limitations + +The Opensearch connector features full-text search but only currently searches within a single index of your cluster. Note that since Opensearch is a key-value document store, the document is returned as-is, it is highly recommended to set the `OPENSEARCH_FIELDS_MAPPING` environment variable to return a document format ingestable by Cohere. This should include `snippet`, `title`, and `url` (if exists) keys. + +## Configuration + +This connector requires the following environment variables: + +``` +OPENSEARCH_HOST +``` + +This variable should contain the hostname of the Opensearch instance. + +``` +OPENSEARCH_PORT +``` + +This variable should contain the port of the Opensearch instance. + +``` +OPENSEARCH_USER +``` + +This variable should contain the username of the Opensearch instance. + +``` +OPENSEARCH_PASS +``` + +This variable should contain the user password of the Opensearch instance. + +``` +OPENSEARCH_INDEX +``` + +This variable should contain the index name of the Opensearch instance to search through. + +``` +OPENSEARCH_USE_SSL +``` + +This variable should contain a boolean value(true, false) to indicate whether to use SSL or not. +If this variable is not set, it will default to true. + +``` +OPENSEARCH_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return from Opensearch. Default value is 100. + +``` +OPENSEARCH_FIELDS_MAPPING +``` + +This variable may contain a JSON object mapping Cohere fields +to Opensearch fields(key is Opensearch field, value is Cohere field). +If it is not set, the response fields will be returned as is. + +``` +OPENSEARCH_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the connector. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +To start OpenSearch locally and fill it with data run the following command: + +```bash +$ docker-compose run data-loader +``` + +After running the `data-loader`, the OpenSearch instance will continue to run in the background. +If you need to start it again later, OpenSearch can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/opensearch/dev/opensearch.yml b/opensearch/dev/opensearch.yml new file mode 100644 index 000000000..63b95dd6f --- /dev/null +++ b/opensearch/dev/opensearch.yml @@ -0,0 +1,2 @@ +plugins.security.disabled: true +http.host: 0.0.0.0 diff --git a/opensearch/docker-compose.yml b/opensearch/docker-compose.yml new file mode 100644 index 000000000..a0b8ebd51 --- /dev/null +++ b/opensearch/docker-compose.yml @@ -0,0 +1,44 @@ +version: "3.8" +services: + opensearch: + image: opensearchproject/opensearch:2.8.0 + container_name: opensearch + environment: + - discovery.type=single-node + ports: + - 9200:9200 + volumes: + - ./dev/data:/usr/share/opensearch/data + - ./dev/opensearch.yml:/usr/share/opensearch/config/opensearch.yml + healthcheck: + test: + [ + "CMD-SHELL", + "curl --silent --fail -u admin:admin http://localhost:9200/_cluster/health || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + networks: + - opensearch-network + + data-loader: + image: elasticdump/elasticsearch-dump:v6.101.1 + container_name: data-loader + depends_on: + - opensearch + volumes: + - ../testdata/bbq.csv:/bbq.csv + command: + - elasticdump + - --input=csv:///bbq.csv + - --output=http://admin:admin@opensearch:9200/bbq + - --type=data + profiles: + - tools + networks: + - opensearch-network + +networks: + opensearch-network: + driver: bridge diff --git a/opensearch/poetry.lock b/opensearch/poetry.lock new file mode 100644 index 000000000..488e92347 --- /dev/null +++ b/opensearch/poetry.lock @@ -0,0 +1,678 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "opensearch-py" +version = "2.2.0" +description = "Python client for OpenSearch" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4" +files = [ + {file = "opensearch-py-2.2.0.tar.gz", hash = "sha256:109fe8d2e1e8f419a22358eb901025f51e6ad2f50014c8962e23796b2a23cb67"}, + {file = "opensearch_py-2.2.0-py2.py3-none-any.whl", hash = "sha256:595dcebe42e21cdf945add0b5dbaecccace1a8a5ba65d60314813767b564263c"}, +] + +[package.dependencies] +certifi = ">=2022.12.07" +python-dateutil = "*" +requests = ">=2.4.0,<3.0.0" +six = "*" +urllib3 = ">=1.21.1,<2" + +[package.extras] +async = ["aiohttp (>=3,<4)"] +develop = ["black", "botocore", "coverage (<7.0.0)", "jinja2", "mock", "myst-parser", "pytest (>=3.0.0)", "pytest-cov", "pytest-mock (<4.0.0)", "pytz", "pyyaml", "requests (>=2.0.0,<3.0.0)", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme"] +docs = ["myst-parser", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme"] +kerberos = ["requests-kerberos"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "a779929bae40bb1dd18dc6615d14de482210d39969a3881acfd360ee602820c4" diff --git a/opensearch/provider/__init__.py b/opensearch/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/opensearch/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/opensearch/provider/app.py b/opensearch/provider/app.py new file mode 100644 index 000000000..4f01a4088 --- /dev/null +++ b/opensearch/provider/app.py @@ -0,0 +1,35 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Opensearch config error: {error}") + abort(502, f"Opensearch config error: {error}") + except Exception as error: + logger.error(f"Opensearch search error: {error}") + abort(502, f"Opensearch search error: {error}") + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/opensearch/provider/client.py b/opensearch/provider/client.py new file mode 100644 index 000000000..af11e16ea --- /dev/null +++ b/opensearch/provider/client.py @@ -0,0 +1,49 @@ +from flask import current_app as app +from opensearchpy import OpenSearch + +client = None + + +class OpensearchClient: + def __init__(self, host, port, user, password, use_ssl, index, search_limit): + self.index = index + self.search_limit = search_limit + self.es = OpenSearch( + hosts=[ + { + "host": host, + "port": port, + } + ], + http_auth=(user, password), + use_ssl=use_ssl, + ssl_show_warn=False, + ) + + def search(self, query): + es_query_body = {"query": {"multi_match": {"query": query}}} + + response = self.es.search( + index=self.index, body=es_query_body, size=self.search_limit + ) + + return [match["_source"] for match in response["hits"]["hits"]] + + +def get_client(): + global client + assert (host := app.config.get("HOST")), "OPENSEARCH_HOST must be set" + assert (port := app.config.get("PORT")), "OPENSEARCH_PORT must be set" + assert (user := app.config.get("USER")), "OPENSEARCH_USER must be set" + assert (password := app.config.get("PASS")), "OPENSEARCH_PASS must be set" + assert (index := app.config.get("INDEX")), "OPENSEARCH_INDEX must be set" + + use_ssl = app.config.get("USE_SSL", True) + search_limit = app.config.get("SEARCH_LIMIT", 100) + + if not client: + client = OpensearchClient( + host, port, user, password, use_ssl, index, search_limit + ) + + return client diff --git a/opensearch/provider/provider.py b/opensearch/provider/provider.py new file mode 100644 index 000000000..2006f6aeb --- /dev/null +++ b/opensearch/provider/provider.py @@ -0,0 +1,42 @@ +import logging + +from flask import current_app as app + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + client = get_client() + response = client.search(query) + + return serialize_results(response, app.config.get("FIELDS_MAPPING", {})) diff --git a/opensearch/pyproject.toml b/opensearch/pyproject.toml new file mode 100644 index 000000000..279a71344 --- /dev/null +++ b/opensearch/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "opensearch" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +opensearch-py = "^2.2.0" +gunicorn = "^20.1.0" +black = "^23.11.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/opsgenie/.env-template b/opsgenie/.env-template new file mode 100644 index 000000000..b42f13a70 --- /dev/null +++ b/opsgenie/.env-template @@ -0,0 +1,4 @@ +OPSGENIE_DOMAIN_URL= +OPSGENIE_API_KEY= +# Connector Authorization +OPSGENIE_CONNECTOR_API_KEY=abcdefg1234567890 \ No newline at end of file diff --git a/opsgenie/README.md b/opsgenie/README.md new file mode 100644 index 000000000..bdf60f1aa --- /dev/null +++ b/opsgenie/README.md @@ -0,0 +1,63 @@ +# Opsgenie Connector + +This package is a utility for connecting Cohere to Opsgenie. + +## Configuration + +The search connector requires the following environment variables: + +``` +OPSGENIE_DOMAIN_URL +``` + +This variable should contain the URL of your Opsgenie domain. + +``` +OPSGENIE_API_KEY +``` + +This variable should contain the API key for the Opsgenie domain. To get an API key, use +this [link](https://docs.opsgenie.com/docs/api-key-management). + +``` +OPSGENIE_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the connector. + +## Optional Configuration + +``` +OPSGENIE_SEARCH_LIMIT +``` + +This variable might contain the maximum number of results to return from Opsgenie. Max is 100, default is 20. + +## Development + +Create a virual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Next, start up the search connector server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/opsgenie/poetry.lock b/opsgenie/poetry.lock new file mode 100644 index 000000000..f20e78aef --- /dev/null +++ b/opsgenie/poetry.lock @@ -0,0 +1,803 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.4" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, + {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.0-py3-none-any.whl", hash = "sha256:b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60"}, + {file = "jsonschema-4.18.0.tar.gz", hash = "sha256:8caf5b57a990a98e9b39832ef3cb35c176fe331414252b6e1b26fd5866f891a4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "opsgenie-sdk" +version = "2.1.5" +description = "Python SDK for Opsgenie REST API" +optional = false +python-versions = "*" +files = [ + {file = "opsgenie-sdk-2.1.5.tar.gz", hash = "sha256:c38a2f0c7acbcbeb9202ced80ec857b5eda2d99919392fed4083bdfa7be32669"}, + {file = "opsgenie_sdk-2.1.5-py3-none-any.whl", hash = "sha256:fe0af399030a91ec5755ecfb899965bf18fcb46e17fd2d3a4d71fa68999947e9"}, +] + +[package.dependencies] +certifi = "*" +python-dateutil = "*" +setuptools = ">=21.0.0" +six = ">=1.10" +tenacity = ">=5.0.4" +urllib3 = ">=1.26.5" + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.8.8" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.8-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:cea42c2f52e37877e6b877bce64d109a6b0213e32545ecc70d4492d2a4641b8f"}, + {file = "rpds_py-0.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b189640d59afa8aeff59865fa9d314bca97987c378950f215297e15d64ae1124"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87d74c2526115daa9d805a66377997602185a837ff7ecceed9d27e625c383572"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:db71c665fc7ddb9ac53d7b69dc588493c0b71635b28fc8ff64b31eb9db5b3461"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2d6a26953d3b291dd7e79e43bb203ed134ca889e63c8ebbc65e3ff98154303ef"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3660bd2afb23e1ca685df0d3092208fe6c7b2cae8c0be199b3da6d1a4bc91dc5"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b5164fdad37847e90683d3748dca7c4604f47ecd21e2d651dafc80393d1d314"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dfec14a64759186153115d987f9e60b1fa7e8e14a00004a02482e696199e554"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d6696c2a002e982e89975063939a2579623d6d6b24634b147848ec9f35dad7d6"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13aed64f2e0bef04a0eae6d1d1295f901f6c1640d1e20264dc3b19d62ef1721d"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:316a66b0379a9e954872593aa2eb6d61949da2ecc8f572b4dafb07aa0e247171"}, + {file = "rpds_py-0.8.8-cp310-none-win32.whl", hash = "sha256:e4e11f71673905d9e8735b8dd4ef8fa85a82e6003851fe46f9bdc51aebc2cd5d"}, + {file = "rpds_py-0.8.8-cp310-none-win_amd64.whl", hash = "sha256:6b1b235b890373f785507f8f6a644a4f191b7195939e7f6108dc0e5e4fab57fd"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:d4334405f6c73c29ff94521f78ad53ebb76a9c1b8dafea75852f9f64c3679cf7"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df2ae878fd99342415a42659f3bcee34b12441a509033e0ab04c6e301895607"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2f8666fde7cfd9cdbc6c223876b39697d387f0215d12ed25147e9efec2dff5a"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ea8c4a1232c7bacf73366b0490dda7f67d25958aec1c2f099b6753c8bfe84427"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5cbcbd6451a4af2048fc0b21c15981462f6a378cb039aa53612c6e39958064e"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d418d2fd8c0fffe2897bc3e15a2e2ec87abf29076f0c36898cc33fb7881c2cbe"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97e4cbe722474d17c309ee49e09331ceffe345bb72e2b10c6c740788871b122"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1f60a7eb96fedcc5bf59761d33ac0f2f127d75f8c4b99ed0f138fc0f3601c537"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b3ed0d3498b69159db0d5db1393c8bae4df51cf936b2ef5cda53d800acab0019"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:22afed13c6ad4ccdc650ad44cbc06f835f4f30de201bd4ee2afc09bde06a357a"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:78c5577f99d2edc9eed9ec39fae27b73d04d1b2462aff6f6b11207e0364fc40d"}, + {file = "rpds_py-0.8.8-cp311-none-win32.whl", hash = "sha256:42eb3030665ee7a5c03fd4db6b8db1983aa91bcdffbed0f4687751deb2a94a7c"}, + {file = "rpds_py-0.8.8-cp311-none-win_amd64.whl", hash = "sha256:7110854662ccf8db84b90e4624301ef5311cafff7e5f2a63f2d7cc0fc1a75b60"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:d00b16de3c42bb3d26341b443e48d67d444bb1a4ce6b44dd5600def2da759599"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d7e540e4f85c04706ea798f47a86483f3d85c624704413bc701eb75684d35a5"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54a54c3c220e7c5038207912aab23443f829762503a4fcbc5c7bbffef7523b13"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22d5bef6f9942e46582610a60b8420f8e9af7e0c69e35c317cb508c30117f933"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fccd5e138908ae6f2db5fbfc6769e65372993b0c4c047586de15b6c31a76e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:502f0bee154fa1c13514dfddb402ef29b86aca11873a3316de4534cf0e13a1e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cfd2c2dbb0446ec1ba132e62e1f4880163e43e131dd43f58f58fd46430649b"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f12e679f29a6c2c0607b7037e7fce4f6430a0d304770768cf6d8036386918c29"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8f9d619c66dc7c018a22a1795a14ab4dad3c76246c9059b681955254a0f58f7c"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f9e70c04cc0402f8b14fec8ac91d1b825ac89a9aa015556a0af12a06b5f085"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d72757c0cb6423fe73ecaa2db3adf0077da513b7fe8cb19e102de6df4ccdad0c"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:d7e46f52272ceecc42c05ad869b068b2dbfb6eb5643bcccecd2327d3cded5a2e"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7628b2080538faa4a1243b0002678cae7111af68ae7b5aa6cd8526762cace868"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657348b35a4c2e7c2340bf0bc37597900037bd87e9db7e6282711aaa77256e16"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ac1e47ee4cb2dbd714537e63c67086eec63f56b13208fe450ae5be4f3d65671"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cafbfa8f3a27e592bdcc420497e0c9a957c9f812b6c6ebfb7f961409215ba82d"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9af40bb89e40932e04c0cc1fb516249d6b3ae68ceebd984fdc592a6673244e50"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b7c87503843a036f898d44c47326a117d23b6269a9f1574adf83d7bb051b839"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0fe018430e5e8e1d8b513bcbccdb0ea34b9fd81c32b3a49c41a109fade17cfb"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c7019b2522af6b835118177b6b53f7ed08da28061aa5d44e06286be09799e7a4"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ac596301c7723809ecb6ec4cb2564b2cadc06f8c07b6348a56fcbf1ae043d751"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f8a1cc37e2395002381510a6862c29634acd67edfe5774661a6c48d8617acae7"}, + {file = "rpds_py-0.8.8-cp38-none-win32.whl", hash = "sha256:e261fa453ad50fe1d9287fa21d962cdbcd3d495cf1160dd0f893883040c455b6"}, + {file = "rpds_py-0.8.8-cp38-none-win_amd64.whl", hash = "sha256:e1700fba17dd63c9c7d5cb03cf838db23cf938dd5cdb1eecb6ba8b8da62c3e73"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:25a4b357ba7540d7cc709915699d67d505c8177cdb30824127092e1b4886b504"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f81a570a20f9fce617d728f4e3bdc05bfbb68afa2e795ec0c52544a7923de517"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:246a410e540ce7f635c6ad1b7aa00b7dcfc966c5f97217e41092c3f764dac4bf"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfe98ad05400e7ac7a1df791645db08c66adc92d7a6449a406111303a265b71a"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb5226b11f4fce98c6e47c07819fbbfdda6d3fd529cd176ad8a1e0b98a70b05"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ee396f63a1f540fb3aecb8cc698180d30573a661be47fb3fff45cbd2b5d4686"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e85ea159f2d2132d4fcb71abb7df9683314f6073bf8ee9f9bd576440245e59c"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ed823997c3300b541da0fcc9eee8fbe6740e07939ffa432824cfca287472d652"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4333b5c2801e44bf342207a7700378a1013f300116c9553ce1ffbc73047d2a02"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:681ef7a21e6990583533c3a3038b7176f5e51e5d345fe2d9109b54f6bffcabcd"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1891903e567d728175c0475a1f0ffc1d1580013b0b265b9e2f1b8c93d58b2d05"}, + {file = "rpds_py-0.8.8-cp39-none-win32.whl", hash = "sha256:ee42ce4ef46ea334ce8ab63d5a57c7fd78238c9c7293b3caa6dfedf11bd28773"}, + {file = "rpds_py-0.8.8-cp39-none-win_amd64.whl", hash = "sha256:0e8da63b9baa154ec9ddd6dd397893830d17e5812ceb50edbae8122d8ecb9f2e"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ecc79cd61c4c16f92521c7d34e0f534bc486fc5ed5d1fdf8d4e6e0c578dc7e07"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d43e4253469a6149f4dae91189ccbf832dcd870109b940fa6acb02769e57802b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9985927f001d98d38ad90e0829d3e3c162ce42060bafb833782a934bf1d1d39b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7af604c6581da01fd5f89a917c903a324779fdfa7b3ae66204865d34b5f2c502"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53ed81e3a9a0eb3dfd404ee097d4f50ec6985301ea6e03b4d57cd7ef239179f9"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6b93a8a17e84a53fa6636037955ba8e795f6645dab5ccbeb356c8dbc9cb371"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:592b9de8d82e919ffbf069e586808f56118a7f522bb0d018c54fa3526e5f2bed"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af0920c26fe3421f9e113975c185f7c42a3f0a8ead72cee5b4e6648af5d8cecc"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:28ce85916d7377b9734b280872fb456aa048712901edff9d60836c7b2e177265"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:cbbb26ac4dade6fdec22cb1155ca38d270b308f57cfd48a13a7a8ecc79369e82"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8469755965ff2aa1da08e6e0afcde08950ebba84a4836cdc1672d097c62ffdbd"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1c84912d77b01651488bbe392df593b4c5852e213477e268ebbb7c799059d78"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:180963bb3e1fcc6ed6313ece5e065f0df4021a7eb7016084d3cbc90cd2a8af3e"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e1251d6690f356a305192089017da83999cded1d7e2405660d14c1dff976af7"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:36266e2e49b36ec6cc148e36667030d8e7f1c009edd2ca978ab09ed9c5a7589a"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bd8dbc1c63668124e5e48e601d32f1053cfd5a86004ae0e55dc9ba8b1e7de29"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c62fdb01111da948e8446caaefebf2ca4307a58fcbc10039b48d0db7205397c"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79ac819182795a2168ed11075c7362de368f360244fb7cea8274c222b2d55365"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b949e86affe17c8828d82936c51d7aa9b686511f9ac99a4b1de596d7140c8083"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:fffd98c1fd6b38df35e471549c2486d826af0fda6ca55c0bbbb956b291e7f2ae"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:9b331fa451d725258c1ad0ae6816cf36d55294e5cb68338cf91550b9a448a48f"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:18a97bb7f211b247346983092186927c517153ac155c611f43ca83d5ee93a3e2"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:df3097abf5fd09bfcd8f6fd02d052b25cc3e160b3ee71b6fbd831b2cd516c958"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:961828c668140796c4963edb14cd968666d5414b9b5829997a4f475fd917906e"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a55fd01f61df19e4f53fd67b63ca9bf47559632c3f7d4037faa06d3a6fed54"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f64ef5700ff8fded62b12d1ea55463031cc5a353b670ed7146126c6cbf28788"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a747477838a90b9264f434b5399309f9badb32c80ff3e9c4f6d5b87fddcbaa09"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:358c7a976482537d26fcbdc7808e7cc25f64816fe89681f9aa8bef13e16c7370"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e086610118163400a1822af0ee857581c0e047aa50a9c3543d17fbe65183a339"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:755a837fb7053dbf511fba26343423bd80d3b75a5d7f57f6e407c2fe5ae46682"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:247a1fd9bcdb373380cb8c0041417c9995fc163c9d88a39f5ec3d960114aca22"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c26b1a0425c038cc23cf5770a47d7a7382fe68d6d10fb2a52c2896ca94e72550"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4c66a5f9ca9c5fcb2527ad969541521f7216db713a7bd63aee52c3f5efa5924a"}, + {file = "rpds_py-0.8.8.tar.gz", hash = "sha256:300b8579740b06e246238b730e636f314a7d8dc475be1868650f5d3ddc29a0d8"}, +] + +[[package]] +name = "setuptools" +version = "68.2.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-68.2.2-py3-none-any.whl", hash = "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a"}, + {file = "setuptools-68.2.2.tar.gz", hash = "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tenacity" +version = "8.2.3" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, + {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, +] + +[package.extras] +doc = ["reno", "sphinx", "tornado (>=4.5)"] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "e5efb7631a2feffe6d9ebd1be534128026521d0c09e391596553c4b73c918498" diff --git a/opsgenie/provider/__init__.py b/opsgenie/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/opsgenie/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/opsgenie/provider/app.py b/opsgenie/provider/app.py new file mode 100644 index 000000000..82b8a0176 --- /dev/null +++ b/opsgenie/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Opsgenie config error: {error}") + abort(502, f"Opsgenie config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/opsgenie/provider/provider.py b/opsgenie/provider/provider.py new file mode 100644 index 000000000..1a8a26ce3 --- /dev/null +++ b/opsgenie/provider/provider.py @@ -0,0 +1,61 @@ +import logging + +import opsgenie_sdk +from flask import current_app as app +from opsgenie_sdk.exceptions import ApiException + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +incident_api = None + + +def prepare_query(query: object) -> object: + prepared = "".join(("*", "*".join(query.split(" ")), "*")) + return f"message={prepared} OR tag={prepared}" + + +def serialize_results(data): + """ + Serialize a list of dictionaries by getting the values of the needed keys and transforming them into a string. + """ + assert (domain := app.config.get("DOMAIN_URL")), "OPSGENIE_DOMAIN_URL must be set" + results = [] + for item in data: + result = { + "text": item["message"] if "message" in item and item["message"] else "", + "url": f"{domain}/incident/detail/{item['id']}", + "tags": ", ".join(item["tags"]) + if "tags" in item and isinstance(item["tags"], list) + else "", + } + for key, value in item.items(): + if key not in ["message", "tags"]: + result.update({key: str(value)}) + + results.append(result) + + return results + + +def search(query): + global incident_api + assert (api_key := app.config.get("API_KEY")), "OPSGENIE_API_KEY must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + results = [] + if not incident_api: + conf = opsgenie_sdk.configuration.Configuration() + conf.api_key["Authorization"] = api_key + client = opsgenie_sdk.api_client.ApiClient(configuration=conf) + incident_api = opsgenie_sdk.IncidentApi(api_client=client) + + try: + query = prepare_query(query) + list_response = incident_api.list_incidents(query, limit=search_limit) + if "data" in list_response.to_dict(): + results = list_response.to_dict()["data"] + except ApiException as err: + raise UpstreamProviderError(f"Failed to query Opsgenie: {err}") + + return serialize_results(results) diff --git a/opsgenie/pyproject.toml b/opsgenie/pyproject.toml new file mode 100644 index 000000000..67887aa47 --- /dev/null +++ b/opsgenie/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "opsgenie-connector" +version = "0.1.0" +description = "" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = { extras = ["swagger-ui"], version = "^2.14.2" } +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" +opsgenie-sdk = "^2.1.5" +black = "^23.9.1" + + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/pagerduty/.env-template b/pagerduty/.env-template new file mode 100644 index 000000000..3fa0352a4 --- /dev/null +++ b/pagerduty/.env-template @@ -0,0 +1,4 @@ +PAGERDUTY_API_KEY= +# Types that can be searched, all enabled by default +PAGERDUTY_ENABLED_SEARCH_TYPES=["incidents","users","teams"] +PAGERDUTY_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/pagerduty/README.md b/pagerduty/README.md new file mode 100644 index 000000000..e38d16f47 --- /dev/null +++ b/pagerduty/README.md @@ -0,0 +1,42 @@ +# Pagerduty Quick Start Connector + +This search connector is for connecting Cohere to Pagerduty, the incident response platform. + +## Limitations + +Currently, this connector will search across your Incidents, Users, and Teams. It is important to note that full-text search is only available through their API for Users and Teams, and that Incidents are searched using keyword matching at the connector level. See the `client.py` implementation for more details. + +## Configuration + +To use this connector, your Pagerduty account administrator will need to generate an API key. +From the web app, navigate to Integrations > API Access Keys > Developer Tools, then you can create an API key. Only read-access is required. + +Finally, to protect this connector from abuse, the `PAGERDUTY_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app connector --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/pagerduty/poetry.lock b/pagerduty/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/pagerduty/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/pagerduty/provider/__init__.py b/pagerduty/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/pagerduty/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/pagerduty/provider/app.py b/pagerduty/provider/app.py new file mode 100644 index 000000000..1569ab48d --- /dev/null +++ b/pagerduty/provider/app.py @@ -0,0 +1,35 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Opensearch config error: {error}") + abort(502, f"Pagerduty config error: {error}") + except Exception as error: + logger.error(f"Pagerduty search error: {error}") + abort(502, f"Opensearch search error: {error}") + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/pagerduty/provider/client.py b/pagerduty/provider/client.py new file mode 100644 index 000000000..09d8dfd04 --- /dev/null +++ b/pagerduty/provider/client.py @@ -0,0 +1,80 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class PagerdutySearchClient: + base_url = "https://api.pagerduty.com" + get_users_endpoint = "/users" + get_teams_endpoint = "/teams" + get_incidents_endpoint = "/incidents" + + def __init__(self, key, search_types): + self.headers = {"Authorization": f"Token token={key}"} + self.search_types = search_types + + def get_search_types(self): + return self.search_types + + def _make_request(self, url, params={}): + response = requests.get( + url, + headers=self.headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def search_incidents(self, query): + url = f"{self.base_url}{self.get_incidents_endpoint}" + params = { + "limit": 100, + } + response = self._make_request(url, params) + + # GET Incidents does not have an in-built query feature, it only returns a list of incidents + # Perform search locally on certain incident properties + query = query.lower() + keywords = query.split() + search_properties = ["title", "description", "summary"] + results = [] + for incident in response["incidents"]: + for prop in search_properties: + value = incident.get(prop, "").lower() + + if any(keyword in value for keyword in keywords): + results.append(incident) + + return results + + def search_users(self, query): + url = f"{self.base_url}{self.get_users_endpoint}" + params = {"query": query} + response = self._make_request(url, params) + + return response["users"] + + def search_teams(self, query): + url = f"{self.base_url}{self.get_teams_endpoint}" + params = {"query": query} + response = self._make_request(url, params) + + return response["teams"] + + +def get_client(): + global client + assert (key := app.config.get("API_KEY")), "PAGERDUTY_API_KEY must be set" + enabled_search_types = app.config.get("ENABLED_SEARCH_TYPES", ["incidents"]) + + if not client: + client = PagerdutySearchClient(key, enabled_search_types) + + return client diff --git a/pagerduty/provider/enums.py b/pagerduty/provider/enums.py new file mode 100644 index 000000000..74f495cd2 --- /dev/null +++ b/pagerduty/provider/enums.py @@ -0,0 +1,7 @@ +from enum import Enum + + +class SearchTypes(Enum): + INCIDENTS = "incidents" + USERS = "users" + TEAMS = "teams" diff --git a/pagerduty/provider/provider.py b/pagerduty/provider/provider.py new file mode 100644 index 000000000..794232a2c --- /dev/null +++ b/pagerduty/provider/provider.py @@ -0,0 +1,26 @@ +import logging +from typing import Any + +from .client import get_client +from .enums import SearchTypes + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.pagerduty.com" + + +def search(query) -> list[dict[str, Any]]: + client = get_client() + search_type_method_mapping = { + SearchTypes.INCIDENTS.value: client.search_incidents, + SearchTypes.USERS.value: client.search_users, + SearchTypes.TEAMS.value: client.search_teams, + } + + search_results = [] + for search_type in client.get_search_types(): + if search_type in search_type_method_mapping.keys(): + results = search_type_method_mapping[search_type](query) + search_results.extend(results) + + return search_results diff --git a/pagerduty/pyproject.toml b/pagerduty/pyproject.toml new file mode 100644 index 000000000..79d3f2c6a --- /dev/null +++ b/pagerduty/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "pagerduty" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/pinecone/.env-template b/pinecone/.env-template new file mode 100644 index 000000000..aae84225c --- /dev/null +++ b/pinecone/.env-template @@ -0,0 +1,8 @@ +PINECONE_COHERE_API_KEY= +PINECONE_COHERE_EMBED_MODEL=embed-english-v3.0 +PINECONE_API_KEY= +PINECONE_ENVIRONMENT= +PINECONE_INDEX= +PINECONE_SEARCH_LIMIT= +PINECONE_FIELDS_MAPPING= +PINECONE_CONNECTOR_API_KEY= diff --git a/pinecone/README.md b/pinecone/README.md new file mode 100644 index 000000000..182426ed2 --- /dev/null +++ b/pinecone/README.md @@ -0,0 +1,122 @@ +# Pinecone Quick Start Connector + +This package is a utility for connecting Cohere to Pinecone DB. +Note: vector database indexes and stores vector embeddings, so we need to generate embeddings +from the initial data and then load them into the database. +We use Cohere API to generate vector embeddings. +Here is the Cohere API [documentation](https://docs.cohere.com/reference/embed). + +## Limitations + +Currently, this connector will perform full-text search, +but only for a single vector search index of your Pinecone DB. +Also, please note that the connector uses Cohere's vector embeddings +based on your query to search your Pinecone DB. +So the Pinecone DB vectors embeddings should be generated using Cohere embed API. + +## Configuration + +The search connector requires the following environment variables: + +``` +PINECONE_COHERE_API_KEY +``` + +This variable should contain the API key for the Cohere API to call the Co.Embed endpoint. +You can get the API key from the Cohere [dashboard](https://dashboard.cohere.com/api-keys). + +``` +PINECONE_COHERE_EMBED_MODEL +``` + +This variable should contain the model name for the Cohere API to call the Co.Embed endpoint. +Available models are listed in the Cohere [documentation](https://docs.cohere.com/reference/embed). + +``` +PINECONE_API_KEY +``` + +This variable should contain the API key for Pinecone. +Use these [instructions](https://docs.pinecone.io/docs/authentication#finding-your-pinecone-api-key) to get the API key. + +``` +PINECONE_ENVIRONMENT +``` + +This variable should contain the environment name for Pinecone. +Use these [instructions](https://docs.pinecone.io/docs/authentication#finding-your-pinecone-api-key) to get the +environment name. + +``` +PINECONE_INDEX +``` + +This variable should contain the index name for Pinecone. +Refer to the [documentation](https://docs.pinecone.io/docs/indexes) for understanding indexes. + +``` +PINECONE_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Pinecone Connector. + +### Optional configuration + +``` +PINECONE_FIELDS_MAPPING +``` + +This variable may contain a JSON object mapping Cohere fields +to Pinecone metadata fields(key is Pinecone metadata field, value is Cohere field). +If it is not set, the response metadata fields will be returned as is. + +``` +PINECONE_SEARCH_LIMIT +``` + +This variable may contain the number of results to return. +If it is not set, the default value is 100. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +The `generate_embeddings.py` script will generate embeddings for the BBQ dataset +and save them to a file called `bbq_embeddings.json` + +``` +$ poetry shell +$ python dev/generate_embeddings.py +``` + +The `load_data.py` script will load vectors from the `bbq_embeddings.json` file into Pinecone and will generate an +appropriate index if one doesn't already exist. + +``` +$ poetry shell +$ python dev/load_data.py +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/pinecone/dev/bbq_embeddings.json b/pinecone/dev/bbq_embeddings.json new file mode 100644 index 000000000..f1fbf7c90 --- /dev/null +++ b/pinecone/dev/bbq_embeddings.json @@ -0,0 +1 @@ +{"B08Z7K4VZ9": {"id": "B08Z7K4VZ9", "original": "Brand: Royal Gourmet\nName: Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver\nDescription: \nFeatures: High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance.\nSpacious Cooking Area: Consists of primary cooking area \u2013 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space \u2013 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering.\nSear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups.\nGreat Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time.\nHassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.\n", "metadata": {"Name": "Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver", "Brand": "Royal Gourmet", "Description": "", "Features": "High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance.\nSpacious Cooking Area: Consists of primary cooking area \u2013 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space \u2013 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering.\nSear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups.\nGreat Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time.\nHassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.020233154, 0.012359619, -0.04260254, -0.03161621, 0.010765076, -0.030029297, -0.017044067, -0.0038967133, -0.08428955, 0.0044021606, 0.02645874, 0.02848816, -0.021240234, -0.051940918, 0.057617188, -0.027816772, 0.022064209, 0.023208618, 0.0032958984, -0.012626648, -0.006916046, 0.017578125, -0.021316528, 0.06451416, 0.0491333, -0.03225708, -0.05996704, 0.04953003, 0.017578125, 0.027511597, 0.034423828, -0.030380249, 0.057159424, -0.0036144257, -0.046905518, -0.04006958, -0.008972168, -0.030197144, -0.039031982, 0.008483887, -0.0039787292, 0.01586914, -0.011398315, -0.024887085, -0.03475952, -0.0006580353, -0.03189087, -0.012680054, 0.041259766, -1.424551e-05, -0.0017881393, 0.0048065186, -0.0038871765, -0.013412476, -0.023788452, -0.008453369, 0.014732361, 0.013633728, 0.016342163, -0.034332275, -0.033843994, 0.013755798, 0.030456543, 0.023147583, -0.0501709, 0.018096924, 0.07098389, -0.023376465, 0.019546509, -0.06085205, -0.01776123, 0.046722412, 0.02015686, -0.015106201, -0.029876709, -0.030151367, 0.0034713745, -0.04638672, 0.033447266, -0.010498047, 0.026504517, 0.010261536, 0.037384033, 0.031555176, -0.033050537, 0.006336212, -0.017227173, -0.025421143, 0.012680054, -0.022476196, 0.0027179718, -0.03704834, -0.0105896, 0.022994995, 0.0135650635, -0.06347656, -0.040649414, -0.07318115, 0.04763794, 0.0043754578, 0.06695557, -0.05090332, 0.03829956, 0.014625549, -0.019241333, 0.10229492, 0.005290985, 0.05593872, 0.0021533966, 0.0006222725, 0.036712646, -0.049682617, 0.0063552856, -0.031555176, -0.026138306, 0.031051636, 0.012611389, -0.0012397766, 0.0050621033, 0.010612488, -0.020370483, 0.006011963, -0.009796143, 0.036254883, 0.006958008, 0.0079193115, 0.0128479, -0.01687622, -0.05508423, 0.051239014, -0.041503906, -0.016143799, 0.080078125, 0.06329346, 0.028839111, -0.04724121, 0.005619049, -0.018600464, 0.009841919, -0.019226074, 0.028915405, -0.0107040405, 0.01335144, 0.023132324, -0.032714844, 0.021377563, 0.038848877, -0.0032520294, -0.03930664, -0.058013916, -0.028656006, 0.016235352, 0.035186768, 0.009033203, -0.0793457, -0.0018262863, -0.054870605, -0.0015907288, 0.003408432, -0.031158447, -0.037597656, -0.019058228, 0.0057144165, -0.030639648, -0.041900635, 0.0635376, 0.0061187744, 0.00022053719, 0.012741089, 0.02935791, -0.011993408, -0.008033752, 0.0027484894, 0.040405273, 0.009864807, 0.03152466, 0.026443481, 0.015052795, 0.04650879, -0.09899902, -0.068115234, -0.049926758, 0.08618164, -0.03866577, -0.029632568, -0.00207901, -0.014419556, 0.013671875, 0.04714966, 0.00737381, -0.013336182, -0.015419006, 0.0015525818, -0.004673004, 0.03439331, 0.0009021759, -0.010650635, 0.011657715, 0.00072717667, -0.05496216, 0.0031719208, 0.0011081696, -0.00039172173, 0.01386261, -0.016998291, -0.0063667297, -0.0036315918, 0.014884949, 0.0001232624, 0.026824951, 0.009109497, 0.00014317036, -0.0074005127, -0.018478394, -0.032714844, -0.06378174, -0.034454346, 0.015312195, 6.0260296e-05, 0.016693115, 0.026000977, -0.013092041, 0.04660034, 0.025375366, 0.0154418945, 0.0024871826, -0.016601562, 0.013969421, 0.02545166, 0.013725281, -0.005218506, 0.00038456917, 0.10748291, 0.07550049, -0.007858276, 0.044006348, 0.064941406, 0.06359863, -0.05206299, -0.042022705, -0.0008029938, -0.0116119385, -0.042663574, 0.020462036, 0.008422852, -0.031219482, -0.010040283, 0.03189087, -0.019805908, -0.016525269, 0.038604736, -0.012756348, 0.03390503, 0.02116394, -0.018051147, 0.0256958, -0.04425049, 0.027404785, -0.0014333725, -0.037078857, 0.008934021, 0.046325684, 0.019058228, 0.009918213, 0.013931274, 0.014930725, 0.00440979, 0.00881958, -0.048675537, 0.0079574585, 0.022003174, 0.019989014, -0.0025558472, 0.007385254, -0.021759033, -0.009407043, -0.01927185, 0.03262329, 0.0023441315, -0.022354126, -0.003528595, -0.018249512, -0.01876831, 0.006855011, 0.016906738, 0.026550293, 0.016937256, 0.014785767, 0.0032138824, -0.004470825, 0.036499023, -0.0061531067, -0.01096344, 0.008354187, -0.010414124, -0.03048706, 0.11633301, 0.0014333725, 0.0030708313, -0.0074539185, 0.046447754, 0.020568848, -0.04711914, 0.014404297, 0.004760742, 0.016052246, -0.015777588, 0.030059814, 0.015579224, -0.035095215, 0.0014562607, 0.024520874, 0.038391113, -0.038848877, 0.058380127, 0.011398315, 0.006095886, 0.050445557, 0.0010814667, 0.016098022, 0.0032253265, 0.020019531, -0.058563232, 0.0016622543, 0.015380859, 0.021530151, -0.022979736, -0.019699097, 0.0039482117, 0.025115967, -0.0026855469, 0.036895752, 0.01134491, 0.029876709, -0.007858276, -0.005126953, 0.005962372, 0.0067863464, -0.005718231, -0.053253174, 0.003074646, -0.041503906, -0.011383057, -0.009460449, -0.048095703, -0.012168884, 0.0063819885, -0.00907135, -0.0126571655, -0.011039734, 0.014793396, 0.004863739, 0.0043029785, -0.02720642, -0.0012083054, -0.016326904, -0.013298035, -0.031982422, -0.021453857, -0.06463623, -0.029693604, -0.03062439, -0.07098389, -0.04776001, 0.07299805, 0.0051193237, -0.081848145, -0.016296387, -0.031051636, -0.014289856, 0.0211792, -0.021072388, -0.057800293, -0.026977539, -0.036865234, 0.007686615, 0.070373535, -0.013977051, -0.009094238, 0.03955078, 0.019378662, 0.03933716, -0.03173828, -0.003293991, -0.005882263, 0.035491943, 0.026443481, 0.034118652, 0.0015516281, -0.018188477, -0.0038986206, 0.041625977, -0.029144287, -0.014045715, -0.015838623, 0.0017175674, 0.0033817291, -0.002128601, -0.019256592, -0.009437561, -0.08026123, 0.02848816, 0.0053710938, -0.040893555, 0.009422302, -0.09686279, -0.045074463, -0.0423584, 9.775162e-06, 0.0034503937, 0.0053367615, 0.0076026917, -0.031158447, 0.03125, 0.0037059784, -0.03543091, -0.023849487, -0.009979248, -0.004432678, 0.003921509, 0.037231445, -0.05444336, 0.018432617, 0.038238525, -0.013504028, 0.018203735, -0.027252197, 0.008224487, -0.009490967, 0.032196045, -0.0048217773, 0.0036010742, -0.027420044, 0.0070114136, 0.010627747, 0.057250977, 0.010055542, -0.02116394, 0.024139404, -0.02130127, -0.034179688, -0.015533447, -0.01828003, 0.027877808, 0.011581421, -0.03729248, -0.026062012, -0.05783081, -0.04611206, -0.044677734, -0.0024700165, 0.017486572, 0.041809082, 0.044403076, 0.033966064, 0.0690918, -0.01826477, 0.037628174, 0.045288086, -0.03387451, -0.035186768, -0.03918457, 0.034362793, -0.00035119057, 0.024810791, -0.033355713, 0.0010080338, 0.012565613, -0.025527954, 0.012046814, 0.004070282, 0.02418518, 0.005821228, -0.01625061, -0.016921997, -0.02079773, 0.019546509, 0.022201538, -0.0064735413, -0.05206299, -0.020370483, -0.0050849915, -0.0826416, 0.12200928, 0.03857422, -0.020385742, 0.06359863, 0.060394287, 0.01777649, 0.01210022, 0.00944519, -0.011100769, 0.007411957, 0.05670166, 0.0033493042, -0.0061569214, 0.020645142, -0.01979065, 0.027191162, 0.014137268, -0.044311523, 0.0075531006, -0.007713318, -0.04336548, -0.023498535, 0.019821167, 0.03024292, -0.0059127808, -0.004005432, -0.034820557, -0.0046081543, -0.047821045, 0.0088272095, -0.0009784698, -0.013183594, -0.0074386597, 0.006275177, -0.0006918907, -0.017211914, -0.008346558, 0.019332886, 0.014480591, 0.010803223, 0.0206604, -0.0021820068, 0.023620605, -0.049224854, 0.027404785, -0.032073975, -0.0055389404, 0.043792725, 0.01864624, 0.036010742, 0.010498047, -0.03164673, 0.015159607, 0.0046691895, 0.039123535, -0.00818634, -0.044708252, -0.020385742, 0.010192871, 0.01473999, -0.040283203, 0.01953125, -0.08331299, -0.011695862, -0.025283813, -0.066345215, -0.0024738312, -0.0076446533, -0.012886047, -0.1038208, -0.026626587, 0.040771484, -0.050109863, -0.03677368, 0.0012550354, -0.049072266, -0.016830444, -0.039794922, 0.019012451, -0.043426514, 0.018310547, -0.064941406, 0.018692017, 0.050964355, 0.05392456, 0.0049552917, -0.03466797, 0.0016326904, 0.0011959076, 0.12756348, -0.0008072853, 0.041900635, -0.046661377, -0.018249512, -0.0014867783, 0.001783371, 0.03086853, 0.0012950897, 0.004005432, -0.03652954, -0.03314209, -0.031341553, -0.03010559, 0.03857422, -0.052886963, -0.038238525, -0.039611816, 0.06201172, -0.008239746, 0.008407593, -0.009765625, 0.028808594, -0.016616821, -0.0039749146, -0.04547119, 0.013023376, 0.005432129, -0.0022640228, 0.023208618, -0.0063323975, -0.01398468, 0.005065918, 0.07220459, 0.066711426, -0.026153564, 0.0039138794, 0.0072402954, 0.0031471252, -0.042633057, 0.003194809, 0.027755737, -0.016906738, 0.013313293, -0.064819336, 0.06713867, 0.047729492, -0.012931824, -0.00047826767, 0.008644104, -0.02394104, -0.05380249, -0.021652222, 0.009933472, 0.024780273, -0.051818848, -0.04397583, 0.049682617, -0.05078125, 0.026504517, -0.020858765, -0.02229309, 0.0028896332, -0.02192688, 0.03353882, -0.008811951, 0.047851562, 0.011230469, 0.0055274963, 0.025512695, 0.0034160614, 0.0009498596, -0.0008087158, -0.018585205, -0.014862061, -0.028900146, -0.037994385, -0.027130127, -0.0035190582, 0.011367798, -0.0053863525, -9.590387e-05, -0.0034255981, -0.024230957, -0.0065078735, 0.024978638, -0.004966736, 0.025161743, -0.012023926, 0.042785645, -0.03817749, 0.018600464, 0.020004272, -0.021957397, -0.002084732, 0.028305054, -0.03640747, 0.03488159, 0.015640259, -0.08392334, 0.020706177, -0.012016296, 0.0072021484, -0.033599854, 0.05581665, 0.003288269, 0.011787415, -0.07373047, 0.006088257, -0.0067214966, 0.04260254, 0.005783081, -0.029968262, 0.026885986, -0.053894043, -0.019699097, 0.011932373, 0.04437256, -0.030776978, 0.005710602, 0.015159607, -0.0030918121, -0.04296875, -0.013847351, -0.05029297, -0.006175995, -0.043121338, 0.025115967, 0.017807007, -0.009155273, -0.007701874, -0.056243896, 0.011634827, 0.005340576, -0.009414673, -0.009490967, 0.000954628, -0.0021190643, -0.00039863586, 0.03427124, 0.021255493, 0.020446777, -0.025604248, -0.026138306, -0.046905518, 0.016525269, -0.03237915, 0.031677246, -0.034179688, 0.0073623657, 0.006904602, -0.039245605, 0.0038776398, 0.031280518, -0.039794922, -0.008728027, 0.0016117096, 0.011497498, 0.005126953, 0.004924774, 0.095947266, -0.02897644, -0.054901123, -0.045959473, 0.0064582825, -0.00022375584, -0.018585205, 0.06726074, 0.0022144318, 0.0020828247, 0.023284912, 0.0124435425, -0.03488159, -0.013031006, -0.008270264, -0.057678223, -0.012130737, -0.04159546, 0.014060974, 0.0014715195, -0.014785767, 0.0035037994, 0.043060303, 0.0135269165, -0.019088745, -0.03213501, -0.0135269165, 0.003929138, -0.020385742, 0.017623901, -0.022964478, -0.034423828, -0.011375427, -0.04232788, -0.06726074, -0.045928955, 0.03062439, 0.021224976, -0.003791809, -0.0046806335, -0.0022563934, 0.029220581, -0.014694214, 0.055480957, 0.0010671616, 0.0050697327, 0.01713562, 0.0053253174, -0.02835083, 0.020874023, -0.0034122467, 0.01285553, -0.032196045, -0.0042266846, 0.0062179565, 0.043029785, -0.04031372, 0.006164551, 0.018295288, 0.043548584, 0.031158447, 0.024551392, 0.045440674, -0.028961182, -0.06750488, 0.0047721863, -0.011703491, -0.047851562, -0.038970947, 0.029953003, -0.07739258, 0.026519775, -0.029846191, 0.02507019, 0.005493164, 0.031555176, 0.013305664, -0.009284973, 0.027694702, 0.010314941, 0.017044067, -0.005996704, -0.05532837, 0.015098572, -0.022125244, -0.0015459061, -0.0061950684, 0.004360199, -0.029785156, 0.017425537, 0.019424438, 0.014526367, -0.012588501, 0.05206299, 0.008522034, -0.101135254, 0.024230957, -0.012588501, -0.00090789795, 0.01676941, -0.072021484, -0.030273438, -0.0051841736, 0.022735596, -0.032104492, 0.03894043, 0.015403748, 0.01108551, 0.016036987, -0.03302002, 0.013389587, 0.004447937, -0.013252258, 0.015144348, 0.025390625, -0.018539429, -0.073791504, -0.00995636, 0.047607422, -0.025726318, 0.000705719, 0.012336731, 0.029891968, -0.016036987, 0.022445679, -0.0140686035, -0.014701843, 0.027816772, 0.011482239, 0.014137268, 0.024337769, 0.0116119385, -0.0043945312, -0.012908936, -0.02217102, 0.017166138, -0.008270264, 0.025939941, 0.030639648, -0.017333984, -0.01210022, -0.042938232, -0.010383606, -0.001332283, 0.010864258, -0.026062012, 0.023742676, 0.003982544, -0.005001068, 0.034423828, 0.06085205, -0.004901886, 0.041656494, -0.009880066, -0.0004401207, 0.0056762695, 0.026107788, 0.0029754639, 0.009017944, -0.012825012, 0.0066223145, 0.030670166, 0.011734009, 0.012176514, 0.0027828217, 0.010612488, 0.007904053, -0.055541992, 0.026565552, 0.0079574585, 0.028884888, -0.03036499, -0.017852783, -0.016616821, -0.022018433, -0.019943237, -0.031188965, -0.047698975, 0.028167725, -0.0047302246, -0.009635925, 0.017074585, -0.013977051, 0.008308411, -0.05633545, -0.0059432983, -0.003025055, 0.04171753, 0.016845703, 0.06793213, -0.03366089, -0.08343506, -0.0317688, 0.035583496, -0.06677246, -0.027313232, -0.04031372, 0.022476196, 0.003955841, -0.009941101, 0.055511475, 0.007522583, 0.022979736, -0.0076675415, -0.007446289, 0.0055770874, -0.012565613, -0.024780273, -0.019973755, -0.011001587, 0.02029419, 0.033599854, -0.0090789795, 0.02104187, 0.0231781, -0.01612854, -0.031585693, -0.017578125, -0.028717041, -0.022628784, -0.055908203, 0.025604248, -0.015029907, -0.003993988, -0.0287323, 0.023498535, 0.01739502, 0.0042304993, 0.048034668, 0.012435913, 0.022445679, -0.012130737, -0.093322754, -0.040985107, -0.016693115, 0.029342651, 0.01171875, 0.059020996, 0.010032654, 0.021560669, -0.015457153, 0.029541016, 0.01084137, -0.062438965, 0.024505615, -0.02470398, -0.003314972, 0.0011730194, -0.037261963, 0.020050049, -0.0040016174, -0.016983032, 0.018676758, 0.015625, -0.02079773, -0.0074653625, -0.03604126, 0.013404846, -0.0033874512, -0.03213501, -0.017990112, -0.017807007, -0.0021209717, 0.020523071, -0.008964539, 0.029022217, -0.019699097, 0.000192523, -0.022232056, 0.027420044, 0.018875122, 0.020019531, -0.029129028, 0.015541077, 0.0016412735, 0.02470398, -0.032165527, -0.059539795, -0.0552063, 0.03955078, 0.030914307, -0.017730713, 0.066711426, -0.021896362, 0.010536194, 0.032928467, -0.0049934387, -0.00014948845, 0.034088135, 0.012046814, 0.00756073, 0.012672424]}, "B08588PLK8": {"id": "B08588PLK8", "original": "Brand: NOMADIQ\nName: NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel\nDescription: Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

      Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
      Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
      Grilling Surface: 226.3 square inches
      Total BTU: 9,200
      Gas Type: Propane\nFeatures: \u2705 TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual\n\u2705 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant.\n\u2705 ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners.\n\u2705 OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required!\n\u2705 SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.\n", "metadata": {"Name": "NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel", "Brand": "NOMADIQ", "Description": "Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

      Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
      Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
      Grilling Surface: 226.3 square inches
      Total BTU: 9,200
      Gas Type: Propane", "Features": "\u2705 TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual\n\u2705 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant.\n\u2705 ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners.\n\u2705 OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required!\n\u2705 SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0047836304, 0.0058250427, -0.030548096, 0.007293701, 0.005519867, -0.022857666, 0.018096924, -0.02758789, -0.028549194, 0.013580322, -0.035186768, 0.052825928, -0.035705566, -0.014083862, 0.024246216, -0.041381836, 0.025238037, -0.01637268, -0.012191772, -0.032836914, -0.007865906, -0.014328003, -0.012550354, 0.08544922, 0.039489746, -0.023544312, -0.018554688, 0.023651123, -0.00036001205, -0.013206482, 0.02607727, 0.025909424, 0.024398804, 0.00039935112, -0.00919342, 0.014984131, -0.015823364, 0.012672424, -0.0109939575, 0.02609253, 0.018936157, -0.0041236877, -0.06652832, 0.041656494, -0.058563232, -0.03012085, 0.015556335, 0.0037593842, 0.003063202, 0.033050537, 0.007785797, 0.013191223, 0.00907135, 0.013900757, 0.01676941, 0.02432251, 0.02558899, -0.019012451, 0.023483276, -0.026290894, -0.023101807, -0.0051994324, 0.03869629, -0.0007944107, -0.068237305, 0.01826477, -0.0033359528, -0.024169922, 0.023010254, -0.059265137, -0.010108948, 0.020996094, 0.0043945312, 0.013557434, -0.025650024, -0.057769775, 0.06555176, -0.023025513, -0.0039024353, 0.02217102, -0.034118652, 0.015777588, -0.006729126, -0.038269043, -0.01309967, -0.03918457, -0.02279663, -0.0010356903, -0.04107666, -0.029251099, -0.020217896, -0.014976501, -0.084228516, 0.005592346, 0.012390137, -0.022628784, -0.041931152, -0.07281494, 0.037628174, 0.019058228, 0.053771973, -0.05331421, 0.052612305, 0.0076560974, -0.0049209595, 0.061035156, 0.00081300735, 0.031433105, 0.034118652, -0.004119873, 0.006450653, 0.0022449493, -0.016784668, -0.01902771, -0.02330017, -0.004470825, -0.04107666, 0.009147644, 0.017456055, -0.019851685, -0.03152466, -0.04537964, 0.022094727, 0.04168701, 0.042510986, 0.03527832, -0.0043678284, 0.011955261, -0.051818848, 0.05996704, -0.032714844, -0.009666443, 0.017211914, 0.035705566, -0.0069122314, -0.04284668, 0.03704834, -0.009902954, 0.0062942505, -0.018798828, 0.008934021, 0.0135650635, 0.00459671, 0.002494812, -0.02456665, 0.016235352, 0.04272461, 0.0070610046, -0.0289917, -0.06842041, -0.0032901764, 0.023529053, 0.04977417, 0.009010315, -0.07116699, -0.0005121231, 0.0056381226, -0.016937256, -0.054260254, -0.06530762, -0.04727173, -0.02355957, 0.023635864, 0.011756897, 0.004814148, 0.0491333, 0.011932373, 0.016098022, 0.015029907, 0.036712646, 0.028717041, 0.037750244, 0.0044822693, 0.0043411255, 0.008201599, -0.031585693, -0.0074920654, 0.030929565, 0.07043457, -0.11834717, -0.078186035, -0.05130005, 0.10253906, -0.03527832, -0.032348633, 0.004142761, 0.004890442, 0.017791748, 0.04360962, 0.0029697418, 0.045074463, -0.0039978027, -0.0030727386, -0.05633545, 0.045806885, 0.04534912, -0.07092285, 0.00026845932, 0.004425049, -0.01701355, -0.0038661957, -0.037750244, 0.018981934, -0.0018062592, -0.0072402954, -0.024032593, -0.0013484955, 0.0030822754, 0.031234741, 0.023590088, -0.0068893433, 0.0064353943, 0.0028934479, -0.047668457, -0.025680542, 0.010627747, -0.011100769, 0.023422241, 0.0014438629, 0.02267456, 0.022537231, -0.013076782, 0.010284424, 0.026931763, 0.04156494, -0.008293152, -0.005508423, -0.0025100708, 0.06048584, -0.004699707, -0.0024375916, 0.03186035, 0.05441284, 0.062408447, -0.011962891, 0.015510559, 0.031951904, 0.030776978, -0.019042969, -0.0035648346, 0.008110046, -0.022537231, -0.045410156, 0.0035743713, -0.0058288574, -0.0546875, -0.020843506, 0.036224365, -0.02607727, -0.0065307617, -0.002614975, -0.004764557, 0.040863037, 0.03945923, -0.024780273, 0.048065186, -0.03479004, -0.000541687, -0.023605347, 0.02267456, -0.015213013, 0.06542969, 0.051208496, 0.017608643, -0.0029087067, -0.015533447, 0.0013360977, 0.014022827, -0.043426514, -0.0016508102, 0.033966064, 0.03491211, -0.0016269684, -0.008041382, 0.013900757, 0.0112838745, -0.046173096, 0.017669678, 0.019821167, -0.0038547516, 0.0053100586, 0.0075950623, 0.014625549, -0.00037813187, 0.017181396, 0.00932312, 0.0181427, 0.0067825317, -0.029205322, -0.021347046, 0.014335632, -0.002412796, -0.01158905, -0.0042419434, 0.01687622, -0.029510498, 0.035217285, 0.0335083, 0.021575928, -0.02911377, -0.030685425, 0.016403198, -0.05618286, 0.022033691, -0.018966675, 0.033935547, -0.033050537, 0.017333984, 0.008506775, -0.03286743, 0.025894165, 0.057525635, 0.02973938, -0.039031982, 0.04006958, 0.0046958923, -0.02394104, 0.011070251, 0.010513306, 0.06524658, -0.014213562, -0.009216309, 0.0015001297, 0.0048942566, 0.01651001, -0.013412476, -0.013076782, 0.0050849915, 0.036621094, 0.0019083023, 0.026153564, 0.015525818, -0.006111145, -0.038330078, 0.0071144104, -0.023361206, -0.0008864403, 0.015312195, -0.0039596558, -0.03149414, 0.015701294, -0.035064697, -0.0031585693, 0.013771057, -0.021560669, -0.023101807, 0.022628784, -0.0026988983, -0.037963867, 0.019165039, 0.010719299, -0.009391785, 0.014190674, -0.039367676, -0.008621216, 0.0020103455, -0.028945923, -0.06274414, -0.047546387, -0.088012695, -0.012634277, -0.018112183, -0.06414795, -0.029388428, 0.04751587, -0.008613586, -0.011642456, -0.03652954, -0.021316528, -0.0158844, 0.0049705505, 0.011634827, -0.022644043, -0.03366089, -0.024230957, 0.006313324, 0.015075684, -0.040252686, 0.055755615, -0.002281189, -0.02041626, -0.015449524, 0.0073509216, -0.013198853, -0.008338928, 0.0028419495, 0.016738892, 0.025482178, 0.0362854, -0.0062217712, 0.048736572, 0.037353516, -0.06945801, -0.007537842, 0.03314209, 0.017562866, -0.005622864, -0.020751953, -0.057617188, -0.031082153, -0.030838013, 0.008613586, -0.0066184998, -0.028701782, -0.010215759, -0.072143555, -0.010536194, -0.04562378, 0.0066719055, 0.059326172, -0.023422241, 3.4689903e-05, -0.036315918, 0.021102905, -0.0031833649, -0.0009908676, 0.019485474, 0.003982544, 0.011680603, -0.04763794, 0.0057296753, -0.01828003, 0.01285553, 0.015113831, -0.036224365, -0.019317627, -0.021224976, 0.023727417, -0.047210693, 0.051849365, -0.016113281, 0.003791809, -0.02798462, 0.0110321045, -0.0050697327, 0.008308411, 0.004146576, -0.074157715, 0.038360596, -0.044433594, -0.039093018, -0.024047852, -0.028884888, 0.032684326, -0.026473999, -0.00617218, -0.037719727, -0.06011963, 0.009735107, -0.018859863, 0.013702393, 0.008216858, 0.057403564, 0.02017212, 0.0022335052, 0.009101868, 0.023880005, 0.019058228, 0.014923096, -0.041748047, -0.030944824, -0.018875122, -0.012924194, -0.024810791, 0.0052375793, -0.03314209, 0.041412354, 0.0008921623, 0.0018882751, 0.0026893616, -0.024337769, 0.019302368, 0.014045715, -0.013305664, 0.016082764, -0.04135132, 0.0016527176, 0.02809143, -0.03378296, -0.046539307, -0.06427002, 0.010398865, -0.08666992, 0.06915283, 0.0592041, -0.03643799, 0.085998535, 0.045776367, -0.0103302, 0.08026123, 0.05178833, 0.0236969, 0.033325195, 0.06781006, -0.008766174, 0.012504578, 0.02748108, -0.09454346, 0.016860962, 0.011779785, -0.059814453, 0.03479004, 0.01474762, -0.04876709, -0.018600464, 0.0064697266, -0.00012207031, -0.018310547, 0.011383057, -0.038146973, -0.014076233, -0.033081055, 0.023590088, 0.0047340393, -0.017959595, -0.0045433044, 0.00017881393, -0.007320404, -0.020111084, 0.007385254, 0.016998291, 0.064331055, 0.0050201416, 0.04232788, -0.024658203, -0.015357971, -0.02041626, -0.021118164, 0.003932953, 0.019012451, 0.029296875, -0.0044021606, -0.008010864, -0.010826111, 0.014007568, -0.013641357, -0.008323669, 0.013313293, -0.018554688, -0.05065918, -0.00018310547, 0.04788208, 0.026275635, -0.025787354, 0.024734497, -0.06921387, -0.020874023, -0.0137786865, -0.0078086853, 0.019302368, -0.040161133, -0.04031372, -0.10852051, -0.019012451, -0.0030002594, 0.0009598732, -0.0602417, 0.021469116, -0.028137207, -0.00012803078, 0.006210327, 0.033447266, -0.043884277, -0.001707077, 0.001537323, 0.006164551, 0.020812988, -0.0053215027, 0.022247314, -0.029785156, -0.016921997, -0.003479004, 0.08428955, 0.02281189, 0.03564453, -0.02796936, -0.026916504, -0.011886597, 0.026367188, 0.053131104, -0.004348755, 0.0501709, -0.0074310303, 0.005115509, -0.053955078, -0.00983429, 0.050109863, -0.0592041, -0.053253174, -0.022766113, 0.0725708, 0.0036678314, 0.029541016, -0.030319214, -0.026885986, -0.0034370422, -0.028259277, -0.057678223, -0.029937744, -0.011703491, 0.0037879944, 0.0037403107, 0.016571045, -0.026397705, 0.011375427, -0.013885498, 0.00868988, -0.0024414062, -0.014419556, -0.00016903877, 0.010185242, 0.049194336, -0.05935669, -0.0067863464, -0.051361084, 0.006652832, -0.05834961, 0.101135254, 0.08917236, -0.030838013, -0.0056381226, 0.030151367, -0.046569824, -0.046722412, -0.00010359287, -0.0129852295, -0.024734497, 0.01423645, -0.017288208, -0.0058670044, 0.0057258606, -0.0068588257, -0.004623413, -0.022476196, 0.00035381317, 0.001335144, 0.0065612793, -0.030212402, -0.010307312, 0.014663696, -0.0010852814, -0.0046653748, -0.033081055, -0.008735657, 0.0088272095, -0.03173828, -0.02645874, 0.012138367, -0.021270752, -0.021194458, -0.018829346, 0.0004594326, -0.090026855, 0.06878662, 0.06384277, 0.0021266937, -0.0038452148, 0.006664276, 0.027038574, -0.004020691, -0.0006837845, 0.07159424, -0.025131226, -0.002210617, 0.0067977905, -0.01751709, 0.010864258, 0.020126343, -0.023529053, 0.03778076, -0.015838623, -0.017196655, 0.043823242, 0.0019874573, 0.0013599396, -0.03314209, 0.051696777, 0.0006804466, -0.0054626465, -0.043121338, 0.0073890686, 0.026275635, 0.05303955, -0.020706177, -0.01701355, 0.034332275, -0.007045746, -0.019165039, 0.011833191, 0.066223145, -0.028182983, -0.011711121, 0.019302368, -0.018981934, -0.05758667, -0.0040626526, 0.0007762909, -0.011276245, -0.032165527, -0.050231934, 0.018875122, 0.022583008, -0.017333984, -0.005104065, -0.011009216, 0.018753052, -0.015075684, 0.0008149147, -0.05230713, -0.015151978, -0.003528595, 0.060455322, -0.03387451, 0.010513306, -0.06933594, -0.040649414, -0.02835083, 0.021392822, 0.02355957, 0.04751587, -0.017913818, -0.053527832, -0.018707275, -0.0105896, 0.005126953, -0.033294678, -0.013710022, -0.02192688, 0.011734009, 0.01335907, -0.034729004, -0.051849365, 0.053619385, -0.041503906, -0.04031372, -0.03491211, 0.0579834, -0.037139893, -0.026351929, 0.039642334, -0.03543091, 0.030883789, 0.008987427, 0.005809784, -0.035064697, -0.02659607, -0.007949829, -0.03189087, -0.032196045, -0.033294678, 0.017196655, -0.0154800415, 0.059417725, -0.010444641, 0.04736328, -0.032836914, -0.026535034, -0.027908325, 0.045684814, -0.020553589, -0.030670166, 0.0022029877, -0.021881104, -0.011993408, -0.03729248, -0.019836426, -0.026763916, 0.0049095154, 0.04748535, 0.019195557, 0.0022792816, -0.037719727, 0.02180481, 0.058929443, -0.0043754578, 0.06536865, -0.025970459, 0.009101868, -0.001499176, 0.02104187, 0.006149292, 0.021194458, 0.008720398, 0.0076522827, -0.012565613, -0.041259766, 0.0076828003, 0.01525116, -0.043701172, -0.008354187, 0.038757324, 0.06530762, 0.047912598, 0.0031471252, 0.021911621, -0.0071868896, -0.01802063, 0.027633667, 0.05609131, -0.014038086, 0.0019493103, -0.042144775, 0.017074585, 0.008666992, 0.004173279, 0.018051147, -0.021621704, 0.055145264, -0.035003662, -0.003490448, 0.003622055, -0.012245178, 0.044769287, -0.011932373, -0.0184021, -0.02406311, -0.010055542, -0.0102005005, -0.019134521, 0.04852295, -0.016052246, 0.0022830963, 0.01109314, 0.043518066, -0.006122589, 0.04574585, 0.00894165, -0.07305908, 0.027923584, 0.0005264282, -0.001209259, 0.015388489, -0.049224854, -0.038024902, -0.008071899, 0.037597656, 0.00034689903, 0.056243896, -0.0141067505, 0.023788452, -0.045166016, 0.018157959, -0.04574585, -0.026184082, 0.0101623535, 0.015579224, -0.0047683716, 0.006580353, 0.018157959, -0.012290955, 0.06185913, -0.04675293, -0.02961731, 0.0023097992, 0.022628784, -0.020858765, -0.010215759, -0.015083313, -0.03125, 0.03062439, 0.047027588, -0.0016069412, 0.012969971, -0.06304932, 0.0020256042, 0.019226074, -0.06628418, 0.030563354, -0.032165527, 0.016815186, 0.020614624, 0.0736084, -0.034729004, -0.057617188, -0.026809692, 0.00642395, -0.010681152, 0.027252197, -0.018630981, 0.014137268, 0.026992798, 0.046569824, 0.06726074, -0.02998352, 0.04107666, 0.018966675, 0.014518738, 0.03878784, 0.00831604, -0.010635376, -0.024887085, 0.004436493, 0.015174866, 0.006034851, 0.00907135, -0.038238525, 0.009941101, -0.004722595, -0.018569946, -0.016693115, -0.013168335, -0.0024051666, 0.06781006, -0.035736084, -0.0036506653, -0.043304443, -0.07751465, -0.02494812, -0.018356323, -0.066711426, 0.0501709, -0.012161255, -0.02029419, 0.015548706, -0.008041382, -0.020812988, -0.048980713, -0.010391235, -0.001001358, 0.015838623, 0.0029640198, 0.059020996, -0.029785156, -0.04876709, -0.016464233, 0.01727295, -0.0075187683, -0.029891968, 0.01612854, 0.016479492, 0.034973145, 0.0025482178, 0.0043754578, 0.08416748, 0.010253906, 0.0025253296, 0.0184021, -0.05038452, -0.030944824, 0.073791504, 0.033325195, -0.05343628, -0.028381348, 0.026947021, 0.0066184998, 0.044311523, -0.01096344, 0.03451538, -0.06121826, 0.009757996, -0.032440186, -9.483099e-05, -0.0026435852, -0.011886597, 0.018753052, -0.006816864, -0.040100098, 0.0043182373, 0.0046310425, 0.03125, -0.0002450943, 0.012763977, 0.023834229, -0.013801575, -0.02243042, -0.01763916, -0.022659302, 0.018951416, 0.023101807, -0.014175415, -0.03778076, -0.011245728, -0.012367249, 0.011413574, 0.008895874, -0.03982544, -0.013938904, -0.016281128, 0.00982666, -0.03668213, 0.0075912476, 0.018615723, -0.02418518, -0.005268097, -0.009742737, -0.014198303, 0.00085020065, 0.026885986, -0.016799927, 0.018585205, -0.0046844482, 0.030258179, -0.03652954, -0.04434204, 0.021209717, 0.021240234, -0.015129089, 0.0178833, -0.0010023117, -0.0074310303, -0.03515625, 0.0037498474, 0.006828308, -0.0004005432, -0.0357666, 0.05102539, 0.030899048, 0.04537964, -0.032073975, -0.05883789, -0.04699707, 0.019332886, 0.0021324158, 3.08156e-05, 0.056152344, -0.02458191, 0.011451721, 0.028244019, 0.0017490387, -0.017532349, 0.023361206, 0.03302002, 0.013122559, 0.009140015]}, "B082HG76CB": {"id": "B082HG76CB", "original": "Brand: MASTER COOK\nName: MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves\nDescription: Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean\nFeatures: \u2764 STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob\n\u2764 FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving\n\u2764 PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming\n\u2764 ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill\n\u2764 MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking\n", "metadata": {"Name": "MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves", "Brand": "MASTER COOK", "Description": "Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean", "Features": "\u2764 STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob\n\u2764 FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving\n\u2764 PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming\n\u2764 ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill\n\u2764 MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.015029907, 0.00970459, -0.013923645, -0.0022201538, 0.012565613, -0.013687134, 0.023452759, -0.0127334595, -0.015007019, -0.018234253, -0.016113281, 0.005748749, -0.041809082, -0.024917603, 0.0047416687, -0.05645752, 0.01537323, 0.01838684, -0.008468628, -0.02935791, 0.0043907166, 0.0009074211, -0.035186768, 0.064697266, 0.045837402, -0.03970337, -0.040618896, 0.012290955, 0.016693115, 0.019485474, 0.015548706, -0.0056877136, 0.050842285, -0.007080078, -0.04208374, -0.055725098, 0.031585693, -0.039886475, -0.050109863, 0.026550293, -0.023925781, 0.034057617, -0.048095703, -0.016967773, -0.050445557, -0.06210327, -0.007965088, 0.0010547638, 0.020568848, -0.001912117, 0.008720398, 0.029052734, 0.020263672, -0.026565552, -0.028381348, 0.0013132095, 0.03555298, -0.0017156601, 0.028945923, -0.06555176, -0.04849243, -0.021896362, 0.05419922, 0.035064697, -0.03111267, 0.02420044, 0.07019043, 0.00053215027, -0.014518738, -0.06958008, -0.019805908, 0.0059776306, 0.022247314, 0.007774353, -0.030044556, -0.0053749084, -0.00062561035, 0.014656067, 0.04776001, -0.013725281, 0.0012607574, -0.004863739, 0.018676758, -0.032836914, 0.011520386, -0.019744873, -0.0154800415, -0.010536194, -0.02809143, -0.038879395, -0.016021729, -0.029953003, -0.050720215, 0.019439697, 0.003824234, -0.020736694, -0.056762695, -0.07879639, 0.045440674, 0.010383606, 0.029953003, -0.0262146, 0.005847931, 0.011947632, -0.025283813, 0.113220215, 0.04888916, 0.0637207, -0.02468872, -0.03427124, 0.0056381226, -0.06652832, -0.02368164, -0.008903503, -0.026901245, 0.028030396, -0.048858643, -0.023391724, -0.008979797, 0.0048980713, -0.05307007, -0.038970947, 0.016708374, 0.007972717, 0.022109985, 0.007255554, -0.009269714, 0.017166138, -0.06112671, 0.026153564, -0.015457153, 0.012626648, 0.057647705, 0.0597229, 0.0059928894, -0.015670776, 0.017150879, -0.02456665, 0.0124435425, 0.0006661415, 0.0042686462, -0.011436462, 0.01360321, 0.0011091232, -0.019638062, 0.010421753, 0.029647827, 0.013916016, -0.0309906, -0.043273926, 0.004337311, -0.005405426, 0.04425049, 0.009803772, -0.056640625, 0.009941101, 0.0012979507, -0.007217407, -0.041534424, -0.037322998, -0.050354004, -0.031585693, -0.00749588, -0.01889038, -0.04360962, 0.062469482, 0.028961182, 0.012260437, 0.021713257, 0.06555176, -0.021453857, -0.02734375, -0.010650635, 0.012123108, -0.018173218, 0.019119263, 0.0019102097, 0.04611206, 0.04837036, -0.06512451, -0.053863525, -0.055145264, 0.1081543, -0.049987793, -0.009086609, -0.0028038025, 0.0034866333, 0.011253357, 0.0236969, 0.017929077, 0.0044517517, -0.0047035217, 0.0039100647, -0.014129639, 0.031402588, -0.0012521744, -0.06781006, -0.013656616, -0.008071899, -0.025985718, 0.01423645, 0.036956787, -0.0012874603, 0.026275635, 0.036193848, 0.01979065, 0.010826111, -0.0015907288, 0.018951416, 0.024398804, -0.000107347965, -0.009819031, -0.0017929077, -0.030929565, -0.024963379, -0.0015563965, -0.01675415, 0.0073013306, 0.0038928986, 0.0024490356, 0.01727295, 0.00566864, -0.0005559921, -0.0060691833, 0.015342712, -0.0178833, -0.027450562, -0.021591187, 0.0075187683, 0.010383606, -0.029953003, 0.030914307, 0.08874512, 0.0847168, 0.000107228756, 0.03338623, 0.03414917, 0.0107421875, -0.02355957, -0.00818634, 0.014320374, 0.006412506, -0.030776978, 0.011009216, 0.009483337, -0.024642944, 0.01689148, 0.0004312992, -0.017791748, -0.0016822815, 0.018417358, -0.028137207, 0.047973633, -0.01789856, -0.041900635, 0.031311035, -0.036010742, -0.011222839, -0.0063323975, 0.015701294, -0.009429932, -0.0006637573, 0.01727295, -0.019699097, -0.006134033, 0.022705078, -0.011047363, -0.0077056885, -0.05105591, 0.03149414, 0.03866577, 0.00831604, -0.002735138, -0.009269714, -0.026641846, 0.019195557, -0.017822266, 0.031585693, -0.0209198, -0.021240234, 0.009010315, -0.0073165894, -0.02406311, 0.005001068, 0.021011353, 0.019622803, 0.009819031, 0.032989502, 0.011444092, 0.01083374, 0.024932861, 0.004108429, -0.026306152, 0.02659607, -0.008125305, -0.024093628, 0.058044434, 0.033447266, 0.00033259392, -0.019241333, -0.001709938, 0.016586304, -0.049468994, -0.0032539368, 0.0062065125, -0.006351471, 0.0073165894, 0.029067993, 0.001288414, -0.037872314, -0.004699707, 0.002084732, 0.026504517, -0.018997192, 0.041992188, 0.005115509, 0.002023697, 0.041809082, 0.021713257, 0.040222168, -0.00592041, 0.0014533997, -0.030731201, -0.03286743, 0.013946533, 0.015068054, -0.051330566, -0.01348114, 0.009887695, 0.011474609, -0.00014543533, 0.008216858, 0.0018310547, -0.003660202, -0.010604858, -0.011077881, -0.012176514, 0.020233154, -0.025772095, -0.04711914, -0.0038337708, -0.048431396, 0.004989624, 0.011695862, -0.019180298, 0.0045051575, 0.009941101, 0.027740479, -0.055877686, -0.00415802, 0.00831604, -0.042144775, 0.009986877, -0.029785156, 0.0024471283, 0.0032634735, -0.03274536, -0.056640625, -0.023117065, -0.08074951, -0.046081543, 0.0019378662, -0.06982422, -0.0154800415, 0.08453369, -0.022338867, -0.023788452, -0.03137207, -0.009849548, 0.033477783, 0.03668213, 0.014701843, -0.046813965, -0.037475586, -0.04626465, -0.02418518, 0.01914978, -0.028625488, 0.012382507, 0.0067443848, 0.015182495, 0.022872925, -0.008712769, 0.010528564, 0.018829346, 0.013137817, 0.042144775, 0.060760498, 0.0059013367, -0.01953125, -0.01889038, 0.03289795, -0.054382324, -0.021835327, 0.03302002, 0.019866943, 0.0021152496, 0.012451172, -0.058166504, -0.020263672, -0.07348633, 0.033843994, -0.0074768066, -0.0075950623, 0.016647339, -0.057861328, -0.012283325, -0.054351807, 4.965067e-05, 0.06097412, -0.013717651, 0.003704071, -0.021621704, 0.023880005, 0.009498596, -0.004863739, 0.014823914, -0.010574341, 0.00054883957, 0.001991272, 0.040100098, -0.04107666, 0.01448822, 0.026428223, -0.017593384, 0.0015134811, -0.009887695, -0.002286911, 0.01210022, 0.045837402, -0.006839752, 0.010749817, -0.03189087, 0.0036201477, 0.008834839, 0.017227173, 0.02142334, -0.039245605, 0.053344727, -0.02116394, -0.067993164, -0.031036377, -0.012031555, 0.028717041, -0.0050697327, -0.0040359497, -0.0418396, -0.084350586, 0.0061454773, -0.09094238, 0.0039138794, 0.0068588257, 0.05255127, 0.009284973, 0.022323608, 0.062927246, 0.024124146, 0.044799805, 0.012214661, -0.03842163, -0.039520264, -0.040771484, 0.011695862, 0.0053863525, 0.013572693, -0.03262329, 0.02281189, 0.0028076172, -0.022964478, 0.017944336, -0.011352539, 0.03729248, 0.023666382, -0.0059547424, -0.011886597, 0.004749298, 0.059143066, -0.0112838745, -0.009849548, -0.051879883, -0.04083252, -0.011054993, -0.10546875, 0.12817383, 0.0703125, -0.029190063, 0.09680176, 0.07366943, -0.02217102, 0.034820557, 0.0126571655, -0.018035889, -0.009712219, 0.011711121, -0.056152344, 0.032470703, 0.014312744, -0.0058670044, 0.022598267, 0.006313324, -0.04385376, 0.018447876, -0.01864624, -0.041168213, -0.071899414, 0.0154800415, 0.020828247, -0.020111084, 0.006263733, -0.0690918, -0.0047073364, -0.054779053, 0.054107666, 0.016555786, -0.024414062, -0.034118652, -0.004081726, -0.03326416, -0.0309906, 0.025756836, -0.013801575, -0.012336731, -0.0027389526, 0.043548584, 0.016479492, 0.0146484375, -0.055664062, 0.006965637, -0.018676758, 0.028366089, 0.042175293, -0.008171082, 0.06274414, 0.0051345825, -0.028320312, 0.012519836, -0.0178833, 0.008201599, -0.013298035, -0.050476074, 0.010368347, 0.02218628, 0.00049972534, -0.024124146, -0.006378174, -0.02961731, -0.02772522, -0.011039734, -0.05545044, 0.0011968613, -0.010169983, -0.009231567, -0.08947754, -0.015045166, -3.5107136e-05, -0.02923584, -0.06695557, 0.02935791, -0.000957489, -0.025421143, -0.011581421, 0.007106781, -0.042938232, 0.010688782, -0.041870117, -0.006843567, 0.04901123, 0.016860962, 0.064575195, -0.03741455, 0.0049057007, -0.028656006, 0.06555176, -0.015945435, 0.005306244, -0.034942627, -0.027130127, -0.040374756, 0.038757324, 0.04107666, -0.018005371, 0.03967285, -0.0028419495, -0.06585693, -0.056365967, 0.019638062, 0.028076172, -0.020767212, -0.03375244, -0.002521515, 0.062683105, -0.010612488, -0.0006303787, 0.0036125183, 0.018218994, 0.04385376, -0.025741577, -0.08117676, -0.025680542, 0.0043563843, -0.027893066, 0.027496338, -0.0068969727, -0.019607544, 0.005760193, 0.061309814, 0.025009155, -0.027313232, 0.0002361536, 0.008491516, 0.0033912659, 0.03878784, -0.05126953, 0.012779236, -0.039398193, -0.0016489029, -0.06304932, 0.06982422, 0.0552063, -0.034179688, -0.009796143, 0.019439697, -0.039855957, -0.05303955, -0.009269714, 0.018096924, 0.0020008087, -0.032409668, -0.039154053, 0.019546509, -0.045410156, 0.004890442, 0.00699234, -0.0041046143, 0.026748657, -0.009277344, -0.009613037, -0.038482666, -0.02810669, 0.025970459, 0.020980835, 0.0026626587, -0.03137207, -0.0058631897, -0.0008883476, -0.010810852, -0.00944519, -0.00894928, -0.011703491, -0.0075531006, -0.0103302, -0.006175995, -0.024719238, -0.02230835, 0.028671265, -0.026473999, -0.0060768127, 0.00819397, 0.018127441, -0.011581421, -0.02696228, 0.047180176, -0.010017395, -0.0018911362, -0.007965088, -0.021362305, -0.017990112, 0.026809692, -0.04071045, 0.041381836, 0.0115356445, -0.08074951, 0.028701782, -0.0023384094, 0.028076172, -0.048828125, 0.06274414, -0.0013532639, 0.0078048706, -0.08721924, -0.0011663437, 0.0049934387, 0.008636475, 0.014526367, -0.029067993, 0.055847168, -0.0262146, -0.042510986, 0.0077438354, 0.044891357, -0.017242432, 0.023971558, 0.013877869, 0.006542206, -0.042114258, 0.0019721985, -0.023239136, 0.0087509155, -0.008331299, -0.009178162, 0.029922485, 0.007019043, -0.02192688, -0.019378662, -0.0037784576, 0.0021533966, -0.055633545, 0.025283813, -0.021072388, -0.0051841736, 0.011413574, 0.02243042, 0.006137848, 0.013702393, -0.022720337, -0.046051025, -0.0569458, 0.021194458, -0.031341553, 0.020050049, -0.033325195, 0.0067100525, 0.021652222, -0.024780273, 0.014259338, -0.013427734, -0.04800415, -0.028549194, -0.008712769, 0.0027217865, 0.020996094, -0.03152466, 0.0637207, -0.030593872, -0.02961731, -0.08874512, 0.050872803, 0.0033493042, -0.011894226, 0.095703125, 0.075805664, 0.005382538, 0.025161743, -0.023406982, -0.03314209, 0.0025501251, 0.0009965897, -0.105041504, -0.0026817322, -0.023391724, 0.009346008, -0.006542206, 0.009666443, 5.853176e-05, 0.03704834, -0.001455307, -0.02229309, -0.03186035, -0.0041542053, -0.011802673, -0.02532959, 0.007381439, 0.0009126663, -0.010848999, -0.011253357, -0.012512207, -0.017089844, 0.01600647, 0.022583008, 0.038909912, 0.017028809, -0.016235352, 0.012084961, 0.026046753, -0.034179688, 0.0602417, 0.0046577454, -0.0013380051, -0.012168884, 0.017913818, -0.012390137, 0.04046631, -0.023468018, 0.0041770935, -0.010719299, 0.0060768127, 0.01171875, 0.02079773, -0.023086548, -0.015823364, 0.02708435, 0.024765015, 0.007369995, 0.009086609, 0.036071777, 0.01576233, -0.040374756, -0.0038795471, 0.021224976, -0.021987915, -0.037628174, -0.036224365, -0.05126953, -0.010017395, -0.008911133, 0.059814453, 0.0062675476, -0.028533936, -0.008163452, -0.008255005, 0.009628296, -0.01348114, 0.0209198, -0.024871826, -0.00466156, -0.013092041, 0.0012779236, 0.006286621, 0.006324768, -0.015289307, -0.013847351, 0.020263672, 0.0012369156, 0.010269165, -0.028182983, 0.019088745, 0.018829346, -0.04675293, -0.014213562, -0.027572632, 0.0030975342, -0.03048706, -0.094177246, -0.036956787, -0.039520264, 0.02015686, 0.008857727, 0.052490234, 0.011238098, 0.025009155, -0.024383545, -0.008865356, -0.02458191, -0.03237915, 0.009056091, -0.0033740997, 0.0020141602, 0.011566162, -0.030929565, 0.020904541, 0.033050537, 0.016540527, 0.015655518, -0.020004272, 0.03463745, -0.010368347, 0.0032577515, -0.02116394, -0.028060913, 0.028503418, 0.01586914, -0.008705139, 0.02407837, 0.012504578, -0.015571594, 0.03274536, -0.019897461, 0.023376465, -0.0022888184, 0.043548584, 0.03186035, 0.02104187, -0.064208984, -0.028656006, 0.00092840195, -0.015029907, -0.0035877228, 0.023757935, 0.018753052, -0.0017843246, 0.022491455, 0.055145264, 0.059661865, 0.0021858215, 0.033966064, 0.016845703, -0.02758789, 0.010551453, -0.021438599, -0.0016975403, 0.010871887, 0.0099105835, 0.012619019, 0.033355713, 0.029571533, 0.0234375, 0.026947021, -0.020828247, -0.027511597, 0.001917839, 0.033355713, -0.037200928, 0.0034389496, -0.052856445, 0.034576416, -0.032958984, -0.061645508, -0.04348755, 0.010047913, -0.05621338, 0.019439697, 0.013870239, -0.028518677, 0.008163452, -0.019348145, 0.0018758774, -0.06506348, 0.022109985, -0.032348633, 0.025436401, -0.0005302429, 0.05142212, -0.03543091, -0.06964111, -0.024459839, 0.054992676, -0.07940674, -0.03186035, -0.044677734, 0.030822754, 0.01109314, -0.0016527176, 0.030410767, 0.03878784, 0.0098724365, 0.0030384064, -0.0064811707, -0.023742676, -0.021835327, 0.0496521, -2.104044e-05, -0.039123535, -0.014076233, 0.028457642, 0.021133423, 0.03555298, 0.04525757, 0.0046463013, -0.031951904, -0.008140564, -0.037719727, 0.01676941, -0.015068054, -0.020935059, 0.019897461, -0.019927979, -0.051727295, 0.01071167, 0.031982422, 0.044921875, 0.036071777, 0.0051116943, 0.030532837, -0.015823364, -0.058288574, -0.049804688, -0.025924683, 0.029586792, 0.03878784, -0.018554688, 0.051330566, 0.029251099, -0.045074463, 0.03692627, 0.02305603, 0.011383057, 0.009681702, -0.0011119843, 0.009521484, 6.765127e-05, -0.01739502, 0.011001587, -0.019622803, -0.03488159, 0.016921997, 0.01979065, -0.023773193, 0.0010900497, -0.030014038, 0.011772156, 0.0038757324, -0.036468506, -0.010482788, -0.027755737, -0.013519287, 0.025390625, -0.012199402, 0.024978638, -0.019302368, -0.036865234, -0.013267517, 0.02758789, 0.017166138, 0.020568848, -0.046569824, 0.06982422, 0.004119873, 0.047424316, -0.016830444, -0.07293701, -0.038482666, 0.027694702, 0.012886047, -0.0027370453, 0.060180664, -0.026260376, 0.007522583, 0.041503906, -0.0070877075, -0.021621704, -0.0014352798, 0.04675293, 0.032562256, 0.00073575974]}, "B07P8RTTWP": {"id": "B07P8RTTWP", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black\nDescription: \nFeatures: 443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether.\n39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push.\nSide burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience.\nGlossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look.\nGrease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.\n", "metadata": {"Name": "Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black", "Brand": "Royal Gourmet", "Description": "", "Features": "443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether.\n39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push.\nSide burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience.\nGlossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look.\nGrease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0016813278, 0.017974854, -0.049102783, -0.032958984, -0.0010566711, -0.0026340485, -0.054779053, -0.0074920654, -0.06585693, 0.008033752, -0.041168213, 0.03677368, -0.01991272, -0.0005865097, 0.037353516, -0.055023193, 0.038513184, -0.009643555, 0.0027637482, -0.003610611, -0.0039978027, 0.026306152, -0.027633667, 0.0703125, 0.039611816, -0.06137085, -0.002281189, 0.025054932, 0.03262329, 0.017181396, 0.032073975, -0.019714355, 0.05493164, -0.013435364, -0.048736572, -0.04574585, -0.012710571, -0.031799316, -0.04937744, 0.02267456, 0.0259552, -0.0146484375, -0.04336548, -0.0028305054, -0.044281006, -0.013038635, 0.0050354004, -0.0013608932, 0.02848816, 0.026794434, -0.009269714, 0.007095337, -0.014984131, -0.01725769, -0.021392822, -0.024993896, 0.006351471, 0.02758789, 0.0051994324, -0.05419922, -0.03237915, 0.0096206665, 0.029190063, 0.049835205, -0.05441284, 0.052215576, 0.09033203, -0.035369873, 0.052856445, -0.07751465, -0.044525146, 0.04989624, 0.03161621, -0.0079574585, -0.05001831, -0.0211792, 0.012641907, -0.021697998, 0.03869629, -0.056793213, 0.020065308, -0.0073661804, 0.026885986, 0.012924194, -0.02279663, -0.010826111, -0.006336212, -0.017318726, -0.003358841, -0.0435791, -0.006210327, -0.032409668, -0.03152466, 0.019500732, 0.002565384, -0.03466797, -0.04852295, -0.09698486, 0.052612305, 0.0016546249, 0.054351807, -0.03753662, 0.021377563, 0.0289917, -0.020645142, 0.093933105, 0.01902771, 0.048736572, -0.0070152283, -0.0064697266, 0.02798462, -0.029586792, 0.0047454834, -0.017028809, -0.030258179, 0.006542206, 0.0023021698, 0.0007019043, 0.02180481, -0.00018751621, -0.027542114, 0.0028438568, -0.0023956299, 0.0473938, 0.0017490387, 0.01600647, 0.010345459, -0.009109497, -0.047851562, 0.037353516, -0.04522705, 0.020843506, 0.09094238, 0.021102905, -0.01638794, -0.037139893, 0.02961731, -0.0054779053, 0.029159546, -0.02494812, 0.006954193, -0.007637024, 0.01737976, 0.0043563843, -0.03564453, 0.03756714, 0.020065308, -0.018692017, -0.02709961, -0.05279541, -0.012275696, -0.038146973, 0.023025513, 0.0032215118, -0.0552063, 0.0020484924, -0.0071372986, -0.008407593, -0.018981934, -0.03326416, -0.07940674, -0.028686523, 0.018127441, -0.032104492, -0.06878662, 0.07269287, 0.03463745, -0.0030269623, 0.022827148, 0.05758667, -0.0050621033, -0.023773193, -0.012130737, 0.038269043, -0.0007314682, 0.028457642, 0.028884888, 0.008132935, 0.050720215, -0.057281494, -0.055633545, -0.038848877, 0.1015625, -0.047607422, -0.016723633, -0.015556335, 0.0031700134, 0.016296387, 0.027374268, 0.022567749, -0.009353638, 0.0013809204, 0.00016152859, 0.0068359375, 0.04272461, 0.0013017654, -0.014533997, 0.020339966, 0.0013027191, -0.07080078, -0.01977539, -0.007472992, 0.010322571, 0.030151367, 0.04309082, -0.0066184998, 0.011184692, -0.006385803, -0.00018787384, 0.013198853, -0.0036640167, -0.005290985, -0.014877319, -0.0062675476, -0.034606934, -0.056884766, -0.03918457, 0.004737854, 0.010925293, 0.011985779, 0.031433105, 0.008995056, 0.03817749, 0.001791954, 0.03869629, -0.00730896, -0.020889282, -0.012954712, 0.031066895, 0.0072364807, -0.039001465, 0.02507019, 0.0758667, 0.05859375, 0.010360718, 0.059265137, 0.08929443, 0.059753418, -0.040496826, -0.04928589, 0.009567261, -0.025558472, -0.050109863, 0.0016374588, 0.011489868, -0.02508545, -0.008460999, 0.009025574, -0.008293152, -0.020477295, 0.046844482, -0.039215088, 0.035461426, 0.029327393, -0.011024475, 0.01335907, -0.016159058, 0.017364502, -0.015686035, -0.006286621, 0.0023441315, 0.05340576, 0.008857727, 0.015548706, 0.008804321, 0.015449524, 0.016281128, 0.015060425, -0.046081543, -0.00086832047, 0.034332275, 0.0574646, -0.011543274, -0.011352539, -0.015014648, -0.0070343018, -0.016601562, 0.034973145, -0.024475098, -0.029754639, -0.00075626373, -0.009590149, -0.049957275, -0.011810303, 0.04660034, 0.022003174, -0.017410278, -0.01953125, -0.0043029785, 0.0019321442, 0.034484863, -0.0002541542, 0.0055122375, -0.009475708, -0.007820129, -0.032409668, 0.080444336, 0.01789856, 0.009529114, -0.010246277, -0.00069999695, 0.017990112, -0.035491943, -0.0012722015, -0.008422852, 0.005886078, -0.030426025, 0.025146484, -0.0009803772, -0.04257202, -0.009056091, 0.0047912598, 0.029327393, -0.06365967, 0.056152344, 0.011657715, 0.0038928986, 0.03555298, 0.0038032532, 0.026138306, -0.012504578, 0.010437012, -0.061553955, -0.027542114, 0.0074272156, 0.035125732, -0.060913086, -0.017608643, -0.005844116, -0.00062179565, 0.007293701, -0.01739502, -0.0037078857, 0.01210022, 0.008125305, -0.0026073456, 0.0058631897, -0.017959595, -0.008262634, -0.046325684, -0.0041503906, -0.042541504, 0.00087833405, -0.02557373, -0.031066895, 0.0017986298, -0.028869629, 0.009483337, -0.025375366, -0.021865845, 0.0018138885, -0.0069503784, 0.018478394, -0.01928711, -0.0024051666, -0.009048462, -0.018844604, -0.05307007, -0.039276123, -0.08685303, -0.037017822, -0.00995636, -0.060760498, -0.01852417, 0.09454346, -0.017150879, -0.054138184, -0.021820068, -0.02809143, -0.01058197, 0.024810791, -0.0231781, -0.062347412, -0.029327393, -0.044281006, 0.007671356, 0.012626648, -0.047332764, 0.039611816, 0.006690979, 0.00056266785, 0.025650024, -0.017913818, -0.01586914, 0.034454346, 0.03475952, 0.03479004, 0.04043579, 0.006198883, -0.02192688, 0.00091695786, 0.021087646, -0.034606934, -0.0024261475, -0.018295288, -0.006538391, 0.020828247, -0.0009899139, -0.024551392, 0.0014724731, -0.034942627, -0.0014772415, 0.003025055, -0.030273438, -0.013725281, -0.041107178, -0.033203125, -0.02482605, 0.0033607483, 0.011650085, -0.0013570786, 0.029342651, -0.016647339, 0.033477783, 0.003255844, -0.019714355, -0.020553589, 0.0024166107, -0.0054512024, -0.003211975, 0.017074585, -0.02017212, -0.0044784546, 0.009437561, -0.041992188, 0.017913818, -0.014282227, 0.029571533, -0.019699097, 0.034240723, -0.005317688, -0.001285553, -0.03387451, -0.006427765, 0.0027122498, 0.013626099, 0.023910522, -0.019226074, 0.049346924, -0.029037476, -0.035308838, -0.004119873, 0.002319336, 0.018051147, 0.02178955, -0.03463745, -0.0040245056, -0.040618896, -0.03778076, -0.03970337, 0.0029907227, 0.01802063, 0.037475586, 0.035064697, 0.029159546, 0.037261963, -0.038757324, 0.052642822, 0.05987549, -0.068481445, -0.048339844, -0.07385254, 0.035186768, 0.04437256, 0.028259277, -0.037078857, 0.027236938, 0.019104004, -0.011955261, 0.0158844, 0.008338928, -0.004722595, 0.008422852, -0.035339355, 0.004928589, -0.03225708, 0.019088745, 0.00894165, -0.0038261414, -0.048065186, -0.044311523, 0.006000519, -0.032684326, 0.087524414, 0.05038452, -0.016784668, 0.07775879, 0.053131104, -0.01676941, 0.030715942, 0.02619934, 0.0009226799, 0.008666992, 0.015777588, -0.03265381, -0.004486084, 0.015640259, -0.053649902, 0.03201294, 0.027404785, -0.0345459, 0.00598526, -0.015556335, -0.051483154, -0.058776855, 0.012611389, 0.053894043, -7.2062016e-05, 0.0020008087, -0.038848877, 0.011474609, -0.04852295, 0.01737976, 0.0050086975, -0.023086548, -0.00046110153, -0.019241333, -0.010314941, -0.027938843, 0.0043296814, 0.01197052, 0.025970459, -0.0012617111, 0.028564453, 0.004219055, 0.0033779144, -0.018981934, 0.018096924, -0.021820068, 0.0099487305, 0.03604126, -0.0065193176, 0.043945312, 0.029464722, -0.027008057, 0.039245605, -0.0061569214, 0.02760315, -0.01007843, -0.029907227, -0.018310547, 0.01701355, 0.044952393, -0.01777649, 0.016204834, -0.07366943, -0.014518738, -0.029815674, -0.052368164, -0.013824463, -0.0047721863, -0.016433716, -0.12005615, -0.033447266, 0.002412796, -0.027618408, -0.029556274, 0.015594482, -0.053344727, -0.0154800415, -0.027328491, 0.0060691833, -0.02760315, 0.0047073364, -0.04019165, 0.012359619, 0.03213501, 0.02130127, 0.014083862, -0.033294678, -0.001537323, -0.016799927, 0.107421875, 0.00096845627, 0.022201538, -0.0362854, -0.030685425, -0.016357422, 0.01626587, 0.03164673, 0.0025806427, 0.01689148, -0.036376953, -0.061065674, -0.014183044, -0.019226074, 0.020492554, -0.032165527, -0.027923584, -0.026901245, 0.046417236, -0.007850647, 0.014076233, -0.028411865, 0.0093688965, -0.0031795502, -0.033081055, -0.046539307, -0.007987976, 0.0019168854, -0.021484375, 0.012954712, -0.012161255, -0.027252197, 0.04815674, 0.06488037, 0.048065186, -0.02268982, 0.005367279, -0.00491333, 0.0018110275, -0.014854431, -0.03265381, 0.04156494, -0.046875, 0.0060272217, -0.06518555, 0.06555176, 0.03765869, 0.0113220215, 0.013168335, -0.0069122314, -0.0058784485, -0.064697266, -0.005645752, 0.009719849, -0.0038986206, -0.043182373, -0.042999268, 0.027923584, -0.064453125, 0.012374878, 0.0038280487, -0.026519775, 0.0009460449, -0.01802063, 0.021881104, -0.027999878, 0.018035889, 0.035247803, -0.00033211708, 0.01763916, -0.010978699, 0.0012540817, 0.010307312, -0.028869629, -0.014122009, -0.012237549, -0.020126343, -0.014205933, 0.026412964, 0.024993896, -0.013435364, 0.001159668, 0.0209198, 0.0016536713, -0.027374268, 0.033416748, 0.005580902, 0.029556274, -0.026275635, 0.05529785, -0.023925781, 0.020690918, -0.00712204, -0.038848877, -0.027526855, 0.0395813, -0.0713501, 0.062927246, 0.029663086, -0.08807373, 0.058135986, -0.016342163, 0.022216797, -0.03137207, 0.048736572, -0.003578186, 0.026321411, -0.083984375, 0.01713562, -0.0034694672, -0.018112183, 0.041168213, -0.04559326, 0.015808105, -0.06604004, -0.0011730194, -0.0022468567, 0.061798096, -0.032806396, 0.018218994, 0.022720337, 0.035308838, -0.029632568, -0.0045051575, -0.018798828, -0.03149414, -0.03515625, -0.0012245178, 0.023269653, -0.013069153, 0.0072669983, -0.04510498, 0.018005371, -0.019714355, -0.047698975, -0.004333496, 0.027053833, 0.017990112, 0.0068740845, 0.009109497, 0.017700195, 0.013282776, -0.033416748, -0.028778076, -0.040527344, 0.019332886, -0.035980225, 0.03756714, -0.022338867, 0.03213501, 0.017593384, -0.057525635, 0.0017709732, 0.008911133, -0.044708252, -0.0049324036, 0.014389038, 0.014419556, 0.0023822784, 0.031036377, 0.06390381, -0.02798462, -0.031829834, -0.051635742, 0.035095215, 0.016189575, 0.0022697449, 0.0993042, 0.016571045, 0.0036258698, 0.028625488, 0.000726223, -0.0395813, -0.028808594, -0.0011472702, -0.06781006, -0.014808655, -0.03555298, 0.030639648, -0.019683838, 0.013031006, 0.010314941, 0.045440674, 0.025466919, -0.01687622, -0.04043579, -0.003211975, -0.0059013367, -0.021713257, 0.013397217, -0.0042495728, -0.010536194, -0.01259613, -0.016952515, -0.059509277, -0.013450623, 0.0020599365, 0.04421997, 0.020202637, -0.016738892, 0.0082092285, 0.050323486, -0.042755127, 0.057678223, -0.004825592, -0.0030612946, -0.0006327629, 0.021911621, 0.0016641617, 0.009521484, -0.015342712, 0.0031223297, -0.019882202, 0.005584717, 0.03439331, 0.019042969, -0.01940918, 0.016021729, 0.03768921, 0.016998291, 0.016723633, 0.025253296, 0.03414917, -0.032409668, -0.06036377, 0.012252808, -0.009109497, -0.05319214, -0.037109375, 0.015533447, -0.07019043, 0.009315491, -0.026123047, 0.020751953, 0.0016422272, 0.008712769, 0.015197754, -0.02558899, 0.02633667, -0.014656067, 0.021636963, -0.008460999, -0.014137268, 0.0137786865, -0.025482178, -0.017913818, 0.008613586, -0.01398468, -0.012428284, 0.036132812, 0.01737976, -0.009086609, -0.035369873, 0.020980835, 0.014480591, -0.07519531, 0.02041626, 0.01651001, -0.0031147003, 0.0077705383, -0.067993164, -0.050231934, 0.005432129, 0.03387451, -0.031311035, 0.061431885, 0.00054597855, 0.00077342987, -0.008995056, -0.018417358, 0.0023593903, -0.004676819, -0.037353516, -0.0025691986, 0.016494751, 0.004814148, -0.04864502, -0.008636475, 0.03552246, -0.02319336, -0.008834839, 0.0071792603, 0.028625488, -0.012710571, 0.031280518, -0.010681152, -0.034362793, 0.023422241, 0.009315491, 0.007156372, 0.040771484, 0.019683838, 0.014915466, 0.05328369, -0.01739502, 0.024139404, -0.029220581, 0.05380249, 0.045318604, 0.04031372, -0.05758667, -0.03451538, -0.012252808, 0.027191162, -0.0041160583, 0.032409668, 0.038970947, 0.012229919, 0.01826477, 0.04562378, 0.054504395, -0.013183594, 0.026611328, 0.024230957, -0.031585693, -0.0015220642, 0.02758789, -0.012306213, 0.012107849, 0.0006599426, 0.009712219, 0.026626587, 0.006580353, -0.035369873, 0.026763916, 0.00035095215, -0.002855301, -0.041290283, 0.027053833, -0.00058317184, 0.039916992, -0.034301758, 0.017837524, -0.015319824, -0.007797241, -0.011329651, 0.0071029663, -0.022994995, 0.020935059, 0.034423828, -0.006828308, 0.024932861, -0.021636963, 0.020202637, -0.047790527, 0.011230469, 0.0054740906, 0.032989502, 0.029312134, 0.044647217, -0.0033187866, -0.09802246, -0.055786133, 0.06323242, -0.070007324, -0.03265381, -0.0234375, 0.02758789, 0.018554688, 0.006717682, 0.03869629, 0.04260254, 0.021514893, 0.008613586, -0.031555176, -0.004447937, 0.0005631447, 0.0037879944, -0.02130127, -0.020355225, -0.021759033, 0.025665283, 0.0110321045, 0.020095825, 0.028274536, -0.0005970001, -0.06008911, -0.0070877075, -0.032348633, 0.010719299, -0.028213501, 0.025634766, -0.026626587, -0.0064735413, -0.050720215, 0.011672974, -0.0079422, 0.018325806, 0.0231781, 0.015365601, 0.028289795, 0.0016727448, -0.050201416, -0.034301758, -0.014465332, 0.028427124, 0.028121948, 0.058166504, 0.024169922, 0.014030457, -0.026229858, 0.024765015, -0.01626587, -0.060272217, 0.020706177, -0.03652954, 0.024780273, 0.0036754608, -0.037994385, 0.027267456, -0.018051147, -0.0090408325, 0.024856567, 0.018798828, -0.024902344, -0.015686035, -0.025558472, 0.010955811, -0.008270264, -0.036895752, -0.016616821, -0.015220642, -0.002401352, 0.035003662, 0.0003502369, 0.029663086, -0.024749756, -0.014915466, -0.024551392, 0.022109985, 0.022583008, 0.015235901, -0.030349731, 0.013824463, 0.013969421, -0.0036087036, -0.034698486, -0.07720947, -0.031585693, 0.018844604, 0.01638794, 0.008262634, 0.0579834, -0.02822876, 0.019348145, 0.011871338, 0.0005092621, -0.018295288, 0.014961243, 0.030807495, 0.007686615, 0.022720337]}, "B08XTGT9J1": {"id": "B08XTGT9J1", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver\nDescription: \nFeatures: Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time.\nHigh Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat.\nSear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces.\nHassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\nDurable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.\n", "metadata": {"Name": "Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver", "Brand": "Royal Gourmet", "Description": "", "Features": "Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time.\nHigh Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat.\nSear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces.\nHassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\nDurable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009788513, 0.025009155, -0.05041504, -0.027801514, 0.028335571, -0.008323669, -0.027389526, 0.0071754456, -0.08496094, -0.0015153885, -0.008003235, 0.039794922, -0.025665283, -0.032592773, 0.07513428, -0.04840088, 0.021194458, 0.014785767, 0.0023975372, -0.020431519, -0.0058555603, -0.005065918, -0.02168274, 0.045074463, 0.043792725, -0.021270752, -0.03817749, -0.0022411346, 0.021331787, 0.009460449, 0.033172607, -0.011894226, 0.045898438, -0.007949829, -0.036499023, -0.032562256, -0.0013217926, -0.031677246, -0.033294678, 0.017166138, 0.0063476562, 0.007598877, -0.043884277, 0.005458832, -0.05682373, -0.008331299, -0.019638062, 0.0010595322, 0.046020508, -0.0155181885, -0.01171875, 0.0041122437, -0.0034370422, -0.020599365, -0.043640137, -0.022842407, 0.01651001, 0.0043411255, 0.015808105, -0.059692383, -0.031143188, -0.00019085407, 0.04333496, 0.04449463, -0.04574585, 0.02418518, 0.08496094, -0.012718201, 0.010749817, -0.06439209, -0.018600464, 0.033172607, 0.0340271, -0.019012451, -0.021194458, -0.025390625, 0.026687622, -0.015960693, 0.01550293, -0.030166626, 0.019332886, -0.0067825317, 0.0181427, 0.0115356445, -0.013771057, 0.010406494, -0.0112838745, -0.034729004, -0.0058403015, -0.037475586, -0.009567261, -0.055419922, -0.026428223, 0.023880005, 0.0129852295, -0.03540039, -0.07702637, -0.08276367, 0.036499023, -0.012565613, 0.053253174, -0.026885986, 0.001709938, 0.017059326, -0.03353882, 0.1071167, 0.034179688, 0.071777344, -0.017410278, -0.00630188, 0.019744873, -0.0597229, 0.012741089, -0.017944336, -0.019958496, 0.01852417, 0.0010299683, 0.007358551, 0.006866455, -0.008712769, -0.018051147, 0.02079773, -0.030853271, 0.04208374, 0.014945984, 0.013298035, 0.018157959, 0.0014305115, -0.045898438, 0.060302734, -0.044708252, 0.00315094, 0.072143555, 0.022888184, -0.016067505, -0.04498291, 0.020446777, 0.006046295, 0.019836426, -0.017227173, 0.0021400452, -0.0060539246, 0.015319824, -0.0029525757, -0.030548096, 0.022155762, 0.023117065, -0.0033798218, -0.031463623, -0.058441162, -0.0012607574, -0.005493164, 0.052124023, -0.0054359436, -0.07763672, -0.022033691, -0.022872925, -0.01979065, -0.015289307, -0.049041748, -0.035003662, -0.017623901, 0.00061511993, -0.016845703, -0.062561035, 0.057006836, 0.023635864, -0.0028877258, 0.016479492, 0.03970337, -0.0016860962, -0.00970459, 0.0005941391, 0.015274048, -0.011260986, 0.0012712479, 0.031463623, 0.01448822, 0.044311523, -0.08026123, -0.06762695, -0.050689697, 0.08520508, -0.039916992, -0.012825012, -0.026290894, -0.015022278, -0.0032157898, 0.05923462, 0.0209198, -0.036895752, -0.024169922, -0.0028648376, -0.012687683, 0.024230957, 0.009727478, -0.031341553, 0.016021729, -0.012916565, -0.034729004, -0.03189087, 0.019104004, -0.0006389618, 0.025054932, 0.023468018, -0.008590698, 0.010612488, 0.02017212, 0.0061798096, 0.023223877, 0.006629944, 0.013031006, -0.020309448, -0.0037174225, -0.026412964, -0.042144775, -0.02355957, 0.026016235, -0.00032758713, 0.025039673, 0.0066108704, -0.0011339188, 0.02128601, 0.012969971, 0.029541016, -0.00093221664, -0.028320312, -0.005962372, 0.006664276, 0.009986877, -0.03555298, 0.027435303, 0.09436035, 0.041992188, 0.009498596, 0.06567383, 0.08618164, 0.03225708, -0.047790527, -0.0357666, 0.0059547424, -0.0087890625, -0.06341553, 0.0032901764, 0.012001038, -0.037322998, -0.017623901, 0.025177002, -0.0063095093, 0.0037708282, 0.02420044, -0.021575928, 0.02255249, 0.010803223, -0.014190674, 0.017562866, 0.0039978027, 0.040496826, -0.027633667, 0.00068616867, -0.01008606, 0.05102539, 0.010826111, 0.012046814, 0.03527832, 0.002029419, 0.0039634705, 0.008766174, -0.05065918, 0.015052795, 0.038482666, 0.022781372, 0.007987976, -0.008033752, -0.024398804, -0.021133423, -0.016143799, 0.02848816, -0.0044288635, -0.033477783, 0.0046691895, 0.0065231323, -0.03286743, -0.008361816, 0.03933716, 0.034484863, -0.012458801, -0.0055656433, 0.015090942, -0.006198883, 0.017242432, 0.012184143, -0.006790161, 0.008926392, 0.0069236755, -0.028747559, 0.08654785, 0.012504578, 0.005592346, -0.0071144104, -0.0052948, 0.012573242, -0.03201294, -0.007030487, 0.0023097992, 0.012329102, -0.021820068, 0.0418396, 0.010772705, -0.047851562, -0.0050201416, 0.010185242, 0.033996582, -0.019424438, 0.055541992, 0.006866455, 0.024490356, 0.0524292, 0.032470703, 0.02558899, -0.0005583763, 0.032196045, -0.053833008, -0.01914978, 0.014785767, 0.026992798, -0.05731201, -0.02696228, -0.013023376, 0.018859863, 0.00087213516, -0.013648987, -0.01727295, 0.025634766, 0.01109314, 0.020019531, 0.00605011, 0.00793457, -0.011810303, -0.047180176, 0.009346008, -0.04776001, -0.011306763, -0.0054130554, -0.038269043, -0.008720398, 0.011947632, -0.0050582886, -0.020370483, -0.0031700134, 0.0069351196, -0.0014505386, -0.00077581406, -0.024719238, 0.0021953583, -0.010147095, -0.021850586, -0.0546875, -0.017562866, -0.08917236, -0.024230957, -0.033935547, -0.06890869, -0.01776123, 0.06185913, 0.013801575, -0.059906006, -0.00818634, -0.019683838, -0.0026721954, 0.021316528, -0.007965088, -0.049926758, -0.037139893, -0.03540039, -0.0052833557, 0.029922485, -0.028625488, 0.03387451, 0.021591187, 0.027832031, 0.0335083, -0.018829346, -0.018859863, 0.0206604, 0.03515625, 0.055145264, 0.041870117, 0.015670776, -0.019851685, -0.009101868, 0.022247314, -0.024337769, -0.020843506, -0.023910522, 0.00070524216, -0.014884949, 0.0051116943, -0.006416321, 0.00932312, -0.07409668, 0.049224854, 0.0060157776, -0.022964478, -0.009010315, -0.040374756, -0.043060303, -0.041229248, 0.008651733, 0.0018825531, -0.0014266968, 0.025115967, -0.02142334, 0.031799316, -0.0044059753, -0.032287598, 0.014465332, -0.011352539, 0.024719238, -0.013557434, 0.033050537, -0.04055786, -0.00274086, 0.008682251, -0.035858154, 0.017028809, -0.014762878, 0.023422241, -0.005455017, 0.053344727, 0.0061531067, -0.007972717, -0.01651001, 0.022872925, -0.021499634, 0.0041656494, 0.013282776, -0.029586792, 0.060638428, -0.04888916, -0.04727173, -0.00094127655, 0.0019569397, 0.0069084167, 0.0055770874, -0.032226562, 0.015419006, -0.057525635, -0.008552551, -0.047821045, 0.016784668, 0.00013184547, 0.058258057, 0.037353516, 0.017623901, 0.06439209, -0.0079956055, 0.031311035, 0.04196167, -0.037475586, -0.025161743, -0.03805542, 0.028259277, 0.007160187, 0.055725098, -0.047332764, -0.0022621155, 0.008430481, -0.026794434, 0.02758789, 0.014083862, -0.0057029724, 0.021224976, -0.001127243, -0.02331543, -0.005355835, 0.018127441, 0.007587433, -0.01689148, -0.031433105, -0.0395813, -0.0013580322, -0.074645996, 0.1105957, 0.050872803, -0.01852417, 0.085876465, 0.06359863, -0.0057373047, 0.028396606, 0.005428314, 0.011482239, -0.019607544, 0.06072998, -0.014465332, -0.017852783, 0.022964478, -0.04977417, 0.021026611, 0.02557373, -0.056793213, 0.012016296, -0.025802612, -0.061676025, -0.021377563, 0.027511597, 0.0006890297, 0.0065956116, -0.011924744, -0.034729004, -0.0103302, -0.046661377, 0.031921387, 0.020019531, -0.023162842, 0.0037593842, -9.995699e-05, 0.010032654, -0.019500732, -0.011566162, 0.023361206, 0.015792847, 0.004924774, 0.026351929, -0.014419556, 0.033233643, -0.03515625, 0.01713562, -0.014190674, 0.010757446, 0.0066108704, 0.013290405, 0.033599854, 0.018066406, -0.009742737, 0.004058838, -0.0077171326, 0.01524353, -0.018951416, -0.037322998, -0.013717651, 0.02357483, 0.027893066, -0.019378662, 0.018829346, -0.08453369, -0.012634277, -0.024597168, -0.05456543, -0.0027122498, -0.006690979, -0.02897644, -0.07775879, -0.024841309, 0.012054443, -0.038909912, -0.028823853, 0.004558563, -0.03353882, -0.01953125, -0.045196533, -0.01423645, -0.030395508, 0.025177002, -0.05493164, 0.00541687, 0.0680542, 0.053619385, 0.033935547, -0.050720215, -0.010238647, -0.0335083, 0.11035156, 0.011497498, 0.02947998, -0.028686523, -0.042114258, -0.01802063, 0.003900528, 0.032226562, -0.0024375916, 0.011680603, -0.026824951, -0.06011963, -0.030792236, -0.016479492, 0.03652954, -0.035583496, -0.030685425, -0.012489319, 0.051727295, -0.013092041, 0.017791748, -0.033721924, 0.010726929, -0.027923584, -0.005706787, -0.016952515, 0.020385742, 0.011131287, 0.0045776367, 0.015731812, -0.010955811, -0.01600647, 0.026046753, 0.030654907, 0.06677246, -0.023040771, -0.0055274963, -0.017562866, 0.014717102, -0.030807495, -0.009483337, 0.03564453, -0.028884888, -0.015022278, -0.09741211, 0.0703125, 0.074523926, 0.0030670166, 0.019165039, 0.0063667297, -0.011299133, -0.03161621, -0.0066375732, -0.023468018, 0.0037498474, -0.073913574, -0.042755127, 0.04510498, -0.06011963, 0.038024902, -0.019424438, -0.01889038, 0.0023269653, -0.0031204224, 0.02255249, -0.0057868958, 0.029556274, 0.0076675415, 0.018707275, 0.022476196, -0.006439209, -0.01802063, -0.0037517548, -0.026885986, -0.01940918, -0.008598328, -0.033996582, -0.034179688, -0.0047073364, 0.008918762, -0.028625488, 0.025619507, 0.033966064, -0.019882202, -0.0027217865, 0.032592773, -0.004535675, 0.008033752, -0.036621094, 0.01008606, -0.022033691, -0.028884888, 0.017501831, -0.0012836456, -0.02998352, 0.030883789, -0.043914795, 0.055664062, 0.017532349, -0.082092285, 0.06304932, -0.0021152496, 0.008415222, -0.040161133, 0.0713501, -0.011161804, 0.031097412, -0.089538574, 0.007980347, -0.011039734, 0.009056091, 0.0054740906, -0.0340271, 0.026611328, -0.07342529, -0.017593384, 0.0026569366, 0.06896973, -0.020111084, 0.02748108, 0.026107788, 0.015640259, -0.044708252, 0.0059280396, -0.016586304, -0.020706177, -0.052215576, -0.009307861, 0.033233643, -0.008117676, -0.01448822, -0.050811768, 0.006385803, -0.01398468, -0.038208008, 0.0035915375, 0.0020103455, 0.0087890625, 0.0051345825, 0.027297974, 0.035980225, 0.023498535, -0.02810669, -0.04296875, -0.055389404, 0.019256592, -0.048187256, 0.03656006, -0.030258179, 0.008872986, 0.022964478, -0.03741455, 0.0126953125, 0.019104004, -0.035736084, -0.014671326, 0.00026655197, 0.019058228, 0.02067566, 0.005672455, 0.09710693, -0.032409668, -0.053771973, -0.07110596, 0.023254395, 9.3221664e-05, -0.0019159317, 0.052490234, 0.00041913986, 0.0012207031, 0.028945923, -0.0018224716, -0.052764893, -0.03378296, -0.010826111, -0.07299805, 0.0022029877, -0.045013428, 0.04034424, -0.0075798035, -0.0007286072, -0.007408142, 0.039001465, 0.0040779114, -0.007434845, -0.034942627, -0.01423645, -0.009414673, 0.00040078163, 0.027709961, -0.009178162, -0.035949707, -0.0152282715, -0.037384033, -0.054992676, -0.033477783, 0.027893066, 0.037017822, 0.015838623, -0.016693115, 0.010643005, 0.049102783, -0.027816772, 0.06137085, -0.01576233, -0.0077400208, -0.00548172, 0.026397705, 0.018371582, 0.004055023, 0.0031261444, -0.0037498474, -0.027313232, -0.0043525696, 0.01586914, 0.027297974, -0.0084991455, 0.022598267, 0.034362793, 0.019561768, 0.03387451, 0.0015277863, 0.049468994, -0.02645874, -0.06585693, 0.009513855, -0.036193848, -0.04699707, -0.015136719, 0.019226074, -0.07531738, -0.0023727417, -0.036071777, 0.025909424, 0.0028533936, 0.01638794, 0.0067100525, -0.005218506, 0.018997192, 0.0039749146, 0.003118515, -0.0033168793, -0.053985596, 0.004016876, -0.021911621, -0.019515991, 0.00017750263, -0.00034976006, 0.017089844, 0.043762207, 0.02619934, -0.0036506653, -0.018936157, 0.050323486, 0.001824379, -0.09893799, 0.038208008, -0.022018433, -0.0056495667, 0.01272583, -0.08709717, -0.05303955, 0.006023407, 0.043426514, -0.021331787, 0.031234741, 0.013084412, 0.0046920776, -0.007335663, -0.0018796921, -0.00818634, -0.0017404556, -0.01889038, 0.013137817, 0.027755737, -0.0005578995, -0.054382324, -0.012840271, 0.05316162, -0.018493652, -0.009277344, 0.023208618, 0.028289795, -0.03479004, 0.024505615, -0.023529053, 0.0035152435, 0.03692627, 0.0010099411, 0.01398468, -0.0024719238, 0.010749817, -0.005935669, -0.00422287, -0.029144287, 0.025497437, -0.026794434, 0.027435303, 0.022354126, 0.030456543, -0.011398315, -0.034606934, -0.0067100525, 0.014656067, 0.012008667, -0.012451172, 0.03062439, 0.0040512085, 0.0077552795, 0.02999878, 0.07067871, -0.011665344, 0.042755127, -0.011428833, 0.007572174, 0.021514893, 0.005306244, 0.00057315826, 0.016586304, -0.009109497, 0.0155181885, 0.035980225, 0.017425537, 0.009437561, 0.021987915, -0.001871109, 0.00806427, -0.04373169, 0.032928467, 0.0020599365, 0.025558472, -0.03503418, -0.0036849976, -0.0057373047, -0.015380859, -0.022506714, -0.015151978, -0.030380249, 0.0181427, 0.012931824, -0.006374359, 0.02709961, -0.022491455, -0.016220093, -0.0390625, 0.01586914, 0.01625061, 0.034851074, 0.010810852, 0.066223145, -0.032226562, -0.07208252, -0.05343628, 0.040008545, -0.07733154, -0.00749588, -0.01889038, 0.018539429, 0.015106201, 0.0032520294, 0.04562378, 0.039031982, 0.019821167, -0.0025501251, -0.0054969788, -0.016952515, -0.020706177, -0.0032157898, -0.01727295, -0.016067505, 0.00856781, 0.046905518, -0.012901306, 0.028259277, 0.044433594, -0.023071289, -0.028686523, -0.03717041, -0.044128418, -0.014968872, -0.020401001, 0.011039734, -0.0021190643, -0.020950317, -0.059783936, 0.01739502, 0.007003784, 0.03262329, 0.04647827, -0.00894165, 0.018447876, -0.019134521, -0.06304932, -0.06677246, -0.018737793, 0.041503906, -0.009437561, 0.03616333, 0.024429321, 0.03604126, -0.021270752, 0.026794434, 0.017440796, -0.045837402, 0.036590576, -0.024932861, 0.020370483, 0.016708374, -0.044281006, 0.012710571, -0.023529053, -0.011474609, 0.011802673, 0.039886475, -0.031219482, 0.005153656, -0.026748657, 0.029754639, 0.009269714, -0.046325684, 0.00049066544, -0.018737793, -0.004760742, 0.03201294, -0.00793457, 0.047943115, -0.024719238, -0.027694702, -0.035461426, 0.011787415, 0.01927185, -0.0068588257, -0.020751953, 0.0066566467, 0.004096985, 0.05001831, -0.03137207, -0.046783447, -0.042541504, 0.030838013, 0.015853882, -0.0076293945, 0.062408447, -0.035003662, 0.019851685, 0.02494812, 0.0014352798, -0.012809753, 0.01776123, 0.025405884, 0.013717651, 0.016433716]}, "B091F5ND56": {"id": "B091F5ND56", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "metadata": {"Name": "Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue", "Brand": "Royal Gourmet", "Description": "", "Features": "Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01689148, 0.0098724365, -0.026489258, -0.021774292, -0.008735657, 0.0017004013, -0.037017822, -0.005771637, -0.07525635, 0.010154724, -0.0019369125, 0.03692627, -0.03363037, -0.030715942, 0.047546387, -0.042175293, 0.034332275, 0.013694763, 0.013435364, -0.011192322, -0.015586853, 0.013534546, -0.008560181, 0.07421875, 0.037872314, -0.017501831, -0.02230835, 0.01058197, 0.010818481, -0.0075035095, 0.04083252, 0.0004901886, 0.05996704, -0.015853882, -0.05154419, -0.04815674, -0.026870728, -0.027008057, -0.045166016, 0.00674057, 0.004371643, 0.0057029724, -0.045196533, -0.008964539, -0.0647583, 0.009231567, -0.042175293, 0.016571045, 0.031234741, 0.0024089813, -0.0032730103, 0.0004529953, -0.00258255, -0.009391785, -0.047210693, -0.03656006, 0.009590149, 0.03475952, 0.023162842, -0.030715942, -0.03869629, 0.008796692, 0.016479492, 0.013519287, -0.039978027, 0.031402588, 0.09295654, -0.023529053, -0.01914978, -0.06732178, -0.006122589, 0.016357422, 0.020141602, -0.03579712, -0.023788452, -0.011749268, 0.007522583, -0.033325195, 0.019058228, -0.025909424, 0.009819031, 0.012123108, 0.030792236, -0.0042533875, -0.014678955, -0.005470276, -0.011260986, -0.01939392, -0.011444092, -0.04071045, -0.012687683, -0.053985596, -0.035064697, 0.021697998, 0.0071258545, -0.03152466, -0.062408447, -0.08685303, 0.034088135, 0.003780365, 0.054229736, -0.03152466, 0.04916382, 0.01285553, -0.01159668, 0.09503174, 0.011207581, 0.04260254, -0.014274597, -0.0029773712, 0.016311646, -0.044921875, 0.03286743, -0.031433105, -0.031951904, 0.026321411, 0.033721924, -0.012145996, 0.027908325, -0.023773193, -0.0020256042, 0.03491211, -0.016159058, 0.0090789795, 0.030029297, 0.024780273, 0.0027542114, -0.025344849, -0.053344727, 0.066101074, -0.05291748, -0.008522034, 0.07720947, 0.027313232, -0.00046396255, -0.04714966, 0.020401001, -0.0067863464, 0.026763916, -0.016967773, 0.004798889, 0.009971619, 0.04144287, 0.010169983, -0.025054932, -0.0019569397, 0.023895264, 0.0047035217, -0.022964478, -0.046081543, -0.0055885315, -0.0019512177, 0.040008545, 0.016189575, -0.05441284, -0.0033683777, -0.015319824, -0.006652832, -0.013748169, -0.027786255, -0.018081665, -0.038879395, -0.023147583, -0.017028809, -0.0637207, 0.07598877, 0.009117126, -0.010681152, 0.02229309, 0.06088257, 0.014595032, -0.0015621185, -0.006832123, 0.03491211, 0.001288414, 0.0019626617, 0.027435303, 0.0007953644, 0.030044556, -0.053497314, -0.054473877, -0.042907715, 0.06890869, -0.03479004, -0.009651184, -0.033721924, -0.0013256073, 0.029312134, 0.04852295, 0.035858154, -0.04510498, -0.037628174, -0.002576828, 0.0005774498, 0.025619507, 0.011024475, -0.038879395, 0.02571106, -0.013244629, -0.05758667, -0.0059776306, 0.0049552917, 0.0012493134, -0.004776001, -0.0141067505, -0.011520386, -0.002313614, 0.022659302, 0.015388489, 0.023544312, 0.003332138, 0.010597229, -0.025466919, -0.02003479, -0.039367676, -0.06591797, -0.049682617, 0.019226074, -0.0017633438, 0.03414917, 0.007221222, -0.0043258667, 0.033569336, 0.0024871826, 0.034423828, 0.004951477, -0.018432617, -0.0053215027, 0.04083252, 0.013298035, -0.015258789, 0.012229919, 0.07159424, 0.043273926, 0.009933472, 0.054901123, 0.07055664, 0.045837402, -0.038726807, -0.035858154, 0.011451721, 0.008857727, -0.050720215, -0.013687134, 0.028244019, -0.034210205, -0.00920105, 0.01512146, -0.0034675598, 0.0025405884, 0.028671265, -0.028747559, 0.033172607, 0.008155823, -0.008026123, 0.024490356, -0.0036830902, 0.02003479, -0.018997192, -0.0138549805, 0.012702942, 0.03213501, -0.02015686, 0.014381409, 0.023513794, 0.0096206665, 0.018127441, 0.008148193, -0.049804688, 0.019989014, 0.033416748, 0.014709473, 0.0073280334, 0.015670776, -0.013381958, -0.01776123, -0.015525818, 0.015838623, 0.0077285767, -0.010047913, 0.0070114136, 0.023727417, -0.020980835, -0.012107849, 0.044128418, 0.057159424, -0.022460938, -0.0146484375, -0.011230469, -0.0070343018, 0.02607727, 0.0017719269, -0.018569946, -0.0010223389, -0.006916046, -0.037078857, 0.085754395, 0.016494751, -0.0036067963, -0.006164551, 0.013160706, 0.004875183, -0.046661377, 0.003856659, -0.0046653748, 0.015449524, -0.021697998, 0.012931824, 0.0012197495, -0.03564453, 0.005241394, 0.049102783, 0.033355713, -0.0049362183, 0.04916382, 0.0033912659, 0.011497498, 0.063964844, 0.021453857, 0.020095825, -0.016815186, 0.043151855, -0.0541687, 0.0072135925, 0.015579224, 0.023132324, -0.025863647, -0.02319336, -0.032928467, 0.023773193, 0.005142212, -0.009513855, -0.013946533, 0.01878357, 0.005859375, 0.012664795, 0.0029563904, -0.010314941, -0.020645142, -0.0635376, -0.010673523, -0.032440186, 0.0055351257, -0.017150879, -0.043182373, 0.0025348663, -0.00084495544, -0.0047302246, -0.009757996, -0.003396988, 0.009994507, 0.008102417, 0.0026893616, -0.02583313, 4.7802925e-05, -0.015419006, -0.02204895, -0.05215454, -0.021438599, -0.08618164, -0.032073975, -0.039031982, -0.073791504, -0.04977417, 0.052825928, 0.026519775, -0.06365967, -0.005455017, -0.01486969, -0.011764526, 0.007873535, -0.03225708, -0.053955078, -0.015068054, -0.011772156, 0.0101623535, 0.059814453, -0.010772705, 0.010429382, 0.040924072, 0.036010742, 0.041412354, -0.009048462, -0.008506775, 0.0026359558, 0.035064697, 0.04675293, 0.043029785, 0.00089502335, -0.01979065, 0.00051164627, 0.03967285, -0.03729248, -0.014556885, -0.03643799, -0.0026664734, 0.02029419, -0.017456055, 0.010559082, -0.0001335144, -0.09484863, 0.0289917, 0.015731812, -0.039276123, -0.0017576218, -0.06719971, -0.06359863, -0.0368042, 0.009552002, 0.0039596558, 3.7908554e-05, 0.015640259, -0.021575928, 0.032592773, 0.004146576, -0.030517578, 0.022476196, 0.0008940697, -0.003063202, -0.0206604, 0.035614014, -0.033050537, 0.02268982, 0.01612854, -0.034057617, 0.032104492, -0.0112838745, 0.026657104, -0.00071287155, 0.039611816, -0.0011701584, 0.002073288, 0.001077652, 0.036346436, -0.035827637, 0.022384644, 0.0010786057, -0.044830322, 0.05770874, -0.06713867, -0.06896973, 0.01977539, 0.016479492, -0.009269714, 0.013458252, -0.036987305, 0.030914307, -0.04626465, -0.032928467, -0.07910156, 0.002538681, 0.0129852295, 0.04849243, 0.031188965, 0.03189087, 0.09643555, -0.0051956177, 0.036193848, 0.039855957, -0.020339966, -0.028823853, -0.044006348, 0.045135498, 0.018630981, 0.015274048, -0.04525757, 0.013534546, -0.007270813, -0.044036865, 0.028900146, -0.02746582, 0.03741455, 0.0115356445, -0.015388489, -0.020187378, -0.0335083, 0.029663086, 0.02684021, -0.011512756, -0.04309082, -0.033843994, -0.012969971, -0.06286621, 0.10217285, 0.057769775, -0.019729614, 0.08319092, 0.08502197, -0.0032577515, 0.008430481, 0.007045746, 0.0027980804, -0.006454468, 0.05102539, -0.014312744, -0.010604858, 0.019851685, -0.04498291, 0.024490356, 0.02003479, -0.045898438, 0.009025574, -0.031051636, -0.050476074, -0.024536133, 0.03564453, 0.022827148, -0.013191223, -0.032104492, -0.052246094, 0.0104599, -0.0647583, -0.010475159, 0.02583313, -0.0362854, -0.0069389343, 0.0029640198, -0.00012409687, -0.012939453, -0.0048980713, 0.02520752, 0.018005371, -0.009216309, 0.010688782, 0.01890564, 0.023513794, -0.0519104, 0.014511108, -0.026062012, 0.01461792, 0.007129669, 0.008491516, 0.020599365, 0.0023345947, 0.0041885376, 0.009346008, -0.0030612946, 0.050231934, 0.001206398, -0.053497314, -0.02557373, 0.021743774, 0.04449463, -0.027572632, 0.018127441, -0.07342529, -0.0034923553, -0.026260376, -0.038146973, -0.021118164, 0.0028572083, -0.015144348, -0.0670166, -0.034118652, 0.010520935, -0.059020996, -0.04611206, 0.018432617, -0.01914978, -0.025039673, -0.034362793, -0.023712158, -0.028656006, 0.026641846, -0.077697754, 0.0041770935, 0.044433594, 0.032287598, 0.046722412, -0.061950684, -0.023666382, -0.032958984, 0.10583496, 0.012649536, 0.05581665, -0.023956299, -0.046569824, -0.039398193, 0.010314941, 0.051574707, -0.0073165894, 0.038330078, -0.02204895, -0.07476807, -0.025787354, 0.002960205, -0.00039076805, -0.034729004, -0.03756714, -0.020645142, 0.058532715, -0.0019159317, 0.008331299, -0.017715454, 0.02229309, -0.022476196, -0.003025055, -0.03817749, 0.020507812, 0.008865356, 0.016937256, 0.007972717, -0.009773254, -0.014030457, 0.009155273, 0.026397705, 0.070007324, -0.007171631, -0.003293991, -0.047180176, -0.009399414, -0.016830444, -0.0005660057, 0.03930664, -0.04284668, -0.01864624, -0.08026123, 0.06201172, 0.042053223, -0.007396698, 0.012649536, -0.017547607, -0.009712219, -0.022399902, -0.015014648, -0.022872925, -0.015045166, -0.068847656, -0.043701172, 0.032409668, -0.053741455, 0.02166748, -0.015083313, -0.008628845, 0.008293152, -0.027053833, 0.043151855, -0.012435913, 0.03930664, 0.015319824, 0.01209259, 0.016723633, -0.005302429, -0.023742676, 0.001335144, -0.025970459, -0.029525757, 0.0022125244, -0.029418945, -0.01247406, 0.0072784424, 0.011871338, -0.036712646, 0.008049011, 0.03555298, -0.021087646, 0.00092840195, 0.027450562, 0.0059127808, 0.012748718, -0.025924683, 0.026031494, -0.04135132, -0.0049324036, 0.023773193, -0.024032593, -0.03842163, 0.029037476, -0.061065674, 0.06378174, 0.0047836304, -0.06390381, 0.04888916, -0.021072388, 0.013244629, -0.03829956, 0.048828125, -0.0082473755, 0.023773193, -0.08135986, 0.0052719116, -0.0050086975, 0.031982422, 0.009475708, -0.03353882, 0.019729614, -0.049438477, -0.015258789, 0.0016899109, 0.051483154, -0.03503418, -0.0017938614, 0.028839111, 0.009101868, -0.027526855, 0.0340271, -0.034332275, -0.0016746521, -0.035583496, 0.008758545, 0.015434265, 0.0018577576, -0.007282257, -0.03265381, 0.016616821, 7.176399e-05, -0.030883789, 0.0036907196, 0.021087646, 0.010864258, 0.017150879, 0.0262146, 0.010612488, 0.014732361, -0.03717041, -0.045318604, -0.046722412, 0.01737976, -0.031097412, 0.048675537, -0.03704834, -0.0031852722, 0.007896423, -0.049987793, 0.0042648315, 0.014030457, -0.028045654, -0.015098572, 0.0036296844, 0.018875122, 0.0051231384, 0.029083252, 0.068237305, -0.033599854, -0.02017212, -0.055847168, 0.033843994, -0.011268616, -0.004398346, 0.08135986, -0.0038585663, 0.014831543, 0.017807007, 0.02168274, -0.028335571, -0.0017166138, -0.0048103333, -0.044647217, 0.00033712387, -0.029800415, 0.004989624, 0.010482788, -0.008796692, 0.0046844482, 0.041137695, 0.012229919, -0.041870117, -0.008857727, 0.004386902, 0.0035476685, 0.0023059845, 0.023010254, -0.0036029816, -0.021896362, -0.018203735, -0.017745972, -0.06781006, -0.03942871, 0.026687622, 0.01940918, 0.015075684, -0.0018529892, 0.010345459, 0.03488159, -0.019210815, 0.043029785, -0.009666443, 0.00699234, 0.013412476, 0.019500732, -0.0027217865, 0.0002603531, -0.020233154, 0.0014629364, -0.022018433, 0.008201599, 0.0034236908, 0.03579712, -0.04147339, -0.010368347, 0.020202637, 0.039276123, 0.018829346, 0.023742676, 0.029632568, -0.038238525, -0.046325684, 0.013259888, -0.016036987, -0.056396484, -0.03640747, 0.00920105, -0.045410156, 0.014152527, -0.015022278, 0.02519226, 0.019119263, 0.018722534, -0.0022258759, -0.017150879, 0.016555786, 0.0025901794, 0.009666443, 0.013954163, -0.051727295, 0.009483337, -0.032409668, -0.013793945, -0.002029419, -0.00819397, 0.021148682, 0.049957275, 0.019485474, -0.009033203, -0.019256592, 0.050567627, 0.03616333, -0.11437988, 0.028030396, 0.006679535, -0.0031757355, 0.016983032, -0.06750488, -0.037139893, -0.009025574, 0.053131104, -0.016403198, 0.04525757, -0.011871338, 0.018692017, 0.0023479462, 0.0014228821, -0.0101623535, -0.016281128, 0.0013179779, 0.0016469955, 0.01927185, 0.0055656433, -0.068359375, -0.019134521, 0.049682617, -0.015525818, -0.0019512177, 0.016540527, 0.032806396, -0.03286743, 0.027572632, -0.01878357, 0.0002655983, 0.027313232, 0.0021820068, 0.014602661, 0.022109985, 0.0236969, -0.017684937, 0.021209717, -0.036712646, 0.03753662, -0.01638794, 0.06781006, 0.031097412, 0.010864258, -0.025802612, -0.031982422, -0.0053634644, -0.008392334, 0.012626648, -0.0107421875, 0.030075073, 0.017868042, -0.01802063, 0.03387451, 0.0335083, -0.0013017654, 0.03286743, 0.0072517395, -0.034698486, -0.006542206, 0.019851685, 0.012451172, 0.024673462, -0.010513306, 0.0051231384, 0.032073975, 0.012641907, 0.01309967, 0.021011353, 0.0056419373, 0.0010976791, -0.06088257, 0.029891968, -0.010536194, 0.06341553, -0.036315918, -0.028289795, -0.019363403, -0.020858765, 0.0053100586, -0.013496399, -0.053894043, 0.027679443, 0.018341064, -0.03164673, 0.011054993, -0.008880615, 0.0025615692, -0.06555176, 0.0022392273, -0.013015747, 0.012969971, 0.00894165, 0.047180176, -0.026443481, -0.07745361, -0.034454346, 0.032592773, -0.06329346, -0.027496338, -0.023986816, 0.024887085, 0.016433716, 0.008285522, 0.056732178, 0.06652832, 0.020614624, 0.012542725, -0.0062561035, -0.0067481995, -0.01864624, -0.018310547, -0.011161804, -0.009376526, 0.0019779205, 0.037750244, 0.002483368, 0.015365601, 0.04360962, -0.0014276505, -0.027923584, -0.005596161, -0.021087646, -0.009887695, -0.027435303, 0.013961792, -0.018310547, -0.010284424, -0.041778564, 0.023529053, 0.011871338, 0.025161743, 0.037628174, 0.015930176, 0.02142334, 4.595518e-05, -0.060577393, -0.037628174, -0.023849487, 0.021560669, 0.019546509, 0.06945801, 0.02293396, 0.020339966, -0.010444641, 0.023208618, -0.016296387, -0.047027588, 0.023361206, -0.044311523, 0.004837036, 0.0026397705, -0.04437256, 0.02003479, 0.005302429, -0.015022278, 0.052764893, 0.006832123, -0.0178833, -0.019424438, -0.03186035, 0.012290955, -0.017700195, -0.04257202, 0.010253906, -0.010276794, -0.021560669, 0.024047852, 0.00069236755, 0.023635864, -0.025650024, -0.025161743, -0.02784729, 0.02078247, 0.02784729, 0.005958557, -0.03274536, 0.019104004, 0.0010614395, 0.046691895, -0.044067383, -0.053649902, -0.056793213, 0.029174805, 0.03363037, 0.0018415451, 0.09008789, -0.027008057, 0.022964478, 0.027267456, 0.0077323914, -0.021575928, 0.029556274, 0.011367798, 0.005168915, 0.019760132]}, "B091F4D7FF": {"id": "B091F4D7FF", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver\nDescription: \nFeatures: High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time.\nSufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "metadata": {"Name": "Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver", "Brand": "Royal Gourmet", "Description": "", "Features": "High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time.\nSufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.024414062, 0.016799927, -0.04586792, -0.016708374, 0.02017212, -0.039489746, -0.0049705505, -0.007080078, -0.080200195, 0.020629883, 0.04333496, 0.029724121, -0.019882202, -0.04824829, 0.048858643, -0.015609741, 0.029342651, 0.016448975, 0.019943237, -0.0046081543, -0.0033817291, 0.02798462, -0.029037476, 0.07165527, 0.049468994, -0.04751587, -0.041015625, 0.027648926, 0.021072388, 0.013885498, 0.03817749, -0.017242432, 0.05908203, -0.010795593, -0.03778076, -0.04449463, -0.014183044, -0.034301758, -0.040740967, -0.0017404556, 0.008880615, 0.010147095, -0.025100708, 0.010604858, -0.04949951, -0.011566162, -0.01247406, 0.0027198792, 0.033935547, -0.016799927, -0.004634857, -0.017684937, -0.0022068024, -0.024353027, -0.03591919, -0.025726318, 0.030899048, 0.03656006, 0.022537231, -0.04751587, -0.054992676, 0.017425537, 0.024841309, 0.023712158, -0.06112671, 0.012008667, 0.06427002, -0.022415161, 0.009597778, -0.076171875, -0.018035889, 0.054626465, 0.01687622, -0.019515991, -0.019332886, -0.010772705, -0.0063285828, -0.03515625, 0.028686523, -0.019897461, 0.02658081, -0.004032135, 0.043426514, 0.0036125183, 0.0028152466, 0.00907135, 0.00051403046, -0.031677246, -0.00086688995, -0.024734497, -0.007926941, -0.047912598, -0.017059326, 0.010482788, 0.0035324097, -0.04937744, -0.05545044, -0.07763672, 0.018554688, 0.009544373, 0.054870605, -0.038909912, 0.052886963, 0.009231567, -0.022827148, 0.10821533, 0.02458191, 0.059387207, -0.0039863586, -0.0068969727, 0.028274536, -0.02798462, 0.017593384, -0.017730713, -0.021148682, 0.028884888, 0.023712158, -0.006275177, 0.00094795227, -0.0048294067, -0.012786865, 0.022735596, -0.0054855347, 0.008262634, 0.002576828, 0.0033130646, 0.0019817352, -0.024551392, -0.04421997, 0.062683105, -0.057525635, -0.008979797, 0.08972168, 0.032958984, -1.9550323e-05, -0.048828125, 0.021911621, 0.0049438477, 0.01852417, -0.023117065, -0.005279541, -0.0014257431, 0.026519775, 0.0062446594, -0.009338379, 0.007965088, 0.029830933, 0.011054993, -0.022735596, -0.053619385, 0.0051116943, 0.021102905, 0.024917603, 0.007205963, -0.038635254, -0.00365448, -0.022232056, -0.016326904, 0.0021400452, -0.018188477, -0.00843811, -0.01423645, 0.010749817, 0.005870819, -0.03567505, 0.048858643, 0.013847351, -0.0058059692, 0.011230469, 0.02406311, -0.0040283203, 0.0071983337, -0.01838684, 0.03378296, 0.018356323, 0.0126953125, 0.037597656, 0.018249512, 0.034088135, -0.081848145, -0.068359375, -0.050445557, 0.07824707, -0.041809082, -0.03479004, -0.0074691772, -0.012702942, 0.01335907, 0.057800293, 0.00894165, -0.024169922, -0.02482605, -0.0013580322, 0.021896362, 0.03842163, -0.011009216, -0.028503418, -0.0003402233, -0.007369995, -0.052703857, -0.008720398, 0.0038661957, 0.0003068447, -0.0071411133, -0.03012085, -0.008514404, -0.0041389465, 0.025741577, 0.013977051, 0.013626099, -0.010559082, -0.0036354065, -0.0063591003, -0.029006958, -0.044921875, -0.04953003, -0.02482605, 0.03289795, 0.010917664, 0.022354126, 0.023742676, 0.0018491745, 0.047668457, 0.012374878, 0.04727173, 0.014839172, -0.019042969, 0.0008673668, 0.03656006, 0.015045166, -0.037231445, 0.009254456, 0.0769043, 0.049041748, -0.00037384033, 0.046417236, 0.07348633, 0.055908203, -0.03756714, -0.041870117, -0.004016876, -0.017242432, -0.057647705, 0.002998352, -0.0046958923, -0.032836914, -0.007385254, 0.026779175, -0.015777588, -0.037078857, 0.033203125, -0.026657104, 0.04714966, -0.0018892288, -2.7954578e-05, 0.023422241, -0.010917664, 0.023406982, -0.02178955, -0.008850098, 0.0067710876, 0.038146973, -0.011260986, 0.011932373, 0.012069702, 0.004634857, 0.008094788, 0.014259338, -0.040283203, 0.014953613, 0.02784729, 0.027755737, -0.005657196, 0.009361267, 0.0027866364, -0.0134887695, -0.01676941, 0.02116394, -0.0028972626, -0.021209717, -0.00623703, -0.004009247, -0.026245117, -0.008354187, 0.028076172, 0.035186768, -0.0021324158, -0.007980347, -0.004611969, -0.024490356, 0.024765015, 0.0050697327, -0.0065231323, -0.0042686462, -0.009315491, -0.025405884, 0.095703125, 0.0131073, -0.0030899048, -0.006526947, 0.020935059, 0.010673523, -0.045013428, -0.00283432, 0.009048462, 0.0107421875, 0.0071105957, 0.008300781, -0.0033130646, -0.040985107, 0.007068634, 0.014175415, 0.044403076, -0.011306763, 0.038208008, 0.0016870499, 0.00920105, 0.05404663, 0.01625061, 0.021072388, -0.0071868896, 0.018341064, -0.060546875, -0.0087509155, 0.008308411, 0.026550293, -0.039978027, -0.02532959, -0.00705719, 0.020050049, 0.0011777878, 0.0151901245, -0.0074005127, 0.021316528, 0.0023059845, 0.008255005, -0.0006918907, 0.0075416565, -0.01574707, -0.06262207, -0.007068634, -0.061065674, -0.0071258545, -0.022521973, -0.04714966, -0.005332947, -0.008621216, -0.008773804, -4.4107437e-05, -0.020263672, 0.017929077, 0.005973816, 0.0047569275, -0.015068054, 0.0015916824, -0.03491211, -0.023971558, -0.011016846, -0.023895264, -0.059936523, -0.02104187, -0.058288574, -0.08099365, -0.0440979, 0.07348633, 0.040039062, -0.0736084, -0.013397217, -0.018600464, -0.0058784485, 0.018676758, -0.012710571, -0.06512451, -0.030059814, -0.020324707, 0.0010166168, 0.051483154, -0.010612488, 0.021499634, 0.03753662, 0.053131104, 0.053527832, 0.0003285408, 0.0062026978, -0.004928589, 0.040130615, 0.030197144, 0.03378296, 0.010002136, -0.02658081, -0.008323669, 0.04156494, -0.032989502, -0.022491455, -0.040405273, 0.0030002594, 0.006290436, -0.025772095, 0.016525269, 0.004207611, -0.08874512, 0.030395508, -0.0016613007, -0.039245605, 0.0021839142, -0.072387695, -0.051818848, -0.042114258, 0.008804321, -0.008079529, 0.016281128, 0.014312744, -0.018478394, 0.023590088, 0.0015125275, -0.0473938, -0.002401352, -0.008140564, 0.019805908, -0.012077332, 0.04360962, -0.0592041, 0.027420044, 0.037353516, -0.008224487, 0.018081665, -0.0127334595, 0.014122009, -0.002872467, 0.025970459, 0.0024967194, -0.008850098, -0.008918762, 0.032226562, -0.024536133, 0.018478394, 0.0044822693, -0.05493164, 0.04598999, -0.055511475, -0.05319214, 0.0056610107, -0.0029888153, -0.008804321, 0.009208679, -0.04248047, 0.01121521, -0.04714966, -0.026687622, -0.068115234, -0.009216309, 0.024124146, 0.05130005, 0.035003662, 0.038024902, 0.076171875, -0.015960693, 0.04537964, 0.053588867, -0.047454834, -0.0463562, -0.056121826, 0.051727295, 0.0236969, 0.022857666, -0.0259552, 0.007019043, 0.016601562, -0.014038086, 0.004924774, 0.018234253, 0.02444458, 0.0033454895, -0.0062065125, -0.0132369995, -0.013023376, 0.018112183, 0.03225708, -0.033294678, -0.05657959, -0.02684021, -0.009689331, -0.060394287, 0.09869385, 0.03768921, -0.009185791, 0.06085205, 0.06774902, 0.0026054382, 0.010879517, 0.012557983, -0.0005145073, 0.0042495728, 0.052612305, 0.005218506, -0.01864624, 0.03253174, -0.04333496, 0.0011863708, 0.018112183, -0.071899414, 0.00036168098, -0.047973633, -0.028900146, -0.028305054, 0.034454346, 0.016159058, -0.008560181, -0.014343262, -0.06347656, 0.0019683838, -0.05831909, 0.0050468445, -0.0021800995, -0.029205322, -0.00894165, -0.014404297, -0.015731812, -0.02947998, 0.007007599, 0.031341553, 0.037628174, -0.009399414, 0.010040283, 0.0101623535, 0.024627686, -0.048950195, 0.023666382, -0.012886047, 0.010246277, 0.021850586, 0.009284973, 0.030792236, 0.018936157, -0.02645874, -0.009033203, -0.008758545, 0.037200928, -0.0002617836, -0.03265381, -0.016403198, 0.016830444, 0.037750244, -0.027694702, 0.021820068, -0.07373047, 0.0019550323, -0.020477295, -0.06994629, -0.017044067, 0.0031585693, -0.0063667297, -0.08355713, -0.03970337, 0.031402588, -0.039855957, -0.011688232, 0.00012636185, -0.04043579, -0.025054932, -0.0413208, -0.0121154785, -0.016357422, 0.01663208, -0.056152344, 0.012634277, 0.03479004, 0.03149414, 0.019165039, -0.046325684, -0.015052795, -0.020324707, 0.1517334, 0.02734375, 0.049346924, -0.04272461, -0.040252686, -0.020065308, 0.0015335083, 0.039367676, -0.010650635, 0.01461792, -0.03668213, -0.079711914, -0.030700684, -0.025466919, 0.014823914, -0.041168213, -0.048431396, -0.029785156, 0.05517578, -0.0011882782, 0.021209717, -0.029586792, 0.01927185, -0.022994995, -0.007926941, -0.04336548, -0.007980347, 0.010917664, 0.0011320114, 0.01184082, -0.0042495728, -0.015853882, 0.0038280487, 0.044128418, 0.04522705, -0.015686035, -0.0011005402, 0.00041151047, 0.010772705, -0.011894226, 0.0036087036, 0.0129852295, -0.02053833, -0.0025043488, -0.06298828, 0.06225586, 0.047912598, -0.0040512085, 0.0058174133, -0.0032672882, -0.014175415, -0.0423584, -0.011657715, 0.007621765, 0.005874634, -0.060058594, -0.039001465, 0.049987793, -0.064575195, 0.023040771, -0.01398468, -0.013305664, 0.007030487, -0.013679504, 0.023544312, -0.005065918, 0.028198242, 0.008491516, -0.00067043304, 0.03704834, 0.01184082, 0.0051460266, 0.018844604, -0.031921387, -0.022399902, -0.014945984, -0.02911377, -0.019882202, 0.013183594, 0.0030231476, -0.03741455, 0.00308609, 0.033355713, -0.039764404, -0.015556335, 0.03527832, 0.0037555695, 0.017288208, -0.04837036, 0.016998291, -0.019515991, -0.003282547, 0.028137207, -0.023651123, -0.011650085, 0.03100586, -0.04812622, 0.07446289, 0.0019798279, -0.068359375, 0.031219482, -0.005683899, 0.027694702, -0.021896362, 0.040252686, 0.010848999, 0.017852783, -0.075927734, -0.0002529621, -0.005329132, 0.035614014, 0.030532837, -0.05142212, 0.021774292, -0.056762695, -0.021697998, -0.0051002502, 0.058776855, -0.026138306, 0.008361816, 0.015197754, 0.011520386, -0.017410278, 0.0049095154, -0.03250122, -0.0014715195, -0.0062446594, -0.0010509491, 0.008926392, 0.008453369, -0.011291504, -0.039001465, 0.0012454987, 0.0025157928, -0.0062713623, 0.02319336, 0.0018596649, 0.0017213821, 0.02130127, 0.030792236, 0.010261536, 0.014801025, -0.033691406, -0.042022705, -0.053527832, 0.008895874, -0.020736694, 0.043426514, -0.04196167, -0.008460999, 0.0025520325, -0.050109863, -0.015914917, 0.04232788, -0.035125732, -0.01171875, -0.0006418228, 0.0074768066, 0.0033473969, 0.012138367, 0.08532715, -0.035888672, -0.041870117, -0.058898926, 0.011405945, 0.027069092, 0.01096344, 0.055786133, -0.020706177, 0.0076675415, 0.030471802, 0.0050811768, -0.051239014, -0.037017822, -0.022781372, -0.051635742, 0.002943039, -0.04876709, 0.03564453, 0.025939941, -0.002166748, -0.0039367676, 0.045654297, 0.008804321, -0.01713562, -0.050964355, 0.00040245056, -0.0037212372, -0.00046110153, 0.012214661, -0.014762878, -0.022079468, -0.01689148, -0.019927979, -0.06286621, -0.041290283, 0.023529053, 0.014450073, 0.024002075, -0.007820129, 0.009216309, 0.045318604, -0.023529053, 0.040161133, -0.006164551, -0.003929138, 0.010299683, 0.010429382, 0.004753113, 0.0110321045, 0.013130188, 0.004180908, -0.017608643, 0.0027256012, 0.0049209595, 0.02659607, -0.0340271, -0.002521515, 0.011550903, 0.041259766, 0.019500732, 0.017684937, 0.037261963, -0.004371643, -0.034057617, 0.0012378693, 0.003206253, -0.034606934, -0.059448242, 0.015060425, -0.058502197, 0.042999268, -0.009552002, 0.04348755, 0.011253357, 0.03149414, 0.015808105, -0.030181885, 0.01789856, -0.01234436, 0.024963379, 0.0013074875, -0.03729248, 0.011360168, -0.029006958, -0.0069885254, -0.018966675, -0.010612488, 0.0015850067, 0.037872314, 0.024002075, 0.006755829, -0.027191162, 0.0657959, 0.021026611, -0.114746094, 0.026885986, -0.028076172, 0.0021762848, 0.011657715, -0.06982422, -0.043060303, 0.01335907, 0.028747559, -0.0357666, 0.03869629, 0.011749268, -0.0012016296, 0.0015926361, 0.011108398, -0.019958496, 0.0030517578, -0.035858154, 0.018356323, 0.034820557, -0.010246277, -0.07659912, -0.014038086, 0.059143066, -0.022460938, -0.011398315, 0.03540039, 0.030227661, -0.038269043, 0.02003479, -0.0072250366, -0.03125, 0.032318115, 0.024032593, 0.003414154, 0.03302002, 0.012367249, -0.0099105835, 0.0029792786, -0.032348633, 0.038116455, -0.02357483, 0.058258057, 0.030136108, -0.015960693, -0.025100708, -0.034240723, -0.008262634, -0.0019426346, 0.019699097, -0.019607544, 0.03970337, 0.00484848, -0.0077552795, 0.026565552, 0.052978516, 0.008674622, 0.031951904, -0.010673523, -0.020477295, -0.0013160706, 0.018966675, 0.0034389496, 0.021133423, -0.025466919, 0.0069847107, 0.028182983, 0.015258789, 0.00046920776, 0.020950317, 0.009712219, 0.004901886, -0.052642822, 0.03552246, 0.004432678, 0.02670288, -0.023895264, -0.013259888, -0.015571594, -0.03845215, -0.018798828, -0.020874023, -0.040405273, 0.036834717, 0.019256592, -0.016906738, 0.0070610046, -0.013656616, 0.011398315, -0.06011963, -0.00038671494, 0.00023853779, 0.03616333, 0.017700195, 0.05267334, -0.025878906, -0.09326172, -0.03845215, 0.038604736, -0.074035645, -0.031921387, -0.035247803, 0.030578613, 0.0034770966, 0.0018787384, 0.066345215, 0.026428223, 0.031585693, 0.0065727234, -0.02305603, 0.004508972, -0.010574341, -0.032196045, -0.030776978, -0.0051574707, 0.020202637, 0.044647217, -0.011199951, 0.02180481, 0.028579712, -0.0042037964, -0.037353516, -0.025009155, -0.033050537, -0.018493652, -0.04714966, 0.033050537, -0.024490356, -0.0059318542, -0.026809692, 0.038879395, 0.004852295, 0.0034923553, 0.02986145, -0.0064697266, 0.02822876, -0.008392334, -0.06036377, -0.045898438, -0.022628784, 0.02180481, 0.009651184, 0.041778564, 0.035980225, 0.02960205, -0.023742676, 0.02357483, -0.0008716583, -0.0357666, 0.026824951, -0.043304443, 0.0152282715, -0.0011510849, -0.040740967, 0.00831604, -0.00724411, -0.020507812, 0.03845215, 0.032348633, -0.026397705, 0.0051078796, -0.029785156, 0.005340576, 0.0109939575, -0.050598145, -0.0009717941, -0.01852417, 0.0014257431, 0.025146484, 0.012008667, 0.031829834, 0.0047836304, -0.020004272, -0.035888672, 0.022369385, 0.021240234, 0.007843018, -0.024749756, 0.02999878, 0.011367798, 0.06866455, -0.045288086, -0.04336548, -0.048614502, 0.016448975, 0.014549255, 0.008018494, 0.074645996, -0.03475952, 0.013946533, 0.011047363, 0.013153076, -0.013397217, 0.016738892, 0.036499023, 0.010383606, 0.020690918]}, "B091F4VJLR": {"id": "B091F4VJLR", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "metadata": {"Name": "Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee", "Brand": "Royal Gourmet", "Description": "", "Features": "Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02217102, 0.0068511963, -0.02532959, -0.012428284, -0.009521484, -0.0008096695, -0.029785156, -0.008346558, -0.06958008, 0.01235199, -0.003824234, 0.034851074, -0.026687622, -0.030273438, 0.045928955, -0.040252686, 0.036743164, 0.011810303, 0.012123108, -0.011192322, -0.013336182, 0.013648987, -0.010536194, 0.07891846, 0.04119873, -0.018325806, -0.021560669, 0.006450653, 0.011444092, -0.010139465, 0.039245605, -0.0007529259, 0.06008911, -0.013748169, -0.053710938, -0.044006348, -0.024810791, -0.02810669, -0.046936035, 0.010894775, 0.00080013275, 0.006500244, -0.04046631, -0.01586914, -0.0602417, 0.008583069, -0.040771484, 0.0121536255, 0.03466797, 0.0027751923, 0.0019702911, 0.00024485588, 0.0009908676, -0.010238647, -0.048919678, -0.036132812, 0.010353088, 0.027923584, 0.021911621, -0.029663086, -0.037628174, 0.0034103394, 0.018920898, 0.0112838745, -0.042510986, 0.030029297, 0.095947266, -0.026138306, -0.016677856, -0.06915283, -0.010734558, 0.01965332, 0.02229309, -0.038635254, -0.029830933, -0.016281128, 0.011360168, -0.039215088, 0.020629883, -0.030044556, 0.006881714, 0.013847351, 0.033935547, -0.006793976, -0.014183044, -0.0116119385, -0.015052795, -0.018203735, -0.0007209778, -0.041534424, -0.003921509, -0.052886963, -0.029296875, 0.030441284, 0.008987427, -0.03378296, -0.060821533, -0.09246826, 0.035949707, 0.0005159378, 0.055267334, -0.033599854, 0.048034668, 0.01424408, -0.015571594, 0.09350586, 0.014930725, 0.043518066, -0.014793396, -0.0017433167, 0.018569946, -0.039611816, 0.03253174, -0.031585693, -0.028656006, 0.022140503, 0.028884888, -0.007030487, 0.02696228, -0.02722168, 0.0009250641, 0.036895752, -0.023727417, 0.010421753, 0.022842407, 0.019317627, 0.0049934387, -0.02557373, -0.055755615, 0.06506348, -0.049865723, -0.006351471, 0.074035645, 0.02861023, -0.0006775856, -0.043273926, 0.019424438, -0.008277893, 0.023361206, -0.018432617, 0.009216309, 0.0076065063, 0.03894043, 0.010398865, -0.024307251, 0.002752304, 0.02166748, 0.0077667236, -0.019836426, -0.045074463, -0.0075149536, 0.00111866, 0.042266846, 0.010597229, -0.053375244, -0.001953125, -0.012046814, -0.0036067963, -0.01777649, -0.025558472, -0.018936157, -0.041168213, -0.02255249, -0.021987915, -0.07537842, 0.080200195, 0.0027618408, -0.01574707, 0.02659607, 0.054901123, 0.01626587, -0.009063721, -0.00894165, 0.035125732, 0.0043640137, 0.013389587, 0.019851685, 0.0006942749, 0.028930664, -0.06201172, -0.05407715, -0.04135132, 0.062042236, -0.026290894, -0.007396698, -0.031555176, 0.003118515, 0.031677246, 0.045898438, 0.03591919, -0.042388916, -0.040130615, -0.00075244904, -0.0047035217, 0.022232056, 0.015853882, -0.03781128, 0.030914307, -0.015281677, -0.059387207, 0.0020523071, 0.0019445419, 0.005645752, -0.0075416565, -0.021713257, -0.008979797, -0.005882263, 0.02420044, 0.010803223, 0.022476196, 0.0046539307, 0.01436615, -0.027389526, -0.023590088, -0.038024902, -0.06121826, -0.04663086, 0.023330688, -0.00090646744, 0.030075073, 0.0013208389, -0.0018634796, 0.030334473, -0.000869751, 0.03463745, 0.008476257, -0.018737793, -0.001578331, 0.03994751, 0.012191772, -0.023483276, 0.010795593, 0.075683594, 0.045654297, 0.0044670105, 0.056427002, 0.06976318, 0.046905518, -0.037719727, -0.034332275, 0.012191772, 0.0075798035, -0.047668457, -0.01096344, 0.030319214, -0.03414917, -0.0096588135, 0.01612854, -0.00096797943, 0.00089788437, 0.02722168, -0.027313232, 0.0317688, 0.00642395, -0.0071411133, 0.026428223, -0.007926941, 0.019683838, -0.017959595, -0.0154800415, 0.012489319, 0.034576416, -0.018096924, 0.009017944, 0.021270752, 0.013191223, 0.016448975, 0.011299133, -0.05697632, 0.022445679, 0.03741455, 0.027786255, 0.0075683594, 0.009994507, -0.016723633, -0.012527466, -0.00843811, 0.015686035, 0.00995636, -0.007911682, 0.0005803108, 0.018310547, -0.019226074, -0.015335083, 0.044799805, 0.06262207, -0.018554688, -0.022476196, -0.0020179749, -0.0019168854, 0.0345459, -0.0074653625, -0.017700195, -0.006175995, -0.0056419373, -0.039276123, 0.08343506, 0.014640808, -0.0014486313, -0.00982666, 0.01638794, 0.00793457, -0.04598999, 0.006401062, -0.0013599396, 0.009017944, -0.020858765, 0.016326904, 0.0018291473, -0.03652954, 0.004081726, 0.05105591, 0.034118652, -0.00092458725, 0.04324341, -0.0052375793, 0.012939453, 0.06161499, 0.021972656, 0.01902771, -0.013710022, 0.047088623, -0.058776855, 0.009994507, 0.014404297, 0.02003479, -0.020095825, -0.02558899, -0.034484863, 0.026245117, 0.003622055, -0.009384155, -0.014961243, 0.020263672, 0.006298065, 0.018188477, 0.0047721863, -0.01626587, -0.021499634, -0.06225586, -0.010940552, -0.03466797, 0.0058784485, -0.01687622, -0.048919678, -0.0012111664, -0.006046295, -0.0063934326, -0.011665344, -0.006374359, 0.013534546, 0.011947632, 6.735325e-05, -0.025650024, -0.0009551048, -0.018127441, -0.022735596, -0.053894043, -0.02217102, -0.08569336, -0.0317688, -0.041168213, -0.07495117, -0.053131104, 0.05340576, 0.02961731, -0.06793213, -0.0030841827, -0.01689148, -0.010635376, 0.011917114, -0.031799316, -0.051330566, -0.017562866, -0.017440796, 0.0069999695, 0.068359375, -0.009246826, 0.0050849915, 0.04058838, 0.03137207, 0.04095459, -0.014625549, -0.008659363, 0.005279541, 0.039764404, 0.04837036, 0.03527832, 0.00072813034, -0.025314331, 0.001332283, 0.04336548, -0.040924072, -0.015548706, -0.03387451, -0.0019054413, 0.02558899, -0.018371582, 0.010559082, -0.003850937, -0.09173584, 0.03225708, 0.01461792, -0.033691406, -0.0024738312, -0.06890869, -0.059326172, -0.03967285, 0.009857178, 0.009666443, 0.0018138885, 0.016067505, -0.015975952, 0.03173828, 0.0023498535, -0.029449463, 0.012710571, -0.0016756058, -0.004142761, -0.014289856, 0.033966064, -0.03375244, 0.018707275, 0.016525269, -0.03564453, 0.031951904, -0.01348114, 0.028320312, 0.00084495544, 0.045898438, -0.0018081665, 0.005874634, -0.003944397, 0.040100098, -0.0287323, 0.026107788, 0.001543045, -0.050445557, 0.054534912, -0.062347412, -0.06359863, 0.015296936, 0.012786865, -0.012687683, 0.0064468384, -0.03173828, 0.02998352, -0.04119873, -0.03286743, -0.08068848, -0.0012865067, 0.012481689, 0.048828125, 0.033081055, 0.033294678, 0.09008789, -0.009010315, 0.035339355, 0.04425049, -0.017974854, -0.03277588, -0.041931152, 0.04611206, 0.018035889, 0.016021729, -0.04421997, 0.009979248, -0.0049209595, -0.039886475, 0.02470398, -0.024093628, 0.038360596, 0.009597778, -0.016616821, -0.020233154, -0.030349731, 0.031311035, 0.025390625, -0.010650635, -0.046203613, -0.028427124, -0.01322937, -0.057250977, 0.099853516, 0.050750732, -0.018341064, 0.07489014, 0.082092285, 0.0027885437, 0.0040740967, 0.007785797, -0.0015172958, -0.0029678345, 0.050079346, -0.008201599, -0.014671326, 0.018310547, -0.0524292, 0.02722168, 0.018356323, -0.036376953, 0.008033752, -0.033996582, -0.049621582, -0.025466919, 0.032928467, 0.021759033, -0.01486969, -0.030014038, -0.051330566, 0.010017395, -0.062072754, -0.018737793, 0.020217896, -0.037475586, -0.009742737, 0.0012836456, -0.008171082, -0.012283325, 0.0018701553, 0.024108887, 0.0158844, -0.008384705, 0.011833191, 0.016983032, 0.023529053, -0.048828125, 0.017044067, -0.022323608, 0.015640259, 0.004650116, 0.0053596497, 0.02229309, 0.0035266876, 0.0022621155, 0.007217407, -0.0049057007, 0.04586792, 0.00057411194, -0.051757812, -0.024932861, 0.023742676, 0.04324341, -0.026123047, 0.018478394, -0.076538086, -0.0014047623, -0.024169922, -0.036712646, -0.02368164, 0.008277893, -0.010948181, -0.068237305, -0.03286743, 0.009468079, -0.064331055, -0.04333496, 0.01638794, -0.021697998, -0.020050049, -0.036712646, -0.019836426, -0.029647827, 0.026885986, -0.07849121, 0.005722046, 0.044158936, 0.033294678, 0.04812622, -0.056243896, -0.025222778, -0.031555176, 0.09716797, 0.0032749176, 0.057769775, -0.021072388, -0.03970337, -0.037963867, 0.015136719, 0.047943115, -0.0039482117, 0.03375244, -0.021652222, -0.077941895, -0.023101807, -0.00040984154, 0.0049057007, -0.039001465, -0.035491943, -0.022125244, 0.055023193, -0.0015907288, 0.011642456, -0.009712219, 0.0211792, -0.025497437, -0.0028514862, -0.045806885, 0.021591187, 0.006515503, 0.011833191, 0.009811401, -0.011184692, -0.0149383545, -0.00043606758, 0.033935547, 0.072753906, -0.012008667, -0.00061655045, -0.037078857, -0.011398315, -0.011795044, -0.0061302185, 0.035888672, -0.0423584, -0.018981934, -0.07873535, 0.06530762, 0.042388916, -0.006298065, 0.009933472, -0.013038635, -0.0075531006, -0.029922485, -0.010848999, -0.03250122, -0.018737793, -0.06994629, -0.04208374, 0.03451538, -0.054504395, 0.022857666, -0.014282227, -0.0042266846, 0.008682251, -0.036010742, 0.0435791, -0.011375427, 0.045410156, 0.017822266, 0.016830444, 0.017547607, 0.0015916824, -0.026565552, -0.01184082, -0.027038574, -0.029220581, -0.00012528896, -0.030059814, -0.014678955, 0.00056505203, 0.010536194, -0.038757324, 0.008026123, 0.038604736, -0.029037476, -0.001953125, 0.031677246, 0.0023078918, 0.015914917, -0.018066406, 0.03173828, -0.04385376, 0.002922058, 0.017868042, -0.016586304, -0.037872314, 0.025253296, -0.05621338, 0.05960083, 0.00025725365, -0.06329346, 0.047027588, -0.02279663, 0.0158844, -0.040649414, 0.04989624, -0.0070762634, 0.029907227, -0.091308594, 0.0074806213, 0.0069236755, 0.037628174, 0.016235352, -0.04058838, 0.014862061, -0.054107666, -0.012199402, 0.0035171509, 0.05819702, -0.036132812, -0.004020691, 0.031036377, 0.013191223, -0.030227661, 0.02822876, -0.038116455, -0.0009570122, -0.034362793, 0.013748169, 0.013908386, 0.0010604858, -0.006412506, -0.03439331, 0.018295288, 0.00062704086, -0.036193848, 0.0018758774, 0.0096588135, 0.009681702, 0.015808105, 0.03149414, 0.006965637, 0.016357422, -0.039215088, -0.044921875, -0.04888916, 0.016571045, -0.024383545, 0.050231934, -0.04284668, -0.013572693, 0.0057258606, -0.045959473, 0.004650116, 0.014961243, -0.025253296, -0.021835327, 0.0045776367, 0.01576233, 0.0006775856, 0.03643799, 0.06677246, -0.035339355, -0.020904541, -0.05206299, 0.032958984, -0.009239197, -0.0069465637, 0.08874512, 0.0053634644, 0.016403198, 0.01852417, 0.015525818, -0.02960205, 0.0027065277, -0.005115509, -0.038909912, -0.00077676773, -0.031707764, 0.0045928955, 0.013252258, -0.0140686035, 0.010887146, 0.04031372, 0.017868042, -0.037506104, -0.0065078735, 0.0022201538, 0.004299164, 0.002450943, 0.021575928, -0.005432129, -0.021133423, -0.016662598, -0.010307312, -0.070251465, -0.036956787, 0.031280518, 0.01890564, 0.009376526, -0.0038814545, 0.011428833, 0.038513184, -0.01991272, 0.04699707, -0.009140015, 0.00806427, 0.0073165894, 0.020309448, -0.0023422241, 0.010063171, -0.02394104, 0.0021820068, -0.02545166, 0.010543823, 0.0038433075, 0.040527344, -0.03967285, -0.0070533752, 0.02420044, 0.037353516, 0.016601562, 0.022750854, 0.024673462, -0.042816162, -0.045684814, 0.015609741, -0.017166138, -0.057525635, -0.037231445, 0.011886597, -0.04876709, 0.020889282, -0.016403198, 0.028564453, 0.016036987, 0.024398804, -0.0023498535, -0.011756897, 0.016113281, 0.0003414154, 0.010131836, 0.005672455, -0.04663086, 0.0057258606, -0.028778076, -0.012672424, 0.0036392212, -0.010391235, 0.017501831, 0.048217773, 0.0152282715, -0.005065918, -0.018569946, 0.049468994, 0.0317688, -0.11224365, 0.030075073, 0.012123108, -0.0059013367, 0.020355225, -0.07269287, -0.03756714, -0.007675171, 0.04663086, -0.01878357, 0.04159546, -0.00573349, 0.01398468, -0.0010938644, -0.0096206665, -0.0040626526, -0.016021729, 0.005241394, 0.002828598, 0.013710022, 0.0043640137, -0.06311035, -0.015274048, 0.053894043, -0.014823914, -0.002866745, 0.020904541, 0.029052734, -0.035186768, 0.02986145, -0.0206604, -0.007583618, 0.024993896, 0.0064430237, 0.010139465, 0.023483276, 0.02571106, -0.012542725, 0.017166138, -0.030197144, 0.042053223, -0.01991272, 0.06677246, 0.028945923, 0.0057373047, -0.027359009, -0.032226562, -0.0051345825, -0.007926941, 0.014183044, -0.010322571, 0.03363037, 0.023757935, -0.014205933, 0.037139893, 0.040924072, 0.007698059, 0.035461426, 0.0012130737, -0.03479004, -0.009552002, 0.02267456, 0.010894775, 0.022506714, -0.015472412, -0.00017094612, 0.027679443, 0.0066604614, 0.018249512, 0.02381897, 0.010063171, 0.0042762756, -0.06939697, 0.036132812, -0.008613586, 0.07495117, -0.039276123, -0.02142334, -0.020111084, -0.014442444, -0.00034046173, -0.01751709, -0.056915283, 0.025650024, 0.010345459, -0.028823853, 0.009284973, -0.010429382, -0.00085163116, -0.06112671, 0.0014781952, -0.013870239, 0.013435364, 0.005344391, 0.0463562, -0.025726318, -0.07720947, -0.025466919, 0.036956787, -0.06329346, -0.03302002, -0.028121948, 0.030181885, 0.019485474, 0.01133728, 0.06137085, 0.05633545, 0.019134521, 0.014450073, -0.007904053, -0.008331299, -0.017715454, -0.014350891, -0.012458801, -0.008773804, -0.0052375793, 0.031402588, 0.00223732, 0.012466431, 0.04168701, 0.00014436245, -0.021408081, 0.0019702911, -0.010375977, -0.010421753, -0.02961731, 0.019577026, -0.020553589, -0.008934021, -0.03894043, 0.01889038, 0.00970459, 0.017349243, 0.035003662, 0.020645142, 0.023910522, 0.0048942566, -0.06112671, -0.033294678, -0.023880005, 0.016204834, 0.024978638, 0.06976318, 0.015838623, 0.025787354, -0.00957489, 0.027252197, -0.0132751465, -0.043823242, 0.02293396, -0.045410156, 0.004524231, -0.0013008118, -0.042633057, 0.020095825, 0.0047454834, -0.013595581, 0.057891846, 0.00069618225, -0.0151901245, -0.018707275, -0.035339355, 0.008529663, -0.021469116, -0.050750732, 0.012504578, -0.004989624, -0.025512695, 0.019973755, 0.0024547577, 0.024658203, -0.019424438, -0.024108887, -0.029327393, 0.023971558, 0.028640747, 0.014091492, -0.03189087, 0.015411377, 0.005935669, 0.041503906, -0.044799805, -0.05215454, -0.051727295, 0.026290894, 0.032470703, 0.0015850067, 0.09057617, -0.026733398, 0.02192688, 0.020370483, 0.009437561, -0.017700195, 0.02810669, 0.012298584, 0.0038700104, 0.019989014]}, "B08YLPZZ65": {"id": "B08YLPZZ65", "original": "Brand: Bunker Up Fishin\nName: Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue\nDescription: Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2\" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!\nFeatures: Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking\nElectric Start - Simply push a button to start the burner on this mini travel smoker grill\nConverts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use\nBuilt in Thermometer - Barbeque to perfection with the easy to read temperature gauge\nFast and quick set up - Very simple to install and remove - makes the perfect boat accessories\n", "metadata": {"Name": "Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue", "Brand": "Bunker Up Fishin", "Description": "Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2\" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!", "Features": "Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking\nElectric Start - Simply push a button to start the burner on this mini travel smoker grill\nConverts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use\nBuilt in Thermometer - Barbeque to perfection with the easy to read temperature gauge\nFast and quick set up - Very simple to install and remove - makes the perfect boat accessories", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.056427002, 0.023910522, 0.009017944, 0.020217896, 0.016830444, -0.035247803, 0.05267334, -0.0637207, -0.0023422241, 0.009864807, -0.025497437, 0.008666992, -0.014411926, -0.027786255, 0.0149383545, -0.033081055, 0.015777588, -0.0013628006, -0.005558014, -0.034942627, -0.00046777725, -0.018859863, -0.056762695, 0.089904785, 0.050048828, -0.009712219, 0.030288696, -0.00793457, 0.048431396, 0.0059432983, 0.0390625, -0.052581787, 0.037719727, 0.006477356, -0.030700684, -0.014320374, -0.026535034, 0.010726929, -0.016448975, 0.0057640076, 0.026321411, -0.0056419373, -0.07623291, 0.02319336, -0.054260254, -0.08026123, 0.041656494, 0.00013685226, -0.020889282, -0.007369995, 0.009849548, 0.008720398, 0.025161743, -0.011207581, 0.0040245056, 0.026367188, -0.021911621, -0.016601562, 0.012908936, 0.015930176, 0.013389587, -0.0067749023, 0.029220581, 0.01739502, -0.029525757, -0.0051879883, 0.088378906, -0.010749817, 0.012504578, -0.02545166, 0.013717651, 0.044311523, 0.020111084, 0.011833191, -0.00856781, -0.052093506, 0.017730713, -0.014099121, 0.0132751465, 0.013908386, -0.037353516, -0.013671875, 0.02142334, -0.027526855, 0.00043320656, 0.011703491, -0.02835083, -0.006149292, -0.010864258, -0.027694702, 4.1782856e-05, 0.009117126, -0.045654297, 0.034729004, -0.008811951, -0.004722595, 0.0073165894, -0.025772095, 0.018966675, 0.0317688, 0.0044517517, -0.033691406, 0.051605225, -0.014404297, -0.011695862, 0.052001953, 0.00016021729, -0.009399414, -0.0031585693, -0.0003914833, -0.008605957, -0.05770874, -0.022384644, 0.00484848, -0.030303955, 0.030258179, -0.025054932, 0.0026988983, -0.0009775162, 0.019958496, -0.036621094, -0.019607544, -0.027374268, -0.023376465, 0.053894043, 0.008796692, 0.0010147095, 0.050445557, -0.06964111, 0.035339355, -0.029846191, -0.009506226, 0.06970215, 0.081848145, 0.023101807, -0.026931763, -0.0036449432, -0.020492554, 0.023864746, 0.014312744, -0.014381409, -0.023788452, 0.030441284, 0.009529114, -0.041107178, -0.0018815994, 0.03540039, 0.035888672, -0.02571106, -0.045074463, 0.00040268898, 0.041015625, 0.0390625, -0.0027103424, -0.060516357, -0.01776123, -0.043914795, -0.020935059, -0.0063667297, -0.04119873, -0.02281189, -0.021011353, 0.0014572144, -0.058044434, -0.07110596, 0.015434265, -0.021621704, -0.012367249, 0.008491516, 0.0209198, -0.02671814, 0.02218628, -0.009094238, -0.033325195, -0.018173218, -0.024658203, -0.026321411, 0.07598877, 0.05645752, -0.12188721, -0.0690918, -0.05267334, 0.12371826, -0.027999878, -0.009300232, 0.025283813, 0.010437012, 0.021255493, -0.01008606, 0.014526367, 0.004306793, 0.040740967, -0.036499023, 0.0025043488, 0.019882202, 0.041900635, -0.08544922, 0.025390625, -0.0119018555, -0.038635254, 0.0013742447, 0.021606445, -0.011581421, 0.024841309, 0.030349731, -0.016036987, 0.012763977, -0.0030593872, 0.038085938, 0.02482605, -0.008338928, 0.0028820038, 0.010108948, -0.068115234, -0.049713135, -0.01550293, -0.038848877, 0.05493164, -0.009971619, 0.062683105, -0.036132812, -0.04425049, -0.013618469, -0.025375366, 0.05307007, -0.013298035, -0.011444092, -0.017227173, 0.050048828, -0.0037117004, -0.011146545, 0.03338623, 0.06707764, 0.033996582, -0.0501709, 0.016921997, 0.013198853, 0.05343628, -0.029144287, 0.010757446, 0.013290405, 0.0013799667, -0.04559326, -0.0022964478, -0.045806885, -0.06500244, -0.014198303, 0.010696411, 0.013320923, 0.042236328, 0.0070228577, 0.0015974045, 0.010292053, 0.0018692017, -0.018615723, 0.03277588, -0.006175995, 0.030578613, -0.09564209, 0.042755127, -0.01626587, 0.03265381, 0.022109985, 0.0043678284, 0.013328552, 0.008560181, 0.021026611, 0.01890564, -0.02067566, -0.0012683868, 0.016311646, 0.027755737, -0.015281677, -0.009895325, 0.024856567, -0.016571045, -0.03845215, 0.024871826, -0.008033752, -0.029891968, -0.0154800415, -0.02078247, 0.008468628, 0.0006284714, 0.015090942, -0.0141067505, 0.02067566, -0.0021514893, -0.04876709, -0.050811768, -0.0096206665, -0.017593384, -0.04220581, -0.0037670135, -0.009147644, -0.032684326, 0.037384033, 0.032440186, -0.010772705, 0.0016307831, -0.014732361, 0.023712158, -0.02180481, -0.012924194, -0.01309967, 0.032073975, -0.028289795, 0.03125, 0.027938843, -0.06506348, 0.045562744, 0.03387451, 0.03866577, -0.030075073, 0.04550171, 0.027832031, -0.008224487, 0.0362854, 0.028900146, 0.043060303, -0.054901123, 0.013046265, -0.026519775, 0.0118637085, 0.018722534, 0.028198242, -0.019622803, 0.003929138, 0.021469116, -0.0032844543, -0.01525116, -0.0041007996, -0.022903442, -0.0050315857, -0.0070266724, -0.007663727, 0.0021800995, 0.026794434, -0.00774765, -0.036376953, -0.014038086, -0.023162842, 0.00356102, -0.024383545, -0.012763977, -0.044189453, 0.036132812, 0.005493164, -0.030807495, 0.003396988, 0.022979736, -0.027297974, 0.006580353, -0.027679443, -0.005191803, -0.054107666, -0.01876831, -0.033233643, -0.046325684, -0.07501221, -0.0043411255, -0.0023880005, -0.027313232, -0.038909912, 0.02027893, -0.0063476562, -0.031219482, -0.009552002, 0.031402588, 0.025817871, 0.027130127, 0.040161133, -0.051696777, -0.01889038, 0.0015897751, -0.023925781, -0.022781372, -0.05508423, -0.0056991577, -0.036193848, -0.018600464, -0.002401352, 0.04550171, 0.047210693, -8.6426735e-06, 0.03756714, 0.02168274, 0.027252197, -0.015586853, -0.03439331, -0.0006866455, 0.05722046, -0.037139893, -0.0209198, 0.026275635, 0.0048561096, -0.0006260872, -0.016342163, -0.03942871, -0.027893066, -0.079589844, 0.013244629, -0.014007568, -0.021270752, -0.004055023, -0.07897949, -0.02418518, -0.06970215, 0.011497498, 0.0057678223, -0.0060272217, 0.036712646, -0.04095459, 0.04473877, -0.025466919, -0.025634766, 0.010368347, -0.0138549805, 0.0071868896, -0.041778564, 0.008850098, -0.029373169, 0.013450623, 0.022842407, -0.008758545, 0.0018854141, -0.014579773, 0.013717651, -0.02772522, -0.018661499, -0.015838623, -0.029785156, -0.0036506653, 0.011985779, -0.0093688965, 0.013847351, 0.010047913, -0.019454956, 0.036590576, -0.046783447, -0.036956787, -0.021148682, -0.042114258, 0.014472961, -0.047027588, 0.0051574707, -0.00699234, -0.03753662, 0.0030174255, -0.032409668, -0.0023765564, 0.0129776, 0.061401367, 0.02003479, 0.009857178, 0.012786865, 0.034576416, 0.05432129, 0.019561768, -0.01109314, -0.013656616, -0.044769287, 0.022201538, 0.02960205, 0.0014657974, -0.0597229, 0.016586304, -0.0019483566, 0.006855011, -0.008529663, -0.036712646, 0.08294678, 0.0057525635, 0.015342712, -0.0072746277, 0.023361206, 0.008583069, 0.034362793, -0.04034424, -0.028244019, -0.045654297, 0.0033988953, -0.072509766, 0.088134766, 0.052825928, -0.02758789, 0.08074951, 0.07495117, -0.0181427, 0.049346924, 0.010231018, -0.009033203, -0.009536743, 0.06304932, -0.041534424, 0.026351929, 0.004085541, -0.013183594, 0.03955078, 0.03945923, -0.07116699, 0.020141602, 0.02960205, -0.06518555, -0.03604126, 0.005683899, -0.0031147003, -0.01763916, 0.0045928955, -0.045959473, -0.03353882, -0.02897644, 0.026870728, 0.0027694702, 0.008155823, -0.006298065, 0.0035114288, 0.020004272, -0.035095215, -0.013046265, 0.004924774, -0.008262634, 0.025421143, 0.031143188, -0.022247314, 0.018356323, -0.013435364, 0.003944397, -0.032470703, 0.023635864, 0.025878906, 0.018814087, 0.04058838, -0.015304565, -0.009567261, -0.030792236, -0.01763916, 0.012565613, -0.027786255, -0.0385437, -0.010047913, 0.019210815, 0.023956299, -0.011222839, 0.026901245, -0.037475586, 0.009513855, -0.0072135925, -0.07208252, 0.0037059784, -0.030761719, -0.013504028, -0.08203125, -0.017456055, -0.0021076202, 0.040924072, -0.04788208, 0.034973145, -0.01965332, -0.013595581, -0.03503418, 0.0061187744, -0.044525146, 0.030639648, -0.05480957, 0.003129959, 0.04788208, 0.03366089, -0.00042963028, -0.008422852, -0.010215759, 0.010322571, 0.06689453, -0.03173828, 0.013587952, -0.049194336, 0.005622864, 0.0034828186, 0.030059814, 0.049194336, -0.009017944, 0.020233154, -0.028015137, 0.0043296814, -0.049713135, -0.015853882, 0.046203613, -0.028442383, -0.030151367, -0.026641846, 0.04724121, -0.01725769, 0.008857727, -0.025009155, -0.01979065, -0.004535675, 0.002243042, -0.042907715, -0.017501831, 0.0013685226, 0.035491943, -0.033935547, -0.011047363, -0.011253357, 0.051483154, -0.055603027, 0.021499634, 0.012741089, -0.012138367, -0.014770508, -0.017410278, 0.041534424, -0.033172607, -0.01864624, -0.04067993, 0.020446777, -0.07067871, 0.091674805, 0.09069824, -0.019714355, -0.0051956177, 0.038909912, -0.040802002, -0.06463623, 0.029067993, -0.015045166, -0.028778076, 0.010192871, -0.0037059784, -0.0032672882, -0.013404846, -0.006717682, -0.030960083, -0.018707275, 0.0017194748, -0.005302429, 0.006591797, -0.015853882, 0.019439697, 0.03665161, 0.010421753, 0.006866455, 0.011413574, -0.005554199, 0.0053596497, -0.020767212, -7.933378e-05, 0.011184692, -0.0033111572, 0.0031967163, 0.008178711, -0.011871338, -0.05441284, -0.017593384, 0.0362854, -0.024368286, 0.0017795563, 0.036224365, 0.013389587, 0.0008530617, -0.021652222, 0.040771484, -0.0056419373, -0.031982422, -0.012680054, -0.017211914, -0.04385376, 0.0368042, -0.053375244, 0.030044556, 0.00434494, -0.03765869, 0.036346436, 0.009849548, -0.00048041344, -0.03451538, 0.027023315, -0.005012512, -0.024475098, -0.029785156, 0.004837036, 0.010009766, 0.022445679, 0.008407593, -0.036315918, 0.033966064, -0.03744507, -0.026611328, 0.0104599, 0.04119873, -0.03579712, -0.029525757, 0.002374649, -0.05911255, -0.053833008, -0.02822876, 0.0028305054, 0.02609253, -0.049621582, -0.024169922, 0.04019165, 0.0211792, -0.018356323, -0.0018587112, -0.013664246, 0.024017334, -0.019882202, 0.02381897, -0.04748535, -0.01184845, -0.004627228, 0.038330078, 0.013214111, 0.0035209656, 0.015563965, -0.02658081, -0.0074806213, 0.0206604, -0.011657715, 0.0054855347, -0.01612854, -0.017196655, 0.015083313, 0.019378662, 0.02810669, 0.019500732, -0.046142578, -0.0071525574, 0.0057029724, 0.0021705627, -0.030212402, -0.0042419434, 0.07684326, -0.05496216, -0.054382324, -0.04711914, 0.08178711, -0.02406311, 0.0070724487, 0.038238525, -0.00969696, 0.022506714, 0.027694702, 0.0046920776, -0.05404663, -0.008224487, -0.012710571, -0.07281494, -0.0022678375, -0.042663574, 0.006263733, 0.038970947, 0.041656494, -0.0146865845, 0.04824829, -0.019012451, -0.052886963, -0.055847168, 0.024520874, 0.0052871704, -0.03201294, 0.023040771, -0.0062713623, -0.03555298, -0.022705078, -0.05105591, -0.038085938, 0.0049591064, 0.059051514, 0.02494812, 0.02809143, -0.041107178, 0.033843994, 0.049621582, -0.013717651, 0.08093262, 0.003129959, -0.029388428, 0.018722534, 0.006500244, -0.016555786, 0.027526855, -0.007118225, 0.013259888, -0.02935791, 0.005050659, 0.009010315, 0.016799927, -0.05038452, -0.018447876, 0.012214661, 0.036315918, 0.011070251, -0.0074501038, 0.037109375, 0.023452759, -0.035125732, 0.00019085407, 0.036621094, -0.020446777, -0.027618408, -0.018005371, -0.0028934479, 0.03250122, -0.00050497055, 0.038726807, 0.02696228, 0.029174805, -0.04421997, 0.027770996, -0.0021953583, -0.019210815, 0.06298828, -0.026657104, 0.047088623, -0.0287323, -0.019012451, 0.03488159, -0.03161621, -0.052215576, 0.020446777, 0.025650024, -0.019989014, 0.03515625, 0.020843506, 0.039398193, 0.01828003, -0.066589355, 0.004787445, -0.041503906, 0.016082764, -0.0093688965, -0.052612305, -0.015960693, -0.018814087, 0.02243042, -0.0017299652, 0.025650024, -0.005256653, 0.036346436, -0.032684326, 0.009986877, -0.0317688, -0.030715942, 0.018371582, 0.02557373, 0.0035858154, 0.008178711, 0.015174866, 0.008506775, 0.039245605, -0.016937256, -0.0074043274, -0.019012451, 0.01663208, 0.0024528503, -0.0010290146, -0.027664185, -0.009689331, 0.07434082, 0.008766174, -0.009529114, -0.001912117, 0.022491455, -0.00026345253, 0.024154663, -0.023513794, 0.036254883, -0.0038795471, 0.060516357, 0.02734375, 0.019241333, -0.02178955, -0.0335083, -0.020095825, -0.0005559921, -0.011489868, 0.01625061, 0.0061836243, -0.0140686035, 0.008415222, 0.036590576, 0.073913574, -0.01033783, 0.04574585, -0.004508972, 0.014328003, 0.04135132, 0.014099121, -0.0032367706, 0.0015249252, -0.015716553, -0.002445221, 0.023757935, -0.02998352, -0.0031757355, 0.00712204, 0.013015747, -0.04360962, 0.014762878, -0.007873535, -0.03564453, 0.035339355, -0.053009033, -0.00831604, -0.052124023, -0.043762207, -0.019943237, -0.0390625, -0.0736084, 0.050201416, -0.0423584, 0.00013184547, 0.020843506, -0.009094238, 0.021743774, -0.013664246, 0.028839111, 0.029541016, 0.010215759, -0.013832092, 0.05822754, -0.036102295, -0.00819397, -0.012039185, -0.0146865845, -0.013298035, 0.0068893433, -0.024902344, 0.012619019, 0.0038261414, -0.017318726, 0.023651123, 0.054840088, 0.017684937, -0.0005431175, -0.020080566, -0.012268066, -0.043518066, 0.055786133, 0.00793457, -0.03665161, 0.010665894, 0.03744507, 0.012557983, 0.020645142, 0.052368164, -0.020004272, -0.05078125, -0.04058838, -0.062194824, 1.0848045e-05, -0.01210022, -0.01878357, 0.024749756, 0.007209778, -0.052703857, -0.024108887, 0.011688232, 0.036590576, 0.012413025, 0.016952515, 0.017349243, -0.016616821, -0.016937256, -0.014419556, -0.012802124, 0.024856567, -0.011268616, -0.04611206, 0.028396606, 0.007205963, -0.033447266, -0.0051002502, 0.032165527, -0.009132385, -0.0057411194, -0.014129639, 0.006664276, -0.017364502, -3.8206577e-05, 0.030792236, -0.016326904, -0.034454346, -0.032196045, 0.025650024, -0.009674072, -0.0006008148, -0.005996704, 0.027267456, 0.003168106, 0.024032593, 0.010803223, -0.062683105, 0.03753662, 0.027435303, 0.020309448, 0.0107803345, 0.010002136, -0.055419922, -0.038513184, -0.0029659271, 0.03137207, -0.015296936, -0.07183838, 0.056243896, 0.02973938, 0.024459839, -0.0070648193, -0.0793457, -0.04611206, 0.015525818, -0.01689148, -0.00025510788, 0.002319336, 0.02381897, -0.0022659302, 0.030044556, -0.030532837, -0.0072288513, -0.0015821457, 0.031982422, 0.017425537, -0.0057907104]}, "B071NWQ8Q9": {"id": "B071NWQ8Q9", "original": "Brand: MASTER COOK\nName: MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel\nDescription: \nFeatures: \u25ba36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner\n\u25baThis propane gas grill has integrated piezo ignition system ensures quick and reliable startups\n\u25ba400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack\n\u25baStylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control\n\u25baStable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want\n", "metadata": {"Name": "MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel", "Brand": "MASTER COOK", "Description": "", "Features": "\u25ba36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner\n\u25baThis propane gas grill has integrated piezo ignition system ensures quick and reliable startups\n\u25ba400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack\n\u25baStylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control\n\u25baStable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.011108398, -0.0016965866, -0.015670776, 0.019424438, -0.009796143, -0.020751953, 0.019699097, 0.002166748, -0.021270752, -0.0074691772, 0.025360107, 0.0077705383, -0.012001038, -0.046875, 0.017608643, -0.021636963, 0.008491516, 0.011894226, 0.0054512024, -0.025558472, 0.01713562, -0.0024642944, -0.013458252, 0.03756714, 0.0413208, -0.029281616, -0.03878784, 0.010261536, 0.03604126, 0.025512695, 0.023803711, -0.02494812, 0.04147339, -0.008766174, -0.016662598, -0.079589844, 0.03729248, -0.045959473, -0.045837402, 0.023986816, -0.022140503, 0.030899048, -0.009918213, -0.014099121, -0.026489258, -0.053833008, -0.00982666, -0.02003479, 0.01902771, -0.015975952, 0.0045204163, -0.0009737015, 0.018218994, -0.013801575, -0.032226562, -0.011314392, 0.06793213, 0.012123108, 0.033081055, -0.052246094, -0.062927246, 0.020614624, 0.03817749, -0.0022621155, -0.028564453, 0.005001068, 0.053466797, -0.002735138, 0.0046958923, -0.03881836, -0.009643555, 0.023254395, 0.013549805, 0.014442444, -0.0413208, -0.012763977, 0.024490356, 0.011451721, 0.037017822, -0.008552551, -0.0051612854, -0.005508423, 0.026382446, -0.03933716, 0.01878357, -0.013069153, -0.02217102, 0.0024871826, -0.02116394, -0.00016355515, -0.011421204, -0.033935547, 0.0015230179, 0.033172607, -0.002111435, -0.00944519, -0.036102295, -0.09246826, 0.036590576, -0.0032520294, 0.02368164, -0.028686523, -0.0031852722, 0.025558472, -0.017700195, 0.09790039, 0.036132812, 0.06744385, -0.011138916, -0.033721924, 0.010856628, -0.055023193, -0.01914978, 0.0002503395, -0.045532227, 0.057525635, -0.02003479, -0.02835083, -0.019515991, 0.028625488, -0.043792725, -0.0154418945, 0.011108398, -0.016326904, 0.021011353, 0.0053138733, 0.00056934357, -0.009536743, -0.061431885, 0.04574585, -0.023529053, -0.025039673, 0.053710938, 0.09301758, 0.035705566, -0.027770996, 0.0062294006, -0.042999268, 0.015640259, -0.0033721924, 0.010063171, -0.011734009, 0.031707764, 0.0052871704, -0.044189453, 0.022369385, 0.027069092, 0.0045814514, -0.04550171, -0.070129395, -0.0032691956, -0.01600647, 0.0181427, 0.022476196, -0.05380249, 0.043304443, -0.028823853, 0.024810791, -0.037719727, -0.008026123, -0.02418518, -0.038879395, -0.024597168, 0.007381439, -0.041625977, 0.08123779, 0.024276733, -0.0012521744, 0.017944336, 0.04949951, -0.02406311, -0.009429932, -0.0099487305, 0.019424438, -0.011398315, 0.021453857, 0.002960205, 0.02279663, 0.035888672, -0.036071777, -0.040924072, -0.053222656, 0.07336426, -0.039123535, -0.02255249, 0.0126953125, 0.0047950745, 0.0287323, 0.02619934, 0.007751465, 0.0075187683, 0.0035972595, 0.00036644936, 0.01272583, 0.05847168, -0.0045547485, -0.060333252, -0.01335144, 3.6597252e-05, -0.06896973, 0.009384155, 0.035949707, -0.0034065247, 0.011070251, -0.006752014, 0.01449585, 0.005622864, 0.014221191, 0.027328491, 0.027114868, -0.018188477, -0.0016298294, 0.013679504, -0.068359375, -0.024215698, 0.022705078, -0.006652832, -0.008590698, 0.015899658, -0.016296387, 0.04559326, 0.009117126, 0.028671265, -0.00012731552, 0.01889038, 0.0016908646, -0.019744873, -0.0030879974, 0.024230957, 0.033416748, -0.03213501, -0.0023002625, 0.08831787, 0.08514404, -2.348423e-05, 0.013214111, 0.0569458, -0.006160736, -0.017929077, -0.014533997, 0.0058135986, -0.01737976, -0.032165527, 0.013900757, -0.023361206, 0.0053863525, 0.030563354, -0.006511688, -0.028305054, -0.004562378, 0.030075073, -0.017318726, 0.038085938, -0.006832123, -0.03778076, 0.026550293, -0.018814087, -0.0059165955, -0.038391113, 0.040374756, -0.0030975342, 0.0058670044, -0.010894775, -0.006099701, 0.0050354004, 0.025039673, -0.008033752, 0.00015199184, -0.043792725, 0.036102295, 0.02583313, -0.01852417, -0.0085372925, -0.022735596, 0.008132935, 0.0033912659, -0.035858154, 0.03353882, -0.003753662, -0.021911621, 0.011360168, -0.021194458, -0.028320312, 0.011627197, 0.028320312, 0.018615723, 0.02558899, 0.058380127, 0.0013465881, -0.0051956177, 0.026397705, -0.014152527, -0.020996094, 0.01008606, -0.024551392, -0.03778076, 0.07910156, 0.017242432, 0.001912117, -0.007843018, 0.024459839, 0.027496338, -0.040161133, -0.0016365051, 0.017044067, 0.010734558, 0.020401001, 0.02722168, 0.016326904, -0.02406311, 0.010383606, 0.0009264946, 0.0099487305, 0.015823364, 0.015426636, -0.012237549, 0.010398865, 0.038238525, 0.020339966, 0.029907227, -0.0036468506, 0.020690918, -0.055664062, -0.009490967, 0.017807007, 0.02218628, -0.0418396, -0.023529053, -0.023132324, 0.007160187, 0.010520935, -0.0006532669, 0.008628845, -0.0034122467, -0.022079468, -0.0022506714, 0.0018539429, 0.032318115, -0.023605347, -0.05480957, -0.0055274963, -0.035064697, 0.0017681122, 0.012435913, -0.046722412, 0.018005371, 0.017333984, 0.023071289, -0.048797607, -0.006767273, 0.013076782, -0.035247803, -0.0031089783, -0.040130615, -0.011054993, 0.0017557144, -0.018341064, -0.04458618, -0.008049011, -0.064331055, -0.042022705, -0.0031776428, -0.064819336, -0.0317688, 0.0725708, -0.01828003, -0.0368042, -0.024810791, -0.02746582, 0.020385742, 0.01586914, -0.0048217773, -0.045959473, -0.030685425, -0.051605225, 0.0011739731, 0.03265381, -0.017211914, 0.016204834, 0.01600647, 0.037902832, 0.037139893, -0.0154953, -0.0006079674, -0.0028629303, 0.02758789, 0.033569336, 0.050567627, -0.0011310577, -0.03164673, -0.0062675476, 0.06591797, -0.03643799, -0.01939392, 0.042877197, 0.03225708, -0.013092041, 0.007762909, -0.057739258, -0.023101807, -0.07122803, 0.010223389, -0.00945282, -0.03286743, 0.019256592, -0.0881958, -0.031677246, -0.04385376, 0.015312195, 0.034576416, -0.0019454956, -0.0059509277, -0.028457642, 0.012359619, 0.00025773048, -0.010559082, -0.01373291, -0.017364502, 0.004547119, 0.011474609, 0.02696228, -0.037506104, 0.030044556, 0.045196533, -0.018203735, -0.0033054352, -0.0059547424, -0.00024533272, 0.0021915436, 0.03286743, -0.004047394, 0.006439209, -0.04650879, -0.0020694733, 0.032440186, 0.036224365, 0.020645142, -0.048553467, 0.033935547, -0.0077705383, -0.07055664, -0.051208496, 0.0072021484, 0.029907227, 0.0071029663, -0.007926941, -0.07299805, -0.062805176, -0.029174805, -0.05090332, -0.0022716522, 0.018295288, 0.008636475, 0.016479492, 0.0016736984, 0.07385254, 0.03805542, 0.05114746, 0.012184143, -0.046142578, -0.053466797, -0.052337646, 0.030288696, 0.0079574585, 0.00038456917, -0.024551392, 0.0110321045, 0.009750366, -0.015182495, 0.012557983, -0.0044784546, 0.04562378, 0.044067383, -0.0054626465, -0.030639648, -0.0234375, 0.05758667, -0.00045251846, -0.0013856888, -0.061157227, -0.04522705, 0.0031776428, -0.10040283, 0.10583496, 0.04107666, -0.015319824, 0.08721924, 0.05593872, -0.022506714, 0.01939392, 0.0053138733, -0.021636963, -0.027832031, 0.03665161, -0.055847168, 0.03250122, 0.02822876, -0.011856079, 0.026794434, 0.014450073, -0.050872803, 0.025543213, -0.017059326, -0.052856445, -0.046661377, 0.02519226, 0.021697998, -0.025512695, -0.0028972626, -0.058013916, -0.015556335, -0.060028076, 0.064453125, -0.0026340485, -0.010261536, -0.029067993, -0.0070648193, -0.020843506, -0.027694702, 0.013961792, -0.012031555, -0.012931824, 0.0018224716, 0.04019165, 0.0045776367, 0.015327454, -0.044647217, 0.0034484863, -0.008140564, -0.009895325, 0.03414917, -0.0066108704, 0.037872314, 0.028076172, -0.032226562, 0.011940002, -0.007896423, 0.027893066, -0.016723633, -0.05041504, -0.007911682, 0.01285553, 0.023132324, -0.04043579, -0.00944519, -0.050354004, 0.00021970272, 0.004638672, -0.08709717, -0.0069236755, 0.02218628, 0.031341553, -0.058685303, -0.010902405, -0.008544922, -0.037200928, -0.053527832, 0.017990112, 0.0076560974, -0.013671875, -0.0038642883, 0.009597778, -0.04864502, 0.012413025, -0.06323242, -0.003894806, 0.03237915, 0.01991272, 0.058776855, -0.03878784, 0.024536133, -0.026016235, 0.08526611, 0.0032596588, 0.0006980896, -0.031082153, -0.052093506, -0.02810669, 0.026901245, 0.050689697, -0.03189087, 0.036224365, -0.012268066, -0.070739746, -0.052093506, 0.0033340454, 0.029891968, -0.036895752, -0.03353882, -0.0069122314, 0.06585693, -0.014640808, 0.017288208, 0.010147095, 0.0116119385, 0.006729126, -0.0069618225, -0.07562256, -0.014144897, -0.0038642883, -0.025985718, 0.0021095276, -0.014381409, -0.016281128, 0.03793335, 0.053344727, 0.026397705, -0.021072388, 0.003730774, 0.013267517, -0.00040388107, 0.00217247, -0.034729004, 0.017227173, -0.016098022, 0.002199173, -0.06427002, 0.06878662, 0.059753418, -0.028335571, -0.00027656555, 0.0017690659, -0.041137695, -0.04156494, 0.0043182373, 0.027938843, 0.0017957687, -0.012817383, -0.033172607, 0.028762817, -0.028701782, 0.0076293945, 0.010620117, -0.0035991669, 0.030227661, -0.01789856, 0.0048446655, -0.023529053, -0.019973755, 0.030212402, 0.008460999, 0.011604309, -0.011428833, -0.00043988228, 0.025543213, -0.0063705444, -0.0021209717, -0.0018043518, -0.016220093, -0.011482239, -0.0015115738, 0.0024814606, -0.00793457, -0.024230957, 0.02067566, -0.018997192, -0.015449524, -0.0009484291, 0.029830933, -0.01272583, -0.03579712, 0.050079346, -0.014152527, 0.01838684, 0.042541504, -0.013923645, -0.00920105, 0.021636963, -0.02909851, 0.04248047, -0.014007568, -0.04244995, 0.040496826, -0.028808594, -0.00013267994, -0.061462402, 0.06878662, -0.0037021637, 0.018249512, -0.094055176, 0.0036315918, 0.0006599426, 0.021942139, 0.012802124, -0.025421143, 0.05606079, -0.0335083, -0.046966553, 0.0029582977, 0.024414062, -0.020233154, 0.019805908, -0.0022068024, -0.005050659, -0.02796936, -0.0064888, -0.048583984, 0.045898438, -0.007347107, 0.030426025, 0.028778076, 0.016113281, -0.027450562, -0.025680542, 0.009498596, 0.010398865, -0.033996582, 0.0357666, -0.007472992, -0.020141602, 0.036254883, 0.04296875, -0.0049858093, 0.01499939, -0.039001465, -0.055419922, -0.059906006, 0.014930725, -0.020477295, 0.042114258, -0.042114258, -0.038970947, 0.008155823, 0.0026397705, 0.019332886, 0.006580353, -0.05609131, -0.036621094, -0.0012598038, 0.026031494, 0.02003479, 0.003019333, 0.081604004, -0.03491211, -0.03250122, -0.11187744, 0.033447266, 0.021835327, -0.008148193, 0.06500244, 0.07965088, -0.015426636, 0.03439331, -0.030319214, -0.029754639, -0.022888184, -0.009391785, -0.078552246, -0.02784729, -0.035369873, 0.017837524, -0.025772095, -0.012786865, 0.011222839, 0.050109863, -0.0011634827, -0.04373169, 0.0018911362, -0.003736496, 0.006137848, -0.01965332, -0.0025863647, -0.016662598, -0.015716553, -0.030532837, -0.034088135, -0.023529053, -0.0036010742, 0.025619507, 0.018920898, -0.0021076202, -0.0064735413, -0.0033130646, 0.0017375946, -0.0037498474, 0.04598999, -0.005680084, 0.0085372925, 0.0090408325, 0.027145386, -0.03250122, 0.035003662, -0.030929565, 0.0074386597, -0.028549194, -0.004928589, 0.015960693, 0.030517578, -0.036621094, 0.0053520203, 0.0151901245, 0.030731201, 0.03265381, -0.0051574707, 0.013145447, 0.0152282715, -0.008811951, -0.0006928444, 0.042938232, -0.009590149, -0.029266357, -0.036987305, -0.025634766, 0.016174316, -0.0027065277, 0.043304443, 0.0018386841, 0.011520386, -0.0067825317, 0.015777588, 0.01398468, 0.0058898926, 0.024780273, -0.025604248, -0.030670166, -0.00080633163, 0.010551453, 0.02659607, -0.009223938, -0.028320312, -0.02281189, 0.014793396, -0.017044067, 0.03704834, -0.020095825, 0.034820557, 0.016296387, -0.06542969, -0.0071754456, -0.017288208, 0.010345459, -0.01222229, -0.09051514, -0.022842407, -0.032806396, 0.005996704, 0.011955261, 0.00592041, 0.0463562, 0.02923584, -0.010925293, -0.012763977, -0.025039673, -0.0446167, 0.030929565, -0.024108887, -0.0052452087, 0.014099121, -0.062561035, 0.022994995, 0.031402588, 0.022720337, 0.021728516, -0.010253906, 0.03778076, -0.0057868958, 0.0068740845, -0.018463135, -0.01889038, 0.040039062, 0.0071144104, 0.0021572113, 0.03970337, 0.034698486, 0.0017309189, 0.04107666, -0.012329102, 0.02330017, -0.0071754456, 0.056915283, 0.03289795, 0.011436462, -0.045196533, -0.04220581, -0.006046295, -0.017913818, -0.0057296753, 0.010604858, 0.012023926, 0.0038166046, 0.04046631, 0.054718018, 0.05657959, -0.020202637, 0.018936157, 0.036010742, -0.013664246, 0.015266418, -0.027740479, 4.172325e-05, -0.019622803, 0.0065994263, 0.0127334595, 0.013023376, 0.037628174, 0.032592773, 0.022888184, -0.00579834, -0.040130615, 0.008956909, 0.023742676, -0.045135498, -0.0047454834, -0.037841797, 0.017288208, -0.025161743, -0.04425049, -0.051879883, -0.009216309, -0.05142212, 0.01675415, -0.00086927414, -0.020126343, -0.011894226, -0.00630188, -0.01902771, -0.042663574, 0.0015745163, -0.013839722, 0.050048828, -0.009613037, 0.018936157, -0.031051636, -0.044006348, 0.0079956055, 0.0418396, -0.06665039, -0.0579834, -0.039611816, 0.022491455, 0.0009160042, 0.00044941902, 0.010269165, 0.049957275, 0.012069702, -0.0088272095, 0.010955811, -0.019927979, -0.023452759, 0.014343262, -0.0004608631, -0.056365967, -0.008117676, 0.027862549, 0.00843811, -0.0046691895, 0.033233643, 0.00484848, -0.054016113, -0.009933472, -0.019042969, -0.011993408, -0.017822266, -0.0070877075, 0.0052986145, -0.003648758, -0.04425049, 0.00038194656, 0.011077881, 0.036621094, 0.048919678, 0.01473999, 0.04269409, -0.0034427643, -0.085510254, -0.05307007, -0.020690918, 0.02281189, 0.055511475, -0.011268616, 0.039916992, 0.0418396, -0.054016113, 0.055877686, 0.024353027, 0.00044822693, 0.010017395, -0.016036987, 0.019592285, -0.009780884, -0.013824463, 0.017105103, -0.021987915, -0.031311035, 0.01939392, 0.031188965, -0.029678345, -0.0029354095, -0.034301758, 0.017059326, 0.01133728, -0.052734375, -0.021621704, -0.012252808, -0.010116577, 0.009857178, -0.017120361, 0.018005371, 0.00014674664, -0.008544922, -0.02911377, 0.027297974, 0.01864624, 0.02331543, -0.051116943, 0.05419922, 0.012161255, 0.06036377, 0.0018835068, -0.08099365, -0.027664185, 0.03765869, 0.028701782, -0.034423828, 0.06866455, -0.057769775, 0.012992859, 0.041778564, -0.002363205, -0.014183044, 0.012840271, 0.087646484, 0.018844604, 0.0128479]}, "B091TKS5XG": {"id": "B091TKS5XG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver\nDescription: \nFeatures: High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power.\nSufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "metadata": {"Name": "Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver", "Brand": "Royal Gourmet", "Description": "", "Features": "High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power.\nSufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.020004272, 0.033111572, -0.045654297, -0.024459839, 0.025314331, -0.02456665, -0.012306213, -0.0031795502, -0.07348633, 0.023025513, 0.02015686, 0.03652954, -0.010559082, -0.033355713, 0.04269409, -0.020431519, 0.017578125, 0.023483276, 0.013885498, -0.011306763, 0.010429382, 0.008598328, -0.024307251, 0.03729248, 0.049835205, -0.0138549805, -0.036468506, 0.02142334, 0.021362305, 0.0048942566, 0.03567505, -0.019607544, 0.04537964, -0.011947632, -0.026977539, -0.035949707, -0.011703491, -0.036193848, -0.03704834, 0.010856628, 0.01235199, 1.424551e-05, -0.03439331, 0.012542725, -0.040374756, -0.020889282, -0.012199402, -0.009284973, 0.03967285, -0.0013208389, -0.0053215027, 0.0026569366, -0.0025863647, -0.016326904, -0.034240723, -0.019897461, 0.033233643, 0.007247925, 0.010093689, -0.040618896, -0.035247803, 0.0124435425, 0.023391724, 0.030059814, -0.06262207, 0.016983032, 0.05480957, -0.01876831, -0.0058631897, -0.0793457, -0.011192322, 0.035339355, 0.024047852, -0.0287323, -0.022903442, -0.006668091, 0.021957397, -0.016098022, 0.012496948, -0.03527832, 0.030181885, 0.015510559, 0.023513794, -0.0013742447, -0.0104599, -0.014533997, -0.0014152527, -0.026855469, 0.009689331, -0.029785156, -0.0064849854, -0.0619812, -0.004131317, 0.038116455, 0.0024051666, -0.038482666, -0.04815674, -0.08502197, 0.031463623, -0.011184692, 0.05392456, -0.024124146, 0.021972656, 0.02998352, -0.026306152, 0.10296631, 0.029510498, 0.08087158, -0.008132935, -0.0019569397, 0.021224976, -0.062438965, 0.012275696, -0.0138549805, -0.033477783, 0.031677246, 0.025299072, -0.012931824, 0.0013465881, -0.005683899, -0.009437561, 0.02746582, -0.0236969, 0.03390503, 0.0010967255, 0.00415802, 0.014312744, -0.022872925, -0.031921387, 0.056854248, -0.052734375, -0.006214142, 0.0927124, 0.032104492, 0.003835678, -0.038482666, 0.024932861, 0.00090646744, 0.005443573, -0.0062713623, 0.0009174347, -0.01134491, 0.015419006, -0.005584717, -0.0048675537, 0.018066406, 0.028167725, 0.0021514893, -0.020126343, -0.04397583, -0.005466461, 0.0038013458, 0.026473999, 0.000934124, -0.0769043, -0.00472641, -0.03677368, -0.010627747, -0.0012578964, -0.032287598, -0.018371582, -0.016967773, 0.0013656616, -0.003742218, -0.06210327, 0.061767578, 0.012283325, -0.010551453, 0.013557434, 0.039215088, 0.001912117, 0.0072631836, -0.016418457, 0.026870728, 0.006942749, 0.008300781, 0.037628174, 0.01474762, 0.038116455, -0.075927734, -0.07019043, -0.054351807, 0.09265137, -0.05230713, -0.026641846, -0.0059127808, -0.010482788, 0.019180298, 0.05899048, 0.011657715, -0.031463623, -0.028717041, 0.0016717911, 0.0044784546, 0.041778564, 0.016555786, -0.03881836, 0.020812988, -0.0059661865, -0.057769775, -0.011306763, 0.014877319, 0.007408142, -0.0033779144, 0.0023155212, -0.014503479, 0.007472992, 0.021347046, 0.008651733, 0.013885498, 0.0052261353, 0.013969421, -0.021743774, -0.025466919, -0.0368042, -0.04550171, -0.045440674, 0.04525757, 0.0023708344, 0.039611816, 0.022445679, -0.008354187, 0.054504395, -0.011268616, 0.04296875, 0.0063934326, -0.022125244, -0.006248474, 0.04260254, 0.008995056, -0.03060913, 0.019714355, 0.09375, 0.068603516, 0.014587402, 0.053863525, 0.08709717, 0.044311523, -0.038604736, -0.055847168, 0.005706787, -0.019805908, -0.06726074, -0.012123108, -0.0017280579, -0.03845215, -0.011756897, 0.023239136, -0.012573242, -0.029876709, 0.04949951, -0.03842163, 0.033050537, 0.0030231476, -0.004005432, 0.009460449, 0.009559631, 0.04534912, -0.036132812, -0.0074157715, -0.002483368, 0.033599854, -0.022583008, 0.0068855286, 0.02923584, -0.0030174255, 0.0033550262, 0.0044059753, -0.047058105, 0.014480591, 0.034698486, 0.022491455, -0.0042648315, 0.00031781197, -0.0048599243, -0.02911377, -0.0006160736, 0.02268982, -0.010604858, -0.01889038, 0.0016775131, -0.004272461, -0.022232056, -0.006668091, 0.049346924, 0.03213501, -0.0025310516, -0.016342163, -0.009773254, -0.025939941, 0.020751953, 0.0008468628, -0.013885498, -0.0058555603, -0.022644043, -0.02935791, 0.09564209, 0.024215698, 0.0010633469, -0.013267517, 0.009094238, 0.0043411255, -0.05154419, 0.005138397, 0.009429932, 0.016662598, 0.006816864, 0.01625061, 0.0012769699, -0.030838013, 0.014587402, 0.021530151, 0.034484863, -0.008872986, 0.037994385, -0.0042648315, 0.0035877228, 0.052124023, 0.015838623, 0.024459839, -0.004802704, 0.035461426, -0.06427002, -0.014091492, 0.023971558, 0.02583313, -0.06088257, -0.023605347, -0.018829346, 0.011924744, -0.004310608, 0.0011892319, -0.010543823, 0.024230957, 0.009963989, 0.014350891, 0.0035438538, 0.009559631, -0.007423401, -0.034454346, 0.0073623657, -0.053009033, -0.0058403015, -0.02947998, -0.039093018, -0.00749588, -0.0012845993, -0.0104599, 0.0005950928, -0.009117126, 0.010040283, -0.0009756088, -0.010528564, -0.027694702, 0.0014410019, -0.0029582977, -0.015350342, -0.020629883, 0.008491516, -0.05532837, -0.03616333, -0.03656006, -0.06732178, -0.047851562, 0.061279297, 0.024978638, -0.06085205, -0.0105896, -0.020111084, 0.00969696, 0.037872314, -0.017944336, -0.08795166, -0.026428223, -0.03213501, -0.0077705383, 0.044921875, -0.008811951, 0.027618408, 0.0289917, 0.04083252, 0.040161133, -0.0024261475, -0.010131836, 0.0064468384, 0.035858154, 0.034088135, 0.033233643, 0.011100769, -0.028121948, -0.0067443848, 0.042907715, -0.029800415, -0.013587952, -0.03866577, -0.002450943, 0.014724731, -0.0073013306, 0.00466156, 0.011062622, -0.08538818, 0.038757324, 0.015319824, -0.038726807, -0.0019550323, -0.050842285, -0.05609131, -0.03149414, 0.010543823, -0.004837036, 0.0030021667, 0.012565613, -0.017654419, 0.018341064, 0.000541687, -0.04296875, -0.00022852421, -0.015556335, 0.04638672, -0.006996155, 0.020431519, -0.042053223, 0.013587952, 0.031951904, -0.025619507, 0.0236969, -0.0010986328, 0.022460938, 0.0020656586, 0.034820557, 0.009613037, -0.012413025, -0.025299072, 0.03152466, -0.0076179504, 0.034820557, 0.021606445, -0.045837402, 0.058258057, -0.04824829, -0.056518555, -0.00315094, -0.011947632, -0.008613586, 0.015419006, -0.049713135, 0.004634857, -0.060333252, -0.011657715, -0.066711426, -0.0015258789, 0.0069618225, 0.046539307, 0.026947021, 0.018753052, 0.054626465, 0.00043010712, 0.04196167, 0.04446411, -0.036590576, -0.033294678, -0.045684814, 0.051757812, 0.01399231, 0.032836914, -0.049560547, 0.015174866, 0.006061554, -0.017974854, 0.018661499, 0.010177612, 0.026245117, 0.040405273, -0.0040245056, -0.020431519, -0.02407837, 0.014518738, 0.023223877, -0.045532227, -0.042510986, -0.049957275, 0.0052337646, -0.08050537, 0.09814453, 0.037902832, -0.013534546, 0.089904785, 0.0647583, -0.0027885437, 0.00017249584, -0.0056266785, 0.0037631989, -0.028915405, 0.06817627, -0.008918762, -0.013916016, 0.02508545, -0.05810547, 0.018081665, 0.024887085, -0.06530762, 0.02420044, -0.041931152, -0.052734375, -0.02180481, 0.04385376, 0.021392822, 0.0019550323, -0.016296387, -0.036376953, -0.0028800964, -0.05279541, 0.022277832, 0.018936157, -0.030151367, 0.0015382767, -0.020004272, 0.029006958, -0.038146973, -0.014770508, 0.011451721, 0.02458191, -0.008110046, 0.01574707, 0.0012521744, 0.026275635, -0.04135132, 0.039001465, -0.032440186, 0.0021629333, 0.017547607, 0.044952393, 0.023895264, 0.005722046, -0.01928711, -0.013473511, -0.01449585, 0.025985718, -0.013969421, -0.038482666, -0.015182495, 0.014915466, 0.027740479, -0.031036377, 0.014976501, -0.074401855, 0.002292633, -0.016784668, -0.07543945, -0.0076942444, 0.0054092407, -0.007827759, -0.083740234, -0.05014038, 0.019592285, -0.048217773, -0.006011963, -0.011688232, -0.035888672, -0.012962341, -0.04248047, -0.0049743652, -0.027694702, 0.019851685, -0.052215576, 0.003019333, 0.050689697, 0.04171753, 0.0119018555, -0.04840088, -0.011238098, -0.018692017, 0.13513184, 0.019134521, 0.029067993, -0.025558472, -0.045288086, -0.00248909, -0.004398346, 0.04147339, -0.007873535, 0.013832092, -0.04168701, -0.053100586, -0.027236938, -0.019332886, 0.030944824, -0.022079468, -0.025375366, -0.022232056, 0.047668457, -0.014099121, 0.021484375, -0.025619507, 0.0055236816, -0.034179688, -0.011306763, -0.027572632, 0.018814087, 5.9604645e-07, -0.0013170242, 0.013549805, -0.006565094, -0.022521973, 0.0178833, 0.044189453, 0.050109863, -0.015449524, -0.013519287, -0.016220093, 0.01979065, -0.014945984, 0.004638672, 0.021636963, -0.021194458, -0.0067329407, -0.07885742, 0.06628418, 0.059326172, -0.010826111, -0.0015735626, 0.0011787415, -0.024002075, -0.036895752, -0.00058317184, 0.010551453, -0.019348145, -0.06365967, -0.042510986, 0.048095703, -0.06555176, 0.02659607, -0.01272583, -0.028015137, 0.0014877319, -0.005844116, 0.026947021, -0.0031528473, 0.029663086, 0.008781433, 0.014602661, 0.016967773, -0.010856628, 0.008293152, -0.0049934387, -0.016403198, -0.0033493042, -0.011993408, -0.028503418, -0.01751709, 0.008163452, 0.015792847, -0.01171875, -0.0027389526, 0.015701294, -0.014533997, -0.03390503, 0.04043579, 0.007663727, 0.013656616, -0.060821533, 0.013122559, -0.0011529922, -0.016998291, 0.030670166, -0.012992859, -0.020751953, 0.017868042, -0.04611206, 0.06225586, -0.0054092407, -0.06365967, 0.043121338, -0.0074882507, 0.026504517, -0.023849487, 0.059936523, 0.00806427, 0.03253174, -0.08514404, 0.0056266785, -0.016342163, 0.006095886, 0.0440979, -0.04421997, 0.030044556, -0.04510498, -0.031280518, -0.0021705627, 0.050720215, -0.040740967, 0.00749588, 0.026870728, 0.0211792, -0.02619934, 0.020523071, -0.027114868, -0.012077332, -0.026168823, 0.0044288635, 0.016204834, -0.0012569427, -3.6895275e-05, -0.03189087, 0.015174866, -0.022262573, -0.034057617, 0.0065193176, -0.0013151169, -0.0037345886, -0.0011806488, 0.048187256, 0.016616821, 0.021362305, -0.028503418, -0.046020508, -0.06542969, 0.00070238113, -0.040222168, 0.045196533, -0.032806396, -0.022598267, 0.018753052, -0.033935547, 0.0033435822, 0.026351929, -0.019592285, -0.005088806, 0.0032596588, 0.022613525, -0.017990112, 0.009963989, 0.097961426, -0.046020508, -0.04510498, -0.06213379, 0.03451538, -0.01889038, 0.003080368, 0.020874023, -0.0047187805, 0.0073013306, 0.032043457, -0.004650116, -0.04800415, -0.036071777, -0.018508911, -0.058380127, 0.0007610321, -0.045684814, 0.028671265, 0.013038635, 0.003944397, 0.0019245148, 0.029281616, -0.0059928894, -0.018569946, -0.0236969, 0.012535095, -0.016021729, -0.0051231384, 0.009483337, -0.02168274, -0.019302368, -0.031280518, -0.026794434, -0.07342529, -0.052703857, 0.029418945, 0.01965332, 0.02017212, -0.00756073, 0.014289856, 0.054473877, -0.023666382, 0.04736328, -0.020904541, -0.008476257, 0.015670776, 0.021881104, 0.006111145, 0.022628784, 0.0099487305, -0.004272461, -0.029312134, 0.010917664, -0.002122879, 0.040008545, -0.014205933, 0.010108948, 0.020355225, 0.018218994, 0.014137268, -0.016067505, 0.01625061, -0.017303467, -0.04171753, -0.0026111603, -0.0029506683, -0.03387451, -0.0597229, 0.015464783, -0.07952881, 0.01411438, -0.012565613, 0.046142578, 0.0040283203, 0.014045715, 0.022567749, -0.03527832, 0.02003479, -0.0063171387, 0.028503418, 0.013092041, -0.0552063, 0.017578125, -0.033111572, -0.008422852, -0.015159607, -0.011734009, 0.015823364, 0.04434204, 0.02619934, -0.0044403076, -0.010406494, 0.041290283, 0.030136108, -0.09863281, 0.024124146, -0.026626587, -0.005695343, 0.001458168, -0.07727051, -0.037963867, 0.0031757355, 0.03012085, -0.021133423, 0.04019165, 0.006549835, -0.0020275116, -0.0023517609, 0.004924774, -0.021957397, 0.002161026, -0.019515991, 0.003604889, 0.01966858, -0.005176544, -0.059326172, -0.017471313, 0.048675537, -0.013832092, -0.009178162, 0.017669678, 0.037384033, -0.02357483, 0.02357483, -0.024993896, -0.025390625, 0.025146484, 0.0056762695, 0.007511139, 0.020568848, 0.029693604, -0.0017786026, 0.021453857, -0.01966858, 0.031463623, -0.0067825317, 0.038360596, 0.027862549, 0.014503479, -0.019180298, -0.023040771, -0.0036468506, 0.0082092285, 0.019943237, -0.008804321, 0.04949951, 0.016021729, -0.011436462, 0.039642334, 0.06951904, 0.0024642944, 0.051818848, -0.010108948, -0.014793396, 0.018463135, 0.02305603, 0.007972717, 0.018798828, -0.01939392, 0.0029563904, 0.02720642, 0.017990112, 0.006729126, 0.029556274, 0.008476257, -0.0047035217, -0.055389404, 0.03829956, -0.008338928, 0.04711914, -0.030075073, 0.004432678, -0.012077332, -0.030044556, -0.03503418, -0.031188965, -0.02960205, 0.037384033, 0.01626587, -0.014129639, 0.009765625, -0.011779785, 0.021575928, -0.048980713, 0.0069465637, -0.0062179565, 0.035705566, 0.00440979, 0.035461426, -0.02319336, -0.06762695, -0.037261963, 0.040740967, -0.08831787, -0.023468018, -0.036895752, 0.029037476, 0.014823914, 0.011329651, 0.055847168, 0.046844482, 0.016998291, 0.008544922, -0.009788513, -0.009590149, -0.009262085, -0.026184082, -0.02079773, -0.018844604, 0.0047454834, 0.04574585, -0.016921997, 0.019042969, 0.033111572, -0.014282227, -0.023620605, -0.025527954, -0.024887085, -0.021316528, -0.043029785, 0.017242432, -0.009155273, -0.015106201, -0.034698486, 0.014427185, 0.01234436, 0.018798828, 0.042419434, 0.018554688, 0.025497437, -0.012580872, -0.07873535, -0.043640137, -0.024108887, 0.038482666, 0.00055360794, 0.04434204, 0.023117065, 0.022109985, -0.018585205, 0.019317627, 0.006275177, -0.049865723, 0.027557373, -0.05307007, 0.007972717, -0.0042915344, -0.041229248, 0.0051116943, -0.0073280334, 0.0021762848, 0.03845215, 0.028884888, -0.034942627, -0.0001809597, -0.029144287, 0.0075798035, 0.014526367, -0.055664062, -0.004798889, -0.022628784, 0.0007753372, 0.032836914, 0.004234314, 0.042297363, -0.015777588, -0.0149383545, -0.031921387, 0.015975952, 0.011123657, -0.0023231506, -0.0014648438, -0.00013661385, -0.0060424805, 0.049682617, -0.022964478, -0.050842285, -0.025390625, 0.032165527, 0.02305603, -0.024017334, 0.05758667, -0.050872803, 0.016647339, 0.007896423, 0.017929077, -0.031799316, 0.044036865, 0.025924683, 0.0071411133, 0.038726807]}, "B000W8JNLC": {"id": "B000W8JNLC", "original": "Brand: XtremepowerUS\nName: XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator\nDescription: Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24\"(L) x 14\"(W) x 5\"(H) Package Contents: Propane Stove Regulator Hose\nFeatures: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on\nDurable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting\nPortable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors\nSafe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage\nPowerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.\n", "metadata": {"Name": "XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator", "Brand": "XtremepowerUS", "Description": "Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24\"(L) x 14\"(W) x 5\"(H) Package Contents: Propane Stove Regulator Hose", "Features": "Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on\nDurable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting\nPortable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors\nSafe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage\nPowerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018554688, -0.015457153, -0.031921387, -0.019897461, -0.0030651093, -0.018051147, 0.012260437, 0.011062622, -0.031219482, -0.008377075, -0.011047363, 0.018875122, -0.00932312, -0.03237915, 0.03692627, -0.03488159, 0.0023326874, 0.0703125, 0.016540527, -0.026748657, -0.0020618439, -0.012069702, -0.07366943, 0.09106445, 0.028961182, -0.023391724, -0.005130768, 0.02859497, 0.0075683594, -0.010536194, 0.029418945, 0.010391235, 0.048187256, -0.0055885315, -0.041107178, -0.07800293, -0.033599854, -0.013374329, -0.062194824, 0.0141067505, 0.0050086975, -0.0014028549, -0.035125732, 0.031555176, -0.014770508, -0.06088257, 0.0435791, -0.030899048, 0.02116394, 0.0060806274, -0.0063171387, -0.013664246, -0.0030765533, -0.03665161, -0.028778076, -0.0059509277, 0.020965576, -0.025878906, 0.010948181, -0.020767212, -0.024291992, 0.013946533, 0.028656006, 0.017532349, -0.05834961, 0.017181396, 0.04031372, -0.02407837, 0.046081543, -0.032318115, -0.008087158, 0.0463562, -4.5359135e-05, 0.01776123, -0.061798096, 0.005634308, 0.03756714, 0.00037550926, 0.022735596, -0.009277344, -0.0019083023, -0.0054855347, 0.013389587, -0.06774902, 0.031829834, -0.049468994, -0.00016915798, 0.001156807, -0.05117798, -0.027450562, -0.0390625, -0.04168701, -0.059387207, -0.0035305023, -0.0077934265, 0.004600525, -0.018310547, -0.057556152, 0.049835205, 0.0069007874, 0.039276123, -0.047790527, 0.012107849, 0.012367249, 0.0033168793, 0.13269043, 0.03363037, 0.04171753, 0.007827759, -0.036346436, 0.025817871, -0.0044937134, 0.016906738, -0.006752014, -0.005882263, -0.01638794, -0.016616821, 0.024673462, 0.0041122437, -0.013900757, -0.022903442, -0.012168884, 0.041046143, -0.012809753, -0.018539429, 0.004398346, -0.01134491, -0.031951904, -0.03741455, 0.0071372986, -0.017913818, 0.00856781, 0.012237549, 0.06237793, -0.0011968613, -0.005935669, 0.012535095, -0.020080566, 0.0017538071, 0.013038635, -0.0036830902, -0.046966553, 0.0018501282, 0.02619934, 0.005870819, 0.005657196, 0.024291992, 0.021453857, -0.0042304993, -0.03314209, 0.018066406, 0.022979736, 0.027679443, 0.0151901245, -0.009780884, -0.023864746, 0.036834717, -0.04284668, 0.018356323, -0.052978516, -0.019302368, -0.010894775, 0.006996155, 0.00057029724, -0.033721924, 0.029449463, 0.008430481, -0.0030536652, 0.014945984, 0.03717041, -0.011650085, 0.026611328, 0.021438599, 0.00018155575, -0.010299683, -0.015777588, -0.03652954, 0.0473938, 0.059051514, -0.11425781, -0.09088135, -0.079833984, 0.09564209, -0.046203613, -0.027175903, -0.012023926, 0.015914917, 0.0020217896, 0.016479492, -0.0076141357, 0.04360962, -0.0030765533, 0.0040016174, -0.01525116, 0.046295166, 0.00028800964, -0.07104492, -0.019439697, -0.0063819885, -0.017745972, -0.0234375, -0.00010848045, -0.0025997162, -0.009246826, -0.009300232, -0.030639648, -0.00068092346, 0.009117126, 0.020462036, 0.017868042, -0.013442993, -0.00541687, 0.01878357, -0.057617188, -0.03201294, 0.009498596, 0.022247314, 0.031311035, 0.001452446, 0.017120361, 0.025283813, -0.012199402, 0.008232117, 0.035064697, 0.03543091, -0.022735596, -0.016342163, -0.02720642, 0.009803772, -0.014419556, -0.015792847, 0.048583984, 0.024978638, 0.029754639, -0.012588501, 0.041259766, 0.07336426, 0.049957275, -0.008003235, -0.032928467, 0.017059326, -0.048187256, -0.033111572, -0.01197052, -0.06518555, -0.023040771, 0.025039673, -0.01889038, -0.033355713, 0.01386261, -0.014953613, 0.036071777, 0.02330017, -0.008460999, -0.024047852, 0.05014038, -0.028182983, 0.024291992, -0.036834717, 0.029708862, -0.011238098, 0.029815674, 0.043701172, -0.0033187866, 0.011299133, 7.861853e-05, 0.011444092, 0.004989624, -0.023590088, 0.013771057, 0.028793335, 0.009819031, -0.00472641, 0.006286621, -0.0012454987, 0.020706177, -0.035003662, 0.011230469, 0.0049934387, -0.005886078, 0.013442993, -0.012107849, 0.017425537, 0.013244629, 0.038879395, 0.01071167, 0.013885498, 0.028625488, -0.010612488, -0.015823364, 0.04031372, -0.047821045, -0.044891357, -0.012107849, -0.025222778, -0.054016113, 0.08270264, -0.026138306, 0.043395996, -0.047576904, 0.0022449493, 0.042877197, -0.056030273, 0.028305054, -0.0046653748, 0.017044067, -0.0026435852, 0.021896362, 0.009407043, -0.031341553, 0.0022659302, 0.008781433, 0.027175903, -0.019500732, 0.0546875, 0.0184021, 0.014350891, 0.046203613, 0.042510986, 0.05810547, -0.005130768, 0.015365601, 0.015007019, -0.008636475, 0.024887085, -0.025665283, -0.015670776, 0.0016803741, -0.0012207031, 0.0028209686, 0.011428833, 1.5377998e-05, 0.009719849, 0.023071289, 0.0016756058, -0.013252258, -0.0073547363, 0.005130768, -0.026519775, -0.041015625, -0.029373169, -0.05480957, 0.020751953, -0.018569946, -0.025970459, -0.0463562, 0.026275635, -0.003435135, -0.062347412, -0.01826477, 0.04849243, -0.02861023, 0.025604248, -0.013763428, 0.020065308, -0.017959595, -0.040008545, -0.01586914, -0.018798828, -0.07678223, -0.009132385, -0.053497314, -0.07171631, -0.0118637085, 0.10699463, 0.005760193, -0.08148193, -0.025146484, -0.04067993, 0.0013046265, 0.027069092, -0.0028381348, -0.074279785, -0.03677368, -0.060028076, 0.016204834, 0.0368042, -0.032226562, 0.008415222, 0.014076233, -0.0058898926, 0.009895325, -0.009750366, -0.013496399, 0.020614624, 0.04647827, 0.07287598, 0.019958496, 0.030715942, -0.027252197, 0.03286743, 0.021331787, -0.04067993, -0.0012483597, 0.014694214, -0.002855301, -0.028900146, -0.022521973, -0.077819824, 0.007385254, -0.07165527, 0.022247314, -0.012489319, -0.012290955, 0.004081726, -0.08734131, -0.0052490234, -0.07165527, -0.01084137, 0.004211426, -0.008781433, 0.01373291, -0.01878357, 0.0043640137, 0.016738892, -0.033966064, 0.043670654, -0.0023479462, -0.016113281, -0.009017944, 0.07067871, -0.08251953, 0.03152466, 0.007949829, -0.024429321, -0.029937744, -0.008407593, -0.002084732, -0.005794525, 0.057128906, -0.01966858, 0.0013065338, -0.027282715, 0.009971619, 0.012245178, 0.016052246, 0.020614624, -0.056762695, 0.047088623, -0.025802612, -0.02507019, -0.022644043, -0.03579712, 0.015388489, -0.011230469, -0.017181396, -0.029266357, -0.053710938, -0.010543823, -0.05038452, 0.014419556, 0.0043411255, 0.015136719, 0.01777649, -0.009101868, 0.0970459, 0.047698975, 0.05731201, 0.021438599, -0.04473877, -0.026382446, -0.049713135, 0.017974854, 0.03479004, -0.006362915, -0.008979797, 0.02810669, 0.028793335, 0.02897644, -0.029327393, 0.003353119, 0.03579712, 0.03640747, -0.023910522, -0.0003399849, -0.027526855, 0.04071045, -0.015975952, 0.027130127, -0.029891968, -0.036102295, -0.00088882446, -0.054626465, 0.06958008, 0.079956055, -0.037322998, 0.07421875, 0.021026611, -0.0025634766, 0.040527344, -0.01739502, 0.0107421875, -0.0041503906, 0.04586792, -0.017669678, 0.04724121, -3.8087368e-05, -0.019119263, 0.015151978, -0.007446289, -3.5703182e-05, 0.017105103, 1.4781952e-05, -0.03439331, -0.0146865845, 0.00025343895, -0.0029945374, -0.0003106594, 0.01222229, -0.029266357, -0.025863647, -0.02003479, 0.03274536, -0.0059051514, -0.012298584, 0.024032593, -0.041015625, -0.0090408325, -0.035736084, 0.0017280579, 0.013267517, 0.026870728, -0.0033893585, 0.01701355, 0.0072898865, -0.0030517578, -0.015144348, 0.009628296, -0.019760132, 0.022369385, 0.030975342, 0.006790161, 0.009857178, -0.023284912, 0.017333984, 0.010261536, -0.03741455, 0.049835205, 0.005329132, -0.0826416, -0.017669678, 0.042419434, 0.023529053, -0.025482178, -0.002544403, -0.0046539307, -0.0063476562, 0.00819397, -0.010269165, 0.006099701, -0.0206604, -0.012580872, -0.062408447, -0.048614502, -0.0073890686, 0.014404297, -0.021575928, 0.032470703, 0.0022468567, -0.07763672, -0.016021729, 0.01473999, -0.03237915, 0.015365601, -0.027374268, 0.008796692, 0.021911621, -0.0023479462, -0.0048065186, -0.009857178, 0.002796173, -0.01184082, 0.059326172, -0.025787354, -0.020187378, -0.032440186, -0.035095215, -0.018707275, 0.02734375, 0.05026245, -0.046813965, 0.03967285, 0.0015535355, 0.0040664673, -0.0552063, -0.009262085, 0.032287598, -0.03942871, -0.029800415, -0.007091522, 0.07946777, -0.021972656, 0.021270752, -0.016433716, 0.027923584, -2.259016e-05, 0.0154418945, -0.097473145, -0.073791504, 0.004917145, -0.036193848, 0.018203735, -0.014595032, -0.014198303, 0.043518066, 0.059631348, 0.021713257, -0.03643799, -0.02204895, -0.011360168, -0.003616333, 0.039611816, -0.038848877, -0.009437561, -0.052703857, 0.018630981, -0.07611084, 0.07147217, 0.050445557, 0.0025558472, 0.016021729, -0.0053482056, -0.011444092, -0.022613525, -0.010597229, -0.022888184, 0.021499634, -0.026412964, -0.053985596, -0.0023498535, -0.064575195, -0.006088257, 0.0037784576, -0.006061554, 0.037902832, -0.017822266, 0.011222839, 0.0104904175, -0.0017547607, 0.023101807, -0.0021095276, -0.0068588257, -0.032073975, -0.0034103394, 0.06329346, -0.0055351257, 0.006614685, 0.05731201, -0.004558563, -0.013557434, -0.0050811768, -0.005393982, -0.09680176, 0.0335083, 0.043792725, -0.02508545, -0.021392822, 0.0013866425, -0.0015201569, -0.04107666, -0.060638428, -0.0038433075, 0.0042037964, -0.027420044, 0.02748108, -0.0057868958, -0.014007568, 0.023330688, -0.009666443, 0.033691406, -0.0029697418, -0.041625977, -0.0011863708, -0.0045394897, 0.02243042, -0.054107666, 0.01902771, 0.002948761, -0.025054932, -0.058563232, 0.012138367, -0.0058670044, 0.0067825317, 0.01928711, -0.038330078, 0.053131104, -0.06573486, -0.04763794, -0.00315094, 0.029159546, -0.026229858, 0.015289307, 0.0056037903, 0.0032596588, -0.014572144, 0.010223389, 0.017532349, -0.0048980713, -0.039733887, -0.06768799, 0.02633667, 0.024978638, -0.013763428, 0.02355957, -0.013595581, 0.009788513, -0.014213562, 0.02470398, 0.0017147064, -0.003124237, 0.021530151, 0.0143966675, 0.06124878, 0.032043457, -0.07928467, -0.036224365, -0.031951904, -0.0013914108, -0.03137207, 0.07824707, -0.0042762756, -0.019958496, -0.0033950806, 0.00092077255, 0.005176544, -0.012924194, -0.020614624, 0.026626587, 0.009391785, -0.013427734, -0.009765625, -0.052215576, 0.048339844, -0.029800415, -0.05722046, 0.0071105957, 0.066711426, -0.032318115, 0.0009698868, 0.06518555, 0.04486084, 0.01701355, 0.030578613, 0.006290436, -0.043670654, 0.008895874, 0.008628845, -0.072631836, -0.037963867, -0.032684326, 0.012680054, -0.019622803, -0.01512146, -0.019332886, 0.03704834, -0.0053749084, -0.031585693, -0.04510498, -0.037597656, 0.01007843, -0.029403687, 0.0032691956, -0.023757935, 0.0046463013, -0.01637268, 0.00970459, -0.022476196, -0.02293396, -0.015167236, 0.03112793, 0.028289795, 0.015579224, -0.004524231, -0.03173828, -0.035247803, 0.04083252, 0.01109314, -0.010063171, 0.02458191, -0.003921509, -0.021759033, 0.012832642, 0.009933472, 0.016220093, -0.044891357, 0.0034294128, 0.024353027, 0.057159424, -0.03643799, 0.030273438, 0.029251099, 0.02558899, 0.028869629, 0.036590576, 0.03704834, -0.01739502, -0.0236969, 0.014038086, 0.0027561188, -0.032714844, 9.196997e-05, -0.032409668, -0.034332275, -0.0075912476, -0.025848389, 0.010040283, -0.030441284, 0.024383545, -0.022262573, 0.018997192, 0.0011167526, -0.023330688, 0.003692627, -0.0067749023, 0.04425049, -0.012138367, 0.0088272095, 0.010429382, -0.017333984, -0.06112671, 0.022476196, 0.046203613, -0.0137786865, 0.021118164, -0.02456665, 0.047973633, 0.037902832, -0.086242676, -0.0067367554, -0.030517578, 0.0029067993, -0.020095825, -0.017578125, -0.02017212, 0.021820068, 0.039642334, 0.0015001297, -0.013221741, 0.0006146431, 0.010116577, -0.026901245, -0.0067481995, -0.020706177, -0.043273926, 0.023025513, -0.004234314, -0.026473999, 0.0041275024, -0.02230835, 0.031707764, 0.03579712, 0.021820068, 0.006641388, -0.0004837513, 0.025497437, 0.013069153, 0.0047302246, -0.030258179, -0.040649414, 0.04159546, 0.035308838, -0.031707764, 0.0020923615, 0.0043792725, 0.0028495789, -0.005821228, -0.035491943, 0.011413574, -0.04611206, 0.021484375, 0.021484375, 0.017654419, -0.031280518, -0.02168274, -0.022247314, -0.01852417, 0.01247406, 0.0040740967, 0.0051498413, -0.02468872, 0.009269714, -0.00655365, 0.045959473, -0.03543091, 0.029083252, -0.04043579, 0.028549194, 0.043121338, 0.012374878, -0.0029144287, -0.0048332214, 0.0050735474, 0.006793976, 0.029724121, 0.007019043, -0.0023708344, 0.017166138, 0.014968872, -0.025634766, 0.005832672, -0.0074768066, -0.028167725, 0.031341553, -0.017410278, 0.003660202, -0.022491455, -0.05126953, -0.034454346, -0.019760132, -0.039031982, 0.03805542, 0.016983032, -0.008087158, 0.012306213, -0.0082092285, 0.0032691956, -0.04727173, 0.010383606, -0.002149582, 0.021438599, 0.004737854, 0.031799316, -0.023727417, -0.05441284, -0.046539307, 0.035339355, -0.08068848, -0.034698486, 0.027374268, -0.014541626, -0.0054130554, -0.006587982, 0.024887085, 0.04989624, 0.036499023, -0.0034923553, -0.000995636, -0.03704834, -0.017303467, 0.056549072, 0.016479492, -0.028762817, -0.026504517, 0.031402588, 0.004837036, 0.020355225, 0.017150879, -0.007247925, -0.080566406, -0.014862061, -0.0446167, 0.0035896301, -0.046447754, -0.009880066, 0.03390503, 0.0058784485, -0.023223877, 0.0072250366, 0.046539307, 0.026000977, -0.00283432, -0.040527344, 0.039886475, -0.028503418, -0.008087158, -0.0546875, -0.024215698, 0.023422241, 0.01586914, -0.024154663, -0.0262146, 0.026535034, 0.0016489029, -0.0031642914, 0.026000977, 0.00869751, 0.01902771, -0.0015850067, 0.03656006, -0.009155273, -0.032104492, -0.012825012, -0.04360962, -0.068725586, 0.010261536, -0.017364502, -0.003824234, -0.015716553, -0.028961182, 0.011878967, -0.038238525, -0.022079468, -0.0052108765, -0.011077881, 0.015594482, 0.019332886, 0.025024414, 0.007118225, 0.021774292, -0.014022827, -0.049621582, 0.0024375916, 0.034484863, -0.0014400482, -0.044830322, 0.037506104, 0.03579712, 0.04336548, -0.027420044, -0.07861328, -0.051635742, 0.022354126, -0.009902954, 0.013725281, 0.024246216, -0.004322052, 0.003780365, 0.046142578, -0.028427124, -0.029937744, -0.0008420944, 0.019180298, 0.010276794, -0.0052757263]}, "B00004TBJ4": {"id": "B00004TBJ4", "original": "Brand: Char-Broil\nName: Char- Broil Standard Portable Liquid Propane Gas Grill\nDescription: \nFeatures: Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don't have to wait for the grill to cool down to move it\nCook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that's easy to clean and dishwasher safe\n11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders\nQuality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill\nGreat for grilling and indirect cooking at low temperatures - just close the lid and you'll get even heat and low flare-ups\n", "metadata": {"Name": "Char- Broil Standard Portable Liquid Propane Gas Grill", "Brand": "Char-Broil", "Description": "", "Features": "Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don't have to wait for the grill to cool down to move it\nCook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that's easy to clean and dishwasher safe\n11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders\nQuality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill\nGreat for grilling and indirect cooking at low temperatures - just close the lid and you'll get even heat and low flare-ups", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0340271, 0.010826111, -0.031585693, 0.0022563934, 0.0026493073, -0.004764557, -0.018371582, -0.008224487, -0.03475952, 0.004924774, -0.006385803, 0.03866577, -0.017471313, -0.039611816, 0.03366089, -0.035614014, 0.013519287, 0.030899048, -0.019714355, -0.030395508, -0.0071411133, -0.017410278, -0.047790527, 0.11114502, 0.06298828, -0.05026245, -0.014602661, 0.019714355, 0.04336548, 0.020614624, 0.03552246, -0.035827637, 0.051208496, -0.019378662, -0.010131836, -0.01637268, 0.004295349, -0.020690918, -0.028442383, 0.009132385, 0.012046814, 0.004306793, 0.010513306, 0.0008993149, -0.0284729, -0.025756836, 0.03186035, 0.0041389465, 0.020645142, -0.023910522, 0.010978699, 0.023895264, 0.014801025, -0.028167725, -0.0090789795, 0.012771606, 0.056396484, -0.03793335, 0.03253174, -0.05050659, -0.046051025, -0.017089844, 0.04425049, -0.008087158, -0.040527344, -0.01448822, 0.08685303, -0.0262146, -0.014839172, -0.047607422, 0.029388428, 0.04385376, 0.023788452, 0.0005264282, -0.015037537, -0.03363037, 0.033355713, -0.014785767, 0.025863647, 0.0033130646, -0.06011963, -0.020065308, -0.013938904, -0.020889282, -0.013389587, -0.009628296, -0.026351929, -0.0018434525, -0.016281128, -0.044708252, -0.015594482, -0.0096588135, -0.047058105, 0.032592773, -0.017715454, -0.009712219, -0.03366089, -0.07952881, 0.040252686, 0.017486572, 0.03668213, -0.03314209, 0.0051231384, 0.012107849, -0.027923584, 0.051635742, 0.0038661957, 0.00198555, -0.02835083, 8.60095e-05, 0.00075912476, -0.07098389, -0.0074539185, -0.0037441254, -0.024368286, -0.017227173, -0.050567627, 0.004753113, -0.0066337585, -0.0013551712, -0.014541626, 0.00027680397, -0.04360962, 0.033416748, 0.015655518, -0.0012769699, 0.0052604675, 0.03643799, -0.07373047, 0.040496826, -0.035980225, -0.010795593, 0.07952881, 0.09039307, 0.03640747, -0.027633667, -0.003850937, 0.0030097961, -0.0046081543, -0.013221741, 0.008666992, -0.0073661804, 0.014053345, 0.015167236, -0.037017822, 0.033843994, 0.043518066, 0.0024490356, -0.047027588, -0.07501221, 0.0004785061, 0.012283325, 0.055725098, 0.014755249, -0.08215332, -0.004432678, -0.030731201, -0.011787415, -0.035125732, -0.06124878, -0.050445557, -0.019927979, 0.005836487, -0.016662598, -0.030090332, 0.044769287, 0.020141602, 0.0032577515, 0.0029411316, 0.029144287, -0.023727417, 0.009521484, -0.009521484, -0.011703491, -0.0033607483, -0.009208679, -0.006362915, 0.043426514, 0.053588867, -0.066223145, -0.057281494, -0.04626465, 0.12371826, -0.049621582, -0.0035934448, -0.00137043, 0.024002075, 0.015296936, -0.002111435, 0.008049011, 0.01612854, 0.026046753, -0.014465332, -0.012031555, 0.0060043335, 0.0072021484, -0.039093018, 0.0126571655, -0.013397217, -0.0054244995, 0.023529053, 0.0054016113, -0.0018434525, -0.005722046, -0.0104904175, -0.023712158, 0.008026123, 0.011260986, 0.06323242, 0.018310547, -0.033996582, -0.014953613, 0.021438599, -0.057037354, -0.03756714, 0.020370483, -0.0026245117, 0.026947021, 0.02998352, 0.0014696121, 0.049438477, 0.0046691895, 0.0368042, 0.012306213, 0.008834839, 0.001405716, -0.03842163, 0.011581421, 0.0011892319, -0.016174316, 0.011764526, 0.048583984, 0.08886719, 0.0927124, 0.011314392, 0.014778137, 0.05987549, -0.036895752, -0.0033721924, -0.0008149147, 0.01600647, -0.012207031, -0.016967773, 0.0012865067, 0.026351929, -0.0041236877, 0.0181427, -0.012374878, -0.029190063, -0.024642944, 0.032928467, -0.022735596, 0.037109375, 0.023788452, -0.033721924, 0.028533936, -0.0090408325, 0.034942627, -0.06359863, 0.062286377, -0.03086853, 0.052093506, 0.047180176, -0.00459671, 0.008804321, -0.02973938, 0.0033416748, 0.0018758774, -0.017303467, -0.020233154, 0.0209198, 0.006313324, 0.0057029724, -0.013000488, 0.015052795, -0.005466461, -0.022216797, 0.012481689, 0.009361267, -0.018707275, 0.012954712, -0.0064888, 0.01096344, 0.00036740303, 0.03894043, 0.0055160522, 0.019836426, 0.020492554, -0.032714844, -0.017486572, 0.027694702, -0.008430481, -0.010879517, -0.026260376, -0.021942139, -0.026412964, 0.045806885, 0.0027999878, 0.033050537, -0.04824829, 0.0062942505, 0.020080566, -0.062805176, 0.029464722, -0.02458191, 0.025344849, -0.011474609, -0.0043029785, -0.002418518, -0.059906006, 0.04711914, 0.044281006, 0.04147339, 0.010681152, 0.037231445, 0.0076065063, 0.017822266, 0.05822754, 0.013313293, -0.008636475, -0.030380249, -0.033172607, -0.014968872, 0.002943039, -0.01574707, 0.010444641, 0.019012451, 0.0026130676, -0.0003838539, 0.014320374, -0.045776367, -0.017166138, -0.028808594, 0.017288208, -0.021591187, 0.008415222, 0.011680603, 0.023895264, -0.010910034, -0.03982544, -0.0017738342, -0.04534912, -0.009277344, -0.0054397583, -0.041290283, -0.024108887, 0.01626587, 0.0052871704, -0.0029888153, -0.0064353943, 0.027252197, -0.012054443, 0.01890564, -0.008972168, 0.011795044, -0.030776978, -0.034332275, -0.025009155, -0.043945312, -0.070373535, -0.015113831, -0.029144287, -0.056243896, 0.008964539, 0.058624268, 0.0013475418, -0.03677368, -0.004825592, -0.005935669, 0.004245758, 0.04711914, 0.039611816, -0.0925293, -0.045013428, -0.054534912, -0.013725281, 0.04055786, -0.030441284, -0.013221741, 0.011230469, -0.0034713745, 0.0053596497, 0.0049057007, 0.0037879944, 0.013511658, 0.017501831, 0.023727417, 0.044952393, 0.008590698, -0.023162842, 0.0053901672, 0.044769287, -0.023651123, -0.008392334, 0.018936157, 0.0011472702, -0.003545761, 0.0074386597, -0.064697266, -0.021133423, -0.08807373, -0.009681702, 0.0064468384, -0.048950195, 0.0010490417, -0.054870605, -0.042419434, -0.05102539, 0.0077590942, 0.060028076, -0.029281616, -0.0017681122, -0.030090332, 0.0035533905, 0.031707764, -0.0006585121, 0.016662598, -0.013893127, 0.01574707, -0.026000977, 0.0178833, -0.031433105, 0.01676941, 0.020645142, -0.019760132, 0.03894043, -0.023712158, 0.011352539, -0.03555298, 0.00084495544, -0.0030612946, -0.011138916, -0.021713257, 0.006549835, -0.01927185, 0.0015697479, -0.011802673, -0.05166626, 0.029876709, -0.042144775, -0.0637207, -0.03768921, 0.030563354, 0.01965332, 0.0006723404, 0.0110321045, -0.042144775, -0.033477783, -0.006641388, -0.0062828064, 0.010551453, 0.0011034012, 0.03930664, 0.023910522, -0.012451172, 0.064086914, 0.024917603, 0.039276123, -0.012023926, -0.013061523, -0.025390625, -0.035217285, 0.025100708, -0.015327454, -0.0015182495, -0.0057907104, 0.00086069107, 0.0287323, 0.010093689, -0.018630981, 0.008506775, 0.04650879, 0.029449463, -0.036743164, 0.009033203, -0.068725586, 0.013336182, 0.015357971, 0.0037231445, -0.03729248, -0.06921387, 0.015022278, -0.11395264, 0.10107422, 0.039367676, -0.030822754, 0.107421875, 0.049682617, 0.0032482147, 0.0059280396, 0.016143799, -0.01676941, -0.0043640137, 0.06555176, -0.017150879, -0.014183044, 0.015655518, -0.038482666, 0.026367188, 0.010536194, -0.042755127, 0.030212402, -0.0026016235, -0.050354004, -0.013458252, 0.0038814545, 0.013450623, -0.028778076, 0.0013494492, 0.010665894, -0.034454346, -0.045410156, 0.004802704, 0.007030487, -0.022079468, 0.015113831, -0.014953613, -0.011451721, -0.017837524, 0.0018100739, 0.0181427, 0.054870605, -0.032043457, 0.046691895, 0.0037326813, -0.004421234, -0.06536865, -0.008018494, -0.031051636, -0.018951416, 0.038085938, 0.010192871, 0.041900635, 0.026382446, -0.018112183, 0.033569336, -0.019088745, 0.024765015, -0.016830444, -0.06555176, 0.025039673, 0.050872803, -0.0028038025, -0.044311523, 0.0060272217, -0.013038635, -0.018005371, -0.019821167, 0.0002387762, -0.021484375, -0.018234253, 0.010826111, -0.054504395, -0.026000977, -0.02696228, 0.0038719177, -0.024871826, 0.03201294, -0.013954163, -0.0418396, -0.011787415, 0.020568848, -0.025390625, -0.009338379, 0.009918213, 0.012611389, 0.021743774, 0.0016946793, 0.0047569275, -0.02003479, -0.030899048, 0.0037555695, 0.049041748, -0.0390625, 0.0011577606, -0.041107178, -0.024536133, 6.6936016e-05, 0.013214111, 0.022109985, -0.017196655, 0.007843018, -0.028671265, -0.013633728, -0.052642822, -0.021026611, 0.006969452, -0.05343628, -0.07513428, -0.03048706, 0.09082031, -0.0054016113, 0.018295288, -0.01701355, -0.00042200089, -0.0015058517, -0.022125244, -0.03579712, 0.0068855286, -0.0050811768, -0.015136719, 0.0029201508, -0.00258255, -0.018569946, 0.022766113, 0.02142334, 0.016220093, -0.026123047, 0.0034561157, -0.03326416, 0.005874634, 0.015586853, -0.06335449, 0.04034424, -0.06616211, -0.018661499, -0.07244873, 0.103393555, 0.072387695, -0.015174866, -0.0038223267, 0.001001358, -0.0317688, -0.059936523, 0.0020198822, 0.0115356445, 0.004508972, -0.03286743, -0.043151855, 0.0013113022, -0.060150146, -0.01020813, -0.009346008, 0.0032348633, 0.0118637085, -0.01914978, 0.0049972534, -0.0021038055, -0.005241394, -0.016983032, -0.0017709732, 0.018753052, -0.009246826, -0.053375244, 0.034851074, -0.049468994, -0.04611206, 0.020095825, -0.0028057098, -0.01902771, 0.012367249, 0.00093889236, -0.0826416, 0.04510498, 0.0692749, -0.003868103, -0.016983032, 0.0070724487, 0.004005432, -0.002773285, 0.0005555153, 0.071899414, -0.017745972, 0.018249512, 0.040649414, -0.029815674, 0.011207581, 0.02204895, -0.02734375, 0.038635254, -0.005203247, -0.022781372, 0.022872925, -0.0025253296, 0.0049438477, -0.041168213, 0.066101074, -0.006500244, -0.00013816357, -0.06561279, 0.0018072128, 0.003768921, 0.021133423, -0.005279541, -0.01939392, 0.04425049, -0.0035133362, -0.011329651, 0.008201599, 0.029159546, -0.0058135986, 0.016494751, -0.012802124, 0.014923096, -0.010673523, -0.0062332153, -0.020446777, 0.008529663, -0.004562378, -0.019195557, 0.01675415, 0.0016298294, -0.0070495605, -0.02168274, -0.015449524, -0.012634277, -0.0031204224, -0.022369385, -0.019180298, -0.013679504, -0.01927185, 0.030288696, -0.0024814606, 0.0030612946, -0.0027446747, -0.025665283, -0.0037117004, 0.025177002, -0.0012903214, 0.0021305084, -0.047973633, 0.019180298, 0.0002913475, -0.046417236, -0.009590149, 0.024993896, -0.064331055, -0.020721436, 0.019424438, 0.017929077, -0.0126571655, -0.041046143, 0.07330322, -0.034240723, -0.05508423, -0.022369385, 0.057281494, -0.02659607, 1.6331673e-05, 0.052490234, 0.030715942, 0.0135650635, 0.028030396, -0.0004079342, -0.014282227, -0.019638062, 0.0021362305, -0.038909912, -0.046142578, -0.02758789, 0.0044021606, -0.019683838, 0.014907837, -0.0231781, 0.05117798, -0.030441284, -0.056365967, -0.015266418, 0.018066406, 0.006969452, -0.027191162, 0.01210022, -0.015388489, -0.020950317, -0.02583313, -0.029724121, -0.08850098, -0.022399902, 0.0075912476, 0.0009841919, 0.01979065, -0.01763916, 0.013671875, 0.03375244, 0.01852417, 0.02772522, 0.00970459, -0.028457642, -0.025863647, 0.02645874, 0.01852417, 0.012550354, -0.04296875, -0.013137817, -0.015945435, 0.033355713, 0.06359863, 0.0021076202, -0.016052246, 0.007419586, 0.050933838, 0.016601562, 0.023635864, 0.031677246, 0.058807373, 0.007621765, -0.05621338, 0.009498596, 0.035461426, -0.04043579, -0.02154541, -0.02607727, -0.021392822, 0.0098724365, -0.015449524, 0.018096924, -0.023132324, 0.050231934, -0.015327454, -0.008468628, 0.009284973, -0.032318115, 0.039794922, -0.0121154785, 0.0034484863, 0.0022468567, 0.011528015, 0.011154175, -0.020126343, -0.03842163, -0.0033073425, 0.033203125, 0.010932922, -0.0017690659, -0.0423584, 0.04663086, 0.031234741, -0.080200195, -0.011138916, 0.014175415, 0.016098022, 0.00022268295, -0.058624268, -0.033081055, -0.022506714, 0.033935547, 0.002986908, 0.012573242, 0.006965637, 0.025756836, -0.008285522, 0.020019531, -0.022262573, -0.0078125, 0.007724762, 0.02607727, 0.01109314, -0.010185242, -0.012329102, 0.013328552, 0.04449463, -0.01612854, 0.030960083, -0.040039062, 0.020355225, -0.043273926, 0.0058784485, -0.020584106, -0.055023193, 0.0032367706, 0.031188965, -0.0087509155, 0.036102295, -0.022232056, 0.009979248, -0.02331543, -0.0826416, 0.026672363, -0.072753906, 0.031021118, 0.023452759, 0.056671143, -0.04107666, -0.04071045, -0.031799316, 0.0014791489, -0.021377563, 0.07141113, -0.02418518, 0.032165527, 0.02293396, 0.023895264, 0.059753418, -0.012374878, 0.023025513, -0.01776123, 0.0155181885, 0.03564453, 0.016433716, -0.045684814, -0.013717651, 0.007709503, -0.0013942719, 0.01890564, -0.0435791, -0.022399902, 0.026138306, 0.004398346, -0.037872314, 0.040374756, -0.019165039, -0.045837402, 0.038269043, -0.024490356, -0.0011482239, -0.016143799, -0.049713135, -0.02519226, -0.013809204, -0.045013428, 0.030456543, 0.00919342, -0.035827637, -0.017700195, 0.0010929108, -0.02432251, -0.045654297, -0.006801605, -0.011222839, 0.053985596, 0.004714966, 0.044403076, -0.03817749, -0.052581787, -0.02368164, 0.040618896, -0.050994873, -0.055511475, 0.027069092, -0.003162384, 0.029876709, 0.008033752, 0.004272461, 0.04159546, 0.030548096, -0.014305115, 0.04714966, -0.0059890747, -0.0025978088, -0.009643555, 0.019088745, -0.02848816, -0.009689331, -0.013458252, -0.010261536, 0.02230835, 0.014266968, -0.021438599, -0.059051514, -0.013282776, -0.015434265, -0.00018787384, 0.0033912659, 0.009864807, 0.0024852753, 0.027130127, -0.042236328, 0.027053833, -0.032562256, 0.03010559, 0.043548584, -0.001581192, 0.008804321, -0.034698486, -0.06750488, -0.040130615, -0.024108887, 0.046936035, 0.059631348, 0.025848389, 0.01977539, 0.02482605, -0.047790527, 0.06439209, 0.009475708, -0.030975342, 0.004863739, 0.00447464, 0.011665344, -0.004890442, -0.015541077, 0.010246277, -0.032562256, -0.006877899, 0.051361084, 0.023712158, -0.03164673, -0.009292603, -0.012016296, -0.014091492, 0.0012245178, -0.02885437, -0.013000488, -0.016143799, -0.010154724, 0.011489868, -0.006996155, -0.015174866, 0.0012922287, -0.0052223206, -0.057556152, 0.011802673, 0.055480957, 0.013404846, -0.051971436, 0.040649414, 0.0569458, 0.0002670288, 0.0062294006, -0.07006836, -0.008087158, 0.011138916, 0.0040397644, -0.025375366, 0.036865234, -0.062347412, 0.0046195984, 0.015487671, -0.0084991455, -0.039215088, 0.012428284, 0.016235352, 0.00017249584, 0.018325806]}, "B07GJQRH3K": {"id": "B07GJQRH3K", "original": "Brand: Boshen\nName: Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ\nDescription: NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

      Why choose it?

      This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

      The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

      The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

      Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

      Specifications:

      Material: Cast Iron
      Color: Black
      Energy Type: LPG
      Size(Lx Wx H): 9.45\" x 9.45\" x 4.72\"
      Weight: 4.19 lbs
      Load-bearing: 22 lbs

      Package included:

      1 x Single Burner Camp Stove (regulator not include)
      1 X Screw (for oxygen control valve)
      2 x Screw (for gas pipe, the pipe is not included )
      2 x Screw (for gas valve)
      4 x Screw

      Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
      2. Gas line and regulator Not Included.\nFeatures: Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included\nCompact and portable design: size(Lx Wx H): 9.45\" x 9.45\" x 4.72\", easy to install and use, good for small cooking\nSafety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions\nFlame adjustable, 4 detachable legs, save space, convenient to carry and transport\nPackage List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.\n", "metadata": {"Name": "Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ", "Brand": "Boshen", "Description": "NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

      Why choose it?

      This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

      The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

      The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

      Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

      Specifications:

      Material: Cast Iron
      Color: Black
      Energy Type: LPG
      Size(Lx Wx H): 9.45\" x 9.45\" x 4.72\"
      Weight: 4.19 lbs
      Load-bearing: 22 lbs

      Package included:

      1 x Single Burner Camp Stove (regulator not include)
      1 X Screw (for oxygen control valve)
      2 x Screw (for gas pipe, the pipe is not included )
      2 x Screw (for gas valve)
      4 x Screw

      Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
      2. Gas line and regulator Not Included.", "Features": "Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included\nCompact and portable design: size(Lx Wx H): 9.45\" x 9.45\" x 4.72\", easy to install and use, good for small cooking\nSafety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions\nFlame adjustable, 4 detachable legs, save space, convenient to carry and transport\nPackage List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030334473, -0.021026611, -0.03677368, 0.022155762, -0.026245117, -0.017364502, 0.010673523, -0.0072288513, -0.044433594, 0.01689148, -0.014427185, 0.016937256, 0.007537842, -0.024429321, 0.04534912, -0.046844482, 0.005130768, 0.024337769, -0.013587952, -0.030685425, 0.008422852, -0.022872925, -0.054382324, 0.107910156, 0.02279663, -0.0020103455, -0.023971558, 0.010986328, 0.02217102, 0.0067863464, 0.025024414, -0.02192688, 0.024841309, 0.020950317, -0.05203247, -0.09692383, -0.008460999, -0.005077362, -0.053253174, 0.02015686, 0.0019350052, 0.0043029785, 0.010551453, 0.03515625, -0.009628296, -0.05307007, 0.02418518, -0.043670654, -0.0011148453, -0.018203735, -0.011772156, 0.00094747543, 0.005493164, -0.032470703, -0.015060425, -0.020568848, 0.02998352, -0.039489746, -0.010398865, -0.037719727, -0.014793396, 0.012687683, 0.04852295, 0.05126953, -0.037841797, -0.011184692, 0.02217102, -0.01361084, -0.011047363, -0.039123535, 0.019729614, 0.022766113, 0.026031494, 0.004863739, -0.023269653, -0.028137207, 0.005004883, -0.026306152, 0.044830322, -0.0064888, -0.047027588, -0.023330688, -0.029586792, -0.087646484, 0.05618286, -0.03717041, -0.0072402954, 0.011520386, -0.0524292, -0.03491211, -0.03112793, -0.033325195, -0.06311035, -0.002407074, -0.019607544, 0.02670288, -0.04272461, -0.09100342, 0.027114868, -0.0234375, 0.07647705, -0.05899048, 0.022857666, 0.03137207, -0.0062675476, 0.06842041, 0.0061531067, 0.057403564, 0.03778076, -0.0044822693, -0.0025081635, 0.0023555756, -0.025436401, -0.056365967, -0.007007599, 0.0069770813, -0.05407715, 0.02822876, 0.03677368, 0.0035648346, -0.007965088, 0.0070533752, 0.014625549, -0.0052719116, 0.03363037, 0.03265381, 0.0056610107, -0.04611206, -0.04800415, 0.03652954, -0.027435303, 0.012275696, 0.03555298, 0.053710938, -0.0018157959, -0.024536133, -0.0037174225, 0.008728027, 0.023651123, 0.017562866, -0.018295288, -0.038635254, 0.026535034, 0.0038433075, -0.0014619827, -0.0034294128, 0.018463135, 0.0032978058, -0.0070610046, -0.025177002, -0.0087509155, -0.01335907, 0.03161621, 0.035003662, -0.024002075, 0.0074272156, 0.045959473, -0.024047852, -0.013847351, -0.040252686, -0.049987793, 0.005886078, -0.0056915283, -0.020004272, -0.011367798, -0.0058174133, 0.039215088, 0.0158844, 0.0041275024, 0.010597229, -0.006500244, 0.048614502, -0.0006122589, -0.0074691772, 0.005809784, -0.024093628, -0.06719971, 0.060516357, 0.068603516, -0.072387695, -0.049743652, -0.054138184, 0.10412598, -0.015823364, -0.030044556, 0.008880615, -0.0070228577, -0.0017337799, 0.014785767, -0.0050849915, 0.02444458, 0.0079956055, 0.014045715, -0.048614502, -0.003156662, 0.009292603, 0.02015686, 0.031921387, 0.003829956, -0.00541687, 0.037475586, 0.030014038, 0.036132812, -0.015007019, 0.02859497, 0.020492554, -0.001168251, 0.01889038, 0.009765625, 0.03213501, 0.008407593, 0.00868988, 0.006713867, -0.05227661, -0.012908936, 0.011833191, 0.037384033, 0.03955078, 0.028396606, 0.0071411133, 0.052520752, 0.0025787354, 0.030334473, 0.042114258, 0.04019165, -0.0046539307, -0.0029029846, -0.0105896, 0.011711121, 0.0211792, -0.05203247, 0.013336182, -0.00072956085, 0.030227661, 0.0047798157, 0.040283203, 0.053863525, 0.017288208, -0.0096206665, -0.014022827, 0.00409317, -0.020446777, -0.015808105, 0.028778076, -0.03491211, -0.024459839, 0.02520752, 0.0023078918, -0.0118255615, 0.06188965, -0.005428314, 0.008453369, 0.0038166046, -0.0236969, -0.03591919, 0.027877808, -0.009887695, 0.034729004, -0.01802063, 0.009605408, -0.017120361, 0.047851562, 0.033569336, 0.0053482056, 0.009262085, -0.031051636, -0.008460999, -0.016601562, -0.045928955, 0.0126571655, 0.049438477, 0.009086609, -0.010093689, -0.0015459061, 0.01878357, -0.003168106, -0.02180481, 0.013114929, -0.018753052, -0.013626099, 0.029418945, 0.009132385, 0.012664795, 0.006755829, 0.037475586, 0.00035524368, 0.019729614, 0.042877197, 0.02520752, 1.8894672e-05, 0.03375244, -0.033843994, -0.045410156, 0.013504028, -0.015823364, -0.059295654, 0.044708252, 0.016235352, 0.020568848, -0.04260254, -0.014122009, 0.02571106, -0.054992676, 0.017486572, -0.014953613, -0.013122559, -0.023040771, 0.040802002, -0.00390625, -0.04486084, -0.038513184, -0.015258789, 0.028289795, -0.017944336, 0.056365967, 0.022018433, 0.017654419, 0.033691406, 0.042907715, 0.02368164, 0.000344038, -0.005584717, -0.0022144318, -0.013305664, 0.0008249283, -0.004043579, -0.016983032, -0.00605011, -0.02279663, -0.009689331, 0.008934021, -0.02507019, 0.0033073425, 0.04827881, 0.013832092, 0.005622864, 0.0066719055, -0.010520935, -0.0006661415, -0.043395996, 0.0036125183, 0.009315491, -0.006538391, -0.0038318634, -0.02154541, -0.03555298, 0.0071258545, 0.019485474, -0.072753906, -0.01701355, 0.02772522, -0.021148682, 0.026885986, -0.059295654, 0.020950317, -0.022415161, -0.05569458, -0.05847168, -0.007980347, -0.09362793, 0.0009975433, -0.04031372, -0.04269409, 0.00687027, 0.038146973, 0.0031490326, -0.05517578, 0.011047363, -0.027938843, -0.005847931, 0.016647339, 0.0069847107, -0.038482666, -0.024307251, -0.018188477, 0.0007901192, 0.05508423, -0.020477295, 0.05029297, 0.046447754, 0.0025405884, 0.03942871, -0.03781128, 0.0014562607, 0.030685425, 0.04171753, 0.08880615, 0.047424316, 0.025543213, -0.044677734, 0.041046143, 0.041412354, -0.0491333, -0.017211914, 0.024734497, 0.025039673, -0.018814087, -0.039764404, -0.02760315, -0.018569946, -0.021453857, 0.006832123, -0.015289307, -0.014511108, 0.01663208, -0.13562012, -0.0022335052, -0.05895996, -0.0022029877, 0.016723633, -0.019241333, 0.016616821, -0.027236938, 0.010139465, -0.0016183853, -0.015327454, 0.041870117, -0.016357422, -0.021377563, 0.013893127, 0.05645752, -0.061828613, 0.040405273, 0.035583496, -0.01977539, 0.013534546, -0.003753662, 0.017028809, 0.014480591, 0.019561768, -0.008003235, -0.011657715, -0.031707764, -0.010406494, -0.005332947, 0.00041151047, 0.023498535, -0.068725586, 0.053009033, -0.025161743, -0.047851562, -0.009429932, -0.019607544, 0.0017156601, -0.0076522827, -0.019317627, -0.013885498, -0.04827881, 0.013381958, -0.028778076, 0.012901306, -0.008895874, 0.02671814, 0.028167725, -0.015991211, 0.07946777, 0.021560669, 0.048309326, 0.00024724007, -0.006717682, 0.008651733, -0.037994385, 0.03010559, 0.013626099, -0.013198853, -0.043182373, -0.013061523, 0.021102905, -0.015029907, -0.011268616, -0.009063721, 0.08416748, 0.044708252, 0.0119018555, -0.02067566, 0.013748169, 0.03768921, 0.018829346, -0.038848877, -0.024520874, -0.023269653, -0.014373779, -0.06854248, 0.08093262, 0.020507812, -0.014602661, 0.043762207, 0.06915283, -0.030151367, 0.015075684, -0.028335571, 0.028289795, -0.006511688, 0.014144897, -0.016952515, 0.020202637, 0.0010433197, -0.035308838, 0.02279663, 0.0067100525, -0.02305603, 0.007411957, 0.0077400208, -0.04510498, -3.606081e-05, -0.006401062, 0.022918701, -0.01966858, 0.018310547, 0.019882202, 0.0074501038, -0.016723633, 0.002653122, 0.011299133, -0.025878906, 0.029769897, -0.05303955, -0.007080078, -0.029144287, -0.0044898987, 0.002866745, 0.009506226, 0.02746582, 0.050842285, -0.038848877, -0.007820129, -0.016418457, -0.01411438, -0.018310547, 0.030380249, -0.011123657, 0.021072388, 0.011436462, -0.032348633, 0.03643799, -0.032104492, -0.013793945, 0.032043457, -0.0071487427, -0.08929443, 0.01096344, 0.04586792, 0.0071105957, -0.0446167, 0.021316528, -0.055603027, 0.00868988, -0.029815674, -0.047027588, -0.0137786865, -0.021331787, -4.9948692e-05, -0.05307007, -0.03338623, -0.017623901, 0.030334473, -0.0060195923, -0.0033435822, -0.023590088, -0.018341064, 0.0011148453, 0.03378296, -0.049316406, -0.005466461, -0.036102295, 0.004398346, 0.02671814, -0.008872986, 0.03060913, -0.016113281, -0.017852783, -0.007587433, 0.027526855, -0.06097412, 0.021026611, -0.02645874, -0.009422302, 0.019500732, 0.022003174, 0.047210693, -0.01927185, 0.020263672, -0.022476196, 0.015609741, -0.044403076, 0.012840271, 0.028076172, -0.05670166, -0.029464722, -0.0034751892, 0.06060791, 0.005088806, 0.028457642, 0.0073165894, -0.0068740845, -0.016540527, 0.0006427765, -0.09777832, -0.058135986, -0.017303467, -0.05114746, 0.014770508, -0.01020813, -0.0077819824, 0.059814453, 0.07208252, 0.0107421875, -0.006702423, -0.033966064, -0.00024366379, -0.0024299622, 0.036102295, -0.014549255, -0.019805908, -0.023468018, 0.005554199, -0.059143066, 0.06958008, 0.04623413, -0.0012435913, 0.0043029785, -0.012901306, -0.015449524, -0.03225708, -0.0020141602, 0.015899658, 0.019882202, -0.003200531, -0.0446167, 0.0032920837, -0.03237915, -0.008972168, -0.014419556, 0.03050232, -0.008422852, -0.05279541, -0.008522034, -0.03579712, 0.015960693, 0.029190063, -0.0041007996, 0.0019893646, -0.0050964355, -0.014633179, 0.03604126, -0.018661499, -0.010475159, 0.022460938, -0.016082764, 0.0073432922, -0.024642944, 0.0020484924, -0.078063965, 0.023422241, 0.06781006, -0.018661499, -0.024414062, 0.015792847, 0.010238647, -0.028808594, -0.039398193, 0.026504517, 0.007797241, -0.03164673, 0.028915405, 0.0055732727, -0.017623901, 0.027236938, -0.01638794, 0.02809143, 0.008323669, -0.026397705, 0.02684021, -0.01713562, 0.023590088, -0.050933838, 0.0007619858, -0.008644104, -0.03375244, -0.046142578, 0.012626648, -0.0052757263, 0.008636475, 0.056243896, -0.06317139, 0.048309326, -0.058013916, -0.035949707, 0.019515991, 0.05557251, -0.02709961, -0.0013933182, 0.025009155, -0.0075187683, -0.05682373, 0.009597778, -0.0063056946, 0.014427185, 0.022476196, -0.056884766, 0.003107071, 0.02670288, -0.035705566, 0.009124756, -0.031021118, 0.016799927, -0.015808105, 0.03265381, -0.018035889, -0.0008611679, 0.024719238, 0.016571045, 0.06451416, 0.024642944, -0.012954712, -0.038879395, -0.016479492, 0.0012331009, -0.03894043, 0.039276123, -0.001578331, 0.0047035217, 0.01953125, -0.0140686035, 0.007713318, 0.009422302, -0.010650635, 0.02532959, 0.018463135, 0.008964539, 0.0074501038, -0.025268555, 0.07324219, -0.027389526, -0.05606079, 0.0024986267, 0.084228516, -0.001332283, 0.011398315, 0.0892334, 0.032318115, 0.01335907, 0.03225708, -0.012031555, -0.04168701, -0.00920105, 0.02470398, -0.10070801, -0.055114746, -0.040802002, 0.020141602, -0.03050232, -0.035583496, -0.009628296, 0.051483154, 0.034210205, -0.0004682541, -0.017623901, -0.058258057, 0.028717041, -0.002450943, -0.008850098, -0.024353027, 0.020828247, -0.05154419, 0.023742676, -0.022491455, -0.050567627, 0.00289917, 0.036102295, 0.002861023, 0.0005698204, -0.0018663406, -0.015419006, -0.013809204, 0.045837402, -0.0057258606, 0.005004883, -0.0015821457, -0.0057792664, 0.0044784546, -0.011688232, 0.02079773, 0.019241333, -0.033111572, 0.0027179718, 0.035858154, 0.042755127, -0.028411865, 0.020843506, 0.062316895, 0.024490356, 0.009513855, 0.026672363, 0.02142334, -0.0037078857, -0.029037476, 0.0074806213, 0.016174316, -0.036987305, -0.019805908, -0.002363205, -0.043060303, -0.004085541, -0.017791748, -0.012168884, -0.014923096, 0.03781128, -0.023544312, -0.0029029846, 0.0035171509, -0.030319214, 0.017501831, -0.034118652, 0.031982422, -0.03161621, 0.038726807, 0.04425049, -0.018508911, -0.049194336, 0.017105103, 0.030944824, -0.050323486, 0.05392456, 0.0004069805, 0.026870728, 0.034057617, -0.04840088, -0.021774292, -0.003490448, 0.03414917, -0.016830444, -0.019104004, -0.0181427, 0.01184082, 0.037994385, 0.0073547363, 0.039398193, -0.022583008, 0.027191162, -0.025115967, 0.0149383545, -0.056884766, -0.030273438, -0.012229919, -0.021392822, -0.0024089813, 0.023010254, -0.009025574, 0.02923584, 0.030349731, 0.011795044, -0.007835388, -0.02178955, 0.01713562, 0.02960205, 0.001162529, -0.04510498, -0.03857422, 0.03729248, 0.031433105, -0.03552246, -0.03366089, 0.007911682, 0.049926758, 0.0016927719, -0.012924194, 0.016174316, -0.05819702, -0.0013313293, 0.018661499, 0.042175293, -0.0053901672, -0.04864502, -0.023330688, -0.01991272, 0.009315491, -0.03137207, 0.00022101402, -0.010108948, 0.015808105, 0.009346008, 0.041107178, -0.05883789, 0.029220581, -0.0040626526, 0.031173706, 0.023162842, 0.016738892, -0.014953613, 0.009002686, -0.018447876, -0.014701843, 0.01689148, -0.07122803, -0.031585693, 0.019546509, -0.022369385, -0.032165527, 0.017501831, 0.010185242, -0.01979065, 0.009613037, -0.044830322, -0.0007662773, -0.018997192, -0.0368042, -0.013954163, 0.015991211, -0.0345459, 0.01927185, 0.026062012, -0.022964478, -0.0035266876, 0.0024147034, -0.027175903, -0.020355225, -0.0065689087, 0.018493652, 0.032562256, 0.010864258, 0.020645142, -0.008964539, -0.040252686, -0.064697266, 0.035583496, -0.06524658, -0.04638672, 0.0071525574, 0.016082764, 0.031433105, 0.019882202, 0.005607605, 0.07965088, 0.012710571, 0.0013151169, 0.015411377, -0.0395813, -0.017959595, 0.014572144, -0.010292053, -0.013320923, -0.009628296, 0.03225708, 0.022338867, -0.0062408447, 0.026519775, 0.026763916, -0.11071777, -0.014953613, -0.048706055, 0.0011863708, -0.024902344, -0.009719849, 0.02949524, 0.005554199, -0.02029419, -0.002374649, 0.046142578, 0.02583313, 0.043823242, -0.033081055, 0.013061523, -0.056243896, -0.044067383, -0.059295654, -0.019882202, 0.041015625, 0.008911133, -0.04421997, -0.004463196, 0.02166748, -0.022338867, 0.0023593903, 0.036010742, 0.005634308, -0.005634308, 0.0206604, 0.033843994, 0.015129089, 0.0006918907, 0.03189087, -0.04837036, -0.03024292, -0.030853271, 0.014015198, -0.0062408447, 0.014961243, -0.026657104, 0.0284729, 0.0088272095, 0.020126343, 0.0044288635, -0.06915283, 0.041412354, 0.06903076, 0.00434494, -0.033294678, -0.003068924, -0.026184082, -0.024261475, 0.009933472, 0.0041236877, 0.015617371, -0.024215698, 0.062347412, 0.018112183, 0.048461914, -0.0140686035, -0.037872314, -0.046020508, 0.03189087, 0.005710602, 0.0048828125, 0.01965332, -0.003873825, 0.017593384, 0.023330688, -0.012710571, -0.045898438, 0.040161133, 0.08404541, 0.016067505, 0.025970459]}, "B01KJGBC6A": {"id": "B01KJGBC6A", "original": "Brand: Char-Broil\nName: Char-Broil Portable 240 Liquid Propane Gas Grill\nDescription: \nFeatures: 240 Square inch cooking area and built to travel\nSturdy legs for stability on a Table or the ground, carrying handles for easy transport\nLid-mounted temperature gauge, painted porcelain body\nFor use with 1Lb propane tanks, (Sold Separately)\n", "metadata": {"Name": "Char-Broil Portable 240 Liquid Propane Gas Grill", "Brand": "Char-Broil", "Description": "", "Features": "240 Square inch cooking area and built to travel\nSturdy legs for stability on a Table or the ground, carrying handles for easy transport\nLid-mounted temperature gauge, painted porcelain body\nFor use with 1Lb propane tanks, (Sold Separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.05255127, 0.0055503845, -0.03366089, -0.020812988, -0.0040512085, 0.017852783, -0.045837402, 0.0043945312, -0.027618408, 0.009475708, -0.023406982, 0.032165527, -0.024505615, -0.03286743, 0.023406982, -0.0390625, 0.020645142, 0.024291992, -0.00762558, -0.028961182, -0.011268616, -0.025604248, -0.019546509, 0.11999512, 0.06304932, -0.048614502, -0.019683838, 0.0038585663, 0.034484863, 0.00749588, 0.026504517, -0.005207062, 0.0637207, -0.016677856, -0.03564453, -0.0077400208, 0.003200531, -0.016677856, -0.052856445, 0.029953003, 0.0053863525, -0.0037841797, 0.00034976006, -0.0036067963, -0.020141602, 0.0038604736, -0.00078487396, -0.026443481, 0.007633209, -0.005065918, -0.0007534027, 0.025924683, -0.00029706955, -0.0070610046, 0.010574341, 0.034484863, 0.061340332, -0.06567383, 0.019989014, -0.060272217, -0.032958984, -0.015792847, 0.058441162, 0.014595032, -0.052734375, 0.013870239, 0.07891846, -0.025512695, -0.00447464, -0.042297363, 0.0033187866, 0.02508545, 0.014427185, 0.013183594, -0.0030879974, -0.04626465, 0.013702393, -0.027618408, 0.03817749, 0.013931274, -0.05291748, -0.036956787, -0.01007843, -0.024108887, -0.0043907166, -0.008277893, -0.01550293, 0.0018177032, -0.011116028, -0.034484863, -0.010108948, -0.022888184, -0.043640137, 0.04348755, 0.001250267, -0.014709473, -0.0096206665, -0.044555664, 0.039215088, -0.0036258698, 0.03201294, -0.03253174, -0.0141067505, 0.007713318, -0.0231781, 0.045013428, 0.007331848, 0.028762817, 0.005970001, 0.005092621, 0.005317688, -0.039093018, 0.009552002, -0.011642456, -0.030136108, -0.015670776, -0.021987915, 0.00029206276, -0.0044555664, -0.017578125, -0.030807495, -0.017242432, -0.022628784, 0.051879883, 0.062561035, 0.05935669, 0.009925842, 0.026184082, -0.06652832, 0.04748535, -0.024108887, 0.00042366982, 0.039093018, 0.0647583, 0.0063209534, -0.018875122, -0.015975952, -0.02104187, -0.016998291, 0.005252838, 0.0013284683, -0.03253174, 0.0053367615, 0.0014076233, -0.051605225, 0.028198242, 0.045715332, 0.008644104, -0.05593872, -0.079956055, -0.006801605, 0.018249512, 0.036987305, 0.023345947, -0.076171875, 0.017364502, -0.029159546, -0.005771637, -0.0418396, -0.053955078, -0.021820068, 7.289648e-05, 0.0047416687, -0.011657715, -0.029418945, 0.0018548965, 0.02519226, 0.0066490173, 0.01586914, 0.059295654, -0.012397766, -0.013008118, 0.0064811707, 0.004459381, -0.017944336, 0.00048327446, 0.01737976, 0.04034424, 0.04095459, -0.060302734, -0.06213379, -0.046325684, 0.12054443, -0.05291748, 0.016906738, -0.040222168, 0.032043457, -0.021362305, -0.0099487305, 0.011779785, 0.033813477, 0.029296875, -0.014450073, -0.018600464, 0.0049324036, -0.0059318542, -0.03781128, -0.0005235672, -0.012184143, 0.0025424957, 0.008132935, 0.0053482056, 0.019958496, 0.006958008, 0.0158844, 0.0011396408, 0.00957489, 0.010108948, 0.04547119, 0.029510498, -0.026184082, -0.0034484863, 0.016555786, -0.046447754, -0.030410767, 0.009338379, 0.013374329, 0.033081055, 0.013969421, 0.025390625, 0.032714844, -0.017730713, 0.022659302, 0.032226562, -0.01424408, -0.013046265, -0.028961182, 0.005504608, -0.004470825, -0.022354126, 0.036376953, 0.034057617, 0.0713501, 0.0892334, 0.022033691, 0.02078247, 0.07745361, -0.031463623, 0.004600525, -0.011558533, 0.023147583, -0.020309448, -0.026794434, -0.0016736984, 0.040863037, -0.012580872, -0.005378723, -0.0001975298, -0.022659302, 0.00957489, 0.023910522, -0.017471313, 0.022476196, 0.038360596, -0.027038574, 0.020019531, -0.02406311, 0.03338623, -0.04071045, 0.053833008, -0.033081055, 0.07513428, 0.072753906, -0.0022411346, -0.00868988, 0.0016174316, 0.017700195, 0.025024414, -0.024276733, -0.010147095, 0.015350342, 0.036132812, 0.011856079, -0.030319214, -0.012878418, -0.00541687, -0.035980225, 0.035308838, 0.01083374, -0.031021118, 0.014801025, -0.032928467, -0.003162384, 0.0063323975, 0.04547119, 0.016067505, 0.032226562, 0.050323486, -0.022979736, -0.013763428, 0.01222229, 0.0060043335, -0.0026855469, -0.006778717, -0.012107849, -0.024871826, 0.05859375, 0.01473999, 0.02394104, -0.034057617, 0.0045776367, 0.011749268, -0.06427002, 0.028289795, -0.028945923, 0.021224976, -0.03387451, 0.013885498, 0.004573822, -0.05618286, 0.03753662, 0.03552246, 0.039642334, 0.012565613, 0.05380249, 0.009361267, 0.023025513, 0.05444336, 0.0021209717, -0.026428223, -0.012229919, -0.027755737, -0.022476196, 0.01071167, -0.013725281, 0.0070610046, 0.0231781, -0.0018987656, -0.0066184998, 0.0024814606, -0.044769287, -0.028305054, -0.019042969, 0.023498535, -0.024810791, 0.0050697327, 0.011817932, 0.014007568, -0.005268097, -0.03756714, -0.011703491, -0.051330566, -0.016326904, -0.020095825, -0.028121948, -0.036224365, 0.026290894, -0.0056877136, 0.010520935, 0.012084961, 0.010238647, 0.004283905, -0.009635925, -0.015220642, -0.008026123, -0.03543091, -0.00024187565, -0.036987305, -0.050750732, -0.06781006, -0.02532959, -0.015808105, -0.06225586, 0.013793945, 0.06237793, -0.0006184578, -0.010795593, -0.02204895, -0.022842407, 0.014579773, 0.027114868, 0.016937256, -0.08984375, -0.032714844, -0.054504395, 0.018981934, 0.008934021, -0.049987793, 0.020477295, -0.0038375854, -0.012168884, 0.01209259, -0.012962341, 0.022460938, 0.022903442, 0.012245178, 0.021652222, 0.043670654, 0.016220093, -0.017700195, 0.007537842, 0.033111572, -0.017913818, -0.0067329407, 0.023757935, 0.012641907, -0.041290283, -0.015716553, -0.05899048, -0.0066223145, -0.09075928, -0.0033607483, 0.009674072, -0.052612305, -0.0007491112, -0.044403076, -0.048461914, -0.04638672, -0.007713318, 0.075683594, -0.034484863, -0.011924744, -0.050567627, 0.010643005, 0.024902344, 0.0037975311, 0.022888184, -0.027359009, 0.034332275, -0.0019702911, 0.0128479, -0.020706177, 0.004333496, 0.021942139, -0.03265381, 0.04006958, -0.028808594, 0.0178833, -0.04220581, 0.007385254, -0.0051651, -0.0054893494, -0.015701294, -0.0024166107, -0.02835083, -0.018157959, -0.010787964, -0.043029785, 0.035308838, -0.045928955, -0.01309967, -0.009994507, 0.021820068, 0.0440979, 0.005718231, 0.008049011, -0.024383545, -0.017150879, -0.0075683594, -0.0054359436, 0.015029907, 0.010032654, 0.018554688, 0.014099121, -0.02168274, 0.024658203, 0.0066070557, 0.041778564, 0.0043907166, -0.03363037, -0.023788452, -0.039642334, 0.0068740845, -0.002128601, -0.01550293, -0.0045166016, 0.0066337585, 0.032989502, -7.224083e-05, -0.0023899078, 0.011978149, 0.030807495, 0.014724731, -0.04598999, 0.025039673, -0.04333496, 0.01676941, 0.00082206726, 0.012306213, -0.037628174, -0.051574707, 0.016143799, -0.0803833, 0.07861328, 0.056365967, -0.034973145, 0.087402344, 0.0110321045, -0.0131073, 0.008483887, 0.026473999, -0.000729084, -0.008453369, 0.072509766, -0.025665283, -0.023971558, 0.017303467, -0.04510498, 0.01651001, 0.01612854, -0.073791504, 0.039733887, 0.007987976, -0.035583496, -0.003276825, -0.00749588, -0.00466156, -0.027542114, 0.0063209534, 0.033355713, -0.040985107, -0.033172607, -0.013671875, -0.0028476715, -0.019119263, 0.029632568, -0.023483276, -0.0054779053, -0.01939392, -0.014015198, 0.020889282, 0.031204224, -0.011161804, 0.043273926, -0.006046295, -0.0030784607, -0.03137207, -0.004337311, -0.014762878, -0.0112838745, 0.021774292, -0.009468079, 0.012519836, 0.017929077, 0.0022773743, 0.022460938, -0.0090789795, 0.023162842, -0.031082153, -0.08502197, 0.023635864, 0.04953003, 0.0028057098, -0.06384277, -0.008865356, -0.023101807, -0.020874023, -0.027679443, 0.026672363, -0.03463745, -0.00762558, 0.0032958984, -0.10284424, -0.027374268, -0.039245605, -0.0016431808, -0.062072754, 0.061279297, -0.008865356, -0.05456543, 0.0023975372, 0.035369873, -0.042022705, -0.017288208, -0.022445679, 0.0082092285, 0.0072402954, -0.011268616, 0.0025177002, -0.019851685, -0.020050049, 0.008422852, 0.044006348, -0.049743652, 0.01146698, -0.039031982, -0.041748047, 0.008842468, -0.002456665, 0.031204224, -0.012161255, 0.01209259, -0.040130615, -0.029647827, -0.05633545, -0.018936157, 0.008972168, -0.059020996, -0.07476807, -0.03845215, 0.07092285, 0.0054969788, 0.0115737915, 0.011329651, -0.008117676, 0.030349731, -0.020950317, -0.07086182, -0.00085544586, -0.01020813, -0.017089844, -0.005531311, -0.014823914, -0.0088272095, 0.05343628, 0.025177002, 0.045166016, -0.042663574, -0.015274048, -0.03640747, 0.009391785, 0.0028133392, -0.04510498, 0.020095825, -0.055847168, 0.00315094, -0.053955078, 0.06536865, 0.04977417, -0.014427185, 0.0030841827, 0.00579834, -0.017745972, -0.05203247, 0.0016260147, -0.0118637085, -0.010299683, -0.010383606, -0.027191162, 0.0056152344, -0.030273438, -0.0006079674, -0.030227661, 0.015083313, 0.0048446655, -0.022247314, -0.019241333, -0.029403687, -0.0011129379, 0.0039634705, 0.0057296753, 0.040740967, -0.004470825, -0.03466797, 0.03930664, -0.026779175, -0.035247803, -0.009788513, -0.00705719, -0.023239136, -0.0049972534, 0.005252838, -0.06341553, 0.056762695, 0.052642822, 0.012214661, -0.019256592, 0.0006108284, 0.014518738, -0.0021419525, 0.027252197, 0.08691406, -0.023544312, 0.039978027, 0.031555176, -0.010574341, 0.012214661, 0.02003479, -0.013755798, 0.0087890625, -0.006160736, -0.028778076, 0.019470215, 0.0016460419, 0.014305115, -0.045532227, 0.05999756, -0.005493164, -0.005180359, -0.06225586, 0.018508911, 0.028945923, -0.018615723, 0.017471313, -0.0345459, 0.045928955, -0.01600647, 0.00015091896, -0.0032138824, 0.010879517, -0.0368042, 0.001285553, -0.022338867, 0.006008148, 0.0051994324, -0.010269165, -0.008232117, 0.006477356, -0.012435913, -0.038879395, 0.023513794, 0.009109497, -0.020614624, -0.017211914, -0.022598267, 0.012374878, 0.015731812, -0.006717682, -0.029464722, -0.016357422, -0.012268066, 0.03375244, -0.0057373047, -0.0009756088, -0.0016260147, -0.028533936, -0.014709473, 0.03692627, -0.0060272217, 0.00022542477, -0.028533936, -0.003545761, 0.0071372986, -0.0028324127, 0.017089844, 0.015464783, -0.061157227, -0.0065841675, 0.0206604, 0.02798462, -0.038085938, 0.0031433105, 0.06518555, -0.05496216, -0.03237915, -0.02180481, 0.04397583, -0.046051025, -0.028717041, 0.08691406, 0.050750732, 0.020339966, 0.022537231, 0.009925842, -0.021392822, -0.015411377, 0.0039749146, -0.021865845, -0.042633057, -0.02319336, 0.007194519, -0.0105896, 0.005115509, 0.009483337, 0.059326172, -0.00466156, -0.06188965, -0.01424408, 0.016830444, 0.013656616, -0.039520264, 0.01096344, -0.027664185, -0.016830444, -0.016555786, -0.030593872, -0.061767578, -0.016967773, 0.012191772, 0.011985779, 0.012924194, -0.028015137, 0.012374878, 0.039123535, 0.0074043274, 0.04333496, -0.012641907, -0.011428833, -0.023223877, 0.049713135, 0.037384033, -0.0046691895, -0.04827881, -0.0259552, -0.02558899, 0.03189087, 0.07574463, 0.010879517, -0.016555786, 0.016845703, 0.053527832, 0.018676758, 0.039642334, 0.0067367554, 0.044891357, -0.005077362, -0.064575195, 0.014373779, 0.025146484, -0.044952393, 0.012878418, -0.03945923, -0.008407593, -0.0020484924, -0.021896362, -0.0048294067, -0.039093018, 0.06072998, -0.030334473, -0.0005002022, 0.012580872, -0.013137817, 0.04006958, -0.01763916, -0.03326416, -0.009933472, 0.035369873, 0.03475952, -0.032318115, -0.04284668, -0.010971069, 0.017211914, -0.0008659363, 0.020019531, -0.036834717, 0.049926758, 0.021987915, -0.070617676, -0.015510559, 0.045684814, 0.03161621, 0.023956299, -0.08123779, -0.03353882, -0.035614014, 0.024780273, -0.0054969788, 0.04748535, 0.0062942505, 0.0152282715, -0.010353088, 0.005760193, -0.0004003048, -0.012641907, 0.019470215, 0.029174805, 0.011894226, -0.013008118, -0.030319214, -0.017471313, 0.062805176, -0.024673462, 0.011138916, -0.03842163, 0.034942627, -0.055603027, 0.010093689, -0.026641846, -0.037200928, 0.004245758, 0.016433716, 0.00491333, 0.033721924, -0.015411377, 0.014228821, 0.0038013458, -0.081970215, 0.04525757, -0.07446289, 0.05569458, 0.027069092, 0.06286621, -0.04812622, -0.03616333, -0.019119263, 0.02432251, -0.018463135, 0.08581543, -0.018447876, 0.044158936, 0.039031982, -0.011291504, 0.043823242, -0.0435791, 0.0029754639, -0.010650635, 0.04107666, 0.04208374, 0.03994751, -0.03741455, -0.03677368, 0.009033203, -0.008056641, 0.018661499, -0.024719238, 0.018630981, 0.0038204193, 0.0023994446, -0.037231445, 0.034698486, -0.016723633, -0.033569336, 0.005344391, -0.024139404, -0.022613525, -0.0047569275, -0.035308838, -0.033111572, 0.014190674, -0.03717041, -0.0056152344, 0.007461548, -0.022018433, -0.0010652542, 0.0074005127, -0.019210815, -0.013412476, -0.005077362, 0.023864746, 0.031829834, 0.0016336441, 0.05166626, -0.03289795, -0.04647827, -0.018737793, 0.020187378, -0.025054932, -0.04071045, 0.021850586, 0.0029315948, 0.025222778, 0.0038013458, -0.003419876, 0.030197144, 0.030288696, -0.0107803345, 0.020629883, -0.018493652, -0.0116119385, 0.010414124, 0.01979065, -0.045196533, -0.019577026, 0.0050582886, -0.0019283295, -0.018569946, 0.022705078, -0.01499176, -0.06964111, -0.004600525, -0.005832672, -0.00969696, -0.009651184, 0.014732361, 0.00058555603, 0.0211792, -0.040222168, -0.003080368, -0.025146484, 0.04272461, 0.04324341, -0.017028809, 0.032440186, -0.03277588, -0.09863281, -0.064941406, -0.032592773, 0.0541687, 0.050323486, 0.052764893, 0.009437561, 0.025238037, -0.03729248, 0.061553955, -0.009025574, -0.064697266, -0.0045166016, 0.0440979, 0.008735657, -0.0032749176, 0.0052948, 0.025421143, -0.044433594, -0.010719299, 0.029388428, 0.011291504, -0.02053833, -0.007106781, -0.018630981, -0.0074043274, -0.0077209473, -0.010734558, -0.041168213, 0.006111145, -0.0146865845, 0.0074806213, -0.0067634583, -0.0076179504, 0.0067710876, 0.027359009, -0.043884277, -0.0014133453, 0.04257202, -0.009231567, -0.05178833, 0.03503418, 0.040496826, -0.010681152, 0.020324707, -0.07269287, -0.010658264, 0.028686523, 0.016403198, -0.047729492, 0.023712158, -0.051086426, 0.0072746277, 0.03463745, -0.02180481, -0.033447266, 0.018936157, 0.021469116, 0.0022888184, 0.016799927]}, "B07BLHCHX6": {"id": "B07BLHCHX6", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Arrives fully assembled\nPUSH-BUTTON IGNITION: For matchless lighting\n", "metadata": {"Name": "Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black", "Brand": "Coleman", "Description": "", "Features": "COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Arrives fully assembled\nPUSH-BUTTON IGNITION: For matchless lighting", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022903442, 0.011734009, -0.021377563, 0.0154800415, 0.0023517609, -0.014312744, 0.016555786, -0.018539429, -0.051361084, -0.028396606, -0.022521973, 0.01927185, -0.030670166, -0.049102783, 0.06738281, -0.054473877, 0.0015697479, 0.042633057, -0.00067329407, -0.034057617, 0.0011453629, -0.030227661, -0.039886475, 0.10217285, 0.05218506, -0.04159546, -0.021316528, -0.005706787, 0.02519226, -0.0042533875, 0.025344849, 0.016357422, 0.04562378, -0.0013933182, -0.026611328, -0.0018281937, 0.004463196, -0.0076408386, -0.032318115, 0.02935791, 0.0140686035, -0.0090408325, -0.052246094, 0.021621704, -0.051208496, -0.024642944, 0.014678955, -0.013511658, 0.009490967, 0.026626587, -0.0058517456, 0.01763916, 0.0022735596, -0.034454346, 0.0024909973, -0.0015125275, 0.015670776, -0.019699097, 0.014915466, -0.04611206, -0.014961243, -0.0070152283, 0.051971436, 0.02835083, -0.036376953, 0.011665344, 0.074523926, -0.018432617, 0.01689148, -0.045440674, -0.01247406, 0.028701782, 0.0020542145, 0.059020996, -0.04611206, -0.07800293, 0.042175293, -0.04373169, 0.035491943, 0.020446777, -0.001115799, -0.026916504, -0.007801056, -0.02293396, 0.019699097, 0.004383087, -0.016220093, -0.009353638, -0.01008606, -0.031036377, -0.008148193, 0.0053138733, -0.07470703, 0.06665039, 0.014625549, -0.0096588135, -0.0071144104, -0.039093018, 0.008934021, -0.018844604, 0.021453857, -0.024642944, -0.0121154785, 0.0066604614, -0.01625061, 0.023452759, 0.02180481, 0.07208252, 0.0362854, -0.006679535, -0.007499695, 0.029418945, 0.04336548, 0.02999878, -0.035003662, -0.060913086, -0.017089844, 0.030197144, -0.008293152, 0.008705139, -0.052215576, -0.03086853, 0.02798462, 0.012313843, 0.045135498, 0.021453857, 0.011100769, 0.004169464, -0.012176514, 0.064208984, -0.045959473, -0.017562866, 0.037963867, 0.03111267, 0.007095337, -0.047668457, 0.015731812, 0.00013387203, 0.008636475, -0.0113220215, 0.0044517517, -0.0033950806, 0.023742676, -0.006958008, -0.023345947, -0.0025749207, 0.0390625, 0.033111572, -0.029830933, -0.062683105, 0.043670654, 0.005092621, 0.034729004, 0.0019721985, -0.031585693, 0.012054443, -0.0259552, 0.006439209, -0.024032593, -0.020614624, -0.007369995, -0.019470215, -0.010444641, -0.00017642975, -0.022659302, 0.025222778, 0.033294678, -0.00070667267, 0.039520264, 0.05722046, 0.024429321, -0.023742676, 0.0335083, 0.05154419, -0.003616333, 0.0084991455, -0.011932373, 0.04043579, 0.046051025, -0.07714844, -0.048706055, -0.04763794, 0.07800293, -0.015686035, -0.008399963, -0.016799927, 0.03186035, 0.017410278, -0.018493652, 0.017349243, 0.03479004, 0.02218628, -0.019958496, 0.0023097992, 0.02999878, 0.009025574, -0.032989502, 0.014251709, 0.0011520386, -0.049072266, 0.0071105957, 0.010726929, -0.0010080338, 0.00869751, 0.0073547363, -0.0031719208, 0.013244629, 0.008071899, 0.039916992, 0.0362854, -0.010665894, 0.0140686035, 0.008277893, -0.06854248, -0.039398193, 0.0115737915, -0.026641846, 0.02458191, 0.030944824, 0.01663208, 0.0592041, -0.0033550262, 0.052368164, -0.01701355, 0.029220581, -0.021850586, -0.0062828064, -0.0135650635, 0.03665161, -0.012329102, 0.010177612, 0.030151367, 0.06347656, 0.072021484, 0.008277893, 0.041900635, 0.0803833, 0.052764893, -0.029373169, -0.036102295, 0.00737381, -0.02810669, -0.057678223, -0.016616821, -0.01574707, 0.0036067963, 0.0066986084, -0.0058250427, -0.015655518, -0.009902954, 0.043945312, -0.0036621094, 0.036102295, 0.06829834, -0.011146545, 0.01864624, -0.04208374, 0.011734009, -0.023239136, 0.029006958, -0.019821167, 0.061798096, 0.06225586, 0.0013713837, 0.042266846, 0.021591187, 0.03869629, 0.026901245, -0.05493164, 0.022888184, 0.020233154, 0.01852417, -0.012237549, -0.021850586, 0.034606934, -0.019805908, -0.03942871, 0.029144287, 0.01525116, -0.024963379, 0.029388428, -0.0030708313, -0.007671356, 0.00881958, 0.045684814, 0.013389587, 0.011619568, 0.040130615, -0.0647583, -0.035583496, 0.011558533, -0.028869629, -0.026138306, -0.022018433, -0.053985596, -0.035858154, 0.06994629, -0.0016460419, 0.018951416, -0.023269653, 0.033203125, 0.027923584, -0.066833496, 0.036834717, -0.0055274963, -0.0036144257, -0.0036506653, 0.023864746, 0.001964569, -0.049987793, 0.0041770935, -0.01902771, 0.024353027, 0.007205963, -0.0015382767, -0.0072631836, -0.026901245, 0.029525757, -0.018692017, 0.010368347, -0.0057792664, -0.034576416, -0.039154053, -0.010948181, -0.017242432, 0.0068359375, -0.013938904, -0.009773254, -0.028427124, 0.004924774, 0.013961792, -0.010017395, 0.0045814514, 0.007347107, 0.0017719269, 0.0013933182, 0.0039901733, 0.027008057, 0.0044670105, -0.02407837, 0.018035889, -0.034118652, -0.0044441223, 0.0019607544, -0.036468506, -0.013969421, 0.041778564, 0.0074005127, 0.021118164, 0.0112838745, 0.0016040802, -0.017440796, 0.0023517609, -0.02319336, -0.012786865, -0.010192871, -0.02357483, -0.06964111, -0.047912598, -0.09088135, -0.01171875, 0.023483276, -0.03451538, -0.03010559, 0.028884888, -0.032470703, -0.018173218, -0.013450623, -0.013786316, 0.005947113, -0.0049819946, 0.024429321, -0.032348633, -0.026977539, -0.026123047, 0.0031852722, 0.047424316, -0.02003479, -0.014160156, 0.011138916, 0.00047802925, 0.0005669594, -0.006248474, 0.007522583, 0.01108551, 0.024841309, 0.021057129, 0.034851074, 0.0017642975, -0.017227173, 0.0022907257, 0.04345703, -0.060272217, -0.011268616, 0.00705719, 0.030288696, -0.04107666, -0.04840088, -0.026947021, -0.009773254, -0.109436035, 0.008300781, -0.0023212433, -0.04611206, -0.0181427, -0.045440674, -0.060943604, -0.059051514, 0.012290955, 0.037353516, -0.030578613, 0.008758545, -0.04067993, 0.011993408, -0.0107040405, 0.012062073, 0.0569458, -0.017303467, 0.054840088, -0.042022705, 0.00705719, -0.0513916, 0.022232056, 0.015335083, -0.009643555, 0.053863525, -0.01537323, 0.011405945, 0.001253128, 0.0015048981, 0.010673523, -0.009979248, -0.010536194, 0.01234436, 0.001543045, 0.019088745, -0.015136719, -0.052703857, 0.020095825, -0.031280518, 1.9967556e-05, -0.009277344, -0.028625488, 0.03894043, -0.00983429, -0.021469116, -0.009422302, -0.047973633, -0.00730896, -0.037994385, 0.0055732727, 0.0032596588, 0.022750854, 0.013694763, -0.0062179565, 0.053253174, 0.0112838745, 0.05899048, 0.026611328, -0.066223145, -0.043762207, -0.044189453, 0.024093628, 0.007881165, 0.012527466, -0.06427002, 0.023864746, 0.008354187, -0.005050659, 0.0093688965, -0.007659912, 0.054992676, 0.062438965, -0.03074646, -0.0041236877, -0.08428955, 0.043823242, 0.023727417, -0.007575989, -0.087524414, -0.03967285, 0.008010864, -0.08850098, 0.0869751, 0.07757568, -0.035949707, 0.08325195, 0.00995636, 0.0023384094, 0.046020508, 0.07739258, 0.006008148, 0.028839111, 0.07342529, -0.016738892, -0.02407837, 0.004802704, -0.001335144, -0.00081157684, -0.008972168, -0.045532227, 0.01651001, 0.028457642, -0.010353088, 0.006072998, -0.013259888, 0.016571045, 0.00844574, 0.00048470497, 0.0069885254, 0.00422287, -0.015579224, -0.021408081, 0.0021858215, -0.028152466, 0.0035896301, -0.017700195, -0.013793945, -0.032287598, -0.0034427643, 0.030639648, 0.015930176, 0.016281128, 0.017745972, 0.0051994324, 0.009613037, -0.01675415, 0.011222839, -0.01713562, 0.0010356903, 0.0335083, 0.026916504, 0.011871338, -0.008773804, -7.081032e-05, -0.012863159, -0.018173218, 0.0154418945, -0.014732361, -0.07348633, 0.008232117, 0.05130005, 0.008071899, -0.025772095, 0.020690918, -0.01411438, 0.030700684, 0.016403198, -0.037078857, 0.00831604, -0.042541504, -0.012893677, -0.09259033, -0.012367249, -0.0027866364, 0.0072631836, -0.03652954, 0.034240723, -0.044525146, -0.036590576, 0.0025043488, -8.660555e-05, -0.021560669, -0.014083862, -0.020690918, -3.5583973e-05, 0.061950684, 0.020599365, 0.025543213, -0.02796936, 0.020568848, -0.0074539185, 0.087646484, -0.0059661865, 0.027572632, -0.05105591, -0.035339355, -0.0021133423, 0.0067443848, 0.039489746, -0.028701782, 0.030792236, -0.020263672, -0.008010864, -0.031311035, -0.03555298, 0.04058838, -0.05328369, -0.024154663, -0.039611816, 0.05859375, -0.019973755, -0.0008087158, -0.029434204, 0.029815674, 0.026245117, 0.01071167, -0.07336426, -0.039794922, 0.007751465, -0.007888794, -0.02154541, 0.007843018, -0.018218994, 0.022613525, -0.03842163, -0.009010315, -0.017227173, -0.001707077, -0.000620842, -0.028289795, 0.017593384, -0.048034668, -0.0018701553, -0.048553467, 0.023025513, -0.06500244, 0.07989502, 0.03567505, -0.030807495, -0.005622864, 0.008300781, -0.011390686, -0.033599854, -0.00856781, -0.005908966, -0.048553467, -0.03842163, -0.03579712, 0.012413025, -0.02772522, -0.0035820007, -0.016525269, -0.036987305, -0.0032749176, 0.01928711, 0.0034866333, -0.029891968, 0.019958496, 0.04144287, 0.012931824, 0.02142334, 0.016830444, -0.037475586, 0.0049324036, -0.03060913, -0.015808105, 0.0047187805, -0.018844604, -0.020904541, -0.0040626526, 0.0017681122, -0.050750732, 0.022659302, 0.03439331, -0.013786316, -0.010734558, 0.0010290146, 0.04006958, -0.018707275, -0.010795593, 0.06201172, -0.011230469, 0.011817932, 0.048187256, -0.02017212, -0.0014877319, 0.034118652, -0.022369385, 0.03717041, 0.009017944, -0.021896362, 0.044525146, 0.009117126, -0.015510559, -0.045837402, 0.07598877, -0.011810303, -0.006134033, -0.038482666, 0.023071289, 0.05166626, 0.015731812, 0.023239136, -0.046020508, 0.07281494, -0.061065674, -0.044433594, 0.018707275, 0.019760132, 0.016601562, 0.026977539, 0.008766174, -0.0028095245, -0.027572632, -0.0048103333, -0.025894165, -0.004432678, 0.015205383, -0.022750854, 0.0046653748, 0.015213013, -0.0105896, -0.012382507, -0.023727417, 0.0024414062, -0.057403564, 0.042175293, -0.037078857, 0.00074481964, 0.010543823, 0.0121536255, -0.032196045, 0.008758545, -0.038360596, -0.053466797, -0.07885742, -0.0004081726, -0.017227173, 0.039367676, -0.0064735413, -0.011802673, 0.013252258, -0.0017814636, 0.029632568, -0.017074585, -0.017562866, -0.007385254, 0.03515625, 0.070007324, -0.029266357, 0.0068092346, 0.09362793, -0.060180664, -0.04284668, -0.05065918, 0.08111572, -0.03778076, 0.037994385, 0.0135650635, 0.020095825, 0.017425537, 0.041168213, 0.021377563, -0.043060303, 0.019622803, 0.002073288, -0.048583984, 0.001613617, -0.022445679, 0.006248474, 0.031082153, 0.04888916, 0.009376526, 0.051513672, 0.0019321442, -0.008430481, -0.0413208, 0.031951904, -0.017318726, -0.0064888, 0.00111866, -0.012718201, -0.009162903, -0.04660034, -0.016281128, -0.028305054, -0.008224487, 0.03237915, 0.036224365, 0.04336548, -0.032806396, 0.024169922, 0.034973145, -0.01600647, 0.06970215, -0.0008196831, -0.01083374, 0.008285522, -0.001074791, -0.01121521, -0.000834465, 0.03375244, 0.013641357, -0.017654419, -0.007713318, 0.032592773, 0.028915405, -0.03945923, -0.00422287, 0.058135986, 0.033813477, 0.007858276, 0.025634766, 0.014419556, 0.0025997162, -0.0075645447, -0.0005002022, 0.050354004, -0.029296875, -0.010612488, -0.073791504, 0.018936157, -0.005256653, 0.0033893585, 0.007423401, -0.027328491, 0.04333496, 0.0025081635, -0.02835083, 0.01713562, -0.010192871, 0.026473999, 0.010879517, -0.042144775, 0.040863037, -0.011245728, 0.0049972534, -0.0065956116, 0.008880615, -0.004886627, 0.007858276, -0.042266846, 0.0692749, -0.05908203, 0.037872314, 0.035339355, -0.05734253, -0.017944336, 0.058258057, 0.018753052, 0.0076675415, -0.033691406, 0.000600338, -0.009483337, -0.009468079, 0.020645142, 0.06878662, -0.003921509, 0.010391235, -0.035491943, -0.009963989, -0.004096985, -0.045135498, 0.03665161, 0.017700195, -0.017181396, -0.010032654, -0.043640137, 0.0047836304, 0.058624268, -0.00025963783, 0.013893127, -0.01449585, 0.032196045, -0.01638794, -0.018112183, -0.036590576, -0.049194336, 0.026321411, 0.018203735, -0.030548096, 0.018249512, 0.012527466, -0.04058838, 0.054656982, -0.07965088, 0.03591919, -0.009689331, 0.08459473, 0.04208374, 0.06088257, -0.019943237, -0.0073013306, -0.0011205673, 0.0041503906, 0.014511108, 0.03414917, 0.011421204, 0.012336731, 0.028182983, -0.008834839, 0.039978027, -0.029663086, 0.0065345764, -0.005695343, 0.025009155, 0.010307312, 0.029769897, -0.00082063675, -0.010238647, -0.0058555603, -0.004299164, 0.022918701, -0.006378174, 0.020065308, -0.007896423, -0.017471313, -0.022415161, 0.024124146, -0.005367279, -0.022003174, -0.012184143, -0.032440186, -0.029373169, -0.024093628, -0.052459717, -0.015716553, -0.0017614365, -0.06652832, 0.017700195, -0.013343811, -0.008033752, 0.015640259, -0.014335632, -0.0077209473, -0.04055786, 0.025878906, 0.0037498474, 0.026168823, 0.008628845, 0.062286377, -0.011749268, -0.047943115, -0.06762695, 0.0006146431, -0.022537231, -0.004776001, -0.0009422302, -0.024475098, -0.03186035, -0.008712769, 0.039398193, 0.068115234, 0.035949707, 0.012207031, 0.005077362, -0.03201294, -0.031219482, 0.071777344, 0.027938843, -0.06732178, -0.027694702, 0.03515625, 0.018188477, 0.008613586, 0.019805908, 0.025985718, -0.04119873, 0.025222778, -0.008216858, -0.007980347, -0.017974854, -0.014640808, 0.006175995, 0.012275696, -0.035858154, -0.035369873, 0.0024909973, 0.002319336, 0.036956787, 0.010650635, 0.043395996, -0.012123108, -0.08123779, -0.06585693, -0.02607727, 0.047973633, 0.016311646, -0.008117676, -0.015113831, 0.040130615, -0.018295288, 0.03302002, 0.042907715, -0.020706177, 0.0006623268, 0.0071105957, 0.034454346, -0.0055770874, -0.0031909943, 0.046722412, -0.021957397, -0.03286743, -0.0057907104, 0.005531311, -0.004890442, -0.007259369, -0.02432251, 0.020462036, -0.020904541, -0.019821167, -0.038848877, -0.013015747, 0.0009937286, 0.024917603, -0.0146865845, -0.0021209717, -0.008583069, 0.014587402, -0.02130127, 0.012290955, 0.014053345, 0.008872986, -0.032165527, 0.02319336, 0.018661499, 0.018981934, 0.0021457672, -0.013168335, -0.016036987, 0.023788452, 0.017501831, -0.024597168, 0.0413208, -0.01550293, 0.014434814, -0.0072784424, 0.0011835098, -0.013259888, 0.008834839, 0.01625061, -0.028244019, 0.014328003]}, "B01BW4K0LG": {"id": "B01BW4K0LG", "original": "Brand: MARTIN\nName: MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan\nDescription: Compatible with both high and low pressure lines \u2013 ideal for trailers \u2013 this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That\u2019s why we created the\u00a0MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat \u2013 or vegetable \u2013 you\u2019re grilling which means you\u2019ll be able to get that delicious \u201cseared on the outside, juicy on the inside\u201d performance\u00a0every time. Thanks to the closing lid you\u2019ll find it\u2019s much easier to get evenly-cooked food and keep the bugs away while you\u2019re cooking.\u00a0

      Product details:

      • Adjustable cooking temperature
      • Large porcelain cooking grid
      • Piezo igniter
      • Heat indicator
      • Folding support legs
      • Brushed stainless steel cover
      • Grease pan
      • Certified for USA and CANADA
      Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.\nFeatures: U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go\nFOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute\nADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking\nGREASE PAN - Quick clean grease tray keeps your grilling area clean\n354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source\n", "metadata": {"Name": "MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan", "Brand": "MARTIN", "Description": "Compatible with both high and low pressure lines \u2013 ideal for trailers \u2013 this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That\u2019s why we created the\u00a0MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat \u2013 or vegetable \u2013 you\u2019re grilling which means you\u2019ll be able to get that delicious \u201cseared on the outside, juicy on the inside\u201d performance\u00a0every time. Thanks to the closing lid you\u2019ll find it\u2019s much easier to get evenly-cooked food and keep the bugs away while you\u2019re cooking.\u00a0

      Product details:
      • Adjustable cooking temperature
      • Large porcelain cooking grid
      • Piezo igniter
      • Heat indicator
      • Folding support legs
      • Brushed stainless steel cover
      • Grease pan
      • Certified for USA and CANADA
      Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.", "Features": "U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go\nFOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute\nADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking\nGREASE PAN - Quick clean grease tray keeps your grilling area clean\n354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.007896423, 0.018432617, -0.021209717, 0.0031051636, 0.0079422, -0.010765076, 0.014877319, -0.024612427, -0.026885986, -0.01802063, 0.015106201, 0.026412964, -0.035827637, -0.046905518, 0.04067993, -0.03756714, 0.0053215027, 0.007434845, -0.024154663, -0.027053833, -0.0015239716, -0.02394104, -0.057556152, 0.12011719, 0.03387451, -0.053344727, 0.0090408325, 0.030838013, 0.018157959, 0.0061187744, 0.034057617, -0.019088745, 0.024932861, -0.023773193, 0.0030918121, -0.01864624, -0.027297974, 0.007068634, -0.007381439, -0.011482239, -0.00014972687, 0.017684937, -0.021133423, 0.010787964, -0.037841797, -0.03302002, 7.253885e-05, -0.01713562, 0.004966736, 0.0077781677, -0.019592285, -0.0070991516, -0.010971069, -0.00089788437, -0.0053634644, -0.001156807, 0.01109314, -0.007820129, 0.027160645, -0.0151901245, -0.028518677, -0.0060653687, 0.028259277, -0.011306763, -0.042663574, 0.0069770813, 0.027954102, -0.02168274, 0.0062446594, -0.027786255, 0.024459839, 0.0047798157, 0.010635376, 0.024124146, -0.03677368, -0.025390625, 0.009483337, -0.01625061, 0.04272461, 0.010276794, -0.009178162, -0.014045715, 0.023422241, -0.023208618, -0.002281189, -0.01763916, -0.015960693, 0.0052948, -0.009231567, -0.026626587, -0.009178162, -0.037475586, -0.06088257, 0.07122803, 0.018371582, -0.008575439, -0.032318115, -0.06414795, 0.028747559, 0.025054932, 0.025100708, -0.038116455, 0.045288086, 0.0019989014, -0.03793335, 0.06222534, 0.025787354, 0.044403076, -0.016342163, 0.0008869171, 0.0037841797, -0.059387207, -0.027832031, -0.02798462, -0.025543213, 0.0546875, -0.013725281, -0.020477295, -0.005996704, 0.00020647049, -0.016418457, -0.0075149536, -0.001335144, 0.0070266724, 0.035339355, 0.0027179718, -0.006603241, 0.015945435, -0.06817627, 0.03717041, -0.029205322, -0.02279663, 0.034057617, 0.07434082, 0.02633667, -0.025314331, -0.01474762, -0.004928589, -0.0008621216, 0.0028648376, -0.008583069, -0.038635254, 0.0011501312, 0.00756073, -0.027236938, -0.004257202, 0.048797607, 0.01979065, -0.040924072, -0.03555298, -0.006374359, 0.035339355, 0.04373169, 0.007183075, -0.03427124, -0.009239197, -0.0061798096, -0.013580322, -0.0128479, -0.046844482, -0.009689331, -0.014663696, 0.007545471, -0.023162842, -0.043945312, 0.019836426, -0.01449585, -0.0042381287, 0.021240234, 0.063964844, 0.010032654, 0.03125, -0.0003876686, 0.014823914, -0.0022830963, -0.04034424, -0.016174316, 0.077697754, 0.071777344, -0.10430908, -0.06536865, -0.056030273, 0.13378906, -0.04296875, -0.030181885, 0.019836426, 0.005241394, 0.03643799, 0.017654419, 0.012519836, 0.022888184, 0.0016708374, -3.3974648e-06, -0.01184082, 0.030639648, 0.015304565, -0.08270264, 0.004219055, -0.016494751, -0.03527832, 0.007663727, 0.017471313, -0.019897461, 0.0155181885, 0.0021705627, -0.00459671, 0.0055732727, 0.0149002075, 0.06359863, 0.017166138, -0.027908325, -0.010063171, 0.026351929, -0.07513428, -0.058166504, 0.0012102127, -0.01537323, 0.032348633, 0.027282715, 0.001250267, 0.03967285, -0.027801514, 0.035308838, -0.0027675629, 0.019378662, 0.0078048706, -0.032928467, -0.0013074875, 0.036102295, -0.010040283, 0.0287323, 0.04284668, 0.06842041, 0.06945801, 0.0030021667, 0.034484863, 0.08276367, 0.026443481, -0.025039673, -0.02508545, 0.00497818, -0.039794922, -0.04019165, 0.015151978, -0.024627686, -0.017913818, -0.0033683777, 0.020858765, -0.026763916, -0.010368347, 0.036590576, 0.00068950653, 0.0284729, -0.022598267, -0.016494751, 0.03869629, -0.026519775, 0.014183044, -0.054473877, 0.05316162, -0.023742676, 0.038116455, 0.03353882, -0.017745972, 0.02458191, -0.011543274, 0.032226562, 0.022750854, -0.008636475, -0.006767273, 0.0146865845, 0.01626587, -0.00079345703, -0.008766174, -0.0060653687, 0.02861023, -0.042663574, 0.026916504, 0.021224976, -0.019332886, 0.0011405945, -0.03237915, -0.009727478, -0.00016248226, 0.057769775, -0.012573242, 0.0043258667, -0.010505676, -0.044525146, -0.018829346, 0.03274536, -0.019927979, -0.015487671, -0.03793335, -0.020248413, -0.030380249, 0.08081055, 0.009986877, 0.031158447, -0.039398193, 0.0017194748, 0.023376465, -0.07116699, 0.030654907, 9.346008e-05, -0.0038013458, 0.004627228, 0.01701355, 0.012573242, -0.036254883, 0.029327393, 0.012138367, 0.040771484, -0.016021729, 0.057373047, 0.01525116, -0.011688232, 0.06225586, 0.020477295, 0.043701172, -0.00440979, -0.00484848, -0.014816284, -0.012374878, 0.009292603, -0.004360199, -0.028396606, -0.008094788, -0.02746582, -0.0024719238, 0.009208679, -0.014343262, 0.0072669983, 0.014793396, -0.0014543533, -0.022155762, 0.0008955002, 0.0076675415, -0.012077332, -0.034057617, 0.018981934, -0.029327393, 0.007297516, 0.030532837, -0.018493652, -0.04663086, 0.01612854, -0.0047721863, -0.023956299, 0.0043029785, 0.014907837, -0.00010317564, 0.011230469, -0.03552246, -0.001449585, -0.012840271, -0.02810669, -0.057922363, -0.038757324, -0.08605957, -0.012054443, -0.047607422, -0.063964844, -0.03201294, 0.054656982, 0.00856781, -0.076538086, 0.0032997131, -0.0054779053, 0.001865387, -0.0063285828, 0.0256958, -0.03439331, -0.025970459, -0.015525818, -0.00044941902, 0.029846191, -0.0309906, -0.011528015, 0.0043525696, -0.022781372, 0.015174866, -0.023498535, 0.04724121, 0.011360168, 0.03353882, 0.08062744, 0.06878662, 0.016647339, -0.042022705, 0.0040893555, 0.0592041, 0.0015468597, -0.014076233, 0.006454468, 0.017333984, -0.024658203, -0.018310547, -0.031204224, -0.015113831, -0.08544922, 0.03225708, 4.518032e-05, -0.020553589, -0.0053482056, -0.0619812, -0.028884888, -0.059906006, -0.0009627342, 0.017303467, -0.01777649, 0.019439697, -0.036224365, 0.029632568, 0.0025844574, -0.016952515, 0.029052734, -0.011062622, 0.021850586, -0.026107788, 0.03213501, -0.07525635, 0.03704834, 0.02558899, -0.024307251, 0.021652222, -0.018630981, 0.007007599, -0.014595032, 0.046722412, -0.011009216, 0.006214142, 0.0077438354, 0.038208008, -0.008628845, 0.038208008, -0.013122559, -0.044708252, 0.022567749, -0.05999756, -0.039764404, -0.008087158, 0.008422852, 0.03729248, -0.003545761, -0.011154175, -0.014892578, -0.05078125, 0.009140015, -0.074523926, -0.0014095306, 0.0038890839, 0.07910156, 0.025009155, 0.016159058, 0.09851074, 0.026168823, 0.030380249, 0.030044556, -0.0463562, -0.051330566, -0.032928467, 0.019226074, -0.0038223267, 0.0058555603, -0.045410156, 0.058135986, -0.007331848, -0.0073013306, 0.022918701, -0.02319336, 0.041503906, 0.01890564, -0.011505127, -0.00018405914, -0.02897644, 0.03387451, 0.021850586, -0.020828247, -0.055511475, -0.07336426, 0.0051994324, -0.103759766, 0.07434082, 0.03186035, -0.023422241, 0.093688965, 0.0814209, 0.006149292, 0.020584106, 0.03665161, -0.02470398, -0.003036499, 0.06829834, -0.03302002, 0.005466461, 0.014984131, -0.053131104, 0.0028209686, -0.0051994324, -0.040527344, 0.011619568, -0.0019741058, -0.024856567, -0.042541504, 0.014533997, 0.000726223, -0.008621216, 0.009666443, -0.06347656, -0.020935059, -0.03918457, 0.02458191, 0.015060425, -0.016021729, -0.022247314, 0.021896362, -0.0044441223, -0.022598267, -0.0047454834, -0.0118255615, 0.014884949, 0.028045654, 0.021270752, 0.012039185, -0.02267456, 0.011695862, 0.011238098, -0.011871338, 0.03579712, 0.0029392242, 0.0053634644, 0.0033187866, -0.024139404, 0.016830444, -0.032226562, -0.013343811, 0.02293396, -0.0017223358, -0.031402588, 0.0023479462, 0.029678345, 0.018096924, -0.008270264, -0.0020694733, -0.04269409, -0.030670166, -0.011833191, -0.033447266, -0.00422287, -0.010360718, 0.00095272064, -0.0637207, -0.02418518, 0.000620842, -0.0121536255, -0.03555298, 0.015220642, -0.01826477, -0.024902344, -0.009963989, 0.043121338, -0.04776001, -0.009719849, -0.05343628, 0.008308411, 0.03237915, 0.01071167, 0.02279663, -0.026184082, -0.0079956055, -0.011268616, 0.059936523, -0.0062561035, 0.0007328987, -0.047851562, -0.010795593, 0.003545761, 0.026947021, 0.061431885, -0.014549255, 0.027053833, -0.02217102, -0.00041890144, -0.048095703, 0.0035533905, 0.034942627, -0.022338867, -0.03591919, -0.008644104, 0.05105591, -0.017684937, 0.002199173, -0.040100098, 0.02986145, 0.017929077, 0.007686615, -0.059783936, -0.055999756, 0.0178833, -0.03869629, 0.010025024, -0.009681702, -0.0056610107, 0.07019043, 0.051116943, 0.014289856, 0.00090789795, -0.0026454926, -0.04067993, -0.0034542084, 0.051513672, -0.058441162, 0.033843994, -0.07696533, -0.009895325, -0.023468018, 0.058380127, 0.06628418, -0.028930664, 0.00048017502, 0.019180298, -0.025924683, -0.0473938, 0.0018720627, 0.019989014, -0.004261017, 0.0045166016, -0.021469116, 0.019500732, -0.008262634, 0.00274086, -0.04397583, -0.007484436, -0.0041275024, -0.02583313, -0.0067253113, -0.019714355, 0.025405884, 0.011924744, 0.0058059692, 0.013435364, -0.02078247, -0.015151978, 0.03692627, -0.0079956055, -0.010154724, 0.011375427, -0.01499176, 0.0037822723, -0.028381348, -0.01802063, -0.058288574, -0.008171082, 0.057037354, -0.019485474, -0.016418457, 0.04486084, -0.0050621033, -0.0021476746, -0.02645874, 0.05795288, 0.0023479462, -0.0029354095, -0.013153076, 0.022155762, 0.0006070137, 0.011665344, -0.003004074, 0.022323608, -0.013130188, -0.032958984, 0.022644043, -0.005771637, 0.0062026978, -0.065979004, 0.06628418, -0.012504578, -0.015403748, -0.07714844, 0.008872986, 0.015098572, 0.0017032623, 0.0066223145, -0.023727417, 0.04840088, -0.008346558, -0.04144287, 0.0011081696, 0.046722412, -0.030960083, -0.0056762695, 0.013298035, -0.011772156, -0.060760498, -0.013801575, -0.022201538, 0.0073432922, -0.0028018951, -0.03894043, -0.0132369995, 0.03277588, -0.004890442, 0.02293396, -0.013465881, 0.017913818, -0.0033359528, 0.0034179688, -0.052612305, -0.01701355, -0.0118255615, 0.056610107, -0.068725586, 0.0043945312, -0.07098389, -0.038604736, -0.07965088, 0.008773804, 0.013885498, 0.062683105, -0.03050232, -0.035339355, 0.02041626, -0.016159058, 0.007610321, 0.017150879, -0.012420654, -0.017745972, 0.028884888, 0.04019165, -0.020217896, -0.032806396, 0.08746338, -0.037750244, -0.05331421, -0.035980225, 0.051239014, -0.022964478, 0.0020179749, 0.061798096, -0.0039043427, 0.018341064, 0.014198303, 0.0019989014, -0.012413025, 0.009712219, 0.013298035, -0.058776855, -0.007610321, -0.010925293, 0.008094788, -0.012519836, 0.032318115, -0.031463623, 0.037078857, -0.05834961, -0.036315918, -0.026855469, 0.0368042, -0.011657715, -0.020446777, 0.0013332367, -0.014152527, -0.015449524, -0.05041504, -0.02696228, -0.06512451, -0.022964478, 0.01727295, 0.023834229, 0.029571533, -0.031707764, 0.011260986, 0.032989502, -0.0061950684, 0.055541992, -0.0028457642, -0.031021118, 0.006378174, 0.011100769, 0.023132324, -0.01474762, 0.019561768, 0.010414124, -0.006652832, 0.0034656525, 0.016921997, 0.011405945, -0.038879395, -0.021987915, 0.040740967, 0.046722412, 0.032470703, 0.011123657, 0.033325195, 0.01109314, -0.035949707, 0.008056641, 0.017440796, -0.025543213, -0.038482666, -0.03050232, -0.011390686, 0.02330017, -0.012672424, 0.05505371, -0.0053367615, 0.035949707, -0.004119873, -0.018173218, 0.0158844, -0.021484375, 0.057495117, -0.01386261, 0.020736694, 0.0062713623, 0.019378662, -0.0063476562, 0.00063943863, 0.02720642, -0.018920898, 0.012199402, -0.013023376, 0.05215454, -0.021347046, 0.036346436, 0.041625977, -0.068359375, -0.0107421875, 0.022979736, 0.023101807, 0.0013904572, -0.028442383, -0.028198242, -0.0029335022, 0.04928589, -0.004016876, 0.08660889, -0.03515625, 0.024765015, -0.020721436, -0.034240723, -0.0017242432, -0.03010559, 0.016937256, -0.0002913475, -0.014846802, -0.0018997192, 0.005973816, 0.034454346, 0.043823242, -0.0124053955, 0.011123657, 0.008514404, 0.01285553, -0.022064209, -0.009346008, -0.034240723, -0.04321289, 0.039886475, 0.032409668, -0.02571106, 0.012184143, 0.010971069, 0.0029735565, 0.01108551, -0.056793213, 0.031799316, -0.033294678, 0.04547119, 0.0368042, 0.0513916, -0.0569458, -0.05545044, -0.015609741, -0.042877197, 0.0022773743, 0.0041122437, -0.016067505, -0.030654907, 0.040039062, 0.0149002075, 0.06890869, -0.012382507, 0.029281616, -0.010147095, 0.014770508, 0.03729248, 0.010650635, -0.021011353, -0.018188477, 0.0099105835, 0.0021877289, 0.021697998, -0.022979736, -0.0056533813, 0.017578125, 0.0065689087, -0.02520752, -0.004009247, 0.0057029724, -0.03643799, 0.036193848, -0.02432251, -0.0042800903, -0.042785645, -0.06878662, -0.0035152435, -0.008346558, -0.05731201, 0.046295166, 0.019622803, -0.012168884, -0.003917694, -0.005580902, 0.04385376, -0.045959473, 0.0017852783, 0.0018882751, 0.036132812, 0.0056533813, 0.057556152, -0.034729004, -0.066589355, -0.025741577, 0.036895752, -0.0423584, -0.04119873, -0.010650635, 0.013465881, 0.015899658, 0.004863739, 0.03152466, 0.014556885, 0.024368286, -0.00869751, 0.00013136864, -0.016143799, -0.017242432, 0.04043579, 0.02407837, -0.06286621, -0.035369873, -0.009674072, -0.0054855347, 0.04650879, 0.0026931763, 0.028533936, -0.028015137, 0.008300781, -0.032592773, -0.017684937, -0.03036499, -0.014190674, 0.0065307617, -0.005794525, -0.051635742, 0.015396118, 0.008132935, 0.05130005, 0.026504517, -0.010437012, 0.044799805, -0.02456665, -0.03225708, -0.07946777, -0.018096924, 0.03942871, 0.030899048, -0.026855469, 0.015457153, 0.018341064, -0.037231445, 0.0132369995, 0.014511108, -0.0010919571, 0.0071105957, -0.012130737, 0.0039596558, -0.019851685, -0.012878418, -0.001408577, -0.023361206, -0.012199402, 0.0011520386, 0.040405273, -0.03225708, 0.012275696, -0.015548706, 0.01725769, 0.023788452, -0.02168274, -0.0017118454, -0.0129852295, 0.0021209717, 0.020767212, 0.0146865845, -0.015129089, -0.007030487, -0.005897522, -0.038208008, 0.018554688, 0.04107666, 0.0146102905, -0.071899414, 0.050842285, 0.048828125, 0.016708374, -0.015701294, -0.045532227, -0.038757324, 0.025939941, 0.0013408661, -0.0024967194, 0.018798828, -0.014778137, -0.0011816025, 0.035003662, -0.020706177, -0.03845215, -0.0007171631, -0.001616478, 0.03286743, 0.0061798096]}, "B07XVBJT3R": {"id": "B07XVBJT3R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L90000 40\" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface.\nComponent package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack.\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nPackage Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "metadata": {"Name": "Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal", "Brand": "Lion Premium Grills", "Description": "", "Features": "Lion L90000 40\" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface.\nComponent package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack.\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nPackage Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015289307, 0.00077199936, -0.08074951, -0.015701294, -0.010025024, -0.023986816, -0.0039787292, 0.024887085, -0.050598145, -0.04144287, 0.010910034, -0.0040512085, -0.043701172, -0.06854248, 0.06060791, -0.061645508, 0.014045715, 0.052612305, 0.020736694, -0.024505615, -0.012680054, -0.010437012, -0.015075684, 0.07733154, 0.043640137, -0.066223145, 0.01184082, -0.010787964, 0.049926758, 0.00248909, 0.030029297, -0.0069274902, 0.0309906, -0.02407837, 0.022216797, 0.008872986, 0.03338623, -0.03125, 0.008666992, -0.0071525574, 0.005214691, 0.0069465637, -0.039245605, 0.045440674, -0.05822754, -0.014930725, -0.0050354004, 0.0047721863, 0.03567505, 0.016860962, -0.009765625, 0.020217896, -0.018127441, -0.019180298, -0.012329102, 0.01210022, 0.02330017, -0.026885986, 0.007007599, -0.01235199, -0.004753113, 0.01474762, 0.02029419, 0.0084991455, -0.018295288, 0.033325195, 0.10076904, -0.010139465, -0.007396698, -0.037841797, -0.01235199, 0.0026874542, 0.042297363, -0.0028190613, -0.0018930435, -0.05328369, 0.03277588, -0.0056991577, 0.034454346, -0.003501892, 0.03414917, 0.016967773, 2.0861626e-05, -0.034088135, 0.030776978, -0.014816284, -0.0032730103, -0.029083252, 0.00044202805, -0.0066871643, -0.017623901, -0.033111572, -0.007030487, 0.047668457, -0.010093689, 0.0039405823, -0.030548096, -0.08508301, 0.04043579, -0.013687134, 0.06048584, -0.050354004, 0.022354126, 0.020980835, -0.021911621, 0.047180176, 0.013458252, 0.039154053, -0.0098724365, 0.014305115, -0.015426636, -0.072753906, 0.02192688, -0.019348145, -0.005508423, 0.0031471252, -0.0096206665, 0.012741089, 0.015159607, -0.015716553, -0.032196045, -0.01789856, 0.008354187, 0.0635376, 0.01159668, 0.030563354, 0.006011963, 0.0009613037, -0.07434082, 0.035583496, -0.0025501251, 0.008346558, 0.040222168, 0.044403076, -0.007896423, -0.028686523, 0.03488159, 0.008460999, -0.0073013306, -0.009101868, 0.010749817, 0.0027008057, 0.0011224747, -0.012557983, -0.008285522, 0.01576233, 0.025344849, 0.005153656, -0.015609741, -0.017730713, -0.030181885, 0.028244019, 0.036956787, -0.016540527, -0.03729248, -0.03881836, -0.02192688, -0.022781372, -0.00844574, -0.040039062, -0.022232056, -0.0289917, -0.0016298294, 0.012252808, -0.034118652, 0.045166016, 0.02229309, 0.0029582977, 0.021026611, 0.04574585, 0.010925293, -0.023803711, 0.022262573, -0.002840042, -0.011833191, 0.0031051636, -0.04284668, 0.062805176, 0.050109863, -0.12963867, -0.087646484, -0.06451416, 0.10321045, -0.041625977, 0.017166138, 0.011413574, 0.011650085, 0.00066280365, 0.0064315796, 0.011474609, -0.03010559, 0.026382446, -0.019546509, -0.020736694, 0.0259552, -0.003982544, -0.02961731, -0.009315491, 0.008735657, -0.031799316, 0.0034656525, -0.0017757416, 0.00046038628, -0.012107849, -0.004070282, -0.011230469, -0.0041007996, 0.01689148, 0.004760742, 0.03857422, -0.010391235, -0.00699234, 0.014099121, -0.04928589, 0.009170532, 0.028839111, 0.016098022, 0.032592773, 0.0102005005, -0.01096344, 0.05041504, -0.02684021, 0.03918457, 0.077819824, -0.005115509, 0.0023040771, -0.024398804, 0.010093689, 0.00045275688, 0.016433716, -0.011627197, 0.0020866394, 0.08770752, 0.06311035, 0.0059928894, 0.054992676, 0.07458496, 0.023361206, -0.036621094, -0.02015686, 0.023422241, 0.025344849, -0.04559326, -0.025039673, 0.022644043, 0.011199951, 0.035339355, -0.030441284, 0.0012722015, -0.039764404, 0.045684814, -0.02432251, 0.032073975, 0.006713867, 0.029891968, 0.0025138855, -0.012199402, 0.013504028, -0.036254883, -0.021484375, 0.012687683, 0.023834229, -0.009849548, 0.018447876, 0.013572693, 0.01727295, 0.040618896, 0.034118652, -0.009590149, 0.0064468384, 0.0025691986, 0.029251099, 0.007797241, -0.04269409, -0.022384644, -0.014099121, -0.033966064, 0.051513672, -0.0017280579, -0.053527832, 0.010276794, -0.002122879, 0.024597168, -0.010414124, 0.060577393, 0.050933838, 0.00868988, -0.015129089, -0.05682373, -0.014968872, 0.012481689, 0.013420105, -0.017990112, -0.012893677, -0.0073165894, -0.0052604675, 0.055419922, 0.039794922, -0.01222229, 0.016799927, 0.018478394, 0.022766113, -0.019317627, 0.008621216, -0.002292633, -0.025741577, 0.015052795, 0.0015354156, -0.0059318542, -0.035125732, 0.037506104, 0.076293945, 0.023956299, 0.049072266, 0.018920898, 0.0009627342, 0.024490356, 0.057159424, 0.07098389, 0.045898438, 0.0052375793, 0.022872925, -0.040527344, -0.024993896, 0.005760193, 0.031021118, -0.045166016, -0.009117126, -0.0024719238, 0.014053345, -0.003932953, 0.0007677078, 0.00038933754, 0.00881958, -0.012825012, -0.009513855, 0.005241394, 0.08282471, 0.007472992, -0.07891846, 0.010253906, -0.044525146, -0.02508545, 0.05303955, -0.032196045, -0.035614014, 0.017501831, -0.0047683716, -0.025604248, 0.0035495758, 0.016830444, 0.0025100708, -0.011894226, 0.028259277, 0.0014591217, -0.031036377, 0.008079529, -0.045837402, -0.074035645, -0.08062744, 0.028564453, -0.039978027, -0.049438477, 0.005619049, 0.06109619, -0.0121536255, -0.031280518, -0.033172607, 0.0068969727, -0.0014772415, 0.04107666, -0.0007634163, -0.066101074, -0.028640747, -0.014442444, -0.008583069, 0.053894043, -0.041900635, 0.041778564, 0.02796936, -0.031021118, 0.03262329, -0.038604736, 0.033050537, -0.042175293, 0.014259338, -0.004814148, 0.006996155, 0.006477356, -0.0053253174, 0.035614014, 0.052642822, -0.057678223, -0.027832031, 0.015045166, 0.0072135925, 0.033477783, 0.00023245811, -0.0079956055, -0.0357666, -0.03164673, 0.030273438, 0.004337311, 0.0030517578, -0.011230469, -0.06738281, -0.011054993, -0.037597656, -0.007507324, 0.04272461, -0.02684021, 0.0048332214, -0.0362854, -0.0024204254, 0.031555176, -0.019622803, 0.0390625, -0.0070533752, 0.0037288666, -0.033569336, 0.027893066, -0.039276123, 0.017211914, 0.0069618225, -0.03326416, 0.0064201355, -0.025512695, 0.02268982, -0.021636963, 0.019470215, -0.017471313, -0.0057144165, 0.0009212494, -0.02168274, -0.030593872, -0.010551453, -0.0028533936, 0.001405716, 0.025436401, -0.030944824, -0.050720215, -0.004760742, 0.0021152496, 0.047180176, -0.0055160522, -0.0152282715, -0.032592773, -0.07019043, 0.016983032, -0.0049743652, -0.0008702278, -0.008522034, 0.050872803, 0.020507812, -0.012969971, 0.048553467, 0.02973938, 0.042053223, -0.012390137, 0.021408081, 0.015274048, -0.023025513, 0.047790527, 0.008262634, 0.029754639, -0.01939392, 0.0036964417, 0.031463623, 0.029556274, -0.026397705, 0.04449463, 0.01802063, 0.016662598, -0.008636475, -0.010292053, -0.023040771, 0.030288696, 0.016159058, -0.018417358, -0.035186768, -0.022460938, -0.018630981, -0.046417236, 0.09246826, 0.08514404, -0.035003662, 0.088012695, 0.06414795, -0.008804321, 0.0395813, 0.018615723, -0.025115967, -0.0088272095, 0.03817749, -0.05279541, 0.028213501, 0.007865906, 0.018005371, 0.047576904, 0.004447937, -0.003967285, 0.011764526, -0.014526367, -0.04135132, -0.012306213, -0.01689148, -0.004425049, -0.00844574, 0.015808105, -0.0057868958, 0.0021018982, -0.020874023, 0.0713501, 0.01360321, -0.012832642, -0.022201538, 0.007663727, -0.021621704, -0.015930176, 0.013153076, -0.0008263588, 0.024017334, -0.008964539, 0.03945923, 0.007461548, -0.021759033, -0.023101807, -0.017196655, -0.013839722, 0.046203613, 0.030517578, 0.004573822, 0.051849365, -0.008598328, -0.0061683655, -0.010894775, -0.0044937134, 0.02619934, -0.011108398, -0.053710938, -0.017700195, 0.017654419, 0.021087646, -0.015281677, -0.04156494, -0.029266357, -0.049621582, -0.018829346, -0.014015198, -0.06439209, 0.030334473, 0.038360596, -0.038879395, -0.030853271, -0.026687622, -0.032928467, -0.021194458, 0.018676758, -0.0053863525, -0.026184082, 0.0038490295, 0.045135498, -0.03933716, -0.022766113, -0.029968262, 0.0012264252, 0.024215698, 0.0029716492, 0.0625, -0.035705566, -0.005847931, -0.029846191, 0.10559082, 0.03250122, -0.0016832352, -0.037200928, -0.03982544, -0.0057678223, 0.007881165, 0.03665161, -0.0028953552, 0.027557373, -0.029815674, -0.022872925, -0.041503906, 0.0061798096, 0.03378296, -0.025939941, -0.03491211, -0.00762558, 0.048858643, -0.009887695, 0.007850647, -0.011390686, 0.013717651, -0.0022182465, -0.010513306, -0.052581787, 0.008644104, 0.019866943, -0.033416748, 0.0045204163, -0.008148193, -0.025283813, 0.045959473, 0.027893066, 0.006175995, -0.034698486, 0.012741089, -0.006816864, 0.0015592575, -7.3969364e-05, -0.022277832, 0.035736084, -0.02281189, -0.038146973, -0.040740967, 0.04864502, 0.059783936, 0.0069351196, 0.016983032, 0.022705078, -0.00092315674, -0.0309906, -0.045776367, 0.0014543533, -0.0025291443, -0.051086426, -0.055267334, 0.034118652, -0.024017334, 0.023864746, -0.026565552, -0.021759033, 0.0019493103, 0.010475159, -0.0017709732, -0.020751953, -0.010757446, -0.025344849, -0.02532959, 0.03012085, -0.006439209, 0.012397766, 0.015541077, -0.030517578, -0.0015668869, -0.014549255, -0.017974854, 0.005252838, -0.03845215, 0.0032253265, -0.0423584, 0.02053833, 0.040771484, 0.015357971, -0.020629883, 0.010314941, -0.018722534, -0.0012626648, -0.0317688, 0.011909485, -0.0021133423, 0.0040893555, 0.052581787, -0.042755127, -0.019363403, 0.057769775, -0.05456543, 0.064208984, 0.029388428, -0.09161377, 0.042419434, -0.0075683594, 0.0095825195, -0.031341553, 0.038208008, -0.018508911, 0.0077056885, -0.05053711, 0.028411865, 0.013214111, -0.036712646, -0.017913818, -0.0044174194, 0.02558899, -0.021820068, 0.030395508, -0.0050849915, 0.034210205, -0.044128418, -0.011161804, -0.008895874, -0.016860962, -0.053619385, -0.030273438, -0.035217285, -0.012863159, -0.022567749, -0.007270813, 0.008857727, -0.005355835, -0.015975952, -0.021911621, -0.009941101, -0.008087158, -0.014259338, -0.011062622, -0.0056152344, -0.012306213, -0.0070724487, 0.024429321, -0.0016002655, -0.0016288757, -0.03338623, -0.028823853, -0.013702393, 0.022369385, 0.013534546, 0.032409668, -0.064331055, 0.019866943, 0.03894043, -0.05026245, 0.013206482, 0.019302368, -0.057922363, -0.05517578, 0.008148193, -0.005268097, -0.011238098, -0.05307007, 0.03515625, -0.030761719, -0.03112793, -0.047851562, 0.031555176, -0.02696228, -0.03173828, 0.070007324, 0.0032463074, 0.013755798, 0.012649536, -0.011657715, -0.061065674, 0.02758789, 0.013717651, -0.09423828, -0.011940002, -0.037200928, -0.0010356903, 0.0016288757, 0.0014152527, -0.008331299, 0.038635254, -0.00907135, -0.009925842, -0.026107788, 0.006626129, -0.0074310303, -0.048187256, 0.013168335, -0.012687683, -0.009101868, 0.0060157776, -0.0040245056, -0.06536865, 0.0011196136, 0.013450623, 0.027908325, 0.025344849, -0.024612427, 0.01776123, 0.048736572, -0.027236938, 0.05682373, 0.0049476624, 0.00491333, -0.011947632, 0.02973938, -0.01574707, 0.041778564, -0.0635376, 0.0046195984, -0.05041504, 0.060821533, -0.0016040802, 0.05166626, -0.034820557, -0.009880066, 0.013175964, 0.028121948, 0.03488159, -0.0015926361, 0.015457153, -0.02243042, -0.016921997, 0.008972168, -0.023162842, -0.03201294, -0.042541504, -0.05014038, 0.033966064, 0.04876709, 0.0340271, 0.011795044, 0.018127441, 0.05279541, -0.004383087, 0.00088739395, 0.019973755, 0.0013809204, 0.03781128, 0.008682251, -0.0423584, 0.021957397, 0.006958008, -0.0011787415, 0.016098022, -0.020050049, -0.0052719116, 0.03652954, 0.01071167, 0.006275177, -0.043029785, 0.058410645, -0.017181396, -0.08288574, 0.011238098, 0.00434494, 0.0004107952, 0.016677856, -0.04348755, -0.0047454834, 0.0061798096, -0.003944397, 0.010955811, 0.021270752, 0.01234436, 0.0033569336, -0.045043945, -0.018356323, -0.009147644, -0.023040771, 0.017532349, 0.030349731, -0.00944519, -0.005836487, -0.0045318604, 0.031051636, 0.01499939, -0.015838623, 0.012886047, -0.017745972, 0.010604858, -0.012008667, 0.024734497, -0.017730713, -0.0093307495, -0.0017538071, 0.0037231445, 0.02154541, 0.024276733, -2.2232533e-05, -0.0041618347, 0.03793335, -0.009849548, 0.025421143, 0.0059051514, 0.041290283, 0.028671265, 0.0022735596, -0.041381836, -0.054382324, -0.019805908, -0.018692017, 0.0006594658, 0.010375977, -0.0018138885, 0.022338867, 0.040802002, 0.07751465, 0.08239746, 0.012329102, 0.04055786, 0.024978638, -0.008560181, 0.015281677, -0.008270264, -0.020385742, -0.026855469, 0.008117676, 0.0025806427, 0.015823364, -0.00053310394, 0.050964355, 0.0154800415, 0.014778137, -0.030899048, 0.0027370453, -0.014122009, -0.032440186, 0.053466797, -0.023727417, 0.025650024, -0.027328491, -0.04135132, -0.06274414, -0.028656006, -0.031433105, 0.0463562, -0.010986328, -0.045410156, -0.0065307617, 0.004550934, -0.018112183, -0.052947998, -0.013954163, -0.015525818, 0.026657104, 0.0043296814, 0.06210327, -0.037872314, -0.06555176, -0.04345703, 0.037902832, -0.06329346, -0.03277588, 0.036468506, 0.0003848076, 0.033111572, 0.011978149, 0.02986145, 0.014564514, 0.040740967, -0.020187378, 0.005859375, -0.029922485, -0.022598267, 0.020996094, 0.008651733, -0.02243042, -0.022354126, 0.040100098, -0.015289307, 0.056518555, 0.027694702, -0.019226074, -0.034973145, -0.03970337, -0.058135986, -0.0015182495, -0.008964539, -0.015457153, 0.0015249252, -0.0023498535, -0.074035645, -0.06036377, -0.0041923523, 0.04550171, 0.05682373, 0.016799927, -0.005596161, -0.021652222, -0.049957275, -0.014907837, -0.015281677, 0.016342163, 0.056762695, -0.0061569214, 0.0022640228, 0.025894165, -0.026290894, 0.022216797, -0.0021438599, 0.0070266724, 0.019805908, 0.045196533, 0.0063705444, 0.024780273, -0.019500732, 0.025390625, -0.033203125, -0.0473938, 0.05117798, 0.062042236, -0.040740967, 0.013252258, -0.021636963, -0.011154175, 0.044006348, -0.045196533, 0.020614624, -0.017990112, -0.006450653, 0.015686035, 0.017593384, 0.0062179565, -0.0011386871, -0.03479004, -0.015136719, 0.029251099, 0.015731812, 0.027114868, -0.03933716, 0.050872803, 0.0015945435, 0.042907715, -0.0046577454, -0.06939697, -0.050476074, 0.04473877, -0.013183594, -0.014961243, -0.002204895, 0.0016679764, 0.0011358261, 0.017700195, -0.05215454, -0.05718994, 0.036193848, 0.04901123, 0.010223389, 0.035125732]}, "B07BLH19MX": {"id": "B07BLH19MX", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black\nDescription: \nFeatures: GRILLING POWER: Up to 20,000 total BTUs\n3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control\nLARGE GRILLING AREA: 285 sq. inches\nEASY SETUP: Sturdy quick-fold legs and wheels\nTHERMOMETER: Integrated design for accurate temperature monitoring\n", "metadata": {"Name": "Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black", "Brand": "Coleman", "Description": "", "Features": "GRILLING POWER: Up to 20,000 total BTUs\n3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control\nLARGE GRILLING AREA: 285 sq. inches\nEASY SETUP: Sturdy quick-fold legs and wheels\nTHERMOMETER: Integrated design for accurate temperature monitoring", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0007381439, 0.0042495728, -0.009971619, 0.003250122, -9.2089176e-05, -0.01776123, 0.023910522, -0.014915466, -0.027938843, -0.0005660057, -0.042510986, 0.0395813, -0.025436401, -0.020141602, 0.02848816, -0.034729004, 0.010406494, 0.042175293, 0.0025558472, -0.022140503, -0.009529114, -0.016113281, -0.030761719, 0.10882568, 0.042938232, -0.035705566, -0.016464233, -0.014190674, 0.029159546, -0.0007224083, 0.026504517, 0.009963989, 0.048858643, -0.00680542, -0.026687622, 0.002796173, 0.019485474, -0.017913818, -0.030426025, 0.029891968, 0.002922058, -0.0032539368, -0.024795532, 0.023788452, -0.037902832, -0.03390503, 0.029785156, -0.013061523, 0.014213562, 0.0077285767, 0.008148193, 0.046020508, 0.02420044, -0.035949707, -0.00774765, -0.0013389587, 0.023040771, 0.0013513565, 0.027359009, -0.048095703, -0.033569336, 0.0007195473, 0.04260254, 0.005744934, -0.041931152, 0.009613037, 0.054840088, -0.018371582, 0.013168335, -0.053771973, -0.013755798, 0.027862549, 0.0082473755, 0.064453125, -0.05883789, -0.07800293, 0.03326416, -0.04812622, 0.051483154, 0.0023994446, -0.014640808, -0.025619507, 0.023742676, -0.016494751, 0.008995056, 0.01876831, -0.023468018, -0.013137817, -0.013618469, -0.050689697, -0.007858276, 0.002937317, -0.066711426, 0.039367676, -0.00033807755, -0.014694214, -0.014595032, -0.041137695, 0.008155823, -0.020248413, 0.023239136, -0.025054932, -0.011497498, 0.00970459, -0.029327393, 0.019088745, 0.016860962, 0.068359375, 0.024932861, 0.005256653, -0.0049972534, 0.008834839, 0.0042495728, 0.031402588, -0.046325684, -0.030349731, -0.046142578, -0.0043754578, -0.01838684, 0.0023880005, -0.041107178, -0.037353516, 0.03994751, 0.02255249, 0.04425049, 0.035827637, -6.1154366e-05, -0.0019989014, -0.017547607, 0.051757812, -0.06451416, -0.010307312, 0.053466797, 0.033325195, 0.022003174, -0.045532227, 0.015586853, -0.013824463, -0.013435364, 0.00957489, -0.01058197, -0.0053634644, 0.020629883, -0.029785156, -0.00907135, -0.00089883804, 0.041046143, 0.033050537, -0.022094727, -0.051849365, 0.040618896, 0.015853882, 0.035095215, 0.00349617, -0.038970947, 0.007549286, -0.025436401, -0.0017347336, -0.028121948, -0.030288696, -0.01739502, -0.018798828, -0.022369385, -0.01977539, -0.023513794, 0.011016846, 0.05368042, 0.012374878, 0.027160645, 0.061309814, -0.010398865, 0.005432129, 0.027801514, 0.030685425, -0.0085372925, -0.008666992, -0.018966675, 0.062469482, 0.056152344, -0.10644531, -0.059173584, -0.05532837, 0.09802246, -0.024597168, 0.0040740967, -0.040496826, 0.05316162, 0.018310547, -0.032440186, 0.02558899, 0.047180176, 0.023727417, -0.038604736, 0.017120361, 0.027786255, 0.017456055, -0.041931152, 0.01838684, -0.0026111603, -0.047027588, -0.013725281, 0.011306763, 0.005996704, 0.008651733, 0.021072388, -0.012779236, 0.016189575, 0.0051879883, 0.03390503, 0.028518677, -0.0118255615, 0.0082092285, 0.012504578, -0.0769043, -0.045440674, 0.0076789856, -0.008087158, 0.01008606, 0.038360596, 0.010856628, 0.06011963, 0.010513306, 0.04269409, -0.011367798, 0.035339355, -0.015220642, -0.0109939575, -0.004386902, 0.029205322, 0.001159668, -0.030700684, 0.03111267, 0.0569458, 0.082214355, 0.008232117, 0.03729248, 0.07507324, 0.039123535, -0.017349243, -0.03186035, 0.014862061, -0.045898438, -0.05001831, -0.027420044, -0.015464783, -0.005214691, 0.016143799, -0.020889282, -0.027786255, 0.009376526, 0.064575195, 0.010032654, 0.024459839, 0.050994873, -0.023010254, 0.016220093, -0.049926758, -0.00056028366, -0.03778076, 0.042877197, -0.023162842, 0.047851562, 0.060028076, -0.010246277, 0.034301758, 0.04812622, 0.046661377, 0.04559326, -0.052368164, 0.025512695, 0.021209717, 0.036315918, -0.007068634, -0.019821167, 0.0018186569, -0.009742737, -0.02708435, 0.034606934, -0.0051193237, -0.032226562, 0.026123047, 0.00040268898, 0.01600647, 0.0037765503, 0.043395996, -0.008216858, 0.020385742, 0.035949707, -0.044555664, -0.037597656, 0.010223389, -0.037719727, -0.031066895, -0.011894226, -0.033447266, -0.04977417, 0.07067871, 0.0021266937, 0.013786316, -0.02015686, 0.030227661, 0.028503418, -0.0574646, 0.022903442, 0.002023697, -0.0007867813, -0.00022816658, 0.03302002, 0.012039185, -0.041046143, 0.014167786, 0.004295349, 0.017425537, -0.004005432, 0.000500679, -0.0053901672, -0.02897644, 0.019515991, -0.004878998, 0.029693604, 0.004714966, -0.041992188, -0.017868042, -0.014205933, -0.012687683, -0.006122589, -0.017349243, -0.0046844482, -0.0056152344, 0.004764557, -0.015411377, -0.006175995, -0.017089844, 0.0040359497, -0.006099701, 0.011062622, 0.0032444, 0.036987305, -0.0043678284, -0.036499023, 0.009887695, -0.06109619, -0.0058555603, 0.018814087, -0.015701294, -0.013954163, 0.008995056, 0.020217896, -0.004146576, 0.007701874, -0.010871887, -0.015113831, -0.008522034, -0.025512695, -0.028915405, -0.007522583, -0.00036144257, -0.06768799, -0.058013916, -0.0848999, -0.0124053955, -0.006008148, -0.03274536, -0.015487671, 0.024215698, -0.008590698, -0.03643799, 0.011543274, -0.0068244934, 0.0063819885, -0.0024642944, 0.026367188, -0.040252686, -0.019012451, -0.02609253, -0.003921509, 0.027389526, -0.022613525, -0.0060577393, 0.0070648193, 0.0060043335, -0.0030136108, 0.0067710876, 0.0017671585, 0.0134887695, 0.011886597, 0.023239136, 0.046417236, 0.0063705444, -0.013053894, -0.0024738312, 0.03881836, -0.07086182, -0.010879517, 0.0034637451, 0.01852417, -0.012809753, -0.038391113, -0.025604248, -0.02507019, -0.109191895, 0.0034294128, -0.0022525787, -0.05783081, -0.017044067, -0.048339844, -0.06329346, -0.056549072, 0.009765625, 0.06719971, -0.01637268, 0.0033435822, -0.010101318, 0.0025806427, -0.0014715195, 0.01184845, 0.049957275, -0.022109985, 0.075927734, -0.046691895, -0.0053215027, -0.05505371, -0.0025348663, 0.010826111, -0.029403687, 0.0748291, -0.021011353, 0.019973755, -0.0051612854, 0.0036067963, 0.016586304, -0.0070533752, -0.028518677, -0.012001038, 0.005126953, -0.003288269, -0.010055542, -0.055419922, 0.0154418945, -0.020111084, -0.013786316, 0.0015897751, -0.020385742, 0.05328369, -0.014717102, -0.014137268, -0.0058288574, -0.054382324, -0.0077705383, -0.047607422, -0.0034389496, 0.007820129, 0.022125244, 0.010986328, -0.010040283, 0.06008911, 0.015403748, 0.046813965, 0.040100098, -0.06359863, -0.062408447, -0.046905518, 0.02973938, -0.002878189, -0.004180908, -0.034362793, 0.004219055, 0.017532349, -0.0099105835, -0.0037460327, 0.00969696, 0.044311523, 0.030334473, -0.036834717, -0.00289917, -0.059570312, 0.041137695, 0.017242432, 0.010795593, -0.073913574, -0.033813477, 0.002943039, -0.09661865, 0.079956055, 0.061920166, -0.031097412, 0.07348633, 0.012260437, 0.009414673, 0.04699707, 0.08685303, -0.023162842, 0.024002075, 0.07574463, -0.03253174, -0.015960693, 0.0063591003, 0.021652222, -0.0050315857, 0.00050878525, -0.061157227, 0.008239746, 0.027496338, -0.01424408, -0.0022068024, 0.00067567825, 0.014190674, -0.0010271072, 0.0061950684, -0.018112183, 0.0034618378, -0.027053833, -0.04071045, -0.010070801, -0.030014038, -0.00029063225, -0.019454956, -0.04006958, -0.033081055, 0.007858276, 0.016220093, 0.024139404, -0.0058631897, 0.02748108, -0.00029444695, 0.011741638, -0.044067383, 0.017211914, -0.001991272, -0.0033035278, 0.028686523, 0.004814148, 0.015716553, 0.010147095, -0.00012338161, 0.00051164627, -0.023284912, 0.030639648, -0.029067993, -0.07879639, -0.0062408447, 0.046569824, 0.03744507, -0.028457642, 0.02218628, -0.049591064, 0.010421753, -0.005470276, -0.051635742, 0.007217407, -0.034118652, -0.013587952, -0.07928467, -0.015068054, -0.016296387, -0.02104187, -0.039978027, 0.038909912, -0.029418945, -0.046051025, 0.008468628, -0.001420021, -0.015098572, -0.017028809, -0.03479004, -0.0061454773, 0.06011963, 0.015975952, 0.043884277, -0.03137207, 0.0236969, -0.012512207, 0.08996582, 0.025726318, 0.022628784, -0.042999268, -0.033111572, 0.0008096695, 0.032714844, 0.056549072, -0.030670166, 0.017623901, -0.031829834, -0.023788452, -0.033447266, -0.032928467, 0.03793335, -0.054901123, -0.026245117, -0.03237915, 0.06762695, -0.027191162, 0.0038967133, -0.008155823, 0.017440796, 0.019012451, -0.010917664, -0.077819824, -0.01184082, 0.004623413, -0.016708374, -0.017684937, 0.0007343292, -0.011230469, 0.051940918, -0.009994507, -0.023208618, 0.0181427, -0.0118637085, -0.008575439, -0.012382507, 0.02507019, -0.038330078, -0.0021839142, -0.03817749, 0.0045547485, -0.044281006, 0.06707764, 0.030670166, -0.025466919, -0.0051612854, 0.031158447, -0.009231567, -0.05126953, 0.012145996, -0.0075912476, -0.05331421, -0.016693115, -0.026290894, -0.002313614, -0.027053833, -0.01348114, -0.0026626587, -0.02204895, 0.010215759, 0.00982666, 0.00029587746, -0.03390503, 0.00052404404, 0.052093506, 0.024856567, 0.030792236, 0.007205963, -0.05291748, 0.024475098, -0.024139404, -0.02041626, 0.002532959, 0.001203537, -0.013389587, 0.012580872, 0.0036010742, -0.037719727, 0.00035500526, 0.026062012, 0.0030460358, -0.019470215, -6.514788e-05, 0.031585693, -0.009544373, -0.0041923523, 0.06298828, -0.017028809, 0.023071289, 0.038330078, -0.019607544, 0.0051078796, 0.052001953, -0.03326416, 0.056732178, 0.026397705, -0.015731812, 0.050689697, 0.00919342, 0.00390625, -0.043029785, 0.060028076, -0.0079422, -0.01008606, -0.048339844, 0.0135269165, 0.05609131, 0.0005021095, 0.0357666, -0.03866577, 0.08569336, -0.027023315, -0.060913086, 0.016036987, 0.011894226, 0.0034656525, 0.012611389, 0.0021629333, -0.02192688, -0.024597168, -0.0036125183, -0.020950317, -0.0007081032, 0.011154175, -0.028717041, -0.0024299622, 0.01977539, -0.008277893, -0.01914978, -0.017654419, -0.0069618225, -0.058135986, 0.041931152, -0.03842163, -0.0034046173, 0.0074005127, 0.02230835, -0.05117798, -0.00308609, -0.03555298, -0.033721924, -0.05203247, -0.0070877075, -0.018554688, 0.04208374, 0.0060653687, 0.0107803345, 0.0038928986, -0.015701294, 0.0178833, -0.0098724365, -0.029388428, 0.014404297, 0.02432251, 0.048736572, -0.016830444, 0.032196045, 0.07867432, -0.049957275, -0.03768921, -0.043273926, 0.05441284, -0.03463745, 0.012062073, 0.009674072, 0.032165527, 0.0061683655, 0.0385437, 0.022201538, -0.034942627, 0.0027866364, -0.004219055, -0.033325195, -0.0056037903, -0.028182983, 0.0026474, 0.030334473, 0.02999878, -0.0019359589, 0.050048828, 0.0023784637, -0.014083862, -0.048065186, 0.014152527, -0.0079574585, -0.0015888214, -0.00058555603, -0.011512756, -0.0022068024, -0.039398193, 0.002035141, -0.03137207, -0.028152466, 0.0059814453, 0.04232788, 0.05102539, -0.018203735, 0.020965576, 0.06188965, -0.047454834, 0.054992676, 0.0023059845, -0.017425537, -0.018798828, -0.0038890839, 0.0079956055, -0.010498047, 0.020980835, 0.009864807, -0.014808655, -0.021652222, 0.037597656, 0.015731812, -0.0256958, 0.0034637451, 0.049468994, 0.021072388, 0.02961731, 0.010101318, 0.039611816, 0.041168213, -0.010368347, 0.0027332306, 0.07373047, -0.00869751, -0.025161743, -0.06762695, -0.0010709763, 0.0030574799, 0.0009212494, 0.016189575, -0.03866577, 0.037963867, -0.0018882751, -0.025909424, 0.011207581, -0.00198555, 0.03717041, 0.006866455, -0.052886963, 0.025054932, -0.0002708435, 0.01171875, -0.027511597, 0.012504578, -0.009109497, 0.005493164, -0.027328491, 0.06262207, -0.04360962, 0.043914795, 0.026977539, -0.060943604, -0.011413574, 0.05206299, 0.026535034, 0.018432617, -0.052246094, -0.0032405853, 0.001364708, -0.007610321, -0.005836487, 0.06585693, 0.002632141, 0.0009660721, -0.041503906, -0.004802704, -0.013069153, -0.042236328, 0.014228821, 0.010894775, -0.009002686, 0.00011777878, -0.0048980713, 0.020996094, 0.055541992, -0.022827148, 0.013809204, -0.0073890686, 0.019073486, -0.026016235, 0.0007519722, -0.04043579, -0.056915283, 0.004890442, 0.020812988, -0.025131226, 0.008621216, -0.0029258728, -0.036468506, 0.05596924, -0.08996582, 0.031021118, -0.0061149597, 0.074035645, 0.037841797, 0.07080078, -0.039215088, -0.012306213, -0.005622864, -0.008468628, 0.015403748, 0.052825928, 0.0009074211, 0.037200928, 0.028778076, -0.00057411194, 0.049041748, -0.029968262, 0.009109497, 0.00081920624, 0.021957397, 0.0234375, -0.004650116, -0.0053901672, -0.013053894, 0.0033245087, 0.022018433, 0.026550293, 0.014099121, 0.001914978, 0.0012149811, -0.021652222, -0.035125732, 0.03616333, 0.00025582314, -0.036071777, -0.016220093, -0.04083252, -0.011268616, -0.012306213, -0.0256958, -0.02923584, -0.020767212, -0.057678223, 0.026657104, -0.028564453, -0.004333496, 0.0038223267, -0.011375427, -0.0012073517, -0.04159546, 0.020233154, 0.00053596497, 0.031921387, 0.018844604, 0.064208984, -0.0077590942, -0.06817627, -0.053344727, 0.015853882, -0.018737793, -0.03475952, -0.0020446777, -0.014892578, -0.018539429, -0.013916016, 0.019836426, 0.052734375, 0.03555298, 0.0014352798, 0.0209198, -0.022476196, -0.04058838, 0.062408447, 0.0289917, -0.0541687, -0.006576538, 0.025466919, 0.016448975, 0.0076904297, 0.023483276, 0.021392822, -0.03778076, 0.024871826, -0.0053977966, -0.0021457672, -0.0052337646, -0.023880005, 0.012039185, 0.005947113, -0.04043579, -0.024276733, 0.007194519, 0.028747559, 0.014427185, -3.6358833e-05, 0.061462402, -0.0013866425, -0.080444336, -0.051818848, -0.03475952, 0.025817871, 0.038391113, 0.0005450249, -0.026611328, 0.052459717, -0.023223877, 0.040893555, 0.0385437, -0.010131836, -0.009185791, -0.014091492, 0.03338623, -0.020950317, -0.0012245178, 0.044921875, -0.021377563, -0.0137786865, -0.009513855, 0.014877319, -0.011222839, -0.00919342, -0.029541016, 0.029541016, -0.019760132, -0.04058838, -0.039031982, -0.023529053, -0.01235199, 0.010795593, -0.020751953, 0.008888245, 0.0038204193, 0.0044021606, -0.014350891, 0.008552551, 0.008415222, -0.00031018257, -0.023742676, 0.027893066, 0.013908386, 0.016326904, 0.007537842, -0.020324707, -0.017227173, 0.033569336, 0.015174866, -0.033721924, 0.037322998, -0.03933716, 0.015777588, -0.014579773, 0.011398315, -0.033355713, 0.03503418, 0.028045654, -0.030960083, 0.027786255]}, "B01HITNEEE": {"id": "B01HITNEEE", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black\nDescription: \nFeatures: 360 square inches of cooking space over porcelain-coated grates. Convectional cooking system\n170 square inch porcelain-coated swing-a-way rack for warming\nThree stainless steel in-line burners for cooking performance\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\n", "metadata": {"Name": "American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black", "Brand": "AMERICAN GOURMET", "Description": "", "Features": "360 square inches of cooking space over porcelain-coated grates. Convectional cooking system\n170 square inch porcelain-coated swing-a-way rack for warming\nThree stainless steel in-line burners for cooking performance\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.031402588, -0.008293152, -0.02619934, -0.0335083, -0.010276794, 0.0023326874, -0.055633545, 0.015823364, -0.029251099, 0.011917114, -0.017059326, 0.02720642, -0.018737793, -0.028869629, 0.02420044, -0.01576233, 0.04336548, 0.020355225, 0.013999939, 0.007446289, -0.017150879, 0.052490234, -0.029037476, 0.084472656, 0.05947876, -0.037475586, -0.025909424, 0.028945923, 0.030212402, 0.034088135, 0.034973145, -0.026626587, 0.03616333, -0.00065517426, -0.018966675, 0.00092077255, 0.008743286, -0.01953125, -0.019195557, 0.02128601, 0.020507812, -0.012283325, -0.020721436, 0.017913818, -0.030670166, -0.029067993, 0.023635864, -0.023071289, 0.037353516, -0.021240234, 0.013084412, 0.0124053955, 0.01687622, -0.04486084, -0.03604126, -0.0044784546, 0.027435303, 0.023010254, 0.02130127, -0.038360596, -0.052001953, 0.02142334, 0.020004272, -0.008514404, -0.0209198, 0.014892578, 0.11462402, -0.016677856, -0.009757996, -0.032958984, 0.018569946, 0.01637268, 0.040252686, -0.027893066, -0.010368347, -0.04458618, 0.021881104, -0.020492554, 0.023971558, -0.034301758, -0.020996094, 0.026931763, 0.017562866, -0.004386902, -0.03390503, -0.056549072, -0.014984131, 0.00356102, 0.021835327, -0.061431885, 0.0018043518, -0.0124053955, -0.025405884, 0.01600647, -0.010635376, -0.042877197, -0.05041504, -0.076293945, 0.0026054382, -0.00356102, 0.049224854, -0.027893066, 0.037719727, 0.016311646, -0.014801025, 0.06878662, 0.02017212, 0.042633057, 0.004638672, -0.0031719208, 0.02015686, -0.018753052, -0.019454956, -0.036346436, -0.016601562, 0.006931305, -0.015655518, 0.008239746, 0.024627686, 0.013969421, -0.036743164, -0.01473999, -0.030227661, 0.04852295, 0.029327393, 0.018844604, -0.0041160583, 0.045410156, -0.053955078, 0.029693604, -0.017074585, 0.012382507, 0.049835205, 0.03378296, -0.029754639, -0.0066947937, 0.0053138733, -0.022644043, 0.027801514, -0.012580872, 0.010055542, 0.004425049, 0.06213379, 0.023956299, -0.05432129, 0.026367188, 0.010978699, -0.01701355, -0.03338623, -0.06781006, 0.017471313, -0.074645996, 0.055023193, 0.031341553, -0.105163574, 0.037017822, -0.004623413, -0.0014543533, -0.060791016, -0.06173706, -0.08703613, -0.032165527, 0.006225586, -0.025268555, -0.043640137, 0.05795288, 0.07739258, 0.011444092, 0.03930664, 0.076171875, 0.02708435, -0.070617676, 0.035980225, 0.053619385, -0.008872986, 0.055023193, 0.005458832, -0.0025672913, 0.032318115, -0.073791504, -0.053985596, -0.034851074, 0.078186035, -0.017700195, -0.0038166046, -8.34465e-05, 0.018112183, 0.031707764, 0.006164551, 0.020309448, -0.009101868, 0.0065307617, 0.016906738, -0.036987305, 0.0031776428, 0.007446289, -0.010559082, 0.027160645, -0.008285522, -0.010421753, 0.014274597, -0.009811401, -0.011146545, 0.028900146, 0.0020523071, -0.022613525, 0.009155273, -0.012214661, 0.0027427673, -0.002916336, 0.00016832352, 0.010559082, -0.022613525, -0.034118652, -0.064575195, -0.034423828, -0.013023376, 0.01637268, 0.009994507, 0.018737793, 0.017150879, 0.038116455, 0.02368164, 0.02859497, 0.01259613, -0.008361816, -0.031311035, -0.0031929016, 0.042022705, -0.020980835, 0.018829346, 0.05130005, 0.08227539, 0.040008545, -0.011001587, 0.047607422, 0.077819824, 0.0057678223, -0.035827637, -0.022262573, 0.02142334, -0.00037026405, -0.003036499, 0.012680054, 0.021057129, -0.02619934, 0.01612854, -0.0038871765, -0.010009766, 0.02760315, 0.059020996, 0.010467529, 0.008598328, 0.061950684, -0.030197144, 0.03604126, -0.011314392, 0.026687622, -0.010429382, 0.038085938, -0.0046577454, 0.07885742, 0.03289795, 0.017990112, -0.0031032562, 0.029251099, 0.02394104, 0.0289917, -0.042938232, 0.0060806274, 0.024337769, 0.07891846, -0.009811401, -0.03237915, -0.06768799, 0.036102295, -0.03164673, 0.056365967, -0.0023059845, -0.031173706, 0.014045715, 0.02067566, -0.030792236, -0.0051956177, 0.038024902, 0.032409668, -0.013252258, 0.019866943, 0.02520752, -0.0078086853, 0.023284912, -0.009307861, 0.0014734268, -0.0041885376, 0.009094238, -0.057800293, 0.07684326, 0.04058838, 8.523464e-05, 0.0031204224, 0.0016126633, 0.009681702, -0.040618896, 0.0038337708, -0.009780884, -0.00969696, -0.03363037, 0.0027179718, -0.0056877136, -0.043945312, 0.0055999756, 0.053466797, 0.026489258, 0.022720337, 0.035369873, -0.00819397, 0.018356323, 0.06463623, 0.0056037903, -0.029281616, 0.022644043, -0.019638062, -0.022781372, -0.0044937134, -0.016174316, -0.0035877228, -0.009963989, -0.0024414062, -0.021072388, 0.01411438, -0.022613525, -0.008781433, 0.004814148, 0.0413208, -0.012145996, -0.008102417, 0.0029201508, 0.012145996, -0.00049591064, -0.034729004, -0.0024032593, -0.0013980865, -0.014137268, -0.019989014, -0.0041656494, 0.0053138733, -0.0012664795, 0.015625, 0.0026283264, 0.02130127, -0.023391724, -0.037628174, 0.01083374, -0.012298584, 0.01184845, -0.007522583, -0.008506775, -0.026306152, -0.044311523, -0.0703125, 0.0045814514, -0.03479004, -0.06112671, -0.013336182, 0.08282471, 0.0004811287, -0.021530151, -0.043121338, -0.034484863, -0.0046463013, 0.034576416, -0.037109375, -0.044158936, -0.01940918, -0.053009033, 0.015686035, 0.023010254, -0.04525757, 0.010398865, 0.014984131, -0.0013828278, 0.042785645, -0.035614014, 0.006374359, 0.009101868, -0.014862061, -0.00059080124, 0.037628174, 0.00055742264, 0.0041122437, 0.010040283, 0.025131226, -0.06072998, 0.0027236938, 0.017852783, -0.0016441345, 0.024414062, 0.028533936, -0.068481445, -0.021026611, -0.07366943, 0.00037050247, 0.006591797, -0.051116943, -0.015686035, -0.055633545, -0.07659912, -0.045837402, 0.00016772747, 0.042785645, -0.022537231, -0.018920898, -0.035980225, -0.0070610046, 0.01335907, -0.013717651, -0.020355225, -0.0035495758, 0.012245178, 0.0053977966, 0.006298065, -0.018859863, 0.0015296936, 0.010643005, -0.057922363, 0.04626465, -0.02909851, 0.040618896, -0.030593872, 0.040527344, -0.0012435913, -0.0017709732, -0.034698486, -0.031158447, -0.031677246, -0.012321472, 0.014022827, -0.011932373, 0.03366089, -0.027740479, -0.024719238, -0.016586304, -0.0066566467, 0.05758667, 0.04257202, -0.03955078, -0.058410645, -0.040283203, -0.027236938, 0.0031318665, -0.0061531067, 0.009613037, 0.011054993, 0.025848389, -0.012641907, 0.036315918, 0.009971619, 0.061157227, 0.033721924, -0.028839111, -0.01574707, -0.064819336, 0.035186768, 0.046173096, -0.0027122498, -0.0010480881, 0.0005493164, 0.026885986, -0.005607605, 0.0015735626, 0.023910522, 0.020858765, 0.05569458, -0.026473999, -0.020202637, -0.059661865, 0.031799316, -0.0016222, 0.00020122528, -0.05105591, -0.05606079, 0.014251709, -0.03253174, 0.05279541, 0.033081055, -0.0149002075, 0.064941406, 0.035003662, 0.0017957687, 0.014175415, 0.015144348, 0.016601562, -0.009178162, 0.07739258, -9.030104e-05, -0.016281128, 0.01802063, -0.013038635, 0.010940552, -0.0019702911, -0.030090332, 0.017837524, -0.004234314, -0.028686523, -0.016601562, 0.051879883, 0.046020508, -0.014038086, -0.004009247, -0.008201599, 0.015808105, -0.05810547, -0.016708374, -0.0042877197, -0.011856079, 0.0016365051, -0.008102417, 0.026901245, -0.0317688, -0.021438599, -0.014129639, 0.022018433, -0.008422852, 0.027236938, 0.0011587143, 0.0038833618, -0.0005159378, 0.031280518, -0.016723633, -0.026229858, 0.027267456, 0.004169464, 0.052368164, 0.04296875, -0.021102905, 0.04284668, -0.014587402, 0.009506226, -0.0141067505, -0.03845215, -0.008666992, 0.008842468, 0.012489319, -0.023986816, 0.0032424927, -0.039764404, -0.032073975, -0.022323608, 0.03237915, -0.025787354, 0.016418457, 0.003370285, -0.094177246, -0.032440186, 0.008842468, -0.050964355, -0.027038574, 0.018722534, -0.028274536, -0.014854431, -0.03250122, 0.024276733, -0.026626587, -0.008758545, -0.02468872, 0.010322571, 0.028015137, 0.028533936, 0.028808594, -0.02229309, 0.003921509, -0.035705566, 0.10205078, 0.025817871, -0.0071105957, -0.06585693, -0.046691895, -0.02015686, 0.012084961, 0.021347046, -0.002418518, 0.01133728, -0.03378296, -0.06774902, -0.017196655, -0.041503906, 0.027618408, -0.05267334, -0.047576904, -0.01473999, 0.09649658, -0.03604126, -0.011260986, -0.014755249, 0.029067993, 0.0115737915, 0.0046958923, -0.016357422, 0.037902832, 0.015136719, -0.04385376, 0.0011873245, -0.01222229, -0.025039673, 0.08251953, 0.033416748, 0.040100098, -0.047180176, 0.015106201, 0.009140015, 0.0069389343, -0.004840851, -0.018508911, 0.0234375, -0.01701355, -0.027053833, -0.049926758, 0.076416016, -0.014373779, 0.009422302, -0.01209259, -0.0053710938, 0.004814148, -0.09436035, -0.010116577, -0.03567505, -0.027923584, -0.04220581, -0.037628174, 0.022537231, -0.031799316, 0.010131836, -0.0015439987, -0.015602112, 0.02545166, -0.012863159, 0.016342163, -0.015052795, -0.0020942688, 0.0057411194, 0.005428314, 0.02909851, -0.016082764, -0.016845703, 0.02027893, -0.028793335, -0.024642944, -0.0003709793, -0.0045700073, 0.013298035, 0.021835327, 0.010307312, -0.022232056, -0.025177002, 0.02279663, -0.00894928, -0.022338867, -0.018173218, 0.0005288124, 0.012641907, 0.008857727, 0.05154419, -0.068481445, 0.043884277, 0.036865234, 0.0026950836, -0.01335907, 0.037750244, -0.03805542, 0.036743164, 0.024658203, -0.0234375, 0.030456543, 0.0023956299, 0.0066604614, -0.03439331, 0.05102539, -0.012878418, 0.002981186, -0.040893555, 0.016021729, -0.004787445, -0.039367676, 0.032196045, -0.025375366, 0.045318604, -0.044403076, -0.009483337, -0.021057129, 0.072021484, -0.034820557, -0.01914978, 0.008804321, 0.0006608963, -0.027801514, -0.023132324, -0.02558899, -0.02418518, -0.01927185, 0.021240234, 0.027008057, -0.017822266, 0.0021514893, -0.04498291, 0.008850098, -0.011047363, -0.046966553, -0.019302368, 0.023757935, 0.0057144165, -0.011795044, 0.027526855, -0.0069274902, -0.0107803345, -0.005783081, -0.0058403015, -0.00080537796, 0.02619934, -0.013046265, 0.0037021637, -0.021347046, -0.0013628006, 0.0035171509, -0.025421143, -0.00274086, 0.020568848, -0.040985107, -3.772974e-05, 0.007865906, 0.025253296, 0.009605408, 0.027938843, 0.04171753, -0.03149414, -0.023208618, -0.035125732, 0.055419922, -0.0418396, -0.018157959, 0.08001709, 0.06793213, 0.0024433136, 0.038482666, -0.017501831, -0.03616333, -0.035064697, -0.014633179, -0.051605225, -0.025238037, -0.03189087, 0.022964478, -0.0011196136, -0.027709961, 0.0063438416, 0.041656494, 0.021347046, -0.02708435, -0.045196533, -0.02758789, 0.019348145, -0.032989502, 0.007686615, -0.041046143, -0.012023926, -0.0015878677, -0.0018997192, -0.05706787, -0.029693604, -0.0074005127, 0.018356323, 0.021408081, 0.0031032562, -0.002904892, -0.0041122437, -0.030090332, 0.026809692, -0.019546509, -0.018936157, 0.006477356, 0.053588867, 0.007671356, 0.05432129, -0.031051636, -0.030654907, -0.02720642, 0.021347046, 0.043121338, 0.020080566, -0.04486084, 0.004878998, 0.04067993, 0.037231445, 0.040283203, 0.044311523, 0.06124878, -0.030975342, -0.05227661, 0.020431519, -0.030670166, -0.05722046, -0.044799805, -0.015235901, -0.0519104, 0.006664276, -0.031219482, 0.041656494, -0.021377563, 0.015975952, 0.009590149, -0.026428223, 0.032684326, -0.004108429, 0.019683838, 0.0015106201, -0.020843506, 0.0101623535, 0.012390137, 0.0028305054, -0.021942139, 0.019195557, -0.017822266, 0.024032593, 0.0052223206, 0.04055786, -0.0345459, 0.05227661, -0.003835678, -0.074401855, 0.023239136, 0.028015137, 0.004196167, 0.02822876, -0.05847168, -0.03894043, 0.0076904297, 0.033050537, -0.017547607, 0.013114929, 0.015991211, -0.0009646416, 0.0052604675, 0.018676758, -0.010597229, -0.03616333, 0.030761719, 0.0074157715, 0.03286743, -0.021148682, -0.041107178, -0.024749756, 0.050079346, -0.026321411, -0.027191162, 0.011558533, 0.03579712, -0.031402588, 0.028289795, -0.021957397, -0.02809143, -0.007785797, 0.017364502, 0.021911621, 0.044128418, -0.0067634583, 0.026931763, 0.007663727, -0.024353027, 0.018707275, -0.053863525, 0.049804688, 0.04083252, -0.0022964478, -0.029571533, -0.021835327, -0.024169922, 0.03149414, -0.01260376, 0.03250122, 0.015167236, 0.0067253113, 0.018493652, 0.0014505386, 0.021362305, -0.036499023, 0.0075683594, 0.0032997131, 0.0011091232, 0.02734375, 0.04257202, -0.016036987, -0.00844574, 0.0047569275, 0.009651184, 0.020248413, 0.02583313, -0.0039787292, 0.037750244, 0.014297485, -0.010002136, -0.018218994, -0.004360199, -0.01600647, 0.056030273, -0.009498596, -0.026412964, -0.0115737915, -0.04171753, -0.019210815, 0.013038635, -0.05795288, 0.006767273, 0.03012085, -0.025375366, -0.011566162, -0.0016975403, -0.029891968, -0.051116943, -0.0010309219, -0.017425537, 0.061767578, 0.0095825195, 0.021743774, -0.017501831, -0.066711426, -0.016983032, 0.057678223, -0.033935547, -0.06695557, -0.024353027, 0.011016846, 0.010917664, -0.0034046173, 0.028808594, -0.010101318, 0.028182983, -0.0058059692, 0.0017948151, 0.0055389404, -0.014770508, 0.0051727295, 0.00085639954, -0.017120361, 0.016601562, 0.027191162, -0.019210815, 0.017074585, 0.015083313, -0.030929565, -0.06488037, -0.02734375, -0.020767212, 0.011398315, 0.025543213, -0.005317688, 0.029678345, 0.027435303, -0.036102295, 0.01612854, -0.015670776, -0.01965332, 0.038391113, -0.022277832, 0.021728516, -0.00919342, -0.057861328, -0.06939697, -0.027389526, 0.02166748, 0.062438965, 0.099243164, 0.018295288, -0.0184021, -0.021896362, 0.019302368, -0.07043457, -0.08514404, 0.0012359619, -0.009429932, 0.011497498, -0.010688782, -0.017410278, 0.002878189, -0.04449463, 0.022964478, 0.025054932, 0.023834229, -0.02659607, -0.034362793, -0.016281128, 0.0075149536, -0.006866455, -0.045074463, -0.043884277, -0.016067505, -0.0067977905, 0.019302368, -0.006137848, -0.002090454, -0.01675415, 0.016921997, -0.009376526, 0.00894165, 0.009643555, 0.005722046, -0.009780884, 0.009338379, 0.015007019, -0.014602661, -0.009170532, -0.10229492, -0.014640808, 0.016220093, 0.012207031, -0.021194458, 0.034210205, -0.0546875, 0.016830444, 0.016677856, 0.0128479, -0.0039634705, -0.011734009, 0.037353516, 0.006702423, -0.0010623932]}, "B07BLHC2G2": {"id": "B07BLHC2G2", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Sturdy quick-fold legs and wheels\nPUSH-BUTTON IGNITION: For matchless lighting\n", "metadata": {"Name": "Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red", "Brand": "Coleman", "Description": "", "Features": "COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Sturdy quick-fold legs and wheels\nPUSH-BUTTON IGNITION: For matchless lighting", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03137207, 0.002571106, -0.011695862, 0.019714355, -0.012779236, -0.010063171, 0.010650635, -0.019470215, -0.039611816, -0.030212402, -0.023590088, 0.010421753, -0.049102783, -0.04888916, 0.046325684, -0.06347656, 0.0039482117, 0.036895752, -0.00021767616, -0.028442383, 0.00039863586, -0.025817871, -0.036712646, 0.10394287, 0.035827637, -0.040893555, -0.0051612854, -0.010017395, 0.01914978, -0.006210327, 0.02772522, 0.01776123, 0.05596924, -0.020019531, -0.022033691, -0.019805908, -0.0028705597, -0.022109985, -0.040771484, 0.023834229, 0.012290955, -0.01751709, -0.030776978, 0.018951416, -0.03466797, -0.014625549, 0.015419006, -0.010269165, 0.022491455, 0.009101868, -0.009735107, 0.01574707, 0.009117126, -0.053710938, -0.0109939575, -0.018997192, 0.019088745, 0.0013399124, 0.019546509, -0.054534912, -0.018753052, 0.001074791, 0.049468994, 0.024642944, -0.031921387, 0.0058288574, 0.06414795, -0.010879517, 0.0067634583, -0.04272461, -0.0054092407, 0.026046753, -0.003419876, 0.0625, -0.049621582, -0.06512451, 0.035217285, -0.04348755, 0.041381836, 0.016342163, -0.009277344, -0.03378296, 0.005844116, -0.0158844, 0.01878357, 0.019195557, -0.019638062, -0.014144897, -0.023803711, -0.032165527, -0.010635376, 0.010688782, -0.09069824, 0.05630493, 0.0154418945, -0.010795593, -0.0053634644, -0.050994873, 0.021530151, -0.013046265, 0.027862549, -0.029830933, -0.0024967194, 0.01626587, -0.023803711, 0.0022659302, 0.012687683, 0.076171875, 0.038116455, 0.011444092, -0.01651001, 0.02116394, 0.03970337, 0.027938843, -0.026062012, -0.06262207, -0.030029297, 0.036987305, -0.01234436, 0.012619019, -0.033447266, -0.020736694, 0.033081055, 0.012275696, 0.04788208, 0.038879395, 0.008590698, -0.012008667, -0.007801056, 0.06793213, -0.053131104, -0.029556274, 0.0446167, 0.034118652, 0.019424438, -0.058258057, 0.032348633, -0.013877869, 0.006313324, -0.009490967, 0.0087509155, 0.00023508072, 0.0058784485, -0.004135132, -0.013626099, -0.0039100647, 0.04171753, 0.037872314, -0.022125244, -0.053833008, 0.04046631, 0.0063705444, 0.037078857, 0.005874634, -0.035827637, 0.010650635, -0.02255249, -0.0004892349, -0.028930664, -0.0211792, -0.002073288, -0.01638794, -0.0075531006, -0.020507812, -0.025802612, 0.007896423, 0.020629883, 0.0042037964, 0.03378296, 0.0592041, 0.023452759, -0.017501831, 0.03945923, 0.03778076, -0.01008606, -0.005466461, 0.0018930435, 0.03918457, 0.045806885, -0.08734131, -0.064086914, -0.054016113, 0.07733154, -0.024169922, -0.00969696, -0.027313232, 0.026504517, 0.012931824, -0.015106201, 0.021469116, 0.031280518, 0.022750854, -0.04046631, 0.0067100525, 0.0368042, 0.027679443, -0.03829956, 0.018844604, 0.004142761, -0.054504395, 0.029953003, 0.022537231, -0.0025310516, 0.010383606, -0.0020046234, 0.010803223, 0.008125305, -2.7060509e-05, 0.046447754, 0.04324341, -0.014152527, 0.0036296844, 0.015426636, -0.06500244, -0.03866577, 0.0052223206, -0.027374268, 0.027877808, 0.02519226, 0.032684326, 0.05609131, -0.0033855438, 0.05114746, -0.014762878, 0.022064209, -0.008766174, -0.010848999, -0.0048980713, 0.027770996, -0.004760742, 0.0051651, 0.029266357, 0.06085205, 0.07635498, 0.0046653748, 0.042999268, 0.07727051, 0.05834961, -0.024337769, -0.038085938, -0.008262634, -0.021438599, -0.064697266, -0.0074501038, -0.024414062, 0.01550293, 0.012329102, -0.0032215118, -0.006160736, -0.0020198822, 0.046325684, -0.015220642, 0.04055786, 0.055633545, -0.014213562, 0.024337769, -0.048736572, 0.016235352, -0.048950195, 0.035369873, -0.00894928, 0.044189453, 0.04547119, -0.003944397, 0.040893555, 0.029632568, 0.03881836, 0.024169922, -0.04928589, 0.01852417, 0.023040771, 0.030838013, -0.0050964355, -0.000828743, 0.024108887, -0.030853271, -0.027832031, 0.020767212, -0.00097227097, -0.019607544, 0.03591919, 0.018508911, -0.0023117065, 0.007194519, 0.035583496, 0.020996094, 0.0071144104, 0.04119873, -0.049621582, -0.031799316, 0.016357422, -0.033721924, -0.028961182, -0.01309967, -0.045684814, -0.042816162, 0.05731201, 0.010223389, 0.006011963, -0.018692017, 0.03353882, 0.021362305, -0.0637207, 0.020767212, -0.0035953522, -0.0054016113, -0.01991272, 0.03237915, 0.012046814, -0.034698486, -0.006542206, 0.0025405884, 0.02670288, 0.0022468567, 0.012710571, 0.001458168, -0.014694214, 0.03567505, -0.011749268, 0.0020484924, -0.012298584, -0.031234741, -0.022491455, -0.013801575, -0.009208679, 0.0003631115, -0.025405884, -0.00096797943, -0.026565552, 0.00039076805, 0.0041770935, -0.024642944, -7.867813e-05, -0.0015277863, -0.0015192032, -0.005706787, 0.0030136108, 0.03479004, -0.0011110306, -0.037261963, 0.0143966675, -0.028244019, -0.004447937, 0.012283325, -0.029159546, -0.011543274, 0.036376953, 0.012710571, 0.02709961, -0.0019283295, 0.010238647, -0.018371582, 0.0019207001, -0.014625549, -0.012123108, -0.018157959, -0.018875122, -0.066833496, -0.054718018, -0.091918945, -0.017242432, 0.0027389526, -0.046569824, -0.03665161, 0.042297363, -0.015296936, -0.038360596, -0.014007568, -0.012557983, 0.010826111, -0.015472412, 0.021240234, -0.03793335, -0.015487671, -0.016403198, 0.0064849854, 0.02696228, -0.02279663, -0.010292053, 0.0030498505, 0.0008826256, -0.003545761, 0.0023956299, 0.012519836, 0.019439697, 0.026351929, 0.03857422, 0.05496216, -0.006263733, -0.02394104, -0.0181427, 0.039001465, -0.06518555, -0.007911682, 0.0017766953, 0.017044067, -0.02999878, -0.04269409, -0.031082153, -0.014343262, -0.12780762, -0.00026202202, -0.013023376, -0.053833008, -0.016952515, -0.06329346, -0.07507324, -0.0692749, 0.0007610321, 0.029342651, -0.03225708, 0.011985779, -0.03704834, 0.0061073303, 0.0060577393, -0.0058288574, 0.047576904, -0.020385742, 0.0637207, -0.04208374, 0.0071258545, -0.060699463, -0.00035476685, 0.010818481, -0.023986816, 0.066589355, -0.03213501, 0.0149002075, -0.009117126, 0.008087158, 0.005622864, 9.536743e-06, -0.012016296, -0.0020256042, -0.0035247803, 0.008110046, -0.01234436, -0.04046631, 0.01285553, -0.027832031, -0.011184692, 0.001830101, -0.0035533905, 0.052978516, 0.0037879944, -0.016281128, -0.009597778, -0.05102539, -0.010391235, -0.04953003, 0.004119873, 0.008483887, 0.028549194, 0.015083313, 0.001572609, 0.060424805, 0.029067993, 0.057281494, 0.020736694, -0.061279297, -0.041992188, -0.042877197, 0.02760315, 0.009986877, 0.0013313293, -0.04827881, 0.0076522827, 0.008811951, -0.012886047, 0.009681702, -0.00035643578, 0.05404663, 0.055236816, -0.03704834, -0.008071899, -0.06463623, 0.041900635, 0.014022827, -0.0003619194, -0.083984375, -0.043548584, 0.013465881, -0.124694824, 0.09289551, 0.081848145, -0.040924072, 0.08679199, 0.001039505, -0.008026123, 0.059692383, 0.078308105, -0.0021305084, 0.015975952, 0.08355713, -0.035888672, -0.00737381, 0.006111145, -0.00029563904, -0.0065994263, -0.00075531006, -0.061035156, 0.017791748, 0.04107666, -0.009857178, 0.0033187866, -0.014656067, 0.028503418, 0.006832123, 0.0044517517, 0.010284424, 0.017333984, -0.014595032, -0.018554688, -9.4652176e-05, -0.022384644, 0.026657104, -0.011177063, -0.015167236, -0.02217102, -0.0067214966, 0.026107788, 0.022888184, 0.008720398, 0.018218994, 0.004863739, 0.022033691, -0.035369873, 0.01737976, -0.01108551, -0.004257202, 0.038146973, 0.021652222, 0.014839172, 0.0011024475, -0.010421753, -0.011741638, -0.021118164, 0.034057617, -0.0030899048, -0.076171875, 0.004043579, 0.04888916, 0.011253357, -0.019485474, 0.021957397, -0.026947021, 0.016174316, 0.0055618286, -0.021209717, 0.008300781, -0.044189453, -0.021987915, -0.0770874, -0.015449524, -0.00894928, -0.012931824, -0.03366089, 0.029632568, -0.036834717, -0.031829834, 0.00013065338, -0.019989014, -0.009346008, -0.002954483, -0.026535034, 0.0013389587, 0.058502197, 0.017990112, 0.040527344, -0.032440186, 0.0067634583, -0.013793945, 0.08721924, 0.0066223145, 0.03353882, -0.051330566, -0.025970459, -0.013870239, 0.029190063, 0.05429077, -0.03564453, 0.043395996, -0.013435364, 0.00308609, -0.026535034, -0.04107666, 0.05883789, -0.055755615, -0.008239746, -0.043548584, 0.041015625, -0.023971558, 0.005012512, -0.022994995, 0.016647339, 0.027145386, -0.011497498, -0.07757568, -0.028213501, -0.0030536652, -0.011482239, -0.011482239, 0.008804321, -0.016723633, 0.029342651, -0.016967773, -0.0022277832, -0.013473511, -0.01802063, -0.024932861, -0.011077881, 0.027542114, -0.047546387, 0.0013933182, -0.05154419, 0.012527466, -0.053619385, 0.074157715, 0.03604126, -0.038024902, -0.004562378, 0.006389618, -0.016815186, -0.042236328, 0.00920105, -0.008850098, -0.044799805, -0.021011353, -0.02947998, -0.004146576, -0.035461426, -0.0096588135, -0.0066833496, -0.027786255, 0.008140564, 0.0023651123, 0.018615723, -0.017684937, 0.022155762, 0.043060303, 0.0262146, 0.01876831, 0.007774353, -0.045074463, -0.0063438416, -0.023605347, -0.020996094, -0.0047569275, -0.00920105, -0.0121154785, 0.017440796, 0.0078125, -0.04244995, 0.01586914, 0.024887085, 0.0004925728, 0.0056381226, 0.0016555786, 0.026748657, -0.015731812, 0.0016298294, 0.05706787, -0.021835327, 0.003168106, 0.045043945, -0.0129852295, 0.0044937134, 0.04458618, -0.025817871, 0.04916382, 0.012069702, -0.012191772, 0.041046143, 0.0104904175, -0.011680603, -0.04348755, 0.07989502, -0.012863159, -0.0018234253, -0.044067383, 0.02720642, 0.05984497, 0.013221741, 0.010925293, -0.034454346, 0.08276367, -0.06329346, -0.049926758, 0.00497818, 0.010803223, -0.0046157837, 0.0067100525, 0.0003502369, -0.031280518, -0.033843994, -0.023025513, -0.024917603, 0.0028762817, 0.0077171326, -0.021392822, 0.003616333, 0.02128601, -0.010856628, -0.013496399, -0.00894928, 0.0025672913, -0.051513672, 0.029708862, -0.0146865845, 0.0022563934, 0.0064430237, 0.014221191, -0.028747559, 0.0057258606, -0.02999878, -0.0579834, -0.07720947, 0.0017080307, -0.023132324, 0.037231445, -0.014633179, -0.028213501, -0.00028038025, -0.009742737, 0.024414062, -0.025650024, -0.02798462, -0.017532349, 0.024124146, 0.04547119, -0.0256958, 0.019851685, 0.063964844, -0.045654297, -0.027053833, -0.04031372, 0.066101074, -0.0132751465, 0.024047852, 0.0049476624, 0.013328552, 0.0036945343, 0.04336548, 0.0026283264, -0.022354126, 0.0019397736, 0.0020542145, -0.026763916, -0.004386902, -0.016098022, 0.011749268, 0.01979065, 0.04776001, 0.0027599335, 0.055389404, 0.0027198792, -0.024276733, -0.053253174, 0.02230835, -0.015327454, 0.00039291382, 0.0014305115, -0.009239197, -0.00497818, -0.049041748, -0.013175964, -0.02835083, -0.016555786, 0.027282715, 0.024291992, 0.03982544, -0.009803772, 0.024887085, 0.03878784, -0.017303467, 0.04043579, -0.005317688, -0.002210617, 0.010437012, -0.00042366982, -0.0015916824, -0.014251709, 0.029220581, 0.014305115, -0.0056114197, -0.02116394, 0.014205933, 0.023544312, -0.037261963, -0.015182495, 0.047180176, 0.03729248, 0.0035705566, 0.009773254, 0.021240234, 0.02268982, -0.019943237, -0.0073432922, 0.046539307, -0.02458191, -0.001742363, -0.06365967, 0.0010871887, -0.017593384, -0.008872986, 0.0046691895, -0.046051025, 0.039489746, 0.0049057007, -0.023117065, 0.017440796, -0.009155273, 0.031021118, 0.00031900406, -0.03665161, 0.033477783, -0.01436615, 0.0104599, -0.013885498, 0.008628845, -0.006717682, 0.0042037964, -0.036132812, 0.068725586, -0.041290283, 0.0501709, 0.031234741, -0.060272217, -0.017440796, 0.03692627, 0.033325195, 0.008926392, -0.0385437, -0.01134491, -0.0052604675, 0.0061073303, 0.01550293, 0.050231934, 0.000957489, 0.010437012, -0.03955078, -0.011741638, -0.017669678, -0.051483154, 0.038513184, 0.007129669, -0.014030457, 0.0035266876, -0.040374756, 0.0006980896, 0.05706787, -0.005558014, 0.010223389, -0.018508911, 0.035858154, -0.014480591, -0.0025634766, -0.030853271, -0.04800415, 0.015083313, 0.002916336, -0.013053894, 0.034973145, 0.02406311, -0.022857666, 0.048431396, -0.08770752, 0.031341553, -0.03363037, 0.080566406, 0.04446411, 0.068603516, -0.018234253, -0.002998352, -0.000790596, 0.00014698505, 0.012199402, 0.036376953, 0.008880615, 0.01537323, 0.029006958, -0.013412476, 0.05050659, -0.023239136, 0.00806427, -0.009605408, 0.03100586, 0.018585205, 0.022628784, 0.0054016113, -0.0011072159, -0.013504028, 0.008026123, 0.022720337, 0.015159607, 0.01637268, -0.008491516, -0.020889282, -0.027557373, 0.030685425, -0.008720398, -0.023864746, -0.01727295, -0.03390503, -0.036010742, -0.020355225, -0.049194336, -0.0121536255, -0.009208679, -0.05895996, 0.025619507, -0.0054359436, -0.012870789, 0.008293152, -0.0022563934, 0.0025806427, -0.04736328, 0.019485474, 0.006210327, 0.03479004, 0.015975952, 0.07269287, -0.018936157, -0.059539795, -0.052642822, -0.0035743713, -0.0060691833, -0.010604858, 0.00056266785, -0.036071777, -0.036590576, -0.01737976, 0.034362793, 0.056854248, 0.045410156, 0.005306244, 0.02180481, -0.04232788, -0.042053223, 0.07672119, 0.032409668, -0.061553955, -0.014305115, 0.041503906, 0.00970459, -0.004436493, 0.03970337, 0.009727478, -0.033935547, 0.013023376, -0.00299263, -0.027542114, -0.023376465, -0.013069153, 0.009292603, 0.01537323, -0.033111572, -0.033996582, 0.009300232, 0.017807007, 0.038146973, 0.019454956, 0.030853271, -0.008010864, -0.08874512, -0.056243896, -0.022460938, 0.04324341, 0.008232117, -0.0014266968, -0.009880066, 0.053253174, -0.01864624, 0.048614502, 0.06304932, -0.035308838, 0.0045280457, -0.006477356, 0.031585693, -0.006793976, -0.006248474, 0.054626465, -0.016296387, -0.022247314, 0.005207062, 0.021514893, -0.015144348, -0.0040245056, -0.028533936, 0.022018433, -0.008934021, -0.031311035, -0.0340271, -0.007835388, -0.0041923523, 0.016067505, -0.011421204, -0.0070495605, -0.0032997131, 0.009773254, -0.012901306, 0.0037651062, 0.012870789, -0.008552551, -0.049072266, 0.030258179, 0.017105103, 0.001821518, 0.00774765, -0.026809692, -0.024337769, 0.02822876, 0.00957489, -0.026687622, 0.019119263, -0.0138549805, 0.011932373, -0.0037384033, -0.004333496, -0.032470703, 0.025680542, 0.04360962, -0.02330017, 0.019714355]}, "B07NR9G7BC": {"id": "B07NR9G7BC", "original": "Brand: Masterbuilt\nName: Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel\nDescription: \nFeatures: 288 sq. inches of total cooking surface\n10,000 BTU stainless steel \"U\" shaped burner for maximum heat distribution\nFolding legs and locking lid make moving grill easy\nChrome-coated warming rack_Stainless steel construction and cooking grates\nPush-button ignition lights burner quickly and easily\n", "metadata": {"Name": "Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel", "Brand": "Masterbuilt", "Description": "", "Features": "288 sq. inches of total cooking surface\n10,000 BTU stainless steel \"U\" shaped burner for maximum heat distribution\nFolding legs and locking lid make moving grill easy\nChrome-coated warming rack_Stainless steel construction and cooking grates\nPush-button ignition lights burner quickly and easily", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010139465, -0.00010794401, -0.013420105, -0.021713257, -0.00724411, -0.010322571, -0.01751709, -0.0023078918, -0.036590576, -0.004951477, 0.00029349327, 0.029220581, 0.010543823, -0.046661377, 0.049346924, -0.010093689, 0.01537323, 0.005722046, -0.015319824, -0.036224365, 0.01222229, -0.0104904175, -0.022079468, 0.07861328, 0.043884277, -0.07470703, -0.03741455, 0.02218628, 0.03933716, 0.029571533, 0.030441284, -0.020065308, 0.024429321, -0.012382507, -0.0003311634, -0.056427002, 0.029159546, -0.029296875, -0.038726807, 0.027236938, -0.006793976, 0.008796692, -0.026748657, -0.03930664, -0.028015137, -0.04727173, 0.013374329, -0.007598877, 0.042999268, -0.0020256042, 0.01171875, 0.020767212, 0.017837524, -0.029830933, -0.03692627, -0.025787354, 0.022109985, -0.005832672, 0.006134033, -0.04510498, -0.020462036, 0.022994995, 0.045196533, 0.031921387, -0.027496338, 0.023590088, 0.07800293, -0.008995056, 0.020004272, -0.04156494, -0.03213501, 0.030334473, -0.011497498, 0.026916504, -0.030166626, -0.008056641, 0.018569946, -0.0030937195, 0.025177002, 0.024093628, -0.03665161, -0.018417358, -0.01651001, -0.022415161, -0.017242432, -0.017486572, -0.021896362, 0.010055542, -0.017150879, -0.0062294006, -0.013580322, -0.009925842, -0.04421997, 0.050109863, 0.0107040405, -0.0021591187, -0.049865723, -0.06573486, 0.013870239, 0.0077285767, 0.026367188, -0.023498535, 0.019256592, 0.00096321106, -0.0005669594, 0.08294678, 0.0181427, 0.037994385, 0.0033988953, -0.02633667, 0.013015747, -0.029067993, -0.028884888, -0.003944397, -0.048706055, 0.011260986, -0.04727173, -0.0034980774, 0.0025024414, 0.022140503, -0.066467285, -0.035980225, 0.0126571655, 0.002336502, 0.006439209, 0.0046653748, 0.006454468, 0.012290955, -0.041015625, 0.012840271, -0.02760315, -0.0051193237, 0.03765869, 0.060180664, 0.015045166, -0.009109497, 0.02078247, -0.029632568, 0.004714966, 0.028533936, -0.008308411, -0.004348755, 0.041168213, -0.02166748, -0.05441284, 0.017822266, 0.034576416, 0.00907135, -0.057617188, -0.091674805, 0.009239197, 0.0013799667, 0.020401001, 0.016571045, -0.043945312, 0.0075187683, -0.034698486, 0.009819031, -0.011734009, -0.01739502, -0.022521973, -0.031311035, 0.00024843216, -0.011138916, -0.03994751, 0.052093506, 0.0076065063, -0.0030536652, 0.019760132, 0.09649658, -0.016021729, -0.042663574, 0.023727417, 0.020111084, -0.031082153, 0.013473511, 0.030914307, 0.032989502, 0.03125, -0.03604126, -0.046295166, -0.050476074, 0.12237549, -0.07330322, -0.006313324, -0.012924194, 0.0093688965, -0.020431519, 0.012626648, 0.0034751892, 0.005924225, 0.03152466, 0.013656616, -0.04385376, 0.034851074, -0.0027770996, -0.051330566, -0.0105896, -0.0052375793, -0.016357422, 0.031829834, 0.015541077, 0.026748657, 0.004047394, 0.03189087, 0.0017127991, 0.01222229, -0.0018844604, -0.00071287155, 0.01676941, 0.003993988, -0.008239746, -0.0075263977, -0.029022217, -0.029159546, -0.00084400177, -0.018508911, 0.0015230179, 0.003353119, -0.023422241, 0.009841919, 0.0023422241, 0.010757446, 0.021438599, 0.018829346, 0.0064582825, -0.019683838, -0.01373291, 0.020629883, 0.002855301, -0.015266418, 0.034973145, 0.08703613, 0.06707764, -0.009269714, 0.029754639, 0.066833496, 0.029129028, -0.02746582, -0.017959595, 0.0155181885, -0.0024585724, -0.0032730103, 0.050231934, 0.008026123, -0.004016876, 0.0146865845, 0.009223938, -0.007843018, 0.00932312, 0.02279663, -0.014633179, 0.043701172, 0.02835083, -0.02458191, 0.028381348, -0.032318115, 0.008506775, -0.04058838, 0.040985107, -0.015411377, 0.04660034, 0.038085938, 0.0024089813, 0.03213501, 0.035003662, 0.021438599, 0.025405884, -0.06915283, 0.029693604, 0.029205322, 0.052703857, -0.021438599, -0.017028809, 0.00730896, -0.019515991, -0.037902832, 0.04058838, -0.03164673, -0.042236328, -0.00078105927, -0.026885986, -0.03112793, -0.0030651093, 0.04360962, 0.011672974, -0.0013818741, 0.023025513, 0.005821228, 0.021652222, 0.026184082, 0.02558899, 0.0063591003, 0.016433716, -0.0020370483, -0.0076560974, 0.06964111, 0.02394104, 0.00504303, -0.016220093, 0.019058228, 0.017120361, -0.05633545, 0.0023117065, -0.014533997, 0.01965332, -0.010772705, 0.0206604, -0.004425049, -0.03845215, 0.020721436, 0.011520386, 0.026473999, -0.003648758, 0.040740967, -0.00023162365, 0.011299133, 0.044128418, -0.009757996, 0.0082473755, -0.011581421, -0.0054473877, -0.04650879, -0.0209198, -0.008384705, 0.026062012, -0.027908325, -0.010772705, -0.017105103, 0.018875122, -0.012756348, -0.0054740906, -0.0026073456, -0.016983032, -0.028289795, -0.009292603, -0.009674072, -0.006866455, -0.022109985, -0.0138549805, -0.008049011, 0.0005106926, 0.00868988, -0.025650024, -0.004333496, -0.02709961, -0.015930176, 0.020477295, -0.024383545, 0.0040283203, -0.007030487, -0.010749817, -0.0042648315, -0.044677734, -0.02444458, 0.016555786, -0.008651733, -0.0725708, -0.0357666, -0.0826416, -0.0016098022, -0.0026359558, -0.036315918, 0.011505127, 0.050994873, -0.037353516, -0.010185242, -0.03012085, 0.0041160583, 0.028320312, 0.061462402, 0.005622864, -0.05593872, -0.052612305, -0.080322266, -0.060943604, 0.051513672, -0.022994995, -0.019332886, 0.0053863525, 0.022369385, 0.032714844, -0.010673523, 0.029953003, 0.027542114, -0.013710022, 0.013336182, 0.07684326, -0.0038204193, -0.00605011, -0.017028809, 0.041534424, -0.032104492, -0.023651123, 0.02519226, 0.028198242, -0.042785645, -0.012672424, -0.02798462, -0.008872986, -0.099365234, 0.016357422, 0.00021100044, -0.029708862, 0.015167236, -0.053741455, -0.033355713, -0.0524292, 0.013916016, 0.07342529, 0.0057754517, 0.0074043274, -0.013702393, 0.037139893, 6.5505505e-05, 0.009986877, 0.012931824, -0.0032520294, -0.004512787, -0.0090789795, 0.0095825195, -0.00680542, 0.011123657, 0.0236969, -0.022628784, 0.01914978, -0.026641846, 0.004005432, -0.011558533, 0.016799927, -0.012504578, -0.0020961761, -0.058929443, -0.027999878, 0.008605957, 0.022857666, 0.034332275, -0.0032520294, 0.044006348, -0.0023288727, -0.008956909, -0.033691406, -0.023513794, 0.051086426, -0.027816772, 0.00945282, -0.060760498, -0.033447266, -0.015182495, 0.013206482, -0.0029888153, 0.011886597, -0.021987915, 0.0043144226, -0.020324707, 0.023361206, 0.008361816, 0.048858643, 0.031799316, -0.05218506, -0.0440979, -0.04083252, -0.009933472, 0.009483337, -0.0017290115, -0.0015029907, 0.0039749146, 0.0034160614, -0.02243042, -0.0024852753, -0.0051078796, 0.036346436, 0.015052795, -0.030334473, 0.015701294, -0.02709961, 0.034118652, 0.015342712, -0.0184021, -0.05984497, -0.03564453, 0.005168915, -0.07824707, 0.09100342, 0.034606934, -0.011459351, 0.0647583, 0.046966553, -0.011886597, 0.0071411133, 0.02041626, -0.008972168, 0.008049011, 0.010536194, -0.0132369995, -0.010795593, 0.012809753, -0.013473511, 0.028244019, 0.013504028, -0.04067993, 0.013725281, 0.022384644, -0.047302246, -0.013839722, -0.0045280457, 0.022827148, 0.00082445145, 0.003276825, 0.0043563843, -0.00674057, -0.028686523, 0.051483154, 0.012588501, -0.017181396, -0.034118652, 0.00907135, -0.0040512085, -0.034576416, 0.008407593, -0.017593384, -0.018249512, -0.009269714, 0.035308838, 0.028213501, 0.014122009, -0.059326172, 0.0146484375, -0.00044465065, 0.036254883, 0.049194336, -0.016159058, 0.044433594, -0.008590698, -0.023071289, -0.0088272095, -0.008300781, 0.022247314, -0.035888672, -0.07366943, -0.014350891, 0.0015010834, 0.007259369, -0.042510986, -0.012680054, 0.0017261505, -0.0063591003, 0.008430481, -0.026000977, -0.023345947, 0.011138916, 0.021530151, -0.08477783, -0.042297363, -0.004535675, -0.01184845, -0.022537231, 0.020202637, -0.0088272095, -0.028671265, -0.010620117, 0.027786255, -0.06970215, 0.019439697, -0.026473999, -0.010879517, 0.053375244, 0.019989014, 0.07861328, -0.031021118, 0.025054932, -0.011253357, 0.092041016, -0.007637024, 0.040039062, -0.045654297, -0.03338623, -0.030197144, 0.047607422, 0.04815674, -0.041259766, 0.033325195, 0.0071907043, -0.059387207, -0.062561035, 0.02607727, 0.020263672, -0.0039253235, -0.054595947, -0.0038719177, 0.06768799, -0.01701355, 0.005203247, -0.0014028549, 0.025604248, 0.03652954, -0.013504028, -0.1015625, -0.06304932, 0.003288269, -0.024139404, -0.014549255, -0.017181396, -0.033355713, 0.056274414, 0.011894226, 0.04446411, -0.07751465, -0.0036888123, 0.0423584, -0.0028038025, -0.0048980713, -0.014877319, -0.009140015, 0.005153656, 0.03387451, -0.04309082, 0.058624268, 0.0736084, -0.041778564, -0.0017318726, 0.04763794, -0.030426025, -0.01348114, 0.00712204, -0.004463196, -0.045074463, -0.010009766, -0.011756897, 0.017684937, 0.010383606, 0.004508972, 0.021392822, -0.0178833, 0.03366089, -6.490946e-05, 0.009674072, -0.046325684, -0.028579712, 0.05581665, 0.0070114136, 0.043395996, 0.0107803345, -0.033203125, 0.026947021, -0.021652222, -0.024993896, -0.0073432922, -0.005760193, -0.026748657, 0.009033203, 0.009544373, -0.02671814, 0.004501343, 0.01676941, 0.012107849, -0.021743774, -0.019104004, 0.051940918, -0.019744873, -0.023376465, 0.066467285, -0.021392822, 0.042541504, 0.00762558, -0.028152466, -0.04284668, 0.017837524, -0.045135498, 0.032470703, 0.006137848, -0.06762695, 0.06008911, 0.016036987, 0.012588501, -0.034088135, 0.057922363, -0.021560669, 0.0007414818, -0.04385376, -0.016113281, -0.014373779, 0.0070610046, 0.02178955, -0.034118652, 0.047058105, -0.01158905, -0.035186768, 0.006832123, -0.01473999, -0.020080566, 0.018127441, -0.013870239, -0.015548706, 0.013557434, -0.0022907257, -0.037597656, 0.0077667236, 0.0014562607, -0.014518738, 0.012840271, 0.0009059906, -0.024307251, -0.031829834, -0.009963989, -0.010147095, -0.048187256, 0.032348633, -0.010810852, 0.0009069443, 0.012237549, 0.010223389, -0.013557434, -0.0028190613, 0.00014305115, -0.021347046, -0.033172607, 0.011497498, -0.040283203, 0.011131287, -0.0513916, 0.04849243, 0.0070228577, -0.046691895, 0.0042037964, 0.006374359, -0.09136963, -0.031082153, -0.0030517578, -0.00030136108, 0.019577026, -0.029052734, 0.061187744, -0.025283813, -0.031097412, -0.06976318, 0.059570312, -0.01361084, 0.004940033, 0.08514404, 0.08856201, 0.0007252693, 0.051757812, -0.0035362244, -0.02192688, 0.029525757, 0.007537842, -0.05810547, -0.004524231, -0.017166138, -0.005596161, -0.0021591187, -0.007068634, -0.017349243, 0.04397583, -0.009284973, -0.04321289, -0.026031494, -0.017410278, 0.020477295, -0.04714966, -0.002790451, -0.027374268, 0.0028438568, 0.004180908, -0.0051116943, -0.022415161, 0.0067749023, 0.035369873, 0.016937256, 0.0009226799, -0.009483337, 0.016693115, 0.023269653, -0.0025939941, 0.041534424, 0.010597229, -0.017578125, -0.010139465, 0.024047852, -0.023208618, 0.03930664, -0.014099121, 0.006465912, -0.029800415, -0.0015382767, 0.057739258, 0.021026611, -0.024490356, 0.03353882, 0.04626465, 0.023117065, 0.016235352, -0.015357971, 0.026611328, 0.016021729, -0.066467285, -0.0042762756, 0.029159546, -0.030380249, -0.046051025, -0.07928467, 0.0071258545, 0.0015592575, 0.02470398, 0.054748535, 0.008522034, -0.0058898926, -0.00018441677, 0.016616821, 0.016189575, 0.019638062, -0.0011672974, -0.028671265, -0.037078857, 0.013420105, 0.046813965, 0.017166138, 0.007911682, -0.012046814, -0.033233643, 0.016983032, -0.0022716522, 0.030014038, -0.033477783, 0.048675537, 0.010543823, -0.070007324, 1.9788742e-05, 0.012161255, 0.015670776, 0.006099701, -0.055511475, -0.009971619, -0.011985779, -0.0099105835, -0.019958496, 0.03668213, 0.012207031, 0.010986328, 0.002407074, 0.023803711, -0.030151367, -0.030654907, 0.06011963, -0.0132751465, 0.013076782, -0.00749588, -0.0619812, -0.0030403137, 0.030670166, -0.007858276, 0.0050239563, -0.009887695, 0.03375244, -0.00932312, -0.004207611, -0.015579224, 0.004131317, 0.047210693, -0.0029964447, 0.0009274483, 0.025344849, 0.032684326, 0.0036792755, 0.058441162, -0.009979248, 0.033355713, -0.013137817, 0.057159424, 0.030441284, 0.021896362, -0.059570312, -0.033569336, -0.00039434433, -0.015129089, 0.008132935, 0.019439697, 0.017608643, 0.038604736, 0.03225708, 0.06488037, 0.06109619, -0.013969421, 0.025314331, 0.06048584, -0.019744873, 0.00034832954, -0.0013246536, -0.008117676, -0.0010375977, -0.0048103333, -0.006614685, 0.040985107, 0.0073127747, 0.058929443, 0.0211792, -0.014595032, -0.031707764, 0.010627747, -0.0065231323, -0.026367188, 0.039093018, -0.042999268, -0.0009365082, -0.009902954, -0.02381897, -0.051330566, -0.035217285, -0.04812622, 0.02418518, -0.039855957, -0.014907837, 0.011657715, 0.005756378, -0.022628784, -0.04284668, 0.0043754578, 0.004600525, -0.006668091, -0.018432617, 0.037994385, -0.028671265, -0.026382446, -0.037475586, 0.023590088, -0.07904053, -0.026290894, -0.020690918, 0.01966858, 0.019882202, -0.0069236755, 0.039978027, 0.03451538, 0.020935059, -0.0008120537, -0.003030777, -0.019348145, -0.030426025, 0.051116943, 0.0035476685, -0.029724121, -0.009765625, 0.035064697, 0.023040771, -0.009483337, 0.041992188, -0.01424408, -0.079711914, -0.017852783, -0.028198242, 0.032806396, 0.027053833, -0.028579712, 0.023651123, -0.0073547363, -0.05911255, -0.00026726723, -0.007736206, 0.016357422, 0.0390625, 0.017471313, 0.04977417, 0.0034770966, -0.10253906, -0.055633545, -0.024841309, 0.017471313, 0.049102783, -0.020019531, 0.02947998, 0.030044556, -0.05886841, 0.044128418, 0.01424408, -0.0053138733, 0.023956299, 0.01675415, 0.009544373, 0.004547119, -0.029556274, 0.015281677, -0.010910034, -0.059265137, 0.017028809, -0.010429382, -0.021270752, -0.050842285, -0.030761719, 0.009941101, -0.054718018, -0.057434082, -0.010101318, -0.017501831, -0.032165527, 0.023483276, -0.0154953, 0.03286743, -0.029266357, -0.021362305, -0.017318726, 0.02015686, 0.0039787292, 0.0022354126, -0.036315918, 0.05899048, 0.01399231, 0.06149292, -0.02909851, -0.07116699, -0.02696228, 0.0029964447, 0.03817749, 0.00051641464, 0.10687256, -0.03967285, 0.0053367615, 0.026504517, -0.024017334, -0.017547607, -0.003250122, 0.037475586, -0.0069084167, 0.0056266785]}, "B07JZV24HV": {"id": "B07JZV24HV", "original": "Brand: Char-Broil\nName: Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Power Source: Propane/ liquid petroleum gas. The propane tank is not included.\nExclusive Stainless Steel finish for increased style and durability\nReliable electric ignition to fire up your grill and 10, 000 BTU side burner\nPorcelain-coated grease pan is durable and can be removed for easy cleaning\nStainless Steel burners emit flame from the top to allow for even cooking\n", "metadata": {"Name": "Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel", "Brand": "Char-Broil", "Description": "", "Features": "Power Source: Propane/ liquid petroleum gas. The propane tank is not included.\nExclusive Stainless Steel finish for increased style and durability\nReliable electric ignition to fire up your grill and 10, 000 BTU side burner\nPorcelain-coated grease pan is durable and can be removed for easy cleaning\nStainless Steel burners emit flame from the top to allow for even cooking", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0132369995, 0.0043678284, -0.044921875, -0.046081543, 0.0007662773, -0.0098724365, -0.032958984, 0.02796936, -0.014144897, -0.0076522827, 0.02368164, -0.003791809, -0.019256592, -0.05407715, 0.018249512, -0.035339355, 0.014091492, 0.03729248, 0.01663208, -0.032958984, 0.009788513, -0.02204895, -0.008621216, 0.06329346, 0.056488037, -0.012123108, -0.023117065, 0.02835083, 0.033843994, 0.026763916, 0.03744507, -0.050445557, 0.05227661, 0.00017511845, -0.03869629, -0.03778076, 0.033172607, -0.029815674, -0.061462402, 0.046905518, 0.010688782, 0.0036125183, 0.023101807, -0.026351929, -0.015808105, -0.007545471, 0.021224976, -0.009147644, 0.022750854, -0.033966064, 0.00983429, 0.016494751, 0.011016846, -0.0020694733, -0.022521973, 0.008178711, 0.048217773, -0.02760315, 0.01612854, -0.058441162, -0.021392822, 0.009643555, 0.046783447, 0.033050537, -0.05026245, 0.013206482, 0.099609375, -0.037200928, -0.025924683, -0.064331055, 0.006542206, 0.03640747, 0.016677856, -0.00045609474, -0.015823364, -0.01687622, 0.012550354, -0.0107040405, 0.036987305, 0.0035552979, -0.05621338, -0.031158447, -0.022613525, -0.017669678, -0.009162903, -0.008926392, -0.026870728, 0.0015792847, -0.010063171, -0.051483154, -0.015640259, -0.015472412, -0.043945312, 0.02923584, -0.022064209, -0.008293152, -0.012374878, -0.06616211, 0.041168213, 0.010696411, 0.025497437, -0.037353516, 0.017959595, 0.000521183, -0.015403748, 0.04534912, -0.0065231323, 0.040161133, 0.010215759, 0.008110046, 0.008705139, -0.07128906, -0.014892578, -0.023086548, -0.03942871, 0.03363037, -0.01600647, -0.020431519, -0.0038757324, -0.019607544, -0.035614014, -0.007587433, -0.0390625, 0.021240234, 0.019058228, 0.017593384, 0.015365601, 0.029830933, -0.052642822, 0.02381897, -0.038879395, -0.011764526, 0.081970215, 0.1138916, 0.04776001, -0.018035889, -0.0005979538, 0.00043654442, 0.010551453, -0.014709473, 0.029525757, -0.027801514, 0.008483887, 0.03555298, -0.022109985, 0.048461914, 0.03213501, -0.016998291, -0.033843994, -0.06274414, -0.022247314, -0.013221741, 0.039215088, 0.023223877, -0.08190918, 0.033081055, -0.034210205, 0.0028438568, -0.056274414, -0.0368042, 0.004688263, -0.018325806, -0.03918457, 0.03111267, -0.00038552284, 0.037841797, 0.034606934, 0.015327454, 0.011192322, 0.048858643, -0.010559082, 0.009407043, 0.02494812, 0.0005955696, -0.024932861, -0.010276794, -0.0039901733, 0.04296875, 0.03314209, -0.07531738, -0.061431885, -0.05831909, 0.118652344, -0.05001831, -0.0036087036, -0.007408142, 0.036254883, 0.039245605, -0.013008118, 0.011138916, 0.0209198, 0.009933472, -0.0066947937, -0.022598267, 0.009811401, -0.0011863708, -0.03741455, -0.0039901733, -0.019714355, -0.00052404404, 0.053253174, 0.023025513, -0.0132751465, 0.0038204193, -0.045715332, -0.006752014, 0.010597229, 0.0032424927, 0.022750854, 0.026229858, -0.0105896, 0.0012369156, 0.0031719208, -0.04071045, -0.028274536, 0.010627747, -0.007633209, 0.021270752, 0.027069092, 0.018600464, 0.03152466, 0.0035877228, 0.02406311, -0.015625, -0.011657715, 0.015975952, -0.033416748, 0.0107421875, 0.034362793, -0.030685425, 0.07647705, 0.027175903, 0.0637207, 0.08416748, 0.012016296, 0.009521484, 0.05480957, -0.022628784, 0.00082731247, -0.0151901245, 0.02810669, -0.0032806396, -0.018569946, -0.03967285, 0.014282227, -0.0021858215, 0.028793335, -0.04434204, -0.018875122, -0.0119018555, 0.023361206, -0.019683838, 0.039215088, 0.031829834, -0.022750854, 0.026046753, -0.011062622, 0.019836426, -0.024551392, 0.039154053, -0.013435364, 0.05822754, 0.029556274, 0.012329102, 0.0037250519, 0.0061302185, 0.0074806213, 0.013679504, -0.036956787, 0.0098724365, 0.024887085, 0.020889282, 8.028746e-05, 0.0017662048, 0.023422241, 0.006298065, -0.016906738, 0.010818481, 0.00932312, -0.014282227, 0.015533447, -0.010002136, 0.019866943, 0.0062561035, 0.04800415, 0.016204834, 0.026992798, 0.03488159, -0.04724121, -0.033172607, 0.017944336, -0.035339355, -0.04736328, -0.0036773682, -0.042144775, -0.035583496, 0.05960083, 0.042236328, -0.0014772415, 0.0015325546, 0.0058059692, 0.012863159, -0.03805542, -0.0017728806, -0.0017337799, -0.003610611, -0.005634308, -0.0013198853, -0.0070991516, -0.01828003, -0.015457153, 0.035003662, 0.040374756, 0.06286621, 0.03955078, -0.006175995, 0.052825928, 0.085754395, 0.02508545, -0.035339355, -0.034057617, 0.014930725, 0.003566742, -0.0048217773, 0.017150879, 0.0059509277, -0.0031337738, 0.011428833, -0.010467529, 0.0049209595, -0.05279541, -0.017044067, -0.022766113, 0.030044556, -0.02456665, 0.009033203, 0.0054969788, 0.023834229, -0.01638794, -0.039123535, -0.006450653, -0.0019836426, -0.016326904, -0.026931763, -0.029067993, -0.02281189, 0.05142212, 0.004589081, 0.020095825, 0.02420044, 0.0009975433, -0.020950317, 0.008682251, 0.015838623, 0.030456543, -0.016967773, -0.026870728, 0.0046157837, -0.013420105, -0.051696777, -0.025314331, -0.027526855, -0.0546875, 0.014190674, 0.05404663, -0.008041382, -0.040985107, 0.012199402, 0.004016876, 0.0138549805, 0.035064697, 0.02128601, -0.0793457, -0.024765015, -0.031585693, -0.010520935, 0.03286743, -0.035339355, -0.0005888939, 0.012268066, -0.005542755, 0.014137268, -0.00073480606, -0.002117157, 0.014732361, -0.006679535, -0.031311035, 0.03933716, 0.0011463165, 0.0011491776, -0.003604889, 0.038360596, 0.019607544, -0.008262634, 0.0126953125, -0.0021972656, -0.04498291, 0.0033493042, -0.058135986, 0.008972168, -0.09851074, -0.012496948, -0.0027217865, -0.051483154, 0.0052223206, -0.060699463, -0.05496216, -0.054901123, -0.0021514893, 0.04574585, -0.019622803, 0.0011301041, -0.04272461, -0.0022563934, 0.01473999, -0.0034770966, 0.018371582, -0.009536743, -0.008666992, 0.0049819946, 0.040740967, -0.035858154, 0.04031372, 0.036346436, -0.00969696, 0.0011968613, -0.016418457, 0.009651184, -0.072387695, 0.009269714, 0.0032424927, -0.027511597, -0.031799316, -0.014511108, -0.0054740906, 0.017059326, -0.0053253174, -0.013633728, 0.010322571, -0.021209717, -0.024780273, -0.027694702, 0.010482788, 0.032714844, 0.0045700073, -0.0021343231, -0.048431396, -0.011177063, -0.0051078796, -0.026107788, 0.0042037964, -0.00356102, 0.03778076, 0.021743774, -0.014053345, 0.079589844, 0.030075073, 0.05239868, -0.01727295, -0.013320923, -0.019836426, -0.05303955, 0.045196533, -0.0033168793, -0.010261536, -0.00187397, -0.010055542, 0.04269409, -0.0008034706, -0.013160706, 0.021575928, 0.049560547, 0.062927246, -0.012870789, -0.019470215, -0.034210205, 0.024475098, 0.0054740906, -0.019592285, -0.03491211, -0.047912598, 0.0067825317, -0.09490967, 0.12347412, 0.057800293, -0.03338623, 0.10668945, 0.04916382, 0.008346558, -0.017593384, -0.011993408, -0.01826477, -0.011528015, 0.052459717, 0.0046806335, -0.007286072, 0.019866943, -0.018157959, 0.024734497, 0.017623901, -0.0670166, 0.032165527, 0.011711121, -0.04260254, -0.012481689, 0.009864807, 0.00051021576, -0.030807495, 0.0023708344, 0.018173218, -0.051513672, -0.034240723, 0.03640747, 0.015792847, -0.020767212, -0.016403198, -0.01335907, 0.00075244904, -0.044403076, 0.0043563843, 0.0026931763, 0.021972656, -0.03479004, 0.038024902, 0.005153656, 0.013442993, -0.068237305, 0.011878967, -0.043304443, -0.006996155, 0.03491211, 0.030639648, 0.03338623, -0.00390625, -0.008178711, -0.0015621185, -0.018325806, 0.0052948, -0.024093628, -0.050964355, 0.010673523, -0.002336502, -0.012611389, -0.03793335, -0.021453857, 0.022537231, -0.024459839, -0.007171631, -0.0021781921, -0.043945312, 0.014099121, 0.03302002, -0.07171631, -0.028533936, -0.007221222, -0.040100098, -0.02709961, 0.023834229, -0.00617218, -0.022262573, -0.0065307617, 0.02633667, -0.036224365, -0.0025234222, -0.030563354, 0.0028076172, 0.011375427, -0.0013275146, 0.030227661, 0.008155823, -0.022033691, -0.012321472, 0.08502197, -0.026428223, -0.02178955, -0.07373047, -0.040374756, -0.0031471252, 0.003376007, 0.03640747, -0.020874023, 0.028182983, -0.022247314, -0.023162842, -0.06262207, -0.004447937, -0.0030403137, -0.03237915, -0.06628418, -0.007572174, 0.09716797, -0.010734558, 0.0074272156, 0.008995056, 0.011802673, 0.005504608, -0.019699097, -0.058166504, 0.011177063, -0.0013170242, -0.021133423, 0.006690979, -0.0023651123, -0.005947113, 0.031173706, 0.05831909, 0.04486084, -0.016830444, 0.0015764236, 0.0016231537, 0.0022182465, -0.014305115, -0.011459351, 0.022338867, -0.01651001, -0.01586914, -0.08831787, 0.094177246, 0.06500244, -0.00548172, 0.005428314, -0.008399963, -0.023345947, -0.039733887, 0.008666992, 0.014152527, -0.022506714, -0.016448975, -0.030288696, -0.0010824203, -0.036590576, -0.008972168, 0.0027370453, 0.019073486, 0.027328491, -0.029418945, -0.0070266724, -0.026672363, -0.014015198, 0.012962341, -0.008049011, 0.027435303, -0.0009627342, -0.029846191, 0.032684326, -0.035217285, -0.03668213, 0.009063721, 0.0035152435, -0.018035889, 0.0075187683, 0.00541687, -0.029129028, 0.017333984, 0.03955078, 0.00466156, -0.02017212, -0.009124756, 0.029251099, -0.013771057, 0.0017585754, 0.07281494, -0.030929565, 0.026992798, 0.051330566, -0.010108948, 0.017074585, 0.026809692, -0.010307312, 0.025009155, -0.007144928, -0.01828003, 0.0046463013, -0.0058174133, 0.005382538, 0.0035133362, 0.06878662, 0.003955841, 0.020095825, -0.050598145, 0.009399414, 0.00484848, 0.013206482, 0.0076904297, -0.031829834, 0.038360596, -0.022735596, -0.013534546, -0.012290955, 0.005218506, -0.026779175, 0.011108398, -0.03366089, 0.013969421, 0.011558533, -0.01927185, -0.044921875, 0.014564514, -0.018859863, 0.018600464, 0.030136108, -0.0053977966, -0.018081665, -0.035491943, -0.0112838745, -0.0073890686, -0.019622803, -0.008644104, 0.0022697449, -0.0038852692, -0.002664566, 0.020111084, 3.8206577e-05, 0.0019798279, 0.0034561157, -0.028503418, -0.010215759, 0.013893127, -0.011978149, 0.0104599, -0.039398193, 0.015731812, 0.02003479, -0.031951904, 0.0045318604, 0.033172607, -0.060638428, -0.016601562, 0.007331848, 0.009063721, -0.00756073, -0.031951904, 0.0748291, -0.04650879, -0.05215454, -0.038024902, 0.041656494, -0.024429321, -0.026748657, 0.06488037, 0.04953003, 0.0026187897, 0.021087646, -0.019165039, -0.0496521, 0.0025920868, 0.0024051666, -0.05911255, -0.047729492, -0.03945923, -0.018554688, 0.01576233, -0.024032593, -0.011917114, 0.03869629, -0.009399414, -0.038360596, -0.012992859, -0.020385742, 0.01612854, -0.025741577, 0.011756897, -0.021591187, -0.016860962, -0.023086548, -0.044921875, -0.08807373, -0.03274536, -0.00079250336, 0.010116577, 0.017990112, 0.0003106594, 0.008087158, 0.030929565, -0.015701294, 0.018600464, 0.013885498, -0.0074539185, -0.0043258667, 0.039154053, -0.008460999, 0.04244995, -0.070495605, -0.010749817, -0.048339844, 0.036590576, 0.036468506, 0.040527344, -0.045440674, -0.00039434433, 0.03665161, 0.031234741, 0.026245117, 0.012580872, 0.035217285, 0.011856079, -0.021713257, -0.0005426407, 0.019729614, -0.027557373, -0.054748535, -0.027236938, -0.060699463, 0.023254395, -0.013656616, 0.035186768, -0.054351807, 0.047332764, -0.035705566, -0.0065841675, 0.008583069, -0.024902344, 0.023483276, -0.010467529, -0.036743164, -0.0118255615, 0.035614014, 0.032684326, -0.0070724487, -0.037475586, -0.021484375, 0.017349243, -0.0038814545, 0.022018433, -0.059936523, 0.036315918, 0.0040397644, -0.064575195, 0.00033307076, 0.037322998, 0.0017766953, 0.0074920654, -0.052642822, -0.0076026917, -0.02381897, 0.021316528, 0.015457153, 0.00023686886, 0.017944336, 0.023086548, 0.0050354004, -0.009712219, 0.0138168335, -0.0006608963, 0.007335663, 0.0036735535, 0.007511139, -0.008880615, -0.04019165, 0.021697998, 0.039001465, 0.005317688, 0.028015137, -0.030532837, 0.030517578, -0.033996582, 0.026473999, -0.023254395, -0.038024902, -0.018493652, 0.00016629696, 0.0135269165, 0.04043579, -0.0031929016, 0.027008057, -0.004508972, -0.05908203, 0.049621582, -0.070373535, 0.06286621, 0.034698486, 0.031433105, -0.041503906, -0.033325195, -0.019821167, 0.006790161, -0.017242432, 0.048461914, -0.0037555695, 0.010292053, 0.02279663, 0.02696228, 0.057495117, -0.019546509, 0.02973938, -0.018234253, 0.014671326, 0.056518555, 0.0073547363, -0.03387451, -0.028381348, 0.0015640259, 0.0050582886, 0.0018730164, -0.017059326, -0.009780884, 0.028503418, 0.0052261353, -0.037475586, 0.0030593872, 0.015701294, -0.041625977, 0.023040771, -0.037261963, -0.0028743744, -0.00415802, -0.03189087, -0.028900146, -0.0017337799, -0.022949219, 0.013931274, 0.020858765, -0.058654785, -0.024536133, 0.03100586, -0.036010742, -0.033966064, -0.027008057, 0.0028057098, 0.028457642, 0.00166893, 0.03189087, -0.03250122, -0.054382324, -0.03213501, 0.04208374, -0.07775879, -0.04901123, 0.038513184, -0.013084412, 0.011009216, 0.0048103333, 0.022460938, 0.045959473, 0.04473877, -0.01725769, 0.019515991, -0.019546509, -0.0062332153, -0.02218628, -0.0038490295, -0.040649414, -0.017974854, 0.033172607, -0.03564453, 0.0045547485, 4.8041344e-05, -0.0519104, -0.05380249, -0.021469116, -0.0014104843, -0.030776978, -0.048583984, 0.025894165, -0.024993896, 0.015853882, -0.039001465, -0.021118164, -0.0016126633, 0.059295654, 0.05871582, -0.008224487, 0.013710022, -0.056396484, -0.10015869, -0.06530762, -0.030426025, 0.06500244, 0.049621582, 0.014526367, 0.0071640015, 0.020507812, -0.022003174, 0.014221191, -0.016952515, 0.005809784, 0.0101623535, -0.017349243, 0.030166626, -0.0075035095, -0.0184021, 0.0076293945, -0.03414917, -0.019500732, 0.03579712, 0.034851074, -0.028411865, -0.0060920715, -0.026809692, -0.0059547424, 0.02078247, -0.029190063, 0.0045280457, -0.0062942505, -0.005958557, 0.010185242, 0.015167236, -0.0109939575, 0.01537323, -0.016326904, -0.036071777, 0.014923096, 0.04660034, 0.006916046, -0.041748047, 0.034820557, 0.03390503, 0.02784729, 0.012641907, -0.0847168, -0.008033752, 0.009803772, 0.027359009, -0.04421997, 0.04486084, -0.059295654, 0.012931824, 0.030090332, -0.02067566, -0.015037537, 0.01084137, 0.04949951, 0.0016889572, 0.009132385]}, "B00BFPMLI8": {"id": "B00BFPMLI8", "original": "Brand: Char-Broil\nName: Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill\nDescription: \nFeatures: Road worthy and built to travel easy\nCast aluminum firebox and lid with dual stainless steel latches and temp gauge\nHigh-impact frame with legs and carry handles\nNo flare-up TRU-Infrared cooking system\n200 square inch stainless steel grilling grate\n", "metadata": {"Name": "Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill", "Brand": "Char-Broil", "Description": "", "Features": "Road worthy and built to travel easy\nCast aluminum firebox and lid with dual stainless steel latches and temp gauge\nHigh-impact frame with legs and carry handles\nNo flare-up TRU-Infrared cooking system\n200 square inch stainless steel grilling grate", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.042938232, -0.016525269, -0.024017334, -0.013504028, -0.025039673, 0.0046844482, -0.02458191, 0.01109314, -0.0019760132, 0.012435913, -0.02671814, 0.018371582, -0.0181427, -0.032043457, 0.00062942505, -0.03338623, 0.016479492, 0.02670288, -0.0074806213, -0.023773193, -0.0033931732, -0.016983032, -0.029769897, 0.09460449, 0.05355835, -0.020095825, -0.048797607, 0.012573242, 0.029449463, 0.010368347, 0.020202637, -0.008636475, 0.039093018, 0.020401001, -0.054992676, -0.005470276, -0.0019226074, 0.004890442, -0.049713135, 0.041778564, 0.0019521713, 0.01259613, 0.022247314, 0.00052785873, -0.024017334, -0.022857666, 0.024551392, -0.0011119843, 0.037872314, 0.010353088, -0.013908386, 0.04776001, -0.016586304, -0.027389526, 0.00843811, 0.038238525, 0.047210693, -0.0413208, 0.011314392, -0.05999756, -0.022827148, -0.0017499924, 0.0501709, 0.031402588, -0.03881836, 0.014328003, 0.10534668, -0.026916504, -0.008125305, -0.04171753, 0.0026130676, 0.03375244, 0.02319336, 0.0010232925, -0.009246826, -0.0390625, 0.007522583, -0.01965332, 0.03881836, -0.0010519028, -0.02809143, -0.03918457, -0.0385437, -0.010238647, 0.013656616, 0.00894928, -0.010574341, -0.01676941, -0.0015535355, -0.05496216, -0.0074691772, -0.021942139, -0.051574707, 0.031921387, -0.01033783, -0.03427124, -0.037841797, -0.06378174, 0.015731812, 0.026473999, 0.007904053, -0.0206604, 0.017532349, -0.00051021576, -0.029296875, 0.050048828, 0.024032593, 0.029327393, -0.014816284, -0.011024475, -0.0018348694, -0.017959595, 0.012931824, -0.0029315948, -0.0463562, -0.015396118, -0.021270752, -0.009643555, -0.0034599304, -0.018371582, -0.021392822, -0.031082153, 0.021896362, 0.03704834, 0.033172607, 0.029815674, -0.024047852, 0.008804321, -0.037994385, 0.039276123, -0.020050049, 0.0009660721, 0.038513184, 0.061676025, 0.014923096, -0.030654907, -0.03744507, 0.0121154785, 0.014190674, -0.013557434, 0.03640747, -0.032562256, 0.009437561, 0.05529785, -0.070007324, 0.041259766, 0.024749756, -0.0025482178, -0.03225708, -0.09698486, -0.017456055, -0.018188477, 0.044677734, 0.03668213, -0.07055664, 0.010612488, 0.0032482147, -0.019363403, -0.04876709, -0.06774902, -0.0042915344, -0.01512146, 0.0054359436, -0.014541626, -0.049468994, 0.026412964, -0.0012340546, -0.011779785, 0.01953125, 0.03503418, -0.0022220612, -0.01146698, 0.0056915283, 0.0079193115, -0.0047569275, 0.0012073517, 0.014945984, 0.034820557, 0.038482666, -0.071777344, -0.060516357, -0.04144287, 0.123046875, -0.05239868, 0.0053138733, -0.019088745, 0.04623413, 0.01979065, -0.027511597, 0.024139404, 0.033843994, 0.034454346, -0.042144775, -0.03289795, 0.021133423, 0.022583008, -0.040924072, -0.00258255, 0.006614685, 0.0054092407, 0.039215088, 0.010223389, -0.027420044, 0.00868988, -0.038085938, -0.031036377, 0.011940002, -0.008369446, 0.046691895, 0.019104004, -0.022506714, 0.0017290115, 0.011054993, -0.0814209, -0.04159546, 0.043792725, -0.00484848, 0.021194458, 0.007331848, 0.022491455, 0.030029297, 0.0015697479, 0.018341064, 0.016220093, 0.004470825, -0.010116577, -0.023513794, 0.005138397, 0.041900635, -0.02810669, 0.069885254, 0.04067993, 0.042266846, 0.046295166, 0.0054512024, 0.032165527, 0.07342529, -0.009971619, -0.01084137, -0.014190674, -0.0015077591, -0.03866577, -0.02583313, 0.021850586, 0.003791809, 0.00022757053, -0.00026392937, 0.01953125, -0.03463745, -0.012451172, 0.027313232, -0.0068473816, 0.032165527, 0.05041504, -0.03250122, 0.027252197, 0.0030765533, 0.053985596, -0.029556274, 0.04144287, -0.04043579, 0.08483887, 0.06768799, -0.00023424625, 0.0053977966, -0.014427185, 0.019226074, 0.027191162, -0.026016235, -0.017150879, 0.020523071, 0.030303955, -3.9815903e-05, 0.018447876, 0.037841797, -0.0032157898, -0.029190063, -0.0025615692, 0.012214661, -0.0026187897, 0.022079468, 0.0003437996, 0.0006146431, 1.692772e-05, 0.03189087, 0.00055933, 0.013206482, 0.033416748, -0.030166626, -0.040893555, 0.0003490448, -0.0074920654, -0.013206482, -0.004310608, -0.017242432, -0.03579712, 0.042785645, 0.0211792, 0.02130127, -0.0368042, -0.054473877, 0.0026226044, -0.044036865, -0.005355835, -0.028869629, 0.037384033, -0.045898438, 0.02986145, 0.017501831, -0.06738281, 0.058746338, 0.02482605, 0.026626587, 0.016937256, 0.031143188, 0.011756897, 0.023361206, 0.04449463, 0.009109497, -0.033813477, 0.00055933, -0.022994995, -0.0039405823, 0.014884949, -0.008605957, -0.010284424, 0.02507019, 0.0016260147, -0.029724121, 0.008148193, -0.032043457, -0.031921387, -0.018447876, 0.02293396, -0.018203735, 0.013977051, 0.009414673, -0.018234253, -0.01574707, -0.00831604, 0.011100769, -0.03189087, 0.011695862, -0.022216797, -0.018035889, -0.04360962, 0.015640259, -0.002714157, 0.0033550262, 0.012496948, 0.012535095, 0.007419586, 0.012870789, -0.0031147003, 0.01638794, -0.02885437, -0.030593872, -0.012763977, -0.04309082, -0.06237793, -0.0031147003, -0.007446289, -0.03817749, 0.00033140182, 0.04953003, -0.028076172, -0.019897461, -0.018676758, -0.030136108, -9.286404e-05, 0.010284424, 0.01625061, -0.09832764, -0.030029297, -0.04248047, 0.025177002, 0.014564514, -0.04714966, -0.023834229, -0.016296387, -0.031143188, -0.011550903, -0.003955841, 0.007850647, 0.02281189, -0.0027484894, 0.011116028, 0.057861328, 0.009757996, -0.013763428, 0.010406494, 0.038085938, -0.03213501, -0.010604858, 0.03265381, 0.009971619, -0.024032593, -6.377697e-05, -0.07116699, -0.013717651, -0.09875488, -0.0231781, -0.015823364, -0.053009033, 0.011787415, -0.077819824, -0.0385437, -0.06402588, 0.017715454, 0.062561035, -0.0052986145, 0.01096344, -0.012664795, 0.012870789, -0.0017757416, 0.009773254, 0.032684326, -0.018661499, 0.023147583, -0.0119018555, 0.014381409, -0.017333984, 0.01158905, 0.025405884, -0.032196045, 0.019165039, -0.045410156, 0.012306213, -0.04824829, 0.010253906, -0.024307251, -0.0012273788, 0.01007843, 0.013687134, -0.055999756, -0.0031929016, -0.009681702, -0.030517578, 0.049316406, -0.06304932, -0.05697632, -0.039794922, 0.009994507, 0.016433716, 0.015396118, -0.011230469, -0.040374756, -0.043945312, -0.04232788, -0.014183044, 0.0029277802, 0.012420654, -0.0061035156, 0.025512695, -0.0060920715, 0.039245605, 0.007972717, 0.039367676, 0.020751953, -0.035736084, -0.046203613, -0.03390503, 0.009849548, -0.014785767, -0.03050232, -0.0038795471, 0.023590088, 0.022247314, -0.0027008057, -0.013969421, -0.010658264, 0.055541992, 0.024932861, -0.030151367, -0.005420685, -0.046051025, 0.031311035, 0.015625, 0.017669678, -0.037353516, -0.051452637, 0.0065307617, -0.092285156, 0.08660889, 0.074035645, -0.04168701, 0.095214844, 0.02999878, 0.0014781952, 0.011444092, 0.0038814545, -0.0129852295, 0.0040359497, 0.053649902, -0.01927185, 0.0076522827, 0.01939392, -0.026016235, 0.03668213, 0.035491943, -0.06561279, 0.02859497, 0.0206604, -0.06652832, -0.009895325, -0.008758545, 0.00409317, -0.016647339, 0.0011768341, 0.02432251, -0.031677246, -0.030761719, 0.03817749, 0.0103302, -0.010139465, 0.009559631, 0.014190674, -0.0007972717, -0.015510559, -0.00995636, -0.024902344, 0.029144287, -0.030700684, 0.051849365, -0.0066947937, -0.0009355545, -0.050994873, 0.026168823, -0.034973145, -0.006855011, 0.04055786, 0.0060157776, 0.052642822, 0.021514893, -0.029205322, 0.016433716, -0.009857178, 0.00028967857, 0.010536194, -0.035888672, 0.03643799, 0.053649902, -0.013031006, -0.020324707, -0.0039253235, -0.021606445, -0.01713562, -0.032562256, 0.02658081, -0.0413208, -0.015930176, 0.0011014938, -0.08099365, -0.05203247, -0.028182983, -0.015106201, -0.011024475, 0.0362854, -0.008453369, -0.06958008, 0.01902771, 0.031463623, -0.039886475, -0.02684021, -0.011146545, -0.0025081635, 0.036071777, -0.0032997131, 0.012237549, -0.012481689, -0.035125732, 0.0078048706, 0.044158936, -0.034454346, 0.019454956, -0.043914795, -0.04055786, -0.0065345764, 0.007801056, 0.03878784, -0.041900635, 0.022079468, -0.016036987, -0.047210693, -0.022964478, -0.032989502, 0.0032615662, -0.04849243, -0.048065186, -0.021621704, 0.08087158, -0.032928467, 0.018035889, -0.009796143, -0.014541626, -0.0057907104, 0.0021362305, -0.022613525, 0.00037527084, -0.0011138916, -0.0098724365, 0.014457703, 0.0044288635, -0.0077323914, 0.007843018, 0.024276733, 0.0074882507, -0.009994507, -0.007003784, -0.04724121, 0.018005371, 0.0070495605, -0.043273926, 0.039154053, -0.053466797, -0.029922485, -0.06427002, 0.08630371, 0.07293701, -0.0041160583, 0.010826111, 0.011238098, -0.01637268, -0.04550171, 0.011245728, -0.005859375, -0.0055122375, -0.0019683838, -0.023788452, -0.01424408, -0.028518677, -0.020736694, 0.0062065125, 0.01084137, 0.04083252, -0.009178162, 0.0050964355, 3.6478043e-05, -0.023223877, 0.010009766, -0.0004720688, 0.029693604, 0.0031661987, -0.054534912, 0.04714966, -0.040222168, -0.0463562, 0.012519836, -0.0008864403, -0.00844574, 0.026229858, 0.0121536255, -0.0635376, 0.051361084, 0.036468506, 0.032592773, -0.0056610107, 0.0053634644, 0.01033783, -0.0011005402, 0.020401001, 0.064208984, -0.03378296, 0.02407837, 0.027816772, -0.0035896301, 0.019989014, 0.02835083, -0.0146102905, 0.01512146, -0.00333786, -0.008483887, 0.02909851, -0.00945282, 0.00491333, -0.06384277, 0.039398193, -0.0058517456, -0.008384705, -0.06665039, 0.0064964294, 0.020996094, 0.01411438, 0.026550293, -0.040283203, 0.064086914, -0.00032019615, -0.029403687, 0.013656616, 0.02619934, -0.026382446, 0.009246826, 0.0072402954, 0.014732361, 0.011413574, 0.021469116, -0.035064697, -0.013328552, -0.036254883, 0.007980347, 0.008529663, -0.0059509277, 0.021499634, -0.028518677, -0.021392822, 0.020019531, 0.0052108765, -0.002040863, -0.009185791, -0.0055999756, 0.0036506653, 0.013572693, -0.011924744, -0.0045280457, 0.00043940544, -0.038085938, -0.014640808, 0.026290894, -0.01638794, 0.0061836243, -0.019714355, -0.0010414124, 0.02330017, -0.023208618, 0.014968872, 0.0031528473, -0.026428223, -0.015975952, 0.024230957, 0.03869629, -0.015701294, -0.011787415, 0.07757568, -0.04220581, -0.042114258, -0.02218628, 0.066223145, -0.0435791, -0.023757935, 0.06890869, 0.029205322, 0.020645142, 0.025344849, 0.005180359, -0.039978027, 0.001124382, 0.012329102, -0.06707764, -0.05065918, -0.030380249, -0.008613586, -0.013786316, -0.01878357, -0.0132751465, 0.036102295, -0.043426514, -0.07299805, 0.02760315, 0.0012865067, 0.022857666, -0.03366089, 0.008407593, -0.018707275, -0.008964539, -0.014633179, -0.0035629272, -0.048919678, -0.013168335, 0.018844604, 0.017562866, 0.022277832, -0.029388428, 0.016525269, 0.03677368, 0.005844116, 0.05114746, -0.0158844, 0.0050582886, -0.016235352, 0.056793213, 0.010307312, 0.010177612, -0.08270264, -0.027450562, -0.019836426, -0.020462036, 0.060028076, -0.0062713623, -0.023452759, 0.015129089, 0.072509766, 0.031173706, 0.022277832, 0.033447266, 0.053894043, -0.009185791, -0.072509766, 0.009803772, 0.03604126, -0.05279541, 0.0027885437, -0.032470703, -0.02658081, -0.004184723, -0.025405884, 0.00019264221, -0.05581665, 0.064819336, -0.031280518, 0.00299263, 0.007068634, -0.017623901, 0.06463623, -0.009002686, -0.013679504, -0.008453369, 0.037506104, 0.03942871, -0.021881104, -0.052734375, -0.0027236938, 0.023498535, -0.0073776245, 0.0231781, -0.019515991, 0.031585693, 0.0022068024, -0.0491333, 0.0011415482, -0.007385254, 0.018737793, -0.0010480881, -0.017623901, -0.0006456375, 0.015403748, 0.021591187, 0.003250122, -0.024108887, 0.01637268, 0.0109939575, -0.028762817, 0.003189087, -0.010536194, -0.021591187, 0.0012493134, 0.02859497, 0.018569946, 0.0033302307, -0.037139893, 0.015731812, 0.057281494, -0.0037441254, 0.023330688, -0.01727295, 0.024368286, -0.04675293, 0.00089645386, -0.03012085, -0.030975342, 0.009063721, 0.0038051605, 0.0026245117, 0.011230469, -0.022399902, -0.0040512085, 0.00491333, -0.07501221, 0.04940796, -0.047027588, 0.07513428, 0.031707764, 0.037841797, -0.039215088, -0.039794922, -0.019744873, 0.0113220215, -0.007858276, 0.059265137, -0.018798828, 0.055419922, 0.037994385, -0.0048294067, 0.056152344, -0.018325806, 0.011604309, -0.025512695, 0.035064697, 0.033233643, 0.04815674, -0.028335571, -0.018493652, 0.010612488, -0.0031089783, 0.030059814, -0.0063171387, 0.008239746, 0.0119018555, 0.008491516, -0.043182373, 0.027160645, -0.020629883, -0.038085938, 0.03451538, -0.036132812, -0.00642395, -0.01890564, -0.04269409, -0.038604736, -0.011383057, -0.051483154, 0.007621765, -0.014808655, -0.029678345, -0.02003479, 0.003025055, 0.005077362, -0.046447754, -0.004142761, 0.00039744377, 0.047332764, 0.003545761, 0.052490234, -0.03945923, -0.03829956, -0.042541504, 0.0096588135, -0.045654297, -0.026351929, 0.033416748, -0.027801514, -0.007167816, 5.9604645e-05, 0.013069153, 0.07720947, 0.03756714, -0.001947403, 0.02885437, -0.011482239, -0.0082473755, 0.050994873, 0.03552246, -0.038269043, -0.023345947, -0.01725769, -0.0013036728, 0.0036087036, 0.017303467, -0.026229858, -0.07019043, -0.011421204, -0.018417358, 0.014778137, -0.014472961, 0.021087646, -0.026626587, 0.0056991577, -0.05996704, -0.018218994, -0.03933716, 0.053100586, 0.01927185, -0.004142761, 0.019714355, -0.034240723, -0.062561035, -0.021881104, -0.020523071, 0.03137207, 0.03604126, 0.028076172, 0.024993896, 0.034240723, -0.04269409, 0.05444336, 0.008651733, -0.023864746, 0.0079956055, 0.005104065, -0.00447464, -0.014434814, -0.01600647, -0.006565094, -0.028778076, -0.012680054, 0.059631348, 0.040283203, -0.03857422, 0.001086235, -0.008346558, -0.020477295, 0.023101807, -0.010284424, -0.004688263, -0.02420044, -0.017044067, 0.008712769, -0.002878189, -0.0019207001, 0.0001950264, -0.013969421, -0.041412354, 0.008529663, 0.02798462, -0.010017395, -0.040222168, 0.06222534, 0.039245605, 0.04748535, 0.018692017, -0.091552734, -0.024337769, 0.022628784, 0.0016584396, -0.040985107, 0.007949829, -0.053619385, 0.016311646, 0.035461426, 0.0027751923, -0.0077934265, -0.0037460327, -0.01033783, 0.0065345764, -0.0016355515]}, "B01ENX3VX2": {"id": "B01ENX3VX2", "original": "Brand: Royal Gourmet\nName: Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black\nDescription: \nFeatures: Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast\n316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6\u2019\u2019 L x 13.4\u2019\u2019 W and 3.5 mm thickness. 15 patties can be cooked altogether at once\nPiezo Ignition: Durable stainless steel control panel with piezo ignition system\nOil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use\nPerfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors\n", "metadata": {"Name": "Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black", "Brand": "Royal Gourmet", "Description": "", "Features": "Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast\n316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6\u2019\u2019 L x 13.4\u2019\u2019 W and 3.5 mm thickness. 15 patties can be cooked altogether at once\nPiezo Ignition: Durable stainless steel control panel with piezo ignition system\nOil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use\nPerfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018966675, 0.011375427, -0.03253174, 0.0021743774, -0.0056610107, -0.0074310303, -0.028579712, -0.03677368, -0.06604004, 0.025863647, 0.0004606247, 0.038024902, 0.0019779205, -0.024337769, 0.039855957, -0.01676941, 0.03527832, -0.01083374, -0.014778137, 0.0060806274, -0.026794434, 0.046142578, -0.04284668, 0.04864502, 0.060302734, -0.057769775, -0.062347412, 0.015014648, 0.040618896, 0.023132324, 0.030303955, -0.015701294, 0.049865723, -0.028884888, -0.035461426, -0.06317139, -0.013389587, -0.038604736, -0.064941406, 0.023391724, 0.009025574, 0.0047950745, -0.048858643, 0.025024414, -0.047302246, -0.044647217, 0.019897461, -0.0005993843, 0.038269043, 0.020843506, -0.027542114, -0.0032539368, -0.025466919, -0.021850586, -0.013595581, -0.01651001, 0.014060974, 0.012817383, 0.024002075, -0.05895996, -0.047790527, -0.014533997, 0.041259766, 0.026412964, -0.058776855, 0.038482666, 0.057403564, -0.029312134, 0.052886963, -0.06506348, -0.047821045, 0.03881836, 0.027755737, -0.016174316, -0.047088623, -0.024963379, 0.016601562, -0.032348633, 0.03463745, -0.041809082, 0.0018501282, 0.019622803, 0.025939941, 0.005264282, -0.018966675, -0.01084137, -0.015434265, -0.018325806, 0.0113220215, -0.050750732, -0.00217247, -0.029296875, -0.040893555, 0.039886475, 0.0050582886, -0.027786255, -0.03918457, -0.10284424, 0.038024902, -0.007019043, 0.068725586, -0.039154053, 0.030853271, 0.024398804, -0.03527832, 0.087890625, 0.023727417, 0.071777344, 0.0099105835, 0.005176544, 0.04034424, -0.037078857, 0.002796173, -0.014526367, -0.01550293, 0.010658264, -0.007545471, 0.019638062, 0.01512146, 0.029266357, -0.0061912537, 0.026550293, -0.024749756, -0.0054969788, -0.002784729, -0.013954163, 0.0001616478, -0.00831604, -0.06451416, 0.029052734, -0.056274414, 0.022506714, 0.10534668, 0.041259766, 0.005306244, -0.030715942, 0.0028190613, -0.02268982, 0.01826477, -0.02458191, 0.006504059, -0.004917145, 0.030914307, 0.01158905, -0.031311035, 0.01713562, 0.033721924, 0.0044898987, -0.03704834, -0.060180664, 0.0015897751, 3.2305717e-05, 0.025268555, 0.00881958, -0.01928711, -0.0020389557, 0.0061950684, -0.0045166016, 0.00074100494, -0.028427124, -0.059020996, -0.016815186, 0.016067505, -0.0069236755, -0.053985596, 0.046539307, 0.030899048, -0.009643555, 0.013648987, 0.064941406, -0.0069084167, -0.0004785061, -0.019042969, 0.03250122, 0.004020691, 0.009384155, 0.0107421875, 0.028762817, 0.037078857, -0.08843994, -0.062683105, -0.053344727, 0.091430664, -0.03942871, -0.025619507, -0.027053833, 0.02607727, 0.029769897, 0.032440186, 0.021881104, 0.020629883, -0.01309967, 0.00868988, 0.023284912, 0.036010742, -0.014312744, -0.021514893, 0.012718201, -0.0031051636, -0.05493164, -0.0032787323, -0.0020160675, 0.018508911, 0.035461426, 0.009887695, 0.008453369, -0.0044136047, 0.004852295, 0.0037002563, 0.0024223328, -0.0044898987, -0.016113281, 0.009254456, -0.049987793, -0.043304443, -0.021652222, -0.046051025, 0.027053833, 0.00365448, 0.017578125, 0.020828247, -0.023254395, 0.050476074, 3.59416e-05, 0.051239014, 0.0038414001, -0.015037537, 0.0013160706, 0.045684814, 0.018035889, -0.03111267, 0.01335907, 0.058441162, 0.062469482, -0.005619049, 0.032165527, 0.05041504, 0.022918701, -0.025558472, -0.020507812, 0.0028038025, -0.017364502, -0.043395996, 0.016143799, 0.010772705, -0.021224976, -0.006679535, 0.021270752, -0.008354187, -0.0006108284, 0.04232788, -0.02178955, 0.029006958, 0.0357666, -0.031951904, 0.011512756, -0.03656006, 0.02861023, -0.009811401, 0.013824463, -0.021453857, 0.09814453, 0.07006836, 0.013954163, -0.014640808, 0.018417358, 0.005126953, 0.01739502, -0.05807495, 0.0067100525, 0.046569824, 0.07800293, 0.009841919, -0.012420654, -0.016647339, 0.02053833, -0.014183044, 0.01689148, 0.035614014, -0.0058937073, 0.0070343018, -0.011054993, -0.04168701, -0.0034503937, 0.041107178, 0.016220093, -0.004962921, 0.025466919, -0.02267456, -0.02029419, 0.02960205, -0.024597168, -0.001540184, -0.027374268, 0.0020160675, -0.05215454, 0.11114502, -0.0135650635, 0.02571106, -0.026260376, 0.00522995, 0.024398804, -0.04949951, 0.018051147, -0.006313324, 0.010559082, -0.029586792, 0.023361206, 9.87649e-05, -0.040252686, -0.013267517, -0.01852417, 0.030532837, -0.022232056, 0.037872314, -0.0022354126, -0.0049972534, 0.027618408, -0.03414917, -0.0065460205, 0.019042969, -0.0049972534, -0.0418396, -0.0024967194, -0.005584717, 0.00046610832, -0.030715942, -0.019042969, -0.055358887, 0.028549194, -0.010047913, -0.019638062, 0.0049972534, 0.024917603, -0.010284424, 0.0040016174, -0.0021400452, -0.0049591064, -0.017578125, -0.038482666, -0.022003174, -0.06921387, 0.0029888153, -0.03744507, -0.013015747, -0.0066566467, -0.023269653, 0.016067505, -0.021133423, -0.011680603, 0.0015974045, -0.018417358, 0.03250122, -0.017684937, -0.0016975403, -0.021453857, -0.03994751, -0.03781128, -0.061462402, -0.081604004, -0.023162842, -0.034606934, -0.06665039, -0.022094727, 0.075927734, 0.011238098, -0.06890869, -0.003921509, -0.015594482, 0.00592041, -0.0025157928, 0.008842468, -0.058410645, -0.03942871, -0.03768921, 0.022399902, 0.013931274, -0.032562256, 0.03729248, 0.0060539246, 0.015220642, 0.036987305, -0.011703491, 0.00056266785, 0.023620605, 0.031829834, 0.026809692, 0.031051636, 0.010192871, -0.027069092, 0.009483337, 0.033843994, -0.031829834, -0.0087509155, -0.049316406, -0.0032787323, 0.0055732727, -0.04067993, 0.007827759, 0.0020427704, -0.044281006, 0.0053138733, -0.020614624, -0.018371582, -0.0146865845, -0.05154419, -0.028717041, -0.044158936, 0.007507324, 0.025238037, 0.006340027, 0.028793335, -0.019714355, 0.044158936, -0.017730713, -0.004802704, -0.002658844, -0.016662598, -0.0025997162, 0.0012521744, 0.042633057, -0.07122803, 0.02192688, 0.03262329, -0.030960083, 0.041107178, -0.034606934, 0.014465332, -0.024612427, 0.019470215, -0.009803772, 0.0011119843, -0.028289795, 0.0070343018, -0.018157959, 0.0065841675, -0.0016384125, -0.049682617, 0.042175293, -0.0357666, -0.049591064, -0.01524353, -0.006504059, 0.03048706, 0.0014009476, -0.019134521, -0.042297363, -0.060150146, 0.0018157959, -0.022338867, 0.017349243, -0.005054474, 0.030792236, 0.017227173, -0.004371643, 0.04788208, -0.014572144, 0.035247803, 0.050445557, -0.056732178, -0.0625, -0.051757812, 0.031082153, 0.00178051, 0.016830444, -0.035949707, 0.010986328, 0.01802063, -0.000667572, 0.0010995865, 0.009651184, 0.046966553, 0.024871826, -0.03567505, 0.008331299, -0.038909912, 0.028961182, 0.019058228, -0.02520752, -0.059020996, -0.0625, 0.018829346, -0.056549072, 0.06829834, 0.02104187, -0.020019531, 0.06964111, 0.027374268, 0.0124435425, 0.030334473, 0.043701172, -0.008842468, 0.026062012, 0.029785156, -0.024169922, 0.0064964294, 0.03250122, -0.06781006, -0.0033473969, -0.001709938, -0.044769287, 0.024154663, -0.0031051636, -0.020141602, -0.056518555, 0.015144348, 0.035217285, -0.029388428, 9.059906e-06, -0.04522705, -0.02128601, -0.049987793, 0.00060653687, 0.0032253265, -0.021270752, 0.004047394, -0.018478394, -0.0042381287, -0.027435303, -0.00844574, 0.00027370453, 0.03781128, -0.014518738, 0.021102905, 0.012954712, -0.0046958923, -0.024475098, 0.038604736, -0.034240723, 0.010551453, 0.0154418945, 0.021270752, 0.04611206, 0.017929077, -0.018157959, 0.011978149, -0.012207031, 0.0038146973, -0.020553589, -0.025604248, -0.0025806427, 0.03277588, 0.023025513, -0.023651123, 0.02670288, -0.07946777, -0.002336502, -0.030975342, -0.03842163, -0.013824463, -0.02180481, -0.025161743, -0.10644531, -0.035064697, -0.0071105957, -0.01838684, -0.030776978, 0.033172607, -0.037628174, -0.050720215, -0.038085938, 0.008598328, -0.026641846, 0.013008118, -0.092285156, 0.016937256, 0.018554688, 0.028274536, 0.000395298, -0.028717041, 0.005554199, -0.0063209534, 0.09802246, -0.0013103485, 0.024765015, -0.044067383, -0.028793335, -0.003282547, 0.011459351, 0.026641846, 0.0009622574, 0.01802063, -0.030593872, -0.047790527, 0.006542206, -0.041900635, 0.025100708, -0.051635742, -0.0124053955, -0.02418518, 0.06781006, -0.030349731, 0.027557373, -0.014854431, 0.003627777, -0.014259338, -0.01586914, -0.0925293, -0.056610107, -0.0033092499, -0.0046806335, 0.012458801, -0.004840851, -0.021743774, 0.03201294, 0.04849243, 0.043823242, -0.011703491, -0.015205383, -0.019638062, -0.0067977905, 0.010307312, -0.02822876, 0.015640259, -0.052856445, 0.01399231, -0.09185791, 0.063964844, 0.029922485, 0.009681702, 0.010917664, -0.016845703, -0.0045204163, -0.052093506, -0.013870239, 0.0084991455, 0.023239136, -0.02671814, -0.049682617, 0.028671265, -0.05810547, 0.0069236755, 0.0064353943, -0.029464722, 4.4226646e-05, -0.015007019, 0.031219482, -0.013198853, 0.033294678, 0.03756714, 0.001789093, 0.025497437, -0.03427124, 0.0055007935, 0.02204895, -0.012275696, -0.009407043, -0.027709961, -0.002046585, -0.018630981, 0.039611816, 0.019500732, -0.02558899, 0.010627747, 0.026473999, 0.006828308, -0.031921387, 0.025726318, 0.0068473816, 0.0075683594, -0.036102295, 0.034240723, -0.014015198, -8.523464e-05, 0.012939453, -0.04373169, -0.0075035095, 0.036193848, -0.063964844, 0.05618286, 0.01928711, -0.066467285, 0.03668213, -0.009712219, 0.02986145, -0.016693115, 0.016082764, 0.005306244, 0.014633179, -0.06518555, 0.008651733, 0.006210327, 0.013504028, 0.05331421, -0.04751587, 0.023361206, -0.040771484, -0.010604858, 0.011062622, 0.023834229, -0.0029640198, 0.02218628, 0.0063095093, 0.0011873245, -0.008995056, 0.0054626465, -0.011878967, -0.013793945, -0.048461914, -0.0107040405, 0.031921387, 0.0011777878, 9.995699e-05, -0.023391724, -0.008369446, 0.0006828308, -0.046936035, 0.0045661926, -0.025665283, 0.0048713684, -0.0076026917, 0.016204834, 0.009498596, 0.0158844, -0.05154419, -0.023910522, -0.032409668, 0.00121212, -0.037017822, 0.05911255, -0.03378296, -0.009475708, -0.017532349, -0.04269409, -0.004459381, -0.012893677, -0.03982544, -0.016906738, 0.024337769, 0.04119873, -0.0025615692, 0.04147339, 0.09472656, -0.036254883, -0.043273926, -0.03753662, 0.058929443, -0.018096924, 0.0129470825, 0.06524658, 0.026168823, 0.01953125, 0.035583496, 0.019515991, -0.033325195, -0.02583313, 0.0009794235, -0.06323242, -0.018127441, -0.027160645, 0.02368164, -0.021224976, -0.008964539, -0.029815674, 0.037750244, -0.016342163, -0.0093688965, -0.048034668, -0.029586792, -0.0025234222, -0.035308838, -0.0066070557, -0.025436401, 0.009590149, -0.029022217, -0.014579773, -0.05206299, -0.04385376, 0.020599365, 0.026031494, 0.013305664, -0.042938232, 0.013725281, 0.040100098, -0.0008215904, 0.06939697, 0.005004883, -0.005771637, 0.00831604, 0.008735657, -0.014305115, 0.0107040405, 0.0069465637, 0.021560669, -0.03277588, 0.021835327, 0.016601562, 0.038269043, -0.04171753, -0.003753662, 0.01574707, 0.030517578, 0.029724121, 0.01512146, 0.035461426, -0.024383545, -0.055023193, 0.01637268, 0.0181427, -0.042633057, -0.017913818, 0.029663086, -0.07879639, 0.003293991, -0.036621094, 0.0052490234, 0.027770996, 0.0041275024, 0.0049934387, -0.021484375, 0.024002075, -0.011528015, 0.035736084, -0.0050468445, -0.005378723, 0.014312744, -0.045532227, -0.018157959, -0.0019664764, -0.039031982, 0.015602112, 0.043792725, -0.014533997, 0.01348114, -0.03579712, 0.0463562, 0.02998352, -0.08569336, 0.0072898865, 0.034332275, 0.010665894, 0.016342163, -0.04714966, -0.022399902, -0.008605957, 0.015060425, -0.011528015, 0.07928467, -0.0029506683, 0.008804321, 0.010551453, 0.0030021667, -0.004562378, -0.005153656, -0.008049011, -0.0063705444, 0.023620605, -0.004306793, -0.045532227, -0.00042819977, 0.04550171, -0.023544312, -0.00944519, 0.016235352, 0.025863647, -0.021499634, 0.013450623, -0.019607544, -0.044952393, 0.0068092346, 0.008872986, 0.014213562, 0.045318604, 0.012229919, -0.006969452, 0.034301758, -0.032348633, 0.03048706, -0.012580872, 0.062927246, 0.036956787, 0.01638794, -0.058166504, -0.030685425, -0.01763916, 0.0014028549, 0.0007224083, 0.022613525, 0.014038086, -0.014564514, 0.031463623, 0.037506104, 0.06060791, -0.014541626, 0.026870728, 0.0028209686, -0.0020580292, 0.018051147, 0.03366089, -0.0109939575, 0.011352539, -0.011268616, 0.0023880005, 0.0077781677, -0.0023326874, -0.047668457, 0.01637268, 0.023651123, 0.0048942566, -0.05581665, 0.026260376, 0.0023403168, 0.05340576, -0.017181396, 0.0033569336, -0.017166138, -0.020935059, 0.0012369156, 0.008377075, -0.033721924, 0.029205322, 0.03353882, -0.019958496, 0.011482239, -0.014541626, 0.012786865, -0.04763794, 0.008033752, -0.011627197, 0.033203125, 0.030593872, 0.05895996, -0.024414062, -0.08325195, -0.05154419, 0.041229248, -0.06573486, -0.04623413, -0.0051841736, 0.0118637085, 0.00022757053, 0.010124207, 0.051605225, 0.020126343, 0.03744507, 0.012748718, -0.025558472, 0.0016059875, 0.0050315857, 0.015090942, -0.0040740967, -0.04714966, -0.026809692, 0.014709473, -0.0053977966, 0.012275696, 0.017654419, -0.0011615753, -0.046081543, 0.00016975403, -0.005264282, -0.01776123, -0.013801575, 0.00856781, 0.011245728, 0.0056037903, -0.044708252, 0.0029067993, -0.0014266968, 0.014694214, 0.026062012, 0.014137268, 0.031402588, 0.0020065308, -0.038238525, -0.041137695, -0.015594482, 0.019851685, 0.045196533, 0.044433594, -0.011329651, 0.009490967, -0.018112183, 0.01977539, -0.01576233, -0.05215454, 0.03253174, -0.031341553, 0.01687622, -0.0012788773, -0.051452637, 0.000954628, -0.026290894, -0.0006918907, 0.022598267, 0.0018367767, -0.019104004, -0.032562256, -0.021530151, 0.005065918, -0.03213501, -0.03152466, 0.0010185242, 0.014923096, -0.02027893, 0.008476257, 0.015327454, -0.006629944, -0.018127441, -0.0025558472, -0.04385376, 0.013473511, 0.028717041, 0.00422287, -0.026565552, 0.012489319, 0.035705566, -0.0049934387, -0.034454346, -0.05279541, -0.03286743, 0.026306152, 0.0036754608, 0.005771637, 0.039886475, -0.030563354, 0.009773254, 0.040008545, 0.019607544, -0.011650085, 0.010772705, 0.0052223206, 0.016326904, 0.004928589]}, "B06XY4SHXG": {"id": "B06XY4SHXG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel\nDescription: \nFeatures: 5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor\nPorcelain-enameled cooking grates and warming rack offer a total of 797\u00a0square inches\u00a0cooking area,\u00a0which is consisted of\u00a0a\u00a0primary cooking area\u00a0of 598\u00a0square Inches and a secondary cooking area of 199\u00a0square inches\nHeavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement\nElectronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space\nRemovable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters\n", "metadata": {"Name": "Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel", "Brand": "Royal Gourmet", "Description": "", "Features": "5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor\nPorcelain-enameled cooking grates and warming rack offer a total of 797\u00a0square inches\u00a0cooking area,\u00a0which is consisted of\u00a0a\u00a0primary cooking area\u00a0of 598\u00a0square Inches and a secondary cooking area of 199\u00a0square inches\nHeavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement\nElectronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space\nRemovable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.022064209, 0.010635376, -0.053771973, -0.020248413, 0.0023822784, -0.032470703, -0.015472412, -0.00869751, -0.04849243, 0.0048332214, 0.011116028, 0.017837524, -0.00415802, -0.043823242, 0.036254883, -0.015731812, 0.028808594, 0.016113281, 0.03942871, 0.009643555, -0.0042266846, 0.048309326, -0.0006375313, 0.054779053, 0.045898438, -0.055236816, -0.020141602, 0.041748047, 0.0340271, 0.029647827, 0.032562256, -0.033325195, 0.0619812, -0.004650116, -0.044158936, -0.04598999, -0.009460449, -0.03591919, -0.048461914, 0.005218506, -0.012840271, 0.022857666, 0.0036945343, -0.015037537, -0.027740479, -0.018432617, -0.028778076, -0.02154541, 0.04083252, -0.010475159, -0.0020580292, -0.01979065, -0.0012569427, -0.038482666, -0.028335571, -0.009384155, 0.02810669, 0.040039062, 0.017623901, -0.062347412, -0.05117798, 0.024261475, 0.030075073, 0.027496338, -0.06072998, 0.018341064, 0.08050537, -0.028945923, 0.029388428, -0.07055664, -0.015205383, 0.06237793, 0.0095825195, -0.01235199, -0.032287598, 0.015174866, -0.006717682, -0.02659607, 0.03778076, -0.012954712, 0.045288086, -0.008506775, 0.04385376, 0.031280518, -0.015945435, -6.0856342e-05, -0.0027980804, -0.023590088, 0.015686035, -0.022491455, -0.002325058, -0.014083862, -0.017822266, 0.04196167, 0.0070152283, -0.02796936, -0.03479004, -0.08959961, 0.050201416, 0.005744934, 0.072387695, -0.04949951, 0.039123535, 0.029159546, -0.014503479, 0.10119629, 0.00043702126, 0.05697632, 0.007911682, -0.0020580292, 0.05105591, -0.023269653, -0.009048462, -0.027389526, -0.020401001, 0.040649414, 0.013977051, 0.00074481964, 0.0062294006, 0.014656067, -0.0390625, -0.007144928, -0.016983032, 0.01209259, 0.0071372986, -0.0053215027, 0.011505127, 0.0077285767, -0.047546387, 0.037017822, -0.034088135, -0.011428833, 0.08862305, 0.0803833, 0.017868042, -0.03643799, 0.0037174225, -0.008453369, 0.020706177, -0.010955811, 0.006954193, -0.010368347, 0.039093018, 0.014434814, -0.03970337, 0.026626587, 0.02116394, -0.016082764, -0.04031372, -0.056854248, -0.025466919, -0.019515991, 0.032928467, 0.008766174, -0.047302246, 0.0143585205, -0.025222778, 0.0045661926, -0.026382446, -0.007972717, -0.06451416, -0.026412964, 0.008201599, -0.037200928, -0.056549072, 0.07196045, 0.03866577, -0.0053100586, 0.018920898, 0.047576904, -0.013458252, 0.007904053, 0.016082764, 0.05340576, 0.014160156, 0.023910522, 0.027191162, 0.012382507, 0.03491211, -0.044708252, -0.040618896, -0.04168701, 0.07885742, -0.035583496, -0.016677856, -0.013130188, -0.012229919, -0.0001437664, 0.051605225, 0.010025024, -0.013336182, -0.019470215, 0.009712219, -0.014884949, 0.043426514, 0.0050964355, -0.01991272, 0.004070282, 0.007686615, -0.037597656, 0.02230835, -0.015853882, 0.0027637482, 0.0054855347, -0.0047340393, -0.026397705, 0.006439209, -0.0007171631, -0.0038375854, 0.01776123, -0.008163452, 0.001663208, -0.006843567, -0.032989502, -0.026489258, -0.03692627, -0.03062439, 0.02609253, 0.0029525757, -0.0016260147, 0.042388916, -0.01737976, 0.06665039, 0.03616333, 0.03387451, 0.020812988, -0.02243042, 0.010414124, 0.03353882, 0.027053833, -0.042816162, 0.005722046, 0.078308105, 0.0791626, 0.0033245087, 0.038146973, 0.06036377, 0.049621582, -0.0385437, -0.044067383, 0.0007214546, 0.004421234, -0.04473877, 0.022155762, 0.017593384, -0.004928589, -0.0013666153, 0.024642944, -0.014213562, -0.017547607, 0.044158936, -0.020446777, 0.039520264, 0.042785645, 0.0021266937, 0.016418457, -0.024551392, 0.022735596, -0.015716553, -0.005558014, -0.00078201294, 0.046722412, 0.005657196, 0.01159668, 0.0027637482, 0.02708435, 0.0041618347, 0.016998291, -0.035491943, 0.012710571, 0.022354126, 0.007118225, -0.011985779, -0.0016784668, 0.0047950745, -0.029388428, -0.021514893, 0.034729004, 0.002243042, -0.02658081, -0.0002477169, -0.014038086, -0.038513184, 0.003019333, 0.019515991, 0.028259277, 0.0067749023, 0.0309906, -0.008514404, -0.0119018555, 0.023910522, 0.00856781, -0.0039596558, 0.010902405, -0.013061523, -0.025375366, 0.14221191, 0.013900757, 0.008110046, -0.0022182465, 0.035095215, 0.010871887, -0.05154419, 0.00029087067, 0.0011491776, 0.0118255615, -0.021835327, 0.024047852, 0.0026893616, -0.045684814, -0.003458023, 0.01763916, 0.036743164, -0.031402588, 0.051452637, 0.008285522, -0.0018949509, 0.052337646, 0.0022239685, 0.011138916, 0.007583618, 0.014755249, -0.024261475, -0.004573822, 0.01826477, 0.0039405823, -0.026382446, -0.015045166, -0.009086609, 0.0018644333, -0.0013914108, 0.0033035278, 0.0077285767, 0.0045661926, -0.0013599396, -0.0046463013, 0.016036987, -0.0037841797, -0.010765076, -0.06512451, -0.01637268, -0.034423828, -0.005531311, -0.026977539, -0.03326416, -0.015686035, 0.01158905, -0.010559082, 0.011039734, 0.001253128, -0.006298065, 0.01979065, 0.009750366, -0.014389038, -0.0053367615, -0.033111572, -0.014640808, -0.016235352, -0.019241333, -0.06427002, -0.01625061, -0.028961182, -0.054992676, -0.043121338, 0.081604004, -0.01146698, -0.06994629, -0.02583313, -0.037109375, -0.00084877014, 0.024856567, -0.022994995, -0.0904541, -0.03338623, -0.0597229, 0.024368286, 0.051513672, -0.0129852295, 0.011009216, 0.033294678, 0.04321289, 0.04928589, -0.014823914, -0.005558014, -0.0061569214, 0.03253174, 0.02128601, 0.022720337, 0.01889038, -0.01737976, 0.018753052, 0.034484863, -0.03250122, -0.028198242, -0.016845703, -0.0011262894, 0.027130127, 0.021484375, 0.005302429, -0.019607544, -0.05810547, 0.007713318, 0.007827759, -0.050628662, -0.00040769577, -0.110839844, -0.06500244, -0.032348633, 0.00094366074, -0.0077667236, 0.010108948, -0.012504578, -0.033294678, 0.01675415, 0.0037021637, -0.037994385, -0.035705566, -0.0049324036, -0.0067253113, 0.002922058, 0.026153564, -0.049865723, 0.009056091, 0.025299072, -0.021636963, 0.04156494, -0.018951416, 0.012626648, 0.0061073303, 0.027114868, 0.0071907043, 0.009536743, -0.03414917, -0.0032196045, 0.02444458, 0.05581665, 0.017868042, -0.015197754, 0.02633667, -0.01309967, -0.05569458, -0.010108948, -0.005142212, 0.021881104, 0.018157959, -0.037902832, -0.017654419, -0.06402588, -0.05508423, -0.028839111, 0.0006890297, 0.03213501, 0.024612427, 0.040740967, 0.028396606, 0.03451538, -0.014076233, 0.048095703, 0.05407715, -0.04699707, -0.050323486, -0.053619385, 0.027542114, 0.023757935, 0.014129639, -0.045288086, 0.018707275, 0.025787354, -0.013511658, 0.009315491, 0.015434265, 0.03048706, 0.018539429, -0.028137207, 0.0036144257, -0.034210205, 0.010368347, 0.011184692, -0.014602661, -0.06100464, -0.009399414, -0.010940552, -0.055358887, 0.09887695, 0.05303955, -0.024505615, 0.04547119, 0.050476074, -0.009017944, 0.013153076, 0.024353027, -0.0010223389, -0.0037784576, 0.048095703, -0.01751709, -0.00484848, 0.021499634, -0.04788208, 0.01776123, 0.017440796, -0.038208008, 0.013427734, -0.01739502, -0.03982544, -0.027862549, 0.026931763, 0.0435791, -0.009140015, 0.0012817383, -0.041778564, 0.012672424, -0.057769775, 0.013450623, 0.018569946, -0.0317688, 0.007850647, -0.016098022, 0.006401062, -0.031585693, -0.007396698, 0.03289795, 0.016113281, -3.159046e-05, 0.02520752, 0.005970001, 0.01525116, -0.038757324, -0.002254486, -0.023529053, 0.012939453, 0.04727173, 0.004131317, 0.03717041, 0.0003900528, -0.030136108, 0.01727295, 0.0033607483, 0.02331543, 0.008041382, -0.028762817, -0.0011291504, 0.033477783, 0.010177612, -0.023651123, 0.01953125, -0.07305908, -0.005935669, -0.027160645, -0.06390381, -0.012413025, -0.00059747696, -0.0029296875, -0.11431885, -0.03656006, 0.025878906, -0.04940796, -0.021820068, 0.007575989, -0.049835205, -0.01763916, -0.016555786, 0.027832031, -0.043884277, -0.0019464493, -0.0715332, 0.015991211, 0.015274048, 0.024612427, 0.006969452, -0.034729004, -0.0064086914, -0.016082764, 0.11791992, 0.0010929108, 0.02571106, -0.04272461, -0.037353516, -0.010818481, 0.0079193115, 0.027816772, -0.022628784, 0.012054443, -0.01576233, -0.05404663, -0.028411865, -0.011672974, 0.024536133, -0.031280518, -0.036743164, -0.032196045, 0.05682373, -0.0061149597, 0.020645142, 0.0027580261, 0.024856567, -0.009689331, -0.027648926, -0.093811035, -0.021118164, 0.0017566681, -0.011421204, 0.006134033, -0.0064201355, -0.010894775, 0.0069732666, 0.054779053, 0.03967285, -0.012496948, 0.0121154785, 0.0018482208, 0.0010719299, -0.053253174, -0.0006313324, 0.0395813, -0.012031555, 0.008224487, -0.0803833, 0.072387695, 0.035217285, 0.0070724487, 0.004852295, -0.016296387, -0.016189575, -0.057678223, -0.0059013367, 0.0056610107, -0.011909485, -0.04071045, -0.026321411, 0.057525635, -0.03225708, 0.027954102, -0.031341553, -0.011100769, -0.01838684, -0.02897644, 0.005393982, -0.026046753, 0.02748108, -0.010253906, 0.006038666, 0.025650024, -0.023208618, 0.013717651, 0.005619049, -0.008956909, -0.012863159, -0.03326416, -0.031829834, -0.01675415, 0.027435303, 0.03201294, 0.012802124, 0.00079631805, 0.0005669594, -0.0042037964, -0.016159058, 0.022216797, -0.011230469, 0.016448975, -0.02381897, 0.026473999, -0.022491455, 0.017242432, 0.0066986084, -0.025497437, -0.0039520264, 0.029876709, -0.040924072, 0.033569336, 0.021560669, -0.0758667, 0.030563354, -0.0009589195, 0.011482239, -0.036193848, 0.05734253, 0.0008254051, 0.012413025, -0.06384277, 0.018341064, 0.016647339, 0.036224365, 0.0066452026, -0.037384033, 0.027648926, -0.09375, -0.016479492, 0.01663208, 0.051208496, -0.0050849915, 0.016403198, 0.032318115, 0.026473999, -0.025375366, 0.015022278, -0.032348633, -0.01399231, -0.018920898, 0.019226074, 0.023117065, -0.009117126, -0.010047913, -0.04953003, 0.013450623, -0.015113831, -0.024734497, -0.0074653625, 0.02116394, 0.016479492, 0.01020813, 0.0036296844, 0.019348145, 0.008613586, -0.030059814, -0.028076172, -0.03262329, 0.016342163, -0.025772095, 0.040161133, -0.03390503, 0.00819397, 0.0020542145, -0.054382324, -0.0010156631, 0.002773285, -0.037597656, -0.02078247, 0.006160736, 0.01637268, 0.014595032, 0.013938904, 0.07220459, -0.025680542, -0.033599854, -0.068237305, 0.018051147, 0.010864258, -0.008842468, 0.09112549, 0.040649414, 0.00033402443, 0.032562256, 0.00048613548, -0.031036377, -0.009628296, -0.0065231323, -0.060791016, -0.010475159, -0.03845215, 0.015090942, 0.0049476624, -0.00069761276, -0.0056533813, 0.037261963, 0.0076179504, -0.012573242, -0.02192688, -0.008842468, -0.006416321, -0.0357666, 0.009017944, -0.012229919, -0.02947998, -0.0038986206, -0.039520264, -0.056610107, -0.00054979324, 0.008308411, 0.0053596497, 0.003622055, 0.008224487, -0.0037269592, 0.009216309, -0.009101868, 0.030532837, -0.0041656494, 0.026641846, 0.018112183, 0.014595032, -0.04486084, 0.019958496, -0.031829834, 0.022064209, -0.024658203, -0.008583069, -0.009147644, 0.033691406, -0.03753662, -0.006259918, 0.0146484375, 0.034301758, 0.030822754, 0.024261475, 0.029037476, -0.046539307, -0.054229736, 0.005844116, -0.0059661865, -0.046417236, -0.03918457, 0.022720337, -0.04940796, 0.03503418, -0.016189575, 0.008972168, 0.023605347, 0.024230957, 0.0004901886, -0.013519287, 0.022369385, 0.0028705597, 0.027023315, 0.005504608, -0.041046143, 0.011474609, -0.016647339, 0.012313843, -0.0023269653, -0.016601562, -0.03741455, 0.014717102, -0.0023994446, 0.037841797, -0.0135269165, 0.04083252, -0.0064201355, -0.092163086, 0.029708862, 0.012336731, -0.0041389465, 0.024505615, -0.061340332, -0.026641846, -0.0019330978, 0.00920105, -0.041656494, 0.01663208, 0.029907227, 0.0154953, 0.018844604, -0.018600464, -0.005859375, 0.005088806, -0.0009531975, -0.002407074, 0.016098022, -0.01007843, -0.09503174, 0.0037384033, 0.04397583, -0.008918762, 0.00409317, 0.021072388, 0.027069092, -0.003742218, 0.03125, 0.0009331703, -0.012916565, 0.022323608, 0.0022335052, 0.02758789, 0.057373047, 0.023986816, 0.012672424, 0.013595581, -0.018692017, 0.01687622, -0.026794434, 0.039276123, 0.036712646, -0.0035629272, -0.04360962, -0.06933594, -0.0045928955, -0.004135132, 0.0017728806, -0.018096924, 0.02722168, 0.011192322, 7.849932e-05, 0.05279541, 0.062683105, -0.004497528, 0.03805542, 0.0044288635, -0.023117065, -0.003419876, 0.0068130493, -0.0042304993, -0.007331848, 0.0048561096, 0.019638062, 0.02633667, 0.029251099, 0.009429932, 0.016616821, 0.014945984, 0.004096985, -0.043884277, 0.022476196, 0.006275177, 0.04260254, -0.018844604, -0.00049972534, -0.021057129, -0.012664795, -0.023010254, -0.00019800663, -0.047546387, 0.009605408, 0.0075569153, -0.007545471, 0.014572144, -0.015289307, 0.0063552856, -0.0524292, 0.0011749268, -0.007713318, 0.035339355, 0.011734009, 0.047576904, -0.029052734, -0.08770752, -0.039794922, 0.04876709, -0.07354736, -0.03302002, -0.014457703, 0.01676941, -0.0043144226, 0.0010118484, 0.05722046, 0.04449463, 0.032165527, 0.013809204, -0.017990112, -0.00944519, -0.009132385, -0.021408081, -0.036010742, -0.011100769, 0.0072021484, 0.04534912, -0.004589081, 0.0132751465, 0.028076172, -0.0158844, -0.05999756, -0.01953125, -0.02619934, 0.00045394897, -0.04284668, 0.03414917, -0.030426025, 0.0038719177, -0.03250122, -0.008857727, -0.0049858093, 0.000248909, 0.059570312, -0.0017366409, 0.027679443, -0.0051002502, -0.08239746, -0.058288574, -0.015205383, 0.02859497, 0.013946533, 0.038635254, 0.02178955, 0.027389526, -0.027526855, 0.040893555, 0.018218994, -0.06008911, 0.039123535, -0.021987915, 0.00045013428, 0.023269653, -0.051971436, 0.030410767, -0.019302368, -0.013809204, 0.03149414, 0.018936157, -0.01914978, -0.012870789, -0.044677734, 0.02192688, -0.0007572174, -0.049468994, -0.030197144, -0.012268066, -0.0021839142, 0.018478394, -0.011444092, 0.017959595, -0.023971558, 0.004875183, -0.016448975, 0.033416748, 0.019042969, 0.029830933, -0.05419922, 0.0625, 0.011505127, 0.03555298, -0.027542114, -0.07897949, -0.045928955, 0.038146973, 0.03286743, -0.0141067505, 0.06384277, -0.04284668, 0.0056877136, 0.036895752, -0.014251709, -0.011779785, 0.01637268, 0.033416748, 0.019226074, 0.015350342]}, "B01FTD8JB4": {"id": "B01FTD8JB4", "original": "Brand: Royal Gourmet\nName: Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22'' L, Black\nDescription: \nFeatures: SPACIOUS COOKING SURFACE: 22.4\" L x 21.7\" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly.\nPOWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total.\nQUICK START-UP: Electronic ignition system offers a reliable spark at every simple push.\nNO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup.\nEASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.\n", "metadata": {"Name": "Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22'' L, Black", "Brand": "Royal Gourmet", "Description": "", "Features": "SPACIOUS COOKING SURFACE: 22.4\" L x 21.7\" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly.\nPOWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total.\nQUICK START-UP: Electronic ignition system offers a reliable spark at every simple push.\nNO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup.\nEASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03466797, -0.006629944, -0.04083252, 0.0049972534, -0.031585693, -0.0019025803, -0.03668213, -0.008323669, -0.061828613, 0.017532349, 0.027267456, 0.004425049, 0.016067505, -0.054901123, 0.048675537, -0.022720337, 0.03930664, -0.00029706955, 0.01272583, 0.0078086853, -0.0039520264, 0.036071777, -0.004951477, 0.031311035, 0.064575195, -0.04272461, -0.05279541, 0.0073165894, 0.043792725, 0.03036499, 0.031143188, -0.023925781, 0.06451416, -0.029815674, -0.060699463, -0.095825195, -0.01751709, -0.04522705, -0.070495605, 0.02406311, 0.02067566, -0.00038719177, -0.061309814, 0.013313293, -0.05178833, -0.033325195, 0.0101623535, -0.0073776245, 0.014732361, 0.029571533, -0.0014047623, -0.015686035, -0.008079529, -0.006515503, -0.0138549805, -0.028579712, 0.011138916, -0.0053863525, 0.026947021, -0.07104492, -0.04776001, -0.020141602, 0.051483154, 0.053466797, -0.061828613, 0.03778076, 0.08154297, -0.03463745, 0.024871826, -0.07196045, -0.037994385, 0.03427124, 0.042022705, -0.041168213, -0.019012451, 0.016738892, -0.021102905, -0.0072250366, 0.044952393, -0.056793213, 0.03515625, 0.0011739731, 0.025375366, 0.00680542, -0.010566711, -0.0178833, -0.005722046, -0.03060913, 0.03427124, -0.05328369, 0.0021839142, -0.028411865, -0.005104065, 0.02670288, -0.0158844, -0.032318115, -0.037078857, -0.07531738, 0.046844482, 0.003610611, 0.059814453, -0.042510986, 0.043823242, 0.015686035, -0.012817383, 0.10046387, 0.019134521, 0.03866577, 0.006340027, -0.014877319, 0.026306152, -0.024276733, 0.024673462, -0.019332886, -0.0090408325, -0.0067253113, 0.011138916, 0.02267456, 0.017486572, -0.007797241, -0.02406311, 0.005378723, -4.1902065e-05, 0.045013428, -0.028915405, -0.008224487, 0.022033691, -0.024917603, -0.034729004, 0.03955078, -0.02255249, 0.0035419464, 0.066345215, 0.03704834, -0.009490967, -0.020507812, -0.0038280487, -0.006160736, 0.026626587, -0.011299133, -0.017501831, -0.0062942505, 0.058532715, 0.0018930435, -0.027770996, 0.01083374, 0.027908325, 0.0013465881, -0.04159546, -0.051208496, 0.0035572052, -0.013473511, 0.016723633, 0.02456665, -0.041107178, 0.015571594, -0.022064209, 0.012413025, -0.017288208, -0.009307861, -0.05090332, -0.021377563, 0.01727295, -0.02720642, -0.05795288, 0.044677734, -0.0036411285, -0.009590149, 0.014266968, 0.0149002075, -0.002521515, -0.012046814, 0.042541504, 0.03274536, 0.0037879944, 0.028579712, 0.008872986, 0.024978638, 0.030929565, -0.052947998, -0.049835205, -0.050628662, 0.0692749, -0.028015137, 0.02357483, -0.031311035, 0.017089844, -0.0015163422, 0.015563965, 0.028640747, -0.034484863, 0.0076828003, 0.0104904175, 0.0033817291, 0.036499023, 0.00038909912, -0.011375427, 0.022628784, 0.0026340485, -0.07965088, 0.0009937286, 0.004096985, -0.0049438477, 0.026321411, -0.011672974, -0.0020580292, 0.0036125183, -0.0008034706, -0.003145218, 0.022094727, -0.0023555756, 0.0054626465, -0.016540527, -0.011795044, -0.024673462, -0.01638794, -0.062072754, 0.008094788, 0.020050049, -0.005970001, 0.053710938, -0.002861023, 0.06008911, -0.014251709, 0.012962341, 0.006893158, -0.019714355, 0.0093307495, 0.03363037, 0.012641907, 0.00084638596, 0.0005879402, 0.06347656, 0.0637207, 0.00040602684, 0.042297363, 0.06982422, 0.03491211, -0.02041626, -0.029129028, -0.010635376, 0.0031833649, -0.055847168, 0.05102539, 0.019424438, -0.012817383, -0.021347046, 0.054656982, -0.011016846, -0.022827148, 0.053466797, -0.006641388, 0.0345459, 0.031585693, 0.015960693, 0.018417358, -0.0128479, 0.0028629303, -0.007331848, 0.012001038, 0.0017786026, 0.08154297, 0.01449585, 0.02772522, 0.002380371, 0.029800415, 0.0065307617, 0.025848389, -0.060058594, 0.01727295, 0.03744507, 0.08312988, -0.0034751892, -0.004825592, -0.005672455, -0.003036499, -0.027511597, 0.017669678, 0.004722595, -0.0072288513, 0.011253357, 0.029937744, -0.058685303, -0.005104065, 0.012329102, 0.006046295, -0.025314331, 0.017333984, 0.024459839, 0.016235352, 0.040252686, -0.011978149, 0.012710571, -0.0020446777, -0.007091522, -0.032989502, 0.072753906, 0.030517578, -0.0059776306, 0.013282776, 0.007774353, 0.019500732, -0.018066406, -0.0031223297, -0.009757996, 0.0019626617, -0.022033691, 0.018371582, -0.007286072, -0.03704834, -0.014060974, 0.010040283, 0.022338867, -0.01725769, 0.022216797, -0.01159668, -0.011024475, 0.030532837, -0.029891968, 0.0038433075, -0.037750244, 0.014862061, -0.06561279, -0.0028648376, 0.009941101, 0.03994751, -0.043914795, -0.006324768, -0.09552002, 0.014251709, 0.0016708374, -0.04095459, 0.012260437, 0.06842041, -0.0009622574, 0.021896362, 0.0149002075, -0.026626587, -0.007896423, -0.046325684, -0.008796692, -0.03756714, -0.0135650635, -0.032470703, -0.035949707, -0.0137786865, -0.02067566, 0.009399414, 0.03225708, -0.013336182, 0.007637024, -0.007194519, 0.0119018555, -0.021224976, 0.008277893, -0.014122009, -0.026794434, -0.055755615, -0.031463623, -0.08520508, -0.011558533, -0.041778564, -0.06689453, -0.013626099, 0.07409668, -0.002281189, -0.047668457, -0.010551453, -0.040924072, -0.015670776, 0.025466919, -0.030303955, -0.073913574, -0.03277588, -0.045562744, 0.031311035, 0.031799316, -0.038269043, 0.016113281, 0.009407043, 0.005317688, 0.039276123, -0.048919678, -0.0051994324, 0.014595032, 0.023406982, 0.033935547, 0.027999878, 0.020462036, -0.014175415, 0.015571594, 0.036010742, -0.052612305, -0.004634857, -0.037719727, 0.004875183, 0.022094727, -0.044158936, 0.01626587, -0.019332886, -0.06817627, 0.020492554, 0.0058898926, -0.035003662, -0.022354126, -0.06555176, -0.06933594, -0.031463623, 0.022994995, 0.020843506, 0.004917145, 0.025146484, -0.004005432, 0.019683838, -0.015823364, 0.010887146, -0.014434814, -0.0065231323, -0.00073480606, -0.008590698, 0.010932922, -0.02947998, 0.011985779, 0.026489258, -0.031173706, 0.072143555, -0.05859375, 0.013259888, -0.016967773, 0.0068206787, -0.009979248, 0.004966736, -0.023529053, 0.0005245209, -0.011695862, 0.026382446, 0.005832672, -0.013839722, 0.031433105, -0.026824951, -0.05331421, -0.03024292, -0.008758545, 0.023330688, 0.017242432, -0.020462036, -0.035858154, -0.0647583, -0.018615723, -0.009475708, -0.008277893, -0.0061798096, 0.0024871826, 0.026657104, -0.00856781, 0.07946777, -0.009346008, 0.04711914, 0.06994629, -0.05206299, -0.037017822, -0.051757812, 0.017303467, 0.03869629, 0.016220093, -0.033111572, 0.011253357, 0.023590088, -0.0149383545, 0.015365601, 0.018951416, 0.020812988, 0.035583496, -0.037475586, 0.018997192, -0.03414917, 0.012557983, 0.00021457672, -0.030731201, -0.05505371, -0.025253296, 0.019836426, -0.03491211, 0.03527832, 0.015304565, -0.018203735, 0.01525116, -0.009902954, -0.0029258728, 0.033416748, 0.007091522, 0.0028190613, -0.0033187866, 0.035736084, -0.025756836, 0.012207031, 0.021484375, -0.056427002, 0.021194458, -0.0037727356, -0.029312134, 0.014953613, -0.017501831, -0.02822876, -0.017593384, -0.0016069412, 0.025482178, 0.0059547424, 0.017532349, 0.007633209, 0.002407074, -0.016174316, -0.017227173, 0.0104904175, -0.031707764, -0.0032920837, -0.015914917, 0.0001026988, -0.016830444, -0.013168335, 0.01689148, 0.04031372, 0.0044822693, 0.029769897, -0.0012140274, -0.0016183853, -0.014183044, 0.011932373, -0.023651123, 0.0018672943, 0.006000519, 0.008430481, 0.021774292, 0.008834839, -0.003730774, 0.0158844, -0.012680054, 0.011421204, -0.039001465, -0.04650879, -0.026000977, 0.0016536713, 0.026107788, -0.018356323, 0.011260986, -0.05444336, -0.010986328, -0.013221741, -0.048706055, -0.0047454834, -0.011817932, -0.019302368, -0.09234619, -0.025054932, -0.01663208, -0.013420105, -0.046295166, 0.024673462, -0.036315918, -0.012672424, -0.036010742, 0.012962341, -0.062194824, 0.043273926, -0.11279297, 0.0027542114, 0.043670654, 0.049072266, 0.04147339, -0.04815674, -0.012451172, -0.017211914, 0.115722656, -0.0029792786, 0.045898438, -0.04675293, -0.02003479, -0.0046653748, 0.0107803345, 0.001405716, 0.013938904, -0.0143585205, -0.03729248, -0.08557129, 0.0024108887, -0.055755615, 0.028823853, -0.059753418, -0.020431519, -0.022949219, 0.06762695, -0.034332275, 0.007598877, -0.013496399, 0.019470215, -0.0047950745, -0.0032176971, -0.06262207, -0.007457733, 0.0032844543, -0.004814148, 0.0016431808, -0.0064048767, -0.013061523, 0.012802124, 0.03829956, 0.030288696, -0.017578125, -0.0001320839, -0.024261475, -0.0012102127, -0.015434265, -0.021530151, 0.03277588, -0.045166016, 0.010017395, -0.07287598, 0.036499023, 0.0051460266, 0.018829346, 0.005683899, -0.027496338, 0.0077552795, -0.057891846, -0.0075569153, 0.0005578995, 0.0029582977, -0.044403076, -0.04324341, 0.028884888, -0.05053711, 0.012672424, 0.014572144, -0.037384033, 0.011276245, 0.011726379, 0.034362793, -0.020843506, 0.0007324219, 0.058624268, -0.01272583, 0.01411438, -0.022857666, 0.0066223145, 0.01687622, -0.037475586, -0.009765625, -0.01637268, -0.014450073, -0.026382446, 0.023239136, 0.022354126, -0.011238098, 0.0132369995, 0.016571045, -0.0059280396, -0.009880066, 0.010375977, 0.014564514, 0.0070610046, -0.012481689, 0.03503418, -0.03692627, 0.01550293, -0.008171082, -0.025466919, 0.0024032593, 0.035125732, -0.045806885, 0.020843506, 0.02558899, -0.030715942, 0.037139893, 7.2300434e-05, 0.0039711, -0.036193848, 0.052886963, -0.008857727, 0.0077705383, -0.05255127, 0.010604858, 0.00868988, 0.024291992, 0.022232056, -0.04660034, 0.009864807, -0.056152344, 0.015914917, -0.0025863647, 0.05014038, -0.01852417, 0.032592773, 0.010093689, 0.043273926, -0.0284729, -0.0044441223, -0.031707764, -0.031677246, -0.0440979, 0.015487671, 0.02670288, -0.023803711, 0.010971069, -0.04525757, -0.020111084, -0.00045728683, -0.029464722, 0.006565094, -0.013801575, 0.009376526, -0.00605011, -0.008346558, 0.043273926, 0.023208618, -0.01939392, -0.039886475, -0.045684814, 1.6570091e-05, -0.0496521, 0.046295166, -0.0368042, -0.003124237, -0.013206482, -0.028762817, 0.008071899, -0.008163452, -0.054595947, -0.010772705, 0.023757935, 0.059692383, -0.0043144226, 0.022399902, 0.09875488, -0.04626465, -0.0345459, -0.08129883, 0.039611816, 0.0023841858, 0.006515503, 0.043121338, 0.049926758, -0.013252258, 0.051574707, -0.0015869141, -0.061035156, -0.029129028, 0.00056123734, -0.064941406, -0.014564514, -0.040039062, 0.04336548, -0.002149582, -0.027160645, -0.02607727, 0.030654907, -0.012023926, -0.029434204, -0.029342651, -0.03488159, 0.0129470825, -0.02192688, 0.010116577, -0.024856567, -0.014259338, -0.029205322, -0.014541626, -0.06817627, -0.05441284, -0.009361267, 0.03286743, 0.015365601, -0.012748718, 0.009498596, 0.033355713, -0.023513794, 0.04562378, -0.01852417, 0.014541626, 0.014320374, 0.012367249, -0.020599365, 0.048095703, 0.020309448, 0.01473999, -0.053466797, 0.034698486, 0.014984131, 0.06768799, -0.061553955, -0.002418518, 0.037719727, 0.04171753, 0.014160156, 0.011230469, -0.00051498413, -0.06536865, -0.04626465, 0.009933472, -0.03326416, -0.054016113, -0.02746582, 0.006980896, -0.07281494, 0.0063552856, -0.034851074, 0.03262329, -0.020080566, 0.029251099, 0.00919342, -0.030380249, 0.034057617, -0.010597229, -0.0013303757, -0.022338867, -0.058624268, 0.008270264, -0.02519226, -0.0087509155, -0.042297363, -0.033294678, 0.026031494, 0.046813965, 0.0124435425, -0.0017175674, -0.0440979, 0.03717041, 0.02784729, -0.08758545, 0.004016876, 0.04437256, 0.008605957, 0.01965332, -0.051330566, -0.022705078, 0.005771637, 0.020309448, -0.01209259, 0.054260254, 0.00038576126, 0.0070266724, 0.019561768, -0.028121948, 0.033111572, 0.009399414, -0.011077881, 0.00995636, 0.019104004, -0.01638794, -0.058013916, -0.0019874573, 0.024093628, -0.013366699, -0.015670776, -0.0075263977, 0.03189087, 0.009292603, 0.011993408, -0.023345947, -0.039916992, 0.016998291, 0.018066406, -0.00642395, 0.005886078, -0.011657715, -0.0028362274, 0.023391724, -0.027679443, 0.031188965, -0.023971558, 0.073913574, 0.04663086, -0.0093307495, -0.032714844, -0.014167786, -0.004447937, 0.018951416, 0.00819397, 0.027770996, 0.024398804, 0.019073486, 0.020019531, 0.036834717, 0.0647583, -0.002609253, 0.022598267, 0.0008664131, -0.0051612854, 0.0059509277, 0.0015830994, 0.0072021484, -0.004180908, -0.024368286, -0.0048217773, 0.0020523071, -0.0013809204, 0.019943237, 0.0126953125, 0.025756836, 0.024230957, -0.070373535, 0.033996582, 0.01763916, 0.04498291, -0.005340576, -0.021347046, -0.023071289, -0.017654419, 0.008972168, -0.009185791, -0.04006958, 0.030761719, 0.010940552, -0.0158844, 0.019088745, -0.029067993, 0.0005698204, -0.03491211, 0.0178833, 0.011291504, 0.03555298, -0.0015716553, 0.04763794, -0.027694702, -0.05239868, -0.022903442, 0.0395813, -0.06323242, -0.04333496, -0.023239136, 0.0032596588, 0.00014615059, 0.0107803345, 0.066833496, 0.03112793, 0.03451538, 0.01449585, -0.035095215, -0.0078125, 0.007320404, 0.010925293, -0.024993896, -0.0078125, -0.029953003, 0.028533936, 0.00071430206, 0.0016860962, 0.016067505, 0.004196167, -0.04385376, 0.009231567, -0.0009717941, -0.017120361, -0.025970459, 0.028533936, -0.011260986, 0.007003784, -0.019683838, -0.013313293, -1.7404556e-05, -0.034729004, 0.05050659, 0.009056091, 0.039886475, -0.0029182434, -0.09100342, -0.066467285, -0.022354126, 0.035186768, 0.008872986, 0.034698486, 0.009338379, 0.011375427, -0.026306152, 0.02708435, 0.004005432, -0.055114746, 0.030715942, -0.021118164, 0.0016784668, -0.012809753, -0.060150146, -0.0138549805, -0.0026512146, -0.047088623, 0.033416748, 0.007637024, -0.018920898, -0.0076904297, -0.04498291, 0.010528564, -0.010887146, -0.050079346, -0.019989014, -0.003967285, -0.015975952, 0.02217102, -0.005207062, 0.005355835, -0.02267456, 0.0027503967, -0.042541504, 0.0074539185, 0.034454346, -0.006965637, -0.039154053, 0.01777649, 0.022354126, 0.028930664, -0.029663086, -0.026519775, -0.026397705, 0.024856567, 0.011680603, 0.002483368, 0.055999756, -0.020950317, 0.0024604797, 0.041137695, -0.010848999, -0.017333984, 0.021240234, 0.01234436, 0.024414062, 0.0085372925]}, "B08689LFJ9": {"id": "B08689LFJ9", "original": "Brand: Grand patio\nName: Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle\nDescription: Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

      Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

      Note:
      The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
      Glass stones shown in photos are decoration only, and are NOT included.
      Batteries: 1 AA battery required (NOT included).

      Dimensions: 43.3\" (L) x 29.1\" (W) x 24.2\" (H)
      Package Includes:
      1 x 43 inch gas fire pit table
      1 x Hose regulator valve set (assembled)
      1 x Hardware and tools
      1 x Assembly & user manual

      Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.\nFeatures: Ambience: 18\" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires.\nMaterials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included.\nFeatures: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included).\nDual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off.\nDimensions & Packing Included:Overall Table Size :43.3\" (L) x 29.1\" (W) x 24.2\" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.\n", "metadata": {"Name": "Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle", "Brand": "Grand patio", "Description": "Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

      Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

      Note:
      The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
      Glass stones shown in photos are decoration only, and are NOT included.
      Batteries: 1 AA battery required (NOT included).

      Dimensions: 43.3\" (L) x 29.1\" (W) x 24.2\" (H)
      Package Includes:
      1 x 43 inch gas fire pit table
      1 x Hose regulator valve set (assembled)
      1 x Hardware and tools
      1 x Assembly & user manual

      Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.", "Features": "Ambience: 18\" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires.\nMaterials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included.\nFeatures: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included).\nDual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off.\nDimensions & Packing Included:Overall Table Size :43.3\" (L) x 29.1\" (W) x 24.2\" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.017242432, 0.013702393, -0.07800293, -0.06060791, 0.028656006, -0.021896362, 0.0015964508, 0.031097412, -0.01689148, -0.01713562, -0.07165527, 0.039978027, -0.025238037, -0.003709793, 0.041015625, -0.050720215, 0.040222168, -0.035461426, 6.765127e-05, -0.037353516, 0.013786316, -0.017410278, 0.011016846, 0.066589355, 0.031799316, -0.018325806, 0.018096924, 0.0029315948, 0.036346436, 0.023757935, 0.03048706, -0.03817749, 0.029251099, 0.017227173, -0.021774292, -0.03845215, -0.0044136047, -0.006954193, -0.014015198, 0.013038635, 0.023086548, -0.003622055, -0.060699463, 0.0005970001, -0.07019043, -0.040893555, 0.02658081, 0.016021729, -0.020324707, 0.04257202, -0.008384705, 0.035949707, -0.003824234, -0.011444092, 0.008651733, -0.006504059, -0.009925842, -0.01424408, 0.0010986328, -0.01272583, -0.00011754036, 0.008659363, 0.03918457, 0.025466919, -0.021713257, 0.01838684, 0.06585693, -0.005519867, 0.016967773, -0.04486084, -0.0032253265, 0.023971558, -0.0039100647, -0.0028381348, -0.020309448, -0.00025868416, 0.012458801, -0.005592346, 0.007041931, 0.024124146, 0.0014781952, 0.008918762, 0.03265381, -0.04397583, 0.02810669, -0.019882202, -0.017730713, -0.004688263, -0.012420654, -0.072143555, -0.0012760162, -0.068725586, -0.049987793, 0.045196533, 0.00017166138, -0.031463623, -0.050933838, -0.06854248, 0.027450562, 0.015304565, 0.009544373, -0.025634766, 0.007843018, 0.014465332, -0.013015747, 0.05419922, 0.019592285, -0.0066719055, -0.012229919, -0.0059509277, -0.0211792, -0.011314392, 0.045043945, -0.010665894, -0.019866943, -0.0030136108, 0.01499939, 0.0050086975, 0.013320923, -0.0008735657, -0.031280518, -0.03567505, -0.033813477, 0.049682617, 0.050445557, 0.033111572, -0.022354126, 0.062683105, -0.040863037, 0.037841797, 0.0013465881, 0.011779785, -0.0044822693, 0.04989624, -0.010322571, -0.006515503, 0.07116699, 0.044433594, 0.02406311, -0.030853271, 0.01259613, 0.013130188, 0.00015246868, -0.018630981, -0.014602661, 0.055511475, 0.040527344, -0.034576416, -0.050750732, -0.051849365, -0.02255249, 0.00027132034, 0.019470215, 0.034942627, -0.016799927, -0.0045433044, 0.0574646, -0.04937744, -0.014862061, -0.07647705, -0.0057258606, -0.0013599396, 0.005115509, -0.026901245, -0.043884277, 0.01272583, -0.0256958, 0.001619339, 0.010795593, 0.09472656, -0.036102295, 0.019836426, -0.0109939575, -0.0031108856, -0.025680542, -0.02798462, -0.012077332, 0.06756592, 0.050842285, -0.08917236, -0.06488037, -0.062805176, 0.12023926, -0.062408447, -0.0107421875, -0.033294678, 0.008300781, 0.009559631, 0.026657104, 0.0074272156, 0.019760132, -0.021697998, -0.0069236755, -0.0066375732, 0.04660034, -0.01159668, -0.061431885, -0.016647339, 0.00063610077, -0.028884888, -0.00819397, 0.0031337738, 0.008323669, 0.011695862, 0.005596161, 0.018569946, -0.013122559, 0.006565094, -0.01651001, 0.020492554, 0.012893677, -0.008918762, 0.0040512085, -0.028869629, -0.0116119385, -0.01663208, -0.006767273, 0.041046143, -0.013839722, 0.0061836243, 0.0063285828, -0.044525146, 0.005329132, -0.0010986328, 0.032958984, -0.025665283, -0.011161804, -0.031311035, 0.014389038, -0.0039405823, -0.018508911, 0.03967285, 0.078308105, 0.091308594, 0.01272583, 0.038909912, 0.079956055, 0.034851074, -0.020706177, -0.02909851, 0.012138367, -0.068481445, -0.056793213, 0.0067634583, -0.03881836, -0.008422852, 0.015098572, 0.012504578, -0.016723633, -0.008956909, 0.014602661, -0.010536194, 0.03930664, 0.019332886, -0.04562378, 0.02180481, -0.03527832, 0.017242432, 9.059906e-06, -0.016052246, -0.0047340393, 0.030548096, 0.039367676, -0.010467529, 0.027923584, -0.041503906, 0.05593872, 0.035125732, -0.0060310364, -0.046905518, 0.016479492, 0.052856445, -0.017227173, -0.023727417, 0.023406982, 0.012840271, -0.008552551, 0.013633728, -0.009986877, -0.026641846, 0.0031433105, -0.001701355, -0.045318604, -0.008422852, 0.059143066, 0.0055236816, -0.030914307, -0.018218994, -0.003320694, 0.022872925, 0.045837402, -0.016571045, -0.014732361, 0.011138916, 0.023223877, -0.026412964, 0.03366089, -0.0068511963, 0.025482178, -0.024368286, -0.004096985, 0.036010742, -0.041259766, 0.033325195, -0.011138916, 0.037200928, 0.0009274483, 0.020568848, 0.012413025, -0.04660034, 0.017211914, 0.0110321045, 0.030715942, 0.016738892, 0.0390625, -0.00049209595, 0.018508911, 0.059661865, 0.018951416, 0.0035209656, 0.010604858, 0.026260376, -0.017730713, -0.025268555, 0.016052246, -0.0053749084, -0.030181885, -0.022491455, -0.049865723, 0.0048561096, 0.04019165, -0.029327393, 8.177757e-05, -0.03262329, 0.0063476562, 0.016983032, -0.012161255, 0.03149414, -0.020248413, -0.06561279, -0.0446167, 0.0034160614, 0.005115509, -0.029037476, -0.028381348, -0.02319336, -0.019577026, 0.0053482056, -0.024353027, -0.01927185, 0.012901306, 0.0011634827, 0.035064697, -0.0008649826, 0.030960083, -0.011230469, -0.062683105, -0.0019407272, -0.012893677, -0.061828613, -0.011077881, -0.009757996, -0.043151855, -0.028259277, 0.05947876, -0.011787415, -0.06652832, -0.008377075, -0.013420105, 0.0026130676, 0.081848145, -0.0034389496, -0.080322266, -0.047698975, -0.054351807, -0.025497437, 0.06506348, -0.03668213, -0.0067329407, 0.018859863, -0.005519867, 0.024047852, -0.020843506, 0.020462036, 0.02670288, 0.011299133, 0.018707275, 0.03878784, 0.04071045, 0.0012073517, 0.030532837, 0.017730713, -0.03967285, -0.01776123, 0.026916504, 0.00982666, -0.03186035, -0.022125244, -0.042114258, -0.0062561035, -0.072021484, 0.009712219, 0.014785767, -0.04324341, -0.0033512115, -0.095336914, -0.04458618, -0.042266846, 0.007194519, 0.049224854, -0.013320923, -0.0015687943, -0.029937744, 0.020599365, -0.012290955, 0.018997192, 0.035949707, 0.0082092285, -0.03326416, -0.04638672, 0.041748047, -0.030700684, 0.03567505, 0.003479004, -0.051361084, -0.010498047, -0.025283813, 0.034606934, -0.02255249, 0.02418518, -0.03024292, -0.013015747, -0.010253906, -0.0010538101, -0.009536743, 0.013305664, -0.0011482239, -0.0149383545, 0.02130127, -0.025894165, -0.01133728, -0.006729126, -0.013168335, 0.029647827, -0.026290894, 0.0033416748, 0.005393982, -0.03439331, -0.011695862, -0.08502197, -0.029678345, 0.017044067, 0.0025348663, 0.014823914, 0.01902771, 0.024368286, 0.023406982, 0.040100098, 0.0015516281, -0.021713257, -0.023742676, -0.040374756, 0.039276123, 0.00541687, 0.017028809, -0.05279541, 0.04650879, 0.0021629333, -0.03250122, 0.043945312, -0.01751709, 0.027389526, 0.016586304, -0.00048160553, -0.008369446, 0.00945282, 0.023590088, -0.0025024414, -0.024932861, -0.019012451, -0.07080078, -0.009597778, -0.031433105, 0.060760498, 0.037109375, -0.013435364, 0.085998535, 0.080444336, -0.022994995, 0.061340332, 0.019165039, 0.044067383, -0.009231567, 0.10168457, -0.007537842, 0.021270752, -0.0069351196, 0.051513672, 0.0053100586, -0.019805908, -0.025817871, -0.0013141632, -0.005306244, -0.010391235, -0.018951416, 0.023483276, 0.014427185, -0.02658081, -0.0041542053, -0.03778076, -0.018066406, -0.06121826, -0.036132812, 0.004886627, -0.032836914, -0.004989624, 0.0036811829, 0.03111267, -0.027999878, -0.01474762, 0.007083893, 0.020599365, 0.02760315, 0.04360962, -0.01625061, 0.005683899, -0.03213501, 0.006248474, -0.031021118, 0.018035889, 0.004589081, -0.009880066, 0.0072746277, -0.00983429, 0.040374756, 0.03842163, -0.013313293, 0.0011463165, -0.042999268, -0.05255127, -0.004749298, 0.007144928, 0.010879517, -0.031158447, 0.011352539, -0.054534912, -0.006942749, -0.0129470825, -0.042938232, 0.015052795, -0.024871826, -0.0071144104, -0.09069824, -0.023651123, -0.021820068, 0.046813965, -0.061950684, 0.028244019, -0.008644104, -0.013290405, 0.017578125, 0.034973145, -0.06335449, -0.008003235, -0.0044517517, -0.010124207, 0.026504517, -0.02130127, 0.022415161, -0.045654297, -0.029251099, -0.035461426, 0.02633667, 0.0063476562, -0.01777649, -0.001789093, 0.0015029907, -0.010253906, 0.058410645, 0.021560669, -0.037322998, 0.013053894, 0.0020160675, -0.052612305, -0.04220581, -0.016067505, 0.034240723, -0.044158936, -0.03753662, -0.030670166, 0.058410645, 0.0065345764, 0.013824463, -0.014694214, -0.008621216, -0.0005607605, -0.00065135956, -0.06726074, -0.05105591, -0.00094509125, -0.023544312, 0.0006070137, -0.006362915, -0.03390503, 0.060638428, 0.008018494, 0.016357422, -0.024917603, -0.036071777, 0.01423645, -0.016845703, 0.014381409, -0.008483887, -0.025741577, -0.014045715, 0.061065674, -0.05581665, 0.045440674, 0.042633057, 0.01096344, 0.031082153, 0.0031909943, 0.0034236908, -0.016967773, 0.032196045, -0.072631836, -0.03781128, -0.008644104, 0.00040912628, -0.0385437, -0.02078247, -0.002199173, -0.022735596, -0.021072388, 0.009498596, 0.0061798096, -0.013786316, -0.02015686, 0.009231567, -0.010253906, 0.0005297661, 0.00881958, -0.009094238, -0.017715454, 0.006477356, -0.026916504, -0.023254395, 0.004398346, -0.04196167, 0.0074920654, -0.041748047, 0.01499176, -0.033721924, 0.034729004, 0.022354126, 0.04321289, 0.0021743774, 0.0463562, -0.007457733, -0.015945435, -0.047943115, -0.011634827, 0.024154663, -0.051452637, 0.0053901672, -0.018112183, -0.01096344, 0.009529114, -0.022766113, 0.033447266, -0.020980835, -0.008773804, 0.023406982, 0.018035889, 0.0027828217, -0.014755249, 0.070129395, -0.0005850792, 0.0041122437, -0.044799805, 0.0149383545, 0.0131073, 0.04171753, -0.03741455, -0.01235199, 0.046844482, -0.026138306, -0.03982544, 0.003566742, 0.0357666, -0.046783447, 0.0037899017, 0.020935059, 0.002008438, -0.0234375, 0.021865845, 0.0030498505, 0.017669678, 0.005054474, -0.051086426, 0.011039734, 0.039520264, -0.030334473, 0.010154724, 0.01612854, -0.036834717, -0.043426514, -0.033325195, 0.015136719, 0.002986908, -0.012504578, 0.0053100586, 0.030899048, 0.02758789, -0.04660034, -0.04663086, -0.04208374, -0.0057678223, -0.026809692, 0.05834961, -0.0657959, 0.001871109, 0.01285553, -0.01423645, 0.007736206, 0.012580872, -0.072143555, -0.03375244, 0.024734497, 0.016937256, -6.788969e-05, -0.06573486, 0.061767578, -0.036224365, -0.036315918, -0.040008545, 0.02168274, 0.016418457, -0.02319336, 0.0635376, 0.022064209, 0.00919342, 0.018951416, -0.0131073, -0.062347412, -0.007896423, 0.0006046295, -0.07183838, -0.0077438354, -0.052490234, 0.025619507, -0.011833191, -0.00014579296, -0.007347107, 0.042022705, -0.01689148, -0.07330322, -0.024307251, 0.011833191, 0.013626099, -0.02305603, 0.005882263, -0.008026123, 0.008857727, -0.010635376, 0.004306793, -0.0028381348, 0.0049819946, 0.0016651154, -0.0005645752, -0.0048561096, 0.011138916, -0.0039901733, -0.00066804886, 0.013092041, 0.0055656433, -0.0021705627, -0.030944824, -0.009124756, 0.018981934, 0.023452759, 0.024642944, -0.00137043, 0.003288269, -0.0099105835, -0.0023784637, 0.039367676, 0.011726379, -0.02482605, -0.012512207, 0.06008911, 0.016464233, -0.026794434, 0.0113220215, 0.028381348, 4.0769577e-05, -0.07861328, -0.007461548, 0.020568848, -0.043151855, -0.009269714, -0.03253174, -0.0029144287, -0.007209778, 0.010559082, 0.01058197, 0.033355713, -0.004753113, -0.00037789345, -0.013328552, 0.017562866, -0.021011353, 0.0023536682, 0.008911133, -0.0012569427, 0.011955261, 0.0088272095, 0.004611969, -0.007736206, -0.035064697, -0.005508423, 0.038360596, -0.008277893, 0.019515991, -0.030075073, 0.04486084, 0.029067993, -0.08874512, 0.0070228577, -0.041900635, -0.008651733, -0.017288208, -0.041778564, -0.017669678, -0.014823914, 0.0146102905, -0.02532959, 0.046661377, -0.007247925, 0.024215698, 0.014884949, -0.007045746, -0.012466431, -0.020309448, 0.04437256, -0.046325684, -0.023590088, 0.006504059, -0.0619812, 0.011856079, 0.043121338, -0.020736694, 0.024261475, 0.005584717, 0.012573242, -0.036834717, 0.0015468597, -0.02470398, -0.016738892, 0.031982422, 0.009681702, -1.23381615e-05, 0.02986145, 0.037200928, 0.01272583, -0.0034389496, -0.026062012, 0.039886475, -0.05142212, 0.041992188, 0.027389526, -0.005847931, -0.015213013, -0.033050537, -0.017944336, 0.016082764, 0.008926392, -0.012969971, 0.03466797, -0.005836487, -0.018692017, -0.011604309, 0.027709961, -0.020050049, 0.017959595, -0.032470703, 0.022644043, 0.0024814606, -0.043273926, -0.017288208, -0.001786232, 0.007972717, 0.012260437, 0.027954102, 0.035003662, 0.018737793, 0.029312134, 0.0051345825, -0.0063171387, -0.022003174, 0.009246826, -0.012458801, 0.047058105, -0.009567261, 0.031921387, -0.026275635, -0.040924072, -0.026977539, 0.035827637, -0.049224854, 0.0015172958, 0.042755127, -0.016815186, -0.0137786865, -0.0096588135, 0.056488037, -0.008995056, -0.006210327, 0.039245605, 0.025619507, 0.01828003, 0.054016113, 0.0041275024, -0.059326172, -0.08129883, -0.0005040169, -0.030670166, 0.031051636, 0.028793335, 0.020629883, 0.03857422, 0.01586914, 0.02178955, 0.04727173, 0.02357483, -0.0098724365, 0.02508545, -0.06298828, -0.030548096, 0.03717041, 0.015327454, -0.022766113, -0.025405884, 0.029403687, 0.022827148, 0.04537964, 0.030838013, 0.019699097, -0.09082031, -0.03274536, -0.06500244, 0.04650879, 0.005191803, -0.024749756, 0.048675537, 0.005279541, -0.058410645, 0.048461914, 0.008666992, 0.028869629, 0.044128418, -0.0124435425, 0.0070648193, -0.0418396, -0.021911621, -0.06744385, -0.011489868, 0.04171753, -0.018630981, -0.022979736, -0.0065727234, -0.0014638901, -0.00025320053, -0.013969421, 0.03262329, -0.028137207, 0.014305115, 0.008094788, -0.004470825, 0.0050849915, -0.028381348, 0.015640259, -0.022125244, -0.01360321, 0.010025024, 0.020629883, -0.030914307, -0.034820557, -0.033447266, 0.026107788, -0.036895752, -0.08276367, -0.043823242, -0.030685425, -0.0024776459, 0.022491455, -0.025177002, 0.016525269, -0.0126953125, 0.012763977, -0.036193848, 0.02519226, 0.024291992, 0.021240234, -0.062561035, 0.059783936, 0.032348633, 0.07098389, -0.03262329, -0.05432129, -0.05090332, 0.021347046, -0.017745972, 0.0052833557, 0.029968262, -0.017486572, 0.0015516281, 0.008010864, -0.066101074, -0.02848816, -0.012969971, 0.038879395, -0.0071792603, 0.009971619]}, "B0098HR1FI": {"id": "B0098HR1FI", "original": "Brand: Weber\nName: Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual\nGrill dimensions: Lid Open - 63\"H x 52\"W x 32\"D. Lid Closed - 45.5\"H x 52\"W x 24\"D. Grilling area dimensions: 529 square inches\nPropane gas grill works with Standard 20 lb LP tank (sold separately).\nOther specifications: BTU-Per-Hour Input \u2013 32,000. Stainless Steel Burners \u2013 3. Side tables \u2013 2 (Stationary) Swivel Casters \u2013 2\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\n", "metadata": {"Name": "Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black", "Brand": "Weber", "Description": "", "Features": "Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual\nGrill dimensions: Lid Open - 63\"H x 52\"W x 32\"D. Lid Closed - 45.5\"H x 52\"W x 24\"D. Grilling area dimensions: 529 square inches\nPropane gas grill works with Standard 20 lb LP tank (sold separately).\nOther specifications: BTU-Per-Hour Input \u2013 32,000. Stainless Steel Burners \u2013 3. Side tables \u2013 2 (Stationary) Swivel Casters \u2013 2\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009315491, -0.005874634, -0.029678345, -0.026947021, -0.022445679, 0.00029850006, -0.018157959, 0.025177002, -0.009666443, 0.013717651, -0.050476074, 0.014312744, 0.017211914, -0.02279663, 0.013931274, -0.026443481, 0.028533936, 0.03137207, 0.041748047, -0.0060195923, -0.0037174225, 0.017333984, 0.020141602, 0.059753418, 0.055236816, -0.08581543, 0.020401001, -0.008277893, 0.053253174, -0.004776001, 0.03112793, 0.013595581, 0.04348755, -0.00025081635, -0.023162842, 0.0074882507, 0.051116943, -0.028442383, 0.0016241074, 0.0116119385, 0.01197052, 0.012001038, 0.0017299652, 0.03717041, -0.029327393, -0.05496216, 0.03152466, -0.022018433, 0.010696411, -0.0019760132, -0.012481689, 0.016464233, 0.0022602081, -0.032073975, -0.01927185, -0.031585693, 0.065979004, -0.0690918, 0.016021729, -0.018951416, -0.016036987, 0.013595581, 0.035095215, -0.012565613, -0.0181427, 0.027252197, 0.074645996, -0.024261475, 0.012878418, -0.018356323, -0.0012664795, 0.01600647, 0.018066406, 0.039855957, -0.025726318, -0.060546875, 0.024429321, -0.024536133, 0.036346436, 0.032165527, -0.0074920654, 0.015159607, -0.008682251, -0.00040388107, -0.005027771, 0.014961243, -0.022460938, -0.01878357, -0.006389618, -0.048828125, -0.0063667297, -0.03552246, -0.044921875, 0.036743164, -0.0056037903, -0.019088745, -0.036743164, -0.08679199, 0.021484375, -0.02507019, 0.046783447, -0.039520264, -0.004119873, 0.032958984, -0.008041382, 0.0126953125, -0.01676941, 0.004131317, 0.021270752, 0.011405945, -0.030181885, -0.014335632, -0.009414673, 0.0072364807, -0.046173096, 0.012329102, -0.025863647, -0.014923096, -0.0066719055, 0.021896362, -0.02609253, -0.031097412, 0.04421997, 0.02684021, 0.046142578, 0.045410156, -0.01701355, -0.008094788, -0.041290283, -0.007972717, -0.023635864, 0.033996582, 0.04763794, 0.042785645, 0.0054397583, 0.0033493042, 0.0057525635, -0.022033691, -0.005493164, -0.018600464, 0.010276794, 3.105402e-05, 0.014007568, -0.0069236755, -0.007385254, 0.022460938, 0.034301758, -0.0029850006, -0.02154541, -0.03277588, -0.025314331, 0.013175964, 0.03555298, 0.024917603, -0.07373047, 0.00970459, -0.017913818, -0.012275696, -0.046295166, -0.056396484, -0.036743164, -0.015403748, -0.019989014, -0.022537231, -0.009887695, 0.02192688, 0.02861023, 0.016113281, 0.030029297, 0.054260254, -2.7477741e-05, -0.04437256, 0.059448242, 0.020385742, -0.027572632, 0.015731812, -0.011924744, -0.0007033348, 0.05316162, -0.04660034, -0.0602417, -0.040405273, 0.06384277, -0.012680054, -0.005470276, -0.00440979, 0.034454346, -0.006225586, -0.011352539, 0.011795044, 0.042877197, 0.035705566, -0.013511658, -0.022537231, 0.03994751, 0.017227173, -0.07006836, -0.003686905, 0.0024471283, -0.032226562, 0.009681702, 0.02180481, -0.008735657, -0.009742737, 0.0121154785, -0.019104004, 0.016967773, 0.014602661, -0.009147644, 0.0078086853, -0.00023007393, -0.009384155, -0.003993988, -0.035186768, -0.004512787, 0.0090789795, -0.008850098, -0.034118652, 0.032562256, -0.022628784, 0.05331421, 0.023742676, 0.009086609, 0.025863647, 0.0018968582, 0.002166748, -0.012794495, 0.0047569275, 0.01322937, -0.002811432, 0.0152282715, 0.017730713, 0.08898926, 0.076293945, 0.0141067505, 0.048431396, 0.05999756, -0.015113831, -0.037200928, -0.013832092, 0.0044784546, -0.029281616, -0.042114258, 0.015258789, -0.018447876, -0.006412506, 0.015235901, 0.005809784, -0.018218994, -0.00068712234, 0.03137207, -0.012748718, 0.0340271, 0.04586792, -0.032806396, 0.021392822, -0.029571533, -0.018417358, 0.001490593, 0.04537964, -0.019851685, 0.03768921, 0.052368164, -0.010261536, 0.040771484, 0.009292603, 0.047058105, 0.03881836, -0.040222168, 6.240606e-05, 0.019363403, 0.039978027, 0.006378174, -0.031082153, -0.07824707, 0.030075073, -0.012275696, 0.03942871, -0.004432678, -0.038635254, 0.011054993, 0.002773285, 0.03265381, -0.0015211105, 0.0385437, -0.015388489, 0.017868042, -0.01234436, 0.022857666, 0.012176514, 0.033203125, -0.016418457, -0.020187378, 0.013542175, 0.0101623535, -0.03781128, 0.10223389, -0.0066986084, 0.007850647, 0.0062942505, 0.06390381, 0.037231445, -0.029159546, 0.007217407, -0.018417358, -0.03967285, -0.026901245, 0.0036945343, -0.0074691772, -0.06713867, 0.03955078, 0.07421875, 0.022018433, -0.03845215, 0.041809082, 0.019439697, -0.00080394745, 0.025497437, 0.025131226, 0.04046631, -0.007713318, -0.027633667, -0.018096924, -0.023422241, -0.0079193115, 0.0085372925, -0.010406494, 0.0024528503, -0.019500732, -0.013580322, -0.026245117, -0.045135498, -0.022842407, 0.0017547607, -0.0053863525, -0.005142212, 0.0042648315, 0.058776855, 0.00045776367, -0.050872803, 0.021652222, -0.05593872, -0.017349243, 0.0385437, -0.031585693, -0.050109863, 0.029434204, 0.009864807, 0.02520752, 0.0022411346, 0.0065574646, -0.017974854, -0.025772095, -0.03829956, -0.023330688, -0.011528015, 0.022247314, -0.059448242, -0.027374268, -0.074157715, -0.031021118, -0.009010315, -0.06713867, 0.017196655, 0.06774902, -0.008605957, -0.017028809, -0.023239136, -0.016693115, 0.00037932396, -0.0013494492, 0.0057029724, -0.03326416, -0.021148682, -0.03778076, 0.011352539, 0.03414917, -0.041900635, 0.007789612, 0.011634827, -0.021652222, 0.013771057, -0.039978027, -0.00422287, 0.01398468, 0.01574707, 0.040527344, 0.04788208, 0.020645142, -0.015464783, 0.012458801, 0.041137695, -0.004486084, -0.013885498, 0.016586304, -0.022781372, 0.024169922, 0.034606934, -0.033325195, -0.015609741, -0.09613037, 0.011672974, 0.023223877, -0.039733887, -0.023010254, -0.035003662, -0.083984375, -0.03555298, 0.0016002655, 0.09869385, 0.0115737915, -0.03503418, 0.0098724365, -0.007575989, 0.022903442, 0.012260437, -0.021957397, -0.015281677, 0.0010185242, 0.00022125244, 0.018539429, -0.033599854, 0.017608643, 0.035095215, -0.022399902, 0.018600464, -0.01209259, 0.014976501, -0.021133423, 0.026306152, -0.00340271, -0.0025291443, -0.023757935, -0.009986877, 0.0048217773, 0.028167725, -0.0034713745, -0.010543823, 0.015960693, -0.01826477, -0.00806427, 0.006713867, -0.0025920868, 0.051849365, -0.0061454773, -0.017105103, -0.02003479, -0.051239014, -0.002210617, 0.0026435852, -0.0018072128, -0.0042648315, -0.0056037903, 0.024505615, -0.02003479, 0.09991455, -0.0035305023, 0.04168701, -0.0045204163, -0.035064697, -0.01626587, -0.039611816, -0.003320694, -0.006439209, 0.015235901, -0.0317688, 0.038330078, 0.032958984, 0.027038574, -0.018218994, 0.015380859, 0.0018644333, -0.01348114, -0.023132324, -0.0015516281, -0.0126571655, 0.038482666, -0.0010461807, 0.009849548, -0.05609131, -0.013420105, -0.0143966675, -0.07946777, 0.11804199, 0.08062744, -0.035064697, 0.09539795, 0.07537842, -0.016067505, 0.054595947, 0.04019165, -0.019821167, -0.0044403076, 0.051971436, -0.059020996, 0.022567749, 0.010658264, -0.05621338, 0.005760193, -0.006175995, -0.024780273, 0.022384644, 0.0076904297, -0.015045166, -0.03918457, 0.010513306, 0.007575989, -0.017745972, 0.014404297, -0.018554688, -0.019866943, -0.039031982, 0.011512756, 0.029754639, -0.039398193, -0.024978638, -0.007133484, -0.019897461, -0.027450562, 0.023010254, 0.017745972, 0.012290955, 0.013259888, 0.049041748, -0.02532959, -0.004131317, -0.013626099, -0.03186035, -0.003578186, -0.0013227463, 0.015930176, 0.011917114, -0.009101868, 0.008224487, 0.0036888123, 0.001868248, 0.016921997, -0.0134887695, -0.072387695, -0.04019165, 0.008125305, -0.00012123585, -0.010467529, -0.051635742, -0.01486969, -0.04107666, -0.053863525, -0.024291992, -0.045074463, -0.028015137, 0.0035972595, 0.02217102, -0.016555786, 0.0069999695, -0.030380249, -0.032318115, -0.06604004, 0.025131226, -0.0040512085, 0.005466461, 0.019348145, 0.050842285, -0.050109863, -0.024429321, -0.023269653, -0.0140686035, 0.049591064, 0.009353638, 0.038635254, -0.033966064, 0.0051193237, -0.011962891, 0.08111572, 0.008468628, 0.011642456, -0.058532715, -0.03427124, 0.0031223297, 0.029953003, 0.04925537, -0.0068588257, 0.019607544, -0.024459839, 0.0105896, -0.06744385, 0.002544403, 0.01638794, -0.032440186, -0.059265137, -0.024398804, 0.07281494, -0.0025901794, 0.012481689, 0.016601562, 0.014671326, -0.023269653, 0.038909912, -0.06402588, -0.00819397, -0.00085020065, -0.01209259, 0.005340576, 0.0013313293, -0.0074386597, 0.019485474, 0.026779175, 0.02659607, 0.011558533, 0.009864807, 0.030426025, 0.019180298, 0.027252197, -0.05303955, 0.0076179504, -0.016601562, -0.011924744, -0.07122803, 0.08453369, 0.026290894, 0.015426636, 0.0065727234, 0.016143799, -5.4061413e-05, -0.060516357, -0.017959595, -0.0005917549, -0.0061454773, -0.03579712, -0.044921875, -0.0014419556, -0.041778564, -0.005142212, 0.010681152, 0.019195557, 0.03414917, -0.031402588, -0.003129959, -0.011833191, -0.03164673, 0.0059318542, -0.0063476562, -0.0009880066, -0.052642822, -0.020385742, 0.031341553, -0.030166626, -0.02746582, 0.0019760132, 0.003982544, -0.012283325, 0.014968872, 0.0005888939, -0.05908203, 0.02709961, 0.03527832, 0.016662598, -0.0031166077, -0.006214142, 0.009735107, -0.01687622, -0.015289307, 0.036254883, -0.03741455, 0.014480591, 0.054504395, -0.040893555, -0.038024902, 0.025283813, -0.047546387, 0.049621582, 0.0107421875, -0.056610107, 0.04928589, 0.0015392303, 0.0050239563, -0.06896973, 0.10510254, -0.023544312, 0.024108887, -0.080566406, 0.0056037903, 0.059265137, 0.04660034, -0.017868042, -0.033325195, 0.04562378, -0.008224487, -0.013214111, -0.0052108765, 0.04248047, -0.026687622, 0.011756897, -0.00041651726, 0.014717102, -0.042755127, -0.00819397, -0.035461426, -0.002155304, 0.008224487, -0.012298584, 0.016571045, -0.0071372986, -0.040802002, -0.057891846, -0.02458191, -0.0007286072, 0.019348145, -0.0043945312, -0.01940918, -0.004169464, -0.005531311, 0.007572174, 0.010368347, 0.003967285, -0.025726318, -0.02003479, -0.005821228, 0.018188477, -0.009140015, 0.024963379, -0.029006958, 0.0031490326, -0.020889282, -0.0052337646, 0.013206482, -0.0068206787, -0.07885742, 0.00869751, -0.01309967, -0.0057296753, -0.026519775, -0.048431396, 0.059783936, -0.05368042, -0.05328369, -0.036468506, 0.045410156, -0.04071045, -0.039611816, 0.074279785, 0.058135986, 0.0115737915, 0.033691406, 0.00034189224, -0.048980713, -0.011642456, 0.008346558, -0.056762695, -0.04638672, -0.03717041, -0.008651733, -0.006149292, 0.0036334991, 0.017730713, 0.050201416, 0.028869629, -0.014320374, -0.0053520203, 0.010154724, -0.0067710876, -0.026504517, 0.005924225, -0.030899048, 0.004837036, -0.022598267, -0.0013608932, -0.022750854, -0.00012022257, 0.0017938614, 0.04650879, 0.010917664, -0.025665283, 0.0029964447, 0.058898926, -0.035369873, 0.059906006, 0.004085541, -0.03451538, 0.001332283, 0.059570312, 0.0105896, 0.05441284, -0.07281494, -0.026489258, -0.039093018, 0.029418945, 0.03253174, 0.04031372, -0.04534912, -0.0026817322, 0.046020508, 0.030410767, 0.04107666, 0.004299164, 0.036743164, -0.0010128021, -0.03363037, 0.007911682, 0.018249512, -0.022277832, -0.018066406, -0.05783081, 0.010322571, 0.02696228, 0.014350891, 0.026016235, -0.03604126, 0.058746338, 0.015975952, -0.004131317, 0.024093628, 0.0029621124, -0.011146545, -0.010284424, -0.03189087, 0.03262329, 0.018463135, -0.007896423, 0.013420105, 0.03955078, -0.028305054, 0.013702393, 0.018417358, 0.029464722, -0.028137207, 0.04324341, 0.015899658, -0.06768799, -0.013877869, 0.02973938, 0.025924683, 0.018249512, -0.0982666, -0.036346436, -0.035186768, 0.009864807, 0.026428223, 0.008979797, 0.045196533, 0.025558472, -0.0037879944, 0.010658264, -0.011123657, -0.03552246, 0.048858643, 0.017028809, 0.0010166168, -0.015197754, 0.007785797, 0.049835205, 0.005519867, 0.0035438538, 0.04046631, -0.051483154, 0.00349617, 0.011108398, 0.039764404, -0.022491455, -0.022827148, 0.037017822, 0.02835083, -0.013046265, -0.0051231384, 0.0020065308, 0.02268982, -0.016326904, -0.06958008, 0.0046195984, -0.076293945, -0.0042686462, 0.025772095, 0.062561035, -0.03765869, -0.030319214, -0.012573242, -0.009933472, -0.009498596, 0.05984497, -0.03074646, 0.06402588, 0.038757324, 0.05117798, 0.052612305, 0.0018692017, 0.01020813, 0.027526855, -0.016052246, 0.0061912537, -0.018875122, -0.009635925, -0.0063552856, 0.0022506714, 0.010292053, 0.0287323, 0.003112793, 0.045288086, 0.0063171387, -0.0057296753, -0.022918701, 0.012077332, 0.01222229, -0.027008057, 0.015350342, -0.032592773, 0.002614975, 0.0024089813, -0.018051147, -0.058410645, 0.0020866394, -0.029037476, -0.0013847351, -0.00037932396, -0.029785156, -0.026153564, 0.004798889, 0.046813965, -0.062347412, -0.019439697, -0.019927979, 0.033325195, -0.014320374, 0.01701355, -0.008911133, -0.0068244934, -0.0039100647, 0.0126953125, -0.0013809204, -0.033355713, -0.031921387, 0.013282776, 0.017593384, -0.019744873, -0.000995636, 0.0496521, 0.0078125, -0.018493652, 0.032226562, -0.0012807846, -0.028121948, 0.0082473755, 0.012718201, 0.0007829666, 0.029220581, 0.023757935, -0.027679443, 0.036102295, 0.011871338, -0.00037312508, -0.039154053, -0.008277893, -0.024002075, -0.047729492, 0.004447937, -0.01436615, 0.013496399, 0.0055351257, -0.049346924, -0.0063667297, 0.015617371, 0.021240234, 0.015136719, -0.018081665, 0.036621094, -0.03161621, -0.036895752, -0.069885254, -0.0184021, 0.038604736, 0.046569824, -0.006916046, 0.013710022, -0.0027999878, -0.029800415, 0.0061073303, -0.015167236, 0.005470276, -0.033203125, 0.007347107, 0.010154724, -0.04953003, 0.0178833, 0.0049552917, -0.0031604767, -0.061462402, 0.004169464, 0.017501831, -0.028244019, -0.021057129, -0.021896362, 0.019699097, -0.028549194, -0.033325195, -0.05456543, -0.03491211, -0.0018453598, 0.0064201355, -0.03100586, 0.041748047, 0.0098724365, 0.021408081, -0.016906738, 2.0623207e-05, 0.004951477, 0.010246277, -0.011405945, 0.026824951, 0.0066337585, 0.034362793, -0.00472641, -0.1171875, -0.04095459, 0.029006958, 0.023208618, -0.017913818, 0.054748535, -0.04748535, 0.014717102, 0.0033092499, -0.013404846, -0.019943237, 0.015701294, 0.034698486, -0.008201599, 0.030044556]}, "B00RFXS1Z6": {"id": "B00RFXS1Z6", "original": "Brand: Weber\nName: Weber 51010001 Q1200 Liquid Propane Grill, Black\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nDimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\nEasy-start electronic ignition and infinite control burner valve settings\nCare instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)\n", "metadata": {"Name": "Weber 51010001 Q1200 Liquid Propane Grill, Black", "Brand": "Weber", "Description": "", "Features": "One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nDimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\nEasy-start electronic ignition and infinite control burner valve settings\nCare instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0038394928, 0.018875122, -0.033203125, -0.017974854, -0.007293701, -0.014915466, -0.013458252, 0.00011855364, -0.03817749, 0.012306213, -0.022415161, 0.026397705, 0.00022792816, -0.033325195, 0.032318115, -0.022338867, 0.019760132, 0.018814087, 0.03111267, -0.0021648407, 0.016052246, 0.026428223, -0.02116394, 0.04220581, 0.04449463, -0.06896973, -0.002603531, 0.015449524, 0.027038574, 0.0045166016, 0.036865234, 0.0021648407, 0.025299072, 0.0149002075, -0.035888672, -0.058502197, 0.026000977, -0.020935059, -0.023620605, 0.02986145, 0.05117798, -0.027130127, 0.0010929108, 0.01461792, 0.0016069412, -0.03756714, 0.07501221, -0.030075073, 0.032043457, 0.015136719, -0.006401062, 0.022857666, -0.006828308, -0.03640747, -0.01763916, -0.017562866, 0.04937744, -0.033477783, 0.012229919, -0.03918457, -0.03314209, 0.013847351, 0.04071045, 0.0051460266, -0.017837524, 0.021820068, 0.095336914, -0.02229309, -0.0054740906, -0.032562256, 0.017562866, 0.013473511, 0.022888184, 0.04510498, -0.018096924, -0.05722046, 0.045013428, -0.0014858246, 0.022399902, 0.031204224, -0.020324707, -0.01184845, 0.014373779, 0.0005674362, 0.0047683716, 0.021896362, -0.03189087, 0.0007100105, -0.021011353, -0.020523071, -0.003824234, -0.03729248, -0.04324341, 0.05053711, 0.016036987, -0.031829834, -0.06365967, -0.09075928, 0.037963867, 0.015541077, 0.030670166, -0.023605347, 0.018218994, 0.018295288, 0.008430481, 0.06384277, -0.0032520294, 0.030334473, 0.026901245, -0.014831543, -0.0027923584, -0.009033203, 0.007095337, -0.012626648, -0.029251099, -0.001405716, -0.025009155, 0.018371582, 0.016540527, 0.008201599, -0.012435913, -0.005001068, 0.0064811707, 0.013786316, 0.0017242432, 0.019088745, -0.0046424866, -0.00843811, -0.028564453, -0.0077934265, -0.02760315, 0.014045715, 0.033843994, 0.06555176, 0.011505127, 0.003955841, 0.031219482, -0.004386902, 0.024353027, -0.0015306473, -0.015670776, -0.041107178, 0.0038471222, 0.018569946, -0.02835083, 0.019683838, 0.034729004, 0.012107849, -0.04095459, -0.05923462, -0.00042676926, 0.00869751, 0.050201416, 0.00340271, -0.05340576, -0.0017528534, -0.008781433, -0.01222229, -0.041931152, -0.05319214, -0.013618469, -0.021957397, 0.011077881, 0.024154663, -0.029449463, 0.058166504, 0.005680084, -0.008918762, 0.030914307, 0.061157227, 0.023208618, -0.06304932, 0.024597168, 0.032196045, -0.011672974, 0.027389526, -0.024536133, 0.0017709732, 0.066467285, -0.06695557, -0.060516357, -0.031829834, 0.08459473, -0.016937256, -0.00045847893, -0.017196655, 0.026947021, -0.006095886, -0.011711121, 0.009895325, 0.04800415, 0.021057129, 0.013900757, -0.053100586, 0.04888916, 0.0048599243, -0.05255127, -0.012428284, 0.008583069, -0.018341064, 0.010795593, -0.0034713745, -0.009780884, -0.014251709, -0.02267456, -0.024276733, 0.001871109, 0.0032653809, 0.017715454, 0.016647339, -0.009490967, -0.01260376, 0.020828247, -0.0524292, -0.029541016, 0.015853882, -0.041046143, -0.015579224, 0.031204224, -0.011222839, 0.059783936, 0.017715454, 0.029190063, 0.0038928986, 0.022018433, 0.0035476685, -0.022781372, 0.0016899109, 0.023132324, -0.007633209, 0.014862061, 0.015037537, 0.10028076, 0.09375, 0.012062073, 0.03982544, 0.06896973, -0.0014638901, -0.0390625, -0.015113831, 0.0031490326, -0.012069702, -0.027359009, 0.014404297, 0.008964539, 0.010795593, 0.015007019, -0.004146576, -0.012550354, 0.019973755, 0.041290283, 0.021377563, 0.023544312, 0.011161804, -0.024780273, 0.036865234, -0.0075912476, -4.3690205e-05, -0.030029297, 0.04296875, -0.0066490173, 0.040008545, 0.013267517, 0.01399231, 0.0047035217, -0.032226562, 0.019927979, -0.0015010834, -0.014129639, -0.038085938, 0.037353516, 0.04916382, -0.008766174, -0.053741455, -0.03793335, 0.0020618439, -0.013061523, 0.0569458, -0.0042304993, -0.051483154, 0.028884888, 0.028030396, 0.008079529, -2.503395e-06, 0.05166626, 0.011886597, -0.013534546, 0.0032234192, 0.019058228, 0.019348145, 0.04937744, -0.01713562, -0.021240234, 0.0045814514, -0.0013580322, -0.042419434, 0.13317871, -0.0009860992, -0.004928589, -0.009460449, 0.06896973, 0.022506714, -0.054260254, 0.026260376, 0.0065345764, -0.026290894, 0.007575989, 0.019454956, 0.0098724365, -0.031799316, 0.008705139, 0.04071045, 0.03277588, 0.0012292862, 0.051330566, 0.003129959, 0.028442383, 0.05807495, 0.038330078, 0.024353027, -0.0039138794, -0.01322937, -0.055541992, -0.02532959, -0.00868988, 0.03277588, -0.03527832, -0.009414673, -0.020080566, -0.006225586, -0.008781433, -0.024398804, -0.0116119385, 0.0036087036, -0.010635376, -0.0042686462, 0.010276794, 0.057403564, -0.0012226105, -0.019607544, 0.020980835, -0.043701172, -0.019927979, 0.007724762, -0.019622803, -0.018936157, 0.021102905, 0.020935059, -0.02633667, 0.006839752, -0.006137848, -0.039642334, 0.0016078949, -0.032592773, 0.004714966, -0.014572144, -0.023727417, -0.05795288, -0.037750244, -0.08319092, 0.0018901825, 0.00080537796, -0.029815674, 0.009902954, 0.034423828, -0.030960083, -0.036468506, 0.001285553, -0.046875, -0.001742363, 0.009277344, -0.0068511963, -0.05328369, -0.02293396, -0.050476074, 0.021774292, 0.042388916, -0.03781128, -0.020080566, 0.011993408, -0.015701294, 0.03704834, -0.06750488, 0.0390625, 0.030548096, 0.015945435, 0.03604126, 0.018341064, 0.028335571, -0.017578125, 0.0045661926, 0.019500732, 0.0006427765, -0.013145447, -0.01890564, -0.006504059, -0.004459381, -0.0055503845, -0.016357422, -0.0039787292, -0.095214844, 0.033813477, 0.014434814, -0.026931763, -0.0231781, -0.04562378, -0.078308105, -0.04800415, 0.013694763, 0.083740234, 0.0093688965, -0.011276245, -0.0046806335, 0.011436462, -0.004009247, 0.012641907, -0.0011606216, -0.0048828125, -0.014060974, -0.01109314, 0.03665161, -0.046936035, 0.0024776459, 0.009140015, -0.059448242, 0.015686035, -0.037078857, 0.027236938, -0.02519226, 0.050231934, -0.010902405, 0.008804321, -0.048034668, -0.020233154, 0.015975952, 0.056610107, 0.013015747, 0.004966736, 0.014701843, -0.009025574, -0.014030457, -0.016143799, -0.016494751, 0.058563232, -0.02293396, 0.005092621, -0.055633545, -0.054779053, 0.009414673, -0.03894043, 0.029891968, -0.008140564, 0.050933838, 0.014778137, -0.0007710457, 0.1227417, -0.006767273, 0.053344727, 0.01373291, -0.009986877, -0.0039024353, -0.04937744, 0.05734253, 0.022384644, -0.0030765533, -0.020874023, 0.019012451, 0.036590576, 0.006664276, -0.012084961, 0.024673462, 0.013702393, -0.0041923523, -0.010398865, -0.0077438354, -0.02168274, 0.031402588, -0.0046081543, 0.016036987, -0.034820557, -0.046142578, -0.0034923553, -0.056884766, 0.08721924, 0.058502197, -0.022750854, 0.10095215, 0.07458496, -0.011009216, 0.021820068, 0.04046631, -0.041992188, -0.016601562, 0.041229248, -0.055419922, 0.016738892, 0.0044555664, -0.055145264, 0.019439697, -0.0025959015, -0.021514893, 0.018981934, -0.0034503937, -0.02746582, -0.021453857, 0.0014886856, -0.005832672, -0.03274536, 0.008674622, 0.0005841255, -0.028305054, -0.03475952, -0.01991272, 0.008071899, -0.033355713, -0.055603027, 0.03024292, -0.012817383, -0.029556274, 0.008544922, 0.024475098, -0.0051498413, 0.009101868, 0.06021118, -0.028549194, 0.017501831, -0.05493164, -0.030670166, -0.008056641, 0.053131104, 0.019180298, -0.0013456345, 0.023727417, -0.024795532, 0.009803772, -0.0065460205, 0.013298035, -0.006252289, -0.062683105, -0.050933838, 0.013252258, 0.03378296, -0.01474762, -0.050567627, -0.004676819, -0.014732361, -0.012336731, 0.010147095, -0.043823242, -0.010131836, 0.0124435425, 0.022018433, -0.028076172, -0.015182495, -0.019607544, -0.02116394, -0.01600647, 0.005088806, -0.019866943, -0.009025574, 0.023712158, 0.042297363, -0.050933838, -0.021499634, -0.024719238, -0.01828003, 0.0546875, 0.008583069, 0.049224854, -0.026046753, 0.022094727, -0.025848389, 0.097839355, 0.007385254, 0.012168884, -0.059387207, -0.0072402954, -0.010231018, 0.033599854, 0.010002136, -0.018005371, 0.031143188, 0.004940033, -0.03439331, -0.054901123, 0.004940033, 0.04724121, -0.041625977, -0.04385376, -0.0059280396, 0.06549072, -0.0149002075, 0.010406494, 0.008758545, 0.010673523, -0.011550903, 0.033294678, -0.07720947, -0.025772095, -0.008369446, -0.025238037, 0.0012674332, -0.002254486, -0.016921997, 0.022613525, 0.029510498, 0.020889282, -0.049621582, -0.0014123917, 0.009414673, -0.0014915466, -5.7935715e-05, -0.017074585, 0.00868988, -0.014137268, -0.004638672, -0.0713501, 0.07904053, 0.05630493, 0.021697998, 0.013244629, 0.03213501, 0.0048713684, -0.056274414, -0.0016860962, -0.008148193, -0.019622803, -0.026641846, -0.021728516, 0.033233643, -0.00623703, 0.00096178055, -0.014480591, 0.011398315, 0.020126343, -0.039520264, 0.005004883, -0.008682251, 0.04699707, 0.019805908, -0.023254395, 0.0015974045, -0.045806885, 0.011672974, 0.054016113, -0.023666382, -0.012298584, 0.013977051, -0.009399414, 0.01171875, -0.01979065, 0.003370285, -0.04095459, 0.002008438, 0.03933716, -0.0018224716, -0.029449463, 0.009216309, -0.0029468536, 0.011138916, -0.0035629272, 0.05166626, -0.021438599, 0.030075073, 0.0317688, -0.04168701, -0.021530151, 0.026046753, -0.047332764, 0.041168213, 0.01939392, -0.070739746, 0.048339844, 0.003627777, 0.0103302, -0.037322998, 0.06939697, -0.018829346, 0.009918213, -0.06286621, 0.007797241, 0.034088135, 0.06719971, -0.02760315, -0.029281616, 0.018676758, -0.013420105, 0.0025844574, -0.004638672, 0.046051025, -0.026947021, 0.018859863, -0.006576538, 0.013008118, -0.026611328, -0.011436462, -0.020141602, 0.018539429, 0.024368286, -0.017868042, 0.032470703, -0.0014543533, -0.03945923, -0.044433594, -0.012130737, 0.015625, 0.014305115, -0.017578125, -0.0031986237, -0.009925842, -0.0032024384, 0.006324768, -0.008232117, 0.01725769, -0.025878906, -0.019805908, -0.04425049, -0.007286072, -0.028152466, 0.038909912, -0.04824829, 0.006160736, 0.01374054, -0.025772095, 0.009536743, 0.02017212, -0.06793213, -0.033050537, 0.00055360794, 0.0069389343, -0.0065841675, -0.03463745, 0.07757568, -0.039794922, -0.058044434, -0.030517578, 0.055023193, -0.02758789, -0.015701294, 0.04586792, 0.055725098, -0.011314392, 0.048065186, -0.017547607, -0.045959473, -0.005382538, 0.011894226, -0.075805664, -0.044403076, -0.03265381, -0.0064468384, -0.026428223, -0.055999756, 0.0067863464, 0.044952393, 0.03591919, -0.011413574, -0.0032672882, -0.04144287, 0.013214111, -0.04159546, 0.0049819946, 0.008804321, -1.31726265e-05, -0.001663208, -0.00881958, -0.04058838, 0.024932861, 0.011352539, 0.02645874, 0.027038574, -0.039611816, 0.009567261, 0.06347656, -0.0028190613, 0.05822754, -0.010803223, -0.017501831, 0.004753113, 0.07305908, 0.006954193, 0.06335449, -0.078430176, -0.03793335, -0.025253296, 0.035980225, 0.04849243, 0.031951904, -0.039520264, -0.02029419, 0.06201172, 0.02708435, 0.034851074, 0.02897644, 0.059539795, 0.00025248528, -0.046081543, 0.0077819824, -0.0067710876, -0.041748047, -0.028259277, -0.024520874, -0.030136108, 0.013793945, -0.020874023, 0.022766113, -0.012886047, 0.033447266, 0.0024528503, -0.029266357, 0.018600464, -0.010894775, 0.014404297, -0.008018494, -0.032440186, 0.009887695, 0.038848877, 0.014389038, 0.0044937134, -0.008270264, -0.023101807, 0.02381897, -0.0129852295, 0.0524292, -0.040802002, 0.020065308, 0.027374268, -0.07299805, 0.010383606, 0.028839111, -0.0151901245, -0.0009508133, -0.050689697, -0.019058228, -0.0075187683, 0.015464783, 0.00945282, 0.016616821, 0.02293396, 0.0256958, 0.0099487305, 0.007881165, -0.002506256, -0.024230957, 0.06072998, 0.027282715, -0.0042381287, -0.033843994, -0.0050849915, 0.036499023, 0.017333984, 0.00030827522, 0.0287323, -0.037628174, 0.018737793, 0.025787354, 0.018951416, -0.035095215, -0.02154541, 0.022598267, 0.016296387, -0.017852783, 0.0022830963, 0.039520264, 0.05130005, 0.0072021484, -0.023071289, 0.0053901672, -0.06512451, -0.0026950836, 0.019699097, 0.04925537, -0.039123535, -0.035827637, -0.014015198, -0.009002686, 0.007293701, 0.03086853, 0.010154724, 0.019592285, 0.033843994, 0.05166626, 0.06958008, -0.011077881, 0.030471802, 0.021438599, 0.006866455, 0.026397705, 0.012954712, -0.0181427, 0.019821167, 0.005794525, 0.0024852753, 0.04724121, -4.529953e-06, 0.001958847, 0.020019531, -0.00068616867, -0.033477783, 0.030960083, -0.0044555664, -0.031707764, 0.034454346, -0.03024292, -0.017166138, -0.009307861, -0.01499939, -0.036743164, 0.008377075, -0.064086914, -0.017730713, -0.023727417, -0.03756714, -0.0037841797, 0.0048103333, 0.025863647, -0.056274414, -0.0058174133, -0.019821167, 0.01247406, -0.0032024384, 0.049865723, -0.021972656, -0.051727295, -0.016586304, 0.024841309, -0.025039673, -0.010025024, -0.009689331, -0.00919342, -0.0012922287, -0.016326904, 0.038330078, 0.020690918, 0.041809082, -0.018112183, 0.006111145, -0.0046806335, -0.028656006, 0.03930664, 0.02305603, -0.014839172, 0.015655518, 0.01953125, -0.010475159, 0.025772095, 0.022094727, -0.003692627, -0.0680542, -0.022094727, -0.036315918, -0.031463623, -0.019851685, -0.0061187744, 0.01838684, 0.004486084, -0.030426025, 0.023391724, 0.025863647, 0.023086548, 0.021392822, -0.018218994, 0.012565613, -0.02999878, -0.031066895, -0.04852295, -0.012504578, 0.03640747, 0.077819824, -0.015640259, -0.017425537, -0.0022716522, -0.021331787, 0.0107040405, -0.002565384, 0.0124435425, 0.01133728, 0.037719727, -0.0024471283, 0.0006995201, -0.002462387, 0.019058228, -0.010917664, -0.033416748, 0.024032593, 0.031555176, -0.049835205, -0.042144775, -0.01146698, -0.00015091896, -0.033691406, -0.0423584, -0.040924072, -0.020370483, -0.012969971, 0.02885437, -0.02684021, 0.02708435, -0.027282715, 0.016311646, -0.035308838, -0.015472412, 0.017333984, -0.013511658, -0.0023708344, -0.007801056, 0.00920105, 0.016952515, -0.015655518, -0.10455322, -0.047973633, 0.029769897, 0.0062408447, -0.0071029663, 0.04522705, -0.053741455, 0.011894226, 0.039978027, 0.027420044, -0.005176544, 0.020706177, 0.020645142, 0.018966675, 0.0073776245]}, "B07P7M1NH8": {"id": "B07P7M1NH8", "original": "Brand: Megamaster\nName: Megamaster 820-0065C Propane Gas Grill, Red + Black\nDescription: \nFeatures: Assembly required (Easy!)\nFoldable legs and soft handles\nDurable high-grade stainless steel main burner\nStrong steel frame with a heat-resistant coating finish\nA cooking power of 11,000 total BTU's with even and consistent heat\n", "metadata": {"Name": "Megamaster 820-0065C Propane Gas Grill, Red + Black", "Brand": "Megamaster", "Description": "", "Features": "Assembly required (Easy!)\nFoldable legs and soft handles\nDurable high-grade stainless steel main burner\nStrong steel frame with a heat-resistant coating finish\nA cooking power of 11,000 total BTU's with even and consistent heat", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017074585, -0.023132324, -0.0058135986, 0.013130188, -0.053253174, -0.007030487, -0.031204224, -0.023864746, -0.0020275116, -0.008354187, 0.055114746, 0.021759033, -0.04269409, -0.066467285, 0.018203735, 0.007385254, 0.01802063, 0.009284973, 0.022399902, -0.013893127, 0.00919342, 0.01449585, -0.0020561218, 0.044006348, 0.041381836, -0.04425049, -0.029571533, 0.013511658, 0.021652222, 0.008956909, 0.02482605, 0.008087158, 0.042114258, -0.05596924, 0.019943237, -0.03503418, 0.05203247, -0.05505371, -0.029922485, -0.00349617, -0.009223938, 0.030014038, -0.013130188, -0.002866745, -0.03933716, -0.040863037, -0.0070381165, -0.020874023, 0.043121338, -0.02507019, -0.0007610321, 0.047912598, 0.008033752, -0.010307312, -0.022415161, 0.0146102905, -0.008102417, 0.029144287, 0.017166138, -0.016983032, -0.028442383, 0.008003235, 0.028442383, 0.0127334595, -0.046295166, -0.012329102, 0.014389038, -0.0063591003, 0.0041770935, -0.068847656, -0.004047394, 0.041778564, -0.0026016235, 0.00051164627, -0.041168213, -0.032165527, 0.04058838, -0.015838623, 0.0121536255, -0.0032424927, 0.02154541, -0.013404846, 0.05609131, -0.014266968, 0.0069847107, 0.009185791, -0.010864258, -0.013259888, -0.0064048767, -0.031799316, 0.0007185936, 0.012039185, -0.04928589, 0.043762207, -0.002292633, -0.015945435, -0.032806396, -0.03753662, 0.02684021, 0.028503418, 0.013771057, -0.024429321, 0.024978638, -0.013252258, -0.023101807, 0.052490234, 0.016921997, 0.030685425, -0.005748749, 0.0016698837, -0.016052246, -0.03137207, -0.0129776, -0.01675415, -0.022445679, 0.004047394, -0.042907715, 0.010635376, 0.0037326813, 0.013946533, 0.0042915344, 0.0051498413, 0.035705566, 0.0026454926, 0.031311035, 0.0287323, -0.03225708, -0.025878906, -0.030838013, 0.05142212, -0.023788452, 0.021530151, 0.02519226, -0.0029563904, -0.015823364, -0.024383545, -0.01574707, 0.008216858, 0.003932953, 0.0007224083, 0.0022010803, -0.024337769, 0.024795532, -0.0026226044, 0.012268066, 0.028213501, 0.025344849, 0.024978638, -0.021774292, -0.06677246, 0.03692627, -0.029571533, 0.023742676, 0.0236969, -0.016647339, 0.03152466, 0.029724121, -0.0077552795, -0.04321289, -0.017562866, 0.012992859, -0.033203125, -0.01789856, 0.0048942566, -0.045288086, 0.041900635, 0.023712158, -0.0008969307, 0.009780884, 0.0012540817, -0.015106201, -0.008041382, 0.0043029785, -0.001824379, -0.014518738, 0.0088272095, 0.02218628, 0.03982544, 0.06329346, -0.06591797, -0.06738281, -0.05709839, 0.14208984, -0.075927734, -0.025802612, 0.014175415, -0.015625, -0.006248474, 0.036132812, -0.005519867, 0.035095215, 0.0075187683, 0.008720398, -0.026870728, 0.03062439, -0.018798828, -0.011566162, -0.010757446, 0.006313324, -0.0287323, 0.03753662, -0.013999939, -3.3557415e-05, -0.0013694763, -0.04574585, -0.006965637, -0.009788513, 0.012290955, 0.021743774, 0.009002686, -0.0010824203, -0.031677246, 0.017333984, -0.043182373, -0.052734375, -0.006587982, -0.044281006, -0.010269165, -0.004043579, 0.019714355, 0.026870728, -0.008552551, 0.014823914, -0.00095129013, 0.014282227, 0.00944519, -0.02772522, 0.011497498, 0.021850586, 0.018798828, 0.011100769, 0.0064353943, 0.097717285, 0.055633545, 0.002117157, 0.06097412, 0.09472656, 0.02243042, -0.03439331, -0.017669678, 0.015808105, -0.019104004, -0.01133728, 0.036193848, -0.017150879, -0.010139465, 0.026397705, -0.0014448166, 0.03326416, 0.009994507, 0.02885437, -0.039276123, 0.04446411, 0.0423584, 0.009086609, 0.0134887695, -0.002729416, 0.03869629, -0.06896973, 0.02494812, -0.00919342, 0.03262329, 0.008506775, 0.0028133392, 0.010612488, 0.062469482, 0.015945435, 0.025253296, -0.08258057, 0.068359375, 0.044891357, 0.032287598, -0.013839722, 0.027694702, 0.023269653, 0.00036144257, -0.036834717, 0.0065727234, 0.0042762756, 0.010108948, -0.012001038, -0.04937744, -0.02633667, 0.0009508133, 0.022613525, 0.004627228, 0.03137207, 0.024932861, -0.026657104, -0.023727417, 0.026489258, -0.020721436, -0.03427124, 0.008934021, -0.023956299, -0.019592285, 0.050323486, -0.0018205643, 0.006275177, -0.026947021, 0.0030441284, 0.034362793, -0.048065186, 0.017822266, -0.008148193, 0.007797241, -0.04336548, 0.06921387, 0.031921387, -0.048339844, 0.011146545, 0.01499939, 0.04550171, 0.0074157715, 0.038879395, 0.021057129, -0.0031661987, 0.06390381, 0.023040771, 0.019241333, 0.0064353943, 0.018341064, -0.041534424, -0.028411865, 0.010627747, 0.021362305, -0.060943604, -0.0071907043, -0.011741638, -0.030700684, -0.009162903, -0.05380249, -0.01637268, 0.0074386597, 0.0015296936, -0.019592285, -0.013946533, 0.028518677, -0.01927185, -0.04611206, -0.027801514, -0.0107803345, -0.0021190643, -0.03451538, -0.04586792, 0.036102295, 0.0001527071, 0.020309448, -0.0069503784, 0.016571045, -0.008766174, -0.01725769, -0.015052795, -0.028961182, 0.0017824173, -0.008705139, -0.013130188, -0.015106201, -0.0001335144, -0.055633545, -0.03918457, 0.00415802, -0.06970215, 0.036224365, 0.07562256, -0.018066406, -0.011688232, -0.019546509, -0.0044288635, 0.031066895, 0.056518555, 0.0042762756, -0.028060913, -0.032104492, -0.051239014, -0.059631348, 0.04385376, -0.020446777, 0.0074806213, 0.017364502, 0.031158447, 0.017623901, -0.012123108, -0.0023841858, 0.033599854, 0.004272461, 0.019927979, 0.055786133, -0.004436493, -0.010345459, -0.018951416, 0.013847351, -0.041412354, -0.028625488, -0.020355225, 0.0034637451, -0.007598877, 0.003873825, -0.019104004, -0.011444092, -0.08892822, 0.014434814, 0.0060195923, -0.052124023, -0.020736694, -0.056518555, -0.083740234, -0.044281006, 0.00031542778, 0.06866455, -0.007297516, -0.020935059, -0.015419006, -0.012168884, -0.008995056, 0.009162903, 0.010986328, -0.005001068, -0.031433105, -0.009994507, 0.04425049, -0.048217773, -0.0015602112, 0.0018339157, -0.027557373, 0.039367676, -0.056274414, -0.0065612793, -0.002254486, 0.044891357, -0.013557434, 0.011871338, -0.025100708, 0.0062713623, 0.011672974, 0.02746582, 0.0033397675, -0.014228821, 0.039764404, -0.029129028, -0.051452637, -0.032104492, -0.043518066, 0.0011301041, -0.030197144, -0.008392334, -0.017410278, -0.05883789, -0.023834229, -0.023895264, -0.03488159, 0.01777649, -0.025619507, 0.021774292, -0.00027370453, 0.03793335, 0.05645752, 0.025054932, -0.011291504, -0.03756714, -0.04449463, -0.008293152, 0.008674622, -0.03186035, 0.015823364, -0.038513184, 0.0039901733, 0.011779785, -0.026290894, 0.028427124, 0.0050354004, 0.042907715, 0.045776367, -0.02279663, -0.031173706, -0.035064697, 0.058441162, 0.0038852692, -0.0027446747, -0.07196045, -0.023086548, 0.0048179626, -0.08099365, 0.06665039, 0.056030273, -0.025344849, 0.038116455, 0.003643036, -0.004497528, 0.008865356, -0.003370285, -0.026733398, -0.0012073517, 0.025817871, -0.014228821, 0.015945435, 0.011924744, 0.02885437, -0.00982666, -0.010772705, -0.08312988, 0.018798828, 0.016830444, -0.017166138, -0.038208008, 0.019485474, 0.039886475, -0.04812622, 0.005809784, -0.030258179, -0.020462036, -0.059173584, -0.015304565, -0.009750366, -0.017959595, -0.00084352493, 0.012290955, -0.03616333, -0.0020637512, -0.0029125214, -0.003545761, 0.0075645447, 0.0071983337, 0.03503418, -0.0069351196, 0.02722168, -0.04940796, 0.022445679, -0.005466461, -0.016662598, 0.052703857, -0.002166748, 0.05908203, 0.051727295, -0.0413208, 0.038482666, -0.0040893555, -0.00026535988, -0.043548584, -0.048736572, 0.014770508, 0.039154053, 0.024368286, -0.015129089, 0.017700195, -0.020965576, 0.00699234, 0.0011482239, -0.047973633, -0.020217896, -0.015716553, 0.0048065186, -0.0758667, -0.031433105, 0.0054397583, -0.048706055, -0.019210815, 0.015090942, -0.030700684, -0.024383545, -1.4126301e-05, 0.019378662, -0.05230713, 0.00059747696, -0.067871094, -0.01864624, 0.04385376, 0.02545166, 0.06347656, -0.026290894, 0.028213501, -0.026824951, 0.0791626, 0.026229858, 0.0012893677, -0.021072388, -0.05517578, -0.0016651154, 0.013969421, 0.053588867, -0.023620605, 0.026275635, -0.023956299, -0.017578125, -0.02507019, -0.026107788, 0.007751465, -0.032104492, -0.03668213, -0.013313293, 0.11248779, -0.038909912, 0.007980347, -0.025497437, -0.0035820007, 0.02859497, 0.005584717, -0.06896973, -0.06451416, -0.0030288696, -0.0011091232, 0.005874634, -0.0075531006, -0.021148682, 0.04345703, 0.019088745, 0.055358887, -0.040374756, -0.0024795532, 0.012260437, -0.029571533, 0.0135269165, -0.028167725, -0.0057373047, -0.018447876, 0.010627747, -0.031402588, 0.056915283, 0.039367676, -0.0063552856, 0.0064430237, 0.0069503784, -0.003446579, -0.060150146, 0.0043411255, 0.02067566, -0.028533936, -0.013946533, -0.016723633, 0.013061523, -0.0110321045, -0.008781433, 0.0033493042, -0.04260254, 0.007411957, 0.020431519, 0.02116394, -0.013465881, 0.00011253357, 0.02041626, 0.029678345, -0.016921997, -0.010215759, -0.03527832, -0.006313324, -0.016342163, -0.0017089844, 0.039367676, -0.013145447, 0.006767273, -0.017822266, 0.012741089, -0.03439331, 0.016220093, 0.03945923, 0.0050964355, -0.027297974, -0.017929077, 0.0262146, -0.01725769, -0.043151855, 0.021209717, -0.037261963, 0.02520752, 0.0053253174, -0.005191803, 0.03111267, 0.026550293, -0.0047683716, -0.0006637573, 0.029312134, -0.036468506, 0.023376465, -0.018920898, -0.014175415, -0.057037354, 0.088012695, -0.012825012, 0.022949219, -0.07720947, -0.0017213821, -0.030151367, 0.042236328, 0.0028057098, -0.029953003, 0.012214661, -0.042755127, -0.0027008057, 0.00014817715, 0.0017461777, -0.023895264, 0.020477295, -0.01361084, 0.007133484, -0.00091409683, 0.0049934387, -0.05923462, 0.030044556, 0.007713318, 0.017532349, -0.016738892, 0.022842407, -0.0019893646, -0.0016069412, -0.0340271, 0.0027942657, 0.0013399124, 0.0024604797, -0.015853882, 0.004337311, -0.01626587, -0.0074005127, -0.029052734, 0.0029125214, -0.015823364, -0.025222778, -0.0039138794, -0.0044898987, -0.018936157, 0.051818848, -0.04458618, 0.033050537, -0.00062036514, -0.036895752, -0.00080013275, 0.009315491, -0.08850098, -0.013595581, -0.024124146, -0.03918457, 0.004234314, -0.0022220612, 0.058288574, -0.030761719, -0.043029785, -0.05819702, 0.013763428, 0.025543213, -0.032440186, 0.097229004, 0.03265381, 0.0116119385, 0.024230957, -0.0037269592, -0.07965088, 0.0033569336, -0.0057525635, -0.064697266, -0.025924683, -0.06347656, -0.0047912598, 0.026306152, 0.014030457, -0.02911377, 0.033203125, -0.048065186, -0.06427002, -0.036254883, 0.0062561035, 0.0076789856, -0.04043579, 0.0012245178, -0.016921997, 0.011199951, -0.008865356, -0.0006337166, -0.033721924, -0.012237549, 0.02545166, 0.002943039, 0.010314941, -0.0072746277, 0.015197754, -0.00034594536, 0.028808594, 0.01600647, -0.01676941, -0.0074539185, 0.008285522, 0.029312134, -0.0019054413, 0.0435791, -0.020523071, -0.011619568, -0.041656494, 0.025146484, 0.04498291, 0.043060303, -0.027954102, 0.012176514, 0.03845215, 0.027252197, -0.014099121, 0.016967773, 0.031921387, 0.016586304, -0.051452637, -0.01576233, -0.0016021729, -0.045043945, -0.011024475, -0.03555298, -0.021636963, -0.008529663, -0.01499939, 0.037963867, -0.02041626, 0.029678345, 0.012313843, -0.007633209, 0.008483887, 0.021896362, 0.009109497, -0.0014390945, -0.060180664, 0.037261963, 0.0073242188, -0.008476257, 0.032226562, 0.0019836426, -0.0047187805, 0.020309448, -0.012306213, 0.031585693, -0.056121826, 0.011940002, 0.060333252, -0.0736084, -0.010932922, 0.027938843, 6.222725e-05, -0.009941101, -0.029632568, 0.007801056, 0.015159607, -0.028045654, 0.008613586, -0.0018730164, 0.038879395, 0.0029335022, -0.03253174, -0.020477295, 0.0027656555, -0.024597168, 0.017425537, 0.042785645, 5.185604e-06, -0.0211792, -0.041290283, 0.059692383, 0.017669678, 0.0004386902, 0.051208496, -0.0075416565, 0.0056762695, -0.01096344, 0.02607727, -0.01234436, -0.026245117, -0.04309082, -0.022369385, 0.02482605, 0.040130615, 0.000992775, -0.02798462, 0.029678345, -0.022949219, 0.030014038, 0.02519226, 0.05065918, 0.031433105, -0.00579834, -0.050201416, 0.00071668625, -0.0036582947, -0.021240234, 0.019241333, 0.02128601, 0.019470215, 0.012001038, 0.038208008, 0.06060791, 0.08068848, 0.0072898865, 0.028945923, 0.012908936, -0.017105103, 0.03189087, 0.02381897, -5.9843063e-05, 0.01927185, -0.017837524, 0.0036468506, 0.011619568, 0.033477783, -0.0037631989, 0.029083252, 0.008621216, -0.021438599, 0.00945282, -0.00015830994, -0.02017212, 0.023422241, -0.015106201, -0.007423401, -0.01638794, -0.033599854, -0.034057617, -0.02508545, -0.05630493, 0.01651001, -0.02104187, -0.05731201, -0.031829834, 0.012184143, 0.028656006, -0.07293701, -0.0006427765, -0.03970337, 0.03213501, 0.013618469, 0.06756592, -0.04031372, -0.0949707, -0.017227173, 0.05407715, -0.075683594, -0.040649414, 9.23872e-06, -0.017211914, -0.0110321045, -0.014228821, 0.046325684, 0.037261963, 0.042816162, -0.004245758, 0.00472641, 0.0054397583, -0.010574341, -0.008201599, 0.00011253357, -0.023162842, -0.0018672943, 0.011924744, 0.008491516, -0.004627228, 0.016662598, 0.004989624, -0.05908203, 0.015029907, 0.0107040405, -0.010215759, -0.045074463, -0.010932922, 0.002418518, -0.011062622, -0.027328491, -0.0021133423, 0.028427124, 0.03152466, 0.039398193, 0.04385376, 0.03567505, -0.010421753, -0.09423828, -0.06451416, -0.026123047, 0.04458618, 0.040100098, -0.006095886, -0.047424316, 0.046783447, 0.001540184, 0.023864746, 0.04675293, 0.0021877289, -0.030899048, -0.024124146, 0.042999268, -0.04168701, 0.011001587, -0.015144348, -0.034088135, -0.03314209, 0.03475952, 0.034423828, -0.038360596, -0.03326416, -0.023010254, 0.0007686615, -0.013549805, -0.053009033, -0.014801025, -0.0128479, 0.021148682, 0.005619049, 0.011489868, 0.00051116943, 0.02079773, 0.0030326843, -0.018157959, 0.017669678, 0.010383606, 0.000644207, -0.059295654, 0.043029785, 0.0040016174, 0.0859375, -0.026123047, -0.10479736, -0.051849365, 0.024017334, 0.03414917, -0.013885498, 0.09185791, -0.060699463, 0.010848999, 0.031707764, -0.005870819, 0.0011920929, 0.0025978088, 0.04486084, 0.0012903214, -0.0023593903]}, "B01ENV3UDA": {"id": "B01ENV3UDA", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black\nDescription: \nFeatures: Combination of gas grill and griddle with two individual cooking zones | Easy assembly required\nProduct dimensions \u2013 66.1\" L x 21.8\" W x 43.7\" H | Clearance space around product \u2013 36\u201d | Product weight \u2013 103.6 lbs. | Cooking area (Two) \u2013 292 sq. inches each | Gas tank size \u2013 20 lb. | Burners output (4) \u2013 12,000 BTU each\nAutomatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel\nTwo fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach\nWith fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup\n", "metadata": {"Name": "Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black", "Brand": "Royal Gourmet", "Description": "", "Features": "Combination of gas grill and griddle with two individual cooking zones | Easy assembly required\nProduct dimensions \u2013 66.1\" L x 21.8\" W x 43.7\" H | Clearance space around product \u2013 36\u201d | Product weight \u2013 103.6 lbs. | Cooking area (Two) \u2013 292 sq. inches each | Gas tank size \u2013 20 lb. | Burners output (4) \u2013 12,000 BTU each\nAutomatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel\nTwo fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach\nWith fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018325806, 0.0061187744, -0.03439331, 0.013267517, -0.0105896, -0.013954163, -0.022750854, -0.026290894, -0.07220459, 0.020019531, 0.005455017, 0.04284668, -0.023834229, -0.022857666, 0.035064697, -0.023971558, 0.034851074, -0.0075531006, -0.0022029877, 0.0064353943, 0.0044441223, 0.03894043, -0.050109863, 0.06286621, 0.054626465, -0.051208496, -0.041046143, 0.009361267, 0.038024902, 0.004638672, 0.025512695, -0.0013418198, 0.043029785, -0.033233643, 0.00522995, -0.022598267, -0.0039634705, -0.030914307, -0.04046631, 0.027175903, 0.024551392, -0.0068244934, -0.058654785, 0.03842163, -0.053894043, -0.028366089, 0.007633209, -0.00157547, 0.019699097, 0.026290894, -0.022262573, -0.011894226, -0.018051147, -0.013084412, -0.008049011, -0.017868042, 0.035247803, 0.012046814, 0.045196533, -0.048736572, -0.072753906, -0.018249512, 0.033843994, -0.0102005005, -0.04989624, 0.030197144, 0.02822876, -0.024749756, 0.026885986, -0.047302246, -0.024215698, 0.007659912, 0.015716553, -0.023284912, -0.035247803, -0.00023782253, -0.000269413, -0.021972656, 0.031463623, -0.026931763, 0.007259369, 0.01991272, 0.016815186, -0.0064048767, -0.027862549, -0.03286743, -0.010612488, -0.013870239, 0.017837524, -0.036102295, -0.007083893, -0.052093506, -0.019470215, 0.036010742, 0.0074806213, -0.04168701, -0.051239014, -0.09466553, 0.036621094, 0.017089844, 0.06286621, -0.046783447, 0.044158936, 0.011108398, -0.029953003, 0.09307861, 0.029006958, 0.08154297, 0.004055023, -0.007194519, 0.029968262, -0.04953003, 0.020996094, -0.008239746, -0.010475159, 0.022094727, 0.018218994, 0.02709961, 0.012573242, 0.030395508, -0.021957397, 0.015541077, -0.015548706, 0.024490356, -0.0067214966, 0.0019741058, 0.024749756, -0.02659607, -0.060577393, 0.052734375, -0.03955078, 0.013038635, 0.08886719, 0.03704834, -0.0027599335, -0.032958984, 0.0019435883, -0.016708374, 0.027374268, -0.032928467, 0.019363403, 0.0015916824, 0.039855957, 0.02230835, -0.025390625, 0.008743286, 0.04232788, 0.001420021, -0.042053223, -0.042236328, -0.009857178, 0.028808594, 0.02557373, 0.009674072, -0.027420044, -0.014160156, -0.008270264, -0.01423645, 0.002445221, -0.034576416, -0.050476074, -0.012969971, 0.047088623, -0.0050964355, -0.037475586, 0.056671143, -0.0067634583, -0.017333984, 0.010398865, 0.057159424, -0.003993988, 0.014144897, -0.011047363, 0.016677856, 0.004928589, 0.0051498413, 0.029891968, 0.021331787, 0.042755127, -0.08239746, -0.074035645, -0.052459717, 0.08312988, -0.04208374, -0.014961243, -0.0012741089, 0.006767273, 0.008071899, 0.038024902, 0.0032901764, 0.0053710938, 0.002544403, -0.021820068, 0.027740479, 0.031066895, 0.023956299, -0.03125, 0.020828247, -0.0028839111, -0.06567383, -0.017028809, -0.011962891, -0.0046539307, 0.016723633, -0.0155181885, -0.019317627, 0.002910614, 0.010482788, 0.0067977905, 0.008728027, -0.009284973, -0.007522583, -0.0087509155, -0.033050537, -0.043548584, -0.046203613, -0.03640747, 0.05822754, 0.008781433, 0.014320374, 0.039031982, -0.029922485, 0.058929443, 0.014175415, 0.033203125, -0.005821228, -0.00674057, -0.0063095093, 0.037994385, 0.016067505, -0.03881836, 0.021011353, 0.06781006, 0.0211792, -0.020355225, 0.046966553, 0.064819336, 0.033966064, -0.028640747, -0.015068054, -0.0029830933, -0.020263672, -0.049682617, 0.031036377, 0.008811951, -0.02809143, -0.015159607, 0.049072266, -0.013542175, -0.021453857, 0.054138184, -0.033325195, 0.03543091, 0.03857422, -0.003604889, 0.017364502, -0.022140503, 0.03326416, -0.025680542, -0.001420021, -0.008735657, 0.047851562, 0.022705078, 0.0011081696, 0.015327454, 0.009994507, 0.010437012, 0.018173218, -0.064941406, 0.014457703, 0.034576416, 0.058135986, 0.003534317, -0.018569946, 0.007911682, 0.029296875, -0.04135132, 0.01461792, 0.03616333, 0.006549835, 0.006225586, -0.016921997, -0.03302002, -0.0026187897, 0.027770996, 0.036834717, 0.008354187, 0.033172607, -0.0047035217, -0.012420654, 0.024749756, -0.0063095093, 0.012496948, -0.021347046, -0.005016327, -0.030883789, 0.0993042, 0.037719727, 0.0043678284, -0.005508423, -0.008094788, 0.0060691833, -0.04373169, -0.0041160583, -0.011772156, 0.017349243, -0.026748657, 0.013671875, 0.0019702911, -0.044708252, 0.0031471252, -0.0020446777, 0.038208008, -0.02633667, 0.040771484, -0.003709793, -0.010406494, 0.042175293, -0.015823364, 0.015464783, -0.010360718, 0.010765076, -0.026229858, 0.011230469, 0.012069702, -0.0028953552, 0.0035533905, -0.0029964447, -0.03338623, 0.01146698, -0.020370483, -0.014793396, -0.014137268, 0.045715332, -0.0096588135, 0.012306213, 0.010940552, -0.036010742, -0.025115967, -0.06768799, -0.016921997, -0.06976318, -0.012870789, -0.025848389, -0.026290894, -0.011070251, -0.028396606, 0.0014305115, -0.013267517, -0.0031738281, 0.0021209717, -0.0016012192, 0.017349243, -0.014259338, -0.010757446, 0.0013942719, -0.017959595, -0.027770996, -0.039031982, -0.07171631, -0.02671814, -0.0418396, -0.0869751, -0.035217285, 0.09539795, 0.019378662, -0.08416748, -0.0067634583, -0.023025513, 0.0008239746, 0.018341064, -8.785725e-05, -0.10253906, -0.035095215, -0.036224365, 0.021011353, 0.003063202, -0.05126953, 0.019592285, -0.0059661865, 0.005355835, 0.043670654, -0.033569336, 0.022354126, 0.0027999878, 0.04257202, 0.03363037, 0.020874023, 0.02558899, -0.026947021, 0.017364502, 0.049346924, -0.046081543, -0.0027942657, -0.026535034, 0.0038166046, 0.008018494, -0.019989014, -0.02142334, -0.0023937225, -0.029754639, -0.00076913834, -0.0076408386, -0.035888672, -0.011314392, -0.04812622, -0.018707275, -0.02658081, 0.0149002075, 0.034118652, 0.006755829, 0.015525818, -0.0155181885, 0.034698486, -0.0044441223, -0.009315491, -0.020858765, -0.009513855, 0.010803223, -0.0075912476, 0.03857422, -0.07446289, 0.019882202, 0.011772156, -0.029647827, 0.03656006, -0.04257202, 0.0017871857, -0.026657104, 0.026733398, -0.01914978, 0.008354187, -0.025543213, 0.020980835, -0.027816772, 0.015823364, 0.013183594, -0.056396484, 0.05328369, -0.05041504, -0.015701294, -0.0018348694, -0.008903503, 0.02468872, 0.0044136047, -0.02583313, -0.021606445, -0.03265381, -0.03189087, -0.03277588, -0.0011615753, 0.022277832, 0.037872314, 0.027511597, 0.025039673, 0.01499176, -0.005203247, 0.037475586, 0.030960083, -0.045928955, -0.037017822, -0.047607422, 0.022613525, 0.00084495544, 0.020141602, -0.05718994, 0.029724121, 0.0018138885, -0.0013456345, 0.016601562, 0.0010461807, 0.02671814, 0.048828125, -0.020355225, -8.255243e-05, -0.04309082, 0.012962341, 0.0046920776, -0.027740479, -0.04522705, -0.058532715, 0.013923645, -0.0826416, 0.061706543, 0.031982422, -0.023971558, 0.06518555, 0.025634766, -0.003118515, 0.03930664, 0.0005950928, 0.014099121, -0.0025863647, 0.06573486, -0.012329102, 0.028137207, 0.018112183, 0.0005340576, 0.013061523, -0.0070152283, -0.03955078, -0.001159668, -0.034973145, -0.033081055, -0.012840271, 0.012214661, 0.019927979, -0.017410278, -0.011764526, -0.019805908, -0.012252808, -0.048675537, 0.03778076, 0.013450623, -0.024475098, 0.024093628, -0.030700684, -0.0050201416, -0.007507324, -0.004348755, 0.019180298, 0.06149292, 0.018234253, 0.028289795, -0.026428223, -0.0037841797, -0.0024814606, 0.016235352, -0.017166138, -0.020492554, 0.017044067, 0.022033691, 0.008773804, 0.025024414, -0.01399231, 0.02645874, -0.025878906, 0.016357422, 0.002817154, -0.026885986, -0.00605011, 0.04626465, 0.030822754, 0.0029697418, 0.01914978, -0.07757568, -0.00039482117, -0.012237549, -0.03881836, -0.010505676, -0.011375427, -0.014633179, -0.09082031, -0.044128418, -0.018188477, -0.035095215, -0.035827637, 0.032958984, -0.016738892, -0.045654297, -0.043884277, 0.0039711, -0.037841797, 0.018615723, -0.072265625, 0.014793396, 0.015220642, 0.016433716, 0.022155762, -0.038116455, -0.015426636, -0.0062026978, 0.08862305, 0.008300781, 0.028152466, -0.03125, -0.039031982, -0.00982666, 0.006919861, 0.05154419, 0.0040016174, -0.0020561218, -0.054595947, -0.04748535, 0.00390625, -0.053131104, 0.044891357, -0.036499023, -0.005382538, -0.03265381, 0.030349731, -0.02520752, 0.03149414, -0.03930664, -0.0107040405, -0.030258179, -0.010383606, -0.047180176, -0.024978638, -0.0060577393, 0.01361084, -0.0076026917, -0.01158905, -0.014221191, 0.039367676, 0.033996582, 0.068481445, -0.00308609, -0.020553589, -0.021240234, 0.006942749, 0.00982666, -0.027389526, 0.0126571655, -0.044677734, 0.030578613, -0.08874512, 0.08502197, 0.041809082, 0.016815186, 0.011886597, -0.021469116, 0.0027217865, -0.05218506, -0.0063095093, -0.032409668, 0.016281128, -0.026641846, -0.03050232, -0.0040359497, -0.0519104, 0.0008444786, -0.011047363, -0.012832642, -0.016052246, -0.01977539, 0.018844604, -0.01474762, 0.010025024, -0.0004916191, -0.006626129, 0.022109985, -0.029373169, -0.02230835, 0.02130127, -0.04876709, -0.03765869, -0.01058197, -0.031311035, -0.009742737, 0.011955261, 0.031982422, -0.017547607, 0.032470703, 0.02909851, 9.685755e-05, -0.008842468, 0.03753662, -0.006011963, 0.0003106594, -0.031982422, 0.018325806, -0.0013017654, -0.026275635, -0.0031547546, -0.0440979, 0.0107421875, 0.025543213, -0.047698975, 0.03366089, 0.016662598, -0.041625977, 0.042785645, -0.0023822784, -0.019836426, -0.04574585, 0.062683105, -0.013259888, 0.0038890839, -0.052337646, 0.0034656525, 0.0028934479, 0.01739502, 0.035858154, -0.049682617, 0.021087646, -0.053588867, -0.01121521, 0.01512146, 0.044525146, -0.022628784, -0.014503479, 0.026443481, -0.01146698, -0.035980225, 0.027862549, -0.026229858, 0.012924194, -0.05996704, 0.0022602081, 0.016723633, 0.013671875, 0.017837524, -0.018005371, 0.008956909, -0.014198303, -0.031021118, -0.008781433, -0.012329102, -0.001420021, -0.003967285, 0.040496826, 0.026184082, 0.017425537, -0.03781128, -0.05480957, -0.058776855, 0.0061569214, -0.023971558, 0.042877197, -0.024429321, -0.03250122, -0.021362305, -0.030166626, -0.006679535, -0.0025405884, -0.030700684, -0.006164551, 0.007446289, 0.028549194, -0.025360107, 0.038238525, 0.10241699, -0.055603027, -0.05331421, -0.04727173, 0.05215454, -0.005859375, 0.00995636, 0.07232666, 0.014976501, 0.015701294, 0.033355713, 0.015853882, -0.044403076, -0.041992188, -0.009140015, -0.050628662, -0.0054893494, -0.036071777, 0.038879395, 0.003604889, 0.023956299, -0.014732361, 0.047790527, -0.0042266846, -0.01524353, -0.058441162, -0.003501892, -0.008682251, 0.0028953552, 0.0134887695, -0.02355957, -0.04498291, -0.05947876, -0.05126953, -0.048736572, -0.020858765, 0.02330017, 0.007408142, 0.00033020973, -0.013504028, 0.018356323, 0.018035889, 0.0016078949, 0.039276123, -0.01979065, 0.017471313, 0.022842407, 0.018753052, -0.012763977, 0.03289795, 0.008575439, 0.0070266724, -0.028244019, 0.042419434, 0.016479492, 0.038116455, -0.04168701, -0.014709473, 0.0151901245, 0.033935547, 0.04727173, 0.003692627, 0.02142334, -0.04537964, -0.039276123, 0.019561768, 0.020019531, -0.025787354, -0.043304443, 0.020523071, -0.04248047, 0.026855469, 0.002620697, 0.02204895, 0.032836914, 0.031951904, 0.0026760101, -0.0345459, 0.028915405, -0.017669678, 0.02218628, 0.003320694, -0.040039062, 0.017791748, -0.032470703, 0.0037899017, -0.034301758, -0.0814209, 0.023132324, 0.048950195, 0.0024738312, -0.0043144226, -0.028503418, 0.038391113, 0.044921875, -0.08648682, -0.0038719177, 0.009994507, 0.0103302, 0.0058288574, -0.06463623, -0.042785645, -0.021484375, 0.027740479, -0.022476196, 0.05255127, -0.00289917, 0.009735107, 0.0012102127, -0.016677856, -0.0074272156, 0.00069379807, 0.0032444, -0.0051994324, -0.002811432, -0.012519836, -0.0317688, -0.03036499, 0.054351807, -0.03741455, -0.038116455, 0.018417358, 0.03186035, -0.019714355, 0.027069092, -0.006916046, -0.016830444, 0.05670166, 0.038238525, 0.0069770813, 0.020889282, -0.006958008, -0.00080919266, 0.027389526, -0.03970337, 0.045043945, -0.030075073, 0.07171631, 0.034454346, 0.033569336, -0.02381897, -0.008323669, -0.016525269, 0.02407837, 0.0022201538, 0.03137207, 0.029296875, 0.023422241, 0.025466919, 0.05239868, 0.09460449, 0.013221741, 0.046142578, -0.008674622, 0.004009247, 0.011444092, 0.04260254, -0.00592041, -0.011100769, -0.009132385, -0.008010864, 0.005870819, 0.0053215027, -0.017654419, 0.0061149597, 0.011650085, 0.005256653, -0.027816772, 0.02633667, 0.01687622, 0.01184082, 0.0003798008, 0.008544922, -0.019119263, -0.038116455, -0.021133423, 0.004070282, -0.03643799, 0.03793335, 0.028961182, -0.020767212, -0.005405426, -0.01637268, 0.032592773, -0.06555176, 0.0021362305, -0.026138306, 0.059448242, 0.004676819, 0.045196533, -0.028747559, -0.06365967, -0.014350891, 0.033813477, -0.03277588, -0.06109619, -0.00043225288, 0.014541626, 0.013221741, 0.015823364, 0.04486084, 0.06072998, 0.02407837, 0.015808105, -0.006839752, -0.019317627, -0.0042648315, 0.014465332, -0.007183075, -0.038146973, -0.017868042, 0.035461426, -0.012184143, 0.027191162, 0.01689148, -0.00712204, -0.044952393, -0.022628784, -0.026000977, -0.013191223, -0.003627777, 0.0074768066, 0.008583069, -0.0034179688, -0.032440186, 0.015777588, -0.0037059784, -0.02015686, 0.042144775, 0.00059080124, 0.036895752, 0.002313614, -0.085510254, -0.04736328, -0.029815674, 0.015045166, 0.012413025, 0.016830444, 0.008262634, -0.0128479, -0.017196655, 0.01701355, -0.0044174194, -0.060668945, 0.0184021, -0.015686035, 0.009780884, -0.007434845, -0.0435791, -0.0115737915, -0.035888672, -0.008255005, 0.064208984, -0.014099121, -0.010810852, 0.0014915466, -0.024398804, -0.014602661, -0.018814087, -0.029876709, 0.0013341904, -0.0076789856, -0.00982666, 0.0016679764, 0.018234253, -0.009918213, -0.00655365, -0.009262085, -0.046813965, 0.010681152, 0.034240723, -0.0069389343, -0.03665161, 0.026977539, 0.03744507, 0.029968262, -0.03286743, -0.02609253, -0.02532959, 0.028518677, 0.04486084, -0.01876831, 0.085632324, -0.041900635, -0.002105713, 0.054229736, 0.007698059, -0.03717041, 0.04257202, 0.02722168, 0.04055786, 0.027359009]}, "B07G6Z2MLN": {"id": "B07G6Z2MLN", "original": "Brand: Wadoy\nName: Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter\nDescription: COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
      PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy\nFeatures: WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank\nGREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances\nMAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install\nEASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening.\nPACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge\n", "metadata": {"Name": "Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter", "Brand": "Wadoy", "Description": "COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
      PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy", "Features": "WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank\nGREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances\nMAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install\nEASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening.\nPACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0105896, -9.536743e-05, -0.037719727, -0.013908386, 0.0074653625, -0.008026123, 0.009468079, 0.0039138794, 0.03778076, 0.00050878525, -0.022842407, -0.004257202, -0.0041770935, -0.02432251, 0.00056791306, -0.034118652, 0.0059165955, 0.006477356, -0.00032138824, -0.034057617, -0.012329102, -0.046325684, 0.02279663, 0.05831909, 0.011314392, 0.023025513, 0.03488159, 0.006904602, 0.010513306, 0.013343811, 0.025360107, -0.034606934, 0.014968872, 0.0077781677, 0.006149292, -0.025634766, 0.008087158, 0.012176514, -0.0024642944, -0.018218994, -0.023101807, 0.016464233, 0.0010137558, -0.012329102, -0.024383545, -0.01751709, -0.012054443, -0.012924194, 0.004714966, 0.022598267, 0.004852295, -0.012077332, 0.005443573, 0.03112793, -0.011260986, -0.017944336, 0.024642944, -0.054992676, 0.0042800903, 0.0058631897, 0.011444092, 0.013961792, 0.018234253, 0.021026611, -0.07910156, 0.028701782, 0.036132812, -0.040222168, 0.010169983, -0.07409668, -0.019638062, 0.030685425, 0.011764526, 0.0048179626, -0.052337646, -0.0079956055, -0.0027103424, -0.0058403015, 0.03201294, -0.0033435822, 0.014289856, -0.035064697, 0.005882263, 0.0058250427, 0.03201294, 0.043701172, 0.0014657974, -0.031555176, -0.03137207, -0.032989502, -0.020431519, 0.022109985, -0.04449463, -0.026107788, -0.032043457, -0.011993408, -0.044128418, -0.025665283, 0.010414124, 0.015075684, -0.0015306473, -0.023071289, -0.016815186, -0.02015686, 0.0022563934, 0.041809082, 0.00737381, -0.015136719, 0.024673462, 0.007549286, 0.002872467, 0.06088257, -0.015167236, -0.028381348, -0.014778137, 0.07080078, 0.004852295, 0.0076904297, 0.010467529, 0.036254883, -0.019302368, 0.018875122, -0.00017416477, -0.0211792, 0.0051956177, 0.0013427734, 0.024749756, -0.018112183, -0.06311035, 0.014945984, 0.005340576, -0.0054512024, 0.031402588, 0.097717285, 0.019882202, -0.0027675629, 0.0340271, -0.0039367676, -0.014373779, 0.0084991455, 0.0017881393, -0.03137207, -0.006790161, 0.0047416687, -0.052368164, 0.048736572, 0.0065841675, -0.0079422, 0.011543274, -0.095703125, -0.018600464, -0.049682617, 0.020309448, 0.014762878, -0.028915405, -0.02029419, 0.010665894, -0.026046753, 0.0006608963, -0.047912598, -0.033294678, -0.036712646, 0.0058784485, 0.0007619858, 0.0010938644, 0.040161133, -0.014343262, 0.008544922, 0.013328552, 0.048553467, 0.010360718, 0.03338623, -0.0019426346, 0.009757996, 0.0014448166, -0.019607544, -0.02279663, 0.097473145, 0.05847168, -0.14587402, -0.07305908, -0.064331055, 0.11401367, -0.022491455, -0.0026474, -0.028717041, 0.037597656, -0.019104004, -0.016342163, 0.010986328, 0.04650879, 0.029693604, -0.007701874, -0.033813477, 0.021347046, 0.017028809, -0.021820068, 0.010505676, 0.0027713776, -0.015731812, -0.06719971, 0.012863159, -0.014923096, -0.00022411346, 0.01084137, -0.033935547, 0.01322937, 0.032989502, 0.024902344, 0.019638062, -0.011558533, -0.014228821, 0.020141602, -0.04827881, -0.03555298, 0.016967773, -0.02154541, 0.011924744, -0.022445679, -0.006111145, 0.0079193115, -0.035705566, 0.0038375854, 0.04727173, -0.029663086, 0.011833191, -0.024459839, 0.017852783, 0.02243042, -3.618002e-05, 0.087402344, 0.0181427, 0.026885986, 0.03869629, -0.025054932, -0.0048675537, 0.026016235, -0.015258789, 0.011413574, 0.023727417, 0.009941101, -0.015625, -0.027633667, 0.02067566, 0.009490967, -0.05935669, -0.022949219, 0.026870728, -0.029190063, 0.0154800415, 0.041015625, 0.024978638, 0.009651184, 0.03591919, -0.039276123, 0.024642944, 0.011398315, 0.02444458, -0.038726807, 0.026885986, -0.009132385, -1.2934208e-05, 0.0065307617, -0.015655518, -0.0039863586, 0.018341064, 0.018173218, 0.036621094, -0.016860962, -0.0002553463, 0.018127441, 0.02746582, 0.007335663, -0.014877319, -0.06341553, -0.014381409, -0.015022278, 0.03543091, -0.0059432983, -0.0345459, 0.01687622, 0.005554199, 0.033233643, -0.0135269165, 0.087768555, 0.042236328, -0.01701355, -0.046905518, -0.025497437, -0.006137848, 0.015548706, 0.0019989014, -0.04446411, 0.02758789, -0.03149414, -0.020309448, 0.0690918, -0.022384644, 0.037628174, -0.032714844, -0.014266968, 0.030670166, -0.043060303, -0.004852295, 0.0012359619, 0.00066280365, -0.0021781921, 0.013641357, 0.006439209, -0.019210815, -0.024795532, 0.0085372925, 0.010383606, -0.040740967, 0.031799316, 0.03173828, -0.017486572, 0.018432617, 0.053985596, 0.09057617, -0.015258789, 0.0036411285, -0.010681152, 0.0023651123, 0.008087158, -0.0066986084, 0.0017776489, -0.0043792725, 0.010482788, -0.008117676, 0.040374756, -0.0071525574, -0.01247406, -0.017120361, 0.024475098, -0.0008354187, 0.017044067, 0.019683838, -0.003932953, -0.055389404, 0.007926941, 0.016418457, 0.0012702942, 0.04562378, -0.049346924, -0.04034424, 0.080200195, -0.0087509155, -0.018005371, 0.00995636, 0.042388916, -0.0107803345, 0.023452759, -0.009628296, 0.023513794, 0.012168884, -0.018692017, 0.022705078, 0.035827637, -0.026123047, -0.012702942, -0.013214111, -0.06652832, -0.05923462, 0.05230713, 0.0039634705, -0.03579712, -0.04458618, 0.0043296814, 0.01928711, -0.008293152, 0.006160736, -0.03125, -0.0042037964, -0.021865845, 0.009727478, 0.0087890625, -0.047943115, 0.05429077, 0.018127441, 0.0022506714, 0.03652954, -0.027526855, 0.05331421, 0.01449585, 0.03781128, 0.086120605, 0.071777344, -0.0051002502, -0.042633057, -0.022033691, 0.050231934, -0.0015573502, -0.006214142, 0.023849487, -0.0048332214, -0.0446167, 0.014717102, -0.0769043, 0.0060806274, -0.026779175, 0.020767212, 0.0028533936, -0.0022773743, -0.008483887, -0.058044434, -0.0050621033, -0.04586792, 0.036102295, 0.030090332, -0.04458618, 0.036621094, -0.031921387, 0.0061149597, -0.026763916, 0.031066895, -0.03967285, -0.008384705, -0.048431396, 0.030944824, 0.064086914, -0.08746338, 0.008666992, 0.027175903, -0.02607727, -0.017440796, -0.0036411285, 0.016464233, -0.017028809, 0.028167725, -0.015197754, -0.0051460266, -0.045013428, -0.040100098, 0.014167786, -0.021774292, 0.007865906, -0.010818481, 0.0109939575, -0.008102417, -0.0552063, -0.018676758, -0.04257202, 0.019592285, -0.009056091, -0.020584106, -0.04562378, -0.0736084, -0.03564453, -0.02859497, -0.017410278, 0.026428223, 0.042144775, 0.02607727, 0.014434814, 0.033325195, 0.020904541, 0.03869629, 0.00774765, 0.030258179, 0.022598267, -0.024414062, 0.030044556, 0.0149383545, -0.0015296936, -0.029022217, -0.002002716, 0.02079773, 0.023757935, -0.028167725, 0.006866455, 0.06112671, 0.008659363, 0.0017976761, 0.011039734, 0.010391235, -0.00044584274, -0.039520264, 0.04788208, 0.0154953, -0.04663086, 0.015640259, -0.09197998, 0.061309814, 0.019882202, -0.018829346, 0.03186035, 0.018753052, 0.002231598, 0.054840088, 0.06842041, -0.00011026859, 0.00207901, 0.10498047, -0.004673004, -0.024383545, -0.0013637543, -0.019088745, 0.019683838, -0.0027370453, -0.013969421, 0.020462036, -0.001294136, -0.010818481, -0.0317688, -0.0048065186, -0.00623703, -0.032226562, 0.00856781, -0.0579834, 0.0027256012, -0.051696777, 0.034179688, 0.026062012, -0.027511597, -0.06689453, 0.05001831, -0.048065186, -0.017303467, 0.040283203, -0.019485474, 0.023880005, 0.038330078, 0.040374756, -0.025787354, -0.024139404, 0.038238525, -0.009788513, -0.045837402, -0.0067481995, 0.028808594, 0.026016235, -0.006587982, -0.040802002, 0.019226074, -0.007850647, -0.016174316, 0.03060913, 0.0016679764, -0.064086914, 0.008094788, 0.030654907, 0.011268616, -0.02583313, 0.025665283, -0.06536865, 0.0012893677, -0.012054443, -0.028640747, 0.019958496, -0.033966064, -0.044799805, -0.087890625, -0.048583984, -0.005256653, 0.004928589, -0.008888245, 0.012176514, -0.03845215, -0.041748047, 0.0034275055, 0.030639648, -0.039154053, -0.011077881, -0.03237915, 0.0035915375, 0.01348114, -0.010093689, 0.007255554, -0.012527466, -0.04043579, -0.01626587, -0.012138367, -0.033416748, -0.017974854, -0.0014848709, -0.028366089, 0.012969971, 0.00017237663, 0.035461426, -0.0028839111, 0.023391724, -0.015083313, 0.02420044, -0.07330322, 0.042388916, 0.027557373, -0.0064735413, -0.052124023, -0.012802124, 0.01928711, 0.0093307495, 0.04208374, 0.023010254, -0.01285553, -0.017990112, -0.010215759, -0.10357666, -0.034820557, -0.017059326, 0.017227173, -0.0026168823, 0.00012165308, 0.016693115, 0.014389038, 0.036376953, 0.005420685, 0.066711426, 0.013648987, -0.02027893, -0.012168884, 0.0044517517, -0.013381958, 0.035064697, -0.018554688, -0.05493164, -0.07110596, 0.06488037, 0.033081055, 0.0061912537, 0.005065918, -0.031021118, -0.016113281, -0.040161133, -0.025024414, 0.013305664, 0.031280518, -0.016204834, -0.048431396, 0.018051147, -0.031707764, -0.001791954, -0.028335571, -0.016067505, -0.010429382, 0.0043754578, -0.0077667236, -0.031234741, -0.022232056, -0.0024471283, 4.61936e-05, -0.009689331, -0.057037354, 0.018356323, 0.019515991, -0.014915466, -0.010757446, -0.0070152283, -0.0029888153, 0.026260376, 0.01486969, 0.019195557, -0.051971436, 0.00819397, 0.047210693, 0.008094788, 0.013839722, 0.01576233, -0.019714355, -0.033935547, -0.023895264, -3.8325787e-05, 0.015075684, -0.030181885, 0.006652832, -0.00027608871, 0.022476196, 0.048309326, -0.015449524, 0.021575928, 0.016983032, -0.025878906, 0.014450073, 0.010169983, 0.0023880005, -0.040405273, 0.07519531, -0.014663696, -0.006793976, -0.02859497, 0.017822266, 0.0009870529, 0.0056266785, -0.005115509, -0.025238037, 0.012573242, -0.013725281, 0.018112183, 0.015182495, 0.036254883, -0.027679443, -0.004386902, 0.012481689, -0.02468872, -0.05731201, -0.025009155, 0.00730896, 0.0031814575, -0.0063705444, -0.060394287, 0.07171631, 0.0074272156, -0.07128906, -0.034240723, -0.01537323, 0.059448242, 0.024856567, -0.015258789, -0.025924683, -0.010551453, -0.0004119873, 0.017333984, 0.035461426, 0.021377563, -0.02935791, -0.030151367, -0.053710938, 0.012908936, -0.037109375, 0.037200928, -0.0357666, -0.061920166, 0.009674072, 0.01626587, 0.027770996, -0.034576416, -0.022262573, -0.04269409, 0.004421234, 0.007282257, -0.010597229, -0.018630981, 0.046539307, -0.034362793, -0.043395996, 0.024749756, 0.03704834, -0.02619934, -0.032165527, 0.03857422, 0.018493652, 0.010513306, 0.008476257, 0.00047516823, -0.0670166, 0.019042969, -0.0052871704, -0.08654785, -0.032104492, -0.051971436, -0.022323608, 0.04071045, -0.016326904, -0.0026683807, 0.028244019, 0.009048462, 0.037200928, -0.013824463, -0.018005371, -0.015548706, -0.044158936, 0.014442444, -0.0357666, -0.002122879, 0.011360168, 0.0262146, -0.07519531, -0.054901123, 0.041107178, 0.024856567, -0.006706238, 0.020355225, 0.009170532, 0.03173828, -0.052947998, 0.018844604, 0.03466797, -0.0211792, 0.00027775764, 0.016708374, -0.034423828, 0.061706543, -0.07299805, 0.00491333, -0.04953003, 0.039123535, -0.0027484894, 0.061950684, -0.07281494, -0.024719238, 0.03778076, 0.051208496, 0.0053977966, 0.0178833, 0.023071289, -0.01977539, -0.034362793, -0.013069153, 0.011795044, -0.03466797, -0.029769897, -0.033996582, -0.01612854, 0.0033359528, -0.0014009476, 0.019714355, 0.038116455, -0.014480591, -0.010047913, 0.05847168, -0.0020256042, 0.016311646, 0.044189453, -0.05847168, 0.045043945, 0.0020141602, 0.0024662018, 0.011520386, -0.00086402893, -0.014137268, -0.024978638, 0.0052108765, -0.016464233, 0.042541504, -0.004787445, 0.023788452, 0.0051879883, -0.045654297, -0.008377075, -0.016647339, 0.024765015, -0.008178711, 0.04031372, 0.017822266, 0.020111084, 0.04498291, 0.02432251, 0.031188965, -0.023864746, 0.03704834, -0.028396606, -0.010467529, -0.027679443, -0.020095825, 0.013313293, -0.010314941, -0.021942139, 0.0116119385, -0.026687622, 0.019104004, 0.01398468, -0.019546509, 0.015319824, -0.034606934, 0.0022220612, -0.0022716522, 0.02949524, -0.021194458, -0.021011353, -0.0010061264, -0.0075950623, 0.016479492, 0.052490234, 0.032196045, 0.023269653, -0.02027893, -0.004787445, 0.0045547485, -0.022003174, -0.024154663, 0.0078086853, -0.0038757324, -0.044647217, -0.04751587, -0.017730713, -0.008270264, -0.013908386, 0.06329346, -0.031066895, 0.12805176, 0.002603531, -0.0041770935, 0.045715332, -0.0010290146, 0.00071811676, -0.026412964, 0.018341064, -0.008918762, 0.010246277, -0.008926392, -0.039093018, -0.013809204, -0.0034217834, -0.015823364, -0.008308411, 0.02998352, -0.01222229, 0.0017871857, -0.02015686, 0.0076179504, -0.009689331, -0.032928467, 0.018936157, -0.028015137, 0.005088806, -0.05230713, -0.092285156, -0.03704834, -0.02279663, -0.06524658, 0.058288574, -0.0021514893, -0.006149292, 0.009086609, -0.0014533997, -0.0015192032, -0.03982544, -0.016983032, 0.021102905, 0.017929077, -0.01574707, 0.020233154, -0.0022144318, -0.030319214, -0.042236328, 0.014320374, -0.04034424, -0.00054359436, -0.061523438, 0.038330078, 0.024963379, 0.003074646, 0.022781372, 0.05114746, -0.0054779053, 0.0032367706, -0.0020561218, -0.05368042, -0.010299683, 0.014915466, 0.002035141, -0.049926758, -0.074401855, 0.022918701, 0.0036296844, 0.00017631054, 0.0011816025, 0.014533997, -0.028030396, 0.026779175, 0.017822266, -0.03491211, -0.003370285, -0.0076560974, -0.0035305023, 0.0010433197, -0.057739258, -0.02557373, -0.023071289, 0.05105591, 0.030929565, -0.03869629, -0.024139404, -0.05117798, -0.018798828, -0.021240234, -0.005947113, 0.024169922, 0.018249512, -0.0546875, -0.012107849, 0.013633728, 0.011756897, -0.05001831, -0.0024032593, 0.04940796, -0.003692627, 0.041870117, 0.01725769, -0.010253906, 0.0093307495, 0.022735596, -0.03866577, -0.07141113, 0.02633667, 0.0017433167, -0.004711151, 0.016021729, -0.02319336, -0.00774765, -0.0038986206, 0.014961243, -0.05114746, -0.049743652, 0.021743774, 0.02029419, -0.016723633, -0.012802124, 0.012519836, -0.007785797, -0.03286743, 0.009559631, 0.03665161, 0.016784668, -0.03387451, -0.0026760101, 0.020736694, 0.022750854, -0.0070495605, -0.03717041, -0.04714966, 0.012664795, 0.01399231, -0.014328003, 0.057006836, -0.027267456, 0.0023212433, 0.060913086, -0.029251099, -0.05432129, 0.037231445, 0.07800293, 0.022476196, 0.025466919]}, "B01HID4Y7Q": {"id": "B01HID4Y7Q", "original": "Brand: Char-Broil\nName: Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: 2-burner, 24,000-BTU Cabinet Gas Grill\n300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates\nStainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional\nElectronic ignition for fast and reliable startups. Metal side shelves fold down when not in use.\nConvenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.\n", "metadata": {"Name": "Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel", "Brand": "Char-Broil", "Description": "", "Features": "2-burner, 24,000-BTU Cabinet Gas Grill\n300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates\nStainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional\nElectronic ignition for fast and reliable startups. Metal side shelves fold down when not in use.\nConvenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.033203125, -0.0019950867, -0.050811768, -0.02734375, -0.008354187, -0.0070114136, -0.028381348, 0.028503418, -0.02067566, 0.012504578, -0.010391235, 0.011314392, 0.005870819, -0.027404785, 0.014663696, -0.034118652, 0.014053345, 0.028686523, 0.019119263, -0.029724121, 0.0009756088, -0.01335144, 0.019317627, 0.07775879, 0.07220459, -0.053619385, -0.016311646, 0.03564453, 0.02645874, 0.016418457, 0.035095215, -0.029022217, 0.058746338, 0.0006866455, -0.043914795, -0.043701172, 0.019958496, -0.032806396, -0.053009033, 0.027557373, 0.0098724365, 0.0042533875, 0.04324341, -0.038146973, 0.0008254051, -0.022613525, 0.022705078, -0.024215698, 0.016021729, -0.024642944, 0.013702393, 0.017044067, 0.014389038, -0.027633667, -0.012825012, 0.03640747, 0.050109863, -0.022628784, 0.012283325, -0.031585693, -0.021713257, 0.03086853, 0.030059814, 0.013618469, -0.055358887, 0.018554688, 0.08874512, -0.0138168335, -0.017959595, -0.07550049, -0.0071487427, 0.03869629, 0.019378662, -0.020248413, -0.014633179, 0.007904053, -0.00024092197, 0.009231567, 0.035247803, -0.013183594, -0.026489258, -0.034698486, 0.009521484, -0.005012512, -0.0066604614, 2.861023e-06, -0.01701355, -0.0051078796, 0.00016486645, -0.04699707, -0.007926941, 0.002565384, -0.04888916, 0.05380249, -0.019485474, 0.0018501282, -0.02810669, -0.04486084, 0.045318604, 0.029052734, 0.031082153, -0.039276123, 0.014762878, -0.008964539, -0.01084137, 0.05770874, -0.014198303, 0.020614624, 0.011230469, 0.0074806213, 0.026031494, -0.050720215, -0.0181427, -0.04055786, -0.011856079, 0.020263672, -0.025161743, 0.00083732605, 0.016784668, -0.031707764, -0.04046631, -0.018295288, -0.03050232, 0.050872803, 0.024124146, 0.026657104, 0.010093689, 0.040649414, -0.05307007, 0.031173706, -0.00793457, -0.025787354, 0.05609131, 0.120666504, 0.038879395, -0.01600647, 0.0012550354, -0.013061523, 0.01146698, 0.0015134811, 0.0053367615, -0.01687622, 0.04067993, 0.015731812, -0.043182373, 0.054992676, 0.03427124, -0.018066406, -0.043670654, -0.095336914, -0.017501831, -0.0206604, 0.045410156, 0.020690918, -0.077941895, 0.038909912, -0.03665161, 0.009399414, -0.062561035, -0.031219482, -0.028213501, -0.023468018, -0.02041626, 0.015838623, -0.022827148, 0.064453125, 0.03390503, 0.007331848, 0.009788513, 0.05343628, -0.022094727, -0.0074768066, 0.008720398, 0.010124207, -0.01499176, 0.008903503, 0.0060691833, 0.017227173, 0.035369873, -0.04724121, -0.05419922, -0.044891357, 0.10437012, -0.047424316, 0.008453369, -0.017807007, 0.031204224, 0.0033473969, -0.011230469, 0.010871887, 0.029571533, 0.021514893, -0.005935669, -0.036865234, 0.014915466, -0.008399963, -0.05065918, -0.020645142, -0.015563965, 0.030227661, 0.03111267, 0.0026721954, 0.0022277832, -0.0017776489, -0.017623901, -0.0038414001, 0.004436493, 0.003665924, 0.046722412, 0.020263672, -0.025146484, 0.0058898926, 0.011878967, -0.040618896, -0.032958984, 0.019165039, -0.0057792664, 0.00141716, 0.012840271, 0.0069770813, 0.027664185, 0.0057640076, 0.009735107, -0.0042877197, 0.0065727234, 0.01928711, -0.029678345, 0.013389587, 0.038909912, 0.0022716522, 0.027816772, 0.01247406, 0.08465576, 0.10668945, 0.017837524, 0.015823364, 0.0579834, -0.016677856, -0.0013751984, -0.02508545, 0.015388489, -0.00036597252, -0.025985718, 0.013175964, 0.014732361, -0.00415802, 0.012329102, 0.009231567, -0.011116028, -0.00472641, 0.03488159, -0.013877869, 0.029769897, 0.0050697327, -0.010055542, 0.02355957, -0.011756897, 0.016052246, -0.030700684, 0.046020508, -0.015670776, 0.04647827, 0.026641846, 0.0008883476, 0.012397766, -0.00090646744, 0.010292053, 0.00737381, -0.02166748, 0.0011043549, 0.02192688, 0.0021018982, 0.001282692, -0.019363403, -0.010246277, -0.015014648, -0.0045394897, 0.029052734, -0.0079956055, -0.034729004, 0.017471313, -0.0017127991, -0.03692627, 0.007282257, 0.03555298, 0.020324707, -0.006046295, 0.064208984, -0.0012111664, 0.02116394, 0.03793335, -0.006996155, -0.024642944, 0.019363403, -0.02519226, -0.018051147, 0.13122559, 0.03930664, 0.0004081726, 0.002521515, 0.02658081, 0.0037651062, -0.048675537, -0.00036144257, -0.0054893494, 0.03149414, -0.021270752, 0.008964539, 0.010910034, -0.02406311, 0.016708374, 0.048919678, 0.025131226, 0.026885986, 0.044708252, 0.0017404556, 0.030380249, 0.05810547, 0.021957397, -0.021484375, -0.044769287, -0.0012741089, 0.0053596497, 0.010292053, 0.014091492, 0.0007405281, 0.015945435, 0.013114929, -0.011962891, 0.00096178055, -0.0423584, -0.025817871, -0.013130188, 0.007709503, -0.02532959, -0.009887695, 0.0126953125, 0.041656494, 0.0024986267, -0.061706543, -0.002445221, -0.0068893433, -0.018432617, -0.0005941391, -0.028884888, -0.015716553, 0.022247314, 0.011276245, 0.009666443, 0.015991211, -0.0017642975, -0.010658264, 0.024017334, -0.0056152344, 0.013305664, -0.029815674, -0.03439331, -0.025039673, -0.039154053, -0.067993164, 0.006134033, -0.017990112, -0.040771484, -0.038970947, 0.05621338, -0.0134887695, -0.042999268, -0.03274536, -0.03527832, -0.004989624, 0.04763794, -0.011451721, -0.099975586, -0.034057617, -0.0725708, 0.01612854, 0.043884277, -0.026351929, 0.015556335, 0.021102905, 0.0057411194, 0.02619934, -0.01789856, 0.0064086914, 0.0032405853, 0.0013017654, 0.0061950684, 0.06262207, 0.011497498, -0.0138168335, 0.013977051, 0.0635376, -0.0137786865, -0.021209717, 0.001868248, 0.013549805, -0.027954102, 0.0003144741, -0.020629883, -0.009429932, -0.089904785, 0.003786087, -0.007003784, -0.038085938, 0.008377075, -0.0869751, -0.048980713, -0.0635376, -0.0073394775, 0.049072266, -0.008346558, -0.024810791, -0.040771484, -0.0062294006, 0.03515625, -0.019058228, 0.020324707, -0.012779236, -0.00042533875, 0.0019779205, 0.031204224, -0.030395508, 0.03024292, 0.026641846, -0.007270813, 0.057403564, -0.013259888, 0.0062217712, -0.06854248, 0.006828308, 0.028381348, -0.02734375, -0.023986816, -0.021118164, -0.0029335022, 0.0029850006, -0.014175415, -0.015716553, -0.0067367554, -0.021072388, -0.058898926, -0.04260254, 0.019714355, 0.029968262, 0.010101318, -0.0039711, -0.0579834, -0.023666382, -0.032470703, -0.003900528, -0.0043029785, 0.0027256012, 0.009254456, 0.029693604, -0.0044021606, 0.0770874, 0.012565613, 0.047821045, -0.005065918, -0.03036499, -0.01826477, -0.03579712, 0.01878357, -0.0016880035, -0.023406982, 0.0061836243, -0.012771606, 0.034820557, -0.020126343, -0.007358551, 0.011932373, 0.049835205, 0.05090332, -0.020721436, -0.00655365, -0.053894043, 0.031036377, 0.0077819824, -0.010284424, -0.051452637, -0.030136108, -0.00198555, -0.06933594, 0.10522461, 0.044799805, -0.023071289, 0.0881958, 0.06335449, 0.0047950745, 0.0002501011, 0.004257202, -0.012863159, -0.024917603, 0.062927246, -0.011665344, -0.0025463104, 0.02154541, -0.041870117, 0.024414062, 0.008865356, -0.05819702, 0.032196045, 0.01751709, -0.036254883, -0.002714157, 0.0085372925, 0.015327454, -0.014892578, 0.010940552, 0.034973145, -0.034301758, -0.03579712, -0.005706787, 0.009155273, -0.031921387, -0.017028809, -0.013389587, 0.025299072, -0.0541687, -0.014671326, 0.016204834, 0.02456665, -0.015625, 0.04220581, 0.0050849915, 0.017150879, -0.06549072, -0.0037994385, -0.035308838, -0.008987427, 0.05517578, 0.019363403, 0.03125, 0.0008068085, -0.017913818, 0.02861023, -0.0107803345, 0.026123047, -0.026504517, -0.06524658, 0.00058841705, 0.009300232, 0.008155823, -0.05142212, -0.017562866, -0.0013303757, -0.025497437, -0.007003784, -0.0029621124, -0.028030396, 0.0076026917, 0.013626099, -0.089782715, -0.03100586, -0.0063667297, -0.023391724, -0.032684326, 0.023757935, -0.0034999847, -0.044433594, 0.003200531, 0.025268555, -0.050689697, 0.00040626526, -0.036468506, -0.0077285767, 0.029449463, 0.00749588, 0.0418396, -0.01335144, -0.008415222, -0.0107803345, 0.07678223, -0.014533997, -0.0049362183, -0.058044434, -0.030517578, -0.0012464523, 0.011192322, 0.006290436, -0.021011353, 0.012229919, -0.004951477, -0.057525635, -0.06011963, 0.006389618, -0.02357483, -0.0362854, -0.0713501, -0.0021476746, 0.11431885, -0.0079574585, 0.0008149147, 0.022079468, 0.018615723, 0.011795044, -0.013656616, -0.06555176, 0.018112183, 0.008232117, -0.035003662, 0.014862061, -0.00030064583, -0.010185242, 0.021560669, 0.042144775, 0.0046920776, -0.033416748, -0.0033912659, -0.030776978, 0.0054092407, -0.036224365, -0.0068359375, 0.04257202, -0.026382446, -0.00022363663, -0.06311035, 0.08605957, 0.022109985, -0.007019043, -0.015945435, -0.026046753, -0.028137207, -0.085510254, -0.014587402, -0.008430481, 0.010887146, 0.000313282, -0.023239136, 0.0042495728, -0.0037002563, -0.0066566467, 0.0076942444, 0.006980896, 0.034729004, -0.008880615, -0.0022354126, -0.024810791, -0.0211792, 0.03665161, -0.0046157837, 0.032684326, -0.010749817, -0.02458191, 0.045715332, -0.026504517, -0.030258179, -0.001033783, -0.007205963, -0.012321472, 0.007270813, 0.018371582, -0.016738892, 0.029266357, 0.013786316, 0.027740479, -0.013694763, -0.005050659, 0.013900757, -0.0045051575, 0.008399963, 0.06933594, -0.020111084, 0.018081665, 0.07495117, 0.005432129, 0.0009965897, 0.051116943, -0.027282715, 0.056518555, 0.007736206, 0.008613586, 0.020523071, 0.013877869, 0.02116394, -0.03781128, 0.05267334, -0.00095176697, -0.005458832, -0.04345703, 0.0077056885, 0.0010328293, 0.009750366, 0.0014209747, -0.026351929, 0.042938232, -0.015914917, -0.020263672, -0.0057754517, 0.043304443, -0.022644043, 0.0032577515, 0.0052375793, 0.005191803, -0.025619507, -0.016357422, -0.03274536, 0.0021572113, -0.045654297, 0.022247314, 0.045166016, -0.0046539307, -0.004058838, -0.03060913, -0.012794495, -0.015350342, -0.030319214, -0.007865906, 0.012329102, 0.0046195984, 0.0030212402, 0.0019512177, 0.015602112, 0.015045166, -0.012252808, -0.04345703, -0.03753662, 0.017791748, -0.014389038, 0.014122009, -0.033233643, 0.0027256012, 0.025543213, -0.01777649, 0.010612488, 0.018753052, -0.05206299, -0.023513794, 0.007221222, 0.013618469, 0.01309967, -0.050689697, 0.066711426, -0.03677368, -0.047546387, -0.042510986, 0.035095215, -0.014373779, -0.024353027, 0.096069336, 0.06726074, 0.007965088, 0.027420044, -0.0005993843, -0.043792725, -0.0018911362, -0.002445221, -0.09234619, -0.025894165, -0.029846191, 0.0049476624, -0.0060691833, -0.02116394, -0.00573349, 0.045135498, -0.005340576, -0.05078125, -0.009643555, -0.015838623, 0.024765015, -0.051208496, 0.006542206, -0.01159668, -0.0013685226, -0.0020046234, -0.006587982, -0.04321289, 0.009689331, 0.020767212, -0.00013077259, -0.0016727448, -0.012786865, -0.0037269592, 0.011001587, 0.028930664, 0.036315918, -0.009284973, 0.016143799, -0.0178833, 0.026519775, -0.011802673, 0.0309906, -0.06213379, -0.014076233, -0.03552246, 0.016021729, 0.038757324, 0.030197144, -0.052825928, -0.01486969, 0.05316162, 0.03817749, 0.02456665, 0.023757935, 0.044769287, 0.004650116, -0.028259277, -0.00064086914, 0.016998291, -0.030914307, -0.027557373, -0.031280518, -0.052581787, 0.0046539307, -0.024108887, 0.023284912, -0.036865234, 0.040252686, -0.045684814, -0.0128479, 0.009933472, -0.03048706, 0.031173706, -0.0020618439, -0.044799805, -0.021118164, 0.023101807, 0.023773193, -0.0064201355, -0.04598999, -0.0154953, 0.018096924, -0.009613037, 0.025497437, -0.029434204, 0.034118652, -0.016860962, -0.068359375, 0.035247803, 0.042541504, -0.011375427, 0.034698486, -0.06726074, -0.018875122, -0.014122009, 0.02722168, 0.007850647, 0.015365601, 0.015083313, 0.025161743, -0.0002412796, -0.010314941, 0.007926941, -0.004184723, 0.012054443, 0.023071289, 0.012413025, -0.014457703, -0.036621094, 0.010948181, 0.049865723, -0.01651001, 0.015327454, -0.019332886, 0.030288696, -0.03665161, 0.028244019, -0.009353638, -0.043670654, -0.019302368, 0.004470825, 0.024856567, 0.08026123, 0.0038032532, 0.010513306, -0.003967285, -0.04345703, 0.039215088, -0.042053223, 0.058898926, 0.035827637, -0.007411957, -0.0096206665, -0.04547119, -0.02633667, -0.0065956116, -0.010437012, 0.014015198, -0.0064735413, 0.03012085, 0.034484863, 0.03289795, 0.057159424, -0.025299072, 0.024047852, 0.0028381348, 0.009109497, 0.04876709, 0.004436493, -0.023071289, -0.027328491, 0.02368164, 0.013580322, 0.022659302, 0.006790161, 0.018875122, 0.031280518, 0.016189575, -0.033081055, 0.0115356445, 0.007335663, -0.040100098, 0.02720642, -0.02130127, -0.020401001, -0.019592285, -0.04208374, -0.0093307495, 0.0049552917, -0.046691895, 0.010261536, 0.02810669, -0.04949951, -0.02885437, 0.023529053, -0.04650879, -0.03540039, -0.025604248, -0.0024700165, 0.05831909, -0.0079422, 0.03451538, -0.039642334, -0.04446411, -0.0062408447, 0.03213501, -0.046142578, -0.025756836, 0.021072388, -0.010848999, 0.010139465, -7.939339e-05, 0.0018110275, 0.0635376, 0.030914307, -0.017318726, -0.0037231445, 0.00084257126, -0.016418457, -0.0054016113, -0.006351471, -0.0395813, 0.0057411194, 0.03845215, -0.018753052, -0.0033569336, 0.016921997, -0.025009155, -0.09283447, -0.030578613, -0.029907227, -0.0017023087, -0.018127441, 0.016571045, -0.009674072, 0.023544312, -0.033111572, 0.00198555, -0.015991211, 0.045166016, 0.059814453, -0.006931305, 0.028717041, -0.03302002, -0.10479736, -0.062927246, -0.030548096, 0.05996704, 0.03250122, 0.022094727, 0.046081543, 0.016174316, -0.039855957, 0.009239197, -0.01977539, -0.0045394897, 0.0013914108, -0.011184692, 0.0017299652, -0.02017212, -0.021652222, -0.021255493, -0.027267456, -0.02331543, 0.05734253, 0.0051994324, -0.020843506, -0.0063285828, -0.03427124, -0.010932922, 0.015037537, -0.04260254, -0.016326904, -0.010421753, -0.011795044, 0.01260376, -0.005088806, 0.0047683716, -0.01159668, -0.005470276, -0.023544312, 0.010398865, 0.036102295, -0.010475159, -0.059783936, 0.058044434, 0.023712158, 0.03945923, 0.014984131, -0.057434082, -0.009712219, 0.026184082, 0.0048103333, -0.035461426, 0.026611328, -0.05911255, 0.013221741, 0.0042495728, -0.03378296, -0.026107788, -0.004550934, 0.035003662, -0.010536194, 0.011703491]}, "B01HITNEEY": {"id": "B01HITNEEY", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black\nDescription: \nFeatures: 280 square inches of cooking space over porcelain-coated grates\nTwo stainless steel in-line burners for cooking performance;Assembly Required\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\nPiezo ignition system for fast and reliable startups. Cooking System: Convectional\n", "metadata": {"Name": "American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black", "Brand": "AMERICAN GOURMET", "Description": "", "Features": "280 square inches of cooking space over porcelain-coated grates\nTwo stainless steel in-line burners for cooking performance;Assembly Required\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\nPiezo ignition system for fast and reliable startups. Cooking System: Convectional", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.039215088, -0.026535034, -0.01876831, 0.00037693977, -0.029052734, -0.008277893, -0.027557373, 0.01890564, -0.043273926, 0.0009551048, -0.007675171, 0.014312744, -0.015342712, -0.036895752, 0.03741455, -0.026290894, 0.03390503, -0.0030345917, -0.0029411316, 0.0017375946, -0.00844574, 0.036224365, -0.041809082, 0.06817627, 0.0463562, -0.07171631, 0.005279541, 0.010673523, 0.041503906, 0.024963379, 0.031982422, -0.00843811, 0.017074585, 0.00046491623, -0.007133484, -0.03665161, 0.0079574585, -0.017715454, -0.017715454, 0.022964478, 0.018188477, -0.0031318665, -0.018096924, 0.026229858, -0.035736084, -0.036193848, 0.026641846, -0.017974854, 0.022079468, -0.016418457, 0.015975952, 0.011062622, 0.017959595, -0.05630493, -0.023757935, -0.007080078, 0.04055786, -0.021514893, 0.018325806, -0.04257202, -0.037322998, 0.00969696, 0.036102295, 0.0045051575, -0.036315918, 0.023208618, 0.074279785, -0.024261475, 0.021331787, -0.02079773, -0.00019550323, 0.0121154785, 0.02923584, -0.028900146, -0.014442444, -0.04244995, 0.010734558, -0.039520264, 0.026916504, -0.029067993, -0.014205933, 0.015464783, 0.019561768, -0.024795532, -0.013313293, -0.06542969, -0.0075531006, 0.0138168335, 0.026443481, -0.027618408, 0.0029449463, -0.015556335, -0.011367798, 0.02758789, 0.0069084167, -0.046173096, -0.050231934, -0.06689453, 0.008422852, -0.0045051575, 0.043670654, -0.029022217, 0.032928467, 0.0112838745, -0.0020694733, 0.074523926, 0.020065308, 0.046142578, 0.0184021, -0.020324707, 0.012252808, 0.0060310364, -0.0015878677, -0.043182373, -0.025131226, 0.026931763, 0.018325806, -0.013877869, 0.02835083, -0.0036563873, -0.035064697, -0.007724762, -0.024032593, 0.04458618, 0.03817749, 0.030975342, 0.016479492, 0.009979248, -0.03213501, 0.051940918, -0.03866577, 0.0015554428, 0.069885254, 0.022262573, -0.018310547, -0.020401001, 0.009254456, -0.027175903, 0.0390625, -0.02204895, 0.015960693, -0.009841919, 0.037628174, 0.032989502, -0.03363037, 0.023132324, 0.017318726, -0.012008667, -0.021881104, -0.06762695, 0.031066895, -0.064331055, 0.055725098, 0.025894165, -0.1149292, 0.050567627, -0.014785767, 0.01121521, -0.07470703, -0.052856445, -0.09399414, -0.040161133, -0.007980347, -0.036071777, -0.0513916, 0.06665039, 0.07800293, 0.015899658, 0.037963867, 0.03829956, 0.013259888, -0.0647583, 0.046875, 0.046661377, -0.004753113, 0.054504395, -0.008224487, -0.043273926, 0.068481445, -0.04647827, -0.045440674, -0.010787964, 0.09442139, -0.01751709, -0.013793945, 0.014656067, 0.0015411377, 0.019042969, 0.015129089, 0.01109314, -0.0040512085, 0.013595581, 0.026550293, -0.048187256, 0.007843018, 0.012573242, -0.0052223206, 0.034576416, -0.00027918816, -0.030410767, -0.0029296875, -0.016830444, -0.01687622, 0.012626648, 0.00025606155, -0.034698486, 0.007987976, -0.013725281, -0.015991211, -0.017562866, 0.01473999, -0.010505676, -0.021347046, -0.0132369995, -0.058898926, -0.049835205, -0.008773804, 0.010734558, 0.008338928, 0.008430481, 0.015991211, 0.025436401, 0.01625061, 0.024139404, 0.030838013, -0.007762909, -0.018966675, -0.010871887, 0.06518555, -0.01473999, 0.021377563, 0.03781128, 0.0869751, 0.05227661, -0.0045547485, 0.041229248, 0.08074951, 0.0025424957, -0.019744873, -0.026382446, 0.0011148453, -0.005470276, -0.013122559, 0.04147339, 0.010391235, -0.010627747, 0.0053634644, 0.033447266, -0.029647827, 0.0034637451, 0.06896973, 0.0077781677, 0.016494751, 0.05621338, -0.025894165, 0.028717041, -0.011207581, 0.02130127, 0.013931274, 0.020736694, -0.0025424957, 0.0904541, 0.02923584, 0.023101807, 0.03451538, 0.009559631, 0.02784729, 0.01600647, -0.040496826, 0.0014514923, 0.020095825, 0.060333252, -0.013282776, -0.035095215, -0.057739258, 0.011604309, -0.040008545, 0.058654785, -0.006500244, -0.028533936, 0.019104004, 0.046691895, -0.0059928894, -0.0036334991, 0.01802063, 0.028213501, 0.0027008057, 0.020004272, 0.020141602, 0.0051574707, 0.03274536, 0.0011348724, 0.00091362, -0.0051002502, 0.0003592968, -0.040405273, 0.10223389, 0.03274536, 0.00024485588, 0.010803223, 0.027191162, 0.024810791, -0.03741455, 0.0026836395, 0.005203247, -0.024017334, 0.011566162, -0.0028247833, 0.0048179626, -0.02633667, 0.005908966, 0.04977417, 0.027236938, 0.009063721, 0.03427124, -0.012664795, 0.0040893555, 0.06402588, -0.0022735596, -0.0010290146, 0.021591187, 0.011993408, -0.048858643, -0.006385803, -0.0032730103, 0.009002686, -0.024276733, -0.020950317, -0.052490234, -0.0030231476, -0.004180908, -0.040222168, -0.0050354004, 0.03225708, -0.0024375916, 0.0071029663, 0.008758545, 0.010391235, 0.0019035339, -0.028686523, 0.012504578, -0.015007019, -0.021591187, -0.019424438, -0.031433105, -0.0005645752, 0.015129089, 0.010635376, 0.012435913, 0.014541626, -0.007835388, -0.022354126, -0.0096588135, -0.019622803, 0.008659363, 0.000854969, -0.0064964294, -0.023086548, -0.026855469, -0.07055664, -0.017868042, -0.015022278, -0.06542969, -0.021636963, 0.08868408, 0.0019006729, -0.032165527, -0.042144775, -0.043762207, -0.0032367706, 0.05480957, -0.06085205, -0.036132812, -0.013069153, -0.053527832, 0.01335144, 0.03451538, -0.03579712, 0.014884949, 0.025405884, 0.014266968, 0.06549072, -0.06994629, 0.011627197, 0.011398315, 0.00059747696, 0.0024051666, 0.03503418, 0.008026123, -0.002708435, 0.019058228, 0.038635254, -0.03704834, -0.008743286, 0.00015115738, 0.005622864, -0.0017414093, 0.00504303, -0.050201416, -0.013038635, -0.07562256, 0.008728027, 0.005088806, -0.055999756, -0.008934021, -0.073913574, -0.075683594, -0.044891357, -0.0003771782, 0.03805542, -0.022140503, 0.0007200241, -0.035247803, 0.009552002, 0.0044670105, -0.007610321, -0.014640808, -0.0064964294, 0.019927979, -0.0029411316, -0.004211426, -0.0006814003, -0.009567261, 0.007896423, -0.06915283, 0.06707764, -0.039031982, 0.056488037, -0.044036865, 0.048797607, 0.013404846, -0.006454468, -0.033966064, -0.0021972656, 0.0021877289, 0.029251099, 0.022766113, -0.026763916, 0.040893555, -0.022369385, -0.03387451, -0.009346008, -7.623434e-05, 0.040252686, 0.04119873, -0.047210693, -0.042388916, -0.0491333, -0.011871338, 0.004447937, -0.0047569275, -0.0032749176, 0.010223389, 0.028274536, -0.017807007, 0.050750732, 0.03149414, 0.0758667, 0.0574646, -0.037963867, -0.00598526, -0.068725586, 0.02633667, 0.07446289, -0.013954163, -0.016571045, 0.0059547424, 0.02017212, -0.026473999, 0.01574707, -0.0024471283, 0.04321289, 0.04345703, -0.022827148, -0.015213013, -0.055145264, 0.02519226, 0.0019817352, -0.0073776245, -0.040924072, -0.026321411, -0.0036811829, -0.03427124, 0.06414795, 0.05432129, -0.020019531, 0.04309082, 0.0340271, -0.00920105, 0.02986145, 0.009719849, 0.022750854, -0.020599365, 0.07562256, -0.0054779053, 0.0061683655, 0.01448822, 0.0056610107, 0.015213013, -0.0016565323, -0.0068473816, 0.007583618, -0.02268982, -0.024429321, -0.015823364, 0.030273438, 0.024887085, -0.0016841888, 0.006958008, -0.009788513, 0.01600647, -0.03955078, -0.0073928833, 0.009315491, -0.01386261, -0.0069351196, 0.01260376, 0.019744873, -0.020401001, -0.016448975, -0.020187378, -0.002521515, 0.03265381, 0.03778076, -0.038330078, 0.0154800415, 0.0135650635, 0.01889038, -0.017303467, -0.0075302124, 0.024612427, 0.00579834, 0.043762207, 0.027832031, -0.013221741, 0.028625488, -0.021224976, 0.0096588135, -0.008094788, -0.037078857, -0.019699097, 0.012779236, 0.011657715, -0.0073127747, 0.006843567, -0.04385376, -0.03451538, -0.025405884, 0.0068473816, -0.013442993, 0.0109939575, -0.001036644, -0.10089111, -0.021209717, 0.015686035, -0.0059661865, -0.029174805, 0.0102005005, -0.046875, 0.008857727, -0.041137695, 0.016540527, -0.019927979, -0.0033931732, -0.038879395, 0.00026750565, 0.057403564, 0.054626465, 0.046722412, -0.047912598, -0.0076408386, -0.025100708, 0.095947266, 0.023132324, 0.02279663, -0.034118652, -0.03515625, -0.018676758, 0.0030899048, 0.0061416626, 0.019638062, 0.014251709, -0.027359009, -0.053619385, -0.029083252, -0.017303467, 0.04385376, -0.053955078, -0.035461426, -0.019546509, 0.070373535, -0.017333984, -0.017333984, -0.018981934, 0.03173828, 0.024047852, -0.016357422, -0.047058105, 0.013885498, 0.011688232, -0.027236938, 0.0012073517, -0.01222229, -0.0181427, 0.07336426, 0.02885437, 0.049591064, -0.028930664, 0.0007381439, 0.019058228, 0.013381958, 0.006668091, -0.005168915, 0.009811401, -0.0026493073, -0.008079529, -0.038909912, 0.081726074, -0.0066337585, -0.023361206, -0.014808655, 0.009941101, -0.01108551, -0.07165527, 0.016311646, -0.02897644, -0.03125, -0.029388428, -0.026473999, 0.0060920715, -0.043762207, 0.00035905838, -0.0051651, -0.009880066, 0.037109375, -0.010826111, 0.0055351257, -0.0044021606, -0.009986877, -0.006175995, -0.008995056, 0.034362793, -0.009986877, 0.021621704, 0.022476196, -0.013473511, 0.0028972626, -0.004211426, -0.016098022, 0.01737976, -0.02949524, 0.0057525635, -0.024932861, 0.008522034, 0.023788452, 0.017303467, -0.009468079, -0.0037975311, 0.0012254715, -0.015014648, -0.009994507, 0.028625488, -0.035858154, 0.025543213, 0.04095459, -0.022567749, -0.005962372, 0.025848389, -0.042297363, 0.04763794, 0.0119018555, -0.022079468, 0.032226562, 0.00554657, 0.010093689, -0.0496521, 0.08178711, -0.012702942, 0.0031814575, -0.064331055, 0.020065308, 0.01776123, -0.0028095245, -0.0032730103, -0.021865845, 0.037841797, -0.060302734, -0.003358841, -0.02684021, 0.068603516, -0.041259766, -0.0069122314, -0.0029907227, 0.0018081665, -0.044921875, -0.033843994, -0.02784729, -0.032043457, -0.021987915, 0.011161804, 0.036865234, -0.02267456, -0.00065279007, -0.05166626, 0.0059814453, -0.0049858093, -0.03149414, -0.02758789, 0.028945923, 0.0072135925, -0.011489868, 0.01386261, -0.0068969727, -0.00082969666, -0.030715942, -0.018859863, -0.0345459, 0.027191162, -0.010009766, 0.032226562, -0.035705566, 0.016082764, -0.002067566, -0.043548584, -0.0019760132, 0.008613586, -0.06958008, -0.021026611, 0.019866943, 0.05621338, -0.01184082, 0.0423584, 0.08734131, -0.058166504, -0.03463745, -0.04611206, 0.038238525, -0.013076782, -0.004802704, 0.07098389, 0.06585693, -0.0075035095, 0.047943115, -0.012931824, -0.023849487, -0.027664185, -0.006587982, -0.0440979, -0.02508545, -0.0317688, 0.021652222, -0.001832962, -0.016403198, -0.0074424744, 0.032287598, 0.010871887, 0.008460999, -0.03189087, -0.0124435425, -0.0014371872, -0.014945984, -0.0031929016, -0.03842163, 0.0013160706, -0.032165527, -0.0069885254, -0.042266846, -0.03881836, 0.009933472, 0.029251099, 0.020080566, -0.012626648, -0.00034475327, 0.00541687, -0.010101318, 0.053771973, -0.028457642, -0.0029392242, -0.0014753342, 0.0368042, 0.00075149536, 0.036193848, -0.018829346, -0.01423645, -0.041137695, 0.029403687, 0.040496826, 0.042755127, -0.056671143, -0.0016908646, 0.043701172, 0.04058838, 0.046722412, 0.020858765, 0.024841309, -0.052337646, -0.05041504, 0.022201538, -0.018722534, -0.054779053, -0.035369873, -0.03363037, -0.05444336, -0.0030555725, -0.026412964, 0.042419434, -0.0440979, 0.018859863, 0.014587402, -0.04345703, 0.03881836, -0.019012451, 0.021362305, 0.025268555, -0.018569946, 0.025543213, 0.017974854, 0.0024662018, -0.038330078, 0.011558533, 0.008544922, 0.040130615, 0.011108398, 0.03274536, -0.0007853508, 0.060760498, -0.00674057, -0.08135986, 0.030334473, 0.020217896, 0.012161255, 0.049438477, -0.07446289, -0.030044556, -0.0017337799, 0.0034770966, -0.03112793, 0.020996094, 0.03466797, -0.008903503, -0.015167236, 0.017211914, -0.033599854, -0.036071777, 0.033172607, 0.0014543533, 0.020339966, -0.010810852, -0.030731201, -0.00894165, 0.046905518, -0.018112183, -0.01423645, 8.738041e-05, 0.03302002, -0.030456543, 0.025970459, -0.02722168, -0.040649414, -0.004924774, 0.018722534, -0.00057935715, 0.024291992, 0.005683899, 0.016799927, 0.017669678, -0.02746582, 0.023391724, -0.038024902, 0.055847168, 0.041381836, -0.0050468445, -0.016540527, -0.043273926, -0.027633667, 0.016464233, -0.0072784424, -0.016525269, 0.011886597, 0.0107421875, -0.009407043, 0.010017395, 0.026779175, -0.024276733, 0.012718201, 0.010635376, -0.0046043396, 0.004447937, 0.02973938, -0.002986908, -0.012283325, -0.010765076, 0.0054969788, 0.023223877, 0.047454834, 0.031219482, 0.034210205, 0.006538391, -0.0038051605, -0.026977539, 0.0078086853, -0.0047798157, 0.038513184, -0.017028809, -0.010421753, -0.022964478, -0.04925537, -0.030075073, -0.011138916, -0.06323242, 0.022888184, 0.0016040802, -0.022979736, 0.0078086853, -0.0074005127, -0.025131226, -0.058929443, 0.010314941, -0.022857666, 0.045166016, 0.0036468506, 0.013931274, -0.011779785, -0.053894043, -0.009109497, 0.050598145, -0.02178955, -0.049804688, -0.02758789, 0.019851685, 0.008796692, 0.0014047623, 0.035217285, 0.008125305, 0.027404785, -0.008155823, 0.0062179565, -0.007282257, -0.02684021, 0.01776123, -0.0011081696, -0.0050354004, 0.016983032, 0.030410767, -0.017089844, 0.03375244, 0.0079574585, -0.016174316, -0.047698975, -0.0138549805, -0.0076789856, 0.012245178, 0.031051636, -0.009666443, 0.040252686, 0.029586792, -0.032348633, 0.032989502, -0.00819397, -0.042999268, 0.048828125, -0.006641388, 0.027038574, -0.02041626, -0.09692383, -0.05593872, -0.026138306, 0.031951904, 0.03164673, 0.08508301, 0.034454346, 0.012664795, -0.0181427, 0.017669678, -0.040039062, -0.068115234, 0.00894928, -0.008453369, -0.0017404556, -0.010429382, -0.019180298, 0.0021781921, -0.018844604, -0.009170532, 0.0043678284, 0.011146545, -0.010787964, 0.0012083054, -0.043029785, 0.022262573, -0.002500534, -0.045654297, -0.0234375, -0.03878784, -0.01109314, 0.026763916, -0.004676819, 0.0048675537, -0.010368347, -0.0075912476, -0.03173828, 0.010749817, 0.00026082993, 0.00491333, -0.00041007996, -0.0007982254, 0.018981934, 0.021453857, -0.014259338, -0.10168457, -0.024108887, 0.019470215, 0.007911682, -0.01008606, 0.010528564, -0.023620605, 0.012283325, 0.030441284, -0.015945435, -0.0024375916, 0.0007047653, 0.06890869, 0.003627777, 0.008979797]}, "B07B8SPXTG": {"id": "B07B8SPXTG", "original": "Brand: Blaze\nName: Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP\nDescription: Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...\nFeatures: Blaze Grills offers a best-in-class Lifetime warranty\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef\nFull-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\nCast stainless steel Linear Burners for durability and longevity\n", "metadata": {"Name": "Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP", "Brand": "Blaze", "Description": "Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...", "Features": "Blaze Grills offers a best-in-class Lifetime warranty\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef\nFull-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\nCast stainless steel Linear Burners for durability and longevity", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013511658, -0.017608643, 0.00022149086, -0.022598267, -0.008163452, 0.0020275116, 0.009666443, 0.0021095276, -0.07989502, 0.0022411346, -0.0035514832, 0.031585693, -0.011985779, -0.0395813, 0.05807495, -0.04626465, 0.024230957, 0.01361084, 0.020843506, -0.024002075, -0.004940033, -0.005203247, 0.002544403, 0.105041504, 0.033325195, -0.03289795, -0.033813477, 0.0131073, 0.021484375, 0.013946533, 0.008171082, 0.005710602, 0.059448242, -0.0007548332, -0.06616211, -0.048095703, -0.07104492, 0.0048675537, -0.04727173, 0.014808655, 0.020736694, -0.009552002, -0.0016622543, 0.019042969, -0.026672363, -0.042236328, 0.03793335, -0.02267456, 0.010803223, 0.03942871, -0.0056419373, 0.019989014, -0.007003784, 0.008651733, 0.0018434525, 0.010887146, 0.0058288574, -0.04812622, 0.021347046, 0.0071258545, 0.0065841675, -0.012794495, 0.018753052, -0.006538391, -0.024337769, -0.01689148, 0.093322754, -0.0014667511, -0.026779175, -0.048797607, 0.021728516, 0.031082153, 0.028930664, -0.043121338, -0.012748718, -0.0096206665, -0.015991211, -0.041137695, 0.042022705, -0.016235352, -0.0020771027, -0.020767212, 0.034332275, -0.01436615, 0.0042266846, -0.0046958923, -0.024108887, 0.0028820038, 0.020629883, -0.03111267, 0.0010509491, -0.019561768, 0.0052261353, 0.033050537, -0.01802063, -0.022628784, -0.02532959, -0.04977417, -0.00058221817, -0.009307861, 0.011100769, -0.014320374, 0.0046539307, 0.0034618378, -0.026824951, 0.06945801, 0.03125, 0.06225586, -0.0129776, -0.0004146099, 0.010696411, -0.036987305, -0.023086548, -0.03643799, -0.027267456, 0.04196167, -0.020858765, -0.0056762695, 0.0048179626, -0.009056091, -0.00831604, 0.0048294067, -0.00086832047, -0.006919861, 0.013298035, 0.01576233, -0.0090789795, -0.0078125, -0.032073975, 0.027359009, -0.019226074, 0.008918762, 0.04751587, 0.024978638, 0.0025844574, -0.020050049, 0.0065994263, 0.012451172, 0.014381409, -0.04727173, 0.066589355, 0.029846191, 0.0016756058, 0.03616333, -0.01399231, 0.008323669, 0.021499634, 0.022079468, -0.014144897, -0.048583984, 0.014846802, -0.026855469, 0.040740967, -0.010749817, -0.026779175, -0.011688232, 0.0022087097, -0.016693115, -0.035369873, -0.030075073, 0.028839111, -0.0104599, 0.0017547607, 0.014137268, -0.032714844, 0.017623901, -0.0029315948, -0.020187378, 0.030548096, 0.023880005, -0.013473511, -0.022659302, -0.005908966, -0.0061569214, -0.021606445, 0.017028809, -0.016357422, 0.111450195, 0.053466797, -0.08538818, -0.030273438, -0.05355835, 0.17321777, -0.037200928, -0.002943039, 0.013206482, 0.0129776, 0.012771606, 0.000726223, 0.017791748, -0.018203735, 0.018249512, 0.009407043, -0.018951416, 0.025543213, 0.022399902, -0.029281616, 0.01600647, -0.0037498474, -0.055419922, 0.0022010803, 0.010314941, 0.011886597, -0.0008649826, -0.013404846, 0.006515503, -0.016036987, 0.029800415, 0.023223877, 0.024215698, -0.007926941, -0.01033783, 0.033355713, -0.07904053, -0.034729004, 0.015319824, -0.037109375, 0.013336182, 0.012329102, 0.006187439, -0.0015745163, 0.004638672, 0.004863739, -0.024810791, 0.02935791, -0.036376953, 0.0070266724, -0.018676758, 0.0385437, -0.004550934, 0.002281189, 0.0005645752, 0.07318115, 0.1048584, 0.020111084, 0.03125, 0.06964111, 0.02861023, -0.034179688, -0.032806396, 0.015563965, 0.0011749268, -0.0524292, -0.017318726, -0.040405273, -0.060821533, -0.004386902, 0.009338379, -0.017730713, 0.0066452026, 0.025772095, 0.009170532, 0.022659302, 0.046081543, -0.017745972, 0.029830933, 0.010795593, -0.0020446777, -0.022598267, 0.024246216, 0.0026664734, 0.06390381, -0.0032024384, 0.028533936, -0.003824234, 0.0073776245, 0.004852295, 0.0077400208, -0.03250122, -0.0036792755, 0.020629883, 0.030410767, -0.016235352, -0.023040771, 0.003232956, 0.009056091, -0.02935791, 0.027297974, -0.00030970573, -0.022994995, -0.004825592, 0.010650635, -0.00051784515, -0.011657715, 0.01499176, -0.024429321, -0.0009384155, -0.022949219, -0.054107666, -0.038757324, 0.0021209717, -0.015213013, -0.024902344, -0.00945282, -0.022521973, -0.017990112, 0.008979797, 0.027999878, 0.007843018, -0.0075302124, -0.025924683, 0.027023315, -0.01928711, 0.0013008118, 0.0011329651, 0.019882202, 0.02394104, 0.0044136047, 0.001572609, -0.019729614, 0.022140503, 0.035369873, 0.03857422, 0.041900635, 0.011039734, -0.023025513, -0.014884949, 0.04727173, 0.022232056, 0.044403076, 0.002904892, -0.036315918, -0.04385376, 0.0013952255, -0.017623901, 0.016418457, 0.017196655, -0.012901306, -0.06427002, 0.014984131, -0.013900757, -0.04473877, -0.02218628, -0.0038108826, -0.007965088, 0.0137786865, 0.0065727234, 0.008918762, -0.01953125, -0.074523926, -0.021026611, -0.029586792, -0.00051403046, 0.016662598, -0.06439209, -0.03363037, 0.021408081, -0.003955841, -0.011276245, -0.030456543, 0.049987793, -0.00025248528, -0.0030097961, -0.0051231384, -0.0005059242, -0.04547119, -0.00248909, -0.038024902, -0.044769287, -0.06719971, -0.032958984, -0.016204834, -0.08099365, 0.007881165, 0.07922363, -0.010871887, -0.021759033, -0.011810303, 0.01701355, 0.024414062, 0.059417725, -0.0107040405, -0.035949707, -0.019622803, -0.013298035, -0.044067383, 0.036010742, -0.019210815, -0.02281189, 0.0017557144, 0.001209259, 0.022628784, -0.036895752, 0.01146698, -0.0066947937, 0.02684021, -0.002532959, 0.02935791, 0.0037231445, -0.017944336, 0.023147583, 0.08166504, -0.0061149597, -0.009384155, 0.014526367, 0.0030231476, -0.0121154785, -0.023422241, -0.035827637, -0.018600464, -0.09265137, 0.0065193176, -0.0010681152, -0.032318115, -0.013198853, -0.040374756, -0.04525757, -0.051940918, -0.001750946, 0.0446167, -0.04373169, 0.003643036, -0.0390625, -0.004207611, 0.02444458, -0.018753052, 0.05218506, -0.008384705, 0.028808594, -0.04849243, 0.017318726, -0.042144775, 0.028717041, 0.014350891, -0.01977539, -0.005180359, -0.017242432, 0.024749756, -0.03086853, -0.009170532, -0.023376465, -0.027404785, -0.007534027, 0.018508911, 0.0024986267, 0.017425537, -0.013824463, -0.058410645, 0.02720642, -0.041900635, -0.058288574, -0.025238037, 0.03253174, 0.011367798, 0.018753052, -0.019363403, -0.020019531, -0.034332275, 0.008758545, -0.03805542, 0.00605011, -0.021026611, 0.02784729, 0.022003174, -0.0053215027, 0.15344238, 0.0140686035, 0.04385376, 0.0063056946, -0.010536194, -0.007297516, -0.028305054, 0.03451538, 0.0072364807, -0.03338623, -0.005756378, 0.042297363, 0.014549255, -0.01235199, -0.0054244995, -0.010925293, 0.05114746, 0.024795532, 0.0052986145, -0.03540039, -0.029968262, 0.0390625, 0.015304565, -0.006111145, -0.02960205, -0.06390381, 0.008720398, -0.09814453, 0.07501221, 0.03274536, -0.021469116, 0.0793457, 0.06750488, 0.021514893, 0.07678223, 0.016647339, -0.0073890686, 0.005672455, 0.07659912, -0.027267456, 0.05734253, 0.028564453, -0.015655518, 0.034118652, 0.016601562, -0.05706787, 0.023468018, -0.00818634, -0.058776855, -0.032989502, 0.008514404, 0.025436401, -0.03164673, -0.0009088516, -0.05895996, 0.01449585, -0.06640625, -0.003200531, 0.0010700226, -0.020645142, -0.02571106, 0.021362305, -0.037628174, -0.0061569214, 0.00049591064, 0.0067825317, 0.0006246567, 0.008308411, 0.025787354, 0.0047836304, 0.023361206, -0.046722412, 0.002040863, 0.015777588, 0.02519226, 0.013717651, -0.0079956055, 0.00504303, -0.0012369156, -0.007987976, -0.017318726, -0.010635376, 0.04208374, -0.026412964, -0.07702637, -0.02229309, 0.011520386, 0.013381958, -0.026184082, -0.03692627, -0.016723633, -0.028671265, 0.017532349, -0.053131104, -0.040649414, 0.04309082, 0.05859375, -0.05532837, -0.043792725, -0.013198853, -0.03918457, -0.017349243, 0.005130768, -0.015640259, 3.2782555e-06, 0.04675293, 0.02859497, -0.051849365, -0.026504517, -0.064086914, -0.0146865845, 0.020339966, -0.03579712, 0.031555176, -0.0446167, -0.016998291, -0.031188965, 0.07385254, 0.019165039, 0.0010442734, -0.009376526, -0.014251709, -0.0072784424, 0.0048980713, 0.018676758, 0.00067424774, 0.01928711, -0.013374329, -0.059448242, -0.014251709, -0.021224976, 0.03439331, -0.011550903, -0.007045746, -0.030044556, 0.0014343262, -0.010955811, -0.0008049011, 0.0074653625, 0.04043579, 0.009635925, 0.018066406, -0.08569336, -0.00047421455, 0.006462097, 0.0066184998, -0.0011825562, -0.012145996, -0.0127334595, 0.013931274, 0.030731201, 0.04269409, 0.0056533813, -0.01928711, -0.047576904, 0.006210327, 0.05142212, -0.04260254, -0.00027036667, -0.03778076, -0.023864746, -0.05593872, 0.06933594, 0.03189087, -0.00066804886, 0.0018138885, -0.01058197, -0.016571045, -0.056854248, -0.03466797, 0.010612488, 0.024230957, 0.012649536, -0.02432251, -0.016082764, -0.0074310303, -0.022735596, -0.014816284, 0.0040626526, 0.014480591, -0.0368042, 0.014907837, -0.022857666, 0.034606934, 0.0335083, 0.0020999908, 0.016860962, -0.018112183, -0.029708862, 0.016830444, -0.020584106, -0.022735596, -0.01222229, -0.039215088, -0.011505127, -0.044647217, -0.003835678, -0.014595032, 0.002702713, 0.029006958, -0.01725769, 0.0027942657, 0.023086548, 0.017700195, 0.00041532516, -0.034942627, 0.0012817383, -0.033111572, -0.03265381, 0.036987305, -0.02809143, -0.017501831, 0.03225708, -0.041809082, 0.03753662, 0.009338379, -0.043304443, 0.038909912, -0.037475586, -0.022369385, -0.023452759, 0.060638428, -0.0035648346, 0.036071777, -0.067871094, 0.005771637, -0.0015058517, 0.012229919, 0.013496399, -0.014923096, 0.03262329, 0.026443481, -0.0044517517, 0.016693115, -0.007965088, -0.037841797, -0.017349243, -0.0056495667, -0.029296875, -0.015205383, 0.0070533752, -0.06439209, 0.024353027, 0.0061836243, 0.02998352, 0.030166626, -0.003025055, -0.04824829, -0.050079346, 0.015342712, -0.053741455, -0.05593872, -0.022125244, 0.014144897, -0.00067043304, -0.026779175, 0.038482666, 0.033172607, 0.015434265, -0.009429932, -0.036193848, -0.018829346, 0.004306793, -0.031921387, 0.018844604, -0.022277832, 0.010864258, 0.035369873, -0.018234253, 0.038848877, -0.024169922, -0.029006958, -0.017822266, -0.012413025, -0.015701294, -0.016067505, 0.010978699, 0.04748535, -0.038879395, -0.042999268, -0.042053223, 0.028823853, -0.03729248, -0.041107178, 0.06958008, 0.023269653, 0.0025501251, 0.018493652, 0.0070381165, -0.055511475, 0.006259918, 0.0034389496, -0.056793213, -0.041015625, -0.055541992, -0.0026130676, 0.012664795, -0.04434204, -0.014060974, 0.0703125, 0.009132385, -0.083862305, -0.026672363, -0.03363037, 0.048339844, -0.06817627, 0.016052246, -0.0068511963, -0.017837524, 0.0446167, -0.004295349, -0.03970337, 0.015686035, -1.692772e-05, 0.014122009, 0.008903503, 0.0064468384, 0.0005340576, 0.028244019, -0.029754639, 0.017837524, -0.009414673, -6.556511e-05, -0.0016860962, 0.009307861, 0.0076942444, 0.021652222, -0.021530151, 0.006793976, -0.042999268, 0.04525757, 0.035095215, 0.03414917, -0.005657196, 0.032470703, -0.003622055, 0.012191772, -0.047576904, 0.034118652, 0.03488159, 0.010925293, -0.03729248, -0.030288696, -0.0073432922, -0.04751587, -0.042236328, -0.053100586, -0.024261475, 0.027404785, 0.0009484291, 0.05807495, -0.05734253, 0.059295654, -0.01033783, 0.0020809174, 0.013534546, 0.0066490173, 0.013076782, -0.0014743805, -0.044677734, 0.004333496, 0.014518738, 0.007144928, 0.01449585, -0.03137207, 0.013496399, 0.04788208, 0.027664185, -0.020126343, -0.035888672, 0.022323608, 0.0020275116, -0.055114746, 0.018066406, -0.009864807, -0.028182983, -0.0029296875, -0.035461426, -0.025878906, -0.0058059692, 0.038391113, -0.020904541, 0.048980713, -0.024261475, 0.026107788, 0.011856079, -0.0058898926, 0.029022217, 0.016143799, 0.017440796, 0.070495605, 0.024383545, -0.044952393, -0.07141113, 0.016845703, 0.025970459, -0.0076141357, 0.04623413, -0.03265381, 0.003479004, -0.037506104, 0.042755127, -0.008300781, -0.0151901245, 0.020065308, 0.020080566, 0.007873535, 0.048217773, 0.006210327, -0.0016593933, 0.017059326, -0.04248047, 0.029968262, -0.009841919, 0.054138184, 0.040985107, 0.027786255, -0.057006836, -0.012908936, -0.010543823, -0.037078857, 0.005104065, 0.015640259, 0.00970459, -0.040649414, 0.054779053, 0.042785645, 0.053741455, -0.027832031, 0.018341064, 0.03475952, -0.00064611435, 0.056488037, -0.04031372, -0.008079529, -0.0073127747, -0.024383545, 0.019241333, -0.009819031, -0.0085372925, -0.013763428, 0.01361084, -0.022918701, -0.04534912, 0.002439499, -0.011497498, -0.004436493, 0.07055664, -0.06915283, 0.024307251, -0.029022217, -0.0088272095, -0.04763794, -0.024963379, -0.051757812, 0.036071777, -0.024520874, -0.036468506, -0.005065918, 0.0047912598, 0.018966675, -0.06124878, -0.007843018, -0.018600464, 0.021560669, -0.02407837, -0.00033903122, -0.005756378, -0.027832031, -0.009498596, 0.030029297, -0.06604004, -0.04135132, 0.0077552795, 0.018661499, 0.026428223, 0.009635925, 0.017318726, 0.029281616, 0.02947998, -0.008590698, 0.026367188, -0.027313232, -0.04272461, 0.0345459, 0.009933472, -0.032196045, 0.0034160614, 0.03048706, 0.0038528442, 0.014709473, 0.037506104, -0.004524231, -0.01663208, 0.013793945, 0.007911682, -0.010231018, -0.014320374, -0.00844574, 0.011505127, -0.01398468, -0.05114746, 0.012191772, 0.007205963, 0.048614502, 0.04248047, 0.015853882, 0.030471802, 0.00390625, -0.031036377, -0.041809082, -0.010925293, 0.0023517609, 0.04724121, -0.0031967163, 0.020904541, 0.020523071, -0.026855469, 0.0068626404, -0.006511688, 0.022964478, 0.007633209, -0.026794434, -0.0029945374, -0.016296387, -0.027175903, -0.019454956, -0.019073486, -0.009391785, 0.07836914, 0.0124053955, -0.028182983, -0.032684326, -0.02758789, -0.025100708, -0.018600464, -0.05609131, 0.01109314, -0.016326904, -0.00080537796, 0.0039482117, 0.011116028, 0.040618896, 0.0025615692, -0.03338623, -0.03552246, 0.0072517395, 0.024246216, -0.018478394, -0.04888916, 0.010719299, -0.0057907104, 0.0982666, -0.027862549, -0.044158936, -0.028518677, 0.031402588, -0.0030117035, -0.004573822, 0.050689697, -0.03225708, 0.0005970001, 0.052459717, 0.0004851818, 0.01940918, 0.01991272, -0.0017824173, -0.011062622, 0.0057144165]}, "B00DYN0438": {"id": "B00DYN0438", "original": "Brand: Blackstone\nName: Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36\u201d Outdoor Griddle Station with Side Shelf, 36 Inch, Black\nDescription: \nFeatures: Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain.\nReplace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nRestaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nControllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf\nDurability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze\n", "metadata": {"Name": "Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36\u201d Outdoor Griddle Station with Side Shelf, 36 Inch, Black", "Brand": "Blackstone", "Description": "", "Features": "Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain.\nReplace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nRestaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nControllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf\nDurability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021743774, 0.013259888, -0.02670288, -0.07086182, 0.01600647, 0.007080078, -0.040893555, -0.0061531067, -0.02507019, -0.018035889, -0.019561768, 0.025314331, -0.053955078, -0.023544312, 0.014656067, -0.057861328, 0.018630981, 0.008529663, 0.010368347, -0.03527832, -0.016815186, -0.023162842, 0.009048462, 0.06185913, 0.04168701, -0.040161133, 0.0034999847, -0.0032024384, 0.029968262, 0.009185791, 0.02671814, -0.005847931, 0.0395813, -0.001074791, -0.014297485, -0.04458618, -0.015525818, -0.009178162, -0.0038967133, -0.005077362, 0.038909912, -0.021362305, -0.032196045, 0.058929443, -0.044921875, -0.043151855, 0.039733887, -0.0119018555, 0.00019001961, 0.044067383, -0.00844574, 0.043273926, -0.0042419434, 0.020568848, 0.0063209534, 0.0055732727, 0.025115967, -0.01524353, 0.031402588, -0.010406494, -0.04232788, -0.00086545944, 0.02684021, -0.023986816, -0.061157227, 0.015792847, 0.07623291, -0.04348755, -0.047912598, -0.057891846, 0.053741455, 0.011650085, 0.018356323, -0.027114868, -0.014770508, -0.0054016113, 0.00995636, 5.00679e-06, 0.016082764, -0.015388489, -0.00699234, -0.006515503, 0.0042533875, -0.01940918, -0.012718201, -0.025817871, -0.012588501, 0.011024475, 0.010391235, -0.083496094, 0.006591797, -0.05014038, -0.03930664, 0.019210815, 0.0044898987, -0.059173584, -0.055755615, -0.053588867, -0.012573242, 0.014457703, -0.015052795, -0.00491333, 0.023330688, -0.013336182, -0.026855469, 0.077697754, 0.023498535, 0.044921875, -0.0039863586, -0.0044174194, -0.002325058, -0.072753906, 0.012886047, -0.027542114, -0.015434265, 0.044036865, 0.014762878, -0.01876831, 0.022994995, -0.0029201508, -0.011657715, -0.034088135, 0.01737976, 0.011436462, 0.036621094, 0.016036987, -0.03881836, 0.015464783, -0.074157715, 0.060424805, -0.038970947, -0.020614624, 0.054382324, 0.059936523, 0.01927185, -0.040527344, 0.004009247, -0.03741455, 0.01763916, -0.006126404, 0.0016479492, -0.0075569153, 0.03994751, 0.0013360977, -0.0115356445, 0.015731812, 0.038757324, 0.010803223, -0.033447266, -0.04397583, 0.00504303, 0.004486084, 0.0440979, 0.0004761219, -0.051116943, -0.012611389, 0.016815186, -0.028961182, -0.029968262, -0.047943115, 0.0135269165, -0.0023784637, 0.012626648, 0.024414062, 0.008880615, 0.009155273, -0.032714844, 0.0048446655, 0.0025577545, 0.0041236877, -0.014007568, 0.024932861, -0.03970337, -0.020980835, 0.0033435822, -0.008354187, -0.042175293, 0.053527832, 0.059143066, -0.07763672, -0.06616211, -0.05557251, 0.08929443, -0.02809143, -0.021148682, 0.015197754, 0.007320404, 0.0023517609, 0.010505676, -0.0017814636, 0.0440979, 0.027313232, -0.015975952, -0.015457153, 0.02746582, 0.028701782, -0.06124878, 0.008224487, -0.0134887695, -0.03604126, -0.010772705, -0.008087158, 0.014701843, 0.006401062, -0.007835388, -0.0046691895, -0.010864258, 0.025848389, -0.009063721, -0.0026130676, 0.014862061, -0.0029067993, 0.018753052, -0.09790039, -0.026550293, 0.040039062, -0.007820129, 0.02053833, 0.027862549, 0.005088806, 0.0335083, 0.009918213, 0.046722412, 0.0031204224, 0.011520386, 0.0026226044, -0.033996582, -0.0036830902, -0.017608643, 0.014778137, -0.046936035, 0.035827637, 0.04647827, 0.09197998, -0.0036888123, 0.02998352, 0.02973938, 0.044433594, -0.0063667297, -0.015838623, 0.022125244, -0.005897522, -0.034698486, -0.0014410019, -0.020751953, -0.028320312, 0.017150879, -0.0036964417, -0.059020996, -0.018753052, 0.02432251, 0.053009033, 0.027877808, 0.050964355, -0.052734375, 0.04055786, -0.017349243, 0.003129959, -0.019012451, 0.024002075, 0.00554657, 0.072387695, 0.01889038, 0.014419556, 0.017242432, 0.018127441, 0.027450562, 0.024978638, -0.013641357, 0.0104522705, 0.01084137, -0.011199951, -0.008674622, -0.0016489029, -0.024551392, 0.046417236, -0.012878418, 0.014595032, -0.002325058, 0.0008664131, 0.0063972473, 0.00041794777, -0.024887085, -0.0040359497, 0.01361084, 0.0005040169, 0.01008606, 0.030319214, -0.028152466, -0.005947113, 0.04534912, -0.054260254, -0.023376465, -0.04058838, -0.028884888, -0.028289795, 0.049438477, 0.053588867, -0.014808655, 0.00051784515, 0.018295288, 0.016448975, -0.024902344, -0.0011348724, -0.017059326, 0.017669678, -0.028793335, 0.028198242, 0.010528564, -0.02394104, -0.0067977905, 0.0047073364, 0.03161621, 0.038330078, 0.018051147, -0.002067566, -0.008140564, 0.05984497, 0.05581665, 0.029144287, 0.013191223, 0.01739502, -0.05493164, -0.016204834, -0.006252289, 0.01499176, -0.04425049, -0.026855469, -0.051635742, 0.02507019, -0.017456055, -0.039489746, -0.025970459, 0.015571594, -0.02116394, 0.01878357, 0.015434265, -0.0047836304, -0.0005578995, -0.02658081, -0.0041046143, -0.07501221, -0.021102905, -0.016662598, 0.0262146, -0.034423828, 0.028305054, 0.027832031, -0.07525635, 0.018737793, -0.0023021698, -0.040802002, 0.029922485, -0.04019165, 0.007827759, 0.017578125, -0.040771484, -0.058380127, -0.0017566681, -0.08703613, -0.04385376, -0.02330017, -0.07763672, 0.0009422302, 0.05831909, 0.018249512, -0.028427124, 0.008460999, -0.0075263977, -0.011268616, 0.06072998, 0.011955261, -0.06109619, -0.0463562, -0.048553467, -0.036956787, 0.029388428, -0.024398804, 0.0013599396, 0.015838623, 0.012084961, 0.038330078, -0.027893066, 0.023025513, -0.022109985, 0.031204224, -0.012931824, 0.008232117, 0.0025138855, -0.007675171, 0.02658081, 0.06915283, -0.050079346, -0.004272461, -9.393692e-05, 0.0056610107, 0.028686523, -0.039123535, -0.031463623, -0.02960205, -0.06726074, 0.047851562, 0.03857422, -0.049926758, -0.015342712, -0.07684326, -0.056152344, -0.024612427, 0.025939941, 0.033599854, 0.019561768, 0.00806427, -0.00091552734, 0.020858765, -0.021743774, -0.00033020973, 0.015136719, -0.00969696, 0.049713135, -0.04324341, 0.0061683655, -0.05065918, 0.027832031, 0.01309967, -0.00881958, 0.024230957, 0.004688263, 0.030334473, 0.00069761276, -0.035858154, -0.0007863045, -0.0501709, -0.026641846, 0.018432617, 0.030731201, 0.068237305, -0.012535095, -0.04534912, -0.002210617, -0.017471313, 0.0029125214, -0.021911621, -0.07879639, 0.062194824, -0.03375244, -0.008560181, -0.078308105, -0.05734253, -0.004951477, -0.036193848, -0.0003066063, 0.014709473, 0.011734009, 0.018371582, -0.002407074, 0.07763672, -0.022338867, 0.057006836, 0.018615723, -0.020492554, -0.00579834, -0.05935669, 0.06341553, 0.047027588, -0.021377563, -0.03768921, 0.0496521, 0.008087158, -0.0028915405, 0.003829956, -0.029251099, 0.061065674, 0.04949951, 0.0065956116, -0.015449524, -0.049438477, 0.036590576, 0.046325684, -0.049468994, -0.053131104, -0.055786133, 0.008956909, -0.0791626, 0.094177246, 0.018035889, -0.012496948, 0.079833984, 0.060638428, -0.014961243, 0.034606934, -0.03225708, -0.005962372, -0.0059661865, 0.033813477, -0.03744507, 0.04119873, 0.008850098, 0.007297516, 0.010925293, 0.005882263, -0.030197144, -0.008483887, -0.033477783, -0.0181427, 0.013534546, 0.0075912476, -0.022262573, -0.015640259, -0.008117676, -0.019256592, -0.008476257, -0.036102295, 0.023269653, 0.028320312, -0.029525757, -0.0262146, -0.008331299, -0.0025043488, -0.044891357, 0.01348114, 0.02986145, 0.008880615, 0.029418945, 0.02279663, -0.010437012, 0.0345459, -0.019424438, -0.009727478, -0.04473877, 0.012886047, 0.014923096, 0.023101807, 0.002603531, -0.029418945, 0.02911377, 0.017654419, -0.011421204, 0.013442993, -0.044891357, -0.050598145, -0.023773193, -0.03717041, -0.0012550354, -0.021148682, 5.364418e-06, -0.022338867, -0.0014266968, 0.0028457642, -0.06768799, -0.015434265, -0.013900757, 0.015533447, -0.048797607, -0.005958557, 0.0039596558, -0.017196655, -0.05810547, 0.012641907, -0.011390686, 0.015022278, -0.020843506, -0.03765869, -0.034118652, 0.052825928, -0.03543091, -0.00374794, 0.047332764, -0.008842468, 0.023101807, -0.043762207, 0.011734009, -0.018493652, 0.051239014, 0.0034046173, 0.00409317, -0.025482178, 0.00869751, 0.011054993, 0.03149414, 0.0052948, -0.010948181, -0.008331299, 0.0049934387, -0.020858765, -0.025634766, 0.004535675, 0.034942627, -0.024429321, 0.010971069, 0.022354126, 0.043273926, -0.0385437, 0.009628296, 0.006038666, 0.034484863, -0.026992798, 0.029953003, -0.068725586, -0.007820129, 0.009651184, -0.023422241, -0.008811951, 0.0074882507, -0.030410767, 0.034118652, 0.013069153, -0.014572144, -0.023208618, 0.0071754456, -0.011070251, -0.016571045, 0.021240234, -0.044647217, 0.026123047, -0.045654297, -0.022903442, -0.066833496, 0.08959961, 0.06958008, -0.006713867, 0.0038490295, 0.002418518, -0.040161133, -0.060394287, -0.02709961, -0.008392334, 0.041046143, -0.029678345, -0.045074463, 0.01651001, -0.045196533, -0.00046753883, 0.0036830902, -0.03237915, 0.017105103, 0.022064209, -0.008613586, -0.013114929, -0.042541504, -0.0056037903, 0.003227234, 0.019088745, -0.045959473, -0.021026611, 0.07611084, -0.0047035217, -0.022781372, 0.011299133, -0.014633179, -0.0017690659, -0.012207031, -0.006462097, -0.03527832, -0.017059326, 0.043029785, -0.01612854, -0.013160706, 0.022125244, 0.0031433105, 0.0068511963, -0.027236938, 0.03286743, -0.03390503, 0.017318726, 0.023223877, -0.023620605, -0.020523071, 0.026000977, -0.040924072, 0.04336548, 0.0026779175, -0.025863647, -0.0084991455, -0.021224976, 0.0056152344, -0.007850647, 0.028747559, 0.017730713, -0.0032444, -0.052124023, -0.0022010803, 0.0069885254, 0.023803711, 0.028625488, -0.044067383, 0.044769287, -0.03665161, -0.03366089, 0.021026611, 0.059387207, -0.028564453, -0.019622803, 0.03933716, -0.015914917, -0.050598145, 0.020568848, 0.00623703, -0.019744873, 0.01574707, -0.04699707, 0.023956299, 0.0079193115, -0.022628784, -0.0052604675, -0.020828247, 0.0023231506, -0.043304443, -0.020050049, -0.03765869, -0.0010719299, -0.03967285, 0.012077332, 0.010467529, 0.020690918, -0.0637207, -0.024734497, -0.035095215, 0.0038108826, -0.013000488, 0.06121826, -0.0211792, -0.0021266937, 0.017456055, 0.011108398, 0.013595581, 0.030349731, -0.04840088, 0.012809753, 0.029449463, 0.080444336, -0.013999939, -0.024734497, 0.09631348, -0.050750732, -0.04385376, -0.048309326, 0.041778564, -0.039886475, -0.03010559, 0.042816162, 0.036590576, 0.017562866, 0.01977539, 0.00038552284, -0.057922363, -8.922815e-05, 0.0025787354, -0.08300781, -0.05859375, -0.050811768, 0.001159668, -0.0037269592, -0.0019083023, -0.0014152527, 0.06384277, 0.02911377, -0.029312134, -0.053100586, -0.01335907, 0.017745972, 0.016815186, -0.0074806213, -0.019638062, 0.011222839, -0.06378174, 0.010437012, -0.040863037, -0.0748291, 0.00025486946, 0.03375244, 0.026504517, -0.05316162, 0.00598526, 0.01574707, 0.0088272095, 0.061309814, -0.023605347, 0.004676819, 0.0017585754, 0.012893677, 0.0016708374, 0.047424316, 0.03866577, 0.013809204, -0.039001465, 0.01084137, -0.008285522, 0.07019043, -0.06976318, -0.008552551, 0.007080078, 0.055114746, 0.03945923, 0.026107788, 0.023803711, -0.003894806, 0.0113220215, 0.013977051, -0.00038719177, -0.02180481, -0.053009033, -0.025848389, -0.018981934, 0.018615723, 0.013999939, 0.03555298, 0.02748108, -0.0058898926, 0.0075645447, 0.013969421, 0.013763428, -0.0050201416, -0.021102905, 0.030792236, -0.01084137, 0.038269043, -0.007686615, -0.0014667511, -0.02709961, -0.032928467, 0.021102905, 0.03201294, -0.020965576, 0.025772095, -0.050231934, 0.00818634, 0.06604004, -0.06451416, -0.020111084, 0.030578613, 0.00095939636, -0.014152527, -0.03262329, -0.020690918, 0.027297974, -0.00057411194, -0.018951416, 0.04434204, 0.003129959, -0.006149292, 0.014160156, -0.021057129, 0.012664795, -0.021347046, -0.0025787354, 0.0009841919, 0.0146865845, -0.0034046173, 0.011558533, 0.013130188, 0.061950684, -0.026687622, -0.021240234, 0.023773193, 0.022491455, -0.017028809, 0.009384155, -0.027069092, -0.04058838, 0.061828613, 0.049591064, -0.042388916, 0.007659912, 0.009437561, 0.0039978027, 0.026260376, -0.042388916, 0.016799927, -0.027679443, 0.066589355, 0.056671143, -0.0079193115, 0.012680054, -0.007511139, -0.027008057, 0.0047302246, -0.0002539158, -0.012359619, 0.00907135, -0.00064849854, -0.0005106926, 0.027801514, 0.02911377, -0.04623413, 0.022003174, 0.043792725, -0.016815186, 0.057495117, -0.010757446, 0.007129669, -0.011940002, -0.035186768, -0.017654419, -0.022232056, -0.022979736, 0.0395813, 0.009971619, 0.0038337708, -0.014251709, -0.026473999, 0.009361267, -0.016174316, 0.035888672, -0.023132324, 0.029830933, -0.031982422, -0.030075073, -0.032958984, 0.0050582886, -0.03543091, 0.026245117, 0.0068855286, -0.043548584, -0.017547607, 0.0107040405, 0.011817932, -0.058746338, -0.029846191, -0.020339966, 0.017669678, -0.0084991455, 0.021347046, 0.0018119812, -0.04336548, -0.049621582, 0.027038574, -0.07684326, -0.013618469, -0.01008606, -0.008964539, -0.023086548, -0.018478394, 0.02848816, 0.050567627, 0.01701355, -0.006362915, -0.061553955, 0.014556885, -0.024139404, 0.029342651, -0.011367798, -0.03640747, -0.0158844, 0.02619934, -0.002008438, 0.05307007, 0.017807007, -0.009002686, -0.019348145, -0.017501831, -0.037719727, 0.0050621033, -0.018707275, -0.022644043, 0.035095215, 0.00806427, -0.03591919, 0.045135498, 0.02243042, 0.0184021, 0.027633667, -0.0050582886, 0.013183594, -0.018066406, -0.048309326, -0.017547607, -0.01663208, -0.0007677078, -0.017623901, -0.044921875, -0.02444458, -0.017242432, -0.0060195923, -0.01576233, 0.018035889, -0.026794434, 0.010429382, -0.025619507, 0.0021820068, -0.015151978, -0.020050049, -0.010070801, -0.01574707, -0.019210815, 0.043670654, 0.017166138, -0.013267517, 0.008094788, -0.017669678, -0.011131287, 0.0056533813, -0.011009216, -0.010856628, -0.0021038055, -0.006416321, 0.00484848, 0.019363403, 0.021011353, 0.020065308, -0.011833191, -0.04171753, 0.005458832, 0.024368286, 0.015472412, -0.027770996, 0.010070801, 0.025482178, 0.05886841, -0.032073975, -0.024490356, -0.028305054, 0.027542114, 0.0045051575, 0.00434494, 0.047424316, -0.021133423, 0.01890564, 0.0121536255, 0.025726318, 0.0025863647, -0.005241394, 0.024749756, 0.008514404, 0.009460449]}, "B01N1G04RL": {"id": "B01N1G04RL", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black\nDescription: \nFeatures: Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs.\nPortable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts.\nAutomatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel.\nNo Fussy Cleanup: Removable oil management system facilitates easy cleanup.\nAmple Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach.\n", "metadata": {"Name": "Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black", "Brand": "Royal Gourmet", "Description": "", "Features": "Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs.\nPortable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts.\nAutomatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel.\nNo Fussy Cleanup: Removable oil management system facilitates easy cleanup.\nAmple Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019927979, -0.004096985, -0.020584106, 0.0023536682, -0.017227173, 0.0015115738, -0.02319336, -0.021453857, -0.06878662, 0.024215698, 0.010467529, 0.03414917, -0.014373779, -0.031219482, 0.032440186, -0.021728516, 0.033081055, -0.009147644, -0.010444641, 0.0018939972, -0.0007786751, 0.033447266, -0.0473938, 0.066223145, 0.04928589, -0.055633545, -0.05102539, 0.010543823, 0.02708435, 0.0052604675, 0.020553589, 0.012313843, 0.0385437, -0.028030396, -0.0028190613, -0.042663574, -0.015136719, -0.03112793, -0.04736328, 0.0340271, 0.014045715, 0.0013570786, -0.057922363, 0.035308838, -0.04675293, -0.031143188, 0.002035141, -0.0116119385, 0.02961731, 0.037841797, -0.026885986, -0.00724411, -0.029037476, -0.011253357, -0.010826111, -0.027511597, 0.036895752, 0.029006958, 0.052703857, -0.0473938, -0.083496094, -0.015716553, 0.032043457, -0.028686523, -0.050933838, 0.042175293, 0.032440186, -0.026275635, 0.041290283, -0.042938232, -0.03970337, 0.016143799, 0.014213562, -0.033813477, -0.03463745, 0.007335663, -0.0018825531, -0.034301758, 0.027648926, -0.03527832, 0.013496399, 0.02319336, 0.018798828, -0.00919342, -0.031143188, -0.0546875, -0.0034046173, -0.01335144, 0.012268066, -0.04232788, -0.010978699, -0.05279541, -0.024261475, 0.033081055, 0.004627228, -0.030776978, -0.03375244, -0.08734131, 0.03363037, 0.0023441315, 0.054016113, -0.043426514, 0.038146973, 0.011497498, -0.017288208, 0.09283447, 0.0143585205, 0.08105469, 0.025939941, -0.0035648346, 0.036956787, -0.03503418, 0.00982666, -0.021133423, -0.004322052, 0.038879395, 0.020843506, 0.030075073, 0.027297974, 0.038757324, -0.02709961, 0.014877319, -0.010009766, 0.026824951, -0.010231018, 0.0112838745, 0.02835083, -0.038146973, -0.05218506, 0.04058838, -0.045928955, 0.01889038, 0.09515381, 0.03100586, -0.004337311, -0.033416748, 9.6678734e-05, -0.028457642, 0.021469116, -0.029571533, 0.010856628, -0.0021018982, 0.047576904, 0.012542725, -0.009483337, 0.023223877, 0.038513184, -0.010116577, -0.03643799, -0.044067383, -0.010787964, 0.00868988, 0.026489258, 0.010177612, -0.036590576, -0.00491333, -0.015579224, -0.008903503, -0.00447464, -0.020843506, -0.039764404, -0.008804321, 0.03161621, -3.9994717e-05, -0.033569336, 0.04257202, 0.009056091, -0.011375427, 0.014961243, 0.047332764, 0.01399231, 0.01373291, -0.0052757263, 0.020736694, 0.008758545, 0.0033073425, 0.024398804, 0.029067993, 0.036193848, -0.08483887, -0.06964111, -0.053375244, 0.07989502, -0.037750244, -0.021774292, -0.0178833, 0.019622803, 0.021636963, 0.033569336, 0.013397217, 0.019226074, -0.009513855, -0.011352539, 0.013519287, 0.040496826, 0.01927185, -0.036010742, 0.017074585, -0.005718231, -0.06210327, -0.015640259, -0.015930176, 0.002412796, 0.0058631897, -0.013427734, -0.03326416, 0.010910034, 0.0011854172, -0.00036597252, -0.00024724007, -0.0014219284, -0.009773254, -0.0062065125, -0.038757324, -0.051361084, -0.038391113, -0.0473938, 0.044708252, 0.014831543, 0.005531311, 0.04071045, -0.02986145, 0.062469482, 0.0074386597, 0.0446167, -0.0023078918, -0.00945282, -0.009712219, 0.04296875, 0.01461792, -0.04498291, 0.021957397, 0.04736328, 0.027999878, -0.01399231, 0.03479004, 0.056396484, 0.028259277, -0.016967773, -0.017150879, -0.0037269592, -0.015930176, -0.051696777, 0.013587952, 0.0006518364, -0.028259277, -0.008766174, 0.035339355, -0.0063667297, -0.00831604, 0.04724121, -0.020248413, 0.025436401, 0.024246216, 0.0029945374, 0.01322937, -0.01701355, 0.014587402, -0.01966858, 0.0082092285, -0.0063171387, 0.052490234, 0.010444641, 0.005378723, 0.017150879, 0.014884949, 0.011383057, 0.01234436, -0.07122803, 0.022659302, 0.037322998, 0.052642822, 0.0051460266, -0.030136108, 0.011795044, 0.018371582, -0.040863037, 0.018081665, 0.039642334, -0.00065279007, 0.0036468506, -0.009170532, -0.025527954, -0.013549805, 0.048187256, 0.043121338, -0.0030212402, 0.0017747879, 0.0063095093, -0.010688782, 0.026870728, -0.009216309, 0.0008883476, -0.005756378, 0.00076055527, -0.041809082, 0.11468506, 0.029586792, -0.00035214424, -0.006088257, 0.010749817, 0.0051498413, -0.04724121, 0.0023498535, -0.016723633, 0.026824951, -0.033721924, 0.013633728, -0.00032234192, -0.031951904, 0.0031032562, 0.005695343, 0.029876709, -0.024810791, 0.032714844, -0.007156372, -0.015151978, 0.037628174, -0.015464783, 0.024414062, -0.008056641, 0.0019111633, -0.032836914, 0.004749298, 0.010276794, 0.0040512085, -0.012619019, -0.001821518, -0.03488159, 0.016998291, -0.020507812, -0.021606445, -0.010940552, 0.042938232, -0.009902954, 0.011627197, 0.013244629, -0.04031372, -0.019226074, -0.051086426, -0.009628296, -0.0703125, -0.009147644, -0.032043457, -0.004825592, -0.010894775, -0.046295166, 0.011024475, -0.018066406, -0.007583618, -0.007785797, -0.0062446594, 0.018341064, -0.011764526, -0.0038967133, 0.011543274, -0.020614624, -0.033721924, -0.02760315, -0.072021484, -0.026779175, -0.03845215, -0.08959961, -0.038757324, 0.086242676, 0.013114929, -0.07849121, -0.0095825195, -0.028457642, 0.007575989, 0.016143799, -0.0096206665, -0.0814209, -0.024017334, -0.033721924, 0.023361206, 0.011795044, -0.043792725, 0.014633179, 0.002910614, 0.010437012, 0.05227661, -0.04827881, 0.022583008, -0.005004883, 0.04925537, 0.021514893, -0.001613617, 0.0140686035, -0.022521973, 0.011108398, 0.03677368, -0.04434204, 0.0037117004, -0.038513184, -0.0011224747, 0.01109314, -0.035980225, -0.01158905, -0.0014638901, -0.04244995, 0.0048332214, -0.012123108, -0.030639648, -0.019012451, -0.050933838, -0.026306152, -0.035705566, 0.014953613, 0.05340576, 0.010772705, 0.016921997, -0.0137786865, 0.045776367, -0.01424408, 0.0039787292, -0.01852417, -0.014778137, 0.021697998, -0.0099105835, 0.029708862, -0.071777344, 0.007080078, 0.009819031, -0.050842285, 0.058044434, -0.05633545, 0.018661499, -0.042297363, 0.0050086975, -0.024749756, -0.002231598, -0.031555176, 0.005432129, -0.013008118, 0.02696228, 0.008232117, -0.04348755, 0.036590576, -0.032440186, -0.025238037, -0.00015437603, -0.027420044, 0.016601562, -0.0018367767, -0.031677246, -0.024353027, -0.0473938, -0.040252686, -0.03866577, 0.018447876, 0.015029907, 0.028717041, 0.026107788, 0.01966858, 0.047454834, 0.004714966, 0.045654297, 0.041656494, -0.05935669, -0.0491333, -0.061309814, 0.039978027, 0.0051994324, 0.012756348, -0.061340332, 0.030014038, 0.01235199, -0.0024471283, 0.014678955, 0.012039185, 0.033935547, 0.056915283, -0.02520752, -0.0018367767, -0.051330566, 0.01638794, 0.010520935, -0.028671265, -0.048187256, -0.05166626, 0.018432617, -0.08276367, 0.068847656, 0.025634766, -0.023040771, 0.06536865, 0.029190063, -0.004558563, 0.0440979, 0.001958847, 0.010063171, 0.0039749146, 0.04525757, -0.013137817, 0.018920898, 0.02279663, -0.009109497, 0.014266968, 0.0009946823, -0.048706055, 0.006843567, -0.023269653, -0.034088135, -0.007598877, 0.021560669, 0.022247314, -0.007205963, -0.0143966675, -0.022872925, -0.0016498566, -0.047729492, 0.037628174, 0.011222839, -0.021530151, 0.010284424, -0.023757935, -0.009140015, -0.014091492, 0.002023697, 0.0067710876, 0.045806885, 0.012687683, 0.024047852, -0.025177002, 0.0010118484, -0.0025787354, 0.025878906, -0.022521973, -0.020584106, 0.016693115, 0.011665344, 0.016937256, 0.027023315, -0.006793976, 0.03579712, -0.013374329, 0.010047913, -0.0013980865, -0.018096924, -0.0031909943, 0.027496338, 0.019927979, -0.003534317, 0.015960693, -0.073791504, 0.003786087, -0.006801605, -0.05230713, -0.015281677, -0.0006327629, -0.0012979507, -0.0892334, -0.036865234, -0.02658081, -0.021484375, -0.029754639, 0.026992798, -0.026245117, -0.02545166, -0.036254883, -0.0065460205, -0.03137207, 0.02571106, -0.060668945, 0.010383606, 0.028015137, 0.016540527, 0.0029354095, -0.026504517, -0.014770508, 0.0011348724, 0.085876465, 0.007396698, 0.030792236, -0.036376953, -0.04537964, -0.01373291, 0.0037879944, 0.043548584, -0.010665894, 0.009529114, -0.03552246, -0.053771973, 0.0015096664, -0.051605225, 0.03756714, -0.05142212, -0.01461792, -0.024276733, 0.04638672, -0.03137207, 0.02885437, -0.030014038, -0.008163452, -0.042419434, 0.01210022, -0.057525635, -0.034729004, -0.004760742, 0.007144928, 0.0021133423, -0.011993408, -0.016799927, 0.035217285, 0.038360596, 0.05557251, -0.0003039837, -0.017974854, -0.009109497, 0.003255844, 0.0013189316, -0.020004272, 0.0067710876, -0.041015625, 0.030563354, -0.090026855, 0.08148193, 0.029754639, 0.0135650635, 0.005203247, -0.027297974, 0.001865387, -0.062805176, -0.023880005, -0.026138306, 0.0045661926, -0.034484863, -0.03793335, 0.017105103, -0.04574585, 0.0068473816, -0.02154541, -0.015136719, -0.020431519, -0.01626587, 0.016647339, -0.019012451, 0.020584106, 0.011314392, 0.010787964, 0.03366089, -0.015129089, -0.03756714, 0.020446777, -0.03378296, -0.029464722, -0.019866943, -0.021316528, 0.004211426, -0.003004074, 0.020843506, -0.025756836, 0.016433716, 0.039886475, -0.0011463165, -0.004966736, 0.03237915, -0.003818512, 0.00049591064, -0.016860962, 0.02720642, -0.011482239, -0.024551392, 0.0054092407, -0.04107666, -0.007965088, 0.02746582, -0.052734375, 0.0345459, 0.017868042, -0.038330078, 0.03753662, -0.0023078918, -0.009811401, -0.023773193, 0.04272461, -0.0050964355, 0.005996704, -0.045532227, 0.0054359436, 0.011512756, 0.015808105, 0.049438477, -0.0592041, 0.032562256, -0.06542969, -0.02130127, 0.012786865, 0.050933838, -0.019332886, 0.001004219, 0.017059326, -0.0013074875, -0.03717041, 0.014167786, -0.015380859, 0.011299133, -0.066833496, -0.00036501884, 0.016098022, 0.013442993, 0.029083252, -0.0069618225, 0.012512207, -0.0075645447, -0.044189453, -0.0068359375, -0.014808655, -0.006931305, -0.004096985, 0.0473938, 0.009437561, 0.014816284, -0.046875, -0.04663086, -0.056671143, -0.009048462, -0.023101807, 0.056396484, -0.022369385, -0.02571106, -0.004798889, -0.028259277, 0.002735138, 0.0032749176, -0.028320312, -0.0037059784, 0.013008118, 0.031951904, -0.014732361, 0.041931152, 0.103881836, -0.052246094, -0.055633545, -0.043426514, 0.058288574, -0.02848816, 0.005519867, 0.053894043, 0.030395508, 0.013206482, 0.038330078, 0.013374329, -0.056427002, -0.033081055, -0.0056419373, -0.050201416, -0.03100586, -0.0395813, 0.022659302, 5.3346157e-05, 0.010765076, 0.0012264252, 0.050720215, 0.010002136, -0.0022068024, -0.04550171, -0.005924225, -0.0052337646, -0.012466431, 0.017364502, -0.024108887, -0.043548584, -0.040924072, -0.042785645, -0.058685303, -0.021621704, 0.013977051, 0.008056641, 0.01058197, -0.03173828, 0.013198853, 0.03677368, 0.0068969727, 0.041778564, -0.018997192, 0.01348114, 0.029159546, 0.020599365, -0.021392822, 0.047912598, 0.00957489, 0.004425049, -0.03765869, 0.039489746, 0.029418945, 0.04736328, -0.04324341, -0.00333786, 0.023529053, 0.0362854, 0.05392456, -0.008781433, 0.013664246, -0.045898438, -0.040740967, 0.019760132, 0.0064468384, -0.03717041, -0.050079346, 0.01940918, -0.06311035, 0.025924683, -0.0072402954, 0.03366089, 0.015686035, 0.03387451, -0.0011739731, -0.03652954, 0.02558899, -0.009849548, 0.022994995, 0.011154175, -0.04650879, 0.022827148, -0.030227661, -0.00024533272, -0.033599854, -0.08312988, 0.030258179, 0.053253174, -0.0056610107, -0.0026226044, -0.044281006, 0.037628174, 0.0309906, -0.072753906, -0.004459381, 0.04043579, 0.01776123, 0.012252808, -0.059570312, -0.036132812, -0.012496948, 0.029556274, -0.028793335, 0.056762695, -0.00642395, 0.00541687, 0.029907227, -0.020050049, 0.013961792, 0.0029907227, 0.01663208, -0.021438599, 0.0023994446, -0.019073486, -0.022964478, -0.033447266, 0.059295654, -0.047668457, -0.052215576, 0.035308838, 0.03652954, -0.018371582, 0.031921387, -0.0060653687, -0.016326904, 0.044891357, 0.026733398, 0.011077881, 0.024551392, -0.0004823208, -0.0017910004, 0.026046753, -0.03050232, 0.042999268, -0.019714355, 0.07043457, 0.039276123, 0.008590698, -0.03479004, -0.015411377, -0.014045715, 0.0049819946, 0.008491516, 0.026672363, 0.020523071, 0.015388489, 0.02897644, 0.0418396, 0.0836792, 0.002670288, 0.034820557, 0.014205933, 0.0010290146, 0.0066452026, 0.044647217, -0.006839752, -0.005744934, -0.0059280396, -0.0029296875, 0.0027275085, -0.0065689087, -0.027297974, -0.010360718, 0.019989014, 0.011932373, -0.037628174, 0.014656067, 0.01852417, 0.0041999817, -0.00157547, 0.003358841, -0.02545166, -0.047576904, -0.019424438, 0.013999939, -0.05911255, 0.018096924, 0.020111084, -0.026626587, -0.0013046265, -0.013198853, 0.017868042, -0.05343628, 0.0061416626, -0.021362305, 0.04724121, -0.0005245209, 0.027252197, -0.024856567, -0.04458618, -0.008239746, 0.033813477, -0.048431396, -0.06756592, 0.0006122589, 0.0059661865, 0.0079193115, 0.008026123, 0.04534912, 0.057617188, 0.030380249, 0.02116394, -0.027709961, -0.010559082, 0.0030784607, 0.006439209, -0.012962341, -0.027130127, -0.027023315, 0.035888672, -0.013282776, 0.0131073, 0.015129089, 0.00088500977, -0.04373169, -0.014770508, -0.015686035, -0.029632568, -0.0030727386, 0.0021800995, 0.009017944, -0.0023994446, -0.03665161, 0.0060920715, -0.0059776306, -0.018997192, 0.03353882, -0.0022220612, 0.035369873, 0.00042581558, -0.10424805, -0.036499023, -0.03564453, 0.02494812, 0.03137207, 0.018829346, 0.0022506714, -0.0158844, -0.01890564, 0.01586914, -0.010406494, -0.059295654, 0.032470703, -0.0256958, -0.0019359589, 0.0007481575, -0.056884766, -0.01651001, -0.017105103, -0.002122879, 0.064086914, -0.020721436, -0.004886627, -0.010597229, -0.02885437, -0.015975952, -0.030319214, -0.031188965, 0.00031518936, -0.0007543564, -0.0029067993, -0.000834465, 0.022720337, -0.015289307, 0.00057697296, -0.0071640015, -0.04663086, 0.020935059, 0.027069092, 0.010353088, -0.035186768, 0.024353027, 0.03829956, 0.0206604, -0.035247803, -0.009925842, -0.034820557, 0.045410156, 0.052581787, -0.019226074, 0.08331299, -0.030853271, 0.0113220215, 0.039520264, 0.03463745, -0.025726318, 0.038269043, 0.015090942, 0.032684326, 0.02494812]}, "B00FGEINVI": {"id": "B00FGEINVI", "original": "Brand: Weber\nName: Weber 57060001 Q3200 Liquid Propane Grill,White\nDescription: \nFeatures: Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nGrill-Out handle light. Battery type: AAA\nEasy-start electronic ignition and infinite control burner valve settings\nOperates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75\n", "metadata": {"Name": "Weber 57060001 Q3200 Liquid Propane Grill,White", "Brand": "Weber", "Description": "", "Features": "Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nGrill-Out handle light. Battery type: AAA\nEasy-start electronic ignition and infinite control burner valve settings\nOperates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004547119, 0.011955261, -0.037872314, -0.016067505, -0.0017595291, -0.02166748, -0.0050354004, 0.011169434, -0.04425049, -0.005470276, -0.011077881, 0.0051956177, 0.006450653, -0.05899048, 0.047851562, -0.025680542, 0.033172607, 0.02418518, 0.037078857, -0.0104522705, 0.016967773, 0.0149002075, 0.007949829, 0.08514404, 0.056488037, -0.089782715, -0.0115737915, 0.014228821, 0.02947998, 0.0054359436, 0.03717041, 0.016815186, 0.027236938, -0.0051651, -0.020858765, -0.04559326, 0.020553589, -0.017181396, -0.017547607, 0.012184143, 0.039794922, -0.011413574, 0.011077881, 0.022598267, -0.0033988953, -0.037261963, 0.047180176, -0.038360596, 0.054504395, 0.021133423, -0.016952515, -0.0033607483, -0.017715454, -0.02658081, -0.023422241, -0.01852417, 0.06365967, -0.064819336, 0.014060974, -0.04626465, -0.036376953, 0.009544373, 0.042938232, 0.0030498505, -0.013725281, 0.022583008, 0.10852051, -0.005821228, -0.0112838745, -0.055114746, 0.0096206665, 0.024887085, 0.014289856, 0.037628174, -0.018585205, -0.047668457, 0.045715332, -0.0033092499, 0.02848816, 0.029785156, 0.0048446655, -0.014099121, 0.028564453, 0.03149414, -0.0017709732, 0.029678345, -0.021499634, -0.013374329, -0.008071899, -0.032440186, -0.0099487305, -0.050323486, -0.035888672, 0.047698975, 0.023513794, -0.043914795, -0.059020996, -0.06774902, 0.018218994, 0.01159668, 0.028167725, -0.024887085, 0.022872925, 0.0047340393, 0.010108948, 0.07867432, 0.0011329651, 0.04244995, 0.024520874, -0.022827148, 0.0138549805, -0.008255005, -0.009048462, 0.0206604, -0.04837036, -0.017364502, -0.048980713, -0.00021862984, -0.01007843, 0.011505127, -0.027908325, -0.0090408325, -5.143881e-05, 0.02003479, 0.000107228756, 0.021438599, 0.005050659, -0.003545761, -0.013252258, -0.0042037964, -0.018447876, 0.012557983, 0.04611206, 0.054656982, 0.0061416626, 0.005935669, 0.028518677, -0.00617218, 0.021606445, -0.021133423, 0.011489868, -0.016815186, 0.021499634, 0.018035889, -0.028366089, 0.017974854, 0.03173828, 0.012336731, -0.0317688, -0.070495605, 0.015541077, 0.006702423, 0.047668457, 0.012191772, -0.054382324, 0.012191772, -0.0256958, -0.0016269684, -0.047973633, -0.031341553, -0.01914978, -0.01651001, 0.01600647, -0.009437561, -0.041107178, 0.040802002, 0.00053310394, -0.013664246, 0.02810669, 0.056671143, 0.0140686035, -0.052825928, 0.021759033, 0.041107178, -0.009994507, 0.03567505, 0.015213013, 0.0020503998, 0.03942871, -0.0423584, -0.06011963, -0.038879395, 0.07739258, -0.039123535, 0.007820129, -0.016815186, 0.016921997, -0.0046310425, -0.00010752678, 0.014816284, 0.02508545, 0.01335144, 0.017486572, -0.024810791, 0.03845215, 0.008094788, -0.060302734, 0.0034370422, -0.00044727325, -0.042663574, -0.0074043274, 0.0076141357, -0.016494751, 0.006549835, -0.038726807, -0.007785797, -0.0052871704, 0.009895325, 0.039611816, 0.026992798, -0.026550293, -0.011505127, 0.027282715, -0.064697266, -0.024734497, 0.0047454834, -0.018432617, 0.0019664764, 0.028869629, -0.022384644, 0.06585693, 0.0056610107, 0.0491333, 0.022323608, 0.0034637451, -0.0047912598, -0.026229858, -0.0012874603, 0.01259613, -0.011940002, 0.035888672, 0.018966675, 0.091552734, 0.08465576, 0.012161255, 0.044433594, 0.088134766, 0.015014648, -0.032684326, -0.028289795, 0.007827759, -0.011116028, -0.024215698, 0.018173218, 0.016738892, 0.016464233, 0.01486969, -0.013702393, -0.0033874512, 0.02192688, 0.040985107, 0.0005712509, 0.032287598, 0.005569458, -0.033081055, 0.03314209, 0.00356102, 0.0029716492, -0.020935059, 0.040649414, -0.014198303, 0.029205322, 0.019989014, 0.0046577454, 0.009117126, -0.008468628, 0.016845703, 0.0036888123, -0.018615723, -0.012229919, 0.035736084, 0.0256958, -0.012649536, -0.068603516, -0.030258179, 0.01687622, 0.0016841888, 0.046447754, -0.0006995201, -0.055358887, 0.029174805, 0.014259338, -0.0022621155, 0.0035362244, 0.053649902, -0.011100769, -0.011520386, -0.00067329407, 0.0045814514, 0.0076408386, 0.03591919, -0.019821167, -0.014442444, -0.0034446716, -0.0062789917, -0.042938232, 0.13342285, 0.008865356, -0.015960693, -0.0034637451, 0.07513428, 0.017181396, -0.036865234, -0.001950264, 0.009552002, -0.0024223328, 0.020324707, 0.020004272, 0.02003479, -0.011123657, 0.020111084, 0.03604126, 0.039520264, 0.013923645, 0.025009155, -0.0019159317, 0.02192688, 0.056365967, 0.022415161, 0.01550293, -0.0064430237, -0.01864624, -0.04827881, -0.02571106, -0.007434845, 0.030731201, -0.03250122, -0.0077590942, -0.01979065, 0.008995056, -0.0259552, -0.044799805, -0.02420044, -0.013671875, -0.022506714, 0.0010156631, 0.008995056, 0.01902771, -0.002155304, -0.02633667, 0.022491455, -0.032318115, -0.011436462, 0.012046814, -0.03515625, -0.051757812, 0.035583496, 0.0031147003, -0.028457642, -0.005748749, 0.027664185, -0.026062012, 0.02255249, -0.0073394775, 0.018722534, -0.007888794, -0.023452759, -0.03643799, -0.033966064, -0.077697754, 0.015159607, -0.034301758, -0.038757324, 0.010986328, 0.047912598, -0.01966858, -0.043518066, -0.021194458, -0.023132324, -0.008583069, 0.010444641, -0.015174866, -0.08166504, -0.009643555, -0.024887085, 0.019577026, 0.021713257, -0.04147339, -0.016738892, -0.011154175, 0.011451721, 0.025772095, -0.04650879, 0.0012216568, 0.0390625, -0.0035743713, 0.022827148, 0.05105591, 0.026626587, -0.010025024, 0.010063171, 0.026031494, -0.038360596, -0.00057315826, -0.0034599304, 0.0082473755, -0.027938843, -0.00087833405, -0.040618896, 0.006526947, -0.09423828, 0.037994385, 0.021652222, -0.039886475, 0.002439499, -0.04827881, -0.0647583, -0.0524292, 0.027770996, 0.07824707, -0.0070877075, -0.024719238, -0.00762558, -0.0051727295, -0.0044937134, 0.02822876, 0.019378662, -0.007118225, 0.0006375313, -0.01902771, 0.036987305, -0.045928955, 0.030548096, 0.015823364, -0.05935669, 0.025985718, -0.058441162, 0.013931274, -0.03857422, 0.048614502, -0.016571045, 0.01235199, -0.0463562, -0.027770996, 0.03378296, 0.059631348, 0.018081665, 0.027679443, 0.013008118, 0.0053596497, 0.010353088, -0.002544403, -0.0029335022, 0.059417725, 0.012397766, -0.008888245, -0.039489746, -0.023925781, 0.013313293, -0.04006958, 0.03201294, -0.010231018, 0.04812622, 0.018310547, -0.01007843, 0.12585449, -0.0077285767, 0.047790527, 0.0020713806, -0.018188477, -0.0019083023, -0.03866577, 0.01889038, 0.020568848, -0.0066184998, -0.010986328, 0.03286743, 0.03111267, 0.014762878, -0.01876831, 0.012878418, 0.011329651, 0.002840042, -0.016921997, -0.01701355, -0.030654907, 0.029525757, -0.0068740845, 0.033447266, -0.025482178, -0.037353516, -0.00705719, -0.07019043, 0.09844971, 0.09893799, -0.03479004, 0.10809326, 0.06738281, -0.017547607, 0.029190063, 0.022750854, -0.018463135, -0.0068511963, 0.046051025, -0.03866577, 0.0101623535, 0.015205383, -0.046142578, 0.006126404, -0.009239197, -0.042236328, 0.026535034, 0.012809753, -0.018936157, -0.022476196, 0.0098724365, -0.0043182373, -0.014564514, 0.026016235, -0.015426636, -0.019073486, -0.02999878, -0.0039024353, 0.01802063, -0.033294678, -0.029403687, 0.012207031, -0.034729004, -0.022537231, 0.024353027, 0.018203735, 0.0005373955, 0.006298065, 0.049072266, -0.016220093, 0.017120361, -0.033233643, 0.00053071976, -0.014724731, 0.02507019, 0.024673462, 0.011985779, 0.010467529, -0.00806427, 0.001001358, -0.00059461594, 0.015434265, 0.019851685, -0.04144287, -0.045196533, 0.009811401, 0.042419434, 0.015258789, -0.05307007, 0.0065689087, -0.031433105, -0.01234436, -0.00027632713, -0.03665161, -0.009338379, -0.0005187988, 0.009567261, -0.04623413, -0.003419876, -0.01777649, -0.051879883, -0.042419434, 0.013580322, -0.013038635, -2.3543835e-05, 0.023666382, 0.048431396, -0.05319214, -0.02758789, -0.027297974, -0.019485474, 0.07141113, 0.018127441, 0.045013428, -0.03591919, 0.012329102, -0.022537231, 0.09851074, 0.02935791, 0.014724731, -0.066101074, -0.01689148, -0.010032654, 0.019729614, 0.0058403015, -0.034118652, 0.02760315, 0.007133484, -0.018737793, -0.078552246, -0.0026283264, 0.049316406, -0.05419922, -0.068847656, -0.01890564, 0.06210327, 0.00894928, 0.014541626, -0.0058670044, 0.008392334, 0.013114929, 0.002822876, -0.07879639, -0.03555298, 0.0013561249, -0.008117676, 0.0049095154, -0.016464233, -0.0079574585, 0.033447266, 0.053009033, 0.050811768, -0.0008716583, -0.011146545, -0.00944519, -0.006374359, -0.0064926147, -0.017745972, 0.009521484, -0.022537231, 0.007129669, -0.077941895, 0.05783081, 0.07678223, 0.016540527, 0.029190063, 0.024032593, 0.012321472, -0.010643005, 0.0025806427, -0.030395508, -0.017059326, 0.0056991577, -0.0026187897, -0.0027179718, 0.00440979, -0.018569946, -0.015594482, 0.008964539, 0.04598999, -0.011123657, 0.017089844, 0.018218994, 0.029251099, 0.005065918, -0.010025024, 0.010650635, -0.041290283, 0.027816772, 0.03616333, 0.005050659, -0.0049362183, -0.011802673, -0.017181396, -0.006877899, -0.0006299019, 0.010566711, -0.047302246, 0.018447876, 0.035217285, -0.0040130615, -0.0025482178, 0.020568848, -0.016204834, 0.0062828064, 0.0071754456, 0.033050537, -0.01651001, 0.0132369995, 0.0289917, -0.030807495, -0.032928467, 0.038146973, -0.057403564, 0.058532715, 0.035064697, -0.06011963, 0.017562866, 0.0049552917, -0.0076026917, -0.024154663, 0.06427002, -0.02053833, -0.0028038025, -0.042419434, 0.013046265, 0.0635376, 0.033691406, -0.02696228, -0.021438599, 0.037017822, 0.0038986206, -0.006046295, -0.0053863525, 0.024902344, -0.04220581, -0.0041160583, -0.013572693, -0.021408081, -0.022232056, -0.0362854, -0.03100586, 0.028030396, 0.009643555, -0.0054779053, 0.035461426, -0.0036754608, -0.04446411, -0.04525757, -0.033935547, 0.02949524, 0.024276733, -0.014785767, -0.011383057, 0.0006041527, 0.002456665, -0.014228821, -0.015579224, 0.010009766, -0.009170532, -0.026428223, -0.05053711, 0.0045700073, -0.020401001, 0.019546509, -0.03970337, 0.005054474, 0.034362793, -0.036254883, 0.008682251, 0.021057129, -0.046966553, -0.029434204, -0.0013084412, -0.006000519, -0.011184692, -0.021408081, 0.038085938, -0.037963867, -0.026306152, -0.03414917, 0.03668213, -0.024261475, -0.02822876, 0.025680542, 0.048736572, -0.016036987, 0.040863037, -0.010292053, -0.047912598, 0.0072402954, 0.014297485, -0.05126953, -0.057861328, -0.029754639, -0.005569458, -0.028717041, -0.035339355, -0.0041389465, 0.051574707, 0.021469116, -0.042877197, -0.019607544, -0.0317688, 0.014984131, -0.06640625, 0.0017957687, -0.0041885376, 0.012458801, 0.0209198, 0.004016876, -0.048919678, 0.015403748, 0.0035934448, 0.035705566, 0.014732361, -0.030136108, 0.0071868896, 0.08673096, -0.019348145, 0.0574646, -0.027618408, -0.0007429123, -0.0013113022, 0.068725586, 0.008079529, 0.053253174, -0.076416016, -0.033691406, -0.036071777, 0.034698486, 0.031402588, 0.044403076, -0.06109619, -0.0206604, 0.03704834, 0.04055786, 0.01424408, 0.0178833, 0.035247803, -0.014045715, -0.047790527, 0.0011310577, -0.017532349, -0.042297363, -0.031799316, -0.027511597, -0.017730713, 0.027740479, -0.009376526, 0.027755737, -0.023986816, 0.046661377, 0.014404297, -0.01448822, 0.024993896, 0.009742737, 0.006313324, 0.009254456, -0.05090332, 0.031433105, 0.013366699, 0.026473999, -0.030181885, -0.0128479, -0.012420654, 0.027542114, -0.009346008, 0.05923462, -0.02746582, 0.032409668, 0.008895874, -0.071777344, 0.016479492, -0.008255005, -0.006500244, -0.0065193176, -0.066223145, -0.039764404, -0.01020813, 0.016616821, 0.0016031265, 0.011474609, 0.030151367, 0.016174316, 0.013000488, 0.0014657974, -0.0005788803, -0.008201599, 0.034118652, 0.013168335, -0.008682251, -0.025665283, -0.011619568, 0.03717041, 0.012641907, 0.016479492, 0.028076172, -0.03463745, 0.015388489, 0.018447876, 0.02508545, -0.026763916, -0.032989502, 0.017410278, 0.016799927, -0.015899658, 0.030532837, 0.041625977, 0.039031982, 0.007171631, -0.010429382, 0.002773285, -0.06137085, 0.005622864, 0.017425537, 0.03591919, -0.051452637, -0.03062439, -0.0021305084, -0.013717651, 0.01373291, 0.04522705, 0.013252258, 0.03817749, 0.034942627, 0.03515625, 0.06304932, -0.023620605, 0.026153564, 0.020462036, 0.011108398, 0.011909485, 0.012931824, -0.012779236, 0.010597229, 0.00026988983, 0.008705139, 0.04248047, 0.013259888, 0.0004503727, 0.024429321, 0.0076141357, -0.027648926, 0.033355713, 0.0030937195, -0.045013428, 0.012016296, -0.017074585, -0.043792725, 0.0027675629, -0.022857666, -0.03894043, 0.00472641, -0.07269287, -0.019073486, -0.018249512, -0.026000977, 0.007762909, -0.007801056, 0.0053977966, -0.048828125, 0.012680054, -0.029067993, 0.010856628, 0.0033550262, 0.048950195, -0.024414062, -0.04336548, -0.021438599, 0.019882202, -0.029510498, 0.00026917458, 0.0034313202, -0.013084412, -0.001326561, -0.007286072, 0.04232788, 0.024459839, 0.04788208, -0.009437561, -0.004337311, -0.029571533, -0.030853271, 0.017990112, 0.0082092285, -0.02067566, 0.008369446, 0.06274414, -0.008407593, 0.020950317, 0.02999878, -0.0079422, -0.074157715, -0.031677246, -0.03741455, -0.03515625, -0.011222839, -0.011741638, 0.023147583, -0.007255554, -0.04373169, 0.060180664, 0.027359009, 0.04522705, 0.014625549, -0.016036987, 0.028549194, -0.030670166, -0.035125732, -0.07098389, -0.019424438, 0.045654297, 0.06689453, 0.013389587, 0.01663208, 0.02229309, -0.028244019, 0.013412476, -0.0035686493, 0.004043579, 0.013450623, 0.0056114197, 0.0061569214, 0.0023479462, -0.018356323, 0.011703491, -0.01876831, -0.02293396, 0.040924072, 0.037139893, -0.047973633, -0.035888672, -0.019546509, -0.0007920265, -0.028869629, -0.036895752, -0.041259766, -0.020690918, -0.009315491, 0.037200928, -0.02217102, 0.015205383, -0.01965332, 0.016052246, -0.015808105, 0.006439209, 0.013252258, 0.021850586, -0.019439697, 0.0146102905, 0.0015201569, 0.02230835, -0.026885986, -0.09918213, -0.05291748, 0.030578613, -0.0033740997, 0.010932922, 0.030548096, -0.022018433, 0.021911621, 0.018936157, 0.023956299, 0.008583069, 0.01209259, 0.026657104, -0.017578125, 0.012023926]}, "B07PJS4B4X": {"id": "B07PJS4B4X", "original": "Brand: Napoleon\nName: Napoleon TQ285XBL1 Propane Gas Grill, Blue\nDescription: \nFeatures: Blue portable grill with scissor cart\nMaterial Type: Cast Iron\n", "metadata": {"Name": "Napoleon TQ285XBL1 Propane Gas Grill, Blue", "Brand": "Napoleon", "Description": "", "Features": "Blue portable grill with scissor cart\nMaterial Type: Cast Iron", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04244995, 0.0015106201, -0.010192871, 0.07330322, -0.037506104, 0.0014295578, 0.001367569, -0.040222168, -0.025283813, -0.007858276, -0.061035156, 0.031234741, -0.012420654, -0.0112838745, 0.036865234, -0.026184082, -0.00013637543, 0.049957275, 0.0001065135, -0.00856781, 0.006954193, -0.015151978, -0.035095215, 0.052856445, 0.043762207, -0.03363037, -0.0014715195, 0.038482666, 0.03414917, 0.023040771, 0.037750244, -0.018249512, 0.011077881, 0.0022735596, 0.013221741, -0.0048599243, 0.00793457, 0.007472992, 0.0037708282, 0.020812988, 0.0019798279, 0.017120361, -0.04714966, -0.00014829636, -0.04751587, -0.022628784, -0.015007019, -0.0110321045, -0.028045654, 0.012062073, 0.0030384064, -0.007369995, 0.011566162, 0.0037994385, -0.007633209, -0.013633728, 0.046966553, -0.03326416, 0.023773193, -0.013595581, -0.03253174, 0.0146102905, 0.024093628, -0.015022278, -0.026443481, 0.0051879883, 0.06677246, -0.00422287, -0.03466797, -0.07556152, 0.0039253235, 0.0065231323, -0.014831543, -0.00749588, -0.043151855, -0.02758789, 0.047180176, -0.05795288, -0.0010156631, 0.019561768, -0.012710571, 0.017837524, -0.016723633, -0.032470703, 0.01928711, -0.012252808, -0.0051574707, -0.01260376, -0.012046814, -0.02508545, -0.009887695, -0.02406311, -0.05142212, 0.049194336, 0.024520874, -0.02319336, -0.052947998, -0.03479004, 0.017440796, 0.022033691, 0.0024604797, -0.0058555603, -0.0020999908, -0.019714355, 0.0078125, 0.06506348, 0.028747559, 0.026046753, 0.023788452, -0.018478394, -0.006298065, 0.013252258, 0.019561768, -0.044952393, -0.043182373, -0.008308411, -0.015960693, 0.019683838, 0.037353516, 0.01259613, -0.027648926, 0.012191772, 0.016296387, 0.01939392, 0.037109375, 0.06414795, 0.028717041, -0.039001465, -0.018997192, 0.04309082, -0.034118652, 0.013633728, 0.019454956, 0.013572693, -0.0013656616, -0.029830933, 0.050628662, -0.002199173, 0.014205933, 0.0011901855, 0.0069236755, 0.0065574646, 0.030731201, 0.0021038055, -0.04421997, -0.010818481, 0.022781372, 0.02798462, -0.017410278, -0.054504395, 0.022567749, 0.0041770935, 0.031707764, 0.020584106, -0.03692627, 0.022079468, -0.009223938, 0.002456665, -0.042297363, -0.03567505, -0.008346558, -0.02128601, 0.027557373, 0.016143799, -0.011924744, 0.023452759, 0.013198853, 0.001745224, 0.022766113, 0.05596924, -0.02444458, 0.014015198, 0.042266846, 0.033355713, -0.0064353943, -0.015037537, 0.008712769, 0.005126953, 0.06768799, -0.06222534, -0.082092285, -0.048461914, 0.09631348, -0.061706543, 0.00083208084, -0.039093018, 0.02104187, 0.012397766, 0.016738892, 0.027145386, 0.0026416779, -0.009086609, -0.016021729, 0.01109314, 0.009651184, 0.013763428, -0.045562744, 0.018066406, -0.0178833, -0.040374756, -0.006134033, 0.031158447, -0.016082764, 0.018005371, 0.019821167, -0.013893127, 0.025024414, -0.0033245087, 0.032287598, 0.026931763, -0.015602112, -0.017288208, 0.019515991, -0.08404541, -0.035858154, 0.022506714, -0.03479004, -0.00037670135, 0.004890442, 0.022125244, 0.026397705, 0.0068511963, 0.015472412, 0.0022964478, -0.0029201508, 0.019515991, -0.036132812, 0.015510559, 0.019165039, 0.013648987, 0.034973145, -0.0065689087, 0.048828125, 0.06048584, 0.018493652, 0.0335083, 0.07092285, 0.023071289, -0.022613525, -0.01852417, 0.018920898, -0.008377075, -0.010253906, 0.0035858154, 0.082214355, 0.06933594, 0.028503418, -0.025924683, -0.02029419, 0.030532837, 0.004573822, 0.010292053, 0.011833191, 0.036193848, -0.03955078, 0.033050537, -0.006252289, 0.011581421, -0.0046806335, 0.021408081, -0.0015134811, 0.083496094, 0.027114868, 0.032684326, 0.040985107, 0.011856079, 0.039978027, 0.0368042, -0.033477783, 0.01701355, 0.009529114, 0.011886597, -0.0027503967, 0.028533936, 0.024536133, 0.007255554, -0.028198242, -0.0014133453, -0.012741089, 0.0064697266, 0.017333984, -0.039794922, 0.032104492, 0.011482239, 0.062561035, 0.007888794, 0.038116455, 0.03781128, -0.11743164, -0.05618286, -0.024139404, 0.049346924, -0.025283813, 0.0009775162, -0.0021648407, 0.026153564, 0.060668945, 0.02394104, -0.0010614395, 0.0034866333, 0.015426636, 0.02671814, -0.03302002, 0.0035972595, -0.001449585, 0.028411865, 0.01586914, 0.013938904, 0.008071899, -0.0132369995, 0.00283432, 0.018753052, 0.026672363, 0.012542725, 0.0033855438, -0.0030384064, -0.01838684, 0.045562744, 0.029571533, 0.020507812, -0.041229248, -0.023849487, 0.02142334, 0.0017938614, 0.008155823, 0.0023078918, 0.004169464, 0.02708435, -0.028137207, 0.006008148, -0.0069732666, -0.019958496, -0.022613525, -0.0015048981, -0.0030345917, 0.02293396, 0.0041389465, 0.042633057, 0.006465912, -0.047943115, 0.012802124, -0.02760315, -0.005756378, 0.022323608, -0.00674057, -0.03378296, 0.016540527, 0.019226074, -0.04031372, -0.020355225, 0.021057129, -0.04397583, 0.01663208, -0.019378662, 0.008651733, 0.034698486, -0.022521973, 0.010734558, 0.027740479, -0.022201538, -0.03012085, 0.010635376, -0.030075073, 0.03439331, 0.025115967, -0.018249512, -0.008911133, 0.016662598, 0.02267456, 0.02810669, -0.031341553, 0.036254883, -0.03149414, -0.019836426, 0.005306244, 0.0045166016, 0.06500244, -0.031280518, 0.0047950745, 0.034973145, -0.021392822, 0.019104004, -0.0025177002, 0.03729248, 0.02760315, -0.024154663, -0.037384033, 0.03488159, 0.027770996, 0.014640808, 0.013175964, 0.0073165894, -0.030166626, -0.017074585, 0.0029315948, 0.00018131733, -0.019683838, -0.022064209, -0.043823242, -0.019134521, -0.056762695, -0.023330688, -0.008651733, -0.049072266, -0.0034618378, -0.078063965, -0.045043945, -0.036956787, 0.028793335, 0.0026187897, -0.018203735, -0.012321472, -0.017562866, -0.044128418, -0.028213501, 0.021331787, 0.018661499, -0.01751709, 0.04812622, -0.023834229, -0.007896423, -0.018234253, 0.0008072853, 0.03842163, -0.017593384, 0.070007324, -0.022964478, -0.0060272217, 0.020446777, 0.011009216, 0.0054626465, 0.0010128021, 0.016952515, 0.041137695, 0.012496948, 0.07720947, -0.0051002502, 0.0033035278, 0.015823364, -0.047454834, -0.036254883, -0.009994507, -0.0082473755, 0.05029297, -0.017593384, -0.0037517548, -0.024749756, -0.056732178, -0.02835083, -0.042297363, 0.034484863, -0.002445221, 0.024368286, 0.014450073, -0.0021762848, 0.099731445, 0.0513916, 0.053588867, -0.02293396, 0.044433594, 0.021255493, -0.044403076, 0.044067383, 0.00022828579, -0.0020370483, 0.00035262108, 0.019073486, 0.011108398, -0.028823853, 0.022491455, 0.026367188, -0.026138306, 0.021072388, -0.0017976761, -0.010238647, -0.00705719, 0.013420105, -0.0008864403, -0.0140686035, -0.016540527, -0.056427002, 0.008079529, -0.07043457, 0.06347656, 0.08282471, -0.020599365, 0.08380127, 0.023849487, -0.009376526, 0.06719971, 0.04055786, 0.006137848, -0.0015077591, 0.08111572, -0.03213501, 0.0154953, 0.013793945, 0.030685425, -0.0038337708, -0.01701355, -0.055603027, 0.015342712, 0.016403198, -0.010398865, -0.002986908, 0.03475952, 0.0054512024, -0.033691406, -0.0023403168, -0.03643799, -0.027328491, -0.068115234, 0.01612854, 0.029937744, -0.025100708, -0.03265381, 0.007286072, 0.011001587, -0.04373169, -0.009735107, -0.027435303, 0.018692017, 3.0577183e-05, 0.036895752, -0.0029754639, -0.016677856, -0.017028809, 0.018966675, -0.04852295, -0.034301758, 0.02168274, 0.0446167, -0.009140015, -0.004184723, 0.015701294, 0.008033752, 0.0005249977, -0.014312744, -0.061279297, -0.05810547, 0.0060424805, 0.062347412, 0.020599365, -0.033081055, 0.010536194, -0.0680542, -0.014724731, -0.033813477, -0.043060303, -0.016342163, -0.035705566, -0.02381897, -0.03488159, -0.019454956, -0.032470703, -0.009101868, -0.04949951, 0.018859863, -0.015487671, 0.0063667297, 0.024993896, 0.046051025, -0.03894043, -0.04647827, -0.0070228577, -0.0076446533, 0.052703857, 0.008232117, 0.021606445, -0.04660034, -0.0070991516, 0.012825012, 0.08868408, -0.0045166016, 0.022399902, -0.025253296, -0.05368042, 0.0012817383, 0.006263733, 0.06854248, -0.031982422, 0.031280518, -0.03475952, 0.0034942627, -0.045196533, 0.011650085, -0.0137786865, -0.021850586, -0.062042236, -0.03366089, 0.050201416, 0.0049057007, -0.0009832382, -0.053466797, 0.009857178, 0.010025024, -0.016921997, -0.02659607, -0.016799927, 0.021575928, 0.009552002, 0.00014829636, -0.0042648315, -0.014381409, 0.05114746, 0.008117676, 0.027313232, 0.008872986, -0.037902832, -0.06921387, 0.012924194, 0.03189087, -0.019332886, 0.008995056, -0.0473938, -0.022247314, -0.07348633, 0.07305908, 0.05429077, -0.04244995, -0.017822266, -0.004360199, -0.03665161, -0.050872803, 0.003540039, -0.008728027, -0.036193848, 0.00080919266, -0.014465332, -0.023330688, -0.011138916, -0.015640259, -0.010513306, -0.0025024414, 0.029174805, 0.0121154785, -0.008346558, -0.010574341, -0.00033473969, -0.0048942566, -0.02166748, -0.012779236, -0.032470703, -0.020187378, 0.0513916, -0.052246094, -0.03137207, 0.035583496, -0.007045746, -0.032592773, 0.024795532, -0.0006713867, -0.057861328, 0.06317139, 0.033111572, 0.030715942, -0.028747559, -0.012191772, 0.0049324036, -0.0052986145, -0.019454956, 0.038024902, -0.02999878, 0.037597656, 0.021835327, -0.009880066, 0.05331421, 0.03656006, -0.006969452, -0.0071868896, 0.01965332, -0.020568848, 0.041534424, -0.003730774, -0.0077209473, -0.041656494, 0.033477783, -0.023498535, -0.020324707, -0.03540039, 0.007972717, 0.028457642, -0.001288414, 0.00831604, -0.035491943, 0.031173706, -0.00440979, -0.00020575523, 0.014785767, -0.013023376, -0.019866943, -0.026977539, -0.012001038, -0.06976318, 0.016220093, -0.0079193115, -0.043701172, -0.046783447, -0.046081543, 0.00422287, 0.00932312, -0.021881104, 0.023361206, -0.036071777, -0.022445679, -0.0047569275, 0.011245728, 0.040863037, 0.0064430237, -0.0077209473, 0.029220581, 0.027816772, -0.009460449, -0.013504028, -0.028076172, -0.020233154, 0.026992798, 0.009269714, -0.011390686, 0.04574585, -0.0035171509, 0.011268616, 0.014854431, -0.023361206, 0.012817383, 0.0038547516, -0.042785645, 0.018676758, 0.031921387, 0.07092285, 0.00071048737, -0.009895325, 0.07519531, -0.033172607, -0.012908936, -0.10913086, 0.022842407, -0.016815186, -0.037139893, 0.051574707, 0.0038280487, 0.0087890625, 0.015510559, -0.0001705885, -0.04119873, -0.010414124, -0.00774765, -0.029418945, -0.02798462, -0.035186768, -0.0044784546, 0.012084961, 0.0008263588, -0.047790527, 0.041412354, -0.052520752, -0.054901123, -0.03640747, -0.009109497, 0.019744873, -0.028137207, 0.0038604736, -0.009399414, 0.015602112, -0.0074157715, 0.01651001, -0.0690918, -0.06951904, -0.011177063, 0.034606934, 0.049835205, -0.020370483, 0.014511108, 0.020645142, -0.05606079, 0.052734375, -0.0008831024, -0.031555176, 0.018798828, 0.051971436, 0.008674622, 0.037506104, -0.045654297, -0.025848389, -0.0009803772, -0.014854431, 0.049835205, -0.022140503, -0.01033783, 0.014564514, 0.03616333, 0.023376465, 0.02633667, 0.004760742, 0.011505127, 0.012290955, 0.00082206726, 0.007587433, 0.050323486, -0.019622803, 0.009590149, -0.043029785, 0.014732361, -0.016647339, -0.009284973, -0.011650085, 0.010505676, 0.026687622, -0.007156372, 0.0005722046, 0.0052986145, 0.025909424, 0.029769897, -0.01878357, -0.06335449, 0.017211914, -0.03781128, -0.01977539, -0.034332275, 0.021942139, 0.024291992, 0.03640747, 0.008987427, 0.014335632, -0.032836914, 0.03503418, 0.051208496, -0.062683105, -0.040618896, 0.013412476, 0.058898926, -0.012420654, -0.04812622, -0.01109314, -0.01574707, 0.016220093, 0.009033203, -0.027801514, 0.041137695, 0.028778076, -0.04324341, 0.034240723, -0.05895996, -0.037384033, 0.008003235, 0.012413025, 0.01374054, 0.005657196, 0.008979797, 0.01133728, 0.0524292, -0.051116943, 0.02279663, -0.016555786, 0.018875122, -0.052215576, 0.004425049, -0.023727417, -0.009269714, -0.011001587, -0.020507812, 0.028076172, 0.02822876, -0.008468628, 0.032928467, 0.041412354, -0.037994385, 0.046081543, -0.055755615, 0.09246826, 0.03466797, 0.033203125, -0.02468872, -0.011405945, -0.017700195, 0.007259369, -0.002878189, 0.04046631, -0.016586304, 0.046844482, -0.0079422, -0.005622864, 0.027679443, -0.032714844, 0.018341064, -0.015960693, 0.010147095, 0.03387451, 0.03387451, 0.00056505203, 0.0098724365, 0.007572174, 0.006252289, 0.03189087, 0.037078857, 0.009384155, -0.020553589, 0.0019798279, 0.004787445, -0.025115967, 0.022262573, -0.0061149597, -0.018554688, -0.008407593, 0.013427734, -0.021743774, -0.04714966, -0.027862549, -0.023345947, -0.02748108, 0.054840088, 0.022613525, -0.033691406, -0.002746582, 0.016448975, 0.027862549, -0.08105469, -0.014289856, -0.027328491, -0.02029419, 0.00039744377, 0.074157715, -0.050231934, -0.053619385, -0.07385254, 0.009742737, -0.08148193, -0.0036296844, 0.012062073, -0.018463135, 0.0031642914, -0.027511597, -0.033691406, 0.038330078, 0.029846191, -0.029067993, 0.05307007, -0.017059326, -0.0076141357, 0.009117126, 0.036193848, -0.032440186, -0.033233643, -0.016952515, -0.017318726, 0.040039062, -0.011878967, -0.012573242, -0.0004892349, 0.013725281, 0.016067505, -0.022537231, -0.03012085, -0.021911621, 0.0038871765, -0.025756836, -0.05456543, -0.04067993, 0.020996094, 0.06854248, 0.03741455, 0.023239136, 0.04849243, -0.015151978, -0.10949707, -0.057678223, -0.033996582, 0.035827637, 0.036712646, 0.039398193, 0.0070648193, 0.03540039, -0.021102905, 0.03439331, 0.014854431, -0.030303955, -0.014625549, 0.012199402, 0.03564453, -0.008598328, 0.008850098, 0.051635742, -0.023086548, -0.058929443, 0.02798462, 0.028564453, -0.019134521, 0.014831543, -0.024398804, 0.00011044741, 0.017471313, 0.0032958984, -0.010246277, 0.008361816, -0.0061836243, 0.0029449463, 0.0060653687, -0.011428833, 0.007888794, 0.0033073425, -0.01083374, 0.023986816, 0.010177612, 0.011390686, -0.03112793, 0.062683105, 0.010314941, 0.008255005, -0.0017499924, -0.04953003, -0.060913086, 0.052337646, 0.024017334, -0.018630981, 0.02999878, 0.012260437, 0.012802124, 0.019180298, -0.055236816, -0.042236328, 0.029388428, 0.0847168, -0.018173218, 0.027267456]}, "B087HNGXRB": {"id": "B087HNGXRB", "original": "Brand: Megamaster\nName: Megamaster 720-0988EA Propane Gas Grill, Black/Silver\nDescription: \nFeatures: Assembly required\nDurable high-grade stainless steel main burner\nStainless steel control panel with two large easy to transport wheels\nHeavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area\nA cooking power of 30,000 total BTU's with strong, even and consistent heat\n", "metadata": {"Name": "Megamaster 720-0988EA Propane Gas Grill, Black/Silver", "Brand": "Megamaster", "Description": "", "Features": "Assembly required\nDurable high-grade stainless steel main burner\nStainless steel control panel with two large easy to transport wheels\nHeavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area\nA cooking power of 30,000 total BTU's with strong, even and consistent heat", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012008667, -0.013038635, -0.028015137, -0.00069379807, -0.031082153, -0.023239136, -0.025024414, -0.009468079, 0.005455017, -0.008621216, 0.03060913, 0.02848816, -0.023773193, -0.057250977, 0.023483276, 0.0029697418, 0.018417358, 0.014854431, 0.019897461, -0.019515991, -0.002494812, 0.018661499, -0.007118225, 0.039764404, 0.04699707, -0.031585693, -0.06237793, 0.026626587, 0.019607544, 0.027786255, 0.020248413, 0.00198555, 0.0592041, -0.051513672, 0.00053310394, -0.055267334, 0.046691895, -0.060943604, -0.048034668, 0.0022602081, -0.011558533, 0.025924683, -0.025222778, -0.0052871704, -0.036743164, -0.04324341, 0.0046463013, -0.033081055, 0.015586853, -0.0074920654, 0.0036182404, 0.055145264, 0.0135650635, 0.0014419556, -0.015945435, 0.025222778, -0.004802704, 0.013656616, 0.025527954, -0.011543274, -0.03048706, -0.002735138, 0.027145386, -0.004169464, -0.041625977, 0.0021419525, 0.005718231, -0.021209717, 0.018920898, -0.053222656, -0.016616821, 0.029586792, 0.016738892, -0.007369995, -0.014755249, -0.019638062, 0.013160706, -0.0018787384, 0.030212402, -0.0065612793, 0.018356323, -0.0074157715, 0.053741455, -0.03668213, 0.022903442, -0.0019035339, -0.007709503, -0.0045547485, -0.0028839111, -0.045288086, 0.004798889, -0.023880005, -0.042388916, 0.063964844, 0.006980896, -0.019058228, -0.037994385, -0.03161621, -0.0025806427, 0.024734497, 0.0035362244, -0.01348114, 0.022949219, -0.016616821, -0.02607727, 0.070495605, 0.030303955, 0.06768799, 0.005432129, 0.0063209534, 0.009483337, -0.03213501, -0.0234375, -0.014099121, -0.03829956, 0.021652222, -0.038024902, -0.008628845, 0.00472641, 0.014167786, -0.018066406, -0.020385742, 0.047424316, 0.012466431, 0.020599365, 0.014572144, -0.033447266, -0.009147644, -0.024856567, 0.045013428, -0.024917603, 0.011138916, 0.010223389, 0.015808105, -0.007511139, -0.019561768, -0.017349243, 0.00982666, 0.0036735535, 0.005405426, -0.0026626587, -0.019729614, 0.03668213, -0.0033302307, -0.009605408, 0.03375244, 0.018051147, 0.013130188, -0.028259277, -0.068603516, 0.033203125, -0.044555664, 0.017059326, 0.03060913, -0.02532959, 0.03451538, 0.023727417, -0.0101623535, -0.034118652, -0.024017334, -0.033233643, -0.027435303, 0.006893158, -0.0021533966, -0.031433105, 0.042999268, 0.035217285, 0.0017433167, 0.012802124, 0.011260986, 0.0040016174, -0.009742737, -0.0045928955, 0.0018625259, -0.004928589, 0.014389038, 0.0067214966, 0.039031982, 0.045532227, -0.050048828, -0.05343628, -0.06060791, 0.111083984, -0.054229736, -0.025115967, 0.0048713684, -0.0124053955, -0.009902954, 0.043701172, -0.0046157837, 0.024887085, 0.0042762756, 0.015686035, -0.030014038, 0.030258179, -0.032562256, 0.0007929802, -0.018051147, 0.00756073, -0.02557373, 0.030273438, -0.022140503, -0.0088272095, 0.019851685, -0.035949707, -0.019180298, -0.0015439987, -0.008377075, 0.025665283, 0.003704071, 0.0018291473, -0.019760132, 0.00944519, -0.05303955, -0.07531738, -0.028640747, -0.025344849, -0.0004580021, 0.000120818615, 0.0041236877, 0.018798828, 0.0026130676, 0.0069732666, 0.005126953, 0.01777649, 0.02494812, -0.033294678, 0.020462036, 0.029968262, 0.017211914, 0.011726379, 0.011444092, 0.07800293, 0.05697632, -4.595518e-05, 0.051635742, 0.07183838, 0.014381409, -0.03326416, -0.013076782, 0.02835083, -0.029907227, -0.002866745, 0.041778564, -0.029418945, -0.021514893, 0.026306152, -0.010971069, 0.011657715, 0.016921997, 0.03503418, -0.027114868, 0.024246216, 0.031555176, -0.014297485, 0.01574707, -0.0035896301, 0.031051636, -0.040161133, 0.017822266, -0.013153076, 0.04244995, 0.021820068, 0.0023059845, 0.014274597, 0.063964844, 0.011787415, 0.027557373, -0.07989502, 0.0736084, 0.03994751, 0.005569458, -0.014198303, 0.02218628, 0.00868988, 0.009674072, -0.04147339, 0.014045715, 0.0046577454, 0.01071167, 0.01701355, -0.031082153, -0.039001465, 0.001871109, 0.04550171, 0.0026893616, 0.005672455, 0.055877686, -0.028564453, -0.037872314, 0.017959595, -0.026611328, -0.05014038, 0.023162842, -0.056671143, -0.03366089, 0.07739258, 0.010246277, 0.010055542, -0.019012451, 0.007965088, 0.024505615, -0.050445557, 0.028839111, -0.005947113, 0.0034866333, -0.04272461, 0.05545044, 0.022567749, -0.040161133, -0.012504578, 0.027313232, 0.0385437, -0.0037784576, 0.024490356, 0.016693115, -0.019836426, 0.040802002, 0.013000488, 0.02633667, 0.024230957, 0.02279663, -0.055419922, -0.039215088, 0.004852295, 0.031021118, -0.07891846, -0.021270752, -0.03756714, -0.008979797, -0.011657715, -0.05206299, -0.02243042, 0.0064201355, -0.008834839, 0.00063467026, -0.012542725, 0.022766113, -0.019119263, -0.044403076, -0.028671265, -0.031677246, -0.00022995472, -0.0138549805, -0.04675293, 0.038757324, 0.0021820068, 0.023468018, -0.024108887, 0.021987915, -0.014419556, -0.018844604, -0.030334473, -0.040527344, -0.016204834, 0.0030822754, 0.008682251, -0.04525757, -0.01134491, -0.07067871, -0.043029785, 0.0061798096, -0.06719971, 0.029052734, 0.06677246, -0.027328491, -0.014945984, -0.006549835, -0.012252808, 0.017471313, 0.04626465, 0.005672455, -0.005760193, -0.038970947, -0.052215576, -0.054779053, 0.03503418, -0.030639648, 0.027420044, 0.020645142, 0.017120361, 0.021697998, -0.017807007, 0.0015125275, 0.025177002, 0.0033130646, 0.017654419, 0.05130005, 0.0027046204, -0.008201599, -0.009674072, 0.023666382, -0.050201416, -0.024765015, -0.0026397705, 0.0069999695, 0.003168106, 0.007671356, -0.033050537, -0.018005371, -0.09185791, 0.026123047, 0.018463135, -0.04916382, 0.0008702278, -0.059051514, -0.07714844, -0.04437256, -0.0016870499, 0.0625, -0.005252838, -0.016677856, -0.029266357, 0.005466461, -0.00983429, 0.0013885498, -0.0026798248, -0.002614975, -0.024887085, 0.0029659271, 0.036132812, -0.030776978, 0.012268066, 0.014175415, -0.032409668, 0.04827881, -0.049224854, 0.005924225, 0.019378662, 0.049316406, 0.00018334389, 0.010505676, -0.03591919, -0.0012731552, 0.014656067, 0.024597168, 0.0021781921, -0.017684937, 0.033172607, -0.019577026, -0.042877197, -0.030395508, -0.064941406, 0.011711121, -0.03778076, -0.012718201, -0.02670288, -0.06274414, -0.024658203, -0.0047340393, -0.030471802, 0.0071372986, -0.033996582, 0.022415161, -0.00687027, 0.05734253, 0.040527344, 0.02607727, 0.0048294067, -0.03668213, -0.04220581, -0.014060974, -0.0004348755, -0.023757935, -0.0027866364, -0.025360107, 0.016418457, 0.023757935, -0.020736694, 0.015434265, 0.016693115, 0.03668213, 0.0385437, -0.018310547, -0.026306152, -0.032043457, 0.0574646, 0.007820129, -0.014663696, -0.06817627, -0.014091492, 0.0006995201, -0.06561279, 0.07446289, 0.06744385, -0.02748108, 0.040649414, 0.017807007, 0.0048332214, 0.011207581, -0.009918213, -0.016204834, -0.0042800903, 0.039031982, -0.0068244934, 0.01663208, 0.01084137, 0.016067505, 0.011680603, -0.01612854, -0.06341553, 0.019683838, 0.010551453, -0.030960083, -0.006149292, 0.024932861, 0.022369385, -0.048706055, -0.0048179626, -0.009376526, -0.017684937, -0.057037354, -0.018966675, -0.005680084, -0.022781372, -0.031311035, 0.006996155, -0.015808105, -0.024475098, -0.0006799698, -0.0087890625, -0.0044174194, 0.015342712, 0.032836914, -0.028564453, 0.029815674, -0.03567505, 0.022094727, 0.0015287399, -0.0075683594, 0.04397583, -0.0079193115, 0.055267334, 0.049713135, -0.033172607, 0.03189087, 0.008132935, 0.015182495, -0.06185913, -0.08343506, 0.0115737915, 0.051818848, 0.027511597, -0.05130005, 0.009017944, -0.016159058, 0.0072631836, 0.006046295, -0.04550171, -0.009185791, -0.019241333, 0.0046920776, -0.09899902, -0.022323608, 0.02154541, -0.06756592, -0.044128418, 0.019119263, -0.030426025, -0.035888672, -0.007926941, 0.018447876, -0.053253174, 0.0034484863, -0.052642822, -0.01461792, 0.03527832, 0.018203735, 0.0770874, -0.04031372, 0.034973145, -0.023651123, 0.090270996, 0.0008716583, 0.013076782, -0.03567505, -0.053649902, 0.0004849434, 0.016998291, 0.054626465, -0.003768921, 0.01965332, -0.037506104, -0.03729248, -0.028274536, -0.01007843, 0.012672424, -0.027679443, -0.03894043, -0.0015535355, 0.10095215, -0.036376953, -0.00504303, -0.015563965, 0.005012512, 0.043518066, -0.011795044, -0.058135986, -0.04135132, 0.009490967, -0.021697998, 0.0028133392, -0.0070877075, -0.02619934, 0.03010559, 0.012786865, 0.033355713, -0.06329346, 0.0032291412, 0.031433105, -0.015213013, 0.025146484, -0.021606445, -0.01763916, -0.007598877, -0.003358841, -0.031677246, 0.06549072, 0.06945801, -0.018539429, -0.00067710876, 0.03640747, -0.0154953, -0.053588867, 0.006011963, 0.01600647, -0.030303955, -0.022781372, -0.022003174, 0.019729614, -0.009536743, 0.0024662018, 0.0053138733, -0.044708252, 0.027130127, 0.03616333, 0.016098022, -0.0046424866, -0.007144928, 0.026382446, 0.023529053, 0.00033521652, 0.0049438477, -0.009506226, 0.0036754608, -0.0024986267, 0.019317627, 0.03363037, -0.016052246, 0.0015068054, -0.0071754456, 0.016799927, -0.050354004, 0.020965576, 0.045806885, -0.0021095276, -0.034210205, -0.0067596436, 0.040985107, -0.01084137, -0.05291748, 0.027313232, -0.003932953, 0.00365448, -0.0037784576, 0.021392822, 0.017044067, 0.020309448, -0.00034546852, -0.013092041, 0.02619934, -0.030960083, 0.014831543, -0.016235352, 0.010253906, -0.05291748, 0.07269287, 0.00090169907, 0.019332886, -0.09472656, -0.0069503784, -0.041046143, 0.038269043, 0.0052108765, -0.03277588, 0.012550354, -0.040161133, -0.012039185, 0.017913818, 0.018569946, 0.0074653625, 0.029922485, 0.006954193, 0.011833191, -0.021606445, 0.015045166, -0.038269043, 0.005886078, 0.0016851425, -0.01737976, -0.012901306, 0.015945435, 0.0048179626, 0.00033903122, -0.030685425, 0.0016183853, -0.025131226, 0.022354126, -0.024856567, 0.0027618408, -0.0035514832, -0.0055160522, -0.010612488, 0.01423645, -0.024520874, -0.02331543, -0.029663086, -0.017669678, -0.041381836, 0.058776855, -0.024383545, 0.032562256, 0.030212402, -0.019210815, 0.0072746277, 0.028198242, -0.06945801, -0.008049011, 0.0015487671, -0.009239197, 0.014801025, -0.0008444786, 0.044311523, -0.019378662, -0.026550293, -0.08300781, 0.005455017, -0.00072813034, -0.03756714, 0.08886719, 0.051513672, 0.009986877, 0.025665283, 0.005924225, -0.078308105, 0.0047836304, -0.0036830902, -0.06982422, -0.031158447, -0.061309814, 0.0023593903, 0.0057029724, -0.011878967, -0.013702393, 0.0418396, -0.012794495, -0.054870605, -0.028778076, -0.011375427, 0.016281128, -0.04473877, 0.0044174194, -0.015403748, 0.0066719055, 0.008964539, 0.0138168335, -0.017089844, -0.003829956, 0.024353027, 0.019836426, -0.0008568764, -0.022125244, 0.0002808571, -0.0061836243, 0.028152466, 0.051513672, -0.039489746, -0.003440857, 0.026000977, 0.05697632, 0.0012054443, 0.0680542, -0.0069847107, -0.029418945, -0.048065186, 0.0095825195, 0.05847168, 0.054748535, -0.028396606, 0.03314209, 0.051818848, 0.026031494, 0.021087646, 0.018295288, 0.03366089, 0.0013341904, -0.04309082, 0.0084991455, -0.004840851, -0.036254883, -0.042297363, -0.04852295, -0.031066895, 0.0014543533, -0.00920105, 0.061035156, -0.040039062, 0.037902832, 0.005844116, -0.0030651093, 0.0058937073, 0.03527832, 0.0053253174, 0.006965637, -0.07702637, 0.029769897, 0.039611816, -0.007980347, 0.028579712, 0.010025024, -0.021850586, 0.014877319, -0.0063667297, 0.03491211, -0.051086426, 0.025222778, 0.031463623, -0.07281494, 0.0046081543, 0.032958984, 0.009750366, 0.00630188, -0.04562378, -0.0029792786, 0.019134521, -0.025527954, -0.008552551, 0.0072021484, 0.03152466, -0.0018749237, -0.019134521, -0.01914978, 0.027694702, -0.014564514, 0.0028152466, 0.035827637, 0.015853882, -0.01965332, -0.06567383, 0.039215088, 0.0284729, 0.0017881393, 0.038848877, 0.0027503967, 0.0109939575, -0.017715454, 0.018859863, -0.022109985, -0.029724121, -0.050872803, -0.008781433, 0.022125244, 0.042816162, -0.003112793, -0.029174805, 0.035369873, -0.017623901, 0.04888916, 0.018692017, 0.07281494, 0.027282715, -0.017532349, -0.049926758, 0.0029182434, 0.0018177032, -0.008659363, 0.020233154, 0.025390625, 0.029693604, 0.0033092499, 0.04421997, 0.044525146, 0.07611084, 0.0034923553, 0.034484863, -0.00522995, -0.0018262863, 0.04269409, 0.0066452026, -0.004142761, 0.010620117, -0.009124756, 0.004802704, 0.011779785, 0.019348145, 0.0036716461, 0.03567505, 0.016052246, -0.016738892, -0.0046424866, 0.016815186, -0.017990112, 0.029251099, -0.004650116, -0.0103302, -0.024154663, -0.04321289, -0.03640747, -0.02017212, -0.07269287, 0.012969971, -0.028518677, -0.054016113, -0.0206604, 0.0008621216, 0.0026569366, -0.06896973, -0.002576828, -0.036712646, 0.02003479, 0.009773254, 0.061920166, -0.028686523, -0.06896973, -0.020263672, 0.043762207, -0.053466797, -0.024856567, 0.01902771, 0.0015535355, 0.009941101, 0.0030288696, 0.047668457, 0.048858643, 0.03604126, -0.007259369, -0.026229858, 0.024139404, -0.0034122467, 0.020324707, -0.0034561157, -0.027389526, -0.01966858, -0.0015506744, 0.008613586, -0.007457733, 0.015113831, -0.002922058, -0.06347656, 0.017929077, 0.009994507, -0.0013952255, -0.030944824, -0.0035915375, 0.009223938, 0.00034713745, -0.026397705, 0.01838684, 0.009086609, 0.016830444, 0.046173096, 0.020202637, 0.04031372, -0.009803772, -0.09753418, -0.066345215, -0.03302002, 0.04449463, 0.014549255, 0.011398315, -0.03353882, 0.048553467, -0.0055160522, 0.02532959, 0.043121338, -0.019241333, -0.022354126, 0.005050659, 0.03842163, -0.028625488, 0.006538391, -0.0035133362, -0.03503418, -0.04876709, -0.0044441223, 0.03366089, -0.03552246, -0.036315918, -0.013572693, 0.012908936, -0.014549255, -0.028717041, -0.017410278, 0.004951477, 0.0054016113, 0.0032672882, 0.0054512024, -0.002986908, 0.0027256012, 0.015823364, -0.026794434, 0.028442383, 0.018203735, 0.02558899, -0.03881836, 0.05810547, 0.0059394836, 0.0770874, -0.027816772, -0.07324219, -0.041656494, 0.027542114, 0.027999878, -0.010856628, 0.089416504, -0.06329346, 0.016479492, 0.022506714, -0.021560669, 0.017044067, -0.008384705, 0.05319214, -0.020248413, -0.0075912476]}, "B00FDOON9C": {"id": "B00FDOON9C", "original": "Brand: Weber\nName: Weber 54060001 Q2200 Liquid Propane Grill , Gray\nDescription: \nFeatures: Total cooking area = 280 Square Inches\nStainless steel burner puts out 12,000 BTU-per-hour\nPorcelain-enameled, cast iron cooking grates\nElectronic ignition with built in thermometer\nTwo folding work tables\n", "metadata": {"Name": "Weber 54060001 Q2200 Liquid Propane Grill , Gray", "Brand": "Weber", "Description": "", "Features": "Total cooking area = 280 Square Inches\nStainless steel burner puts out 12,000 BTU-per-hour\nPorcelain-enameled, cast iron cooking grates\nElectronic ignition with built in thermometer\nTwo folding work tables", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004714966, 0.0121154785, -0.047424316, -0.016052246, -0.0077323914, -0.030670166, -0.01663208, 0.0041389465, -0.036010742, -0.01210022, -0.0056381226, -0.0073127747, -0.001789093, -0.06536865, 0.042297363, -0.03274536, 0.020309448, 0.037078857, 0.029312134, -0.024291992, -0.00035381317, -0.0026512146, 0.007926941, 0.07800293, 0.049194336, -0.06384277, -0.01576233, 0.011550903, 0.01902771, 0.002161026, 0.031707764, 0.009521484, 0.039367676, -0.013206482, -0.018997192, -0.027862549, -0.000114917755, -0.016174316, -0.029541016, 0.019256592, 0.027191162, -0.009849548, 0.0008325577, -0.005645752, -0.015487671, -0.018569946, 0.0418396, -0.019500732, 0.03036499, 0.021881104, -0.023605347, -0.0020160675, -0.02444458, -0.013755798, -0.011024475, -0.015388489, 0.05493164, -0.05203247, 0.021530151, -0.057403564, -0.036895752, -0.014389038, 0.053497314, 0.0071144104, -0.021026611, 0.028625488, 0.09918213, -0.024810791, -0.007286072, -0.04626465, 0.008995056, 0.011306763, 0.01828003, 0.034423828, 0.003583908, -0.05718994, 0.035186768, -0.01638794, 0.029830933, 0.027313232, -0.0018310547, -0.015289307, 0.02166748, 0.0047187805, 0.010055542, 0.026382446, -0.017852783, -0.014137268, 0.004837036, -0.038238525, 0.0039253235, -0.046569824, -0.038116455, 0.06112671, 0.02696228, -0.05569458, -0.04336548, -0.0836792, 0.037384033, -0.0010051727, 0.026489258, -0.020904541, -0.007221222, 0.018814087, 0.0036392212, 0.07354736, 0.01878357, 0.060546875, 0.03314209, -0.031799316, 0.0071868896, 0.011764526, 0.005001068, 0.030654907, -0.042388916, -0.031021118, -0.052368164, 0.009010315, -0.019683838, 0.015319824, -0.026947021, -0.010787964, 0.0017786026, 0.029418945, 0.015007019, 0.043273926, -0.004508972, -0.009017944, -0.0048713684, 0.0010099411, -0.013542175, 0.002773285, 0.015281677, 0.04812622, 0.0036754608, 0.006717682, 0.014122009, -0.0035877228, 0.015731812, -0.0033397675, 0.016220093, -0.021972656, 0.010635376, 0.013687134, -0.029647827, 0.030792236, 0.044769287, 0.0072402954, -0.054534912, -0.06964111, 0.018615723, 0.006801605, 0.037322998, 0.009742737, -0.056549072, 0.02330017, -0.024734497, 0.023483276, -0.057525635, -0.027542114, -0.003955841, 0.000875473, 0.016113281, -0.00774765, -0.029220581, 0.0065231323, -0.006439209, -0.004650116, 0.026565552, 0.08325195, 0.007358551, -0.060638428, 0.015335083, 0.028625488, -0.028869629, 0.015533447, -0.02583313, 0.0074653625, 0.052124023, -0.0340271, -0.03753662, -0.034210205, 0.076171875, -0.011039734, 0.0052757263, -0.032196045, 0.007549286, -0.0077590942, 0.012588501, 0.02015686, 0.020950317, 1.692772e-05, 0.03491211, -0.056518555, 0.03579712, 0.013175964, -0.05557251, 0.01008606, -0.0026512146, -0.035888672, 0.008087158, 0.015625, -0.016433716, 0.00945282, -0.0061836243, -0.0010852814, 0.01033783, 0.002609253, 0.03579712, 0.021255493, -0.022079468, -0.016281128, 0.021911621, -0.060424805, -0.025863647, 0.021972656, -0.026565552, -0.0019483566, 0.028015137, -0.021697998, 0.06756592, -0.004306793, 0.04284668, 0.012741089, -0.0014915466, 0.013557434, -0.028564453, 0.011978149, 0.019302368, -0.0001629591, 0.03656006, 0.004310608, 0.093933105, 0.09039307, 0.009506226, 0.039215088, 0.068237305, 0.010345459, -0.03778076, -0.0126571655, 0.01171875, -0.024536133, -0.03414917, 0.007572174, 0.036499023, 0.043121338, 0.011817932, -0.0035476685, -0.021392822, 0.03564453, 0.056549072, 0.031555176, 0.0062408447, 0.010940552, -0.027389526, 0.027938843, -0.0041770935, 0.011734009, -0.00687027, 0.03277588, -0.0069274902, 0.052246094, 0.025436401, 0.008399963, 0.030670166, 3.71933e-05, 0.03930664, 0.023208618, -0.029876709, -0.012870789, 0.02809143, 0.041534424, -0.0073928833, -0.06402588, -0.03173828, -0.008644104, -0.01802063, 0.0501709, 0.0027484894, -0.05303955, 0.022872925, 0.015563965, -0.026657104, 0.001209259, 0.03652954, -0.008621216, -0.006290436, 0.036102295, 0.0026359558, 0.0037574768, 0.027542114, -0.005432129, -0.01474762, 0.007965088, 0.0013532639, -0.041412354, 0.10821533, 0.038879395, -0.008712769, -0.0043754578, 0.041381836, 0.004348755, -0.058563232, 0.017364502, 0.0007185936, -0.0284729, 0.010925293, 0.02633667, 0.01146698, -0.023773193, 0.012916565, 0.04208374, 0.033294678, 0.0023422241, 0.05178833, -0.0012331009, 0.019958496, 0.062072754, 0.012886047, 0.0029411316, 0.006427765, -0.007106781, -0.054656982, -0.023773193, -0.015686035, 0.02961731, -0.028320312, -0.010612488, -0.02859497, -0.001115799, -0.04244995, -0.056365967, -0.035736084, 0.009994507, -0.01838684, 0.01864624, 0.0132751465, 0.027679443, -0.0054397583, -0.010940552, 0.015556335, -0.039093018, -0.013847351, -0.0035991669, -0.026260376, -0.022491455, 0.03515625, 0.01574707, -0.0032787323, 0.0038986206, 0.0058937073, -0.042053223, -0.0027008057, -0.018508911, 0.006515503, -0.00011456013, -0.010391235, -0.051818848, -0.027923584, -0.082092285, 0.01902771, -0.012367249, -0.03186035, 0.012542725, 0.02078247, -0.02760315, -0.011329651, -0.029296875, -0.028915405, -0.00030755997, 0.024139404, -0.018035889, -0.06793213, -0.016159058, -0.04647827, 0.017196655, 0.028793335, -0.05343628, -0.021316528, -0.0107040405, -0.019638062, 0.018463135, -0.045166016, 0.032470703, 0.027160645, 0.0013532639, 0.011177063, 0.033966064, 0.014846802, -0.008628845, 0.008743286, 0.036132812, -0.037994385, -0.013763428, 0.011581421, 0.017623901, -0.033233643, 0.009666443, -0.042022705, -0.0001707077, -0.096069336, 0.006755829, -0.00030255318, -0.044281006, -0.0021476746, -0.041229248, -0.07299805, -0.043792725, 0.017196655, 0.07104492, -0.014457703, -0.025878906, -0.030548096, -0.0059051514, 0.0028266907, 0.018829346, 0.024749756, -0.0026569366, -0.019515991, -0.01675415, 0.04168701, -0.033691406, 0.012641907, 0.014587402, -0.04559326, 0.056671143, -0.05154419, 0.016433716, -0.024765015, 0.029708862, -0.010772705, 0.0032730103, -0.05142212, -0.033569336, 0.015266418, 0.048980713, 0.020370483, 0.018859863, 0.02142334, 0.007434845, 0.01890564, -0.023590088, -0.011390686, 0.06097412, 0.0013637543, 0.00018620491, -0.05770874, -0.017532349, 0.02331543, -0.041625977, 0.033050537, -0.011383057, 0.062316895, 0.016052246, -0.011245728, 0.09240723, 0.017593384, 0.05630493, 0.011657715, -0.014770508, -0.016479492, -0.050598145, 0.041809082, 0.020385742, -0.012481689, -0.00982666, 0.02041626, 0.04019165, 0.01272583, -0.015106201, 0.022003174, 0.018478394, 0.009063721, -0.019180298, -0.009429932, -0.0021133423, 0.021011353, -0.03466797, 0.032104492, -0.015777588, -0.0234375, -0.0018262863, -0.076293945, 0.09197998, 0.07672119, -0.024871826, 0.07745361, 0.049102783, -0.011054993, 0.033203125, 0.034240723, -0.008911133, 0.0042686462, 0.041625977, -0.035339355, 0.0037136078, 0.0053482056, -0.050750732, 0.030288696, 0.0065727234, -0.027740479, 0.02520752, 0.01701355, -0.0368042, -0.016067505, -0.00015878677, 0.010795593, -0.010643005, 0.02229309, -0.0033893585, -0.00806427, -0.028335571, -0.014823914, 0.0158844, -0.025909424, -0.037841797, 0.032318115, -0.025772095, -0.020431519, 0.010772705, 0.004306793, -0.0052719116, -0.0042419434, 0.056762695, -0.016174316, 0.010093689, -0.049743652, 0.0028743744, -0.0012378693, 0.044403076, 0.012214661, -0.00028967857, 0.018875122, -0.011917114, 0.018554688, -0.009780884, 0.020584106, 0.0054893494, -0.051452637, -0.057891846, 0.0146102905, 0.027740479, -0.0025959015, -0.06347656, -0.0038547516, -0.017929077, -0.01222229, -0.012496948, -0.015457153, -0.021911621, -0.0010385513, 0.018203735, -0.061645508, -0.00030374527, -0.0129776, -0.010192871, -0.060668945, 0.025772095, -0.016281128, 0.0082092285, 0.022109985, 0.03363037, -0.058624268, -0.012481689, -0.017791748, -0.02709961, 0.06365967, 0.011894226, 0.04434204, -0.029006958, 0.004962921, -0.0071907043, 0.10424805, -0.0012359619, 0.029907227, -0.05895996, -0.020401001, -0.003414154, 0.01776123, 0.035369873, -0.022750854, 0.034423828, -0.014533997, -0.00737381, -0.065979004, -0.027450562, 0.061431885, -0.063964844, -0.04925537, -0.019897461, 0.074523926, -0.004283905, 0.020324707, 0.0016288757, -0.009536743, 0.00818634, -0.019165039, -0.07476807, -0.02003479, -0.0060539246, -0.010040283, -0.004886627, -0.009170532, -0.009651184, 0.014770508, 0.02558899, 0.03100586, -0.031677246, -0.019073486, 0.0016222, 0.0115356445, -0.021530151, -0.013534546, 0.014122009, -0.022872925, 0.021026611, -0.059814453, 0.06222534, 0.07312012, 0.01727295, 0.019165039, 0.02659607, 0.0020389557, -0.046447754, 0.008735657, -0.025619507, -0.03817749, -0.0036125183, -0.0090789795, 0.019882202, 0.014457703, -0.0013856888, -0.0066223145, 0.017288208, 0.033721924, -0.035003662, 0.016189575, -0.005519867, 0.039154053, 0.035888672, -0.0061798096, 0.029388428, -0.024368286, 0.013023376, 0.030807495, -0.005004883, -0.007972717, -0.024932861, -0.0047836304, -0.0284729, 0.018798828, 0.011062622, -0.05960083, 0.03842163, 0.028366089, -0.010734558, -0.030136108, 0.01424408, -0.008087158, 0.016204834, 0.025238037, 0.07623291, 0.0003721714, 0.04534912, 0.036193848, -0.027297974, -0.020355225, 0.039123535, -0.04751587, 0.044006348, 0.02822876, -0.06738281, -0.0008249283, 0.019042969, -0.0051841736, -0.023910522, 0.07312012, -0.016815186, -0.019012451, -0.020233154, 0.0065345764, 0.046569824, 0.064331055, -0.031799316, -0.023788452, 0.039764404, -0.024429321, -0.01625061, 0.0034046173, 0.030319214, -0.03668213, -0.0041275024, -0.0032901764, -0.014152527, -0.019699097, -0.013946533, -0.028427124, -0.0074691772, 0.03591919, -0.03250122, 0.011222839, -0.007286072, -0.03765869, -0.042999268, -0.030929565, 0.018875122, 0.0067596436, 0.013786316, -0.0053863525, -0.0014781952, 0.013084412, 0.0027503967, -0.007843018, 0.00655365, -0.00217247, -0.03387451, -0.05596924, 0.015014648, -0.030303955, 0.011627197, -0.02859497, 0.014175415, 0.041900635, -0.030288696, 0.014190674, 0.03778076, -0.045074463, -0.009117126, 0.009986877, 0.02420044, -0.01852417, -0.007232666, 0.063964844, -0.04107666, -0.02758789, -0.06149292, 0.046203613, -0.01386261, -0.014373779, 0.03805542, 0.061309814, -0.015182495, 0.051116943, -0.0024204254, -0.050445557, 0.014656067, 0.0099105835, -0.057037354, -0.054840088, -0.0357666, -0.021102905, -0.007949829, -0.031921387, -0.009895325, 0.06439209, 0.025436401, -0.04083252, -0.036712646, -0.0345459, 0.019363403, -0.050994873, 0.00041890144, -0.010253906, 0.009674072, 0.0026760101, 0.0047073364, -0.047607422, -0.0076293945, 0.03503418, 0.038726807, 0.0054359436, -0.028335571, 0.019470215, 0.07373047, -0.03149414, 0.07092285, -0.022369385, 0.0020008087, 0.00030326843, 0.07904053, 0.007843018, 0.05709839, -0.07739258, -0.048675537, -0.03967285, 0.03765869, 0.04437256, 0.04510498, -0.039489746, 0.0051956177, 0.057159424, 0.027389526, 0.023498535, 0.014305115, 0.028213501, -0.042877197, -0.07104492, 0.009803772, -0.019515991, -0.06048584, -0.015220642, -0.046844482, 0.007297516, 0.017608643, -0.006801605, 0.020324707, -0.019515991, 0.05291748, 0.010932922, -0.0289917, 0.018096924, 0.00075674057, 0.009529114, -0.018676758, -0.055511475, 0.01876831, 0.017288208, 0.022109985, -0.023956299, 0.017532349, -0.03125, 0.007419586, -0.011497498, 0.072509766, -0.03652954, 0.029510498, 0.023117065, -0.070495605, -0.0009870529, 0.0118255615, 0.0021705627, -0.0004439354, -0.051818848, -0.01751709, -0.0073623657, 0.005874634, -0.0027713776, 0.03488159, 0.019561768, 0.012481689, 0.01576233, -0.0061569214, -0.0015296936, -0.015960693, 0.05508423, -0.0044784546, -0.0061416626, -0.031677246, -0.04925537, 0.025894165, 0.028778076, 0.010368347, 0.030334473, -0.028320312, 0.02079773, -0.006175995, 0.014373779, -0.040374756, -0.030014038, 0.020629883, 0.004878998, -0.03152466, 0.0005698204, 0.046417236, 0.025375366, 0.0178833, -0.015388489, 0.021697998, -0.046966553, 0.029418945, 0.02482605, 0.03012085, -0.02734375, -0.029647827, -0.020477295, 0.0028362274, -0.004337311, 0.040985107, -0.014076233, 0.033477783, 0.039215088, 0.033447266, 0.06384277, -0.009567261, 0.014442444, 0.023773193, 0.0021648407, -0.0005354881, 0.044952393, -0.0116119385, 5.5372715e-05, -0.0052757263, -0.010543823, 0.033233643, 0.023513794, 0.035736084, -0.005569458, 0.015792847, -0.014343262, 0.019363403, -0.013885498, -0.017578125, 0.0060195923, -0.0044021606, -0.037261963, -0.0034809113, -0.018951416, -0.025650024, 0.019439697, -0.061645508, -0.021820068, -0.012199402, -0.03390503, -0.002368927, 0.009506226, 0.023086548, -0.03829956, 0.011260986, -0.0064735413, -0.009056091, -0.0065994263, 0.0592041, -0.036987305, -0.037719727, -0.01878357, 0.02355957, -0.04324341, -0.015914917, 0.0088272095, -0.002073288, 0.0132751465, 0.0021877289, 0.045928955, 0.012931824, 0.04650879, -0.0066833496, 0.023010254, -0.03540039, -0.026168823, 0.02381897, 0.013458252, -0.008644104, -0.012825012, 0.030761719, -0.0012655258, 0.008476257, 0.03326416, 0.005706787, -0.061462402, -0.019256592, -0.031402588, -0.02684021, -0.023208618, -0.004737854, 0.012207031, 0.010971069, -0.042388916, 0.027450562, 0.011428833, 0.03390503, 0.040374756, -0.0030555725, 0.008094788, -0.041412354, -0.07019043, -0.054718018, -0.017089844, 0.057159424, 0.055389404, 0.007751465, 0.030731201, 0.010719299, -0.03793335, 0.032348633, -0.0027484894, -0.026519775, 0.02835083, 0.030654907, 0.004512787, 0.020202637, -0.023635864, 0.039245605, -0.005264282, -0.04421997, 0.018936157, 0.037506104, -0.05239868, -0.051727295, -0.015586853, 0.005168915, -0.037139893, -0.04486084, -0.036834717, -0.00073957443, -0.0074653625, 0.029785156, -0.012939453, 0.009056091, -0.011878967, 0.023468018, -0.020889282, 0.023101807, 0.01197052, 0.036956787, -0.020858765, 0.03048706, 0.017501831, -0.002588272, -0.019241333, -0.092285156, -0.0552063, 0.04196167, 0.010681152, -0.011116028, 0.04248047, -0.02545166, 0.014427185, 0.03186035, 0.009780884, -0.010444641, 0.011352539, 0.012886047, -0.00031995773, 0.0064849854]}, "B077JTCMKQ": {"id": "B077JTCMKQ", "original": "Brand: Weber\nName: Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates\n529 Square inches of cooking space over three burners. Left Table down width - 42 inches\n30, 000 BTU-per-hour input main burners with fuel gauge\nOpen cart design with six tool hooks and two large wheels.Built-in lid thermometer\n", "metadata": {"Name": "Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black", "Brand": "Weber", "Description": "", "Features": "Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates\n529 Square inches of cooking space over three burners. Left Table down width - 42 inches\n30, 000 BTU-per-hour input main burners with fuel gauge\nOpen cart design with six tool hooks and two large wheels.Built-in lid thermometer", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017745972, 0.0020446777, -0.04815674, -0.008056641, -0.017669678, -0.008613586, -0.033081055, 0.0072517395, -0.0053863525, 0.023498535, -0.030303955, 0.013694763, 0.021896362, -0.03717041, 0.018829346, 0.0031147003, 0.030227661, 0.02859497, 0.028945923, -0.0181427, 0.012084961, -0.0029640198, 0.006690979, 0.08648682, 0.06359863, -0.078308105, 0.008773804, -0.0009121895, 0.038116455, 0.007534027, 0.038482666, -0.0039749146, 0.028808594, 0.014671326, -0.039276123, -0.04824829, 0.018234253, -0.008934021, -0.010261536, 0.011810303, 0.03253174, -0.006904602, 0.01751709, 0.01838684, -0.01184845, -0.04421997, 0.046783447, -0.023834229, 0.030639648, 0.033050537, -0.02607727, 0.036834717, -0.031341553, 0.008796692, -0.00844574, -0.021896362, 0.06817627, -0.0569458, 0.0059814453, -0.0058898926, -0.0075531006, 0.028305054, 0.015205383, -0.006526947, -0.0256958, 0.044281006, 0.10192871, -0.035705566, 0.040802002, -0.026062012, -0.020523071, 0.028060913, 0.03567505, 0.03164673, -0.0076408386, -0.046447754, 0.0017375946, -0.012687683, 0.060791016, 0.012794495, 0.012077332, -0.0058517456, -0.012649536, 0.02357483, 0.009094238, 0.032409668, -0.017623901, -0.020568848, 0.0118637085, -0.03656006, 0.0008659363, -0.025863647, -0.021499634, 0.04269409, 0.0017213821, -0.040527344, -0.04144287, -0.07751465, 0.039611816, -0.002872467, 0.045440674, -0.0368042, 0.022018433, 0.014541626, -0.00983429, 0.030014038, -0.0069007874, 0.01625061, 0.02772522, 0.008079529, -0.008148193, -0.017044067, 0.0047912598, 0.0020771027, -0.042755127, 0.013214111, -0.010932922, -0.009643555, 0.0069503784, 0.0101623535, -0.023040771, -0.009559631, 0.016693115, 0.017120361, 0.023529053, 0.03314209, -0.006969452, -0.00983429, -0.020843506, -0.00843811, -0.018447876, 0.028701782, 0.046295166, 0.046539307, -0.0038986206, 0.0135650635, 0.011886597, -0.01058197, 0.010627747, -0.027511597, 0.010124207, -0.0006117821, 0.008636475, 0.006187439, 0.0098724365, 0.037475586, 0.031066895, -0.013923645, -0.012107849, -0.04333496, -0.002571106, -0.009414673, 0.023162842, 0.018798828, -0.06866455, 0.017654419, -0.029418945, 0.00868988, -0.040222168, -0.032470703, -0.020462036, -0.011482239, 0.010871887, -0.00793457, -0.040252686, 0.017974854, 0.010475159, 0.0051345825, 0.021377563, 0.052886963, 0.014854431, -0.031051636, 0.03302002, 0.01826477, -0.01928711, 0.0088272095, -0.03479004, 0.006084442, 0.042053223, -0.03564453, -0.049560547, -0.052642822, 0.04486084, -0.00762558, 0.002090454, -0.00040769577, 0.027542114, -0.025527954, -0.000364542, 0.0028209686, 0.049346924, 0.04699707, -0.0007510185, -0.016921997, 0.028244019, 0.024246216, -0.07019043, 0.011100769, -0.010276794, -0.03579712, 0.020050049, 0.019577026, -0.013183594, 0.0058631897, 0.0076828003, -0.021957397, 0.018859863, 0.0034656525, -0.0070762634, 0.008003235, -0.0042877197, -0.028839111, 0.024337769, -0.045410156, -0.012191772, 0.02281189, -0.014137268, -0.00497818, 0.033935547, -0.004749298, 0.056274414, 0.016815186, 0.018966675, 0.0043678284, 0.021224976, 0.002401352, -0.009719849, 0.011169434, 0.04864502, 0.004360199, 0.015899658, -0.015007019, 0.111083984, 0.11383057, 0.01586914, 0.026473999, 0.07446289, 0.004009247, -0.020736694, -0.022232056, -0.008140564, -0.054901123, -0.07897949, -0.010734558, -0.052001953, 0.010276794, 0.010154724, 0.00623703, -0.019577026, -0.0009598732, 0.033935547, 0.009811401, 0.03237915, 0.019241333, -0.021591187, 0.028320312, 0.0044441223, -0.017211914, 0.0009589195, 0.048675537, -0.01626587, 0.056762695, 0.028884888, 0.005207062, 0.05480957, -0.000895977, 0.048614502, 0.027664185, -0.044708252, -0.013748169, 0.026306152, 0.05126953, -0.006099701, -0.028442383, -0.0473938, 0.020690918, -0.018203735, 0.028411865, 0.0031166077, -0.030334473, 0.019561768, 0.009277344, -0.0014352798, -0.006385803, 0.06958008, 0.007858276, -0.01360321, -0.030731201, 0.009529114, 0.005744934, 0.044067383, -0.033111572, -0.026870728, 0.0010919571, 0.007083893, -0.04257202, 0.109436035, 0.004600525, -0.00957489, -0.011947632, 0.043792725, 0.015991211, -0.036193848, -0.005622864, 0.0016994476, -0.039978027, 0.014678955, 0.020446777, 0.0062294006, -0.057128906, 0.06048584, 0.06726074, 0.023269653, -0.01890564, 0.030929565, 0.013847351, 0.0022563934, 0.046447754, 0.039123535, 0.03012085, -0.018753052, -0.016921997, -0.046905518, -0.018066406, -0.006980896, 0.0357666, -0.01939392, -0.00059223175, -0.038635254, -0.021499634, -0.037719727, -0.07763672, -0.025314331, -0.0063705444, -0.002948761, 0.018249512, 0.008834839, -0.00029110909, -0.007789612, -0.027526855, 0.023101807, -0.027557373, -0.009773254, 0.006591797, -0.03036499, -0.04763794, 0.00919342, 0.005203247, 0.00356102, -0.0060806274, 0.019119263, -0.008155823, -0.0006837845, -0.019119263, 0.004550934, -0.049987793, -0.020111084, -0.03225708, -0.04953003, -0.06640625, -0.01008606, -0.008216858, -0.060791016, -0.012687683, 0.070373535, -0.026809692, -0.03466797, -0.03289795, -0.027664185, -9.453297e-05, 0.0019683838, -0.0050239563, -0.04159546, -0.027145386, -0.03463745, 0.021026611, 0.045288086, -0.04156494, 0.010398865, 0.017944336, -0.01007843, 0.018814087, -0.03253174, 0.0019292831, 0.023544312, 0.005470276, 0.031707764, 0.028182983, 0.03665161, -0.016082764, 0.012084961, 0.027160645, -0.017868042, -0.012001038, 0.023361206, -0.014320374, -0.00056886673, 0.03111267, -0.04663086, -0.0057754517, -0.10723877, 0.0132369995, 0.007789612, -0.047698975, -0.024383545, -0.06536865, -0.09289551, -0.04336548, 0.0057411194, 0.044555664, -0.0031280518, -0.008384705, -0.018661499, 0.008476257, -0.0016126633, -0.005138397, -0.008476257, -0.017623901, 0.022628784, 0.008834839, 0.03253174, -0.06890869, 0.015182495, 0.026306152, -0.041900635, 0.037902832, -0.03591919, 0.035614014, -0.021972656, 0.015701294, -0.001241684, -0.0006389618, -0.017623901, 0.0011825562, 0.0211792, 0.045684814, 0.002866745, -0.004814148, 0.014480591, -0.024276733, -0.028701782, -0.009635925, -0.007896423, 0.05734253, 0.020935059, -0.03466797, -0.03845215, -0.060668945, 0.007904053, -0.021316528, 0.015335083, -0.0053710938, 0.0006046295, 0.012832642, -0.030380249, 0.09484863, 0.019729614, 0.058776855, 0.0048103333, -0.036468506, -0.02281189, -0.056854248, 0.027511597, 0.0020065308, -0.022827148, -0.0051574707, 0.035583496, 0.029022217, -0.0039482117, -0.0024223328, 0.009979248, 0.016845703, -0.011520386, -0.023773193, -0.0074310303, -0.038024902, 0.057281494, 0.005771637, 0.016357422, -0.07543945, -0.0065460205, -0.015197754, -0.051635742, 0.0871582, 0.062316895, -0.02255249, 0.06262207, 0.076538086, -0.026184082, 0.04083252, 0.038909912, -0.0073928833, 0.0046920776, 0.05331421, -0.047058105, 0.007610321, 0.011245728, -0.06695557, 0.015159607, 0.0008430481, -0.030685425, 0.017364502, -0.0209198, -0.029129028, -0.027801514, 0.007587433, 0.00440979, 0.012802124, 0.01802063, -0.022399902, -0.0076293945, -0.028900146, -0.0024871826, 0.032409668, -0.043548584, -0.040283203, -0.011802673, -0.0050697327, -0.05633545, 0.010421753, 0.002193451, -0.01725769, 0.012306213, 0.054870605, -0.022155762, 0.014709473, -0.026504517, -0.022521973, -0.010948181, 0.008583069, 0.0049934387, 0.00013875961, -0.022415161, -0.012130737, 0.04321289, 0.010192871, -0.0005335808, -0.00012350082, -0.07342529, -0.041259766, -0.030197144, -0.0118255615, 0.020446777, -0.035980225, -0.017745972, -0.042236328, -0.02746582, -0.023605347, -0.044555664, -0.05065918, 0.029846191, 0.05142212, -0.05734253, 0.021942139, -0.01939392, -0.044647217, -0.08770752, 0.03982544, -0.008804321, 0.011878967, 0.02331543, 0.02772522, -0.045684814, -0.013786316, -0.030349731, -0.011520386, 0.0368042, -0.013366699, 0.068481445, -0.03036499, 0.019683838, -0.016616821, 0.08502197, 0.0025939941, 0.026672363, -0.05984497, -0.01499176, -0.0023040771, 0.03253174, 0.020309448, 0.012031555, 0.0013713837, -0.020095825, -0.043792725, -0.06982422, 0.011764526, 0.030151367, -0.009925842, -0.04119873, 0.004020691, 0.059173584, -0.013801575, 0.024520874, 0.0003771782, -0.014587402, -0.015853882, 0.012077332, -0.052093506, -0.007797241, -0.0066986084, -0.023452759, 0.011375427, -0.007156372, -0.011543274, 0.023925781, 0.04901123, 0.008773804, 0.00076913834, 0.00983429, 0.013168335, 0.0002770424, -0.00082826614, -0.063964844, 0.022033691, -0.04916382, 0.00869751, -0.08331299, 0.07836914, 0.01625061, 0.022109985, 0.0107421875, 0.0024147034, 0.0066833496, -0.0715332, -0.001824379, 0.0005970001, -0.022216797, -0.01576233, -0.025665283, -0.010101318, -0.018035889, -0.015541077, 0.018814087, 0.005443573, 0.044433594, -0.032592773, 0.017211914, -0.00033330917, -0.010879517, 0.02217102, -0.009292603, 0.0070610046, -0.03656006, -0.0032081604, 0.0115356445, -0.029312134, -0.026947021, -0.012062073, 0.005809784, -0.0029315948, 0.009307861, 0.011726379, -0.028381348, 0.0109939575, 0.017303467, 0.019317627, -0.0047340393, 0.0063934326, 0.011604309, -0.009437561, -0.0069465637, 0.04397583, -0.029922485, 0.016296387, 0.033691406, -0.009307861, -0.030563354, 0.024810791, -0.037078857, 0.04373169, 0.013916016, -0.04824829, 0.04812622, -0.002904892, -0.0033988953, -0.06964111, 0.11047363, -0.028686523, 0.023971558, -0.09082031, 0.014907837, 0.05633545, 0.048950195, -0.009056091, -0.035858154, 0.05142212, -0.015617371, -0.023895264, -0.0022640228, 0.04458618, -0.05987549, -0.013168335, 0.00447464, 0.0005378723, -0.021102905, 0.006290436, -0.04147339, -0.010803223, 0.018753052, -0.007358551, 0.008163452, -0.009124756, -0.0345459, -0.064941406, -0.018218994, 0.013412476, -0.010986328, 0.011756897, -0.018218994, -0.008644104, 0.008895874, 0.0005955696, 0.025756836, 0.008575439, -0.009880066, -0.03527832, -0.026641846, 0.0031414032, -0.03665161, 0.02671814, -0.018630981, -0.01222229, 0.0037956238, -0.003501892, 0.012680054, 0.0069122314, -0.040405273, 0.011169434, -0.012802124, -0.0065193176, -0.037017822, -0.04345703, 0.07965088, -0.05532837, -0.0635376, -0.037475586, 0.039398193, -0.018844604, -0.030136108, 0.07330322, 0.04220581, 0.0011949539, 0.03717041, -0.0035095215, -0.022155762, -0.008262634, 0.019134521, -0.04562378, -0.06365967, -0.025741577, -0.00045514107, -0.031707764, -0.015220642, 0.008399963, 0.039245605, 0.022323608, -0.009849548, -0.007663727, -0.0010128021, -0.0036811829, -0.030090332, 0.002565384, 0.0032310486, 0.032806396, -0.006046295, 0.0335083, -0.035827637, -0.0035076141, 0.015838623, 0.040283203, 0.022140503, -0.030715942, 0.007987976, 0.051452637, -0.022399902, 0.070007324, -0.024017334, 0.00038313866, -0.008171082, 0.062927246, 0.01928711, 0.05392456, -0.06100464, -0.037719727, -0.046936035, 0.029724121, 0.039764404, 0.06378174, -0.043304443, 0.029129028, 0.039611816, 0.018035889, 0.042510986, 0.022094727, 0.038116455, 0.009552002, -0.017196655, 0.003200531, -0.0062332153, -0.023391724, -0.025009155, -0.058380127, -0.021606445, 0.004501343, -0.0029010773, 0.05026245, -0.051818848, 0.03665161, 0.042510986, -0.024261475, 0.028549194, 0.0037631989, -0.013389587, 0.025009155, -0.04257202, 0.059265137, 0.029006958, 0.0061569214, 0.016815186, -0.011909485, -0.01940918, 0.026428223, -0.016448975, 0.04827881, -0.030883789, 0.047790527, -0.00014209747, -0.06008911, -0.0022907257, 0.021057129, 0.014785767, 0.020629883, -0.0803833, -0.028121948, -0.012718201, -0.006385803, 0.014457703, -0.0063209534, 0.04925537, 0.017532349, 0.026824951, 0.0040779114, 0.00077438354, 0.0017251968, 0.041992188, 0.0013904572, 0.003572464, -0.0234375, -0.029342651, 0.06390381, 0.0067634583, 0.021224976, 0.064941406, -0.044433594, 0.011260986, -0.002943039, 0.024108887, -0.035980225, -0.04425049, 0.0040130615, 0.031463623, -0.025054932, -0.012001038, -0.009841919, 0.015045166, 0.024917603, -0.053344727, 0.017990112, -0.05883789, 0.03363037, 0.032165527, 0.06323242, -0.031341553, -0.029449463, -0.026535034, 0.0029277802, -0.015563965, 0.0513916, -0.007331848, 0.023162842, 0.03366089, 0.049346924, 0.05709839, -0.0065078735, 0.02003479, 0.010108948, -0.019729614, 0.029663086, -0.012863159, -0.01838684, -0.00491333, 0.016494751, 0.012008667, 0.03656006, -0.0009422302, 0.027740479, 0.0146484375, -0.0017728806, 0.0033664703, -0.023849487, 0.029708862, -0.017669678, 0.027664185, -0.012718201, -0.0030174255, -0.00089883804, -0.014793396, -0.043182373, 0.0049972534, -0.036132812, -0.0039863586, -0.005290985, -0.03930664, -0.029312134, 0.006298065, 0.05291748, -0.0541687, -0.0107421875, -0.013038635, 0.022735596, 0.0011291504, 0.022155762, -0.0017814636, -0.02192688, -0.0068206787, 0.013679504, -0.0013465881, -0.029373169, -0.017349243, 0.00340271, 0.012168884, -0.015510559, 0.0064964294, 0.058135986, 0.014266968, -0.010261536, 0.013542175, -0.017166138, -0.029525757, 0.047210693, 0.014816284, -0.00056934357, 0.0045394897, 0.030792236, -0.027893066, 0.021591187, -0.012542725, 0.016342163, -0.036499023, 0.0051994324, -0.014419556, -0.060028076, 0.003835678, -0.0030937195, 0.006362915, 0.0040283203, -0.057434082, 0.023605347, -0.006717682, 0.02255249, 0.015777588, -0.012168884, 0.034606934, -0.03665161, -0.03414917, -0.068359375, -0.014076233, 0.05343628, 0.047454834, 0.008346558, 0.029083252, 0.00472641, -0.036376953, 0.010314941, -0.011062622, -0.010063171, -0.015625, 0.0050086975, -0.010406494, -0.03074646, 0.0062026978, 0.004322052, -0.011070251, -0.018539429, 0.0105896, 0.00920105, -0.026794434, -0.012672424, -0.036254883, 0.0071868896, -0.026412964, -0.051849365, -0.030380249, -0.041809082, -0.010643005, 0.011878967, -0.024490356, 0.01776123, 0.0024318695, -0.0065574646, -0.025024414, 0.01108551, 0.011291504, 0.024551392, -0.018707275, 0.021392822, 0.013580322, 0.03768921, -0.00970459, -0.09106445, -0.029144287, 0.028060913, 0.008415222, -0.011329651, 0.057373047, -0.066101074, 0.018737793, 0.003501892, -0.008865356, 0.0055160522, -0.004875183, -0.01335144, -0.02494812, 0.009185791]}, "B004H4WWA6": {"id": "B004H4WWA6", "original": "Brand: Cuisinart\nName: Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red\nDescription: \nFeatures: Portable gas grill with 145-square-inch grilling area and foldaway legs\nCooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish\nPowerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate\nAluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure\nPronounced briefcase-style carrying handle; weighs 13.5 pounds\n", "metadata": {"Name": "Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red", "Brand": "Cuisinart", "Description": "", "Features": "Portable gas grill with 145-square-inch grilling area and foldaway legs\nCooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish\nPowerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate\nAluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure\nPronounced briefcase-style carrying handle; weighs 13.5 pounds", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.064941406, 0.0131073, -0.016189575, 0.029434204, -0.02468872, 0.002796173, -0.04559326, -0.035339355, -0.0395813, 0.009056091, 0.00081539154, 0.035858154, -0.016937256, -0.04296875, 0.026870728, -0.025222778, 0.017700195, 0.010246277, -0.011047363, -0.013015747, -0.007156372, 0.005508423, -0.05239868, 0.080566406, 0.0385437, -0.048034668, -0.03933716, -0.0065727234, 0.021713257, 0.0031471252, 0.023254395, 0.012062073, 0.03427124, 0.01234436, -0.028549194, 0.0020103455, 0.004009247, 0.002105713, -0.01399231, 0.010238647, -0.01763916, 0.011749268, -0.005443573, 0.017730713, -0.026321411, -0.031219482, 0.0031871796, -0.012466431, 0.007972717, -0.021133423, -0.001288414, 0.007411957, 0.009407043, -0.029159546, -0.008934021, -0.013839722, 0.0019311905, -0.026245117, 0.023391724, -0.03765869, -0.025253296, -0.02619934, 0.042419434, 0.007221222, -0.037078857, -0.032104492, 0.034484863, -0.0020484924, -0.0017747879, -0.06100464, 0.021209717, 0.038116455, 0.0038414001, -0.001288414, -0.027557373, -0.03692627, 0.04626465, -0.05050659, 0.0013513565, 0.013587952, -0.03125, 0.056732178, -0.027160645, -0.012588501, -0.021972656, -0.0065612793, -0.03677368, -0.016555786, -0.009742737, -0.021957397, -0.005256653, -0.007019043, -0.08886719, 0.046783447, 0.045806885, -0.03616333, -0.0154953, -0.051940918, 0.003118515, 0.0046691895, 0.03579712, -0.044158936, 0.045928955, 0.008125305, -0.017166138, 0.045013428, 0.008071899, 0.051849365, 0.026748657, 0.006542206, 0.00806427, -0.03945923, 0.030731201, -0.013458252, -0.018814087, 0.0019083023, 0.02192688, 0.0025787354, 0.0049057007, 0.0039482117, -0.028839111, 0.009147644, -0.04437256, 0.024749756, 0.06854248, 0.050964355, 0.034332275, 0.009536743, -0.08782959, 0.048675537, -0.037841797, 0.026672363, 0.081726074, 0.023773193, -0.019546509, -0.02532959, 0.02418518, -0.0074806213, 0.018356323, -0.019836426, 0.025009155, -0.0016298294, -0.0039711, 0.017944336, -0.039733887, 0.005710602, 0.045043945, 0.017959595, -0.06317139, -0.049072266, 0.024246216, 0.0040893555, 0.033691406, 0.040863037, -0.07977295, 0.015838623, -0.042266846, 0.0068130493, -0.019485474, -0.045928955, -0.036376953, -0.033477783, 0.02017212, -0.04724121, -0.054382324, 0.04559326, -0.007205963, 0.000104010105, 0.011405945, 0.074401855, -0.0063476562, -0.00038027763, 0.001420021, 0.036010742, 0.0035858154, 0.006919861, -0.0008420944, 0.018737793, 0.035827637, -0.03451538, -0.046417236, -0.043792725, 0.099731445, -0.045135498, -0.006198883, -0.046203613, 0.009880066, -0.022949219, 0.029525757, 0.016677856, 0.016571045, -0.007911682, 0.02130127, 0.010375977, 0.002084732, -0.030044556, -0.01663208, 0.011817932, -0.015541077, -0.023849487, 0.029907227, 0.0211792, -0.032928467, 0.00075626373, -0.042236328, -0.021728516, -0.0018968582, 0.012611389, 0.026870728, 0.008346558, -0.020339966, -0.01687622, 0.010864258, -0.047851562, -0.029754639, 0.030197144, -0.024230957, 0.016616821, 0.0033245087, -0.01373291, 0.03527832, 0.0027656555, 0.040649414, 0.03781128, 0.038330078, 0.02079773, -0.014724731, 0.009796143, 0.041748047, 0.0127334595, -0.025222778, 0.02394104, 0.06866455, 0.017349243, -0.02961731, 0.052520752, 0.091430664, 0.051696777, -0.050476074, -0.008842468, 0.006034851, -0.055633545, -0.0340271, 0.015960693, 0.05026245, 0.013336182, -0.0074691772, 0.0116119385, -0.0059432983, 0.04006958, 0.026351929, 0.0019989014, 0.018249512, 0.06555176, -0.039916992, 0.030929565, -0.00016319752, 0.032806396, -0.002298355, -0.0013456345, 0.004096985, 0.08135986, 0.015365601, 0.030822754, 0.0013132095, 0.031799316, 0.014183044, 0.023468018, -0.046142578, 0.019638062, 0.022399902, 0.026367188, -0.009178162, -0.027893066, -0.0049972534, 0.00059890747, -0.058776855, 0.050323486, -0.013092041, -0.033172607, 0.0063056946, -0.03564453, -0.023605347, 0.002943039, 0.04107666, 0.04385376, 0.014671326, 0.020126343, -0.05078125, -9.590387e-05, 0.027816772, -0.006664276, 0.005504608, -0.04043579, -0.008659363, -0.011039734, 0.10418701, 0.029510498, 0.0051651, -0.0036258698, 0.038146973, 0.006576538, -0.056030273, 0.024291992, -0.013763428, 0.010559082, -0.033599854, 0.020843506, 0.010398865, -0.04647827, 0.03074646, 0.028915405, 0.045043945, 0.01272583, 0.01889038, -0.00881958, -0.0234375, 0.04812622, -0.032562256, 0.0038719177, -0.017471313, -0.018295288, -0.010749817, -0.0006980896, 0.0006585121, -0.0058937073, -0.012550354, 0.011665344, -0.03201294, 0.009208679, 0.03656006, 0.010734558, -0.0060920715, 0.02558899, 0.018112183, -0.0034599304, 0.0056114197, 0.007633209, -0.012237549, -0.014129639, 0.0032997131, -0.048309326, 0.00031280518, -0.02645874, 0.017974854, -0.02960205, 0.0030212402, 0.03062439, -0.0061950684, -0.0061302185, 0.0016517639, -0.042938232, 0.003835678, -0.049682617, 0.0067214966, -0.01902771, -0.035186768, -0.04547119, -0.037353516, -0.07080078, -0.026870728, -0.014633179, -0.04937744, -0.019470215, 0.04107666, -0.0019798279, -0.03817749, -0.009986877, 0.013748169, 0.013290405, 0.043823242, 0.0124435425, -0.05291748, -0.028823853, -0.037139893, -0.042663574, 0.036590576, -0.03955078, 0.031036377, 0.015083313, -0.018157959, 0.0042915344, -0.0418396, 0.0069389343, 0.021347046, 0.00032567978, 0.032562256, 0.08642578, 0.01424408, -0.029174805, 0.013938904, 0.054901123, -0.0030078888, -0.030075073, -0.020721436, -0.0059928894, 0.026870728, -0.026855469, 0.019500732, -0.040161133, -0.07006836, 0.0064201355, -0.0074653625, -0.017288208, -0.028320312, -0.027389526, -0.0368042, -0.04638672, 0.013893127, 0.07611084, -0.02571106, -0.03112793, -0.039764404, -0.0034255981, 0.003484726, 0.01424408, 0.048461914, -0.007987976, 0.033325195, -0.036315918, 0.018554688, -0.043029785, 0.009002686, 0.02130127, -0.013191223, 0.020339966, -0.011619568, 0.0005674362, 0.0026054382, 0.019927979, -0.0019569397, -0.008613586, -0.032043457, -0.0026721954, -0.011039734, -0.0024261475, -0.007698059, -0.05557251, 0.02557373, -0.02508545, -0.028335571, -0.015571594, -0.006526947, 0.055145264, 0.0004453659, -0.0020160675, -0.048095703, -0.045043945, -0.024765015, -0.019180298, 0.03314209, 0.009155273, -0.0059661865, 0.015823364, -0.002281189, 0.045654297, -0.0041236877, 0.017440796, 0.028839111, -0.026168823, -0.028686523, -0.015853882, -0.015525818, -0.015571594, 0.010574341, -0.06488037, 0.06109619, -0.009651184, 0.011856079, 0.00819397, -0.018005371, 0.03186035, 0.036010742, -0.03152466, 0.003921509, -0.085510254, 0.029327393, 0.039916992, -0.017791748, -0.068115234, -0.06689453, 0.029067993, -0.11828613, 0.08502197, 0.024154663, -0.02468872, 0.08148193, 0.011878967, 0.009178162, 0.04623413, 0.000641346, 0.011871338, -0.010894775, 0.087890625, -0.0005302429, 0.032684326, 0.0158844, -0.048553467, 0.003189087, 0.017822266, -0.045135498, 0.010101318, 0.009048462, -0.03201294, -0.04159546, 0.0012874603, 0.017852783, -0.024719238, -0.018798828, -0.046722412, -0.004802704, -0.047027588, -0.006252289, 0.02609253, -0.028182983, 0.023086548, -0.029647827, 0.013397217, -0.03753662, -0.0052108765, 0.004207611, 0.036834717, -0.020217896, 0.049468994, 0.0181427, -0.015701294, -0.057434082, -0.024230957, 0.0059013367, 0.0126571655, 0.023635864, 0.0070610046, 0.023544312, 0.009651184, -0.011550903, -0.0181427, -0.029815674, -0.02319336, -0.029449463, -0.013687134, 0.004798889, 0.027832031, -0.008346558, -0.007408142, 0.00070858, -0.026870728, -0.015563965, -0.0016241074, 0.0054244995, -0.029144287, -0.005001068, 0.009963989, -0.087402344, -0.032165527, -0.030899048, -0.0047340393, -0.051818848, 0.04852295, -0.017105103, -0.052581787, -0.016571045, 0.027191162, -0.049224854, 0.008728027, -0.031051636, -0.0039749146, 0.041381836, 0.03186035, 0.022491455, -0.061401367, 0.039489746, 0.0053634644, 0.10461426, 0.012184143, 0.041992188, -0.030227661, -0.011657715, -0.022888184, 0.05670166, 0.06982422, -0.014389038, 0.020233154, -0.03201294, -0.031921387, -0.028045654, -0.018554688, 0.03744507, -0.0635376, -0.034851074, -0.01776123, 0.0725708, -0.019317627, 0.03970337, -0.044036865, -0.008140564, -0.015640259, -0.025299072, -0.055236816, -0.05596924, -0.002670288, -0.0105896, -0.016159058, 0.0021343231, -0.012771606, 0.038726807, -0.00920105, 0.018371582, -0.031234741, -0.023147583, -0.043701172, 0.044769287, 0.04888916, -0.021743774, 0.013786316, -0.03579712, -0.028137207, -0.03933716, 0.02368164, 0.037750244, 0.0008649826, 0.00066423416, -0.0043754578, -0.010437012, -0.028701782, 0.004348755, 0.020965576, -0.037261963, -0.0052261353, -0.027694702, 0.0061798096, -0.02178955, -0.015197754, -0.036712646, 0.0059051514, -0.0115737915, -0.046936035, 0.0072517395, -0.006084442, 0.0423584, -0.040374756, -0.011749268, 0.016693115, -0.027114868, -0.013900757, 0.014175415, -0.049041748, -0.04159546, -0.016235352, 0.010620117, 0.006340027, -0.0019407272, -0.0049209595, -0.08886719, -0.008239746, 0.076293945, -0.031204224, 0.0014705658, -0.012466431, 0.057769775, -0.016067505, -0.0017032623, 0.09515381, -0.046661377, 0.013442993, 0.037597656, -0.009109497, -0.02142334, 0.038391113, -0.046691895, 0.048095703, 0.00730896, -0.03378296, 0.02279663, -0.015899658, -0.021347046, -0.011177063, 0.032989502, -0.0033607483, 0.007827759, -0.029083252, -0.004524231, 0.026260376, 0.03793335, 0.040252686, -0.056121826, 0.03729248, -0.014564514, -0.02558899, 0.023223877, 0.04333496, -0.009490967, 0.00844574, 0.030700684, 0.0027828217, -0.020263672, 0.039489746, -0.023025513, -0.0105896, -0.001253128, -0.016494751, 0.0062828064, 0.01121521, 0.003396988, -0.017669678, 0.0017652512, -0.007762909, -0.034362793, -0.015556335, -0.0262146, 7.1406364e-05, -0.015808105, 0.039276123, -0.00730896, -0.00793457, -0.037719727, -0.01965332, 0.001036644, 0.0149002075, -0.011619568, 0.053497314, -0.039367676, 0.002981186, -0.011917114, -0.066345215, -0.011802673, -0.0070877075, -0.03527832, -0.012283325, 0.011360168, 0.042816162, -0.014709473, -0.04119873, 0.090026855, -0.04611206, -0.03643799, -0.08569336, 0.06939697, -0.016723633, -1.21593475e-05, 0.046569824, -0.025024414, 0.026443481, 0.02180481, -5.1259995e-06, -0.037841797, -0.0050354004, -0.0030002594, -0.06713867, -0.036499023, -0.032470703, -0.007865906, -0.0030517578, 0.021560669, -0.018096924, 0.032440186, -0.0041122437, 0.007663727, -0.01953125, 0.011001587, -0.014656067, -0.022964478, -0.00021135807, -0.020233154, 0.017974854, -0.047729492, -0.015419006, -0.04083252, -0.01133728, 0.037322998, 0.013374329, 0.015670776, -0.024276733, 0.024856567, 0.021362305, 0.03074646, 0.046142578, -0.011688232, -0.0074157715, 0.006046295, 0.032440186, -2.5808811e-05, 0.0209198, 2.7120113e-05, 0.008178711, -0.00068998337, 0.020080566, 0.054229736, -0.005191803, -0.020446777, -0.0032176971, 0.050689697, 0.026184082, 0.04055786, 0.02798462, 0.031799316, -0.0093688965, -0.03567505, 0.025619507, 0.04272461, -0.029281616, -0.001282692, -0.030807495, 0.024780273, 0.019378662, 0.0020046234, 0.02748108, 0.007457733, 0.044799805, 0.0079956055, 0.006149292, 0.018127441, 0.01399231, 0.0066223145, -0.01259613, -0.026397705, 0.016723633, 0.0072250366, 0.0048179626, -0.037506104, 0.012809753, 0.015357971, 0.017181396, -0.030654907, 0.06793213, -0.07446289, 0.006504059, 0.057800293, -0.08380127, 0.012039185, 0.036621094, -0.02267456, -0.0039367676, -0.058898926, -0.029327393, -0.017501831, 0.007083893, 0.006416321, 0.033813477, 0.021026611, 0.014533997, -0.022323608, 0.0309906, -0.024658203, -0.036834717, 0.048095703, 0.029434204, 0.021408081, -0.020065308, -0.0069084167, -0.0015964508, 0.049468994, -0.058258057, -0.016189575, -0.014717102, 0.017303467, -0.024353027, 0.041412354, -0.020431519, -0.025634766, 0.046295166, 0.012145996, -0.013175964, 0.0028057098, 0.023864746, -0.019348145, 0.026672363, -0.05117798, 0.02381897, -0.011558533, 0.061920166, 0.040649414, 0.017913818, -0.029663086, -0.03857422, -0.0056114197, -0.020065308, 0.02130127, 0.0007519722, -0.006122589, 0.057678223, 0.0038928986, -0.005027771, 0.0077705383, -0.05227661, 0.0009813309, 0.0066871643, -0.00157547, 0.038146973, 0.023635864, -0.01965332, 0.0054512024, 0.0032596588, 0.0066223145, 0.041229248, -0.009132385, 0.0011901855, 0.025527954, 0.03338623, -0.011177063, -0.007686615, 0.0041923523, -0.04675293, 0.041229248, -0.0058250427, -0.034057617, 0.0011835098, -0.033294678, 0.01727295, 0.0028133392, -0.042053223, 0.03048706, 0.038360596, -0.0029582977, -0.0050811768, -0.0071983337, -0.018615723, -0.028381348, 0.033996582, 0.02003479, 0.027374268, 0.025985718, 0.033996582, -0.0082473755, -0.070251465, -0.046081543, 0.028427124, 0.0044937134, -0.055267334, -0.02331543, -0.004611969, -0.02355957, -0.03353882, 0.011276245, 0.04336548, 0.023498535, -0.003288269, 0.029647827, -0.008712769, -0.032470703, 0.030319214, 0.031341553, -0.047851562, 0.008842468, 0.019851685, -0.017318726, 0.06329346, 0.0042304993, -0.036193848, -0.031311035, -0.029281616, -0.02583313, 0.0020542145, -0.025360107, 0.01638794, 0.007904053, 0.010345459, -0.02406311, -0.00019598007, 0.019119263, 0.024368286, 0.027648926, -0.014831543, 0.011810303, -0.02961731, -0.04714966, -0.047546387, -0.018997192, 0.018463135, 0.0231781, 0.016174316, -0.0099487305, 0.033447266, -0.0211792, 0.048339844, 0.024734497, -0.043060303, -0.010368347, 0.025527954, 0.043823242, 0.003824234, -0.0058898926, 0.020996094, -0.063964844, -0.007598877, -0.0064926147, 0.026016235, -0.026306152, -0.010147095, -0.019424438, 0.015548706, -0.013954163, -0.024673462, -0.015609741, 0.013221741, -0.02420044, 0.0262146, -0.004085541, -0.004589081, -0.031036377, 0.018539429, -0.054229736, 0.009483337, 0.051452637, -0.0037994385, -0.07922363, 0.0028038025, 0.05203247, 0.0059890747, -0.013938904, -0.031341553, -0.03137207, 0.005710602, 0.0030555725, -0.0042381287, 0.041656494, -0.04144287, -0.0003466606, 0.032958984, 0.0047416687, -0.050750732, 0.03378296, 0.008346558, 0.026626587, 0.026870728]}, "B00FDOON9W": {"id": "B00FDOON9W", "original": "Brand: Weber\nName: Weber 53060001 Q2000 Liquid Propane Grill,White\nDescription: \nFeatures: One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D\nPush-button ignition and infinite control burner valve settings\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\n", "metadata": {"Name": "Weber 53060001 Q2000 Liquid Propane Grill,White", "Brand": "Weber", "Description": "", "Features": "One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D\nPush-button ignition and infinite control burner valve settings\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008575439, 0.008705139, -0.056243896, -0.023468018, 0.0010204315, -0.027282715, -0.006095886, 0.029525757, -0.03048706, -0.005443573, -0.010154724, -0.0037345886, -0.0103302, -0.057800293, 0.03262329, -0.034301758, 0.02104187, 0.02494812, 0.02708435, -0.008262634, 0.011650085, 0.015113831, 0.00047278404, 0.06915283, 0.052093506, -0.078308105, -0.011695862, 0.021942139, 0.013404846, 0.009803772, 0.035491943, 0.0074386597, 0.03274536, -0.0053253174, -0.023269653, -0.053344727, 0.008850098, -0.018493652, -0.03100586, 0.013313293, 0.040771484, -0.013320923, 0.00019562244, 0.024032593, -0.010673523, -0.04660034, 0.056732178, -0.02748108, 0.049621582, 0.022369385, -0.01499176, 0.0017375946, -0.01739502, -0.037719727, -0.01637268, -0.013870239, 0.052764893, -0.06536865, 0.006690979, -0.05291748, -0.020401001, 0.003414154, 0.050689697, 0.022079468, -0.0058288574, 0.04043579, 0.101501465, -0.010887146, -0.0027389526, -0.041778564, -0.012954712, 0.008598328, 0.021759033, 0.026306152, -0.010810852, -0.051483154, 0.028564453, -0.023788452, 0.031433105, 0.029754639, -0.007091522, -0.034362793, 0.025939941, 0.010597229, 0.008590698, 0.02444458, -0.014060974, -0.0099105835, -0.016159058, -0.024475098, -0.012321472, -0.048431396, -0.0335083, 0.052856445, 0.013343811, -0.03112793, -0.06347656, -0.07104492, 0.0178833, 0.010795593, 0.036102295, -0.021728516, 0.02798462, 0.0067749023, 0.010574341, 0.0836792, -0.005264282, 0.061767578, 0.03793335, -0.026428223, 0.016601562, -0.0009784698, -0.008743286, 0.011634827, -0.04034424, -0.0039711, -0.039733887, 9.858608e-05, -0.004966736, 0.008720398, -0.029663086, -0.0178833, 0.0033435822, 0.018981934, 0.01247406, 0.023269653, -0.0015792847, 0.005580902, -0.006362915, 0.0063819885, -0.021240234, 0.0051231384, 0.033599854, 0.056640625, 0.004283905, 0.004459381, 0.012786865, -0.0015354156, 0.018829346, -0.005634308, 0.0008664131, -0.036193848, 0.017944336, 0.024871826, -0.038208008, 0.028442383, 0.03829956, 0.009361267, -0.05126953, -0.083984375, 0.0077285767, 0.016326904, 0.04055786, 0.018676758, -0.05819702, 0.01234436, -0.026306152, -0.005470276, -0.041107178, -0.03768921, -0.021972656, -0.0143966675, 0.008483887, -0.0068740845, -0.040008545, 0.039093018, 0.0011911392, -0.0017433167, 0.02822876, 0.06616211, 0.013008118, -0.05819702, 0.024139404, 0.038848877, -0.01651001, 0.028167725, 0.008888245, -0.0058631897, 0.044433594, -0.02961731, -0.05203247, -0.03390503, 0.073913574, -0.031982422, 0.010887146, -0.014518738, 0.018798828, -0.013656616, -0.005771637, 0.01612854, 0.03286743, 0.013916016, 0.023010254, -0.04815674, 0.0496521, 0.016067505, -0.06311035, -0.0028915405, 0.010765076, -0.04083252, 0.009376526, 0.013282776, -0.006046295, -0.007724762, -0.026473999, -0.006263733, 0.0072135925, 0.015792847, 0.030670166, 0.015960693, -0.03189087, -0.029052734, 0.043640137, -0.079711914, -0.027648926, 0.015396118, -0.02418518, 0.003572464, 0.018661499, -0.023086548, 0.0635376, -0.001200676, 0.040374756, 0.027069092, 0.00945282, 0.010765076, -0.03375244, 0.005748749, 0.02696228, -0.010192871, 0.03741455, 0.021209717, 0.09136963, 0.09094238, 0.024047852, 0.049194336, 0.076049805, -0.0012664795, -0.032073975, -0.018173218, -8.970499e-05, -0.034210205, -0.02268982, 0.034698486, 0.021255493, 0.026733398, 0.0138168335, 0.0019388199, -0.0077781677, 0.021652222, 0.035888672, -0.002445221, 0.023742676, -0.014053345, -0.034454346, 0.02835083, 0.01361084, -0.0005683899, -0.027801514, 0.05328369, -0.012435913, 0.046020508, 0.018295288, 0.014854431, 0.024963379, -0.02357483, 0.024230957, 0.0043640137, -0.014289856, -0.022155762, 0.030975342, 0.020523071, -0.018936157, -0.053863525, -0.03503418, 0.007587433, -0.014274597, 0.056030273, -0.021621704, -0.051879883, 0.03062439, 0.034973145, 0.0001887083, 0.0015230179, 0.043426514, -0.009429932, -0.017150879, 0.006702423, 0.017456055, 0.019805908, 0.047058105, -0.019485474, -0.014846802, -0.0016584396, 0.0011873245, -0.043640137, 0.12658691, 0.0028629303, -0.0054473877, -0.009788513, 0.08459473, 0.025238037, -0.046722412, 0.013153076, 0.0032405853, -0.015731812, 0.013381958, 0.009643555, 0.00491333, -0.028564453, 0.012397766, 0.030792236, 0.041290283, 0.0021629333, 0.03326416, -0.0024547577, 0.021530151, 0.059051514, 0.012794495, 0.012718201, -0.0026779175, -0.027297974, -0.028152466, -0.04260254, -0.014373779, 0.02885437, -0.04748535, -0.004623413, -0.016998291, 0.014831543, -0.029632568, -0.04058838, -0.029922485, -0.012809753, -0.02218628, 0.0024471283, 0.012664795, 0.027664185, 0.0012893677, -0.022323608, 0.015991211, -0.017791748, -0.019744873, -0.0011253357, -0.023910522, -0.039855957, 0.0209198, 0.010681152, -0.022155762, -0.0025749207, 0.007789612, -0.02960205, 0.0067367554, -0.028503418, 0.016555786, -0.02279663, -0.022598267, -0.05996704, -0.035369873, -0.088378906, 0.0099487305, -0.017440796, -0.033233643, 0.009346008, 0.025680542, -0.019256592, -0.04168701, -0.004886627, -0.04360962, 0.0038871765, 0.01084137, -0.008010864, -0.06781006, -0.018081665, -0.047973633, 0.025253296, 0.047698975, -0.033233643, -0.019165039, 0.0141067505, 0.0014591217, 0.04067993, -0.05670166, 0.02041626, 0.01966858, 0.0028209686, 0.030914307, 0.037963867, 0.02330017, -0.013282776, 0.011009216, 0.032928467, -0.024993896, -0.0066719055, 0.016983032, -0.00052165985, -0.018661499, 0.014259338, -0.048065186, 0.0074424744, -0.07849121, 0.02444458, 0.025115967, -0.042541504, -0.00724411, -0.031311035, -0.07611084, -0.036102295, 0.010482788, 0.07684326, -0.004585266, -0.028961182, -0.01789856, 0.0021381378, 0.0034828186, 0.014793396, 0.02128601, -0.007369995, -0.0077209473, -0.015434265, 0.03842163, -0.042755127, 0.028152466, 0.021148682, -0.061584473, 0.04083252, -0.0435791, 0.03274536, -0.00831604, 0.027679443, -0.009063721, 0.0052337646, -0.04623413, -0.025680542, 0.018814087, 0.044433594, 0.017227173, 0.016036987, 0.015838623, -0.0030536652, 0.008979797, -0.011306763, -0.0071907043, 0.070129395, 0.003932953, -0.0004515648, -0.054473877, -0.034606934, 0.023895264, -0.029190063, 0.033111572, -0.009971619, 0.038024902, 0.015655518, -0.019836426, 0.11175537, -0.014930725, 0.041168213, 0.0009074211, -0.010299683, -0.0076828003, -0.04248047, 0.037750244, 0.008422852, -0.016860962, -0.004623413, 0.017852783, 0.031829834, 0.0041122437, -0.016647339, 0.011749268, 0.02319336, -0.008407593, -0.022018433, -0.0056533813, -0.020553589, 0.027191162, 0.0038795471, 0.0128479, -0.045715332, -0.034942627, -0.0051078796, -0.07287598, 0.08898926, 0.08325195, -0.034240723, 0.08679199, 0.059143066, -0.020935059, 0.02243042, 0.024917603, -0.030090332, -0.0073928833, 0.030639648, -0.061401367, 0.014976501, 0.013725281, -0.066589355, 0.017242432, -0.005054474, -0.03173828, 0.027648926, 0.007217407, -0.028030396, -0.026443481, -0.0020141602, -0.00080537796, -0.028396606, 0.023925781, -0.0032234192, -0.024276733, -0.03527832, -0.00055742264, 0.01638794, -0.033721924, -0.03012085, 0.016540527, -0.014198303, -0.027404785, 0.011451721, 0.022003174, -0.008255005, 0.0010490417, 0.054107666, -0.017791748, 0.018081665, -0.050231934, -0.0129776, -0.02418518, 0.041046143, 0.022445679, 0.0049934387, 0.03540039, -0.011520386, 0.008178711, 0.010154724, 0.011184692, 0.018630981, -0.042999268, -0.059265137, 0.009216309, 0.04421997, 0.015258789, -0.05883789, 0.0032672882, -0.003967285, 0.0016031265, 0.007949829, -0.021270752, -0.015045166, 0.0034313202, 0.022781372, -0.03579712, -0.0048103333, -0.015655518, -0.042541504, -0.045928955, 0.0129470825, -0.011352539, 0.0079574585, 0.023223877, 0.052124023, -0.055877686, -0.013389587, -0.034484863, -0.0121536255, 0.048614502, 0.0022583008, 0.04321289, -0.04272461, 0.010375977, -0.009056091, 0.10119629, 0.020248413, 0.029388428, -0.057800293, -0.014503479, -0.019546509, 0.03062439, 0.026977539, -0.050628662, 0.03668213, 0.006298065, -0.04296875, -0.071777344, 0.0077667236, 0.03567505, -0.06677246, -0.07086182, -0.017471313, 0.059631348, 0.013549805, 0.0065307617, -0.004085541, 0.009140015, 0.014060974, 0.008384705, -0.07879639, -0.041137695, 0.0012722015, -0.012718201, 0.004550934, -0.0132751465, -0.013221741, 0.028961182, 0.04748535, 0.037139893, -0.016464233, -0.016967773, -0.017150879, 0.0060577393, -0.006855011, -0.012481689, 0.014091492, -0.027832031, 0.013336182, -0.06878662, 0.058898926, 0.074157715, 0.018508911, 0.02519226, 0.029953003, 0.005332947, -0.024246216, 0.017303467, -0.012741089, -0.029678345, -0.012077332, -0.011634827, 0.021881104, -0.002822876, -0.0038394928, -0.006401062, 0.016479492, 0.053985596, -0.011383057, -0.0025939941, 0.008842468, 0.007835388, 0.016586304, -0.008071899, 0.024307251, -0.023513794, 0.01676941, 0.04675293, 0.0073242188, -0.0021190643, -0.010192871, -0.013031006, -0.0022029877, -0.009460449, 0.005771637, -0.042144775, 0.018981934, 0.028137207, 0.00038599968, -0.00843811, 0.014678955, -0.0023384094, 0.005092621, 0.014038086, 0.05630493, -0.013961792, 0.021240234, 0.034820557, -0.017333984, -0.035491943, 0.036193848, -0.052124023, 0.06774902, 0.028671265, -0.056549072, 0.00881958, 1.1026859e-05, 0.00041007996, -0.031799316, 0.045440674, -0.012619019, -0.0140686035, -0.048339844, 0.004333496, 0.049591064, 0.040252686, -0.014694214, -0.024124146, 0.04336548, 0.0018358231, -0.017044067, -0.0054969788, 0.026535034, -0.045928955, 0.010307312, -0.011680603, 0.0037631989, -0.027435303, -0.03012085, -0.028137207, 0.015380859, 0.008399963, -0.0062942505, 0.020477295, -0.0042266846, -0.020767212, -0.042907715, -0.028427124, 0.016723633, 0.024642944, -0.0033168793, 0.0016460419, -0.0014543533, 0.009506226, -0.008232117, -0.0031871796, 0.014526367, -0.011650085, -0.027542114, -0.058624268, -0.0028953552, -0.030960083, 0.022827148, -0.046966553, -0.0014324188, 0.03616333, -0.025100708, 0.01134491, 0.034057617, -0.05029297, -0.035583496, -0.0070343018, -0.0027599335, -0.024780273, -0.048858643, 0.05886841, -0.04736328, -0.04434204, -0.04940796, 0.03479004, -0.017120361, -0.03491211, 0.050354004, 0.061676025, -0.018814087, 0.040252686, -0.0095825195, -0.048431396, -0.0001872778, 0.019317627, -0.061828613, -0.06378174, -0.038208008, -0.0039634705, -0.02822876, -0.03970337, 0.019042969, 0.053771973, 0.045135498, -0.025390625, -0.0051841736, -0.02784729, 0.012084961, -0.04989624, 0.0011072159, -0.0033340454, 0.014144897, 0.0062713623, 0.0024375916, -0.044921875, 0.011650085, 0.013366699, 0.030807495, 0.012329102, -0.013748169, 0.008018494, 0.07647705, -0.027755737, 0.046295166, -0.032165527, 0.0035190582, 0.012420654, 0.077697754, 0.005191803, 0.054260254, -0.080322266, -0.03503418, -0.02923584, 0.03149414, 0.035217285, 0.037109375, -0.044189453, -0.022949219, 0.05026245, 0.0340271, 0.008338928, 0.030822754, 0.03930664, -0.020874023, -0.06542969, 0.0038146973, -0.0061569214, -0.05001831, -0.030059814, -0.034698486, -0.018005371, 0.023910522, -0.01184845, 0.019485474, -0.030883789, 0.04751587, 0.006549835, -0.015304565, 0.01725769, 0.0027675629, 0.022705078, -0.007511139, -0.033203125, 0.014892578, 0.0095825195, 0.022445679, -0.02619934, -0.00037121773, -0.015563965, 0.022476196, -0.003145218, 0.05722046, -0.035003662, 0.03286743, 0.024047852, -0.076416016, -0.0022563934, -0.006137848, 0.0031871796, -0.01108551, -0.0690918, -0.026733398, -0.013954163, 0.0020618439, 0.008560181, 0.0178833, 0.03665161, 0.020233154, 0.016174316, 0.0036582947, -5.64456e-05, -0.018325806, 0.06555176, 0.01576233, -0.0102005005, -0.024673462, -0.0155181885, 0.021621704, 0.021636963, 0.005329132, 0.023468018, -0.0446167, 0.026748657, 0.012207031, 0.017242432, -0.03375244, -0.030517578, 0.016693115, 0.008903503, -0.022628784, 0.015487671, 0.047912598, 0.05279541, 0.009849548, -0.020492554, 0.013664246, -0.0758667, 0.0049858093, 0.010246277, 0.051452637, -0.028808594, -0.03466797, -0.0030784607, -0.0019273758, 0.0126571655, 0.023345947, 0.018493652, 0.026184082, 0.03805542, 0.028747559, 0.06591797, -0.02053833, 0.022384644, 0.015174866, 0.013183594, 0.0016050339, 0.023269653, -0.014419556, 0.0028057098, -0.00982666, -0.010322571, 0.03363037, -0.008781433, 0.018310547, 0.005317688, 0.012336731, -0.0289917, 0.030578613, -0.010696411, -0.03515625, 0.015930176, -0.019683838, -0.01902771, 0.004966736, -0.012901306, -0.04547119, -0.006248474, -0.05392456, -0.0059318542, -0.018081665, -0.020874023, 0.005367279, -0.0038547516, 0.019302368, -0.042633057, 0.007888794, -0.011871338, -0.0025138855, 0.0004181862, 0.047180176, -0.025527954, -0.03161621, -0.018722534, 0.017822266, -0.027770996, -0.007926941, -0.011398315, -0.007785797, 0.004547119, -0.010574341, 0.044769287, 0.020812988, 0.041809082, -0.009567261, 0.0014047623, -0.034179688, -0.030395508, 0.021743774, 0.009727478, -0.00881958, -0.0063552856, 0.05041504, -0.011695862, 0.014923096, 0.020141602, -0.0138549805, -0.07098389, -0.023971558, -0.02658081, -0.042022705, -0.020385742, -0.007446289, 0.020095825, 0.0012559891, -0.036010742, 0.03668213, 0.026672363, 0.035980225, 0.030593872, -0.0036392212, 0.005844116, -0.03704834, -0.038116455, -0.057678223, -0.008338928, 0.046325684, 0.06347656, 0.01576233, 0.0019817352, 0.022476196, -0.023635864, 0.024810791, 0.008323669, -0.0070228577, 0.013038635, 0.025177002, 0.0056266785, 0.0013484955, -0.009895325, 0.026794434, -0.0115356445, -0.040496826, 0.025177002, 0.031921387, -0.042297363, -0.036834717, -0.018722534, 0.0024967194, -0.027786255, -0.03579712, -0.043945312, -0.020111084, -0.0067710876, 0.042266846, -0.022857666, 0.024246216, -0.029129028, 0.017410278, -0.022109985, 0.005168915, 0.008018494, 0.019699097, -0.020385742, 0.03277588, 0.0068206787, 0.033447266, -0.025222778, -0.10638428, -0.060028076, 0.02986145, -0.001074791, 0.0033683777, 0.039215088, -0.034301758, 0.015930176, 0.036346436, 0.021499634, 0.0056762695, 0.034454346, 0.01890564, 0.00242424, 0.016723633]}, "B083QN4Z6H": {"id": "B083QN4Z6H", "original": "Brand: Generep\nName: Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack\nDescription: \nFeatures: Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding.\nThis propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter.\nHigh-quality brass construction gas gauge meter, you'll never have to worry about leaks or running out of propane again.\nMonitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nComing With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.\n", "metadata": {"Name": "Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack", "Brand": "Generep", "Description": "", "Features": "Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding.\nThis propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter.\nHigh-quality brass construction gas gauge meter, you'll never have to worry about leaks or running out of propane again.\nMonitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nComing With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0030994415, -0.00031399727, -0.053955078, -0.051513672, 0.0058403015, -0.021575928, -0.01725769, 0.030639648, 0.048095703, -0.021438599, -0.008560181, 0.0009775162, -0.004886627, -0.046905518, 0.0009217262, -0.006439209, -0.004219055, 0.03277588, -0.010116577, -0.02458191, -0.0041656494, -0.027938843, -0.031463623, 0.033050537, 0.022109985, 0.009239197, 0.03692627, -0.008346558, 0.026779175, 0.0031280518, 0.021560669, -0.03050232, 0.038848877, -0.006439209, -0.009101868, -0.037994385, 0.0077323914, -0.01084137, -0.00844574, -0.011383057, 0.025894165, -0.009529114, 0.008026123, -0.007663727, -0.012290955, -0.016601562, -0.0016908646, -0.018127441, 0.009010315, 0.033599854, 0.005126953, 0.0055885315, 0.007385254, 0.0036945343, -0.004940033, -0.0058631897, -0.024002075, -0.023544312, 0.0015649796, -0.021102905, 0.017837524, 0.0029449463, 0.030807495, 0.0637207, -0.041137695, 0.015960693, 0.041046143, -0.02885437, 0.012275696, -0.025772095, 0.009353638, 0.012672424, 0.015792847, -0.005493164, 0.0015487671, 0.019989014, -0.040161133, -0.0012683868, 0.05517578, 0.014808655, -0.003610611, -0.042877197, 0.03604126, -0.02607727, 0.009178162, -0.011390686, -0.0079574585, 0.014266968, 0.0004544258, -0.0026798248, -0.014755249, 0.04940796, -0.04800415, 0.041137695, -0.013786316, 0.016723633, -0.019805908, -0.05102539, -0.0020713806, -6.520748e-05, -0.00049495697, -0.02154541, 0.0068130493, 0.008110046, 0.002603531, 0.042999268, 0.0025196075, 0.009109497, 0.026306152, 0.014472961, 0.011817932, 0.011833191, -0.030914307, -0.021881104, -0.026229858, 0.043640137, -0.01020813, 0.027450562, 0.018737793, 0.06591797, -0.010314941, 0.0107040405, -0.01209259, 0.015235901, 0.0031414032, 0.023025513, 0.022445679, -0.018600464, -0.07897949, 0.026428223, 0.013267517, -0.018859863, 0.02520752, 0.10107422, 0.018920898, -0.017593384, 0.021438599, -0.012710571, -0.019699097, 0.032684326, -0.014335632, -0.03982544, 0.012367249, -0.0017127991, -0.006000519, 0.048675537, 0.04345703, -0.02607727, -0.0335083, -0.068603516, -0.013137817, 0.0021400452, 0.03314209, -0.0015869141, -0.00894165, -0.030685425, -0.009254456, -0.025100708, 0.01889038, -0.027908325, -0.03692627, -0.044677734, -0.00982666, -0.036895752, -0.06036377, 0.058410645, 0.018203735, -0.006008148, 0.015541077, 0.0023860931, 0.016174316, 0.038330078, 0.055114746, -0.013122559, -0.010986328, -0.0054359436, -0.050933838, 0.06689453, 0.068481445, -0.11633301, -0.05722046, -0.05203247, 0.109313965, -0.017822266, -0.03137207, -0.020935059, 0.013801575, 0.010986328, 0.024734497, 0.012397766, 0.032470703, -0.007160187, -0.032104492, -0.021194458, 0.012359619, 0.014709473, -0.05883789, -0.00630188, -0.0059394836, -0.004600525, -0.02897644, 0.041931152, -0.03201294, 0.032073975, 0.016342163, -0.02468872, 0.01586914, 0.016098022, -0.010231018, 0.00356102, -0.003419876, -0.0141067505, 0.025604248, -0.058898926, -0.03225708, 0.023010254, -0.04574585, -0.027175903, -0.018310547, -0.01109314, 0.004383087, -0.019348145, 0.012359619, 0.04083252, -0.013534546, 0.0046844482, -0.023773193, 0.010551453, 0.016830444, -0.010688782, 0.06384277, 0.026626587, 0.07904053, 0.05911255, -0.011505127, 0.037078857, 0.064941406, 0.022521973, -0.022613525, -0.013404846, 0.0031757355, 0.011451721, -0.047424316, 0.015426636, 0.0116119385, -0.050445557, -0.03050232, 0.029769897, -0.026641846, 0.011154175, 0.013725281, 0.029220581, 0.018310547, 0.047088623, -0.0340271, 0.03918457, -0.016021729, 0.05871582, -0.075805664, 0.032958984, -0.023361206, 0.002790451, 0.04449463, -0.026809692, 0.06500244, 0.012908936, 0.06121826, 0.06185913, -0.02758789, 0.002193451, 0.01576233, 0.026672363, -0.003648758, -0.03225708, -0.0234375, 0.0035858154, -0.05218506, 0.044799805, -0.0038337708, -0.025466919, 0.010772705, 0.015014648, 0.016082764, -0.00041031837, 0.032196045, 0.012184143, 0.0030899048, -0.0029392242, -0.0552063, -0.027130127, 0.0008735657, 0.0033721924, -0.025115967, -0.020507812, -0.014511108, -0.025421143, 0.059265137, -0.018234253, 0.037841797, -0.018371582, -0.0031280518, 0.04220581, -0.03010559, 0.032104492, -0.020126343, -0.0022792816, -0.047058105, 0.027038574, 0.00048089027, -0.08312988, 0.029205322, 0.047210693, 0.0023021698, -0.0524292, 0.04107666, 0.029464722, 0.009742737, 0.0041503906, 0.038238525, 0.062194824, -0.021499634, 0.02229309, -0.009490967, -0.002483368, 0.020858765, 0.008033752, -0.035614014, -0.00055122375, -0.030044556, 0.010391235, -0.010726929, -0.018722534, 0.008361816, 0.02658081, -0.014961243, -0.011383057, 0.006252289, 0.0368042, 0.0015859604, -0.05038452, 0.007797241, -0.0046463013, -0.0063056946, 0.013015747, -0.079833984, -0.031158447, 0.07128906, -0.020462036, -0.009681702, 0.0024929047, 0.044708252, -0.008712769, 0.029708862, 0.012184143, 0.033325195, 0.0054397583, -0.047424316, -0.01424408, 0.013397217, -0.06097412, -0.008300781, -0.01676941, -0.06451416, -0.06982422, 0.054351807, 0.00018846989, -0.032470703, -0.05166626, -0.00085783005, 0.028152466, -0.0056152344, 0.027755737, -0.053100586, -0.027069092, -0.03640747, 0.013572693, 0.025466919, -0.044677734, -0.010902405, -0.005947113, -0.03378296, 0.007843018, -0.009223938, 0.029708862, 0.0440979, 0.0041160583, 0.05596924, 0.056427002, 0.016296387, -0.019210815, -0.0004901886, 0.013397217, -0.031204224, -0.010299683, 0.011207581, 0.010154724, -0.047973633, -0.011077881, -0.05041504, -0.005405426, -0.050811768, 0.0149383545, -0.006099701, 0.0134887695, -0.012039185, -0.02746582, -0.024993896, -0.044158936, 0.01499939, 0.028915405, -0.029220581, 0.01725769, -0.024887085, 0.0069999695, -0.013832092, 0.0065956116, -0.042755127, -0.007217407, -0.007686615, 0.011108398, 0.033203125, -0.06719971, -0.0021038055, 0.013626099, 0.023971558, 0.00522995, 0.015899658, -0.012992859, -0.039245605, 0.032318115, 0.028762817, -0.021026611, -0.038146973, -0.053009033, 0.010147095, -0.0028457642, -0.015975952, -0.025115967, -0.023910522, 0.0037078857, -0.068725586, -0.0129852295, -0.035064697, 0.004875183, -0.023727417, -0.011672974, -0.011657715, -0.066833496, -0.01713562, -0.0058021545, -0.019317627, 0.0079574585, 0.013069153, 0.021438599, -0.014625549, 0.06842041, 0.000313282, 0.05319214, -0.010353088, 0.010910034, 0.010612488, -0.041992188, 0.029785156, 0.01966858, -0.0096206665, -0.02760315, 0.050994873, 0.0018129349, 0.004878998, -0.021911621, -0.040618896, 0.045288086, 0.005554199, -0.00762558, -0.022842407, 0.006252289, 0.045410156, -0.030273438, 0.06707764, -0.010520935, -0.027267456, 0.011245728, -0.09210205, 0.08270264, 0.03933716, -0.016220093, 0.047058105, 0.03741455, -0.014015198, 0.029724121, 0.039031982, -0.00078582764, 0.009895325, 0.055847168, -0.0135269165, -0.007751465, 0.00040316582, 0.016845703, 0.03253174, -0.014663696, 0.012245178, 0.013595581, 0.0026454926, -0.023773193, -0.018737793, 0.006084442, 0.031311035, -0.02645874, -0.004951477, -0.006046295, 0.0036907196, -0.043914795, 0.00042819977, -0.0008573532, -0.031173706, -0.03515625, -0.0056877136, 0.025619507, -0.04763794, 0.00141716, -0.016647339, -0.031051636, 0.030303955, 0.01927185, 0.014198303, -0.006965637, 0.017410278, 0.0104599, 0.0007214546, -0.01927185, 0.007926941, 0.006126404, -0.020111084, 0.0020065308, 0.016540527, 0.0042381287, -0.01474762, 0.027175903, -0.0031776428, -0.048095703, -0.008552551, 0.013191223, 0.008430481, -0.0146484375, -0.0030498505, -0.029556274, -0.027038574, -0.008636475, -0.020523071, -0.007949829, -0.03793335, -0.023895264, -0.06225586, -0.047027588, -0.0033111572, -0.030807495, -0.016433716, 0.008201599, 0.0075187683, -0.053375244, -0.021026611, 0.013153076, -0.054748535, 0.019714355, -0.017074585, 0.0024776459, 0.035095215, 0.012992859, 0.026779175, -0.0093688965, -0.04171753, -0.030334473, -0.027130127, -0.03265381, -0.013427734, -0.010406494, -0.027877808, -0.00016438961, 0.005718231, 0.060180664, 0.021377563, 0.042114258, -0.02822876, 0.022857666, -0.03994751, -0.013954163, 0.025115967, 0.020767212, -0.04046631, -0.052734375, 0.021591187, -0.006465912, 0.02835083, 0.06555176, -0.00856781, 0.028045654, -0.011833191, -0.11767578, -0.030685425, -0.025268555, 0.015701294, -0.0051345825, 0.01146698, 5.4240227e-06, -0.0025730133, -0.006504059, -0.015823364, 0.06100464, 0.0146865845, -0.018875122, -0.005115509, -0.0031280518, -0.02545166, 0.0418396, -0.044525146, -0.017028809, -0.032226562, 0.05340576, 0.0541687, -0.025924683, 0.0013914108, 0.0231781, -0.021209717, -0.030136108, -0.018295288, 0.039031982, 0.038909912, -0.018615723, -0.054534912, -0.007724762, -0.07287598, -0.01890564, -0.018127441, -0.027816772, -0.0022850037, 0.013534546, 0.011131287, -0.028198242, -0.007205963, 0.04244995, 0.0021591187, -0.018066406, -0.079589844, 0.020233154, -0.0018024445, -0.0110321045, -0.009742737, 0.0016822815, -0.012886047, -0.0026073456, 0.03692627, 0.02432251, -0.046783447, 0.048919678, 0.025146484, 0.03677368, 0.0011224747, 0.003414154, 0.0047416687, -0.0541687, -0.068847656, -0.021377563, 0.023864746, -0.048828125, 0.016815186, 0.0020866394, 0.015426636, 0.028198242, -0.003944397, -0.0051116943, 0.014411926, -0.059143066, 0.06719971, 0.012420654, -0.0019273758, -0.06414795, 0.08807373, -0.030593872, 0.011833191, -0.043701172, 0.024612427, 0.0335083, 0.007484436, -0.0052986145, -0.02027893, 0.04547119, -0.016647339, -0.014053345, -0.0018529892, 0.005428314, -0.031402588, 0.00027894974, 0.0038719177, -0.0335083, -0.047302246, -0.023773193, 0.00868988, 5.2690506e-05, 0.020507812, -0.05722046, 0.058563232, 0.008041382, -0.095214844, -0.03286743, -0.0041770935, 0.000330925, -0.00818634, 0.007850647, -0.041381836, -0.024536133, -0.0010662079, 0.04788208, 0.0017433167, 0.004634857, -0.062683105, -0.03479004, -0.032409668, 0.03250122, 0.017837524, 0.049835205, -0.030670166, -0.07421875, -0.004508972, 0.015365601, 0.023834229, -0.021270752, -0.023223877, -0.03253174, -0.015914917, -0.020355225, -0.027999878, -0.037506104, 0.022644043, -0.043640137, -0.035217285, 0.011985779, 0.015281677, 0.019836426, -0.04486084, 0.07525635, -0.004650116, 0.0035438538, 0.007774353, -0.033966064, -0.039733887, 0.008857727, -0.0015239716, -0.033050537, -0.028762817, -0.03768921, -0.002281189, 0.027130127, 0.02331543, 0.006450653, 0.02279663, 0.0090408325, 0.022338867, -0.03427124, 0.00020098686, -0.03479004, -0.034973145, 0.024536133, -0.027328491, -0.00894165, 0.0073127747, 0.0033130646, -0.07055664, -0.04937744, 0.038360596, 0.019699097, -0.010673523, 0.021270752, 0.009506226, 0.013900757, -0.037384033, 0.017944336, 0.037597656, -0.04345703, 0.0009570122, 0.020828247, -0.008468628, 0.028167725, -0.045410156, -0.0021877289, -0.044311523, 0.03012085, -0.016647339, 0.07635498, -0.0914917, -0.024505615, -0.0074005127, 0.07421875, -0.016357422, -0.023727417, -0.0048942566, -0.025787354, -0.06304932, -0.022079468, -0.026504517, -0.044708252, -0.05230713, -0.043121338, -0.010353088, 0.008911133, 0.0006546974, 0.05166626, 0.009124756, 0.00121212, -0.024978638, 0.03152466, -0.0024337769, 0.0016174316, 0.047576904, -0.022644043, 0.024032593, -0.011650085, 0.035186768, 0.0011930466, 0.012077332, -0.010391235, -0.0015287399, 0.024154663, 0.015205383, 0.012794495, 0.017349243, 0.009033203, 0.029006958, -0.0524292, -0.009765625, -0.034973145, 0.006767273, -0.026351929, 0.022537231, 0.013969421, -0.0037727356, 0.039276123, 0.02519226, 0.023330688, -0.017196655, 0.03765869, -0.031799316, 0.012962341, -0.020584106, -0.029205322, 0.03652954, 0.02279663, -0.0025901794, -0.011695862, -0.043518066, 0.045074463, 0.014984131, -0.007835388, 0.043151855, -0.023376465, -0.008354187, -0.03326416, -0.0015659332, -0.023956299, -0.04928589, 0.044311523, 0.04623413, -0.03366089, 0.033813477, 0.028717041, -4.786253e-05, -0.0022773743, -0.05480957, 0.00774765, -0.04156494, 0.023651123, 0.032836914, 0.023345947, -0.023117065, -0.04559326, -0.018493652, 0.0052337646, -0.027511597, 0.029586792, -0.019317627, 0.06921387, -0.0032253265, 0.005142212, 0.04727173, 0.0059661865, 0.025268555, -0.021224976, 0.013046265, -0.014671326, 0.0029144287, -0.006828308, -0.020477295, 0.011802673, 0.0068740845, 0.018997192, 0.03225708, 0.026748657, 0.035339355, 0.0071640015, -0.044921875, 0.014884949, 0.012252808, -0.068847656, 0.03164673, -0.038116455, 0.018920898, -0.03540039, -0.06939697, -0.05682373, -0.030578613, -0.042816162, 0.054107666, 0.005004883, -0.019042969, -0.008056641, -0.0049858093, 0.023101807, -0.05517578, 0.0078125, -0.0043678284, 0.032989502, -0.020980835, 0.08496094, -0.056518555, -0.029006958, -0.051208496, 0.0031337738, -0.078430176, 0.021652222, -0.037872314, 0.03475952, 0.025665283, 0.011550903, 0.02470398, 0.062042236, 0.00027155876, 0.010848999, 0.021148682, -0.03237915, -0.022750854, 0.02935791, 0.018997192, -0.03677368, -0.02722168, 0.023284912, 0.009994507, -0.003025055, 0.024917603, 0.001791954, -0.07861328, -0.006401062, -0.030807495, -0.014465332, 0.013038635, -0.019012451, 0.006538391, -0.01576233, -0.06756592, -0.0625, -0.0013799667, 0.046813965, 0.044189453, -0.009841919, -0.01751709, -0.040771484, -0.030303955, -0.05496216, -0.0038337708, 0.028167725, 0.0141067505, -0.0513916, 0.002149582, -0.008979797, -0.0065727234, -0.039398193, 0.008995056, 0.033416748, -0.003540039, 0.016418457, 0.050964355, -0.024093628, -0.0054512024, 0.024307251, -0.03543091, -0.068359375, -0.0030879974, 0.017684937, -0.01625061, 0.0014209747, -0.023788452, 0.02029419, 0.01084137, 0.0031795502, -0.02394104, -0.0023994446, -0.020736694, -0.0184021, 0.00070524216, 0.010826111, 0.0029411316, -0.0028762817, -0.049346924, 0.00035381317, 0.0340271, -0.025131226, -0.024902344, 0.05407715, 0.037139893, 0.05291748, -0.015640259, -0.037353516, -0.03111267, 0.009002686, 0.010124207, 0.0049819946, 0.024261475, -0.0035247803, 0.0025749207, 0.061676025, -0.0026378632, -0.031204224, 0.06854248, 0.047821045, 0.028762817, 0.0146102905]}, "B07YBLSF7M": {"id": "B07YBLSF7M", "original": "Brand: Monument Grills\nName: Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer\nDescription: Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.\nFeatures: \u2605STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance\n\u2605STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking\n\u2605LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space\n\u2605TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation\n\u2605BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.\n", "metadata": {"Name": "Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer", "Brand": "Monument Grills", "Description": "Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.", "Features": "\u2605STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance\n\u2605STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking\n\u2605LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space\n\u2605TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation\n\u2605BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010467529, 0.020050049, -0.0058555603, 0.007511139, 0.018157959, -0.0127334595, 0.028137207, -0.034423828, -0.0206604, 0.003004074, -0.00078725815, -0.010414124, -0.00031089783, -0.045715332, 0.019134521, -0.03552246, 0.013771057, 0.0044021606, -0.02911377, -0.029724121, -0.008972168, -0.027893066, -0.046966553, 0.10949707, 0.047821045, -0.05517578, 0.0048103333, 0.0029773712, 0.039215088, 0.0009236336, 0.026382446, 0.008796692, 0.037078857, -0.046417236, 0.024612427, -0.021148682, 0.0039138794, -0.017150879, -0.026733398, 0.021453857, 0.011558533, 0.0022945404, -0.054626465, 0.0042495728, -0.04510498, -0.04196167, 0.019012451, 0.0018119812, -0.017410278, 0.05307007, -0.0024337769, 0.01676941, -0.011978149, 0.013870239, 0.0067214966, -0.019546509, 0.008033752, -0.021438599, 0.015197754, -0.020507812, -0.01902771, 0.003791809, 0.035461426, 0.0032138824, -0.021743774, 0.016204834, 0.08886719, -0.004802704, -0.028839111, -0.038024902, 0.022247314, 0.009262085, 0.016830444, -0.017303467, -0.0016908646, 0.000895977, -0.0368042, -0.02557373, 0.050109863, 0.008766174, -0.011108398, 0.034423828, 0.020721436, -0.039031982, -0.007873535, -0.033477783, -0.015602112, -0.0052261353, 0.0017757416, -0.017562866, 0.0007958412, -0.02772522, -0.054992676, 0.076293945, 0.03427124, -0.018707275, -0.014984131, -0.050109863, 0.020339966, 0.0038719177, 0.0060577393, -0.025405884, -0.010749817, 0.020339966, 0.0014400482, 0.05697632, -0.009399414, 0.022033691, 0.013404846, 0.005241394, 0.0039520264, -0.068115234, -0.000623703, -0.0035743713, -0.019989014, 0.024795532, -0.00051784515, -0.012184143, -0.007980347, -0.014183044, -0.039794922, -0.03060913, 0.012191772, 0.037963867, 0.056762695, 0.057739258, 0.009292603, -0.009796143, -0.041290283, 0.06317139, -0.037719727, -0.018569946, 0.053100586, 0.046691895, 0.008850098, -0.038635254, 0.00082302094, -0.015327454, -0.010223389, 0.0104599, 0.0013523102, -0.012634277, 0.023010254, 0.0070343018, -0.051635742, 0.024795532, 0.050567627, -0.009300232, -0.05987549, -0.08331299, 0.007194519, -0.0024223328, 0.032989502, 0.014678955, -0.058563232, 0.0031661987, -0.019058228, -0.006904602, -0.017120361, -0.042541504, -0.033233643, -0.025527954, 0.009033203, -0.039093018, -0.055664062, 0.037017822, -0.0008969307, -0.0074806213, 0.009017944, 0.07055664, -0.021820068, 0.03503418, -0.004283905, -0.00044870377, -0.010810852, -0.0289917, -0.0045280457, 0.0017309189, 0.0680542, -0.070495605, -0.060394287, -0.04336548, 0.08215332, -0.036102295, -0.010787964, 0.022750854, 0.0262146, 0.0013437271, -0.010154724, 0.008155823, 0.031204224, 0.048065186, -0.015182495, -0.016571045, 0.028701782, 0.011856079, -0.040252686, 0.0068893433, 0.0027580261, -0.032714844, 0.010688782, 0.012252808, -0.0025367737, 0.02078247, 0.037963867, -0.013252258, 0.019607544, -0.007396698, 0.02204895, 0.019699097, -0.010009766, -0.0016317368, -0.0025253296, -0.04486084, -0.021438599, 0.0006098747, -0.0052452087, -0.019012451, -0.012420654, -0.032287598, -0.0073509216, 0.0021972656, -0.006755829, 0.049957275, 0.04208374, -0.01084137, -0.0068740845, -0.017471313, 0.021697998, -0.0007200241, -0.043426514, 0.0385437, 0.043426514, 0.050323486, -0.004425049, 0.011985779, 0.03692627, 0.025436401, -0.013076782, -0.0035114288, 0.012374878, -0.011062622, -0.02571106, 0.033081055, 0.02458191, -0.012054443, -0.002105713, 0.026748657, -0.019699097, -0.00957489, 0.0018444061, -0.0007696152, 0.04449463, 0.05670166, -0.01737976, 0.040771484, 0.0005168915, -0.006072998, -0.037353516, 0.0625, -0.03237915, 0.037261963, 0.03491211, 0.0005660057, 0.02973938, 0.017410278, 0.011405945, 0.01725769, -0.04788208, 0.028366089, 0.027709961, 0.0044937134, -0.018051147, -0.018188477, 0.04849243, 0.007698059, -0.044311523, 0.017669678, 0.0095825195, -0.013694763, -0.010025024, -0.021011353, -0.023849487, -0.007972717, 0.026489258, 0.0435791, 0.015487671, -0.009063721, -0.03652954, -0.06085205, 0.0011091232, -0.013893127, -0.019546509, -0.0064926147, 0.00086307526, -0.043121338, 0.044006348, -0.0090408325, 0.031280518, -0.04949951, 0.005290985, 0.025314331, -0.08300781, 0.05886841, -0.0093307495, 0.03375244, 0.009788513, 0.016677856, 0.01991272, -0.046844482, 0.059448242, 0.0340271, 0.022781372, -0.029037476, 0.02407837, 0.009010315, -0.020263672, 0.021270752, -0.0030727386, 0.041381836, -0.000954628, -0.023635864, -0.043945312, -0.008216858, -0.0119018555, 0.022247314, -0.017227173, -0.01348114, 0.00090932846, -0.0039100647, -0.05819702, -0.050201416, -0.035705566, 0.00058984756, -0.024673462, 0.004119873, -0.004058838, 0.052856445, 0.007106781, -0.03378296, 0.01663208, -0.019012451, -0.0060691833, 0.01084137, 0.015083313, -0.007167816, 0.010116577, 0.015640259, -0.02973938, 0.020568848, -0.033172607, -0.022872925, 0.0059432983, -0.019515991, 0.0023422241, -0.0010995865, -0.033111572, -0.05050659, -0.02142334, -0.06506348, -0.07434082, -0.011550903, -0.0770874, 0.020309448, 0.07458496, 0.015007019, -0.03262329, 0.0014743805, 0.03010559, 0.029281616, 0.057617188, 0.029388428, -0.08331299, -0.032989502, -0.030914307, -0.05090332, -0.03567505, -0.055114746, 0.017745972, -0.0357666, 0.006462097, -0.0014858246, 0.035339355, 0.023590088, 0.0018234253, 0.033111572, 0.05496216, 0.031402588, 0.035125732, -0.027511597, 0.027999878, 0.046051025, -0.049835205, -0.032958984, 0.016067505, 0.01977539, 0.017364502, -0.026672363, 0.016342163, -0.054504395, -0.078063965, 0.012504578, -0.011619568, -0.03225708, -0.0044441223, -0.028747559, -0.028762817, -0.05758667, -0.0014600754, 0.076538086, -0.009399414, -0.026504517, -0.03817749, 0.0050849915, 0.008102417, 0.00793457, 0.025939941, -0.008895874, 0.015777588, -0.036254883, 0.0034008026, -0.04537964, 0.008018494, 0.010734558, -0.021011353, 0.017425537, -0.016738892, 0.0118255615, 0.0036182404, 0.005176544, -0.0093688965, -0.007926941, 0.0020217896, 0.02998352, -0.012756348, 0.057403564, 0.00034880638, -0.007396698, 0.024841309, -0.05709839, -0.027801514, -0.005378723, -0.006290436, 0.01675415, -0.00774765, -0.022567749, -0.009643555, -0.03805542, -0.0129776, -0.030853271, 0.0070495605, 0.006340027, 0.037963867, 0.021774292, 0.0011463165, 0.066833496, 0.022766113, 0.03768921, 0.004547119, -0.018249512, -0.027435303, -0.035827637, 0.03656006, -0.019927979, 0.0070991516, -0.041870117, 0.023345947, -0.0055770874, 0.003189087, 0.0045433044, -0.026367188, 0.070495605, 0.039764404, -0.0060768127, -0.0003244877, -0.05065918, 0.027252197, 0.03515625, -0.049926758, -0.05908203, -0.064697266, 0.026153564, -0.13012695, 0.08068848, 0.022567749, -0.017822266, 0.072265625, 0.030197144, -0.00680542, 0.09906006, 0.044281006, 0.008239746, 0.01701355, 0.071899414, -0.02607727, 0.04559326, 0.008865356, -0.009635925, 0.038757324, 0.023910522, -0.050689697, 0.010688782, -0.002603531, -0.05581665, -0.06365967, 0.017669678, 0.009613037, 0.0021018982, 0.015197754, -0.067871094, -0.030319214, -0.031219482, 0.051696777, 0.028289795, -0.02180481, -0.009346008, -0.01626587, 0.011238098, -0.041778564, 0.0029525757, 0.003068924, 0.027694702, 0.008216858, 0.03060913, -0.01826477, 0.007762909, -0.021621704, 0.009864807, 0.0085372925, 0.03527832, 0.015457153, -0.014823914, 0.038360596, 0.016098022, -0.013130188, 0.007457733, -0.0044670105, -0.007980347, -0.016143799, -0.022232056, 0.022476196, 0.041534424, -0.00038695335, -0.0116119385, -0.0010662079, -0.040496826, -0.052459717, -0.025024414, -0.010726929, -0.004486084, -0.041992188, -0.027450562, -0.091308594, -0.044830322, -0.014213562, -0.0041656494, -0.045410156, 0.03564453, 0.00078725815, -0.04473877, 0.0011434555, 0.011520386, -0.032196045, -0.0006008148, -0.043395996, -0.00023782253, 0.032226562, -0.01234436, 0.021408081, -0.026870728, -0.020751953, 0.00881958, 0.06958008, -0.0051231384, 0.029174805, -0.024337769, -0.037261963, -0.008369446, 0.038085938, 0.070617676, -0.035003662, 0.019470215, -0.029281616, -0.037078857, -0.07598877, -0.011367798, 0.059143066, -0.037231445, -0.025238037, -0.0013141632, 0.09906006, -0.020599365, 0.029525757, -0.031173706, -0.012123108, -0.0031604767, -0.00919342, -0.06994629, -0.041900635, 0.0013952255, 0.013877869, 0.0051956177, -0.0045700073, -0.011054993, 0.03778076, -0.0126571655, 0.021255493, 0.0009498596, 0.0041007996, 0.039886475, -0.03942871, 0.011383057, -0.028030396, -0.010925293, -0.025604248, 0.032928467, -0.0496521, 0.059814453, 0.061340332, -0.014411926, 0.00033330917, 0.005420685, -0.01878357, -0.04522705, 0.014457703, 0.011314392, -0.032470703, -0.02519226, -0.027786255, -0.0025310516, -0.03878784, -0.019882202, -0.005947113, -0.011146545, 0.011512756, -0.0007200241, 0.011306763, -0.019760132, 0.007522583, 0.045684814, -0.00995636, 0.025238037, -0.02293396, -0.05392456, 0.053009033, -0.041992188, -0.052703857, 0.006958008, -0.01159668, -0.023971558, 0.0051231384, -0.011810303, -0.037872314, -0.001534462, 0.037719727, -0.011604309, 0.0054359436, -0.007457733, 0.013412476, -0.0017251968, 0.012466431, 0.06500244, -0.051940918, 0.021652222, 0.039916992, -0.010887146, -0.0135269165, 0.017440796, -0.023147583, 0.038970947, -0.011161804, -0.03213501, 0.0042648315, -0.00016367435, -0.014572144, -0.045074463, 0.04888916, -0.0010137558, -0.015113831, -0.057800293, 0.00012350082, 0.061401367, 0.03894043, 0.018325806, -0.050811768, 0.051696777, 0.0067749023, -0.032165527, 0.0010232925, 0.08404541, -0.024047852, 0.010025024, 0.028564453, 0.016326904, -0.039367676, -0.0071792603, -0.02293396, -0.0031147003, -0.007167816, -0.022079468, 0.0058784485, 0.014884949, -0.0053520203, -0.0041542053, -0.008018494, -0.025344849, -0.06298828, 0.034454346, -0.025863647, 0.003929138, 0.0033836365, 0.037750244, 0.026107788, 0.020050049, -0.04574585, -0.04534912, -0.012649536, -0.01763916, -0.03805542, 0.07110596, -0.027404785, -0.036071777, 0.020767212, -0.019836426, 0.011756897, -0.016738892, -0.008262634, -0.02394104, 0.011184692, 0.0061950684, -0.014183044, -0.003414154, 0.068847656, -0.036010742, -0.046966553, -0.043884277, 0.039215088, -0.0056037903, 0.018814087, 0.05947876, 0.025253296, 0.009605408, 0.049072266, 0.025619507, -0.0635376, 0.028869629, 0.014053345, -0.11773682, -0.008575439, -0.035491943, -0.005844116, 0.0024204254, 0.036346436, -0.003276825, 0.051696777, -0.013458252, -0.05404663, 0.0016794205, 0.0317688, -0.0028362274, -0.013725281, 0.019424438, 0.002357483, -0.0023708344, -0.019348145, -0.0042381287, -0.024627686, 0.004585266, 0.030059814, 0.014419556, 0.013160706, -0.035461426, 0.016647339, 0.036987305, 0.015686035, 0.059326172, -0.01727295, 0.018936157, 0.015808105, 0.015701294, -0.012199402, 0.037872314, 0.0124053955, 0.0031929016, -0.00844574, -0.007335663, 0.03375244, -0.005039215, -0.0050735474, 0.010070801, 0.022140503, 0.018218994, 0.0413208, 0.006713867, 0.019592285, -0.009132385, 0.0032653809, 0.01210022, 0.037719727, -0.015716553, -0.015258789, -0.012336731, -0.014915466, 0.003616333, -0.010810852, 0.017730713, -0.019500732, 0.037750244, 0.014678955, -0.016921997, 0.012290955, -0.005794525, 0.047576904, 0.016326904, -0.018447876, 0.031311035, 0.018249512, 0.019546509, -0.0006146431, -0.0070343018, -0.035858154, 0.0035991669, -0.0043029785, 0.051818848, -0.022445679, 0.03793335, 0.020568848, -0.08996582, 0.03933716, -0.0076560974, -0.016693115, 0.006351471, -0.029373169, -0.022857666, -0.018417358, 0.02897644, 0.023345947, 0.029769897, -0.00032901764, 0.038909912, -0.040283203, 0.0064697266, -0.03289795, -0.03491211, 0.021865845, 0.009681702, -0.016311646, 0.007030487, -0.025650024, 0.016494751, 0.037597656, -0.017684937, 0.0054473877, -0.005542755, 0.015396118, -0.016403198, 0.0017776489, -0.031707764, -0.02368164, 0.028411865, -0.0022888184, -0.012199402, -0.014404297, 0.023651123, 0.0069770813, -0.019180298, -0.07287598, 0.042510986, -0.070251465, 0.034057617, 0.022613525, 0.045013428, -0.032043457, -0.025558472, 0.0022411346, -0.020385742, 0.012580872, 0.01826477, 0.0015573502, 0.04611206, -0.020248413, -0.012878418, 0.05709839, 0.01335144, 0.02520752, -0.05444336, 0.02607727, -0.007904053, -0.025344849, -0.021087646, -0.027664185, 0.004787445, 0.020370483, -0.0013685226, -0.039611816, -0.018951416, 0.0129470825, -0.0005302429, -0.0067100525, -0.028839111, 0.022323608, -0.010093689, 0.019607544, -0.03677368, 0.03677368, -0.046691895, -0.09289551, -0.05065918, -0.0014953613, -0.05630493, 0.043304443, 0.012413025, -0.017120361, 0.016860962, -0.00025224686, 0.017196655, -0.066101074, -0.00957489, -0.027023315, -0.025756836, -0.005256653, 0.061828613, -0.038513184, -0.03729248, -0.043884277, 0.015556335, -0.051879883, -0.029953003, -0.026794434, 7.969141e-05, 0.017044067, -0.022003174, -0.017822266, 0.0013504028, 0.02268982, -0.024398804, -0.026885986, -0.02911377, -0.022628784, 0.08148193, 0.0020370483, -0.004146576, -0.01701355, 0.049743652, 0.007972717, 0.03375244, 0.0017175674, 0.015686035, -0.07122803, 0.00057029724, -0.03994751, 0.021087646, -0.004398346, -0.011497498, 0.01210022, -0.020217896, -0.07220459, -0.020523071, -0.01876831, 0.04458618, 0.012863159, 0.0043563843, 0.022994995, -0.017684937, -0.051513672, -0.01499176, -0.016296387, 0.018981934, 0.04006958, 0.014923096, 0.017593384, 0.028015137, -0.022033691, 0.03100586, 0.017028809, -0.006038666, 0.0079422, -0.0093307495, 0.011199951, -0.0048942566, -0.021835327, 0.019424438, -0.026794434, 0.005874634, -0.0058250427, 0.0118637085, -0.025604248, -0.027923584, -0.020996094, 0.022888184, -0.035095215, -0.050201416, -0.02670288, -0.033996582, -0.016433716, 0.02053833, -0.025619507, 0.0074768066, -0.019134521, -0.008636475, -0.036956787, 0.022399902, 0.019958496, 0.027542114, -0.031707764, 0.053497314, 0.02986145, 0.04159546, -0.018310547, -0.015525818, -0.027740479, 0.038269043, -0.019302368, -0.00087213516, 0.029052734, -0.04296875, -0.0017948151, 0.028701782, -0.034820557, -0.05935669, 0.04345703, 0.03945923, 0.010253906, 0.024215698]}, "B07H636NBH": {"id": "B07H636NBH", "original": "Brand: Weber\nName: Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit\nEquipped with the powerful Gs4 high performance grilling system\nUse the side burner to Simmer BBQ sauce or saut\u00e9 veggies; Infinite control burner valves\nSear station creates an intense heat zone to quickly add sear marks on meat\nDimensions: Lid Open 62\"H x 59\"W x 31\"D || Lid Closed 47\"H x 59\"W x 29\"D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches\n", "metadata": {"Name": "Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Liquid Propane unit\nEquipped with the powerful Gs4 high performance grilling system\nUse the side burner to Simmer BBQ sauce or saut\u00e9 veggies; Infinite control burner valves\nSear station creates an intense heat zone to quickly add sear marks on meat\nDimensions: Lid Open 62\"H x 59\"W x 31\"D || Lid Closed 47\"H x 59\"W x 29\"D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02859497, -0.0013895035, -0.04232788, 0.007610321, -0.02128601, -0.012611389, -0.015342712, 0.0065727234, -0.02557373, 0.02078247, -0.015792847, 0.04107666, 0.00843811, -0.030654907, 0.034973145, 0.0048103333, 0.039398193, 0.02911377, 0.052825928, -0.011802673, 0.012619019, 0.019760132, 0.009338379, 0.0859375, 0.04812622, -0.06915283, 0.0045928955, -0.007381439, 0.03982544, 0.013877869, 0.029342651, -0.0060310364, 0.018295288, 0.010147095, -0.019714355, -0.047668457, 0.050994873, -0.02180481, 0.00014126301, 0.00020205975, 0.046783447, -0.017547607, -0.0041275024, 0.014633179, -0.023284912, -0.032409668, 0.04537964, -0.0075263977, 0.053344727, 0.03479004, -0.030410767, 0.008888245, -0.038238525, 0.004798889, -0.018676758, -0.025466919, 0.020614624, -0.011108398, 0.015838623, -0.014671326, -0.005622864, 0.01033783, 0.025512695, -0.0026283264, -0.019256592, 0.0079422, 0.08782959, -0.01663208, -0.0049743652, -0.030776978, 0.019134521, 0.028701782, 0.018676758, 0.008666992, -0.014678955, -0.034332275, 0.013702393, -0.018295288, 0.037719727, 0.015182495, -0.0076293945, -0.05014038, -0.008102417, 0.027572632, 3.9100647e-05, 0.038482666, -0.02293396, -0.01386261, 0.016616821, -0.024627686, 0.0040359497, -0.029663086, 0.0018196106, 0.039916992, 0.006542206, -0.056518555, -0.023483276, -0.070373535, 0.048095703, -0.008903503, 0.03765869, -0.04336548, 0.031082153, 0.0031394958, 0.003364563, 0.05596924, -0.011009216, 0.005393982, 0.01499176, -0.012008667, -0.01663208, -0.050201416, -0.00064468384, -0.017074585, -0.02458191, -0.0039253235, -0.022323608, 0.010047913, 0.013793945, -0.017807007, -0.0043296814, -0.008491516, 0.025512695, 0.040252686, -0.0018882751, 0.024673462, -0.025146484, -0.021255493, -0.049072266, 0.004917145, -0.037841797, 0.031036377, 0.07495117, 0.054779053, 0.0057868958, -0.009208679, 0.0113220215, 0.013977051, 0.0071525574, -0.009941101, -0.005973816, -0.01586914, 0.011314392, -0.007167816, -0.015510559, 0.050872803, 0.024749756, -0.01260376, -0.03149414, -0.074157715, 0.017501831, -0.030776978, 0.06604004, 0.00028586388, -0.07208252, 0.005393982, -0.010810852, 0.00095033646, -0.06585693, -0.056640625, -0.0070343018, -0.02217102, -0.0090789795, 0.006023407, -0.030838013, 0.045532227, 0.015686035, 0.0016222, 0.020370483, 0.052459717, -0.011741638, -0.053497314, 0.04510498, 0.01423645, -0.024093628, 0.032073975, -0.020568848, 0.036254883, 0.027664185, -0.033996582, -0.025222778, -0.052825928, 0.050109863, -0.0053634644, -0.005897522, 0.040008545, 0.021224976, -0.002696991, -0.013969421, -0.006061554, 0.042388916, 0.06402588, 0.004169464, 0.010894775, 0.024291992, -0.006412506, -0.041168213, 0.018188477, -0.009422302, -0.04876709, -0.0023021698, 0.0047798157, -0.019821167, -0.0053977966, 0.0028457642, -0.035064697, 0.011116028, 0.0032310486, 0.035308838, 0.018447876, -0.027801514, -0.024719238, 0.024520874, -0.05053711, -0.025985718, 0.022903442, -0.040740967, -0.005622864, 0.008460999, -0.013839722, 0.046905518, -0.015625, 0.024810791, 0.00592041, 0.00014340878, 0.021728516, -0.028671265, 0.031921387, 0.020401001, 0.0149002075, 0.0129776, -0.017105103, 0.10614014, 0.101867676, -0.012420654, 0.032958984, 0.07525635, 0.051452637, -0.032440186, -0.02468872, 0.010925293, 0.0016345978, -0.05505371, -0.025253296, 0.0044670105, -0.0016584396, 8.3744526e-05, 0.0017967224, -0.019454956, 0.010032654, 0.05621338, 0.0206604, 0.036193848, 0.016540527, -0.01852417, 0.034942627, -0.021377563, -0.00995636, -0.004852295, 0.03149414, -0.007843018, 0.06173706, 0.03265381, 0.013916016, 0.04324341, 0.011444092, 0.04055786, 0.032318115, -0.031097412, 0.0031414032, 0.01637268, 0.008277893, -0.007659912, -0.030929565, -0.007282257, 0.008926392, -0.03451538, 0.031402588, 0.013801575, -0.022262573, 0.016555786, 0.022354126, -0.0048179626, -0.0012226105, 0.04534912, 0.015960693, -0.011199951, -0.0049095154, -0.016189575, 0.02909851, 0.059295654, -0.020690918, -0.010124207, -0.018676758, -0.008888245, -0.013122559, 0.07891846, 0.005680084, -0.009155273, 0.00087070465, 0.05807495, 0.029876709, -0.030212402, 0.0051193237, 0.005821228, -0.012771606, 0.024551392, 0.020904541, 0.012428284, -0.019592285, -0.0068893433, 0.02557373, 0.0158844, -0.012275696, 0.024261475, -0.008392334, -0.0046463013, 0.03894043, 0.031188965, 0.0390625, -0.013824463, -0.0071105957, -0.03543091, -0.02104187, -0.0104599, 0.03375244, -0.022827148, 3.796816e-05, -0.021850586, -0.004673004, -0.045959473, -0.05496216, -0.021438599, 0.0067710876, -0.015045166, 0.0047416687, 0.024536133, 0.0051651, 0.0082092285, -0.020828247, 0.041870117, -0.0018529892, -0.024627686, 0.0019407272, -0.055633545, -0.024612427, 0.045440674, 0.003479004, -0.013755798, -0.0005736351, 0.02684021, -0.018203735, -0.010551453, -0.018707275, -0.023712158, -0.043395996, 0.009712219, -0.0440979, -0.07891846, -0.093444824, 0.004421234, -0.02166748, -0.0625, -0.010902405, 0.051116943, -0.016738892, -0.033966064, -0.028640747, -0.015304565, 0.016082764, 0.002111435, 0.018859863, -0.06719971, -0.030914307, -0.034423828, 0.023330688, 0.030151367, -0.029571533, -0.005584717, 0.013122559, 0.010261536, 0.037384033, -0.05331421, 0.00070858, -0.0029010773, 0.027008057, 0.024230957, 0.02746582, 0.014160156, -0.03970337, 0.010658264, 0.06274414, -0.0061454773, -0.029525757, 0.00894928, -0.0025844574, 0.01209259, 0.028320312, -0.0064048767, -0.029632568, -0.08618164, 0.036376953, 0.023849487, -0.027252197, -0.04449463, -0.010261536, -0.08404541, -0.026031494, -0.0013408661, 0.057800293, -0.01638794, -0.0038013458, -0.032989502, 0.017242432, 0.0053977966, 0.010406494, 0.011100769, -0.009490967, 0.008865356, -0.008743286, 0.025009155, -0.022781372, 0.023284912, 0.025634766, -0.03857422, 0.019821167, -0.03314209, 0.02709961, -0.05722046, 0.032287598, -0.0005927086, -0.0020771027, -0.035247803, -0.01473999, 0.014762878, 0.044921875, 0.016525269, 0.023406982, 0.009613037, -0.008171082, -0.013183594, -0.015365601, -0.010887146, 0.054107666, -0.009857178, -0.0019235611, -0.038116455, -0.03878784, -0.016693115, -0.04748535, -0.0036010742, 0.010108948, 0.033966064, 0.027801514, -0.0010280609, 0.096069336, 0.015274048, 0.053100586, -0.023010254, -0.003522873, 0.00013124943, -0.04675293, 0.06100464, -0.00566864, -0.016464233, -0.010948181, 0.048797607, 0.037139893, 0.007156372, -0.005088806, 0.01612854, 0.010017395, 0.0061187744, -0.00381279, -0.042877197, -0.017700195, 0.0703125, -0.0022220612, 0.035095215, -0.057495117, -0.03152466, -0.0065612793, -0.047058105, 0.097473145, 0.07220459, -0.026657104, 0.093566895, 0.069885254, -0.03845215, 0.016204834, 0.028778076, -0.001244545, -0.026229858, 0.052124023, -0.0619812, -0.018722534, 0.02104187, -0.06933594, 0.020248413, 0.009033203, -0.056030273, 0.0065994263, -0.001660347, -0.043792725, -0.008934021, -0.0052871704, -0.018203735, 0.019210815, 0.0335083, -0.014083862, -0.00970459, -0.007827759, 0.00032901764, 0.021575928, -0.033203125, -0.04574585, 0.00466156, -0.03515625, -0.03894043, 0.034240723, 0.026992798, -0.011817932, 0.00995636, 0.035980225, 0.005329132, 0.008369446, -0.03704834, -0.03274536, -0.01776123, 0.013633728, -0.0024471283, 0.002910614, 0.015625, -0.00063991547, 0.033996582, 0.012634277, 0.00047397614, -0.01008606, -0.046539307, -0.03086853, -0.014770508, 0.010650635, 0.003326416, -0.036834717, -0.014839172, -0.030029297, -0.025497437, -0.0012865067, -0.055389404, -0.020904541, 0.01676941, 0.035369873, -0.04699707, 0.013473511, -0.009628296, -0.046691895, -0.06518555, 0.03555298, -0.007457733, -0.011734009, -0.008071899, 0.018615723, -0.041137695, -0.0018968582, -0.06744385, -0.01096344, 0.05960083, 0.031921387, 0.046813965, -0.032073975, 0.008918762, -0.020080566, 0.092163086, 0.021987915, 0.020019531, -0.048980713, -0.020248413, 0.014389038, 0.009384155, 0.022079468, 0.008331299, -0.01058197, -0.03552246, -0.022735596, -0.053649902, -0.004688263, 0.03503418, -0.014305115, -0.034362793, -0.0074691772, 0.051116943, -0.015411377, 0.0062828064, -0.004383087, 0.014808655, 0.01210022, 0.014060974, -0.047912598, -0.005004883, -0.0027446747, 0.0008625984, 0.022613525, 0.0062294006, 0.0064315796, -0.009132385, 0.057250977, 0.01586914, 0.044403076, -0.024627686, -0.018035889, 0.02432251, 0.0113220215, -0.030212402, -0.012283325, -0.053375244, 0.0289917, -0.042053223, 0.07098389, 0.041137695, 0.0059776306, 0.014717102, 0.022140503, 0.0012845993, -0.06781006, -0.018493652, -0.00969696, -0.009124756, -0.022537231, -0.030426025, 0.011802673, -0.021606445, -0.00730896, -0.016189575, -0.0104904175, -0.012672424, -0.01701355, 0.015052795, -0.023513794, 0.02494812, 0.01676941, -0.0008420944, 0.02784729, 0.013290405, -0.028900146, 0.03164673, -0.02746582, -0.018630981, 0.010375977, -0.00066423416, -0.006088257, 0.0055274963, 0.009101868, -0.029846191, 0.009941101, 0.021942139, 0.012931824, -0.0019168854, -0.021942139, 0.019546509, -0.01751709, -0.0063095093, 0.042388916, -0.060913086, 0.038146973, 0.022003174, -0.019577026, -0.052703857, 0.025482178, -0.05923462, 0.052215576, 0.02545166, -0.087524414, 0.035461426, 0.00920105, 0.0019702911, -0.05419922, 0.0715332, -0.02947998, -0.010177612, -0.051635742, 0.0063056946, 0.031311035, 0.051605225, -0.00096845627, -0.040222168, 0.032562256, -0.029037476, -0.02381897, -0.009101868, 0.049194336, -0.037628174, 0.0049324036, 0.005378723, -0.0038661957, -0.049102783, -0.009925842, -0.08258057, 0.002090454, 0.041259766, 0.033935547, 0.008483887, -0.02267456, -0.052581787, -0.08831787, -0.033233643, 0.037322998, 0.010551453, -0.012817383, -0.027450562, -0.008460999, -0.007144928, -0.0002632141, -0.0020885468, 0.0016107559, -0.047180176, -0.030548096, -0.009132385, 0.023132324, 0.0034160614, 0.043884277, -0.03869629, -0.010948181, 0.004295349, -0.0013608932, 0.013221741, 0.03314209, -0.056732178, -0.0050582886, -0.013442993, -0.011703491, -0.016921997, -0.0059127808, 0.06817627, -0.037322998, -0.052947998, -0.024658203, 0.02909851, -0.02029419, -0.030426025, 0.062561035, 0.038879395, -0.0024375916, 0.03704834, -0.00856781, -0.052703857, -0.013252258, -0.0029678345, -0.08508301, -0.034179688, -0.042144775, 0.0010232925, -0.0035095215, -0.02507019, -0.014091492, 0.038879395, 0.02178955, -0.011917114, -0.02204895, -0.027236938, 0.009880066, -0.04928589, 0.0007314682, -0.011291504, 0.016784668, 0.0001385212, -0.0020008087, -0.030090332, 0.013687134, 0.023498535, 0.03262329, 0.012611389, -0.019210815, 0.0033187866, 0.04043579, -0.02017212, 0.06365967, -0.0044784546, -0.010520935, -0.010429382, 0.036499023, 0.0029315948, 0.03778076, -0.021240234, -0.019012451, -0.043121338, 0.037719727, 0.029067993, 0.055755615, -0.060668945, -0.0078048706, 0.040100098, 0.048461914, 0.051361084, 0.034088135, 0.040771484, -0.016296387, 0.0044784546, 0.013893127, -0.0068626404, -0.024612427, -0.012046814, -0.0440979, 2.2947788e-05, 0.018753052, -0.0015382767, 0.036102295, -0.015792847, 0.046722412, 0.017120361, -0.044525146, 0.02381897, -0.022506714, 0.008712769, 0.010444641, -0.021118164, 0.03100586, 0.022064209, 0.0031757355, -0.0035171509, -0.008811951, -0.0075263977, 0.018951416, -0.0042152405, 0.037261963, -0.05517578, 0.03390503, 0.003189087, -0.055786133, -0.0035419464, 0.059173584, 0.003501892, 0.015991211, -0.0925293, -0.035369873, -0.025222778, 0.0034885406, -0.0039749146, 0.028030396, 0.040649414, 0.0155181885, 0.009506226, 0.008758545, -0.020141602, 0.0027275085, -0.012023926, 0.0105896, 0.02268982, -0.011268616, -0.037994385, 0.05545044, 0.01461792, -0.0129776, 0.044708252, -0.020629883, 0.0041046143, -0.024520874, 0.025360107, -0.040893555, -0.06829834, 0.005935669, 0.047088623, -0.055999756, -0.01612854, 0.0028419495, 0.008659363, -0.0017433167, -0.04626465, 0.011550903, -0.048706055, 0.02418518, 0.034362793, 0.03338623, -0.068847656, -0.01977539, -0.020629883, -0.02180481, -0.003622055, 0.06756592, -0.01109314, 0.019683838, 0.055236816, 0.05609131, 0.06689453, -0.009765625, 0.025421143, 0.022705078, -0.008453369, 0.031829834, -0.010070801, -0.012420654, 0.0066604614, 0.017150879, 0.015106201, 0.043548584, 0.031921387, 0.016662598, 0.032043457, 0.0014133453, -0.02861023, -0.0015411377, 0.028869629, -0.0496521, 0.037597656, -0.028915405, -0.045166016, 0.0017786026, -0.023239136, -0.03112793, -0.001824379, -0.060333252, -0.019424438, -0.031036377, -0.041656494, -0.008224487, 0.0022525787, -0.014961243, -0.04159546, -0.0079574585, -0.0058021545, 0.03765869, 0.0033473969, 0.04547119, -0.02444458, -0.029678345, 0.013130188, 0.020614624, -0.0064315796, -0.048614502, 0.0054130554, -0.014015198, 0.0015935898, -0.01259613, 0.006477356, 0.06842041, 0.021881104, -0.017791748, 0.0090789795, -0.014923096, -0.036010742, 0.035125732, 0.008956909, -0.0127334595, 0.018157959, 0.043182373, -0.021469116, 0.052459717, 0.015701294, -0.0050201416, -0.05026245, -0.036743164, -0.064697266, -0.007835388, 0.0039596558, -0.015487671, 0.012870789, 0.014167786, -0.03579712, 0.020233154, 0.00856781, -0.01210022, 0.023910522, -0.019958496, 0.038085938, -0.019332886, -0.03845215, -0.068237305, -0.011917114, 0.030563354, 0.06500244, -0.0035762787, 0.001964569, -0.006477356, -0.026473999, 0.012573242, -0.014381409, -0.0031814575, -0.012184143, 0.007297516, -0.0015010834, -0.028640747, 0.0015907288, 0.0006952286, -0.024215698, -0.039855957, 0.042510986, 0.023239136, -0.034576416, 0.0020427704, -0.025299072, -0.009208679, 0.0011911392, -0.045684814, -0.013427734, -0.03286743, -0.0015277863, 0.02079773, -0.0065841675, -0.0113220215, 0.0061683655, -0.005760193, -0.055999756, 0.020523071, 0.045806885, 0.02709961, -0.064331055, 0.015106201, 0.038482666, 0.04663086, 0.0025730133, -0.11682129, -0.04244995, 0.042297363, -0.013168335, -0.021499634, 0.016098022, -0.03564453, 0.018035889, 0.0284729, 0.0071792603, 0.005558014, -0.0044517517, -0.0047912598, -0.011383057, 0.00756073]}, "B07H5RHYCF": {"id": "B07H5RHYCF", "original": "Brand: Weber\nName: Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel\nDescription: \nFeatures: GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\n7mm diameter solid stainless steel rod cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\nCompatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature\n", "metadata": {"Name": "Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel", "Brand": "Weber", "Description": "", "Features": "GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\n7mm diameter solid stainless steel rod cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\nCompatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0076789856, 0.015716553, -0.059020996, -0.018630981, -0.00027012825, -0.012359619, -0.02609253, 0.001206398, -0.020507812, 0.036315918, 0.022598267, 0.01020813, 0.025970459, -0.045532227, 0.016433716, 0.0127334595, 0.022888184, 0.027893066, 0.0317688, -0.02508545, 0.009140015, -0.01725769, 0.015686035, 0.08996582, 0.045684814, -0.05834961, -0.025970459, 0.020401001, 0.009552002, 0.017501831, 0.023773193, -0.00919342, 0.026000977, 0.016235352, -0.027557373, -0.05239868, 0.03652954, -0.018630981, -0.030792236, 0.0418396, 0.025558472, -0.0074882507, 0.01638794, 0.002204895, -0.009727478, -0.04373169, 0.043670654, -0.02961731, 0.046173096, 0.04751587, -0.014678955, 0.062683105, -0.0317688, 0.015777588, 0.0034675598, -0.0007157326, 0.03390503, -0.008277893, 0.00299263, -0.017745972, -0.014144897, 0.03894043, 0.009803772, 0.010475159, -0.03353882, 0.01876831, 0.06719971, -0.016525269, 0.0065956116, -0.052856445, -0.0021896362, 0.020019531, 0.026229858, -0.016281128, -0.0020561218, -0.020004272, 0.010169983, -0.011375427, 0.023483276, 0.008094788, -0.031585693, -0.034362793, 0.0030460358, 0.01889038, -0.005592346, 0.041931152, -0.02709961, -0.0118637085, 0.007774353, -0.025619507, 0.003414154, -0.036254883, -0.012702942, 0.044281006, 5.477667e-05, -0.03768921, -0.03161621, -0.06890869, 0.033813477, 0.0079574585, 0.02645874, -0.030075073, 0.02909851, 0.0022945404, 0.0016326904, 0.048431396, -0.010345459, 0.03250122, 0.026947021, 0.00058603287, -0.0004003048, -0.05569458, 0.0064048767, -0.006652832, -0.034423828, 0.023529053, 0.0035190582, -0.016586304, 0.0026226044, -0.032958984, 0.005634308, 0.013259888, -0.0072021484, 0.019470215, 0.0061683655, 0.022521973, -0.023895264, -0.013519287, -0.04510498, -0.0011768341, -0.032714844, 0.011291504, 0.072753906, 0.080078125, 0.028793335, 0.0044059753, 0.035217285, -0.00020086765, 0.021057129, -0.020858765, 0.012069702, -0.0054016113, -0.0010471344, 0.012626648, 0.020141602, 0.037597656, 0.035858154, 0.00598526, -0.027526855, -0.052001953, 0.020370483, 0.0074157715, 0.047088623, 0.017288208, -0.06933594, 0.018035889, -0.0032596588, -0.00016915798, -0.061431885, -0.048553467, 0.00014257431, -0.029891968, -0.0016918182, 0.013679504, -0.03451538, 0.047851562, 0.00217247, 0.0046195984, 0.004360199, 0.028549194, -0.022567749, -0.009681702, 0.015380859, -0.0041160583, -0.012565613, -0.0013189316, -0.026947021, 0.014678955, 0.05316162, -0.049621582, -0.041992188, -0.05126953, 0.066467285, -0.012527466, 0.0068244934, 0.016464233, 0.00566864, -0.023330688, 0.0035953522, -0.00969696, 0.04232788, 0.039093018, 0.005744934, 0.014312744, 0.020202637, -0.0018911362, -0.050354004, 0.01939392, -0.011131287, -0.051452637, 0.047821045, 0.010421753, -0.0044517517, -0.017410278, 0.0034179688, -0.028793335, 0.015945435, 0.0040016174, 0.01020813, 0.0126571655, -0.022247314, -0.052124023, 0.04522705, -0.057037354, -0.013214111, 0.0009355545, -0.01965332, 0.016296387, 0.015899658, 0.009025574, 0.04159546, 0.0014600754, 0.015655518, 0.0012540817, 0.014694214, 0.042907715, -0.020584106, 0.028045654, 0.061828613, 0.02053833, 0.016113281, -0.030319214, 0.101257324, 0.08306885, -0.023880005, 0.024932861, 0.07244873, 0.04269409, -0.027832031, -0.012702942, 0.01499176, -0.025634766, -0.057403564, -0.033111572, -0.02583313, -0.017562866, -0.001250267, -0.0022239685, -0.045410156, -0.026687622, 0.04815674, 0.031433105, 0.040008545, 0.0069847107, -0.028518677, 0.048950195, -0.0009088516, -0.015853882, -0.03149414, 0.04916382, -0.00035762787, 0.07183838, 0.0056533813, 0.027374268, 0.058746338, 0.011779785, 0.042114258, 0.017196655, -0.056854248, 0.025680542, 0.03161621, 0.005176544, -0.016647339, -0.03744507, 0.01687622, -0.014671326, -0.021972656, 0.037200928, 0.00010794401, -0.027236938, 0.017745972, 0.030715942, -0.0067596436, -0.011955261, 0.030563354, 0.015380859, -0.006084442, -0.0028038025, -0.043945312, 0.00919342, 0.06427002, -0.043151855, -0.03012085, -0.050811768, -0.026107788, -0.023956299, 0.07147217, 0.023803711, -0.016189575, -0.009300232, 0.03793335, 0.016418457, -0.05380249, 0.011497498, 0.00315094, -0.026168823, 0.032806396, 0.014793396, 0.0066184998, -0.029754639, 0.014305115, 0.034851074, 0.024993896, 0.032318115, 0.017684937, -0.011489868, 0.019104004, 0.058288574, 0.025497437, 0.011001587, -0.0050354004, -0.010231018, -0.048675537, -0.026351929, -0.015266418, 0.037902832, -0.035095215, -0.0013017654, -0.015037537, -0.021820068, -0.078308105, -0.062683105, -0.046722412, 0.045043945, -0.006549835, 0.0121154785, 0.029342651, -0.022979736, 0.008956909, -0.00459671, 0.056671143, 0.019348145, -0.0178833, 0.004085541, -0.051879883, -0.024612427, 0.03479004, -0.004802704, -0.030532837, 0.007820129, 0.030441284, -0.01423645, -0.014083862, 0.0034370422, 0.000385046, -0.051574707, -0.007865906, -0.022918701, -0.06628418, -0.07623291, 0.0067710876, -0.0060157776, -0.05050659, -0.026550293, 0.04534912, -0.03262329, -0.043762207, -0.025680542, -0.012741089, 0.027542114, 0.01335144, 0.010551453, -0.07702637, -0.021636963, -0.042053223, 0.02218628, 0.05444336, -0.025054932, -0.00079250336, 0.02204895, 0.0044136047, 0.017684937, -0.030380249, -0.006248474, -0.007713318, 0.028289795, 0.015136719, 0.020233154, 0.015296936, -0.028015137, -0.00055265427, 0.05105591, -0.013793945, -0.024917603, -0.013900757, -0.005630493, 0.0027713776, -0.0024662018, -0.0058174133, -0.01802063, -0.07244873, 0.030380249, 0.028533936, -0.029342651, -0.028884888, -0.022338867, -0.07232666, -0.02696228, -0.0126571655, 0.046203613, -0.021011353, -0.0038223267, -0.043121338, 0.031921387, 0.006969452, -0.0096588135, 0.0008621216, -0.009216309, -0.00052785873, -0.019088745, 0.02508545, -0.03286743, 0.016708374, 0.030685425, -0.028778076, 0.025177002, -0.03427124, 0.023834229, -0.04840088, 0.02508545, 0.0041770935, 0.0006542206, -0.028717041, -0.019058228, 0.011421204, 0.06866455, 0.023849487, 0.0317688, -9.7453594e-05, -0.0028133392, -0.033935547, -0.011306763, -0.039031982, 0.026519775, -0.022232056, -0.0072898865, -0.019317627, -0.05053711, -5.7399273e-05, -0.04034424, -0.010314941, 0.005290985, 0.057647705, 0.02947998, 0.012290955, 0.05001831, -0.0072364807, 0.04888916, -0.018203735, 0.0017089844, 0.0055160522, -0.03933716, 0.0446167, -0.005004883, -0.03829956, -0.011528015, 0.0368042, 0.03366089, 0.016708374, -0.028167725, 0.011528015, 0.04208374, 0.02482605, -0.0011796951, -0.042785645, -0.03894043, 0.06549072, 0.011444092, 0.0070228577, -0.066833496, -0.026168823, -0.007724762, -0.097717285, 0.0657959, 0.041381836, -0.021224976, 0.055603027, 0.06915283, -0.031219482, 0.01689148, 0.038085938, -0.0149002075, -0.012588501, 0.038909912, -0.04598999, -0.016464233, 0.016784668, -0.057281494, 0.015464783, 0.014823914, -0.066345215, 0.009216309, -0.014793396, -0.041168213, -0.016677856, -0.0010566711, 0.0049552917, 0.0035762787, 0.0014781952, -0.02029419, -0.0009918213, -0.029022217, 0.027618408, 0.031829834, -0.0256958, -0.029815674, 0.0040245056, 0.0011520386, -0.051239014, 0.014854431, 0.008529663, 0.0011711121, -0.03387451, 0.037200928, 0.026107788, 0.023040771, -0.09411621, 0.0015182495, -0.021224976, 0.039886475, 0.029083252, 0.0042648315, 0.038909912, -0.017623901, 0.0088272095, 0.008460999, -0.016494751, 0.030548096, -0.029373169, -0.05670166, -0.022537231, 0.013572693, 0.025222778, -0.03314209, -0.0067977905, -0.039123535, -0.0010662079, 0.009216309, -0.037902832, -0.023010254, 0.024520874, 0.036071777, -0.06530762, 0.012741089, 0.010406494, -0.058746338, -0.06774902, 0.010513306, -0.012275696, 0.032165527, 0.003501892, 0.013069153, -0.038909912, 0.0060539246, -0.066711426, -0.015853882, 0.03866577, -0.0070877075, 0.06530762, -0.02722168, -0.005203247, -0.012214661, 0.115478516, 0.024551392, 0.028930664, -0.06939697, -0.031799316, -0.0012149811, 0.0036525726, 0.019500732, -0.012512207, 0.018615723, -0.0088272095, -0.053619385, -0.042114258, 0.008399963, 0.049713135, 0.027496338, 0.0014629364, 0.017837524, 0.040008545, -0.041778564, 0.01525116, -0.019607544, -0.014846802, 0.0058670044, 0.005683899, -0.02268982, -0.0014238358, -0.0030879974, 0.0070343018, 0.0158844, 0.00029206276, 0.0023479462, 0.008171082, 0.03878784, 0.00818634, 0.038757324, -0.0070724487, -0.025238037, 0.0064926147, 0.005065918, -0.039978027, 0.015434265, -0.05340576, 0.008666992, -0.05557251, 0.06378174, 0.03515625, 0.002117157, 0.010139465, 0.009025574, -0.007534027, -0.057495117, -0.00077199936, -0.008033752, -0.025238037, -0.023040771, -0.017486572, 0.028320312, -0.008056641, 0.00024485588, -0.008468628, 0.006919861, -0.0017271042, -0.032196045, 0.020248413, -0.019577026, 0.041809082, 0.032165527, -0.018295288, 0.036712646, -0.0368042, 0.008544922, 0.032928467, -0.023513794, -0.028549194, -0.040649414, 0.0015735626, -0.027572632, -0.00907135, 0.01838684, -0.012184143, 0.017578125, 0.022994995, -0.0020694733, -0.011604309, -0.012428284, 0.024353027, -0.03225708, -0.025268555, 0.027511597, -0.03741455, 0.008773804, 0.034820557, -0.0024204254, -0.0635376, 0.017166138, -0.05050659, 0.052246094, 0.0022182465, -0.06549072, 0.042999268, -0.012237549, 0.008293152, -0.031188965, 0.046325684, -0.014663696, 0.0061798096, -0.06512451, 0.0021781921, 0.04837036, 0.06878662, 0.022918701, -0.054534912, 0.040039062, -0.01550293, -0.035247803, -0.0063438416, 0.045898438, -0.0309906, 0.009422302, 0.003435135, -0.0018730164, -0.050964355, -0.01600647, -0.07788086, -0.010757446, 0.007221222, 0.026901245, -0.005680084, -0.018005371, -0.016967773, -0.072143555, -0.00724411, 0.010681152, 0.005882263, -0.0067214966, 0.006298065, -0.0026607513, 0.005870819, 0.011772156, 0.021652222, 0.01448822, -0.02684021, -0.025131226, -0.017913818, -0.0034980774, -0.029571533, 0.038360596, -0.03390503, -0.03817749, 0.04647827, 0.003540039, 0.018035889, 0.034423828, -0.020843506, -0.021026611, -0.02607727, -0.02557373, -0.038116455, -0.029876709, 0.07086182, -0.057800293, -0.066101074, -0.020767212, -0.0020141602, 0.0028934479, -0.055633545, 0.080444336, 0.037475586, -0.00756073, 0.024917603, -0.016204834, -0.043701172, 0.002904892, 0.011924744, -0.08154297, -0.05291748, -0.036499023, -0.016052246, -0.01474762, -0.029327393, -0.014549255, 0.032287598, 0.013839722, -0.012489319, -0.04852295, -0.025100708, 0.0035152435, -0.04650879, 0.010932922, -0.0124435425, 0.008430481, -0.00699234, -0.012268066, -0.0713501, -0.009338379, 0.022125244, 0.01285553, 0.004711151, -0.0059051514, 0.008842468, 0.044036865, -0.006954193, 0.025161743, -0.023025513, 0.039642334, -0.009239197, 0.04156494, -0.01272583, 0.06048584, -0.06488037, -0.011764526, -0.0463562, 0.027526855, 0.020401001, 0.0625, -0.048675537, 0.0013856888, 0.028167725, 0.04248047, 0.06964111, 0.003868103, 0.040527344, -0.008682251, 0.008003235, 0.00957489, -0.021316528, -0.014564514, -0.03744507, -0.054534912, -0.022201538, 0.005897522, 0.0057678223, 0.051727295, -0.02746582, 0.024902344, 0.017059326, -0.018753052, 0.020401001, -0.022125244, 0.002204895, 0.025268555, -0.006385803, 0.047912598, 0.04638672, 0.032226562, -0.024017334, -0.033569336, -0.017578125, 0.011756897, 0.004196167, 0.045013428, -0.023651123, 0.009788513, 0.0038852692, -0.037384033, -0.0026988983, 0.013793945, 0.0048446655, 0.00031781197, -0.066589355, -0.003786087, 0.0012636185, -0.029342651, -0.005104065, -0.0046157837, 0.05960083, -0.00028848648, 0.038238525, 0.011604309, -0.00014436245, 0.0103302, 0.017456055, 0.0019817352, 0.028442383, -0.018051147, -0.037719727, 0.04309082, 0.018859863, -0.017700195, 0.044647217, -0.022735596, 0.005710602, -0.02243042, 0.032073975, -0.042266846, -0.04949951, -0.01007843, 0.033233643, -0.026657104, -0.02798462, -0.028335571, 0.013519287, 0.022201538, -0.04156494, 0.026123047, -0.04257202, 0.04144287, 0.04071045, 0.038360596, -0.010726929, -0.024795532, -0.028335571, 0.004627228, -0.013313293, 0.027191162, -0.008483887, 0.0115356445, 0.030670166, 0.07928467, 0.07269287, -0.006565094, 0.036590576, 0.022369385, -0.021499634, 0.072387695, -0.001786232, -0.0060920715, 0.007007599, 0.01852417, 0.015914917, 0.040802002, 0.028884888, 0.007472992, 0.032409668, 0.011016846, -0.026794434, -0.004852295, 0.026611328, -0.049713135, 0.049438477, -0.031036377, 0.0033054352, -0.007129669, -0.011070251, -0.04547119, -0.0069999695, -0.045898438, -0.0035858154, -0.027999878, -0.051483154, -0.021255493, 0.025558472, 0.0040283203, -0.05496216, -0.01360321, -0.028717041, 0.0256958, 0.0046653748, 0.028182983, -0.021347046, -0.026687622, -0.020263672, 0.023422241, -0.040283203, -0.0435791, 0.038238525, -0.021392822, 0.014160156, 0.006252289, 0.03543091, 0.066711426, 0.037017822, -0.014274597, 0.012435913, -0.022232056, -0.036315918, 0.033172607, 0.0107803345, -0.027572632, -0.0044822693, 0.043823242, -0.018920898, 0.0046043396, 0.034301758, -0.017730713, -0.06335449, -0.031585693, -0.046966553, -0.022949219, -0.00070858, -0.004497528, -0.005367279, 0.015068054, -0.040130615, -0.0032577515, -0.007648468, -0.0012922287, 0.03970337, 0.006511688, 0.019607544, -0.01638794, -0.045410156, -0.035736084, -0.019241333, 0.027328491, 0.056488037, 0.0069389343, 0.0065307617, 0.01687622, -0.014572144, 0.0060310364, 0.0003578663, 0.0045776367, 0.029022217, -0.011100769, -0.021820068, 0.004966736, -0.025146484, -0.0071144104, -0.008934021, -0.00881958, 0.054107666, 0.0070343018, -0.032409668, -0.013549805, -0.034210205, -0.008552551, -0.010055542, -0.0690918, 0.025466919, -0.01676941, -0.027404785, 0.013458252, 0.00548172, 0.0062713623, 0.002439499, -0.049438477, -0.0395813, 0.027496338, 0.019958496, 0.045806885, -0.028762817, 0.02406311, 0.023284912, 0.0625, 0.002357483, -0.08270264, -0.0345459, 0.038391113, -0.004169464, -0.020111084, 0.03024292, -0.032714844, 0.020874023, 0.02319336, 0.027389526, 0.020202637, 0.009918213, -0.0073623657, -0.0063552856, 0.0019626617]}, "B002BCSX0Y": {"id": "B002BCSX0Y", "original": "Brand: Weber\nName: Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch\nDescription: Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.\nFeatures: 580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates\nFront-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people\nSide burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner\nEnclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only\nDimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D\n", "metadata": {"Name": "Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch", "Brand": "Weber", "Description": "Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.", "Features": "580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates\nFront-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people\nSide burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner\nEnclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only\nDimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008277893, -0.0042762756, -0.03074646, -0.033111572, -0.022491455, -0.0037174225, -0.016189575, 0.012512207, -0.011207581, -0.005203247, -0.025482178, 0.01537323, -0.024597168, -0.03717041, 0.034057617, -0.029556274, 0.037322998, 0.02949524, 0.055541992, -0.0064315796, -0.0019569397, 0.014633179, 0.035736084, 0.084106445, 0.03869629, 0.0073051453, -0.04309082, 0.017669678, 0.0010757446, 0.014297485, 0.022399902, -0.0066337585, 0.02218628, 0.023025513, -0.02482605, -0.05218506, 0.0096588135, -0.013793945, -0.016815186, 0.027389526, 0.022521973, 0.0027122498, -0.009468079, 0.007045746, -0.019973755, -0.019607544, 0.012313843, -0.037902832, 0.032196045, 0.022460938, 0.005622864, 0.051818848, 0.0031375885, -0.034057617, -0.02279663, -0.017166138, 0.062805176, -0.023605347, -0.0025234222, -0.020690918, -0.013557434, 0.05355835, 0.021469116, 0.014205933, -0.039642334, 0.027389526, 0.107910156, -0.02861023, -0.013214111, -0.05697632, -0.0036201477, 0.030883789, 0.018051147, 0.017669678, -0.010253906, -0.03778076, 0.033294678, -0.004383087, 0.019622803, 0.024871826, -0.0231781, 0.014892578, 0.019927979, -0.010292053, -0.005744934, 0.0131073, -0.03302002, -0.010139465, -0.010925293, 0.0070724487, -0.007270813, -0.03137207, -0.004360199, 0.046203613, 0.003276825, -0.022659302, -0.026550293, -0.042510986, 0.008972168, -0.008178711, 0.040252686, -0.016906738, 0.030441284, 0.0065231323, -0.010040283, 0.071777344, -0.009048462, 0.062927246, 0.03173828, -0.0037555695, 0.011451721, -0.025802612, -0.014724731, -0.015075684, -0.021331787, 0.022384644, -0.014343262, 0.0013313293, -0.0052375793, 0.0019760132, -0.032592773, -0.03604126, 0.022109985, 0.028213501, 0.051361084, 0.060760498, -0.011116028, 0.0027599335, -0.05267334, 0.028930664, -0.022155762, 0.00067424774, 0.045074463, 0.06774902, 0.011505127, -0.006790161, -0.0066184998, -0.03375244, -0.0012598038, 0.010139465, -0.017623901, -0.006717682, 0.025741577, -0.03491211, -0.020950317, 0.034576416, 0.020767212, -0.003929138, -0.03353882, -0.06567383, 0.016784668, -0.04598999, 0.03942871, 0.004348755, -0.061187744, -0.003932953, -0.022232056, -0.013755798, -0.036102295, -0.041503906, -0.0053482056, -0.02104187, -0.0262146, -0.024093628, -0.046569824, 0.042785645, 0.021530151, 0.009796143, 0.025177002, 0.06744385, 0.03012085, -0.059539795, -0.0016584396, 0.00919342, -0.021987915, 0.004787445, -0.0052986145, 0.008522034, 0.046417236, -0.046173096, -0.042999268, -0.033111572, 0.07727051, -0.023498535, 0.01751709, -0.0045280457, 0.014945984, -0.021514893, -0.00258255, 0.008659363, 0.011817932, 0.03491211, 0.02583313, -0.018753052, 0.028121948, 0.014503479, -0.05203247, 0.030914307, -0.013938904, -0.053863525, 0.013999939, 0.017547607, -0.00068616867, -0.0067825317, 0.009269714, -0.0046806335, 0.019226074, 0.010177612, 0.010002136, 0.026626587, 0.003206253, 0.012069702, 0.006778717, -0.053344727, -0.020309448, -0.008049011, -0.03314209, 0.007282257, -0.004421234, 0.013473511, 0.016326904, -0.01889038, 0.009780884, 0.015365601, 0.02192688, 0.024353027, -0.03074646, 0.011512756, 0.024520874, 0.0047302246, 0.003419876, 0.021499634, 0.08282471, 0.05307007, -0.011550903, 0.04840088, 0.07989502, 0.05810547, -0.04711914, -0.027160645, 0.01096344, -0.02671814, -0.058502197, -0.024398804, 0.0024108887, 0.007171631, 0.014038086, -0.012924194, -0.023452759, -0.011108398, 0.072387695, 0.013908386, 0.03475952, 0.022094727, -0.008415222, 0.016677856, 0.0104599, -0.007217407, -0.02267456, 0.0513916, -0.01727295, 0.027038574, 0.0036964417, 0.010292053, 0.031799316, -0.011131287, 0.009811401, 0.0010442734, -0.05645752, 0.019592285, 0.031829834, 0.0012512207, -0.0055770874, -0.035369873, -0.048919678, -0.025299072, -0.013702393, 0.038513184, -0.020111084, -0.053375244, 0.016983032, 0.016693115, 0.019760132, 0.0038146973, 0.040496826, 0.015045166, 0.012062073, 0.0061569214, 0.013038635, 0.009933472, 0.041015625, -0.01977539, -0.02281189, 0.0184021, -0.018417358, -0.030700684, 0.0770874, 0.009315491, -0.00039625168, -0.023651123, 0.050689697, 0.022415161, -0.06756592, 0.018051147, 0.004753113, -0.02911377, 0.02583313, 0.02053833, 0.02053833, -0.03338623, 0.014213562, 0.05697632, 0.023757935, -0.017730713, 0.042785645, 0.008460999, -0.0055732727, 0.029556274, 0.018127441, 0.023452759, -0.013931274, -0.04171753, -0.05050659, -0.0046539307, -0.02986145, 0.033447266, -0.005756378, -0.004589081, 0.0072135925, -0.008483887, -0.024246216, -0.04055786, -0.04269409, -0.023345947, -0.004512787, 0.0054130554, 0.016143799, -0.0018033981, -0.0149383545, -0.01335144, 0.0031013489, -0.026306152, -0.01638794, -0.0184021, -0.057556152, -0.027160645, 0.04714966, -0.0049819946, -0.0059127808, 0.008583069, 0.026672363, -0.010848999, -0.011253357, -0.057647705, -0.0046310425, -0.013458252, -0.009986877, -0.07861328, -0.015151978, -0.08660889, -0.013122559, -0.010467529, -0.05911255, -0.03225708, 0.03237915, -0.007587433, -0.04510498, -0.011650085, 0.0025615692, 0.007030487, 0.03643799, 0.01638794, -0.03970337, -0.024963379, -0.03579712, -0.022705078, 0.031311035, -0.04107666, -0.027236938, -0.0015096664, -0.007972717, 0.031234741, -0.037078857, 0.018951416, 0.035461426, 0.022583008, 0.046905518, 0.022521973, 0.030929565, -0.025421143, 0.0029697418, 0.012916565, -0.014091492, -0.017730713, 0.033355713, -0.0048942566, 0.0023612976, 0.014160156, -0.031951904, -0.023773193, -0.08905029, 0.033355713, 0.010749817, -0.04321289, -0.014503479, -0.06842041, -0.0713501, -0.036590576, 0.0002539158, 0.054382324, -0.013671875, -0.0027542114, -0.03967285, 0.02015686, 0.008682251, -0.0010633469, -0.0158844, -0.013153076, 0.00014388561, 0.0052604675, 0.010009766, 0.0038280487, 0.017288208, 0.04147339, -0.08276367, -0.008361816, -0.03656006, 0.06713867, -0.052337646, 0.040649414, -0.026779175, 8.702278e-06, -0.025878906, -0.027252197, -0.0020427704, 0.047180176, 0.006072998, 0.030792236, 0.008888245, -0.0030155182, -0.031463623, 0.0031166077, -0.0025577545, 0.068847656, -0.020187378, -0.007232666, -0.034576416, -0.07067871, 0.0052375793, -0.0206604, 0.019927979, -0.010444641, 0.037261963, 0.024780273, -0.0093688965, 0.093444824, 0.0209198, 0.043823242, 0.017028809, -0.0017595291, 0.012107849, -0.023803711, 0.012130737, 0.01626587, -0.018615723, -0.021133423, 0.0038337708, 0.030075073, -0.0007510185, -0.019866943, 0.009521484, 0.055236816, 0.021072388, -0.0033416748, -0.03805542, -0.028167725, 0.049987793, -0.0012283325, 0.009513855, -0.05026245, -0.034423828, -0.015823364, -0.092041016, 0.11975098, 0.055023193, -0.025680542, 0.08483887, 0.093444824, -0.012611389, 0.031677246, 0.021255493, -0.007881165, -0.0035152435, 0.050201416, -0.034698486, 0.022125244, 0.018630981, -0.091796875, 0.030792236, 0.009376526, -0.0390625, 0.019210815, -0.030059814, -0.06524658, -0.036895752, 0.0034046173, -0.0039787292, -0.009086609, 0.015144348, -0.01737976, -0.040802002, -0.029220581, -0.006702423, 0.026367188, -0.022659302, -0.026138306, 0.026107788, 0.010467529, -0.02079773, -0.0024662018, 0.0082473755, 0.005340576, -0.034606934, 0.041900635, 0.017944336, 0.021408081, -0.092041016, 0.015731812, -0.009887695, 0.0041656494, 0.0065841675, 0.022460938, 0.0028629303, -0.0049934387, 0.010749817, -0.0121154785, 0.009277344, 0.016418457, -0.037322998, -0.058624268, 0.004043579, 0.011421204, -0.002632141, -0.048431396, 0.0042037964, -0.04119873, -0.007648468, -0.025360107, -0.013137817, -0.03579712, 0.012542725, 0.038085938, -0.0256958, 0.014877319, -0.01727295, -0.011619568, -0.06707764, 0.0075569153, -0.01676941, 0.045196533, 0.010749817, 0.01612854, -0.049438477, -0.0069732666, -0.02218628, -0.018692017, 0.056488037, 0.008758545, 0.06750488, -0.035064697, 0.019866943, -0.025177002, 0.09051514, 0.0025844574, 0.03036499, -0.046691895, -0.028915405, 6.556511e-07, 0.03314209, 0.04626465, -0.039245605, 0.02357483, -0.005130768, -0.02859497, -0.054138184, 0.007797241, 0.033691406, -0.014381409, -0.029891968, 0.0010786057, 0.05307007, -0.019256592, 0.02305603, 0.009063721, -0.008842468, -0.030517578, 0.03262329, -0.064086914, -0.013031006, -0.008399963, -0.037078857, 0.009803772, -0.01134491, -0.0069274902, 0.019012451, 0.054595947, 0.02267456, -0.039001465, -0.0077705383, 0.039611816, -0.033325195, 0.023406982, -0.015838623, -0.036193848, -0.0025157928, 0.019638062, -0.06530762, 0.08111572, 0.06210327, -0.005092621, 0.010978699, 0.022766113, -0.022521973, -0.037902832, 0.021270752, 0.014007568, -0.0034561157, -0.0053367615, -0.018081665, 0.010139465, -0.029815674, -0.013343811, -0.020828247, 0.01423645, 0.0065231323, -0.036499023, 0.012184143, -0.022979736, 0.028701782, 0.026519775, 0.00060606, 0.034423828, 0.0032806396, -0.02986145, 0.03274536, -0.035583496, -0.028900146, -0.0050468445, -0.0028457642, 0.001821518, 0.0059318542, -0.008865356, -0.040222168, -0.026504517, 0.04373169, -0.034606934, -0.013534546, 0.009635925, 0.0067253113, -0.0030612946, -0.007949829, 0.03918457, -0.025924683, 0.013458252, 0.046966553, -0.02381897, -0.041107178, 0.027664185, -0.046081543, 0.053741455, 0.017593384, -0.059143066, 0.053771973, -0.013160706, -0.0105896, -0.04324341, 0.07281494, -0.016998291, 0.021652222, -0.060913086, 0.0034103394, 0.054626465, 0.07086182, 0.034240723, -0.06347656, 0.042266846, -0.01737976, -0.035339355, -0.014137268, 0.054534912, -0.022476196, 0.0041542053, 0.008018494, -0.009735107, -0.06817627, -0.037139893, -0.0143585205, -0.0021095276, -0.015396118, -0.025131226, 0.019577026, 0.0030918121, -0.018615723, -0.03564453, 0.008354187, -0.007926941, -6.133318e-05, -0.007183075, 0.0104599, -0.00969696, 0.010147095, 0.043670654, 0.0012598038, 0.009712219, -0.009384155, -0.036712646, -0.03164673, 0.02230835, -0.013450623, 0.015563965, -0.04171753, -0.013710022, 0.014472961, 0.0038280487, 0.02243042, 0.030288696, -0.059387207, -0.018341064, -0.018707275, -0.018676758, -0.02444458, -0.01197052, 0.070617676, -0.05496216, -0.049865723, -0.053863525, 0.06555176, -0.042510986, -0.053253174, 0.05532837, 0.048217773, 0.004524231, 0.025161743, -0.022949219, -0.04248047, -0.0019950867, 0.010856628, -0.044769287, -0.041625977, -0.042633057, 0.0037193298, 0.0049476624, -0.033569336, 0.010650635, 0.053466797, 0.035583496, 0.0033473969, -0.029266357, -0.037017822, 0.003929138, -0.02557373, 0.017730713, -0.012680054, -0.019165039, -0.003452301, -0.019805908, -0.021530151, 0.013465881, 0.026550293, 0.031555176, 0.007247925, -0.015838623, 0.00894165, 0.04574585, -0.02798462, 0.053710938, -0.021240234, -0.0021743774, 0.010215759, 0.06585693, -0.0051231384, 0.041534424, -0.066589355, -0.025604248, -0.02859497, 0.035247803, 0.034301758, 0.033935547, -0.020858765, 0.0020198822, 0.028305054, 0.019195557, 0.022888184, -0.00070524216, 0.0056037903, -0.01638794, -0.017791748, 0.0064849854, 0.0056152344, -0.025543213, -0.042053223, -0.04373169, -0.0052337646, 0.014205933, 0.021636963, 0.033843994, -0.003129959, 0.03717041, -0.008605957, -0.0067481995, 0.020965576, -0.0004785061, 0.017456055, -0.0075569153, -0.017044067, 0.008407593, 0.013496399, 0.0070762634, 0.011558533, 0.021377563, -0.02015686, 0.020492554, -0.0067825317, 0.057006836, 0.009231567, 0.023376465, 0.019821167, -0.061553955, 0.0069274902, -0.022888184, -0.004173279, -0.0107803345, -0.093811035, -0.027038574, -0.024246216, -0.013977051, 0.019119263, 0.01953125, 0.05429077, 0.023147583, 0.040283203, 0.01751709, -0.01474762, 3.6418438e-05, 0.0647583, -0.019805908, -0.0028839111, -0.023788452, -0.0047721863, 0.026885986, 0.0075798035, -0.025619507, 0.022628784, -0.05392456, 0.009346008, -0.0017585754, 0.03918457, -0.02796936, -0.01096344, 0.03567505, 0.008613586, -0.0062675476, 0.011039734, 0.030731201, 0.022079468, -0.010986328, -0.050842285, 0.033081055, -0.06640625, 0.03591919, 0.0357666, 0.020690918, -0.027175903, -0.047943115, -0.007572174, -0.013969421, -0.006214142, 0.02029419, -0.009613037, 0.034820557, 0.008087158, 0.052520752, 0.054840088, -0.019180298, 0.038757324, 0.011619568, -0.009651184, 0.043151855, 0.042388916, -0.0038604736, 0.005104065, -0.008590698, -0.00289917, 0.016815186, -0.0062179565, -0.0027503967, -0.005115509, 0.016067505, -0.023529053, 0.0029716492, -0.0033893585, -0.029144287, 0.023788452, -0.025314331, -0.009490967, -0.019195557, -0.033111572, -0.04348755, 0.014129639, -0.05126953, -0.01436615, 0.0011949539, -0.042907715, -0.016296387, 0.03186035, 0.0024871826, -0.064453125, -0.030532837, -0.032196045, -0.00070238113, -0.011192322, 0.045166016, -0.031677246, -0.012619019, 0.008224487, 0.00047302246, -0.010696411, -0.03137207, -0.003293991, 0.002401352, 0.022842407, 7.867813e-06, 0.027191162, 0.043395996, 0.017822266, -0.008377075, 0.03894043, -0.031951904, -0.051208496, 0.05239868, 0.028656006, -0.015350342, 0.018722534, 0.039367676, -0.0099105835, -0.004852295, 0.045959473, -0.0051231384, -0.062683105, -0.015388489, -0.01965332, -0.030471802, -0.01235199, -0.01826477, 0.03414917, 0.010803223, -0.037475586, 0.018295288, 0.028320312, 0.022521973, 0.021987915, 0.013771057, 0.016464233, -0.020202637, -0.044799805, -0.027313232, -0.015274048, 0.022369385, 0.045135498, 0.016403198, 0.007911682, 0.037475586, -0.019195557, -0.001543045, 0.006916046, 0.017623901, 0.0155181885, 0.0070152283, -0.025604248, -0.010070801, -0.009651184, 0.012237549, 0.0042533875, -0.033691406, 0.0287323, 0.010986328, -0.040649414, -0.041137695, -0.026641846, 0.006252289, -0.039642334, -0.06524658, -0.026168823, -0.031707764, -0.0119018555, 0.013420105, -0.018112183, 0.028564453, -0.011650085, -0.012527466, -0.024429321, 0.025344849, 0.0068893433, 0.028640747, -0.028381348, 0.04196167, 0.017333984, 0.06726074, -0.017730713, -0.12084961, -0.055725098, 0.020721436, 0.037750244, -0.022598267, 0.07507324, -0.045532227, 0.0032806396, 0.040771484, -0.005760193, -0.023620605, 0.029296875, 0.04525757, 0.013412476, 0.013053894]}, "B010ILB4KU": {"id": "B010ILB4KU", "original": "Brand: Weber\nName: Weber 51040001 Q1200 Liquid Propane Grill, Red\nDescription: \nFeatures: One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area\nPorcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body\nBuilt-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan\nDimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings\nUses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box\n", "metadata": {"Name": "Weber 51040001 Q1200 Liquid Propane Grill, Red", "Brand": "Weber", "Description": "", "Features": "One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area\nPorcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body\nBuilt-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan\nDimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings\nUses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0105896, 0.010322571, -0.033599854, -0.010498047, -0.01902771, -0.013587952, -0.025512695, 0.00012922287, -0.036224365, 0.0064315796, -0.005519867, -1.0788441e-05, -0.014533997, -0.045776367, 0.021392822, -0.031982422, 0.035705566, 0.0025081635, 0.030380249, -0.0040245056, 0.015670776, 0.03463745, -0.012084961, 0.064697266, 0.037506104, -0.06970215, -0.009490967, 0.015014648, 0.024368286, 0.0009045601, 0.04119873, 0.0037822723, 0.030166626, 0.0027046204, -0.028793335, -0.0435791, 0.027801514, -0.021392822, -0.024169922, 0.029434204, 0.045318604, -0.025360107, 0.021575928, 0.01751709, 0.00065660477, -0.027175903, 0.06317139, -0.015327454, 0.04437256, 0.010314941, -0.029312134, 0.013153076, -0.024124146, -0.03173828, -0.01751709, -0.030532837, 0.060028076, -0.03665161, 0.016159058, -0.05343628, -0.03314209, 0.015220642, 0.04425049, 0.009590149, -0.01676941, 0.018737793, 0.08203125, -0.01890564, -0.005519867, -0.034362793, 0.012359619, 0.013420105, 0.013839722, 0.03970337, -0.019042969, -0.040771484, 0.036712646, 0.001282692, 0.025238037, 0.026657104, -0.019729614, -0.022857666, 0.013710022, 0.009971619, -0.004901886, 0.030456543, -0.029846191, -0.0055770874, -0.021224976, -0.016799927, -0.0053710938, -0.029464722, -0.06121826, 0.0546875, 0.020324707, -0.031585693, -0.05380249, -0.088012695, 0.046447754, 0.010597229, 0.028457642, -0.028152466, 0.011856079, 0.026901245, 0.0051994324, 0.058685303, -0.008628845, 0.036743164, 0.033172607, -0.0095825195, -0.0028362274, -0.0057144165, 0.013900757, 0.007751465, -0.03439331, -0.020996094, -0.039978027, 0.01914978, -0.0019102097, 0.013130188, -0.0030441284, 0.00042796135, 0.0038280487, 0.015731812, 0.01449585, 0.033477783, -0.005947113, -0.015007019, -0.031021118, 0.0026168823, -0.021469116, 0.005302429, 0.025131226, 0.05706787, 0.011253357, 0.0005660057, 0.033599854, -0.013725281, 0.02168274, -0.00081443787, -0.013496399, -0.03302002, -0.000975132, 0.01763916, -0.03829956, 0.020980835, 0.033599854, 0.013435364, -0.045318604, -0.061950684, -0.0069007874, 0.00283432, 0.040527344, 0.015068054, -0.04876709, 0.0076560974, -0.00868988, -0.0054130554, -0.046661377, -0.04336548, 0.0017471313, -0.022567749, 0.009216309, 0.01890564, -0.035614014, 0.052581787, -0.008781433, -0.0127334595, 0.028701782, 0.071899414, 0.019363403, -0.058929443, 0.022918701, 0.029968262, -0.018249512, 0.014572144, -3.8683414e-05, -0.021530151, 0.060180664, -0.045166016, -0.06921387, -0.034362793, 0.072631836, -0.028701782, 0.0013637543, -0.0124435425, 0.009132385, -0.013282776, -0.000849247, 0.010536194, 0.022994995, 0.026367188, 0.0063171387, -0.05130005, 0.053985596, 0.013702393, -0.05935669, -0.012260437, 0.013923645, -0.023956299, 0.017959595, 0.013214111, -0.017227173, -0.0073127747, -0.027038574, -0.013046265, 0.0020542145, 0.00712204, 0.025863647, 0.024261475, -0.017074585, -0.025115967, 0.032806396, -0.05142212, -0.02243042, 0.0062561035, -0.041259766, -0.011451721, 0.024017334, -0.0055122375, 0.05102539, 0.02041626, 0.022354126, 0.00090789795, 0.0045776367, 0.010292053, -0.02494812, 0.0059051514, 0.008224487, -0.0003926754, 0.02218628, 0.013877869, 0.10601807, 0.08691406, 0.013191223, 0.048309326, 0.08392334, 0.0036029816, -0.043518066, -0.020065308, -0.0036354065, -0.019882202, -0.028244019, 0.029373169, -0.0026416779, 0.021438599, 0.022903442, 0.0021648407, 0.0019245148, 0.032165527, 0.043182373, 0.0032234192, 0.020904541, 0.009109497, -0.023498535, 0.032073975, -0.0054969788, 0.008270264, -0.039215088, 0.049743652, -0.005542755, 0.034118652, 0.011672974, 0.016723633, 0.0077323914, -0.03186035, 0.024780273, -0.0010089874, -0.020858765, -0.040222168, 0.04751587, 0.06530762, -0.007232666, -0.05291748, -0.04309082, -0.00013530254, -0.014633179, 0.058563232, -0.0076179504, -0.05355835, 0.035858154, 0.03491211, -0.0010108948, 0.0016489029, 0.046936035, 0.014305115, -0.017288208, 0.0028247833, 0.02017212, 0.021575928, 0.050354004, -0.021514893, -0.020462036, 0.004398346, 0.009887695, -0.044555664, 0.1149292, -0.0016393661, -0.006401062, -0.012046814, 0.05569458, 0.02330017, -0.044830322, 0.019897461, 0.0049591064, -0.028701782, 0.0135650635, 0.02368164, 0.021743774, -0.020584106, 0.006706238, 0.041931152, 0.03338623, 0.0021915436, 0.059326172, 0.012252808, 0.041931152, 0.06604004, 0.03970337, 0.018463135, -0.013320923, -0.019088745, -0.05517578, -0.026885986, -0.01184082, 0.035186768, -0.03842163, -0.0032234192, -0.017364502, -0.0065078735, -0.013198853, -0.03152466, -0.026229858, -0.014060974, -0.009536743, 0.00012612343, 0.007511139, 0.045410156, -0.0049591064, -0.02053833, 0.023498535, -0.038482666, -0.0135269165, 0.0065078735, -0.032104492, -0.011688232, 0.014480591, 0.025375366, -0.01802063, -0.0056419373, 0.008857727, -0.030563354, -0.0054779053, -0.033477783, 0.00623703, -0.025009155, -0.02116394, -0.04849243, -0.033233643, -0.079589844, 0.010887146, -0.014579773, -0.034179688, 0.0023231506, 0.035308838, -0.022766113, -0.04498291, -0.008384705, -0.030960083, 0.0063285828, 0.0037059784, -0.0041999817, -0.068115234, -0.014762878, -0.041900635, 0.021453857, 0.032562256, -0.039245605, -0.008270264, 0.006839752, -0.011650085, 0.03074646, -0.050964355, 0.044311523, 0.03100586, 0.021850586, 0.03390503, 0.017822266, 0.01979065, -0.021484375, -0.0023403168, 0.021377563, 0.006286621, -0.013282776, -0.015357971, -0.013244629, -0.01763916, 0.011856079, -0.022598267, 0.004825592, -0.09075928, 0.013671875, -0.002374649, -0.023223877, -0.01966858, -0.04144287, -0.06707764, -0.057678223, 0.007713318, 0.06628418, 0.0010585785, -0.015991211, -0.016708374, 0.004459381, 0.0022506714, 0.008804321, 0.001627922, -0.00806427, -0.0138549805, -0.01322937, 0.050231934, -0.060821533, 0.008674622, 0.014968872, -0.062683105, 0.02027893, -0.04928589, 0.027633667, -0.026184082, 0.03869629, -0.025146484, 0.012817383, -0.04269409, -0.028411865, 0.015365601, 0.04727173, 0.018493652, 0.016098022, 0.0115737915, -0.0059661865, -0.006893158, -0.013328552, -0.006996155, 0.062805176, -0.010696411, 0.009735107, -0.05307007, -0.045532227, 0.011116028, -0.047668457, 0.016830444, 0.0012083054, 0.043548584, 0.014015198, 0.0017528534, 0.10089111, 0.0031280518, 0.046569824, 0.015701294, -0.01838684, -0.012001038, -0.041259766, 0.03894043, 0.018661499, -0.0026836395, -0.015571594, 0.01914978, 0.032196045, 0.011238098, -0.015113831, 0.021514893, 0.009666443, 0.0038547516, -0.016906738, -0.00440979, -0.012145996, 0.024673462, -0.017730713, 0.017715454, -0.03692627, -0.047546387, 0.002286911, -0.07733154, 0.09008789, 0.074523926, -0.029785156, 0.107910156, 0.059906006, -0.0138168335, 0.03829956, 0.037261963, -0.040100098, -0.017044067, 0.05154419, -0.05783081, 0.0335083, 0.012321472, -0.07537842, 0.010070801, 0.0038166046, -0.033111572, 0.028182983, 0.0002040863, -0.023391724, -0.040405273, -0.007751465, 0.011383057, -0.028793335, 0.022003174, -0.013198853, -0.018005371, -0.03289795, -0.012451172, 0.0046539307, -0.024124146, -0.025314331, 0.030853271, -0.0107421875, -0.02067566, 0.0006275177, 0.023513794, -0.00097227097, 0.00522995, 0.06112671, -0.020507812, 0.026916504, -0.068603516, -0.03050232, -0.018554688, 0.04840088, 0.028762817, 0.009178162, 0.030883789, -0.021896362, -0.0040283203, -0.0077819824, 0.009552002, 0.009941101, -0.047790527, -0.05987549, 0.010520935, 0.021575928, -0.013145447, -0.050964355, -0.0049705505, -0.008621216, -0.017028809, 0.0109939575, -0.03302002, -0.010383606, 0.0045700073, 0.012802124, -0.03793335, -0.023605347, -0.020263672, -0.0340271, -0.020385742, 0.006538391, -0.017333984, -0.0007648468, 0.021224976, 0.03665161, -0.041107178, -0.02420044, -0.03488159, -0.008560181, 0.044036865, 0.004032135, 0.05770874, -0.034576416, 0.016021729, -0.02180481, 0.101379395, 0.016677856, 0.023071289, -0.056732178, -0.007980347, -0.021820068, 0.049591064, 0.03289795, -0.02722168, 0.040802002, 0.0073623657, -0.023590088, -0.058410645, 0.004234314, 0.06036377, -0.027999878, -0.0440979, -0.019561768, 0.0473938, -0.013595581, 0.015159607, -0.0016584396, 0.005493164, 0.0043411255, 0.010932922, -0.077941895, -0.03994751, -0.011741638, -0.017166138, 0.0034656525, -0.010421753, -0.018371582, 0.03479004, 0.04006958, 0.044281006, -0.048980713, -0.017730713, -0.019317627, 0.00025963783, 0.0035514832, -0.014091492, 0.010536194, -0.024032593, -0.0015916824, -0.06518555, 0.06774902, 0.0496521, 0.012054443, 0.019302368, 0.014511108, 0.008277893, -0.03201294, 0.0036735535, -0.022094727, -0.009140015, -0.02142334, -0.017211914, 0.025650024, -0.009605408, 0.004119873, -0.011314392, 0.01953125, 0.026382446, -0.050994873, 0.010635376, -0.005584717, 0.03555298, 0.013092041, -0.016815186, 0.005405426, -0.040100098, 0.018447876, 0.040222168, -0.017593384, -0.010139465, 0.00674057, -0.010688782, -0.0015039444, -0.015594482, 0.005592346, -0.045074463, 0.022125244, 0.034362793, 0.009628296, -0.019744873, 0.01058197, 0.0023918152, 0.012809753, -0.003967285, 0.06225586, -0.018859863, 0.02293396, 0.025360107, -0.040008545, -0.028671265, 0.035186768, -0.052337646, 0.05328369, 0.017990112, -0.065979004, 0.039367676, 0.008666992, 0.012481689, -0.03845215, 0.06915283, -0.024658203, 0.0017957687, -0.061553955, 0.012901306, 0.03387451, 0.04510498, -0.031036377, -0.022323608, 0.02268982, -0.016784668, 0.007255554, 0.0037975311, 0.030303955, -0.039367676, -0.0029506683, -0.007320404, -0.02456665, -0.024902344, -0.012420654, -0.026428223, 0.023406982, 0.022369385, -0.0135269165, 0.016937256, 0.005970001, -0.034729004, -0.04550171, -0.0056648254, 0.011787415, 0.014099121, -0.029449463, 0.015640259, -0.008758545, -0.0041770935, 0.0078125, 0.013160706, 0.013259888, -0.011459351, -0.035064697, -0.03503418, 0.009590149, -0.02909851, 0.029922485, -0.052368164, -0.0034370422, 0.016342163, -0.04135132, 0.0055732727, 0.010360718, -0.0670166, -0.04434204, -0.008384705, -0.0033130646, -0.003824234, -0.02458191, 0.055541992, -0.033966064, -0.039733887, -0.043792725, 0.047454834, -0.0066604614, -0.013702393, 0.033050537, 0.033569336, -0.012878418, 0.05126953, -0.022262573, -0.042144775, -0.021621704, 0.01007843, -0.06640625, -0.042297363, -0.035308838, 0.0072898865, -0.030807495, -0.034576416, -0.004890442, 0.043792725, 0.019973755, -0.0211792, -0.02041626, -0.038146973, 0.008834839, -0.052520752, 0.0029888153, 0.007423401, 0.010444641, 0.004814148, -0.0076904297, -0.045318604, 0.02355957, 0.018157959, 0.028335571, 0.022277832, -0.019851685, 0.016830444, 0.06137085, -0.009819031, 0.047180176, -0.009429932, -0.011299133, 0.0074501038, 0.07879639, 0.010696411, 0.03729248, -0.097839355, -0.035125732, -0.026245117, 0.03302002, 0.04232788, 0.037384033, -0.041931152, -0.020553589, 0.061950684, 0.031036377, 0.027862549, 0.02822876, 0.060516357, 0.0018835068, -0.06304932, 0.0026283264, -0.013435364, -0.044952393, -0.013916016, -0.025360107, -0.026748657, 0.0052757263, -0.017974854, 0.008148193, -0.026870728, 0.03656006, 0.0051498413, -0.008529663, 0.020065308, -0.0015363693, 0.015426636, -0.012451172, -0.027160645, 0.01322937, 0.014732361, 0.014877319, 0.0072364807, -0.00944519, -0.02017212, 0.019439697, -0.0054969788, 0.04446411, -0.032836914, 0.021316528, 0.034820557, -0.07531738, 0.007549286, 0.0026569366, -0.005344391, -0.006591797, -0.04324341, -0.026306152, -0.0033302307, 0.009971619, 0.012054443, 0.004802704, 0.03326416, 0.020324707, 0.01071167, 0.004753113, -0.009117126, -0.025650024, 0.082092285, 0.015335083, -0.012557983, -0.03189087, -0.01374054, 0.037628174, 0.018859863, 0.0071792603, 0.034698486, -0.038848877, 0.020080566, 0.01890564, 0.022018433, -0.03277588, -0.013336182, 0.026260376, -0.0032043457, -0.013679504, -0.0003335476, 0.04977417, 0.06100464, 0.0044784546, -0.019714355, -0.0037708282, -0.074279785, -0.008560181, 0.022750854, 0.044036865, -0.030532837, -0.032836914, -0.012969971, -0.010406494, 0.002462387, 0.027511597, 0.005027771, 0.02558899, 0.044067383, 0.04623413, 0.0770874, -0.010406494, 0.025817871, 0.02142334, 0.007007599, 0.02458191, 0.020812988, -0.016799927, 0.03439331, -0.00894928, -0.00198555, 0.051116943, -0.004798889, -0.0078048706, 0.011672974, -0.003107071, -0.0335083, 0.037750244, -0.016815186, -0.027740479, 0.024597168, -0.027862549, -0.020202637, -0.0051460266, -0.008720398, -0.03338623, 0.011703491, -0.046905518, -0.02116394, -0.010192871, -0.034698486, 7.987022e-06, 0.014297485, 0.031280518, -0.052124023, -0.0066452026, -0.006668091, 0.00057315826, 0.008514404, 0.055114746, -0.018081665, -0.07019043, -0.0107803345, 0.026000977, -0.0058021545, -0.015914917, -0.011833191, -0.01914978, -0.014289856, -0.026611328, 0.032958984, 0.020446777, 0.047790527, -0.016799927, 0.010726929, -0.011192322, -0.037841797, 0.039367676, 0.027191162, -0.024795532, 0.026306152, 0.04333496, -0.008926392, -0.0057296753, 0.04647827, -0.01637268, -0.07745361, -0.041381836, -0.038757324, -0.03894043, -0.0138168335, -0.018585205, 0.02168274, 0.00045371056, -0.039367676, 0.013435364, 0.027526855, 0.032348633, 0.02166748, -0.011192322, 0.016036987, -0.02229309, -0.05090332, -0.05899048, -0.012893677, 0.032562256, 0.068481445, -0.005947113, -9.9658966e-05, 0.009819031, -0.021591187, 0.017425537, 0.009719849, 0.0059928894, 0.006916046, 0.033355713, 0.005016327, -0.0032234192, 7.0512295e-05, 0.026763916, -0.015380859, -0.038116455, 0.03503418, 0.042907715, -0.058624268, -0.04159546, -0.02128601, 0.0012807846, -0.02911377, -0.06628418, -0.045837402, -0.006416321, -0.01576233, 0.027404785, -0.029373169, 0.03024292, -0.025115967, 0.02407837, -0.027160645, -0.01234436, 0.013702393, -0.015563965, -0.020217896, 0.0048980713, 0.014228821, 0.013092041, -0.011428833, -0.11645508, -0.05432129, 0.028503418, 0.004447937, -0.012046814, 0.040008545, -0.053619385, 0.005622864, 0.044311523, 0.021270752, -0.01461792, 0.028152466, 0.019454956, 0.029800415, 0.0060768127]}, "B07H5Z54J8": {"id": "B07H5Z54J8", "original": "Brand: Weber\nName: Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "metadata": {"Name": "Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black", "Brand": "Weber", "Description": "", "Features": "Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01411438, -0.008331299, -0.039855957, -0.0027332306, -0.027450562, -0.020309448, -0.0071640015, 0.008918762, -0.010414124, 0.014076233, -0.036102295, 0.029525757, 0.017318726, -0.019317627, 0.028823853, -0.003660202, 0.031173706, 0.038238525, 0.05392456, -0.008850098, 0.016052246, 0.021453857, 0.0043563843, 0.08050537, 0.058532715, -0.09429932, 0.0060768127, 0.006855011, 0.041137695, 0.0095825195, 0.028320312, 0.0034732819, 0.013542175, 0.023086548, -0.025497437, -0.052947998, 0.05545044, -0.02217102, -0.007423401, 0.012687683, 0.040863037, -0.015487671, -0.0074005127, -0.0067710876, -0.012176514, -0.0579834, 0.06555176, -0.017120361, 0.023834229, 0.043548584, -0.018478394, 0.017532349, -0.023910522, -0.021743774, -0.0067863464, -0.030426025, 0.029281616, -0.030639648, 0.005748749, 0.0005264282, 0.00014674664, 0.014312744, 0.021636963, -0.0010538101, -0.035491943, 0.018051147, 0.07763672, -0.031982422, 0.023605347, -0.038726807, 0.009742737, 0.0357666, 0.029647827, 0.015266418, -0.02204895, -0.05456543, 0.02545166, -0.017730713, 0.038848877, 0.008926392, -0.001285553, -0.032562256, 0.00044226646, 0.024169922, -0.00957489, 0.018615723, -0.023330688, -0.01285553, 0.0010156631, -0.031585693, 0.0043640137, -0.025054932, -0.02935791, 0.044281006, 0.009468079, -0.038391113, -0.04119873, -0.07598877, 0.050079346, -0.004600525, 0.030212402, -0.04019165, 0.009086609, 0.008354187, 0.015625, 0.019500732, -0.03225708, 0.0019016266, 0.044769287, 0.009788513, -0.022994995, -0.022918701, 0.0044555664, -0.03237915, -0.009101868, -0.001865387, -0.013877869, 0.026245117, 0.028335571, -0.011352539, -0.0022354126, -0.008598328, 0.03201294, 0.038757324, 0.01260376, 0.030319214, -0.029647827, -0.013381958, -0.04446411, -0.01260376, -0.044525146, 0.049194336, 0.08807373, 0.03604126, -0.002773285, -0.0018262863, 0.015396118, 0.024810791, 0.017852783, -0.01651001, -0.003074646, -0.008705139, 0.025360107, -0.0025844574, -0.022628784, 0.03793335, 0.017196655, -0.0064926147, -0.0289917, -0.061676025, 0.010643005, -0.054107666, 0.07086182, 0.0015563965, -0.081848145, 0.00969696, 0.0064201355, -0.0054016113, -0.087890625, -0.06829834, -0.040527344, -0.0149383545, 0.0005068779, -0.02671814, -0.024108887, 0.03353882, 0.017929077, 0.00932312, 0.024719238, 0.058410645, 0.013549805, -0.060791016, 0.036712646, 0.023406982, -0.021209717, 0.029693604, -0.022964478, 0.017105103, 0.056396484, -0.03390503, -0.024093628, -0.048553467, 0.06854248, -0.0053520203, -0.017684937, 0.041656494, 0.022979736, 0.0020122528, -0.016616821, -0.014572144, 0.070739746, 0.07055664, -0.0063095093, 0.013221741, -0.0062446594, 0.0052757263, -0.052703857, 0.031921387, -0.026443481, -0.02809143, -0.004360199, -0.007534027, -0.016921997, -0.011734009, 0.005405426, -0.041534424, 0.016098022, 0.00076150894, 0.037963867, 0.026992798, -0.023651123, -0.032165527, 0.013557434, -0.010612488, -0.029678345, -0.0141067505, -0.03933716, 4.2021275e-05, 0.011962891, 0.00945282, 0.032073975, -0.014640808, 0.00945282, -0.009223938, 0.020584106, 0.0064430237, -0.019546509, 0.00630188, 0.045288086, -0.005039215, 0.02645874, 0.008491516, 0.100097656, 0.080444336, -0.0024299622, 0.0423584, 0.07458496, 0.02746582, -0.040527344, -0.01789856, 0.006565094, -0.0062942505, -0.041809082, 0.0018453598, -0.020553589, -0.02458191, 0.0019407272, 0.010894775, -0.017074585, -0.01725769, 0.064697266, -0.006008148, 0.04196167, 0.04446411, -0.021133423, 0.027694702, -0.017745972, -0.007598877, -0.01247406, 0.031021118, -0.010925293, 0.03994751, 0.022216797, 0.004886627, 0.03125, 0.02468872, 0.046936035, 0.033111572, -0.037902832, 0.0037975311, 0.019561768, 0.03652954, 0.0024757385, -0.022842407, -0.034118652, 0.009132385, -0.021026611, 0.02407837, 0.009780884, -0.024551392, 0.008598328, 0.04159546, 0.0031032562, -0.009986877, 0.014549255, 0.019180298, -0.0063056946, -0.029037476, -0.012039185, 0.03955078, 0.0552063, -0.013542175, -0.023605347, 0.0078125, -0.011253357, -0.007827759, 0.07757568, 0.0028915405, -0.0023460388, -0.0029945374, 0.061553955, 0.031311035, -0.03805542, 0.0014209747, -0.007411957, -0.012046814, -0.0021400452, 0.010650635, -0.0005326271, -0.032958984, 0.003540039, 0.035247803, 0.0062713623, -0.015296936, 0.012184143, -0.007801056, -0.0054740906, 0.019592285, 0.03326416, 0.030822754, -0.026504517, -0.032470703, -0.032104492, -0.046325684, -0.016082764, 0.041625977, -0.046203613, 0.009681702, -0.004547119, -0.022842407, -0.041748047, -0.0592041, -0.021987915, 0.006275177, -0.006126404, -0.010345459, 0.020889282, 0.009803772, 0.007972717, -0.03074646, 0.040527344, 0.003704071, -0.016540527, 0.01637268, -0.050720215, -0.016067505, 0.023422241, 0.007801056, -0.004699707, -0.012619019, 0.029052734, -0.03152466, -0.010848999, -0.03668213, -0.026184082, -0.031402588, 0.018920898, -0.05923462, -0.060180664, -0.09057617, -0.01083374, 0.010749817, -0.06402588, -0.010559082, 0.05819702, -0.040985107, -0.007881165, -0.044403076, -0.02998352, -0.0017147064, 0.007549286, -0.019729614, -0.06640625, -0.019577026, -0.019729614, 0.038208008, 0.022384644, -0.046417236, -0.029312134, -0.0012207031, -0.01512146, 0.020767212, -0.052886963, -0.002357483, 1.3053417e-05, 0.03277588, 0.048675537, 0.036071777, 0.01777649, -0.038360596, 0.0077323914, 0.06121826, -0.004234314, -0.025344849, -0.0105896, -0.00086402893, 0.0045700073, -0.002325058, 0.0138549805, -0.022399902, -0.066589355, 0.032440186, 0.024871826, -0.013511658, -0.04751587, -0.004962921, -0.07458496, -0.018569946, -0.010131836, 0.06311035, -0.019943237, -0.006126404, -0.028198242, 0.009361267, 0.0068244934, 0.01928711, -0.013282776, -0.011894226, 0.017227173, 0.0041770935, 0.014862061, -0.018508911, 0.025009155, 0.041290283, -0.020431519, 0.009880066, -0.028366089, 0.013046265, -0.05545044, 0.012107849, -0.01625061, 0.0025634766, -0.039215088, -0.013458252, 0.0038070679, 0.056610107, 0.023086548, 0.024154663, 0.016067505, -0.0073661804, -0.019821167, -0.0035266876, -0.008583069, 0.041503906, 0.014076233, -0.030059814, -0.025131226, -0.05303955, -0.021591187, -0.03878784, -0.0020275116, 0.018356323, 0.038726807, 0.02861023, 0.015213013, 0.07763672, -0.017837524, 0.056152344, -0.02482605, -0.03729248, 0.001868248, -0.054504395, 0.042999268, 0.005558014, -0.0061416626, -0.03616333, 0.072387695, 0.036224365, 0.039215088, -0.029144287, 0.007297516, 0.017410278, 0.009094238, 0.0017108917, -0.039916992, 0.011116028, 0.05532837, -0.010643005, 0.013580322, -0.0463562, -0.027755737, -0.012680054, -0.053649902, 0.101867676, 0.060760498, -0.026229858, 0.0814209, 0.064086914, -0.05783081, 0.03817749, 0.044769287, -0.00081300735, -0.030593872, 0.050628662, -0.088256836, -0.0062408447, 0.018234253, -0.06915283, 0.017608643, 0.009056091, -0.05227661, 0.0044937134, -0.006843567, -0.031829834, -0.027572632, 0.0026435852, -0.0011796951, 0.032562256, 0.023620605, -0.038848877, -0.0044822693, -0.013282776, -0.009346008, 0.026168823, -0.0435791, -0.032043457, -0.018722534, -0.031677246, -0.034301758, 0.03466797, 0.03640747, -0.019699097, 0.02079773, 0.011138916, 0.02015686, 0.010467529, -0.011177063, -0.026275635, -0.023849487, -0.00667572, 0.010848999, 0.017105103, 0.015213013, 0.010940552, 0.01058197, 0.026275635, 0.0037879944, -0.021743774, -0.04724121, -0.013290405, -0.005428314, 0.015388489, 0.0036125183, -0.0152282715, -0.009109497, -0.048187256, -0.030181885, -0.008895874, -0.025177002, -0.01309967, 0.009780884, 0.020385742, -0.039276123, 0.00793457, -0.02079773, -0.041229248, -0.055847168, 0.028274536, -0.009231567, -0.0016679764, 0.0015115738, 0.025482178, -0.04559326, -0.004055023, -0.027130127, -0.013839722, 0.057373047, 0.016540527, 0.062316895, -0.0236969, 0.018066406, -0.020019531, 0.07409668, -0.0053253174, 0.021484375, -0.060577393, -0.0050315857, 0.030563354, 0.0119018555, 0.017471313, 0.015556335, -0.0060653687, -0.031341553, 0.024246216, -0.055541992, 0.0087509155, 0.031051636, 0.0030956268, -0.028656006, -0.013206482, 0.050048828, -0.014289856, 0.003320694, 0.0178833, 0.0149383545, 0.009429932, 0.042663574, -0.059692383, -0.018173218, -0.004047394, -0.009101868, 0.017120361, 0.0058784485, 0.001080513, 0.0093307495, 0.052947998, 0.0015888214, 0.06677246, -0.015533447, -0.0055999756, 0.013511658, 0.027801514, -0.03668213, -0.0056266785, -0.039916992, 0.013412476, -0.04928589, 0.10595703, 0.034576416, -0.019104004, 0.00522995, 0.013298035, -0.009521484, -0.06402588, -0.014724731, 0.0085372925, -0.02217102, -0.018569946, -0.025054932, 0.010864258, -0.023406982, -0.012123108, -0.016296387, -0.020492554, -0.023468018, -0.012329102, 0.0121154785, -0.030212402, 0.026687622, 0.014907837, -0.016357422, 0.022155762, -0.012039185, 0.0025100708, 0.039398193, -0.023269653, -0.009757996, -0.0019741058, 0.00033473969, 0.0013904572, 0.0033779144, 0.008674622, -0.02583313, 0.009757996, 0.019134521, 0.018234253, 0.019256592, -0.013679504, 0.012878418, -0.022659302, -0.008033752, 0.032165527, -0.058044434, 0.01058197, 0.008255005, -0.034606934, -0.038635254, 0.024765015, -0.06237793, 0.04055786, 0.040130615, -0.08453369, 0.03744507, 0.00881958, -0.0011835098, -0.051361084, 0.07550049, -0.029312134, -0.007083893, -0.04159546, 0.013877869, 0.04260254, 0.053497314, 0.0008249283, -0.038085938, 0.015838623, -0.020843506, -0.0023536682, -0.012504578, 0.05368042, -0.014541626, 0.02192688, 0.0066490173, 0.013473511, -0.040771484, -0.010437012, -0.06616211, -0.003944397, 0.033416748, 0.019515991, -0.008155823, -0.012069702, -0.02456665, -0.056671143, -0.0107421875, 0.015510559, 0.011497498, -0.027542114, -0.021621704, -0.011390686, -0.019165039, 0.028411865, -0.0013628006, 0.004878998, -0.042388916, -0.028320312, -0.012145996, 0.013763428, -0.0040512085, 0.046783447, -0.03564453, -0.0012454987, 0.010848999, 0.0030384064, 0.019424438, 0.030349731, -0.056549072, -0.0051879883, -0.00091552734, 0.0068244934, -0.031799316, -0.00945282, 0.060180664, -0.044311523, -0.047180176, -0.013534546, 0.0513916, -0.04156494, -0.030014038, 0.068847656, 0.07611084, -0.00023376942, 0.038513184, -0.010879517, -0.05090332, -0.018234253, 0.0018501282, -0.08734131, -0.045440674, -0.037231445, -0.0039749146, -0.012817383, 0.008811951, 0.00217247, 0.04763794, 0.027786255, 0.0068893433, -0.024353027, -0.0020427704, -0.008460999, -0.04559326, 0.011054993, -0.0036373138, 0.010658264, -0.005706787, -0.002193451, -0.030853271, 0.026321411, 0.018554688, 0.0335083, 0.0027942657, -0.00919342, -0.00289917, 0.040008545, -0.022537231, 0.049682617, 0.0022258759, -0.007331848, 0.0060310364, 0.022827148, -0.019180298, 0.053131104, -0.033355713, -0.008522034, -0.034484863, 0.026855469, 0.037109375, 0.041412354, -0.065979004, -0.020004272, 0.06744385, 0.05441284, 0.044281006, 0.013206482, 0.03994751, 0.0027809143, 0.004508972, -0.0031814575, -0.020324707, -0.014549255, 0.0037498474, -0.038024902, -0.017608643, 0.011253357, -0.009689331, 0.030349731, -0.037506104, 0.06008911, 0.026245117, -0.04751587, 0.025497437, -0.027893066, -0.004901886, 0.010215759, -0.0131073, 0.047668457, 0.013801575, -0.004558563, -0.0006122589, -0.0069084167, -0.0034656525, 0.0259552, -0.0066833496, 0.039123535, -0.03125, 0.03488159, -0.016189575, -0.03363037, -0.008125305, 0.03918457, 0.024490356, 0.024368286, -0.06707764, -0.031402588, -0.014923096, 0.009887695, 0.018814087, 0.0234375, 0.027740479, 0.01197052, -0.0060691833, 0.014022827, -0.0209198, -0.0079574585, -0.026382446, 0.02331543, 0.03894043, -0.015449524, -0.018432617, 0.04534912, 0.003929138, -0.021240234, 0.05026245, -0.05496216, -0.0010328293, -0.013671875, 0.032165527, -0.029312134, -0.068725586, -0.0076522827, 0.0473938, -0.040893555, 0.008392334, -0.010749817, 0.0048217773, 0.006008148, -0.04135132, 0.0027618408, -0.043518066, 0.011405945, 0.03778076, 0.040130615, -0.06329346, 0.0035686493, -0.013557434, -0.017410278, 0.0005803108, 0.070007324, -0.009170532, 0.016815186, 0.06903076, 0.06842041, 0.07574463, 0.008491516, 0.028625488, 0.029434204, -0.014701843, 0.020965576, 0.007896423, -0.010116577, 0.019760132, 0.016540527, 0.01802063, 0.04876709, 0.033477783, 0.0152282715, 0.032043457, -0.017028809, -0.022033691, -0.004722595, 0.051574707, -0.037506104, 0.018798828, -0.038024902, -0.053771973, -0.0008773804, -0.028717041, -0.022949219, -0.0031967163, -0.05215454, -0.015289307, -0.017364502, -0.049346924, -0.022384644, 0.0031967163, 0.043151855, -0.06640625, 6.753206e-05, -0.039245605, 0.034454346, -0.0068855286, 0.028289795, -0.01802063, -0.008300781, 0.009033203, 0.012756348, -0.016937256, -0.0423584, -0.0019721985, -0.017044067, -0.008468628, -0.02180481, 0.0067100525, 0.07122803, 0.014823914, -0.01171875, 0.03945923, -0.015327454, -0.03555298, 0.026031494, 0.02758789, -0.012535095, 0.026412964, 0.02923584, -0.005962372, 0.01586914, 0.032409668, -0.010643005, -0.06762695, -0.021224976, -0.03353882, -0.0056991577, -0.0023593903, -0.020187378, 0.016067505, 0.011360168, -0.03869629, 0.014678955, 0.02267456, -0.018997192, 0.014350891, -0.028121948, 0.04171753, -0.020065308, -0.040252686, -0.05014038, -0.02381897, 0.026519775, 0.03643799, -0.009284973, -0.009506226, -0.012458801, -0.010009766, -0.01675415, -0.015266418, 0.016616821, -0.02885437, 0.021652222, -0.03250122, -0.04534912, 0.029800415, -0.011367798, -0.006008148, -0.037078857, 0.053588867, 0.006351471, -0.028686523, -0.012992859, -0.02230835, -0.015945435, -0.008010864, -0.032592773, -0.02281189, -0.04232788, 0.00082683563, 0.01927185, -0.013061523, -0.012313843, -0.0058059692, -0.006954193, -0.04095459, 0.01763916, 0.03390503, 0.020858765, -0.05630493, 0.018447876, 0.03363037, 0.05014038, -0.006965637, -0.09899902, -0.0418396, 0.039154053, -0.002128601, -0.010681152, 0.022567749, -0.027938843, 0.017913818, 0.027008057, 0.002319336, 0.002155304, -0.013771057, 0.007873535, -0.007259369, 0.0064430237]}, "B077K1MK8N": {"id": "B077K1MK8N", "original": "Brand: Weber\nName: Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color\nGrill dimensions: Lid Open - 57\"H x 48\"W x 26\"D. Lid Closed - 44.5\"H x 48\"W x 27\"D. Each cooking grate is 10.16\u201d x 17.5\", for a combined measurement of approximately 20.32\" x 17.5\"\nPropane gas grill works with Standard 20 lb LP tank.\nFeatures: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame\nTwo burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system\n", "metadata": {"Name": "Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black", "Brand": "Weber", "Description": "", "Features": "Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color\nGrill dimensions: Lid Open - 57\"H x 48\"W x 26\"D. Lid Closed - 44.5\"H x 48\"W x 27\"D. Each cooking grate is 10.16\u201d x 17.5\", for a combined measurement of approximately 20.32\" x 17.5\"\nPropane gas grill works with Standard 20 lb LP tank.\nFeatures: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame\nTwo burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.028442383, 0.015357971, -0.039367676, -0.001074791, -0.008407593, -0.002632141, -0.017456055, 0.0059547424, -0.009429932, 0.001159668, -0.029525757, 0.001074791, -0.0048828125, -0.043914795, 0.02456665, -0.025924683, 0.029129028, 0.010307312, 0.02494812, -0.011268616, 0.0012378693, 0.008880615, 0.00705719, 0.055603027, 0.055145264, -0.08660889, 0.0128479, -0.019729614, 0.054992676, -0.0015802383, 0.027053833, -0.003112793, 0.04437256, 0.008651733, -0.037597656, -0.021148682, 0.04058838, -0.027648926, -0.0057144165, 0.0062332153, 0.041809082, -0.01146698, 0.011932373, 0.032958984, -0.013465881, -0.033691406, 0.0446167, -0.024368286, 0.0008740425, 0.009353638, -0.015258789, 0.023635864, -0.012130737, 0.011482239, -0.017028809, -0.022949219, 0.06439209, -0.08001709, 0.00056934357, -0.0059394836, 0.01864624, 0.02178955, 0.024215698, 0.007850647, -0.026153564, 0.031402588, 0.095947266, -0.037719727, 0.017623901, -0.024291992, -0.0019388199, 0.021224976, 0.037322998, 0.019104004, -0.02015686, -0.046966553, 0.012214661, -0.01625061, 0.038726807, 0.008232117, 0.0024814606, -0.012542725, -0.015350342, 0.019760132, 0.0019006729, 0.03768921, -0.018753052, -0.022476196, 0.013671875, -0.042633057, 0.006210327, -0.029891968, -0.032318115, 0.055847168, 0.004447937, -0.028121948, -0.01977539, -0.0715332, 0.039855957, 0.0035533905, 0.0368042, -0.04421997, 0.027450562, 0.009750366, -0.0020580292, 0.013038635, -0.011543274, -0.00097227097, 0.028656006, 0.011474609, -0.028320312, -0.008491516, 0.0027275085, -0.024765015, -0.020111084, 0.021713257, 0.00028800964, 0.0018024445, 0.018310547, -0.009239197, -0.029891968, -0.02720642, 0.028366089, 0.04360962, 0.0071792603, 0.023452759, -0.0074424744, -0.0030174255, -0.03161621, 0.0019550323, -0.022644043, 0.016860962, 0.031829834, 0.056030273, 0.013648987, 0.0057868958, 0.014419556, -0.011909485, 0.02204895, -0.0158844, 0.009086609, -0.017227173, 0.011741638, 0.0115356445, -0.005592346, 0.049835205, 0.032104492, -0.024978638, -0.029830933, -0.050201416, -0.020324707, -0.017486572, 0.039855957, 0.011665344, -0.08581543, 0.018707275, -0.033172607, 0.006580353, -0.05923462, -0.045776367, -0.056793213, -0.0073013306, 0.013198853, -0.01411438, -0.02229309, 0.025985718, 0.033233643, 0.007701874, 0.028549194, 0.039276123, 0.008773804, -0.040130615, 0.062072754, 0.013961792, -0.025619507, 0.011497498, -0.03137207, 0.016403198, 0.056152344, -0.038757324, -0.038208008, -0.049713135, 0.080566406, -0.012825012, 0.0093307495, 0.0070762634, 0.031585693, -0.028076172, -0.016296387, -0.0029754639, 0.031585693, 0.05682373, -0.0047416687, -0.020996094, 0.026947021, 0.017318726, -0.043304443, 0.017944336, -0.0009713173, -0.025436401, 0.0039787292, 0.027755737, -0.03540039, 0.004924774, 0.01184082, -0.028717041, 0.025100708, 0.0023593903, -0.002708435, 0.03314209, -0.0031738281, -0.0013980865, -0.006752014, -0.013320923, 0.017196655, 0.016860962, -0.030166626, -0.020721436, 0.0045547485, -0.019210815, 0.04989624, 0.00831604, 0.0107421875, 0.03237915, 0.0118255615, -0.009796143, -0.005218506, -0.0009870529, 0.033599854, -0.016845703, 0.039855957, 0.024749756, 0.113220215, 0.11102295, 0.01940918, 0.032318115, 0.07366943, -0.006713867, -0.024597168, -0.01739502, -0.0052261353, -0.026306152, -0.054351807, 0.011772156, -0.012413025, 0.0104904175, 0.0064926147, 0.01979065, -0.01777649, -0.0135650635, 0.040374756, -0.0065574646, 0.0435791, 0.026306152, -0.016616821, 0.030914307, -0.011299133, -0.013938904, -0.007472992, 0.04876709, -0.020263672, 0.037353516, 0.031051636, -0.009254456, 0.046203613, -0.016235352, 0.048583984, 0.03213501, -0.026809692, -0.0289917, 0.010284424, 0.040039062, -0.0088272095, -0.03137207, -0.023651123, 0.010040283, -0.04067993, 0.0340271, 0.0048065186, -0.027755737, 0.016616821, 0.029022217, -0.004196167, -0.0046577454, 0.03842163, 0.01247406, -0.011749268, -0.014717102, 0.026275635, 0.018981934, 0.03543091, -0.009719849, -0.029159546, 0.027313232, 0.011291504, -0.02960205, 0.091552734, 0.0090789795, -0.009552002, 0.0007843971, 0.070251465, 0.027801514, -0.027633667, 0.0014886856, -0.01121521, -0.033325195, 0.006187439, 0.022537231, 0.015457153, -0.06768799, 0.059387207, 0.057281494, 0.025619507, -0.060333252, 0.06085205, 0.030654907, 0.00060510635, 0.034851074, 0.034301758, 0.030975342, -0.025054932, -0.020980835, -0.051483154, -0.018478394, -0.012329102, 0.03817749, -0.01171875, -0.001786232, -0.025466919, -0.03427124, -0.030761719, -0.0703125, -0.023666382, -0.004940033, -0.0006046295, -0.007896423, 0.01914978, 0.022506714, 0.008987427, -0.037750244, 0.033050537, -0.028839111, -0.03137207, 0.012283325, -0.0236969, -0.031829834, 0.020568848, 0.015975952, 0.017211914, 0.011039734, -0.0062179565, -0.021011353, -0.015068054, -0.049621582, -0.0019073486, -0.043182373, -0.0064735413, -0.055114746, -0.02720642, -0.07904053, -0.004535675, -0.024810791, -0.07647705, -0.01322937, 0.07702637, -0.008781433, -0.033050537, -0.040039062, -0.035858154, -0.0055885315, -0.00073099136, -0.0053482056, -0.037994385, -0.02986145, -0.038360596, 0.02709961, 0.051879883, -0.027435303, -0.0019607544, 0.021316528, -0.012168884, 0.010612488, -0.039031982, -0.0029468536, 0.01322937, 0.028701782, 0.045135498, 0.028259277, 0.035583496, -0.026748657, 0.025131226, 0.045135498, -0.023162842, -0.013427734, 0.032684326, -0.0054855347, 0.017440796, 0.013725281, -0.03933716, -0.018569946, -0.11804199, 0.013847351, 0.010940552, -0.038146973, -0.03237915, -0.020568848, -0.0869751, -0.043701172, 0.0031986237, 0.07727051, -0.002729416, -0.00674057, -0.012825012, 0.016220093, -0.0015420914, 0.014099121, -0.0033550262, -0.011955261, 0.0061149597, 0.0039482117, 0.022033691, -0.025054932, 0.018188477, 0.032226562, -0.050567627, 0.052825928, -0.027420044, 0.046081543, -0.025787354, 0.008255005, 0.00012505054, -0.004623413, -0.027175903, 0.013282776, 0.007675171, 0.048034668, 0.009643555, -0.027648926, 0.027664185, -0.025222778, -0.030700684, -0.014755249, -0.0090408325, 0.034576416, 0.0023174286, -0.023010254, -0.03656006, -0.06439209, -0.0004503727, 0.0012578964, 0.0037193298, -0.002538681, -0.0014867783, 0.023284912, -0.030700684, 0.08996582, 0.015365601, 0.060913086, 0.00605011, -0.027236938, -0.00092220306, -0.043273926, 0.015007019, 0.013046265, 0.002363205, -0.04257202, 0.039031982, 0.009239197, -0.009735107, 0.01574707, -0.00062799454, 0.010040283, 0.02571106, 0.0012273788, -0.013961792, -0.009590149, 0.034332275, -0.0127334595, -0.0062217712, -0.04486084, -0.032989502, -0.0051727295, -0.05630493, 0.09698486, 0.06628418, -0.034210205, 0.08508301, 0.06842041, -0.023422241, 0.030288696, 0.029464722, 0.0060577393, -0.012908936, 0.070129395, -0.036102295, 0.0027866364, 0.016220093, -0.073791504, 0.0041160583, 0.0018968582, -0.061157227, 0.013290405, -0.0093688965, -0.03463745, -0.029510498, -0.016296387, 0.0009074211, 0.011894226, 0.017791748, 0.002149582, -0.004558563, -0.013450623, 0.010505676, 0.030532837, -0.033813477, -0.04559326, 0.024093628, 0.010620117, -0.037078857, 0.008178711, 0.008377075, -0.0020580292, 0.017059326, 0.060516357, -0.037017822, 0.008644104, -0.019577026, -0.039123535, -0.014442444, 0.0104904175, 0.007888794, -0.0015974045, 0.0023288727, -0.0067749023, 0.03274536, 0.01525116, -0.0028133392, -0.03137207, -0.062042236, -0.0357666, 0.009597778, 0.029968262, -0.018234253, -0.027053833, -0.0066337585, -0.044677734, -0.024215698, -0.03466797, -0.01663208, -0.0435791, 0.0065307617, 0.030639648, -0.052734375, 0.007965088, -0.014434814, -0.0019407272, -0.050994873, 0.014533997, -0.028549194, 0.017623901, 0.016983032, 0.031234741, -0.040893555, -0.027832031, -0.05041504, -0.013679504, 0.04650879, 0.0112838745, 0.036834717, -0.038879395, 0.018432617, -0.008842468, 0.086364746, 0.0010738373, 0.022705078, -0.046173096, -0.026473999, 0.007171631, 0.013885498, 0.022583008, 0.0041770935, 0.0017080307, -0.024307251, -0.017791748, -0.06842041, 0.02861023, 0.028274536, -0.004722595, -0.030761719, 0.015808105, 0.07550049, -0.030136108, 0.020568848, 0.005207062, 0.0005426407, -0.014221191, 0.009414673, -0.06311035, -0.010810852, -0.007972717, -0.0138168335, 0.0137786865, 0.0021743774, -0.012786865, 0.006134033, 0.03805542, 0.015388489, 0.0021152496, 0.0035533905, 0.01576233, -0.01058197, 0.021331787, -0.049835205, 0.009773254, -0.031234741, 0.0004172325, -0.06933594, 0.08068848, 0.03540039, 0.024765015, 0.0004506111, -0.002620697, -0.005378723, -0.08312988, -0.014083862, 0.006126404, -0.006690979, -0.022567749, -0.031280518, 7.492304e-05, -0.02192688, -0.0103302, 0.014839172, -0.008140564, 0.0234375, -0.013389587, 0.014717102, 0.0025024414, -0.011734009, 0.021865845, -0.028549194, 0.002670288, -0.034454346, 0.0070533752, 0.03604126, -0.047454834, -0.028411865, 0.01374054, 0.002286911, 0.007534027, -0.0025196075, 0.0055389404, -0.032348633, 0.010948181, 0.0184021, 0.019989014, 0.0066566467, -0.00075626373, -0.0039711, -0.027740479, -0.0018568039, 0.02444458, -0.016052246, 0.0062828064, 0.04751587, -0.017440796, -0.01940918, 0.03463745, -0.0357666, 0.049591064, 0.014411926, -0.042907715, 0.048065186, 0.0009074211, 0.010871887, -0.07824707, 0.10083008, -0.022354126, 0.018829346, -0.08569336, 0.017669678, 0.044677734, 0.077819824, -0.032806396, -0.03390503, 0.040802002, -0.049682617, -0.021377563, -0.017730713, 0.059539795, -0.047302246, 0.00187397, 0.013931274, 0.02835083, -0.037475586, 7.677078e-05, -0.054382324, -0.0076675415, 0.020721436, 0.0038490295, 0.017471313, -0.005794525, -0.052703857, -0.074645996, -0.022201538, 0.03164673, 0.016937256, -0.011566162, -0.021240234, -0.0095825195, -0.004432678, 0.009338379, 0.03265381, 0.0062675476, -0.032836914, -0.035064697, -0.01247406, 0.02029419, -0.008415222, 0.035217285, -0.026153564, -0.008491516, 0.0010223389, -0.0064048767, 0.015625, -0.0047683716, -0.04562378, -2.2292137e-05, -0.008880615, 0.0024032593, -0.023651123, -0.035888672, 0.079589844, -0.04446411, -0.057006836, -0.03555298, 0.051574707, -0.024917603, -0.022644043, 0.08148193, 0.04989624, 0.0069236755, 0.037902832, -0.0042152405, -0.045684814, -0.018615723, 0.008796692, -0.08300781, -0.0345459, -0.025802612, 0.011138916, -0.028076172, 0.0020523071, 0.008323669, 0.0413208, 0.022918701, 0.002128601, 0.0021324158, 0.0096206665, -0.021606445, -0.015533447, 0.00032830238, -0.016189575, 0.027816772, -0.03302002, 0.0135269165, -0.029541016, -0.004180908, 0.0049324036, 0.0463562, 0.027862549, -0.028060913, 0.006576538, 0.04550171, -0.024993896, 0.08148193, -0.01977539, -0.010536194, -0.0011148453, 0.053741455, 0.007118225, 0.04425049, -0.058776855, -0.027297974, -0.038024902, 0.049865723, 0.018676758, 0.05441284, -0.045166016, -0.0026607513, 0.024429321, 0.024642944, 0.050231934, 0.013771057, 0.03552246, -0.017333984, -0.02684021, 0.0124053955, -0.008148193, -0.024551392, -0.012916565, -0.066223145, -0.0035552979, 0.01612854, 0.0030593872, 0.045928955, -0.043670654, 0.05105591, 0.03390503, -0.05206299, 0.030258179, -0.011512756, 0.0052719116, 0.00856781, -0.046447754, 0.043701172, 0.014129639, 0.006504059, 0.0025196075, 0.011291504, -0.018112183, 0.021713257, -0.011192322, 0.04849243, -0.0340271, 0.02355957, 0.015365601, -0.04321289, -0.0121536255, 0.033935547, 0.0115356445, 0.009002686, -0.0758667, -0.014259338, -0.018096924, 0.0035152435, 0.027908325, 0.0023212433, 0.032440186, 0.025680542, -0.008125305, 0.010536194, -0.025817871, -0.032562256, 0.047698975, 0.005821228, 0.0027713776, -0.0047340393, -0.037322998, 0.052978516, -0.0077590942, 0.012039185, 0.0491333, -0.04336548, 0.006752014, 0.028213501, 0.013343811, -0.037200928, -0.052459717, 0.010017395, 0.037902832, -0.02822876, -0.0066986084, -0.008888245, 0.001364708, -0.015380859, -0.064575195, 0.010604858, -0.05142212, 0.016921997, 0.023529053, 0.041809082, -0.050354004, -0.046661377, -0.022369385, -0.011207581, -0.020507812, 0.06311035, -0.024734497, 0.041015625, 0.04046631, 0.04397583, 0.0519104, -0.009170532, 0.021347046, 0.01689148, -0.0088272095, 0.015991211, -0.009437561, -0.013183594, -0.021102905, 0.015853882, -0.0012788773, 0.026916504, 0.0046424866, 0.07299805, -0.012771606, 0.004676819, 0.0034370422, -0.014343262, 0.0126571655, -0.0031375885, 0.004184723, 0.0023784637, -0.010353088, -0.0042762756, -0.03253174, -0.030044556, 1.579523e-05, -0.04244995, 0.00166893, 0.00687027, -0.052612305, -0.029251099, 3.7312508e-05, 0.020111084, -0.059020996, -0.016998291, -0.019699097, 0.028945923, -0.018112183, 0.022521973, -0.028182983, 0.006046295, 0.021606445, 0.008110046, -0.0029067993, -0.04159546, -0.027542114, 0.0053215027, 0.008148193, -0.0075683594, 0.014183044, 0.079711914, 0.008224487, -0.0044822693, 0.025161743, -0.023742676, -0.022415161, 0.0340271, 0.012542725, 0.0029716492, 0.0054359436, 0.02268982, -0.030044556, 0.037994385, 0.0034656525, 0.011108398, -0.045776367, -0.008888245, -0.036193848, -0.047302246, -0.013259888, -0.0032749176, 0.004146576, 0.0048179626, -0.03074646, 0.008026123, 0.016952515, -0.0015897751, 0.024932861, -0.010093689, 0.028457642, -0.027130127, -0.034179688, -0.056427002, -0.011482239, 0.04324341, 0.023254395, -0.014350891, 0.020370483, -0.0055885315, -0.037872314, 0.014076233, 0.0051651, -0.010238647, -0.019134521, 0.021011353, -0.010673523, -0.037017822, 0.0062713623, -0.0178833, -0.016571045, -0.045074463, 0.01474762, 0.024124146, -0.027145386, 0.0060806274, -0.017227173, 0.00047683716, 0.0031909943, -0.018707275, -0.039031982, -0.055755615, 0.0019254684, 0.017959595, -0.027557373, 0.005405426, -0.0007777214, 0.0012140274, -0.044403076, 0.00057697296, 0.033691406, 0.0018987656, -0.0335083, 8.505583e-05, 0.022125244, 0.055480957, -0.0058898926, -0.101379395, -0.04824829, 0.03933716, 0.013908386, -0.018936157, 0.045684814, -0.031982422, 0.017181396, 0.022521973, -0.01309967, -0.00920105, 0.0113220215, 0.021591187, -0.0007042885, 0.017807007]}, "B00AB7SDC4": {"id": "B00AB7SDC4", "original": "Brand: Huntington\nName: Huntington 30040HNT Liquid Propane Gas Grill,Black\nDescription: \nFeatures: Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust\n30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty\n430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack\nA 10,000 BTU burner allows you to prepare mouth-watering side dishes\nEasy to maintain porcelain coated cooking grid\n", "metadata": {"Name": "Huntington 30040HNT Liquid Propane Gas Grill,Black", "Brand": "Huntington", "Description": "", "Features": "Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust\n30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty\n430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack\nA 10,000 BTU burner allows you to prepare mouth-watering side dishes\nEasy to maintain porcelain coated cooking grid", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.014923096, -0.022506714, -0.044647217, -0.040100098, -0.022125244, -0.030014038, -0.012756348, 0.039123535, -0.03829956, -0.0006914139, -0.03125, 0.023925781, -0.019927979, -0.03213501, 0.025863647, -0.049438477, 0.006134033, 0.018173218, -0.023529053, -0.047821045, 0.010322571, -0.03253174, -0.023101807, 0.06567383, 0.076660156, -0.07373047, -0.049041748, 0.024917603, 0.05718994, 0.027435303, 0.041046143, -0.035308838, 0.037017822, -0.019317627, 0.0004992485, -0.009124756, 0.02507019, -0.012359619, 0.0039024353, -0.012771606, -0.008850098, 0.02305603, -0.013847351, 0.004676819, -0.024505615, -0.07647705, 0.034973145, -0.015174866, 0.007926941, 0.015342712, 0.010253906, 0.042236328, 0.017456055, -0.01108551, -0.0012865067, 0.002117157, 0.019699097, -0.0051956177, 0.010223389, -0.03414917, -0.020965576, -0.0016736984, 0.03515625, 0.015655518, 0.011299133, -0.0044898987, 0.07531738, 0.0002603531, 0.015129089, 0.004383087, 0.01789856, 0.021591187, 0.035003662, 0.014701843, -0.004634857, -0.06707764, 0.03048706, -0.0063323975, 0.038208008, 0.012298584, 0.009254456, 0.008033752, 0.02746582, -0.013916016, 0.006454468, -0.011238098, -0.022003174, -0.014205933, -0.009567261, -0.043060303, -0.008255005, -0.0435791, -0.032806396, 0.055603027, -0.00052928925, -0.025741577, -0.073913574, -0.08483887, 0.017364502, 0.03591919, 0.0017223358, -0.02255249, 0.05078125, -0.0069770813, -0.013435364, 0.05041504, 0.024353027, 0.07141113, 0.027938843, 0.002729416, 0.0070648193, -0.0030899048, 0.004371643, -0.022476196, -0.03677368, 0.026733398, -0.0031147003, -0.004875183, 0.006263733, 0.02748108, -0.025115967, -0.015357971, 0.030532837, 0.033996582, 0.017791748, 0.028366089, -0.0076065063, -0.023040771, -0.050994873, 0.026824951, 0.0038223267, 0.006248474, 0.016464233, 0.04269409, -0.003238678, -0.017501831, -0.0011634827, 0.0063667297, 0.025360107, -0.006225586, -0.000890255, -0.022247314, 0.036132812, 0.015426636, 0.0070724487, 0.019378662, 0.026977539, 0.0112838745, -0.020599365, -0.04888916, 0.02281189, -0.014770508, 0.05441284, -0.004131317, -0.040985107, 0.0012922287, -0.005153656, -0.005672455, -0.045898438, -0.041107178, -0.046295166, -0.033996582, -0.01953125, -0.0072669983, -0.04547119, 0.06512451, 0.0390625, 0.011550903, 0.025466919, 0.065979004, -0.011665344, -0.048980713, 0.029876709, 0.012008667, -0.028427124, 0.031143188, -0.036621094, 0.048919678, 0.0793457, -0.11016846, -0.0826416, -0.05706787, 0.13000488, -0.04031372, -0.018753052, 0.043914795, 0.023406982, 0.05883789, -0.019897461, 0.0018167496, 0.039886475, 0.029830933, 0.0019016266, -0.014633179, 0.027557373, -0.006210327, -0.045013428, -0.001660347, -0.005783081, -0.035186768, 0.0017051697, -0.005558014, -0.010063171, -0.012054443, -0.018692017, -0.022613525, 0.0039138794, 0.012832642, 0.016571045, 0.02861023, 0.004714966, 0.009483337, -0.00085163116, -0.05895996, -0.038024902, 0.018341064, -0.013038635, 0.02734375, 0.042816162, 0.020767212, 0.053009033, -0.0036811829, 0.040100098, -0.007598877, 0.015319824, -0.012268066, -0.027877808, -0.0075149536, 0.017471313, -0.019332886, 0.016113281, 0.033843994, 0.12243652, 0.06958008, 0.0028038025, 0.06793213, 0.08282471, 0.022369385, -0.06695557, -0.023864746, 0.013763428, -0.010124207, -0.0124053955, 0.013389587, -0.0053138733, -0.0076675415, 0.023651123, -0.016433716, 0.0023880005, 0.008384705, 0.048065186, 0.0032634735, 0.023803711, 0.04345703, -0.028656006, 0.035125732, -0.013442993, 0.02204895, -0.012306213, 0.019256592, -0.023880005, 0.05029297, 0.05545044, -0.0019378662, 0.03540039, 0.027328491, 0.040863037, 0.04324341, -0.03741455, 0.017105103, -0.0045776367, 0.0021305084, 0.005458832, 0.008872986, -0.048034668, 0.021102905, -0.04272461, 0.029525757, 0.039855957, -0.009605408, 0.005470276, -0.002401352, -0.02709961, -0.0068855286, 0.05444336, 0.015472412, -0.016708374, -0.016998291, -0.010093689, 0.02279663, 0.038360596, 0.014091492, -0.0041770935, 0.0082092285, -0.007423401, -0.0013504028, 0.054718018, 0.0047187805, 0.0014152527, -0.019592285, 0.0041542053, 0.018447876, -0.0019874573, -0.0284729, -0.028701782, -0.0015449524, -0.043395996, -0.0033245087, -0.01802063, -0.045562744, 0.004085541, 0.033294678, 0.02583313, 0.048431396, -0.0036563873, -0.024154663, -0.01108551, 0.052856445, 0.0026493073, 0.01146698, -0.020584106, 0.04034424, -0.028213501, -0.004798889, 0.028335571, 0.025527954, -0.032104492, -0.0072364807, -0.029174805, 0.015197754, -0.022506714, -0.035461426, -0.036132812, -0.008720398, -0.012870789, 0.013725281, 0.0049362183, 0.005630493, -0.017333984, -0.052337646, -0.023468018, -0.053344727, -0.004371643, 0.0072402954, -0.041748047, -0.013160706, -0.0032577515, 0.01687622, -0.01373291, -0.0073928833, 0.013542175, -0.014175415, -0.011154175, -0.037841797, -0.01663208, 0.02154541, 0.010787964, -0.068725586, -0.0137786865, -0.080200195, -0.004119873, -0.018173218, -0.041046143, 0.035186768, 0.04559326, -0.021820068, -0.018875122, 0.00021100044, -0.032684326, -0.017120361, 0.02268982, -0.019210815, -0.048095703, -0.031585693, -0.03817749, 0.0104522705, 0.051727295, -0.03668213, -0.017715454, 0.010551453, -0.02330017, 0.0051078796, -0.032958984, -0.010688782, 0.01876831, 0.010643005, 0.009239197, 0.008422852, 0.021865845, 0.0017976761, 0.006160736, 0.01360321, -0.039764404, -0.011909485, -0.018875122, 0.007270813, -0.0074310303, -0.023803711, -0.018814087, -0.0067443848, -0.08947754, 0.010505676, -0.0055007935, -0.024429321, -0.009063721, -0.053344727, -0.046966553, -0.050842285, -0.01373291, 0.05255127, 0.010215759, -0.018585205, -0.023880005, 0.016845703, 0.023269653, -0.026123047, 0.012519836, -0.007331848, 0.031829834, -0.029022217, 0.004425049, -0.010536194, 0.001077652, 0.003019333, -0.023880005, 0.024963379, -0.014595032, 0.0060539246, 0.029006958, 0.048858643, 0.000467062, 0.014709473, -0.037902832, -0.030517578, 0.043029785, 0.04220581, 0.005126953, -0.0014419556, 0.012176514, 0.0027370453, -0.061035156, -0.017105103, 0.008857727, 0.058013916, -0.018127441, 0.0063171387, -0.042816162, -0.06549072, -0.046661377, -0.029373169, -0.004863739, 0.013198853, -0.0021438599, 0.02796936, 0.013412476, 0.08862305, -0.0082092285, 0.060516357, 0.027801514, -0.048919678, -0.009147644, -0.052886963, 0.021133423, 0.032226562, 0.0075187683, -0.01386261, -0.015716553, 0.04776001, 0.024002075, -0.034973145, 0.03591919, 0.039276123, 0.00075149536, -0.024627686, -0.000644207, -0.013427734, 0.034240723, -0.010391235, 0.018203735, -0.03479004, -0.039154053, -0.008178711, -0.08538818, 0.113220215, 0.050476074, -0.030029297, 0.0847168, 0.059387207, -0.023605347, 0.019622803, -0.002565384, 0.017074585, -0.0022945404, 0.029830933, -0.022384644, 0.0036888123, -0.0029945374, 0.018600464, 0.0042686462, -0.025161743, -0.013168335, -0.0031337738, 0.023406982, 0.012718201, -0.03845215, 0.010505676, 0.019973755, -0.030471802, 0.004142761, -0.038726807, -0.021484375, -0.052764893, 0.0076065063, 0.0030136108, -0.035339355, -0.011421204, -0.062042236, -0.01184082, -0.06915283, 0.022628784, 0.0259552, 0.015701294, 0.0034484863, 0.03866577, 0.0019989014, 0.010391235, -0.049224854, -0.027420044, -0.03894043, -0.016326904, 0.031036377, 0.018295288, 0.021606445, 0.0035114288, 0.008270264, 0.035858154, -0.004322052, -0.009613037, -0.071777344, -0.04547119, -0.0178833, 0.005958557, 0.010375977, -0.026046753, 0.0009994507, -0.027435303, -0.0038394928, -0.0035076141, -0.009185791, -0.031555176, 0.0019330978, 0.014533997, -0.014755249, -0.0158844, -0.0011205673, -0.027908325, -0.025878906, -0.008903503, 0.011314392, -0.008430481, 0.029953003, 0.03262329, -0.061157227, -0.020935059, -0.024490356, -0.016311646, 0.044708252, -0.00056934357, 0.029327393, -0.031707764, -0.016647339, -0.006046295, 0.085876465, -0.014579773, 0.015548706, -0.04937744, -0.025283813, 0.013763428, 0.01423645, 0.025604248, -0.035217285, 0.007499695, -0.015525818, -0.013313293, -0.048431396, -0.0006418228, 0.037261963, -0.04925537, -0.039031982, -0.016479492, 0.06173706, -0.010559082, 0.012123108, 0.039276123, 0.012397766, -0.018981934, 0.026657104, -0.0692749, 0.01789856, -0.0079422, -0.038757324, 0.02784729, 0.0037117004, -0.006465912, 0.019729614, 0.07104492, 0.02267456, -0.04296875, 0.020492554, -0.0037555695, 0.00868988, 0.020935059, -0.03237915, 0.032073975, -0.010025024, -0.059295654, -0.048980713, 0.0368042, 0.04446411, 0.014373779, 0.014953613, 0.014961243, 0.019073486, -0.028060913, 0.0058288574, -0.0048599243, -0.03829956, -0.0035915375, -0.02029419, -0.01739502, 0.0035705566, -0.025268555, -0.037475586, -0.030960083, -0.0110321045, 0.018844604, -0.00919342, -0.03451538, 0.0049552917, -0.0074882507, -0.01235199, 0.0030975342, -0.024505615, -0.050964355, 0.04144287, -0.041778564, -0.039093018, 0.026031494, -0.021255493, 0.012237549, -0.030532837, 0.0024204254, -0.037231445, -0.011100769, 0.026123047, -0.031158447, -0.031951904, 0.01727295, 0.0018281937, 0.012763977, -0.0064086914, 0.053009033, -0.033966064, 0.041748047, 0.051727295, -0.033966064, -0.012794495, 0.029724121, -0.035491943, 0.04925537, 0.0043563843, -0.04800415, 0.006706238, -0.008148193, 0.021591187, -0.03692627, 0.031799316, -0.00034809113, -0.017547607, -0.05822754, 0.008361816, -0.00014734268, 0.008842468, 0.018936157, -0.0368042, 0.02180481, -0.023513794, -0.008003235, -0.00041604042, 0.029251099, -0.024612427, -0.022354126, -0.008636475, -0.05496216, -0.030670166, -0.03552246, -0.021270752, 0.008903503, 0.015457153, -0.022766113, 0.022583008, 0.008178711, -0.037384033, -0.034851074, -0.003232956, 0.0024700165, -0.04031372, -0.0023994446, -0.015571594, 0.0025863647, 0.002796173, 0.027053833, -0.007095337, 0.01108551, -0.041778564, -0.05355835, -0.052001953, -0.0069236755, -0.03781128, 0.05480957, -0.035736084, 0.0051994324, 0.013671875, 0.0006284714, 0.018981934, 0.03060913, -0.074157715, -0.016357422, 0.014892578, 0.02406311, 0.005470276, -0.02532959, 0.06530762, -0.030792236, -0.032287598, -0.05886841, 0.028045654, -0.022491455, -0.035217285, 0.08843994, 0.05227661, 0.008880615, 0.028869629, -0.010505676, -0.057891846, -0.021636963, -0.009407043, -0.0597229, -0.0340271, -0.055389404, 0.021377563, 0.007949829, -0.039886475, 0.0034427643, 0.041534424, 0.029159546, -0.025848389, 0.029312134, -0.034973145, 0.03277588, -0.041931152, 0.000726223, -0.020751953, 0.0012598038, -0.008483887, 0.003774643, -0.041046143, -0.008811951, 0.0077400208, 0.014839172, 0.0107040405, -0.007446289, -2.5689602e-05, 0.017959595, -0.009239197, 0.046905518, -0.011634827, 0.010185242, -0.020111084, 0.03427124, -0.0055618286, 0.056488037, -0.040496826, -0.018035889, -0.04498291, 0.017669678, 0.03805542, 0.057861328, -0.0390625, 0.02619934, 0.0473938, 0.03189087, 0.007019043, 0.013763428, 0.06781006, 0.036376953, -0.060516357, -0.020065308, -0.0209198, -0.038482666, -0.008171082, -0.068725586, 0.0015792847, -0.015144348, -0.00075244904, 0.0158844, -0.027313232, 0.036224365, 0.030517578, -0.03164673, 0.02999878, -0.029022217, 0.010108948, 0.008079529, 0.016494751, 0.0501709, 0.04425049, 0.017745972, -0.0022621155, 0.0016994476, -0.019134521, 0.012680054, -0.013320923, 0.057922363, -0.031829834, 0.03552246, 0.020446777, -0.08654785, 0.018295288, 0.02708435, -0.0066490173, 0.015052795, -0.03741455, 0.006793976, 0.01335907, -0.025802612, -0.0178833, 0.0231781, 0.033355713, -0.010986328, -0.019989014, 0.019180298, -0.017807007, -0.022445679, 0.03894043, 0.038482666, 0.010093689, -0.02659607, 0.0023727417, 0.022888184, 0.03781128, -0.011367798, 0.0362854, -0.05078125, 0.023513794, -0.011795044, 0.015792847, -0.024215698, -0.019943237, 0.014175415, 0.022705078, 0.00029587746, 0.022064209, -0.005710602, 0.031707764, -0.0025177002, -0.013008118, 0.010276794, -0.026138306, 0.026168823, 0.021575928, -0.0053520203, -0.035705566, -0.048919678, -0.021606445, -0.04156494, 0.0068473816, -0.013320923, -0.0061149597, -0.008224487, 0.008674622, 0.024917603, 0.05038452, 0.0022010803, 0.021453857, -0.009048462, -0.016738892, 0.032287598, -0.041534424, -0.04156494, -0.04147339, 0.039642334, 0.03717041, 0.01461792, 0.02293396, -0.0154418945, -0.0067481995, 0.014633179, -0.027023315, 0.02305603, -0.031143188, -0.012481689, 0.02357483, -0.017837524, 0.0132751465, -0.021987915, -0.010444641, -0.050750732, -0.019821167, -0.05203247, 0.017868042, -0.036224365, -0.039520264, -0.00856781, -0.008834839, 0.012168884, -0.053863525, 0.013015747, -0.014175415, 0.043304443, 0.0149002075, 0.07904053, -0.04916382, -0.06213379, -0.04006958, 0.030654907, -0.06976318, -0.034484863, 0.045898438, -0.0154800415, 0.019638062, 0.0052452087, 0.02961731, 0.056518555, 0.03829956, -0.02116394, 0.044189453, 0.016983032, -0.020263672, -0.0029888153, 0.027236938, -0.023223877, 0.015914917, -0.00995636, -0.0071983337, 0.05609131, 0.014762878, -0.017166138, -0.05178833, -0.018295288, -0.03982544, 0.016540527, 0.0017290115, -0.020584106, 0.016204834, 0.0021533966, -0.058013916, 0.024108887, 0.002746582, 0.03656006, 0.02947998, -0.0017528534, 0.058807373, -0.012535095, -0.07672119, -0.0993042, -0.028869629, 0.032958984, 0.026382446, -0.006893158, -0.008132935, 0.00806427, -0.0067443848, -0.017028809, -0.0028209686, 0.017318726, 0.008338928, 0.02017212, -0.019348145, 0.0029029846, -0.0072631836, 0.006629944, -0.015541077, -0.012016296, 0.008262634, 0.053955078, -0.04815674, -0.030792236, -0.00844574, 0.009284973, -0.00048804283, -0.056640625, -0.05935669, -0.0085372925, 0.008903503, -0.0022792816, -0.017288208, 0.026062012, 0.017059326, 0.040100098, -0.010696411, 0.00945282, 0.013679504, 0.020996094, -0.0046195984, 0.0010766983, 0.00667572, 0.017913818, -0.03930664, -0.052490234, -0.04006958, 0.023834229, -0.009269714, 0.0049743652, 0.041534424, -0.03793335, 0.008483887, 0.011795044, -0.00945282, -0.03012085, 0.03286743, 0.032714844, -0.0050086975, 0.02130127]}, "B004BH7T5W": {"id": "B004BH7T5W", "original": "Brand: Weber\nName: Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Island not included\nPlease reference building guide for Weber model number 7360001 prior to building island\n9 mm diameter stainless steel rod cooking grates\nStainless steel Flavorizer bars\nSnap-Jet individual burner ignition system\n", "metadata": {"Name": "Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel", "Brand": "Weber", "Description": "", "Features": "Island not included\nPlease reference building guide for Weber model number 7360001 prior to building island\n9 mm diameter stainless steel rod cooking grates\nStainless steel Flavorizer bars\nSnap-Jet individual burner ignition system", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.045043945, -0.020095825, -0.05606079, 0.0057373047, -0.05557251, -0.014854431, -0.030578613, 0.02746582, -0.02015686, -5.686283e-05, 0.028671265, 0.0014076233, -0.03225708, -0.05609131, 0.022079468, -0.01927185, 0.025222778, 0.01864624, 0.018035889, -0.019454956, 0.010108948, -0.0087890625, 0.008018494, 0.07891846, 0.025299072, -0.026184082, -0.025054932, 0.017745972, 0.0029144287, 0.005680084, 0.011314392, 0.018432617, 0.036956787, 0.02027893, -0.008979797, 0.0026988983, 0.012283325, -0.006336212, -0.013160706, 0.026809692, 0.022232056, 0.0030021667, 0.017654419, 0.0017633438, -0.01008606, -0.021560669, 0.04574585, -0.006500244, 0.033996582, -0.003484726, 0.015899658, 0.018966675, 0.009429932, -0.022827148, -0.007003784, 0.029296875, 0.03125, 0.0001475811, 0.010375977, -0.008743286, -0.023468018, 0.040374756, 0.013801575, -0.008911133, -0.02772522, 0.033294678, 0.13891602, -0.032287598, -0.012481689, -0.072143555, -0.010475159, 0.025390625, -0.019821167, 0.045684814, -0.01637268, -0.026611328, 0.047607422, 0.0068855286, 0.0104522705, 0.05545044, 0.026397705, -0.015167236, 0.011779785, 0.021881104, -0.008903503, 0.020843506, -0.0093688965, -0.020889282, -0.0128479, -0.009284973, -0.009925842, -0.007217407, -0.054260254, 0.07110596, 0.0060653687, -0.01007843, 3.528595e-05, -0.0018692017, -0.009735107, 0.006828308, 0.0024414062, -0.020263672, 0.013183594, -0.0104599, 0.00036406517, 0.06573486, 0.016708374, 0.054473877, 0.021469116, -0.012031555, 0.0039787292, -0.009033203, -0.014701843, -0.021362305, -0.03274536, 0.026519775, -0.020828247, -0.0019311905, 0.005130768, 0.00995636, -0.034729004, -0.030166626, 0.027008057, 0.024353027, 0.043640137, 0.04888916, -0.022613525, 0.01436615, -0.031921387, -0.022216797, -0.019500732, 0.059753418, 0.049468994, 0.005935669, -0.0154800415, 0.011528015, 0.0033740997, 0.010635376, 0.012283325, -0.0009908676, -0.00944519, 0.0075302124, 0.040649414, -0.0029067993, -0.015640259, 0.020629883, 0.027893066, 0.019180298, -0.03111267, -0.052093506, 0.022583008, -0.0051193237, 0.0413208, 0.005844116, -0.059509277, -0.0023956299, -0.014259338, -0.016357422, -0.036071777, -0.056152344, -0.024780273, -0.025238037, -0.020645142, -0.027374268, -0.050323486, 0.03994751, 0.06402588, 0.01071167, 0.015945435, 0.06210327, -0.024383545, -0.0592041, 0.017471313, -0.0011758804, -0.03942871, 0.02368164, -0.023391724, -0.012870789, 0.043548584, -0.022964478, -0.032836914, -0.031341553, 0.028244019, -0.0015048981, -0.011489868, 0.02130127, 0.0063209534, -0.003742218, 0.0069274902, -9.7095966e-05, 0.035339355, 0.03277588, 0.019134521, -0.010314941, 0.021224976, -0.0070495605, -0.056518555, -0.008255005, -0.018493652, -0.0017404556, -0.003440857, 0.034820557, -0.025787354, 0.020248413, 0.014602661, -0.021484375, 0.027496338, 0.007194519, 0.030380249, 0.0047721863, -0.016921997, -0.0033416748, 0.024841309, -0.08404541, -0.034240723, 0.05444336, -0.026535034, 0.021896362, 0.01335907, 0.013435364, 0.043426514, -0.04272461, 0.01789856, 0.02331543, -0.014793396, 0.03918457, -0.038208008, 0.035339355, 0.003643036, 0.01374054, 0.016723633, 0.016937256, 0.07495117, 0.057556152, -0.02507019, 0.042816162, 0.050476074, 0.06707764, -0.041412354, -0.00894165, 0.0034236908, -0.034454346, -0.033294678, 0.01864624, -0.012565613, 0.029296875, 0.01939392, -0.014282227, -0.012924194, -0.008811951, 0.01033783, -0.0030002594, 0.03955078, -0.0011501312, -8.106232e-05, 0.03152466, -0.025970459, -0.011672974, -0.026229858, 0.051208496, -0.006149292, 0.059814453, 0.04257202, 0.007801056, 0.021392822, 0.028259277, 0.03366089, 0.028518677, -0.027801514, 0.011314392, 0.009437561, 0.0113220215, -0.015060425, -0.010437012, 0.020065308, -0.019424438, -0.055725098, 0.03387451, -0.0032463074, -0.016784668, -0.008155823, -0.009429932, 0.006286621, -0.0146865845, 0.023605347, 0.02331543, 0.018966675, -0.023117065, -0.0046157837, -0.023254395, 0.020950317, -0.0025310516, -0.028518677, 0.015159607, -0.0065231323, -0.03152466, 0.014282227, 0.055786133, -0.02015686, -0.012588501, -0.0010843277, 0.0115356445, -0.048797607, 0.007118225, 0.002483368, -0.04119873, 0.02999878, 0.016662598, 0.013755798, -0.029266357, 0.016189575, 0.046539307, 0.023330688, -0.008285522, 0.051208496, 0.02357483, 0.011886597, 0.055480957, 0.026168823, -0.00095176697, 0.004852295, -0.019454956, -0.019454956, -0.036956787, -0.013214111, 0.01612854, -0.03463745, 0.011779785, 0.03250122, -0.032073975, -0.06945801, -0.060791016, -0.055541992, 0.004962921, -0.012878418, -0.010101318, -0.0044136047, -0.0030345917, -0.011932373, -0.0066375732, 0.0067481995, -0.016738892, -0.0034999847, -0.041412354, -0.0362854, -0.019821167, 0.043884277, -0.00089740753, 0.0028514862, 0.031463623, -0.0052261353, -0.003440857, -0.04058838, -0.058410645, -0.009849548, 0.020553589, 0.021453857, -0.043304443, 0.027954102, -0.05517578, -0.024719238, 0.004234314, -0.050201416, 0.009529114, 0.03125, -0.019897461, -0.02067566, -0.008560181, -0.010887146, 0.03704834, 0.01008606, 0.03555298, -0.030700684, -0.039520264, -0.054016113, -0.0013866425, 0.03488159, -0.036315918, -0.04019165, -0.001162529, 0.007457733, 0.028747559, -0.042663574, 0.015144348, 0.029281616, 0.009437561, 0.0064430237, 0.0501709, -0.0042304993, -0.021896362, -0.0061454773, 0.046173096, -0.028717041, -0.02456665, 0.04837036, 0.006263733, -0.0012559891, 0.02659607, -0.03591919, -0.03869629, -0.07397461, -0.01398468, 0.013916016, -0.07775879, 0.0039978027, -0.045532227, -0.06903076, -0.030456543, -0.0008325577, 0.040283203, -0.0058403015, 0.0018072128, -0.035705566, 0.038208008, -0.0058135986, -0.007358551, -0.004749298, 0.00027751923, 0.003019333, -0.021652222, 0.023010254, -0.03286743, 0.0098724365, 0.014297485, -0.044433594, -0.033325195, -0.050567627, 0.0357666, -0.06903076, 0.048614502, -0.026412964, 0.0007009506, -0.032470703, -0.010696411, -0.013633728, 0.066101074, 0.031097412, 0.028137207, 0.029693604, -0.014297485, -0.026748657, -0.007194519, 0.0014533997, 0.08068848, -0.0070877075, 0.020324707, -0.03894043, -0.059143066, 0.00034594536, -0.0132369995, 0.017730713, 0.007144928, 0.044769287, 0.017044067, -0.0110321045, 0.05734253, 0.056365967, 0.05041504, 0.0049972534, 0.006729126, -0.009124756, -0.042663574, 0.02897644, 0.00592041, 0.012931824, -0.015617371, -0.0317688, 0.03164673, 0.0014839172, -0.018493652, 0.03933716, 0.014160156, 0.029418945, 0.014419556, -0.009735107, 0.020401001, 0.0041389465, -0.002817154, -0.01828003, -0.0021800995, -0.026977539, -0.015029907, -0.07318115, 0.09118652, 0.070373535, -0.022125244, 0.0463562, 0.055633545, 0.0014295578, 0.025848389, 0.008003235, -0.023406982, 0.016235352, 0.006515503, -0.032592773, 0.023391724, 0.012512207, -0.0491333, 0.026138306, -0.0041656494, -0.04336548, 0.021896362, -0.037902832, -0.051116943, -0.04714966, -0.010047913, 0.034942627, -0.023956299, 0.036743164, 0.008178711, -0.011558533, -0.012054443, 0.0107421875, 0.033935547, -0.03668213, -0.040130615, 0.018005371, 0.0066947937, -0.051879883, 0.008140564, -0.015274048, 0.006416321, -0.03665161, 0.040618896, 0.023452759, -1.847744e-06, -0.06903076, 0.02319336, -0.00756073, 0.03744507, 0.021087646, 0.007671356, 0.050079346, -0.015701294, -0.007007599, -0.02558899, 0.0069999695, 0.015655518, -0.048309326, -0.052124023, -0.010314941, 0.0064201355, 0.015945435, -0.041229248, 0.022705078, -0.021987915, 0.008422852, -0.03286743, -0.0074424744, -0.058166504, -0.0060920715, 0.025619507, -0.04208374, 0.016357422, -0.008415222, -0.0074920654, -0.07714844, 0.018035889, -0.017150879, 0.049957275, 0.03253174, 0.044036865, -0.054504395, -0.030136108, -0.04434204, -0.020095825, 0.042053223, 0.0063476562, 0.016983032, -0.014297485, 0.009277344, 0.0048103333, 0.10668945, -0.007411957, 0.022613525, -0.05859375, -0.05166626, 0.005630493, -0.005115509, 0.04043579, -0.036224365, 0.033050537, -0.022262573, -0.0008382797, -0.040618896, -0.0055656433, 0.023757935, -0.02810669, -0.036834717, -0.014266968, 0.03363037, -0.011131287, 0.03488159, 0.009346008, -0.018798828, -0.028549194, 0.031341553, -0.03579712, -0.00957489, -0.00021755695, -0.0023918152, 0.006614685, -0.0118255615, -0.002418518, -0.011352539, 0.013648987, 0.044036865, -0.044830322, -0.005355835, 0.0513916, -0.042877197, 0.009506226, -0.027160645, -0.02835083, -0.03515625, 0.055419922, -0.07885742, 0.10595703, 0.066101074, -0.00035524368, 0.017745972, 0.01525116, -0.01335144, -0.05456543, 0.03060913, -0.013305664, -0.04257202, 0.013458252, -0.00052547455, -0.0079956055, 0.01474762, -0.021087646, -0.01159668, 0.041870117, 0.046447754, -0.02746582, -0.0034046173, -0.0069618225, -0.0008454323, 0.020401001, 0.0056266785, 0.025497437, -0.022979736, -0.02331543, 0.002527237, -0.031951904, -0.025878906, -0.022888184, -0.0018863678, 0.0014829636, 0.013458252, 0.005771637, -0.012817383, -0.008964539, 0.011192322, 0.001405716, -0.0041618347, -0.0071792603, 0.01739502, -0.03225708, 0.010108948, 0.058563232, -0.028335571, 0.03466797, -0.010177612, -0.03274536, -0.04296875, 0.03656006, -0.057250977, 0.025619507, 0.03387451, -0.10357666, 0.050201416, -0.017715454, -0.030426025, -0.00040483475, 0.066223145, -0.016143799, 0.037475586, -0.038360596, 0.0022068024, 0.05014038, 0.07788086, 0.026412964, -0.0635376, 0.03050232, -0.035003662, -0.024887085, 0.0055732727, 0.02772522, -0.03466797, -0.0124053955, 0.0065689087, -0.016845703, -0.025787354, 0.011077881, -0.036071777, -0.029800415, 0.032470703, -0.0014743805, 0.017990112, -0.035247803, -0.019378662, -0.060577393, -0.03491211, 0.052246094, 0.035827637, 0.026016235, -0.014091492, 0.0028362274, 0.033569336, 0.0002641678, 0.02293396, -0.003206253, 0.027648926, -0.033172607, -0.02835083, -0.00945282, -0.05697632, 0.01184082, -0.028671265, 0.0058403015, 0.0141067505, -0.03945923, -0.0015897751, 0.019256592, -0.03387451, -0.0032444, -0.015350342, -0.00856781, -0.048339844, -0.024047852, 0.054595947, -0.060455322, -0.052825928, -0.025650024, 0.021514893, -0.020767212, -0.03640747, 0.068847656, 0.03933716, 0.0061798096, 0.021377563, 0.0012788773, -0.06726074, 0.023727417, 0.018066406, -0.10235596, -0.015991211, -0.020706177, 0.015312195, 0.016601562, -0.0071754456, -0.017089844, 0.046569824, 0.006679535, -0.022735596, -0.020553589, -0.013374329, -0.0017538071, -0.014564514, 0.014305115, -0.0132751465, 0.00027871132, -0.024765015, -0.010627747, -0.04675293, -0.01689148, 0.05041504, 0.033081055, 0.015274048, -0.016159058, 0.01159668, 0.046966553, -0.041046143, 0.072631836, -0.009757996, -0.008422852, -0.008522034, 0.08050537, 0.0052337646, 0.079589844, -0.06915283, -0.051361084, -0.038330078, 0.026275635, 0.022232056, 0.044799805, -0.024993896, 0.024398804, 0.021881104, 0.012504578, 0.034484863, 0.036895752, 0.03555298, -0.008918762, -0.027282715, 0.016662598, 0.03768921, -0.03817749, -0.039001465, -0.053466797, 0.024124146, 0.02998352, 0.01789856, 0.032226562, -0.0006289482, 0.049072266, 0.011375427, -0.023468018, 0.003440857, -0.0023841858, 0.030578613, -0.002714157, -0.021377563, 0.03427124, 0.027160645, 0.010108948, -0.015106201, 0.04660034, -0.032592773, 0.008651733, 0.014129639, 0.06762695, -0.011497498, -0.015792847, 0.044891357, -0.016159058, -0.015159607, 0.010879517, 0.0037269592, -0.025405884, -0.052246094, 0.011108398, 0.013549805, -0.031463623, 0.01878357, -0.02381897, 0.0770874, -0.00013899803, 0.0025310516, 0.037597656, -0.05731201, -0.03173828, 0.059326172, 0.002084732, 0.020965576, -0.017913818, -0.0036830902, 0.060455322, 0.023971558, 0.010238647, 0.03314209, -0.026565552, 0.005695343, -0.015792847, 0.043823242, -0.023117065, -0.01953125, -0.0049591064, 0.003129959, -0.005847931, 0.025039673, 0.020111084, 0.020050049, -0.024353027, -0.04574585, 0.032409668, -0.05819702, 0.011795044, 0.01638794, 0.028808594, -0.014892578, -0.00844574, -0.008857727, 0.01953125, -0.0045661926, 0.044921875, 0.00059366226, 0.016952515, 0.034820557, 0.035461426, 0.056488037, -0.010971069, 0.022583008, 0.024475098, -0.0096206665, 0.012451172, 0.030685425, -0.003583908, -0.0027751923, -0.031982422, -0.012634277, 0.017791748, -0.02720642, 0.035736084, -0.011016846, 0.029891968, -0.0061798096, -0.0072898865, -0.013031006, -0.02633667, 0.014411926, 0.0047073364, -0.0115356445, -0.00037264824, -0.017562866, -0.04663086, 0.020233154, -0.043914795, -0.010391235, 0.0041770935, -0.029052734, 0.0024547577, 0.022109985, -0.011688232, -0.038757324, -0.017669678, 0.006137848, -0.026245117, 0.005630493, 0.06677246, -0.04321289, -0.033416748, -0.032440186, 0.013244629, -0.051757812, -0.008522034, 0.0055770874, -0.021377563, -0.010643005, -0.03540039, -0.023345947, 0.08227539, 0.006046295, -0.010467529, 0.024841309, -0.01448822, -0.03152466, 0.041381836, 0.010314941, 0.019638062, 0.007320404, 0.025222778, -0.014083862, 0.033691406, 0.023162842, -0.016937256, -0.040802002, -0.023376465, -0.032165527, -0.03062439, -0.0031585693, -0.001285553, 0.009437561, 0.010322571, -0.062469482, 0.008934021, -0.013839722, 0.03353882, 0.030685425, 0.005054474, 0.006652832, -0.045776367, -0.039215088, -0.046844482, -0.0024929047, 0.03665161, 0.048309326, -0.004962921, 0.010353088, 0.007434845, -0.011734009, -0.025360107, -0.023880005, 0.022094727, -0.0073013306, 0.04751587, -0.013580322, 0.000998497, -0.00023472309, 0.01737976, -0.02015686, -0.028060913, 0.024124146, 0.008392334, -0.036132812, -0.03289795, -0.01939392, 0.005142212, -0.032958984, -0.04663086, -0.016479492, -0.025512695, 0.009414673, 0.014038086, -0.0007991791, 0.014945984, 0.00982666, -0.019744873, -0.0020122528, 0.039611816, 0.007522583, 0.042663574, -0.040039062, 0.09094238, 0.020889282, 0.034454346, -0.011360168, -0.11035156, -0.06903076, 0.04232788, 0.0287323, -0.023254395, 0.07006836, -0.02835083, 0.002752304, 0.042175293, -0.026672363, -0.048675537, 0.02607727, -0.022247314, 0.0287323, 0.01574707]}, "B089D4KPM3": {"id": "B089D4KPM3", "original": "Brand: KitchenAid\nName: KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel\nDescription: \nFeatures: Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited\nFlush side burner cover creates extra workspace when the side burner is Not in use\nIncludes removable rear-acceSS catch pan, warming rack and caster wheels.\nConvertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003\n", "metadata": {"Name": "KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel", "Brand": "KitchenAid", "Description": "", "Features": "Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited\nFlush side burner cover creates extra workspace when the side burner is Not in use\nIncludes removable rear-acceSS catch pan, warming rack and caster wheels.\nConvertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0011034012, -0.004486084, -0.039611816, -0.034301758, -0.02722168, -0.006164551, -0.03050232, 0.015419006, 0.0071754456, -0.0010328293, -0.019699097, 0.021408081, 0.010627747, -0.043395996, 0.033447266, -0.012214661, 0.007091522, 0.011260986, 0.013977051, -0.0335083, 0.015525818, -0.027755737, 0.005760193, 0.05239868, 0.049316406, -0.033599854, -0.024902344, -0.0057907104, 0.044067383, 0.021881104, 0.034454346, -0.008300781, 0.0317688, -0.015296936, -0.0014238358, -0.027435303, 0.008926392, -0.017120361, -0.030700684, 0.02935791, 0.029968262, -0.010269165, 0.01701355, -0.021896362, -0.015945435, -0.01979065, 0.034851074, -0.010726929, 0.031951904, 0.027832031, 0.013427734, -0.0045051575, 0.015525818, 0.0075035095, -0.023651123, -0.031173706, 0.009521484, 0.014846802, 0.02067566, -0.016921997, -0.015464783, 0.018356323, 0.026184082, 0.0069465637, -0.02243042, 0.0004105568, 0.09124756, -0.0022678375, -0.024536133, -0.054534912, 0.006587982, 0.03427124, -0.026626587, -0.014373779, -0.014091492, 0.034454346, 0.00919342, -0.00756073, 0.005657196, 0.021759033, -0.013465881, 0.0025691986, -0.0029182434, 0.003967285, -0.0043029785, 0.022781372, -0.015945435, -0.023590088, 0.0151901245, -0.028640747, 0.013900757, 0.016921997, -0.06628418, 0.07019043, 0.0043907166, -0.015533447, -0.010795593, -0.036102295, 0.023590088, 0.022201538, -0.00057411194, -0.026504517, 0.040893555, -0.0063285828, -0.013069153, 0.034088135, 0.02130127, 0.091796875, 0.029083252, 0.013977051, -0.018920898, -0.0030879974, -0.022033691, -0.022949219, -0.036743164, 0.030441284, -0.019744873, -0.032196045, -0.0036525726, -0.014945984, -0.04736328, -0.030014038, 0.03543091, 0.0072402954, 0.025772095, 0.024169922, 0.013046265, -0.008865356, -0.016189575, 0.03805542, -0.034484863, -0.007881165, 0.06903076, 0.039001465, 0.01675415, -0.03366089, 0.02822876, -0.022750854, 0.029403687, -0.028396606, 0.04244995, -0.009559631, -0.01638794, 0.04788208, -0.017288208, 0.009391785, 0.021728516, 0.015602112, -0.02444458, -0.046539307, -0.005580902, -0.03314209, 0.040740967, 0.012969971, -0.058441162, 0.044921875, -0.032714844, 0.01171875, -0.052459717, -0.0032672882, -0.03729248, -0.024490356, 0.00178051, -0.06311035, -0.07269287, 0.031463623, 0.032440186, 0.0032463074, 0.026275635, 0.097229004, -0.018692017, 0.006801605, 0.034698486, 0.022384644, -0.019973755, -0.013580322, 0.032104492, 0.0039482117, 0.0435791, -0.06323242, -0.07562256, -0.053344727, 0.072143555, -0.05029297, -0.01576233, -0.0009717941, -0.023147583, -0.019332886, 0.04711914, -0.001156807, -0.010444641, -0.01638794, 0.014442444, -0.061431885, -0.012763977, 0.008834839, -0.039978027, 0.0070114136, -0.012130737, 0.017349243, 0.020202637, 0.030807495, -0.039733887, 0.014350891, -0.032196045, -0.013397217, 0.0019054413, 0.0077667236, 0.025543213, 0.012069702, -0.0096206665, -0.019165039, 0.015411377, -0.027130127, -0.026535034, 0.031707764, -0.026535034, 0.014778137, 0.009712219, -0.0023612976, 0.056854248, 0.00818634, 0.053100586, 0.020706177, 0.017120361, 0.035980225, -0.043762207, 0.016235352, 0.015197754, 0.009597778, 0.009246826, 0.04107666, 0.061676025, 0.07281494, 0.0014944077, 0.040527344, 0.089904785, 0.032440186, -0.017456055, -0.03161621, 0.0010271072, -0.0071487427, -0.018966675, 0.031555176, -0.014694214, 0.012771606, 0.02784729, -0.002822876, -0.02508545, -0.01158905, 0.025375366, 0.0064888, 0.036834717, 0.04827881, -0.013023376, 0.04449463, -0.0513916, -0.018325806, -0.007270813, 0.022827148, -0.0036792755, 0.03781128, 0.0423584, -0.0050811768, -0.015090942, 0.038604736, 0.012069702, 0.018157959, -0.04660034, 0.028381348, 0.029525757, 0.03643799, -0.006954193, 0.024169922, -0.0038375854, 0.0118255615, -0.026031494, 0.02507019, -0.007045746, 0.0034294128, 0.0047073364, -0.014373779, 0.030212402, 0.011756897, 0.019699097, -0.00459671, 0.0602417, 0.021560669, -0.02268982, -0.005962372, 0.030776978, 0.00756073, -0.017471313, -0.0013341904, -0.03137207, -0.00044703484, 0.04937744, 0.041992188, -0.01991272, -0.014350891, -0.02192688, -0.0007042885, -0.04663086, -0.0038375854, 0.009262085, -0.024490356, -0.008888245, 0.056030273, 0.026824951, -0.03475952, -0.0087890625, 0.025405884, 0.025115967, 0.018112183, 0.024520874, 0.0066604614, 0.005168915, 0.053863525, 0.026321411, 0.004962921, 0.006000519, 0.04458618, -0.022918701, -0.006778717, 0.03289795, 0.0029754639, -0.03475952, -0.00047373772, 0.014633179, 0.0032234192, -0.015411377, 0.0049209595, -0.027023315, 0.017318726, -0.0016698837, 0.0015974045, 0.006210327, -0.0047683716, 0.0064926147, -0.013130188, 0.033813477, 0.001657486, -0.009239197, -0.01576233, -0.03375244, -0.011741638, 0.037200928, 0.011695862, -0.005203247, 0.026229858, 0.008392334, -0.01637268, -0.03878784, -0.07458496, -0.010147095, -0.017929077, 0.0014915466, -0.032958984, 0.017150879, -0.05343628, -0.022537231, -0.021728516, -0.06518555, -0.025985718, 0.049224854, -0.0017728806, -0.07116699, -0.00021326542, -0.00957489, 0.02279663, 0.038024902, -0.006793976, -0.017608643, -0.024032593, -0.038330078, -0.02935791, 0.05670166, -0.009254456, -0.00097608566, 0.020553589, 0.015357971, 0.026397705, -0.0051078796, 0.015823364, -0.007904053, 0.015007019, -0.005302429, 0.018371582, -0.008926392, -5.811453e-05, -0.014556885, 0.013038635, -0.029907227, -0.018203735, 0.012435913, 0.010322571, -0.010505676, -0.0044822693, -0.020935059, -0.019058228, -0.07684326, 0.00409317, -0.04168701, -0.005504608, -0.009864807, -0.12225342, -0.022506714, -0.07989502, 0.011375427, 0.053466797, -0.016998291, 0.012825012, -0.041046143, 0.020843506, -0.023620605, 0.004928589, -0.015129089, -0.00894165, -0.015701294, -0.013664246, 0.044677734, -0.06317139, 0.01777649, 0.027404785, -0.017532349, 0.022842407, -0.03704834, 0.008407593, -0.03036499, 0.02746582, -0.020614624, -0.004055023, -0.020385742, -0.0033817291, -0.0151901245, 0.017684937, 0.01638794, -0.010673523, 0.045074463, -0.03262329, -0.047607422, -0.015144348, -0.015914917, 0.035614014, -0.026168823, 0.0104599, -0.021484375, -0.066345215, -0.013908386, -0.04901123, -0.017669678, 0.005214691, 0.013542175, 0.03326416, 0.0067596436, 0.09466553, 0.046447754, 0.06359863, -0.00274086, -0.0463562, -0.029312134, -0.05593872, 0.045959473, 0.018707275, 0.00064373016, -0.03894043, 0.015853882, 0.017349243, 0.0013151169, -0.0040016174, 0.0077819824, 0.051513672, 0.03488159, -0.0068130493, -0.028121948, -0.032287598, 0.034454346, -0.009536743, 0.017929077, -0.044952393, -0.01210022, 0.00023269653, -0.10192871, 0.103637695, 0.06982422, -0.033447266, 0.06854248, 0.057159424, 0.000998497, 0.0019054413, -0.011650085, -0.0062713623, 0.020690918, 0.0011463165, 0.013511658, 0.009109497, -0.0058631897, 0.017471313, -0.004436493, -0.018341064, -0.00242424, 0.0087890625, 0.027267456, -0.014251709, -0.095214844, 0.010734558, 0.060943604, -0.020004272, -0.0040130615, -0.06933594, 0.00021529198, -0.058654785, 0.006866455, 0.0062294006, -0.012878418, -0.005672455, 0.015556335, -0.0047073364, -0.009643555, -0.00046133995, -0.014251709, 0.0020866394, -0.019073486, 0.010719299, 0.05307007, 0.008277893, -0.052734375, 0.054748535, -0.03479004, 0.020523071, 0.04486084, 0.042816162, 0.052886963, -0.018234253, -0.02003479, -0.031433105, 0.020599365, 0.034301758, -0.02468872, -0.05682373, -0.006778717, -0.0032291412, 0.003692627, -0.048309326, 0.016448975, -0.012962341, 0.00970459, -0.025497437, -0.0054092407, -0.050964355, -0.032714844, 0.0007047653, -0.018997192, -0.020767212, -0.001791954, -0.032196045, -0.024810791, -0.014633179, -0.017990112, 0.023651123, 0.0023956299, 0.03302002, -0.03869629, -0.030853271, -0.07043457, -0.00434494, 0.054992676, 0.03427124, 0.053588867, -0.045959473, -0.0046043396, -0.004878998, 0.080078125, 0.009063721, 0.047210693, -0.038146973, -0.022872925, 0.005508423, 0.019332886, 0.059631348, -0.018798828, 0.03479004, -0.015525818, 0.017654419, -0.04348755, -0.013374329, 0.07159424, 0.013916016, -0.0054130554, -0.026062012, 0.03579712, -0.0345459, 0.00041651726, -0.012924194, 0.046783447, 0.033935547, -0.01890564, -0.08959961, -0.024093628, 0.011650085, -0.028518677, 0.021865845, 0.0058555603, -0.02268982, 0.038757324, 0.04345703, -0.0022945404, -0.042510986, 0.0017404556, -0.012588501, -0.019836426, -0.006290436, -0.005382538, 0.0065460205, -0.013206482, 0.0045814514, -0.08294678, 0.078430176, 0.061462402, -0.016784668, 0.0066375732, -0.014671326, -0.035858154, -0.020507812, -0.0040359497, -0.027786255, -0.030319214, -0.03387451, -0.01928711, 0.021835327, -0.014862061, 0.014022827, -0.0045547485, 0.0038204193, 0.014457703, -0.046417236, 0.010818481, -0.018829346, -0.0025100708, 0.00605011, -0.0154800415, -0.0011816025, -0.0335083, 0.012145996, 0.022384644, -0.030273438, -0.006713867, 0.0076522827, -0.004283905, -0.024810791, -0.012275696, 0.0008339882, 0.0064849854, -0.029006958, 0.010635376, -0.008636475, -0.025009155, -0.014953613, 0.01576233, -0.014282227, -0.0010128021, 0.05319214, -0.032684326, 0.04421997, 0.025161743, -0.022735596, -0.035247803, 0.029327393, -0.05432129, 0.074401855, 0.013465881, -0.06866455, 0.015655518, 0.00484848, -0.013168335, -0.02973938, 0.08459473, -0.005092621, 0.021240234, -0.05267334, 0.008720398, 0.02822876, 0.03604126, 0.012519836, -0.045318604, 0.05657959, -0.02508545, -0.027297974, 0.0013561249, 0.0017337799, -0.049804688, -0.019317627, 6.854534e-05, -0.029663086, -0.03552246, -0.001657486, -0.017242432, -0.007911682, 0.021652222, -0.038269043, 0.020706177, 0.015258789, -0.033691406, -0.025939941, -0.009552002, -0.0033092499, 0.0058555603, -0.010345459, 0.028518677, -0.005382538, 0.0033512115, 0.011779785, 0.02330017, 0.024154663, -0.0076942444, -0.059448242, -0.08148193, -0.020202637, -0.060424805, 0.05117798, -0.050048828, -0.054473877, -0.039520264, -0.0071144104, 0.013473511, -0.034301758, -0.05682373, -0.032592773, -0.008987427, 0.004398346, -0.004611969, -0.0013008118, 0.06451416, -0.044677734, -0.029510498, -0.1015625, 0.029647827, -0.0053977966, -0.034423828, 0.06817627, 0.005695343, 0.011505127, 0.022750854, -0.011512756, -0.016937256, 0.007041931, 0.009223938, -0.041992188, -0.04949951, -0.025817871, -0.009666443, -0.01651001, -0.009902954, -0.013114929, 0.041992188, -0.0017242432, -0.029403687, -0.06097412, -0.027267456, 0.0028953552, -0.017929077, 0.0054092407, -0.044128418, -0.005290985, -0.038848877, -0.024597168, -0.062438965, -0.05670166, 0.041809082, 0.028808594, -0.011817932, 0.0023822784, 0.005138397, -0.013885498, -0.007686615, 0.061645508, -0.043670654, 0.0107803345, 0.017425537, 0.045684814, 0.0060310364, 0.051086426, -0.014770508, -0.02128601, -0.050109863, 0.025421143, -0.0011472702, 0.07519531, -0.059326172, -0.0048332214, -0.0096206665, 0.056854248, 0.010765076, 0.0057373047, 0.023208618, -0.0058784485, -0.047454834, -0.012359619, -0.0009946823, -0.038024902, -0.053344727, -0.043670654, -0.033569336, 0.014785767, 0.0055656433, 0.048858643, -0.019577026, 0.029281616, -0.010299683, 0.0020446777, 0.003534317, 0.011184692, 0.025924683, -0.029388428, -0.04067993, -0.0023460388, -0.0067214966, 0.023666382, -0.01146698, -0.008155823, 0.0038700104, 0.019241333, -0.024108887, 0.05038452, -0.04156494, 0.01474762, 0.025726318, -0.05090332, -0.010169983, 0.05645752, 0.025039673, 0.014503479, -0.047851562, -0.0118637085, -0.009376526, -0.014129639, 0.0069847107, 0.0048713684, 0.033935547, -0.0030384064, -0.012756348, 0.0042381287, -0.045776367, -0.03869629, 0.027435303, -0.0149002075, 0.00066423416, 0.005039215, -0.045196533, 0.014175415, 0.024734497, -0.0018587112, 0.005859375, -0.03161621, 0.027252197, 0.008956909, 0.054595947, -0.020339966, -0.01033783, 0.0016784668, -0.018203735, 0.019439697, 0.036254883, 0.04333496, 0.010635376, 0.025100708, -0.02545166, 0.0152282715, -0.01663208, 0.02835083, 0.038208008, 0.011756897, -0.04458618, -0.025787354, -0.004825592, -0.012916565, 0.01777649, 0.032836914, 0.0011539459, 0.05517578, 0.023666382, 0.035736084, 0.07141113, -0.007663727, 0.04421997, 0.0055503845, -0.007774353, 0.0020599365, 0.0069999695, -0.021362305, -0.031021118, -0.012306213, -0.014640808, -0.011230469, -0.0146484375, 0.011390686, 0.04953003, -0.013938904, -0.02079773, -0.025909424, 0.006629944, -0.00868988, 0.07727051, -0.050567627, -0.0042762756, -0.015380859, -0.022949219, -0.008674622, 0.0038547516, -0.0284729, 0.03012085, 0.027694702, -0.04031372, -0.0023097992, 0.025161743, -0.025360107, -0.05911255, -0.025558472, -0.0041236877, 0.007881165, -0.0024490356, 0.06317139, -0.036895752, -0.058502197, -0.02772522, 0.027862549, -0.06890869, -0.023269653, 0.006832123, 0.010276794, 0.023239136, -0.005153656, 0.0053863525, 0.10070801, 0.013328552, -0.01586914, 0.014633179, -0.0048599243, -0.024230957, 0.00014030933, 0.014076233, -0.04208374, -0.005554199, 0.02015686, 0.0035743713, 0.023086548, 0.037719727, -0.015602112, -0.025726318, 0.0044555664, 0.010108948, -0.00012397766, -0.022613525, -0.0033721924, 0.0012340546, 0.0038642883, -0.024841309, -0.010192871, 0.007171631, -0.006565094, 0.04321289, 0.033172607, 0.04208374, -0.0069770813, -0.08709717, -0.08105469, -0.024490356, 0.03829956, -0.0050849915, -0.0053634644, 0.0025691986, 0.0043945312, -0.010902405, -0.008773804, 0.006755829, -0.019485474, 0.00028467178, -0.021606445, 0.07110596, -0.01096344, -0.006664276, 0.030578613, -0.044891357, -0.057739258, 0.008972168, -0.003255844, -0.014190674, -0.026138306, -0.041992188, 0.01423645, -0.027542114, -0.048095703, 0.008773804, -0.020339966, 0.009262085, -0.0029182434, 0.021209717, 0.03643799, 0.034606934, -0.03074646, -0.024215698, -0.0060768127, 0.0124435425, -0.024780273, -0.046783447, 0.03717041, 0.015403748, 0.068725586, -0.017120361, -0.07751465, -0.037750244, 0.024658203, 0.028137207, -0.0057029724, 0.059387207, -0.023895264, -0.00037503242, 0.026550293, -0.016784668, -0.014564514, 0.031158447, 0.056396484, 0.01260376, 0.013252258]}, "B08F27PWFS": {"id": "B08F27PWFS", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating\nDescription: \nFeatures: \u3010Grill and Griddle Combo\u3011--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA]\n\u3010Rapid Heating\u3011--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious.\n\u3010Easy Cleaning\u3011-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use.\n\u3010Anti-deformation Surface\u3011-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature.\n\u3010Power Source Type\u3011--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.\n", "metadata": {"Name": "Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating", "Brand": "CAMPLUX ENJOY OUTDOOR LIFE", "Description": "", "Features": "\u3010Grill and Griddle Combo\u3011--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA]\n\u3010Rapid Heating\u3011--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious.\n\u3010Easy Cleaning\u3011-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use.\n\u3010Anti-deformation Surface\u3011-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature.\n\u3010Power Source Type\u3011--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0040245056, -0.009811401, -0.020492554, -0.008888245, -0.006603241, -0.018630981, 0.017547607, -0.006198883, -0.060943604, 0.005558014, -0.01537323, 0.026382446, -0.039123535, -0.02243042, 0.029907227, -0.052490234, 0.033447266, -0.016098022, -0.016998291, -0.021697998, -0.017929077, 0.008094788, -0.021881104, 0.08190918, 0.05697632, -0.010223389, -0.06088257, 0.016998291, 0.025756836, 0.020248413, 0.031982422, -0.012290955, 0.036315918, -0.041534424, 0.018356323, -0.044830322, 0.0056762695, -0.03250122, -0.03125, 0.017608643, 0.01260376, -0.005264282, -0.04269409, 0.030227661, -0.046936035, -0.057800293, 0.04071045, -0.0004556179, -0.011138916, 0.005580902, -0.0054130554, -0.018508911, 0.012908936, -0.025650024, 0.005168915, 0.021743774, 0.011253357, 0.0036354065, 0.04006958, -0.034179688, -0.04208374, -0.012573242, 0.029510498, -0.009635925, -0.04232788, 0.016693115, 0.033294678, -0.021347046, 0.0022258759, -0.03387451, 0.0079193115, 0.00868988, 0.01940918, 0.017593384, -0.050445557, -0.02722168, 0.009010315, -0.015342712, 0.040100098, 0.0027618408, -0.021362305, -0.031082153, 0.033233643, -0.034484863, -0.0062675476, -0.036987305, -0.016357422, 0.009887695, -0.036956787, -0.030303955, -0.018295288, -0.07373047, -0.06921387, 0.061340332, 0.031921387, -0.0158844, -0.014846802, -0.035827637, 0.03149414, 0.010810852, 0.023376465, -0.037322998, 0.03289795, 0.0032539368, -0.033355713, 0.080566406, 0.020324707, 0.094177246, 0.02279663, 0.012084961, 0.017150879, -0.037750244, -0.017990112, 0.028564453, -0.028381348, -0.000259161, -0.05230713, 0.013877869, -0.0158844, 0.028915405, -0.026535034, -0.016357422, 0.013671875, 0.020477295, 0.015602112, 0.023971558, 0.007835388, -0.010856628, -0.055267334, 0.038116455, -0.037475586, -0.018463135, 0.07434082, 0.055023193, 0.020111084, -0.03237915, 0.02293396, 0.004371643, -0.0041656494, 0.00957489, -0.011878967, -0.0074424744, 0.023803711, -0.013252258, -0.030548096, 0.023742676, 0.0473938, 0.006095886, -0.037719727, -0.053222656, -0.02243042, 0.022232056, 0.035705566, 3.1113625e-05, -0.037261963, -0.027557373, -0.012550354, -0.021347046, -0.014762878, -0.057037354, -0.030853271, -0.0076293945, 0.008964539, -0.04208374, -0.015068054, -0.0012302399, -0.010902405, 0.00141716, 0.0026741028, 0.010757446, -0.015213013, 0.0524292, 0.00043725967, -0.005844116, 0.0030517578, -0.023727417, -0.0030841827, 0.060913086, 0.056549072, -0.11279297, -0.082092285, -0.076293945, 0.090270996, -0.048706055, -0.007205963, -0.011482239, 0.017456055, 0.025527954, 0.0022659302, 0.015342712, 0.014434814, 0.011856079, -0.041168213, 0.032928467, 0.03829956, 0.016586304, -0.043304443, 0.009643555, 0.00053596497, -0.050567627, 0.019515991, 0.038726807, -0.048217773, -0.00667572, -0.030578613, -0.020843506, 0.0059814453, 0.027862549, 0.014694214, 0.024459839, 1.6272068e-05, -0.006095886, 0.009498596, -0.06060791, -0.0085372925, 0.016494751, -0.033081055, 0.04714966, 0.004386902, 0.012451172, 0.023864746, -0.060638428, 0.022384644, 0.002122879, 0.026535034, -0.0060768127, -0.023117065, -0.009971619, 0.0118255615, -0.0014209747, -0.0052337646, 0.05065918, 0.052886963, 0.037902832, -0.033599854, 0.025390625, 0.04840088, 0.055511475, -0.031829834, -0.010467529, 0.0069770813, 0.000579834, -0.046722412, 0.0033302307, -0.011581421, -0.024963379, 0.007232666, 0.008377075, -0.013145447, 0.0340271, 0.047210693, 0.02772522, -0.010482788, 0.070251465, -0.006690979, -0.0028095245, -0.033721924, -0.0317688, -0.03289795, 0.031463623, 0.0024299622, 0.033203125, 0.020736694, 0.0046577454, -0.011222839, 0.0018701553, 0.012458801, 0.00592041, -0.018249512, -0.005760193, 0.018585205, -0.0015382767, -0.002790451, -0.0026340485, -0.025299072, 0.026550293, -0.031585693, 0.034301758, -0.004360199, -0.0030403137, -0.0053977966, -0.026672363, 0.005836487, 0.007751465, 0.047943115, 0.0025844574, 0.022628784, 0.018661499, -0.015548706, -0.015419006, 0.019165039, -0.026519775, -0.016921997, -0.02243042, -0.013114929, -0.040008545, 0.079711914, 0.022201538, 0.006706238, -0.0044784546, 0.0022354126, 0.03164673, -0.042541504, 0.022476196, -0.01209259, 0.021835327, -0.023773193, 0.0028533936, 0.003206253, 0.012001038, -0.0256958, 0.019866943, 0.03164673, 0.012962341, 0.039916992, 0.018600464, -0.0074005127, 0.056396484, 0.03881836, 0.0463562, -0.0018224716, 0.0072898865, 0.00869751, 0.008712769, 0.029281616, -0.03390503, -0.002910614, -0.0033836365, 0.007297516, 0.0062446594, -0.021270752, 0.0073127747, -0.005874634, 0.013458252, -0.02003479, -0.005596161, 0.015213013, 0.019317627, -0.0027427673, -0.031799316, 0.014839172, -0.05001831, -0.00970459, 0.0118637085, -0.038635254, -0.01158905, 0.00793457, 0.0070648193, -0.05090332, -0.017410278, 0.016830444, -0.039916992, 0.03579712, -0.022369385, 0.015365601, -0.022659302, -0.05407715, -0.03543091, -0.041381836, -0.088012695, -0.011260986, -0.057159424, -0.078063965, -0.04699707, 0.062164307, 0.02949524, -0.06512451, -0.0135269165, -0.023101807, 0.007537842, 0.022384644, 0.011993408, -0.047973633, -0.038604736, -0.047973633, -0.011314392, 0.011413574, -0.036499023, 0.015510559, 0.0049209595, 0.00233078, 0.04055786, -0.0051841736, 0.058502197, -0.0058059692, 0.04953003, 0.04800415, 0.014945984, 0.01890564, -0.040985107, 0.036499023, 0.0637207, -0.055480957, -0.005470276, 0.007545471, 0.0146484375, 0.03173828, -0.024414062, -0.005844116, -0.04425049, -0.0637207, 0.01914978, -0.019607544, -0.028289795, 0.0077819824, -0.10949707, -0.024963379, -0.07055664, 0.0131073, 0.0770874, -0.006198883, 0.008483887, -0.00856781, 0.024368286, -0.005809784, 0.014778137, 0.047454834, -0.00919342, 0.006916046, -0.022720337, 0.045837402, -0.074035645, 0.031677246, 0.02281189, -0.04067993, 0.020370483, -0.0146484375, 0.021591187, -0.06304932, 0.052764893, 0.0049095154, -0.00843811, -0.0075798035, 0.0046081543, -0.02432251, 0.017578125, -0.0055122375, -0.035217285, 0.011062622, -0.03564453, -0.0287323, -0.019378662, -0.004852295, 0.023422241, -0.014198303, -0.009140015, -0.034118652, -0.02407837, -0.005138397, -0.039123535, -0.013175964, 0.012687683, 0.04953003, 0.02468872, 0.004108429, 0.039916992, 0.014595032, 0.03515625, 0.042541504, -0.022109985, -0.039611816, -0.038330078, 0.05508423, 0.007156372, -0.0020942688, -0.058013916, 0.05545044, 0.024536133, 0.040618896, -0.02897644, 0.0075416565, 0.050476074, 0.027435303, -0.014389038, -0.0029850006, -0.0023498535, 0.038879395, -0.017120361, -0.022399902, -0.03515625, -0.06359863, 0.012039185, -0.14160156, 0.0758667, 0.027008057, -0.03616333, 0.08331299, 0.05319214, -0.00579834, 0.04901123, 0.03604126, -0.02420044, 0.011154175, 0.012397766, -0.042510986, 0.03540039, 0.012664795, -0.043914795, 0.019866943, 0.02293396, -0.036590576, 0.006385803, -0.0137786865, -0.028503418, -0.0112838745, 0.005771637, -0.004837036, -0.031433105, -0.002281189, -0.0068893433, -0.032287598, -0.045806885, 0.0519104, 0.013450623, -0.011054993, -0.02545166, 0.0063934326, -0.0041542053, -0.039916992, 0.002111435, -0.008087158, 0.022460938, 0.017349243, 0.029388428, 0.0005059242, -0.019180298, -0.013153076, 0.011131287, 0.0049972534, 0.014022827, 0.01146698, -0.0044059753, 0.06500244, 0.027191162, -0.025436401, -0.0022850037, -0.010238647, 0.029174805, 0.01586914, -0.05279541, 0.003194809, 0.020584106, -0.0059280396, -0.02909851, -0.002521515, -0.026977539, 0.0026721954, -0.0031223297, -0.044128418, -0.012619019, -0.00819397, 0.016021729, -0.0524292, -0.021942139, -0.012031555, 0.009902954, -0.03933716, 0.028030396, -0.00061893463, -0.017288208, -0.015670776, -0.016143799, -0.038482666, 0.03439331, -0.02772522, -0.003850937, 0.04586792, -0.0057754517, 0.015289307, -0.009613037, -0.044006348, -0.009819031, 0.016357422, -0.031707764, -0.00038218498, -0.032226562, -0.024276733, 0.0057411194, 0.02722168, 0.07342529, -0.03152466, 0.011238098, -0.028640747, -0.002450943, -0.03805542, -0.02331543, 0.054779053, -0.028244019, -0.016235352, -0.012008667, 0.05810547, -0.03366089, -0.015296936, -0.012283325, 0.040618896, 0.018692017, 0.028045654, -0.052642822, -0.014968872, 0.018615723, -0.01499176, 0.01638794, 0.0077400208, -0.030761719, 0.03277588, 0.043548584, 0.014907837, 0.00039720535, -0.0019378662, -0.006549835, -0.017990112, 0.020935059, -0.04473877, 0.009086609, -0.04421997, 0.011856079, -0.07574463, 0.09210205, 0.04550171, -0.0076141357, -8.755922e-05, -0.011245728, -0.019638062, -0.05593872, 0.026031494, -0.080444336, 0.022628784, 0.007980347, -0.016586304, -0.023147583, -0.032806396, -0.011260986, -0.0043029785, -0.015602112, -0.00630188, -0.0053100586, 2.026558e-06, -0.035125732, -0.017440796, 0.041931152, 0.014602661, -0.0015525818, -0.014892578, -0.03829956, 0.024002075, -0.035064697, -0.032318115, 0.019134521, -0.008010864, 0.017349243, -0.0025196075, 0.013191223, -0.071777344, 0.032958984, 0.05532837, 0.009521484, 0.014808655, 0.011428833, -0.01940918, 0.0013885498, 0.009315491, 0.027297974, -0.042755127, -0.010932922, -0.014045715, 0.00920105, -0.02583313, 0.018600464, -0.027145386, 0.0025253296, 0.008911133, -0.05505371, 0.026229858, 3.2305717e-05, -0.004512787, -0.056121826, 0.036346436, -0.00630188, -0.018920898, -0.03982544, 0.007507324, 0.0473938, 0.050567627, 0.0039711, -0.032348633, 0.046661377, -0.014671326, -0.02217102, 0.0118637085, 0.048828125, -0.05316162, -0.039489746, 0.026565552, -0.024353027, -0.052246094, 0.013198853, -0.01285553, -0.0053634644, -0.002620697, -0.029129028, 0.024246216, 0.009468079, -0.019515991, -0.017227173, -0.0028915405, 0.0146865845, -0.039642334, -0.020339966, -0.058624268, -0.015617371, -0.04812622, 0.04559326, 0.010223389, 0.022857666, -0.05697632, -0.05621338, -0.06555176, -0.008148193, -0.03414917, 0.06604004, -0.009529114, -0.004058838, 0.015449524, -0.005596161, 0.0137786865, 0.0011587143, -0.030761719, 0.0035095215, 0.02720642, 0.04727173, -0.010620117, -0.026748657, 0.07519531, -0.038360596, -0.039398193, -0.03527832, 0.046691895, -0.014831543, 0.0052604675, 0.06335449, 0.009727478, 0.011711121, 0.028900146, 0.00198555, -0.0657959, 0.0039043427, -0.0030937195, -0.09423828, -0.026306152, -0.043670654, -0.0028038025, 0.026824951, -0.0062446594, -0.032958984, 0.042419434, -0.021606445, -0.0061302185, -0.030197144, -0.022140503, -0.0061798096, -0.0026683807, -0.0041389465, -0.02998352, 0.012084961, -0.06506348, 0.017120361, -0.02015686, -0.049926758, 0.034240723, 0.012763977, 0.0038585663, -0.023269653, 0.018661499, 0.042755127, -0.0143585205, 0.050872803, -0.0042762756, -0.004585266, 0.020019531, 0.022369385, -0.009651184, 0.048553467, 0.011558533, 0.004825592, -0.029251099, 0.04626465, 0.014808655, 0.042114258, -0.07550049, -0.059265137, 0.03656006, 0.05319214, -0.0045166016, -0.020187378, 0.009315491, -0.010375977, -0.033172607, -0.009414673, 0.054351807, -0.02330017, -0.05267334, -0.020523071, -0.0051498413, 0.042785645, 0.009635925, 0.019592285, 0.018203735, 0.044281006, -0.026687622, -0.0071144104, 0.003156662, -0.012908936, 0.030029297, -0.03024292, -0.02671814, -0.034729004, -0.01335144, 0.018936157, -0.045715332, -0.03353882, 0.018753052, 0.0158844, -0.004714966, 0.023422241, -0.0073013306, 0.0033683777, 0.050842285, -0.04522705, -0.022842407, -0.013374329, 0.007041931, -0.03555298, -0.026901245, -0.019226074, 0.012924194, 0.023269653, -0.017974854, 0.072631836, -0.023452759, 0.0038986206, 0.02381897, -0.015220642, 0.024902344, 0.00046491623, 0.00365448, 0.007865906, -0.00068855286, -0.012519836, 0.004245758, -0.0073127747, 0.06695557, -0.031951904, -0.01134491, 0.0040512085, 0.020614624, -0.033966064, 0.01878357, -0.019180298, -0.040924072, 0.064086914, 0.061584473, -0.027389526, 0.021987915, -0.018173218, -0.010025024, 0.0053482056, -0.040985107, 0.029525757, -0.017578125, 0.053710938, 0.047058105, 0.007549286, -0.006362915, -0.017288208, -0.0209198, 0.010253906, -0.0017471313, 0.024505615, 0.0005993843, 0.050598145, 0.017166138, 0.03036499, 0.050964355, -0.030639648, 0.028121948, 0.011924744, 0.014831543, 0.019012451, 0.0069503784, -0.010894775, -0.036346436, -0.02394104, 0.0030384064, -0.03781128, -0.016113281, -0.051727295, 0.00044322014, 0.0010700226, -0.0109939575, 0.008132935, -0.0049476624, -0.013877869, 0.0061531067, -0.018676758, -0.02217102, -0.04107666, -0.07757568, -0.0073623657, -0.021652222, -0.06488037, 0.050628662, -0.014183044, -0.04156494, -0.00680542, 0.012313843, -0.010505676, -0.0569458, -0.0032081604, -0.025726318, 0.025222778, -0.010070801, 0.072387695, -0.029373169, -0.050964355, -0.046020508, 0.0004708767, -0.041625977, 0.0032634735, -0.04321289, 0.032470703, 0.007133484, -0.0054092407, 0.021072388, 0.051086426, 0.0015115738, 0.0072364807, -0.016693115, -0.04949951, -0.006134033, 0.030654907, -0.007369995, -0.026321411, -0.047943115, 0.029449463, -0.008605957, 0.03640747, -0.0032253265, -0.011360168, -0.064208984, -0.009117126, -0.03729248, -0.0022411346, 0.0058403015, -0.018325806, 0.039215088, -0.011421204, -0.040496826, 0.00283432, 0.006500244, -0.0128479, 0.029815674, -0.01008606, 0.03543091, 0.0079193115, -0.021728516, -0.05505371, -0.01499176, -0.014854431, -0.010681152, -0.03656006, 0.0064315796, 0.0055351257, -0.015060425, -0.01864624, 0.01739502, 0.013793945, 9.417534e-05, -0.013000488, -0.014923096, -0.020706177, -0.016464233, -0.037322998, -0.030593872, 0.023361206, 0.022506714, -0.0019512177, -0.010787964, 0.002281189, -0.035858154, 0.0050201416, -0.005405426, -0.022857666, 0.00028276443, -0.019851685, -0.008895874, 0.0022354126, 0.010978699, -0.012580872, 0.0034236908, -0.010398865, -0.048309326, -0.009674072, 0.018417358, -0.021499634, -0.022384644, 0.021133423, 0.025939941, 0.07324219, -0.031463623, -0.034820557, -0.041656494, 0.036376953, 0.008300781, -0.0053863525, 0.04159546, -0.013206482, 0.005004883, 0.056488037, 0.025131226, -0.024887085, 0.014022827, 0.01737976, 0.037597656, 0.011802673]}, "B01LPY9R8U": {"id": "B01LPY9R8U", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nProvides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.\n", "metadata": {"Name": "DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater", "Brand": "DOZYANT", "Description": "", "Features": "This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nProvides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0019416809, -0.0021343231, -0.014823914, -0.05014038, 0.0002872944, 0.010475159, -0.02909851, 0.005836487, 0.0029563904, 0.012557983, 0.014732361, 0.03488159, 0.0074043274, -0.04244995, 0.013626099, -0.00038313866, -0.008712769, -0.029190063, -0.059051514, -0.04928589, 0.0034427643, -0.04647827, -0.051116943, 0.07824707, 0.024047852, 0.010261536, 0.00258255, 0.03189087, 0.018447876, 0.0064468384, 0.017440796, -0.028274536, 0.021560669, 0.005065918, -0.036712646, -0.064453125, -0.03564453, 0.0011043549, -0.04425049, 0.008659363, -0.006515503, 0.01348114, -0.013061523, -0.020736694, -0.030456543, -0.039245605, -0.004627228, -0.022750854, 0.0025787354, 0.014701843, 0.0054397583, 0.0034294128, 0.019195557, 0.021636963, -0.0058937073, 0.0017032623, -0.0026779175, -0.058532715, 0.008987427, 0.025222778, 0.017044067, 0.00093889236, 0.007511139, -0.01966858, 0.0056648254, 0.020553589, 0.04623413, 0.012077332, 0.037261963, -0.016738892, -0.04547119, 0.027252197, 0.020614624, -0.009231567, -0.047821045, -0.034576416, 0.039733887, -0.03857422, 0.0124053955, -0.009979248, 0.012901306, -0.018692017, 0.010368347, 0.006755829, -0.0017204285, 0.004085541, -0.004863739, -0.016525269, -0.030517578, -0.033050537, -0.023880005, -0.00039577484, -0.059783936, -0.0018796921, -0.01473999, -0.0146865845, -0.046142578, -0.05456543, 0.008369446, 0.030639648, 0.00374794, -0.033813477, 0.028167725, -0.013404846, 0.024963379, 0.029434204, -0.015457153, -0.01676941, 0.04095459, -0.0029315948, -0.0062294006, 0.05480957, 0.0043296814, -0.052734375, 0.0067863464, 0.027389526, 0.015083313, 0.02708435, 0.048553467, -0.005970001, -0.0256958, -0.01448822, 0.009819031, -0.006778717, -0.00033712387, -0.008277893, -0.013717651, 0.0119018555, -0.045196533, 0.015060425, -0.01108551, 0.013298035, 0.04736328, 0.072021484, 0.0072364807, -0.007423401, 0.033111572, 0.022399902, 0.0047340393, -0.007587433, 0.04711914, -0.031799316, -0.04611206, 0.032958984, -0.027175903, 0.02468872, 0.0041923523, 0.006401062, 0.003019333, -0.042266846, -0.020950317, -0.044036865, 0.03527832, 0.0057678223, -0.027572632, -0.0011854172, -0.01776123, -0.013175964, 0.0025672913, -0.024871826, -0.03074646, -0.0050315857, 0.015960693, -0.011817932, -0.00083971024, 0.014701843, 0.00920105, -0.008033752, 0.025436401, 0.031555176, 0.0058250427, 0.023361206, 0.078125, 0.023010254, -0.013702393, -0.009689331, -0.023223877, 0.05053711, 0.05419922, -0.1217041, -0.07635498, -0.056396484, 0.07775879, -0.022857666, 0.0037994385, 0.009361267, 0.026855469, -0.00712204, -0.033447266, 0.008720398, 0.039794922, 0.064819336, 0.035827637, -0.05709839, 0.009857178, 0.004295349, 0.019302368, 0.024429321, -0.0001039505, -0.015586853, -0.062164307, 0.01309967, -0.013809204, 0.053222656, 0.018997192, -0.015174866, -0.007850647, 0.006198883, -0.01776123, 0.040924072, 0.010772705, -0.010246277, 0.011161804, -0.040527344, 0.006374359, 0.0063095093, -0.014701843, -0.029785156, 0.00617218, -0.008049011, 0.0473938, -0.00932312, 0.014137268, 0.03503418, 0.02482605, -0.008735657, -0.017578125, -0.011878967, 0.010047913, -0.008422852, 0.017028809, 0.055145264, 0.094177246, 0.06274414, -0.018005371, 0.032806396, 0.07611084, 0.048858643, -0.046051025, -0.015808105, 0.023391724, -0.05291748, -0.031829834, 0.0063705444, -0.0231781, -0.07513428, -0.017700195, 0.029937744, -0.02609253, 0.035888672, 0.020889282, 0.016204834, 0.013687134, 0.014556885, -0.08123779, 0.048217773, 0.0006670952, 0.044158936, -0.05758667, 0.0077781677, -0.0090408325, 0.0077323914, 0.004989624, -0.006752014, 0.057495117, 0.024673462, 0.062438965, 0.037963867, -0.006126404, 0.0127334595, -0.0063667297, -0.038085938, -0.007686615, -0.010032654, -0.011734009, 0.032348633, -0.041992188, 0.018173218, 0.020599365, 0.001326561, 0.030014038, 0.015205383, 0.029022217, -0.007610321, 0.05050659, 0.04827881, -0.00046300888, -0.0023059845, 0.016052246, 0.0043525696, 0.017166138, 0.039855957, 0.010925293, 0.04046631, -0.03262329, -0.00091934204, 0.08911133, 0.0009074211, 0.009597778, 0.016601562, 0.03125, 0.05331421, -0.022445679, 0.019378662, 6.663799e-05, -0.026504517, -0.02456665, 0.021209717, 0.0077323914, -0.003829956, -0.058288574, 0.028839111, 0.019088745, 0.032836914, 0.014518738, 0.0007214546, 0.0059318542, 0.039093018, 0.050567627, 0.060058594, -0.013496399, -0.012748718, -0.010047913, -0.022949219, 0.0084991455, 0.005748749, -0.03164673, 0.02331543, -0.016189575, -0.003932953, -0.0060806274, -0.024459839, -0.008224487, -0.0016727448, -0.0033092499, 9.161234e-05, 0.012237549, -0.017227173, -0.013763428, -0.05734253, 0.019546509, -0.09259033, 0.003414154, 0.039916992, -0.047912598, 0.0056114197, 0.037231445, 0.008338928, 0.01890564, 0.021972656, -0.018630981, 0.006778717, 0.018203735, 0.03677368, 0.043884277, -0.017913818, -0.039886475, 0.01914978, 0.010627747, -0.047729492, 0.03475952, -0.026168823, -0.039855957, -0.02809143, 0.051361084, -0.011878967, -0.038360596, -0.045440674, 0.00970459, 0.016647339, 0.02583313, -0.012214661, -0.03326416, -0.004398346, 0.008216858, -0.025741577, 0.03591919, -0.02507019, 0.023757935, 0.020965576, 0.010124207, 0.009033203, -0.006549835, -0.014480591, -0.027359009, 0.041168213, 0.05230713, 0.018600464, 0.023330688, -0.051452637, 0.047088623, 0.08721924, -0.0055160522, -0.0029563904, -0.0035686493, 0.005065918, 0.010848999, -0.05203247, -0.014816284, -0.029937744, -0.026504517, -0.020507812, -0.02861023, -0.009529114, 0.010391235, -0.06518555, 0.0022640228, -0.039245605, 0.022201538, 0.035888672, -0.018371582, 0.039276123, -0.027297974, 0.027511597, -0.030181885, 0.013412476, 0.00083351135, -0.003648758, -0.001791954, 0.015289307, 0.044677734, -0.08703613, 0.03717041, 0.046142578, -0.019760132, -0.029312134, 0.009239197, 0.025985718, -0.011802673, 0.021072388, 0.0024795532, -0.016036987, -0.044525146, -0.027526855, -0.00440979, -0.023590088, 0.019302368, -0.051086426, 0.037017822, -0.010765076, -0.066589355, -0.021652222, -0.017501831, 0.044708252, -0.023376465, 0.016296387, -0.05883789, -0.07867432, -0.025741577, -0.05319214, 0.0038089752, 0.013290405, 0.039886475, 0.022018433, 0.016952515, 0.039398193, 0.01776123, 0.04220581, -0.012428284, 0.038513184, 0.034240723, -0.016952515, 0.00034976006, 0.022338867, -0.01612854, -0.041534424, 0.002670288, 0.01727295, -0.001452446, -0.0236969, -0.008323669, 0.076049805, -0.0014514923, -0.01361084, 0.011077881, 0.0028572083, 0.021942139, -0.011558533, 0.016174316, -0.022064209, -0.026626587, 0.009757996, -0.105163574, 0.10412598, 0.03265381, -0.029312134, 0.05493164, 0.050476074, -0.018753052, 0.032714844, 0.028198242, -0.0010261536, 0.011688232, 0.038360596, -0.026168823, 0.0007367134, 0.014274597, -0.0126953125, 0.022079468, 0.021408081, -0.07366943, 0.04220581, 0.0256958, -0.037109375, 0.02168274, 0.011962891, 0.0068893433, -0.01096344, -0.014335632, 0.021438599, -0.002822876, -0.034240723, 0.04156494, -0.018569946, 0.013801575, 0.03656006, -0.0056610107, -0.05895996, 0.025436401, 0.00573349, -0.0017127991, -0.020233154, 0.027832031, 0.03756714, -0.019729614, -0.015403748, -0.001080513, -0.018615723, -0.055114746, 0.015930176, 0.04031372, 0.033447266, 0.029586792, -0.03543091, 0.0055732727, 0.004459381, -0.041168213, 0.036102295, 0.011192322, -0.055145264, -0.008850098, 0.013381958, 0.004951477, -0.00623703, -0.010765076, -0.059417725, -0.050628662, -0.032684326, -0.043762207, -0.027938843, 0.01285553, 0.017456055, 0.005695343, -0.013267517, -0.05923462, -0.009284973, -0.03074646, -0.00010150671, 0.021484375, 0.029769897, 0.018875122, -0.0023326874, -0.04901123, 0.0008120537, -0.016143799, -0.027404785, 0.0814209, 0.015312195, -0.021575928, -0.00868988, 0.00035238266, 0.017059326, 0.03579712, -0.026779175, -0.0039405823, -0.0368042, -0.010353088, 0.0095825195, 0.030166626, 0.06652832, 0.012313843, 0.020507812, -0.050964355, 0.011047363, -0.055267334, 0.020599365, 0.011802673, -0.0051956177, -0.06628418, -0.02027893, 0.047729492, 0.014312744, 0.008720398, -0.043640137, 0.005970001, 0.023498535, -0.03994751, -0.05718994, -0.029891968, -0.0059776306, 0.0059318542, -0.019622803, 0.0063972473, -0.022323608, 0.01210022, -0.019592285, -0.03390503, 0.010955811, 0.0036640167, -0.017303467, -0.022705078, 0.027236938, -0.028579712, 0.021560669, -0.023376465, -0.042144775, -0.061798096, 0.05355835, 0.062316895, -0.021972656, -0.0017061234, -0.017501831, -0.041137695, -0.03829956, 0.0011825562, 0.017074585, -0.011100769, -0.03149414, -0.03643799, 0.0138549805, -0.037963867, -0.002817154, 0.0077400208, -0.00116539, 0.012145996, -0.014907837, 0.0057296753, -0.013214111, -0.023727417, 0.0057029724, -0.009628296, 0.009666443, -0.058441162, 0.006629944, 0.021652222, -0.024261475, -0.015151978, -0.02229309, -0.021759033, 0.0057373047, -0.051971436, 0.011260986, -0.017105103, 0.020309448, 0.032714844, 0.015945435, 0.0056495667, 0.034301758, -0.021652222, -0.0070610046, -0.012176514, 0.0046463013, 0.012107849, -0.018936157, -0.01109314, 0.0046539307, 0.0016956329, 0.06976318, -0.050628662, 0.047729492, 0.056549072, -0.03665161, 0.029342651, 0.01600647, -0.005382538, -0.05999756, 0.1060791, -0.01966858, 0.0071907043, -0.053863525, 0.00017988682, -0.007408142, 0.030700684, 0.00029230118, -0.027175903, 0.013931274, -0.024307251, -0.002735138, 0.02822876, -0.01802063, -0.042236328, -0.0435791, 0.0146865845, -0.061706543, -0.009750366, 0.03970337, -0.039154053, 0.010604858, 0.013931274, -0.014175415, 0.009674072, -0.0012769699, -0.05114746, -0.04458618, -0.008178711, -0.00856781, 0.013214111, -0.036132812, -0.019256592, -0.004119873, -0.043426514, 0.0038394928, 0.028366089, 0.0051994324, -0.04522705, -0.029922485, -0.011024475, 0.024093628, 0.0033817291, 0.025634766, -0.0050086975, 0.0029258728, 0.00079870224, -0.024169922, 0.007965088, -0.042297363, -0.03286743, -0.0068206787, -0.007385254, -0.013381958, -0.0028209686, 0.026367188, 0.007091522, -0.031066895, -0.006374359, -0.029754639, 0.051971436, -0.021621704, -0.06427002, 0.09649658, 0.05557251, 0.015792847, 0.0022525787, -0.0390625, -0.06085205, 0.018554688, -0.00020766258, -0.06555176, -0.03491211, -0.031021118, -0.0026474, 0.014060974, 0.0059280396, -0.015327454, 0.038513184, -0.0048675537, -0.019454956, -0.024719238, 0.007423401, 0.0067977905, -0.025802612, 0.0073432922, 0.0067329407, 0.03164673, -0.0054740906, 0.0284729, -0.07104492, -0.028152466, 0.0015878677, 0.03050232, 0.003124237, -0.00920105, 0.00046634674, 0.038513184, -0.025985718, 0.039001465, -0.019500732, 0.03994751, 0.0052604675, 0.029281616, -0.02607727, 0.08532715, -0.029693604, -0.0116119385, -0.026687622, -0.030151367, -0.013206482, 0.043304443, -0.042785645, 0.005832672, 0.010810852, 0.05810547, -0.03024292, 0.0022239685, 0.01991272, -0.01386261, -0.047851562, -0.028701782, 0.00067424774, -0.038360596, 0.0056152344, -0.03970337, -0.013427734, -0.010192871, -0.025817871, 0.03164673, -0.04019165, 0.032470703, -0.043518066, 0.011161804, -0.011734009, -0.019256592, 0.04663086, -0.04336548, 0.03466797, -0.05645752, 0.00042319298, -0.013092041, 0.033233643, -0.002418518, 0.0026302338, 0.019302368, -0.0015268326, 0.024002075, 0.010475159, -0.00019037724, 0.042297363, -0.048431396, 0.005279541, 0.03277588, 0.0068740845, 0.007320404, -0.01838684, -0.009757996, -0.011375427, 0.042663574, 0.022567749, 0.019332886, -8.523464e-05, 0.046539307, -0.032928467, -0.005466461, -0.019836426, -0.044158936, 0.039855957, 0.009475708, -0.0050697327, -0.006122589, -0.045196533, -0.0057029724, 0.04333496, -0.0020389557, -0.035888672, 0.0090789795, 0.034088135, 0.017288208, 0.013038635, -0.029373169, -0.083740234, -0.056610107, 0.0038471222, -0.0015525818, 0.055908203, 0.002588272, 0.032073975, 0.038238525, 0.018051147, 0.011390686, -0.016082764, 0.012359619, 0.039794922, -0.016830444, -0.0725708, -0.06604004, -0.027648926, -0.033081055, -0.022323608, 0.050445557, -0.052886963, 0.0715332, 0.02835083, 0.06390381, 0.07623291, 0.0028457642, 0.042877197, -0.002216339, 0.0017824173, 0.054016113, 0.007419586, -0.029663086, -0.036621094, 0.019683838, 0.023117065, 0.0035762787, -0.0031604767, -0.031402588, -0.0090789795, 0.0012845993, -0.011047363, 0.020248413, 0.0016374588, -0.022140503, -0.032562256, -0.004184723, -0.003025055, -0.014083862, -0.036315918, -0.060180664, -0.060943604, -0.0423584, 0.064086914, -0.024734497, -0.0008664131, 0.022216797, -0.013076782, -0.034851074, -0.019897461, 0.023910522, 0.013206482, 0.037261963, -0.017227173, -0.011894226, -0.0011930466, -0.022155762, -0.010520935, 0.032562256, -0.0107421875, -0.039031982, 0.011734009, 0.012954712, 0.026229858, 0.023269653, 0.066467285, 0.039764404, 0.02281189, 0.00484848, -0.0047569275, -0.00042963028, -0.004299164, 0.009757996, 0.002702713, -0.013801575, -0.017669678, 0.008659363, 0.008094788, 0.019866943, 0.019180298, 0.0037631989, -0.0053367615, 0.016433716, -0.000259161, -0.036865234, 0.00011712313, 0.00730896, 0.017059326, 0.0021858215, -0.011062622, 0.019470215, 0.0025691986, -0.030227661, 0.06750488, 0.037994385, -0.009552002, -0.040283203, -0.06756592, -0.055236816, -0.009307861, 0.045318604, -0.013130188, -0.064697266, 0.010559082, -0.013320923, -0.025161743, -0.0132751465, 0.03781128, -0.008979797, 0.015281677, 0.054748535, -0.0053863525, 0.016296387, -0.0034122467, 0.005470276, -0.025634766, -0.059661865, 0.07489014, 0.010871887, -0.02508545, -0.008277893, -0.061950684, -0.008605957, -0.007572174, -0.08538818, -0.021697998, -0.05960083, 0.05758667, 0.027496338, 0.008132935, -0.017120361, 0.033477783, -0.022888184, -0.025726318, 0.013038635, 0.012496948, 0.02218628, -0.0036392212, -0.010314941, 0.001449585, 0.030761719, -0.002708435, -0.08074951, -0.020721436, 0.010047913, -2.9802322e-06, -0.0048294067, 0.0059394836, -0.026443481, -0.0063972473, 0.01675415, 0.0014247894, -0.042877197, 0.028427124, 0.047821045, 0.02407837, 0.02558899]}, "B00FDOONEC": {"id": "B00FDOONEC", "original": "Brand: Weber\nName: Weber 50060001 Q1000 Liquid Propane Grill,Chrome\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches\nPush-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately)\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes\n", "metadata": {"Name": "Weber 50060001 Q1000 Liquid Propane Grill,Chrome", "Brand": "Weber", "Description": "", "Features": "One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches\nPush-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately)\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013656616, 0.014030457, -0.04714966, -0.026504517, -0.0037212372, -0.032287598, -0.010177612, 0.011329651, -0.016830444, 0.0031261444, -0.00057697296, 0.0059051514, 0.0033626556, -0.05239868, 0.032684326, -0.011314392, 0.017105103, 0.017791748, 0.026000977, -0.020355225, 0.008918762, 0.0046539307, -0.0065574646, 0.0715332, 0.054595947, -0.050872803, -0.019821167, 0.025482178, 0.024536133, 0.01586914, 0.038513184, -0.008018494, 0.030059814, 0.008338928, -0.027770996, -0.052490234, -0.0031909943, -0.008682251, -0.021270752, 0.008895874, 0.031143188, -0.012504578, 0.0141067505, 0.015434265, -0.01525116, -0.026153564, 0.048675537, -0.0131073, 0.035125732, 0.023910522, 0.004322052, 0.007457733, 0.012229919, -0.022109985, -0.019119263, -0.008338928, 0.046936035, -0.041809082, 0.015052795, -0.049072266, -0.034576416, -0.0056495667, 0.047088623, -0.0017547607, -0.014961243, 0.033233643, 0.08496094, -0.023834229, 0.0037708282, -0.03326416, -0.0017566681, 0.0059318542, 0.034210205, 0.0440979, -0.013648987, -0.05657959, 0.032928467, 0.0008664131, 0.039123535, 0.020431519, -0.0031604767, -0.033721924, 0.027572632, 0.024673462, -0.008178711, 0.023162842, -0.020874023, -0.0044937134, -0.009689331, -0.03353882, -3.1471252e-05, -0.05014038, -0.048828125, 0.05996704, 0.022781372, -0.0418396, -0.054382324, -0.09265137, 0.02381897, -0.002746582, 0.04208374, -0.02420044, 0.011253357, 0.029312134, 0.0027103424, 0.064208984, 0.0034160614, 0.03768921, 0.022476196, -0.0211792, -0.0019025803, -0.008483887, -0.0016622543, 0.011528015, -0.038879395, -0.021591187, -0.044677734, 0.0061569214, -0.0010890961, -0.0011043549, -0.025970459, -0.00919342, -0.0042266846, -0.0062561035, 0.00818634, 0.0069007874, -0.007843018, 0.0051879883, -0.0119018555, 0.010971069, -0.02947998, -0.005012512, 0.047027588, 0.07318115, 0.028518677, -0.0009937286, 0.013015747, 0.0046958923, 0.010925293, -0.0075263977, 0.010826111, -0.037597656, -0.0028381348, 0.026382446, -0.012939453, 0.035705566, 0.036743164, 0.003534317, -0.03479004, -0.06689453, 0.0158844, 0.0062675476, 0.044799805, 0.0071144104, -0.057373047, 0.008399963, -0.011741638, -0.009384155, -0.05606079, -0.052001953, 0.0015335083, -0.015617371, -0.0046424866, -0.0076560974, -0.04321289, 0.037109375, -0.0040016174, -0.0009899139, 0.023834229, 0.06384277, 0.020935059, -0.047454834, 0.007144928, 0.014549255, -0.014823914, 0.0015268326, 0.003129959, 0.00096702576, 0.043029785, -0.04095459, -0.05960083, -0.040008545, 0.066833496, -0.028182983, 0.013671875, -0.02368164, 0.017074585, -0.025009155, -0.009414673, 0.013145447, 0.026794434, 0.02458191, 0.014266968, -0.057769775, 0.0413208, 0.010627747, -0.06896973, -0.011795044, 0.006713867, -0.008743286, 0.028778076, 0.014579773, -0.017349243, -0.0062065125, -0.04159546, -0.0050468445, -0.0027866364, 0.011276245, 0.029663086, 0.023223877, -0.025817871, -0.021148682, 0.034301758, -0.07147217, -0.019577026, 0.025543213, -0.021102905, 0.008621216, 0.022476196, -0.0135650635, 0.06341553, -0.0052452087, 0.04385376, 0.029922485, 0.0112838745, 0.018051147, -0.0340271, 0.012519836, 0.018310547, -0.00605011, 0.016921997, 0.019805908, 0.11401367, 0.10845947, 0.020355225, 0.03466797, 0.07354736, -0.010871887, -0.029647827, -0.015930176, -0.0068855286, -0.015380859, -0.032592773, 0.024414062, 0.008102417, 0.041290283, 0.025558472, -0.0030231476, -0.0028209686, 0.0209198, 0.038391113, 0.0048828125, 0.027648926, 0.0033111572, -0.01474762, 0.027679443, 0.007835388, 0.021865845, -0.045013428, 0.043060303, -0.01966858, 0.02607727, 0.015411377, 0.00015068054, 0.008659363, -0.021499634, 0.02670288, 0.0049972534, -0.013214111, -0.026687622, 0.029388428, 0.036865234, -0.013259888, -0.051849365, -0.023330688, -0.0035114288, -0.0074272156, 0.053619385, -0.016082764, -0.052764893, 0.029800415, 0.035308838, 0.011711121, -0.00018644333, 0.02468872, 0.0051193237, -0.0018558502, 0.014785767, 0.020141602, 0.01927185, 0.049743652, -0.03010559, -0.025253296, 0.015136719, -0.012191772, -0.04321289, 0.12768555, -0.0038433075, 0.006008148, -0.013206482, 0.078063965, 0.023208618, -0.064697266, 0.029205322, 0.0021648407, -0.022720337, 0.016281128, 0.023101807, 0.011924744, -0.026870728, 0.010101318, 0.029754639, 0.04284668, -0.010688782, 0.06112671, 0.007209778, 0.023986816, 0.064819336, 0.01914978, 0.0016460419, -0.0024681091, -0.01751709, -0.03189087, -0.036743164, -0.016571045, 0.019973755, -0.042419434, -0.0028572083, -0.0076904297, 0.004962921, -0.03262329, -0.033172607, -0.02709961, -0.01448822, -0.010673523, -0.001909256, 0.0093688965, 0.009559631, -0.009986877, -0.01701355, 0.0058021545, -0.009048462, -0.017669678, -0.016479492, -0.022705078, -0.03353882, 0.033691406, 0.01953125, -0.012496948, 0.00081443787, 0.0021324158, -0.03652954, -0.010787964, -0.037231445, -0.002412796, -0.009056091, -0.007358551, -0.06173706, -0.036315918, -0.09350586, 0.014228821, -0.01109314, -0.032592773, 0.00033140182, 0.03237915, -0.022857666, -0.045532227, -0.0026512146, -0.031585693, 0.021484375, 0.013168335, 0.02053833, -0.04034424, -0.030838013, -0.06640625, 0.0038661957, 0.06402588, -0.021728516, -0.04046631, 0.015174866, -0.009918213, 0.03060913, -0.06555176, 0.018112183, -0.0006160736, 0.028366089, 0.029525757, 0.030029297, -0.0011730194, -0.03540039, -0.003686905, 0.047424316, -0.011039734, -0.02645874, -0.005947113, -0.008735657, -0.013465881, 0.03253174, -0.013206482, 0.00030994415, -0.09552002, 0.03463745, 0.019012451, -0.026824951, -0.021530151, -0.045654297, -0.08465576, -0.049835205, 0.0074691772, 0.07318115, 0.0032672882, -0.017333984, -0.017227173, 0.008232117, 0.004611969, 0.008773804, 0.011299133, -0.0069389343, -0.008811951, -0.009666443, 0.03967285, -0.039215088, 0.02154541, 0.025680542, -0.042816162, 0.026306152, -0.030776978, 0.023040771, -0.021057129, 0.04522705, -0.0009531975, 0.012428284, -0.034576416, -0.021514893, 0.014442444, 0.057891846, 0.014350891, 0.009628296, 0.010009766, -0.007820129, -0.02368164, -0.020706177, 0.0042762756, 0.07159424, -0.015312195, 0.022888184, -0.045684814, -0.04736328, -0.005584717, -0.046142578, 0.022384644, 0.0035152435, 0.07165527, 0.03012085, 0.01096344, 0.114868164, 0.023452759, 0.03918457, -0.007106781, -0.010627747, -0.024658203, -0.042266846, 0.036834717, -0.0074691772, -0.014968872, -0.010108948, 0.021759033, 0.03894043, 0.006198883, -0.024215698, 0.031173706, 0.009811401, -0.0006661415, -0.014205933, -0.0035037994, -0.013000488, 0.029556274, -0.0043525696, 0.009155273, -0.029464722, -0.02571106, -0.0064430237, -0.0826416, 0.087890625, 0.07574463, -0.035858154, 0.07897949, 0.06689453, -0.013092041, 0.01689148, 0.03579712, -0.036468506, -0.002960205, 0.02418518, -0.050964355, 0.014556885, 0.013458252, -0.07086182, 0.010101318, 0.0028457642, -0.021377563, 0.018722534, -0.009719849, -0.024780273, -0.009895325, 0.0037384033, -0.0025539398, -0.017486572, 0.017333984, 0.00040864944, -0.017837524, -0.032409668, -0.021957397, 0.0040397644, -0.030273438, -0.04626465, 0.016860962, -0.025314331, -0.03225708, 0.01637268, 0.0110321045, -0.012413025, 0.0048561096, 0.053894043, -0.010223389, 0.011634827, -0.04458618, -0.016464233, -0.012901306, 0.046722412, 0.037384033, -0.0019721985, 0.0552063, -0.004611969, -0.018539429, 0.008880615, 0.019165039, 0.0014886856, -0.05117798, -0.04699707, 0.0060272217, 0.02418518, 0.0016021729, -0.055877686, 0.008880615, -0.017471313, 0.0052108765, 0.012260437, -0.03652954, -0.0014953613, 0.00491333, 0.02619934, -0.030136108, -0.008476257, -0.02168274, -0.020996094, -0.028686523, 0.0038909912, -0.02331543, 0.022705078, -0.0003607273, 0.036865234, -0.035003662, -0.012245178, -0.01890564, 0.0047950745, 0.0362854, 0.0074882507, 0.059265137, -0.029769897, 0.00056266785, -0.014961243, 0.09069824, -0.0066070557, 0.026260376, -0.056884766, -0.016647339, -0.008621216, 0.035827637, 0.02671814, -0.027862549, 0.027755737, -0.0066375732, -0.024414062, -0.056610107, 0.0044136047, 0.052215576, -0.056549072, -0.04147339, -0.014602661, 0.051849365, -0.0033435822, 0.017990112, -0.010009766, -0.005680084, -0.0015363693, 9.596348e-05, -0.063964844, -0.035095215, -0.0064811707, -0.014045715, -0.0049972534, -0.008255005, -0.008972168, 0.013244629, 0.029312134, 0.01373291, -0.017700195, -0.0063591003, 0.0053863525, 0.009559631, -0.0025043488, -0.025756836, 0.011550903, -0.017532349, 0.0110321045, -0.07702637, 0.08465576, 0.06378174, 0.020904541, 0.02079773, 0.028518677, -0.003534317, -0.045959473, 0.014022827, -0.037963867, -0.042541504, -0.029251099, -0.009498596, 0.0284729, -0.004650116, 0.004852295, -0.004283905, 0.012451172, 0.034179688, -0.037994385, 0.006904602, 0.012573242, 0.03817749, 0.007881165, -0.017959595, 0.016159058, -0.030273438, 0.010116577, 0.04949951, -0.017364502, -0.011802673, -0.0033168793, -0.004547119, -0.0073509216, 0.001739502, 0.010665894, -0.036499023, 0.018341064, 0.029785156, 0.010948181, -0.0069351196, 0.02406311, -0.023330688, 0.0071640015, 0.018218994, 0.045074463, -0.009223938, 0.020889282, 0.03414917, -0.033294678, -0.028427124, 0.028427124, -0.044952393, 0.041900635, 0.024398804, -0.079833984, 0.023773193, -0.00089883804, 0.0011177063, -0.030380249, 0.05581665, -0.01727295, -0.010574341, -0.038513184, 0.015266418, 0.035888672, 0.04724121, -0.025283813, -0.027526855, 0.024734497, -0.02758789, -0.005458832, 0.00034093857, 0.028396606, -0.0064697266, 0.01838684, -0.014076233, -0.010017395, -0.030395508, -0.021530151, -0.039398193, 0.017684937, 0.025054932, -0.008964539, 0.012191772, -0.0042686462, -0.033691406, -0.051635742, -0.012672424, 0.0110321045, 0.0098724365, -0.005584717, -0.0042686462, -0.020843506, 0.0181427, 0.033843994, 0.009483337, 0.014953613, -0.029037476, -0.023513794, -0.05404663, 0.0022945404, -0.022827148, 0.0317688, -0.05328369, 0.032684326, 0.017807007, -0.0423584, 0.00881958, 0.027633667, -0.07672119, -0.03161621, -0.007987976, -0.007320404, -0.023544312, -0.029190063, 0.064697266, -0.04458618, -0.05355835, -0.029785156, 0.05731201, -0.028961182, -0.020828247, 0.042236328, 0.054626465, -0.011054993, 0.050750732, -0.014923096, -0.045288086, -0.00050115585, 0.01727295, -0.07598877, -0.056121826, -0.03213501, -0.009994507, -0.02017212, -0.03479004, -0.019439697, 0.04067993, 0.0090408325, -0.0070228577, -0.034179688, -0.040161133, 0.0007300377, -0.0418396, 0.006008148, 0.009796143, 0.005130768, -0.0016460419, 0.0011997223, -0.048919678, 0.018478394, 0.045959473, 0.02909851, 0.0034713745, -0.017623901, 0.012077332, 0.06774902, -0.019424438, 0.06323242, -0.020385742, -0.0048713684, -0.0010652542, 0.07446289, 0.014923096, 0.047027588, -0.076416016, -0.03756714, -0.024276733, 0.022262573, 0.014724731, 0.045654297, -0.026153564, -0.004749298, 0.022216797, 0.021652222, 0.040283203, 0.02218628, 0.046661377, -0.020050049, -0.048431396, 0.013168335, -0.0037059784, -0.041381836, -0.033447266, -0.033843994, -0.034332275, 0.01637268, -0.00756073, 0.018707275, -0.034484863, 0.046051025, 0.005821228, -0.0112838745, 0.015914917, -0.008926392, 0.022857666, -0.008079529, -0.016403198, 0.014091492, 0.05609131, 0.043029785, -0.008987427, -0.028137207, -0.03213501, 0.023330688, -0.004180908, 0.044403076, -0.048950195, 0.047912598, -0.010192871, -0.07232666, 0.011222839, 0.0039520264, -0.00032019615, 0.009506226, -0.07739258, -0.02798462, -0.022125244, 0.010093689, 0.012321472, 0.015357971, 0.029037476, 0.023452759, 0.020004272, -0.009849548, 0.005607605, -0.021759033, 0.08203125, 0.009246826, -0.010215759, -0.024520874, -0.03579712, 0.04559326, 0.019134521, 0.010673523, 0.03213501, -0.019439697, 0.01902771, 0.018066406, 0.0067749023, -0.03970337, -0.039978027, 0.017120361, 0.018157959, -0.028533936, 0.012969971, 0.04940796, 0.05886841, 0.025222778, -0.041046143, 0.027313232, -0.09197998, 0.025863647, 0.023956299, 0.07635498, -0.017471313, -0.020645142, -0.01158905, 0.008956909, 0.005432129, 0.030380249, 0.0025424957, 0.015525818, 0.042388916, 0.05279541, 0.07507324, -0.0045433044, 0.017684937, 0.022766113, 0.0036411285, 0.021453857, 0.026626587, -0.0060539246, 0.00018084049, -0.00491333, -0.0064964294, 0.033233643, -0.004058838, 0.016357422, 0.0030460358, 0.0031375885, -0.038879395, 0.034606934, -0.02998352, -0.029525757, 0.05142212, -0.042816162, -0.021728516, -0.009712219, -0.009376526, -0.02178955, -0.00021636486, -0.06304932, -0.00039458275, -0.025863647, -0.031158447, -0.0047950745, 0.012145996, 0.023330688, -0.06323242, -0.0063438416, -0.01687622, 0.007335663, 0.0013694763, 0.053619385, -0.02973938, -0.05319214, -0.02583313, 0.025360107, -0.047424316, -0.020553589, -0.0013122559, -0.001373291, 0.014015198, 0.0007929802, 0.062683105, 0.021728516, 0.047454834, -0.0050201416, -0.004398346, -0.01966858, -0.032409668, 0.026550293, 0.00065279007, -0.00013053417, 0.01146698, 0.05065918, -0.012130737, 0.012016296, 0.039520264, -0.019805908, -0.047180176, -0.025390625, -0.02468872, -0.032440186, -0.023666382, -0.00065231323, 0.010772705, 0.009864807, -0.041229248, 0.022003174, 0.010681152, 0.02319336, 0.031829834, 0.010749817, 0.004146576, -0.04147339, -0.034362793, -0.04434204, -0.00894165, 0.049102783, 0.06903076, -0.0030517578, 0.012176514, 0.0065727234, -0.027404785, 0.006122589, -0.011680603, 0.014411926, 0.02859497, 0.014968872, -0.015281677, 0.014328003, -0.022720337, 0.021011353, 0.0010385513, -0.01625061, 0.026275635, 0.034240723, -0.04147339, -0.035125732, -0.016220093, -0.004962921, -0.020111084, -0.032104492, -0.012916565, -0.015419006, -0.026306152, 0.017166138, -0.014808655, 0.028289795, -0.01525116, -0.009063721, -0.02406311, 0.0022220612, 0.016921997, 0.0043258667, -0.027679443, 0.016540527, 0.0069007874, 0.02911377, -0.018508911, -0.11340332, -0.048706055, 0.030258179, 0.00023674965, -0.005718231, 0.038116455, -0.037261963, 0.012237549, 0.030044556, 0.005466461, -0.018295288, 0.020263672, 0.012176514, 0.010421753, 0.021377563]}, "B07L93KFNN": {"id": "B07L93KFNN", "original": "Brand: Fuego\nName: Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray\nDescription: \nFeatures: New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling\nNew easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray\nUpgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall\n346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit\nCompact 21\" X 21\" (Lid closed) footprint perfect for the Small patio/balcony\n", "metadata": {"Name": "Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray", "Brand": "Fuego", "Description": "", "Features": "New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling\nNew easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray\nUpgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall\n346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit\nCompact 21\" X 21\" (Lid closed) footprint perfect for the Small patio/balcony", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02116394, 0.0055236816, -0.039489746, 0.0010843277, -0.0131073, -0.003736496, -0.018112183, -0.021499634, 0.0014266968, 0.019210815, -0.03225708, -0.028259277, 0.038635254, -0.032440186, 0.0019798279, -0.026504517, 0.0079193115, -0.009140015, -0.0047950745, -0.03704834, -0.010093689, -0.031311035, 0.020812988, 0.015075684, 0.04699707, -0.07788086, 0.027511597, 0.037017822, 0.03189087, 0.010803223, 0.044555664, -0.01335907, 0.053619385, -0.007671356, -0.035614014, -0.0043411255, 0.010063171, -0.006137848, -0.030654907, 0.007511139, 0.0019168854, 0.027282715, -0.010269165, 0.05810547, -0.034729004, -0.07489014, 0.038208008, -0.012641907, 0.034332275, 0.012008667, 0.018051147, -0.013519287, 0.011505127, 0.036865234, -0.02746582, -0.008644104, 0.013267517, 0.02458191, 0.01474762, -0.03062439, -0.021133423, 0.021820068, 0.033996582, 0.021942139, -0.051849365, 0.009414673, 0.041381836, -0.03665161, 0.015289307, -0.05529785, 0.006134033, 0.03314209, 0.012916565, 0.020385742, -0.064697266, 0.0104904175, 0.052124023, 0.028198242, 0.017333984, -0.009277344, 0.0069999695, -0.019577026, 0.027664185, 0.0014505386, -0.016952515, 0.010665894, -0.0074653625, -0.02897644, -0.0022144318, -0.021591187, 0.0054512024, -0.04949951, -0.056152344, 0.0625, 0.022766113, -0.039489746, -0.035095215, -0.073791504, 0.036956787, 0.0006966591, 0.055541992, -0.05053711, 0.020126343, 0.027801514, -0.04916382, 0.016571045, 0.04949951, 0.0513916, -0.008110046, 0.010017395, -0.016967773, 0.010101318, 0.0050964355, -0.009284973, -0.034301758, 0.008644104, -0.012512207, -0.010002136, 0.0026550293, -0.033447266, 0.021118164, 0.029891968, -0.0019435883, 0.06124878, -0.0008029938, 0.03555298, 0.0049438477, -0.042816162, -0.026290894, 0.037078857, -0.06262207, -0.008972168, 0.08074951, 0.06347656, 0.026229858, -0.028305054, 0.011756897, 0.020690918, 0.0012588501, -0.004043579, 0.005859375, -0.028884888, -0.00434494, -0.0047683716, -0.017852783, 0.041015625, 0.015594482, -0.00030732155, -0.02468872, -0.073791504, 0.005218506, -0.02861023, 0.058288574, -0.006832123, -0.060028076, 0.004348755, 0.046325684, -0.025802612, -0.08502197, -0.07055664, -0.03933716, -0.022705078, 0.007881165, 0.040222168, 0.024093628, 0.050994873, 0.050109863, 0.015899658, 0.0066108704, 0.055267334, -0.025787354, -0.0009651184, -0.01966858, -0.005859375, -0.011619568, -0.00472641, -0.020645142, 0.07537842, 0.04055786, -0.06048584, -0.0625, -0.068603516, 0.122802734, -0.04296875, -0.0011415482, -0.05078125, 0.029724121, 0.015258789, 0.006942749, 0.022781372, 0.025436401, -0.008483887, -0.022949219, -0.05606079, 0.046966553, 0.0021743774, -0.017929077, -0.028762817, 0.033416748, -0.010398865, 0.023620605, 0.0124053955, -0.015930176, 0.017105103, -0.048980713, 0.0018625259, -0.017196655, 0.014923096, 0.030075073, 0.023620605, -0.023071289, -0.03250122, 0.029144287, -0.036895752, -0.03036499, 0.011131287, -0.057647705, 0.0014829636, -0.007724762, 0.020980835, 0.030883789, 0.0039367676, 0.022567749, -0.009643555, 0.04547119, 0.01675415, -0.039794922, 3.838539e-05, 0.042877197, 0.006576538, -0.025283813, 0.026184082, 0.019973755, 0.03982544, -0.0049743652, 0.04901123, 0.08831787, 0.054718018, -0.0146865845, -0.051727295, 0.024871826, -0.0015869141, -0.008163452, 0.017318726, 0.0892334, 0.0043525696, -0.0041160583, 0.02027893, -0.02923584, -0.03717041, -0.0058784485, 0.01259613, 0.05996704, 0.022354126, -0.011772156, 0.05496216, -0.008506775, -0.000664711, -0.0038089752, 0.02709961, -0.0073776245, 0.03375244, 0.010597229, -0.0038032532, 0.009109497, 0.053375244, 0.046844482, 0.057403564, -0.025039673, 0.020126343, 0.00466156, 0.02885437, 0.009239197, -0.00026202202, -0.047180176, 0.023284912, -0.009902954, 0.026168823, 0.005115509, -0.020324707, 0.0059509277, -0.0073242188, 0.026992798, 0.00042915344, 0.019378662, -0.0128479, 0.04321289, 0.020629883, -0.020553589, -0.0099105835, 0.015670776, 0.0030612946, -0.0019683838, -0.0043144226, 0.027801514, -0.018554688, 0.035980225, 0.035064697, -0.0027122498, -0.018234253, -0.0138168335, 0.008796692, -0.061767578, 0.022216797, -0.013145447, -0.019454956, -0.043395996, 0.026062012, 0.0054740906, -0.027908325, -0.012893677, 0.015731812, 0.03189087, 0.0024051666, 0.021560669, 0.012496948, -0.00034475327, 0.046081543, 0.016784668, 0.018829346, 0.028427124, 0.04119873, -0.049621582, -0.0050239563, 0.024642944, 0.0042800903, -0.037200928, -0.030181885, -0.012908936, -0.0013341904, -0.0067367554, -0.032928467, -0.011398315, -0.013572693, 0.001964569, 0.0025177002, -0.0072631836, 0.0011148453, -0.026168823, -0.030059814, -0.02861023, -0.10272217, 0.0032043457, -0.018676758, -0.03427124, -0.016143799, 0.03765869, 0.01789856, -0.09893799, -0.0079193115, 0.046142578, -0.048095703, -0.009544373, -0.042419434, -0.011070251, 0.0015974045, -0.002286911, -0.050201416, -0.018600464, -0.07043457, -0.016998291, -0.002363205, -0.042907715, -0.02583313, 0.03186035, -0.012451172, -0.0045166016, -0.022781372, 0.0056877136, -0.0031051636, 0.07739258, -0.01751709, -0.0473938, -0.036254883, -0.048828125, -0.045410156, 0.0087509155, -0.062927246, -0.020095825, -0.024154663, -0.01701355, 0.012451172, -0.04840088, 0.00793457, -0.007575989, 0.013694763, -0.006793976, 0.012481689, 0.01713562, 0.008644104, 0.025115967, 0.030151367, -0.03704834, -0.018997192, 0.025375366, 0.018661499, -0.017791748, 0.0028839111, -0.029144287, -0.024780273, -0.11248779, -0.0059127808, -0.021209717, -0.046844482, -0.006011963, -0.052978516, -0.060577393, -0.06222534, 0.026443481, 0.04714966, -0.008407593, 0.017181396, -0.008842468, 0.008361816, -0.023742676, 0.029800415, 0.034973145, 0.0067977905, 0.016296387, -0.031829834, 0.008590698, -0.019485474, 0.01826477, -0.004333496, -0.03805542, 0.027526855, -0.034820557, 0.025543213, -0.0017442703, 0.0018024445, -0.016967773, -0.007987976, -0.040527344, 0.0015068054, 0.010375977, 0.02670288, 0.017318726, -0.04373169, 0.03479004, -0.014060974, -0.055664062, -0.020706177, -0.027694702, -0.006843567, 0.00047945976, -0.032989502, -0.0016450882, -0.04888916, 0.009185791, -0.02268982, 0.015640259, -0.005958557, 0.013496399, 0.017349243, -0.020309448, 0.072753906, 0.052856445, 0.07299805, 0.023712158, -0.022460938, 0.015701294, -0.050445557, 0.020767212, 0.04623413, 0.0005683899, -0.03488159, 0.05996704, -0.0046844482, -0.028579712, 0.022247314, -0.021240234, 0.014076233, 0.07006836, -0.038238525, -0.006099701, -0.07281494, 0.023452759, -0.011070251, 0.013519287, -0.037109375, -0.03338623, -0.0025157928, -0.06628418, 0.099243164, 0.053100586, -0.03491211, 0.07598877, 0.04055786, 0.0006713867, 0.030807495, -0.0029182434, 0.008636475, -0.020401001, 0.070129395, -0.015350342, 0.014831543, 0.0024375916, -0.0024433136, 0.014640808, 0.0008773804, -0.029037476, 0.017990112, 0.037353516, 0.002878189, -0.0413208, -0.033172607, 0.018463135, -0.013053894, 0.0005021095, -0.043060303, 0.013793945, -0.023742676, -0.014434814, -0.0033416748, -0.029510498, 0.0006046295, -0.02217102, -0.008644104, -0.02520752, 0.0015869141, -0.002937317, 0.023544312, -0.015068054, 0.05618286, -0.02897644, 0.022720337, -0.061309814, -0.008171082, 0.021743774, 0.0019569397, 0.021377563, -0.03378296, 0.022949219, 0.030258179, -0.001373291, 0.01361084, -0.00028324127, -0.02243042, -0.007598877, -0.024871826, 0.037750244, 0.045959473, -0.022644043, -0.015602112, -0.012634277, -0.023376465, -0.04071045, 0.023254395, -0.042938232, 0.020996094, -0.0016593933, -0.009239197, -0.039489746, 0.005695343, -0.026107788, 0.0024375916, -0.044677734, 0.005115509, -0.019958496, 0.03866577, 0.009559631, 0.047302246, -0.037902832, -0.033569336, 0.006351471, -0.013122559, 0.048583984, 0.005168915, 0.02406311, -0.02331543, -0.036590576, -0.01991272, 0.04107666, -0.0041618347, 0.011726379, -0.0011959076, -0.026473999, 0.017166138, -0.01399231, -0.004524231, -0.0069847107, 0.019378662, -0.020904541, 0.017532349, -0.068603516, -0.032684326, 0.03982544, -0.027679443, -0.06567383, -0.050445557, 0.07556152, -0.008636475, -0.0009851456, 0.0064353943, 0.03289795, -0.015487671, 0.018417358, -0.04144287, 0.01763916, 0.013511658, -0.013595581, 0.008033752, 0.00818634, -0.020553589, -0.018173218, 0.006099701, -0.009506226, -0.033843994, 0.037200928, -0.015541077, -0.01953125, 0.0035800934, -0.06161499, 0.06628418, -0.060943604, -0.036895752, -0.01737976, 0.041534424, 0.020965576, -0.0017137527, -0.012550354, -0.010498047, -0.019943237, -0.07952881, -0.020126343, 0.035064697, -0.030441284, -0.0017843246, -0.01247406, 0.03186035, 0.023651123, 0.0027103424, 0.009536743, -0.011650085, 0.016052246, -0.013656616, 0.01637268, -0.020217896, 0.0046310425, 0.027648926, -0.021347046, 0.027236938, 0.0072402954, -0.0035762787, 0.022247314, -0.036895752, -0.03302002, 0.003780365, -0.01777649, -0.02720642, 0.0025539398, 0.019866943, -0.041229248, 0.042114258, 0.026000977, 0.022781372, -0.023742676, 0.025390625, 0.0072135925, -0.01927185, -0.017959595, 0.047943115, 0.01374054, 0.0134887695, 0.048095703, 0.0030708313, 0.033325195, 0.029342651, -0.013450623, 0.051513672, -0.010528564, 0.020614624, 0.014297485, -0.0090789795, 0.031463623, -0.051696777, 0.039215088, 0.004180908, 0.0004618168, -0.07904053, 0.006500244, 0.04019165, 0.018157959, -0.0110321045, -0.0129776, 0.06842041, 0.027709961, -0.044158936, 0.010932922, 0.043914795, -0.03152466, 0.006439209, 0.010627747, 0.011123657, -0.04647827, 0.00085163116, -0.03744507, 0.032348633, -0.045318604, 0.015823364, 0.04611206, 0.005355835, -0.02671814, -0.032470703, -0.023147583, 0.036132812, -0.02923584, 0.004676819, -0.007827759, 0.023162842, 0.008422852, -0.014381409, -0.064086914, -0.0118255615, -0.017532349, 0.01209259, -0.013931274, -0.018417358, -0.014762878, 0.050811768, -0.046966553, 0.0011415482, 0.020004272, -0.05014038, 9.226799e-05, 0.022994995, -0.032409668, -0.027938843, 0.002111435, -0.01675415, 0.039031982, -0.0069770813, 0.0579834, -0.017532349, -0.033325195, -0.07366943, 0.03164673, -0.0074806213, -0.0052337646, 0.07763672, 0.016342163, 0.008720398, 0.026397705, 0.014015198, -0.051483154, 0.010482788, 0.015510559, -0.09777832, -0.05883789, -0.03704834, -0.010749817, -0.02281189, -0.014450073, -0.00687027, 0.03793335, 0.013374329, -0.02658081, -0.022735596, -0.019760132, 0.007118225, -0.019760132, -0.023513794, -0.04623413, 0.022125244, -0.04550171, 0.008613586, -0.036987305, -0.03805542, 0.011520386, 0.032073975, 0.03048706, -0.011405945, 0.011047363, 0.039123535, -0.032562256, 0.04434204, -0.02331543, -0.01374054, -0.0040893555, 0.032928467, 0.015945435, 0.05618286, 0.0070152283, -0.011520386, -0.031921387, -0.0006570816, 0.0064201355, 0.029464722, -0.057037354, -0.033111572, 0.06500244, 0.054107666, 0.010437012, 0.024291992, 0.024780273, -0.0178833, -0.045837402, -0.005794525, 0.003074646, -0.047576904, -0.025619507, -0.047424316, 0.015205383, 0.014862061, 0.005393982, 0.03842163, -0.00970459, 0.03527832, -0.016021729, 0.0154800415, 0.0009946823, -0.018096924, 0.027069092, -0.020706177, 0.0049858093, -0.009109497, -0.042419434, -0.030975342, 0.040039062, 0.030944824, -0.02684021, 0.007511139, -0.021896362, 0.045806885, -0.057525635, -0.007850647, 0.06781006, -0.06781006, 0.008918762, 0.062683105, -0.011886597, -0.0018978119, -0.033477783, 0.0013074875, 0.009208679, 0.021362305, 0.023544312, 0.013710022, 0.0046043396, 0.023651123, -0.022216797, -0.010925293, -0.026382446, -0.045043945, 0.064819336, -0.0099487305, -0.014457703, 0.0014295578, -0.025878906, 0.001537323, 0.048919678, -0.023040771, -0.0064811707, 0.0126571655, 0.022277832, -0.016464233, -0.010887146, -0.025924683, -0.010101318, 0.0036315918, -0.010505676, 0.023147583, 0.024749756, -0.0087509155, -0.0074806213, -0.0068893433, -0.041931152, 0.021774292, 0.0011911392, 0.023361206, 0.027709961, 0.021560669, 0.017959595, -0.034362793, -0.035217285, 0.021728516, -0.00390625, 0.0047950745, 4.976988e-05, 0.0418396, 0.0059394836, 0.0335083, 0.053955078, -0.015945435, 0.029159546, -0.008514404, 0.00094795227, 0.031066895, -0.032836914, -0.019226074, -0.010894775, 0.0048675537, 0.029693604, 0.015640259, 0.019500732, 0.009246826, 0.007797241, 0.022659302, -0.011230469, -0.0059814453, -0.019134521, -0.02116394, 0.06304932, 0.0043640137, -0.009269714, -0.04058838, -0.049346924, -0.03616333, -0.027160645, -0.089660645, 0.037017822, -0.03302002, -0.02822876, -0.0011920929, -0.00022387505, -0.0055236816, -0.059783936, -0.011711121, -0.03366089, 0.02494812, 0.008972168, 0.026351929, -0.0024280548, -0.04498291, -0.04058838, 0.027282715, -0.03692627, -0.04486084, -0.02293396, 0.02507019, -0.0124435425, -0.010322571, -0.013870239, 0.07910156, -0.0020179749, -4.953146e-05, 0.052703857, -0.021713257, -0.006450653, 0.025390625, 0.026275635, -0.028289795, -0.028121948, -0.032836914, -0.022994995, 0.033355713, 0.030822754, -0.009971619, -0.032348633, -0.030395508, -0.031143188, -0.014015198, -0.022964478, 0.015319824, -0.017562866, -0.0028438568, -0.04046631, -0.018005371, -0.0072402954, -0.005382538, 0.04208374, 0.015838623, 0.026367188, -0.024414062, -0.051879883, -0.0713501, -0.029541016, 0.04449463, -0.0073547363, -0.027740479, 0.04333496, -0.022476196, -0.041107178, 0.0064849854, 0.005241394, -0.05090332, 0.018585205, 0.016860962, -0.0058898926, 0.014717102, -0.011405945, 0.02104187, -0.037475586, 0.011550903, 0.050720215, 0.0053482056, -0.02645874, -0.01889038, -0.022613525, -0.018188477, -0.027404785, -0.021499634, 0.004924774, -0.008979797, -0.014389038, 0.0059432983, -0.002210617, 0.018234253, -0.023803711, -0.008468628, -0.026550293, 0.019195557, 0.03338623, 0.023254395, -0.04776001, 0.0056915283, 0.014335632, 0.0079422, -0.02911377, -0.03427124, -0.034851074, 0.021743774, 0.023651123, -0.005279541, 0.055236816, -0.013641357, 0.018295288, 0.017227173, 0.009597778, -0.015792847, 0.02204895, 0.05819702, 0.024215698, 0.024261475]}, "B0070U0KXA": {"id": "B0070U0KXA", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills L75625 32\" Propane Grill\nDescription: \nFeatures: 830 square inches of cooking surface\n75,000 total BTUs\nPremium solid stainless steel cooking grates\nSize: 32?\nstainless steel smoker head with polished edges\n", "metadata": {"Name": "Lion Premium Grills L75625 32\" Propane Grill", "Brand": "Lion Premium Grills", "Description": "", "Features": "830 square inches of cooking surface\n75,000 total BTUs\nPremium solid stainless steel cooking grates\nSize: 32?\nstainless steel smoker head with polished edges", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022247314, 0.008171082, -0.064208984, 0.007369995, -0.014053345, -0.018417358, -0.015319824, -0.00029683113, -0.079711914, -0.0026397705, -0.0044441223, 0.041015625, -0.041381836, -0.043029785, 0.052764893, -0.047576904, 0.02154541, 0.037719727, 0.01977539, -0.0124053955, -0.01689148, 0.014884949, -0.022323608, 0.06573486, 0.034118652, -0.09552002, 0.043823242, 0.0056648254, 0.04852295, 0.0033454895, 0.029907227, -0.005962372, 0.04244995, -0.026275635, 0.022338867, 0.029449463, 0.026351929, -0.031829834, 0.016235352, -0.012687683, -0.008140564, 0.02545166, 0.0078086853, 0.016036987, -0.039154053, -0.021148682, -0.0052948, -0.01448822, 0.016601562, 0.010063171, -0.014350891, 0.0026359558, -0.0132369995, -0.026245117, -0.008506775, 0.005218506, 0.030334473, -0.011886597, 0.03012085, -0.025253296, -0.02444458, 0.0046310425, 0.03768921, 0.0039749146, -0.0072746277, 0.040100098, 0.13500977, -0.017730713, -0.007785797, -0.0423584, -0.012207031, 0.01474762, 0.03945923, -0.005012512, -0.007850647, -0.045166016, 0.01663208, -0.024917603, 0.041107178, -0.016921997, 0.004032135, 0.0025844574, 0.0013189316, -0.017364502, -0.0076179504, -0.0056648254, -0.024032593, -0.018112183, 0.024108887, -0.044006348, -0.004432678, -0.038513184, -0.006362915, 0.032592773, 0.0002617836, -0.03314209, -0.0020828247, -0.05316162, 0.019073486, -0.0385437, 0.056365967, -0.036224365, -0.01826477, 0.01889038, -0.017303467, 0.0703125, 0.022125244, 0.050872803, 0.011291504, 0.0024642944, 0.0113220215, -0.032196045, 0.0039482117, -0.005970001, -0.015426636, -0.01777649, -0.05026245, 0.014579773, -0.006511688, -0.0011024475, -0.0335083, -0.022918701, 0.034454346, 0.0513916, 0.034851074, 0.058746338, -0.0076560974, -0.011047363, -0.06774902, 0.013870239, -0.008392334, 0.029846191, 0.011222839, 0.018814087, -0.021652222, -0.008384705, 0.031188965, 0.021377563, -0.024353027, 0.01171875, -0.018478394, -0.0060920715, 0.018203735, -0.035980225, -0.04107666, 0.0030288696, 0.03640747, 0.024505615, -0.04232788, -0.048858643, -0.0034618378, 0.027770996, 0.024993896, 0.0027885437, -0.030914307, -0.0018720627, -0.015975952, -0.009849548, -0.028915405, -0.039245605, -0.0061912537, -0.006702423, -0.0019760132, 0.011688232, -0.021972656, 0.013031006, 0.046966553, 0.0029582977, 0.023605347, 0.039276123, 0.011688232, -0.00894165, 0.0023097992, 0.009994507, -0.0034236908, 0.0047073364, -0.01928711, 0.015945435, 0.061920166, -0.074035645, -0.063964844, -0.036956787, 0.11816406, -0.05114746, 0.02507019, -0.019714355, 0.027191162, -0.0231781, -0.0053749084, 0.012046814, -0.0113220215, 0.037384033, -0.010253906, -0.020690918, 0.018798828, -0.0032024384, -0.033996582, -0.0053749084, 0.0004644394, -0.0013895035, 0.020965576, -0.025024414, 0.045013428, -0.016052246, 0.0362854, -0.01626587, 0.0029792786, 0.004348755, 0.022491455, 0.053527832, -0.013801575, 0.006126404, 0.006565094, -0.033294678, 0.0031929016, 0.026550293, -0.021606445, 0.003118515, 0.016143799, -0.015625, 0.02607727, 0.032165527, 0.032287598, 0.02381897, -0.0060806274, 0.0039711, -0.01789856, 0.00699234, 0.011894226, 0.013877869, 0.011116028, 0.004348755, 0.07385254, 0.07501221, 0.0013589859, 0.03741455, 0.06222534, 0.0501709, -0.037353516, -0.022598267, 0.026504517, 0.008842468, -0.019805908, -0.014854431, 0.04309082, 0.015914917, 0.025054932, -0.02822876, 0.013648987, -0.024475098, 0.05697632, -0.027511597, 0.031219482, -0.0016002655, 0.01210022, 0.012641907, -0.013015747, -0.008590698, -0.03036499, 0.0038909912, 0.022781372, 0.070007324, -0.0042152405, 0.033203125, -0.011817932, 0.031402588, 0.017486572, 0.02659607, -0.052764893, 0.019226074, 0.038330078, 0.08251953, -0.0058174133, -0.026641846, -0.016906738, -0.036895752, -0.013214111, 0.02998352, -0.03591919, -0.052368164, -0.0047454834, 0.008972168, -0.005207062, -0.019119263, 0.02670288, 0.019363403, 0.0028514862, -0.017318726, -0.032196045, -0.008712769, 0.0039711, 0.021575928, -0.020767212, 0.020141602, 0.008552551, -0.010154724, 0.069885254, 0.034698486, 0.0049552917, -0.0037899017, 0.017059326, 0.0055122375, -0.05581665, 0.016998291, 0.0031776428, -0.016052246, 0.0262146, 0.014770508, 0.015411377, -0.018478394, 0.040740967, 0.074035645, 0.016296387, 0.03656006, -0.01272583, -0.009925842, -0.0072784424, 0.040130615, 0.047027588, 0.07550049, -0.007827759, -0.010009766, -0.07110596, -0.035125732, -0.010299683, 0.051971436, -0.055877686, -0.008331299, -0.031707764, 0.0056610107, -0.021484375, -0.03262329, -0.015007019, 0.006259918, -0.014892578, 0.0044136047, 0.0016450882, 0.048309326, 0.0053138733, -0.044158936, 0.019226074, -0.041015625, -0.005596161, 0.033050537, -0.05621338, -0.015312195, 0.014579773, -0.010482788, -0.00793457, -0.0014867783, 0.021881104, -0.00365448, -0.0016651154, 0.026489258, -0.007926941, 0.02609253, 0.0033454895, -0.061950684, -0.05380249, -0.07336426, 0.0078048706, -0.022064209, -0.0501709, 0.004711151, 0.056610107, -0.027313232, -0.015029907, -0.02633667, 0.00806427, -0.0068855286, 0.03781128, -0.019927979, -0.056549072, -0.0146484375, 0.0019683838, -0.00995636, 0.024856567, -0.042541504, 0.037994385, 0.00687027, -0.007896423, 0.025756836, -0.022216797, 0.030151367, -0.02015686, 0.023757935, -0.011161804, 0.016342163, -0.0020771027, -0.013587952, 0.014541626, 0.062194824, -0.04144287, -0.023513794, -0.0023441315, 0.008453369, 0.0018587112, -0.022262573, -0.007801056, -0.02067566, -0.07141113, 0.009971619, -0.0010166168, -0.032592773, -0.0013332367, -0.04727173, -0.032318115, -0.048553467, 0.006252289, 0.047668457, -0.020507812, 0.00039696693, -0.017868042, -0.029876709, 0.017303467, 0.0016260147, 0.030853271, -0.009376526, 0.026367188, -0.027252197, 0.0016975403, -0.016571045, -0.012840271, 0.0009331703, -0.0368042, 0.024734497, -0.014976501, 0.03189087, -0.011489868, 0.0158844, -0.0104599, -0.008605957, -0.012107849, -0.022018433, -0.007621765, 0.0256958, -0.0023880005, 0.026519775, 0.012641907, -0.007293701, -0.04864502, -0.031433105, 0.009277344, 0.030944824, 0.009277344, -0.0064201355, -0.04763794, -0.041778564, 0.007293701, 0.025344849, -0.0037899017, -0.009048462, 0.019180298, 0.014427185, -0.030181885, 0.03945923, 0.0019702911, 0.02609253, 0.020858765, -0.0052223206, -0.030899048, -0.031280518, 0.047180176, -0.0067710876, -0.0069732666, 0.014587402, -0.04574585, 0.037322998, 0.013801575, -0.020904541, 0.044525146, 0.043670654, 0.0017642975, -0.015670776, -0.0016326904, -0.027435303, 0.0116119385, 0.009635925, -1.5258789e-05, -0.01687622, -0.0036964417, -0.009277344, -0.05090332, 0.059753418, 0.08654785, -0.039642334, 0.029830933, 0.01285553, 0.014404297, 0.04562378, 0.04876709, -0.026763916, 0.041168213, 0.014785767, -0.027236938, 0.0104904175, 0.017669678, -0.015106201, 0.022506714, 0.008621216, -0.04486084, 0.0141067505, -0.024246216, -0.032287598, -0.026123047, -0.03665161, -0.0067253113, 0.00020384789, 0.04449463, -0.009429932, -0.00630188, -0.00023913383, 0.061676025, 0.013366699, -0.010055542, -0.0051345825, 0.012207031, 0.015159607, -0.022384644, -0.008117676, -0.009918213, 0.009796143, -0.017990112, 0.035095215, 0.0050201416, 0.0064888, -0.04864502, 0.015899658, 0.0040016174, 0.048339844, 0.03338623, -0.0064582825, 0.04031372, -0.006248474, -0.005050659, -0.028381348, 0.023788452, 0.044555664, -0.030426025, -0.07208252, -0.006603241, 0.009117126, 0.02418518, -0.06817627, -0.029891968, -0.0345459, -0.051086426, -0.02116394, -0.03829956, -0.043518066, 0.015701294, 0.03781128, -0.06567383, -0.060028076, -0.030166626, -0.04333496, -0.00868988, 0.018188477, -0.018341064, -0.051818848, 0.012252808, 0.020812988, -0.0284729, -0.028625488, -0.013244629, -0.0096206665, 0.045806885, 0.01146698, 0.072265625, -0.0413208, 0.029220581, -0.0340271, 0.111816406, 0.07733154, -0.01398468, -0.028167725, -0.05267334, -0.0079193115, 0.0035858154, 0.03881836, 0.008720398, 0.011550903, -0.04385376, -0.05392456, -0.023834229, -0.04147339, 0.018218994, -0.07867432, -0.04660034, -0.029754639, 0.06719971, -0.013687134, 0.017990112, -0.021606445, 0.003818512, -0.024002075, -0.014144897, -0.07122803, -0.012573242, 0.0073432922, -0.033294678, -0.0022888184, -0.01449585, -0.04058838, 0.05130005, 0.002658844, 0.013641357, -0.03668213, 0.017120361, 0.0035190582, -0.012580872, 0.019119263, -0.027130127, 0.0011720657, -0.0068359375, -0.046539307, -0.04269409, 0.054504395, 0.033843994, 0.019195557, 0.00233078, 0.024917603, 0.0051956177, -0.07684326, -0.017471313, 0.006919861, -0.00730896, -0.017333984, -0.026321411, 0.014160156, -0.018966675, 0.006134033, 0.0014791489, -0.03338623, 0.029266357, 0.01713562, 0.015716553, -0.0035648346, 0.010986328, 0.044525146, -0.011749268, 0.036499023, 0.014221191, 0.0062675476, 0.040985107, -0.009590149, 0.008415222, -0.002796173, -0.019058228, -0.03665161, 0.0030784607, 0.009849548, -0.046966553, 0.03302002, 0.03262329, -8.755922e-05, -0.035827637, 0.031158447, 0.00069999695, 0.026138306, 0.010864258, 0.07714844, -0.00092840195, 0.024887085, 0.03250122, -0.071777344, 0.03366089, 0.057525635, -0.049468994, 0.048553467, 0.029830933, -0.058502197, 0.07348633, -0.0049362183, -0.004573822, -0.04763794, 0.042236328, -0.020553589, 0.010345459, -0.04434204, 0.022476196, 0.039123535, -0.005279541, 0.00046634674, -0.020980835, 0.015701294, 0.0067749023, 0.027679443, 0.0043945312, 0.0021915436, -0.023361206, 0.008598328, -0.01739502, -0.012138367, -0.004497528, -0.013267517, -0.04989624, -0.01777649, -0.01637268, 0.009757996, 0.021911621, -0.022521973, -0.022903442, -0.051574707, -0.025039673, -0.019332886, -0.026123047, 0.021697998, -0.009170532, -0.011245728, 0.0054893494, 0.017562866, -0.012893677, -0.0031051636, -0.003856659, 0.0027008057, 0.018951416, -0.008583069, -0.019622803, 0.034301758, -0.06439209, 0.023834229, 0.009994507, -0.08312988, 0.008522034, -0.014137268, -0.049713135, -0.050964355, 0.014793396, 0.018173218, -0.0029621124, -0.016021729, 0.03555298, -0.03152466, -0.009986877, -0.06561279, 0.020828247, -0.0044898987, -0.020126343, 0.0579834, -0.013763428, 0.012046814, 0.026626587, -0.006046295, -0.053771973, 0.03640747, 0.006462097, -0.08642578, -0.010917664, -0.029571533, -0.022857666, 0.016159058, 0.031021118, -0.014823914, 0.04916382, -0.01763916, -0.04232788, -0.05532837, 0.022125244, -0.00042915344, -0.058776855, -0.0026569366, -0.025375366, 0.03451538, 0.015716553, 0.03918457, -0.036468506, -0.028823853, -0.009338379, 0.041015625, 0.03744507, -0.03439331, 0.010147095, 0.059020996, -0.033325195, 0.08068848, -0.008811951, 0.0051231384, -0.00137043, 0.052459717, 0.005241394, 0.04727173, -0.046417236, -0.012702942, -0.053009033, 0.04522705, 0.031921387, 0.037506104, -0.01979065, 0.03567505, 0.002614975, 0.028305054, 0.0060653687, 0.012077332, 0.003376007, -0.0075569153, -0.020355225, 0.0018463135, -0.0020523071, -0.03744507, -0.053985596, -0.05065918, 0.031280518, 0.041656494, 0.028076172, 0.036987305, 0.022583008, 0.041931152, 0.022460938, 0.0025424957, 0.031433105, 0.033447266, 0.008766174, -0.0030326843, -0.0993042, 0.040618896, 0.011459351, -0.0010700226, -0.0071487427, 0.0008530617, -0.017150879, 0.025222778, 0.022918701, 0.008583069, -0.04714966, 0.059692383, -0.016616821, -0.07104492, 0.007633209, 0.015068054, 0.007873535, 0.025146484, -0.05166626, -0.015716553, 0.007888794, 0.0077781677, -0.023727417, 0.009269714, 0.013206482, 0.011199951, -0.043121338, -0.0077285767, 0.0073661804, -0.032348633, 0.06359863, 0.050811768, -0.00945282, -0.027954102, -0.019088745, 0.04031372, 0.034118652, -0.012321472, 0.03277588, 0.010803223, 0.0059661865, -0.031143188, 0.010108948, -0.014434814, -0.026641846, -0.00036001205, 0.019958496, 0.007598877, 0.024520874, -0.01499176, -0.0018167496, 0.07019043, -0.020248413, 0.049926758, -0.011451721, 0.09387207, 0.039886475, 0.026046753, -0.009628296, -0.06591797, -0.025360107, -0.022903442, -0.0050621033, -0.013786316, -0.04083252, 0.04562378, 0.033935547, 0.04220581, 0.06958008, 0.0053253174, 0.034057617, 0.01108551, 0.007858276, 0.017227173, -0.00868988, -0.01789856, 0.02406311, 0.0047454834, 0.029769897, 0.047332764, 0.03970337, 0.0074272156, 0.02671814, 0.013809204, -0.027770996, -0.0028209686, 0.017059326, -0.041809082, 0.030685425, -0.014678955, 0.015213013, -0.014549255, -0.019592285, -0.0597229, 0.0045394897, -0.027679443, 0.0020618439, -0.0046463013, -0.016555786, 0.016143799, -0.0032291412, 0.013252258, -0.0519104, -0.008728027, -0.012832642, -0.0024986267, -0.003566742, 0.044036865, -0.016860962, -0.04776001, -0.021133423, 0.040405273, -0.039855957, -0.048339844, -0.03366089, 0.0054244995, -0.0010004044, -0.007911682, 0.040740967, 0.00038814545, 0.034301758, 0.0024375916, -0.0077552795, -0.010505676, -0.02394104, 0.03967285, 0.004886627, -0.024505615, 0.0015325546, 0.04458618, -0.005970001, 0.008155823, 0.0357666, -0.022705078, -0.02468872, -0.015327454, -0.010520935, -0.00137043, -0.01727295, 0.0010080338, -0.029663086, -0.01878357, -0.078552246, -0.0758667, -0.022521973, 0.0463562, 0.028182983, 0.0024051666, 0.015975952, -0.0028038025, -0.05886841, -0.0049438477, -0.00945282, -0.0019607544, 0.071899414, 0.029586792, 0.034362793, 0.03375244, -0.037353516, 0.041931152, -0.02180481, -0.010925293, 0.020614624, 0.017227173, 0.010635376, 0.016815186, -0.019927979, 0.035858154, -0.011932373, -0.03302002, 0.010322571, 0.039093018, -0.036193848, -0.008522034, -0.04135132, 0.011764526, 0.011398315, -0.066101074, -0.013908386, -0.00020670891, -0.013473511, 0.003929138, 0.004966736, 0.019439697, -0.0048980713, 0.004131317, -0.0053367615, 0.040740967, 0.0056152344, 0.037750244, -0.03781128, 0.07891846, 0.011260986, 0.039642334, -0.0109939575, -0.038726807, -0.045806885, 0.045440674, 0.015335083, -0.023345947, 0.04345703, -0.016586304, 0.0155181885, -0.020629883, -0.012321472, -0.04598999, 0.034332275, 0.0592041, -0.025527954, 0.039764404]}, "B007WH7S4A": {"id": "B007WH7S4A", "original": "Brand: DOZYANT\nName: DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection\nDescription: \nFeatures: Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks\nLong lasting high quality material provides secure, air-tight connection between propane tank\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low\nThis propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter\nNo tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances\n", "metadata": {"Name": "DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection", "Brand": "DOZYANT", "Description": "", "Features": "Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks\nLong lasting high quality material provides secure, air-tight connection between propane tank\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low\nThis propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter\nNo tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0006380081, 0.0035934448, -0.021469116, -0.031402588, -0.001917839, -6.020069e-05, -0.027053833, -0.011985779, 0.006462097, -0.007499695, -0.010665894, 0.029708862, -0.020599365, -0.026733398, 0.009223938, -0.025497437, 0.014045715, -0.019973755, -0.029876709, -0.046661377, -0.010284424, -0.04055786, 0.006465912, 0.075927734, -0.011772156, 0.0637207, 0.03527832, 0.0050086975, -0.007217407, 0.0041542053, 0.015220642, -0.025375366, 0.012191772, 0.026657104, -0.011512756, -0.010307312, -0.018539429, 0.022109985, 0.003271103, -0.026321411, 0.002243042, -0.0016517639, 0.012168884, -0.008598328, -0.009979248, -0.01701355, -0.010147095, -0.025314331, 0.03488159, 0.007663727, 0.0027618408, 0.0082092285, 0.01939392, 0.034210205, -0.015258789, 0.018066406, 0.014122009, -0.058380127, 0.0075645447, -0.00579834, 0.011360168, -0.002248764, 0.027130127, 0.01612854, -0.0524292, 0.008995056, 0.019317627, -0.015853882, 0.018417358, -0.06604004, -0.0118637085, 0.030761719, 0.016494751, 0.0021190643, -0.049926758, -0.022338867, 0.040222168, -0.013198853, 0.016052246, -0.010597229, 0.011566162, -0.036254883, 0.05218506, 0.029144287, -0.017166138, 0.025512695, -0.0038375854, -0.013282776, -0.012275696, -0.029876709, -0.0076675415, 0.032989502, -0.051452637, -0.008613586, -0.016830444, -0.019744873, -0.028625488, -0.038330078, -0.0010442734, -0.010116577, -0.010826111, -0.018478394, -0.03515625, -0.0023517609, 0.014457703, 0.045715332, -0.029403687, -0.015289307, 0.050933838, 0.009849548, 0.02116394, 0.025756836, -0.020584106, -0.02243042, -0.016082764, 0.064575195, -0.0076293945, 0.007259369, 0.014411926, 0.04144287, -0.024536133, -0.006259918, 0.017669678, -0.016067505, -0.0063552856, -0.019989014, -0.0055274963, -0.0033226013, -0.06011963, 0.015319824, -0.020080566, -0.007003784, 0.021881104, 0.08251953, 0.01574707, -0.011268616, 0.032989502, 0.03829956, -0.0041770935, 0.0035037994, 0.035491943, -0.011375427, -0.014305115, 0.031204224, -0.039794922, 0.042907715, 0.007911682, 0.008026123, 0.00033664703, -0.09906006, 0.02519226, -0.047180176, 0.032226562, 0.0022182465, -0.04562378, -0.008094788, -0.019363403, -0.018066406, -0.020950317, -0.041046143, -0.03414917, -0.032470703, -0.013900757, 0.00041103363, -0.016601562, 0.04650879, 0.04522705, 0.004501343, 0.015563965, 0.0061569214, 0.0140686035, 0.03439331, 0.044433594, 0.009727478, -0.0069007874, -0.006713867, -0.037322998, 0.086120605, 0.06591797, -0.14501953, -0.063964844, -0.05847168, 0.11645508, -0.021148682, -0.019958496, -0.0072517395, 0.005657196, -0.025039673, 0.0017786026, -0.006313324, 0.04953003, 0.046691895, 0.004436493, -0.046325684, 0.016281128, 0.015434265, -0.014945984, 0.010559082, 0.0038166046, -0.015220642, -0.059539795, 0.021316528, -0.019515991, 0.026992798, 0.0027751923, -0.015335083, -0.0028591156, 0.032714844, 0.0015668869, 0.026809692, 0.018447876, 0.003168106, 0.0036373138, -0.050720215, -0.03338623, 0.02407837, -0.01991272, 0.0131073, -0.0008916855, 0.023513794, 0.022949219, -0.013572693, 0.0066375732, 0.003932953, -0.0049057007, 0.040771484, -0.046661377, 0.027130127, 0.03552246, 0.0007472038, 0.08532715, 0.020446777, 0.06842041, 0.034973145, -0.022750854, 0.02130127, 0.033233643, -0.008422852, -0.021820068, 0.02935791, 0.018966675, -0.0038204193, -0.023742676, -0.00491333, -0.0023498535, -0.085998535, -0.018112183, 0.0038414001, 0.0016527176, 0.05014038, -0.015594482, 0.008888245, 0.021087646, 0.042388916, -0.06274414, 0.042877197, 0.027770996, 0.061798096, -0.04776001, 0.0063591003, -0.0095825195, 0.0093688965, 0.0026416779, -0.008934021, 0.016220093, 0.00072336197, 0.037078857, 0.030975342, 0.00969696, -0.015411377, 0.0024375916, -0.012290955, 0.0023784637, -0.03414917, -0.048309326, 0.024749756, -0.046051025, 0.032287598, 0.04095459, -0.016693115, 0.026535034, 0.0059165955, 0.01991272, -0.0030727386, 0.06161499, 0.07922363, -0.0023174286, -0.0032653809, -0.0044288635, -0.0062713623, 0.02279663, 0.002986908, -0.009490967, 0.02368164, -0.04220581, -0.01838684, 0.06317139, -0.0065193176, 0.030960083, -0.007369995, 0.018676758, 0.048950195, -0.039764404, 0.035003662, 0.005054474, -0.012779236, -0.0060310364, 0.015258789, 0.0077590942, -0.024871826, -0.0234375, 0.01864624, 0.018432617, -0.03665161, 0.04824829, 0.039733887, -0.009208679, 0.025039673, 0.03753662, 0.052215576, -0.011192322, -0.018508911, 0.017196655, -0.015174866, 0.011100769, -0.015403748, -0.017486572, 0.010574341, -0.033691406, -0.019042969, 0.019760132, -0.026901245, 0.020065308, 0.014778137, 0.013122559, -0.024765015, 0.017410278, 0.014701843, -0.0032844543, -0.049957275, 0.013450623, -0.047332764, 0.0023498535, 0.042755127, -0.053833008, -0.03604126, 0.08959961, -0.007534027, -0.037719727, 0.0060653687, 0.036346436, -0.016433716, 0.025222778, 0.016189575, 0.0552063, 3.4451485e-05, -0.04324341, 0.008491516, 0.036743164, -0.051330566, 0.003616333, -0.0124435425, -0.055847168, -0.026046753, 0.04107666, -0.009880066, -0.015579224, -0.046295166, 0.038085938, 0.054534912, -0.0070343018, 0.024505615, -0.045532227, -0.0042495728, 0.004272461, -0.008132935, 0.012626648, -0.046539307, 0.03668213, 0.0051612854, -0.026901245, 0.006958008, -0.023086548, 0.017807007, 0.046722412, 0.023605347, 0.083862305, 0.06100464, 0.022842407, -0.047668457, 0.01979065, 0.043273926, 0.014274597, -0.0005712509, 0.008430481, -0.014381409, -0.004585266, 0.02027893, -0.060821533, -0.007297516, -0.02633667, 0.008033752, 0.015655518, -0.010559082, -0.015411377, -0.044708252, -0.03540039, -0.019470215, 0.030685425, 0.0368042, -0.021072388, 0.038513184, -0.01763916, 0.03665161, -0.021026611, 0.01159668, -0.03237915, -0.016433716, -0.0023841858, 0.0076942444, 0.05050659, -0.11303711, 0.040405273, 0.051361084, -0.0067634583, 0.013046265, 0.015930176, 0.021591187, 0.008148193, 0.028900146, 0.024337769, -0.0066108704, -0.056427002, -0.02722168, 0.014038086, 0.00806427, 0.02128601, -0.03050232, 0.021072388, -0.0013952255, -0.05517578, -0.014221191, -0.0036029816, 0.04272461, -0.0058898926, -0.0027866364, -0.04067993, -0.056396484, -0.02671814, -0.029541016, -0.00067043304, 0.009521484, 0.055999756, 0.025024414, 0.0072288513, 0.03665161, 0.012184143, 0.038391113, -0.014602661, 0.018920898, 0.010925293, -0.0317688, 0.03213501, 0.013076782, -0.010498047, -0.031433105, 0.028900146, 0.025009155, 0.010131836, -0.023162842, 0.0016469955, 0.05126953, 0.015716553, -0.018692017, 0.0068740845, -0.0078125, 0.015792847, -0.03527832, 0.0435791, -0.014732361, -0.016159058, 0.007247925, -0.12536621, 0.0836792, 0.03111267, -0.021881104, 0.04232788, 0.029754639, -0.012863159, 0.056793213, 0.043823242, 0.018753052, -0.002325058, 0.07507324, -0.0151901245, -0.014793396, 0.007949829, -0.037017822, 0.008033752, -0.022567749, -0.0025367737, 0.03567505, 0.024627686, -0.005203247, -0.021331787, 0.02015686, 0.008422852, -0.030441284, -0.014907837, -0.027832031, -0.027236938, -0.060455322, 0.058563232, 0.007762909, -0.010757446, -0.011123657, 0.009277344, -0.049438477, -0.00022315979, 0.030075073, -0.031051636, -0.01838684, 0.033233643, 0.044830322, -0.020141602, -0.009979248, 0.0046920776, 0.001584053, -0.024490356, -0.017120361, 0.0236969, 0.02128601, -0.015571594, -0.015419006, 0.018035889, 0.0058250427, -0.033966064, 0.04949951, 0.020141602, -0.055725098, -0.0046958923, 0.021347046, 0.01235199, -0.003993988, 0.00023174286, -0.07305908, -0.034973145, -0.025756836, -0.041137695, 0.010398865, -0.013549805, -0.025405884, -0.06036377, -0.024154663, -0.019943237, -0.02305603, -0.020828247, 0.018173218, -0.005630493, -0.030151367, 0.0340271, 0.002035141, -0.04067993, -0.008903503, -0.0037651062, -0.021942139, 0.049041748, -0.01158905, 0.024261475, -0.030715942, -0.01737976, -0.0035381317, -0.01134491, -0.036193848, 0.008995056, -0.00029826164, -0.02507019, 0.028335571, -0.003063202, 0.040740967, 0.008041382, 0.010513306, -0.03765869, 0.033813477, -0.048187256, 0.011695862, 0.016998291, -0.010108948, -0.05154419, -0.027755737, 0.039001465, 0.004634857, 0.052703857, 0.03945923, -0.022857666, -0.0033435822, -0.006942749, -0.13635254, -0.065979004, -0.030853271, 0.009284973, -0.015975952, 0.014160156, 0.00010019541, 0.010269165, -0.0121154785, -0.050201416, 0.053344727, 0.019821167, -0.0044441223, -0.011077881, 0.008148193, -0.041656494, 0.041534424, -0.04812622, -0.028930664, -0.06933594, 0.029449463, 0.056243896, 0.0008430481, -0.0032958984, -0.027572632, -0.043426514, -0.03074646, -0.045196533, 0.031707764, 0.0067710876, -0.0035858154, -0.038269043, 0.024627686, -0.0026283264, -0.010597229, -0.017715454, -0.008079529, 0.015014648, 0.005393982, -0.015991211, -0.02017212, -0.027938843, -0.0020923615, 0.00051927567, 0.005344391, -0.038848877, 0.012145996, 0.013000488, -0.009361267, 0.002111435, -0.025527954, -0.007911682, 0.0016651154, 0.012512207, 0.024307251, -0.06365967, 0.01979065, 0.059387207, 0.0040397644, -0.025283813, 0.021133423, -0.0039787292, -0.017227173, -0.06549072, 0.014602661, 0.031082153, -0.023345947, -0.01285553, -0.0072135925, 0.03643799, 0.033813477, -0.01878357, 0.015960693, 0.020080566, -0.05130005, 0.036132812, 0.030410767, 0.024108887, -0.045013428, 0.080322266, -0.024139404, -0.005882263, -0.034942627, 0.027069092, 0.022720337, 0.019927979, -0.026123047, -0.01890564, 0.024978638, -0.020904541, 0.0054130554, 0.025894165, 0.031585693, -0.008590698, 0.010124207, 0.027496338, -0.007461548, -0.05404663, 0.010810852, 0.014930725, 0.0043945312, 0.01084137, -0.08557129, 0.03363037, 0.014160156, -0.07086182, -0.013839722, -0.03881836, -0.00497818, -0.013458252, -0.0028266907, -0.053863525, -0.0149002075, -0.030715942, 0.020721436, 0.021408081, 0.004283905, -0.02178955, -0.022232056, -0.03164673, 0.031311035, -0.022506714, 0.010643005, -0.03845215, -0.043914795, -0.021591187, -0.011756897, 0.017562866, -0.052093506, -0.037994385, -0.047027588, -0.004058838, 0.008354187, 0.0036640167, -0.0065689087, 0.02609253, -0.029220581, -0.030685425, -0.017471313, 0.04928589, -0.022872925, -0.047546387, 0.072509766, 0.058776855, 0.0076675415, 0.014511108, -0.022491455, -0.07836914, 0.039398193, 0.0020446777, -0.081970215, -0.014419556, -0.033111572, -0.011886597, 0.029022217, -0.01121521, -0.010353088, 0.0124435425, -0.012367249, 0.01133728, -0.001616478, -0.0028057098, -0.023239136, -0.020690918, 0.015083313, -0.005973816, 0.024597168, -0.017089844, 0.03427124, -0.07733154, -0.057373047, 0.008522034, 0.007156372, -0.002286911, 0.018295288, 0.017456055, 0.040252686, -0.024597168, -0.015449524, 0.0028629303, 0.014839172, -0.0014162064, 0.022201538, -0.028686523, 0.039642334, -0.045928955, 0.008995056, -0.051635742, 0.007881165, -0.007865906, 0.07287598, -0.068603516, 0.0049324036, 0.022460938, 0.050872803, -0.012237549, -0.009277344, 0.023910522, 0.0034484863, -0.041046143, -0.032165527, -0.008575439, -0.020477295, -0.036254883, -0.03668213, -0.004211426, 0.028305054, 0.0031356812, 0.032562256, -0.0034980774, 0.037353516, -0.027557373, 0.061645508, -0.008277893, 0.016448975, 0.057647705, -0.046417236, 0.043640137, -0.017211914, 0.021957397, -0.007709503, 0.028152466, 0.026229858, -0.008636475, 0.008102417, 0.029693604, 0.016036987, 0.006011963, 0.030212402, 0.010559082, -0.0647583, 0.01687622, 0.014755249, 0.015510559, 0.028930664, 0.03668213, 0.023651123, 0.041290283, 0.010482788, 0.018249512, 0.022033691, -0.010726929, 0.026321411, -0.044281006, 0.012268066, -0.049957275, -0.04144287, 0.029846191, 0.004940033, 0.0051879883, 0.0079956055, -0.06890869, 0.024551392, 0.022888184, 0.007091522, 0.007911682, -0.010574341, 0.011138916, 0.018234253, -0.012504578, -0.029663086, -0.04348755, 0.021347046, 0.023147583, -0.011199951, 0.04272461, -0.0053634644, 0.022216797, 0.00491333, 0.0032081604, -0.0057258606, -0.043945312, 0.0032310486, 0.026779175, -0.0037441254, -0.042297363, -0.058654785, -0.017120361, -0.002729416, -0.014205933, 0.04260254, -0.027862549, 0.1385498, 0.02406311, 0.007286072, 0.05569458, 0.013023376, 0.0038528442, -0.030578613, 0.012542725, 0.016326904, 0.03375244, -0.010215759, -0.042419434, -0.011230469, -0.006008148, -0.019836426, -0.013397217, -0.0029697418, 0.015853882, -0.00027489662, -0.02607727, 0.0038166046, 0.00409317, -0.041748047, 0.054870605, -0.031051636, 0.022460938, -0.021209717, -0.05142212, -0.046813965, -0.041656494, -0.02128601, 0.0690918, -0.0029029846, 0.005252838, 0.020477295, -0.022476196, -0.0016651154, -0.04547119, 0.029022217, 0.003501892, 0.027130127, -0.016723633, 0.016677856, 0.009780884, -0.034942627, -0.046722412, 0.01876831, -0.03149414, 0.0033683777, -0.03326416, 0.052124023, 0.05557251, 0.019744873, 0.028533936, 0.04840088, -0.00737381, 0.0055885315, 0.012870789, -0.016860962, -0.01902771, 0.023376465, 0.018081665, -0.025161743, -0.02619934, 0.0181427, 0.005630493, -0.025100708, 0.023635864, 0.013435364, -0.04663086, 0.000647068, -0.013015747, -0.05593872, 0.00655365, -0.010215759, 0.0036792755, -0.002204895, -0.048187256, -0.03152466, -0.028442383, 0.03967285, 0.0335083, 0.0019760132, 0.0011978149, -0.02368164, -0.020721436, -0.06378174, -0.008384705, 0.020584106, -0.007987976, -0.08898926, -0.0020561218, -0.0028762817, -0.017990112, -0.020187378, 0.044647217, 0.0020141602, -0.0013208389, 0.05368042, 0.0079956055, 0.010154724, 0.008995056, 0.026046753, -0.05319214, -0.026977539, 0.014450073, 0.016403198, -0.01083374, 0.009170532, -0.042175293, 0.016281128, 0.0024261475, -0.016418457, -0.017333984, -0.035583496, 0.02859497, 0.021697998, 0.003293991, -0.01651001, 0.010299683, -0.017211914, -0.0104522705, 0.0206604, 0.016204834, 0.035217285, -0.0043640137, -0.032684326, 0.0025863647, 0.0055007935, 0.015571594, -0.072509766, -0.023376465, 0.0074157715, 0.012748718, -0.027633667, 0.015670776, -0.026184082, 0.00039434433, 0.057678223, -0.012428284, -0.0463562, 0.029312134, 0.03540039, 0.043670654, 0.023101807]}, "B078VTH8B7": {"id": "B078VTH8B7", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.\n", "metadata": {"Name": "DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater", "Brand": "DOZYANT", "Description": "", "Features": "This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0052490234, 0.009017944, -0.020553589, -0.042510986, 0.0073242188, 0.005455017, -0.021209717, -0.004825592, 0.010131836, 0.007949829, 0.010314941, 0.03338623, 0.008720398, -0.041046143, 0.01234436, -0.0015592575, -0.0095825195, -0.030410767, -0.062438965, -0.04977417, 0.0034694672, -0.04977417, -0.059936523, 0.075927734, 0.038238525, 0.004688263, -0.014343262, 0.035949707, 0.020339966, 0.01209259, 0.020446777, -0.026947021, 0.02394104, 0.009208679, -0.043426514, -0.06021118, -0.039978027, -0.0011768341, -0.046173096, 0.014419556, -0.001619339, 0.013961792, -0.017150879, -0.012649536, -0.030685425, -0.041107178, -0.0067443848, -0.027709961, 0.0075035095, 0.016799927, 0.0051498413, -0.0004580021, 0.02166748, 0.016113281, -0.0055732727, -0.0036907196, -0.001156807, -0.059631348, 0.0070343018, 0.019836426, 0.017471313, 0.0029773712, 0.010986328, -0.009101868, -0.0011825562, 0.018920898, 0.053344727, 0.006099701, 0.03591919, -0.018325806, -0.036895752, 0.030334473, 0.02720642, -0.007881165, -0.045166016, -0.033172607, 0.033935547, -0.032714844, 0.017669678, -0.015274048, 0.010223389, -0.027038574, 0.008666992, -0.0017185211, 0.002380371, 0.002948761, -0.006690979, -0.014839172, -0.03314209, -0.031311035, -0.025344849, -0.011428833, -0.06286621, -0.0050086975, -0.010314941, -0.026977539, -0.045318604, -0.058044434, 0.003993988, 0.02394104, 0.003982544, -0.02923584, 0.025634766, -0.010696411, 0.022003174, 0.037261963, -0.017181396, -0.0070877075, 0.040863037, -0.0039901733, -0.0015478134, 0.049835205, -0.0042304993, -0.044281006, 0.014633179, 0.030151367, 0.0063171387, 0.034118652, 0.033050537, 0.0048980713, -0.035247803, -0.021591187, 0.0019369125, 1.2874603e-05, -0.0010890961, -0.015457153, -0.008460999, 0.02078247, -0.053619385, 0.02708435, -0.009155273, 0.004749298, 0.03857422, 0.07495117, 0.007904053, -0.010650635, 0.030853271, 0.021011353, -0.003282547, 0.0039711, 0.033843994, -0.030151367, -0.04034424, 0.026535034, -0.032348633, 0.028411865, 0.003704071, 0.0036506653, 0.0025901794, -0.046447754, -0.027053833, -0.0418396, 0.035583496, 0.007980347, -0.027923584, 0.00094890594, -0.003074646, -0.015113831, -0.0051651, -0.029327393, -0.025894165, -0.008720398, 0.011245728, -0.01965332, -0.013771057, 0.02204895, 0.001405716, -0.009376526, 0.024475098, 0.020874023, 0.0041618347, 0.027267456, 0.07507324, 0.026382446, -0.0053100586, -0.005344391, -0.020095825, 0.048736572, 0.06329346, -0.1340332, -0.08251953, -0.054840088, 0.08282471, -0.026489258, 0.0029850006, 0.010810852, 0.024276733, -0.008422852, -0.029052734, 0.008293152, 0.037872314, 0.062316895, 0.02053833, -0.050445557, 0.016036987, 0.007411957, 0.010108948, 0.019439697, 0.00217247, -0.020095825, -0.057891846, 0.018188477, -0.020645142, 0.04837036, 0.007865906, -0.011627197, -0.013015747, 0.015548706, -0.0008277893, 0.03945923, 0.0017051697, -0.014671326, 0.02041626, -0.053527832, -0.0063056946, 0.009429932, -0.016418457, -0.024978638, 0.004550934, -0.013763428, 0.046691895, -0.008674622, 0.018600464, 0.033111572, 0.018859863, -0.008140564, -0.019119263, -0.011268616, 0.0052986145, -0.003534317, 0.0132369995, 0.052368164, 0.09979248, 0.06945801, -0.013191223, 0.036895752, 0.085998535, 0.051940918, -0.046875, -0.023376465, 0.024719238, -0.05230713, -0.042999268, -0.012786865, -0.025939941, -0.08111572, -0.018432617, 0.022491455, -0.02293396, 0.041656494, 0.012832642, 0.023956299, 0.0121536255, 0.026504517, -0.0848999, 0.05029297, -0.0049324036, 0.042236328, -0.05935669, 0.0098724365, -0.01121521, 0.0071144104, 0.011932373, -0.00756073, 0.057250977, 0.01424408, 0.059631348, 0.029815674, -0.009147644, 0.012306213, -0.004878998, -0.038085938, -0.008178711, -0.01322937, -0.015686035, 0.030151367, -0.03668213, 0.022125244, 0.015731812, -0.003358841, 0.028182983, 0.016098022, 0.029937744, -0.005130768, 0.055725098, 0.042755127, -0.004917145, -0.009635925, 0.014022827, 0.004634857, 0.01777649, 0.041412354, 0.002603531, 0.03955078, -0.03466797, -0.0013961792, 0.09240723, 0.008232117, 0.0070610046, 0.011749268, 0.035980225, 0.052734375, -0.024765015, 0.020812988, -0.0017147064, -0.030456543, -0.03253174, 0.02822876, 0.008544922, -0.01448822, -0.041656494, 0.032165527, 0.022613525, 0.033203125, 0.015205383, 0.0039634705, 0.0034694672, 0.041046143, 0.048614502, 0.0519104, -0.02748108, -0.016571045, -0.012161255, -0.017288208, 0.008918762, 0.011978149, -0.028060913, 0.02027893, -0.016952515, -0.0044441223, 0.0052337646, -0.019622803, -0.002960205, -0.0079422, -0.0019741058, -0.0024776459, 0.013618469, -0.022903442, -0.01725769, -0.05267334, 0.01637268, -0.079711914, 0.0066337585, 0.02760315, -0.055358887, -0.0012454987, 0.037139893, 0.0032997131, 0.017288208, 0.017822266, -0.008720398, 0.0072250366, 0.023712158, 0.034210205, 0.03881836, -0.018798828, -0.04260254, 0.0069236755, 0.0007457733, -0.059448242, 0.027618408, -0.025115967, -0.043518066, -0.036071777, 0.0579834, -0.01399231, -0.041229248, -0.046203613, 0.006855011, 0.01259613, 0.034851074, -0.01637268, -0.034729004, -0.008666992, -0.0024719238, -0.031234741, 0.041381836, -0.028411865, 0.023345947, 0.019607544, 0.0027866364, 0.014877319, -0.022064209, -0.0045814514, -0.026611328, 0.041992188, 0.050689697, 0.021514893, 0.02168274, -0.04711914, 0.043121338, 0.08288574, -0.0070381165, -0.0036621094, -0.003004074, 0.009971619, 0.013198853, -0.054656982, -0.0056877136, -0.0340271, -0.03173828, -0.012687683, -0.030212402, -0.00029230118, 0.009773254, -0.066833496, 0.0068244934, -0.048095703, 0.021728516, 0.03161621, -0.019226074, 0.04147339, -0.031036377, 0.0357666, -0.028625488, 0.011795044, 0.013946533, -0.0029621124, -0.0027713776, 0.006465912, 0.0491333, -0.085876465, 0.039978027, 0.040161133, -0.02456665, -0.015411377, -0.0008172989, 0.028518677, -0.017654419, 0.018859863, 0.002243042, -0.015167236, -0.047790527, -0.031463623, -0.004211426, -0.022079468, 0.02003479, -0.044067383, 0.033843994, -0.010269165, -0.06549072, -0.023345947, -0.01499939, 0.04751587, -0.029754639, 0.017044067, -0.05593872, -0.07745361, -0.020965576, -0.05291748, 0.0061683655, 0.015335083, 0.041503906, 0.019210815, 0.014915466, 0.032165527, 0.017852783, 0.04336548, -0.0010700226, 0.022857666, 0.028656006, -0.017990112, -0.0020332336, 0.025909424, -0.01940918, -0.038482666, 0.009109497, 0.010307312, -0.002603531, -0.020401001, -0.020004272, 0.07836914, 0.0011110306, -0.008926392, 0.01398468, 0.011360168, 0.016967773, -0.01499939, 0.012680054, -0.018249512, -0.023071289, 0.0020313263, -0.10571289, 0.11541748, 0.040618896, -0.029754639, 0.06378174, 0.064819336, -0.019088745, 0.023895264, 0.031799316, -0.010932922, 0.008460999, 0.039489746, -0.026489258, -0.006401062, 0.01448822, -0.016677856, 0.025512695, 0.022064209, -0.06939697, 0.038360596, 0.020523071, -0.038909912, 0.009124756, 0.0027313232, 0.008049011, -0.0046958923, -0.0069007874, 0.016174316, -0.002023697, -0.029541016, 0.039001465, -0.022354126, 0.01007843, 0.029708862, -0.0069007874, -0.05404663, 0.020477295, 0.008895874, -0.0043258667, -0.023025513, 0.030578613, 0.045684814, -0.02166748, -0.0102005005, -0.007423401, -0.022033691, -0.055755615, 0.015899658, 0.037475586, 0.03387451, 0.018875122, -0.045684814, 0.013587952, 0.0038013458, -0.03817749, 0.032073975, 0.002910614, -0.052215576, -0.0066223145, 0.012802124, 0.002986908, -0.0075187683, -0.010604858, -0.06341553, -0.045288086, -0.02670288, -0.052337646, -0.018859863, 0.012413025, 0.014884949, -0.017044067, -0.020874023, -0.058380127, 0.001660347, -0.026489258, 0.0071640015, 0.009780884, 0.018753052, 0.02104187, 0.00061130524, -0.050811768, -0.0016107559, -0.019073486, -0.028564453, 0.08984375, 0.016189575, -0.033416748, -0.008598328, -0.0039901733, 0.019805908, 0.034332275, -0.029968262, -0.0043678284, -0.03665161, -0.010063171, 0.0082473755, 0.036895752, 0.06842041, 0.006252289, 0.02116394, -0.045928955, 0.002986908, -0.050109863, 0.019012451, 0.007255554, -0.001739502, -0.058013916, -0.015670776, 0.039245605, 0.008972168, 0.0069274902, -0.047454834, 0.01272583, 0.030883789, -0.039154053, -0.058807373, -0.03149414, -0.0023345947, 0.00617218, -0.021118164, -0.00019228458, -0.021774292, 0.028182983, -0.016281128, -0.030700684, 0.018203735, -9.572506e-05, -0.027160645, -0.015899658, 0.031707764, -0.023544312, 0.022521973, -0.02381897, -0.04006958, -0.060638428, 0.05279541, 0.064941406, -0.021377563, -0.0019397736, -0.0134887695, -0.04425049, -0.041656494, -0.0038852692, 0.020874023, -0.00793457, -0.030029297, -0.03717041, 0.020263672, -0.035980225, 0.0023841858, 0.0060539246, 0.0045661926, 0.016799927, -0.019805908, -4.041195e-05, -0.010940552, -0.027893066, 0.00050115585, -0.015960693, 0.021652222, -0.04800415, -0.00086069107, 0.029968262, -0.02432251, -0.017318726, -0.023971558, -0.017990112, 0.0015945435, -0.037322998, 0.009643555, -0.025360107, 0.01889038, 0.036193848, 0.008255005, 0.008354187, 0.032592773, -0.018066406, -0.013366699, -0.011070251, 0.0069503784, 0.009857178, -0.023223877, -0.0052719116, -0.0012655258, 0.0011396408, 0.06500244, -0.049194336, 0.052093506, 0.049804688, -0.03390503, 0.028656006, 0.015106201, -0.010971069, -0.06185913, 0.100097656, -0.021148682, 0.00030612946, -0.050079346, 0.0020484924, -0.012054443, 0.033416748, -9.88245e-05, -0.030639648, 0.014854431, -0.029815674, -0.0062561035, 0.026992798, -0.0005893707, -0.04916382, -0.047302246, 0.022705078, -0.06274414, -0.025009155, 0.03074646, -0.03366089, 0.010566711, 0.010757446, -0.017227173, 0.013092041, -0.00058698654, -0.052337646, -0.040618896, -0.011947632, -0.002286911, 0.01398468, -0.025421143, -0.023666382, -0.009643555, -0.03552246, 0.013633728, 0.02217102, 0.0071029663, -0.044128418, -0.033172607, -0.014556885, 0.025299072, 0.007408142, 0.028030396, -0.0045661926, -0.003856659, 0.0026817322, -0.019012451, 0.008262634, -0.038024902, -0.025299072, -0.0017881393, -0.005847931, -0.01109314, -0.01550293, 0.024169922, 0.018692017, -0.040039062, -0.018371582, -0.024475098, 0.053100586, -0.020965576, -0.06323242, 0.10107422, 0.0446167, 0.018188477, 0.0025234222, -0.040039062, -0.060058594, 0.023101807, 0.0017566681, -0.06878662, -0.036468506, -0.028411865, -0.007408142, 0.014526367, 0.0017547607, -0.02217102, 0.03543091, -0.015434265, -0.035949707, -0.01927185, 0.010658264, 0.0115737915, -0.025375366, 0.00844574, 0.0054092407, 0.026977539, -0.0042381287, 0.028533936, -0.07330322, -0.031188965, 0.0014438629, 0.03479004, -0.0023460388, -0.0023384094, -0.0017290115, 0.038635254, -0.03237915, 0.04147339, -0.023620605, 0.03265381, 0.0018463135, 0.029663086, -0.014419556, 0.08660889, -0.014587402, -0.013977051, -0.020263672, -0.02659607, -0.018371582, 0.03652954, -0.044799805, -0.007369995, 0.012260437, 0.055664062, -0.028747559, 0.012588501, 0.017105103, -0.021194458, -0.049621582, -0.026687622, -0.0045166016, -0.04196167, -0.002779007, -0.04208374, -0.009132385, -0.0024967194, -0.0206604, 0.03475952, -0.041290283, 0.036499023, -0.051940918, 0.018753052, -0.011634827, -0.01739502, 0.04168701, -0.038879395, 0.034851074, -0.05834961, -0.0007419586, -0.009567261, 0.027664185, 0.0026950836, -0.0029850006, 0.016906738, -0.0015525818, 0.025924683, 0.0043296814, 0.0030670166, 0.044128418, -0.060760498, 0.007820129, 0.025161743, 0.0014925003, 0.0028896332, -0.00868988, -0.008270264, -0.011177063, 0.04144287, 0.02293396, 0.03314209, -0.0116119385, 0.047058105, -0.03149414, -0.010803223, -0.01687622, -0.04385376, 0.040222168, 0.0034236908, -0.008026123, -0.0037288666, -0.04559326, -0.013542175, 0.04321289, 0.000600338, -0.040100098, 0.002216339, 0.03543091, 0.020996094, 0.01158905, -0.02619934, -0.06842041, -0.035247803, -0.00049495697, 0.002752304, 0.051940918, 0.011772156, 0.02468872, 0.038726807, 0.017730713, 0.01499939, -0.008224487, 0.013694763, 0.03942871, -0.016830444, -0.060516357, -0.06188965, -0.02949524, -0.032806396, -0.019805908, 0.04425049, -0.046417236, 0.06591797, 0.029968262, 0.068481445, 0.07928467, -0.0013017654, 0.04208374, 0.002773285, -0.0016422272, 0.05065918, 0.008651733, -0.027023315, -0.033447266, 0.014259338, 0.018157959, 0.008003235, -0.005870819, -0.019119263, -0.0045280457, 0.0011281967, -0.012641907, 0.01499939, 0.0021896362, -0.020339966, -0.015213013, -0.012275696, -0.011634827, -0.014282227, -0.038848877, -0.05267334, -0.055603027, -0.046661377, 0.058746338, -0.020523071, -0.0021800995, 0.021102905, -0.011161804, -0.034240723, -0.019119263, 0.023223877, 0.0181427, 0.041107178, -0.01751709, -0.0027561188, -0.0020542145, -0.02935791, -0.017868042, 0.032684326, -0.016296387, -0.029678345, 0.010009766, 0.01424408, 0.028457642, 0.024673462, 0.06652832, 0.03704834, 0.019699097, 0.001832962, -0.0146484375, -0.0035991669, -0.008056641, 0.019821167, 0.00016832352, -0.016555786, -0.018920898, 0.016067505, 0.000854969, 0.02067566, 0.017440796, 0.0022640228, -0.012420654, 0.008674622, -0.0075912476, -0.039154053, -0.00365448, 0.00091695786, 0.021255493, 0.008277893, -0.013298035, 0.023895264, 0.0031833649, -0.018630981, 0.07269287, 0.031341553, -0.008842468, -0.04055786, -0.07196045, -0.054534912, -0.008850098, 0.04711914, -0.004512787, -0.0657959, 0.014343262, -0.015205383, -0.027008057, -0.014793396, 0.0317688, -0.009429932, 0.012016296, 0.055236816, -0.0070152283, 0.012329102, -0.002368927, 0.0031795502, -0.022857666, -0.066467285, 0.064697266, 0.014129639, -0.02659607, -0.007575989, -0.06088257, -0.0044937134, -0.0047454834, -0.08343506, -0.021011353, -0.06402588, 0.05407715, 0.026138306, 0.01247406, -0.018341064, 0.030593872, -0.028335571, -0.025817871, 0.0073013306, 0.012336731, 0.010612488, -0.007106781, -0.009422302, -0.0024967194, 0.037261963, -0.009155273, -0.085998535, -0.026473999, 0.008277893, 0.0011510849, -0.0035591125, 0.013313293, -0.02798462, -0.0036697388, 0.023803711, 0.0024681091, -0.034088135, 0.018508911, 0.039031982, 0.027450562, 0.01626587]}, "B0098HR0PY": {"id": "B0098HR0PY", "original": "Brand: Weber\nName: Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required\nGrill dimensions: Lid Open \u2013 63\" H x 50\" W x 32\" D | Lid Closed \u2013 45.5\" H x 50\" W x 24\" D | Primary cooking area \u2013 360 square inches | Warming rack area \u2013 90 square inches | Total cooking area \u2013 450 square inches/20.4\u201d W x 17.5\u201d D | Weight \u2013 113.8\nHeavy-duty caster wheels for easily moving your grill on grass or a patio\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system\n", "metadata": {"Name": "Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black", "Brand": "Weber", "Description": "", "Features": "Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required\nGrill dimensions: Lid Open \u2013 63\" H x 50\" W x 32\" D | Lid Closed \u2013 45.5\" H x 50\" W x 24\" D | Primary cooking area \u2013 360 square inches | Warming rack area \u2013 90 square inches | Total cooking area \u2013 450 square inches/20.4\u201d W x 17.5\u201d D | Weight \u2013 113.8\nHeavy-duty caster wheels for easily moving your grill on grass or a patio\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022247314, -0.001657486, -0.04147339, -0.014427185, -0.00969696, -0.0055618286, -0.016540527, 0.016326904, -0.004676819, 0.004432678, -0.043426514, -0.005264282, 0.021728516, -0.0317688, 0.02029419, -0.033477783, 0.021224976, 0.011772156, 0.02178955, -0.011154175, 0.00920105, 0.007896423, -0.0020961761, 0.048217773, 0.06304932, -0.062072754, 0.010444641, -0.024124146, 0.048461914, -0.013198853, 0.027389526, 0.0028038025, 0.06085205, 0.0033397675, -0.046447754, 0.00843811, 0.0340271, -0.03237915, -0.009117126, 0.017059326, 0.041534424, -0.005130768, -0.009933472, 0.036376953, -0.025039673, -0.029769897, 0.024887085, -0.029449463, -0.013305664, 0.0012283325, -0.010047913, 0.013313293, 0.0063171387, -0.003255844, -0.013832092, -0.024978638, 0.06463623, -0.078430176, 0.014389038, -0.019622803, -0.008407593, 0.0012340546, 0.042755127, -0.004306793, -0.018066406, 0.033050537, 0.103027344, -0.029037476, -0.0075683594, -0.024032593, 0.009468079, 0.0069236755, 0.020889282, 0.032989502, -0.0055999756, -0.057800293, 0.006626129, -0.017669678, 0.04159546, 0.0287323, -0.0037155151, 0.012069702, -0.022323608, 0.00063848495, 0.005130768, 0.02394104, -0.02128601, -0.021087646, -0.0009012222, -0.0368042, -0.0043411255, -0.024810791, -0.054534912, 0.076538086, 0.0059165955, -0.009643555, -0.015472412, -0.05340576, 0.038513184, -0.008575439, 0.043762207, -0.05105591, 0.015686035, 0.014541626, -0.01335144, 0.017944336, -0.004016876, 0.001124382, 0.007789612, 0.012161255, -0.028366089, -0.01234436, -0.003545761, -0.010528564, -0.029724121, 0.019363403, -0.009094238, -0.007156372, -0.0020866394, -0.0011854172, -0.024368286, -0.028121948, 0.034729004, 0.036987305, 0.027526855, 0.034698486, -0.009002686, -0.006416321, -0.03768921, -0.008972168, -0.016418457, 0.024353027, 0.03857422, 0.056427002, 0.017684937, 0.006046295, 0.014923096, -0.020370483, 0.0134887695, -0.019348145, 0.011604309, -0.013328552, 0.0067329407, 0.003326416, -0.0004286766, 0.03564453, 0.03503418, -0.021621704, -0.026489258, -0.028503418, -0.024108887, 0.0062446594, 0.04562378, -0.0010099411, -0.085998535, 0.008834839, -0.042053223, 0.005302429, -0.0473938, -0.046691895, -0.05569458, 0.001115799, 0.0074272156, -0.038757324, -0.023040771, 0.009590149, 0.028656006, 0.005554199, 0.03314209, 0.050079346, 0.031280518, -0.029693604, 0.05569458, 0.0076942444, -0.026107788, -0.00554657, -0.024032593, 0.010604858, 0.05041504, -0.05630493, -0.037719727, -0.036956787, 0.06512451, 0.0009384155, 0.0035533905, -0.0059165955, 0.026138306, -0.020904541, -0.016204834, 0.0015220642, 0.027999878, 0.051971436, -0.006706238, -0.019866943, 0.024475098, 0.017303467, -0.044433594, 0.013839722, -0.00053453445, -0.034698486, 0.002614975, 0.015838623, -0.03866577, 0.003376007, -0.0028476715, -0.035217285, 0.018218994, 0.0018100739, 0.0075531006, 0.027679443, -0.011222839, 0.002752304, -0.0062065125, -0.021209717, 0.008392334, 0.023330688, -0.01991272, -0.0054893494, 0.0011510849, -0.0047950745, 0.035369873, -0.0050315857, 0.011619568, 0.030395508, 0.016693115, -0.010574341, -0.014427185, -0.00030469894, 0.02758789, -0.01763916, 0.027313232, 0.04046631, 0.10321045, 0.09063721, 0.011405945, 0.04159546, 0.055419922, -0.010627747, -0.038360596, -0.013084412, -0.005519867, -0.037994385, -0.05142212, 0.022644043, -0.024307251, 0.003004074, 0.008964539, 0.022872925, -0.017227173, -0.016723633, 0.023071289, -0.008483887, 0.05053711, 0.043792725, -0.013092041, 0.033325195, -0.026870728, -0.01171875, -0.0023422241, 0.042510986, -0.016204834, 0.023773193, 0.044677734, -0.013923645, 0.03173828, -0.004058838, 0.04171753, 0.031829834, -0.018569946, -0.01927185, 0.0095825195, 0.027328491, -0.007217407, -0.013877869, -0.028549194, 0.011024475, -0.028335571, 0.0211792, 0.009628296, -0.01411438, 0.010520935, 0.0044822693, 0.01676941, -0.0041389465, 0.033050537, 0.008453369, 0.015548706, -0.0049476624, 0.033721924, -0.005130768, 0.020324707, -0.0121154785, -0.026229858, 0.040740967, 0.008712769, -0.047546387, 0.08117676, 0.0067825317, 0.0023403168, -0.013137817, 0.05227661, 0.02734375, -0.04135132, 0.006626129, -0.003643036, -0.04144287, -0.008468628, 0.019363403, 0.0055236816, -0.06365967, 0.03326416, 0.044158936, 0.030838013, -0.054382324, 0.064086914, 0.02230835, 0.004901886, 0.039733887, 0.03729248, 0.03125, -0.0033473969, -0.0138168335, -0.03503418, -0.0067977905, -0.009590149, 0.012138367, 0.003944397, -0.0030231476, -0.027709961, -0.012413025, -0.028564453, -0.0569458, -0.03540039, 0.0010519028, -0.0045394897, 0.00623703, 0.017028809, 0.020385742, 0.0063056946, -0.051727295, 0.025390625, -0.020324707, -0.028045654, 0.022521973, -0.03289795, -0.03186035, 0.035705566, 0.01423645, 0.015533447, 0.0057373047, 0.0005106926, -0.02279663, -0.022827148, -0.04168701, -0.003332138, -0.034057617, -0.0024147034, -0.054016113, -0.021240234, -0.08105469, -0.00040102005, -0.024383545, -0.06726074, -0.00038313866, 0.07458496, -0.0031166077, -0.03010559, -0.033447266, -0.031921387, 0.00013566017, -0.0062408447, 0.009666443, -0.041748047, -0.032592773, -0.041900635, 0.022216797, 0.031707764, -0.029418945, 0.0004491806, 0.009254456, -0.005004883, 0.002828598, -0.018508911, -0.021148682, 0.01171875, 0.030975342, 0.042999268, 0.044036865, 0.013633728, -0.036834717, 0.017166138, 0.057006836, -0.008926392, -0.018493652, 0.046875, -0.007843018, 0.009689331, 0.045166016, -0.042816162, -0.022888184, -0.107421875, 0.017547607, 0.015838623, -0.0496521, -0.025344849, -0.041625977, -0.08685303, -0.042236328, 0.0012617111, 0.08404541, 0.008232117, -0.035247803, -0.011634827, -0.0015592575, 0.02456665, -0.0006041527, -0.007499695, -0.010398865, 0.008277893, -0.0037994385, 0.016082764, -0.02017212, 0.02293396, 0.03201294, -0.045166016, 0.036376953, -0.02230835, 0.034210205, -0.016586304, 0.03161621, 0.007972717, 0.004058838, -0.023910522, 0.016220093, -0.0022830963, 0.06463623, 0.014450073, -0.013092041, 0.040893555, -0.023101807, -0.010025024, -0.021697998, -0.00504303, 0.03277588, -0.0024280548, -0.013824463, -0.040527344, -0.030517578, 0.014770508, -0.0021953583, 0.013153076, -0.01637268, 0.00856781, 0.02420044, -0.032440186, 0.09661865, 0.015357971, 0.045654297, 0.017318726, -0.026000977, -0.008033752, -0.030456543, 0.010108948, 0.0044898987, 0.02267456, -0.048950195, 0.038024902, 0.026428223, -0.00258255, 0.012908936, 0.016433716, -0.00724411, 0.035186768, -0.003042221, -0.019073486, -0.011222839, 0.036224365, -0.014144897, -0.0040740967, -0.045959473, -0.033935547, -0.015167236, -0.0625, 0.13122559, 0.08087158, -0.02835083, 0.11645508, 0.09063721, -0.019744873, 0.048828125, 0.016967773, 0.00022995472, -0.024551392, 0.08074951, -0.048828125, 0.03665161, 0.010124207, -0.060180664, -0.0040397644, 0.0016698837, -0.044708252, 0.013702393, -0.010917664, -0.023880005, -0.04888916, 0.0035514832, 0.008026123, -0.007118225, 0.01928711, -0.011566162, -0.017684937, -0.019577026, 0.007205963, 0.042144775, -0.04650879, -0.024307251, -0.015434265, -0.0045814514, -0.037963867, 0.010498047, 0.010147095, 0.011749268, 0.014312744, 0.05505371, -0.031555176, 0.0028018951, -0.015380859, -0.028381348, -0.016677856, 0.005088806, 0.0037002563, 0.0058784485, -0.00623703, -0.0073890686, 0.028137207, 0.011177063, 0.0014648438, -0.029815674, -0.054107666, -0.03640747, 0.015777588, 0.02709961, -0.020126343, -0.025939941, -0.018493652, -0.02848816, -0.04168701, -0.032836914, -0.029708862, -0.050994873, 0.012084961, 0.0368042, -0.037384033, 0.018371582, -0.00093889236, -0.036956787, -0.047088623, -0.00053215027, -0.032562256, 0.05053711, 0.027923584, 0.04296875, -0.047454834, -0.030532837, -0.03503418, -0.012039185, 0.03564453, -0.0031089783, 0.02116394, -0.037322998, 0.012672424, -0.007675171, 0.08947754, 0.0025024414, 0.0118637085, -0.038208008, -0.029052734, 0.0035247803, 0.015975952, 0.0390625, 0.024398804, 0.018096924, -0.03955078, 0.010009766, -0.07104492, 0.011543274, 0.022720337, -0.030670166, -0.049682617, -0.013046265, 0.078308105, -0.0021247864, 0.01878357, -0.0012550354, -0.00025343895, -0.020492554, 0.009422302, -0.05831909, -0.00459671, -0.008522034, -0.02633667, 0.024734497, 0.0065612793, -0.013427734, 0.0044441223, 0.05090332, 0.021011353, -0.0016841888, 0.0019989014, 0.018188477, 0.0037384033, 0.016830444, -0.050750732, 0.014549255, -0.028198242, 0.010063171, -0.07208252, 0.09448242, 0.05001831, 0.022323608, 0.012359619, 0.0013008118, -0.008972168, -0.062316895, -0.017456055, -0.00083732605, -0.007736206, -0.030197144, -0.023803711, 0.011726379, -0.021652222, 0.0005283356, 0.018112183, 0.022003174, 0.04586792, -0.049835205, 0.007633209, 0.0058937073, -0.018493652, 0.0121154785, -0.00894928, 0.0104904175, -0.04058838, -0.029937744, 0.02293396, -0.03463745, -0.031555176, 0.0041770935, -0.008422852, 0.0149383545, -0.0079422, 0.00036525726, -0.05911255, 0.024032593, 0.03024292, 0.011512756, -0.0025730133, -9.483099e-05, -0.0056037903, -0.01701355, -0.0050239563, 0.029663086, -0.028961182, 0.013916016, 0.0670166, -0.036590576, -0.020980835, 0.026611328, -0.036132812, 0.042877197, 0.0107421875, -0.080566406, 0.052856445, 0.0064315796, 0.0021743774, -0.06719971, 0.11462402, -0.02418518, 0.013305664, -0.07513428, 0.016571045, 0.05343628, 0.058441162, -0.028121948, -0.034362793, 0.03213501, -0.023666382, -0.007911682, -0.02331543, 0.056427002, -0.046722412, 0.013595581, 0.0004119873, 0.043029785, -0.031829834, -0.009994507, -0.050720215, 0.0069007874, 0.016708374, 0.0034503937, 0.017410278, -0.007083893, -0.046325684, -0.060791016, -0.015731812, 0.02909851, 0.010818481, -0.004673004, -0.0079574585, 0.0025901794, 0.013557434, -0.0029392242, 0.032409668, 0.011230469, -0.01789856, -0.0345459, -0.018981934, -0.00042176247, -0.027282715, 0.037322998, -0.022918701, 0.0059890747, -0.0038490295, 0.0017662048, 0.018737793, -0.010803223, -0.064208984, 0.0065193176, -0.0105896, -0.012786865, -0.030166626, -0.038513184, 0.056274414, -0.049682617, -0.050598145, -0.0335083, 0.056030273, -0.0340271, -0.0206604, 0.095825195, 0.05697632, 0.014930725, 0.03387451, 0.0011053085, -0.03930664, 0.0028762817, 0.017089844, -0.0769043, -0.023330688, -0.016189575, 0.010345459, -0.01864624, 0.013015747, 0.008834839, 0.038513184, 0.012374878, 0.008026123, 0.0027484894, 0.008178711, -0.024368286, -0.024658203, -0.0021152496, -0.02557373, 0.015281677, -0.025405884, 0.0040893555, -0.009643555, 0.002023697, 0.012481689, 0.041931152, 0.024414062, -0.021270752, 0.0061454773, 0.04812622, -0.026535034, 0.059173584, -0.01374054, -0.016174316, -0.015235901, 0.058013916, 0.020477295, 0.044403076, -0.061828613, -0.03463745, -0.03491211, 0.053985596, 0.008956909, 0.048706055, -0.02670288, -0.002872467, 0.0071525574, 0.017303467, 0.023712158, 0.023361206, 0.022491455, -0.020553589, -0.025344849, 0.015289307, 0.009437561, -0.03186035, -0.023864746, -0.04336548, 0.005695343, 0.038635254, 0.015106201, 0.028213501, -0.037475586, 0.0692749, 0.029647827, -0.036224365, 0.021148682, -0.018005371, -0.01576233, -0.0033550262, -0.029815674, 0.03717041, 0.0017223358, -0.0051956177, 0.0016002655, 0.038604736, -0.02053833, 0.012077332, 0.003458023, 0.04650879, -0.045135498, 0.041625977, 0.018829346, -0.06185913, -0.021759033, 0.028793335, 0.02003479, 0.0075798035, -0.07305908, -0.019515991, -0.039886475, 0.0013666153, 0.03274536, 0.0007967949, 0.036010742, 0.04043579, -0.019241333, -0.0042533875, -0.021194458, -0.041229248, 0.045288086, -0.0051879883, -0.014160156, -0.003627777, -0.03942871, 0.05328369, -0.004875183, 0.0070724487, 0.048339844, -0.043151855, 0.0030212402, 0.010650635, -0.0028076172, -0.033325195, -0.043762207, 0.017944336, 0.03729248, -0.023925781, -0.00957489, -0.009613037, 0.0025291443, -0.028457642, -0.070495605, 0.015548706, -0.058380127, -0.00088357925, 0.0158844, 0.060333252, -0.030151367, -0.039245605, -0.024520874, 0.005302429, -0.025848389, 0.060180664, -0.027648926, 0.049743652, 0.02961731, 0.030792236, 0.05291748, -0.002620697, 0.014167786, 0.0127334595, -0.0018968582, 1.1742115e-05, -0.018966675, -0.0030574799, -0.033966064, -0.014785767, -0.011070251, -0.0041542053, -0.01663208, 0.07513428, -0.019546509, -0.0029754639, 0.006412506, -0.019577026, 0.00566864, 0.0109939575, 0.015205383, -0.006263733, -0.017120361, -0.0042419434, -0.026931763, -0.023040771, 0.006717682, -0.047851562, -0.00049066544, 0.008934021, -0.042419434, -0.03286743, 0.0051651, 0.021377563, -0.05682373, -0.02078247, -0.010726929, 0.03555298, -0.011367798, 0.043792725, -0.040252686, -0.00046277046, 0.012031555, 0.0009484291, -0.002904892, -0.042541504, -0.028335571, 0.009727478, 0.013145447, -0.011367798, 0.00447464, 0.06640625, 0.006023407, -0.010444641, 0.009422302, -0.021530151, -0.02507019, 0.031951904, 0.009567261, -0.0052948, 0.00843811, 0.038726807, -0.019927979, 0.03111267, 0.022354126, 0.012573242, -0.027633667, -0.008491516, -0.030700684, -0.050079346, -0.0023269653, -0.012496948, 0.019348145, 0.00982666, -0.036010742, 0.0041122437, 0.016220093, 0.009605408, 0.026519775, -0.011459351, 0.037841797, -0.03164673, -0.03390503, -0.08203125, -0.015266418, 0.043304443, 0.027954102, -0.011604309, 0.01626587, -0.00092840195, -0.030517578, 0.012550354, 0.0026893616, -0.009300232, -0.025817871, 0.032470703, 0.0008234978, -0.037475586, 0.016967773, 0.0007443428, -0.016098022, -0.057037354, 0.0131073, 0.02835083, -0.027008057, -0.0006685257, -0.023422241, 0.014045715, 0.0003554821, -0.02368164, -0.037597656, -0.05618286, -0.005367279, 0.015823364, -0.02835083, 0.027679443, -0.008262634, 0.0031795502, -0.041534424, 0.0063552856, 0.033050537, 0.010185242, -0.03756714, 0.017593384, 0.034240723, 0.022888184, -0.020339966, -0.09448242, -0.051513672, 0.040496826, 0.022033691, -0.016357422, 0.04949951, -0.019714355, 0.012367249, 0.026153564, -0.020080566, -0.008293152, 0.015136719, 0.013839722, -0.0052604675, 0.018218994]}, "B07H636NBG": {"id": "B07H636NBG", "original": "Brand: Weber\nName: Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "metadata": {"Name": "Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper", "Brand": "Weber", "Description": "", "Features": "Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03366089, -0.008216858, -0.042755127, 0.010643005, -0.027908325, -0.019958496, -0.0043296814, 0.008514404, -0.00258255, 0.021270752, -0.0335083, 0.02168274, 0.030151367, -0.022232056, 0.0206604, 0.0013475418, 0.03265381, 0.040039062, 0.05368042, -0.011016846, 0.019042969, 0.018692017, 0.0018997192, 0.08880615, 0.052459717, -0.08996582, 0.00082683563, 0.007701874, 0.031677246, 0.0066947937, 0.024993896, 0.010925293, 0.017120361, 0.022842407, -0.028045654, -0.04925537, 0.064208984, -0.026992798, -0.009483337, 0.014091492, 0.035003662, -0.015213013, -0.0037956238, -0.0067825317, -0.012588501, -0.051635742, 0.061035156, -0.012901306, 0.026306152, 0.034484863, -0.018844604, 0.01524353, -0.022445679, -0.035095215, -0.008415222, -0.031555176, 0.03152466, -0.024932861, 0.0043792725, 0.002981186, 0.003232956, 0.02468872, 0.018112183, -0.0032539368, -0.034606934, 0.019592285, 0.08642578, -0.037078857, 0.017730713, -0.030349731, 0.015716553, 0.034698486, 0.027816772, 0.022735596, -0.033477783, -0.05328369, 0.03326416, -0.014717102, 0.039001465, 0.0052490234, -0.022277832, -0.0423584, -0.0030994415, 0.008338928, -0.0013856888, 0.014961243, -0.029144287, -0.0062332153, -0.00033330917, -0.023071289, 0.0043678284, -0.015541077, -0.03640747, 0.0473938, 0.0112838745, -0.034576416, -0.03274536, -0.0725708, 0.052642822, -0.00868988, 0.029785156, -0.042175293, 0.00274086, 0.011512756, 0.013618469, 0.02633667, -0.02368164, 0.0070343018, 0.04248047, 0.0056877136, -0.020401001, -0.01828003, 0.004470825, -0.027694702, -0.010124207, -0.0044441223, -0.015670776, 0.028030396, 0.02217102, -0.008117676, 0.0020122528, -0.0056114197, 0.026535034, 0.041534424, 0.017593384, 0.039031982, -0.030181885, -0.012298584, -0.04876709, -0.0032691956, -0.046661377, 0.0335083, 0.09686279, 0.05328369, 0.010353088, -0.0038414001, 0.025970459, 0.030044556, 0.018829346, -0.018707275, 0.001496315, -0.005744934, 0.019592285, 0.0009212494, -0.025543213, 0.03842163, 0.021621704, -0.004802704, -0.034576416, -0.063964844, 0.015007019, -0.04824829, 0.0647583, 0.010719299, -0.08380127, 0.019973755, 0.00033783913, 0.00018835068, -0.08996582, -0.062683105, -0.050323486, -0.015701294, 0.00749588, -0.028747559, -0.023010254, 0.038116455, 0.018569946, 0.008354187, 0.02168274, 0.058898926, -0.0018749237, -0.05480957, 0.024414062, 0.020584106, -0.020401001, 0.027755737, -0.009391785, 0.008239746, 0.046844482, -0.02859497, -0.028747559, -0.048828125, 0.059570312, -0.01146698, -0.0184021, 0.04135132, 0.025115967, 0.012527466, -0.015174866, -0.010231018, 0.06567383, 0.064697266, -0.004722595, 0.0140686035, -0.0049858093, 0.010681152, -0.049682617, 0.03756714, -0.0231781, -0.036193848, 0.0059928894, 0.006752014, -0.022949219, -0.004470825, 0.00096845627, -0.030075073, 0.013366699, 0.0011959076, 0.042297363, 0.027923584, -0.029785156, -0.043518066, 0.023010254, -0.011711121, -0.030731201, -0.016220093, -0.03060913, 0.0053100586, 0.009262085, 0.013969421, 0.026245117, -0.015899658, 0.0025596619, -0.005706787, 0.014152527, 0.023086548, -0.027450562, 0.017456055, 0.04107666, 0.002670288, 0.025848389, 0.0039978027, 0.096069336, 0.08013916, -0.002614975, 0.044555664, 0.078430176, 0.04244995, -0.044555664, -0.025726318, 0.006340027, -0.014122009, -0.04827881, -0.006980896, -0.017990112, -0.01663208, 0.0018587112, 0.010177612, -0.02897644, -0.016784668, 0.060516357, 0.004512787, 0.04333496, 0.046203613, -0.030227661, 0.033172607, -0.02053833, -0.013343811, -0.019836426, 0.035858154, -0.007171631, 0.03640747, 0.017715454, 0.0057907104, 0.037109375, 0.004558563, 0.043182373, 0.024093628, -0.03942871, -0.013618469, 0.02772522, 0.051757812, 0.0049362183, -0.019836426, -0.036895752, -0.008323669, -0.021438599, 0.02897644, 0.008522034, -0.030090332, 0.008888245, 0.047088623, 0.0018320084, -0.010215759, 0.00793457, 0.025222778, -0.0031986237, -0.023620605, -0.0134887695, 0.049560547, 0.053466797, 0.0011177063, -0.018203735, 0.0050239563, -0.0071372986, 0.0042419434, 0.066711426, 0.0001308918, 0.0021591187, -0.008506775, 0.06185913, 0.031402588, -0.040649414, 0.004764557, -0.00730896, -0.016311646, 0.004436493, 0.0029067993, -0.0047836304, -0.029251099, -0.011070251, 0.02558899, 0.008872986, -0.008392334, 0.015396118, -0.00762558, 0.0023479462, 0.027069092, 0.03137207, 0.026809692, -0.042785645, -0.020019531, -0.03781128, -0.04336548, -0.009735107, 0.051208496, -0.05142212, 0.01184082, 0.0041007996, -0.018325806, -0.041290283, -0.052215576, -0.019973755, -0.008575439, -0.008125305, -0.012130737, 0.016723633, 0.014968872, 0.0053138733, -0.025238037, 0.038146973, -0.001909256, -0.014060974, 0.010536194, -0.059295654, -0.020370483, 0.024093628, 0.007335663, -0.0078125, -0.020446777, 0.03866577, -0.02861023, -0.012130737, -0.023513794, -0.02293396, -0.044708252, 0.0211792, -0.051086426, -0.06726074, -0.08734131, -0.011497498, 0.00881958, -0.060180664, -0.011543274, 0.054840088, -0.035949707, -0.011016846, -0.042388916, -0.04171753, -0.0046844482, 0.007896423, -0.035888672, -0.07080078, -0.014572144, -0.020828247, 0.051330566, 0.026443481, -0.041229248, -0.030075073, -0.00056505203, -0.002193451, 0.022766113, -0.052764893, -0.012420654, 0.0024986267, 0.0317688, 0.050567627, 0.042175293, 0.0124435425, -0.04067993, 0.0010147095, 0.060791016, 0.004211426, -0.031341553, -0.011047363, -0.0011472702, 0.0064888, 0.0010347366, 0.024520874, -0.026519775, -0.07897949, 0.03338623, 0.018035889, -0.011581421, -0.03729248, -0.014213562, -0.06713867, -0.025894165, -0.0072746277, 0.06512451, -0.022979736, -0.0064353943, -0.035858154, 0.015220642, 0.008705139, 0.021530151, -0.021560669, -0.015655518, 0.025604248, 0.008834839, 0.012107849, -0.02230835, 0.021743774, 0.043884277, -0.01776123, 0.0036506653, -0.02507019, 0.01171875, -0.05697632, 0.016143799, -0.01134491, 0.0007367134, -0.04837036, -0.022735596, 0.013435364, 0.04397583, 0.01826477, 0.0072898865, 0.0063056946, -0.0024719238, -0.0231781, -0.0038528442, 0.0038070679, 0.03225708, 0.020004272, -0.03253174, -0.02079773, -0.045440674, -0.015342712, -0.044067383, 0.0008125305, 0.018325806, 0.05987549, 0.028015137, 0.019577026, 0.07067871, -0.021255493, 0.05609131, -0.016555786, -0.037506104, 0.0034599304, -0.051086426, 0.035125732, 0.009147644, -0.0022296906, -0.028549194, 0.06213379, 0.03668213, 0.040222168, -0.030014038, 0.014656067, 0.012512207, 1.8894672e-05, 0.009208679, -0.04232788, 0.020339966, 0.051971436, -0.005756378, 0.0041656494, -0.04144287, -0.025527954, -0.013458252, -0.06951904, 0.10522461, 0.057495117, -0.029785156, 0.07763672, 0.068237305, -0.05178833, 0.049926758, 0.040771484, -0.0040283203, -0.025360107, 0.048797607, -0.08306885, 0.011543274, 0.019622803, -0.07104492, 0.020904541, 0.014144897, -0.060546875, 0.005592346, -0.005897522, -0.044067383, -0.028503418, -0.00034689903, 0.0011816025, 0.030151367, 0.01737976, -0.037322998, 0.0005502701, -0.015579224, 0.00541687, 0.030456543, -0.039794922, -0.016998291, -0.018539429, -0.031433105, -0.028671265, 0.033325195, 0.034729004, -0.012794495, 0.011711121, 0.015945435, 0.020187378, 0.013557434, -0.02861023, -0.027801514, -0.014587402, -0.009346008, 0.026443481, 0.008529663, 0.023880005, 0.017700195, -0.0070762634, 0.031082153, 0.0016241074, -0.012130737, -0.030685425, -0.01878357, -0.0030651093, 0.014343262, -0.0030059814, -0.01852417, -0.009361267, -0.03604126, -0.026931763, -0.0050964355, -0.010971069, -0.016708374, 0.012008667, 0.024612427, -0.042053223, 0.0060768127, -0.022094727, -0.053009033, -0.057647705, 0.02722168, -0.0051956177, 0.0059127808, 0.0062026978, 0.03277588, -0.04321289, -0.009353638, -0.0073394775, -0.013183594, 0.055908203, 0.009681702, 0.06036377, -0.025787354, 0.011619568, -0.019439697, 0.067993164, -0.014526367, 0.022979736, -0.061431885, -0.006023407, 0.02468872, 0.011077881, 0.010475159, 0.006629944, 0.0002770424, -0.018936157, 0.02128601, -0.047607422, -0.006412506, 0.03463745, -0.007572174, -0.029769897, -0.029373169, 0.034210205, -0.011100769, 0.010498047, 0.020584106, 0.0056877136, 0.01398468, 0.026763916, -0.06719971, -0.024658203, -0.010215759, -0.0016946793, 0.008453369, -0.00010508299, 0.0012493134, 0.026809692, 0.041412354, 0.010688782, 0.07366943, -0.02418518, -0.017532349, 0.01525116, 0.022949219, -0.0236969, -0.0036468506, -0.03479004, 0.01777649, -0.053619385, 0.113220215, 0.03765869, -0.02456665, -0.0016508102, 0.011306763, -0.018722534, -0.07159424, -0.010421753, 0.0028152466, -0.025543213, -0.021865845, -0.025482178, 0.008872986, -0.026046753, -0.0079956055, -0.015625, -0.013122559, -0.017044067, -0.019729614, 0.009376526, -0.033843994, 0.023254395, 0.016921997, -0.014572144, 0.03375244, -0.0036563873, 0.014915466, 0.0390625, -0.014671326, 0.00048184395, -0.008392334, -0.0005097389, -0.01033783, 0.006214142, 0.007987976, -0.02406311, 0.01979065, 0.015083313, 0.019805908, 0.02267456, -0.0073242188, 0.013710022, -0.015350342, -0.0024719238, 0.04055786, -0.057861328, 0.0079956055, 0.0087509155, -0.035614014, -0.02772522, 0.021499634, -0.0597229, 0.04159546, 0.026885986, -0.07122803, 0.03970337, 0.0012350082, 0.00045752525, -0.03567505, 0.06121826, -0.02545166, -0.0036811829, -0.04144287, 0.015396118, 0.04220581, 0.055847168, -0.010345459, -0.032287598, 0.008865356, -0.018447876, 0.008087158, -0.019332886, 0.04953003, -0.04019165, 0.0028305054, 0.0017566681, -0.0022258759, -0.03955078, -0.01878357, -0.07330322, -0.002204895, 0.029159546, 0.02784729, -0.011222839, -0.011383057, -0.022003174, -0.058502197, -0.014839172, 0.0287323, 0.016967773, -0.011604309, -0.018707275, -0.010795593, -0.001376152, 0.02406311, 0.008270264, 0.005908966, -0.04336548, -0.030532837, -0.012771606, 0.008522034, -0.010948181, 0.050109863, -0.03479004, 0.017044067, 0.026184082, -0.007381439, 0.019958496, 0.03604126, -0.058746338, -0.0115356445, -0.0049438477, -0.0015573502, -0.032409668, -0.018325806, 0.03829956, -0.038909912, -0.036254883, -0.014213562, 0.0637207, -0.042663574, -0.026657104, 0.071899414, 0.080200195, 0.0015878677, 0.04067993, -0.015716553, -0.03970337, -0.027374268, 0.0014972687, -0.08062744, -0.03778076, -0.033416748, 0.004146576, -0.016952515, 0.012428284, -0.005012512, 0.048706055, 0.028396606, 0.011482239, -0.043701172, -0.0058135986, -0.010795593, -0.06036377, 0.011962891, -0.011444092, 0.006351471, 0.0032253265, -0.011665344, -0.038360596, 0.025512695, 0.01574707, 0.028305054, 0.00079488754, -0.002532959, -0.006401062, 0.039794922, -0.01826477, 0.03717041, 0.005203247, -0.008201599, 0.0047035217, 0.024398804, -0.019973755, 0.051208496, -0.040496826, -0.006389618, -0.026550293, 0.020965576, 0.035705566, 0.033935547, -0.055541992, -0.01651001, 0.05722046, 0.050750732, 0.04586792, 0.010238647, 0.03881836, 0.007904053, 0.009552002, -0.0050354004, -0.02293396, -0.013290405, 0.0040245056, -0.035858154, -0.021774292, 0.0082092285, -0.010848999, 0.023864746, -0.04083252, 0.058898926, 0.025741577, -0.046539307, 0.02532959, -0.018554688, 0.00073575974, 0.015090942, -0.026245117, 0.04598999, 0.014450073, -0.0043525696, 0.0007748604, -0.013511658, -0.006111145, 0.030395508, 0.0036907196, 0.026901245, -0.02722168, 0.040496826, -0.022766113, -0.03387451, -0.009140015, 0.020263672, 0.029159546, 0.017990112, -0.058013916, -0.025909424, -0.011260986, 0.008262634, 0.023757935, 0.024093628, 0.025558472, 0.012542725, -0.006668091, 0.009986877, -0.021606445, -0.009399414, -0.015045166, 0.021453857, 0.030197144, -0.01386261, -0.018585205, 0.039031982, 0.009498596, -0.026992798, 0.044067383, -0.053497314, 0.002828598, -0.017990112, 0.03366089, -0.026123047, -0.06210327, -0.006515503, 0.040527344, -0.033599854, 0.01235199, -0.0072402954, 0.008903503, -0.0002772808, -0.037384033, 0.0075645447, -0.045715332, 0.018508911, 0.038146973, 0.025100708, -0.06414795, 0.0071144104, -0.011993408, -0.010276794, -0.0045318604, 0.08276367, -0.0057296753, 0.021408081, 0.06689453, 0.060638428, 0.08496094, 0.011253357, 0.034576416, 0.018005371, -0.005077362, 0.025161743, 0.020507812, -0.009613037, 0.023208618, 0.01411438, 0.021194458, 0.04888916, 0.046325684, 0.008728027, 0.037231445, -0.01235199, -0.028076172, 0.0030288696, 0.050567627, -0.05029297, 0.018661499, -0.031311035, -0.0541687, -0.0013742447, -0.03475952, -0.019821167, 0.011489868, -0.051818848, -0.022399902, -0.008491516, -0.044799805, -0.0121154785, -0.001791954, 0.03656006, -0.06982422, 0.0028858185, -0.038238525, 0.031707764, -0.007457733, 0.03390503, -0.023040771, -0.012245178, 0.0049819946, 0.010757446, -0.019607544, -0.041107178, 0.00983429, -0.025009155, -0.008972168, -0.018600464, 0.018218994, 0.06100464, 0.027496338, -0.015106201, 0.04675293, -0.021636963, -0.041992188, 0.04257202, 0.028884888, -0.019882202, 0.033111572, 0.03781128, -0.0048179626, 0.002407074, 0.047729492, -0.019561768, -0.07757568, -0.03100586, -0.04244995, -0.012382507, -0.008773804, -0.0154800415, 0.011413574, 0.015014648, -0.036102295, 0.00983429, 0.023086548, -0.011985779, 0.016921997, -0.027130127, 0.038513184, -0.020889282, -0.04119873, -0.049682617, -0.022628784, 0.024139404, 0.04534912, 0.0004210472, -0.0024261475, 0.0010757446, -0.013534546, -0.008033752, -0.014846802, 0.02041626, -0.014526367, 0.033477783, -0.03982544, -0.02859497, 0.023010254, 0.0042686462, 0.00011187792, -0.037200928, 0.036499023, 0.014343262, -0.030914307, -0.016159058, -0.023391724, -0.006122589, -0.008232117, -0.034698486, -0.02128601, -0.041748047, -0.003419876, 0.016937256, -0.016326904, -0.0054359436, -0.00522995, -0.012519836, -0.051208496, 0.0068893433, 0.03982544, 0.011947632, -0.054992676, 0.011856079, 0.03540039, 0.046539307, 0.0005426407, -0.093566895, -0.043273926, 0.042510986, -0.009254456, -0.014190674, 0.007205963, -0.024490356, 0.017669678, 0.025527954, -0.0078086853, -0.0055389404, -0.009841919, 0.013130188, -0.007083893, 0.009208679]}, "B07H6193C8": {"id": "B07H6193C8", "original": "Brand: Weber\nName: Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\nThe built-in fuel gauge lets you see how much fuel is left in the tank\n", "metadata": {"Name": "Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\nThe built-in fuel gauge lets you see how much fuel is left in the tank", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015289307, 0.0017623901, -0.045776367, -0.008110046, -0.016357422, -0.01499176, -0.008071899, 0.0042915344, -0.005203247, 0.015602112, -0.023361206, 0.03540039, 0.01550293, -0.027496338, 0.031433105, 0.0076828003, 0.03152466, 0.015525818, 0.025665283, -0.021194458, 0.0062332153, -0.004306793, 0.004486084, 0.09436035, 0.047210693, -0.07757568, 0.03286743, -0.004673004, 0.037109375, 0.0060272217, 0.03111267, -0.0038719177, 0.023132324, 0.009033203, -0.023345947, -0.029434204, 0.040893555, -0.017303467, -0.009109497, 0.017150879, 0.037200928, -0.0079574585, -0.02658081, 0.011329651, -0.03189087, -0.05078125, 0.048980713, -0.009468079, 0.039398193, 0.049438477, -0.0231781, 0.01878357, -0.031707764, -0.017471313, -0.01096344, -0.031402588, 0.034576416, -0.035095215, 0.00504303, -0.01361084, 0.008842468, 0.016082764, 0.024230957, 0.007801056, -0.03060913, 0.020050049, 0.08111572, -0.038482666, 0.015098572, -0.018539429, 0.017440796, 0.030090332, 0.01701355, 0.02909851, -0.009552002, -0.040496826, 0.005279541, -0.0048599243, 0.04699707, 0.027008057, 0.0025100708, -0.030181885, -0.0074539185, 0.027572632, 0.006259918, 0.045806885, -0.025283813, -0.027267456, -0.0028762817, -0.03503418, -0.0046577454, -0.01133728, -0.02746582, 0.03744507, -0.0035305023, -0.027191162, -0.029449463, -0.08728027, 0.05895996, -0.0096206665, 0.043823242, -0.040222168, 0.0138168335, 0.014579773, 0.0074005127, 0.03439331, -0.024414062, -0.0030879974, 0.03274536, 0.0032787323, -0.010787964, -0.03366089, 0.00082206726, -0.023239136, -0.018051147, 0.01777649, -0.009544373, 0.010574341, 0.014343262, -0.008361816, -0.010551453, -0.011856079, 0.028289795, 0.02027893, 0.0030231476, 0.016616821, -0.027160645, -0.014724731, -0.048095703, 0.0007009506, -0.025756836, 0.023468018, 0.07165527, 0.07470703, 0.010673523, -0.0046043396, 0.015304565, 0.016235352, 0.008323669, -0.016159058, -0.001288414, -0.017929077, 0.0009455681, 0.00017619133, 0.0022792816, 0.040039062, 0.02520752, -0.011520386, -0.019226074, -0.064575195, 0.021957397, -0.027770996, 0.0703125, 0.009262085, -0.08276367, 0.0045051575, -0.01020813, -0.007095337, -0.06915283, -0.06555176, -0.022338867, -0.029647827, -0.009735107, -0.006313324, -0.03189087, 0.05441284, 0.018539429, 0.014350891, 0.025466919, 0.0519104, -0.006175995, -0.05633545, 0.041809082, 0.015266418, -0.02331543, 0.033477783, -0.013175964, 0.031234741, 0.03933716, -0.046020508, -0.040008545, -0.05496216, 0.07141113, -0.019592285, 0.0011701584, 0.009536743, 0.040893555, -0.00020682812, -0.032714844, 0.0042037964, 0.06561279, 0.06213379, -0.0031852722, 0.0016698837, 0.028839111, -0.00415802, -0.06329346, 0.0039520264, -0.00894165, -0.03274536, -0.0012207031, 0.0027103424, -0.012931824, -0.017074585, -0.01272583, -0.02960205, 0.00141716, 0.0184021, 0.011764526, 0.008033752, -0.020431519, -0.05142212, 0.037963867, -0.04989624, -0.019302368, 0.007827759, -0.03744507, -0.0054244995, 0.014389038, -0.006919861, 0.03817749, -0.0014095306, 0.012939453, -0.0063552856, -0.0017290115, 0.024856567, -0.030212402, 0.02494812, 0.030960083, 0.008918762, 0.025924683, -0.018218994, 0.10028076, 0.10015869, -0.0026550293, 0.026031494, 0.07635498, 0.027999878, -0.022201538, -0.014183044, 0.011474609, -0.023895264, -0.05041504, -0.016326904, -0.02720642, -0.017852783, -0.0016345978, 0.0050086975, -0.024917603, 0.0012493134, 0.04345703, 0.023239136, 0.033416748, 0.020385742, -0.019500732, 0.04058838, -0.012313843, -0.009483337, -0.00045394897, 0.025299072, -0.0020923615, 0.06512451, 0.022491455, 0.016479492, 0.04837036, 0.0026397705, 0.041259766, 0.017913818, -0.032287598, 0.0090408325, 0.017059326, -0.0065460205, -0.00674057, -0.029525757, -0.034942627, 0.01449585, -0.02809143, 0.03918457, 0.010055542, -0.023452759, 0.006401062, 0.023757935, 0.019134521, -0.005493164, 0.037719727, 0.014259338, 0.01222229, -0.025543213, -0.039367676, 0.0234375, 0.056610107, -0.026367188, -0.025024414, -0.026916504, -0.008300781, -0.01398468, 0.091796875, -0.005836487, 0.003107071, -0.0028038025, 0.051757812, 0.026245117, -0.030044556, 0.0054855347, -0.0017309189, -0.03074646, 0.007888794, 0.011108398, 0.000320673, -0.03781128, 0.0058288574, 0.042999268, 0.026931763, -0.0013217926, 0.031951904, -0.008666992, 0.0051345825, 0.050048828, 0.031951904, 0.034576416, -0.021484375, -0.00598526, -0.032989502, -0.022567749, -0.0029716492, 0.034057617, -0.035125732, 0.005290985, -0.010696411, -0.010978699, -0.046905518, -0.048675537, -0.02003479, 0.005947113, -0.011619568, -0.0003066063, 0.02015686, 0.011528015, 0.0056648254, -0.024993896, 0.046539307, 0.006275177, -0.0135269165, 0.017822266, -0.041412354, -0.033203125, 0.029754639, 0.0077171326, 0.00308609, -0.0104599, 0.026367188, -0.0289917, -0.012992859, -0.018615723, -0.0057258606, -0.05670166, 0.011070251, -0.036315918, -0.06567383, -0.08605957, -0.013092041, -0.0058631897, -0.06756592, -0.01436615, 0.06335449, -0.02748108, -0.018035889, -0.042663574, -0.022109985, 0.015533447, 0.01473999, 0.014732361, -0.06524658, -0.032287598, -0.045318604, 0.024810791, 0.040924072, -0.03137207, -0.009849548, 0.014007568, -0.011413574, 0.016342163, -0.03768921, -0.009094238, -0.0015687943, 0.022888184, 0.03186035, 0.0231781, 0.022354126, -0.031585693, 0.008140564, 0.044647217, 0.019195557, -0.02407837, -0.014884949, -0.016433716, 0.02268982, 0.02558899, 0.0030460358, -0.015327454, -0.060302734, 0.032714844, 0.022628784, -0.01763916, -0.03765869, -0.014984131, -0.05545044, -0.027008057, -0.007537842, 0.07006836, -0.009628296, 0.005718231, -0.020187378, 0.03378296, 0.018341064, 0.004928589, -0.013008118, -0.011039734, 0.0010280609, 0.008895874, 0.025009155, -0.024734497, 0.02798462, 0.038238525, -0.026947021, 0.016357422, -0.038360596, 0.01802063, -0.05569458, 0.026794434, -0.010643005, -0.0008363724, -0.035888672, -0.018066406, 0.024749756, 0.05718994, 0.007972717, 0.020217896, -0.0053215027, -0.0045051575, -0.019180298, -0.010734558, -0.0046310425, 0.052703857, -0.0026798248, -0.005683899, -0.03036499, -0.052124023, -0.009819031, -0.0579834, 0.0026168823, 0.008880615, 0.051696777, 0.028884888, 0.005016327, 0.08679199, 0.0068130493, 0.053741455, -0.013793945, -0.013290405, -0.006996155, -0.046691895, 0.041412354, 0.002910614, -0.013092041, -0.02973938, 0.06774902, 0.036499023, 0.017211914, -0.009010315, 0.015838623, 0.01499176, 1.1086464e-05, 0.0005583763, -0.04888916, -0.010299683, 0.08428955, -0.0018577576, 0.032318115, -0.065979004, -0.015594482, -0.013839722, -0.06756592, 0.101379395, 0.06274414, -0.026306152, 0.08087158, 0.07897949, -0.029953003, 0.035949707, 0.04345703, -0.018310547, -0.017303467, 0.049072266, -0.07104492, 0.0049858093, 0.01586914, -0.07873535, 0.010070801, -0.0064926147, -0.03451538, 0.009689331, 0.0078048706, -0.027557373, -0.0072517395, 0.0060920715, -0.018005371, 0.00076150894, 0.0060195923, -0.012916565, -0.02204895, -0.02645874, 0.015220642, 0.031921387, -0.03656006, -0.039245605, -0.004798889, -0.023742676, -0.03729248, 0.03353882, 0.026565552, -0.023040771, 0.015281677, 0.035095215, -0.0062026978, 0.0152282715, -0.032073975, -0.039794922, -0.018432617, 0.017150879, 0.027175903, -0.0011558533, 0.015266418, -0.013870239, 0.021392822, 0.030822754, -0.0024967194, -0.006038666, -0.056152344, -0.035369873, -0.02507019, -0.0109939575, 0.0027618408, -0.03274536, -0.020874023, -0.04296875, -0.0446167, -0.0059509277, -0.05227661, -0.009155273, 0.010139465, 0.020233154, -0.037994385, 0.00217247, -0.02545166, -0.038330078, -0.05078125, 0.027267456, -0.0065956116, 0.0035037994, -0.014640808, 0.032562256, -0.043273926, 0.00023639202, -0.044769287, -0.0038337708, 0.037475586, 0.01701355, 0.056915283, -0.026809692, -0.00022399426, -0.021072388, 0.07116699, -0.0060195923, 0.017425537, -0.052246094, -0.013046265, 0.014961243, 0.019561768, 0.015037537, -0.009521484, 0.010536194, -0.0067977905, 0.0099487305, -0.07067871, -0.004096985, 0.04724121, -0.014427185, -0.03994751, -0.01852417, 0.05142212, -0.004688263, -0.0010662079, -0.0049934387, 0.022232056, 0.030654907, 0.018325806, -0.055389404, -0.012992859, 0.0038795471, 0.010032654, 0.012435913, 0.001789093, 0.007019043, -0.0118637085, 0.041168213, 0.03024292, 0.04168701, -0.009185791, -0.0034332275, 0.024398804, 0.027664185, -0.0546875, 0.001502037, -0.058776855, 0.017868042, -0.0579834, 0.09448242, 0.040740967, -0.0035171509, 0.008934021, 0.022949219, -0.012336731, -0.06542969, -0.008682251, -0.029937744, -0.015434265, -0.02861023, -0.02571106, 0.015281677, -0.014457703, 0.001909256, -0.008010864, -0.01033783, -0.0013866425, -0.016571045, -0.0004696846, -0.023376465, 0.011024475, 0.01360321, -0.013031006, 0.03036499, -0.021881104, -0.009918213, 0.026290894, -0.017547607, -0.022369385, -0.012908936, 0.0035247803, -0.014457703, -4.3332577e-05, 0.0056762695, -0.030349731, 0.023971558, 0.020690918, 0.023620605, 0.0024604797, -0.007671356, 0.008148193, -0.026748657, -0.026138306, 0.020858765, -0.05432129, 0.010765076, 0.018737793, -0.040771484, -0.027328491, 0.020812988, -0.05593872, 0.04522705, 0.023727417, -0.08081055, 0.023788452, 0.009529114, 0.013771057, -0.057037354, 0.10321045, -0.022262573, 0.0061302185, -0.074157715, 0.006729126, 0.01713562, 0.05102539, 0.0066871643, -0.03564453, 0.020126343, -0.023620605, -0.016098022, -0.014038086, 0.05593872, -0.027786255, 0.011665344, -0.0003681183, 0.002773285, -0.049835205, -0.020874023, -0.066467285, -0.0004682541, 0.03869629, 0.022705078, 0.0028800964, -0.012451172, -0.045959473, -0.06323242, -0.030960083, 0.031280518, 0.020935059, -0.010467529, -0.028457642, -0.010437012, -0.007896423, 0.008895874, -0.013206482, 0.004096985, -0.055114746, -0.011199951, -0.014015198, 0.0048561096, -0.0046310425, 0.05432129, -0.023391724, -0.009346008, -0.0012655258, 0.009376526, 0.00957489, 0.026779175, -0.05895996, 0.010154724, -0.020187378, -0.019317627, -0.043548584, -0.022918701, 0.056121826, -0.05670166, -0.055419922, -0.020706177, 0.054840088, -0.02319336, -0.010467529, 0.0602417, 0.047058105, -0.002412796, 0.043029785, -0.0054244995, -0.051818848, -0.0011310577, 0.0019369125, -0.090148926, -0.046905518, -0.0418396, -0.01663208, -0.0028266907, -0.012367249, -0.0051345825, 0.0340271, 0.02470398, 0.009017944, -0.016571045, -0.015617371, -0.0027217865, -0.024932861, 0.009017944, 0.009033203, 0.014816284, -0.018814087, 0.0058021545, -0.032409668, 0.011886597, 0.01777649, 0.025650024, 0.0008916855, -0.023101807, -0.002456665, 0.04046631, -0.0030841827, 0.0519104, 0.0012111664, -0.01927185, -0.0024681091, 0.04269409, 0.0037403107, 0.06549072, -0.037628174, -0.023620605, -0.03390503, 0.013381958, 0.025970459, 0.04510498, -0.05731201, -0.0033779144, 0.048950195, 0.045013428, 0.044006348, 0.02520752, 0.035095215, -0.014762878, 0.00013518333, 0.005065918, -0.011566162, -0.032470703, -0.011947632, -0.048034668, -0.009880066, 0.013710022, -0.006679535, 0.034484863, -0.045715332, 0.05368042, 0.024230957, -0.030853271, 0.02482605, -0.022033691, 0.007911682, 0.029922485, 0.014259338, 0.050994873, 0.017486572, -0.00016140938, 0.0055732727, -0.012084961, -0.008323669, 0.029373169, -0.009750366, 0.034210205, -0.039001465, 0.045440674, -0.01991272, -0.0524292, -0.013389587, 0.022888184, 0.021011353, 0.01499939, -0.0836792, -0.026412964, -0.027679443, 0.00048685074, 0.013122559, 0.020706177, 0.039093018, 0.01739502, 0.00356102, 0.014434814, -0.011817932, 0.005142212, -0.031799316, 0.021881104, 0.02998352, -0.014205933, -0.035614014, 0.053131104, 0.0069465637, -0.010108948, 0.05480957, -0.03805542, 0.0045318604, -0.017715454, 0.021942139, -0.039733887, -0.052581787, 0.003528595, 0.031707764, -0.048614502, -0.021759033, 0.0015220642, 0.020050049, -0.015419006, -0.049987793, 0.005039215, -0.05718994, -0.0021877289, 0.025680542, 0.056884766, -0.068115234, -0.009933472, -0.021011353, -0.012001038, -0.0077438354, 0.08483887, -0.018295288, 0.022369385, 0.039489746, 0.06201172, 0.07757568, 0.011260986, 0.036346436, 0.0031223297, -0.018859863, 0.04232788, -0.012832642, -0.015640259, 0.011199951, 0.015541077, 0.010215759, 0.046295166, 0.019195557, 0.01600647, 0.04724121, -0.010093689, -0.027770996, -0.008255005, 0.042022705, -0.046661377, 0.0574646, -0.038330078, -0.03527832, -0.0072288513, -0.047210693, -0.037017822, 0.0057258606, -0.059936523, -0.012611389, -0.015563965, -0.042816162, -0.007980347, 0.0051116943, 0.0211792, -0.045166016, -0.0062789917, -0.009292603, 0.022155762, 0.0071029663, 0.037475586, -0.011390686, -0.037750244, -0.011260986, 0.020462036, 0.002313614, -0.037506104, 0.00919342, 0.0017814636, 0.020553589, -0.007820129, 0.012954712, 0.053863525, 0.020523071, -0.012664795, 0.02218628, -0.0021705627, -0.035614014, 0.034362793, 0.015136719, -0.002916336, 0.032440186, 0.030914307, -0.015701294, 0.029769897, 0.027008057, -0.0036258698, -0.03845215, -0.02633667, -0.049560547, -0.03250122, -0.0024547577, -0.024719238, 0.027694702, 0.020889282, -0.036071777, 0.02848816, 0.025466919, -0.004043579, 0.01473999, -0.014389038, 0.044281006, -0.0206604, -0.03363037, -0.07635498, -0.021453857, 0.039093018, 0.047424316, -0.0055160522, -0.0035648346, -0.016525269, -0.008888245, -0.013671875, -0.019454956, 0.0029392242, -0.016235352, 0.009239197, -0.010269165, -0.027786255, 0.011291504, -0.0053863525, -0.020645142, -0.043914795, 0.035858154, 0.021469116, -0.028961182, -0.005065918, -0.026000977, -0.004878998, -0.0011777878, -0.03704834, -0.013671875, -0.025131226, -0.0022697449, 0.00737381, -0.0022678375, 0.009933472, 0.014923096, -0.015914917, -0.04360962, 0.01789856, 0.032043457, 0.03262329, -0.0423584, 0.02835083, 0.041900635, 0.03390503, -0.0011672974, -0.111328125, -0.029876709, 0.028945923, -0.02029419, -0.007522583, 0.010696411, -0.0413208, 0.018066406, 0.024032593, -0.0062217712, 0.0070228577, -0.0057792664, -0.024856567, -0.02017212, 0.008872986]}, "B08GSDFS67": {"id": "B08GSDFS67", "original": "Brand: AVAWING\nName: AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover\nDescription: AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42\"x20\"x25\" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction\nFeatures: \ud83d\udd25Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience.\n\ud83d\udd25High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control.\n\ud83d\udd25Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame.\n\ud83d\udd25Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.\n", "metadata": {"Name": "AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover", "Brand": "AVAWING", "Description": "AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42\"x20\"x25\" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction", "Features": "\ud83d\udd25Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience.\n\ud83d\udd25High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control.\n\ud83d\udd25Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame.\n\ud83d\udd25Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004924774, 0.03201294, -0.06524658, -0.031585693, 0.019165039, -0.011894226, -0.0012350082, 0.016799927, -0.026824951, -0.023071289, -0.06402588, 0.043670654, -0.08520508, -0.0022697449, 0.016021729, -0.08972168, 0.0256958, 0.024597168, 0.023880005, -0.01776123, -0.0025691986, -0.00365448, -0.0074539185, 0.08276367, -0.020431519, 0.0023765564, 0.057403564, -0.037322998, 0.02255249, -0.004600525, 0.00447464, -0.0038700104, 0.046325684, 0.019210815, -0.048065186, 0.005470276, -0.016571045, 0.0069007874, -0.015617371, 0.033599854, 0.020248413, -0.0074157715, -0.059814453, 0.017181396, -0.057525635, -0.024459839, 0.001127243, -0.0018539429, -0.042144775, 0.054840088, -0.015655518, -0.016036987, -0.017303467, 0.04055786, 0.015426636, -0.019088745, 0.040771484, -0.041229248, 0.011169434, -0.028656006, -0.020126343, 0.017913818, 0.029449463, 0.010826111, -0.047973633, 0.045562744, 0.067993164, -0.024490356, -0.002401352, -0.06951904, -0.013305664, 0.014099121, -0.006679535, 0.01638794, -0.031585693, -0.004272461, -0.010612488, -0.015151978, 0.029525757, 0.0362854, -0.010147095, 0.024856567, 0.013961792, -0.024047852, 0.009864807, -0.0076446533, -0.02116394, -0.014884949, -0.006942749, -0.06317139, -0.009475708, -0.04949951, -0.04208374, 0.04135132, 0.0020771027, -0.031219482, -0.042907715, -0.09503174, 0.053771973, 0.01977539, 0.0061302185, -0.034057617, 0.010269165, 0.017318726, -0.007637024, 0.07159424, 0.012924194, 0.044891357, 0.00046038628, -0.012489319, 0.008293152, -0.05496216, -0.017791748, -0.034118652, -0.008163452, 0.039123535, -0.00579834, -0.029174805, -0.006340027, -0.03050232, -0.039886475, -0.014427185, -0.02911377, 0.039520264, 0.029144287, 0.032073975, 0.029541016, 0.01612854, -0.0029907227, 0.030029297, 0.010665894, -0.009674072, -0.027542114, 0.03466797, -0.017944336, -0.018920898, 0.053955078, -0.049560547, 0.02293396, -0.024658203, 0.02281189, 4.172325e-05, 0.00308609, 0.007259369, -0.05606079, 0.016021729, 0.018096924, -0.01008606, -0.022720337, -0.021377563, -0.079589844, 0.017227173, 0.014915466, 0.02848816, -0.0031852722, -0.024124146, 0.04510498, -0.04296875, -0.01625061, -0.060791016, -0.011505127, -0.0009021759, 0.03173828, 0.0062408447, 0.010627747, -0.004787445, -0.02319336, 0.010520935, 0.012275696, 0.068847656, -0.026901245, 0.034362793, -0.01890564, 0.0068244934, 0.00187397, -0.035949707, -0.012397766, 0.064697266, 0.07067871, -0.08746338, -0.053131104, -0.05380249, 0.12646484, -0.037841797, -0.0015506744, 0.0046043396, -0.012062073, -0.046447754, 0.033355713, -0.012313843, -0.013916016, 0.029327393, -0.002412796, -0.0037078857, 0.023086548, -0.023956299, -0.04196167, -0.014091492, -0.009803772, 0.0051231384, 0.01184845, -0.014030457, 0.010864258, 0.0236969, 0.03189087, -0.017532349, 0.017364502, -0.012832642, 0.03765869, 0.035980225, -0.011352539, -0.008995056, -0.0008215904, -0.009101868, -0.011817932, 0.002336502, -0.016677856, 0.02810669, 0.0015211105, 0.026824951, 0.028137207, -0.03012085, 0.020721436, -0.0047836304, 0.0014629364, -0.031341553, -0.022720337, -0.02406311, 0.028030396, -0.023284912, 0.05545044, 0.046325684, 0.07055664, 0.064086914, -0.0011606216, 0.053375244, 0.06298828, 0.03829956, -0.029815674, -0.028808594, 0.020736694, -0.07745361, -0.031433105, 0.027282715, -0.018005371, -0.03302002, 0.0045051575, 0.017486572, -5.978346e-05, 0.028930664, 0.06262207, 0.0013723373, 0.0074768066, 0.01676941, -0.034454346, 0.012969971, -0.059295654, 0.0054130554, -0.0030059814, 0.0044403076, -0.008834839, 0.010894775, 0.050445557, -0.03225708, -0.01776123, -0.0018930435, 0.023117065, 0.02470398, -0.0052375793, -0.03060913, 0.03050232, 0.05303955, -0.016464233, -0.015380859, -0.007888794, -0.0013418198, -0.028945923, 0.035705566, -0.038330078, -0.028213501, -0.0045661926, -0.014152527, 0.0025081635, -0.0072135925, 0.048980713, 0.041992188, 0.008979797, -0.011062622, -0.009101868, -0.052612305, -0.0118255615, 0.027053833, -0.026473999, 0.04473877, -0.037139893, -0.035827637, 0.019561768, -0.018753052, 0.026870728, -0.0057754517, -0.012710571, 0.054626465, 0.0051841736, 0.009086609, 0.013259888, 0.006385803, -0.023757935, 0.0748291, 0.038208008, -0.025527954, -0.013473511, -0.0004079342, 0.01448822, 0.058532715, -0.0079193115, -0.016647339, -0.01423645, 0.0524292, 0.03829956, 0.021957397, -0.0027942657, 0.008735657, -0.01574707, -0.027938843, 0.01739502, -0.00023722649, -0.051483154, -0.017593384, -0.0524292, 0.0135269165, 0.08355713, -0.0005078316, 0.03326416, -0.0121154785, 0.011993408, -0.015853882, -0.005176544, 0.07836914, -0.0079956055, -0.058776855, -0.022323608, 0.00027394295, -0.0118255615, 0.0014829636, -0.05770874, -0.06506348, 0.05404663, -0.009757996, -0.00844574, -0.015281677, 0.056427002, -0.0013990402, -0.0066070557, -0.013664246, 0.0072364807, 0.015487671, 0.007858276, -0.0096206665, -0.0058898926, -0.048187256, -0.004081726, 0.0048675537, -0.022262573, -0.036621094, 0.0018939972, -0.011489868, -0.02999878, -0.0017900467, -0.012199402, 0.017074585, 0.06652832, 0.020446777, -0.07232666, -0.05718994, -0.079589844, -0.030883789, 0.054229736, -0.030227661, -0.0115356445, 0.018981934, 0.0017604828, 0.038848877, -0.012931824, 0.042388916, 0.04559326, -0.0046310425, 0.023864746, 0.043548584, 0.04537964, 0.0032730103, 0.03668213, 0.013458252, -0.053253174, -0.04248047, 0.032806396, 0.026351929, -0.014961243, -0.012390137, -0.016189575, -0.038879395, -0.028701782, 0.010482788, -0.0010528564, -0.020599365, -0.00015985966, -0.050567627, -0.022399902, -0.02998352, 0.014129639, 0.028701782, -9.9778175e-05, -0.014274597, -0.022003174, 0.0029239655, -0.019500732, -0.0050086975, 0.0262146, -0.002494812, -0.023757935, -0.024917603, 0.060546875, -0.050231934, 0.020187378, 0.006000519, -0.022857666, -0.027664185, 0.0037765503, 0.010551453, 0.024932861, 0.049346924, -0.016296387, 0.0006761551, -0.0025939941, 0.012161255, -0.019210815, 0.0026397705, -0.004005432, -0.037261963, 0.021347046, -0.04598999, 0.00028514862, 0.021362305, 0.008651733, 0.038726807, 0.006248474, -0.023727417, 0.013221741, -0.019332886, -0.030639648, -0.045837402, -0.027648926, 0.019699097, -0.031280518, 0.020462036, 0.0060539246, 0.04788208, 0.044311523, 0.034362793, -0.003835678, -0.010520935, -0.011405945, -0.026260376, 0.025634766, 0.0025558472, 0.022628784, -0.011405945, -0.0051994324, 0.011955261, -0.015167236, 0.006038666, 0.017150879, 0.0047683716, 0.034973145, 0.011940002, -0.018005371, 0.02267456, 0.030532837, -0.004005432, -0.049102783, -0.025299072, -0.046569824, -0.016098022, -0.015899658, 0.091552734, 0.08392334, -0.03186035, 0.105041504, 0.07098389, -0.007507324, 0.03668213, 0.035186768, -0.0028591156, -0.0131073, 0.07635498, -0.025772095, 0.0049743652, 0.00055933, 0.025650024, 0.010314941, -0.016143799, -0.038970947, -0.0017175674, -0.015655518, -0.032287598, -0.04623413, -0.010398865, 0.017700195, -0.030166626, 0.012046814, -0.016296387, -0.030654907, -0.037353516, -0.0076904297, 0.00018191338, -0.022598267, -0.022125244, -0.008888245, 0.010353088, -0.039367676, -0.0025615692, 0.0026569366, -0.008659363, 0.047943115, 0.03387451, -0.0060043335, 0.0023937225, -0.00089645386, -0.0016078949, -0.028320312, 0.013320923, -0.0019283295, 0.021972656, -0.00034809113, -0.009033203, 0.030181885, 0.0075416565, -0.005077362, -0.00856781, -0.036468506, -0.040496826, 0.0064697266, 0.026123047, 0.007549286, -0.023391724, 0.019638062, -0.04058838, -0.016464233, -0.01448822, -0.02935791, 0.01928711, -0.054382324, -0.056610107, -0.052703857, -0.028060913, -0.013008118, -0.021621704, -0.044433594, 0.018203735, 0.022323608, 0.01586914, 0.006111145, 0.018600464, -0.06286621, 0.0057029724, -0.044891357, 0.0030021667, 0.010978699, -0.005619049, -0.016021729, -0.0015306473, -0.018859863, -0.009788513, 0.022415161, -0.018478394, -0.017074585, -0.031707764, -0.0055236816, -0.015617371, 0.041656494, 0.052642822, -0.01234436, 0.035949707, -0.024398804, -0.055358887, -0.051879883, -0.00806427, 0.012138367, -0.026733398, -0.039245605, -0.02178955, 0.047180176, 0.005874634, 0.015701294, -0.04714966, 0.014579773, 0.02859497, -0.033203125, -0.09509277, -0.11114502, 0.0020198822, -0.0012893677, 0.0068473816, -0.0011587143, -0.007408142, 0.036224365, 0.018554688, 0.04348755, -0.0062713623, -0.0037269592, 0.0049552917, -0.020980835, -0.0018835068, -0.0154953, 0.010536194, -0.029830933, 0.0065994263, -0.08856201, 0.06915283, 0.01737976, 0.0063705444, -0.016693115, -0.03930664, -0.0368042, -0.0881958, 0.001996994, -0.044769287, -0.020339966, 0.0019073486, 0.0001642704, -0.021453857, 0.0019311905, -0.0071907043, -0.014183044, -0.0008172989, 0.024398804, -0.013534546, -0.010635376, -0.0066833496, -0.017578125, -0.020629883, 0.02142334, -0.008331299, 0.008415222, -0.011497498, -0.03427124, -0.026916504, -0.00969696, 0.0051841736, -0.03817749, -0.00064468384, -0.022613525, 0.004398346, -0.027938843, 0.015129089, 0.013725281, 0.0011920929, -0.01058197, 0.019210815, 0.0009560585, -0.03677368, -0.037322998, 0.0053863525, 0.036224365, -0.0368042, 0.015068054, 0.010375977, -0.013671875, 0.031555176, -0.02330017, 0.01977539, 0.025299072, -0.043518066, -0.0012655258, 0.03225708, 0.020553589, -0.056030273, 0.047821045, -0.010757446, -0.053009033, -0.029159546, 0.02909851, 0.041015625, -0.010147095, -0.00995636, -0.009719849, 0.064208984, -0.052520752, -0.040100098, 0.030288696, 0.00018572807, -0.026184082, -0.023895264, 0.027740479, -0.03338623, 0.005191803, 0.044158936, -0.019943237, 0.021087646, 0.012687683, -0.016479492, 0.028320312, 0.0071868896, -0.03100586, -0.011299133, 0.0099105835, -0.028411865, -0.03829956, -0.052703857, 0.008354187, 0.01184082, -0.04901123, -0.009567261, -0.0012493134, 0.011474609, -0.03491211, -0.06072998, -0.0546875, 0.016845703, 0.0045814514, 0.03781128, -0.05545044, 0.0069007874, 0.021377563, -0.009712219, 0.033203125, -0.0061683655, -0.050598145, -0.028503418, 0.018157959, 0.01725769, -0.013122559, -0.068237305, 0.05114746, -0.036193848, -0.028701782, -0.0541687, 0.017990112, -0.00023782253, -0.017333984, 0.04888916, 0.02571106, -0.00793457, 0.019378662, -0.015113831, -0.03463745, 0.0008172989, -0.0025138855, -0.07537842, 0.0011072159, -0.037750244, 0.030960083, -0.014503479, -0.024856567, -0.0073127747, 0.04006958, -0.015640259, -0.06762695, 0.002796173, -0.005466461, 0.023208618, -0.009056091, -0.0040016174, 0.002828598, 0.016937256, -0.035980225, 0.01234436, 0.02708435, 0.0178833, 0.016647339, 0.0054397583, 0.008514404, 0.0051612854, -0.00067424774, -0.0054130554, 0.0025806427, 0.008270264, 0.009254456, -0.057800293, 0.0018415451, 0.012161255, 0.032073975, 0.0028705597, -0.0077590942, 0.0068588257, -0.03186035, 0.015548706, 0.018539429, 0.035369873, -0.03869629, 0.022781372, 0.015151978, 0.030761719, -0.00020623207, -0.0024642944, 0.030960083, -0.03543091, -0.08862305, -0.005630493, -0.00051546097, -0.041137695, -0.007255554, -0.040130615, 0.009117126, 0.018493652, -0.013282776, 0.0435791, -0.0143966675, 0.047790527, -0.009292603, 0.053009033, 0.0006990433, 0.008705139, -0.0015554428, -0.010063171, 0.020324707, 0.015014648, 0.020370483, -0.012969971, -0.00053834915, -0.00065898895, 6.54459e-05, 0.03955078, 0.028930664, 0.015472412, 0.0057792664, 0.013618469, 0.03866577, -0.053588867, 0.0031394958, -0.039245605, -0.008102417, -0.009216309, -0.025863647, -0.039245605, 0.00945282, 0.04510498, -0.04373169, 0.078063965, -0.048217773, -2.3186207e-05, 0.008049011, 0.0084991455, -0.043182373, -0.029159546, 0.05053711, -0.031799316, -0.007507324, -0.0012731552, 0.00024461746, -0.018371582, 0.056549072, -0.040527344, -0.00806427, -0.022872925, 0.019805908, -0.032928467, 0.011184692, -0.034698486, 0.006000519, 0.0075263977, -0.022140503, 0.024551392, 0.010505676, 0.032226562, 0.037353516, 0.02796936, 0.014198303, 0.030441284, -0.02911377, 0.051849365, 0.028213501, -0.034698486, -0.014450073, -0.038085938, -0.014419556, -0.002532959, -0.005844116, -0.013824463, 0.019042969, 0.016555786, -0.01260376, -0.010482788, 0.032836914, -0.02406311, 0.026397705, -0.008239746, 0.017959595, 0.008850098, 0.018325806, -0.009971619, -0.011123657, 0.0072135925, -0.012123108, 0.020080566, 0.019470215, 0.031921387, 0.0028934479, 0.023361206, -0.00995636, -0.01499939, -0.0023117065, -0.017425537, 0.039886475, -0.01727295, -0.0023536682, -0.037963867, -0.064086914, -0.027267456, 0.025482178, -0.06750488, -0.0001757145, 0.013206482, 0.0013399124, -0.007183075, -0.013328552, 0.022979736, 0.00053691864, 0.0036964417, 0.03704834, 0.02784729, 0.013031006, 0.09069824, -0.039093018, -0.04421997, -0.018066406, -0.026824951, 0.01777649, 0.010925293, -0.01977539, 0.032928467, 0.030899048, 0.0025157928, 0.0071754456, 0.029159546, 0.008934021, -0.01890564, 0.023712158, -0.04623413, -0.045318604, 0.06317139, 0.020523071, -0.024627686, -0.013404846, 0.02508545, 0.011947632, 0.066833496, 0.0050621033, 0.03213501, -0.08428955, -0.028060913, -0.07232666, 0.03390503, -0.012123108, -0.014976501, 0.036987305, -0.0071487427, -0.04043579, 0.02760315, 0.039764404, 0.026901245, 0.059814453, 0.0067749023, -0.0036792755, -0.023605347, -0.04006958, -0.01890564, -0.009742737, 0.0063323975, -0.049713135, -0.04724121, 0.019454956, -0.014389038, -0.008522034, -0.023391724, 0.03555298, -0.038726807, 0.013420105, 0.013046265, 0.02078247, -0.004875183, -0.011390686, 0.00907135, -0.043670654, -0.022766113, 0.006778717, 0.05230713, -0.037261963, -0.014350891, -0.020355225, 0.02822876, 0.0009889603, -0.045654297, -0.026321411, -0.05706787, 0.0146865845, 0.035125732, -0.021438599, 0.016937256, -0.0026626587, -0.009216309, -0.038909912, -0.0006995201, 0.018508911, -0.020584106, -0.06008911, 0.068115234, 0.03265381, 0.07006836, -0.022644043, -0.048706055, -0.060760498, 0.057525635, -0.0024719238, -0.022445679, 0.03466797, -0.029449463, 0.0020484924, 0.03652954, -0.024093628, -0.015701294, 0.0022830963, 0.070373535, 0.006702423, 0.008544922]}, "B07QGL9CPQ": {"id": "B07QGL9CPQ", "original": "Brand: PANTIN\nName: Pantin (Propane Gas) 13\" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU\nDescription: Pantin PCWR-D13 compact single burner 13\" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual \u201cL\u201d shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.\nFeatures: 16 guage one piece stainless steel stove top extended to front and two sides with forming technology.\nPropane Gas 13\" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat).\n100% stainless steel and heavy gauge reinforced steel angle chassis.\nHeavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability.\nCast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16\"W x 18\"D x 30\"H; We provide curbside delivery only.\n", "metadata": {"Name": "Pantin (Propane Gas) 13\" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU", "Brand": "PANTIN", "Description": "Pantin PCWR-D13 compact single burner 13\" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual \u201cL\u201d shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.", "Features": "16 guage one piece stainless steel stove top extended to front and two sides with forming technology.\nPropane Gas 13\" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat).\n100% stainless steel and heavy gauge reinforced steel angle chassis.\nHeavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability.\nCast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16\"W x 18\"D x 30\"H; We provide curbside delivery only.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01576233, 0.018310547, -0.030090332, -0.019454956, 0.003025055, 0.012298584, -0.01852417, -0.004989624, 0.006134033, 0.0062408447, -0.0009241104, -0.006942749, 0.017868042, -0.040985107, 0.008483887, 0.007472992, 0.020614624, -0.0073928833, 0.0105896, -0.023147583, 0.033081055, -0.007896423, -0.000787735, 0.043182373, 0.037841797, -0.027755737, -0.06542969, 0.0015974045, 0.031021118, 0.020812988, 0.015029907, -0.011672974, 0.041992188, 0.0047035217, -0.03479004, -0.040405273, 0.020980835, -0.018829346, -0.037017822, 0.040618896, -0.007160187, 0.007408142, 0.04849243, 0.024627686, -0.017150879, 0.0031394958, -0.0061836243, -0.030349731, 0.0090789795, -0.02279663, -0.01020813, 0.005580902, 0.00969696, -0.020324707, -0.023956299, -0.0054855347, 0.042053223, -0.041534424, 0.0020656586, -0.02029419, -0.0043411255, 0.01789856, 0.04248047, 0.027008057, -0.053955078, -0.003545761, 0.017196655, -0.0009713173, 0.021209717, -0.053009033, -0.018081665, 0.023635864, 0.022964478, 0.012786865, -0.02116394, -0.017074585, 0.045043945, 0.02305603, 0.019821167, 0.0043754578, -0.0236969, 0.05432129, -0.0055503845, -0.04043579, -0.024917603, -0.06524658, -0.01828003, -0.0065307617, -0.020004272, -0.014457703, -0.0009560585, -0.008728027, -0.06109619, 0.03894043, 0.023162842, -0.027191162, -0.039764404, -0.08630371, 0.058685303, 0.03302002, 0.02947998, -0.03277588, 0.042236328, -0.014564514, 0.0013971329, 0.07824707, -0.019714355, 0.034179688, 0.03164673, -0.0027942657, 0.020950317, -0.023605347, -0.026016235, -0.036254883, 0.0034542084, 0.04736328, -0.04284668, 0.037506104, -0.000113248825, 0.022155762, -0.008354187, 0.0023822784, 0.038360596, 0.007736206, 0.0035934448, 0.006576538, -0.015068054, -0.024429321, -0.029647827, 0.024002075, -0.017745972, 0.013023376, 0.044036865, 0.06933594, 0.0051116943, 0.004180908, 0.013221741, -0.017150879, 0.03567505, 0.0002682209, 0.00283432, -0.02935791, 0.026031494, 0.024139404, -0.06100464, 0.025741577, 0.025299072, 0.00076532364, -0.02911377, -0.0513916, -0.07598877, 0.018493652, 0.036010742, 0.029266357, -0.016983032, 0.04727173, 0.044158936, -0.006477356, -0.07696533, -0.031829834, -0.012504578, -0.013389587, -0.014549255, -0.0014362335, -0.0146484375, 0.043151855, 0.0045661926, 0.0065994263, 0.004699707, 0.010688782, -0.017074585, 0.031829834, -0.004863739, 0.0018281937, 0.00598526, -0.013961792, 0.018585205, 0.105773926, -0.0015659332, -0.06378174, -0.040863037, -0.07611084, 0.10394287, -0.032196045, -0.030685425, 0.005924225, 0.010665894, -0.0028877258, 0.018737793, -0.0077323914, 0.028335571, 0.0112838745, -0.010902405, -0.028198242, 0.04333496, 0.00617218, -0.06921387, -0.02319336, -0.0025615692, -0.004173279, 0.03555298, -0.02394104, 0.022491455, -0.048461914, -0.019927979, -0.030303955, 0.0063934326, -0.0029067993, 0.0035305023, -0.017242432, 0.009033203, -0.0014829636, 0.010131836, -0.07147217, -0.033843994, 0.059692383, -0.02458191, 0.022521973, -0.008880615, -0.013427734, 0.022628784, -0.03253174, 0.02357483, 0.024902344, 0.021896362, 0.0002708435, -0.0056762695, -0.00497818, 0.020263672, 0.011665344, -0.022979736, 0.008979797, 0.05014038, 0.07537842, -0.02268982, 0.008094788, 0.02444458, 0.06488037, -0.012634277, -0.021560669, 0.018203735, 0.0015115738, -0.00969696, 0.02432251, -0.02935791, -0.037719727, 0.02897644, 0.008644104, -0.017791748, 0.018951416, 0.041412354, 0.057250977, 0.013046265, 0.013626099, 0.013557434, 0.025756836, -0.039733887, 0.021011353, -0.03918457, 0.013221741, 0.01399231, 0.06298828, 0.021850586, 0.013046265, -0.015075684, -0.039245605, -0.017990112, -0.025222778, -0.037597656, -0.018188477, 0.037963867, 0.04425049, 0.0019836426, 0.0129852295, -0.026168823, 0.018371582, -0.0115737915, 0.019805908, -0.02230835, -0.0046844482, 0.012062073, -0.019714355, -0.0104904175, 0.0037441254, 0.030654907, 0.04559326, 0.020568848, 0.050231934, 0.0042533875, 0.017547607, 0.05368042, -0.014305115, -0.005962372, -0.009475708, 0.015914917, -0.025466919, 0.09942627, -0.00365448, -0.0071983337, -0.0073280334, 0.030914307, 0.040039062, -0.016677856, 0.001950264, 0.00032019615, -0.023330688, -0.027160645, 0.010536194, 0.00340271, -0.02406311, 0.00045895576, 0.07116699, 0.008132935, 0.023590088, 0.0044898987, -0.038208008, 0.0028629303, 0.024810791, 0.01134491, 0.038208008, 0.013671875, 0.02822876, -0.015090942, 0.0031108856, 0.03338623, -0.017440796, -0.016967773, -0.016601562, -0.036743164, 0.039031982, 0.029556274, 0.018218994, 0.003107071, -0.005634308, -0.009536743, 0.0012435913, 0.007534027, -0.028930664, -0.016937256, -0.03488159, -0.015975952, -0.013748169, -0.012916565, -0.04043579, -0.033935547, -0.026275635, 0.0014667511, 0.0022068024, -0.019760132, -0.0032672882, 0.024993896, 0.009460449, -0.0034217834, -0.04244995, 0.0034103394, 0.05871582, -0.020233154, -0.059143066, 0.011878967, -0.076049805, 0.008148193, -0.034820557, -0.02670288, -0.033599854, 0.017868042, 0.0063209534, -0.072143555, 0.0115356445, -0.026901245, -0.0075416565, 0.034729004, 0.0032691956, -0.105041504, -0.048553467, -0.056152344, 0.027420044, 0.07232666, -0.009559631, -0.009056091, 0.037322998, -0.0036716461, 0.016159058, -0.042907715, -0.011016846, 0.0284729, 0.016342163, -0.0001552105, 0.004501343, 0.035491943, -0.004573822, 0.03302002, 0.02468872, -0.017547607, -0.01828003, 0.0001308918, -0.007888794, 0.03491211, 0.026550293, 0.00049448013, -0.033416748, -0.04623413, -0.013008118, -0.03881836, -0.011146545, 0.0065078735, -0.06335449, 0.011413574, -0.072265625, 0.016983032, 0.039733887, 0.022003174, -0.002609253, 0.0131073, -0.00031495094, -0.016525269, -0.0032348633, 0.038757324, 0.001613617, -0.0045661926, -0.01586914, 0.06866455, -0.09350586, 0.046020508, 0.028198242, -0.0008029938, 0.05340576, -0.0289917, -0.007507324, -0.020828247, -0.019882202, -0.017166138, -0.015701294, -0.03201294, -0.010124207, 0.023223877, 0.012641907, -0.007156372, -0.039611816, 0.01473999, -0.009437561, -0.03665161, -0.020095825, -0.0287323, 0.013694763, -0.014289856, -0.015159607, -0.01889038, -0.068725586, 0.01146698, -0.021194458, -0.016082764, -0.014595032, -0.0039482117, 0.021972656, -0.018234253, 0.086242676, 0.06536865, 0.062805176, 0.02204895, 0.0010156631, 0.03982544, -0.03591919, -0.006580353, 0.054901123, -0.011947632, -0.012908936, -0.020187378, 0.023773193, -0.01461792, 0.0019197464, 0.0009288788, 0.08831787, 0.014579773, 0.020324707, -0.030670166, -0.013801575, 0.027664185, 0.010597229, -0.0047302246, -0.009277344, -0.061401367, 0.012496948, -0.030899048, 0.02571106, 0.03845215, -0.03503418, 0.06262207, 0.030975342, 0.010269165, 0.012931824, 0.027160645, -0.026443481, 0.034240723, -0.011680603, -0.009353638, 0.018554688, 0.025604248, -0.054260254, -0.0016622543, 0.00066518784, -0.07336426, 0.022918701, 0.0033626556, -0.011512756, -0.00014603138, 0.013633728, 0.036132812, -0.026641846, -0.00032925606, 0.03451538, -0.013267517, -0.030456543, -0.044830322, 0.0028820038, -0.042144775, -0.030944824, -0.013916016, 0.039398193, -0.062286377, -0.016983032, 0.027755737, 0.029876709, 0.015266418, 0.04208374, -0.028121948, 0.0054397583, -0.03857422, -0.010253906, -0.0287323, -0.010894775, 0.01398468, 0.052459717, 0.0024299622, 0.0026283264, -0.014266968, -0.026412964, -0.027053833, 0.05279541, 0.000603199, -0.0680542, -0.047729492, 0.02835083, 0.06213379, -0.008262634, -0.007904053, -0.032226562, -0.064208984, -0.017028809, -0.028289795, -0.0056533813, -0.027389526, -0.034240723, -0.021347046, -0.03186035, -0.03945923, 0.02178955, -0.001004219, 0.000620842, 0.0016794205, -0.041381836, -0.011695862, 0.013343811, -0.068725586, 0.051849365, -0.081970215, 0.003227234, -0.004055023, -0.02407837, 0.03970337, -0.044128418, -0.007347107, -0.01939392, 0.090270996, -0.007019043, 0.014785767, -0.033477783, 0.0050354004, 0.00831604, 0.01525116, -0.026519775, 0.005783081, 0.008041382, 0.0079193115, -0.015312195, -0.041412354, -0.015510559, 0.031188965, -0.014602661, -0.025634766, 0.0041236877, 0.08068848, -0.040496826, 0.004764557, 0.006778717, 0.020492554, 0.0018177032, 0.012512207, -0.10449219, -0.039733887, -0.004714966, -0.03427124, 0.022537231, -0.0013456345, -0.0059394836, 0.019012451, 0.06567383, -0.0039787292, 0.0051498413, 0.0048179626, 0.017181396, -0.002729416, -0.012420654, 0.0020141602, 0.016830444, 0.009315491, -0.004173279, -0.035247803, 0.006587982, 0.010322571, 0.0025844574, -0.01109314, -0.019073486, -0.006175995, -0.036712646, -0.026184082, 0.021224976, 0.0155181885, -0.029815674, -0.041259766, 0.026641846, -0.034820557, 0.010055542, -0.005935669, 0.018066406, 0.040649414, -0.054656982, -0.015083313, 0.004722595, 0.013244629, 0.01537323, -0.005138397, 0.027404785, 0.002653122, -0.009757996, 0.04031372, -0.0073432922, 0.0023593903, 0.0033607483, 0.00043082237, -0.0103302, -0.010215759, -0.0103302, -0.0736084, -0.013015747, 0.05670166, -0.03515625, -0.05203247, 0.020751953, -0.017242432, 0.010787964, -0.02027893, 0.045410156, -0.0076522827, 0.030426025, 0.04727173, -0.025878906, 0.03387451, 0.022384644, -0.014221191, 0.0118637085, -0.0007791519, -0.004032135, 0.03314209, 0.011894226, 0.044921875, -0.0635376, 0.015258789, 0.0025119781, -0.017791748, -0.064086914, 0.0065689087, 0.035247803, -0.007545471, 0.04260254, -0.047729492, 0.055389404, -0.02180481, -0.037261963, 0.0064811707, 0.006565094, -0.031921387, 0.0027770996, 0.0020332336, -0.02166748, -0.019363403, 0.024429321, -0.0015602112, -0.0011959076, -0.018096924, -0.0362854, 0.072143555, -0.001001358, -0.052978516, -0.030059814, -0.01713562, 0.047698975, -0.007205963, -0.010917664, -0.04928589, -0.0038585663, -0.0064582825, 0.017669678, 0.005836487, 0.024871826, 0.0044898987, -0.033325195, -0.045013428, 0.018661499, -0.025878906, 0.015090942, -0.025543213, 0.0034427643, 0.011360168, -0.010971069, 0.02319336, -0.00033712387, -0.05505371, -0.020324707, 0.019485474, 0.014305115, -0.01461792, -0.02658081, 0.040100098, -0.03540039, -0.020004272, -0.046539307, 0.0793457, -0.023452759, -0.014656067, 0.01902771, -0.01449585, 0.019744873, 0.012901306, -0.040740967, -0.028884888, -0.013298035, 0.0040626526, -0.0925293, 0.0036792755, -0.01737976, 0.047546387, -0.031829834, -0.099365234, -0.0063095093, 0.041107178, 0.037902832, 0.0075263977, -0.020095825, -0.08557129, 0.02949524, -0.024551392, 0.006511688, -0.02545166, 0.007709503, -0.020568848, 0.00630188, -0.010887146, -0.02558899, -0.0015745163, -0.019836426, 0.02532959, 0.01309967, 0.0012741089, -0.012321472, 0.019943237, -0.008163452, 0.005695343, -0.0027866364, -0.008224487, 0.025131226, -0.043945312, 0.06854248, -0.06390381, 0.0073280334, -0.032073975, 0.02079773, 0.019058228, 0.032928467, -0.006958008, -0.009880066, 0.03842163, 0.0066986084, 0.04699707, 0.03125, 0.04055786, -0.0057678223, -0.005207062, 0.017333984, -0.006084442, -0.023666382, -0.030197144, 0.00655365, -0.08337402, -0.0030059814, -0.030075073, 0.019210815, -0.00045228004, 0.017349243, -0.01574707, 0.010765076, 0.0068893433, 0.003112793, 0.035217285, -0.023040771, -0.0018110275, -0.0071868896, 0.023849487, 0.043060303, -0.027328491, -0.015144348, -0.018615723, 0.012161255, -0.013145447, 0.057891846, -0.006275177, 0.040863037, 0.023239136, -0.07116699, -0.005405426, -0.017059326, 0.017059326, 0.009666443, -0.053710938, -0.025299072, -0.0059013367, 0.038116455, 0.009559631, 0.005302429, 0.008140564, 0.03262329, 0.021636963, -0.016235352, -0.015838623, -0.020523071, 0.03945923, -0.031097412, 0.010559082, 0.0060539246, -0.016433716, -0.023590088, 0.05331421, -0.055908203, -0.029418945, 0.018737793, 0.0131073, -0.027618408, 0.03640747, -0.008934021, -0.03265381, 0.052703857, 0.04260254, -0.014030457, 0.06311035, 0.013511658, 0.04232788, -0.0013427734, -0.02998352, 0.023483276, -0.049224854, 0.024383545, 0.03314209, -0.004283905, -0.006462097, -0.043823242, -0.015525818, -0.011405945, 0.005519867, -0.030548096, 0.009963989, -0.00062704086, 0.058410645, -0.020767212, 0.03729248, -0.07147217, 0.008468628, 0.014472961, 0.038513184, 0.060546875, 0.009346008, 0.010177612, -0.008705139, -0.020401001, -0.0026741028, -0.0033130646, -0.003967285, 0.021911621, 0.00894928, 0.0041046143, -0.014533997, -0.0072135925, -0.004043579, -0.013191223, 0.027450562, -0.021865845, 0.030395508, -0.0440979, -0.074523926, -0.046966553, -0.019927979, -0.031951904, 0.06210327, 0.036102295, -0.04232788, 0.0049972534, 0.014633179, -0.0473938, -0.07562256, -0.03250122, -0.03237915, -0.011550903, 0.021255493, 0.06768799, -0.03475952, -0.07836914, -0.034851074, 0.023757935, -0.06008911, -0.032592773, -0.0015745163, -0.012199402, -0.01109314, -0.023742676, -0.0018014908, -0.014572144, 0.037017822, -0.043670654, -0.0057411194, -0.052612305, -0.0362854, 0.051879883, -0.007095337, -0.011222839, -0.016082764, 0.047973633, -0.00076532364, 0.035217285, 0.019622803, 0.007259369, -0.06524658, -0.011627197, -0.035217285, -0.011421204, -0.017608643, -0.0023403168, 0.018234253, -0.01020813, -0.042755127, -0.007675171, 0.027313232, 0.04034424, 0.010826111, -0.03173828, 0.052612305, 0.0007677078, -0.049682617, -0.024902344, -0.038085938, 0.009864807, 0.022109985, -0.03982544, 0.01158905, 0.022216797, -0.010307312, -0.0008568764, 0.022003174, 0.031677246, 0.029190063, -0.012886047, 0.034729004, 0.0028877258, -0.027557373, -0.005153656, -0.052886963, -0.05908203, 0.011398315, -0.0016298294, -0.014213562, -0.002773285, -0.031402588, 0.005344391, -0.016677856, -0.02468872, -0.02949524, -0.07989502, -0.0025100708, 0.035217285, -0.026290894, 0.033081055, -0.014862061, -0.030014038, -0.037261963, 0.013748169, 0.035308838, 0.021987915, -0.049835205, -0.00044441223, 0.018310547, 0.012077332, -0.037139893, -0.055999756, -0.06188965, 0.045776367, 0.002866745, -0.003686905, 0.060760498, -0.016906738, 0.021636963, 0.021575928, -0.008453369, -0.027954102, 0.024841309, 0.0847168, 0.00680542, 0.015792847]}, "B07D1G6QQ1": {"id": "B07D1G6QQ1", "original": "Brand: MCP Island Grills\nName: MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover\nDescription: Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.\nFeatures: 304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section.\nComes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36\" skewer and motor.\nLarge 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free.\nPower Req: 110v/60hz. Overall Size: 154\" W (122.5\" W without side tables installed), 24.75\" D x 35.5\" Countertop H. Overall Height 52\" (Top of faucet head). Main Grill Section: 55\" W x 46\" H (overall) x 26.5\" D (Including knobs). Countertop 35.5\" H x 24.75\" D.\nRefrigerator/Wine Cooler Section: 49.5\" W (with Side Table) or 33.5\" W (without Side Table) x 25\" D x 35.5\" H. Sink Section: 49.25\" W (with Side Table) or 33.5\" W (without Side Table) x 28\" D x 35.5\" Countertop H or 52\" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.\n", "metadata": {"Name": "MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover", "Brand": "MCP Island Grills", "Description": "Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.", "Features": "304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section.\nComes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36\" skewer and motor.\nLarge 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free.\nPower Req: 110v/60hz. Overall Size: 154\" W (122.5\" W without side tables installed), 24.75\" D x 35.5\" Countertop H. Overall Height 52\" (Top of faucet head). Main Grill Section: 55\" W x 46\" H (overall) x 26.5\" D (Including knobs). Countertop 35.5\" H x 24.75\" D.\nRefrigerator/Wine Cooler Section: 49.5\" W (with Side Table) or 33.5\" W (without Side Table) x 25\" D x 35.5\" H. Sink Section: 49.25\" W (with Side Table) or 33.5\" W (without Side Table) x 28\" D x 35.5\" Countertop H or 52\" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.007484436, 0.017974854, -0.036132812, -0.0071411133, -0.0062713623, -0.009750366, -0.007633209, -0.0029296875, -0.008201599, -0.0026493073, -0.038269043, 0.030334473, -0.027908325, -0.0066604614, 0.0059013367, -0.036010742, 0.023452759, 0.04272461, 0.050231934, -0.016448975, -0.007545471, 0.0035476685, -0.0051193237, 0.074645996, 0.048828125, -0.01965332, 0.008285522, 0.013977051, 0.037231445, 0.014595032, 0.030197144, -0.036499023, 0.044403076, -0.028320312, -0.0116119385, 0.0070724487, 0.023605347, -0.031555176, -0.009262085, 0.00818634, 0.036315918, -0.024291992, -0.024215698, 0.02116394, -0.01927185, -0.017700195, 0.024993896, -0.03665161, 0.022201538, 0.045684814, -0.005607605, 0.02470398, -0.0012397766, -0.0066986084, 0.0061454773, 0.016159058, -0.032104492, 0.013908386, -0.0011100769, -0.0022659302, 0.0023517609, 0.010566711, 0.01878357, 0.02809143, -0.05218506, -0.014015198, 0.040893555, -0.015960693, -0.05230713, -0.072021484, 0.06518555, 0.0149383545, 0.015220642, 0.015655518, 0.008483887, -0.06585693, 0.02279663, -0.015083313, 0.007499695, 0.034210205, -0.011161804, -0.022613525, -0.0018959045, -0.050109863, 0.019424438, -0.027252197, -0.009925842, -0.0044288635, -0.03845215, -0.015098572, -0.024398804, -0.0054397583, -0.06304932, 0.042938232, 0.0017738342, -0.0001078248, -0.03189087, -0.01184082, 0.016235352, 0.02027893, 0.037322998, -0.049041748, 0.050445557, -0.020812988, -0.008308411, 0.044525146, 0.0052108765, 0.050476074, 0.028198242, 0.00087976456, -0.003993988, 0.0014629364, 0.010826111, -0.035308838, -0.026321411, 0.0006709099, -0.006690979, 0.01007843, 0.03842163, -0.029342651, -0.048675537, -0.015655518, -0.017471313, 0.040618896, 0.040802002, 0.050720215, 0.014953613, 0.01637268, -0.0541687, 0.04272461, -0.022109985, -0.027664185, 0.025802612, 0.08251953, 0.024505615, -0.026901245, 0.020645142, 0.051605225, 0.00762558, -0.0049819946, 0.025283813, -0.006439209, 0.0056114197, 0.01209259, -0.040222168, 0.011711121, 0.011779785, 0.008377075, -0.016586304, -0.06048584, 0.0010843277, -0.004764557, 0.04660034, 0.016799927, -0.091918945, -0.016448975, -0.00932312, -0.011230469, -0.014839172, -0.058380127, -0.008628845, 0.0016870499, -0.0008196831, -0.040924072, -0.054718018, -0.0027770996, -0.01625061, 0.0059814453, 0.017471313, 0.07727051, -0.059570312, -0.0040893555, 0.032836914, 0.028442383, -0.03466797, 0.014640808, -0.011924744, 0.034118652, 0.020141602, -0.031555176, -0.041015625, -0.065979004, 0.04272461, -0.018096924, -0.013420105, 0.028076172, -0.005836487, 0.025634766, 0.03302002, 0.011672974, -0.015716553, -0.003326416, -0.0050849915, -0.035827637, 0.02810669, 0.012580872, -0.04727173, 0.0003528595, -0.0010824203, -0.014732361, -0.030181885, -0.0042304993, 0.035827637, -0.012298584, -0.011947632, 0.025177002, -0.012145996, 0.03677368, 0.01914978, 0.0035552979, -0.00016701221, -6.330013e-05, 0.0029697418, -0.051086426, -0.035247803, -0.00856781, -0.018218994, 0.03982544, -0.015655518, 0.032958984, 0.022445679, -0.046417236, 0.01461792, 0.013504028, 0.03540039, 0.026672363, -0.025436401, 0.0107803345, 0.047698975, 0.03253174, -0.02192688, -0.013298035, 0.03955078, 0.037322998, -0.011169434, 0.0418396, 0.06573486, 0.044067383, -0.025009155, -0.024505615, -0.01576233, 0.017456055, -0.029037476, 0.07232666, 0.0021400452, -0.014503479, -0.016662598, 0.06488037, -0.01158905, -0.04269409, 0.023086548, -0.025787354, 0.050933838, 0.009513855, 0.00409317, 0.02645874, -0.019134521, -0.012214661, -0.011077881, -0.0022010803, 0.005645752, 0.048065186, 0.013244629, 0.019302368, -0.002708435, 0.033721924, 0.022918701, 0.039093018, -0.033203125, 0.032714844, 0.015914917, 0.024398804, -0.0018424988, -0.011009216, -0.026046753, 0.0023918152, -0.026245117, 0.04208374, -0.01159668, -0.03515625, -0.0067329407, -0.0262146, -0.039398193, -0.001326561, 0.031677246, 0.0072746277, 0.017623901, 0.021148682, -0.021484375, -0.0026054382, 0.017105103, 0.022903442, 0.0030460358, -0.0152282715, -0.007381439, -0.007499695, 0.06640625, 0.036010742, -0.0036582947, 0.00233078, 0.02796936, 0.033111572, -0.043792725, 0.023284912, -0.0017566681, -0.0131073, -0.004169464, 0.011962891, -0.002008438, -0.034454346, 0.015007019, 0.03665161, 0.020492554, -0.015388489, 0.055664062, 0.004737854, 0.01991272, 0.036193848, 0.03074646, 0.017318726, -0.024551392, 0.030059814, -0.04864502, -0.02355957, 0.02456665, 0.02154541, -0.05303955, -0.0209198, -0.005168915, 0.03729248, 0.024902344, 0.015716553, -0.002040863, -0.013679504, 0.006969452, -0.0036315918, -0.0023784637, 0.023254395, -0.024810791, -0.060180664, -0.03503418, -0.019180298, -0.008590698, -0.009490967, -0.020553589, -0.018493652, 0.0317688, 0.00749588, -0.07293701, -0.01777649, 0.03302002, -0.050842285, -0.027023315, -0.025344849, -0.025924683, 0.0003798008, 0.014961243, -0.059570312, -0.042938232, -0.07928467, -0.025009155, -0.022979736, -0.06463623, 0.012680054, 0.059570312, 0.0038776398, -0.027267456, 0.0013685226, -0.035064697, -0.03677368, 0.0340271, -0.055908203, 0.0002937317, -0.020401001, -0.021987915, -0.0025367737, 0.04977417, -0.034973145, -0.01638794, 0.008560181, -0.018539429, 0.00756073, -0.0019407272, 0.003370285, -0.0008702278, 0.03125, 0.038879395, 0.07751465, -0.039031982, -0.027618408, -0.03930664, 0.049865723, -0.013656616, -0.017593384, 0.016357422, 0.01008606, 0.011528015, -0.015396118, -0.031219482, -0.027786255, -0.03845215, 0.005844116, 0.0047569275, -0.022232056, 0.008041382, -0.06854248, -0.019897461, -0.044189453, 0.010215759, 0.017608643, 0.008995056, 0.031555176, 0.0057373047, 0.02796936, 0.009864807, -0.02166748, 0.034729004, -0.0041236877, 0.022857666, -0.037017822, 0.021835327, -0.047943115, 0.029632568, 0.016494751, -0.027420044, 0.021697998, -0.009719849, 0.020324707, -0.008621216, 0.016052246, -0.0074920654, -0.01876831, 0.006538391, 0.015777588, -0.050811768, -0.011161804, 0.0006699562, -0.003917694, 0.053527832, -0.057159424, -0.00945282, 0.010543823, -0.01473999, -0.0010299683, -0.005302429, -0.02935791, 0.034301758, -0.023712158, -0.015022278, -0.059143066, -0.01928711, 0.031402588, 0.042297363, 0.018844604, 0.023269653, 0.0034675598, -0.009895325, 0.03881836, -0.0032253265, -0.016677856, 0.0045776367, -0.031463623, 0.018218994, -0.00068855286, -0.040649414, -0.010284424, 0.013977051, 0.005443573, -0.028686523, -0.0051002502, -0.04043579, 0.070007324, 0.026947021, 0.016540527, -0.040496826, -0.019302368, 0.03375244, 0.05178833, -0.057800293, -0.05319214, -0.0501709, -0.011634827, -0.05203247, 0.12384033, 0.062072754, -0.020324707, 0.10559082, 0.09790039, -0.025161743, 0.021987915, 0.02961731, 0.00969696, -0.004436493, 0.027389526, -0.027450562, -0.007896423, 0.01109314, 0.0044517517, 0.040618896, 0.026412964, -0.048065186, 0.012123108, 0.010444641, -0.049682617, -0.053253174, 0.045074463, 0.04309082, -0.03225708, -0.027038574, -0.060516357, -0.014595032, -0.07434082, -0.02519226, -0.010360718, -0.037109375, -0.027191162, 0.003353119, 0.0071525574, -0.040893555, -0.0035037994, -0.005329132, 0.01158905, 0.017318726, 0.014602661, -0.0022277832, 0.004688263, 0.007972717, 0.02960205, 0.020462036, -0.0030136108, 0.0011396408, -0.0069084167, 0.050811768, 0.041748047, -0.021636963, 0.0069236755, -0.0262146, 0.020050049, -0.026672363, -0.07965088, -0.0079193115, 0.026306152, 0.0018539429, -0.0206604, -0.007247925, -0.029022217, -0.029022217, -0.014770508, -0.013786316, -0.024032593, -0.007911682, 0.0006957054, -0.027862549, -0.042510986, -0.008033752, -0.031311035, 0.009284973, -0.009986877, -0.016937256, -0.014831543, -0.004108429, 0.024795532, -0.072021484, 0.0119018555, -0.037384033, -0.00687027, 0.06390381, 0.014755249, 0.06222534, -0.032409668, -0.0026016235, -0.007789612, 0.105529785, -0.028579712, 0.03967285, -0.06121826, -0.029785156, -0.0158844, 0.047607422, 0.0871582, -0.009094238, 0.04385376, -0.03894043, -0.040100098, -0.010551453, 0.009544373, 0.02720642, 0.02355957, -0.014541626, -0.029937744, 0.013412476, -0.018920898, 0.013214111, -0.0025672913, -0.0054473877, 0.006931305, -0.0038547516, -0.06317139, -0.013000488, 0.0051116943, -0.016815186, -0.0053977966, -0.0061149597, -0.020233154, 0.0037994385, 0.010940552, -0.010520935, -0.037322998, -0.0066223145, 0.011383057, 0.004283905, 0.0345459, -0.05569458, -0.013710022, -0.045074463, 0.0075950623, -0.04135132, 0.07244873, 0.07952881, -0.019744873, 0.00818634, 0.029312134, -0.015792847, -0.02432251, -0.010528564, 0.023483276, -0.058013916, 0.015304565, -0.0038967133, 0.029541016, 0.037628174, -0.0015001297, -0.013214111, 0.01689148, -0.008872986, -0.034118652, -0.012237549, -0.05899048, -0.013336182, 0.033355713, 0.02947998, 0.00023651123, 0.0046424866, -0.08227539, 0.015281677, -0.037963867, -0.034729004, 0.034606934, -0.007030487, 0.0059318542, 0.023742676, -0.0036640167, -0.018737793, -0.019241333, -0.00057029724, -0.009346008, -0.019317627, 0.0035190582, 0.019378662, -0.016067505, -0.053894043, 0.004550934, -0.02923584, -0.020309448, 0.009269714, -0.009765625, -0.05053711, 0.042907715, -0.059143066, 0.07489014, 0.02178955, -0.07867432, -0.014549255, -0.015853882, 0.05001831, -0.03652954, -0.006084442, 0.026977539, -0.018737793, -0.070251465, -0.021713257, -0.0023002625, 0.062683105, 0.024002075, -0.040496826, 0.046813965, -0.008926392, -0.047424316, 0.007068634, 0.090148926, -0.049957275, -0.035095215, 0.0647583, -0.013084412, -0.07324219, 0.03692627, -0.0011692047, -0.0069007874, -0.019836426, -0.021636963, 0.036865234, 0.0059165955, -0.046966553, -0.02229309, 0.014457703, -0.026184082, -0.04748535, -0.029815674, -0.027038574, 0.0025672913, -0.03564453, 0.04574585, -0.0065193176, 0.011489868, -1.4126301e-05, 0.006580353, -0.016723633, -0.0045433044, -0.034240723, 0.030960083, -0.041778564, 0.027633667, 0.020248413, -0.051574707, 0.017440796, -0.00869751, -0.032043457, -0.023529053, -0.012886047, 0.00044989586, -0.016616821, 0.0014657974, 0.053833008, -0.052520752, -0.043426514, -0.04953003, 0.03933716, -0.009895325, -0.012001038, 0.040100098, 0.07531738, -0.0056419373, 0.023086548, -0.008804321, -0.047546387, 0.03378296, 0.0051345825, -0.060424805, 0.005092621, -0.018600464, 0.015853882, 0.018798828, -0.0006465912, -0.012176514, 0.053771973, 0.019622803, -0.023284912, -0.0647583, -0.023208618, 0.0073394775, -0.040740967, 0.008468628, -0.034423828, -0.029205322, -0.006702423, -0.032470703, -0.018493652, 0.01878357, 0.014160156, 0.048461914, 0.025314331, -0.014808655, 0.010467529, 0.031219482, -0.057739258, 0.06549072, -0.032104492, 0.0055999756, -0.010322571, 0.036346436, 0.008598328, 0.045196533, -0.026000977, -0.016281128, -0.01864624, 0.021057129, 0.036865234, 0.0033569336, -0.04244995, -0.042388916, 0.055114746, 0.034698486, 0.008155823, 0.000385046, 0.04071045, 0.012382507, -0.02947998, -0.010726929, 0.011108398, -0.02468872, -0.041015625, -0.030700684, -0.026748657, 0.0053901672, 0.001707077, 0.021835327, 0.030548096, 0.0034427643, 0.0065231323, -0.0057258606, 0.021255493, -0.016708374, -0.021118164, -0.0134887695, -0.009033203, 0.030136108, -0.008140564, -0.0045661926, 0.02168274, -0.01977539, -0.005771637, 0.02658081, 0.0019483566, 0.021652222, -0.045166016, 0.016052246, 0.010139465, -0.04385376, 0.019882202, 0.019332886, -0.008781433, 0.00014925003, -0.07543945, -0.041107178, -0.02935791, 0.03744507, 0.017166138, 0.07147217, -0.014724731, 0.016601562, -0.0051841736, 0.0068130493, -0.029403687, -0.007331848, -0.014694214, 0.0019874573, 0.013153076, -0.006099701, -0.02645874, -0.011756897, 0.04458618, -0.04977417, -0.024307251, 0.02268982, 0.015975952, -0.033416748, 0.04776001, -0.01739502, -0.019729614, 0.04058838, 0.025772095, -0.002040863, 0.04638672, 0.005596161, -0.008018494, 0.007007599, -0.0048599243, 0.0066070557, -0.00094366074, 0.011856079, 0.03866577, -0.005027771, -0.04840088, 0.020507812, 0.0029640198, -0.009902954, 0.02116394, 0.026382446, 0.03656006, -0.048828125, 0.048583984, 0.0418396, 0.06329346, -0.010368347, 0.009803772, 0.041809082, -0.0020332336, -0.020019531, 0.044830322, -0.004310608, -0.026306152, 0.021194458, 0.013153076, 0.028121948, 0.064697266, 0.0121536255, 0.035247803, 0.0025939941, -0.021026611, -0.031677246, 0.049987793, -0.035308838, 0.04348755, -0.02885437, 0.046081543, -0.03375244, -0.044677734, -0.07373047, -0.012619019, -0.040985107, 0.039123535, -0.007320404, -0.009849548, 0.025741577, -0.009567261, -0.0060806274, -0.04550171, 0.0061035156, 0.0032539368, 0.028518677, 0.009086609, 0.064331055, -0.032714844, -0.06536865, -0.060424805, 0.03048706, -0.06976318, -0.020370483, -0.0010461807, 0.009468079, 0.027282715, 0.0012140274, 0.032806396, 0.04437256, 0.022537231, -0.008308411, -0.026611328, -0.0017738342, -0.03692627, 0.05734253, -0.014755249, 0.015220642, 0.016784668, 0.050933838, 0.0050621033, 0.04562378, 0.02859497, -0.0031642914, -0.044769287, -0.00072288513, -0.033691406, 0.008483887, -0.016921997, -0.022003174, 0.00095415115, 0.006214142, -0.04272461, -0.055877686, 0.00843811, 0.0026817322, 0.010429382, 0.011100769, 0.00932312, -0.01612854, -0.007896423, 0.0041885376, -0.022705078, -0.009757996, 0.0043029785, 0.011123657, 0.06072998, 0.0037937164, -0.018936157, -0.012451172, -0.022140503, -0.008804321, -0.0045318604, 0.017791748, 0.040222168, 0.010269165, 0.009094238, 0.05078125, -0.06109619, -0.02520752, 0.02128601, 0.042755127, -0.03729248, -0.035583496, -0.0087509155, 0.014663696, -0.016220093, -0.049682617, -0.0028076172, -0.023483276, -0.013122559, 0.025924683, -0.011245728, 0.022827148, -0.018936157, -0.015914917, -0.025024414, 0.014259338, 0.02835083, 0.015426636, -0.052490234, 0.047943115, 0.03274536, 0.03955078, -0.029663086, -0.05871582, -0.06072998, 0.023864746, 0.009277344, 0.00283432, 0.037902832, -0.0034389496, 0.01725769, 0.030654907, -0.044128418, 0.026672363, -0.02796936, -0.0056991577, -0.025299072, -0.011367798]}, "B07S1KMJQH": {"id": "B07S1KMJQH", "original": "Brand: Best Choice Products\nName: Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown\nDescription: Specifications:
      Overall Dimensions: 52\"(L) x 34\"(W) x 24.75\"(H)
      Dimensions w/ Glass Partition: 52\"(L) x 34\"(W) x 30.25\"(H)
      Glass Partition: 27.75\"(L) x 12\"(W) x 5.5\"(H)
      Weight: 73 lbs.
      Table Material: Aluminum, Wicker
      Cover Material: 300D Oxford Fabric
      BTU: 50,000
      Assembly required (with instructions)
      NOTE: Works with standard 20-pound propane tanks

      Package Includes:
      Fire pit table
      Glass rocks
      Glass wind guard

      BCP SKU: SKY5268

      \nFeatures: ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop\nGLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze\nCONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU\nENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire\nDURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52\"(L) x 34\"(W) x 24.75\"(H)\n", "metadata": {"Name": "Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown", "Brand": "Best Choice Products", "Description": "Specifications:
      Overall Dimensions: 52\"(L) x 34\"(W) x 24.75\"(H)
      Dimensions w/ Glass Partition: 52\"(L) x 34\"(W) x 30.25\"(H)
      Glass Partition: 27.75\"(L) x 12\"(W) x 5.5\"(H)
      Weight: 73 lbs.
      Table Material: Aluminum, Wicker
      Cover Material: 300D Oxford Fabric
      BTU: 50,000
      Assembly required (with instructions)
      NOTE: Works with standard 20-pound propane tanks

      Package Includes:
      Fire pit table
      Glass rocks
      Glass wind guard

      BCP SKU: SKY5268

      ", "Features": "ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop\nGLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze\nCONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU\nENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire\nDURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52\"(L) x 34\"(W) x 24.75\"(H)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013893127, 0.008033752, -0.02949524, -0.061523438, 0.019989014, 0.00054454803, -0.014549255, 0.016479492, -0.03463745, -0.025100708, -0.050323486, 0.02041626, -0.07324219, -0.009544373, 0.025024414, -0.082458496, 0.0084991455, -0.012435913, -0.0012426376, -0.02748108, -0.0075416565, -0.026687622, 0.0006260872, 0.068725586, 0.0362854, -0.028701782, 0.0069274902, -0.042785645, 0.058563232, -0.0013656616, 0.028411865, -0.005504608, 0.050445557, -0.025390625, -0.012069702, 0.024856567, -0.012031555, -0.0077171326, -0.022232056, 0.027511597, -0.0049209595, 0.0049819946, -0.035491943, 0.0018281937, -0.0513916, -0.027740479, -0.009529114, 0.0056533813, -0.04284668, 0.015625, 0.0035209656, 0.009407043, 0.017807007, 0.012336731, 0.009399414, 0.0041275024, 0.012535095, -0.0032730103, 0.004634857, -0.034820557, -0.0028419495, 0.04156494, 0.021896362, 0.04522705, -0.021911621, 0.013961792, 0.11651611, -0.0019292831, 0.004623413, -0.047546387, -0.00046348572, 0.047424316, 0.007019043, -0.032073975, -0.03387451, 0.035858154, 0.014450073, 0.026611328, 0.0010166168, -0.016174316, -0.025772095, -0.0063209534, 0.02758789, -0.031311035, -0.021560669, -0.031463623, -0.016601562, 0.013694763, -0.005027771, -0.023010254, 0.0006046295, -0.016113281, -0.011894226, 0.023727417, -0.004634857, -0.03591919, -0.054779053, -0.06604004, 0.032318115, 0.023803711, -0.01763916, -0.016738892, -0.01737976, 0.0022335052, -0.023269653, 0.058807373, 0.028381348, 0.008605957, -0.01763916, -0.0062065125, -0.013595581, -0.023986816, -0.00040626526, -0.030349731, -0.004508972, 0.011459351, -0.025375366, 0.0042419434, 0.015571594, -0.01322937, -0.03945923, -0.046844482, -0.004901886, 0.04840088, 0.05441284, 0.047210693, -0.02507019, 0.045898438, -0.067993164, 0.021575928, -0.00031161308, 0.0014915466, 0.01977539, 0.074523926, 0.009117126, 0.0021324158, 0.053588867, 0.00092077255, 0.027740479, -0.0066070557, -0.0102005005, 0.0053520203, 0.033599854, -0.0074653625, -0.0065956116, 0.047424316, 0.03164673, -0.016403198, -0.01928711, -0.05230713, -0.033843994, 0.002243042, 0.03378296, 0.017959595, -0.062347412, -0.030349731, 0.010627747, -0.03479004, -0.01977539, -0.08087158, 0.0057258606, 0.007858276, 0.0027446747, -0.013870239, -0.031921387, -0.014823914, -0.0021266937, -0.010948181, 0.01499939, 0.07562256, -0.01939392, 0.014297485, -0.011833191, 0.016235352, -0.015007019, -0.008857727, -0.006439209, 0.06951904, 0.06414795, -0.097351074, -0.061523438, -0.060150146, 0.14025879, -0.050628662, 0.010673523, -0.046203613, 0.043273926, 0.008277893, -0.015022278, 0.02268982, 0.002040863, 0.019622803, -0.043029785, -0.030029297, 0.024414062, -0.00617218, -0.010910034, -0.02015686, 0.0027370453, 0.027420044, 0.018081665, 0.029907227, -0.0049095154, 0.019714355, 0.045806885, -0.00025725365, 0.012756348, 0.0046424866, 0.0057029724, 0.035095215, 0.0043945312, 0.011054993, -0.017562866, 0.015319824, -0.0042304993, -0.025665283, -0.030273438, 0.016555786, -0.005542755, 0.01171875, 0.022323608, -0.014297485, 0.017456055, 0.004184723, -0.0008363724, -0.018478394, -0.0362854, -0.015083313, -0.009483337, -0.017593384, 0.028640747, 0.05645752, 0.033447266, 0.05343628, -0.019821167, 0.03286743, 0.021102905, 0.057250977, -0.023635864, -0.027786255, 0.012680054, -0.043548584, -0.019683838, 0.030914307, -0.003955841, -0.039611816, 0.0027656555, 0.026641846, -0.00957489, 0.0068244934, 0.035858154, 0.009155273, 0.030563354, 0.008163452, -0.011772156, 0.03829956, -0.035614014, 0.06161499, -0.01235199, -0.016555786, -0.025405884, 0.002779007, 0.056762695, -0.035736084, 0.031982422, -0.048828125, 0.049102783, 0.027160645, 0.006576538, -0.055908203, 0.008903503, 0.056121826, 0.005290985, -0.00055742264, -0.017333984, 0.0066986084, 0.0056495667, 0.013053894, -0.032928467, -0.01991272, -0.0007100105, 0.02809143, 0.0025997162, -0.01486969, 0.026046753, -0.0066947937, -0.016448975, -0.033447266, -0.0040664673, -0.016159058, 0.024780273, -0.0062561035, -0.01902771, 0.010650635, 0.019241333, -0.02734375, 0.013969421, 0.0053138733, 0.009994507, -0.005065918, 0.012672424, 0.043182373, -0.016815186, 0.0038108826, -0.006515503, 0.029418945, -0.015594482, 0.033050537, 0.028808594, -0.03375244, -0.009986877, 0.0020389557, 0.02293396, -0.0058898926, 0.03564453, 0.008590698, -0.012786865, 0.04119873, 0.033935547, 0.057159424, 0.00066280365, 0.0236969, -0.013298035, 0.0071372986, 0.02444458, -0.00831604, 0.0019569397, -0.01953125, -0.06161499, 0.018722534, 0.05706787, -0.0287323, 0.0096588135, -0.027664185, -0.0026569366, 0.00020372868, -0.00066280365, 0.036010742, -0.0034542084, -0.06359863, -0.0072250366, -0.009750366, -0.01197052, 0.016983032, -0.018920898, -0.034576416, 0.012512207, 0.010192871, 0.008773804, -0.0009379387, 0.004009247, -0.016952515, -0.020477295, -0.0104522705, 0.0047683716, 0.028900146, -7.337332e-05, -0.010772705, 0.015266418, -0.041168213, 0.018966675, -0.015617371, -0.020339966, -0.0018081665, 0.007286072, -0.008926392, -0.021759033, -0.006679535, -0.004383087, 0.001745224, 0.06628418, -0.0047340393, -0.08282471, -0.030426025, -0.033294678, -0.029907227, 0.04977417, -0.03753662, 0.0006623268, 0.016830444, -0.01399231, 0.046447754, -0.03527832, 0.06970215, 0.014793396, 0.016906738, 0.048614502, 0.03253174, 0.04916382, -0.0065994263, 0.052947998, 0.04058838, -0.023590088, -0.021377563, 0.030960083, 0.016815186, -0.01789856, -0.019943237, -0.02835083, -0.01713562, -0.07861328, 0.013046265, 0.0016078949, -0.03366089, -0.010246277, -0.07244873, -0.025543213, -0.043548584, 0.021865845, 0.055267334, -0.0020389557, -0.0018510818, -0.021499634, 0.018737793, -0.017181396, 0.0068626404, 0.017150879, 0.009651184, -0.011169434, -0.03277588, 0.02406311, -0.0513916, 0.012062073, 0.013542175, -0.004699707, -0.024169922, 0.013687134, 0.0013151169, -0.005722046, 0.01751709, -0.0037517548, -0.024230957, -0.025680542, -0.005886078, 0.006378174, -0.007736206, 0.0007004738, -0.02796936, 0.016418457, -0.014152527, -0.034729004, -0.0015506744, 0.004131317, 0.040863037, -0.025283813, 0.006038666, -0.012413025, -0.047790527, 0.005744934, -0.043945312, -0.012718201, 0.0077934265, 0.044189453, 0.013877869, -0.0014381409, 0.00995636, -0.020019531, 0.028701782, -0.0027236938, 0.023010254, 0.01953125, -0.01876831, 0.04095459, 0.0015735626, -0.020370483, -0.035583496, 0.059631348, 0.007904053, -0.024780273, 0.026748657, -0.012535095, 0.013160706, 0.016571045, 0.006378174, 0.0012903214, 0.024597168, 0.0056495667, -0.0022258759, -0.05038452, -0.0058174133, -0.031982422, -0.011070251, -0.067993164, 0.11230469, 0.051849365, -0.016479492, 0.10021973, 0.09112549, -0.009376526, 0.065979004, 0.04559326, 0.023590088, 0.015571594, 0.059143066, -0.012184143, 0.014129639, 0.003660202, 0.030914307, -0.0062294006, -0.024383545, -0.03125, 0.012184143, 0.019088745, -0.0033340454, -0.04901123, 0.02279663, 0.027130127, -0.046539307, -0.0024280548, -0.038726807, -0.027755737, -0.0748291, -0.0413208, -9.417534e-05, -0.02508545, -0.009132385, 0.019042969, 0.03062439, -0.022964478, -0.021194458, -0.0023956299, -0.011703491, 0.013587952, 0.0390625, 0.010093689, 0.030410767, -0.034606934, 0.030349731, -0.02015686, -0.0020484924, -0.003118515, -0.000813961, -0.0053100586, -0.0013055801, 0.042388916, 0.042022705, -0.014289856, 0.0037708282, -0.043029785, -0.074401855, -0.0009784698, 0.027404785, 0.008857727, -0.032928467, 0.027175903, -0.066589355, 0.013755798, -0.015853882, -0.046844482, 0.019302368, -0.04434204, -0.034942627, -0.08239746, -0.027664185, -0.018234253, -0.019683838, -0.06970215, 0.03729248, 0.010307312, -0.017440796, 0.0045547485, 0.027648926, -0.052337646, -0.0007548332, -0.08081055, 0.014259338, -0.0287323, -0.03555298, -0.005847931, -0.004650116, -0.012969971, -0.018737793, 0.05670166, 0.025863647, -0.01889038, -0.048736572, 0.02810669, 0.0016736984, 0.059906006, 0.010665894, -0.00037169456, 7.265806e-05, -0.0058898926, -0.023925781, -0.07702637, 0.010665894, 0.031311035, -0.010398865, -0.061462402, -0.06311035, 0.013771057, 0.024505615, 0.003583908, -0.03036499, 0.002904892, 0.021911621, -0.0075912476, -0.05984497, -0.0519104, -0.00052309036, -0.019134521, -0.0015172958, -0.009849548, -0.019836426, 0.07763672, 0.021087646, 0.01725769, -0.024597168, -0.016860962, 0.0209198, -0.034820557, 0.03164673, -0.04421997, -0.026428223, -0.03100586, 0.021224976, -0.11767578, 0.0791626, 0.03640747, 0.025238037, 0.017501831, 0.0028820038, -0.0043640137, -0.05050659, 0.005115509, -0.06060791, 0.003921509, 0.009963989, -0.010902405, -0.03656006, -0.015838623, -0.0050697327, -0.018859863, -0.021957397, -0.006465912, 0.0152282715, 0.011291504, -0.014968872, -0.025787354, -0.02633667, 0.024124146, -0.010398865, 0.008171082, -0.04107666, -0.060272217, -0.046661377, -0.030090332, -0.003293991, -0.019897461, -0.0015974045, -0.011833191, 0.0054512024, -0.047424316, 0.028945923, 0.045959473, 0.03994751, -0.0006175041, 0.055114746, -0.013679504, -0.016525269, -0.04522705, -0.017211914, 0.034454346, -0.060516357, 0.01713562, -0.006225586, -0.019180298, 0.01727295, -0.030288696, 0.04473877, -0.00868988, 0.0045394897, -0.0001077652, 0.02281189, -0.014724731, -0.05267334, 0.095214844, -0.004371643, -0.037200928, -0.04107666, 0.018051147, -0.026687622, 0.011413574, -0.047821045, 0.0029659271, 0.047180176, -0.0413208, -0.03567505, 0.03314209, 0.026672363, -0.06628418, -0.019485474, 0.041992188, -0.021240234, -0.02583313, 0.050811768, 0.0073165894, 0.0031089783, 0.006816864, -0.04824829, 0.043151855, 0.012588501, -0.048614502, -0.018295288, 0.007255554, -0.014259338, -0.025909424, -0.025527954, 0.02909851, 0.013717651, -0.0072746277, 0.0049934387, -0.010948181, 0.018554688, -0.059265137, -0.0121536255, -0.017486572, 0.0044517517, -0.006729126, 0.064575195, -0.017868042, -0.016601562, -0.013343811, 0.008392334, 0.012428284, -0.027282715, -0.035308838, 0.021377563, 0.01020813, 0.024978638, -0.011184692, -0.0012931824, 0.06274414, -0.03970337, -0.0154418945, -0.051727295, 0.0025959015, -0.0020122528, -0.023849487, 0.03665161, -0.008476257, -0.00051927567, 0.01991272, -0.007751465, -0.04840088, 0.032226562, 0.022064209, -0.08416748, -0.008338928, -0.02204895, 0.018173218, -0.029312134, 0.012458801, -0.014266968, 0.048187256, -0.013069153, -0.015289307, -0.030059814, 0.020004272, -0.018218994, -0.028656006, 0.007904053, -0.030517578, -0.009162903, 0.0022029877, 0.015129089, -0.0013933182, -0.019577026, 0.01524353, 0.0047035217, 0.025848389, 0.017562866, 0.008003235, -0.0035114288, -0.018829346, 0.00032544136, 0.016662598, -0.03692627, -0.020629883, 0.009216309, 0.033294678, -0.011772156, -0.03149414, 0.0039100647, -0.025360107, -0.011871338, 0.03010559, 0.025314331, -0.04611206, 0.02659607, 0.03805542, 0.020645142, 0.004512787, 0.020019531, 0.033569336, -0.0034103394, -0.04699707, 1.8835068e-05, 0.02835083, -0.030151367, 0.037353516, -0.053863525, 0.025238037, 0.002614975, -0.00014770031, 0.014091492, -0.009429932, 0.035888672, 0.014450073, 0.037872314, 0.02067566, 0.036102295, -0.006717682, 0.011734009, -0.022369385, 0.03878784, -0.031051636, -0.007183075, 0.005344391, -0.0231781, 0.01109314, 0.04385376, 0.00056409836, -0.0015716553, -0.012825012, 0.00868988, 0.03845215, -0.05392456, 0.008590698, -0.04751587, -0.0072402954, -0.03289795, -0.012336731, -0.011497498, 0.009468079, 0.026290894, -0.020324707, 0.022827148, -0.017456055, 0.016799927, -0.011787415, -0.025390625, -0.028182983, -0.051971436, 0.045135498, -0.03829956, -0.022567749, 0.020339966, -0.04260254, -0.04812622, 0.055908203, -0.034606934, -0.008293152, -0.02003479, 0.023925781, -0.020935059, 0.048553467, -0.02003479, -0.00024187565, 0.029510498, 0.0019512177, 0.018112183, 0.023147583, 0.0143585205, -0.02734375, -0.04827881, -0.068725586, 0.030731201, -0.03186035, 0.013404846, 0.01979065, -0.018966675, -0.011688232, -0.011276245, -0.0063972473, -0.008491516, 0.027420044, 0.007297516, 0.028305054, 0.041992188, -0.053985596, -0.016815186, 0.0064849854, -0.050689697, 0.035125732, -0.019119263, 0.011001587, 0.010299683, -0.010734558, 9.185076e-05, -0.011894226, -0.0023612976, 0.00932312, 0.0118255615, 0.023986816, 0.008255005, 0.027618408, 0.0058135986, -0.015396118, -0.01687622, 0.016616821, -0.03414917, 0.017166138, -0.024810791, 0.00032234192, -0.0027694702, -0.03945923, -0.016448975, -0.003030777, -0.0115737915, 0.02432251, 0.031402588, -0.019226074, -0.021865845, -0.00083351135, 0.052215576, -0.052093506, -0.031463623, 0.0037631989, 0.04925537, 0.0042152405, 0.041870117, -0.0067634583, -0.031951904, -0.035125732, -0.00092220306, -0.009773254, 0.010681152, -0.007457733, 0.031951904, 0.029205322, 0.002155304, 0.010063171, 0.070129395, 0.014198303, -0.008483887, 0.02444458, -0.06939697, -0.054870605, 0.10687256, 0.039367676, -0.045898438, -0.014404297, 0.031311035, 0.012069702, 0.033447266, 0.020309448, -0.023880005, -0.07751465, -0.04135132, -0.06329346, 0.04107666, -0.013244629, -0.0024299622, 0.03338623, 0.003396988, -0.009552002, 0.0016183853, 0.031082153, 0.0046157837, 0.043518066, -0.033599854, 0.0007381439, -0.05606079, -0.02859497, -0.047332764, -0.009918213, 0.042816162, -0.03967285, -0.06463623, 0.0034389496, -0.012275696, -0.01687622, -0.020187378, 0.028411865, -0.010482788, 0.0020103455, 0.03552246, 0.022506714, 0.004016876, -0.0038871765, 0.020507812, -0.04776001, -0.04458618, -0.025939941, 0.019348145, -0.027572632, -0.036987305, -0.020736694, 0.043914795, -0.037872314, -0.045684814, -0.030639648, -0.080078125, 0.018722534, 0.02029419, -0.016815186, 0.026367188, 0.022247314, -0.03048706, -0.02003479, 0.0044021606, 0.018615723, -0.010047913, -0.047821045, 0.030975342, 0.015289307, 0.045135498, -0.007686615, -0.07501221, -0.05871582, 0.012451172, 0.021224976, -0.021118164, 0.053985596, 0.008079529, 0.011955261, 0.0065612793, -0.013664246, -0.041778564, 0.040222168, 0.08477783, 0.0054893494, 0.030776978]}, "B00KCNV9KU": {"id": "B00KCNV9KU", "original": "Brand: Broil King\nName: Broil King 922164 Baron 440 Liquid Propane Gas Grill\nDescription: \nFeatures: 4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly\n10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length\n644-sq in total cooking area, including 444 sq. in of primary cooking space,\nReversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs\nDurable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces\n", "metadata": {"Name": "Broil King 922164 Baron 440 Liquid Propane Gas Grill", "Brand": "Broil King", "Description": "", "Features": "4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly\n10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length\n644-sq in total cooking area, including 444 sq. in of primary cooking space,\nReversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs\nDurable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019882202, -0.013084412, -0.05307007, -0.010269165, -0.021255493, -0.023498535, -0.026245117, 0.02949524, -0.025222778, 0.004802704, -0.02053833, 0.036224365, -0.0025424957, -0.02861023, 0.034057617, -0.009773254, 0.028900146, 0.021102905, 0.027557373, -0.008918762, 0.00554657, 0.024429321, -0.017547607, 0.07824707, 0.038116455, -0.028717041, -0.033294678, 0.044189453, 0.017410278, 0.023391724, 0.027786255, -0.015357971, 0.059631348, -0.027420044, -0.015930176, -0.028930664, -0.0014886856, -0.026824951, -0.05355835, 0.03074646, 0.004436493, -0.0028743744, 0.026245117, -0.027114868, -0.010421753, -0.0029468536, -0.0071983337, -0.02015686, 0.05154419, -0.024871826, -0.0010185242, 0.022781372, 0.0118637085, 0.0054397583, -0.027313232, 0.027526855, 0.052886963, -0.023864746, 0.011779785, -0.033477783, -0.028564453, 0.011558533, 0.03656006, 0.014465332, -0.06854248, 0.0362854, 0.045135498, -0.033996582, 0.019577026, -0.073913574, -0.01600647, 0.03414917, 0.011878967, -0.018554688, -0.0067825317, -0.020889282, 0.017745972, -0.03048706, 0.013130188, -0.0033473969, -0.0013027191, -0.00017476082, 0.025817871, -0.0022602081, -0.00592041, 0.023361206, -0.016677856, -0.018569946, 0.007144928, -0.008560181, -0.008453369, -0.0030612946, 0.001657486, 0.05621338, -0.014564514, -0.0031986237, -0.05441284, -0.059509277, 0.03036499, 0.0040740967, 0.04421997, -0.028076172, 0.021362305, 0.001244545, -0.004638672, 0.08746338, 0.011878967, 0.062561035, 0.017288208, -0.016525269, 0.030532837, -0.065979004, 0.040374756, 0.007621765, -0.023895264, -0.00868988, -0.0009851456, -0.0035820007, -0.021270752, -0.035186768, -0.01651001, -0.01979065, 0.03363037, 0.03793335, 0.020751953, 0.03555298, -0.023330688, -0.011253357, 0.004180908, 0.031921387, -0.017089844, -0.019302368, 0.03250122, 0.07312012, 0.02758789, -0.009880066, -0.010765076, -0.009429932, 0.012481689, -0.002462387, -0.031677246, -0.009605408, 0.053985596, -0.0062713623, -0.0385437, 0.018508911, 0.011833191, 0.0128479, -0.023269653, -0.05596924, 0.0027389526, -0.015289307, 0.011886597, 0.03918457, -0.058135986, 0.046020508, -0.038146973, 0.021438599, -0.037750244, -0.004196167, -0.053009033, -0.017913818, 0.02684021, -0.040252686, -0.052856445, 0.052490234, 0.0013923645, 0.0055770874, 0.0067443848, 0.016540527, -0.05267334, 0.036590576, -0.012298584, 0.013519287, 0.0030708313, -0.0016288757, 0.04437256, 0.02822876, 0.034210205, -0.0769043, -0.07849121, -0.055786133, 0.109375, -0.08294678, -0.009246826, 0.007850647, -0.008911133, -0.015213013, 0.025161743, -0.0040779114, 0.019958496, 0.024902344, 2.3245811e-05, -0.009544373, 0.035186768, -0.008872986, 0.009727478, -0.014633179, 0.024414062, -0.04171753, 0.03286743, 0.026901245, -0.0059013367, 0.01763916, 0.0072898865, -0.005466461, 0.015808105, -0.005809784, 0.041900635, 0.039398193, -0.022613525, -0.0033988953, 0.019836426, -0.038848877, -0.0158844, -0.01108551, -0.010475159, 0.04449463, 0.03074646, 0.026397705, 0.056488037, -0.018096924, 0.06384277, 0.044433594, 0.024810791, 0.02456665, -0.06262207, 0.007221222, 0.020614624, -0.0031051636, -0.008216858, 0.06286621, 0.10394287, 0.092041016, -0.003622055, 0.032592773, 0.043273926, 0.034118652, -0.040985107, -0.019302368, 0.021713257, 0.007133484, -0.024932861, 0.0015249252, -0.01109314, -0.021224976, 0.015853882, -0.02192688, -0.0096588135, 0.025268555, 0.038757324, -0.014007568, 0.020462036, 0.010772705, -0.018753052, 0.01876831, -0.0158844, 0.0074310303, -0.055511475, 0.050964355, -0.013954163, 0.05368042, 0.025054932, 0.0036239624, 0.022018433, 0.00038528442, 0.022399902, 0.010055542, -0.038726807, 0.014762878, 0.020584106, 0.017822266, -0.0022525787, -0.008544922, -0.03366089, -0.0038604736, -0.009460449, 0.033843994, -0.009086609, -0.033691406, 0.0033035278, 0.01071167, 0.008964539, -0.0070991516, 0.040802002, 0.042663574, 0.014884949, -0.00881958, -0.029190063, 0.018051147, 0.03866577, 0.015899658, -0.0051002502, -0.0126571655, -0.028656006, -0.0021247864, 0.04827881, -0.028457642, 0.023529053, -0.027313232, 0.03186035, 0.038330078, -0.026779175, 0.0019302368, 0.006137848, -0.0034770966, -0.012145996, 0.052368164, 0.033477783, -0.03378296, 0.034484863, 0.039520264, 0.019927979, -0.00894928, 0.032836914, 0.0015010834, 0.015945435, 0.040252686, 0.034729004, 0.035827637, -0.015640259, -0.0035514832, -0.08508301, 0.014930725, -0.005634308, 0.04473877, -0.0054512024, -0.018539429, 0.008514404, -0.0065612793, -0.044036865, -0.011756897, -0.011360168, 0.032958984, -0.025115967, -0.021987915, -0.011360168, 0.011177063, -0.021148682, -0.035308838, -0.047424316, -0.023712158, 0.0042266846, -0.060180664, -0.046966553, 0.017669678, 0.023834229, 0.013648987, -0.021530151, 0.025527954, -0.018432617, -0.0029411316, 0.03074646, -0.013298035, 0.00333786, 0.015380859, -0.059143066, -0.06378174, -0.03756714, -0.095214844, -0.01071167, -0.016281128, -0.035491943, -0.014404297, 0.042541504, -0.0035648346, -0.033477783, -0.0011825562, 0.011306763, 0.0067253113, 0.02078247, 0.009773254, -0.06939697, -0.010139465, -0.003479004, -0.01461792, 0.026428223, -0.025634766, 0.0015106201, 0.005970001, 0.012870789, 0.006389618, -0.013717651, 0.0014104843, 0.0027046204, 0.024002075, 0.005191803, 0.0072517395, 0.022781372, -0.012023926, 0.013114929, 0.034210205, -0.028717041, 1.6987324e-05, -0.017089844, -0.001958847, -0.019226074, -0.0058898926, -0.04840088, 0.011932373, -0.11657715, 0.0016088486, -0.031707764, -0.029296875, 0.0060424805, -0.037750244, -0.047210693, -0.0692749, -0.0034122467, 0.0703125, 0.017105103, -0.013206482, 0.0030765533, 0.021118164, 0.017303467, -0.0154800415, -0.0013046265, -0.02368164, 0.036865234, -0.010002136, 0.012565613, -0.015296936, 0.035125732, 0.04421997, -0.031433105, 0.02192688, -0.0051651, 0.026504517, 0.008293152, 0.03945923, 0.0090789795, 0.0068969727, -0.020462036, -0.017669678, -0.0067977905, 0.028884888, 0.00096940994, 0.0007362366, 0.004009247, -0.015174866, -0.07678223, -0.036346436, 0.031173706, 0.021026611, -0.029449463, 0.036834717, -0.02368164, -0.03894043, 0.0069389343, -0.03692627, 0.0038871765, 0.00831604, 0.030761719, 0.022247314, -0.0060577393, 0.061828613, 0.03378296, 0.05908203, 0.013977051, -0.052001953, -0.01953125, -0.052459717, -0.0056037903, 0.028518677, -0.0014848709, -0.011123657, -0.005218506, 0.022949219, -0.015975952, 0.014076233, 0.010025024, 0.030975342, 0.03390503, -0.00579834, -0.007007599, 0.00409317, 0.032409668, -0.008293152, -0.030731201, -0.04660034, -0.065979004, 0.018692017, -0.08331299, 0.06365967, 0.04977417, -0.029373169, 0.091674805, 0.019973755, -0.011077881, -0.0011453629, 0.002796173, -0.030395508, -3.993511e-06, -0.001958847, -0.038146973, 0.007797241, 0.008300781, -0.02861023, 0.0036334991, -0.011238098, -0.020599365, 0.0062026978, 0.02444458, -0.013832092, -0.0056610107, -0.012748718, 0.012794495, -0.04083252, 0.004550934, 0.045532227, -0.018218994, -0.023269653, -0.02684021, 0.0077400208, -0.041259766, -0.015075684, -0.019180298, 0.025436401, -0.044036865, -0.0052833557, 0.006313324, 0.039215088, -0.026763916, 0.059387207, -0.021240234, 0.0036773682, -0.04989624, -0.0039634705, -0.0012979507, 0.030303955, 0.044525146, -0.026351929, 0.09197998, 0.022994995, -0.027938843, 0.026184082, -0.004432678, 0.044433594, -0.016693115, -0.07897949, -0.0093307495, 0.03604126, 0.03466797, -0.05532837, -0.012062073, -0.0014762878, -0.0049209595, -0.009246826, -0.02772522, -0.043945312, 0.010696411, 0.031280518, -0.07128906, -0.02470398, 0.010108948, -0.051361084, -0.012779236, 0.002784729, -0.003232956, -0.02142334, -0.0052986145, -0.0011997223, -0.06060791, 0.044525146, -0.022735596, -0.008911133, 0.03277588, -0.0026111603, 0.017959595, -0.011161804, -0.001613617, -0.016998291, 0.09625244, -0.016708374, -0.0054244995, -0.06854248, -0.06384277, -0.02432251, 0.0059814453, 0.061767578, -0.011146545, 0.046539307, -0.028396606, -0.048065186, -0.043395996, -0.009971619, 0.008369446, -0.047180176, -0.06274414, -0.012176514, 0.059906006, 0.008476257, 0.010391235, -0.008911133, 0.004283905, 0.008560181, -0.022949219, -0.047302246, 0.011642456, -0.000954628, -0.013282776, 0.04135132, -0.00014948845, -0.012825012, -0.023391724, 0.068603516, 0.03387451, -0.0178833, -0.009803772, 0.021224976, 0.017700195, -0.006187439, -0.0234375, -0.00598526, -0.008094788, 0.008361816, -0.050628662, 0.08068848, 0.06365967, -0.01939392, 0.013092041, 0.023727417, -0.0066490173, -0.03869629, -0.0033931732, -0.024749756, -0.008331299, -0.042022705, -0.028915405, 0.029708862, -0.02067566, 0.017242432, -0.01108551, -0.013031006, -0.000562191, 0.0012016296, 0.0099487305, -0.020263672, -0.0074920654, 0.024490356, 0.010070801, 0.02015686, -0.014579773, -0.02684021, 0.043518066, -0.01133728, -0.015548706, 0.0018062592, -0.033081055, -0.02142334, -0.037994385, 0.018630981, -0.017562866, 0.049987793, 0.04397583, 0.0107421875, -0.038604736, 0.014564514, -0.0051574707, -0.0012302399, 0.0024662018, 0.043151855, -0.012954712, 0.042144775, 0.04815674, -0.010299683, -0.025985718, 0.036743164, -0.024917603, 0.047546387, 0.0065727234, -0.03665161, 0.031921387, 0.02407837, 0.037963867, -0.0625, 0.06060791, -0.02229309, -0.03378296, -0.058441162, 0.009796143, 0.000323534, 0.0069084167, 0.04812622, -0.05267334, 0.02029419, -0.03869629, -0.0026721954, -0.015731812, -0.0066566467, -0.035095215, 0.012924194, -0.02406311, -0.010879517, 0.008216858, -0.0011253357, -0.040130615, 0.014541626, -0.011016846, 0.026397705, 0.024475098, -0.0027370453, -0.016921997, -0.050201416, 0.012893677, -0.015579224, -0.011116028, -0.026428223, -0.0002553463, -0.011405945, -0.011161804, 0.051086426, 0.016204834, -0.00024104118, 0.020370483, -0.013023376, 0.02468872, 0.015853882, -0.007041931, 0.013168335, -0.028076172, -0.018859863, 0.04852295, 0.012023926, 0.012611389, 0.060638428, -0.05316162, 0.00023460388, -0.0014209747, 0.0019388199, -0.0005660057, -0.018447876, 0.05731201, -0.028671265, -0.018920898, -0.093444824, 0.02532959, -0.0006122589, -0.030441284, 0.08496094, 0.046020508, 0.008018494, 0.03579712, -0.021835327, -0.057373047, -0.010169983, -0.0067367554, -0.066467285, -0.02128601, -0.04248047, 0.023925781, -0.002313614, -0.0138168335, -0.024658203, 0.03488159, -0.0009126663, -0.011238098, -0.031555176, -0.019348145, 0.0030517578, -0.03225708, 0.01247406, 0.0057373047, -0.01235199, -0.011070251, -0.030059814, -0.08459473, -0.00440979, 0.032806396, 0.016830444, 0.000279665, 0.0033187866, -0.0005931854, 0.015159607, -0.009124756, 0.026519775, -0.009880066, 0.0035648346, 0.0068626404, 0.03012085, -0.009307861, 0.023590088, -0.051971436, -0.0051651, -0.033599854, 0.064697266, 0.030014038, 0.03186035, -0.026275635, -0.0022258759, 0.01890564, 0.015342712, 0.035064697, -0.014213562, 0.029663086, -0.0060768127, -0.05331421, -0.0056419373, -0.021011353, -0.042419434, -0.053649902, -0.01260376, -0.049072266, 0.021438599, -0.0074310303, 0.026138306, -0.03326416, 0.04953003, 0.01928711, -0.031051636, 0.026977539, -0.014808655, 0.028686523, -0.013191223, -0.023956299, 0.016860962, 0.03378296, 0.00844574, -0.020507812, -0.022979736, 0.007987976, 0.032470703, 0.02645874, -0.00579834, -0.045715332, 0.013870239, 0.034454346, -0.040740967, -0.007144928, 0.0152282715, 0.0074501038, -0.009780884, -0.07763672, -0.022155762, -0.016708374, -0.005756378, -0.008598328, 0.03704834, 0.017059326, 0.018127441, 0.013832092, -0.042633057, 0.026504517, -0.019592285, 0.031555176, -0.008026123, -0.011886597, -0.0062217712, -0.020050049, 0.01499939, 0.042999268, -0.030227661, 0.002456665, -0.0017242432, 0.015205383, -0.027755737, -0.015823364, -0.035705566, -0.034484863, -0.002243042, 0.013435364, -0.009986877, -0.010765076, -0.024017334, 0.034973145, 0.00390625, -0.0009217262, 0.041015625, -0.03253174, 0.01776123, 0.0065689087, 0.03390503, -0.047180176, -0.031463623, -0.008255005, -0.01739502, 0.012626648, 0.027267456, 0.011459351, 0.053955078, 0.03866577, 0.02217102, 0.06890869, -0.02330017, 0.02267456, 0.004447937, 0.015319824, 0.050323486, 0.033111572, -0.016052246, -0.025802612, 0.00737381, -0.008491516, 0.020431519, 0.016220093, 0.04034424, -0.008735657, 0.0032444, -0.009605408, 0.009651184, -0.027572632, 0.00021481514, 0.0096206665, -0.001537323, -0.030136108, -0.018371582, -0.04788208, -0.043273926, -0.01991272, -0.08306885, 0.00605011, -0.031707764, -0.013572693, 0.013870239, -0.0010786057, -0.022827148, -0.016983032, 0.0047683716, 0.010795593, 0.059539795, 0.008583069, 0.0519104, -0.028427124, -0.06414795, -0.048797607, 0.0385437, -0.08557129, -0.047424316, 0.0032539368, -0.020126343, -0.0075302124, -0.007270813, 0.038391113, 0.03060913, 0.046051025, -0.006072998, 0.015914917, -0.05456543, -0.008453369, -0.024749756, -0.008842468, -0.037139893, -0.018127441, 0.0362854, 0.002822876, 0.018966675, 0.022918701, -0.022033691, -0.060150146, -0.0035381317, -0.00054359436, 0.015083313, -0.023269653, 0.024353027, 0.010101318, 0.027648926, -0.009170532, 0.03741455, 0.0068740845, -0.014953613, 0.0435791, -0.0042037964, 0.028320312, -0.024856567, -0.12731934, -0.033813477, -0.03765869, 0.038757324, 0.0847168, 0.01638794, 0.0057754517, 0.03466797, -0.039520264, 0.036895752, -0.012390137, 0.0026741028, -0.00028920174, 0.024749756, 0.02355957, -0.015037537, -0.00730896, -0.0050468445, -0.036468506, -0.06390381, 0.06707764, 0.017303467, -0.036499023, -0.011230469, -0.044891357, -0.009918213, -0.009353638, -0.060577393, -0.020309448, -0.010025024, -0.011734009, 0.026519775, -0.011123657, -0.00036120415, -0.016662598, 0.0051879883, -0.029281616, 0.017242432, 0.006641388, 0.023468018, -0.0065345764, 0.038360596, 0.022949219, 0.04953003, -0.006793976, -0.029785156, -0.030563354, 0.041503906, 0.04196167, -0.024307251, 0.059692383, -0.035125732, 0.015579224, 0.036132812, 0.013626099, -0.030258179, 0.045074463, 0.02645874, 0.03265381, 0.029632568]}, "B08BF7G65N": {"id": "B08BF7G65N", "original": "Brand: SNAN\nName: 32\" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion\nDescription: \nFeatures: \u3010Easy to Assemble\u3011 This upgraded this 32 inch fire pit table to meet customers' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base.\n\u3010Excellent Accessories\u3011Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table.\n\u3010Safe And Test\u3011This 32 inch outdoor fire table is CSA certified. This propane fire pit table\u2018s heat output is 50,000 BTU. Every fire table's Ignition function is tested before leaving the factory and ignition device can easily adjust flame.\n\u3010High-class Materials & Quality Assurance\u3011The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life.\n\u3010Service\u3011It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.\n", "metadata": {"Name": "32\" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion", "Brand": "SNAN", "Description": "", "Features": "\u3010Easy to Assemble\u3011 This upgraded this 32 inch fire pit table to meet customers' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base.\n\u3010Excellent Accessories\u3011Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table.\n\u3010Safe And Test\u3011This 32 inch outdoor fire table is CSA certified. This propane fire pit table\u2018s heat output is 50,000 BTU. Every fire table's Ignition function is tested before leaving the factory and ignition device can easily adjust flame.\n\u3010High-class Materials & Quality Assurance\u3011The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life.\n\u3010Service\u3011It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018356323, 0.04748535, -0.120666504, -0.036346436, 0.039916992, -0.037078857, -0.017929077, 0.025253296, -0.066101074, 0.008514404, -0.03387451, 0.03479004, -0.00881958, -0.020690918, 0.04598999, -0.04144287, 0.023727417, 0.00065612793, 0.023834229, -0.031402588, 0.03741455, -0.012123108, -0.005558014, 0.11071777, 0.028213501, -0.031311035, 0.0057296753, -0.024353027, 0.06781006, 0.018737793, 0.03274536, -0.024932861, 0.061645508, -0.0032672882, -0.06365967, -0.038085938, -0.026412964, -0.006290436, -0.057922363, 0.040283203, -0.0036468506, 0.02204895, -0.015640259, -0.0069084167, -0.020324707, -0.050964355, 0.016189575, -0.023971558, -0.0017614365, -0.017150879, -0.03643799, 0.02281189, -0.029083252, -0.0015239716, 0.008514404, -0.005268097, 0.0008459091, 0.015525818, 7.665157e-05, -0.008453369, -0.0035495758, 0.041107178, 0.0075263977, 0.016784668, -0.03942871, 0.031021118, 0.10430908, -0.0184021, 0.032073975, -0.060272217, -0.036346436, 0.06488037, 0.010917664, 0.01763916, -0.026550293, -0.0073242188, 0.013916016, 0.026367188, 0.018417358, 0.015617371, -0.041809082, -0.012825012, 0.019561768, -0.038269043, 0.016174316, -0.008270264, -0.024749756, 0.01134491, 0.008079529, -0.043914795, -0.001964569, 0.006755829, -0.001964569, 0.0009908676, -0.036590576, -0.034210205, -0.011405945, -0.036315918, 0.039001465, 0.00089359283, 0.025650024, -0.055847168, 0.007926941, -0.016311646, -0.002407074, 0.07366943, 0.029846191, -0.017410278, -0.02255249, -0.027053833, -0.009033203, -0.046905518, -0.020141602, -0.04876709, -0.027313232, 0.035003662, -0.021743774, -0.037902832, 0.023468018, -0.03955078, -0.017608643, -0.028656006, 0.0074653625, 0.014854431, 0.05203247, 0.03778076, -0.039978027, 0.015525818, -0.024337769, 0.0024299622, 0.0013437271, 0.0259552, 0.016693115, 0.04949951, -0.023086548, 0.0071258545, 0.02986145, -0.011108398, 0.022720337, -0.019760132, -0.0017538071, 0.012893677, 0.05206299, -0.0019216537, -0.021881104, -0.0052108765, 0.03427124, 0.03100586, -0.04458618, -0.04385376, -0.0016403198, 0.04260254, 0.025238037, 0.033721924, -0.037628174, 0.0036697388, 0.019943237, -0.023849487, -0.028839111, -0.056671143, 0.042175293, -0.011550903, -0.018554688, 0.016494751, -0.021209717, 0.003042221, -0.010665894, 0.00092983246, 0.011520386, 0.060424805, -0.02166748, 0.047607422, 0.022033691, 0.03164673, 0.012672424, -0.014984131, -0.044128418, 0.07879639, 0.08416748, -0.08947754, -0.030563354, -0.033203125, 0.16308594, -0.027236938, 0.011802673, -0.029953003, 0.006828308, -0.022125244, 0.02810669, 0.010734558, -0.011276245, 0.002538681, -0.024246216, -0.005580902, 0.0023593903, -0.016662598, -0.04434204, -0.022232056, -0.013183594, 0.012191772, -0.011154175, 0.006511688, -0.004776001, -0.0067100525, 0.04940796, -0.03387451, 0.017318726, 0.024169922, 0.016601562, 0.030014038, -0.010559082, -0.036193848, 0.0008506775, 0.019622803, 0.002714157, 0.0017375946, -0.024612427, 0.012374878, -0.004825592, -0.015007019, 0.0026779175, -0.018325806, 0.005619049, -0.010955811, 0.0033550262, -0.06512451, 0.01272583, -0.037750244, 0.015487671, -0.023330688, 0.009864807, 0.024597168, 0.05432129, 0.06500244, -0.010810852, 0.048065186, 0.08691406, 0.059539795, -0.024597168, -0.04168701, 0.02230835, -0.02947998, -0.029037476, 0.009918213, -0.022705078, -0.0463562, 0.002281189, -0.006916046, -0.017532349, 0.0158844, 0.020767212, 0.029724121, 0.021881104, 0.040802002, -0.049438477, 0.037506104, -0.02003479, 0.0001887083, -0.014884949, 0.015541077, -0.009521484, 0.018600464, 0.009101868, -0.0012683868, 0.021743774, -0.033477783, 0.023895264, 0.024841309, -0.025146484, -0.024230957, 0.034851074, 0.059173584, 0.014442444, 0.019592285, -0.050628662, 0.014656067, 0.04611206, -0.019882202, -0.018432617, -0.008049011, -0.03652954, -0.04071045, -0.008079529, -0.0066490173, 0.020217896, -0.0033092499, 0.031158447, -0.029281616, -0.064331055, -0.009880066, 0.047790527, -0.02897644, -0.024597168, -0.052459717, -0.012649536, -0.009971619, 0.04309082, -0.024108887, 0.03152466, -0.024810791, 0.002922058, 0.0440979, -0.022888184, 0.0067749023, 0.007221222, 0.026321411, 0.013679504, 0.027679443, 0.02557373, 0.0057144165, -0.012611389, 0.016525269, 0.021224976, 0.014266968, 0.014709473, -0.0036754608, -0.013618469, 0.047210693, 0.026748657, 0.058807373, -0.029693604, 0.016738892, 0.008239746, -0.011947632, 0.020126343, -0.0046958923, -0.03503418, 0.0024108887, -0.024124146, 0.018173218, 0.05429077, 0.0037384033, 0.011009216, -0.012817383, 0.012588501, -0.0019330978, -0.0024719238, 0.022125244, -0.022750854, -0.058044434, -0.021759033, -0.013999939, -0.005695343, 0.0181427, -0.04940796, -0.04019165, 0.0044822693, 0.0053901672, -0.037475586, -0.030014038, 0.04626465, -0.010803223, 0.0068855286, 0.011245728, 0.012031555, 0.008956909, -0.004585266, -0.01184082, -0.01612854, -0.042022705, -0.0016441345, -0.013977051, -0.011512756, -0.026748657, 0.04525757, -0.030181885, -0.048614502, -0.000688076, -0.027114868, -0.012809753, 0.0904541, -0.025802612, -0.0725708, -0.05606079, -0.07965088, -0.02709961, 0.03237915, -0.057495117, -0.011604309, -0.0005669594, -0.024398804, 0.021331787, -0.05807495, 0.022476196, 0.0074653625, 0.0019111633, 0.012321472, 0.012168884, 0.038909912, 0.013870239, 0.045013428, 0.011512756, -0.027938843, -0.026977539, 0.013084412, 0.0060539246, -0.014038086, -0.011520386, -0.026931763, -0.018615723, -0.06542969, -0.009063721, -0.011703491, -0.04006958, 0.0099105835, -0.070129395, -0.03567505, -0.04638672, 0.0069770813, 0.020965576, 0.008628845, 0.0014696121, -0.0074157715, 0.0032539368, 0.011878967, -0.016433716, -0.0015335083, -0.0066108704, -0.017837524, -0.012825012, 0.042266846, -0.06512451, 0.025344849, 0.01890564, 0.00034070015, -0.022018433, -0.02142334, -0.015075684, -0.018508911, 0.050048828, -0.01763916, -0.0016889572, 0.009162903, 0.0071258545, -0.0075683594, 0.002702713, -0.019348145, -0.017150879, 0.0056495667, -0.046691895, -0.02293396, -0.019836426, -0.028381348, 0.016555786, 0.0022602081, -0.023590088, -0.005329132, -0.019042969, -0.014961243, -0.0107040405, -0.0071792603, 0.011741638, 0.0135269165, 0.008216858, -0.004497528, 0.019226074, -0.0017881393, 0.03527832, -0.02331543, -0.010101318, -0.01361084, -0.0340271, 0.038635254, -0.0077781677, -0.0037555695, -0.012168884, 0.0007362366, 0.017227173, -0.010650635, -0.005344391, 0.006225586, 0.04916382, -0.00088071823, 0.0055770874, 0.007549286, 0.018447876, -0.004840851, 0.01789856, -0.03829956, -0.0065345764, -0.025299072, -0.017425537, -0.06713867, 0.04751587, 0.095336914, -0.03829956, 0.07293701, 0.049591064, 0.019088745, 0.04345703, 0.07476807, 7.44462e-05, 0.040863037, 0.06085205, 0.015792847, -0.011772156, 0.0014791489, 0.02444458, 0.012451172, 0.0063209534, -0.023590088, 0.013977051, 0.0060691833, -0.019577026, -0.033111572, 0.030273438, 0.009902954, -0.015838623, 0.013999939, -0.066467285, -0.017440796, -0.059631348, -0.021820068, 0.023742676, -0.03491211, -0.008850098, -0.038909912, 0.019851685, -0.058624268, -0.0047416687, 0.0099487305, 0.025161743, 0.002916336, 0.031402588, 0.03326416, -0.014961243, -0.019943237, 0.0060195923, -0.007911682, -0.015617371, 0.0044670105, 0.029953003, -0.02142334, 0.004760742, 0.021957397, 0.012313843, -0.008857727, 0.018096924, -0.02003479, -0.041229248, -0.01411438, -0.004962921, 0.022109985, -0.026184082, -0.0052757263, -0.026016235, -0.03024292, -0.004737854, -0.08312988, 0.016998291, -0.041137695, -0.028778076, -0.071777344, -0.04559326, -0.011299133, -0.028274536, -0.02809143, 0.00699234, -0.0011634827, -0.0039749146, 0.030258179, 0.016616821, -0.05899048, 0.0047340393, -0.04852295, -0.0051727295, -0.006099701, -0.050933838, 0.0028152466, -0.022018433, 0.00944519, -0.0184021, 0.07324219, 0.04977417, -0.024963379, -0.036254883, 0.014427185, -0.00018429756, 0.059417725, 0.017929077, 0.0062561035, -0.024719238, -0.03591919, -0.053100586, -0.016159058, 0.0067443848, -0.007896423, -0.009963989, -0.03390503, -0.0031719208, 0.006855011, -0.0045280457, 0.04800415, -0.007484436, -0.016433716, -0.030181885, 0.021453857, -0.08807373, -0.09094238, -0.0095825195, -0.019119263, -0.012207031, -0.022827148, -0.0034637451, 0.10583496, 0.027404785, 0.05343628, 0.01890564, 0.0004529953, 0.033294678, -0.02331543, 0.03253174, -0.035827637, -0.010269165, -0.036865234, 0.0032539368, -0.08685303, 0.031982422, -0.00818634, 0.022125244, 0.0061149597, -0.02607727, 0.005077362, -0.034179688, -0.008171082, -0.025619507, 0.047607422, 0.015327454, -0.017181396, -0.038360596, -0.03427124, -0.0209198, -0.014251709, 0.0032958984, 0.031280518, -0.016235352, -0.014907837, 0.0010223389, -0.0209198, -0.019332886, 0.00015592575, 0.019470215, -0.0090408325, -0.008110046, 0.041809082, -0.0010232925, -0.001490593, 0.0064811707, -0.0231781, -0.01725769, -0.014663696, -0.018005371, -0.018600464, -0.0009288788, 0.0065841675, -0.0013961792, -0.023651123, 0.054992676, 0.0059280396, -0.006149292, -0.039123535, 0.03817749, 0.044952393, -0.056488037, 0.022018433, -0.006816864, 0.014289856, 0.03314209, -0.014183044, 0.021514893, -0.0007815361, -0.012260437, 0.05419922, 0.013694763, -0.035217285, -0.05822754, 0.10418701, -0.024505615, 0.0037727356, -0.04333496, 0.02722168, -0.006465912, -0.03704834, -0.033172607, 0.016921997, 0.06756592, -0.0418396, -0.04147339, 0.03982544, 0.019073486, -0.03665161, -0.026306152, 0.04043579, -0.031585693, -0.011062622, 0.051208496, 0.0016078949, 0.03286743, 0.008483887, -0.031204224, 0.056488037, 0.024856567, -0.048095703, 0.007648468, -0.02458191, -0.04058838, -0.0141067505, -0.016586304, -0.0056533813, 0.012710571, -0.02859497, -0.025619507, -0.013381958, 0.01625061, -0.022628784, -0.077697754, -0.09692383, 0.0181427, -0.013870239, 0.029312134, -0.027862549, 0.01499176, 0.029144287, 0.0067825317, 0.035125732, -0.017837524, -0.047424316, -0.010009766, 0.0016117096, 0.002243042, 0.0030574799, -0.047027588, 0.070373535, -0.03149414, -0.058898926, -0.024414062, 0.0006971359, 0.021209717, -0.039398193, 0.051727295, -0.007583618, 0.00090932846, 0.012313843, -0.013679504, -0.031463623, -0.011756897, 0.0011348724, -0.05206299, 0.010551453, -0.021972656, 0.06591797, -0.018692017, -0.03161621, -0.012435913, 0.051818848, -0.0017414093, -0.07141113, -0.027542114, -0.017150879, 0.03604126, -0.0010232925, 0.0071411133, -0.020095825, -0.007003784, -0.037750244, -0.005317688, 0.0014476776, -0.026916504, 0.0072288513, 0.0069999695, -0.0039978027, 0.0005788803, -0.008392334, 0.019256592, 0.0011558533, -0.001958847, 0.0209198, -0.028686523, -0.0025901794, 0.0030784607, 0.0031585693, 0.05307007, 0.0072364807, 0.024795532, -0.042297363, 0.017623901, 0.044921875, 0.03527832, -0.03488159, 0.053131104, -0.0017614365, 0.025558472, 0.02444458, 0.011245728, 0.024291992, 0.0050201416, -0.03805542, 0.012290955, 0.047058105, -0.023391724, 0.011695862, -0.05126953, 0.026443481, 0.008232117, -0.010192871, 0.026062012, 0.004261017, 0.043548584, -0.010772705, 0.047607422, 0.011871338, 0.015151978, -0.0036697388, 0.0061798096, 0.0065345764, 0.031158447, 0.01121521, -0.0047073364, 0.008399963, -0.027664185, -0.0046157837, 0.046813965, 0.0116119385, -0.0011959076, -0.008552551, -0.016677856, 0.0446167, -0.04525757, -0.008598328, -0.03286743, -0.023605347, -0.041778564, -0.037719727, -0.011497498, -0.023880005, 0.01247406, -0.024429321, 0.08111572, -0.014709473, 0.008049011, 0.0045661926, -0.0008530617, -0.028411865, -0.01914978, 0.038879395, -0.048919678, -0.01222229, 0.013023376, -0.019897461, 0.05001831, 0.04345703, 0.030548096, 0.051940918, -0.002943039, 0.010009766, -0.005584717, -0.00045394897, -0.011932373, -0.0070648193, 0.044921875, 0.014266968, 0.0018510818, 0.013305664, 0.015602112, 5.2034855e-05, 0.014694214, -0.022460938, 0.034454346, -0.031585693, 0.04345703, 0.023086548, -0.009597778, -0.01448822, -0.014167786, -0.016647339, 0.018203735, -0.0007343292, 0.018035889, 0.027755737, -0.0021800995, -0.05606079, 0.0051231384, 0.017227173, -0.01776123, 0.03012085, -0.021026611, -0.015022278, 0.044281006, -0.0034103394, -0.0028839111, 0.03781128, -0.016418457, 0.0026836395, 0.042785645, 0.014228821, -0.0118637085, 0.026184082, 0.005809784, -0.0064964294, -0.034698486, 0.0259552, -0.020217896, 0.03414917, -0.025360107, -0.0034427643, -0.014190674, -0.029815674, -0.014251709, 0.014862061, -0.026412964, 0.008407593, 0.03086853, -0.0063171387, -0.0345459, 0.0019464493, 0.036956787, -0.02947998, -0.020950317, 0.024124146, 0.038269043, 0.016479492, 0.06866455, -0.01574707, -0.03479004, -0.07635498, -0.0151901245, -0.015220642, 0.026153564, -0.023086548, 0.030014038, 0.037475586, 0.0056419373, 0.01448822, -0.015838623, 0.029251099, -0.019546509, -0.02027893, -0.010269165, -0.02947998, 0.070495605, 0.0038604736, -0.017318726, -0.024795532, 0.022628784, 0.009223938, 0.015151978, 0.026290894, 0.0062026978, -0.08392334, -0.019332886, -0.052215576, 0.010917664, -0.023376465, -0.03111267, 0.025161743, -0.0075798035, -0.042541504, 0.027740479, 0.049560547, 0.050750732, 0.03100586, -0.002691269, 0.02645874, -0.031982422, -0.035247803, -0.04949951, -0.028823853, 0.027938843, 0.0041923523, -0.06213379, 0.017089844, 0.00017130375, -0.019378662, -0.013298035, 0.013504028, 0.0072402954, -0.00016474724, 0.021835327, 0.008476257, -0.011505127, -0.0053138733, 0.0027618408, -0.042877197, -0.019744873, -0.010276794, 0.016113281, -0.01058197, 0.013244629, -0.04171753, 0.033050537, -0.013702393, -0.04272461, -0.03326416, -0.02368164, -0.011161804, 0.031829834, -0.017105103, 0.047576904, -0.028564453, -0.00021147728, -0.03652954, 0.017684937, 0.023590088, 0.03564453, -0.04699707, 0.011199951, 0.007709503, 0.09259033, -0.03933716, -0.041412354, -0.059143066, 0.022888184, -0.020019531, 0.017837524, 0.037384033, -0.015602112, 0.005756378, 0.069885254, -0.025909424, -0.015144348, 0.015296936, 0.06774902, 0.028747559, 0.002904892]}, "B08T21432X": {"id": "B08T21432X", "original": "Brand: MCP Island Grills\nName: Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover\nDescription: *New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.\nFeatures: High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas!\nBlue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000.\n6 Burners each at 11,000 BTU's, 1 Cast Iron Side Burner at 12,000 BTU's, 1 Infrared Rear Burner at 12,000 BTU's, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides).\nOverall Exterior Grill Size: 89.5\" W x 25\" D x 47\" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24\" if you do not install the side towel racks on left / right side. Counter depth: 22.75\" not including the handles and knobs. Counter height: 35.5\", With the grill lid open overall height: 60\". If the side sink and side table are not installed Width: 58\".\nSink Basin Size: 10.5\" Wide x 12.5\" Deep x 7\" Tall. Rotisserie Size: Actual rod is 44\" long, but 38\" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38\" Wide x 18\" Deep. Warming rack on top is 37.5\" Wide x 6\" Deep. Side Burner: 13.25\" Deep x 10.5\".\n", "metadata": {"Name": "Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover", "Brand": "MCP Island Grills", "Description": "*New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.", "Features": "High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas!\nBlue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000.\n6 Burners each at 11,000 BTU's, 1 Cast Iron Side Burner at 12,000 BTU's, 1 Infrared Rear Burner at 12,000 BTU's, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides).\nOverall Exterior Grill Size: 89.5\" W x 25\" D x 47\" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24\" if you do not install the side towel racks on left / right side. Counter depth: 22.75\" not including the handles and knobs. Counter height: 35.5\", With the grill lid open overall height: 60\". If the side sink and side table are not installed Width: 58\".\nSink Basin Size: 10.5\" Wide x 12.5\" Deep x 7\" Tall. Rotisserie Size: Actual rod is 44\" long, but 38\" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38\" Wide x 18\" Deep. Warming rack on top is 37.5\" Wide x 6\" Deep. Side Burner: 13.25\" Deep x 10.5\".", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0052719116, 0.023452759, -0.03677368, 0.0018625259, -0.006210327, -0.033996582, 0.008102417, -0.01826477, -0.0003798008, -0.010444641, -0.06286621, 0.04171753, -0.029083252, 0.008476257, 0.01625061, -0.04324341, 0.0044136047, 0.023864746, 0.016952515, -0.026168823, -0.009994507, -0.02267456, 0.001250267, 0.015701294, 0.0602417, -0.050201416, -0.032287598, 0.04043579, 0.040283203, 0.03250122, 0.03475952, -0.022659302, 0.04953003, -0.0039100647, -0.03665161, 0.0017576218, 0.023529053, -0.019073486, -0.0036258698, 0.0029315948, 0.053466797, -0.04260254, -0.031555176, 0.011100769, -0.0033359528, -0.03262329, 0.06677246, -0.040039062, 0.008544922, 0.029693604, 0.015365601, 0.033172607, 0.023513794, 0.0044517517, 0.0031852722, 0.020324707, -0.0026931763, 0.005104065, 0.00070524216, -0.009597778, 0.0066337585, 0.019897461, 0.024658203, 0.02609253, -0.023330688, -0.0067329407, 0.10064697, -0.006225586, -0.027999878, -0.059143066, 0.029342651, 0.045654297, 0.0003569126, 0.0096206665, -0.0057754517, -0.043670654, 0.036590576, -0.005622864, -0.009986877, 0.038269043, -0.047943115, -0.014335632, 0.0050735474, -0.048095703, -0.00667572, -0.02519226, -0.019424438, 0.018844604, -0.029953003, -0.02168274, -0.012245178, -0.019699097, -0.04949951, 0.04888916, 0.004852295, -0.0037441254, -0.05432129, -0.041625977, 0.0078125, 0.037628174, 0.02319336, -0.03338623, 0.051757812, -0.019302368, -0.016540527, 0.06921387, 0.014572144, 0.069885254, 0.011520386, -0.0035171509, 0.0022659302, -0.022613525, -0.019607544, -0.03668213, -0.019104004, 0.04272461, -0.018127441, -0.0047187805, 0.022369385, 0.0060653687, -0.052215576, -0.033325195, 0.0054740906, 0.030227661, 0.03656006, 0.032958984, 0.0045204163, 0.010253906, -0.035003662, 0.025894165, -0.039276123, -0.0040283203, 0.040985107, 0.056671143, 0.017440796, -0.024429321, 0.023239136, 0.026229858, 0.010108948, 0.018096924, 0.007446289, -0.034210205, -0.0029525757, 0.030380249, -0.025054932, 0.02809143, 0.016220093, 0.011543274, -0.0149002075, -0.06854248, 0.019836426, -0.03213501, 0.033569336, 0.02218628, -0.04550171, -0.005809784, 0.021118164, -0.025802612, -0.017547607, -0.05545044, -0.011779785, -0.012420654, -0.0007376671, -0.049987793, -0.05819702, 0.0112838745, -0.016326904, 0.007827759, 0.012191772, 0.062286377, -0.04071045, -0.0012845993, -0.00013077259, 0.008163452, -0.018707275, 0.014907837, -0.02319336, 0.038360596, 0.06021118, -0.097351074, -0.07171631, -0.061157227, 0.09161377, -0.044128418, -0.043884277, 0.0368042, -0.0036411285, 0.05130005, 0.025161743, 0.005897522, 0.015144348, -0.00579834, 0.00018203259, -0.028015137, 0.04812622, -0.00023722649, -0.04058838, -0.008613586, 0.0054130554, -0.023422241, -0.026428223, 0.02583313, -0.0056991577, 0.005290985, -0.0012168884, -0.005115509, 0.008590698, 0.022994995, 0.0390625, 0.0026855469, -0.0022296906, 0.013999939, -0.0036373138, -0.06536865, -0.06286621, 0.014724731, -0.001821518, 0.014190674, 0.016159058, 0.016143799, 0.04498291, -0.0020523071, 0.009124756, -0.006038666, 0.058013916, 0.0074043274, -0.0131073, -0.0076942444, 0.06628418, 0.03543091, -0.04373169, -0.0014533997, 0.0385437, 0.025756836, -0.01802063, 0.035369873, 0.07147217, 0.037506104, -0.008308411, -0.01638794, 0.014678955, 0.010940552, -0.010177612, 0.002084732, -0.017364502, -0.05606079, 0.011474609, -0.017730713, -0.017593384, -0.042297363, 0.0011367798, -0.036224365, 0.04800415, -0.014175415, -0.02670288, 0.03062439, -0.033813477, -0.014884949, -0.015556335, 0.0068740845, -0.0005493164, 0.022644043, 0.01701355, -0.004837036, -0.007896423, 0.010391235, 0.0033359528, 0.01574707, -0.02998352, 0.0046844482, 0.033691406, 0.02230835, -0.010803223, 0.0129852295, -0.007701874, 0.016662598, -0.024719238, 0.032440186, -0.016799927, -0.017028809, -0.0021648407, -0.028930664, -0.033416748, -0.0031013489, 0.026535034, -0.011856079, 0.025115967, 0.04864502, -0.018539429, -0.017150879, 0.019317627, -0.00762558, -0.008636475, -0.026977539, -0.0098724365, -0.01689148, 0.05432129, 0.013771057, 0.013725281, -0.0095825195, 0.005592346, 0.035125732, -0.030517578, 0.004142761, -0.005542755, -0.0121154785, 0.003206253, 0.022140503, 0.004146576, -0.05319214, 0.03378296, 0.03503418, 0.027297974, -0.037139893, 0.06878662, 0.026351929, 0.012832642, 0.040740967, 0.037384033, 0.021697998, -0.051513672, 0.027557373, -0.056884766, -0.027069092, 0.017578125, 0.048187256, -0.06359863, -0.005142212, -0.014213562, 0.011360168, 0.012916565, -0.0158844, -0.009162903, 0.0066604614, 0.0038070679, 0.0066833496, 0.010520935, -0.017471313, -0.014823914, -0.033447266, 0.00063943863, -0.00762558, -0.012924194, -0.0074653625, -0.00642395, -0.0053977966, 0.0014648438, 0.009895325, -0.06976318, -0.0022773743, 0.0025253296, -0.02947998, -0.023605347, -0.022399902, -0.023345947, -0.005519867, 0.009101868, -0.06213379, -0.04058838, -0.07354736, -0.040008545, -0.0015506744, -0.048797607, 0.003276825, 0.02607727, -0.0037441254, -0.035858154, 0.020126343, -0.00945282, 0.0030937195, 0.0020122528, -0.0016880035, -0.016937256, -0.021865845, -0.026550293, -0.009399414, 0.059143066, -0.021377563, -0.017944336, 0.009376526, 0.0027256012, 0.0138549805, -0.0011758804, -0.004512787, -0.008255005, 0.037902832, 0.03982544, 0.03652954, -0.013946533, -0.02720642, -0.012634277, 0.04095459, -0.033477783, -0.01600647, 0.006389618, 0.016662598, 0.008888245, -0.058135986, -0.007633209, -0.03869629, -0.06518555, -0.0059547424, -0.0034313202, -0.04348755, 0.015182495, -0.09246826, -0.03353882, -0.05203247, 0.0079193115, 0.03237915, 0.018707275, 0.032226562, -0.0014238358, 0.05316162, -0.004886627, -0.019470215, 0.024383545, -0.0034446716, 0.018798828, -0.018676758, 0.023086548, -0.046813965, 0.026138306, 0.018554688, -0.007003784, 0.014511108, -0.0025577545, 0.012817383, -0.014472961, 0.006389618, 0.002418518, -0.025024414, -0.00027871132, 0.012268066, -0.03491211, -0.009666443, -0.006137848, -0.02319336, 0.04537964, -0.05947876, -0.029678345, 0.009849548, -0.018722534, 0.005794525, -0.00969696, -0.037384033, 0.019958496, -0.03933716, -0.0013875961, -0.03692627, -0.015205383, 0.012588501, 0.018173218, 0.021957397, -0.0028266907, 0.054779053, -0.003993988, 0.04397583, 0.029434204, -0.0072135925, -0.0034637451, -0.04034424, 0.021148682, 0.016799927, -0.025360107, -0.00308609, 0.02279663, 0.00068616867, -0.035339355, -0.0039901733, -0.033843994, 0.05218506, 0.033966064, -0.003282547, -0.019195557, -0.042938232, 0.052246094, 0.04727173, -0.04135132, -0.06365967, -0.027786255, -0.020706177, -0.060913086, 0.12188721, 0.067871094, -0.01398468, 0.08880615, 0.10473633, -0.009803772, 0.015914917, 0.0004799366, -0.0054016113, -0.0014839172, 0.019485474, -0.023147583, 0.013717651, 0.012832642, 0.013076782, 0.023986816, 0.02720642, -0.052703857, 0.015525818, 0.013618469, -0.0345459, -0.061920166, 0.03781128, 0.040985107, -0.049346924, -0.027832031, -0.047424316, -0.039031982, -0.078308105, -0.036621094, -0.02180481, -0.023117065, -0.038909912, 0.01725769, -0.020080566, -0.014587402, 0.0017709732, -0.007713318, -0.010284424, 0.022125244, 0.0061569214, 0.008850098, 0.027740479, -0.01134491, 0.038330078, 0.004169464, 0.007095337, 0.0065231323, 0.0023498535, 0.029556274, 0.015777588, -0.00046944618, -0.0030784607, -0.0047798157, 0.046813965, -0.025299072, -0.07800293, -0.012969971, 0.028366089, 0.026977539, -0.04260254, -0.014968872, -0.01713562, -0.016983032, 0.0061950684, -0.030334473, -0.0024986267, -0.018585205, -0.00730896, -0.089538574, -0.044311523, 0.012199402, 0.01689148, -0.008743286, 0.0048446655, -0.033691406, -0.026397705, -0.008430481, -0.0020580292, -0.047851562, 0.025604248, -0.014373779, 0.0002670288, 0.057922363, 0.0011386871, 0.0748291, -0.050231934, 0.009811401, -0.010009766, 0.1026001, -0.010261536, 0.03579712, -0.05908203, -0.018035889, 0.0074539185, 0.037353516, 0.03942871, -0.020721436, 0.029541016, -0.017654419, -0.0016241074, -0.018569946, -0.0011558533, 0.017074585, -0.0037899017, -0.007091522, -0.011871338, 0.028289795, -0.02722168, 0.008033752, -0.013000488, 0.0011377335, 0.006111145, -0.0014562607, -0.036987305, -0.007648468, 0.009155273, -0.03010559, 0.003238678, -0.010269165, -0.0178833, 0.02848816, 0.04043579, 0.019485474, -0.05142212, 0.0067253113, 0.021606445, -0.010765076, 0.04034424, -0.053222656, -0.007949829, -0.04714966, -0.0062408447, -0.043395996, 0.06463623, 0.06903076, -0.004196167, 0.01626587, 0.035064697, -0.009315491, -0.043914795, -0.033569336, 0.04083252, -0.030532837, -0.00945282, -0.025268555, 0.050079346, 0.019989014, 0.00051164627, -0.009346008, 0.012779236, 0.014503479, -0.046936035, 0.008262634, -0.048461914, 0.012649536, 0.04510498, 0.016830444, 0.013374329, 0.008239746, -0.058776855, 0.0357666, -0.018966675, -0.0149002075, 0.024734497, -0.01146698, -0.0017747879, 0.015899658, -0.010215759, -0.011047363, -0.029418945, -0.011276245, -0.006591797, -0.028503418, 0.012489319, 0.019195557, -0.011039734, -0.033111572, 0.035888672, -0.01927185, 0.013252258, 0.027679443, -0.039489746, -0.031433105, 0.035125732, -0.06274414, 0.0869751, 0.02319336, -0.072143555, 0.0048713684, -0.024612427, 0.021087646, -0.034240723, 0.015701294, 0.011878967, -0.00085639954, -0.06347656, -0.0020103455, 0.005882263, 0.037841797, 0.026046753, -0.044128418, 0.04547119, -0.02986145, -0.043426514, 0.008659363, 0.0574646, -0.030075073, -0.03942871, 0.028747559, -0.05697632, -0.07006836, -0.0040626526, 0.007160187, 0.02809143, -0.032226562, -0.030029297, 0.0574646, 0.019729614, -0.052581787, -0.00655365, 0.00048398972, -0.02609253, -0.05758667, -0.014373779, -0.040496826, -0.014480591, -0.035125732, 0.040252686, -0.028930664, -0.00077819824, 0.011375427, -0.012748718, -0.04272461, -0.005683899, -0.036865234, 0.010749817, -0.0045433044, 0.048431396, 0.040008545, -0.041656494, 0.02961731, -0.034240723, -0.016326904, -0.005180359, -0.005252838, 0.005168915, -0.00868988, -0.03665161, 0.06573486, -0.04788208, -0.052642822, -0.055664062, 0.042938232, -0.028274536, -0.03466797, 0.08734131, 0.06008911, 0.020584106, 0.011566162, -0.0051651, -0.06677246, 0.024871826, 0.0026168823, -0.07763672, 0.005756378, -0.034576416, 0.030227661, 0.011306763, -0.02154541, 0.009880066, 0.060668945, 0.04232788, -0.025314331, -0.027694702, -0.020339966, 0.01826477, -0.0099105835, 0.009254456, -0.024002075, -0.020950317, -0.011642456, -0.026245117, -0.019378662, -0.0012931824, -0.013671875, 0.04953003, 0.027648926, -0.024917603, -0.004497528, 0.013298035, -0.037841797, 0.07220459, -0.018951416, -0.0013723373, -0.0057411194, 0.030532837, 0.00356102, 0.04763794, -0.027008057, -0.012313843, -0.0005955696, -0.015686035, 0.030593872, -0.004928589, -0.034606934, -0.015617371, 0.039520264, 0.029129028, 0.006111145, 0.043182373, 0.051483154, 0.024902344, -0.007911682, -0.014297485, -0.014297485, -0.032836914, -0.060333252, -0.029953003, -0.03945923, 0.02255249, 0.0050964355, 0.052581787, 0.019485474, 0.005771637, 0.012771606, -0.01651001, 0.012023926, -0.005405426, -0.0016002655, -0.01737976, -0.019470215, 0.025527954, 0.011352539, 0.01600647, 0.01159668, -0.04812622, -0.0048713684, 0.028167725, -0.008682251, 0.011421204, -0.03640747, -0.0030384064, 0.022232056, -0.038269043, 0.024368286, 0.02684021, -0.017211914, 0.00018942356, -0.07055664, -0.028289795, -0.02017212, 0.016418457, 0.030853271, 0.022155762, 0.013664246, 0.023727417, -0.0038833618, 0.0345459, -0.028823853, 0.00015747547, -0.019424438, 0.016342163, 0.029907227, -0.00818634, 0.011711121, 0.041870117, 0.037017822, -0.02418518, 0.0027828217, 0.0060691833, 0.013702393, -0.012275696, 0.008163452, -0.028717041, -0.009391785, 0.048828125, 0.009918213, -0.021530151, 0.011070251, 0.038146973, 0.013267517, 0.03010559, -0.017227173, 0.02180481, -0.028289795, 0.0385437, 0.034973145, 0.0118255615, -0.03375244, 0.011047363, -0.001657486, 0.014984131, 0.005645752, 0.03543091, 0.036102295, 0.0128479, 0.028274536, 0.05227661, 0.06842041, -0.0028038025, 0.027267456, 0.04055786, -0.017318726, 0.019302368, 0.0051231384, -0.009757996, -0.0010128021, 0.011688232, 0.012680054, 0.043914795, 0.028152466, 0.022003174, 0.04260254, -0.012809753, -0.041381836, -0.018753052, 0.030883789, -0.025970459, 0.054870605, -0.054534912, 0.034942627, -0.024398804, -0.017944336, -0.07556152, -0.031555176, -0.028305054, 0.031982422, -0.021774292, -0.007904053, 0.020812988, -0.0119018555, -0.015991211, -0.07507324, 0.011955261, -0.029220581, 0.04269409, 0.020263672, 0.072509766, -0.04559326, -0.0715332, -0.05987549, 0.028717041, -0.076416016, -0.027679443, -0.039398193, 0.019348145, 0.016784668, -0.0071868896, 0.014419556, 0.09820557, -0.0070381165, 0.00969696, -0.004627228, -0.010932922, -0.03463745, 0.026489258, -0.015838623, -0.004699707, 0.011039734, 0.036834717, 0.011795044, 0.04083252, 0.025039673, -0.014312744, -0.04928589, -0.01689148, -0.0385437, 0.03338623, -0.04727173, 0.0035858154, 0.0009832382, -0.011886597, -0.023483276, -0.0039253235, 0.0345459, 0.017089844, 0.02192688, 0.010398865, 0.010223389, 0.005207062, 0.0008196831, -0.007194519, -0.015174866, -0.02331543, -0.009346008, 0.013450623, 0.04727173, 0.010147095, -0.015037537, -0.021636963, 0.001253128, -0.0132369995, 0.0018424988, -0.003419876, 0.018447876, -0.0064086914, 0.005355835, 0.03253174, -0.030654907, -0.0121536255, 0.050689697, 0.040893555, -0.041168213, -0.03262329, -0.0025596619, -0.018630981, 0.0013217926, -0.027557373, 0.0008735657, -0.068237305, 0.001367569, 0.04434204, -0.018981934, 0.049621582, -0.02960205, -0.0335083, -0.008384705, 0.01423645, 0.012260437, 0.018356323, -0.048797607, 0.06640625, 0.016357422, 0.041931152, -0.053100586, -0.018722534, -0.04336548, 0.019851685, -0.00031542778, 0.023620605, 0.031799316, -0.009841919, 0.024978638, 0.02204895, -0.021850586, 0.034210205, -0.024520874, 0.01398468, -0.033233643, -0.006767273]}, "B000BWFTJE": {"id": "B000BWFTJE", "original": "Brand: King Kooker\nName: King Kooker 24WC 12\" Portable Propane Outdoor Cooker with Wok, 18.5\" L x 8\" H x 18.5\" W, Black\nDescription: \nFeatures: Sport Type: Camping & Hiking\nCountry of origin : United States\nPackage weight : 10 Lbs\nProduct type : Outdoor Living\nPortable propane outdoor cooker with 24-inch bolt-together frame\n", "metadata": {"Name": "King Kooker 24WC 12\" Portable Propane Outdoor Cooker with Wok, 18.5\" L x 8\" H x 18.5\" W, Black", "Brand": "King Kooker", "Description": "", "Features": "Sport Type: Camping & Hiking\nCountry of origin : United States\nPackage weight : 10 Lbs\nProduct type : Outdoor Living\nPortable propane outdoor cooker with 24-inch bolt-together frame", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.054748535, 0.0005364418, -0.0074272156, 0.0023498535, -0.029418945, 0.029129028, -0.056732178, -0.0066375732, -0.08880615, 0.007522583, -0.01701355, 0.05126953, -0.0071868896, -0.0262146, 0.060546875, -0.04257202, 0.025482178, 0.032287598, 0.024719238, -0.015365601, 0.004398346, 0.0048446655, -0.008399963, 0.081726074, 0.021759033, -0.041046143, -0.03302002, 0.02243042, 0.02923584, 0.010169983, 0.010726929, 0.007003784, 0.04522705, -0.005973816, -0.032714844, -0.03286743, -0.0013799667, -0.024368286, -0.056915283, 0.030548096, 0.026260376, -0.01977539, -0.022232056, -0.0055351257, -0.028060913, -0.009429932, 0.018341064, 0.0039138794, 0.0073776245, -0.0033493042, -0.019424438, -0.023757935, 0.00737381, -0.0038909912, -0.0075187683, 0.018997192, 0.043701172, -0.0028209686, 0.015327454, -0.04675293, -0.021377563, 0.029953003, 0.033111572, 0.015792847, -0.06274414, 0.01574707, 0.084106445, -0.028915405, -0.020324707, -0.07861328, -0.0027103424, 0.035827637, 0.005519867, 0.023269653, -0.038116455, -0.04446411, 0.032562256, -0.035827637, 0.013885498, 0.027923584, -0.021759033, -0.02758789, 0.02053833, -0.0418396, -0.010261536, -0.025741577, -0.009048462, 0.007007599, -0.006008148, -0.024765015, -0.009216309, -0.011360168, -0.020339966, 0.02571106, -0.008605957, -0.016235352, -0.054748535, -0.08288574, 0.054870605, -0.0053138733, 0.044433594, -0.03677368, 0.0107040405, 0.009109497, 0.0134887695, 0.109558105, 0.020446777, 0.03479004, 0.030059814, -0.032348633, 0.022918701, 0.005455017, 0.04449463, -0.01210022, -0.0030403137, -0.015060425, 0.004383087, 0.04638672, 0.014083862, 0.014411926, 0.0029907227, -0.0107040405, 0.04385376, -0.04071045, 0.00869751, 0.0003335476, -0.054382324, -0.0039024353, -0.024002075, 0.03652954, -0.0491333, 0.016296387, 0.009635925, 0.013053894, -0.011436462, -0.019012451, 0.012023926, -0.037078857, 0.0042495728, 0.028076172, -0.0546875, -0.018707275, 0.052490234, -0.01335144, -0.05303955, 0.029342651, 0.015716553, 0.0050468445, -0.028030396, -0.061706543, -0.0016517639, -0.028259277, 0.010940552, 0.025650024, 0.01171875, -0.021881104, 0.043304443, -0.04647827, 0.005886078, -0.05303955, -0.022537231, -0.019561768, -0.012176514, 0.0011987686, -0.009689331, 0.014930725, 0.029754639, 0.012054443, 0.016326904, 0.059173584, -0.029342651, 0.020523071, 0.00034475327, 0.020690918, -0.003036499, -0.008125305, 0.02670288, 0.03414917, 0.034118652, -0.037994385, -0.053771973, -0.06173706, 0.08111572, -0.047302246, 0.0020160675, -0.033111572, 0.010612488, -0.02268982, 0.019592285, -0.004070282, 0.0418396, 0.03781128, -0.025558472, 0.014129639, 0.024108887, -0.017059326, -0.047454834, 0.00042510033, -0.0027675629, -0.030212402, 0.006477356, -0.006828308, 0.018600464, 0.011604309, -0.0076446533, -0.009384155, -0.0023670197, 0.0012788773, 0.038146973, 0.032470703, -0.011955261, 0.008552551, 0.007320404, -0.0715332, -0.026062012, 0.031951904, -0.0184021, 0.047424316, 0.02722168, -0.023971558, 0.047180176, -0.027252197, 0.058410645, 0.012565613, 0.04776001, 0.016815186, -0.04547119, -0.0006699562, 0.02748108, 0.020095825, -0.044036865, 0.030639648, 0.057769775, 0.029556274, -0.014160156, 0.023376465, 0.049957275, 0.01725769, -0.008460999, 0.0050354004, 0.008010864, -0.00944519, -0.027557373, 0.027511597, 0.021621704, -0.020690918, -0.0034713745, 0.01713562, -0.040496826, 0.023284912, 0.016036987, 0.014793396, -0.009010315, -0.004261017, -0.058013916, 0.012123108, -0.011054993, 0.023849487, -0.03353882, 0.033599854, -0.013931274, 0.072753906, 0.04446411, 0.014595032, -0.017868042, -0.018005371, 0.027374268, 0.015960693, -0.0023460388, -0.025222778, 0.013969421, 0.027053833, -0.019973755, 0.0075645447, 0.0059432983, -0.01033783, -0.045532227, 0.036071777, -0.056518555, -0.010772705, 0.0037822723, -0.034088135, 0.014709473, 0.006389618, 0.046905518, 0.077697754, 0.040863037, 0.028640747, -0.05065918, -0.026733398, 0.009864807, 0.02230835, -0.0019016266, -0.015129089, -0.0055122375, -0.0016908646, 0.04727173, 0.0034275055, 0.0234375, -0.0362854, -0.031082153, 0.026626587, -0.037200928, 0.02003479, -0.0206604, -0.004558563, -0.01146698, 0.009887695, -0.006816864, -0.02835083, -0.047058105, -0.024871826, 0.04736328, -0.016952515, 0.074035645, 0.024627686, -0.003232956, 0.062683105, -0.0016622543, -0.013084412, 0.0011949539, 0.026748657, -0.018737793, 0.025527954, 0.010803223, -0.007549286, 0.015899658, -0.010314941, -0.0129852295, 0.014854431, -0.0012464523, 0.003818512, 0.018722534, 0.046051025, -0.015388489, -0.00730896, 0.009300232, -0.035369873, -0.015029907, -0.056152344, -0.011505127, 0.025039673, 0.010597229, -0.012084961, 0.012229919, -0.035125732, 0.035949707, 0.016067505, -0.022445679, 0.015319824, 0.00089359283, -0.03491211, 0.039733887, -0.020263672, -0.012275696, -0.027770996, -0.054595947, -0.08081055, -0.07733154, -0.11517334, -0.028289795, -0.026748657, -0.050048828, 0.0181427, 0.038085938, -0.0025634766, -0.03164673, -0.0032100677, -0.03314209, -0.026443481, -0.024398804, -0.0026454926, -0.056365967, -0.023239136, -0.008117676, 0.049835205, 0.039916992, -0.02557373, 0.057403564, 0.026855469, 0.043426514, 0.040771484, 0.00040555, 0.008842468, -0.01626587, 0.056488037, 0.040496826, 0.033599854, -0.010169983, -0.04724121, 0.01689148, 0.07525635, -0.019805908, -0.009933472, -0.009666443, -0.018707275, -0.005012512, -0.025253296, -0.04849243, -0.0071754456, -0.02897644, 0.014373779, 0.0012483597, -0.03643799, -0.0068626404, -0.060699463, -0.024871826, -0.03488159, -0.0063171387, 0.06958008, -0.01576233, 0.018081665, -0.03945923, 0.03894043, -0.011054993, 0.004070282, 0.02230835, -0.018997192, 0.026535034, -0.035064697, 0.025100708, -0.060821533, 0.040740967, 0.028320312, -0.032287598, -0.0022125244, -0.015930176, 0.02204895, -0.021575928, 0.0024547577, -0.010520935, -0.01309967, -0.005874634, -0.021911621, -0.05960083, -0.06323242, -0.0087890625, -0.045532227, 0.05206299, -0.03869629, -0.033691406, -0.050445557, -0.0074157715, 0.0413208, -0.046081543, 0.04724121, -0.05014038, -0.022079468, 0.009887695, 0.0317688, -0.0074386597, 0.0009784698, 0.005710602, 0.022094727, -0.037506104, 0.03466797, 0.0020103455, 0.023864746, 0.0018749237, -0.009399414, 0.011680603, 0.0008277893, -0.053710938, -0.013656616, -0.017471313, -0.007610321, 0.025802612, 0.0046043396, -0.031463623, 0.008628845, -0.038238525, 0.02722168, 0.0038166046, -0.026504517, 0.037597656, -0.0096588135, 0.010002136, 0.030792236, -0.048797607, -0.03643799, -0.036956787, 0.014228821, -0.111206055, 0.028625488, 0.01272583, -0.011947632, 0.014625549, -0.01789856, 0.02746582, -0.02166748, 0.008056641, -0.037200928, 0.015083313, 0.023483276, 0.0046195984, -0.0115356445, 0.0076522827, -0.020965576, -0.0023288727, -0.025238037, -0.022369385, 0.0022411346, 0.027389526, 0.0007505417, -0.06451416, -0.026947021, -0.011924744, -0.015129089, 0.021392822, -0.022109985, -0.025421143, -0.0141067505, -0.08532715, -0.016601562, -0.019424438, 0.016708374, -0.01259613, -0.02835083, -0.011520386, -0.0096588135, -0.008277893, -0.0077171326, 0.018798828, 0.046722412, -0.031707764, -0.0010232925, -0.002910614, 0.0001950264, 0.0017032623, 0.006793976, 0.015434265, -0.0009069443, -0.02999878, -0.015037537, 0.039367676, 0.009819031, 0.0036334991, 0.006298065, -0.029678345, -0.05532837, 0.022521973, 0.05819702, -0.012863159, -0.04876709, -0.000998497, -0.03869629, 0.011222839, -0.012336731, -0.044006348, -0.047027588, 0.0066184998, 0.026931763, -0.11584473, -0.027740479, -0.014305115, 0.033081055, -0.039398193, 0.051696777, -0.03616333, -0.035858154, 0.0075798035, 0.014038086, -0.03353882, -0.014038086, -0.043792725, 0.008491516, 0.022033691, -0.00793457, 0.04397583, -0.08215332, -0.018493652, -0.014312744, 0.09643555, 0.017730713, 0.039916992, 0.0024166107, -0.007896423, -0.011177063, 0.028274536, 0.014892578, -0.012390137, 0.01637268, -0.008270264, -0.029708862, -0.04248047, -0.0018568039, -0.040100098, -0.05038452, -0.07098389, -0.027770996, 0.061767578, 0.01737976, 0.017410278, -0.060302734, 0.002105713, -0.0038871765, 0.004463196, -0.03237915, -0.0713501, -0.01007843, -0.010528564, -0.00039291382, -0.0027713776, -0.013572693, -0.005340576, 0.008850098, 0.0006709099, -0.036376953, -0.06518555, -0.048034668, -0.0062675476, 0.03060913, -0.01737976, -0.04360962, -0.058135986, 0.0657959, -0.05987549, 0.040283203, 0.07678223, 0.0076522827, 0.007041931, 0.007827759, -0.017593384, -0.037719727, -0.0019454956, -0.018188477, -0.0002887249, -0.012283325, -0.018539429, 0.007888794, -0.02420044, 0.0042800903, -0.021469116, -0.025146484, 0.030181885, 0.019638062, -0.009712219, 0.00674057, 0.008140564, -0.004890442, 0.023910522, -0.008674622, -0.009376526, -0.04598999, -0.002445221, -0.03338623, -0.02609253, 0.0143966675, -0.0074691772, -0.016189575, 0.013259888, -0.010177612, -0.060028076, 0.01977539, 0.055664062, -0.03302002, -0.027908325, 0.029067993, -0.028900146, 0.0124053955, -0.008666992, 0.038909912, 0.0124435425, 0.017715454, 0.016189575, -0.032958984, 0.00066804886, 0.034332275, -0.03036499, 0.019699097, 0.014511108, -0.05508423, 0.060424805, -0.007789612, 0.012809753, -0.03842163, 0.01512146, -0.0037078857, -0.008102417, -0.03805542, 0.0048217773, 0.03527832, 0.029312134, 0.051940918, -0.06665039, 0.017593384, -0.004558563, 0.008552551, 0.03390503, 0.07147217, 0.013969421, 0.008804321, 0.05041504, 0.008049011, -0.042877197, 0.039916992, -0.019210815, 0.0152282715, -0.03237915, -0.021957397, 0.00598526, 0.022720337, -0.00062322617, -0.0062332153, -0.03353882, 0.008171082, -0.008384705, 0.011070251, -0.05065918, -0.020629883, -0.018341064, 0.014907837, 0.0105896, -0.0079574585, 0.015350342, -0.040161133, -0.02355957, 0.018630981, -0.03366089, 0.0011615753, -0.0035133362, -0.05493164, -0.0012187958, 0.0020751953, 0.0016059875, -0.006462097, -0.011154175, 0.016296387, 0.011169434, 0.025100708, -0.0033836365, 0.020889282, 0.09008789, -0.0413208, -0.046661377, -0.04763794, 0.042388916, -0.010726929, -0.0001335144, 0.059051514, -0.0048599243, 0.017837524, 0.02748108, 0.007637024, -0.06188965, -0.023071289, -0.0034179688, -0.04727173, 0.010345459, -0.04437256, 0.046447754, 0.0012140274, 0.004432678, 0.0062675476, 0.04849243, 0.03756714, 0.01537323, -0.028137207, -0.025939941, -0.012001038, -0.027923584, 0.016189575, -0.0031147003, 0.003446579, -0.001909256, 0.0012655258, -0.048858643, -0.017349243, 0.0048675537, 0.04498291, 0.057159424, -0.0039024353, 0.010185242, 0.02671814, -0.074279785, 0.051086426, 0.0071754456, -0.041748047, 0.02532959, 0.042510986, 0.02142334, -0.02458191, -0.021484375, -0.0064201355, 0.018600464, 0.010429382, 0.036315918, -0.04067993, -0.0040779114, -0.022964478, 0.012702942, 0.027389526, 0.06365967, 0.025405884, 0.046417236, 0.024520874, 0.00844574, 0.006248474, -0.03353882, -0.019165039, -0.016860962, -0.014572144, 0.0093307495, 0.014717102, -0.0049209595, 0.020614624, 0.029708862, 0.03604126, -0.022827148, -0.014152527, 0.013916016, -0.031799316, 0.03527832, -0.0069351196, -0.0017023087, 0.0036563873, 0.01525116, 0.028274536, -0.044158936, -0.018417358, 0.0045318604, 0.025039673, 0.009101868, 0.016281128, 0.013748169, 0.0065956116, 0.021118164, -0.039031982, 0.021072388, -0.013961792, 0.002790451, -0.012489319, -0.06903076, -0.015098572, -0.0082092285, -0.017333984, -0.03579712, 0.08679199, 0.004085541, -0.009635925, -0.012794495, 0.005622864, -0.008102417, -0.015296936, 0.009994507, 0.017852783, 0.0021820068, -0.0032844543, -0.050994873, 0.009109497, 0.034332275, 0.004180908, -0.014556885, 0.0021705627, 0.034179688, 0.0035057068, 0.017623901, -0.017593384, -0.035095215, 0.018981934, 0.018539429, -0.011360168, 0.0021915436, -0.029312134, 0.036071777, 0.0025558472, -0.01953125, 0.033996582, -0.059051514, 0.04107666, 0.022232056, 0.004398346, 0.030807495, -0.002248764, -0.022018433, 0.034118652, 0.01612854, -0.025619507, 0.025558472, 0.00032830238, 0.011497498, -0.041748047, 0.015319824, -0.07879639, -0.0029411316, 0.009117126, 0.042114258, 0.045166016, 0.016860962, -0.009284973, 0.021728516, 0.01448822, 0.008148193, 0.042510986, 0.025970459, 0.020553589, -0.06298828, 0.03540039, -0.018844604, 0.031402588, -0.06060791, -0.00819397, -0.03173828, -0.0059814453, -0.032287598, 0.0038414001, -0.026992798, -0.042114258, -0.0016641617, -0.043029785, 0.0027122498, -0.010009766, -0.0002667904, 0.05026245, -0.034484863, -0.05569458, -0.029907227, 0.029464722, 0.0061454773, 0.03186035, 0.010360718, 0.049041748, -0.0075531006, -0.072021484, -0.05545044, 0.034576416, -0.059020996, -0.026412964, -0.030761719, -0.01637268, -0.026107788, -0.022598267, 0.02456665, 0.035827637, 0.019638062, 0.005130768, -0.031158447, -0.020629883, -0.0034160614, 0.054840088, -0.0051345825, -0.0129776, -0.03591919, 0.015129089, 0.025436401, -0.017150879, 0.06137085, 0.0073928833, -0.055847168, -0.02154541, -0.04031372, -0.005554199, -0.032714844, 0.016418457, 0.00043559074, -0.022247314, -0.03967285, 0.022277832, 0.025283813, 0.03866577, 0.00868988, 0.035858154, 0.040130615, -0.00087690353, -0.064819336, -0.03225708, -0.033111572, 0.023025513, 0.059906006, 0.017089844, -0.0026931763, 0.03781128, -0.020080566, 0.029312134, 0.0013532639, -0.00089788437, 0.015563965, 0.01461792, -0.0071487427, 0.0018815994, -0.007534027, 0.04916382, 0.008682251, -0.01828003, 0.036224365, -0.0012454987, -0.00011205673, 0.021347046, -0.03717041, -0.020126343, -0.0023784637, 0.011634827, -0.026641846, -0.024414062, 0.021133423, 0.021697998, 0.0041618347, 0.0039138794, 0.007522583, -0.008811951, -0.041870117, 0.0044059753, 0.011772156, -0.0067977905, -0.016204834, 0.03656006, 0.021118164, 0.056427002, -0.02784729, -0.05847168, -0.06402588, 0.04537964, 0.00969696, 0.0010356903, 0.05429077, -0.003873825, 0.010032654, 0.0063095093, -0.04159546, -0.05154419, 0.0076065063, 0.08856201, -0.001912117, 0.025680542]}, "B01BEY69FA": {"id": "B01BEY69FA", "original": "Brand: Peaktop\nName: Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28\" x 28\", Gray\nDescription: \nFeatures: STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space.\nINCLUDES: 6. 6 lbs Lava Rock and PVC Cover\nAdjustable flames are the perfect addition to light up the garden.\nBURNING AREA: (W) 16. 93\" x (L) 16. 93\" x (H) 2. 95\"; BTU: 40, 000; ETL-listed\nDIMENSIONS: (W) 28\" x (L) 28\" x (H) 9. 05\" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA\n", "metadata": {"Name": "Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28\" x 28\", Gray", "Brand": "Peaktop", "Description": "", "Features": "STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space.\nINCLUDES: 6. 6 lbs Lava Rock and PVC Cover\nAdjustable flames are the perfect addition to light up the garden.\nBURNING AREA: (W) 16. 93\" x (L) 16. 93\" x (H) 2. 95\"; BTU: 40, 000; ETL-listed\nDIMENSIONS: (W) 28\" x (L) 28\" x (H) 9. 05\" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.002286911, -0.012329102, -0.042419434, -0.059539795, 0.011062622, 0.007797241, -0.014907837, 0.03314209, -0.041412354, -0.016159058, -0.041625977, 0.034576416, -0.066589355, -0.015266418, 0.03173828, -0.06274414, 0.029800415, 0.003917694, -0.0035820007, -0.036499023, -0.028381348, -0.03161621, 0.01953125, 0.089782715, -0.016738892, 0.028930664, 0.068359375, -0.04058838, 0.002922058, -0.014251709, 0.0018968582, 0.0069274902, 0.052612305, 0.009536743, -0.055999756, 0.01373291, 0.011260986, -0.019454956, -0.033721924, 0.052459717, 0.0048065186, -0.0096588135, -0.037506104, -0.018325806, -0.049621582, -0.025421143, -0.0037555695, 0.0053749084, 0.017120361, 0.022659302, 3.0636787e-05, 0.038360596, 0.0058631897, -0.010047913, 0.00881958, 0.017456055, 0.004306793, -0.0030670166, 0.0072135925, -0.024673462, 0.0028095245, 0.0140686035, 0.030975342, 0.026245117, -0.031311035, 0.053253174, 0.085754395, -0.003993988, 0.011161804, -0.06652832, -0.06500244, 0.02998352, 0.029388428, -0.013679504, -0.02998352, 0.01398468, 0.008926392, 0.01852417, 0.010299683, -0.018554688, -0.051452637, -0.022644043, 0.02482605, -0.025909424, -0.0390625, -0.031143188, -0.039245605, 0.019454956, -0.009849548, -0.045928955, -0.0071144104, -0.034484863, -0.055664062, 0.030273438, 0.009819031, -0.043029785, -0.055389404, -0.08135986, 0.0340271, 0.0034217834, 0.003314972, -0.025497437, 0.014076233, 0.009513855, 0.0040130615, 0.074279785, 0.0037441254, -0.0064353943, 0.0033454895, -0.016983032, -0.021072388, -0.016281128, -0.0072364807, -0.030578613, -0.030670166, 0.02178955, -0.008636475, -0.027297974, 0.013160706, -0.01737976, -0.021850586, -0.019989014, 0.026260376, 0.005092621, 0.027709961, 0.012176514, -0.049682617, 0.007007599, -0.0836792, 0.047332764, -0.0013141632, 0.017410278, 0.026550293, 0.030288696, -0.034362793, -0.014419556, 0.025787354, 0.00089120865, 0.03793335, -0.03439331, 0.053710938, 0.0014591217, 0.0048446655, 0.041809082, -0.022094727, 0.045959473, 0.014144897, -0.011764526, -0.028793335, -0.0362854, -0.022491455, -0.020751953, 0.0390625, 0.02053833, -0.011772156, -0.0036849976, 0.072631836, -0.04660034, -0.04421997, -0.07873535, -0.028305054, -0.015487671, -0.030303955, -0.0028266907, -0.031173706, 0.040893555, 0.043273926, 0.0032310486, 0.00843811, 0.04107666, 0.0011148453, 0.01651001, 0.022567749, 0.008628845, -0.022338867, -0.023712158, 0.014038086, 0.052246094, 0.047790527, -0.06933594, -0.035888672, -0.053649902, 0.12927246, -0.043121338, -0.00092315674, 0.0126571655, 0.0020008087, -0.047973633, 0.012107849, -0.018630981, 0.027160645, 0.07989502, -0.0019893646, -0.005844116, 0.019042969, 0.015007019, -0.086242676, 0.0011711121, -0.028549194, 0.0021343231, -0.043121338, 0.006668091, -0.018112183, 0.027328491, 0.018341064, -0.007408142, 0.009628296, 0.012565613, -0.0016565323, -0.0049057007, 0.006416321, 0.0063285828, -0.007160187, -0.04083252, -0.00730896, 0.04260254, 0.0019550323, 0.023620605, -0.02204895, 0.01373291, -0.0065078735, -0.017944336, -0.018478394, 0.039916992, 0.017745972, -0.0362854, -0.007358551, -0.03262329, -0.009513855, 0.0030574799, -0.06048584, 0.024093628, 0.03564453, 0.06402588, 0.007171631, 0.037078857, 0.03353882, 0.030380249, -0.025909424, -0.015930176, 0.024475098, -0.017913818, 0.0018138885, 0.03665161, 0.012069702, -0.008834839, 0.028671265, -0.009208679, -0.012077332, 0.020874023, 0.054595947, -0.0287323, -0.003610611, -0.028671265, -0.01966858, -0.0025138855, -0.028167725, -0.0012865067, 0.03137207, -0.0005245209, -0.009819031, 0.05316162, 0.04144287, 0.009857178, 0.017791748, -0.024795532, 0.035217285, 0.028213501, -0.0020809174, -0.0446167, 0.020462036, 0.07775879, -0.0066986084, 0.0044174194, -0.03060913, 0.026824951, -0.035308838, 0.034729004, -0.017868042, -0.014457703, 0.016052246, -0.028717041, -0.016906738, -0.0034618378, 0.07092285, 0.029953003, 0.006881714, -0.0016431808, -0.037078857, -0.034057617, -0.012054443, 0.02822876, -0.0030231476, -0.01576233, 0.022277832, -0.013671875, -0.016952515, -0.008430481, 0.032562256, -0.037994385, 0.02142334, 0.03994751, -0.058654785, 0.039642334, -0.015586853, 0.0692749, 0.0028953552, 0.008636475, 0.020904541, -0.044708252, 0.038146973, 0.0054512024, 0.037994385, -0.006980896, 0.05596924, 0.0067825317, 0.021636963, 0.05706787, 0.016494751, 0.0018224716, 0.048919678, 0.020446777, 0.017196655, -0.04284668, 0.023880005, -0.039764404, -0.050231934, -0.019439697, -0.059570312, 0.012680054, 0.0018281937, -0.057037354, -0.018981934, -0.03945923, -0.014099121, -0.008926392, -0.012039185, 0.054534912, -0.01335907, -0.068237305, -0.036468506, -0.026641846, 0.009635925, -0.00071144104, -0.018127441, -0.02381897, -0.009399414, 0.013717651, -0.06021118, -0.022354126, 0.03753662, -0.026489258, -0.022781372, -0.035064697, 0.0073928833, -0.008491516, -0.009277344, -0.0018014908, 0.046661377, -0.032989502, -0.05203247, -0.006046295, -0.060516357, 0.020553589, 0.07495117, -0.017425537, -0.04534912, 0.0116119385, -0.047180176, -0.037017822, 0.076538086, -0.01576233, -0.05291748, -0.062316895, -0.08111572, -0.025772095, 0.014518738, -0.028823853, 0.02142334, 0.016845703, 0.0001733303, 0.0041007996, 0.024963379, 0.021194458, 0.024871826, 0.019577026, 0.066589355, 0.058654785, 0.04260254, -0.032714844, 0.009056091, 0.023147583, -0.07244873, -0.0026454926, 0.023117065, -0.0026988983, 0.010787964, 0.015136719, -0.048583984, -0.018295288, -0.1003418, 0.008171082, 0.010551453, -0.044067383, -0.0041160583, -0.086120605, -0.05569458, -0.05355835, 0.02003479, 0.046051025, -0.012321472, 0.008422852, -0.030212402, 0.0030670166, -0.029556274, 0.00919342, 0.039978027, -0.0031661987, 0.043273926, -0.051757812, 0.005153656, -0.045043945, 0.028762817, 0.013923645, -0.054107666, 0.016494751, 3.1888485e-05, 0.03729248, -0.017074585, 0.009490967, -0.0020065308, -0.023208618, -0.0035896301, 0.0262146, -0.04336548, 0.024917603, 0.0025978088, -0.0016117096, 0.031204224, -0.053344727, -0.031143188, -0.002117157, 0.007507324, 0.04196167, 0.001083374, -0.011528015, 0.00020718575, -0.045135498, -0.0037841797, -0.036102295, -0.014091492, 0.00856781, 0.03604126, 0.023269653, 0.0071907043, 0.027359009, 0.02558899, 0.06210327, -0.022201538, -0.051849365, -0.025344849, -0.0491333, 0.038116455, -0.0045051575, 0.013885498, -0.03237915, 0.04736328, 0.022247314, 0.014320374, -0.0036849976, 0.019973755, -0.010772705, 0.013496399, 0.004962921, -0.015563965, 0.018295288, 0.025863647, -0.024978638, -0.0006918907, 0.0012521744, -0.09063721, 0.013893127, -0.03756714, 0.06210327, 0.06616211, -0.031341553, 0.1104126, 0.058410645, -0.025650024, 0.022415161, 0.00019574165, 0.04067993, -0.021881104, 0.0725708, -0.0045700073, -0.0043792725, 0.008003235, 0.037506104, 0.0028190613, -0.019012451, -0.017059326, -0.008453369, 0.015548706, 0.0067825317, -0.03237915, 0.010093689, 0.009185791, 0.010757446, 0.02029419, -0.015388489, -0.013473511, -0.015617371, 0.029129028, 0.026290894, -0.026412964, -0.022735596, 0.00087308884, 0.027526855, -0.046936035, 0.004463196, -0.0058555603, 0.014671326, 0.03189087, 0.028686523, -0.0073509216, -0.011047363, 0.012908936, 0.008506775, -0.02041626, 0.036895752, -0.009559631, 0.008872986, 0.02960205, -0.021026611, 0.025466919, -0.00969696, -0.02558899, -0.031097412, -0.026260376, -0.021530151, 0.020477295, 0.009086609, -0.03149414, 0.00045967102, 0.02078247, -0.04421997, -0.0017690659, -0.015808105, -0.0236969, -0.01235199, -0.00843811, 0.0035495758, -0.09222412, 0.0016908646, -0.0025482178, 0.051696777, -0.05984497, 0.014808655, -0.022201538, 0.01159668, 0.015838623, 0.0135650635, -0.05847168, 0.02166748, -0.021255493, -0.0043144226, -0.013961792, -0.04421997, -0.0010814667, -0.045074463, -0.008323669, -0.019927979, 0.06793213, 0.0037078857, -0.014404297, -0.02708435, -0.0015516281, -0.01928711, 0.02053833, -0.0034885406, -0.037231445, 0.041503906, 0.032348633, -0.031173706, -0.084350586, -0.010261536, 0.06695557, -0.05569458, -0.041931152, -0.012840271, 0.078308105, -0.0023002625, 0.016616821, -0.005039215, -0.0065193176, 0.01713562, 0.008682251, -0.060638428, -0.04751587, -0.006439209, -0.019622803, 0.0071525574, 0.0007929802, -0.018035889, 0.021270752, 0.027374268, 0.007003784, -0.0071144104, 0.0045433044, 0.016418457, -0.009010315, -0.032684326, -0.008338928, 0.012191772, -0.00027656555, 0.010818481, -0.059295654, 0.0496521, 0.03036499, 0.008216858, -0.006061554, -0.019714355, -0.003704071, -0.057403564, -0.013061523, 0.01737976, 0.009017944, -0.001253128, -0.035003662, -0.017929077, -0.016677856, -0.023742676, 0.014640808, 0.010055542, 0.035186768, 0.0024318695, 0.00054216385, -0.022583008, -0.038116455, 0.027572632, 0.03829956, 0.026672363, 0.050842285, -0.043060303, -0.00090932846, -0.014579773, 0.0030059814, 0.024749756, -0.026000977, 0.0064811707, -0.021240234, 0.014251709, -0.017471313, 0.044525146, -0.0016946793, 0.059417725, 0.009460449, 0.05831909, -0.00970459, 0.0110321045, -0.008934021, 0.03515625, 0.016311646, -0.050628662, 0.046173096, -0.01676941, -0.03152466, 0.029708862, -0.039489746, 0.049438477, 0.0055389404, -0.021652222, 0.035980225, 0.017456055, 0.018539429, -0.03717041, 0.06121826, -0.006275177, -0.0035514832, -0.053375244, 0.0027008057, 0.05999756, 0.016113281, -0.034179688, -0.022491455, 0.04385376, -0.015991211, -0.012763977, 0.010238647, 0.03692627, -0.013008118, 0.026367188, 0.025100708, 0.015411377, -0.026733398, 0.022415161, -0.0054512024, 0.00289917, -0.045959473, -0.029571533, 0.060577393, -0.0012264252, -0.024154663, -0.027740479, -0.014572144, -0.0021324158, 0.029205322, -0.048553467, -0.0014953613, -0.009796143, -0.03668213, 0.015563965, 0.034210205, 0.028793335, -0.08294678, -0.05230713, -0.036834717, 0.022338867, -0.0014619827, 0.08105469, -0.010749817, 0.03137207, 0.024993896, -0.034057617, 0.013046265, 0.010406494, -0.042144775, 0.00073194504, 0.0054473877, 0.016708374, 0.0033435822, -0.013259888, 0.03677368, -0.028381348, -0.028167725, -0.062927246, 0.014930725, 0.006061554, -0.015083313, 0.050354004, 0.036132812, 0.0021896362, 0.029205322, -0.00079250336, -0.029022217, 0.016113281, 0.029769897, -0.09753418, -0.06945801, -0.0107421875, -0.02218628, -0.043060303, 0.007549286, -0.045043945, 0.036254883, -0.010856628, -0.007534027, -0.034820557, -0.008705139, -0.015159607, -0.031707764, 0.014808655, -0.0004143715, 0.015625, 0.016967773, 0.030136108, -0.03439331, -0.0058250427, -0.010864258, -0.008331299, -8.696318e-05, -0.01285553, -0.0063934326, -0.003730774, 0.04837036, 0.028717041, -0.019866943, -0.031021118, -0.014633179, 0.029144287, 0.042053223, -0.010604858, -0.0032405853, -0.018157959, 0.0063171387, -0.0027770996, 0.05267334, -0.005207062, 0.0033168793, 0.0146865845, 0.03869629, 0.0037727356, 0.017471313, -0.013259888, 0.04046631, -0.0055656433, -0.06665039, -0.00061941147, 0.0231781, -0.032806396, -0.012863159, -0.05227661, -0.031951904, -0.03149414, -0.01826477, 0.033050537, -0.024414062, 0.0038547516, 0.00057315826, 0.017150879, -0.0017957687, 0.004611969, 0.0055618286, -0.011734009, -0.0019321442, 0.01235199, -0.028442383, 0.00078582764, -0.008605957, -0.017578125, 0.01902771, 0.042297363, 0.0062294006, 0.0005354881, -0.012680054, 0.02168274, 0.010292053, -0.056854248, 0.018936157, -0.020004272, 0.0058517456, 0.0052757263, 0.00017666817, 0.006717682, 0.0064964294, 0.023086548, 0.0006814003, 0.049957275, -0.023651123, 0.017074585, -0.014320374, -0.0030517578, -0.018585205, -0.023925781, 0.0055351257, -0.010955811, 0.004371643, 0.0115356445, -0.03277588, -0.00491333, 0.051635742, -0.041259766, 0.0037651062, 0.005718231, 0.013931274, -0.037841797, 0.056518555, -0.024154663, 0.013420105, 0.042633057, -0.00434494, -0.0060424805, -0.027877808, 0.0006160736, 0.02406311, -0.0010499954, 0.00894165, 0.027496338, -0.018600464, 0.033813477, 0.012634277, -0.024337769, -0.033050537, -0.010322571, -0.00095939636, 0.0038967133, -0.0033435822, 0.023132324, 0.022323608, -0.04244995, -0.025970459, -0.06713867, -0.0010499954, -0.032928467, -0.010864258, -0.05621338, 0.016342163, -0.008369446, -0.017501831, 0.000705719, 0.015464783, -0.02458191, 0.032226562, 0.036590576, 0.0037174225, 0.004962921, -0.004585266, 0.02142334, -0.011634827, 0.009727478, -0.014175415, -0.025741577, 0.010292053, -0.007686615, 0.013946533, 0.00030708313, 0.008979797, -0.0060424805, 0.05505371, -0.019943237, -0.027709961, 0.03967285, -0.004638672, 0.018920898, -0.012306213, 0.010627747, -0.027130127, 0.004421234, 0.026779175, -0.0044670105, 0.004558563, 0.04257202, 0.0014677048, -0.042633057, -0.07348633, 0.011695862, -0.037902832, 0.0071411133, -0.029174805, 0.029022217, 0.015411377, -0.011550903, 0.0018548965, 0.0725708, -0.0011053085, -0.005493164, -0.009674072, -0.025604248, -0.04711914, 0.057281494, 0.012260437, -0.045166016, 0.024230957, 0.06774902, 0.013458252, 0.049072266, 0.029144287, 0.008010864, -0.06903076, -0.030426025, -0.050079346, 0.027008057, 0.028289795, -0.017410278, 0.027938843, 0.018661499, -0.062469482, 0.019500732, -0.011276245, 0.023162842, 0.029052734, -0.017196655, 0.0042800903, -0.011672974, -0.043151855, 0.00592041, -0.01084137, -0.004886627, -0.038513184, -0.055541992, -0.0018892288, 0.0030078888, -0.0034542084, -0.018203735, 0.03967285, -0.006931305, 0.008308411, 0.0024414062, -0.023162842, -0.018737793, -0.022628784, -0.0077590942, -0.0069236755, -0.009376526, 0.027694702, 0.03152466, -0.022964478, 0.0036506653, -0.006187439, -0.0048599243, 0.016281128, -0.018035889, -0.048919678, -0.032348633, 0.046142578, 0.0134887695, 0.0029411316, 0.029418945, 0.0345459, -0.009262085, -0.013648987, 0.042877197, -0.0001885891, 0.053344727, -0.024917603, 0.06414795, 0.014801025, 0.06384277, -0.007545471, -0.062164307, -0.04510498, 0.04244995, 0.01133728, -0.022872925, 0.032562256, -0.024597168, 0.014884949, -0.008911133, -0.023635864, -0.0435791, 0.0070228577, 0.03302002, -0.0022735596, 0.031707764]}, "B074QQW4PC": {"id": "B074QQW4PC", "original": "Brand: Cuisinart\nName: Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill\nDescription: \nFeatures: COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power\nCOOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack\nCAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat\nPREP SPACE: Two 18\" x 13\" side tables provide ample space for food prep\nCONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.\n", "metadata": {"Name": "Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill", "Brand": "Cuisinart", "Description": "", "Features": "COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power\nCOOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack\nCAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat\nPREP SPACE: Two 18\" x 13\" side tables provide ample space for food prep\nCONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04949951, -0.016860962, -0.017196655, 0.009498596, -0.02734375, -0.0075798035, -0.012420654, 0.0030117035, -0.02671814, 0.00053071976, -0.007610321, 0.018707275, 0.019439697, -0.029144287, 0.030578613, -0.021591187, 0.022201538, 0.01096344, 0.0034599304, -0.025421143, 0.0019798279, -0.012168884, -0.014808655, 0.091552734, 0.021652222, -0.02734375, -0.034210205, 0.0051002502, 0.016998291, 0.015579224, 0.01763916, 0.014160156, 0.057647705, -0.014671326, -0.021377563, -0.004875183, 0.013687134, -0.029525757, -0.04473877, 0.03012085, -0.023849487, 0.028305054, 0.012588501, 0.015083313, -0.02305603, -0.024856567, -0.007633209, -0.02468872, 0.010414124, -0.02935791, -0.0036849976, 0.016052246, 0.00819397, 0.009124756, -0.027999878, -0.01713562, 0.009681702, -0.0022850037, 0.025421143, -0.033569336, -0.026763916, -0.021957397, 0.04446411, 0.010513306, -0.032989502, -0.007926941, 0.044128418, -0.017028809, -0.0064086914, -0.043060303, 0.015670776, 0.023834229, 0.026428223, -0.0014820099, -0.02507019, -0.032806396, 0.047729492, -0.01940918, 0.02229309, -0.019302368, -0.03302002, 0.031921387, -0.033203125, -0.030181885, -0.0034179688, -0.014984131, -0.027664185, -0.0067329407, -0.006362915, -0.04171753, -0.0009713173, 0.00074768066, -0.06518555, 0.0390625, 0.026550293, -0.028244019, -0.046295166, -0.08203125, 0.021026611, -0.016403198, 0.043670654, -0.03778076, 0.021133423, 0.013648987, -0.0287323, 0.046173096, 0.019241333, 0.095825195, 0.028884888, -0.004878998, 0.011276245, -0.048614502, -0.0027446747, -0.004550934, -0.026931763, 0.014556885, -0.011894226, -0.011505127, -0.011054993, -0.001282692, -0.026763916, 0.0052604675, -0.016433716, 0.043823242, 0.042114258, 0.056427002, 0.0340271, -0.012916565, -0.07537842, 0.030426025, -0.0010137558, 0.0065841675, 0.023284912, 0.04220581, -0.016571045, -0.016860962, 0.035064697, -0.0009765625, 0.022399902, -0.020599365, 0.018371582, -0.0040740967, 0.01612854, -0.0016565323, -0.0015096664, 0.01512146, 0.035949707, 0.020828247, -0.042175293, -0.047576904, 0.035461426, 0.0024318695, 0.015426636, 0.041625977, -0.06677246, 0.042297363, -0.029464722, 0.02357483, -0.032806396, -0.028182983, -0.0018138885, -0.02268982, -0.0121154785, -0.014892578, -0.04815674, 0.043518066, -0.0021915436, 0.0062828064, 0.008621216, 0.07159424, -0.03793335, 0.029556274, -0.014831543, 0.020584106, -0.012992859, -0.006416321, -0.008605957, 0.04574585, 0.012466431, -0.028137207, -0.0060920715, -0.04348755, 0.083618164, -0.021133423, -0.012451172, -0.038208008, 0.019699097, 0.0032424927, 0.008087158, 0.021087646, 0.029754639, -0.0050964355, 0.02722168, -0.009811401, 0.02217102, -0.0057907104, -0.04949951, 0.013641357, -0.02507019, -0.031799316, 0.06500244, 0.021606445, -0.015670776, -0.009056091, -0.055267334, -0.02432251, 0.009986877, -0.0049591064, 0.006931305, 0.00472641, -0.008811951, -0.015403748, 0.015007019, -0.04244995, -0.02470398, 0.04006958, -0.013092041, 0.019821167, 0.0138168335, 0.004146576, 0.031677246, 0.0007381439, 0.042419434, 0.01676941, 0.051818848, 0.019042969, -0.03201294, -0.0031414032, 0.032714844, -0.0015382767, -0.0385437, 0.03768921, 0.088012695, 0.08453369, -0.01020813, 0.031707764, 0.074523926, 0.03955078, -0.03353882, -0.013114929, 0.010887146, -0.06994629, -0.04928589, -0.002462387, -0.010719299, -0.00075626373, 0.010147095, -0.0004930496, -0.0035629272, 0.042541504, 0.027282715, 0.012992859, 0.016647339, 0.0574646, -0.033172607, 0.03286743, 0.00019609928, 0.023483276, -0.014198303, -0.0038700104, 0.0087890625, 0.04788208, -0.020111084, 0.023376465, -0.0025138855, 0.046081543, 0.0104522705, 0.028060913, -0.0491333, 0.032409668, 0.028457642, 0.023986816, -0.00957489, -0.018463135, -0.0008172989, -0.041412354, -0.042236328, 0.04147339, -0.0073776245, -0.042114258, -0.0065574646, -0.027282715, -0.021560669, -0.0039405823, 0.044189453, 0.034210205, 0.0141067505, 0.00051164627, -0.034332275, -0.006465912, 0.017181396, 0.0071105957, -0.0018634796, -0.011680603, -0.011039734, -0.015022278, 0.09698486, 0.025161743, 0.014312744, -0.011947632, 0.028640747, 0.010795593, -0.06274414, 0.016235352, 0.0058288574, -0.004673004, -0.009140015, 0.009346008, 0.008087158, -0.009056091, 0.000746727, 0.047821045, 0.026031494, 0.0473938, 0.01335907, -0.02809143, 0.0034160614, 0.05807495, 0.019744873, 0.027359009, -0.022491455, 0.019424438, -0.044525146, -0.03869629, 0.02041626, 0.016098022, -0.07348633, -0.014816284, -0.03866577, 0.013893127, 0.018936157, 0.0007762909, -0.0010232925, 0.015960693, 0.005138397, 0.013160706, 0.0032577515, 7.480383e-05, -0.015777588, -0.018325806, 0.0011367798, -0.043640137, -0.008010864, -0.033203125, 0.009246826, -0.01965332, 0.06317139, 0.033996582, -0.0340271, 0.021636963, -0.0017642975, -0.061767578, 0.005504608, -0.0670166, -0.0004684925, 0.023223877, -0.019165039, -0.06738281, -0.0019817352, -0.08721924, -0.000667572, -0.025054932, -0.050109863, -0.019241333, 0.054016113, -0.023727417, -0.054656982, -0.015357971, -0.008056641, 0.019439697, 0.041900635, -0.017410278, -0.014091492, -0.029296875, -0.039916992, -0.031204224, 0.053863525, -0.033813477, 0.027389526, 0.02470398, -0.0052490234, 0.022827148, -0.049194336, -0.0017194748, 0.0026130676, 0.0074424744, 0.023284912, 0.04058838, 0.024505615, -0.018951416, 0.039093018, 0.0713501, 0.004749298, -0.017318726, 0.01033783, -0.0017709732, -0.014595032, -0.013442993, -0.03729248, -0.009254456, -0.06567383, 0.011978149, -0.021133423, -0.016693115, -0.025726318, -0.05117798, -0.040374756, -0.05126953, 0.0107040405, 0.10211182, -0.027252197, -0.042663574, -0.0335083, -0.011428833, -0.0038776398, 0.030258179, 0.011009216, -0.010124207, 0.035095215, -0.01638794, -0.0029335022, -0.022155762, 0.0017614365, 0.02204895, -0.033050537, -0.020477295, -0.008842468, 0.011314392, -0.029510498, 0.0418396, -0.006126404, 2.6226044e-06, -0.03857422, -0.004055023, 0.019622803, 0.028762817, -0.0082092285, -0.05429077, 0.006351471, 0.0045204163, -0.049743652, -0.028884888, -0.0016469955, 0.016082764, 0.023208618, -0.022003174, -0.051330566, -0.048309326, -0.009765625, -0.03475952, 0.026519775, 0.0018920898, 0.013977051, 0.0137786865, -0.016204834, 0.066345215, 0.011520386, 0.021499634, 0.050872803, -0.042266846, -0.042663574, -0.032928467, -0.009963989, -0.0015954971, -0.01360321, -0.023330688, 0.013511658, 0.028121948, 0.020187378, -0.024963379, 0.012962341, 0.046691895, 0.032440186, 0.0053901672, -0.042388916, -0.05633545, 0.043273926, 0.040527344, -0.00299263, -0.043762207, -0.058746338, 0.016174316, -0.10296631, 0.08319092, 0.013839722, -0.016601562, 0.068481445, 0.03857422, 0.0070648193, 0.03314209, 0.00093603134, 0.017822266, -0.012420654, 0.100097656, 0.0075569153, 0.022872925, 0.019760132, -0.04977417, 0.017425537, 0.003566742, -0.06768799, 0.035491943, 0.032684326, -0.041046143, -0.037384033, 0.033355713, 0.05142212, -0.016815186, -0.008415222, -0.049957275, 0.013839722, -0.061584473, -0.02760315, 0.028396606, -0.04916382, -0.01184082, -0.031311035, 0.025772095, -0.061553955, -0.009384155, 0.011528015, 0.019927979, -0.017791748, 0.047729492, -0.008674622, 0.006526947, -0.07196045, -0.013389587, 0.0011730194, 0.030838013, 0.025253296, -0.007637024, 0.02432251, -0.0124435425, 0.0050811768, -0.015945435, -0.004940033, 0.024673462, -0.015403748, -0.048980713, -0.0087509155, -0.00415802, 0.005153656, -0.047210693, -0.0049972534, -0.0015048981, 0.008590698, 0.030578613, -0.0385437, -0.011398315, 0.006061554, 0.023345947, -0.062316895, -0.026168823, -0.012992859, -0.033081055, -0.039855957, 0.016860962, -0.02532959, -0.01889038, 0.004634857, 0.0043640137, -0.046905518, 0.009094238, -0.034942627, -0.020950317, 0.05279541, 0.010910034, 0.023803711, -0.051818848, 0.04486084, -0.012756348, 0.12231445, 0.030227661, 0.021957397, -0.033203125, -0.008079529, -0.0064735413, 0.054351807, 0.05859375, 0.0077934265, 0.01889038, -0.046905518, -0.03668213, -0.010826111, -0.011726379, 0.04562378, -0.05444336, -0.013031006, -0.019729614, 0.04611206, -0.0146484375, 0.042785645, 0.0044670105, -0.009422302, -0.036315918, -0.019485474, -0.07495117, -0.0077590942, -0.012702942, -0.03390503, 0.0013093948, -0.0005993843, -0.024459839, 0.04095459, 0.017913818, -1.23381615e-05, -0.035705566, 0.007003784, 0.0079574585, 0.029342651, 0.042053223, -0.03463745, 0.0059547424, -0.004802704, -0.060180664, -0.03744507, 0.027908325, 0.027755737, 0.013122559, -0.0009646416, -0.016357422, -0.009254456, -0.047210693, 0.0050239563, 0.028549194, -0.053741455, -0.012809753, -0.015731812, 0.0413208, -0.0049972534, 0.005645752, -0.014099121, -0.018539429, 0.0154953, -0.026748657, 0.025924683, 0.014472961, 0.064575195, 0.018554688, -0.014266968, 0.014808655, -0.02468872, -0.008651733, 0.02027893, -0.029922485, -0.029693604, -0.011367798, -0.013389587, 0.008560181, -0.025115967, 0.007896423, -0.05380249, 0.017349243, 0.045288086, -0.012756348, -0.026367188, -0.0059013367, 0.062438965, -0.008544922, -0.008300781, 0.097717285, -0.029586792, 0.02658081, 0.031555176, 0.015686035, -0.0071640015, 0.044708252, -0.034851074, 0.04348755, 0.031677246, -0.02507019, -0.004508972, -0.020004272, -0.0014915466, -0.017837524, 0.05795288, 0.009414673, 0.005508423, -0.053009033, 0.0063552856, 0.021118164, 0.04837036, 0.035736084, -0.043914795, 0.05496216, -0.0023937225, -0.046295166, 0.0071907043, 0.04550171, -0.03149414, 0.01108551, 0.02330017, 0.025177002, -0.014465332, 0.04623413, -0.027816772, 0.005748749, -0.028427124, 0.0135269165, 0.042114258, -0.009384155, -0.012863159, -0.042541504, 0.0067825317, 0.002916336, -0.0647583, 0.002040863, -0.026550293, 0.0035133362, 0.0051612854, 0.03765869, -0.006511688, 0.004055023, -0.027557373, -0.030288696, -0.034606934, -0.028137207, -0.04107666, 0.06964111, -0.033447266, 0.0071792603, 0.034179688, -0.03137207, 0.017471313, 0.0075149536, -0.030319214, -0.020629883, -0.008865356, 0.017852783, -0.024810791, 0.012664795, 0.081848145, -0.06488037, -0.028366089, -0.119018555, 0.041412354, -0.012794495, -0.01953125, 0.011062622, 0.032470703, -0.009475708, 0.027770996, -0.024169922, -0.056915283, -0.00014030933, -0.006000519, -0.037231445, -0.046295166, -0.050994873, 0.00077342987, -0.0066184998, -0.012428284, 0.0074386597, 0.059661865, 0.033996582, -0.014633179, -0.02760315, -0.021102905, 0.015899658, -0.054840088, -0.0040893555, -0.013183594, 0.016220093, -0.013748169, -0.017852783, -0.037322998, 0.012207031, 0.034942627, 0.01586914, -0.008422852, -0.016708374, 0.007972717, 0.05117798, 0.019104004, 0.0390625, -0.030426025, 0.000682354, 0.0075569153, 0.056793213, -0.00409317, 0.053649902, -0.0035476685, -0.008888245, -0.032684326, 0.015701294, 0.024932861, 0.032806396, -0.023071289, 0.0206604, 0.023284912, 0.013160706, 0.034851074, 0.0016889572, 0.025939941, 0.0044898987, -0.035827637, 0.0126953125, 0.03894043, -0.020111084, -0.018341064, -0.044769287, 0.0069122314, 0.039764404, 0.004798889, 0.057434082, -0.018600464, 0.062438965, 0.024963379, -0.0074310303, 0.018554688, 0.0074424744, -0.01713562, -0.030654907, -0.036132812, 0.027938843, 0.010231018, 0.022766113, -0.0413208, -0.0028190613, -0.0031967163, 0.018936157, -0.03515625, 0.062316895, -0.062042236, -0.004966736, 0.033599854, -0.03881836, -0.009841919, 0.029190063, -0.0044555664, -0.022262573, -0.08404541, -0.026641846, -0.0006251335, -0.0033664703, -0.012397766, 0.052520752, 0.028701782, 0.00075769424, 0.020263672, -0.015220642, 0.02142334, -0.014862061, 0.072265625, 0.0061683655, 0.0010995865, -0.033416748, -0.027069092, 0.022476196, 0.0368042, -0.02848816, 0.0025367737, 0.008132935, 0.016036987, -0.009529114, 0.043914795, -0.01374054, -0.030731201, 0.030303955, 0.026626587, -0.013053894, 0.04034424, 0.027832031, -0.023284912, 0.018981934, -0.02545166, 0.03845215, 0.007282257, 0.06866455, 0.04244995, -0.011001587, -0.045318604, -0.02947998, -0.0035037994, -0.035583496, 0.024383545, 0.0063056946, -0.010002136, 0.022903442, 0.009544373, 0.013580322, 0.008560181, -0.07293701, 0.012428284, 0.044799805, -0.0101623535, 0.04135132, -0.013381958, -0.012229919, 0.006313324, 0.0062713623, 0.015022278, 0.047729492, 0.0068626404, 0.04095459, 0.009559631, 0.050689697, -0.012023926, -0.014595032, 6.41942e-05, -0.050994873, 0.027572632, 0.008735657, -0.0013742447, 0.0033683777, -0.011306763, -0.01235199, 0.02583313, -0.033355713, 0.0034828186, 0.035583496, -0.0006079674, -0.012046814, -0.0079956055, 0.009628296, -0.0070495605, 0.03375244, 0.022659302, 0.02218628, 0.014762878, 0.021484375, -0.014755249, -0.0491333, -0.008583069, 0.026275635, -0.01977539, -0.071777344, -0.020462036, 0.012374878, 0.0053482056, -0.019119263, -0.018966675, 0.037750244, 0.009338379, -0.014915466, 0.028564453, -0.026382446, -0.032287598, 0.037628174, 0.011878967, -0.032104492, -0.0037612915, 0.029464722, -0.0073242188, 0.014816284, 0.016815186, -0.021255493, -0.033477783, -0.022415161, -0.025650024, -0.016738892, -0.027694702, 0.007980347, 0.008277893, -0.0003168583, -0.029968262, 0.0021438599, 0.014930725, 0.035858154, 0.008384705, -0.0209198, 0.030532837, -0.045013428, -0.055114746, -0.0579834, -0.030349731, 0.04058838, 0.046691895, -0.004940033, 0.0077781677, 0.03616333, -0.037963867, 0.046783447, 0.010536194, -0.00187397, 0.0069618225, -0.0056114197, 0.0362854, -0.00242424, -0.011306763, 0.029296875, -0.032318115, -0.028045654, 0.011627197, 0.009391785, -0.028671265, -0.020507812, -0.03652954, 0.016113281, -0.022720337, -0.05255127, -0.045196533, -0.022155762, 0.0061416626, 0.027816772, -0.019622803, 0.035491943, -0.011566162, 0.016601562, -0.019927979, 0.019241333, 0.014328003, 0.018081665, -0.045440674, 0.011581421, 0.0074310303, 0.047332764, -0.016616821, -0.058776855, -0.03503418, 0.00554657, 0.03878784, -0.010818481, 0.06768799, -0.025375366, 0.0082473755, -0.001036644, 0.0025806427, -0.05053711, 0.038085938, 0.025756836, -0.0030937195, 0.044677734]}, "B00AB7SD9W": {"id": "B00AB7SD9W", "original": "Brand: Huntington\nName: Huntington 24025 Liquid Propane Gas Grill\nDescription: \nFeatures: Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves\nPorcelain coated wire cooking grids and stainless steel cooking system\nSure-Lite push button ignition system and Accu-Flow burner valves\nHeat resistant front mounted handle\nEZ-Q-Cart design and 5 stage quality enamel paint process\n", "metadata": {"Name": "Huntington 24025 Liquid Propane Gas Grill", "Brand": "Huntington", "Description": "", "Features": "Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves\nPorcelain coated wire cooking grids and stainless steel cooking system\nSure-Lite push button ignition system and Accu-Flow burner valves\nHeat resistant front mounted handle\nEZ-Q-Cart design and 5 stage quality enamel paint process", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02368164, -0.016860962, -0.05142212, -0.01576233, -0.02810669, -0.002199173, -0.030090332, 0.027893066, -0.029922485, 0.0057792664, -0.025054932, 0.031021118, -0.038604736, -0.025680542, 0.008888245, -0.03387451, -0.0037765503, 0.035339355, -0.01222229, -0.04107666, 0.006023407, -0.042144775, -0.025741577, 0.035614014, 0.083984375, -0.059417725, -0.046844482, 0.025009155, 0.06970215, 0.036224365, 0.048339844, -0.057617188, 0.040161133, -0.021392822, 0.01007843, 0.013572693, 0.02722168, -0.016723633, -0.012886047, 0.011398315, 0.019805908, 0.008361816, -0.0152282715, 0.005214691, -0.016845703, -0.060150146, 0.050201416, -0.015960693, 0.006816864, 0.014602661, 0.0107040405, 0.0016946793, 0.0071411133, -0.024215698, -0.017074585, -0.0124435425, 0.008621216, 0.02520752, 0.027755737, -0.04449463, -0.03466797, -0.0067253113, 0.03390503, 0.004306793, 0.019332886, -0.0036582947, 0.07165527, 0.00023019314, -0.007980347, 0.0070152283, 0.022705078, -0.0005478859, 0.037231445, -0.007701874, 0.002319336, -0.021194458, 0.0035800934, 0.0008158684, 0.053497314, -0.0060157776, 0.009506226, -0.022415161, 0.034484863, -0.013679504, 0.019821167, -0.006828308, -0.010848999, -0.007255554, 0.009727478, -0.023330688, 0.00054359436, -0.023910522, -0.012359619, 0.05307007, -0.011070251, -0.02758789, -0.04067993, -0.09814453, 0.053710938, 0.015487671, 0.03289795, -0.039733887, 0.031204224, 0.0096206665, -0.0021400452, 0.038024902, 0.03857422, 0.08081055, 0.03338623, -0.008293152, -0.005130768, 0.026977539, -0.01008606, -0.029327393, -0.023773193, 0.002937317, -0.04348755, 0.01625061, 0.016036987, -0.009796143, -0.022262573, -0.010665894, 0.020523071, 0.05935669, 0.020309448, 0.051940918, 0.007820129, -0.028717041, -0.032806396, 0.012992859, 0.00023829937, 0.011024475, 0.03387451, 0.058532715, 0.006336212, -0.008934021, 0.003168106, 0.040924072, 0.010673523, -0.0017976761, -0.00037264824, -0.031921387, 0.01940918, 0.015617371, -0.011619568, 0.011116028, 0.02720642, 0.016479492, -0.006214142, -0.039001465, 0.002714157, 0.00071811676, 0.039123535, 0.0121536255, -0.005405426, 0.014389038, 0.018493652, -0.0029029846, -0.047698975, -0.032043457, -0.02923584, -0.014259338, -0.011657715, -0.0049324036, -0.03665161, 0.0390625, 0.048950195, 0.009239197, 0.030792236, 0.08276367, -0.01637268, -0.043884277, 0.032226562, 0.014556885, -0.03845215, 0.0029258728, -0.031188965, 0.032958984, 0.050964355, -0.07397461, -0.050567627, -0.04623413, 0.10021973, -0.021240234, -0.034942627, 0.038116455, 0.037963867, 0.068359375, -0.031173706, 0.01322937, 0.062164307, 0.041381836, 0.004787445, -0.0121154785, 0.009216309, -0.010345459, -0.030960083, -0.005378723, -0.020904541, -0.0069236755, 0.026168823, 0.013008118, -0.012413025, -0.003545761, -0.005908966, -0.0178833, 0.011024475, 0.0077819824, 0.018341064, 0.023071289, -0.0005273819, 0.01637268, -0.0076408386, -0.05697632, -0.016662598, 0.04522705, -0.02772522, 0.04425049, 0.025314331, 0.031951904, 0.050598145, -0.034301758, 0.038238525, -0.005470276, -0.0062828064, 0.010879517, -0.04107666, 0.004463196, 0.01890564, -0.019073486, 0.052124023, 0.022460938, 0.09802246, 0.060302734, -0.014930725, 0.043945312, 0.050964355, 0.00026655197, -0.04058838, -0.0008778572, 0.014091492, 0.0024032593, -0.016342163, 0.01651001, 0.034240723, 0.0012550354, 0.0066566467, -0.007583618, -0.025497437, 0.009017944, 0.054840088, 0.022399902, 0.011619568, 0.025894165, -0.029174805, 0.039215088, -0.028259277, 0.019134521, -0.006690979, 0.035491943, -0.020065308, 0.07598877, 0.062286377, -0.0030975342, 0.042114258, 0.011390686, 0.05807495, 0.04309082, -0.026931763, 0.011451721, -0.0077323914, -0.0044174194, 0.0052604675, 0.025314331, -0.02571106, 0.038848877, -0.035461426, 0.016830444, 0.013755798, 0.002910614, 0.0050811768, -0.007171631, 0.001036644, -0.001253128, 0.023529053, 0.01902771, 0.03086853, 0.011390686, -0.04260254, -0.0063591003, 0.00869751, 0.038635254, -0.0146484375, 0.012702942, -0.018417358, 0.008148193, 0.040740967, 0.04156494, -0.011680603, 0.0025901794, -0.02583313, 0.014373779, -0.0062065125, -0.01889038, -0.008636475, -0.014457703, -0.021591187, 0.010917664, -0.0018234253, -0.026885986, -0.0034732819, 0.013404846, 0.047729492, 0.025939941, 0.028747559, 0.004348755, -0.009628296, 0.07684326, -0.0067825317, -0.026062012, -0.0055160522, 0.061767578, -0.026351929, -0.0076065063, 0.042053223, 0.0154953, -0.041870117, -0.0017595291, -0.06311035, 0.010154724, -0.0022621155, -0.038024902, 0.0020008087, 0.011314392, -0.016784668, 0.0045318604, 0.006526947, 0.039886475, -0.006259918, -0.05795288, 0.0017118454, -0.041992188, -0.009246826, 0.02709961, -0.06567383, -0.012290955, 0.027435303, 0.012161255, 0.00079393387, -0.015670776, 0.029953003, -0.020614624, -0.010658264, -0.0063591003, -0.0029907227, 0.01586914, 0.005874634, -0.0368042, -0.00642395, -0.07922363, -0.05831909, 0.014633179, -0.05203247, 0.01637268, 0.057495117, -0.018951416, -0.014289856, 0.0028533936, 0.0018796921, 0.0003848076, -0.009391785, 0.0011014938, -0.034973145, -0.008529663, -0.010810852, 0.013145447, 0.048461914, -0.044006348, 0.0007071495, 0.01676941, -0.034332275, 0.005470276, -0.042663574, 0.004306793, 0.029464722, 0.0016508102, -0.02520752, -0.020385742, 0.0209198, 0.012374878, 0.011192322, -0.005596161, 0.00491333, -0.006580353, -0.0026760101, -0.00042796135, -0.014968872, -0.0046653748, -0.05444336, -0.0019607544, -0.1138916, 0.010261536, 0.014373779, -0.0413208, -0.013496399, -0.037231445, -0.09161377, -0.044189453, 0.012664795, 0.04232788, -0.023590088, 0.0059890747, -0.038848877, 0.009017944, -0.006134033, 0.015197754, -0.012817383, -0.013877869, 0.0104522705, -0.016830444, 0.022033691, -0.028411865, -0.0013837814, 0.00096797943, -0.04660034, 0.03274536, -0.017044067, 0.031829834, 0.0005021095, 0.04046631, 0.0034236908, 0.006286621, -0.024749756, -0.0104599, 0.01914978, 0.027053833, 0.004688263, -0.039398193, 0.020767212, -0.026351929, -0.055480957, -0.039031982, -0.012550354, 0.015541077, -0.020751953, -0.010810852, -0.03326416, -0.05670166, -0.022476196, -0.03253174, 0.0037384033, 0.0028076172, 0.016036987, 0.019561768, 0.0025672913, 0.09942627, 0.017349243, 0.05508423, 0.03842163, -0.0340271, -0.015083313, -0.04425049, 0.01146698, 0.024307251, 0.004714966, -0.005393982, -0.020751953, 0.03274536, 0.0024738312, -0.03564453, 0.027908325, 0.03677368, 0.024139404, -0.013015747, -0.024856567, -0.0077285767, 0.045410156, -0.026168823, 0.028259277, -0.031951904, -0.030914307, 0.00031661987, -0.07421875, 0.08404541, 0.03967285, -0.015151978, 0.03616333, 0.03289795, -0.022125244, 0.045684814, -0.0026550293, 0.034484863, -0.019714355, 0.06237793, -0.008468628, 0.017990112, 0.00919342, 0.016494751, -0.009880066, -0.049835205, -0.018127441, 0.019302368, 0.01727295, 0.022827148, -0.051086426, -0.019943237, 0.030944824, -0.04336548, 0.026000977, -0.011886597, -0.023757935, -0.03463745, 0.017822266, 0.0046157837, -0.026901245, -0.021728516, -0.021514893, -0.011138916, -0.053741455, 0.015533447, 0.0006637573, -0.0010166168, 0.008346558, 0.03918457, -0.015258789, 0.0037441254, -0.0317688, -0.018249512, -0.029159546, -0.020721436, 0.012969971, -0.0049324036, 0.0028572083, -0.004798889, 0.020019531, 0.03793335, -0.006362915, -0.012763977, -0.026535034, -0.036956787, 0.0038928986, -0.0050086975, -0.034210205, -0.022094727, 0.020690918, -0.036621094, 0.014770508, -0.015106201, 0.0013875961, -0.027389526, -0.006412506, 0.003314972, 0.013328552, 0.008865356, -0.020599365, -0.04675293, -0.038726807, -0.01638794, 0.022659302, 0.03125, 0.042633057, 0.028045654, -0.070129395, -0.020568848, -0.036132812, -0.032592773, 0.04888916, -0.007820129, 0.017990112, -0.02180481, -0.016677856, -0.005970001, 0.045043945, -0.044128418, -0.012535095, -0.034362793, -0.028289795, 0.021530151, 0.016174316, 0.04171753, -0.009773254, -0.0075263977, -0.049224854, -0.010299683, -0.04751587, -0.0018424988, 0.037872314, -0.04525757, -0.052001953, -0.037841797, 0.024520874, 0.0021343231, 0.009963989, 0.046203613, 0.0003247261, 0.011558533, -0.016860962, -0.07324219, 0.027923584, -0.010566711, -0.008392334, 0.012649536, 0.0015163422, 0.0014190674, -0.011123657, 0.05609131, 0.02619934, -0.020217896, -0.0014972687, -0.006252289, 0.011161804, 0.02015686, -0.02607727, 0.017288208, -0.010154724, -0.04309082, -0.061584473, 0.06744385, 0.064697266, 0.009933472, 0.018859863, 0.0005412102, 0.004558563, -0.059020996, -0.008041382, 0.02355957, -0.058044434, 0.0075149536, -0.019943237, 0.0060310364, 0.03567505, -0.012672424, -0.033721924, 0.0026741028, 0.006011963, 0.00541687, -0.007080078, -0.02658081, -0.0056877136, 0.0009946823, -0.0152282715, 0.020767212, -0.01083374, -0.053497314, 0.0602417, -0.037872314, -0.04550171, 0.024337769, -0.009147644, -0.016662598, 0.011177063, 0.0138549805, -0.05859375, 0.013832092, 0.03050232, -0.021408081, -0.007549286, -0.0073890686, 0.026504517, -0.009803772, -0.006252289, 0.052520752, -0.022338867, 0.0028305054, 0.04208374, -0.036499023, 0.01725769, 0.015701294, -0.024765015, 0.037628174, -0.032287598, -0.0055007935, 0.015113831, -0.0047073364, 0.03363037, -0.029815674, 0.027557373, -0.0054626465, -0.009208679, -0.06286621, 0.017913818, 0.05734253, 0.025787354, -0.027572632, -0.020828247, 0.013038635, -0.027069092, 0.029464722, 0.003036499, -0.021972656, -0.021362305, -0.022705078, -0.026870728, -0.057037354, 0.0023117065, -0.033416748, -0.013389587, 0.010925293, 0.00491333, -0.03741455, 0.032470703, 0.003929138, -0.059051514, -0.03878784, -0.050628662, 0.026519775, -0.01612854, 0.03878784, -0.027496338, -0.008460999, 0.017715454, 0.00011438131, -0.006515503, 0.003929138, -0.06817627, -0.037902832, -0.028335571, 0.017089844, -0.0028839111, 0.051452637, -0.046081543, 0.008331299, -0.002904892, -0.0038108826, 0.027160645, 0.0019006729, -0.091796875, -0.025466919, 0.0104599, 0.033569336, -0.01461792, -0.0010433197, 0.066223145, -0.04660034, -0.0289917, -0.05444336, 0.018295288, -0.016067505, -0.016357422, 0.08502197, 0.06121826, 0.0051116943, 0.03466797, -0.0046653748, -0.063964844, -0.026138306, -0.0044898987, -0.054382324, -0.044799805, -0.054107666, 0.017242432, 0.010643005, -0.01991272, -0.026260376, 0.043182373, 0.0041770935, -0.026046753, -0.017364502, -0.023406982, 0.020339966, -0.02468872, 0.0046844482, -0.0053634644, 0.0071754456, -0.0035152435, 0.02217102, -0.05126953, -0.0231781, -0.013046265, 0.016235352, 0.0072784424, -0.019470215, -0.009361267, 0.02470398, -0.004497528, 0.030853271, -0.018157959, 0.0028915405, -0.0049324036, 0.06555176, -0.0041656494, 0.028640747, -0.07171631, -0.033447266, -0.052886963, 0.019577026, 0.022018433, 0.06008911, -0.04925537, 0.013961792, 0.024520874, 0.04220581, -0.020721436, 0.02748108, 0.059051514, 0.024169922, -0.06341553, -0.028274536, 0.0036201477, -0.051879883, -0.0041770935, -0.05178833, -0.023529053, -0.011878967, -0.0104904175, 0.012969971, -0.022033691, 0.032928467, -0.018051147, -0.0008177757, 0.01184845, -0.027862549, 0.02204895, -0.019073486, 0.022644043, 0.0034236908, -0.0033721924, 0.0051193237, -0.01802063, 0.020599365, -0.0021705627, 0.018844604, 0.005958557, 0.044433594, -0.0028381348, 0.04660034, 0.0256958, -0.08544922, -7.814169e-05, 0.018508911, 0.015434265, 0.013534546, -0.004524231, 0.023834229, 0.029800415, -0.027648926, -0.018096924, 0.0141067505, 0.026504517, -0.018417358, -0.023376465, -0.0028820038, -0.02268982, -0.047546387, 0.06304932, 0.019607544, -0.011688232, -0.012313843, -0.018463135, 0.023712158, 0.023849487, -0.027618408, 0.02029419, -0.030929565, 0.017166138, -0.022506714, 0.02998352, -0.029876709, -0.027145386, -0.004081726, 0.0128479, -0.0003209114, 0.014854431, -0.0041770935, 0.022567749, -0.030212402, -0.051208496, 0.030212402, -0.07574463, 0.0546875, 0.019760132, -0.006122589, -0.023635864, -0.035491943, -0.021408081, -0.012710571, -0.0066070557, 0.016708374, 0.0029182434, -0.00090026855, -0.009010315, 0.026657104, 0.047424316, 0.01285553, 0.022079468, -0.024780273, -0.009841919, 0.010368347, -0.0063934326, -0.04019165, -0.02607727, 0.004283905, 0.013076782, -0.0021820068, 0.004447937, -0.0289917, -0.010276794, 0.02067566, -0.007850647, 0.0022068024, -0.013259888, -0.023239136, 0.0044555664, 0.0009417534, 0.0049476624, -0.010154724, -0.016296387, -0.04522705, -0.0020313263, -0.027938843, 0.0030612946, -0.0042152405, -0.034210205, -0.00016999245, -0.010726929, -0.018722534, -0.05441284, 0.016571045, -0.014701843, 0.084106445, 0.006504059, 0.08050537, -0.06402588, -0.04510498, -0.04031372, 0.017791748, -0.080322266, -0.014213562, 0.051605225, -0.041778564, -0.006439209, -0.014923096, 0.013580322, 0.03857422, 0.05670166, -0.031585693, 0.046081543, 0.010650635, -0.020065308, -0.01890564, 0.018463135, -0.021499634, 0.0137786865, -0.00932312, -0.021697998, 0.037994385, 0.024749756, -0.034729004, -0.038146973, -0.022567749, -0.019729614, -0.015670776, 0.009788513, -0.037109375, 0.01977539, 0.0039901733, -0.074279785, -0.016296387, -0.0011129379, 0.052703857, 0.037017822, -0.00945282, 0.08843994, -0.0032291412, -0.11413574, -0.093444824, -0.048217773, 0.030914307, 0.041168213, -0.0031204224, 0.009315491, 0.010902405, -0.014411926, -0.012939453, -0.011695862, 0.016067505, 0.0090408325, 0.005859375, -0.013267517, -0.024017334, -0.005268097, -0.017868042, -0.020431519, -0.026275635, -0.0007472038, 0.10168457, -0.06390381, -0.04067993, 0.0016393661, 0.015220642, 0.014213562, -0.05508423, -0.048980713, 0.03010559, 0.013282776, -0.0067253113, 0.0013170242, 0.010070801, 0.028320312, 0.04788208, -0.048706055, 0.016067505, 0.021209717, 0.017868042, 0.002483368, 0.0181427, 0.040649414, 0.05078125, -0.025436401, -0.09838867, -0.0395813, 0.0031795502, 0.018035889, 0.0009775162, 0.068603516, -0.04006958, 0.010696411, 0.02760315, -0.03262329, -0.024398804, 0.017456055, 0.058898926, 0.011878967, 0.017211914]}, "B00F3BHB80": {"id": "B00F3BHB80", "original": "Brand: Cuisinart\nName: Cuisinart CGG-306 Chef's Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel\nDescription: \nFeatures: FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches.\nTWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling.\nSTAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat.\nLIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you\nIDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).\n", "metadata": {"Name": "Cuisinart CGG-306 Chef's Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel", "Brand": "Cuisinart", "Description": "", "Features": "FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches.\nTWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling.\nSTAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat.\nLIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you\nIDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.010910034, 0.016296387, -0.029220581, 0.014450073, 0.0042304993, -0.02722168, 0.008705139, -0.031463623, -0.029388428, 0.0052757263, -0.017074585, 0.03466797, 0.02267456, -0.037506104, 0.040039062, -0.016235352, 0.00680542, 0.02571106, -0.008796692, -0.028244019, -0.001789093, -0.02760315, -0.030761719, 0.09008789, 0.06097412, -0.0362854, -0.0231781, 0.0023937225, 0.04208374, 0.012329102, 0.034698486, -0.012336731, 0.03125, 0.028427124, -0.053649902, 0.005455017, 0.012420654, -0.00340271, -0.026535034, 0.021453857, -0.007133484, 0.023925781, -0.022262573, 0.040924072, -0.037841797, -0.04525757, 0.0061798096, -0.027236938, 0.009017944, -0.0020179749, -0.0036716461, 0.018035889, 0.003540039, -0.025390625, 0.0008530617, 0.0115356445, 0.018218994, -0.057891846, 0.011680603, -0.029785156, -0.009979248, -0.015144348, 0.04260254, 0.014823914, -0.04751587, -0.0017490387, 0.030899048, -0.02508545, 0.015342712, -0.041778564, 0.00762558, 0.03488159, -0.009391785, -0.011276245, -0.024215698, -0.010856628, -0.0008058548, -0.045776367, 0.031204224, 0.0126953125, -0.046020508, 0.015266418, -0.029525757, -0.04559326, 0.00047254562, -0.03289795, -0.03564453, 0.0064888, -0.0127334595, -0.04031372, -0.013366699, 0.0061302185, -0.08520508, 0.04800415, 0.010971069, -0.0096206665, -0.021835327, -0.033081055, 0.019622803, 0.011199951, 0.024856567, -0.033325195, 0.02255249, -0.01007843, -0.005493164, 0.07635498, 0.010093689, 0.046905518, 0.012619019, -0.015686035, 0.02029419, -0.05670166, -0.018356323, -0.01576233, -0.026245117, 0.03488159, -0.0129776, -0.010368347, 0.012779236, 0.016235352, -0.033935547, 7.5519085e-05, -0.036193848, 0.023162842, 0.051605225, 0.037719727, 0.029907227, 0.0037345886, -0.061065674, 0.03717041, -0.042877197, 0.0027656555, 0.09667969, 0.06689453, 0.014419556, -0.024642944, 0.042510986, -0.010757446, 0.027023315, -0.023834229, 0.029830933, 0.011695862, 0.008934021, 0.025726318, -0.021377563, 0.006378174, 0.038635254, 0.022247314, -0.061553955, -0.04473877, 0.022827148, 0.008232117, 0.039215088, 0.023025513, -0.057800293, 0.008117676, -0.030258179, 0.0052375793, -0.012458801, -0.034484863, -0.025604248, -0.030212402, 0.012176514, -0.03527832, -0.054626465, 0.05987549, -0.007873535, -0.011665344, 0.0012102127, 0.040527344, -0.020751953, 0.028427124, -0.030578613, 0.0035514832, 0.005844116, -0.015213013, -0.015136719, 0.029052734, 0.05633545, -0.059570312, -0.047027588, -0.03656006, 0.12347412, -0.044158936, -0.02456665, -0.015823364, 0.024490356, 0.02168274, 0.021224976, 0.020477295, 0.031311035, -0.01197052, 0.02078247, 0.00076007843, 0.026290894, -0.016342163, -0.053771973, -0.001291275, -0.021896362, -0.008506775, -0.009262085, 0.0019893646, -0.037384033, 0.0038719177, -0.05429077, -0.053100586, -0.006122589, 0.010673523, 0.037261963, 0.016784668, -0.02520752, -0.018981934, 0.0158844, -0.06549072, -0.037506104, 0.020233154, -0.010681152, 0.024932861, 0.0015649796, -0.011184692, 0.026504517, -0.026657104, 0.026870728, 0.030853271, 0.040252686, 0.0062713623, -0.020767212, -0.0020828247, 0.03616333, -0.0035705566, -0.011810303, 0.045318604, 0.072265625, 0.0552063, -0.02482605, 0.03274536, 0.07635498, 0.054748535, -0.027053833, -0.01108551, 0.013267517, -0.059509277, -0.025390625, 0.029693604, -0.020904541, -0.004497528, 0.0048980713, 0.012504578, -0.010543823, 0.001537323, 0.01411438, 0.012817383, 0.042541504, 0.04486084, -0.01927185, 0.036956787, -0.010147095, 0.04647827, -0.020492554, -0.009140015, -0.006351471, 0.055267334, 0.022094727, 0.010017395, 0.038909912, 0.020935059, 0.03692627, 0.0413208, -0.034973145, 0.01878357, 0.0082092285, 0.011932373, -0.013465881, -0.008430481, 0.019470215, -0.0063476562, -0.04269409, 0.03378296, -0.0037593842, -0.014160156, -0.025177002, -0.032104492, 0.018600464, -0.004070282, 0.012687683, 0.039978027, 0.044891357, -0.021133423, -0.05065918, 0.00022995472, 0.024780273, -0.0047912598, -0.015579224, -0.022018433, -0.03527832, 0.0006146431, 0.09490967, 0.029220581, 0.008239746, -0.041748047, 0.019302368, -0.0008530617, -0.079711914, 0.009025574, -0.011634827, 0.0068092346, -0.014480591, 0.018295288, 0.0024585724, -0.05053711, 0.049438477, 0.0345459, 0.04046631, 0.019744873, 0.02218628, -0.024871826, -0.009307861, 0.04537964, -0.015083313, 0.012687683, -0.0262146, -0.006290436, -0.008384705, -0.001206398, 0.0016222, 0.003238678, -0.019882202, 0.00819397, -0.019882202, 0.024032593, 0.04067993, 0.019577026, 0.0018005371, 0.0044555664, -0.00016963482, 0.00046753883, 0.013771057, 0.012397766, 0.0001937151, -0.027435303, 0.02558899, -0.042755127, -0.012207031, -0.0075416565, 0.0026836395, -0.039123535, 0.040374756, 0.024398804, -0.013046265, 0.0046195984, 0.007171631, -0.0519104, 0.017364502, -0.037139893, 0.011566162, -0.017242432, -0.045318604, -0.037261963, -0.022949219, -0.07757568, 0.0069503784, -0.016555786, -0.039886475, -0.03173828, 0.057006836, -0.03274536, -0.02998352, -0.03970337, -0.0017795563, -0.003944397, 0.04876709, -0.002456665, -0.059661865, -0.030395508, -0.036895752, -0.028945923, 0.035339355, -0.036987305, 0.0020065308, 0.005279541, -0.01914978, 0.0062026978, -0.016738892, 0.011047363, -0.00064086914, 0.012878418, 0.034698486, 0.06341553, 0.014419556, -0.0345459, 0.030151367, 0.070617676, 0.0041236877, -0.025787354, -0.018722534, 0.0014095306, -0.004524231, -0.03274536, 0.011520386, -0.014381409, -0.07897949, 0.028900146, 0.009841919, -0.029922485, -0.016937256, -0.03668213, -0.040130615, -0.048461914, 0.038269043, 0.06384277, -0.0070114136, -0.013923645, -0.018432617, 0.011405945, -0.029663086, 0.032958984, 0.035980225, -0.007156372, 0.005783081, -0.03112793, 0.028060913, -0.053131104, 0.02772522, 0.014137268, -0.005783081, -0.018692017, -0.013084412, -0.015159607, -0.027786255, 0.049316406, -0.009963989, 0.00011318922, -0.025650024, 0.0093688965, 0.0054130554, 0.016738892, -0.010375977, -0.05239868, 0.015449524, -0.0184021, -0.036346436, -0.023712158, -0.012191772, 0.037506104, -0.0039482117, -0.0074920654, -0.04397583, -0.06347656, -0.022964478, -0.04333496, 0.030197144, 0.0005578995, 0.03756714, 0.021530151, 0.009490967, 0.08477783, -0.0031261444, 0.01285553, 0.023040771, -0.042938232, -0.04562378, -0.020187378, -0.019882202, -0.019470215, -0.017410278, -0.050079346, 0.04650879, 0.0044174194, 0.0033454895, -0.0073013306, -0.03173828, 0.059539795, 0.033813477, -0.008277893, -0.009292603, -0.072509766, 0.034179688, 0.06225586, -0.040802002, -0.062805176, -0.042541504, 0.010643005, -0.117126465, 0.120788574, 0.03225708, -0.021255493, 0.0793457, 0.05126953, 0.0087890625, 0.042388916, 0.013374329, 0.0011310577, -0.001824379, 0.06933594, -0.0071029663, 0.035888672, 0.021469116, -0.019500732, 0.01461792, 0.021835327, -0.06628418, 0.0035305023, 0.013053894, -0.0546875, -0.04159546, 0.008483887, 0.010894775, -0.0021247864, -0.014503479, -0.078125, 0.012084961, -0.041625977, 0.0066337585, 0.028411865, -0.029220581, -0.004798889, -0.019058228, 0.008392334, -0.03967285, 0.01084137, -0.007335663, 0.0115356445, -0.019561768, 0.044708252, 0.008117676, -0.004673004, -0.052886963, -0.00655365, -0.03741455, 0.028640747, 0.045166016, 0.0317688, 0.026229858, -0.033966064, -0.014587402, -0.0053100586, -0.017562866, -0.025512695, -0.008575439, -0.010093689, 0.011375427, 0.02760315, -0.006881714, -0.0039253235, -0.0126571655, -0.010368347, -0.0124435425, 0.011657715, -0.037139893, -0.023406982, -0.006580353, 0.014389038, -0.04824829, -0.02368164, -0.017745972, 0.0027580261, -0.031402588, 0.010795593, -0.0070533752, -0.010101318, -0.032592773, 0.038238525, -0.04776001, 0.011230469, -0.033721924, -0.002412796, 0.06463623, 0.045654297, 0.012290955, -0.046569824, 0.022415161, 4.172325e-05, 0.081604004, 0.0010414124, 0.03012085, -0.021072388, 0.01071167, -0.011581421, 0.06695557, 0.05831909, 0.005340576, 0.024246216, -0.027404785, -0.043792725, -0.05014038, 0.0096588135, 0.050354004, -0.04284668, -0.031082153, 0.0038204193, 0.068847656, -0.015640259, 0.0042648315, -0.038330078, 0.029006958, 0.021484375, -0.022262573, -0.067993164, -0.05078125, 0.011192322, -0.017578125, -0.004917145, 0.0025978088, -0.021347046, 0.022262573, 0.0085372925, -0.015899658, -0.015312195, -0.013442993, -0.00022315979, 0.02456665, 0.057769775, -0.029067993, -0.018066406, -0.01423645, -0.006641388, -0.03982544, 0.04119873, 0.037963867, 0.0023345947, -0.010040283, 0.005428314, -0.021026611, -0.06149292, -0.004863739, 0.0178833, -0.032928467, -0.02532959, -0.036743164, 0.025848389, -0.027252197, 0.00497818, -0.038726807, 0.005821228, 4.9054623e-05, -0.024276733, 0.0055732727, -0.0017347336, 0.033721924, -0.015541077, -0.014129639, 0.004005432, -0.031234741, -0.011352539, 0.019561768, -0.034423828, -0.028121948, -0.003370285, -0.0024871826, -0.0035514832, -0.02468872, -0.00920105, -0.073791504, 0.01474762, 0.06359863, -0.019546509, -0.0070114136, 0.0014162064, 0.043182373, -0.023117065, -0.0056419373, 0.06652832, -0.02885437, 0.0020828247, 0.066589355, -0.013618469, 0.022018433, 0.031188965, -0.015701294, 0.028503418, 0.0041503906, -0.01309967, 0.025619507, -0.0039367676, -0.0077438354, -0.018814087, 0.030685425, -0.008872986, -0.007205963, -0.029968262, -0.008903503, 0.019210815, 0.04714966, -0.005771637, -0.025604248, 0.041229248, 0.045837402, -0.011779785, 0.027053833, 0.037475586, -0.008346558, -0.003206253, 0.023086548, -0.022659302, -0.019836426, 0.023254395, -0.020248413, 0.006549835, -0.018203735, -0.0082092285, 0.028244019, -0.0010929108, -0.02407837, -0.017623901, 0.0036888123, -0.014984131, -0.04135132, -0.0095825195, -0.047454834, -0.0032730103, -0.025024414, 0.039642334, -0.008651733, 0.0026416779, -0.046020508, -0.021865845, -0.015571594, -0.00945282, -0.014213562, 0.058380127, -0.023452759, 0.041015625, -0.009788513, -0.054901123, 0.0064353943, -0.023071289, -0.049804688, -0.0034732819, 0.017929077, 0.044006348, -0.037261963, -0.05859375, 0.064331055, -0.049560547, -0.022720337, -0.065979004, 0.07800293, -0.032318115, 0.005332947, 0.054748535, -0.014556885, 0.029052734, 0.024734497, 0.007171631, -0.051483154, -0.005783081, -0.005672455, -0.08691406, -0.0071868896, -0.037506104, 0.016998291, -0.0008020401, 0.018218994, -0.008255005, 0.0423584, -0.01171875, -0.0058555603, -0.017547607, 0.0023384094, -0.00573349, -0.01889038, 0.0053863525, -0.025100708, -0.00034880638, -0.06378174, -0.03753662, -0.030578613, -0.008735657, 0.056762695, 0.026779175, -0.0063323975, -0.044525146, 0.01965332, 0.036499023, 0.013626099, 0.07977295, -0.0020542145, -0.022323608, 0.018737793, 0.028564453, -0.019515991, 0.044952393, -0.0052833557, 0.013290405, -0.013877869, -0.0044136047, 0.03604126, 0.010269165, -0.055786133, -0.016845703, 0.039031982, 0.045440674, 0.038879395, 0.04434204, 0.05783081, -0.0015659332, -0.040283203, 0.020339966, 0.050354004, -0.035339355, -0.013519287, -0.03692627, -0.01826477, 0.0012664795, -0.012832642, 0.041046143, -0.020904541, 0.037261963, -0.018859863, -0.0012207031, 0.0059127808, -0.019927979, 0.013244629, -0.026016235, -0.011161804, -0.008758545, 0.00011122227, 0.018218994, -0.033233643, -0.016067505, 0.006500244, 0.02722168, -0.01991272, 0.042510986, -0.049346924, -0.0016965866, 0.02381897, -0.054534912, 0.013427734, 0.018981934, -0.017745972, -0.012840271, -0.047576904, -0.016281128, -0.031677246, 0.0074882507, 0.017471313, 0.052001953, 0.0030899048, 0.028961182, -0.009780884, 0.014778137, -0.015319824, -0.011238098, -0.008575439, 0.010795593, 0.030975342, -0.0057144165, 0.0048561096, 0.018920898, 0.04034424, -0.020385742, -0.00012177229, -0.0055618286, 0.01537323, -0.013465881, 0.017150879, -0.024597168, -0.053985596, 0.028015137, 0.044769287, -0.032226562, 0.009353638, -0.010810852, -0.026504517, 0.025375366, -0.06210327, 0.028274536, -0.0018510818, 0.066345215, 0.040893555, 0.022598267, -0.05783081, -0.04611206, -0.010803223, -0.0435791, 0.025161743, 0.005443573, 0.00055933, 0.03475952, 0.000647068, 0.024597168, 0.03817749, -0.046661377, 0.0317688, 0.019439697, 0.0017499924, 0.057800293, -0.00504303, -0.0073623657, 0.008903503, 0.001455307, 0.011924744, 0.0491333, 0.0028762817, 0.032348633, 0.030319214, 0.016113281, -0.033966064, 0.009460449, 0.00089645386, -0.049072266, 0.04788208, -0.030014038, -0.017486572, -0.024490356, -0.05532837, 0.009651184, 0.0005669594, -0.05596924, 0.043548584, 0.02859497, -0.014694214, -0.0155181885, -0.012435913, 0.038391113, -0.044555664, 0.03781128, -0.0054130554, 0.0024795532, 0.010215759, 0.04071045, -0.029067993, -0.044708252, -0.0317688, 0.018753052, -0.007926941, -0.054840088, -0.011642456, 0.0049819946, -0.0053367615, -0.01586914, 0.028717041, 0.04269409, 0.019058228, -0.0014944077, 0.022399902, -0.03466797, -0.053527832, 0.06665039, 0.023757935, -0.046569824, 0.013954163, 0.051727295, 0.012680054, 0.057250977, 0.018920898, -0.00566864, -0.04550171, -0.008071899, -0.036346436, 0.023391724, -6.6936016e-05, -0.01751709, 0.031829834, 0.0072669983, -0.05090332, 0.0096206665, 0.0118255615, 0.044403076, 0.032073975, 0.021453857, 0.02128601, -0.019302368, -0.034606934, -0.041625977, -0.01777649, 0.021514893, 0.009590149, -0.013786316, 0.013069153, 0.014083862, -0.033569336, 0.0234375, 0.016693115, -0.01386261, 0.008773804, 0.032287598, 0.02720642, 0.013595581, -0.013221741, 0.0095825195, -0.04083252, -0.053131104, 0.015914917, 0.010818481, -0.0154953, 0.002861023, -0.018173218, 0.006252289, -0.00283432, -0.013191223, -0.007904053, -0.03845215, -0.0026245117, 0.033203125, -0.008506775, 0.013656616, -0.014205933, -0.014083862, -0.028045654, 0.009796143, 0.02633667, 0.00081014633, -0.0625, 0.027023315, 0.020629883, 0.049102783, -0.031158447, -0.06225586, -0.057647705, 0.017028809, 0.0013570786, 0.0049209595, 0.040374756, 0.0008826256, 0.004337311, -0.01928711, -0.013046265, -0.062042236, 0.033355713, 0.009216309, 0.0023860931, 0.035736084]}, "B07ZZM9S3B": {"id": "B07ZZM9S3B", "original": "Brand: Napoleon\nName: Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black\nDescription: \nFeatures: The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner\nPrecise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing\nUse the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience\nThe stainless steel cooking grids are virtually maintenance free\nDurable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather\n", "metadata": {"Name": "Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black", "Brand": "Napoleon", "Description": "", "Features": "The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner\nPrecise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing\nUse the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience\nThe stainless steel cooking grids are virtually maintenance free\nDurable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0043640137, 0.008201599, -0.057128906, 0.026870728, 0.007408142, -0.04058838, 0.038909912, -0.0002503395, -0.026733398, -0.007701874, -0.03591919, 0.013946533, -0.026733398, -0.025985718, 0.02619934, -0.046722412, 0.031204224, 0.018188477, 0.03741455, 0.004650116, 0.012901306, 0.016647339, 0.015571594, 0.077819824, 0.04196167, -0.02267456, 0.01600647, -0.012809753, 0.05368042, 0.011711121, 0.034942627, -0.010177612, 0.021575928, 0.0069732666, -0.015090942, -0.013801575, 0.005443573, -0.0071983337, -0.020141602, 0.020980835, 0.036621094, -0.011306763, -0.051116943, 0.01663208, -0.040527344, -0.044952393, 0.057495117, -0.0072517395, 0.008163452, 0.05984497, 0.019607544, -0.006717682, 0.014549255, 0.04360962, -0.020111084, -0.039367676, 0.0032539368, -0.008430481, 0.018432617, 0.023468018, -0.030517578, -0.006336212, 0.014343262, -0.03656006, -0.053497314, -0.0038433075, 0.09020996, 2.8550625e-05, -0.021530151, -0.08428955, 0.0056915283, 0.02810669, -0.00026583672, 0.0008029938, -0.034057617, -0.009025574, 0.009010315, 0.00023245811, 0.030700684, -0.02658081, 0.002254486, 0.029678345, 0.023132324, -0.017669678, 0.0012054443, -0.0045051575, -0.019485474, -0.009315491, -0.02128601, -0.055755615, -0.00088119507, -0.05203247, -0.07287598, 0.028915405, 0.02029419, -0.054534912, -0.042388916, -0.07525635, 0.029937744, -0.012512207, 0.041778564, -0.022491455, -0.007835388, 0.022766113, -0.012588501, 0.06137085, 0.020736694, 0.02507019, -0.0053901672, -0.016143799, -0.0053977966, -0.026168823, 0.042633057, 0.017120361, -0.024734497, -0.0335083, -0.024993896, 0.03414917, 0.003189087, 0.008720398, -0.044036865, -0.00029730797, 0.018585205, 0.0029144287, 0.034362793, 0.049865723, 0.019744873, -0.022964478, -0.017715454, 0.054656982, -0.017608643, -0.012123108, 0.008483887, 0.033935547, 0.0020046234, -0.014984131, 0.05593872, -0.03527832, 0.011276245, -0.011062622, 0.005428314, 0.016479492, 0.024337769, -0.012290955, -0.037200928, 0.00043439865, -0.013549805, 0.021224976, 0.015098572, -0.024765015, -0.006477356, -0.040222168, 0.026290894, 0.01965332, -0.033569336, 0.039001465, 0.002161026, 0.0033512115, -0.032806396, -0.021606445, -0.023117065, -0.018615723, 0.00349617, 0.009376526, -0.0076408386, 0.04397583, 0.004901886, 0.00623703, 0.028182983, 0.06213379, -0.020004272, -0.023117065, 0.038970947, 0.04736328, -0.0011520386, 0.04437256, -0.022720337, -0.008018494, 0.062927246, -0.091796875, -0.09564209, -0.061950684, 0.07727051, -0.044921875, 0.005580902, -0.013671875, 0.012908936, -0.020568848, 9.000301e-05, 0.0110321045, 0.010131836, 0.03765869, -0.003118515, 0.024368286, 0.032806396, -0.013809204, -0.044311523, -0.006023407, -0.0109939575, -0.043701172, 0.0035858154, 0.02357483, -0.010910034, 0.013771057, -0.03717041, 0.014274597, -0.008300781, 0.01776123, 0.021057129, 0.031585693, -0.0018529892, 0.03555298, -0.01461792, -0.058807373, -0.032440186, 0.021133423, -0.011253357, 0.011550903, 0.041137695, 0.042297363, 0.046966553, 0.04675293, 0.034301758, -0.016357422, 0.034210205, -0.03152466, -0.013092041, -0.017196655, 0.010665894, 0.0112838745, -0.06732178, 0.013648987, 0.06719971, 0.0715332, 0.0040397644, 0.046417236, 0.077941895, 0.018035889, -0.032806396, -0.031402588, 0.021102905, -0.0075187683, 0.0001308918, 0.009811401, 0.03515625, 0.007507324, 0.02166748, -0.01838684, -0.026290894, 0.013313293, 0.03945923, 0.030700684, 0.010612488, 0.080566406, -0.007259369, 0.0014648438, 0.02330017, 0.018493652, 0.015991211, 0.008705139, -0.007484436, 0.066101074, -0.0029067993, 0.02418518, -0.005241394, 0.03768921, 0.030838013, 0.051483154, -0.027252197, 0.013206482, 0.008956909, 0.052825928, -0.0064315796, -0.023284912, -0.03579712, 0.008613586, 0.0038318634, 0.02420044, -0.025756836, -0.029724121, 0.022384644, -0.03213501, -0.0155181885, 0.0022239685, 0.06951904, 0.014083862, 0.0085372925, 0.03363037, -0.013114929, -0.012779236, 0.013427734, -0.0011920929, -0.0070152283, 0.022857666, -0.033081055, -0.021118164, 0.105895996, -0.02645874, 0.015914917, -0.0045814514, 0.056732178, 0.043548584, -0.013710022, -0.0046920776, 0.007347107, -0.012207031, 0.019348145, -0.0075798035, -0.0017795563, -0.025512695, 0.017562866, 0.039123535, 0.014526367, 0.030014038, 0.008666992, -0.022857666, 0.0046577454, 0.041290283, 0.0362854, 0.05355835, -0.020828247, -0.009422302, -0.031463623, 0.005290985, 0.005405426, 0.02520752, -0.01550293, 0.0002579689, -0.03527832, -0.0124435425, 0.0030078888, -0.04559326, -0.021484375, -0.011421204, -0.003993988, 0.0010967255, 0.0064086914, 0.023345947, -0.0184021, -0.08355713, -0.027435303, -0.06427002, -0.016189575, 0.012901306, -0.041870117, -0.0023841858, 0.014450073, 0.006576538, -0.022994995, 0.0031700134, 0.007587433, -0.03250122, -0.0058517456, -0.03982544, -0.013206482, 0.05895996, -0.008529663, -0.043823242, 0.018920898, -0.052764893, 0.015068054, -0.03692627, -0.039123535, -0.024887085, 0.059631348, -0.018417358, -0.0552063, -0.01914978, 0.010627747, 0.019699097, 0.0059394836, 0.021881104, -0.08026123, -0.015144348, -0.007247925, 0.015205383, -0.0034065247, -0.0435791, -0.005092621, -0.02130127, -0.010887146, 0.012557983, 0.0062713623, 0.012184143, 0.0038337708, 0.007396698, 0.015014648, 0.015686035, 0.05529785, 0.004673004, 0.041107178, 0.020996094, -0.029556274, -0.01687622, -0.012062073, 0.010116577, -0.012237549, 0.018112183, -0.024276733, -0.014663696, -0.04537964, 3.707409e-05, 0.018692017, -0.04812622, -0.015617371, -0.08105469, -0.064697266, -0.01737976, 0.010414124, 0.016311646, 0.023757935, -0.024765015, 0.013542175, -0.040008545, 0.011650085, -0.022750854, 0.015510559, -0.005104065, 0.04324341, -0.03427124, 0.016159058, -0.04345703, 0.021972656, 0.013374329, -0.036956787, 0.0178833, 0.011886597, 0.042419434, 0.012680054, 0.020233154, 0.02305603, -0.022277832, -0.012321472, 0.022064209, 0.031433105, 0.024459839, -0.01626587, -0.06695557, 0.015945435, -0.04168701, -0.0008006096, -0.0074157715, 0.019760132, 0.07574463, 0.0018339157, 0.00198555, -0.030410767, -0.021560669, -0.048614502, -0.048858643, -0.009254456, 0.009284973, 0.043060303, 0.037994385, 0.026229858, 0.120666504, 0.004863739, 0.029907227, 0.004436493, -0.022201538, -0.004798889, -0.032684326, 0.0024986267, -0.0071258545, 0.012893677, -0.009170532, 0.0051498413, 0.0031337738, -0.033416748, 0.022583008, -0.002632141, 0.018844604, -0.0024433136, -0.025222778, -0.005760193, -0.03427124, 0.04284668, 0.015991211, -0.009597778, -0.052001953, -0.042907715, 0.010978699, -0.0546875, 0.09387207, 0.049713135, -0.019332886, 0.095581055, 0.04763794, -0.00012207031, 0.058929443, 0.046966553, -0.010879517, -0.015602112, 0.08544922, -0.04437256, 0.04156494, 0.016906738, -0.03387451, -0.01033783, 0.001449585, -0.047607422, 0.013725281, 0.0034313202, 0.016540527, 0.00894165, 0.04751587, 0.041748047, 0.00894928, -0.023544312, -0.034332275, 0.017547607, -0.058746338, -0.0020923615, 0.023956299, -0.04510498, -0.018981934, -0.045318604, 0.0056419373, -0.06384277, 0.019119263, -0.012924194, 0.0178833, -0.023422241, 0.026535034, 0.023788452, -0.01222229, -0.027816772, 0.033172607, -0.025268555, -0.012878418, -0.0015554428, 0.02432251, 0.0022354126, 0.0024757385, 0.019165039, 0.0069465637, -0.01687622, -0.0062332153, -0.046569824, -0.038757324, -0.015586853, 0.018875122, 0.027160645, -0.02507019, 0.021759033, -0.06951904, 0.011100769, -0.015991211, -0.04208374, -0.0013713837, -0.0054359436, -0.006931305, -0.03955078, -0.016708374, -0.04083252, -0.005218506, -0.052337646, 0.017486572, -0.00012099743, 0.011672974, -0.011123657, 0.007965088, -0.05996704, 0.011665344, -0.0692749, 0.0030574799, 0.04498291, 0.027297974, 0.040924072, -0.03842163, 0.024856567, -0.011230469, 0.09637451, 0.011505127, 0.007507324, -0.034942627, -0.024963379, -0.0155181885, 0.021530151, 0.049194336, 0.0036792755, 0.04269409, -0.03894043, -0.04067993, -0.050598145, 0.0012159348, 0.03363037, -0.026443481, -0.021743774, 0.014930725, 0.06384277, -0.023635864, -0.010421753, -0.0184021, 0.05307007, -0.015022278, 0.035491943, -0.054016113, 0.013420105, 0.024612427, -0.02267456, 0.03277588, 0.0041618347, 0.0015592575, 0.01184845, 0.08807373, 0.04360962, -0.0055618286, -0.0054779053, -0.030471802, 0.02217102, 7.176399e-05, -0.007320404, 0.02520752, -0.0036621094, -0.046417236, -0.02798462, 0.06463623, 0.029556274, -0.014839172, -0.0087509155, 0.013328552, -0.024490356, -0.07196045, 0.010528564, -0.028320312, -0.016525269, -0.0385437, -0.0418396, 0.006160736, -0.044189453, 0.0051727295, 0.011634827, -0.008323669, 0.014511108, -0.0051078796, 0.017715454, -0.039031982, 0.004737854, 0.050079346, 0.014503479, 0.010192871, 0.0039520264, -0.006877899, 0.0026741028, -0.011917114, 0.011062622, -0.012641907, 0.0029850006, -0.03778076, 0.01878357, -0.010681152, -0.015914917, 0.02029419, -0.009971619, 0.025634766, -0.0234375, 0.0007929802, 0.037841797, -0.010040283, -0.07672119, -0.0026512146, -0.018844604, -0.005622864, 0.044311523, -0.0012197495, 0.025161743, 0.04107666, -0.018127441, 0.050109863, 0.01979065, -0.006919861, 0.032196045, -0.0025119781, 0.0036392212, -0.05227661, 0.04324341, -0.015716553, -0.0032691956, -0.05709839, -0.009681702, 0.016296387, 0.026672363, 0.049072266, -0.046691895, 0.05154419, -0.00440979, -0.036621094, -0.007080078, 0.05316162, -0.027404785, -0.011405945, 0.019836426, -0.042419434, -0.075805664, -0.027755737, -0.033477783, 0.023513794, -0.019943237, -0.01260376, 0.0072288513, 0.020614624, -0.021118164, -0.018859863, 0.011238098, -0.018478394, -0.046203613, 0.0011959076, -0.038330078, -0.01625061, -0.020599365, 0.05633545, 0.01876831, 0.006500244, -0.01083374, -0.020217896, 0.025985718, 0.008079529, -0.015716553, 0.041381836, 0.0026168823, -0.02645874, -0.009979248, 0.012039185, 0.016815186, -0.0049934387, -0.038330078, 0.013549805, 0.021438599, 0.03451538, 0.008300781, 0.009399414, 0.045684814, -0.026657104, -0.00015175343, -0.12805176, 0.07556152, -0.036987305, -0.033721924, 0.016937256, 0.03286743, 0.00036215782, 0.02961731, -0.035369873, -0.040893555, -0.015197754, -0.018966675, -0.05178833, -0.012481689, -0.029006958, 0.013595581, 0.006690979, -0.05307007, -0.026489258, 0.03503418, -0.02017212, -0.04837036, -0.025604248, -0.044525146, 0.03527832, 0.0013275146, 0.0011444092, -0.02607727, -0.014457703, -0.035186768, -0.0076179504, -0.025924683, -0.03186035, -0.015563965, 0.051696777, 0.008644104, 0.00818634, -0.014602661, 0.015640259, -0.0619812, 0.062683105, -0.027923584, -0.0039596558, 0.007896423, 0.024246216, 0.00091838837, 0.041015625, -0.0021514893, -0.006362915, -0.045684814, -0.015274048, 0.0050735474, 0.040283203, -0.026184082, 0.018554688, 0.022262573, 0.03375244, 0.0019893646, -0.03857422, -0.0052604675, -0.02960205, -0.0368042, -0.011054993, -0.010726929, -0.03829956, -0.04309082, -0.043121338, -0.009506226, 0.010772705, 0.0046195984, 0.018707275, 0.016067505, 0.010749817, 0.00071668625, -0.011810303, 0.017242432, -0.0015211105, 0.029022217, 0.0008916855, -0.03692627, 0.013946533, -0.0006322861, -0.0069084167, 0.008522034, 0.011985779, -0.015029907, 0.019729614, -0.02394104, 0.050964355, -0.015213013, 0.023635864, 0.03878784, -0.07519531, 0.005680084, 0.023803711, 0.018692017, 0.018615723, -0.10266113, -0.062347412, -0.023651123, 0.03543091, 0.0020656586, -0.009559631, 0.04748535, 0.028198242, -0.007118225, 0.034576416, -0.027526855, -0.05029297, 0.03111267, 0.0049972534, 0.03781128, -0.002199173, 0.041809082, -0.0008826256, 0.06222534, -0.058776855, 0.001868248, -0.024215698, 0.012077332, -0.05770874, 0.019592285, -0.026931763, -0.08459473, -0.0256958, 0.048461914, -0.01802063, 0.055145264, -0.021011353, 0.024261475, 0.011871338, -0.032928467, 0.036499023, -0.048919678, 0.051574707, 0.035369873, 0.017425537, -0.024383545, -0.012084961, -0.017791748, 0.0011405945, 0.019088745, 0.027282715, 0.015365601, 0.038909912, 0.034362793, 0.015060425, 0.04714966, -0.018692017, 0.007843018, 0.0020141602, 0.0035743713, 0.014762878, 0.03152466, 1.0430813e-05, -0.0033988953, -0.004787445, 0.0074157715, 0.027114868, 0.050476074, 0.055511475, 0.03475952, -0.0059547424, -0.0012512207, -0.03152466, 0.025131226, -0.010925293, 0.025848389, -0.010032654, -0.013504028, -0.014785767, -0.04437256, -0.064941406, -0.045166016, -0.064331055, 0.037109375, -0.030075073, 0.0037212372, 0.011390686, -0.015617371, 0.015365601, -0.04046631, 0.016571045, -0.008522034, 0.030319214, -0.00422287, 0.047576904, -0.04901123, -0.048858643, -0.019012451, 0.02999878, -0.07611084, -0.06097412, -0.007820129, 0.004131317, 0.0134887695, -0.0047721863, 0.0014562607, 0.024856567, 0.022064209, -0.020996094, 0.021591187, -0.009780884, 0.002500534, -0.0012540817, 0.009963989, -0.042175293, -0.028060913, -0.015274048, -0.0063323975, 0.020187378, -0.001203537, 0.011886597, -0.0074043274, 0.040771484, 0.03744507, -0.0021381378, -0.007347107, -0.011924744, -0.0029621124, -0.012306213, -0.05783081, -0.008178711, 0.0005350113, 0.043701172, 0.035217285, 0.018463135, 0.04144287, 0.0104904175, -0.07574463, -0.009880066, -0.023040771, -0.0014028549, 0.022033691, 0.013908386, -0.014823914, 0.041625977, -0.02519226, 0.04333496, 0.044891357, -0.034118652, 0.013809204, -0.008155823, 0.017974854, -0.002998352, -0.011253357, 0.02708435, -0.03010559, -0.016418457, 0.02772522, 0.018356323, -0.018539429, 0.006729126, -0.047088623, 0.013008118, 0.00920105, -0.024993896, -0.01940918, -0.007881165, -0.0050735474, 0.025131226, -0.004234314, 0.0052757263, -0.0149002075, 0.004650116, -0.012321472, 0.0025844574, 0.022338867, -0.00340271, -0.027313232, 0.0076446533, 0.0071144104, -0.0038776398, -0.0062408447, -0.020690918, -0.014457703, 0.036499023, 0.014144897, -0.009521484, 0.041625977, -0.03173828, 0.018966675, -0.0036907196, -0.004055023, 0.00573349, 0.008712769, 0.061767578, -0.023147583, 0.016021729]}, "B01J3S1NWI": {"id": "B01J3S1NWI", "original": "Brand: Cuisinart\nName: Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill\nDescription: \nFeatures: 146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use.\n8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability.\nCOMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more.\nNO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches.\nLOCKING LID: The lid latches down allowing for quick and easy transport\n", "metadata": {"Name": "Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill", "Brand": "Cuisinart", "Description": "", "Features": "146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use.\n8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability.\nCOMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more.\nNO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches.\nLOCKING LID: The lid latches down allowing for quick and easy transport", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029632568, 0.026824951, -0.043548584, 0.00041508675, 0.014717102, -0.01826477, -0.014373779, -0.016937256, -0.047943115, 0.018447876, -0.036224365, 0.05029297, 0.016830444, -0.01689148, 0.046936035, -0.0231781, -0.0054626465, 0.023880005, -0.012001038, -0.030822754, -0.0047035217, -0.024520874, -0.050689697, 0.071777344, 0.05279541, -0.04522705, -0.014228821, 0.015098572, 0.03414917, 0.008850098, 0.037109375, -0.00022363663, 0.04248047, -0.008293152, -0.024215698, -0.016738892, 0.003376007, -0.014419556, -0.027145386, 0.0039253235, -0.008560181, 0.022201538, -0.015808105, -0.009773254, -0.024307251, -0.047546387, 0.028915405, -0.014343262, 0.023544312, -0.018295288, -0.010848999, -0.011352539, -0.0038223267, -0.01979065, -0.008300781, 0.011726379, -0.005054474, -0.029876709, 0.019165039, -0.016998291, -0.0140686035, -0.018493652, 0.035369873, 0.0029582977, -0.03857422, -0.01928711, 0.057403564, -0.016021729, 0.004169464, -0.04071045, 0.022994995, 0.030227661, 0.022567749, 0.008018494, -0.033599854, -0.07220459, 0.058410645, -0.03970337, 0.008232117, 0.0035858154, -0.040283203, -0.0016212463, 0.00018548965, -0.017990112, -0.013870239, -0.005645752, -0.02494812, -0.0008864403, -0.024642944, -0.028549194, -0.010383606, -0.005672455, -0.07141113, 0.04559326, 0.018371582, -0.011871338, -0.05105591, -0.07019043, 0.040130615, 0.00522995, 0.041290283, -0.04119873, 0.019104004, 0.007457733, -0.020599365, 0.042266846, 0.004009247, 0.052581787, 0.01828003, 0.0031318665, 0.0008292198, -0.059936523, -0.035705566, -0.008201599, -0.013893127, 0.025772095, -0.04232788, 0.010002136, -0.016601562, 0.02911377, -0.02192688, 0.0032958984, -0.024093628, 0.014122009, 0.04916382, 0.042114258, 0.025726318, -0.006374359, -0.07373047, 0.037017822, -0.032684326, 0.008804321, 0.07495117, 0.060699463, 0.0056915283, -0.013900757, 0.0362854, 0.025878906, 0.025161743, -0.018508911, 0.010040283, -0.009094238, 0.012023926, 0.01574707, 0.0058250427, 0.026687622, 0.0423584, 0.014419556, -0.03753662, -0.044311523, 0.03894043, 0.006790161, 0.043914795, 0.031982422, -0.07098389, 0.005504608, 0.0021457672, -0.01927185, -0.0385437, -0.07531738, -0.024932861, -0.027359009, 0.008300781, -0.026062012, -0.05050659, 0.047668457, 0.0019779205, 0.0038394928, 0.0119018555, 0.05505371, -0.021453857, 0.027145386, -0.023727417, 0.02027893, 0.010612488, -0.009666443, -0.009346008, 0.04031372, 0.05126953, -0.05114746, -0.033111572, -0.0418396, 0.12445068, -0.036499023, -0.02508545, -0.02545166, 0.021469116, 0.0146102905, 0.025512695, 0.015434265, 0.041534424, -0.02128601, 0.02960205, -0.025405884, 0.030776978, -0.0047416687, -0.04397583, 0.005657196, -0.0034923553, -0.018157959, 0.011070251, 0.006011963, -0.007534027, -0.011207581, -0.034454346, -0.027709961, -0.001543045, 0.008911133, 0.031280518, 0.016326904, -0.020217896, -0.017425537, 0.020965576, -0.060821533, -0.039733887, 0.018936157, -0.014602661, 0.015602112, 0.010391235, -0.012260437, 0.028259277, -0.00069379807, 0.030685425, 0.019332886, 0.051239014, 0.022277832, -0.027786255, 0.009994507, 0.030517578, 0.015716553, -0.033447266, 0.022735596, 0.08532715, 0.050567627, -0.016296387, 0.031555176, 0.082214355, 0.012161255, -0.032836914, 0.0028419495, 0.010368347, -0.07531738, -0.03491211, 0.0107803345, -0.019729614, -0.011734009, 0.0132369995, 0.00058221817, -0.016738892, 0.012825012, 0.023544312, 0.00018310547, 0.019424438, 0.034301758, -0.022949219, 0.015914917, 0.0063934326, 0.03375244, -0.044525146, 0.015914917, -0.0049057007, 0.03881836, -0.001663208, 0.011123657, 0.0020313263, 0.0035896301, 0.02079773, 0.019439697, -0.02458191, -0.0020923615, 0.025604248, 0.016159058, -0.0054893494, -0.02180481, -0.0039901733, -0.004142761, -0.03781128, 0.03640747, 0.0042419434, -0.027175903, 0.00088357925, -0.04373169, -0.017578125, 0.008399963, 0.0357666, 0.01802063, 0.030944824, 0.04034424, -0.041900635, -0.0062446594, 0.020965576, -0.018798828, -0.021850586, -0.02973938, -0.006511688, -0.020080566, 0.099487305, 0.011436462, 0.025604248, -0.038482666, 0.024627686, 0.009742737, -0.07696533, 0.024597168, -0.0036315918, 0.01473999, -0.022415161, 0.02168274, 0.022064209, -0.011505127, 0.01285553, 0.044525146, 0.038970947, 0.0024166107, 0.028656006, -0.010627747, -0.01146698, 0.045928955, -0.0181427, 0.0054969788, -0.015281677, -0.017471313, -0.03048706, -0.013412476, -0.0032730103, 0.0041999817, -0.029129028, -0.0058059692, -0.016281128, 0.01763916, 0.0044670105, 0.004432678, -0.009010315, 0.023544312, -0.0032405853, 0.009780884, 0.0017719269, 0.0053634644, -0.00233078, -0.004928589, 0.020599365, -0.03768921, 0.002128601, -0.012413025, -0.0004541874, -0.021209717, 0.023971558, 0.015144348, -0.050323486, 0.016098022, -0.0013856888, -0.04345703, 0.01965332, -0.053527832, 0.0131073, 0.020446777, -0.050720215, -0.06451416, -0.022384644, -0.09289551, -0.016082764, -0.0022583008, -0.041534424, -0.010154724, 0.047821045, -0.028869629, -0.046081543, -0.0046424866, -0.025009155, 0.00869751, 0.062805176, 0.013771057, -0.04977417, -0.04714966, -0.07165527, -0.027359009, 0.061523438, -0.03024292, 0.029510498, 0.03152466, -0.015655518, 0.011726379, -0.04159546, 0.0030612946, -0.0071105957, 0.017150879, 0.0637207, 0.0692749, 0.014419556, -0.042236328, 0.04019165, 0.079956055, -0.012641907, -0.01272583, -0.014442444, -0.003232956, -0.0026435852, -0.051605225, -0.020950317, -0.019073486, -0.07269287, 0.012519836, -0.009544373, -0.026550293, -0.0018339157, -0.05505371, -0.03366089, -0.053894043, 0.017349243, 0.08325195, -0.023269653, -0.022644043, -0.037872314, 0.0018501282, -0.009880066, 0.021865845, 0.029907227, -0.0016593933, 0.008277893, -0.04055786, 0.017684937, -0.025054932, 0.010734558, 0.011695862, -0.015213013, 0.007873535, -0.021209717, -0.009117126, -0.008880615, 0.045135498, -0.00044846535, 0.004432678, -0.026397705, 0.00730896, -0.009185791, 0.0033130646, -0.009132385, -0.072509766, 0.027053833, -0.030044556, -0.068359375, -0.037750244, 0.021835327, 0.031341553, 0.019607544, 0.0010814667, -0.0574646, -0.040893555, -0.021209717, -0.016052246, 0.03652954, 0.009346008, 0.007843018, 0.023788452, -0.011131287, 0.04574585, 0.012062073, 0.009536743, 0.03756714, -0.028533936, -0.05593872, -0.016281128, -0.0058631897, -0.033691406, -0.014282227, -0.0619812, 0.06311035, -0.002653122, 0.016921997, -0.0020389557, -0.029129028, 0.060394287, 0.006717682, -0.008056641, -0.013572693, -0.08392334, 0.03463745, 0.050109863, 0.005355835, -0.042541504, -0.05038452, 0.011520386, -0.1394043, 0.08868408, 0.027359009, -0.025863647, 0.066711426, 0.02645874, -0.0026988983, 0.031677246, 0.008659363, 0.012336731, -0.013435364, 0.08581543, -0.00819397, 0.021575928, 0.025527954, -0.06738281, 0.0103302, 0.0181427, -0.062164307, 0.028060913, 0.0070381165, -0.057647705, -0.03677368, 0.022857666, 0.0012550354, -0.021362305, -0.011276245, -0.070495605, -0.02709961, -0.06329346, -0.014411926, 0.0030841827, -0.023422241, -0.021270752, -0.015930176, -0.012329102, -0.0335083, 0.0073928833, -0.021881104, 0.020812988, -0.029006958, 0.054260254, 0.0077323914, -0.009460449, -0.057373047, 0.011520386, -0.0057792664, 0.035888672, 0.015090942, -0.0071754456, 0.027389526, -0.014122009, 0.009597778, -0.009666443, -0.015129089, 0.0037899017, -0.03616333, -0.03527832, -0.0006957054, 0.039154053, 0.014381409, -0.030807495, -0.0070495605, -0.03829956, -0.007446289, 0.0023555756, -0.014953613, -0.011489868, 0.0042762756, 0.005554199, -0.049621582, -0.051635742, -0.037841797, 0.005542755, -0.021011353, 0.015357971, -0.007205963, -0.047210693, -0.023391724, 0.022583008, -0.05718994, 0.023864746, -0.031204224, -0.014976501, 0.060424805, 0.040161133, 0.021896362, -0.045196533, 0.03869629, 0.0037193298, 0.08428955, -0.006248474, 0.027130127, -0.025314331, -0.00944519, -6.341934e-05, 0.043548584, 0.05267334, -0.012939453, 0.019134521, -0.025543213, -0.015296936, -0.042510986, -0.019638062, 0.05102539, -0.07678223, -0.041809082, -0.025405884, 0.08251953, -0.010231018, 0.03161621, -0.01083374, -0.009468079, -0.017166138, -0.0018587112, -0.064575195, -0.037139893, -0.003232956, -0.00579834, -0.0059661865, -0.0024852753, -0.026641846, 0.045288086, -0.007446289, 0.03152466, -0.039855957, -0.0019235611, -0.002216339, 0.023864746, 0.05908203, -0.062072754, 0.007221222, -0.041748047, -0.023422241, -0.03741455, 0.040771484, 0.06585693, 0.017654419, 0.0044136047, 0.014038086, -0.018997192, -0.05657959, 0.002029419, 0.009407043, -0.028427124, 0.0024051666, -0.0096588135, 0.027374268, -0.0029411316, -0.0030994415, -0.025680542, -0.024902344, -0.008995056, -0.031188965, 0.016357422, 0.0019273758, 0.058410645, -0.0042037964, -0.009063721, 0.025497437, -0.027633667, 0.0024414062, 0.042633057, -0.0109939575, -0.009712219, -0.011177063, -0.0024490356, 0.013809204, -0.021331787, -0.0072517395, -0.09033203, 0.013420105, 0.0657959, -0.025115967, -0.009277344, 0.017318726, 0.044433594, 0.00041151047, -0.0007557869, 0.08843994, -0.027832031, -0.00868988, 0.01838684, -0.012252808, 0.015975952, 0.049102783, -0.034698486, 0.03353882, 0.03643799, -0.027923584, 0.028533936, -0.022201538, -0.0026664734, -0.037902832, 0.023254395, 0.0032596588, -0.0006875992, -0.053649902, -0.0010232925, 0.02949524, 0.060913086, 0.016860962, -0.04840088, 0.03967285, -0.001534462, -0.032318115, 0.03189087, 0.041778564, 0.0011034012, 0.0045051575, 0.028411865, -0.010421753, -0.021453857, 0.034576416, -0.036224365, 0.023620605, -0.022781372, 0.002811432, 0.016555786, 0.010253906, -0.017425537, -0.021911621, 0.0077285767, -0.004283905, -0.024627686, -0.013572693, -0.048706055, -0.017959595, -0.01524353, 0.06628418, -0.013023376, 0.008102417, -0.041809082, -0.024963379, -0.027053833, 0.0035495758, -0.01461792, 0.056793213, -0.017745972, 0.03543091, 0.022338867, -0.056152344, 0.00018596649, -0.0060195923, -0.016952515, -0.0013303757, 0.019515991, 0.043640137, -0.021972656, -0.054840088, 0.07891846, -0.044952393, -0.03048706, -0.068115234, 0.06298828, -0.01625061, -0.003829956, 0.05606079, -0.01184845, 0.024810791, 0.02029419, 0.010322571, -0.035247803, -0.0031490326, 0.0010881424, -0.07476807, -0.042755127, -0.026855469, -0.0025405884, -0.030639648, 0.0105896, -0.018585205, 0.05380249, -0.017364502, -0.045898438, -0.014961243, 0.010353088, 0.008308411, -0.037384033, 0.009849548, -0.0069351196, 0.0073394775, -0.023864746, -0.0040283203, -0.030914307, 0.0023975372, 0.029769897, 0.027893066, 0.004470825, -0.044525146, 0.0076942444, 0.033111572, 0.024261475, 0.07891846, -0.005508423, -0.023773193, 0.013130188, 0.03149414, -0.009162903, 0.052856445, -0.0036754608, 0.0026760101, -0.010414124, -0.01675415, 0.04248047, 0.006668091, -0.01486969, 0.027709961, 0.038208008, 0.018676758, 0.021133423, 0.020507812, 0.048919678, 0.025604248, -0.035186768, 0.0007109642, 0.044036865, -0.0211792, -0.009269714, -0.012687683, 0.00087690353, 0.029373169, -0.013206482, 0.040893555, 0.013389587, 0.044189453, 0.017700195, 0.0012788773, 0.012016296, 0.005378723, 0.001786232, -0.027282715, -0.020477295, 0.016113281, 0.02571106, 0.0074920654, -0.022750854, 0.007785797, -0.005844116, 0.011619568, -0.015548706, 0.052734375, -0.030303955, 0.008674622, 0.05343628, -0.07196045, 0.006877899, 0.0037460327, -0.007331848, -0.014907837, -0.068481445, -0.037384033, -0.0019378662, 0.007987976, -0.0033187866, 0.047454834, 0.015655518, 0.008773804, -0.018554688, -0.007835388, -0.009895325, -0.032165527, 0.024536133, 0.01512146, 0.015655518, -0.009788513, -0.019470215, 0.003742218, 0.058441162, -0.039733887, -0.009971619, 0.007080078, 0.020904541, -0.020889282, 0.03805542, -0.020523071, -0.047668457, 0.022766113, 0.035247803, -0.015625, 0.031799316, 0.0096206665, -0.009475708, 0.0022945404, -0.048034668, 0.020263672, -0.012619019, 0.037628174, 0.032714844, 0.024047852, -0.04675293, -0.049560547, -0.008331299, -0.020965576, 0.017684937, 0.013877869, -0.0029907227, 0.0335083, -0.009132385, 0.023803711, 0.041870117, -0.02557373, 0.032104492, 0.0077209473, -0.012802124, 0.03427124, 0.0056037903, -0.03515625, 0.0055274963, 0.033569336, 0.021026611, 0.056793213, 0.0058250427, -0.018432617, 0.028778076, 0.031799316, -0.02494812, 0.014030457, -0.014022827, -0.040496826, 0.059051514, -0.010223389, -0.009086609, -0.016464233, -0.045654297, 0.0029029846, -0.0028896332, -0.04940796, 0.035186768, 0.026870728, -0.0008263588, 0.0071144104, -0.027694702, -0.004890442, -0.04437256, 0.04119873, -0.009559631, 0.023880005, 0.014343262, 0.04046631, -0.02305603, -0.049835205, -0.028564453, 0.020889282, -0.0025024414, -0.059509277, -0.030395508, 0.014801025, 0.002954483, -0.017196655, -0.013160706, 0.025482178, 0.008163452, -0.003709793, 0.02508545, -0.017318726, -0.02130127, 0.055847168, 0.031402588, -0.044677734, -0.0043907166, -0.00073575974, -0.0033912659, 0.054229736, 0.007987976, -0.0052337646, -0.03152466, -0.017974854, -0.03475952, 0.0070114136, -0.038482666, 0.0077209473, 0.016036987, 0.004722595, -0.028427124, 0.028060913, 0.024505615, 0.043914795, 0.015380859, -0.015899658, 0.030075073, -0.033111572, -0.023330688, -0.066101074, -0.027542114, 0.034057617, 0.02067566, -0.0018625259, -0.012176514, 0.015899658, -0.025024414, 0.021377563, 0.0099105835, -0.014694214, 0.010177612, -0.0033245087, 0.03289795, -0.0036945343, -0.012268066, 0.026168823, -0.030349731, -0.03451538, 0.001947403, 0.001876831, -0.019821167, -0.008239746, -0.025924683, 0.014122009, -0.010620117, -0.023071289, -0.03479004, -0.029067993, -0.0060424805, 0.03768921, -0.024215698, 0.022583008, -0.025131226, 0.0118255615, -0.031982422, -0.0055999756, 0.025146484, -0.009689331, -0.049804688, 0.022338867, 0.020614624, 0.041900635, -0.033294678, -0.05206299, -0.038513184, 0.0118255615, 0.014266968, 0.009216309, 0.059295654, -0.026229858, 0.007133484, 0.0029087067, -0.007572174, -0.0501709, 0.028503418, 0.006336212, -0.0014228821, 0.029586792]}, "B07NBNPSLG": {"id": "B07NBNPSLG", "original": "Brand: Best Choice Products\nName: Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray\nDescription: Highlights:
      Elegant Square Design
      Easy to Use
      Handles for Portability
      Includes Matching Side Table/Tank Storage
      Weather-Resistant Pit Cover

      Specifications:
      Overall Dimensions: 34.75\"(L) x 34.75\"(W) x 12\"(H)
      Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
      Weight: 70.6 lbs.
      Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
      Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
      BTU: 40,000
      Note: The propane tank should be placed under the side table (tank not included)
      Assembly required (with instructions)

      Package Includes:
      Fire pit
      Side table
      Glass Rocks
      Pit cover
      Hose

      BCP SKU: SKY5230


      Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75\"(L) x 34.75\"(W) x 12\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "metadata": {"Name": "Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray", "Brand": "Best Choice Products", "Description": "Highlights:
      Elegant Square Design
      Easy to Use
      Handles for Portability
      Includes Matching Side Table/Tank Storage
      Weather-Resistant Pit Cover

      Specifications:
      Overall Dimensions: 34.75\"(L) x 34.75\"(W) x 12\"(H)
      Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
      Weight: 70.6 lbs.
      Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
      Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
      BTU: 40,000
      Note: The propane tank should be placed under the side table (tank not included)
      Assembly required (with instructions)

      Package Includes:
      Fire pit
      Side table
      Glass Rocks
      Pit cover
      Hose

      BCP SKU: SKY5230


      Ships and arrives in 2 separate boxes. Delivery times may vary per box.", "Features": "MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75\"(L) x 34.75\"(W) x 12\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0036849976, 0.0041236877, -0.06173706, -0.085876465, 0.0067863464, -0.0009045601, -0.030975342, 0.0463562, -0.046569824, -0.016220093, -0.05718994, 0.044128418, -0.05847168, 0.0041007996, 0.020462036, -0.06604004, 0.019546509, -0.012504578, -0.00033521652, -0.036071777, 0.010154724, -0.029205322, -0.011169434, 0.06518555, 0.054626465, -0.04336548, 0.010543823, -0.04449463, 0.07019043, 0.0025138855, 0.03189087, -0.008232117, 0.06933594, -0.035217285, -0.010177612, 0.04324341, 0.011772156, -0.02444458, -0.01411438, 0.032684326, 0.018005371, 0.0073547363, -0.04031372, -0.016082764, -0.06213379, -0.023422241, 0.012390137, 0.039398193, -0.0236969, -0.0032691956, 0.018798828, -0.015609741, 0.036132812, -0.0074768066, -0.0055732727, 0.011390686, 0.03125, -0.019165039, 0.0019798279, -0.014526367, 0.009597778, 0.06542969, 0.023284912, 0.03439331, -0.0046539307, 0.01902771, 0.09295654, 0.012954712, -0.009376526, -0.02670288, -0.008987427, 0.015449524, 0.017150879, -0.052764893, -0.03540039, 0.052124023, -0.012557983, 0.019500732, 0.01927185, -0.026687622, -0.043426514, -0.010467529, 0.015594482, -0.047332764, -0.005168915, -0.010368347, -0.027511597, 0.013519287, 0.015991211, -0.023834229, 0.0054473877, -0.011932373, 0.00068473816, 0.043823242, 0.00067424774, -0.03652954, -0.059753418, -0.069885254, 0.019851685, 0.022277832, -0.022750854, -0.014320374, -0.0022583008, -0.008804321, -0.0044784546, 0.059570312, 0.024856567, -0.03894043, -0.022399902, -0.017181396, -0.028839111, -0.016845703, 0.017868042, -0.031021118, -0.007007599, -0.00071811676, -0.022628784, 0.01927185, 0.016967773, -0.0063209534, -0.022521973, -0.02053833, -0.017578125, 0.012275696, 0.042236328, 0.020523071, -0.03869629, 0.04260254, -0.03062439, 0.03869629, 0.0025177002, -0.0025787354, 0.03137207, 0.057373047, 0.0057792664, -0.008049011, 0.056762695, -0.012069702, 0.010787964, -0.005908966, 0.011116028, 0.0029506683, 0.003753662, -0.0028018951, -0.04812622, 0.036071777, 0.040893555, -0.008552551, -0.048339844, -0.078186035, -0.024520874, -0.002418518, 0.0309906, 0.027618408, -0.03668213, -0.009597778, 0.047302246, -0.030517578, -0.024871826, -0.07952881, 0.024475098, -0.0060539246, -0.015396118, 0.005832672, -0.02305603, 0.005138397, -0.02331543, -0.0052223206, 0.015792847, 0.07672119, -0.018035889, 0.027542114, 0.005001068, 0.0395813, 0.0057754517, 0.0016565323, 0.008308411, 0.055755615, 0.051574707, -0.0904541, -0.062805176, -0.06323242, 0.13256836, -0.06536865, -0.008842468, -0.024398804, 0.03213501, 0.013519287, 0.0026245117, 0.012702942, 0.012802124, 0.017364502, -0.034332275, -0.008842468, 0.020324707, 0.011123657, -0.034484863, 0.0039711, -0.011894226, -0.002796173, -0.005947113, 0.039764404, 0.008529663, 0.019515991, 0.05154419, 0.023269653, 0.0022583008, 0.021591187, -0.003967285, 0.017303467, 4.5716763e-05, 0.008262634, -0.005542755, -0.0034217834, -0.012786865, -0.017181396, -0.04031372, 0.002500534, -0.01914978, 0.008522034, 0.006801605, -0.040802002, 0.0018854141, 0.021560669, -0.014160156, -0.025527954, -0.030761719, -0.017364502, -0.004524231, -0.007888794, 0.011520386, 0.030395508, 0.06210327, 0.026611328, -0.01953125, 0.05517578, 0.055999756, 0.047851562, -0.041931152, -0.013977051, 0.008666992, -0.020568848, -0.022277832, 0.031143188, -0.012367249, -0.02319336, 0.01550293, 0.021392822, -0.017715454, -0.011955261, 0.048919678, 0.004611969, 0.018447876, -0.0096206665, -0.012931824, 0.027328491, -0.040496826, 0.033843994, -0.004306793, -0.0259552, -0.0031147003, 0.018554688, 0.043823242, -0.008872986, 0.02748108, -0.03878784, 0.040374756, 0.051696777, 0.035949707, -0.0546875, -0.0005259514, 0.02319336, -0.006717682, -0.02128601, -0.025787354, 0.013412476, -0.040802002, 0.036132812, -0.02128601, -0.029693604, 0.0022411346, -0.03111267, -0.01626587, 0.008239746, 0.07287598, -0.01499939, -0.005744934, -0.00016260147, -0.018630981, -0.0027179718, 0.031280518, -0.0036563873, -0.026016235, 0.010818481, -0.013679504, -0.019073486, 0.022033691, 0.0052490234, 0.017623901, 0.0019311905, -0.007549286, 0.043823242, 0.0071105957, 0.0020122528, 0.0006918907, 0.029586792, 0.024856567, 0.023925781, 0.022964478, -0.021362305, -0.0031204224, -0.0050697327, 0.028549194, -0.006111145, 0.051757812, 0.00573349, -0.0004711151, 0.043701172, 0.0357666, 0.041625977, 0.016143799, 0.029129028, -0.016647339, 0.005077362, 0.019958496, -0.008796692, -0.015457153, -0.021514893, -0.040893555, 0.02267456, 0.05206299, -0.0048446655, 0.024368286, -0.019882202, -0.0017776489, -0.006259918, 0.0031318665, 0.021606445, -0.0018949509, -0.05731201, -0.010063171, -0.023895264, -0.025344849, 0.00018823147, -0.046173096, -0.022994995, 0.017471313, 0.007675171, 0.0073509216, 0.011245728, -0.015853882, -0.00016212463, -0.032836914, 0.015350342, -0.0028896332, 0.05090332, 0.00969696, 0.008232117, 0.02267456, -0.026855469, -0.020935059, -0.008903503, -0.05987549, -0.024536133, 0.028884888, 0.006652832, -0.035339355, -0.004611969, -0.0140686035, -0.0077590942, 0.08190918, 0.0050201416, -0.08758545, -0.04928589, -0.061553955, -0.039245605, 0.015670776, -0.05529785, -0.017196655, -0.015090942, -0.032318115, 0.017578125, -0.014274597, 0.057800293, 0.025970459, 0.012237549, 0.015419006, 0.05444336, 0.012023926, 0.0014677048, 0.015258789, 0.047332764, -0.01852417, -0.021759033, 0.021347046, 0.009513855, 0.00016093254, -0.00021827221, -0.03378296, -0.014533997, -0.0881958, -0.008277893, -0.014251709, -0.02998352, 0.0024280548, -0.060302734, -0.02407837, -0.05105591, 0.035827637, 0.033843994, -0.0087509155, -0.013031006, -0.01713562, 0.00020682812, -0.02961731, 0.021026611, 0.023788452, -0.0029125214, -0.010559082, -0.027496338, 0.03213501, -0.041870117, 0.019195557, 0.018707275, -0.02079773, -0.038879395, 0.034210205, 0.03137207, -0.001335144, 0.010124207, 0.0016088486, -0.044799805, -0.034851074, 0.0057792664, 0.004360199, -0.009780884, -0.0017662048, -0.07019043, 0.025985718, -0.031463623, -0.019607544, 0.017196655, 0.028564453, 0.04586792, -0.0049476624, -0.008476257, 0.017211914, -0.022842407, -0.00818634, -0.0110321045, -0.04626465, 0.009162903, 0.032348633, 0.027938843, -0.009178162, 0.00793457, -0.005836487, 0.036346436, 0.0053634644, 0.017059326, 0.0058517456, -0.030441284, 0.056121826, 0.0038280487, -0.026245117, -0.042297363, 0.10345459, 0.00630188, -0.00088357925, 0.0231781, -0.018478394, -0.006702423, 0.014213562, -0.0067634583, 0.013183594, 0.007537842, 0.020401001, -0.012298584, -0.03640747, -0.02468872, -0.05935669, -0.0030956268, -0.031051636, 0.08074951, 0.074035645, -0.020523071, 0.1217041, 0.08087158, -0.010871887, 0.07873535, 0.01687622, 0.051086426, 0.012458801, 0.0579834, -0.0023059845, 0.030807495, -0.0024261475, 0.013748169, -0.0017929077, -0.023071289, -0.036254883, 0.019302368, 0.029800415, -0.0104522705, -0.025177002, 0.018096924, 0.02519226, -0.038879395, 0.00592041, -0.02217102, -0.007911682, -0.060058594, 0.00056886673, -0.00047922134, -0.015014648, -0.022247314, 0.017791748, 0.0020103455, -0.011657715, -0.002790451, 0.015396118, 0.0075187683, -0.0048713684, 0.035247803, 0.032592773, 0.008232117, -0.055725098, 0.002199173, -0.008758545, 0.025253296, -0.04135132, -0.019012451, -0.0059280396, -0.01953125, 0.07623291, 0.018325806, -0.018630981, 0.012870789, -0.011184692, -0.059417725, 0.0061035156, 0.03817749, 0.0048332214, -0.021560669, 0.012878418, -0.055511475, -0.0010509491, -0.027740479, -0.020706177, -0.014892578, -0.03250122, -0.027526855, -0.07696533, -0.020370483, -0.0042533875, -0.00087070465, -0.06726074, 0.016448975, -0.0065841675, -0.02142334, -0.022018433, 0.035888672, -0.053344727, 0.0057640076, -0.07434082, 0.017425537, -0.025787354, -0.017166138, -0.0060043335, -0.009262085, -0.014877319, -0.019104004, 0.053527832, 0.038208008, -0.025024414, -0.03286743, 0.0112838745, -0.009216309, 0.035064697, 0.014213562, -0.009231567, 0.025680542, 0.00409317, 0.0022888184, -0.06530762, -0.014480591, 0.011871338, -0.025405884, -0.07678223, -0.066711426, 0.027770996, 0.029708862, 0.006011963, -0.017929077, -0.019866943, 0.016738892, -0.024154663, -0.024505615, 0.0046081543, -0.002521515, 0.002544403, -0.00434494, -0.015640259, -0.023971558, 0.068847656, 0.011199951, 0.059509277, -0.03277588, -0.012428284, 0.020904541, -0.035736084, 0.02015686, -0.029022217, -0.03186035, -0.015914917, 0.02909851, -0.07745361, 0.073913574, 0.04248047, -0.010528564, 0.016113281, 0.035736084, -0.002828598, -0.02947998, -0.0060195923, -0.030349731, 0.00013446808, -0.006855011, -0.019500732, -0.010551453, -0.008529663, 0.005092621, -0.031433105, -0.025848389, -0.004722595, 0.007873535, 0.00655365, -0.019760132, -0.018478394, -0.030410767, 0.011932373, 0.007041931, 0.03137207, -0.04043579, -0.01675415, -0.04321289, -0.033081055, 0.023345947, -0.04144287, 0.003358841, -0.022277832, 0.011009216, -0.060455322, 0.028427124, 0.05078125, 0.017318726, -0.017623901, 0.076049805, -0.054351807, -0.00020611286, -0.041870117, -0.010246277, 0.055999756, -0.05734253, 0.035095215, 0.009101868, -0.03982544, 0.028305054, -0.03439331, 0.03894043, 0.0014839172, -0.037963867, 0.037719727, 0.03201294, 0.013290405, -0.04421997, 0.05923462, -0.010032654, -0.030731201, -0.03366089, 0.01927185, -0.031677246, 0.005569458, -0.051635742, 0.0048103333, 0.056365967, -0.05053711, -0.048583984, 0.02293396, 0.016220093, -0.06137085, -0.025268555, 0.037384033, -0.02986145, -0.021057129, 0.03149414, -0.011795044, 0.022384644, -0.014350891, -0.006603241, 0.05291748, 0.0134887695, -0.049682617, -0.02960205, 0.008056641, -0.028198242, -0.025772095, -0.009231567, 0.027404785, 0.005016327, 0.008262634, 0.01259613, 0.005279541, 0.019058228, -0.05218506, -0.012779236, -0.0072898865, 0.012870789, 0.010559082, 0.05633545, -0.029266357, 0.0053710938, 0.017501831, -0.018417358, 0.020812988, -0.014030457, -0.029159546, -0.008026123, 0.0018701553, 0.0050735474, -0.037017822, -0.042388916, 0.047698975, -0.047332764, -0.021469116, -0.07623291, -0.0019226074, -0.0066833496, -0.04336548, 0.021759033, -0.018814087, 0.011856079, 0.0037937164, -0.016113281, -0.054901123, 0.012687683, 0.0008330345, -0.06317139, 0.014144897, -0.035949707, 0.035705566, -0.0067253113, -0.004081726, -0.022125244, 0.0552063, -0.023086548, -0.06085205, -0.023101807, 0.026367188, -0.0015420914, -0.017944336, 0.01878357, -0.012901306, -0.020812988, 0.0022087097, 0.011558533, -0.00957489, -0.0032863617, -0.0029315948, 0.0052223206, 0.026977539, -0.0055503845, 0.0047187805, -0.0289917, 0.02607727, 0.020111084, 0.022827148, -0.06604004, -0.025665283, 0.028457642, 0.037506104, -0.01890564, -0.02494812, -0.0074501038, -0.02659607, -0.005596161, 0.030899048, 0.022613525, -0.0287323, 0.035614014, 0.010818481, 0.025390625, 0.02835083, 0.00056934357, 0.015182495, -0.021957397, -0.05645752, 0.01828003, 0.05606079, -0.019546509, 0.029785156, -0.05166626, 0.02027893, 0.00062322617, 0.0026626587, 0.022064209, -0.011413574, 0.044555664, 0.011253357, 0.020019531, 0.013198853, 0.049102783, 0.029541016, 0.0101623535, -0.033843994, 0.03540039, -0.024093628, -0.0090789795, -0.008796692, -0.015464783, 0.023986816, 0.041412354, -0.009918213, 0.009017944, -0.017150879, 0.010940552, 0.039916992, -0.070495605, 0.018295288, -0.012382507, -0.017959595, -0.011474609, -0.011352539, -0.014015198, 0.005168915, 0.04623413, -0.015792847, 0.021438599, -0.024856567, 0.041046143, 0.008895874, -0.018508911, -0.00037646294, -0.03201294, 0.03729248, -0.011871338, -0.0071144104, -0.0023441315, -0.0074653625, -0.013427734, 0.060028076, -0.040100098, -0.008972168, 0.0064048767, 0.0124053955, -0.032104492, 0.019500732, -0.023788452, 0.009399414, 0.027359009, 0.009887695, 0.01272583, -0.009864807, -0.021606445, 0.03152466, -0.032714844, -0.030670166, 0.028427124, -0.053375244, 0.02381897, 0.018295288, -0.028305054, -0.036132812, -0.01777649, -0.01586914, 0.013427734, -0.0028419495, 0.042785645, 0.019241333, -0.022598267, -0.040649414, 0.0031337738, 0.01449585, -0.03164673, 0.021820068, -0.004119873, -0.003622055, 0.0017137527, 0.02885437, -0.0011644363, 0.01939392, -0.0017948151, -0.003250122, 0.037750244, 0.025802612, 0.027236938, 0.02357483, -0.012840271, -0.027267456, 0.017456055, 0.021209717, -0.030563354, -0.029052734, -0.01763916, -0.014152527, -0.014923096, -0.032836914, -0.02130127, -0.010437012, -0.03164673, 0.015319824, 0.0070991516, -0.0075645447, -0.0067100525, -0.006816864, 0.042938232, -0.058654785, -0.01789856, -0.006515503, 0.023925781, 0.00067043304, 0.08605957, -0.037719727, -0.04397583, -0.041381836, -0.008026123, -0.031402588, 0.013885498, -0.03378296, 0.045318604, 0.029022217, 0.0043029785, 0.00705719, 0.052520752, 0.0014228821, -0.0062065125, 0.026260376, -0.06689453, -0.0574646, 0.10144043, 0.036071777, -0.04837036, -0.013175964, 0.03012085, 0.010299683, 0.041412354, 0.013969421, 0.008491516, -0.06542969, -0.023803711, -0.0446167, 0.021591187, -0.0146102905, -0.024734497, 0.043762207, -0.0075416565, -0.02079773, -0.0065231323, 0.04171753, 0.018112183, 0.060028076, -0.04019165, -0.011184692, -0.04916382, -0.030181885, -0.05102539, -0.008590698, 0.023498535, -0.030883789, -0.05050659, 0.023483276, 0.0060310364, -0.0289917, -0.020706177, 0.018630981, 0.002954483, 0.0076560974, -0.0022888184, 0.046417236, -0.000269413, -0.0206604, 0.016601562, -0.055480957, -0.03579712, -0.0065307617, -0.011383057, -0.01373291, -0.015670776, -0.023529053, 0.025009155, -0.04071045, -0.019195557, -0.032989502, -0.050811768, -0.004673004, 0.035247803, -0.00894928, 0.011489868, 0.004638672, -0.011688232, -0.01348114, 0.0032806396, 0.015731812, -0.014465332, -0.047943115, 0.038513184, 0.0021324158, 0.078063965, 0.009544373, -0.08227539, -0.04727173, 0.033050537, 0.005264282, -0.040374756, 0.03540039, -0.035125732, 0.01007843, 0.018615723, -0.03390503, -0.038085938, 0.030929565, 0.08959961, 0.007888794, 0.023239136]}, "B0836CBZN1": {"id": "B0836CBZN1", "original": "Brand: GASPRO\nName: GASPRO 1500\u2109 Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified\nDescription: The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

      You can do so many dishes in the different heat zones:
      Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
      Seafood: shrimp, skewers, salmon filets.
      Veggies: corn, potato chips, large pieces onion.
      You can also make sandwiches, nachos, enchiladas, hamburgers.

      The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

      GASPRO infrared grill unique designed double-use connection:
      1lb connection and standard grill connection (3/8\u201d male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
      1.Uses disposable 16.4 oz LP cylinder (sold separately)
      2.Uses big LP propane tank. (Propane hose sold separately)
      3.Uses RV Propane tank. (Propane hose sold separately)

      Product Specification:
      Material: 304 Stainless Steel
      Flow Capacity: 9000 BTU/hr
      Fueled Type: LP Gas Propane
      Ignition Type: Push Button Electronic Igniter
      Product Dimension: 9.3\" W x 30.7\" D x 16.3\" H
      Product Weight: 19.4 lbs
      Temperature Range: 200-1500 Fahrenheit

      Package Included:
      Rod Grid x 1
      Grease Tray x 1
      Wooden Grid Tool x 1
      Silicone Oven Mitts x 2
      Sheet Metal Cooking Grid x 1
      Product Manual x 1

      Warning:
      OUTDOOR USE ONLY
      \nFeatures: Boasts the infrared cooking system reaches an incredible 1500\u00b0F, serves up steakhouse-quality steaks about 2 min per side.\n6-notches in the grill rack determined the grate's proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies.\nGives you multiple connection options, built-in a standard 3/8\u201d male flare fitting in the valve and regulator. It allows you to connect any 3/8\u201d female flare hose to a big propane tank.\nOpening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it.\nPass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.\n", "metadata": {"Name": "GASPRO 1500\u2109 Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified", "Brand": "GASPRO", "Description": "The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

      You can do so many dishes in the different heat zones:
      Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
      Seafood: shrimp, skewers, salmon filets.
      Veggies: corn, potato chips, large pieces onion.
      You can also make sandwiches, nachos, enchiladas, hamburgers.

      The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

      GASPRO infrared grill unique designed double-use connection:
      1lb connection and standard grill connection (3/8\u201d male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
      1.Uses disposable 16.4 oz LP cylinder (sold separately)
      2.Uses big LP propane tank. (Propane hose sold separately)
      3.Uses RV Propane tank. (Propane hose sold separately)

      Product Specification:
      Material: 304 Stainless Steel
      Flow Capacity: 9000 BTU/hr
      Fueled Type: LP Gas Propane
      Ignition Type: Push Button Electronic Igniter
      Product Dimension: 9.3\" W x 30.7\" D x 16.3\" H
      Product Weight: 19.4 lbs
      Temperature Range: 200-1500 Fahrenheit

      Package Included:
      Rod Grid x 1
      Grease Tray x 1
      Wooden Grid Tool x 1
      Silicone Oven Mitts x 2
      Sheet Metal Cooking Grid x 1
      Product Manual x 1

      Warning:
      OUTDOOR USE ONLY
      ", "Features": "Boasts the infrared cooking system reaches an incredible 1500\u00b0F, serves up steakhouse-quality steaks about 2 min per side.\n6-notches in the grill rack determined the grate's proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies.\nGives you multiple connection options, built-in a standard 3/8\u201d male flare fitting in the valve and regulator. It allows you to connect any 3/8\u201d female flare hose to a big propane tank.\nOpening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it.\nPass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00957489, 0.018997192, -0.015274048, 0.009963989, 0.006134033, -0.016342163, 0.019561768, -0.03717041, 0.02947998, -0.012962341, -0.048919678, 0.02470398, -0.052612305, -0.012336731, -0.0022335052, -0.042938232, 0.0031356812, 0.049743652, 0.02720642, -0.008285522, -0.008346558, 0.008163452, -0.025665283, 0.007297516, 0.029449463, 0.016189575, -0.00023436546, -0.014984131, 0.024459839, 0.010498047, 0.021957397, -0.02458191, 0.016647339, 0.024719238, -0.021713257, -0.00046253204, 0.042144775, -0.014816284, -0.01007843, 0.045013428, 0.0062332153, 0.002450943, -0.023513794, 0.0010442734, -0.051361084, -0.028137207, 0.015792847, 0.019378662, -0.0020256042, 0.032806396, -0.0104599, 0.040893555, -0.010345459, 0.019485474, 0.010643005, -0.011856079, 0.0036029816, -0.028335571, 0.015342712, -0.050628662, -0.014183044, -0.010307312, 0.061309814, 0.049865723, -0.033996582, 0.037109375, 0.08227539, -0.03756714, -0.009719849, -0.03817749, 0.014480591, 0.0019235611, 0.012466431, -0.0073394775, -0.029937744, -0.021087646, 0.030761719, -0.03314209, 0.012519836, 0.014389038, 0.02243042, 0.02355957, -0.028884888, 0.0066108704, 0.010421753, 0.024459839, -0.02078247, -0.035491943, -0.0038852692, -0.038757324, -0.0046310425, -0.047332764, -0.022247314, 0.0095825195, -0.0064888, -0.036254883, -0.034301758, -0.078552246, 0.036621094, 0.018096924, 0.03161621, -0.027572632, 0.040405273, 0.014541626, -0.010871887, 0.0592041, 0.0013093948, 0.011001587, -0.0023612976, -0.003791809, -0.0056648254, -0.044830322, -0.06323242, -0.019195557, -0.036834717, 0.018997192, -0.084106445, -0.024795532, -0.0048980713, -0.04055786, -0.025634766, -0.026733398, 0.018844604, 0.048583984, 0.013999939, 0.027252197, -0.0104904175, 0.013244629, -0.021408081, 0.012016296, -0.031799316, 0.013092041, 0.07104492, 0.06555176, 0.017913818, -0.012710571, 0.013519287, 0.0003862381, 0.0035686493, 0.011077881, -0.009529114, -0.04977417, -0.030776978, 0.017059326, -0.016296387, 0.011528015, 0.045928955, 0.009819031, -0.025375366, -0.04257202, -0.0113220215, 0.032440186, 0.061279297, 0.009483337, -0.04284668, -0.002822876, 0.039978027, -0.025726318, -0.051116943, -0.07385254, -0.026382446, -0.01625061, -0.0042266846, -0.008560181, -0.0072898865, 0.029373169, 0.017364502, -0.0003054142, 0.012214661, 0.047546387, -0.0256958, 0.016540527, 0.033569336, 0.0012741089, -0.015975952, -0.013267517, -0.038116455, 0.047607422, 0.086242676, -0.11608887, -0.055236816, -0.03265381, 0.12805176, -0.011505127, -0.012489319, 0.010665894, -0.028625488, -0.0051574707, 0.02545166, 0.002588272, 0.0003979206, 0.033233643, 0.00014030933, -0.059570312, 0.044921875, 0.06201172, -0.055511475, 0.029571533, 0.008476257, -0.05819702, -0.004497528, 0.011299133, -0.01939392, 0.005809784, -0.0028438568, -0.0019416809, 0.0002837181, 0.023544312, 0.013000488, 0.0017948151, -0.010948181, -0.022109985, 0.034606934, -0.07702637, -0.046051025, -0.000790596, -0.037384033, -0.022338867, 0.007545471, 0.013130188, 0.035858154, -0.020126343, 0.013404846, 0.021362305, 0.009246826, -0.03378296, 0.0049591064, -0.014060974, 0.0046577454, -0.00086307526, 0.00013053417, 0.0064430237, 0.06591797, 0.045684814, -0.02017212, 0.04788208, 0.06829834, 0.08050537, -0.038848877, -0.041107178, 0.014930725, -0.027954102, -0.031951904, -0.0069274902, -0.009559631, -0.012626648, 0.023910522, -0.015686035, -0.05996704, -0.025238037, 0.0847168, 0.04107666, 0.029891968, 0.0014982224, -0.02331543, 0.05065918, -0.0075187683, 0.035064697, -0.06982422, 0.05883789, -0.015853882, 0.06222534, 0.04510498, 0.0066871643, -0.0034122467, 0.02734375, 0.02154541, 0.017120361, -0.018493652, 0.02128601, 0.013450623, -0.012184143, -0.0037651062, 0.035064697, -0.0023555756, 0.027236938, -0.030593872, 0.0054969788, -0.029449463, 0.012260437, 0.0075416565, 0.0054626465, -0.012382507, -0.0066490173, 0.041290283, -0.009880066, -0.015655518, -0.010726929, 0.0017147064, -0.013092041, 0.011070251, -0.012130737, -0.020568848, 0.008361816, 0.021484375, -0.054656982, 0.042022705, -0.01600647, 0.024810791, -0.026016235, 0.0065574646, 0.03842163, -0.05517578, 0.028900146, -0.0077209473, -0.010681152, -0.022506714, 0.03503418, 0.022964478, -0.043914795, 0.030303955, 0.059173584, 0.02822876, -0.035614014, 0.037506104, 0.014961243, 0.015357971, 0.020843506, 0.039245605, 0.03555298, -0.0049705505, 0.007247925, -0.025482178, -0.0009150505, 0.012458801, 0.0065689087, -0.014167786, -0.009780884, 0.0039024353, -0.0036029816, 0.02243042, -0.026626587, -0.0075302124, -0.02355957, 0.008987427, -0.0072135925, -0.00013947487, 0.0019741058, -8.4757805e-05, -0.025619507, 0.020965576, -0.026733398, 0.018432617, -0.0010919571, -0.046813965, -0.020065308, 0.00097322464, 0.0035419464, -0.011276245, -0.025787354, 0.03253174, -0.0052948, -0.017303467, -0.0043792725, -0.0054969788, -0.01235199, 0.009216309, -0.02154541, -0.03466797, -0.0690918, -0.021728516, -0.016921997, -0.060150146, -0.06903076, 0.0869751, -0.009468079, -0.06311035, -0.04159546, -0.0031547546, 0.0015926361, -0.011169434, 0.015335083, -0.012649536, -0.0368042, -0.020828247, -0.00730896, -0.011581421, -0.051727295, 0.010368347, -0.018127441, 0.007881165, 0.022018433, -0.004787445, 0.009422302, 0.03744507, 0.011405945, 0.03894043, 0.04067993, 0.036621094, -0.027755737, 0.027557373, 0.040649414, -0.021575928, -0.022018433, 0.0104904175, 0.0068855286, -0.0068206787, -0.009086609, -0.039276123, -0.009407043, -0.06573486, 0.023803711, 0.015472412, -0.035095215, -0.007972717, -0.07965088, -0.047607422, -0.038269043, 0.038635254, 0.028915405, 0.014038086, 0.008804321, 0.008575439, 0.0023345947, -0.045013428, 0.02128601, 0.020401001, -0.008460999, -0.011665344, -0.027496338, 0.037109375, -0.038909912, 0.01612854, 0.022323608, -0.032592773, 0.016235352, 0.00970459, 0.026550293, -0.016448975, 0.018203735, 0.0032577515, -0.023803711, -0.028259277, -0.01689148, 0.003168106, 0.012756348, 0.009986877, -0.028717041, 0.021942139, -0.016845703, -0.06036377, -0.022949219, -0.032562256, -0.010383606, 0.007247925, -0.047851562, -0.020980835, -0.058441162, 0.036071777, -0.06341553, 0.02835083, -0.0064086914, 0.09509277, 0.029266357, 0.0021896362, 0.048797607, -0.008804321, 0.051361084, 0.03164673, -0.007396698, -0.007820129, -0.05065918, 0.04928589, 0.029586792, -0.005432129, -0.036834717, 0.001086235, 0.010002136, -0.017608643, -0.0049819946, -0.024291992, 0.07122803, -0.057769775, -0.024261475, 0.012161255, 0.012367249, 0.0138549805, -0.0021476746, 0.031433105, -0.013000488, -0.05581665, 0.012084961, -0.088256836, 0.09631348, 0.03982544, -0.014541626, 0.095458984, 0.05935669, -0.031829834, 0.032806396, 0.050476074, 0.014755249, 0.0023040771, 0.045318604, -0.016738892, -0.033111572, 0.016326904, -0.036132812, 0.026763916, 0.047088623, -0.09942627, 0.0345459, -0.008590698, -0.054260254, -0.03112793, 0.008872986, 0.012145996, -0.003768921, -0.0039367676, -0.046722412, 0.012870789, -0.041412354, -0.004737854, 0.024108887, -0.037109375, -0.054534912, 0.026641846, -0.018722534, -0.02859497, 0.014129639, -0.021453857, 0.02557373, -0.027801514, 0.04034424, 0.017425537, 0.021499634, -0.08050537, 0.048797607, -0.021759033, 0.010414124, 0.039031982, 0.010932922, -0.0037517548, -0.018569946, 0.0011577606, -0.009239197, -0.012290955, 0.017791748, 0.028076172, -0.013404846, -0.00522995, 0.0035533905, 0.012580872, 0.010810852, -0.013343811, -0.050231934, -0.03152466, -0.008842468, -0.0015611649, -0.019607544, 0.009857178, 0.00957489, -0.042175293, -0.017028809, -0.033111572, 0.002374649, -0.03186035, 0.022537231, -0.0085372925, 0.008163452, 0.01991272, 0.003314972, -0.027160645, -0.014030457, -0.04864502, 0.0015630722, 0.040802002, -0.0026016235, 0.05493164, -0.060546875, -0.03074646, -0.025405884, 0.070007324, 0.010437012, 0.021713257, -0.019165039, -0.027694702, -0.03149414, 0.04547119, 0.07800293, -0.008071899, 0.018447876, -0.053771973, -0.085754395, -0.04876709, -0.0050964355, 0.027297974, -0.011726379, -0.034851074, -0.013694763, 0.053100586, -0.009719849, 0.013267517, 0.03326416, 0.011009216, -0.018814087, 0.027175903, -0.07989502, -0.0024223328, -0.0028800964, 0.029159546, 0.013587952, -0.009475708, -0.016677856, -0.013580322, 0.024368286, 0.07720947, -0.036071777, 0.018081665, 0.0024719238, -0.007904053, 0.0062026978, -0.041290283, 0.024795532, -0.038330078, -0.021362305, -0.03164673, 0.031921387, 0.041809082, -0.013168335, 0.008323669, -0.014183044, -0.008743286, -0.016189575, 0.012268066, -0.034301758, 0.0025749207, -0.02645874, -0.02229309, -0.0076675415, -0.05215454, 0.0038871765, -0.0015735626, 0.023635864, 0.039520264, -0.04446411, 0.015594482, -0.0009965897, -0.013954163, -0.014335632, 0.006931305, -0.0090408325, -0.04071045, 0.018035889, 0.02255249, -0.010528564, -0.009017944, 0.0016126633, -0.008644104, -0.05847168, 0.013885498, -0.00869751, -0.03781128, 0.013885498, 0.034210205, -0.016616821, -0.00095796585, 0.02798462, -0.009292603, 0.00044751167, -0.006954193, 0.032684326, -0.01878357, -0.011024475, 0.054748535, -0.015327454, -0.019638062, 0.0015468597, -0.012435913, 0.028884888, -0.019454956, -0.031799316, 0.025619507, 7.456541e-05, 0.013908386, -0.05078125, 0.039093018, -0.0131073, -0.005947113, -0.0635376, 0.001332283, 0.04928589, 0.035614014, 0.0046081543, -0.040496826, 0.038024902, 0.008796692, -0.019958496, 0.014007568, 0.009086609, -0.043060303, -0.01676941, 0.0129776, -0.032287598, -0.036956787, 0.0077667236, -0.03741455, -0.015098572, -0.0020275116, -0.014282227, 0.01108551, -0.010566711, -0.033813477, -0.05343628, -0.0073432922, -0.012924194, -0.044006348, -0.026168823, -0.018493652, -0.008010864, -0.026306152, 0.014541626, 0.008514404, 0.013374329, -0.031799316, -0.0015535355, -0.013183594, 0.018478394, -0.019638062, 0.030380249, -0.015991211, -0.0262146, 0.01927185, 0.0027999878, 0.012023926, -0.009002686, -0.025253296, -0.021240234, -0.0052261353, -0.010124207, -0.011268616, -0.03012085, 0.03805542, -0.030807495, -0.033691406, -0.046722412, 0.05895996, -0.018966675, 0.0129776, 0.06817627, 0.029708862, 0.011543274, 0.046691895, 0.008964539, -0.061676025, 0.008964539, 0.005619049, -0.052764893, -0.043884277, -0.061431885, 0.0009975433, 0.001241684, 0.033355713, -0.03289795, 0.035003662, -0.034606934, -0.005596161, -0.041534424, 0.022598267, -0.024429321, -9.071827e-05, 0.018875122, 0.017044067, 0.002161026, -0.021636963, -0.0012283325, -0.024337769, -0.013923645, 0.02268982, 0.036376953, -0.005760193, -0.033477783, 0.009689331, 0.06762695, -0.001124382, 0.061798096, 0.003704071, -0.013305664, 0.0074653625, 0.030395508, 0.002216339, 0.030654907, -0.043823242, -0.005279541, -0.013206482, 0.010543823, 0.009643555, 0.012268066, -0.035461426, -0.022903442, 0.047607422, 0.023727417, -0.0010566711, -0.043060303, -0.0010290146, -0.005836487, -0.038482666, -0.024291992, -0.030319214, -0.026809692, -0.01977539, -0.042510986, 0.00843811, 0.030319214, 0.0068626404, 0.022094727, -0.009140015, 0.04525757, -0.012161255, 0.019714355, -0.00699234, -0.010856628, 0.0039901733, 0.0018262863, 0.002462387, -0.00039434433, -0.014457703, -0.0057907104, 0.015899658, -0.011009216, -0.013053894, 0.02418518, 0.024368286, -0.0047950745, -0.01197052, 0.009742737, 0.058410645, -0.077819824, -0.00491333, -0.02519226, -0.012313843, -0.019424438, -0.0019798279, 0.0022773743, 0.017089844, 0.010437012, 0.0052833557, 0.041656494, -0.017791748, 0.010353088, 0.013496399, 0.0064048767, -0.019973755, -0.017944336, 0.02218628, -0.018798828, 0.018539429, 0.013328552, -0.016921997, 0.0003862381, 0.055877686, -0.033447266, 0.025222778, -0.012573242, 0.010185242, -0.053375244, -0.005897522, -0.02671814, -0.0037136078, 0.03125, 0.004047394, -0.0015821457, 0.010383606, -0.00182724, 0.024353027, -0.011108398, -0.035583496, 0.01914978, -0.055358887, 0.023391724, 0.035949707, 0.03591919, -0.039733887, -0.042755127, -0.017700195, -0.012565613, 0.0041236877, 0.019836426, -0.0032691956, 0.025604248, 0.01751709, 0.049316406, 0.06958008, -0.001036644, 0.032592773, 0.014122009, -0.01033783, 0.034179688, 0.00034046173, 0.005054474, 0.0015802383, -0.018203735, -0.0033245087, 0.0151901245, -0.022460938, 0.020233154, 0.0033779144, -0.0037155151, -0.010223389, -0.00063562393, 0.0039520264, -6.9618225e-05, 0.015975952, -0.03488159, 0.016143799, -0.045532227, -0.08105469, -0.056243896, -0.025650024, -0.07910156, 0.047698975, -0.022842407, -0.05014038, -0.01940918, 0.00019013882, -0.018112183, -0.050354004, 0.007537842, -0.031707764, 0.054901123, 0.003370285, 0.07043457, -0.042236328, -0.08380127, -0.042114258, 0.052856445, -0.099365234, -0.024124146, -0.04309082, 0.03314209, 0.0256958, 0.003080368, 0.03503418, 0.056152344, 0.012161255, 0.0025920868, 0.017166138, -0.018676758, -0.04324341, 0.047576904, 0.016067505, -0.00843811, -0.0043258667, 0.015701294, 0.021484375, 0.046966553, 0.025360107, 0.043426514, -0.022964478, 0.016296387, -0.028747559, 0.0012216568, -0.0036811829, -0.0038604736, 0.032409668, 0.0021343231, -0.07098389, 0.0423584, 0.0041389465, 0.05935669, 0.00881958, 0.028656006, 0.031280518, 0.008743286, -0.005466461, 0.01838684, -0.011260986, -0.012626648, 0.045166016, 0.009857178, -0.0073661804, 0.032409668, -0.012680054, 0.032836914, 0.017288208, -0.015220642, 0.024108887, -0.04525757, 0.015090942, -0.015312195, -0.03692627, -0.019882202, -0.010673523, -0.046844482, 0.05709839, 0.05407715, -0.050720215, -0.015640259, -0.02130127, -0.011657715, 0.018188477, -0.052947998, -0.020004272, -0.0046958923, 0.005821228, -0.016174316, 0.021484375, 0.02734375, 0.04324341, -0.0098724365, -0.03173828, 0.0025634766, 0.010635376, -0.014656067, -0.0546875, 0.049713135, 0.0017814636, 0.08538818, -0.0362854, -0.0758667, -0.054504395, 0.024368286, 0.014099121, 0.003490448, 0.05105591, -0.0063667297, 0.020355225, 0.011428833, 0.008140564, 0.023132324, 0.0024909973, 0.00077295303, -0.022598267, 0.004299164]}, "B07NBM6V8X": {"id": "B07NBM6V8X", "original": "Brand: Best Choice Products\nName: Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown\nDescription: Highlights:
      Elegant Rectangular Design
      Easy to Use
      Handles for Portability
      Includes Matching Side Table/Tank Storage
      Weather-Resistant Pit Cover

      Specifications:
      Overall Dimensions: 48\"(L) x 27.25\"(W) x 13.5\"(H)
      Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
      Weight: 84 lbs.
      Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
      Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
      BTU: 50,000
      Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
      Assembly required (with instructions)

      Package Includes:
      Fire pit
      Side table
      Glass rocks
      Hose
      Pit cover

      BCP SKU: SKY5229


      Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: The fire pit's classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48\"(L) x 27.25\"(W) x 13.5\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "metadata": {"Name": "Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown", "Brand": "Best Choice Products", "Description": "Highlights:
      Elegant Rectangular Design
      Easy to Use
      Handles for Portability
      Includes Matching Side Table/Tank Storage
      Weather-Resistant Pit Cover

      Specifications:
      Overall Dimensions: 48\"(L) x 27.25\"(W) x 13.5\"(H)
      Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
      Weight: 84 lbs.
      Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
      Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
      BTU: 50,000
      Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
      Assembly required (with instructions)

      Package Includes:
      Fire pit
      Side table
      Glass rocks
      Hose
      Pit cover

      BCP SKU: SKY5229


      Ships and arrives in 2 separate boxes. Delivery times may vary per box.", "Features": "MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: The fire pit's classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48\"(L) x 27.25\"(W) x 13.5\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013893127, 0.010910034, -0.036956787, -0.09118652, 0.0036373138, 0.0047569275, -0.032714844, 0.032226562, -0.04171753, 0.00058698654, -0.062683105, 0.050811768, -0.04257202, 0.01651001, 0.020812988, -0.06021118, 0.011672974, -0.00459671, -0.0047798157, -0.03756714, 0.0011425018, -0.036132812, -0.014297485, 0.05508423, 0.06530762, -0.05206299, 0.015068054, -0.038208008, 0.07849121, 0.0043754578, 0.039489746, -0.017181396, 0.053222656, -0.029342651, 0.0030059814, 0.024673462, 0.024520874, -0.029296875, -0.009666443, 0.029281616, 0.0064201355, 0.011657715, -0.032562256, -0.0104599, -0.051330566, -0.024856567, -0.008804321, 0.006816864, -0.036834717, 0.0031986237, 0.02041626, -0.0049438477, 0.036468506, 0.001496315, 0.0007505417, 0.020736694, 0.03161621, -0.024032593, -0.0021133423, -0.013717651, 0.009376526, 0.06591797, 0.020980835, 0.036376953, 0.008651733, 0.011886597, 0.08117676, 0.018966675, -0.0032730103, -0.009254456, -0.0014343262, 0.007259369, 0.017837524, -0.058654785, -0.023422241, 0.05090332, -0.018112183, 0.011795044, 0.010307312, -0.024887085, -0.043548584, -0.015098572, 0.017868042, -0.040161133, -0.015220642, -0.01146698, -0.025283813, 0.016967773, 0.009384155, -0.01411438, 0.004169464, -0.01776123, 0.015472412, 0.04321289, -0.012290955, -0.025177002, -0.07366943, -0.06536865, 0.008956909, 0.02708435, -0.016082764, -0.011520386, 0.008155823, -0.009651184, -0.0074501038, 0.062408447, 0.02116394, -0.026565552, -0.010498047, -0.011360168, -0.019729614, 0.00066804886, 0.014099121, -0.03829956, 0.00013005733, 0.014434814, -0.010635376, 0.023284912, 0.017105103, 0.0014972687, -0.018112183, -0.024459839, -0.022521973, 0.020248413, 0.059509277, 0.03463745, -0.044006348, 0.05340576, -0.045196533, 0.056671143, 0.009086609, -0.021713257, 0.011749268, 0.068847656, 0.011764526, -0.010475159, 0.04031372, -0.01991272, 0.00894928, 0.0016002655, 0.014915466, -0.0056381226, 0.012649536, -0.0012149811, -0.019302368, 0.045410156, 0.03933716, -0.013908386, -0.04031372, -0.054351807, -0.03475952, 0.012611389, 0.025390625, 0.026397705, -0.04525757, -0.020706177, 0.03945923, -0.036132812, -0.017623901, -0.089782715, 0.017486572, -0.0029659271, -0.010978699, 5.8293343e-05, -0.02583313, 0.0054244995, -0.023773193, -0.0063705444, 0.011726379, 0.064208984, -0.03656006, 0.028244019, -0.008865356, 0.033569336, 0.006816864, 0.008491516, 0.0042266846, 0.05532837, 0.06384277, -0.0904541, -0.0715332, -0.059783936, 0.13256836, -0.057739258, -0.003112793, -0.0155181885, 0.032958984, 0.007980347, -0.008979797, 0.007827759, 0.020202637, 0.038024902, -0.032958984, -0.0054130554, 0.025848389, -0.0017204285, -0.0501709, -0.0076560974, -0.015403748, -0.0025463104, -0.0075950623, 0.041290283, 0.019714355, 0.008415222, 0.047027588, 0.029312134, 0.0034179688, 0.028045654, -0.005142212, 0.009170532, -0.009376526, 0.00035095215, 0.007774353, -0.019241333, -0.0048561096, -0.000213027, -0.01574707, 0.013839722, -0.019927979, 0.002357483, 0.013374329, -0.044647217, -0.002210617, 0.036132812, -0.004337311, -0.0103302, -0.037353516, -0.009284973, 0.0132369995, -0.0034999847, 0.020584106, 0.021972656, 0.0569458, 0.02558899, -0.0158844, 0.045043945, 0.04736328, 0.035308838, -0.030853271, -0.009811401, 0.015556335, -0.033416748, -0.013832092, 0.038269043, -0.008972168, -0.034606934, 0.0060043335, 0.028289795, -0.02758789, -0.0047035217, 0.035949707, 0.00598526, 0.015609741, -0.0014123917, -0.03326416, 0.030212402, -0.039916992, 0.036621094, 0.0008339882, -0.007949829, -0.016448975, 0.0063591003, 0.053527832, -0.025878906, 0.02998352, -0.04724121, 0.05496216, 0.052703857, 0.042297363, -0.06262207, -0.010185242, 0.02935791, -0.009780884, -0.011154175, -0.027404785, -0.0009803772, -0.028121948, 0.030456543, -0.02822876, -0.031021118, 0.0067253113, -0.01828003, -0.009140015, -0.00030899048, 0.059906006, -0.017791748, -0.0073127747, -0.0034122467, -0.01687622, -0.006439209, 0.030838013, -0.01449585, -0.029403687, -0.0007381439, 0.005672455, -0.023544312, 0.028686523, -0.0038871765, 0.00995636, 0.005340576, 0.0054512024, 0.050750732, 0.002412796, 0.002943039, 0.0060577393, 0.032226562, 0.026168823, 0.025238037, 0.029327393, -0.025619507, 0.012069702, 0.0032901764, 0.023757935, -0.0055160522, 0.04611206, 0.011154175, 0.007762909, 0.04449463, 0.044067383, 0.035949707, 0.0135650635, 0.03173828, -0.030960083, 0.001077652, 0.01828003, -0.0036144257, -0.012519836, -0.020263672, -0.04711914, 0.02885437, 0.06707764, 0.0018062592, 0.020019531, -0.026412964, 0.00080919266, -0.005947113, 0.0055885315, 0.013153076, -0.003025055, -0.05267334, 0.008056641, -0.021240234, -0.029251099, 0.00573349, -0.042999268, -0.04827881, 0.019561768, 0.00097084045, 0.026779175, 0.0009112358, 0.0011053085, 0.0050468445, -0.037750244, 0.0026340485, -0.009429932, 0.027374268, 0.017745972, 0.0038490295, 0.0064811707, -0.028884888, -0.04550171, -0.009239197, -0.064697266, -0.019226074, 0.039276123, 0.010169983, -0.045928955, 0.014671326, -0.013755798, 0.005836487, 0.082214355, 0.0068473816, -0.09423828, -0.048980713, -0.06793213, -0.04244995, 0.040252686, -0.047943115, -0.009017944, 0.010467529, -0.033111572, 0.033294678, -0.024246216, 0.08898926, 0.020309448, 0.02154541, 0.021484375, 0.040527344, 0.01109314, -0.0062332153, 0.015037537, 0.04534912, -0.022445679, -0.0074806213, 0.021453857, 0.011138916, -0.011665344, -0.0076179504, -0.042785645, -0.008270264, -0.082458496, -0.005306244, -0.017181396, -0.021514893, 0.0030975342, -0.08532715, -0.023223877, -0.05114746, 0.031463623, 0.0184021, -0.0041885376, -0.024124146, -0.020492554, -0.01133728, -0.023971558, 0.013420105, 0.02897644, 0.0031776428, -0.005077362, -0.038208008, 0.026885986, -0.036102295, 0.029525757, 0.018707275, -0.010375977, -0.03048706, 0.021591187, 0.020462036, -0.006439209, -0.004371643, -0.00831604, -0.04168701, -0.019699097, 0.0054473877, -0.008003235, -0.025390625, -0.0028800964, -0.059783936, 0.025756836, -0.037322998, -0.02293396, 0.0073547363, 0.021942139, 0.035980225, -0.015365601, -0.012886047, 0.009887695, -0.027313232, -0.0017499924, -0.039489746, -0.046783447, 0.020202637, 0.037719727, 0.024887085, 0.0035629272, 0.0014839172, 0.00032424927, 0.0418396, -0.0068130493, 0.009674072, -0.0023002625, -0.03781128, 0.06768799, -0.0034713745, -0.041107178, -0.037384033, 0.11590576, 0.01197052, 0.0019006729, 0.008590698, -0.028305054, 0.0016069412, 0.0112838745, -0.004840851, 0.013938904, 0.009056091, 0.017501831, 0.0044937134, -0.048217773, -0.030059814, -0.05493164, -0.0074005127, -0.033111572, 0.089782715, 0.074035645, -0.024551392, 0.115600586, 0.09118652, -0.012702942, 0.09320068, 0.013206482, 0.053009033, 0.009590149, 0.072021484, -0.0026016235, 0.04928589, 0.002407074, 0.0051078796, -0.007881165, -0.036956787, -0.03866577, 0.02279663, 0.02545166, -0.0047912598, -0.028656006, 0.019989014, 0.027374268, -0.04095459, 0.009971619, -0.024002075, -0.0099105835, -0.060516357, -0.0005335808, -0.0026931763, -0.010002136, -0.024169922, 0.022949219, 0.020050049, -0.016067505, -0.011138916, 0.013458252, 0.012016296, -0.0042495728, 0.038848877, 0.02178955, 0.01725769, -0.05899048, 0.012611389, -0.02520752, 0.022216797, -0.027938843, -0.0079574585, -0.014671326, -0.020111084, 0.059295654, 0.016235352, -0.028289795, 0.014411926, -0.020858765, -0.06939697, 0.0021419525, 0.03363037, -0.0019721985, -0.023284912, 0.015945435, -0.03842163, -0.0013580322, -0.015487671, -0.014480591, -0.012390137, -0.033233643, -0.021942139, -0.07647705, -0.024291992, 0.0033111572, -0.0047416687, -0.06829834, 0.019470215, -0.00014340878, -0.015167236, -0.02420044, 0.017608643, -0.05984497, 0.01586914, -0.07208252, 0.011405945, -0.014762878, -0.016036987, -0.01007843, -0.010498047, -0.02947998, -0.0146484375, 0.034362793, 0.00982666, -0.019363403, -0.0362854, 0.011299133, -0.0075416565, 0.05038452, 0.02168274, -0.014564514, 0.02407837, 0.0030231476, -0.004360199, -0.059814453, -0.015853882, 0.01838684, -0.015014648, -0.06323242, -0.06994629, 0.01739502, 0.020324707, -0.007118225, -0.022583008, -0.0093688965, 0.021621704, -0.0073165894, -0.022323608, -0.008956909, 0.0030651093, 0.0018405914, -0.002527237, -0.010276794, -0.021560669, 0.060028076, 0.011238098, 0.042755127, -0.027893066, -0.015556335, 0.029144287, -0.036987305, 0.029754639, -0.04119873, -0.041290283, -0.013427734, 0.037994385, -0.084228516, 0.07141113, 0.036895752, -0.006641388, 0.013847351, 0.025848389, -0.008483887, -0.028198242, 0.003566742, -0.01991272, 0.0009226799, 0.0030574799, -0.009391785, 0.002216339, -0.00049448013, 0.0085372925, -0.03161621, -0.037078857, -0.0023975372, 0.020263672, 0.008995056, -0.01802063, -0.012664795, -0.02861023, 0.0068511963, 0.0056152344, 0.031311035, -0.035247803, -0.011749268, -0.04296875, -0.02935791, 0.019500732, -0.033935547, 0.004463196, -0.015289307, 0.010002136, -0.05609131, 0.018188477, 0.050720215, 0.015945435, -0.0067825317, 0.07019043, -0.037963867, -0.0047073364, -0.044433594, -0.004322052, 0.05633545, -0.052642822, 0.025314331, -0.0020256042, -0.034454346, 0.008087158, -0.028121948, 0.036010742, -0.018463135, -0.021621704, 0.028808594, 0.02494812, 0.008460999, -0.050750732, 0.05218506, -0.006916046, -0.029403687, -0.03591919, 0.008056641, -0.025405884, 0.027572632, -0.03741455, -0.010253906, 0.04525757, -0.04498291, -0.044128418, 0.01889038, 0.016159058, -0.06317139, -0.024963379, 0.033325195, -0.03479004, -0.025100708, 0.029205322, -0.014228821, 0.014923096, -0.016143799, -0.012611389, 0.036132812, 0.021484375, -0.03668213, -0.02394104, 0.008323669, -0.022567749, -0.023468018, -0.010543823, 0.019226074, -0.0052108765, 0.008621216, 0.015838623, 0.00283432, 0.016525269, -0.050354004, -0.007926941, -0.0067214966, 0.004119873, 0.005340576, 0.05697632, -0.04324341, -0.029678345, 0.0050315857, -0.01322937, 0.011489868, -0.014511108, -0.026123047, -0.02267456, 0.007659912, 0.015487671, -0.036621094, -0.021728516, 0.04977417, -0.051605225, -0.012290955, -0.0657959, -0.010795593, -0.00095558167, -0.04458618, 0.033050537, -0.014595032, 3.5226345e-05, 0.0030765533, -0.009269714, -0.049957275, 0.00077342987, 0.007083893, -0.04727173, -0.004722595, -0.03451538, 0.027496338, -0.0128479, -0.0063285828, -0.016342163, 0.06225586, -0.014411926, -0.06555176, -0.027511597, 0.025177002, 0.007820129, -0.010658264, 0.019958496, -0.018951416, -0.024246216, -0.022262573, -0.01852417, -0.0143585205, 0.0018825531, -0.0041236877, 0.00083875656, 0.018554688, 0.003047943, 0.0008430481, -0.03793335, 0.029296875, 0.015060425, 0.022354126, -0.053833008, -0.028625488, 0.0129852295, 0.030914307, -0.015106201, -0.014175415, 0.004447937, -0.019012451, 0.007785797, 0.05480957, 0.009300232, -0.02128601, 0.024002075, 0.0209198, 0.014312744, 0.029724121, 0.011756897, 0.03439331, -0.01083374, -0.05697632, 0.012611389, 0.046173096, -0.019165039, 0.034210205, -0.053375244, 0.027130127, 0.0032672882, 0.010192871, 0.022369385, -0.0134887695, 0.050231934, 0.014961243, 0.025161743, 0.017532349, 0.041900635, 0.008766174, 0.016677856, -0.03842163, 0.046295166, -0.015853882, -0.00078582764, -0.029663086, -0.014411926, 0.024612427, 0.041534424, 0.0046310425, -0.0004143715, -0.024536133, 0.015106201, 0.0368042, -0.06518555, 0.0143585205, -0.016555786, -0.0051574707, -0.016418457, -0.03302002, -0.02659607, 0.003955841, 0.0309906, -0.015899658, 0.027633667, -0.006126404, 0.035217285, 0.005744934, -0.015419006, -0.016357422, -0.03439331, 0.051574707, -0.03555298, -0.015151978, 0.0044174194, -0.020828247, -0.025924683, 0.053375244, -0.040496826, -0.017044067, -0.005558014, 0.017578125, -0.027862549, 0.029815674, -0.022705078, 0.0013580322, 0.03955078, 0.011550903, -0.00010788441, -0.010765076, -0.004295349, 0.014778137, -0.028823853, -0.03112793, 0.02355957, -0.045532227, 0.019088745, 0.01676941, -0.030822754, -0.0256958, -0.021560669, -0.016784668, 0.0024909973, 0.004306793, 0.022460938, 0.02796936, 0.0038280487, -0.04928589, 0.00042033195, 0.02960205, -0.02609253, 0.03591919, -0.025878906, 0.0059013367, 0.0075149536, 0.016815186, -0.006072998, 0.014755249, -0.008262634, -0.0055007935, 0.037384033, 0.012290955, 0.028030396, 0.040863037, -0.017929077, -0.03579712, 0.020141602, 0.026138306, -0.035339355, -0.018585205, -0.016937256, -0.00819397, -0.010543823, -0.027618408, -0.01727295, -0.013717651, -0.021896362, 0.021118164, 0.018737793, -0.008972168, -0.0009355545, -0.009819031, 0.016967773, -0.06341553, -0.016662598, -0.015274048, 0.044921875, -0.0065193176, 0.07385254, -0.03540039, -0.03213501, -0.047607422, -0.014434814, -0.047668457, 0.024002075, -0.026550293, 0.029159546, 0.02204895, -0.0016813278, 0.008430481, 0.038116455, 0.007751465, -0.013313293, 0.022399902, -0.058898926, -0.054473877, 0.09313965, 0.032409668, -0.047454834, -0.0046310425, 0.030853271, 0.016998291, 0.028030396, 0.022262573, 0.00030207634, -0.079711914, -0.023620605, -0.043182373, 0.039367676, -0.006526947, -0.024337769, 0.04144287, 2.1576881e-05, -0.028244019, -0.015304565, 0.024429321, 0.019454956, 0.055419922, -0.034729004, -0.0068588257, -0.048706055, -0.046875, -0.043670654, -0.008636475, 0.028457642, -0.051116943, -0.05630493, 0.033447266, -0.004589081, -0.02230835, -0.026016235, 0.02420044, -0.005935669, 0.0033550262, 0.0022773743, 0.037261963, -0.011459351, -0.010368347, 0.020721436, -0.045684814, -0.054870605, 1.2218952e-05, 0.010040283, -0.022888184, -0.01473999, -0.011474609, 0.021530151, -0.022842407, -0.013412476, -0.026321411, -0.061309814, 0.018585205, 0.034851074, 0.0008277893, 0.028671265, 0.017288208, -0.022506714, -0.006500244, -0.0017147064, 0.0036830902, -0.024551392, -0.023834229, 0.024627686, -0.007446289, 0.08666992, 0.0010099411, -0.08917236, -0.037384033, 0.012420654, 0.00982666, -0.030227661, 0.041625977, -0.031402588, 0.0048980713, 0.014122009, -0.04675293, -0.048828125, 0.024810791, 0.109802246, 0.014633179, 0.026382446]}, "B078FBVGX6": {"id": "B078FBVGX6", "original": "Brand: Broil King\nName: Broil King 814154 Gem 320 Liquid Propane Grill\nDescription: \nFeatures: 24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners\nStainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer\nTherma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert\nLarge 7\"/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish\n", "metadata": {"Name": "Broil King 814154 Gem 320 Liquid Propane Grill", "Brand": "Broil King", "Description": "", "Features": "24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners\nStainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer\nTherma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert\nLarge 7\"/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.042785645, -0.0067634583, -0.061706543, -0.028656006, -0.019378662, -0.020507812, -0.0496521, 0.023025513, -0.042053223, 0.009414673, -0.021743774, 0.019454956, 0.005832672, -0.033569336, 0.02760315, -0.025634766, 0.045013428, -0.005970001, 0.01776123, -0.012161255, -0.016555786, 0.024124146, 0.0077667236, 0.109191895, 0.05831909, -0.037994385, -0.027267456, 0.03793335, 0.03289795, 0.03152466, 0.02798462, -0.015312195, 0.06762695, -0.03314209, -0.025314331, -0.015571594, 0.0058135986, -0.03366089, -0.056549072, 0.032318115, 0.0077438354, 0.006969452, -0.012237549, -0.03866577, -0.014595032, -0.0023593903, -0.012763977, -0.029449463, 0.06530762, -0.017120361, -0.00995636, 0.016555786, -0.0030899048, -0.024429321, -0.014556885, 0.039978027, 0.07409668, -0.021850586, 0.009750366, -0.03793335, -0.023986816, 0.03994751, 0.040374756, 0.017044067, -0.066589355, 0.0010261536, 0.0602417, -0.021347046, 0.019363403, -0.072143555, -0.010787964, 0.0635376, 0.0036468506, 0.005443573, -0.0065345764, 0.004512787, 0.016952515, 0.011665344, 0.022247314, 0.009559631, -0.015045166, -0.03665161, -0.009536743, -0.020996094, 0.039276123, 0.037475586, -0.00617218, -0.017547607, 0.010437012, -0.023971558, -0.005077362, 0.018325806, -0.014755249, 0.030639648, -0.009391785, -0.023483276, -0.046081543, -0.05618286, 0.048980713, 0.013374329, 0.042999268, -0.034729004, 0.015083313, -0.0037250519, -0.008636475, 0.0927124, 0.0093688965, 0.028045654, -0.00012338161, -0.025238037, 0.02078247, -0.081604004, 0.023757935, -0.010238647, -0.0115356445, -0.017318726, -0.020462036, -0.007865906, -0.0013160706, -0.061706543, -0.013206482, -0.013374329, 0.015670776, 0.010307312, 0.035705566, 0.03463745, -0.028884888, -0.00028038025, -0.032684326, 0.059783936, -0.022369385, -0.0126571655, 0.057525635, 0.053466797, 0.0152282715, -0.02848816, -0.011741638, -0.009674072, 0.04244995, -0.025741577, -0.016159058, 0.008918762, 0.059783936, 0.02293396, -0.027618408, 0.03543091, 0.02897644, 0.0019550323, -0.048614502, -0.08294678, 0.022125244, 0.0007815361, 0.015556335, 0.039001465, -0.028564453, 0.047607422, -0.009239197, 0.0066070557, -0.0362854, -0.00843811, -0.040740967, -0.010948181, 0.0046157837, -0.023788452, -0.024002075, 0.033996582, 0.01612854, 0.019012451, 0.025726318, 0.051513672, 0.009170532, 0.003156662, 0.008590698, 0.029373169, -0.002614975, -0.0025463104, 0.015007019, 0.03451538, 0.04058838, -0.060455322, -0.057403564, -0.05618286, 0.109375, -0.059753418, -0.012458801, -0.0031776428, -0.0036792755, -0.014350891, 0.024719238, -0.00655365, 0.016342163, 0.024932861, -0.0066490173, 0.007129669, 0.032165527, -0.023895264, -0.012931824, -0.012802124, 0.012428284, -0.030303955, 0.019699097, 0.027832031, -0.022109985, 0.019836426, -0.013595581, -0.009925842, 0.00097322464, 0.0018377304, 0.02670288, 0.022628784, -0.019699097, -0.04107666, 0.016464233, -0.0014743805, -0.03552246, -0.019180298, -0.013572693, 0.031097412, 0.01638794, 0.013214111, 0.031204224, -0.016235352, 0.04248047, 0.03729248, -0.0062713623, -0.00869751, -0.055145264, 0.0006008148, -0.01939392, -0.009552002, -0.013465881, 0.06121826, 0.03967285, 0.10119629, 0.016021729, 0.015792847, 0.048797607, 0.04586792, -0.007987976, -0.041534424, 0.004096985, 0.03137207, -0.03186035, 0.019683838, -0.003271103, -0.00046300888, 0.016052246, -0.0053710938, 0.01625061, 0.04345703, 0.02670288, -0.0068855286, 0.018341064, -0.0024089813, -0.020996094, 0.03289795, -0.025314331, -0.007980347, -0.043792725, 0.042114258, -0.007446289, 0.06100464, 0.03225708, 0.01751709, -0.0024166107, 0.0074043274, -0.017211914, -0.002998352, -0.04977417, 0.015625, 0.039215088, 0.019439697, 0.0047454834, -0.009178162, -0.054656982, -0.013549805, -0.0149383545, 0.03164673, 0.0018644333, -0.030303955, 0.013442993, -0.014526367, 0.004760742, 0.0011587143, 0.05203247, 0.047180176, 0.018615723, 0.017822266, -0.0028762817, 0.030776978, 0.04272461, -0.0019798279, -0.007843018, 9.924173e-05, -0.012420654, -0.010467529, 0.089660645, -0.042053223, 0.04147339, -0.04156494, 0.03466797, 0.0287323, -0.041656494, 0.00016903877, -0.0026168823, -0.007255554, -0.029067993, 0.052093506, 0.039001465, -0.01398468, -0.0017824173, 0.04724121, 0.037261963, 0.03604126, 0.029586792, -0.009712219, 0.031311035, 0.06854248, 0.022109985, 0.006542206, -0.021469116, -0.0024261475, -0.06768799, 0.002456665, -0.0015144348, 0.036895752, 0.0011539459, -0.009750366, -0.025482178, 0.0070533752, -0.042877197, -0.015975952, 0.012741089, 0.025268555, -0.030059814, -0.024108887, -0.007881165, 0.009208679, -0.027893066, -0.05834961, -0.045166016, -0.04260254, 0.00063610077, -0.0234375, -0.030273438, -0.015655518, 0.009689331, 0.015991211, 0.00068950653, 0.0007686615, 0.008918762, -0.0041656494, 0.020706177, -0.0016307831, -0.011184692, -0.0059318542, -0.028152466, -0.07623291, -0.068847656, -0.114868164, -0.017105103, -0.012451172, -0.056640625, 0.0013179779, 0.058410645, -0.007183075, -0.032073975, -0.009483337, -0.015586853, -0.032989502, 0.03817749, -0.02619934, -0.061553955, -0.00737381, -0.003408432, -0.0035514832, 0.040405273, -0.025726318, 0.00035381317, 0.00062561035, 0.029403687, 0.0236969, -0.038848877, -0.030670166, 0.03439331, 0.016647339, 0.000500679, 0.019546509, 0.014045715, -0.022399902, -0.00091838837, 0.029754639, -0.024765015, -0.01272583, -0.008415222, 0.0057411194, -0.036895752, 0.010070801, -0.046173096, 0.017929077, -0.112976074, -0.016067505, -0.051818848, -0.030853271, 0.016220093, -0.047424316, -0.03326416, -0.07196045, 0.022338867, 0.079833984, 0.014389038, -0.013198853, 0.009590149, 0.0011281967, 0.005718231, 0.015556335, -0.014205933, -0.03326416, 0.01499176, 0.007537842, 0.011764526, -0.012313843, 0.022964478, 0.045440674, -0.054534912, 0.043640137, -0.042663574, 0.030426025, 0.007598877, 0.023864746, -0.012863159, 0.012237549, -0.042022705, -0.026290894, 0.008399963, 0.0063591003, 0.00072574615, -0.0104599, 0.0084991455, -0.00044989586, -0.049224854, -0.037322998, 0.037109375, 0.03463745, -0.021057129, 0.032409668, -0.03253174, -0.026367188, -0.02331543, -0.012161255, 0.013572693, 0.013305664, 0.045684814, 0.02708435, -0.005168915, 0.04421997, 0.015853882, 0.07696533, 0.016525269, -0.042022705, -0.019348145, -0.05886841, 0.01953125, 0.043701172, 0.01209259, -0.0049552917, -0.001405716, 0.036071777, -0.0015687943, 0.01727295, 0.041381836, -0.0007171631, 0.02407837, -0.018447876, 0.002199173, -0.019866943, 0.02394104, 0.008155823, -0.016494751, -0.04107666, -0.0635376, 0.027801514, -0.046325684, 0.040161133, 0.04232788, -0.03704834, 0.07354736, -0.01612854, -0.022247314, 0.030227661, 0.0121536255, 0.007358551, -0.0026836395, 0.021865845, -0.040618896, 0.016311646, 0.017181396, -0.0067443848, 0.022109985, 0.0020503998, -0.013511658, 0.0064353943, 0.019760132, -0.026626587, -0.0018396378, -0.024719238, -0.0016756058, -0.03173828, 0.012542725, 0.04647827, -0.013473511, -0.025161743, 0.0061683655, 0.011039734, -0.028778076, -0.032409668, -0.03479004, -0.0096206665, -0.048675537, 0.022583008, 0.023880005, 0.025161743, 0.005794525, 0.048919678, -0.025680542, 0.013893127, -0.03427124, -0.021270752, 0.00907135, 0.027862549, 0.024032593, -0.03692627, 0.046813965, 0.0077056885, 0.011764526, 0.010421753, 0.0047683716, 0.031188965, -0.02645874, -0.08300781, 0.0039596558, 0.029754639, 0.009887695, -0.08099365, -0.013572693, 0.01626587, -0.020965576, -0.020233154, -0.0002720356, -0.057250977, -0.008712769, 0.020187378, -0.066589355, -0.03390503, 0.010147095, -0.043640137, -0.019195557, 0.015853882, -0.008178711, -0.051727295, 0.0079956055, -0.0018062592, -0.03274536, 0.013214111, -0.007843018, 0.0069770813, 0.026306152, -0.006717682, 0.050750732, -0.0289917, 0.008544922, -0.034301758, 0.11419678, 0.016906738, -0.0184021, -0.049926758, -0.033813477, -0.021194458, 0.020462036, 0.03363037, -0.010231018, 0.03933716, -0.019119263, -0.021362305, -0.04537964, 0.0017871857, 0.0030555725, -0.033843994, -0.061553955, -0.0038318634, 0.06933594, -0.0015039444, 0.01449585, 0.008979797, 0.009124756, 0.012023926, -0.00094366074, -0.070617676, 0.0037879944, -0.009292603, -4.3272972e-05, 0.03274536, -0.009391785, -0.020370483, 0.004447937, 0.06088257, 0.0758667, -0.03466797, -0.00021743774, -0.00932312, 0.026367188, -0.0021972656, -0.018218994, 0.004600525, -0.02508545, -0.007572174, -0.056518555, 0.08105469, 0.05255127, 0.00012266636, 0.015304565, 0.008300781, 0.00014686584, -0.05618286, -0.006816864, -0.0053863525, -0.0025672913, 0.0043029785, -0.02394104, -0.0129852295, -0.017471313, -0.015991211, -0.0038375854, 0.0007505417, 0.009307861, -0.027908325, 0.013137817, -0.021224976, 0.021743774, 0.03012085, 0.010826111, 0.027404785, -0.0022449493, -0.03326416, 0.050567627, -0.004512787, -0.009399414, 0.012619019, -0.04373169, -0.04611206, -0.02041626, 0.024002075, -0.029312134, 0.07824707, 0.04510498, 0.0105896, -0.026779175, 0.018112183, 0.005996704, 0.0024642944, 0.01687622, 0.061065674, -0.024032593, 0.040252686, 0.03878784, -0.0041618347, -0.024673462, 0.051971436, -0.0345459, 0.05065918, 0.03878784, -0.03604126, 0.03125, 0.012901306, 0.026168823, -0.060272217, 0.03753662, -0.01763916, -0.04284668, -0.05053711, 0.0093307495, 0.016342163, 0.026947021, 0.034088135, -0.040039062, 0.05117798, -0.023361206, -0.029785156, -0.00712204, 0.029815674, -0.026397705, 0.025009155, -0.010536194, 0.025527954, 0.0059394836, 0.008758545, -0.014099121, 0.02168274, -0.030807495, 0.017150879, 0.042938232, -0.0036449432, -0.0124435425, -0.035125732, -0.012809753, -0.014427185, -0.018325806, 0.0048713684, 0.003501892, -0.0018043518, 0.0011072159, 0.0038318634, 0.005630493, -0.0063209534, 0.0013360977, -0.023162842, 0.020004272, 0.025009155, 0.00052309036, 0.021560669, -0.039123535, 0.03189087, 0.059570312, -0.025299072, 0.01687622, 0.052703857, -0.05581665, -0.027160645, 0.013793945, 0.031433105, 0.01864624, 0.0050201416, 0.08416748, -0.032989502, -0.025863647, -0.06964111, 0.03062439, -0.0073051453, -0.015411377, 0.052001953, 0.017242432, 0.0090789795, 0.03741455, -0.007671356, -0.053833008, 0.0024299622, 0.0112838745, -0.067871094, -0.033599854, -0.034057617, 0.014839172, -0.02331543, -0.030960083, 0.0062828064, 0.05178833, 0.042388916, -0.035949707, -0.01651001, -0.039642334, 0.01928711, -0.06036377, -0.010070801, -0.03363037, 0.016998291, 0.0004553795, -0.024551392, -0.045074463, 0.0030593872, 0.023162842, 0.011833191, 0.00881958, -0.015640259, 0.00080919266, 0.027114868, 0.011856079, 0.022491455, -0.011795044, 0.015045166, 0.008758545, 0.024520874, -0.028839111, 0.05065918, -0.035339355, 0.005130768, -0.034942627, 0.027526855, 0.032440186, 0.039001465, -0.034942627, 0.008163452, 0.036254883, 0.033050537, 0.04159546, 0.011360168, 0.016906738, -0.041778564, -0.049926758, 0.0077934265, -0.025344849, -0.04840088, -0.021759033, -0.007701874, -0.043151855, 0.010063171, -0.024963379, 0.0038051605, -0.030776978, 0.051208496, 0.00944519, 0.00033068657, 0.016082764, 0.019378662, 0.0016422272, -0.033599854, -0.048217773, 0.007724762, 0.031555176, 0.01789856, -0.028945923, -0.037322998, -0.007358551, 0.0236969, 0.016052246, -0.0038223267, -0.03375244, 0.047546387, 0.024978638, -0.089660645, 0.006252289, 0.008506775, 0.008621216, 0.011077881, -0.043548584, -0.018615723, 0.002916336, 0.016433716, -0.03024292, 0.023483276, 0.012718201, 0.017486572, 0.026916504, -0.046051025, 0.051757812, -0.010154724, 0.020889282, 0.01247406, 0.006225586, -0.013809204, -0.043121338, 0.009674072, 0.04675293, -0.024612427, 0.0143966675, -0.004535675, 0.019866943, -0.043518066, -0.020355225, -0.019424438, -0.006752014, 0.028396606, 0.015281677, 0.0044136047, 0.01889038, -0.01789856, 0.030410767, 0.0032310486, -0.003610611, 0.024276733, -0.041503906, 0.02230835, 0.021972656, 0.019561768, -0.07324219, -0.006801605, -0.001540184, -0.013946533, 0.0040016174, 0.055389404, 0.010177612, 0.017700195, 0.038391113, 0.019943237, 0.04824829, -0.021957397, 0.0040245056, 0.030075073, 0.00025343895, 0.028793335, 0.00623703, -0.011138916, -0.0042915344, 0.00048398972, 0.004146576, 0.02720642, 0.021820068, 0.0076179504, 0.00831604, -0.022384644, -0.017608643, 0.013572693, -0.005168915, 0.0023822784, 0.0023651123, -0.02796936, -0.02998352, -0.016830444, -0.040496826, -0.04220581, 0.0011339188, -0.076660156, -0.012786865, -0.01789856, -0.01776123, 0.024536133, 0.0064086914, -0.041107178, -0.02230835, 0.00018942356, 0.005596161, 0.024932861, 0.012420654, 0.044799805, -0.02330017, -0.07110596, -0.033721924, 0.050079346, -0.08416748, -0.03778076, -0.0043258667, -0.019378662, -0.011138916, -0.011947632, 0.02154541, 0.009086609, 0.04159546, -0.0087509155, -0.014335632, -0.018188477, -0.00919342, -0.013465881, -0.02760315, -0.0076828003, 0.009056091, 0.05407715, 0.002336502, 0.0028495789, 0.010505676, -0.0038833618, -0.08770752, 0.0007100105, -0.008804321, 0.0116119385, -0.0021438599, 0.009719849, 0.00623703, 0.024139404, -0.028060913, 0.017684937, -0.011543274, -0.013626099, 0.02671814, 0.000518322, 0.03326416, -0.023345947, -0.10510254, -0.06512451, -0.03173828, 0.038146973, 0.076049805, 0.023452759, 0.018463135, 0.032073975, -0.04888916, 0.045959473, 0.002866745, -0.011062622, 0.0022697449, 0.030395508, 0.0015659332, 0.002210617, -0.0025043488, 0.013061523, -0.031982422, -0.041015625, 0.057037354, -0.01399231, -0.009223938, 0.0021133423, -0.04800415, -0.013092041, -0.016906738, -0.02571106, -0.03704834, -0.02355957, -0.0099487305, 0.024459839, -0.017166138, 0.0010538101, -0.015930176, 0.008453369, -0.012039185, 0.009414673, 0.018615723, 0.018966675, -0.040924072, 0.039794922, 0.009414673, -0.0024662018, -0.006603241, -0.06213379, -0.022415161, 0.024169922, 0.0067749023, -0.021713257, 0.036712646, -0.04107666, 0.009849548, 0.02041626, 0.014099121, -0.031188965, 0.039123535, 0.031066895, 0.014724731, 0.029556274]}, "B07W4JX6QS": {"id": "B07W4JX6QS", "original": "Brand: Kohree\nName: Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper\nDescription: Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
      This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
      PREMIUM
      Made of 100% high quality brass, it is extra durable and strong for long-term usage.
      Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
      CONVENIENT
      The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
      Tips:
      1. The indicator could not show the exact content of the tank but give an approximate value.
      2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
      Safe Protection
      Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
      Easy Installation
      With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
      Wide Application
      Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
      \nFeatures: \u30102 Way Propane Hose Splitter\u3011: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage.\n\u3010Clear Gauge Level Indicator\u3011 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank.\n\u3010Premium Quality\u3011: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using.\n\u3010Easy Installtion\u3011: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier.\n\u3010Wide Application\u3011: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.\n", "metadata": {"Name": "Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper", "Brand": "Kohree", "Description": "Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
      This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
      PREMIUM
      Made of 100% high quality brass, it is extra durable and strong for long-term usage.
      Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
      CONVENIENT
      The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
      Tips:
      1. The indicator could not show the exact content of the tank but give an approximate value.
      2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
      Safe Protection
      Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
      Easy Installation
      With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
      Wide Application
      Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
      ", "Features": "\u30102 Way Propane Hose Splitter\u3011: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage.\n\u3010Clear Gauge Level Indicator\u3011 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank.\n\u3010Premium Quality\u3011: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using.\n\u3010Easy Installtion\u3011: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier.\n\u3010Wide Application\u3011: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016677856, -0.026443481, -0.013809204, -0.00945282, -0.032684326, -0.011253357, -0.012771606, 0.01008606, 0.03781128, -0.0037784576, 0.014785767, -0.016052246, 0.012367249, -0.054138184, -0.0043945312, -0.0034866333, -0.0024776459, 0.019042969, -0.0074768066, -0.0076408386, -0.018371582, -0.0096588135, -0.019622803, 0.054260254, 0.0038833618, 0.035095215, 0.03778076, 0.03729248, 0.008979797, 0.010108948, 0.019546509, -0.05215454, 0.021224976, 0.012969971, -0.025543213, -0.01386261, -0.0011730194, -0.01184845, -0.031982422, 0.029403687, -0.029174805, 0.012237549, -0.017745972, -0.028808594, -0.04296875, -0.007980347, -0.035827637, -0.009757996, 0.0028495789, 0.029205322, -0.0022277832, -0.024810791, 0.0002644062, 0.029937744, -0.0008068085, 0.018707275, 0.008262634, -0.04940796, -0.0068588257, -0.0022239685, 0.023971558, 0.0231781, 0.020965576, 0.027770996, -0.03173828, -0.005367279, 0.008903503, 0.0013446808, 0.021560669, -0.035583496, -0.018325806, 0.021316528, 0.029129028, -0.017990112, -0.05102539, -0.02420044, -0.011917114, -0.05355835, 0.04940796, -0.03173828, 0.009048462, -0.04940796, -0.0132751465, -0.029541016, 0.022918701, -0.0076179504, 0.010223389, -0.0064353943, -0.017440796, -0.003490448, -0.011451721, 0.015716553, -0.033172607, 0.020507812, -0.016021729, -0.005859375, -0.03842163, -0.04940796, -0.0020198822, -0.0058784485, 0.00881958, -0.016983032, -0.014671326, 0.013725281, 0.032958984, 0.046661377, 0.023452759, -0.026138306, 0.01348114, -0.025741577, -0.012786865, 0.071899414, 0.004512787, -0.03466797, -0.020004272, 0.02507019, 0.017456055, 0.01612854, 0.039154053, 0.02470398, -0.031311035, -0.001042366, -0.020980835, -0.03765869, -0.0010948181, -0.028823853, 0.003967285, 0.011955261, -0.06665039, 0.031280518, -0.0065345764, 0.0032978058, 0.04537964, 0.0793457, 0.018569946, -0.012428284, 0.03768921, 0.009002686, -0.0020198822, 0.032684326, 0.012420654, -0.05831909, -0.05517578, 0.022094727, -0.024047852, 0.022155762, 0.017028809, 0.007446289, -0.017700195, -0.0597229, -0.0038604736, -0.037506104, 0.03427124, 0.010726929, -0.03933716, -0.018310547, -0.008232117, -0.025924683, 0.013122559, -0.03048706, -0.03793335, -0.0087509155, 0.041503906, -0.009971619, 0.0004014969, 0.018951416, -0.02470398, -0.0035324097, 0.018981934, 0.022079468, 0.028900146, 0.024658203, 0.028564453, -0.02659607, -0.010505676, -0.019073486, -0.023757935, 0.036224365, 0.068847656, -0.1381836, -0.08074951, -0.056365967, 0.101745605, -0.039733887, -0.019332886, -0.007858276, 0.032287598, 0.017349243, -0.0132751465, 0.008834839, 0.053466797, 0.03024292, -0.013725281, -0.0105896, 0.013214111, -0.015167236, -0.023986816, -0.007461548, -0.0025844574, -0.021133423, -0.035125732, 0.028213501, -0.022827148, 0.027435303, 0.004627228, -0.023483276, 0.0085372925, 0.011077881, 0.018188477, 0.019683838, -0.009902954, -0.025619507, 0.017623901, -0.026168823, -0.026565552, 0.013748169, 0.00907135, 0.012969971, -0.0030403137, 0.0028705597, 0.024047852, -0.01939392, 0.008934021, 0.05029297, -0.0090408325, 0.0039100647, -0.023788452, 0.008506775, 0.00868988, 0.008293152, 0.02142334, 0.044403076, 0.12237549, 0.09588623, -0.0025043488, 0.011932373, 0.099731445, 0.009941101, -0.01625061, -0.015197754, 0.025558472, -0.028396606, -0.03062439, -0.025222778, -0.010307312, -0.07940674, -0.020828247, 0.0015554428, -0.0024909973, 0.060272217, 0.03781128, 0.041992188, -0.0023059845, 0.034362793, -0.024017334, 0.031982422, -0.018569946, 0.03253174, -0.08355713, 0.03933716, -0.024215698, -0.015586853, 0.029815674, -0.018936157, 0.07312012, 0.00018584728, 0.07879639, 0.05404663, -0.0071258545, 0.0010385513, -0.0158844, -0.02192688, -0.00082683563, -0.0044937134, -0.036834717, -0.0005583763, -0.018692017, 0.024673462, -0.0042915344, -0.0023536682, 0.013839722, 0.0025691986, 0.020812988, -0.017852783, 0.07989502, 0.06640625, -0.01550293, -0.029205322, -0.026443481, 0.0049934387, 0.021865845, 0.005519867, -0.021133423, 0.008354187, -0.03225708, -0.016174316, 0.051696777, -0.012535095, 0.024032593, -0.019592285, 0.027297974, 0.053894043, -0.038238525, 0.024917603, 0.0037937164, -0.025680542, -0.024871826, 0.0423584, -0.00018846989, -0.051208496, -0.025146484, -0.0046806335, 0.020324707, -3.85046e-05, 0.032226562, 0.02029419, -0.0030345917, 0.041229248, 0.06414795, 0.08728027, -0.020233154, -0.0063552856, -0.023452759, -0.026168823, 0.005622864, 0.011077881, -0.048309326, -5.6624413e-06, -0.004142761, -0.029006958, 0.034729004, -0.016448975, 0.0069847107, 0.043792725, 0.015571594, -0.008621216, 0.015586853, -0.020706177, -0.031173706, -0.08557129, 0.0021381378, -0.03793335, 0.005142212, 0.054718018, -0.0519104, -0.030471802, 0.055023193, -0.00071144104, 0.01058197, -0.010551453, 0.040222168, -0.033081055, 0.041290283, 0.009140015, 0.03756714, -0.010818481, -0.05340576, 0.0066337585, -6.3717365e-05, -0.06237793, 0.028015137, -0.03665161, -0.053131104, -0.066589355, 0.071777344, -0.009605408, -0.06463623, -0.052246094, 0.00014388561, 0.0236969, 0.008354187, 8.3744526e-05, -0.021759033, -0.015090942, -0.023254395, -0.026611328, 0.025939941, -0.045043945, 0.022094727, 0.00919342, -0.0040626526, 0.021636963, -0.031188965, 0.01235199, 0.02017212, 0.038391113, 0.087524414, 0.06677246, 0.028213501, -0.051361084, 0.026245117, 0.06359863, -0.009719849, -0.0007839203, -0.018875122, -0.00063467026, -0.031097412, -0.049713135, -0.030960083, 0.011222839, -0.031951904, 0.0069236755, -0.024902344, 0.010375977, 0.004337311, -0.04168701, -0.00598526, -0.055877686, 0.019104004, 0.046936035, -0.048095703, 0.02609253, -0.053619385, 0.017105103, -0.016693115, 0.0027999878, 0.00881958, -0.010032654, -0.044525146, 0.017807007, 0.053527832, -0.057556152, 0.03479004, 0.02861023, -0.04055786, 0.013916016, -0.007320404, 0.02861023, -0.038330078, 0.022399902, -0.0037193298, -0.024810791, -0.048614502, -0.04827881, -0.026397705, -0.026947021, 0.02041626, -0.042907715, 0.033935547, -0.0004093647, -0.093933105, -0.03741455, 0.004245758, 0.020324707, 0.0068206787, 0.006298065, -0.057495117, -0.06524658, -0.021942139, -0.037231445, 0.029647827, 0.013496399, 0.030166626, 0.0004351139, 0.0020828247, 0.038635254, 0.032348633, 0.037384033, -0.008270264, 0.022277832, 0.029754639, -0.012382507, 0.00033450127, -0.004989624, 0.005088806, -0.04736328, 0.0047836304, -0.008781433, -0.02267456, -0.006958008, -0.025039673, 0.05657959, 0.009811401, -0.021896362, 0.008575439, -0.006702423, 0.015808105, -0.02305603, 0.05227661, -0.0016460419, -0.017684937, 0.0032958984, -0.10345459, 0.08001709, 0.01940918, -0.005718231, 0.024749756, 0.046936035, 0.0031394958, 0.005695343, 0.068481445, -0.029296875, -0.00028395653, 0.0692749, -0.02558899, -0.020980835, 0.015213013, 0.0024299622, 0.014480591, 0.008071899, -0.0513916, 0.014381409, -0.0071640015, -0.036254883, 0.033691406, 0.018188477, -0.008850098, -0.008911133, -0.011657715, -0.012611389, 0.011497498, -0.03640747, -0.0020923615, -0.009544373, -0.007045746, -0.0010738373, 0.0024681091, -0.011230469, 0.0037155151, -0.0026454926, -0.01876831, -0.024856567, 0.018478394, 0.023422241, -0.0014066696, -0.0035743713, 0.0050735474, 0.015670776, -0.042419434, 0.0063552856, 0.025024414, 0.008300781, 0.002204895, -0.04156494, 0.040527344, 0.021987915, -0.02331543, 0.036743164, -0.031402588, -0.09490967, 0.0028934479, 0.056549072, 0.020568848, -0.04055786, 0.0071487427, -0.06298828, -0.010871887, -0.0015258789, -0.024810791, -0.012008667, -0.0028953552, -0.0073242188, -0.040802002, -0.04156494, -0.023468018, 0.007888794, -0.0063934326, -0.0033931732, 0.01096344, 0.035583496, -0.00015592575, 0.013641357, -0.045715332, -0.00894928, -0.0074691772, 0.0023384094, 0.03289795, -0.0138549805, -0.05368042, -0.0087509155, -0.023651123, 0.0068626404, 0.008277893, -0.031829834, -0.027740479, -0.023269653, -0.021224976, 0.00032043457, 0.026519775, 0.053100586, -0.035308838, 0.029022217, -0.014190674, 0.009941101, -0.033081055, -0.003932953, -0.0027656555, -0.0011024475, -0.04348755, -0.034698486, 0.034454346, 0.004798889, 0.0036582947, -0.0031166077, 0.00995636, 0.01828003, -0.018539429, -0.07495117, -0.004589081, -0.009346008, -0.008728027, 0.006248474, -6.9499016e-05, -0.013328552, 0.0037498474, 0.018081665, -0.023544312, 0.018753052, 0.01940918, -0.018127441, -0.012039185, 0.028015137, -0.036132812, 0.026382446, -0.032043457, -0.049316406, -0.061035156, 0.070373535, 0.08300781, -0.00087833405, 0.0029125214, -0.013717651, -0.033996582, -0.037994385, -0.0067329407, 0.024368286, 0.016204834, -0.012428284, -0.046417236, 0.009056091, -0.049957275, -0.0063438416, -0.027954102, 0.010398865, 0.010009766, 0.0021247864, -0.0140686035, -0.0052490234, -0.03491211, -0.043151855, 0.0104904175, 0.018859863, -0.04827881, -0.019119263, 0.019607544, -0.011161804, -0.017562866, -0.024459839, -0.008598328, 0.013641357, -0.021652222, 0.009559631, -0.010261536, -0.0029659271, 0.00623703, 0.020889282, -0.0007958412, 0.039794922, -0.021255493, -0.025970459, -0.025100708, -0.014831543, 0.043792725, -0.044708252, 0.009651184, 0.030776978, 0.008552551, 0.06707764, -0.025161743, 0.053497314, 0.05999756, -0.026290894, 0.04562378, 0.010513306, -0.010345459, -0.06500244, 0.07110596, -0.02607727, -0.008346558, -0.038330078, 0.008796692, 0.0056266785, 0.033081055, 0.02357483, -0.03781128, 0.024749756, -0.021072388, -0.013694763, 0.0076408386, 0.013366699, -0.024383545, -0.0068244934, 0.006839752, -0.030044556, -0.04119873, 0.013397217, 0.005241394, -0.0115737915, 0.007709503, -0.055480957, 0.018981934, 0.014152527, -0.027297974, -0.009925842, -0.022918701, 0.059326172, 0.028717041, -0.007446289, -0.0524292, -0.016845703, -0.004940033, 0.030776978, 0.017608643, 0.0042877197, -0.028747559, -0.04373169, -0.02458191, -0.0052604675, -0.018234253, 0.043548584, 0.00011664629, -0.04537964, 0.01876831, -0.0038604736, 0.012077332, -0.011154175, -0.0011482239, -0.0007805824, 0.0030002594, 0.019882202, -0.036621094, -0.016143799, 0.051116943, -0.05053711, -0.033355713, -0.030944824, 0.078308105, -0.04537964, -0.012390137, 0.06185913, -0.0027008057, 0.036834717, 0.007205963, 0.0041503906, -0.03793335, 0.0118637085, 0.0008044243, -0.024032593, -0.022827148, -0.02609253, -0.0031337738, 0.014549255, -0.0061683655, -0.01411438, 0.034362793, -0.0063209534, -0.014259338, -0.032348633, -0.013168335, -0.0034732819, -0.02078247, 0.0031032562, -0.023101807, -0.0019931793, -0.008598328, 0.0075416565, -0.06549072, -0.02973938, 0.03753662, 0.01309967, -0.025894165, 0.0022525787, 0.0041923523, 0.022827148, -0.01890564, 0.040405273, -0.0059928894, -0.017318726, 0.0018100739, 0.026000977, 0.00034594536, 0.08337402, -0.0146865845, -0.023422241, -0.042938232, 0.029922485, -0.0053215027, 0.037597656, -0.064208984, -0.031585693, 0.038238525, 0.04324341, -0.012397766, 0.009803772, 0.0026931763, -0.031463623, -0.033935547, -0.020874023, -0.042114258, -0.0423584, 0.0052719116, -0.054382324, 0.0037879944, -0.014320374, -0.018463135, 0.02418518, -0.03463745, 0.033721924, -0.04812622, -0.020614624, -0.00983429, -0.055541992, 0.03869629, -0.051635742, 0.029800415, -0.06585693, 0.02458191, 0.017211914, 0.004524231, -0.0024871826, -0.02671814, 0.0069007874, -0.015045166, 0.035980225, 0.044158936, -0.007904053, 0.045135498, -0.052490234, 0.019821167, -0.010185242, 0.008110046, -0.0037136078, -0.0069618225, -0.0003373623, -0.018981934, 0.044525146, 0.026184082, 0.027069092, -0.004272461, 0.040161133, -0.0029277802, -0.008834839, 0.023849487, 0.008392334, 0.021530151, 0.01940918, 0.0016698837, -0.027542114, -0.031463623, 0.015991211, 0.01725769, 0.0151901245, -0.02330017, -0.011329651, 0.033203125, 0.033447266, 0.032348633, -0.039794922, -0.064453125, -0.025985718, 0.029693604, -0.013870239, 0.036224365, 0.014945984, 0.041259766, 0.003982544, -0.006137848, 0.028244019, -0.030685425, 0.032989502, 0.024429321, -0.0052337646, -0.01209259, -0.03503418, -0.018875122, -0.008850098, 0.0045433044, 0.010360718, -0.004337311, 0.085632324, -0.004360199, 0.04232788, 0.055480957, -0.024902344, 0.029190063, 0.00957489, 0.0077323914, 0.034973145, -0.0020179749, -0.016189575, -0.011253357, 0.019714355, 0.014923096, 0.026565552, 0.0034828186, 0.006626129, -0.015625, 0.025177002, -0.034851074, 0.03302002, -0.027664185, -0.035369873, 0.0003902912, -0.017440796, -0.021316528, -0.02243042, -0.06317139, -0.061309814, -0.042785645, -0.07336426, 0.038726807, -0.016235352, 0.0050354004, 1.4662743e-05, -0.017532349, -0.005378723, -0.032348633, 0.016952515, -0.00063085556, 0.06161499, -0.04034424, 0.013969421, -0.025100708, -0.01625061, 0.011169434, 0.033813477, -0.042236328, -0.05041504, -0.0047836304, -0.0033092499, 0.010520935, 0.02142334, 0.064575195, 0.09136963, 0.01084137, 0.022415161, -0.024002075, -0.0047798157, -0.012077332, 0.05609131, 0.0078125, -0.007904053, -0.036102295, 0.0135269165, 0.0011053085, 0.0112838745, 0.015945435, 0.008049011, -0.02923584, 0.0055770874, -0.0069847107, -0.028060913, -0.00040459633, -0.0043945312, 0.026992798, -0.0059661865, -0.029922485, 0.03677368, 0.018981934, 0.022705078, 0.054992676, 0.03845215, -0.020614624, -0.045684814, -0.06384277, -0.04498291, -0.017089844, 0.051727295, 0.029205322, -0.03048706, -0.016220093, 0.006504059, 0.0093688965, -0.03967285, 0.015167236, 0.027786255, 0.022003174, 0.027053833, -0.008232117, -0.0064315796, -0.0149383545, -0.011428833, 0.0028686523, -0.09509277, 0.036102295, 0.031051636, -0.03062439, -0.014404297, -0.033050537, 0.0017023087, -0.0058555603, -0.04510498, -0.0047950745, -0.06604004, 0.06286621, 0.025650024, 0.031921387, -0.019943237, 0.029296875, -0.032592773, -0.038909912, -0.008674622, 0.022964478, -0.007003784, 0.007068634, -0.01763916, 0.015235901, 0.025146484, -0.019332886, -0.06921387, -0.02973938, 0.015594482, -0.023345947, -0.003829956, -0.006023407, -0.03881836, -0.0021686554, 0.030426025, -0.00038719177, -0.052124023, 0.03201294, 0.07861328, 0.025054932, 0.029449463]}, "B07M6V9BMW": {"id": "B07M6V9BMW", "original": "Brand: Napoleon\nName: Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel\nDescription: \nFeatures: 80, 000 BTU's, 4 Stainless Steel main burners, 900 in\u00b2 total cooking area\nDimensions: 66.50\" W x 25.50\" D x 51.75\" H (Lid Closed) | Cooking Area: 17.75 x 28 in\nLed Spectrum night light control knobs and safety feature\nLift ease roll top lid. double doors for storage and easy roll locking casters\nInfrared rear rotisserie burner\n", "metadata": {"Name": "Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel", "Brand": "Napoleon", "Description": "", "Features": "80, 000 BTU's, 4 Stainless Steel main burners, 900 in\u00b2 total cooking area\nDimensions: 66.50\" W x 25.50\" D x 51.75\" H (Lid Closed) | Cooking Area: 17.75 x 28 in\nLed Spectrum night light control knobs and safety feature\nLift ease roll top lid. double doors for storage and easy roll locking casters\nInfrared rear rotisserie burner", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0017967224, 0.0030536652, -0.008239746, 0.009811401, -0.02166748, -0.003566742, -0.0064849854, -0.029418945, -0.017166138, 0.004837036, -0.034454346, 0.015014648, -0.028839111, -0.035736084, 0.008110046, -0.04034424, 0.04296875, 0.007282257, 0.05496216, -0.0061302185, -0.011741638, 0.016220093, 0.066711426, 0.096069336, 0.03314209, -0.03137207, -0.022613525, 0.012016296, 0.023345947, 0.009864807, 0.023620605, -0.0017328262, 0.025848389, 0.008583069, -0.012023926, -0.00031280518, 0.033294678, -0.022628784, -0.00050354004, 0.02204895, 0.017242432, -0.018966675, -0.0035495758, -0.025390625, -0.031982422, -0.0036945343, 0.025772095, 0.00033020973, 0.013954163, -0.0031528473, 0.031951904, -0.010429382, 0.040039062, -0.034057617, -0.029632568, -0.017913818, -0.011268616, 0.006126404, 0.013824463, -0.0029907227, -0.01637268, -0.012565613, 0.023773193, 0.0063972473, -0.048217773, 0.033477783, 0.103271484, -0.032043457, 0.013916016, -0.05355835, -0.010444641, 0.03253174, 0.0070610046, -0.0259552, -0.04714966, -0.043029785, 0.06384277, -0.032958984, -0.010665894, -0.014602661, 0.0262146, 0.031829834, -0.004951477, 0.01247406, -0.027297974, 0.009750366, -0.010360718, -0.027145386, -0.018249512, -0.050750732, -0.01171875, -0.0070266724, -0.09039307, 0.059020996, 0.015991211, -0.0030498505, -0.04711914, -0.046875, 0.010391235, 0.021774292, 0.030975342, -0.023269653, 0.04510498, -0.011131287, -0.010871887, 0.09173584, 0.029266357, 0.07531738, 0.02607727, -0.008857727, 0.012893677, -0.034118652, 0.02015686, -0.02746582, 0.007507324, -0.003440857, -0.019226074, 0.027282715, 0.009857178, -0.026367188, -0.02911377, -0.018112183, 0.010147095, 0.0418396, 0.03036499, 0.060272217, 0.007843018, -0.009315491, -0.05657959, 0.064086914, -0.009841919, -0.009178162, 0.011734009, 0.035003662, -0.019180298, -0.017837524, 0.06225586, -0.026779175, 0.00088357925, 0.014099121, 0.0017414093, -0.002319336, 0.017150879, -0.017578125, -0.03186035, 0.010429382, 0.019195557, 0.016418457, -0.0019054413, -0.051849365, -0.015365601, 0.01411438, 0.03149414, 0.010894775, -0.034118652, 0.037750244, -0.033172607, 0.011001587, -0.04196167, 0.0037670135, -0.0072288513, -0.016296387, 0.005332947, -0.023529053, -0.03677368, 0.0069618225, 0.0010309219, 0.002811432, 0.03378296, 0.06329346, 0.00919342, -0.021591187, 0.05847168, 0.02027893, -0.024551392, 0.015510559, 0.014472961, 0.028839111, 0.03881836, -0.04849243, -0.064941406, -0.04940796, 0.105163574, -0.048431396, 0.027297974, -0.06298828, 0.0014657974, -0.039093018, 0.04800415, 0.023757935, -0.037628174, -0.012771606, 0.011421204, -0.043701172, 0.040802002, 0.008552551, -0.057281494, -0.008583069, 0.0015592575, -0.007457733, 0.008232117, 0.03930664, 0.001045227, 0.015037537, 0.008270264, 0.018157959, 0.011398315, 0.019042969, 0.002111435, 0.034057617, 0.0052757263, 0.04055786, -0.0138549805, -0.040283203, -0.025314331, 0.032043457, -0.05343628, 0.0049705505, 0.0060310364, 0.018157959, 0.012573242, 0.0065841675, 0.017181396, -0.028915405, 0.017654419, -0.019866943, -0.005176544, -0.008071899, 0.045684814, -0.0073432922, 0.019638062, 0.0027046204, 0.05227661, 0.065979004, -0.0025978088, 0.02809143, 0.047576904, 0.032470703, -0.034301758, -0.017166138, 0.013442993, -0.010925293, -0.013580322, 0.0035705566, 0.032684326, 0.020599365, 0.031311035, -0.007320404, -0.039001465, -0.028121948, 0.035217285, 0.015151978, 0.01966858, 0.03375244, -0.018951416, 0.024139404, 0.0067253113, 0.02734375, 0.0044403076, 0.018539429, -0.020462036, 0.07537842, 0.026992798, 0.024719238, 0.009803772, 0.04272461, 0.018829346, 0.04550171, -0.06530762, 0.018356323, 0.030792236, 0.06512451, -0.011108398, -0.010185242, -0.040374756, -0.029220581, 0.013641357, 0.033569336, -0.05557251, -0.040252686, 0.026428223, -0.019729614, -0.03112793, -0.008178711, 0.0703125, -0.026016235, -0.011856079, 0.032196045, -0.03265381, 0.0074539185, 0.032104492, -0.009307861, 0.0017137527, -0.013954163, 0.012214661, -0.009651184, 0.07946777, -0.013748169, 0.021057129, -0.021865845, 0.05722046, 0.037017822, -0.036315918, 0.0127334595, -0.0058288574, -0.021148682, 0.0033893585, -0.011543274, -0.010467529, -0.032958984, 0.011451721, 0.06100464, 0.028182983, -0.003156662, 0.035095215, 0.002910614, -0.0026931763, 0.028305054, 0.03010559, 0.02607727, -0.040802002, -0.034942627, -0.05419922, -0.029083252, -0.021026611, 0.042938232, -0.03579712, 0.0013809204, -0.02848816, -0.015792847, 0.022766113, -0.061920166, -0.028366089, -0.032287598, 0.01474762, 0.0024337769, -0.0012760162, -0.010322571, -0.024642944, -0.051086426, -0.031051636, 0.026351929, -0.0014514923, -0.024124146, -0.041137695, 0.015426636, 0.023513794, 0.006385803, -0.010726929, -0.0033016205, -0.003528595, -0.050048828, -0.012969971, -0.015357971, 0.0051498413, 0.026321411, -0.011291504, -0.0390625, -0.008644104, -0.055908203, 0.019058228, -0.02255249, -0.044311523, -0.014404297, 0.062164307, -0.02104187, -0.02067566, -0.034576416, -0.011833191, 0.002105713, 0.0047569275, -0.009468079, -0.042175293, -0.015365601, -0.024841309, 0.013954163, 0.016174316, -0.031982422, 0.013023376, 0.0026168823, 0.0016593933, 0.014892578, 0.0018491745, 0.0067214966, 0.011184692, 0.02017212, 0.013381958, -0.020523071, 0.04043579, -0.0005068779, 0.028717041, 0.0096206665, -0.059051514, -0.020065308, -0.0038318634, 0.014022827, -0.028717041, -0.01727295, -0.02468872, -0.019073486, -0.061279297, -0.0031795502, -0.0047569275, -0.034362793, 0.0024261475, -0.083496094, -0.03753662, -0.04852295, 0.007774353, 0.037231445, 0.030944824, -0.026290894, 8.1300735e-05, -0.031433105, -0.0014295578, -0.018707275, 0.013694763, 0.0021457672, 0.016067505, -0.044189453, -0.0045928955, -0.007545471, 0.009353638, 0.010536194, -0.03274536, 0.007183075, -0.011138916, 0.04333496, -0.0057411194, 0.0007266998, -0.004863739, -0.018295288, 0.016433716, 0.035369873, -0.02029419, 0.03262329, -0.031402588, -0.037506104, 0.01928711, -0.056152344, -0.05026245, 0.0058288574, 0.02482605, 0.030075073, -0.015930176, 0.013832092, 0.021942139, -0.044555664, -0.025238037, -0.0054740906, -0.02281189, -0.004470825, -0.006313324, 0.029296875, 0.0040893555, 0.09661865, 0.0143966675, 0.033111572, 0.015541077, -0.02116394, -0.022232056, -0.03878784, 0.049743652, 0.0031547546, -0.0063552856, 0.0009717941, -0.018463135, 0.002588272, -0.036621094, 0.025527954, -0.0021305084, 0.020385742, -0.026885986, -0.031463623, -0.013313293, -0.054779053, 0.03665161, 0.036987305, 0.0072669983, -0.04714966, -0.045898438, 0.016860962, -0.023025513, 0.08477783, 0.03552246, -0.004272461, 0.09106445, 0.037872314, 0.012832642, 0.032196045, 0.054779053, -0.018630981, 0.0066108704, 0.078430176, -0.0070495605, -0.001206398, 0.019927979, -0.059509277, 0.026397705, 0.017089844, -0.029327393, 0.040161133, 0.0041389465, -0.01751709, -0.0050964355, 0.024932861, -0.0018720627, -0.017730713, -0.008720398, -0.039978027, -0.023834229, -0.05923462, 0.0029201508, 0.032409668, -0.04748535, -0.052856445, -0.015701294, -0.015991211, -0.07550049, 0.039154053, -0.0119018555, 0.010177612, -0.028152466, 0.018615723, 0.029693604, 0.021240234, -0.05230713, 0.04864502, -0.037506104, 0.016235352, 0.0047950745, 0.030380249, -0.008338928, -0.01979065, 0.0181427, -0.0033950806, -0.007827759, 0.052947998, -0.015335083, -0.09863281, -0.0048675537, 0.033569336, 0.018127441, -0.05621338, 0.012107849, -0.030853271, 0.014465332, -0.0236969, -0.040374756, -0.015640259, -0.020874023, -0.0015172958, -0.036590576, -0.011192322, -0.029815674, -0.037506104, -0.042266846, 0.015060425, 0.003446579, -0.0018730164, 0.0073242188, 0.007587433, -0.035125732, 0.004081726, -0.025314331, 0.014816284, 0.0015611649, -0.028503418, 0.08642578, -0.06500244, 0.014854431, -0.015029907, 0.13549805, 0.002571106, 0.04522705, -0.05871582, -0.06329346, -0.040252686, 0.01436615, 0.06866455, -0.01763916, 0.06829834, -0.022598267, -0.062927246, -0.020095825, 0.009109497, 0.02961731, -0.02230835, -0.020889282, -0.008262634, 0.03363037, -0.014762878, 0.02029419, -0.00030732155, 0.0019416809, -0.014694214, -0.0062942505, -0.06549072, 0.0023612976, -0.0028705597, -0.01158905, 0.031341553, -0.007888794, -0.0021572113, 0.024368286, 0.06994629, 0.052947998, -0.020980835, -0.011024475, -0.009063721, 0.018112183, 0.041412354, -0.018310547, -0.009155273, -0.007987976, -0.023788452, -0.018234253, 0.050720215, 0.0035476685, 0.0059890747, -0.008628845, 0.010154724, -0.004421234, -0.08569336, -0.009216309, -0.045806885, -0.019058228, -0.037231445, -0.018676758, 0.026672363, -0.02017212, 0.020843506, 0.0074539185, -0.008125305, 0.006603241, 0.001540184, -0.005065918, -0.040771484, -0.017150879, 0.029953003, 0.014793396, -0.009376526, 0.011886597, -0.06604004, 0.025360107, -0.030685425, -0.008544922, 0.039123535, -0.0009698868, -0.0129852295, 0.04220581, -1.6570091e-05, -0.01399231, 0.009170532, -0.013282776, 0.030090332, -0.047058105, 0.0053596497, 0.02848816, 0.008361816, -0.046417236, 0.03933716, -0.022277832, 0.024215698, 0.03894043, -0.029922485, 0.047943115, 0.044525146, -0.019592285, 0.01977539, 0.016983032, -0.015640259, 0.039154053, 0.009025574, 0.0013208389, -0.059539795, 0.031143188, -0.0209198, -0.031555176, -0.028442383, -0.00440979, 0.013519287, 0.04284668, 0.0154800415, -0.03488159, 0.046417236, -0.0006098747, -0.03225708, 0.007358551, 0.04360962, -0.011558533, 0.006893158, 0.010047913, -0.03186035, -0.041778564, -0.033935547, -0.026901245, -0.0079574585, -0.040924072, 0.012191772, 0.009109497, 0.0071525574, 4.053116e-05, -0.02734375, 0.013648987, -0.024795532, -0.054351807, 0.010223389, 0.00749588, -0.0026187897, -0.0013246536, 0.022506714, 0.023376465, 0.0042419434, -0.0013227463, -0.0061454773, 0.02696228, 0.008934021, -0.0206604, 0.02859497, -0.026260376, -0.014656067, -0.012794495, -0.03652954, 0.0003478527, -0.013748169, -0.033172607, -0.017913818, 0.020553589, 0.05206299, -0.00541687, 0.012962341, 0.0501709, -0.04425049, 0.0006518364, -0.10369873, 0.034576416, -0.0101623535, -0.04373169, 0.061035156, 0.046905518, -0.0038795471, 0.029876709, -0.004497528, -0.04083252, 0.035888672, 0.013160706, -0.053009033, -0.02381897, -0.015945435, -0.00894928, -0.003894806, -0.03878784, -0.0018644333, 0.045532227, -0.010650635, -0.05078125, -0.013626099, -0.02420044, 0.026046753, -0.013130188, 0.002866745, -0.010925293, 0.016647339, -0.006515503, 0.046783447, -0.029769897, -0.04107666, 0.008773804, 0.02520752, 0.0104904175, 0.004508972, -0.0019187927, 0.02017212, -0.026184082, 0.041992188, 0.0008883476, -0.0016269684, 0.0109939575, 0.016830444, -0.016159058, 0.031707764, -0.066467285, 0.0029010773, -0.026351929, -0.0053901672, 0.01966858, 0.021743774, -0.013008118, 0.023590088, 0.019714355, 0.025299072, 0.019561768, 0.016784668, 0.031433105, -0.017868042, -0.034484863, -0.0038394928, -0.011688232, -0.033935547, -0.05328369, -0.024963379, -0.038726807, 0.00945282, 0.005138397, 0.0010614395, 0.0070228577, 0.020309448, 0.030212402, -0.013145447, 0.02381897, 0.012901306, -0.0007543564, -0.0231781, -0.07763672, 0.032440186, 0.0012407303, -0.01524353, 0.0021800995, 0.0340271, -0.005001068, 0.016113281, 0.0038223267, 0.044433594, -0.060333252, 0.034606934, 0.020523071, -0.04916382, -0.010574341, 0.019760132, 0.022964478, 0.00090932846, -0.068603516, -0.021118164, -0.013938904, -0.006210327, 0.025741577, -0.00056123734, 0.056152344, 0.023910522, -0.019454956, 0.0046424866, -0.016998291, -0.040100098, 0.016998291, 0.011207581, 0.016464233, 0.00484848, -0.007411957, -0.0104599, 0.059448242, -0.04309082, 0.028717041, -0.028060913, 0.026031494, -0.055114746, 0.01802063, -0.010604858, -0.036346436, -0.0113220215, 0.005504608, 0.021530151, 0.045440674, -0.018844604, 0.044189453, 0.0418396, -0.026565552, 0.0446167, -0.06365967, 0.05807495, 0.03491211, 0.03591919, -0.03829956, -0.036315918, -0.0054473877, -0.013084412, 0.017822266, 0.0107803345, 0.0037250519, 0.060058594, 0.0014743805, 0.036224365, 0.032409668, -0.038604736, 0.027267456, 0.019454956, -0.01802063, 0.037353516, 0.061920166, 0.005279541, 0.01436615, -0.0023651123, 0.0042152405, 0.023773193, 0.049804688, 0.022735596, 0.022827148, -0.011276245, -0.016235352, -0.05645752, 0.04852295, -0.021209717, 0.027572632, -0.041381836, 0.032043457, -0.0093688965, -0.02029419, -0.048034668, -0.017211914, -0.029083252, 0.036468506, 0.010810852, -0.028640747, -0.023635864, -0.0037651062, 0.064086914, -0.060699463, 0.01838684, -0.009361267, 0.0209198, 0.00051403046, 0.067993164, -0.053344727, -0.06854248, -0.027618408, 0.03857422, -0.09844971, -0.0463562, 0.016098022, -0.004550934, 0.009490967, -0.008781433, -0.002248764, 0.038848877, 0.03842163, -0.014465332, 0.009994507, -0.030807495, -0.0050239563, 0.023712158, -0.0017089844, -0.025558472, -0.03677368, 0.0077667236, -0.0017337799, 0.022201538, 0.016799927, -0.017044067, -0.028762817, 0.02279663, 0.032714844, 0.014625549, -0.04232788, 0.031555176, -0.04159546, -0.004180908, -0.03540039, -0.04559326, -0.010009766, 0.021987915, 0.018081665, 0.004989624, 0.05001831, 0.020095825, -0.062286377, -0.0032672882, -0.036193848, -0.0061683655, 0.03869629, 0.0052223206, -0.0046844482, 0.027908325, -0.03186035, 0.030761719, 0.02305603, -0.017425537, 0.017974854, -0.0118637085, 0.018600464, -0.0065307617, -0.005138397, 0.054901123, -0.0029888153, -0.042266846, -0.0129852295, -0.034820557, -0.0022354126, -0.050048828, -0.039093018, 0.027557373, -0.06713867, -0.04574585, -0.005973816, -0.025299072, -0.009529114, 0.008613586, 0.004840851, 0.04232788, -0.0048332214, -0.017227173, -0.006626129, 0.00459671, 0.006668091, 0.005634308, -0.038116455, 0.033599854, -0.008598328, 0.032806396, -0.048980713, -0.04748535, -0.03543091, 0.0041122437, 0.021331787, 0.013954163, 0.07055664, -0.014129639, 0.00054216385, -0.0049438477, -0.07373047, -0.029251099, -0.004459381, 0.035583496, -0.03387451, 0.013839722]}, "B01I32H5QI": {"id": "B01I32H5QI", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch\nDescription: This product is a 12\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
      Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
      Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
      Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.\nFeatures: Fire Pit Burner Ring, Diameter 12-inch\nRing Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "metadata": {"Name": "Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch", "Brand": "Stanbroil", "Description": "This product is a 12\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
      Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
      Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
      Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.", "Features": "Fire Pit Burner Ring, Diameter 12-inch\nRing Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029190063, 0.0046195984, -0.0769043, -0.041900635, -0.0043296814, -0.019714355, -0.031585693, 0.030715942, -0.051116943, -0.004142761, -0.0022449493, 0.036743164, -0.036010742, -0.036224365, 0.031173706, -0.060302734, 0.006931305, 0.012756348, 0.01638794, -0.0446167, 0.024047852, -0.044555664, 0.018569946, 0.101867676, 0.023956299, -0.024154663, 0.013679504, -0.0019016266, 0.021209717, 0.008422852, 0.025161743, -0.016143799, 0.066101074, 0.009735107, -0.06390381, -0.04598999, -0.024154663, -0.01600647, -0.062927246, 0.03579712, -0.0033454895, 0.0055007935, 0.025939941, -0.017532349, 0.0012369156, -0.0390625, 0.01991272, -0.049438477, 0.0017127991, 0.005458832, 0.019195557, 0.018936157, 0.0149383545, -0.016296387, -0.012901306, 0.016326904, 0.008735657, -0.0152282715, -0.011566162, 0.015701294, 0.004512787, 0.044128418, 0.010810852, 0.007270813, -0.054870605, 0.005958557, 0.064331055, -0.020339966, -0.01776123, -0.06210327, 0.014038086, 0.026794434, 0.035705566, 0.0045204163, -0.0063552856, -0.0063934326, 0.02684021, 0.0463562, 0.016662598, -0.004989624, -0.016082764, -0.0032424927, 0.03765869, -0.010681152, -0.020889282, -0.013267517, -0.030212402, -0.0054473877, -0.036254883, -0.038482666, -0.028564453, 0.013801575, -0.032989502, -0.0158844, -0.041931152, 0.012039185, -0.048217773, -0.097717285, 0.041625977, -0.00061273575, 0.03567505, -0.04348755, 0.0206604, 0.0234375, 0.0013084412, 0.0473938, 0.01222229, 0.032989502, 0.008026123, -0.004524231, -0.0032463074, -0.02507019, -0.004283905, -0.052459717, 0.008041382, 0.036621094, -0.010360718, 0.028030396, 0.023376465, -0.011360168, -0.027740479, 0.009101868, -0.022094727, 0.014556885, 0.009941101, 0.019042969, -0.00079393387, -0.008926392, -0.0005788803, 0.039916992, -0.0064048767, -0.028747559, 0.0007662773, 0.06021118, 0.00920105, -0.008758545, 0.00598526, -0.0063209534, 0.02229309, -0.012168884, 0.009147644, -0.031341553, 0.026046753, 0.004863739, -0.0034770966, 0.033355713, 0.012954712, -0.032836914, 0.013824463, 0.0018033981, -0.06762695, -0.029800415, 0.01927185, 0.04638672, -0.03137207, 0.03366089, -0.0041046143, 0.014862061, -0.020935059, -0.011184692, -0.0015678406, -0.017837524, -0.042175293, -0.0076179504, -0.03466797, 0.022216797, 0.028762817, 0.0018625259, 0.011238098, 0.011299133, 0.014732361, 0.042663574, -0.010360718, -0.010406494, 0.0028381348, -0.024383545, 0.0127334595, 0.109313965, 0.024047852, -0.07952881, -0.04296875, -0.058898926, 0.17468262, -0.08166504, -0.0064811707, -0.03857422, 0.016799927, -0.02709961, 0.00059080124, 0.0004580021, 0.06933594, 0.008003235, -0.021881104, -0.03173828, 0.02357483, 0.0049705505, -0.0064735413, 0.0010585785, 0.0048103333, -0.020721436, -0.042816162, -0.0062828064, 0.0127334595, 0.03668213, 0.030822754, -0.0016775131, 0.004924774, 0.0008163452, -0.0140686035, 0.0026054382, 0.0012865067, -0.0033550262, -0.0067977905, -0.023162842, -0.016021729, 0.011047363, -0.018341064, -0.019226074, -0.008049011, -0.0050811768, -0.0029411316, -0.015716553, -0.007106781, 0.010368347, 0.02960205, 0.0033340454, -0.026550293, -0.01876831, 0.0016670227, 0.0055656433, -0.03491211, 0.048095703, 0.044311523, 0.070251465, -0.02520752, 0.026672363, 0.027893066, 0.058044434, -0.025650024, -0.029449463, 0.0206604, -0.00092220306, -0.0077209473, 0.021728516, 0.015701294, -0.0061187744, 0.0090789795, 0.0026855469, 0.00071430206, 0.046051025, 0.03540039, 0.009223938, 0.02053833, 0.0635376, -0.022964478, 0.015144348, -0.01651001, -0.01965332, -0.016601562, 0.024230957, -0.0031585693, 0.022872925, 0.0033245087, -0.0019254684, 0.057556152, -0.024887085, 0.041412354, 0.029144287, -0.013069153, -0.0076675415, -0.0033912659, 0.009803772, 0.0017232895, 0.0009737015, -0.03842163, 0.023925781, -0.001490593, 0.018066406, -0.017669678, -0.010719299, -0.03591919, -0.021133423, 0.010673523, -0.028167725, 0.023971558, 0.010826111, 0.025268555, -0.04864502, -0.028167725, -0.02911377, 0.016342163, -0.01260376, -0.043823242, 0.013465881, -0.02394104, -0.041656494, 0.078125, -0.04107666, 0.034942627, -0.027618408, 0.04031372, 0.035491943, -0.02633667, 0.000934124, -0.007030487, -0.013961792, -0.017181396, 0.015281677, -0.004398346, -0.052459717, 0.005065918, 0.016616821, 0.017242432, 0.0014362335, 0.049438477, 0.035308838, -0.009292603, 0.05255127, 0.064697266, 0.08459473, 0.012916565, -0.005596161, -0.0044517517, -0.0041007996, 0.0028572083, -0.014953613, 0.006465912, -0.011108398, -0.019515991, -0.0146865845, 0.008888245, -0.025009155, -0.022338867, 0.033233643, 0.016555786, 0.009552002, 0.024627686, 0.018508911, 0.0047836304, -0.059051514, 0.010215759, 0.0146102905, -0.0059814453, 0.029022217, -0.088256836, -0.0033435822, 0.04034424, -0.00969696, -0.07537842, -0.016036987, 0.07659912, -0.021087646, -0.0184021, -0.017837524, 0.0052948, 0.01977539, -0.0034942627, -0.036071777, 0.011871338, -0.083740234, 0.030288696, 0.0011663437, -0.005569458, -0.03338623, 0.017059326, -0.034362793, -0.041534424, -0.0206604, -0.04107666, -0.027252197, 0.021224976, -0.047180176, -0.04937744, -0.02809143, -0.024490356, 0.018737793, 0.07635498, -0.006942749, -6.5267086e-05, 0.03604126, 0.031829834, 0.037719727, -0.05117798, -0.0018434525, 0.050476074, 0.03237915, 0.06274414, 0.00021851063, 0.04788208, -0.010734558, -0.0039138794, -0.034301758, -0.07867432, -0.026870728, -0.021530151, 0.012390137, 0.012680054, -0.031082153, -0.002084732, -0.026855469, -0.12524414, 0.054534912, -0.019195557, -0.007911682, -0.0062179565, -0.068603516, -0.047912598, -0.078186035, 0.014892578, 0.0010318756, -0.0079193115, 0.037750244, -0.037017822, 0.05303955, -0.0039863586, -0.02960205, -0.046569824, -0.006378174, -0.04888916, 0.029037476, 0.05218506, -0.07305908, 0.011672974, 0.029647827, -0.028945923, -0.032470703, 0.028793335, 0.03817749, -0.017593384, 0.01776123, 0.0021305084, -0.035064697, -0.021133423, -0.016204834, -0.008041382, 0.0024757385, 0.0065460205, -0.00033974648, 0.02609253, -0.023590088, -0.0309906, -0.032836914, -0.0019569397, 0.008743286, -0.024139404, 0.017410278, -0.038757324, -0.020858765, -0.022949219, -0.026565552, 0.0031661987, 0.009635925, 0.008987427, 0.0076408386, -0.008430481, 0.043182373, 0.060028076, 0.044281006, -0.008117676, 0.030166626, 0.027618408, -0.021530151, 0.020065308, 0.017074585, 0.0063095093, -0.014587402, 0.01977539, 0.040740967, 0.0019407272, 0.003648758, 0.024673462, 0.028320312, 0.008491516, 0.0129470825, 0.011909485, 0.04421997, -0.0040016174, -0.03286743, 0.0018854141, 0.020980835, -0.07989502, 0.021911621, -0.035247803, 0.04309082, 0.01751709, -0.0071640015, 0.07324219, 0.042785645, -0.0178833, 0.025100708, 0.004383087, -0.0027179718, -0.00058841705, 0.029251099, -0.035491943, 0.018188477, -0.002380371, -0.025878906, 0.036346436, 0.025726318, -0.0031337738, -0.00039052963, -0.0128479, -0.057434082, 0.0231781, 0.00894165, 0.012084961, 0.006515503, -0.011123657, 0.011634827, 0.0023975372, -0.03829956, -0.0022392273, 0.020812988, -0.02633667, -0.015556335, 0.019210815, 0.03338623, -0.046783447, -0.019561768, 0.010040283, 0.01159668, -0.0017156601, 0.056762695, -0.009422302, -0.0074539185, -0.029586792, -0.026550293, 0.008720398, 0.049835205, 0.03189087, -0.0048942566, 0.048614502, -0.026275635, -0.018173218, -0.033477783, -0.0065956116, 0.054351807, -0.010055542, -0.06878662, -0.032318115, 0.013969421, 0.05291748, -0.0395813, -0.02458191, -0.0045700073, -0.0015964508, -0.011947632, -0.0015192032, -0.0635376, 0.03277588, 0.064819336, -0.06878662, -0.049743652, -0.008575439, 0.003118515, -0.015975952, -0.002084732, -0.0023841858, -0.01499176, 0.0035057068, 0.007133484, -0.08972168, 0.050323486, -0.04220581, -0.033325195, 0.078308105, 0.018661499, 0.039978027, -0.04660034, 0.002822876, -0.019882202, 0.054138184, -0.009880066, 0.013092041, -0.034118652, -0.002325058, -0.0061302185, -0.0058021545, -0.034332275, 0.0018138885, 0.0077285767, 0.00749588, -0.033416748, -0.049804688, 0.0066833496, 0.015701294, 0.0021686554, -0.032684326, -0.010375977, 0.051483154, -0.016082764, 0.011024475, 0.034332275, 0.007259369, 0.014503479, -0.016082764, -0.09197998, -0.0043678284, -0.008178711, -0.06008911, 0.007160187, -0.017425537, -0.012496948, 0.0982666, 0.07714844, 0.0055656433, -0.012107849, -0.014022827, -0.010902405, -0.018234253, -0.0154800415, 0.012680054, 0.015655518, -0.003408432, -0.020050049, -0.046447754, 0.048065186, 0.019592285, -0.027069092, -0.01789856, 0.0023155212, -0.021377563, -0.047668457, -0.009353638, 0.025924683, 0.05569458, -0.011390686, -0.05239868, -0.0018863678, -0.05682373, -0.011962891, -0.024856567, -0.0012521744, 0.0046691895, -0.0035247803, -0.02407837, -0.012397766, -0.011451721, -0.008850098, 0.015579224, 0.009208679, 0.004627228, 0.0158844, 0.0077438354, 0.008171082, 0.028060913, 0.004055023, -0.015808105, 0.012031555, -0.007007599, 0.0005135536, 0.017089844, 0.0012636185, -0.019241333, 0.03326416, -0.040863037, 0.015945435, 0.017654419, -0.03375244, -0.07067871, -0.0063972473, 0.024597168, -0.0048217773, 0.017410278, -0.0043792725, 0.038970947, 0.025421143, -0.0052223206, -0.007270813, 0.008155823, 0.011131287, 0.05834961, 0.010353088, 0.038757324, -0.0035190582, 0.03161621, -0.005935669, 0.010421753, -0.04989624, 0.010551453, -0.04586792, -0.011367798, 0.0050697327, -0.0031776428, 0.055725098, -0.032196045, -0.051696777, 0.004173279, -0.012054443, -0.018936157, 0.013702393, -0.004142761, -0.026229858, -0.013008118, -0.009536743, -0.012702942, 0.027145386, -0.0035362244, -0.02532959, 0.016815186, 0.015625, -0.019592285, -0.0065345764, 0.0062713623, -0.0028038025, 0.0062026978, -0.06933594, 0.012817383, -0.012489319, -0.040374756, 0.03164673, 0.023422241, 0.0140686035, -0.03604126, -0.032165527, -0.018005371, 0.013801575, -0.007461548, 0.043060303, -0.019699097, -0.008705139, 0.015090942, 0.012939453, 0.03665161, -0.032348633, -0.040985107, -0.038208008, 0.0043563843, 0.0066986084, 0.01436615, -0.040924072, 0.045043945, -0.013320923, -0.037902832, -0.030532837, 0.035888672, 0.0009226799, -0.060180664, 0.09680176, 0.037017822, 0.010955811, 0.015823364, -0.024627686, -0.01524353, -0.015640259, -0.010772705, -0.05328369, -0.010276794, -0.023513794, 0.03643799, -0.008506775, -0.0209198, -0.017333984, 0.025436401, -0.012435913, -0.008079529, 0.010139465, -0.012420654, 0.003232956, -0.012039185, 0.0014009476, -0.02394104, -0.003414154, -0.031204224, -0.022338867, -0.037261963, -0.033294678, -0.022399902, 0.021270752, 0.012039185, -0.020309448, -0.013145447, -0.042633057, 0.0146102905, 0.04800415, 0.050354004, -0.06591797, -0.008796692, 0.0013875961, 0.0011148453, -0.011619568, -0.064697266, 0.0140686035, -0.012207031, 0.018325806, 0.03149414, 0.005672455, -0.015098572, -0.0067634583, 0.054534912, 0.014198303, -0.0023765564, 0.019470215, 0.0513916, 0.013824463, -0.07208252, -0.01763916, 0.0069007874, -0.051086426, 0.0070343018, -0.030670166, -0.026657104, -0.004852295, -0.032684326, 0.0016365051, -0.022659302, 0.035827637, -0.027618408, -0.03387451, 0.022918701, -0.04837036, -0.0022583008, -0.020050049, 0.011711121, -0.018249512, -0.0060424805, -0.01927185, 0.025299072, -0.044555664, 0.014007568, 0.06518555, 0.020370483, -0.027191162, 0.0018129349, -0.020629883, 0.03881836, -0.03704834, 0.011146545, -0.017562866, -0.019088745, -0.02659607, -0.05633545, -0.007926941, -0.010215759, 0.02406311, 0.006214142, 0.040527344, 0.0015697479, 0.018417358, -0.0036830902, 0.018630981, -0.018981934, -0.023880005, 0.010643005, -0.014198303, 0.014274597, -0.0054969788, 0.0024662018, 0.019805908, 0.04034424, 0.0023956299, 0.004131317, -0.030685425, 0.032714844, 0.006465912, 0.01071167, -0.03186035, -0.0013837814, 0.0041770935, -0.015289307, 0.017700195, 0.0041999817, 0.0129852295, 0.036346436, -0.006919861, -0.003993988, 0.02079773, -0.040222168, 0.01953125, 0.015777588, -0.016784668, -0.059417725, -0.044525146, -0.0066566467, -0.031066895, 0.0009121895, 0.025009155, 0.017623901, 0.026397705, 0.00051164627, 0.015625, 0.018066406, -0.033325195, 0.008155823, 0.013580322, -0.007183075, 0.013664246, 0.010360718, -0.014450073, 0.01133728, -0.008506775, 0.0039253235, 0.014305115, -0.010719299, -0.022567749, 0.022338867, 0.0040283203, -0.043151855, 0.0065727234, 2.2053719e-06, -0.05923462, 0.039916992, -0.05319214, -0.008110046, -0.04147339, -0.07116699, -0.015792847, -0.0385437, -0.05947876, 0.066589355, -0.0071792603, -0.03491211, -0.023406982, 0.008560181, -0.028625488, -0.019714355, -0.015296936, 0.014770508, 0.03543091, -0.00029969215, 0.018829346, -0.0158844, -0.06109619, -0.011245728, 0.05419922, -0.04837036, -0.07336426, 0.00020182133, 0.023422241, 0.04232788, 0.006008148, -0.0007991791, 0.020812988, 0.023727417, -0.010910034, -0.008552551, -0.06982422, -0.006439209, 0.03933716, 0.0005235672, -0.024551392, -0.064331055, 0.022872925, 0.027420044, 0.011001587, 0.0053482056, 0.021987915, -0.084228516, 0.0061187744, -0.02557373, 0.038635254, -0.020095825, -0.00017404556, 0.029449463, 0.018493652, -0.025863647, 0.04925537, 0.019561768, 0.039001465, 0.039978027, -0.0029296875, 0.011474609, -0.023880005, -0.06173706, -0.03302002, -0.032684326, 0.026473999, 0.014526367, -0.0317688, -0.01524353, 0.011062622, -0.003276825, -0.021255493, 0.022232056, 0.009803772, 0.05706787, -0.012687683, 0.006790161, 0.041503906, -0.062042236, 0.02734375, -0.00995636, -0.020706177, 0.024749756, 0.016616821, -0.029571533, -0.010543823, -0.038635254, 0.009315491, -0.017440796, -0.053100586, -0.03289795, -0.04901123, -0.0019254684, 0.028945923, -0.025665283, 0.052093506, 0.0011920929, -0.012626648, -0.008636475, 0.020523071, 0.00022852421, 0.021621704, -0.04611206, 0.07495117, -0.0038032532, 0.09472656, -0.041015625, -0.056884766, -0.059295654, 0.021591187, 0.0036258698, 0.006046295, 0.045043945, 0.00409317, 0.022369385, 0.027191162, -0.02305603, 0.0032577515, -0.0121154785, 0.08068848, -0.025466919, 0.0046806335]}, "B07ZQBMV2Y": {"id": "B07ZQBMV2Y", "original": "Brand: Mont Alpi\nName: Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV\nDescription: Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...\nFeatures: All components are constucted of 304 stainless steel for durability and longevity\nLarge storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank\nHeight adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans\nFaux-granite counter tops for prep and storage space while looking stylish\nIncludes built-in sink and outdoor refrigerator for added functionality and entertainment value\n", "metadata": {"Name": "Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV", "Brand": "Mont Alpi", "Description": "Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...", "Features": "All components are constucted of 304 stainless steel for durability and longevity\nLarge storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank\nHeight adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans\nFaux-granite counter tops for prep and storage space while looking stylish\nIncludes built-in sink and outdoor refrigerator for added functionality and entertainment value", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.021331787, -0.008659363, -0.07525635, 0.014228821, -0.016540527, -0.033721924, -0.0049209595, 0.010444641, 0.013931274, -0.011703491, -0.033966064, -0.0010709763, 0.0029678345, -0.021865845, 0.011703491, -0.044433594, 0.012496948, 0.050567627, 0.046020508, -0.017715454, -9.62019e-05, -0.00705719, 0.021972656, 0.051086426, 0.01802063, -0.0038452148, -0.025115967, 0.047546387, -0.008300781, 0.0020580292, 0.015838623, 0.009338379, 0.0077705383, 0.041229248, -0.019592285, -0.011695862, -0.00034618378, 0.014312744, -0.016845703, 0.02960205, 0.001036644, 0.009979248, -0.019332886, -0.008796692, -0.026016235, -0.03265381, 0.0038585663, -0.016036987, 0.0067634583, 0.025299072, 0.026947021, -0.0072898865, 0.026794434, -0.033111572, -0.020233154, 0.0029182434, 0.04345703, 0.015068054, -0.001543045, -0.024459839, -0.027008057, 0.045043945, 0.017364502, 0.019683838, -0.0579834, 0.014854431, 0.05734253, -0.012138367, -0.016235352, -0.071777344, 0.006828308, 0.031280518, -0.004207611, -0.0025978088, -0.01348114, 0.011497498, 0.021209717, 0.027679443, 0.010627747, 0.009963989, 0.003829956, 0.017227173, 0.03842163, -0.028442383, 0.012916565, -0.012130737, -0.024658203, -0.010070801, -0.03112793, -0.01675415, -0.0107803345, -0.049224854, -0.0602417, 0.03604126, 0.023223877, -0.017852783, -0.042175293, -0.051513672, 0.012718201, 0.06008911, 0.030166626, -0.045776367, 0.07397461, -0.02041626, -0.034606934, 0.029663086, 0.054382324, 0.015357971, -0.025054932, -0.010070801, -0.026229858, 0.0022697449, 0.009048462, -0.03564453, 0.00045776367, 0.018218994, -0.0048446655, 0.0043029785, 0.019012451, -0.035705566, -0.04510498, -0.043395996, -0.010604858, 0.042541504, 0.022369385, 0.025497437, 0.008872986, 0.038513184, -0.07727051, 0.03704834, -0.009002686, -0.008666992, 0.011665344, 0.066467285, 0.007858276, -0.021499634, 0.025726318, 0.02658081, 0.009857178, -0.011260986, 0.024047852, -0.005874634, 0.014587402, 0.014801025, -0.032592773, 0.007549286, 0.024902344, 0.014556885, -0.0345459, -0.061187744, 0.003643036, -0.0012216568, 0.015312195, 0.01940918, -0.017349243, 0.041809082, 0.013389587, 0.014709473, -0.049682617, -0.012420654, -0.015945435, -0.01977539, -0.011940002, -0.053710938, -0.081604004, 0.035736084, -0.021759033, -0.004535675, 0.024673462, 0.009239197, -0.0066604614, -0.017532349, 0.00166893, 0.034118652, 0.0024738312, 0.04083252, -0.040496826, 0.021438599, 0.061401367, -0.057861328, -0.051971436, -0.037628174, 0.09906006, -0.027923584, -0.038024902, 0.026397705, -0.008460999, 0.043121338, 0.03488159, 0.0087890625, 0.0077590942, -0.005218506, -0.010482788, -0.0127334595, 0.014190674, 0.012939453, -0.054656982, 0.016418457, -0.013946533, -0.018997192, -0.01777649, 0.004611969, -0.023635864, 0.0289917, 0.004760742, -0.01423645, 0.013168335, 0.006427765, 0.033996582, 0.046295166, -0.011138916, 0.017730713, 0.013160706, -0.076660156, -0.018203735, 0.0010538101, -0.022857666, 0.024505615, -0.00068950653, 0.039611816, 0.015037537, -0.028457642, 0.020751953, 0.008262634, 0.030014038, 0.0061798096, -0.011528015, 0.0045700073, 0.040985107, 0.056732178, -0.059265137, -0.020828247, 0.06390381, 0.00080156326, -0.044281006, 0.046875, 0.03451538, 0.027374268, -0.043914795, -0.007762909, 0.008239746, -0.004688263, 0.0011339188, 0.049804688, -0.010749817, -0.0023021698, 0.02607727, 0.016464233, -0.034698486, -0.08074951, 0.038360596, -0.026306152, 0.04257202, -0.027374268, 0.016220093, 0.024719238, -0.015289307, -0.04876709, -0.023422241, 0.04675293, 0.004142761, 0.028961182, -0.0047683716, 0.0050811768, 0.03781128, 0.049682617, 0.048065186, 0.048858643, -0.051483154, 0.047729492, 0.009414673, 0.019424438, -0.0018348694, 0.0047721863, 0.004131317, -0.03149414, -0.03164673, 0.02760315, -0.013664246, -0.024765015, -0.013671875, -0.016952515, -0.016647339, -0.009880066, 0.048461914, 0.025894165, 0.011383057, -0.036895752, -0.0395813, -0.007663727, 0.009162903, 0.016296387, -0.016098022, -0.00737381, 0.002204895, -0.0048713684, 0.014732361, 0.009963989, 0.01499176, -0.02142334, -0.0085372925, 0.0340271, -0.0513916, 0.01159668, 0.003643036, 0.01727295, 0.03213501, 0.02243042, 0.018157959, -0.045135498, 0.055603027, 0.03842163, 0.02835083, 0.0018177032, 0.050872803, -0.0041122437, 0.0036258698, 0.038513184, 0.016311646, 0.0056991577, 0.0007839203, 0.002248764, -0.045776367, -0.018676758, 0.0071411133, 0.027770996, -0.051818848, -0.015975952, 0.0029239655, -0.01914978, 0.0211792, -0.026794434, -0.008232117, -0.013587952, -0.0010261536, -0.011100769, 0.013252258, 0.0065193176, -0.00844574, -0.039398193, -0.005580902, -0.017913818, -0.02268982, -0.026107788, -0.030395508, -0.012260437, 0.026275635, 0.0058174133, -0.034606934, -0.0029830933, 0.009124756, -0.011802673, -0.0022602081, -0.007411957, -0.008300781, -0.04425049, -0.0018978119, -0.013259888, -0.0357666, -0.045928955, -0.007286072, -0.03866577, -0.07055664, -0.009803772, 0.06768799, 0.009986877, -0.039367676, -0.022918701, 0.004714966, 0.015312195, 0.039367676, -0.010360718, -0.041015625, -0.0231781, -0.016311646, -0.025466919, 0.05706787, -0.021987915, -0.05529785, -0.001619339, 0.014953613, 0.013381958, -0.031951904, -0.03930664, 0.030044556, 0.016693115, 0.022994995, 0.041107178, 0.017318726, -0.008071899, 0.0026454926, 0.01953125, -0.027923584, -0.009155273, 0.03277588, 0.015014648, -0.0050315857, -0.004337311, -0.059143066, -0.012672424, -0.08062744, 0.0072669983, 0.009666443, -0.03665161, 0.00737381, -0.04232788, -0.049621582, -0.047698975, 0.01902771, 0.013023376, -0.01789856, -0.0032157898, -0.020736694, -0.014892578, -0.010925293, -0.004009247, 0.037750244, -0.0044517517, 0.02558899, -0.06222534, 0.015563965, -0.036193848, 0.03451538, 0.012329102, -0.052368164, 0.010437012, -0.023391724, 0.03387451, -0.00680542, 0.029266357, -0.02154541, 0.000120937824, 0.0014734268, 0.04071045, -0.02571106, 0.032928467, 0.021697998, -0.036590576, 0.07299805, -0.059906006, -0.04788208, 0.0024681091, -0.01071167, -0.017578125, -0.04232788, -0.019561768, 0.037231445, -0.035003662, 0.030517578, -0.024291992, -0.011924744, -0.0047721863, 0.051361084, 0.017654419, -0.0005226135, 0.06561279, 0.011390686, 0.044952393, 0.035461426, -0.007171631, 0.0050697327, -0.038848877, 0.035247803, 0.034118652, -0.02357483, -0.019638062, 0.026519775, 0.014846802, -0.028671265, -0.005645752, -0.030059814, 0.056396484, 0.027740479, -0.0070610046, -0.027694702, -0.047729492, 0.051513672, 0.050720215, -0.04751587, -0.0713501, -0.048858643, -0.0036239624, -0.09069824, 0.087402344, 0.05441284, -0.015434265, 0.08294678, 0.08483887, -0.027557373, 0.037841797, 0.047454834, 0.0067634583, -0.018829346, 0.067993164, -0.045318604, -0.0067634583, 0.009010315, 0.048950195, 0.025115967, 0.0050239563, -0.05987549, 0.0025291443, 0.0026836395, -0.030014038, -0.035217285, 0.031341553, 0.014785767, -0.026947021, 0.011352539, -0.035461426, -0.0491333, -0.056396484, -0.022064209, 0.0010681152, -0.048461914, -0.01914978, -0.025360107, -0.053955078, -0.032928467, 0.02407837, -0.0031757355, 0.00623703, -0.007835388, 0.013549805, 0.026855469, 0.026245117, -0.02897644, 0.03479004, 0.006248474, 0.007041931, 0.014038086, 0.011268616, 0.033996582, 0.014770508, -0.024383545, -0.019348145, 0.0014467239, 0.013946533, -0.03878784, -0.046783447, -0.01448822, 0.029937744, 0.044647217, -0.025756836, 0.0012731552, -0.057891846, 0.007030487, -0.027633667, -0.0072250366, -0.050720215, 0.013130188, 0.028762817, -0.019638062, -0.006290436, -0.027679443, -0.034454346, -0.044036865, 0.0132369995, 0.0056419373, 0.0035095215, 0.0004925728, 0.018356323, -0.056243896, 0.012771606, -0.07086182, -0.0079956055, 0.055725098, 0.02720642, 0.080566406, -0.022033691, -0.025299072, -0.05053711, 0.06347656, -0.010574341, 0.0071754456, -0.06036377, -0.020080566, -0.0007891655, 0.024780273, 0.06591797, -0.021728516, 0.05102539, -0.012420654, 0.009056091, -0.019836426, -0.020629883, 0.032958984, 0.00029945374, -0.006290436, -0.012649536, 0.055847168, -0.030136108, 0.033325195, 0.01914978, -0.019500732, -0.041412354, 0.009788513, -0.055541992, 0.012145996, -0.0039711, 0.01020813, 0.0010795593, -0.015533447, -0.01737976, -0.0061187744, 0.016525269, 0.06427002, -0.05810547, -0.01687622, 0.0010948181, -0.0045928955, 0.039733887, -0.029525757, -0.013977051, -0.006679535, -0.017959595, -0.052001953, 0.07562256, 0.06439209, 0.013366699, 0.0057525635, -0.006011963, -0.006664276, -0.058776855, 0.00944519, 0.021072388, -0.028213501, -0.0046463013, -0.01966858, 0.009567261, -0.014961243, -0.016174316, -0.005382538, -0.009765625, 0.019058228, 0.02078247, -0.006412506, -0.029922485, -0.02456665, 0.037902832, 0.00055217743, 0.022537231, 0.02619934, -0.05734253, 0.06542969, -0.03616333, -0.027557373, 0.031433105, -0.005607605, -0.03451538, 0.0022449493, 0.0074310303, -0.009132385, -0.008117676, 0.017166138, -0.029342651, -0.0033302307, 0.018081665, -0.017837524, -0.033416748, -0.059783936, -0.03488159, 0.016403198, -0.038909912, 0.008514404, 0.024856567, -0.0030441284, 0.078125, -0.04046631, 0.075683594, 0.039733887, 0.014953613, 0.022216797, -0.0340271, -0.0016517639, -0.047302246, 0.031677246, -0.0026302338, 0.01335144, -0.080200195, 0.023956299, 0.006324768, 0.030670166, 0.0066833496, -0.027618408, 0.04852295, -0.064819336, -0.023208618, -0.0021476746, 0.091796875, -0.033172607, -0.018325806, 0.039886475, -0.025405884, -0.09094238, -0.010406494, 0.0033550262, 0.025558472, -0.01828003, -0.039031982, 0.033050537, 0.02357483, -0.03250122, -0.00012493134, -0.004688263, 0.006881714, 0.007865906, -0.009056091, 0.006969452, -0.0101623535, 0.0074539185, 0.03125, -0.0077552795, 0.0039596558, 0.0072898865, -0.008857727, -0.0018463135, -0.021835327, -0.039489746, 0.034057617, -0.025100708, 0.024520874, 0.027862549, -0.008117676, 0.020645142, 0.02508545, -0.06359863, -0.005344391, 0.0020008087, 0.0015497208, 0.0015220642, 0.016738892, 0.07171631, -0.035614014, -0.051452637, -0.02897644, 0.058380127, -0.016967773, -0.025299072, 0.08520508, -0.0019483566, 0.029769897, 0.007041931, -0.012588501, -0.04574585, 0.02973938, 0.032409668, -0.13220215, -0.023666382, -0.0113220215, 0.014457703, -0.03756714, -0.053863525, -0.01701355, 0.034210205, -0.010955811, -0.051605225, 0.0015640259, -0.04309082, 0.033050537, -0.046966553, 0.00070619583, 0.0027122498, -0.02482605, -0.02330017, -0.045715332, -0.07678223, 0.024627686, 0.012229919, 0.015136719, 0.022369385, -0.02607727, 0.024887085, 0.012001038, 0.0020332336, 0.03213501, -0.006084442, 0.010635376, 0.0107803345, 0.0051231384, -0.026382446, 0.047668457, -0.0049552917, 0.010620117, -0.025238037, 0.0047836304, 0.024612427, 0.022781372, -0.06665039, -0.02268982, 0.04284668, 0.064331055, 0.017120361, 0.01576233, 0.013648987, 0.0022525787, -0.0003373623, 0.004589081, 0.010169983, -0.025100708, -0.0040016174, -0.036254883, 0.018295288, 0.013626099, -0.01361084, 0.023590088, -0.0067214966, 0.04559326, -0.037353516, -0.0010633469, 0.005306244, -0.03466797, 0.027267456, 0.014587402, 0.013114929, -0.017089844, -0.03427124, -0.011405945, 0.010757446, 0.017303467, -0.0067710876, 0.01701355, -0.017868042, 0.052581787, -0.008605957, 0.016799927, 0.035186768, -0.034454346, 0.009613037, 0.0013990402, 0.0030822754, -0.013008118, -0.022094727, -0.00050640106, -0.0010251999, 0.016586304, 0.037200928, 0.0054130554, 0.014472961, 0.030929565, -0.039123535, 0.008804321, -0.04244995, -0.048553467, 0.023498535, 0.019042969, 0.007183075, 0.013763428, 0.049682617, 0.0075302124, 0.038116455, -0.061309814, -0.018310547, -0.037200928, 0.015579224, -0.025161743, 0.020736694, -0.020568848, -0.01638794, 0.0052337646, 0.0030593872, 0.013244629, 0.031219482, 0.0107803345, 0.00674057, -0.012390137, -0.0071640015, 0.00020444393, -0.03189087, -0.0032348633, 0.026947021, -0.001958847, -0.0063972473, -0.023406982, -0.010292053, -0.012672424, 0.0024662018, 0.0006070137, 0.0023441315, -0.0052757263, 0.026657104, 0.025299072, 0.07116699, -0.003522873, 0.03100586, -0.005126953, 0.011917114, 0.010749817, 0.032409668, 0.011528015, -0.02142334, -0.0017690659, 0.01550293, 0.014724731, 0.0463562, 0.029022217, 0.034301758, 0.0009560585, -0.015022278, -0.034362793, 0.015571594, -0.0105896, 0.05441284, -0.027069092, 0.014839172, -0.02130127, -0.06365967, -0.07116699, 0.006893158, -0.054504395, -0.0011739731, 0.001572609, -0.025283813, -0.0010070801, -0.00749588, 0.018981934, -0.062194824, 0.008773804, -0.021560669, 0.017913818, 0.02027893, 0.032928467, 0.013549805, -0.07525635, -0.07208252, 0.031463623, -0.053344727, -0.019622803, 0.023910522, 0.0036411285, 0.01713562, 0.0022602081, 0.034698486, 0.046325684, 0.03668213, -0.007419586, 0.0395813, 0.00067186356, -0.025177002, 0.03302002, 0.0146484375, -0.03353882, -0.0075149536, -0.017166138, 0.020965576, 0.016494751, 0.056732178, -0.021759033, -0.07080078, -0.042785645, -0.050872803, 0.042633057, -0.042510986, 0.0067749023, -0.042510986, -0.0016288757, -0.052947998, -0.06317139, -0.017669678, 0.046661377, 0.008346558, 0.00982666, 0.021469116, -0.00044560432, -0.019500732, -0.0032348633, -0.018585205, -0.009361267, 0.04144287, 0.015411377, 0.043426514, 0.00945282, -0.03213501, -0.011169434, -0.01878357, 0.012901306, -0.020629883, 0.004852295, 0.025360107, -0.017333984, 0.016860962, 0.022537231, -0.039123535, -0.03390503, 0.009536743, 0.023803711, -0.039215088, -0.040222168, -0.033172607, 0.020996094, -0.02798462, -0.068847656, -0.023910522, -0.042755127, 0.036590576, 0.026107788, 0.005584717, 0.008476257, 0.016860962, -0.01058197, -0.015037537, 0.018081665, 0.005870819, 0.034240723, -0.03265381, 0.046539307, 0.008872986, 0.04397583, -0.051727295, -0.05178833, -0.04373169, 0.034820557, 0.0049552917, 0.017425537, 0.050933838, -0.022384644, 0.021072388, 0.04937744, -0.026031494, 0.01637268, -0.0075187683, -0.026062012, -0.0036773682, -0.0035877228]}, "B07VLJZVB2": {"id": "B07VLJZVB2", "original": "Brand: Blaze Grills\nName: BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32\" Combination Door/Drawer Package Deal\nDescription: BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32\" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.\nFeatures: Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375\" W x 21.25\" D x 8.50\" H\nBest of Backyard Series USA MADE 304 Stainless Steel 32\" Combination Door/Drawer Combo. Cutout: 30.125\"W x 19.125\"H x 21\"D\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures\nFull-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\n", "metadata": {"Name": "BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32\" Combination Door/Drawer Package Deal", "Brand": "Blaze Grills", "Description": "BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32\" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.", "Features": "Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375\" W x 21.25\" D x 8.50\" H\nBest of Backyard Series USA MADE 304 Stainless Steel 32\" Combination Door/Drawer Combo. Cutout: 30.125\"W x 19.125\"H x 21\"D\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures\nFull-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.000992775, -0.01209259, -0.027801514, -0.026489258, -0.011802673, 0.0031490326, 0.0048103333, 0.009841919, -0.059906006, -0.018325806, -0.034088135, 0.04257202, -0.038635254, -0.026306152, 0.05102539, -0.070251465, 0.012886047, 0.033813477, 0.013534546, -0.03274536, -0.019119263, -0.014976501, -0.004032135, 0.06542969, 0.06286621, -0.0692749, -0.04824829, 0.0011167526, 0.052703857, 0.028259277, 0.032989502, -0.0059509277, 0.060516357, -0.019683838, -0.030303955, -0.01763916, -0.0124435425, -0.022277832, -0.030334473, 0.0038967133, 0.043395996, -0.022659302, -0.015640259, 2.169609e-05, -0.017608643, -0.052490234, 0.06317139, -0.005001068, 0.013031006, 0.018188477, 0.0075798035, -0.007247925, 0.008598328, 0.001531601, -0.009010315, 0.0044784546, -0.017807007, -0.036254883, 0.023666382, 0.0065231323, 0.006942749, -0.030944824, 0.028244019, -0.008483887, -0.018753052, 0.019012451, 0.10168457, -0.0047340393, -0.0025119781, -0.024246216, -0.0045394897, 0.014266968, 0.032989502, -0.057617188, 0.018157959, 0.016601562, -0.026519775, -0.0076293945, 0.03866577, -0.011360168, 0.018600464, -0.0039787292, 0.026519775, -0.011367798, 0.00061941147, 0.0028972626, -0.013145447, -0.014625549, -0.013008118, -0.01209259, -0.013511658, -0.0010509491, -0.027297974, 0.019058228, -0.013771057, -0.012107849, -0.038146973, -0.03994751, -0.013519287, -0.0044555664, 0.005897522, -0.0057258606, 0.008712769, 0.0011825562, -0.026916504, 0.070617676, 0.008407593, 0.05770874, -0.012252808, 0.0019779205, 0.001868248, -0.07879639, -0.028579712, -0.048034668, -0.012031555, 0.035003662, -0.03378296, 0.0013885498, 0.026290894, -0.030395508, -0.021911621, -0.0043258667, -0.004837036, 0.018615723, 0.004211426, 0.0022506714, -0.014015198, 0.012527466, -0.03967285, 0.04510498, -0.025283813, 0.011871338, 0.05215454, 0.010810852, -0.012687683, -0.023483276, 0.025619507, -0.008483887, 0.0047836304, -0.04611206, 0.039794922, 0.06365967, 0.024398804, -0.010536194, -0.008552551, 0.040496826, 0.016067505, -0.005683899, -0.019760132, -0.052124023, 0.00447464, -0.02507019, 0.050720215, 0.009429932, -0.048919678, -0.009887695, 0.026794434, -0.026062012, -0.05117798, -0.07043457, -0.007843018, -0.009727478, 0.025009155, 0.018539429, -0.022079468, 0.025253296, -0.00819397, -0.014839172, 0.027114868, 0.051971436, -0.0037117004, -0.03225708, -0.022323608, -0.008102417, -0.02079773, 0.006542206, -0.037719727, 0.07293701, 0.05508423, -0.089782715, -0.03869629, -0.049072266, 0.12188721, -0.01953125, -0.0048217773, -0.010292053, -0.002494812, -0.008644104, 0.025634766, 0.016815186, -0.010559082, 0.014091492, -0.0015926361, -0.042907715, 0.01876831, 0.0056991577, -0.03189087, -0.0038776398, 0.0021572113, -0.020202637, -0.024932861, 0.012420654, -0.009605408, 0.015197754, 0.0059776306, 0.011726379, -0.0069122314, 0.03062439, 0.012504578, 0.014755249, -0.00447464, -0.007133484, 0.025939941, -0.07342529, -0.026550293, 0.00774765, -0.007457733, 0.03729248, -0.007896423, 0.005077362, 0.0065956116, -0.055999756, 0.0071983337, 0.024780273, 0.011566162, -0.03036499, -0.020385742, -0.013442993, 0.0025100708, -0.014694214, -0.013908386, 0.039123535, 0.07147217, 0.07550049, 0.0028629303, 0.03652954, 0.057128906, 0.041168213, -0.038848877, -0.031707764, 0.034301758, -0.0039024353, -0.04272461, -0.017623901, -0.017333984, -0.061401367, -0.0043411255, 0.016281128, -0.026428223, -0.01259613, 0.018829346, 0.0021781921, 0.018859863, 0.08508301, -0.014282227, 0.013298035, 0.0018968582, -0.0050239563, -0.042388916, 0.018554688, 0.0025920868, 0.017684937, -0.0152282715, 0.0107040405, -0.012908936, 0.0070152283, 0.009895325, 0.013832092, -0.0052719116, -0.02482605, 0.009223938, 0.029281616, -0.024505615, -0.038360596, 0.02029419, 0.0065574646, -0.04800415, 0.043548584, -0.010612488, -0.03363037, -0.008010864, -0.035247803, 0.016815186, -0.002811432, 0.06329346, 0.00605011, 0.026977539, -0.024765015, -0.037017822, -0.02696228, -0.008293152, 0.015274048, -0.0140686035, -0.0012569427, 0.002035141, -0.001742363, 0.033996582, 0.03567505, 0.010765076, 0.005710602, -0.03753662, 0.030944824, -0.0028629303, -0.004573822, -0.022354126, 0.018615723, 0.0065078735, 0.015686035, 0.007663727, -0.062438965, 0.048217773, 0.013122559, 0.025604248, 0.018661499, 0.02633667, -0.014320374, 0.009376526, 0.028778076, 0.0345459, 0.04534912, -0.008232117, -0.019577026, -0.028076172, 0.0059051514, 0.0024585724, 0.01576233, 0.0068511963, -0.011009216, -0.01586914, 0.0062789917, -0.029830933, -0.033569336, -0.03137207, -0.029388428, -0.02079773, -0.005264282, 0.0065574646, 0.0016698837, -0.0049743652, -0.076660156, -0.0032367706, -0.03062439, -0.0018110275, 0.045806885, -0.013031006, -0.04095459, 0.031707764, 0.002910614, -0.019256592, 0.01007843, 0.014625549, -0.0035686493, -0.0066947937, -0.018692017, 0.01222229, -0.040985107, -0.020446777, -0.03878784, -0.020858765, -0.06347656, 0.0043907166, -0.009513855, -0.040802002, 0.0033874512, 0.05609131, -0.038726807, -0.014350891, -0.020355225, 0.0035305023, 0.009674072, 0.08087158, -0.021865845, -0.055358887, -0.026168823, -0.026489258, -0.029815674, 0.040405273, -0.033813477, -0.016571045, 0.0022296906, -0.024047852, 0.014892578, -0.04852295, 0.019714355, -0.049926758, 0.028518677, 0.002166748, 0.010299683, -0.00579834, -0.018829346, 0.039123535, 0.087768555, -0.040863037, -0.02684021, 0.014312744, 0.016662598, 0.015411377, 0.009185791, -0.0037345886, -0.045135498, -0.11816406, 0.031707764, 0.010917664, -0.034088135, 0.01109314, -0.038482666, -0.031707764, -0.06359863, 0.0005941391, 0.07696533, -0.01461792, -0.022994995, -0.018966675, 0.0009651184, 0.027435303, -0.009361267, 0.06933594, -0.0043640137, 0.042144775, -0.062469482, 0.018981934, -0.056427002, 0.017593384, -0.006801605, 0.0036697388, -0.016159058, -0.008384705, 0.00094270706, 0.005908966, 0.004673004, -0.019546509, -0.019348145, -0.0035324097, 0.012527466, 0.001326561, -0.0149383545, -0.026931763, -0.08239746, 0.011978149, -0.055633545, -0.046813965, 0.008590698, 0.019729614, 0.029403687, 0.011856079, -0.031555176, -0.007888794, -0.04537964, 0.004550934, -0.025878906, 0.014045715, -0.009963989, 0.01902771, 0.018218994, -0.0076828003, 0.09173584, 0.015533447, 0.041259766, 0.010978699, -0.010353088, -0.007572174, -0.022079468, 0.030395508, 0.008308411, -0.014404297, -0.034301758, 0.05783081, 0.005092621, -0.00121212, -0.0077056885, -0.032470703, 0.049438477, 0.025177002, 0.004901886, -0.012252808, 0.006668091, 0.03100586, -0.0017881393, -0.034484863, -0.031173706, -0.026489258, -0.0030670166, -0.087402344, 0.08117676, 0.034484863, -0.015853882, 0.0501709, 0.06628418, -0.012466431, 0.0552063, 0.01713562, -0.0053977966, -0.020828247, 0.05307007, -0.052124023, 0.038330078, 0.02078247, -0.035736084, 0.044921875, 0.023803711, -0.040130615, 0.0138168335, -0.021072388, -0.07122803, 0.0055007935, 0.018554688, -0.0028133392, -0.010314941, -0.020019531, -0.042663574, 0.0073623657, -0.06286621, 0.018463135, 0.0032863617, -0.020843506, -0.020751953, -0.013221741, -0.027435303, -0.02444458, 0.015205383, 0.0006418228, 0.016860962, -0.014411926, 0.038116455, 0.01146698, 0.016586304, -0.06732178, 0.01158905, 0.0146102905, 0.03250122, 0.01939392, -0.021255493, 0.033050537, -0.0012054443, -0.0034618378, -0.0029125214, -0.035339355, 0.02519226, -0.024215698, -0.056243896, -0.02947998, 0.04724121, 0.032714844, 0.011161804, -0.04336548, -0.010894775, -0.032104492, -0.0026836395, -0.0024795532, -0.054534912, 0.048309326, 0.06109619, -0.038757324, -0.03201294, -0.019378662, -0.040161133, -0.031280518, 0.015014648, -0.011703491, -0.012207031, 0.01914978, 0.02861023, -0.05517578, 0.0013904572, -0.06567383, -0.008598328, 0.025024414, -0.015823364, 0.012329102, -0.039764404, -0.020217896, -0.017837524, 0.10443115, 0.028869629, 0.003616333, -0.025344849, -0.019042969, -0.025482178, 0.03060913, 0.025894165, -0.026977539, 0.024307251, -0.00076436996, -0.070129395, -0.01802063, -0.015113831, 0.033935547, -0.025756836, -0.009407043, -0.0027656555, 0.045196533, -0.01574707, -0.0059280396, 0.016357422, 0.03289795, 0.019897461, 0.011703491, -0.074279785, 0.017105103, 0.004306793, -0.0024261475, 0.010665894, -0.0030670166, -0.009284973, 0.009109497, 0.027313232, 0.027511597, 0.016601562, -0.034820557, -0.017593384, 0.026687622, 0.021057129, -0.022262573, -0.0016365051, -0.024093628, 0.0029182434, -0.06951904, 0.06274414, 0.043395996, 0.020935059, 0.0079422, -0.015914917, -0.008880615, -0.06945801, -0.038024902, 0.0014648438, 0.031219482, -0.023773193, -0.038208008, 0.004573822, -0.020523071, -0.006893158, -0.018173218, 0.019866943, 0.01474762, -0.042114258, 0.005504608, -0.03161621, 0.010055542, 0.024734497, 0.0023002625, 0.035491943, -0.0076675415, -0.040008545, 0.006149292, -0.02671814, -0.03970337, -0.026351929, -0.028335571, 0.0023345947, -0.02708435, 0.0126953125, -0.023391724, 0.020553589, 0.041748047, 0.012290955, 0.0004878044, 0.0044059753, 0.01789856, -0.013313293, -0.029678345, 0.01751709, -0.024932861, -0.008804321, 0.0073509216, -0.012374878, -0.021514893, 0.05569458, -0.04324341, 0.026504517, 0.0446167, -0.057617188, 0.06365967, -0.019927979, -0.02935791, -0.018951416, 0.05493164, -0.024642944, 0.0178833, -0.03149414, 0.009651184, 0.0027160645, -0.0014705658, -0.004135132, -0.01612854, 0.03314209, -0.00067710876, 0.0026893616, 0.018981934, -0.0060195923, -0.051208496, -0.029220581, 0.011299133, -0.02973938, -0.02470398, 0.013092041, -0.03164673, -0.00868988, -0.01878357, 0.004058838, 0.037322998, -0.013648987, -0.022827148, -0.03286743, 0.009475708, -0.020446777, -0.03994751, -0.035827637, 0.0066375732, 0.0049552917, -0.02859497, 0.0340271, 0.021957397, 0.011077881, 0.0006480217, -0.02355957, -0.023803711, 0.007205963, -0.026504517, 0.02027893, -0.016555786, 0.041931152, 0.06713867, -0.031585693, 0.039031982, -0.0051498413, -0.030914307, -0.01247406, -0.007598877, -0.015808105, -0.02571106, -0.016601562, 0.05517578, -0.04550171, -0.06744385, -0.028411865, 0.015945435, -0.016815186, -0.030059814, 0.08129883, 0.029296875, -0.0070610046, 0.022491455, 0.019424438, -0.059753418, -0.0013504028, 0.0036716461, -0.059051514, -0.022506714, -0.053527832, 0.013221741, 0.010215759, -0.02659607, -0.017944336, 0.0690918, 0.0129852295, -0.09020996, -0.024795532, -0.020812988, 0.04046631, -0.03567505, 0.023773193, 0.0079193115, -0.02368164, 0.019470215, -0.016479492, -0.03326416, 0.02659607, 0.029785156, 0.021011353, -0.012367249, 0.017990112, 0.007843018, 0.032836914, -0.0287323, 0.016937256, -0.0050621033, 0.012863159, -0.012390137, 0.026107788, -0.010787964, 0.034698486, -0.052612305, -0.0015134811, -0.020217896, 0.05117798, 0.024932861, 0.008232117, 0.0011968613, 0.0066108704, -0.010269165, 0.0016498566, -0.016967773, 0.015220642, 0.05203247, -0.002708435, -0.062316895, -0.014755249, -0.012619019, -0.04925537, -0.025024414, -0.05178833, -0.0038223267, 0.026443481, 0.017730713, 0.040222168, -0.02758789, 0.048461914, -0.011924744, 0.032226562, 0.0027885437, 0.03286743, 0.013381958, -0.01713562, -0.051971436, 0.0036449432, 0.026000977, 0.005214691, 0.01612854, -0.027999878, 0.0057907104, 0.0390625, 0.026504517, -0.0129776, -0.023834229, 0.033172607, 0.008903503, -0.059173584, 0.006587982, -0.006214142, -0.0019016266, 0.005378723, -0.053894043, -0.04257202, -0.00061273575, 0.04159546, -0.008728027, 0.035186768, -0.01574707, 0.028900146, 0.0039711, -0.018051147, 0.002286911, -0.0054397583, 0.020248413, 0.019836426, -0.0011730194, -0.013626099, -0.05822754, -0.014678955, 0.055419922, -0.026428223, 0.009147644, -0.01625061, 0.02166748, -0.05618286, 0.037017822, -0.012672424, -0.0024108887, 0.018493652, 0.012588501, 0.005241394, 0.017593384, -0.02368164, 0.004348755, -0.01234436, -0.05331421, 0.039489746, -0.036071777, 0.062438965, 0.02999878, 0.02709961, -0.059539795, -0.041381836, -0.009483337, -0.026367188, 0.0013132095, 0.008712769, 0.026428223, -0.026733398, 0.05493164, 0.05908203, 0.08459473, 0.0015916824, 0.033966064, 0.026931763, -0.00068855286, 0.025512695, -0.019561768, -0.011688232, -0.025436401, 0.0029010773, 0.011741638, 0.022079468, 0.009033203, 0.049865723, -0.015853882, -0.02558899, -0.031982422, 0.011871338, -0.023452759, 0.0011730194, 0.035308838, -0.055664062, 0.012207031, -0.03451538, -0.030776978, -0.022384644, -0.00712204, -0.06347656, 0.042663574, -0.02029419, -0.05053711, -0.017028809, 0.0014619827, -0.0020809174, -0.07659912, -0.020065308, -0.03062439, 0.05529785, -0.032287598, 0.02394104, -0.041503906, -0.008148193, 0.0035247803, 0.027786255, -0.07623291, -0.042053223, 0.027694702, 0.012512207, 0.037597656, 0.006942749, -0.007419586, 0.04046631, 0.024780273, -0.020736694, 0.01574707, -0.051971436, -0.032958984, 0.058288574, 0.012268066, -0.03010559, -0.023147583, 0.022384644, 0.0062026978, 0.039886475, 0.027450562, 0.012275696, -0.0019702911, 0.003856659, -0.01838684, -0.010940552, -0.010124207, -0.0036888123, 0.024993896, 0.024551392, -0.01914978, 0.025817871, 0.009864807, -0.015792847, 0.07678223, 0.046295166, 0.0062446594, -0.023071289, -0.05316162, -0.056884766, -0.0016117096, 0.03857422, 0.018844604, -0.02659607, 0.026306152, 0.017364502, -0.033172607, 0.013931274, 0.023040771, 0.009559631, 0.018936157, 0.0023078918, -0.006752014, 0.008117676, -0.035095215, -0.021072388, -0.03881836, 0.0231781, 0.08502197, -0.006149292, -0.021148682, -0.024230957, -0.02003479, -0.021255493, -0.019485474, -0.039398193, 0.02748108, -0.026000977, -0.013122559, 0.014038086, 0.0071258545, 0.024932861, -0.014404297, -0.043548584, -0.014862061, 0.006439209, 0.008026123, -0.026107788, -0.032073975, 0.03793335, -0.013961792, 0.09869385, -0.0049438477, -0.0680542, -0.04043579, 0.05569458, 0.022964478, -0.043518066, 0.05596924, -0.0357666, -0.0032100677, 0.0574646, 0.018615723, -0.011627197, 0.042266846, 0.02029419, 0.037384033, 0.017807007]}, "B01I32H7NY": {"id": "B01I32H7NY", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch\nDescription: This product is a 18\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
      Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
      Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
      Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.\nFeatures: Fire Pit Burner Ring Diameter 18-inch\nRing Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "metadata": {"Name": "Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch", "Brand": "Stanbroil", "Description": "This product is a 18\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
      Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
      Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
      Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.", "Features": "Fire Pit Burner Ring Diameter 18-inch\nRing Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.023239136, 0.0012283325, -0.07434082, -0.04333496, -0.00013756752, -0.020965576, -0.023132324, 0.032928467, -0.044433594, -0.004211426, -0.0034923553, 0.033325195, -0.03186035, -0.03479004, 0.031219482, -0.057678223, 0.008712769, 0.018096924, 0.01890564, -0.047943115, 0.025726318, -0.044311523, 0.016555786, 0.11199951, 0.02633667, -0.029953003, 0.01184082, 0.00033545494, 0.019958496, 0.006248474, 0.029586792, -0.012565613, 0.06335449, 0.019226074, -0.06549072, -0.030380249, -0.03527832, -0.0031929016, -0.057525635, 0.03668213, 0.002708435, 0.0024719238, 0.03265381, -0.024398804, -0.002248764, -0.028381348, 0.02684021, -0.038146973, 0.009262085, 0.008987427, 0.01789856, 0.01474762, 0.014312744, -0.009887695, -0.015640259, 0.011756897, 0.0061569214, -0.009857178, -0.0077667236, 0.014472961, 0.003370285, 0.03982544, 0.011131287, 0.005596161, -0.057678223, 0.010368347, 0.0680542, -0.021652222, -0.01763916, -0.07220459, 0.0062408447, 0.026794434, 0.03579712, 0.0013027191, -0.015083313, -0.0065841675, 0.027389526, 0.040985107, 0.016403198, -0.009857178, -0.002450943, -0.0044822693, 0.03829956, -0.0048675537, -0.022125244, -0.0141067505, -0.024093628, -0.0059127808, -0.036865234, -0.042541504, -0.029586792, 0.009742737, -0.033050537, -0.022705078, -0.040985107, 0.0056877136, -0.047454834, -0.08959961, 0.034729004, -0.0016870499, 0.027786255, -0.037841797, 0.01927185, 0.01927185, 0.0006608963, 0.047912598, 0.01486969, 0.0390625, 0.008682251, -0.005279541, -0.0025939941, -0.028686523, -0.013618469, -0.058441162, 0.017868042, 0.032043457, -0.023162842, 0.03515625, 0.026443481, -0.01776123, -0.027236938, 0.00579834, -0.018051147, 0.023284912, 0.0012731552, 0.01739502, 0.003692627, -0.012702942, -0.002998352, 0.043884277, 0.00084352493, -0.037719727, -0.017242432, 0.07055664, 0.015411377, -0.007335663, 0.002544403, -0.0047798157, 0.023971558, -0.014160156, 0.0051002502, -0.03189087, 0.024749756, 0.0029144287, 0.004142761, 0.038116455, 0.018508911, -0.03262329, 0.006996155, -0.001791954, -0.0602417, -0.029174805, 0.02532959, 0.040771484, -0.025741577, 0.026641846, 0.0010099411, 0.009819031, -0.021957397, -0.011497498, -0.0032615662, -0.020492554, -0.04055786, -0.001534462, -0.03463745, 0.025466919, 0.031555176, 0.0017280579, 0.009757996, 0.009223938, 0.0066947937, 0.049102783, -0.007843018, -0.010948181, 0.005428314, -0.023864746, 0.009155273, 0.11053467, 0.02583313, -0.08685303, -0.0491333, -0.06341553, 0.16149902, -0.07446289, -0.0040626526, -0.03378296, 0.014846802, -0.027282715, -0.0021362305, -0.0023956299, 0.061279297, 0.00969696, -0.015716553, -0.03173828, 0.019134521, 0.0063934326, -0.0027942657, 0.0059394836, 0.0052261353, -0.023788452, -0.043945312, -0.005088806, 0.017944336, 0.035858154, 0.03503418, 0.0058517456, 0.0051078796, 0.0014343262, -0.01373291, 0.0013017654, 0.0023231506, -0.005508423, -0.0020370483, -0.028045654, -0.01626587, 0.013374329, -0.01828003, -0.012809753, -0.0048446655, -0.011260986, 0.00086832047, -0.020828247, 0.0006914139, 0.013710022, 0.029281616, 0.0038585663, -0.027618408, -0.015777588, -0.0009202957, 0.002111435, -0.029083252, 0.048828125, 0.045440674, 0.07373047, -0.024307251, 0.025405884, 0.021133423, 0.057617188, -0.025436401, -0.027770996, 0.025314331, -0.003686905, -0.004737854, 0.018554688, 0.014579773, -0.0070381165, 0.011917114, -0.0015983582, -0.0015335083, 0.035461426, 0.03564453, 0.0084991455, 0.024291992, 0.060424805, -0.023040771, 0.02243042, -0.016845703, -0.020446777, -0.0146102905, 0.02104187, 0.0003707409, 0.020263672, 0.0006494522, -0.0053596497, 0.06561279, -0.026794434, 0.04248047, 0.030044556, -0.010696411, -0.0053977966, -0.0058135986, -0.0052223206, -0.0004515648, 0.011169434, -0.039520264, 0.015625, -0.004825592, 0.021896362, -0.023147583, -0.007499695, -0.029174805, -0.009017944, 0.009101868, -0.026733398, 0.017196655, 0.011199951, 0.020858765, -0.03982544, -0.023345947, -0.029312134, 0.013153076, -0.009819031, -0.05014038, 0.021102905, -0.026397705, -0.041534424, 0.07348633, -0.04660034, 0.03579712, -0.032806396, 0.045959473, 0.035736084, -0.028625488, 0.00274086, -0.005886078, 0.0023841858, -0.013259888, 0.010848999, -0.0017385483, -0.040649414, 0.0055770874, 0.0154800415, 0.019058228, -0.0013380051, 0.048950195, 0.03237915, -0.011993408, 0.047851562, 0.061279297, 0.08081055, 0.018051147, -0.0025749207, 0.001996994, -0.0052261353, 0.0048103333, -0.020111084, 0.005748749, -0.009796143, -0.028045654, -0.008880615, 8.34465e-05, -0.027938843, -0.02230835, 0.043792725, 0.009727478, 0.010314941, 0.023223877, 0.024291992, 0.0036830902, -0.062408447, 0.008956909, 0.014228821, -0.010971069, 0.023040771, -0.0791626, -0.014434814, 0.05343628, -0.008995056, -0.07897949, -0.011779785, 0.07397461, -0.02835083, -0.02128601, -0.01777649, 0.0033454895, 0.019073486, 0.0010995865, -0.04055786, 0.009277344, -0.08294678, 0.033325195, -0.0051345825, -0.005718231, -0.02947998, 0.018814087, -0.032989502, -0.046966553, -0.011077881, -0.03616333, -0.021392822, 0.017913818, -0.03466797, -0.04559326, -0.031158447, -0.023727417, 0.0152282715, 0.0769043, -0.005130768, -0.005634308, 0.03314209, 0.03152466, 0.040161133, -0.05557251, -0.002878189, 0.042999268, 0.034118652, 0.06335449, 0.0033359528, 0.046020508, -0.0118255615, 0.0007376671, -0.025482178, -0.083984375, -0.027770996, -0.016555786, 0.012916565, 0.021957397, -0.026168823, 0.0019741058, -0.03414917, -0.13256836, 0.05908203, -0.019088745, -0.0077934265, -0.0048065186, -0.06573486, -0.04647827, -0.0826416, 0.016296387, -0.005958557, -0.004688263, 0.038604736, -0.03479004, 0.05026245, -0.0055160522, -0.028808594, -0.0395813, -0.004634857, -0.059173584, 0.026885986, 0.064208984, -0.0736084, 0.014755249, 0.029830933, -0.031173706, -0.02168274, 0.031951904, 0.046447754, -0.015075684, 0.012680054, 0.009094238, -0.040985107, -0.026794434, -0.01651001, -0.0040740967, 0.003156662, 0.0055770874, -0.016586304, 0.024887085, -0.0231781, -0.02734375, -0.035491943, -0.0020561218, 0.00617218, -0.025039673, 0.013084412, -0.035339355, -0.009033203, -0.029907227, -0.032928467, 0.0038318634, 0.014404297, 0.011161804, 0.010398865, -0.00040769577, 0.049468994, 0.06744385, 0.03967285, -0.019134521, 0.026168823, 0.01260376, -0.019805908, 0.026016235, 0.0029354095, 9.840727e-05, -0.018508911, 0.014434814, 0.03668213, -0.0075263977, 0.004337311, 0.022491455, 0.03466797, 0.008338928, 0.012908936, 0.012062073, 0.034942627, -0.004055023, -0.025558472, -0.0043678284, 0.014335632, -0.07562256, 0.02279663, -0.03677368, 0.046966553, 0.025436401, -0.013801575, 0.07531738, 0.03756714, -0.021209717, 0.018157959, 0.004650116, 0.0016765594, -0.005332947, 0.03326416, -0.03062439, 0.004611969, -0.004360199, -0.017227173, 0.030532837, 0.018295288, -0.009170532, 0.00042057037, 0.0010709763, -0.05496216, 0.029632568, 0.0046463013, 0.0058898926, 0.014556885, -0.0064315796, 0.02142334, 0.0030498505, -0.026428223, -0.0043144226, 0.022872925, -0.026138306, -0.024475098, 0.022857666, 0.033325195, -0.0519104, -0.015853882, 0.008544922, 0.010826111, -0.0031795502, 0.06112671, -0.010276794, -0.005657196, -0.036499023, -0.028839111, -0.0014734268, 0.050994873, 0.037994385, -0.0032291412, 0.05166626, -0.031555176, -0.021057129, -0.023086548, -0.0070610046, 0.050476074, -0.010467529, -0.064941406, -0.030883789, 0.006000519, 0.04348755, -0.037017822, -0.022872925, -0.0016431808, -0.0031204224, -0.013008118, 0.0004506111, -0.066833496, 0.032470703, 0.068603516, -0.0657959, -0.042755127, -0.00466156, 0.010025024, -0.018798828, -0.0035495758, -0.005947113, -0.014785767, 0.00497818, -0.002204895, -0.07574463, 0.044952393, -0.042022705, -0.029678345, 0.07550049, 0.013572693, 0.035858154, -0.055145264, 0.0011606216, -0.01374054, 0.057403564, -0.015289307, 0.028793335, -0.028808594, -0.0017232895, -0.0045547485, -0.0021591187, -0.032928467, -0.0012750626, 0.0041122437, 0.009231567, -0.038238525, -0.05065918, 0.010612488, 0.01309967, 0.004299164, -0.030639648, -0.002861023, 0.048797607, -0.013389587, 0.0063819885, 0.037322998, 0.007801056, 0.020355225, -0.02281189, -0.09094238, 0.0061149597, -0.008148193, -0.055877686, 0.012664795, -0.003944397, -0.012062073, 0.07421875, 0.070007324, -0.0035686493, -0.009063721, -0.019454956, -0.015281677, -0.025787354, -0.01184082, 0.012512207, 0.011054993, -0.0030136108, -0.01071167, -0.04309082, 0.042907715, 0.024658203, -0.034088135, -0.019607544, 0.004196167, -0.030899048, -0.043792725, -0.0021743774, 0.025756836, 0.042510986, -0.01486969, -0.05026245, -0.0025405884, -0.05819702, -0.01146698, -0.022369385, 0.0019407272, 0.0070114136, 0.0048599243, -0.028015137, -0.008926392, -0.02281189, -0.019638062, 0.016983032, -0.0004107952, -0.0022830963, 0.016342163, -0.003211975, 0.0059394836, 0.026947021, -5.453825e-05, -0.020111084, 0.004299164, -0.0040359497, 0.004673004, 0.021911621, 0.008407593, -0.019607544, 0.036132812, -0.044769287, 0.015235901, 0.015083313, -0.040222168, -0.0692749, -0.0045204163, 0.039916992, -0.0043792725, 0.01512146, -0.0038394928, 0.037261963, 0.025253296, -0.008758545, 0.0011463165, 0.006439209, 0.014724731, 0.041015625, 0.018814087, 0.040405273, -0.0064315796, 0.028320312, -0.003004074, -0.0077285767, -0.0413208, 0.010528564, -0.043395996, -0.010414124, 0.004501343, -0.006038666, 0.057037354, -0.036987305, -0.05215454, 0.0035991669, 0.0022411346, -0.020111084, 0.014419556, 0.001830101, -0.022232056, -0.016601562, -0.012802124, -0.009765625, 0.028656006, -0.0055999756, -0.030288696, 0.01525116, 0.021942139, -0.017318726, 0.00019204617, 5.120039e-05, -0.006587982, 0.001156807, -0.06213379, 0.017730713, -0.0065078735, -0.037017822, 0.02709961, 0.031982422, 0.016830444, -0.04171753, -0.04522705, -0.030944824, 0.018005371, -0.006843567, 0.04537964, -0.025299072, -0.005973816, 0.0158844, 0.0077438354, 0.031921387, -0.026229858, -0.04522705, -0.03778076, 0.007633209, 0.009460449, 0.014099121, -0.051239014, 0.04269409, -0.010971069, -0.036346436, -0.021957397, 0.045196533, -0.0051994324, -0.056365967, 0.09918213, 0.04598999, 0.013710022, 0.018753052, -0.029266357, -0.01991272, -0.014877319, -0.006767273, -0.06500244, -0.022781372, -0.029891968, 0.026535034, -0.00881958, -0.02444458, -0.016357422, 0.02859497, -0.009933472, -0.017089844, 0.004901886, -0.01486969, 0.008331299, -0.010429382, 0.0041656494, -0.028182983, -0.0061149597, -0.03164673, -0.022613525, -0.046020508, -0.040008545, -0.020812988, 0.021713257, 0.013389587, -0.018173218, -0.0131073, -0.046722412, 0.015403748, 0.050933838, 0.04321289, -0.059265137, -0.018341064, -0.001543045, 0.008369446, -0.014862061, -0.0519104, 0.011192322, -0.013946533, 0.020843506, 0.033233643, 0.008895874, -0.0118255615, -0.0056915283, 0.05731201, 0.011657715, -0.008918762, 0.02104187, 0.050567627, 0.019378662, -0.064331055, -0.018936157, 0.015617371, -0.04711914, 0.0003054142, -0.026062012, -0.026626587, -0.0030117035, -0.028625488, 0.008010864, -0.014144897, 0.03302002, -0.024139404, -0.031951904, 0.021621704, -0.048187256, 0.005104065, -0.024765015, 0.007785797, -0.020965576, -0.0048828125, -0.0234375, 0.03491211, -0.03665161, 0.012535095, 0.062072754, 0.020401001, -0.02230835, -0.0010080338, -0.017578125, 0.04006958, -0.037017822, 0.009361267, -0.02558899, -0.019989014, -0.03074646, -0.0473938, -0.0090789795, -0.004966736, 0.028564453, 0.0023021698, 0.031951904, -0.00059747696, 0.015655518, -0.005844116, 0.010070801, -0.016952515, -0.023269653, 0.0074501038, -0.016189575, 0.014678955, -0.004470825, -0.004753113, 0.020751953, 0.037384033, 0.006160736, 0.008895874, -0.035461426, 0.031188965, 0.010879517, 0.01058197, -0.03277588, -0.0038661957, -0.002866745, -0.01737976, 0.021453857, 0.0030384064, 0.010108948, 0.027770996, -0.020889282, -0.014297485, 0.022705078, -0.042999268, 0.021224976, 0.015342712, -0.033447266, -0.061645508, -0.047729492, -0.010032654, -0.024795532, -0.004737854, 0.033447266, 0.011505127, 0.023590088, -0.010292053, 0.015281677, 0.011817932, -0.028701782, 0.012161255, 0.00881958, -0.014724731, 0.01084137, 0.008140564, -0.008552551, 0.010810852, -0.01737976, -0.0012550354, 0.009925842, -0.013793945, -0.0206604, 0.023483276, 0.013961792, -0.040252686, 0.00642395, 0.0038471222, -0.06817627, 0.037231445, -0.046142578, -0.006832123, -0.04626465, -0.07299805, -0.0061302185, -0.04083252, -0.05807495, 0.076293945, 0.0030212402, -0.031158447, -0.009025574, 0.0021190643, -0.037200928, -0.026123047, -0.009529114, 0.009170532, 0.039154053, -0.0095825195, 0.016952515, -0.022598267, -0.043762207, -0.0104904175, 0.04711914, -0.06210327, -0.06402588, 0.008285522, 0.019607544, 0.044921875, 0.0027008057, -0.010406494, 0.018676758, 0.023849487, -0.018676758, -0.012428284, -0.07244873, -0.006252289, 0.041656494, -0.0018224716, -0.024124146, -0.07324219, 0.021408081, 0.02935791, 0.018417358, 0.011528015, 0.0158844, -0.07598877, 0.0027980804, -0.025909424, 0.047912598, -0.01727295, -0.0040664673, 0.029647827, 0.0135269165, -0.029525757, 0.045898438, 0.018722534, 0.047729492, 0.04510498, -0.0035438538, 0.0062408447, -0.032196045, -0.07501221, -0.028366089, -0.031982422, 0.031097412, 0.010223389, -0.039855957, -0.013153076, 0.012870789, -0.005886078, -0.01965332, 0.026184082, 0.012252808, 0.061187744, -0.02279663, 0.007522583, 0.03842163, -0.06982422, 0.020507812, -0.007537842, -0.02633667, 0.014518738, 0.015541077, -0.02897644, -0.008758545, -0.041259766, 0.017044067, -0.018478394, -0.056396484, -0.027038574, -0.049865723, 0.0033683777, 0.028579712, -0.021865845, 0.049560547, 0.0067329407, -0.012825012, -0.013259888, 0.0284729, 0.0011558533, 0.03237915, -0.042266846, 0.07659912, 0.0028152466, 0.10491943, -0.041015625, -0.05117798, -0.05432129, 0.020431519, 0.005332947, 0.011047363, 0.05178833, 0.0038146973, 0.021392822, 0.014457703, -0.017944336, -0.008880615, -0.010017395, 0.08666992, -0.022994995, 0.013893127]}, "B07MHT9TQX": {"id": "B07MHT9TQX", "original": "Brand: Napoleon\nName: Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel\nDescription: \nFeatures: 66,000 BTU's\n4 Stainless Steel Main Burners\n760 in Total Cooking Area\nNIGHT LIGHT Control Knobs with SafetyGlow\n7.5 mm Stainless Steel Iconic WAVE Cooking Grids\n", "metadata": {"Name": "Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel", "Brand": "Napoleon", "Description": "", "Features": "66,000 BTU's\n4 Stainless Steel Main Burners\n760 in Total Cooking Area\nNIGHT LIGHT Control Knobs with SafetyGlow\n7.5 mm Stainless Steel Iconic WAVE Cooking Grids", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.007091522, 0.0051879883, -0.029541016, 0.01436615, -0.015319824, -0.02041626, 0.00178051, -0.019760132, -0.0034427643, -0.0049057007, -0.025802612, 0.019378662, -0.021026611, -0.031829834, 0.01701355, -0.031463623, 0.025985718, 0.026046753, 0.022094727, -0.013442993, -0.013519287, 0.0058174133, 0.024459839, 0.07244873, 0.054870605, -0.029037476, -0.041290283, 0.011039734, 0.040130615, 0.014221191, 0.02519226, -0.009536743, 0.017044067, 0.0018892288, -0.0058288574, -0.017440796, 0.03515625, -0.025054932, -0.010513306, 0.03390503, 0.005104065, 0.0038795471, 0.004085541, 0.010147095, -0.039123535, -0.03277588, 0.021255493, 0.0051078796, 0.019088745, -0.025100708, 0.029418945, -0.021957397, 0.044921875, -0.012268066, -0.038208008, -0.0010995865, 0.0022411346, -0.026275635, 0.0154418945, 0.019363403, -0.013313293, -0.013114929, 0.017242432, -0.016357422, -0.039764404, 0.031158447, 0.12359619, -0.033996582, 0.021652222, -0.068725586, -0.016418457, 0.040100098, -0.012123108, -0.00283432, -0.054260254, -0.005340576, 0.021774292, -0.032196045, 0.02507019, -0.0010442734, 0.009925842, 0.008682251, -0.007217407, 0.008018494, -0.0041542053, 0.02458191, -0.010734558, -0.024169922, -0.0014829636, -0.04840088, -0.00010281801, -0.0037937164, -0.08947754, 0.06536865, 0.022506714, -0.0206604, -0.07989502, -0.048919678, -1.6748905e-05, 0.04147339, -0.019256592, 0.014823914, 0.010368347, -0.009963989, -0.0038852692, 0.08795166, 0.008605957, 0.05517578, 0.033935547, 0.0021953583, 0.027435303, -0.025772095, 0.038238525, -0.016174316, 0.005092621, 0.002544403, -0.005466461, 0.047424316, 0.004966736, 0.009803772, -0.02796936, 0.0059280396, 0.008369446, 0.0044174194, 0.03463745, 0.05392456, 0.011833191, -0.017547607, -0.043945312, 0.03463745, -0.020065308, 0.008415222, 0.020080566, 0.042510986, -0.014335632, -0.00982666, 0.06866455, -0.014091492, -0.0026893616, 0.00548172, 0.011894226, -0.00472641, 0.005382538, 0.008239746, -0.022720337, -0.004512787, 0.024917603, 0.031829834, -0.023971558, -0.035125732, 0.010116577, -0.002943039, 0.009918213, 0.011398315, -0.016021729, 0.03753662, -0.029403687, 0.014373779, -0.03186035, 0.018508911, -0.018035889, -0.01763916, 0.01247406, -0.008956909, -0.033416748, 0.020614624, 0.01550293, 0.0016880035, 0.018508911, 0.031585693, -0.029556274, -0.005077362, 0.046783447, 0.014884949, -0.017303467, 0.026687622, 0.00079488754, 0.023757935, 0.058044434, -0.06124878, -0.0692749, -0.0395813, 0.11682129, -0.053527832, -0.0073165894, -0.027877808, -0.008895874, -0.01828003, 0.06567383, 0.004562378, -0.0051116943, -0.019134521, 0.0030918121, -0.017532349, 0.020828247, -0.005340576, -0.047454834, -0.012458801, -0.0058403015, -0.0055618286, -0.009147644, 0.06915283, -0.023406982, 0.024963379, -0.004638672, 0.024169922, 0.003063202, 0.03213501, 0.02418518, 0.046142578, -0.014251709, 0.03289795, 0.015022278, -0.08807373, -0.031311035, 0.03314209, -0.04598999, 0.009437561, -0.006465912, 0.010055542, 0.013755798, 0.0072250366, 0.0037612915, -0.008857727, -0.002243042, -0.021942139, -0.0140686035, -0.0023555756, 0.020141602, -0.007987976, 0.031921387, -0.004711151, 0.03060913, 0.06286621, -0.0059661865, 0.01991272, 0.03933716, 0.056030273, -0.025161743, -0.019500732, 0.006504059, -0.012138367, -0.012016296, 0.014678955, 0.03237915, 0.04925537, 0.04034424, -0.019546509, -0.028320312, -0.029846191, 0.02796936, 0.021408081, 0.023025513, 0.013435364, -0.0060577393, 0.03262329, 0.01914978, 0.03262329, -0.0034275055, 0.0025100708, -0.0039520264, 0.052520752, 0.0006418228, 0.02709961, 0.029251099, 0.04736328, 0.045715332, 0.054382324, -0.077819824, 0.03387451, 0.031982422, 0.0925293, -0.00315094, -0.007167816, -0.029968262, -0.023071289, 0.008636475, 0.031433105, -0.03753662, -0.035125732, 0.0113220215, -0.04901123, -0.01638794, 0.001572609, 0.072265625, -0.038513184, 0.013000488, 0.03466797, -0.048309326, -0.02468872, 0.0076828003, -0.008506775, -0.01890564, -0.011108398, 0.047332764, -0.013694763, 0.057250977, -0.006214142, 0.004310608, -0.02456665, 0.02720642, 0.03213501, -0.023544312, -0.011390686, 0.00078582764, -0.015838623, -0.007461548, 0.013641357, 0.0006766319, -0.02482605, 0.006866455, 0.051239014, 0.023712158, 0.029205322, 0.014755249, -0.007797241, 0.019348145, 0.041412354, 0.052825928, 0.036071777, -0.040405273, -0.0031471252, -0.05050659, -0.016189575, 0.00040650368, 0.039611816, -0.023849487, 0.006931305, -0.028930664, -0.01335144, 0.022842407, -0.05847168, -0.030563354, -0.027801514, 0.010093689, 0.0039596558, 0.006099701, 0.016571045, -0.009597778, -0.055145264, -0.009681702, -0.013160706, -0.0053100586, 0.0069274902, -0.05480957, 0.017349243, 0.0014209747, 0.005001068, -0.02192688, -0.014968872, 0.0055274963, -0.032806396, -0.020339966, -0.010505676, 0.0014152527, 0.04525757, 0.0107803345, -0.007091522, 0.01977539, -0.042877197, -0.0071907043, -0.0071258545, -0.04562378, 0.01159668, 0.05328369, -0.025665283, -0.0137786865, -0.0058517456, 0.016845703, 0.029220581, -0.012046814, 0.015472412, -0.053649902, -0.0033073425, 0.015022278, -0.00067043304, 0.02168274, -0.032104492, -0.0013914108, 0.00041866302, 0.007873535, 0.011787415, -0.0006656647, -0.0066452026, 0.015075684, 0.012428284, -0.0062942505, -0.0041389465, 0.038024902, -0.0011930466, 0.021224976, 0.021438599, -0.031463623, -0.017654419, -0.0025959015, 0.021377563, -0.04937744, -0.036499023, -0.002603531, -0.011070251, -0.057861328, -0.010757446, -0.014503479, -0.03768921, 0.002292633, -0.08935547, -0.046295166, -0.05441284, 0.010803223, 0.031082153, 0.005744934, -0.017089844, -0.0010757446, -0.048706055, -0.01373291, 0.0034866333, 0.015945435, -0.00995636, 0.02267456, -0.01751709, 0.0110321045, -0.02230835, -0.0036315918, 0.0022010803, -0.021957397, 0.02192688, -0.022354126, 0.0065231323, 0.022720337, 0.0077209473, -0.0090789795, -0.009979248, -0.0024356842, 0.023132324, 0.0025596619, 0.05404663, -0.025802612, -0.026367188, 0.0006222725, -0.03286743, -0.043945312, -0.013092041, 0.008529663, 0.04724121, -0.009437561, 0.008049011, -0.03366089, -0.04901123, -0.015098572, -0.016098022, 0.017486572, -0.022842407, 0.021469116, 0.03161621, -0.011138916, 0.14196777, 0.05633545, 0.042388916, -0.001420021, 0.013961792, -0.019500732, -0.03616333, 0.06518555, -0.0025310516, -0.0026874542, 0.013763428, -0.016845703, 0.012420654, -0.030380249, 0.023162842, 0.014709473, 0.0041923523, -0.0018424988, -0.025375366, -0.010482788, -0.047180176, 0.03564453, 0.031921387, -0.018936157, -0.06286621, -0.045135498, 0.01953125, -0.03265381, 0.099731445, 0.07385254, -0.014801025, 0.08642578, 0.0048561096, 0.018859863, 0.034576416, 0.063964844, -0.015136719, 0.019683838, 0.07080078, -0.005207062, -0.020202637, 0.012802124, -0.033599854, 0.015266418, -0.0005493164, -0.019210815, 0.024475098, 0.02357483, -0.01663208, -0.025802612, 0.023376465, 0.0065307617, -0.0206604, -0.011932373, -0.039733887, -0.023345947, -0.06124878, -0.008392334, 0.01689148, -0.036621094, -0.041809082, -0.009529114, -0.0236969, -0.06524658, 0.027542114, -0.017929077, -0.0015487671, -0.023529053, 0.008056641, 0.028289795, 0.039489746, -0.05987549, 0.0657959, -0.038085938, 0.010314941, 0.027175903, 0.05142212, 0.014541626, -0.015106201, -0.005657196, -0.020477295, -0.0090789795, 0.026641846, -0.017700195, -0.07647705, -0.0024051666, 0.04748535, 0.018356323, -0.02935791, 0.01777649, -0.047210693, 0.014205933, -0.023025513, -0.047546387, -0.03164673, -0.014503479, 0.008872986, -0.017364502, -0.021011353, -0.013580322, -0.044708252, -0.020492554, -0.011627197, 0.013626099, 0.018310547, 0.013771057, 0.022918701, -0.03567505, -0.019241333, -0.023544312, 0.014541626, -0.0043907166, -0.026229858, 0.05117798, -0.040527344, 0.0026416779, -0.015686035, 0.14367676, 0.0345459, 0.022598267, -0.05899048, -0.043426514, -0.02545166, 0.004573822, 0.061187744, -0.0060577393, 0.071899414, -0.024124146, -0.030029297, -0.049835205, 0.032409668, 0.047821045, -0.005065918, -0.023086548, -0.0008125305, 0.008728027, 0.0007443428, 0.024383545, -0.030151367, -0.011703491, -0.01991272, -0.01889038, -0.04663086, -0.014663696, -0.010421753, -0.011955261, 0.0262146, 0.0028820038, -0.016082764, -0.010658264, 0.038726807, 0.021621704, -0.027114868, -0.006095886, 0.015319824, -0.007358551, 0.024154663, -0.020339966, -0.010032654, -0.006401062, -0.026870728, -0.056121826, 0.061584473, 0.035064697, 0.0038261414, -0.0016756058, 0.018218994, -0.0040779114, -0.067993164, -0.008224487, -0.031799316, -0.020874023, -0.03366089, -0.0107803345, 0.045166016, -0.0072250366, 0.021942139, -0.0031738281, -0.024169922, 0.0006132126, 0.0065078735, 0.005607605, -0.03982544, 0.0070991516, 0.047424316, 0.0008969307, -0.021270752, -0.010246277, -0.036712646, 0.005607605, -0.0423584, -0.010192871, 0.034332275, -0.0044517517, -0.02368164, 0.029586792, -0.005748749, -0.02494812, 0.005355835, 0.013038635, 0.014846802, -0.044158936, 0.0022850037, 0.027160645, -0.012687683, -0.06726074, 0.017364502, -0.009925842, 0.0064811707, 0.043914795, -0.017227173, 0.05456543, 0.051330566, -0.017944336, 0.02923584, 0.024108887, -0.022521973, 0.02720642, 0.003982544, 0.010772705, -0.024261475, 0.017730713, -0.012428284, -0.022155762, -0.026229858, 0.00011050701, 0.025650024, 0.043945312, 0.04623413, -0.06311035, 0.039031982, -0.01977539, -0.027160645, 0.022476196, 0.01826477, 0.006504059, 0.002313614, 0.003019333, -0.044891357, -0.023788452, -0.025939941, -0.03930664, -0.0071258545, -0.0096588135, 0.022888184, 0.027526855, -0.00548172, -0.015083313, -0.047180176, 0.0029449463, -0.0070343018, -0.05154419, 0.023422241, -0.0082473755, -0.006587982, 0.019882202, 0.044189453, -0.0016460419, -0.0015916824, 0.014389038, -0.006576538, 0.033050537, 0.017486572, -0.013694763, 0.0025100708, -0.0146865845, -0.004627228, 0.012039185, -0.028579712, 0.011062622, -0.026535034, -0.034362793, -0.02192688, 0.038330078, 0.066345215, -0.0020523071, -0.031799316, 0.060699463, -0.04058838, -0.0079193115, -0.11590576, 0.020477295, -0.01940918, -0.04260254, 0.022109985, 0.0049591064, -0.0023479462, 0.013038635, -0.012886047, -0.061676025, 0.022064209, 0.0022659302, -0.07952881, -0.0028018951, -0.029266357, -0.0034179688, 0.026504517, -0.0076179504, -0.0138168335, 0.04598999, -0.022888184, -0.038726807, -0.024719238, -0.0077781677, 0.012756348, -0.011734009, 0.011077881, 0.00022947788, 0.015533447, -0.0054244995, 0.042541504, -0.04360962, -0.031951904, 0.023376465, 0.013839722, 0.010551453, 0.018005371, 0.005130768, 0.012939453, -0.054656982, 0.03262329, 0.0043029785, 0.0021362305, -0.008155823, 0.025878906, -0.003435135, 0.043273926, -0.08203125, -0.0050201416, -0.027923584, -0.008422852, 0.023529053, 0.033294678, -0.013206482, 0.033721924, 0.030532837, 0.021652222, 0.02230835, 0.018814087, 0.032196045, -0.035736084, -0.057678223, -0.0026016235, -0.026260376, -0.05154419, -0.060791016, -0.030944824, -0.040161133, 0.010604858, -0.0013217926, 0.0049591064, 0.0027980804, 0.010902405, 0.044525146, -0.0064811707, 0.029312134, 0.028945923, -0.004917145, -0.013267517, -0.08068848, 0.05883789, -0.012145996, -0.0073661804, 0.017181396, -0.0014915466, -0.0026302338, 0.022598267, -0.01158905, 0.03463745, -0.05645752, 0.026687622, 0.044769287, -0.05770874, -0.023925781, 0.005241394, 0.02255249, -0.020309448, -0.06085205, -0.012413025, -0.0007352829, -0.012893677, 0.010948181, -0.043884277, 0.066833496, 0.017974854, -0.028701782, 0.0066375732, -0.01576233, -0.028961182, 0.005077362, 0.004146576, 0.007965088, -0.0013256073, -0.021865845, 0.015670776, 0.058624268, -0.02658081, 0.040740967, -0.0075187683, 0.011665344, -0.075927734, 0.009422302, -0.015167236, -0.016845703, -0.025177002, -0.010940552, 0.0435791, 0.051361084, -0.012924194, 0.045410156, 0.0034179688, -0.020721436, 0.032318115, -0.060821533, 0.02268982, 0.030288696, 0.033203125, -0.034118652, -0.029312134, -0.010009766, -0.036254883, 0.0340271, -0.010505676, -0.006427765, 0.035705566, -0.0071487427, 0.03894043, 0.050354004, -0.008979797, 0.039093018, -0.011695862, -0.016967773, 0.045166016, 0.029006958, 0.01259613, 0.040008545, -0.028411865, 0.0058021545, 0.027526855, 0.039733887, 0.020629883, 0.006095886, -0.017974854, -0.014076233, -0.040649414, 0.039398193, -0.0073051453, 0.008239746, -0.04055786, 0.035339355, -0.021728516, -0.03060913, -0.038238525, -0.015899658, -0.032196045, 0.046325684, 0.016647339, -0.02709961, 0.003742218, -0.0011081696, 0.053771973, -0.06707764, 0.0055007935, -0.029525757, 0.01626587, -0.011001587, 0.06542969, -0.059783936, -0.038848877, -0.06695557, 0.03540039, -0.16259766, -0.018508911, 0.010063171, -0.009674072, -0.002653122, -0.018798828, -0.010154724, 0.027542114, 0.03036499, -0.011550903, 0.0070877075, -0.014175415, 0.0043754578, -0.008300781, -0.0077819824, -0.0065231323, -0.037322998, 0.007663727, 0.004207611, 0.04019165, -0.021453857, 0.015205383, -0.009460449, 0.04574585, 0.042663574, -6.592274e-05, -0.026519775, 0.0209198, -0.021102905, 0.0073051453, -0.056732178, -0.06112671, -0.027923584, 0.041992188, 0.03677368, 0.022155762, 0.015594482, -0.012817383, -0.070373535, -0.034240723, -0.024963379, 0.017974854, 0.021469116, -0.0065231323, -0.014404297, 0.026779175, -0.0058059692, -0.009307861, 0.015449524, 0.016204834, 0.005405426, -0.02897644, 0.03112793, -0.00050258636, -0.015159607, 0.028533936, -0.025482178, -0.005672455, -0.019622803, -0.016204834, -0.009811401, -0.042022705, -0.017807007, 0.009498596, -0.039855957, -0.014732361, -0.008857727, -0.015182495, 0.005558014, 0.018249512, 0.010154724, 0.042816162, 0.00043272972, -0.005962372, 0.0020542145, 0.018341064, 0.0067367554, 0.014312744, -0.028656006, 0.06463623, -0.008346558, 0.03527832, -0.049621582, -0.04598999, -0.054992676, 0.013175964, 0.013092041, 0.021713257, 0.052490234, 0.01689148, 0.001074791, -0.02027893, -0.068725586, -0.036376953, 0.0049552917, 0.022949219, -0.04522705, 0.02633667]}, "B003WKUNLQ": {"id": "B003WKUNLQ", "original": "Brand: BULL\nName: Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane\nDescription: \nFeatures: 75, 000 BTU's of cooking power, heats up fast and can easily sear your favorite cuts of meat\n4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking\n304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n810 sq. Inches of cooking surface including warming rack\nReliable Piezo igniters on every valve plus twin lighting system\n", "metadata": {"Name": "Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane", "Brand": "BULL", "Description": "", "Features": "75, 000 BTU's of cooking power, heats up fast and can easily sear your favorite cuts of meat\n4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking\n304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n810 sq. Inches of cooking surface including warming rack\nReliable Piezo igniters on every valve plus twin lighting system", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.025436401, 0.014228821, -0.048706055, -0.010375977, 0.009689331, -0.03894043, 0.0023841858, -0.0057754517, -0.0390625, -0.007698059, -0.020095825, 0.0077400208, -0.02243042, -0.029373169, 0.03942871, -0.03817749, 0.040527344, -0.0032043457, 0.0032997131, -0.021408081, -0.0018663406, 0.0048980713, -0.022964478, 0.12030029, 0.044158936, -0.04498291, 0.011253357, -0.017913818, 0.06628418, 0.005680084, 0.046051025, -0.021224976, 0.026489258, -0.006298065, 0.0031337738, -0.0039100647, 0.018295288, -0.01247406, -0.011116028, 0.006389618, 0.01914978, -0.009269714, 0.014579773, 0.010261536, -0.00349617, -0.031799316, 0.03656006, -0.023529053, 0.016189575, 0.020950317, -0.015609741, 0.0056266785, -0.003955841, -0.003768921, -0.0027256012, 0.0058021545, 0.025405884, -0.010688782, 0.024307251, -0.02772522, -0.031341553, -0.007713318, 0.03781128, 0.0003066063, -0.031982422, 0.009666443, 0.10369873, -0.03704834, 0.035949707, -0.044799805, -0.00025343895, 0.049682617, 0.009109497, 0.02130127, 0.0012760162, -0.04309082, -0.016937256, -0.029281616, 0.04727173, 0.021133423, -0.003944397, -0.02708435, 0.023284912, -0.005634308, 0.0087890625, 0.019714355, -0.0102005005, -0.007724762, -0.031463623, -0.023254395, -0.03302002, -0.02267456, -0.025894165, 0.020767212, -0.00409317, -0.0036411285, -0.049804688, -0.08270264, 0.046875, -0.0115356445, 0.053253174, -0.0317688, -0.0065307617, 0.012748718, 0.00059366226, 0.083618164, -0.0044441223, 0.042907715, 0.03366089, -0.015670776, 0.02128601, -0.023895264, 0.0049362183, -0.005130768, -0.022064209, 0.015838623, -0.016235352, 0.008628845, -0.0064201355, -0.00091028214, 0.009384155, 0.024841309, 0.0045394897, 0.031341553, 0.008003235, 0.036010742, 0.009742737, -0.045135498, -0.038391113, 0.020629883, -0.009567261, -0.013542175, 0.03338623, 0.084472656, 0.023391724, -0.015136719, 0.043426514, -0.024719238, 0.0032215118, -0.0067710876, -0.014770508, 0.008705139, 0.029434204, -0.020431519, -0.033691406, 0.0231781, 0.03375244, 0.010604858, -0.030563354, -0.07727051, 0.008300781, 0.0062942505, 0.03527832, 0.025527954, -0.02357483, 2.3305416e-05, 0.024459839, -0.035705566, -0.037322998, -0.056610107, 0.010520935, -0.0069236755, 0.028366089, -0.0036067963, -0.040161133, 0.024124146, -0.017044067, -0.016418457, 0.01739502, 0.02947998, 0.01826477, 0.023406982, -0.015136719, 0.02154541, 0.011947632, -0.008674622, 0.0007376671, 0.05102539, 0.07952881, -0.11743164, -0.095703125, -0.056243896, 0.16723633, -0.08679199, -0.021865845, 0.015151978, -0.0072402954, -0.014923096, 0.02255249, -0.016067505, 0.02973938, 0.02557373, -0.016708374, -0.012962341, 0.028900146, 0.029541016, -0.03012085, 0.026428223, 0.006504059, -0.04421997, 0.00440979, 0.0104904175, 0.028305054, 0.00020098686, 0.03012085, 0.010429382, 0.008659363, 0.006729126, 0.005508423, 0.023651123, -0.004562378, -0.013450623, 0.0076675415, -0.048706055, -0.020385742, -0.001039505, -0.04776001, -0.02571106, -0.0030899048, -0.005744934, 0.019989014, 0.022476196, 0.0077552795, 0.00274086, -0.01058197, 0.025161743, -0.038726807, 0.02166748, -0.008972168, 0.013450623, 0.010719299, 0.015655518, 0.06640625, 0.07269287, -0.0017461777, 0.02178955, 0.053649902, 0.03173828, -0.014579773, -0.015159607, 0.017822266, -0.05307007, -0.031433105, 0.00045108795, -0.010757446, 0.009414673, 0.019363403, -0.020904541, -0.020751953, 0.0016975403, 0.02482605, 0.022476196, 0.024673462, -0.00012886524, -0.023803711, 0.048980713, -0.017929077, 0.008041382, -0.011039734, -0.0013399124, 0.0022792816, 0.005542755, 0.0060653687, -0.015777588, 0.063964844, 0.014717102, 0.047790527, 0.039886475, -0.042816162, 0.021606445, 0.028030396, 0.019577026, -0.019454956, -0.013687134, 0.03338623, -0.024230957, -0.024291992, 0.024978638, 0.0012025833, -0.033996582, 0.014793396, 0.01348114, -0.005393982, 0.004753113, 0.014297485, 0.018310547, 0.00844574, 0.039276123, -0.027130127, -0.004386902, 0.025146484, 0.0002541542, -0.04446411, 0.038726807, -0.0340271, -0.01727295, 0.04989624, -0.020492554, 0.017196655, -0.020568848, 0.032714844, 0.050201416, -0.017852783, 0.01739502, 0.016113281, -0.022644043, 0.019241333, 0.02166748, 0.012702942, -0.012191772, 0.0008535385, 0.042266846, 0.024032593, 0.036743164, 0.0016145706, -0.011062622, 0.017028809, 0.064331055, 0.05014038, 0.05166626, -0.01033783, 0.0069084167, -0.05709839, -0.043914795, 0.010620117, 0.034179688, -0.075805664, -0.011222839, -0.02432251, 0.02519226, 0.027420044, 1.835823e-05, 0.019165039, -0.03326416, -0.010063171, -0.019683838, -0.00283432, -0.03390503, -0.013076782, 0.0087509155, 0.023803711, -0.0021781921, 0.03378296, -0.010063171, -0.030639648, -0.04473877, 0.008651733, -0.004219055, -0.00055122375, -0.022949219, 0.02999878, -0.006465912, 0.004989624, -0.0009536743, -0.01663208, 0.020187378, -0.0006556511, -0.055541992, -0.045166016, -0.07635498, -0.03427124, 0.0037212372, -0.047088623, -0.023361206, 0.061401367, -0.03314209, -0.053649902, -0.012138367, -0.025115967, -0.01096344, 0.037384033, -0.034088135, -0.049560547, -0.019134521, -0.027160645, -0.003686905, 0.038208008, -0.023727417, -0.008323669, 0.0054244995, 0.008766174, 0.029708862, -0.012420654, 0.019760132, 0.042541504, 0.011459351, 0.039978027, 0.028686523, 0.06213379, -0.011817932, 0.041412354, 0.016952515, -0.029418945, -0.015113831, 0.011207581, 0.011077881, -0.019210815, -0.016403198, -0.023010254, -0.013015747, -0.058135986, 0.02027893, 0.004257202, -0.033355713, 0.0068740845, -0.07281494, -0.025817871, -0.04611206, 0.009483337, 0.029220581, -0.00072717667, -0.0064430237, -0.0022220612, -0.01777649, 0.014808655, -0.013046265, 0.020629883, 0.011642456, 0.0076560974, -0.026763916, -0.0013866425, 0.01789856, -0.006259918, 0.0015554428, -0.023910522, 0.020263672, 0.0058898926, 0.026504517, 0.016723633, 0.0067710876, 0.0073890686, -0.020248413, -0.04449463, -0.04055786, 0.044891357, 0.04458618, 0.0027618408, 0.020111084, -0.02067566, 0.01802063, -0.01828003, -0.025863647, -0.009719849, 0.01184845, -0.000538826, -0.01966858, -0.032470703, 0.0044555664, -0.009246826, -0.03817749, 0.0046424866, 0.0058174133, 0.022842407, 0.017425537, -0.0036640167, 0.088134766, 0.021087646, 0.028961182, 0.015792847, -0.0032463074, -0.04425049, -0.040283203, 0.06213379, -0.018737793, 0.006755829, -0.017150879, -0.026885986, 0.008232117, -0.023406982, 0.009094238, 0.0025539398, 0.06555176, 0.02708435, -0.0033226013, -0.012580872, -0.03970337, 0.03265381, 0.036834717, -0.03894043, -0.050628662, -0.040283203, 0.006996155, -0.05419922, 0.07556152, 0.089538574, -0.039611816, 0.08770752, 0.018997192, 0.0015220642, 0.04498291, 0.009353638, -0.024902344, 0.010604858, 0.029815674, -0.033966064, 0.04107666, 0.010375977, 0.0035591125, -0.013008118, 0.0026817322, -0.051757812, -0.0064353943, 0.011238098, -0.009216309, -0.024887085, -0.024124146, 0.02003479, -0.0045280457, 0.0209198, -0.008544922, 0.027999878, -0.023468018, 0.003993988, -0.00037503242, -0.027435303, -0.04031372, 0.0073432922, -0.00712204, -0.04559326, 0.010871887, 0.044952393, 0.020385742, 0.00793457, -0.0004911423, 0.039794922, 0.012420654, -0.008712769, -0.0037403107, -0.013442993, 0.04046631, 0.04095459, 0.017547607, 0.058532715, -2.4199486e-05, -0.02998352, -0.03378296, -0.042266846, 0.0725708, 0.042053223, -0.04510498, -0.038604736, -0.007347107, 0.030090332, 0.0010271072, 0.010612488, -0.039367676, -0.0023555756, -0.026855469, -0.030578613, -0.022872925, -0.01701355, 0.0060577393, -0.045898438, -0.02281189, 0.010864258, -0.042877197, -0.025497437, 0.0030822754, -0.009811401, 0.011001587, 0.020843506, 0.020935059, -0.06896973, 0.016525269, 0.018875122, -0.01776123, 0.064697266, 0.0029125214, 0.03665161, -0.035125732, 0.028320312, -0.021743774, 0.13769531, 0.031921387, 0.009315491, -0.05706787, -0.026473999, -0.0047302246, 0.04083252, 0.056762695, -0.025390625, 0.027633667, -0.024475098, -0.0005431175, -0.05215454, 0.006477356, 0.032684326, 0.0013504028, -0.045959473, -0.016677856, 0.040802002, -0.013656616, 0.018722534, -0.019302368, -0.0035037994, 0.0031547546, -0.0132369995, -0.05493164, -0.037078857, -0.013618469, -0.019866943, 0.0019388199, -0.01524353, -0.02784729, 0.035888672, 0.013259888, 0.01864624, -0.03253174, -0.0016489029, -0.006816864, 0.02192688, 0.014678955, -0.0047912598, 0.012809753, -0.005809784, -0.019012451, -0.06628418, 0.082336426, 0.09509277, -0.029464722, 0.008232117, 0.036224365, -0.02571106, -0.033172607, 0.021499634, 0.026412964, -0.035583496, -0.018096924, -0.019927979, 0.020950317, -0.022277832, -0.0053710938, -0.0015420914, -0.055847168, 0.016326904, 0.029052734, 0.01927185, -0.012771606, 0.014335632, 0.061584473, 0.026306152, 0.0022563934, -0.011070251, -0.06762695, 0.036376953, -0.015563965, -0.019897461, 0.028213501, -0.036895752, -0.047729492, -0.068603516, 0.00049209595, -0.0099487305, 0.047943115, 0.020767212, 0.006965637, -0.008552551, 0.0284729, -0.0029582977, 0.012046814, -0.0151901245, 0.040130615, -0.036346436, 0.017929077, 0.06347656, -0.041534424, 0.013137817, 0.00087213516, -0.0061073303, 0.024917603, -0.03302002, -0.064331055, 0.03277588, 0.025146484, 0.029846191, -0.03857422, 0.013587952, -0.017089844, -0.044525146, -0.02418518, 0.012245178, 0.033416748, -0.00667572, 0.015434265, -0.045196533, 0.037261963, -0.042785645, -0.014984131, -0.00920105, 0.0044898987, 0.0020961761, 0.02557373, -0.021362305, -0.022979736, 0.0018758774, -0.044403076, -0.04296875, -0.014343262, -0.02027893, 0.039611816, 0.040771484, -0.022460938, -0.02494812, -0.06829834, -0.0057029724, 0.023986816, -0.043548584, 0.021972656, -0.02609253, -0.009803772, 0.020904541, 0.02368164, -0.0034103394, -0.0018644333, -0.024276733, -0.023498535, -0.010276794, 0.028320312, 0.0010204315, 0.024642944, -0.04800415, -0.0060768127, 0.066711426, -0.044036865, 0.009216309, 0.055847168, -0.038482666, -0.038635254, 0.019058228, 0.031982422, -0.018127441, -0.022888184, 0.07348633, -0.04046631, -0.03857422, -0.0546875, 0.045898438, -0.0050735474, -0.003824234, 0.046142578, 0.02848816, -0.0035762787, 0.04345703, -0.011070251, -0.039855957, -0.0026683807, -0.00032377243, -0.04159546, -0.028717041, -0.03451538, 0.006336212, -0.0047683716, -0.01991272, -1.2636185e-05, 0.03729248, -0.0031833649, -0.046813965, 0.0007891655, -0.019424438, 0.0055503845, -0.03253174, -0.00737381, -0.01374054, 0.013214111, -0.020645142, -0.022232056, -0.009422302, 0.0018482208, 0.0041122437, 0.04425049, 0.044921875, -0.034576416, 0.006072998, 0.047576904, -0.037841797, 0.07788086, 0.036315918, -0.025115967, -0.027542114, 0.0023918152, -0.01423645, 0.021057129, -0.056915283, 0.013206482, -0.017425537, -0.00554657, 0.025650024, 0.012939453, -0.022583008, 0.0066947937, 0.01259613, 0.028884888, -0.0059432983, -0.011894226, 0.03857422, 0.025283813, -0.053863525, -0.01689148, -0.0184021, -0.040100098, -0.05419922, -0.014801025, -0.004699707, 0.020401001, -0.0020771027, 0.038208008, 0.037628174, -0.0010433197, 0.01966858, -0.010063171, 0.027740479, -0.014533997, -0.038482666, 0.0064582825, -0.06500244, 0.045898438, 0.01675415, -0.0018606186, 0.02520752, 0.012290955, -0.031036377, 0.010505676, 0.0058517456, 0.03314209, -0.034088135, 0.038085938, 0.036071777, -0.08081055, 0.007247925, 0.026687622, 0.013114929, 0.00970459, -0.012672424, 0.004714966, 0.012489319, 0.011474609, 0.007621765, 0.007858276, 0.018600464, 0.013771057, -0.00957489, 0.045288086, -0.0047569275, -0.024536133, 0.048095703, 0.047943115, 0.023101807, -0.019226074, -0.027648926, 0.01675415, 0.043518066, -0.0061569214, 0.00730896, 0.0021514893, 0.019470215, -0.02168274, 0.025619507, -0.027267456, -0.030380249, 0.002298355, 0.004459381, -0.0047187805, 0.013626099, -0.012878418, 0.0010967255, 0.034301758, 0.00024604797, 0.025741577, 0.0030174255, 0.038146973, 0.022888184, 0.015571594, -0.011253357, -0.030426025, -0.022216797, 0.009384155, -0.0027046204, 0.0060691833, 0.014778137, 0.043395996, -0.0050354004, 0.008171082, 0.07067871, 0.0146102905, 0.031036377, -0.023117065, 0.0019302368, -0.01134491, 0.023254395, 0.0055274963, 0.059631348, -0.029586792, -0.0003015995, 0.059814453, 0.027679443, 0.036193848, -0.0010995865, -0.022064209, -0.051116943, 0.05441284, -0.017227173, -0.034332275, -0.0099487305, -0.040039062, -0.020217896, -0.027389526, -0.06088257, -0.03050232, -0.024780273, -0.078430176, 0.031280518, -0.016921997, -0.023986816, 0.019210815, -0.016601562, -0.014694214, -0.03414917, 0.02532959, -0.015823364, 0.059051514, 0.012969971, 0.07647705, -0.04257202, -0.074401855, -0.0501709, 0.022994995, -0.06970215, -0.026565552, -0.012489319, 0.0016031265, 0.0015544891, -0.01109314, 0.025527954, 0.009742737, 0.04458618, -0.007762909, -0.0084991455, -0.012649536, -0.012641907, 0.021224976, 0.012634277, -0.023635864, -0.010887146, 0.020202637, -0.00037932396, 0.03677368, 0.03515625, -0.020751953, -0.032958984, -0.017654419, -0.031188965, 0.008407593, -0.04510498, -0.00051259995, 0.0012111664, -0.009407043, -0.039642334, 0.012435913, 0.018600464, 0.058135986, 0.0047340393, 0.01826477, 0.010871887, 0.0034370422, -0.015457153, -0.0021209717, -0.004562378, 0.006187439, 0.050567627, -0.013206482, 0.033233643, 0.03729248, -0.02848816, 0.0010986328, 0.013969421, 0.040039062, 0.00869751, -0.0067253113, 0.035736084, -0.0015888214, -0.005874634, 0.056884766, -0.001912117, -0.0181427, 0.0138549805, 0.019348145, -0.023529053, 0.026443481, -0.043884277, 0.012550354, 0.017700195, -0.026168823, -0.0236969, -0.05899048, -0.0054244995, 0.051330566, -0.024124146, 0.07312012, -0.04547119, -0.019165039, -0.027450562, 0.025054932, 0.01234436, 0.024230957, -0.05368042, 0.06744385, 0.013473511, 0.07745361, -0.024642944, -0.056243896, -0.045135498, 0.021911621, -0.015052795, 0.011566162, 0.015640259, -0.007549286, 0.01423645, 0.017059326, 0.019714355, -0.022583008, 0.03817749, 0.035980225, 0.008804321, 0.019454956]}, "B00ISKDOES": {"id": "B00ISKDOES", "original": "Brand: Coleman\nName: Coleman Party Propane Grill\nDescription: \nFeatures: Compact, portable BBQ grill ideal for camping, picnics, and tailgating\nDelivers 8,000 BTUs of cooking power across grilling surface\nInstaStart push-button ignition for convenient matchless lighting\nPerfectFlow technology provides consistent performance even in extreme conditions\nDetachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area\n", "metadata": {"Name": "Coleman Party Propane Grill", "Brand": "Coleman", "Description": "", "Features": "Compact, portable BBQ grill ideal for camping, picnics, and tailgating\nDelivers 8,000 BTUs of cooking power across grilling surface\nInstaStart push-button ignition for convenient matchless lighting\nPerfectFlow technology provides consistent performance even in extreme conditions\nDetachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0023403168, 0.0073776245, -0.014678955, -0.0028324127, 0.0054855347, -0.014968872, -0.0060195923, -0.01259613, -0.045166016, -0.021362305, -0.0062217712, 0.016860962, -0.018447876, -0.05404663, 0.057891846, -0.030731201, 0.009460449, 0.029891968, -0.0042648315, -0.038635254, -4.5657158e-05, -0.022979736, -0.033599854, 0.10406494, 0.05444336, -0.032714844, -0.0039138794, -0.025558472, 0.048187256, 0.008468628, 0.035461426, -0.022994995, 0.035705566, -0.01890564, -0.007713318, -0.03640747, 0.025878906, -0.027770996, -0.019943237, 0.0010061264, 0.00049591064, 0.010749817, -0.04144287, 0.013748169, -0.054656982, -0.0234375, 0.0035324097, 0.0072669983, 0.0008573532, -0.007194519, 0.0009937286, 0.015716553, 0.014556885, -0.04611206, -0.0034160614, 0.0017347336, -0.006389618, 0.015640259, 0.0385437, -0.03125, -0.037078857, -0.02532959, 0.048583984, 0.003293991, -0.03555298, 0.0077285767, 0.076293945, -0.020858765, -0.012374878, -0.041290283, 0.02708435, 0.020568848, -0.006298065, 0.032043457, -0.032073975, -0.05923462, 0.043273926, -0.03640747, 0.012031555, 0.034454346, -0.03152466, -0.03829956, -0.026412964, -0.01777649, 0.00011205673, 0.0011367798, -0.019607544, -0.0024223328, -0.016052246, -0.002149582, -0.020233154, 0.0076522827, -0.026443481, 0.0513916, -0.017913818, 0.00047183037, -0.0015029907, -0.060546875, 0.025863647, -0.014701843, 0.03149414, -0.032440186, 0.0013694763, 0.020874023, -0.015335083, 0.05255127, 0.024002075, 0.04925537, 0.0078086853, -0.015037537, 0.0011310577, -0.023468018, 0.017074585, 0.03491211, -0.046203613, -0.00881958, -0.027069092, 0.0053215027, -0.029678345, 0.028503418, -0.024658203, -0.010047913, 0.016998291, 0.0034980774, 0.023452759, 0.019302368, 4.1782856e-05, -0.0069084167, -0.041870117, 0.037872314, -0.05883789, -0.002248764, 0.040496826, 0.04058838, 0.013206482, -0.032836914, -0.002313614, 0.012184143, -0.00065660477, -0.0031375885, -0.00111866, 0.00076532364, 0.03189087, -0.0041122437, -0.01550293, -0.015426636, 0.046875, 0.03756714, -0.04611206, -0.041381836, 0.028076172, 0.05581665, 0.032562256, 0.015083313, -0.023895264, 0.0050621033, -0.005508423, -0.023254395, -0.022216797, -0.042510986, 0.0014209747, -0.0057296753, 0.0010871887, 0.0014314651, -0.020736694, 0.012023926, 0.013633728, 0.00062942505, 0.02420044, 0.04824829, -0.0032138824, 0.021148682, 0.014175415, 0.019714355, -0.006828308, -0.012481689, 0.010177612, 0.036346436, 0.048614502, -0.059936523, -0.053771973, -0.042419434, 0.101867676, -0.046966553, -0.021575928, -0.0037956238, 0.043792725, 0.03491211, -0.024978638, 0.01260376, 0.0680542, 0.03250122, -0.04510498, 0.015899658, 0.007499695, 0.026321411, -0.009735107, 0.03527832, -0.0034866333, -0.06384277, 0.0023956299, 0.015457153, 0.002588272, 0.011817932, 0.023040771, 0.0047683716, 0.014228821, 0.006832123, 0.061462402, 0.040405273, -0.028289795, -0.002653122, 0.011116028, -0.068481445, -0.05206299, 0.0020961761, 0.0042877197, 0.026779175, 0.040527344, -0.0070228577, 0.054870605, 0.012283325, 0.024673462, 0.004219055, 0.045043945, -0.00667572, -0.011672974, -0.009010315, 0.046051025, -0.008781433, -0.0026664734, 0.026000977, 0.06750488, 0.089782715, 0.012771606, 0.025558472, 0.08392334, 0.031585693, -0.008964539, -0.029724121, 0.0071029663, -0.03591919, -0.042266846, -0.018615723, 0.026489258, 0.022857666, 0.013183594, -0.01461792, -0.019424438, 0.0003299713, 0.0317688, 0.0049972534, 0.039733887, 0.036224365, -0.007461548, 0.02218628, -0.033081055, 0.01586914, -0.052215576, 0.05883789, -0.03463745, 0.04498291, 0.068481445, -0.014404297, 0.0028381348, 0.023147583, 0.025314331, 0.020996094, -0.01927185, 0.005622864, 0.005695343, -0.00844574, -0.010238647, -0.005794525, 0.035095215, 0.0069618225, -0.045043945, 0.008018494, 0.038635254, -0.0051727295, 0.03201294, 0.016464233, 0.018249512, -0.0045928955, 0.039886475, 0.0075645447, 0.004497528, 0.02281189, -0.07244873, -0.062072754, -0.02168274, 0.0124053955, -0.025558472, -0.002166748, -0.03567505, -0.026626587, -0.005264282, 0.02947998, 0.02230835, -0.030960083, -0.029754639, 0.023605347, -0.044921875, 0.016204834, -0.008583069, 0.028427124, 0.003458023, -0.005332947, -0.0043296814, -0.02116394, -0.0012292862, 0.020477295, 0.03137207, 0.007499695, 0.023483276, 0.019866943, -0.009124756, 0.05441284, 0.023040771, -0.0005888939, -0.036834717, -0.01889038, -0.026672363, -0.015258789, 0.006401062, 0.018722534, -0.03387451, 0.008140564, -0.0073432922, 0.010269165, 0.016845703, 0.014122009, 0.0060043335, 0.029129028, 0.0017032623, -0.005504608, 0.008102417, 0.04159546, -4.4345856e-05, -0.03643799, 0.01776123, -0.04257202, -0.0073547363, 0.004169464, -0.036468506, -0.012138367, 0.027328491, -0.00083112717, -0.012825012, 0.014945984, -0.0067977905, -0.010726929, 0.01763916, -0.012550354, 0.010513306, -0.0032978058, -0.03878784, -0.051483154, -0.034942627, -0.08984375, -0.03451538, -0.02142334, -0.06518555, -0.020019531, 0.046905518, 0.0064201355, -0.02859497, -0.015266418, -0.02116394, 0.00957489, -0.0284729, 0.01727295, -0.014961243, -0.02381897, -0.020187378, 0.016708374, -0.00044488907, -0.02998352, 0.027252197, 0.0017595291, 0.016738892, 0.01197052, 0.028167725, 0.03829956, 0.0013790131, 0.017944336, 0.0068855286, 0.028533936, 0.009109497, -0.00680542, 0.007499695, 0.045654297, -0.042877197, -0.013290405, 0.0071411133, 0.023788452, -0.029464722, -0.047729492, -0.03164673, -0.020690918, -0.08062744, 0.020004272, -0.00187397, -0.033294678, -0.014823914, -0.012191772, -0.033477783, -0.045532227, 0.018417358, 0.06359863, -0.033294678, -0.009597778, -0.029083252, 0.0107421875, -0.0033473969, 0.016281128, 0.08544922, -0.004966736, 0.04736328, -0.07098389, 0.00894165, -0.030456543, 0.023269653, 0.002773285, -0.006958008, 0.03564453, -0.035369873, -0.0025024414, -0.02520752, 0.021820068, 0.0009822845, 0.005882263, -0.025405884, 0.0069732666, -0.0082092285, -0.004764557, 0.004383087, -0.07678223, 0.036132812, -0.035369873, -0.0062446594, -0.0031852722, 0.0060310364, 0.036468506, -0.00039744377, -0.0032024384, -0.01675415, -0.033935547, 0.006916046, -0.05758667, 0.026016235, 0.01133728, 0.060028076, 0.006008148, 0.010726929, 0.06451416, 0.04067993, 0.028060913, 0.017150879, -0.028625488, -0.06390381, -0.026626587, 0.027145386, -0.032562256, 0.008277893, -0.033477783, 0.008033752, 0.018356323, 0.0013408661, 0.0016212463, 0.009750366, 0.04711914, 0.035339355, -0.017852783, -0.011375427, -0.057922363, 0.056121826, 0.03189087, -0.018753052, -0.08483887, -0.07110596, 0.024719238, -0.10601807, 0.06542969, 0.055664062, -0.035949707, 0.08123779, 0.0077285767, 0.0066184998, 0.08068848, 0.057739258, -0.015853882, 0.023147583, 0.07366943, -0.029785156, 0.02734375, 0.005329132, -0.014167786, 0.019805908, 0.005344391, -0.05618286, 0.024749756, 0.006412506, -0.045806885, -0.02355957, 0.006591797, 0.015914917, -0.016036987, 0.016540527, -0.02909851, -0.025283813, -0.026870728, 0.010009766, -0.0093688965, -0.0206604, 0.019134521, -0.02923584, -0.036315918, -0.023101807, 0.01184082, 0.01751709, 0.04925537, -0.015083313, 0.028427124, 0.01600647, -0.016708374, -0.04837036, -0.010795593, -0.012306213, 0.018341064, 0.008483887, -0.011352539, -0.00491333, -0.015098572, 0.033569336, -0.0059509277, -0.007774353, 0.009780884, -0.025787354, -0.05783081, -0.0038909912, 0.037139893, 0.014022827, -0.022949219, -0.0050735474, -0.0087509155, -0.0037460327, 0.019180298, -0.02949524, 0.002986908, -0.0158844, 0.0008649826, -0.06530762, -0.029907227, -0.0071640015, -0.04348755, -0.020629883, 0.027954102, -0.011436462, -0.04650879, -0.0019569397, 0.024017334, -0.029129028, -0.009346008, -0.03012085, 0.009437561, 0.030853271, 0.0041046143, 0.023880005, -0.025222778, -0.018676758, -0.012779236, 0.050231934, -0.008262634, 0.013534546, -0.038024902, -0.040985107, 0.0022258759, 0.02355957, 0.06137085, -0.040985107, -0.004119873, -0.037322998, -0.02104187, -0.039733887, -0.022018433, 0.037963867, -0.052368164, -0.03277588, -0.0184021, 0.03274536, -0.014602661, -0.0013971329, -0.03564453, 0.024719238, 0.03765869, 0.0053482056, -0.07537842, -0.05871582, 0.006828308, -0.007160187, -0.00844574, -0.010787964, -0.010108948, 0.051605225, 0.010421753, 0.026046753, 0.0043029785, -0.021591187, -0.019760132, 0.0054740906, 0.042663574, -0.052581787, 0.0019197464, -0.059448242, 0.019042969, -0.062927246, 0.071777344, 0.037200928, -0.02330017, -0.010620117, -0.0082473755, -0.024749756, -0.05859375, 0.007411957, -0.005962372, -0.03652954, -0.02696228, -0.01876831, 0.009017944, -0.019500732, -0.009033203, -0.019546509, -0.0031814575, 0.0013771057, -0.026245117, -0.0031909943, -0.032409668, 0.015037537, 0.02192688, 0.016860962, 0.034973145, 0.0236969, -0.038116455, 0.004245758, -0.030670166, -0.028640747, -0.0032176971, -0.009223938, -0.00058984756, 0.00011610985, 0.0041656494, -0.070617676, 0.034301758, 0.046813965, 0.004753113, -0.015151978, 0.036315918, 0.021499634, 0.010025024, -0.019378662, 0.05996704, 0.010429382, -0.00497818, 0.04537964, -0.02456665, -0.027404785, 0.04449463, -0.04788208, 0.06524658, 0.018585205, -0.060455322, 0.0317688, 0.009475708, 0.015098572, -0.039733887, 0.05215454, -0.006778717, -0.03086853, -0.04446411, -0.0012331009, 0.04498291, 0.06781006, -0.0011672974, -0.0395813, 0.066833496, -0.021774292, -0.055541992, 0.020843506, -0.024368286, -0.013725281, -0.009185791, -0.0048675537, -0.047027588, -0.009651184, -0.003660202, -0.03640747, 0.0066604614, 0.033447266, -0.023651123, 0.0021686554, 0.0146484375, -0.036712646, -0.022125244, -0.0012769699, 0.003742218, -0.028808594, 0.012397766, -0.032165527, -0.011856079, 0.008766174, 0.042419434, -0.046417236, 0.0023422241, -0.028244019, -0.04953003, -0.06173706, 0.016494751, 0.0008792877, 0.020889282, -0.029510498, 0.0024681091, 0.016479492, -0.032165527, 0.007949829, -0.003025055, -0.040985107, -0.027328491, 0.013084412, 0.041168213, -0.020736694, 0.0008664131, 0.079833984, -0.05267334, -0.039764404, -0.06390381, 0.05923462, -0.027648926, 0.021362305, 0.032592773, -0.028503418, 0.025741577, 0.022567749, 0.026031494, -0.011222839, -0.008842468, 0.001912117, -0.009864807, 0.007205963, -0.020568848, 0.025299072, 0.0056037903, 0.04067993, -0.01184082, 0.050750732, -0.02418518, -0.03451538, -0.038513184, 0.038238525, -0.016952515, -0.02609253, 0.0021247864, -0.010627747, -0.0028305054, -0.017150879, 0.0022220612, -0.03540039, -0.00699234, 0.040649414, 0.042816162, 0.030471802, -0.043273926, 0.035064697, 0.082092285, -0.037322998, 0.08105469, 0.021636963, -0.03060913, -0.0121154785, 0.0051994324, 0.013153076, -0.0284729, -0.0045318604, 0.015449524, -0.017242432, -0.007408142, 0.05014038, 0.015419006, -0.028717041, 0.0056495667, 0.07183838, 0.035888672, 0.026916504, 0.03378296, 0.0446167, 0.020965576, -0.027832031, 0.020767212, 0.06359863, -0.028823853, 0.00881958, -0.072143555, 0.0284729, 0.0038166046, 0.007987976, -0.0063705444, -0.03665161, 0.04776001, 0.0036029816, -0.041992188, 0.015541077, -0.02078247, 0.031066895, -0.011062622, -0.02180481, 0.02015686, -0.051971436, 0.0015077591, -0.047546387, -0.008880615, 0.01335907, 0.02470398, -0.011169434, 0.03845215, -0.04840088, 0.041870117, 0.04046631, -0.08227539, -0.01474762, 0.028839111, 0.012237549, 0.0043296814, -0.046447754, -0.03050232, -0.02494812, 0.03250122, 0.014015198, 0.07757568, -0.015731812, 0.022766113, -0.022949219, 0.0020980835, -0.005004883, -0.026367188, 0.028625488, 0.04058838, 0.0065956116, -0.018127441, -0.053833008, 0.015533447, 0.041107178, -0.012283325, 0.011512756, -0.00299263, 0.0259552, -0.009262085, -0.014221191, -0.035583496, -0.034576416, 0.025375366, 0.027267456, -0.023254395, -0.015899658, -0.03338623, -0.028625488, 0.04559326, -0.09539795, 0.04711914, -0.036468506, 0.08148193, 0.022338867, 0.10882568, -0.025634766, -0.027053833, -0.01890564, 0.0023059845, -0.00066423416, 0.029083252, -0.00793457, 0.0052719116, 0.014305115, -0.007255554, 0.025817871, -0.008995056, -0.009483337, -0.02166748, -0.004802704, 0.0069503784, 0.020233154, -0.017837524, -0.004020691, 0.004207611, -0.001991272, 0.022247314, -0.018478394, -0.010093689, -0.003917694, -0.00793457, -0.024505615, 0.029937744, 0.008323669, -0.024475098, -0.04776001, -0.016586304, -0.014297485, -0.035247803, -0.066101074, -0.02633667, -0.0015106201, -0.055389404, 0.022125244, -0.0071640015, 0.008605957, 0.027679443, -0.018814087, -0.008262634, -0.009529114, 0.01965332, 0.038970947, 0.007396698, 0.017074585, 0.073913574, -0.03668213, -0.07080078, -0.044311523, 0.020111084, -0.037994385, -0.040985107, -0.010765076, -0.012802124, -0.019897461, -0.022583008, 0.008354187, 0.057373047, 0.03201294, 0.000500679, 0.011054993, -0.04168701, -0.018936157, 0.04425049, 0.017074585, -0.03265381, -0.03201294, 0.024047852, -0.013366699, 0.037109375, 0.0178833, 0.0041923523, -0.053863525, -0.028411865, -0.06097412, -0.020568848, -0.00831604, -0.01424408, 0.0020503998, -0.0039634705, -0.03363037, -0.029907227, 0.007041931, 0.018844604, 0.035980225, -0.005302429, 0.070373535, -0.005874634, -0.083984375, -0.091430664, -0.03286743, 0.04208374, 0.033966064, -0.0013742447, 0.025512695, 0.03970337, -0.028259277, 0.023101807, 0.023223877, -0.006866455, 0.00945282, 0.011428833, 0.019134521, -0.0033283234, -0.0011548996, 0.031677246, -0.01309967, -0.044006348, -0.03262329, 0.0051612854, 0.002336502, 0.009841919, -0.028015137, 0.03479004, -0.0075569153, 0.00087690353, 0.00069093704, 0.01197052, -0.023361206, 0.021987915, 0.0015745163, 0.0048294067, -0.020599365, 0.00039243698, -0.017471313, 0.010124207, 0.015686035, -0.0017271042, -0.019195557, 0.043670654, 0.015098572, 0.038360596, -0.019866943, -0.047821045, -0.038360596, 0.012321472, 0.010192871, -0.0071144104, 0.06036377, -0.024093628, 0.015625, -0.0007443428, -0.016555786, -0.02305603, 0.00015830994, 0.0063323975, -0.005455017, 0.014251709]}, "B09CKPH9ZJ": {"id": "B09CKPH9ZJ", "original": "Brand: Royal Gourmet\nName: Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver\nDescription: \nFeatures: Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways.\n2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle.\nHeat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking.\nCabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up.\nProtected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.\n", "metadata": {"Name": "Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver", "Brand": "Royal Gourmet", "Description": "", "Features": "Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways.\n2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle.\nHeat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking.\nCabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up.\nProtected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.000688076, 0.0022525787, -0.033721924, -0.018676758, -0.023406982, -0.006427765, -0.026123047, -0.0067329407, -0.059417725, 0.021408081, -0.030700684, 0.019500732, -0.017227173, -0.013893127, 0.018356323, -0.057769775, 0.020065308, 0.008598328, 0.005317688, -0.0031661987, 0.008216858, 0.019363403, -0.041168213, 0.059387207, 0.04156494, -0.07458496, -0.018692017, 0.014183044, 0.043395996, 0.013252258, 0.023910522, -0.0031528473, 0.04663086, -0.010871887, -0.03869629, -0.03881836, 0.014434814, -0.041778564, -0.052368164, 0.054229736, 0.0020313263, 0.0045318604, -0.020248413, -0.0008711815, -0.033233643, -0.031585693, 0.006565094, -0.010414124, 0.031982422, -0.007511139, 0.004558563, -0.01033783, 0.0030078888, -0.029296875, -0.02722168, -0.006378174, -0.007171631, 0.03289795, 0.01977539, -0.017959595, -0.027282715, 0.000688076, 0.016693115, 0.024307251, -0.053009033, 0.047088623, 0.09088135, -0.033721924, 0.0016622543, -0.07128906, -0.017211914, 0.0135269165, 0.042053223, -0.042114258, -0.050231934, 0.015144348, -0.008583069, -0.013664246, 0.041290283, -0.06982422, -0.012496948, 0.007205963, 0.040496826, -0.0014047623, -0.028137207, -0.025741577, -0.018493652, -0.00881958, 0.022201538, -0.026687622, 0.006340027, -0.011543274, -0.0309906, 0.05810547, 0.008712769, -0.02204895, -0.0317688, -0.07647705, 0.05419922, 0.00077724457, 0.060638428, -0.05493164, 0.053222656, 0.01399231, -0.009384155, 0.07470703, 0.025939941, 0.06939697, 0.027618408, -0.009353638, 0.025772095, 0.02986145, 0.009407043, -0.06341553, 0.0036468506, 0.0287323, 0.009521484, 0.05419922, 0.05026245, 0.02746582, -0.015594482, 0.023010254, -0.037017822, 0.04510498, 0.0038795471, 0.011688232, 0.013450623, 0.003396988, -0.056488037, 0.029174805, -0.026657104, -0.0047454834, 0.08300781, 0.06384277, 0.016967773, -0.027496338, 0.035003662, -0.004058838, 0.036590576, -0.034301758, 0.024337769, 0.0057868958, 0.036834717, 0.017074585, -0.045562744, 0.02168274, 0.017822266, 0.001209259, -0.028884888, -0.0491333, -0.018173218, -0.030517578, 0.024871826, 0.017044067, -0.045959473, 0.01235199, -0.025634766, 0.010612488, -0.025054932, -0.013122559, -0.07366943, -0.040893555, -0.019195557, -0.042633057, -0.07305908, 0.085998535, 0.03842163, 0.0023880005, 0.024734497, 0.030212402, -0.021209717, -0.019622803, 0.006061554, 0.03918457, 0.006668091, 0.04144287, 0.045135498, 0.025222778, 0.049682617, -0.071777344, -0.072265625, -0.05581665, 0.10809326, -0.063964844, -0.013183594, -0.021072388, 0.015556335, 0.01600647, 0.023727417, 0.017913818, 0.013389587, 0.0006155968, 0.030838013, -0.002412796, 0.0317688, -0.011627197, -0.0259552, 0.01171875, -0.012588501, -0.061157227, 0.029754639, -0.017700195, 0.0079422, 0.02532959, -0.006980896, -0.01878357, 0.0016889572, -0.018234253, -0.011070251, -0.0107040405, 0.0044670105, -0.020736694, -0.0033988953, -0.006450653, -0.027816772, -0.029037476, -0.05014038, 0.031433105, 0.0015821457, 0.011314392, 0.008049011, -0.0073394775, 0.032318115, -0.0053520203, 0.04269409, 0.015716553, -0.019760132, -0.0045661926, 0.034179688, 0.020141602, -0.03111267, 0.025283813, 0.08312988, 0.047729492, 0.006416321, 0.059051514, 0.07183838, 0.03543091, -0.049438477, -0.03692627, -0.0016174316, -0.013839722, -0.046722412, 0.02822876, 0.019073486, -0.023757935, -0.014640808, 0.048309326, -0.007896423, 0.013000488, 0.06774902, 0.002281189, 0.016326904, 0.061828613, -0.008430481, 0.009506226, -0.019592285, 0.017456055, -0.004837036, -0.0058937073, -0.0063285828, 0.031433105, 0.012001038, -0.0011854172, 0.018600464, -0.00053453445, 0.03353882, 0.02658081, -0.042999268, -0.0056419373, 0.016647339, 0.0395813, 0.0053901672, 0.012573242, -0.008651733, 0.0033168793, -0.011962891, -0.0025253296, 0.025863647, 0.011405945, 0.0055885315, 0.009933472, -0.03552246, -0.013076782, 0.034057617, 0.040252686, -0.01550293, -0.009933472, -0.020568848, -0.022781372, 0.02619934, -0.0016708374, -0.005027771, 0.002784729, -0.009925842, -0.034057617, 0.079711914, 0.013305664, 0.0020256042, 0.0059928894, 0.0023822784, 0.021850586, -0.007583618, -0.0102005005, 0.0068473816, -0.011230469, -0.011512756, 0.013305664, 0.012916565, -0.020721436, -0.0030460358, 0.020950317, 0.021331787, -0.056030273, 0.051239014, 0.023406982, 0.00052785873, 0.025909424, 0.008003235, 0.034942627, -0.015808105, 0.007549286, -0.050445557, -0.014961243, 0.006126404, 0.0206604, -0.026473999, -0.0109939575, -0.039611816, 0.005569458, 0.0032348633, -0.018585205, 0.002708435, 0.03805542, 0.0011949539, -0.0012874603, 0.0062675476, 0.005542755, -0.0029411316, -0.050628662, 0.0027713776, -0.035888672, 0.007633209, -0.004142761, -0.036193848, -0.021255493, -0.014503479, -0.006919861, -0.017623901, -0.0098724365, 0.0138168335, 0.0011444092, -0.003206253, -0.023284912, 0.00308609, 0.0015010834, -0.009971619, -0.030029297, -0.002910614, -0.062927246, -0.03253174, -0.038604736, -0.08465576, -0.047576904, 0.11444092, -0.005657196, -0.08642578, -0.034088135, -0.02659607, -0.008110046, 0.025100708, -0.027694702, -0.07513428, -0.033843994, -0.049072266, 0.030532837, 0.05255127, -0.021316528, -0.0051460266, 0.0029087067, -0.00035643578, 0.009216309, -0.013076782, -0.022476196, 0.020523071, 0.050964355, 0.03100586, 0.041503906, 0.0013036728, -0.01146698, -0.010444641, 0.028045654, -0.053894043, -0.003780365, -0.03591919, 0.010879517, -0.0045547485, -0.022888184, -0.016326904, -0.0037269592, -0.03894043, 0.00466156, -0.01285553, -0.03378296, -0.013999939, -0.092285156, -0.033294678, -0.03878784, 0.01737976, 0.010627747, -6.979704e-05, 0.017166138, -0.002840042, -0.0024719238, -0.009384155, 0.0038070679, -0.027404785, -0.0013856888, -0.0019483566, 0.0051193237, 0.010856628, -0.016296387, -0.009361267, 0.0059547424, -0.025421143, 0.050354004, -0.03717041, 0.022354126, -0.013824463, 0.0078086853, -0.014968872, 0.0043678284, -0.048797607, 0.0036888123, 0.0068855286, 0.009552002, 0.013160706, -0.045928955, 0.04949951, -0.020355225, -0.068481445, -0.006008148, 0.006706238, 0.0053482056, 0.017608643, -0.03652954, -0.0002450943, -0.068359375, -0.025650024, -0.055786133, 0.0034809113, 0.009277344, 0.029159546, 0.025863647, 0.032043457, 0.04095459, -0.01852417, 0.052856445, 0.034301758, -0.033599854, -0.019882202, -0.055419922, 0.033721924, 0.029678345, 0.019363403, -0.032409668, 0.001625061, 0.01335144, -0.014816284, 0.0046424866, 0.004814148, 0.032470703, 0.026855469, -0.021438599, -0.0034332275, -0.041015625, 0.012588501, 0.0047912598, -0.0027561188, -0.038757324, -0.017074585, -0.019973755, -0.055633545, 0.119384766, 0.04711914, -0.023712158, 0.073791504, 0.07751465, -0.00831604, 0.034454346, 0.024047852, 0.009490967, 0.024642944, -0.008148193, -0.016662598, -0.0051956177, 0.007133484, -0.041412354, 0.023452759, 0.012191772, -0.0023765564, -0.0058937073, -0.034454346, -0.029266357, -0.020324707, -0.0020122528, 0.0435791, -0.025924683, 0.0052452087, 0.0065307617, 0.0042495728, -0.028564453, 0.022506714, 0.010787964, -0.016967773, 0.0023174286, 0.0043563843, -0.0043029785, -0.009506226, -0.0072402954, 0.0073394775, 0.024902344, 0.00055885315, 0.030441284, -0.008056641, 0.013923645, -0.035858154, 0.027023315, -0.037994385, -0.028396606, 0.038482666, 0.011405945, 0.03164673, 0.030578613, -0.026260376, 0.0635376, -0.01689148, 0.008621216, 0.005870819, -0.018981934, -0.008598328, 0.004146576, 0.012519836, 0.006378174, 0.01638794, -0.07348633, -0.018127441, -0.03012085, -0.06524658, -0.028930664, -0.0093307495, -0.0005950928, -0.07336426, -0.036834717, -0.012138367, -0.0692749, -0.022506714, -0.0031967163, -0.0317688, -0.0016126633, -0.04574585, 0.025497437, -0.020767212, -0.0007572174, -0.004524231, 0.02130127, 0.032989502, 0.02444458, 0.034179688, -0.031921387, -0.026168823, -0.015823364, 0.099731445, -0.0051727295, 0.037322998, -0.03967285, -0.032958984, -0.023513794, 0.009399414, 0.014778137, -0.016540527, 0.026290894, -0.0003809929, -0.06750488, 0.0011587143, -0.00680542, 0.010307312, -0.032165527, -0.029312134, -0.022338867, 0.03640747, -0.007423401, 0.0028247833, -0.020645142, 0.030593872, -0.00076055527, -0.01638794, -0.048828125, -0.008346558, 0.012451172, -0.002878189, 0.0056152344, -0.0033683777, -0.032287598, 0.022399902, 0.021759033, 0.04763794, -0.023590088, -0.008087158, 0.010658264, 0.010360718, 0.0053253174, -0.02003479, 0.026885986, -0.010482788, 0.00831604, -0.077697754, 0.0769043, 0.027282715, 0.0028495789, 0.003042221, -0.026367188, -0.010093689, -0.05657959, -0.020690918, -0.03439331, 0.0006380081, -0.02885437, -0.024642944, 0.0031986237, -0.035949707, 0.011436462, 0.020874023, -0.040283203, -0.00025367737, -0.017700195, 0.04058838, -0.018295288, 0.006111145, 0.042266846, 0.01083374, 0.0143966675, 0.00894928, -0.022064209, 0.0061912537, -0.034851074, -0.010246277, 0.008262634, -0.031311035, -0.016036987, 0.0057296753, 0.016082764, -0.031311035, 0.024993896, 0.027374268, 0.0002837181, 0.01675415, 0.027282715, -0.0038833618, -0.000992775, -0.03640747, -0.0014276505, -0.035461426, -0.02468872, 0.015899658, -0.039001465, -0.01537323, 0.041015625, -0.054779053, 0.052124023, 0.025405884, -0.0552063, 0.05984497, -0.011749268, 0.0062179565, -0.014289856, 0.037963867, -0.0025234222, 0.02986145, -0.05404663, 0.011505127, 0.003452301, 0.022018433, 0.016586304, -0.025405884, 0.016418457, -0.055847168, -0.0075912476, 0.015167236, 0.06359863, -0.018188477, -0.0018548965, 0.02961731, -0.00995636, -0.04937744, -0.0034370422, -0.037322998, -0.020446777, -0.054473877, 0.032043457, 0.043304443, -0.016098022, -0.0034637451, -0.055603027, 0.015670776, -0.0044059753, -0.06933594, 0.0011177063, 0.010231018, 0.020141602, 0.016433716, 0.002773285, -0.0022239685, 0.009094238, -0.03161621, -0.033477783, -0.026290894, 0.04498291, 0.004814148, 0.033843994, -0.029571533, -0.0033016205, 0.010292053, -0.028625488, 0.003063202, 0.014778137, -0.042419434, -0.022644043, 0.013412476, 0.015350342, -0.005973816, 0.050628662, 0.026107788, -0.028961182, -0.0034561157, -0.030212402, 0.016983032, 0.009437561, -0.033996582, 0.114746094, 0.048431396, 0.0037956238, 0.027404785, -0.006969452, -0.030548096, -0.0061683655, -0.0013284683, -0.072509766, 0.0003709793, -0.025619507, 0.0121154785, 0.0027122498, -0.017822266, -0.03564453, 0.03692627, -0.010986328, -0.004135132, -0.040039062, -0.030227661, 0.004764557, -0.045776367, 0.018066406, -0.0064430237, -0.010696411, -0.009017944, -0.015007019, -0.053100586, 0.0044021606, 0.016967773, 0.014419556, -0.013877869, -0.023544312, -0.0020656586, 0.04269409, 0.024276733, 0.05908203, -0.0059661865, 0.0025558472, 0.0051956177, 0.025497437, -0.017532349, 0.031829834, -0.041656494, 0.004962921, 0.00178051, -0.0033931732, 0.027618408, 0.0051078796, -0.028274536, -0.043518066, 0.0847168, 0.024169922, 0.023117065, 0.040039062, 0.026290894, -0.05441284, -0.055999756, 0.012031555, -0.00655365, -0.05645752, -0.024383545, 0.0006699562, -0.07824707, 0.005016327, -0.027053833, 0.022277832, -0.0046195984, 0.023849487, 0.018951416, -0.03314209, 0.03704834, -0.0017538071, 0.039031982, 0.012458801, -0.043029785, 0.030593872, -0.029067993, -0.0047340393, -0.0005249977, -0.05960083, -0.007297516, 0.041412354, 0.0035037994, 0.00027275085, -0.015792847, 0.0063819885, 0.0068511963, -0.05984497, 0.027648926, -0.012313843, -0.016708374, -0.0026302338, -0.04638672, -0.032836914, 0.008605957, 0.049346924, -0.02041626, 0.022003174, 0.00374794, 0.032409668, -0.003692627, -0.007987976, -0.015357971, -0.01374054, 0.011810303, -0.009841919, 0.005958557, -0.0018157959, -0.05621338, -0.033416748, 0.042144775, -0.015899658, -0.013366699, -0.019042969, 0.036346436, 0.003622055, 0.05831909, -0.013763428, -0.05343628, -0.026977539, 0.00687027, 0.008117676, 0.057250977, 0.0206604, 0.0028648376, 0.025772095, -0.01499939, 0.03955078, -0.016723633, 0.064819336, 0.038391113, -0.0005083084, -0.0541687, -0.028518677, -0.016860962, 0.01033783, -0.0055351257, 0.032989502, 0.02709961, 0.032226562, 0.018463135, 0.06390381, 0.07910156, 0.015060425, 0.046875, 0.0039596558, -0.019058228, 0.0058555603, 0.037750244, -0.028320312, -0.013694763, 0.008644104, 0.013618469, 0.0072746277, 0.0061416626, -0.049621582, 0.032958984, -0.005466461, -0.003145218, -0.03503418, 0.027572632, -0.0020389557, 0.059539795, -0.028915405, 2.6524067e-05, -0.018569946, -0.00869751, -0.02519226, -0.019638062, -0.04336548, 0.030548096, 0.0035896301, -0.033721924, -0.0059928894, -0.0048942566, 0.0061073303, -0.06628418, -0.012214661, -0.02067566, 0.02809143, 0.019744873, 0.04360962, -0.012901306, -0.08319092, -0.041229248, 0.046691895, -0.058929443, -0.033050537, 0.004676819, 0.016967773, 0.020935059, 0.027404785, 0.054901123, 0.055236816, 0.029251099, 0.008842468, -0.020751953, -0.01411438, -0.010604858, 0.02520752, -0.014427185, -0.033935547, -0.010025024, 0.048614502, -0.009017944, 0.0050964355, 0.018707275, -0.008422852, -0.0859375, -0.016326904, -0.03604126, -0.007785797, -0.01398468, 0.003894806, -0.0021209717, -0.00038218498, -0.024871826, 0.0036201477, 0.008773804, -0.017807007, 0.037384033, 0.013435364, 0.027297974, 0.0038337708, -0.090270996, -0.02432251, -0.03225708, 0.019042969, 0.018081665, 0.041412354, 0.004989624, 0.008972168, -0.008842468, -0.009727478, -0.020843506, -0.030654907, 0.007911682, -0.03326416, 0.023590088, -0.011764526, -0.034118652, -0.008804321, -0.030151367, -0.027008057, 0.05517578, 0.021835327, -0.020141602, -0.0046691895, -0.040618896, -0.0035266876, 0.0071105957, -0.05645752, -0.016281128, -0.008140564, 0.004573822, 0.023376465, 0.0047187805, 0.00630188, -0.01789856, 0.002861023, -0.023971558, 0.024902344, 0.022460938, 0.013038635, -0.020858765, 0.030761719, 0.03390503, -0.0007157326, -0.05493164, -0.06591797, -0.05053711, 0.017715454, 0.01058197, 0.0051193237, 0.049957275, -0.0055351257, 0.021133423, 0.007209778, 0.021026611, -0.020614624, 0.025512695, 0.074157715, 0.01687622, 0.028274536]}, "B00O4D1CUG": {"id": "B00O4D1CUG", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 3\nDescription: The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600\u00b0 F.\nFeatures: \n", "metadata": {"Name": "Standard Propane Fuel Cylinder - Pack of 3", "Brand": "Bernzomatic", "Description": "The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600\u00b0 F.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008956909, -0.0050811768, -0.04586792, -0.06878662, 0.028411865, -0.0236969, -0.007019043, 0.040863037, -0.040161133, 0.02029419, 0.020721436, 0.027648926, -0.02394104, -0.043884277, 0.02406311, -0.019577026, -0.0041275024, 0.028503418, 0.0035877228, -0.027359009, 0.006515503, -0.021820068, -0.021514893, 0.020065308, 0.024429321, -0.015129089, -0.0018615723, -0.0072898865, 0.0317688, 0.023254395, 0.016342163, -0.03378296, 0.0592041, -0.045043945, -0.018066406, -0.015335083, 0.035064697, -0.05392456, -0.05053711, 0.032409668, 0.011886597, -0.006511688, -0.04095459, 0.00422287, -0.054016113, -0.012504578, -0.010658264, 0.003211975, 0.057647705, 0.011581421, 0.008659363, 0.01651001, -0.018203735, 0.022018433, -0.022399902, 0.015808105, 0.030807495, -0.030792236, 0.032318115, -0.021835327, -0.020889282, -0.021469116, 0.045684814, -0.0010051727, -0.047607422, 0.022155762, 0.048736572, -0.029312134, 0.056396484, -0.046539307, -0.042938232, 0.043945312, 0.0037708282, -0.00541687, 0.003074646, 0.010574341, -0.004524231, 0.01663208, 0.023269653, 0.027526855, -0.04522705, -0.014572144, -0.054595947, -0.021362305, 0.017547607, 0.029464722, -0.034454346, -0.008857727, 0.012672424, -0.0024814606, -0.00920105, 0.013282776, 0.03552246, 0.016540527, -0.040100098, -0.009407043, -0.0158844, -0.060516357, 0.048583984, 0.015525818, 0.007286072, -0.02482605, 0.03692627, 0.006088257, -0.0003156662, 0.035614014, -0.006954193, -0.013671875, 0.006412506, 0.006416321, -0.01991272, -0.023880005, -0.0034561157, -0.0034046173, -0.0059318542, -0.008712769, -0.03604126, 0.029464722, -0.0054779053, 0.013809204, -0.0065956116, 0.012313843, 0.0034179688, -0.038116455, -0.0053710938, -0.0154953, -0.016921997, -0.014282227, -0.034606934, -0.0052261353, -0.030563354, 0.00084495544, 0.060150146, 0.078430176, 0.030792236, 0.00082731247, 0.01449585, 0.012245178, -0.010223389, 0.025054932, 0.01197052, -0.03201294, -0.02168274, 0.0082092285, 0.005710602, 0.042022705, 0.026779175, -0.021484375, -0.020431519, -0.001115799, -0.042816162, 0.0024089813, 0.018112183, -0.0034008026, 0.015487671, -0.025878906, 0.025512695, -0.03543091, -0.00047945976, -0.018981934, 0.033203125, -0.025177002, -0.0748291, -0.00016117096, -0.042053223, 0.028533936, 0.03881836, 0.004673004, 0.014183044, 0.046813965, -0.0154418945, -0.0121154785, 0.012290955, -0.00068998337, -0.011817932, 0.006565094, -0.01071167, 0.07373047, 0.0690918, -0.058135986, -0.047210693, -0.05404663, 0.16931152, -0.064819336, -0.011009216, -0.031707764, 0.019378662, -0.03265381, 0.0074539185, 0.0013923645, 0.01991272, 0.043029785, -0.00374794, -0.010604858, -0.020309448, -0.0116119385, -0.008285522, 0.021072388, -0.024307251, -0.0068893433, 0.048553467, 0.007572174, 0.023498535, 0.004245758, -0.013298035, 0.001499176, -0.02268982, 0.0009841919, 0.0010147095, 0.047729492, 0.0009608269, 0.017242432, -0.0035095215, -0.04711914, 0.00031971931, 0.024795532, -0.028427124, -0.008918762, -0.0062446594, -0.011894226, 0.006034851, -0.031173706, -0.002319336, 0.018371582, 0.043884277, -0.043884277, -0.0011835098, -0.026611328, 0.031051636, -0.0035591125, -0.013824463, 0.041015625, 0.109802246, 0.13134766, 0.007965088, 0.020965576, 0.08874512, 0.03277588, -0.020004272, -0.026168823, 0.0059280396, -0.011077881, 0.005027771, 0.051574707, 0.030578613, 0.024551392, 0.02848816, 0.009742737, -0.048583984, -0.0061302185, 0.050933838, 0.031585693, 0.025726318, 0.019210815, -0.05630493, 0.053894043, 0.0029640198, 0.030166626, -0.014465332, 0.006752014, -0.0119018555, 0.016143799, 0.002653122, 0.012008667, 0.018661499, 0.016189575, 0.059936523, 0.04940796, -0.005821228, -0.019592285, -0.010673523, 0.01222229, -0.007255554, -0.027114868, 0.034332275, -0.031188965, -0.019515991, 0.007698059, 0.00995636, -0.03173828, 0.008811951, -0.029937744, 0.012428284, 0.008590698, 0.052825928, 0.032989502, 0.028656006, 0.017669678, 0.001821518, -0.03326416, -0.0004324913, 0.020523071, -0.0090408325, 0.036102295, -0.0035476685, -0.03842163, 0.0129852295, -0.027618408, 0.022827148, -0.046569824, -0.013793945, 0.044281006, -0.015563965, 0.016479492, -0.0138168335, 0.007827759, -0.021438599, 0.04031372, 0.020233154, -0.074401855, 0.035583496, 0.017547607, 0.013183594, 0.051452637, -0.0062026978, -0.030776978, 0.03314209, 0.024307251, 0.022003174, -0.00021100044, -0.032196045, -0.0011453629, 0.00028538704, 0.0033607483, 0.008468628, -0.0016717911, 0.0015974045, 0.0030727386, 0.019958496, 0.021636963, -0.0049552917, 0.041534424, 0.019210815, 0.033599854, -0.012245178, -0.023971558, -0.002922058, 0.082336426, -0.011268616, -0.0637207, -0.033111572, -0.042755127, 0.0018672943, 0.00062942505, -0.027557373, -0.018493652, -0.0042495728, 0.010955811, -0.030578613, -0.0022659302, 0.018997192, 0.0011262894, 0.021530151, -0.031219482, 0.028076172, -0.00831604, -0.043151855, 0.025497437, 0.034210205, -0.04663086, -0.040985107, -0.022323608, -0.06689453, 0.04055786, 0.058685303, -0.010223389, 0.0048103333, -0.026168823, 0.03579712, 0.030838013, 0.008140564, 0.024902344, -0.038116455, -0.0056152344, 0.018157959, -0.022338867, 0.06976318, -0.009475708, -0.022735596, 0.025039673, -0.018295288, -0.0104599, -0.01626587, -0.050994873, 0.009735107, 0.02357483, 0.019104004, -0.022018433, 0.041503906, -0.0075683594, 0.025131226, 0.005176544, -0.0362854, -0.03866577, -0.004535675, 0.011207581, -0.026885986, 0.015777588, -0.0039596558, -0.015670776, -0.09991455, 0.04260254, 0.021118164, -0.022064209, -0.012496948, -0.03555298, -0.053741455, -0.044769287, 0.00982666, 0.038024902, -0.049835205, 0.0309906, -0.029541016, -0.009643555, 0.007095337, 0.0135650635, -0.019088745, -0.023513794, -0.01991272, 0.03930664, 0.06304932, -0.1005249, 0.02444458, 0.04824829, -0.0335083, -0.03918457, -0.0026168823, 0.028457642, -0.011993408, 0.0446167, -0.036865234, -0.0037727356, -0.029388428, -0.01537323, 0.0019340515, 0.008361816, 0.007896423, 0.008155823, 0.027389526, -0.0067214966, -0.016784668, -0.06500244, 0.0025730133, 0.023040771, -0.006866455, 0.0043640137, -0.07019043, 0.011940002, 0.017288208, -0.032226562, -0.01586914, -0.0050468445, 0.03643799, 0.014472961, -0.010040283, 0.044403076, -0.010032654, 0.023422241, 0.0050315857, 0.0024738312, -0.01096344, -0.01020813, 0.026382446, 0.0024261475, -0.020431519, -0.035858154, 0.045928955, 0.022918701, 0.0023994446, -0.023590088, -0.015655518, 0.066223145, 0.041168213, 0.01058197, -0.015380859, -0.0042419434, 0.007663727, 0.019119263, -0.024093628, -0.010620117, -0.025894165, 0.015365601, -0.053619385, 0.032562256, 0.03665161, -0.020965576, 0.03567505, -0.00029969215, -0.024917603, 0.041259766, 0.02029419, 0.020889282, -0.0036354065, 0.035125732, -0.03878784, 0.0037765503, 5.2273273e-05, 0.0040779114, 0.034210205, -0.0031776428, -0.02432251, 0.0055885315, -0.011657715, -0.03604126, -0.015197754, 0.0066108704, 0.009086609, -0.046875, 0.008010864, -0.001499176, -0.011383057, -0.05630493, 0.045166016, -0.008628845, 0.001288414, 0.025604248, -0.020126343, -0.047058105, -0.003540039, 0.023071289, -0.012588501, 0.0063819885, 0.0072021484, 0.001742363, 0.015106201, 0.0028972626, -0.0099487305, 0.030471802, -0.025268555, 0.0053710938, 0.023071289, 0.022064209, -0.021942139, -0.040771484, 0.036743164, -0.01537323, 0.00015366077, -0.005592346, -0.030212402, -0.049316406, 0.013366699, 0.035125732, -0.0059890747, -0.031402588, -0.016311646, -0.03201294, -0.039031982, -0.006549835, -0.020843506, -0.010101318, 0.0036621094, 0.0036087036, 0.03137207, 0.00121212, -0.05709839, 0.03314209, -0.017608643, 0.006504059, 0.01512146, -0.00856781, 0.019165039, 0.034454346, -0.014671326, -0.05807495, -0.04486084, 0.012054443, 0.0036792755, -0.010749817, -0.021621704, -0.026138306, -0.01449585, -0.014579773, 0.0019798279, -0.0059127808, 0.0101623535, 0.008995056, 0.008323669, 0.008285522, 0.01927185, 0.025421143, 0.01374054, 0.023666382, -0.023956299, 0.017807007, -0.0496521, -0.03152466, -0.00409317, -0.016967773, -0.07513428, -0.07623291, 0.05987549, 0.0047187805, 0.03201294, 0.032714844, -0.0073394775, 0.011375427, -0.018005371, -0.13391113, -0.043304443, -0.02558899, -0.06652832, 0.029052734, 0.008857727, -0.025497437, 0.015388489, 0.09527588, -0.018753052, -0.013084412, 0.009963989, -0.041870117, -0.022720337, 0.018035889, -0.043304443, 0.034179688, -0.06161499, -0.024276733, -0.016021729, -0.01058197, -0.018753052, -0.019805908, 0.0039482117, -0.00920105, 0.0064048767, -0.0048217773, -0.01725769, 0.018203735, 0.06585693, -0.012901306, -0.05026245, 0.0055389404, -0.06677246, -0.002878189, -0.018295288, -0.04663086, -0.0016622543, 0.013656616, 0.000582695, -0.017944336, 0.004798889, -0.013900757, 0.017929077, 0.019256592, -0.024230957, -0.029876709, 0.0619812, -0.0033359528, -0.013420105, 0.018997192, -0.017410278, -0.012428284, -0.018005371, -0.0068893433, -0.0129852295, -0.0059051514, 0.02067566, 0.008926392, -0.030456543, 0.022476196, -0.017868042, -0.011520386, -0.028259277, 0.0121536255, 0.0031661987, 0.012504578, -0.004421234, 0.018844604, 0.043670654, 0.0107803345, 0.01864624, -0.01878357, 0.004722595, 0.00041937828, 0.043792725, 0.0085372925, -0.0036239624, -0.020767212, 0.052337646, -0.025177002, 0.0029525757, -0.031585693, 0.014259338, 0.0010032654, 0.007282257, -0.010696411, -0.025817871, 0.023544312, -0.02986145, 0.012374878, -0.013450623, -0.030960083, -0.04324341, 0.015899658, -0.041290283, -0.03942871, -0.011962891, -0.045288086, -0.011932373, 0.007171631, 0.0027256012, -0.023971558, 0.016937256, 0.015289307, -0.0105896, -0.013130188, 0.00774765, -0.00548172, -0.056640625, -0.026855469, -0.0063476562, 0.012557983, -0.027740479, 0.007865906, -0.0362854, -0.003534317, -0.020217896, -0.032470703, -0.043670654, 0.039764404, 0.0044288635, 0.010017395, -0.059173584, -0.05987549, -0.030929565, -0.008850098, 0.010871887, -0.012718201, -0.049041748, -0.057525635, 0.003074646, 0.014350891, -0.0008649826, -0.039855957, 0.028366089, -0.021987915, -0.036499023, -0.03366089, 0.07733154, -0.024917603, 0.0051460266, 0.0234375, -0.003736496, 0.016662598, 0.019607544, -0.0063209534, -0.012901306, 0.0016336441, 0.022888184, -0.026885986, -0.056640625, -0.024139404, -0.0016126633, -0.038269043, 0.0045051575, -0.026870728, 0.041137695, -0.011123657, 0.017608643, -0.060699463, -0.026046753, -0.022613525, 0.0044822693, 0.02017212, 0.0050621033, 0.008934021, -0.030853271, 0.0023536682, -0.06695557, -0.050445557, -0.0061836243, 0.012649536, 0.0078086853, -0.026153564, 0.0028190613, 0.04522705, 0.013397217, 0.039367676, 0.053833008, -0.07867432, -0.019897461, -0.008987427, 0.021133423, -0.014976501, -0.05117798, 0.012481689, -0.034179688, 0.0066375732, -0.016662598, 0.054229736, -0.018569946, 0.045532227, -0.040252686, 0.033203125, -0.0010232925, 0.024917603, 0.015014648, -0.0340271, -0.061340332, 0.015174866, 0.042419434, -0.047668457, 0.013076782, -0.02279663, -0.011024475, 0.007133484, -0.013145447, -0.00932312, 0.004562378, 0.0574646, -0.013664246, 0.04071045, 0.0026359558, 0.0014295578, 0.037078857, -0.03778076, 0.04650879, -0.009887695, -0.000620842, -0.0072898865, 0.048217773, -0.0079956055, -0.007713318, 0.036010742, -0.009841919, 0.023391724, -0.018447876, -0.0017271042, 0.048950195, -0.022476196, -0.015472412, 0.009552002, 0.007587433, -0.031677246, -0.028778076, 0.004169464, -0.014709473, 0.025909424, 0.013946533, 0.028198242, -0.0009860992, 0.042510986, -0.008682251, 0.01374054, -0.020004272, -0.010719299, -0.008056641, 0.017562866, 0.021621704, -0.02017212, -0.019348145, 0.07299805, 0.0055351257, 0.031219482, 0.045196533, -0.029296875, -0.00016844273, 0.02633667, -0.008239746, -0.04623413, -0.059783936, -0.021621704, 0.03164673, -0.037841797, 0.0013513565, 0.000538826, 0.037322998, 0.01940918, -0.044433594, 0.031036377, -0.06329346, 0.05581665, 0.036834717, 0.03781128, -0.10748291, -0.072753906, -0.024841309, -0.0049552917, -0.042816162, 0.08343506, -0.022583008, 0.010894775, 0.032043457, -0.0028877258, 0.054504395, -0.004043579, 0.015808105, -0.029174805, 0.027267456, 0.030532837, 0.006500244, -0.00818634, 0.015464783, -0.018997192, 0.0015306473, 0.008728027, -0.045684814, 0.0015306473, 0.0121536255, -0.03656006, -0.064453125, 0.038360596, -0.041900635, -0.036590576, 0.029922485, -0.08294678, 0.011375427, -0.023330688, -0.010292053, -0.022857666, -0.014541626, -0.05596924, 0.031433105, -0.017318726, 0.005493164, 0.01777649, -0.004600525, 0.0043563843, -0.04925537, 0.0033817291, 0.012741089, 0.04248047, -0.038635254, 0.03857422, -0.028305054, 0.016967773, -0.04699707, -0.016464233, -0.09448242, 0.024459839, -0.010688782, 0.016113281, 0.007762909, -0.0010623932, 0.0008392334, 0.030532837, 0.016326904, -0.012054443, 0.06518555, -0.041748047, -0.02168274, 0.026260376, 0.031829834, -0.0541687, -0.023529053, -0.017715454, -0.0095825195, 0.0058784485, 0.023544312, -0.0019397736, -0.024719238, 0.0052604675, 0.013954163, -0.032226562, 0.015777588, -0.00554657, 0.010719299, -0.021316528, -0.05368042, 0.010765076, 0.005962372, 0.040405273, 0.047180176, -0.012687683, 0.004436493, -0.032928467, -0.07659912, -0.03640747, -0.020477295, 0.038208008, 0.05218506, -0.008399963, -0.0155181885, 0.032470703, -0.029266357, 0.042755127, 0.03338623, -0.023086548, 0.0001718998, -0.03363037, 0.05331421, -0.0045433044, -0.01473999, 0.05303955, -0.023635864, -0.0013179779, 0.030075073, 0.055267334, -0.029327393, 0.020584106, -0.03503418, -0.00021922588, 0.035614014, -0.033355713, -0.037719727, -0.05239868, 0.022613525, 0.027862549, -0.010505676, 0.003408432, -0.005428314, -0.0027332306, -0.04397583, 0.0007944107, 0.0118255615, -0.022705078, -0.016189575, 0.012039185, 0.022476196, 0.0574646, -0.0126953125, -0.14990234, -0.05038452, 0.007785797, 0.025650024, -0.014663696, 0.07611084, -0.025024414, 0.0057868958, 0.017349243, -0.013259888, -0.014785767, 0.007209778, 0.055908203, -7.748604e-05, 0.0072746277]}, "B00O4D1F44": {"id": "B00O4D1F44", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 6\nDescription: Standard propane fuel cylinder pack of 6 de bernzomatic\nFeatures: \n", "metadata": {"Name": "Standard Propane Fuel Cylinder - Pack of 6", "Brand": "Bernzomatic", "Description": "Standard propane fuel cylinder pack of 6 de bernzomatic", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017349243, -0.01789856, -0.054229736, -0.06549072, 0.0038547516, -0.0065689087, -0.029251099, 0.06365967, -0.047607422, 0.00096416473, 0.039520264, 0.051940918, -0.062194824, -0.048339844, 0.034179688, -0.021606445, 0.010574341, 0.06463623, 0.03137207, -0.016113281, 0.002412796, 0.011451721, -0.03564453, 0.06384277, -0.0035438538, -0.001947403, 0.020462036, -0.01651001, 0.010169983, 0.005218506, 0.006378174, -0.013465881, 0.014335632, -0.0003681183, 0.0012025833, 0.0335083, 0.011375427, -0.0066108704, -0.014205933, 0.02293396, -0.0211792, 0.012825012, 0.07757568, -0.043182373, -0.009460449, 0.00032901764, -0.02168274, -0.020050049, 0.023040771, 0.0006160736, 0.012237549, -0.032958984, -0.0031147003, 0.021148682, -0.0064315796, 0.015640259, -0.0030784607, 0.052642822, 0.036590576, 0.0073776245, -0.029067993, 0.025375366, 0.0076560974, -0.02708435, -0.027542114, 0.015716553, 0.046051025, -0.010597229, 0.034820557, -0.051696777, -0.032287598, 0.033477783, -0.00674057, -0.011474609, -0.0062026978, 0.021957397, -0.026382446, -0.0068473816, 0.036468506, 0.019485474, -0.03652954, -0.01398468, -0.04815674, 0.024978638, -0.023666382, 0.04272461, -0.031143188, -0.016082764, -0.0009994507, 0.002784729, 0.0034866333, 0.02848816, -0.027374268, 0.026870728, 0.0012130737, -0.023483276, 0.017456055, -0.003004074, 0.05581665, 0.0119018555, -0.02722168, -0.0184021, -0.016418457, -0.004749298, -0.008575439, 0.010009766, -0.011604309, 0.0014886856, -0.0007724762, 0.025009155, -0.029434204, -0.033691406, 0.028701782, 0.002155304, 0.0044059753, -0.0435791, -0.030349731, 0.068847656, 0.0099487305, 0.019577026, -0.0006322861, 0.020874023, 0.0035877228, -0.050323486, -0.018920898, -0.021957397, -0.014801025, -0.012168884, -0.06878662, 0.0026245117, -0.0013046265, 0.006614685, 0.013496399, 0.06201172, 0.001127243, 0.002450943, 0.02772522, 0.02406311, -0.013343811, 0.012817383, 0.031204224, -0.021636963, -0.03768921, 0.01802063, -0.008964539, 0.057769775, 0.037475586, -0.029159546, -0.022415161, -0.021484375, -0.06088257, -0.0037250519, 0.022735596, 0.024383545, -0.0058670044, 0.008399963, 0.016296387, -0.0017242432, -0.021881104, -0.010505676, 0.009361267, -0.02911377, -0.050842285, -0.009300232, -0.043029785, 0.025909424, 0.045196533, 0.00020420551, 0.005504608, 0.050323486, -0.034240723, 0.014152527, 0.012168884, 0.015991211, 0.008270264, 0.009780884, -0.050079346, -0.005104065, 0.06762695, -0.0357666, -0.047943115, -0.039764404, 0.05407715, -0.0047302246, -0.025009155, -0.053955078, 0.03010559, -0.022384644, 0.028030396, 0.0028057098, 0.0625, 0.016662598, 0.052490234, -0.00983429, -0.014801025, -0.005874634, -0.048583984, 0.038116455, -0.04019165, -0.012489319, 0.021072388, 0.003501892, -0.010276794, 0.024002075, -0.025756836, -0.0008673668, -0.013259888, 0.003967285, -0.0047187805, 0.026824951, -0.0023021698, 0.024108887, 0.010879517, -0.085510254, -0.00982666, 0.0496521, -0.018676758, -0.030334473, 0.0077781677, -0.022277832, 0.0065460205, 0.020217896, -0.016433716, 0.00907135, -0.0015306473, -0.022659302, -0.0039100647, -0.020736694, 0.016433716, -0.0071868896, 0.026916504, 0.030838013, 0.05392456, 0.0848999, -0.002199173, 0.033477783, 0.05343628, 0.043670654, -0.017089844, -0.030776978, -0.001531601, 0.009635925, -0.0025730133, 0.073913574, 0.040130615, 0.048828125, 0.021728516, 0.027542114, -0.037597656, 0.009338379, 0.042022705, 0.007987976, 0.02507019, 0.043060303, -0.07635498, 0.04486084, -0.008811951, 0.009170532, 0.023162842, 0.020553589, -0.030258179, 0.076049805, 0.05078125, 0.020599365, 0.029464722, 0.032226562, 0.091430664, 0.08496094, -0.019073486, -0.018798828, -0.012382507, 0.06573486, -0.003200531, -0.007888794, 0.028717041, -0.050598145, -0.046325684, 0.026809692, 0.026123047, -0.014526367, 0.0043296814, -0.012672424, 0.004283905, 0.0011539459, 0.034454346, -0.0059890747, 0.02645874, 0.01134491, -0.05709839, -0.050323486, -0.014549255, 0.02281189, -0.033477783, 0.015457153, 0.025039673, -0.029251099, -0.0057144165, -0.0063476562, 0.019165039, -0.024398804, -0.047698975, 0.053009033, 0.00869751, 0.009811401, -0.019714355, 0.016021729, -0.0003774166, 0.015090942, 0.00086164474, -0.028671265, -0.017242432, -0.005794525, 0.020996094, 0.044921875, 0.0070114136, 0.00031018257, 0.012145996, 0.028320312, 0.010116577, -0.036468506, -0.04623413, 0.028457642, 0.017593384, -0.0070648193, 0.01852417, 0.0039863586, -0.034179688, 0.017562866, 0.016784668, -0.01574707, -0.06384277, -0.016036987, -0.030380249, 0.061920166, -0.014076233, 0.0063056946, 0.01878357, 0.04537964, 0.0010814667, -0.053985596, -0.013809204, -0.036621094, -0.02168274, -0.0018720627, -0.0256958, -0.011634827, 0.001917839, -0.0065078735, 0.0069732666, 0.021530151, -0.01914978, 0.022781372, 0.04638672, 0.0069885254, 0.05529785, -0.03250122, -0.07489014, 0.05621338, 0.04360962, -0.017807007, -0.01977539, -0.023025513, -0.042663574, 0.02609253, 0.008705139, -0.0055999756, 0.011657715, 0.0015277863, 0.019241333, 0.020431519, -0.021881104, 0.0009431839, -0.066101074, 0.0074691772, 0.036712646, 0.01411438, 0.06451416, -0.022537231, -0.042755127, 0.010688782, 0.00064229965, 0.003232956, -0.025680542, -0.030654907, -0.021514893, 0.016601562, 0.0051002502, 0.00036263466, 0.028213501, -0.0107803345, 0.03161621, 0.04626465, -0.019760132, -0.004634857, -0.010803223, -0.0013580322, -0.03237915, 0.009628296, -0.05126953, 0.0064849854, -0.05291748, -0.0035324097, -0.003528595, -0.046691895, 0.023986816, -0.07366943, -0.018249512, -0.04421997, 0.019699097, -0.025939941, 0.013023376, 0.004962921, 0.004142761, -0.037139893, -0.015823364, -0.010536194, -0.015167236, -0.019317627, -0.014213562, 0.03677368, 0.053497314, -0.07354736, 0.027191162, 0.0501709, -0.04046631, -0.010879517, 0.011192322, 0.029220581, 0.008392334, 0.03616333, -0.00434494, -0.010238647, -0.04473877, -0.038269043, 0.02798462, 0.030380249, -0.01940918, 0.009223938, -0.024429321, 0.019119263, 0.014411926, -0.038238525, -0.018447876, 0.06878662, -0.032165527, 0.026611328, -0.062927246, 0.0026988983, 0.012069702, -0.031402588, 0.0022525787, -0.00031518936, 0.029067993, 0.008796692, -0.016281128, 0.016204834, -0.0032997131, 0.02078247, 0.00920105, 0.02671814, -0.004135132, -0.012771606, 0.04748535, -0.0057411194, -0.023529053, -0.024169922, 0.009017944, 0.014259338, -0.0003504753, -0.032470703, -0.022583008, 0.07965088, 0.0011425018, -0.015914917, 0.017120361, -0.026412964, -0.0043182373, 0.030258179, -0.02355957, -0.012367249, -0.015960693, 0.009605408, -0.04449463, 0.023620605, 0.032196045, 0.0008945465, -0.00020992756, 0.0050621033, -0.014778137, 0.030975342, 0.0105896, 0.022140503, 0.016998291, 0.021011353, -0.0069274902, -0.012641907, -0.00066900253, 0.018188477, 0.018539429, -0.01348114, -0.036010742, -0.0027561188, 0.011405945, -0.02760315, 0.0046043396, -0.014778137, 0.023162842, -0.0061950684, 0.026748657, 0.016418457, 0.036987305, -0.015991211, 0.04458618, 0.016616821, -0.008766174, 0.039031982, -0.009162903, -0.039367676, 0.010635376, 0.017486572, 0.013587952, -0.013282776, 0.022094727, 0.0034866333, -0.0038700104, 0.0006842613, -0.0021400452, 0.002588272, -0.022613525, 0.017608643, -0.0036716461, 0.025863647, -0.005882263, -0.030181885, 0.044555664, -0.037506104, -0.0027008057, 0.010040283, -0.03564453, -0.07006836, 0.0064888, 0.010940552, -0.0059547424, -0.04763794, -0.010932922, -0.02998352, 0.015853882, -0.0012340546, 0.001953125, -0.060546875, 0.021942139, 0.03918457, -0.006931305, 0.013519287, -0.051696777, 0.0026683807, -0.054138184, 0.025009155, 0.0020313263, 0.0043144226, 0.025924683, 0.028121948, -0.016403198, -0.04827881, -0.043701172, 0.014884949, -9.918213e-05, -0.005027771, 0.021240234, -0.046936035, -0.021530151, -0.047332764, 0.029281616, 0.06542969, -0.00920105, 0.014579773, -0.021057129, 0.0109939575, 0.008300781, 0.075805664, 0.02357483, 0.05303955, -0.04849243, 0.06512451, -0.044403076, -0.029907227, -0.012413025, -0.05886841, -0.079833984, -0.05441284, 0.06137085, 0.013267517, 0.012756348, -0.017120361, -0.005126953, 0.059448242, -0.06402588, -0.11138916, -0.07373047, -0.009552002, -0.042175293, 0.030319214, 0.014762878, -0.018325806, -0.004650116, 0.067993164, -0.028564453, -0.0013713837, -0.0031394958, -0.021148682, -0.03112793, 0.01838684, -0.021438599, -0.0075683594, -0.050109863, 0.0044784546, -0.04135132, 0.030426025, -0.0043029785, -0.0048942566, 0.013175964, -0.017623901, 0.014572144, -0.008255005, -0.016799927, 0.050872803, 0.02758789, 0.02709961, -0.04522705, -0.0066108704, -0.009803772, -0.02293396, -0.007709503, -0.020629883, 0.009086609, 0.0015707016, 0.0047569275, -0.016601562, 0.0013027191, 0.0181427, -8.6545944e-05, 0.007045746, -0.020126343, -0.03050232, 0.039093018, -0.029342651, -0.032104492, 0.00819397, -0.010017395, -0.0032444, 0.003364563, 0.0017004013, -0.023269653, 0.012039185, 0.004348755, 0.018722534, -0.033813477, 0.007858276, -0.020874023, 0.004055023, 0.006462097, 0.0473938, -0.010299683, 0.047302246, -0.009307861, 0.030059814, 0.023757935, 0.012016296, 7.587671e-05, -0.012573242, 0.0063972473, -0.016952515, -0.0093688965, 0.023788452, 0.016616821, -0.022613525, 0.049743652, -0.0013103485, -0.03253174, -0.01876831, 0.01826477, 0.025863647, 0.00819397, -0.029083252, -0.007762909, 0.024215698, -0.012046814, 0.011444092, 0.02355957, -0.04397583, -0.039367676, 0.009223938, -0.0051078796, -0.0473938, 0.01663208, 0.0317688, -0.030517578, 0.0054740906, 0.03894043, -0.013435364, -0.0077171326, -0.0008468628, -0.015007019, -0.017227173, -0.013153076, 0.018814087, -0.037872314, 0.009025574, -0.0082473755, 0.018218994, -0.0049591064, -0.02017212, -0.05895996, -0.021087646, -0.0015697479, -0.0031776428, 0.02835083, 0.04623413, 0.031280518, -0.0067710876, -0.0602417, -0.03152466, -0.028244019, -0.059417725, -0.025009155, 0.011390686, -0.047424316, -0.028198242, 0.010231018, 0.042877197, -0.007270813, 0.0019741058, 0.061523438, -0.030563354, -0.03111267, -0.07171631, 0.045684814, -0.01499939, -0.008522034, 0.011062622, 0.013946533, 0.0075302124, 0.023498535, -0.0107803345, -0.009384155, 0.05407715, 0.012619019, 0.006324768, -0.04534912, -0.01272583, -0.040283203, 0.012779236, -0.014274597, -0.036499023, 0.02180481, -0.026870728, 0.0032463074, -0.04232788, -0.036376953, -0.0030384064, -0.0074005127, 0.009162903, -0.014511108, 0.014892578, -0.034362793, 0.012535095, -0.06964111, -0.080200195, -0.050231934, 0.0056381226, 0.030822754, 0.013626099, -0.00970459, 0.020629883, -0.010063171, -0.018218994, 0.035949707, -0.03353882, 0.01309967, 0.044921875, 0.0015087128, 0.009376526, -0.093688965, -0.013763428, -0.027313232, 0.03564453, 0.029159546, 0.03515625, -0.012435913, 0.027832031, -0.008369446, 0.014793396, 0.053009033, 0.007610321, 0.045074463, 0.014762878, -0.031402588, 0.017425537, 0.024505615, -0.018447876, 0.02394104, -0.023605347, 0.010063171, 0.022460938, -0.011940002, -0.033050537, -0.0140686035, 0.074523926, -0.00340271, 0.05331421, 0.013031006, 0.016357422, 0.008644104, -0.024154663, 0.0010929108, 0.010795593, -0.020355225, -0.02709961, 0.024719238, 0.026885986, 0.0053863525, 0.026519775, -0.0062713623, 0.044403076, 0.0029830933, 0.013153076, 0.024398804, -0.033813477, 0.0026988983, 0.0184021, 0.016616821, 0.0044174194, -0.053222656, -0.02229309, -0.04660034, 0.050628662, 0.033294678, 0.015457153, 0.0023460388, 0.059783936, 0.029388428, 0.025741577, -0.020568848, 0.005657196, 0.03250122, -0.01398468, 0.006942749, -0.018722534, -0.025283813, 0.045532227, 0.026809692, 0.017684937, 0.05328369, -0.020248413, 0.0074691772, -0.024139404, 0.018676758, -0.03555298, -0.06768799, -0.024520874, 0.021774292, -0.013305664, 0.026535034, 0.0019397736, 0.032226562, 0.0491333, -0.04333496, 0.039215088, -0.05834961, 0.06890869, 0.032348633, 0.062805176, -0.07550049, -0.07873535, -0.02381897, -0.03552246, -0.01939392, 0.025878906, -0.042907715, 0.02798462, 0.017578125, -0.035949707, 0.02734375, -0.011810303, -0.009132385, -0.04397583, 0.022994995, 0.012939453, -0.0019035339, -0.01008606, -0.008872986, -0.009483337, 0.016220093, -0.0020065308, -0.011787415, -0.024276733, 0.013366699, -0.01826477, -0.06311035, 0.041107178, -0.020599365, -0.04043579, 0.02229309, -0.074645996, -0.005809784, 0.005218506, 0.026245117, -0.06323242, 8.589029e-05, -0.045959473, -0.022827148, -0.0446167, 0.02178955, 0.039916992, -0.021499634, -0.0052337646, -0.021621704, 0.017623901, 0.019683838, 0.05545044, -0.03604126, 0.037078857, -0.035125732, 0.0008597374, -0.034606934, 0.0007176399, -0.08905029, -0.008377075, -0.018661499, -0.002105713, -0.021408081, -0.023147583, -0.007511139, 0.069885254, 0.0029582977, -0.0043945312, 0.07550049, -0.03326416, 0.00844574, 0.00017678738, 0.024719238, 0.0015583038, -0.061553955, -0.052215576, -0.020263672, 0.03878784, 0.010360718, -0.012741089, 0.041778564, 0.0017461777, 0.019927979, -0.05291748, 0.036865234, -0.008094788, -0.0015974045, -0.004108429, -0.058502197, -0.031143188, -0.04031372, 0.012336731, 0.02708435, -0.032043457, 0.015472412, -0.03286743, -0.068115234, -0.039093018, -0.028320312, 0.027359009, 0.07678223, 0.01473999, -0.019332886, 0.036621094, -0.0107421875, 0.004257202, 0.007286072, 0.023864746, -0.005054474, 0.019592285, 0.033081055, -0.010108948, -0.0022621155, 0.032348633, -0.035491943, -0.016098022, 0.0049324036, -0.00061035156, -0.007534027, 0.0055618286, -0.036743164, 0.009712219, 0.0031318665, -0.02368164, -0.035614014, -0.040008545, 0.027435303, 0.0076026917, -0.008735657, -0.0021438599, 0.008544922, -0.0020580292, -0.0637207, 0.04623413, 0.027923584, 0.048095703, -0.04824829, 0.09448242, 0.07220459, 0.07434082, 0.006374359, -0.097717285, -0.051116943, 0.053100586, 0.051696777, -0.040802002, 0.08544922, -0.045684814, 0.0020332336, 0.034210205, -0.04650879, -0.012130737, -0.03074646, 0.036834717, -0.007843018, -0.01638794]}, "B08J3WDZCP": {"id": "B08J3WDZCP", "original": "Brand: SNAN\nName: SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification\nDescription: SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!\nFeatures: \ud83d\udd25\u3010 FASHION DESIGN\u3011This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc.\n\ud83d\udd25\u3010 SAFE & WARM BONFIRE EXPERIENCE\u3011 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere\n\ud83d\udd25\u3010DIMENSIONS & PACKING INCLUDED\u3011Overall table size : L32\" x W32\"x H25\", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual\n\ud83d\udd25\u3010CONVENIENTLY ASSEMBLE & MULTI-FUNCTION\u3011Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.\n", "metadata": {"Name": "SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification", "Brand": "SNAN", "Description": "SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!", "Features": "\ud83d\udd25\u3010 FASHION DESIGN\u3011This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc.\n\ud83d\udd25\u3010 SAFE & WARM BONFIRE EXPERIENCE\u3011 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere\n\ud83d\udd25\u3010DIMENSIONS & PACKING INCLUDED\u3011Overall table size : L32\" x W32\"x H25\", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual\n\ud83d\udd25\u3010CONVENIENTLY ASSEMBLE & MULTI-FUNCTION\u3011Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0013599396, 0.0602417, -0.095336914, -0.010009766, 0.052520752, -0.03756714, 0.0046463013, -0.023406982, -0.07611084, 0.01083374, -0.028533936, 0.032684326, -0.032684326, -0.01210022, 0.047943115, -0.06414795, 0.023483276, 0.00073480606, 0.01423645, -0.029785156, 0.024749756, -0.015808105, -0.0064430237, 0.095947266, 0.039978027, -0.027557373, -0.0006351471, -0.026779175, 0.06335449, 0.016479492, 0.034454346, -0.014953613, 0.04598999, 0.013130188, -0.061187744, -0.030395508, -0.029190063, 0.008857727, -0.040924072, 0.03945923, -0.0005578995, 0.012992859, -0.024307251, 0.00013828278, -0.024414062, -0.052978516, 0.023025513, -0.017562866, -0.015296936, -0.02204895, -0.0357666, 0.01574707, -0.018341064, -0.004535675, 0.0047569275, 0.0076065063, 0.014389038, 0.019256592, 0.007980347, -0.03817749, -0.024551392, 0.03894043, 0.020553589, 0.022857666, -0.030044556, 0.016433716, 0.09136963, -0.005241394, 0.011810303, -0.058746338, -0.011451721, 0.04559326, 0.014030457, 0.0104522705, -0.038604736, -0.0069847107, 0.04156494, 0.019851685, 0.008361816, 0.00040531158, -0.05392456, -0.030181885, 0.00073337555, -0.036621094, 0.018341064, -0.0031642914, -0.027832031, 0.019363403, -0.0032920837, -0.06222534, -0.005558014, -0.0020885468, -0.042541504, 0.0033283234, -0.029632568, -0.03967285, -0.034973145, -0.052581787, 0.024932861, 0.010421753, 0.031433105, -0.049743652, 0.031341553, -0.015945435, -0.013954163, 0.06915283, 0.020980835, -0.012741089, -0.020965576, -0.0129776, -0.0076179504, -0.06414795, -0.004047394, -0.029067993, -0.028289795, 0.021881104, -0.0070495605, -0.040893555, 0.0141067505, -0.05441284, -0.017456055, -0.046142578, 0.01134491, 0.022903442, 0.060272217, 0.04248047, -0.05609131, 0.040130615, -0.043640137, 0.016708374, -0.01625061, 0.03616333, 0.028656006, 0.020706177, -0.03555298, -0.0068969727, 0.036895752, -0.014595032, 0.031280518, -0.029327393, 0.028060913, 0.009712219, 0.02645874, 0.012832642, -0.02633667, 0.007572174, 0.04336548, 0.018173218, -0.064575195, -0.05038452, -0.010765076, 0.049194336, 0.010253906, 0.03866577, -0.03805542, 0.0021381378, 0.015213013, -0.025817871, -0.021469116, -0.049621582, 0.02268982, -0.022445679, 0.0022354126, 0.01398468, -0.027572632, 0.026000977, -0.018035889, -0.004333496, 0.011550903, 0.043121338, -0.03125, 0.042633057, -0.0033226013, 0.020462036, 0.012687683, -0.011642456, -0.028411865, 0.053894043, 0.082458496, -0.056854248, -0.020858765, -0.028701782, 0.13867188, -0.01574707, 0.005596161, -0.007293701, 0.00970459, -0.014923096, 0.012138367, 0.0044059753, 0.00831604, 0.015823364, -0.026321411, 0.0006251335, 0.009765625, 0.00010091066, -0.07348633, -0.011375427, -0.021438599, 0.00012481213, -0.0040626526, 0.025131226, -0.021621704, -0.014320374, 0.009994507, -0.019439697, 0.009521484, 0.033447266, 0.016418457, 0.024597168, -0.012557983, -0.0335083, 0.003129959, 0.00020694733, 0.0016021729, 0.0038661957, -0.01751709, 0.027374268, -0.009963989, -0.011482239, 0.01550293, -0.0345459, 0.01096344, 0.022460938, -0.011299133, -0.07562256, 0.0011739731, -0.038024902, -0.0039863586, -0.019500732, -0.00032782555, 0.018737793, 0.054992676, 0.060668945, -0.015388489, 0.055145264, 0.08380127, 0.0814209, -0.028274536, -0.048828125, 0.009529114, -0.03640747, -0.03945923, 0.00093507767, -0.029220581, -0.044403076, 0.0146102905, -0.014305115, -0.014198303, 0.010238647, 0.03668213, 0.016998291, 0.027282715, 0.014053345, -0.034973145, 0.03643799, -0.058258057, -0.022354126, -0.012611389, 0.01209259, 0.005302429, 0.015007019, 0.02708435, -0.01675415, 0.024169922, -0.04660034, 0.03326416, 0.018707275, -0.02218628, -0.034332275, 0.03439331, 0.066101074, 0.017745972, 0.0023937225, -0.06530762, -0.008483887, 0.027038574, -0.0013160706, -0.005256653, -0.028823853, -0.032592773, -0.018203735, -0.0024261475, -0.0141067505, 0.014854431, -0.00091934204, 0.012077332, -0.03515625, -0.036895752, -0.0028190613, 0.042266846, -0.016204834, -0.014801025, -0.044525146, -0.0006155968, -0.012390137, 0.0368042, -0.03793335, 0.039215088, -0.028167725, 0.00969696, 0.043914795, -0.030685425, 0.0013895035, -0.0016851425, 0.041107178, 0.0014038086, 0.03189087, 0.020736694, -0.013679504, -0.0067329407, 0.008338928, 0.022277832, 0.0043678284, 0.009384155, -0.009025574, -0.027938843, 0.045562744, 0.029754639, 0.061645508, -0.028152466, 0.032104492, 0.010726929, -0.025512695, 0.03048706, -0.013458252, -0.050750732, 0.0020656586, -0.00063467026, 0.014457703, 0.04547119, 0.014862061, 0.0020503998, -0.008758545, 0.01272583, -0.009918213, -0.0027503967, 0.040496826, -0.009475708, -0.057678223, -0.017608643, -0.010818481, -0.0053634644, 0.020950317, -0.04849243, -0.022232056, 0.009117126, 0.0048942566, -0.014694214, -0.021148682, 0.03253174, -0.01235199, -0.008071899, 0.01096344, 0.014083862, 0.022659302, 0.004470825, 0.016921997, 0.0028533936, -0.033203125, -0.015090942, -0.001868248, -0.021026611, -0.023330688, 0.05404663, -0.038726807, -0.055541992, 0.0062789917, -0.016433716, 0.013206482, 0.08087158, -0.005176544, -0.07751465, -0.05239868, -0.07513428, -0.02923584, 0.048583984, -0.041381836, -0.014831543, 0.006919861, -0.0357666, -0.0025310516, -0.026107788, 0.0072288513, 0.017593384, 0.004623413, 0.036010742, 0.038482666, 0.034973145, 0.00667572, 0.028686523, 0.015586853, -0.02128601, -0.025665283, 0.016540527, 0.002521515, -0.009162903, -0.003736496, -0.026473999, -0.015594482, -0.048034668, 0.00856781, 0.014656067, -0.028930664, 0.009674072, -0.05999756, -0.028244019, -0.027938843, -0.0049438477, 0.022399902, -0.0002682209, -0.0042800903, -0.009269714, 0.0060424805, 0.025909424, -0.030883789, 0.029510498, -0.014808655, -0.009010315, -0.0072669983, 0.051208496, -0.06072998, 0.024261475, 0.015777588, 0.007419586, -0.03781128, 0.0054779053, -0.013160706, 0.00045728683, 0.044433594, -0.008979797, -0.011146545, 0.0011196136, 0.032409668, 0.0008511543, 0.021362305, 0.0027580261, -0.026107788, 0.039123535, -0.050109863, -0.002494812, -0.010620117, -0.029342651, 0.0051994324, -0.007160187, -0.03387451, 0.021621704, 0.002708435, -0.030776978, -0.006706238, -0.016235352, 0.021652222, -0.005596161, 0.014350891, 0.004043579, -0.0040016174, 0.012077332, 0.039611816, -0.014099121, -0.009788513, -0.003419876, -0.032470703, 0.024108887, 0.0060272217, -0.0056495667, -0.01789856, 0.029525757, 0.008544922, -0.03805542, 0.017929077, -0.007457733, 0.012802124, -0.019424438, 0.00233078, 0.0061683655, 0.0026054382, -0.0006246567, 0.025024414, -0.0262146, -0.005622864, -0.019363403, -0.033569336, -0.061431885, 0.06665039, 0.101623535, -0.032440186, 0.08874512, 0.08496094, 0.00028586388, 0.061462402, 0.06549072, 0.03756714, 0.022979736, 0.07861328, 0.007080078, -0.011276245, -0.0033111572, 0.04598999, 0.021575928, 0.00088977814, -0.004348755, 0.009490967, -0.01902771, -0.018249512, -0.028778076, 0.020736694, 0.0022792816, 0.0057029724, 0.018707275, -0.047332764, -0.014907837, -0.036621094, -0.03479004, 0.009361267, -0.03253174, -0.019332886, -0.032958984, 0.026763916, -0.064819336, -0.00680542, 0.01991272, 0.016082764, 0.030197144, 0.028823853, 0.015617371, -0.000118494034, -0.007904053, -0.0011663437, -0.044708252, -0.0073280334, 0.013534546, 0.04373169, -0.0079956055, -0.015777588, 0.026931763, 0.0044174194, -0.010864258, 0.012176514, -0.034973145, -0.030258179, -0.016326904, 0.0037651062, 0.05050659, -0.004306793, -0.0024089813, -0.035888672, -0.022567749, -0.021194458, -0.07598877, -0.006412506, -0.04272461, -0.022491455, -0.06951904, -0.03466797, -0.006969452, -0.030029297, -0.037261963, 0.0013723373, -0.006046295, -0.0024490356, 0.023925781, 0.017715454, -0.0703125, 0.012138367, -0.050750732, -0.005142212, 0.012741089, -0.03488159, 0.011581421, -0.022888184, 0.0049438477, -0.015571594, 0.062164307, 0.026062012, -0.007965088, -0.03942871, 0.004047394, 0.010429382, 0.050476074, 0.038635254, 0.0056533813, -0.019226074, -0.04800415, -0.05407715, -0.028915405, 0.009506226, -0.008430481, -0.023925781, -0.03729248, 0.0024871826, 0.022216797, 0.004814148, 0.041931152, -0.0072021484, -0.019577026, -0.025772095, 0.010299683, -0.059143066, -0.061279297, -0.015419006, -0.015625, -0.02027893, -0.024917603, -0.0028705597, 0.10467529, 0.030715942, 0.04373169, 0.010910034, -0.0013866425, 0.008735657, -0.01890564, 0.014457703, -0.040863037, 0.0069351196, -0.037200928, 0.007537842, -0.08929443, 0.044677734, -0.0020809174, 0.021972656, 0.01977539, -0.037139893, 0.0047416687, -0.020462036, 0.025375366, -0.03543091, 0.014724731, -0.0031223297, -0.017105103, -0.03149414, -0.0602417, -0.01083374, -0.020370483, 0.00030303, 0.021514893, -0.019256592, -0.019256592, -0.0073051453, -0.005153656, -0.030471802, -0.004776001, 0.025421143, 0.013679504, -0.029067993, 0.034240723, -0.018478394, -0.021316528, 0.0074386597, -0.021987915, -0.0006656647, -0.0016593933, -0.0076942444, -0.028518677, -0.010131836, 0.018966675, 0.010765076, -0.011039734, 0.06750488, -0.009742737, -0.0035247803, -0.023757935, 0.04159546, 0.048980713, -0.051086426, 0.013046265, -0.016204834, 0.0026874542, 0.012176514, -0.019363403, 0.019714355, -0.0065345764, -0.03994751, 0.048461914, 0.019760132, -0.007762909, -0.06549072, 0.079956055, -0.024795532, -0.011817932, -0.047546387, 0.017425537, -0.017593384, -0.027069092, -0.040985107, 0.01763916, 0.06555176, -0.025253296, -0.041931152, 0.040008545, 0.020263672, -0.03277588, -0.030395508, 0.044036865, -0.03378296, -0.025344849, 0.040130615, -0.0013093948, -0.0034008026, -0.020950317, -0.028869629, 0.022735596, 0.019973755, 0.014175415, 0.01776123, -0.03237915, -0.038970947, -0.013595581, -0.022415161, -0.0006117821, 0.013725281, -0.019729614, -0.026687622, 0.015403748, 0.022003174, -0.04071045, -0.086120605, -0.09326172, 0.011985779, -0.020248413, 0.049987793, -0.04663086, 0.0074310303, 0.024169922, 0.0079574585, 0.020553589, 0.02230835, -0.06561279, -0.016555786, -0.004299164, -0.0014896393, 0.0055656433, -0.062347412, 0.07183838, -0.037506104, -0.070129395, -0.030960083, 0.006061554, -0.010284424, -0.026062012, 0.03378296, -0.00762558, 0.013008118, 0.0076408386, 0.0056877136, -0.053955078, -0.0028705597, 0.006969452, -0.038757324, -0.017440796, -0.042785645, 0.040100098, -0.013076782, -0.010925293, -0.013313293, 0.045562744, -0.0357666, -0.12121582, -0.021881104, 0.016174316, 0.037261963, -0.006843567, 0.002199173, -0.017333984, -0.011390686, -0.037994385, -0.006275177, -0.010498047, -0.010978699, 0.006755829, 0.009010315, 0.0055732727, -0.009521484, -0.007511139, -0.0032978058, 0.004497528, 0.014350891, 0.0002822876, -0.022888184, -0.013328552, 0.013999939, 0.012374878, 0.043823242, 0.0044136047, 0.015808105, -0.019500732, 0.0067367554, 0.033447266, 0.015167236, -0.01234436, 0.03717041, 0.0005350113, 0.0234375, 0.017684937, 0.0010938644, 0.042144775, -0.00491333, -0.07220459, 0.0041236877, 0.05819702, -0.0259552, 0.012794495, -0.04043579, 0.024642944, -0.005268097, 0.0015945435, 0.0029907227, 0.010261536, 0.018051147, -0.014190674, 0.05496216, 0.0038318634, 0.021713257, 0.0011301041, -0.014579773, 0.018798828, 0.014289856, 0.0039863586, 0.002450943, -0.01235199, -0.014923096, -0.0006761551, 0.051849365, 0.0289917, -0.01890564, -0.010734558, -0.029006958, 0.0637207, -0.058288574, 0.0025119781, -0.019546509, -0.038116455, -0.031463623, -0.056365967, -0.03173828, -0.032196045, 0.013946533, -0.019882202, 0.09729004, -0.014892578, 0.017944336, 0.021057129, -0.0059051514, -0.02267456, -0.010360718, 0.025024414, -0.049102783, -0.0007042885, 0.014160156, 0.002040863, 0.028457642, 0.056549072, 0.005836487, 0.03186035, -0.015945435, 0.012588501, -0.013061523, -0.00092983246, -0.02468872, -0.008392334, 0.057434082, 0.023132324, -0.008636475, 0.0038604736, 0.016540527, 0.017486572, 0.004219055, -0.023162842, 0.03805542, -0.06060791, 0.04083252, 0.025741577, -0.0017900467, -0.025512695, -0.018554688, -0.018875122, 0.013702393, -0.0075798035, 0.024871826, 0.02331543, -0.010215759, -0.048828125, -0.0042800903, 0.0003540516, -0.03100586, 0.021530151, -0.010513306, -0.025604248, 0.033233643, 0.011680603, -0.008972168, 0.0062408447, -0.0024299622, -0.010574341, 0.02394104, 0.0055503845, -0.01108551, 0.010139465, -2.3961067e-05, -0.0070152283, -0.028671265, 0.012718201, -0.012863159, 0.028747559, -0.021530151, -0.022415161, -0.0031261444, -0.01512146, 0.0029201508, 0.013511658, -0.043426514, 0.0042266846, 0.01852417, 0.006717682, -0.028366089, -0.0015745163, 0.023483276, -0.0052223206, -0.013587952, 0.046020508, 0.04385376, 0.023773193, 0.07208252, -0.010253906, -0.05404663, -0.06628418, -0.009880066, -0.016845703, 0.024124146, 0.008163452, 0.016204834, 0.022155762, -0.009994507, -0.011367798, 0.0070114136, 0.030548096, -0.02520752, 0.013381958, -0.018966675, -0.035125732, 0.07318115, 0.019073486, -0.024627686, -0.01802063, 0.00166893, 0.006752014, 0.037139893, 0.016464233, 0.027389526, -0.09576416, -0.02520752, -0.05831909, 0.014053345, -0.026611328, -0.03253174, 0.032958984, -0.011680603, -0.02861023, 0.02053833, 0.06762695, 0.02684021, 0.029571533, 0.019378662, 0.016342163, -0.04144287, -0.034729004, -0.028244019, -0.018844604, 0.03164673, 0.008216858, -0.060546875, -0.0004992485, 0.010009766, -0.0206604, -0.0058937073, 0.022994995, 0.007549286, -0.007457733, 6.818771e-05, 0.015777588, -0.023666382, -0.003610611, -0.004058838, -0.047698975, -0.010566711, -0.0061683655, 0.03930664, -0.024307251, 0.0031394958, -0.03942871, 0.03366089, -0.0048332214, -0.057037354, -0.027496338, -0.0385437, 0.00258255, 0.02709961, -0.013221741, 0.040283203, -0.013206482, -0.0050315857, -0.044403076, 0.022994995, 0.021728516, 0.03427124, -0.04244995, 0.017944336, 0.011779785, 0.0859375, -0.019729614, -0.061462402, -0.06591797, 0.044555664, -0.0056533813, -0.007095337, 0.024215698, -0.010795593, -0.006996155, 0.06384277, -0.036499023, -0.056488037, 0.033050537, 0.053588867, 0.05596924, 0.021728516]}, "B00S57U1QS": {"id": "B00S57U1QS", "original": "Brand: Coleman\nName: Coleman RoadTrip LX Propane Grill\nDescription: \nFeatures: Portable propane grill ideal for tailgating, picnicking, and camping\nDelivers 20,000 btus of heat with 2 independently adjustable burners\nSwaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately)\nPerfect flow technology provides consistent performance, even in extreme conditions\nCollapsible stand folds for compact storage; Tabletop setup lets you use grill without stand\n", "metadata": {"Name": "Coleman RoadTrip LX Propane Grill", "Brand": "Coleman", "Description": "", "Features": "Portable propane grill ideal for tailgating, picnicking, and camping\nDelivers 20,000 btus of heat with 2 independently adjustable burners\nSwaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately)\nPerfect flow technology provides consistent performance, even in extreme conditions\nCollapsible stand folds for compact storage; Tabletop setup lets you use grill without stand", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017456055, 0.01008606, -0.0068206787, 0.028518677, 0.006336212, -0.008560181, 0.018630981, -0.034332275, -0.041931152, -0.028945923, -0.05819702, 0.035949707, -0.05154419, -0.02520752, 0.053649902, -0.059570312, -0.002702713, 0.024612427, -0.02444458, -0.043151855, 0.0012292862, -0.045288086, -0.031829834, 0.097839355, 0.028945923, 0.021011353, -0.031402588, -0.0069732666, 0.009407043, -0.008575439, 0.01626587, -0.0006418228, 0.047698975, -0.0109939575, -0.019180298, -0.015113831, 0.0021018982, -0.0137786865, -0.03668213, 0.022018433, -0.015205383, 0.022842407, -0.049743652, 0.042053223, -0.06274414, -0.039154053, -0.013679504, -0.010063171, 0.025466919, -0.00737381, -0.013961792, 0.017227173, 0.0013875961, -0.039855957, -0.010353088, -0.001876831, 0.030838013, 0.0154953, 0.02331543, -0.05105591, -0.030227661, 0.016357422, 0.036590576, 0.014564514, -0.033935547, 0.0021953583, 0.07678223, -0.015808105, 0.0012664795, -0.043670654, 0.0057144165, 0.032104492, -0.010856628, 0.043121338, -0.053466797, -0.045013428, 0.05038452, -0.039398193, 0.009819031, 0.026901245, -0.008155823, -0.05331421, 0.00843811, -0.020492554, 0.02645874, 0.022338867, -0.0047187805, -0.003501892, -0.018249512, -0.021087646, -0.017547607, 0.01071167, -0.058563232, 0.046539307, -0.0041275024, -0.008811951, -0.006942749, -0.077697754, 0.023834229, -0.020111084, 0.02822876, -0.035095215, -0.0039024353, 0.018737793, -0.012039185, 0.013885498, 0.0107421875, 0.034454346, 0.02571106, 0.002773285, -0.018753052, 0.015045166, -0.0008997917, 0.021835327, -0.04095459, -0.01399231, -0.04168701, 0.005832672, -0.01586914, 0.030319214, -0.05255127, -0.032714844, 0.017425537, -0.008010864, 0.045074463, 0.007156372, 0.008811951, 0.016159058, -0.063964844, 0.059631348, -0.040100098, -0.001285553, 0.043670654, 0.035888672, -0.0013570786, -0.050811768, 0.02406311, -0.0076942444, -0.01576233, 0.007896423, -0.002773285, 0.0085372925, 0.026550293, -0.021530151, -0.014221191, -0.007156372, 0.029312134, 0.033355713, -0.017196655, -0.033325195, 0.01638794, 0.041259766, 0.022918701, 0.004310608, -0.021057129, -0.014419556, -0.024734497, -0.00086688995, 0.003955841, -0.026550293, -0.014320374, -0.019729614, -0.003025055, -0.022994995, -0.04547119, 0.023422241, 0.019638062, -0.0025806427, 0.022506714, 0.038848877, 0.007320404, 0.02947998, 0.014289856, 0.024917603, 0.013900757, -0.01737976, -0.020202637, 0.05987549, 0.044921875, -0.08898926, -0.060943604, -0.06323242, 0.07775879, -0.030227661, -0.02357483, -0.0010118484, 0.039154053, 0.04647827, -0.012741089, 0.010925293, 0.056762695, 0.010810852, -0.028396606, 0.010940552, 0.0075531006, 0.027877808, -0.007446289, 0.03857422, -0.0020599365, -0.053100586, -0.016311646, 0.017913818, 0.0022068024, 0.01991272, 0.018875122, -0.012954712, 0.017868042, 0.006713867, 0.04937744, 0.045288086, -0.021453857, -0.01876831, 0.00957489, -0.036865234, -0.03125, -0.009986877, 0.004886627, 0.026489258, 0.042236328, -0.0065231323, 0.07055664, 0.021087646, 0.044830322, 0.0073509216, 0.016708374, -0.0024147034, -0.017822266, 0.0132751465, 0.019943237, 0.0064888, -0.0036811829, 0.026870728, 0.064697266, 0.070007324, -0.0027256012, 0.035217285, 0.08734131, 0.05596924, -0.014762878, -0.033843994, -0.004283905, -0.023986816, -0.06329346, -0.02218628, 0.012802124, 0.024414062, 0.00056791306, 0.00049972534, -0.026367188, 0.022247314, 0.04058838, 0.020233154, 0.034210205, 0.05999756, -0.018203735, 0.036254883, -0.04232788, 0.029647827, -0.029541016, 0.02104187, -0.016784668, 0.06958008, 0.05303955, 0.00012993813, 0.031402588, 0.0045433044, 0.036224365, 0.016220093, -0.02468872, 0.005355835, 0.011558533, -0.0056915283, -0.0035762787, 0.01763916, 0.014823914, 0.029907227, -0.028900146, 0.00061416626, 0.02947998, 0.013175964, 0.024932861, 0.011001587, 0.03616333, 0.0011463165, 0.03805542, 0.011123657, 0.020492554, 0.010681152, -0.022155762, -0.042510986, 0.006313324, -0.01977539, -0.026641846, -0.0115356445, -0.016204834, -0.049804688, 0.01876831, 0.004306793, 0.023712158, -0.03439331, -0.0052337646, 0.032684326, -0.031082153, 0.00315094, 0.0032291412, 0.031982422, 0.006214142, 0.041900635, 0.021362305, -0.024215698, -0.0003402233, -0.003578186, 0.02709961, 0.016937256, 0.0058403015, -0.0060653687, -0.0101623535, 0.04711914, 0.015090942, 0.031341553, 0.00422287, -0.018478394, -0.020645142, 0.0025424957, -0.0016965866, -0.0072898865, 0.0017147064, -0.0035037994, 0.015434265, -0.0012407303, 0.0043754578, 0.0038852692, -0.009468079, -0.011779785, 0.003850937, -0.0017871857, 0.006340027, 0.021636963, -0.011497498, -0.0574646, 0.00024342537, -0.032836914, 0.004573822, 0.02128601, -0.04748535, -0.027328491, 0.037139893, 0.0015792847, -0.009262085, -0.004219055, 0.020401001, -0.007858276, 0.031829834, 0.0051994324, 0.018188477, -0.027374268, -0.05053711, -0.040863037, -0.043426514, -0.081604004, -0.024780273, 0.0018367767, -0.052703857, -0.032989502, 0.053619385, -0.023223877, -0.030715942, -0.02394104, -0.009742737, 0.007385254, 0.011199951, 0.008628845, -0.026443481, -0.02255249, -0.01651001, -0.020767212, 0.029907227, -0.018005371, 0.012687683, 0.007411957, 0.019012451, 0.0060195923, -0.007987976, 0.0060195923, 0.025131226, 0.010345459, 0.011772156, 0.019744873, 0.029403687, -0.0053482056, 0.021377563, 0.023422241, -0.068237305, -0.013038635, 0.013465881, 0.021530151, -0.033996582, -0.041809082, -0.04055786, -0.021377563, -0.07598877, 0.004047394, -0.008003235, -0.045135498, -0.004081726, -0.077697754, -0.04660034, -0.052886963, 0.020446777, 0.03765869, -0.03265381, 0.0151901245, -0.03491211, 0.028427124, -0.023849487, 0.011909485, 0.0859375, -0.011230469, 0.045776367, -0.07763672, 0.017868042, -0.07196045, 0.02708435, 0.0029830933, -0.02079773, 0.013046265, -0.025482178, 0.001074791, 0.0046958923, 0.042816162, -0.005268097, 0.020202637, -0.012084961, -0.006717682, -0.0037441254, 0.011703491, 0.0015211105, -0.035339355, 0.02671814, -0.02885437, -0.016616821, 0.0014476776, 0.004421234, 0.047088623, -0.007019043, -0.009094238, -0.019989014, -0.046691895, 0.0082473755, -0.06304932, 0.021194458, 0.0099487305, 0.021987915, -0.00034308434, -0.0049324036, 0.0619812, 0.014816284, 0.04840088, 0.024230957, -0.050598145, -0.053527832, -0.042663574, 0.037994385, -0.0016155243, 0.018508911, -0.05142212, 0.008781433, 0.022949219, 0.033477783, -0.025527954, 0.016845703, 0.045410156, 0.040924072, -0.020370483, -0.0029277802, -0.07409668, 0.030883789, 0.044036865, -0.018814087, -0.07727051, -0.03579712, 0.0005378723, -0.09942627, 0.08081055, 0.09472656, -0.045898438, 0.078186035, 0.027496338, -0.0051612854, 0.062927246, 0.057678223, -0.021392822, 0.022644043, 0.059417725, -0.047729492, 0.020370483, 0.0061950684, 0.0020656586, 0.015075684, 0.0006337166, -0.060668945, 0.017547607, 0.027282715, -0.047302246, 0.00093507767, -0.015617371, -0.007144928, -0.018692017, 0.0006508827, -0.007335663, -0.012367249, -0.02267456, 0.026931763, 0.001209259, -0.01525116, 0.018173218, -0.0076179504, -0.038116455, -0.010627747, 0.0075531006, 0.01713562, 0.023727417, 0.0009045601, 0.02444458, 0.0014867783, 0.017807007, -0.047088623, 0.0109939575, 0.0016546249, 0.003944397, 0.035095215, 0.0045318604, 0.012809753, 0.0030002594, -0.0025520325, -0.011566162, -0.009971619, 0.032714844, 0.00497818, -0.06945801, -0.009155273, 0.02053833, 0.0046157837, -0.028747559, 0.0031471252, -0.017181396, 0.004623413, 0.012519836, -0.026062012, -5.364418e-07, -0.026046753, -0.004310608, -0.08721924, -0.031311035, -0.007537842, -0.026748657, -0.026138306, 0.025375366, -0.026306152, -0.033935547, 0.00592041, 0.0012779236, -0.025878906, -0.011657715, -0.034698486, -0.0050735474, 0.056732178, 0.01033783, 0.01335144, -0.017303467, -0.0022621155, -0.003774643, 0.06347656, 0.0004196167, 0.020126343, -0.036865234, -0.01727295, -0.0027542114, 0.033416748, 0.055114746, -0.02822876, 0.00869751, -0.022872925, -0.020584106, -0.028442383, -0.036956787, 0.036865234, -0.033325195, -0.025787354, -0.03326416, 0.056365967, -0.030151367, -0.0096206665, -0.026046753, 0.03164673, 0.025650024, -0.0005402565, -0.056640625, -0.029769897, 0.020599365, -0.00274086, -0.0022220612, -0.002084732, -0.011741638, 0.042144775, 0.0008635521, 0.015701294, 0.012374878, 6.532669e-05, -0.008110046, -0.03189087, 0.018951416, -0.049346924, 0.0074920654, -0.048339844, -0.002632141, -0.09906006, 0.10241699, 0.06744385, -0.0078048706, 0.0105896, -0.003440857, -0.0076293945, -0.050476074, 0.0010528564, -0.032440186, -0.020248413, -0.016357422, -0.029281616, -0.020599365, -0.029968262, -0.01777649, -0.01928711, -0.010635376, -0.0028820038, -0.0018587112, -0.0052871704, -0.02859497, 0.007041931, 0.030731201, 0.013244629, 0.024734497, 0.014312744, -0.0418396, 0.010551453, -0.03845215, -0.029037476, 0.009353638, -0.013214111, -0.01637268, -0.0004503727, 0.006427765, -0.075927734, 0.05593872, 0.05328369, 0.010147095, -0.0024757385, 0.017684937, -0.007572174, -0.0027599335, -0.003271103, 0.03074646, -0.014167786, 0.006877899, 0.016113281, 0.0022010803, 0.0017261505, 0.045013428, -0.020584106, 0.034210205, 0.020507812, -0.0016593933, 0.060638428, -0.0138168335, -0.007522583, -0.03741455, 0.056793213, -0.008811951, 0.0035934448, -0.05810547, 0.0017595291, 0.02708435, 0.047943115, 0.023025513, -0.04135132, 0.057525635, -0.010620117, -0.046936035, 0.027359009, -0.014389038, -0.012992859, -0.011787415, 0.004585266, -0.045440674, -0.002439499, 0.0039749146, -0.023208618, 0.0029144287, 0.004261017, -0.021636963, 0.019439697, 0.011436462, -0.01890564, -0.01272583, 0.0031528473, 0.010009766, -0.0121536255, 0.013145447, -0.008918762, -0.020965576, 0.024963379, 0.05114746, -0.03439331, 0.011764526, -0.05279541, -0.048095703, -0.06555176, 0.004207611, -0.0070762634, 0.046691895, -0.008468628, 0.026626587, 0.017562866, -0.04071045, 0.0068511963, -0.003955841, -0.024169922, -0.0022830963, 0.0115356445, 0.01637268, -0.019317627, 0.009727478, 0.05697632, -0.03591919, -0.03994751, -0.060424805, 0.07458496, -0.052734375, 0.018539429, 0.029769897, -0.0007305145, 0.025772095, 0.024612427, 0.022064209, -0.020080566, 0.005657196, 0.014282227, -0.045532227, 0.0039253235, -0.01184082, 0.024368286, -0.003458023, 0.034423828, -0.017364502, 0.052856445, -0.008972168, -0.013534546, -0.050720215, 0.021347046, -0.014801025, -0.010185242, 0.0046920776, -0.014038086, -0.013267517, -0.030197144, -0.0011224747, -0.06604004, -0.042907715, 0.02720642, 0.03555298, 0.040374756, -0.040802002, 0.031402588, 0.06048584, -0.023513794, 0.0736084, 0.008956909, -0.017150879, -0.0059318542, -0.0066184998, 0.0061683655, -0.022338867, 0.02166748, 0.021072388, -0.01146698, 0.00762558, 0.03237915, 0.02319336, -0.042175293, -0.02885437, 0.0513916, 0.0345459, 0.029708862, 0.03161621, 0.032989502, -0.013618469, -0.041107178, 0.013450623, 0.045043945, -0.03894043, -0.01676941, -0.058746338, 0.004878998, 0.001824379, 0.0076828003, 0.012817383, -0.03326416, 0.040527344, -0.032836914, -0.012626648, 0.0032920837, -0.035186768, 0.030456543, 0.0012779236, -0.0053596497, -0.0033855438, -0.036834717, -0.003616333, -0.017608643, 0.0074653625, 0.00062799454, 0.014305115, -0.011833191, 0.046020508, -0.047729492, 0.051879883, 0.02268982, -0.07128906, -0.018508911, 0.0033664703, 0.023620605, -0.006111145, -0.043701172, -0.024398804, -0.010612488, 0.01247406, 0.012969971, 0.043914795, -0.0036964417, 0.026000977, -0.035491943, -0.0178833, -0.013885498, -0.030700684, -0.00566864, 0.0012588501, -0.008728027, 0.00046801567, -0.051239014, 0.006263733, 0.06427002, -0.023117065, 0.019073486, 0.0076675415, 0.025115967, -0.032836914, -0.026489258, -0.046173096, -0.06951904, -0.015022278, 0.022369385, -0.032958984, 0.0077781677, 0.0041389465, -0.024398804, 0.06756592, -0.08441162, 0.04296875, -0.02923584, 0.08428955, 0.02746582, 0.09741211, 0.0045928955, -0.023468018, -0.021514893, 0.0059432983, 0.00299263, 0.024398804, -0.0027713776, 0.004463196, 0.0013599396, 0.025253296, 0.06390381, 0.0075912476, 0.030273438, -0.01473999, 0.00044727325, 0.012557983, -0.0032310486, -0.010482788, -0.0073280334, -0.0011053085, 0.015068054, 0.0059051514, -0.007499695, -0.039001465, 0.017303467, -0.036468506, -0.03665161, 0.034118652, 0.0043029785, -0.033172607, -0.0034313202, -0.0418396, -0.016738892, -0.030914307, -0.06506348, -0.033325195, -0.018081665, -0.072631836, 0.023101807, -0.025375366, -0.0231781, 0.01096344, 0.003982544, -0.022216797, -0.05407715, -0.011039734, -0.004470825, -0.005897522, 0.0055618286, 0.05831909, -0.019317627, -0.06640625, -0.039886475, 0.021759033, -0.028182983, -0.026626587, 0.005748749, -0.01965332, -0.017318726, -0.009765625, 0.035369873, 0.090148926, 0.032470703, 0.011398315, 0.0099105835, -0.02810669, -0.03817749, 0.09460449, 0.02418518, -0.028152466, -0.003063202, 0.034606934, -0.0050811768, 0.02947998, 0.013000488, 0.009841919, -0.05831909, -0.020309448, -0.050201416, -0.017745972, 0.0008506775, -0.028961182, 0.021820068, 0.011482239, -0.048187256, -0.036102295, -0.0035514832, 0.017196655, 0.035217285, -0.007183075, 0.04159546, -0.0032348633, -0.09124756, -0.045043945, -0.032989502, 0.020767212, 0.040222168, -0.032348633, -0.011436462, 0.03817749, -0.036224365, 0.04473877, 0.040527344, 0.0031089783, 0.0021095276, 0.022247314, 0.04220581, 0.005153656, -0.0017795563, 0.054107666, -0.040161133, -0.041412354, 0.026397705, 0.015319824, -0.015289307, 0.023834229, -0.020858765, -0.0035209656, 0.013259888, -0.0027866364, -0.019302368, -0.011024475, -0.0064735413, 0.030258179, -0.015464783, -0.0008883476, -0.035736084, 0.0025844574, -0.050933838, 0.01940918, 0.015686035, 0.010719299, 0.005329132, 0.059936523, 0.04486084, 0.056610107, -0.016204834, -0.025680542, -0.034423828, 0.01977539, 0.0057792664, -0.009101868, 0.040008545, -0.004699707, 0.014190674, 0.005584717, -0.019714355, -0.017059326, 0.0010852814, 0.02619934, -0.01576233, 0.007751465]}, "B088KD4JJ4": {"id": "B088KD4JJ4", "original": "Brand: Saking\nName: Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)\nDescription: Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

      MAIN FEATURES
      \u2605 Made of 600D heavyweight oxford fabric with PVC layer
      \u2605 Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
      \u2605 Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
      \u2605 Superb wrapped sewing makes it stronger and nicer look
      \u2605 Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
      \u2605 Come with 4 useful accessories to avoid being pierced by table's sharp corners

      SPECIFICATIONS
      - Brand: Saking
      - Condition: New
      - Colour: Black
      - Material: Heavy-duty Oxford with PVC
      - Shape: Square
      - Dimensions:
      29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

      PACKAGE
      1 x Square Fire Table cover
      1 x Storage bag for the cover
      4 x additional protective items

      NOTE:
      Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit\nFeatures: \ud83d\udd25 \u3010 Perfect Fit for 28x28 Tall Square Fire Tables \u3011Cover size: 29\" L x 29\" W x 25\" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit)\n\ud83d\udd25 \u3010 100% Waterproof Material \u3011 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables\n\ud83d\udd25 \u3010 100% Windproof Design \u3011 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly\n\ud83d\udd25 \u3010 Air Vents & Handles \u3011 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off\n\ud83c\udf81 \u3010 What You Get \u3011 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table's sharp corners\n", "metadata": {"Name": "Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)", "Brand": "Saking", "Description": "Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

      MAIN FEATURES
      \u2605 Made of 600D heavyweight oxford fabric with PVC layer
      \u2605 Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
      \u2605 Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
      \u2605 Superb wrapped sewing makes it stronger and nicer look
      \u2605 Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
      \u2605 Come with 4 useful accessories to avoid being pierced by table's sharp corners

      SPECIFICATIONS
      - Brand: Saking
      - Condition: New
      - Colour: Black
      - Material: Heavy-duty Oxford with PVC
      - Shape: Square
      - Dimensions:
      29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

      PACKAGE
      1 x Square Fire Table cover
      1 x Storage bag for the cover
      4 x additional protective items

      NOTE:
      Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit", "Features": "\ud83d\udd25 \u3010 Perfect Fit for 28x28 Tall Square Fire Tables \u3011Cover size: 29\" L x 29\" W x 25\" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit)\n\ud83d\udd25 \u3010 100% Waterproof Material \u3011 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables\n\ud83d\udd25 \u3010 100% Windproof Design \u3011 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly\n\ud83d\udd25 \u3010 Air Vents & Handles \u3011 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off\n\ud83c\udf81 \u3010 What You Get \u3011 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table's sharp corners", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015060425, 0.001783371, -0.052764893, -0.021148682, 0.0050964355, -0.0011472702, 0.0066871643, 0.021697998, -0.074035645, 0.019378662, -0.058441162, 0.055419922, -0.05279541, 0.001001358, 0.03515625, -0.06793213, 0.0259552, -0.037200928, 0.008262634, -0.024032593, -0.017288208, -0.018447876, 0.048309326, 0.012870789, 0.0055770874, -0.049743652, 0.07147217, -0.008255005, 0.030639648, -0.014038086, 0.011978149, 0.012908936, 0.0440979, 0.016235352, -0.044525146, -0.009147644, -0.013549805, -0.0035362244, -0.030181885, 0.03555298, 0.019714355, 0.0047912598, -0.009490967, -0.034118652, -0.02229309, -0.028457642, 0.031951904, -0.006061554, -0.05718994, -0.0014381409, 0.0049476624, -0.007827759, 0.014030457, 0.024169922, 0.010307312, 0.009407043, 0.0051498413, 0.0033416748, 0.00806427, -0.0140686035, 0.005504608, 0.023803711, 0.030578613, 0.016677856, -0.05569458, 0.02279663, 0.090026855, -0.015350342, 0.01171875, -0.08062744, -0.02357483, 0.04800415, 0.013687134, -0.019500732, -0.04876709, -0.0034313202, 8.046627e-06, -0.0059432983, 0.008338928, -0.0024147034, -0.022155762, -0.024658203, 0.028366089, -0.038391113, 0.0090408325, -0.012481689, -0.0096588135, -0.0015468597, 0.01914978, -0.057769775, 0.0064811707, -0.020553589, -0.009544373, 0.013114929, -0.02696228, -0.04534912, -0.029434204, -0.04449463, 0.015380859, 0.027816772, -0.016235352, -0.018493652, 0.009780884, 0.008094788, -0.010765076, 0.060516357, -0.003479004, 0.036834717, 0.014450073, 0.002922058, 0.0035934448, -0.04849243, -0.016036987, -0.04196167, 0.013511658, 0.050109863, -0.0046310425, 0.0039482117, 0.010971069, -0.016143799, -0.056518555, -0.04522705, -0.0126953125, 0.01386261, 0.062469482, 0.035369873, -0.00017213821, 0.06591797, -0.02909851, 0.028244019, 0.0043754578, -0.008728027, -0.04046631, 0.054229736, 0.002040863, -0.00025105476, 0.06878662, -0.0070381165, -0.0028152466, -0.010292053, -0.0012598038, 0.027755737, 0.026489258, -0.03274536, -0.036987305, 0.02357483, 0.018035889, -0.0065193176, -0.020584106, -0.046936035, -0.028671265, -0.011734009, 0.04360962, 0.027191162, -0.038757324, 0.030044556, 0.029922485, -0.003232956, -0.07385254, -0.056152344, 0.04562378, 0.007320404, -0.040252686, -0.022354126, -0.02558899, -0.016326904, -0.012527466, 0.00340271, 0.017868042, 0.050079346, 0.011817932, 0.03640747, -0.024002075, 0.031951904, 0.023620605, -0.018981934, -0.02722168, 0.0949707, 0.068115234, -0.08911133, -0.04525757, -0.06976318, 0.1217041, -0.02998352, 0.018600464, -0.021392822, 0.0071983337, -0.033569336, 0.027114868, -0.003709793, -0.010574341, 0.0017662048, -0.01499176, 0.0018014908, -0.0184021, 0.0019140244, -0.028778076, 0.021194458, -0.023803711, 0.016830444, -0.028656006, -0.020233154, 0.008407593, -0.0077781677, 0.048461914, -0.024993896, 0.012504578, 0.010444641, -0.019607544, 0.023361206, 0.005279541, -0.009391785, -0.02482605, 0.0032958984, 0.014564514, 0.03967285, -0.031707764, 0.0015096664, -0.018432617, -0.006626129, 0.021942139, -0.017044067, 0.0056877136, 0.008804321, 0.0040626526, -0.040161133, -0.005821228, -0.030639648, 0.006828308, -0.022766113, 0.009552002, 0.053222656, 0.051635742, 0.045166016, -0.018951416, 0.04272461, 0.042541504, 0.03515625, -0.027526855, -0.00017237663, 0.012161255, -0.06616211, -0.038879395, 0.0075645447, -0.012306213, -0.0259552, 0.0066566467, 0.018218994, -0.017684937, 0.043945312, 0.024124146, 0.014213562, -0.01210022, -0.011306763, -0.034606934, 0.019866943, -0.04611206, 0.0060157776, 0.01448822, -0.00548172, 0.0054473877, 0.029953003, 0.037628174, -0.009170532, 0.05545044, -0.035095215, 0.061309814, 0.05117798, 0.012466431, -0.043914795, 0.00082206726, 0.03866577, -0.0063323975, 0.018676758, -0.012931824, 0.080566406, -0.017959595, 0.0067825317, -0.02166748, 0.01600647, 0.0074882507, 0.028930664, -0.021713257, -0.0076522827, 0.015701294, 0.03668213, -0.0013055801, 0.019866943, 0.0048446655, -0.019958496, 0.024139404, 0.020019531, 0.02015686, 0.008743286, 0.012184143, -0.0076828003, 0.011726379, 0.0012903214, 0.025756836, -0.013458252, -0.04272461, 0.03463745, -0.005569458, 0.00059986115, -0.012908936, 0.04031372, 0.017913818, 0.002105713, 0.004131317, -0.053527832, 0.02406311, -0.011665344, 0.025131226, 0.011161804, 0.02331543, 0.0037994385, -0.009918213, 0.04333496, 0.044891357, 0.043884277, 0.026809692, -0.0027656555, -0.0024738312, -0.04373169, 0.0143966675, -0.010307312, -0.044403076, -0.008705139, -0.04385376, 0.05682373, 0.026397705, -0.0052108765, -0.0027885437, -0.012481689, -0.015281677, 0.01638794, -0.0046920776, 0.038269043, 0.0023937225, -0.04171753, -0.0064315796, -0.013038635, -0.008773804, -0.004524231, -0.04559326, -0.034240723, 0.024154663, 0.0008482933, -0.018112183, -0.015594482, 0.03857422, -0.03201294, -0.023422241, -0.04309082, -0.019485474, 0.057678223, 0.008834839, -0.023468018, 0.025604248, -0.06384277, -0.034088135, 0.019241333, -0.033935547, -0.0069465637, 0.027175903, -0.025772095, -0.03540039, 0.0131073, 0.0031414032, 0.0134887695, 0.058441162, 0.003080368, -0.0602417, -0.04208374, -0.036224365, -0.037750244, 0.012969971, -0.035614014, 0.00021874905, -0.005065918, -0.0075149536, 0.009185791, -0.013832092, 0.008705139, 0.012214661, 0.018127441, 0.028274536, 0.058898926, 0.0014457703, -0.009063721, -0.006095886, 0.054870605, -0.045043945, -0.03652954, -0.02218628, 0.004512787, 0.014274597, -0.009346008, 0.021881104, -0.032958984, -0.08306885, 0.0045204163, -0.011962891, -0.027648926, -0.006340027, -0.034851074, -0.025558472, -0.05203247, 0.017471313, 0.047943115, -0.008575439, -0.019348145, -0.021148682, -0.013381958, -0.0011024475, 0.010635376, 0.009155273, -0.011436462, -0.012702942, 0.030181885, 0.04083252, -0.06365967, -0.011177063, 0.013244629, -0.043762207, -0.010124207, 0.013053894, 0.04977417, -0.026626587, 0.030944824, -0.010765076, -0.027160645, 0.004173279, 0.011474609, -0.03753662, -0.014457703, -0.013389587, -0.014732361, 0.020767212, -0.037017822, 0.0042037964, 0.00422287, -0.0015335083, 0.050628662, -0.022613525, -0.005958557, -0.0011577606, -0.016708374, -0.037750244, -0.0132751465, -0.035705566, 0.02178955, -0.026046753, 0.024169922, 0.0016431808, 0.041229248, 0.020614624, 0.0289917, -0.0018787384, -0.012496948, -0.013114929, -0.03050232, 0.02897644, -0.011421204, 0.02607727, -0.046295166, 0.053375244, -0.019165039, -0.014312744, 0.030731201, -0.037078857, 0.017196655, 0.028060913, -0.005367279, 0.031402588, 0.015304565, -0.014282227, -0.01096344, -0.053466797, -0.0077781677, -0.087768555, -0.01374054, -0.017105103, 0.075683594, 0.079589844, -0.031677246, 0.12756348, 0.09631348, -0.009925842, 0.043426514, 0.042053223, 0.026184082, 0.023086548, 0.07019043, 0.0012397766, -0.0113220215, 0.0033283234, -0.0066337585, -0.006198883, -0.02407837, 0.007972717, 0.00067186356, -0.029403687, 0.0036754608, -0.024887085, -0.024032593, 0.016540527, -0.008323669, 0.019424438, 0.014526367, -0.012130737, -0.0036411285, -0.035583496, 0.0077056885, -0.021560669, -0.013961792, 0.0036735535, 0.027832031, -0.030273438, -0.022506714, 0.0024929047, -0.0034828186, 0.0340271, 0.049804688, -0.022460938, 0.008102417, -0.010116577, -0.0071792603, -0.04257202, -0.00031137466, -0.0143585205, 0.040039062, -0.022079468, -0.0115356445, 0.043060303, 0.0061531067, -0.0052604675, -0.006515503, -0.03152466, -0.04336548, -0.01007843, 0.02708435, 0.032104492, -0.0072135925, 0.0014514923, -0.072387695, -0.06616211, -0.045837402, -0.041534424, -0.022064209, -0.032714844, -0.02142334, -0.08001709, -0.029067993, -0.020965576, 0.0079956055, -0.0579834, 0.023239136, 0.00054073334, -0.006916046, 0.021499634, 0.059509277, -0.07672119, -0.022155762, -0.04360962, -0.00077295303, -0.0022792816, -0.030181885, -0.00856781, -0.037902832, -0.016448975, -0.012619019, 0.037872314, -0.014930725, 0.015571594, -0.008270264, 0.0024204254, -0.008056641, 0.026382446, -0.00166893, -0.022262573, 0.027572632, 0.011474609, -0.018508911, -0.091430664, 0.014030457, 0.014694214, -0.039093018, -0.08502197, -0.034606934, 0.06402588, 0.02822876, 0.002090454, -0.03692627, -0.009338379, 0.025558472, -0.025985718, -0.03366089, -0.025009155, 0.005340576, -0.0473938, -0.01928711, -0.0030784607, -0.030975342, 0.06161499, 0.0029392242, -0.04498291, -0.015075684, 0.0018339157, 0.053497314, -0.041137695, 0.018035889, -0.0151901245, -0.025863647, 0.011009216, 0.028900146, -0.040802002, 0.052825928, 0.023956299, 0.021560669, -0.01146698, 0.012275696, -0.02507019, -0.09649658, 0.017501831, -0.05718994, 0.015350342, -0.0041542053, -0.0019626617, -0.019973755, -0.022949219, 0.0049934387, 0.018997192, -0.0011415482, 0.038848877, -0.010910034, -0.0048332214, -0.010238647, -0.050628662, 0.0016641617, 0.003440857, 0.0019235611, 0.024887085, -0.029083252, -0.018981934, -0.049957275, -0.01852417, 0.022140503, -0.067871094, -0.008720398, -0.05117798, 0.011459351, -0.020355225, 0.059539795, 0.006603241, 0.04425049, -0.03387451, 0.027374268, 0.017807007, -0.016845703, -0.053833008, 0.034057617, 0.034973145, -0.029769897, 0.025543213, -0.0287323, -0.0149383545, 0.025604248, -0.046966553, 0.058685303, 0.004386902, -0.043945312, 0.025390625, 0.051757812, -0.0025920868, -0.04147339, 0.074645996, -0.014198303, -0.05505371, -0.0046920776, -0.0017766953, 0.016967773, 0.053222656, -0.038879395, -0.01423645, 0.029571533, -0.013336182, -0.014328003, 0.037719727, 0.045440674, -0.014160156, -0.0059928894, 0.040893555, -0.023773193, -0.041809082, 0.035247803, 0.015052795, -0.05026245, -0.023452759, -0.051849365, 0.031036377, -0.0006904602, -0.021209717, -0.022399902, -0.027313232, -0.035827637, -0.04473877, -0.035003662, -0.022018433, 0.011650085, -0.045135498, -0.021697998, 0.026367188, 0.029510498, -0.08154297, -0.038360596, -0.047302246, 0.032073975, 0.003227234, 0.0501709, -0.045898438, -0.0014448166, -0.030548096, 0.0058021545, 0.015899658, 0.0008125305, -0.08996582, -0.022216797, 0.011253357, 0.022781372, -0.011909485, -0.02267456, 0.068237305, -0.05041504, -0.038879395, -0.040100098, -0.0020103455, 0.0011816025, -0.048461914, 0.037231445, 0.020629883, -0.006538391, 0.017837524, -0.02331543, -0.023925781, 0.02658081, 0.010932922, -0.043792725, 0.01600647, -0.011047363, 0.019836426, -0.025466919, 0.010223389, -0.013580322, 0.037231445, -0.023773193, -0.034454346, -0.01576233, 0.012001038, -0.011779785, 0.0067100525, 0.019317627, -0.024475098, -0.014221191, -0.036865234, -0.011756897, -0.0124053955, -0.027313232, 0.011627197, 0.011451721, -0.008651733, -0.002407074, 0.0010108948, 0.026672363, -0.012634277, 0.02456665, -0.019180298, -0.031951904, 0.0063591003, 0.029769897, 0.038085938, -0.004989624, 0.00083208084, -0.003358841, -0.01197052, -0.019638062, 0.050811768, 0.00030565262, 0.013046265, 0.04309082, 0.045440674, 0.008033752, 0.0033798218, 0.014389038, 0.01348114, -0.006259918, -0.02128601, -0.011795044, 0.016952515, -0.020690918, -0.011833191, -0.064086914, 0.0074920654, 0.0028629303, 0.010375977, 0.030471802, -0.007293701, 0.0021457672, -0.0395813, 0.021972656, 0.01159668, 0.009674072, 0.040405273, -0.01878357, -0.010627747, -0.02609253, -0.015930176, -0.005279541, 0.018127441, -0.034332275, 0.008598328, 0.042175293, -0.008804321, 0.015174866, 0.01727295, -0.01878357, 0.008323669, -0.016204834, 0.03152466, -0.017425537, -0.023788452, -0.001200676, -0.055511475, -0.0385437, -0.03338623, 0.057861328, -0.04244995, 0.10626221, -0.05441284, 0.017150879, 0.0096588135, -0.020263672, -0.026489258, -0.015075684, 0.013504028, -0.047058105, -0.0234375, 0.009536743, -0.03439331, -0.00014233589, 0.048553467, -0.019592285, 0.008934021, 0.015205383, 0.010154724, -0.018112183, 0.026428223, -0.023651123, 0.01776123, 0.021392822, -0.011680603, 0.01927185, -0.017623901, 0.006439209, 0.024932861, -0.027175903, -0.054779053, 0.05206299, -0.083984375, 0.070007324, 0.032806396, -0.025741577, -0.032104492, -0.04949951, -0.023971558, 0.0067634583, -0.0135269165, 0.040924072, -0.01197052, 0.014213562, -0.03036499, 0.016601562, 0.008590698, -0.020721436, 0.016357422, -0.004901886, -0.022338867, -0.012756348, 0.030380249, 0.0073776245, 0.03253174, -0.02772522, -0.009941101, 0.02178955, -0.0039482117, 0.006175995, -0.0085372925, -0.0107040405, -0.010299683, -0.018508911, 0.017837524, -0.006565094, 0.011024475, -0.029785156, -0.007045746, -0.026168823, -0.037109375, -0.03564453, -0.007789612, -0.043914795, 0.013626099, 0.00308609, -0.0149002075, -0.0012216568, 0.008178711, 0.0055732727, -0.025161743, -0.048828125, 0.030715942, 0.0017089844, 0.002243042, 0.064819336, -0.013717651, -0.02709961, -0.07324219, -0.021133423, -0.02017212, 0.032928467, -0.048797607, 0.061065674, 0.049591064, 0.008178711, 0.014846802, 0.025817871, -0.0017147064, -0.004009247, 0.004135132, -0.04260254, -0.058013916, 0.07019043, 0.019134521, -0.014144897, 0.012207031, 0.05984497, 0.010848999, 0.023864746, 0.014160156, 0.011550903, -0.09576416, -0.0046691895, -0.043884277, 0.007575989, -0.0044441223, -0.027877808, 0.05065918, 0.022140503, -0.010604858, 0.00034475327, 0.04168701, -0.010406494, 0.02230835, -0.0022506714, 0.0079956055, -0.015731812, -0.019012451, 0.003862381, -0.016921997, -0.0032596588, -0.008033752, -0.033111572, -0.0030708313, 0.0016469955, -0.006576538, -0.020202637, 0.016998291, 0.007835388, -0.01234436, 0.018051147, 0.011993408, -0.024673462, -0.00075674057, 0.004058838, -0.04095459, -0.037475586, 0.031829834, 0.0357666, -0.036834717, -0.028060913, -0.022338867, 0.002861023, -0.007507324, -0.051696777, -0.060333252, -0.032073975, 0.005126953, 0.036834717, -0.028320312, -0.027267456, -0.021377563, 0.036346436, -0.000562191, 0.0063438416, -0.0063095093, -0.004283905, -0.025939941, 0.04486084, -0.013999939, 0.09564209, -0.00050735474, -0.06274414, -0.051208496, 0.046722412, -0.0032196045, -0.034179688, 0.021591187, -0.032318115, 0.028259277, 0.0061454773, -0.011962891, -0.007858276, 0.052612305, 0.06237793, -0.01373291, 0.023651123]}, "B08GY9MT25": {"id": "B08GY9MT25", "original": "Brand: Bluegrass Living\nName: Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181\nDescription: \nFeatures: ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction.\nGLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit.\nCONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space.\nPREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use.\nSTAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase\n", "metadata": {"Name": "Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181", "Brand": "Bluegrass Living", "Description": "", "Features": "ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction.\nGLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit.\nCONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space.\nPREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use.\nSTAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030014038, 0.0262146, -0.09277344, -0.054656982, 0.019989014, -0.008262634, -0.031799316, 0.03225708, -0.029708862, 0.024627686, -0.046691895, 0.0256958, -0.013839722, -0.012992859, 0.0036296844, -0.04159546, 0.01902771, 0.010131836, 0.018875122, -0.027374268, -0.010597229, -0.019348145, 0.03564453, 0.014785767, 0.0067214966, 0.02670288, 0.02456665, 0.00061273575, 0.030700684, 0.015701294, 0.02116394, -0.05722046, 0.05908203, 0.008636475, -0.056365967, 0.0062332153, 0.019058228, -0.028793335, -0.06137085, 0.06854248, 0.011810303, -0.002286911, -0.08343506, -0.024124146, -0.06097412, -0.030761719, 0.0004708767, 0.008964539, -0.013412476, 0.010124207, -0.013870239, 0.012718201, -0.0037403107, -0.008148193, 0.0055656433, 0.0030937195, -0.006000519, -0.02456665, -0.008338928, 0.010238647, 0.03060913, 0.040893555, 0.019180298, 0.028427124, -0.047821045, 0.032409668, 0.047607422, -0.03967285, -0.016448975, -0.055725098, 0.012687683, -0.0014238358, 0.0357666, -0.035339355, -0.037231445, 0.010566711, 0.0031738281, 0.009994507, 0.00579834, -0.02835083, -0.009170532, 0.04071045, -0.00013828278, -0.045410156, 0.020767212, -0.020431519, -0.023788452, -0.016021729, 0.0019330978, -0.025848389, -0.0143585205, -0.014564514, -0.032196045, 0.049865723, -0.004447937, -0.015083313, -0.066833496, -0.061431885, 0.04309082, 0.041870117, -0.035064697, 0.0010728836, -0.020965576, 0.0016307831, 0.0066986084, 0.06976318, 0.02909851, 0.0060424805, -0.003929138, -0.009971619, -0.0053215027, -0.011009216, -0.021774292, -0.06011963, -0.006072998, 0.046661377, -0.013977051, 0.00072956085, 0.02444458, -0.0071372986, 0.0022888184, -0.013397217, 0.02217102, 0.028579712, 0.026657104, 0.037200928, -0.03201294, -0.0021343231, -0.024475098, 0.038635254, -0.004650116, -0.009277344, -0.0022277832, 0.034210205, -0.012680054, -0.02015686, 0.0491333, -0.03427124, -0.007156372, 0.018508911, -0.0027885437, -0.0049591064, 0.0060272217, -0.030548096, -0.025115967, -0.0017604828, 0.040008545, -1.8119812e-05, -0.051208496, -0.014961243, -0.040252686, 0.056152344, 0.027542114, 0.028671265, 0.018798828, -0.0021438599, 0.05203247, -0.023345947, -0.038360596, -0.056030273, 0.024871826, 0.022018433, 0.016235352, 0.03945923, 0.015258789, -0.025741577, -0.020751953, -0.01309967, 0.020584106, 0.076049805, -0.018463135, 0.018081665, 0.035247803, 0.009315491, -0.010795593, -0.022842407, 0.0018119812, 0.055541992, 0.06124878, -0.04534912, -0.018859863, -0.0385437, 0.13098145, -0.032806396, 0.011810303, -0.0017385483, 0.005012512, -0.016174316, 0.02835083, 0.0040740967, -0.018600464, 0.008293152, -0.00079250336, -0.023513794, 0.010505676, 0.000100672245, -0.018051147, 0.015640259, -0.015457153, 0.0047302246, -0.015449524, -0.002193451, -0.015022278, 0.011238098, 0.05618286, -0.022109985, 0.021759033, 0.0060920715, -0.017471313, 0.014060974, 0.0016469955, -0.017333984, -0.0001360178, -0.03866577, -0.010017395, 0.0057258606, -0.013427734, 0.012557983, 0.0093307495, -0.0045928955, 0.04660034, -0.019363403, 0.027893066, 0.0025978088, -0.006652832, -0.0143966675, -0.019195557, -0.003932953, -0.031234741, -0.0042304993, 0.0025043488, 0.04257202, 0.0057754517, -0.013244629, -0.058013916, 0.032806396, 0.02973938, 0.050964355, -0.019302368, 0.0033950806, 0.030960083, -0.049621582, -0.0110321045, 0.0128479, 0.010292053, -0.037750244, 0.010353088, 0.00077056885, 0.009262085, 0.07128906, 0.029373169, 0.02557373, -0.0038166046, 0.0317688, -0.012237549, 0.017593384, -0.03982544, 0.008575439, 0.01701355, 0.014801025, -0.017120361, 0.08312988, 0.06585693, 0.0074005127, 0.05496216, -0.054656982, 0.04827881, 0.037322998, 0.00061273575, -0.044281006, 0.008781433, 0.022140503, -0.011375427, 0.00050497055, -0.058166504, 0.03756714, -0.023071289, 0.035247803, -0.003868103, -0.0068511963, -0.013076782, -0.021911621, -0.029632568, -0.014602661, 0.055419922, 0.0012292862, -0.015602112, -0.042510986, -0.0041389465, 0.017120361, 0.038116455, 0.008056641, 0.00022232533, -0.006603241, -0.0107421875, -0.0061798096, 0.008720398, 0.006477356, 0.034942627, -0.033935547, -0.046081543, 0.03173828, -0.019805908, 0.0079956055, -0.008369446, 0.017227173, -0.030929565, 0.023925781, -0.0035686493, -0.030838013, -0.008903503, 0.028320312, 0.018981934, -0.00020992756, 0.03427124, 0.021743774, 0.006462097, 0.06161499, 0.06365967, 0.10089111, -0.012939453, 0.012535095, -0.014808655, 0.01675415, 0.01838684, 0.0051651, 0.0056037903, -0.006904602, -0.0769043, -0.004009247, 0.0041046143, -0.057159424, 0.0010204315, -0.0061302185, -0.0115356445, 0.0019130707, -0.00022602081, 0.034332275, 0.004550934, -0.032928467, 0.01966858, 0.0027637482, -0.036071777, -0.008964539, -0.0625, -0.016662598, -0.023361206, -0.0006518364, -0.014587402, -0.030792236, 0.03878784, -0.00881958, -0.0002617836, 0.025894165, 0.015899658, -0.023239136, -0.007789612, -0.012825012, -0.022583008, -0.057800293, -0.023544312, -0.007663727, -0.03668213, -0.0059394836, 0.010528564, -0.0015707016, -0.037994385, 0.039154053, -0.040618896, -0.028503418, 0.080078125, -0.039001465, -0.08117676, -0.041259766, -0.054779053, -0.013839722, 0.03250122, -0.02319336, 0.008590698, 0.012718201, -0.012542725, 0.018127441, -0.017822266, 0.01727295, 0.09814453, 0.0076904297, 0.074523926, 0.042663574, 0.074645996, -0.003572464, 0.021743774, -0.022567749, -0.041259766, -0.033569336, 0.022003174, 0.0102005005, -0.00030517578, 0.0050354004, -0.004951477, -0.035888672, -0.11248779, 0.0072402954, -0.031585693, -0.035858154, 0.0010852814, -0.05307007, -0.039276123, -0.0680542, 0.020584106, 0.027999878, -0.005596161, -0.0309906, -0.026641846, -0.019622803, -0.0059051514, 0.012023926, 0.01398468, -0.0006055832, -0.03543091, -0.004009247, 0.056152344, -0.052093506, 0.03201294, 0.026321411, -0.042266846, 0.0005273819, -0.006160736, 0.031097412, -0.0020256042, 0.0036735535, -0.015213013, -0.021392822, 0.020965576, 0.04525757, -0.01576233, 0.048583984, -0.012458801, -0.039276123, 0.015014648, -0.059692383, -0.032348633, -0.005962372, -0.029129028, 0.021377563, -0.011100769, -0.008102417, -0.014984131, -0.04348755, -0.005306244, -0.026763916, -0.026000977, 0.028533936, 0.021713257, 0.015716553, 0.0064468384, -0.02532959, 0.014373779, 0.04397583, -0.011650085, 0.0047836304, 0.029785156, -0.0039711, 0.008666992, -0.002111435, 0.0055503845, 0.00084400177, 0.013168335, 0.004272461, -0.03756714, 0.02166748, 0.0037326813, -0.010948181, -0.018127441, 0.005504608, 0.010620117, 0.039215088, -0.013748169, -0.03378296, -0.0001937151, 0.025360107, -0.08319092, 0.008117676, -0.06866455, 0.04837036, 0.06304932, -0.04385376, 0.109802246, 0.045135498, -0.022460938, 0.03479004, -0.033691406, 0.008270264, -0.028686523, 0.06921387, -0.025619507, 0.048950195, -0.0039787292, 0.026885986, 0.0038166046, -0.019485474, -0.0026416779, 0.0061416626, 0.013931274, 0.004196167, -0.029800415, -0.005241394, 0.011230469, -0.0073242188, -0.008728027, -0.037719727, -0.01399231, -0.046813965, -0.014411926, -0.009246826, -0.00818634, -0.0023727417, 0.002161026, 0.007369995, -0.005710602, -0.0056762695, 0.012023926, 0.03970337, 0.018173218, 0.050811768, -0.04067993, 0.026229858, -0.04284668, 0.00030827522, -0.037841797, 0.006542206, -0.009864807, 0.004924774, -0.045288086, -0.050628662, 0.080444336, 0.031555176, 0.006706238, 0.016586304, -0.031219482, -0.056030273, 0.00831604, 0.0009756088, -0.01285553, -0.04916382, -0.01008606, 0.0018606186, 0.011070251, 0.036468506, -0.010520935, 0.0010557175, -0.0029792786, 0.019378662, -0.09326172, -0.064208984, 0.0004272461, -0.011192322, -0.010566711, 0.014732361, -0.0073890686, -0.01386261, -0.02720642, 0.05697632, -0.038879395, -0.026779175, -0.048034668, 0.013061523, 0.009941101, 0.017440796, 0.0010681152, -0.041900635, -0.0345459, -0.030899048, 0.027191162, -0.0004992485, -0.008987427, -0.016555786, 0.007534027, 0.0048675537, 0.05657959, 0.027542114, -0.03375244, -0.015930176, -0.015357971, -0.07635498, -0.050598145, -0.009635925, 0.027893066, 0.0112838745, -0.036132812, -0.047454834, -0.010604858, 0.011772156, 0.009941101, -0.0007534027, -0.026123047, 0.027282715, -0.020111084, -0.051879883, -0.018844604, -0.016937256, -0.01424408, 8.356571e-05, 0.009391785, -0.011940002, 0.06100464, 0.012367249, 0.007911682, -0.00048351288, -0.023391724, 0.036254883, -0.021835327, 0.021743774, -0.0079574585, -0.0390625, 0.006336212, 0.030883789, -0.03955078, 0.050628662, -0.021606445, -0.007537842, -0.025421143, -0.018249512, -0.022644043, -0.086364746, -0.011314392, -0.05142212, 0.019454956, 0.018859863, -0.008300781, -0.040405273, -0.00033211708, -0.019088745, -0.010635376, -0.015083313, 0.0103302, 0.020202637, -0.026947021, -0.042877197, -0.04498291, 0.021499634, 0.025161743, -0.018554688, -0.051940918, 0.00274086, -0.0024147034, -0.009162903, -0.00070524216, -0.008338928, -0.024795532, -0.01701355, 0.015594482, 0.02722168, -0.018417358, 0.018493652, 0.0435791, 0.016143799, -0.023422241, 0.0067367554, 0.01889038, -0.03717041, -0.064086914, -0.0012159348, 0.016036987, -0.017791748, 0.010429382, -0.019042969, -0.0055503845, 0.020095825, -0.030441284, 0.015838623, -0.013847351, -0.026748657, -0.016098022, 0.028442383, 0.02180481, -0.05041504, 0.0541687, -0.0006699562, -0.0574646, -0.03527832, -0.007637024, -0.002494812, 0.036712646, -0.0284729, -0.0099105835, 0.055603027, -0.009895325, -0.039276123, 0.03237915, 0.06719971, -0.0703125, -0.037078857, 0.066223145, -0.0030536652, -0.020355225, 0.05618286, -0.018493652, -0.007896423, -0.035949707, -0.008201599, 0.051483154, 0.0012674332, -0.010284424, -0.01663208, 0.017730713, -0.03338623, -0.050323486, -0.05618286, 0.03881836, 0.03527832, -0.03616333, -0.008529663, -0.0024967194, 0.010421753, -0.043273926, -0.05810547, -0.019897461, 0.014961243, 0.00756073, 0.03878784, -0.061706543, 0.0013332367, -0.020263672, -0.016281128, 0.014823914, 0.0074272156, -0.08337402, -0.027404785, 0.0051231384, -0.002565384, -0.047027588, -0.00055503845, 0.0690918, -0.061920166, -0.045166016, -0.05316162, 0.034088135, -0.03463745, -0.027709961, 0.04812622, 0.0073623657, -0.0013980865, 0.012413025, -0.002796173, -0.041870117, -0.003019333, -0.009803772, -0.048980713, -0.013290405, -0.038330078, 0.029129028, 0.00080633163, -0.018188477, -0.019485474, 0.042297363, -0.024307251, -0.035095215, -0.022491455, -0.011154175, 0.005794525, -0.011184692, 0.012275696, -0.027572632, 0.01751709, -0.026733398, 0.038085938, -0.0037250519, -0.04019165, -0.0030326843, 0.0024662018, 0.01121521, 0.0317688, 0.0025749207, 0.006427765, -0.024398804, -0.02557373, 0.032165527, -0.040039062, -0.022842407, -0.01499939, 0.012687683, -0.031585693, -0.012260437, 0.02330017, -0.0141067505, 0.027999878, 0.030776978, -0.0023097992, -0.013374329, 0.0032577515, -0.0015068054, 0.012886047, 0.015602112, 0.034210205, 0.049316406, -0.014076233, -0.046447754, 0.0037555695, 0.018600464, -0.03189087, -0.013313293, -0.06915283, -0.0077209473, -0.0005645752, -0.008285522, 0.053466797, -0.028900146, 0.017578125, 0.013015747, -0.014732361, 0.029449463, -0.009895325, 0.013252258, 0.026794434, -0.01374054, 0.04147339, -0.009857178, -0.027038574, 0.0036735535, 0.0129852295, 0.006755829, 0.045715332, 0.022628784, 0.0008058548, -0.0050086975, 0.013031006, 0.047180176, -0.08911133, 0.022857666, -0.059448242, -0.027145386, -0.032806396, -0.016403198, 0.0017957687, -0.021240234, 0.007083893, -0.042633057, 0.103759766, -0.04800415, 0.0016088486, 0.008399963, 0.014175415, -0.021835327, -0.027160645, 0.036102295, -0.014457703, -0.0033016205, -0.008605957, -0.030715942, 0.020477295, 0.02848816, -0.0051841736, 0.0007324219, 0.0012655258, 0.017303467, 0.014038086, 0.020706177, -0.02772522, 0.026016235, 0.044708252, -0.022262573, 0.017059326, -0.016525269, 0.0045547485, -0.018844604, 0.0030536652, -0.011260986, 0.024169922, 0.014190674, 0.029022217, 0.024490356, -0.01977539, -0.027572632, 2.0563602e-05, -0.00970459, 0.0068855286, 0.00054836273, 0.032440186, 0.030761719, 0.0052604675, -0.02935791, -0.026641846, -0.005947113, -0.054870605, -0.006248474, 0.020874023, -0.0070533752, -0.025726318, -0.039093018, -0.014717102, -0.028411865, -0.008705139, 0.0064315796, -0.0015687943, 0.020355225, 0.034454346, -0.016296387, 0.01626587, -0.005718231, -0.028076172, 0.027160645, -0.002937317, -0.0010890961, -0.0020484924, 0.0039520264, -0.020004272, -0.004928589, 0.021697998, -0.0014543533, -0.014511108, 0.03515625, 0.022903442, -0.04055786, -0.038604736, 0.011787415, 0.04055786, -0.0413208, -0.01737976, 0.007572174, 0.014778137, -0.0011110306, 0.07281494, -0.038391113, -0.05505371, -0.059783936, 0.00894928, -0.07562256, -0.010856628, 0.047180176, 0.0005311966, 0.04296875, 0.016448975, 0.03475952, -0.018371582, 0.0552063, -0.029327393, -0.0020580292, -0.042236328, -0.042663574, 0.06359863, 0.01235199, -0.032196045, -0.0034561157, 0.04397583, 0.019699097, -0.0006866455, 0.024932861, 0.012916565, -0.0904541, -0.003364563, -0.024887085, 0.020187378, -0.014228821, -0.0042037964, 0.038146973, 0.019592285, -0.018692017, 0.05026245, 0.04940796, 0.011154175, 0.052124023, -0.01991272, 0.02557373, -0.042816162, -0.064453125, -0.055114746, -0.02619934, 0.045806885, -0.016464233, -0.047729492, -0.0054779053, 0.020721436, -0.013389587, -0.000182271, 0.039611816, 0.010375977, 0.016220093, 0.0496521, -0.0048294067, -0.014572144, -0.012580872, -0.0088272095, -0.036743164, -0.062683105, -0.03466797, 0.033203125, -0.024398804, -0.020553589, -0.0036029816, 0.033721924, -0.0061798096, -0.0030212402, -0.037750244, -0.029541016, 0.005748749, 0.009918213, -0.015220642, 0.03366089, -0.0072631836, 0.0135650635, -0.03387451, 0.0026340485, 0.035247803, -0.010894775, -0.079711914, 0.035461426, 0.009376526, 0.05999756, -0.041259766, -0.053771973, -0.05227661, 0.042999268, -0.0043144226, -0.0033893585, 0.05783081, -0.018203735, -5.3167343e-05, 0.05267334, -0.050811768, -0.030303955, 0.007461548, 0.058746338, 0.02029419, 0.002248764]}, "B002PJJ0MI": {"id": "B002PJJ0MI", "original": "Brand: GasOne\nName: Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor\nDescription: \nFeatures: \u2713 HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances\n\u2713 EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands\n\u2713 DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head\n\u2713 HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability\n", "metadata": {"Name": "Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor", "Brand": "GasOne", "Description": "", "Features": "\u2713 HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances\n\u2713 EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands\n\u2713 DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head\n\u2713 HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.050689697, -0.023101807, -0.0077552795, 0.02659607, -0.043914795, 0.0058174133, -0.033996582, -0.01965332, -0.024154663, -0.005092621, 0.02279663, -0.006000519, 0.02217102, -0.07141113, 0.044403076, -0.017669678, -0.005832672, 0.035491943, -0.009178162, -0.03982544, 0.009056091, -0.046569824, -0.018951416, 0.10394287, 0.018859863, 0.01386261, -0.04196167, -0.005519867, 0.023544312, 0.013023376, 0.026382446, -0.010192871, 0.03970337, -0.026428223, -0.00844574, -0.021484375, 0.005264282, -0.026916504, -0.04510498, 0.012489319, -0.0053710938, 0.0146865845, 0.021347046, 0.017623901, -0.016738892, -0.011154175, -0.014175415, -0.03353882, -0.0146102905, -0.006549835, -0.011398315, 0.0009326935, 0.004623413, -0.03933716, -0.00048589706, 0.0034046173, 0.031463623, 0.0038642883, 0.009300232, -0.034332275, -0.030944824, 0.016448975, 0.033447266, 0.015266418, -0.034179688, 0.037109375, 0.05682373, -0.024475098, 0.013267517, -0.04824829, -0.03262329, 0.009124756, 0.0024700165, 0.014480591, -0.07128906, 0.010032654, 0.006893158, -0.03479004, 0.04598999, -0.024154663, -0.02029419, 0.008041382, 0.01449585, -0.046936035, 0.010147095, -0.03189087, -0.008605957, 0.0038547516, -0.011779785, -0.019744873, -0.012619019, -0.01020813, -0.068359375, 0.04537964, 0.026641846, -0.02619934, -0.032928467, -0.071899414, 0.049682617, 0.028121948, 0.035583496, -0.05355835, 0.04736328, -0.0050315857, -0.00774765, 0.09649658, 0.021621704, 0.08746338, 0.019699097, -0.023162842, 0.026992798, -0.028076172, -0.009895325, -0.006187439, -0.025894165, 0.012649536, -0.02545166, -0.012252808, -0.007270813, -0.020187378, 0.004924774, 0.007080078, 0.03591919, -0.023269653, 0.014541626, 0.0010032654, -0.034484863, -0.026657104, -0.03918457, 0.060394287, -0.014511108, -0.017990112, 0.012863159, 0.057373047, 0.00063323975, -0.02508545, 0.012825012, -0.023544312, 0.0050354004, -0.015586853, -0.017196655, -0.009933472, 0.04168701, 0.00028061867, -0.00015950203, 0.010437012, 0.010597229, 0.016677856, 0.001209259, -0.03439331, 0.018844604, -0.023223877, 0.030334473, 0.0015010834, 0.016586304, -0.0042915344, 0.034179688, -0.020904541, -0.012367249, -0.03466797, -0.0024223328, -0.025421143, -0.04800415, 0.0076828003, -0.028259277, 0.013244629, 0.054992676, -0.00025224686, 0.0034618378, 0.045684814, -0.034332275, 0.040161133, 0.00674057, -0.002565384, -0.0059890747, -0.017028809, -0.04333496, 0.054504395, 0.059783936, -0.10040283, -0.051971436, -0.055908203, 0.11199951, -0.031982422, -0.009056091, -0.019927979, -0.0036621094, -0.030319214, 0.029144287, -0.007896423, 0.026229858, 0.011352539, 0.01625061, -0.03665161, -0.005016327, 0.005344391, -0.018951416, 0.02545166, -0.02508545, -0.0043411255, -0.009490967, -0.0012044907, 0.01612854, -0.009414673, -0.023132324, -0.018310547, -0.011497498, 0.028442383, 0.052947998, 0.03302002, -0.023498535, 0.0033798218, 0.016357422, -0.078552246, -0.033447266, 0.018203735, -0.011924744, 0.012420654, 0.010093689, -0.0066490173, 0.0368042, -0.0126571655, 0.035736084, 0.039642334, 0.019302368, -0.01360321, -0.0146865845, -0.004928589, 0.004878998, 0.004360199, -0.03060913, 0.019699097, 0.053833008, 0.08178711, -0.0024337769, 0.017715454, 0.085632324, 0.01146698, 0.011619568, -0.017944336, 0.01927185, -0.023361206, -0.008239746, 0.006011963, -0.0048294067, -0.0069999695, 0.028717041, -0.019470215, -0.016998291, 0.02909851, 0.015670776, 0.02355957, 0.0024642944, -0.021820068, -0.031433105, 0.021057129, -0.033203125, 0.012031555, -0.032226562, 0.03665161, -0.023895264, 0.039611816, 0.049987793, -0.011566162, -0.0003695488, 0.030090332, 0.007381439, 0.012481689, -0.030776978, 0.038879395, 0.031463623, -0.020858765, -0.01096344, 0.01159668, 0.09552002, -0.014259338, -0.028640747, -0.010292053, 0.024505615, 0.0118255615, -0.007698059, -0.019729614, -0.00021541119, -0.0024738312, 0.04067993, -0.0020332336, 0.016189575, 0.0054779053, -0.009529114, -0.0028705597, 0.03010559, -0.010253906, -0.007858276, -0.0047721863, -0.026306152, -0.032592773, 0.058685303, -0.028060913, 0.03604126, -0.0569458, 0.010177612, 0.03189087, -0.06384277, 0.019622803, 0.012199402, -0.003686905, 0.029312134, 0.016357422, 0.013206482, -0.0143585205, -0.005264282, -0.0043792725, 0.029525757, 0.025756836, 0.04220581, 0.02267456, 0.023727417, 0.057434082, 0.084228516, 0.06036377, 0.0071907043, 0.0016956329, -0.007434845, -0.026123047, 0.010856628, -0.0065078735, -0.03881836, -0.010055542, -0.036987305, 0.021438599, 0.017715454, -0.01071167, 0.0031547546, 0.00762558, -0.00087308884, 0.011383057, -0.0043792725, 0.019973755, -0.0058898926, -0.0158844, -0.009674072, -0.034088135, 0.005592346, -0.018234253, -0.024108887, -0.04498291, 0.051330566, 0.009796143, -0.08099365, -0.010017395, 0.048095703, -0.03781128, 0.025161743, -0.0024757385, 0.02961731, -0.017425537, -0.048736572, -0.036193848, -0.035888672, -0.094177246, -0.031555176, -0.021072388, -0.053649902, -0.007621765, 0.06451416, -0.0024967194, -0.06677246, 0.0038490295, -0.004798889, 0.010673523, 0.03503418, -0.0067100525, -0.062805176, -0.027236938, -0.032562256, -0.019119263, 0.04055786, 0.0028324127, 0.01399231, 0.029678345, 0.06573486, 0.04849243, -0.006641388, 0.0024299622, 0.02067566, 0.028701782, 0.031219482, 0.014228821, 0.006958008, -0.025238037, 0.0052604675, 0.011909485, 0.0033798218, -0.022644043, 0.021072388, 0.0067710876, -0.03366089, 0.023483276, -0.026550293, -0.009468079, -0.05871582, 0.017623901, -0.004837036, -0.014564514, -0.0060653687, -0.07751465, -0.019821167, -0.05770874, 0.015151978, 0.010307312, -0.0044822693, 0.012313843, -0.030685425, 0.0062332153, -0.01448822, -0.006580353, 0.04006958, -0.010093689, -0.0022792816, -0.005882263, 0.057647705, -0.082214355, 0.053466797, 0.035949707, -0.04046631, 0.050750732, -0.039398193, 0.014526367, -0.011940002, 0.022125244, 0.00010621548, -0.0022335052, -0.022705078, 0.0028629303, 0.0013017654, 0.053985596, 0.01210022, -0.03164673, 0.029769897, -0.028457642, -0.01876831, -0.013244629, -0.06524658, -0.012397766, -0.018859863, -0.032409668, -0.012207031, -0.034332275, 0.02067566, -0.060638428, 0.024032593, -0.008659363, 0.03277588, 0.013420105, -0.012435913, 0.095458984, -0.008033752, 0.023010254, 0.005622864, -0.022064209, -0.026382446, -0.01687622, 0.021224976, -0.01953125, -0.040039062, 0.016937256, -0.010528564, 0.025299072, -0.009536743, -0.03186035, 0.00087833405, 0.06640625, 0.030090332, -0.019470215, -0.018600464, -0.011070251, 0.04827881, -0.0066719055, 0.021240234, -0.02696228, -0.03475952, 0.0058898926, -0.06585693, 0.061401367, 0.032592773, -0.02243042, 0.03756714, 0.010215759, 0.005672455, 0.021652222, 0.035583496, -0.011474609, 0.03994751, 0.0033035278, -0.019607544, -0.0057411194, -0.006137848, 0.017425537, 0.0068740845, -0.008705139, -0.020843506, 0.008895874, 0.008804321, -0.008102417, -0.025360107, 0.009895325, -0.001783371, -0.0068626404, 0.0025367737, -0.039916992, -0.00349617, -0.0395813, -0.021606445, 0.027664185, -0.0368042, 0.012535095, -0.0129852295, 0.007209778, -0.029510498, -0.003993988, 0.011650085, 0.04232788, -0.015472412, 0.018920898, 0.0042648315, -0.0035190582, -0.029388428, 0.009010315, -0.042907715, 0.03656006, 0.018585205, 0.032348633, 0.030593872, -0.024551392, 0.013809204, -0.032714844, -0.009841919, 0.048919678, -0.014312744, -0.105041504, 0.009788513, 0.055389404, 0.0020275116, -0.066711426, -0.0058021545, 0.0039596558, 0.008529663, 0.033172607, -0.036193848, 0.027648926, -0.00844574, -0.009880066, -0.05267334, -0.02619934, -0.011184692, 0.009681702, -0.02331543, 0.009712219, -0.027801514, 0.017105103, 0.0039901733, 0.04284668, -0.038726807, -0.021240234, -0.054901123, 0.0015439987, 0.006023407, -0.006893158, 0.001200676, -0.02822876, -0.021499634, 0.00043082237, 0.066467285, 0.0058898926, 0.018676758, -0.011940002, -0.0009031296, -0.007091522, 0.043701172, 0.03277588, -0.026428223, 0.022079468, -0.00033068657, -0.023544312, -0.07965088, 0.023132324, 0.026428223, 0.00032806396, -0.061920166, -0.01737976, 0.0725708, 0.0019226074, 0.016189575, -0.017166138, 0.033325195, 0.0023441315, 0.023895264, -0.097717285, -0.07635498, 0.0074386597, -0.03237915, 0.0035743713, -0.007873535, -0.015304565, 0.0413208, 0.06274414, 0.025283813, -0.0134887695, 0.0003950596, 0.038208008, -0.03451538, 0.008934021, -0.05529785, -0.00064754486, -0.048675537, 0.018569946, -0.059051514, 0.03375244, 0.0055999756, 0.0066452026, 0.0039787292, -0.023773193, 0.005176544, -0.040924072, 0.010498047, 0.011146545, -0.037200928, -0.04208374, -0.038024902, 0.023101807, -0.041656494, -0.0062026978, 0.020736694, 0.025161743, 0.060028076, -0.016403198, -0.01550293, 0.0023937225, -0.029632568, 0.010101318, 0.019592285, 0.017074585, -0.00019478798, -0.024124146, 0.043792725, -0.002090454, -0.0057258606, 0.033477783, -0.006378174, -0.0146102905, -0.012886047, 0.00046801567, -0.06945801, 0.027801514, 0.059295654, -0.018981934, -0.038116455, -0.012062073, 0.027114868, -0.03643799, -0.0637207, 0.029174805, 0.0075187683, 0.0047912598, 0.05444336, 0.02798462, 0.021652222, 0.017608643, 0.01676941, 0.014854431, -0.018539429, 0.02645874, 0.045318604, 0.005882263, 0.005832672, -0.04244995, 0.05697632, -0.01448822, -0.0049743652, -0.037841797, 0.016143799, 0.019241333, -0.0135650635, 0.0592041, -0.06036377, 0.055877686, -0.050567627, -0.038970947, 0.0012989044, 0.014099121, -0.0037994385, -0.005367279, -0.01184845, -0.05065918, -0.0340271, -0.023147583, -0.000895977, -0.017471313, 0.007255554, -0.04550171, 0.014190674, -0.002161026, -0.00207901, -0.0016899109, -0.026000977, 0.011871338, -0.059753418, 0.011512756, -0.029663086, 0.0008716583, 0.00415802, 0.006008148, 0.025894165, 0.01234436, -0.064575195, -0.05758667, -0.044067383, 0.011604309, -0.00749588, 0.062072754, -0.010368347, -0.0075149536, 0.009155273, 0.0015096664, 0.02178955, -0.034454346, -0.03933716, -0.0029754639, 0.011398315, 0.009712219, -0.036102295, 0.011726379, 0.05886841, -0.054901123, -0.04788208, 0.013771057, 0.010559082, 0.035888672, 0.025970459, 0.057373047, 0.009483337, 0.0009880066, 0.04937744, 0.027328491, -0.025634766, -0.0035915375, 0.009124756, -0.08178711, -0.045410156, -0.034210205, -0.0004823208, -0.029022217, -0.029174805, -0.0036182404, 0.042114258, 0.009048462, -0.009155273, -0.025115967, -0.040039062, 0.014129639, -0.01461792, -0.012168884, -0.018844604, 0.030441284, -0.036956787, 0.023849487, -0.052856445, -0.06463623, -0.0362854, 0.01209259, 0.0289917, 0.027008057, -0.0035362244, -0.027130127, -0.028060913, 0.00944519, 0.008544922, -0.022079468, 0.004245758, 0.029571533, 0.016326904, -0.007472992, -0.017166138, -0.008331299, -0.042755127, -0.011947632, 0.003944397, 0.06518555, -0.062561035, 0.024230957, 0.016174316, 0.060455322, 0.006893158, 0.030960083, 0.011688232, 0.014709473, 0.004840851, 0.020309448, 0.062286377, -0.023284912, -0.0039138794, -0.050872803, -0.03552246, -0.010353088, -0.03086853, 0.0115737915, -0.06488037, 0.04522705, -0.030654907, -0.013725281, -0.0032997131, -0.0335083, 0.0154800415, 0.011070251, 0.007293701, -0.015319824, 0.038726807, 0.029571533, -0.01499939, -0.042541504, 0.0007762909, 0.030548096, -0.025741577, 0.036499023, -0.046447754, 0.03152466, 0.04434204, -0.06768799, -0.02381897, 0.02810669, 0.019866943, -0.020462036, -0.010871887, 0.018112183, 0.019088745, -0.024276733, 0.007671356, 0.0075035095, 0.019470215, -0.0025939941, -0.03375244, -0.0043029785, -0.004447937, -0.041137695, 0.01965332, 0.011703491, -0.008552551, -0.00422287, -0.0362854, 0.04510498, 0.03125, 0.032318115, 0.0037326813, 0.007583618, 0.022750854, 0.01977539, -0.04675293, -0.045898438, -0.019332886, 0.026138306, 0.008712769, -0.017227173, -0.017456055, -0.004257202, 0.018630981, 0.0011005402, -0.039367676, 0.0423584, -0.07446289, 0.05722046, 0.023010254, 0.022583008, -0.012535095, -0.04058838, -0.024398804, -0.017608643, 0.0087890625, -0.010040283, 0.00013959408, 0.004878998, 0.005115509, -0.040740967, 0.04360962, -0.029556274, 0.010932922, -0.0519104, 0.033081055, 0.01979065, -0.04248047, -0.021743774, -0.026229858, -0.030288696, -0.0044937134, -0.023803711, -0.054229736, -0.009384155, -0.0010051727, 0.029251099, -0.023269653, 0.004917145, -0.021575928, -0.042877197, 0.034210205, -0.028518677, 0.016342163, -0.0234375, -0.03982544, -0.02822876, 0.010231018, -0.04043579, 0.012062073, 0.021438599, -0.02507019, 0.018829346, -0.0009393692, -0.025741577, -0.06161499, 0.007247925, -0.022705078, 0.0056152344, 0.01184845, 0.04763794, -0.03665161, -0.06713867, -0.044952393, 0.03338623, -0.078125, -0.06341553, -0.02168274, 0.025054932, 0.023223877, 0.011924744, 0.02960205, 0.09869385, 0.012741089, 0.025543213, 1.7642975e-05, -0.03857422, -0.00023186207, -0.0019798279, 0.0043296814, -0.0256958, -0.033966064, 0.027267456, 0.015197754, 0.019165039, 0.017852783, 0.03314209, -0.064941406, 0.002035141, -0.036376953, -0.0072517395, -0.00048160553, 0.0069732666, 0.02897644, 0.018096924, -0.055877686, 0.03677368, -0.020599365, 0.06573486, 0.012466431, -0.007457733, 0.050201416, -0.018585205, -0.06317139, -0.05279541, -0.028793335, 0.027114868, 0.0206604, -0.0020923615, -0.0143585205, -0.0023288727, -0.0013971329, -0.0107803345, -0.0082092285, -0.026916504, 0.0006685257, 0.037261963, -0.009025574, -0.0009775162, -0.003332138, 0.016235352, -0.031707764, -0.002790451, 0.030303955, 0.004814148, -0.015930176, -0.0018033981, -0.022460938, -0.0052833557, 0.0019989014, 0.013397217, -0.018737793, -0.021316528, 0.029785156, 0.03741455, 0.014839172, 0.0009508133, 0.019088745, 0.009963989, -0.03668213, 0.0033798218, 0.03250122, -0.013877869, -0.06616211, 0.056549072, 0.030517578, 0.035125732, -0.01852417, -0.06890869, -0.050445557, 0.019180298, 0.031829834, -0.014053345, 0.061645508, -0.021057129, 0.024261475, 0.04711914, -0.0390625, 0.0032844543, -0.02406311, 0.057006836, -0.0093688965, -0.009529114]}, "B0836MR1K7": {"id": "B0836MR1K7", "original": "Brand: PATIOPTION\nName: PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills\nDescription: 1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
      2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
      3. Concealed air vent design upgrade to prevent rain into your grill.\nFeatures: \ud83c\udf40\u3010Please measure your grill before purchase\u3011 30\" L x 24\" W x 44\" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis.\n\ud83c\udf40 \u3010Premium Sewing Technology\u3011Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity.\n\ud83c\udf40 \u3010Premium UV Resistant Fabric\u3011 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather.\n\ud83c\udf40 \u3010Secure Fit \u3011Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit.\n\ud83c\udf40 \u30102 Handles\u3011 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.\n", "metadata": {"Name": "PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills", "Brand": "PATIOPTION", "Description": "1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
      2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
      3. Concealed air vent design upgrade to prevent rain into your grill.", "Features": "\ud83c\udf40\u3010Please measure your grill before purchase\u3011 30\" L x 24\" W x 44\" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis.\n\ud83c\udf40 \u3010Premium Sewing Technology\u3011Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity.\n\ud83c\udf40 \u3010Premium UV Resistant Fabric\u3011 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather.\n\ud83c\udf40 \u3010Secure Fit \u3011Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit.\n\ud83c\udf40 \u30102 Handles\u3011 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.01184082, -0.018875122, -0.039978027, -0.05657959, -0.019470215, 0.002544403, -0.017684937, 0.046051025, -0.049591064, -0.012268066, -0.009841919, 0.04067993, -0.07672119, -0.029373169, 0.037902832, -0.046905518, 0.0057373047, -0.009849548, -0.026275635, -0.026855469, -0.021133423, -0.015823364, -0.021621704, 0.04510498, 0.036071777, -0.01574707, 0.058502197, -0.02619934, 0.030899048, -0.023712158, 0.026473999, -0.0031261444, 0.05218506, -0.0038967133, -0.04525757, 0.000998497, -0.037994385, -0.0005502701, -0.027908325, 0.0010347366, 0.01197052, -0.0051078796, -0.004425049, -0.020126343, -0.0057258606, -0.04046631, 0.02406311, -0.033569336, 0.007873535, -0.000954628, 0.03213501, 0.019332886, 0.02947998, 0.021652222, -0.01725769, 0.024169922, -0.0073051453, -0.002412796, 0.023971558, -0.010169983, 0.003917694, -0.010269165, 0.027786255, 0.010276794, -0.02279663, 0.01197052, 0.115600586, 0.009109497, -0.055480957, -0.06536865, 0.01725769, 0.012779236, 0.022521973, -0.010467529, -0.020126343, -0.038116455, -0.014198303, -0.029846191, 0.02558899, 0.0002696514, -0.01121521, -0.04953003, 0.05987549, -0.015296936, 0.006149292, 0.0154418945, -0.0060424805, -0.0069999695, 0.0121154785, -0.019470215, -0.005809784, 0.010360718, -0.024871826, 0.03062439, -0.001543045, -0.018493652, -0.0317688, -0.027160645, 0.00844574, 0.029220581, 0.004421234, -0.029525757, 0.044281006, -0.011184692, -0.025253296, 0.044036865, -0.0013122559, 0.029586792, -0.015113831, 0.0075645447, -0.016479492, -0.07171631, -0.030227661, -0.04260254, -0.03488159, 0.024307251, -0.015357971, -0.046844482, 0.022781372, -0.075683594, -0.0769043, -0.041503906, -0.057037354, 0.07342529, 0.06323242, 0.051727295, 0.023620605, 0.06567383, -0.032989502, -0.015853882, -0.0063095093, 0.030639648, 0.028961182, 0.04473877, 0.0018930435, 0.0035648346, 0.03125, -0.03994751, -0.024215698, 0.00920105, 0.01448822, 0.026260376, 0.032043457, -0.030654907, -0.019943237, 0.016143799, 0.023483276, 0.0030994415, -0.009346008, -0.05441284, 0.0102005005, -0.01713562, 0.103393555, -0.008255005, -0.07696533, -0.022262573, 0.038360596, -0.025924683, -0.07550049, -0.09460449, -0.012710571, -0.024673462, 0.0027980804, -0.032989502, -0.044036865, 0.038513184, 0.0010967255, 0.0025310516, 0.022888184, 0.070129395, 0.005771637, 0.0012760162, -0.010650635, 0.025436401, -0.011375427, -0.011856079, -0.005859375, 0.06317139, 0.07678223, -0.09967041, -0.063964844, -0.052764893, 0.16003418, -0.04360962, 0.009399414, -0.024810791, 0.009140015, -0.02180481, 0.019683838, 0.010650635, 0.0085372925, -0.0076065063, -0.0069465637, 0.0037345886, -0.03086853, -0.007965088, -0.013923645, 0.037384033, -0.021362305, -0.01828003, -0.06414795, -0.004009247, -0.0037841797, 0.005428314, 0.033813477, -0.033050537, 0.016479492, 0.021865845, 0.00806427, 0.029464722, -0.0034980774, 0.0033016205, -0.021347046, -0.014717102, -0.015655518, 0.009681702, -0.007709503, 0.018051147, -0.017288208, 0.03829956, 0.013191223, -0.026992798, 0.0066452026, 0.04006958, -0.011566162, -0.04574585, 0.012527466, -0.020858765, 0.004989624, 0.0025959015, 0.0057907104, 0.0048446655, 0.05493164, 0.010917664, -0.016174316, 0.041168213, 0.03652954, -0.01689148, -0.039215088, 0.021240234, 0.007217407, -0.026000977, -0.053771973, -0.00035524368, 0.018005371, -0.029342651, -0.023757935, 0.009475708, -0.021377563, 0.0032138824, 0.00088977814, 0.0021305084, 0.018295288, -0.037017822, -0.029571533, 0.042877197, -0.035583496, 0.011734009, -0.029586792, 0.036956787, -0.017150879, 0.047698975, 0.06488037, -0.005859375, 0.048736572, -0.008483887, 0.050842285, 0.048858643, -0.0017929077, -0.011520386, -0.005138397, 0.005115509, 0.0034370422, 0.06341553, 0.015487671, 0.02180481, -0.029205322, -0.01574707, -0.0020179749, 0.020248413, -0.0044441223, 0.017669678, 0.0007171631, -0.012794495, 0.025619507, 0.009819031, 0.0008416176, -0.020446777, -0.011154175, -0.025527954, 0.006603241, 0.017074585, -0.014732361, -0.004875183, 0.047851562, -0.025009155, 0.011810303, 0.0002092123, 0.014816284, -0.023910522, -0.018920898, 0.029312134, -0.007820129, -0.0068473816, -0.007701874, 0.021148682, -0.00995636, 8.612871e-05, 0.0026054382, -0.050201416, 0.03186035, 0.035858154, 0.0395813, -0.03338623, 0.08074951, 0.030090332, 0.01852417, 0.06048584, 0.03982544, 0.010650635, -0.025314331, -0.013412476, -0.0062065125, -0.04107666, -0.0016384125, 0.015022278, -0.059417725, 0.01210022, -0.01663208, 0.018997192, -0.04336548, -0.04434204, -0.047790527, -0.027801514, -0.009315491, 0.010612488, -0.011787415, 0.045837402, 0.02558899, 0.011619568, 0.028442383, -0.004421234, -0.0026836395, -0.021957397, -0.024780273, -0.031463623, 0.04425049, 0.0024986267, 0.009880066, 0.0087890625, 0.0070495605, -0.041809082, -0.03161621, -0.04498291, -0.038085938, 0.045654297, 0.033050537, -0.06085205, -0.012626648, -0.091674805, -0.020736694, -0.0025863647, -0.04901123, 0.02281189, 0.025680542, -0.0093688965, -0.007457733, -0.0010290146, 0.050964355, 0.0137786865, 0.04168701, 0.03048706, -0.070617676, -0.016693115, -0.005970001, -0.062072754, -0.008140564, -0.05154419, -0.0063972473, -0.029067993, -0.02041626, -0.011146545, -0.009979248, -0.01398468, -0.010322571, 0.02355957, 0.046203613, 0.05810547, -0.025817871, -0.044006348, -0.008338928, 0.0725708, -0.01600647, -0.020553589, 0.02142334, 0.0140686035, -0.012245178, 0.036499023, -0.018234253, -0.022903442, -0.10119629, -0.01676941, -0.019226074, -0.03149414, 0.0043258667, -0.031585693, -0.027008057, -0.06750488, -0.008224487, 0.070495605, -0.027954102, -0.0031871796, -0.0061683655, 0.003293991, 0.026473999, -0.0032730103, 0.049194336, 0.0009813309, 0.0058898926, -0.03866577, 0.010116577, -0.0051193237, -0.022033691, -0.028961182, -0.023132324, 0.02255249, -0.013328552, 0.010192871, -0.029312134, 0.021362305, -0.0063667297, -0.015686035, 0.015289307, 0.0068893433, -0.070251465, -0.037384033, 0.0008215904, -0.029052734, 0.057891846, -0.07110596, -0.009490967, 0.015151978, -0.0013122559, 0.016921997, -0.0019702911, -0.01335907, 0.017913818, -0.029922485, -0.007911682, -0.055145264, 0.0067253113, 0.011276245, 0.062683105, 0.02885437, 0.019729614, 0.09246826, -0.02784729, 0.018829346, 0.009140015, 0.015594482, -0.016555786, -0.010429382, 0.056274414, -0.02696228, 0.006866455, 0.015716553, 0.022583008, -0.010322571, -0.046417236, 0.027709961, -0.018493652, -0.028427124, 0.00178051, -0.028518677, 0.04510498, 0.009246826, -0.029571533, -0.003358841, -0.00548172, -0.001707077, -0.07373047, -0.0006623268, -0.06756592, 0.08770752, 0.041656494, -0.012619019, 0.09838867, 0.091552734, -0.023635864, 0.03604126, 0.036712646, 0.006416321, 0.00027012825, 0.049957275, -0.026153564, -0.018432617, -7.3730946e-05, 0.0115356445, 0.016540527, -0.0069084167, -0.013122559, -0.013496399, -0.02758789, -0.028930664, -0.0309906, 0.029190063, 0.031341553, -0.010177612, -0.008781433, -0.021820068, 0.0031261444, -0.051940918, 0.04034424, 0.013969421, -0.022644043, -0.010391235, -0.009338379, 0.025924683, -0.04724121, -0.009674072, 0.0042686462, 0.02545166, -0.0039596558, 0.006210327, 0.01890564, -0.00944519, -0.00920105, 0.02558899, -0.027389526, 0.005420685, 0.026504517, 0.0076179504, 0.009536743, -0.0048217773, 0.007637024, 0.023422241, 0.00035238266, 0.0126953125, -0.039001465, -0.05279541, -0.0070266724, 0.024780273, 0.023117065, -0.03604126, 0.006664276, -0.022949219, -0.02947998, 0.0023002625, -0.03314209, 0.02772522, -0.056793213, -0.043182373, -0.051330566, 0.009727478, -0.0073242188, -0.038879395, -0.08239746, 0.03149414, 0.0032100677, -0.00019133091, -0.0028266907, 0.06933594, -0.062927246, -0.041168213, 0.0023097992, 0.005302429, 0.0435791, 0.027267456, -0.0019893646, -0.014854431, -0.04067993, -0.037017822, 0.0079422, -0.02017212, -0.036010742, -0.007270813, 0.0049552917, -0.00041890144, 0.03665161, 0.0552063, -0.0070343018, 0.042175293, -0.014877319, 0.025909424, -0.07574463, 0.0024852753, 0.047607422, -0.04699707, -0.044708252, -0.02809143, 0.06329346, 0.00029325485, -0.03704834, -0.05758667, 0.040008545, 0.029922485, 0.025756836, 0.0181427, 0.007194519, 0.03164673, 0.005302429, -0.0070495605, 0.00084257126, -0.008239746, 0.01461792, -0.020309448, -0.010147095, -0.01260376, -0.008758545, 0.0067634583, 0.017166138, 0.012718201, -0.02897644, 0.0004916191, -0.034423828, 0.020736694, -0.07684326, 0.06555176, 0.070129395, 0.010559082, 0.012809753, -0.007827759, 0.0041046143, -0.03970337, 0.018859863, -0.06088257, 0.017715454, -0.022827148, -0.035888672, -0.017227173, -0.06604004, -0.00029802322, 0.010246277, -0.0051994324, 0.027694702, -0.02520752, 0.014533997, -0.020370483, -0.02583313, 0.029220581, 0.012191772, 0.033813477, 0.037109375, -0.028884888, -0.023727417, -0.03152466, -0.010375977, -0.0019311905, -0.020401001, -0.029922485, 0.009628296, 0.012313843, -0.008163452, 0.030075073, 0.018920898, 0.008033752, -0.043914795, -0.006893158, -0.0017080307, -0.022644043, -0.0287323, 0.039031982, -0.025634766, 0.040802002, 0.015716553, -0.02835083, 0.022705078, 0.030883789, -0.03793335, 0.044189453, 0.0116119385, -0.024719238, 0.007003784, 0.014297485, 0.00806427, -0.0028381348, 0.05041504, 0.01525116, -0.010559082, -0.028335571, 0.004589081, -0.0079422, 0.016784668, -0.03842163, -0.007286072, 0.04244995, -0.0013723373, -0.014770508, 0.00409317, 0.028015137, -0.008262634, 0.020370483, 0.018493652, 0.0061836243, -0.018661499, 0.013938904, -0.008178711, -0.024887085, -0.032073975, -0.0074005127, 0.031021118, -0.008125305, -0.016235352, -0.029876709, -0.013038635, 0.00016355515, -0.017181396, -0.008392334, 0.011276245, 0.023330688, -0.021408081, -0.02142334, 0.019424438, 0.010917664, -0.045928955, -0.0048980713, -0.006072998, 0.034576416, 0.0025634766, 0.03491211, -0.01146698, 0.011474609, -0.0010938644, -0.024810791, 0.00970459, 0.0032615662, -0.029037476, 0.010169983, -0.008811951, -0.013511658, -0.03894043, 0.0062713623, 0.030548096, -0.056488037, -0.03152466, -0.022415161, 0.017730713, -0.023880005, -0.029373169, 0.0390625, 0.022583008, -0.00044107437, 0.029724121, 0.0060691833, -0.034179688, 0.026916504, 0.023422241, -0.077697754, 0.0062789917, 0.002029419, 0.029083252, -0.024490356, -0.020401001, -0.0138168335, 0.028198242, -0.014724731, -0.016967773, -0.0018348694, -0.017807007, -0.002670288, -0.024597168, 0.026565552, -0.029083252, -0.009338379, -0.030059814, -0.02633667, -0.07366943, -0.025604248, 0.029891968, 0.013290405, 0.030395508, 0.0036411285, 0.03842163, 0.039398193, -0.039855957, 0.03677368, 0.011917114, -0.068481445, 0.009239197, 0.070617676, 0.04916382, 0.029510498, -0.055023193, -0.044799805, 0.010932922, 0.008110046, 0.056488037, -0.03753662, 0.0020122528, -0.010185242, 0.047180176, 0.009429932, -0.050994873, -0.001033783, 0.0047073364, 0.020935059, -0.028137207, -0.030776978, 0.028717041, -0.030731201, 0.010368347, -0.023147583, -0.007820129, 0.008201599, -0.012931824, 0.012741089, -0.011528015, 0.03591919, 0.009918213, -0.002313614, 0.012809753, -0.0016508102, 0.013473511, -0.048797607, -0.0020446777, 0.024414062, -0.02607727, -0.018508911, 0.0072898865, -0.04849243, 0.030044556, 0.04623413, -0.02319336, 0.019470215, 0.009887695, 0.008270264, 0.0041503906, -0.018096924, 0.030151367, -0.017730713, -0.011772156, 0.0002784729, -0.07562256, -0.038208008, -0.0234375, 0.044311523, -0.009590149, 0.088012695, -0.029556274, 0.004360199, -0.018875122, 0.016555786, 0.0077667236, -0.022659302, 0.03338623, 0.038330078, 0.0024051666, -0.034851074, -0.031143188, -0.04650879, 0.042266846, -0.055145264, -0.027709961, -0.030212402, 0.038726807, -0.020492554, -0.0023994446, -0.011581421, -0.016723633, 0.05407715, 0.005569458, -0.0075416565, 0.00843811, 0.008102417, -0.006793976, -0.016998291, -0.045776367, 0.019805908, -0.013870239, 0.016540527, 0.026519775, 0.0063705444, -0.027023315, -0.024230957, -0.023513794, 0.010284424, 0.002708435, 0.016311646, 0.013542175, 0.024230957, 0.010887146, 0.043395996, 0.07269287, 0.011672974, 0.03942871, -0.025680542, -0.00843811, 0.0033569336, -0.029022217, -0.000808239, -0.027389526, -0.014205933, 0.008033752, -0.005947113, 0.0051651, 0.020477295, 0.010688782, -0.0032901764, -0.024795532, 0.010681152, 0.011550903, -0.026107788, -0.016586304, -0.028869629, 0.019012451, -0.0075187683, 0.019073486, -0.038391113, 0.015853882, -0.014930725, -0.010971069, 0.0061683655, -0.032928467, -0.026412964, 0.016723633, 0.03744507, -0.05722046, -0.026947021, 0.0016841888, 0.020523071, -0.0075263977, 0.05810547, -0.025314331, -0.041107178, -0.059265137, 0.02835083, -0.07519531, -0.013519287, -0.007358551, 0.00983429, 0.03543091, 0.00027513504, 0.032348633, 0.103271484, 0.01020813, 0.0029640198, 0.003168106, -0.016036987, -0.030700684, 0.06488037, 0.02204895, -0.020614624, 0.020980835, 0.045928955, 0.011940002, -0.01209259, 0.048553467, -0.024414062, -0.057769775, -0.016342163, -0.03475952, 0.014099121, -0.010055542, -0.0031642914, 0.013786316, 0.015136719, -0.023803711, 0.019348145, 0.011619568, -0.027435303, 0.021621704, 0.008964539, 0.03466797, 0.012573242, -0.06072998, -0.029830933, -0.025283813, -0.0021820068, 0.01927185, 0.002960205, -0.013786316, 0.017318726, 0.005191803, -0.012062073, 0.008285522, -0.003271103, -0.0019760132, 0.025894165, 0.007659912, -0.028747559, -0.005218506, -0.02911377, -0.037841797, -0.05392456, 0.051513672, 0.04437256, -0.01965332, -0.001832962, 0.0028419495, -0.023025513, 0.025131226, -0.011123657, -0.015808105, -0.048309326, 0.025466919, 0.0317688, 0.006439209, 0.02772522, 0.010070801, -0.003704071, 0.008300781, 0.020477295, 0.008010864, 0.030273438, -0.005428314, -0.0005016327, -0.009117126, 0.022781372, -0.022644043, -0.059051514, -0.05480957, 0.026748657, 0.02229309, -0.011352539, 0.06585693, -0.015655518, 0.013961792, -0.0184021, -0.040222168, -0.020004272, 0.018554688, 0.0033798218, -0.031311035, 0.018127441]}, "B0195MZHBK": {"id": "B0195MZHBK", "original": "Brand: Blackstone\nName: Blackstone 1650 Tabletop Grill without Hood Propane Fuelled \u2013 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black\nDescription: \nFeatures: Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use\nEasy to store - simply store the griddle top upside down on top of the griddle body After use to save space\nNo hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors\nSpacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability\nFast and even heating - this grill has a stainless Steel \"H\" Burner that heats up fast! The \"H\" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output\n", "metadata": {"Name": "Blackstone 1650 Tabletop Grill without Hood Propane Fuelled \u2013 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black", "Brand": "Blackstone", "Description": "", "Features": "Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use\nEasy to store - simply store the griddle top upside down on top of the griddle body After use to save space\nNo hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors\nSpacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability\nFast and even heating - this grill has a stainless Steel \"H\" Burner that heats up fast! The \"H\" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0019798279, 0.024139404, -0.014961243, -0.025970459, 0.018661499, 0.0017642975, -0.013267517, -0.032409668, -0.03955078, -0.005241394, -0.025894165, 0.07489014, -0.06222534, -0.014343262, 0.043273926, -0.025253296, 0.013687134, 0.016983032, 0.01322937, -0.014434814, -0.011451721, 0.0054130554, -0.020690918, 0.048980713, 0.054840088, -0.06359863, -0.022399902, -0.011291504, 0.043121338, -0.0008587837, 0.020935059, -8.392334e-05, 0.022079468, 0.010124207, -0.027053833, -0.020996094, -0.02748108, 0.0039405823, -0.0031547546, 0.0129852295, 0.042144775, -0.023406982, -0.06262207, 0.061584473, -0.046905518, -0.03466797, 0.03994751, -0.0057640076, 0.01158905, 0.03591919, 0.0005726814, 0.036499023, 0.0060424805, -0.0019817352, 0.0007343292, 0.010673523, 0.031204224, -0.015991211, 0.010299683, -0.010429382, -0.02798462, 0.024673462, 0.023117065, -0.008903503, -0.04598999, 0.0107421875, 0.04611206, -0.031555176, -0.024810791, -0.04876709, 0.023986816, 0.00983429, -0.00806427, -0.022903442, -0.019592285, -0.02420044, 0.012077332, -0.03781128, 0.01008606, 0.020233154, -0.053619385, -0.028366089, -0.03591919, -0.027420044, -0.021224976, -0.03274536, -0.027664185, 0.022781372, -0.016235352, -0.038360596, -0.014564514, -0.062072754, -0.05596924, 0.05001831, 0.023620605, -0.0284729, -0.017852783, -0.04385376, 0.009025574, 0.02067566, -0.01828003, -0.025253296, 0.036865234, -0.020126343, -0.01838684, 0.07098389, 0.006515503, 0.031982422, -0.001830101, -0.0017471313, -0.00029850006, -0.07397461, 0.027572632, 0.011474609, -0.029571533, -0.008110046, 0.0015621185, 0.004711151, -0.0014772415, 0.0067481995, -0.03640747, -0.031280518, 0.019042969, 0.009941101, 0.05041504, 0.030014038, -0.016662598, 0.011184692, -0.059783936, 0.048431396, -0.061553955, 0.009101868, 0.060913086, 0.020690918, 0.0034389496, -0.04232788, -0.029159546, -0.016174316, 0.0045051575, 6.93202e-05, -0.0025749207, -0.018753052, 0.027709961, 0.010299683, -0.010910034, -0.0032672882, 0.045715332, 0.025924683, -0.026123047, -0.045440674, 0.010223389, 0.053710938, 0.02947998, 0.012268066, -0.042144775, -0.028411865, -0.0033168793, -0.025161743, 0.004722595, -0.052124023, 0.004360199, 0.004096985, 0.009017944, 0.020065308, 0.0206604, -0.007133484, -0.016433716, -0.002166748, 0.008056641, 0.037231445, 0.00084495544, 0.031829834, -0.02607727, -0.0009217262, 0.0022392273, -0.018447876, -0.037841797, 0.044067383, 0.070617676, -0.091674805, -0.073791504, -0.05822754, 0.09008789, -0.027191162, -0.029266357, 0.03869629, 0.013832092, 0.017623901, 0.0014591217, -3.528595e-05, 0.042297363, 0.04849243, -0.02709961, 0.004814148, 0.021087646, 0.0033550262, -0.007144928, 0.008628845, -0.008834839, -0.03062439, -0.006591797, 0.0043945312, 0.010276794, 0.00579834, -0.018585205, 0.0004644394, -0.01171875, 0.022506714, 0.020980835, 0.020828247, -0.0013523102, 0.03475952, -0.006122589, -0.092285156, -0.03439331, 0.032073975, -0.011558533, 0.041625977, 0.020843506, 0.005050659, 0.041809082, -0.030929565, 0.055664062, 0.0056533813, 0.020950317, -0.006122589, -0.0129776, -0.0021381378, 0.015838623, -0.00548172, 0.014595032, 0.040130615, 0.05227661, 0.04397583, -0.022079468, 0.041412354, 0.039367676, 0.037872314, -0.030517578, -0.005466461, 0.012771606, 0.043029785, -0.030563354, 0.007511139, 0.008728027, -0.049072266, -0.00017344952, 0.005279541, -0.05291748, -0.012435913, -0.000110924244, 0.040283203, 0.029708862, 0.100097656, -0.03869629, 0.01991272, -0.045074463, -0.017333984, -0.03756714, 0.05621338, -0.017669678, 0.10241699, 0.07879639, 0.02041626, -0.009628296, 0.008293152, 0.01826477, 0.027862549, 0.0003015995, -0.0037517548, 0.017852783, -0.0017156601, -0.013793945, 0.0077781677, 0.05279541, 0.0574646, -0.050750732, -0.0057792664, 0.014175415, 0.023849487, 0.010765076, -0.012382507, -0.019866943, -0.0032234192, 0.019897461, -0.029647827, 0.007320404, 0.02583313, -0.055023193, 0.004802704, 0.037902832, -0.023666382, -0.002275467, -0.053985596, -0.024795532, -0.002357483, 0.0496521, 0.0053253174, 0.0065345764, -0.01789856, -0.0024166107, 0.025772095, -0.035339355, -0.0023651123, -0.020019531, 0.025299072, -0.037841797, 0.027252197, 0.011192322, -0.040374756, -0.007446289, 0.0004210472, 0.02230835, 0.0043563843, 0.016448975, 0.0022716522, -0.018096924, 0.046051025, 0.025665283, 0.055389404, 0.024093628, -0.007019043, -0.04272461, 0.01499176, -0.014892578, 0.0034446716, 0.0010375977, -0.01374054, -0.043945312, 0.0072669983, 0.0011825562, -0.02407837, 7.098913e-05, 0.027069092, -0.012168884, 0.008125305, 0.0008034706, 0.015777588, 0.0056915283, 0.0066871643, 0.008132935, -0.038879395, 0.00051498413, -0.043914795, 0.022140503, -0.05053711, 0.01084137, 0.014144897, -0.091918945, 0.001791954, 0.013290405, -0.041137695, 0.030410767, -0.018722534, 0.012710571, -0.022583008, -0.050964355, -0.058929443, -0.049194336, -0.098083496, -0.053833008, -0.0036640167, -0.0725708, 0.020751953, 0.057617188, -0.001666069, -0.010772705, 0.0058670044, 0.010604858, 0.0044059753, 0.016586304, 0.06951904, -0.055755615, -0.06085205, -0.043273926, -0.040802002, 0.037719727, -0.023452759, -0.0018348694, 0.021087646, -0.007858276, 0.039916992, -0.020080566, 0.0637207, -0.0055770874, 0.03137207, 0.011726379, 0.013557434, 0.016357422, -0.014030457, 0.033416748, 0.05709839, -0.06402588, -0.009140015, -0.015464783, 0.03616333, 0.0018157959, -0.09838867, 0.008987427, -0.042419434, -0.03982544, 0.040893555, 0.0135650635, -0.023757935, -0.01927185, -0.06774902, -0.03353882, -0.026565552, 0.009429932, 0.03012085, 0.015731812, 0.025787354, 0.0039520264, 0.042907715, -0.00793457, -0.021484375, 0.026321411, 0.0002644062, 0.007881165, -0.04800415, 0.016799927, -0.03704834, 0.018844604, 0.006954193, -0.012435913, 0.019577026, 0.014328003, 0.016586304, -0.00198555, -0.0015268326, 0.01727295, -0.0368042, 0.01586914, 0.038330078, -0.011352539, 0.05206299, -0.016464233, -0.02607727, 0.011367798, -0.044952393, 0.006248474, -0.013450623, -0.06866455, 0.037322998, -0.04071045, 0.0011644363, -0.054473877, -0.05432129, -0.0004181862, -0.009857178, -0.006641388, -0.007118225, 0.0057144165, 0.021621704, -0.02355957, 0.07098389, 0.009124756, 0.03353882, 0.023666382, -0.02130127, -0.016952515, -0.037719727, 0.021850586, -0.0028362274, -0.006324768, -0.06915283, 0.03515625, -0.012664795, -0.027511597, 0.032318115, -0.0446167, 0.08117676, 0.072143555, -0.005077362, 0.001458168, -0.056671143, 0.018493652, 0.03781128, -0.06530762, -0.046966553, -0.04586792, 0.004512787, -0.0657959, 0.08728027, 0.03842163, -0.018157959, 0.07531738, 0.05154419, -0.020706177, 0.027008057, -0.026153564, 0.008491516, -0.017562866, 0.029296875, -0.030944824, 0.019424438, 0.014152527, -0.0027561188, 0.0055351257, 0.0020141602, -0.04135132, 0.005821228, -0.031951904, -0.024017334, 0.010261536, 0.003786087, -0.012008667, -0.0047035217, -0.007534027, 0.024017334, -0.04196167, -0.01637268, 0.020645142, 0.0132369995, -0.019119263, -0.0003669262, -0.009773254, 0.0041656494, -0.030685425, 0.0031337738, 0.0020275116, 0.014839172, 0.024536133, 0.030548096, -0.026107788, 0.0048446655, -0.008392334, 0.0008530617, -0.02458191, 0.029525757, 0.037841797, 0.021362305, 0.02947998, -0.02645874, -0.010925293, -0.008766174, -0.0127334595, -0.010467529, -0.05014038, -0.02432251, -0.0206604, -0.021270752, -0.0073242188, -0.0037956238, 0.00062561035, -0.021774292, 0.004081726, 0.016601562, -0.047851562, 0.005634308, -0.025985718, 0.004371643, -0.056762695, -0.02558899, 0.0020446777, 0.0017213821, -0.030014038, 0.01499176, -0.0043525696, -0.01675415, -0.026260376, 1.2457371e-05, -0.037628174, 0.01953125, -0.031921387, 0.0028514862, 0.04675293, 0.017425537, 0.019302368, -0.022872925, 0.006904602, -0.006843567, 0.029251099, -0.021972656, 0.011253357, -0.031921387, -0.005420685, 0.009719849, 0.019927979, 0.01966858, 0.019042969, 0.002445221, -0.0209198, -0.017349243, -0.02217102, -0.007724762, 0.039031982, -0.018173218, -0.015281677, 0.014328003, 0.06506348, -0.046447754, 0.002729416, -0.036499023, 0.030273438, -0.0030727386, 0.046661377, -0.07287598, -0.09246826, 0.008102417, -0.0029029846, -0.0051994324, 0.0009975433, -0.029876709, 0.031951904, 0.018157959, 0.017807007, -0.020111084, 0.00655365, -0.009361267, -0.021865845, 0.035827637, -0.04901123, 0.014671326, -0.050323486, -0.002729416, -0.07171631, 0.09307861, 0.07043457, 0.004989624, 0.0035247803, -0.0036354065, -0.01953125, -0.056793213, -0.032073975, -0.029785156, 0.026733398, -0.022338867, -0.022506714, 0.03491211, -0.014060974, 0.011726379, -0.018356323, -0.011787415, 0.0002670288, 0.0042381287, -0.007369995, -0.039642334, -0.032684326, -0.012413025, -0.021942139, 0.02017212, -0.05090332, -0.01763916, 0.09100342, -0.023468018, -0.028930664, 0.009819031, -0.014572144, -0.018508911, 0.008468628, -0.0058784485, -0.06298828, 0.027648926, 0.047454834, -0.0021514893, 0.00061416626, 0.028167725, -0.0027751923, -0.006965637, -0.015388489, 0.02319336, -0.023040771, -0.017456055, 0.059173584, -0.016693115, -0.003704071, 0.024963379, -0.023910522, 0.035491943, -0.010375977, -0.047027588, 0.018753052, -0.007320404, 0.010025024, -0.016326904, 0.0362854, 0.006793976, 0.00047636032, -0.05908203, 0.011413574, 0.025238037, 0.023803711, 0.039398193, -0.066101074, 0.035369873, -0.047698975, -0.0040283203, 0.009086609, 0.038726807, -0.010543823, 0.018157959, 0.030136108, 0.016860962, -0.03894043, 0.02507019, 0.011497498, -0.036712646, 0.010032654, -0.07513428, 0.012290955, 0.01537323, -0.019592285, -0.0039596558, -0.045959473, 0.020584106, 0.0051574707, -0.019729614, -0.050628662, 0.002046585, -0.042785645, -0.00027823448, 0.0059547424, 0.022857666, -0.06390381, -0.034851074, -0.042816162, 0.016220093, -0.007209778, 0.054351807, -0.0077323914, -0.010269165, -0.029907227, 0.015304565, 0.01676941, -0.008850098, -0.052612305, 0.019180298, 0.031951904, 0.06933594, -0.009757996, -0.013542175, 0.05633545, -0.036590576, -0.027328491, -0.034332275, 0.05834961, -0.057403564, -0.0026607513, 0.03213501, -0.0022621155, 0.026000977, 0.02748108, 0.018920898, -0.048950195, 0.034454346, 0.024124146, -0.109558105, -0.059783936, -0.024871826, -0.034240723, -0.03439331, 0.028121948, -0.023040771, 0.0345459, -0.020935059, 0.011955261, -0.04727173, -0.003528595, -0.01725769, 0.017089844, 0.01361084, 0.0019931793, -0.009651184, -0.06506348, -0.022109985, -0.036254883, -0.028305054, 0.01574707, 0.04348755, 0.02633667, -0.04550171, 0.01071167, 0.002166748, 0.011245728, 0.08129883, 0.0036678314, -0.016433716, -0.02230835, 0.010879517, 0.026000977, 0.0027503967, 0.018417358, 0.0028266907, -0.055725098, 0.0074920654, 0.010383606, 0.06994629, -0.05819702, 0.021362305, 0.00031590462, 0.058441162, 0.05041504, 0.015487671, 0.033416748, -0.02394104, -0.017715454, 0.0129470825, 0.014625549, -0.034332275, -0.018463135, -0.029571533, 0.01638794, 0.00605011, 0.009185791, 0.032043457, 0.038757324, 0.016464233, -0.030853271, 0.014038086, 0.012031555, -0.029159546, 0.0029144287, 0.03527832, 0.025375366, 0.025024414, -0.012176514, 0.011665344, -0.02067566, -0.036376953, 0.02128601, 0.030929565, -0.030166626, 0.040161133, -0.029510498, 0.02319336, 0.06188965, -0.081604004, -0.006111145, 0.03060913, 0.0033226013, 0.0006752014, -0.038513184, -0.010169983, 0.013404846, 0.0047569275, -0.010391235, 0.057891846, -0.011543274, 0.0009422302, -0.022155762, 0.0008611679, -0.016113281, -0.030471802, -0.012954712, 0.0020694733, 0.017105103, 0.0006737709, 0.017700195, -0.0007481575, 0.04159546, -0.05441284, -0.015296936, -0.006954193, 0.008285522, -0.02180481, -0.011749268, -0.03640747, -0.031280518, 0.055389404, 0.055786133, -0.024627686, -0.013648987, -0.045928955, -0.014198303, 0.041809082, -0.061553955, 0.02519226, -0.028900146, 0.074401855, 0.047180176, 0.03753662, 0.033416748, -0.0121536255, -0.026870728, 0.021606445, 0.006839752, -0.0018262863, 0.0061569214, 0.026138306, -0.028823853, 0.025817871, 0.020050049, -0.05114746, 0.014297485, 0.035827637, -0.020568848, 0.052764893, 0.02218628, -0.012008667, -0.029205322, -0.022109985, -0.020721436, -0.024795532, -0.033477783, -0.0022144318, 0.0012969971, -0.009780884, -0.023712158, -0.013748169, -0.0074653625, -0.006225586, 0.04812622, -0.051574707, -0.0031204224, -0.01424408, -0.03567505, -0.0049057007, -0.0037899017, -0.016540527, 0.046844482, 0.03213501, -0.032348633, -0.011192322, -0.0020637512, -0.0096206665, -0.05770874, 0.0024776459, -0.024673462, 0.04348755, 0.014007568, 0.03756714, 0.0007185936, -0.052124023, -0.05343628, 0.020980835, -0.033325195, -0.00920105, -0.014816284, -0.009437561, -0.022323608, -0.018615723, 0.027954102, 0.020309448, 0.026824951, -0.0055618286, -0.013427734, 0.0038146973, -0.021118164, 0.03414917, 0.010520935, -0.027664185, 0.0045280457, 0.021850586, -0.0040016174, 0.02407837, 0.029403687, -0.018920898, -0.04006958, -0.023117065, -0.041503906, 1.3828278e-05, -0.030349731, 0.0021381378, 0.028747559, 0.02003479, -0.020507812, 0.02671814, 0.010131836, 0.01890564, 0.03274536, -0.0099105835, 0.014465332, -0.021408081, -0.055511475, -0.024353027, -0.0073165894, 0.009475708, -0.0022525787, -0.050750732, -0.0113220215, -0.018341064, -0.020690918, -0.016723633, 0.0039863586, -0.011062622, -0.02607727, -0.011779785, 0.02508545, -0.039001465, -0.0037498474, -0.02897644, -0.03515625, -0.014015198, 0.03289795, 0.01576233, -0.013648987, 0.0016832352, -0.013572693, -0.003583908, -0.0058288574, 0.016311646, 0.0068969727, -0.002462387, -0.021713257, 0.021850586, 0.011886597, 0.032562256, -0.024475098, -0.01826477, -0.059417725, -0.00065898895, 0.031585693, -0.003786087, -0.027236938, 0.021911621, 0.037597656, 0.07104492, -0.04272461, -0.039611816, -0.027633667, 0.015106201, -0.005432129, 0.017333984, 0.058013916, -0.03277588, 0.016784668, -0.006137848, 0.002073288, 0.0013065338, 0.0071487427, 0.025863647, -0.019958496, 0.012046814]}, "B001NDK8C8": {"id": "B001NDK8C8", "original": "Brand: \nName: Propane Weed Burner Torch\nDescription: Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.\nFeatures: Measures roughly 22 1/2 long\n3 nozzles are included, 1-1/8\u201d, 1-3/8\u201d and 2\u201d\nHooks up to standard size propane tank with 60\u201d long attached hose\nBurns to 3000\u00b0F\nFlow control valve\n", "metadata": {"Name": "Propane Weed Burner Torch", "Brand": "", "Description": "Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.", "Features": "Measures roughly 22 1/2 long\n3 nozzles are included, 1-1/8\u201d, 1-3/8\u201d and 2\u201d\nHooks up to standard size propane tank with 60\u201d long attached hose\nBurns to 3000\u00b0F\nFlow control valve", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0031280518, -0.01448822, -0.0079422, -0.003314972, -0.017807007, -0.018173218, 0.024490356, -0.0067367554, -0.023269653, 0.002231598, -0.007194519, 0.02658081, 0.013633728, -0.034118652, 0.046661377, -0.030059814, 0.027038574, 0.037597656, 0.032958984, -0.02041626, -0.0007543564, 0.008384705, -0.025146484, 0.09643555, 0.0031166077, -0.02015686, 0.045776367, 0.0018157959, 0.013717651, -0.00035262108, 0.012161255, -0.0107040405, 0.047576904, -0.0030097961, -0.04812622, -0.061065674, 0.015365601, -0.033996582, -0.04623413, 0.021591187, 0.024597168, -0.003036499, -0.091552734, 0.0006785393, -0.05029297, -0.058380127, 0.03982544, -0.008369446, 0.013259888, 0.041534424, -0.01058197, 0.007217407, -0.034088135, 0.01134491, 0.008674622, -0.012382507, 0.08093262, -0.036865234, 0.012268066, -0.056762695, -0.04940796, 0.010063171, 0.045532227, 0.014839172, -0.040496826, 0.0033416748, 0.08709717, -0.0041999817, -0.012374878, -0.055786133, 0.004180908, 0.036499023, -0.009407043, 0.02357483, -0.032196045, -0.03366089, 0.033325195, -0.008720398, 0.021438599, 0.023590088, -0.016464233, -0.02909851, -0.017578125, -0.005859375, 0.012580872, 0.033477783, -0.012199402, -0.010253906, -0.033172607, -0.021743774, -0.032043457, 0.009613037, -0.018218994, -0.015991211, -0.040100098, -0.0011234283, -0.01600647, -0.07006836, 0.027618408, -0.0062332153, 0.020523071, -0.037109375, 0.01701355, 0.009841919, 0.0018949509, 0.057434082, 0.021896362, 0.0070762634, 0.010665894, -0.009155273, -0.015022278, 0.0036830902, 0.011268616, 0.022125244, -0.045898438, 0.008934021, -0.0011587143, -0.01676941, -0.023361206, -0.0035095215, -0.016433716, 0.016067505, -0.017456055, 0.007133484, -0.007320404, -0.014160156, 0.019546509, -0.004699707, -0.025680542, 0.008308411, -0.030914307, 0.041015625, 0.04800415, 0.0087890625, -0.015701294, -0.0015039444, 0.018066406, 0.0099487305, 0.010559082, -0.017791748, 0.023956299, -0.0158844, -0.0015878677, 0.016616821, 0.0079956055, 0.009689331, 0.019622803, 0.020370483, 0.019348145, -0.014503479, 0.0069236755, -0.00047421455, 0.019195557, 0.016662598, -0.018798828, -0.00049352646, -0.014564514, -0.003019333, 0.009513855, -0.02708435, 0.019332886, -0.0023994446, -0.026611328, 0.035186768, -0.010475159, 0.004562378, 0.037017822, 0.0024223328, 0.025787354, -0.0025234222, 0.030853271, -0.0054626465, 0.021240234, 0.0006570816, 0.0002644062, -0.0053253174, -0.032958984, 0.087646484, 0.056243896, -0.11206055, -0.05557251, -0.05230713, 0.14953613, -0.04272461, -0.002779007, -0.06286621, 0.013145447, -0.04611206, 0.024414062, 0.0045700073, 0.036010742, 0.010971069, -0.00056791306, -0.0036830902, -0.01701355, 0.002357483, -0.04525757, 0.033325195, -0.021118164, -0.017242432, 0.024429321, 0.008918762, 0.01159668, 0.009208679, 0.026138306, -0.014732361, 0.011856079, -0.006790161, 0.019317627, 0.039855957, -0.014091492, 0.00026273727, -0.0046844482, -0.039642334, -0.0025634766, 0.021621704, 0.011146545, 0.0054969788, 0.027694702, -0.030822754, 0.045928955, 0.006450653, 0.043029785, 0.03656006, 0.014389038, -0.033477783, -0.011169434, -0.025299072, -0.026153564, 0.004764557, -0.04901123, 0.044128418, 0.077941895, 0.10095215, -0.0058555603, -0.011108398, 0.030838013, -0.0026798248, 0.004055023, 0.0072135925, -0.0063285828, -0.015792847, -0.031799316, 0.042816162, 0.00035572052, 0.031982422, 0.024002075, 0.015686035, -0.0335083, 0.0013446808, 0.048034668, 0.0069999695, 0.019882202, -0.013473511, -0.032958984, 0.023971558, -0.037078857, -0.01586914, 0.008682251, 0.024398804, -0.010185242, 0.030044556, 0.04321289, 0.0009822845, 0.018051147, -0.037384033, 0.04458618, 0.025848389, 0.010696411, -0.044769287, 0.014579773, 0.02720642, -0.014373779, 0.0010986328, 0.056854248, -0.0066947937, -0.004623413, -0.004673004, -0.023956299, -0.0126953125, -0.000992775, -0.006729126, 0.008003235, -0.007167816, 0.037872314, 0.04849243, 0.016204834, -0.0026302338, -0.022994995, -0.015274048, -0.0031414032, 0.03326416, -0.0025291443, 0.0027561188, 0.03604126, -0.017578125, 0.044067383, -0.017242432, 0.058929443, -0.06628418, -0.0038967133, 0.029541016, -0.088378906, 0.04647827, -0.0067214966, 0.04736328, 0.01411438, 0.007385254, 0.004722595, -0.03173828, -0.01146698, -0.043914795, 0.0025672913, 0.036590576, -0.03591919, -0.043029785, -0.008583069, 0.0013532639, 0.0070648193, 0.040893555, 0.019332886, 0.014053345, 0.0025539398, 0.019577026, 0.0129852295, -0.01889038, 0.014053345, -0.0050735474, -0.046295166, -0.0062408447, 0.018478394, -0.02671814, 0.009414673, 0.0138168335, 0.0052452087, 0.0011806488, 0.006855011, 0.054626465, -0.0063171387, -0.045013428, 0.0017442703, -0.07281494, 0.0023975372, 0.023162842, -0.021713257, -0.014205933, -0.0057907104, 0.012641907, -0.011871338, 0.0014228821, 0.0019664764, -0.003107071, 0.026504517, -0.023406982, 0.042175293, -0.0859375, -0.08215332, 0.0025672913, -0.0413208, -0.070007324, -0.0049095154, -0.04522705, -0.053375244, 0.047821045, 0.059783936, 0.0046958923, -0.019760132, -0.0088272095, 0.006465912, 0.0134887695, -0.01309967, 0.011444092, -0.01625061, -0.016586304, 0.009925842, 0.0024433136, -0.02810669, -0.04559326, 0.057922363, -0.016113281, -0.0009255409, -0.0006928444, 0.02557373, 0.016113281, 0.009536743, 0.044158936, 0.074523926, 0.0063209534, 0.058166504, -0.034454346, 0.03237915, 0.028564453, -0.024475098, -0.036956787, -0.034057617, -0.0011997223, -0.0030879974, -0.034606934, 0.016601562, -0.011077881, -0.09375, 0.028656006, 0.026245117, -0.03640747, -0.027755737, -0.02885437, -0.07324219, -0.03753662, 0.005455017, 0.044525146, -0.040771484, 0.032958984, -0.059143066, 0.044525146, -0.014266968, -0.0005707741, 0.049926758, -0.010673523, 0.024291992, -0.046417236, 0.019607544, -0.051513672, 0.034606934, 0.018508911, -0.04333496, -0.01802063, -0.03704834, 0.025299072, -0.019104004, 0.027648926, -0.045898438, 0.017120361, -0.022598267, -0.0034618378, -0.009094238, 0.0015087128, 0.018356323, -0.029876709, 0.04788208, -0.029037476, 0.024963379, 0.0046806335, 0.016647339, 0.034332275, -0.0075645447, 0.004852295, -0.0012559891, 0.026123047, 0.029403687, -0.025360107, -0.006996155, -0.008102417, 0.040252686, 0.02255249, -0.026367188, 0.036743164, 0.021011353, 0.042053223, 0.013572693, -0.0032520294, 0.004802704, -0.043121338, 0.019302368, 0.024932861, 0.00198555, -0.050964355, 0.05340576, 0.019851685, 0.00573349, 0.004360199, -0.005050659, 0.042541504, -0.0014324188, -0.034698486, 0.0012588501, -0.010650635, 0.02670288, -0.015319824, 0.02468872, -0.018875122, -0.05493164, 0.0066947937, -0.05947876, 0.045532227, 0.025466919, -0.008033752, 0.036376953, 0.015853882, -0.005821228, 0.02319336, 3.272295e-05, 0.008903503, 0.0027885437, 0.056884766, -0.006290436, 0.006767273, -0.0018205643, 0.008010864, 0.03286743, 0.018463135, -0.054992676, 0.020629883, 0.049682617, -0.044647217, -0.017333984, 0.010238647, -0.0035572052, 0.012931824, 0.0129776, -0.05215454, -0.0056991577, -0.020095825, -0.011795044, 0.010444641, -0.02670288, -0.0042877197, -0.033996582, -0.09729004, -0.015037537, 0.049804688, -0.012367249, 0.025344849, -0.02973938, 0.004283905, 0.05340576, -0.0047569275, -0.047454834, 0.035736084, -0.023147583, 0.057006836, -0.007335663, -0.010009766, -0.0074424744, -0.049957275, 0.059448242, -0.022415161, -0.014541626, 0.03012085, -0.013336182, -0.06549072, -0.0046806335, 0.043945312, 0.02168274, -0.031219482, 0.009185791, -0.03753662, -0.028045654, -0.023864746, -0.034698486, -0.010749817, -0.014442444, -0.010124207, -0.053222656, -0.013053894, -0.0619812, 0.076171875, -0.038848877, 0.030166626, -0.012741089, -0.0015573502, 0.0020198822, 0.04196167, -0.029678345, -0.025894165, -0.060699463, 0.009338379, 0.011726379, 0.0066108704, -0.05218506, 0.0051994324, -0.014915466, 0.019515991, 0.026870728, -0.046295166, -0.011726379, -0.035247803, -0.017959595, 0.0059394836, 0.022521973, 0.03479004, -0.015235901, 0.002588272, -0.037078857, -0.03189087, -0.010307312, -0.04119873, -0.0035057068, -0.023513794, -0.04046631, -0.05114746, 0.032348633, -0.0090789795, 0.030578613, -0.020599365, -0.014160156, -0.014801025, 0.021255493, -0.058013916, -0.054718018, -0.002456665, -0.03225708, 0.018661499, 0.0018615723, -0.008262634, 0.032165527, 0.047210693, -0.01020813, -0.00086927414, 0.0039043427, -0.008476257, -0.014221191, 0.048736572, -0.053466797, 0.0104599, -0.05206299, -0.0040016174, -0.051818848, 0.066589355, 0.01826477, -0.036621094, -0.0064315796, -0.0019283295, -0.027359009, -0.039794922, -0.021270752, -0.013053894, 0.027191162, 0.013542175, -0.029052734, 0.008232117, -0.0079422, -0.0044555664, -0.019439697, -0.020233154, -0.015701294, 0.0059432983, -0.017837524, -0.056549072, 0.0021572113, 0.029525757, 0.011817932, 0.003622055, -0.06774902, -0.010246277, 0.035858154, 0.006511688, -0.010345459, 0.0027675629, -0.008560181, -0.032226562, -0.038116455, -0.019897461, -0.08477783, 0.04876709, 0.043121338, -0.006626129, -0.028884888, 0.02458191, -0.012382507, 0.018600464, 0.015052795, 0.06286621, -0.030059814, 0.044799805, -0.0073394775, 0.004211426, 0.014099121, 0.04446411, -0.0158844, 0.011512756, 0.016799927, -0.031982422, 0.03186035, -0.033172607, 0.0020523071, -0.0154418945, 0.037231445, 0.0018348694, 0.032562256, -0.081604004, 0.014205933, 0.037994385, 0.009780884, -6.276369e-05, -0.025878906, 0.050476074, 0.0074043274, -0.028900146, 0.004486084, 0.026153564, -0.03125, -0.010948181, 0.0026683807, -0.016021729, -0.019638062, -0.003545761, -0.0012350082, 0.047912598, 0.026306152, -0.044921875, 0.019515991, 0.04119873, -0.03591919, 0.01991272, 0.020324707, -0.021987915, -0.020324707, -0.027572632, 0.05026245, 0.0026340485, 0.007904053, 0.023757935, 0.024887085, 0.01235199, -0.05795288, -0.054840088, -0.037506104, 0.042022705, 0.0104904175, 0.04925537, -0.0029277802, -0.051483154, -0.009307861, 0.013313293, 0.0132751465, -0.025314331, -0.018325806, 0.0027446747, 0.012237549, 0.011375427, 0.0023002625, -0.027679443, 0.0496521, -0.018737793, -0.03567505, -0.062561035, 0.06185913, -0.014213562, 0.0024356842, 0.0814209, 0.015853882, 0.02267456, 0.022720337, 0.0024604797, 0.0002424717, -0.023101807, 0.009353638, 0.017608643, -0.0155181885, -0.023834229, 0.03552246, -0.02394104, 0.002664566, -0.0385437, 0.039398193, -0.030792236, -0.0071029663, -0.05734253, -0.019485474, -0.011100769, -0.041229248, -0.0043678284, -0.021621704, -0.012184143, -0.024520874, -0.029342651, -0.004714966, 0.0151901245, -0.03817749, 0.029937744, 0.04458618, -0.0056533813, 0.014678955, 0.0335083, -0.040863037, 0.016540527, -9.673834e-05, -0.040985107, -0.010673523, 0.016433716, 0.044189453, -0.02722168, 0.01449585, -0.0069122314, -0.026428223, 0.009590149, 0.01411438, 0.028457642, 0.00349617, 0.03869629, -0.027557373, 0.018981934, 0.00554657, 0.024871826, 0.030548096, -0.033935547, -0.072265625, 0.0019817352, -0.034484863, -0.06951904, -0.0011386871, -0.031707764, -0.023071289, 0.0073280334, -0.01878357, -0.0007200241, -0.014640808, 0.031311035, -0.04928589, 0.022644043, -0.0124053955, -0.028930664, 0.029067993, -0.026107788, 0.047180176, -0.024368286, -0.00028395653, -0.001868248, 0.008636475, -0.06726074, 0.020141602, 0.04534912, -0.02986145, 0.028564453, -0.06335449, -0.009429932, 0.030288696, -0.03894043, 9.024143e-05, 0.039154053, -0.01713562, -0.018096924, -0.06536865, -0.024780273, -0.022842407, 0.01576233, 0.026046753, 0.034606934, 0.02142334, 0.021835327, 0.0046920776, 0.0030899048, -0.004638672, 0.008476257, 0.0026798248, 0.0029010773, -0.0024738312, -0.014404297, -0.054901123, 0.031951904, 0.01235199, 0.0038700104, 0.005012512, -0.013763428, 0.014526367, 0.0045051575, 0.018493652, -0.019180298, -0.068603516, -0.038879395, 0.021591187, -0.00756073, 0.04611206, -0.0033683777, -0.0025672913, 0.05041504, -0.03378296, 0.038726807, -0.019485474, 0.066589355, 0.020050049, 0.025375366, -0.15893555, -0.055725098, -0.0045547485, -0.04083252, -0.010978699, 0.100097656, -0.017196655, -0.03086853, 0.016418457, -0.0044555664, 0.07525635, 0.018508911, 0.03289795, -0.07476807, 0.034973145, 0.032318115, -0.011581421, -0.027282715, -0.008628845, -0.0017766953, 0.022567749, 0.005580902, -0.009727478, -0.049468994, -0.012451172, -0.009887695, -0.014480591, -0.019805908, -0.0051193237, -0.003709793, 0.0066833496, -0.042022705, -0.013839722, -0.021072388, -0.041748047, 0.005935669, -0.008407593, -0.061035156, 0.033172607, 0.0060043335, -0.013137817, 0.002937317, -0.016494751, -0.020065308, -0.01436615, 0.021377563, 0.014961243, 0.04949951, -0.002128601, 0.028320312, -0.021011353, -0.041290283, -0.022079468, 0.042175293, -0.06414795, -0.06378174, 0.008995056, 0.016738892, 0.027633667, -0.014305115, -0.024230957, 0.037719727, 0.018600464, -0.016235352, 0.01675415, -0.021530151, 0.0017023087, 0.014854431, 0.009590149, -0.029922485, -0.04675293, -0.0055007935, -0.018005371, 0.057403564, 0.0033035278, 0.027679443, -0.0030460358, 0.0059776306, -0.014663696, -0.04940796, 0.02633667, -0.030075073, 0.04827881, 0.03274536, -0.050445557, -0.006580353, -0.015586853, -0.0019779205, 0.017578125, 0.0030136108, 0.03353882, -0.01675415, -0.037628174, -0.026321411, -0.019119263, 0.027114868, 0.022018433, -0.021530151, -0.027114868, 0.023269653, -0.017715454, 0.020080566, 0.037628174, -0.015716553, 0.029754639, -0.014175415, -0.007297516, 0.015510559, -0.03869629, 0.030715942, -0.0010957718, 1.001358e-05, 0.010871887, 0.017471313, -0.015060425, -0.0032958984, -0.021865845, 0.00712204, -0.0012388229, -0.017944336, 0.008102417, -0.03982544, 0.005531311, 0.029006958, 0.009262085, -0.007003784, -0.0026168823, -0.04232788, -0.034210205, 0.0138168335, 0.016983032, 0.013763428, -0.034576416, 0.04562378, 0.016448975, 0.09777832, -0.01158905, -0.08123779, -0.051849365, 0.031143188, 0.0029449463, -0.0032672882, 0.0129776, 0.006175995, 0.021759033, 0.04144287, 0.0029582977, 0.01146698, -0.009391785, 0.05935669, 0.01158905, -0.013206482]}, "B004FPZACE": {"id": "B004FPZACE", "original": "Brand: Bernzomatic\nName: BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch\nDescription: \nFeatures: Trigger-start ignition easily ignites the flame\nVersatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nAngled stainless steel burn tube\nFlame control valve easily sizes flame and extinguishes when finished\n", "metadata": {"Name": "BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch", "Brand": "Bernzomatic", "Description": "", "Features": "Trigger-start ignition easily ignites the flame\nVersatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nAngled stainless steel burn tube\nFlame control valve easily sizes flame and extinguishes when finished", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.019363403, 0.0004749298, -0.0206604, -0.05432129, 0.018508911, -0.0008277893, -0.013793945, 0.010932922, -0.034210205, 4.4226646e-05, 0.022537231, 0.010063171, -0.022781372, -0.047912598, 0.020126343, -0.02760315, 0.02053833, 0.03552246, 0.038513184, 0.0024757385, -0.00843811, 0.027755737, -0.009605408, 0.013298035, 0.009033203, -0.0066375732, -0.005256653, -0.023025513, 0.03894043, 0.017929077, 0.014656067, -0.01663208, 0.035186768, -0.011810303, -0.030059814, -0.0158844, 0.012458801, -0.028625488, -0.059326172, 0.044677734, 0.016845703, -0.009414673, -0.028167725, 0.01411438, -0.025039673, -0.042877197, -0.0017080307, -0.031402588, 0.032806396, 0.051727295, 0.0038204193, -0.011207581, -0.017578125, 0.018066406, -0.0073776245, 0.0018787384, 0.0020809174, -0.034851074, 0.04046631, 0.00091457367, -0.008216858, -0.024490356, 0.027023315, -0.020706177, -0.017929077, 0.014427185, 0.06707764, -0.02420044, 0.041931152, -0.02218628, -0.019699097, 0.04159546, 0.0019493103, -0.030944824, 0.011291504, 0.020065308, -0.006702423, 0.017959595, 0.01802063, 0.011062622, -0.008644104, -0.03149414, -0.028930664, -0.021392822, 0.013427734, 0.009529114, -0.010009766, -0.009552002, -0.003967285, -0.008354187, -0.011131287, 0.036102295, -0.024230957, -0.0010004044, -0.0158844, -0.014450073, -0.0107040405, -0.07952881, 0.036193848, -0.0206604, -0.011016846, -0.025222778, -0.0006451607, 0.02935791, 0.010025024, 0.036254883, -0.010391235, 0.012878418, 0.012863159, 0.005554199, -0.02722168, -0.023406982, -0.019836426, -0.0064926147, -0.0119018555, -0.013023376, -0.06021118, 0.027542114, -0.010253906, -0.013534546, -0.008239746, -0.00466156, 0.03213501, -0.010673523, 0.018966675, 0.022201538, -0.025680542, -0.029388428, -0.03970337, 0.0014591217, -0.039276123, 0.01361084, 0.046539307, 0.05508423, 0.022216797, -0.013313293, 0.013130188, 0.06677246, 0.019012451, -0.022384644, 0.04788208, 0.010101318, -0.0030403137, 0.038757324, -0.009094238, 0.038391113, 0.02520752, -0.009300232, -0.019805908, -0.0340271, -0.009635925, -0.021972656, 0.006252289, 0.022354126, -0.006839752, 0.011444092, -0.0006518364, -0.02128601, -0.008552551, -0.015930176, 0.0021820068, -0.033721924, -0.057006836, -0.014572144, -0.0435791, 0.036895752, 0.049316406, 0.001791954, 0.022064209, 0.052246094, 0.011184692, 0.022338867, 0.02696228, 0.029815674, 0.005554199, -0.01007843, 0.020370483, 0.051605225, 0.049835205, -0.046203613, -0.040100098, -0.03829956, 0.15722656, -0.055480957, -0.008010864, -0.05227661, 0.026809692, -0.017440796, 0.023651123, 0.016601562, 0.0016517639, 0.021911621, 0.03665161, -0.00970459, -0.0015449524, -0.027450562, -0.0040664673, 0.009773254, -0.011520386, -0.0082092285, 0.049591064, 0.023376465, 0.01725769, 0.002357483, -0.017868042, 0.015838623, -0.023223877, 0.0062065125, 0.020843506, 0.03289795, -0.017700195, 0.0042686462, 0.016281128, -0.07293701, -0.019699097, 0.04562378, -0.025375366, 0.021133423, 0.0015220642, -0.0034770966, 0.023544312, -0.04626465, 0.02722168, 0.020446777, 0.046691895, -0.051086426, -0.006099701, -0.057525635, 0.0001269579, -0.0043144226, -0.043518066, 0.05444336, 0.011550903, 0.037475586, 0.0071868896, 0.02293396, 0.07757568, 0.01737976, -0.0011081696, -0.0024166107, 0.016281128, -0.024871826, -0.02305603, -0.015609741, 0.030273438, 0.028686523, 0.024765015, -0.03326416, -0.033416748, 0.016845703, 0.038085938, 0.008049011, 0.025863647, -0.009140015, -0.046051025, 0.03778076, 0.016067505, 0.0259552, -0.02104187, 0.026367188, -0.022720337, 0.0345459, 0.0093688965, 0.0071487427, 0.042938232, 0.0075912476, 0.06555176, 0.04925537, -0.012550354, -0.023925781, -0.0014877319, 0.03579712, -0.01878357, -0.005870819, 0.05657959, -0.036956787, -0.014312744, -0.0022735596, 0.003414154, -0.010856628, 0.0038261414, -0.037200928, 0.0022010803, 0.0077285767, 0.033355713, -0.016983032, 0.036468506, 0.034210205, -0.02470398, -0.049041748, -0.003572464, -0.005027771, -0.02432251, 0.018005371, -0.030914307, -0.037902832, 0.03994751, 0.0002002716, 0.0043029785, -0.027450562, -0.0067329407, 0.03805542, -0.02532959, 0.009414673, -0.0001475811, -0.0025920868, 0.012519836, 0.021484375, 0.006412506, -0.03918457, -0.011917114, -0.0004017353, 0.026412964, 0.05001831, 0.033996582, -0.028686523, 0.045959473, 0.038970947, 0.0022907257, -0.036468506, -0.043426514, -0.0102005005, 0.034210205, 0.006298065, 0.014480591, -0.01121521, 0.004386902, 0.027023315, -0.0088272095, 0.004589081, 0.0034809113, -0.01826477, 0.0015821457, 0.003189087, -0.0058250427, -0.0043754578, 0.0030708313, 0.04574585, -0.008453369, -0.037200928, -0.018463135, -0.030273438, 0.010528564, -0.012672424, -0.0440979, -0.010253906, 0.022888184, -0.0068969727, -0.006134033, 0.035583496, -0.011505127, 0.016952515, 0.03265381, -0.010749817, 0.05001831, 0.026229858, -0.056488037, 0.025756836, 0.06323242, -0.033843994, -0.022262573, -0.02027893, -0.04788208, 0.010620117, 0.054992676, -0.02885437, -0.023498535, -0.015777588, 0.03543091, 0.015594482, 0.01676941, 0.029678345, -0.05734253, -0.015701294, 0.011047363, -0.034851074, 0.0569458, -0.020385742, -0.050811768, 0.0054855347, -0.04345703, -0.02935791, -0.042999268, -0.044067383, 0.017623901, 0.0129470825, 0.036590576, -0.036132812, 0.07928467, 0.002166748, 0.046905518, -0.011955261, -0.04019165, -0.042816162, 0.0041236877, 0.025390625, -0.039855957, -0.0044555664, -0.010055542, -0.02305603, -0.09222412, 0.010215759, 0.016723633, -0.040130615, -0.015167236, -0.026046753, -0.079956055, -0.037200928, 0.008872986, -0.005203247, -0.0085372925, 0.03616333, -0.017288208, -0.007331848, -0.0030288696, -0.02659607, 0.005809784, 0.004421234, -0.028579712, -0.01083374, 0.043914795, -0.07635498, 0.01727295, 0.029724121, -0.038848877, -0.03366089, 0.00617218, 0.04385376, -0.0067329407, 0.02645874, -0.01828003, -0.013511658, -0.036590576, -0.020431519, 0.0027217865, 0.038208008, 0.005077362, 0.0008087158, -0.0064201355, 0.0026226044, 0.0052986145, -0.04937744, -0.042388916, 0.062286377, -0.01902771, 0.00957489, -0.082336426, -0.022827148, -0.0068969727, -0.060913086, -0.008758545, -0.006793976, 0.035339355, 0.024093628, 0.0057373047, 0.101257324, 0.019348145, 0.029281616, 0.022842407, -0.009513855, -0.050872803, -0.027999878, 0.03643799, -0.006729126, -0.02268982, -0.02520752, 0.027236938, -0.004043579, -0.017303467, -0.013771057, -0.035095215, 0.06451416, 0.03817749, 0.009742737, -0.048675537, -0.018249512, 0.036071777, 0.014656067, -0.005050659, -0.019454956, -0.010574341, 0.01083374, -0.05230713, 0.026626587, 0.015090942, -2.0384789e-05, -0.003019333, -0.0059928894, -0.014434814, 0.021362305, 0.0074920654, -0.020080566, -0.007789612, 0.009208679, -0.05331421, 0.0063591003, 0.0027275085, 0.05618286, 0.048950195, 0.024841309, -0.028640747, -0.001701355, -0.0115356445, -0.05984497, -0.036254883, 0.049560547, 0.04663086, -0.02357483, 0.02670288, -0.03994751, 0.0025596619, -0.06100464, 0.03768921, 0.00070905685, -0.0031414032, -0.0066452026, 0.012237549, -0.02519226, -0.007633209, 0.017211914, -0.04837036, -0.038848877, -0.009552002, 0.01927185, 0.014404297, 0.010238647, -0.025238037, 0.06335449, -0.031982422, 0.03451538, -0.0077819824, 0.027740479, -0.033996582, -0.062805176, 0.06323242, -0.039611816, -0.008171082, 0.011405945, -0.012130737, -0.048461914, 0.011268616, 0.0039863586, -0.008285522, -0.03643799, -0.018218994, -0.007232666, -0.008766174, 0.032684326, -0.027160645, -0.015098572, 0.025985718, 0.022491455, 0.041168213, -0.007205963, -0.04925537, 0.016189575, -0.008346558, -0.0045051575, 0.005531311, -0.0063972473, 0.024520874, 0.022842407, -0.03161621, -0.019760132, -0.09527588, -0.004749298, 0.01322937, -0.0070266724, -0.00036025047, -0.012176514, -0.00090789795, 0.0020008087, 0.059295654, -0.0027980804, 0.026870728, -0.02468872, -0.007843018, -0.0010328293, 0.0027751923, 0.046173096, 0.03201294, 0.06506348, -0.02168274, 0.0317688, -0.051879883, -0.006137848, -0.02520752, 0.0053749084, -0.06976318, -0.04776001, 0.046295166, 0.007320404, 0.013534546, -0.000813961, 0.021453857, 0.037902832, -0.024978638, -0.12658691, -0.06732178, -0.018707275, -0.031036377, 0.02407837, 0.018966675, -0.0051651, -0.0023727417, 0.072387695, -0.03326416, 0.027053833, -0.018371582, -0.042297363, -0.012649536, -0.0035247803, -0.009048462, 0.015914917, -0.031173706, 0.013168335, -0.024780273, 0.008522034, 0.0056610107, -0.0066566467, 0.02017212, -0.01802063, 0.003156662, 0.0015707016, 0.017364502, 0.022567749, 0.024246216, 0.015823364, -0.025100708, -0.020019531, -0.037261963, -0.026275635, -0.032714844, -0.023040771, -0.013771057, 0.018707275, -0.02330017, -0.039276123, -0.0059165955, -0.028579712, 0.025924683, 0.016204834, -0.034088135, -0.0050582886, 0.03729248, 0.016830444, 0.007881165, -0.009521484, -0.027542114, -0.005115509, -0.038909912, 0.0048294067, -0.008964539, 0.034210205, -0.013954163, 0.03967285, -0.03994751, 0.029785156, 0.01071167, 0.006996155, -0.013908386, 0.06573486, 0.013137817, 0.019104004, 0.020462036, 0.019302368, 0.019104004, 0.013519287, 0.014060974, -0.006679535, -0.0028686523, 0.0029125214, -0.0010156631, 0.002046585, -0.007850647, 0.012130737, 0.04071045, -0.0070877075, 0.0029830933, -0.010986328, 0.024276733, 0.05596924, 0.020553589, 0.009712219, -0.03756714, 0.041656494, -0.04260254, -0.02305603, 0.0103302, -0.05090332, -0.019256592, 0.0309906, -0.031066895, -0.036865234, 0.0034370422, -0.024002075, -0.025360107, 0.023498535, 0.066833496, -0.047943115, -0.0042762756, 0.028671265, -0.05203247, -0.0099487305, 0.0032634735, -0.006362915, -0.08569336, -0.010650635, -0.01322937, 0.035339355, -0.020477295, -0.023712158, -0.03137207, -0.010139465, 0.011817932, -0.04473877, -0.032196045, 0.038269043, -0.010055542, -0.009407043, -0.051239014, -0.016204834, -0.016830444, -0.051513672, 0.006580353, -0.042236328, -0.046783447, -0.053466797, 0.020324707, 0.045166016, -0.0061416626, -0.042877197, 0.056243896, -0.026916504, -0.04196167, -0.037231445, 0.06817627, -0.01864624, 0.008995056, 0.04244995, 0.012306213, 0.015365601, 0.0368042, 0.017471313, -0.045043945, 0.012550354, 0.0093307495, -0.0287323, -0.0670166, -0.04058838, -0.012939453, -0.011634827, -0.052520752, -0.055114746, 0.029251099, -0.043151855, -0.01651001, -0.034240723, -0.0637207, 0.013793945, -0.0015201569, 0.025650024, 0.00472641, 0.00063705444, -0.013969421, 0.017425537, -0.048675537, -0.02935791, -0.0056419373, 0.031066895, 0.027328491, -0.01739502, 0.011390686, 0.06665039, -0.02848816, 0.04232788, 0.0107803345, -0.028686523, 0.0012979507, 0.0134887695, 0.0110321045, 0.012420654, -0.027877808, 0.0022506714, -0.047668457, -0.01209259, 0.0051116943, 0.06021118, -0.026641846, 0.062927246, 0.001367569, 0.032562256, 0.042633057, 0.047546387, 0.03692627, -0.0335083, -0.020904541, 0.0287323, 0.03729248, -0.032318115, -0.011817932, -0.020828247, -0.037353516, -0.012519836, -0.022994995, 0.008811951, 0.013267517, 0.008720398, -0.0026950836, 0.011665344, 0.009506226, -0.010444641, 0.04248047, -0.012687683, 0.036346436, 0.020446777, -0.014533997, -0.0036182404, 0.036071777, -0.03010559, -0.0025939941, 0.037506104, -0.016204834, 0.028564453, -0.01008606, -0.0009794235, 0.032928467, -0.016296387, -0.0211792, 0.028503418, 0.036224365, -0.007850647, -0.03552246, 0.011810303, -0.010681152, -0.0003170967, 0.0026798248, 0.055847168, 0.00022900105, 0.017791748, -0.002872467, -0.0074272156, 0.0050964355, -0.014160156, 0.012138367, 0.0016889572, -0.009567261, -0.015701294, -0.054229736, 0.07745361, -0.00070238113, 0.04156494, 0.064697266, -0.02746582, -0.010826111, -0.0073242188, 0.039276123, -0.035247803, -0.035095215, -0.000875473, 0.00712204, -0.01537323, 0.01966858, 0.025238037, 0.022628784, 0.03894043, -0.034973145, 0.023040771, -0.03967285, 0.04486084, 0.024871826, 0.06878662, -0.08093262, -0.05682373, -0.013282776, -0.027023315, -0.0059165955, 0.02998352, -0.004634857, -0.01612854, 0.041381836, -0.033111572, 0.049224854, -0.020263672, 0.0074806213, -0.049682617, 0.053466797, 0.067993164, -0.052124023, -0.017120361, -0.01576233, -0.014152527, 0.0113220215, -0.0041542053, -0.033416748, -0.0019874573, 0.030975342, -0.030075073, -0.060760498, 0.033477783, -0.023880005, -0.041809082, 0.06414795, -0.082092285, -0.0035686493, -0.03112793, -0.013771057, -0.025558472, -0.032958984, -0.06665039, 0.022369385, -0.04248047, 0.0028743744, 0.03970337, -0.0013418198, -0.018463135, -0.06213379, -0.011413574, -0.016677856, -0.0064353943, -0.030670166, 0.017456055, -0.024841309, -0.00086402893, -0.038513184, 0.010520935, -0.09802246, -0.0025978088, 0.0044288635, -0.030532837, -0.030914307, -0.013450623, -0.012649536, 0.03805542, 0.024673462, -0.014816284, 0.06542969, -0.05307007, -0.016601562, -0.012710571, 0.025405884, -0.0423584, -0.044158936, 0.0020103455, -0.023117065, 0.034179688, 0.005558014, -0.027923584, -0.012428284, 0.009635925, 0.0259552, -0.024520874, 0.04171753, -0.038482666, 0.03286743, -0.0037288666, -0.06008911, -0.028411865, -0.008392334, 0.035064697, 0.036468506, -0.0020523071, 0.019973755, -0.029403687, -0.06359863, -0.041412354, -0.026260376, 0.022872925, 0.05166626, -0.06451416, -0.028335571, 0.003545761, -0.03326416, 0.020004272, 0.033325195, -0.0038642883, 0.0018835068, 0.031311035, 0.026916504, 0.00040125847, -0.0062828064, 0.019439697, -0.022354126, -0.06311035, 0.035217285, 0.03024292, -0.028274536, -0.018096924, -0.039642334, -0.00018012524, -0.0018501282, -0.055511475, -0.00315094, -0.040252686, 0.012550354, 0.02796936, 0.0031814575, -0.029968262, 0.003068924, -0.025939941, -0.041931152, 0.027328491, 0.014854431, 0.018814087, -0.025680542, 0.044769287, 0.038879395, 0.064208984, 0.014755249, -0.11462402, -0.06695557, 0.06262207, 0.016860962, -0.030380249, 0.029556274, -0.007286072, -0.0030975342, 0.060394287, -0.0093688965, -0.029266357, 0.00043225288, 0.037109375, 0.041107178, -0.0023670197]}, "B00XOBY97C": {"id": "B00XOBY97C", "original": "Brand: Coleman\nName: Coleman Roadtrip X-Cursion Propane Grill\nDescription: \nFeatures: Made of the highest quality materials\nCamping cooking grills\nAnother quality Coleman Signature product\n", "metadata": {"Name": "Coleman Roadtrip X-Cursion Propane Grill", "Brand": "Coleman", "Description": "", "Features": "Made of the highest quality materials\nCamping cooking grills\nAnother quality Coleman Signature product", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.049987793, -0.01940918, -0.020751953, 0.038391113, -0.038085938, -0.011169434, -0.0060424805, 0.0040359497, -0.066711426, -0.008773804, -0.018920898, 0.03955078, -0.06542969, -0.03567505, 0.03665161, -0.052703857, -0.03286743, 0.07531738, -0.04333496, -0.04864502, 0.010505676, -0.055755615, -0.103027344, 0.052368164, 0.03652954, 0.016845703, -0.042510986, -0.010986328, 0.010612488, 0.006477356, 0.027313232, -0.015541077, 0.027786255, -0.0006432533, -0.015991211, 0.008049011, 0.019561768, -0.013046265, -0.0158844, 0.008636475, -0.0087890625, 0.010108948, -0.00021159649, 0.024047852, -0.034973145, -0.028060913, 0.0043525696, -0.014312744, 0.02532959, -0.010375977, -0.01374054, 0.03491211, 0.0027694702, -0.035827637, -0.0017118454, 0.00043964386, -0.015052795, 0.031799316, 0.02029419, -0.049560547, -0.016174316, 0.020202637, 0.037231445, 0.043060303, -0.0024051666, 0.015312195, 0.09173584, -0.0058784485, -0.02368164, -0.027679443, -0.00043678284, 0.0043640137, -0.014144897, 0.038909912, -0.058380127, -0.04736328, 0.034088135, -0.05505371, 0.026855469, 0.025314331, -0.0066986084, -0.0362854, 0.03555298, -0.020767212, -0.0032978058, 0.004501343, -0.01576233, -0.0074691772, -0.011352539, -0.004425049, -0.014213562, 0.055480957, -0.055419922, 0.019104004, -0.0020999908, -0.005130768, -0.0055122375, -0.02331543, 0.0013504028, -0.0121536255, -0.008468628, -0.017349243, -0.0014724731, -0.0026283264, -0.027236938, 0.012809753, 0.04663086, 0.08532715, 0.017288208, -0.008262634, -0.026306152, 0.03540039, 0.006122589, 0.030517578, -0.05557251, -0.041107178, -0.04989624, 0.0037727356, -0.023010254, -0.0033721924, -0.045806885, -0.024215698, 0.03942871, 0.012565613, 0.043884277, 0.03781128, 0.017929077, -0.013038635, -0.048095703, 0.049835205, -0.034942627, 0.015014648, 0.020324707, -0.0060195923, -0.022140503, -0.036315918, 0.019699097, -0.0042533875, -0.024887085, -0.008155823, 0.013557434, 0.030334473, 0.03277588, -0.015426636, 0.013504028, 0.035461426, 0.024353027, -0.0064811707, 0.0016994476, -0.022262573, -0.0066833496, -0.005088806, 0.025878906, 0.008613586, 0.006137848, -0.015792847, 0.022842407, -0.022247314, -0.0025291443, -0.046173096, 0.040039062, -0.037353516, -0.04751587, 0.0056037903, -0.050048828, 0.046722412, 0.012825012, 0.0010652542, 0.019805908, 0.030731201, 0.000107586384, -0.024902344, -0.021636963, 0.014526367, 0.0024929047, 0.0062217712, -0.024765015, 0.054229736, 0.029006958, -0.072265625, -0.050079346, -0.06793213, 0.045532227, -0.011993408, -0.039764404, -0.021270752, 0.05041504, 0.06604004, 0.0018081665, 0.033569336, 0.049560547, 0.0018320084, -0.026062012, 0.030227661, 0.007873535, -0.0047302246, -0.005443573, 0.025939941, -0.0016403198, -0.047546387, 0.020706177, 0.013946533, -0.0021800995, 0.015411377, -0.015686035, -0.0030345917, 0.0039367676, 0.009353638, 0.031799316, 0.06524658, -0.020080566, 0.010391235, 0.012825012, -0.083496094, -0.021972656, 0.0043945312, -0.0041007996, -0.002943039, 0.033599854, -0.01084137, 0.051513672, 0.027389526, 0.013008118, -8.273125e-05, -0.0029907227, 0.02116394, -0.025360107, 0.023376465, 0.00025200844, 0.018753052, -0.0008254051, 0.010375977, 0.038391113, 0.058013916, -0.010894775, 0.040405273, 0.06109619, 0.04864502, -0.012611389, -0.02861023, 0.0029010773, -0.035705566, -0.05734253, -0.009391785, 0.009284973, 0.051879883, 0.015586853, -0.015090942, -0.015350342, 0.043151855, 0.03543091, 0.023132324, 0.0039749146, 0.076049805, -0.03010559, 0.017318726, -0.046875, 0.034088135, -0.0234375, 0.01977539, -0.027374268, 0.06036377, 0.070251465, -0.007873535, 0.025024414, 0.017303467, 0.036193848, 0.029449463, -0.021652222, 0.009857178, 0.000351429, -0.010604858, -0.0138549805, 0.06591797, 0.06994629, 0.021835327, -0.06048584, -0.007045746, -0.014541626, 0.045074463, 0.026901245, 0.007160187, 0.08465576, 0.012825012, 0.023162842, 0.0044021606, 0.05090332, 0.033203125, -0.041015625, -0.057250977, -0.010231018, -0.02192688, -0.031555176, -0.020767212, -0.010848999, -0.05142212, -0.026535034, 0.014961243, 0.005962372, -0.016036987, -0.03286743, 0.024215698, -0.003440857, -0.012451172, -0.006603241, 0.034942627, 0.003528595, 0.012786865, -0.0063095093, -0.013198853, -0.035888672, -0.023239136, 0.028900146, 0.06500244, 7.7962875e-05, -0.0004284382, -0.00472641, 0.0680542, 0.010574341, -0.0048828125, -0.005970001, 0.03857422, 0.006175995, -0.0099487305, 0.034606934, -0.018951416, -0.029663086, 0.008216858, 0.0017900467, -0.0046806335, -0.0027637482, -0.018173218, -0.01071167, 0.01260376, -0.004360199, -0.007965088, 0.012298584, 0.0066947937, 0.0029640198, -0.0046844482, 0.037872314, -0.03225708, 0.0014276505, -0.005870819, -0.03253174, -0.033599854, 0.06286621, -0.0018930435, -0.0049362183, 0.01612854, 0.003446579, -0.018127441, -0.0053367615, -0.017089844, 0.020507812, -0.001367569, -0.023742676, -0.0030460358, 0.02507019, -0.049743652, -0.038024902, 0.030883789, -0.041931152, -0.012504578, 0.02381897, -0.032043457, -0.008666992, -0.0036640167, 0.008369446, 0.024276733, -0.003862381, 0.02949524, -0.02619934, -0.024169922, -0.012428284, -0.015174866, 0.08148193, -0.021026611, 0.005432129, 0.039978027, 0.0027751923, 0.0026626587, -0.01890564, -0.0007548332, 0.014808655, 0.019165039, -0.0074501038, 0.023086548, -0.018554688, -0.009399414, -0.02178955, 0.032196045, -0.05908203, -0.0043754578, 0.0041160583, 0.0012664795, -0.012031555, -0.0026454926, -0.05340576, -0.009017944, -0.13452148, 0.0006246567, -0.0045700073, -0.06616211, 0.014060974, -0.029266357, -0.075927734, -0.06628418, 0.019760132, 0.028442383, -0.02470398, 0.015991211, -0.028152466, 0.020523071, -0.009178162, 0.0048332214, 0.051757812, -0.02519226, 0.045776367, -0.030456543, 0.024154663, -0.073791504, 0.009292603, 0.0026760101, -0.022644043, 0.014877319, -0.03225708, -0.0031967163, -0.0018873215, 0.043395996, -0.0077323914, 0.011680603, -0.016738892, -0.017608643, -0.009841919, 0.015571594, -0.007583618, -0.01878357, 0.009231567, -0.014312744, 0.007396698, -0.028396606, -9.3758106e-05, 0.049743652, 0.011207581, -0.0075950623, -0.049560547, -0.0184021, -0.029876709, -0.05783081, 0.017089844, 0.020339966, -0.0016174316, 0.0118255615, 0.011955261, 0.046966553, 0.045318604, 0.04534912, 0.0075416565, 0.0011520386, -0.018569946, -0.03640747, 0.06085205, -0.0038337708, 0.025924683, -0.03161621, 0.02532959, 0.0004246235, -0.0032367706, 0.013809204, 0.011009216, -0.0010929108, 0.032806396, 0.009086609, -0.024246216, -0.042999268, 0.026794434, 0.040740967, -0.013069153, -0.055023193, -0.021957397, -0.0011787415, -0.08502197, 0.049316406, 0.07733154, -0.038970947, 0.030761719, 0.013641357, -0.0023899078, 0.035827637, 0.046813965, -0.03237915, 0.028015137, 0.044647217, -0.03338623, 0.0012235641, -0.0052757263, 0.013580322, 0.007896423, -0.01361084, -0.03253174, -0.006839752, 0.009506226, -0.035003662, 0.007713318, -0.011077881, 0.023956299, -0.004009247, 0.0011692047, 0.030807495, 0.008361816, -0.018173218, 0.0124053955, -0.01473999, -0.013389587, 0.013748169, -0.013938904, -0.0385437, -0.015853882, 0.0031871796, -0.024810791, 0.0074882507, -0.0024681091, 0.04348755, 0.00579834, -0.009735107, -0.034973145, 0.02128601, -0.034454346, -0.017501831, 0.0184021, 0.021408081, -0.0023975372, -0.0143966675, 0.021896362, 0.008796692, -0.013977051, 0.015602112, -0.017730713, -0.059509277, -0.015388489, 0.016799927, 0.014717102, -0.009101868, -0.0015029907, -0.032470703, 0.007129669, 0.015602112, -0.036956787, -0.018081665, -0.010292053, -0.00024485588, -0.0791626, -0.0211792, 0.006164551, -0.057891846, -0.043304443, 0.032226562, -0.019500732, -0.02130127, 0.006954193, 0.027633667, -0.027389526, -0.025619507, -0.03488159, 0.01158905, 0.037506104, 0.016403198, 0.033477783, -0.045776367, -0.00015950203, -0.012969971, 0.06384277, 0.014404297, 0.043426514, -0.010032654, -0.043884277, -0.01701355, 0.01991272, 0.0892334, -0.024887085, 0.05822754, -0.026184082, 0.006626129, -0.014862061, -0.01939392, 0.0034313202, -0.017196655, -0.038970947, -0.051452637, 0.0158844, -0.021697998, -0.015579224, -0.058654785, 0.027069092, 0.016998291, -0.012451172, -0.012825012, -0.0034503937, 0.020248413, -0.024215698, -0.014915466, 0.0047950745, -0.013389587, 0.011024475, -0.0015611649, -0.021987915, 0.0026340485, 0.005996704, 0.025817871, -0.03262329, 0.022003174, -0.047027588, -0.00541687, -0.026916504, -0.004535675, -0.08203125, 0.0791626, 0.019332886, -0.010093689, -0.0038452148, -0.011528015, -0.0024967194, -0.050842285, 0.017593384, -0.028289795, -0.03225708, -0.008720398, -0.01361084, -0.029693604, -0.024398804, -0.00995636, 0.0008454323, -0.00630188, 0.024047852, 0.0060310364, 0.0051879883, -0.0058670044, -0.00051641464, 0.037231445, 0.02067566, 0.019348145, 0.032043457, -0.040496826, -0.035369873, -0.04510498, -0.02508545, 0.002702713, -0.0063705444, 0.0013618469, 0.024505615, 0.017807007, -0.088378906, 0.053833008, 0.042144775, 0.018569946, -0.045288086, 0.00033521652, 0.021194458, 0.027282715, -0.009651184, 0.08123779, -0.035491943, 0.055541992, -0.020248413, -0.0018444061, 0.02230835, 0.03918457, -0.01876831, 0.0059928894, 0.019363403, 0.0015001297, 0.048034668, 0.0007362366, -0.0044288635, -0.017913818, 0.036865234, -0.007537842, -0.011886597, -0.0126571655, 0.014877319, 0.0519104, 0.054107666, -0.0053977966, -0.04522705, 0.049682617, -0.048187256, -0.018356323, 0.00957489, -0.02961731, -0.01499939, 0.002922058, -0.005756378, -0.03829956, 0.020385742, 0.005783081, -0.031082153, -0.038482666, 0.005393982, 0.009933472, 0.00945282, -0.018356323, 0.004676819, -0.03668213, -0.013336182, 0.008232117, -0.040130615, 0.05996704, -0.04373169, -0.022399902, 0.037750244, 0.041168213, -0.06738281, -0.006263733, -0.020904541, -0.032440186, -0.053131104, 0.0019702911, -0.012138367, 0.0357666, 0.019058228, -0.0048294067, 0.0357666, 0.008666992, 0.004131317, 0.022872925, -0.006324768, 0.02798462, 0.007434845, 0.032958984, -0.034729004, -0.016281128, 0.034942627, -0.044921875, -0.013961792, -0.04888916, 0.05456543, -0.041137695, 0.0054855347, 0.0032806396, 0.022384644, 0.0023612976, 0.028366089, 0.018051147, -0.0037059784, 0.043426514, 0.017349243, -0.011871338, 0.013801575, 0.008872986, 0.010238647, 0.01109314, 0.028900146, 0.0033893585, 0.05227661, -0.0128479, -0.03414917, -0.023529053, 0.02116394, 0.0028743744, 0.0020389557, 0.02178955, 0.0005722046, 0.0049743652, -0.029434204, 0.03579712, -0.06304932, -0.06567383, 0.02708435, 0.044036865, 0.017807007, -0.0054473877, 0.01940918, 0.043426514, -0.048736572, 0.07354736, 0.01751709, -0.03164673, 0.003643036, 0.022613525, 0.0149002075, -0.022720337, -0.0077667236, -0.0015506744, 0.0037155151, 0.031341553, 0.02949524, -0.005329132, -0.022232056, -0.046813965, 0.04562378, 0.017120361, 0.030212402, 0.021469116, 0.016784668, -0.011108398, -0.029006958, 0.015319824, 0.02381897, -0.033996582, -0.022262573, -0.06665039, 0.008018494, 0.029190063, 0.0055236816, 0.029083252, -0.06738281, 0.07342529, -0.031341553, 0.0061149597, 0.0018053055, -0.011192322, 0.025848389, -0.027740479, -0.045135498, -0.010299683, -0.011169434, -0.0075683594, -0.025726318, 0.040130615, -0.007167816, 0.0026416779, 0.00592041, 0.057678223, -0.012290955, 0.026412964, 0.035705566, -0.033355713, -0.025466919, -0.013946533, 0.03286743, -0.024139404, -0.0062446594, 0.008636475, 0.022827148, -0.0036182404, 0.009788513, 0.016235352, 0.0052223206, 0.008735657, -0.04574585, -0.017608643, -0.014289856, -0.040130615, 0.02394104, 0.012512207, -0.016281128, -0.011695862, -0.053497314, 0.013343811, 0.056854248, 0.027709961, 0.021102905, -0.0040740967, 0.035888672, -0.013702393, 0.015083313, -0.043518066, -0.06530762, 0.009552002, 0.017471313, -0.04800415, -0.0015249252, 0.029907227, -0.03024292, 0.027526855, -0.08605957, 0.05126953, -0.04574585, 0.10675049, 0.035491943, 0.038269043, -0.0004479885, -0.004425049, -0.0042648315, 0.0023326874, 0.024459839, 0.001042366, 0.01727295, 0.03427124, -0.014312744, -0.02748108, 0.03253174, -0.0014381409, 0.0023670197, -0.045928955, 0.0032024384, 0.012413025, -0.017852783, -0.02558899, -0.040527344, 0.011497498, 0.026275635, 0.009864807, -0.00541687, -0.016586304, 0.0042381287, -0.029693604, -0.034851074, 0.062164307, -0.007659912, -0.036254883, -0.033355713, -0.025650024, -0.012428284, 0.009765625, 0.012809753, -0.044525146, -0.01663208, -0.030319214, 0.0054016113, -0.032226562, -0.027938843, 0.0059776306, -0.0026435852, -0.017486572, -0.06021118, 0.007457733, -0.013191223, 0.03375244, -0.005542755, 0.03753662, -0.0064468384, -0.052459717, -0.057861328, 0.012016296, -0.028259277, -0.022384644, 0.02444458, -0.042114258, -0.046325684, -0.019515991, 0.04650879, 0.11395264, 0.033325195, 0.016616821, 0.009468079, -0.05014038, -0.044189453, 0.11853027, 0.017807007, -0.014892578, -0.026794434, 0.032806396, 0.012168884, -4.595518e-05, 0.02168274, 0.02243042, -0.036712646, 0.009376526, -0.012580872, -0.028167725, -0.0063323975, -0.03564453, 0.012214661, 0.019897461, -0.0413208, -0.099853516, -0.0044136047, -0.0006213188, 0.038085938, -0.008651733, 0.050079346, 0.008865356, -0.1003418, -0.046875, -0.034454346, -0.0016813278, 0.052947998, 0.006286621, 0.001291275, 0.028869629, -0.034576416, 0.03250122, 0.0040283203, -0.0062675476, -0.01878357, 0.023620605, 0.0579834, -0.015182495, 0.020111084, 0.04849243, -0.057128906, -0.046722412, -0.03111267, 0.03756714, -0.019973755, 0.018600464, -0.017044067, 0.028579712, 0.020050049, -0.0029582977, -0.028518677, 0.009124756, 0.0072021484, 0.012840271, 0.0019664764, -0.022201538, 0.007965088, 0.014953613, -0.00712204, 0.030975342, -0.008216858, 0.02748108, 0.0046806335, 0.06738281, 0.013000488, 0.045410156, -0.009361267, -0.035095215, -0.05316162, 0.033233643, 0.026245117, -0.027389526, 0.04397583, -0.0052337646, 0.010017395, -0.01586914, -0.02178955, -0.029006958, 0.0035896301, 0.028030396, -0.028152466, 0.024017334]}, "B07CQ5ND65": {"id": "B07CQ5ND65", "original": "Brand: Blaze\nName: Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas\nDescription: The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that's normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that's perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)\nFeatures: Freestanding propane gas grill\n304 stainless steel grill body construction\n(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU\nflame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface\nOverall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU\n", "metadata": {"Name": "Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas", "Brand": "Blaze", "Description": "The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that's normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that's perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)", "Features": "Freestanding propane gas grill\n304 stainless steel grill body construction\n(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU\nflame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface\nOverall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.027893066, -0.0031089783, -0.018600464, -0.047302246, -0.0054016113, -0.0023479462, -0.004928589, 0.009155273, -0.030960083, -0.017166138, -0.037322998, 0.0033607483, -0.022033691, -0.026245117, 0.017669678, -0.066101074, 0.00806427, 0.040496826, 0.029083252, -0.031280518, 0.010192871, -0.024597168, 0.015068054, 0.08721924, 0.06890869, -0.06378174, -0.017929077, -5.2452087e-05, 0.050872803, 0.01979065, 0.02609253, -0.009300232, 0.06036377, 1.1265278e-05, -0.037231445, -0.027038574, -0.013717651, -0.018417358, -0.029693604, 0.019805908, 0.033935547, -0.008850098, -0.015487671, 0.00957489, -0.027038574, -0.05328369, 0.049316406, -0.023910522, 0.024398804, 0.027420044, 0.02281189, 0.025375366, 0.0121154785, 0.0009598732, 0.0009841919, 0.020401001, -0.004917145, -0.05166626, 0.01524353, 0.0066184998, 0.0007286072, -0.030151367, 0.04232788, -1.8537045e-05, -0.033294678, -0.004558563, 0.07183838, 0.00078964233, -0.0026874542, -0.036376953, 0.0049934387, 0.0357666, 0.0043754578, -0.030776978, 0.0057678223, -0.011703491, 0.005001068, -0.009780884, 0.018844604, 0.013549805, 0.0014915466, -0.0046424866, 0.026687622, 0.013496399, -0.034332275, -0.0044784546, -0.028259277, -0.0015201569, -0.0061798096, -0.03744507, -0.012290955, 0.010673523, -0.024291992, 0.01713562, -0.017349243, -2.2470951e-05, -0.013496399, -0.017318726, -0.005847931, -0.0051231384, 0.0317688, -0.028930664, 0.017944336, -0.012329102, -0.018722534, 0.07043457, -0.008705139, 0.031066895, -0.010894775, 0.01399231, 0.011856079, -0.07537842, -0.03933716, -0.022949219, -0.032409668, 0.03491211, -0.033203125, -0.020843506, -0.00093078613, -0.027359009, 0.0021419525, 0.019210815, -0.0051345825, 0.010307312, 0.0054359436, 0.0340271, 0.009010315, -0.020492554, -0.049926758, 0.05618286, -0.017440796, -0.009277344, 0.045928955, 0.030639648, 0.0003838539, -0.027633667, 0.0037174225, -0.012359619, 0.010734558, -0.03137207, 0.05441284, 0.017303467, 0.00894928, 0.029724121, 0.011558533, 0.027770996, 0.019699097, 0.0030231476, -8.058548e-05, -0.053375244, 0.022613525, -0.030456543, 0.046905518, 0.01423645, -0.05142212, 0.018341064, 0.002084732, -0.015144348, -0.04840088, -0.043426514, -0.013046265, -0.016220093, 0.0012655258, -0.02734375, -0.048309326, 0.024871826, 0.005630493, -0.010681152, 0.029052734, 0.03741455, 0.0016727448, -0.031463623, -0.0020637512, -0.0010671616, -0.022872925, 0.010192871, -0.032226562, 0.08581543, 0.03994751, -0.09033203, -0.04864502, -0.064331055, 0.13208008, -0.030715942, 0.011932373, -0.011787415, -0.013587952, -0.032409668, 0.024459839, 0.01802063, -0.035125732, 0.014656067, 0.005329132, -0.038024902, 0.015823364, -0.0005507469, -0.022094727, 0.0045318604, 0.00083112717, -0.011482239, 0.005504608, -0.0015697479, -0.0014276505, -0.0028152466, -0.0075035095, -0.008392334, -0.00472641, 0.016448975, -0.0008735657, 0.036102295, 0.005531311, -0.0024986267, 0.014732361, -0.066345215, -0.030593872, -0.0046310425, -0.0028362274, 0.03717041, 0.012069702, 0.028869629, -0.0005555153, -0.03152466, 0.011993408, 0.002117157, 0.020568848, -0.0076904297, -0.0070610046, -0.01335907, 0.048583984, -0.012359619, 0.031204224, 0.016479492, 0.088012695, 0.066101074, 0.002538681, 0.057434082, 0.0814209, 0.022842407, -0.05795288, -0.03439331, 0.018859863, -0.012771606, -0.05343628, -0.016983032, -0.027359009, -0.049072266, 0.0042915344, 0.00907135, -0.049072266, -0.028366089, 0.018447876, 0.01751709, 0.029556274, 0.0680542, -0.045959473, 0.039642334, 0.0023956299, 0.022033691, -0.031707764, 0.018753052, -0.010696411, 0.025024414, 0.0017576218, 0.0035953522, -0.033111572, 0.020141602, 0.0018081665, 0.011856079, -0.014060974, -0.015144348, 0.022384644, 0.022216797, -0.01638794, -0.070495605, -0.0049095154, 0.0074539185, -0.04647827, 0.062561035, 0.0037269592, -0.046905518, -0.011260986, 0.006504059, -0.008132935, -0.013465881, 0.02947998, -0.027435303, -0.007850647, -0.03768921, -0.020492554, -0.010040283, -0.0022830963, 0.011703491, -0.008903503, 0.01361084, 0.009887695, -0.016204834, 0.03186035, 0.014152527, 0.01802063, -0.009460449, 0.0046310425, 0.033935547, -0.021591187, 0.010177612, -0.012268066, 0.022460938, 0.007507324, 0.016189575, 0.010154724, -0.075805664, 0.04977417, 0.030761719, 0.023986816, 0.024810791, 0.013954163, -0.020980835, 0.0031108856, 0.045043945, 0.01979065, 0.047424316, -0.014228821, -0.04067993, -0.057159424, -0.009246826, -0.021209717, 0.025650024, -0.005672455, -0.012313843, -0.019622803, 0.010902405, -0.022064209, -0.011177063, -0.013000488, 0.0060768127, -0.008529663, 0.015083313, 0.0043182373, -0.018356323, -0.015045166, -0.07165527, -0.021560669, -0.00028800964, 0.006877899, 0.0027198792, 0.0039978027, -0.033935547, -0.01977539, 0.0082092285, -0.02003479, -0.0049057007, -0.004119873, 0.0027275085, -0.018081665, -0.024093628, 0.0050354004, -0.04876709, 0.0021839142, -0.050933838, -0.038330078, -0.07989502, -0.007949829, -0.03817749, -0.06774902, -0.0021209717, 0.09686279, -0.006839752, -0.04598999, -0.03616333, -0.00092601776, 0.0048294067, 0.082214355, -0.013954163, -0.050811768, -0.03277588, -0.027908325, -0.03894043, 0.042266846, -0.021820068, -0.050476074, -0.013023376, -0.007911682, 0.003271103, -0.014808655, 0.0017642975, -0.028549194, 0.037078857, 0.04244995, 0.0013904572, 0.030639648, -0.028076172, 0.047454834, 0.07434082, -0.03213501, -0.01108551, 0.0044784546, 0.014083862, -0.012374878, -0.022445679, -0.015823364, -0.025970459, -0.12719727, 0.020446777, 0.010604858, -0.052001953, -9.6559525e-05, -0.061950684, -0.06304932, -0.063964844, -0.006137848, 0.06756592, -0.024093628, -0.0079422, -0.017211914, -0.0079956055, 0.01626587, -0.0065078735, 0.03869629, -0.009918213, 0.014480591, -0.031677246, 0.0076408386, -0.021209717, 0.016036987, 0.011047363, -0.010169983, 0.018539429, -0.0146102905, 0.008956909, 0.01763916, -0.024093628, -0.01663208, -0.016723633, -0.0362854, 0.00085926056, 0.017028809, 0.023620605, -0.011604309, -0.042785645, 0.028427124, -0.015731812, -0.032440186, -0.0073242188, 0.04815674, 0.02885437, 0.02583313, -0.011688232, -0.0074310303, -0.020370483, -0.017669678, -0.053009033, -0.0012235641, -0.00018978119, 0.009971619, 0.036621094, 0.0047416687, 0.12231445, 0.013404846, 0.05596924, 0.033843994, -0.032226562, -0.009208679, -0.032073975, 0.018798828, 0.03503418, -0.020812988, -0.008453369, 0.020309448, 0.03100586, 0.0041770935, -0.008918762, 0.017425537, 0.06304932, 0.028030396, -0.017349243, -0.010643005, -0.012580872, 0.032684326, -0.012489319, -0.0013780594, -0.041381836, -0.03741455, -0.0042381287, -0.0869751, 0.09265137, 0.027526855, -0.015007019, 0.062683105, 0.06390381, -0.009384155, 0.06665039, 0.014633179, 0.008575439, -0.013282776, 0.06112671, -0.033355713, 0.045166016, 0.026062012, -0.028869629, -0.001947403, 0.013641357, -0.0647583, 0.0017824173, -0.035491943, -0.02029419, 0.02583313, 0.035888672, 0.003967285, -0.0055274963, -0.02519226, -0.039123535, 0.0019989014, -0.06628418, -0.017730713, -0.0045204163, -0.03250122, -0.020370483, -0.022964478, -0.045776367, -0.026473999, 0.005672455, -0.0013923645, -0.0007224083, 0.015686035, 0.03262329, -0.010047913, 0.0236969, -0.032470703, 0.017303467, 0.010574341, 0.040405273, 0.034301758, -0.025741577, 0.017028809, -0.0002465248, -0.016098022, 0.0016670227, -0.029418945, 0.0446167, -0.021194458, -0.06384277, -0.029876709, 0.032348633, 0.03100586, -0.007423401, -0.0024147034, -0.011062622, 0.016067505, 0.009773254, 0.020431519, -0.05041504, 0.02507019, 0.054626465, -0.025543213, -0.039520264, -0.0059051514, -0.021652222, 0.0024356842, -0.00022983551, -0.0053863525, -0.013648987, 0.025344849, 0.049560547, -0.06222534, -0.016967773, -0.052612305, -0.009361267, 0.012107849, -0.016647339, 0.033416748, -0.03390503, -0.01789856, -0.02243042, 0.0949707, 0.011749268, -0.00041031837, -0.037872314, -0.007118225, -0.008232117, 0.0158844, 0.017791748, -0.029556274, 0.011474609, -0.008041382, -0.05230713, -0.006713867, -0.055786133, 0.031555176, -0.047790527, -0.0041618347, -0.037506104, 0.06137085, -0.030776978, 0.005016327, 0.020706177, 0.0446167, -0.007686615, 0.039154053, -0.07635498, 0.00995636, 0.013900757, -0.004852295, 0.008232117, -0.009552002, -0.008560181, 0.020187378, 0.02470398, 0.042755127, -0.008728027, -0.005756378, -0.027404785, 0.0034008026, 0.03137207, -0.027954102, 0.015838623, -0.029251099, -0.034454346, -0.048950195, 0.057861328, 0.041656494, -0.026138306, -0.008728027, -0.017028809, -0.023132324, -0.03262329, -0.018417358, -0.025314331, 0.0099487305, 0.003894806, -0.014389038, 0.005596161, -0.007736206, -0.0008354187, 0.009857178, 0.0010967255, 0.029953003, -0.046051025, 0.02911377, -0.014297485, 0.017242432, 0.03970337, 0.014297485, 0.011817932, -0.032440186, -0.026931763, -0.0069084167, -0.01121521, -0.02381897, -0.017501831, -0.022140503, -0.02784729, -0.0070152283, 0.0009965897, -0.03640747, 0.0049095154, 0.040252686, -0.020599365, -0.015670776, 0.0062675476, 0.012512207, -0.0011072159, -0.038024902, 0.024932861, -0.027511597, 0.0027980804, 0.060577393, -0.03277588, -0.018096924, 0.05218506, -0.05090332, 0.053619385, 0.016784668, -0.04638672, 0.058776855, -0.024612427, -3.2007694e-05, -0.028701782, 0.059173584, -0.012245178, 0.027954102, -0.07373047, 0.0037879944, 0.011016846, 0.035705566, 0.024017334, -0.040893555, 0.05203247, -0.01889038, -0.052124023, 0.015464783, 0.009780884, -0.023101807, -0.008850098, 0.012413025, -0.020645142, -0.03765869, 0.018981934, -0.033843994, -0.0055618286, 0.014419556, -0.0007696152, 0.027389526, -0.008117676, -0.036102295, -0.034698486, 0.028167725, -0.03643799, -0.061645508, -0.023422241, 0.009552002, 0.0073280334, -0.012672424, 0.027694702, 0.00818634, 0.011169434, -0.004386902, -0.025177002, -0.02394104, -0.008796692, -0.027282715, 0.030700684, -0.048431396, -0.0051002502, 0.046691895, -0.0040016174, 0.02444458, 0.01914978, -0.055786133, -0.04647827, 0.025131226, 0.020019531, -0.017044067, -0.015510559, 0.06585693, -0.039916992, -0.041870117, -0.032806396, 0.028671265, -0.025482178, -0.026824951, 0.03414917, 0.03781128, -0.00655365, 0.02897644, 0.0047187805, -0.05505371, 0.0007867813, -0.0058670044, -0.07904053, -0.012191772, -0.05380249, 0.014404297, 0.0022697449, -0.04949951, -0.0053253174, 0.064819336, 0.006038666, -0.08831787, -0.009239197, -0.026184082, 0.042419434, -0.051239014, 0.023544312, -0.0017528534, -0.021881104, 0.00018262863, -0.031143188, -0.053863525, 0.005622864, -0.00025439262, 0.010375977, -0.00093603134, 0.03173828, -0.018371582, -0.010482788, -0.006046295, 0.0052490234, -0.010154724, 0.018920898, 0.016326904, 0.029800415, -0.006996155, 0.019241333, -0.04550171, -0.0025672913, -0.010513306, 0.012886047, -0.0037784576, 0.017333984, -0.0020942688, -0.005252838, -0.020828247, 0.008102417, -0.015411377, 0.017654419, 0.020935059, 0.0069885254, -0.032836914, -0.011054993, -0.000119805336, -0.038482666, -0.02078247, -0.04937744, -0.03173828, 0.026550293, -0.003080368, 0.05368042, -0.046722412, 0.05441284, 0.020202637, 0.0012216568, 0.021408081, 0.017669678, 0.023254395, -0.014709473, -0.029571533, 0.032958984, 0.015289307, -0.007106781, 0.021865845, -0.01763916, -0.01386261, 0.03414917, 0.014717102, 0.008033752, -0.062469482, 0.031280518, 0.01876831, -0.07879639, 0.016860962, 0.027435303, -0.021896362, 0.008132935, -0.046051025, -0.026443481, -0.00422287, 0.025497437, -0.0003259182, 0.052612305, -0.0057792664, 0.02142334, -0.014717102, -0.013694763, 0.0017681122, -0.008605957, 0.0012617111, 0.032562256, 0.018234253, -0.025268555, -0.054870605, 0.026992798, 0.027832031, 0.0050735474, 0.06652832, -0.056671143, 0.006816864, -0.03503418, 0.04660034, -0.008354187, -0.00084877014, -0.005580902, -0.013717651, 0.036590576, 0.031829834, -0.0107803345, -0.0028686523, 0.003414154, -0.062194824, 0.03717041, -0.04107666, 0.05984497, 0.035888672, 0.056671143, -0.06689453, -0.0390625, -0.015777588, -0.015914917, -0.0065956116, 0.02696228, 0.025909424, -0.024276733, 0.06530762, 0.028335571, 0.06518555, -0.011756897, 0.014564514, 0.009803772, 0.009681702, 0.032592773, -0.011665344, -0.008842468, -0.011619568, -0.020568848, -0.005241394, 0.0078048706, -0.016098022, 0.033325195, -0.0059318542, -0.0284729, -0.02003479, 0.007675171, -0.03161621, 0.018875122, 0.045959473, -0.06439209, 0.011695862, -0.0259552, -0.009338379, -0.032409668, -0.047790527, -0.06365967, 0.047302246, -0.03488159, -0.03781128, -0.032409668, 0.009780884, 0.03543091, -0.05130005, -0.0031833649, -0.0060043335, 0.029510498, -0.019973755, 0.02394104, -0.02609253, -0.021133423, 0.0027656555, 0.019180298, -0.039794922, -0.040222168, 0.0006155968, 0.024261475, 0.025375366, 0.012809753, 0.01637268, 0.060577393, 0.023513794, 0.0009160042, 0.016098022, -0.04675293, -0.056884766, 0.054779053, 0.031219482, -0.07720947, 0.0015535355, 0.05407715, 0.010772705, 0.011878967, 0.038116455, 0.010887146, -0.027648926, 0.014793396, -0.001502037, -0.0063972473, -0.041656494, 0.014251709, 0.00945282, -0.009460449, -0.024902344, 0.037261963, 0.020889282, 0.02607727, 0.05166626, -0.0021018982, 0.028137207, 0.000538826, -0.032073975, -0.079711914, -0.0096588135, 0.018615723, 0.011138916, 0.02255249, 0.018478394, 0.027877808, -0.015686035, 0.0023612976, 0.006500244, -0.0012216568, 0.018829346, -0.022750854, -0.004005432, -0.0062675476, -0.027526855, 0.010284424, -0.0059814453, 0.0005130768, 0.062164307, 0.0025749207, -0.022903442, -0.006160736, -0.033325195, -0.01158905, 0.0033168793, -0.044006348, 0.0032348633, -0.016601562, -0.0061836243, 0.015449524, 0.00248909, 0.0390625, 0.0046577454, -0.020904541, -0.04046631, 0.012863159, 0.0262146, -0.005306244, -0.03753662, 0.04144287, 0.016921997, 0.08380127, -0.006706238, -0.07647705, -0.026397705, 0.03363037, 0.013656616, -0.019058228, 0.040405273, -0.028945923, 0.010879517, 0.053344727, 0.0053634644, 0.03274536, 0.01121521, 0.04107666, -0.008880615, -0.0009198189]}, "B004BHEK5O": {"id": "B004BHEK5O", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill\nDescription: \nFeatures: 4 Stainless steel burners\n48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n4 Stainless steel burners\n", "metadata": {"Name": "Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill", "Brand": "Weber", "Description": "", "Features": "4 Stainless steel burners\n48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n4 Stainless steel burners", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.014198303, 0.010864258, -0.036865234, -0.030014038, -0.0061416626, -0.023544312, -0.009727478, 0.010322571, -0.0059318542, -0.0018777847, -0.014961243, 0.012062073, -0.0046920776, -0.05303955, 0.036193848, -0.008010864, 0.01423645, 0.03527832, 0.029510498, -0.018447876, 0.0090789795, -0.0027332306, 0.00095176697, 0.062805176, 0.038848877, -0.012573242, -0.090270996, 0.03274536, -0.00016951561, 0.01424408, 0.022125244, -0.0015926361, 0.012893677, 0.02796936, -0.012275696, -0.027679443, 0.0069847107, 0.00032544136, -0.015083313, 0.024902344, 0.023254395, -0.006175995, -0.012756348, 0.018966675, -0.005607605, -0.054901123, 0.043762207, -0.04916382, 0.04864502, -0.00071144104, -0.017822266, 0.046020508, -0.002937317, -0.046051025, -0.0206604, -0.004711151, 0.060180664, -0.025863647, 0.012428284, -0.029586792, -0.016204834, 0.022491455, 0.025375366, 0.00497818, -0.02645874, 0.023971558, 0.10229492, -0.014381409, 0.0017290115, -0.060821533, -0.015159607, 0.038848877, -0.00182724, 0.03326416, -0.020126343, -0.043701172, 0.033355713, -0.017532349, 0.020614624, 0.041809082, -0.006298065, 0.004383087, 0.029418945, 0.012451172, -0.023025513, 0.01763916, -0.023010254, -0.007965088, -0.006980896, -0.0014095306, -0.009483337, -0.021820068, -0.03036499, 0.07385254, 0.0058631897, -0.0020980835, -0.05038452, -0.053344727, -0.0029239655, -0.015068054, 0.015304565, -0.0009870529, -0.008979797, 0.018478394, 0.0033397675, 0.08496094, -0.0045776367, 0.08117676, 0.04727173, -0.016204834, 0.038482666, -0.012321472, 0.010101318, -0.0033950806, -0.033721924, -0.0031013489, -0.020233154, 0.007698059, -0.005531311, 0.011116028, -0.04257202, -0.03213501, 0.010406494, 0.013168335, 0.036010742, 0.033416748, -0.0006155968, 0.016983032, -0.04812622, 0.013725281, -0.013969421, 0.0063819885, 0.03186035, 0.0602417, 0.0045776367, -0.0019378662, 0.010437012, -0.036254883, -0.016235352, 0.012901306, -0.025848389, -0.018997192, 0.018478394, -0.030517578, -0.026748657, 0.030441284, 0.020202637, 0.006187439, -0.026748657, -0.07489014, 0.0043525696, -0.03463745, 0.03353882, 0.013420105, -0.070251465, -9.852648e-05, -0.036254883, -0.009902954, -0.025131226, -0.04348755, 0.01725769, -0.018844604, -0.03765869, 0.00969696, -0.03050232, 0.024490356, 0.04196167, 0.010818481, 0.02671814, 0.055786133, 0.029083252, -0.04940796, 0.04031372, 0.027786255, -0.01966858, 0.017715454, -0.017105103, 0.01725769, 0.043273926, -0.04928589, -0.04055786, -0.034210205, 0.07623291, -0.019195557, 0.00085544586, -0.026000977, 0.0017261505, -0.039733887, 0.014816284, 0.0059127808, 0.021011353, 0.015335083, 0.03201294, -0.037078857, 0.03314209, 0.009727478, -0.05407715, 0.003227234, -0.00831604, -0.02067566, 0.027679443, 0.025360107, 0.007659912, -0.017440796, -0.0049209595, -0.0064201355, 0.013580322, 0.021530151, 0.026107788, 0.02217102, -0.006538391, 0.014190674, 0.024246216, -0.07562256, -0.02557373, 0.031707764, -0.019256592, 0.011482239, 0.026763916, 0.010116577, 0.03277588, 0.016983032, 0.02684021, 0.0015354156, 0.007850647, 0.035888672, -0.037109375, 0.013374329, 0.01687622, 0.0019721985, 0.028259277, 0.018569946, 0.09851074, 0.09625244, 0.0018577576, 0.03869629, 0.06781006, 0.06890869, -0.043792725, -0.032684326, 0.012908936, -0.015777588, -0.03451538, -0.00043010712, 0.021759033, 0.021255493, 0.01651001, -0.008483887, -0.0054855347, 0.016967773, 0.03878784, 0.003376007, 0.022720337, 0.002105713, -0.009353638, 0.016601562, -0.012069702, -0.011566162, -0.012641907, 0.031402588, -0.012214661, 0.017974854, 0.0053138733, 0.0038337708, 0.042785645, 0.013153076, 0.022598267, 0.0043029785, -0.05291748, 0.029388428, 0.03591919, -0.00333786, -0.009735107, -0.044952393, -0.036590576, -0.06652832, -0.008758545, 0.05130005, -0.024047852, -0.064819336, 0.01979065, 0.0054893494, 0.015487671, -0.001912117, 0.048614502, 0.016143799, 0.0047416687, 0.0033130646, 0.026397705, 0.0039596558, 0.029663086, -0.01751709, -0.025924683, 0.043670654, -0.02571106, -0.038879395, 0.07232666, 0.0004234314, 0.0013465881, -0.018966675, 0.052520752, 0.030563354, -0.05001831, 0.0138549805, 2.3901463e-05, -0.025146484, 0.026367188, 0.028305054, 0.0065345764, -0.024856567, 0.001200676, 0.020767212, 0.010246277, -0.017364502, 0.016067505, -0.004436493, -0.0129470825, 0.01335144, 0.012535095, 0.03967285, -0.00041151047, -0.051361084, -0.056427002, -0.027542114, -0.027770996, 0.035308838, -0.037750244, -0.017807007, 0.04348755, -0.013885498, -0.033966064, -0.016067505, -0.038513184, -0.014022827, -0.009590149, 0.0067367554, 0.009437561, -0.0021705627, -0.01322937, -0.001282692, 0.014160156, -0.040161133, -0.005317688, -0.013633728, -0.02507019, -0.028213501, 0.03086853, -0.00258255, 0.01802063, 0.0059814453, 0.002105713, -0.023330688, -0.004508972, -0.028656006, 0.0032787323, -0.002729416, -0.008995056, -0.034332275, -0.010398865, -0.062164307, -0.003314972, 0.0049743652, -0.033477783, -0.013305664, 0.014961243, -0.028198242, -0.022583008, -0.015640259, -0.011756897, 0.038146973, 0.043945312, 0.008041382, -0.03829956, -0.030410767, -0.0637207, -0.028961182, 0.039520264, -0.029052734, -0.029937744, 0.0065956116, 0.00092697144, 0.013893127, -0.013977051, -0.005722046, 0.036987305, 0.01701355, 0.034729004, 0.012931824, 0.030929565, -0.017181396, 0.00088357925, 0.009269714, -0.025726318, -0.02923584, 0.025650024, 0.011238098, -0.02128601, 0.01638794, -0.029571533, -0.0015506744, -0.059661865, 0.0060691833, -0.00093221664, -0.04437256, 0.00065660477, -0.070617676, -0.06652832, -0.04449463, 0.01184082, 0.078430176, -0.0064697266, -0.010650635, -0.015777588, 0.0030727386, -0.007820129, 0.030181885, -0.009849548, -0.013519287, 0.005077362, 0.005329132, 0.025222778, -0.02607727, 0.0033016205, 0.029785156, -0.07446289, 0.04699707, -0.042419434, 0.060333252, -0.040283203, 0.014183044, -0.011528015, -0.004840851, -0.035369873, -0.044006348, 0.040130615, 0.038909912, -0.004928589, 0.023468018, -0.015701294, 0.013999939, -0.03491211, -0.015899658, -0.02444458, 0.064941406, -0.015853882, -0.007156372, -0.052581787, -0.064331055, 0.012184143, -0.028900146, 0.0178833, -0.0046653748, 0.050994873, 0.023605347, -0.015609741, 0.07330322, 0.023544312, 0.03753662, 0.0053710938, -0.021835327, -0.012046814, -0.023483276, -0.008392334, -0.007160187, -0.004627228, -0.021392822, -0.012306213, 0.040100098, 0.022338867, -0.036376953, 0.0362854, 0.054260254, 0.041259766, 0.0020217896, -0.03237915, -0.028717041, 0.044952393, 0.0014572144, -0.010604858, -0.055999756, -0.021453857, -0.010063171, -0.08331299, 0.097717285, 0.08477783, -0.039031982, 0.08282471, 0.0597229, 0.000218153, 0.0011806488, 0.022857666, -0.025421143, 0.019012451, 0.018051147, -0.016647339, -0.004306793, 0.012321472, -0.053253174, 0.01737976, 0.013580322, -0.053344727, 0.020690918, 0.0024528503, -0.039886475, 0.0017471313, 0.024124146, -0.005607605, 0.015716553, -0.0037994385, -0.008331299, -0.013877869, -0.0284729, -0.009735107, 0.032073975, -0.02960205, -0.019104004, 0.01902771, 0.032165527, -0.03765869, -0.006454468, 0.0036563873, -0.0009393692, -0.041381836, 0.04562378, 0.0140686035, 0.024963379, -0.09790039, 0.02154541, -0.037231445, 0.013252258, 0.015235901, 0.032928467, 0.036895752, -0.005886078, 0.00207901, -0.006790161, 0.009056091, -0.0015993118, -0.044769287, -0.0496521, 0.006855011, 0.008071899, -0.007183075, -0.041870117, 0.009941101, -0.033203125, 0.0074005127, -0.0178833, -0.04156494, -0.03149414, 0.018554688, 0.03555298, -0.041870117, 0.004714966, 0.004650116, -0.030593872, -0.045562744, 0.0074768066, -0.030212402, 0.04168701, 0.0154418945, 0.021621704, -0.04751587, -0.0018444061, -0.013221741, -0.0146102905, 0.046081543, -0.0015258789, 0.031555176, -0.023742676, 0.029815674, -0.0018568039, 0.119384766, 0.015617371, 0.019088745, -0.06768799, -0.009857178, 0.007980347, 0.041503906, 0.032104492, -0.024383545, 0.0030784607, -0.021408081, -0.030548096, -0.044799805, 0.007461548, 0.04156494, -0.021697998, -0.020401001, 0.0017375946, 0.040863037, -0.025497437, 0.02368164, 0.018463135, 0.012031555, -0.019546509, 0.023895264, -0.095336914, -0.024520874, -0.002292633, -0.04916382, 0.01663208, -0.0068969727, -0.012321472, 0.015991211, 0.052520752, 0.005958557, -0.04925537, -0.016311646, 0.053497314, 0.006855011, 0.002916336, -0.011688232, -0.022644043, 0.009292603, 0.024734497, -0.050323486, 0.074157715, 0.051330566, -0.016723633, 0.0031108856, 0.036987305, -0.016036987, -0.04336548, 0.016723633, 0.021881104, -0.032684326, -0.036132812, -0.035125732, 0.02645874, -0.04824829, -0.0018901825, -0.010978699, 0.01777649, 0.028945923, -0.04333496, 0.009033203, -0.0069084167, 0.04815674, 0.03540039, -0.015586853, 0.015945435, -0.02217102, 0.0033550262, 0.027740479, -0.023727417, -0.02168274, -0.016952515, -0.022750854, 0.004886627, -0.01058197, 0.0037651062, -0.02607727, -0.012565613, 0.013702393, -0.020858765, -0.022872925, 0.008407593, 0.026107788, -0.0012187958, -0.0037174225, 0.064575195, -0.019058228, 0.014122009, 0.04373169, -0.0075035095, -0.02444458, 0.038909912, -0.03289795, 0.054138184, 0.022964478, -0.061035156, 0.054138184, 0.0025157928, -0.006980896, -0.02897644, 0.072387695, -0.019577026, 0.009811401, -0.046295166, 0.016540527, 0.050476074, 0.035186768, 0.03753662, -0.06173706, 0.041381836, -0.03414917, -0.015335083, -0.006336212, 0.026901245, -0.012512207, 0.009048462, -0.011650085, -0.017150879, -0.029067993, -0.027999878, -0.02859497, 0.011817932, 0.02079773, -0.019729614, -0.004825592, 0.008956909, -0.012832642, -0.035003662, 0.01473999, -0.022720337, -0.0074310303, -0.01878357, 0.02659607, -0.0107803345, 0.0056991577, 0.035125732, 0.006008148, -0.002916336, 0.009132385, -0.037628174, -0.037078857, 0.001452446, -0.033111572, 0.009010315, -0.04071045, -0.012451172, 0.03942871, -0.010231018, 0.020492554, 0.04006958, -0.043151855, -0.027954102, 0.010673523, 0.037109375, -0.041778564, -0.02520752, 0.074157715, -0.06109619, -0.031402588, -0.06695557, 0.059143066, -0.047088623, -0.032592773, 0.040740967, 0.078186035, -0.004940033, 0.0368042, -0.016677856, -0.051361084, 0.009628296, 0.019088745, -0.070373535, -0.03945923, -0.040527344, 0.0026397705, 0.00033521652, -0.039245605, 0.0017375946, 0.049041748, 0.03817749, 0.00067567825, -0.029922485, -0.040649414, 0.0074691772, -0.05557251, 0.0007944107, -0.016113281, -0.0034809113, 0.020309448, -0.015304565, -0.013626099, 0.038757324, 0.062164307, 0.028213501, -0.0023059845, -0.015686035, 0.022064209, 0.07312012, -0.036346436, 0.052734375, -0.02268982, -0.0069389343, 0.023880005, 0.093933105, 0.013122559, 0.055633545, -0.07885742, -0.04840088, -0.030944824, 0.03918457, 0.03857422, 0.047576904, -0.009353638, 0.026046753, 0.020965576, -0.010025024, 0.017852783, -0.004196167, 0.0023765564, -0.018859863, -0.036499023, 0.0052604675, 0.01171875, -0.032318115, -0.06463623, -0.04727173, -0.024780273, 0.034698486, 0.010513306, 0.04107666, -0.026855469, 0.044281006, 0.011642456, -0.0101623535, 0.022079468, 0.0012197495, -0.014312744, -0.0056037903, -0.042755127, 0.027648926, 0.02835083, 0.010505676, -0.009422302, 0.02178955, -0.02305603, 0.013755798, 0.0020141602, 0.05239868, -0.0074882507, -0.008079529, 0.02229309, -0.033172607, -0.000623703, -0.01574707, -0.008628845, -0.029205322, -0.07562256, -0.010635376, -0.01637268, -0.014572144, 0.015914917, 0.006526947, 0.049957275, 0.011741638, 0.061798096, 0.026824951, 0.012275696, 0.02319336, 0.059906006, -0.011299133, 0.011161804, -0.039916992, -0.049682617, 0.020599365, 0.026626587, -0.00340271, 0.026687622, -0.028076172, 0.027160645, -0.0076675415, 0.02709961, -0.035858154, -0.006542206, 0.003622055, -0.026473999, 0.011856079, 0.0005722046, 0.036010742, 0.025024414, -0.0031166077, -0.0031642914, 0.030563354, -0.026824951, 0.014137268, 0.020584106, -0.0011053085, -0.012680054, -0.005077362, 3.0577183e-05, 0.0037879944, 0.012794495, 0.033843994, 0.0077400208, 0.021224976, 0.04046631, 0.03213501, 0.06970215, -0.019882202, 0.031799316, 0.0041007996, 0.0118255615, 0.04449463, 0.069885254, -0.008026123, -0.004623413, -0.015991211, -0.013969421, 0.009300232, -0.00843811, 0.01600647, -0.014129639, -0.00063610077, -0.030960083, 0.03274536, -0.011749268, -0.032226562, -0.009643555, -0.026138306, -0.03262329, -0.00058078766, -0.018478394, -0.04159546, -0.00019168854, -0.06945801, -0.02619934, -0.025726318, -0.022720337, -0.004749298, 0.019348145, 0.0143966675, -0.020584106, -0.022369385, 0.008049011, -0.038116455, -0.02279663, 0.04751587, -0.02607727, -0.020324707, -0.004814148, 0.006427765, -0.04260254, -0.021377563, -0.010246277, 0.0062561035, 0.017745972, -0.014511108, -0.0072364807, 0.058563232, 0.009590149, -0.0048217773, 0.005569458, -0.028915405, -0.03439331, 0.02507019, 0.009033203, -0.015991211, -0.008636475, 0.03778076, -0.004501343, -0.031066895, 0.05130005, -0.016204834, -0.06561279, -0.022338867, -0.019302368, -0.042022705, -0.01902771, -0.014663696, 0.028121948, 0.0102005005, -0.038116455, 0.016571045, 0.018676758, 0.03805542, 0.037719727, 0.025314331, 0.005191803, -0.03289795, -0.061828613, -0.029022217, -0.008377075, 0.040222168, 0.043823242, 0.018508911, 0.010513306, 0.032928467, -0.029891968, 0.020324707, 0.011154175, -0.013511658, 0.026229858, 0.028427124, -0.035858154, 0.021270752, -0.010902405, 0.032348633, 0.0028419495, 0.0029945374, 0.004005432, 0.018798828, -0.048461914, -0.058380127, -0.025222778, 0.018325806, -0.05038452, -0.04055786, -0.021835327, -0.0362854, -0.0035705566, 0.029251099, -0.018920898, 0.033599854, -0.02406311, -0.01890564, -0.0058898926, 0.027770996, -0.01651001, 0.028579712, -0.014770508, 0.03768921, -0.011489868, 0.06573486, -0.00623703, -0.09631348, -0.049743652, 0.03338623, 0.035461426, -0.017532349, 0.060791016, -0.0552063, 0.020187378, 0.016479492, -0.0021362305, -0.010055542, 0.0056266785, 0.026443481, -0.019058228, 0.006580353]}, "B009971BM6": {"id": "B009971BM6", "original": "Brand: Blackstone\nName: Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch\nDescription: \nFeatures: RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nTRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels.\nSATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!\n", "metadata": {"Name": "Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch", "Brand": "Blackstone", "Description": "", "Features": "RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nTRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels.\nSATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.011695862, -0.0068473816, -0.01574707, -0.01348114, -0.00920105, 0.0020446777, -0.031311035, -0.017486572, -0.02432251, -0.008361816, -0.02067566, 0.025024414, -0.04067993, -0.018737793, 0.014183044, -0.05303955, 0.021377563, 0.0052375793, -0.00046396255, -0.0234375, -0.018707275, -0.008544922, -0.0022621155, 0.07757568, 0.052459717, -0.051879883, -0.014533997, 0.009819031, 0.035247803, 0.018600464, 0.025985718, -0.007980347, 0.032592773, -0.013175964, -0.006641388, -0.04257202, -0.02017212, -0.012504578, -0.0132369995, -0.0011539459, 0.031982422, -0.01637268, -0.052581787, 0.04135132, -0.050476074, -0.04751587, 0.03744507, -0.005794525, -0.028167725, 0.0435791, 0.00793457, 0.038116455, 0.010795593, 0.010299683, 0.016113281, 0.027008057, 0.03805542, -0.011177063, 0.039154053, -0.030273438, -0.057281494, -0.003194809, 0.039245605, -0.017745972, -0.06274414, 0.025756836, 0.0657959, -0.0362854, -0.021240234, -0.054382324, 0.024612427, 0.01537323, 0.015426636, -0.01335907, -0.033081055, -0.020309448, 0.009765625, -0.022994995, 0.021652222, -0.020599365, -0.022384644, -0.01979065, -0.01272583, -0.025772095, -0.014099121, -0.029815674, -0.014595032, 0.0068206787, -0.0041160583, -0.078063965, 0.006401062, -0.04107666, -0.08331299, 0.022155762, 0.023269653, -0.050354004, -0.050689697, -0.03540039, -0.008056641, 0.02355957, -0.015670776, -0.0054016113, 0.027740479, -0.016860962, -0.043945312, 0.057800293, 0.04043579, 0.028625488, -0.024627686, -0.0015363693, -0.01309967, -0.067993164, 0.034698486, 0.00082302094, -0.02796936, -0.0071868896, 0.006134033, -0.008255005, 0.017456055, -0.003730774, -0.018630981, -0.0287323, 0.023666382, 0.027053833, 0.044952393, 0.043914795, -0.023422241, -0.0005750656, -0.04864502, 0.04626465, -0.04260254, -0.00409317, 0.059570312, 0.029815674, 0.0036125183, -0.0446167, 0.0146484375, -0.018569946, -0.00013494492, 0.0015516281, -0.018753052, 0.010437012, 0.04248047, -0.028320312, -0.019165039, 0.0024681091, 0.04019165, 0.025268555, -0.027526855, -0.05569458, 0.025924683, 0.020477295, 0.036743164, 0.0058784485, -0.04119873, 0.0007638931, 0.025314331, -0.02305603, -0.0335083, -0.056762695, 0.004310608, 0.0034542084, 0.037017822, -0.0032730103, -0.0031394958, -0.007507324, -0.041503906, 0.0035591125, -0.0016546249, 0.0011053085, -0.02015686, 0.049682617, -0.040527344, -0.031555176, 0.0010490417, -0.023284912, -0.036376953, 0.05883789, 0.05630493, -0.072265625, -0.05581665, -0.052337646, 0.078063965, -0.024169922, -0.022583008, 0.026153564, 0.02357483, 0.026855469, 0.0003182888, 0.0036296844, 0.057647705, 0.04360962, -0.03845215, 0.011665344, 0.008781433, 0.020309448, -0.04107666, 0.02027893, -0.019638062, -0.03125, -0.024887085, -0.0070724487, 0.009216309, 0.008293152, -0.009056091, 0.0009431839, -0.018508911, 0.03012085, 0.004180908, 0.002204895, 0.0008716583, -0.0154800415, 0.019897461, -0.09082031, -0.04260254, 0.01360321, -0.018188477, 0.026138306, 0.013710022, 0.028625488, 0.018844604, -0.015029907, 0.023483276, -0.00957489, 0.024658203, -0.009895325, -0.0236969, -0.010131836, -0.012489319, 0.006538391, -0.04650879, 0.041503906, 0.019836426, 0.074523926, -0.011192322, 0.03475952, 0.02470398, 0.042419434, -0.002155304, -0.017654419, 0.009346008, -0.0024280548, -0.040863037, 0.01739502, -0.013038635, -0.025253296, 0.004295349, 0.019454956, -0.046966553, 0.010757446, 0.0054397583, 0.045959473, 0.018737793, 0.03842163, -0.05407715, 0.045898438, -0.045166016, -0.024154663, -0.003194809, 0.018737793, 0.0073509216, 0.085632324, 0.038604736, 0.015396118, -0.0020694733, 0.029830933, 0.017730713, 0.01158905, -0.02960205, 0.027359009, 0.025253296, 0.003774643, -0.010917664, 0.007171631, -0.0121154785, 0.029571533, -0.019073486, 0.009124756, -0.0046081543, 0.0072364807, 0.015586853, 0.00868988, -0.015655518, -0.0033340454, 0.014099121, -0.02104187, 0.0072402954, 0.035369873, -0.033172607, -0.0050811768, 0.03982544, -0.040618896, -0.021896362, -0.037139893, -0.04232788, -0.017623901, 0.055847168, 0.06921387, -0.027542114, 0.007408142, 0.019104004, 0.006893158, -0.03591919, -0.0073432922, -0.012374878, 0.028182983, -0.0121154785, 0.01235199, 0.0015697479, -0.016937256, -0.021072388, -0.0141067505, 0.033416748, 0.02444458, 0.025726318, 0.0061073303, -0.008171082, 0.05429077, 0.0524292, 0.041229248, 0.0032978058, 0.0019760132, -0.025894165, -0.027908325, 0.00088071823, 0.0035438538, -0.045715332, -0.010093689, -0.038909912, 0.033294678, -0.016235352, -0.012901306, -0.009635925, 0.02798462, -0.01638794, 0.004245758, 0.0088272095, -0.016662598, -0.007980347, -0.012191772, -0.0017604828, -0.058441162, -0.009109497, -0.04135132, 0.013496399, -0.030960083, 0.008323669, 0.022109985, -0.08105469, -0.004219055, 0.020950317, -0.03857422, 0.023468018, -0.03552246, 0.015777588, -0.0069885254, -0.04537964, -0.060028076, -0.019256592, -0.09790039, -0.0064735413, -0.024963379, -0.0592041, -0.015914917, 0.03717041, 0.01701355, -0.02305603, -0.010795593, -0.009063721, -0.008399963, 0.05142212, 0.012924194, -0.06390381, -0.039001465, -0.038482666, -0.028564453, 0.0047187805, -0.028808594, -0.0025691986, -0.004890442, 0.0087890625, 0.03302002, -0.0067634583, 0.040130615, -0.0039749146, 0.026229858, -0.011238098, 0.030410767, 0.00043988228, -0.013916016, 0.025512695, 0.055725098, -0.060424805, 0.005634308, -0.030288696, 0.00066804886, 0.041870117, -0.08215332, -0.01309967, -0.025253296, -0.07434082, 0.046813965, 0.016204834, -0.04559326, -0.007698059, -0.06982422, -0.04937744, -0.04043579, 0.017196655, 0.041656494, 0.0085372925, 0.021972656, -0.011413574, 0.031311035, -0.023132324, -0.0038547516, 0.03994751, -0.02142334, 0.07043457, -0.052459717, -0.00048828125, -0.056762695, 0.024719238, 0.0143585205, -0.032562256, 0.03591919, -0.008918762, 0.033111572, -0.025924683, -0.021194458, -0.001789093, -0.042541504, -0.014251709, 0.017333984, 0.008506775, 0.0501709, -0.014656067, -0.039276123, 0.0009832382, -0.027282715, 0.008087158, -0.021636963, -0.0970459, 0.052612305, -0.027313232, -0.022567749, -0.06677246, -0.061584473, 0.015045166, -0.035491943, -0.004901886, 0.008216858, 0.0132369995, 0.014350891, -0.006187439, 0.05557251, -0.010009766, 0.052093506, 0.05114746, -0.029174805, -0.009468079, -0.05316162, 0.04647827, 0.052642822, -0.02684021, -0.042999268, 0.06536865, 0.0015764236, -0.00067567825, 0.0034809113, -0.03326416, 0.06359863, 0.04156494, -0.014709473, 0.0015821457, -0.06149292, 0.032440186, 0.033996582, -0.034118652, -0.046783447, -0.049194336, 0.005718231, -0.08648682, 0.08380127, 0.007827759, -0.007583618, 0.06896973, 0.05819702, -0.011657715, 0.059906006, -0.00018036366, 0.0064964294, 0.003540039, 0.039855957, -0.03881836, 0.04751587, 0.014045715, 0.014251709, 0.016082764, 0.0059280396, -0.018493652, -0.0068244934, -0.036071777, -0.010253906, 0.03640747, -0.0022182465, -0.016418457, -0.0070266724, 0.006969452, 0.024963379, 0.0014295578, -0.016067505, -0.013038635, 0.021377563, -0.03366089, -0.020339966, -0.012367249, 0.028060913, -0.054138184, -0.010429382, 0.02532959, 0.018920898, 0.024597168, 0.030380249, -0.019607544, 0.021377563, -0.022598267, -0.0056877136, -0.033172607, 0.028686523, 0.0017127991, 0.020736694, 0.02067566, -0.019699097, 0.020568848, 0.00045132637, -0.015487671, 0.004535675, -0.031311035, -0.024368286, -0.006576538, -0.03186035, -0.006626129, -0.008377075, -0.0037059784, -0.032318115, -0.023025513, 0.0020866394, -0.05307007, -0.008010864, -0.018997192, -0.008995056, -0.07873535, 0.0032978058, 0.010169983, -0.01763916, -0.07720947, 0.043151855, -0.022232056, -0.011924744, -0.017120361, -0.049591064, -0.02230835, 0.050048828, -0.04248047, 0.00089502335, 0.045776367, -0.008422852, 0.033447266, -0.03274536, -0.0060768127, -0.013832092, 0.027877808, -0.023666382, 0.011787415, -0.027069092, -0.0043907166, 0.0062026978, 0.028747559, 0.007282257, -0.00116539, 0.0026664734, -0.012771606, -0.010299683, -0.02607727, -0.0052223206, 0.045013428, -0.020736694, 0.005935669, 0.0064086914, 0.045440674, -0.03439331, -0.0074424744, -0.019332886, 0.044769287, 0.00030565262, 0.04611206, -0.051208496, -0.028884888, 0.018737793, -0.027954102, -0.009857178, 0.0010824203, -0.03225708, 0.033050537, 0.010055542, -0.01612854, -0.037078857, -0.0047073364, -0.02154541, -0.016937256, 0.028869629, -0.050048828, 0.016433716, -0.060943604, 0.00340271, -0.051849365, 0.09490967, 0.08325195, -0.016220093, 0.0016860962, 0.0140686035, -0.049987793, -0.05517578, 0.009971619, -0.023330688, 0.008705139, -0.0062828064, -0.029785156, 0.01234436, -0.028244019, -0.007003784, 0.02128601, -0.016021729, 0.036499023, 0.015182495, -0.000248909, 0.0010976791, -0.039398193, 0.018844604, -0.004863739, 0.028564453, -0.012557983, -0.024810791, 0.060302734, -0.023468018, -0.02407837, 0.0023422241, -0.011909485, -0.0035934448, -0.004562378, 0.013298035, -0.046905518, 0.027740479, 0.03062439, 0.017105103, -0.034332275, 0.02482605, 0.006454468, 0.011314392, -0.03778076, 0.042144775, -0.024627686, 0.013801575, 0.030914307, -0.041412354, -0.027496338, 0.02482605, -0.050811768, 0.05206299, -0.011047363, -0.034118652, 0.019897461, -0.0031108856, 0.014633179, -0.023971558, 0.026168823, 0.007320404, -0.022018433, -0.0473938, 0.0028266907, 0.010154724, 0.04562378, 0.026901245, -0.059539795, 0.041137695, -0.06378174, -0.030303955, 0.027130127, 0.06451416, -0.021896362, -0.0060653687, 0.04699707, -0.009590149, -0.05203247, 0.036987305, 0.029006958, -0.056640625, 0.0046310425, -0.06549072, 0.027786255, -0.004875183, -0.01448822, -0.004966736, -0.028549194, 0.022903442, -0.01777649, -0.03756714, -0.051879883, -1.692772e-05, -0.057403564, -0.0064315796, 0.0211792, 0.022125244, -0.057128906, -0.0284729, -0.021347046, -0.01411438, -0.033294678, 0.06463623, -0.007965088, 0.015327454, 0.021438599, 0.013267517, 0.018844604, 0.01979065, -0.05343628, 0.018844604, 0.023773193, 0.07067871, -0.007648468, -0.017745972, 0.09106445, -0.045959473, -0.039245605, -0.039001465, 0.040405273, -0.03604126, -0.002872467, 0.025375366, 0.03543091, 0.019195557, 0.0357666, 0.018707275, -0.05621338, 0.015327454, 0.02218628, -0.09490967, -0.054718018, -0.032470703, -0.007331848, -0.02734375, 0.003042221, -0.016586304, 0.053131104, 0.011749268, -0.01991272, -0.05999756, -0.027740479, 0.008659363, 0.0045166016, -0.0031204224, -0.0071640015, 0.027069092, -0.045562744, 0.033355713, -0.016342163, -0.052947998, 0.0013380051, 0.036010742, 0.024902344, -0.055877686, 0.006996155, 0.023483276, 0.0075645447, 0.07775879, -0.028198242, 0.012283325, -6.181002e-05, 0.015060425, 0.0007929802, 0.04559326, 0.039154053, 0.012359619, -0.053619385, 0.035095215, 0.018218994, 0.06896973, -0.06829834, 0.0012712479, 0.026611328, 0.040283203, 0.043273926, 0.022827148, 0.02571106, -0.019042969, -0.00010693073, 0.019989014, 0.010482788, -0.023895264, -0.038604736, -0.02279663, -0.020843506, 0.012863159, -0.0006957054, 0.032348633, 0.011009216, 0.009750366, -0.015838623, 0.03189087, 0.001914978, -0.026794434, -0.035736084, 0.006942749, 0.008491516, 0.017303467, -0.02508545, -0.0058021545, -0.049713135, -0.04147339, 0.043884277, 0.042144775, -0.01184845, 0.021453857, -0.042663574, 0.01550293, 0.08276367, -0.074523926, -0.020507812, 0.024139404, -0.0003426075, -0.016159058, -0.03253174, -0.015419006, 0.041503906, -0.0066108704, -0.034362793, 0.0770874, -0.010871887, -0.027648926, 0.0061950684, -0.02078247, 0.00094747543, -0.021438599, -0.017410278, -0.00630188, 0.003314972, 0.0035476685, 0.008842468, -0.0011072159, 0.055908203, -0.038116455, -0.017913818, -0.0054893494, 0.022888184, -0.02947998, -0.016830444, -0.03967285, -0.049682617, 0.058807373, 0.047454834, -0.05343628, -0.022155762, -0.0055885315, -0.022979736, 0.020019531, -0.06512451, 0.022445679, -0.03100586, 0.06555176, 0.04559326, 0.030792236, 0.03475952, 0.009307861, -0.02798462, 0.027755737, 0.009254456, -0.0013713837, 0.0055503845, 0.020874023, -0.01525116, 0.016113281, 0.017929077, -0.04849243, 0.011222839, 0.036376953, -0.020004272, 0.045135498, -0.0046081543, 0.0057907104, -0.0008969307, -0.027862549, -0.011978149, -0.011405945, -0.013267517, 0.021057129, 0.00043153763, 0.003742218, -0.018295288, -0.0027370453, 0.0046577454, -0.014251709, 0.0046806335, -0.024810791, -0.010314941, -0.024002075, -0.042266846, -0.0063438416, -0.0003209114, -0.0385437, 0.043762207, 0.008468628, -0.032958984, -0.00024092197, 0.012481689, 0.022506714, -0.06323242, -0.016342163, -0.026733398, 0.0004930496, -0.0062332153, 0.02507019, 0.010978699, -0.03768921, -0.05291748, 0.008552551, -0.030029297, 0.007575989, -0.008758545, -0.008720398, -0.016815186, -0.016983032, 0.020248413, 0.043945312, 0.011001587, -0.00819397, -0.06085205, 0.020263672, -0.014053345, 0.03930664, -0.0128479, -0.021240234, -0.020996094, 0.018035889, 0.007583618, 0.035095215, 0.025894165, -0.006855011, -0.047912598, -0.01448822, -0.029144287, 0.011421204, 0.0072135925, -0.021636963, 0.045013428, 0.018951416, -0.023162842, 0.022415161, 0.0135269165, -0.02078247, 0.01939392, 0.0030269623, 0.026168823, -0.0012178421, -0.048706055, -0.0060691833, -0.019042969, -0.012924194, -0.009101868, -0.046081543, -0.011802673, -0.009231567, -0.006134033, -0.032073975, 0.0059776306, 0.0026454926, -0.009399414, -0.0073165894, -0.008049011, -0.04284668, -0.009132385, -0.04360962, -0.01638794, -0.037384033, 0.04827881, 0.013442993, -0.01335907, 0.009506226, -0.021957397, -0.00920105, 0.009292603, -0.011856079, -0.0082092285, -0.009727478, -0.0016431808, 0.010391235, 0.017181396, 0.008575439, 0.014076233, -0.017318726, -0.049713135, -0.0040016174, 0.018554688, -0.008224487, -0.015853882, 0.02357483, 0.031311035, 0.059143066, -0.025268555, -0.03213501, -0.034484863, 0.02583313, -0.024246216, 0.007949829, 0.011238098, -0.0127334595, 0.009338379, 0.02381897, 0.01436615, -0.014801025, -0.012519836, 0.034362793, 0.015670776, 0.0058135986]}, "B00LILH3V4": {"id": "B00LILH3V4", "original": "Brand: Amazon Basics\nName: Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze\nDescription: \nFeatures: Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios\nMade with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements\nPiezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided.\nSafety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility\nSecure the patio heater when not in use to avoid any potential damage to the patio heater\n", "metadata": {"Name": "Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze", "Brand": "Amazon Basics", "Description": "", "Features": "Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios\nMade with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements\nPiezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided.\nSafety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility\nSecure the patio heater when not in use to avoid any potential damage to the patio heater", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03778076, -0.004020691, -0.04119873, -0.05130005, 0.012382507, -0.029937744, 0.005836487, 0.027435303, -0.040924072, 0.007003784, -0.03414917, 0.047027588, 0.0011911392, -0.0036468506, 0.05267334, -0.030014038, 0.026977539, -0.0015039444, 0.011634827, -0.019927979, 0.0069274902, 0.00025439262, -0.01890564, 0.107055664, 0.009117126, -0.04333496, 0.09313965, -0.010734558, 0.015975952, -0.027420044, 0.025466919, 0.018722534, 0.033477783, 0.0033226013, -0.015533447, -0.042816162, -0.00283432, -0.010612488, -0.02470398, 0.013694763, 0.019439697, -0.0029754639, -0.028808594, 0.00687027, -0.039642334, -0.03930664, 0.022155762, -0.01576233, -0.007247925, 0.0067253113, 0.020828247, 0.024612427, 0.032958984, -0.008255005, -0.018508911, 0.007904053, 0.048797607, -0.036712646, 0.02180481, -0.05496216, -0.040161133, -0.0050964355, 0.057006836, 0.014816284, -0.030303955, 0.0015068054, 0.06842041, 0.0024814606, 0.049743652, -0.046081543, -0.032165527, 0.06286621, -0.018432617, 0.02104187, -0.02003479, -0.03286743, 0.0357666, -0.017944336, 0.0037555695, 0.033294678, 0.004627228, 0.01576233, -0.0012960434, -0.020248413, 0.0075798035, -0.014129639, -0.009490967, -0.0124053955, -0.043762207, -0.045684814, -0.021240234, -0.036834717, -0.07092285, 0.043060303, 0.0034484863, -0.0031337738, -0.05911255, -0.07873535, 0.03387451, -0.00061130524, 0.04095459, -0.032684326, 0.007133484, 0.011665344, -0.0028572083, 0.054107666, 0.0082092285, 0.002866745, 0.01878357, 0.005306244, -0.015960693, 0.023361206, -0.021957397, -0.032806396, -0.012107849, 0.0055503845, -0.054992676, 0.007537842, 0.01751709, -0.010223389, -0.016921997, -0.022567749, 0.04446411, 0.013259888, 0.01953125, 0.027862549, -0.032958984, -0.00756073, -0.055389404, 0.06768799, -0.010307312, -0.018127441, -0.009742737, 0.05633545, -0.013442993, -0.017211914, 0.050354004, 0.008529663, 0.040496826, -0.017333984, 0.026519775, -0.004512787, -0.013656616, 0.027694702, 0.0115356445, 0.024765015, 0.021377563, -0.0102005005, -0.014259338, -0.0030498505, -0.0234375, 0.0071525574, 0.04510498, 0.02319336, -0.059448242, 0.026947021, 0.0340271, -0.02734375, -0.07495117, -0.07299805, -0.043640137, -0.019363403, 0.023590088, -0.0023288727, -0.021209717, 0.034942627, 0.013679504, 0.004524231, 0.023025513, 0.09265137, -0.012931824, -0.0038871765, -0.0006093979, 0.040008545, -0.007408142, -0.0008916855, -0.004081726, 0.07354736, 0.05831909, -0.10888672, -0.071899414, -0.07574463, 0.13208008, -0.056274414, -0.0017614365, -0.011360168, 0.020568848, 0.010498047, -0.0031375885, 0.011665344, 0.030731201, 0.015716553, 0.0037899017, -0.049346924, -0.008041382, 0.021896362, -0.075683594, 0.026443481, -0.02810669, 0.016326904, 0.013267517, 0.018249512, 0.0048561096, -0.032714844, 0.028961182, -0.014175415, 0.017196655, 0.011642456, 0.0035247803, 0.05380249, -0.0046806335, 0.029327393, -0.0028896332, -0.07409668, -0.0005393028, 0.021820068, -0.0030765533, 0.011940002, -0.014930725, -0.0077323914, -0.0026111603, -0.008659363, 0.0009946823, 0.027633667, 0.008842468, -0.037017822, -0.009971619, -0.025527954, 0.01374054, -0.020965576, 0.029220581, 0.028198242, 0.03527832, 0.066467285, 0.018692017, 0.031433105, 0.09686279, 0.035369873, -0.00027775764, -0.04309082, 0.004459381, -0.04095459, -0.022644043, 0.0446167, -0.037109375, -0.034118652, 0.0036373138, 0.03024292, -0.028686523, 0.019714355, 0.031234741, 0.024765015, 0.0052948, 0.0068092346, -0.03894043, 0.030593872, -0.012489319, 0.009216309, -0.0051078796, 0.003255844, 0.0013751984, 0.06732178, 0.013702393, 0.0059280396, 0.03515625, 0.011276245, 0.05026245, 0.044128418, 0.026550293, -0.011779785, -0.008712769, -0.015731812, -0.013015747, 0.01739502, -0.0096588135, -0.049224854, -0.039794922, 0.032226562, -0.021987915, -0.025619507, -0.0079574585, -0.024917603, -0.0039634705, -0.0011091232, 0.040740967, 0.034729004, 0.021270752, -0.009002686, -0.017333984, -0.0039978027, 0.033691406, -0.02520752, -0.025878906, 0.008872986, -0.02130127, -0.030197144, 0.049224854, 0.00894928, 0.019699097, -0.004737854, -0.013259888, 0.032348633, -0.030059814, 0.015960693, 0.0043144226, -0.008628845, -0.008087158, 0.024536133, 0.018447876, -0.019195557, 0.00894928, 0.051879883, 0.026260376, -0.0061302185, 0.04046631, 0.014915466, 0.022262573, 0.03930664, 0.02368164, -0.011878967, -0.006881714, 0.03967285, 0.0068511963, -0.025314331, 0.041809082, -0.015731812, -0.035461426, -0.015602112, -0.0064315796, 0.002773285, -0.004295349, -0.031585693, -0.022369385, -0.015625, 0.0009889603, 0.011871338, -0.0039520264, 0.03302002, 0.009788513, -0.017364502, 0.036254883, 0.019943237, -0.0040283203, 0.012908936, 0.006275177, 0.009422302, 0.0027809143, 0.038604736, -0.05895996, 0.009391785, -0.016433716, -0.04324341, 0.00034189224, -0.048309326, -0.009674072, 0.03817749, -0.026123047, -0.029144287, 0.018859863, -0.061462402, -0.014984131, 0.0062942505, -0.028198242, 0.0047721863, 0.014717102, -0.016525269, -0.005710602, -0.0085372925, -0.050720215, -0.0038490295, 0.044799805, -0.017532349, -0.08691406, -0.040222168, -0.07244873, 0.017974854, 0.02027893, -0.020339966, -0.0030155182, 0.0027999878, 0.019546509, 0.017242432, 0.015213013, 0.0052604675, -0.019973755, 0.042663574, 0.062805176, 0.015335083, 0.008743286, -0.029052734, 0.008773804, 0.038146973, -0.034851074, 0.0017299652, 0.033416748, -0.011657715, -0.014564514, 0.011779785, -0.085876465, -0.014640808, -0.056365967, 0.012672424, -0.00022554398, -0.01586914, 0.016204834, -0.059936523, -0.010406494, -0.044769287, 0.016204834, 0.051574707, -0.025970459, -0.010940552, -0.04486084, -0.013336182, -0.015426636, 0.02609253, 0.038116455, 0.0028686523, 0.028564453, -0.041168213, 0.019821167, -0.0184021, 0.028518677, 0.020645142, -0.04660034, -0.03564453, -0.009864807, 0.03378296, -0.035736084, 0.043670654, -0.0035762787, -0.0049209595, 0.0022678375, -0.010467529, -0.034851074, 0.0099487305, 0.017440796, 0.016235352, 0.031143188, -0.023788452, -0.028579712, -0.03062439, 0.015365601, 0.045928955, 0.00843811, 0.013084412, -0.042877197, -0.029663086, -0.0028133392, -0.035949707, -0.011230469, 0.0023784637, 0.029373169, 0.030792236, -0.0034217834, 0.074035645, 0.014839172, 0.02986145, 0.031982422, -0.009307861, -0.012313843, -0.01927185, 0.004085541, 0.0181427, 0.034362793, -0.04989624, 0.03793335, 0.028182983, 0.025970459, 0.010299683, 0.0131073, 0.007255554, 0.0011501312, -0.030334473, 0.03086853, -0.013641357, 0.00042057037, -0.0046157837, 0.0047721863, -0.011619568, -0.024017334, -0.011222839, -0.049224854, 0.09112549, 0.08312988, -0.03543091, 0.08874512, 0.058502197, -0.010101318, 0.046081543, 0.030593872, 0.029937744, -0.0023422241, 0.09326172, -0.0069732666, -0.00793457, -0.00026607513, 0.036895752, -0.010566711, -0.01939392, -0.06185913, 0.022827148, 0.02293396, -0.013534546, -0.05606079, 0.019943237, 0.009918213, -0.02949524, 0.009048462, -0.079833984, -0.021499634, -0.059265137, 0.024368286, -0.007335663, -0.021835327, -0.026611328, -0.0075569153, -0.03717041, -0.03186035, 0.024169922, 0.02645874, -0.005214691, 0.0051651, 0.015159607, 0.031555176, 0.011360168, -0.017974854, -0.0061073303, -0.010559082, 0.008728027, -0.0022354126, 0.011352539, 0.015808105, 0.011161804, 0.0036029816, 0.00032186508, -0.023712158, 0.006088257, -0.020385742, -0.040222168, -0.007507324, 0.026641846, 0.0209198, 0.0031280518, 0.015701294, -0.016433716, -0.004562378, 0.004299164, -0.034423828, 0.022842407, -0.05038452, -0.03970337, -0.08129883, -0.037078857, -0.00061941147, 0.01763916, -0.028274536, 0.0077400208, -0.018707275, -0.004009247, 0.012229919, -0.016708374, -0.03866577, 0.006340027, 0.00036859512, -0.00033259392, 0.019958496, -0.039001465, 0.010124207, -0.04562378, -0.021011353, -0.0109939575, 0.06402588, 0.004673004, 0.0023956299, -0.022354126, 0.026901245, 0.0068855286, 0.03515625, 0.0022525787, -0.05517578, 0.024978638, 0.018310547, 0.043060303, -0.08215332, -0.01889038, 0.070495605, -0.058532715, -0.04257202, -0.039764404, 0.06365967, 0.0045661926, 0.001326561, -0.002532959, 0.00095653534, 0.023117065, -0.044708252, -0.07165527, 0.0011014938, 0.00566864, -0.04711914, 0.028427124, -0.0050315857, -0.024993896, 0.042053223, 0.06781006, 0.01902771, -0.0395813, -0.0137786865, 0.021026611, -0.023361206, -0.0035114288, -0.0014648438, -0.014785767, -0.008087158, 0.029418945, -0.04977417, 0.013786316, 0.054016113, 0.0023937225, 0.03665161, 0.011978149, 0.0121536255, 0.014183044, 0.013458252, 0.013587952, -0.02394104, 0.0026340485, -0.011909485, 0.012458801, -0.0056762695, -0.013328552, -0.025039673, -0.024536133, 0.0031471252, 0.007183075, -0.02053833, -0.022476196, -0.022994995, -0.041503906, 0.023620605, 0.019226074, -0.016036987, -0.074157715, 0.032806396, -0.013290405, -0.0395813, 0.003326416, -0.036102295, -0.011528015, -0.015625, 0.008995056, -0.016403198, 0.03173828, 0.019821167, 0.01626587, -0.03390503, 0.04736328, -0.011260986, 0.0060577393, -0.04421997, 0.0107040405, 0.013771057, -0.009498596, 0.009094238, 0.0048294067, -0.00035262108, 0.035858154, -0.01651001, 0.013633728, 0.021636963, -0.026443481, 0.016342163, 0.020477295, 0.044281006, -0.030426025, 0.008766174, -0.0024967194, -0.031173706, -0.041229248, 0.01335144, 0.0015249252, -0.020828247, 0.009094238, -0.020095825, 0.049591064, -0.038208008, -0.029708862, -0.012123108, 0.03475952, -0.0104904175, 0.04525757, -0.00075149536, 0.029693604, -0.036956787, -0.009536743, -0.011024475, 0.015899658, -0.011802673, -0.011436462, 0.04928589, 0.0134887695, -0.023910522, -0.008575439, 0.022384644, -0.0035324097, -0.049743652, -0.0006890297, -0.019866943, -0.027877808, -0.0069770813, 0.050109863, 0.0076942444, 0.017959595, -0.041107178, -0.036834717, -0.066833496, -0.0016040802, -0.039855957, 0.05569458, -0.027664185, -0.012382507, 0.045562744, -0.01902771, 0.012878418, 0.020339966, -0.0066375732, -0.020111084, 0.02482605, 0.061828613, -0.0027122498, -0.03543091, 0.08441162, -0.04055786, -0.024017334, -0.06695557, 0.028030396, 0.026748657, -0.02961731, 0.0960083, 0.025131226, 0.0155181885, 0.01687622, -0.024307251, -0.04699707, 0.02583313, 0.009613037, -0.09472656, -0.005554199, -0.028823853, 0.0057411194, -0.015319824, 0.007709503, -0.03640747, 0.018173218, -0.036254883, 0.0026168823, -0.017532349, 0.006752014, -0.023742676, -0.03768921, 0.011360168, -0.03074646, 0.0064582825, -0.017227173, 0.0073165894, -0.049072266, -0.03805542, 0.0016841888, 0.016052246, 0.014228821, 0.022338867, -0.012908936, -0.0056114197, -0.026184082, 0.010551453, 0.030273438, -0.047546387, -0.014984131, -0.010726929, 0.02722168, -0.0061454773, -0.0012779236, 0.0096206665, -0.032104492, 0.027328491, 0.066101074, 0.03277588, -0.0014152527, 0.029922485, 0.04888916, -0.00447464, -0.004184723, 0.0027008057, 0.022613525, -0.018569946, -0.05239868, -0.00033712387, -0.01247406, -0.038238525, -0.028305054, -0.055603027, -0.046051025, -0.0049324036, -0.015853882, 0.0637207, -0.040039062, 0.018325806, 0.007881165, 0.0014638901, 0.006767273, -0.025863647, -0.023117065, -0.023284912, 0.0011844635, 0.0071487427, 0.018447876, 0.005580902, 0.019729614, -0.01259613, -0.026473999, 0.015731812, 0.0049095154, 0.010314941, -0.023223877, 0.02355957, 0.0022125244, -0.052642822, 0.019302368, -0.029129028, -0.016418457, -0.015434265, -0.02204895, -0.026412964, -0.0021438599, 0.033691406, -0.008155823, 0.014526367, -0.0013341904, 0.017852783, 0.016067505, -0.025177002, 0.0050086975, 0.012168884, -0.02645874, -0.030426025, -0.004207611, -0.0005092621, -0.044403076, -0.0075645447, 0.049926758, 0.002571106, 0.010108948, -0.024978638, 0.038879395, -0.015457153, 0.0036258698, -0.021514893, -0.032043457, 0.026290894, 0.012275696, -0.011024475, 0.034179688, 0.027023315, -0.010925293, -0.013786316, -0.052490234, 0.0069007874, -0.030212402, -0.015403748, 0.021972656, 0.03475952, -0.011978149, -0.014198303, -0.013954163, 0.032836914, -0.0031032562, 0.027053833, 0.021209717, 0.031555176, 0.03994751, 0.0044898987, 0.059051514, -0.021957397, 0.015197754, -0.007987976, 0.022155762, 0.032318115, -0.010513306, -0.0090408325, 0.02507019, -0.004558563, -0.006816864, 0.048461914, -0.016693115, 0.02670288, 0.029937744, -0.0068473816, -0.036102295, 0.011764526, -0.0030345917, -0.05001831, 0.03201294, -0.052947998, -0.006385803, -0.0038604736, -0.014022827, -0.030700684, 0.0065612793, -0.021438599, -0.008552551, 0.0071525574, -0.0050086975, 0.00983429, -0.012527466, 0.017562866, -0.023468018, 0.017822266, 0.016586304, 0.040374756, 0.007774353, 0.055419922, -0.018463135, -0.06329346, -0.038360596, 0.021743774, -0.064331055, 0.0016736984, 0.0053596497, -0.020904541, -0.027328491, -0.02670288, 0.04852295, 0.049346924, 0.053833008, 0.0004963875, 0.05279541, -0.037017822, -0.022247314, 0.023849487, 0.031951904, -0.036254883, -0.017349243, -0.014099121, 0.017654419, 0.026657104, 0.029785156, 0.019546509, -0.08190918, -0.019592285, -0.054748535, 0.00762558, -0.050750732, 0.008361816, 0.0018596649, -0.030349731, -0.05227661, 0.04763794, 0.043273926, 0.0770874, 0.032470703, 0.01638794, 0.04547119, -0.014205933, -0.037597656, -0.07525635, -0.014045715, 0.037200928, 0.0052108765, -0.045166016, 0.038909912, 0.014801025, -0.04171753, 0.017684937, 0.02949524, -0.0023479462, 0.04397583, -0.030548096, -0.023803711, 0.019515991, -0.03591919, 0.022247314, -0.009094238, 0.04360962, 0.039794922, 0.00554657, -0.015640259, 0.014305115, -0.03668213, 0.0061569214, 0.0014314651, -0.028564453, -0.074035645, -0.07879639, 0.038116455, 0.053619385, -0.025115967, 0.014839172, 0.0047416687, 0.017654419, -0.033081055, -0.008369446, 0.013259888, -0.0023555756, -0.012313843, 0.0068740845, 0.018112183, 0.016525269, -0.013618469, -0.08703613, -0.062683105, 0.059631348, 0.012176514, -0.020431519, 0.04675293, -0.025634766, 0.0124053955, 0.03765869, -0.047973633, 0.0018873215, -0.014724731, 0.026260376, -0.0062332153, -0.006778717]}, "B075KQ1VV2": {"id": "B075KQ1VV2", "original": "Brand: Stansport\nName: STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black)\nDescription: \nFeatures: FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper!\nPORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center.\nDESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen!\nHIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike!\nNO MATCHES REQUIRED: The electronic igniter ensures you won't be eating a cold meal, even if you lose your matches during a long hike!\n", "metadata": {"Name": "STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black)", "Brand": "Stansport", "Description": "", "Features": "FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper!\nPORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center.\nDESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen!\nHIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike!\nNO MATCHES REQUIRED: The electronic igniter ensures you won't be eating a cold meal, even if you lose your matches during a long hike!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0031013489, 0.00059366226, -0.010063171, -0.023849487, -0.010360718, -8.702278e-06, -0.028869629, -0.026428223, -0.011894226, -0.02357483, -0.039398193, 0.053833008, -0.04336548, -0.019958496, 0.036834717, -0.03564453, 0.003665924, 0.028060913, -0.009407043, -0.041900635, 0.013702393, -0.04989624, -0.020629883, 0.110839844, 0.027755737, -0.022750854, -0.047973633, 0.026931763, 0.007888794, -0.0012044907, 0.014656067, 0.029327393, 0.02798462, -0.009880066, 0.0043754578, -0.030563354, -0.0007176399, -0.015655518, -0.022827148, -4.2259693e-05, 0.004119873, 0.013381958, -0.00655365, 0.024154663, -0.030914307, -0.035339355, 0.016326904, -0.025924683, -0.011413574, -0.0052261353, -0.0054779053, -0.0026626587, 0.010948181, -0.07867432, -0.0060195923, 0.0073051453, 0.032104492, 0.0038070679, -0.010658264, -0.04260254, -0.021957397, 0.04248047, 0.029067993, 0.0473938, -0.0463562, 0.018310547, 0.07696533, -0.03817749, 0.029968262, -0.03842163, -0.008987427, 0.05557251, 0.00919342, 0.024230957, -0.058380127, -0.032562256, 0.012939453, -0.02835083, 0.044525146, -0.008720398, -0.013763428, -0.017044067, -0.0040283203, -0.034088135, 0.019500732, -0.01209259, -0.004386902, -0.0032215118, -0.009475708, -0.017456055, -0.008262634, -0.022827148, -0.022521973, 0.024154663, -0.0149383545, -0.006126404, -0.029907227, -0.070617676, 0.034088135, 0.016967773, 0.021484375, -0.037109375, 0.015838623, 0.014183044, 0.00548172, 0.08898926, 0.025115967, 0.036224365, 0.004840851, -0.02394104, 0.010246277, -0.028564453, -0.020050049, 0.00617218, -0.0287323, 0.029220581, -0.043701172, 0.011436462, -0.01083374, 0.058288574, -0.048614502, -0.027740479, 0.047943115, -0.008377075, 0.013877869, -0.0023727417, 0.0012083054, -0.022125244, -0.014526367, 0.029205322, -0.035217285, 0.024337769, 0.017471313, 0.019607544, -0.0044822693, -0.018829346, 0.017822266, 0.01007843, 0.015823364, -0.0077590942, -0.021377563, -0.008972168, 0.028320312, -0.0033226013, 0.016433716, 0.0029754639, 0.014457703, -0.001534462, 0.007965088, -0.004886627, 0.025650024, -0.055633545, 0.010292053, 0.027389526, -0.034240723, 0.014556885, -0.0085372925, -0.01398468, -0.0078048706, -0.035705566, -0.024383545, -0.020706177, -0.036865234, 0.021881104, -0.018463135, 0.041290283, 0.06781006, 0.012130737, 0.011360168, 0.010986328, 0.01335907, 0.06713867, 0.021392822, 0.0014238358, 0.008621216, -0.030761719, -0.025375366, 0.07495117, 0.041381836, -0.07336426, -0.04852295, -0.055999756, 0.121154785, -0.05215454, -0.016464233, -0.037841797, 0.007926941, -0.012779236, 0.02015686, 0.0010356903, 0.04837036, -0.013389587, 0.009773254, -0.021865845, 0.008621216, -0.0021514893, -0.023345947, 0.018447876, -0.017959595, -0.014228821, -0.015686035, 0.021087646, -0.0026226044, 0.027832031, 0.026931763, -0.012283325, 0.013496399, -4.4703484e-05, 0.0284729, 0.019699097, -0.018249512, -0.016983032, 0.01171875, -0.056488037, -0.035247803, -0.0033435822, -0.021865845, 0.023544312, 7.6293945e-06, 0.042541504, 0.018173218, -0.031677246, 0.025360107, 0.015609741, 0.014602661, -0.015007019, -0.01574707, -0.007106781, 0.01436615, -0.00031018257, 0.009979248, 0.028259277, 0.054534912, 0.05795288, -0.008796692, 0.050811768, 0.09320068, 0.07800293, -0.028564453, -0.041168213, 0.018325806, -0.040130615, -0.029281616, -0.020187378, -0.017654419, -0.015388489, 0.013824463, -0.008605957, 0.016830444, 0.052612305, 0.011398315, -0.0131073, 0.019378662, -0.0018081665, -0.018814087, 0.022247314, -0.018249512, -0.008796692, 0.005592346, 0.037322998, -0.014930725, 0.071899414, 0.048950195, 0.011734009, 0.03967285, 0.017944336, 0.033935547, 0.0309906, -0.0256958, 0.016174316, 0.008224487, 0.0030841827, -0.01890564, 0.028060913, 0.03366089, -0.02029419, -0.040405273, 0.020187378, -0.015556335, 0.0022792816, 0.003376007, -0.001206398, -0.014480591, -0.009895325, 0.051239014, 0.0435791, -0.0062026978, -0.023956299, -0.037475586, -0.035980225, 0.006713867, 0.0025367737, -0.037872314, 0.006893158, -0.04321289, -0.023406982, 0.070007324, -0.0074806213, 0.026901245, -0.034973145, -0.009140015, 0.022964478, -0.04144287, 0.0048675537, -0.0031700134, -0.019470215, -0.020217896, 0.030258179, -0.0030841827, -0.03463745, -0.025115967, 0.015853882, 0.03463745, 0.008926392, 0.0362854, 0.024719238, 0.013557434, 0.04827881, 0.044555664, 0.037719727, 0.013168335, -0.047668457, 0.009605408, 0.013252258, -0.012802124, -0.014221191, 0.026443481, 0.00919342, 0.008712769, -0.0006990433, -0.003419876, 0.003446579, -0.020507812, 0.021636963, 0.005531311, 0.00497818, 0.0181427, 0.03302002, 0.006942749, -0.043640137, 0.012687683, -0.018325806, -0.00491333, 0.007068634, -0.0068511963, -0.06567383, 0.027908325, -0.00724411, -0.022094727, -0.010414124, 0.036132812, -0.009902954, 0.039764404, -0.016357422, 0.04650879, -0.04748535, -0.081848145, -0.031173706, -0.035186768, -0.08105469, 0.013145447, -0.02998352, -0.04434204, -0.02961731, 0.07159424, -0.008560181, -0.058898926, -0.038330078, -0.020339966, 0.028152466, -0.010047913, 0.019729614, -0.062042236, -0.026000977, -0.027282715, 0.028015137, 0.038269043, -0.023239136, 0.02545166, 0.013122559, -0.0049552917, 0.0033092499, 0.018539429, 0.0035972595, 0.022903442, 0.024002075, 0.03692627, 0.034820557, 0.035003662, -0.017547607, 0.02973938, 0.014259338, -0.028411865, 0.00083208084, -0.015594482, -0.0010194778, -0.0073890686, -0.03439331, -0.026824951, -0.0020751953, -0.0368042, 0.035461426, -0.011276245, -0.0058059692, 0.004234314, -0.08050537, 0.010559082, -0.05065918, 0.009384155, -0.0029067993, -0.015594482, 0.011054993, -0.024902344, 0.0028152466, 0.0058517456, -0.018859863, 0.049621582, -0.017852783, 0.020019531, -0.028182983, 0.04135132, -0.10046387, 0.052368164, 0.02468872, -0.01008606, 0.013343811, -0.029449463, -0.014587402, -0.020385742, 0.041107178, 0.006000519, 0.013198853, 0.0113220215, 0.0077438354, -0.01864624, 0.018997192, -0.010551453, -0.019943237, 0.036346436, -0.050720215, -0.02822876, -0.011024475, -0.02822876, 0.026504517, -0.020996094, -0.019546509, -0.040649414, -0.04360962, 0.0002617836, -0.01676941, 0.026855469, 0.0034427643, 0.041748047, 0.01146698, -0.012619019, 0.055633545, -0.003376007, 0.033996582, 0.043426514, -0.042938232, -0.03845215, -0.03125, -0.0073890686, 0.012336731, -0.00667572, -0.043548584, 0.020523071, 0.015640259, 0.009468079, -0.009109497, -0.013366699, 0.068481445, 0.050109863, -0.012504578, -0.006526947, -0.03829956, 0.04208374, 0.01828003, -0.025772095, -0.049591064, -0.060455322, 0.009346008, -0.05105591, 0.06311035, 0.05505371, -0.026245117, 0.08129883, 0.0335083, 0.006980896, 0.020401001, 0.028762817, -0.042388916, 0.0066375732, 0.029830933, -0.042419434, 0.034606934, 0.015365601, 0.0035877228, -0.012901306, 0.0041770935, -0.06262207, 0.00491333, -0.011627197, -0.014419556, -0.03152466, 0.008285522, -0.031143188, -0.01398468, 0.009841919, -0.06585693, -0.0541687, -0.03781128, 0.012672424, 0.013694763, -0.02192688, 0.013328552, -0.024169922, -0.032318115, -0.020111084, 0.012001038, 0.007270813, 0.019210815, -0.0077590942, 0.02444458, 0.03112793, -0.0030937195, -0.031463623, 0.0006842613, -0.055999756, 0.024551392, 0.028442383, 0.040985107, 0.007129669, -0.036132812, 0.018966675, -0.03378296, -0.0015211105, 0.0050582886, -0.015365601, -0.054626465, 0.028717041, 0.048217773, -0.0053482056, -0.045318604, -0.001162529, -0.03111267, -0.0017824173, -0.028274536, -0.019943237, -0.04348755, -0.016693115, 0.015129089, -0.09674072, -0.06311035, -0.043151855, 0.05935669, -0.024291992, 0.046966553, -0.009963989, -0.07727051, -0.011764526, -0.014854431, -0.03793335, 0.035736084, -0.026489258, -0.00045490265, 0.02760315, -0.001241684, 0.022216797, -0.02545166, 0.0014677048, 0.024215698, 0.061767578, -0.047607422, 0.031188965, -0.057373047, -0.0054397583, -6.109476e-05, 0.020004272, 0.027862549, -0.032928467, 0.03753662, 0.008506775, 0.02128601, -0.03353882, 0.015716553, -0.005458832, 0.017181396, -0.033172607, -0.010543823, 0.06512451, -0.013069153, 0.011932373, -0.03439331, 0.013092041, 0.021957397, -0.009521484, -0.084350586, -0.07849121, -0.0039596558, -0.041900635, 0.01725769, -0.0044784546, -0.016906738, 0.072021484, 0.049713135, 0.00015032291, 0.031311035, -0.016571045, -0.0024642944, -0.0015106201, 0.016921997, -0.031311035, 0.0013313293, -0.045654297, 0.0019350052, -0.040771484, 0.033325195, 0.024520874, -0.010414124, -0.0049934387, -0.0067443848, -0.023880005, -0.051452637, -0.019989014, 0.058044434, 0.017684937, -0.0140686035, -0.049743652, -7.045269e-05, -0.043792725, -0.02192688, -0.013175964, -0.018814087, 0.0023593903, 0.014671326, -0.01486969, -0.02848816, 0.007965088, 0.04348755, 0.014953613, 0.011390686, -0.0032787323, -0.06726074, 0.06262207, -0.004043579, -0.015380859, 0.038726807, 0.020401001, 0.02658081, 0.02029419, -0.004386902, -0.07110596, -0.010520935, 0.05847168, -0.00091409683, -0.033447266, 0.00554657, 0.0107803345, -0.02911377, -0.061462402, 0.0034656525, 0.020950317, -0.016082764, 0.008766174, 0.017501831, 0.012908936, 0.047027588, -0.016967773, 0.013252258, 0.024978638, -0.014404297, 0.03933716, -0.012023926, -0.000664711, 0.016433716, 0.0002875328, 0.005355835, -0.017028809, -0.010932922, 0.020111084, 0.030456543, -0.011116028, 0.053985596, -0.052337646, 0.061676025, -0.046691895, -0.044403076, 0.00033044815, 0.021774292, -0.034851074, -0.016906738, 0.009513855, -0.03186035, -0.016342163, 0.00043725967, -0.028717041, -0.0357666, 0.020401001, -0.026657104, -0.021697998, 0.0031394958, 0.009429932, -0.0054473877, -0.010032654, -0.010749817, -0.04650879, 0.020950317, -0.026168823, -0.016021729, -0.0030097961, 0.054229736, 0.013771057, 0.008270264, -0.017654419, -0.04248047, -0.013381958, 0.0011491776, -0.026885986, 0.021331787, 0.007835388, -0.031311035, 0.012191772, -0.0013790131, -0.0038337708, -0.0090789795, -0.006378174, 0.025985718, 0.0078086853, -0.0025157928, -0.009002686, -0.009101868, 0.020477295, -0.020629883, -0.02381897, 0.004798889, 0.107910156, -0.048065186, 0.0047302246, 0.070129395, 0.015838623, 0.03164673, 0.031829834, 0.0093688965, -0.025238037, -0.012672424, 0.0031852722, -0.06414795, -0.022644043, -0.041625977, 0.020874023, -0.008674622, 0.028579712, -0.00674057, 0.056854248, -0.015319824, -0.07220459, -0.010391235, 0.017990112, 0.021438599, 0.0025596619, 0.0041236877, -0.02986145, -0.010284424, -0.04675293, -0.028778076, -0.05117798, -0.05041504, -0.016311646, 0.02645874, 0.04006958, -0.01348114, -0.004837036, -0.029953003, -0.0018596649, 0.04437256, 0.0090789795, -0.054229736, -0.017288208, 0.028381348, 0.052978516, -0.02079773, -0.012397766, -0.010559082, -0.02822876, -0.031188965, 0.01977539, 0.039215088, -0.045837402, 0.025009155, 0.0236969, 0.04385376, 0.011260986, 0.07537842, 0.048217773, 0.01802063, -0.021942139, 0.00749588, 0.024719238, -0.04937744, 0.00040721893, -0.041778564, 0.027236938, 0.015838623, -0.003528595, 0.019866943, -0.033477783, 0.058746338, -0.033203125, -0.024673462, 0.0060043335, -0.027938843, 0.03781128, -0.009788513, 0.0046958923, -0.021697998, -0.033599854, 0.007587433, -0.028076172, -0.053344727, 0.012199402, 0.04058838, 0.017120361, -0.006752014, -0.023284912, -0.010757446, 0.03466797, -0.020599365, -0.027236938, -0.01008606, 0.008140564, -0.042388916, -0.053588867, -0.038726807, -0.0047035217, 0.029968262, -0.021011353, 0.053619385, -0.008628845, 0.010063171, 0.0034503937, 0.03201294, -0.029006958, -0.010360718, 0.010261536, -0.016113281, 0.007785797, -2.5808811e-05, -0.04840088, 0.06213379, -0.007457733, 0.041870117, 0.033050537, -0.053527832, 0.015266418, 0.025970459, -0.032989502, -0.04208374, -0.02545166, 0.0074806213, -0.009284973, -0.015548706, -0.037750244, 0.00730896, 0.013092041, 0.011154175, -0.061157227, 0.04660034, -0.07244873, 0.057128906, 0.016448975, 0.052124023, -0.04486084, -0.0070228577, -0.01687622, -0.0016803741, 0.0065574646, 0.03744507, 0.015380859, -0.028900146, 0.008560181, 0.012229919, 0.035247803, -0.03817749, 0.01991272, -0.01928711, 0.010101318, 0.06378174, 0.0045318604, -0.02229309, 0.020553589, 0.001745224, -0.00283432, 0.019226074, -0.03186035, -0.041625977, -0.00047278404, 0.030975342, -0.024871826, 0.023590088, -0.013618469, -0.038146973, -0.0023975372, -0.0068511963, -0.03756714, -0.042816162, -0.07055664, 0.0034923553, 0.012626648, -0.070739746, 0.018569946, 0.006729126, -0.03479004, -0.005973816, 0.012939453, 0.013534546, -0.049316406, -0.010948181, -0.024887085, -0.009521484, 0.023376465, 0.043914795, -0.007068634, -0.06994629, -0.03564453, 0.026138306, -0.026123047, -0.041137695, -0.024642944, 0.008216858, 0.016647339, -0.0001487732, 0.008636475, 0.03543091, 0.02746582, -0.010360718, -0.002571106, -0.029785156, -0.013679504, 0.026367188, 0.014076233, -0.043640137, -0.02861023, 0.009346008, 0.033325195, 0.001496315, 0.022338867, 0.015541077, -0.12719727, -0.021408081, -0.05291748, 0.051116943, -0.05203247, 0.02079773, 0.001627922, 0.0033073425, -0.025939941, 0.024307251, 0.020370483, 0.06021118, 0.034088135, -0.018997192, 0.045532227, -0.038085938, -0.06060791, -0.07342529, -0.032714844, 0.044830322, 0.01676941, -0.034240723, 0.017059326, 0.0118637085, -0.036590576, 0.016448975, 0.022720337, -0.008796692, 0.038116455, 0.004764557, 0.007499695, 0.009681702, -0.04144287, 0.028198242, -0.021499634, -0.030731201, 0.05303955, -0.01083374, -0.0034217834, 0.013885498, -0.028335571, -0.0121536255, -0.00056934357, 0.0011119843, -0.019927979, -0.035583496, 0.025634766, 0.022567749, 0.01864624, -0.03543091, 0.025863647, 0.0025463104, -0.0362854, 0.004634857, 0.022369385, 0.009757996, -0.013336182, 0.045562744, 0.022445679, 0.029296875, -0.00920105, -0.07055664, -0.052764893, 0.03286743, -0.0042266846, 0.00036883354, -0.01197052, 0.009490967, 0.01838684, 0.021850586, -0.026870728, -0.022735596, 0.0015163422, 0.057891846, -0.0055351257, 0.0061569214]}, "B082MTXG5Z": {"id": "B082MTXG5Z", "original": "Brand: Flame King\nName: Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White\nDescription: \nFeatures: Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories\n", "metadata": {"Name": "Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White", "Brand": "Flame King", "Description": "", "Features": "Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021057129, 0.0003066063, -0.026351929, -0.048706055, -0.006904602, -0.013633728, -0.042266846, -0.0044517517, -0.07324219, 0.010513306, -0.021408081, 0.050689697, -0.029785156, -0.020751953, 0.04888916, -0.047821045, 0.02720642, -0.028030396, 0.0015869141, -0.010726929, 0.009162903, 0.00024986267, 0.019241333, 0.04660034, 0.040771484, -0.05441284, 0.0158844, 0.020812988, 0.029754639, 0.0124435425, 0.03677368, -0.020111084, 0.055419922, -0.043395996, -0.0009407997, -0.0023345947, -0.014160156, -0.021652222, -0.04208374, 0.014961243, -0.008804321, 0.023269653, 0.004245758, -0.034973145, -0.030227661, -0.036590576, -0.0052871704, -0.017852783, 0.0129776, -0.013214111, 0.011650085, 0.00724411, 0.014442444, -0.020736694, -0.004070282, 0.042938232, 0.054656982, -0.043151855, 0.0017185211, -0.02067566, 0.0032043457, 0.055145264, 0.025543213, 0.038330078, -0.067993164, 0.022079468, 0.09362793, -0.030899048, 0.037139893, -0.054779053, -0.030548096, 0.055389404, 0.038879395, 0.038757324, -0.045043945, -0.044555664, 0.030075073, 0.01234436, 0.023132324, -0.0012702942, 0.027694702, -0.008514404, 0.01449585, 0.0050811768, 0.0030899048, 0.026321411, -0.017547607, -0.024810791, -0.00573349, -0.028381348, -0.023956299, 0.019454956, 0.03503418, -0.044525146, -0.07220459, -0.014945984, -0.0519104, -0.07519531, 0.08886719, 0.05090332, -0.0011901855, -0.031463623, 0.03475952, -0.0042800903, 0.026290894, 0.074035645, -0.009086609, -0.04321289, 0.009132385, -0.02861023, 0.015930176, -0.004840851, 0.022781372, -0.016647339, 0.0041160583, 0.046447754, 0.031982422, 0.020446777, 0.011062622, 0.037719727, -0.0050086975, 0.015403748, 0.0066490173, -0.044128418, 0.0126953125, -0.020095825, -0.02998352, -0.015960693, -0.027862549, 0.041809082, -0.04385376, -0.0042037964, 0.04019165, 0.039489746, 0.008049011, -0.024246216, -0.017654419, -0.024047852, 0.001991272, -0.029586792, -0.008094788, 0.004875183, 0.029037476, -0.008056641, -0.07989502, 0.040740967, -0.0008263588, -0.0064430237, -0.010559082, -0.059783936, -0.04437256, -0.04269409, 0.02281189, -0.00217247, 0.017501831, -0.025390625, 0.012794495, -0.016845703, -0.0007944107, -0.01763916, 0.0046653748, -0.038848877, -0.05706787, -0.0075683594, -0.03375244, 0.043762207, 0.03164673, 0.0011425018, 0.019683838, 0.053588867, 0.012214661, 0.006904602, 0.03552246, 0.007545471, -0.014884949, -0.002943039, 0.016830444, 0.075927734, 0.066101074, -0.10845947, -0.08074951, -0.061035156, 0.17163086, -0.07891846, -0.009407043, -0.05834961, 0.02279663, -0.048675537, 0.016464233, -0.0048713684, 0.054107666, 0.0395813, 0.015426636, -0.05697632, -0.0064086914, 0.008003235, -0.019515991, 0.0024051666, -0.018707275, 0.0047912598, 0.010787964, -0.00026750565, 0.022399902, 0.0033836365, 0.017944336, -0.019119263, 0.004219055, 0.00869751, 0.018447876, 0.03805542, -0.0028705597, -0.015129089, -0.009681702, 0.008468628, -0.0023384094, -0.016464233, -0.047058105, 0.023132324, 0.007080078, -0.013000488, 0.023254395, -0.025436401, 0.03186035, 0.012176514, -0.022201538, -0.013404846, -0.015914917, 0.006591797, 0.005214691, 0.00023663044, 0.04309082, 0.00497818, 0.07739258, 0.061645508, -0.017044067, 0.019119263, 0.018997192, 0.0044517517, -0.021575928, 0.014930725, -0.010688782, -0.01675415, -0.023010254, 0.07183838, -0.028793335, -0.030075073, 0.0036792755, 0.05078125, -0.013679504, -0.0184021, 0.05810547, -0.028015137, 0.01826477, 0.005569458, -0.027832031, 0.0146484375, -0.008522034, 0.024230957, -0.057861328, 0.017120361, -0.0096206665, 0.030303955, 0.02973938, 0.004283905, 0.0597229, 0.011222839, 0.054473877, 0.037506104, -0.024154663, 0.023880005, 0.0027103424, -0.010810852, 0.011314392, 0.030960083, -0.04220581, 0.015487671, -0.0048103333, 0.016830444, -0.04107666, -0.0070610046, -0.0037765503, -0.042266846, 0.05328369, 0.01235199, 0.049194336, 0.026901245, 0.059020996, -0.0044517517, -0.027145386, -0.018463135, 0.0008249283, 0.029449463, 0.005744934, -0.013000488, 0.039245605, -0.007396698, 0.022567749, -0.0018081665, 0.025772095, -0.022216797, 0.034423828, 0.0574646, -0.038085938, 0.04751587, -0.0047836304, -0.028244019, -0.015792847, 0.009689331, 5.9902668e-05, -0.04626465, 0.023147583, 0.046844482, 0.029693604, -0.023590088, 0.030258179, 0.0149002075, -0.013008118, 0.041137695, 0.011123657, 0.062469482, -0.017562866, 0.014198303, 0.032989502, 0.028656006, 0.037475586, -0.042236328, 0.04095459, 0.013008118, -0.020584106, 0.029571533, -0.0071640015, -0.0005917549, -0.008018494, 0.01574707, -0.0057640076, -0.01146698, -0.018325806, 0.044128418, -0.026229858, -0.059265137, -0.039886475, 0.008880615, 0.012680054, -0.0079193115, -0.008224487, -0.047576904, 0.061950684, 0.0016231537, -0.013084412, 0.03756714, -0.001824379, -0.00047826767, -0.004436493, -0.00029301643, 0.027023315, -0.026641846, -0.01676941, -0.0012636185, 0.01361084, -0.05328369, 1.3530254e-05, -0.023025513, -0.056427002, -0.034179688, 0.029571533, 0.0042152405, -0.022964478, -0.03164673, 0.029403687, 0.0058021545, -0.0009560585, 0.034942627, -0.07397461, -0.011734009, 0.019165039, -0.017501831, 0.039215088, -0.037017822, 0.029159546, 0.016296387, 0.0087509155, 0.02911377, -0.03918457, 0.025009155, 0.033477783, 0.022460938, 0.03074646, 0.046295166, -0.01663208, -0.02355957, -0.046905518, -0.012718201, -0.0070762634, -0.004638672, -0.032958984, -0.027633667, 0.012786865, 0.020706177, -0.014846802, 0.0026073456, -0.062561035, 0.025283813, -0.008369446, -0.020233154, -0.0025367737, 0.0103302, -0.037994385, -0.040863037, 0.010910034, 0.027862549, -0.00017523766, 0.023422241, 0.014564514, 0.011917114, 0.001912117, -0.021408081, -0.049835205, 0.0047912598, -0.046813965, 0.03930664, 0.058624268, -0.06085205, 0.010101318, 0.024215698, -0.027313232, -0.012001038, -0.0050849915, 0.03314209, -0.007068634, 0.021591187, 0.0054779053, -0.025421143, -0.017669678, -0.038726807, -0.049224854, -0.007987976, 0.001909256, 0.024536133, 0.0029029846, -0.0121154785, -0.034332275, -0.017745972, -0.024658203, 0.020477295, -0.02734375, 0.004573822, -0.022705078, -0.03778076, -0.005718231, -0.0076904297, -0.011024475, 0.023849487, -0.0154953, 0.009918213, -0.02053833, 0.0012569427, 0.02420044, 0.046051025, 0.011276245, 0.0018424988, 0.007926941, -0.017089844, -0.0030059814, 0.017852783, 0.0005578995, -0.017623901, 0.035736084, -0.014625549, -0.021362305, 0.017089844, -0.031799316, 0.0008940697, 0.04901123, -0.011039734, 0.00667572, 0.00737381, 0.029815674, -0.009979248, -0.009757996, -0.02558899, -0.050567627, 0.03262329, -0.07885742, 0.027664185, 0.037872314, -0.018157959, 0.045288086, -0.0016298294, -0.03201294, 0.040802002, 0.017501831, 0.027938843, 0.027770996, -0.011833191, -0.022079468, -0.002128601, 0.01083374, -0.032836914, -0.014892578, -0.0635376, -0.009735107, 0.009010315, 0.01637268, 0.019500732, -0.03427124, -0.03353882, 0.006000519, -0.0021533966, 0.019683838, 0.010574341, -0.0021018982, -0.019424438, 0.008590698, 0.0026245117, -0.01890564, -0.04937744, 0.03515625, -0.005466461, -0.012008667, -0.0021018982, -0.01083374, -0.021560669, 0.044830322, 0.03781128, -0.040496826, 0.015899658, 0.004119873, -0.008911133, -0.015258789, -0.006084442, 0.023498535, 0.020324707, -0.007381439, -0.01399231, 0.017150879, -0.0063438416, 0.00023937225, 0.008476257, -0.033721924, -0.054992676, -0.0020446777, 0.018447876, 0.01637268, -0.035980225, -0.023162842, 0.011131287, -0.020431519, 0.007156372, -0.005039215, -0.023788452, 0.0042877197, 0.01651001, -0.06365967, -0.0357666, -0.042541504, 0.039398193, -0.03866577, 0.026123047, -0.0001758337, -0.020401001, -0.0061950684, 0.019119263, -0.044647217, 0.009155273, -0.04748535, 0.025741577, -0.036224365, -0.0463562, 0.07678223, -0.06591797, -0.033081055, -0.04220581, 0.023666382, 0.0335083, 0.02796936, 0.024749756, -0.029541016, -0.033813477, -0.009094238, 0.013656616, -0.025604248, 0.06854248, 0.025161743, -0.029556274, -0.057617188, 0.0038890839, 0.003665924, -0.044281006, -0.08093262, -0.05758667, 0.032470703, 0.046569824, 0.016342163, -0.0047950745, -0.004837036, 0.007331848, -0.0004003048, -0.06915283, -0.043029785, -0.008552551, -0.034118652, 0.00491333, 0.0026283264, -0.0287323, -0.00982666, 0.03439331, 0.006866455, -0.04031372, 0.008293152, 0.021881104, -0.017242432, 0.008811951, -0.06011963, 0.0102005005, -0.03286743, 0.004875183, -0.056488037, 0.036621094, 0.051513672, -0.010154724, 0.007865906, 0.032043457, -0.009933472, -0.0127334595, -0.05834961, 0.0011463165, 0.084472656, -0.0287323, -0.050476074, -0.0029258728, -0.05117798, -0.007835388, -0.001499176, -0.045898438, 0.0065345764, 0.04248047, -0.0016908646, -0.01033783, -0.029525757, -0.013420105, 0.0038871765, 0.021743774, 0.011695862, -0.012001038, -0.010597229, -0.018844604, -0.011993408, -0.0046424866, -0.025634766, -0.02708435, 0.018539429, 0.007221222, -0.025146484, 0.037506104, 0.021774292, -0.001663208, -0.011268616, 0.05593872, -0.02861023, 0.022247314, -0.0061035156, 0.023788452, 0.010032654, -0.0003118515, -0.0028743744, -0.024154663, 0.027130127, -0.0028038025, -0.011940002, -0.005279541, -0.015960693, -0.040985107, -0.015411377, 0.017623901, 0.014785767, -0.049987793, 0.08526611, 0.00092458725, -0.010215759, -0.06762695, 0.017181396, -0.04864502, -0.0703125, -0.013122559, 0.003982544, -0.009597778, -0.003156662, 0.054260254, 0.016326904, -0.038024902, 0.0066223145, 0.04144287, -0.016738892, -0.018539429, 0.013931274, -0.005088806, -0.038085938, 0.0758667, 0.008811951, 0.032806396, 0.039611816, 0.026153564, -0.052734375, -0.020584106, -0.02331543, 0.008842468, 0.014160156, -0.014953613, 0.022644043, 0.032836914, -0.013420105, -0.032562256, 0.006111145, 0.0018901825, -0.040374756, -0.031066895, -8.767843e-05, 0.03366089, 0.024902344, 0.04067993, -0.052825928, -0.03564453, -0.015602112, 0.010719299, 0.015060425, -0.024398804, -0.0637207, -0.023468018, -0.008728027, -0.018920898, -0.016799927, 0.0037593842, 0.025100708, -0.030075073, -0.016540527, -0.021133423, 0.033843994, 0.00472641, -0.01966858, 0.085998535, 0.026184082, 0.01158905, 0.029434204, -0.016601562, -0.03262329, 0.027450562, 0.0059127808, -0.030899048, -0.037200928, -0.027160645, -0.007789612, -0.009544373, -0.002937317, -0.0074806213, 0.028518677, -0.00077295303, -0.0034561157, -0.0048980713, -0.012207031, -0.017456055, -0.043304443, 0.022872925, 0.0033893585, -0.00737381, 0.011062622, -0.021484375, -0.061401367, 0.0088272095, 0.0019025803, 0.023590088, 0.008255005, 0.028182983, -0.009284973, -0.0063552856, -0.028045654, 0.023864746, 0.009262085, -0.006134033, 0.017364502, 0.011665344, -0.027526855, 0.028182983, -0.063964844, 0.010116577, -0.010505676, 0.011123657, 0.044067383, 0.004562378, -0.049468994, -0.011955261, 0.055877686, 0.03640747, 0.0070762634, -0.008224487, 0.014579773, -0.01209259, -0.024993896, -0.0060043335, -0.0046577454, -0.020339966, 0.00077724457, -0.033050537, -0.04550171, -0.028305054, -0.028686523, 0.027877808, -0.0073509216, 0.00065517426, -0.0008158684, 0.018005371, 0.00047039986, -0.008430481, 0.03062439, -0.038482666, -0.005317688, -0.0054244995, 0.043884277, -0.002855301, 0.0072364807, -0.039611816, 0.00024318695, 0.04824829, 0.027770996, -0.015777588, -0.013900757, 0.008277893, 0.037261963, -0.036499023, -0.00944519, -0.0385437, 0.016998291, -0.026992798, -0.05050659, -0.011489868, 0.0020046234, 0.017929077, 0.0007901192, -0.011558533, 0.01247406, 0.025558472, -0.03552246, 0.005378723, -0.027038574, -0.03894043, -0.009635925, 0.0030555725, 0.01033783, 0.022994995, -0.027648926, 0.02468872, -0.0030899048, -0.0013771057, 0.009376526, -0.060546875, 0.027069092, 0.038146973, -0.01802063, -0.012321472, -0.03527832, 0.030975342, 0.011123657, -0.0028934479, 0.052124023, 0.0068206787, 0.047851562, -0.00035429, -0.044525146, 0.011558533, -0.07501221, 0.0047798157, 0.011764526, 0.05215454, -0.095581055, -0.03111267, -0.0020313263, -0.009666443, -0.016677856, 0.058258057, 0.03503418, 0.0017404556, -0.0071754456, 0.01058197, 0.05517578, 0.017700195, 0.03161621, -0.03250122, 0.0009088516, -0.0138549805, 0.001408577, 0.009513855, -0.000110566616, -0.02519226, 0.01777649, -0.01675415, 0.009773254, -0.017074585, 0.0010232925, -0.026885986, -0.024139404, 0.00919342, -0.03012085, 0.00021898746, 0.02418518, -0.03540039, 0.0013914108, -0.025421143, -0.028747559, -0.04269409, -0.06726074, -0.042877197, 0.07476807, -0.036376953, -0.028762817, -0.008140564, 0.008224487, 0.01689148, -0.08331299, -0.029174805, -0.03189087, 0.0054626465, 0.008018494, 0.0069885254, 0.018676758, -0.05795288, -0.08569336, 0.031982422, -0.08215332, 0.0070762634, -0.050842285, 0.022338867, 0.0014371872, -0.008956909, 0.056152344, -0.014602661, 0.033447266, 0.0036201477, 0.035491943, -0.086242676, -0.014373779, 0.051818848, 0.011856079, -0.01725769, -0.066711426, 0.009536743, 0.008796692, -0.017868042, 0.014526367, 0.022842407, -0.04876709, 0.009597778, -0.015068054, -0.035827637, -0.00831604, -0.011077881, 0.031982422, 0.014350891, -0.029815674, 0.0074043274, 0.029769897, 0.0016937256, 0.022003174, -0.0054244995, 0.037384033, -0.007118225, -0.060333252, -0.028884888, -0.018035889, 0.019119263, 0.034210205, -0.03265381, -0.01574707, -0.014099121, -0.011550903, -0.004119873, 0.0075645447, -0.0119018555, -0.011062622, 0.0016460419, -0.0067443848, -0.017181396, -0.0042533875, -0.04763794, -0.06738281, 0.041290283, 0.06286621, -0.027450562, -0.009986877, -0.029571533, -0.029678345, -0.030151367, -0.046447754, -0.024978638, -0.025009155, -0.041137695, -0.003370285, 0.03543091, -0.016983032, 0.0061416626, -0.020324707, 0.0029201508, -0.007980347, 0.016784668, 0.028442383, 0.008506775, -0.03579712, 0.06512451, 0.013648987, 0.013748169, -0.004386902, -0.1328125, -0.050811768, 0.031829834, -0.011405945, -0.0031986237, 0.00504303, -0.017974854, 0.018615723, 0.023529053, -0.004940033, 0.0030593872, 0.026168823, 0.060913086, -0.014030457, 0.024597168]}, "B073SMX1TC": {"id": "B073SMX1TC", "original": "Brand: Outland Living\nName: Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21\u201d x W 21\u201d x H 9.5\u201d with total output of 58,000 BTU/HR.\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.\n", "metadata": {"Name": "Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black", "Brand": "Outland Living", "Description": "", "Features": "\u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21\u201d x W 21\u201d x H 9.5\u201d with total output of 58,000 BTU/HR.\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.039855957, 0.00434494, -0.06817627, -0.04119873, 0.006095886, -0.0056610107, -0.011917114, 0.025436401, -0.044525146, -0.011566162, -0.061767578, 0.046417236, -0.051757812, -0.020111084, 0.052459717, -0.07397461, 0.004447937, 0.006969452, -0.040161133, -0.06173706, -0.00065612793, -0.05517578, -0.040283203, 0.1270752, 0.016677856, -0.035827637, -0.0113220215, 0.00541687, 0.0032672882, -0.00073099136, 0.024719238, 0.019683838, 0.03942871, -0.0026779175, -0.034576416, -0.055664062, -0.028549194, -0.0018548965, -0.03668213, 0.028030396, 0.015106201, -0.0070533752, -0.03982544, -0.0041770935, -0.06713867, -0.0030574799, -0.008888245, 0.02229309, -0.01525116, 0.019104004, -0.009147644, 0.01272583, -0.004940033, 0.00944519, -0.0025615692, -0.022949219, 0.0051879883, -0.0075569153, 0.014625549, -0.0030212402, -0.014930725, 0.0003695488, 0.04043579, 0.003698349, -0.050720215, 0.008628845, 0.08703613, -0.022521973, -0.027053833, -0.07397461, 0.015319824, 0.030822754, 0.027282715, 0.008674622, -0.0259552, -0.021057129, 0.030975342, 0.018600464, 0.016052246, -0.01109314, -0.03378296, -0.0020713806, -0.036132812, -0.038269043, -0.005256653, -0.028259277, -0.028656006, 0.00045275688, -0.03036499, -0.028945923, -0.017959595, -0.034820557, -0.019989014, 0.008407593, 0.0052757263, -0.04208374, -0.052337646, -0.053100586, 0.03665161, 0.03125, -0.0066223145, -0.022903442, 0.024932861, -0.022872925, 0.00630188, 0.04711914, 0.0003247261, -0.0055007935, 0.0058555603, -0.000113248825, -0.015853882, -0.021118164, 0.0017204285, 0.0029964447, -0.038085938, -0.01285553, -0.02520752, 0.010375977, 0.0055007935, 0.023269653, -0.024719238, -0.025024414, 0.026885986, 0.040618896, 0.034698486, 0.021499634, -0.01789856, 0.009529114, -0.03543091, 0.033996582, -0.020751953, 0.01977539, 0.0026111603, -0.019821167, -0.046966553, -0.018447876, 0.03817749, 0.00844574, 0.004306793, 0.0052757263, 0.005558014, -0.0053520203, 0.011795044, 0.0015077591, -0.018096924, 0.025482178, 0.016281128, 0.016113281, 0.006401062, -0.05593872, 0.00712204, -0.013031006, 0.048950195, 0.011489868, -0.024093628, -0.058502197, 0.016342163, -0.04937744, 0.0065727234, -0.0803833, 0.019577026, -0.0014295578, -0.027633667, 0.000313282, -0.036712646, -0.0041389465, 0.013923645, -0.012252808, 0.018066406, 0.04623413, 0.019927979, 0.050811768, 0.023147583, -0.0035991669, -0.002035141, -0.03439331, 0.0067100525, 0.08227539, 0.0552063, -0.12176514, -0.06536865, -0.048736572, 0.13171387, -0.03604126, 0.012367249, -0.006500244, 0.0044898987, -0.036834717, -0.011062622, -0.0024337769, -0.010498047, 0.044830322, -0.013343811, -0.024383545, 0.009437561, 0.027328491, -0.05834961, 0.012542725, -0.02166748, 0.015350342, 0.028671265, 0.045288086, -0.021514893, -0.0039901733, 0.01977539, -0.0072631836, 0.021972656, 0.01826477, 0.036010742, 0.049713135, -0.0078048706, 0.020584106, -0.007522583, -0.076049805, -0.019378662, 0.00680542, -0.011047363, 0.04034424, 0.008354187, 0.017822266, 0.04284668, -0.015213013, 0.033233643, 0.009979248, 0.019989014, -0.030853271, -0.01197052, -0.03253174, 0.027832031, -0.011100769, 0.0039253235, 0.059783936, 0.0140686035, 0.010818481, -0.037475586, 0.026397705, 0.032287598, 0.048858643, -0.027572632, 0.0034179688, 0.027954102, 0.0071640015, -0.006565094, 0.020263672, 0.025817871, -0.022583008, 0.01725769, -0.0052261353, -0.02470398, -0.00094127655, 0.024765015, -0.00579834, 0.034057617, -0.006591797, -0.011520386, 0.017211914, -0.021362305, -0.008323669, 0.0052871704, -0.004776001, -0.0053863525, 0.056671143, 0.015052795, 0.013122559, 0.018417358, -0.026168823, 0.040527344, 0.037872314, -0.0013904572, -0.028427124, 0.020721436, 0.016189575, -0.0062446594, -0.024307251, 0.029434204, -0.002937317, -0.02923584, 0.010612488, 0.0008597374, -0.01928711, -0.017959595, -0.010398865, 0.0029697418, -0.0063934326, 0.012435913, 0.0084991455, 0.026519775, -0.026138306, -0.01977539, -0.0021266937, 0.0008368492, 0.034851074, -0.0345459, 0.053741455, -0.035247803, -0.009140015, -0.051574707, 0.01675415, 0.028656006, -0.048858643, -0.033111572, 0.047332764, -0.060302734, 0.06500244, -0.007911682, 0.035064697, 0.0036773682, 0.010597229, 0.009048462, -0.022323608, 0.008155823, -0.013214111, 0.029266357, -0.042877197, 0.080322266, 0.04562378, 0.000685215, 0.054870605, 0.056915283, 0.058776855, 0.007865906, 0.029388428, 0.012489319, 0.028289795, 0.019241333, -0.03930664, 0.003332138, -0.0021076202, 0.012672424, 0.011108398, 0.019134521, 0.019882202, 0.032440186, 0.006061554, -0.006916046, -0.043792725, 0.012298584, 0.019592285, 0.008529663, -0.03756714, 0.01360321, 0.048065186, -0.0017757416, 0.026260376, -0.03591919, 0.001209259, -0.015182495, 0.011177063, -0.032226562, 0.010620117, 0.0011606216, -0.0138168335, 0.0037326813, 0.008659363, -0.00065135956, -0.020477295, -0.009819031, -0.019592285, -0.03353882, -0.078552246, -0.0058670044, -0.030822754, -0.058380127, -0.021606445, 0.039367676, 0.008125305, -0.05001831, 0.00054836273, -0.0021266937, 0.026519775, 0.010482788, 0.026977539, -0.019180298, -0.037963867, -0.04525757, -0.032226562, 0.032470703, -0.018447876, -0.0019216537, 0.00774765, 0.027999878, 0.036224365, -0.012184143, 0.03289795, 0.016540527, 0.033599854, 0.05532837, 0.051330566, 0.028198242, -0.02545166, 0.023223877, 0.034942627, -0.0715332, 0.0065956116, 0.017288208, 0.00043058395, -0.016906738, -0.045959473, -0.084106445, -0.02229309, -0.08850098, 0.025497437, 0.013290405, -0.025314331, -0.013381958, -0.06750488, -0.030792236, -0.04611206, 0.021392822, 0.014053345, -0.0059509277, -0.00040531158, 0.00036764145, -0.013946533, -0.021347046, -0.0009918213, 0.012802124, 0.006198883, -0.061553955, 0.0017585754, 0.036590576, -0.011642456, 0.021575928, 0.020187378, -0.0690918, -0.04650879, 0.013946533, 0.041229248, -1.4066696e-05, 0.04058838, -0.010482788, -0.0058784485, -0.025909424, -0.014595032, -0.010314941, 0.017044067, 0.019699097, 5.2034855e-05, 0.038726807, -0.010177612, 0.025283813, -0.027404785, -0.012649536, 0.026687622, -0.016189575, 0.0028438568, -0.021759033, 0.0029659271, 0.0093688965, -0.0067253113, -0.0056533813, 0.0042419434, 0.029388428, 0.004623413, -0.015129089, -0.007331848, -0.01158905, 0.046081543, 0.030838013, 0.0046691895, 0.0054244995, -0.04055786, 0.05847168, 0.018966675, 0.011817932, -0.019088745, 0.053466797, 0.039215088, 0.018341064, -0.0067253113, 0.027618408, -0.009918213, -0.04348755, -0.04333496, 0.024902344, -0.01727295, 0.026824951, -0.0060920715, 0.018417358, -0.03604126, -0.06591797, 0.011009216, -0.08258057, 0.08404541, 0.03253174, -0.036346436, 0.08502197, 0.05532837, -0.033081055, 0.050811768, 0.007904053, 0.024795532, -0.013938904, 0.0597229, -0.032714844, 0.030090332, 0.0043182373, -0.03665161, -0.010276794, -0.012893677, -0.01171875, 0.0011692047, -0.0065460205, 0.000705719, -0.036224365, -0.012535095, 0.005531311, -0.0018424988, -0.009651184, -0.026519775, 0.0023002625, -0.038116455, 0.008666992, 0.036621094, -0.029769897, -0.03475952, 0.004600525, -0.009361267, -0.03564453, 0.01600647, 0.02154541, 0.02281189, 0.020904541, 0.055603027, -0.045898438, 0.024627686, -0.03173828, -0.009880066, -0.033966064, 0.02809143, 0.0022830963, -0.0030078888, -0.0008916855, -0.045135498, 0.061462402, 0.015167236, -0.0056877136, 0.0032615662, -0.01991272, -0.046295166, -0.00059223175, 0.015655518, 0.011741638, -0.030776978, -0.0032157898, -0.032104492, -0.023727417, -0.018966675, 0.008361816, -0.047454834, -0.012825012, 0.021133423, -0.09515381, -0.05178833, -0.027526855, 0.002298355, -0.01638794, 0.031463623, -0.029144287, -0.0262146, 0.009147644, 0.037322998, -0.0385437, -0.01902771, -0.00881958, 0.007484436, 0.014434814, -0.021392822, 0.043273926, -0.034942627, -0.03463745, -0.0066337585, 0.055847168, -0.00089645386, 0.044067383, -0.029846191, -0.013290405, -0.00299263, 0.027542114, 0.035705566, -0.027038574, -0.003917694, -0.010673523, -0.064331055, -0.042785645, 0.02078247, 0.02468872, -0.01424408, -0.029403687, -0.018951416, 0.0054779053, 0.011016846, 0.02230835, 0.024398804, -0.012374878, -0.0037555695, 0.035125732, -0.08148193, -0.031066895, -0.011314392, -0.04473877, -0.004940033, 0.0057525635, -0.022537231, 0.076660156, 0.03326416, -0.010902405, -0.0057411194, -0.010223389, 0.029251099, -0.005821228, 0.045684814, -0.025299072, -0.01272583, -0.0050621033, 0.0129852295, -0.06036377, 0.06829834, 0.015312195, -0.03439331, -0.01285553, -0.0011959076, -0.035614014, -0.059387207, 0.013580322, -0.049926758, 0.031051636, -0.0034561157, -0.016235352, -0.035369873, -0.031188965, -0.011070251, 0.004486084, -0.00063991547, 0.0043640137, -0.017868042, 0.0013685226, -0.016281128, 0.00970459, 0.019241333, 0.028686523, 0.009407043, 0.0016450882, -0.040740967, 0.025772095, -0.016571045, -0.008552551, 0.015655518, -0.027633667, -0.024871826, 0.011154175, 0.025726318, -0.03164673, 0.058898926, 0.0368042, 0.050872803, -0.0041618347, -0.0027828217, 0.038757324, -0.021194458, -0.036071777, 0.02583313, -0.011154175, -0.0259552, -0.018539429, -0.007659912, -0.007472992, 0.040649414, -0.0440979, 0.005645752, 0.031463623, -0.06689453, 0.042755127, 0.022369385, 0.0016155243, -0.052093506, 0.05883789, -0.011108398, -0.0390625, -0.041503906, 0.026443481, 0.040802002, 0.040283203, -0.054992676, -0.00919342, 0.042785645, -0.02760315, -0.0013418198, 0.03753662, 0.044921875, -0.047821045, -0.04144287, 0.055755615, -0.029449463, -0.01966858, 0.04284668, -0.00018119812, -0.036499023, -0.011238098, -0.04534912, 0.02633667, -0.0021343231, -0.012817383, -0.0152282715, 0.016220093, -0.04046631, -0.026733398, -0.06744385, 0.012496948, 0.004119873, -0.04840088, 0.05493164, 0.028289795, 0.020187378, -0.09210205, -0.06555176, -0.024505615, 0.032836914, 0.0038967133, 0.07067871, -0.01499939, 0.001206398, 0.0068511963, -0.009132385, 0.027786255, -0.027572632, -0.04144287, -0.006515503, 0.04525757, 0.05633545, 0.017456055, -0.014427185, 0.05783081, -0.02178955, -0.025497437, -0.020309448, 0.031555176, -0.035614014, -0.05670166, 0.08630371, 0.032592773, 0.009178162, 0.0073127747, -0.004852295, -0.026916504, -0.0031585693, -0.013710022, -0.024856567, 0.0016613007, -0.03378296, 0.012611389, 0.01777649, 0.006679535, -0.027618408, 0.05795288, -0.00071430206, -0.022537231, -0.028030396, -0.023666382, 0.006313324, -0.027618408, 0.016174316, -0.017532349, 0.0079574585, -0.031433105, 0.015327454, -0.0069389343, 0.0042152405, 0.00207901, 0.0008945465, 0.026504517, -0.022460938, 0.0025596619, 0.016601562, 0.027679443, 0.024124146, 0.010887146, -0.039489746, -0.02545166, 0.0067443848, 0.019332886, -0.01890564, -0.022491455, 0.009101868, 0.0033187866, -0.0082473755, 0.030380249, -0.0024662018, -0.019256592, -0.012283325, 0.041534424, 0.023971558, -0.0066184998, 0.0140686035, 0.009841919, -0.009140015, -0.021652222, -0.00605011, 0.05053711, -0.031280518, -0.00712204, -0.047027588, 0.03062439, 0.05218506, -0.0014295578, 0.03012085, -0.031921387, 0.070495605, -0.026657104, -0.013755798, 0.0059394836, -0.048706055, 0.017654419, 0.0021038055, 0.03366089, -0.0073928833, 0.016983032, -0.0096206665, 0.0012340546, 0.021011353, 0.026229858, 0.04660034, 0.016326904, 0.0079422, -0.045959473, 0.02796936, -0.020309448, -0.043304443, -0.010002136, -0.0143966675, 0.011764526, -0.010284424, -0.01928711, -0.020858765, 0.009643555, 0.051635742, -0.008270264, 0.0579834, -0.022155762, 0.011993408, 0.027740479, 0.023422241, -0.02128601, -0.025222778, 0.02128601, -0.016998291, 0.0024471283, -0.0022068024, 0.03640747, 0.030151367, 0.011955261, -0.019699097, 0.020019531, -0.049438477, 0.0024986267, 0.009864807, 0.0038375854, -0.035858154, 0.012275696, 0.018951416, 0.0037212372, 0.0070533752, -0.033172607, -0.032806396, 0.021850586, -0.008338928, -0.016906738, 0.021972656, -0.037475586, 0.0070495605, 0.025238037, 0.027801514, -0.027359009, 0.017578125, -0.0014762878, 0.012062073, 0.013694763, 0.051727295, 0.022064209, 0.010246277, -0.027130127, -0.04083252, 0.018203735, -0.04727173, 0.013374329, -0.04425049, 0.03173828, 0.029251099, -0.053833008, -0.009681702, -0.00617218, -0.012763977, 0.028121948, 0.0064926147, 0.012893677, -0.008056641, -0.02571106, 0.046051025, -0.0043754578, -0.020736694, -0.02255249, -0.022079468, 0.04849243, -0.0006685257, -0.004623413, -0.012138367, -0.00894928, -0.005077362, -0.015823364, -0.036132812, 0.01335144, -0.017166138, -0.044128418, -0.022979736, 0.021881104, 0.0038814545, -0.030334473, -0.025482178, 0.016586304, 0.023895264, 0.016860962, 0.04522705, 0.0044937134, -0.085754395, -0.048461914, 0.033966064, -0.0049934387, -0.026245117, 0.015777588, 0.0019607544, 0.026138306, 0.018722534, 0.03778076, 0.046875, 0.037902832, -0.0045928955, 0.009689331, -0.06329346, -0.022003174, 0.06463623, 0.00617218, -0.010498047, -0.057250977, 0.01966858, 0.011978149, 0.027572632, 0.0041542053, 0.019989014, -0.08746338, -0.019058228, -0.049926758, 0.007686615, 0.023086548, -0.04522705, 0.07348633, 0.0057907104, -0.024093628, 0.038116455, 0.049682617, 0.018920898, -0.010894775, -0.048553467, 0.033172607, -0.015403748, -0.013069153, 0.009880066, -0.022003174, -0.0074920654, 0.00047445297, -0.066467285, 1.1444092e-05, 0.0058631897, -0.03289795, 0.012924194, 0.037139893, 0.0077400208, 0.0362854, -0.03982544, -0.017059326, -0.0023536682, -0.032806396, 0.02041626, -0.0006213188, 0.037963867, -0.036987305, 0.011169434, -0.017715454, -0.031021118, -0.017059326, 0.03213501, -0.026016235, -0.011268616, -0.019302368, -0.074645996, 0.0029335022, 0.05722046, -0.022155762, 0.038482666, -0.039764404, -0.04058838, -0.03463745, -0.017791748, 0.013023376, -0.039642334, -0.05078125, 0.040039062, 0.01675415, 0.05883789, -0.026367188, -0.06048584, -0.064208984, 0.02810669, -0.03503418, 0.005012512, 0.026428223, -0.007335663, 0.002948761, 0.053741455, -0.03869629, -0.027450562, -0.0010261536, 0.06286621, 0.0317688, 0.009338379]}, "B079YB3FTK": {"id": "B079YB3FTK", "original": "Brand: Flame King\nName: Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack)\nDescription: Larger 30 pound size for added use time on the job or at home.\nFeatures: High grade steel welded construction\nPremium OPD valve assembly\nX-ray and hydrostatic tested\nPowder coated for long lasting exterior protection\n", "metadata": {"Name": "Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack)", "Brand": "Flame King", "Description": "Larger 30 pound size for added use time on the job or at home.", "Features": "High grade steel welded construction\nPremium OPD valve assembly\nX-ray and hydrostatic tested\nPowder coated for long lasting exterior protection", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0077056885, -0.007888794, -0.057617188, -0.030059814, -0.007534027, -0.023406982, -0.038635254, 0.018127441, -0.08782959, -0.0074501038, -0.012649536, 0.060913086, -0.028533936, -0.027923584, 0.08404541, -0.029464722, 0.045654297, 0.005470276, 0.027038574, -0.013511658, 0.0066566467, 0.025909424, -0.007904053, 0.10290527, 0.03173828, -0.063964844, 0.0491333, 0.019866943, 0.019973755, 0.0055770874, 0.016693115, -0.0053520203, 0.07092285, -0.045776367, -0.04562378, -0.023269653, -0.037078857, -0.021240234, -0.07171631, 0.006996155, 0.005466461, 0.0042037964, 0.030807495, -0.040740967, 0.007472992, -0.018127441, -0.0035991669, -0.05218506, 0.009757996, 0.022262573, 0.013793945, 0.023834229, 0.012786865, 0.007534027, -0.00057315826, 0.03274536, 0.015945435, -0.00554657, 0.016662598, -0.02557373, -0.003540039, 0.02331543, 0.037322998, 0.024307251, -0.05532837, 0.018463135, 0.06347656, -0.036132812, 0.044921875, -0.047210693, -0.032440186, 0.0335083, 0.01512146, 0.04336548, -0.049987793, -0.028427124, 0.031829834, 0.011787415, 0.029815674, 0.0034046173, -0.012832642, -0.00969696, 0.014442444, -0.0064926147, -0.013328552, 0.0178833, -0.02809143, -0.015312195, 0.008682251, -0.010597229, -0.00111866, 0.026565552, 0.021469116, 0.00011438131, -0.033691406, -0.038116455, -0.041015625, -0.075805664, 0.0597229, 0.03286743, 0.03253174, -0.045806885, 0.032287598, -0.0067634583, -0.00014293194, 0.09185791, 0.0037727356, -0.017822266, -0.00605011, -0.01739502, 0.013801575, -0.04626465, 0.042541504, -0.024093628, -0.015808105, 0.0020179749, 0.013618469, 0.022354126, 0.02545166, 0.01499939, 0.0052452087, 0.019973755, 0.0119018555, -0.038269043, 0.009231567, -0.011695862, -0.042663574, -0.005355835, 0.006832123, 0.009788513, -0.01625061, -0.0010557175, -0.0053863525, 0.047943115, 0.012466431, -0.00017046928, -0.002620697, 0.0058174133, 0.0154953, -0.016433716, -0.022964478, 0.0061149597, 0.028503418, -0.002840042, -0.05053711, 0.02722168, -0.0064048767, -0.006084442, -0.0040512085, -0.018157959, -0.036834717, -0.053344727, 0.005180359, 0.009231567, 0.0048980713, -0.022964478, -0.0149383545, -0.0026302338, 0.024490356, -0.022506714, 0.023406982, -0.03463745, -0.060455322, -0.03250122, -0.06842041, 0.03765869, 0.021148682, 0.00015377998, 0.018722534, 0.06286621, 0.003545761, 0.023132324, -0.00090789795, 0.03152466, 0.00592041, -0.014335632, 0.020553589, 0.08294678, 0.05291748, -0.1418457, -0.09350586, -0.07977295, 0.1550293, -0.07293701, 0.0035762787, -0.04675293, 0.011802673, -0.08312988, 0.01966858, -0.0096206665, 0.08093262, 0.04067993, -0.0039596558, -0.051361084, -0.04537964, 0.0013818741, -0.009849548, 0.024291992, -0.026260376, 0.02482605, 0.040405273, -0.006587982, 0.0289917, 0.019927979, 0.040740967, -0.0112838745, 0.01727295, -0.013259888, 0.045654297, 0.07171631, -0.007911682, -0.012161255, -0.010002136, 0.02571106, 0.008506775, -0.019897461, -0.056030273, -0.010108948, 0.02192688, -0.021835327, 0.05078125, 0.013168335, 0.030715942, -0.017181396, 0.0033664703, -0.02619934, -0.0104904175, 0.00077819824, 0.022705078, 0.002439499, 0.030654907, 0.018707275, 0.081970215, 0.05709839, -0.025482178, 0.022399902, 0.03805542, 0.008758545, -0.033325195, 0.02619934, 0.010368347, -0.009895325, 0.011703491, 0.08770752, -0.01676941, -0.022872925, 0.013137817, 0.03302002, -0.016525269, -0.0040016174, 0.06756592, -0.016281128, 0.0006341934, -0.015060425, -0.009689331, -0.0027885437, -0.007686615, 0.012199402, -0.047210693, 0.018234253, -0.008705139, 0.023590088, 0.02218628, 0.00605011, 0.09320068, -0.027236938, 0.061462402, 0.027191162, -0.032989502, -0.009231567, 0.027420044, 0.036865234, -0.0069389343, 0.025238037, -0.0023651123, -0.030944824, -0.024261475, 0.014305115, -0.03149414, -0.0058250427, -0.022583008, -0.0758667, 0.024368286, 0.011932373, 0.05368042, 0.050567627, 0.07470703, -0.003288269, -0.041992188, -0.016784668, -0.009292603, 0.064208984, 0.02029419, -0.014717102, 0.030090332, 0.022628784, 0.0019168854, -0.02130127, 0.03010559, -0.04156494, 0.0038967133, 0.044952393, -0.033599854, 0.042633057, -0.026138306, -0.005542755, -0.046691895, 0.01802063, -0.011108398, -0.05117798, -0.010803223, 0.014091492, 0.024139404, 0.02078247, 0.030380249, 0.012168884, 0.017593384, 0.04385376, 0.04940796, 0.04421997, -0.033081055, -0.002231598, 0.03189087, 0.0036621094, 0.02027893, -0.02607727, -0.009422302, 0.032714844, -0.03677368, 0.007774353, -0.008354187, 0.0069732666, -0.0011882782, 0.03555298, 0.0067443848, 0.0059547424, -0.011543274, 0.010559082, -0.022735596, -0.06378174, -0.035125732, 0.01828003, 0.0076179504, -0.02116394, -0.039031982, -0.02571106, 0.05758667, 0.0038032532, -0.041229248, 0.011657715, 0.017471313, -0.009056091, -0.008804321, -0.023757935, 0.015716553, -0.017974854, -0.038085938, -0.01789856, 0.010093689, -0.060943604, -0.007247925, -0.014671326, -0.039642334, 0.001663208, 0.018829346, -0.00447464, -0.016906738, 0.001964569, 0.034698486, 0.0075683594, 0.011627197, 0.014862061, -0.058685303, 0.0012254715, 0.019165039, -0.011726379, 0.05984497, -0.023925781, 0.020202637, 0.030853271, 0.011772156, 0.018188477, -0.026870728, 0.013092041, 0.009552002, 0.037841797, 0.0104904175, 0.04321289, -0.038604736, -0.029647827, -0.038330078, 0.026809692, -0.00017523766, -0.01109314, -0.04727173, -0.030578613, 0.00060510635, 0.03302002, -0.016983032, 0.012924194, -0.08569336, 0.016647339, -0.047424316, -0.009689331, 0.012557983, 0.004016876, -0.018981934, -0.068725586, 0.00022792816, 0.0056877136, -0.025222778, 0.03652954, -0.030029297, 0.02748108, 0.00078344345, -0.035705566, 0.00037789345, -0.024169922, -0.0019683838, 0.044921875, 0.05770874, -0.062194824, 0.000600338, 0.02708435, -0.024475098, -0.02218628, -0.01902771, 0.026672363, -0.012512207, -0.00497818, -0.026626587, -0.022491455, -0.015838623, -0.028717041, -0.04650879, -0.016662598, -0.00097608566, 0.005241394, 0.016357422, -0.01109314, -0.056488037, -0.044799805, -0.018676758, -0.023880005, -0.017456055, -0.011741638, -0.0077590942, -0.032409668, 0.0070762634, 0.018035889, -0.00080919266, -0.0049057007, -0.03842163, 0.012016296, -0.03942871, 0.03970337, -0.014640808, 0.030319214, -0.014694214, -0.012611389, -0.02607727, -0.003604889, 0.012428284, -0.03274536, -0.021011353, -0.012458801, 0.016143799, 0.0077323914, -0.0037784576, 0.0010614395, -0.006362915, 0.031082153, 0.014823914, -0.008132935, 0.015167236, 0.00932312, -0.005542755, 0.003862381, 0.012245178, -0.0034561157, -0.034576416, 0.020355225, -0.03692627, -0.014228821, 0.046813965, -0.021896362, 0.008872986, -0.033569336, -0.0070381165, 0.013687134, -0.0004851818, 0.021438599, 0.035095215, -0.010429382, 0.0033168793, -0.005329132, 0.009796143, -0.014305115, -0.010108948, -0.05001831, -0.006439209, -0.007030487, -0.007091522, 0.015823364, -0.020828247, -0.05038452, 0.009124756, -0.015068054, 0.025054932, 0.027999878, 0.010719299, 0.0010652542, -0.043273926, 0.018127441, -0.050842285, -0.029312134, -0.042785645, -0.0036792755, -0.07305908, 0.009208679, 0.005470276, 0.008468628, 0.0009899139, 0.04534912, -0.043518066, 0.012924194, -0.027313232, -0.010307312, -0.014381409, -0.013809204, 0.01424408, 0.0051460266, 0.0041999817, 0.008583069, 0.02355957, 0.005836487, 0.0066986084, -0.0028305054, -0.03466797, -0.062683105, 0.013832092, 0.009483337, -0.020889282, -0.042114258, -0.027557373, 0.0008382797, -0.03353882, -0.0027542114, -0.013114929, -0.042236328, 0.006778717, 0.030639648, -0.049621582, -0.020874023, -0.04336548, 0.012084961, -0.050231934, 0.023788452, 0.010520935, 0.0007982254, -0.009216309, 0.054351807, -0.021942139, -0.039245605, -0.017028809, 0.033569336, -0.029342651, -0.0141067505, 0.05908203, -0.044189453, -0.031188965, -0.028564453, 0.073913574, 0.018341064, 0.015602112, -0.008720398, -0.031280518, -0.027923584, 0.0060653687, 0.04574585, 0.0012359619, 0.053131104, -0.012748718, -0.0368042, -0.043548584, -0.0051651, -0.01285553, -0.06652832, -0.07678223, -0.04788208, 0.03302002, 0.038635254, 0.014450073, 0.0031528473, 0.0042533875, 0.010139465, 0.018417358, -0.084350586, -0.041656494, -0.01007843, -0.04135132, 0.013221741, 0.0007863045, -0.018859863, -0.023834229, 0.043304443, -0.029129028, -0.026123047, -0.01386261, -0.0074806213, -0.001739502, 0.0059890747, -0.032836914, -0.0011377335, -0.03845215, 0.025726318, -0.029205322, 0.029953003, 0.02178955, -0.01675415, 0.016677856, -0.011390686, -0.0033493042, -0.0095825195, -0.039276123, -0.008094788, 0.057647705, -0.0047302246, -0.040130615, -0.0068511963, -0.020324707, -0.020736694, -0.010467529, -0.018249512, 0.008979797, -0.0006670952, 0.0077590942, -0.008148193, -0.014198303, 0.000992775, 0.021469116, -0.001373291, 0.019500732, -0.024597168, 0.02192688, -0.025131226, -0.0029792786, 0.03970337, -0.021057129, -0.030883789, 0.010475159, 0.005306244, -0.010238647, 0.026428223, 0.0184021, -0.008110046, -0.015548706, 0.029418945, 0.0018177032, -0.0002207756, -0.009048462, 0.045806885, 0.025115967, 0.012252808, 0.014053345, -0.021820068, 0.027542114, -0.0026073456, 0.006641388, -0.03427124, -0.0234375, -0.030929565, -0.0013599396, 0.007118225, -0.0047683716, -0.060699463, 0.10266113, -0.013923645, -0.018737793, -0.056274414, -0.00041794777, -0.031341553, -0.01727295, -0.043060303, 0.018081665, 0.022338867, 0.018844604, 0.019927979, 0.0031108856, -0.032684326, -0.002576828, 0.0287323, -0.010368347, -0.009712219, 0.014289856, -0.003704071, -0.033294678, 0.030822754, 0.020263672, 0.0041885376, 0.03326416, 0.013702393, -0.06335449, -0.036895752, -0.028625488, -0.0046806335, -0.026824951, -0.00033712387, 0.028289795, 0.038391113, -0.014846802, -0.050048828, -0.023803711, -0.0027599335, -0.03845215, -0.037994385, -0.0050239563, 0.054779053, 0.036132812, 0.023712158, -0.033355713, -0.03225708, 0.024154663, 0.013031006, 0.02520752, -0.008659363, -0.02897644, -0.006389618, -0.0024662018, -0.0020599365, -0.019821167, -0.009513855, 0.004501343, -0.0256958, -0.004558563, -0.011192322, 0.03967285, 0.019363403, -0.016983032, 0.083740234, 0.034729004, 0.0069274902, 0.031463623, -0.01776123, -0.05886841, 0.008682251, 0.0062713623, -0.07183838, -0.05404663, -0.044006348, -0.008918762, -0.020996094, -0.0129470825, 0.000110685825, 0.044311523, 0.024505615, 0.002878189, -0.018081665, -0.041870117, -0.011962891, -0.035949707, 0.013626099, 0.0016927719, 0.019042969, 8.225441e-05, 0.005092621, -0.04373169, -0.00068187714, 0.0058174133, 0.01600647, 0.0014324188, 0.020309448, 0.0045204163, 0.02142334, -0.028579712, 0.018951416, -0.0013046265, -0.018005371, 0.029663086, 0.041107178, 0.0021400452, 0.024887085, -0.05392456, -0.030578613, 0.0012016296, -0.016494751, 0.012939453, 0.0076522827, -0.042419434, -0.0096588135, 0.016296387, 0.048583984, -0.0041542053, -0.026870728, -0.041931152, -0.031082153, 0.004562378, -0.008842468, 0.001285553, -0.025177002, 0.0075187683, -0.022018433, -0.033599854, -0.024276733, -0.031677246, -0.0024204254, 0.0030231476, 0.01576233, 0.004600525, -0.013557434, 0.0016927719, 0.0055503845, 0.031707764, -0.037475586, -0.045837402, 0.018447876, 0.042785645, -0.0021076202, 0.006313324, -0.013519287, 0.017440796, 0.045410156, 0.02709961, -0.014213562, -0.0077209473, -0.011802673, 0.022460938, -0.0068588257, 0.0071907043, -0.007194519, 0.0029125214, -0.01914978, -0.01802063, -0.005355835, 0.01687622, 0.017318726, 0.0017280579, -0.06951904, 0.027816772, 0.022918701, -0.015991211, -0.0018806458, -0.009017944, -0.012710571, -0.00042414665, 0.016616821, 0.005268097, -0.013954163, -0.042877197, 0.056854248, -0.010635376, 0.02558899, 0.025222778, -0.0385437, 0.009124756, 0.044128418, -0.0046653748, -0.018493652, -0.023040771, 0.0070114136, -0.017608643, 0.0038375854, 0.026855469, 0.024658203, 0.035186768, 0.0044937134, -0.03845215, 0.01965332, -0.059539795, 0.013374329, 0.0018568039, 0.057006836, -0.09082031, -0.039642334, -0.01612854, -0.038360596, -0.0064735413, 0.043060303, -0.0013952255, 0.009010315, -0.014564514, -0.00944519, 0.054992676, 0.0073280334, 0.023345947, -0.057281494, 0.008613586, -0.004951477, 0.009529114, 0.015777588, 0.021713257, -0.021347046, 0.006263733, 0.014625549, 0.0037822723, 0.025009155, 0.0018081665, -0.02470398, -0.018600464, 0.020965576, -0.021514893, -0.013504028, 0.018920898, -0.026397705, 0.0015258789, -0.02696228, -0.02645874, -0.0501709, -0.0473938, -0.048675537, 0.0579834, -0.052856445, -0.03756714, -0.008346558, 0.011062622, -0.023239136, -0.043548584, -0.022415161, 0.007980347, 0.02229309, 0.0060768127, -0.0058555603, 0.017929077, -0.054656982, -0.09564209, 0.051086426, -0.11242676, -0.035491943, -0.02923584, 0.0016098022, 0.0063591003, -0.01322937, 0.021972656, 0.0014820099, 0.021942139, -0.0052375793, 0.06060791, -0.07556152, -0.0022602081, 0.03793335, 0.01902771, -0.008140564, -0.053863525, 0.0027179718, 0.0074005127, -0.03010559, 0.02973938, 0.015022278, -0.055847168, 0.0138549805, -0.00920105, -0.030685425, -0.018981934, -0.0029640198, 0.01878357, 0.011810303, -0.04385376, 0.040252686, 0.00605011, 0.022384644, 0.031311035, 0.021759033, 0.03125, 0.0037136078, -0.072387695, -0.030181885, -0.024520874, 0.017608643, 0.03994751, -0.0050468445, -0.010810852, -0.004146576, -0.010070801, 0.0031719208, 0.0060539246, -0.024276733, -0.005382538, 0.024963379, 0.018569946, -0.0013742447, -0.011001587, -0.020233154, -0.068359375, 0.024642944, 0.06854248, -0.029129028, 0.0017194748, -0.023498535, -0.02079773, -0.0335083, -0.0413208, -0.0022201538, -0.016830444, -0.048065186, -0.0009121895, 0.029174805, -0.01499939, 0.021255493, -0.0038414001, -0.026824951, -0.016723633, 0.030639648, 0.011932373, 0.02670288, 0.0021076202, 0.07543945, 0.015235901, 0.08526611, -0.0045814514, -0.1194458, -0.04486084, 0.021972656, -0.008415222, -0.009841919, 0.022506714, -0.020767212, 0.012313843, 0.014801025, -0.033721924, -0.0067710876, 0.03237915, 0.062561035, -0.028198242, 0.018218994]}, "B07Q47ZGK4": {"id": "B07Q47ZGK4", "original": "Brand: Flame King\nName: Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White\nDescription: \nFeatures: High-grade steel welded propane cylinder\nPremium POL valve assembly\nX-ray and hydrostatic tested\nDot approved\n100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill\n", "metadata": {"Name": "Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White", "Brand": "Flame King", "Description": "", "Features": "High-grade steel welded propane cylinder\nPremium POL valve assembly\nX-ray and hydrostatic tested\nDot approved\n100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010192871, 0.032928467, -0.064575195, -0.05267334, 0.030075073, -0.033294678, -0.04788208, 0.0036239624, -0.042510986, -0.0009150505, -0.037109375, 0.05215454, 0.0054359436, -0.028198242, 0.072387695, -0.022613525, 0.009170532, 0.011695862, 0.028167725, -0.016952515, 0.017333984, -0.02041626, 0.023147583, 0.042266846, 0.05758667, -0.062927246, 0.013069153, 0.026550293, 0.030029297, 0.0039367676, 0.02935791, -0.005619049, 0.05001831, -0.03768921, -0.021087646, -0.032470703, -0.021133423, -0.023086548, -0.0637207, 0.015602112, -0.005924225, 0.026138306, 0.014625549, -0.036102295, -0.012817383, -0.042755127, -0.009117126, -0.03643799, 0.016616821, 0.015777588, 0.009849548, -0.031188965, 0.0019779205, 0.031158447, -0.029541016, 0.010093689, 0.05279541, -0.029678345, 0.009735107, -0.013511658, -0.005218506, 0.052978516, 0.024429321, 0.020965576, -0.047454834, 0.037384033, 0.09472656, -0.027786255, 0.037231445, -0.070617676, -0.032348633, 0.04019165, 0.02659607, 0.04425049, -0.022521973, -0.026870728, 0.026168823, 0.037506104, 0.034179688, 0.015289307, -0.024490356, -0.032165527, 0.0146865845, -0.0012712479, -0.019088745, 0.009536743, -0.022201538, 0.0023899078, -0.0055274963, -0.02482605, -0.0066108704, 0.027069092, -0.038269043, 0.016281128, -0.005622864, -0.029174805, -0.05230713, -0.068481445, 0.06097412, 0.0345459, 0.025680542, -0.0335083, 0.04586792, -0.0178833, 0.0034770966, 0.06829834, -0.013404846, -0.02418518, 0.002632141, -0.00011706352, 0.018600464, -0.034576416, 0.016281128, -0.010047913, -0.013595581, 0.034942627, 0.0013313293, 0.0030117035, -0.0064086914, 0.010246277, -0.00087451935, -0.009994507, 0.025634766, -0.023498535, -0.0058021545, -0.029296875, -0.05206299, 0.010910034, -0.027511597, 0.027694702, -0.017150879, -0.01461792, 0.019088745, 0.08288574, 0.013969421, 0.00011879206, -0.0068588257, -0.026107788, 0.010917664, -0.0104904175, -0.025543213, 0.005455017, 0.054992676, -0.0095825195, -0.03668213, 0.0569458, 0.0019168854, -0.027374268, -0.0095825195, -0.032592773, -0.046936035, -0.03805542, 0.0027484894, 0.0357666, 0.011413574, -0.005268097, 0.028701782, -0.022201538, 0.0077819824, -0.03112793, 0.007095337, -0.029708862, -0.03704834, 0.014770508, -0.021240234, 0.036315918, 0.016311646, 0.0017757416, 0.018585205, 0.056762695, -0.010673523, 0.0107421875, -0.018798828, 0.019561768, 0.0002837181, -0.0071983337, 0.0031642914, 0.10021973, 0.053527832, -0.12548828, -0.091918945, -0.08288574, 0.15539551, -0.07550049, 0.021942139, -0.06384277, 0.032714844, -0.039001465, 0.0057258606, 0.015975952, 0.04144287, 0.029418945, -0.012039185, -0.03945923, -0.013587952, 0.012008667, -0.020584106, 0.011978149, -0.013656616, 0.009986877, 0.0116119385, -0.00025081635, 0.016342163, 0.010177612, 0.025344849, -0.02444458, 0.020950317, -0.016921997, 0.022857666, 0.066101074, -0.012825012, 0.007865906, 0.004558563, -0.05267334, 0.021759033, 0.033721924, -0.04309082, 0.0060768127, 0.0006632805, -0.03111267, 0.030349731, -0.005432129, 0.024154663, 0.037475586, -0.0015411377, 0.010002136, -0.026977539, 0.011230469, 0.03640747, 0.008666992, 0.038269043, 0.006969452, 0.09277344, 0.054351807, -0.0002411604, 0.022369385, 0.055114746, -0.032684326, -0.020736694, 0.01285553, -0.0016307831, -0.0052108765, -0.021347046, 0.051849365, -0.0006804466, -0.021713257, -0.00028920174, 0.021362305, 0.0032463074, 0.00774765, 0.06750488, -0.023132324, 0.013442993, 0.0021190643, -0.019729614, 0.0067253113, 0.028259277, 0.06298828, -0.072265625, 0.021972656, -0.019729614, 0.033721924, 0.013916016, 0.005596161, 0.03616333, 0.011199951, 0.054748535, 0.036315918, -0.024475098, 0.0023479462, 0.0062713623, 0.036987305, -0.0011501312, -0.0017938614, -0.01461792, 0.00038337708, -0.0008831024, 0.0049972534, -0.013664246, -0.023117065, 0.009132385, -0.01184082, 0.042266846, -0.0030517578, 0.04559326, 0.044128418, 0.038513184, -0.0102005005, -0.064819336, -0.03164673, -0.0053100586, 0.024230957, -0.0021457672, -0.031585693, 0.030548096, 0.0007891655, 0.04421997, -0.022094727, 0.012199402, -0.0011377335, 0.038208008, 0.060455322, 0.015541077, 0.0028533936, -0.013282776, -0.018814087, -0.029556274, 0.007293701, -0.0079574585, -0.030944824, -0.01914978, 0.021957397, 0.02748108, 0.022720337, 0.002418518, -0.0041046143, 0.012039185, 0.03375244, 0.028671265, 0.02168274, -0.018157959, 0.017288208, -0.0098724365, -0.00076532364, 0.022964478, -0.0061416626, -0.012489319, 0.009346008, -0.025878906, 0.007575989, -0.020019531, -0.026916504, -0.012390137, 0.014167786, -0.012969971, -0.007423401, -0.0029506683, 0.027252197, -0.02041626, -0.07788086, -0.033233643, 0.02331543, -0.0046577454, -0.0027713776, -0.042541504, -0.05206299, 0.080444336, -0.011787415, 0.00031208992, 0.035339355, -8.59499e-05, 0.018615723, 0.027633667, 0.040985107, 0.014640808, 0.003118515, -0.03451538, -0.005935669, -0.020523071, -0.054626465, 0.020584106, -0.062347412, -0.027236938, 0.020065308, 0.015060425, 0.012077332, -0.04107666, 0.015625, 0.021911621, 0.018966675, 0.018035889, 0.008155823, -0.08862305, -0.0031089783, 0.0010251999, -0.020248413, 0.047027588, -0.01802063, 0.02243042, 0.028137207, 0.029632568, 0.025360107, -0.021957397, -0.0069389343, 0.02998352, 0.0146865845, 0.02696228, 0.04763794, 0.006591797, -0.02015686, -0.012886047, 0.014259338, -0.029052734, -0.016067505, -0.052581787, -0.011787415, -0.03692627, -0.013046265, -0.014381409, 0.02003479, -0.101867676, 0.028564453, -0.018463135, -0.020187378, 0.002023697, 0.008087158, -0.052978516, -0.07434082, -0.0039749146, 0.023803711, -0.030410767, 0.010154724, -0.053710938, 0.007987976, 0.00434494, -0.020523071, -0.009254456, 0.001294136, -0.033325195, 0.02558899, 0.047790527, -0.026168823, 0.015411377, 0.03012085, -0.041046143, -0.026367188, -0.014884949, 0.04248047, -0.009353638, 0.01763916, -0.021148682, -0.018569946, -0.016571045, -0.05130005, -0.06286621, -0.0385437, -0.002363205, 0.03866577, 0.0061454773, -0.013000488, -0.061645508, -0.03390503, -0.014152527, 0.0065727234, -0.028060913, 0.011070251, -0.023620605, -0.048828125, 0.014411926, 0.0011205673, -0.019714355, 0.004501343, -0.015487671, 0.010215759, -0.040374756, 0.022262573, 0.009605408, 0.042175293, -0.019378662, 0.018707275, 0.019348145, -0.018356323, 0.013198853, 0.0062828064, -0.013031006, -0.024230957, -0.027404785, 0.020950317, -0.008628845, -0.0037651062, -0.0046310425, 0.06707764, 0.01689148, -0.0005145073, 0.027404785, 0.041809082, -0.022140503, -0.010437012, 0.0048828125, 0.03366089, -0.070373535, 0.034332275, -0.077697754, 0.0023994446, 0.036468506, -0.017623901, 0.040985107, -0.024902344, 0.010215759, 0.035614014, 0.046783447, -0.00712204, 0.04953003, 0.018127441, -0.010688782, 0.0016050339, 0.007724762, -0.015716553, -0.027313232, -0.05923462, -0.0143966675, 0.007537842, 0.022201538, 0.037017822, -0.023071289, -0.021560669, -0.013572693, -0.012413025, 0.029037476, 0.009925842, -0.008590698, -0.01209259, -0.031951904, 0.01600647, -0.039489746, -0.0128479, -0.017562866, 0.03970337, -0.058410645, -0.00944519, -0.0155181885, -0.038635254, 0.024246216, 0.037353516, -0.02029419, 0.017044067, -0.0005378723, -0.010406494, -0.045166016, 0.02192688, 0.019195557, 0.022460938, 0.025375366, -0.021606445, 0.021911621, -0.00048351288, 0.008514404, -0.0132751465, -0.057250977, -0.039733887, 0.010688782, 0.037750244, 0.017333984, -0.023284912, -0.008605957, -0.025939941, -0.0040016174, -0.023269653, -0.041015625, -0.05831909, 0.0099487305, 0.04144287, -0.022140503, -0.0011281967, -0.04623413, 0.009567261, -0.055725098, 0.025924683, 0.016067505, -0.0071754456, -0.010025024, 0.03704834, -0.02015686, -0.025772095, -0.042877197, 0.035827637, -0.03656006, -0.031433105, 0.035217285, -0.044830322, -0.02923584, -0.02255249, 0.057250977, 0.004558563, 0.010772705, -0.012550354, -0.038513184, -0.009162903, -0.01209259, 0.032104492, -0.024749756, 0.05154419, 0.0038471222, -0.012954712, -0.052764893, 0.001666069, -0.0064811707, -0.007575989, -0.078186035, -0.041259766, 0.034332275, 0.015556335, 0.027786255, 0.027572632, -0.028656006, -0.012489319, 0.013000488, -0.07867432, -0.032989502, -0.016967773, -0.022628784, 0.0057525635, 0.00015640259, -0.009155273, -0.02229309, 0.041809082, -0.023086548, 0.004760742, -0.019210815, -0.025772095, 0.004711151, -0.0088272095, -0.027709961, 0.012496948, -0.030776978, 0.003698349, -0.06451416, 0.031585693, 0.04724121, 0.015144348, 0.021469116, -0.013069153, 0.00044703484, -0.019195557, -0.038482666, -0.0009851456, 0.040802002, -0.0066947937, -0.03060913, -0.01184845, -0.019058228, -0.012748718, 0.00881958, -0.02734375, 0.026275635, 0.02357483, 0.0013551712, 0.0016307831, -0.039001465, -0.0115356445, 0.00699234, -0.00605011, 0.010139465, -0.008323669, 0.004081726, -0.028564453, -0.009986877, 0.028961182, -0.015670776, -0.02180481, 0.010475159, 0.004753113, -0.023513794, 0.019973755, 0.020706177, -0.005882263, -0.024368286, 0.047302246, -0.012252808, 0.018737793, 0.016052246, 0.068847656, 0.028869629, 0.014373779, 0.033081055, 0.023666382, 0.031829834, 0.010284424, 0.026031494, 0.00015318394, -0.011756897, -0.02935791, -0.011306763, -0.020629883, 0.008026123, -0.046936035, 0.074401855, -0.0072402954, 0.0024681091, -0.083740234, 0.013679504, -0.042114258, -0.0440979, -0.037231445, 0.020874023, 0.016296387, -0.006752014, 0.036071777, 0.0006222725, -0.056610107, -0.017150879, 0.0077400208, -0.024551392, -0.0635376, 0.01763916, -0.035186768, -0.029724121, 0.03704834, 0.013923645, -0.0032978058, 0.033111572, 0.0146102905, -0.039642334, -0.024520874, -0.012954712, 0.014221191, 0.004535675, -0.024871826, 0.035217285, 0.026062012, -0.004924774, -0.02935791, -0.01638794, -0.0011539459, -0.0524292, -0.030334473, -0.00969696, 0.019241333, 0.022399902, 0.05807495, -0.048339844, -0.0023155212, 0.019134521, -0.011924744, 0.02545166, -0.008468628, -0.04949951, -0.021530151, 0.0008239746, 0.020446777, -0.005329132, -0.032409668, 0.046417236, -0.022003174, -0.01687622, -0.06274414, 0.03930664, 0.01977539, 0.00035071373, 0.04598999, 0.03378296, -0.0069274902, 0.039093018, -0.015235901, -0.057403564, -0.0014848709, 0.0030097961, -0.05432129, -0.070007324, -0.05178833, -0.022705078, -0.020477295, -0.016220093, -0.011383057, 0.022262573, -0.006855011, -0.008216858, -0.014984131, -0.032073975, -0.008323669, -0.023727417, 0.006336212, -0.001996994, 0.021026611, -0.000726223, 0.031463623, -0.07861328, -0.035888672, -0.018630981, 0.045532227, 0.0026855469, 0.034210205, -0.014953613, 0.00040388107, -0.07122803, 0.049560547, 0.01197052, 0.021133423, 0.006011963, 0.002450943, -0.036987305, 0.015213013, -0.08691406, -0.0004210472, 0.0027217865, 0.028060913, 0.024261475, 0.011016846, -0.048950195, -0.027938843, 0.0076675415, 0.04232788, 0.007663727, -0.015686035, -0.008033752, 0.012489319, 0.014480591, -0.0073623657, 0.0026626587, -0.013137817, 0.0069351196, 0.0025024414, -0.018188477, -0.0006380081, -0.017745972, -0.014678955, 0.02470398, 0.012680054, 0.012550354, -0.052856445, 0.017532349, -0.021560669, 0.020584106, -0.018447876, -0.043762207, 0.02128601, 0.019607544, 0.0072402954, -0.02458191, -0.0033283234, 0.027709961, 0.050323486, 0.015510559, 0.0084991455, 0.0018520355, 0.008651733, 0.026611328, -0.0093688965, -0.015823364, -0.019546509, 0.039398193, -0.030517578, -0.02772522, -0.008888245, 0.0033340454, 0.016983032, -3.8564205e-05, -0.05871582, 0.025375366, 0.030639648, -0.03491211, 0.0072402954, -0.02619934, -0.021774292, 0.007118225, 0.0109939575, 0.009468079, 0.002412796, -0.06262207, 0.041412354, 0.0049438477, 0.038146973, 0.021240234, -0.025665283, 0.017440796, 0.03579712, 0.015281677, -0.017456055, -0.04321289, -0.01474762, 0.0018062592, 0.0066223145, 0.052764893, -0.0002872944, 0.06958008, 0.001616478, -0.022018433, 0.026687622, -0.091308594, 0.016952515, -0.0025920868, 0.05355835, -0.06604004, -0.04776001, -0.019241333, 0.005088806, -0.0362854, 0.067871094, -0.004852295, 0.02734375, -0.0077209473, -0.01071167, 0.045074463, 0.005882263, 0.03286743, -0.053771973, 0.010139465, 0.01687622, -0.022827148, 0.007701874, 0.010818481, -0.026641846, 0.02168274, 0.006324768, 0.012969971, 0.02444458, 0.011978149, -0.009979248, -0.021148682, 0.01675415, -0.006713867, -0.016021729, -0.0018472672, -0.011245728, -0.005168915, -0.017700195, -0.013008118, -0.0413208, -0.041809082, -0.051452637, 0.043823242, -0.032165527, -0.021331787, 0.009284973, -0.006374359, -0.022140503, -0.048461914, -0.006565094, 0.00036001205, 0.05645752, 0.008979797, 0.013511658, 0.0016937256, -0.044403076, -0.064331055, 0.03527832, -0.06890869, -0.033721924, -0.028045654, 0.0025081635, -0.00058317184, -0.0076141357, 0.00894928, 0.04248047, 0.015327454, -6.556511e-06, 0.03656006, -0.0715332, 0.010856628, -0.0003836155, 0.010803223, -0.008140564, -0.068481445, 0.011459351, -0.009346008, -0.0017242432, 0.02357483, -0.016220093, -0.030014038, -0.006965637, 0.0013084412, -0.032440186, -0.061798096, 0.031463623, -0.020690918, -0.004497528, -0.037841797, 0.014404297, 0.015060425, 0.05899048, 0.036315918, 0.006214142, 0.0093688965, -0.033203125, -0.07470703, -0.031707764, -0.009208679, 0.035614014, 0.04006958, -0.011947632, -0.02355957, 0.011810303, -0.008880615, -0.004425049, 0.010055542, -0.0040512085, 0.008705139, 0.037994385, 0.014587402, 0.013771057, -0.022201538, -0.025421143, -0.067993164, -0.015686035, 0.0592041, -0.015563965, -0.0065193176, -0.0046424866, -0.027282715, -0.026626587, -0.015701294, -0.005962372, -0.019088745, -0.040740967, 0.016159058, 0.049713135, -0.007068634, -0.013587952, -0.01008606, -0.0060920715, -0.024459839, 0.02607727, 0.023757935, 0.022262573, -0.022399902, 0.04751587, 0.016799927, 0.064208984, -0.007881165, -0.12719727, -0.06939697, 0.029846191, -0.0022335052, -0.0016336441, 0.023986816, -0.023452759, 0.0028038025, 0.027999878, -0.011161804, -0.040222168, 0.051574707, 0.059417725, -0.0002963543, 0.035247803]}, "B078HFRNPQ": {"id": "B078HFRNPQ", "original": "Brand: Blackstone\nName: Blackstone 36\" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black\nDescription: \nFeatures: NEW FEATURES - This unit comes equipped with Blackstone's new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone's new rear grease management system to help eliminate mess.\nRESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks.\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nHEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe\nTRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels\n", "metadata": {"Name": "Blackstone 36\" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black", "Brand": "Blackstone", "Description": "", "Features": "NEW FEATURES - This unit comes equipped with Blackstone's new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone's new rear grease management system to help eliminate mess.\nRESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks.\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nHEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe\nTRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0037078857, 0.0019779205, -0.0236969, -0.037231445, 0.0011396408, -0.001996994, -0.032226562, -0.006164551, -0.03286743, -0.0046195984, -0.019699097, 0.042541504, -0.04425049, -0.01966858, 0.019073486, -0.0473938, 0.028518677, 0.007118225, 0.023925781, -0.02508545, -0.018661499, -0.010574341, 0.02999878, 0.07122803, 0.04864502, -0.04815674, -0.011734009, 7.0631504e-05, 0.036499023, 0.015396118, 0.026168823, -0.012535095, 0.039520264, -0.005332947, -0.011245728, -0.04196167, -0.014541626, -0.016525269, -0.01473999, 0.0033607483, 0.03289795, -0.0093688965, -0.04434204, 0.064575195, -0.056396484, -0.04522705, 0.03753662, 0.0037612915, -0.012527466, 0.044067383, -0.0027999878, 0.03781128, 0.004234314, 0.0061454773, 0.0054092407, 0.007686615, 0.027160645, -0.003982544, 0.033294678, -0.020751953, -0.049804688, 0.011749268, 0.024490356, -0.025314331, -0.05758667, 0.019958496, 0.045959473, -0.04837036, -0.030792236, -0.044555664, 0.03756714, 0.0069999695, 0.020629883, -0.014945984, -0.0284729, 0.0028972626, 0.008094788, 0.012084961, 0.026123047, -0.025436401, -0.015113831, 0.0036239624, -0.008743286, -0.04940796, -0.002603531, -0.046844482, -0.021133423, 0.0119018555, 0.016113281, -0.08856201, 0.0075912476, -0.06713867, -0.04623413, 0.015579224, 0.013282776, -0.06616211, -0.068603516, -0.062194824, -0.005016327, 0.022399902, -0.018234253, -0.00036883354, 0.030349731, -0.011123657, -0.04309082, 0.058776855, 0.040924072, 0.05041504, -0.02897644, -0.003376007, -0.015197754, -0.08294678, 0.023880005, -0.020812988, -0.026687622, 0.031341553, 0.01626587, -0.022583008, 0.016159058, -0.0002207756, -0.023101807, -0.023376465, -0.012390137, 0.030578613, 0.0418396, 0.03265381, -0.002866745, 0.011802673, -0.07269287, 0.044555664, -0.04043579, -0.0010232925, 0.045928955, 0.0395813, 0.010543823, -0.03768921, 0.008361816, -0.04534912, 0.015007019, -0.014190674, -0.012809753, 0.029769897, 0.05239868, -0.022918701, -0.022003174, -0.003211975, 0.034851074, 0.033203125, -0.026046753, -0.055145264, 0.028625488, 0.013427734, 0.02130127, 0.0104522705, -0.031158447, -0.0074882507, 0.034301758, -0.027297974, -0.021057129, -0.05230713, 0.009094238, 0.007671356, 0.040893555, 0.0154800415, 0.00034546852, -0.0005965233, -0.06518555, -0.008255005, 0.00522995, 0.02230835, -0.019195557, 0.017242432, -0.042053223, -0.03466797, -0.0146484375, -0.018310547, -0.034698486, 0.04736328, 0.045898438, -0.081726074, -0.060058594, -0.05706787, 0.06427002, -0.015853882, -0.011299133, 0.01637268, 0.02027893, 0.00844574, -0.0013151169, 0.0034332275, 0.04159546, 0.03387451, -0.027175903, 0.003753662, 0.019378662, 0.014060974, -0.041931152, 0.0055770874, -0.014884949, -0.026977539, -0.023483276, -0.0030994415, 0.010665894, 0.031341553, -0.005092621, 0.0062408447, -0.016937256, 0.016082764, 0.00013875961, -0.0002655983, 0.012916565, -0.0020751953, 0.008598328, -0.10095215, -0.048461914, 0.007297516, -0.008628845, 0.023132324, 0.025817871, -0.0058021545, 0.041137695, -0.0025348663, 0.059631348, -0.00078201294, 0.024032593, 0.002483368, -0.022445679, 0.0033302307, -0.013031006, 0.028915405, -0.057861328, 0.017868042, 0.029708862, 0.08831787, -0.0140686035, 0.023513794, 0.03262329, 0.06304932, 0.002527237, -0.02017212, 0.0067749023, 0.015960693, -0.039764404, 0.02432251, -0.022064209, -0.021194458, 0.012260437, 0.014785767, -0.05508423, 0.00818634, 0.027572632, 0.0619812, 0.018814087, 0.048461914, -0.06225586, 0.045166016, -0.032043457, -0.000957489, -0.018844604, 0.013175964, 0.0039138794, 0.068115234, 0.02722168, 0.019241333, 0.018630981, 0.026275635, 0.023117065, 0.028839111, -0.021728516, 0.032958984, 0.008277893, -0.023025513, -0.012481689, -0.0031986237, -0.010192871, 0.030166626, -0.013748169, 0.017791748, -0.030639648, -0.010505676, 0.01499939, -0.005432129, -0.023406982, 0.0046463013, 0.010223389, -0.01020813, 0.019927979, 0.054016113, -0.016464233, -0.003786087, 0.041656494, -0.041168213, -0.02784729, -0.02180481, -0.04638672, -0.028305054, 0.05606079, 0.07470703, -0.029312134, 0.01902771, 0.024856567, 0.020401001, -0.029556274, 0.0009717941, -0.019332886, 0.005344391, -0.03692627, 0.020431519, -0.006175995, -0.01537323, -0.03878784, -0.00869751, 0.03970337, 0.040222168, 0.029037476, 0.017623901, -0.004058838, 0.068359375, 0.06726074, 0.02684021, -0.004627228, 0.014884949, -0.04876709, -0.0102005005, 0.0025787354, 0.019332886, -0.039093018, -0.023101807, -0.053985596, 0.045562744, -0.014434814, -0.0044822693, -0.011054993, 0.048858643, -0.02041626, 0.024414062, 0.010002136, -0.020736694, -0.020004272, -0.021713257, 0.00076675415, -0.068359375, 0.0006070137, -0.00856781, 0.019897461, -0.011169434, 0.026184082, 0.03829956, -0.082214355, 0.01713562, -0.0005993843, -0.06048584, 0.027008057, -0.021636963, 0.00712204, -0.004096985, -0.041931152, -0.04925537, -0.021057129, -0.0869751, -0.0073509216, -0.036712646, -0.05569458, -0.002073288, 0.048431396, 0.013748169, -0.03302002, -0.0064849854, -0.0039901733, -0.029220581, 0.06713867, 0.018356323, -0.09765625, -0.04147339, -0.036468506, -0.026489258, -0.0018186569, -0.036712646, 0.0058403015, -0.010467529, 0.009185791, 0.042755127, -0.020858765, 0.041259766, -0.005695343, 0.018798828, -0.02168274, 0.039398193, -0.0021038055, -0.005252838, 0.02229309, 0.064331055, -0.040985107, -0.0049972534, -0.0044822693, -0.0058288574, 0.04360962, -0.044189453, -0.031204224, -0.028625488, -0.064819336, 0.048858643, 0.034454346, -0.046905518, -0.0015821457, -0.062561035, -0.040283203, -0.021453857, 0.016921997, 0.042419434, 0.017303467, 0.006275177, -0.00078582764, 0.022827148, -0.010673523, -0.008010864, 0.006877899, -0.0053634644, 0.05142212, -0.059753418, -0.0023860931, -0.05065918, 0.02897644, 0.018371582, -0.02368164, 0.014457703, -0.00074625015, 0.03277588, -0.012283325, -0.03765869, -0.008621216, -0.050567627, -0.019058228, 0.021713257, -0.00630188, 0.0541687, -0.0062828064, -0.045928955, 0.015403748, -0.033203125, 0.037231445, -0.019256592, -0.09625244, 0.07684326, -0.039215088, -0.003604889, -0.07336426, -0.046295166, -0.0020256042, -0.009010315, -0.007987976, 0.005420685, 0.0028591156, 0.011528015, -0.013214111, 0.061798096, -0.0061302185, 0.042114258, 0.02619934, -0.014839172, -0.007358551, -0.042266846, 0.0368042, 0.035583496, -0.022613525, -0.03427124, 0.048034668, 0.015670776, 0.0028266907, -0.0073509216, -0.019363403, 0.055023193, 0.056365967, 0.0026741028, -0.026535034, -0.0524292, 0.036132812, 0.035461426, -0.036743164, -0.03665161, -0.044830322, 0.0026435852, -0.08178711, 0.09210205, 0.009857178, -0.006549835, 0.0647583, 0.06616211, 0.00037908554, 0.02746582, -0.037353516, -0.0029621124, -0.003824234, 0.041809082, -0.0234375, 0.05456543, 0.014846802, 0.029647827, 0.007972717, 0.012245178, -0.046142578, -0.011627197, -0.019073486, -0.011299133, 0.019012451, 0.017745972, -0.021774292, -0.017242432, 0.00030350685, -0.031311035, 0.00044369698, -0.03543091, 0.016403198, 0.024932861, -0.025558472, -0.021957397, -0.023956299, 0.010223389, -0.05316162, 0.008125305, 0.034362793, 0.027313232, 0.026306152, 0.016113281, -0.0043258667, 0.017456055, -0.011177063, -0.01209259, -0.02720642, 0.012794495, 0.0119018555, 0.017150879, 0.007293701, -0.013839722, 0.012886047, 0.011131287, -0.021575928, 0.003227234, -0.041259766, -0.046081543, -0.014663696, -0.038024902, -0.016403198, -0.014976501, 0.0082092285, -0.038146973, -0.004131317, -0.004032135, -0.053588867, -0.010650635, -0.025314331, -0.005859375, -0.04345703, -0.00080013275, 0.0067253113, -0.02355957, -0.06707764, 0.019821167, -0.0065727234, -0.004547119, -0.028182983, -0.02583313, -0.031036377, 0.048034668, -0.03781128, 0.0037822723, 0.036071777, -0.0013360977, 0.01687622, -0.03189087, 0.007472992, -0.00995636, 0.029922485, -0.007446289, 0.0037155151, -0.006801605, 0.010658264, 0.010612488, 0.043121338, 0.010108948, 0.00233078, -0.006801605, -0.0093688965, -0.025360107, -0.026153564, -0.022338867, 0.043762207, -0.034240723, 0.005092621, 0.020187378, 0.06298828, -0.051879883, -0.00945282, -0.02180481, 0.050750732, 0.00038647652, 0.038482666, -0.050354004, -0.01335907, 0.022857666, -0.03970337, -0.009757996, 0.0060577393, -0.042388916, 0.024780273, 0.012184143, -0.012687683, -0.076660156, 0.0014257431, -0.025268555, -0.024917603, 0.025375366, -0.043640137, 0.018997192, -0.051849365, -0.021713257, -0.05065918, 0.08325195, 0.08441162, -0.015945435, 0.009277344, 0.009986877, -0.050720215, -0.03665161, -0.02053833, -0.007091522, 0.03692627, -0.012969971, -0.04248047, 0.012763977, -0.044128418, -0.0011968613, 0.010818481, -0.029174805, 0.020889282, 0.019973755, 0.004886627, -0.0064964294, -0.033447266, 0.006290436, 0.016357422, 0.012969971, -0.030273438, -0.038085938, 0.051727295, -0.010070801, -0.01876831, 0.013687134, -0.019546509, -0.00091171265, -0.0009689331, 0.008865356, -0.037017822, 0.002943039, 0.033843994, -0.0039787292, -0.044433594, 0.030334473, -0.000957489, 0.022720337, -0.03955078, 0.036193848, -0.033111572, 0.03378296, 0.021484375, -0.024353027, -0.017059326, 0.025726318, -0.043060303, 0.039642334, -0.00026082993, -0.029296875, 0.010047913, -0.012283325, 0.002298355, -0.014373779, 0.02420044, 0.012420654, -0.011039734, -0.03955078, -0.00013184547, 0.0040893555, 0.032562256, 0.017623901, -0.047210693, 0.048736572, -0.043273926, -0.031585693, 0.026046753, 0.06567383, -0.027908325, -0.019302368, 0.045898438, -0.014221191, -0.055999756, 0.026168823, 0.010650635, -0.038330078, 0.029815674, -0.052001953, 0.022140503, -0.0018434525, -0.024795532, -0.01121521, -0.029922485, 0.00774765, -0.023284912, -0.041992188, -0.045532227, 0.00028252602, -0.061828613, 0.0023117065, 0.028015137, 0.019454956, -0.04043579, -0.025238037, -0.011695862, 0.0025119781, -0.02748108, 0.045959473, -0.0055351257, 0.009460449, 0.01234436, 0.00630188, 0.015838623, 0.013710022, -0.04159546, 0.030349731, 0.021530151, 0.06317139, -0.017471313, -0.01852417, 0.076538086, -0.046691895, -0.041992188, -0.036376953, 0.038848877, -0.031829834, -0.012908936, 0.026504517, 0.034576416, 0.010169983, 0.03186035, -0.0031166077, -0.05303955, -0.00894928, -0.00027275085, -0.05758667, -0.029083252, -0.04559326, 0.02734375, -0.004989624, -0.006942749, 0.0036735535, 0.062408447, 0.032470703, -0.023208618, -0.05078125, -0.03100586, 0.011795044, 0.0056419373, 0.0054740906, -0.013389587, 0.00042152405, -0.044555664, 0.013008118, -0.034820557, -0.055877686, -0.0027217865, 0.04638672, 0.021148682, -0.036071777, 0.013305664, 0.015670776, -0.02835083, 0.0592041, -0.031982422, 0.011199951, 0.006668091, 0.018600464, 0.0079422, 0.033996582, 0.05618286, 0.013084412, -0.048095703, 0.015808105, 0.01625061, 0.06112671, -0.06976318, 0.005329132, 0.029434204, 0.054779053, 0.03366089, 0.012237549, 0.016601562, -0.011451721, 0.015266418, 0.013069153, -0.009223938, -0.018371582, -0.06359863, -0.023651123, -0.014045715, 0.021026611, 0.020858765, 0.040802002, 0.023849487, 0.004257202, -0.025054932, 0.03741455, -0.002790451, -0.02003479, -0.008842468, 0.011482239, -0.0024223328, 0.0031032562, -0.029754639, 0.006706238, -0.045013428, -0.033935547, 0.03253174, 0.03173828, -0.015258789, 0.016586304, -0.05807495, 0.006549835, 0.07434082, -0.072143555, -0.013114929, 0.017959595, -0.013763428, -0.029586792, -0.043701172, -0.034210205, 0.033111572, -0.0037136078, -0.027755737, 0.054901123, -0.0028800964, -0.01675415, 0.022216797, -0.003704071, 0.014678955, -0.016342163, -0.0021018982, 0.015151978, 0.024734497, -0.007896423, 0.009223938, 0.0067825317, 0.058166504, -0.030349731, -0.03338623, 0.033935547, 0.022155762, -0.01939392, 0.01335144, -0.026565552, -0.032196045, 0.06585693, 0.044189453, -0.028259277, -0.0029067993, 0.0006799698, -0.012107849, 0.019500732, -0.052459717, 0.02078247, -0.023620605, 0.06762695, 0.050109863, 0.006340027, 0.025360107, 0.011978149, -0.022323608, 0.024917603, 0.0064697266, -0.0010728836, 0.026397705, 0.0017347336, 0.0009813309, 0.012069702, 0.028366089, -0.055358887, 0.018859863, 0.03564453, -0.005657196, 0.056396484, -0.011100769, 0.02078247, 0.013549805, -0.046661377, -0.019515991, -0.009887695, -0.010368347, 0.05444336, 0.01751709, 0.018218994, -0.025970459, -0.010856628, 0.0096588135, -0.033416748, 0.03427124, -0.022491455, 0.01928711, -0.018554688, -0.040985107, -0.040161133, 0.00440979, -0.024749756, 0.029129028, 0.006084442, -0.046020508, -0.01360321, 0.007282257, 0.013420105, -0.06378174, -0.015609741, -0.02696228, 0.031951904, -0.016418457, 0.024780273, -0.0055885315, -0.025100708, -0.03768921, 0.016311646, -0.07165527, -0.00065612793, 0.0010471344, -0.016967773, -0.02017212, -0.01737976, 0.017623901, 0.030593872, 0.015197754, -0.013961792, -0.05215454, 0.028213501, -0.022750854, 0.05319214, -0.0011234283, -0.037597656, -0.0063095093, 0.009048462, -0.013076782, 0.05041504, 0.025283813, -0.029663086, -0.04449463, -0.039031982, -0.04598999, 0.0065231323, 0.003458023, -0.02116394, 0.033050537, 0.0104599, -0.04623413, 0.0317688, 0.00699234, 0.016906738, 0.03213501, 0.0072898865, 0.014122009, -0.006790161, -0.03427124, -0.017684937, -0.014411926, -0.011054993, -0.027114868, -0.054656982, -0.008392334, -0.01361084, -0.010551453, -0.014915466, 0.014030457, -0.012809753, 0.0042381287, 0.0016469955, -0.016708374, -0.021118164, -0.014808655, -0.028686523, -0.012840271, -0.025756836, 0.038513184, 0.014030457, -0.021743774, -0.007434845, -0.011642456, -0.008361816, -0.008682251, -0.011352539, -0.009063721, -0.013580322, 0.0052452087, 0.02444458, 0.015930176, 0.03201294, 0.011947632, -0.01876831, -0.044708252, -0.00121212, 0.013687134, 0.0011320114, -0.005748749, 0.015655518, 0.026977539, 0.04144287, -0.024993896, -0.030227661, -0.023361206, 0.030334473, -0.0140686035, 0.0062789917, 0.033599854, -0.022125244, 0.015335083, 0.014625549, 0.02545166, -0.012382507, -0.0012340546, 0.05114746, 0.017547607, 0.012840271]}, "B082XSFG73": {"id": "B082XSFG73", "original": "Brand: NEXCOVER\nName: NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.\nDescription: Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.\nFeatures: \u3010Upgraded Material\u3011: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice.\n\u3010Wide Compatibility\u3011: The upgraded grill cover measures 60\"(W)*23\"(D)*42\"(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering.\n\u3010Handles & Straps & Covered Air Vents\u3011: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off.\n\u3010Easy to Use & Clean\u3011: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering.\n\u3010Reliable Customer Service and Warranty\u3011: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.\n", "metadata": {"Name": "NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.", "Brand": "NEXCOVER", "Description": "Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.", "Features": "\u3010Upgraded Material\u3011: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice.\n\u3010Wide Compatibility\u3011: The upgraded grill cover measures 60\"(W)*23\"(D)*42\"(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering.\n\u3010Handles & Straps & Covered Air Vents\u3011: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off.\n\u3010Easy to Use & Clean\u3011: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering.\n\u3010Reliable Customer Service and Warranty\u3011: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019714355, -0.017150879, -0.036895752, -0.026046753, -0.031219482, 0.015686035, -0.020080566, 0.02508545, -0.023513794, 0.008277893, -0.037506104, 0.012680054, -0.002084732, -0.02571106, 0.021972656, -0.04788208, 0.0025081635, 0.019226074, 0.0146865845, -0.020446777, 0.009971619, -0.025390625, 0.0038928986, 0.030288696, 0.036224365, -0.012054443, 0.020263672, -0.031097412, 0.03491211, -0.0014591217, 0.026519775, -0.010093689, 0.02230835, 0.04171753, -0.059509277, 0.023803711, 0.0026569366, 0.011100769, -0.006965637, 0.039367676, 0.014694214, -0.005104065, 0.013793945, 0.0069389343, -0.0014982224, -0.070739746, 0.04650879, -0.047332764, 0.015129089, 0.034210205, 0.0015287399, 0.017471313, -0.012466431, 0.0041618347, 0.0041618347, -0.0071372986, -0.017654419, 0.022766113, 0.020736694, 0.002281189, -0.008293152, 0.002670288, 0.015808105, -0.0025691986, -0.030517578, -0.0070762634, 0.10131836, -0.017990112, -0.05529785, -0.04547119, 0.055664062, 0.01727295, 0.022491455, -0.028366089, -0.0031318665, -0.022399902, -0.032928467, -0.033813477, 0.03942871, 0.0011367798, -0.010307312, -0.052459717, 0.027038574, 0.0058288574, 0.0029468536, 0.02960205, -0.009605408, -0.011375427, 0.023284912, 0.009727478, 0.009559631, 0.0054092407, 0.01701355, 0.047668457, 0.006965637, -0.028121948, -0.00067567825, -0.016937256, 0.016845703, 0.019454956, 0.024505615, -0.04034424, 0.055480957, -0.02331543, -0.030838013, 0.0501709, 0.010528564, 0.014640808, -0.017349243, 0.0012722015, -0.012992859, -0.062164307, -0.032287598, -0.07751465, -0.023040771, 0.066467285, -0.00573349, -0.01084137, 0.034851074, -0.016983032, -0.03479004, -0.002067566, -0.03692627, 0.036499023, 0.052246094, 0.0440979, 0.01335144, 0.031463623, -0.061920166, 0.0042762756, -0.017807007, 0.030685425, 0.046020508, 0.06021118, 0.014793396, -0.009651184, 0.038269043, -0.028396606, -0.009155273, 0.002357483, -0.015235901, 0.022613525, 0.027664185, -0.017364502, -0.003238678, 0.021987915, 0.010246277, 0.009254456, 0.012512207, -0.0579834, 0.037078857, -0.03729248, 0.06945801, -0.000623703, -0.091430664, -0.015945435, 0.0034999847, -0.010276794, -0.05166626, -0.07281494, -0.040222168, -0.028869629, 0.011917114, -0.025131226, -0.038391113, 0.04901123, 0.023498535, 0.002292633, 0.01777649, 0.011512756, 0.01133728, -0.056762695, -0.029647827, -0.0026550293, -0.0058784485, 0.023254395, -0.018539429, 0.06939697, 0.07232666, -0.11071777, -0.06689453, -0.050933838, 0.14880371, -0.04034424, -0.017166138, 0.0053215027, 0.008544922, -0.0031547546, 0.035583496, -0.006263733, 0.019927979, 0.00932312, -0.016220093, 0.048187256, -0.046295166, 0.008224487, -0.02381897, 0.057434082, -0.036987305, -0.04257202, -0.029022217, -0.010437012, 0.018310547, 0.017211914, 0.017211914, 0.008651733, -0.0070495605, 0.02696228, 0.046661377, 0.026123047, -0.022384644, -0.024612427, -0.0055007935, 0.016159058, -0.025421143, -0.0015506744, 0.00022304058, 0.014213562, 0.0029621124, 0.008308411, 0.03378296, 0.007331848, 0.02003479, 0.028411865, 0.02017212, -0.009918213, -0.00046682358, -0.0026741028, 0.04055786, 0.012840271, -0.0006175041, 0.010551453, 0.059539795, 0.06726074, -0.00415802, 0.042266846, 0.053863525, 0.014892578, -0.027328491, -0.002090454, -0.0028495789, -0.0259552, -0.03656006, 0.035888672, -0.0013771057, -0.0037612915, -0.018493652, 0.040222168, -0.05203247, -0.00605011, 0.034362793, 0.037353516, 0.028884888, 0.035217285, -0.045928955, 0.05596924, -0.02319336, 0.006374359, -0.045013428, 0.027648926, -0.0004196167, 0.0029621124, 0.034301758, -0.024307251, 0.055236816, -0.0043182373, 0.035583496, 0.038360596, -0.026046753, -0.0009036064, 0.0031738281, 0.016586304, 0.001115799, 0.03616333, 0.015716553, 0.0064353943, -0.014526367, -0.01020813, 0.030944824, 0.023223877, 0.02041626, 0.026824951, 0.05026245, -0.0025367737, 0.04071045, 0.010231018, 0.027908325, -0.0072784424, -0.054473877, -0.004421234, 0.03805542, -0.0084991455, -0.0236969, -0.036315918, 0.006538391, -0.010696411, 0.01210022, 0.0072364807, -0.008117676, -0.020599365, -0.009635925, 0.030227661, 0.0116119385, -0.02885437, -0.00944519, 0.03338623, -0.031799316, 0.022949219, 0.006095886, -0.049194336, 0.021697998, 0.011070251, 0.013641357, -0.03201294, 0.060028076, 0.01638794, 0.016830444, 0.04159546, 0.045684814, 0.040893555, -0.06921387, -0.009712219, -0.031341553, -0.013923645, 0.0022335052, 0.049682617, -0.035125732, 0.009918213, -0.008956909, 0.019973755, -0.04260254, -0.038330078, -0.03656006, -0.025909424, -0.015541077, 0.00831604, 0.006000519, -0.022735596, -0.0027256012, 0.005973816, 0.010093689, -0.0146484375, 0.005115509, -0.018463135, -0.03741455, -0.050750732, 0.048583984, -0.0052948, -0.01134491, 0.0050849915, 0.037261963, -0.01663208, -0.018493652, -0.036193848, -0.027435303, 0.011978149, 0.016174316, -0.07232666, -0.02204895, -0.08880615, 0.0007095337, -0.02470398, -0.06323242, 0.042388916, 0.056762695, -0.026412964, 0.007534027, -0.03591919, 0.057159424, 0.03100586, 0.059265137, 0.031280518, -0.051086426, -0.03479004, 0.002811432, -0.06201172, -0.0020256042, -0.04458618, 0.0023956299, -0.014221191, -0.013771057, 0.009529114, -0.01600647, 0.016433716, -0.020767212, 0.038635254, 0.027877808, 0.060302734, -0.05645752, -0.0491333, -0.05633545, 0.05645752, -0.011703491, -0.03439331, 0.03439331, 0.030380249, 0.0011558533, 0.028121948, -0.005996704, -0.034851074, -0.059295654, 0.010894775, -0.011299133, -0.004081726, -0.032104492, -0.038208008, -0.031341553, -0.04949951, -0.012413025, 0.07501221, -0.037902832, 0.00014424324, -0.013702393, 0.004425049, 0.028671265, 0.0072250366, -0.033966064, -0.011116028, -0.007850647, 0.00806427, 0.00049352646, -0.007408142, -0.0032196045, 0.031829834, -0.02418518, 0.030670166, -0.002779007, 0.029388428, -0.014480591, 0.0082092285, 0.0062446594, -0.019378662, 0.0031490326, 0.02418518, -0.02482605, 0.014091492, 0.0022411346, -0.009407043, 0.04336548, -0.06161499, -0.045806885, 0.005317688, 0.0032138824, 0.013710022, 0.00046372414, -0.006549835, 0.016860962, -0.03918457, -0.027252197, -0.026733398, 0.00024724007, 0.0064086914, 0.015823364, 0.03111267, -0.0006713867, 0.105041504, -0.018173218, 0.025268555, -0.016983032, -0.004711151, -0.024139404, -0.02909851, 0.0725708, -0.042877197, -0.0022296906, -0.021835327, 0.055023193, -0.0044784546, -0.00983429, -0.0021457672, -0.012626648, 0.025436401, 0.022125244, -0.026672363, 0.011039734, -0.039520264, 0.011512756, 0.0069351196, 0.011314392, -0.03881836, -0.04373169, -0.014312744, -0.05319214, 0.06713867, 0.07366943, -0.02670288, 0.075683594, 0.066833496, -0.025634766, 0.04486084, 0.04067993, 0.0017786026, 0.018051147, 0.0496521, -0.030822754, -0.010223389, 0.021728516, -0.06341553, -0.0019130707, -0.022064209, -0.0491333, 0.008399963, -0.012962341, -0.02859497, -0.036315918, 0.01977539, 0.031021118, -0.01828003, -0.0068359375, -0.058685303, 0.03677368, -0.06512451, 0.05166626, 0.014808655, -0.0062217712, 0.007106781, 0.01448822, 0.01927185, -0.0062675476, -0.012138367, -0.0024585724, 0.0158844, -0.004081726, 0.018432617, 0.027435303, 0.009346008, -0.028076172, 0.020645142, -0.010292053, -0.019699097, 0.023025513, 0.014053345, 0.01360321, 0.012336731, -0.011016846, 0.014915466, -0.00023519993, -0.015106201, -0.008476257, -0.03781128, 0.026550293, 0.04296875, -0.021850586, -0.032684326, 0.0010900497, -0.032104492, -0.019927979, -0.0011091232, -0.033111572, -0.009895325, -0.015640259, -0.0027866364, -0.033355713, 0.024841309, 0.012702942, -0.041992188, -0.07989502, -0.0048103333, -0.007637024, 0.05529785, -0.0026741028, 0.06695557, -0.0335083, -0.05050659, 0.00084877014, 0.018310547, 0.013885498, -0.009162903, 0.036743164, -0.015304565, -0.024612427, -0.021118164, 0.08288574, 0.0129776, 2.6464462e-05, -0.04928589, 0.0075950623, 0.022827148, 0.011222839, 0.009689331, -0.017745972, 0.018600464, 0.012641907, 0.030044556, -0.036376953, -0.034942627, 0.042114258, -0.03945923, -0.027069092, -0.059539795, 0.040405273, -0.010414124, -0.015853882, -0.040374756, 0.01586914, 0.013557434, 0.015777588, 0.0149383545, 0.024551392, 0.016693115, 0.0031147003, 0.01386261, 0.0056610107, -0.016296387, 0.002231598, -0.013557434, -0.03945923, 0.010910034, 0.0013465881, 0.028030396, -0.007835388, 0.014381409, -0.017089844, -0.013320923, -0.019897461, 0.0023880005, -0.066833496, 0.080566406, 0.057800293, -0.0014286041, -0.0063972473, 0.002746582, -0.02230835, -0.08099365, -0.010971069, -0.013748169, 0.031677246, 0.01737976, -0.024841309, -0.015625, -0.0026493073, -0.009712219, 0.016021729, -0.02357483, 0.0206604, -0.016693115, 0.028137207, -0.015151978, 0.006008148, 0.060821533, 0.010559082, -0.008590698, -0.01612854, 0.0030212402, -0.053253174, -0.04849243, -0.021072388, -0.016296387, -0.021224976, -0.035064697, -0.0019216537, 0.020370483, -0.009140015, 0.05001831, 0.008094788, 0.015975952, -0.04058838, -0.017608643, 0.0039100647, -0.03363037, -0.01184845, 0.027923584, -0.017974854, 0.039001465, 0.019058228, 0.003189087, -0.016601562, 0.040802002, -0.048614502, 0.06427002, 0.0012054443, -0.036010742, 0.020462036, -0.0058135986, -0.01474762, -0.01158905, 0.07763672, -0.0016517639, 0.00605011, -0.05331421, 0.015098572, 0.00894928, 0.041381836, -0.016342163, -0.022766113, 0.034210205, -0.03112793, -0.03111267, 0.033966064, 0.057495117, -0.020126343, 0.0070381165, 0.03050232, -0.00048542023, -0.05078125, 0.03201294, -0.05130005, -0.035339355, -0.008262634, 0.0063819885, 0.031982422, -0.028686523, -0.05545044, -0.08459473, -0.00869751, 0.003791809, -0.013023376, 0.00579834, 0.019088745, 0.017120361, 0.00019776821, -0.003894806, -0.01335907, 0.008331299, -0.041931152, -0.009231567, -0.02192688, 0.0026893616, -0.009521484, 0.05029297, -0.009918213, -0.017242432, 0.0112838745, 0.01158905, 0.022415161, -0.009033203, -0.019927979, 0.008140564, -0.008079529, 0.0013065338, -0.028778076, 0.020721436, 0.062286377, -0.050445557, -0.051513672, -0.046325684, 0.01776123, -0.039123535, -0.08258057, 0.0960083, -0.007873535, 0.028656006, -0.006942749, -0.0063095093, -0.04019165, 0.023101807, 0.0014438629, -0.07885742, 0.011070251, -0.010879517, 0.008666992, 0.01701355, -0.02128601, -0.027938843, 0.035217285, 0.0005173683, 0.018844604, -0.050201416, -0.049316406, -0.0055160522, -0.02961731, 0.020217896, -0.018218994, -0.013137817, -0.019165039, -0.030914307, -0.06298828, -0.018112183, 0.01449585, 0.022323608, 0.050689697, -0.009307861, 0.025268555, 0.037078857, -0.043640137, 0.038909912, -0.01272583, -0.020874023, 0.008407593, 0.03616333, 0.009307861, 0.03781128, -0.02545166, -0.011291504, -0.018478394, -0.00076055527, 0.034606934, 0.016784668, -0.06085205, -0.011169434, 0.041992188, 0.049316406, 0.010925293, 0.013343811, 0.006576538, 0.019241333, 0.024551392, -0.0060577393, 0.019897461, -0.005847931, 0.01928711, -0.0070648193, 0.007499695, 0.016647339, -0.011550903, 0.0003631115, 0.012413025, 0.03579712, 0.014709473, 0.013687134, 0.018798828, 0.0054016113, 0.0069122314, 0.004875183, 0.0050735474, 0.04547119, 0.028930664, -0.013679504, -0.00027155876, -0.0039520264, 0.008506775, 0.02456665, -0.0019140244, 0.0345459, 0.01777649, 0.03375244, -0.0030822754, -0.026870728, 0.016403198, 0.013900757, 0.027160645, 0.02507019, -0.0647583, -0.034210205, -0.028579712, 0.04736328, 0.035369873, 0.044433594, -0.009162903, 0.049224854, -0.023025513, -0.034942627, 0.019119263, -0.016204834, 0.016860962, 0.024169922, -0.009788513, -0.011894226, -0.032592773, 0.03125, 0.02784729, -0.03237915, 0.04034424, -0.010925293, 0.011260986, -0.039764404, 0.00705719, -0.030914307, -0.050689697, 0.024002075, 0.022277832, -0.046447754, -0.0050086975, 0.023635864, 0.003967285, -0.00066280365, -0.03062439, 0.013839722, -0.017333984, 0.019058228, 0.03768921, 0.0006699562, 0.0077209473, -0.0007786751, -0.029693604, 0.041259766, -0.021896362, 0.06463623, -0.015960693, 0.013259888, 0.013206482, 0.047088623, 0.051849365, 0.009407043, 0.01763916, -0.00014591217, -0.027297974, -0.015625, -0.018585205, 0.005973816, -0.011947632, -0.0012693405, 0.0067100525, 0.013618469, 0.008987427, 0.032348633, 0.024536133, -0.02128601, -0.008331299, -0.03640747, 0.032928467, 0.0031909943, 0.04486084, -0.044036865, -0.012748718, -0.013282776, -0.013168335, -0.042144775, -0.035858154, -0.05340576, 0.022735596, -0.041992188, -0.07086182, -0.060821533, 0.021087646, 0.01902771, -0.080078125, -0.042510986, -0.024765015, 0.04260254, -0.004737854, 0.051971436, -0.038482666, -0.033111572, -0.025619507, 0.028839111, -0.040802002, -0.05911255, -0.012084961, -0.006828308, 0.018417358, 0.012687683, 0.057525635, 0.06500244, 0.023925781, 0.007858276, -0.03353882, -0.005153656, -0.029968262, 0.06100464, 0.0047454834, -0.014419556, 0.00014734268, 0.045013428, -0.019592285, 0.05215454, 0.0032138824, -0.032196045, -0.020828247, -0.01524353, -0.030410767, 0.01651001, -0.006324768, -0.02619934, 0.032592773, 0.030410767, -0.016555786, -0.0095825195, 0.025466919, -0.012268066, -0.009269714, -0.014053345, 0.050231934, 0.0076065063, -0.008346558, -0.022644043, -0.021484375, -0.011421204, 0.037200928, -0.011367798, -0.03945923, 0.009651184, 0.01109314, -0.020477295, 0.0019798279, 0.0036849976, -0.008522034, 0.0065994263, -0.02255249, -0.03930664, 0.0027103424, 0.0047798157, 0.009887695, -0.052886963, 0.038208008, 0.08093262, -0.047180176, -0.013763428, 0.01386261, -0.014427185, 0.047088623, -0.011222839, -0.01687622, -0.06112671, 0.0051574707, 0.034332275, -0.027069092, -0.005962372, -0.0184021, -0.011505127, -0.03237915, 0.018539429, 0.029190063, 0.0049095154, -0.033172607, 0.025299072, 0.015419006, 0.06665039, -0.04586792, 0.011604309, -0.027526855, 0.010063171, 0.024841309, 0.013374329, 0.08557129, -0.023040771, 0.018325806, 0.012527466, -0.0027103424, -0.008216858, 0.0074272156, 0.0006284714, -0.0057296753, 0.01007843]}, "B012RMROVG": {"id": "B012RMROVG", "original": "Brand: Hiland\nName: Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze\nDescription: \nFeatures: External Integrated Piezo Ignition. BTU's: 40,000. Uses a 20lb Propane Tank\nStainless Steel Lid Included\nCSA Regulator and Hose Included\nFireglass Included\nThermocouple and Anti Tilt Safety Devices\n", "metadata": {"Name": "Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze", "Brand": "Hiland", "Description": "", "Features": "External Integrated Piezo Ignition. BTU's: 40,000. Uses a 20lb Propane Tank\nStainless Steel Lid Included\nCSA Regulator and Hose Included\nFireglass Included\nThermocouple and Anti Tilt Safety Devices", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0056610107, -0.008972168, -0.06500244, -0.0680542, 0.00087594986, -0.014823914, -0.022857666, 0.05230713, -0.042022705, 0.009918213, -0.039215088, 0.038726807, -0.0010375977, -0.028915405, 0.042419434, -0.031585693, 0.00349617, 0.0036296844, -0.024291992, -0.044128418, -0.015350342, -0.044403076, -0.022216797, 0.061309814, 0.05493164, -0.047729492, -0.077697754, 0.030426025, 0.030258179, 0.035614014, 0.037200928, -8.1419945e-05, 0.0062408447, 0.0033950806, 0.0032482147, -0.032196045, 0.014450073, -0.012779236, -0.024856567, 0.04626465, -0.015655518, 0.02809143, 0.03668213, 0.0029907227, -0.029891968, -0.011482239, -0.039886475, -0.03137207, 0.012283325, 0.023208618, 0.0010290146, 0.00015699863, -0.0012702942, 0.010009766, -0.006214142, -0.0068130493, 0.0036087036, 0.02079773, 0.01171875, -0.005317688, -0.023406982, 0.020935059, 0.01322937, -0.017471313, -0.018692017, 0.018096924, 0.10119629, -0.0053215027, 0.0309906, -0.0473938, -0.030059814, 0.056640625, -0.00017094612, 0.031951904, -0.0619812, -0.0093688965, 0.05493164, 0.0072898865, 0.013084412, 0.019485474, -0.02645874, -0.01739502, 0.03237915, 0.031082153, -0.04296875, 0.025543213, -0.028778076, -0.0063972473, -0.042785645, -0.037963867, -0.02230835, -0.016036987, -0.06762695, 0.0025863647, 0.0070228577, -0.023086548, -0.044006348, -0.103515625, 0.05847168, -0.006801605, 0.015022278, -0.033691406, -0.024642944, 0.03967285, -0.003993988, 0.0259552, -0.0158844, 0.012001038, 0.018310547, 0.019836426, -0.006641388, -0.019729614, -0.009124756, -0.005886078, -0.046905518, 0.041870117, 0.00024330616, -0.0181427, 0.0039863586, 0.017486572, 0.012069702, -0.00051927567, 0.020248413, -0.0024433136, 0.008262634, 0.007698059, -0.04949951, 1.9490719e-05, -0.031707764, 0.0050354004, -0.015541077, 0.022354126, 0.0121154785, 0.046691895, -0.013786316, 0.005001068, 0.024902344, -0.01512146, 0.022872925, -0.04046631, 0.034820557, 0.03793335, 0.0362854, 0.019088745, -0.04336548, 0.05569458, 0.02911377, -0.020599365, -0.033447266, -0.057128906, -0.033172607, -0.034942627, 0.043518066, 0.026901245, -0.008903503, 0.007194519, 0.046142578, -0.024810791, -0.04928589, -0.05831909, 0.027236938, -0.01361084, -0.031402588, 0.013496399, -0.050079346, 0.034820557, 0.0068588257, -0.005004883, 0.015609741, 0.04840088, -0.0023384094, -0.01537323, -0.02154541, 0.006538391, -0.0072631836, -0.004371643, -0.016540527, 0.08972168, 0.047058105, -0.06707764, -0.035736084, -0.060028076, 0.1538086, -0.046142578, 0.010429382, -0.031188965, -0.012313843, -0.038330078, 0.043914795, 0.0018434525, -0.0015115738, 0.015617371, 0.00459671, -0.0670166, 0.024490356, -0.0033569336, -0.030288696, -0.010368347, -0.0025482178, 0.03314209, -0.015014648, 0.0010557175, 0.012664795, 0.031204224, 0.0019817352, -0.008224487, -0.004814148, 0.008644104, -0.018203735, 0.012779236, 0.0073280334, -0.003047943, 0.0070533752, -0.062927246, -0.006385803, 0.031280518, -0.01852417, 0.005836487, 0.0046844482, -0.020126343, 0.008666992, 0.0107803345, 0.0025157928, 0.007724762, 0.011024475, 0.012504578, -0.029281616, -0.001001358, 0.031707764, -0.009490967, 0.045715332, 0.0256958, 0.09240723, 0.071899414, -0.0107040405, 0.028274536, 0.046417236, 0.037872314, -0.038970947, -0.015357971, 0.026138306, -0.013999939, -0.00856781, 0.011802673, 0.012916565, -0.018951416, 0.015312195, -0.016586304, -0.037261963, -0.009376526, 0.03640747, 0.009002686, 0.021759033, 0.041107178, -0.056030273, 0.022857666, -0.0029659271, -0.011268616, -0.017150879, 0.0065307617, -0.0024318695, 0.040771484, -0.0040283203, 0.024932861, 0.021820068, 0.0003709793, 0.046417236, 0.04446411, 0.0070991516, -0.027511597, 0.0061912537, 0.033569336, -0.012969971, -0.038635254, 0.016220093, 0.009048462, -0.009780884, 0.027542114, 0.0032615662, -0.03768921, 0.011550903, -0.045196533, -0.025741577, 0.004711151, 0.06994629, -0.011734009, 0.016555786, 0.021270752, 0.024414062, 0.003982544, 0.020401001, -0.00090789795, -0.0146865845, 0.050933838, -0.02508545, -0.02571106, 0.0039711, -0.017120361, 0.034057617, -0.037750244, -0.008018494, 0.05065918, -0.03201294, 0.048431396, 0.0028305054, 0.015899658, -0.017105103, 0.07446289, 0.04171753, -0.028244019, 0.0088272095, 0.014328003, 0.028335571, 0.020950317, 0.015991211, 0.0008029938, 0.019744873, 0.043762207, 0.030853271, 0.019760132, 0.027954102, 0.020812988, -0.013938904, 0.00944519, 0.023712158, -0.025238037, -0.005794525, -0.011489868, -0.039489746, 0.0151901245, 0.0026683807, -0.025009155, 0.008506775, -0.023391724, -0.010261536, -0.014846802, -0.0077705383, 0.046173096, -0.0059928894, -0.04019165, -0.006275177, 0.010902405, 0.0104904175, 0.023788452, -0.050994873, -0.060058594, 0.008239746, -0.014976501, -0.028457642, -0.036193848, 0.05154419, 0.0124435425, -0.009918213, -0.0035305023, 0.01979065, 0.017654419, -0.031234741, -0.0357666, 0.0037498474, -0.07702637, 0.014701843, -0.030761719, -0.03286743, -0.035217285, 0.032836914, -0.0074157715, -0.06744385, -0.01725769, -0.027435303, 0.022521973, 0.012718201, 0.0042381287, -0.057647705, -0.041778564, -0.060943604, -5.0783157e-05, 0.014419556, -0.04852295, -0.014190674, -0.020065308, 0.035308838, 0.03918457, -0.0309906, 0.025466919, 0.008338928, 0.0140686035, 0.038909912, 0.022323608, 0.02368164, -0.01927185, 0.004180908, 0.018981934, -0.03552246, -0.0033187866, 0.0004146099, -0.0037059784, -0.02432251, -0.00440979, -0.058929443, -0.0055274963, -0.087402344, -0.0028057098, -0.0038967133, -0.049072266, 0.00756073, -0.083618164, -0.062683105, -0.055633545, 0.039123535, 0.00818634, -0.0112838745, 0.046051025, -0.012626648, -0.005203247, -0.030822754, 0.029434204, -0.024429321, -0.008071899, -0.016799927, 0.023223877, 0.048675537, -0.063964844, 0.043304443, 0.053619385, -0.043640137, -0.022903442, 0.008857727, 0.04458618, 0.013404846, 0.012245178, -0.015449524, -0.020324707, -0.016937256, -0.011672974, 0.016098022, 0.07800293, 0.011024475, 0.045013428, 0.0033187866, -0.017089844, -0.053741455, -0.027282715, -0.02116394, 0.021652222, -0.032684326, 0.011131287, -0.009223938, -0.04675293, -0.03479004, -0.029144287, -0.022537231, 0.016235352, -0.011352539, 0.021499634, -0.0060768127, 0.009490967, 0.004196167, 0.021606445, 0.025741577, -0.008285522, -0.040924072, -0.020141602, 0.016021729, -0.021362305, -0.010116577, -0.016326904, 0.041748047, 0.03314209, 0.0035114288, -0.00440979, 0.021224976, 0.019760132, 0.037200928, -0.0004749298, -0.0335083, -0.043518066, 0.040893555, 0.015625, 0.0036735535, -0.034423828, -0.056121826, 0.020339966, -0.056365967, 0.050476074, 0.015327454, -0.015701294, 0.07678223, 0.050994873, -0.0029067993, 0.00045132637, 0.029891968, 0.016281128, 0.0019340515, 0.04977417, 0.0021762848, -0.04055786, 0.019561768, -8.678436e-05, 0.006587982, -0.036376953, -0.053710938, 0.053955078, 0.0034599304, -0.017211914, -0.034851074, 0.016174316, 0.023666382, -0.027999878, 0.01576233, -0.024490356, -0.03353882, -0.050109863, 0.020751953, 0.001493454, -0.013114929, 0.030807495, -0.034820557, 0.03753662, -0.032226562, -0.021057129, 0.0024909973, -0.02406311, 0.0025978088, 0.034118652, 0.007434845, 0.020217896, -0.044952393, 0.0007534027, -0.03125, 0.04348755, 0.02571106, -0.0065231323, 0.059906006, -0.008125305, -0.001411438, 0.026184082, -0.0017232895, 0.034179688, -0.015792847, -0.09063721, 0.026275635, 0.027069092, -0.022445679, -0.064453125, 0.012039185, -0.032196045, 0.038116455, 0.015602112, -0.04095459, -0.022506714, 0.011444092, 0.032714844, -0.03274536, -0.04660034, -0.032287598, 0.0011701584, 0.0065078735, 0.0013103485, -0.0025577545, 0.0040397644, 0.013008118, 0.041381836, -0.050994873, -2.7298927e-05, -0.051635742, 0.009048462, -0.008834839, -0.028427124, 0.0231781, -0.01826477, -0.0062561035, -0.001033783, 0.111328125, 0.03756714, 0.0038337708, -0.05987549, -0.016983032, 0.019134521, 0.025985718, 0.019927979, -0.037872314, -0.025344849, -0.018966675, -0.06060791, -0.058258057, 0.013046265, 0.033935547, -0.015167236, -0.055725098, -0.015289307, 0.054138184, 0.0017280579, -0.012031555, -0.0090408325, 0.017196655, 0.05166626, 0.015914917, -0.07647705, -0.070739746, -0.0016756058, -0.03591919, -0.012809753, -0.01436615, -0.032073975, 0.089416504, 0.009056091, 0.006225586, -0.043701172, -0.013748169, 0.012077332, -0.013084412, 0.026443481, -0.018829346, -0.027130127, -0.014320374, 0.03186035, -0.0619812, 0.046447754, -0.0003376007, -0.015136719, -0.009254456, -0.0132369995, -0.009468079, -0.042755127, 0.00573349, -0.051727295, -0.011505127, 0.018081665, 0.010635376, -0.0057258606, 0.016906738, -0.008041382, -0.014526367, -0.006286621, -0.005130768, 0.0060653687, -0.024230957, -0.029144287, -0.02810669, -0.015670776, 0.004585266, 0.00970459, -0.006439209, 0.0064201355, 0.010032654, 0.0053749084, 0.011444092, -0.010108948, -0.02571106, -0.026916504, -0.04147339, 0.0029392242, -0.0058174133, 0.057037354, -0.013175964, 0.05178833, -0.04171753, 0.039367676, 0.013122559, -0.00023651123, -0.06652832, 0.027450562, 0.027389526, -0.029067993, 0.060394287, 0.027374268, 0.012374878, 0.033477783, -0.013328552, 0.029769897, -0.0045318604, -0.012710571, 0.013092041, 0.007080078, -0.026611328, -0.025650024, 0.081726074, -0.015007019, 0.008293152, -0.03741455, 0.021026611, 0.013122559, 0.0056533813, -0.020950317, -0.010696411, 0.055267334, -0.044647217, -0.018722534, 0.03253174, -0.006801605, -0.03640747, -0.009269714, 0.010467529, -0.025512695, -0.019805908, 0.011268616, -0.05392456, 0.016601562, 0.025039673, 0.0069236755, 0.005077362, -0.01637268, -0.044708252, -0.043121338, 0.013458252, -0.008346558, -0.029159546, -0.026382446, 0.021057129, -0.0075149536, -0.009841919, 0.006790161, 0.020263672, 0.014587402, -0.056640625, -0.05102539, -0.022918701, 0.005897522, -0.029907227, 0.055786133, -0.028625488, -0.002872467, -0.008361816, -0.028137207, -0.00069093704, -0.010932922, -0.05493164, -0.00283432, 0.0024738312, 0.014045715, -0.018371582, 0.025390625, 0.06829834, -0.048736572, -0.028549194, -0.04248047, -0.013572693, 0.030059814, -0.037841797, 0.08093262, 0.013595581, -0.0027236938, 0.025009155, 0.00957489, -0.03463745, 0.01007843, 0.01209259, -0.044189453, -0.06689453, -0.028549194, -0.014709473, -0.040618896, -0.012298584, -0.026794434, 0.03543091, -0.005138397, -0.01007843, -0.0357666, -0.013496399, 0.0025424957, -0.041503906, -0.0034275055, -0.02116394, 0.021209717, 0.0075569153, 0.026809692, -0.0017442703, -0.024795532, 0.019805908, 0.0048561096, -0.0036735535, 0.006099701, -0.004398346, 0.018798828, 9.1671944e-05, 0.0035438538, 0.01826477, -0.023712158, 0.010803223, 0.0309906, -0.007888794, 0.024932861, -0.04345703, 0.0005197525, -0.021118164, -0.038330078, 0.020767212, 0.021560669, -0.030441284, 0.014953613, 0.05682373, 0.040008545, 0.020187378, 0.020248413, 0.03062439, -0.004459381, -0.04208374, 0.010314941, 0.060821533, -0.03112793, -0.044036865, -0.0413208, -0.012969971, 0.012664795, -0.0022659302, 0.033081055, 0.018676758, 0.0010375977, -0.009132385, 0.0045814514, 0.008666992, 0.0019187927, 0.009887695, 0.0014591217, -0.021743774, 0.01576233, 0.017929077, -0.023376465, 0.068725586, -0.021911621, -0.0184021, 0.023361206, -0.013191223, 0.02684021, -0.017578125, 0.031097412, 0.025054932, -0.05065918, -0.00029921532, -0.011787415, 0.016235352, -0.00920105, 0.0019950867, 0.016937256, 0.04840088, -0.0036373138, -0.0015172958, -0.024749756, 0.03414917, -0.00039744377, 0.025924683, 0.00856781, 0.006767273, -0.032409668, 0.07299805, -0.0005669594, 0.0036716461, -0.022827148, -0.023376465, 0.07366943, 0.0075416565, 0.022033691, 0.05886841, -0.020568848, 0.0051002502, -0.0060653687, 0.015457153, -0.026794434, -0.012207031, -0.01436615, -0.024856567, 0.02571106, 0.0023021698, -0.015731812, 0.024505615, -0.010543823, -0.0038814545, 0.033691406, -0.05319214, 0.035888672, 0.020065308, -0.026062012, -0.04611206, -0.012382507, 0.003643036, -0.019378662, 0.031677246, 0.022415161, 0.029312134, 0.04827881, -0.007247925, -0.029403687, 0.0395813, -0.0049476624, 0.010108948, -0.05319214, 0.02935791, 0.017181396, -0.00340271, -0.03302002, 0.0054740906, -0.0132751465, 0.008621216, 0.0079193115, -0.033996582, -0.048980713, -0.020187378, 0.013069153, -0.016448975, -0.00013530254, -0.011878967, -0.022705078, 0.02394104, -0.025939941, 0.006828308, -0.031311035, -0.017654419, -0.021591187, -0.008155823, -0.0413208, 0.015533447, -0.00083494186, -0.01171875, 0.00025820732, -0.019500732, 0.034179688, -0.044799805, 0.027191162, -0.010910034, 0.010368347, -5.00679e-05, 0.019622803, -0.018417358, -0.054016113, -0.046417236, 0.0418396, -0.07873535, -0.034423828, 0.0001732111, -0.008026123, 0.0051727295, -0.0104599, 0.023712158, 0.018295288, 0.051483154, -0.0050621033, 0.014839172, -0.07299805, -0.019210815, 0.040008545, -0.011581421, 0.018554688, -0.05645752, 0.034576416, 0.02810669, 0.012527466, 0.049072266, 0.021514893, -0.058044434, -0.0082473755, -0.03387451, 0.016189575, 0.0064315796, -0.010231018, 0.04296875, 0.022003174, -0.057006836, 0.017440796, -0.006542206, 0.049194336, 0.002544403, -0.04034424, 0.047576904, -0.030670166, -0.029037476, -0.057006836, -0.035308838, 0.019882202, -0.057006836, -0.0056991577, 0.057037354, 0.0047073364, -0.035308838, 0.0033187866, 0.03604126, -0.04119873, 0.040130615, -0.036010742, -0.007041931, 0.017745972, -0.055023193, 0.0049705505, -0.004753113, 0.03100586, -0.0037193298, 0.02015686, -0.04916382, -0.07897949, -0.014450073, 0.019607544, -0.06585693, -0.059936523, -0.04586792, -0.012680054, -0.010887146, 0.03665161, -0.03869629, 0.04449463, -0.033599854, 0.013313293, -0.028244019, 0.0082092285, -0.0054016113, 0.011268616, -0.021011353, 0.066467285, 0.013618469, 0.04638672, -0.01713562, -0.038879395, -0.042755127, 0.060821533, -0.031433105, -0.003768921, 0.007843018, -0.041656494, 0.02330017, -0.009689331, 0.010643005, 0.00019836426, 0.01739502, 0.06945801, -0.03161621, 0.024978638]}, "B08JG6NS6L": {"id": "B08JG6NS6L", "original": "Brand: WADEO\nName: WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17\" and 22\" Table Grill and Most LP Gas Grill with 3/8'' Connect Fitting\nDescription: ATTENTION!!!
      Only Use for Low Pressure System.
      Please keep away from children.
      The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
      DO\u00a0NOT\u00a0PUT\u00a0THE\u00a0HOSE\u00a0TOO\u00a0CLOSE\u00a0TO\u00a0THE\u00a0COOKING\u00a0AREA\u00a0OR\u00a0IT\u00a0MAY\u00a0CAUGHT\u00a0HOSE\u00a0MELTING\u00a0AND GAS LEAKAGE.\nFeatures: \ud83c\udf1fTwo ways to Use: If your grill is Blackstone 17 \"and 22\" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8'' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly.\n\ud83c\udf1fFits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8\" male flare connection. And it also suitable for Blackstone 17\u201d and 22\u201d table grill (Need to use the propane elbow adapter).\n\ud83c\udf1fGreat Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8'' male flare.\n\ud83c\udf1fMaterial: Durable material provides secure and safe connection from your grill to other appliances. and it's only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use.\n\ud83c\udf1fPlease Note: Working Temperature rang: -30\u2103~50\u2103, please keep your grill away from fire in case the hose melting and result in gas leakage; \u2757Only use for low pressure system, you cannot connect this kit on a high pressure application. \u2757Before buying, make sure the kit's size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.\n", "metadata": {"Name": "WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17\" and 22\" Table Grill and Most LP Gas Grill with 3/8'' Connect Fitting", "Brand": "WADEO", "Description": "ATTENTION!!!
      Only Use for Low Pressure System.
      Please keep away from children.
      The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
      DO\u00a0NOT\u00a0PUT\u00a0THE\u00a0HOSE\u00a0TOO\u00a0CLOSE\u00a0TO\u00a0THE\u00a0COOKING\u00a0AREA\u00a0OR\u00a0IT\u00a0MAY\u00a0CAUGHT\u00a0HOSE\u00a0MELTING\u00a0AND GAS LEAKAGE.", "Features": "\ud83c\udf1fTwo ways to Use: If your grill is Blackstone 17 \"and 22\" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8'' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly.\n\ud83c\udf1fFits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8\" male flare connection. And it also suitable for Blackstone 17\u201d and 22\u201d table grill (Need to use the propane elbow adapter).\n\ud83c\udf1fGreat Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8'' male flare.\n\ud83c\udf1fMaterial: Durable material provides secure and safe connection from your grill to other appliances. and it's only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use.\n\ud83c\udf1fPlease Note: Working Temperature rang: -30\u2103~50\u2103, please keep your grill away from fire in case the hose melting and result in gas leakage; \u2757Only use for low pressure system, you cannot connect this kit on a high pressure application. \u2757Before buying, make sure the kit's size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009338379, 0.0010023117, -0.042297363, -0.036102295, -0.031402588, -0.00592041, -0.05001831, 0.0008225441, -0.006877899, 0.011619568, -0.01247406, 0.020950317, -0.0036697388, -0.021453857, 0.012298584, -0.03552246, 0.023376465, 0.016159058, 0.0146484375, -0.013938904, -0.008911133, 0.0151901245, 0.0005722046, 0.048828125, 0.029510498, -0.041290283, 0.043029785, 0.0045394897, 0.040100098, 0.013397217, 0.026168823, -0.039733887, 0.05166626, 0.0047302246, -0.040649414, -0.027954102, -0.013999939, -0.021133423, -0.03488159, 0.0033302307, 0.012275696, -0.0006933212, -0.06402588, 0.020248413, -0.059143066, -0.060058594, 0.003206253, -0.017913818, 0.015136719, 0.011505127, -0.00036907196, 0.013458252, -0.011238098, -0.011497498, -0.0107421875, -0.0124053955, 0.011833191, -0.03665161, 0.017120361, 0.032073975, 0.0050086975, 0.0069503784, 0.00705719, -0.03314209, -0.032592773, 0.0055503845, 0.05886841, -0.024291992, -0.020187378, -0.013687134, 0.033172607, 0.009384155, 0.023162842, -0.0038852692, -0.018966675, -0.037261963, 0.02116394, -0.013053894, 0.008964539, 0.015655518, 0.0046424866, -0.06744385, -0.008605957, 0.01360321, -0.0016908646, 0.023986816, -0.008865356, -0.012458801, -0.02848816, -0.035339355, -0.031585693, -0.007499695, -0.035339355, -0.011138916, -0.012046814, -0.020141602, -0.046081543, -0.052520752, 0.020446777, 0.031051636, 0.003873825, -0.02067566, 0.044128418, -0.01751709, 0.018508911, 0.05581665, -0.014457703, -0.018478394, 0.018173218, -0.0028133392, -0.011756897, 0.0032176971, 0.032562256, -0.028884888, -0.010543823, 0.010421753, 0.01878357, -0.0046653748, 0.01965332, -0.041046143, -0.013511658, -0.006576538, 0.009033203, -0.0184021, 0.033477783, 0.015205383, -0.017288208, 0.011856079, -0.06008911, 0.017715454, 0.00065374374, 0.0055389404, 0.036224365, 0.08532715, 0.016860962, -0.008987427, 0.027404785, -0.0029621124, 0.03353882, 0.0031166077, -0.022903442, -0.028411865, 0.0048599243, 0.008972168, -0.0058517456, 0.012245178, 0.019866943, 0.0101623535, 0.008087158, -0.029800415, -0.0009870529, -0.014854431, 0.03366089, 0.0206604, -0.03164673, -0.009292603, 0.02746582, -0.027038574, 0.0039405823, -0.06524658, -0.04159546, -0.013374329, 0.027038574, -0.008811951, -0.010574341, 0.019577026, -0.0031585693, -0.0073928833, 0.030563354, 0.06976318, 0.016159058, -0.0135650635, 0.03366089, 0.014137268, -0.007850647, -0.004119873, -0.076293945, 0.09124756, 0.09716797, -0.14221191, -0.06561279, -0.058441162, 0.14526367, -0.023849487, 0.021713257, -0.013916016, 0.005874634, -0.03567505, -0.014785767, 0.0059127808, 0.014518738, 0.037506104, 0.0008134842, -0.027191162, -0.015098572, -0.0014457703, 0.026565552, 0.027008057, -0.0033283234, 0.0032176971, -0.021392822, 0.018173218, 0.0022258759, 0.01335144, 0.055511475, -0.0032596588, 0.0055503845, 0.0127334595, 0.03741455, -0.0012979507, -0.010955811, -0.030593872, 0.00548172, -0.013298035, -0.04434204, 0.032440186, 0.010345459, -0.025054932, 0.01184845, -0.028671265, 0.039916992, 0.011253357, 0.021362305, 0.056030273, -0.017745972, -0.009605408, -0.013069153, -0.006439209, -0.026306152, -0.004840851, 0.02116394, 0.03768921, 0.09307861, 0.093444824, -0.02796936, 0.016921997, 0.028396606, 0.04714966, -0.038116455, -0.0023097992, 0.013282776, 7.8737736e-05, -0.050079346, -0.020095825, -0.050628662, -0.077697754, -0.0028247833, -0.005332947, -0.056427002, -0.017211914, 0.06542969, 0.041870117, 0.02204895, 0.037841797, -0.031585693, 0.039367676, -0.033416748, -0.019302368, -0.029388428, 0.019042969, 0.0064582825, 0.016159058, 0.011077881, -0.0039100647, 0.0032863617, 0.05041504, 0.02116394, 0.022521973, -0.011138916, 0.026443481, -0.00491333, -0.049468994, -0.013961792, -0.0018501282, -0.03375244, 0.031677246, -0.031951904, 0.023452759, -0.020492554, -0.007865906, 0.011802673, 0.027267456, -0.01826477, -0.019607544, 0.015068054, 0.0053138733, -0.005138397, -0.0033302307, -0.013305664, 0.00894165, 0.056549072, -0.019210815, -0.003993988, -0.030227661, -0.008331299, -0.01725769, 0.06530762, 0.008270264, 0.014198303, -0.013717651, 0.0008788109, 0.031463623, -0.03387451, 0.0058670044, -0.0066566467, 0.019180298, -0.008110046, 0.037384033, 0.028427124, -0.0657959, 0.046569824, 0.03945923, 0.010231018, 0.0051841736, 0.0027923584, 0.013374329, -0.00724411, 0.02319336, 0.051940918, 0.076293945, 0.037628174, 0.018844604, -0.05126953, -0.027755737, -0.0010051727, 0.01537323, -0.041137695, -0.034362793, -0.00060606, 0.004486084, 0.008834839, -0.010040283, -0.011756897, 0.012138367, 0.0064353943, 0.00472641, -0.0006661415, 0.091918945, 0.020874023, -0.03363037, 0.002571106, -0.036193848, -0.031433105, 0.014259338, 0.00014066696, -0.038116455, 0.037261963, 0.017181396, -0.04043579, 0.0005059242, 0.013153076, -0.043395996, 0.008995056, -0.05670166, 0.016525269, -0.028320312, -0.04788208, -0.05496216, 0.011367798, -0.075683594, -0.011146545, -0.034851074, -0.063964844, -0.001830101, 0.07458496, 0.008178711, -0.041046143, -0.016723633, 0.014801025, 0.010551453, 0.019165039, 0.0113220215, -0.046875, -0.02053833, -0.0158844, -0.01902771, 0.031982422, -0.026504517, 0.038848877, 0.01838684, 0.012260437, 0.026931763, -0.016967773, 0.019012451, 0.0059928894, 0.015563965, 0.044158936, 0.050750732, 0.016189575, -0.035186768, 0.012130737, 0.06262207, -0.07244873, -0.026733398, 0.012199402, 0.015007019, 0.014022827, -0.024490356, -0.009803772, -0.051330566, -0.016296387, 0.027755737, 0.008010864, -0.007507324, -0.016845703, -0.08514404, -0.01626587, -0.036376953, 0.022521973, 0.0317688, -0.017654419, 0.037475586, -0.032226562, 0.036224365, -0.034423828, 0.013221741, -0.03149414, -0.01576233, -0.013961792, 0.039520264, 0.040496826, -0.06970215, 0.006542206, 0.027450562, -0.021972656, 0.020080566, 0.020706177, 0.036254883, 0.020324707, -0.009475708, 0.004886627, -0.03640747, -0.035491943, -0.024749756, -0.008399963, 0.027130127, 0.011856079, -0.001455307, 0.007167816, -0.017028809, -0.06304932, -0.032165527, -0.036346436, 0.0039253235, -0.010955811, -0.025009155, -0.023803711, -0.06402588, -0.0019874573, -0.07312012, 0.0054016113, -0.00598526, 0.045959473, 0.022720337, 0.02418518, 0.13342285, 0.009613037, 0.059631348, 0.0010414124, -0.0055885315, 0.0013656616, -0.04537964, 0.062286377, 0.029724121, -0.017745972, -0.049041748, 0.016067505, 0.019073486, -0.0035476685, -0.005180359, -0.013450623, 0.071899414, 0.012878418, -0.0002014637, 0.009208679, 0.022705078, 0.008239746, -0.00982666, -0.019470215, -0.028320312, -0.06274414, 0.02180481, -0.09039307, 0.07623291, 0.008895874, -0.006816864, 0.04095459, 0.031707764, -0.027893066, 0.005214691, 0.042907715, -0.008155823, 0.00081825256, 0.030334473, -0.028442383, -0.04046631, 0.005962372, -0.0017652512, 0.035369873, -0.0017566681, -0.023757935, 0.0030918121, -0.009010315, -0.03543091, -0.015029907, 0.015136719, -0.0154953, 0.016555786, 0.013267517, -0.03527832, -0.024917603, -0.025527954, -0.0055618286, 0.03010559, -0.02432251, -0.050445557, 0.028961182, -0.0013246536, -0.02784729, 0.006160736, 0.031463623, -0.025970459, 0.04827881, 0.030380249, -0.0026626587, 0.026947021, -0.020263672, -0.03125, -0.020004272, 0.014007568, 0.06365967, 0.011245728, -0.017929077, -0.041778564, -0.0038471222, -0.001996994, 0.0001373291, 0.05831909, -0.008110046, -0.06210327, -0.039733887, -0.04852295, 0.0121154785, -0.048187256, 0.0010719299, -0.032836914, -0.005844116, 0.019180298, -0.061431885, -0.0033607483, 0.0037117004, 0.017791748, -0.045013428, -0.028411865, -0.022750854, 0.0023784637, -0.031234741, 0.006072998, -0.0059776306, -0.013214111, -0.0146102905, 0.0018787384, -0.050750732, 0.012504578, -0.08215332, -0.009803772, 0.060791016, 0.03604126, -0.035858154, -0.020935059, 0.006072998, 0.009895325, 0.08581543, -0.010505676, 0.009231567, -0.03945923, -0.014778137, 0.02015686, 0.0075187683, 0.009971619, 0.025344849, -0.017211914, -0.04623413, -0.011207581, -0.076293945, 0.029510498, 0.05593872, -0.023025513, -0.030380249, 0.017089844, 0.060028076, 0.0038452148, 0.022262573, -0.028244019, 0.018997192, -0.0053710938, 0.0103302, -0.053619385, -0.021514893, 0.014144897, -0.016357422, -0.011001587, 0.01084137, -0.016967773, 0.049713135, 0.0021877289, -0.014404297, 0.011062622, 0.004436493, 0.002696991, -0.018356323, 0.037109375, -0.054870605, 0.013618469, -0.049102783, -0.0059127808, -0.038635254, 0.04675293, 0.046813965, -0.0047302246, 0.020080566, 0.0021915436, -0.0052757263, -0.020233154, 0.027389526, 0.014419556, -0.009422302, -0.04421997, -0.0390625, 0.026626587, -0.05102539, 0.0011129379, 0.0012454987, 0.00081825256, 0.004058838, -0.015914917, -0.013725281, -0.03756714, -0.054870605, -0.008918762, -0.014053345, 0.011184692, -0.04925537, 0.01638794, 0.06112671, -0.005367279, -0.0019025803, -0.0098724365, -0.018341064, -0.015113831, -0.008415222, 0.0011014938, -0.03137207, 0.0027008057, 0.024124146, -0.016662598, -0.0027751923, 0.013656616, -0.019699097, -0.015991211, -0.040893555, -0.0070877075, -0.0019445419, -0.016845703, 0.06500244, -0.010238647, -0.023803711, 0.027770996, -0.012916565, 0.047332764, -0.0005645752, -0.035125732, 0.0069007874, -6.6280365e-05, 0.0070228577, -0.017852783, 0.073913574, 0.012939453, 0.004802704, -0.0703125, 0.00026607513, -0.0047416687, 0.04623413, 0.010864258, -0.039001465, 0.04675293, -0.053527832, -0.045684814, 0.026657104, 0.007335663, -0.040283203, -0.005672455, 0.016525269, -0.03543091, -0.021697998, 0.028060913, 0.01727295, -0.0418396, 0.026657104, -0.07537842, 0.0435791, 0.0056533813, -0.057037354, -0.030715942, -0.03543091, 0.0028705597, -0.0022792816, -0.026260376, -0.005142212, 0.019729614, -0.024291992, -0.037261963, 0.028656006, 0.016189575, -0.05218506, -0.014862061, 0.011016846, 0.03817749, 0.011695862, 0.037017822, -0.002746582, -0.0055274963, 0.015960693, -6.133318e-05, 0.014915466, -0.0019340515, -0.011390686, 0.0112838745, 0.0010232925, 0.012802124, 0.016540527, -0.025497437, 0.036071777, -0.008666992, -0.041931152, -0.00831604, 0.015701294, -0.043823242, -0.064575195, 0.037597656, 0.027496338, 0.012435913, 0.015220642, -0.014671326, -0.07684326, 0.01272583, -0.00076675415, -0.091308594, -0.07348633, -0.06347656, -0.03579712, 0.014556885, -0.0024986267, 0.002374649, 0.03225708, -0.0022468567, 0.027389526, -0.0362854, -0.021942139, -0.014465332, 0.033843994, 0.020477295, -0.0038337708, 0.00026249886, -0.05114746, 0.02368164, -0.059631348, -0.08703613, -0.005092621, 0.033569336, 0.01687622, -0.016571045, 0.0040016174, 0.030929565, -0.030639648, 0.05783081, 0.016677856, -0.004322052, -0.021636963, 0.0038852692, -0.0090408325, 0.012359619, -0.048187256, 0.0050735474, -0.059539795, 0.027404785, 0.0071029663, 0.07244873, -0.0690918, 0.0020599365, 0.005672455, 0.05432129, -0.0077781677, 0.032684326, 0.00080537796, -0.0054626465, -0.002861023, -0.014892578, -0.024414062, -0.039733887, -0.008094788, -0.050598145, 0.012878418, -0.010658264, 0.00573349, -0.00466156, -0.0039138794, 0.024383545, -0.047058105, 0.043182373, -0.009384155, -0.012046814, 0.025787354, -0.009414673, 0.019561768, -0.016357422, 0.018997192, -0.007850647, -0.00045657158, -0.039642334, 0.004562378, 0.029266357, -0.005680084, 0.022079468, -0.04272461, 0.001244545, 0.03540039, -0.032836914, -0.020614624, 1.9490719e-05, 0.0034923553, -0.033599854, -0.0028495789, 0.0009813309, 0.0020656586, 0.010650635, 0.017730713, 0.059692383, -0.020828247, 0.024780273, -0.0440979, -0.062805176, -0.0006904602, -0.054260254, -0.0074920654, -0.004005432, -0.027862549, 0.014419556, -0.053863525, 0.009437561, 0.030059814, -0.015960693, 0.03540039, -0.02243042, 0.006877899, -0.0231781, -0.020385742, -0.04421997, -0.028701782, 0.0027446747, 0.010253906, -0.012046814, -0.0206604, -0.015960693, 0.009971619, 0.0035896301, -0.017684937, -0.0076141357, -0.001953125, -0.0087509155, 0.037017822, -0.0084991455, -0.03994751, -0.048034668, -0.017089844, -0.029876709, 0.004638672, 0.030395508, -0.020233154, 0.038757324, -0.0012998581, 0.032287598, 0.043670654, -0.0138168335, 0.030075073, 0.0036373138, -0.013313293, 0.038360596, -0.023742676, -0.014282227, -0.037384033, -0.015335083, 0.0042877197, -0.016036987, -0.014801025, -0.0016813278, -0.037506104, 0.007106781, -0.032073975, 0.033172607, -0.03778076, -0.006252289, -0.007843018, -0.038208008, 0.029464722, -0.028320312, -0.0435791, -0.04257202, -0.00920105, -0.03161621, 0.03741455, 0.0059013367, -0.009307861, 0.026641846, -0.018310547, -0.050048828, -0.031921387, -0.004257202, 0.024383545, 0.050354004, -0.003856659, 0.03439331, 0.004989624, -0.034851074, -0.03918457, 0.021972656, -0.041229248, 0.0054473877, -0.008880615, 0.012123108, 0.0055160522, 0.0053710938, 0.030700684, 0.091674805, 0.0027122498, 0.007133484, -0.02798462, 0.014389038, -0.0051498413, 0.005710602, 0.0033130646, -0.022720337, -0.027328491, 0.0073509216, -0.0044021606, 0.049468994, 0.024276733, -0.01890564, 0.0116119385, -0.00024604797, -0.0054016113, 0.000333786, -0.01285553, 7.122755e-05, 0.027526855, 0.034851074, -0.033050537, 0.011558533, 0.005630493, 0.015083313, 0.03286743, -0.016815186, 0.012046814, -0.017852783, -0.054718018, -0.008575439, -0.009399414, 0.0058898926, 0.0069274902, -0.034973145, -0.028030396, -0.0013933182, 0.011169434, -0.02130127, 0.008354187, 0.0031528473, 0.022705078, 0.016098022, 0.017562866, -0.0049476624, -0.029708862, -0.028305054, -0.03152466, -0.064331055, 0.020614624, 0.009513855, -0.015853882, -0.009635925, -0.020736694, -0.0025539398, -0.015174866, -0.027023315, -0.032196045, -0.07128906, 0.046722412, 0.033691406, 0.004840851, 0.002544403, 0.027420044, -0.006175995, -0.05102539, 0.017990112, 0.050354004, 0.0015525818, -0.078308105, 0.008613586, 0.023117065, 0.0625, -0.013908386, -0.044006348, -0.061279297, 0.058776855, 0.006793976, -0.018997192, 0.04824829, -0.034484863, 0.0096206665, 0.011619568, -0.03112793, -0.0234375, 0.002696991, 0.062194824, -0.010635376, 0.013496399]}, "B07Q7MCXNG": {"id": "B07Q7MCXNG", "original": "Brand: Flame King\nName: Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "metadata": {"Name": "Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve", "Brand": "Flame King", "Description": "", "Features": "Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.031021118, 0.01625061, -0.035614014, -0.05117798, 0.017852783, -0.02645874, -0.035705566, -0.0098724365, -0.054138184, -0.007549286, -0.006263733, 0.03567505, -0.03289795, -0.035095215, 0.048736572, -0.04345703, 0.02720642, 0.017623901, 0.05493164, -0.014389038, 0.02545166, 0.0027427673, 0.026855469, 0.08496094, 0.04336548, -0.043273926, 0.018112183, 0.025863647, 0.026748657, 0.01826477, 0.022399902, -0.022155762, 0.049316406, -0.023483276, -0.019485474, -0.017074585, -0.018936157, -0.0048446655, -0.041992188, 0.0027008057, -0.0011577606, 0.00071048737, 0.0064430237, -0.049713135, 0.0030174255, -0.02331543, -0.00083351135, -0.04788208, 0.031951904, 0.0090408325, 0.008453369, 0.022094727, -0.00027894974, 0.034088135, -0.004737854, 0.056152344, 0.04257202, -0.037506104, 0.0063171387, -0.019195557, 0.008804321, 0.05581665, 0.021820068, 0.02281189, -0.048309326, 0.0107803345, 0.08013916, -0.04269409, 0.031402588, -0.026168823, -0.010688782, 0.03010559, 0.014167786, 0.033691406, -0.026107788, -0.020690918, 0.031677246, 0.032928467, 0.021987915, 0.016235352, 0.0019483566, -0.008415222, 0.04083252, 0.00187397, -0.033081055, 0.004348755, -0.0206604, -0.0023670197, -0.0015182495, -0.002828598, -0.005466461, 0.008918762, 0.032958984, 0.0026073456, -0.036621094, -0.028060913, -0.04876709, -0.07800293, 0.042999268, 0.043151855, 0.009880066, -0.043762207, 0.066711426, -0.015960693, 0.024002075, 0.09887695, -0.019958496, -0.017044067, 0.0069351196, -0.00724411, 0.020523071, -0.06713867, 0.014099121, -0.027877808, 0.001291275, 0.034820557, 0.0064926147, 0.01789856, 0.020385742, 0.026733398, 0.036254883, 0.023757935, -0.0070877075, -0.0030651093, -0.0041923523, -0.017410278, -0.04107666, -0.012336731, -0.029037476, 0.0340271, -0.016098022, -0.025939941, 0.011253357, 0.07531738, 0.026931763, -0.015098572, -0.0031108856, -0.0027236938, 0.020736694, -0.022827148, -0.015525818, 0.013572693, 0.04727173, -0.0023479462, -0.03213501, 0.05886841, -0.008384705, -0.023880005, 0.01524353, -0.033111572, -0.040771484, -0.066711426, 0.013336182, -0.0047073364, 0.008888245, -0.0340271, -0.001958847, -0.021591187, 0.014091492, -0.0284729, 0.00793457, -0.025817871, -0.051971436, -0.0052833557, -0.016052246, 0.02420044, 0.0137786865, 0.0134887695, 0.019638062, 0.049957275, 0.007949829, 0.030334473, -0.0025234222, 0.016555786, 0.0049552917, -0.02166748, 0.00047063828, 0.10961914, 0.060516357, -0.15454102, -0.06890869, -0.08093262, 0.1628418, -0.05307007, 0.0067481995, -0.03765869, 0.011924744, -0.04611206, 0.024353027, 0.008392334, 0.023513794, 0.02168274, -0.023651123, -0.039794922, -0.016693115, 0.0005578995, -0.0036296844, 0.0010957718, -0.0027103424, 0.008575439, 0.037322998, -0.0023059845, 0.015716553, 0.014350891, 0.025543213, -0.029724121, 0.010002136, -0.0064468384, 0.05178833, 0.064575195, -0.004562378, 0.005317688, -0.0038375854, -0.02027893, -0.021484375, -0.0010166168, -0.021591187, 0.025268555, 0.008140564, 0.00023591518, 0.02809143, -0.024047852, 0.023010254, 0.026626587, -0.013809204, 0.0008177757, -0.03741455, 0.021347046, 0.0012283325, -0.0053482056, 0.05407715, 0.03933716, 0.088378906, 0.07324219, -0.02041626, 0.017974854, 0.031082153, -0.006263733, -0.01902771, 0.025283813, 0.00081682205, -0.017074585, -0.027496338, 0.0519104, -0.035858154, -0.04525757, -0.0005197525, 0.041534424, 0.0067863464, 0.012580872, 0.06732178, -0.020889282, 0.0061302185, 0.014572144, -0.0068626404, 0.011413574, -0.002878189, 0.023330688, -0.059387207, 0.02178955, -0.020477295, 0.017410278, 0.021316528, 0.0028457642, 0.06677246, -0.023529053, 0.061035156, 0.03616333, -0.00472641, -0.0126953125, 0.006515503, 0.003112793, 0.00522995, 0.0020885468, -0.024261475, 0.00047397614, -0.029006958, 0.03363037, -0.00944519, -0.015136719, -0.00484848, -0.055511475, 0.047851562, 0.01687622, 0.07458496, 0.06341553, 0.055419922, -0.00907135, -0.023422241, -0.020202637, -0.0056419373, 0.040374756, 0.00349617, 0.008110046, 0.017944336, 0.0062713623, 0.015205383, -0.022598267, 0.030853271, -0.04257202, 0.029541016, 0.051635742, -0.04663086, 0.050720215, -0.017868042, -0.020263672, -0.025756836, 0.03213501, -0.004005432, -0.055725098, -0.0022563934, 0.016967773, 0.028121948, 0.015510559, 0.035003662, 0.016357422, 0.008728027, 0.04498291, 0.06100464, 0.057128906, -0.021057129, 0.011299133, 0.014099121, 0.025665283, 0.021484375, -0.03152466, 0.026260376, 0.014854431, -0.031341553, -0.003156662, -0.006465912, -0.014335632, 0.015808105, 0.019378662, 0.0005507469, -0.011047363, -0.015853882, 0.033233643, -0.028274536, -0.07476807, -0.044403076, -0.014595032, 0.006095886, -0.010398865, -0.013412476, -0.046661377, 0.035980225, -0.00630188, -0.05895996, 0.020828247, 0.0043144226, 0.016540527, 0.00409317, -0.013961792, 0.0064201355, -0.010276794, -0.042144775, -0.026535034, -0.008354187, -0.07055664, 0.019699097, -0.037139893, -0.04498291, -0.027160645, 0.044311523, 0.004005432, -0.03793335, -0.02822876, 0.04449463, 0.018447876, 0.0135269165, 0.027740479, -0.09454346, -0.002571106, 0.02684021, -0.013069153, 0.06536865, -0.017990112, -0.016738892, 0.030532837, 0.008460999, 0.046203613, -0.05267334, 0.062927246, -0.0116119385, 0.04776001, 0.037475586, 0.021469116, -0.0050354004, -0.036712646, -0.015701294, 0.038024902, -0.00042366982, -0.014289856, -0.04940796, -0.030883789, 0.013755798, 0.051757812, -0.019882202, 0.00881958, -0.086242676, 0.024414062, -0.030853271, -0.011054993, 0.0039749146, 0.0053482056, -0.018753052, -0.057769775, 0.0126953125, -0.00881958, -0.00919342, 0.018127441, -0.03555298, 0.029937744, -0.011749268, -0.03869629, -0.01373291, -0.010932922, -0.01789856, 0.028152466, 0.043548584, -0.04034424, -0.00831604, 0.024856567, -0.02130127, -0.011634827, -0.0052375793, 0.031677246, 0.0011548996, -0.003742218, -0.003162384, -0.02722168, -0.0077590942, -0.02330017, -0.048706055, -0.015144348, -0.008514404, -0.016693115, 0.004032135, -0.015594482, -0.05496216, -0.032196045, -0.031097412, -0.018508911, -0.020767212, -0.02229309, -0.008522034, -0.041809082, -0.0058250427, -0.0048713684, -0.0057640076, 0.016937256, -0.013618469, 0.011787415, -0.025436401, 0.0005893707, 0.008987427, 0.040496826, 0.0005841255, 0.0025157928, -0.005794525, -0.0103302, 0.017837524, -0.0035896301, -0.017196655, -0.0043563843, 0.0005173683, 0.0056648254, -0.005748749, -0.0045547485, -0.015838623, 0.040985107, 0.035095215, 0.005004883, -0.0013256073, 0.018157959, 0.009536743, -0.013633728, 0.007835388, -0.003042221, -0.05102539, 0.03286743, -0.087646484, 0.007637024, 0.024978638, -0.023529053, 0.04156494, -0.00075626373, -0.008377075, 0.007709503, 0.0038700104, 0.010368347, 0.013191223, 0.024337769, -0.015716553, -0.004589081, 0.0074310303, -0.010353088, -0.024658203, -0.050842285, -0.010643005, -0.0035915375, 0.0107040405, 0.02835083, 0.008331299, -0.03074646, -0.017303467, 0.0037155151, 0.027679443, 0.014183044, 0.0024375916, -0.013015747, -0.007129669, 0.014717102, -0.031143188, -0.020248413, -0.02558899, 0.008255005, -0.04724121, 9.936094e-05, -0.007583618, -0.0034427643, 0.01625061, 0.049682617, -0.03729248, 0.018096924, -0.016433716, -0.007286072, -0.03387451, 0.00031876564, 0.011436462, 0.013305664, -0.006225586, -0.026443481, 0.0440979, 0.0021591187, 0.006969452, 0.00070905685, -0.03930664, -0.07092285, 0.017807007, 0.029525757, -0.00642395, -0.04638672, -0.02784729, 0.018325806, -0.0184021, 0.010871887, 0.014190674, -0.04598999, 0.012161255, 0.03125, -0.024459839, -0.032592773, -0.035888672, 0.02722168, -0.014190674, 0.0064353943, 0.009803772, -0.018936157, -0.0039138794, 0.042663574, -0.04598999, -0.013374329, -0.036376953, 0.024734497, -0.046295166, -0.040222168, 0.046783447, -0.04095459, -0.020065308, -0.04660034, 0.048461914, 0.02684021, -0.021713257, -0.007698059, -0.027145386, -0.021255493, -0.0004067421, 0.027877808, -0.027999878, 0.04095459, 0.0066070557, -0.031677246, -0.044830322, 0.007007599, 0.015655518, -0.033325195, -0.051849365, -0.026992798, 0.015411377, 0.018188477, 0.013626099, 0.0077400208, 0.00035500526, 0.013893127, 0.016067505, -0.08453369, -0.032104492, -0.008598328, -0.031280518, -0.009094238, -0.008956909, -0.015586853, 0.0137786865, 0.03955078, 0.00026988983, -0.037475586, -0.0055351257, -0.003036499, -0.008354187, -0.0062332153, -0.03250122, 0.009101868, -0.03189087, 0.012054443, -0.04977417, 0.033996582, 0.05911255, 0.015701294, 0.025360107, 0.010635376, 0.00074625015, -0.028961182, -0.07446289, -0.00868988, 0.0657959, -0.026870728, -0.04812622, 0.012374878, -0.024902344, -0.0037975311, -0.018203735, -0.033477783, -0.0134887695, 0.02494812, -0.0077400208, -0.016662598, -0.015098572, -0.016403198, 0.012283325, 0.01461792, 0.019454956, -0.02633667, 0.00081443787, -0.024887085, -0.0124435425, 0.017410278, -0.03744507, -0.034484863, 0.021469116, 0.010726929, -0.02468872, 0.043914795, 0.018035889, -0.006134033, -0.0124435425, 0.050048828, -0.0047416687, 0.0158844, -0.0034122467, 0.04888916, 0.028579712, 0.0038375854, -0.00061655045, -0.0043792725, 0.011199951, 0.0059814453, 0.0011034012, -0.0057411194, -0.010368347, -0.044433594, -0.019454956, 0.0040016174, 0.0056648254, -0.058898926, 0.08001709, 0.00050497055, -0.019729614, -0.06732178, 0.018325806, -0.032440186, -0.05407715, -0.03262329, 0.016418457, 0.021194458, -0.022583008, 0.0262146, -0.0026988983, -0.019622803, -0.026107788, 0.019760132, -0.011207581, -0.0066375732, -0.004463196, 0.01008606, -0.013252258, 0.0592041, 0.0075912476, -0.0209198, 0.03942871, 0.037750244, -0.074645996, -0.014572144, -0.017288208, -0.024978638, 0.00041031837, -0.029312134, 0.013175964, 0.017150879, -0.036254883, 0.0039596558, -0.013557434, -0.0031795502, -0.054718018, -0.034118652, -0.004425049, 0.038757324, 0.033416748, 0.04559326, -0.03540039, -0.032470703, 0.012550354, 0.019805908, 0.034606934, -0.02168274, -0.03744507, -0.014076233, -0.00258255, -0.008354187, -0.026443481, -0.03741455, 0.021835327, -0.023757935, -0.02319336, -0.01398468, 0.042297363, -0.017944336, -0.010948181, 0.07635498, 0.020843506, 0.027450562, 0.024398804, 0.006275177, -0.035980225, 0.009239197, 0.005897522, -0.056243896, -0.026931763, -0.02949524, 0.005634308, -0.02418518, -0.01411438, -0.0009803772, 0.034454346, 0.0028743744, -0.024124146, -0.009384155, -0.01751709, -0.0084991455, -0.05255127, 0.028045654, -0.008666992, -0.0032997131, 0.03414917, 0.0067367554, -0.08856201, -0.03503418, 0.021652222, 0.019119263, 0.004737854, 0.03161621, 0.006008148, 0.004776001, -0.04473877, 0.018035889, 0.0025920868, -0.008155823, 0.009864807, 0.027770996, -0.003583908, 0.024108887, -0.064086914, -0.020935059, 0.0062942505, 0.017456055, -0.010345459, 0.016098022, -0.038970947, -0.03768921, 0.0006599426, 0.042755127, 0.0062942505, -0.048919678, -0.012969971, -0.016326904, -0.0038204193, -0.019927979, -0.025253296, -0.016036987, 0.0035743713, -0.026046753, -0.038238525, -0.010383606, -0.029663086, 0.0062828064, -0.011405945, 0.02456665, -0.0042304993, -0.010070801, -0.010002136, 0.0038146973, 0.044799805, -0.021270752, -0.01828003, 0.0033435822, 0.037841797, -0.0017032623, 0.0005235672, -0.004585266, 0.020980835, 0.04336548, 0.04208374, -0.02204895, -0.004573822, 0.007801056, 0.03265381, -0.04269409, 0.005836487, -0.00945282, 0.002199173, -0.013725281, -0.02760315, 0.0009613037, 0.019866943, -0.003446579, 4.0590763e-05, -0.038116455, 0.024520874, 0.016357422, -0.0068206787, -0.013664246, -0.018157959, -0.021026611, 0.011009216, -0.017349243, 0.008811951, 0.0059814453, -0.023727417, 0.0473938, -0.006828308, 0.006969452, 0.011138916, -0.04248047, 0.012496948, 0.050750732, -0.012825012, -0.026397705, -0.031982422, -0.011329651, 0.0051078796, -0.0035629272, 0.017730713, -0.005508423, 0.06210327, -0.010719299, -0.042266846, 0.03567505, -0.099609375, 0.0184021, 0.0019035339, 0.05706787, -0.088256836, -0.028579712, -0.014015198, -0.025222778, -0.013092041, 0.05319214, 0.014274597, 0.0016727448, -0.0025119781, -0.008239746, 0.050720215, -0.0025291443, 0.019683838, -0.03439331, 0.0055274963, 0.00077295303, -0.010231018, 0.012817383, -0.0018348694, -0.021774292, 0.014602661, -0.018234253, 0.015899658, 0.014846802, -0.003414154, -0.002614975, -0.010360718, 0.00983429, -0.036376953, -0.0040779114, 0.037475586, -6.330013e-05, 0.022964478, -0.04638672, -0.041503906, -0.04849243, -0.06414795, -0.05709839, 0.087402344, -0.06011963, -0.023635864, 0.0033683777, -0.006752014, -0.01953125, -0.043304443, -8.5651875e-05, 0.0061798096, 0.039886475, -0.0058021545, 0.025894165, -0.010871887, -0.03842163, -0.066589355, 0.020736694, -0.08874512, -0.010169983, -0.042755127, 0.019958496, 0.013046265, -0.0035591125, 0.037750244, 0.0021953583, 0.022140503, 0.0006723404, 0.035858154, -0.07910156, -0.015083313, 0.027572632, 0.0015983582, 0.004501343, -0.03805542, 0.01512146, 0.020690918, -0.023132324, 0.042297363, 0.013641357, -0.07525635, 0.0066833496, -0.02557373, -0.010116577, -0.020477295, -0.007259369, 0.036712646, 0.02659607, -0.025970459, 0.03024292, 0.014678955, 0.012069702, 0.059906006, 0.021636963, 0.018432617, -0.008735657, -0.0758667, -0.06713867, -0.01878357, 0.036254883, 0.018096924, -0.04119873, -0.012176514, -0.022384644, -0.020614624, -0.012046814, 0.0012512207, -0.0104522705, -0.0066070557, 0.0053863525, -0.014793396, -0.013046265, -0.015525818, -0.056152344, -0.06427002, 0.042053223, 0.091430664, -0.02709961, -0.0030288696, 0.0026168823, -0.042938232, -0.035888672, -0.02154541, -0.03765869, -0.029266357, -0.043518066, -0.0075035095, 0.018661499, -0.017669678, -0.013221741, -0.0029907227, -0.009468079, 0.0031089783, 0.023132324, 0.004371643, 0.015205383, -0.009674072, 0.087646484, -0.002603531, 0.06085205, 0.0043563843, -0.120910645, -0.059020996, 0.040100098, 0.0011663437, -0.024047852, 0.01576233, -0.010643005, 0.0013723373, 0.036834717, -0.02243042, -0.02470398, 0.030288696, 0.04244995, 0.012184143, 0.02407837]}, "B07LBK17K9": {"id": "B07LBK17K9", "original": "Brand: Goplus\nName: Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)\nDescription: Product Description
      This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

      Features
      Heavy duty cast iron body
      Powder coating makes it is waterproof and anti-rust
      Triple burner outputs a total whopping BTU of 225,000
      Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
      Adjustable firepower make your cook more delicious
      Removable feet make it can be easily carried or stored
      External valve CSA certification
      Specifications
      Finish: Black
      Product Type: Triple burner
      Material: Cast iron
      Item Dimensions:34\u201dx17.5\u201dx28.5\u201d
      Item Weight:33.5lbs
      Hose Dimensions:0.5\u201dx51\u201d
      Max: 250 Psig
      BTU : 225,000
      Package includes:
      1 x Single burner stove
      1 x Instruction
      \nFeatures: \ud83d\udd25 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious.\n\ud83d\udd25 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you\u2019re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time.\n\ud83d\udd25 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more.\n\ud83d\udd25 Safety: This burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook.\n\ud83d\udd25 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.\n", "metadata": {"Name": "Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)", "Brand": "Goplus", "Description": "Product Description
      This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

      Features
      Heavy duty cast iron body
      Powder coating makes it is waterproof and anti-rust
      Triple burner outputs a total whopping BTU of 225,000
      Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
      Adjustable firepower make your cook more delicious
      Removable feet make it can be easily carried or stored
      External valve CSA certification
      Specifications
      Finish: Black
      Product Type: Triple burner
      Material: Cast iron
      Item Dimensions:34\u201dx17.5\u201dx28.5\u201d
      Item Weight:33.5lbs
      Hose Dimensions:0.5\u201dx51\u201d
      Max: 250 Psig
      BTU : 225,000
      Package includes:
      1 x Single burner stove
      1 x Instruction
      ", "Features": "\ud83d\udd25 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious.\n\ud83d\udd25 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you\u2019re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time.\n\ud83d\udd25 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more.\n\ud83d\udd25 Safety: This burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook.\n\ud83d\udd25 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.031188965, -0.0007715225, -0.04296875, 0.011207581, -0.010231018, -0.019317627, 0.0184021, 0.005126953, -0.054901123, 0.014175415, -0.018295288, 0.030685425, -0.008071899, -0.020004272, 0.028152466, -0.045837402, -0.00046944618, -0.025375366, -0.067871094, -0.03753662, -0.008926392, -0.024932861, -0.08898926, 0.07299805, 0.019546509, -0.017333984, -0.03881836, 0.0074539185, -0.0024223328, -0.006389618, 0.026031494, 0.025497437, 0.039398193, 0.0025119781, -0.033203125, -0.043945312, -0.030899048, -0.009429932, -0.04534912, 0.032287598, 0.0069122314, -0.0056419373, -0.044067383, 0.011047363, -0.04360962, -0.024490356, 0.007637024, -0.01423645, 0.007423401, 0.03665161, -0.007904053, -0.015945435, 0.007095337, -0.024414062, -0.01121521, -0.020233154, 0.0018053055, -0.0011281967, 0.004508972, -0.053741455, -0.008087158, -0.013153076, 0.041748047, 0.04269409, -0.018341064, 0.023712158, 0.06173706, 0.0028476715, 0.050109863, -0.047851562, -0.057495117, 0.039215088, 0.027755737, 0.025344849, -0.041625977, -0.09844971, 0.05255127, -0.05203247, 0.028808594, -0.010520935, -0.01525116, 0.037872314, -0.014328003, -0.033599854, -0.009025574, -0.041168213, -0.012565613, -0.0050315857, -0.005695343, -0.03778076, -0.00070905685, -0.021133423, -0.056121826, 0.0099487305, 0.021453857, -0.05014038, -0.07952881, -0.09729004, 0.022094727, 0.010528564, 0.043548584, -0.034179688, 0.02217102, 0.019241333, -0.0050468445, 0.09698486, 0.010864258, 0.048736572, 0.01134491, -0.017944336, 0.022491455, -0.028564453, -0.006465912, -0.018661499, -0.0045700073, 0.00095415115, -0.03237915, 0.035064697, 0.022232056, 0.0018568039, -0.020523071, -0.022842407, 0.0004184246, 0.05166626, 0.015556335, 0.019256592, 0.006378174, 0.0014076233, -0.031021118, 0.009414673, -0.016281128, 0.019165039, 0.0018548965, 0.025527954, -0.026733398, -0.0038814545, 0.007232666, -0.008117676, 0.041534424, -0.010932922, -0.030944824, -0.027908325, 0.023208618, 0.020080566, -0.0015830994, 0.027069092, 0.017547607, 0.0047569275, 0.0066986084, -0.06604004, 0.010108948, -0.016784668, 0.012649536, 0.03427124, -0.0069618225, -0.0003914833, 0.037872314, -0.022201538, -0.0033016205, -0.042266846, -0.056793213, -0.026260376, 0.017288208, -0.008880615, -0.03643799, 0.055236816, 0.0051498413, -0.004333496, 0.010215759, 0.011940002, -0.008041382, 0.051818848, -0.00047636032, 0.012962341, 0.0101623535, -0.018722534, -0.01927185, 0.051605225, 0.07385254, -0.1262207, -0.08880615, -0.059143066, 0.13452148, -0.054718018, -0.03793335, -0.027954102, 0.0019025803, -0.016311646, 0.024215698, 0.0034236908, 0.06088257, 0.010597229, -0.027328491, -0.015716553, 0.027496338, 0.018814087, -0.054748535, -0.0061569214, -0.005290985, 0.00969696, -0.009239197, -0.004753113, 0.015777588, 0.0050621033, -0.034973145, -0.00032687187, -0.012886047, 0.013053894, -0.007232666, 0.019927979, 0.013290405, 0.0002810955, 0.013938904, -0.07989502, -0.012260437, -0.011680603, -0.0019006729, 0.04537964, -0.00043654442, 0.0519104, 0.019958496, -0.020126343, 0.02758789, 0.027801514, 0.033843994, 0.008811951, -0.025238037, -0.00036358833, 0.031021118, 0.03036499, -0.04336548, 0.01235199, 0.030258179, 0.019332886, 0.00233078, 0.035888672, 0.07537842, 0.029434204, -0.010498047, -0.020904541, -0.017028809, -0.047546387, -0.058013916, 0.019195557, -0.022628784, 0.0033626556, -0.0036792755, 0.023757935, -0.003917694, 0.0027198792, -0.042114258, 0.016921997, 0.06463623, -0.0027599335, -0.008880615, 0.055145264, -0.028305054, 0.03201294, -0.00819397, -0.014556885, -0.010864258, 0.024246216, 0.019241333, -0.003534317, 0.0019226074, -0.01651001, 0.019378662, 0.0043144226, -0.025604248, -0.003578186, 0.029434204, 0.03302002, -0.0012664795, -0.019439697, 0.0070762634, 0.0035095215, -0.012306213, 0.024810791, -0.0057907104, -0.019943237, 0.019210815, 0.01940918, -0.044677734, -0.011116028, 0.034362793, 0.035705566, -0.02684021, 0.021453857, -0.021331787, 0.00057792664, 0.024795532, -0.015060425, -0.011459351, -0.027130127, 0.026657104, -0.027267456, 0.07501221, 0.02684021, 0.015686035, -0.027740479, 0.005302429, 0.022201538, -0.072265625, 0.017456055, -0.018310547, -0.0068893433, -0.016998291, 0.0017986298, -0.026641846, -0.052886963, 0.002658844, 0.007499695, 0.04498291, -0.01991272, 0.07775879, 0.024520874, 0.022338867, 0.05722046, 0.01033783, -0.028808594, -0.0018644333, -0.01449585, 0.011917114, -0.0129852295, 0.008995056, -0.026763916, -0.013748169, -0.01348114, -0.020858765, 0.021347046, -0.00032544136, -0.014091492, -0.0038928986, 0.009017944, -0.001420021, 0.00066900253, -0.0032424927, 0.0033874512, -0.010360718, -0.029937744, -0.0067596436, 0.021820068, -0.002462387, -0.042388916, -0.003955841, -0.037963867, 0.00095796585, 0.00090551376, -0.023025513, -0.0042533875, 0.010482788, -0.010368347, 0.050964355, -0.0027942657, 0.011398315, -0.018173218, -0.05307007, -0.03289795, -0.068115234, -0.0927124, -0.008918762, -0.01789856, -0.04397583, -0.0029830933, 0.0368042, 0.0007133484, -0.05142212, -0.0015449524, -0.035888672, 0.021347046, 0.0073623657, 0.012420654, -0.059936523, -0.025924683, -0.060333252, 0.01625061, 0.036468506, 0.002746582, 0.015419006, 0.009498596, 0.057006836, 0.031555176, -0.0023899078, -0.050628662, 0.045715332, 0.02796936, 0.07458496, 0.039794922, 0.025375366, -0.026046753, 0.009223938, 0.0002477169, -0.048828125, -0.015823364, 0.01940918, 0.01889038, -0.004142761, -0.03463745, -0.047607422, -0.031951904, -0.019943237, 0.032806396, 0.013572693, -0.017349243, -0.009773254, -0.07702637, -0.007850647, -0.028213501, -0.002292633, 0.020721436, -0.024887085, 0.014663696, -0.021835327, 0.017333984, 0.005542755, -0.008583069, 0.082214355, -0.0051612854, 0.013374329, -0.046936035, 0.05218506, -0.06530762, 0.05834961, 0.032348633, -0.018966675, 0.0395813, -0.02116394, 0.0026493073, -0.013328552, 0.052459717, 0.01638794, 0.011024475, -0.005886078, -0.012413025, -0.037261963, -0.0046653748, 0.007106781, -0.011444092, 0.05267334, -0.03955078, -0.0004901886, -0.019485474, 0.016448975, 0.020309448, -0.00010025501, 0.0022468567, -0.028259277, 0.0021476746, -0.002067566, -0.01739502, 0.021377563, -0.0019283295, 0.045043945, 0.02696228, -0.009918213, 0.091430664, -0.0075645447, 0.033599854, 0.001964569, -0.003921509, 0.0045204163, -0.028640747, 0.020233154, 0.0085372925, 0.00667572, -0.039733887, -0.0028457642, 0.028381348, 0.0048332214, -0.013595581, 0.010810852, 0.061340332, 0.010826111, -0.020248413, 0.003353119, -0.006752014, 0.036102295, 0.027664185, -0.033477783, -0.04046631, -0.06762695, -0.00027251244, -0.06347656, 0.06982422, 0.02432251, -0.016036987, 0.08734131, 0.082458496, -0.023651123, 0.025161743, -0.0014858246, 0.0038261414, 0.0069389343, 0.0053710938, -0.02029419, 0.009857178, 0.0069999695, -0.0087890625, 0.0012435913, 0.0019388199, -0.021102905, -0.0053901672, -0.0036296844, -0.0071525574, -0.052978516, 0.0064315796, 0.013412476, -0.034362793, 0.01247406, -0.0680542, -0.021957397, -0.040618896, -0.004016876, 0.003583908, -0.008201599, 0.024932861, -0.011657715, -0.015602112, -0.007083893, -0.010902405, -0.011260986, 0.0010519028, 0.009483337, 0.024749756, 0.010314941, 0.004180908, -0.013877869, 0.040252686, -0.02420044, 0.043792725, 0.054473877, 0.0058135986, 0.043121338, -0.017944336, -0.017456055, 0.003168106, -0.012588501, -0.0007162094, -0.0062675476, -0.044921875, 0.010948181, 0.036895752, 0.005706787, -0.030395508, 0.033996582, -0.037506104, 0.020507812, 0.00674057, -0.018936157, 0.01725769, -0.042510986, -0.03643799, -0.064575195, -0.031982422, 0.011627197, 0.0026397705, -0.0007362366, 0.0063285828, -0.04336548, -0.025253296, -0.014381409, 0.011123657, -0.01600647, 0.004360199, 0.0070877075, 0.017059326, 0.01373291, -0.021133423, 0.046142578, -0.04345703, -0.0043678284, -0.0050239563, 0.060546875, -0.033416748, 0.02218628, -0.029937744, -0.020645142, -0.0049095154, 0.015113831, 0.02583313, -0.022857666, 0.025177002, -0.023590088, -0.016998291, -0.019989014, -0.012992859, 0.028213501, -0.051879883, -0.0064201355, -0.011932373, 0.061798096, -0.025924683, 0.05508423, -0.05407715, -0.019851685, -0.060699463, 0.007205963, -0.04827881, -0.05593872, -0.00051403046, -0.054656982, 0.02432251, 0.006664276, -0.022949219, 0.035308838, 0.04046631, -0.013694763, -0.044677734, -0.037261963, 0.0023784637, 0.009468079, 0.0473938, -0.044952393, -0.013954163, -0.06536865, 0.05303955, -0.035339355, 0.021820068, 0.03756714, 0.0046806335, 0.0113220215, 0.00031614304, 0.0009598732, -0.019683838, -0.020233154, -0.008529663, 0.00058603287, -0.04159546, -0.041748047, 0.02458191, -0.03488159, 0.013435364, 0.01008606, -0.02557373, 0.045074463, -0.013084412, 0.022445679, 0.018997192, 0.041412354, 0.05368042, -0.015159607, 0.017623901, -0.006702423, -0.034606934, 0.02381897, -0.03778076, -0.046722412, -0.004550934, -0.012878418, -0.019927979, 0.045288086, 0.009643555, -0.044128418, 0.020858765, 0.018218994, -0.0043678284, -0.024536133, 0.017196655, 0.024780273, -0.004055023, -0.051361084, 0.036132812, -0.012832642, -0.024139404, 0.042785645, -0.0073394775, -0.026824951, 0.04208374, -0.044036865, 0.08618164, 0.013519287, -0.02809143, 0.029067993, -0.023956299, 0.0049476624, -0.033416748, 0.018463135, -0.0069236755, -0.014572144, -0.02734375, 0.02909851, 0.03616333, 0.0038337708, 0.036712646, -0.0574646, 0.047576904, -0.056121826, -0.025131226, -0.006706238, 0.09881592, -0.018218994, -0.011566162, 0.03591919, -0.00064849854, -0.06774902, 0.0017414093, -0.029251099, 0.0070266724, -0.03894043, 0.0064582825, 0.03225708, -0.000729084, -0.005657196, -0.021652222, -0.020217896, 0.021316528, -0.008728027, 0.017532349, -0.0029449463, -0.014099121, 0.008369446, 0.035217285, 0.030334473, 0.0012788773, -0.022659302, -0.047607422, -0.036865234, 0.022781372, -0.024169922, 0.027755737, 0.0044403076, 0.046081543, 0.021133423, -0.006996155, 0.03152466, -0.04650879, -0.041870117, 0.015823364, 0.023529053, 0.025054932, -0.012084961, -0.030395508, 0.07800293, -0.032226562, -0.050598145, 0.0002644062, 0.066711426, -0.02670288, 0.010932922, 0.08337402, 0.027755737, 0.013160706, 0.02381897, 0.00818634, -0.03543091, -0.0012235641, 0.0062713623, -0.078430176, -0.0075035095, -0.031463623, 0.021087646, -0.008880615, 0.008605957, -0.011756897, 0.0524292, 0.0033473969, -0.010787964, -0.024993896, 0.0016107559, -0.0055007935, 0.004447937, 0.0049591064, -0.015357971, -0.010681152, -0.029129028, -0.008125305, -0.016571045, -0.01927185, -0.020584106, 0.021942139, 0.03289795, -0.009811401, -0.0042381287, -0.008560181, 0.0096588135, 0.043548584, 0.02583313, -0.040863037, 0.0006747246, 0.0012989044, 0.010101318, 0.0065460205, -0.011108398, 0.021942139, -0.025497437, -0.025390625, 0.032104492, 0.03189087, -0.048065186, 0.031433105, 0.058929443, 0.03479004, -0.0011548996, 0.02444458, 0.042297363, 0.026504517, -0.040100098, -0.00044298172, 0.02557373, -0.025115967, -0.0072135925, 0.018218994, -0.076416016, 0.015457153, -0.044067383, 7.754564e-05, -0.030914307, 0.055541992, -0.019439697, 0.013305664, 0.0025539398, -0.016693115, 0.015731812, -0.015403748, 0.035125732, -0.0033874512, 0.00058174133, 0.005672455, -0.017440796, -0.034332275, 0.027694702, 0.041992188, -0.03378296, 0.042144775, -0.043792725, 0.028015137, 0.008476257, -0.07244873, 0.011993408, -0.06185913, -0.018341064, -0.030593872, -0.04748535, -0.02420044, 0.018844604, 0.02583313, -0.031173706, 0.018539429, -0.0026683807, 0.01209259, 0.01838684, 0.048034668, -0.033477783, -0.0001436472, 0.003370285, 0.0064315796, 0.02760315, -0.013496399, -0.014465332, -0.012680054, 0.044036865, -0.019683838, -0.035949707, 0.0076065063, 0.03289795, 0.006652832, -0.0039520264, -0.017440796, -0.02508545, 0.04336548, 0.028213501, -0.0093688965, -0.006084442, -0.013267517, 0.02810669, 0.028564453, -0.029937744, 0.02520752, -0.045288086, 0.04373169, 0.029953003, 0.047180176, -0.007858276, -0.024017334, -0.035125732, 0.020874023, -0.00969696, 0.02230835, -0.0039711, -0.016174316, 0.0070724487, -0.013298035, 0.039031982, -0.024215698, 0.017227173, -0.04208374, 0.011894226, 0.030639648, 0.04397583, -0.012550354, 0.033233643, 0.00076818466, -0.0069351196, 0.064697266, -0.01461792, -0.0085372925, 0.019104004, -0.01625061, -0.009498596, -0.029556274, 0.018585205, -0.0014038086, 0.02923584, -0.05331421, 0.02760315, -0.0024986267, -0.019607544, -0.014549255, -0.008918762, -0.003791809, 0.045013428, 0.036499023, -0.017715454, -0.013313293, -0.010276794, -0.00037407875, -0.030807495, 0.01020813, 0.007949829, 0.053131104, 0.022994995, 0.06506348, -0.013626099, -0.076660156, -0.059936523, 0.032073975, -0.05545044, -0.02748108, -0.0023860931, 0.02949524, 0.03390503, 0.008590698, 0.016159058, 0.055389404, 0.0140686035, -0.002067566, 0.004283905, -0.037475586, -0.039794922, 0.03475952, 0.002904892, -0.0040397644, 0.01247406, 0.04852295, -0.0065345764, 0.034973145, -0.012870789, -0.0040397644, -0.09802246, -0.024124146, -0.056243896, -0.014923096, -0.036132812, -0.010772705, 0.036071777, 0.003627777, -0.046722412, 0.037261963, 0.040039062, 0.06500244, 0.042877197, -0.028823853, 0.030197144, -0.037475586, -0.060913086, -0.051818848, -0.025772095, 0.020477295, -0.021209717, -0.013336182, -0.017349243, 0.033721924, 0.0015592575, -0.00844574, 0.028579712, -0.011665344, 0.01737976, -0.022918701, 0.0030670166, 0.005645752, -0.030258179, -0.006225586, -0.035095215, 0.025268555, 0.016998291, 0.0035209656, -0.017913818, -0.006385803, -0.0357666, 0.018630981, -0.012001038, -0.046813965, -0.017120361, -0.041870117, -0.0049324036, 0.033966064, -0.007232666, 0.040100098, -0.022277832, -0.019973755, -0.035369873, 0.003332138, 0.017745972, 0.008377075, -0.037231445, 0.03869629, 0.026107788, 0.042297363, -0.03753662, -0.0463562, -0.043182373, 0.009384155, -0.010635376, 0.017288208, 0.028411865, -0.0022640228, 0.03060913, 0.056793213, -0.013114929, 0.011222839, 0.017730713, 0.02859497, -0.008354187, 0.005207062]}, "B081SMW6PL": {"id": "B081SMW6PL", "original": "Brand: WADEO\nName: WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More\nDescription: Length:12 Feet
      3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting
      Attention:ONLY use for low pressure propane appliance
      Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
      Please Note:
      1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
      2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
      3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
      \nFeatures: \ud83d\udc4912 Feet long propane hose, extended propane hose with 3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting, can meet your BBQ needs.\n\ud83d\udc49Convenience: 12FT propane appliance extension hose is convenient for you. You don't have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances.\n\ud83d\udc49Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting.\n\ud83d\udc49Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More.\n\ud83d\udc49Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.\n", "metadata": {"Name": "WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More", "Brand": "WADEO", "Description": "Length:12 Feet
      3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting
      Attention:ONLY use for low pressure propane appliance
      Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
      Please Note:
      1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
      2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
      3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
      ", "Features": "\ud83d\udc4912 Feet long propane hose, extended propane hose with 3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting, can meet your BBQ needs.\n\ud83d\udc49Convenience: 12FT propane appliance extension hose is convenient for you. You don't have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances.\n\ud83d\udc49Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting.\n\ud83d\udc49Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More.\n\ud83d\udc49Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.020126343, 0.02243042, -0.037475586, -0.051757812, 0.014312744, -0.012687683, -0.017852783, 0.00011098385, -0.0066986084, 0.030960083, -0.007904053, -0.0006132126, 0.015975952, -0.026153564, -0.0016584396, -0.02949524, 0.008605957, 0.025344849, 0.003047943, -0.016159058, -0.004760742, -0.015960693, -0.0002696514, 0.049468994, 0.005393982, -0.025405884, 0.051879883, 0.0019235611, 0.016021729, 0.006134033, 0.01751709, -0.029449463, 0.053863525, 0.00032019615, -0.043304443, -0.06793213, 0.03125, -0.038146973, -0.043151855, 0.024780273, -0.015670776, 0.017333984, -0.056365967, 0.016662598, -0.03692627, -0.06286621, -0.012229919, -0.038848877, 0.022567749, 0.027877808, 0.009666443, -0.00057935715, 0.0013866425, 0.0030021667, -0.013504028, -0.008285522, 0.023803711, -0.05014038, 0.033691406, -0.013763428, -0.014129639, -0.020477295, 0.027893066, -0.010520935, -0.04949951, -0.012031555, 0.04928589, -0.018585205, -0.043121338, -0.04611206, 0.0574646, 0.009841919, 0.035064697, -0.0010128021, -0.010551453, -0.030532837, 0.029785156, 0.01146698, 0.0074157715, 0.004463196, -0.01687622, -0.040405273, 0.021743774, 0.0061569214, -0.0082092285, 0.02319336, -0.019821167, 0.002735138, -0.04345703, -0.018371582, -0.03213501, -0.024368286, -0.044708252, 0.007434845, -0.011581421, 0.0013198853, -0.035339355, -0.084106445, 0.022201538, 0.01838684, 0.0435791, -0.03515625, 0.05419922, -0.002565384, 0.021697998, 0.067993164, -0.006210327, -0.003835678, 0.015403748, -0.01826477, -0.012413025, -0.019607544, -0.012016296, -0.0082092285, -0.020874023, 0.024505615, -0.013931274, -0.014091492, -0.023345947, -0.019515991, -0.009757996, 0.012817383, 0.00044870377, -0.04989624, 0.025619507, -0.009803772, -0.023376465, 0.020935059, -0.03704834, 0.010757446, 0.0058021545, 0.008888245, 0.018081665, 0.036712646, -0.007331848, -0.014076233, 0.017944336, -0.004508972, 0.00017499924, 0.013000488, -0.0065574646, -0.040771484, 2.2232533e-05, 0.015159607, -0.029464722, 0.0146484375, 0.018081665, 0.007369995, -0.0021457672, -0.014816284, -0.042877197, 0.00844574, 0.03942871, 0.022460938, -0.055847168, 0.019851685, 0.0284729, -0.016952515, -0.048828125, -0.06225586, -0.041809082, -0.026992798, 0.024459839, -0.017105103, -0.038726807, 0.049591064, 0.011398315, -0.014511108, 0.026260376, 0.08428955, 0.0056648254, -0.010871887, 0.023849487, 0.012268066, -0.014190674, -0.0039749146, -0.028121948, 0.09564209, 0.09637451, -0.117370605, -0.053619385, -0.04449463, 0.1907959, -0.057647705, -0.013092041, -0.03463745, 0.020065308, -0.036193848, -0.0021381378, 0.0005888939, 0.05053711, 0.03717041, -0.021560669, 0.010284424, 0.005569458, 0.011528015, -0.030395508, 0.011253357, -0.012451172, -0.011314392, 0.002111435, 0.0049057007, -0.002784729, 0.005092621, 0.044799805, -0.029678345, 0.01600647, 0.0076828003, 0.050720215, 0.0124053955, -0.010620117, -0.027374268, 0.013160706, -0.030334473, -0.04699707, 0.0062789917, 0.007434845, -0.014556885, 0.0016784668, -0.015014648, 0.03262329, -0.008102417, 0.007911682, 0.032592773, -0.017059326, -0.027435303, -0.0011587143, -0.001282692, -0.017349243, 0.009399414, 0.007080078, 0.009490967, 0.08331299, 0.07861328, -0.013519287, 0.010597229, 0.040100098, 0.034179688, -0.0124435425, -0.004558563, 0.013298035, -0.0051841736, -0.06365967, -0.035064697, 0.011787415, -0.05960083, -0.020477295, -0.014213562, -0.036224365, 0.03237915, 0.06945801, 0.017547607, 0.003271103, 0.037017822, -0.053619385, 0.028411865, -0.021774292, -0.0070610046, -0.029815674, 0.017715454, 0.007949829, -0.0155181885, -0.0030345917, -0.016723633, -0.00022566319, 0.020599365, 0.033813477, 0.031402588, -0.0181427, -0.002204895, 0.0045814514, 0.025665283, -0.00579834, 0.0006814003, -0.032592773, 0.021652222, -0.023544312, 0.019088745, -0.033233643, -0.014801025, 0.0023708344, 0.009559631, -0.0009870529, -0.02104187, 0.024871826, 0.020645142, -0.005004883, -0.022232056, 0.004837036, 0.0049057007, 0.03881836, 0.012313843, 0.008850098, -0.017211914, -0.007232666, -0.009170532, 0.023605347, 0.02168274, 0.032287598, -0.041992188, -0.04586792, 0.023590088, -0.05154419, 0.018600464, -0.0064201355, -0.0023899078, -0.002773285, 0.046203613, 0.020446777, -0.05871582, 0.047332764, 0.034973145, 0.018096924, 0.017318726, 0.02720642, 0.02458191, 0.029876709, 0.05130005, 0.08306885, 0.05886841, 0.00031661987, -0.003929138, -0.012283325, -0.034606934, 0.012641907, 0.0074539185, -0.051513672, -0.01222229, -0.010612488, -0.015472412, 0.027893066, -0.011650085, 0.006298065, -0.012741089, 0.009773254, -0.019927979, 0.00831604, 0.031188965, 0.0036678314, -0.039611816, 0.0043296814, -0.019805908, -0.00017595291, 0.019714355, -0.02281189, -0.014823914, 0.028121948, 0.0009765625, 0.015045166, 0.0069236755, 0.0019817352, -0.011047363, 0.015853882, -0.053466797, 0.026748657, -0.01966858, -0.04458618, -0.027313232, 0.0262146, -0.06262207, -0.04031372, -0.0067710876, -0.067993164, -0.0079422, 0.06854248, -0.008239746, -0.021362305, -0.023101807, -0.00932312, -0.005218506, -0.018478394, -0.0023517609, -0.026763916, -0.013923645, -0.011413574, 0.023086548, 0.020385742, -0.02357483, 0.021530151, 0.0030002594, -0.0052604675, 0.024124146, -0.033691406, 0.037994385, 0.03048706, 0.024337769, 0.05407715, 0.046417236, 0.01373291, -0.034301758, -0.006790161, 0.034484863, -0.0491333, -0.029067993, 0.013420105, 0.012023926, 0.014060974, 0.001996994, -0.0064468384, -0.045959473, -0.038970947, 0.040252686, 0.016494751, 0.0050621033, -0.014793396, -0.031280518, -0.025802612, -0.023117065, 0.016159058, 0.03479004, -0.024719238, 0.025604248, -0.046173096, 0.047546387, -0.024749756, 0.0036716461, -0.021072388, -0.011947632, -0.011695862, 0.010902405, 0.025741577, -0.055267334, 0.013893127, 0.018218994, -0.010910034, -0.013160706, -0.008560181, -0.015731812, -0.00844574, 0.05090332, 0.0028514862, 0.0046043396, -0.035736084, -0.050323486, -0.015357971, -0.020355225, 0.023544312, -8.177757e-05, 0.006752014, -0.0061187744, -0.019836426, -0.021469116, -0.020477295, 0.00082588196, -0.040771484, 0.0031814575, -0.0070266724, -0.007858276, 0.021835327, -0.03048706, 0.008163452, -0.0009484291, 0.07342529, 0.016540527, -0.0053100586, 0.06311035, 0.0021648407, 0.05303955, 0.033843994, -0.021087646, -0.025161743, -0.05859375, 0.061828613, 0.033172607, -0.0020256042, -0.012825012, 0.024673462, 0.0126571655, 0.0035743713, -0.017791748, 0.0015125275, 0.015129089, -0.012748718, -0.011390686, 0.025344849, 0.049621582, -0.009513855, -0.025802612, 0.0038795471, 0.013175964, -0.058380127, 0.024887085, -0.1081543, 0.055664062, 0.0076446533, -0.008666992, 0.036254883, 0.02758789, -0.00037312508, 0.025772095, 0.061645508, -0.03286743, 0.00052404404, 0.04434204, -0.045318604, -0.001709938, 0.017044067, -0.047943115, 0.04067993, 0.022842407, -0.059387207, 0.024490356, 0.001121521, -0.06378174, -0.05505371, 0.032348633, -1.0371208e-05, -0.015350342, 0.01386261, -0.055480957, -0.050323486, -0.052703857, -0.03741455, 0.031921387, -0.031280518, -0.04559326, 0.027191162, 0.017547607, -0.033081055, -0.008850098, -0.0067100525, -0.044830322, 0.018173218, 0.007835388, 0.03668213, 0.022232056, -0.03552246, 0.035217285, -0.0033016205, -0.024337769, 0.030822754, 0.02507019, -0.045532227, -0.015808105, 0.00504303, -0.01675415, 0.0001244545, 0.06732178, 0.023727417, -0.055541992, -0.034851074, -0.014152527, 0.026611328, -0.039276123, -0.029693604, -0.015396118, -0.043060303, 0.019500732, -0.03866577, 0.0082092285, 0.004070282, 0.007118225, -0.11407471, -0.042388916, -0.011398315, -0.0041160583, -0.043640137, 0.026672363, -0.006752014, -0.056488037, 0.0069084167, 0.0158844, -0.05935669, 0.010345459, -0.055267334, -0.009735107, 0.04348755, 0.010879517, -0.020309448, 0.0044898987, -0.0073165894, -0.0022945404, 0.040649414, -0.016845703, -0.026687622, -0.03451538, 0.006565094, 0.007843018, 0.036895752, 0.029159546, -0.006504059, 0.012016296, -0.0158844, -0.0018520355, -0.051513672, -0.0124435425, 0.025543213, -0.03918457, -0.037261963, -0.02633667, 0.03262329, -0.0029697418, 0.025115967, -0.037506104, 0.011100769, 0.027633667, -0.027328491, -0.06021118, -0.04949951, 0.009124756, -0.023864746, -0.013900757, -0.013633728, -0.013511658, 0.09472656, 0.04144287, 0.015541077, 0.017501831, -0.0011310577, -0.021560669, 0.0013208389, 0.014694214, -0.042816162, 0.035461426, -0.036193848, -0.010124207, -0.03152466, 0.06072998, 0.06939697, -0.021987915, 0.012420654, 0.0069847107, -0.017211914, -0.031555176, 0.022064209, -0.0033569336, 0.016815186, -0.03326416, -0.03652954, 0.01876831, -0.04119873, 0.009902954, 0.00042939186, 0.010818481, 0.0076904297, -0.04623413, -0.002954483, -0.040283203, -0.01008606, 0.04333496, 0.02180481, 0.010375977, -0.045715332, 0.0129470825, 0.025375366, 0.014602661, 0.009437561, -0.016662598, -0.013389587, -0.0026340485, 0.004211426, -0.0072631836, -0.044555664, 0.0098724365, 0.013198853, -0.003211975, -0.0039043427, 0.016586304, 0.003967285, 0.0056114197, -0.013191223, 0.045532227, -0.017822266, 0.0025749207, 0.026626587, -0.012680054, -0.0054512024, 0.021362305, -0.014266968, 0.008354187, 0.004508972, -0.048980713, 0.0390625, -0.0014591217, -0.004096985, -0.03390503, 0.083740234, -0.010383606, 0.010261536, -0.06536865, -0.00011354685, -0.0071487427, 0.0015926361, 0.007411957, -0.017959595, 0.031066895, -0.032684326, -0.020935059, 0.03161621, 0.010971069, -0.03048706, -0.036346436, 0.018859863, -0.06945801, -0.043151855, 0.0045394897, -0.009170532, -1.847744e-06, 0.033935547, -0.05505371, 0.04336548, 0.013320923, -0.06738281, -0.033691406, -0.01979065, 0.00092458725, -0.01902771, -0.012130737, -0.013267517, 0.00026082993, -0.020370483, -0.0069351196, -0.018539429, 0.0049362183, -0.037261963, -0.041046143, -0.03466797, 0.021270752, 0.0059890747, 0.03930664, 0.0045547485, -0.044799805, 0.019851685, 0.018493652, 0.030166626, -0.028717041, 0.0017108917, 0.0016155243, -0.012298584, -0.024383545, -0.00069236755, -0.010375977, 0.052612305, -0.019363403, -0.054107666, -0.033050537, -0.021850586, 0.013145447, -0.074523926, 0.08123779, 0.007358551, 0.0021800995, -0.0076446533, -0.024658203, -0.033447266, -0.02192688, -0.0079193115, -0.041259766, -0.014465332, -0.043945312, 0.025772095, 0.0043258667, 0.009147644, -0.002954483, 0.02960205, -0.034576416, -0.0018081665, 0.000538826, 0.0035953522, -0.017944336, -0.028930664, 0.019577026, 0.013587952, -0.0049324036, 0.008666992, 0.021942139, -0.018051147, -0.0009937286, -0.012481689, 0.029922485, 0.027816772, -0.0034980774, 0.019424438, 0.0440979, -0.062042236, 0.036132812, 0.0024318695, -0.029647827, -0.009689331, 0.021011353, 0.008644104, 0.006629944, -0.046142578, -0.010169983, -0.015945435, 0.022476196, -0.0030231476, 0.028701782, -0.053100586, -0.02267456, -0.0027580261, 0.052703857, -0.0058403015, 0.023544312, 0.0146484375, -0.0035514832, -0.01965332, -0.020629883, -0.050323486, -0.041015625, 0.010185242, -0.036346436, 0.023605347, 0.026550293, -0.007610321, -0.005821228, -0.02015686, 0.053527832, -0.055267334, 0.05255127, -0.014419556, -0.0066452026, 0.06414795, -0.029953003, 0.053771973, -0.03829956, 0.015510559, -0.0037899017, -0.016784668, -0.036468506, 0.023269653, 0.042785645, 0.034088135, -0.019454956, -0.03665161, 0.006439209, 0.004131317, -0.038208008, 0.012619019, -3.093481e-05, -0.0146865845, -0.0020942688, -0.030548096, -0.015151978, -0.019973755, 0.01725769, 0.025543213, 0.06311035, -0.011413574, 0.03604126, -0.029418945, -0.0546875, 0.025604248, -0.021972656, -0.027420044, 0.021255493, -0.009933472, -0.0045051575, -0.057678223, -0.01675415, 0.060333252, -0.027877808, 0.02330017, 0.0005726814, 0.016052246, -0.06616211, -0.022094727, -0.040100098, -0.029129028, 0.009735107, 0.015151978, -0.016601562, -0.01020813, -0.01158905, 0.020248413, -0.0020008087, -0.028182983, 0.016799927, -0.02784729, 0.020690918, 0.039093018, -0.0062408447, -0.08911133, -0.033355713, -0.011390686, -0.027648926, -0.0036201477, 0.082336426, 0.004573822, 0.03717041, 0.04168701, -0.00074338913, 0.07910156, 0.0022087097, 0.02406311, -0.03857422, 0.038330078, 0.050933838, 0.0057029724, -0.013084412, -0.023254395, -0.01260376, 0.008010864, -0.01965332, -0.0072784424, -0.033294678, -0.040008545, -0.0020599365, -0.029418945, 0.017959595, -0.030944824, -0.010383606, 0.002456665, -0.039093018, 0.0018835068, -0.03643799, -0.056549072, -0.03930664, -0.03173828, -0.056915283, 0.049072266, -0.016860962, -0.012229919, 0.016036987, -0.012580872, -0.047821045, -0.018203735, -0.014823914, 0.032836914, 0.031677246, 0.01361084, 0.050048828, -0.011672974, -0.07299805, -0.020401001, 0.042633057, -0.02192688, -0.031311035, -0.023605347, 0.038208008, 0.03503418, 0.0075416565, -0.011138916, 0.08227539, -0.013153076, -0.0005722046, 0.0040512085, -0.013000488, -0.037475586, 0.021331787, 0.016113281, -0.055389404, -0.0044517517, 0.035308838, -0.0005207062, 0.03488159, 0.012229919, -0.005256653, -0.01146698, 0.012176514, 3.6358833e-05, -0.006298065, -0.009094238, -0.0035820007, 0.05050659, 0.041107178, -0.011398315, 0.028152466, 0.024627686, -0.0357666, 0.035064697, 0.010543823, 0.037963867, 0.024017334, -0.032562256, -0.0146865845, -0.013183594, -0.019943237, 0.012390137, -0.01940918, -0.007949829, 0.0047950745, -0.0009937286, -0.02470398, 0.0042304993, 0.017425537, 0.023529053, 0.033691406, 0.020507812, 0.005645752, -0.016845703, 0.016067505, -0.01965332, -0.07543945, 0.008285522, -0.0078048706, -0.014305115, 0.0021686554, -0.046813965, 0.0055885315, -0.014282227, -0.06384277, -0.030563354, -0.089904785, 0.056732178, 0.023986816, -0.00015819073, -0.00283432, 0.027236938, -0.026397705, -0.025772095, 0.027832031, 0.027557373, -0.002128601, -0.062805176, 0.044921875, 0.0052757263, 0.0904541, -0.012649536, -0.0569458, -0.07501221, 0.060455322, -0.00017881393, -0.015838623, 0.017074585, 0.016113281, 0.0025424957, 0.010116577, -0.04776001, -0.036132812, 0.004699707, 0.05609131, -0.025939941, 0.015007019]}, "B004LZN5ES": {"id": "B004LZN5ES", "original": "Brand: Flame King\nName: Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "metadata": {"Name": "Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve", "Brand": "Flame King", "Description": "", "Features": "Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.030303955, 0.019683838, -0.036254883, -0.050567627, 0.02027893, -0.025894165, -0.039245605, -0.014320374, -0.058288574, -0.006832123, -0.0031318665, 0.035980225, -0.03555298, -0.036895752, 0.051879883, -0.042266846, 0.027709961, 0.01335144, 0.05355835, -0.016174316, 0.027923584, 0.0012845993, 0.028884888, 0.08294678, 0.04437256, -0.039520264, 0.01676941, 0.025360107, 0.024780273, 0.016494751, 0.022476196, -0.021652222, 0.05102539, -0.024047852, -0.021408081, -0.015617371, -0.022445679, -0.0039520264, -0.042785645, 0.0009965897, -0.0018911362, 0.0005130768, 0.009857178, -0.05102539, 0.0032787323, -0.021270752, -0.004016876, -0.050048828, 0.026275635, 0.0074920654, 0.008003235, 0.021133423, 0.002204895, 0.034210205, -0.0016565323, 0.05621338, 0.04095459, -0.037322998, 0.007572174, -0.017929077, 0.008918762, 0.052703857, 0.02255249, 0.023544312, -0.048736572, 0.008476257, 0.0791626, -0.03793335, 0.029373169, -0.030670166, -0.012718201, 0.0317688, 0.014312744, 0.0345459, -0.027359009, -0.020828247, 0.032226562, 0.03189087, 0.022445679, 0.015327454, 0.006542206, -0.008583069, 0.044158936, 0.0012512207, -0.03237915, 0.0028839111, -0.018463135, -0.003622055, 7.420778e-05, -0.0025806427, -0.0037193298, 0.0096206665, 0.032348633, 0.0028514862, -0.035888672, -0.028564453, -0.04800415, -0.07977295, 0.040771484, 0.0418396, 0.010887146, -0.042755127, 0.06890869, -0.016220093, 0.025360107, 0.09863281, -0.01826477, -0.01789856, 0.0051994324, -0.009468079, 0.017791748, -0.06427002, 0.014503479, -0.02861023, 0.0006670952, 0.033935547, 0.007358551, 0.017532349, 0.021469116, 0.023010254, 0.035858154, 0.022583008, -0.008857727, -0.0048103333, -0.005207062, -0.019348145, -0.041992188, -0.009407043, -0.027542114, 0.033203125, -0.014762878, -0.02545166, 0.012039185, 0.07531738, 0.025741577, -0.014259338, -0.004081726, -0.0036754608, 0.021331787, -0.022766113, -0.017196655, 0.013160706, 0.04727173, -0.004550934, -0.030731201, 0.059692383, -0.007045746, -0.023651123, 0.0113220215, -0.032806396, -0.040740967, -0.06439209, 0.011878967, -0.0050621033, 0.010047913, -0.035736084, -0.0018863678, -0.02116394, 0.01751709, -0.028152466, 0.010070801, -0.0234375, -0.051940918, -0.0027561188, -0.017349243, 0.022354126, 0.017623901, 0.013656616, 0.01852417, 0.049713135, 0.009895325, 0.033996582, -0.006336212, 0.015281677, 0.0054359436, -0.024810791, 0.0016937256, 0.11053467, 0.060180664, -0.15185547, -0.07006836, -0.08117676, 0.16430664, -0.05618286, 0.0059776306, -0.04019165, 0.011802673, -0.046447754, 0.022140503, 0.009170532, 0.026229858, 0.023773193, -0.021728516, -0.03842163, -0.01612854, -0.0023059845, -0.0012340546, 0.0010852814, -0.0040397644, 0.011222839, 0.035980225, -0.0037574768, 0.010406494, 0.014854431, 0.02217102, -0.03515625, 0.010543823, -0.008171082, 0.054534912, 0.06500244, -0.007007599, 0.0013914108, -0.0005698204, -0.018951416, -0.019805908, -0.0019311905, -0.024749756, 0.024871826, 0.009681702, 0.0034275055, 0.029281616, -0.022644043, 0.022491455, 0.022949219, -0.01423645, 4.053116e-06, -0.036193848, 0.02217102, 0.003168106, -0.0050964355, 0.055877686, 0.036132812, 0.08703613, 0.06915283, -0.020843506, 0.020751953, 0.033721924, -0.007423401, -0.020431519, 0.024780273, 0.00056123734, -0.019500732, -0.026824951, 0.051757812, -0.037872314, -0.043182373, 6.8724155e-05, 0.04135132, 0.0062828064, 0.0109939575, 0.06359863, -0.024291992, 0.0074539185, 0.011505127, -0.0056266785, 0.012008667, -0.002708435, 0.02545166, -0.060272217, 0.023483276, -0.02142334, 0.016143799, 0.020751953, 0.00116539, 0.07116699, -0.028427124, 0.06427002, 0.03564453, -0.0059280396, -0.015457153, 0.0070228577, 0.0040512085, 0.0027332306, 0.0026550293, -0.022628784, 0.00089359283, -0.029037476, 0.03488159, -0.014625549, -0.016799927, -0.005924225, -0.05609131, 0.04901123, 0.01739502, 0.07489014, 0.062286377, 0.055664062, -0.010108948, -0.021011353, -0.017623901, -0.0075531006, 0.045654297, 0.004234314, 0.012771606, 0.023803711, 0.008636475, 0.013717651, -0.02355957, 0.030929565, -0.044067383, 0.027313232, 0.050048828, -0.046661377, 0.04776001, -0.018753052, -0.021469116, -0.023880005, 0.03463745, -0.002456665, -0.0552063, -0.0021095276, 0.015899658, 0.027954102, 0.014160156, 0.037475586, 0.017028809, 0.01247406, 0.046447754, 0.064086914, 0.05682373, -0.022155762, 0.0102005005, 0.011734009, 0.024597168, 0.019927979, -0.028900146, 0.025360107, 0.013877869, -0.0317688, -0.0047454834, -0.011749268, -0.0178833, 0.011398315, 0.019500732, -0.0010967255, -0.009223938, -0.015930176, 0.030303955, -0.03012085, -0.0769043, -0.043670654, -0.013053894, 0.006942749, -0.007522583, -0.011962891, -0.043426514, 0.03286743, -0.0029239655, -0.059020996, 0.020385742, 0.0027542114, 0.012199402, 0.004173279, -0.013824463, 0.005947113, -0.009635925, -0.041748047, -0.026184082, -0.0063591003, -0.07092285, 0.019622803, -0.036102295, -0.044189453, -0.024902344, 0.044555664, 0.0009241104, -0.037200928, -0.024719238, 0.046295166, 0.016540527, 0.013786316, 0.031188965, -0.09460449, -0.0036239624, 0.028335571, -0.01576233, 0.06536865, -0.01651001, -0.018112183, 0.030227661, 0.010147095, 0.04534912, -0.053863525, 0.057647705, -0.007709503, 0.04940796, 0.038513184, 0.021713257, -0.0057525635, -0.037719727, -0.016571045, 0.036071777, 0.0010414124, -0.013664246, -0.049224854, -0.030258179, 0.01171875, 0.048675537, -0.02003479, 0.008613586, -0.083618164, 0.02128601, -0.028213501, -0.014533997, 0.0051879883, 0.0035381317, -0.019119263, -0.055511475, 0.012825012, -0.008354187, -0.009033203, 0.016448975, -0.034362793, 0.024246216, -0.008621216, -0.03552246, -0.0132369995, -0.012809753, -0.015464783, 0.030456543, 0.043701172, -0.04034424, -0.008972168, 0.028533936, -0.020019531, -0.01777649, -0.0075035095, 0.02911377, -0.00055503845, -0.0034599304, -0.007167816, -0.027557373, -0.009757996, -0.023452759, -0.050048828, -0.012825012, -0.004928589, -0.012245178, 0.006324768, -0.013679504, -0.05633545, -0.032348633, -0.03286743, -0.020599365, -0.02178955, -0.021713257, -0.008308411, -0.043426514, -0.005580902, -0.0036945343, -0.003370285, 0.017242432, -0.014541626, 0.009017944, -0.026153564, -0.0013818741, 0.006336212, 0.0418396, -0.0001757145, -0.00035452843, -0.004585266, -0.012313843, 0.016479492, -0.00283432, -0.015899658, -0.0043411255, 0.0015544891, 0.0032367706, -0.010223389, 0.00034046173, -0.014755249, 0.037200928, 0.033416748, 0.008171082, -0.0048828125, 0.01576233, 0.0073165894, -0.011306763, 0.012260437, 0.0026397705, -0.0513916, 0.034210205, -0.084106445, 0.004081726, 0.02709961, -0.024658203, 0.043182373, -0.0033683777, -0.010749817, 0.010192871, 0.005771637, 0.010971069, 0.0119018555, 0.025634766, -0.01763916, -0.0062294006, 0.0064468384, -0.009101868, -0.02279663, -0.04977417, -0.011260986, -0.003501892, 0.008987427, 0.022598267, 0.0079956055, -0.032440186, -0.017074585, 0.0034923553, 0.026916504, 0.016174316, 0.0010967255, -0.012168884, -0.004055023, 0.015731812, -0.029022217, -0.021026611, -0.026611328, 0.011940002, -0.0491333, -0.001958847, -0.005558014, 0.0009908676, 0.013374329, 0.048187256, -0.035827637, 0.01852417, -0.017211914, -0.004924774, -0.032958984, -0.0021781921, 0.011260986, 0.013267517, -0.0046043396, -0.024047852, 0.04147339, 0.0017108917, 0.008018494, -0.0031108856, -0.039764404, -0.068237305, 0.018341064, 0.029525757, -0.0074691772, -0.044921875, -0.03050232, 0.018798828, -0.019744873, 0.009643555, 0.012954712, -0.048706055, 0.014442444, 0.031097412, -0.025558472, -0.034576416, -0.038330078, 0.027572632, -0.012367249, 0.006095886, 0.011299133, -0.016860962, -0.005279541, 0.045074463, -0.046539307, -0.014389038, -0.038879395, 0.026473999, -0.04663086, -0.03756714, 0.047210693, -0.04031372, -0.024124146, -0.04714966, 0.04840088, 0.025878906, -0.023864746, -0.009284973, -0.02532959, -0.021392822, 0.0006828308, 0.028671265, -0.026992798, 0.041107178, 0.006412506, -0.034179688, -0.043792725, 0.0067977905, 0.014602661, -0.034423828, -0.051208496, -0.028335571, 0.012245178, 0.021011353, 0.016677856, 0.0056037903, -0.002439499, 0.009979248, 0.013870239, -0.08148193, -0.030227661, -0.008834839, -0.03149414, -0.008308411, -0.007686615, -0.01689148, 0.011833191, 0.038482666, -0.0019521713, -0.03656006, -0.0041503906, 0.0008826256, -0.009109497, -0.0047454834, -0.036132812, 0.009567261, -0.03253174, 0.010604858, -0.047790527, 0.03604126, 0.06021118, 0.0140686035, 0.024963379, 0.009223938, -0.0019454956, -0.029724121, -0.07635498, -0.009376526, 0.06604004, -0.027877808, -0.048675537, 0.012741089, -0.027542114, -0.0020885468, -0.018737793, -0.03048706, -0.014602661, 0.022384644, -0.009284973, -0.017181396, -0.015701294, -0.016036987, 0.012908936, 0.012184143, 0.016159058, -0.024047852, 0.001748085, -0.024337769, -0.012550354, 0.01739502, -0.03704834, -0.03149414, 0.021377563, 0.009162903, -0.029907227, 0.04168701, 0.019195557, -0.00894165, -0.009796143, 0.049987793, -0.004207611, 0.014526367, -0.0032615662, 0.04800415, 0.025619507, 0.003232956, -0.0025730133, -0.0057792664, 0.012458801, 0.0069503784, -0.0010995865, -0.0050086975, -0.008125305, -0.047424316, -0.0211792, 0.0069007874, 0.0053100586, -0.05545044, 0.08215332, 0.00069999695, -0.021194458, -0.061706543, 0.016036987, -0.03857422, -0.048980713, -0.034606934, 0.016235352, 0.021255493, -0.024032593, 0.025146484, 9.906292e-05, -0.02166748, -0.021270752, 0.020599365, -0.01033783, -0.0077209473, -0.0044898987, 0.013076782, -0.014793396, 0.05935669, 0.0059890747, -0.017440796, 0.040496826, 0.03717041, -0.07470703, -0.014480591, -0.018829346, -0.021697998, -0.0023078918, -0.027709961, 0.012489319, 0.018920898, -0.03439331, 0.0020828247, -0.012359619, -0.0041656494, -0.054260254, -0.03302002, -0.002040863, 0.041503906, 0.035705566, 0.043914795, -0.03656006, -0.032196045, 0.01373291, 0.01991272, 0.035369873, -0.024307251, -0.03842163, -0.013633728, -0.0017471313, -0.0063819885, -0.025131226, -0.03604126, 0.022521973, -0.023834229, -0.02456665, -0.008155823, 0.043273926, -0.019256592, -0.010772705, 0.072753906, 0.019058228, 0.027313232, 0.023101807, 0.008529663, -0.03845215, 0.0084991455, 0.0058250427, -0.055236816, -0.029373169, -0.029754639, 0.0050811768, -0.02406311, -0.0135650635, 0.00014054775, 0.03781128, 0.0047912598, -0.026794434, -0.00806427, -0.017150879, -0.0072135925, -0.04937744, 0.027801514, -0.0040893555, -0.0005350113, 0.031433105, 0.007911682, -0.088134766, -0.029403687, 0.024124146, 0.017425537, 0.0042762756, 0.03186035, 0.0070152283, 0.0043678284, -0.044311523, 0.015068054, 0.0023345947, -0.008934021, 0.010894775, 0.027511597, -0.007843018, 0.030670166, -0.06439209, -0.020645142, 0.0073547363, 0.01550293, -0.0077819824, 0.012939453, -0.035705566, -0.03677368, 0.0011434555, 0.040374756, 0.0010099411, -0.048461914, -0.0135650635, -0.014701843, -0.0031490326, -0.021957397, -0.023712158, -0.01574707, 0.0023860931, -0.024337769, -0.036346436, -0.0066375732, -0.02861023, 0.008781433, -0.010314941, 0.027374268, -0.0043678284, -0.008972168, -0.009391785, 0.004261017, 0.04333496, -0.021942139, -0.017684937, 0.0021762848, 0.03842163, -0.002325058, 0.0030841827, -0.003627777, 0.021560669, 0.044006348, 0.04171753, -0.020431519, -0.004058838, 0.00472641, 0.035583496, -0.040130615, 0.003610611, -0.007873535, 0.003107071, -0.017227173, -0.026947021, 0.0005903244, 0.022216797, -0.005680084, 0.004257202, -0.038238525, 0.026123047, 0.015090942, -0.009681702, -0.015945435, -0.01689148, -0.024368286, 0.012863159, -0.0129852295, 0.007133484, 0.006614685, -0.024215698, 0.048339844, -0.010192871, 0.0063056946, 0.010520935, -0.044433594, 0.011421204, 0.051513672, -0.015457153, -0.028076172, -0.034057617, -0.01020813, 0.006427765, -0.005973816, 0.018371582, -0.0033111572, 0.062042236, -0.012016296, -0.042388916, 0.038391113, -0.099487305, 0.01939392, 0.001077652, 0.061187744, -0.08972168, -0.02722168, -0.012268066, -0.026473999, -0.01083374, 0.052459717, 0.015182495, 0.0027008057, -0.0014257431, -0.008377075, 0.04916382, -0.0027656555, 0.018722534, -0.035858154, 0.0040664673, -0.00058984756, -0.008644104, 0.012924194, -0.0024852753, -0.024749756, 0.012489319, -0.020385742, 0.010765076, 0.0126953125, -0.0033931732, -0.00082445145, -0.010612488, 0.008987427, -0.035308838, -0.0057640076, 0.038604736, 0.0012550354, 0.019256592, -0.04748535, -0.041503906, -0.045684814, -0.06762695, -0.05831909, 0.089416504, -0.05996704, -0.021972656, 0.0051651, -0.0056877136, -0.019989014, -0.04095459, 9.0658665e-05, 0.009155273, 0.040008545, -0.0038642883, 0.029556274, -0.012580872, -0.039276123, -0.06939697, 0.01852417, -0.0859375, -0.010047913, -0.042236328, 0.020629883, 0.015304565, -0.003206253, 0.03866577, 0.0030765533, 0.022918701, 0.00061273575, 0.034362793, -0.07910156, -0.012908936, 0.027359009, 0.00030326843, 0.0018577576, -0.040496826, 0.016586304, 0.02128601, -0.022781372, 0.04269409, 0.01675415, -0.07476807, 0.005012512, -0.028640747, -0.007446289, -0.019592285, -0.0037612915, 0.033172607, 0.027114868, -0.026657104, 0.032318115, 0.008865356, 0.010223389, 0.059570312, 0.021514893, 0.018829346, -0.009262085, -0.07751465, -0.06604004, -0.019058228, 0.036987305, 0.018569946, -0.039611816, -0.011772156, -0.020629883, -0.019226074, -0.012374878, 0.0005249977, -0.0076560974, -0.008598328, 0.004146576, -0.017089844, -0.015533447, -0.014915466, -0.058654785, -0.061706543, 0.039520264, 0.095581055, -0.027008057, -0.004623413, 0.0022068024, -0.04321289, -0.03866577, -0.020904541, -0.039489746, -0.029342651, -0.04333496, -0.0072288513, 0.018737793, -0.015960693, -0.009674072, -0.0021438599, -0.008392334, 0.0019989014, 0.023147583, 0.00630188, 0.0141067505, -0.012641907, 0.09112549, -0.00025820732, 0.05871582, 0.006439209, -0.121276855, -0.05807495, 0.03857422, 0.0014486313, -0.024490356, 0.011772156, -0.01184845, 0.00087213516, 0.0357666, -0.024597168, -0.027328491, 0.03189087, 0.04296875, 0.009963989, 0.02720642]}, "B07PHRM55J": {"id": "B07PHRM55J", "original": "Brand: Hisencn\nName: Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills\nDescription: \nFeatures: \u3010Fits Charbroil Performance 4 Burner Grills\u3011Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills.\n\u3010Fits Charbroil Performance 5 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 \u3010Fits Charbroil Performance 6 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619.\nIf you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; \u25b2If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM.\nBurner Dimesion: 17 3/4\" x 3/5\", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16\" X 2 1/12\", Material : Stainless steel ; Original parts number: G470-0004-W1. \u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\nRepair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.\n", "metadata": {"Name": "Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills", "Brand": "Hisencn", "Description": "", "Features": "\u3010Fits Charbroil Performance 4 Burner Grills\u3011Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills.\n\u3010Fits Charbroil Performance 5 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 \u3010Fits Charbroil Performance 6 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619.\nIf you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; \u25b2If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM.\nBurner Dimesion: 17 3/4\" x 3/5\", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16\" X 2 1/12\", Material : Stainless steel ; Original parts number: G470-0004-W1. \u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\nRepair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035308838, -0.015991211, -0.0287323, -0.022827148, 0.00013375282, 0.0074806213, -0.007205963, 0.020217896, -0.042022705, 0.021270752, 0.029785156, 0.03161621, -0.0059165955, -0.037109375, 0.042022705, -0.022842407, 0.025390625, 0.012207031, 0.027496338, -0.011238098, 0.007320404, 0.020233154, -0.0021953583, 0.11376953, 0.032196045, -0.09112549, 0.024414062, 0.0053749084, 0.004295349, -0.023040771, 0.024047852, 0.028640747, 0.022949219, 0.017669678, -0.050201416, -0.026351929, -0.0024757385, 0.0051612854, -0.024871826, 0.009880066, -0.0005874634, 0.0016460419, -0.0077056885, -0.03286743, -0.0048675537, -0.05911255, 0.028427124, -0.04660034, -0.013511658, 0.013458252, 0.004753113, -0.013061523, 0.0034313202, 0.02897644, -0.019729614, -0.002632141, -0.011680603, 0.037139893, 0.015350342, -0.0077438354, -0.003271103, 0.0056266785, 0.001033783, -0.009017944, -0.03527832, -0.0017967224, 0.09820557, -0.00390625, -0.011810303, -0.046081543, 0.026641846, 0.056915283, 0.029159546, 0.01965332, -0.04284668, -0.073913574, 0.07647705, -0.015106201, 0.0022850037, -0.0059814453, -0.033416748, -0.0017414093, -0.038879395, 0.049072266, -0.056396484, 0.032806396, -0.025436401, -0.013252258, -0.02772522, -0.014274597, -0.026611328, -0.030975342, -0.013320923, 0.0158844, -0.020324707, 0.026412964, -0.018844604, -0.06188965, 0.0065231323, -0.029693604, 0.030151367, -0.04095459, 0.0021629333, 0.018432617, -0.02444458, -0.029006958, -0.021392822, 0.020935059, 0.0049819946, 0.043945312, -0.026550293, -0.055603027, -0.053833008, -0.062438965, -0.0045433044, 0.050964355, -0.027923584, -0.022079468, 0.015487671, -0.056396484, -0.012321472, 0.01777649, -0.036315918, 0.050598145, 0.0021381378, 0.021133423, 0.030776978, -0.003993988, -0.040985107, 0.048217773, -0.008552551, -0.00014948845, 0.052093506, 0.07598877, 0.026550293, -0.014152527, 0.03375244, -0.025009155, 0.009101868, -0.016815186, 0.029953003, -0.023757935, -0.02583313, 0.005504608, 0.013023376, 0.01953125, 0.02230835, -0.0065345764, 0.014640808, -0.0013742447, -0.04876709, -0.0033435822, 0.0552063, 0.03173828, -0.09655762, 0.011711121, -0.041381836, 0.00018954277, -0.02217102, -0.04763794, -0.0055999756, -0.010223389, -0.005393982, 0.030822754, -0.014526367, 0.032043457, 0.011909485, -0.014343262, 0.027313232, 0.04067993, 0.007686615, 0.018432617, 0.047302246, 0.010398865, -0.0087509155, -0.00016725063, -0.01826477, 0.07672119, 0.037963867, -0.079956055, -0.05895996, -0.070495605, 0.12695312, -0.04058838, -0.012451172, 0.025848389, 0.022094727, 0.04650879, -0.032287598, 0.011878967, 0.049957275, 0.0181427, 0.0009083748, -0.017471313, -0.01725769, 0.025985718, -0.045074463, 0.030929565, -0.030532837, -0.021133423, -0.03665161, -0.008850098, 0.027938843, 0.00011062622, 0.01525116, -0.025543213, 0.0021972656, 0.018005371, 0.013122559, 0.002067566, 0.00058460236, -0.018478394, -0.013122559, -0.011009216, -0.026626587, 0.03427124, -0.015144348, 0.015945435, -0.01789856, 0.05429077, 0.0014953613, -0.044677734, -0.0021514893, 0.039520264, 0.010536194, -0.01727295, -0.012619019, 0.0054969788, -0.009635925, 0.016677856, -0.014923096, 0.016311646, 0.0993042, 0.099365234, -0.014190674, 0.017974854, 0.081970215, 0.02178955, -0.019546509, -0.012809753, 0.022705078, -0.010139465, -0.025466919, -0.03579712, 0.006275177, -0.00856781, 0.030227661, -0.027053833, -0.013664246, 0.010421753, 0.037750244, 0.024871826, 0.036834717, 0.04071045, 0.0024108887, 0.02911377, 0.015838623, 0.008621216, -0.046203613, 0.061767578, -0.024169922, 0.04309082, 0.00995636, -3.9100647e-05, 0.052124023, -0.02508545, 0.024887085, 0.01033783, -0.043426514, -0.011657715, 0.025604248, 0.016479492, 0.029647827, 0.012214661, -0.015625, -0.0028476715, -0.020767212, 0.0004014969, 0.030029297, -0.0025291443, -0.007369995, 0.033721924, -0.031036377, -0.027236938, -0.0006699562, 0.02166748, -0.022460938, 0.00012028217, -0.06341553, -0.010978699, 0.01965332, 0.014602661, -0.033203125, 0.0069847107, -0.014732361, -0.007129669, 0.038513184, 0.004005432, 0.013038635, -0.029190063, -0.004535675, 0.026443481, -0.03366089, -0.00045752525, -0.016021729, 0.020523071, 0.009361267, -0.014717102, -0.013641357, -0.033477783, 0.0023422241, 0.0032482147, 0.030532837, 0.04248047, 0.030822754, -0.026306152, 0.010757446, 0.06750488, 0.006538391, -0.03186035, -0.03543091, 0.030960083, 0.0031547546, -0.019256592, 0.015106201, 0.0035266876, -0.036590576, 0.012969971, -0.012451172, 0.00881958, 0.019561768, -0.016174316, 0.0063323975, 0.029907227, -0.0016431808, -0.01007843, 0.0030403137, 0.040771484, 0.0019550323, -0.0395813, -0.019241333, -0.00075674057, -0.00032162666, -0.04724121, -0.055755615, -0.02658081, 0.045654297, 0.005886078, 0.018112183, 0.003742218, 0.014122009, -0.015823364, -0.0104904175, 0.021972656, 0.013969421, 0.00042796135, -0.0017299652, -0.015792847, -0.01763916, -0.06378174, -0.031433105, 0.03189087, -0.01727295, 0.0018501282, 0.005104065, -0.0090789795, -0.021011353, 0.030136108, -0.024337769, -0.009811401, 0.041992188, -0.029220581, -0.06335449, -0.012878418, -0.019882202, 0.0037727356, 0.029647827, -0.034179688, 0.013122559, 0.013122559, -0.0028820038, 0.00072336197, -0.039154053, -0.0513916, 0.029052734, 0.018493652, 0.012428284, 0.028625488, -0.00093984604, -0.012382507, 0.0050239563, 0.017059326, 0.0072746277, 0.008377075, 0.013084412, 0.0061569214, -0.02658081, -0.036865234, -0.034729004, 0.0011301041, -0.0670166, 0.0014514923, -0.0368042, -0.008605957, -0.017196655, -0.06365967, -0.010757446, -0.07659912, -0.006587982, 0.07537842, -0.020339966, -0.013023376, -0.06896973, 0.027404785, 0.010810852, -0.0012750626, -0.046844482, -0.013031006, -0.03744507, 0.034240723, 0.022247314, 0.005874634, -0.01852417, 0.03173828, -0.022857666, -0.013473511, -0.012054443, 0.0124435425, -0.03125, 0.0075950623, -0.02444458, -0.028518677, -0.012451172, -0.004753113, -0.032348633, 0.00036597252, 0.013671875, -0.012702942, 0.038848877, -0.034057617, -0.06085205, 0.004184723, -0.008804321, 0.007873535, -0.013786316, -0.03955078, -0.0075798035, -0.04699707, -0.015602112, -0.06756592, 0.019821167, 0.016052246, 0.068115234, 0.02180481, 0.026824951, 0.07507324, -0.0025615692, 0.0340271, -0.008491516, 0.026779175, -0.017501831, -0.016235352, 0.063964844, -0.02217102, 0.0063552856, -0.0390625, -0.023742676, 0.023757935, -0.026779175, -0.007545471, 0.0020370483, 0.054382324, 0.023895264, -0.0019721985, 0.0012521744, -0.01663208, 0.002653122, -0.0025959015, 0.01776123, -0.02178955, -0.060913086, 0.011802673, -0.049804688, 0.05718994, 0.038024902, -0.020477295, 0.063964844, 0.017318726, -0.025100708, 0.0069885254, 0.011779785, 0.024490356, -0.021377563, 0.08886719, -0.011314392, -0.027862549, 0.00083971024, 0.030380249, 0.017578125, 0.008590698, -0.037872314, -0.016830444, -0.022445679, -0.034362793, 0.009132385, 0.040771484, 0.001127243, -0.003293991, 0.00957489, -0.004837036, -0.012611389, -0.027877808, 0.0149383545, 0.062286377, -0.044921875, -0.055480957, 0.00920105, 0.042053223, -0.05783081, -0.00932312, 0.0026760101, 0.05908203, -0.035614014, 0.061767578, -0.0395813, 0.015541077, -0.088378906, -0.009674072, -0.033233643, 0.025405884, 0.013572693, 0.013465881, 0.038635254, -0.014526367, 0.013023376, -0.007621765, -0.012542725, -0.01991272, -0.051239014, -0.043884277, -0.0011224747, -0.02507019, -0.030929565, -0.028198242, 0.0012311935, -0.009483337, 0.028549194, -0.02305603, 0.03036499, -0.08770752, 0.029510498, 0.058410645, -0.02848816, -0.015960693, -0.040100098, -0.06536865, -0.03881836, 0.018951416, 0.0039367676, 0.009849548, -0.008995056, 0.015808105, -0.050811768, -0.012496948, -0.010681152, -0.0045814514, 0.043182373, -0.00084733963, 0.045898438, -0.0016822815, 0.013847351, -0.025985718, 0.064819336, -0.026290894, -0.0023612976, -0.06384277, -0.04989624, -0.004711151, -0.0016670227, 0.06561279, -0.028930664, 0.035614014, -0.007457733, 0.0039253235, -0.02760315, 0.017105103, 0.0074005127, -0.009010315, -0.029693604, 0.008735657, 0.058410645, -0.020477295, -0.0029067993, -0.011558533, 0.013542175, -0.012863159, -0.0026416779, -0.027420044, 0.0069465637, -0.008056641, -0.006679535, 0.01436615, -0.006969452, -0.002603531, 0.040893555, 0.016189575, 0.029144287, 0.005580902, -0.014450073, -0.023422241, 0.0035095215, 0.006717682, 0.012893677, 0.0103302, -0.009437561, -0.022094727, -0.03729248, 0.04663086, 0.038909912, 0.00087833405, 0.014770508, -0.027709961, -0.01158905, -0.039093018, 0.03945923, 0.022491455, -0.0035991669, 0.016235352, -0.02482605, 0.0030899048, -0.0368042, 0.00020229816, -0.025421143, -0.029937744, -0.0087509155, 0.002538681, 0.0131073, -0.028320312, 0.028015137, -0.0029258728, -0.013038635, 0.03744507, -0.0022678375, 0.011711121, 0.006008148, -0.028060913, -0.02178955, -0.0284729, -0.01083374, -0.0017518997, 0.029205322, 0.0074043274, -0.044036865, 0.0063819885, 0.030395508, -0.0078125, -0.005962372, 0.007194519, 0.010574341, -0.016448975, -0.008590698, 0.020248413, -0.039093018, 0.008880615, 0.077819824, -0.0035476685, 0.019699097, 0.059814453, 0.0049972534, 0.04901123, 0.0071868896, -0.0044174194, -1.7285347e-06, 0.011260986, 0.02798462, -0.0026435852, 0.033416748, 0.00036382675, -0.011802673, -0.02760315, 0.01197052, -0.003042221, 0.0016326904, 0.015899658, -0.00283432, 0.036132812, 0.014274597, -0.0287323, 0.0010004044, 0.014045715, -0.024429321, -0.030395508, -0.015304565, -0.061706543, -0.029205322, -0.023788452, -0.029373169, -0.011383057, -0.050750732, 0.016448975, 0.035888672, -0.0038795471, 0.0050697327, -0.03186035, 0.026550293, -0.0050849915, -0.015449524, -0.02520752, 0.014266968, -0.005153656, 0.015563965, 0.065979004, 0.007843018, -0.016830444, -0.010948181, -0.012306213, 0.012496948, 0.04660034, -0.0019264221, -0.006126404, -0.021408081, -0.011383057, 0.013832092, 0.031036377, 0.018722534, 0.034362793, -0.06439209, -0.019897461, -0.010894775, 0.0049858093, -0.039886475, -0.0046424866, 0.08276367, -0.05596924, -0.049560547, -0.0113220215, 0.04257202, -0.017028809, -0.01864624, 0.08892822, 0.030044556, 0.024429321, 0.008926392, -0.0020866394, 0.014389038, 0.05407715, 0.02319336, -0.02432251, -0.043426514, 0.0033473969, -0.03164673, -0.0076942444, -0.03640747, -0.0016117096, 0.047607422, 0.0041046143, -0.028869629, -0.018478394, -0.018112183, 0.02079773, -0.030883789, 0.007896423, -0.0026073456, 0.012107849, -0.010055542, 0.005973816, -0.09094238, -0.034118652, 0.04815674, -0.02571106, 0.0076828003, -0.016326904, 0.018081665, 0.0068511963, 0.012504578, 0.016311646, 0.0055122375, 0.018203735, -0.01687622, 0.028381348, -0.024459839, 0.08508301, -0.07647705, -0.005935669, -0.004966736, 0.022842407, 0.017410278, 0.0104904175, -0.024230957, -0.016204834, 0.008766174, 0.02746582, -0.004825592, -0.008804321, 0.052734375, 0.02999878, -0.05618286, -0.01889038, -0.002954483, -0.03829956, -0.0014677048, -0.04611206, 0.011268616, 0.022644043, 0.0036296844, 0.019973755, -0.005130768, 0.050323486, -0.0036449432, -0.007801056, 0.014266968, -0.04067993, -0.025482178, -0.009391785, 0.02859497, 0.030029297, 0.070373535, 0.021377563, -0.0031661987, -0.055236816, 0.0087890625, 0.038879395, -0.011138916, 0.024734497, -0.008071899, 0.011207581, -0.02508545, -0.00894928, 0.021148682, 0.0056915283, -0.0112838745, -0.007160187, -0.029953003, 0.012649536, 0.010894775, 0.0019359589, -0.016311646, 0.0368042, 0.017105103, 0.00045752525, -0.0013875961, -0.033569336, 0.020767212, -0.0010442734, -0.016983032, -0.022583008, 0.011993408, 0.0075416565, -0.024932861, 0.022979736, 0.03326416, 0.01638794, 0.021713257, -0.06488037, 0.02670288, -0.0013170242, 0.014533997, -0.001493454, -0.038208008, 0.016647339, 0.034179688, 0.0027980804, 0.05343628, -0.007911682, 0.026306152, 0.04345703, -0.020080566, 0.053375244, -0.045532227, 0.08428955, 0.039886475, 0.029830933, -0.05053711, -0.05609131, -0.024291992, 0.010520935, -0.016448975, 0.016815186, 0.01802063, -0.0010538101, 0.01574707, 0.041625977, 0.032562256, -0.02859497, 0.04083252, 0.035461426, -0.02166748, 0.038726807, -0.021972656, -0.009216309, -0.0030288696, -0.026855469, 0.003227234, -0.0068740845, -0.052001953, 0.015258789, 0.027679443, -0.041229248, -0.040130615, 0.0041007996, 0.03756714, -0.042022705, -0.011459351, -0.06951904, 0.018539429, 0.0028953552, -0.024230957, -0.027328491, 0.0110321045, -0.016845703, 0.023986816, 0.044677734, -0.06555176, -0.014640808, 0.02835083, -0.017822266, -0.07977295, -0.06323242, -0.016403198, -0.021224976, 0.013687134, 0.079956055, -0.074279785, -0.06124878, -0.035064697, 0.038330078, -0.103515625, -0.06008911, 0.048706055, 0.0008893013, 0.044433594, 0.006477356, 0.0036525726, 0.046417236, 0.01902771, -0.006401062, 0.012542725, -0.018951416, 0.0022010803, -0.004558563, 0.0074386597, -0.03274536, -0.033721924, 0.008285522, 0.013671875, -0.021942139, 0.033447266, -0.019561768, -0.048950195, -0.0023174286, 0.001244545, -0.005039215, 0.0020980835, -0.026535034, 0.009361267, 0.019927979, -0.02520752, -0.017150879, -0.009056091, 0.0019950867, 0.042175293, -0.0064048767, -0.0057754517, -0.033172607, -0.050933838, -0.044769287, -0.010375977, 0.033996582, 0.087402344, 0.052215576, 0.014846802, 0.047454834, -0.02166748, 0.0335083, -0.022705078, 0.019378662, -0.0036239624, -0.017364502, -0.0030345917, -0.02859497, -0.007610321, -0.013641357, 0.0036010742, -0.045043945, 0.08123779, -0.0072669983, -0.008323669, 0.001156807, -0.03149414, -0.02116394, 0.009605408, -0.03543091, -0.02458191, -0.045715332, 0.006893158, 0.026016235, -0.000623703, 0.024124146, 0.004470825, -0.012359619, -0.011413574, 0.017486572, 0.0003437996, 0.002286911, -0.022979736, 0.012626648, 0.004714966, 0.07720947, -0.056274414, -0.0004544258, -0.023483276, 0.0037899017, 0.013183594, 0.006629944, 0.09454346, -0.060546875, 0.0075569153, 0.014984131, -0.016723633, -0.045166016, 0.057861328, 0.05038452, 0.014526367, 0.03744507]}, "B00T36LG5U": {"id": "B00T36LG5U", "original": "Brand: ADCO\nName: ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover\nDescription: \nFeatures: Fit's Double 20 LB propane tanks\nThe fabric is designed to look like a diamond plated steel and matches the plating on your vehicle\nSecures with an elasticized bottom hem and zipper\n1 cover per box\n", "metadata": {"Name": "ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover", "Brand": "ADCO", "Description": "", "Features": "Fit's Double 20 LB propane tanks\nThe fabric is designed to look like a diamond plated steel and matches the plating on your vehicle\nSecures with an elasticized bottom hem and zipper\n1 cover per box", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013961792, -0.010810852, -0.028564453, -0.044891357, -0.025939941, -0.0015449524, -0.054534912, 0.028289795, -0.05697632, -0.009757996, -0.013511658, 0.021774292, -0.0713501, -0.033599854, 0.023330688, -0.06842041, 0.02696228, -0.0065345764, -0.012878418, -0.022399902, -0.013092041, -0.022201538, 0.029586792, 0.002943039, 0.01737976, -0.008918762, 0.060943604, -0.0027694702, 0.03125, 0.0045051575, 0.027435303, -0.04876709, 0.040740967, -0.012023926, -0.013847351, -0.029327393, -0.0032157898, -0.013504028, -0.028961182, 0.01626587, -0.015548706, 0.006477356, 0.05480957, -0.0033435822, 0.029785156, -0.054351807, 0.019973755, -0.070617676, 0.0077667236, 0.049041748, 0.0044784546, -0.012619019, -0.0035209656, -0.019073486, -0.0033111572, 0.0029258728, -0.012931824, -0.01689148, 0.03277588, 0.0007123947, -0.017150879, -0.025177002, 0.026947021, -0.03137207, -0.035339355, 0.014663696, 0.06555176, -0.036071777, -0.031707764, -0.05029297, 0.021087646, 0.012741089, 0.016159058, -0.044403076, -0.016052246, 0.020446777, -0.011245728, -0.009162903, 0.025543213, -0.017730713, 0.014518738, -0.023101807, 0.030273438, 0.029937744, -0.025283813, 0.030532837, -0.016860962, -0.02178955, 0.028869629, 0.007736206, 0.001083374, 0.03387451, 0.030776978, 0.031707764, -0.022216797, -0.022476196, -0.008880615, -0.012199402, 0.047424316, 0.021453857, -0.022125244, -0.03363037, 0.0074691772, -0.005592346, 0.02557373, 0.04119873, -0.014076233, 0.016448975, 0.055236816, 0.0029754639, -0.009521484, 0.045410156, -0.02420044, -0.0154953, -0.046539307, 0.0053710938, -0.04321289, 0.007663727, 0.00021791458, 0.006702423, -0.0044784546, 0.01235199, -0.025482178, -0.0035591125, 0.03050232, 0.02229309, -0.016708374, 0.01626587, -0.020492554, 0.01890564, -0.011749268, -0.020401001, 0.013587952, 0.053009033, 0.014694214, -0.015594482, -0.012527466, 0.025939941, -0.001414299, -0.0109939575, 0.015716553, -0.008476257, 0.026168823, 0.000995636, -0.06793213, 0.03753662, 0.025405884, -0.01878357, -0.026519775, -0.05709839, -0.058654785, 0.0029239655, 0.038208008, 0.022445679, -0.022644043, 0.03186035, 0.048339844, -0.014930725, -0.07208252, -0.053375244, 0.007041931, -0.012435913, -0.011680603, 0.0602417, 0.012046814, 0.0440979, 0.030822754, -0.00012010336, 0.030212402, 0.058929443, 0.0008878708, 0.0020923615, -0.01612854, 0.05328369, 0.011909485, 0.0009622574, 0.0061950684, 0.04824829, 0.06719971, -0.06225586, -0.06781006, -0.06719971, 0.13085938, -0.05532837, -0.0003976822, -0.052246094, 0.003255844, -0.037841797, 0.03579712, -0.00058841705, 0.0010213852, 0.029342651, 0.009338379, -0.021774292, -0.01259613, 0.010467529, -0.0031223297, 0.039764404, -0.023223877, -0.011398315, -0.023773193, 0.022476196, -0.023635864, 0.046142578, 0.025634766, -0.014129639, 0.017364502, -0.006500244, -0.03866577, -0.010475159, 0.0007324219, -0.026046753, 0.004058838, -0.017578125, 0.0034751892, 0.02015686, -0.04019165, -0.015350342, -0.039489746, -0.007926941, -0.030761719, -0.0074653625, -0.025115967, 0.020019531, -0.033996582, 0.02319336, -0.034332275, 0.011444092, -0.007293701, -0.018417358, 0.08404541, 0.03250122, 0.044036865, 0.015563965, -0.025375366, 0.03164673, 0.04550171, 0.012168884, -0.027038574, 0.0046310425, 0.004573822, -0.039398193, 0.012107849, 0.057617188, 0.012771606, -0.000954628, 0.00831604, 0.02268982, -0.032226562, 0.019378662, 0.06951904, 0.00062036514, 0.0016860962, -0.013061523, -0.018325806, 0.019866943, -0.019165039, 0.008178711, 0.0071144104, 0.036865234, -0.017684937, 0.08850098, 0.062927246, 0.022735596, 0.0446167, -0.0050964355, 0.043426514, 0.03869629, -0.021606445, -0.012260437, 0.007820129, 0.035339355, 0.007949829, 0.029876709, -0.03213501, 0.03289795, -0.049468994, 0.01524353, 0.023452759, 0.0062713623, 0.026550293, 0.020507812, -0.006565094, -0.014274597, 0.048034668, 0.045806885, -0.008613586, 0.00774765, -0.051849365, -0.035736084, 0.02166748, -0.0024337769, -0.024520874, -0.022155762, 0.011062622, -0.019760132, 0.009544373, -0.0004799366, 0.019638062, -0.024993896, -0.009277344, 0.0418396, -0.020401001, 0.011100769, 0.020980835, -0.003944397, 0.0011472702, 0.036499023, 0.03552246, 0.008239746, -0.027557373, 0.021316528, 0.011352539, 0.048065186, 0.013671875, 0.0018796921, 0.028915405, 0.054107666, 0.039154053, 0.0064353943, 0.0075416565, 0.0084991455, -0.019241333, -0.014053345, -0.0024490356, -0.00015902519, -0.025802612, -0.012039185, -0.011642456, 0.0032405853, 0.020904541, -0.041137695, -0.020355225, -0.016738892, 0.0149383545, 0.0014982224, 0.011383057, 0.029174805, 0.008369446, -0.0044021606, 0.06124878, -0.008041382, 0.008140564, 0.03768921, -0.02381897, -0.091674805, 0.056396484, -0.03112793, 0.004650116, 0.019119263, 0.04159546, 0.011291504, -0.02796936, 0.0020332336, -0.0079422, 0.023727417, 0.014015198, 0.009292603, 0.018417358, -0.03564453, 0.008483887, -0.022964478, -0.043762207, 0.019683838, 0.05770874, -0.030776978, -0.025482178, -0.02267456, 0.016159058, 0.019317627, -0.010192871, 0.030639648, -0.08581543, -0.023880005, -0.0026836395, -0.0019702911, -0.030090332, -0.0524292, 0.00381279, -0.028625488, 0.024673462, 0.023712158, 0.000831604, 0.032806396, -0.041412354, 0.06439209, 0.068115234, 0.015602112, -0.0066871643, -0.054382324, -0.016799927, 0.05532837, 0.030715942, -0.020935059, -0.012641907, -0.009140015, -0.059143066, -0.0012750626, -0.049682617, 0.020614624, -0.121032715, 0.014450073, -0.007007599, -0.033081055, -0.002916336, -0.013412476, -0.05657959, -0.05432129, 0.032348633, 0.021362305, -0.014289856, 0.030929565, -0.014823914, 0.020462036, -0.034606934, 0.020721436, 0.030166626, 0.00010937452, -0.020050049, -0.008010864, 0.057678223, -0.07324219, 0.044311523, 0.037750244, -0.032318115, 0.012771606, -0.0030536652, 0.01878357, 0.021942139, 0.012489319, -0.012954712, -0.010559082, -0.044830322, -0.008117676, 0.0049095154, 0.061676025, 0.03366089, -0.00026226044, 0.030563354, -0.005596161, -0.04232788, -0.015129089, 0.021896362, 0.016464233, -0.014137268, 0.017959595, 0.0039749146, -0.023803711, -0.02583313, -0.021072388, -0.017150879, 0.03286743, -0.010223389, 0.0040359497, -0.01876831, -0.014839172, 0.0013875961, 0.033935547, 0.006214142, 0.032073975, 0.011894226, -0.026290894, 0.022857666, 0.004878998, -0.01890564, -0.032592773, 0.012260437, -0.021942139, -0.036254883, 0.019058228, -0.053649902, 0.07824707, 0.0012264252, -0.0084991455, -0.012313843, -0.004863739, 0.031234741, -0.01979065, 0.024429321, -0.013626099, -0.028518677, 0.005897522, -0.068237305, 0.058898926, 0.056396484, -0.024658203, 0.044830322, 0.047546387, 0.005378723, 0.027572632, 0.018081665, -0.014381409, 0.023483276, 0.029571533, -0.023971558, 0.008804321, -2.5212765e-05, -0.04067993, 0.004146576, -0.034301758, 0.008377075, -0.0090789795, -0.01586914, -0.005382538, -0.03479004, -0.01977539, -0.0024337769, -0.0034999847, 0.027236938, 0.0005187988, -0.048828125, -0.0048980713, 0.020950317, 0.024963379, -0.003921509, 0.043029785, 0.013694763, 0.042541504, 0.0037784576, -0.02720642, -0.033325195, -0.019989014, 0.0023059845, 0.044799805, -0.024246216, 0.026016235, -0.046813965, 0.027069092, -0.025863647, 0.04055786, 0.0104522705, 0.011329651, 0.027252197, -0.03527832, 0.018157959, -0.018051147, -0.002735138, -0.0006093979, -0.0262146, -0.07373047, 0.03074646, 0.0637207, -0.016281128, -0.041900635, -0.0158844, 0.011077881, -0.013549805, 0.019515991, -0.041931152, -0.0027198792, -0.0079193115, 0.009567261, -0.066101074, -0.04309082, -0.029632568, 0.010955811, -0.040863037, 0.010223389, -0.00242424, -0.00017619133, 0.0015487671, 0.052703857, -0.03375244, -0.025268555, -0.07739258, 0.023590088, -0.033355713, -0.0141067505, 0.07385254, -0.057556152, -0.004722595, -0.039733887, 0.07543945, 0.035339355, 0.03277588, 0.00083732605, -0.008201599, -0.005207062, -0.008094788, -0.019058228, -0.021972656, 0.03665161, 0.025146484, -0.009788513, -0.05886841, -0.018249512, 0.059020996, -0.030563354, -0.04650879, -0.032318115, 0.05532837, 0.0019016266, -0.03161621, -0.06585693, 0.018859863, 0.06500244, -0.027328491, -0.0030727386, -0.017318726, 0.011619568, 0.0042800903, -0.028396606, -0.008712769, -0.019714355, 0.061676025, -0.019119263, 0.0050811768, -0.011749268, -0.0020065308, 0.01436615, -0.033996582, -0.00856781, -0.0018234253, 0.003282547, -0.0022029877, 0.0010766983, -0.03466797, 0.052246094, 0.025604248, 0.0006952286, -0.0056648254, 0.007129669, -0.0013771057, -0.058807373, -0.04949951, -0.0022506714, 0.035461426, -0.014259338, -0.03845215, 0.0129470825, -0.020324707, -0.00024557114, -0.036895752, -0.009246826, -0.000182271, 0.04058838, -0.03439331, -0.022888184, -0.019683838, -0.0017585754, 0.012466431, -0.009727478, -0.042907715, -0.006412506, 0.012992859, -0.019699097, -0.014717102, 0.00075769424, -0.026123047, -0.02078247, 0.0070533752, 0.013801575, -0.021820068, 0.059692383, 0.009391785, 0.030776978, -0.025390625, 0.00579834, -0.0046081543, -0.020812988, -0.047210693, -0.010566711, -0.0050697327, 0.009681702, 0.046051025, 0.04336548, 0.017608643, 0.020874023, 0.009521484, 0.018234253, -0.019454956, 0.015213013, -0.030075073, 0.01574707, 0.02128601, -0.06323242, 0.050201416, 0.008117676, -0.04144287, -0.055511475, 0.0062179565, -0.03152466, -0.013381958, 0.016616821, -0.02079773, 0.035247803, -0.025894165, -0.01361084, 0.04458618, 0.012466431, 0.011978149, 0.016342163, 0.025497437, -0.038024902, -0.047790527, 0.011634827, -0.033691406, -7.098913e-05, -0.012992859, -0.00969696, 0.021240234, -0.0048942566, -0.019546509, -0.03515625, -0.019729614, -0.0385437, -0.03149414, -0.021636963, -0.0008263588, 0.029968262, -0.036132812, -0.03756714, -0.041656494, -0.0014667511, -0.057861328, 0.00944519, 0.029296875, 0.0053482056, 0.016204834, 0.06744385, -0.04421997, -0.010810852, -0.0154953, 0.01689148, 0.040771484, -0.024780273, -0.09259033, -0.044952393, 0.008773804, 0.034057617, 0.007156372, 0.0064926147, 0.021621704, -0.01927185, 0.0027160645, -0.09588623, 0.022155762, -0.047027588, -0.0625, 0.041931152, 0.08074951, -0.006626129, 0.02357483, -0.012619019, -0.058380127, 0.047668457, 0.0051612854, -0.076660156, -0.016403198, -0.03137207, -0.025253296, 0.011810303, -0.024383545, -0.059814453, 0.009712219, -0.052490234, 0.016159058, -0.053710938, -0.041229248, -0.013961792, -0.028533936, 0.013336182, -0.005191803, 0.014511108, -0.0004415512, 0.022460938, -0.06210327, -0.04663086, -0.042907715, 0.016540527, 0.022583008, 0.0055007935, -0.00374794, -0.020401001, 0.0021400452, 0.006313324, 0.024414062, -0.03262329, 0.03768921, 0.0435791, -0.03753662, 0.044769287, -0.07220459, -0.015487671, 0.013954163, -0.052490234, 0.03503418, -0.023254395, -0.056732178, -0.029296875, 0.07434082, 0.055755615, -0.007820129, -0.011436462, 0.022018433, 0.011711121, -0.041656494, -0.019546509, -0.0029144287, -0.026367188, 0.02003479, -0.050933838, 0.0061187744, 0.004798889, -0.028656006, 0.015090942, -0.057769775, 0.06488037, -0.000103354454, -0.007980347, 0.022918701, 0.013847351, 0.010925293, -0.0052452087, -0.036743164, 0.02633667, -0.0012817383, 0.010055542, -0.008850098, -0.050933838, 0.019104004, 0.016586304, -0.046905518, 0.06036377, -0.0039253235, 0.010505676, -0.012031555, -0.04321289, 0.049835205, -0.03463745, -0.033416748, 0.000117242336, -0.012664795, 0.008224487, 0.00024485588, 0.013549805, 0.006668091, 0.025894165, 0.0020599365, 0.034210205, 0.0024375916, -0.03475952, 0.0023937225, -0.031707764, 0.032806396, -0.027923584, -0.031066895, 0.004016876, -0.016342163, 0.017196655, 0.028839111, -0.018951416, 0.035614014, -0.04260254, 0.012496948, -0.039794922, 0.022506714, -0.04925537, -0.023391724, 0.0041923523, 0.0039711, -0.022201538, -0.033447266, -0.008110046, 0.007972717, 0.0012235641, -0.0395813, 0.050445557, -0.060791016, 0.070251465, 0.026535034, -0.0038661957, -0.028015137, -0.007637024, -0.010757446, 0.013290405, -0.006072998, 0.036315918, 0.023544312, -0.00087451935, 0.004890442, 0.026138306, 0.045074463, 0.0065193176, 0.017791748, -0.017562866, -0.012687683, 0.0039253235, 0.007499695, -0.0044174194, -0.023025513, 0.001745224, 0.010810852, 0.0067710876, 0.011459351, -0.010032654, 0.0118637085, 0.024887085, -0.04385376, 0.04537964, -0.019180298, -0.05557251, 0.0048294067, -0.0054779053, 0.0084991455, -0.024337769, -0.0115356445, -0.0057868958, -0.043701172, -0.053649902, 0.06427002, -0.026443481, -0.025512695, -0.011390686, 0.0065612793, 0.010803223, -0.042816162, -0.02355957, 0.017059326, 0.017684937, -0.0037460327, 0.02822876, 0.016723633, -0.047607422, -0.078430176, 0.016952515, -0.0440979, 0.009094238, 0.008163452, -0.0074272156, 0.0084991455, -0.0030059814, -0.010429382, 0.017547607, 0.03314209, -0.021331787, 0.00806427, -0.06713867, -0.037963867, 0.05001831, -0.005874634, -0.00090646744, -0.026626587, 0.053863525, -0.014511108, -0.0075683594, 0.028625488, -0.0127334595, -0.011436462, 0.010116577, 0.008255005, -0.045013428, 0.036468506, -0.040130615, 0.06463623, 0.04071045, -0.026000977, -0.01576233, 0.014167786, -0.029815674, 0.01838684, -0.026672363, 0.048706055, -0.008392334, -0.09448242, -0.040863037, -0.0390625, 0.018249512, 0.019699097, -0.04638672, 0.011253357, 0.036499023, -0.031555176, -0.013061523, 0.015007019, 0.0692749, -0.027526855, -0.009506226, 0.015014648, -0.050445557, -0.0030555725, -0.020843506, -0.026229858, -0.054351807, -0.003080368, 0.02960205, -0.034332275, -0.02798462, -0.015838623, 0.016860962, -0.024536133, -0.053100586, -0.01991272, -0.008911133, -0.007511139, 0.020706177, 0.00016474724, -0.009422302, -0.004699707, 0.009513855, 0.0013990402, 0.010765076, -0.004348755, -0.008384705, 0.011749268, 0.01322937, -0.034698486, 0.095703125, -0.027297974, -0.07989502, -0.039489746, 0.013435364, 0.0019083023, -0.0069122314, 0.046325684, -0.017425537, 0.009918213, 0.017654419, -0.019943237, -0.037231445, 0.01763916, 0.038330078, 0.001493454, 0.019058228]}, "B00GOW6VAQ": {"id": "B00GOW6VAQ", "original": "Brand: Camco\nName: Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "metadata": {"Name": "Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White)", "Brand": "Camco", "Description": "", "Features": "Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015838623, -0.026901245, -0.04763794, -0.04449463, -0.030578613, 0.0025405884, -0.045013428, 0.052764893, -0.0541687, -0.020080566, 0.0071907043, 0.020568848, -0.091918945, -0.038360596, 0.021560669, -0.05807495, 0.030136108, -0.008056641, -0.002456665, -0.027999878, 0.0037441254, -0.014778137, 0.023254395, 0.045288086, -0.0044670105, -0.03253174, 0.022140503, -0.0027389526, -0.0053520203, -0.015716553, 0.010528564, 0.019836426, 0.03768921, -0.0184021, 0.016403198, 0.05508423, 0.05895996, -0.034973145, -0.014526367, 0.032989502, -0.019439697, 0.027954102, 0.055999756, 0.004737854, 0.016708374, -0.059936523, 0.009483337, -0.052642822, 0.057617188, 0.050048828, -0.008934021, 0.016113281, -0.030029297, -0.0012626648, -0.00066804886, 0.014755249, 0.014282227, -0.02696228, 0.03161621, 0.008331299, -0.0021457672, 0.0037841797, 0.01146698, -0.020492554, -0.046081543, 0.03829956, 0.070617676, -0.018966675, 0.0050697327, -0.07507324, -0.031021118, 0.018981934, 0.018753052, -0.03277588, -0.058044434, 0.0107803345, 0.0076446533, -0.003452301, 0.022415161, -0.03137207, 0.005329132, -0.003768921, 0.023376465, -0.016830444, -0.0018939972, 7.44462e-05, -0.009109497, -0.01838684, 0.009750366, 0.0054969788, -0.009841919, -0.008728027, 0.0070724487, 0.045562744, -0.009849548, -0.00020229816, -0.028793335, -0.01612854, 0.054840088, 0.031585693, 0.010269165, -0.038970947, 0.027648926, -0.019958496, 0.0054740906, 0.0007829666, -0.026000977, -0.004676819, 0.034210205, 0.025604248, -0.023635864, 0.028518677, -0.011634827, -0.00024580956, -0.023254395, -0.011512756, -0.046081543, 0.011642456, -0.0037841797, -0.018814087, -0.032958984, -0.018585205, 0.005092621, 0.0013484955, 0.005973816, -0.008041382, -0.024734497, 0.029876709, -0.051635742, 0.008712769, -0.016708374, 0.006958008, 0.04498291, 0.052124023, 0.015686035, -0.003704071, -0.0073890686, -0.0012207031, -0.010391235, -0.0022563934, 0.026138306, -0.0066375732, 0.035980225, 0.011810303, -0.03768921, 0.055236816, 0.028045654, -0.023269653, -0.03250122, -0.05606079, -0.048797607, -0.010047913, 0.03567505, 0.017745972, -0.034942627, 0.017868042, -0.0009965897, 0.0056648254, -0.05343628, -0.02722168, -0.023040771, -0.024307251, 0.0038852692, 0.020111084, 0.010047913, 0.036010742, 0.015792847, -0.0059013367, 0.013130188, 0.030807495, -0.03652954, 0.026351929, 0.008354187, 0.009063721, -0.014350891, -0.006881714, -0.01499176, 0.082092285, 0.06768799, -0.099975586, -0.0670166, -0.061706543, 0.1739502, -0.061401367, -0.007904053, -0.032470703, -0.0032520294, -0.04675293, 0.017807007, -0.019622803, 0.020950317, 0.042785645, 0.0012760162, -0.010253906, -0.008285522, -0.013252258, 0.011711121, 0.020614624, -0.019439697, -0.011459351, -0.049346924, -0.02053833, 0.025375366, 0.019638062, 0.03314209, -0.023162842, 0.018829346, -0.0038394928, -0.0440979, 0.020233154, 0.0011920929, -0.029830933, 0.012619019, -0.034057617, 0.025894165, -0.0065345764, -0.0067329407, 0.03540039, -0.02357483, 0.013404846, -0.0009727478, -0.020263672, 0.015487671, 0.041748047, -0.029251099, 0.008483887, -0.03173828, 0.00554657, -0.018203735, -0.0021038055, 0.05706787, 0.025527954, 0.047302246, 0.020385742, -0.019012451, 0.02330017, 0.01928711, -0.05593872, -0.015068054, 0.040222168, 0.011451721, -0.038391113, 0.007881165, 0.05404663, 0.006198883, -0.031921387, 0.00579834, 0.018157959, -0.026031494, -0.02168274, 0.09362793, -0.056884766, 0.0067100525, -0.029693604, -0.037750244, 0.0051002502, -0.032104492, 0.0028800964, 0.019943237, 0.0032577515, -0.013763428, 0.050445557, 0.073913574, -0.007926941, 0.024032593, 0.0024738312, 0.053375244, 0.041992188, 0.0034637451, -0.01928711, -0.007896423, 0.015899658, -0.009506226, 0.028320312, -0.0010347366, 0.0262146, -0.025787354, -0.011405945, -0.009284973, 0.025131226, 0.024032593, -0.0025863647, -0.011489868, -0.006511688, 0.045806885, -0.0012245178, 0.0044517517, 0.016723633, -0.07116699, -0.010002136, 0.022964478, 0.015586853, -0.0067214966, -0.047729492, 0.046875, 0.00198555, 0.051818848, -0.024658203, 0.01953125, -0.0065956116, 0.0025978088, 0.051757812, 0.002855301, -0.006038666, 0.0010786057, 0.047546387, -0.0090789795, 0.0011978149, 0.014976501, 0.0047416687, -0.00019145012, 0.025421143, 0.019378662, 0.015609741, 0.010154724, 0.018417358, 0.018096924, 0.052612305, 0.05319214, 0.064331055, -0.01713562, 0.049041748, 0.00680542, -0.013412476, 0.04135132, -0.010719299, -0.046661377, 0.00017666817, -0.033691406, -0.012283325, 0.038879395, -0.05029297, -0.017089844, -0.028686523, 0.020019531, -0.005092621, 0.00031971931, 0.03378296, 0.00023055077, -0.034057617, 0.026611328, -0.011245728, 0.017196655, 0.05303955, 0.014060974, -0.06738281, 0.025909424, -0.0010566711, -0.022705078, 0.005039215, 0.027236938, -0.02909851, 0.018997192, -0.020690918, 0.009414673, 0.0020389557, -0.035217285, -0.033996582, 0.001001358, -0.06896973, 0.017822266, -0.048431396, -0.05493164, -0.01676941, 0.07672119, -0.00919342, -0.053466797, -0.046569824, 0.026321411, -0.0048561096, 0.004108429, -0.0040130615, -0.086242676, -0.0010595322, 0.026763916, -0.0030155182, -0.029937744, -0.060546875, 0.051086426, -0.016189575, -0.0046920776, -0.002281189, 0.010574341, 0.037872314, 0.021270752, 0.01448822, 0.040618896, 0.061584473, 0.001824379, -0.023834229, -0.0022697449, 0.034484863, -0.014373779, -0.014427185, 0.007320404, -0.009941101, 0.0026512146, 0.0231781, -0.031982422, -0.008430481, -0.0769043, 0.0016860962, 0.0038967133, -0.04248047, -0.0003798008, -0.02670288, -0.05557251, -0.036193848, 0.035461426, 0.039154053, -0.027648926, 0.00033903122, -0.017913818, -0.009613037, -0.022094727, 0.01436615, 0.0016336441, -0.00774765, -0.03656006, 0.038391113, 0.035827637, -0.030395508, 0.0035972595, 0.025558472, -0.023330688, -0.0033836365, -0.030151367, -0.0035095215, 0.0032958984, 0.024627686, -0.030395508, 0.007259369, -0.027572632, -0.04345703, -0.027145386, -0.011154175, 0.0073890686, 0.014778137, 0.005870819, -0.004432678, -0.01676941, -0.015167236, 0.04107666, 0.0206604, 0.004425049, 0.0058937073, -0.010192871, -0.0004954338, 0.03604126, 0.008094788, -0.012779236, -0.006000519, 0.003643036, -0.004081726, -0.04272461, 0.031677246, -0.021591187, 0.03668213, 0.002954483, -0.041625977, -0.020965576, -0.0284729, -0.0051612854, -0.009109497, -0.014183044, -0.023773193, 0.05819702, -0.004306793, 0.0060043335, -0.021408081, -0.03375244, 0.03253174, -0.0066184998, -0.03363037, 0.013183594, -0.0038394928, 0.004333496, -0.0053749084, 0.028884888, -0.010505676, -0.071777344, 0.021575928, -0.052825928, 0.05343628, 0.036254883, -0.016220093, 0.08203125, 0.043762207, -0.011146545, 0.014305115, 0.03643799, -0.0121154785, 0.013587952, 0.008476257, -0.026473999, -0.02166748, 0.01020813, -0.0357666, -0.03213501, -0.045562744, -0.01928711, -0.003929138, -0.01399231, 0.027511597, -0.024780273, 0.018829346, 0.0048332214, -0.018356323, 0.02293396, -0.008285522, -0.040100098, -0.033416748, 0.011947632, 0.012145996, -0.022232056, 0.0075798035, -0.027160645, 0.0059013367, -0.035003662, 0.0011777878, -0.041656494, -0.00674057, -0.0026798248, 0.037475586, 0.0068359375, -0.007511139, -0.012481689, 0.03704834, -0.065979004, -0.034820557, 0.021774292, 0.04196167, -0.015991211, -0.020950317, 0.039916992, 0.03086853, 0.015655518, 0.011993408, 0.010322571, -0.039764404, 0.027893066, 0.06982422, 0.0078125, -0.043029785, -0.023498535, -0.017349243, -0.050323486, 0.0062408447, -0.050750732, -0.021316528, 0.0009255409, 0.010055542, -0.054107666, -0.04232788, -0.024765015, -0.017532349, -0.010246277, 0.0031642914, -0.0012731552, -0.019592285, 0.014457703, 0.065979004, -0.059295654, -0.03842163, -0.0076141357, 0.0059890747, 0.0041923523, -0.024749756, 0.03152466, -0.025177002, -0.01360321, -0.023208618, 0.04727173, 0.033233643, -0.009132385, -0.02130127, -0.0155181885, 0.0044136047, 0.011367798, 0.031082153, -0.03289795, 0.027938843, 0.0026760101, 0.033294678, -0.0541687, -0.032440186, 0.047546387, -0.07019043, -0.057037354, -0.028442383, 0.083740234, -0.0064582825, -0.0024738312, -0.07080078, -0.0014657974, 0.02696228, -0.027801514, 0.0023536682, -0.023834229, 0.014907837, -0.014770508, -0.025924683, -0.0024681091, -0.035217285, 0.051696777, -0.029525757, -0.0105896, -0.025650024, 0.016693115, 0.059326172, -0.03152466, -0.016662598, 0.010757446, -0.0015106201, 0.027404785, -0.008056641, -0.067993164, 0.051879883, 0.045715332, 0.015533447, 0.031921387, -0.022613525, 0.0032749176, -0.016830444, -0.04135132, -0.021133423, 0.03555298, 0.011878967, -0.031234741, -0.01802063, -0.0049705505, -0.016113281, -0.019515991, -0.038208008, -0.0037879944, 0.09173584, -0.01965332, -0.023803711, -0.07165527, -0.013023376, 0.024215698, -0.019012451, -0.009208679, -0.031311035, -0.042388916, -0.023895264, -0.03213501, 0.008415222, -0.034179688, -0.016815186, 0.020111084, 0.025314331, -0.035217285, 0.073791504, 0.015716553, 0.06628418, -0.021881104, 0.007896423, -0.0054016113, -0.015464783, -0.043640137, 0.0049819946, 0.015113831, -0.0010108948, 0.0619812, 0.020202637, 0.0071372986, 0.005771637, -0.0042037964, 0.04925537, -0.03753662, -0.0066833496, 0.022705078, 0.017990112, 0.022872925, -0.08929443, 0.055755615, -0.011604309, -0.022842407, -0.07128906, 0.027786255, -0.022583008, -0.0446167, -0.009567261, 0.0067481995, 0.05355835, -0.033813477, -0.013832092, -0.005077362, 0.06402588, -0.042388916, -0.0037212372, 0.021636963, -0.020980835, -0.07110596, -0.026901245, -0.036010742, 0.018737793, -0.058288574, 0.030517578, 0.03970337, -0.0019044876, 0.012809753, -0.030670166, -0.03543091, 0.028030396, 0.0023880005, -0.0037231445, -0.0054016113, 0.017745972, -0.0184021, -0.04888916, -0.035217285, -0.0043754578, -0.033203125, -0.01751709, -0.006500244, 0.022644043, 0.016418457, 0.027404785, -0.040496826, -0.038269043, 0.012878418, 0.00015282631, 0.01600647, -0.015899658, -0.0435791, -0.046905518, 0.01763916, 0.022964478, -0.009651184, -0.014137268, 0.0069351196, -0.028137207, -0.0016126633, -0.03439331, 0.026275635, -0.010848999, -0.054626465, 0.057922363, 0.070007324, -0.015716553, 0.021606445, -0.02432251, -0.049346924, 0.043640137, 0.007423401, -0.09655762, -0.0236969, -0.017425537, -0.024765015, 0.0002989769, -0.012916565, 0.0026607513, 0.03225708, 0.008720398, -0.0079574585, -0.016998291, -0.011184692, -0.01448822, -0.025924683, 0.013763428, -0.04562378, 0.014701843, -0.031143188, -0.006298065, -0.068237305, -0.074279785, -0.040618896, 0.010932922, 0.043823242, 0.013771057, 0.000787735, -0.02166748, -0.011383057, 0.013908386, -0.0057373047, -0.043640137, 0.020904541, 0.046936035, 0.015235901, 0.029006958, -0.03930664, -0.021347046, -0.002439499, 0.011260986, 0.054656982, -0.012809753, -0.053741455, -0.041870117, 0.050476074, 0.041015625, -0.010475159, -0.058380127, -0.027862549, 0.000726223, -0.023223877, -0.01965332, 0.015258789, -0.01739502, 0.028015137, -0.043182373, 0.014190674, 0.009346008, -0.025115967, 0.022918701, -0.033691406, 0.05984497, -0.015220642, 0.0061798096, 0.01940918, -0.003452301, -0.007369995, -0.017715454, -0.021499634, 0.011741638, 0.0128479, 0.028381348, -0.043670654, -0.04043579, 0.01398468, 0.0118637085, -0.049865723, 0.066101074, -0.008598328, 0.003452301, 0.0068244934, -0.041290283, 0.021011353, -0.005268097, -0.006374359, -0.004257202, -0.016494751, -0.010032654, -0.0034732819, 0.019973755, 0.02142334, -0.02268982, 0.025436401, 0.036193848, -0.0038909912, -0.003080368, 0.0056991577, -0.0079956055, 0.01651001, 0.014831543, -0.018188477, -0.01876831, 0.005882263, 0.032196045, 0.026306152, 0.005355835, 0.04321289, -0.05355835, 0.009963989, 0.008720398, 0.011116028, -0.033355713, -0.009849548, 0.00907135, -0.00806427, 0.0023880005, 0.0035705566, 0.01637268, 0.034698486, -0.006454468, -0.037078857, 0.040802002, -0.08306885, 0.038482666, 0.0124435425, 0.029373169, -0.035705566, -0.006729126, -0.004016876, -0.0052833557, 0.012680054, 0.053375244, 0.015060425, 0.050750732, -0.002696991, -0.0032444, 0.036315918, -0.01386261, 0.026351929, -0.04135132, 0.013298035, 0.005126953, 0.019454956, 0.0011014938, -0.017745972, -0.029067993, -0.01637268, -0.024215698, -0.046539307, 0.005252838, 0.01838684, 0.001461029, -0.02267456, 0.035736084, 0.018051147, -0.039855957, -0.057769775, 0.012878418, -0.006591797, -0.0075798035, -0.03277588, -0.04534912, -0.0155181885, -0.03189087, 0.02444458, -0.0011825562, -0.03326416, -0.0072517395, 0.013519287, -0.022079468, -0.054016113, -0.0440979, 0.0016937256, 0.03302002, 0.0011587143, 0.033721924, 0.006175995, -0.0496521, -0.05807495, 0.011894226, -0.027694702, 0.009437561, -0.003944397, -0.01637268, -0.008972168, -0.00075626373, 0.0395813, 0.067993164, 0.030960083, -0.0017404556, 0.06286621, -0.07312012, -0.026977539, 0.023406982, 0.019454956, -0.02708435, -0.03363037, 0.03201294, 0.0034294128, -0.010688782, -0.009590149, 0.019180298, -0.055908203, 0.038726807, 0.025802612, -0.032287598, 0.004547119, -0.015960693, 0.037078857, 0.020828247, -0.023254395, 0.011222839, 0.02255249, -0.002538681, 0.028930664, -0.037597656, 0.05331421, -0.0016937256, -0.034057617, -0.09240723, -0.020446777, 0.00095033646, 0.016906738, -0.008979797, -0.012611389, 0.01725769, -0.0027885437, -0.03366089, -0.006034851, 0.012260437, -0.013832092, 0.01386261, -0.022354126, -0.033569336, -0.0079574585, -0.03955078, -0.016311646, -0.031707764, 0.014541626, 0.03010559, -0.02305603, -0.030761719, 0.000112593174, -0.016693115, -0.023880005, 0.0014066696, -0.04257202, -0.04827881, 0.037506104, 0.05154419, -0.0035324097, -0.019134521, 0.012191772, 0.017608643, -0.0048828125, 0.03189087, 0.0040283203, 0.041046143, 0.0107803345, 0.002401352, -0.008361816, 0.074523926, -0.020629883, -0.10803223, -0.051116943, 0.00674057, 0.014015198, 0.011268616, 0.04244995, 0.0020866394, 0.0052871704, 0.03277588, -0.053588867, -0.017715454, -0.015167236, 0.064819336, -0.009918213, 0.00207901]}, "B00GOW6V5G": {"id": "B00GOW6V5G", "original": "Brand: Camco\nName: Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit. Patented.\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "metadata": {"Name": "Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black)", "Brand": "Camco", "Description": "", "Features": "Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit. Patented.\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0077667236, -0.030883789, -0.042266846, -0.053131104, -0.035003662, 0.00088119507, -0.039154053, 0.048706055, -0.029342651, -0.024002075, 0.01222229, 0.017562866, -0.09429932, -0.036834717, 0.0063705444, -0.05114746, 0.020568848, 0.0077590942, -0.0007238388, -0.028625488, 5.787611e-05, -0.013793945, -0.004310608, 0.044647217, 0.0038337708, -0.020355225, 0.011695862, 0.0012226105, -0.0021591187, -0.0066947937, 0.01386261, 0.0028038025, 0.033691406, 0.0011339188, 0.0048103333, 0.071777344, 0.05203247, -0.02520752, -0.008102417, 0.039764404, -0.031677246, 0.027954102, 0.081970215, -0.014419556, 0.030532837, -0.051452637, 0.019973755, -0.054992676, 0.041168213, 0.042053223, -0.007873535, 0.038635254, -0.017120361, 0.00021743774, 0.006385803, 0.02204895, 0.0011320114, -0.0027503967, 0.032104492, 0.013877869, -0.004627228, 0.0048332214, 0.0017576218, -0.031555176, -0.052001953, 0.023971558, 0.05819702, -0.019073486, -0.009765625, -0.07336426, -0.021911621, 0.019073486, 0.018173218, -0.012687683, -0.06756592, -0.0078086853, 0.017196655, -0.008743286, 0.02507019, -0.032958984, 0.013298035, -0.016494751, 0.03086853, -0.007987976, -0.02279663, -0.007358551, -0.007221222, -0.013580322, 0.00032925606, 0.014167786, -0.0056381226, 0.004005432, 0.0049972534, 0.03543091, -0.0090408325, -0.0027599335, -0.03201294, -0.020309448, 0.05633545, 0.03552246, -0.012512207, -0.02645874, 0.0158844, -0.014511108, 0.010261536, 0.0023651123, -0.012321472, -0.029174805, 0.02796936, 0.011909485, -0.033569336, 0.03717041, 0.0001758337, -0.019897461, -0.00724411, -0.013328552, -0.04345703, 0.039886475, 0.019500732, -0.011421204, -0.034454346, -0.026870728, 0.015098572, 0.0039711, -0.001660347, -0.007041931, -0.020721436, 0.020095825, -0.05392456, 0.0061531067, -0.019592285, 0.011276245, 0.029434204, 0.042785645, 0.010955811, -0.0020484924, -0.002483368, -0.0036296844, -0.015357971, 0.0076065063, -0.0041007996, -0.001294136, 0.03503418, -0.0096206665, -0.046691895, 0.062927246, 0.021728516, -0.02809143, -0.033813477, -0.068481445, -0.048797607, -0.041625977, 0.039367676, 0.009170532, -0.033966064, 0.021865845, 0.0030136108, 0.011398315, -0.06341553, -0.03100586, -0.01763916, -0.020858765, -0.010810852, 0.030471802, 0.013381958, 0.03778076, 0.02571106, -0.0027828217, 0.01889038, 0.015579224, -0.024658203, 0.009506226, 0.01713562, 0.017791748, -0.004486084, 0.007820129, -0.03164673, 0.09613037, 0.070373535, -0.115478516, -0.06463623, -0.06774902, 0.17578125, -0.051513672, -0.019882202, -0.02279663, 0.0016126633, -0.03552246, 0.016799927, -0.02520752, 0.03640747, 0.045196533, -0.005962372, -0.021911621, -0.025360107, -0.004753113, 0.02810669, 0.027130127, -0.021453857, 0.0009455681, -0.048431396, -0.04309082, 0.027923584, 0.02281189, 0.03427124, -0.0395813, 0.017822266, -0.018585205, -0.05630493, 0.012397766, 0.020355225, -0.015090942, -0.004383087, -0.029174805, 0.013290405, -0.0056381226, -0.018066406, 0.005859375, -0.019180298, 0.010055542, 0.0044288635, -0.004261017, 0.0066490173, 0.037841797, -0.011016846, 0.0107040405, -0.025741577, 0.0053977966, -0.0022659302, 0.00315094, 0.045532227, 0.02482605, 0.049926758, 0.016845703, -0.033294678, 0.024856567, 0.023345947, -0.0340271, -0.02293396, 0.036743164, 0.01864624, -0.037506104, 0.0075950623, 0.04638672, -0.016342163, -0.043426514, 0.014022827, 0.012016296, -0.01626587, -0.008575439, 0.10394287, -0.04638672, -0.0031700134, -0.01499176, -0.029785156, 0.0067329407, -0.041503906, 0.0044937134, 0.034118652, 0.009132385, -0.023513794, 0.049987793, 0.08068848, -0.013748169, 0.0121536255, 0.021026611, 0.05645752, 0.05517578, 0.0023212433, -0.011123657, -0.013656616, 0.021972656, -0.011184692, 0.023956299, -0.008682251, 0.030807495, -0.027008057, -0.0017366409, -0.019622803, 0.018493652, 0.014701843, -0.02458191, -0.014930725, -0.00466156, 0.046691895, 0.0052223206, 0.01979065, 0.024520874, -0.064575195, 0.005455017, 0.028808594, 0.028411865, 0.0031490326, -0.034179688, 0.03060913, 0.012939453, 0.047332764, -0.03564453, 0.02633667, -0.006008148, 0.0090789795, 0.06021118, -0.0008969307, 0.011383057, -0.0032196045, 0.06286621, -0.014266968, 0.020370483, 0.024047852, -0.010047913, 0.015266418, 0.011352539, 0.007549286, 0.00491333, 0.02293396, 0.02267456, 0.012611389, 0.045440674, 0.062438965, 0.07409668, 0.006336212, 0.037200928, -0.005088806, -0.006881714, 0.032470703, -0.016662598, -0.039520264, -0.007083893, -0.035491943, -0.019592285, 0.033843994, -0.037719727, -0.004058838, 0.0022468567, 0.018341064, -0.0006608963, 0.0004310608, 0.0418396, 0.0024757385, -0.031799316, 0.03543091, -0.025146484, 0.01626587, 0.066345215, 0.032409668, -0.063964844, 0.027435303, 0.0040626526, -0.019500732, 0.021118164, 0.0037841797, -0.029571533, -0.0016813278, -0.031082153, -0.0025520325, 0.008110046, -0.021972656, -0.03086853, 0.0030574799, -0.066101074, 0.005443573, -0.03970337, -0.05657959, -0.00806427, 0.0770874, -0.0069084167, -0.057434082, -0.02935791, 0.028533936, 0.0051727295, -0.016845703, 0.017074585, -0.06390381, -0.00598526, 0.024414062, 0.0013885498, -0.007858276, -0.057556152, 0.03277588, -0.012741089, -0.012435913, 0.004219055, -0.017120361, 0.041748047, 0.005680084, 0.0317688, 0.057556152, 0.05130005, -0.004432678, -0.03652954, -0.0046806335, 0.047912598, -0.010269165, -0.01914978, -0.010253906, -0.020523071, 0.022537231, 0.02708435, -0.020507812, -0.021911621, -0.06793213, 0.004470825, 0.0034179688, -0.040405273, -0.012062073, -0.017669678, -0.055999756, -0.034729004, 0.025497437, 0.023498535, -0.004486084, -0.0032291412, -0.0055236816, -0.010276794, -0.010971069, -0.008903503, 0.0025806427, -0.007637024, -0.03451538, 0.039398193, 0.04046631, -0.03967285, 0.000852108, 0.028671265, -0.03277588, 0.0016422272, -0.016906738, 0.0124053955, -0.0044555664, 0.025054932, -0.021911621, 0.0016260147, -0.036132812, -0.04031372, -0.023773193, -0.01184845, 0.009246826, 0.008117676, 0.01096344, 9.125471e-05, -0.023330688, -0.024520874, 0.038238525, 0.012123108, -0.012802124, 0.015853882, -0.008377075, -0.0036411285, 0.033843994, 0.011421204, -0.013267517, -0.01133728, -0.000109016895, -0.0051116943, -0.043792725, 0.05053711, -0.015899658, 0.030349731, 0.0039405823, -0.034698486, -0.031982422, -0.02003479, 0.008270264, -0.025619507, -0.017089844, -0.021362305, 0.03366089, 0.006729126, -0.0043563843, -0.013832092, -0.014381409, 0.04232788, -0.0007328987, -0.028045654, 0.010803223, -0.019134521, 0.008735657, -0.004257202, 0.035125732, -0.013626099, -0.06286621, 0.024719238, -0.023452759, 0.058258057, 0.0289917, -0.010650635, 0.08734131, 0.043151855, -0.011375427, 0.012573242, 0.0418396, 0.00067949295, 0.011192322, 0.005405426, -0.020904541, -0.0287323, 0.0031967163, -0.016143799, -0.019119263, -0.026184082, -0.012535095, -0.015174866, -0.008651733, 0.012359619, -0.008522034, 0.032073975, 0.011878967, -0.01084137, 0.012962341, 0.0007762909, -0.03857422, -0.035827637, 0.0012683868, 0.008460999, -0.01550293, 0.011985779, -0.023925781, 0.0049972534, -0.022094727, -0.014144897, -0.035980225, -0.003408432, 0.0036811829, 0.041809082, -0.0049972534, -0.014282227, -0.0031414032, 0.020874023, -0.051849365, -0.024719238, 0.017547607, 0.040527344, 0.004245758, -0.016235352, 0.029159546, 0.01675415, 0.015357971, 0.002105713, 0.0071907043, -0.046203613, 0.034851074, 0.08294678, 0.0041542053, -0.042541504, -0.02696228, -0.02217102, -0.046142578, 0.016647339, -0.06011963, -0.01108551, 0.004058838, 0.010513306, -0.06781006, -0.0491333, -0.011802673, -0.00894928, 0.0029888153, 0.001584053, -0.014205933, -0.020965576, 0.015914917, 0.07092285, -0.0619812, -0.04397583, -0.0051345825, 0.0007863045, 0.008834839, -0.017486572, 0.050720215, -0.021713257, -0.005214691, -0.02520752, 0.028396606, 0.007091522, -0.0029506683, -0.009231567, -0.0077209473, 0.015556335, 0.01852417, 0.021835327, -0.019729614, 0.0038375854, -0.005214691, 0.015319824, -0.03353882, -0.041168213, 0.035888672, -0.052825928, -0.04815674, -0.031021118, 0.08514404, -0.015731812, -0.0005912781, -0.057617188, 0.011566162, 0.023132324, -0.022659302, -0.019226074, -0.024490356, 0.012786865, -0.028625488, -0.03970337, -0.00030875206, -0.035247803, 0.051849365, -0.04788208, -0.033355713, -0.04019165, 0.01828003, 0.07244873, -0.02772522, -0.001039505, 0.0028514862, -0.016540527, 0.028533936, -0.0077056885, -0.07080078, 0.07232666, 0.034301758, 0.017913818, 0.027023315, -0.022323608, 0.0010986328, -0.04296875, -0.051116943, -0.023239136, 0.04812622, 0.0010585785, -0.039642334, -0.012489319, -0.012496948, -0.00920105, -0.032562256, -0.027328491, -0.027923584, 0.06713867, -0.03237915, -0.04458618, -0.060180664, -0.0067481995, 0.020599365, -0.023605347, 0.0014953613, -0.042541504, -0.049743652, -0.03945923, -0.031173706, 0.018371582, -0.036071777, -0.019638062, 0.011672974, 0.023590088, -0.024139404, 0.06695557, 0.011528015, 0.065979004, -0.044128418, -0.0021953583, -0.0017471313, -0.006679535, -0.040374756, 0.021697998, 0.01448822, 0.022964478, 0.06124878, 0.013618469, 0.004634857, 0.0034332275, -0.0035552979, 0.045684814, -0.043701172, -0.003610611, 0.0309906, 0.03213501, 0.007621765, -0.09234619, 0.09387207, -0.017456055, -0.020446777, -0.057250977, 0.024490356, -0.03540039, -0.066711426, -0.0013923645, 0.006668091, 0.047576904, -0.036346436, -0.010826111, -0.012817383, 0.06210327, -0.033599854, 0.005874634, 0.013748169, -0.0073013306, -0.05859375, -0.019729614, -0.0440979, 0.0077285767, -0.03543091, 0.030929565, 0.023391724, -0.0056648254, 0.012916565, -0.031234741, -0.020996094, 0.018936157, -0.031280518, -0.011459351, -0.0058898926, 0.015594482, -0.026931763, -0.0435791, -0.052337646, 0.0049705505, -0.047454834, -0.013046265, -0.015220642, 0.01965332, 0.017486572, 0.042633057, -0.034179688, -0.02558899, 0.0023956299, -0.0027923584, 0.0075187683, -0.00856781, -0.051513672, -0.026855469, 0.021652222, 0.029251099, -0.013664246, 0.0035209656, 0.021713257, -0.029312134, -0.018035889, -0.007637024, 0.0390625, -0.03062439, -0.042633057, 0.058441162, 0.08746338, -0.008033752, 0.028869629, -0.013557434, -0.054016113, 0.038116455, -0.0051498413, -0.10455322, -0.01008606, -0.020080566, -0.021942139, 0.012496948, -0.0073776245, -0.012870789, 0.034973145, 0.003353119, 0.009979248, -0.039154053, -0.012123108, -0.014884949, -0.012367249, 0.015602112, -0.0501709, 0.0053634644, -0.037231445, -0.014297485, -0.049713135, -0.07055664, -0.014541626, 0.008056641, 0.045959473, -0.013061523, 0.015197754, -0.013648987, 0.004673004, 0.028121948, -0.0005545616, -0.055877686, 0.014213562, 0.03604126, 0.022399902, 0.02973938, -0.012107849, -0.019088745, -0.012908936, 0.0016679764, 0.035705566, -0.0029735565, -0.06060791, -0.036590576, 0.05117798, 0.044433594, 0.002407074, -0.059631348, -0.024520874, -0.0014762878, -0.018249512, -0.015670776, 0.0065994263, -0.018203735, 0.033721924, -0.036254883, -0.0050468445, -0.007385254, -0.03781128, 0.021697998, -0.03427124, 0.048095703, -0.011421204, 0.013465881, 0.019592285, 0.0023155212, -0.007637024, -0.009025574, -0.020980835, 0.017944336, 0.013916016, 0.018600464, -0.032073975, -0.049804688, 0.027160645, 0.01890564, -0.050933838, 0.05718994, -0.008399963, -0.006511688, 0.01159668, -0.044769287, 0.03781128, 0.031097412, -0.025985718, 0.020355225, -0.02180481, -0.008560181, 0.009544373, 0.016036987, 0.02279663, -0.028930664, 0.036193848, 0.033966064, -0.0026187897, 0.0027256012, 0.007461548, -0.0053749084, 0.020401001, 0.02407837, -0.011978149, -0.032806396, 0.00061273575, 0.04534912, 0.021896362, -0.0066337585, 0.04574585, -0.03652954, 0.0017004013, 0.008102417, 0.011772156, -0.03289795, -0.013755798, 0.0077400208, -0.0031604767, -0.0021686554, -0.0006489754, 0.009941101, 0.01058197, -0.00057172775, -0.05581665, 0.04522705, -0.066345215, 0.048797607, 0.019363403, 0.028945923, -0.028686523, 0.010177612, -0.0062789917, 0.006164551, 0.010650635, 0.048583984, 0.017532349, 0.053863525, -0.021316528, -0.004589081, 0.02684021, -0.007659912, 0.01612854, -0.050628662, 0.010269165, 0.015174866, -0.0066184998, 0.0016975403, -0.014953613, -0.026138306, -0.013847351, -0.016220093, -0.04537964, 0.01576233, 0.019714355, -0.009796143, -0.023040771, 0.022476196, 0.01512146, -0.037078857, -0.029586792, -0.013595581, 0.0020618439, -0.015853882, -0.020385742, -0.03491211, -0.016784668, -0.021850586, 0.03265381, -1.8954277e-05, -0.025405884, 0.00078344345, 0.02154541, -0.037872314, -0.047546387, -0.049438477, 0.011627197, 0.026123047, -0.006134033, 0.021347046, 0.00070524216, -0.056488037, -0.058288574, 0.023712158, -0.05227661, -0.013366699, -0.021240234, -0.0014324188, -0.0077438354, 0.00029945374, 0.044830322, 0.06744385, 0.02255249, 0.0014324188, 0.06970215, -0.06359863, -0.025985718, 0.037506104, 0.0256958, -0.03253174, -0.035461426, 0.0093688965, 0.012580872, -0.0066604614, 0.0031909943, 0.022720337, -0.048797607, 0.039978027, 0.014831543, -0.00013673306, 0.008758545, -0.020339966, 0.041229248, 0.026504517, -0.02507019, -0.000852108, 0.020385742, -0.01184082, 0.029678345, -0.038879395, 0.038482666, -0.0073509216, -0.058624268, -0.057403564, -0.025177002, -0.00032401085, 0.008155823, -0.03567505, -0.010543823, 0.023590088, -0.00945282, -0.024642944, 0.008102417, 0.02204895, -0.010627747, 0.0064315796, -0.005596161, -0.037719727, -0.009796143, -0.033935547, -0.016998291, -0.03262329, -0.002008438, 0.029754639, -0.024276733, -0.033966064, -0.005859375, -0.0021743774, -0.027770996, -0.01991272, -0.04156494, -0.06524658, 0.0446167, 0.04699707, -0.012435913, -0.02027893, 0.022750854, 0.0074882507, -0.003446579, 0.03213501, -0.005092621, 0.035705566, 0.011779785, -0.0035095215, -0.011360168, 0.07659912, -0.02142334, -0.1126709, -0.047912598, 0.0052986145, 0.027130127, -0.0005159378, 0.052490234, 0.0046691895, 0.007259369, 0.026443481, -0.04547119, -0.012458801, -0.029403687, 0.061553955, -0.011756897, -0.0054244995]}, "B07YFKY7KV": {"id": "B07YFKY7KV", "original": "Brand: Pamapic\nName: PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze\nDescription:
      Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

      SPECFICATION:
      SIZE: 88\" Tall, 32\" Reflector and 18\" Base.
      COLOR: Bronze Hammered Finish
      MATERIAL: Stainless Steel
      HEAT SOURCE: Propane/Butane
      BTU OUTPUT: 46000 BTUs
      HEAT RANGE DIAMETER: 20sqm
      Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced \"Pilotless\" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
      \nFeatures: Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included).\nHeat range up to 18 feet in diameter.Emits 46,000 BTU's of steady warmth.\nReliable pulse ignition, tip over protection system and convenient wheel assembly.\nStainless steel burners and double-mantle heating grid for optimal durability.\nOUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32\" diameter dome x 18\" diameter base x 88\" high. Zips open and closed with ease.\n", "metadata": {"Name": "PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze", "Brand": "Pamapic", "Description": "
      Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

      SPECFICATION:
      SIZE: 88\" Tall, 32\" Reflector and 18\" Base.
      COLOR: Bronze Hammered Finish
      MATERIAL: Stainless Steel
      HEAT SOURCE: Propane/Butane
      BTU OUTPUT: 46000 BTUs
      HEAT RANGE DIAMETER: 20sqm
      Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced \"Pilotless\" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
      ", "Features": "Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included).\nHeat range up to 18 feet in diameter.Emits 46,000 BTU's of steady warmth.\nReliable pulse ignition, tip over protection system and convenient wheel assembly.\nStainless steel burners and double-mantle heating grid for optimal durability.\nOUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32\" diameter dome x 18\" diameter base x 88\" high. Zips open and closed with ease.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.00737381, -0.008140564, -0.030303955, -0.045288086, 0.016342163, -0.012199402, 0.009803772, 0.02670288, -0.061553955, 0.010025024, -0.015289307, 0.020355225, -0.015304565, -0.01423645, 0.0236969, -0.05819702, 0.02507019, -0.016586304, 0.0033607483, -0.038970947, -0.022155762, -0.027313232, 0.047821045, 0.09655762, 0.0029201508, -0.03765869, 0.073913574, -0.0011987686, 0.012992859, -0.009857178, 0.032409668, -0.001253128, 0.052947998, -0.012916565, -0.030532837, -0.005695343, 0.012611389, -0.02293396, -0.026168823, 0.02909851, 0.007575989, -0.0087509155, -0.021514893, -0.038391113, -0.031036377, -0.023971558, 0.020614624, -0.002878189, -0.016708374, 0.03387451, 0.024734497, -0.010467529, 0.0446167, -0.022338867, -0.017791748, -0.023605347, 0.015007019, -0.025985718, 0.033935547, -0.046844482, -0.034362793, -0.03604126, 0.050231934, 0.00065231323, -0.066467285, 0.0027828217, 0.00894928, -0.019332886, 0.06085205, -0.06427002, -0.04522705, 0.054901123, 0.011978149, 0.029312134, -0.03955078, -0.0045280457, 0.038085938, 0.019638062, 0.028930664, -0.008140564, 0.02809143, 0.03866577, -0.0051345825, -0.04522705, 0.023147583, -0.03970337, -0.008796692, -0.020584106, -0.03378296, -0.057403564, -0.022766113, -0.018981934, -0.06774902, 0.021133423, -0.02053833, 0.0008711815, -0.035461426, -0.06384277, 0.01689148, -0.0025730133, 0.059326172, -0.05419922, 0.044647217, 0.015106201, -0.02784729, 0.0546875, 0.032928467, 0.0017166138, -0.018814087, -0.005847931, -0.024841309, -0.0063552856, -0.026809692, -0.010643005, -0.026885986, -0.00333786, -0.05593872, -0.009506226, -0.006690979, -0.026977539, -0.029418945, -0.036071777, 0.026977539, 0.006706238, 0.0127334595, -0.0012350082, -0.036376953, 0.02583313, -0.052703857, 0.038085938, -0.0075263977, -0.022994995, 0.01084137, 0.05517578, 0.0030651093, -0.016571045, 0.059448242, -0.0010385513, 0.009635925, -0.015014648, 0.022094727, 0.020950317, 0.017578125, 0.0022125244, 0.014060974, -0.0021076202, 0.028747559, 0.019332886, 0.0041122437, -0.018615723, 0.008911133, 0.0025749207, 0.022720337, 0.022109985, -0.014755249, 0.019042969, 0.03225708, -0.03237915, -0.038970947, -0.038513184, -0.019348145, 0.014030457, 0.01247406, -0.018203735, -0.03024292, -0.0052337646, 0.0032138824, 0.0010080338, 0.016967773, 0.064941406, -0.032104492, 0.010063171, 0.0075798035, 0.034606934, -0.0034389496, 0.0116119385, -0.047546387, 0.08905029, 0.073913574, -0.13171387, -0.07354736, -0.068481445, 0.15112305, -0.0413208, -0.029846191, -0.016494751, 0.015808105, 0.003704071, 0.0034980774, 0.00422287, 0.038360596, 0.029083252, 0.010169983, -0.023834229, -0.021560669, -0.017852783, -0.039398193, 0.00642395, -0.025405884, 0.03265381, -0.05545044, 0.024154663, -0.019210815, 0.0029449463, -0.0037403107, 0.0020885468, -0.008049011, 0.04119873, 0.055541992, 0.025390625, -0.02520752, -0.002319336, 0.029953003, -0.076293945, -0.05102539, 0.017532349, -0.0012969971, 0.021392822, -0.010375977, 0.0066375732, -0.0067977905, -0.022750854, -0.0031318665, 0.006893158, 0.02935791, -0.05847168, 0.0038890839, -0.04788208, 0.0050849915, -0.017593384, -0.02949524, 0.052886963, 0.084228516, 0.09320068, -0.004009247, 0.024337769, 0.04547119, 0.028564453, -0.023864746, -0.010803223, 0.009246826, -0.064331055, 8.0406666e-05, 0.077941895, -0.06744385, -0.0044288635, 0.042114258, 0.01374054, 0.008674622, -0.022201538, 0.030456543, -0.024139404, 0.042022705, 0.016296387, 0.027511597, -0.00051927567, -0.007549286, 0.03866577, 0.013923645, -0.018844604, 0.0052757263, 0.06677246, 0.0110321045, 0.017425537, 0.024429321, -0.0055160522, 0.04776001, 0.035369873, 0.0053253174, -0.029968262, 0.0154953, 0.059417725, -0.009140015, 0.028335571, -0.02571106, -0.016815186, -0.003704071, 0.008575439, -0.03970337, -0.018844604, -0.007965088, -0.019210815, -0.075927734, -5.877018e-05, 0.027236938, 0.0007953644, -0.010192871, -0.009803772, -0.05935669, -0.0043029785, 0.015274048, 0.0075912476, -0.03503418, 0.012756348, -0.028335571, 0.0072746277, 0.020629883, -0.004650116, 0.013679504, -0.026153564, -0.005027771, 0.030883789, -0.027160645, 0.00078868866, -0.016448975, 0.016845703, -0.010414124, 0.013404846, 0.0032463074, -0.028396606, -0.012817383, 0.008728027, 0.033996582, 0.00642395, 0.055877686, 0.0211792, 0.014038086, 0.04925537, 0.064208984, 0.04547119, 0.0066719055, 0.05569458, -0.031585693, -0.006385803, 0.028366089, -0.0076560974, -0.042938232, -0.0129470825, 0.013999939, -0.0026988983, 0.02243042, 0.0015392303, -0.0067596436, -0.013633728, 0.0025520325, -0.008033752, 0.0020179749, 0.03640747, 0.01676941, -0.042999268, 0.03704834, 0.0206604, 0.0044898987, 0.033081055, -0.023605347, 0.008392334, 0.04272461, 0.011138916, -0.05053711, 0.015823364, 0.004886627, -0.03189087, -0.0178833, -0.057678223, -0.002336502, 0.04623413, 0.0029792786, -0.041137695, 0.034576416, -0.06652832, -0.030303955, -0.007888794, -0.03704834, -0.0017967224, 0.030563354, -0.012275696, -0.027633667, -0.0024929047, -0.04083252, -0.00094747543, 0.04824829, -0.02722168, -0.051696777, -0.04751587, -0.07513428, -0.0021896362, 0.028411865, -0.035980225, 0.022659302, 0.013267517, 0.0151901245, 0.0029525757, 0.0066833496, -0.017410278, -0.017089844, 0.02708435, 0.051361084, 0.026519775, 0.020751953, -0.036743164, 0.02822876, 0.061401367, -0.02154541, 0.008178711, -0.018753052, -0.0063972473, -0.02670288, -0.03463745, -0.05657959, 0.015609741, -0.08905029, 0.048187256, 0.006767273, -0.0124053955, -0.009376526, -0.061187744, -0.040283203, -0.04824829, 0.0055618286, 0.053955078, 0.0019254684, -0.026062012, -0.007320404, 0.0022964478, -0.0038013458, -0.00868988, 0.018875122, -0.0067329407, 0.032226562, -0.040405273, 0.003501892, -0.018478394, 0.006099701, 0.012077332, -0.044158936, -0.028701782, -0.016601562, 0.04232788, -0.050689697, 0.028686523, -0.019897461, -0.0099487305, -0.011604309, -0.008003235, 0.00084781647, -0.0077323914, 0.0021839142, -0.014549255, 0.018554688, -0.015991211, 0.004337311, -0.038330078, 0.016723633, 0.029388428, -0.0064353943, 0.008293152, -0.031463623, 0.0069007874, 0.05734253, -0.017852783, 0.0022010803, -0.019378662, 0.06781006, 0.014175415, -0.017623901, 0.05166626, -0.033447266, 0.03656006, 0.047821045, -0.04232788, -0.008331299, -0.032958984, 0.009223938, 0.04714966, 0.04296875, -0.043304443, 0.020385742, 0.014572144, 0.021713257, -0.015914917, 0.0036945343, 0.030380249, 0.02217102, 0.016921997, -0.015914917, 0.013389587, 0.011810303, 0.0069236755, -0.009346008, 0.008583069, -0.084350586, 0.018005371, -0.049591064, 0.05444336, 0.035858154, -0.027664185, 0.09490967, 0.03692627, -0.0058784485, 0.052093506, 0.03881836, 0.016830444, 0.01574707, 0.05114746, -0.006855011, -0.011474609, -0.0072669983, 0.024032593, 0.0056419373, -0.015975952, -0.022979736, 0.014770508, 0.0006341934, -0.017715454, -0.06945801, -0.0034122467, 0.048339844, -0.022537231, 0.018218994, -0.037750244, 0.012557983, -0.030303955, 0.031585693, 0.0063171387, -0.0095825195, -0.04373169, 0.0042648315, -0.02659607, -0.036346436, 0.022354126, 0.044067383, 0.027633667, 0.023712158, -0.009002686, 0.030563354, 0.0047340393, 0.007320404, -0.008056641, -0.025726318, 0.022857666, 0.025177002, 0.030349731, 0.044158936, 0.009429932, -0.029342651, -0.009506226, 0.017105103, 0.013496399, -0.02520752, -0.01737976, -0.018875122, 0.011833191, 0.050048828, -0.01727295, 0.026046753, -0.057861328, -0.010520935, 0.0009531975, -0.012390137, 0.022979736, -0.0357666, -0.044281006, -0.080566406, -0.0435791, -0.0036888123, 0.038269043, -0.024719238, -0.0023078918, -0.037109375, 0.0037879944, 0.01461792, 0.035614014, -0.04849243, -0.018325806, -0.0033302307, -0.003255844, 0.03717041, -0.01638794, -0.005130768, -0.019592285, 0.0013408661, 0.0009775162, 0.06530762, 0.0018119812, -0.011978149, -0.044189453, -0.012924194, -0.0022907257, 0.020767212, 0.027999878, -0.017578125, 0.03253174, 0.0095825195, 0.00894165, -0.08129883, 0.020202637, 0.027694702, -0.023880005, -0.049957275, -0.015838623, 0.058929443, 0.012649536, 0.017196655, 0.0075683594, -0.0032672882, 0.017074585, -0.016143799, -0.09625244, -0.030319214, -0.009605408, -0.06512451, 0.028182983, 0.005569458, -0.029891968, 0.052001953, 0.06939697, -0.012016296, -0.002532959, 0.008796692, 0.02848816, -0.021987915, -0.030700684, -0.0055351257, 0.029556274, -0.018814087, 0.0107803345, -0.047607422, 0.031402588, 0.079833984, 0.004749298, 0.024459839, 0.005596161, -0.0042762756, -0.012702942, 0.019210815, -0.0024261475, 0.022735596, -0.015975952, -0.016998291, 0.010108948, -0.037841797, -0.012565613, -0.0287323, -0.04309082, 0.0019407272, 0.043792725, -0.0023536682, -0.006336212, 0.005695343, -0.008453369, 0.0060043335, 0.027633667, 0.006401062, -0.043945312, 0.03488159, -0.017211914, -0.023162842, 0.0034618378, -0.023895264, 0.02619934, -0.034820557, -0.0030002594, 0.009529114, -0.008659363, -0.008888245, 0.031021118, -0.016647339, 0.029891968, 0.010795593, -0.012069702, -0.05303955, 0.018844604, 0.012290955, -0.03768921, 0.00018942356, 0.036865234, -0.006790161, 0.035858154, -0.0206604, 0.03552246, 0.033813477, -0.014945984, 0.049346924, 0.015434265, 0.013153076, -0.010749817, 0.03326416, 0.00033450127, 0.0021705627, -0.021224976, 0.022766113, 0.049346924, 0.023330688, 0.008071899, -0.040893555, 0.05731201, -0.022216797, -0.036132812, -0.009208679, 0.028167725, -0.020492554, 0.008132935, -0.0073013306, -0.01651001, -0.011482239, -0.024810791, -0.010292053, -0.00064086914, -0.022094727, -0.032073975, 0.023071289, 0.004878998, -0.001502037, -0.009315491, 0.0060157776, 0.02128601, -0.034454346, -0.022735596, -0.000115156174, 0.00039076805, -0.010444641, 0.014579773, 0.05831909, 0.022750854, -0.019485474, -0.008262634, -0.0064888, -0.0071525574, -0.05239868, 0.048065186, -0.013061523, -0.00894928, 0.004348755, 0.0053520203, 0.015625, -0.002937317, -0.049682617, 0.002483368, 0.016220093, 0.04815674, 0.023529053, -0.029541016, 0.035125732, -0.01802063, -0.0077209473, -0.028167725, 0.07513428, 0.015701294, 0.008880615, 0.05331421, 0.043884277, -0.001326561, 0.04901123, -0.040039062, -0.04159546, -0.0016508102, 0.010894775, -0.09039307, -0.021530151, -0.02897644, 0.016204834, -0.027526855, -0.012588501, -0.016204834, 0.04534912, -0.010955811, -0.015975952, -0.010520935, -0.012550354, 0.0062217712, -0.021133423, 0.016189575, -0.0065994263, -0.00062942505, -0.010040283, -0.001613617, -0.04537964, -0.015411377, -0.009933472, 0.001707077, 0.02986145, 0.056671143, 0.00027799606, -0.007030487, -0.053588867, -0.053253174, 0.043640137, -0.08337402, -0.018707275, 0.010032654, 0.03527832, 0.020645142, -0.027328491, -0.0004837513, 0.016921997, 0.0104599, 0.03390503, -0.028244019, 0.020751953, -0.025512695, 0.062042236, 9.959936e-05, -0.059143066, 0.0040664673, -0.004627228, -0.011993408, -0.042541504, -0.02935791, -0.035125732, -0.04232788, -0.0020217896, -0.027664185, -0.038604736, -0.0022735596, -0.03918457, 0.047058105, -0.03125, 0.028244019, 0.027023315, 0.001627922, 0.012832642, 0.007160187, -0.03503418, -0.029510498, -0.033996582, 0.012428284, -0.020263672, -0.017059326, 0.0028133392, 0.010017395, 0.010635376, 0.032562256, 0.018630981, -0.008331299, -0.008125305, 0.022750854, -0.002029419, -0.052886963, 0.031036377, -0.028457642, -0.005962372, 0.01713562, -0.007850647, -0.015625, 0.0013771057, 0.060699463, -0.022659302, 0.057678223, -0.053253174, 0.017150879, -0.008369446, 0.005012512, -0.021255493, -0.0071868896, 0.0041160583, -0.0066604614, -0.0046691895, -0.0008163452, -0.041809082, 0.003063202, 0.02986145, -0.006942749, 0.0047721863, -0.027664185, 0.021774292, 0.010475159, 0.02909851, -0.014015198, -0.022903442, 0.001534462, -0.018539429, 0.01473999, 0.03387451, 0.024353027, 0.0034999847, -0.01612854, -0.050231934, 0.009407043, -0.032470703, -0.029785156, 0.010009766, 0.037078857, -0.022888184, -0.011528015, -0.009101868, 0.010467529, -0.0034389496, 0.013763428, 0.01914978, 0.029891968, 0.026473999, -0.028198242, 0.02720642, -0.03414917, 0.00030636787, -0.004463196, 0.039916992, -0.016403198, -0.042144775, -0.013473511, -0.0067367554, 0.0021915436, 0.023529053, 0.031234741, 0.008651733, 0.017059326, -0.00137043, 0.009902954, -0.0151901245, 0.007686615, -0.021865845, -0.03652954, 0.026809692, -0.031219482, -0.02406311, -0.021255493, -0.066467285, -0.059143066, 0.023788452, -0.061309814, -0.034606934, 0.0027542114, -0.019226074, -0.006828308, -0.0031719208, -0.00466156, -0.03152466, -0.0047035217, 0.029525757, 0.044006348, 0.012634277, 0.053222656, -0.005241394, -0.063964844, -0.061828613, 0.008308411, -0.055358887, 0.008399963, -0.03677368, 0.005622864, -0.01158905, -0.01940918, 0.03390503, 0.015197754, 0.03277588, -0.0028266907, -0.002714157, -0.031311035, -0.0002503395, 0.0067634583, 0.0014333725, -0.019073486, -0.029708862, 0.019760132, 0.010856628, 0.020217896, 0.06542969, -0.02279663, -0.05206299, -0.05496216, -0.061920166, -0.0077705383, -0.02961731, 0.0060806274, 0.026672363, -0.00075006485, -0.033203125, 0.011512756, 0.029907227, 0.016036987, 0.01663208, 0.037017822, 0.03741455, -0.0021018982, -0.031555176, -0.027389526, -0.011917114, 0.016281128, 0.07714844, 0.0024719238, 0.0082473755, 0.06695557, -0.014480591, 0.036712646, 0.018234253, 0.032409668, 0.044891357, -0.032714844, 0.00015854836, 0.020339966, -0.034057617, 0.029205322, -0.010757446, 0.014518738, -0.008384705, 0.03591919, -0.04547119, -0.042175293, -0.025985718, 0.021224976, -0.032440186, -0.049346924, -0.053222656, -0.047821045, 0.053894043, 0.029266357, 0.007751465, 0.055603027, 0.041809082, 0.0058937073, -0.0072669983, 0.0015201569, 0.0072364807, 0.009635925, -0.036071777, 0.016784668, 0.010238647, 0.031173706, -0.022964478, -0.095825195, -0.06500244, 0.05822754, 0.0011348724, -0.015556335, 0.032104492, -0.012466431, 0.023910522, -0.0024337769, -0.050933838, -0.00080251694, -0.019088745, 0.029159546, -0.045684814, 0.0074310303]}, "B002ZY0IU6": {"id": "B002ZY0IU6", "original": "Brand: Flame King\nName: Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White\nDescription: \nFeatures: High grade steel welded propane cylinder\nPOL valve assembly\nX-ray and hydrostatic tested\nDOT approved\nPowder coated for long lasting exterior protection\n", "metadata": {"Name": "Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White", "Brand": "Flame King", "Description": "", "Features": "High grade steel welded propane cylinder\nPOL valve assembly\nX-ray and hydrostatic tested\nDOT approved\nPowder coated for long lasting exterior protection", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00074005127, 0.027297974, -0.05911255, -0.05319214, 0.025390625, -0.026245117, -0.05441284, 0.00365448, -0.052337646, -0.00057792664, -0.020935059, 0.049316406, -0.0015010834, -0.039611816, 0.081604004, -0.020706177, 0.019973755, 0.009216309, 0.027786255, -0.008811951, 0.018966675, 0.0016393661, 0.010398865, 0.04107666, 0.0625, -0.051239014, 0.025543213, 0.030807495, 0.027709961, 0.0054244995, 0.033355713, -0.014717102, 0.047821045, -0.026687622, -0.03074646, -0.036987305, -0.022994995, -0.019363403, -0.0635376, 0.010429382, -0.0064888, 0.024780273, 0.02180481, -0.042022705, 0.0006070137, -0.040802002, -0.025726318, -0.055419922, 0.0047912598, 0.0070724487, 0.00630188, -0.01864624, 0.0031604767, 0.024230957, -0.01348114, 0.021820068, 0.03060913, -0.012321472, 0.013023376, -0.009124756, -0.006969452, 0.041229248, 0.019241333, 0.014801025, -0.037139893, 0.026290894, 0.09094238, -0.02130127, 0.049621582, -0.058288574, -0.03994751, 0.051513672, 0.020095825, 0.030563354, -0.025054932, -0.018936157, 0.019592285, 0.02041626, 0.035339355, 0.011657715, -0.037506104, -0.03488159, 0.012306213, -0.011741638, -0.0096206665, 0.016616821, -0.024871826, 0.004749298, -0.00052547455, -0.017227173, -0.001748085, 0.036743164, -0.027328491, -0.0010576248, -0.0046844482, -0.04977417, -0.056152344, -0.080322266, 0.050567627, 0.033966064, 0.03387451, -0.037200928, 0.0552063, -0.0077667236, 0.0014858246, 0.06616211, -0.0076141357, -0.018966675, -0.004650116, -0.0051460266, 0.012008667, -0.04827881, 0.02444458, -0.014205933, -0.028717041, 0.025268555, 0.010902405, 0.004272461, 0.004348755, 0.00642395, 0.012580872, -0.0070762634, 0.032348633, -0.035369873, -0.0006480217, -0.026947021, -0.06365967, 0.009750366, 0.0008816719, 0.0178833, -0.021652222, -0.010810852, 0.015029907, 0.06652832, 0.008033752, 0.0030956268, -0.021514893, -0.027053833, 0.0037593842, -0.011146545, -0.023498535, 0.010818481, 0.06329346, -0.011131287, -0.04324341, 0.057373047, 0.002067566, -0.027832031, -0.004463196, -0.025650024, -0.05328369, -0.042388916, 0.0009851456, 0.03466797, 0.026046753, -0.010467529, 0.032684326, -0.020355225, 0.008529663, -0.03060913, 0.019058228, -0.035247803, -0.043182373, 0.012176514, -0.01828003, 0.029144287, 0.017242432, 0.001335144, 0.012145996, 0.055877686, -0.022644043, 0.028076172, -0.039520264, 0.015655518, 0.0023651123, -0.015090942, 0.012741089, 0.08905029, 0.05657959, -0.11694336, -0.09899902, -0.086120605, 0.1484375, -0.08459473, 0.009773254, -0.05706787, 0.022842407, -0.035858154, 0.011650085, 0.010971069, 0.04498291, 0.029800415, -0.0051498413, -0.04425049, -0.01966858, 0.0077171326, -0.0053253174, 0.015625, -0.010719299, 0.015045166, 0.014862061, -0.007701874, 0.022857666, 0.023742676, 0.035247803, -0.021377563, 0.018249512, -0.0234375, 0.025299072, 0.060821533, -0.005718231, 0.0021266937, 0.0010643005, -0.0418396, 0.012489319, 0.02458191, -0.03591919, -0.0031375885, 0.013160706, -0.031311035, 0.044281006, 0.004798889, 0.030792236, 0.029281616, -0.0026683807, 0.0082092285, -0.025100708, 0.017730713, 0.041381836, 0.0028762817, 0.0501709, -0.0025959015, 0.077819824, 0.047027588, -0.006690979, 0.025054932, 0.05041504, -0.027557373, -0.022369385, 0.020568848, 0.0031490326, -0.014511108, -0.014045715, 0.050323486, -0.0011920929, -0.018218994, 0.0010967255, 0.019714355, -0.004081726, 0.0023326874, 0.06854248, -0.028671265, 0.013473511, -0.0015830994, -0.021514893, -0.002363205, 0.01965332, 0.054748535, -0.0748291, 0.028213501, -0.02406311, 0.021499634, 0.021591187, -0.002418518, 0.0446167, -0.0011253357, 0.061279297, 0.033843994, -0.02909851, -0.009597778, 0.012390137, 0.04916382, -0.009971619, 0.007736206, -0.010749817, -0.007621765, -0.0070343018, 0.010307312, -0.027877808, -0.014564514, 0.0036087036, -0.04751587, 0.04736328, 0.006351471, 0.05911255, 0.04159546, 0.059692383, -0.0105896, -0.064819336, -0.04046631, -0.016799927, 0.03213501, -0.0033607483, -0.0231781, 0.04425049, -0.0007662773, 0.018676758, -0.0034046173, 0.010856628, -0.012031555, 0.009742737, 0.048614502, 0.005050659, 0.004032135, -0.01651001, -0.017211914, -0.04425049, 0.017791748, -0.0038490295, -0.034240723, -0.02758789, 0.015060425, 0.029846191, 0.031051636, 0.005630493, -0.007232666, 0.014328003, 0.038208008, 0.02394104, 0.009979248, -0.016677856, 0.009597778, 0.0044784546, -0.009689331, 0.023010254, -0.008270264, -0.027450562, 0.014343262, -0.04916382, 0.008262634, -0.033233643, -0.030136108, -0.017654419, 0.03439331, -0.017425537, 0.0057029724, -0.0016307831, 0.022216797, -0.016677856, -0.06604004, -0.03451538, 0.019851685, -0.009239197, -0.017868042, -0.044525146, -0.040985107, 0.08630371, -0.006603241, -0.0069999695, 0.032714844, 0.0032024384, 0.0050468445, 0.024871826, 0.03665161, 0.023651123, -0.0014724731, -0.04559326, 0.007751465, -0.00248909, -0.046051025, -1.6570091e-05, -0.042938232, -0.029449463, 0.013793945, -0.00033569336, 0.010047913, -0.03656006, 0.0287323, 0.026855469, 0.012893677, 0.005718231, 0.01675415, -0.07562256, 0.0023612976, 0.013397217, -0.01133728, 0.05178833, -0.007522583, 0.013404846, 0.033843994, 0.03781128, 0.019943237, -0.015609741, -0.017150879, 0.029510498, 0.016998291, 0.0054092407, 0.03286743, -0.009361267, -0.017074585, -0.023330688, 0.004814148, -0.018463135, -0.014427185, -0.041503906, -0.019927979, -0.027786255, -0.01436615, -0.026046753, 0.016357422, -0.11456299, 0.019348145, -0.033203125, -0.029418945, 0.022720337, -0.011993408, -0.03881836, -0.084350586, 0.0029468536, 0.02470398, -0.027023315, 0.0065078735, -0.05895996, 0.016143799, -0.0027446747, -0.011703491, -0.015029907, -0.00472641, -0.038604736, 0.046203613, 0.06088257, -0.040039062, 0.00605011, 0.02961731, -0.02420044, -0.050689697, -0.015457153, 0.028686523, -0.021209717, 0.014839172, -0.027908325, -0.021636963, -0.013748169, -0.036956787, -0.074645996, -0.02520752, -0.00013518333, 0.0345459, 0.016021729, -0.022644043, -0.05960083, -0.038879395, -0.029006958, -0.012245178, -0.026733398, 0.004989624, -0.020904541, -0.041870117, 0.008575439, 0.0025959015, -0.016296387, 0.0061569214, -0.023544312, 0.010223389, -0.041809082, 0.02319336, -0.001871109, 0.035949707, -0.016921997, 0.023742676, 0.013168335, -0.018493652, 0.01940918, -0.005302429, -0.017303467, -0.020202637, -0.018844604, 0.016998291, -0.018249512, -0.0027637482, -0.010040283, 0.0637207, 0.015640259, 0.0047683716, 0.016662598, 0.037322998, -0.022705078, -0.008178711, 0.011940002, 0.039093018, -0.060699463, 0.035186768, -0.05911255, -0.012756348, 0.041748047, -0.015434265, 0.02154541, -0.04220581, -0.0039253235, 0.022735596, 0.026885986, 0.0013875961, 0.034057617, 0.0075645447, -0.015975952, -0.0054626465, 0.009216309, -0.018417358, -0.03353882, -0.06536865, -0.023391724, 0.0017871857, 0.034576416, 0.04071045, -0.017669678, -0.035736084, -0.004962921, -0.022369385, 0.036499023, 0.027267456, -0.006576538, -0.0040664673, -0.028121948, 0.018371582, -0.03353882, -0.00705719, -0.016998291, 0.034454346, -0.050079346, -0.010635376, -0.022537231, -0.029190063, 0.01448822, 0.036834717, -0.021514893, 0.016723633, -0.008735657, 0.002494812, -0.03451538, 0.02519226, 0.0075912476, 0.013801575, 0.02558899, -0.02154541, 0.024520874, -0.016448975, 0.015327454, -0.029342651, -0.047668457, -0.023605347, 0.017349243, 0.04458618, 0.008079529, -0.018356323, -0.0082473755, -0.0390625, -0.009460449, -0.029846191, -0.027679443, -0.06225586, 0.01071167, 0.034576416, -0.025253296, -0.007709503, -0.050598145, 0.009132385, -0.05267334, 0.025741577, 0.023803711, -0.011695862, -0.008102417, 0.049865723, -0.02355957, -0.031677246, -0.031982422, 0.03286743, -0.02330017, -0.016098022, 0.021728516, -0.04574585, -0.04046631, -0.015731812, 0.0748291, 0.014976501, 0.010108948, -0.014678955, -0.04095459, -0.015182495, -0.018173218, 0.030181885, -0.02684021, 0.05569458, 0.0027637482, -0.021102905, -0.033050537, -0.00030469894, -0.024505615, -0.028533936, -0.07470703, -0.04638672, 0.019851685, 0.020523071, 0.029693604, 0.03024292, -0.023513794, -0.0112838745, 0.013648987, -0.086364746, -0.028366089, -0.016464233, -0.026748657, 0.014381409, 0.007648468, -0.012504578, -0.032806396, 0.050872803, -0.036376953, 0.008087158, -0.020584106, -0.02279663, -0.0018558502, -0.018615723, -0.023025513, 0.014213562, -0.033996582, 0.0036792755, -0.052124023, 0.013839722, 0.03186035, 0.026931763, 0.02418518, -0.023590088, 0.0031223297, -0.018676758, -0.044189453, 0.007221222, 0.042419434, -0.003211975, -0.0335083, -0.0104599, -0.013946533, -0.016494751, 0.0041542053, -0.016113281, 0.030517578, 0.017959595, 0.002614975, 0.0023231506, -0.039489746, -0.008544922, 0.0129852295, -0.008583069, 0.017974854, -0.013000488, 0.0016183853, -0.022232056, -0.0046844482, 0.02458191, -0.014656067, -0.026367188, 0.007843018, 0.0022640228, -0.014572144, 0.007926941, 0.016693115, -0.011276245, -0.017913818, 0.041381836, 0.0014343262, 0.013076782, 0.015113831, 0.07128906, 0.02218628, 0.01499939, 0.02420044, 0.023666382, 0.02381897, 0.009864807, 0.01751709, -0.0062675476, -0.01109314, -0.04196167, 0.004047394, -0.010185242, -0.00016748905, -0.03918457, 0.07220459, -0.010688782, -0.0018129349, -0.06021118, 0.013633728, -0.040405273, -0.029525757, -0.05038452, 0.023117065, 0.030807495, -0.0061683655, 0.026000977, 0.0056037903, -0.06542969, -0.013282776, 0.012672424, -0.030044556, -0.053985596, 0.032836914, -0.029830933, -0.04107666, 0.028167725, 0.011047363, 0.0031642914, 0.025939941, 0.004573822, -0.039245605, -0.03390503, -0.02029419, 0.009887695, 0.0067253113, -0.015579224, 0.034942627, 0.027160645, -0.0076904297, -0.033447266, -0.016113281, -0.003572464, -0.044128418, -0.025665283, 0.0018939972, 0.03213501, 0.023529053, 0.04348755, -0.040008545, -0.011108398, 0.024917603, 0.005645752, 0.024978638, -0.002506256, -0.046722412, -0.00712204, -0.0013408661, 0.006931305, -0.007293701, -0.03866577, 0.039642334, -0.022781372, -0.018844604, -0.04031372, 0.02748108, 0.02178955, -0.010108948, 0.04257202, 0.021652222, -0.0065841675, 0.035064697, -0.013664246, -0.06817627, 0.0035915375, 0.007888794, -0.07116699, -0.060150146, -0.051086426, -0.016174316, -0.032958984, -0.024551392, -0.021270752, 0.019683838, -0.006706238, -0.017456055, -0.011726379, -0.04458618, -0.00466156, -0.024368286, 0.0070381165, 0.009757996, 0.030334473, 0.0011453629, 0.040100098, -0.078552246, -0.034240723, 0.0074157715, 0.034606934, -0.004436493, 0.03781128, -0.009307861, 0.009971619, -0.07086182, 0.037750244, -0.0023784637, 0.019760132, 0.013877869, 0.018234253, -0.032226562, 0.016540527, -0.08709717, -0.015266418, -0.0010662079, 0.025650024, 0.030288696, 0.012779236, -0.054351807, -0.021911621, 0.013008118, 0.041809082, -0.0008401871, -0.022506714, -0.024276733, 0.007007599, 0.005592346, -0.012702942, 0.0119018555, -0.013084412, -0.0024776459, 0.007129669, -0.027511597, -0.0032234192, -0.017196655, -0.018554688, 0.03378296, 0.0041160583, 0.0019493103, -0.046966553, 0.010322571, -0.014183044, 0.031280518, -0.02104187, -0.054504395, 0.011497498, 0.035186768, 0.011047363, -0.02684021, 0.0045547485, 0.030303955, 0.044830322, 0.013847351, 0.01675415, 0.013267517, 0.0032958984, 0.026168823, -0.007434845, -0.007144928, -0.020736694, 0.030426025, -0.026870728, -0.009819031, 0.002193451, 0.009010315, 0.01171875, 0.00843811, -0.0647583, 0.026184082, 0.030899048, -0.035949707, -0.003227234, -0.031463623, -0.03277588, 0.008277893, 0.010032654, -0.0010232925, 0.010650635, -0.04547119, 0.05517578, -0.004009247, 0.04522705, 0.019332886, -0.025024414, 0.013809204, 0.043945312, 0.010620117, -0.019821167, -0.042510986, -0.006378174, 0.001745224, -0.0013151169, 0.037322998, -0.00020372868, 0.07458496, -0.0007429123, -0.028884888, 0.033111572, -0.09979248, 0.02696228, -0.002046585, 0.06149292, -0.054626465, -0.04449463, -0.015510559, -0.0011911392, -0.02079773, 0.04611206, 0.0021419525, 0.0340271, -0.013793945, -0.0042533875, 0.036315918, 0.0016889572, 0.032318115, -0.041625977, -0.0024604797, 0.0055160522, -0.017227173, 0.008338928, 0.016647339, -0.032196045, 0.011940002, 0.0045166016, -0.0039100647, 0.036376953, 0.0072669983, -0.020584106, -0.020477295, 0.015602112, -0.008224487, -0.010612488, -0.0002194643, -0.018295288, 0.010391235, -0.018615723, -0.015037537, -0.048950195, -0.05545044, -0.033691406, 0.064697266, -0.031677246, -0.025466919, 0.0050354004, -0.0020332336, -0.02166748, -0.051574707, -0.014541626, 0.0025119781, 0.045837402, 0.0027542114, 0.016220093, -0.0071487427, -0.037872314, -0.07281494, 0.039520264, -0.083618164, -0.032440186, -0.029785156, -0.008056641, -0.010040283, -0.014572144, 0.013694763, 0.022262573, 0.026412964, -0.006755829, 0.04837036, -0.07092285, 0.01234436, 0.0065307617, 0.010261536, 0.00554657, -0.066101074, 0.005996704, 0.0009469986, -0.008270264, 0.015342712, 0.0040130615, -0.05078125, -0.001791954, -0.008911133, -0.034362793, -0.049835205, 0.032592773, -0.021575928, -0.0031585693, -0.04473877, 0.018234253, 0.0021839142, 0.05227661, 0.044281006, 0.01473999, 0.00932312, -0.025604248, -0.07672119, -0.03378296, -0.0061416626, 0.028381348, 0.03793335, -0.012611389, -0.026824951, 0.0043563843, -0.00472641, -0.004055023, 0.0063095093, -0.011497498, -0.0014514923, 0.024612427, 0.022201538, 0.010726929, -0.0206604, -0.02268982, -0.07751465, 0.003364563, 0.06958008, -0.025283813, -0.00157547, -0.009132385, -0.030548096, -0.034118652, -0.0231781, 0.001698494, -0.018981934, -0.044555664, 0.01449585, 0.044769287, -0.00969696, -0.012550354, -0.005592346, -0.0032253265, -0.014808655, 0.029403687, 0.009857178, 0.029830933, -0.008323669, 0.0713501, 0.012870789, 0.08087158, -0.0030784607, -0.12408447, -0.066711426, 0.02331543, -0.010818481, -0.00037956238, 0.01687622, -0.023269653, 0.008560181, 0.0284729, -0.01576233, -0.023651123, 0.050842285, 0.056793213, -0.010688782, 0.03186035]}, "B00OXKQQYC": {"id": "B00OXKQQYC", "original": "Brand: Coleman\nName: Coleman Propane Grill Adapter, 1-Pound\nDescription: \nFeatures: Attaches to any full-size propane grill\nAllows for hook-up to a 1-lb. (0.45 kg) fuel cylinder\nAll brass construction\n", "metadata": {"Name": "Coleman Propane Grill Adapter, 1-Pound", "Brand": "Coleman", "Description": "", "Features": "Attaches to any full-size propane grill\nAllows for hook-up to a 1-lb. (0.45 kg) fuel cylinder\nAll brass construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.028656006, -0.002614975, -0.05279541, 0.006626129, -0.017684937, -0.03050232, -0.00894928, 0.005958557, -0.011047363, -0.021560669, 0.01852417, 0.0012598038, 0.0008831024, -0.06665039, 0.0440979, -0.007801056, 0.00031733513, 0.024124146, -0.008964539, -0.037902832, 0.0023174286, -0.03353882, -0.015930176, 0.08508301, 0.03164673, -0.04071045, 0.050109863, -0.0256958, 0.045928955, -0.0005021095, 0.027191162, -0.016723633, 0.039520264, -0.004299164, -0.039764404, -0.037322998, 0.028884888, -0.035247803, -0.054870605, 0.0362854, 0.027893066, -0.0107421875, 0.013717651, 0.030380249, -0.017364502, -0.03717041, 0.041870117, -0.0211792, 0.016464233, -0.014526367, -0.001335144, 0.009284973, 0.026306152, -0.035980225, -0.012939453, -0.0014123917, 0.0059013367, -0.010314941, 0.0022335052, -0.005432129, 0.00356102, 0.021408081, 0.026977539, 0.016159058, -0.0362854, 0.021057129, 0.06439209, -0.024627686, 0.021102905, -0.04812622, -0.028060913, 0.02583313, -0.012893677, 0.054992676, -0.05682373, -0.08666992, 0.08831787, -0.034851074, -0.015098572, 0.04940796, -0.034576416, -0.035064697, 0.0036849976, -0.0058059692, -0.013069153, 0.008453369, -0.029022217, -0.005718231, 0.0069007874, -0.027664185, -0.0033416748, 0.07330322, -0.01914978, 0.016983032, -0.054992676, -0.0060577393, -0.0014972687, -0.04534912, 0.035461426, -0.009407043, 0.036376953, -0.03845215, 0.0025138855, 0.010932922, 0.0022201538, 0.031707764, 0.0023384094, 0.002565384, 0.017181396, 0.0076026917, -0.007156372, 0.026489258, 0.023162842, 0.015274048, -0.030929565, -0.008956909, -0.016571045, 0.023529053, -0.018722534, 0.04650879, -0.03842163, -0.006389618, 0.009307861, -0.02734375, 0.0050086975, -0.009735107, 0.005466461, -0.002286911, -0.03427124, 0.02015686, -0.04724121, -0.012397766, 0.07733154, 0.07476807, 0.036224365, -0.024490356, 0.0423584, 0.00868988, 0.014793396, -0.006164551, 0.0047035217, -0.016021729, 0.0008611679, 0.011833191, -0.044067383, 0.027069092, 0.019729614, 0.0065727234, -0.029327393, -0.06964111, 0.009567261, -0.028335571, 0.052001953, -0.0040664673, -0.035064697, -0.020568848, -0.008140564, -0.019836426, 0.00039219856, -0.05014038, -0.032226562, -0.026824951, -0.022354126, -0.015960693, -0.024276733, 0.02758789, 0.059570312, 0.010253906, 0.022018433, 0.066833496, -0.003856659, 0.0032539368, -0.009880066, 0.004764557, -0.008125305, -0.024963379, -0.033996582, 0.07373047, 0.041992188, -0.08288574, -0.042114258, -0.055541992, 0.08880615, -0.00041294098, 0.018722534, -0.07659912, 0.046203613, -0.03100586, -0.02658081, 0.016036987, 0.062164307, 0.02192688, -0.03479004, -0.0070381165, -0.026611328, 0.027130127, -0.020614624, 0.054016113, -0.018554688, -0.019958496, -0.011711121, -0.02078247, 0.0440979, -0.0059394836, 0.036468506, -0.0107040405, 0.00365448, 0.008728027, 0.020217896, 0.045562744, -0.006881714, -0.003042221, 0.007156372, -0.044067383, -0.026611328, -0.010559082, -0.0017433167, 0.017745972, 0.013908386, -0.020217896, 0.015258789, 0.0010614395, 0.006439209, 0.014152527, -0.0067481995, 0.023132324, -0.048339844, 0.0090789795, -0.042541504, 0.0067214966, -0.020721436, 0.0657959, 0.06719971, 0.054504395, -0.03338623, 0.022949219, 0.077819824, 0.06341553, -0.025619507, -0.017120361, -0.003238678, 0.0014944077, -0.025024414, 0.015449524, 0.039611816, 0.045654297, 0.014251709, -0.002456665, -0.010368347, 0.042419434, 0.05050659, 0.03567505, 0.008743286, 0.058258057, -0.032196045, 0.028305054, -0.028671265, 0.01828003, -0.043762207, 0.040130615, -0.025756836, 0.018692017, 0.052520752, -0.022491455, 0.0047912598, 0.04550171, 0.036193848, 0.0368042, -0.047302246, 0.025222778, 0.016784668, 0.021606445, -0.019134521, -0.0075416565, 0.026855469, -0.029159546, -0.038146973, 0.03314209, 0.009902954, -0.02458191, 0.007873535, -0.03378296, 0.030426025, 0.0050201416, 0.059295654, 0.019515991, 0.050720215, 0.01335144, -0.06951904, -0.014373779, 0.008422852, 0.036102295, 0.004383087, -0.016586304, -0.0040740967, -0.003030777, 0.017990112, -0.012779236, 0.018127441, -0.018844604, 0.0043296814, 0.04598999, -0.017807007, 0.032318115, -0.02218628, -0.021484375, -0.023422241, 0.014274597, 0.0004389286, -0.060699463, 0.0050315857, 0.0071258545, 0.012184143, 0.0284729, -0.0055274963, 0.0062828064, -0.0096588135, 0.02961731, 0.013923645, 0.015556335, -0.022857666, 0.017196655, 0.005466461, 0.004009247, 0.020858765, -0.0077400208, -0.006336212, 0.010147095, 0.03387451, 0.030319214, 0.008094788, 0.016937256, 0.00051259995, -0.03781128, -0.0031833649, -0.018356323, 0.013717651, -0.0063285828, 0.007129669, -0.027877808, 0.025039673, 0.0021686554, -0.012161255, -0.0026626587, -0.011634827, -0.014862061, 0.017944336, 0.024093628, -0.041229248, 0.007041931, -0.010124207, -0.025970459, 0.006752014, -0.013786316, -0.0043678284, -0.010543823, -0.01977539, -0.04147339, -0.037322998, -0.08050537, 0.015235901, -0.013946533, -0.035949707, 0.016616821, 0.056762695, -0.024337769, -0.0044937134, -0.031829834, -0.014030457, 0.018753052, -0.020996094, 0.015022278, -0.040618896, -0.025131226, -0.027816772, 0.017242432, 0.027648926, -0.020599365, -0.0020637512, 0.0065345764, 0.016525269, 0.020370483, -0.0005002022, 0.03616333, -0.021224976, 0.055847168, 0.053009033, 0.044036865, -0.0067863464, -0.059020996, 0.00957489, 0.087524414, -0.024841309, -0.028945923, -0.048614502, 5.3286552e-05, -0.018341064, -0.023666382, 0.024719238, -0.008911133, -0.074279785, 0.00932312, -0.011291504, -0.024139404, -0.004852295, -0.015625, -0.03112793, -0.060760498, 0.01737976, 0.035217285, -0.022140503, 0.026443481, -0.04269409, 0.035614014, -0.0074501038, -0.0053100586, 0.02142334, -0.023727417, 0.029220581, -0.00065755844, 0.021514893, -0.044830322, 0.022338867, 0.037353516, -0.03363037, 0.012237549, -0.017166138, 0.03427124, -0.05911255, 0.004043579, -0.009552002, -0.028121948, -0.0625, -0.044891357, 0.00028848648, 0.013000488, 0.01637268, -0.012306213, 0.017791748, 0.01398468, -0.048583984, -0.023147583, -0.015159607, 0.03717041, -0.04248047, 0.026062012, -0.026855469, -0.04623413, 0.0053596497, -0.022506714, 0.0063972473, 0.011367798, 0.034210205, 0.0066871643, -0.013748169, 0.040130615, 0.029953003, 0.039001465, -0.028808594, 0.02331543, 0.0066604614, -0.020187378, 0.031829834, -0.014572144, 0.0151901245, -0.0647583, 0.036956787, -0.0023117065, -0.011772156, 0.018127441, -0.0025253296, 0.05105591, 0.008056641, -0.024887085, 0.010803223, -0.0033512115, 0.024215698, -0.0073623657, 0.023361206, -0.0362854, -0.04776001, 0.006969452, -0.09063721, 0.07330322, 0.061309814, -0.027801514, 0.06964111, 0.022247314, -0.014335632, 0.0030708313, 0.036712646, -0.008865356, 0.02418518, 0.009490967, -0.025360107, -0.03164673, -0.0078086853, 0.022079468, 0.012710571, -0.011245728, -0.009414673, 9.3877316e-05, 0.010192871, -0.026290894, 0.022583008, 0.017059326, -0.025558472, -0.017364502, -0.022460938, -0.0076026917, -0.020263672, -0.04244995, -0.024978638, 0.0055885315, -0.02796936, 0.00299263, -0.03253174, -0.02947998, -0.0335083, 0.005874634, 0.022323608, 0.0016527176, 0.005859375, 0.024765015, 0.004119873, 0.0012960434, -0.025619507, -0.006504059, -0.041870117, 0.028564453, 0.027755737, 0.013671875, 0.0058784485, -0.06378174, 0.031707764, -0.011749268, 0.00057697296, 0.0713501, 0.0032291412, -0.09442139, -0.017181396, 0.012741089, 0.007835388, -0.054382324, -0.0069084167, -0.005897522, 0.010688782, 0.00843811, -0.023712158, -0.014053345, -0.0061149597, 0.004535675, -0.051513672, -0.0046920776, -0.01625061, -0.038482666, -0.053009033, 0.020507812, -0.013000488, 0.016571045, 0.006790161, 0.040283203, -0.051086426, -0.008872986, -0.042907715, 0.0026950836, 0.042755127, 0.016784668, 0.03564453, -0.04095459, 0.012191772, -0.016418457, 0.068115234, 0.0076942444, 0.024108887, -0.03125, -0.030197144, 0.011154175, 0.02734375, 0.05999756, -0.0011520386, 0.0026760101, -0.05545044, -0.0027580261, -0.050872803, -0.023864746, 0.056732178, -0.053344727, -0.044952393, -0.044830322, 0.060455322, -0.002822876, 0.0034160614, -0.06390381, 0.021560669, 0.03414917, -0.0004143715, -0.047454834, -0.057434082, 0.0039787292, -0.025344849, -0.026824951, -0.007083893, -0.027053833, 0.06555176, -0.01537323, -0.022735596, -0.011268616, -0.006767273, -0.0063552856, 0.012939453, 0.036834717, -0.042785645, 0.01864624, -0.041870117, -0.015823364, -0.05722046, 0.07159424, 0.003944397, -0.025161743, -0.015571594, -0.008682251, -0.013725281, -0.050872803, 0.011940002, -0.033294678, -0.030700684, -0.02709961, -0.021057129, 0.003490448, -0.018325806, 0.005027771, -5.185604e-05, -0.03375244, 0.014915466, -0.0058555603, 0.008049011, -0.021896362, 0.0060272217, 0.03778076, -0.0030460358, 0.03778076, 0.010383606, -0.016677856, 0.03744507, -0.03414917, -0.019042969, 0.0015172958, -0.009414673, -0.010673523, 0.0031909943, 0.007801056, -0.026351929, 0.013435364, 0.03857422, 0.0053749084, -0.012573242, 0.001748085, 0.006252289, -0.00182724, 0.0036125183, 0.04321289, -0.027328491, 0.031402588, 0.044708252, -0.004512787, 0.017562866, 0.017211914, 0.002866745, 0.02658081, -0.014434814, -0.00017130375, 0.06695557, -0.005065918, -0.0063438416, -0.023910522, 0.105773926, -0.02217102, 0.045410156, -0.07342529, -0.0026931763, -0.038269043, 0.03439331, -0.018371582, -0.007411957, 0.039245605, -0.018844604, -0.031188965, 0.008888245, -0.019378662, -0.018478394, 0.005710602, -0.011734009, -0.039215088, -0.016586304, -0.005744934, -0.038146973, 0.030075073, 0.032409668, -0.02458191, 0.013633728, 0.029769897, -0.041503906, -0.015853882, -0.019638062, 0.024169922, -0.014472961, 0.021957397, -0.03366089, -0.019439697, 0.0040283203, 0.0262146, -0.05807495, -0.0006875992, -0.03111267, -0.027359009, -0.051940918, 0.004306793, 0.0013828278, 0.037506104, -0.0039711, 0.00459671, 0.0056495667, 0.024032593, 0.018295288, 0.0035705566, -0.056030273, 0.0038375854, 0.013320923, 0.044158936, 0.0043182373, 0.024978638, 0.050872803, -0.037719727, -0.017547607, -0.08880615, 0.07305908, -0.042663574, -0.019439697, 0.048431396, 0.05380249, 0.018936157, 0.030899048, -0.0034770966, -0.021530151, -0.0031471252, -0.010688782, 0.013877869, -0.009490967, -0.025543213, 0.0116119385, 0.029708862, 0.02192688, 0.013191223, 0.048706055, -0.0032424927, -0.016479492, -0.033050537, 0.010536194, -0.011260986, -0.028915405, 0.017593384, -0.006137848, 0.008148193, -0.0019741058, 0.019165039, -0.08660889, -0.04058838, 0.02458191, 0.046691895, 0.031402588, -0.018325806, 0.016799927, 0.064697266, -0.047729492, 0.064575195, 0.018203735, -0.009361267, -0.004940033, 0.029388428, -0.01979065, 0.019332886, -0.057739258, -0.0073432922, -0.022460938, 0.015701294, 0.025894165, 0.031585693, -0.023635864, 0.0026168823, 0.011260986, 0.0234375, 0.017532349, -0.008110046, 0.0029697418, 0.006916046, -0.0115737915, -0.003162384, 0.011581421, -0.022583008, -0.011451721, -0.076660156, 0.022338867, 0.012207031, 0.00060224533, 0.021957397, -0.031585693, 0.04360962, -0.0029888153, -0.0018472672, 0.0070266724, -0.007873535, 0.023773193, -0.006099701, -0.008377075, 0.021713257, -0.0024929047, 0.016220093, -0.027267456, -0.046142578, -0.0004518032, 0.034179688, -0.01524353, 0.026046753, -0.04849243, 0.019851685, 0.03793335, -0.036102295, -0.035095215, 0.029800415, 0.03111267, -0.02444458, -0.062683105, -0.0017929077, -0.024963379, -0.022140503, 0.032806396, -0.0059661865, 0.05319214, 0.02458191, -0.040161133, -0.02243042, -0.005847931, -0.029220581, -0.004337311, 0.019699097, -0.0046539307, -0.014770508, -0.057891846, 0.0071144104, 0.030761719, 0.00038909912, 0.013168335, -0.025848389, 0.031173706, 0.00062799454, 0.019882202, -0.030792236, -0.03286743, 0.006587982, -0.017807007, -0.006904602, 0.04711914, 0.06726074, 0.023376465, 0.019165039, -0.042114258, 0.022628784, -0.04446411, 0.025909424, 0.011405945, 0.06781006, -0.049102783, -0.0037117004, 0.00299263, 0.0017871857, 0.0065193176, 0.07312012, 0.016937256, 0.039794922, 0.036956787, -0.00062036514, 0.0635376, -0.007789612, 0.0109939575, -0.0082092285, 0.013931274, 0.013893127, -0.030014038, -0.008674622, 0.002729416, -0.0063438416, 0.016296387, 0.016296387, -0.0129852295, 0.006668091, 0.0047798157, -0.028625488, -0.049713135, 0.070495605, -0.026260376, -0.030258179, -0.024368286, -0.04711914, -0.030883789, -0.014389038, -0.020523071, -0.024398804, 0.0018005371, -0.07244873, 0.0020961761, -0.029159546, 0.005290985, 0.0028457642, -0.020355225, 0.0099105835, 0.0013999939, 0.032440186, 0.04675293, 0.0690918, -0.018066406, 0.049713135, -0.03503418, -0.03866577, -0.04925537, 0.0115737915, -0.0670166, -0.029525757, -0.0110321045, 0.00072050095, -0.005191803, -0.006793976, 0.0062828064, 0.083496094, 0.017501831, 0.002286911, 0.0049438477, -0.06173706, -0.010383606, 0.050872803, 0.0134887695, -0.038085938, -0.06225586, 0.027038574, -0.029708862, -0.02255249, 0.039764404, -0.039489746, -0.020065308, -0.008148193, 0.006969452, -0.064331055, -0.023101807, -0.033599854, 0.026809692, -0.003665924, -0.04156494, 0.0005221367, 0.03579712, 0.06036377, 0.046203613, 0.0042419434, 0.02909851, -0.025222778, -0.076538086, -0.067993164, -0.024429321, 0.05432129, 0.051605225, 0.025772095, -0.03778076, 0.035247803, -0.0067253113, 0.01638794, 0.0259552, -0.013252258, -0.0033931732, 0.019317627, 0.012962341, 0.0026416779, -0.0009036064, 0.044769287, -0.033111572, 0.0021343231, 0.039398193, 0.011665344, -0.017227173, -0.003917694, -0.013397217, -0.012969971, -0.005874634, -0.014335632, -0.010772705, -0.021102905, 0.007411957, 0.012901306, 0.0064315796, 0.008285522, 0.014602661, -0.011299133, -0.02809143, 0.029510498, 0.029144287, 0.055664062, -0.021881104, 0.031066895, 0.03970337, -0.0052261353, -0.019561768, -0.11212158, -0.061187744, 0.016784668, 0.029281616, -0.015258789, 0.07952881, -0.021347046, 0.015777588, -0.000579834, -0.005092621, -0.029907227, 0.0015134811, 0.060668945, -0.0034999847, 0.012916565]}, "B087N2JQD8": {"id": "B087N2JQD8", "original": "Brand: Hisencn\nName: Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W\nDescription: Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nFeatures: Burner Dimension: 12.6\" x 1.5\" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ;\nHeat Plate Dimension: 13\" x 4\" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ;\nFits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nRepair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order.\n\u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\n", "metadata": {"Name": "Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W", "Brand": "Hisencn", "Description": "Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill", "Features": "Burner Dimension: 12.6\" x 1.5\" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ;\nHeat Plate Dimension: 13\" x 4\" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ;\nFits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nRepair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order.\n\u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029449463, 0.0009994507, -0.045898438, -0.023635864, 0.0049591064, -0.0033817291, 0.014625549, 0.026031494, -0.018615723, 0.04296875, 0.03274536, -0.018737793, 0.021560669, -0.04336548, -0.008590698, -0.025161743, 0.018234253, 0.003900528, 0.005428314, -0.03366089, 0.019729614, 0.006122589, -0.014350891, 0.11895752, 0.0496521, -0.0574646, -0.0038833618, 0.012794495, 0.017364502, 0.0040016174, 0.03778076, -8.255243e-05, 0.039276123, 0.02418518, -0.07623291, -0.051849365, -0.029403687, 0.006034851, -0.04257202, 0.021224976, 4.774332e-05, 0.016021729, 0.030822754, -0.013793945, -0.0032691956, -0.035980225, 0.020446777, -0.049987793, 0.023971558, 0.03173828, -0.006122589, -0.012176514, -0.017929077, 0.0058021545, -0.025726318, -0.017547607, 0.013923645, -0.035888672, 0.006298065, 0.025253296, 0.029663086, -0.0063438416, -0.0007042885, -0.0072250366, -0.04916382, 0.0028514862, 0.09246826, -0.022415161, -0.016845703, -0.052246094, 0.033325195, 0.062194824, 0.038970947, -0.023590088, -0.040527344, -0.022827148, 0.022720337, -0.025100708, 0.03668213, -0.03894043, -0.0041999817, 0.01525116, -0.0034675598, -0.02998352, -0.010009766, -0.04876709, -0.009902954, -0.0061035156, -0.043273926, -0.008476257, -0.024108887, -0.06329346, -0.020339966, 0.008766174, 0.00111866, -0.015563965, -0.022338867, -0.06262207, 0.0006980896, -0.005794525, 0.051086426, -0.036834717, 0.0440979, -0.009269714, -0.023468018, 0.018707275, 0.005207062, 0.009635925, -0.026000977, 0.018249512, -0.026931763, -0.038208008, -0.01914978, -0.0491333, 0.0021629333, 0.061706543, 0.003293991, -0.01914978, 0.0062713623, -0.019226074, -0.026245117, -0.006351471, -0.02305603, 0.02468872, 0.022750854, 0.027648926, -0.00044345856, 0.022613525, -0.053863525, 0.036468506, -0.033477783, 0.004322052, 0.09979248, 0.080322266, 0.02960205, -0.02696228, -0.0008201599, -0.013046265, 0.023788452, -0.019973755, 0.019897461, -0.027496338, -0.00013053417, 0.022277832, -0.016921997, 0.0178833, 0.006549835, 0.0035877228, -0.002199173, -0.023773193, -0.025604248, -0.030639648, 0.0579834, 0.043304443, -0.08239746, 0.03378296, 0.008094788, -0.011581421, -0.04324341, -0.056549072, -0.052337646, -0.018997192, 0.025802612, -0.009643555, -0.019378662, 0.01966858, 0.008621216, 0.00087690353, 0.01939392, 0.04425049, -0.004840851, -0.019638062, 0.033935547, 0.016677856, 0.006996155, 0.036590576, -0.005207062, 0.0982666, 0.022521973, -0.0769043, -0.03967285, -0.061645508, 0.12445068, -0.03982544, -0.0126953125, 0.017410278, 0.011756897, -0.00017857552, -0.022140503, -9.5784664e-05, 0.036315918, 0.034057617, -0.006919861, -0.024108887, -0.024993896, 0.0151901245, 0.0068855286, 0.045806885, -0.008148193, -0.021865845, -0.028274536, 0.007865906, -0.022506714, 0.029510498, -0.0104904175, -0.007980347, 0.0020484924, 0.01374054, 0.039794922, 0.008163452, 0.0019111633, 0.0016412735, -0.018234253, -0.010894775, -0.06008911, -0.007865906, -0.043182373, 0.026565552, -0.021606445, 0.04473877, 0.006351471, -0.04449463, 0.015571594, 0.03643799, 0.0010108948, -0.041412354, -0.0068626404, -0.0053482056, 0.0068626404, -0.0043754578, 0.008987427, 0.022720337, 0.06365967, 0.08807373, 0.003435135, 0.026275635, 0.08898926, 0.036071777, -0.011947632, -0.029907227, 0.024291992, -0.016723633, -0.028030396, -0.020019531, -0.032043457, -0.03756714, 0.020828247, -0.023834229, -0.03250122, -0.0029411316, 0.08679199, 0.03060913, 0.020935059, 0.0524292, -0.0046195984, 0.025863647, 0.019805908, -0.009796143, -0.05819702, 0.055999756, -0.014076233, -0.004764557, -0.015289307, -0.00819397, 0.016525269, -0.0128479, 0.012893677, 0.0043907166, -0.037719727, -0.012756348, 0.023208618, 0.014251709, 0.01914978, -0.004852295, -0.04788208, 0.029922485, -0.016235352, 0.027801514, 0.011436462, -0.0024738312, -0.009986877, 0.023391724, -0.037597656, -0.023147583, 0.021347046, 0.009681702, -0.014266968, -0.0016613007, -0.02003479, 0.019439697, 0.049041748, 0.006881714, -0.012550354, 0.0045166016, -0.022323608, -0.010093689, 0.08416748, 0.023666382, -0.012496948, -0.0037555695, 0.0025234222, 0.015434265, -0.021591187, -0.024383545, -0.022918701, 0.03274536, -0.015159607, -0.0042037964, -0.010948181, -0.03692627, 0.010093689, 0.01537323, 0.016357422, 0.048583984, 0.014518738, -0.012924194, 0.004760742, 0.060668945, 0.03842163, 0.0011634827, -0.034484863, 0.0053215027, -0.03781128, -0.0079956055, -0.002878189, 0.027679443, -0.027908325, 0.0055656433, 0.021575928, 0.025604248, -0.027404785, -0.013069153, -0.01626587, 0.0036449432, -0.01739502, -0.020996094, -0.009086609, -0.011695862, -0.02104187, -0.019042969, -0.03253174, -0.032409668, 0.0181427, -0.04928589, -0.046051025, -0.0060157776, 0.06021118, 0.009765625, -0.0034160614, 0.013801575, 0.026275635, -0.034301758, -0.0017547607, -0.006210327, 0.022216797, -0.0073013306, 0.0026855469, -0.03161621, -0.0009889603, -0.059753418, -0.006412506, 0.0045318604, -0.023483276, -0.011459351, 0.015380859, -0.010276794, -0.0084991455, -0.003293991, -0.015235901, 0.00081157684, 0.07611084, -0.022994995, -0.10223389, -0.017913818, -0.040008545, -0.015625, 0.011421204, -0.04864502, 0.015136719, -0.002117157, -0.0154800415, 0.01876831, -0.01727295, 0.00094270706, -0.003145218, 0.02470398, 0.03225708, 0.013557434, 0.0074806213, -0.011764526, 0.02418518, 0.03189087, -0.019897461, -0.0007195473, 0.028076172, 0.012374878, 0.012199402, -0.031188965, -0.03579712, -0.032714844, -0.08892822, -0.02420044, -0.010055542, -0.04156494, 0.0011806488, -0.04272461, -0.0637207, -0.050445557, -0.0017318726, 0.06933594, -0.024383545, 0.018234253, -0.04244995, 0.03878784, 0.01235199, -0.006340027, -0.036499023, -0.013938904, -0.031402588, 0.03591919, 0.020629883, 0.005016327, -0.012237549, 0.037841797, -0.017578125, 0.026123047, -0.009170532, -0.0027427673, -0.0042304993, 0.033935547, 0.000116705894, -0.012207031, -0.029846191, -0.0076675415, -0.028167725, 0.02279663, 0.021697998, -0.017837524, 0.038848877, -0.029418945, -0.066345215, -0.029800415, -0.0040779114, 0.023345947, 0.0024814606, -0.016098022, -0.031051636, -0.054870605, -0.041900635, -0.020507812, 0.0015668869, 0.012481689, 0.0071792603, 0.025253296, 0.01209259, 0.08178711, 0.003250122, 0.040802002, 0.011772156, 0.015014648, -0.015716553, -0.022521973, 0.054504395, 0.010986328, -0.015167236, -0.030700684, 0.014518738, 0.012039185, -0.023529053, -0.017715454, -0.01525116, 0.08105469, 0.022277832, -0.0072402954, -0.00868988, -0.01876831, 0.0057373047, 0.0019569397, 0.011421204, -0.01687622, -0.06286621, 0.0019216537, -0.05569458, 0.060760498, 0.037231445, -0.027236938, 0.088012695, 0.05126953, -0.024597168, -0.008041382, 0.0088272095, -0.016677856, -0.022338867, 0.037994385, -0.028137207, -0.012557983, 0.017120361, -0.026443481, 0.021499634, 0.019226074, -0.064819336, 0.027450562, -0.016113281, -0.052764893, 0.0057868958, 0.042236328, -0.005657196, -0.0390625, -0.019012451, -0.017990112, -0.012008667, -0.062408447, 0.001001358, 0.035614014, -0.02645874, -0.034484863, 0.031677246, 0.061157227, -0.046661377, -0.015945435, 0.0044517517, 0.020370483, -0.004257202, 0.025527954, 0.004764557, 0.016357422, -0.04937744, 0.013870239, -0.012313843, 0.00674057, 0.028320312, 0.017562866, 0.052703857, 0.01626587, -0.0151901245, 0.011314392, -0.012420654, 0.018157959, -0.026626587, -0.06970215, 0.0057754517, -0.007411957, -0.025131226, -0.043518066, -0.015426636, -0.013153076, -0.025222778, -0.023651123, -0.008613586, -0.05935669, 0.014923096, 0.021621704, -0.019348145, -0.004737854, -0.013824463, -0.023880005, -0.039276123, -0.00045967102, -0.0005917549, 0.018600464, -0.015731812, 0.004524231, -0.03237915, -0.001408577, -0.018066406, 0.014480591, 0.026123047, -0.014907837, -0.012123108, 0.011917114, -0.0021743774, -0.008705139, 0.0647583, -0.008453369, -0.01751709, -0.06542969, -0.044830322, 0.005809784, -0.0096206665, 0.03930664, 0.014053345, 0.03201294, -0.031204224, 0.01071167, -0.030380249, 0.028640747, -0.00491333, -0.025787354, -0.028839111, 0.013839722, 0.06488037, -0.016845703, -0.004714966, 0.0031032562, 0.023788452, 0.011398315, -0.0003528595, -0.026855469, 0.016311646, 0.010681152, -0.05923462, 0.015823364, -0.0038642883, -0.0023612976, 0.039123535, 0.047698975, -0.029510498, -0.001996994, 0.006969452, -0.012840271, -0.012802124, -0.00042557716, -0.013343811, 0.033447266, -0.0287323, -0.02281189, -0.076660156, 0.08917236, 0.05886841, -0.010314941, 0.00687027, -0.025878906, -0.02067566, -0.03640747, 0.020767212, 0.0047950745, 0.015213013, -0.026016235, -0.048217773, 0.0014829636, -0.063964844, 0.0005135536, -0.00051116943, -0.0018281937, 0.023971558, 0.010047913, -0.01423645, -0.031051636, -0.043823242, -0.007987976, 0.0017662048, 0.04901123, 0.020050049, 0.016052246, -0.0184021, -0.010414124, 0.0011043549, -0.039794922, -0.025909424, 0.01676941, -0.017745972, 0.009155273, -0.016784668, -0.0059394836, 0.020767212, 0.009605408, -0.023605347, 0.023971558, 0.019851685, 0.00283432, -0.0038223267, 0.05697632, -0.01979065, 0.002445221, 0.076660156, -0.011878967, 0.0087890625, 0.049224854, -0.021209717, 0.044281006, 0.006717682, -0.016021729, -0.022369385, -0.016052246, 0.025650024, -0.023956299, 0.06896973, 0.0017375946, 0.019607544, -0.07562256, 0.016540527, -0.0066184998, -0.007663727, 0.0143585205, -0.020507812, 0.03616333, -0.03878784, -0.019348145, -0.029937744, 0.030410767, -0.0440979, -0.030456543, -0.021530151, -0.043426514, -0.049682617, -0.053253174, -0.035583496, 0.010948181, -0.014144897, 0.0060806274, 0.041015625, -0.000767231, -0.022613525, -0.03125, 0.018325806, -0.0019054413, -0.03555298, -0.020431519, -0.010978699, -0.0067481995, -0.0072402954, 0.076293945, -0.0070724487, -0.005748749, -0.023345947, -0.019500732, -0.045776367, 0.028259277, -0.020065308, 0.019882202, 0.0049819946, -0.012763977, 0.0049057007, 0.026275635, 0.013786316, 0.010643005, -0.03616333, 0.013191223, -0.000995636, 0.02696228, -0.009963989, 0.017944336, 0.059387207, -0.03326416, -0.018844604, -0.02330017, 0.061340332, -0.013259888, -0.030197144, 0.11920166, 0.06512451, 0.0184021, 0.017166138, -0.024337769, -0.008270264, 0.025634766, 0.005207062, -0.038726807, -0.04953003, -0.029891968, -0.028717041, -0.0015354156, -0.06750488, -0.019958496, 0.03591919, 0.002916336, -0.006591797, -0.020614624, -0.046569824, 0.030136108, -0.03152466, 0.033294678, -0.0135269165, -0.025299072, -0.0023269653, -0.006088257, -0.11291504, -0.05041504, 0.008171082, -0.014343262, 0.0056381226, -0.00070905685, 0.0028133392, -0.0031661987, 0.009887695, -0.0022602081, -0.038757324, 0.025878906, 0.00013434887, 0.032409668, -0.01789856, 0.10131836, -0.033172607, -0.014549255, -0.027236938, 0.036865234, 0.020980835, 0.029205322, -0.027740479, -0.0017824173, -0.0016832352, 0.032104492, 0.004432678, 0.014572144, 0.019744873, -0.019927979, -0.04574585, 0.008361816, 0.013168335, -0.051971436, 0.01499176, -0.06100464, -0.011177063, -0.0041503906, -0.016296387, 0.014450073, -0.010215759, 0.037475586, -0.019638062, 0.008003235, 0.007171631, -0.014076233, 0.054229736, 0.003730774, 0.037353516, 0.012535095, 0.06713867, 0.026382446, -0.006134033, -0.030395508, -0.005771637, 0.030517578, 0.0013141632, 0.030670166, -0.005771637, 0.012802124, -0.00022602081, -0.05041504, 0.011497498, 0.024658203, -0.007949829, 0.011764526, -0.06689453, -0.016921997, -0.014350891, 0.006729126, -0.0057525635, 0.03729248, 0.017074585, 0.0078125, -0.014259338, -0.026260376, 0.011451721, -0.008140564, -0.029647827, -0.0009098053, 0.014892578, 0.00015807152, -0.037597656, 0.023468018, 0.017578125, 0.014564514, 0.02116394, -0.032836914, 0.024353027, 0.014709473, 0.007396698, -0.009254456, -0.029312134, 0.023117065, 0.044830322, -0.0029296875, 0.06048584, -0.0076904297, 0.039001465, 0.016433716, -0.004447937, 0.040863037, -0.038970947, 0.061920166, 0.04168701, -0.008651733, -0.074035645, -0.033966064, -0.013679504, -0.011886597, 0.012428284, 0.03274536, 0.018188477, 0.009864807, 0.028167725, 0.022506714, 0.031143188, -0.024536133, 0.020141602, 0.022491455, -0.011634827, 0.049835205, 0.010940552, 0.0038909912, 0.012329102, -0.03466797, -0.021560669, 0.006385803, -0.019561768, 0.034942627, 0.034820557, -0.041503906, -0.032409668, -0.006122589, 0.025314331, -0.023223877, 0.021453857, -0.04864502, -0.02734375, -0.014511108, -0.03729248, -0.03817749, 0.009155273, -0.07727051, -0.010070801, -0.013710022, -0.035827637, 0.012016296, 0.0099487305, -0.030151367, -0.049835205, -0.02545166, 0.008407593, -0.023468018, 0.0013494492, 0.049224854, -0.051757812, -0.043060303, -0.022521973, 0.04446411, -0.07775879, -0.044647217, 0.043640137, -0.016098022, 0.029373169, -0.011444092, 0.02822876, 0.03475952, 0.034179688, -0.016998291, 0.020019531, -0.05697632, -0.019226074, -0.0021324158, 0.016799927, -0.042755127, -0.04373169, 0.027435303, -0.0059432983, 0.04006958, 0.01272583, -0.032043457, -0.052642822, -0.016906738, -0.023132324, 0.0014371872, 0.024856567, -0.021728516, 0.027709961, 0.02973938, -0.037353516, 0.01184845, -0.017791748, -0.018615723, 0.05255127, 0.013755798, -0.008125305, -0.05831909, -0.09515381, -0.048614502, -0.02420044, 0.058654785, 0.06756592, 0.04333496, 0.007801056, 0.014160156, -0.011444092, 0.032928467, -0.013702393, -0.012489319, 0.016983032, 0.014205933, -0.03591919, -0.003107071, -0.025985718, -0.029388428, -0.0035629272, -0.030807495, 0.06866455, 0.0034160614, -0.011734009, 0.023239136, -0.04711914, -0.0064582825, 0.029281616, -0.05404663, -0.008758545, -0.04083252, 0.036224365, 0.009674072, 0.021865845, -0.0030574799, 0.036224365, -0.015525818, -0.0036354065, 0.00094127655, 0.0066070557, -0.012878418, -0.021377563, 0.00061798096, -0.011543274, 0.038513184, -0.009643555, -0.0016050339, -0.029296875, 0.04559326, -0.008857727, -0.017288208, 0.003967285, -0.024398804, -0.0035800934, 0.04623413, 0.006511688, -0.05255127, 0.0552063, 0.046020508, 0.030273438, 0.024383545]}, "B096N8WRF6": {"id": "B096N8WRF6", "original": "Brand: Taslett\nName: Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case\nDescription: \nFeatures: Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up.\nTabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks.\nExtra Storage: Handy side pocket for your wand lighter or other BBQ accessories.\nPerfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25\u201d.\nStorage Case included.\n", "metadata": {"Name": "Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case", "Brand": "Taslett", "Description": "", "Features": "Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up.\nTabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks.\nExtra Storage: Handy side pocket for your wand lighter or other BBQ accessories.\nPerfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25\u201d.\nStorage Case included.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.035125732, -0.008430481, 0.018829346, -0.0597229, -0.026245117, 0.019088745, -0.04736328, -0.013648987, -0.012229919, 0.0007686615, -0.017745972, 0.037963867, -0.028579712, -0.0234375, 0.017745972, -0.006877899, 0.027740479, -0.012184143, 0.002439499, -0.022750854, -0.020690918, -0.02482605, 0.05114746, 0.046081543, 0.026168823, -0.032440186, 0.025680542, 0.015335083, 0.0058403015, -0.010055542, 0.02154541, -0.01260376, 0.028625488, 0.0013713837, 0.0066604614, 0.0061912537, 0.03111267, -0.020401001, -0.029220581, 0.042510986, -0.040100098, 0.044403076, 0.011894226, -0.028411865, -0.024002075, -0.054779053, -0.012268066, -0.012466431, 0.03111267, 0.020202637, -0.01826477, 0.050201416, -0.01473999, -0.011543274, -0.008277893, -0.0079193115, 0.009605408, -0.050750732, 0.011230469, -0.029876709, -0.0027885437, -0.017547607, 0.050567627, 0.032440186, -0.012756348, 0.029205322, 0.074523926, -0.000538826, -0.019943237, -0.039916992, -0.028778076, 0.00067281723, -0.020187378, -0.027328491, -0.05883789, 0.003955841, -0.005531311, -0.066223145, 0.018737793, -0.01210022, -0.010734558, -0.010810852, 0.037902832, -0.031829834, 0.0031547546, -0.012802124, -0.011497498, 0.0033283234, 0.030517578, 0.005592346, 0.0019702911, 0.022537231, 0.038269043, 0.056396484, -0.014862061, -0.020584106, -0.05038452, -0.08343506, 0.022155762, 0.0042648315, 0.0090789795, -0.02859497, -4.3690205e-05, 0.025543213, 0.010223389, 0.045043945, -0.022277832, 0.013511658, 0.04333496, 0.0056762695, 0.0077056885, -0.009819031, -0.0236969, -0.029190063, -0.028244019, 0.016921997, -0.054870605, 0.0340271, 0.01751709, 0.039764404, -0.042999268, -0.027633667, -0.004524231, -0.032196045, 0.053955078, 0.017929077, -0.01461792, 0.046173096, -0.021713257, 0.019424438, -0.022415161, -0.0057792664, 0.047729492, 0.06536865, 0.024383545, -0.012710571, 0.03930664, 0.008796692, 0.004699707, 0.012580872, -0.028015137, -0.008430481, 0.03302002, -0.020980835, -0.041046143, 0.03665161, 0.015472412, -0.0053977966, -0.0013093948, -0.05670166, -0.035095215, -0.048675537, 0.047943115, -0.007850647, -0.087768555, 0.02659607, -0.040863037, 0.014350891, -0.071899414, -0.04034424, -0.02557373, -0.008232117, -0.029724121, -0.009864807, -0.009643555, 0.014060974, 0.062683105, 0.011138916, 0.012664795, 0.060455322, -0.044189453, 0.04043579, 0.011352539, 0.04058838, 0.010070801, 0.005847931, -0.0019111633, 0.0713501, 0.07904053, -0.09075928, -0.072265625, -0.070007324, 0.15686035, -0.048034668, 0.025497437, -0.042175293, 0.009513855, -0.04031372, 0.01725769, 0.011871338, -0.012641907, 0.018585205, 0.034851074, -0.035827637, 0.013809204, 0.0047912598, -0.027648926, 0.0050086975, -0.0075531006, -0.0236969, -0.028503418, 0.0013332367, 0.011108398, 0.03668213, 0.03729248, -0.034210205, 0.009773254, -0.0028934479, 0.00049352646, 0.018692017, -0.008010864, -0.023468018, -0.0012931824, 0.0058403015, 0.0068626404, 0.05633545, 0.015899658, 0.02973938, 3.4332275e-05, -0.0088272095, 0.027404785, -0.008041382, 0.04248047, 0.055480957, -0.007896423, 0.020187378, -0.040008545, 0.0029563904, -0.010734558, -0.005619049, 0.034820557, 0.04598999, 0.06829834, -0.0049209595, -0.004146576, 0.059143066, 0.0713501, -0.04537964, -0.028900146, 0.018722534, 0.028869629, -0.04550171, 0.01474762, 0.049621582, 0.044128418, -0.009262085, -0.007106781, 0.015213013, -0.014579773, 0.0440979, 0.08477783, 0.01335907, -0.018173218, 0.049682617, -0.022338867, 0.007221222, -0.020553589, 0.04159546, -0.0423584, 0.03112793, -0.02911377, 0.053375244, 0.04800415, 0.004550934, 0.03817749, 0.006832123, 0.059387207, 0.060333252, 0.009819031, -0.01197052, -0.014579773, 0.027297974, -0.008865356, 0.046905518, 0.004508972, 0.012268066, -0.057800293, 0.013198853, -0.009315491, 0.025115967, 0.027511597, -0.022018433, 0.026809692, 0.009506226, 0.07183838, 0.02079773, 0.020233154, 0.026733398, -0.02722168, -0.028305054, 0.008201599, 0.023757935, 0.026062012, -0.013687134, 0.036712646, -0.010314941, 0.035980225, 0.024002075, 0.02633667, -0.004863739, -0.013702393, 0.030456543, -0.03363037, 0.015602112, -0.014282227, 0.012245178, -0.04736328, 0.039794922, 0.0099105835, -0.026870728, -0.02204895, 0.0026130676, 0.007358551, 0.049743652, -0.00390625, -0.017318726, -0.0035476685, 0.045715332, 0.052093506, 0.04736328, 0.032958984, -0.031433105, -0.003118515, -0.032928467, -0.022949219, -0.009567261, -0.03778076, 0.0005092621, -0.02168274, 0.015434265, -0.0033779144, -0.02168274, -0.020523071, -0.020843506, -0.0024929047, 0.010498047, 0.003862381, 0.05831909, 0.008178711, -0.040649414, 0.011047363, -0.030563354, -0.018463135, 0.023803711, -0.016326904, -0.06756592, 0.029754639, 0.005809784, 0.0071029663, 0.0049934387, 0.017105103, -0.008758545, -0.011482239, -0.060791016, -0.01184845, 0.027542114, -0.011436462, -0.054656982, 0.0064735413, -0.082336426, 0.009025574, -0.018112183, -0.039642334, -0.05105591, 0.0340271, -0.005065918, -0.058044434, -0.021392822, 0.030685425, 0.030166626, 0.024307251, 0.039215088, -0.09069824, -0.04019165, -0.023895264, -0.037994385, 0.016738892, -0.024414062, -0.020767212, -0.0022830963, -0.0072746277, -0.0013933182, 0.029052734, 0.03451538, -0.010910034, 0.017044067, 0.026992798, 0.029144287, 0.0053749084, -0.021209717, 0.029266357, 0.055786133, 0.019607544, -0.03112793, 0.021087646, -0.0010662079, -0.026611328, 0.043121338, -0.044555664, -0.014953613, -0.064819336, 0.009269714, 0.0020523071, -0.0024261475, -0.012229919, -0.02015686, -0.033172607, -0.046813965, 0.021743774, 0.055236816, -0.0035896301, -0.0028533936, 0.018371582, -0.010444641, -0.025894165, 0.03100586, 0.0055389404, -0.004142761, -0.04663086, 0.034484863, 0.04650879, -0.01965332, 0.016220093, 0.039276123, 0.027282715, -0.002746582, 0.007030487, -0.016220093, -0.0067367554, -0.004085541, -0.0032539368, -0.009727478, -0.019744873, 0.015655518, 0.012275696, 0.07348633, -0.0024108887, 0.0048599243, 0.0060653687, -0.009094238, -0.03164673, -0.015022278, 0.043884277, 0.041748047, -0.016357422, 0.026290894, -0.0061683655, -0.013496399, -0.020019531, 0.012023926, -0.0011396408, 0.02217102, -0.014533997, -4.7564507e-05, -0.023254395, -0.004508972, 0.000177145, 0.022506714, -0.0006656647, 0.006713867, -0.0027332306, -0.009666443, -0.014175415, -0.023849487, -0.008964539, -0.07067871, 0.049865723, -0.022857666, -0.01676941, -0.0038986206, -0.050231934, 0.074279785, -0.037139893, -0.03161621, 0.034973145, -0.014533997, 0.0006670952, 0.022949219, -0.0068206787, -0.022064209, -0.05731201, 0.001914978, -0.09552002, 0.08148193, 0.011940002, -0.015396118, 0.066711426, 0.074401855, -0.038391113, 0.017333984, 0.05041504, 0.011405945, -0.020370483, 0.078063965, -0.046173096, -0.041137695, 0.002374649, -0.03012085, -0.0042381287, -0.029006958, 0.008239746, -0.0019445419, 0.0340271, 0.0056877136, 0.0022602081, 0.0065231323, 0.031036377, -0.019958496, 0.0020484924, 0.028930664, -0.010238647, -0.029785156, 0.023757935, 0.03717041, -0.017959595, 0.03100586, -0.018676758, 0.0206604, -0.016708374, -0.0050811768, -0.0395813, -0.009880066, 0.011245728, 0.032684326, 0.010971069, -0.013175964, -0.018829346, 0.039398193, -0.052764893, 0.013710022, 0.01600647, 0.033111572, -0.010818481, -0.042663574, 0.04837036, 0.011375427, -0.021240234, -0.012275696, -0.06512451, -0.07397461, -0.0016126633, 0.044891357, 0.0060043335, -0.03213501, 0.0011854172, -0.02848816, -0.020095825, 0.02041626, -0.02619934, 0.010444641, -0.008529663, -0.025161743, -0.053710938, -0.01966858, -0.055023193, 0.017242432, -0.04928589, 0.0289917, 0.0050582886, -0.005317688, -0.022827148, 0.031280518, -0.042755127, -0.011749268, -0.027801514, 0.019226074, -0.009963989, -0.012771606, 0.009857178, -0.030563354, -0.018478394, 0.0075187683, 0.03677368, -0.0345459, 0.014671326, -0.0064964294, 0.04034424, 0.015640259, 0.03164673, -6.4730644e-05, -0.011398315, 0.02609253, 0.011383057, 0.043945312, -0.08850098, 0.027114868, 0.064453125, -0.04852295, -0.046142578, -0.023040771, 0.04751587, 0.027130127, -0.0047836304, 0.010971069, -0.016143799, 0.039398193, -0.023498535, -0.06225586, -0.016235352, -0.0096206665, -0.03918457, -0.033721924, -0.024002075, -0.005809784, 0.08746338, 0.011474609, -0.023361206, -0.0038833618, -0.013679504, -0.022491455, 0.0129470825, -0.0078048706, 0.0035037994, 0.022338867, -1.8239021e-05, -0.021499634, -0.06732178, 0.0670166, 0.042938232, 0.013900757, -0.012702942, -0.004207611, -0.030227661, -0.0803833, -0.027999878, 0.014472961, 0.02999878, 0.03363037, -0.019088745, -0.032684326, 0.00040507317, -0.032226562, -0.045013428, -0.03463745, -0.017913818, 0.03262329, -0.01928711, 0.006298065, -0.013175964, -0.046020508, 0.03201294, -0.0119018555, -0.011192322, -0.05078125, -0.018112183, -0.01675415, -0.014701843, 0.025360107, -0.0423584, -0.0057792664, -0.039733887, 0.013214111, -0.028076172, 0.023330688, 0.022064209, 0.0051727295, 0.0022773743, 0.027999878, 0.00044178963, -0.012786865, -0.0016021729, 0.03942871, 0.033203125, -0.022354126, 0.025787354, 0.015930176, -0.0005173683, 0.016036987, -0.017700195, 0.028549194, -0.0079193115, 0.008972168, -0.009918213, 0.01158905, 0.009056091, -0.04196167, 0.076171875, -0.0029773712, -0.011039734, -0.046966553, 0.029464722, -0.019470215, -0.024536133, 0.00894165, -0.011802673, 0.044525146, -0.052947998, -0.012535095, 0.03100586, 0.0143585205, -0.01158905, 0.00039720535, 0.037963867, -0.01675415, -0.041778564, 0.037261963, -0.06616211, 0.019927979, 0.008224487, 0.009490967, -0.006072998, -0.010627747, -0.03213501, -0.056671143, 8.499622e-05, -0.020599365, -0.056915283, -0.023803711, -0.0061302185, 0.019805908, -0.018798828, -0.0046043396, -0.017349243, 0.009094238, -0.054138184, 0.002155304, -0.005886078, 0.026824951, 0.015281677, 0.03363037, -0.04107666, -0.033294678, -0.019592285, 0.015617371, 0.021194458, -0.008918762, -0.06414795, -0.026992798, 0.0018796921, 0.02078247, -0.0075798035, 0.026809692, 0.040771484, -0.03164673, -0.010284424, -0.06088257, 0.027297974, -0.043518066, -0.029449463, 0.02659607, -0.0023155212, 0.022018433, 0.01550293, 0.0031280518, -0.06341553, 0.04196167, 0.010635376, -0.077697754, -0.02658081, -0.03213501, -0.018432617, 0.0075569153, -0.01876831, -0.015823364, 0.012138367, -0.0135650635, -0.0019874573, -0.020629883, -0.0068244934, -0.013015747, -0.0038452148, -0.007865906, -0.032226562, 0.03781128, -0.04727173, 0.016021729, -0.006275177, -0.038238525, -0.016799927, 0.009284973, 0.010528564, 0.008720398, 0.0047073364, -0.007980347, 0.008300781, 0.010063171, -0.0024528503, -0.004837036, 0.011680603, 0.044799805, 0.0025978088, 0.012306213, -0.05630493, -0.014373779, -0.033294678, -0.014312744, 0.024749756, 0.036987305, -0.04498291, 0.022445679, 0.035339355, 0.027618408, 0.011398315, -0.028060913, 0.03555298, 0.01626587, -0.05178833, -0.012939453, 0.040283203, -0.008300781, 0.0053901672, -0.059509277, 0.020721436, -0.015586853, 0.0040664673, 0.0017957687, 0.009361267, 0.0115356445, -0.006286621, 0.017959595, 0.015853882, 0.016189575, 0.020446777, -0.019866943, -0.041290283, -0.0040359497, 0.0126571655, -0.010177612, 0.0158844, -0.010070801, 0.013801575, 0.030776978, -0.021270752, 0.034851074, -0.028457642, 0.013626099, 0.02935791, -0.06591797, 0.018707275, 0.009529114, -0.018508911, -0.0015382767, -0.017028809, 0.0020446777, -0.002670288, 0.027801514, 0.0090408325, 0.05154419, -0.01777649, 0.03466797, 0.00071048737, -0.024810791, 0.0037517548, -0.04550171, 0.08105469, -0.00032615662, -0.012687683, -0.011680603, -0.023651123, -0.045684814, 0.054107666, -0.03567505, -0.027511597, -0.021469116, 0.037322998, -0.011688232, 0.005630493, -0.057647705, -0.024642944, -0.002861023, -0.0060691833, -0.014228821, -0.06274414, -0.005054474, 0.043518066, -0.024353027, -0.046081543, 0.029510498, -0.10003662, 0.032104492, 0.022750854, 0.01725769, -0.04421997, -0.038513184, -0.009933472, -0.038879395, 0.009284973, -0.006904602, 0.0020809174, 0.03564453, -0.03189087, -0.011352539, -0.00831604, -0.042541504, 0.0015869141, -0.009170532, 0.0076179504, 0.0056114197, -0.030807495, -0.02154541, -0.030578613, 0.0121154785, 0.010772705, -0.0020961761, -0.05581665, -0.0155181885, -0.018096924, 0.02217102, -0.01828003, 0.01687622, -0.033233643, -0.01638794, 0.026275635, -0.01159668, 0.03164673, -0.04058838, -0.036865234, -0.009223938, -0.03250122, -0.04083252, 0.07128906, 0.0074920654, 0.0014543533, -0.018844604, 0.003396988, 0.030685425, -0.007083893, 0.016830444, 0.027770996, 0.013748169, -0.015579224, 0.055114746, -0.034179688, -0.014274597, -0.022460938, -0.0073547363, -0.037200928, 0.0038261414, -0.023590088, 0.023773193, 0.0335083, 0.008071899, 0.020385742, 0.031234741, 0.013298035, -0.007129669, 0.03363037, -0.052337646, -0.04284668, 0.05996704, 0.021652222, -0.02633667, -0.011123657, 0.024520874, 0.010810852, 0.007858276, 0.022827148, 0.015052795, -0.059753418, -0.010360718, -0.03945923, -0.003829956, -0.007019043, 0.02394104, -0.007926941, 0.0096588135, -0.030975342, -0.009811401, -0.0068092346, 0.008255005, 0.021087646, 0.008079529, 0.022628784, 0.011787415, -0.03793335, -0.024963379, -0.023086548, 0.0029392242, -0.052825928, -0.03930664, 0.0037345886, 0.006626129, 0.007621765, -0.058288574, 0.02218628, 0.011024475, -0.004623413, 0.02357483, -0.02897644, -0.026504517, 0.0076560974, -0.011940002, -0.0052719116, -0.05279541, 0.02659607, 0.03387451, -0.03414917, -0.03970337, -0.0063171387, -0.020355225, -0.022018433, -0.011634827, -0.08380127, -0.072021484, 0.044128418, 0.0574646, -0.025650024, -0.025909424, -0.01071167, 0.024429321, 0.008430481, 0.036346436, 0.014678955, 0.036071777, -0.02684021, 0.025421143, 0.009109497, 0.013969421, -0.029693604, -0.052642822, -0.02418518, 0.0019550323, 0.012512207, -0.009552002, 0.08520508, -0.06542969, 0.021316528, 0.0052490234, 0.002840042, -0.012184143, 0.03567505, 0.0418396, -0.020736694, 0.02784729]}, "B00OMYK83O": {"id": "B00OMYK83O", "original": "Brand: Camco\nName: Camco 40572 Black Heavy-Duty Double Propane Tank Cover\nDescription: \nFeatures: Removable top panel provides easy access to gas valves\nHeavy-duty polypropylene\nFor two 20 pounds propane tanks\nEasy to install and highly durable\nProtect your propane bottles from flying debris\n", "metadata": {"Name": "Camco 40572 Black Heavy-Duty Double Propane Tank Cover", "Brand": "Camco", "Description": "", "Features": "Removable top panel provides easy access to gas valves\nHeavy-duty polypropylene\nFor two 20 pounds propane tanks\nEasy to install and highly durable\nProtect your propane bottles from flying debris", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029678345, -0.027740479, -0.046447754, -0.03982544, -0.031173706, 0.0054397583, -0.04788208, 0.054473877, -0.018005371, -0.013694763, 0.020095825, 0.020126343, -0.07281494, -0.046203613, 0.0039749146, -0.022201538, 0.0070991516, 0.023040771, 0.0043678284, -0.036010742, 0.0036449432, -0.030075073, -0.0012197495, 0.016067505, 0.0022945404, -0.0041770935, 0.025146484, -0.0007491112, -0.0053710938, -0.012962341, 0.007419586, -0.003753662, 0.043273926, -0.0085372925, 9.2089176e-05, 0.05178833, 0.048706055, -0.026794434, -0.019104004, 0.035308838, -0.03479004, 0.027618408, 0.0713501, 0.018188477, 0.0178833, -0.045166016, 0.0025749207, -0.06994629, 0.036499023, 0.042633057, 0.009346008, 0.02809143, 0.0027275085, 0.0058784485, 0.0035476685, 0.042144775, 0.0072364807, 0.009353638, 0.02835083, 0.0072631836, -0.013908386, 0.020904541, 0.0043182373, -0.022567749, -0.031204224, 0.019012451, 0.06628418, -0.018676758, -0.029144287, -0.059692383, -0.0059013367, 0.007701874, 0.013397217, -0.021514893, -0.045074463, 0.0015306473, 0.0052223206, -0.01084137, 0.02796936, -0.027664185, 0.0064888, -0.015289307, 0.025024414, -0.014129639, -0.010093689, -0.0046310425, -0.014701843, -0.016616821, 0.011680603, 0.0033798218, 0.0044670105, 0.017990112, 0.0061302185, 0.037200928, -0.011131287, -0.011421204, -0.012413025, -0.026443481, 0.034179688, 0.016662598, -0.006046295, -0.027069092, 0.010597229, -0.01058197, 0.011878967, 0.009666443, -0.019241333, -0.052520752, 0.027282715, 0.016571045, -0.02670288, 0.030441284, 0.012496948, -0.04827881, 0.010818481, -0.012176514, -0.021118164, 0.053771973, 0.036315918, -0.018295288, -0.022705078, -0.01109314, -0.016998291, -0.0031967163, 0.011680603, -0.0034065247, -0.021255493, 0.042297363, -0.038635254, -0.0037708282, -0.012611389, 0.016906738, 0.027542114, 0.054656982, 0.023086548, 0.007194519, 0.0009675026, 0.010002136, -0.010131836, 0.0058631897, 0.019424438, -0.027832031, 0.007972717, 0.0067749023, -0.03591919, 0.052642822, 0.019836426, -0.023895264, -0.028884888, -0.04244995, -0.057037354, -0.039642334, 0.031677246, 0.0234375, -0.024047852, 0.031021118, 0.026473999, 0.0018568039, -0.0501709, -0.037017822, -0.021011353, -0.016403198, 7.945299e-05, 0.056274414, 0.028015137, 0.047027588, 0.035247803, -0.005329132, 0.016983032, 0.002626419, -0.011497498, 0.0075569153, -0.008598328, 0.03164673, 0.014122009, 0.017944336, -0.058258057, 0.079711914, 0.07397461, -0.096191406, -0.05203247, -0.06890869, 0.1508789, -0.025497437, -0.027359009, 8.940697e-05, 0.0065460205, -0.0028915405, 0.013214111, -0.022521973, 0.04159546, 0.03781128, -0.0048065186, -0.020950317, -0.014282227, -0.010787964, 0.028442383, 0.0178833, -0.011497498, -0.008460999, -0.06414795, -0.034606934, 0.003320694, 0.054138184, 0.045776367, -0.0496521, 0.020004272, -0.033721924, -0.039764404, 0.0025749207, 0.018844604, -0.00018060207, -0.0070152283, -0.056488037, -0.007637024, 0.017791748, -0.013534546, -0.0137786865, -0.007461548, 0.016723633, 0.017929077, 0.015296936, 0.010826111, 0.0287323, -0.009536743, 0.032684326, -0.037322998, 0.016067505, -0.012619019, 0.0059890747, 0.05569458, 0.0211792, 0.03878784, 0.03869629, -0.0052757263, 0.02355957, 0.03277588, -0.04473877, -0.010444641, 0.016235352, 0.013153076, -0.03137207, -0.0008125305, 0.06137085, -0.00793457, -0.014915466, 0.010116577, 0.017745972, -0.015388489, -0.012794495, 0.08618164, -0.045959473, 0.016601562, -0.011932373, -0.02859497, 0.021362305, -0.05496216, 0.024353027, 0.021362305, -0.011177063, -0.021697998, 0.047058105, 0.0960083, -0.017089844, 0.021224976, 0.011497498, 0.07122803, 0.05960083, 0.0015268326, -0.017929077, -0.010345459, 0.04876709, -0.0042266846, 0.036132812, 0.025939941, 0.03201294, -0.029312134, -0.018859863, -0.010810852, 0.027557373, 0.022491455, -0.008384705, -0.00983429, -0.011619568, 0.04675293, 0.0027828217, 0.009017944, 0.018218994, -0.079589844, -0.0021514893, 0.019897461, 0.035736084, -0.004005432, -0.02545166, 0.032104492, 0.025634766, 0.038604736, -0.023910522, 0.021118164, -0.001789093, 0.002090454, 0.04763794, -0.007003784, 0.010124207, 0.001953125, 0.03012085, 0.009521484, 0.0035800934, 0.023071289, -0.010604858, 0.010505676, 0.021713257, 0.0031337738, 0.027755737, 0.014877319, 0.0018939972, 0.024093628, 0.045806885, 0.068359375, 0.06591797, 0.0020313263, 0.05090332, -0.02217102, -0.004142761, 0.029876709, -0.002090454, -0.04147339, -0.003824234, -0.06744385, -0.015655518, 0.04309082, -0.062927246, -0.01979065, -0.00932312, 0.023071289, 0.011367798, 0.0034160614, 0.029937744, 0.0018997192, -0.034088135, 0.03387451, -0.053741455, 0.014762878, 0.06652832, 0.0005955696, -0.03466797, 0.014640808, 0.0074310303, -0.027801514, 0.008834839, 0.0076904297, -0.022384644, 0.00026011467, -0.043914795, -0.000323534, 0.029754639, -0.01965332, -0.032592773, 0.038146973, -0.06665039, 0.0025978088, -0.011405945, -0.0418396, -0.027709961, 0.057037354, -0.017089844, -0.050689697, -0.032684326, 0.017684937, 0.013198853, -0.034240723, 0.030227661, -0.068359375, -0.0113220215, 0.013641357, 0.007858276, -0.0146865845, -0.06903076, 0.00010365248, -0.02671814, -0.030441284, -0.014251709, -0.008201599, 0.02418518, 0.0051574707, 0.029830933, 0.029312134, 0.06640625, -0.03591919, -0.03918457, -0.020751953, 0.059692383, -0.024749756, -0.018920898, -0.0034179688, -0.004798889, -0.010375977, 0.02520752, -0.040771484, -0.0077781677, -0.07519531, 0.0056495667, 0.019683838, -0.062316895, -0.0066223145, -0.030700684, -0.074523926, -0.026275635, 0.015113831, 0.0053520203, 0.0034160614, -0.00023758411, -0.024047852, 0.013031006, -0.017318726, -0.021484375, -0.0059165955, -0.00541687, -0.02796936, 0.029693604, 0.031585693, -0.026382446, -0.01184845, 0.021224976, -0.02935791, 0.01348114, -0.008018494, 0.014091492, 0.024368286, 0.006969452, -0.018676758, -0.0029277802, -0.022537231, -0.039367676, -0.01600647, 0.013313293, -0.002418518, 0.028686523, -0.0061035156, 0.007610321, -0.012710571, -0.020965576, 0.018218994, 0.03189087, -0.01600647, 0.0128479, -0.027893066, -0.008071899, 0.024215698, -0.007659912, -0.005630493, -0.0017318726, -0.003440857, -0.0035820007, -0.04663086, 0.039093018, -0.0055351257, 0.044311523, 0.016220093, -0.02607727, -0.019866943, -0.043823242, 0.027709961, -0.0011339188, 0.00088214874, -0.053527832, 0.03567505, -0.0062828064, -0.011810303, -0.000813961, -0.022872925, 0.05105591, -0.00084352493, -0.0209198, -0.0033817291, -0.021469116, 0.024307251, -0.0060195923, 0.04473877, -0.019210815, -0.06524658, 0.01713562, -0.02029419, 0.05117798, 0.036956787, -0.0082473755, 0.07720947, 0.061340332, 0.00097227097, 0.032318115, 0.020767212, 0.009170532, 0.0149002075, 0.033203125, -0.014457703, -0.009353638, 0.0082473755, -0.012832642, -0.01676941, -0.03555298, -0.017318726, 0.00090408325, -0.010353088, 0.010269165, -0.01109314, 0.023162842, 0.029571533, -0.022506714, 0.009437561, 0.017562866, -0.040496826, -0.029541016, -0.0107040405, -0.0023708344, -0.008041382, 0.02848816, -0.005382538, 0.012077332, -0.00051641464, -0.027908325, -0.020843506, 0.0067977905, 0.0017280579, 0.025482178, -0.01133728, 0.0047187805, -0.019332886, 0.034179688, -0.0440979, -0.021759033, 0.023849487, 0.03668213, 0.012481689, -0.009292603, 0.014656067, 0.01687622, 0.025299072, -0.017562866, 0.00091171265, -0.034851074, 0.043701172, 0.051361084, -0.015823364, -0.04714966, -0.02217102, -0.03289795, -0.03277588, 0.0031375885, -0.048553467, -0.019927979, -0.0023155212, 0.014373779, -0.038269043, -0.06036377, -0.01838684, -0.008087158, 0.007774353, -0.0065078735, -0.0036354065, -0.02015686, 0.010719299, 0.06384277, -0.06750488, -0.032440186, -0.0574646, -0.0046463013, 0.026992798, 0.014663696, 0.040985107, -0.015419006, -0.010948181, -0.031021118, 0.028305054, 0.018676758, -0.028213501, -0.013397217, -0.018173218, 0.014884949, -0.010810852, 0.0022830963, 0.00024294853, 0.0018663406, -0.01965332, 0.019851685, -0.041046143, -0.018508911, 0.037902832, -0.04837036, -0.047973633, -0.023544312, 0.07849121, -0.0062065125, 0.0068969727, -0.04220581, 0.002981186, 0.009643555, -0.020812988, -0.03866577, -0.030761719, 0.00283432, -0.032104492, -0.034057617, -0.0033874512, -0.03250122, 0.033813477, -0.018875122, -0.037109375, -0.040924072, 0.015296936, 0.0680542, -0.0340271, -0.0040130615, -0.004650116, -0.014770508, 0.02432251, -0.011230469, -0.068359375, 0.07873535, 0.045196533, 0.0069351196, 0.03439331, -0.0028743744, 0.016983032, -0.033233643, -0.07312012, -0.009033203, 0.03048706, -0.007457733, -0.045837402, 0.00223732, -0.0019464493, 0.00035119057, -0.035125732, -0.02822876, -0.035980225, 0.064697266, -0.0289917, -0.042144775, -0.044830322, -0.008598328, 0.013694763, -0.028137207, 0.002910614, -0.0181427, -0.039123535, -0.04324341, -0.022766113, 0.025726318, -0.029403687, -0.00548172, 0.006084442, 0.032104492, -0.030822754, 0.07208252, 0.02444458, 0.067993164, -0.02684021, -0.010261536, 0.020187378, -0.024429321, -0.034240723, 0.017333984, 0.0046157837, 0.00983429, 0.07574463, 0.0103302, -0.016815186, 0.008514404, -0.017532349, 0.062347412, -0.03527832, -0.01586914, 0.04360962, 0.023483276, 0.024017334, -0.07458496, 0.08569336, -0.014511108, 0.0060310364, -0.07244873, 0.018310547, -0.04660034, -0.051940918, 0.01687622, -0.01713562, 0.031311035, -0.068847656, -0.0132751465, 0.0138549805, 0.02986145, -0.025482178, -0.0014657974, 0.025970459, -0.016067505, -0.03768921, 0.01436615, -0.04046631, 0.015167236, -0.0062789917, 0.0107040405, 0.016845703, -0.0029697418, -0.018875122, -0.043121338, -0.029724121, 0.0023040771, -0.009109497, -0.0067100525, 0.0032176971, 0.020629883, -0.020309448, -0.0418396, -0.04675293, -0.001750946, -0.05307007, 0.014526367, 0.013450623, 0.016952515, 0.01739502, 0.049438477, -0.054473877, -0.026550293, -0.005443573, -0.02961731, 0.00409317, -0.020187378, -0.053222656, -0.052642822, 0.021224976, 0.042541504, -0.01638794, -0.009048462, 0.029251099, -0.027709961, -0.022720337, -0.028320312, 0.020309448, -0.026947021, -0.051239014, 0.06137085, 0.07745361, -0.0035800934, 0.02243042, -0.010154724, -0.059387207, 0.02748108, -0.008636475, -0.1171875, -0.0016679764, -0.016921997, -0.008811951, 0.0069732666, 0.009742737, -0.01638794, 0.04208374, -0.007118225, -0.0016241074, -0.05255127, -0.0013217926, -0.015159607, -0.0053863525, 0.0058135986, -0.04244995, 0.00083589554, -0.036010742, -0.017562866, -0.05117798, -0.07330322, 0.0010089874, 0.012207031, 0.036743164, -0.013793945, 0.012878418, -0.0098724365, 0.0026226044, 0.027145386, 0.0037517548, -0.052490234, 0.018875122, 0.036712646, 0.014587402, 0.018676758, -0.015220642, -0.022979736, -0.007949829, 0.016281128, 0.02532959, 0.013153076, -0.059020996, -0.04824829, 0.036315918, 0.046203613, 0.0024261475, -0.048187256, -0.015045166, -0.0045280457, -0.018569946, -0.011856079, -0.0077590942, -0.02218628, 0.049224854, -0.027511597, -0.012313843, -0.009559631, -0.040740967, 0.005756378, -0.04953003, 0.05718994, -0.014457703, 0.0038967133, 0.013084412, 0.011756897, 0.00095176697, -0.018753052, -0.03781128, 0.010948181, -0.00932312, 0.01360321, -0.02154541, -0.05581665, 0.015899658, 0.022705078, -0.053985596, 0.06695557, -0.012260437, 0.0085372925, 0.006942749, -0.052124023, 0.029312134, 0.054473877, -0.0129852295, 0.040863037, -0.026412964, -0.0035877228, 0.002603531, 0.00047922134, 0.03277588, -0.028778076, 0.044433594, 0.030929565, -0.014213562, 0.0021686554, -0.0046157837, -0.024383545, 0.024963379, 0.012176514, -0.018722534, -0.024627686, -0.027160645, 0.05029297, 0.023986816, 0.0030899048, 0.046417236, -0.017105103, 0.0044898987, -0.0032234192, 0.010177612, -0.04260254, -0.052001953, -0.017486572, 0.01939392, -0.015640259, 0.005420685, -0.0038013458, -0.015449524, 0.02507019, -0.05029297, 0.055755615, -0.04574585, 0.08111572, 0.018859863, 0.016418457, -0.027557373, 0.0098724365, -0.010177612, 0.006427765, 0.01309967, 0.04663086, 0.013450623, 0.04638672, -0.014640808, -0.02671814, 0.018707275, -0.009605408, 0.0034122467, -0.07244873, 0.014183044, 0.029541016, 0.008590698, 0.00605011, -0.008010864, -0.018432617, -0.007434845, -0.00217247, -0.021591187, 0.0112838745, 0.011001587, 0.0071029663, -0.008972168, 0.005645752, 0.012710571, -0.022842407, -0.018829346, 0.0074882507, -0.019226074, -0.019165039, -0.039733887, -0.035461426, -0.017807007, -0.0546875, 0.0206604, -0.019042969, -0.031677246, -0.015586853, 0.026870728, -0.012779236, -0.03387451, -0.037384033, 0.027542114, 0.030548096, -0.00017106533, 0.02130127, -0.009422302, -0.056274414, -0.061279297, 0.032470703, -0.078186035, -0.026443481, -0.016998291, -0.0066452026, -0.018417358, -0.0073165894, 0.033966064, 0.076660156, 0.015838623, 0.0062942505, 0.06744385, -0.05444336, -0.02822876, 0.026489258, 0.02960205, -0.014099121, -0.026153564, 0.014457703, 0.01626587, -0.0031433105, 0.017532349, 0.0107040405, -0.053588867, 0.017211914, -0.014518738, 0.013435364, 0.011657715, -0.026260376, 0.05038452, 0.042999268, -0.024337769, 0.008834839, 0.015098572, -0.028930664, 0.032073975, -0.024429321, 0.038635254, -0.0146102905, -0.07800293, -0.06738281, -0.02909851, 0.013748169, 0.028762817, -0.043914795, 0.0061531067, 0.024597168, -0.02897644, -0.0014476776, 0.005405426, 0.019256592, -0.029724121, 0.0024318695, 0.011436462, -0.03488159, -0.005050659, -0.024673462, -0.03527832, -0.017669678, 0.0029029846, 0.051483154, -0.038909912, -0.036468506, -0.0077438354, 0.0012931824, -0.020462036, -0.04257202, -0.033477783, -0.020477295, 0.037872314, 0.020736694, 0.0026474, -0.0046463013, 0.044433594, 0.019454956, -0.0055770874, 0.028640747, 0.0012378693, 0.025146484, 0.004070282, 0.0023784637, -0.017333984, 0.078552246, -0.02015686, -0.12243652, -0.046875, 0.0110321045, 0.024963379, -0.0041503906, 0.05105591, 0.0019741058, 0.009048462, 0.024642944, -0.02720642, -0.006454468, -0.0075683594, 0.080200195, -0.015388489, 0.0047340393]}, "B07HCVSGFL": {"id": "B07HCVSGFL", "original": "Brand: GasOne\nName: GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC\nDescription: \nFeatures: \u2713 rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather\n\u2713 propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\n\u2713 Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\n\u2713 individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\n\u2713 high quality Regulator - the double burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "metadata": {"Name": "GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC", "Brand": "GasOne", "Description": "", "Features": "\u2713 rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather\n\u2713 propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\n\u2713 Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\n\u2713 individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\n\u2713 high quality Regulator - the double burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009864807, -0.018356323, 0.004573822, -0.039215088, -0.024139404, 0.010177612, -0.037963867, -0.0065994263, -0.03579712, -0.008972168, -0.030731201, 0.032165527, -0.007499695, -0.021484375, 0.060394287, -0.043701172, -0.0031833649, 0.056793213, 0.03086853, -0.02432251, 0.019805908, -0.028686523, -0.0049324036, 0.09899902, 0.013473511, 0.013534546, -0.006603241, -0.03717041, 0.028289795, -0.013755798, 0.021881104, 0.01537323, 0.03845215, -0.015571594, -0.028869629, -0.05532837, -0.055908203, -0.009208679, -0.05706787, 0.033081055, -0.0071487427, -0.0030326843, 0.024551392, 0.0032672882, 0.012199402, -0.031341553, 0.023773193, -0.0574646, -0.012519836, 0.023880005, -0.00944519, -0.020401001, 0.0048103333, -0.020370483, -0.0018796921, 0.0026073456, 0.006137848, -0.033935547, -0.0003926754, 0.0030460358, 0.0039787292, -0.0049552917, 0.028778076, 0.0077667236, -0.023971558, 0.02557373, 0.047576904, 0.0005683899, -0.0044784546, -0.052459717, -0.0357666, 0.02017212, 0.019012451, -0.039398193, -0.016998291, 0.016921997, -0.029846191, -0.047729492, 0.044921875, -0.028503418, 0.021652222, -0.027679443, 0.031707764, 0.013511658, -0.0064964294, 0.007347107, -0.0011329651, -0.019317627, -0.027618408, -0.021209717, -0.018325806, -0.033050537, -0.04824829, 0.041290283, -0.0048980713, 0.0057678223, -0.032073975, -0.05307007, 0.011199951, 0.014854431, 0.02357483, -0.040893555, 0.044158936, -0.0005745888, -0.0051727295, 0.062347412, 0.026977539, 0.018356323, -0.005344391, -0.006668091, -0.00919342, -0.01309967, -0.01008606, -0.056427002, 0.011177063, 0.031585693, 0.0014181137, 0.009651184, 0.027740479, -0.047058105, -0.018417358, -0.025482178, 0.03479004, -0.016906738, 0.026519775, 0.012771606, -0.043029785, 0.002450943, 0.007335663, 0.056365967, -0.021316528, -0.025894165, 0.018005371, 0.029129028, -0.011665344, -0.031066895, 0.03111267, -0.03010559, 0.025283813, -0.058685303, 0.010864258, 0.031234741, 0.035827637, -0.013931274, 0.0068473816, 0.013755798, 0.030136108, 0.0141067505, -0.02507019, -0.033447266, 0.02645874, -0.005924225, 0.024383545, 0.012786865, -0.023025513, 0.016479492, -9.447336e-05, -0.002948761, -0.015281677, -0.016494751, -0.03540039, -0.0050239563, 0.0357666, 0.010612488, -0.008598328, 0.033721924, -0.007118225, -0.008865356, 0.011672974, 0.039978027, -0.007801056, 0.03729248, -0.025482178, 0.008911133, 0.0010900497, -0.014633179, -0.031982422, 0.07489014, 0.04699707, -0.1081543, -0.064453125, -0.0803833, 0.11218262, -0.036987305, -0.009254456, 0.00092077255, -0.013473511, -0.01651001, 0.025390625, -0.00466156, 0.0014781952, 0.015808105, -0.011108398, -0.03793335, 0.021057129, 0.0079422, -0.039855957, 0.0007996559, -0.006023407, -0.0075187683, -0.03050232, 0.028366089, -0.027252197, 0.026123047, -0.017471313, 0.002588272, -0.0031166077, 0.0121536255, 0.04437256, 0.024780273, -0.022140503, 0.027801514, -0.0050315857, -0.04522705, -0.04333496, 0.024765015, 0.0013027191, -0.003993988, 0.016616821, -0.010894775, 0.059173584, -0.0056037903, 0.038085938, 0.05593872, 0.03778076, -0.038330078, -0.0069999695, -0.031555176, 0.007843018, -0.0021572113, -0.055023193, 0.026626587, 0.07244873, 0.06970215, 0.0011310577, 0.041656494, 0.10644531, 0.021133423, -0.01574707, -0.034698486, 0.007751465, -0.04135132, -0.013031006, 0.034423828, -0.044799805, -0.00566864, 0.03829956, 0.005924225, -0.035095215, 0.02835083, 0.046447754, 0.031463623, 0.00248909, -0.020355225, -0.013122559, 0.026184082, -0.046203613, 0.014472961, 0.000975132, -0.0030879974, -0.01675415, 0.016494751, 0.06665039, -0.024642944, 0.015060425, 0.04043579, 0.04647827, 0.037261963, -0.011894226, 0.020858765, 0.006465912, 0.0058784485, -0.006187439, -0.0032310486, -0.0042152405, -0.0010137558, -0.048553467, 0.03729248, -0.007411957, -0.007511139, 0.011405945, -0.015701294, -0.01499176, -0.013839722, 0.06506348, 0.018920898, 0.0027484894, 0.0006489754, 0.0018348694, 0.0023498535, 0.020385742, -0.014099121, -0.008621216, -0.0026874542, 0.012893677, -0.028884888, 0.059387207, -0.01234436, 0.025009155, -0.039978027, 0.022323608, 0.026367188, -0.061767578, 0.016540527, 0.0022964478, 0.011734009, 0.03643799, -0.005706787, 0.0013103485, -0.008155823, -0.0025424957, 0.012260437, 0.017791748, -0.041809082, 0.039093018, 0.02684021, -0.018035889, 0.027816772, 0.051361084, 0.076049805, -0.040161133, -0.0181427, -0.0087509155, -0.021774292, 0.018875122, 0.015960693, -0.011558533, 0.0053367615, -0.008049011, 0.01763916, 0.020233154, -0.022232056, -0.016921997, -0.048553467, 0.013374329, 0.010902405, -0.0013570786, 0.020248413, 0.007369995, -0.030654907, 0.023529053, -0.009689331, -0.0014009476, 0.018661499, -0.035705566, -0.046051025, 0.049224854, 0.004749298, -0.040252686, -0.01675415, 0.051635742, -0.039031982, 0.019714355, -0.03112793, 0.03137207, -0.047821045, -0.058044434, -0.037322998, -0.0368042, -0.09289551, 0.003753662, -0.016708374, -0.040130615, -0.02420044, 0.060394287, -0.018081665, -0.061187744, -0.024154663, -0.0027942657, 0.016036987, 0.028427124, 0.0054473877, -0.06616211, -0.012268066, -0.031707764, -0.012969971, 0.025665283, -0.018753052, -0.017730713, 0.005554199, 0.011375427, 0.03074646, -0.014915466, 0.005504608, 0.0006046295, 0.028839111, 0.021759033, 0.00340271, -0.0051002502, -0.010215759, -0.0070343018, -0.0008239746, -0.00016272068, -0.011650085, 0.023406982, -0.002500534, -0.01928711, 0.001958847, -0.03918457, -0.007167816, -0.06933594, 0.034057617, -0.0027313232, -0.0019426346, -0.016677856, -0.069885254, -0.010871887, -0.04852295, 0.0075187683, 0.0034503937, -0.008384705, -0.0036888123, -0.024154663, -0.011138916, -0.010734558, -0.009719849, 0.06304932, 0.0013484955, -0.0158844, -0.0287323, 0.05117798, -0.03793335, 0.04522705, 0.018432617, -0.04598999, 0.032714844, -0.015365601, 0.029251099, -0.003068924, 0.01084137, -0.00018203259, -0.011100769, -0.0035305023, 0.022445679, 0.01651001, 0.05041504, -0.00097465515, -0.056427002, 0.019424438, -0.0440979, -0.057250977, -0.000103235245, -0.001253128, -0.0039100647, -0.0140686035, -0.018585205, 0.00957489, -0.051879883, 0.024139404, -0.06652832, 0.03137207, 0.007144928, 0.04550171, 0.007949829, -0.007019043, 0.10015869, 0.019958496, 0.025283813, 0.0209198, -0.040496826, -0.01586914, -0.025650024, -0.009399414, -0.0074691772, -0.024490356, -0.011566162, 0.042755127, 0.017715454, -0.014526367, -0.004119873, -0.010826111, 0.03704834, -0.016738892, -0.025024414, 0.011749268, 0.0017986298, 0.033355713, 0.011116028, 6.812811e-05, -0.034576416, -0.03161621, -0.011054993, -0.015281677, 0.05807495, 0.057861328, -0.032958984, 0.07220459, 0.073791504, -0.023880005, 0.032806396, 0.013084412, -0.010108948, -0.010795593, 0.025634766, -0.044891357, 0.016052246, 0.0072288513, 0.002708435, 0.022827148, 0.0030727386, -0.028167725, 0.010414124, -0.03262329, -0.018753052, -0.022277832, -0.00021362305, -0.010238647, 0.015090942, -0.0037345886, -0.048095703, -0.0075798035, -0.013717651, -0.04360962, 0.011505127, -0.027954102, 0.00018751621, 0.003704071, 0.010437012, -0.009643555, -0.016906738, 0.00687027, 0.02444458, -0.0019550323, 0.020019531, -0.015274048, 0.004547119, -0.02330017, 0.015823364, -0.045654297, 0.026000977, 0.039764404, 0.029571533, 0.035491943, -0.021774292, -0.017120361, -0.016082764, -0.022109985, 0.04083252, -0.0027103424, -0.070373535, -0.020721436, 0.026168823, 0.019088745, -0.02909851, -0.0048179626, -0.045959473, 0.003967285, -0.0074157715, -0.082336426, -0.0066375732, -0.0029850006, 0.022460938, -0.033325195, -0.04940796, -0.03668213, 0.028808594, 0.011161804, -0.010383606, -0.02583313, 0.03225708, -0.015991211, 0.057495117, -0.06161499, 0.0012407303, -0.06921387, 0.0067443848, 0.031829834, 0.01600647, 0.03930664, -0.037841797, -0.020095825, -0.022201538, 0.051818848, 0.0054512024, -0.004787445, -0.0038394928, -0.018676758, -0.0016326904, 0.012138367, 0.028915405, -0.0048217773, 0.022857666, -0.020858765, -0.026947021, -0.09472656, 0.032470703, 0.036621094, -0.0055389404, -0.047088623, 0.002790451, 0.09136963, -4.684925e-05, 0.02507019, 0.0015792847, 0.02279663, -0.009239197, 0.020050049, -0.08728027, -0.046051025, -0.006362915, -0.04257202, 0.014587402, -0.004383087, -0.018936157, 0.016998291, 0.07928467, 0.0029850006, -0.026168823, -0.009521484, 0.021820068, -0.00982666, 0.010879517, -0.044281006, -0.008102417, -0.048797607, 0.030807495, -0.024017334, 0.024093628, 0.028259277, 0.025360107, 0.007858276, 0.014625549, 0.009735107, -0.054779053, -0.0020694733, -0.0026893616, -0.042785645, -0.052246094, -0.034698486, 0.029083252, -0.04107666, 0.007209778, 0.012588501, -0.03250122, 0.010688782, 0.010726929, 0.005874634, -0.02104187, -0.024490356, 0.01928711, 0.010505676, 0.022384644, -0.0054740906, -0.012672424, 0.023880005, -0.012168884, -0.011108398, 0.004337311, 0.0002399683, 0.040924072, -0.045013428, 0.013458252, -0.0335083, 0.015266418, 0.060333252, 0.04373169, -0.02130127, 0.0069847107, -0.0012292862, -0.06274414, -0.052246094, -0.023040771, 0.0385437, -0.034362793, 0.054595947, 0.023406982, -0.004119873, 0.025314331, 0.0012378693, 0.020065308, 0.002193451, -0.010856628, 0.019302368, 0.033935547, 0.019638062, -0.08123779, 0.045715332, -0.025497437, -0.054229736, -0.023284912, 0.017974854, 0.004470825, -0.038909912, 0.041168213, -0.038085938, 0.06109619, -0.010681152, -0.03765869, -0.004272461, 0.09387207, -0.022537231, -0.019317627, 0.02268982, -0.03579712, -0.0914917, -0.02848816, -0.04046631, -0.0096206665, -0.020202637, 0.020095825, 0.01512146, -0.007209778, 0.008758545, -0.023162842, -0.016403198, -0.00756073, -0.045684814, 0.004085541, 0.0045928955, 0.0076522827, -0.0012178421, 0.00033330917, 0.027832031, 0.009735107, -0.019317627, -0.041534424, -0.032196045, -0.011390686, -0.02973938, 0.042755127, 0.004131317, -0.037719727, 0.03111267, 0.023040771, 0.01524353, -0.002571106, -0.0090789795, 0.024261475, 0.0061531067, -0.002216339, -0.0362854, -0.004627228, 0.060638428, -0.061309814, -0.038024902, -0.05718994, 0.029251099, 0.00356102, -0.0051116943, 0.06896973, 0.030883789, 0.0008301735, 0.039398193, 0.0038490295, -0.029510498, 0.005680084, 0.0067863464, -0.085510254, -0.033172607, -0.026306152, -0.0002503395, -0.036834717, -0.037963867, -0.0110321045, 0.04333496, 0.013305664, -0.0020942688, -0.05303955, -0.04232788, 0.022903442, -0.0038146973, 0.013130188, -0.019729614, -0.013412476, -0.035949707, -0.022033691, -0.037139893, -0.030654907, 0.020462036, 0.010414124, 0.01474762, 0.012321472, -0.00086069107, -0.020385742, -0.00868988, 0.020111084, 0.005332947, -0.02670288, 0.008956909, 0.013420105, 0.0019950867, 0.03289795, 0.014007568, -0.0069885254, -0.021240234, 0.030563354, 0.0048179626, 0.038970947, -0.04724121, -0.019012451, 0.018447876, 0.04309082, 0.0004234314, 0.013328552, 0.02532959, -0.021560669, -0.044403076, -0.0028457642, -0.002696991, -0.046051025, 0.01612854, -0.045410156, -0.06225586, -0.03982544, -0.042144775, 0.018371582, -0.066589355, 0.018096924, -0.019424438, 0.007534027, 0.0013694763, -0.026870728, 0.021820068, -0.017684937, 0.028762817, -0.022506714, 0.0015659332, 0.017227173, -0.03866577, -0.07305908, 0.022155762, 0.044311523, -0.0061683655, -0.0018043518, -0.032714844, 0.0056533813, 0.041381836, -0.07922363, 0.0035896301, 0.0061035156, -0.019058228, -0.014122009, -0.061950684, -0.058135986, -0.019241333, 0.040771484, 0.011390686, 0.039520264, -0.00050354004, 0.03265381, -0.023498535, -0.019577026, -0.012886047, -0.025314331, -0.0024414062, -0.013008118, -0.02909851, 0.012748718, -0.008102417, 0.03375244, 0.04562378, 0.00919342, 0.017364502, 0.0041046143, 0.016326904, -0.02368164, -0.042663574, -0.03933716, -0.072265625, 0.02218628, 0.05343628, -0.039367676, 0.0206604, 0.0061950684, 0.002286911, -0.023406982, -0.027496338, 0.01687622, -0.03302002, -0.0012874603, 0.009788513, 0.019683838, 0.002357483, -0.023071289, -0.02619934, -0.0031261444, 0.011749268, -0.0131073, 0.013885498, 0.038879395, -0.019439697, -0.0005745888, 0.013290405, -0.057403564, 0.01802063, 0.0082473755, 0.00447464, 0.045715332, -0.03503418, -0.013214111, -0.022644043, -0.011550903, -0.013580322, 0.007972717, -0.03048706, 0.072631836, -0.00068950653, 0.014984131, -0.010826111, -0.0004968643, -0.0231781, -0.017837524, 0.040893555, -0.009780884, -0.009338379, -0.02407837, -0.029525757, -0.030975342, -0.0014038086, -0.05014038, 0.017211914, -0.0032615662, -0.025878906, -0.020202637, 1.6748905e-05, 0.03265381, -0.05633545, 0.007820129, -0.02015686, 0.026535034, 0.005340576, 0.047790527, -0.04232788, -0.060760498, -0.016052246, 0.04421997, -0.08679199, -0.06274414, 0.021850586, -0.015129089, -0.009918213, 0.009033203, 0.037231445, 0.097717285, 0.04244995, 0.0030097961, 0.031463623, -0.06097412, -0.011268616, -0.0013122559, 0.014694214, -0.025283813, -0.04257202, 0.023757935, 0.024383545, 0.016983032, -0.00447464, 0.055664062, -0.09527588, 0.02130127, -0.034973145, 0.015235901, 0.021453857, -0.03527832, 0.061676025, 0.01600647, -0.04031372, 0.050567627, 0.022888184, 0.029418945, 0.014533997, 0.033172607, 0.06524658, 0.013259888, -0.042419434, -0.048065186, -0.029205322, 0.013908386, 0.017791748, -0.05307007, -0.011817932, -0.009246826, -0.009483337, -0.014976501, 0.021850586, 0.00920105, 0.005104065, 0.008361816, 0.008903503, -0.010902405, -0.0135269165, 0.01838684, -0.005378723, -0.04360962, 0.039978027, -0.002325058, -0.014694214, -0.012634277, -0.0050354004, -0.017578125, -0.012710571, 0.025100708, -0.031173706, -0.037719727, 0.035339355, 0.038269043, 0.004924774, 0.03010559, 0.01789856, 0.009864807, -0.034210205, -0.0061683655, 0.033691406, -0.015914917, -0.047454834, 0.030410767, 0.012794495, 0.04937744, -0.042938232, -0.08618164, -0.0670166, 0.038604736, 0.029083252, -0.0070991516, 0.065979004, -0.00049877167, 0.014595032, 0.04751587, -0.043426514, -0.031463623, -0.00077724457, 0.023757935, 0.005657196, 0.006290436]}, "B07F5233N1": {"id": "B07F5233N1", "original": "Brand: ICON\nName: ICON 12867 Deluxe Propane Tank Cover , Black\nDescription: \nFeatures: Improves the look & value of the RV\nPart number: 12867\nFit type: Universal Fit\nPackage Weight: 10.0 pounds\n", "metadata": {"Name": "ICON 12867 Deluxe Propane Tank Cover , Black", "Brand": "ICON", "Description": "", "Features": "Improves the look & value of the RV\nPart number: 12867\nFit type: Universal Fit\nPackage Weight: 10.0 pounds", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.002023697, -0.015411377, -0.030731201, -0.015853882, -0.02015686, -0.0033016205, -0.003074646, 0.027908325, -0.042999268, -0.020950317, -0.012489319, 0.040649414, -0.10656738, -0.03567505, 0.014633179, -0.06323242, 0.03515625, -0.010902405, -0.00605011, -0.015853882, -0.028045654, 0.012863159, -0.006385803, 0.04562378, 0.0034694672, -0.01449585, 0.058685303, 0.0048294067, -0.023956299, -0.04269409, 0.011375427, 0.035614014, 0.005558014, 0.013366699, 0.041412354, 0.067871094, 0.054138184, 0.0029640198, 0.036468506, 0.0076293945, -0.006374359, 0.020950317, 0.072387695, 0.01411438, 0.007446289, -0.0047798157, -0.0005002022, -0.029205322, 0.031677246, -0.0004274845, -0.013198853, 0.031921387, -0.012825012, -0.008544922, -0.008338928, 0.03378296, -0.014831543, 0.04034424, 0.01235199, 0.0014400482, -0.017822266, 0.03189087, 0.017471313, -0.009033203, -0.00793457, -0.021759033, 0.06335449, 0.010757446, 0.03439331, -0.0012636185, 0.004173279, 0.05026245, 0.027374268, 0.004798889, -0.054626465, -0.0289917, 0.008895874, -0.041809082, 0.03591919, -0.017150879, -0.0023422241, -0.016220093, 0.031921387, 0.012489319, -0.021972656, 0.015403748, -0.023269653, -0.009170532, 0.006095886, -0.027954102, -0.0075950623, 0.02067566, -0.020858765, 0.036987305, -0.005744934, -0.01184082, -0.040893555, -0.019897461, 0.02154541, 0.038146973, 0.00041770935, -0.037994385, 0.04260254, -0.03616333, 0.008377075, 0.016448975, -0.0038051605, 0.035003662, 0.057037354, 0.01209259, -0.013183594, 0.05154419, 0.0053749084, 0.015914917, -0.030822754, -0.02178955, -0.059783936, 0.050933838, 0.0053596497, 0.046295166, -0.008972168, -0.0070343018, 0.044769287, -0.031799316, -0.0072402954, -0.011985779, -0.029067993, -0.0066947937, -0.043762207, 0.025985718, -0.02217102, 0.0075149536, 0.0073890686, 0.029220581, 0.00047802925, -0.015029907, 0.02609253, 0.0017585754, -0.025543213, 0.0138168335, -0.009628296, 0.0028877258, 0.026351929, -0.0256958, -0.04510498, 0.05886841, 0.026687622, -0.022506714, -0.025817871, -0.08514404, -0.0121536255, -0.01675415, 0.039978027, 0.027664185, -0.006385803, 0.02458191, 0.030578613, -0.014350891, -0.06048584, -0.034179688, -0.003774643, -0.036315918, -0.05117798, 0.044525146, 0.0017719269, 0.06311035, 0.06616211, 0.009216309, 0.015541077, 0.050323486, -0.024291992, -0.015548706, 0.0022773743, 0.0055503845, -0.021759033, 0.011306763, -0.0118637085, 0.053649902, 0.051696777, -0.07989502, -0.058502197, -0.057678223, 0.12371826, -0.03857422, -0.017807007, -0.03074646, 0.015396118, -0.013160706, 0.012458801, -0.0068588257, 0.036712646, 0.024154663, -0.018676758, -0.008415222, -0.00060749054, -0.016738892, -0.00052165985, 0.01474762, -0.008033752, -0.018920898, 0.005012512, -0.02331543, 0.05038452, -0.015945435, -0.00075387955, -0.010734558, -0.007217407, 0.0036792755, -0.06088257, 0.007545471, 0.04574585, 0.0011100769, -0.021377563, -0.038879395, 0.013061523, 0.0018520355, -0.03793335, -0.02029419, -0.011161804, -0.009742737, 0.026519775, 0.0010347366, 0.026184082, 0.037506104, -0.02658081, 0.012870789, -0.013221741, 0.010520935, 0.024795532, 0.0047073364, 0.08129883, -0.011734009, 0.040222168, -0.002029419, -0.040252686, 0.007183075, 0.013725281, -0.009216309, -0.012573242, 0.029144287, 0.023742676, -0.022491455, 0.005947113, 0.04949951, -0.00680542, -0.024917603, 0.015281677, 0.020080566, -0.016342163, 0.0096588135, 0.08654785, -0.0002670288, -0.016555786, 0.029449463, -0.008972168, -0.007987976, -0.02909851, -0.032836914, 0.0034008026, 0.041534424, -0.014770508, 0.06982422, 0.05407715, 0.007156372, -0.016967773, 0.032287598, 0.045196533, 0.06604004, -0.0032615662, -0.01626587, 0.0053138733, 0.068725586, -0.014099121, -0.036193848, 0.0016431808, 0.017410278, -0.059173584, 0.039886475, 0.021820068, -0.017852783, 0.011383057, 0.010055542, -0.004928589, -0.0053482056, 0.0052871704, -0.01977539, 0.010192871, 0.031188965, -0.053619385, 0.0062179565, 0.007259369, 0.041015625, 0.0012187958, -0.0052871704, 0.020019531, 0.015914917, 0.019439697, -0.014709473, 0.031677246, -0.03036499, -0.034729004, 0.036743164, -0.013046265, 0.011352539, -0.0012464523, -0.005569458, -0.027572632, 0.025100708, 0.013801575, -0.03729248, 0.009132385, 0.032989502, -0.004058838, -0.012023926, 0.013008118, 0.0018424988, 0.0044174194, 0.015426636, 0.019134521, 0.025268555, 0.026306152, 0.021636963, -0.007972717, -0.019805908, 0.025726318, -0.012565613, -0.042541504, -0.013069153, -0.055664062, 0.008392334, -0.0027980804, -0.029953003, 0.02067566, 0.041107178, -0.010192871, -0.012382507, 0.020309448, 0.003332138, 0.0079574585, -0.02078247, 0.044189453, -0.018478394, 0.0046157837, 0.03805542, -0.013389587, 0.01576233, 0.021972656, 0.016540527, -0.013069153, 0.021865845, -0.021072388, -0.035186768, -0.02519226, -0.04458618, -0.006668091, 0.020858765, 0.008598328, -0.03564453, 0.022537231, -0.06335449, -0.02444458, -0.02331543, -0.059692383, 0.011627197, 0.04937744, 0.0028381348, -0.023086548, -0.014511108, -0.011627197, 0.02709961, -0.039886475, 0.0209198, -0.02458191, -0.04058838, -0.031204224, 0.026275635, 0.032196045, -0.054016113, 0.036895752, 0.010765076, -0.03125, 0.012504578, -0.016174316, 0.05029297, 0.02394104, 0.048706055, 0.06854248, 0.05429077, -0.0049438477, -0.03387451, -0.021514893, 0.031799316, -0.01309967, -0.015853882, -0.03164673, -0.03062439, 0.023986816, 0.019805908, -0.039916992, -0.0068511963, -0.061187744, 0.026748657, 0.010429382, -0.036346436, -0.0048446655, -0.027130127, -0.03604126, -0.035461426, 0.02178955, 0.033813477, -0.0124435425, 0.025466919, -0.027633667, 0.035980225, -0.019744873, -0.0018854141, 0.013023376, 0.0004310608, -0.06518555, 0.020446777, 0.05404663, -0.022369385, 0.022476196, 0.02520752, -0.03643799, -0.0031013489, -0.011711121, 0.020217896, -0.00932312, 0.018310547, -0.017227173, -0.014312744, -0.016647339, -0.056365967, -0.08001709, -0.03363037, 0.026412964, 0.053222656, 0.04916382, -0.008918762, -0.016677856, -0.024841309, 0.03010559, 0.02746582, 0.010482788, 0.013847351, -0.028442383, -0.020355225, 0.01473999, 0.041534424, -0.013496399, -0.0019292831, -0.0048446655, 0.00894928, -0.0546875, 0.03652954, -0.022949219, 0.027069092, 0.014472961, -0.016555786, -0.033447266, -0.030151367, 0.033813477, -0.024841309, 0.00019490719, -0.034179688, 0.057006836, 0.01058197, -0.010528564, 0.0077819824, -0.002521515, 0.008674622, -0.037322998, -0.01625061, -0.02633667, -0.007858276, 0.045776367, -0.016662598, 0.090026855, -0.012374878, -0.068115234, 0.02067566, -0.01474762, 0.02557373, -0.0011854172, -0.0018806458, 0.06359863, 0.04333496, -0.0056610107, 0.034240723, 0.050598145, -0.027008057, 0.021438599, 0.031433105, -0.026031494, -0.008514404, -0.0059776306, 0.018981934, -0.022033691, -0.048583984, -0.011482239, -0.025238037, -0.02670288, 0.031585693, -0.04547119, -0.018203735, 0.039886475, -0.02116394, 0.037384033, 0.020828247, -0.0104599, -0.010551453, -0.00573349, 0.0390625, -0.032073975, -0.037628174, -0.00068616867, -0.00080919266, -0.046722412, 0.011909485, -0.022140503, -0.016326904, 0.021652222, 0.02545166, -0.016357422, 0.0057907104, -0.003435135, 0.025985718, -0.0063285828, 0.032318115, 0.025466919, 0.028503418, 0.02468872, -0.034484863, 0.005382538, -0.03778076, 0.0028743744, -0.0074272156, -0.041900635, -0.07714844, 0.018371582, 0.0947876, 0.012382507, -0.041259766, -0.01134491, -0.02154541, -0.03967285, -0.017745972, 0.014953613, -0.04360962, -0.012908936, 0.006072998, -0.0552063, -0.028335571, -0.039764404, -0.0059051514, -0.026794434, 0.025604248, -0.007663727, -0.015640259, -0.014678955, 0.036254883, -0.043395996, -0.002960205, -0.044891357, 0.020599365, -0.019058228, -0.019638062, 0.08807373, -0.04425049, -0.009346008, -0.051879883, 0.08514404, 0.05130005, 0.009803772, -0.01675415, -0.007457733, 0.019210815, 0.0045051575, 0.010803223, -0.034179688, 0.025527954, 0.007926941, 0.06512451, -0.03375244, -0.05731201, 0.046722412, -0.07208252, -0.038391113, -0.022247314, 0.09057617, -0.019943237, -0.016525269, -0.008857727, 0.039154053, 0.018203735, 0.033599854, -0.05987549, -0.017501831, 0.0060691833, -0.043914795, -0.02746582, -0.016921997, -0.02961731, 0.08227539, -0.015670776, -0.013793945, -0.04220581, 0.0053901672, 0.038360596, -0.032928467, 0.032806396, -0.036956787, -0.029266357, -0.011360168, 0.016403198, -0.092163086, 0.08996582, 0.032562256, 0.034210205, 0.008903503, -0.014732361, 0.0143966675, -0.062164307, -0.07696533, 0.030929565, 0.018844604, -0.019195557, -0.04373169, 0.014968872, 0.005268097, -0.010276794, 0.008331299, -0.0602417, -0.0015573502, 0.074645996, 0.00081014633, -0.047546387, -0.021972656, 0.06112671, 0.013595581, -0.031280518, -0.035095215, -0.03366089, -0.006416321, -0.042175293, -0.025161743, 0.023406982, -0.020843506, -0.010368347, 0.0028190613, 0.020599365, -0.027359009, 0.03918457, 0.023986816, 0.032104492, 0.00042200089, 0.007068634, 0.009086609, -0.0023460388, 0.0039100647, 0.03805542, -0.017730713, 0.012954712, 0.026992798, 0.016174316, 0.001124382, 0.015274048, -0.016326904, 0.021972656, -0.02255249, -0.007820129, 0.04336548, 0.018081665, 0.00554657, -0.049926758, 0.042938232, -0.02659607, -0.014930725, -0.036376953, 0.009674072, -0.03262329, 0.030944824, -0.054016113, 0.010543823, 0.032714844, -0.030075073, -0.0007715225, 0.031951904, 0.025314331, 0.014183044, 0.0137786865, 0.025009155, -0.034210205, -0.026016235, 0.030899048, -0.017700195, 0.006752014, -0.009651184, -0.020690918, 0.005897522, 0.014328003, 0.0048675537, 0.009483337, -0.024597168, -0.007068634, -0.018096924, 0.0041503906, 0.0126953125, 0.008255005, -0.0045700073, -0.023590088, -0.016571045, 0.0070114136, -0.10107422, -0.0068244934, 0.012123108, 0.03717041, 0.022918701, 0.074279785, -0.055114746, -0.039520264, -0.031677246, -0.023605347, -0.006164551, -0.023025513, -0.053985596, -0.030273438, 0.038391113, 0.06951904, -0.0023460388, 0.035980225, 0.054534912, -0.042541504, -0.0063476562, -0.070129395, 0.03894043, -0.038909912, -0.047546387, 0.025527954, 0.056427002, 0.0064315796, 0.014579773, -0.015586853, -0.043945312, 0.045837402, 0.0010976791, -0.07495117, -0.00223732, -0.02519226, -0.01940918, 0.026641846, 0.0018386841, -0.028823853, 0.0368042, 0.006290436, 0.0118637085, -0.04815674, -0.0184021, -0.0075149536, -0.007774353, 0.020751953, -0.0032463074, 0.026046753, -0.037750244, 0.054870605, -0.08129883, -0.09753418, -0.013931274, 0.022354126, 0.036743164, -0.008979797, 0.008895874, 0.0022525787, -0.009750366, 0.044830322, 0.017684937, -0.020629883, 0.0071983337, -0.011016846, -0.029541016, 0.04559326, 0.0003182888, 0.0071487427, -0.007572174, -0.004310608, 0.045959473, 0.008178711, -0.04852295, -0.03186035, 0.057373047, 0.04095459, -0.007873535, 0.0036201477, 0.024490356, 0.016647339, -0.018051147, -0.00843811, 0.01007843, -0.030151367, 0.016693115, -0.06173706, 0.06921387, 0.038208008, 0.0063934326, 0.005264282, -0.011459351, 0.08355713, -0.020614624, -0.005493164, 0.0041236877, 0.0004606247, -0.0002092123, -0.0079956055, -0.04046631, -0.00026106834, 0.0184021, 0.032836914, -0.021148682, -0.024734497, -0.006839752, 0.008598328, -0.034118652, 0.069885254, -0.034423828, 0.018432617, -0.0030460358, -0.029846191, 0.01876831, 0.034362793, -0.012619019, 0.010292053, -0.031311035, 0.0077056885, 0.019561768, -0.0068893433, -0.016082764, 0.0098724365, 0.017303467, -9.7095966e-05, -0.036743164, 0.030288696, -0.05126953, -0.055603027, 0.055023193, 0.019607544, -0.01374054, -0.009147644, -0.02986145, 0.027252197, 0.021957397, -0.021636963, 0.039978027, -0.04119873, 0.0056991577, -0.007419586, 0.031036377, -0.02798462, -0.016113281, 0.023788452, 0.0025844574, -0.008865356, -0.015197754, -0.0037937164, 0.0071983337, 0.018753052, -0.015960693, 0.019973755, -0.019607544, 0.033325195, 0.0181427, 0.010253906, -0.050964355, -0.024261475, -0.016723633, -0.001490593, 0.005088806, 0.06738281, -0.008178711, 0.03363037, 0.04095459, 0.014770508, 0.0362854, -0.012176514, 0.008224487, -0.0012130737, 0.015220642, 0.014083862, 0.01940918, -0.0124053955, 0.012390137, -0.011665344, -0.012199402, 0.019821167, -0.039031982, 0.019363403, 0.013313293, 0.0071487427, -0.01133728, -0.0033988953, 0.0041046143, -0.017089844, 0.0070114136, -0.005996704, -0.024642944, -0.0056648254, -0.019226074, -0.051605225, -0.040802002, -0.067993164, 0.015335083, -0.066711426, -0.033599854, -0.00070524216, 0.013763428, -0.015716553, -0.029663086, -0.021087646, 0.018966675, 0.0045204163, -0.020385742, 0.011268616, -0.011833191, -0.017745972, -0.060913086, 0.018218994, -0.0725708, -0.026260376, -0.031921387, 0.008071899, -0.009689331, -0.005760193, 0.03564453, 0.041015625, 0.024856567, 0.0068969727, 0.052001953, -0.03604126, -0.017440796, 0.04208374, 0.026870728, -0.03262329, -0.045654297, -0.0041656494, -0.014007568, -0.008956909, 0.01965332, -0.033355713, -0.032348633, -0.00793457, -0.00920105, -0.010803223, 0.008529663, -0.010612488, 0.00881958, 0.008514404, -0.05255127, -0.035827637, -0.01953125, 0.026153564, 0.0034446716, -0.0423584, 0.055999756, 0.026275635, -0.026657104, -0.04586792, -0.028625488, -0.032287598, 0.032989502, -0.056396484, 0.013832092, 0.014457703, -0.03375244, -0.010047913, 0.005859375, 0.036865234, -0.003982544, 0.012992859, -0.018035889, -0.0034332275, -0.0063171387, 0.0357666, 0.0004925728, -0.012046814, 0.0055770874, 0.027236938, -0.013572693, -0.009712219, -0.00121212, -0.0048294067, -0.0019264221, 0.018615723, -0.06390381, -0.005607605, 0.019226074, 0.03012085, -0.019683838, -0.030471802, 0.0042152405, 0.050567627, -0.0005879402, 0.027877808, -0.03125, 0.011756897, 0.013977051, 0.04916382, -0.0017986298, 0.09100342, -0.023712158, -0.06524658, -0.041503906, 0.021560669, 0.006542206, -0.009063721, 0.066833496, -0.034606934, 0.016937256, 0.035125732, 0.0019359589, -0.021102905, 0.005935669, 0.04135132, 0.0076446533, 0.00046110153]}, "B003UHVVV2": {"id": "B003UHVVV2", "original": "Brand: Flame King\nName: Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "metadata": {"Name": "Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant", "Brand": "Flame King", "Description": "", "Features": "Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.016860962, 0.015335083, -0.039611816, -0.04196167, 0.014266968, -0.024765015, -0.02355957, 0.0011167526, -0.06585693, 0.011192322, -0.017944336, 0.049316406, -0.025619507, -0.017807007, 0.038726807, -0.036499023, 0.036102295, -0.013122559, 0.02822876, -0.015052795, 0.016967773, 0.0075149536, 0.009788513, 0.09082031, 0.035461426, -0.03048706, 0.020950317, 0.021774292, 0.025238037, 0.016952515, 0.021194458, -0.0256958, 0.062286377, -0.023391724, -0.036987305, -0.008117676, -0.03488159, -0.007385254, -0.050842285, 0.0014257431, -0.011932373, 0.013427734, 0.025863647, -0.05126953, -0.00036406517, -0.016555786, -0.011955261, -0.039886475, 0.0057144165, 0.0064048767, 0.020263672, 0.016693115, 0.023284912, 0.01725769, -0.0028762817, 0.043914795, 0.03326416, -0.046081543, 0.011489868, -0.023666382, 0.009124756, 0.03555298, 0.036315918, 0.03491211, -0.059783936, 0.013015747, 0.07873535, -0.046020508, 0.034698486, -0.03503418, -0.0105896, 0.03829956, 0.017364502, 0.041748047, -0.040039062, -0.030960083, 0.025619507, 0.022842407, 0.024597168, 0.011459351, 0.022949219, -0.0047912598, 0.03024292, 0.0012187958, -0.018478394, 0.01374054, -0.01424408, -0.016098022, 0.0004351139, -0.026550293, -0.0023841858, 0.023254395, 0.014640808, -0.01725769, -0.04147339, -0.035461426, -0.049072266, -0.076049805, 0.049316406, 0.03527832, 0.023101807, -0.04196167, 0.046203613, -0.011428833, 0.021209717, 0.09552002, -0.0090408325, -0.03100586, 0.00598526, -0.015197754, 0.02166748, -0.032165527, 0.025741577, -0.028533936, -0.0011053085, 0.032440186, 0.018981934, 0.022842407, 0.021392822, 0.025970459, 0.013786316, 0.016418457, -0.0031738281, -0.020050049, 0.012184143, -0.009651184, -0.036468506, -0.009971619, -0.012802124, 0.022354126, -0.017974854, -0.014190674, 0.004837036, 0.06817627, 0.020950317, -0.010604858, -0.018844604, -0.01083374, 0.014320374, -0.026245117, -0.010574341, 0.007610321, 0.040527344, -0.0021400452, -0.047454834, 0.048797607, 0.005771637, -0.016113281, -0.004863739, -0.04006958, -0.041748047, -0.052703857, 0.016067505, -0.0041618347, -0.0019626617, -0.03427124, -0.010345459, -0.0129470825, 0.014427185, -0.031234741, 0.017654419, -0.032348633, -0.058532715, -0.011161804, -0.031280518, 0.034362793, 0.022277832, 0.010009766, 0.018676758, 0.05239868, 0.009902954, 0.02658081, -0.00674057, 0.01826477, 0.0023765564, -0.020095825, 0.024536133, 0.107666016, 0.061523438, -0.13537598, -0.07385254, -0.076416016, 0.17993164, -0.07458496, 0.006515503, -0.04397583, 0.018157959, -0.060943604, -0.0018901825, 0.0051727295, 0.042938232, 0.04550171, -0.006164551, -0.04586792, -0.029800415, -0.0037784576, -0.013076782, 0.009750366, -0.020339966, 0.019821167, 0.041229248, -0.0052108765, 0.019515991, 0.013633728, 0.03778076, -0.031311035, 0.017959595, -0.012298584, 0.05053711, 0.059936523, -0.0072135925, -0.016647339, 0.00072574615, 0.0005259514, -0.014518738, -0.009651184, -0.04486084, -0.0018615723, 0.013771057, -0.011245728, 0.03656006, -0.0021247864, 0.021820068, 0.0012836456, -0.015205383, -0.014183044, -0.016952515, 0.009468079, 0.013679504, -0.0041770935, 0.060455322, 0.023117065, 0.0814209, 0.06451416, -0.024383545, 0.018295288, 0.03378296, -0.006969452, -0.024002075, 0.029449463, 0.008079529, -0.015090942, -0.01436615, 0.059753418, -0.0385437, -0.05819702, -0.00012660027, 0.045776367, 0.004760742, 0.013969421, 0.04699707, -0.022125244, 0.01007843, -0.008140564, -0.0032196045, 0.011985779, 0.0035705566, 0.026412964, -0.050933838, 0.030090332, -0.020507812, 0.019927979, 0.018478394, 0.0035190582, 0.0960083, -0.038513184, 0.06112671, 0.01940918, -0.021759033, -0.0047302246, 0.01889038, -0.0018367767, -0.0004518032, 0.016357422, -0.023651123, -0.0041923523, -0.018112183, 0.023269653, -0.028411865, -0.021636963, -0.015975952, -0.053253174, 0.053588867, 0.013580322, 0.04751587, 0.034240723, 0.06958008, -0.010910034, -0.03552246, -0.022354126, -0.003271103, 0.035339355, -0.004070282, -0.008911133, 0.025268555, 0.005783081, 0.027435303, -0.021484375, 0.026535034, -0.036071777, 0.037719727, 0.05114746, -0.03768921, 0.03616333, -0.019088745, -0.027908325, -0.03314209, 0.03363037, 0.0007081032, -0.055541992, -0.0036029816, 0.03302002, 0.022216797, 0.010238647, 0.02104187, 0.010757446, 0.0024261475, 0.03781128, 0.048736572, 0.060028076, -0.027297974, 0.00983429, 0.017349243, 0.021591187, 0.02407837, -0.03237915, 0.019515991, 0.015487671, -0.01499939, -0.008308411, 0.0031108856, -0.0002373457, 0.0053901672, 0.009735107, 0.009613037, -0.005382538, -0.017349243, 0.030914307, -0.03173828, -0.070495605, -0.045318604, -0.0018110275, 0.013839722, -0.0121536255, -0.030456543, -0.035217285, 0.06530762, -0.006286621, -0.027236938, 0.028503418, 0.0016736984, 0.0023479462, 0.0029582977, -0.0068740845, 0.013679504, -0.026504517, -0.036499023, -0.01259613, -0.0044288635, -0.064575195, -0.003686905, -0.018310547, -0.0501709, -0.022232056, 0.037750244, 0.0012454987, -0.030731201, -0.017669678, 0.0435791, 0.007083893, 0.015296936, 0.022460938, -0.076171875, -0.00056028366, 0.02822876, -0.017181396, 0.060699463, -0.022033691, 0.0121536255, 0.0317688, 0.011550903, 0.033111572, -0.04824829, 0.024719238, 0.008049011, 0.04272461, 0.020111084, 0.03048706, -0.02357483, -0.031051636, -0.033416748, 0.025817871, 0.016326904, -0.0061836243, -0.046417236, -0.042053223, 0.0231781, 0.055236816, -0.029769897, 0.012062073, -0.074401855, 0.00093460083, -0.043823242, -0.022872925, 0.009063721, -0.013259888, -0.017349243, -0.056274414, 0.00774765, 0.00036263466, -0.013763428, 0.029510498, -0.020721436, 0.024154663, 0.0020256042, -0.03692627, -0.011657715, -0.012748718, -0.023651123, 0.044067383, 0.061035156, -0.067871094, -0.0014648438, 0.033599854, -0.0090408325, -0.019836426, -0.0017604828, 0.029937744, -0.015182495, -0.019165039, -0.013412476, -0.042297363, -0.008598328, -0.018630981, -0.041870117, -0.023345947, -0.011329651, -0.021942139, 0.011711121, -0.017929077, -0.056365967, -0.042022705, -0.025817871, -0.021102905, -0.016830444, -0.0206604, -0.015014648, -0.037109375, 0.0006661415, -0.0011110306, 0.002603531, 0.0088272095, -0.018554688, 0.0039749146, -0.02720642, 0.018203735, 2.2113323e-05, 0.038909912, 0.0058021545, -0.008415222, -0.015670776, -0.006095886, 0.00026392937, -0.007045746, -0.023788452, -0.0005812645, 0.009605408, 0.0053901672, -0.016998291, 0.00793457, -0.01008606, 0.017959595, 0.027908325, 0.0024967194, -0.000107467175, 0.017318726, 0.0075683594, -0.009780884, 0.009346008, 0.0018377304, -0.050933838, 0.027145386, -0.062805176, 0.009269714, 0.035369873, -0.022979736, 0.047973633, 0.007881165, -0.009376526, 0.033843994, 0.013946533, 0.0066719055, 0.034423828, -0.0015516281, -0.023468018, 0.016098022, 0.0043411255, -0.031311035, -0.010940552, -0.05517578, 0.022506714, -0.00022161007, 0.0029678345, 0.014053345, -0.010375977, -0.04321289, -0.00522995, -0.008369446, 0.03125, 0.015350342, 0.005607605, -0.0088272095, -0.024719238, 0.022521973, -0.046051025, -0.053100586, -0.019073486, 0.010299683, -0.0692749, 0.0053863525, -0.006439209, -0.003025055, 0.013832092, 0.05734253, -0.0435791, 0.017288208, -0.021133423, -0.017578125, -0.035949707, -0.0124435425, 0.024795532, 0.02923584, -0.010398865, -0.02331543, 0.03201294, 0.00081300735, 0.0049705505, 0.007926941, -0.047454834, -0.07196045, 0.0073013306, -0.00042819977, -0.007858276, -0.052642822, -0.031066895, 0.012290955, -0.03744507, 0.005378723, 0.000300169, -0.02911377, 0.0026874542, 0.015419006, -0.035583496, -0.032562256, -0.04046631, 0.033050537, -0.02494812, 0.01651001, 0.010421753, -0.013938904, -0.009277344, 0.03955078, -0.028747559, -0.018569946, -0.01890564, 0.029296875, -0.036010742, -0.028549194, 0.053375244, -0.04598999, -0.029312134, -0.03967285, 0.041015625, 0.014877319, 0.00015199184, 0.005001068, -0.0064353943, -0.020812988, 0.01436615, 0.01826477, -0.0035552979, 0.048828125, 0.012191772, -0.021255493, -0.051727295, 0.009208679, 0.0014152527, -0.039123535, -0.06439209, -0.036254883, 0.020309448, 0.037322998, 0.0053138733, -0.015472412, 0.018707275, 0.015472412, 0.024398804, -0.068725586, -0.040130615, 0.0019464493, -0.031707764, -0.0011348724, -0.004917145, -0.017852783, -0.012931824, 0.03265381, -0.019821167, -0.023254395, -8.6545944e-05, 0.011421204, -0.007156372, -0.001039505, -0.040283203, 0.008323669, -0.03189087, 0.012184143, -0.048339844, 0.048736572, 0.04232788, -0.010856628, 0.011436462, 0.006046295, -0.015655518, -0.024505615, -0.052520752, 0.009239197, 0.07861328, -0.016311646, -0.047607422, 0.002363205, -0.047821045, -0.014015198, -0.0129776, -0.03387451, -0.00932312, 0.024337769, -0.0047416687, -0.015571594, -0.023986816, -0.010719299, 0.021850586, 0.0010976791, 0.025802612, -0.038757324, 0.0039043427, -0.030288696, -0.0140686035, 0.030349731, -0.029312134, -0.030822754, 0.0026397705, 0.0021781921, -0.034332275, 0.033569336, 0.029815674, -0.014205933, 0.0025234222, 0.055541992, -0.0016698837, 0.01940918, 0.008155823, 0.05807495, 0.02268982, -0.0021324158, 0.016921997, -0.0146102905, 0.012145996, -0.009666443, 0.0047683716, -0.010414124, -0.03488159, -0.04046631, -0.013015747, 0.010948181, 0.006412506, -0.05053711, 0.09613037, -0.0042915344, -0.017364502, -0.056121826, 0.0054473877, -0.04626465, -0.02368164, -0.03817749, 0.0151901245, 0.0135269165, -0.005695343, 0.025161743, -0.0016851425, -0.017333984, -0.007865906, 0.032806396, -0.008163452, -0.0018033981, -0.0043144226, -0.0017328262, -0.024047852, 0.048919678, 0.009475708, -0.014724731, 0.04135132, 0.029418945, -0.08111572, -0.02949524, -0.030273438, -0.012794495, -0.0037994385, -0.00945282, 0.02468872, 0.032073975, -0.018585205, -0.029434204, 0.008865356, -0.001543045, -0.046691895, -0.037994385, -0.0015449524, 0.051513672, 0.031219482, 0.02848816, -0.041015625, -0.020874023, 0.021820068, 0.022598267, 0.035125732, -0.01524353, -0.050476074, -0.018951416, -0.002111435, -0.0061836243, -0.01626587, -0.015182495, 0.020385742, -0.019897461, -0.022872925, -0.002008438, 0.04815674, 0.006916046, -0.008720398, 0.08319092, 0.011680603, 0.023391724, 0.027313232, -0.009979248, -0.053588867, 0.015380859, 0.013938904, -0.06341553, -0.055541992, -0.040039062, -0.014007568, -0.0234375, -0.015716553, -0.001616478, 0.046417236, 0.011489868, -0.023849487, -0.014877319, -0.02772522, -0.0004851818, -0.05456543, 0.015396118, -0.011978149, 0.015655518, 0.018997192, 0.0042762756, -0.06744385, -0.0131073, 0.017669678, 0.020370483, 0.0012331009, 0.026107788, 0.00422287, 0.010246277, -0.033721924, 0.024307251, 0.004611969, -0.016448975, 0.0284729, 0.027114868, -0.015617371, 0.04144287, -0.043151855, -0.017837524, 0.00093889236, -0.009635925, 0.027801514, 0.0061569214, -0.046325684, -0.014160156, 0.035980225, 0.046905518, -0.013343811, -0.019042969, -0.024337769, -0.025390625, 0.004261017, -0.016601562, -0.0023765564, -0.021759033, -0.006893158, -0.022781372, -0.039001465, -0.008239746, -0.02758789, 0.025772095, -0.010353088, 0.019607544, -0.011352539, -0.0065307617, -0.009613037, -0.0018434525, 0.04837036, -0.044281006, -0.0042800903, -0.008888245, 0.050201416, -0.002407074, 0.014663696, 0.0028858185, 0.0059051514, 0.040039062, 0.04269409, -0.020812988, -0.0015010834, -0.0058403015, 0.03704834, -0.031402588, 0.0021133423, -0.012756348, -0.0027637482, -0.027862549, -0.017105103, -0.0026245117, 0.026153564, 0.019699097, 0.0006761551, -0.038970947, 0.010025024, 0.01902771, -0.010421753, -0.008972168, -0.012535095, -0.030822754, 0.015487671, -0.00036239624, 0.012786865, 0.0013093948, -0.028060913, 0.04006958, -0.0065231323, 0.0069122314, 0.010673523, -0.04562378, 0.011047363, 0.044067383, -0.024841309, -0.0231781, -0.02935791, 0.013496399, 0.00856781, -0.00674057, 0.027740479, 0.0077209473, 0.05404663, -0.010681152, -0.058685303, 0.023223877, -0.10003662, 0.01007843, 0.006374359, 0.074279785, -0.107421875, -0.04449463, -0.0077438354, -0.038269043, -0.015914917, 0.055786133, 0.00554657, -0.0036449432, -0.014930725, 0.012809753, 0.055419922, 0.0011034012, 0.033294678, -0.035247803, -0.0077705383, 0.008552551, 0.00048685074, 0.020095825, 0.011116028, -0.034179688, 0.011505127, -0.0143966675, 0.013938904, 0.0008444786, 0.0107803345, -0.019744873, -0.01612854, 0.0010814667, -0.014549255, -0.0043525696, 0.03225708, -0.020019531, 0.017745972, -0.047027588, -0.048797607, -0.03503418, -0.070129395, -0.05014038, 0.09851074, -0.041046143, -0.02772522, 0.00045752525, -0.0014648438, -0.0056762695, -0.04763794, -0.0069351196, 0.0050239563, 0.029067993, 0.005256653, 0.009788513, 0.017669678, -0.050476074, -0.0892334, 0.03253174, -0.08886719, -0.005039215, -0.055786133, 0.007282257, -0.005180359, -0.020385742, 0.035339355, 0.0042419434, 0.026397705, 0.0004968643, 0.05319214, -0.07324219, -0.008621216, 0.032440186, 0.00945282, 0.003982544, -0.041656494, -0.0016593933, 0.025161743, -0.023345947, 0.027694702, 0.019470215, -0.05807495, 0.026382446, -0.012397766, -0.005332947, -0.012062073, -0.008636475, 0.028762817, 0.015167236, -0.037231445, 0.038269043, 0.004760742, 0.016540527, 0.041046143, 0.0065307617, 0.026641846, -0.008094788, -0.080200195, -0.05227661, -0.025726318, 0.031951904, 0.015853882, -0.0446167, -0.011634827, -0.020904541, -0.01449585, -0.018737793, 0.0070228577, -0.010940552, -1.3113022e-06, 0.006362915, -0.00031852722, -0.008384705, -0.015991211, -0.03970337, -0.052734375, 0.010353088, 0.0859375, -0.041656494, 0.0003619194, -0.008735657, -0.0440979, -0.033477783, -0.038848877, -0.026977539, -0.021118164, -0.044677734, -0.00579834, 0.023483276, -0.016204834, 0.024810791, -0.00995636, -0.016021729, 8.046627e-05, 0.026229858, 0.0068893433, 0.02432251, -0.0028858185, 0.08166504, 0.003030777, 0.046844482, 0.0057907104, -0.10961914, -0.045288086, 0.026397705, -0.006000519, -0.0146484375, 0.0099487305, -0.02128601, 0.009925842, 0.019515991, -0.029891968, -0.020080566, 0.027526855, 0.04824829, -0.013191223, 0.03265381]}, "B06XWJPSDJ": {"id": "B06XWJPSDJ", "original": "Brand: GasOne\nName: GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black\nDescription: \nFeatures: High output - exerting up to 65, 000 BTU, gas one\u2019s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up\nHEAT ADJUSTABLE \u2013 control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank\n14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height\nSTEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use\nLow height strong frame \u2013 Gas one\u2019s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts\n", "metadata": {"Name": "GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black", "Brand": "GasOne", "Description": "", "Features": "High output - exerting up to 65, 000 BTU, gas one\u2019s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up\nHEAT ADJUSTABLE \u2013 control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank\n14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height\nSTEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use\nLow height strong frame \u2013 Gas one\u2019s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.004611969, -0.011489868, -0.0101623535, -0.031921387, -0.00919342, 0.0032749176, -0.020874023, -0.007457733, -0.023223877, -0.012260437, 0.008575439, 0.036010742, -0.017532349, -0.045318604, 0.052246094, -0.009613037, 0.006008148, 0.040161133, 0.003578186, -0.00831604, 0.0107040405, -0.013549805, -0.05709839, 0.112854004, 0.023712158, 0.030395508, -0.017532349, -0.02078247, 0.0022945404, -0.007858276, 0.028411865, 0.009262085, 0.039794922, -0.008453369, -0.030639648, -0.053466797, -0.050994873, 0.0014076233, -0.051452637, 0.011802673, -0.001124382, 0.00030946732, 0.014549255, 0.025634766, -0.0049057007, -0.032592773, 0.019378662, -0.05368042, 0.0007619858, 0.0036716461, 0.014755249, -0.012527466, 0.02861023, 0.0041618347, -0.022628784, 0.0052337646, -0.00093603134, 0.005302429, 0.012245178, -0.0034561157, -0.0051879883, 0.016464233, 0.02015686, -0.0009255409, -0.07104492, 0.027664185, 0.054595947, -0.032958984, 0.0029773712, -0.07684326, -0.025604248, 0.024856567, -0.010917664, 0.0028591156, -0.06549072, -0.010536194, 0.0501709, -0.037078857, 0.0020103455, -0.0015850067, 0.008598328, -0.04257202, 0.061279297, 0.013618469, -0.02911377, -0.0030879974, -0.015007019, -0.0053901672, -0.005973816, 0.003955841, -0.013938904, -0.004753113, 0.00076436996, 0.031585693, -0.003288269, 0.0103302, -0.050323486, -0.070007324, 0.036315918, 0.018554688, 0.024932861, -0.018051147, 0.040039062, -0.005317688, -0.009597778, 0.072509766, 0.030563354, 0.05319214, 0.003648758, -0.032043457, 0.0007033348, -0.026931763, -0.016189575, -0.015098572, -0.0054779053, 0.03302002, -0.019546509, -0.021636963, -0.00016367435, -0.03866577, 0.00605011, 0.0014238358, 0.045715332, -0.014823914, -0.0018482208, -0.00945282, -0.030578613, -0.038391113, -0.015991211, 0.040161133, -0.014060974, -0.00932312, 0.0051002502, 0.04147339, -0.003709793, -0.019500732, 0.044403076, -0.009101868, 0.02015686, -0.03326416, 0.0011787415, 0.020446777, 0.016342163, -0.006511688, 0.011169434, 0.011505127, 0.026763916, 0.020004272, 0.0033855438, -0.055908203, 0.014198303, 0.032165527, 0.023513794, 0.00024986267, -0.010070801, -0.03237915, -0.0049819946, -0.021560669, 0.02748108, -0.035064697, -0.04171753, -0.01259613, 0.022781372, 0.013908386, 0.002960205, 0.02999878, 0.024337769, 0.008522034, 0.0049362183, 0.05026245, -0.054351807, 0.029220581, 0.011726379, 0.018661499, -0.002981186, 0.005569458, -0.027526855, 0.08581543, 0.046447754, -0.08666992, -0.057281494, -0.0670166, 0.13757324, -0.050109863, -0.024902344, 0.0178833, 0.0075683594, -0.014579773, 0.01991272, -0.011878967, 0.03390503, 0.047210693, -0.00440979, -0.048858643, 0.012077332, 0.04071045, -0.061279297, 0.018478394, -0.006511688, -0.014251709, -0.027160645, 0.0061454773, 0.010726929, 0.0010375977, 0.0028972626, -0.0028495789, 0.006477356, 0.030426025, 0.04522705, 0.020996094, -0.018981934, 0.006351471, 0.021057129, -0.07897949, -0.066833496, 0.013946533, -0.015296936, 0.019088745, 0.0129852295, -0.0051002502, 0.055114746, -0.017547607, 0.040008545, 0.031341553, 0.05529785, 0.0063095093, -0.0181427, -0.010482788, 0.044158936, 0.006767273, -0.040161133, 0.036071777, 0.051361084, 0.06738281, 0.00548172, 0.03765869, 0.10748291, 0.044555664, -0.008384705, -0.03463745, 0.008552551, -0.043518066, -0.034729004, 0.0066604614, -0.03591919, -0.0068244934, 0.020477295, 0.007041931, -0.008415222, -0.0013151169, 0.017364502, 0.0066452026, 0.04232788, -0.026412964, 0.018005371, 0.019729614, -0.03463745, 0.0066108704, -0.015838623, 0.019363403, -0.021102905, 0.04019165, 0.06085205, -0.01751709, 0.013290405, 0.028442383, 0.02507019, 0.034606934, -0.026565552, 0.02116394, 0.02607727, 0.021255493, -0.011024475, -0.013557434, -0.016860962, -0.014717102, -0.036590576, 0.041412354, -0.014678955, -0.020736694, -0.017593384, -0.03475952, -0.011062622, -0.0062828064, 0.03564453, -0.0056114197, 0.029571533, -0.010177612, -0.0018053055, -0.01713562, 0.0028839111, 0.010848999, 0.014335632, -0.0026626587, 0.0070114136, -0.02293396, 0.053131104, -0.025924683, 0.032409668, -0.044677734, 0.034088135, 0.040008545, -0.05618286, 0.031585693, -0.013320923, 0.00046110153, 0.011772156, 0.006866455, -0.007949829, -0.03390503, 0.009384155, 0.0022716522, 0.027679443, -0.0036621094, 0.03717041, 0.0056381226, 0.017852783, 0.030410767, 0.05117798, 0.05215454, -0.013069153, -0.015945435, -0.011474609, -0.047912598, 0.0014228821, 0.00844574, -0.055267334, 0.0062408447, -0.0023460388, 0.033691406, 0.0009813309, 0.017822266, -0.006034851, -0.033966064, -0.015808105, -0.013320923, 0.008842468, 0.017196655, 0.0019226074, -0.049743652, 0.0057411194, -0.020751953, -0.016647339, 0.0076828003, -0.028274536, -0.056762695, 0.02734375, 0.0047798157, -0.058288574, -0.016937256, 0.052947998, -0.028549194, 0.017608643, -0.03326416, 0.031951904, -0.007972717, -0.059814453, -0.03805542, -0.013801575, -0.08081055, -0.0036525726, -0.02218628, -0.046539307, -0.0129852295, 0.03756714, -0.008911133, -0.042816162, 0.008972168, -0.020965576, 0.046142578, -0.00016760826, 0.013694763, -0.0473938, -0.018127441, -0.047454834, 0.017822266, 0.046691895, 0.0028648376, 0.008934021, 0.031341553, 0.036590576, 0.035461426, -0.013465881, 0.0067863464, 0.0231781, 0.021331787, 0.024475098, 0.011634827, 0.021026611, -0.018493652, 0.008293152, -0.0064582825, -0.018081665, -0.021270752, 0.02734375, 0.004764557, -0.018341064, 0.0017642975, -0.032562256, -0.013679504, -0.035949707, 0.012969971, 0.00022614002, -0.014854431, -0.016067505, -0.03543091, -0.012649536, -0.034088135, 0.00554657, 0.02041626, -0.018325806, 0.020950317, -0.042144775, 0.034698486, -0.00995636, -0.019073486, 0.04031372, -0.010925293, 0.0063171387, -0.019134521, 0.039093018, -0.050994873, 0.07739258, 0.056915283, -0.061584473, 0.052459717, -0.018493652, 0.048431396, -0.060333252, 0.019943237, 0.020233154, -0.0289917, -0.030761719, 0.017440796, 0.0057144165, 0.06188965, 0.007385254, -0.021530151, 0.025604248, -0.03262329, -0.050231934, -0.025466919, -0.029708862, 0.01373291, 0.002866745, -0.03161621, -0.02406311, -0.06274414, 0.020019531, -0.059814453, 0.02230835, 0.0002387762, 0.044189453, 0.001376152, -0.003944397, 0.084106445, -0.0154800415, 0.032562256, 0.007751465, -0.028213501, -0.019088745, -0.030654907, 0.009338379, -0.008804321, -0.03149414, 0.019134521, 0.022476196, 0.012283325, -0.030349731, -0.0021953583, -0.0024223328, 0.0071029663, 0.0044059753, 0.0016174316, -0.004219055, -0.01234436, 0.035461426, 0.02142334, 0.0053596497, -0.0309906, -0.08581543, 0.008651733, -0.031463623, 0.041748047, 0.053710938, -0.02229309, 0.10498047, 0.074279785, -0.015167236, 0.013092041, 0.045684814, -0.018798828, -0.012084961, 0.03805542, -0.05001831, -0.013259888, 0.0064964294, 0.0056381226, 0.020355225, -0.007801056, -0.02116394, 0.0044403076, -0.045135498, -0.033477783, -0.028244019, 0.037719727, -0.0016937256, -0.0055770874, -0.01171875, -0.079833984, -0.0010061264, -0.039611816, -0.034851074, 0.015991211, -0.039154053, 0.003452301, -0.016418457, 0.024490356, -0.039733887, -0.01550293, -0.0043754578, 0.002811432, -0.004722595, 0.013908386, 0.009933472, 0.028030396, -0.03652954, 0.031066895, -0.07159424, 0.019561768, 0.017501831, 0.050323486, 0.04046631, -0.029006958, 0.003440857, -0.013015747, 0.005050659, 0.056274414, 0.037261963, -0.056121826, 0.0068206787, 0.023025513, 0.0014448166, -0.048950195, -0.0068855286, -0.0043411255, 0.009353638, 0.034057617, -0.068603516, 0.037597656, -0.0056533813, -0.005908966, -0.01473999, -0.02960205, -0.00039553642, 0.018966675, 0.020126343, -0.040740967, -0.049468994, 0.07385254, -0.00061941147, 0.026367188, -0.051940918, -0.0009880066, -0.052734375, -0.0073623657, 0.050842285, 0.016357422, -0.009056091, -0.037078857, -0.040283203, -0.007335663, 0.09039307, 0.023956299, 0.014694214, -0.0088272095, -0.015052795, 0.008415222, 0.01927185, 0.040802002, 0.01600647, 0.017807007, -0.04345703, -0.006549835, -0.07312012, 0.018829346, 0.026412964, -0.026672363, -0.047912598, -0.0073776245, 0.06536865, 0.005748749, 0.021102905, -0.0022659302, 0.03564453, -0.0051498413, 0.015670776, -0.10235596, -0.06100464, -0.007911682, -0.034301758, 0.02330017, 0.007701874, -0.012619019, 0.008911133, 0.08135986, 0.018188477, -0.0012187958, 0.031158447, 0.029785156, -0.047729492, 0.013221741, -0.072265625, -0.0006132126, -0.054992676, 0.0069732666, -0.048706055, 0.033843994, -0.0034275055, 0.013061523, -0.02053833, 2.4855137e-05, -0.0057258606, -0.04949951, 0.004535675, 0.030349731, -0.034362793, -0.060272217, -0.043182373, 0.03527832, -0.052001953, 0.015075684, -0.0021095276, -0.008125305, 0.01789856, -0.0053596497, -0.010726929, -0.0158844, -0.007698059, 0.017181396, 0.013641357, 0.0038433075, -0.010063171, -0.004421234, 0.023864746, -0.005180359, -0.003742218, 0.016952515, -0.0069007874, 0.010864258, -0.024627686, -0.0014352798, -0.046051025, 0.004550934, 0.05923462, -0.014343262, -0.02017212, 0.01777649, 0.012832642, -0.011924744, -0.03326416, 0.035736084, 0.0043640137, -0.0062446594, 0.038330078, 0.0116119385, 0.0027942657, 0.035827637, -0.02255249, 0.062072754, 0.0065193176, 0.00932312, 0.017150879, -0.0030021667, -0.009941101, -0.048828125, 0.040802002, -0.010612488, -0.024169922, -0.024459839, 0.007549286, -0.028427124, -0.04699707, 0.054992676, -0.03744507, 0.05581665, -0.022460938, -0.042755127, -0.0047035217, 0.059906006, -0.008506775, 0.0042381287, 0.0073127747, -0.011039734, -0.056427002, -0.026824951, -0.04446411, -0.026351929, -0.0023479462, -0.0014162064, 0.0067367554, -0.0037555695, -0.016677856, -0.0357666, -0.026397705, 0.012046814, -0.037506104, 0.019683838, -0.0048713684, 0.010292053, 0.009010315, -0.00756073, 0.030838013, 0.01890564, -0.019577026, -0.032989502, -0.04107666, -0.03338623, -0.049072266, 0.070373535, 0.022476196, -0.032440186, 0.057373047, 0.024978638, 0.023620605, -0.0067329407, 0.007888794, 0.03353882, 0.013168335, 0.0030326843, -0.027648926, -0.0041885376, 0.04034424, -0.049987793, -0.026519775, -0.008781433, 0.037963867, 0.015464783, 0.0209198, 0.04748535, 0.050445557, -0.0020980835, 0.057891846, 0.017974854, -0.033813477, -0.013916016, 0.002620697, -0.0982666, -0.06286621, -0.047729492, -0.0068626404, -0.0418396, -0.00048565865, 0.011680603, 0.055023193, 0.019470215, -0.021209717, -0.03225708, -0.012069702, 0.0010213852, -0.014968872, 0.0048942566, -0.014312744, 0.010276794, -0.03060913, 0.011512756, -0.04244995, -0.03265381, -0.008560181, 0.034332275, 0.033050537, 0.024658203, -2.18153e-05, -0.009262085, -0.050720215, 0.041931152, -0.012458801, -0.019729614, 0.0040359497, 0.039367676, 0.010719299, 0.022079468, -0.011314392, -0.013519287, -0.03277588, 0.024307251, -0.010238647, 0.043395996, -0.035125732, -0.0016183853, -0.0211792, 0.03302002, -0.018218994, 0.018249512, 0.014770508, 0.0042266846, -0.021484375, -0.008407593, 0.058563232, -0.025680542, -0.0317688, -0.01889038, -0.041412354, 0.0101623535, -0.0070228577, 0.017868042, -0.009643555, 0.010192871, -0.013717651, 0.014343262, -0.0016670227, -0.018066406, 0.030975342, -0.008674622, 0.042541504, -0.00541687, -0.011245728, 0.00042247772, -0.029129028, -0.044403076, 0.029052734, 0.05114746, 0.013587952, -0.010368347, -0.056854248, 0.029632568, 0.046783447, -0.0847168, -0.028289795, 0.016693115, -0.00018048286, -0.010047913, -0.048736572, -0.026168823, -0.002538681, 0.006931305, -0.019546509, 0.054107666, 0.002822876, 0.0070266724, -0.003030777, -0.008682251, 0.008407593, -0.0017518997, 0.0070381165, 0.020126343, -0.010650635, -0.021057129, -0.024658203, 0.019424438, 0.0413208, 0.012397766, 0.0030021667, 0.011741638, 0.020996094, -0.00945282, -0.03933716, -0.025512695, -0.041290283, 0.020889282, 0.025268555, -0.010696411, 0.042114258, 0.011924744, -0.0031604767, -0.028503418, -0.037963867, 0.039489746, -0.04711914, 0.01979065, 0.006252289, 0.015396118, -0.0070495605, -0.0008792877, -0.0035095215, -0.011329651, 0.036254883, -0.02633667, 0.027954102, 0.04940796, 0.01940918, -0.04260254, 0.016311646, -0.043701172, -0.0069236755, -0.00083112717, 0.02619934, 0.0018796921, -0.017211914, -0.006855011, -0.028762817, -0.02305603, -0.0028877258, -0.024673462, -0.025177002, 0.038482666, 0.009666443, 0.009307861, -0.030349731, 0.046936035, -0.020248413, -0.04598999, 0.02508545, -0.023040771, -0.00019466877, -0.024261475, -0.005558014, -0.03366089, -0.024520874, -0.041900635, 0.030914307, -0.013519287, -0.011955261, 0.0042152405, -0.0143966675, 0.023803711, -0.05645752, 0.028244019, -0.033325195, 0.01411438, -0.011734009, 0.014793396, -0.031402588, -0.05230713, 0.0038814545, 0.06817627, -0.07080078, -0.07470703, -0.027069092, -0.0026474, 0.0023269653, -0.007411957, 0.023101807, 0.0541687, 0.0181427, 0.0022888184, 0.012130737, -0.032287598, -0.0056915283, -0.014884949, -0.0016775131, 0.010627747, -0.025283813, 0.013656616, 0.045196533, 0.03050232, -0.005718231, 0.07104492, -0.054626465, 0.05078125, -0.008018494, 0.01713562, 0.0016555786, -0.01398468, 0.027740479, -0.014007568, -0.051879883, 0.05291748, 0.009643555, 0.039367676, 0.008613586, 0.017288208, 0.017150879, -0.022567749, -0.02204895, -0.010879517, -0.015602112, 0.013786316, 0.010398865, -0.023544312, -0.0335083, 0.001616478, 0.0012931824, -0.01676941, 0.022598267, -0.012245178, -0.011116028, 0.034851074, 0.013130188, 0.0064086914, 0.017684937, 0.035980225, -0.042816162, -0.023101807, 0.027404785, -0.01335907, -0.011985779, 0.01108551, -0.027374268, 0.0007457733, -0.0040664673, 0.027359009, -0.04699707, -0.05621338, 0.028915405, 0.039093018, -0.012023926, 0.040222168, -0.00070667267, -0.010307312, -0.058044434, -0.0022277832, 0.046325684, -0.011131287, -0.07824707, 0.05883789, 0.031799316, 0.046325684, -0.053344727, -0.08935547, -0.07989502, 0.018234253, 0.01285553, 0.017196655, 0.07128906, -0.013519287, 0.008087158, 0.023590088, 0.004043579, -0.018844604, 0.018936157, 0.026870728, 0.005306244, 0.021240234]}, "B010Y82OQU": {"id": "B010Y82OQU", "original": "Brand: Camco\nName: Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protect your propane bottles from flying debris\nCompatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top\nDimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D)\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer.\n", "metadata": {"Name": "Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb)", "Brand": "Camco", "Description": "", "Features": "Protects Your RV's Propane Tank: Protect your propane bottles from flying debris\nCompatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top\nDimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D)\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0048065186, -0.025314331, -0.037750244, -0.06500244, -0.021438599, 0.010040283, -0.04574585, 0.047912598, -0.039276123, -0.013702393, 0.004737854, 0.003063202, -0.071899414, -0.03201294, 0.013465881, -0.046783447, 0.020492554, 0.00034856796, -0.0053100586, -0.02279663, -0.0077056885, -0.0090408325, -0.026168823, 0.028213501, 0.0038528442, -0.020233154, 0.024154663, 0.008636475, 0.0068206787, -0.0029792786, 0.011993408, -0.0067100525, 0.047943115, -0.0074005127, 0.0001308918, 0.051940918, 0.056640625, -0.030395508, -0.011787415, 0.026947021, -0.011009216, 0.011665344, 0.07342529, 0.003276825, 0.039398193, -0.060638428, 0.038909912, -0.06549072, 0.035308838, 0.02709961, -0.008308411, 0.033050537, -0.012901306, 0.0023174286, -0.0036735535, 0.024765015, 0.0016765594, -0.018371582, 0.028335571, 0.0036640167, -0.004447937, 0.002658844, 0.014701843, -0.015174866, -0.057861328, 0.017593384, 0.053619385, -0.02305603, -0.021911621, -0.07293701, -0.005054474, 0.016067505, 0.027328491, -0.015625, -0.068237305, -0.0137786865, 0.025375366, -0.006134033, 0.0154418945, -0.02909851, -0.0033473969, -0.01600647, 0.023742676, -0.027664185, -0.0043754578, -0.009559631, -0.014915466, -0.0062408447, 0.0050201416, 0.0024337769, -0.011306763, -0.0017614365, 0.012702942, 0.029678345, -0.029678345, 0.0038051605, -0.027770996, -0.035491943, 0.041809082, 0.009742737, 0.02078247, -0.032989502, 0.016021729, -0.0036964417, 0.016601562, 0.004257202, -0.010787964, -0.03302002, 0.03048706, 0.0030822754, -0.032104492, 0.053710938, -0.016448975, -0.013809204, -0.02168274, 0.0032958984, -0.046539307, 0.032714844, 0.01927185, 0.016921997, -0.021057129, -0.026473999, 0.003353119, -0.009788513, 0.0013914108, -0.011672974, -0.027404785, 0.033111572, -0.047851562, -0.0037841797, -0.024291992, 0.011154175, 0.035705566, 0.06329346, 0.027770996, 0.0076522827, 0.013473511, 0.009895325, -0.008377075, 0.011154175, -0.011924744, -0.005958557, 0.03152466, -0.0070266724, -0.049194336, 0.046447754, 0.01902771, -0.014831543, -0.021743774, -0.070251465, -0.046539307, -0.011695862, 0.042541504, 0.0015850067, -0.029388428, 0.022369385, 0.011367798, 0.0071029663, -0.06756592, -0.03970337, -0.008415222, -0.015640259, -0.011695862, 0.061187744, 0.028045654, 0.04345703, 0.027145386, -0.0030574799, 0.009933472, 0.037750244, -0.0496521, 0.009628296, 0.013694763, 0.0028800964, -0.016693115, 0.010307312, -0.044403076, 0.0970459, 0.07672119, -0.101623535, -0.05834961, -0.066711426, 0.16711426, -0.03878784, -0.013755798, -0.014709473, 0.0039043427, -0.037384033, 0.010520935, -0.025054932, 0.02420044, 0.06359863, 0.012496948, -0.031143188, -0.0059928894, 0.0013999939, 0.024353027, 0.02128601, -0.01184845, -0.007423401, -0.03414917, -0.049987793, 0.04196167, 7.3969364e-05, 0.052612305, -0.054382324, 0.026489258, -0.022399902, -0.055908203, -0.0003900528, 0.026107788, -0.013160706, 0.0004029274, -0.04626465, 0.0027065277, 0.0053596497, -0.0011539459, -0.0013027191, -0.022521973, -0.00031352043, 0.010917664, 0.0056991577, 0.013023376, 0.051483154, -0.013427734, 0.014122009, -0.026901245, 0.010009766, -0.010437012, 2.5391579e-05, 0.042633057, 0.020553589, 0.058502197, 0.018920898, -0.035308838, 0.025863647, 0.014801025, -0.028518677, -0.026031494, 0.0418396, 0.016281128, -0.031921387, 0.0046195984, 0.050079346, -0.03225708, -0.04333496, 0.015899658, 0.009216309, -0.020614624, -0.017974854, 0.09979248, -0.053009033, -0.0005054474, -0.022262573, -0.028335571, 0.010726929, -0.04107666, 0.0076942444, -0.0009250641, 0.03817749, -0.024551392, 0.056030273, 0.08734131, -0.01285553, 0.008903503, 0.029251099, 0.055480957, 0.060516357, -0.0006403923, -0.0050735474, -0.011520386, 0.03781128, -0.005252838, 0.028900146, -0.022659302, 0.019851685, -0.025848389, 0.0015602112, -0.028930664, 0.015594482, 0.026107788, -0.019989014, 0.0017194748, -0.0059051514, 0.061767578, -0.0018186569, 0.006122589, 0.019989014, -0.050598145, 0.013191223, 0.034454346, 0.019073486, 0.00021898746, -0.03111267, 0.025665283, 0.01626587, 0.033569336, -0.030395508, 0.029815674, -0.0075263977, 0.023101807, 0.05581665, -0.010169983, 0.020828247, -0.0074386597, 0.04296875, -0.013793945, 0.014335632, 0.0093688965, -0.02029419, 0.0035152435, 0.0011138916, 0.0014371872, -0.002412796, 0.019332886, 0.0134887695, 0.0060691833, 0.039978027, 0.06021118, 0.07171631, 0.02218628, 0.028900146, -0.008171082, -0.011276245, 0.02810669, -0.019073486, -0.03805542, -0.0044174194, -0.03503418, -0.0027675629, 0.02305603, -0.038360596, -0.0029354095, 0.013587952, 0.011657715, -0.0021324158, 0.0016345978, 0.04928589, 0.0025558472, -0.04574585, 0.0115356445, -0.036254883, -0.000603199, 0.04928589, 0.01977539, -0.04812622, 0.0060577393, 0.008399963, -0.03527832, 0.011924744, 0.0024356842, -0.023254395, -0.0073776245, -0.061706543, -0.017120361, 0.02708435, -0.01600647, -0.04647827, 0.02178955, -0.074401855, -0.016937256, -0.01940918, -0.060028076, -0.00894928, 0.070495605, -0.008125305, -0.049621582, -0.019836426, 0.014083862, 0.010536194, -0.02243042, 0.024932861, -0.07849121, -0.01222229, 0.0048179626, 0.020126343, 0.0025901794, -0.05718994, 0.02583313, -0.0063705444, -0.025756836, 0.005012512, -0.021591187, 0.035736084, -0.00016307831, 0.040985107, 0.0703125, 0.07171631, -0.014167786, -0.05606079, 0.00044083595, 0.081848145, -0.006679535, -0.014274597, 0.0010957718, -0.019638062, 0.0014476776, 0.018432617, -0.036621094, -0.012817383, -0.07043457, 0.009727478, 0.007621765, -0.042175293, -0.017654419, -0.040740967, -0.07348633, -0.034698486, 0.013710022, 0.02305603, -0.0077552795, -0.00057792664, -0.013450623, 0.0056381226, -0.00019061565, -0.02079773, -0.012435913, -0.0039749146, -0.037628174, 0.032440186, 0.031082153, -0.02255249, -0.014709473, 0.025924683, -0.045410156, 0.018661499, -0.012382507, 0.025863647, -0.00083589554, 0.031311035, -0.01285553, -0.00034809113, -0.03475952, -0.0423584, -0.027359009, -0.021499634, 0.0027122498, -0.012237549, -0.0022583008, 0.0026893616, -0.02708435, -0.03387451, 0.016067505, 0.028640747, -0.026901245, 0.026657104, -0.042755127, -0.016784668, 0.016082764, 0.027252197, -0.021316528, 0.00032663345, -0.008934021, 0.0029449463, -0.043945312, 0.039978027, 0.008995056, 0.0395813, 0.008705139, -0.021408081, -0.031463623, -0.023605347, 0.032318115, -0.01966858, -0.018630981, -0.015296936, 0.042785645, 0.0090408325, -0.003168106, -0.013427734, -0.0068092346, 0.02355957, 0.0023498535, -0.02116394, 0.002527237, -0.0036296844, 0.0061073303, -0.0104599, 0.032684326, -0.0011577606, -0.089782715, 0.030059814, -0.026184082, 0.04257202, 0.020141602, -0.008018494, 0.0982666, 0.053466797, -0.013656616, 0.016555786, 0.05065918, 0.022277832, 0.013549805, 0.023986816, -0.010482788, -0.03503418, 0.0059814453, -0.028137207, 0.0020599365, -0.029220581, 0.012519836, -0.007663727, -0.011421204, -0.01574707, 0.0005502701, 0.0131073, 0.0034561157, -0.026626587, 0.0046806335, -0.0005879402, -0.033081055, -0.04425049, 0.019256592, 0.008705139, -0.0064086914, 0.016616821, -0.015220642, 0.0067214966, -0.018341064, -0.015060425, -0.03540039, -0.0026512146, 0.013946533, 0.036468506, -0.00422287, -0.0044555664, -0.012619019, 0.028579712, -0.05996704, -0.0362854, -0.0018873215, 0.046783447, -0.0017366409, -0.019439697, 0.0513916, 0.03012085, 0.010948181, 0.019546509, 0.006248474, -0.070373535, 0.031402588, 0.080200195, -0.0012207031, -0.046142578, -0.026351929, -0.014526367, -0.048614502, 0.016937256, -0.015640259, 0.00023627281, -0.007156372, -0.007129669, -0.051757812, -0.043792725, -0.01638794, 0.018493652, 0.0028495789, 0.00038957596, -0.017669678, -0.025390625, 0.016159058, 0.0748291, -0.064453125, -0.051361084, -0.017349243, -0.00157547, 0.0132369995, -0.017196655, 0.035369873, -0.023757935, -8.1539154e-05, -0.026229858, 0.047027588, 0.013114929, -0.0140686035, -0.0038547516, -0.01789856, 0.017837524, 0.021347046, 0.0440979, -0.010322571, 0.0102005005, -0.023971558, 0.025024414, -0.04727173, -0.023864746, 0.046020508, -0.059295654, -0.058898926, -0.03717041, 0.07421875, 0.0016422272, 0.00011456013, -0.028198242, 0.011444092, 0.013320923, -0.0018253326, -0.03677368, -0.017486572, 0.007209778, -0.046081543, -0.030349731, -0.0033836365, -0.03665161, 0.07824707, -0.03086853, -0.029342651, -0.044769287, 0.033966064, 0.06689453, -0.027313232, 0.0075645447, -0.021591187, 0.0011119843, 0.01436615, -0.02998352, -0.07720947, 0.08319092, 0.046905518, 0.025497437, 0.03201294, -0.018234253, 0.0055770874, -0.046295166, -0.057769775, -0.019104004, 0.034362793, -0.01838684, -0.05255127, 0.0053100586, -0.018203735, 0.00080633163, -0.02432251, -0.04296875, -0.03262329, 0.06890869, -0.018493652, -0.04348755, -0.04397583, 0.012557983, 0.024536133, -0.02128601, 0.00036239624, -0.04272461, -0.011787415, -0.033569336, -0.02293396, 0.04309082, -0.029266357, -0.020309448, 0.009498596, 0.014183044, -0.039855957, 0.054992676, 0.026748657, 0.0385437, -0.046173096, -0.0052871704, 0.0057525635, -0.0059280396, -0.03479004, 0.043273926, 0.0072784424, 0.023757935, 0.049041748, 0.022323608, -0.036743164, 0.007129669, -0.024658203, 0.061676025, -0.03427124, -0.016403198, 0.029159546, 0.022338867, 0.021881104, -0.075805664, 0.06628418, -0.009414673, -0.014335632, -0.059753418, 0.018447876, -0.046661377, -0.046447754, -0.007160187, -0.0067863464, 0.027175903, -0.076049805, 0.0040283203, -0.0017690659, 0.06732178, -0.021774292, 0.019729614, 0.02571106, 0.015823364, -0.06976318, -0.0009326935, -0.034210205, 0.012161255, -0.03152466, -0.0005531311, 0.018722534, 0.009994507, -0.004562378, -0.019470215, -0.020187378, -0.00050354004, -0.04916382, -0.00073957443, -0.0027866364, 0.013374329, -0.019226074, -0.03149414, -0.016464233, 0.01108551, -0.049621582, 0.0035381317, -0.006614685, 0.005405426, -0.010284424, 0.04748535, -0.05947876, -0.0340271, -0.012916565, 0.0040283203, 0.008651733, 0.00466156, -0.07537842, -0.03930664, 0.027328491, 0.039733887, 0.003944397, -0.026016235, 0.021530151, -0.01651001, -0.019500732, -0.020462036, 0.040008545, -0.02583313, -0.04611206, 0.07824707, 0.08673096, -0.003353119, 0.024627686, -0.01979065, -0.039520264, 0.023757935, 0.0012073517, -0.09814453, -0.019927979, -0.013870239, -0.008796692, -0.016601562, -0.007598877, -0.006412506, 0.05291748, 0.007270813, 0.0026893616, -0.034301758, -0.014183044, -0.009567261, -0.016799927, 0.013015747, -0.047943115, 0.011116028, -0.033599854, -7.110834e-05, -0.043762207, -0.052825928, -0.02279663, 0.008659363, 0.053375244, 0.0110321045, 0.0178833, -0.014801025, -0.026016235, -0.00011354685, -0.008918762, -0.049591064, 0.014602661, 0.02897644, 0.0287323, 0.014961243, 0.00995636, -0.013313293, -0.012237549, -0.0014104843, 0.046844482, -0.011398315, -0.053710938, -0.028640747, 0.05432129, 0.04675293, 0.003921509, -0.060546875, -0.015823364, -2.5689602e-05, -0.016036987, -0.019088745, 0.008644104, -0.019332886, 0.01889038, -0.025131226, 0.0044937134, 0.012924194, -0.017227173, 0.02229309, -0.008087158, 0.04510498, -0.0069999695, 0.019515991, 0.01411438, -0.009109497, -0.0072517395, -0.016113281, -0.002357483, 0.013198853, 0.019210815, 0.022613525, -0.030944824, -0.047973633, 0.012252808, 0.012290955, -0.04107666, 0.058685303, -0.027267456, 0.0158844, 0.005393982, -0.054748535, 0.02709961, 0.034698486, -0.017669678, 0.026504517, -0.022964478, 0.0038280487, 0.014694214, -0.005256653, 0.0074501038, -0.0074157715, 0.021820068, 0.011856079, 0.0079193115, 0.0036582947, -0.010131836, -0.012802124, 0.033843994, -0.015731812, -0.018600464, -0.015716553, -0.042938232, 0.029144287, 0.028442383, -0.012802124, 0.0289917, -0.0035762787, 0.005455017, 0.008255005, 0.027328491, -0.030227661, -0.002275467, 0.0110321045, -0.013282776, 0.010848999, -0.0052452087, 0.02293396, 0.002067566, -0.0084991455, -0.07836914, 0.04055786, -0.07928467, 0.040985107, 0.013717651, 0.036895752, -0.044799805, -0.0011711121, -0.0079193115, 0.005214691, 0.010383606, 0.053009033, 0.020935059, 0.041900635, -0.0011320114, -0.0047950745, 0.031051636, -0.011741638, 0.012054443, -0.037017822, 0.01512146, 0.007259369, 0.0074386597, 0.0037288666, -0.0032463074, -0.028625488, -0.01890564, -0.013954163, -0.058532715, 0.005180359, 0.013183594, -0.0051574707, -0.022064209, 0.024719238, 0.004360199, -0.027297974, -0.017410278, -0.014762878, 0.017913818, -0.020309448, -0.026977539, -0.041229248, -0.021347046, -0.015640259, 0.035308838, 0.0047950745, -0.014968872, -0.004043579, 0.019058228, -0.02394104, -0.04058838, -0.0385437, 0.01966858, 0.010986328, -0.015960693, 0.011047363, -0.005706787, -0.02494812, -0.057495117, 0.013114929, -0.051452637, -0.01184082, -0.03326416, 0.008125305, -0.004184723, -0.0078125, 0.031219482, 0.049102783, 0.017669678, -0.0039405823, 0.06329346, -0.05255127, -0.028762817, 0.021972656, 0.019699097, -0.011558533, -0.02330017, 0.019363403, 0.032684326, -0.0075416565, 0.0069732666, 0.030578613, -0.051452637, 0.046203613, 0.013641357, 0.016937256, 0.01727295, -0.027175903, 0.03579712, 0.02394104, -0.02885437, -0.025680542, 0.0075187683, -0.012702942, 0.026260376, -0.040008545, 0.026443481, -0.007888794, -0.046325684, -0.044433594, -0.016952515, -0.006526947, 0.021377563, -0.028793335, -0.02507019, 0.029037476, -0.002380371, -0.019073486, 0.0039367676, 0.030029297, -0.013259888, 0.007701874, 0.016601562, -0.02243042, -0.0041656494, 0.0017719269, -0.030288696, -0.023925781, -0.0037593842, 0.03668213, -0.027893066, -0.026779175, -0.0029144287, -0.004245758, -0.022537231, -0.014060974, -0.05328369, -0.046966553, 0.039245605, 0.042541504, -0.00920105, -0.021438599, 0.026138306, 0.017929077, -0.0024528503, 0.027038574, 0.0021858215, 0.032470703, 0.00063467026, -0.00248909, -0.011772156, 0.06762695, -0.0209198, -0.09844971, -0.04852295, 0.0003516674, 0.025466919, 0.011253357, 0.0524292, 0.0090408325, 0.011177063, 0.023254395, -0.015991211, -0.017196655, -0.011894226, 0.066711426, 0.004207611, 0.0076904297]}, "B077RVXR9Y": {"id": "B077RVXR9Y", "original": "Brand: BroilPro Accessories\nName: BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder\nDescription:

      BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


      \u203bBroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
      \u203bMaterial:Heavy Duty Vinyl With 300D Polyester lining.
      \u203bDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
      \u203bThis propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
      \u203bEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
      We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

      \nFeatures: Material:Heavy Duty Vinyl With 300D Polyester lining.\nDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.\nThis propane tank cover is prevent your cover from experiencing premature fading and damage from the sun.\nEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit.\nWarranty- 90 Days 100% Money Back and 24 Months Guarantee.\n", "metadata": {"Name": "BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder", "Brand": "BroilPro Accessories", "Description": "

      BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


      \u203bBroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
      \u203bMaterial:Heavy Duty Vinyl With 300D Polyester lining.
      \u203bDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
      \u203bThis propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
      \u203bEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
      We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

      ", "Features": "Material:Heavy Duty Vinyl With 300D Polyester lining.\nDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.\nThis propane tank cover is prevent your cover from experiencing premature fading and damage from the sun.\nEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit.\nWarranty- 90 Days 100% Money Back and 24 Months Guarantee.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016784668, -0.011116028, -0.043304443, -0.07067871, -0.019195557, 0.012924194, -0.047058105, 0.057403564, -0.036621094, -0.026443481, 0.01007843, 0.0090789795, -0.02229309, -0.06951904, 0.05895996, -0.028747559, 0.011810303, 0.008468628, -0.0004339218, -0.03845215, -0.019058228, -0.029846191, 0.029724121, 0.05508423, 0.029220581, -0.007610321, 0.031433105, 0.01638794, 0.031982422, 0.005470276, 0.030426025, -0.048339844, 0.0541687, -0.012687683, -0.016494751, 0.010566711, 0.016098022, -0.021011353, -0.0149383545, 0.01335144, -0.022949219, 0.019088745, 0.08239746, -0.02079773, 0.024932861, -0.02217102, 0.011955261, -0.04827881, 0.027801514, 0.014228821, 0.004447937, 0.023025513, 0.007221222, -0.01499939, 0.0037155151, 0.033996582, 0.014549255, -0.027175903, 0.010147095, -0.019943237, 0.008743286, 0.019592285, 0.026779175, 0.03805542, -0.030090332, 0.0104599, 0.06347656, -0.023986816, -0.0013914108, -0.04156494, 0.017822266, 0.021743774, 0.023010254, -0.022994995, -0.025878906, -0.028778076, 0.0178833, -0.021331787, -0.010231018, 0.011001587, -0.010482788, -0.029312134, 0.04650879, -0.018447876, 0.01486969, 0.00027132034, -0.014419556, -0.005970001, 0.011245728, -0.011642456, 0.0027217865, 0.028121948, 0.0029640198, 0.037963867, -0.012954712, -0.014129639, -0.010009766, -0.019927979, 0.01713562, 0.015960693, 0.034179688, -0.039855957, 0.05496216, -0.020462036, -0.011497498, 0.049835205, -0.0065307617, -0.005214691, 0.021453857, 0.022201538, -0.0010995865, -0.013580322, -0.012969971, -0.059020996, 0.021957397, 0.017501831, -0.028167725, 0.038146973, 0.035217285, -0.003435135, -0.02671814, -0.03074646, -0.013061523, -0.032287598, 0.041168213, -0.004447937, -0.04058838, 0.06750488, -0.07342529, 0.0068511963, -4.941225e-05, -0.0018968582, 0.023925781, 0.077697754, 0.027450562, -0.0069236755, 0.05355835, -0.00484848, -0.018661499, 0.038024902, -0.028808594, -0.027038574, 0.003452301, -0.025726318, -0.047302246, 0.033599854, 0.032165527, -0.004245758, -0.026870728, -0.061767578, -0.027923584, -0.003479004, 0.042999268, 0.0138168335, -0.040252686, -0.003921509, 0.025024414, -0.022262573, -0.04046631, -0.060394287, -0.04611206, -0.031555176, 0.0057296753, 0.017089844, 0.0027866364, 0.050598145, 0.040374756, 0.0039901733, 0.006706238, 0.054779053, -0.012252808, 0.015899658, -0.009124756, 0.0021629333, -0.0076408386, -0.024398804, -0.017547607, 0.09881592, 0.08483887, -0.14477539, -0.079956055, -0.06451416, 0.19226074, -0.048797607, 0.0013160706, -0.0501709, 0.017730713, -0.03213501, 0.019073486, -0.0026950836, 0.029907227, 0.011474609, -0.024871826, -0.012756348, 0.015449524, 0.03515625, -0.0002092123, 0.032287598, 0.010665894, -0.05303955, -0.034362793, -0.00091552734, 0.012397766, 0.016921997, 0.021652222, -0.010940552, 0.011909485, 0.014579773, -0.01474762, 0.024780273, 0.008995056, 0.01158905, -0.0054740906, -0.03189087, 0.013511658, 0.016662598, -0.009384155, 0.005207062, -0.0079956055, 0.008171082, 0.018051147, -0.0028858185, 0.014160156, 0.047088623, -0.0065231323, -0.0061531067, -0.029327393, -0.005580902, -0.010948181, -0.026885986, 0.05581665, 0.0692749, 0.026748657, 0.025665283, -0.009742737, 0.01210022, 0.042114258, -0.008544922, -0.006500244, 0.009536743, 0.010803223, -0.0110321045, -0.0035591125, 0.043060303, -0.00642395, -0.037200928, 0.004207611, 0.012435913, -0.015838623, 0.013877869, 0.038330078, -0.0069389343, 0.0135269165, -0.013717651, -0.0069885254, 0.030212402, -0.02822876, 0.02999878, -0.04949951, 0.044067383, -0.008850098, 0.029953003, 0.0579834, -0.012199402, -0.0016756058, -0.0028076172, 0.046203613, 0.047973633, 0.0030727386, -0.025238037, -0.010139465, 0.033569336, 0.0017642975, 0.039031982, -0.03692627, 0.023849487, -0.035827637, 0.022659302, -0.009605408, 0.012130737, 0.030075073, 0.043029785, 0.05731201, -0.011047363, 0.02355957, -0.009864807, 0.010246277, 0.012321472, -0.010795593, -0.0023555756, 0.031463623, 0.0113220215, 0.0116119385, -0.02809143, 0.052947998, -0.027267456, 0.018554688, -0.030700684, 0.053985596, -0.038635254, -0.008903503, 0.055480957, -0.034179688, 0.042175293, -0.015037537, 0.026672363, -0.01878357, 0.027236938, 0.009468079, -0.029434204, 0.0096588135, 0.02394104, 0.007671356, 0.0077552795, 0.025787354, 0.008926392, 0.033935547, 0.034606934, 0.066589355, 0.050964355, 0.0033454895, 0.0075187683, -0.04156494, 0.0020389557, 0.009056091, 0.004638672, -0.017181396, -0.01171875, -0.020935059, -0.013534546, 0.0067596436, -0.062927246, -0.02279663, -0.04837036, 0.0071640015, -0.008079529, -0.011184692, 0.04272461, -0.0054893494, -0.014976501, -0.010406494, -0.02659607, 0.009849548, -0.004928589, -0.06719971, -0.042816162, 0.029281616, -0.025344849, 0.030807495, -0.00712204, 0.04107666, 0.008514404, 0.0049858093, -0.016174316, -0.018066406, 0.05960083, -0.0026893616, -0.056243896, -0.0036582947, -0.075927734, 0.018722534, -0.022918701, -0.054473877, -0.022201538, 0.07281494, -0.0206604, -0.017120361, -0.0597229, 0.025238037, 0.017028809, 0.014198303, 0.014137268, -0.08117676, -0.004096985, 0.010726929, 0.006652832, -0.016494751, -0.06359863, -0.01222229, -0.030731201, -0.039245605, -0.025863647, 0.01586914, 0.023590088, 0.0044898987, 0.05218506, 0.06359863, 0.046417236, -0.013870239, -0.061523438, -0.006679535, 0.06573486, -0.0070343018, -0.016952515, -0.009277344, 0.0035629272, -0.019226074, -0.0067977905, -0.015068054, -0.007381439, -0.0647583, -0.01687622, -0.0043754578, -0.0317688, 0.0053710938, -0.041503906, -0.041778564, -0.047668457, 0.006111145, 0.03164673, -0.020126343, 0.014030457, -0.021377563, 0.018035889, 0.006046295, -0.009338379, 0.00028562546, -0.00024235249, -0.042785645, 0.016738892, 0.04574585, -0.031311035, 0.014968872, 0.039398193, -0.007713318, -0.013572693, 0.040924072, 0.027191162, -0.012107849, 0.0016956329, -0.0015792847, -0.04824829, -0.045654297, -0.0368042, -0.0001924038, 0.011116028, 0.014160156, -0.013839722, 0.016433716, 0.0018444061, -0.02708435, -0.0019254684, 0.026031494, 0.031402588, -0.04550171, 0.035186768, 0.023956299, 0.009254456, -0.004711151, -0.02041626, -0.008979797, 0.01689148, 0.01966858, 0.01259613, -0.011390686, 0.03805542, 0.02519226, 0.043273926, -0.036499023, 0.025726318, 0.0131073, -0.03665161, 0.05999756, -0.015380859, -0.018676758, -0.03555298, 0.05493164, -0.01386261, -0.004989624, -0.019821167, -0.04675293, 0.057800293, -0.037994385, -0.010299683, 0.019989014, 0.02204895, -0.008140564, -0.006843567, 0.026123047, 0.019561768, -0.068725586, 0.015670776, -0.043395996, 0.039276123, 0.02279663, -0.008232117, 0.061401367, 0.03778076, -0.009918213, 0.026229858, 0.030731201, -0.009429932, 0.02130127, 0.0062713623, -0.031951904, -0.0006046295, 0.0061569214, -0.039154053, 0.012588501, -0.009788513, -0.026489258, 0.016067505, 0.022125244, -0.02619934, -0.012901306, 0.022369385, 0.012763977, -0.045440674, -0.018478394, -0.003604889, -0.02999878, -0.06524658, 0.01651001, 0.016281128, -0.0048599243, 0.020263672, 0.0035514832, 0.020050049, -0.003993988, -0.030548096, -0.022705078, 0.020309448, 0.000893116, 0.032958984, 0.0050354004, -0.0036067963, -0.03656006, 0.031677246, -0.014183044, 0.025680542, 0.014709473, 0.012199402, 0.009498596, -0.026763916, 0.022857666, -0.01626587, 0.0030841827, 0.033996582, 0.022659302, -0.060394287, 0.022323608, 0.08013916, 0.0079574585, -0.038360596, -0.03302002, 0.02418518, -0.05065918, -0.005722046, -0.014060974, -0.045288086, -0.019973755, 0.015472412, -0.07946777, -0.04650879, -0.02003479, 0.016220093, -0.0158844, 0.015106201, -0.008399963, -0.024795532, -0.022277832, 0.049835205, -0.06500244, -0.0007967949, -0.059143066, 0.036224365, -0.022003174, -0.013687134, 0.066223145, -0.033050537, -0.018371582, -0.02015686, 0.038360596, -0.015304565, 0.016906738, -0.030944824, -0.0003964901, -0.010665894, 0.024398804, 0.049346924, -0.025650024, 0.075927734, 0.014297485, 0.060821533, -0.07336426, -0.007572174, -0.0010814667, -0.022369385, -0.09814453, -0.066345215, 0.08843994, 0.026351929, -0.015129089, -0.01902771, 0.022644043, 0.044952393, -0.016067505, -0.030532837, 0.0040359497, 0.017166138, -0.039733887, -0.002418518, -0.014884949, -0.01940918, 0.060394287, 0.028121948, 0.012710571, -0.05697632, 0.012588501, 0.024215698, -0.028289795, 0.016784668, -0.028244019, 0.0021305084, -0.029968262, 0.01159668, -0.04824829, 0.048095703, 0.028579712, -0.0073890686, -0.008361816, -0.0038032532, -0.013198853, -0.05529785, -0.0037956238, -0.008880615, 0.029083252, 0.017593384, -0.03515625, 0.0018434525, -0.023391724, -0.004119873, -0.018035889, -0.024429321, -0.016799927, 0.020248413, -0.022979736, -0.04421997, -0.03491211, 0.0070266724, 0.0029335022, -0.0028476715, 0.0036144257, 0.010696411, -0.0046081543, -0.04083252, -0.0029392242, 0.017532349, -0.039642334, -0.025299072, -0.0006055832, 0.019378662, -0.03186035, 0.044708252, 0.033233643, 0.008804321, -0.024475098, 0.014175415, -0.051361084, 0.007217407, 0.0014238358, 0.008575439, -0.011199951, 0.022827148, 0.055664062, -0.013153076, -0.0026512146, 0.015930176, -0.03387451, 0.06048584, -0.021957397, -0.02420044, -0.007965088, -0.00051403046, 0.022872925, -0.037384033, 0.010398865, 0.015022278, -0.02619934, -0.033569336, 0.0018386841, -0.037963867, -0.028762817, 0.010917664, -0.0038089752, 0.04019165, -0.024673462, -0.021835327, -0.027557373, 0.00497818, -0.030822754, 0.0146865845, -0.018066406, -0.00932312, -0.017227173, -0.024810791, -0.0025787354, 0.021484375, -0.020446777, -0.023620605, 0.016799927, 0.021621704, -0.011772156, -0.008514404, 0.0018033981, -0.015670776, -0.039978027, -0.027542114, 0.013519287, 0.021942139, -0.03414917, -0.012062073, -0.022369385, 0.0017690659, -0.02508545, 0.0035820007, -0.019592285, 0.0026054382, -0.0038757324, 0.028366089, -0.038726807, -0.019805908, -0.016098022, 0.0026550293, 0.01625061, -0.025787354, -0.06585693, -0.030029297, -0.01687622, 0.005794525, -0.00023341179, 0.05126953, 0.046020508, -0.036956787, -0.020568848, -0.0871582, 0.04055786, -0.02204895, -0.045043945, 0.07330322, 0.05795288, 0.0048942566, 0.015205383, -0.027877808, -0.04345703, 0.0446167, 0.015853882, -0.059326172, -0.017349243, -0.026657104, 0.0029945374, -0.007873535, -0.007865906, -0.028213501, 0.039123535, -0.024291992, -0.014198303, -0.048858643, -0.011512756, -0.0065307617, -0.040985107, 0.024490356, -0.022613525, -0.0017051697, -0.010910034, -0.010643005, -0.087524414, -0.033325195, -0.0015869141, 0.016540527, -0.003967285, 0.008758545, -0.002735138, 0.030548096, -0.016448975, 0.0013666153, 0.026275635, -0.036621094, -0.012672424, 0.02130127, 0.02267456, 0.009277344, -0.051513672, -0.009002686, 0.012138367, 0.0014753342, 0.017562866, -0.015106201, -0.03717041, -0.039794922, 0.02746582, 0.03540039, 0.03466797, -0.048614502, 0.007888794, -0.0027999878, -0.026733398, -0.0074501038, -0.0009613037, 0.00058078766, 0.013923645, -0.019088745, 0.0016679764, 0.015007019, -0.017333984, -0.002998352, -0.02357483, 0.06137085, -0.0014724731, -0.007980347, 0.011512756, 0.0026683807, 0.0368042, -0.037109375, -0.005088806, -0.0067749023, 0.012382507, 0.007713318, -0.004798889, -0.054351807, 0.009239197, 0.030929565, -0.024383545, 0.042938232, -0.019927979, 0.02104187, 0.023040771, -0.034606934, -0.0066566467, 0.042419434, 0.01638794, 0.021240234, -0.028839111, -0.014175415, -0.013549805, 0.0501709, 0.012886047, 0.051239014, -0.015686035, 0.03866577, -0.00015246868, -0.006542206, -0.0007266998, -0.0063476562, 0.034088135, 0.023147583, -0.006893158, -0.041503906, -0.08673096, -0.012084961, 0.035369873, -0.009254456, 0.03048706, -0.014656067, 0.019760132, -0.023345947, 0.0031585693, -0.03475952, -0.020309448, 0.0033359528, 0.019348145, 0.010787964, -0.000600338, -0.02746582, 0.0103302, -0.0043029785, -0.041625977, 0.034820557, -0.04724121, 0.032806396, 0.028060913, -0.0060768127, -0.0859375, -0.026351929, -0.01235199, -0.0077934265, -0.0146484375, 0.071777344, -0.00031781197, 0.03253174, -0.010002136, -0.013870239, 0.0128479, -0.019699097, 0.011009216, -0.0362854, 0.008895874, 0.058776855, 0.01512146, -0.014015198, -0.028625488, 0.029312134, 0.019607544, 0.031173706, 0.014060974, -0.020507812, 0.033233643, -0.023071289, -0.029052734, 0.008163452, 0.0017318726, -0.0077438354, 0.007827759, -0.026138306, -0.0078125, -0.018493652, -0.031677246, -0.055999756, -0.03729248, -0.04748535, 0.02545166, -0.025222778, -0.0317688, -0.027511597, 0.019241333, -0.014389038, -0.023025513, -0.03466797, 0.012550354, 0.032592773, -0.012626648, 0.061828613, -0.034576416, -0.064453125, -0.0446167, 0.023773193, -0.09564209, -0.00573349, -0.047729492, 0.014907837, 0.009864807, -0.014419556, 0.028015137, 0.045288086, 0.01486969, 0.010368347, 0.018844604, -0.06488037, -0.036376953, 0.015174866, -0.0072784424, 0.006866455, -0.016540527, 0.0362854, -0.0003938675, -0.011688232, 0.0076026917, 0.004802704, -0.04977417, 0.0049438477, -0.010314941, -0.028366089, 0.018997192, -0.011039734, 0.051116943, 0.04336548, -0.00053691864, 0.010665894, 0.008293152, -0.05557251, 0.047668457, -0.055358887, 0.01007843, -0.030090332, -0.09051514, -0.016098022, -0.015686035, 0.0042533875, 0.04446411, -0.030639648, 0.02734375, -0.0023269653, -0.032806396, -0.011886597, -0.008781433, 0.028808594, 0.004535675, 0.008087158, 0.0020809174, -0.019485474, -0.017684937, -0.004547119, -0.024108887, -0.036499023, 0.00011819601, 0.023208618, -0.028518677, -0.024459839, -0.015289307, 0.0043411255, -0.014305115, -0.024520874, -0.031158447, -0.03881836, 0.009552002, 0.01878357, -0.009742737, -0.008926392, 0.0029850006, -0.0005226135, 0.008232117, 0.019683838, 0.0035324097, 0.010818481, -0.01209259, 0.041870117, -0.007587433, 0.04498291, -0.015342712, -0.1060791, -0.04449463, -0.0012388229, 0.026657104, -0.008895874, 0.043823242, -0.006454468, -0.0031433105, 0.0088272095, -0.01991272, -0.05722046, 0.044433594, 0.07043457, 0.013572693, 0.026321411]}, "B083J4G6BK": {"id": "B083J4G6BK", "original": "Brand: WADEO\nName: WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting\nDescription: Product Specification
      Propane Burner Head :
      Material: High quality Cast Iron
      Negotiability: Air Shutter can control the amount of air coming in.
      Propane Hose and High Pressure Regulator:
      Length: 4FT/48inch
      Inlet Pressure: 25-250PSIG
      Outlet Pressure: 0-20PSIG
      Type: High pressure LPG hose

      Universality:
      Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

      Brass Fitting\u00a0:
      Material: High Quality Brass
      3/8\" flare M x 1/8\" MNPT
      \nFeatures: \ud83d\udd25Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators.\n\ud83d\udd25Propane Regulator: Output pressure 0-20 PSI adjustable\u00a0with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8\"-18 UNF outlet connection.\n\ud83d\udd25Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting.\n\ud83d\udd25Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment.\n\ud83d\udd25Package Included: One cast iron high pressure burner head, one 3/8\" flare M x 1/8\" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.\n", "metadata": {"Name": "WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting", "Brand": "WADEO", "Description": "Product Specification
      Propane Burner Head :
      Material: High quality Cast Iron
      Negotiability: Air Shutter can control the amount of air coming in.
      Propane Hose and High Pressure Regulator:
      Length: 4FT/48inch
      Inlet Pressure: 25-250PSIG
      Outlet Pressure: 0-20PSIG
      Type: High pressure LPG hose

      Universality:
      Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

      Brass Fitting\u00a0:
      Material: High Quality Brass
      3/8\" flare M x 1/8\" MNPT
      ", "Features": "\ud83d\udd25Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators.\n\ud83d\udd25Propane Regulator: Output pressure 0-20 PSI adjustable\u00a0with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8\"-18 UNF outlet connection.\n\ud83d\udd25Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting.\n\ud83d\udd25Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment.\n\ud83d\udd25Package Included: One cast iron high pressure burner head, one 3/8\" flare M x 1/8\" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0053901672, -0.024520874, -0.008575439, -0.019073486, -0.044799805, 0.001786232, -0.0063323975, 0.002248764, 0.0044898987, 0.025222778, 0.0025463104, -0.027694702, 0.052886963, -0.044281006, 0.0126953125, -0.013305664, 0.025802612, -0.009407043, -0.002614975, -0.003440857, -0.018356323, 0.010696411, 0.030639648, 0.03878784, 0.011405945, -0.019195557, 0.024765015, 0.021820068, 0.0090408325, 0.014915466, 0.028320312, -0.026062012, 0.048614502, -0.0007901192, -0.038024902, -0.002128601, -0.0023899078, -0.017425537, -0.03086853, 0.01171875, -0.0068740845, 0.0113220215, -0.041137695, 0.010169983, -0.04815674, -0.024108887, -0.02319336, -0.022094727, 0.018707275, 0.010765076, 0.00806427, -0.032928467, 0.015586853, -0.030258179, -0.032043457, -0.04574585, 0.04916382, -0.043884277, 0.015525818, 0.0044174194, -0.016159058, 0.006538391, 0.016189575, -0.013008118, -0.032104492, 0.026031494, 0.0725708, -0.02861023, 0.015357971, -0.026123047, -0.004398346, 0.03463745, 0.007965088, -0.008934021, -0.029953003, 0.007598877, 0.030670166, -0.008468628, 0.009544373, -0.0014333725, -0.019165039, -0.03439331, 0.0021896362, -0.023239136, 0.012466431, 0.015090942, -0.0075798035, 0.0025539398, -0.032836914, -0.0076904297, -0.02305603, -0.019729614, -0.028945923, 0.01876831, -0.00012153387, 0.008300781, -0.04824829, -0.08337402, 0.034332275, 0.022705078, 0.059753418, -0.052001953, 0.06744385, -0.0014219284, 0.021636963, 0.08746338, -0.020874023, 0.029846191, 0.039154053, -0.013168335, 0.023239136, -0.032104492, 0.013381958, -0.048034668, -0.0016813278, 0.02809143, 0.0019950867, 0.00085020065, 0.01751709, -0.033111572, 0.024597168, 0.040924072, 0.035125732, -0.048614502, 0.017745972, 0.010536194, -0.018554688, -0.045715332, -0.022735596, -0.009925842, -0.0036697388, 0.010604858, 0.027114868, 0.08758545, 0.021209717, 0.008262634, 0.045684814, -0.006023407, 0.02420044, 0.0033721924, -0.015853882, -0.00983429, 0.0053749084, 0.015029907, -0.023880005, 0.036224365, 0.015419006, -0.0178833, -0.0090408325, -0.02368164, -0.0715332, -0.02180481, 0.0034503937, 0.020706177, 0.018173218, 0.016204834, 0.04336548, -0.02204895, -0.0067825317, -0.025100708, -0.0073547363, -0.023849487, -0.022918701, 0.02947998, -0.0037517548, 0.031082153, 0.042938232, 0.0011081696, 0.015533447, 0.011482239, 0.0033130646, 0.0037384033, 0.0552063, 0.0039138794, 0.003019333, 0.01737976, -0.016433716, 0.064331055, 0.0769043, -0.10961914, -0.06222534, -0.045166016, 0.14990234, -0.0541687, 0.016357422, -0.042938232, 0.008407593, -0.044677734, 0.0014896393, 0.006641388, 0.007904053, 0.019210815, 0.016494751, -0.029693604, -0.033416748, 0.0027332306, 0.00054740906, 0.037078857, -0.022537231, 0.02268982, 0.003610611, -0.0018377304, 0.0034656525, -0.0034923553, 0.022338867, -0.034179688, 0.013214111, 0.0043144226, 0.049438477, 0.022659302, -0.011123657, -0.029388428, 0.015457153, -0.029647827, -0.04034424, 0.010688782, 0.005340576, -0.02720642, -0.008880615, -0.057495117, 0.017822266, 0.0104522705, 0.003648758, 0.06707764, 0.02456665, -0.006290436, -0.007881165, -0.011039734, 0.02027893, 0.0045661926, -0.013504028, 0.018951416, 0.036132812, 0.069885254, -0.0178833, 0.0013170242, 0.022659302, 0.008010864, -0.0019054413, 0.0030918121, 0.012512207, -0.023605347, -0.03237915, 0.016998291, -0.031158447, -0.050354004, 0.009498596, 0.0019350052, -0.043395996, -0.018844604, 0.0715332, 0.017654419, 0.019454956, -0.029525757, -0.020477295, 0.035827637, -0.028411865, -0.0033359528, -0.034118652, -0.009140015, 0.012718201, -0.02357483, -0.010017395, -0.023742676, 0.0051231384, 0.014030457, 0.007843018, 0.007850647, -0.023071289, 0.020202637, 0.024765015, -0.0107421875, -0.0037174225, 0.021331787, -0.011375427, 0.021438599, -0.012588501, 0.0011873245, -0.005203247, 0.020355225, 0.013404846, 0.03125, -0.01184082, -0.0034503937, 0.017929077, 0.01675415, -0.01335144, 0.014259338, 0.049316406, 0.03125, 0.059509277, -0.007133484, 0.01020813, 0.011009216, 0.013221741, -0.03326416, 0.050811768, -0.036010742, 0.029144287, -0.048309326, -0.0050697327, 0.0513916, -0.033843994, 0.004699707, -0.006088257, -0.013786316, -0.0074310303, 0.03414917, 0.0027179718, -0.03665161, -0.009407043, 0.027664185, 0.008178711, 0.037200928, 0.026153564, 0.009780884, 0.037384033, 0.044281006, 0.0826416, 0.07611084, 0.013145447, 0.018447876, -0.01939392, -0.020111084, 0.010360718, -0.006084442, -0.040985107, -0.018814087, -0.07324219, 0.037384033, 0.02861023, -0.011177063, 0.013298035, 0.009849548, -0.006225586, -0.0076942444, -0.004711151, 0.055023193, 0.0074920654, -0.02192688, 0.0055160522, -0.025817871, -0.0023651123, 0.008796692, -0.034606934, -0.01763916, 0.034576416, 0.0050239563, -0.02658081, -0.003145218, 0.02230835, -0.006549835, 0.0184021, -0.053375244, 0.018203735, -0.015464783, -0.061187744, -0.056365967, 0.013114929, -0.077819824, -0.008331299, -0.031585693, -0.057006836, 0.0016517639, 0.060424805, 0.00015306473, -0.052825928, -0.0064201355, -0.017913818, 0.013839722, -0.024963379, 0.008514404, -0.032409668, -0.024719238, -0.019073486, 0.020065308, 0.04296875, -0.007865906, 0.051208496, 0.048858643, 0.030639648, 0.049591064, -0.019256592, 0.03656006, 0.03552246, 0.025787354, 0.074401855, 0.030197144, 0.043395996, -0.04763794, -0.007785797, 0.019699097, -0.046661377, -0.041290283, 0.027450562, 0.014427185, 0.009735107, 0.013092041, 0.005329132, -0.045074463, -0.03753662, 0.035095215, -0.0003607273, 0.007949829, -0.010414124, -0.08453369, -0.022735596, -0.057647705, 0.0068473816, 0.0045318604, -0.020553589, 0.019073486, -0.024353027, -0.008834839, -0.017852783, -0.012077332, -0.02708435, -0.016052246, -0.02507019, 0.060058594, 0.0635376, -0.08001709, 0.027145386, 0.050109863, -0.037109375, 0.051757812, -0.012107849, 0.028671265, -0.0064697266, -0.007972717, 0.016281128, -0.03050232, -0.046051025, -0.00061511993, 0.034606934, 0.05718994, 0.021560669, -0.03463745, 0.020324707, -0.005428314, -0.061340332, -0.010719299, -0.051208496, -0.028259277, -0.022506714, -0.039123535, 0.0127334595, -0.051116943, 0.00032401085, -0.085632324, 0.025726318, -0.014472961, 0.053955078, 0.025619507, 0.022201538, 0.17333984, 0.025894165, 0.06500244, 0.007282257, 0.0004196167, -0.008865356, -0.05130005, 0.06842041, 0.033935547, -0.04953003, -0.026489258, 0.022613525, 0.024520874, -0.00730896, -0.03768921, -0.017349243, 0.08758545, 0.021560669, -0.0029964447, -0.0096206665, 0.02897644, 0.019134521, -0.010368347, -4.297495e-05, -0.014732361, -0.05706787, 0.016220093, -0.066711426, 0.07104492, 0.05596924, -0.0335083, 0.05770874, 0.022598267, 0.006958008, 0.009254456, 0.075805664, -0.034851074, 0.032409668, 0.011726379, -0.017074585, -0.041137695, -0.005809784, -0.017364502, 0.030578613, -0.01008606, -0.010215759, 0.0020618439, 0.0072898865, -0.033569336, -0.029144287, -0.00178051, 0.023666382, -0.002281189, 0.03778076, -0.017532349, -0.02003479, -0.013450623, -0.0023174286, 0.040985107, -0.035217285, -0.009864807, 0.008552551, 0.007801056, -0.021148682, -0.0030231476, 0.035827637, 0.00028133392, 0.008460999, 0.0069236755, 0.03289795, 0.009979248, -0.02659607, 0.00020086765, -0.0070762634, 0.010276794, 0.030166626, 0.0069999695, -0.01838684, -0.02003479, 0.0025806427, -0.011077881, -0.004589081, 0.05557251, 0.03289795, -0.07269287, -0.0058937073, 0.0154953, -0.0050582886, -0.0423584, 9.4652176e-05, -0.029144287, -0.0206604, 0.0065612793, -0.0619812, 0.013504028, -0.012565613, -0.0026187897, -0.0231781, -0.04547119, -0.024673462, -0.0019388199, -0.004470825, -0.014228821, 0.016220093, 0.003753662, -0.028366089, 0.015380859, -0.056549072, 0.030471802, -0.09906006, 0.015945435, -0.0068740845, 0.002861023, 0.023529053, -0.01399231, 0.011428833, -0.026321411, 0.04586792, -0.0020751953, 0.0006933212, -0.03338623, 0.00013971329, 0.008468628, 0.030670166, 0.02684021, -0.00737381, 0.02720642, -0.0012664795, 0.010345459, -0.06903076, 0.042877197, -0.0017786026, -0.007820129, -0.055236816, 0.017150879, 0.04043579, 0.015213013, 0.033050537, 0.0040016174, 0.005329132, -0.027755737, 0.0069236755, -0.08947754, -0.047698975, -0.008262634, -0.019897461, -0.0071640015, -0.005218506, -0.022247314, 0.06719971, 0.018676758, 0.011672974, 0.012268066, -0.030761719, 0.015930176, 0.0009069443, 0.03253174, -0.02420044, -0.021087646, -0.028427124, 0.019958496, -0.04260254, 0.028152466, 0.025848389, -0.009468079, 0.016113281, -0.0029907227, -0.004722595, -0.023040771, -0.00047826767, 0.011528015, 0.010032654, -0.014701843, -0.03451538, 0.021026611, -0.008666992, -0.0025100708, 0.010940552, 0.012802124, 0.0038452148, -0.03503418, -0.0018672943, -0.039093018, -0.021224976, 0.044281006, 0.020141602, 0.005569458, -0.02355957, 0.041778564, 0.033569336, 0.02017212, 0.033843994, -0.011238098, -0.013694763, 0.0014619827, -0.025283813, 0.0025253296, -0.025756836, -0.0031089783, 0.02243042, 0.014854431, -0.033050537, 0.017028809, -0.017593384, 0.0023288727, -0.059387207, 0.005710602, 0.007167816, 0.002828598, 0.07897949, -0.005722046, 0.0058784485, 0.016540527, 0.006088257, 0.034576416, -0.013504028, 0.0022029877, 0.008399963, 0.0011386871, 0.009788513, -0.03390503, 0.03778076, -0.0067253113, -0.018218994, -0.04107666, 0.012359619, 0.025146484, -0.025253296, 0.0670166, -0.061035156, 0.047912598, -0.059539795, -0.031143188, 0.016189575, 0.0005583763, -0.026443481, -0.009246826, 0.006374359, -0.05105591, -0.050994873, -0.0045814514, 0.0013046265, -0.008705139, 0.0048179626, -0.040252686, 0.06640625, -0.004501343, -0.04309082, -0.03414917, -0.017028809, 0.00020718575, -0.052215576, -0.0012359619, -0.004940033, 0.026931763, -0.01210022, -0.010749817, 0.041809082, 0.01676941, -0.031799316, -0.028518677, 0.0016555786, 0.026885986, -0.004535675, 0.028244019, -0.009490967, -0.013801575, 0.035705566, -0.016098022, 0.023345947, -0.036102295, -0.0015850067, -0.019226074, -0.0036067963, -0.01687622, 0.0037994385, -0.028244019, 0.028808594, -0.016937256, -0.039642334, 0.031341553, 0.011070251, 0.0044937134, 9.083748e-05, 0.022369385, 0.005012512, -0.0026988983, 0.043548584, 0.0018348694, -0.058166504, -0.0040283203, 0.001958847, -0.10876465, -0.045684814, -0.055603027, -0.005004883, -0.0008773804, -0.054504395, -0.0027675629, 0.021316528, 0.018478394, 0.040222168, -0.016845703, -0.06878662, -0.0068092346, -0.0029716492, -0.012687683, -0.0063552856, 0.044128418, -0.03543091, 0.051849365, -0.02609253, -0.05618286, -0.018127441, 0.014205933, 0.022140503, 0.01109314, -0.0017251968, -0.00042390823, -0.0234375, 0.033203125, 0.017684937, -0.03503418, -0.01927185, 0.0231781, 0.01033783, -0.008506775, -0.06866455, -0.0004892349, -0.04864502, 0.029373169, -0.03866577, 0.087646484, -0.07952881, -0.037628174, -0.0003838539, 0.06854248, 5.1140785e-05, 0.031311035, 0.01725769, 0.021331787, -0.0018148422, -0.0129852295, -0.022857666, -0.02772522, -0.027832031, -0.021499634, -0.04928589, -0.004398346, -0.01360321, -0.011199951, -0.009147644, 0.0141067505, -0.049072266, 0.068847656, -0.017684937, -0.0014877319, 0.018875122, -0.026947021, 0.027999878, -0.022766113, 0.048614502, 0.021224976, -0.009300232, -0.05770874, 0.005794525, 0.034423828, -0.0036067963, 0.023040771, -0.05078125, 0.014175415, 0.008476257, -0.037139893, -0.0039863586, 0.015571594, -0.0039978027, -0.019180298, 0.03189087, 0.029785156, 0.027770996, -0.0016460419, 0.03237915, -0.014167786, 0.014320374, 0.020507812, -0.015731812, -0.017547607, 0.0008254051, -0.027313232, -0.009422302, -0.00687027, 0.0132751465, 0.0026893616, -0.04864502, 0.024978638, 0.022705078, 0.00044894218, 0.03933716, -0.024490356, 0.0014686584, -0.008071899, -0.01398468, -0.047790527, -0.027252197, -0.017990112, 0.010986328, -0.0039978027, -0.007472992, -0.009010315, 0.03894043, 0.0070762634, -0.016799927, 0.030593872, -0.044555664, 0.044921875, 0.044036865, -0.017578125, -0.044067383, -0.040527344, -0.009880066, -0.033569336, 0.017791748, 0.005531311, 0.0033092499, 0.033813477, 0.010772705, -0.033172607, 0.07287598, 0.023132324, 0.01979065, -0.083496094, 0.034942627, 0.014808655, -0.023147583, 0.0010824203, -0.011421204, -0.028289795, 0.014770508, -0.025726318, -0.026489258, -0.02671814, -0.028274536, 0.004722595, -0.026397705, 0.032714844, -0.03253174, -0.014137268, -0.0041656494, -0.03540039, 0.02619934, -0.044158936, -0.029312134, -0.042785645, -0.026107788, -0.044555664, 0.049072266, -0.013366699, -0.023147583, 0.015533447, -7.271767e-05, -0.04547119, -0.053527832, -0.024765015, -0.01247406, 0.008796692, 0.010223389, 0.024765015, -0.0029506683, -0.051940918, -0.026885986, 0.03656006, -0.047943115, -0.04650879, -0.03881836, 0.018310547, 0.0033950806, 0.0063056946, 0.060150146, 0.06890869, 0.013847351, 0.01977539, -0.020568848, 0.008163452, -0.021469116, 0.01335144, 0.016616821, -0.042663574, -0.013961792, 0.020019531, 0.007209778, 0.021530151, 0.020050049, 0.0019330978, -0.010375977, 0.0146484375, 0.011581421, -0.016799927, -0.00699234, -0.0030174255, 0.049041748, 0.03692627, -0.030822754, 0.026550293, 0.002576828, 0.010612488, 0.024215698, -0.013015747, 0.02128601, -0.01524353, -0.053253174, -0.017822266, -0.019042969, 0.0023117065, 0.030960083, -0.015266418, -0.027648926, 0.010894775, 0.011276245, -0.027420044, -0.0015954971, 0.028320312, 0.027999878, -0.0082092285, 0.010025024, 0.0051078796, -0.04525757, -0.006881714, -0.029846191, -0.008132935, 0.016326904, -0.025405884, -0.009284973, -0.016860962, -0.0132369995, -0.00025200844, -0.027435303, -0.0027446747, -0.033294678, -0.08746338, 0.05117798, 0.048828125, -0.012245178, 0.00094270706, 0.003944397, -0.009918213, -0.041107178, 0.026000977, 0.032684326, 0.015434265, -0.06567383, 0.05429077, 0.025100708, 0.059814453, -0.006088257, -0.06378174, -0.062683105, 0.045288086, 0.0063705444, -0.024383545, 0.014045715, -0.009109497, 0.0146102905, 0.03692627, -0.006881714, -0.021377563, 0.006702423, 0.052856445, 0.008422852, 0.008071899]}, "B0009PUR5E": {"id": "B0009PUR5E", "original": "Brand: Coleman\nName: Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner\nDescription: \nFeatures: COOKING POWER: Up to 10,000 total BTUs\nPRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions\nPERFECTHEAT DESIGN: More efficient cooking with less fuel\n1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan\nWIND BAFFLES: Shield burner from wind for maximum heat\n", "metadata": {"Name": "Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner", "Brand": "Coleman", "Description": "", "Features": "COOKING POWER: Up to 10,000 total BTUs\nPRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions\nPERFECTHEAT DESIGN: More efficient cooking with less fuel\n1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan\nWIND BAFFLES: Shield burner from wind for maximum heat", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03074646, -0.016418457, -0.01675415, 0.019180298, -0.028259277, -0.00762558, -0.0007920265, -0.015602112, -0.026947021, -0.015205383, 0.012931824, 0.010566711, -0.018997192, -0.06137085, 0.039886475, -0.03161621, 0.0020370483, 0.046173096, -0.0037841797, -0.04135132, -0.0041618347, -0.032470703, -0.038085938, 0.11743164, 0.0077819824, 0.024246216, -0.02432251, -0.0001604557, 0.0025348663, -0.00022304058, 0.0049324036, -0.0005335808, 0.03213501, -0.0030899048, -0.017150879, -0.05432129, 0.0262146, -0.02319336, -0.03677368, 0.022232056, 0.0016231537, 0.005470276, 0.0057678223, 0.012199402, -0.03488159, -0.013580322, 0.005104065, -0.007232666, 0.018081665, -0.023345947, -0.007987976, 0.0015554428, 0.014717102, -0.058746338, -0.016601562, -0.014717102, 0.057128906, -0.0024280548, 0.01751709, -0.048858643, -0.04510498, 0.0129470825, 0.045562744, 0.013504028, -0.025985718, 0.00843811, 0.04534912, -0.022384644, 0.047180176, -0.016784668, -0.01927185, 0.037384033, 0.0038394928, 0.02619934, -0.058166504, -0.0395813, 0.013000488, -0.04260254, 0.041900635, -0.011993408, -0.022262573, -0.031982422, 0.0045547485, -0.042144775, 0.020996094, -0.0035133362, -0.009185791, -0.001241684, -0.044525146, -0.03024292, -0.022735596, 0.011833191, -0.08770752, 0.012886047, -0.00907135, -0.009284973, -0.007320404, -0.058624268, 0.029281616, -0.023590088, 0.045806885, -0.046813965, 0.00024175644, 0.00983429, -0.016326904, 0.06573486, 0.025604248, 0.062683105, 0.024749756, -0.006462097, 0.015548706, 0.00086545944, -0.007648468, 0.026123047, -0.027694702, -0.0024967194, -0.047210693, 0.010597229, -0.026260376, 0.013496399, -0.035614014, -0.016494751, 0.024490356, -0.014427185, 0.01071167, -0.004989624, -0.016601562, 0.000364542, -0.02418518, 0.031204224, -0.054595947, -0.0048561096, 0.06530762, 0.051879883, 0.017440796, -0.027557373, 0.020202637, -0.00091362, 0.0098724365, -0.012359619, -0.0005874634, 0.0057258606, 0.03881836, -0.00091028214, -0.015312195, 0.019332886, 0.036590576, 0.016983032, -0.037475586, -0.07287598, 0.0418396, -0.009292603, 0.022384644, 0.026321411, -0.017532349, 0.016586304, 0.0019989014, -0.008140564, -0.016693115, -0.02949524, -0.021392822, -0.015167236, -0.010887146, 0.028884888, -0.006160736, 0.028884888, 0.052215576, 0.002664566, 0.022705078, 0.058135986, 0.0046653748, 0.049713135, 0.04324341, 0.0074501038, -0.014839172, -0.05392456, -0.030853271, 0.05517578, 0.04534912, -0.072753906, -0.030838013, -0.04220581, 0.09008789, -0.017410278, 0.011489868, -0.058441162, 0.044525146, -0.0032749176, -0.018005371, 0.026947021, 0.03829956, 0.004550934, -0.040771484, 0.024597168, -0.00073575974, -0.001613617, -0.029541016, 0.0073242188, -0.0070381165, -0.007167816, -0.017593384, 0.026748657, -0.013069153, 0.01676941, -0.015289307, -0.004497528, 0.0032615662, 0.024856567, 0.041381836, 0.012062073, -0.014533997, -0.01864624, 0.020904541, -0.057556152, -0.04977417, 0.013038635, 0.018875122, 0.054473877, 0.037322998, 0.016601562, 0.06298828, -0.030151367, 0.060699463, 0.017669678, 0.047912598, -0.029327393, 0.009170532, -0.022201538, 0.03994751, 0.0006327629, -0.031021118, 0.023010254, -0.0018720627, 0.060760498, 0.01576233, 0.007827759, 0.06311035, 0.02267456, 0.014022827, -0.025039673, 0.0015926361, -0.048309326, -0.041900635, -0.0005636215, -0.025405884, 0.05090332, 0.033691406, -0.01928711, 0.0012102127, 0.06719971, 0.021881104, 0.014450073, 0.009033203, 0.020141602, -0.019500732, 0.013458252, -0.050720215, 0.03930664, -0.026504517, 0.030258179, -0.041290283, 0.05218506, 0.09289551, -0.015686035, 0.026550293, 0.02859497, 0.04156494, 0.03652954, -0.04473877, 0.0335083, 0.0184021, 0.021713257, -0.009689331, -0.007499695, 0.052612305, -0.042144775, -0.010047913, 0.008369446, 0.0018520355, -0.029815674, 0.03857422, 0.008872986, 0.0063056946, 0.01209259, 0.06274414, -0.007751465, 0.008148193, 0.052520752, -0.037139893, -0.030395508, 0.026046753, -0.037109375, -0.03050232, -0.0158844, -0.026306152, -0.04248047, 0.05569458, -0.014328003, 0.022201538, -0.038330078, 0.030654907, 0.039886475, -0.046844482, 0.013694763, 0.011245728, -0.01965332, 0.012161255, 0.04336548, 0.018600464, -3.9339066e-05, -0.04373169, -0.02079773, 0.016677856, 0.015037537, 0.011077881, 0.0028591156, -0.0046424866, 0.03668213, 0.023925781, 0.038116455, -0.028060913, -0.008651733, 0.0037937164, -0.0016441345, 0.012161255, -0.014053345, -0.006210327, 0.0029697418, -0.025039673, 0.036224365, 0.033477783, 0.018798828, 0.012939453, -0.021697998, -0.0020065308, -6.03199e-05, 0.00024437904, 0.039398193, -0.005554199, -0.032104492, -0.009765625, -0.040802002, -0.0019874573, 0.0038089752, -0.037750244, -0.05090332, 0.038391113, -0.0018539429, -0.016601562, -0.0022220612, 0.040618896, -0.0036201477, 0.02607727, -0.015625, 0.024993896, -0.053833008, -0.05807495, -0.028335571, -0.030212402, -0.07904053, -0.008506775, -0.031433105, -0.055389404, -0.023254395, 0.05117798, -0.0005135536, -0.06756592, -0.00043606758, -0.0009174347, 0.022857666, -0.011688232, 0.012641907, -0.039154053, -0.002796173, -0.00058984756, 0.012008667, 0.056488037, 0.0036182404, 0.056610107, 0.04763794, 0.042236328, 0.030471802, 0.024291992, 0.01637268, 0.016799927, 0.013328552, 0.0006570816, 0.020233154, 0.004878998, -0.005443573, 0.006713867, 0.02230835, -0.028518677, -0.011001587, 0.017669678, 0.01927185, -0.05883789, -0.024749756, -0.05102539, 0.0073051453, -0.06500244, 0.014656067, -0.010772705, -0.024169922, 0.0016460419, -0.06085205, -0.016815186, -0.066345215, 0.024627686, 0.0048675537, -0.014717102, 0.009185791, -0.015213013, -0.0012693405, -0.014266968, -0.0076026917, 0.04724121, -0.020568848, 0.03366089, -0.014801025, 0.045196533, -0.10888672, 0.04458618, 0.031555176, -0.012802124, 0.03036499, -0.034240723, -0.0055770874, -0.0116119385, 0.02178955, -0.0061798096, 0.0043754578, -0.027160645, 0.0032520294, 0.00086832047, 0.0121536255, 0.0012178421, -0.05041504, 0.033996582, -0.016235352, -0.052734375, -0.028396606, -0.0011348724, 0.012527466, 0.016296387, -0.024337769, -0.034454346, -0.0574646, -0.0003874302, -0.033294678, 0.02558899, 0.0025539398, 0.053466797, 0.0078086853, -0.010658264, 0.07745361, 0.039520264, 0.03768921, 0.020019531, -0.016464233, -0.013000488, -0.018310547, -0.004550934, 0.0051841736, -0.019546509, -0.04360962, 0.0009851456, 0.033966064, 0.013870239, -0.036712646, 0.010597229, 0.089416504, 0.034210205, -0.021530151, -0.006717682, -0.04650879, 0.049591064, 0.028778076, -0.010910034, -0.07281494, -0.036987305, 0.0071258545, -0.10638428, 0.09503174, 0.06970215, -0.033050537, 0.057434082, 0.00579834, 0.014770508, -0.010391235, 0.033294678, -0.02859497, 0.028839111, 0.009025574, -0.010597229, -0.017822266, 0.0050468445, -0.002691269, -0.012901306, -0.013168335, -0.046417236, 0.0209198, 0.035736084, 0.0057373047, -0.035125732, 0.008872986, 0.01373291, -0.0048713684, 0.012046814, -0.0602417, -0.008529663, -0.02998352, 0.022277832, 0.00920105, -0.0128479, 0.015068054, -0.029785156, -0.014831543, -0.030532837, -8.940697e-07, 0.010688782, 0.022521973, -0.032470703, 0.013214111, 0.058135986, -0.007713318, -0.04940796, 0.028060913, -0.018600464, 0.018447876, 0.0061416626, 0.021911621, 0.0060195923, -0.03201294, 0.029556274, -0.030761719, -0.014808655, 0.039520264, 0.015090942, -0.07330322, 0.005329132, 0.03970337, 0.005607605, -0.04095459, 0.019210815, -0.01574707, 0.0055503845, -0.0067443848, -0.040039062, 0.007507324, -0.047607422, -0.02078247, -0.058166504, -0.042114258, -0.023117065, 0.01335144, 0.007419586, 0.008743286, -0.022064209, -0.038360596, -0.01461792, 0.018585205, -0.02670288, 0.0041923523, -0.061279297, 0.02394104, 0.0041542053, 0.005706787, 0.02305603, -0.014595032, 0.005504608, 0.00642395, 0.056732178, -0.027236938, 0.018539429, -0.050201416, -0.024536133, -0.008613586, 0.0072746277, 0.036132812, -0.041107178, 0.033447266, -0.010147095, -0.0034046173, -0.026168823, -0.041778564, 0.026779175, -0.046325684, -0.0262146, -0.02243042, 0.064697266, -0.022262573, 0.013587952, 0.0033779144, 0.016418457, 0.011543274, 0.011985779, -0.103881836, -0.063964844, -0.0029067993, -0.03866577, 0.0024471283, -0.004348755, -0.009010315, 0.043823242, 0.050750732, -0.0115737915, 0.008720398, 0.00415802, 0.03466797, -0.026641846, 0.014129639, -0.03765869, -0.01184082, -0.022827148, 0.008407593, -0.061340332, 0.05718994, 0.0060920715, -0.009307861, -0.0053215027, -0.012451172, -0.0034713745, -0.04800415, -0.01525116, 0.025863647, 0.0027675629, -0.020309448, -0.04043579, 0.01285553, -0.037017822, -0.017730713, 0.006916046, 0.0020942688, 0.04055786, 0.00015211105, -0.005176544, -0.0016231537, -0.013435364, 0.02961731, 0.014663696, 0.03186035, 0.042144775, -0.021240234, 0.0021953583, -0.015625, -0.0024204254, 0.0065956116, -0.008323669, 0.0033016205, -0.0073127747, 0.0061531067, -0.04296875, 0.028656006, 0.02935791, 0.014762878, -0.010803223, 0.020751953, 0.011047363, -0.023422241, -0.03552246, 0.019226074, 0.0073547363, -0.0209198, 0.06329346, -0.02079773, -0.029022217, 0.035827637, -0.03302002, 0.047332764, 0.009391785, -0.05065918, 0.014282227, 0.0010108948, 0.0027885437, -0.024490356, 0.045959473, -0.004886627, -0.019104004, -0.029449463, 0.010795593, 0.032104492, -0.013519287, 0.050323486, -0.042144775, 0.101989746, -0.015197754, -0.08441162, 0.029220581, 0.017364502, -0.0021381378, 0.0021533966, 0.014289856, -0.027572632, -0.026016235, 0.0023269653, 0.004180908, -0.0056495667, 0.021850586, -0.05795288, -0.0009393692, 0.023010254, -0.0060768127, 0.017807007, -0.021987915, 0.018325806, -0.059265137, 0.041137695, -0.02671814, 0.0074882507, 0.019592285, 0.0016975403, -0.020736694, 0.0029792786, -0.039642334, -0.04437256, -0.041229248, 0.013999939, 0.0013427734, 0.039398193, 0.0026893616, -0.030426025, 0.0040130615, 0.004623413, 0.026916504, -0.040008545, -0.003074646, 0.011398315, 0.015686035, 0.03353882, -0.016281128, 0.019760132, 0.080566406, -0.05078125, -0.04937744, -0.04977417, 0.07446289, -0.026443481, 0.04006958, 0.030136108, 0.029541016, 0.00970459, 0.04309082, 0.025115967, -0.04522705, 0.0029277802, 0.0038776398, -0.07824707, 0.0036392212, -0.03302002, 0.020370483, 0.01852417, -0.01007843, -0.025497437, 0.029327393, -0.009094238, 0.021621704, -0.03768921, -0.030151367, -0.010658264, -0.030319214, -0.0031223297, -0.032684326, 0.012512207, -0.041229248, -0.010131836, -0.064331055, -0.042541504, -0.004547119, 0.043029785, 0.051635742, -0.010971069, 0.014205933, 0.03741455, -0.052368164, 0.06365967, 0.034576416, -0.035949707, -0.015594482, 0.0071640015, 0.004436493, -0.019989014, -0.034851074, 0.013404846, -0.038513184, -0.0021018982, 0.012046814, 0.06072998, -0.02557373, 0.029876709, -0.0011892319, 0.03161621, 0.031951904, 0.014160156, 0.02670288, 0.013504028, -0.0026721954, 0.008613586, 0.031463623, -0.020446777, 0.011001587, -0.062683105, 0.00024843216, -0.015777588, -0.005378723, -0.014205933, -0.022445679, 0.0418396, -0.037139893, 0.020965576, -0.01222229, -0.019073486, 0.034698486, -0.0076179504, 0.038391113, -0.006149292, -0.00472641, 0.04272461, -0.05532837, -0.048736572, 0.010826111, 0.02809143, -0.024093628, 0.042114258, -0.057434082, 0.041809082, 0.045288086, -0.066223145, -0.04736328, 0.01473999, 0.023269653, -0.028747559, -0.013931274, -0.0058555603, 4.798174e-05, 0.013824463, 0.0062942505, 0.055023193, -0.010284424, 0.015525818, -0.027023315, -0.01737976, -0.013938904, -0.038879395, 0.042633057, -0.010604858, -0.029830933, -0.00094795227, -0.05050659, 0.062561035, 0.021850586, 0.023605347, 0.050445557, -0.016662598, 0.0014133453, -0.0059890747, -0.02508545, -0.048431396, -0.06945801, 0.026428223, 0.040252686, -0.052520752, -0.009780884, 0.002937317, 0.010620117, 0.007820129, -0.03149414, 0.01449585, -0.027938843, 0.025726318, 0.016494751, 0.039764404, -0.0109939575, -0.033691406, -0.009063721, -0.012199402, 0.016113281, -0.00957489, 0.0037899017, -0.017654419, 0.026779175, -0.015686035, 0.028457642, -0.03186035, -0.0064048767, -0.016540527, 0.013504028, 0.028015137, 0.010749817, -0.0023918152, 0.016448975, -0.021194458, -0.0023117065, 0.025939941, -0.02885437, -0.0062179565, -0.011856079, 0.004673004, -0.009757996, 0.023086548, -0.0066490173, -0.023239136, -0.016998291, -0.016677856, -0.012741089, -0.026168823, -0.051849365, -0.011367798, -0.0047950745, -0.05392456, 0.026153564, -0.006225586, 0.0036182404, 0.034362793, -0.009162903, -0.03048706, -0.010108948, 0.012123108, 0.024536133, -0.0048675537, 0.019821167, 0.068481445, -0.024749756, -0.066345215, -0.056549072, 0.013465881, -0.035461426, -0.029373169, -2.026558e-06, -0.024993896, -0.037872314, -0.008476257, 0.037139893, 0.05102539, 0.04168701, 0.0049476624, -0.0031929016, -0.010871887, -0.017791748, 0.037353516, 0.022094727, -0.058776855, -0.024307251, 0.018814087, 0.00472641, -0.013755798, 0.04034424, 0.007980347, -0.07220459, -0.013015747, -0.033203125, -0.03149414, -0.015808105, -0.013557434, 0.013946533, 0.0128479, -0.037078857, -0.010307312, 0.0075035095, 0.028762817, 0.034454346, -0.037994385, 0.03881836, -0.054382324, -0.067993164, -0.088378906, -0.027770996, 0.056915283, 0.015548706, -0.0395813, 0.006954193, 0.04055786, -0.034301758, 0.025177002, 0.046661377, 0.012237549, 0.008972168, 0.016296387, 0.017333984, 0.008651733, -0.007972717, 0.05493164, -0.013092041, -0.034118652, -0.027664185, -0.0050239563, 0.0027389526, -0.013587952, -0.0063972473, 0.020584106, -0.029525757, 0.027038574, -0.04156494, 0.005138397, 0.005218506, 0.025924683, -0.006401062, -0.007873535, 0.0021781921, 0.024719238, -0.03225708, 0.023330688, 0.033111572, 0.037261963, -0.028182983, 0.048980713, 0.038848877, 0.0043182373, 0.0066871643, -0.03677368, -0.027191162, 0.023590088, 0.016052246, -0.021057129, 0.028167725, -0.018478394, 0.00667572, 0.017471313, -0.03225708, -0.03074646, 0.00026345253, 0.044006348, -0.001996994, 0.007911682]}, "B00Z4T34CI": {"id": "B00Z4T34CI", "original": "Brand: Red Ember\nName: Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks\nDescription: This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800\u00b0 Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.\nFeatures: Dimensions: 21L x 21W x 29.1H inches\nUses standard liquid propane gas tanks\nSteel frame and stainless steel burner\nFire-retardant, inorganic material exterior\n", "metadata": {"Name": "Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks", "Brand": "Red Ember", "Description": "This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800\u00b0 Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.", "Features": "Dimensions: 21L x 21W x 29.1H inches\nUses standard liquid propane gas tanks\nSteel frame and stainless steel burner\nFire-retardant, inorganic material exterior", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.007686615, 0.010612488, -0.032684326, -0.03781128, 0.0012760162, -0.007820129, -0.022842407, -0.0049743652, -0.02909851, -0.01625061, -0.040985107, -0.012199402, -0.026901245, -0.028305054, 0.04058838, -0.061950684, 0.028671265, -0.009727478, 0.015411377, -0.042114258, -0.019424438, -0.051818848, 0.05908203, 0.05618286, 0.023147583, -0.018341064, 0.05770874, -0.026321411, 0.03845215, -0.005924225, 0.03717041, -0.018081665, 0.043029785, 0.027038574, -0.08483887, -0.025100708, 0.004673004, -0.009613037, -0.022201538, 0.0418396, 0.021697998, 0.0005788803, -0.0008049011, -0.009307861, -0.041992188, -0.029769897, 0.0362854, 0.013908386, 0.006362915, 0.019546509, -0.009635925, -0.006126404, -0.0057258606, -0.025848389, -0.010025024, -0.0017251968, 0.007926941, -0.022842407, 0.012840271, -0.02545166, 0.0027332306, -0.0017080307, 0.04928589, 0.033996582, -0.04031372, 0.015029907, 0.095458984, 0.0042762756, 0.008888245, -0.08660889, -0.012825012, 0.05493164, 0.009216309, -0.037384033, -0.02130127, 0.009613037, 0.016555786, 0.020431519, -0.006252289, -0.0078086853, -0.028305054, 0.0031414032, 0.0017156601, -0.041412354, -0.00061893463, -0.02456665, -0.021011353, 0.0063056946, 0.0050697327, -0.04272461, -0.0059509277, -0.053894043, -0.062469482, 0.080566406, 0.015670776, -0.008117676, -0.04336548, -0.09277344, 0.079833984, 0.018798828, 0.034362793, -0.042114258, 0.00819397, 0.022125244, -0.0014829636, 0.06427002, -0.012268066, -0.019607544, -0.0030326843, 0.0003170967, 0.0024356842, -0.03451538, -0.010803223, -0.0446167, -0.022750854, -0.0018396378, -0.03366089, -0.013839722, 0.034088135, -0.058776855, -0.01927185, -0.009941101, -0.0020599365, 0.026535034, 0.04525757, 0.040039062, -0.006465912, 0.0046539307, -0.066467285, 0.033294678, 0.004096985, -7.802248e-05, 0.001698494, 0.042419434, -0.021392822, -0.0070877075, 0.010551453, -0.025344849, 0.019683838, -0.019866943, 0.05996704, -0.0014715195, 0.009666443, 0.02986145, -0.05114746, 0.052368164, 0.01499176, -0.028640747, -0.004878998, -0.05328369, -0.064086914, -0.0037975311, 0.017074585, 0.02067566, 0.019943237, 0.023605347, 0.08270264, -0.025039673, -0.041900635, -0.040863037, 0.032562256, -0.012825012, -0.041992188, 0.01676941, -0.02961731, 0.0236969, 0.032684326, 0.015930176, 0.0034885406, 0.1026001, -0.005367279, 0.039611816, -0.020751953, -0.0010614395, -0.014533997, -0.0463562, 0.023162842, 0.03390503, 0.06506348, -0.05911255, -0.06903076, -0.052215576, 0.12213135, -0.07574463, -0.022766113, -0.0021438599, -0.023849487, -0.04333496, 0.045135498, -0.022857666, 0.014350891, 0.024383545, 0.012207031, -0.06335449, 0.0010471344, 0.03262329, -0.061828613, 0.015701294, -0.025161743, 0.014289856, 0.0038433075, 0.026428223, -0.036865234, 0.019226074, -0.016204834, 0.002254486, 0.00137043, 0.015289307, 0.0066604614, 0.0317688, 0.0050582886, 0.01701355, -0.037353516, 0.0048942566, -0.0138168335, 0.0011510849, -0.032562256, 0.001499176, -0.026657104, -0.024215698, 0.014945984, -0.013381958, -0.0016107559, 0.052856445, 0.0015878677, -0.04055786, -0.019592285, -0.031173706, 0.023757935, -0.036743164, 0.030426025, 0.053985596, 0.015037537, 0.064697266, 0.0063972473, 0.031234741, 0.058502197, 0.024627686, 0.010139465, -0.029663086, 0.00071430206, 0.025817871, -0.028274536, 0.038635254, -0.010719299, -0.053527832, 0.004547119, 0.020050049, 0.018341064, 0.053497314, -0.016326904, -0.013496399, -0.00046730042, -0.017700195, -0.017196655, 0.014259338, -0.038848877, 0.0002732277, -0.0016489029, 0.0057144165, -0.0008239746, 0.032409668, 0.03793335, 0.0054473877, 0.0008325577, -0.019195557, 0.037322998, 0.044281006, 0.015899658, -0.05215454, 0.008476257, 0.044281006, 0.0002194643, -0.009033203, -0.03366089, -0.010307312, -0.030899048, 0.032348633, 0.0006313324, -0.02645874, -0.01259613, 0.0047683716, -0.013618469, -0.004047394, 0.020828247, 0.005596161, 0.009025574, 0.008071899, 0.023132324, -0.0022659302, 0.008102417, 0.043395996, 0.00762558, 0.024002075, 0.04458618, -0.008865356, -0.01826477, -0.015007019, 0.019943237, -0.03414917, 0.023406982, 0.043792725, -0.027435303, 0.02267456, -0.0039787292, 0.020874023, -0.012458801, 0.027297974, 0.020629883, -0.023254395, 0.0032997131, 0.008544922, 0.03604126, -0.02230835, 0.07092285, 0.039001465, 0.017730713, 0.06976318, 0.060394287, 0.050354004, -0.0259552, 0.040405273, -0.0047798157, -0.025817871, 0.03805542, -0.011528015, -0.062438965, -0.010299683, -0.049560547, 0.0069007874, 0.03643799, -0.040985107, 0.012191772, -0.026550293, 0.0037288666, -0.014175415, 0.012023926, 0.028884888, 0.006664276, -0.038208008, 0.01914978, 0.0064926147, -0.0018205643, 0.0074920654, -0.011253357, -0.041290283, 0.029418945, 0.0025424957, -0.0146102905, 0.009002686, 0.020584106, -0.031433105, -0.033416748, 0.023590088, 0.010643005, -0.016098022, 0.016677856, 0.0019359589, -0.0025138855, -0.04598999, -0.039031982, -0.03137207, -0.05795288, 0.041656494, 0.051605225, 0.013427734, -0.048736572, 0.03741455, -0.025878906, 5.51939e-05, 0.040374756, -0.012001038, -0.0029716492, -0.050567627, -0.058685303, -0.02684021, 0.043273926, -0.02204895, 0.016021729, 0.028900146, -0.010871887, 0.027160645, -0.010383606, 0.030654907, 0.0541687, 0.012504578, 0.056152344, 0.046417236, 0.03781128, -0.0055274963, -0.0076904297, -0.0017929077, -0.029418945, -0.009803772, -0.005870819, -0.010070801, 0.038482666, -0.021865845, -0.01876831, -0.027709961, -0.103393555, 0.00058841705, -0.012641907, -0.0262146, 0.020477295, -0.085998535, -0.02482605, -0.07714844, -0.0013427734, 0.045196533, 0.01335907, -0.022628784, 0.004524231, -3.6776066e-05, 0.022644043, -0.026443481, 0.008728027, 0.005290985, -0.021347046, -0.004722595, 0.023117065, -0.019119263, -0.0060920715, 0.0050582886, -0.040649414, -0.002199173, 0.0014705658, 0.034118652, -0.027694702, 0.009544373, -0.00957489, -0.031280518, -0.00077581406, -0.023513794, -0.04095459, -0.010978699, 0.0037136078, 0.030212402, 0.010787964, -0.029342651, 0.00029969215, -0.003616333, 0.005279541, 0.026062012, 0.008811951, -0.033355713, -0.009651184, -0.0049972534, -0.026367188, -0.015563965, -0.0007071495, 0.0060043335, -0.00011527538, 0.008651733, -0.006412506, 0.03616333, 0.057037354, 0.06903076, -0.021713257, -0.028503418, 0.00680542, -0.0524292, 0.033599854, 0.0289917, 0.008712769, -0.014381409, 0.03967285, 0.0019741058, -0.010902405, 0.011886597, -0.0010499954, -0.002199173, 0.031585693, -0.012458801, -0.004070282, -0.025512695, 0.015823364, 0.014656067, -0.033996582, -0.03805542, -0.055999756, -0.0012187958, -0.048950195, 0.08526611, 0.06665039, -0.029144287, 0.08294678, 0.06756592, -0.042266846, 0.041748047, -0.03062439, 0.03842163, -0.04006958, 0.04547119, -0.0317688, 0.03250122, -0.009765625, 0.009529114, 0.019973755, -0.0053749084, -0.0070762634, 0.0143966675, 0.009284973, -0.03366089, -0.0597229, -0.03665161, 0.029174805, 0.0076828003, 0.03086853, 0.015808105, 0.0022678375, 0.00642395, 0.02394104, 0.00018799305, -0.013702393, -0.002462387, 0.002828598, -0.00365448, -0.023162842, -0.009223938, 0.019485474, 0.022857666, 0.00970459, 0.04067993, -0.0003142357, 0.010391235, -0.02859497, -0.02508545, -0.034698486, 0.029373169, 0.0025234222, 0.019119263, 0.04067993, -0.03149414, 0.02671814, -0.012283325, -0.020019531, 0.021759033, -0.024856567, -0.046447754, -0.00340271, 0.0035419464, -0.000192523, -0.01499939, -0.021087646, -0.008277893, -0.050445557, -0.0030326843, 0.0028972626, -0.0028381348, -0.017456055, -0.0066184998, -0.045440674, -0.025787354, -0.00944519, 0.01171875, -0.009765625, 0.003452301, -0.0036678314, -0.00059080124, -0.01878357, 0.011520386, -0.04598999, 0.022659302, -0.05505371, 0.029510498, -0.026107788, -0.02722168, 0.031433105, -0.045654297, -0.01222229, -0.02041626, 0.017059326, -0.0154800415, -0.023010254, -0.0064353943, -0.011734009, -0.025802612, 0.044525146, 0.03527832, -0.049468994, 0.04156494, 0.026428223, -0.033233643, -0.04498291, -0.013267517, 0.03540039, -0.003730774, -0.041259766, -0.037841797, 0.0385437, -0.0055999756, 0.008415222, -0.007209778, 0.004058838, -0.0067825317, 0.050109863, -0.0181427, -0.022781372, 0.0090408325, -0.04260254, 0.014961243, -0.019927979, -0.025100708, 0.08642578, 0.066223145, 0.035461426, -0.020568848, -0.012748718, -0.01436615, 0.013198853, 0.0012693405, -0.0015048981, 0.0034503937, -0.013877869, -0.008918762, -0.095336914, 0.059173584, 0.002002716, -0.016281128, -0.00856781, -0.024658203, 0.00018060207, -0.037475586, 0.017440796, -0.04272461, 0.022140503, -0.028121948, -0.026626587, -0.02104187, -0.05618286, -0.0066452026, -0.00774765, 0.0011539459, 0.025466919, -0.026504517, 0.0031700134, -0.0010957718, 0.009628296, 0.016403198, 0.018936157, 0.029449463, 0.03515625, -0.019241333, 0.009155273, -0.0015239716, -0.009277344, -0.004184723, -0.014755249, -0.0095825195, 0.0012836456, -0.0023918152, -0.020309448, 0.027786255, -0.0029315948, 0.045013428, 0.02053833, 0.034301758, -0.019439697, -0.0090789795, 0.005355835, 0.022033691, -0.010696411, -0.024520874, 0.022750854, -0.001616478, 0.002729416, 0.030181885, -0.020950317, 0.03503418, 0.014984131, -0.041168213, 0.018188477, 0.00020980835, 0.01965332, 0.0077934265, 0.012207031, 0.010284424, -0.0109939575, -0.028015137, 0.010345459, -0.0043525696, -0.0072669983, -0.02053833, -0.02330017, 0.025161743, -0.042877197, -0.00025629997, -0.0010442734, 0.02279663, -0.04925537, -0.00472641, 0.00566864, -0.044158936, -0.043426514, -0.023986816, -0.008987427, -0.035461426, -0.0021629333, -0.021209717, 0.028579712, -0.012557983, -0.019500732, -0.026138306, 0.022720337, -0.032989502, 0.035186768, -0.0949707, 0.051513672, -0.011405945, -0.044647217, 0.032348633, 0.017196655, 0.02078247, -0.034423828, -0.03387451, -0.020568848, 0.019821167, -0.017547607, 0.049713135, -0.033843994, -0.021224976, -0.0061531067, 0.020019531, 0.024795532, -0.0054244995, -0.07952881, -0.017608643, 0.019454956, 0.037109375, -0.0017585754, -0.0065574646, 0.039276123, -0.033050537, -0.0073776245, -0.08520508, 0.08026123, -0.024246216, -0.010269165, 0.05343628, 0.06298828, 0.005302429, 0.04095459, -0.039245605, -0.027526855, 0.009361267, 0.021514893, -0.11053467, -0.005935669, -0.007736206, 0.019104004, -0.043762207, -0.0005993843, -0.030883789, 0.04019165, -0.0051231384, -0.031463623, -0.037322998, -0.007701874, -0.0014925003, -0.03677368, 0.0010375977, 0.00340271, 0.03152466, 0.001420021, 0.04852295, 0.019729614, 0.038970947, 0.007686615, 0.0073165894, -0.021224976, -0.017959595, -0.0027046204, 0.0039711, 0.040924072, 0.04135132, -0.022888184, -0.02418518, 0.01550293, 0.04437256, 0.049102783, 0.0024604797, 0.014533997, -0.026229858, -0.010726929, 0.012161255, 0.030059814, 0.008033752, 0.021011353, 0.025360107, 0.01209259, -0.009056091, 0.030975342, 0.014144897, 0.024261475, -0.016937256, -0.04095459, -0.0016546249, -0.033813477, -0.042236328, -0.017410278, -0.0335083, -0.017211914, 0.021438599, -0.011787415, 0.044952393, -0.06555176, 0.058929443, -0.02192688, 0.018585205, 0.007091522, 0.009880066, 0.0036621094, -0.04748535, -0.03152466, -0.031433105, -0.029464722, -0.0078086853, 0.0149002075, -0.04257202, 0.026153564, 0.047332764, -0.012756348, 0.015411377, -0.029556274, 0.021697998, 0.0021705627, -0.058654785, 0.020812988, -0.031463623, -0.015136719, -0.0065307617, 0.0152282715, 0.0035076141, 0.012512207, 0.037139893, 0.015930176, 0.0385437, -0.020263672, 0.016540527, -0.013648987, 0.005130768, -0.00756073, -0.006259918, 0.013839722, 0.01525116, 0.010299683, -0.0050239563, -0.016357422, 0.005115509, 0.035217285, -0.019958496, 0.0017585754, -0.006095886, 0.016616821, -0.010658264, -0.012550354, -0.022735596, 0.0030899048, 0.066833496, 0.019989014, -0.004436493, 0.0050354004, 0.0028247833, 0.016708374, -0.028427124, -0.019851685, 0.034118652, -0.04711914, 0.020492554, 0.018814087, -0.03062439, -0.060028076, -0.026931763, -0.0074501038, -0.028564453, 0.008338928, 0.015823364, 0.014732361, -0.03692627, -0.05441284, -0.036987305, 0.0063209534, -0.019729614, 0.0042800903, -0.061340332, 0.012268066, -0.009895325, -0.018508911, -0.022354126, -0.008712769, -0.0020999908, 0.008171082, 0.024459839, 0.0045661926, 0.0034103394, 0.016403198, 0.009231567, -0.026184082, 0.021331787, 0.006225586, -0.023101807, -0.004699707, -0.010551453, -0.04486084, 0.012580872, 0.012008667, -0.008369446, 0.02406311, -0.031433105, -0.024261475, 0.02670288, -0.032165527, -0.027359009, 0.017608643, 0.039733887, -0.04135132, -0.035827637, 0.010955811, 0.016433716, 0.0046920776, 0.042419434, 0.011619568, -0.0602417, -0.0657959, 0.023590088, -0.026412964, 0.0075912476, -0.008682251, 0.0006289482, 0.00289917, -0.008399963, -0.0076560974, 0.009803772, 0.030075073, -0.026000977, 0.018478394, -0.027313232, -0.05596924, 0.064086914, 0.025527954, -0.01663208, 0.029846191, 0.03741455, -0.008811951, 0.02003479, 0.033172607, 0.007904053, -0.09918213, -0.040100098, -0.06842041, -0.015464783, -0.013656616, -0.017456055, 0.05859375, -0.005130768, -0.03475952, 0.075805664, 0.050598145, 0.030273438, 0.01637268, 0.016189575, 0.0032730103, -0.03543091, -0.038757324, -0.026123047, -0.0135269165, 0.037994385, -0.04650879, -0.04171753, 0.01675415, -0.021347046, -0.00831604, -0.046173096, 0.014373779, -0.0149002075, 0.030700684, -0.061798096, 0.03894043, 0.005027771, -0.03390503, 0.024139404, -0.0335083, 0.03579712, -0.03894043, 0.0690918, -0.04714966, -0.025863647, -0.016067505, 0.037902832, -0.0008378029, -0.050872803, -0.042816162, -0.06677246, 0.027023315, 0.046844482, -0.017852783, 0.06365967, -0.020050049, -0.011550903, -0.02909851, -0.012680054, 0.021087646, -0.02545166, -0.028289795, 0.023117065, 0.003030777, 0.064575195, -0.040496826, -0.100097656, -0.068847656, 0.014564514, -0.027420044, 0.022521973, -0.0022697449, -0.0059661865, 0.01033783, 0.0101623535, -0.044708252, -0.013015747, 0.0019817352, 0.07763672, -0.017807007, 0.011512756]}, "B00KY4S388": {"id": "B00KY4S388", "original": "Brand: Outland Living\nName: Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19\u201d x W 19\u201d x H 11\u201d with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual\n", "metadata": {"Name": "Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU", "Brand": "Outland Living", "Description": "", "Features": "\u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19\u201d x W 19\u201d x H 11\u201d with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035827637, 0.006919861, -0.05130005, -0.052520752, 0.013145447, 0.009338379, -0.014450073, 0.044433594, -0.043762207, 0.018341064, -0.05480957, 0.04296875, -0.012054443, -0.011070251, 0.0234375, -0.06585693, -0.0022888184, 0.025283813, -0.026290894, -0.04916382, 0.006160736, -0.04812622, -0.027877808, 0.13720703, 0.005264282, -0.026565552, -0.0041770935, -0.02142334, -0.0064697266, -0.011146545, 0.015701294, 0.03186035, 0.038635254, -0.0020656586, -0.04348755, -0.048614502, -0.020874023, -0.005218506, -0.048797607, 0.033172607, 0.015563965, -0.0069465637, -0.036010742, -0.020355225, -0.051605225, -0.0054512024, -0.003458023, 0.014122009, -0.021850586, 0.0008749962, -0.0021915436, 0.006652832, 0.011756897, 0.012237549, -0.004886627, -0.0178833, 0.01084137, -0.011230469, 0.005455017, 0.0041885376, -0.0053634644, 0.016098022, 0.03201294, 0.0075302124, -0.040100098, 0.010429382, 0.094177246, -0.011878967, -0.033691406, -0.06488037, 0.008392334, 0.015670776, 0.012748718, -0.0051193237, -0.011413574, 0.0018577576, 0.016189575, 0.0065078735, 0.021087646, -0.008102417, -0.013496399, 0.011810303, 0.007217407, -0.0680542, 0.019897461, -0.05444336, -0.023406982, 0.0074501038, -0.017242432, -0.03100586, -0.013900757, -0.0036315918, -0.018630981, -0.009651184, -0.0056762695, -0.035125732, -0.054840088, -0.064941406, 0.050720215, 0.03994751, -0.0014123917, -0.029312134, 0.03704834, -0.023590088, 0.006011963, 0.068359375, -0.001033783, -0.017333984, -0.008087158, -0.009147644, -0.0010213852, -0.026870728, 0.01134491, -0.020721436, -0.0137786865, 0.0028629303, -0.0011510849, 0.018936157, 0.0046577454, 0.027435303, -0.016311646, -0.0102005005, 0.009483337, 0.03024292, 0.031311035, 0.014137268, -0.011116028, 0.0058135986, -0.0725708, 0.051635742, -0.011520386, 0.010009766, 0.0039901733, 0.011795044, -0.032928467, -0.02494812, 0.04272461, 0.004470825, 0.005302429, -0.0019483566, -0.0017976761, 0.007396698, 0.026473999, 0.004005432, -0.018188477, 0.032714844, 0.021530151, 0.010696411, 0.012046814, -0.062683105, -0.006416321, -0.003818512, 0.046417236, 0.003232956, -0.0067825317, -0.048950195, 0.037628174, -0.047912598, -0.00982666, -0.06665039, 0.002275467, -0.0031089783, -0.03366089, 0.00084495544, -0.038024902, 0.008384705, 0.020370483, -0.0048599243, 0.012451172, 0.0440979, -0.010437012, 0.06124878, -0.0024051666, 0.0017499924, 0.0048332214, -0.03201294, -0.007686615, 0.10650635, 0.04333496, -0.11236572, -0.054748535, -0.05923462, 0.13830566, -0.03427124, -0.0048599243, -0.008491516, -0.012023926, -0.053344727, 0.014472961, -0.0079574585, 0.011482239, 0.027175903, -0.015701294, -0.026748657, -0.0045661926, 0.040252686, -0.0574646, 0.025436401, -0.02331543, 0.018966675, 0.0050582886, 0.03729248, -0.010887146, 0.014656067, 0.05307007, -0.0036582947, 0.020050049, 0.012718201, 0.028778076, 0.03479004, -0.01802063, 0.006248474, -0.0021457672, -0.061706543, -0.019958496, 0.0078125, -0.0041542053, 0.025177002, 0.015571594, 0.0087509155, 0.044708252, 0.018814087, 0.03186035, 0.0007863045, 0.028076172, -0.018753052, -0.016677856, -0.02784729, 0.045288086, -0.001490593, 0.006542206, 0.040771484, 0.018447876, 0.0025558472, -0.032592773, 0.028442383, 0.03515625, 0.018692017, -0.024932861, 0.010253906, 0.02720642, -0.025878906, -0.013084412, 0.02229309, 0.020217896, -0.02078247, 0.01260376, 0.010597229, -0.041625977, 0.009239197, 0.026351929, 0.011199951, 0.025604248, -0.00074386597, -0.02760315, 0.026138306, -0.028747559, -0.049224854, 0.029815674, -0.0031528473, 0.0058898926, 0.036315918, -0.0022621155, 0.014038086, 0.017044067, -0.032470703, 0.027755737, 0.02218628, -0.0026245117, -0.023742676, 0.024017334, -0.007850647, -0.004306793, -0.029632568, 0.026107788, 0.004058838, -0.014640808, 0.0041122437, 0.0046424866, -0.022521973, -0.0074539185, 0.010978699, 0.02406311, -0.011917114, 0.007385254, 0.013420105, 0.023513794, -0.038238525, -0.024215698, -0.021377563, -0.001830101, 0.014663696, -0.04434204, 0.043426514, -0.033843994, -0.032318115, -0.02394104, 0.003314972, 0.03479004, -0.049621582, -0.010429382, 0.049804688, -0.06774902, 0.06335449, 0.005886078, 0.03253174, 0.006778717, 0.014350891, 0.020965576, -0.018798828, 0.012992859, 0.0041923523, 0.031402588, -0.03466797, 0.06298828, 0.029937744, -0.009841919, 0.055877686, 0.052246094, 0.06323242, -0.012748718, 0.027359009, 0.021408081, 0.014656067, 0.022033691, -0.029754639, -0.014076233, 0.00390625, -0.0042877197, 0.013381958, 0.024978638, 0.008804321, 0.030761719, 0.009902954, -0.008003235, -0.041137695, 0.013809204, 0.008277893, 0.00920105, -0.02810669, 0.032226562, 0.039855957, 0.005290985, 0.028152466, -0.05609131, -0.010940552, 0.00982666, -0.0029182434, -0.027236938, 0.008354187, 0.016967773, -0.00409317, 0.008743286, 0.01586914, 0.008583069, -0.032592773, -0.013877869, -0.010566711, -0.03112793, -0.07861328, -0.0006699562, -0.037231445, -0.06109619, -0.030792236, 0.030715942, 0.027267456, -0.059417725, -0.002313614, 0.0026016235, 0.03237915, 0.027053833, 0.032440186, -0.045013428, -0.04360962, -0.046142578, -0.031433105, 0.038604736, -0.013626099, -0.00011044741, 0.020812988, 0.03567505, 0.036102295, -0.011169434, 0.040924072, 0.016021729, 0.036712646, 0.037994385, 0.052124023, 0.019836426, -0.028060913, 0.020858765, 0.039154053, -0.060058594, 0.004535675, 0.019226074, -0.0031719208, 0.0024795532, -0.0231781, -0.08117676, -0.018630981, -0.08105469, 0.024276733, 0.0027370453, -0.011405945, -0.0022335052, -0.08331299, -0.013214111, -0.059936523, 0.009803772, 0.034301758, -0.0107040405, 0.0016260147, -0.018005371, 0.011444092, -0.014968872, 0.002658844, -0.0019340515, 0.00046753883, -0.05834961, 0.011505127, 0.047790527, -0.033050537, 0.029953003, 0.03265381, -0.032348633, -0.05758667, 0.010940552, 0.0025901794, 0.029571533, 0.053833008, -0.019638062, 0.013801575, -0.017532349, -0.004047394, -0.0042762756, 0.01977539, 0.01058197, -0.0115356445, 0.03945923, -0.023620605, 0.015464783, -0.033203125, -0.027511597, 0.011314392, -0.01474762, -0.0072021484, -0.020690918, 0.0087890625, 0.015075684, -0.00749588, -0.00566864, 0.010009766, 0.026641846, 0.005027771, -0.020477295, -0.025741577, 0.010612488, 0.0463562, 0.015556335, 0.0036067963, -0.003047943, -0.033081055, 0.040222168, 0.010025024, 0.018707275, -0.04260254, 0.052886963, 0.030792236, 0.005657196, -0.0030288696, 0.01928711, 0.008049011, -0.03338623, -0.04611206, 0.031677246, -0.02658081, 0.026657104, 0.010047913, 0.0079574585, -0.04058838, -0.06738281, 0.008666992, -0.07507324, 0.07757568, 0.042297363, -0.034057617, 0.0847168, 0.06982422, -0.034240723, 0.06414795, 0.022033691, 0.021453857, -0.018814087, 0.06390381, -0.04550171, 0.0362854, 0.0041122437, -0.008522034, -0.015571594, -0.017532349, -0.016448975, 0.0073013306, -0.00039601326, 0.0034618378, -0.046722412, -0.010246277, 0.017471313, -0.019805908, -0.008308411, -0.015090942, -0.0056381226, -0.03845215, 0.018798828, 0.01399231, -0.027160645, -0.025222778, 0.0026073456, -0.045013428, -0.02658081, 0.022659302, 0.028518677, 0.008476257, 0.010574341, 0.035858154, -0.018554688, 0.038848877, -0.04763794, 0.0014028549, -0.022994995, 0.037078857, 0.0033931732, 0.0035514832, -0.0037384033, -0.05239868, 0.04333496, -0.026535034, -0.01802063, 0.013511658, -0.008132935, -0.05029297, 0.0022258759, -0.0027046204, 0.0073623657, -0.034576416, -0.0033569336, -0.034332275, -0.018875122, -0.015525818, 0.0075950623, -0.040527344, 0.0054740906, 0.021362305, -0.054107666, -0.039398193, -0.023498535, -0.015022278, -0.028427124, 0.030380249, -0.0051994324, -0.032318115, 0.0055122375, 0.025619507, -0.04284668, -0.01322937, -0.028747559, 0.0014028549, 0.025802612, -0.01121521, 0.07019043, -0.029174805, -0.038970947, -0.015327454, 0.061645508, 0.008125305, 0.051635742, -0.034606934, 0.0019702911, 0.001405716, 0.034576416, 0.02192688, -0.03564453, -0.0016345978, 0.009902954, -0.026672363, -0.05114746, 0.0007081032, 0.03970337, -0.03744507, -0.035308838, -0.03729248, 0.008964539, 0.014518738, 0.012748718, 0.004135132, -0.009994507, 0.0087509155, 0.032043457, -0.06137085, -0.043670654, -0.0022354126, -0.059143066, -0.0057411194, -0.007843018, -0.020889282, 0.08441162, 0.066833496, 0.006500244, -0.012924194, -0.025421143, 0.010673523, -0.015083313, 0.051849365, -0.027679443, -0.029571533, -0.011909485, 0.013473511, -0.076049805, 0.06951904, 0.0051460266, -0.030838013, -0.014083862, 0.0027999878, -0.026489258, -0.058685303, 0.010238647, -0.023208618, 0.02456665, -0.0047721863, -0.023269653, -0.032562256, -0.03366089, -0.015625, 0.022018433, 0.003370285, 0.039093018, -0.018173218, 0.011001587, 0.00881958, -0.008178711, 0.009109497, 0.034576416, 0.008872986, -0.0038452148, -0.015487671, 0.008125305, 0.0037975311, 0.0044136047, 0.008010864, -0.025665283, -0.03253174, 0.013122559, 0.027938843, -0.044891357, 0.07946777, 0.035736084, 0.054992676, 0.0007967949, -0.0028419495, 0.040130615, -0.032348633, -0.056121826, 0.0056037903, 0.00051403046, -0.03643799, -0.020584106, -0.008918762, -0.0073890686, 0.03314209, -0.04498291, 0.017044067, 0.024993896, -0.046691895, 0.06488037, 0.027252197, 0.0054397583, -0.05303955, 0.081604004, -0.014793396, -0.020202637, -0.049591064, 0.032348633, 0.022445679, 0.0036258698, -0.049316406, 0.006072998, 0.058502197, -0.031341553, -0.011657715, 0.026977539, 0.05758667, -0.034454346, -0.02822876, 0.046539307, -0.016159058, -0.014877319, 0.025939941, -0.01852417, -0.021209717, 0.0065727234, -0.042510986, 0.03149414, -0.0038814545, -0.03967285, -0.02748108, 0.015182495, -0.037628174, -0.015052795, -0.0647583, 0.02708435, 0.012374878, -0.035949707, 0.044952393, 0.011062622, 0.016830444, -0.07891846, -0.068603516, -0.043945312, 0.033294678, 0.0030097961, 0.061065674, -0.029159546, -0.024505615, 0.0040626526, -0.008728027, 0.01878357, -0.020217896, -0.03665161, -0.022994995, 0.0423584, 0.06210327, 0.007183075, -0.01399231, 0.06512451, -0.029022217, -0.03152466, -0.024719238, 0.039886475, -0.03753662, -0.058380127, 0.090270996, 0.024719238, 0.017730713, 0.004085541, -0.015144348, -0.028564453, 0.003282547, -0.012588501, -0.02998352, -0.009338379, -0.041412354, 0.00995636, 0.010322571, 0.0067863464, -0.009796143, 0.05609131, 0.0047912598, -0.021530151, -0.020492554, -0.007774353, 0.0040893555, -0.024642944, 0.009063721, -0.011161804, 0.0009469986, -0.03488159, 0.001502037, -0.03024292, -0.00907135, 0.0011034012, 0.00356102, 0.032806396, -0.021652222, 0.0099487305, 0.017852783, 0.025238037, 0.032562256, 0.022399902, -0.052642822, -0.029434204, 8.302927e-05, 0.017242432, -0.0043640137, -0.030883789, 0.005367279, 0.0039749146, -0.011199951, 0.04888916, -0.011856079, -0.0062179565, 0.008102417, 0.027145386, 0.022720337, 0.014190674, -0.0011463165, 0.020004272, -0.011405945, -0.045166016, 0.0024051666, 0.039978027, -0.037994385, -0.01737976, -0.056488037, 0.022232056, 0.041534424, -0.0025596619, 0.044799805, -0.031799316, 0.06298828, -0.02645874, -0.010414124, 0.0033664703, -0.056152344, 0.015640259, 0.01486969, 0.049072266, -0.0013151169, -0.006965637, -0.010864258, 0.008544922, -0.006126404, 0.030014038, 0.052001953, 0.0051612854, 0.0022964478, -0.038269043, 0.018417358, -0.003408432, -0.036315918, -0.026809692, -0.028900146, 0.027359009, -0.028259277, -0.009719849, -0.017593384, -0.00013399124, 0.054992676, -0.01576233, 0.06756592, -0.03643799, 0.011566162, -0.0026893616, 0.017562866, -0.027297974, -0.04119873, 0.0043563843, -0.0032615662, 0.01159668, 0.0018577576, 0.043060303, 0.044036865, 0.018676758, -0.011329651, 0.021133423, -0.044036865, 0.002840042, 0.0014839172, -0.013290405, -0.04473877, 0.007423401, 0.005748749, -0.008369446, 0.0035858154, -0.019836426, -0.011680603, 0.015716553, -0.009727478, -0.019958496, 0.02053833, -0.03692627, 0.0068359375, 0.01234436, 0.03050232, -0.047210693, 0.017242432, 0.0010070801, 0.015640259, 0.012504578, 0.06842041, 0.023406982, -0.017501831, -0.047790527, -0.051361084, -0.001958847, -0.049102783, 0.011924744, -0.041107178, 0.019958496, 0.029251099, -0.050689697, 0.0019454956, 0.0041007996, -0.016479492, 0.030532837, 0.006248474, 0.018218994, -0.020553589, -0.012237549, 0.022964478, -0.015655518, -0.011856079, -0.022583008, -0.018127441, 0.039245605, -0.009391785, -0.008834839, -0.00881958, -0.019470215, -0.008888245, -0.02758789, -0.0524292, 0.024124146, -0.028961182, -0.034942627, -0.014274597, 0.02166748, -0.016525269, -0.051483154, -0.028060913, -0.003376007, 0.029541016, 0.0209198, 0.03125, -0.0026950836, -0.08673096, -0.042388916, 0.048614502, -0.023254395, -0.049102783, 0.00522995, 0.011413574, 0.026306152, 0.016662598, 0.04006958, 0.03945923, 0.035064697, 0.00121212, -0.008270264, -0.03869629, -0.0143585205, 0.06561279, 0.001789093, 0.004585266, -0.04940796, 0.00409317, 0.008995056, 0.018478394, 0.016784668, 0.007888794, -0.094055176, -0.017425537, -0.050354004, 0.0074501038, 0.02267456, -0.04385376, 0.0625, 0.010383606, -0.035858154, 0.03567505, 0.031341553, 0.049621582, 0.013542175, -0.030151367, 0.025665283, -0.011360168, -0.029418945, 0.015449524, -0.021865845, 0.0025634766, 0.00030446053, -0.044128418, -0.0075035095, -0.0007414818, -0.011711121, -0.022537231, 0.003112793, 0.01776123, 0.011772156, -0.03579712, -0.009819031, -0.011802673, -0.018508911, 0.02418518, -0.0007481575, 0.029327393, -0.014328003, -0.00299263, -0.017196655, -0.026779175, -0.026016235, 0.029586792, -0.035247803, -0.025512695, -0.03289795, -0.042297363, -0.008346558, 0.037078857, -0.024658203, 0.04156494, -0.027740479, -0.01878357, -0.038116455, -0.02381897, 0.009780884, -0.045074463, -0.051330566, 0.04537964, 0.01776123, 0.060058594, -0.02520752, -0.045410156, -0.050720215, 0.04034424, -0.015579224, -0.0041389465, 0.045959473, -0.028335571, -0.0022945404, 0.058746338, -0.0340271, -0.049438477, 0.017456055, 0.07885742, 0.038146973, 0.017105103]}, "B01M4SA4PG": {"id": "B01M4SA4PG", "original": "Brand: GASPRO\nName: GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More\nDescription:

      Product Specification

      -High pressure LPG hose

      -Inlet Pressure:25-250PSIG

      -Outlet Pressure :0-20PSIG

      -Flow Capacity :122000 BTU/Hr

      -Certificate: CSA

      -Length of hose:4feet/48inch


      How to use it?

      1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

      2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

      3.Installs is not complex at all, even you don't need any tool required.

      This is an essential part of converting your fire pit/table to a best flame


      What equipment can it be used for?

      \u00a0Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,\u00a0 turkey fryers,torches and variety of high pressure applications


      Are you still worried about not being able to accurately adjust the temperature of the smoker/range? \u00a0

      This regulator will not make your smoker/range temperature too high or low\uff0cYou can use it to precisely adjust the temperature of your device.


      Are you still worried about the small flame of your grill?

      \u00a0If you have this propane regulator,you can really crank up the flames for quicker\uff0cMade your grill heat better than when it was new.


      Warm Tips

      \u00a01. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

      2.\u00a0Not suitable for appliances which need low pressure regulator

      \nFeatures: [Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature.\n[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8\u201d male flare connector\n[Extra gift] Come with pipe fitting 3/8\" flare M x 1/8\" MNPT Orifice, it fits all Propane Appliances with 1/8 Male\n[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder.\n[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off\n", "metadata": {"Name": "GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More", "Brand": "GASPRO", "Description": "

      Product Specification

      -High pressure LPG hose

      -Inlet Pressure:25-250PSIG

      -Outlet Pressure :0-20PSIG

      -Flow Capacity :122000 BTU/Hr

      -Certificate: CSA

      -Length of hose:4feet/48inch


      How to use it?

      1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

      2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

      3.Installs is not complex at all, even you don't need any tool required.

      This is an essential part of converting your fire pit/table to a best flame


      What equipment can it be used for?

      \u00a0Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,\u00a0 turkey fryers,torches and variety of high pressure applications


      Are you still worried about not being able to accurately adjust the temperature of the smoker/range? \u00a0

      This regulator will not make your smoker/range temperature too high or low\uff0cYou can use it to precisely adjust the temperature of your device.


      Are you still worried about the small flame of your grill?

      \u00a0If you have this propane regulator,you can really crank up the flames for quicker\uff0cMade your grill heat better than when it was new.


      Warm Tips

      \u00a01. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

      2.\u00a0Not suitable for appliances which need low pressure regulator

      ", "Features": "[Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature.\n[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8\u201d male flare connector\n[Extra gift] Come with pipe fitting 3/8\" flare M x 1/8\" MNPT Orifice, it fits all Propane Appliances with 1/8 Male\n[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder.\n[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.023513794, -0.00945282, -0.017547607, -0.0129776, -0.033294678, 0.0035552979, -0.021759033, -0.018463135, 0.03213501, 0.019439697, -0.015899658, 0.010063171, -0.009719849, -0.022567749, -0.0050201416, -0.020629883, 0.02418518, 0.0011548996, 0.0206604, -0.007270813, -0.0062026978, 0.018218994, -0.013023376, 0.043762207, 0.02709961, 0.008514404, 0.028656006, -0.008522034, 0.03466797, 0.0011110306, 0.033691406, -0.02357483, 0.030151367, 0.019973755, -0.033294678, -0.04397583, 0.003271103, -0.014724731, -0.029525757, 0.02861023, 0.0035495758, -0.0074386597, -0.031799316, 0.03717041, -0.04788208, -0.02368164, -0.010864258, -0.0206604, 0.019058228, 0.01927185, 0.0032997131, 0.018081665, 0.009361267, -0.011131287, -0.010658264, -0.032958984, 0.009902954, -0.03503418, 0.004047394, -0.016799927, 0.0074768066, 0.0064315796, 0.027008057, 0.03164673, -0.010536194, 0.002298355, 0.08679199, -0.017364502, -0.00749588, 0.003004074, 0.038482666, 0.024017334, 0.010795593, 0.013031006, -0.050628662, -0.02607727, 0.050476074, -0.02897644, -0.003818512, 0.0054092407, 0.0184021, 0.0129852295, 0.028167725, 0.0054626465, 0.0076675415, 0.030731201, -0.010597229, -0.019119263, -0.02217102, -0.029876709, -0.015464783, -0.008834839, -0.030029297, 0.019851685, -0.01826477, -0.022064209, -0.0031089783, -0.08868408, 0.053710938, 0.0066223145, 0.052001953, -0.05126953, 0.051940918, 0.028671265, 0.01626587, 0.06665039, -0.017715454, 0.0013341904, 0.021347046, -0.004673004, 0.00041866302, -0.03353882, -0.032592773, -0.037719727, -0.036071777, 0.04437256, -0.010543823, -0.028396606, 0.008018494, -0.023406982, -0.01763916, -0.002418518, 0.040252686, -0.026641846, -0.0063819885, 0.0041999817, -0.018600464, -0.03930664, -0.06274414, 0.019195557, 0.0025234222, -0.018508911, 0.060546875, 0.1303711, 0.036224365, -0.01020813, 0.032226562, 0.0036354065, 0.017059326, 0.014839172, -0.00674057, -0.05618286, -0.032958984, 0.022766113, -0.010902405, 0.018203735, 0.03302002, 0.016815186, -0.0037765503, -0.035705566, -0.030731201, 0.007797241, 0.058044434, 0.0045928955, -0.051696777, -0.004348755, -0.0010709763, -0.00434494, -0.022613525, -0.040985107, -0.012191772, -0.025146484, -0.024291992, -0.015136719, -0.037322998, 0.030654907, 0.013137817, -0.0064430237, 0.014732361, 0.046905518, -0.0010280609, 0.03439331, 0.072143555, -0.0006322861, -0.016189575, -0.0129776, -0.03616333, 0.058746338, 0.099243164, -0.10821533, -0.042297363, -0.039215088, 0.14880371, -0.031158447, 0.0045394897, -0.045196533, 0.006401062, -0.047607422, 0.0013313293, 0.0044441223, 0.014923096, 0.055755615, 0.006980896, -0.055541992, 0.0143585205, 0.024368286, -0.021118164, 0.02619934, -0.0051956177, -0.006603241, -0.040405273, 0.010528564, 0.015197754, -0.0045547485, 0.036987305, 0.003583908, 0.005962372, 0.03475952, 0.038482666, 0.00258255, -0.019927979, -0.014411926, 0.022842407, -0.039794922, -0.052490234, 0.026321411, -0.015991211, -0.006614685, 0.008926392, 0.00068330765, 0.055358887, -0.017318726, 0.024124146, 0.021087646, 0.010055542, -0.0184021, 0.0044898987, -0.015838623, 0.0075569153, 0.00566864, -0.0014209747, 0.009635925, 0.07714844, 0.037139893, -0.023880005, 0.04425049, 0.087402344, 0.060333252, -0.04824829, -0.027542114, 0.008514404, -0.03289795, -0.054656982, -0.022979736, -0.00667572, -0.046783447, -0.012489319, -0.00223732, -0.040618896, 0.030258179, 0.0463562, 0.046081543, 0.0116119385, -7.5519085e-05, -0.036224365, 0.047210693, -0.049468994, 0.020431519, -0.046539307, 0.03778076, -0.023468018, 0.025772095, 0.06359863, -0.018814087, 0.06781006, -0.0017671585, 0.03970337, 0.01876831, -0.04034424, 0.018203735, 0.018936157, -0.0055656433, -0.013214111, -0.0035133362, -0.034576416, 0.0027256012, -0.021011353, 0.035827637, -0.04107666, -0.024383545, -0.008850098, -0.0058403015, -0.0025577545, -0.007507324, 0.044036865, -0.018722534, -0.008514404, -0.034088135, 0.023956299, -0.014030457, 0.027755737, -0.02999878, -0.013999939, 0.008842468, 0.010398865, -0.053253174, 0.07080078, -0.019927979, 0.0119018555, -0.029434204, 0.033111572, 0.052001953, -0.041137695, 0.030914307, 0.012237549, 0.003435135, 0.032409668, 0.008094788, 0.033447266, -0.01701355, 0.03668213, 0.055755615, 0.027557373, -0.0118637085, 0.03857422, 0.0074882507, 0.016021729, 0.022232056, 0.030380249, 0.03086853, -0.018798828, -0.01386261, -0.011741638, -0.018676758, 0.012237549, -7.3969364e-05, -0.022857666, -0.0013065338, -0.045532227, 0.020996094, 0.042419434, -0.01939392, 0.009651184, -0.025344849, 0.010864258, -0.020874023, -0.0062789917, 0.052642822, -0.008255005, -0.07861328, -0.036621094, -0.03265381, -0.0052948, 0.026306152, -0.058410645, -0.015777588, 0.03274536, -0.0016117096, 0.005115509, -0.012420654, 0.03012085, -0.0073127747, -0.0034866333, 0.015426636, 0.0076789856, 0.031585693, -0.008361816, -0.021957397, 0.0030155182, -0.06793213, -0.016296387, -0.024612427, -0.059387207, -0.058013916, 0.06774902, 0.0010814667, -0.079589844, -0.006061554, 0.0020446777, 0.02571106, -0.0036010742, -0.0021381378, -0.024795532, -0.036102295, -0.010566711, -0.021255493, 0.03869629, -0.017486572, 0.02154541, 0.023773193, 0.03201294, 0.04626465, -0.020950317, 0.023132324, 0.024230957, 0.04055786, 0.07849121, 0.027374268, 0.021987915, -0.050811768, -0.0036945343, 0.027511597, -0.047851562, -0.004497528, -0.014053345, -0.005622864, -0.0046691895, -0.020996094, -0.02861023, -0.008506775, -0.026016235, -0.0070266724, -0.0024662018, -0.017654419, -0.012832642, -0.087768555, -0.029312134, -0.033935547, 0.040252686, 0.023391724, -0.01348114, 0.028808594, -0.015281677, 0.00038313866, -0.053100586, 0.026062012, -0.03552246, -0.018157959, -0.025344849, 0.057769775, 0.068847656, -0.076416016, 0.009315491, 0.049987793, -0.030639648, 0.0021839142, 0.013824463, 0.023361206, -0.029800415, 0.022918701, 0.0033302307, -0.037750244, -0.059143066, -0.023376465, -0.009506226, 0.030227661, 0.046783447, 0.010284424, 0.046539307, -0.012084961, -0.09118652, -0.026046753, -0.03414917, -0.0044174194, 0.0020809174, -0.044769287, -0.03050232, -0.080322266, 0.0041275024, -0.052764893, -0.0013570786, 0.0049819946, 0.047546387, 0.01890564, 0.0072517395, 0.05441284, 0.030441284, 0.047180176, -0.021697998, 0.00522995, -0.0042304993, -0.026824951, 0.05847168, 0.00041866302, -0.011375427, -0.011756897, -0.013267517, 0.017715454, -0.0014572144, -0.016189575, 0.0076293945, 0.0362854, -0.02659607, -2.5629997e-05, 0.0158844, 0.012817383, 0.0054512024, -0.01889038, 0.03286743, -0.0036334991, -0.044921875, 0.014640808, -0.060424805, 0.047668457, 0.029800415, -0.01574707, 0.048034668, 0.03643799, -0.02029419, 0.0063056946, 0.059906006, 0.016952515, 0.00027918816, 0.059814453, 0.011001587, -0.054138184, 0.0009737015, -0.0073928833, 0.004928589, -0.017486572, -0.028289795, 0.018127441, -0.0054855347, -0.021392822, -0.032958984, 0.013343811, 0.0059127808, -0.009529114, 0.011436462, -0.07562256, 0.011497498, -0.03781128, -0.028442383, 0.019866943, -0.0340271, -0.035949707, 0.0012435913, 0.0038166046, -0.03475952, 0.0039634705, -0.0043258667, -0.0027198792, 0.021347046, 0.03994751, 0.0017566681, 0.010520935, -0.030517578, 0.0031604767, -0.032836914, 0.019515991, 0.053009033, 0.02645874, 0.012008667, -0.049743652, -0.0024547577, -0.017456055, -0.010734558, 0.03161621, 0.01586914, -0.06427002, -0.011154175, -0.0068359375, -0.022003174, -0.03503418, -0.0075569153, -0.027297974, -0.009773254, 0.03286743, -0.031951904, 0.005584717, 0.016586304, 0.0026874542, -0.029632568, -0.029922485, -0.03768921, 0.02192688, -0.021972656, -0.0050201416, -0.0059776306, 0.019989014, 0.0020179749, 0.033081055, -0.033050537, -0.01838684, -0.071777344, 0.0029354095, 0.042510986, 0.010414124, -0.0032577515, -0.018753052, -0.014045715, -0.013961792, 0.033355713, -0.025146484, -0.0014219284, -0.03137207, -0.017410278, -0.0061950684, 0.044555664, 0.06542969, -0.022155762, 0.008773804, -0.028396606, -0.036193848, -0.077941895, 0.022399902, 0.028076172, -0.010971069, -0.03781128, -0.007171631, 0.05316162, 0.008934021, 0.021591187, 0.026550293, 0.008712769, -0.00623703, -0.009162903, -0.1104126, -0.028076172, -0.00995636, 0.0011529922, -0.0017528534, 0.004070282, -0.005619049, 0.055389404, 0.028793335, 0.017822266, 0.03375244, 0.019195557, 0.03036499, -0.030471802, -0.02281189, -0.010688782, 0.02281189, -0.011138916, 0.0012702942, -0.028503418, 0.02407837, 0.01020813, -0.0345459, 0.003824234, -0.016021729, -0.0036373138, -0.009780884, -0.002998352, 0.01512146, 0.032714844, -0.016357422, -0.045837402, 0.004890442, -0.053253174, -0.0016345978, 0.01625061, 0.033721924, 0.020095825, -0.0513916, 0.0015354156, -0.032592773, -0.030197144, 0.030899048, 0.0011377335, 0.020996094, -0.015014648, 0.034332275, 0.024841309, 0.00819397, 0.017852783, -0.017868042, -0.007507324, -0.049194336, 0.00019657612, -0.0026416779, -0.022491455, 0.022567749, 0.02798462, 0.01247406, 0.0077552795, 0.044158936, 0.007820129, 0.00090265274, -0.0423584, 0.014335632, 0.00818634, -0.05218506, 0.07080078, -0.034332275, -0.00036168098, 0.04083252, -0.02130127, 0.05935669, 0.0032749176, 0.0033168793, 0.010398865, -0.000109910965, -0.00869751, -0.047088623, 0.05899048, -0.0074920654, -0.004135132, -0.044921875, 0.0025367737, -0.018875122, 0.013153076, 0.0143966675, -0.03277588, 0.026275635, 0.010360718, -0.019973755, 0.02482605, -0.018585205, -0.03314209, -0.011604309, 0.0042266846, -0.052459717, -0.018615723, 0.008934021, -0.0057029724, -0.0057640076, 0.019638062, -0.049713135, 0.0413208, 0.0066070557, -0.07446289, -0.035339355, -0.016418457, 0.010398865, -0.02758789, -0.011711121, -0.0098724365, 0.008621216, -0.016967773, 0.0039043427, 0.006855011, 0.005302429, -0.052734375, -0.016738892, 0.003604889, 0.031951904, 0.0095825195, 0.04196167, -0.012359619, -0.044433594, -0.008979797, 0.0010204315, 0.009231567, -0.029815674, -0.012664795, -0.009300232, -0.02822876, -0.033416748, -0.0463562, -0.0050468445, 0.061157227, -0.053222656, -0.06542969, -0.006641388, 0.014930725, 0.0019874573, -0.0036773682, 0.066589355, 0.038330078, 0.0014972687, 0.024765015, 0.00010210276, -0.02897644, 0.018127441, 0.0066108704, -0.016220093, -0.07910156, -0.0345459, -0.048095703, 0.0030879974, -0.005882263, -0.03982544, 0.019805908, -0.02279663, 0.040649414, -0.039642334, -0.016937256, -0.031066895, -0.014450073, 0.010322571, 0.009124756, 0.02420044, -0.010437012, 0.036071777, -0.082214355, -0.067871094, 0.0073623657, 0.0115356445, -0.023956299, 0.02949524, -0.008979797, 0.018936157, -0.017547607, 0.014060974, 0.014343262, -0.026504517, -0.012123108, 0.020690918, -0.00459671, 0.048797607, -0.068237305, 0.00041747093, -0.0067367554, -0.00048327446, -0.008377075, 0.016723633, -0.06463623, -0.03527832, -0.0014648438, 0.06072998, -0.008880615, -0.05307007, 0.00365448, 0.019439697, -0.002714157, -0.045074463, -0.062683105, -0.0121536255, 0.013031006, -0.040374756, -0.0063705444, -0.0068855286, -0.0128479, -0.01625061, 0.034118652, 0.006378174, -0.055358887, 0.064331055, -0.024154663, -0.019165039, 0.01914978, -0.008377075, 0.053466797, -0.011474609, -0.005718231, -0.0044555664, 0.008323669, -0.024612427, -0.016494751, 0.024414062, 0.023712158, -0.0028095245, -0.057495117, 0.029556274, 0.04650879, -0.07269287, -0.017730713, -0.012046814, 0.006252289, -0.03704834, -0.029907227, -0.00819397, -0.03604126, 0.023391724, 0.03994751, 0.04537964, -0.00042247772, 0.05090332, -0.016952515, -0.016998291, -0.010101318, -0.014549255, 0.0105896, -0.013145447, -0.020080566, 0.005168915, -0.049926758, 0.0046691895, 0.016616821, -0.026321411, 0.0335083, -0.031707764, 0.011810303, -0.019638062, 0.037963867, -0.01852417, -0.0075683594, -0.011131287, 0.0012207031, 0.02909851, 0.04751587, -0.0063285828, 0.014251709, -0.044128418, -0.013618469, 0.008979797, -0.02458191, 0.016586304, 0.036865234, -0.05593872, -0.078308105, -0.048797607, -0.020812988, -0.04296875, 0.006084442, 0.04458618, -0.035339355, 0.04849243, 0.009292603, 0.008674622, 0.074401855, 0.025161743, 0.029510498, -0.031311035, 0.018707275, 0.0022087097, -0.007385254, 0.0015926361, -0.024246216, -0.016815186, 0.014862061, -0.009674072, 0.0008530617, -0.011428833, -0.0054473877, -0.0047454834, -0.014335632, -0.010253906, 0.004749298, 0.00022804737, 0.02319336, -0.026855469, 0.033172607, -0.031463623, -0.07501221, -0.043029785, 0.00472641, -0.04647827, 0.02758789, 0.027114868, -0.007423401, 0.024749756, -0.007987976, -0.022613525, -0.03375244, 0.0050849915, 0.0134887695, 0.009841919, -0.014190674, 0.036102295, -0.020141602, -0.050354004, -0.05026245, 0.020523071, -0.081604004, -0.0046806335, -0.026016235, 0.025497437, 0.0141067505, -0.0069999695, 0.008216858, 0.08642578, -0.0008831024, -0.0021533966, -0.00762558, -0.048553467, -0.029510498, 0.032989502, 0.0034923553, -0.031707764, -0.0413208, 0.031707764, 0.01574707, 0.032836914, 0.01524353, 0.03387451, -0.03253174, 0.006210327, -0.023742676, -0.035064697, 0.004142761, -0.024536133, 0.028686523, 0.013648987, -0.050933838, -0.0029315948, 0.007461548, 0.025283813, 0.038848877, 0.012237549, 0.015281677, -0.018951416, -0.082336426, -0.0017929077, -0.015563965, 0.009880066, 0.04626465, -0.011680603, -0.009147644, 0.011276245, -0.005393982, -0.005558014, 0.004802704, 0.0048217773, -0.0016479492, -0.018600464, 0.033203125, -0.01890564, -0.01737976, -0.011779785, -0.04159546, -0.04135132, 0.019760132, 0.026626587, -0.033172607, -0.022567749, -0.016830444, 0.0022945404, -0.005634308, -0.05227661, -0.019927979, 0.016479492, 0.015594482, -0.028457642, 0.04260254, -0.015174866, 0.033294678, 0.0041236877, -0.03086853, 0.026443481, 0.026473999, 0.0012693405, -0.06542969, 0.038024902, 0.013366699, 0.079833984, -0.021530151, -0.04333496, -0.055541992, 0.028182983, 0.020950317, -0.025924683, 0.055755615, -0.009605408, 0.0028305054, 0.018157959, -0.026107788, -0.026641846, 0.01361084, 0.01979065, -0.00548172, 0.005306244]}, "B01M2DKPX0": {"id": "B01M2DKPX0", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure\nDescription: Features:
      \u25cf Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

      \u25cf Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

      \u25cf Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

      \u25cf Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

      Specification:
      - Low Pressure LPG hose
      -Inlet Pressure: 25-250PSI
      -Outlet Pressure: 11\"W.C.
      -Flow Capacity: 95000 BTU/Hour
      -Certificate: CSA -Hose Length: 6feet/72inch

      Warning: Only for OUTDOOR Use.\nFeatures: \u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Diverse Use\u3011Fits for propane grill, camp stove, fire pit, heater, water heater, etc\n\u3010100% Safety\u3011Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank\n\u3010Control Gas Flow\u3011The Outlet Pressure of the regulator is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels\n\u3010Nice Length\u3011 6 FT long enough hose allows for flexible configurations\n", "metadata": {"Name": "GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure", "Brand": "GASPRO", "Description": "Features:
      \u25cf Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

      \u25cf Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

      \u25cf Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

      \u25cf Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

      Specification:
      - Low Pressure LPG hose
      -Inlet Pressure: 25-250PSI
      -Outlet Pressure: 11\"W.C.
      -Flow Capacity: 95000 BTU/Hour
      -Certificate: CSA -Hose Length: 6feet/72inch

      Warning: Only for OUTDOOR Use.", "Features": "\u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Diverse Use\u3011Fits for propane grill, camp stove, fire pit, heater, water heater, etc\n\u3010100% Safety\u3011Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank\n\u3010Control Gas Flow\u3011The Outlet Pressure of the regulator is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels\n\u3010Nice Length\u3011 6 FT long enough hose allows for flexible configurations", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.002029419, 0.0036525726, -0.028060913, -0.017974854, -0.0024662018, -0.016448975, -0.0011510849, -0.0071411133, 0.0021781921, 0.0066871643, -0.010154724, 0.024368286, -0.0022602081, -0.027191162, 0.018875122, -0.02319336, 0.0033035278, 0.055114746, 0.028778076, -0.015899658, -0.00390625, -0.0068206787, -0.022888184, 0.061187744, 0.017486572, 0.005897522, 0.03930664, -0.0020217896, 0.020553589, 0.012893677, 0.023788452, -0.024856567, 0.037597656, 0.008773804, -0.031555176, -0.03692627, 0.00299263, -0.017303467, -0.03616333, 0.024215698, 0.0030822754, -0.0023040771, -0.012184143, 0.010650635, -0.03253174, -0.030410767, 0.013183594, -0.008766174, 0.0066108704, -0.0007619858, -0.010627747, 0.0138549805, -0.007774353, 6.8068504e-05, 0.00409317, -0.0048332214, 0.009986877, -0.030395508, 0.0037498474, -0.005466461, 0.012207031, 0.029022217, 0.020477295, 0.022750854, -0.027297974, 0.035247803, 0.06512451, -0.03427124, -0.0051651, -0.018173218, 0.007797241, 0.005039215, 0.0109939575, 0.012878418, -0.05645752, -0.017089844, 0.034423828, -0.03817749, 0.0256958, 0.0036373138, 0.00030136108, -0.023483276, 0.020828247, 0.009628296, 0.0051345825, 0.032592773, -0.01713562, -0.0149002075, -0.016693115, -0.04058838, -0.018066406, 0.012588501, -0.044555664, -0.010253906, -0.021057129, -0.02104187, 0.009376526, -0.0791626, 0.039794922, 0.008842468, 0.039489746, -0.049743652, 0.048950195, 0.01676941, 0.0055122375, 0.083740234, -0.006504059, 0.013114929, 0.019592285, -0.0073165894, 0.02456665, -0.04473877, -0.017318726, -0.020874023, -0.022369385, 0.011421204, -0.030380249, -0.023071289, 0.006465912, -0.034851074, -0.037506104, -0.033355713, 0.040496826, 0.022827148, 0.021347046, 0.02482605, -0.0076408386, -0.00894165, -0.051727295, 0.016113281, -0.0072669983, 0.008415222, 0.031982422, 0.07562256, -0.0067634583, -0.018630981, 0.03237915, -0.012397766, 0.0005879402, 0.016586304, -0.023956299, -0.05441284, -0.02720642, 0.005619049, -0.012184143, -0.0026245117, 0.03289795, 0.021972656, 0.002954483, -0.02053833, -0.016159058, 0.013122559, 0.054748535, 0.013061523, -0.015525818, 0.0030937195, 0.03729248, -0.020812988, -0.03086853, -0.052520752, -0.046417236, -0.015281677, 0.0209198, -0.056793213, -0.049072266, 0.013694763, 0.00083589554, -0.0039863586, 0.0062561035, 0.042114258, -0.034484863, 0.06185913, 0.03967285, 0.00019049644, -0.0017414093, -0.033081055, -0.0692749, 0.06341553, 0.09515381, -0.16540527, -0.06311035, -0.042419434, 0.1262207, -0.01550293, 0.0063171387, -0.023666382, 0.006958008, -0.02067566, -0.0014896393, 0.0062713623, 0.012390137, 0.043426514, -0.0042037964, -0.04925537, 0.014472961, 0.044067383, -0.024795532, 0.03942871, -0.0030078888, -0.029083252, -0.01763916, 0.021377563, -0.0037288666, -0.0075683594, 0.031982422, -0.0014419556, 0.005241394, 0.032714844, 0.012519836, 0.017471313, -0.012382507, -0.018173218, 0.02520752, -0.06323242, -0.033935547, 0.0070762634, -0.00409317, -0.03668213, 0.016906738, -0.017974854, 0.04788208, 0.014808655, 0.006088257, 0.036834717, -0.004825592, -0.03451538, 0.0037059784, -0.0064086914, -0.020751953, 0.01991272, -0.03503418, 0.004951477, 0.08831787, 0.03579712, -0.03189087, 0.04574585, 0.07757568, 0.076293945, -0.05508423, -0.026489258, 0.007587433, -0.04055786, -0.0635376, -0.022766113, -0.043640137, -0.050628662, -0.0026283264, 0.00080776215, -0.077819824, -0.009552002, 0.08251953, 0.044281006, 0.009391785, 0.007205963, -0.05557251, 0.040008545, -0.042510986, 0.0011386871, -0.059143066, 0.039794922, -0.0026664734, 0.017471313, 0.036712646, -0.02243042, 0.022018433, 0.038879395, 0.024765015, 0.01625061, -0.020553589, 0.041992188, 0.011047363, -0.040802002, -0.013587952, 0.0013055801, -0.020050049, 0.0023822784, -0.03515625, 0.03012085, -0.033447266, -0.023117065, -0.003484726, 0.02645874, 0.005886078, -0.01676941, 0.02104187, -0.014350891, -0.0016069412, -0.033203125, 0.017913818, -0.02420044, 0.021087646, -0.012466431, -0.017364502, 0.0184021, 0.022598267, -0.060699463, 0.07696533, -0.014343262, 0.021575928, -0.027633667, 0.0069847107, 0.041503906, -0.050720215, 0.016555786, -0.004852295, -0.01423645, -0.014015198, 0.013313293, 0.0031528473, -0.03302002, -0.008575439, 0.032989502, 0.019638062, -0.036865234, 0.031799316, 0.016738892, -0.00548172, 0.015716553, 0.040252686, 0.05923462, 0.0079422, -0.009140015, -0.01890564, -0.0027770996, 0.011909485, -0.007003784, -0.004852295, -0.011528015, -0.01134491, -0.004535675, 0.012496948, -0.016067505, -0.008178711, 0.023422241, 0.01335907, 0.009033203, -0.01675415, 0.062042236, 0.0006403923, -0.06262207, -0.011184692, -0.045440674, -0.013175964, 0.020629883, -0.057617188, -0.017654419, 0.01448822, 0.004295349, -0.0116119385, -0.02607727, 0.026031494, -0.007160187, 0.013786316, -0.02507019, 0.016967773, 0.017684937, -0.032196045, -0.03161621, 0.008773804, -0.07366943, -0.017471313, -0.024291992, -0.056732178, -0.059692383, 0.0847168, -0.0056037903, -0.076416016, -0.019607544, 0.0071105957, -0.002319336, 0.0005993843, 0.009094238, -0.034118652, -0.023101807, -0.0063972473, -0.011474609, 0.008453369, -0.026367188, 0.016738892, 0.006542206, 0.025527954, 0.018096924, 0.0050849915, 0.0057640076, 0.022979736, 0.012870789, 0.07171631, 0.024307251, 0.04623413, -0.03717041, 0.022125244, 0.010467529, -0.058013916, -0.009063721, -9.8347664e-05, -0.010398865, 0.0023918152, -0.0021743774, -0.05456543, -0.018157959, -0.02029419, -0.009170532, 0.0026493073, -0.041778564, 0.017852783, -0.11138916, -0.0033493042, -0.03062439, 0.034057617, 0.027908325, 0.0052108765, 0.005672455, 0.0073661804, -0.018005371, -0.038635254, 0.01713562, -0.013084412, -0.013031006, -0.03048706, 0.018463135, 0.06512451, -0.084106445, 0.015777588, 0.037994385, -0.016921997, 0.0154953, 0.010322571, 0.015213013, -0.011695862, 0.0256958, 0.006752014, -0.029251099, -0.043914795, 0.0019130707, 0.040374756, 0.051513672, 0.014198303, -0.03451538, 0.014709473, -0.015136719, -0.07373047, -0.022277832, -0.029571533, -0.037597656, 0.014793396, -0.06359863, -0.0012311935, -0.049987793, 0.0032482147, -0.05496216, 0.006793976, 0.003080368, 0.07891846, 0.027877808, 0.01222229, 0.05026245, 0.025802612, 0.04840088, -0.011184692, 0.0050582886, 0.002878189, -0.0368042, 0.045928955, 0.014221191, 0.012672424, -0.034973145, -0.0027866364, 0.012893677, 0.013877869, -0.024215698, 0.0027580261, 0.051086426, -0.043914795, -0.023742676, 0.026107788, 0.006576538, -0.013122559, -0.010894775, 0.045715332, 0.00843811, -0.045684814, 0.0030136108, -0.08050537, 0.068115234, 0.041137695, -0.022659302, 0.060577393, 0.036499023, -0.011123657, 0.018066406, 0.067871094, 0.0036697388, 0.022079468, 0.03942871, 0.001414299, -0.052215576, 0.014305115, -0.00012528896, 0.014770508, 0.006931305, -0.06359863, 0.02180481, 0.0022087097, -0.03918457, -0.020812988, 0.0030841827, -0.001996994, 0.0005326271, 0.015029907, -0.055236816, 0.0008864403, -0.032196045, -0.021697998, 0.01763916, -0.03869629, -0.049346924, 0.001121521, 0.0020256042, -0.05267334, 0.0026073456, -0.0029506683, -0.008155823, 0.018630981, 0.041229248, -0.0095825195, 0.015274048, -0.03756714, 0.006340027, -0.0158844, 0.02053833, 0.055023193, -0.0022888184, 0.011756897, -0.01676941, -0.010002136, -0.0065193176, -0.010848999, 0.052947998, 0.028884888, -0.038391113, -0.0105896, -0.0062332153, 0.010681152, -0.014190674, 0.0004169941, -0.058624268, -0.0011234283, 0.020812988, -0.041870117, 0.016677856, 0.0040397644, -0.012565613, -0.036132812, -0.009643555, -0.025466919, 0.019073486, -0.04296875, 0.003168106, -0.009689331, 0.03933716, -0.005428314, 0.014320374, -0.043701172, 0.008644104, -0.05230713, -0.003604889, 0.06100464, 0.024414062, 0.0044784546, -0.013000488, -0.020614624, -0.0014915466, 0.031463623, -0.01991272, -0.00045752525, -0.02583313, -0.022644043, 3.784895e-05, 0.037719727, 0.06088257, -0.009498596, 0.014640808, -0.048339844, -0.015052795, -0.081726074, 0.003019333, 0.045715332, -0.0435791, -0.051086426, -0.03161621, 0.07354736, 0.016296387, 0.020065308, 0.02420044, 0.029312134, -0.022415161, 0.032318115, -0.088012695, -0.012825012, 0.005619049, -0.013305664, -0.005340576, -0.011238098, -0.0060043335, 0.04547119, 0.038909912, 0.03765869, -0.0055503845, 0.0085372925, 0.026168823, -0.020355225, 0.0076828003, -0.029006958, 0.0009717941, -0.035095215, 0.011978149, -0.043151855, 0.043121338, 0.033599854, 0.0033664703, 0.012138367, -0.023483276, -0.004261017, -0.03375244, 0.0340271, -0.0014438629, 0.0027675629, -0.013137817, -0.02230835, -0.009231567, -0.054016113, -0.010543823, 0.0138168335, 0.021881104, 0.026687622, -0.04425049, 0.010566711, -0.021194458, -0.016220093, 0.0030937195, -0.012168884, -0.0073280334, -0.030715942, 0.03439331, 0.02885437, -0.010520935, 0.005672455, 0.002023697, -0.016494751, -0.044189453, 0.010284424, -0.0044021606, -0.044433594, 0.022750854, 0.036499023, -0.010353088, -0.002773285, 0.028411865, -0.018371582, -0.014419556, -0.022994995, 0.02255249, 0.0020046234, -0.021697998, 0.045440674, -0.0121154785, 0.019210815, 0.024139404, -0.006816864, 0.026977539, 0.009407043, -0.034606934, 0.023010254, -0.008110046, -0.0030784607, -0.047302246, 0.07904053, -0.00052690506, 0.01625061, -0.085876465, 0.0027446747, 0.011383057, 0.018692017, 0.028701782, -0.039978027, 0.047821045, -0.011749268, -0.04058838, 0.015930176, 0.012756348, -0.021560669, 0.0018692017, 0.013671875, -0.009025574, -0.014541626, 0.019134521, -0.0070495605, -0.012634277, 0.009918213, -0.039978027, 0.028121948, 0.0016222, -0.044891357, -0.031677246, -0.0075645447, 0.0071983337, -0.025344849, -0.013465881, 0.00096416473, -0.0029029846, -0.0059928894, 0.0026931763, 0.033050537, 0.015151978, -0.04949951, -0.01928711, -0.0014638901, 0.019927979, -0.004184723, 0.050354004, -0.011398315, -0.052520752, 0.0095825195, 0.009674072, -0.0024642944, 0.006011963, -0.012229919, 3.874302e-06, -0.016189575, -0.019546509, -0.013877869, -0.035980225, 0.04232788, -0.026901245, -0.050933838, -0.0053634644, 0.025161743, -0.023971558, -0.00881958, 0.07763672, 0.052490234, 0.0076408386, 0.03656006, 0.016220093, -0.06112671, 0.0076446533, 0.0015869141, -0.035491943, -0.0892334, -0.066223145, -0.039489746, 0.005279541, 0.017196655, -0.019134521, 0.029174805, -0.02456665, 0.029342651, -0.043701172, 0.016220093, -0.031707764, -0.0034255981, 0.007663727, 0.0072517395, 0.023391724, -0.019546509, 0.02720642, -0.07574463, -0.060394287, -0.0008983612, 0.029251099, -0.012268066, 0.0075798035, -0.0075950623, 0.012298584, -0.023483276, 0.042175293, 0.015838623, 0.0030002594, -0.022155762, -0.0070266724, -0.004058838, 0.03488159, -0.039916992, 0.014656067, -0.033935547, 0.035736084, 0.0074539185, 0.035888672, -0.055847168, -0.021896362, 0.020767212, 0.044952393, -0.01473999, -0.013038635, 0.011642456, 0.02748108, -0.004962921, -0.036224365, -0.03274536, -0.02418518, -0.0019330978, -0.032592773, -0.01637268, 0.003232956, -0.023498535, 0.009963989, -0.0143966675, 0.018463135, -0.052886963, 0.03970337, -0.021865845, -0.03213501, 0.0066566467, -0.02633667, 0.0362854, -0.0513916, 0.007408142, -0.017440796, 0.0067367554, 0.007255554, -0.005126953, 0.028320312, 0.019073486, 0.002117157, -0.023208618, 0.023727417, 0.035614014, -0.06304932, -0.014076233, -0.023162842, 0.011054993, -0.020629883, -0.009544373, -0.011856079, 0.0037250519, 0.02947998, 0.0098724365, 0.033721924, -0.018432617, 0.02607727, -0.020828247, 0.0079574585, -0.046905518, -0.036254883, 0.0007162094, -0.043884277, -0.0027065277, 0.030273438, -0.027740479, -0.006832123, 0.046325684, -0.044830322, 0.009651184, -0.021835327, 0.016296387, -0.046020508, -0.021575928, -0.03451538, -0.043670654, -0.014953613, 0.010818481, -0.012184143, 0.007221222, -0.0052604675, 0.029678345, -0.06951904, -0.021850586, 0.0043296814, -0.062286377, -0.019805908, 0.027633667, -0.037139893, -0.05392456, -0.058258057, -0.018005371, -0.022720337, -0.0041770935, 0.02670288, -0.023880005, 0.046203613, -0.003692627, 0.016708374, 0.068847656, 0.028717041, 0.038269043, -0.050445557, 0.005607605, 0.01637268, -0.02708435, -0.011001587, -0.004611969, -0.020263672, 0.010314941, -0.0027713776, -0.047180176, -0.030456543, -0.0064430237, 0.0017108917, 0.0038928986, -0.009544373, 0.011108398, -9.7453594e-05, -0.022109985, -0.0096588135, 0.013801575, -0.029708862, -0.074279785, -0.021469116, -0.0044021606, -0.04385376, 0.046691895, 0.039245605, -0.010147095, 0.019699097, -0.012321472, -0.058929443, -0.030670166, 0.013946533, 0.005908966, 0.03756714, 0.009483337, 0.041870117, -0.021316528, -0.08148193, -0.04611206, 0.049102783, -0.07080078, -0.038330078, -0.049041748, 0.050994873, 0.034362793, 0.013328552, 0.05606079, 0.06976318, 0.011039734, 0.012306213, 0.0069351196, -0.022628784, -0.018188477, 0.025421143, 0.00566864, 0.0030498505, -0.02279663, 0.016494751, 0.02015686, 0.041381836, 0.026657104, 0.04421997, -0.02961731, 0.014389038, -0.033477783, -0.007461548, -0.0030498505, -0.0017528534, 0.043701172, 0.02859497, -0.03994751, 0.047210693, 0.0031433105, 0.008422852, 0.025756836, -0.00166893, 0.03881836, -0.012748718, -0.040802002, -0.031158447, -0.019851685, 0.013923645, 0.03164673, -0.01638794, -0.00793457, 0.0103302, 0.0069465637, -0.011352539, -0.0015354156, 0.007865906, 0.00894165, -0.021347046, 0.022033691, -0.023971558, -0.03201294, -0.046966553, -0.034240723, -0.049072266, 0.0023727417, 0.02243042, -0.026275635, -0.023605347, -0.018081665, 0.013961792, -0.0107803345, -0.022598267, -0.038909912, -0.004386902, 0.015426636, -0.011749268, 0.017959595, -0.0059013367, 0.044799805, 0.017303467, -0.052246094, 0.0037555695, 0.030929565, -0.017913818, -0.06365967, 0.035125732, 0.019943237, 0.08154297, -0.02508545, -0.057800293, -0.050323486, 0.025115967, 0.025436401, -0.009864807, 0.058532715, -0.018844604, 0.0069389343, 0.039978027, -0.04724121, -0.013267517, -0.005493164, 0.049102783, -0.01625061, 0.004360199]}, "B08XYJP6DZ": {"id": "B08XYJP6DZ", "original": "Brand: Flame King\nName: Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray\nDescription: \nFeatures: Never run out of propane - Built-in accurate gauge\nThe HOG can be used both vertically and horizontally\nEZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges.\nNew design with built in wheels for ease of transport\nRugged, high grade steel welded construction\n", "metadata": {"Name": "Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray", "Brand": "Flame King", "Description": "", "Features": "Never run out of propane - Built-in accurate gauge\nThe HOG can be used both vertically and horizontally\nEZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges.\nNew design with built in wheels for ease of transport\nRugged, high grade steel welded construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.007537842, -0.0018672943, -0.06958008, -0.04067993, 0.014434814, -0.034576416, -0.026855469, 0.0048446655, -0.059631348, 0.0053100586, -0.015022278, 0.038208008, 0.0028686523, -0.032226562, 0.05331421, -0.032348633, 0.026168823, 0.019744873, 0.032684326, -0.017456055, 0.009628296, 0.008872986, 0.009254456, 0.07659912, 0.042816162, -0.07324219, -0.00080394745, 0.02859497, 0.02911377, 0.011817932, 0.027740479, -0.00023567677, 0.05899048, -0.04296875, -0.023208618, -0.038238525, -0.009338379, -0.02822876, -0.052886963, 0.002714157, 0.03543091, -0.016860962, -0.018096924, -0.025527954, 0.004016876, -0.047851562, 0.044952393, -0.04449463, 0.024124146, 0.017593384, -0.006214142, 0.0012140274, -0.008102417, 0.008522034, -0.018051147, -0.0004658699, 0.039093018, -0.0038261414, 0.025009155, -0.00819397, -0.017227173, 0.03692627, 0.019760132, -0.008026123, -0.04849243, 0.008773804, 0.048187256, -0.027313232, 0.03451538, -0.054779053, -0.015625, 0.0390625, 0.008613586, 0.015701294, -0.003768921, -0.022781372, 0.020523071, 0.0035800934, 0.018798828, 0.021820068, -0.027267456, -0.0017871857, -0.002653122, 0.011169434, -0.035858154, 0.022735596, -0.027008057, -0.012435913, 0.007446289, -0.010917664, -0.0055007935, 0.053131104, 0.03579712, -0.023757935, -0.051727295, -0.03390503, -0.062927246, -0.11230469, 0.05783081, 0.032226562, 0.027435303, -0.03640747, 0.04321289, 0.0027923584, 0.009109497, 0.076293945, -0.008544922, 0.00045633316, 0.01876831, -0.0037651062, 0.00844574, -0.036621094, 0.032836914, -0.025680542, -0.010261536, 0.03213501, 0.0090789795, 0.034606934, 0.021591187, 0.03982544, 0.01234436, 0.017410278, 0.022705078, -0.015037537, -0.006336212, -0.0060424805, -0.031829834, -0.030731201, 0.002412796, 0.011917114, -0.033721924, -0.0011663437, 0.053649902, 0.048736572, 0.015350342, -0.01386261, -0.013870239, -0.018112183, -0.005393982, -0.0076141357, -0.010437012, 0.017990112, 0.03933716, -0.019973755, -0.05822754, 0.04498291, -0.0034885406, -0.016204834, -0.015823364, -0.051208496, -0.03994751, -0.03475952, 0.004714966, 0.004699707, 0.03149414, -0.03161621, 0.013946533, -0.014839172, 0.020858765, -0.018875122, 0.011756897, -0.02178955, -0.025558472, -0.039245605, -0.057922363, 0.019134521, -0.01977539, -0.0066184998, 0.023925781, 0.035736084, -0.005306244, 0.026763916, 0.030914307, 0.015571594, 0.0027008057, -0.019012451, -0.03201294, 0.0881958, 0.070373535, -0.16772461, -0.09814453, -0.08117676, 0.14196777, -0.047088623, -0.032043457, -0.03375244, -0.0023422241, -0.025283813, 0.057647705, -0.007896423, 0.06112671, -0.0078048706, -0.025131226, -0.017364502, -0.018432617, 0.02017212, -0.02168274, 0.02571106, -0.024993896, -0.018096924, 0.005027771, -0.015083313, 0.034851074, 0.007167816, 0.017822266, -0.008033752, 0.0028591156, 0.007030487, 0.06549072, 0.05090332, -0.0057640076, 0.006134033, 0.0038776398, -0.024810791, -0.0256958, 0.009033203, -0.03225708, 0.013397217, 6.556511e-07, -0.009086609, 0.04220581, -0.034362793, 0.040802002, 0.03930664, 0.02217102, 0.0031394958, -0.02180481, 0.02116394, 0.03201294, 0.037719727, -0.021392822, -0.0129776, 0.08770752, 0.061187744, -0.015045166, 0.024917603, 0.04812622, 0.006187439, -0.022155762, 0.0090408325, -0.0031051636, -0.03579712, -0.026168823, 0.05001831, -0.04699707, -0.03845215, 0.0032863617, 0.028945923, -0.04135132, -0.023590088, 0.0970459, 0.0047073364, -0.0023593903, 0.039215088, -0.032928467, -0.005340576, -0.010154724, 0.025604248, -0.032989502, 0.016281128, -0.02078247, 0.0259552, 0.027770996, -0.0021820068, 0.081604004, 0.009124756, 0.07647705, 0.051849365, -0.034332275, 0.013084412, 0.0067596436, 0.04837036, -0.011390686, 0.006549835, 0.019989014, -0.014381409, -0.024993896, 0.01890564, -0.011367798, -0.007698059, -0.008926392, -0.09234619, 0.045196533, 0.014717102, 0.07623291, 0.0637207, 0.078552246, 0.008880615, -0.032318115, -0.0036697388, -0.0040512085, 0.055145264, 0.010795593, 0.004360199, 0.027069092, 0.019500732, -0.02357483, -0.0059280396, 0.024734497, -0.037597656, -0.024459839, 0.04107666, -0.025360107, 0.03274536, -0.013343811, -0.016723633, -0.03366089, 0.028930664, -0.00016796589, -0.03466797, -0.018676758, 0.0385437, 0.040893555, 0.023544312, 0.035339355, 0.006832123, 0.0028514862, 0.05230713, 0.03817749, 0.042388916, -0.034729004, -0.0064086914, 0.01222229, 0.020736694, 0.010543823, -0.0065841675, 0.017562866, 0.025390625, -0.03616333, 0.018630981, -0.017196655, -0.030670166, -0.008285522, 0.01448822, -0.010475159, 0.00365448, -0.0005631447, 0.017028809, -0.024505615, -0.07092285, -0.025741577, 0.014038086, -0.0013189316, -0.010757446, -0.024765015, -0.06173706, 0.050933838, -0.018661499, -0.04171753, 0.024368286, 0.028915405, 0.024398804, -0.006881714, -0.03616333, 0.008720398, -0.013702393, -0.034820557, -0.020935059, 0.015792847, -0.05947876, -0.0046157837, -0.03253174, -0.04168701, -0.024642944, 0.026062012, 0.0014791489, -0.052124023, 0.008583069, 0.023834229, 0.018371582, -0.005584717, 0.01902771, -0.06982422, -0.01071167, 0.0029087067, -0.0029754639, 0.03543091, -0.019088745, 0.03125, 0.01777649, 0.029769897, 0.028411865, -0.025177002, 0.0029640198, 0.043914795, 0.030227661, 0.03967285, 0.011230469, 0.03729248, -0.02029419, 0.0010404587, -0.013168335, -0.020446777, -0.027786255, -0.0317688, -0.0071983337, -0.009300232, -0.028121948, 0.0016288757, -0.008590698, -0.097839355, 0.01876831, -0.034729004, -0.01802063, -0.00033211708, 0.017471313, -0.046936035, -0.06695557, 0.016189575, 0.010292053, 0.009483337, 0.02960205, -0.017288208, 0.029205322, -0.024871826, -0.021362305, 0.016418457, -0.0096588135, -0.005256653, -0.0012073517, 0.040893555, -0.05001831, 0.0051994324, 0.016708374, -0.047729492, -8.100271e-05, -0.025878906, 0.042266846, -0.018814087, 0.006629944, -0.017486572, -0.024673462, -0.016052246, -0.050231934, -0.04135132, 0.003604889, -0.012954712, 0.031341553, -0.018569946, -0.0018987656, -0.06512451, -0.03793335, -0.024307251, 0.011047363, -0.018112183, 4.0590763e-05, -0.035858154, -0.06384277, 0.025390625, 0.032226562, -0.0030021667, -0.0022792816, 0.008277893, 0.016967773, -0.0368042, 0.02558899, 0.021713257, 0.040618896, 0.018676758, -0.019805908, -0.028030396, -0.01966858, 0.015396118, -0.007320404, -0.012550354, -0.03942871, 0.023864746, 0.01361084, -0.0007185936, -0.007171631, -0.004310608, 0.047790527, 0.037994385, -0.006351471, -0.004787445, 0.03112793, 0.0056877136, -0.008903503, -0.00440979, -0.0033187866, -0.04623413, 0.024902344, -0.056152344, -0.012023926, 0.028717041, -0.015365601, 0.013931274, -0.028945923, -0.021072388, 0.006385803, 0.013053894, 0.03125, 0.012413025, 0.028518677, -0.0050735474, -0.029312134, 0.01499939, 0.002904892, -0.017807007, -0.03164673, -0.037628174, -0.01663208, -0.011978149, 0.017929077, -0.00894928, -0.02192688, 0.022735596, -0.0050621033, 0.01689148, 0.018844604, 0.016159058, -0.011100769, -0.015930176, -0.007751465, -0.013633728, -0.016738892, -0.0090408325, -0.017425537, -0.026824951, 0.0043678284, -0.012161255, -0.009353638, 0.013000488, 0.06088257, -0.032409668, -0.0088272095, -0.009239197, -0.015235901, -0.011375427, 0.0072898865, 0.012702942, -0.006439209, 0.020690918, 0.0079193115, 0.012809753, 0.01348114, -0.0055007935, -0.009094238, -0.04043579, -0.05569458, 0.026321411, 0.04953003, -0.025802612, -0.031280518, 0.0046424866, -0.023406982, -0.015594482, -0.033599854, -0.014846802, -0.042907715, -0.020751953, 0.001996994, -0.07305908, -0.016555786, -0.031799316, -0.0051727295, -0.061950684, 0.043884277, 0.011924744, -0.028625488, 0.008377075, 0.03741455, -0.03842163, -0.028366089, -0.030349731, -0.0010738373, 0.028060913, 0.0075187683, 0.012237549, -0.045074463, -0.015571594, -0.017456055, 0.07470703, 0.022628784, 0.015960693, 0.0022125244, -0.03643799, -0.013717651, 0.007701874, 0.06549072, -0.020568848, 0.048431396, -0.023925781, -0.014122009, -0.049316406, 0.004814148, 0.024108887, -0.05392456, -0.056915283, -0.01335144, 0.068359375, 0.0055274963, 0.031951904, 0.02027893, -0.038330078, -0.0022716522, -0.01033783, -0.0725708, -0.01423645, -0.031341553, -0.023590088, 0.009597778, 0.005393982, -0.018844604, -0.016494751, 0.05847168, -0.016357422, -0.013832092, -0.031829834, -0.038330078, 0.013473511, -0.0046043396, -0.025970459, 0.013839722, -0.047973633, 0.017868042, -0.03363037, 0.004585266, 0.03643799, 0.016174316, 0.030227661, 0.019210815, 0.014472961, -0.011405945, -0.050048828, 0.001581192, 0.0546875, 0.0057754517, -0.040039062, -0.017242432, 0.002866745, -0.031051636, -0.020431519, -0.016616821, 0.0055351257, 0.0018157959, -0.0014696121, -0.0043907166, 0.006832123, 0.008735657, 0.020065308, 0.012016296, 0.015617371, -0.050933838, 0.003271103, -0.0284729, -0.017807007, 0.012840271, -0.027236938, -0.030944824, -0.010757446, 0.003314972, -0.001335144, 0.008575439, 0.010597229, -0.012512207, -0.03616333, 0.05557251, -0.02293396, 0.023117065, -0.0018749237, 0.038970947, 0.033111572, 0.02709961, 0.027923584, -0.023086548, 0.033569336, 0.015235901, -0.00043559074, -0.0064353943, -0.011352539, -0.028930664, 0.010139465, -0.0015192032, -0.008399963, -0.024520874, 0.06311035, -0.009803772, -0.0023937225, -0.034332275, 0.008926392, -0.03225708, -0.04345703, -0.021484375, 0.012001038, 0.012306213, 0.010765076, 0.037017822, -0.007205963, -0.024398804, -0.037475586, -0.00818634, -0.017532349, -0.040527344, -0.0069618225, -0.017837524, -0.03100586, 0.040008545, 0.017974854, 0.008239746, 0.017425537, 0.01838684, -0.031341553, -0.011497498, 0.0040740967, 0.011543274, -0.021316528, -0.02470398, -0.011299133, 0.0008068085, -0.03793335, 0.010612488, -0.05230713, -0.014091492, -0.03375244, -0.012512207, 0.025115967, 0.04055786, 0.05105591, 0.024002075, -0.02986145, -0.019821167, 0.040802002, 0.026824951, 0.04309082, 0.014053345, -0.047912598, -0.012916565, -0.0015707016, -0.010848999, 0.0010061264, -0.022277832, 0.0026683807, -0.009124756, 0.00063610077, -0.026901245, 0.050720215, -0.0027046204, -0.004386902, 0.062316895, 0.010269165, 0.016296387, 0.03326416, -0.005874634, -0.05807495, -0.014953613, -0.0063819885, -0.029312134, -0.068847656, -0.062072754, -0.0028648376, -0.015975952, -0.026107788, -0.02973938, 0.039398193, -0.0010137558, -0.013122559, -0.015403748, -0.044067383, 0.005191803, -0.03668213, 0.012962341, -0.0058937073, 0.009544373, -0.006904602, 0.008140564, -0.039855957, 0.001581192, 0.016601562, 0.011978149, 0.021392822, 0.02319336, 0.02116394, 0.043945312, -0.066711426, 0.0129470825, 0.013702393, -0.016052246, -0.0051078796, 0.018966675, 0.01007843, 0.011390686, -0.06896973, -0.014778137, -0.0049057007, 0.029129028, -0.014770508, 0.021270752, -0.0473938, -0.039642334, -0.002796173, 0.043304443, 0.0030136108, -0.03552246, -0.023727417, -0.020355225, -0.0054473877, -0.008628845, -0.012771606, -0.023544312, -0.04248047, -0.018234253, -0.06341553, -0.0023059845, -0.022644043, 0.019470215, -0.02029419, 0.021133423, -0.013198853, 0.004501343, -0.00056791306, -0.0041160583, 0.042266846, -0.026626587, -0.0066604614, 0.010551453, 0.02998352, -0.0017118454, -0.021621704, -0.01234436, 0.032226562, 0.04815674, 0.016448975, -0.0005264282, -0.029281616, 0.014762878, 0.0029315948, -0.01977539, 0.009155273, 0.0001000762, 0.013748169, -0.00970459, -0.027267456, -0.002084732, 0.007865906, -0.0010967255, -0.008735657, -0.02960205, 0.023712158, 0.022109985, 0.001206398, -0.028747559, 0.01486969, -0.0018501282, 0.012123108, -0.011329651, -0.018005371, -0.0011997223, -0.059570312, 0.045532227, -0.004737854, 0.03579712, 8.034706e-05, -0.029403687, 0.02268982, 0.07525635, 0.015296936, -0.022415161, -0.05819702, -0.024780273, 0.0007004738, -0.009773254, 0.038269043, 0.01537323, 0.070129395, 0.0027446747, -0.033203125, 0.029373169, -0.101379395, 0.029525757, 0.016418457, 0.043762207, -0.06347656, 0.0025863647, -0.010261536, 0.006362915, -0.0049858093, 0.06689453, 0.027313232, 0.015159607, 0.004585266, -0.00894928, 0.05316162, 0.014549255, 0.012023926, -0.03768921, 0.008529663, -0.020126343, 0.0029735565, -0.00044965744, 0.0154418945, -0.020736694, 0.002828598, 0.009925842, 0.0062675476, 0.03616333, -0.042297363, 0.027526855, -0.020614624, 0.040130615, -0.07141113, -0.005050659, 0.018478394, -0.0011968613, -0.014823914, -0.017227173, -0.025482178, -0.04144287, -0.021713257, -0.052368164, 0.013900757, -0.043701172, -0.030853271, 0.0034866333, -0.003238678, -0.017547607, -0.055664062, -0.007785797, 0.0053749084, 0.049560547, -0.0022354126, 0.038360596, -0.019241333, -0.05038452, -0.07122803, 0.022583008, -0.087402344, -0.028381348, -0.022201538, 0.004383087, 0.0039901733, -0.010040283, 0.033996582, -0.022338867, 0.03262329, -0.007129669, 0.077819824, -0.049865723, -0.003643036, 0.0018672943, 0.028274536, -0.00818634, -0.032684326, -0.018478394, -0.017745972, 0.003107071, 0.03050232, 0.0029335022, -0.027542114, -0.005264282, -0.012893677, -0.041107178, -0.025405884, 0.00868988, 0.015220642, 0.016082764, -0.050323486, 0.0032901764, -0.006652832, 0.04144287, 0.02961731, 0.041046143, 0.031463623, 0.0027503967, -0.059814453, -0.05456543, -0.016860962, 0.029022217, 0.0016908646, -0.055023193, -0.018569946, 0.005218506, -0.009269714, 0.0027008057, 0.0289917, -0.010398865, 0.012802124, 0.019042969, -0.011550903, 0.010551453, -0.013442993, 0.0054473877, -0.05230713, 0.03604126, 0.10949707, -0.0014505386, -0.022781372, 0.0038642883, -0.02973938, -0.048309326, -0.0062942505, -0.03567505, -0.00060606, -0.028457642, -0.026779175, 0.0345459, -0.016220093, -0.0048599243, -0.039855957, -0.026931763, -0.027709961, 0.02394104, 0.0259552, 0.025405884, -0.01889038, 0.053344727, 0.028961182, 0.05618286, -0.008590698, -0.12420654, -0.064575195, 0.03967285, -0.01725769, -0.0056610107, 0.015289307, -0.020767212, 0.009681702, 0.048309326, -0.006412506, -0.029281616, 0.021697998, 0.05935669, 0.021850586, 0.011383057]}, "B07DP2KKWT": {"id": "B07DP2KKWT", "original": "Brand: Tonkin\nName: Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979\nDescription: Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.\nFeatures: Plastic Trailer\nAbout 6 Inches Long\nComes in Clear Plastic Box\nFore Ages 14 and up\n", "metadata": {"Name": "Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979", "Brand": "Tonkin", "Description": "Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.", "Features": "Plastic Trailer\nAbout 6 Inches Long\nComes in Clear Plastic Box\nFore Ages 14 and up", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04168701, -0.012054443, -0.103637695, -0.03857422, -0.0078125, -0.030532837, -0.0513916, 0.04421997, -0.046051025, -0.009292603, -0.010971069, 0.03616333, -0.032470703, -0.04333496, 0.061676025, -0.039245605, 0.007133484, 0.009338379, -0.008033752, -0.045135498, 0.0038452148, -0.049072266, 0.0037288666, 0.03378296, 0.017990112, -0.01499939, 0.025802612, 0.006866455, 0.031051636, 0.016494751, 0.02407837, -0.037506104, 0.052703857, -0.018966675, -0.029922485, -0.029296875, 0.022750854, -0.031234741, -0.036254883, 0.009788513, 0.012191772, 0.0067863464, 0.0637207, 0.017791748, -0.031173706, 0.020507812, -0.018981934, -0.011070251, -0.009635925, -0.018295288, -0.011520386, -0.0042877197, 0.0016498566, -0.009941101, -0.003818512, 0.00667572, -0.021774292, 0.03253174, 0.0016622543, 0.009719849, 0.012161255, 0.031311035, 0.013420105, 0.022140503, -0.03616333, 0.008720398, 0.012535095, -0.0047798157, 0.0047035217, -0.039154053, -0.009727478, 0.0038871765, 0.005393982, -0.011383057, -0.0005559921, 0.008636475, -0.0053100586, 0.0093688965, 0.011161804, 0.021636963, -0.0008006096, -0.0038490295, -0.01626587, 0.02053833, -0.027496338, 0.027023315, -0.021743774, -0.0234375, 0.018051147, -0.016296387, 0.005004883, 0.028778076, -0.00019669533, 0.012527466, -0.011177063, -0.0390625, -0.0044136047, -0.0847168, 0.0541687, -0.005432129, 0.0074424744, -0.042266846, 0.010566711, 0.018966675, 0.034484863, 0.013160706, -0.036346436, -0.023269653, 0.07434082, 0.015579224, -0.000603199, 0.087890625, 0.019577026, 0.031555176, -0.02178955, -0.0087509155, -0.029006958, 0.043884277, -0.021453857, 0.07269287, 0.021118164, 0.01953125, 0.019729614, -0.04031372, -0.0062217712, -0.0073394775, -0.059692383, 0.013389587, 0.0029239655, 0.017715454, -0.0096206665, -0.008895874, -0.03186035, 0.016937256, -0.003932953, -0.008033752, 0.00077342987, -0.030212402, -0.009529114, 0.025939941, 0.035461426, -0.008857727, 0.020050049, 0.007701874, -0.08850098, 0.03768921, 0.022415161, -0.008636475, -0.05987549, -0.08477783, -0.034698486, -0.010391235, 0.037078857, 0.014984131, -0.016189575, -0.00881958, 0.017730713, -0.024108887, -0.033447266, -0.0703125, 0.0027923584, -0.019958496, -0.04135132, 0.008117676, -0.0049476624, -0.0014467239, 0.027694702, 0.014259338, 0.0033683777, 0.055511475, -0.013900757, 0.015075684, -0.038208008, -0.01158905, -0.0058898926, -0.017959595, -0.022247314, 0.045928955, 0.06518555, -0.08581543, -0.048736572, -0.049957275, 0.12121582, -0.038848877, 0.01398468, -0.035308838, -0.011940002, -0.07714844, 0.022827148, -0.011985779, 0.006614685, 0.03881836, -0.022109985, -0.06878662, 0.0154953, 0.034484863, -0.027389526, 0.0054969788, -0.0038204193, 0.013931274, 0.056488037, -0.0015926361, 0.023117065, 0.009941101, 0.04043579, -0.019424438, 0.027069092, -0.027130127, -0.018310547, 0.034698486, 0.008674622, -0.013038635, -0.020111084, -0.0074653625, 0.008964539, 0.014328003, -0.010658264, 0.02670288, -0.008872986, -0.010147095, 0.027511597, -0.021148682, 0.047424316, 0.06951904, -0.072387695, 0.024169922, -0.035369873, 0.035888672, -0.009986877, 0.016830444, 0.089782715, -0.018966675, 0.045074463, 0.0770874, -0.000500679, -0.0065460205, 0.018707275, 0.008987427, 0.02015686, 0.003124237, -0.0005259514, 0.01802063, -0.028915405, 0.020217896, 0.03491211, -0.010665894, -0.0029907227, 0.022949219, -0.014144897, -0.072265625, 0.08068848, -0.05441284, 0.051635742, 0.03857422, 0.013191223, -0.022872925, -0.03933716, 0.004722595, -0.03842163, 0.009780884, 0.0146865845, 0.022964478, 0.01713562, 0.007965088, 0.060943604, -0.02330017, 0.059265137, 0.03314209, -0.005256653, -0.016723633, -0.00019443035, 0.0017290115, -0.00869751, 0.007095337, -0.020965576, -0.032226562, -0.013420105, 0.01902771, -0.02218628, -0.026443481, -0.009689331, -0.0115356445, 0.025253296, -0.0026931763, 0.005092621, -0.0038700104, 0.04360962, 0.012489319, -0.02986145, -0.02180481, 0.015586853, 0.028060913, -0.007980347, 0.016677856, -0.014533997, -0.0066719055, -0.011390686, -0.00087308884, 0.034240723, -0.046813965, 0.0062446594, 0.051696777, -0.07757568, 0.07531738, -0.012077332, -0.017593384, -0.022338867, -0.0023441315, -0.021270752, -0.005332947, -0.06817627, 0.010185242, 0.020584106, -0.04660034, 0.037109375, 0.027801514, 0.0006480217, 0.031555176, 0.003545761, 0.012168884, -0.010620117, 0.046295166, -0.01159668, 0.007888794, 0.03930664, -0.0015478134, -0.024139404, -0.007701874, -0.00459671, -0.00061798096, 0.034698486, -0.02130127, -0.0022563934, -0.018798828, 0.009086609, -0.0046539307, -0.012359619, 0.028335571, -0.014282227, -0.01828003, -0.017364502, -0.010513306, -0.002729416, -0.027923584, 0.0003311634, -0.022872925, 0.026809692, 0.0044288635, 0.010917664, 0.025512695, -0.024490356, -0.0007543564, -0.050750732, -0.018035889, -0.0077323914, 0.016494751, 0.042053223, -0.016052246, 0.029251099, -0.034210205, -0.028503418, -0.032806396, -0.06768799, 0.040100098, 0.07745361, -0.008232117, -0.0259552, -0.022003174, 0.024032593, 0.050079346, -0.03363037, 0.03869629, -0.052001953, -0.0011701584, 0.009674072, 0.020095825, 0.014076233, -0.05126953, 0.04559326, 0.0015039444, -0.020126343, -0.0033473969, 0.020492554, -0.0005431175, 0.018234253, 0.032043457, 0.01876831, 0.06311035, -0.0126571655, -0.023757935, -0.016311646, 0.05090332, -0.013122559, -0.008155823, 0.005710602, -0.013114929, -0.023269653, 0.021118164, -0.06323242, -0.014976501, -0.091430664, 0.04486084, 0.008628845, -0.03125, -0.020812988, -0.021209717, -0.056274414, -0.049804688, 0.021224976, 0.026870728, -0.039001465, 0.026672363, -0.04360962, 0.00223732, -0.013717651, 0.016311646, 0.009223938, -0.0026741028, 0.0065727234, 0.0015001297, 0.03945923, -0.047729492, 0.03186035, 0.028549194, -0.024932861, 0.0049591064, -0.0025253296, 0.0059165955, 0.028381348, 0.07867432, 0.009765625, 0.026550293, -0.025253296, -0.048706055, 0.004371643, 0.01914978, -0.0132369995, 0.011726379, -0.0289917, 0.018692017, -0.01210022, -0.021499634, 0.019500732, 0.05899048, -0.0048446655, 0.02760315, -0.043762207, -0.011764526, -0.015655518, 0.03817749, -6.2167645e-05, 0.007663727, -0.020904541, 0.008110046, -0.04135132, 0.023468018, 0.027160645, 0.02444458, 0.054656982, 0.012298584, -0.0008826256, 0.0029449463, -0.036499023, 0.0062942505, -0.0025310516, 0.0067329407, 0.005584717, 0.008415222, -0.038360596, 0.02218628, 0.0070648193, 0.011917114, -0.012550354, -0.007896423, 0.02204895, 0.015487671, -0.018493652, -0.00920105, 0.008102417, 0.012619019, -0.040039062, 0.026885986, -0.056854248, 0.032806396, 0.030532837, -0.015060425, 0.032104492, 0.0067749023, -0.009277344, 0.042541504, -0.017837524, 0.028518677, 0.04486084, 0.0031414032, 0.009567261, 0.027862549, 0.00415802, -0.054626465, 0.011604309, -0.0036735535, -0.051116943, -0.0012760162, 0.0028896332, -0.014961243, -0.022644043, 0.0149002075, 0.006954193, -0.006717682, 0.027618408, -0.024795532, -0.032684326, -0.033813477, 0.0042495728, 0.027420044, -0.019302368, -0.0036258698, 0.017333984, 0.014526367, -0.020553589, -0.009246826, -0.025497437, -0.021942139, 0.037872314, 0.037078857, -0.014732361, -0.0042381287, -0.009017944, -0.0063285828, -0.013580322, 0.00868988, -0.0013103485, 0.025497437, 0.021408081, -0.0024089813, 0.031188965, -0.029830933, -0.009498596, -0.0012521744, -0.012893677, -0.016189575, -0.008018494, 0.02772522, 0.032989502, 0.012260437, 0.009941101, -0.029800415, 0.0007829666, 0.014205933, 0.0063972473, 0.0011758804, -0.021438599, -0.009811401, -0.08996582, -0.061187744, -0.0592041, 0.076293945, 0.009536743, 0.026885986, -0.032714844, -0.051086426, 0.0028095245, 0.032684326, -0.067993164, 0.009124756, -0.056793213, 0.0035495758, -0.015304565, -0.03353882, 0.015266418, -0.034729004, -0.045837402, -0.01914978, 0.0025177002, -0.0053749084, 3.6895275e-05, 0.00044083595, -0.034240723, 0.012001038, -0.0017318726, 0.035064697, -0.013298035, 0.013404846, -0.024749756, 0.0069465637, -0.02279663, 0.021575928, 0.0021400452, 0.0037765503, -0.03768921, -0.022384644, -0.003238678, 0.009346008, 0.010948181, -0.015625, -0.008003235, 0.02015686, -0.020004272, -0.06530762, -0.05606079, -0.01486969, -0.0129852295, -0.024169922, -0.007587433, -0.013504028, 0.0569458, -0.024291992, -0.048431396, 0.05706787, -0.027633667, -0.004421234, 0.0059509277, 0.025268555, -0.0054359436, -0.029922485, -0.015670776, 0.020355225, -0.045898438, 0.07434082, 0.061523438, -0.004573822, 0.013946533, 0.020233154, -0.008216858, -0.03942871, -0.0034008026, -0.0066070557, 0.009674072, 0.010887146, -0.022109985, -0.045288086, -0.026870728, -0.027938843, -0.039154053, -0.08959961, -0.057617188, 0.05569458, 0.0067634583, -0.061706543, 0.015808105, 0.028457642, 0.018554688, 0.029846191, -0.014099121, -0.03475952, 0.050689697, 0.019989014, -0.0070610046, 0.013763428, 0.012802124, -0.0040016174, -0.008270264, -0.010658264, -0.11090088, 0.04550171, 0.07366943, 0.008460999, -0.027038574, 0.035858154, -0.041015625, 0.043029785, 0.06793213, 0.08691406, -0.021377563, 0.06890869, 0.019989014, 0.0059776306, 0.012268066, 0.0357666, 0.007709503, 0.0047454834, 0.005012512, -0.03439331, 0.07147217, 0.008666992, 0.014457703, 1.4543533e-05, 0.017242432, -0.008102417, 0.009407043, -0.009544373, 0.007095337, -0.01902771, -0.0060195923, -0.037200928, 0.0033397675, 0.043029785, -0.03652954, -0.01373291, 0.007091522, 0.025527954, -0.068237305, -0.010658264, 0.032104492, -0.01991272, -0.06365967, 0.00642395, -0.02331543, 0.021697998, 0.039123535, -0.02810669, 0.00011718273, 0.017807007, -0.035064697, 0.0043525696, -0.028152466, 0.036010742, 0.018707275, 0.013404846, -0.060638428, -0.01940918, -0.009857178, 0.036193848, -0.005264282, 0.006587982, -0.013442993, -0.007835388, 0.011177063, -0.004180908, -0.016036987, 0.039489746, -0.049224854, -0.0051879883, -0.032165527, 0.009773254, 0.008094788, 0.013580322, -0.10296631, -0.0014638901, 0.02658081, 0.037872314, -0.005886078, 0.041656494, 0.030029297, -0.024932861, -0.0003273487, -0.03869629, 0.042175293, -0.035888672, -0.04510498, 0.054840088, 0.04547119, 0.00970459, 0.012428284, -0.026733398, -0.007980347, 0.011940002, -0.0031356812, 0.012374878, -0.03643799, -0.01461792, -0.0099105835, -0.0041122437, -0.008674622, -0.030166626, 0.030090332, -0.031143188, -0.05496216, -0.057250977, -0.0073280334, 0.010650635, -0.064575195, 0.0020923615, -0.03817749, 0.018722534, -0.015357971, -0.014556885, -0.056640625, -0.03137207, -0.0040130615, 0.046966553, 0.039367676, 0.02998352, 0.005050659, 0.006164551, -0.08898926, 0.013175964, 0.019058228, 0.021072388, -0.04876709, -0.019699097, -0.007209778, -0.010971069, -0.044281006, 0.02859497, -0.0015640259, 0.00034451485, 0.011703491, -0.0018777847, 0.0026683807, -0.02381897, 0.024154663, 0.0036621094, 0.016906738, -0.01940918, 0.0072898865, -0.0044822693, -0.0071792603, -0.006134033, -0.01210022, -0.030944824, -0.028060913, -0.041381836, -0.008758545, 0.01524353, 0.0017547607, 0.033416748, -0.0058250427, 0.03466797, -0.030197144, 0.04156494, 6.479025e-05, -0.0034370422, 0.00598526, -0.007286072, 0.022872925, 0.015197754, 0.026733398, 0.024215698, -0.0154418945, -0.010383606, -0.010002136, 0.010375977, -0.026168823, 0.055358887, -0.016830444, 0.023117065, -0.024246216, -0.027816772, 0.0069007874, 0.010101318, 0.016113281, 0.019363403, -0.05834961, 0.004371643, 0.0034217834, -0.017044067, -0.0035095215, 0.030441284, 0.021057129, 0.020843506, -0.0042419434, -0.004032135, -0.012931824, -0.062561035, 0.085510254, -0.034973145, -0.012512207, 0.013748169, -0.057159424, 0.042999268, 0.012626648, -0.0067825317, 0.02609253, -0.018493652, 0.011116028, 0.005264282, 0.0011053085, -0.04156494, -0.068359375, -0.0053710938, 0.026992798, -0.038635254, -0.007286072, 0.0032024384, -0.013267517, 0.041503906, -0.053527832, 0.061798096, -0.045562744, 0.08404541, 0.018127441, 0.036499023, -0.04876709, 0.02645874, 0.004386902, -0.0033855438, 0.023117065, 0.03829956, 0.032318115, -0.026626587, 0.03640747, 0.01197052, 0.06488037, 0.010498047, 0.023254395, -0.01247406, 0.020462036, 0.0129776, 0.007522583, 0.016464233, -0.008430481, -0.022827148, -0.0053215027, 0.008361816, 0.006072998, 0.041259766, -0.03692627, 0.0019388199, -0.026382446, 0.021484375, -0.007080078, -0.0519104, -0.029464722, -0.028152466, 0.013137817, -0.04522705, -0.07324219, 0.018981934, -0.011268616, -0.039398193, 0.06738281, 0.03677368, -0.008934021, 0.06555176, -0.022232056, -0.11047363, -0.01890564, 0.0099487305, 0.019515991, 0.0020160675, 0.01637268, 0.06237793, 0.0062675476, -0.066589355, -0.07208252, -0.013671875, 0.0038852692, 0.017944336, 0.015853882, -0.041137695, -0.02720642, 0.008033752, 0.07873535, 0.004055023, 0.06262207, 0.0074272156, 0.022598267, -0.03451538, -0.028961182, 0.03591919, 0.024276733, -0.029800415, -0.034179688, 0.0007414818, -0.01625061, 0.046051025, -0.0132751465, 0.0016202927, -0.0030784607, 0.031585693, 0.018844604, -0.031463623, -0.003194809, 0.00932312, 0.0055770874, 0.011627197, -0.05041504, 0.0061416626, -0.021484375, 0.035980225, 0.018508911, -0.050720215, 0.026733398, -0.050201416, -0.040039062, -0.06970215, -0.019760132, 0.04019165, -0.013374329, -0.03378296, -0.00907135, 0.019485474, -0.00497818, -0.023956299, 0.03414917, 0.014785767, 0.02458191, 0.016235352, 0.03515625, 0.020401001, -0.015174866, 0.06323242, -0.024353027, -0.027069092, 0.010543823, 0.01612854, -0.033172607, 0.0044517517, -0.02558899, 0.0014209747, 0.0033473969, -0.02659607, -0.039276123, -0.06915283, 0.007888794, 0.04055786, -0.026535034, -0.014434814, -0.008811951, -0.010261536, -0.0033340454, 0.019088745, 0.016342163, 0.03302002, -0.035064697, -0.0005350113, -0.0050582886, -0.0030498505, -0.0014066696, -0.04711914, -0.020904541, 0.02293396, 0.01739502, -0.017929077, 0.03353882, -0.006515503, 0.005142212, 0.015899658, -0.027175903, -0.02508545, 0.0061683655, 0.047729492, -0.0124435425, 0.014030457]}, "B01KGKFPM6": {"id": "B01KGKFPM6", "original": "Brand: GasOne\nName: Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose\nDescription: \nFeatures: Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\nRugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize\nAdjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\nIndividual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\nHigh quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "metadata": {"Name": "Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose", "Brand": "GasOne", "Description": "", "Features": "Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\nRugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize\nAdjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\nIndividual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\nHigh quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0013570786, -0.023971558, -0.0021438599, -0.019683838, -0.025909424, -0.004085541, -0.020568848, 0.0014429092, -0.04763794, -0.012779236, -0.009292603, 0.04763794, -0.00655365, -0.0418396, 0.07940674, -0.028366089, 0.008026123, 0.048217773, 0.010345459, -0.029190063, 0.0077667236, -0.015686035, -0.023971558, 0.14892578, 0.016830444, 0.001162529, -0.016448975, -0.021606445, 0.018707275, -0.014633179, 0.027511597, 0.014839172, 0.040130615, -0.009002686, -0.03970337, -0.08917236, -0.066101074, -0.008773804, -0.073913574, 0.034118652, -0.003068924, 0.0014705658, -0.0057678223, 0.01322937, -0.0029449463, -0.03793335, 0.024749756, -0.05328369, 0.0035476685, 0.008224487, 0.00067329407, -0.027709961, 0.013694763, -0.030761719, -0.021591187, -0.016586304, 0.026382446, -0.024261475, 0.0040397644, -0.02330017, -0.009803772, 0.0036411285, 0.034118652, 0.013313293, -0.04849243, 0.035217285, 0.046569824, -0.009994507, 0.015563965, -0.06585693, -0.04119873, 0.023620605, 0.0154953, -0.011024475, -0.03866577, 0.015312195, -0.0045661926, -0.023468018, 0.04562378, -0.030731201, 0.028259277, -0.03677368, 0.03036499, 0.0060157776, 0.00869751, 0.008995056, 0.00315094, -0.012535095, -0.037750244, -0.016204834, -0.026382446, -0.03579712, -0.056915283, 0.039855957, 0.0033626556, 0.0104599, -0.030471802, -0.0637207, 0.025558472, 0.013450623, 0.031280518, -0.04647827, 0.04107666, 0.007987976, -0.004184723, 0.071777344, 0.025924683, 0.036010742, 0.011688232, -0.013938904, 0.009887695, 0.012840271, -0.008857727, -0.044677734, 0.017089844, 0.018341064, -0.004798889, 0.0015535355, 0.015579224, -0.056152344, 0.0010147095, -0.0015735626, 0.03225708, -0.021835327, 0.007648468, -0.009178162, -0.03640747, -0.01979065, -0.015808105, 0.041107178, -0.023971558, -0.024124146, 0.040374756, 0.0680542, 0.007381439, -0.031433105, 0.03515625, -0.015701294, 0.025238037, -0.0541687, 0.015586853, 0.014183044, 0.014701843, -0.005531311, 0.006893158, 0.008934021, 0.028244019, 0.010406494, -0.008773804, -0.036468506, 0.010223389, 0.0055618286, 0.028045654, -0.001083374, -0.010749817, -0.014099121, 0.0023002625, -0.016082764, 0.0055236816, -0.021636963, -0.043182373, -0.014839172, 0.017074585, 0.006965637, -0.0050582886, 0.037719727, 0.024917603, 0.0044822693, 0.008255005, 0.026565552, -0.017974854, 0.051483154, -0.0022201538, 0.010658264, 0.0074272156, -0.016403198, -0.030532837, 0.060943604, 0.047821045, -0.09710693, -0.05819702, -0.068237305, 0.12207031, -0.048065186, -0.010002136, 0.019317627, -0.011123657, -0.023513794, 0.016326904, -0.008491516, 0.0064735413, 0.03866577, 0.011001587, -0.030090332, 0.020080566, -0.005508423, -0.042785645, 0.00040507317, -0.009147644, -0.009941101, -0.046417236, 0.022994995, -0.008804321, 0.035247803, -0.011207581, 0.013618469, -0.010299683, 0.020111084, 0.036499023, 0.028900146, -0.0209198, 0.0030574799, 0.010101318, -0.04434204, -0.039093018, 0.014030457, 0.0007009506, 0.0011329651, 0.01966858, -0.002002716, 0.06567383, -0.012489319, 0.04309082, 0.046813965, 0.049072266, -0.025817871, -0.0018930435, -0.028198242, 0.026123047, 0.004055023, -0.055023193, 0.015487671, 0.065979004, 0.070251465, 0.002943039, 0.041015625, 0.10736084, 0.02508545, -0.003107071, -0.040374756, 0.00491333, -0.043273926, -0.022644043, 0.033355713, -0.04168701, -0.0053710938, 0.023284912, 0.012046814, -0.03878784, 0.010292053, 0.04559326, 0.019378662, 0.008552551, -0.029922485, -0.012535095, 0.020050049, -0.04046631, 0.021026611, 0.0034732819, -0.0064888, -0.017669678, 0.028045654, 0.06112671, -0.019683838, 0.018707275, 0.028579712, 0.030441284, 0.028045654, -0.012313843, 0.021270752, 0.01789856, -0.01411438, -0.007408142, -0.017593384, -0.011772156, -0.01626587, -0.04336548, 0.04156494, -0.0023422241, -0.023010254, 0.001739502, -0.019058228, -0.021514893, -0.005722046, 0.042633057, 0.015304565, 0.010787964, 0.008010864, 0.002620697, -0.012054443, 0.028427124, -0.026046753, -0.005847931, -0.008872986, -0.00920105, -0.0440979, 0.069885254, -0.018096924, 0.022476196, -0.036895752, 0.034118652, 0.03250122, -0.054626465, 0.013137817, 0.0037517548, 0.010215759, 0.030227661, 0.009681702, 0.010063171, -0.014717102, 0.014884949, 0.009498596, 0.02444458, -0.022491455, 0.03387451, 0.017303467, -0.015098572, 0.03527832, 0.038269043, 0.072021484, -0.044708252, -0.0043182373, -0.003293991, -0.023330688, 0.018753052, 0.0064468384, -0.02293396, 0.0012836456, -0.008087158, 0.016143799, 0.017211914, -0.020767212, -0.010231018, -0.03778076, -0.0014486313, -0.0015583038, 0.003780365, 0.02394104, 0.0052490234, -0.03466797, 0.0181427, -0.01977539, -0.005241394, 0.0115737915, -0.026641846, -0.057556152, 0.04888916, 0.0016384125, -0.04916382, -0.013389587, 0.05239868, -0.027923584, 0.026916504, -0.02709961, 0.03842163, -0.034942627, -0.059814453, -0.039855957, -0.029373169, -0.09387207, -0.0011615753, -0.027770996, -0.05444336, -0.058013916, 0.07733154, -0.009063721, -0.08392334, -0.039276123, -0.012062073, 0.017623901, 0.020233154, 0.004398346, -0.06549072, -0.016586304, -0.036315918, -0.0033931732, 0.037078857, -0.0037765503, 3.939867e-05, 0.0151901245, 0.050445557, 0.039123535, -0.0018692017, -0.005695343, 0.011940002, 0.029800415, 0.040740967, 0.019088745, 0.003868103, -0.023635864, -0.001865387, 0.007621765, -0.020355225, -0.0127334595, 0.023864746, 0.01374054, -0.043273926, -0.019424438, -0.04333496, -0.003200531, -0.05609131, 0.024337769, -0.013465881, -0.002658844, -0.0038471222, -0.06335449, 0.0016822815, -0.04849243, 0.0072898865, -0.0071907043, -0.01058197, 0.016494751, -0.04147339, 0.01576233, -0.016021729, -0.028961182, 0.060058594, 0.0028820038, -0.0023403168, -0.044830322, 0.047546387, -0.049682617, 0.060455322, 0.027557373, -0.054901123, 0.03390503, -0.017562866, 0.030426025, -0.016189575, 0.030059814, 0.0098724365, -0.0129852295, -0.01638794, 0.016906738, 0.018371582, 0.05014038, 0.0061836243, -0.026611328, 0.02609253, -0.035705566, -0.05831909, -0.011550903, -0.015930176, -0.0050735474, -0.0012845993, -0.03060913, -0.008964539, -0.058410645, 0.024124146, -0.075805664, 0.031082153, 0.010093689, 0.051330566, 0.010505676, -0.0034122467, 0.079956055, 0.00027537346, 0.038085938, 0.01309967, -0.044952393, -0.014328003, -0.023910522, -0.024032593, 0.0020046234, -0.022033691, -0.0076293945, 0.04284668, 0.018127441, -0.008071899, -0.013496399, -0.016662598, 0.041625977, -0.006668091, -0.023880005, 0.00013041496, 0.00081157684, 0.03302002, 0.003929138, 0.022155762, -0.033691406, -0.031921387, -0.007472992, -0.03100586, 0.06866455, 0.057769775, -0.035949707, 0.07537842, 0.064819336, -0.01663208, 0.022277832, 0.03062439, -0.015533447, 0.0028705597, 0.0154953, -0.042663574, 0.006752014, 0.010284424, 0.0059165955, 0.022384644, 0.008354187, -0.034820557, 0.015625, -0.0065994263, -0.01725769, -0.02798462, -0.0017166138, -0.020523071, 0.005706787, 0.0076675415, -0.0597229, -0.012763977, -0.016845703, -0.035217285, 0.0050468445, -0.028793335, -0.008872986, 0.0023345947, 0.004043579, -0.01802063, -0.0056762695, 0.00034427643, 0.015960693, -0.025817871, 0.013580322, 0.023254395, 0.010482788, -0.03970337, 0.027069092, -0.03765869, 0.037109375, 0.03289795, 0.025115967, 0.038726807, -0.021453857, -0.011169434, -0.03326416, -0.018295288, 0.048919678, 0.02772522, -0.058807373, -0.009376526, 0.0060157776, 0.00041246414, -0.036224365, -0.0020275116, -0.012069702, 0.008415222, 0.010040283, -0.059570312, 0.012435913, -0.0090789795, 0.0014715195, -0.023162842, -0.043914795, -0.030532837, 0.034942627, 0.0127334595, -0.017700195, -0.03253174, 0.035186768, -0.012458801, 0.025024414, -0.051483154, 0.010139465, -0.06854248, 0.0003950596, 0.039642334, 0.02053833, 0.010383606, -0.035186768, -0.001704216, -0.015090942, 0.07458496, 0.012931824, -0.0043144226, -0.017623901, 0.0025787354, 0.017547607, 0.02293396, 0.013404846, -0.0030498505, -0.0046691895, -0.02696228, -0.012763977, -0.095703125, 0.04525757, 0.055511475, -0.0027751923, -0.03933716, 0.014427185, 0.0847168, -0.0002220869, 0.0317688, 0.003616333, 0.03237915, -0.0016775131, 0.0132751465, -0.121398926, -0.07116699, -0.006175995, -0.03778076, 0.015930176, 0.0014772415, -0.023239136, 0.0059547424, 0.07342529, 0.007091522, -0.028717041, -0.006477356, 0.03225708, -0.015548706, 0.0016536713, -0.04083252, -0.01108551, -0.041107178, 0.036254883, -0.02720642, 0.010299683, 0.018203735, 0.009002686, 0.008270264, 0.011741638, 0.013435364, -0.029510498, -0.015777588, 0.018997192, -0.012763977, -0.0395813, -0.04385376, 0.032928467, -0.034240723, 0.0002925396, 0.0060539246, -0.021728516, 0.0256958, 0.0017814636, 0.006626129, -0.008026123, -0.022857666, 0.024459839, 0.008155823, 0.013389587, -0.024612427, -0.004470825, 0.049743652, 0.0040664673, -0.0034770966, 0.013702393, -0.0028514862, 0.020965576, -0.034851074, 0.0076026917, -0.038879395, 0.028274536, 0.05105591, 0.021560669, -0.014831543, 0.012702942, 0.02268982, -0.054718018, -0.050994873, 0.0073928833, 0.027801514, -0.04055786, 0.058013916, 0.012504578, 0.017608643, 0.030303955, 0.005554199, 0.031677246, -0.0018854141, -0.0054130554, 0.0030822754, 0.02609253, 0.019866943, -0.074279785, 0.0395813, -0.016021729, -0.054992676, -0.02267456, 0.022384644, 0.0037117004, -0.05480957, 0.05166626, -0.041290283, 0.06021118, -0.02859497, -0.034454346, 0.0017814636, 0.06298828, -0.015945435, -0.010276794, 0.016418457, -0.033935547, -0.07281494, -0.026565552, -0.023742676, -0.017288208, -0.006538391, -0.0096588135, 0.017105103, -0.005203247, -0.008010864, -0.021606445, -0.018432617, -0.0070724487, -0.022964478, 0.0036849976, 0.011436462, 0.008895874, 0.0003721714, -0.005142212, 0.030395508, 0.0077705383, -0.017166138, -0.046539307, -0.037902832, -0.00806427, -0.03277588, 0.033477783, 0.016921997, -0.033416748, 0.049041748, 0.03353882, 0.02684021, -0.019515991, 0.0060577393, 0.024215698, 0.004699707, -0.0039749146, -0.038757324, 0.00034165382, 0.061065674, -0.052093506, -0.041229248, -0.017028809, 0.024673462, 0.017608643, -0.0023727417, 0.085510254, 0.04385376, 0.00472641, 0.038909912, 0.010055542, -0.042938232, 0.005050659, 0.0017852783, -0.11138916, -0.030639648, -0.03186035, -0.0045928955, -0.029266357, -0.020858765, -0.011795044, 0.030792236, -0.013793945, -0.024642944, -0.030075073, -0.017318726, 0.006996155, -0.017654419, 0.003276825, -0.022613525, -0.004032135, -0.0287323, -0.016830444, -0.04336548, -0.031707764, 0.0017127991, 0.019622803, 0.019012451, 0.013389587, -0.005092621, -0.008659363, -0.020553589, 0.03414917, 0.0053634644, -0.02571106, -0.001958847, 0.016189575, 0.008964539, 0.03643799, 0.00022017956, -0.0043296814, -0.021209717, 0.020980835, -0.018478394, 0.047027588, -0.04812622, -0.018844604, -0.008056641, 0.048980713, -0.0016107559, 0.011856079, 0.036743164, -0.005634308, -0.046295166, -0.00919342, -0.007713318, -0.045074463, -0.0060577393, -0.041046143, -0.05630493, -0.02947998, -0.039367676, 0.024673462, -0.03201294, 0.0032863617, -0.016525269, 0.007873535, 0.0051727295, -0.025253296, 0.015449524, -0.0095825195, 0.02407837, -0.008552551, -0.013412476, 0.009002686, -0.036102295, -0.06555176, 0.021636963, 0.048461914, 0.003929138, -0.017364502, -0.029190063, 0.019958496, 0.03414917, -0.06829834, -0.01260376, 0.0041503906, -0.0059013367, -0.021453857, -0.056671143, -0.04269409, -0.018188477, 0.018798828, 0.010437012, 0.03112793, 0.008705139, 0.023849487, -0.015464783, -0.0016622543, -0.015617371, -0.016571045, -0.006137848, -0.00969696, -0.009750366, 0.007411957, -0.03881836, 0.056152344, 0.023376465, 0.037353516, 0.043670654, 0.0017824173, 0.012336731, -0.015640259, -0.046020508, -0.038238525, -0.08392334, 0.0038909912, 0.053588867, -0.028137207, 0.037231445, -0.013587952, 0.0026283264, -0.009765625, -0.015960693, 0.009513855, -0.029418945, 0.003862381, 0.020523071, 0.0061187744, -0.011985779, -0.013633728, -0.01474762, -0.011100769, 0.02418518, -0.011146545, 0.0206604, 0.022155762, -0.0024528503, -0.027954102, 0.029312134, -0.040039062, 0.011711121, -0.021011353, 0.019058228, 0.040008545, -0.03062439, -0.0038547516, -0.036987305, -0.011993408, 0.0006494522, -0.011703491, 0.0061683655, 0.05218506, 0.003168106, 0.02947998, -0.018432617, 0.018341064, -0.02305603, -0.033111572, 0.019729614, 0.0016489029, -0.014816284, -0.02848816, -0.0357666, -0.019470215, -0.012214661, -0.0647583, 0.033599854, -0.005771637, -0.011222839, -0.000995636, -0.006614685, 0.03692627, -0.03466797, 0.017929077, 0.0032920837, 0.015777588, 0.013046265, 0.037139893, -0.033813477, -0.07080078, -0.0118637085, 0.059448242, -0.07269287, -0.07043457, -0.0007381439, -0.0053100586, -0.002691269, 0.0006890297, 0.024597168, 0.0637207, 0.03552246, 0.0013952255, 0.013694763, -0.052246094, -0.005622864, 0.017105103, 0.0076789856, -0.015335083, -0.043518066, 0.025741577, 0.022506714, 0.023147583, -0.0012521744, 0.05810547, -0.08416748, 0.034362793, -0.025680542, 0.0057411194, -3.2305717e-05, -0.008773804, 0.04473877, 0.018493652, -0.041625977, 0.077819824, 0.016189575, 0.033569336, 0.0033092499, 0.013473511, 0.051452637, -0.015106201, -0.030166626, -0.049957275, -0.021530151, 0.024795532, -0.008285522, -0.03390503, 0.007259369, 0.009284973, -0.009513855, -0.016998291, 0.030273438, 0.0029315948, 0.0020866394, 0.006565094, 0.007724762, -0.013755798, -0.017242432, 0.0146484375, -0.014434814, -0.03717041, 0.05050659, -0.023895264, -0.01448822, -0.0028324127, -0.02281189, -0.01020813, -0.022659302, 0.012939453, -0.023590088, -0.039520264, 0.031021118, 0.035980225, 0.003583908, 0.031433105, 0.010040283, -0.00083208084, -0.04598999, -0.014030457, 0.040222168, -0.022644043, -0.06573486, 0.052642822, 0.021835327, 0.025238037, -0.03491211, -0.062805176, -0.06604004, 0.038482666, 0.026107788, -0.0004131794, 0.049987793, 0.0134887695, 0.014968872, 0.04107666, -0.023742676, -0.028366089, -0.0030937195, 0.04345703, 0.0022773743, 0.005470276]}, "B07621BM5H": {"id": "B07621BM5H", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)\nDescription: Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs\nFeatures: Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood\nSuperior refractory ceramic logs are reinforced with steel rods for greater integrity\nEfficient design helps preserve and protect natural resources\nThis Peterson Real Fyre gas log set is designed for indoor use only\nIncludes Auto-Safety Pilot control valve and Flexible Gas Connection Kit\n", "metadata": {"Name": "Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)", "Brand": "Peterson Real Fyre", "Description": "Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs", "Features": "Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood\nSuperior refractory ceramic logs are reinforced with steel rods for greater integrity\nEfficient design helps preserve and protect natural resources\nThis Peterson Real Fyre gas log set is designed for indoor use only\nIncludes Auto-Safety Pilot control valve and Flexible Gas Connection Kit", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009292603, -0.005630493, -0.049835205, -0.040161133, -0.009246826, -0.02520752, -0.0022850037, 0.028152466, -0.051452637, 0.006500244, -0.018478394, -0.0058174133, -0.015525818, -0.02722168, 0.024169922, -0.0635376, 0.027145386, -0.027191162, -0.014411926, -0.012535095, 0.0038585663, 0.009231567, -0.017044067, 0.047058105, 0.046661377, -0.004753113, 0.055236816, 0.03048706, 0.06414795, 0.036193848, 0.06463623, -0.10131836, 0.036621094, 0.022613525, -0.055664062, -0.0385437, -0.009628296, 0.002565384, -0.04309082, 0.04647827, 0.0003759861, 0.007858276, -0.007369995, -0.033294678, -0.046661377, 0.0041923523, -0.006137848, 0.025268555, -0.011650085, 0.026184082, 0.00032234192, -0.01763916, 0.0047416687, 0.038330078, -0.010261536, -0.017944336, -0.015411377, 0.058258057, 0.0002951622, 0.028533936, 0.0011444092, 0.06414795, -0.016311646, 0.00422287, -0.031402588, 0.001004219, -0.04522705, -0.013710022, 0.039093018, -0.022247314, -0.0028324127, -0.00198555, 0.023330688, -0.025253296, -0.033721924, 0.03933716, -0.0047187805, 0.03451538, 0.0049552917, -0.014076233, 0.024856567, 0.028533936, 0.0030269623, 0.0028972626, 0.010688782, 0.016403198, -0.024490356, -0.02670288, -0.032989502, -0.07745361, -0.036468506, 0.013267517, -0.0713501, -0.0010843277, -0.029724121, 0.003282547, -0.035491943, -0.025848389, 0.019363403, 0.011375427, 0.032104492, -0.03942871, 0.038757324, -0.009140015, -0.011428833, 0.036468506, 0.012771606, 0.01537323, 0.00039720535, 0.0067749023, -0.0031261444, -0.011642456, 0.009132385, -0.03604126, 0.0028457642, 0.026901245, -0.008857727, 0.03338623, 0.019165039, 0.03112793, -0.0065689087, 0.031555176, -0.037475586, 0.024627686, 0.03253174, 0.056152344, 0.032348633, -0.008956909, -0.061706543, 0.072143555, -0.013839722, -0.026168823, -0.011802673, 0.040008545, 0.00033521652, -0.029846191, 0.014663696, 0.0009326935, 0.013801575, -0.019348145, 0.014259338, 0.005306244, 0.04272461, -0.0059432983, -0.042816162, 0.0073928833, 0.025405884, 0.0012512207, -0.010307312, -0.027572632, -0.05758667, 0.042053223, 0.012535095, 0.011390686, 0.001045227, -0.0043563843, -0.0061149597, -0.006843567, 0.015640259, -0.013465881, -0.018249512, -0.02935791, -0.020492554, 0.032806396, 0.0050315857, 0.029678345, 0.0418396, 0.019744873, 0.010498047, 0.07495117, -0.018753052, 0.03286743, -0.026901245, 0.013160706, -0.00932312, -0.014251709, 0.01612854, 0.043395996, 0.025177002, -0.093811035, -0.067871094, -0.05508423, 0.077819824, -0.047027588, -0.0055122375, -0.025680542, 0.008758545, 0.013366699, 0.021133423, 0.023147583, -0.01084137, -0.005207062, -0.002653122, -0.029754639, 0.026916504, 0.011756897, -0.022750854, -0.0012598038, 0.009971619, 0.006565094, -0.075805664, 0.013183594, -0.047821045, 0.03564453, 0.011238098, -0.02720642, 0.0132751465, 0.025970459, 0.011253357, 0.031707764, -0.0049057007, 0.014755249, 0.0021247864, -0.049865723, -0.0070533752, 0.025985718, -0.021118164, 0.020507812, -0.002105713, 0.0029964447, 0.029937744, -0.013595581, 0.02784729, 0.03781128, 0.009338379, 0.01133728, -0.017852783, -0.0017118454, 0.021774292, 0.009651184, 0.026000977, 0.010513306, 0.04147339, 0.03488159, -0.017074585, 0.021194458, 0.008636475, -0.026901245, -0.028198242, 0.024963379, 0.018432617, -0.011260986, 0.013313293, 0.06188965, -0.03640747, -0.0007648468, 0.05178833, -0.010139465, -0.027908325, -0.0013446808, 0.04660034, 0.017684937, 0.028015137, 0.02671814, 0.003107071, 0.03111267, 0.0049324036, 0.005580902, -0.009437561, 0.0073432922, -0.0017623901, 0.06329346, 0.022781372, 0.013702393, 0.07684326, 0.000746727, 0.037506104, 0.030212402, -0.027191162, 0.02658081, -0.012420654, -0.04107666, -0.0020141602, 0.040130615, -0.01991272, -0.021560669, -0.0073776245, 0.014595032, -0.014587402, 0.0045204163, 0.01411438, 0.038726807, 0.03036499, -0.016738892, 0.052764893, 0.019439697, -0.0015354156, -0.04336548, 0.026138306, 0.0027103424, 0.043182373, -0.022750854, -0.015083313, 0.01322937, 0.014694214, -0.0395813, 0.04309082, -0.0064430237, 0.0435791, -0.03692627, 0.00026464462, 0.03515625, -0.058135986, 0.03994751, -0.015670776, -0.011260986, -0.014205933, -0.008735657, -0.01411438, -0.07043457, 9.179115e-05, 0.0049705505, 0.0063934326, -0.03765869, 0.07354736, 0.012428284, 0.02470398, 0.027816772, 0.061584473, 0.06866455, 0.02947998, 0.038879395, -0.022842407, -0.019226074, 0.02180481, -0.01058197, -0.03567505, -0.017944336, 0.019500732, -0.017807007, 0.017410278, -0.004890442, -0.022216797, -0.0051612854, 0.017990112, -0.0038414001, 0.011695862, -0.0030155182, -0.011680603, -0.042999268, -0.023757935, -0.00016152859, -0.008987427, -0.02998352, -0.056243896, 0.0016918182, 0.026687622, 0.009284973, 0.00034093857, -0.024673462, 0.026763916, -0.040405273, -0.0021400452, 0.017150879, -0.0020370483, -0.0050697327, 0.010787964, -0.010276794, -0.03353882, -0.050567627, -0.013252258, -0.0019302368, -0.047546387, -0.06665039, 0.042755127, -0.008773804, -0.059143066, -0.018630981, 0.04800415, 0.016708374, 0.066467285, 0.040618896, -0.08190918, -0.023330688, -0.01322937, -0.04067993, 0.039733887, -0.016357422, 0.029891968, 0.029434204, 0.0012159348, 0.025558472, -0.015182495, 0.029006958, 0.028839111, 0.057281494, 0.073791504, 0.047302246, 0.014656067, -0.04714966, -0.010848999, 0.032928467, -0.013122559, -0.0003707409, 0.023956299, -0.0012702942, 0.015220642, -0.008491516, -0.06323242, -0.009895325, -0.021331787, 0.0012226105, -0.026016235, -0.004108429, 0.014053345, -0.11047363, 0.017120361, -0.049194336, 0.012367249, 0.013450623, -0.023361206, 0.0021781921, 0.0024585724, -0.02671814, 0.0040283203, 0.0012645721, 0.00579834, 0.007041931, -0.043762207, 0.0027332306, 0.07989502, -0.08239746, 0.04232788, 0.01335144, -0.046936035, 0.0018281937, 0.0021476746, 0.042419434, 0.021850586, 0.02418518, 0.009269714, 0.0028896332, -0.014427185, -0.015571594, -0.03781128, -0.0056533813, -0.012184143, -0.006084442, 0.019973755, -0.032165527, -0.02394104, -0.028045654, 0.011985779, 0.054534912, 0.0011968613, 0.014129639, -0.030593872, -0.023147583, -0.006477356, -0.030822754, 0.016494751, -0.0033035278, 0.053955078, 0.025100708, 0.0014982224, 0.09954834, 0.039093018, 0.02519226, -0.013710022, 0.0065231323, -0.010055542, -0.031051636, 0.05404663, -0.024307251, -0.0033245087, -0.025253296, 0.03652954, -0.0026931763, -0.017105103, -7.44462e-05, -0.0128479, 0.03857422, -0.0076179504, 0.019744873, -0.0025463104, 0.013015747, 0.0017490387, 0.027191162, -0.03918457, 0.00029301643, -0.04788208, 0.005138397, -0.039001465, 0.064086914, 0.047058105, -0.016708374, 0.07098389, 0.045166016, -0.018234253, 0.011421204, -0.027374268, 0.005748749, -0.061676025, 0.095458984, -0.023864746, 0.019454956, 0.015586853, -0.050720215, -0.025390625, -0.023971558, -0.07910156, 0.020462036, 0.024505615, 0.026733398, -0.053863525, 0.05230713, 0.041412354, -0.007209778, 0.011146545, -0.08239746, 0.033111572, -0.048034668, 0.011222839, 0.01600647, -0.03302002, -0.03366089, -0.011482239, 0.047698975, -0.06213379, -0.008255005, 0.023117065, -0.025894165, 0.036071777, 0.05065918, -0.026794434, 0.013847351, -0.0138549805, -0.04586792, -0.047851562, -0.015625, 0.02015686, 0.044799805, 0.027114868, -0.0021209717, -0.006252289, 0.008163452, 4.0471554e-05, -0.030227661, -0.033843994, -0.022003174, 0.019699097, 0.0019130707, -0.04550171, -0.015083313, -0.018081665, 0.01020813, -0.0018920898, 0.038726807, -0.010749817, 0.002538681, -0.00026869774, 0.0158844, -0.00092315674, -0.028930664, -0.019165039, -0.02116394, -0.021774292, -0.00061798096, 0.01197052, 0.013549805, -0.008354187, 0.026367188, -0.04937744, 0.003627777, -0.02027893, -0.0055656433, 0.0690918, 0.022918701, 0.078063965, -0.017486572, -0.021606445, -0.024276733, 0.0690918, -0.014556885, 0.00730896, -0.06506348, -0.031021118, 0.0019874573, 0.017227173, 0.042755127, 0.06512451, 0.01499176, -0.058654785, -0.009880066, -0.024017334, 0.017242432, -0.010910034, -0.0051193237, -0.03967285, -0.016113281, 0.037139893, -0.012535095, 0.010055542, 0.03604126, -0.016555786, -0.013679504, 0.016479492, -0.056488037, 0.0053634644, -0.011833191, -0.030334473, 0.014633179, -0.00047707558, -0.0029582977, 0.013954163, 0.055908203, -0.018234253, 0.013885498, -0.0058021545, -0.051574707, 0.004917145, 0.041381836, -0.046295166, 0.02998352, -0.05355835, -0.044555664, -0.01737976, 0.02947998, 0.0062446594, -0.013504028, -0.0018577576, 0.0031166077, 0.013717651, -0.031951904, 0.013191223, 0.017578125, -0.035186768, 0.004627228, -0.015686035, -0.0028381348, -0.0039253235, -0.013626099, 0.005443573, 0.018478394, 0.0513916, -0.0015506744, -0.020980835, 0.020706177, -0.041412354, -0.014381409, 0.022155762, 0.01322937, 0.0072898865, -0.02748108, 0.00026392937, -0.020111084, -0.009498596, 0.0036029816, -0.040740967, 0.027893066, -0.012245178, 0.00856781, -0.005531311, -0.00025725365, -0.012886047, 0.015289307, -0.040527344, 0.019958496, 0.0009975433, 0.004020691, -0.070251465, -0.0019874573, -0.007965088, 0.002506256, 0.0088272095, 0.013420105, -0.010505676, 0.04156494, -0.027511597, 0.010368347, 0.012260437, -0.041625977, 0.031433105, 0.0011100769, 0.0209198, 0.024627686, 0.0067710876, -0.008354187, -0.014846802, -0.015380859, 0.0023117065, 0.019256592, -0.025985718, 0.03488159, -0.023239136, 0.06274414, 0.008171082, -0.044647217, 0.026809692, 0.04043579, -0.0692749, -0.061706543, 0.062927246, -0.03729248, -0.024658203, 0.042999268, 0.017120361, 0.0071105957, -0.01586914, -0.04159546, 0.041381836, 0.022140503, -0.02986145, -0.008476257, -0.033447266, 0.035888672, -0.017730713, -0.00674057, -0.05065918, 0.002445221, -0.010910034, 0.0052223206, 0.044158936, 0.012565613, -0.039031982, -0.024810791, 0.009712219, -0.018218994, -0.036315918, 0.083984375, -0.05633545, -0.0027618408, -0.0256958, -0.035461426, -0.011764526, -0.0055732727, -0.07006836, -0.014831543, 0.016693115, 0.043884277, -0.006088257, -0.03173828, 0.06463623, -0.030853271, -0.03616333, -0.06506348, 0.062805176, 0.012466431, -0.0028858185, 0.031463623, 0.004196167, 0.011940002, 0.023406982, -0.036193848, -0.08306885, 0.056732178, 0.02029419, -0.11254883, -0.027816772, -0.03765869, -0.023117065, 0.016403198, -0.0013818741, 0.01852417, 0.042633057, 0.010139465, -0.010475159, 0.00217247, 0.0027561188, -0.009216309, -0.023803711, 0.012390137, -0.0019083023, -0.0033950806, -0.009376526, -0.0010099411, 0.011886597, 0.03201294, -0.011077881, 0.030838013, 0.0057754517, 0.020401001, 0.0013027191, 0.005317688, -0.047973633, 0.023117065, 0.027236938, -0.014671326, -0.011558533, -0.014122009, -0.002544403, 0.0063171387, -0.012939453, 0.022094727, -0.020355225, 0.053985596, 0.044799805, 0.017120361, -0.049743652, -0.052703857, 0.07757568, 0.030441284, 0.049560547, 0.017181396, 0.009017944, -0.0184021, 0.009437561, 0.018325806, 0.023361206, -0.016204834, -0.04623413, -0.005874634, -0.050872803, 0.025985718, -0.014549255, 0.03793335, -0.008369446, 0.021240234, -0.031234741, 0.038116455, -0.00041913986, -0.0059127808, 0.056243896, -0.043640137, 0.050933838, -0.01235199, -0.014564514, -0.024154663, -0.0018177032, 0.016998291, -0.028747559, 0.013046265, 0.033111572, 0.016921997, -0.0053977966, 0.0059509277, 0.017105103, -0.031066895, 0.008590698, -0.04788208, -0.00012135506, -0.023086548, -0.047851562, -0.008384705, -0.025741577, 0.0121154785, -0.019180298, 0.07537842, -0.025497437, 0.011444092, 0.021484375, -0.012275696, 0.011260986, -0.016220093, 0.0063476562, 0.002609253, 0.040649414, -0.012084961, -0.013572693, 0.01499939, 0.023422241, -0.0047416687, 0.02949524, -0.033172607, 0.0070610046, -0.018981934, 0.002494812, -0.03805542, -0.008811951, -0.004234314, -0.044708252, 0.014144897, 0.009757996, 0.06524658, 0.041809082, -0.018234253, -0.044281006, 0.01399231, -0.08215332, -0.00096035004, 0.022369385, 0.018096924, -0.028427124, 0.03479004, 0.0073394775, -0.012008667, 0.02798462, 0.032348633, 0.03274536, -0.0005698204, -0.04486084, 0.018859863, 0.00340271, -0.018341064, 0.026977539, -0.034179688, -0.021835327, 0.059753418, 0.03086853, -0.010467529, -0.019332886, -0.016479492, -0.016311646, 0.0007920265, -0.03994751, 0.0066871643, 0.015312195, 0.03768921, 0.0060539246, -0.034301758, -0.004184723, 8.738041e-05, 0.075805664, -0.0027332306, -0.012199402, -0.021194458, 0.006374359, -0.029342651, -0.04244995, -0.04498291, 0.041503906, -0.028869629, -0.045166016, -0.046691895, 0.012023926, -0.003288269, -0.055389404, -0.019088745, -0.006526947, 0.0847168, 0.008766174, 0.019805908, 0.0023536682, -0.022521973, -0.013755798, -0.010139465, 0.038604736, -0.019500732, 0.0070495605, 0.016586304, 0.020187378, 0.00026345253, 0.03540039, 0.05227661, 0.026046753, -0.005207062, -0.020629883, -0.004333496, -0.020767212, 0.037078857, 0.0054092407, -0.0541687, -0.017730713, 0.02154541, -0.018295288, 0.017333984, 0.016067505, -0.031051636, -0.057373047, -0.03363037, -0.043273926, -0.0037212372, 0.007835388, -0.016967773, 0.047851562, 0.040527344, -0.020874023, 0.047027588, 0.013458252, -0.00983429, 0.029663086, -0.010551453, 0.026504517, -0.03967285, -0.03744507, -0.041992188, -0.03274536, 0.028198242, -0.009742737, -0.021347046, -0.041046143, -0.0069770813, 0.0024604797, -0.016830444, 0.027191162, -0.015045166, 0.024337769, 0.027511597, -0.026245117, 0.025741577, -0.01423645, 0.011054993, -0.016784668, 0.0138168335, 0.02494812, -0.0008430481, -0.020401001, -0.03213501, -0.022705078, 0.00983429, -0.03189087, -0.045806885, -0.036743164, -0.033966064, 0.016586304, 0.05038452, -0.023727417, -0.0038089752, -0.019821167, -0.00058555603, -0.03074646, 0.02078247, 0.02947998, 0.022216797, -0.034301758, 0.02748108, 0.02609253, 0.04043579, -0.027786255, -0.09466553, -0.051452637, 0.040527344, 0.022979736, -0.030761719, 0.076538086, -0.04159546, 0.015510559, 0.012336731, -0.008682251, -0.04272461, 0.022644043, 0.09643555, 0.0047683716, 0.022735596]}, "B07MCNNWW8": {"id": "B07MCNNWW8", "original": "Brand: kitma\nName: Kitma 13\" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU\nDescription:

      KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

      Commercial Liquid Propane\u00a0Work Range Feature:

      \u25cfDurable stainless steel structure - gives the unit superior corrosion resistance and cleanability

      \u25cfHeavy duty burners - provides stable flame to fry food quickly

      \u25cfAdjustable stainless steel legs -adjusts the height of griddle to meet your needs

      About Product:

      Size: 34 ''\u00d720.8''\u00d717.9''

      Total BTU: 95,000BTU/h

      Intake-tube pressure: 10\u00a0in.W.C.

      Nozzle No: #67

      Package Includes:

      Work Range*1(completely installed )

      Instructions*1

      \u2605About us:

      We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform \u201cmaintenance staff on-site service\u201d within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

      \nFeatures: \u3010Continuous Pilot\u3011Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs\n\u3010Powerful 95,000 BTU Burner\u3011This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you'll need to cook. And it measures 13\" in diameter to accommodate your different size wok\n\u3010Stainless Steel Construction\u3011This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service\n\u3010Easy to Load and Adjustable\u3011This unit's rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface\n\u3010Quality Warranty\u3011Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition\n", "metadata": {"Name": "Kitma 13\" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU", "Brand": "kitma", "Description": "

      KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

      Commercial Liquid Propane\u00a0Work Range Feature:

      \u25cfDurable stainless steel structure - gives the unit superior corrosion resistance and cleanability

      \u25cfHeavy duty burners - provides stable flame to fry food quickly

      \u25cfAdjustable stainless steel legs -adjusts the height of griddle to meet your needs

      About Product:

      Size: 34 ''\u00d720.8''\u00d717.9''

      Total BTU: 95,000BTU/h

      Intake-tube pressure: 10\u00a0in.W.C.

      Nozzle No: #67

      Package Includes:

      Work Range*1(completely installed )

      Instructions*1

      \u2605About us:

      We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform \u201cmaintenance staff on-site service\u201d within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

      ", "Features": "\u3010Continuous Pilot\u3011Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs\n\u3010Powerful 95,000 BTU Burner\u3011This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you'll need to cook. And it measures 13\" in diameter to accommodate your different size wok\n\u3010Stainless Steel Construction\u3011This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service\n\u3010Easy to Load and Adjustable\u3011This unit's rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface\n\u3010Quality Warranty\u3011Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030227661, -0.0099105835, -0.044952393, -0.028045654, -0.026123047, 0.007843018, -0.032958984, 0.010612488, -0.0041007996, 0.026687622, 0.011680603, 0.023010254, -0.036743164, -0.036621094, -0.016113281, 0.0062217712, 0.015075684, 0.017959595, 0.045715332, 0.0021762848, 0.002779007, 0.021530151, -0.015174866, 0.027328491, 0.036468506, -0.01348114, -0.060028076, 0.005821228, 0.01625061, -0.0017633438, 0.020706177, 0.014228821, 0.06359863, -0.054992676, -0.0047187805, -0.037902832, -0.007041931, -0.03591919, -0.0395813, -3.159046e-05, -0.013435364, 0.008705139, -0.005252838, -0.0029678345, -0.027526855, -0.010398865, -0.017471313, -0.029418945, 0.005138397, 0.03137207, 0.0030460358, -0.009048462, 0.00026535988, 0.018157959, -0.017074585, 0.006877899, 0.019134521, -0.04547119, 0.009498596, -0.037231445, -0.007911682, 0.007358551, 0.04107666, 0.047851562, -0.029937744, 0.029418945, 0.052856445, -0.0121536255, 0.0030059814, -0.037200928, -0.024459839, 0.0037631989, 0.025222778, -0.021942139, 0.017669678, -0.04055786, -0.0034942627, -0.014457703, 0.026245117, -0.001991272, 0.039733887, 0.009895325, 0.016601562, -0.026824951, 0.0049705505, -0.0335083, 0.00340271, -0.008857727, -0.019851685, -0.029907227, 0.0014181137, -0.04373169, -0.0552063, 0.05444336, 0.020812988, -0.009643555, 0.0036716461, -0.0715332, 0.061798096, -0.019470215, 0.062927246, -0.078552246, 0.026412964, 0.014854431, -0.000330925, 0.07086182, -0.013000488, 0.020202637, 0.024978638, 0.0014533997, 0.02734375, 0.001745224, -0.003982544, -0.011932373, -0.007549286, 0.016540527, -0.042236328, 0.03137207, -0.014030457, 0.033081055, -0.02810669, -0.023956299, 0.032958984, 0.009483337, 0.004737854, 0.007751465, -0.019073486, -0.0026283264, -0.048095703, -0.021133423, 0.007724762, 0.037506104, 0.030197144, 0.05090332, 0.0030384064, 0.011756897, 0.015396118, -0.01574707, 0.0067596436, -0.01737976, 0.019256592, 0.012611389, 0.051086426, 0.00075387955, -0.027038574, 0.0017995834, 0.02960205, 0.017990112, -0.013587952, -0.05392456, -0.043426514, 0.04748535, 0.027191162, 0.014091492, -0.0070762634, 0.045715332, 0.027313232, 0.004989624, -0.052124023, -0.0289917, -0.01184082, -0.006198883, -0.010124207, -0.040283203, -0.04449463, 0.016235352, -0.026123047, 0.0107803345, 0.013412476, 0.053710938, -0.055145264, -0.0021247864, 0.011177063, -0.0039482117, -0.02784729, 0.0059165955, -0.008666992, 0.078186035, 0.052093506, -0.05847168, -0.04083252, -0.059814453, 0.13378906, -0.04815674, -0.023773193, -0.011276245, -0.008384705, -0.016799927, 0.025924683, -0.0052452087, 0.01474762, 3.4213066e-05, -0.03503418, -0.029510498, 0.0076446533, -0.014961243, 0.008262634, -0.0030460358, 0.01008606, -0.0011167526, 0.031585693, -0.02229309, 0.017227173, -0.04421997, -0.013252258, -0.043548584, -0.0038757324, 0.011291504, -0.011756897, 0.0058403015, 0.0063476562, -0.0317688, 0.0063552856, -0.026779175, -0.017318726, 0.012924194, -0.013900757, 0.021347046, 0.020523071, 0.011581421, 0.046661377, -0.01852417, 0.02810669, -0.009719849, -0.009552002, -0.027191162, -0.02166748, -0.011985779, -0.029327393, 0.008834839, -0.0070228577, 0.014862061, 0.059692383, 0.09295654, -0.003276825, 0.022979736, 0.07965088, 0.082458496, -0.015975952, -0.0357666, 0.01965332, -0.010665894, -0.02355957, 0.0043182373, -0.029006958, -0.01361084, 0.039245605, -0.0071105957, 0.016708374, 0.024612427, 0.037994385, 0.002866745, 0.022003174, 0.03640747, 0.025253296, 0.0030097961, -0.05456543, 0.025756836, -0.0063323975, -0.03515625, 0.008743286, 0.05908203, 0.025924683, 0.024307251, -0.011680603, -0.0082092285, 0.0069351196, 0.010063171, -0.0010738373, -0.0055274963, 0.017700195, 0.0032615662, 0.01687622, 0.029174805, -0.05831909, 0.01626587, -0.013969421, 0.024002075, 0.008277893, 0.0077590942, -0.005859375, -0.02180481, 0.008613586, 0.001581192, 0.023162842, -0.038513184, 0.041809082, 0.011276245, -0.011367798, 0.019042969, 0.046783447, -0.015357971, 0.0061683655, -0.027526855, -0.03164673, -0.007457733, 0.07873535, 0.014160156, 0.000813961, -0.008071899, 0.020401001, 0.025238037, -0.033233643, 0.007534027, 0.0048294067, -0.0158844, 0.008956909, 0.05731201, 0.02848816, -0.016036987, -0.017608643, 0.020507812, 0.018051147, 0.052642822, 0.025970459, -0.026153564, 0.0069618225, 0.043060303, 0.015472412, 0.023849487, -0.017807007, 0.03665161, -0.023757935, 0.0056762695, 0.033935547, 0.0045700073, -0.014053345, -0.007873535, -0.059509277, 0.0070114136, 0.05340576, -0.020980835, 0.034576416, 0.012741089, 0.008178711, -0.0019283295, 0.0024909973, 0.054718018, -0.0012226105, -0.05581665, -0.015060425, -0.0501709, -0.032287598, 0.0129470825, -0.07623291, -0.027664185, 0.023742676, -0.004463196, 0.04449463, -0.01197052, 0.042755127, 0.015083313, 0.010536194, -0.026412964, -0.004009247, 0.032104492, -0.025680542, -0.05807495, -0.011413574, -0.07836914, 0.003189087, -0.0154800415, -0.047424316, -0.075927734, 0.046722412, -0.003353119, -0.049560547, -0.041778564, -0.040222168, -0.012397766, 0.022766113, -0.0038928986, -0.06439209, -0.03829956, -0.04119873, 0.023406982, 0.048919678, -0.025802612, 0.03189087, 0.031066895, -0.010215759, 0.0068130493, -0.033111572, -0.016448975, -0.015808105, 0.0044898987, -0.034576416, 0.023086548, 0.0052261353, 0.011978149, 0.025970459, 0.04598999, 0.030471802, -0.0027770996, 0.0051460266, -0.022033691, -0.0008997917, 0.017532349, -0.060394287, 0.005027771, -0.08862305, 0.018692017, -0.029586792, -0.018600464, -0.0011348724, -0.07397461, -0.035461426, -0.068603516, 0.0031356812, 0.06378174, 0.023880005, -0.024597168, 0.01826477, 0.0042381287, 0.012329102, -0.022094727, 0.023391724, -0.0070381165, -0.028686523, 0.00472641, 0.10797119, -0.14916992, 0.06878662, 0.04446411, 0.018692017, 0.039215088, -0.018569946, -0.01838684, -0.023590088, -0.0043182373, -0.003774643, -0.02368164, -0.008071899, -0.0064430237, -0.011932373, 0.02128601, -0.0132369995, -0.0054626465, 0.0121154785, -0.027252197, -0.014259338, 0.0072364807, -0.011489868, 0.044921875, -0.04522705, 0.0112838745, 0.00015509129, -0.050964355, 0.0146865845, -0.06137085, -0.00078725815, 0.0046043396, -0.008110046, 0.010734558, -0.0059890747, 0.09857178, -0.0041618347, 0.04046631, 0.01612854, -0.03366089, 0.0067367554, -0.027191162, -0.014228821, 0.0154953, 0.0146484375, -0.0059013367, 0.016021729, 0.032287598, 0.039123535, -0.043884277, 0.02482605, 0.01524353, 0.014457703, -0.0046463013, -0.005332947, -0.002084732, 0.05203247, -0.03048706, 0.03149414, -0.0390625, -0.052703857, 0.004573822, -0.06951904, 0.059387207, 0.020095825, -0.017349243, 0.05142212, 0.034240723, -0.006515503, -0.0043144226, 0.010787964, -0.015052795, 0.033996582, -0.033111572, -0.017486572, -0.0054893494, 0.010108948, -0.004486084, 0.0049438477, -0.021530151, -0.024673462, 0.0206604, 0.0014648438, -0.0068893433, -0.039031982, -0.008964539, 0.014976501, -0.050933838, 0.0021381378, -0.008880615, -0.04510498, -0.04598999, -0.020492554, -0.0032024384, -0.02041626, -0.034301758, 0.0105896, -0.046539307, -0.0018491745, 0.02670288, 0.041168213, 0.019500732, 0.013496399, 0.006500244, 0.020401001, -0.016143799, 0.002527237, -0.011802673, -0.032836914, -0.0037174225, 0.019454956, 0.041748047, -0.0054893494, -0.019866943, -0.0030918121, -0.020614624, -0.024856567, 0.025436401, -0.021026611, -0.05102539, -0.024978638, 0.02357483, 0.03488159, -0.0011491776, -0.0058403015, -0.0079574585, -0.051727295, -0.01763916, -0.0042686462, -0.01889038, -0.019683838, -0.016952515, 0.0033664703, -0.015945435, -0.020141602, 0.028427124, -0.027526855, -0.00048589706, 0.0061149597, -0.009162903, -0.0079422, 0.03475952, -0.0736084, 0.02645874, -0.088134766, 0.016906738, -0.008895874, -0.0016202927, 0.01713562, -0.027511597, -0.01373291, 0.00033855438, 0.07104492, 0.00064229965, -0.0020809174, -0.036224365, -0.0072135925, 0.027175903, 0.01322937, 0.012580872, -0.012710571, 0.008773804, -0.0018796921, 0.013595581, -0.036865234, -0.030471802, 0.016555786, -0.072143555, -0.04260254, -0.036071777, 0.06604004, -0.0045433044, 0.026168823, 0.016052246, -0.0065574646, 0.021850586, -0.01789856, -0.11340332, -0.02696228, -0.012748718, -0.02319336, 0.03250122, 0.0006403923, -0.010902405, 0.025421143, 0.080566406, 0.029510498, -0.005657196, -0.0068511963, -0.0035514832, -0.016677856, -0.00038170815, 0.0045280457, 0.003921509, -0.0038013458, -0.0004184246, -0.047576904, 0.025634766, 0.028640747, -0.012039185, -0.019363403, -0.014076233, -0.035583496, -0.03933716, -0.027435303, 0.0018606186, 0.02809143, -0.02330017, -0.035858154, 0.04220581, -0.01852417, 0.025848389, -0.009689331, 0.014678955, 0.038879395, -0.021514893, -0.028121948, -0.007511139, -0.016616821, -0.010437012, 0.0015697479, -0.024780273, -0.05609131, 0.000626564, 0.06713867, -0.005050659, 0.0087509155, 0.042419434, 0.004005432, -0.009185791, 0.01576233, -0.0045318604, -0.00623703, -0.027618408, 0.004589081, -0.0072135925, -0.0262146, 0.035339355, -0.0015239716, 0.01461792, -0.001461029, 0.06112671, -0.0048561096, 0.0069618225, 0.04135132, -0.0052452087, 0.025741577, 0.05822754, -0.01663208, 0.04638672, 0.04232788, -0.010093689, -0.0017518997, -0.011276245, 0.023727417, -0.01878357, 0.018341064, 0.011505127, -0.004306793, -0.04220581, 0.021331787, 0.061767578, 0.024230957, -0.002105713, -0.029266357, 0.076416016, 0.011550903, -0.050811768, -0.01524353, 0.068115234, -0.06347656, -0.019302368, 0.00806427, -0.010696411, -0.06536865, -0.011924744, 0.005016327, 0.03756714, -0.039611816, -0.03262329, 0.04586792, 0.025512695, -0.039855957, 0.0021076202, -0.014961243, 0.014701843, -0.0149383545, -0.03387451, -0.036010742, -0.0005135536, -0.031204224, 0.014007568, -0.045410156, -0.0005493164, 0.024398804, -0.020431519, -0.068359375, -0.023483276, -0.041015625, 0.0082092285, -0.031219482, 0.0010070801, -0.01789856, -0.015579224, 0.0031776428, -0.009353638, -0.06085205, -0.021102905, -0.012710571, -0.0206604, -0.02748108, -0.02784729, 0.044952393, -0.058776855, -0.046569824, -0.043792725, 0.031051636, 0.0065307617, 0.009178162, 0.05697632, -0.009185791, 0.022018433, 0.016189575, 0.017532349, -0.0052223206, -0.0012159348, -0.005504608, -0.0078048706, 0.0016803741, -0.0046806335, 0.05557251, -0.035186768, -0.10430908, -0.005592346, 0.02558899, 0.017974854, 0.0057144165, -0.008544922, -0.088256836, 0.019042969, -0.025436401, 0.0041999817, -0.02609253, 0.00021028519, -0.009346008, -0.001282692, -0.011253357, -0.024139404, 0.03274536, -0.012550354, -0.0032691956, 0.001036644, 0.0050964355, 0.014007568, 0.0031547546, -0.008277893, 0.00027227402, -0.022903442, -0.004776001, 0.03111267, -0.009231567, 0.055114746, -0.018692017, -0.0029621124, -0.022857666, -0.0015697479, 0.0067710876, 0.036865234, -0.055541992, -0.013572693, 0.04220581, 0.055877686, -0.0005068779, -0.022369385, 0.033416748, 0.017074585, -0.047790527, -0.013458252, 0.012077332, -0.015838623, -0.029830933, 0.0066108704, -0.07507324, -0.019439697, -0.034240723, -0.011138916, 0.02330017, -0.015258789, -0.02406311, 0.017974854, 0.0009689331, -0.025787354, 0.031036377, -0.018112183, 0.028747559, -0.0064086914, 0.0074310303, 0.015213013, 0.011512756, 0.021011353, -0.037475586, -0.00045919418, -0.0020713806, 0.046081543, -0.0037174225, 0.03314209, 0.011016846, -0.05493164, 0.0024871826, -0.0007791519, 0.025634766, 0.014564514, -0.012321472, 0.009567261, -0.019088745, 0.039367676, 0.0017271042, 0.052947998, -0.027008057, 0.05130005, 0.030883789, -0.015174866, 0.02532959, 0.005344391, 0.008033752, 0.02444458, 0.03704834, -0.028823853, 0.048980713, 0.006801605, 0.03024292, -0.0440979, -0.016021729, -0.035308838, 0.018676758, -0.004463196, 0.0149002075, -0.006603241, -0.03781128, 0.014335632, 0.02229309, 0.0033168793, 0.057800293, 0.018936157, 0.015510559, -0.06378174, -0.0309906, 0.01927185, -0.03451538, -0.013832092, 0.024093628, -0.037750244, -0.00046014786, -0.018478394, -0.009567261, 0.0058555603, 0.002500534, 0.001127243, 0.006839752, 0.012008667, 0.055511475, 0.029571533, 0.059570312, -0.04925537, 0.017242432, 0.05432129, 0.018188477, 0.039916992, -0.029129028, 0.010604858, -0.010292053, -0.015655518, 0.020492554, 0.006839752, 0.026901245, 0.059631348, 0.01979065, -0.015731812, -0.027664185, -0.0053482056, -0.0010528564, -0.019302368, 0.037902832, -0.03479004, -0.00062799454, -0.04852295, -0.0993042, -0.026519775, 0.00057315826, -0.07373047, 0.03668213, 0.0067749023, -0.04031372, -0.02458191, 0.02029419, -0.003250122, -0.036010742, -0.018173218, 0.0068130493, -0.01058197, 0.004901886, 0.070007324, -0.048217773, -0.064086914, -0.05960083, 0.015457153, -0.09063721, -0.03414917, 0.012748718, -0.046081543, -0.05050659, -0.035583496, -0.015853882, -0.012229919, 0.047790527, -0.035949707, 0.0340271, -0.061645508, -0.04168701, 0.016540527, 0.007850647, -0.015388489, -0.00356102, 0.043121338, -0.005420685, 0.03677368, 0.012954712, 0.020217896, -0.015899658, 0.00057792664, -0.013374329, -0.03643799, 0.0064811707, -0.036834717, 0.04321289, 0.0054626465, -0.038330078, 0.0036087036, 0.0112838745, 0.018875122, 0.03427124, -0.017044067, 0.039215088, 0.0004518032, -0.04724121, -0.06048584, -0.035614014, 0.012802124, 0.038360596, 0.008331299, 0.009033203, 0.015556335, -0.012832642, -0.0051498413, -8.070469e-05, 0.012557983, 0.0078086853, -0.03717041, 0.010658264, -0.03604126, -0.0043678284, -0.0003299713, -0.006965637, -0.03479004, 0.0005865097, -0.01512146, -0.022262573, -0.029754639, -0.023773193, 0.010528564, -0.03527832, -0.01940918, -0.0019168854, -0.07128906, -0.0046424866, -0.00340271, 0.015975952, 0.002029419, 0.036499023, -0.055419922, -0.035125732, 0.024551392, 0.029846191, 0.031341553, -0.03036499, 0.052520752, 0.034179688, 0.047088623, -0.0124435425, -0.0070495605, -0.045654297, 0.082336426, 0.032958984, -0.035125732, 0.06970215, -0.039398193, 0.018447876, 0.06524658, 0.0016307831, 0.012107849, 0.007171631, 0.025741577, 0.02519226, -0.004486084]}, "B00VG0S56Y": {"id": "B00VG0S56Y", "original": "Brand: Unicook\nName: Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More\nDescription: Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

      Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection\uff1a

      \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

      \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

      \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

      \u25cf Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

      Care and Use
      \u25ba Allow grill to cool before covering.
      \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
      \u25ba Air dry for next use.

      Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Upgraded Material\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements.\n\u3010Handles and Straps\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5\u201d wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off.\n\u3010Covered Air Vents\u3011- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds.\n\u3010BBQ Grill Cover Dimension\u3011- 60 inch grill cover measures 60\" width by 23\" depth and 42\" height, fits most grills with 3 to 4 burners, width between 53\u201d and 58\u201d. \ufe61Not designed to cover the wheels entirely, the grill could be moved freely with cover on.\n\u3010Wide Selection\u3011 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"UNICOOK\" button on top to find the right cover to protect your grill.\n", "metadata": {"Name": "Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More", "Brand": "Unicook", "Description": " Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

      Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection\uff1a

      \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

      \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

      \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

      \u25cf Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

      Care and Use
      \u25ba Allow grill to cool before covering.
      \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
      \u25ba Air dry for next use.

      Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.", "Features": "\u3010Upgraded Material\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements.\n\u3010Handles and Straps\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5\u201d wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off.\n\u3010Covered Air Vents\u3011- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds.\n\u3010BBQ Grill Cover Dimension\u3011- 60 inch grill cover measures 60\" width by 23\" depth and 42\" height, fits most grills with 3 to 4 burners, width between 53\u201d and 58\u201d. \ufe61Not designed to cover the wheels entirely, the grill could be moved freely with cover on.\n\u3010Wide Selection\u3011 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"UNICOOK\" button on top to find the right cover to protect your grill.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0006842613, 0.005054474, -0.020889282, -0.031341553, -0.00945282, 0.019195557, -0.047729492, 0.0003376007, -0.03564453, 0.003282547, -0.0031280518, 0.034606934, -0.027618408, -0.026062012, -0.0045547485, -0.03213501, -0.002462387, 0.0057678223, -0.004360199, -0.020706177, 0.004016876, -0.030273438, 0.00075006485, 0.008552551, -0.0073127747, 0.026657104, 0.024215698, -0.002046585, -0.003929138, -0.0057296753, 0.008171082, -0.015426636, 0.065979004, -0.009780884, -0.053833008, 0.022872925, -0.006175995, -0.013404846, -0.036468506, 0.025024414, 0.011566162, -0.0062294006, 0.0026569366, 0.0028476715, 0.018981934, -0.07470703, 0.043426514, -0.073791504, -0.009239197, 0.017074585, 0.036743164, 0.028579712, 0.024459839, 0.018875122, 0.023132324, 0.06439209, -0.024978638, 0.0019836426, 0.03439331, 0.017929077, -0.011390686, -0.01576233, 0.005844116, -0.035827637, -0.04284668, -0.015350342, 0.07904053, -0.016815186, -0.08685303, -0.064575195, 0.07733154, 0.014549255, 0.02947998, -0.012489319, 0.014801025, -0.051757812, 0.004184723, -0.003660202, 0.010139465, 0.019638062, -0.010429382, -0.054138184, 0.045898438, -0.017669678, -0.01939392, -0.009727478, -0.01461792, 0.0128479, 0.011726379, 0.008529663, 0.0073051453, 0.06384277, -0.017501831, 0.022338867, 0.009735107, -0.019607544, -0.018554688, -0.021850586, 0.014633179, 0.027618408, 0.022994995, -0.039215088, 0.06530762, -0.031707764, -0.020874023, 0.061767578, -0.008583069, 0.035217285, 0.003068924, 0.019500732, 0.0129852295, -0.06878662, -0.023895264, -0.055114746, -0.04006958, 0.068725586, 0.008880615, -0.0670166, 0.03125, -0.043548584, -0.062805176, -0.037109375, -0.006893158, 0.017410278, 0.04071045, 0.024230957, 0.018875122, 0.032104492, -0.036834717, -0.008911133, -0.014091492, 0.024795532, 0.017974854, 0.060760498, 0.025726318, -0.0113220215, 0.064331055, 0.0034618378, 2.3186207e-05, 0.021316528, -0.04034424, 0.020523071, 0.03945923, -0.033447266, -0.0051345825, 0.020065308, 0.020370483, 0.0075798035, 0.0008635521, -0.045074463, 0.008880615, -0.0049591064, 0.064208984, -0.006134033, -0.085510254, -0.012306213, 0.032958984, -0.03439331, -0.06124878, -0.08947754, -0.0009646416, -0.029373169, -0.02720642, -0.026412964, -0.030822754, 0.02708435, 0.01979065, 0.018630981, 0.01737976, 0.022140503, 0.025283813, -0.0076293945, -0.013053894, -0.030471802, -0.019805908, -0.01739502, -0.045532227, 0.1126709, 0.081970215, -0.08880615, -0.052459717, -0.06451416, 0.17297363, -0.034454346, -0.006538391, -0.02947998, 0.014862061, -0.0017118454, 0.03289795, 0.009895325, 0.014152527, -0.017181396, 0.009605408, 6.842613e-05, -0.012001038, -0.008399963, -0.03652954, 0.008468628, -0.026275635, -0.007621765, -0.025741577, 0.0040626526, 0.00079393387, 0.009498596, 0.03237915, -0.023513794, 0.010948181, 0.01939392, -0.013153076, 0.0027751923, 0.00995636, -0.018936157, -0.015457153, -0.024353027, -0.018493652, 0.023422241, -0.010787964, 0.006916046, 0.02406311, -0.010414124, 0.054229736, 0.006034851, 0.026733398, 0.019424438, 0.0029258728, 0.0071792603, -0.030075073, 0.014671326, -0.0026950836, 0.012054443, -0.00017523766, 0.029022217, 0.06829834, 0.020339966, -0.022094727, 0.049102783, 0.06222534, -0.0026855469, -0.03768921, 0.025726318, 0.0023956299, -0.005153656, -0.035369873, 0.01701355, 0.007701874, -0.011558533, -0.0079422, 0.02407837, -0.03503418, -0.025421143, 0.028076172, 0.008049011, 0.024627686, -0.0007710457, -0.005001068, 0.03744507, -0.044525146, 0.022277832, -0.032714844, 0.0034999847, -0.018722534, 0.025543213, 0.068847656, -0.021728516, 0.03213501, -0.0158844, 0.019561768, 0.030288696, -0.0004954338, -2.0444393e-05, -0.0007953644, -0.02432251, -0.004425049, 0.062347412, 0.036987305, -0.019180298, -0.03543091, -0.011009216, 0.018096924, 0.021255493, 0.021896362, 0.056152344, 0.005493164, -0.009017944, -0.013847351, -0.012901306, 0.013504028, 0.026306152, -0.027694702, 0.010696411, 0.026641846, 0.027404785, -0.016616821, -0.00049591064, 0.009246826, -0.0050582886, -0.024246216, 0.028686523, 0.0015039444, -0.036834717, -0.01574707, 0.0309906, -0.008338928, -0.00052309036, 0.0024986267, 0.032165527, 0.00076818466, 0.016113281, 0.0149383545, -0.026611328, 0.013183594, 0.038269043, 0.034973145, -0.0143585205, 0.08892822, 0.034606934, 0.04751587, 0.074157715, 0.079711914, 0.056427002, -0.0524292, -0.0058135986, -0.0110321045, -0.020355225, 0.012649536, 0.03125, -0.04663086, 0.017028809, -0.014266968, 0.020812988, -0.017868042, -0.02230835, -0.05419922, -0.022155762, -0.0003604889, 0.021057129, -0.007698059, 0.009674072, 0.0042762756, -0.007896423, -0.0043144226, 0.024765015, -0.012886047, -0.061431885, -0.056854248, -0.01348114, 0.07086182, 0.0042037964, -0.051483154, 0.007583618, 0.030471802, -0.03982544, -0.021392822, -0.053466797, -0.033447266, 0.020980835, 0.010437012, -0.099243164, -0.038269043, -0.11627197, -0.02255249, -0.018463135, -0.057769775, 0.025970459, 0.06317139, -0.021881104, -0.03286743, 0.0066986084, 0.02142334, 0.0039520264, 0.013771057, 0.0206604, -0.03363037, -0.024978638, -0.0055351257, -0.012809753, 0.010551453, -0.036743164, 0.006164551, -0.00894928, -0.014259338, -0.014259338, -0.00982666, -0.024230957, 0.021438599, 0.022247314, 0.0043792725, 0.051940918, -0.006881714, -0.030441284, -0.012481689, 0.056121826, -0.035491943, -0.028182983, 0.01689148, 0.03439331, -0.008308411, -0.008796692, -0.0017089844, -0.026000977, -0.061401367, 0.011459351, -0.01058197, -0.027160645, -0.025817871, -0.058013916, -0.040252686, -0.040649414, 0.012893677, 0.0446167, -0.019958496, 0.026855469, -0.005973816, 0.0023994446, 0.0023231506, -0.0023918152, -0.003900528, -0.008644104, 0.0077934265, 0.0014982224, 0.0032997131, -0.005203247, 0.0067634583, 0.027648926, -0.01977539, 0.008491516, -0.019073486, 0.0067253113, -0.02293396, 0.019821167, -0.011474609, -0.022903442, 0.008056641, 0.020874023, -0.048706055, -0.0069465637, -0.0033359528, -0.019729614, 0.040405273, -0.059570312, -0.012260437, -0.020187378, -0.009994507, 0.026062012, -0.00071287155, -0.006137848, -0.011482239, -0.024917603, -0.03262329, -0.033966064, -0.0009088516, 0.021743774, 0.030151367, 0.027053833, 0.016174316, 0.06774902, 0.018249512, 0.031066895, -0.004081726, -0.0048599243, -0.023925781, -0.02458191, 0.047851562, -0.019821167, 0.0033683777, -0.019821167, 0.030029297, -0.014808655, -0.03201294, 0.018371582, -0.025238037, 0.017364502, 0.012916565, -0.01676941, 0.007873535, -0.0017728806, 0.0029201508, 0.015945435, -0.025375366, -0.029220581, -0.068115234, 0.005203247, -0.08013916, 0.085632324, 0.08270264, -0.031341553, 0.101623535, 0.06616211, -0.029296875, 0.025848389, 0.025253296, -0.011383057, 0.016616821, 0.017349243, -0.043121338, 0.014022827, 0.012214661, -0.037017822, -0.013000488, -0.0390625, -0.020996094, -0.02192688, -0.042633057, 0.011482239, -0.028625488, 0.02243042, 0.03616333, -0.036102295, -0.0041122437, -0.02961731, -0.0043678284, -0.064819336, 0.018432617, 0.005809784, -0.016815186, -0.0014820099, 0.026000977, -0.024978638, -0.0018882751, 0.0040359497, 0.0074386597, -0.0006890297, 0.026397705, 0.016555786, -0.0033950806, 0.0043411255, 0.01663208, 0.0010967255, -0.02128601, -0.01360321, 0.03353882, 0.015205383, -0.021514893, -0.009880066, 0.0057258606, 0.025344849, -0.0047569275, 0.020385742, -0.0064353943, -0.038146973, -0.018951416, 0.04046631, 0.02923584, -0.016235352, 0.018203735, -0.045318604, 0.0021018982, 0.014419556, -0.019470215, 0.012634277, -0.028503418, -0.018157959, -0.0070381165, 0.019256592, -0.023712158, -0.021987915, -0.064575195, 0.00699234, 0.0013532639, 0.0178833, -0.019989014, 0.076293945, -0.06390381, -0.027328491, -0.010681152, -0.0075035095, 0.051971436, 0.03591919, 0.0049552917, -0.0050315857, -0.028533936, -0.02357483, 0.031219482, -0.00021624565, -0.0143966675, -0.025848389, -0.019363403, -0.0018224716, 0.017913818, 0.04638672, -0.008773804, 0.050811768, -0.012420654, 0.021636963, -0.059906006, -0.016098022, 0.032806396, -0.048034668, -0.04989624, -0.060913086, 0.06329346, 0.0048294067, -0.03805542, -0.041046143, 0.033477783, 0.01991272, 0.03488159, 0.029312134, 0.04055786, 0.032684326, 0.018951416, -0.005382538, -0.0022945404, -0.010131836, -0.0004041195, -0.031677246, -0.01676941, -0.006832123, 0.016815186, 0.055114746, -0.037384033, 0.024002075, -0.0287323, -0.015487671, -0.013374329, -0.0017147064, -0.029968262, 0.056427002, 0.053222656, -0.01121521, -0.008056641, 0.012390137, -0.023605347, -0.07659912, 0.008094788, -0.052001953, 0.00843811, 0.004234314, -0.011558533, -0.03137207, -0.012535095, -0.012062073, 0.028625488, -0.002002716, 0.024337769, -0.012893677, 0.009384155, 0.0006098747, -0.010635376, 0.03640747, 0.014968872, -0.007843018, -0.009864807, -0.030517578, -0.044952393, -0.04043579, -0.019012451, -0.0013933182, -0.018417358, -0.05230713, 0.020111084, 0.019348145, -0.0075416565, 0.022033691, 0.020446777, -0.006515503, -0.049194336, 0.0031223297, 0.001953125, -0.035583496, -0.039642334, 0.034973145, -0.004196167, 0.032470703, 0.023620605, -0.04284668, -0.021881104, 0.015777588, -0.055023193, 0.066345215, -0.01322937, -0.05355835, 0.011375427, -0.005783081, 0.010902405, 0.013397217, 0.029037476, 0.010749817, -0.009429932, -0.033233643, 0.0052604675, -0.009429932, 0.028442383, -0.042938232, -0.00315094, 0.028747559, 0.010025024, -0.008468628, 0.013252258, 0.039245605, -0.009590149, 0.015319824, 0.015808105, 0.00018107891, -0.047790527, -0.00068330765, -0.026504517, -0.03677368, -0.053710938, -0.010261536, 0.024841309, -0.011245728, -0.021972656, -0.05355835, 0.01071167, -0.026367188, -0.027175903, 0.0012788773, 0.024337769, 0.024856567, -0.0005021095, 0.010253906, -0.021575928, 0.0009198189, -0.033294678, -0.0029582977, -0.013374329, 0.0026168823, -0.003452301, 0.048828125, -0.0135269165, 0.002773285, -0.011947632, -0.019195557, 0.008743286, -0.017791748, -0.030776978, 0.021575928, -0.0015792847, 0.0069122314, -0.028259277, 0.018341064, 0.046936035, -0.050476074, -0.029266357, -0.06921387, 0.0059280396, -0.03616333, -0.058166504, 0.004005432, 0.014503479, -0.0003376007, 0.016845703, -0.011421204, -0.04333496, 0.042633057, 0.013214111, -0.09094238, 0.0048294067, -0.00957489, 0.0069885254, -0.013092041, 0.0062942505, 0.0058631897, 0.04257202, -0.02444458, -0.015579224, 0.00806427, 0.008239746, -0.0178833, -0.007255554, 0.03253174, -0.004360199, -0.015808105, -0.035064697, -0.01890564, -0.07672119, -0.04345703, 0.022384644, 0.038238525, 0.04598999, -0.010154724, 0.031707764, 0.045928955, -0.049224854, 0.058135986, -0.005580902, -0.0395813, -0.007965088, 0.034362793, 0.046295166, -0.008842468, -0.023773193, -0.021224976, -0.0017814636, 0.014877319, 0.027648926, -0.010154724, -0.04095459, -0.048553467, 0.06982422, 0.03253174, -0.005016327, -0.017929077, 0.019958496, 0.031585693, -0.008773804, -0.013153076, 0.03967285, -0.0069503784, 0.0138168335, -0.013259888, 0.00869751, 0.013069153, 0.0074424744, -0.02268982, 0.0005106926, 0.0440979, -0.027816772, 0.06500244, -0.0018224716, 0.0035247803, 0.015525818, -0.0069847107, 0.03062439, 0.0013532639, -0.045715332, -0.012275696, 0.0055999756, -0.045562744, 0.009819031, 0.03994751, -0.026351929, 0.033294678, 0.022735596, -0.03488159, -0.0014533997, 0.006790161, 0.044311523, 0.046813965, -0.01789856, 0.020599365, -0.074523926, -0.0068359375, 0.0025558472, -0.018692017, -0.028533936, 0.08123779, -0.0016508102, -0.011749268, -0.0118255615, -0.02684021, 0.016738892, -0.004211426, -0.008384705, 0.020462036, 0.008888245, -0.003540039, -0.030380249, -0.008026123, 0.041992188, -0.022003174, -0.002357483, -0.005252838, 0.026763916, -0.012687683, 0.034057617, -0.012023926, -0.03656006, 0.038024902, 0.021392822, -0.020126343, 0.030334473, 0.0289917, 0.00011968613, -0.01096344, -0.021499634, 0.022598267, 0.010246277, 0.022109985, 0.025802612, 0.006542206, -0.0030593872, -0.016708374, -0.028152466, 0.00566864, 0.0026817322, 0.01889038, 0.006160736, -0.004760742, -0.00094270706, 0.014297485, 0.008575439, -0.035705566, -0.0010318756, 0.034301758, -0.023376465, -0.0049972534, -0.024032593, 0.016479492, 0.002866745, -0.022354126, 0.003376007, 0.0029830933, -0.0036716461, 0.026794434, 0.022918701, -0.012939453, -0.04611206, 0.038513184, -0.0076179504, -0.033966064, 0.013725281, -0.041870117, 0.024215698, -0.035888672, -0.047332764, -0.057037354, -0.06921387, -0.047058105, 0.076293945, -0.04928589, -0.04196167, -0.018447876, 0.0053367615, 0.016296387, -0.08984375, -0.035888672, -0.028457642, 0.02998352, 0.025024414, 0.07879639, -0.032073975, -0.074035645, -0.07659912, 0.02960205, -0.07733154, -0.009307861, -0.0004248619, 0.014472961, 0.049316406, 0.019165039, 0.026779175, 0.06719971, 0.019500732, -0.0076942444, -0.0038814545, -0.017807007, -0.04147339, 0.055633545, -0.0007791519, -0.010948181, 0.014259338, 0.0423584, -0.00046682358, 0.0138549805, 0.021728516, -0.03353882, -0.031341553, 0.0036029816, -0.008796692, 0.014892578, -0.018859863, -0.002626419, 0.0055389404, 0.020339966, -0.023025513, 0.0057373047, 0.018829346, 0.0052375793, 0.015640259, 0.03753662, 0.0075569153, 0.00422287, -0.023956299, 0.010292053, -0.012382507, 0.0041389465, 0.01939392, -0.008666992, -0.029815674, 0.0046043396, 0.001909256, 0.00066900253, 0.020751953, -0.022064209, -0.016967773, 0.016220093, -0.010848999, -0.037872314, 0.015014648, -0.018707275, -0.023468018, -0.045043945, 0.020599365, 0.039886475, -0.026947021, 0.0043563843, 0.012252808, -0.01852417, 0.02659607, 0.016204834, -0.032928467, -0.028717041, 0.0079422, 0.03869629, -0.01272583, -0.009170532, -0.020339966, 0.011634827, -0.022079468, 0.0056610107, 0.012741089, 0.0012016296, 0.00049591064, -0.005039215, 0.0030460358, 0.05606079, -0.040496826, -0.061462402, -0.07324219, 0.044830322, 0.037628174, -0.010635376, 0.08496094, 0.005180359, 0.014816284, 0.040863037, -0.009025574, -0.0143585205, 0.027786255, 0.015419006, 0.026916504, 0.01979065]}, "B001RU04XK": {"id": "B001RU04XK", "original": "Brand: Coleman\nName: Coleman Fold N Go + Propane Grill\nDescription: \nFeatures: Portable folding grill with built-in handle for easy transport and storage\nDelivers 6,000 BTUs of heat across 105 sq. in. of grilling surface\nAdjustable horseshoe burner for precise temperature control and even heating\nInstaStart button ignites grill without the need for a match or lighter\nRemovable dishwasher-safe cooking surface and grease tray for easy cleaning\n", "metadata": {"Name": "Coleman Fold N Go + Propane Grill", "Brand": "Coleman", "Description": "", "Features": "Portable folding grill with built-in handle for easy transport and storage\nDelivers 6,000 BTUs of heat across 105 sq. in. of grilling surface\nAdjustable horseshoe burner for precise temperature control and even heating\nInstaStart button ignites grill without the need for a match or lighter\nRemovable dishwasher-safe cooking surface and grease tray for easy cleaning", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013343811, 0.0020999908, -0.0078086853, 0.002445221, -0.0008249283, -0.0044288635, -0.0075187683, -0.024169922, -0.05255127, -0.022079468, -0.029937744, 0.03677368, -0.03111267, -0.037719727, 0.0524292, -0.046142578, 0.010467529, 0.003835678, -0.009895325, -0.0340271, -0.0028209686, -0.017166138, -0.009986877, 0.09088135, 0.04711914, -0.05050659, -0.047546387, -0.029891968, 0.031829834, -0.010856628, 0.01979065, 0.029388428, 0.023468018, -0.023117065, 0.018295288, -0.002773285, 0.020584106, -0.014175415, -0.004802704, -0.003358841, -0.014266968, 0.032409668, -0.027496338, 0.015899658, -0.05999756, -0.05227661, 0.012275696, 0.0010471344, 0.009010315, 0.016616821, -0.0017538071, -0.00680542, 0.0075187683, -0.035186768, -0.011161804, -0.032989502, 0.007331848, 0.02935791, 0.028900146, -0.03390503, -0.04522705, -0.011695862, 0.03805542, -0.016906738, -0.031311035, 0.008666992, 0.0692749, -0.031097412, -0.026428223, -0.047180176, 0.031051636, 0.014823914, -0.0031661987, 0.024978638, -0.033447266, -0.050476074, 0.04916382, -0.023498535, 0.006881714, 0.030075073, -0.059783936, -0.028274536, -0.0287323, -0.029556274, -0.0068969727, 4.4584274e-05, -0.027496338, -0.0052452087, -0.0010242462, -0.022369385, -0.001953125, 0.022216797, -0.07128906, 0.06964111, 0.007858276, -0.00548172, -0.018341064, -0.052520752, 0.042144775, 0.0026798248, 0.040649414, -0.04812622, 0.03213501, -0.010238647, -0.006843567, 0.039367676, 0.019866943, 0.016525269, 0.0075912476, -0.01537323, -0.009384155, -0.022537231, 0.024963379, 0.014083862, -0.02368164, -0.022064209, -0.04031372, 0.036834717, -0.0055656433, 0.022201538, -0.035614014, -0.013824463, -0.006526947, -0.004699707, 0.036254883, 0.019500732, -0.00248909, 0.020950317, -0.045684814, 0.053588867, -0.049713135, 0.005344391, 0.08538818, 0.035217285, 0.006767273, -0.03439331, 0.014984131, -0.010467529, 0.018676758, -0.0062217712, -0.0075263977, 0.009796143, 0.042175293, -0.00015771389, -0.017944336, -0.00047135353, 0.038482666, 0.019897461, -0.036254883, -0.05026245, 0.019927979, 0.014831543, 0.057281494, 0.00020635128, -0.025436401, 0.027435303, 0.009552002, -0.001584053, -0.06536865, -0.025360107, -0.036468506, -0.019073486, 0.009307861, 0.0028076172, -0.01651001, 0.04510498, 0.029663086, 0.002614975, 0.026885986, 0.09625244, -0.004283905, 0.01386261, 0.035186768, 0.018478394, -0.019012451, -0.033111572, -0.013969421, 0.04397583, 0.06542969, -0.059753418, -0.048950195, -0.043273926, 0.12512207, -0.03768921, -0.0016479492, -0.019744873, 0.044158936, 0.01991272, -0.015975952, 0.013298035, 0.060638428, 0.013717651, -0.020553589, -0.006641388, -0.026046753, 0.022384644, -0.030761719, 0.034362793, -0.017425537, -0.0022392273, 0.0104599, -0.008720398, 0.020843506, -0.0013418198, 0.041534424, -0.032348633, 0.023208618, -0.007926941, 0.046813965, 0.04434204, -0.008522034, 0.0067443848, -0.0030822754, -0.054107666, -0.051696777, -0.008895874, -0.0050697327, 0.050323486, 0.039154053, 0.017456055, 0.05731201, -0.0046920776, 0.047027588, -0.0025463104, 0.026245117, -0.025802612, -0.009254456, -0.009811401, 0.0085372925, 0.007858276, -0.053375244, 0.033050537, 0.08630371, 0.08996582, 0.008880615, 0.03616333, 0.10040283, 0.036254883, -0.020004272, -0.0284729, -0.0038776398, -0.020843506, -0.042022705, 0.006210327, 0.031433105, 0.04852295, 0.011528015, 0.0067100525, -0.023834229, -0.00014555454, 0.039489746, 0.0047912598, 0.040161133, 0.05178833, -0.018493652, 0.028579712, -0.036621094, 0.01612854, -0.04373169, 0.03012085, -0.037994385, 0.02949524, 0.059143066, -0.0034503937, -0.008964539, 0.017196655, 0.0067367554, 0.0061187744, -0.042144775, 0.012748718, 0.029418945, 0.011627197, -0.006412506, -0.014663696, 0.04269409, -0.029647827, -0.037902832, 0.023757935, 0.01222229, -0.02482605, 0.00066041946, -0.011550903, 0.031585693, -0.0026836395, 0.012588501, 0.00233078, 0.039733887, 0.014709473, -0.032287598, -0.00705719, 0.015396118, 0.018035889, 5.7458878e-05, -0.005897522, -0.02418518, -0.012062073, 0.035705566, 0.003829956, 0.020370483, -0.028198242, 0.014122009, 0.03527832, -0.042999268, 0.019210815, -0.0060424805, -0.0068130493, 0.0011787415, 0.0063934326, -0.0044822693, -0.021240234, 0.00059747696, 0.03366089, 0.025466919, 0.007843018, 0.01914978, 0.0047454834, -0.0029792786, 0.038116455, 0.018371582, 0.015853882, -0.04147339, -0.021850586, -0.03375244, 0.019348145, -0.006603241, 0.017166138, 0.01360321, 0.0034999847, -0.0010499954, 0.012840271, -0.0079193115, -0.0075912476, -0.0020008087, 0.011543274, -0.009918213, -0.008644104, 0.02142334, -0.018066406, 0.002817154, -0.027114868, 0.032073975, -0.04083252, -0.012580872, 0.005958557, -0.04321289, -0.041992188, 0.0413208, -0.0040664673, -0.04837036, -0.0044937134, 0.034729004, -0.013496399, 0.014709473, -0.045166016, -0.0017795563, -0.028442383, -0.046722412, -0.066345215, -0.036102295, -0.092285156, -0.0055389404, -0.024246216, -0.042297363, 0.010887146, 0.048797607, -0.0048103333, -0.032562256, -0.0016975403, -0.012756348, 0.028656006, 0.00041985512, 0.03378296, -0.058013916, -0.034240723, -0.055999756, -0.00818634, 0.022521973, -0.027053833, 0.014091492, 0.010169983, 0.0026130676, 0.008857727, -0.003540039, 0.02204895, -0.0039749146, 0.00440979, -0.0031051636, 0.008361816, 0.006439209, 0.0012636185, 0.0027046204, 0.019088745, -0.020019531, -0.015090942, -0.009338379, 0.007598877, -0.018798828, -0.036590576, -0.01966858, -0.014083862, -0.06335449, 0.025405884, -0.0049362183, -0.010093689, -0.022216797, -0.024124146, -0.024887085, -0.049743652, 0.019821167, 0.056640625, -0.017745972, -0.0042419434, -0.023468018, 0.010269165, 0.0020561218, 0.01574707, 0.06378174, -0.019134521, 0.055633545, -0.046783447, 0.006290436, -0.034118652, 0.0054397583, 0.014259338, -0.02368164, 0.031829834, -0.039642334, 0.0105896, -0.017150879, 0.03491211, -0.003824234, 0.014625549, -0.021865845, 0.013221741, -0.00045728683, 0.02949524, 0.0040740967, -0.054595947, 0.040649414, -0.039855957, -0.026412964, -0.0028457642, -0.01789856, 0.044525146, -0.0056915283, -0.008293152, -0.016082764, -0.05441284, -0.008377075, -0.03567505, -0.005794525, 0.011390686, 0.044647217, 0.019821167, 0.0066223145, 0.03543091, 0.029724121, 0.030715942, 0.020019531, -0.02545166, -0.03149414, -0.011146545, -0.010437012, -0.022979736, 0.0001333952, -0.039031982, 0.014945984, 0.011108398, -0.0158844, 0.007369995, -0.008468628, 0.049438477, 0.035339355, -0.021469116, -0.005718231, -0.033813477, 0.029373169, -0.009880066, 0.012710571, -0.03878784, -0.06567383, 0.013511658, -0.12548828, 0.08111572, 0.05517578, -0.035888672, 0.08959961, 0.020111084, 0.0029945374, 0.03878784, 0.058288574, -0.014350891, 0.03010559, 0.053619385, -0.015296936, -0.004673004, 0.0067329407, 0.020065308, 0.0084991455, -0.0023860931, -0.05178833, 0.014343262, 0.03314209, -0.027236938, -0.033569336, 0.0071105957, 0.015945435, -0.024261475, -0.010757446, -0.04324341, -0.032348633, -0.04852295, -0.013053894, 0.011360168, -0.033599854, 0.028808594, -0.02368164, -0.017547607, -0.010375977, 0.006187439, 0.013557434, 0.045288086, -0.05441284, 0.033996582, 0.041931152, 0.0119018555, -0.09625244, 0.025421143, -0.0029830933, -0.0028800964, 0.039794922, -0.015655518, 0.0026359558, -0.00026082993, 0.007133484, 0.026535034, -0.01537323, 0.012413025, 0.017227173, -0.06060791, 0.015792847, 0.07513428, 0.015655518, -0.015136719, 0.011253357, -0.021896362, -0.0046653748, -0.015151978, -0.041168213, -0.02281189, -0.027877808, -0.003074646, -0.06933594, -0.016494751, -0.012535095, -0.018493652, -0.025863647, 0.017471313, -0.0259552, -0.0011291504, -0.011894226, 0.030929565, -0.021026611, -0.02418518, -0.010879517, 0.010253906, 0.042633057, 0.015083313, 0.023025513, -0.02986145, 0.025604248, 0.003189087, 0.080200195, 0.0060691833, 0.031066895, -0.0345459, -0.02394104, -0.0020771027, 0.018676758, 0.036224365, -0.03677368, 0.012840271, -0.02053833, -0.0178833, -0.03314209, -0.027618408, 0.05718994, -0.040283203, -0.0121154785, -0.0149002075, 0.044311523, -0.034606934, 0.0004813671, -0.040985107, 0.013977051, 0.021057129, -0.0054092407, -0.049072266, -0.017990112, 0.012428284, -0.01939392, 0.014457703, 0.002368927, -0.01209259, 0.018127441, 0.03387451, -0.0027370453, 0.011314392, -0.020446777, -0.022659302, -0.017440796, 0.044433594, -0.03488159, -0.014533997, -0.03866577, 0.009063721, -0.06036377, 0.0947876, 0.06756592, -0.021224976, 0.011657715, 0.025024414, -0.011787415, -0.03161621, 0.025100708, -0.011199951, -0.054016113, -0.0012731552, -0.0006184578, -0.015014648, -0.00422287, -0.022598267, -0.00047802925, -0.0079956055, 0.020751953, -0.014404297, 0.005695343, -0.004386902, 0.010429382, 0.023605347, 0.02229309, 0.03475952, 0.012619019, -0.06994629, -0.0004043579, -0.04019165, -0.039489746, -0.010528564, -0.020950317, -0.021774292, -0.03967285, 0.0060310364, -0.0552063, 0.050750732, 0.057678223, 0.009376526, -0.03878784, 0.0146865845, 0.023712158, -0.0101623535, -0.013542175, 0.07019043, 0.009796143, 0.01737976, 0.05014038, -0.026626587, 0.011932373, 0.026977539, -0.013244629, 0.024475098, 0.0025100708, -0.035705566, 0.043792725, 0.006340027, 0.002544403, -0.061645508, 0.062164307, -0.020721436, -0.018844604, -0.05834961, 0.0010871887, 0.032989502, 0.044830322, -0.010353088, -0.026687622, 0.060577393, -0.015991211, -0.032592773, 0.021148682, -0.016235352, -0.00017106533, 0.003709793, -0.010551453, -0.059143066, -0.036254883, -0.017700195, -0.022583008, -0.004627228, 0.014030457, -0.026992798, 0.0062561035, 0.012962341, -0.027648926, -0.027740479, 0.0004234314, 0.017150879, -0.0637207, -0.0015668869, -0.027633667, 0.009887695, 0.0002541542, 0.023544312, -0.040618896, 0.00032806396, -0.016723633, -0.033233643, -0.041870117, 0.023086548, 0.0022678375, 0.011444092, -0.017196655, 0.011497498, 0.038909912, -0.024475098, 0.0129852295, 0.010925293, -0.020645142, -0.016662598, 0.019607544, 0.034057617, -0.010231018, -0.0046806335, 0.08642578, -0.03829956, -0.04373169, -0.0657959, 0.0690918, -0.014831543, 0.014656067, 0.06982422, 0.0134887695, 0.018463135, 0.030136108, 0.0055122375, -0.011993408, -0.006313324, -0.0065345764, -0.01676941, -0.0048675537, -0.024139404, 0.0135269165, 0.019195557, 0.007926941, -0.005214691, 0.056549072, -0.0015516281, -0.039489746, -0.05154419, 0.0014162064, 0.010261536, -0.040222168, 0.0064849854, -0.022109985, -0.009506226, -0.02508545, -0.019561768, -0.03793335, 0.0044822693, 0.027679443, 0.03515625, 0.036102295, -0.01676941, 0.03363037, 0.084472656, -0.06262207, 0.05126953, 0.01235199, -0.012397766, -0.004875183, 0.0039520264, 0.0027503967, -0.015129089, -0.00932312, 0.014434814, -0.0033855438, 0.011962891, 0.056762695, -0.0041046143, -0.017593384, -0.015449524, 0.057403564, 0.029159546, 0.030929565, 0.05014038, 0.059936523, 0.020523071, -0.023468018, 0.01739502, 0.042022705, -0.033477783, 0.021255493, -0.06842041, 0.032714844, 0.0012302399, 0.0022392273, -0.008071899, -0.025863647, 0.057495117, -0.020355225, 0.00041604042, 0.012626648, -0.011108398, 0.026107788, -0.015945435, -0.006877899, 0.006385803, -0.04248047, 0.01423645, -0.06286621, -0.045898438, 0.029647827, 0.040252686, -0.002286911, 0.005996704, -0.05380249, 0.030532837, 0.022827148, -0.049713135, -0.011703491, 0.022155762, 0.017059326, -0.0012216568, -0.03741455, -0.010375977, -0.021270752, 0.005317688, 0.0036296844, 0.046173096, 0.0015535355, 0.020095825, -0.027450562, -0.014961243, -0.0065689087, -0.025848389, 0.029953003, 0.032318115, -0.018234253, -0.01890564, -0.035736084, 0.025878906, 0.05709839, -0.02558899, 0.03048706, 0.0021820068, 0.004764557, -0.041015625, -0.035308838, -0.04257202, -0.04748535, 0.01638794, 0.019210815, -0.035186768, -0.0059547424, 0.0027198792, -0.023986816, 0.0473938, -0.07446289, 0.032806396, -0.015991211, 0.051513672, 0.02217102, 0.093688965, -0.005748749, -0.024398804, -0.014892578, 0.0076408386, 0.0067977905, 0.028137207, 0.008552551, 0.026321411, 0.053863525, -0.0036773682, 0.052978516, -0.034698486, 0.0014801025, 0.008270264, 0.040374756, 0.011474609, 0.012290955, -0.015716553, 0.013244629, 0.0004451275, -2.6345253e-05, 0.037231445, -0.013061523, 0.000623703, 0.017944336, -0.008049011, -0.017532349, 0.025131226, -0.0009889603, -0.0206604, 0.01373291, -0.023132324, -0.020065308, -0.016845703, -0.046081543, -0.01234436, 0.007133484, -0.059417725, 0.00076293945, -0.009971619, -0.021118164, -0.008255005, -0.0039978027, -0.0014762878, -0.030258179, 0.0138168335, -0.010307312, 0.044769287, 0.006134033, 0.06744385, -0.04019165, -0.057525635, -0.037139893, 0.0178833, -0.036102295, -0.052978516, -0.0037250519, -0.044311523, -0.05783081, -0.03540039, 0.022781372, 0.066223145, 0.038208008, 0.005302429, 0.029418945, -0.03781128, -0.034820557, 0.05758667, 0.042938232, -0.07305908, -0.026138306, 0.01878357, -0.007987976, 0.029525757, 0.024658203, -0.0184021, -0.050323486, -0.015731812, -0.028518677, 0.0007033348, 0.019454956, -0.048065186, 0.027664185, -0.0007414818, -0.059539795, -0.016799927, -0.0051498413, 0.030319214, 0.03616333, 0.037750244, 0.06964111, 0.007083893, -0.092163086, -0.08380127, -0.04425049, 0.03540039, 0.030151367, -0.030838013, -0.011474609, 0.040496826, -0.026367188, 0.034240723, 0.05114746, 0.0048103333, 0.015144348, -0.0011787415, 0.016555786, 0.0066337585, -0.01285553, 0.041748047, -0.015731812, -0.022140503, 0.022506714, 0.019454956, -0.026016235, -0.017120361, -0.018737793, -8.738041e-05, -0.011528015, -0.02293396, -0.011352539, 0.009498596, -0.01398468, 0.028182983, -0.009559631, -0.03074646, -0.024810791, 0.010665894, -0.02267456, 0.012130737, 0.0054016113, 0.01171875, -0.0024414062, 0.04660034, 0.017044067, 0.056610107, -0.0035915375, -0.017593384, -0.03842163, 0.036346436, 0.008666992, -0.019943237, 0.03353882, -0.015991211, 0.010948181, 0.0035934448, -0.019744873, -0.028259277, 0.012718201, 0.026794434, -0.01448822, 0.015388489]}, "B00PHNN5VG": {"id": "B00PHNN5VG", "original": "Brand: Camco\nName: Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protects your propane gas tank from flying road debris\nCompatibility: Fits 20 lb. steel double tanks\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer\nDimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)\n", "metadata": {"Name": "Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)", "Brand": "Camco", "Description": "", "Features": "Protects Your RV's Propane Tank: Protects your propane gas tank from flying road debris\nCompatibility: Fits 20 lb. steel double tanks\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer\nDimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009719849, -0.02180481, -0.02947998, -0.04458618, -0.028671265, 0.0063171387, -0.040649414, 0.036376953, -0.030639648, -0.022705078, -0.00063848495, 0.005241394, -0.080566406, -0.035827637, 0.018753052, -0.0602417, 0.011695862, -0.00013160706, -0.006668091, -0.027450562, -0.007888794, -0.02822876, 0.0060653687, 0.018432617, 0.009239197, -0.015640259, 0.03353882, 0.008384705, 0.008621216, -0.003435135, 0.024963379, -0.015068054, 0.032836914, -0.005722046, 0.015838623, 0.046142578, 0.051239014, -0.016159058, 0.0068588257, 0.013221741, -0.019500732, 0.023025513, 0.078125, 0.001996994, 0.031829834, -0.07873535, 0.047576904, -0.057617188, 0.014320374, 0.030151367, -0.004878998, 0.024383545, -0.010986328, -0.012176514, 0.0054397583, 0.020980835, -0.0078086853, -0.0070114136, 0.022964478, -0.005180359, -0.004890442, 0.0030460358, 0.011550903, 0.0069503784, -0.0435791, 0.011695862, 0.076416016, -0.01789856, -0.0010080338, -0.06359863, -0.010787964, 0.034942627, 0.013572693, -0.018630981, -0.045806885, 0.004169464, 0.010902405, -0.020690918, 0.01864624, -0.014389038, -0.018035889, -0.015586853, 0.014480591, -0.009048462, -0.018295288, -0.0055122375, -0.014480591, -0.0047569275, -0.0016183853, -0.013198853, -0.012176514, 0.0023612976, -0.018447876, 0.028274536, -0.014015198, -0.012260437, -0.023223877, -0.043792725, 0.045410156, 0.010574341, -0.0048713684, -0.02406311, 0.007572174, -0.0019550323, 0.014724731, 0.017791748, -0.011260986, -0.016677856, 0.03353882, 0.0060195923, -0.037261963, 0.03878784, -0.016357422, -0.026473999, -0.032470703, 0.011405945, -0.036499023, 0.015945435, 0.019577026, 0.004020691, -0.04714966, -0.031280518, 0.0006866455, -0.0071983337, 0.012138367, -0.01689148, -0.018661499, 0.047790527, -0.038024902, 0.021072388, -0.015899658, 0.005908966, 0.015571594, 0.05517578, 0.020812988, -0.005531311, -0.002210617, -0.009681702, 0.0006752014, -0.0011940002, -0.021499634, 0.00017166138, 0.049194336, -0.0061187744, -0.052612305, 0.06604004, 0.015151978, -0.028182983, -0.02708435, -0.091430664, -0.033355713, -0.030029297, 0.030075073, 0.0107803345, -0.025405884, 0.013053894, 0.016983032, 0.0010490417, -0.055511475, -0.041992188, -0.00919342, -0.020080566, -0.0043945312, 0.05621338, 0.019699097, 0.046325684, 0.019134521, -0.0003941059, 0.007713318, 0.04498291, -0.028045654, 0.007865906, 0.006412506, 0.01737976, -0.009353638, 0.00056409836, -0.055236816, 0.08831787, 0.08068848, -0.10803223, -0.05996704, -0.062561035, 0.14648438, -0.026901245, -0.025924683, -1.7523766e-05, 0.014175415, -0.010238647, 0.003484726, -0.02720642, 0.03765869, 0.047332764, 0.014389038, -0.028213501, -0.008735657, 0.0019817352, 0.012229919, 0.02947998, -0.019729614, -0.0082092285, -0.029937744, -0.026275635, 0.03479004, 0.022476196, 0.036865234, -0.02659607, 0.009300232, -0.0093688965, -0.051971436, -0.0035953522, 0.020736694, -0.013114929, 0.004257202, -0.04434204, 0.0074806213, 0.027191162, -0.013244629, -0.010948181, -0.021713257, 0.00093746185, 0.019058228, -0.0020561218, 0.0029582977, 0.037994385, -0.010765076, 0.00756073, -0.019958496, 0.012145996, 0.0075683594, -0.0096588135, 0.070373535, 0.026138306, 0.04336548, 0.024673462, -0.035858154, 0.014823914, 0.007965088, -0.031829834, -0.01979065, 0.033081055, 0.021148682, -0.033294678, -0.006767273, 0.03363037, -0.008544922, -0.034423828, 0.011306763, 0.0013790131, -0.024490356, 0.0005121231, 0.11419678, -0.034240723, -0.009399414, -0.013557434, -0.02822876, 0.005592346, -0.03488159, 0.017150879, -0.005290985, 0.038513184, -0.023864746, 0.06149292, 0.088012695, -0.012886047, 0.0024261475, 0.025924683, 0.060943604, 0.07122803, 0.014297485, -0.022583008, -0.015670776, 0.04901123, -0.0052986145, 0.027923584, -0.04949951, 0.03866577, -0.040283203, 0.01474762, -0.0077400208, 0.013053894, 0.029312134, 0.007896423, 0.0006775856, -0.0047798157, 0.05078125, -0.0068969727, -0.0035648346, 0.023925781, -0.05026245, -0.005092621, 0.024734497, 0.0059661865, -0.0031337738, -0.03768921, 0.029937744, -0.0012750626, 0.028762817, -0.025878906, 0.01687622, -0.0057792664, -0.0075531006, 0.04949951, -0.003610611, 0.010643005, -0.004722595, 0.025253296, -0.015823364, 0.01576233, 0.00623703, -0.013336182, -0.02645874, -0.002216339, 0.00818634, -0.016494751, 0.03616333, 0.024932861, 0.01335144, 0.042999268, 0.06262207, 0.07006836, 0.022399902, 0.015625, -0.012756348, -0.01272583, 0.012916565, -0.00724411, -0.038269043, -0.011520386, -0.061401367, -0.02923584, 0.006511688, -0.07513428, -0.012008667, 0.025177002, 0.017150879, 0.00522995, 0.0033569336, 0.044311523, 0.0071907043, -0.03062439, 0.028182983, -0.041992188, 0.0014705658, 0.04257202, 0.015625, -0.046051025, 0.020339966, 0.0069847107, -0.01852417, 0.02178955, -0.005405426, -0.019989014, -0.0078125, -0.0546875, -0.0007381439, 0.018615723, -0.018478394, -0.035827637, 0.031204224, -0.058166504, 0.007911682, -0.017700195, -0.042266846, -0.015716553, 0.038909912, -0.011581421, -0.045532227, -0.013290405, 0.0158844, 0.005153656, -0.027877808, 0.020233154, -0.06762695, -0.0029411316, 0.01133728, 0.014472961, 0.016967773, -0.060546875, 0.011192322, -0.004470825, -0.016860962, 0.024642944, -0.06329346, 0.04937744, 0.008895874, 0.0418396, 0.05770874, 0.06512451, -0.01171875, -0.05078125, -0.003396988, 0.07531738, -0.011787415, -0.01386261, -0.0075912476, -0.009788513, 0.0072784424, 0.0038108826, -0.018844604, -0.011367798, -0.07757568, -0.0010757446, 0.011001587, -0.045562744, -0.011116028, -0.05343628, -0.079589844, -0.037384033, 0.025100708, 0.04248047, -0.010177612, -0.006580353, -0.0064964294, -0.0065612793, -0.009170532, 0.0036640167, -0.005847931, -0.006996155, -0.04107666, 0.031219482, 0.042663574, -0.053375244, -0.004447937, 0.025482178, -0.017211914, 0.0116119385, 0.0011119843, 0.006603241, 0.021102905, 0.02243042, -0.010360718, -0.00044703484, -0.028961182, -0.039520264, -0.011116028, -0.0049095154, 0.0008378029, -0.010917664, -0.006324768, -0.007980347, -0.024673462, -0.018569946, 0.014213562, 0.027297974, -0.013801575, 0.015449524, -0.023757935, -0.019638062, 0.007751465, 0.005962372, -0.011123657, 0.00497818, -0.019012451, -0.00089263916, -0.038024902, 0.04437256, 0.02520752, 0.040222168, 0.018737793, -0.020736694, -0.032592773, -0.02935791, 0.021133423, -0.01386261, -0.00018107891, -0.035125732, 0.03277588, 0.0023345947, 0.0009870529, -0.00843811, -0.017913818, 0.04296875, 0.011054993, -0.012306213, -0.004722595, -0.0017461777, 0.009284973, -0.016281128, 0.02935791, -0.001871109, -0.07824707, 0.024932861, -0.042541504, 0.06439209, 0.040130615, -0.019119263, 0.110961914, 0.059326172, -0.0014925003, 0.038604736, 0.05734253, 0.005897522, 0.021774292, 0.02671814, -0.020141602, -0.020111084, 0.0019168854, -0.016937256, -0.0063591003, -0.027297974, -0.0096206665, -0.0047950745, -0.012161255, -0.0087509155, -0.017166138, 0.0031604767, 0.006832123, -0.02809143, 0.012084961, 0.010620117, -0.03616333, -0.032318115, 0.01373291, 0.0118255615, -0.01235199, 0.010154724, -0.03277588, 0.0052871704, -0.032043457, -0.014846802, -0.031707764, -0.011184692, 0.0039634705, 0.037475586, 0.0061073303, -0.00035595894, -0.024459839, 0.02708435, -0.0395813, -0.008224487, 0.004421234, 0.036743164, -0.0012435913, -0.024963379, 0.04336548, 0.012290955, 0.00541687, -0.0038070679, -0.016342163, -0.06335449, 0.034240723, 0.066223145, -0.011207581, -0.047821045, -0.02999878, -0.020614624, -0.0592041, -0.008026123, -0.025466919, -0.019546509, -0.006286621, -0.0023975372, -0.07757568, -0.0446167, -0.014968872, 0.015808105, -0.013679504, 0.010421753, -0.025650024, -0.034851074, 0.006755829, 0.055358887, -0.053649902, -0.036010742, -0.029388428, 0.0019483566, 0.017654419, -0.009864807, 0.040100098, -0.021743774, -0.007911682, -0.023986816, 0.03427124, 0.021606445, -0.0047454834, -0.010223389, -0.010498047, 0.011756897, 0.013900757, 0.034301758, -0.006801605, 0.02218628, -0.017700195, 0.022460938, -0.052581787, -0.021697998, 0.05368042, -0.049682617, -0.062683105, -0.040008545, 0.07110596, -0.0051231384, -0.014808655, -0.013397217, 0.03050232, 0.03152466, -0.00039625168, -0.049682617, -0.022659302, 0.016067505, -0.05593872, -0.03982544, -0.010765076, -0.032806396, 0.0927124, -0.015533447, -0.039916992, -0.032073975, 0.025131226, 0.05621338, -0.04019165, -0.0054626465, -0.0143966675, -0.00085544586, 0.009468079, -0.011505127, -0.08270264, 0.08892822, 0.06738281, 0.01902771, 0.009803772, -0.002588272, -0.02017212, -0.07714844, -0.043121338, -0.01436615, 0.0368042, -0.021331787, -0.043273926, 0.0012216568, -0.02734375, -0.0001835823, -0.03186035, -0.028244019, -0.047058105, 0.061157227, -0.03857422, -0.069885254, -0.047790527, 0.011405945, 0.019119263, -0.03302002, -0.026428223, -0.02482605, -0.027008057, -0.03173828, -0.02394104, 0.027069092, -0.033050537, -4.5835972e-05, 0.0012302399, 0.0211792, -0.019714355, 0.03692627, 0.00573349, 0.04586792, -0.034088135, -0.00422287, 0.0064430237, 0.008415222, -0.014213562, 0.049926758, -0.015029907, 0.03488159, 0.045959473, 0.026000977, -0.0513916, 0.009170532, -0.029754639, 0.05029297, -0.025878906, -0.037841797, 0.033599854, 0.04107666, 0.009239197, -0.084472656, 0.07330322, -0.021224976, -0.025909424, -0.03717041, 0.023208618, -0.02909851, -0.047332764, -0.000344038, -0.004814148, 0.034088135, -0.070129395, -0.0014867783, 0.00308609, 0.02947998, 0.00856781, 0.045166016, -0.005657196, 0.010147095, -0.037597656, -0.013435364, -0.03338623, 7.748604e-06, -0.03567505, 0.01838684, 0.047790527, -0.015670776, -0.003967285, -0.042663574, -0.009651184, -0.00047516823, -0.038330078, -0.011375427, 0.0074806213, 0.020904541, -0.022354126, -0.036895752, -0.0051460266, 0.019836426, -0.062408447, -0.019638062, -0.015090942, 0.0154418945, -0.007484436, 0.052246094, -0.06365967, -0.016479492, -0.006340027, -0.0057411194, 0.016204834, -0.0021419525, -0.0814209, -0.043701172, 0.030334473, 0.041992188, -0.0046157837, -0.030792236, 0.03378296, -0.021530151, -0.025619507, -0.018539429, 0.039520264, -0.030410767, -0.0625, 0.086120605, 0.07208252, 0.0069389343, 0.00957489, -0.031173706, -0.047546387, 0.030685425, 0.0033493042, -0.09320068, 0.009590149, -0.0109939575, -0.0049095154, 0.01423645, 0.002319336, -0.019805908, 0.035949707, -0.020339966, -0.0027809143, -0.030960083, -0.0037403107, -0.012901306, -0.023605347, 0.0071792603, -0.03439331, 0.012123108, -0.029891968, -0.005493164, -0.043151855, -0.051635742, -0.015541077, 0.014274597, 0.04147339, 0.008636475, 0.010284424, -0.01763916, -0.022781372, 0.016418457, -0.0014915466, -0.055145264, 0.022583008, 0.017700195, 0.012207031, 0.012763977, 0.008148193, -0.0030879974, -0.02444458, 0.008255005, 0.05328369, 0.011077881, -0.0692749, -0.031173706, 0.07342529, 0.044677734, 0.017074585, -0.042816162, -0.008636475, -0.0110321045, -0.016494751, -0.005622864, -0.0016460419, -0.014984131, 0.024719238, -0.03744507, 0.0038795471, 0.003376007, -0.027191162, 0.03488159, -0.02784729, 0.046844482, -0.025146484, 0.0051498413, 0.0056533813, -0.01007843, 0.016159058, -0.025421143, -0.003774643, -0.011360168, 0.036499023, 0.02809143, -0.037597656, -0.027618408, -0.00089502335, 0.011199951, -0.0178833, 0.050933838, -0.0006966591, 0.008331299, 0.009460449, -0.055145264, 0.036895752, 0.018814087, -0.020858765, 0.025650024, -0.028060913, -0.001704216, 0.013809204, 0.007972717, 0.016494751, 0.008148193, 0.015197754, 0.029006958, 0.013870239, -0.0042037964, 0.003162384, -0.016464233, 0.057159424, -0.0040283203, -0.023162842, -0.019256592, -0.022705078, 0.05142212, 0.033813477, -0.010421753, 0.05227661, -0.024032593, -0.006549835, -0.0115737915, 9.083748e-05, -0.026657104, 0.008728027, 0.02545166, -0.004360199, 0.0103302, -0.009605408, 0.001958847, 0.0066871643, -0.006690979, -0.06378174, 0.039855957, -0.07501221, 0.058135986, 0.024627686, -0.0010490417, -0.05227661, -0.02178955, -0.007701874, -0.0071868896, 0.005378723, 0.069885254, 0.0056495667, 0.0703125, -0.008369446, 0.008033752, 0.036743164, 0.0010471344, 0.025131226, -0.03213501, 0.010772705, -0.0019025803, 0.0008916855, -0.017349243, -0.019744873, -0.018722534, -0.012886047, -0.010658264, -0.069885254, -0.011306763, 0.012374878, -0.0073051453, -0.01574707, 0.010498047, 0.00091791153, -0.016113281, -0.003736496, -0.018478394, 0.0060043335, -0.0126953125, -0.022537231, -0.027572632, -0.022521973, -0.018096924, 0.029693604, 0.0059127808, -0.024673462, -0.0013275146, 0.015914917, -0.032470703, -0.044281006, -0.030288696, 0.010345459, 0.014816284, -0.01348114, 0.010932922, -0.0046310425, -0.035003662, -0.047698975, 0.021957397, -0.040130615, -0.010444641, -0.036590576, -0.00090551376, -0.015808105, -0.011947632, 0.0335083, 0.04034424, 0.025314331, -0.009475708, 0.073913574, -0.05001831, -0.027893066, 0.02468872, 0.017654419, -0.0039405823, -0.026931763, 0.0019454956, 0.019851685, 0.0028839111, -0.0035953522, 0.027374268, -0.044830322, 0.0423584, 0.018234253, 0.011054993, 0.017562866, -0.009391785, 0.026855469, 0.03201294, -0.019622803, -0.022888184, 0.00048041344, -0.033813477, 0.026992798, -0.044921875, 0.051208496, -0.010513306, -0.07324219, -0.06365967, -0.03125, 0.0085372925, 0.03326416, -0.03967285, -0.01828003, 0.036834717, -0.01876831, -0.0031604767, 0.0075683594, 0.032470703, -0.0054016113, -0.007865906, 0.016403198, -0.021759033, -0.006996155, 0.0065231323, -0.021621704, -0.021972656, -0.008224487, 0.04244995, -0.028427124, -0.026046753, -0.00705719, 0.0016222, -0.02053833, -0.019714355, -0.061523438, -0.04815674, 0.047668457, 0.040740967, -0.019088745, -0.026153564, 0.020874023, 0.031677246, 0.006706238, 0.026000977, -0.0014009476, 0.022338867, -0.0056152344, 0.027175903, -0.011352539, 0.06317139, -0.014251709, -0.09710693, -0.04272461, -0.0002667904, 0.018539429, 5.841255e-06, 0.051635742, -0.016174316, 0.010002136, 0.026901245, -0.0033626556, -0.021270752, -0.009689331, 0.05303955, 0.015716553, 0.0013065338]}, "B00008ZA0C": {"id": "B00008ZA0C", "original": "Brand: BernzOmatic\nName: BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head\nDescription: \nFeatures: Manual start (light with a Bernzomatic Spark Lighter, sold separately)\nBasic pencil flame for small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nBrass construction for durability\nFlame control valve easily sizes flame and extinguishes when finished\n", "metadata": {"Name": "BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head", "Brand": "BernzOmatic", "Description": "", "Features": "Manual start (light with a Bernzomatic Spark Lighter, sold separately)\nBasic pencil flame for small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nBrass construction for durability\nFlame control valve easily sizes flame and extinguishes when finished", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004219055, -0.012527466, -0.023651123, -0.057495117, -0.004787445, 0.0075683594, -0.016723633, 0.026000977, -0.026824951, 0.00667572, -0.0049858093, 0.0440979, -0.030441284, -0.026428223, 0.021316528, -0.028656006, 0.009635925, 0.029006958, 0.010932922, -0.013114929, -0.003042221, 0.01158905, -0.013648987, 0.013648987, 0.01360321, -0.034362793, -0.021896362, -0.027709961, 0.041381836, 0.010231018, 0.0039901733, 0.0036258698, 0.036102295, -0.007835388, -0.02885437, 0.008270264, 0.0066833496, -0.022644043, -0.03451538, 0.023284912, 0.015792847, 0.0011806488, -0.011909485, 0.04663086, -0.038513184, -0.05886841, 0.012557983, 0.0007119179, 0.015594482, 0.026611328, 0.01979065, -0.0181427, 0.0090408325, 0.01626587, -0.014884949, -0.0026550293, 0.04345703, -0.08483887, 0.019866943, 0.009864807, 0.011894226, -0.016555786, 0.03375244, -0.0076408386, -0.023757935, 0.019378662, 0.032806396, -0.027679443, 0.05456543, -0.024612427, -0.023742676, 0.037139893, 0.005077362, -0.010322571, -0.016143799, -0.0077667236, -0.009933472, -0.016906738, 0.024642944, 0.012702942, -0.038391113, -0.044281006, -0.030731201, -0.016784668, 0.026947021, 0.042633057, -0.01878357, -0.015464783, -0.00025177002, -0.0012569427, -0.0118255615, 0.015602112, -0.0062332153, 0.028121948, -0.016738892, -0.011940002, -0.0309906, -0.08154297, 0.050109863, 0.019515991, 0.0064315796, -0.026260376, 0.014175415, 0.012641907, 0.007820129, 0.0154418945, -0.035186768, -0.015701294, 0.011428833, 0.026687622, -0.025344849, -0.03768921, -0.0069503784, -0.023330688, 0.0005002022, 0.00077056885, -0.035491943, 0.034973145, 0.004524231, 0.0004248619, -0.020996094, -0.013244629, 0.0068893433, 0.0015048981, 0.023468018, 0.015083313, -0.017532349, 0.00283432, -0.055725098, -0.00819397, -0.02331543, 0.011398315, 0.038146973, 0.0736084, 0.015625, -0.00056409836, 0.004322052, 0.039398193, 0.009773254, -0.010620117, 0.040649414, 0.0059814453, 0.0047950745, 0.027954102, 0.00592041, 0.03527832, 0.022872925, -0.010871887, -0.01966858, -0.015235901, -0.015296936, -0.0075569153, -0.010276794, 0.030670166, 0.026687622, 0.028274536, 0.019348145, -0.016036987, -0.010047913, -0.003025055, 0.02067566, -0.02230835, -0.07098389, -0.006389618, -0.04324341, 0.015670776, 0.053833008, -0.006252289, 0.018875122, 0.00032901764, 0.05545044, 0.010063171, 0.0082092285, 0.012229919, 0.018981934, -0.01423645, 0.0022602081, 0.0473938, 0.071899414, -0.066833496, -0.051635742, -0.037017822, 0.15588379, -0.049346924, -0.014816284, -0.038726807, 0.011787415, -0.03186035, 0.044128418, -0.0009918213, 0.008644104, 0.006450653, 0.05230713, -0.041137695, -0.04473877, -0.018096924, 0.008346558, 0.030960083, -0.023773193, 0.014640808, 0.037200928, 0.030014038, -0.004634857, -0.0059051514, -0.05883789, 0.015838623, -0.022872925, 0.02154541, 0.024047852, 0.06982422, -0.013702393, 0.024108887, 0.001625061, -0.05441284, 0.0006785393, 0.003944397, -0.015266418, 0.01727295, 0.0027275085, -0.012168884, 0.031433105, -0.041503906, 0.021865845, 0.041931152, 0.035858154, -0.02760315, -0.01940918, -0.03363037, 1.6987324e-05, 0.011672974, -0.041107178, 0.045959473, 0.031234741, 0.06021118, -0.002122879, 0.032287598, 0.087768555, 0.06951904, -0.013748169, -0.027114868, 0.020507812, -0.013305664, -0.0006175041, -0.0055732727, 0.067871094, 0.05557251, 0.0418396, -0.027572632, -0.05331421, 0.018630981, 0.034240723, 0.041137695, 0.013343811, 0.025543213, -0.078063965, 0.054260254, 0.0022792816, 0.011413574, -0.00111866, 0.015808105, -0.010009766, 0.029312134, 0.011619568, 0.009681702, 0.062316895, -0.02923584, 0.080566406, 0.06097412, 0.016448975, -0.05343628, -0.020828247, 0.015975952, -0.009284973, -0.00035262108, 0.046142578, 0.005268097, -0.022979736, -0.012290955, 0.03564453, 0.0141067505, 0.007987976, -0.034179688, 0.030258179, 0.011062622, 0.05734253, 0.0012207031, 0.039154053, 0.014602661, -0.035858154, -0.05206299, -0.006881714, -0.0011005402, -0.036102295, 0.010795593, -0.008178711, -0.039367676, 0.018966675, -0.020446777, 0.03277588, -0.04473877, -0.0206604, 0.052459717, -0.035339355, 0.033233643, -0.002494812, -0.012451172, -0.0066986084, 0.038970947, 0.026687622, -0.06719971, 0.025436401, 0.021362305, 0.024154663, 0.02696228, 0.030395508, -0.016586304, 0.026168823, 0.030395508, -0.010620117, -0.03111267, -0.05456543, -0.028884888, -0.008308411, 0.0065994263, -0.016586304, 0.018051147, 0.005832672, 0.00957489, -0.0023956299, 0.010635376, -0.0027980804, 0.0036373138, 0.010093689, 0.011955261, -0.016021729, -0.015075684, 0.004425049, 0.034576416, -0.009254456, -0.028427124, -0.009475708, 0.017562866, 0.0048675537, -0.029510498, -0.03503418, -0.01689148, 0.02670288, -0.0054359436, -0.0070228577, 0.037597656, -0.019989014, 0.016677856, 0.037017822, 0.000934124, 0.044281006, 0.048034668, -0.050933838, 0.026184082, 0.059265137, -0.0345459, -0.01979065, -0.0010919571, -0.050109863, 0.006500244, 0.05493164, -0.033050537, 0.0014600754, -0.041625977, 0.016311646, 0.035736084, 0.013038635, 0.00088119507, -0.0335083, -0.014213562, 0.0024967194, -0.026519775, 0.07330322, -0.01424408, -0.029830933, 0.032440186, -0.026947021, 0.011383057, -0.05050659, -0.0034542084, 0.010765076, 0.013221741, 0.020080566, -0.04812622, 0.07720947, -0.0074043274, 0.06549072, 0.010620117, -0.0418396, -0.039886475, -0.003835678, 0.024856567, -0.016082764, -0.026107788, 0.020187378, -0.026687622, -0.11279297, 0.020645142, 0.0104599, -0.031677246, -0.00983429, -0.047973633, -0.08105469, -0.05307007, 0.009010315, 0.0039138794, -0.018310547, 0.040222168, -0.022094727, 0.007232666, -0.01436615, -0.006034851, -0.013832092, -0.014091492, -0.009811401, 0.025360107, 0.046569824, -0.09313965, 0.018005371, 0.041137695, -0.056365967, -0.033325195, 0.0046424866, 0.042510986, -0.009536743, 0.03274536, -0.023284912, -0.01512146, -0.02456665, 0.0058250427, 0.008239746, 0.03665161, -0.0023345947, -0.03451538, 0.023361206, -0.023422241, 0.002702713, -0.046203613, -0.036956787, 0.047790527, -0.035125732, 0.00869751, -0.071777344, -0.014533997, -0.012374878, -0.041137695, -0.022842407, -0.0018386841, 0.012550354, 0.028182983, -9.536743e-05, 0.085876465, -0.0062408447, 0.032073975, 0.03366089, 0.014205933, -0.045410156, -0.024978638, 0.056365967, 0.008262634, -0.0011749268, -0.036712646, 0.042419434, -0.008460999, -0.014137268, 0.009384155, -0.030792236, 0.043548584, 0.032073975, -0.007785797, -0.020446777, -0.013214111, 0.017700195, 0.0024909973, 0.003189087, -0.014297485, -0.014404297, 0.0065231323, -0.042907715, 0.04647827, 0.03579712, -0.012237549, 0.010292053, -0.0071525574, -0.020690918, 0.043151855, 0.028121948, 0.012580872, -0.00073099136, 0.03933716, -0.041015625, 0.0011634827, 0.005458832, 0.055725098, 0.043121338, 0.009979248, -0.03237915, 0.004764557, 0.0062294006, -0.05987549, 0.008132935, 0.040924072, 0.02027893, -0.0181427, 0.010246277, 0.016540527, -0.024978638, -0.046722412, 0.039611816, 0.008087158, -0.012718201, 0.0006084442, 0.010681152, -0.041809082, 0.000893116, 0.027709961, -0.031402588, -0.019546509, -0.00071430206, 0.027145386, 0.0051651, 0.025558472, -0.037506104, 0.046936035, -0.029144287, 0.010360718, 0.0007915497, 0.020355225, -0.03881836, -0.032562256, 0.0657959, -0.014633179, -0.017089844, -0.0037517548, -0.03366089, -0.06536865, 0.012023926, 0.0602417, -0.0026416779, -0.021774292, -0.0074005127, -0.034332275, 0.000300169, 0.007381439, -0.02407837, -0.02947998, 0.02067566, 0.025497437, 0.044952393, -0.0096206665, -0.050720215, 0.0024604797, -0.0066947937, -0.0054016113, 0.015686035, -0.0009217262, 0.022994995, 0.049621582, -0.047821045, -0.03817749, -0.07086182, -0.010169983, 0.045959473, 0.016555786, -0.036834717, -0.012870789, -0.0010604858, -0.00434494, 0.040893555, -0.0076560974, 0.0087890625, -0.02079773, -0.0022182465, 0.014160156, 0.014030457, 0.046661377, 0.03555298, 0.05154419, -0.043762207, 0.047180176, -0.045715332, 0.0004813671, -0.051239014, 0.021453857, -0.07220459, -0.047943115, 0.036499023, 0.007293701, 0.026626587, 0.0023155212, -0.009429932, 0.015792847, -0.026107788, -0.1116333, -0.0647583, -0.030075073, -0.024017334, 0.023345947, 0.011054993, -0.008918762, -0.014511108, 0.069885254, -0.018066406, 0.021774292, -0.0066871643, -0.026626587, -0.031951904, 0.0021362305, -3.46303e-05, 0.0054740906, -0.02357483, -0.00447464, -0.001991272, 0.018203735, -0.01537323, -0.032318115, -0.016189575, 0.0032806396, -0.016723633, -0.05734253, 0.0070533752, 0.0076141357, 0.012191772, -0.011253357, -0.027572632, 0.008239746, -0.025878906, -0.0049819946, -0.027038574, -0.030303955, -0.006954193, 0.013198853, -0.012039185, -0.022247314, -0.00085020065, -0.030090332, 0.016784668, 0.018981934, -0.037475586, -0.04663086, 0.04650879, -0.0034770966, -0.028808594, -0.001964569, -0.012168884, -0.009887695, -0.010009766, -0.0037574768, -0.014213562, -0.0017662048, 0.0064811707, 0.0064888, -0.033111572, 0.039123535, 0.009246826, 0.009216309, -0.017654419, 0.06060791, 0.0005450249, 0.018569946, -0.01927185, 0.031173706, 0.032836914, 0.009300232, 0.008117676, -0.023910522, -0.0023002625, 0.029724121, 0.031143188, 0.008605957, 0.0025672913, 0.006832123, 0.028259277, -0.008354187, -0.0079422, -0.00932312, 0.012901306, 0.040374756, 0.023986816, 0.024765015, -0.04446411, 0.04699707, -0.037322998, -0.016830444, 0.008277893, -0.043640137, -0.005554199, 0.038482666, -0.035186768, -0.011886597, 0.025741577, -0.01890564, -0.015457153, 0.03677368, 0.027832031, -0.022460938, 0.02331543, 0.021453857, -0.02444458, -0.004432678, 0.0047950745, -0.0036201477, -0.08569336, -0.016601562, -0.036132812, 0.0287323, -0.035339355, -0.0073776245, -0.03665161, -0.010757446, 0.0026817322, -0.02130127, -0.0057144165, 0.036315918, -0.00029468536, -0.006084442, -0.037597656, -0.0070762634, -0.01084137, -0.05343628, 0.004043579, -0.022537231, -0.03488159, -0.043182373, 0.028076172, 0.066101074, -0.030532837, -0.037628174, 0.058929443, -0.039398193, -0.029830933, -0.050445557, 0.066589355, -0.036132812, -0.0027751923, 0.020324707, 0.009613037, 0.0140686035, 0.030227661, 0.0049743652, -0.032287598, 0.0014896393, 0.011650085, -0.019104004, -0.058532715, -0.040649414, -0.0017786026, -0.015579224, -0.04940796, -0.04788208, 0.022476196, -0.028625488, 0.009063721, -0.027053833, -0.068603516, -0.00059223175, -0.015312195, -0.00034046173, -0.016799927, 0.025650024, -0.011360168, 0.041992188, -0.019729614, -0.04257202, -0.045196533, 0.019470215, 0.04309082, -0.012924194, -0.010772705, -0.0064315796, 0.009010315, 0.03692627, 0.001209259, -0.038085938, 0.0032634735, 0.026428223, 0.022766113, 0.004589081, -0.02268982, -0.00050497055, -0.053894043, -0.0046539307, 0.009185791, 0.07067871, -0.04864502, 0.06640625, -0.01272583, 0.0501709, 0.008804321, 0.028305054, 0.017211914, -0.042419434, -0.06604004, 0.014350891, 0.0262146, -0.056396484, 0.0016355515, -0.02281189, -0.034851074, -0.03717041, -0.031051636, -0.030670166, 0.029403687, -0.016784668, -0.01776123, 0.036834717, 0.0018930435, -0.00035595894, 0.0569458, -0.00818634, 0.05041504, 0.007820129, 0.010917664, 0.005847931, 0.02330017, -0.032684326, -0.013137817, 0.03375244, 0.002817154, 0.014350891, -0.059051514, 0.011009216, 0.040008545, -0.037384033, -0.024276733, 0.043121338, 0.023071289, -0.01828003, -0.029953003, -0.0029315948, -0.019851685, 0.029205322, 0.014595032, 0.015312195, 0.0053977966, 0.041381836, -0.0110321045, -0.0035057068, -0.004863739, 0.0012073517, -0.026916504, 0.007118225, -0.009361267, -0.0069389343, -0.043792725, 0.072387695, 0.0011634827, 0.03894043, 0.068847656, -0.0440979, -0.0048561096, -0.0026493073, 0.014305115, -0.050109863, -0.042999268, -0.031082153, -0.007408142, -0.01725769, 0.00091171265, 0.018035889, 0.039978027, 0.009536743, -0.03302002, 0.019607544, -0.056488037, 0.030899048, 0.022460938, 0.058135986, -0.05505371, -0.042053223, -0.017333984, -0.00868988, -0.012870789, 0.036590576, -0.0008869171, 0.008560181, 0.0309906, -0.010223389, 0.043640137, -0.021072388, 0.0064888, -0.023925781, 0.019424438, 0.042144775, -0.041870117, -0.021438599, -0.016738892, -0.0073165894, 0.0059051514, -0.012123108, -0.031204224, -0.005004883, 0.019699097, -0.019256592, -0.059326172, 0.023132324, -0.024765015, -0.03652954, 0.057922363, -0.07867432, -0.033721924, -0.014564514, -0.002084732, -0.009262085, -0.0032444, -0.06088257, 0.002243042, -0.026428223, 0.015472412, 0.031799316, -0.016571045, 0.0003502369, -0.017868042, 0.012832642, 0.01889038, 0.012626648, -0.023635864, 0.027954102, -0.026138306, -0.007484436, -0.054779053, 0.004085541, -0.09429932, -0.0066108704, 0.022964478, -0.018463135, -0.014823914, -0.013343811, 0.016693115, 0.005569458, 0.040893555, -0.015609741, 0.08508301, -0.047607422, -0.039215088, 0.046936035, 0.044708252, -0.030731201, -0.020889282, -0.017364502, -0.016357422, 0.025177002, 0.03515625, -0.024780273, -0.0042877197, -0.016540527, -0.0031909943, -0.04019165, 0.039611816, -0.019714355, 0.024276733, 0.0015096664, -0.05822754, 0.007133484, -0.012931824, 0.026260376, 0.031433105, -0.0015354156, 0.0012245178, -0.018096924, -0.04953003, -0.018966675, -0.013595581, 0.0134887695, 0.089904785, -0.0090789795, -0.050445557, 0.008171082, -0.018447876, 0.024993896, 0.020355225, 0.004070282, -0.0009288788, 0.009155273, 0.03894043, 7.271767e-05, -2.3066998e-05, 0.04953003, -0.020553589, -0.02998352, 0.012763977, 0.012283325, -0.0013895035, 0.010414124, -0.030395508, 0.0031967163, 0.016967773, 0.0055885315, -0.0044784546, -0.05682373, -0.010475159, 0.024810791, -0.0149383545, -0.0011796951, -0.017074585, -0.033813477, -0.08105469, 0.009132385, 0.03692627, -0.009536743, -0.02192688, 0.015914917, 0.05404663, 0.05267334, 0.018432617, -0.0993042, -0.05697632, 0.046875, 0.03729248, -0.02609253, 0.044311523, -0.023391724, 0.0030593872, 0.07562256, -0.0082473755, -0.008132935, -0.0022563934, 0.033721924, 0.04095459, -0.008728027]}, "B00FWKVGQ0": {"id": "B00FWKVGQ0", "original": "Brand: Outland Living\nName: Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU\nDescription: \nFeatures: PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\nNO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24\u201d x W 24\u201d x H 13\u201d with total output of 58,000 BTU/HR.\nBEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\nCOMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately.\nSIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual\n", "metadata": {"Name": "Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU", "Brand": "Outland Living", "Description": "", "Features": "PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\nNO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24\u201d x W 24\u201d x H 13\u201d with total output of 58,000 BTU/HR.\nBEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\nCOMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately.\nSIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035217285, 0.00017154217, -0.04446411, -0.05303955, -0.0031223297, 0.012084961, -0.028717041, 0.03945923, -0.032684326, 0.026062012, -0.043426514, 0.03225708, 8.535385e-05, -0.021270752, 0.022247314, -0.057434082, 0.0030517578, 0.014984131, -0.026031494, -0.05621338, 0.0006132126, -0.051208496, -0.0061912537, 0.118774414, 0.010894775, -0.024169922, -0.010658264, -0.004501343, -0.0035934448, 0.0002655983, 0.021621704, 0.022705078, 0.04901123, -0.012435913, -0.042022705, -0.06689453, -0.019104004, -0.0137786865, -0.05569458, 0.0395813, 0.01928711, -0.012321472, -0.02897644, -0.012130737, -0.0496521, -0.0016489029, -0.0049057007, 0.0031108856, -0.028823853, -0.003660202, 0.0063934326, 3.671646e-05, 0.017974854, 0.012825012, -0.014472961, -0.02394104, 0.008049011, -0.026306152, 0.0046958923, 0.0067710876, 0.006542206, 0.01927185, 0.03604126, 0.01058197, -0.040802002, 0.007686615, 0.07312012, -0.016433716, -0.038238525, -0.058563232, 0.019302368, 0.008331299, 0.03265381, -0.02078247, -0.016845703, -0.011833191, 0.017211914, -0.0069007874, 0.028549194, -0.027862549, -0.016723633, -0.016586304, 0.015220642, -0.06500244, 0.019958496, -0.050628662, -0.019119263, 0.015716553, -0.013771057, -0.046539307, -0.008087158, 0.0023345947, -0.02796936, -0.011878967, -0.002281189, -0.04949951, -0.04437256, -0.06225586, 0.048034668, 0.034698486, -0.0035171509, -0.027435303, 0.032836914, -0.019821167, 0.0077323914, 0.07519531, 0.0010948181, -0.003894806, -0.007472992, -0.005458832, 0.0018787384, -0.032440186, -0.0033130646, -0.021728516, -0.026947021, 0.010063171, -0.011291504, -0.00541687, 0.007774353, 0.0068359375, -0.014266968, -0.02659607, 0.022506714, 0.061706543, 0.04586792, 0.029800415, -0.021728516, 0.009468079, -0.037628174, 0.053771973, -0.011726379, -0.0014696121, -0.011985779, -0.0017547607, -0.038238525, -0.027267456, 0.048034668, 0.0077552795, -0.0025978088, 0.009643555, -0.00843811, 0.008743286, 0.039764404, -0.006801605, -0.015716553, 0.04776001, 0.017486572, 0.0040664673, 0.010307312, -0.05529785, -0.0033111572, -0.021194458, 0.035003662, 0.015258789, 0.0009508133, -0.045043945, 0.049865723, -0.05496216, -0.0071525574, -0.07141113, 0.009262085, -0.0062789917, -0.028152466, 0.003955841, -0.04348755, 0.013519287, 0.013908386, -0.014984131, 0.009559631, 0.04058838, -0.0072288513, 0.076293945, 0.01096344, -0.018966675, -0.0048980713, -0.05419922, 0.0007982254, 0.10424805, 0.04232788, -0.1071167, -0.057281494, -0.05883789, 0.13684082, -0.04257202, -0.012924194, -0.010932922, -0.011909485, -0.043060303, 0.018920898, -0.011070251, 0.012001038, 0.017471313, -0.0095825195, -0.01247406, 0.0061569214, 0.021987915, -0.04989624, 0.021957397, -0.015975952, 0.0011663437, 0.011024475, 0.030578613, -0.014411926, 0.015960693, 0.02684021, 0.0021266937, 0.006942749, 0.016235352, 0.02645874, 0.033691406, -0.015556335, -0.0059127808, -0.0030403137, -0.040008545, -0.013832092, 0.010070801, -0.012382507, 0.016326904, 0.015563965, 0.0084991455, 0.046905518, 0.0118637085, 0.029373169, -0.00674057, 0.021057129, -0.025405884, -0.014793396, -0.028915405, 0.031585693, -0.0016174316, 0.0008149147, 0.03753662, 0.0152282715, -0.0078048706, -0.03970337, 0.029342651, 0.03302002, 0.015449524, -0.028671265, 0.016616821, 0.035583496, -0.03616333, -0.00944519, 0.022079468, 0.006164551, -0.021087646, 0.019256592, 0.003932953, -0.022613525, 0.020584106, 0.028701782, 0.0043640137, 0.020706177, 0.0033512115, -0.022964478, 0.016860962, -0.03591919, -0.034576416, 0.020690918, -0.01121521, 0.002954483, 0.028793335, -0.004310608, 0.007621765, 0.01008606, -0.02558899, 0.032989502, 0.03050232, -0.0044898987, -0.02218628, 0.02432251, 0.0077667236, -0.008934021, -0.027816772, 0.027999878, 0.0017290115, -0.013748169, 0.00381279, 0.0049362183, -0.023880005, -0.020690918, 0.0048332214, 0.015914917, -0.01701355, 0.004508972, -0.003753662, 0.02079773, -0.051727295, -0.017807007, -0.02470398, -0.003921509, 0.018630981, -0.047180176, 0.059814453, -0.032287598, -0.0284729, -0.029144287, 0.0055236816, 0.026138306, -0.039855957, -0.0059318542, 0.05319214, -0.0519104, 0.06451416, -0.00058174133, 0.029403687, -0.004699707, 0.020767212, 0.019958496, -0.020355225, 0.0060691833, -0.0030231476, 0.039367676, -0.03765869, 0.07495117, 0.044158936, -0.0011339188, 0.05883789, 0.062469482, 0.061187744, -0.009765625, 0.0385437, 0.007255554, 0.005443573, 0.03237915, -0.017211914, -0.034088135, -0.0049705505, 0.0031356812, 0.0039787292, 0.013465881, -0.0010890961, 0.028579712, 0.0067367554, -0.007484436, -0.051727295, 0.0073890686, 0.0070266724, 0.0019025803, -0.036712646, 0.018692017, 0.0446167, 0.005958557, 0.021606445, -0.06341553, 0.0024299622, 0.0032367706, -0.00093507767, -0.02381897, 0.00049829483, 0.016998291, -0.011329651, -0.0018520355, 0.010322571, 0.013114929, -0.049194336, -0.00919342, 7.7068806e-05, -0.02671814, -0.075805664, -0.00073480606, -0.032806396, -0.05722046, -0.022842407, 0.026275635, 0.020401001, -0.060760498, 0.0067596436, 0.0011196136, 0.031280518, 0.043823242, 0.018661499, -0.009376526, -0.039855957, -0.052337646, -0.054534912, 0.039215088, -0.015274048, 0.00819397, 0.021697998, 0.021759033, 0.022521973, -0.0056266785, 0.022903442, 0.029525757, 0.029663086, 0.041137695, 0.06414795, 0.015022278, -0.026367188, 0.011993408, 0.032348633, -0.04852295, 0.0045394897, 0.014335632, -0.0027751923, -0.011123657, -0.015510559, -0.07598877, -0.00919342, -0.10040283, 0.024856567, 0.012641907, -0.026550293, -0.00048542023, -0.07672119, -0.03475952, -0.055725098, 0.012161255, 0.052124023, -0.012237549, -0.0010566711, -0.011711121, 0.004169464, -0.018035889, 0.011497498, 0.0030784607, 0.002632141, -0.06524658, 0.0152282715, 0.04788208, -0.02619934, 0.016571045, 0.016067505, -0.024932861, -0.04940796, 0.020309448, 0.008277893, 0.029647827, 0.04232788, -0.005443573, -0.0036621094, -0.022369385, -0.01878357, -0.000110924244, 0.019866943, 0.0011548996, 0.006942749, 0.0146102905, -0.011802673, 0.013748169, -0.039489746, -0.03881836, -0.008262634, -0.014579773, -0.013557434, -0.010772705, 0.012702942, 0.002576828, -0.0046691895, -0.022460938, 0.017028809, 0.015930176, 0.0076522827, -0.015960693, -0.03366089, 0.025726318, 0.049926758, 0.0019264221, -0.0007047653, -0.0025863647, -0.030456543, 0.03503418, 0.010848999, 0.005340576, -0.027893066, 0.050567627, 0.027755737, -0.0035572052, 0.0012369156, 0.012916565, 0.012008667, -0.02645874, -0.036071777, 0.017181396, -0.010223389, 0.03945923, 0.016204834, -0.012229919, -0.050201416, -0.06008911, 0.0046691895, -0.06896973, 0.07647705, 0.045715332, -0.036956787, 0.0848999, 0.064697266, -0.029876709, 0.04949951, 0.012886047, 0.00762558, -0.015602112, 0.051635742, -0.045806885, 0.034484863, 0.0013027191, -0.004760742, -0.013496399, -0.019760132, -0.013153076, 0.012252808, 0.0014734268, 0.00022649765, -0.051605225, -0.003850937, 0.016143799, -0.018676758, -0.010665894, -0.023651123, -0.0065231323, -0.040802002, 0.0075263977, 0.009681702, -0.021972656, -0.030654907, 0.008430481, -0.034118652, -0.025497437, 0.016845703, 0.021530151, 0.0041160583, 0.01448822, 0.045288086, -0.031097412, 0.03945923, -0.05770874, 0.0016927719, -0.022918701, 0.03543091, 0.0013380051, 0.006385803, -0.0024261475, -0.049194336, 0.048034668, -0.014984131, -0.016525269, 0.036712646, 0.0002462864, -0.062805176, -0.0037212372, -0.0009651184, 0.012397766, -0.04336548, -0.0033950806, -0.03390503, -0.021469116, -0.016418457, -0.0016622543, -0.035308838, -0.003982544, 0.015083313, -0.06903076, -0.04257202, -0.015571594, -0.013191223, -0.016281128, 0.015975952, -0.022354126, -0.017578125, -0.006706238, 0.028915405, -0.049560547, 0.0011196136, -0.002281189, 0.006706238, 0.023773193, -0.010917664, 0.059326172, -0.037139893, -0.029586792, -0.008285522, 0.0637207, -0.0018434525, 0.0541687, -0.028747559, -0.009727478, 0.018478394, 0.025238037, 0.026397705, -0.035705566, -0.0034503937, -0.0044555664, -0.011405945, -0.052947998, 0.00762558, 0.024017334, -0.035125732, -0.047943115, -0.04336548, 0.011352539, 0.02180481, -0.0064849854, -0.002752304, 0.00092458725, 0.029815674, 0.041625977, -0.045684814, -0.03201294, 0.007446289, -0.05166626, -0.004234314, -0.005908966, -0.022750854, 0.07232666, 0.054595947, 0.018493652, -0.026992798, -0.02357483, 0.03024292, 0.0010051727, 0.044128418, -0.027496338, -0.030838013, -0.0032081604, 0.020339966, -0.053985596, 0.07684326, 0.0073432922, -0.034301758, -0.0158844, 0.00504303, -0.03036499, -0.0680542, 0.012840271, -0.028457642, 0.024551392, -0.000269413, -0.014801025, -0.04360962, -0.033996582, -0.01739502, 0.018173218, -0.0019817352, 0.031707764, -0.012145996, 0.015716553, 0.0067634583, 0.005836487, 0.030212402, 0.031677246, -0.0044937134, -0.0084991455, 0.0039405823, -0.0039024353, 0.0064315796, 0.019897461, 0.010902405, -0.022964478, -0.030212402, 0.016647339, 0.034698486, -0.031219482, 0.08886719, 0.02986145, 0.07409668, -0.007457733, -0.0060691833, 0.044006348, -0.032348633, -0.066467285, 0.004901886, 0.0013380051, -0.046051025, -0.021377563, -0.01725769, -0.012237549, 0.040893555, -0.051879883, 0.009460449, 0.03665161, -0.06286621, 0.06512451, 0.028900146, 0.0028247833, -0.043914795, 0.07342529, -0.013114929, -0.023208618, -0.031402588, 0.025802612, 0.024871826, 0.021209717, -0.040252686, -0.0031375885, 0.051635742, -0.04058838, -0.012702942, 0.027740479, 0.04208374, -0.037017822, -0.025131226, 0.037078857, -0.017105103, -0.0058555603, 0.025375366, -0.030349731, -0.023986816, 0.0013303757, -0.022720337, 0.03503418, -0.014503479, -0.03189087, -0.038635254, 0.011131287, -0.035369873, -0.012588501, -0.06903076, 0.028808594, 0.010482788, -0.04537964, 0.03024292, 0.0020008087, 0.019119263, -0.08685303, -0.06677246, -0.052764893, 0.022369385, 0.0038795471, 0.07495117, -0.022949219, -0.0031967163, 0.009849548, -0.018844604, 0.022064209, -0.022537231, -0.038269043, -0.0132369995, 0.033203125, 0.039794922, 0.008934021, -0.010726929, 0.048339844, -0.027435303, -0.032592773, -0.017440796, 0.024108887, -0.022567749, -0.066711426, 0.093811035, 0.041809082, 0.0075035095, 0.010398865, -0.025436401, -0.041656494, -0.0018091202, -0.017501831, -0.028762817, 0.005508423, -0.048187256, 0.026733398, 0.019760132, 0.005256653, -0.011116028, 0.05645752, 0.007171631, -0.032073975, -0.018966675, -0.010383606, 0.0067481995, -0.030044556, 0.015853882, -0.013191223, 0.002105713, -0.025497437, 0.006565094, -0.008399963, 0.011657715, -0.008125305, -0.0020828247, 0.028961182, -0.010513306, 0.005382538, 0.022583008, 0.017211914, 0.009262085, 0.011436462, -0.066467285, -0.018737793, 0.020751953, 0.036865234, -0.00995636, -0.020202637, -0.01184082, 0.0006184578, -0.01524353, 0.04888916, -0.006755829, -0.007820129, 0.0074768066, 0.044799805, 0.024841309, 0.008384705, 0.006801605, 0.02178955, -0.009178162, -0.034423828, 0.0016765594, 0.023452759, -0.03768921, -0.018585205, -0.054901123, 0.015167236, 0.041229248, -0.006690979, 0.04953003, -0.03112793, 0.061309814, -0.03591919, -0.013397217, -0.0054016113, -0.056488037, 0.019683838, 0.011772156, 0.047210693, -0.014518738, 0.010620117, -0.017120361, 0.023757935, -0.00043272972, 0.029022217, 0.05722046, 0.015792847, -0.011627197, -0.039031982, 0.030517578, -0.0044403076, -0.049987793, -0.01687622, -0.015670776, 0.029830933, -0.014587402, -0.00522995, -0.010665894, 0.02670288, 0.04473877, -0.031204224, 0.06842041, -0.039855957, -0.0046157837, 0.012557983, 0.009994507, -0.008460999, -0.03765869, 0.022125244, -0.0072402954, 0.0035934448, -0.002790451, 0.042785645, 0.054534912, 0.013244629, -0.013748169, 0.02859497, -0.03414917, -0.0026664734, 0.0052375793, -0.011360168, -0.04446411, 0.0039100647, -0.009162903, -0.011154175, 0.009994507, -0.018051147, -0.02230835, 0.023773193, -0.010047913, -0.006286621, 0.025177002, -0.0362854, 0.010063171, 0.019210815, 0.010093689, -0.045318604, 0.02670288, 0.0049095154, 0.015541077, 0.013542175, 0.05947876, 0.028533936, -0.023239136, -0.04714966, -0.038604736, 0.0011339188, -0.03704834, 0.01399231, -0.034240723, 0.011436462, 0.03024292, -0.055877686, -0.0060310364, 0.015258789, -0.018005371, 0.032806396, 0.015487671, 0.017211914, -0.026046753, -0.012748718, 0.017837524, -0.0099487305, -0.016525269, -0.020019531, -0.01689148, 0.042266846, -0.011512756, -0.020309448, -0.009796143, -0.017318726, -0.0036067963, -0.042175293, -0.044677734, 0.038269043, -0.027648926, -0.04699707, -0.02456665, 0.02217102, -0.014945984, -0.054504395, -0.027862549, -0.007949829, 0.020584106, 0.020492554, 0.047088623, -0.01361084, -0.08666992, -0.026550293, 0.048736572, -0.010116577, -0.041015625, 0.014755249, -0.0024051666, 0.01966858, 0.018722534, 0.05947876, 0.032348633, 0.045837402, -0.0019798279, -0.02848816, -0.034240723, -0.011642456, 0.057739258, -0.00995636, 0.007797241, -0.051940918, 0.010620117, 0.018676758, 0.00819397, 0.013771057, 0.015991211, -0.11016846, -0.011909485, -0.046325684, 0.0041999817, 0.0040283203, -0.0385437, 0.05795288, 0.012527466, -0.024383545, 0.050933838, 0.050231934, 0.046905518, 0.017852783, -0.02128601, 0.016418457, -0.014678955, -0.039886475, 0.019073486, -0.020339966, 0.011116028, -0.00068092346, -0.043762207, -0.02508545, 0.0062294006, -0.0018987656, -0.016067505, 0.016693115, 0.017501831, 0.015136719, -0.048919678, -0.00374794, -0.018508911, -0.0116119385, 0.018096924, -1.7762184e-05, 0.0231781, -0.0042304993, 0.0074043274, -0.02394104, -0.031341553, -0.022750854, 0.021896362, -0.032104492, -0.038757324, -0.040283203, -0.050994873, 0.0030384064, 0.038238525, -0.030548096, 0.041870117, -0.02168274, -0.017532349, -0.044830322, -0.016113281, 0.015960693, -0.036010742, -0.05670166, 0.03237915, 0.025985718, 0.06347656, -0.03744507, -0.066223145, -0.06262207, 0.03488159, -0.01940918, 0.005756378, 0.05899048, -0.02897644, 0.0033683777, 0.04788208, -0.037200928, -0.037261963, 0.005340576, 0.08013916, 0.020935059, 0.015487671]}, "B07GQZ1LGP": {"id": "B07GQZ1LGP", "original": "Brand: Jiesuo\nName: JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers\nDescription: ''JIESUO'' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

      DIMENSIONS
      This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

      HEAVY DUTY MATERIAL
      This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

      WATERPROOF
      The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

      UV RESISTANT
      UV and fade-resistant fabric material prevents damage from the sunlight.

      WIND-RESISTANT
      Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

      GOOD STITCHING, EFFECTIVE PROTECTION
      Superior textile process, 'Precision Two-Thread Stitching' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

      SPECIFICATION
      Material: 100% 600D polyester fabrics
      Product Dimensions: 60\" L x 24\" D x 44\" H
      Package Included:
      1* JIESUO 60 In Gas Grill Cover
      1* Storage Bag

      JIESUO grill cover design concept is to solve past pain points, improve user experience.
      You get what you pay off.
      At last thank you for your purchase.\nFeatures: DIMENSIONS - This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.)\nUPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills.\nGOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, 'Precision Two-Thread Stitching' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it's sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it.\nConvenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain.\nEasy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.\n", "metadata": {"Name": "JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers", "Brand": "Jiesuo", "Description": "''JIESUO'' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

      DIMENSIONS
      This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

      HEAVY DUTY MATERIAL
      This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

      WATERPROOF
      The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

      UV RESISTANT
      UV and fade-resistant fabric material prevents damage from the sunlight.

      WIND-RESISTANT
      Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

      GOOD STITCHING, EFFECTIVE PROTECTION
      Superior textile process, 'Precision Two-Thread Stitching' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

      SPECIFICATION
      Material: 100% 600D polyester fabrics
      Product Dimensions: 60\" L x 24\" D x 44\" H
      Package Included:
      1* JIESUO 60 In Gas Grill Cover
      1* Storage Bag

      JIESUO grill cover design concept is to solve past pain points, improve user experience.
      You get what you pay off.
      At last thank you for your purchase.", "Features": "DIMENSIONS - This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.)\nUPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills.\nGOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, 'Precision Two-Thread Stitching' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it's sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it.\nConvenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain.\nEasy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012130737, -0.025009155, -0.048309326, -0.034423828, -0.015365601, -0.0043907166, 0.0012683868, 0.04953003, -0.05340576, 0.03793335, 0.015411377, 0.0010786057, 0.0073776245, -0.039398193, 0.016403198, -0.029800415, 0.012428284, -0.0052757263, -0.000320673, 0.0031795502, -0.0023956299, 0.0061187744, -0.005176544, -0.010650635, 0.034851074, -0.032836914, 0.005771637, -0.010978699, 0.03086853, 0.0002206564, 0.016784668, -0.023651123, 0.030792236, 0.046691895, -0.06817627, 0.0007276535, -0.006008148, 0.0031108856, -0.0047569275, 0.005748749, 0.028411865, -0.017623901, -0.021514893, 0.01058197, 0.016525269, -0.068603516, 0.030044556, -0.078430176, 0.014442444, 0.033203125, -0.009185791, 0.02708435, -0.011360168, -0.0209198, 0.0034255981, 0.008003235, -0.033203125, 0.023605347, 0.022277832, 0.016616821, -0.012191772, -0.0059318542, 0.01689148, -0.008773804, -0.030899048, 0.0025730133, 0.06390381, -0.013694763, -0.03845215, -0.03970337, 0.0317688, 0.011856079, 0.029067993, -0.007534027, -0.00020229816, -0.076416016, -0.023864746, -0.06915283, 0.026672363, 0.03125, -0.022705078, -0.05303955, 0.04598999, -0.0042915344, 0.0019407272, 0.00919342, -0.031311035, 0.0022964478, 0.006252289, 0.0045318604, 0.010406494, 0.013450623, -0.027786255, 0.03753662, 0.02557373, -0.023010254, -0.061676025, -0.04397583, -0.013404846, 0.008483887, 0.023513794, -0.008308411, 0.032104492, -0.013908386, -0.010421753, 0.07550049, -0.008132935, 0.041015625, 0.019515991, 0.011741638, 0.012901306, -0.027328491, -0.033966064, -0.07092285, -0.04473877, 0.046569824, 0.004131317, -0.05505371, 0.041809082, -0.06817627, -0.03036499, -0.0011148453, 0.0047416687, 0.058776855, 0.0011081696, 0.03753662, 0.04324341, -0.033569336, -0.05117798, -0.01361084, -0.01335907, 0.031021118, 0.062194824, 0.050354004, 0.010299683, -0.005584717, 0.02798462, 0.007205963, 0.008010864, 0.0075950623, -0.01033783, 0.005126953, 0.058135986, -0.0067367554, -0.032318115, 0.025405884, 0.018188477, 0.004348755, -0.0082473755, -0.064331055, 0.011528015, -0.018829346, 0.061645508, -0.009429932, -0.052093506, -0.01134491, 0.014633179, -0.017364502, -0.0602417, -0.055511475, -0.028076172, -0.0019168854, 0.024429321, -0.008422852, -0.016357422, 0.014823914, 0.01576233, -0.0068244934, 0.018112183, 0.03793335, -0.013648987, -0.05895996, -0.026290894, 0.01828003, -0.006038666, 0.051635742, -0.018112183, 0.03656006, 0.07684326, -0.05493164, -0.033569336, -0.03062439, 0.12573242, -0.029144287, 0.009429932, -0.021713257, -0.0059547424, -0.003232956, 0.046203613, 0.010437012, -0.01713562, -0.029129028, 0.010871887, 0.019470215, 0.0064849854, 0.004432678, -0.0033302307, 0.042755127, -0.011024475, -0.0579834, -0.052581787, -0.01209259, -0.02885437, 0.027648926, 0.0020542145, -0.04296875, 0.0072402954, 0.020553589, -0.026443481, 0.041259766, 0.011833191, -0.0063667297, 0.02104187, -0.08215332, -0.007858276, -0.03050232, -0.00071525574, 0.01687622, 0.0012245178, 0.016159058, 0.011627197, 0.013069153, -0.0032081604, 0.008056641, 0.0029525757, -0.012023926, 0.008361816, -0.0029697418, 0.01939392, 0.042663574, -0.008346558, -0.04244995, 0.048431396, 0.036987305, -0.021636963, 0.032470703, 0.03692627, 0.04525757, -0.025390625, 0.0014324188, -0.018692017, -0.012138367, -0.08288574, -0.0063056946, -0.0065078735, -0.040374756, -0.039367676, 0.034576416, -0.009742737, -0.0064735413, 0.021972656, -0.00033330917, 0.02607727, -0.031707764, 0.015975952, 0.020889282, -0.034301758, -0.008895874, -0.0126953125, 0.035614014, -0.00843811, 0.05090332, 0.041412354, 0.0029907227, 0.037597656, 0.021881104, 0.032806396, 0.024932861, -0.040924072, 0.003042221, 0.012184143, 0.015419006, 0.0023441315, 0.034729004, 0.032592773, -0.008903503, -0.018798828, -0.02609253, 0.022979736, 0.02017212, 0.009750366, 0.03744507, -0.021713257, -0.014930725, 0.0046691895, -0.029129028, 0.0046424866, 0.027633667, -0.0070381165, 0.012542725, 0.043548584, -0.010856628, 0.01751709, -0.0463562, 0.044158936, -0.012664795, -0.0032024384, 0.020401001, -0.0039863586, -0.015144348, -0.02330017, 0.020950317, -0.014427185, -0.0231781, -0.01889038, 0.052246094, -0.033325195, -0.009086609, -0.0003607273, -0.020141602, -0.0009636879, 0.023773193, 0.013130188, -0.03866577, 0.08251953, 0.03643799, 0.020828247, 0.0385437, 0.06317139, 0.057006836, 0.006679535, -0.0045814514, -0.044677734, -0.016998291, -0.0131073, 0.04043579, -0.036254883, -0.011177063, -0.039093018, -0.02456665, -0.04043579, -0.08319092, -0.040527344, 0.025817871, 0.0032730103, 0.009613037, 0.014839172, -0.028076172, 0.010627747, 0.009613037, 0.023529053, 0.015151978, -0.009025574, -0.050354004, -0.055755615, 0.0040283203, 0.028137207, 0.008720398, -0.040527344, -0.01197052, 0.026535034, -0.040893555, 0.007827759, -0.044769287, -0.024307251, 0.039764404, -0.0020809174, -0.066223145, -0.018035889, -0.09222412, -0.0030975342, 0.007865906, -0.026168823, 0.03286743, 0.022109985, -0.032836914, -0.0039634705, 0.0018291473, 0.023391724, 0.040893555, 0.02973938, 0.0496521, -0.07531738, -0.039367676, -0.01626587, -0.027191162, 0.014312744, -0.03756714, -0.033050537, -0.020141602, -0.04537964, -0.022903442, -0.0049743652, 0.005180359, 0.01612854, 0.05053711, 0.04663086, 0.05871582, -0.03274536, -0.055511475, -0.033691406, 0.049926758, -0.020889282, -0.043273926, 0.010894775, 0.0050086975, 7.933378e-05, 0.054351807, -0.010978699, -0.03010559, -0.05810547, -0.019195557, -0.009140015, -0.039642334, -0.017150879, -0.019195557, -0.045715332, -0.04232788, 0.009231567, 0.045562744, -0.041931152, 0.022750854, -0.030319214, 0.02760315, -0.006828308, 0.012367249, 0.040527344, -0.007396698, 0.005428314, -0.0016832352, 0.02458191, -0.043060303, 0.01625061, 0.015991211, 0.009277344, 0.016555786, -0.012634277, 0.002275467, -0.044891357, -0.03793335, -0.01071167, -0.035369873, -0.0068855286, 0.014907837, -0.025436401, 0.034057617, 0.02848816, -0.021133423, 0.054870605, -0.041778564, -0.032226562, -0.0016870499, 0.013641357, 0.036712646, 0.0018997192, -0.007286072, -0.01210022, -0.029006958, -0.041381836, -0.04336548, -0.04360962, 0.024551392, 0.025604248, 0.04446411, 0.019699097, 0.08862305, -0.013069153, 0.034210205, -0.01914978, -0.027313232, -0.022140503, -0.0435791, 0.043060303, -0.031433105, -0.052124023, 0.0029754639, 0.05505371, 0.010253906, -0.013366699, -0.020233154, -0.04046631, 0.029220581, -0.012374878, -0.0054893494, 0.007827759, 0.0030651093, 0.018112183, 0.012588501, 0.0146102905, -0.012786865, -0.03152466, -0.022491455, -0.039123535, 0.093566895, 0.04937744, -0.006286621, 0.07470703, 0.097717285, -0.033325195, 0.04260254, 0.018936157, 0.004714966, 0.0040512085, 0.012062073, -0.056152344, 0.01689148, 0.013343811, -0.042816162, 0.022720337, 0.005622864, -0.040222168, 0.0053482056, -0.038879395, -0.032104492, -0.029556274, 0.018188477, 0.035064697, -0.0055618286, 0.022705078, -0.010040283, 0.0051002502, -0.020324707, 0.006969452, 0.008392334, -0.035858154, 0.0126953125, -0.05026245, 0.004825592, -0.046691895, -0.00207901, -0.026138306, -0.04373169, 0.026916504, 0.025146484, 0.022979736, -0.009933472, 0.012969971, 0.017150879, -0.021148682, -0.006778717, 0.024002075, -0.008956909, -0.0056991577, -0.012916565, 0.0026226044, 0.039276123, -0.015556335, 0.0072135925, -0.021453857, -0.03640747, 0.00033330917, 0.056854248, 0.015014648, -0.010047913, 0.0044059753, -0.043518066, -0.013427734, 0.002084732, -0.014816284, -0.008872986, -0.024642944, -0.004421234, -0.057373047, -0.0050697327, 0.0030174255, -0.058258057, -0.06518555, 0.024169922, 0.005886078, -0.036224365, -0.012512207, 0.04559326, -0.041870117, -0.008956909, 0.026184082, 0.01939392, 0.020507812, 0.0008392334, 0.04208374, 0.013084412, -0.0032577515, -0.03845215, 0.046722412, 0.010620117, -0.03164673, -0.052856445, 0.008979797, 0.013069153, 0.026382446, 0.023590088, 0.006290436, 0.03353882, -0.008735657, 0.021057129, -0.038909912, -0.05517578, 0.032989502, -0.072509766, -0.057556152, -0.07891846, 0.04776001, 0.00944519, -0.033325195, -0.04837036, 0.04663086, 0.010528564, 0.048950195, 0.016143799, 0.009765625, 0.029937744, -0.0018405914, -0.0049209595, 0.009674072, -0.016555786, 0.010398865, -0.013298035, -0.03643799, -0.0067214966, -0.021942139, 0.013130188, 7.867813e-05, 0.024642944, -0.021438599, -0.024124146, -0.004676819, 0.019577026, -0.03781128, 0.07318115, 0.027679443, -0.007621765, -0.008155823, 0.013923645, -0.0066070557, -0.08319092, 0.019195557, -0.055755615, -0.034851074, -0.039794922, -0.025924683, -0.002796173, -0.04916382, 0.011039734, 0.012039185, -0.0018568039, 0.0021781921, -0.026367188, 0.006942749, -0.043518066, -0.004486084, 0.08215332, 0.0026931763, 0.007827759, 0.032592773, -0.021438599, -0.05227661, -0.050720215, -0.020080566, -0.0032920837, -0.00029945374, -0.03366089, 0.03274536, 0.016021729, 0.013061523, -0.010719299, 0.0059814453, -0.003446579, -0.02746582, -0.014404297, 0.0018157959, -0.03152466, -0.051239014, 0.00015699863, -0.039642334, 0.022994995, 0.035583496, -0.061065674, 0.006652832, 0.025665283, -0.0637207, 0.068481445, 0.012893677, -0.07385254, 0.055114746, 0.0023708344, 0.018310547, -0.018585205, 0.03945923, 0.0020427704, -0.011169434, -0.029937744, 0.00957489, 0.013282776, 0.035064697, -0.01374054, -0.011245728, 0.053100586, -0.017837524, -0.03414917, 0.01940918, 0.053588867, -0.031463623, 0.019165039, 0.04928589, 0.017120361, -0.0446167, 0.044708252, -0.0713501, -0.016174316, 0.008720398, 0.03894043, -0.00028681755, -0.026153564, -0.032928467, -0.08026123, 0.0025939941, -0.016326904, -0.032958984, -0.02923584, -0.000582695, 0.004840851, -0.02003479, 0.0041656494, 0.0141067505, 0.0075950623, -0.044708252, -0.025299072, 0.002483368, 0.042419434, 0.0054244995, 0.030029297, -0.010284424, 0.008659363, 0.019348145, -0.028076172, 0.017501831, -0.0012683868, -0.00070142746, 0.008369446, -0.03677368, -0.048065186, -0.039154053, 0.045928955, 0.032714844, -0.06161499, -0.066711426, 0.0066184998, 0.008666992, 0.020080566, -0.0463562, 0.046142578, 0.029846191, -0.015342712, 0.016983032, -0.03186035, -0.037261963, 0.0435791, 0.023345947, -0.05404663, -0.017745972, -0.008613586, 0.008331299, -0.015213013, -0.029647827, -0.016448975, 0.024612427, -0.016464233, 0.003862381, -0.013298035, -0.029907227, -0.0051841736, -0.038238525, 0.017959595, -0.024459839, -0.019760132, -0.019638062, -0.040161133, -0.03604126, 0.010040283, 0.04309082, 0.039276123, 0.025665283, -0.013046265, 0.025634766, 0.036315918, -0.03869629, 0.062561035, -0.02017212, -0.009239197, -0.0017776489, 0.039520264, 0.03704834, -0.03451538, -0.012992859, -0.013435364, 0.007259369, 0.00868988, -0.0035533905, 0.01386261, -0.05795288, -0.06097412, 0.041168213, 0.045074463, 0.015197754, 0.017868042, 0.024917603, -0.008644104, -0.012962341, 0.002450943, 0.019317627, -0.03366089, 0.013961792, 0.0049819946, 0.021240234, 0.028442383, -0.0025730133, -0.01537323, 0.018615723, 0.038360596, -0.018096924, 0.005092621, 0.010627747, -0.012611389, 0.0748291, 0.012207031, 0.029327393, 0.011985779, -0.02330017, 0.009819031, -0.030914307, -0.018478394, -0.010765076, 0.0048179626, 3.4570694e-06, 0.032348633, 0.022872925, -0.019134521, 0.016418457, -0.0056381226, -0.0014333725, -0.012962341, -0.000688076, -0.011665344, -0.06188965, -0.015899658, 0.011054993, -0.008483887, -0.03503418, 0.045043945, 0.0061569214, -0.004459381, -0.008712769, -0.036987305, 0.03274536, 0.013092041, -0.02268982, 0.056488037, 0.0048179626, -0.027923584, -0.07324219, -0.016616821, 0.023971558, -0.02418518, -0.004146576, -0.014450073, 0.03010559, -0.0008511543, -0.011505127, -0.028808594, -0.04043579, 0.020629883, 0.01663208, -0.027908325, -0.026657104, -0.018249512, 0.03982544, 0.0126571655, -0.012084961, 0.007331848, -0.041992188, 0.004432678, 0.021408081, 0.042419434, -0.010757446, -0.001964569, -0.020309448, 0.027999878, -0.0018997192, 0.040740967, 0.016326904, 0.01007843, 0.008407593, 0.03186035, 0.035339355, -0.032073975, 0.010047913, 0.03579712, -0.024917603, 0.01210022, -0.0069084167, -0.0011634827, -0.0057792664, -0.008338928, 0.018478394, 0.01852417, 0.011543274, 0.017471313, -0.0035877228, -0.032409668, -0.04046631, 0.009788513, 0.014923096, -0.010940552, 0.009376526, -0.07745361, 0.0024814606, -0.01826477, -0.011558533, -0.036315918, -0.041229248, -0.04525757, 0.0501709, -0.048095703, -0.059509277, -0.047088623, 0.035064697, 0.02848816, -0.08282471, -0.05316162, -0.026794434, 0.021102905, -0.0024108887, 0.070495605, -0.040374756, -0.05996704, -0.058166504, 0.029541016, -0.061340332, -0.020202637, 0.021453857, 0.0031147003, 0.028289795, 0.00730896, 0.031982422, 0.08404541, 0.019332886, -0.0015878677, 0.018066406, -0.018829346, -0.054473877, 0.045532227, 0.023498535, -0.020950317, 0.049438477, 0.046539307, 0.002281189, 0.015670776, -0.012901306, -0.0017814636, -0.057922363, 0.017349243, -0.015411377, 0.0040740967, -0.007106781, -0.0146102905, 0.029953003, 0.03930664, -0.003255844, -0.0055160522, 0.0236969, -0.024414062, 0.022094727, -0.0028362274, 0.010978699, 0.0045204163, -0.00051021576, -0.005443573, -0.0047683716, -0.023117065, 0.033843994, 0.02609253, -0.037139893, 0.023513794, 0.01373291, -0.044006348, -0.0047187805, 0.024673462, 0.0058517456, 0.02279663, -0.032073975, -0.02659607, -0.004142761, -0.034820557, -0.007820129, -0.039245605, 0.004852295, 0.057525635, -0.047729492, -0.03753662, 0.01424408, -0.0020694733, 0.009376526, 0.0017442703, -0.016052246, -0.04776001, 0.012893677, 0.014335632, -0.010620117, 0.037750244, 0.008956909, -0.023345947, -0.014732361, 0.032562256, 0.020507812, 0.042297363, -0.029144287, 0.016799927, 0.013298035, 0.020248413, -0.032989502, -0.07824707, -0.048858643, 0.025177002, 0.0031490326, 0.0019254684, 0.03250122, 0.0076560974, 0.022521973, -0.0063438416, 0.02154541, -0.020904541, 0.03918457, -0.00081300735, -0.007896423, 0.029769897]}, "B07433QCTC": {"id": "B07433QCTC", "original": "Brand: SHINESTAR\nName: SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure\nDescription: Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8\" Male Flare Connector)

      1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
      2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
      3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
      4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
      5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

      Q: How do you know if you need a parallel or vertical low pressure regulator hose?
      A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

      Attention:
      1.For Outdoor Use Only.
      2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
      3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      4.Keeping the hose away from HIGH TEMPERATURE.

      Product Specification:
      Certificate : CSA
      Outlet Pressure:11\u2019\u2019W.C.
      Flow Capacity: 80000 BTU/Hr
      Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
      Please double check your appliance connection to see if it has a 3/8\u2019\u2019 Male Flare Fitting Connector.\nFeatures: \u3010Standard Connector\u3011 Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Durable & Sturdy\u3011 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank\n\u3010Control Gas Flow\u3011 The gas grill regulator and hose's Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n\u3010Perfect Length\u3011 Gives you plenty of length, allowing for flexible configurations\n", "metadata": {"Name": "SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure", "Brand": "SHINESTAR", "Description": "Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8\" Male Flare Connector)

      1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
      2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
      3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
      4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
      5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

      Q: How do you know if you need a parallel or vertical low pressure regulator hose?
      A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

      Attention:
      1.For Outdoor Use Only.
      2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
      3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      4.Keeping the hose away from HIGH TEMPERATURE.

      Product Specification:
      Certificate : CSA
      Outlet Pressure:11\u2019\u2019W.C.
      Flow Capacity: 80000 BTU/Hr
      Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
      Please double check your appliance connection to see if it has a 3/8\u2019\u2019 Male Flare Fitting Connector.", "Features": "\u3010Standard Connector\u3011 Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Durable & Sturdy\u3011 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank\n\u3010Control Gas Flow\u3011 The gas grill regulator and hose's Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n\u3010Perfect Length\u3011 Gives you plenty of length, allowing for flexible configurations", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.00016283989, -0.019424438, -0.046966553, -0.04940796, -0.0069274902, -0.014381409, -0.0059127808, 0.0340271, -0.016159058, 0.0068588257, -0.052490234, 0.016601562, 0.018096924, -0.018081665, 0.03753662, -0.037841797, 0.03173828, 0.020599365, 0.009742737, -0.014213562, -0.004459381, 0.0066070557, -0.0084991455, 0.113342285, 0.003545761, -0.018936157, 0.089660645, 0.0013284683, 0.0060157776, -0.008171082, 0.026550293, -0.030700684, 0.028640747, 0.00060129166, -0.019058228, -0.06149292, -0.014305115, -0.0077056885, -0.025238037, -0.00039887428, 0.025100708, -0.024475098, -0.027679443, -0.0074539185, -0.018203735, -0.039245605, 0.029174805, -0.036468506, 0.02444458, -0.045135498, -0.021957397, 0.039276123, 0.0012702942, -0.041778564, -0.016601562, -0.01979065, -0.0184021, -0.00097227097, 0.007663727, 0.013687134, -0.0012435913, 0.013893127, 0.005996704, 0.0019931793, -0.0184021, 0.016693115, 0.105529785, -0.003534317, 0.0039482117, -0.031341553, -0.007144928, 0.036895752, -0.00944519, -0.016738892, -0.05419922, 0.020965576, 0.0060806274, -0.032470703, 0.010627747, -0.00069618225, -0.015129089, -0.053741455, 0.024856567, 0.008895874, 0.016906738, 0.038970947, -0.01977539, -0.009262085, -0.03463745, -0.045410156, -0.024490356, -0.0099487305, -0.039276123, -0.0024681091, -0.026550293, -0.0104522705, -0.023391724, -0.0758667, 0.036010742, -0.003238678, 0.035491943, -0.03591919, 0.015472412, 0.019958496, 0.00051116943, 0.07397461, -0.0042648315, -0.009094238, 0.009124756, 0.008834839, 0.002374649, -0.025741577, 0.013084412, -0.031921387, -0.029907227, 0.00027108192, 0.008773804, -0.03451538, 0.021453857, -0.076538086, -0.02947998, -0.020858765, 0.03439331, -0.03994751, 0.026794434, -0.0010213852, -0.026107788, 0.0063972473, -0.06384277, 0.017669678, -0.0044174194, 0.008216858, 0.052703857, 0.09277344, 0.02130127, -0.007949829, 0.024230957, 0.036621094, 0.029922485, -0.018661499, -0.00068330765, -0.01537323, -0.0073509216, 0.01260376, 0.025497437, 0.021118164, 0.022064209, 0.0010251999, 0.008239746, -0.023651123, 0.017684937, -0.035491943, 0.04925537, 0.015625, -0.049316406, 0.005542755, 0.026992798, -0.024993896, -0.02470398, -0.058563232, -0.02859497, -0.026046753, -0.0029029846, -0.0017347336, -0.039215088, 0.03237915, 0.027236938, 0.002374649, 0.019348145, 0.09063721, 0.0087509155, 0.03366089, 0.0135269165, 0.015159607, -0.010124207, -0.034240723, -0.039001465, 0.05316162, 0.07305908, -0.15759277, -0.08758545, -0.064208984, 0.111816406, -0.042053223, 0.01828003, -0.040008545, 0.01084137, -0.032104492, -0.010559082, 0.01991272, -0.005001068, 0.027786255, 0.012817383, -0.056732178, 0.021774292, 0.023361206, -0.02772522, 0.01737976, -0.0053977966, -0.0037784576, -0.052520752, 0.024841309, -0.013931274, 0.013114929, 0.06402588, -0.0055007935, 0.012184143, 0.01979065, 0.0357666, 0.022232056, -0.007598877, -0.022857666, -0.0018482208, -0.02583313, -0.028808594, -0.017105103, 0.017333984, -0.03213501, 0.019866943, -0.049743652, 0.06970215, 0.018692017, 0.01991272, 0.05908203, -0.012542725, -0.015823364, -0.016738892, 0.0016937256, -0.02192688, -0.00472641, 0.010345459, 0.04156494, 0.08892822, 0.022781372, -0.03265381, 0.046081543, 0.078430176, 0.042175293, -0.043182373, -0.0076026917, 0.008384705, -0.07232666, -0.059295654, -0.008842468, -0.052093506, -0.08062744, -0.014518738, 0.016448975, -0.038024902, 0.0012025833, 0.041534424, 0.0031738281, 0.017868042, -0.0076789856, -0.02810669, 0.009849548, -0.013206482, 0.020828247, -0.04119873, 0.027679443, -0.002576828, 0.0035629272, 0.013153076, -0.028579712, 0.01550293, 0.026657104, 0.031402588, 0.01423645, -0.0034770966, 0.01008606, 0.0026988983, -0.0030994415, -0.011627197, -0.028015137, -0.053527832, 0.016036987, -0.04034424, 0.061340332, -0.037902832, -0.028533936, 0.016738892, 0.016220093, -0.018966675, 0.0019950867, 0.026550293, 0.038909912, 0.013580322, 0.027008057, 0.02998352, 0.0047683716, 0.045959473, -0.018325806, -0.026687622, 0.03161621, -0.013015747, -0.044677734, 0.012313843, -0.012924194, 0.020477295, -0.014984131, 0.0071525574, 0.053741455, -0.008857727, 0.015090942, 0.0068130493, -0.014450073, 0.023864746, 0.018310547, 0.0044403076, -0.0036792755, -0.044403076, 0.01828003, 0.020553589, -0.028442383, 0.047851562, 0.035949707, 0.003206253, 0.032989502, 0.062072754, 0.0725708, -0.004951477, 0.025878906, -0.007873535, 0.013786316, 0.03652954, -0.01638794, -0.006137848, -0.006565094, -0.028335571, 0.02746582, 0.021896362, 0.00043725967, -0.0024681091, 0.03781128, 0.015304565, 0.013702393, -0.009002686, 0.060272217, -0.013183594, -0.041107178, -0.023208618, -0.05215454, -0.004081726, 0.0017251968, -0.038757324, -0.016845703, 0.039001465, 0.009933472, -0.014717102, -0.019866943, 0.022994995, -0.033081055, 0.009666443, -0.02331543, 0.010345459, 0.023483276, -0.021240234, -0.035339355, 0.010879517, -0.055908203, -0.00756073, -0.053741455, -0.058135986, -0.011528015, 0.071899414, 0.0055160522, -0.040100098, -0.026977539, -0.0055274963, -0.0008864403, 0.017349243, -0.023040771, -0.0056915283, -0.018615723, -0.009605408, -0.0057144165, 0.02168274, -0.019180298, 0.026367188, 0.021087646, 0.014579773, 0.012084961, 0.0022029877, -0.0018548965, -0.0014371872, 0.027023315, 0.08666992, 0.022338867, 0.020553589, -0.041625977, 0.013130188, 0.026779175, -0.039886475, -0.0075683594, -0.015975952, -0.023910522, 0.018341064, 0.022644043, -0.03805542, -0.0066986084, -0.06185913, 0.02470398, -0.0045394897, -0.0045928955, 0.0063171387, -0.10107422, -0.01159668, -0.063964844, 0.021820068, 0.043701172, -0.021240234, 0.015312195, -0.02368164, 0.013687134, -0.019821167, 0.013153076, -0.02130127, -0.009635925, -0.024993896, 0.016098022, 0.048553467, -0.06286621, 0.022262573, 0.04067993, -0.038879395, -0.02204895, 0.011390686, 0.026519775, -0.022140503, 0.043395996, -0.0035171509, -0.014007568, -0.037872314, -0.021591187, -0.0028190613, 0.01751709, 0.016143799, -0.040893555, 0.025970459, -0.017578125, -0.07757568, -0.014205933, 0.00762558, 0.0025291443, 0.0045814514, -0.035339355, -0.006416321, -0.05102539, 0.009048462, -0.06854248, 0.018844604, -0.005252838, 0.055755615, 0.030929565, 0.0047721863, 0.10827637, -0.00598526, 0.038208008, 0.013442993, 0.0006842613, 0.0034217834, -0.035095215, 0.04916382, 0.017547607, 0.021255493, -0.039794922, 0.005622864, 0.0110321045, 0.0082092285, -0.0054359436, 0.0020160675, 0.035583496, 0.007774353, -0.017105103, -0.00026917458, 0.0018701553, 0.02053833, -0.03201294, 0.04650879, 0.00027656555, -0.038757324, 0.016723633, -0.09387207, 0.061187744, 0.042785645, -0.024047852, 0.03930664, 0.0049552917, 0.006038666, 0.058380127, 0.0579834, 0.021057129, 0.034057617, 0.038970947, 0.012710571, -0.009979248, 0.005443573, -0.033325195, 0.031021118, -0.010475159, 0.0007185936, 0.018692017, 0.0040397644, -0.05319214, -0.024108887, 0.0038318634, 0.019256592, -0.011245728, -0.004108429, -0.01423645, 0.0021457672, -0.029281616, -0.014427185, 0.007335663, -0.027923584, -0.04055786, 0.031402588, -0.05871582, -0.00030708313, 0.019821167, 0.015220642, 0.005832672, 0.017791748, 0.028076172, 0.01776123, 0.010391235, -0.031982422, -0.00028038025, -0.019332886, 0.018310547, 0.03604126, 0.003162384, 0.00014340878, -0.020050049, 0.0004131794, -0.002161026, -0.030395508, 0.044158936, 0.0035953522, -0.033569336, -0.051727295, -0.031311035, 0.03475952, 0.0037326813, 0.0038108826, -0.055023193, 0.020401001, 0.00756073, -0.05307007, 0.00016725063, 0.011932373, 0.01826477, -0.03503418, -0.028930664, -0.04473877, 0.029312134, -0.04058838, -0.001950264, 0.0003361702, 0.031280518, -0.011131287, -0.002866745, -0.05606079, 0.02444458, -0.07122803, 0.0020179749, 0.036376953, 0.0143585205, -0.010971069, -0.015159607, -0.01852417, 0.009269714, 0.034240723, -0.034118652, 0.01184845, -0.03286743, -0.017684937, 0.008987427, 0.028518677, 0.043060303, -0.016967773, 0.0055503845, -0.020645142, -0.020217896, -0.09893799, 0.034362793, 0.052490234, -0.055877686, -0.047668457, 0.011772156, 0.11022949, 0.007095337, 0.015716553, 0.011634827, 0.0069847107, -0.001996994, -0.026626587, -0.06945801, 0.0045661926, 0.0030460358, -0.031982422, 0.015571594, -0.00070762634, -0.014724731, 0.03955078, 0.062561035, 0.012641907, -0.0037517548, -0.008918762, 0.020690918, -0.002779007, -0.0008792877, -0.027282715, 0.016525269, -0.027938843, 0.008735657, -0.043273926, 0.038024902, 0.04647827, -0.0062332153, 0.018341064, -0.017105103, 3.540516e-05, -0.014724731, -0.011749268, -0.028671265, 0.021133423, -0.021835327, -0.029830933, 0.02986145, -0.018814087, 0.0054473877, -0.017730713, 0.029159546, -0.0030956268, -0.040527344, -0.01826477, -0.041107178, -0.0011901855, 0.0038394928, 0.0014438629, 0.004234314, -0.025497437, 0.007522583, 0.03439331, -0.014442444, -0.0026187897, -0.0071258545, -0.022964478, 0.0099487305, 0.0053367615, -0.0035438538, -0.024658203, -0.0121536255, 0.0064468384, -0.0013256073, 0.02947998, 0.04006958, -0.008155823, -0.02267456, -0.00793457, 0.013702393, -0.0045204163, -0.05404663, 0.0068969727, 0.0052223206, 0.012451172, 0.032928467, -0.01638794, 0.03326416, 0.01436615, -0.021621704, -0.0004720688, 0.0027809143, 0.0068206787, -0.020584106, 0.092163086, 0.009277344, 0.018615723, -0.06402588, 0.016464233, -0.040740967, 0.011154175, 0.009262085, -0.032806396, 0.0071105957, -0.0579834, 0.0059127808, 0.008674622, -0.0016050339, -0.037322998, -0.0019111633, 0.009315491, -0.028747559, -0.00819397, 0.0236969, -0.008796692, 0.037078857, 0.0018568039, -0.043151855, 0.037109375, 0.038269043, -0.06323242, -0.008605957, -0.0069732666, -0.010383606, -0.028335571, -0.023468018, 0.034179688, 0.017425537, -0.0011796951, -0.013092041, 0.04046631, 0.021392822, -0.0463562, -0.024810791, -0.014137268, 0.0012102127, -0.024429321, 0.059539795, -0.032287598, -0.051757812, 0.009521484, 0.018630981, 0.01272583, 0.008590698, -0.04244995, -0.010734558, -0.016159058, -0.00894165, 0.046691895, -0.050720215, 0.06866455, -0.011993408, -0.04800415, -0.058166504, 0.015541077, -0.041809082, -0.04171753, 0.062805176, 0.07324219, 0.0034828186, 0.014022827, 0.006591797, -0.028152466, 0.008293152, 0.005420685, -0.026535034, -0.05947876, -0.03869629, -0.03112793, 0.016418457, -0.021072388, -0.017608643, 0.04434204, 0.0038700104, -0.016067505, -0.0491333, -0.012145996, 0.0049476624, -0.018859863, 0.0143966675, -0.005340576, -0.0023975372, -0.006641388, 0.010940552, -0.052642822, -0.035217285, 0.0060272217, 0.020980835, 0.0039405823, 0.056488037, 0.011299133, 0.040161133, -0.070739746, -0.0236969, 0.00554657, -0.027648926, -0.014694214, 0.009994507, 0.0052757263, 0.040649414, -0.0077781677, 0.0017032623, 0.023635864, 0.02671814, -0.00052785873, -0.016830444, -0.03945923, -0.070495605, 0.021392822, 0.0368042, -0.013343811, 0.029907227, -0.0007238388, -0.025543213, 0.0007004738, -0.020065308, -0.020095825, -0.041168213, -0.006362915, -0.015068054, -0.03390503, 0.020477295, -0.026885986, 0.03250122, -0.030563354, 0.041107178, -0.024765015, 0.02796936, -0.010055542, 0.0013370514, 0.019302368, -0.045959473, -0.00016713142, -0.040130615, 0.00016474724, -0.011711121, 0.025299072, -0.019104004, -0.0040397644, 0.040802002, 0.020706177, -0.013092041, -0.025787354, 0.026138306, 0.03677368, -0.06298828, -0.0053863525, -0.0060310364, 0.010643005, -0.004863739, -0.018188477, -0.014419556, -0.007545471, 0.024810791, 0.023132324, 0.034973145, -0.016052246, 0.031036377, -0.02166748, 0.0022392273, -0.0335083, -0.009613037, -0.014801025, -0.0021781921, 0.0034427643, 0.0054969788, -0.05105591, 0.00868988, 0.03668213, 0.010536194, 0.018585205, -0.02507019, 0.023498535, -0.0077400208, -0.009162903, -0.03741455, -0.048980713, -0.024902344, 0.012191772, -0.006538391, 0.0047836304, -0.01574707, 0.00819397, -0.03062439, -0.03173828, 0.013053894, -0.032470703, -0.013435364, 0.019836426, -0.0016155243, -0.08880615, -0.060821533, -0.017150879, -0.034851074, -0.008773804, 0.042022705, -0.00566864, 0.03668213, 0.035705566, -0.010154724, 0.060638428, 0.0076942444, 0.019500732, -0.03994751, 0.026626587, 0.013771057, -0.016723633, -0.0034103394, -0.008399963, -0.014892578, 0.010650635, 0.0010089874, -0.016662598, 0.00497818, 0.008903503, 0.0047912598, -0.004295349, -0.012901306, 0.009605408, -0.01864624, 0.015052795, -0.02796936, 0.02218628, -0.050231934, -0.07336426, -0.003786087, 0.008369446, -0.06021118, 0.052368164, 0.031219482, -0.016204834, -0.003068924, -0.005493164, -0.021881104, -0.03439331, -0.010139465, 0.011482239, 0.04071045, 0.009933472, 0.06384277, -0.008956909, -0.06402588, -0.061157227, 0.020492554, -0.048339844, 0.019012451, -0.025390625, 0.04043579, 0.035583496, 0.007751465, 0.019424438, 0.056488037, 0.01739502, -0.0004594326, 0.014022827, -0.032470703, 0.0020370483, -0.0067100525, 0.008506775, -0.021331787, -0.05279541, 0.0004775524, -0.0055389404, 0.024047852, 0.044830322, -0.00121212, -0.026153564, -0.017669678, -0.032287598, -0.02331543, -0.035949707, 0.03237915, 0.007041931, 0.027816772, -0.0070877075, 0.024642944, 0.02609253, -0.009132385, 0.042877197, -0.011985779, 0.040283203, -0.021591187, -0.05859375, -0.042388916, -0.024353027, 0.023788452, 0.02470398, -0.053222656, 0.0012359619, 0.010818481, -0.026687622, 0.015716553, 0.022842407, -0.0016765594, 0.03930664, 0.0055122375, 0.025665283, 0.013168335, -0.049316406, -0.010314941, -0.043060303, -0.041900635, -0.005870819, -0.0019874573, -0.01966858, -0.031982422, -0.017837524, 0.01574707, -0.038848877, -0.02330017, -0.03475952, -0.040740967, 0.032562256, 0.020904541, 0.00982666, 0.012451172, 0.018966675, -0.014305115, -0.032592773, 0.009422302, 0.025283813, -0.0031433105, -0.012413025, 0.004623413, 0.013137817, 0.052520752, -0.028656006, -0.06903076, -0.05404663, 0.023162842, 0.008033752, 0.0027332306, 0.06210327, -0.012565613, -0.004016876, 0.02835083, -0.06732178, -0.045410156, -0.017303467, 0.04928589, 0.0012989044, 0.0017318726]}, "B07CZ8H9V4": {"id": "B07CZ8H9V4", "original": "Brand: Goplus\nName: Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)\nDescription: Description
      This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

      Features
      Heavy duty cast iron body
      Powder coating makes it is waterproof and anti-rust
      Equipped with a cast iron head, outputs a whopping BTU of 100000.
      Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
      Adjustable firepower make your cook more delicious
      Removable feet make it can be easily carried or stored
      External valve CSA certification

      Specifications
      Finish: Black
      Product Type: Single burner
      Material: Cast iron
      Item Dimensions:15.5\u201dx15.5\u201dx17\u201d
      Item Weight:13lb
      Hose Dimensions:0.5\u201dx51\u201d
      Max: 250 Psig
      BTU : 100000
      Package includes:
      1 x Single burner stove
      1 x Instruction\nFeatures: Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up.\nCast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious.\nCooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time.\nDetachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage.\nSafety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "metadata": {"Name": "Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)", "Brand": "Goplus", "Description": "Description
      This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

      Features
      Heavy duty cast iron body
      Powder coating makes it is waterproof and anti-rust
      Equipped with a cast iron head, outputs a whopping BTU of 100000.
      Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
      Adjustable firepower make your cook more delicious
      Removable feet make it can be easily carried or stored
      External valve CSA certification

      Specifications
      Finish: Black
      Product Type: Single burner
      Material: Cast iron
      Item Dimensions:15.5\u201dx15.5\u201dx17\u201d
      Item Weight:13lb
      Hose Dimensions:0.5\u201dx51\u201d
      Max: 250 Psig
      BTU : 100000
      Package includes:
      1 x Single burner stove
      1 x Instruction", "Features": "Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up.\nCast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious.\nCooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time.\nDetachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage.\nSafety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03201294, -0.024169922, -0.02758789, 0.016448975, -0.02470398, -0.014442444, 0.0049934387, 0.00011360645, -0.061462402, 0.012741089, 0.005756378, 0.030685425, -0.0044021606, -0.03778076, 0.042388916, -0.033996582, 0.0038070679, -0.026428223, -0.06793213, -0.035186768, -0.012283325, -0.022567749, -0.079956055, 0.091552734, 0.012664795, 0.0015897751, -0.027679443, 0.0030593872, -0.007789612, -0.010559082, 0.023742676, 0.022140503, 0.03062439, 0.0039978027, -0.033966064, -0.06384277, -0.03692627, -0.008956909, -0.042907715, 0.01763916, 0.009254456, -0.011077881, -0.031585693, 0.018005371, -0.033355713, -0.027008057, 0.014602661, -0.017044067, 5.7160854e-05, 0.010749817, -0.0037555695, -0.018722534, 0.013519287, -0.02508545, -0.016235352, -0.011192322, 0.014808655, -0.014305115, -0.0039863586, -0.04812622, -0.008079529, 0.0017051697, 0.04272461, 0.04812622, -0.023162842, 0.012908936, 0.04916382, -0.0013542175, 0.05630493, -0.040802002, -0.046875, 0.04248047, 0.016967773, 0.027542114, -0.05014038, -0.08355713, 0.056640625, -0.03552246, 0.02279663, -0.0015192032, -0.02571106, 0.026443481, -0.013893127, -0.044036865, -0.0063056946, -0.047790527, -0.015571594, 0.0044288635, -0.018417358, -0.022445679, -0.009902954, -0.02041626, -0.056884766, 0.014305115, 0.015838623, -0.029632568, -0.07318115, -0.103637695, 0.033416748, 0.022003174, 0.05368042, -0.04586792, 0.039978027, 0.017684937, 5.5015087e-05, 0.090148926, 0.005645752, 0.05343628, 0.021560669, -0.01789856, 0.015975952, -0.015342712, -0.013626099, -0.008605957, -0.009140015, 0.0018777847, -0.039276123, 0.02772522, 0.0055885315, 0.0051460266, -0.025222778, -0.029815674, 0.013885498, 0.053894043, 0.012275696, 0.008216858, 0.011375427, -0.008979797, -0.04446411, 0.01525116, -0.017730713, 2.3841858e-05, 0.013801575, 0.05505371, -0.0054855347, -0.007835388, 0.009124756, -0.005268097, 0.028259277, -0.0074043274, -0.022140503, -0.024261475, 0.024856567, 0.01751709, 0.00030946732, 0.020584106, 0.012046814, 0.012619019, 0.012275696, -0.06604004, 0.024917603, -0.0115737915, 0.015571594, 0.03668213, -0.0024051666, -0.005241394, 0.05343628, -0.031082153, -0.0043754578, -0.05319214, -0.03111267, -0.02217102, -0.0016946793, -0.009880066, -0.043426514, 0.04550171, -0.0070495605, -0.0051879883, 0.0074806213, 0.0141067505, -0.021438599, 0.06317139, 0.007888794, 0.008216858, 0.0072517395, -0.020858765, -0.041778564, 0.0574646, 0.074157715, -0.10864258, -0.07531738, -0.05899048, 0.13671875, -0.04711914, -0.033081055, -0.01701355, 0.008308411, -0.02130127, 0.01612854, -0.0065994263, 0.051208496, 0.018005371, -0.034484863, 0.00046157837, 0.025024414, 0.02909851, -0.04837036, 0.00062561035, -0.0023345947, -0.011039734, -0.0065231323, -0.0053710938, 0.012229919, -0.0135650635, -0.038513184, -0.0140686035, -0.008811951, 0.016113281, -0.010253906, 0.015670776, 0.011985779, -0.014518738, 0.023452759, -0.09423828, -0.019317627, -0.008399963, 0.0063323975, 0.03945923, 0.006401062, 0.025436401, 0.032928467, -0.023330688, 0.03125, 0.044433594, 0.039611816, 0.006008148, -0.015281677, -0.00086545944, 0.02116394, 0.025344849, -0.05218506, 0.02168274, 0.027130127, 0.010040283, -0.010498047, 0.028701782, 0.056671143, 0.02368164, -0.015541077, -0.009712219, -0.01727295, -0.047027588, -0.043792725, 0.024856567, -0.016723633, 0.010009766, 0.0071411133, 0.01977539, -0.0093688965, 0.0017213821, -0.043182373, 0.008552551, 0.056732178, -0.016296387, -0.009735107, 0.05050659, -0.03692627, 0.024108887, -0.02268982, 0.005657196, -0.009567261, 0.035583496, 0.032348633, 0.00089502335, 0.005065918, -0.01637268, 0.016448975, 0.0046043396, -0.021331787, 0.0025348663, 0.024475098, 0.014381409, -0.003736496, -0.008392334, 0.0055236816, 0.001004219, -0.009864807, 0.02217102, -0.010353088, -0.01725769, 0.017562866, 0.02166748, -0.027008057, -0.0063323975, 0.019638062, 0.019485474, -0.010940552, 0.028793335, -0.01272583, 0.012680054, 0.03366089, -0.012779236, -0.0026111603, -0.023010254, 0.015007019, -0.02168274, 0.08331299, 0.020370483, 0.01890564, -0.025039673, 0.02331543, 0.03062439, -0.07476807, 0.03262329, -0.021408081, -0.0050849915, -0.006916046, -0.0084991455, -0.029205322, -0.04724121, -0.0062026978, -0.005832672, 0.04324341, -0.00020301342, 0.07147217, 0.01675415, 0.022460938, 0.055633545, 0.02407837, -0.014205933, -0.01259613, -0.001364708, 0.025863647, -0.009300232, 0.019683838, -0.032043457, -0.010269165, -0.008018494, -0.034118652, 0.019699097, 0.01020813, -0.018493652, -0.0019931793, 0.020324707, 0.0010280609, -0.0010108948, -0.006664276, 0.00818634, -0.015090942, -0.036254883, -0.008583069, 0.017120361, 0.005970001, -0.04034424, -0.025146484, -0.022766113, 0.00046563148, -0.0012750626, -0.033721924, -0.00029206276, 0.009628296, -0.0067825317, 0.04812622, -0.006122589, 0.012329102, -0.012756348, -0.05596924, -0.04852295, -0.06390381, -0.105895996, -0.012283325, -0.021942139, -0.043701172, 0.017364502, 0.037841797, 0.0052719116, -0.052520752, 0.013137817, -0.045898438, 0.019454956, 0.022659302, 0.008255005, -0.0692749, -0.034179688, -0.06719971, 0.01360321, 0.051696777, 0.0056114197, 0.014549255, 0.023391724, 0.050567627, 0.039520264, -0.022277832, -0.035888672, 0.03112793, 0.036621094, 0.07598877, 0.046081543, 0.025527954, -0.03857422, 0.024658203, 0.026870728, -0.05154419, -0.01751709, 0.019302368, 0.019104004, -0.013923645, -0.044281006, -0.0423584, -0.030761719, -0.0423584, 0.024993896, 0.014213562, -0.028915405, 0.0034942627, -0.09552002, -0.009552002, -0.04586792, -6.5386295e-05, 0.012718201, -0.0061531067, 0.029571533, 0.0017375946, 0.02305603, 0.015914917, -0.026397705, 0.07611084, -0.00894165, 0.02368164, -0.04257202, 0.0473938, -0.07745361, 0.049713135, 0.03567505, -0.031311035, 0.050231934, -0.033203125, 0.016525269, -0.024673462, 0.037353516, 0.002588272, 0.0035552979, -0.0078048706, -0.01171875, -0.038208008, 0.012535095, 0.012031555, -0.009849548, 0.04550171, -0.03213501, -0.013694763, -0.018356323, 0.010025024, 0.018035889, -0.0033607483, -0.002784729, -0.022644043, -0.012687683, -0.0063552856, -0.020431519, 0.026794434, 0.00080633163, 0.041870117, 0.025665283, -0.006515503, 0.095825195, 0.0018424988, 0.035827637, -0.012771606, 0.00440979, 0.011672974, -0.02923584, 0.027008057, 0.0066719055, -0.0028438568, -0.033325195, 0.008758545, 0.023162842, 0.0041122437, -0.017852783, 0.0045814514, 0.054748535, 0.018157959, -0.01474762, 0.00012719631, -0.0039978027, 0.027023315, 0.02420044, -0.02999878, -0.030334473, -0.078063965, 0.0023860931, -0.066833496, 0.064819336, 0.01939392, -0.017059326, 0.08758545, 0.0803833, -0.009399414, 0.02381897, 0.021087646, -0.002363205, 0.010627747, 0.016693115, -0.0146102905, 0.0032634735, 0.003211975, -0.0064582825, 0.0037193298, 0.0029087067, -0.019332886, -0.0042877197, -0.012397766, -0.016296387, -0.045074463, -0.0018758774, 0.00894928, -0.0362854, 0.0061149597, -0.055877686, -0.028060913, -0.031280518, 0.015388489, -0.0054244995, -0.005332947, 0.025390625, -0.02709961, -0.01171875, -0.018463135, -0.007843018, -0.007751465, 0.017425537, 0.00028204918, 0.029144287, 0.016815186, -0.015113831, -0.0178833, 0.026977539, -0.022033691, 0.045959473, 0.033111572, 0.0005135536, 0.04525757, -0.015625, -0.012039185, -0.005302429, -0.022384644, 0.024002075, -0.0057144165, -0.061767578, 0.0013160706, 0.04144287, 0.01864624, -0.029556274, 0.029418945, -0.039123535, 0.012145996, 0.011665344, -0.0184021, 0.024032593, -0.026428223, -0.028762817, -0.05307007, -0.036254883, 0.0075263977, 0.0037155151, 0.010070801, 0.0004093647, -0.04159546, -0.0134887695, -0.010040283, 0.02116394, -0.015563965, -0.0048942566, -0.008102417, 0.016143799, 0.004436493, -0.018936157, 0.032348633, -0.029342651, -0.012016296, -0.0044822693, 0.06359863, -0.03543091, 0.016296387, -0.033721924, -0.01398468, 0.0037956238, 0.022384644, 0.029129028, -0.019836426, 0.013618469, -0.029541016, -0.009422302, -0.037994385, 0.015396118, 0.032104492, -0.049560547, -0.016021729, 0.0040130615, 0.06506348, -0.01524353, 0.047729492, -0.040252686, -0.01210022, -0.052734375, 0.028182983, -0.055358887, -0.064575195, 0.00028204918, -0.050872803, 0.014526367, 0.00048422813, -0.024169922, 0.030654907, 0.030899048, 0.0034542084, -0.05368042, -0.024230957, 0.020751953, 0.0060157776, 0.045532227, -0.03677368, -0.015472412, -0.05090332, 0.04989624, -0.030349731, 0.03366089, 0.03741455, -0.0003809929, 0.00869751, 0.0014915466, 0.00079870224, -0.017547607, -0.008026123, -0.009140015, 0.007865906, -0.032318115, -0.03277588, 0.029190063, -0.029785156, 0.007030487, 0.008575439, -0.012397766, 0.045074463, -0.01776123, 0.015083313, 0.029449463, 0.029144287, 0.038726807, -0.018951416, 0.028686523, 0.0031318665, -0.035369873, 0.05105591, -0.031982422, -0.03564453, 0.0129776, -0.01586914, -0.019241333, 0.028015137, 0.0038795471, -0.05505371, 0.02557373, 0.025817871, -0.0047950745, -0.029174805, 0.025100708, 0.018218994, 0.00063848495, -0.05718994, 0.034454346, -0.013442993, -0.018035889, 0.062469482, -0.008766174, -0.016677856, 0.040893555, -0.034454346, 0.080322266, 0.003414154, -0.015144348, 0.01890564, -0.015136719, -0.0051956177, -0.04196167, 0.021240234, -0.006362915, -0.026977539, -0.017532349, 0.02154541, 0.027145386, 0.023086548, 0.02760315, -0.05065918, 0.042877197, -0.054138184, -0.023880005, -5.3167343e-05, 0.092163086, -0.0049552917, -0.0037269592, 0.029083252, 0.0061416626, -0.06323242, -0.0023212433, -0.029678345, 0.008239746, -0.027786255, -0.007095337, 0.026412964, 0.0054016113, -0.01058197, -0.011276245, -0.026931763, 0.014083862, 0.0021438599, 0.018478394, 0.0019197464, -0.007537842, 0.012290955, 0.030181885, 0.047790527, 0.015075684, -0.026565552, -0.04711914, -0.046142578, 0.006793976, -0.042144775, 0.048034668, -0.0014638901, 0.02168274, 0.010902405, 0.0040512085, 0.035186768, -0.051330566, -0.046844482, 0.0033359528, 0.024002075, 0.023666382, -0.01171875, -0.051605225, 0.08001709, -0.030059814, -0.058380127, 0.006454468, 0.05984497, -0.011711121, 0.014442444, 0.079956055, 0.026687622, 0.0054512024, 0.026245117, 0.00630188, -0.03149414, -0.0010690689, 0.010566711, -0.072021484, -0.007446289, -0.025909424, 0.029388428, -0.014259338, 0.00074768066, -0.029327393, 0.049194336, -0.01184082, -0.002401352, -0.018966675, -0.00856781, -0.0042037964, 0.01838684, 0.0008049011, -0.016143799, -0.010101318, -0.039123535, 0.0006661415, -0.009971619, -0.032836914, -0.023757935, 0.017944336, 0.031585693, -0.005760193, -0.006248474, -0.009689331, 0.009056091, 0.03994751, 0.016601562, -0.029678345, -0.0023345947, -4.8220158e-05, 0.00699234, 0.0006008148, -0.002861023, 0.023910522, -0.027633667, -0.02319336, 0.034179688, 0.03793335, -0.046875, 0.025985718, 0.06628418, 0.03793335, 0.013008118, 0.015426636, 0.04046631, 0.02243042, -0.038360596, 0.0019702911, 0.023605347, -0.020095825, -0.021835327, 0.011100769, -0.06414795, 0.030807495, -0.029251099, 0.0029525757, -0.020080566, 0.060516357, -0.038909912, 0.030014038, -0.0035533905, -0.012367249, 0.017807007, -0.03012085, 0.04248047, -0.022628784, 0.006565094, 0.011764526, -0.026687622, -0.032806396, 0.032165527, 0.046051025, -0.0340271, 0.040771484, -0.0446167, 0.04196167, 0.023391724, -0.099731445, 0.0073394775, -0.057495117, -0.015640259, -0.026031494, -0.05279541, -0.027694702, 0.006832123, 0.024749756, -0.023666382, 0.013755798, -0.0014257431, 0.024719238, 0.012886047, 0.05319214, -0.04168701, -0.008972168, 0.01864624, -0.0017032623, 0.020629883, -0.012268066, -0.022613525, -0.0079193115, 0.046875, -0.021957397, -0.03540039, 0.012931824, 0.03149414, 0.008712769, -0.004501343, -0.019363403, -0.015159607, 0.06964111, 0.02960205, -0.010147095, -0.0054512024, 0.0065956116, 0.044128418, 0.020233154, -0.03111267, 0.02708435, -0.06817627, 0.04260254, 0.028762817, 0.052337646, -0.0025539398, -0.039916992, -0.038238525, -0.003276825, 0.0016155243, 0.0013723373, -0.024810791, -0.0036468506, 0.0016584396, -0.023086548, 0.03540039, -0.02003479, 0.012031555, -0.054229736, 0.017974854, 0.00674057, 0.037750244, -0.008598328, 0.032043457, -0.0067329407, -0.0034599304, 0.060577393, -0.01448822, 0.006877899, 0.016326904, -0.013824463, -0.021560669, 0.0055351257, 0.002658844, -0.012168884, 0.022232056, -0.045715332, 0.02192688, 0.0016422272, -0.009887695, -0.019256592, -0.005580902, -0.0069503784, 0.04107666, 0.029220581, -0.012794495, -0.01146698, -0.012802124, 0.0011968613, -0.033050537, 0.0076179504, 0.008293152, 0.05618286, 0.020004272, 0.062316895, -0.015106201, -0.078308105, -0.062072754, 0.036499023, -0.056396484, -0.031433105, 0.0052719116, 0.023849487, 0.025756836, 0.006038666, 0.004878998, 0.055877686, 0.018096924, -0.0062713623, 0.0069847107, -0.037353516, -0.037872314, 0.033599854, -0.0050621033, 0.013999939, 0.021606445, 0.050231934, -0.0057029724, 0.027786255, -0.0019350052, -0.00806427, -0.109436035, -0.024108887, -0.05609131, -0.012954712, -0.031829834, -0.0038890839, 0.028656006, 0.0037441254, -0.04486084, 0.032409668, 0.033447266, 0.05532837, 0.04562378, -0.030731201, 0.019561768, -0.035980225, -0.060546875, -0.039978027, -0.024017334, 0.01928711, -0.025314331, -0.013252258, -0.014701843, 0.02909851, -0.0022888184, -0.008651733, 0.025222778, -0.01197052, 0.0098724365, -0.0071983337, 0.010307312, 0.007583618, -0.021850586, -0.0017538071, -0.04031372, 0.0007147789, -0.0053215027, -0.019226074, -0.002872467, 0.0014533997, -0.032684326, 0.021896362, -0.017562866, -0.017715454, -0.013648987, -0.046051025, 0.018630981, 0.046295166, 0.0038528442, 0.039031982, -0.015464783, -0.026397705, -0.04309082, 0.0036258698, 0.027282715, 0.0026550293, -0.04159546, 0.040100098, 0.03302002, 0.03186035, -0.030517578, -0.04421997, -0.044647217, 0.00806427, -0.0040130615, 0.016571045, 0.027252197, -0.00031614304, 0.02659607, 0.059814453, -0.022613525, 0.010597229, 0.012077332, 0.044525146, -0.002122879, 0.00233078]}, "B088CYL9WB": {"id": "B088CYL9WB", "original": "Brand: Grand patio\nName: Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table\nDescription: This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

      As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

      The fire pit table has solid construction and is easy to assemble.

      40,000 BTU propane gas fire pit, square steel firebowl.

      Note:
      The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
      Lava rocks shown in photos are decoration only, and are NOT included.
      Batteries: 1 AA batteries required (NOT included).

      Product Specifications:
      Chair materials: Powder-coated steel, olefin fabric
      Chairs size: 27.5\" (W) x 30.5\" (D) x 33.7\" (H)
      Load of chair: 200lbs-300 lbs
      Chair package Includes: 4 Chairs, tools needed, assembly guide

      Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
      Firetable size: 31.8\" (L) x 31.8\" (W) x 24.2\" (H)
      Firetable package included: 1 x 32 inch gas fire pit table

      Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

      Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.\nFeatures: FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we'll sort you out in 24 hours.\nCOMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces.\nSTURDY & DURABLE: Chairs and table's frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles.\nFEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included.\nHIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.\n", "metadata": {"Name": "Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table", "Brand": "Grand patio", "Description": "This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

      As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

      The fire pit table has solid construction and is easy to assemble.

      40,000 BTU propane gas fire pit, square steel firebowl.

      Note:
      The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
      Lava rocks shown in photos are decoration only, and are NOT included.
      Batteries: 1 AA batteries required (NOT included).

      Product Specifications:
      Chair materials: Powder-coated steel, olefin fabric
      Chairs size: 27.5\" (W) x 30.5\" (D) x 33.7\" (H)
      Load of chair: 200lbs-300 lbs
      Chair package Includes: 4 Chairs, tools needed, assembly guide

      Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
      Firetable size: 31.8\" (L) x 31.8\" (W) x 24.2\" (H)
      Firetable package included: 1 x 32 inch gas fire pit table

      Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

      Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.", "Features": "FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we'll sort you out in 24 hours.\nCOMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces.\nSTURDY & DURABLE: Chairs and table's frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles.\nFEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included.\nHIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013282776, 0.004863739, -0.060272217, -0.06414795, 0.0023422241, -0.001745224, -0.013244629, 0.034576416, -0.05618286, -0.010017395, -0.06774902, 0.05456543, -0.042236328, 0.007095337, 0.048858643, -0.0703125, 0.04055786, -0.05432129, -0.003282547, -0.030700684, 0.003622055, -0.011001587, 0.029174805, 0.070617676, 0.023757935, -0.0014410019, 0.030670166, -0.013420105, 0.04446411, 0.010147095, 0.026779175, -0.031021118, 0.03161621, 0.015838623, -0.032958984, -0.032958984, -0.001449585, -0.011383057, -0.021911621, 0.025512695, 0.012748718, 0.0024318695, -0.07366943, -0.020324707, -0.06137085, -0.028442383, -0.0020751953, -0.01285553, -0.0423584, -0.014167786, -0.01020813, -0.0039138794, 0.018371582, -0.050079346, 0.002313614, 0.0014953613, -0.027511597, 0.002336502, 0.001086235, -0.01701355, 0.010765076, 0.018814087, 0.03427124, 0.04296875, -0.029251099, 0.038146973, 0.07208252, -0.015167236, 0.023010254, -0.047668457, -0.03479004, 0.017547607, -0.0014715195, -0.0418396, -0.02003479, 0.039855957, -0.002691269, -0.0070533752, -0.00026631355, -7.82609e-05, -0.000895977, 0.016540527, 0.025177002, -0.052490234, 0.04827881, 0.0019893646, -0.023788452, -0.013572693, -0.0045204163, -0.072631836, 0.00422287, -0.073791504, -0.021636963, 0.028182983, -0.0034770966, -0.049102783, -0.038330078, -0.04107666, 0.026412964, -0.010047913, 0.028121948, -0.03677368, -0.0045700073, 0.003528595, -0.005924225, 0.029708862, 0.01499176, 0.01083374, 0.011817932, 0.006252289, -0.037719727, -0.010215759, 0.030395508, 0.011062622, -0.025619507, -0.006038666, -0.02180481, 0.01133728, 0.001824379, 0.016479492, -0.037139893, -0.030807495, -0.033081055, 0.043304443, 0.05267334, 0.037750244, -0.020401001, 0.045196533, -0.034820557, 0.01927185, -0.0018892288, 0.029403687, 0.013824463, 0.026489258, -0.023361206, -0.01247406, 0.03173828, 0.010726929, 0.012619019, -0.011421204, 0.026992798, 0.025482178, 0.02709961, -0.014038086, 0.012008667, 0.019851685, 0.040008545, 0.0066375732, -0.031036377, -0.030960083, 0.009216309, 0.031280518, 0.03314209, 0.039978027, -0.043182373, 0.008255005, 0.045318604, -0.03262329, -0.05493164, -0.07019043, 0.031555176, 0.0026168823, 0.0049972534, -0.03463745, -0.048065186, 0.004047394, -0.06774902, -0.009277344, -0.007133484, 0.087768555, -0.06262207, 0.034179688, -0.0345459, -0.027999878, -0.034118652, -0.032409668, 0.0016088486, 0.039489746, 0.03665161, -0.05923462, -0.06567383, -0.05783081, 0.09124756, -0.05871582, 0.018157959, -0.047973633, 0.009094238, -0.034942627, 0.03237915, 0.013656616, -0.025466919, -0.0042800903, 0.0015354156, -0.052246094, 0.023864746, 0.0028915405, -0.0446167, 0.0034656525, -0.007423401, 0.025054932, -0.051086426, -0.0063972473, 0.006175995, 0.012420654, 0.022659302, 0.010864258, -0.011131287, 0.015335083, 0.0047416687, 0.027832031, -0.0013399124, -0.012672424, -0.016448975, 0.014411926, 0.0021972656, -0.0076904297, -0.02406311, 0.046447754, -0.016540527, 0.020339966, 0.0054397583, -0.048980713, -0.006164551, -0.0006489754, 0.01776123, -0.03186035, 0.0054779053, -0.026931763, 0.012306213, 0.0045928955, -0.0059051514, 0.020492554, 0.070617676, 0.063964844, 0.016784668, 0.07165527, 0.09069824, 0.04397583, -0.04046631, -0.031311035, 0.01777649, -0.042877197, -0.048431396, 0.00680542, -0.030029297, -0.022644043, 0.018417358, 0.0017995834, -0.002445221, -0.02760315, 0.025238037, -0.03491211, 0.04019165, 0.03010559, 0.00081920624, -0.0054626465, -0.036193848, 0.00094509125, -0.020507812, -0.013771057, 0.01637268, 0.021347046, 0.0066337585, -0.0062294006, 0.028533936, -0.031082153, 0.034729004, 0.0107040405, -0.014198303, -0.026184082, 0.025680542, 0.03652954, -0.016921997, -0.014030457, 0.021728516, 0.03137207, -0.029525757, 0.01802063, -0.015808105, -0.011001587, -0.010635376, -0.007835388, -0.020904541, -0.016113281, 0.058044434, -0.0040626526, -0.018218994, -0.040222168, -0.005176544, 0.02078247, 0.027404785, 0.003156662, -7.516146e-05, 0.0016260147, 0.02619934, -0.014839172, 0.006664276, 0.022766113, 0.010658264, 0.0058021545, -0.026992798, 0.03286743, -0.013076782, 0.021606445, -0.017868042, 0.055236816, -0.022277832, 0.01727295, 0.016036987, -0.031982422, 0.028381348, 0.04647827, 0.040374756, 0.0077552795, 0.057037354, 0.016052246, -0.00592041, 0.068481445, 0.014030457, 0.0012979507, 0.005630493, 0.02709961, 0.0040512085, 0.0016851425, 0.027664185, -0.02658081, -0.012336731, 0.0033397675, -0.016021729, 0.026290894, 0.022781372, -0.010665894, -0.015220642, -0.029968262, 0.0017595291, 0.017242432, -0.00541687, 0.047027588, -0.0085372925, -0.046325684, -0.043121338, 0.010772705, -0.004837036, -0.039001465, -0.01776123, -0.016204834, -0.038879395, 0.0074501038, 0.01486969, -0.012283325, -0.010658264, -0.0006175041, -0.0019216537, 0.02418518, 0.024017334, -0.03314209, -0.023269653, 0.032592773, -0.0105896, -0.03665161, -0.023498535, -0.0028648376, -0.048095703, -0.025268555, 0.031311035, -0.009719849, -0.034210205, -0.006767273, 0.003643036, 0.016357422, 0.06781006, 0.018539429, -0.08807373, -0.04159546, -0.04598999, -0.026428223, 0.016494751, -0.045135498, 0.0129776, -5.7458878e-05, -0.0018234253, 0.017059326, -0.007987976, 0.0061187744, 0.016204834, 0.020217896, 0.024871826, 0.035491943, 0.021499634, -0.011703491, 0.020568848, 0.030014038, -0.06011963, -0.011871338, 0.025238037, 0.015823364, 0.009475708, -0.033111572, -0.041503906, -0.025894165, -0.059661865, -0.013870239, -0.007507324, -0.051452637, 0.020767212, -0.07989502, -0.016159058, -0.043762207, 0.013366699, 0.05126953, -0.00415802, -0.010688782, 0.0059394836, -0.0047798157, -0.015380859, 0.0063476562, 0.051727295, 0.0035305023, -0.009094238, -0.04284668, 0.02368164, -0.026016235, 0.027572632, 0.0056495667, -0.038116455, 0.005432129, -0.045288086, 0.0008211136, -0.03488159, 0.031311035, -0.03012085, -3.749132e-05, -0.0010881424, 0.0047035217, -0.0418396, 0.0042495728, -0.0118255615, -0.015701294, 0.015197754, -0.026687622, -0.033691406, 0.0027999878, -0.016174316, 0.0057525635, -0.009010315, -0.023544312, 0.021636963, -0.044769287, -0.042785645, -0.067871094, -0.0043754578, 0.027908325, 0.0034713745, 0.017440796, 0.023971558, 0.009643555, 0.007446289, 0.05532837, 0.010437012, -0.04055786, -0.03060913, -0.05709839, 0.04196167, 0.01486969, 0.025512695, -0.033294678, 0.045410156, -0.014427185, -0.021835327, 0.044281006, -0.010505676, 0.0014705658, 0.0009737015, 0.01424408, -0.0069770813, 0.05419922, 0.0131073, -0.01574707, -0.008071899, 0.022018433, -0.070617676, 0.0029258728, -0.033996582, 0.025131226, 0.05392456, -0.025024414, 0.07635498, 0.049804688, -0.02166748, 0.07196045, 0.0073509216, 0.052215576, -0.00491333, 0.090270996, -0.012161255, 0.026351929, -0.011642456, 0.03933716, -0.009468079, -0.04916382, -0.0037765503, 0.0013093948, 0.0013980865, 0.011657715, -0.005882263, 0.0046806335, 0.004989624, -0.025115967, -0.004940033, -0.037597656, 0.012634277, -0.05557251, -0.008522034, 0.005264282, -0.03845215, -0.013076782, -0.01777649, 0.01638794, -0.04446411, 0.005886078, -0.0003437996, 0.008590698, 0.036254883, 0.042663574, -0.021026611, -0.015731812, 0.0009288788, 0.0060272217, -0.029541016, 0.0016117096, 0.02079773, 0.015220642, 0.02659607, 0.006134033, 0.013038635, 0.023880005, -0.010276794, 0.002538681, -0.03604126, -0.044281006, -0.0109939575, -0.009178162, 0.009780884, -0.019424438, 0.0063438416, -0.06866455, -0.034454346, -0.02229309, -0.042541504, 0.0038013458, -0.022018433, -0.018676758, -0.07366943, -0.0115356445, -0.030731201, -5.9068203e-05, -0.09197998, 0.051239014, 0.0036182404, -0.028808594, 0.025924683, 0.03314209, -0.0552063, -0.0047912598, -0.030258179, -0.014762878, 0.017822266, -0.022720337, 0.030273438, -0.059295654, -0.027999878, -0.0362854, -0.011428833, 0.0025939941, -0.018676758, 0.015960693, 0.0021305084, -0.012519836, 0.051696777, 0.003479004, -0.024520874, -0.0067825317, -0.0022258759, -0.07489014, -0.048461914, -0.007724762, 0.0009784698, -0.08404541, -0.05001831, -0.018829346, 0.08276367, 0.0043792725, 0.0072517395, -0.025619507, 0.001332283, -0.011047363, 0.035003662, -0.04928589, -0.060058594, 0.006111145, -0.0181427, -0.020446777, -0.0126953125, -0.013824463, 0.07940674, -0.008834839, 0.018615723, -0.0060577393, -0.005580902, 0.044128418, -0.03488159, 0.006214142, -0.013366699, -0.024215698, -0.012794495, 0.052581787, -0.05014038, 0.026000977, 0.038909912, 0.019897461, 0.043701172, 0.022155762, 0.024917603, 0.0037155151, 0.018722534, -0.07244873, -0.032958984, -0.010826111, -0.008468628, -0.054748535, -0.018112183, -0.016921997, 0.004852295, -0.007896423, 0.04800415, 0.017654419, -0.02230835, -0.010185242, -0.03616333, 0.009857178, 0.0066833496, 0.03125, 0.026794434, -0.04675293, 0.018157959, -0.038879395, -0.025100708, 0.013206482, -0.04260254, -0.00036740303, -0.039764404, 0.010620117, -0.046569824, 0.027938843, 0.030212402, 0.032836914, -0.003528595, 0.06463623, -0.0018253326, -0.016082764, -0.05065918, 0.005722046, 0.05331421, -0.057861328, -0.0357666, -0.01977539, -0.00982666, 0.02709961, -0.027053833, -0.0018577576, 0.011787415, -0.0009255409, 0.024734497, 0.0004312992, -0.007980347, -0.020370483, 0.07086182, 0.00034594536, 0.009490967, -0.035461426, 0.02229309, 0.042175293, 0.02507019, -0.06304932, 0.005115509, 0.043762207, 0.0011873245, -0.012031555, 0.0077667236, 0.024475098, -0.034484863, 0.007507324, 0.028869629, 0.0006656647, -0.01689148, 0.034423828, 0.016921997, 0.026519775, -0.040252686, -0.04650879, 0.055114746, 0.0385437, -0.055114746, 0.006210327, -0.016708374, -0.03213501, -0.05807495, -0.01902771, 0.0055656433, 0.013313293, -0.037231445, 0.00028800964, 0.033691406, 0.010093689, -0.03451538, -0.04373169, -0.014968872, -0.003856659, -0.013748169, 0.045959473, -0.049804688, 0.030822754, 0.004901886, -0.033325195, 0.013725281, -0.007320404, -0.072143555, -0.014907837, 0.015914917, 0.021087646, 0.0013999939, -0.033111572, 0.08190918, -0.045928955, -0.03857422, -0.045928955, 0.029037476, 0.017913818, 0.010726929, 0.053588867, -0.0041618347, 0.017669678, 0.027252197, 0.0129776, -0.07055664, 0.008529663, -0.0037631989, -0.052093506, 0.01626587, -0.048553467, 0.030899048, 0.024765015, 7.867813e-06, -0.029403687, 0.044158936, -0.02659607, -0.08654785, -0.010009766, 0.011695862, 0.019622803, -0.016815186, 0.013397217, 0.00084114075, 0.004699707, -0.008506775, -0.0015659332, 0.008407593, 0.023544312, -0.00041890144, 0.0073051453, -0.010284424, 0.009124756, -0.005504608, 0.0020542145, 0.008522034, 0.019241333, -0.0003297329, -0.01348114, -0.001742363, 0.01914978, 0.028533936, 0.0027446747, -0.007659912, 0.0121536255, 0.02027893, -0.025405884, 0.047454834, -0.018951416, 0.01424408, 0.011207581, 0.046539307, 0.014656067, -0.020812988, -0.011306763, 0.015655518, 0.020690918, -0.05593872, -0.009002686, 0.10015869, -0.011672974, -0.012321472, -0.020065308, 0.008895874, 0.021240234, 0.012260437, 0.019805908, 0.042907715, 0.02180481, -0.008415222, 0.0047340393, 0.013504028, 0.005256653, -0.0132751465, -0.010772705, -0.045135498, 0.011238098, -0.0032310486, -0.0015592575, 0.005748749, -0.04385376, 0.0067596436, 0.051635742, -0.011169434, 0.0013437271, -0.019836426, 0.020309448, 0.0317688, -0.06652832, -0.009613037, -0.029586792, 0.007835388, -0.01676941, -0.037750244, -0.008071899, -0.027526855, 0.018356323, -0.0052833557, 0.05908203, -0.011558533, 0.04095459, 0.010848999, 0.006477356, -0.026031494, -0.018341064, 0.041412354, -0.036010742, -0.024627686, 0.004245758, -0.035888672, 0.00051164627, 0.05255127, -0.025863647, 0.009819031, 0.020706177, 0.010269165, -0.041778564, 0.027877808, -0.015930176, 0.029953003, 0.03955078, -0.031829834, 0.026428223, 0.019561768, 0.058929443, 0.025634766, 0.017730713, -0.025421143, 0.043945312, -0.04095459, 0.065979004, 0.03125, -0.005569458, -0.021011353, -0.012062073, -0.012702942, 0.004722595, 0.010879517, 0.020828247, 0.03289795, -0.010726929, -0.024887085, -0.017791748, 0.025634766, 0.0036010742, 0.021270752, -0.038970947, 0.008529663, -0.03314209, -0.02935791, -0.0041542053, 0.0209198, 0.0046157837, 0.014778137, 0.03768921, 0.046661377, 0.027267456, 0.019882202, 0.005645752, -0.008766174, -0.016677856, 0.019332886, -0.02015686, 0.013183594, -0.0062713623, -0.0052108765, -0.0015001297, -0.0005130768, -0.017120361, 0.053741455, -0.035705566, -0.04269409, 0.03652954, -0.010940552, -0.021850586, 0.0009698868, 0.06384277, -0.012138367, -0.02798462, 0.045562744, 0.0064315796, 0.021408081, 0.06964111, 0.0039520264, -0.05532837, -0.08294678, -0.012237549, -0.0069274902, 0.038360596, 0.0141067505, 0.013519287, 0.03173828, 0.011421204, 0.012229919, 0.04385376, 0.018753052, -0.011810303, 0.03817749, -0.056732178, -0.040039062, 0.05807495, 0.026062012, -0.015625, -0.012466431, 0.025222778, 0.013793945, 0.023834229, 0.029953003, 0.00071525574, -0.10089111, -0.036193848, -0.05987549, 0.028533936, 0.023666382, -0.01058197, 0.03894043, 0.016784668, -0.047210693, 0.03466797, -0.010536194, 0.014167786, 0.034240723, -0.019058228, 0.03164673, -0.030776978, -0.04244995, -0.065979004, -0.027069092, 0.031341553, -0.029937744, -0.041259766, -0.0009889603, 0.0018901825, -0.0011720657, -0.013336182, 0.0345459, -0.0236969, 0.00020575523, -0.013069153, -0.0064353943, -0.026763916, -0.022445679, -0.022064209, -0.022262573, -0.015167236, 0.032196045, 0.011650085, -0.041992188, -0.06112671, 0.004421234, -0.0013475418, -0.05407715, -0.056152344, -0.036468506, -0.036590576, 0.004501343, 0.021026611, -0.011993408, 0.03237915, 0.0030956268, -0.011375427, -0.023040771, 0.021606445, 0.009056091, 0.025970459, -0.019439697, 0.059020996, 0.033111572, 0.05126953, -0.018539429, -0.06304932, -0.059539795, 0.05508423, 0.0287323, -0.030761719, 0.068115234, -0.022720337, 0.019989014, 0.013282776, -0.06518555, -0.010070801, 0.0082092285, 0.056915283, -0.024337769, 0.0062675476]}, "B00005OU9D": {"id": "B00005OU9D", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches\nDescription: \nFeatures: Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time\n2 adjustable burners: For precise temperature control\nWind-blocking panels: Shield burners from wind\nPressure regulator: Pressure-control technology for consistent performance, even in extreme conditions\nRuntime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)\n", "metadata": {"Name": "Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches", "Brand": "Coleman", "Description": "", "Features": "Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time\n2 adjustable burners: For precise temperature control\nWind-blocking panels: Shield burners from wind\nPressure regulator: Pressure-control technology for consistent performance, even in extreme conditions\nRuntime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.050445557, -0.01461792, -0.027633667, 0.03704834, -0.028808594, -0.012145996, 0.012298584, 0.003955841, -0.045440674, -0.016586304, 0.0005431175, -0.0033512115, -0.014587402, -0.049316406, 0.03918457, -0.05331421, 0.003704071, 0.03289795, -0.0060653687, -0.04586792, 0.0070533752, -0.043792725, -0.016601562, 0.12976074, 0.024505615, -0.025222778, -0.03488159, 0.00995636, 0.013648987, 0.008682251, 0.011047363, 0.02218628, 0.03112793, 0.0049476624, -0.031463623, -0.05999756, 0.054595947, -0.040740967, -0.030517578, 0.0357666, 0.0034732819, 0.0019159317, 0.021743774, -0.01991272, -0.008094788, -0.023498535, 0.022399902, -0.027572632, -0.0024280548, -0.024337769, -0.01234436, -0.007762909, 0.013267517, -0.048583984, -0.013755798, -0.008773804, 0.045410156, -0.016921997, 0.015594482, -0.048675537, -0.027267456, -5.6803226e-05, 0.055633545, 0.032470703, -0.028839111, 0.025543213, 0.057647705, -0.019821167, 0.039398193, -0.019317627, -0.02078247, 0.035491943, 0.005050659, 0.0043296814, -0.022262573, -0.002855301, -0.008964539, -0.010070801, 0.045074463, -0.0022277832, -0.031204224, -0.01158905, -0.022857666, -0.035980225, 0.025421143, 0.00030112267, -0.017562866, -0.011833191, -0.023345947, -0.023391724, -0.020507812, 0.01687622, -0.072631836, 0.025054932, -0.0019025803, -0.009414673, -0.020828247, -0.06781006, 0.04916382, -0.013900757, 0.03918457, -0.036132812, -0.015304565, 0.021881104, -0.0039482117, 0.06524658, 0.008262634, 0.06311035, 0.037628174, -0.0036792755, 0.017425537, -0.00019991398, 0.017150879, 0.0038337708, -0.014259338, -0.013221741, -0.03074646, 0.03149414, -0.007850647, 0.01651001, -0.047546387, -0.04333496, 0.042633057, 0.019134521, -0.0073623657, 0.0015153885, -0.011634827, 0.00011062622, 0.0017910004, 0.03668213, -0.057647705, -0.009681702, 0.037841797, 0.03643799, 0.01260376, -0.036224365, 0.021057129, -0.024520874, 0.008911133, 0.004573822, -0.012702942, -0.009750366, 0.030731201, -0.008613586, -0.014503479, 0.015182495, 0.022369385, 0.015312195, -0.02911377, -0.04940796, 0.03414917, -0.022033691, 0.021652222, 0.025909424, -0.02420044, 0.031951904, 0.0065193176, -0.0022258759, -0.03086853, -0.026245117, -0.040863037, -0.020645142, -0.00856781, 0.0042037964, -0.022094727, 0.04119873, 0.044036865, 0.0025291443, 0.02142334, 0.02822876, -0.01802063, 0.028579712, 0.053833008, 0.018341064, -0.0076026917, -0.017745972, -0.017807007, 0.03048706, 0.03817749, -0.0541687, -0.030822754, -0.035949707, 0.07336426, -0.013877869, 0.010154724, -0.06072998, 0.028060913, -0.015296936, -0.008338928, 0.024642944, 0.036193848, 0.0044898987, -0.02949524, -0.00020444393, 0.0040283203, 0.0044517517, -0.014884949, 0.028289795, -0.012252808, -0.019958496, 0.027908325, 0.026229858, -0.02293396, 0.018112183, -0.025146484, -0.007091522, 0.0023612976, 0.0026760101, 0.02243042, 0.018859863, -0.01612854, -0.020233154, 0.017364502, -0.038391113, -0.030700684, -0.0066108704, 0.0028057098, 0.029296875, 0.033935547, 0.011413574, 0.040771484, 0.004547119, 0.03173828, -0.00617218, 0.0128479, -0.031585693, -0.012084961, -0.02456665, 0.011199951, -0.0031318665, -0.015151978, 0.025466919, 0.045196533, 0.085998535, 0.011413574, 0.018493652, 0.084106445, 0.024658203, 0.0049743652, -0.037139893, 0.0075187683, -0.055480957, -0.04989624, -0.01033783, -0.011177063, 0.022445679, 0.016159058, -0.0026397705, -0.017547607, 0.029190063, 0.04486084, 0.014564514, 0.019042969, 0.02508545, -0.017944336, 0.019989014, -0.031921387, -0.0055236816, -0.0073394775, 0.03363037, -0.025512695, 0.025024414, 0.043395996, -0.004837036, -0.0014820099, 0.030807495, 0.02128601, 0.027526855, -0.040100098, 0.0074043274, 0.029006958, 0.045410156, -0.016830444, -0.021209717, 0.020263672, -0.046722412, -0.017608643, 0.028930664, -0.018432617, -0.034240723, 0.03274536, 0.027893066, -0.017684937, 0.0035686493, 0.045898438, 0.004055023, -0.01210022, 0.05065918, 0.024917603, 0.0022354126, 0.037078857, -0.01991272, -0.020614624, 0.02192688, -0.018249512, -0.0513916, 0.06756592, -0.009414673, 0.035491943, -0.03060913, 0.0023040771, 0.035736084, -0.048339844, 0.01852417, 0.0019407272, -0.02458191, 0.012550354, 0.02960205, 0.002368927, -0.03024292, -0.031982422, -0.017822266, 0.02305603, 0.035705566, 0.0035419464, -0.015197754, -0.014282227, 0.039031982, 0.019851685, 0.03189087, -0.04397583, -0.0012712479, -0.016799927, -0.019088745, 0.010406494, 0.007534027, -0.04574585, -0.0023880005, -0.02468872, -0.0013256073, 0.026870728, -0.0104522705, 0.010536194, -0.016433716, 0.0073051453, -0.014274597, 0.012481689, 0.0064468384, -0.0043754578, -0.037597656, 0.0061912537, -0.027008057, -0.012893677, 0.0007505417, -0.038116455, -0.00762558, 0.04269409, 0.015945435, -0.033996582, 0.0027275085, 0.024902344, -0.033172607, 0.035888672, -0.036468506, 0.021850586, -0.027740479, -0.0814209, -0.05581665, -0.020950317, -0.09008789, 0.012161255, -0.02960205, -0.046722412, -0.03994751, 0.053588867, -0.00573349, -0.05255127, -0.026123047, -0.026992798, 0.0107421875, 0.0017232895, -0.007713318, -0.045959473, -0.010635376, -0.029953003, 0.017913818, 0.04046631, -0.012962341, 0.05166626, 0.020843506, 0.040222168, 0.02784729, 0.0007991791, -0.003522873, -0.011039734, 0.033325195, 0.03439331, 0.020187378, 0.022125244, -0.020996094, 0.04031372, 0.05996704, -0.0602417, -0.01576233, 0.0034713745, 0.02482605, -0.032104492, -0.055877686, -0.022583008, -0.011383057, -0.08935547, 0.008895874, -0.003358841, -0.048553467, 0.0005617142, -0.079711914, -0.051330566, -0.05984497, 0.018371582, 0.06213379, -0.015731812, -0.005630493, -0.020233154, -0.0031757355, -0.004737854, 0.016616821, 0.05230713, -0.015045166, 0.038269043, -0.023223877, 0.02406311, -0.07098389, 0.043151855, 0.036224365, -0.029052734, 0.047821045, -0.048858643, -0.0018577576, -0.024627686, 0.054901123, 0.0022125244, 0.025344849, -0.0362854, -0.013763428, 0.019439697, 0.010299683, -0.008964539, -0.056427002, 0.0073394775, -0.009651184, -0.029571533, -0.03866577, -0.0124053955, 0.021881104, 0.008651733, -0.01889038, -0.040740967, -0.038879395, 0.011024475, 0.016082764, 0.0040893555, -0.0049591064, 0.006793976, 0.009231567, -0.038909912, 0.059326172, 0.031677246, 0.04135132, 0.03540039, -0.033966064, -0.023071289, -0.026367188, 0.00522995, 0.012908936, -0.0003631115, -0.04559326, 0.012008667, 0.026290894, 0.020507812, -0.023498535, 0.001783371, 0.068725586, 0.04736328, -0.018463135, -0.013435364, -0.054229736, 0.050689697, 0.013420105, -0.010765076, -0.06652832, -0.051757812, 0.004432678, -0.09637451, 0.08166504, 0.05633545, -0.029220581, 0.087890625, 0.029342651, 0.017822266, 0.0231781, 0.047332764, -0.012680054, 0.013847351, 0.045440674, -0.01007843, 0.008766174, 0.011772156, -0.018920898, 0.0051841736, -0.0031833649, -0.06414795, 0.01574707, 0.008071899, -0.026000977, -0.014778137, -0.020309448, 0.019012451, -0.012290955, 0.00932312, -0.015960693, 0.019958496, -0.020462036, -0.017623901, -0.0003054142, -0.02810669, 0.004207611, -0.021820068, -0.006931305, -0.02708435, -0.006122589, 0.003030777, 0.0007390976, -0.008964539, 0.026473999, 0.024017334, 0.0028953552, -0.03765869, 0.025680542, -0.012176514, 0.011177063, 0.025634766, 0.01574707, -0.0073776245, -0.022994995, 0.018081665, -0.013824463, 0.012680054, 0.042877197, -0.023345947, -0.09234619, 0.0027198792, 0.035949707, 0.019607544, -0.06463623, -0.010871887, 0.008911133, -0.005504608, 0.031555176, -0.05130005, 0.010803223, -0.024368286, -0.008415222, -0.09210205, -0.032470703, -0.008354187, -0.010139465, -0.018707275, 0.024230957, -0.024520874, -0.034698486, -0.005504608, 0.027282715, -0.03778076, -0.0071105957, -0.028305054, 0.020523071, 0.012672424, 0.0003657341, 0.07904053, -0.041656494, 0.027420044, -0.02619934, 0.08453369, 0.014274597, 0.023010254, -0.055999756, -0.03024292, 0.009185791, 0.020736694, 0.046783447, -0.025512695, 0.01322937, -0.039031982, -0.002828598, -0.02456665, -0.0181427, 0.014266968, -0.04135132, -0.022201538, -0.015853882, 0.06793213, -0.029541016, 0.0090789795, -0.010559082, 0.020446777, 0.003627777, 0.012321472, -0.10058594, -0.06542969, -0.007972717, -0.08843994, -0.004535675, -0.00995636, -0.023101807, 0.10095215, 0.057922363, -0.016296387, -0.038848877, -0.012390137, 0.0181427, -0.01512146, 0.032104492, -0.02444458, -0.02432251, -0.025787354, 0.0149002075, -0.05117798, 0.034057617, -0.002784729, -0.004497528, -0.0003376007, -0.014099121, 0.004096985, -0.045806885, -0.000749588, -0.041290283, -0.013725281, -0.019470215, -0.018478394, 0.010055542, -0.025604248, 0.006427765, 0.021621704, -0.028717041, 0.044555664, 0.02368164, 0.002840042, -0.01927185, -0.01586914, 0.06817627, 0.014266968, 0.035461426, 0.041168213, -0.025939941, 0.024658203, -0.017807007, 0.009239197, 0.02180481, -0.02331543, -0.0025959015, -0.024734497, 0.01638794, -0.04421997, 0.04458618, 0.028656006, 0.0062942505, -0.014335632, 0.029937744, 0.016677856, -0.0064926147, -0.012268066, 0.050689697, 0.022247314, -0.011268616, 0.049926758, 0.0066184998, -0.009429932, 0.04812622, -0.019607544, 0.037384033, 0.024673462, -0.031463623, 0.030181885, 0.01525116, 4.7564507e-05, -0.0463562, 0.076049805, -0.019226074, -0.022506714, -0.038208008, 0.028335571, 0.037597656, -0.0052948, 0.019622803, -0.031143188, 0.08868408, -0.059173584, -0.06488037, 0.0008378029, 0.016052246, -0.0061149597, 0.013870239, 0.0019159317, -0.010971069, -0.032989502, -0.0014400482, -0.038391113, 0.010871887, 0.021575928, -0.009513855, 0.017242432, 0.012863159, -0.010948181, -0.011993408, -0.008155823, 0.00048327446, -0.07684326, 0.025024414, -0.029388428, -0.0028018951, 0.00077819824, 0.0134887695, -0.0072517395, 0.0045814514, -0.014205933, -0.049682617, -0.053955078, -0.0017471313, -0.030639648, 0.02178955, -0.0011615753, -0.029800415, 0.003255844, 0.020996094, 0.022842407, -0.025512695, -0.031585693, -0.0030918121, 0.008529663, 0.0317688, -0.006549835, 0.020507812, 0.0748291, -0.04473877, -0.028381348, -0.07611084, 0.05432129, -0.01600647, 0.0043678284, 0.04220581, 0.05493164, -0.0030899048, 0.044433594, 0.0018949509, -0.025726318, 0.016052246, 0.012542725, -0.049987793, 0.008972168, -0.012718201, 0.031188965, 0.0036354065, 0.004306793, -0.022994995, 0.037017822, -0.013412476, -0.0034160614, -0.030853271, -0.016067505, -0.002029419, -0.02709961, 0.0026683807, -0.020706177, 0.009483337, -0.018615723, 0.0032482147, -0.035827637, -0.015403748, -0.0032749176, 0.034484863, 0.036102295, -0.015083313, 0.003419876, 0.032165527, -0.023651123, 0.049865723, 0.0034942627, -0.0068511963, 0.0072784424, 0.0140686035, -0.008384705, 0.014762878, -0.0059432983, 0.0035953522, -0.028518677, 0.020996094, 0.01109314, 0.048461914, -0.05117798, -0.022064209, 0.033233643, 0.03768921, 0.022445679, 0.0076026917, 0.0256958, 0.0119018555, -0.026870728, 0.0073776245, 0.0051231384, -0.03366089, -0.01586914, -0.06951904, -0.023880005, -0.0029335022, -0.009506226, 0.010932922, -0.055786133, 0.04171753, -0.02168274, -0.008216858, 0.0015287399, -0.024978638, 0.039733887, -0.011520386, 0.019042969, -0.0018367767, -0.014678955, 0.041900635, -0.06842041, -0.05795288, 0.018722534, 0.03643799, -0.024810791, 0.035736084, -0.04071045, 0.024993896, 0.0178833, -0.050628662, -0.011703491, 0.04071045, 0.00566864, -0.0021877289, -0.06530762, -0.027130127, -0.01448822, -0.00039458275, 0.002456665, 0.050567627, 0.009468079, 0.008163452, 0.0033340454, -0.004852295, -0.008117676, -0.025863647, 0.064697266, -0.026947021, -0.02482605, -0.006729126, -0.038146973, 0.039031982, 0.038085938, 0.02128601, 0.01826477, -0.007045746, 0.015266418, 0.004917145, -0.012008667, -0.042419434, -0.05105591, 0.0357666, 0.030639648, -0.056427002, -0.025680542, 0.004337311, 0.0141067505, 0.038085938, -0.036499023, 0.030197144, -0.039978027, 0.052886963, 0.01876831, 0.059783936, -0.029953003, -0.009963989, -0.0010442734, -0.0027999878, 0.00869751, 0.017364502, 0.013290405, -0.023864746, 0.01586914, -0.0079422, 0.0154418945, -0.06088257, -0.004573822, 0.020111084, 0.011688232, 0.03543091, 0.0043296814, -0.0052719116, -0.0028629303, -0.0014505386, -0.006008148, 0.032592773, -0.020645142, 0.02255249, -0.014678955, 0.0053596497, -0.010574341, 0.02168274, 0.004261017, -0.005596161, -0.04623413, 0.004371643, -0.040924072, -0.032684326, -0.058746338, -0.00680542, -0.009246826, -0.08074951, 0.02470398, -0.020706177, -0.0014419556, 0.010848999, -0.0029201508, -0.011260986, 0.0020923615, 0.005973816, 0.036621094, 0.010406494, 0.0070724487, 0.05267334, -0.018173218, -0.06341553, -0.02986145, 0.026046753, -0.0112838745, -0.039215088, -0.0041656494, -0.011978149, -0.022735596, -0.006374359, 0.029174805, 0.052947998, 0.036712646, -0.0029640198, 0.016342163, -0.048706055, -0.025817871, 0.06573486, 0.018615723, -0.05645752, -0.026916504, 0.030380249, 0.003063202, -0.027145386, 0.040405273, 0.006713867, -0.09075928, -0.0074424744, -0.021728516, -0.015823364, 0.004016876, -0.005695343, 0.035247803, 0.021133423, -0.022766113, 0.044830322, 0.0082473755, -0.0008664131, 0.031158447, -0.0317688, 0.066467285, -0.030593872, -0.07714844, -0.10571289, -0.039123535, 0.048980713, 0.031951904, -0.028900146, 0.013084412, 0.029037476, -0.035308838, 0.018554688, 0.01625061, 0.007106781, 0.008552551, 0.030166626, 0.012962341, -0.004890442, -0.008384705, 0.05142212, 0.007549286, -0.07897949, 0.024810791, -0.022781372, 0.01423645, 0.03302002, -0.054870605, 0.010803223, -0.002916336, -0.021865845, -0.043945312, -0.007522583, 0.0018568039, 0.0259552, -0.007255554, -0.003107071, 0.010093689, 0.015029907, -0.010726929, -4.7385693e-05, 0.0032024384, 0.0072021484, 0.00381279, 0.021560669, -0.004673004, 0.016921997, -0.0027713776, -0.06939697, -0.046813965, 0.0345459, 0.033813477, -0.033935547, 0.03866577, -0.009689331, 0.016296387, 0.027816772, -0.015701294, -3.373623e-05, -0.016937256, 0.06964111, -0.0022449493, -0.007980347]}, "B004FPZAA6": {"id": "B004FPZAA6", "original": "Brand: Worthington\nName: Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar\nDescription: \nFeatures: Engineered design for lightweight strength\nRugged, damage resistant all steel construction\nRust inhibiting Durabond powder coat paint\nInteriors that are clean, dry and scale free\nComfortable hand-holds in the collar for easier lifting\n", "metadata": {"Name": "Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar", "Brand": "Worthington", "Description": "", "Features": "Engineered design for lightweight strength\nRugged, damage resistant all steel construction\nRust inhibiting Durabond powder coat paint\nInteriors that are clean, dry and scale free\nComfortable hand-holds in the collar for easier lifting", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.039276123, -0.017822266, -0.07867432, -0.024597168, -0.0158844, -0.022399902, -0.03567505, 0.027130127, -0.039367676, 0.014450073, 0.00806427, 0.026977539, -0.034240723, -0.028411865, 0.0053482056, -0.022506714, 0.02357483, 0.020721436, 0.012435913, -0.027282715, 0.016906738, -0.025756836, 0.004425049, 0.0748291, 0.017456055, -0.03717041, 0.049224854, -0.011390686, 0.036468506, 0.0017175674, 0.026794434, -0.028137207, 0.031021118, -0.019195557, -0.011962891, 0.010055542, 0.043670654, -0.015541077, -0.038391113, 0.039916992, -0.03390503, 0.04852295, 0.06359863, -0.038604736, -0.0075950623, -0.034210205, 0.01838684, -0.020187378, 0.018096924, 0.0060310364, 0.00868988, 0.024917603, 0.014213562, -0.05203247, -0.023391724, -0.014015198, 0.00095653534, -0.015312195, 0.025558472, 0.005504608, -0.022018433, 0.010314941, 0.016738892, -0.021850586, -0.027420044, 0.0007033348, 0.049926758, 0.004760742, 0.02583313, -0.042175293, -0.011001587, 0.04019165, 0.030258179, 0.00969696, -0.0065307617, -0.025894165, 0.037139893, 0.0385437, 0.01626587, 0.011123657, -0.055999756, 0.0009121895, -0.046051025, -0.00022006035, -0.004169464, 0.01576233, -0.029434204, -0.0061569214, 0.020980835, 0.027542114, 0.0055160522, 0.057159424, 0.031234741, 0.02331543, 0.0023059845, -0.043395996, -0.026351929, -0.09197998, 0.044128418, 0.0061302185, 0.03201294, -0.049591064, 0.045684814, 0.013389587, 0.009048462, 0.042053223, 0.018051147, 0.010734558, 0.013557434, -0.009498596, -0.013366699, 0.040802002, -0.01777649, -0.028137207, -0.01071167, 0.0054740906, -0.04547119, 0.017333984, 0.0005540848, -0.006286621, 0.014404297, 0.018859863, 0.007575989, -0.030731201, -0.010513306, -0.020751953, -0.03881836, 0.015113831, -0.00093984604, -0.021560669, -0.020263672, 0.021621704, 0.04611206, 0.040740967, 0.015670776, 0.01902771, 0.00090408325, 0.019012451, 0.006099701, -0.013702393, -0.013496399, 0.010696411, 0.061767578, -0.028121948, -0.021057129, 0.06427002, 0.026855469, -0.029785156, -0.027435303, -0.06500244, -0.010375977, -0.035186768, 0.020477295, -0.0034980774, 0.016616821, -0.038330078, 0.02230835, -0.036132812, 0.020889282, -0.03616333, 0.01625061, -0.031051636, -0.04837036, -0.025802612, -0.051605225, 0.026016235, 0.009719849, 0.0042495728, 0.006084442, 0.07861328, -0.042785645, 0.021514893, -0.03378296, -0.02154541, -0.01838684, -0.031051636, -0.033813477, 0.08074951, 0.07086182, -0.114990234, -0.06518555, -0.055236816, 0.14221191, -0.04071045, 0.027877808, -0.1138916, 0.04156494, -0.04144287, 0.0027580261, 0.023284912, 0.056854248, -0.013847351, -0.0052375793, -0.052520752, 0.002040863, 0.012039185, -0.034973145, 0.010261536, -0.013931274, 0.006729126, 0.024307251, -0.007007599, 0.033355713, 0.009719849, 0.05105591, -0.019592285, 0.029846191, -0.021865845, 0.00687027, 0.051513672, -0.010314941, 0.0044403076, -0.014678955, -0.014839172, 0.01727295, 0.030914307, -0.045562744, -0.010917664, -0.010314941, -0.021652222, 0.002090454, 0.0084991455, 0.015655518, 0.030410767, -0.029174805, 0.022781372, -0.02468872, 0.03213501, -0.019989014, 0.014381409, 0.031829834, 0.0035820007, 0.08459473, 0.046203613, -0.04019165, 0.031143188, 0.023223877, 0.029525757, -0.03933716, 0.0053863525, 0.02192688, -0.0008673668, -0.004917145, 0.03161621, 0.012886047, -0.001783371, 0.01927185, 0.0047187805, -0.013343811, 0.014526367, 0.056671143, 0.012680054, 0.030685425, 0.040283203, -0.02015686, 0.015853882, -0.016525269, 0.040283203, -0.02999878, 0.008094788, -0.018676758, 0.025054932, 0.021987915, -0.00655365, -0.010803223, 0.025909424, 0.04949951, 0.05117798, -0.009780884, -0.012763977, 0.011383057, 0.055023193, -0.0021533966, 0.042816162, -0.01108551, 0.00033545494, 0.003572464, -0.021881104, -0.0071105957, 0.013191223, -0.008117676, -0.04888916, -0.014625549, -0.00061511993, 0.012397766, 0.021133423, 0.039764404, 0.041412354, -0.047180176, 0.0029125214, 0.03656006, 0.018569946, 0.017349243, -0.02456665, -0.013343811, 0.008476257, -0.030731201, -0.04058838, 0.027557373, -0.04953003, -0.0049934387, 0.05532837, -0.000202775, -0.017028809, -0.00027394295, -0.021835327, -0.014190674, 0.019134521, 0.008621216, -0.019073486, -0.017150879, 0.014770508, 0.03186035, 0.054016113, 0.029891968, -0.003774643, 0.038024902, 0.06726074, 0.010070801, -0.016494751, -0.0121536255, 0.044403076, 0.031280518, 0.0015764236, 0.055145264, -0.016601562, -0.030288696, 0.015563965, -0.027709961, -0.020111084, -0.02230835, -0.052642822, -0.019607544, 0.04043579, -0.0037784576, 0.011016846, 0.00016212463, -0.008972168, -0.010879517, -0.02947998, -0.008270264, -0.008682251, -0.005420685, -0.025146484, -0.016983032, -0.07348633, 0.03652954, -0.011795044, -0.03161621, 0.0049362183, 0.041503906, 0.0027828217, -0.018096924, -0.038482666, 0.007484436, 0.016998291, 0.005508423, -0.036254883, 0.00422287, -0.07556152, 0.03363037, -0.05368042, -0.020629883, 0.038635254, 0.025268555, 0.006816864, -0.036956787, 0.0043411255, 0.02507019, 0.048614502, -0.016220093, 0.022979736, -0.06713867, -0.0066871643, 0.0035934448, -0.00466156, 0.04598999, -0.023101807, -0.011169434, -0.0039787292, -0.0079956055, -0.008590698, -0.017959595, -0.028198242, 0.022964478, 0.016418457, 0.03137207, 0.01537323, 0.028305054, -0.00440979, 0.00013363361, 0.0027809143, 0.023605347, -0.033935547, -0.052825928, -0.015037537, -0.025787354, 0.025405884, -0.006816864, 0.001039505, -0.068725586, 0.028396606, -0.032806396, -0.00080394745, -0.009605408, 0.0020256042, -0.026245117, -0.0736084, 0.019332886, -0.0003798008, 0.010360718, -0.000119924545, 0.0033035278, -0.015914917, -0.0012588501, -0.013160706, -0.019363403, 0.0024909973, -0.05432129, 0.01486969, 0.037231445, -0.01486969, -0.007785797, 0.024002075, 0.007675171, -0.043548584, 0.036987305, 0.021392822, -0.034576416, -0.030303955, 0.0029067993, -0.051483154, -0.026779175, -0.053222656, 0.016204834, 0.025299072, -0.017837524, -0.0014886856, -0.02708435, 0.014228821, -0.034484863, -0.044525146, -0.030700684, -0.0015563965, -0.03744507, 0.03125, -0.04559326, -0.0039978027, 0.029922485, 0.037017822, 0.022338867, -0.016067505, 0.005088806, 0.0032806396, -0.04373169, 0.040771484, 0.023895264, 0.014762878, -0.021820068, 0.014144897, -0.033966064, -0.026565552, 0.06774902, -0.053588867, -0.0018224716, -0.04623413, 0.0008659363, 0.022323608, -0.0030212402, -0.01725769, 0.0033416748, 0.07116699, 0.039764404, 0.002298355, 0.021484375, -0.002412796, -0.016326904, 0.013206482, -0.03555298, 0.006061554, -0.017944336, 0.015731812, -0.06890869, 0.039093018, 0.026565552, -0.010894775, 0.014472961, -0.016677856, -0.0057296753, 0.028869629, 0.0018796921, -0.027893066, 0.021270752, -0.0020866394, -0.042388916, 0.03186035, -0.0022506714, -0.019104004, -0.00137043, -0.033447266, 0.011260986, 0.005367279, -0.0079193115, 0.015571594, -0.023391724, 0.011978149, 0.010368347, -0.024398804, 0.0027599335, -0.00078582764, -0.042053223, -0.02861023, -0.011039734, 0.019348145, -0.026565552, -0.026519775, -0.01651001, -0.04360962, -0.047790527, 0.016143799, 0.0016889572, 0.04171753, -0.03201294, 0.033599854, 0.0073928833, -0.018630981, -0.047698975, 0.0052719116, -0.025756836, 0.03289795, -0.04272461, 0.021713257, -0.019729614, -0.04220581, 0.07183838, -0.044311523, 0.010620117, -0.012260437, -0.028579712, -0.020385742, 0.020828247, 0.030349731, 0.004211426, -0.035247803, -0.015312195, -0.03161621, -0.010040283, 0.0060539246, -0.035003662, -0.0262146, 0.02355957, 0.023483276, -0.042236328, -0.0036506653, -0.033355713, -0.06829834, -0.055389404, 0.031173706, 0.008132935, -0.0018520355, 0.013908386, 0.011154175, -0.04348755, -0.0056114197, -0.029815674, 0.0052261353, -0.011222839, -0.03262329, 0.08880615, -0.058380127, -0.009552002, -0.020355225, 0.060302734, 0.0032863617, 0.04107666, -0.031036377, -0.03463745, -0.009483337, -0.009666443, 0.0154418945, -0.030410767, 0.050811768, 0.0127334595, -0.00774765, -0.0368042, -0.05618286, 0.001660347, -0.06085205, -0.079833984, -0.051635742, 0.060180664, -0.0020275116, 0.045654297, 0.015579224, -0.044647217, -0.036712646, 0.0028266907, -0.052703857, -0.006263733, -0.026321411, -0.016296387, -0.0046920776, 0.0040893555, -0.03491211, 0.035461426, -0.022079468, -0.008125305, -0.032348633, -0.0052452087, 0.010307312, -0.01713562, 0.01727295, -0.010124207, 0.007549286, -0.0066223145, -0.0017156601, -0.06750488, 0.032318115, 0.04949951, 0.0036525726, 0.044189453, -0.01789856, 0.005958557, 0.026000977, -0.03314209, 0.005367279, 0.029754639, -0.00333786, -0.028625488, -0.02394104, -0.022781372, -0.024215698, -0.023117065, -0.026062012, -0.0020332336, -0.0041618347, 0.019851685, 0.00012469292, 0.015602112, -0.016998291, 0.003856659, -0.004802704, -0.05279541, -0.00067329407, 0.0395813, -0.011566162, -0.0093307495, 0.004627228, 0.007041931, -0.013763428, 0.039794922, 0.0152282715, -0.029449463, 0.02571106, 0.02760315, 0.034454346, -0.0033130646, 0.011230469, 0.036499023, -0.02053833, -0.01436615, 0.055389404, 0.007385254, -0.015319824, 0.051635742, -0.02168274, 0.019241333, -0.01335144, 0.010147095, -0.026184082, -0.026672363, -0.026565552, 0.0135650635, 0.012435913, 0.001991272, -0.054626465, 0.06768799, -0.025619507, -0.0116119385, -0.04333496, 0.01285553, -0.015457153, 0.022384644, -0.06994629, 0.020553589, 0.02760315, -0.019821167, 0.010772705, 0.010009766, -0.047058105, -0.015792847, -0.0061073303, -0.023651123, -0.06536865, 0.014312744, -0.02796936, -0.060333252, 0.062805176, 0.05078125, -0.007247925, 0.0016059875, 0.029846191, -0.07696533, -0.038635254, -0.034606934, 0.03967285, -0.01876831, 0.005645752, -0.0072021484, 0.010612488, -0.0061836243, -0.032836914, -0.03253174, -0.0010528564, -0.012641907, -0.035583496, -0.023605347, 0.031036377, 0.0015439987, 0.0023288727, -0.050323486, 0.03326416, 0.016143799, -0.036132812, -0.00026845932, 0.009681702, -0.059265137, -0.014213562, 0.01373291, 0.025146484, 0.023895264, -0.02482605, 0.017150879, -0.006877899, -0.009666443, -0.01977539, 0.036499023, -0.01309967, -0.018661499, 0.010726929, 0.026763916, -0.007217407, 0.032806396, -0.036468506, -0.04498291, 0.031219482, 0.016174316, -0.05050659, -0.025283813, -0.025527954, -2.7298927e-05, -0.0014629364, -0.010276794, -0.04058838, 0.018005371, -0.031951904, 0.016860962, -0.024673462, -0.019714355, -0.01361084, -0.028045654, 0.01436615, -0.030685425, -0.00011134148, -0.024276733, -0.024475098, -0.07489014, -0.053100586, 0.012840271, 0.03805542, 0.014526367, 0.0023002625, 0.010414124, 0.039764404, -0.066589355, 0.051483154, 0.051452637, -0.02746582, -0.02708435, 0.0045204163, 7.939339e-05, -0.005809784, -0.1026001, -0.0051727295, -0.017593384, -0.007423401, 0.03186035, 0.013786316, -0.009109497, 0.02619934, 0.029403687, 0.005016327, 0.04815674, 0.011459351, 0.01637268, -0.025848389, -0.0052986145, 0.017440796, -0.018936157, -0.04321289, 0.0019721985, -0.014984131, -0.060302734, -0.00774765, -0.03540039, 0.015106201, -0.011886597, 0.019012451, 0.013664246, -0.011169434, 0.017852783, -0.014144897, -0.036468506, -0.03149414, -0.043029785, 0.0357666, 0.005428314, 0.010299683, -0.04776001, -0.005050659, 0.027999878, 0.029327393, 0.012954712, 0.021728516, 0.06384277, -0.024353027, 0.01902771, 0.010040283, 0.014701843, 0.024520874, 0.022109985, 0.012550354, -0.0021972656, 0.029724121, 0.03778076, -0.03842163, -0.0143585205, -0.028030396, 0.05859375, -0.021514893, -0.0206604, 0.0014152527, -0.012870789, -0.01574707, 0.028900146, 0.008972168, -0.006919861, -0.008659363, -0.03164673, 0.048034668, 0.0008416176, 0.037231445, 0.0121536255, -0.033813477, 0.020858765, 0.05218506, 0.012992859, -0.032165527, -0.0045318604, 0.025985718, 0.012016296, -0.0036258698, -0.021072388, -0.0069847107, 0.01512146, 0.01826477, -0.064331055, 0.04336548, -0.055145264, 0.07849121, 0.018981934, 0.04232788, -0.028625488, -0.020111084, -0.012191772, 0.0006518364, 0.01109314, 0.01574707, 0.016342163, 0.032836914, -0.011360168, -0.017730713, 0.047668457, 0.021255493, 0.028778076, -0.06738281, 0.02708435, 0.020477295, 0.00920105, -0.008293152, 0.00945282, 3.8802624e-05, -0.0045318604, 0.019927979, -0.009048462, -0.00040078163, 0.005168915, -0.021240234, -0.054504395, 0.06506348, -0.039978027, -0.035491943, 0.016281128, -0.06506348, 0.013641357, 0.0011453629, -0.039886475, -0.081726074, 0.0049209595, -0.034088135, -0.0037612915, -0.008430481, -0.012786865, -0.018310547, -0.011734009, -0.002696991, -0.055145264, 0.014671326, -0.032348633, 0.07312012, -0.009674072, 0.0423584, -0.027648926, -0.011276245, -0.029006958, 0.006576538, -0.04623413, -0.02508545, -0.0067634583, -0.031707764, -0.030700684, -0.037872314, -0.024978638, 0.0016975403, 0.035980225, -0.036987305, 0.0079422, -0.021255493, -0.013961792, 0.028366089, 0.010940552, -0.010948181, -0.015686035, 0.025161743, 0.0021915436, -0.006942749, 0.04537964, -0.038604736, -0.057006836, -0.013420105, 0.007511139, 0.0072746277, -0.042114258, 0.023452759, -0.0009045601, 0.0024814606, -0.027999878, 0.037628174, 0.031982422, 0.05557251, 0.06011963, -0.026107788, 0.0054397583, -0.04623413, -0.07885742, -0.08947754, -0.020004272, 0.055358887, 0.024337769, -0.022613525, -0.003019333, 0.0028934479, -0.019989014, 0.0014801025, -0.0027656555, 0.0024909973, 0.0021362305, 0.012229919, 0.01763916, 0.0071411133, -0.026687622, -0.014862061, -0.051208496, 0.011474609, 0.016479492, -0.03744507, -0.0019683838, -0.031799316, -0.026641846, 0.002313614, -0.05569458, -0.017349243, -0.008216858, -0.033691406, 0.010017395, 0.02696228, 0.00077056885, 0.0052986145, -0.009506226, -0.0068130493, -0.036224365, 0.02041626, 0.02154541, 0.019729614, -0.018432617, -0.005870819, 0.0069351196, 0.049560547, -0.023330688, -0.15771484, -0.099975586, 0.019699097, 0.011390686, 0.008148193, 0.024749756, 0.035369873, -0.00072431564, 0.018035889, -0.021865845, -0.053131104, 0.0029277802, 0.04260254, 0.00060892105, 0.010856628]}, "B07RJDY54G": {"id": "B07RJDY54G", "original": "Brand: GasSaf\nName: GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS)\nDescription: Converts 1/4\" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

      For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

      Please double check your propane appliance connection before you order.
      (2 PCS)\nFeatures: Standard P.O.L. tank connection and 1/4\" male NTP to male POL, built-in excess flow protection(2 PCS)\nProvides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks\nUse for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly\nIt fit for BBQ, camping stoves, propane heater, or cooking outdoor\nEasy and quick to install to your propane equipment\n", "metadata": {"Name": "GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS)", "Brand": "GasSaf", "Description": "Converts 1/4\" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

      For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

      Please double check your propane appliance connection before you order.
      (2 PCS)", "Features": "Standard P.O.L. tank connection and 1/4\" male NTP to male POL, built-in excess flow protection(2 PCS)\nProvides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks\nUse for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly\nIt fit for BBQ, camping stoves, propane heater, or cooking outdoor\nEasy and quick to install to your propane equipment", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0051994324, -0.01309967, -0.026824951, -0.019729614, -0.026260376, -0.01802063, -0.01033783, 0.021636963, 0.0061149597, 0.0033779144, -0.033233643, 0.0234375, -0.016494751, -0.0155181885, 0.030639648, -0.030029297, 0.0011720657, 0.012184143, -0.018112183, -0.03387451, 0.0065078735, -0.046203613, 0.010414124, 0.05947876, -0.022750854, -0.02619934, 0.08917236, -0.0006222725, -0.002576828, -0.04522705, 0.014579773, 0.013473511, 0.032318115, 0.0077056885, -0.022949219, -0.03894043, 0.010391235, -0.011672974, -0.053833008, 0.04949951, 0.003036499, 0.026245117, -0.037322998, 0.015174866, -0.05709839, -0.040405273, -0.015090942, -0.01991272, 0.00995636, -0.0006661415, 0.00044322014, -0.010566711, 0.014579773, 0.008483887, -0.014419556, -0.008460999, 1.7881393e-06, -0.012107849, -0.00233078, 0.02468872, 0.013420105, 0.027740479, -0.00868988, -0.01979065, -0.01637268, -0.0013847351, 0.04067993, 0.0073509216, 0.0262146, -0.017181396, -0.015068054, 0.02319336, 0.0026817322, -0.008628845, -0.053771973, -0.0022830963, -0.008735657, -0.040374756, 0.024597168, 0.002532959, -0.036010742, 0.0075531006, -0.00374794, 0.0018053055, -0.011695862, 0.0027313232, -0.032318115, 0.0025577545, -0.034240723, -0.03591919, -0.027160645, 0.029800415, -0.035339355, -0.023269653, -0.054595947, -0.003419876, -0.054656982, -0.09362793, 0.04260254, 0.013954163, 0.034362793, -0.03768921, 0.04345703, 0.023605347, 0.003643036, 0.027160645, -0.01713562, -0.04071045, 0.015434265, 0.011497498, -0.0052337646, 0.04727173, 0.019332886, -0.028518677, -0.01713562, 0.038848877, 0.023391724, -0.002784729, 0.0088272095, -0.006126404, -0.0047073364, -0.012138367, 0.036590576, -0.03314209, 0.031204224, 0.016235352, -0.04385376, -0.008911133, -0.057525635, 0.05178833, -0.016983032, -0.024810791, 0.041778564, 0.10266113, 0.029266357, -0.025039673, 0.024337769, -0.02456665, 0.023208618, -0.0006341934, 0.016281128, -0.02734375, -0.011795044, 0.022003174, -0.031234741, 0.009880066, 0.0066833496, 0.0113220215, 0.0036792755, -0.022476196, -0.041503906, -0.01411438, 0.017089844, 0.02760315, -0.0033054352, 0.008468628, -0.00021004677, -0.004875183, -0.0051002502, -0.021255493, -0.0023899078, -0.029693604, -0.0340271, -0.0033550262, -0.037750244, 0.033477783, 0.030166626, -0.00289917, 0.014190674, 0.03942871, -0.014030457, 0.0028362274, 0.0006132126, 0.012641907, -0.00072193146, 0.0056419373, -0.05581665, 0.1026001, 0.055877686, -0.11767578, -0.054748535, -0.061035156, 0.11456299, -0.022216797, 0.021224976, -0.038970947, 0.009185791, -0.025772095, -0.008399963, 0.015167236, 0.01701355, 0.036865234, 0.011932373, -0.059539795, -0.022583008, 0.022888184, 0.034179688, 0.025619507, -0.008094788, 0.013046265, -0.040527344, 0.04058838, -0.0064468384, 0.047698975, 0.06756592, -0.0014677048, 0.021270752, 0.010398865, 0.013305664, 0.023513794, -0.00047373772, -0.013938904, -0.00040531158, -0.023757935, -0.013694763, 0.018173218, -0.023849487, 0.022445679, -0.010032654, -0.008934021, 0.019989014, -0.026687622, 0.030883789, 0.044555664, -0.016586304, -0.0146102905, -0.016967773, -0.00472641, -0.021820068, -0.01133728, 0.019592285, 0.031311035, 0.053833008, 0.032043457, -0.0045928955, 0.027786255, 0.041748047, 0.0027751923, -0.024429321, 0.0018911362, 0.02758789, -0.02947998, -0.030593872, -0.010650635, -0.019989014, -0.04437256, 0.014701843, -0.023223877, -0.00919342, -0.0020256042, 0.041809082, -0.010246277, 0.030700684, -0.014221191, -0.0020942688, 0.007724762, 0.0025939941, 0.022735596, -0.059143066, 0.03945923, -0.011787415, 0.016220093, 0.007949829, -0.0113220215, 0.045043945, 0.009284973, 0.0063056946, 0.008666992, -0.07446289, 0.03237915, 0.0357666, 0.030654907, -0.006629944, -0.046325684, -0.017745972, -0.021759033, -0.016052246, 0.037719727, -0.0132369995, -0.048980713, 0.012023926, -0.0018100739, 0.042510986, -0.012451172, 0.07281494, 0.0049057007, 0.01826477, -0.05178833, -0.0075035095, -0.016098022, 0.042541504, -0.017547607, -0.019607544, 0.00050735474, -0.024337769, -0.04284668, 0.038604736, -0.031982422, 0.018707275, 0.0007195473, 0.05303955, 0.080200195, -0.0059432983, 0.019943237, -0.011795044, -0.01071167, -0.043273926, 0.028717041, 0.013717651, -0.014160156, -0.026916504, 0.031463623, 0.0013904572, 0.012077332, 0.022735596, -0.00137043, 0.007144928, 0.03668213, 0.043518066, 0.049835205, -0.018463135, 0.003993988, -0.03579712, 0.0012979507, 0.0038375854, 0.018478394, -0.016433716, -0.001824379, -0.025817871, -0.007221222, -0.025024414, -0.055419922, -0.026626587, -0.00023758411, -0.014045715, 0.0118255615, 0.013870239, 0.049224854, 0.018127441, -0.07849121, 0.00554657, 0.0022087097, -0.033447266, 0.025619507, -0.07409668, -0.011558533, 0.04550171, 0.0076675415, -0.009162903, -0.0055885315, 0.029205322, 0.0017623901, -0.0025196075, -0.035705566, 0.003326416, 0.030380249, -0.003068924, -0.028152466, 0.009750366, -0.06237793, 0.0064697266, -0.031341553, -0.04421997, -0.054534912, 0.051330566, -0.0011310577, -0.03656006, -0.034820557, -0.007030487, 0.015640259, 0.007675171, 0.00932312, -0.05014038, -0.021835327, -0.0146102905, -0.006214142, 0.026824951, -0.011619568, 0.031982422, 0.023132324, 0.03213501, 0.04244995, -0.011154175, 0.008300781, -0.016494751, 0.043701172, 0.050048828, 0.019714355, -0.0066108704, -0.035217285, 0.0043296814, 0.052093506, -0.024505615, -0.020889282, -0.025024414, -0.004463196, -0.020874023, -0.014640808, -0.007686615, -0.0043029785, -0.0026340485, -0.022720337, -0.012672424, -0.0059814453, 0.024597168, -0.06829834, 0.031341553, -0.046417236, 0.009880066, 0.07940674, -0.040039062, 0.03036499, -0.022750854, 0.0071907043, -0.010223389, 0.029647827, -0.03744507, -0.0060157776, -0.04360962, 0.04437256, 0.048187256, -0.052520752, 0.0048217773, 0.0362854, 0.003955841, -0.040985107, 0.016952515, -0.016983032, -0.028961182, 0.050354004, -0.008331299, -0.004184723, -0.013504028, -0.017456055, -0.02607727, 0.0104522705, 0.016021729, 0.0028152466, 0.039276123, -0.023239136, -0.016693115, -0.0118255615, -0.0143585205, 0.029647827, -0.034179688, 0.019683838, -0.018203735, -0.012252808, -0.03564453, -0.01675415, 0.010803223, 0.02432251, 0.018936157, 0.01939392, -0.012023926, 0.060058594, 0.023284912, 0.029083252, 0.0051460266, 0.042022705, 0.03125, 0.0099105835, -0.015655518, 0.007949829, 0.005191803, -0.05718994, -0.03475952, 0.014213562, -0.012031555, -0.005180359, -0.0034599304, 0.11352539, 0.0087509155, -0.0127334595, 0.0059165955, 0.0256958, 0.027618408, -0.035461426, 0.037506104, -0.016586304, -0.048797607, 0.013221741, -0.11016846, 0.05899048, 0.011108398, -0.005584717, 0.043548584, 0.05239868, 0.00043034554, 0.053253174, 0.060180664, -0.021347046, 0.0423584, 0.016082764, -0.027236938, -0.010726929, 0.0010557175, -0.017929077, 0.017684937, -0.0007982254, -0.03125, 0.033081055, -0.0014343262, -0.02645874, -0.03894043, 0.022338867, -0.005077362, -0.01234436, 0.012489319, -0.060058594, -0.009757996, -0.042144775, 0.024551392, 0.03488159, -0.021591187, -0.00058317184, -0.004371643, 0.029403687, -0.044403076, -0.010047913, -0.0054855347, -0.053375244, 0.04888916, 0.0309906, -0.032226562, 0.006980896, 0.010726929, -0.021881104, -0.06878662, 0.004901886, 0.04333496, 0.040008545, 0.002243042, -0.052764893, 0.028533936, 0.012069702, -0.00066041946, 0.052703857, -0.027130127, -0.07080078, -0.0178833, 0.0178833, 0.029663086, -0.046173096, 0.019714355, -0.030258179, 0.029693604, 0.0115737915, -0.021621704, -0.010787964, 0.0013618469, 0.0039749146, -0.026184082, -0.012748718, -0.048461914, 0.07537842, -0.029815674, 0.0067596436, -0.027542114, 0.022659302, 0.029037476, 0.039276123, -0.07434082, -0.013549805, -0.045135498, -0.016189575, 0.025985718, -0.02168274, -0.014793396, 0.006664276, -0.03753662, 0.011253357, 0.016036987, -0.058258057, -0.0077819824, -0.034301758, -0.026916504, 0.023498535, -0.017227173, 0.046173096, 0.019180298, 0.034210205, -0.03805542, 0.061645508, -0.0680542, 0.02810669, 0.020385742, 0.0046195984, -0.058898926, -0.010620117, 0.05718994, -0.0034160614, 0.011367798, 0.008918762, -0.0063972473, 0.019760132, -0.024642944, -0.061462402, -0.02067566, -0.013381958, -0.019683838, 0.010368347, -4.851818e-05, -0.0064697266, 0.0037765503, 0.041931152, -0.01890564, -0.0021400452, -0.0014295578, -0.03704834, -0.00066423416, -0.019546509, -0.0126571655, 0.053588867, -0.031555176, -0.026870728, -0.07836914, 0.0847168, 0.03161621, 0.007232666, 0.014976501, -0.024932861, 0.0037345886, -0.035583496, -0.0063171387, 0.038146973, 0.020004272, 0.0006990433, -0.035095215, -0.00699234, -0.027877808, -0.021469116, -0.009437561, -0.011016846, -0.0034275055, -0.0031433105, -0.009880066, -0.037384033, -0.04534912, -0.0041160583, -0.0046653748, 0.004825592, -0.009788513, 0.017974854, -0.008110046, -0.016036987, -0.011177063, -0.015930176, -0.0026931763, -0.017501831, 0.0020008087, -0.0060920715, -0.029815674, 0.0034885406, 0.010818481, 0.004787445, 0.016647339, 0.007068634, 0.02192688, -0.030776978, -0.010345459, 0.04171753, 0.0037517548, -0.01399231, 0.04711914, 0.015113831, 0.026123047, 0.007297516, 0.017944336, -0.0069503784, -0.032562256, -0.00491333, 0.027023315, 0.012374878, 0.012588501, -0.055725098, 0.11383057, -0.012588501, 0.016860962, -0.081726074, 0.008132935, -0.03955078, 0.0028018951, 0.010238647, -0.017044067, 0.041778564, -0.0625, -0.027435303, 0.007797241, 0.012702942, -0.05819702, -0.030136108, 0.010154724, -0.048736572, -0.014221191, 0.004360199, -0.04055786, 0.058776855, 0.011291504, -0.0008058548, 0.039611816, 0.0071411133, -0.07739258, -0.040618896, -0.011978149, 0.01890564, 0.026046753, -0.03225708, -0.0005412102, -0.010032654, -0.022567749, -0.005531311, -0.015701294, 0.0070114136, -0.033325195, -0.032989502, -0.024459839, -0.0126953125, -0.01626587, 0.056488037, -0.015625, -0.03604126, 2.5451183e-05, 0.020507812, 0.015960693, -0.00086402893, -0.028945923, 0.0065956116, -0.013877869, -0.0019569397, -0.005706787, 0.020080566, 0.06463623, -0.041503906, -0.04095459, -0.062408447, 0.046203613, -0.030212402, -0.04449463, 0.03540039, 0.022338867, 0.009567261, -0.0013580322, -0.022781372, -0.0463562, -0.014076233, -0.01902771, -0.019454956, -0.03250122, -0.05142212, -0.00680542, 0.032409668, 0.016403198, -0.004272461, 0.022018433, -0.0058517456, 0.019805908, -0.017547607, 0.013023376, -0.0178833, -0.03555298, 0.012191772, -0.0053100586, 0.017166138, 0.019226074, 0.028137207, -0.06707764, -0.029190063, -0.0003402233, 0.03982544, 0.025543213, -0.0066223145, -0.009613037, 0.014167786, -0.057037354, 0.03564453, 0.021255493, -0.029296875, 0.005783081, 0.022827148, -0.02696228, 0.053527832, -0.042022705, -0.004234314, -0.009674072, 0.024719238, 0.0004775524, 0.010063171, -0.043426514, -0.052337646, 0.0002142191, 0.04763794, 0.0053634644, -0.050598145, 0.0007157326, -0.0051116943, -0.04272461, -0.022338867, 0.0014915466, -0.01184082, -0.0028438568, -0.05203247, -0.0069847107, -0.024673462, -0.019332886, 0.012962341, 0.01020813, -0.028778076, -0.020614624, 0.00022542477, -0.0029754639, -0.015197754, 0.04852295, -0.0390625, -0.00070524216, -0.032043457, 0.0038890839, -0.011917114, 0.003944397, -0.020736694, 0.008705139, 0.03869629, 0.0029773712, 0.0042419434, -0.026123047, -0.023864746, 0.040161133, 0.0026550293, -0.03237915, 0.032073975, 0.023757935, -0.032073975, -0.039764404, -0.012428284, -0.023239136, 0.038116455, 0.024932861, 0.014823914, 0.012367249, 0.05911255, -0.038513184, -0.022247314, -0.023086548, -0.045074463, -0.008529663, 0.0024738312, -0.007801056, 0.0131073, -0.0096588135, -0.01953125, 0.044921875, -0.018600464, -0.006969452, -0.035003662, 0.036315918, -0.004589081, -0.004386902, -0.032958984, -0.061035156, -0.034332275, -0.0077667236, 0.016830444, 0.05609131, 0.0020923615, 0.07116699, -0.027694702, 0.026626587, -0.0051193237, -0.03741455, -0.036315918, 0.0154953, -0.042297363, -0.09185791, -0.10595703, -0.029510498, -0.034210205, -0.04147339, 0.059295654, -0.04598999, 0.028579712, -0.008308411, 0.016723633, 0.059814453, 0.025405884, 0.045135498, -0.05630493, 0.0060195923, 0.025466919, -0.015357971, -0.018600464, -0.027191162, 0.013511658, 0.032043457, 0.0012254715, 0.014503479, -0.020980835, -0.010093689, 0.0044670105, -0.009788513, -0.013191223, -0.008529663, -0.011047363, 0.01600647, -0.01486969, 0.012908936, -0.026916504, -0.027267456, 0.0016002655, 0.0012922287, -0.0413208, 0.025985718, 0.023208618, -0.009941101, -0.019042969, -0.0015354156, 0.0030899048, 0.016998291, 0.0032100677, 0.062072754, 0.020309448, -0.0051612854, 0.03201294, -0.01675415, -0.06188965, -0.006198883, 0.033996582, -0.024291992, -0.033172607, -0.06500244, 0.02243042, 0.0049972534, -0.004348755, 0.010116577, 0.115356445, -0.022109985, 0.016708374, -0.022003174, -0.05496216, 0.0042877197, -0.04498291, -0.024017334, -0.013389587, -0.060791016, 0.03930664, 0.013214111, -0.02279663, 0.01889038, -0.004135132, -0.028411865, 0.035705566, 0.03237915, -0.021530151, -0.02758789, 0.0057258606, 0.03050232, 0.008102417, -0.009399414, 0.024734497, 0.027313232, 0.02180481, 0.012077332, 0.0024662018, 0.025482178, 0.011642456, -0.012306213, -0.0035190582, -0.008476257, -0.01184845, 0.03250122, -0.011993408, -0.01675415, -0.013381958, 0.002040863, -0.025375366, -0.009208679, -0.005744934, 0.017471313, 0.007583618, 0.0032672882, -0.0020599365, -0.031799316, -0.023330688, -0.028640747, -0.037597656, 0.027297974, -0.029083252, -0.01928711, -0.015113831, -0.04989624, 0.0075187683, -0.04348755, -0.06188965, -0.02885437, -0.048706055, 0.031341553, 0.013069153, 0.016815186, -0.005542755, 0.033447266, -0.019622803, -0.025680542, 0.014045715, 0.029953003, 0.011703491, -0.049804688, 0.045684814, 0.018096924, 0.054840088, -0.012542725, -0.08093262, -0.047180176, 0.02709961, 0.019561768, -0.012008667, 0.067871094, -0.050109863, 0.0010976791, 0.019165039, -0.04446411, -0.060760498, 0.049804688, 0.12225342, -0.010787964, 0.03390503]}, "B00L1RSKHQ": {"id": "B00L1RSKHQ", "original": "Brand: KitchenAid\nName: KitchenAid Built In Head Propane Gas Grill in Stainless Steel\nDescription: \nFeatures: Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions\nNo assembly required\nPackage Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H\nFull stainless Steel construction\n", "metadata": {"Name": "KitchenAid Built In Head Propane Gas Grill in Stainless Steel", "Brand": "KitchenAid", "Description": "", "Features": "Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions\nNo assembly required\nPackage Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H\nFull stainless Steel construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.023239136, -0.0023860931, -0.049682617, -0.016815186, -0.017486572, -0.016571045, -0.019836426, 0.016815186, -0.031555176, -0.0008177757, -0.027740479, 0.04397583, 0.017456055, -0.040771484, 0.05316162, -0.014175415, 0.0025177002, 0.012176514, -0.01007843, -0.018417358, -0.015464783, -0.010345459, -0.030761719, 0.050445557, 0.037506104, -0.024963379, -0.04638672, -0.013328552, 0.03564453, 0.0154418945, 0.027313232, -0.0035381317, 0.04812622, -0.012893677, -0.025238037, -0.0014820099, 0.033569336, -0.03390503, -0.029678345, 0.009773254, 0.0036506653, 0.001704216, 0.026687622, -0.013687134, -0.013847351, -0.041290283, 0.03463745, -0.020965576, 0.03970337, 0.0043563843, -0.012199402, 0.0012607574, 0.0024738312, 0.0015211105, -0.0209198, -0.0066070557, 0.009109497, 0.00024163723, 0.026290894, -0.044006348, -0.020950317, 0.0043907166, 0.043029785, 0.032165527, -0.0034160614, 0.02696228, 0.09033203, -0.019180298, -0.01512146, -0.04812622, -0.01512146, -0.0011911392, 0.0068969727, 0.0048561096, -0.04711914, 0.004020691, 0.0058288574, -0.027313232, 0.032928467, -0.018218994, -0.020324707, 0.002319336, 0.017425537, -0.0066490173, -0.026855469, -0.0022716522, -0.016479492, -0.0070991516, 0.016403198, -0.022094727, 0.0065994263, -0.009315491, -0.05783081, 0.088378906, 0.015792847, -0.0051574707, -0.040252686, -0.04348755, 0.026153564, 0.017929077, 0.008972168, -0.02104187, 0.029571533, -0.015380859, -0.013328552, 0.027313232, 0.007587433, 0.076538086, 0.029724121, 0.0040893555, -0.009147644, -0.0340271, -0.044555664, -0.04071045, -0.030151367, 0.062927246, -0.035491943, 0.0026283264, 0.0023555756, 0.030853271, -0.04949951, -0.03414917, 0.012794495, 0.03012085, 0.030593872, 0.03274536, 0.015167236, 0.011810303, -0.041503906, 0.028182983, -0.03591919, 0.004840851, 0.07244873, 0.048034668, 0.01550293, -0.017181396, -0.0056037903, -0.0077285767, -0.0017681122, -0.022644043, -0.0056419373, 0.018798828, 0.057800293, 0.0044670105, -0.013221741, 0.0024299622, 0.023361206, 0.029678345, -0.037109375, -0.06677246, 0.03842163, -0.014678955, 0.029418945, 0.004951477, -0.057861328, 0.04043579, -0.036193848, 0.0137786865, -0.06088257, -0.007205963, -0.021392822, -0.023788452, -0.00044822693, -0.042022705, -0.054473877, 0.02381897, 0.028961182, -0.00037837029, 0.02281189, 0.08911133, -0.0024280548, -0.0050354004, 0.07171631, 0.005744934, -0.044067383, -0.013267517, 0.006126404, 0.02128601, 0.041534424, -0.049224854, -0.04397583, -0.03100586, 0.08392334, -0.046844482, -0.0042266846, -0.016830444, -0.0019874573, -0.02670288, 0.029342651, -0.002588272, 0.02305603, 0.00043320656, 0.02381897, -0.07733154, 0.0033855438, 0.0140686035, -0.012748718, -0.000831604, -0.00025606155, 0.038635254, 0.027008057, 0.019378662, -0.023330688, 0.007511139, -0.012786865, -0.0362854, 0.0046920776, 0.0040664673, 0.052215576, 0.041137695, -0.028808594, -0.0011415482, 0.017532349, -0.044647217, -0.0231781, 0.027557373, -0.01701355, -0.0038452148, 0.018417358, -0.012565613, 0.037719727, 0.014533997, 0.014167786, 0.023330688, 0.035583496, 0.032318115, -0.05117798, 0.015350342, 0.00023436546, 0.001660347, -0.0287323, 0.053833008, 0.057037354, 0.093322754, 0.001876831, 0.013214111, 0.049346924, 0.013076782, -0.008049011, -0.008644104, -0.0066871643, -0.015716553, -0.020370483, 0.06088257, 0.03741455, 0.029937744, -0.0039482117, 0.032073975, -0.015075684, -0.021484375, -0.0069274902, 0.0051231384, 0.060455322, 0.047821045, 0.004119873, 0.041992188, -0.04559326, -0.01159668, -0.0041389465, 0.019592285, -0.021499634, 0.041107178, 0.06518555, -0.01222229, -0.019683838, 0.0552063, 0.027908325, 0.03515625, -0.050689697, 0.032806396, 0.021606445, 0.031402588, -0.011817932, -0.02029419, -0.0146865845, -0.038482666, -0.03668213, 0.055511475, -0.012557983, -0.03692627, 0.0035247803, -0.040649414, 0.026504517, 0.014663696, 0.035491943, -0.011680603, 0.051849365, 0.017807007, -8.4877014e-05, 0.011497498, 0.020126343, 0.026443481, -0.012664795, 0.02432251, -0.029067993, -0.007041931, 0.04437256, 0.030151367, -0.008995056, -0.0077590942, 0.0009741783, 0.010734558, -0.037322998, 4.8160553e-05, -0.0027713776, -0.012077332, -0.017990112, 0.057006836, 0.028823853, -0.04272461, 0.029037476, 0.0345459, 0.03366089, 0.02142334, 0.042114258, 0.014732361, 0.0036239624, 0.05886841, 0.037963867, 0.035614014, 0.011558533, 0.0024433136, -0.018157959, -0.00018489361, 0.0067825317, 0.00039458275, -0.0046653748, -0.0009536743, -0.01184845, -0.0057411194, -0.0006303787, -0.021652222, -0.007461548, -0.01399231, -0.0045776367, -0.021942139, 0.008003235, -0.009254456, 0.005329132, 0.003419876, 0.029846191, -0.024459839, -0.006416321, -0.015464783, -0.045440674, -0.01612854, 0.054870605, -0.010368347, -0.009536743, 0.038970947, -0.012672424, -0.010887146, -0.027832031, -0.057739258, -0.021850586, 0.009605408, 0.013793945, -0.05630493, -0.0077667236, -0.06854248, -0.03665161, -0.0070724487, -0.060058594, -0.02168274, 0.06329346, -0.0231781, -0.06137085, -0.002626419, -0.019317627, 0.013511658, 0.036865234, -0.0043640137, -0.027267456, -0.022018433, -0.04598999, -0.029510498, 0.060455322, -0.0005540848, -0.02305603, 0.027389526, 0.008010864, 0.017089844, -0.017471313, 0.0067329407, -0.0035266876, 0.02053833, 0.015640259, 0.018981934, 0.010261536, -0.009986877, 0.0079422, 0.02722168, -0.016967773, -0.015533447, 0.013626099, 0.0028972626, -0.028533936, 0.0046043396, -0.040649414, -0.0014638901, -0.099609375, 0.028640747, -0.0146865845, -0.021209717, -0.009002686, -0.059295654, -0.04916382, -0.07470703, 0.008987427, 0.08068848, -0.013320923, -0.008811951, -0.02507019, 0.011756897, -0.015464783, 0.025115967, -0.009735107, -0.0104904175, 0.023712158, -0.037017822, -0.0027103424, -0.02986145, -0.0018062592, 0.018203735, -0.020523071, 0.013031006, -0.029525757, 0.008781433, -0.009689331, 0.025909424, -0.009338379, -0.009727478, -0.0368042, -0.021499634, -0.00092697144, 0.024337769, 0.013389587, -0.02696228, 0.02218628, -0.009025574, -0.05783081, -0.045288086, -0.04498291, 0.041259766, -0.020645142, -0.005405426, -0.070373535, -0.08465576, -0.014022827, -0.009811401, -0.0021572113, 0.016799927, 0.0129470825, 0.022445679, -0.008857727, 0.042297363, 0.045410156, 0.05493164, 0.016159058, -0.038238525, -0.040924072, -0.056121826, 0.04156494, 0.006603241, 0.002456665, -0.015472412, 0.0038890839, 0.009346008, -0.00793457, -0.0020103455, 0.0064086914, 0.037109375, 0.031204224, -0.028549194, 0.008239746, -0.027267456, 0.028533936, -0.01651001, -0.0014181137, -0.05105591, -0.018966675, 0.015686035, -0.10394287, 0.072143555, 0.039367676, -0.017333984, 0.03845215, 0.0054473877, 0.0099105835, 0.001745224, 0.0041389465, -0.014633179, 0.017028809, 0.023040771, 0.0011854172, -0.0026378632, 0.0010089874, -0.010154724, 0.019592285, -0.003709793, -0.011131287, 0.015914917, 0.026901245, -0.041809082, -0.053619385, 0.0056037903, 0.022598267, -0.015808105, -0.00023651123, -0.04272461, -0.014198303, -0.047210693, 0.0016832352, -0.0063209534, -0.010566711, -0.018508911, -0.015342712, -0.026275635, -0.022476196, 0.023956299, -0.0004184246, 0.009437561, -0.019165039, 0.021011353, 0.033081055, 0.009216309, -0.07397461, 0.044830322, -0.02406311, 0.008491516, 0.026031494, 0.027175903, 0.023422241, -0.015319824, 0.0054969788, -0.0259552, 0.012786865, 0.023605347, -0.03778076, -0.070739746, 0.002002716, 0.016677856, -0.013221741, -0.057525635, 0.005870819, -0.004234314, -0.010574341, -0.017700195, -0.033813477, -0.017684937, -0.028335571, -0.0067214966, -0.03970337, -0.021728516, -0.0031166077, -0.041046143, -0.04071045, 0.01576233, -0.014167786, -0.023086548, -0.001461029, 0.0033130646, -0.029525757, -0.0206604, -0.03930664, -0.0023727417, 0.05831909, 0.025634766, 0.055145264, -0.027328491, -0.0062065125, -0.01234436, 0.06604004, 0.010627747, 0.028045654, -0.04510498, -0.039367676, 0.007007599, 0.021270752, 0.08215332, -0.005344391, 0.03161621, -0.040283203, -0.008422852, -0.074645996, -0.0073242188, 0.057678223, -0.03010559, -0.04257202, -0.024902344, 0.07196045, -0.014808655, 0.04119873, 0.012275696, 0.012268066, -0.036834717, 0.0184021, -0.10748291, -0.048614502, -0.00014293194, -0.06976318, 0.0027446747, 0.00035834312, -0.03366089, 0.054107666, 0.04373169, -0.010475159, -0.080322266, -0.0003077984, -0.02758789, -0.028457642, 0.0018196106, -0.01928711, 0.0042304993, -0.04272461, 0.008224487, -0.0791626, 0.07952881, 0.07574463, -0.0063934326, -0.0021018982, 0.018463135, -0.036590576, -0.028717041, -0.0048828125, -0.023162842, -0.06286621, -0.02708435, -0.014381409, 0.02130127, 0.00843811, 0.013389587, -0.0056610107, -0.014259338, 0.023376465, -0.020492554, 0.0037078857, 0.006587982, 0.036193848, 0.016098022, -0.009033203, 0.008308411, -0.01914978, -0.011566162, 0.035125732, -0.032440186, -0.01524353, 0.012664795, -0.024734497, -0.013534546, -0.012039185, 0.0072288513, -0.025421143, -0.0064086914, 0.028793335, -0.02267456, -0.034851074, -0.00041890144, 0.042877197, -0.0015878677, -0.0047798157, 0.091796875, -0.031433105, 0.04425049, 0.03286743, -0.009300232, -0.027923584, 0.015106201, -0.036193848, 0.04623413, -0.011199951, -0.030273438, 0.05340576, 0.022277832, 0.009216309, -0.023895264, 0.058380127, -0.017837524, -0.0073928833, -0.022613525, 0.010864258, 0.06536865, 0.05557251, -0.0015802383, -0.053222656, 0.05871582, -0.02041626, -0.028793335, 0.0024642944, -0.006389618, -0.004711151, 0.027664185, -0.00869751, 0.010185242, -0.0012235641, 0.007709503, -0.018051147, -0.009819031, 0.016433716, -0.027877808, 0.011459351, 0.013648987, -0.024353027, -0.03704834, 0.015281677, -0.015960693, -0.0152282715, -0.024520874, 0.0041007996, -0.012123108, -0.0029296875, 0.03817749, 0.010261536, 0.009742737, 0.0056533813, -0.04736328, -0.055908203, -0.0073394775, -0.050750732, 0.018997192, -0.049987793, -0.03643799, -0.0013084412, -0.014434814, 0.025009155, -0.030395508, -0.046813965, -0.045898438, 0.007484436, 0.0184021, -0.02432251, -0.025131226, 0.0637207, -0.058044434, -0.033050537, -0.095581055, 0.019378662, -0.016647339, -0.025161743, 0.04626465, -0.008583069, 0.01574707, 0.019592285, 0.006298065, -0.011375427, 0.021026611, 0.013473511, -0.03543091, -0.021865845, -0.012870789, 0.0054016113, -0.0076942444, 0.01234436, -0.0066719055, 0.04840088, 0.00434494, -0.04714966, -0.033691406, -0.00026154518, 0.0011224747, -0.023254395, 0.013786316, -0.030441284, -0.014045715, -0.02319336, -0.021469116, -0.014205933, -0.007499695, 0.054504395, 0.027893066, -0.008674622, -0.0076408386, 0.012161255, 0.008872986, -0.02041626, 0.064331055, -0.033935547, -0.013885498, 0.0059547424, 0.072509766, 0.04663086, 0.04437256, -0.034851074, -0.03225708, -0.050964355, 0.03100586, 0.03918457, 0.06713867, -0.054595947, 0.033447266, 0.019210815, 0.039154053, 0.029708862, -0.007980347, 0.020690918, -0.01689148, -0.06964111, -0.0009589195, 0.017059326, -0.03463745, -0.093933105, -0.025268555, -0.03277588, 0.044189453, 0.016174316, 0.044311523, 0.010002136, 0.030426025, -0.018508911, -0.001876831, 0.008651733, 0.0036945343, -0.0013141632, -0.022567749, -0.056152344, 0.0017776489, 0.031982422, 0.0026779175, 0.0017757416, 0.0011234283, -0.008544922, 0.025024414, 0.021011353, 0.0158844, -0.031677246, 0.009490967, 0.030288696, -0.04550171, 0.0038146973, 0.058746338, 0.009063721, 0.01876831, -0.03326416, -0.0069084167, -1.4483929e-05, -0.0045051575, 0.006881714, -0.005634308, 0.017044067, 0.018737793, 0.0041503906, -0.0021038055, -0.010696411, -0.031402588, 0.06573486, -0.0056533813, -0.01071167, 0.00076007843, -0.0390625, -0.007003784, 0.055664062, -0.0027313232, -0.005367279, -0.01727295, 0.033294678, -0.019760132, 0.018508911, -0.024765015, -0.00080919266, 0.015716553, -0.008796692, 0.025299072, 0.025726318, 0.012481689, 0.019195557, 0.02734375, -0.017868042, 0.03062439, -0.025787354, 0.043823242, 0.04269409, 0.026992798, -0.044189453, -0.012664795, -0.0055389404, -0.014022827, 0.0110321045, 0.051940918, 0.0043144226, 0.0385437, 0.026855469, 0.014541626, 0.060760498, -0.027130127, 0.03729248, 0.010612488, 0.018844604, 0.0017757416, 0.007827759, -0.008934021, -0.03353882, -0.0006170273, -0.0035572052, -0.008628845, 0.001783371, 0.022232056, 0.032684326, -0.008300781, -0.039855957, 0.021835327, -0.01953125, -0.029312134, 0.0703125, -0.051574707, 0.0039711, -0.010826111, -0.012374878, -0.034332275, -0.009590149, -0.038482666, 0.032226562, -0.005004883, 0.005924225, 0.03289795, -0.01524353, -0.0008716583, -0.02545166, 0.012611389, 0.012535095, 0.0011529922, -0.022949219, 0.07147217, -0.05807495, -0.013916016, -0.013015747, 0.0011091232, -0.057434082, -0.026428223, -0.018997192, 0.015686035, 0.0013828278, -0.017410278, 0.0044937134, 0.06713867, 0.015960693, -0.011672974, -0.013702393, -0.006942749, -0.010986328, -0.0016622543, -0.00642395, -0.018081665, -0.021453857, 0.035827637, 0.013557434, 0.0023651123, 0.05102539, -0.0146102905, -0.03137207, -0.003490448, -0.0013914108, -0.0032463074, -0.018615723, 0.0019168854, -0.004787445, -0.0055274963, -0.03955078, -0.04888916, -0.010169983, 0.026809692, 0.03829956, 0.036224365, 0.05419922, -0.005393982, -0.09832764, -0.05670166, -0.03579712, 0.038879395, 0.013000488, 0.0074386597, 0.023086548, 0.0013446808, -0.03744507, -0.0025405884, -0.0051841736, -0.020614624, 0.009117126, -0.029937744, 0.049102783, -0.002046585, -0.015899658, 0.050750732, -0.009742737, -0.017074585, -0.0016860962, -0.013717651, -0.017730713, -0.05029297, -0.033111572, 0.006000519, -0.0592041, -0.04043579, -0.010856628, -0.013137817, -0.009292603, -0.0013418198, 0.0034008026, 0.050720215, 0.007511139, -0.024627686, -0.011390686, 0.018417358, 0.0058403015, 0.013946533, -0.040161133, 0.0597229, 0.012031555, 0.06878662, 0.000213027, -0.09967041, -0.06506348, 0.04324341, 0.056030273, -0.036224365, 0.08544922, -0.021453857, 0.0065612793, 0.03189087, -0.0051956177, -0.023834229, 0.021194458, 0.03225708, 0.024887085, 0.010910034]}, "B07P5KPZ1T": {"id": "B07P5KPZ1T", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.\nFeatures: \u3010Adjustable Propane Regulator\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "metadata": {"Name": "GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit", "Brand": "GASPRO", "Description": "GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.", "Features": "\u3010Adjustable Propane Regulator\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010353088, 0.0047302246, -0.034210205, -0.020584106, -0.007633209, -0.01777649, -0.011329651, -0.009231567, 0.023162842, 0.0041236877, -0.031921387, 0.0026435852, 0.013687134, -0.030929565, 0.012886047, -0.022155762, 0.02998352, 0.027755737, 0.040802002, -0.0067596436, -0.0034885406, 0.024612427, -0.002576828, 0.06463623, 0.020950317, 0.0040740967, 0.0209198, 0.013366699, 0.015670776, 0.011734009, 0.016967773, -0.015670776, 0.042144775, 0.030899048, -0.061035156, -0.012008667, 0.01146698, -0.016464233, -0.044830322, 0.061431885, -0.0063934326, 0.027023315, -0.003856659, 0.031204224, -0.018859863, -0.05407715, 0.0025081635, -0.04321289, 0.025024414, 0.015029907, -0.0026607513, 0.024597168, 0.0019083023, -0.016113281, -0.015052795, -0.041259766, -0.024429321, 0.004711151, 0.0024967194, 0.025497437, 0.008415222, 0.015281677, 0.0053863525, 0.0067710876, -0.021148682, 0.030471802, 0.062561035, -0.025665283, 0.01083374, -0.013389587, 0.00078487396, -0.0015306473, 0.024276733, -0.00040745735, -0.058624268, -0.012817383, 0.031921387, -0.018112183, 0.01586914, -0.0181427, 0.039520264, 0.007335663, 0.028579712, 0.009346008, 0.013313293, 0.041046143, -0.010177612, -0.036254883, -0.041412354, -0.030776978, -0.01878357, -0.0030765533, -0.08380127, 0.0013618469, 0.008605957, -0.020477295, -0.011947632, -0.11151123, 0.06262207, 0.011459351, 0.0713501, -0.056640625, 0.048614502, 0.036987305, 0.015808105, 0.07733154, -0.024902344, -0.012168884, 0.03466797, -0.003194809, 0.020080566, -0.025756836, -0.023956299, -0.023712158, -0.028427124, 0.042114258, -0.014793396, -0.03793335, -0.00422287, -0.031280518, -0.018753052, 0.013519287, 0.027542114, -0.044555664, -0.004951477, -0.010627747, -0.018661499, -0.026504517, -0.035461426, 0.028549194, -0.020645142, 0.00068330765, 0.070129395, 0.07775879, 0.01828003, -0.008972168, 0.020004272, 0.00030970573, -0.008758545, 0.01828003, -0.010314941, -0.030471802, -0.016143799, 0.011688232, -0.015640259, 0.02053833, 0.02897644, 0.0043144226, 0.0025482178, -0.04360962, -0.034118652, 0.010299683, 0.053344727, 0.017807007, -0.043395996, 0.019042969, 0.021774292, -0.0058059692, -0.04574585, -0.049072266, -0.012023926, -0.03463745, -0.035705566, -0.015617371, -0.0435791, 0.048553467, 0.043304443, 0.0024223328, 0.013694763, 0.026657104, -0.011138916, 0.04348755, 0.0541687, 0.013999939, -0.00010573864, -0.009773254, -0.039886475, 0.060546875, 0.09777832, -0.1529541, -0.06896973, -0.042785645, 0.13952637, -0.037719727, 0.017471313, -0.02468872, 0.0010137558, -0.044769287, 0.005344391, 0.00844574, 0.001074791, 0.05029297, 0.007980347, -0.031402588, -0.00806427, 0.014053345, -0.021408081, 0.03314209, -0.014778137, -0.016494751, -0.06506348, 0.0073394775, -0.0036029816, 0.0077590942, 0.031173706, 0.0001783371, -0.0027828217, 0.03692627, 0.040924072, 0.010055542, -0.018371582, -0.022857666, 0.013153076, -0.01663208, -0.04714966, 0.005378723, 0.00077962875, -0.026031494, -0.008834839, -0.027374268, 0.020080566, -0.0124053955, -0.0023460388, 0.07385254, 0.0074653625, -0.041656494, 0.021148682, -0.014297485, 0.020004272, 0.0028095245, 0.00049448013, -0.00085020065, 0.052886963, 0.041503906, -0.023590088, 0.035736084, 0.059692383, 0.040222168, -0.032165527, -0.00762558, 0.016311646, -0.02178955, -0.046447754, -0.018585205, -0.024032593, -0.062927246, -0.0019073486, -0.010009766, -0.050048828, -0.025100708, 0.0619812, 0.020324707, 0.022659302, -0.011680603, -0.03201294, 0.032806396, -0.027236938, 0.012069702, -0.035369873, 0.02659607, -0.0062789917, 0.036468506, 0.042297363, -0.018814087, 0.046447754, 0.019638062, 0.054229736, 0.04446411, -0.0076408386, 0.018234253, -0.004966736, -0.013374329, -0.0070762634, -0.0032291412, -0.04058838, 0.00033211708, -0.016296387, 0.020324707, -0.029937744, -0.024765015, -0.0067863464, -0.001162529, -0.0052986145, -0.014533997, 0.038024902, -0.014205933, -0.00064468384, -0.011795044, 0.032043457, 0.0038795471, 0.035308838, -0.017959595, -0.015930176, 0.0048942566, 0.011550903, -0.051757812, 0.0715332, -0.047088623, 0.030319214, -0.030334473, 0.047821045, 0.06011963, -0.04321289, 0.043426514, -0.001364708, -0.026382446, -0.016616821, 0.013786316, 0.008117676, -0.025527954, 0.0035800934, 0.0635376, 0.021514893, -0.050933838, 0.042388916, 0.021362305, 0.0018825531, 0.012207031, 0.03010559, 0.054229736, 1.6391277e-05, 0.0063552856, 0.015777588, -0.0041389465, 0.023132324, -0.019638062, -0.007217407, -9.357929e-05, -0.03933716, 0.022369385, 0.034484863, -0.011550903, -0.001791954, -0.01512146, 0.009300232, 0.0009627342, -0.024734497, 0.063964844, -0.019454956, -0.04397583, -0.046905518, -0.059173584, 0.013000488, -0.003326416, -0.06298828, -0.041168213, 0.042114258, -0.010223389, 0.010040283, -0.011047363, 0.038848877, 0.015640259, -0.015090942, -0.0076904297, 0.00012540817, 0.018707275, -0.003704071, -0.032592773, 0.0038776398, -0.07312012, -0.029876709, -0.013885498, -0.07519531, -0.068603516, 0.087768555, -0.003194809, -0.060058594, -0.035705566, 0.0046310425, 0.0052986145, 0.02281189, 0.014266968, -0.033294678, -0.03982544, -0.034484863, -0.022399902, 0.02609253, -0.024520874, 0.01928711, 0.023895264, 0.016204834, 0.02520752, -0.009185791, 0.019882202, 0.03845215, 0.015304565, 0.04446411, 0.027633667, 0.014411926, -0.04095459, -0.012886047, 0.015022278, -0.03768921, -0.020904541, -0.014770508, -0.0058670044, 0.0053367615, 0.0024490356, -0.018371582, -0.014640808, -0.0043296814, -0.003993988, -0.017913818, -0.0023651123, 0.0006508827, -0.068725586, 0.00020337105, -0.037139893, 0.022506714, -0.008125305, 0.0028495789, 0.020690918, -0.0039482117, -0.008735657, -0.034698486, -0.0060157776, -0.021881104, -0.012641907, -0.026153564, 0.023620605, 0.056518555, -0.07672119, 0.017227173, 0.035491943, -0.008903503, 0.024093628, 0.0032367706, -7.224083e-05, 0.006401062, 0.027069092, 0.0041923523, -0.017044067, -0.054901123, -0.009498596, 0.012840271, 0.034423828, 0.03567505, -0.01826477, 0.03717041, -0.009391785, -0.10461426, -0.024490356, -0.036254883, -0.004924774, -0.009857178, -0.04043579, -0.032684326, -0.09802246, 0.030227661, -0.042236328, 0.025146484, -0.007610321, 0.07330322, 0.02003479, -0.010566711, 0.06298828, 0.011199951, 0.048187256, 0.0051651, -0.005004883, -0.012260437, -0.03591919, 0.05581665, 0.0022945404, -0.03036499, -0.030059814, 0.01914978, -0.002254486, -0.0077781677, -0.016479492, -0.024551392, 0.066345215, -0.03564453, -0.021011353, 0.028503418, 0.020019531, -0.011253357, -0.019500732, 0.02998352, 0.008430481, -0.014434814, -0.005241394, -0.06365967, 0.06976318, 0.040527344, -0.0184021, 0.019104004, 0.030670166, -0.005607605, -0.029754639, 0.05154419, -0.016647339, 0.01828003, -0.009567261, 0.0002424717, -0.05960083, 0.00983429, -0.045288086, 0.020874023, 0.019317627, -0.034210205, 0.020629883, -0.016098022, -0.038085938, -0.038024902, 0.01109314, 9.214878e-05, 0.02734375, 0.025985718, -0.0793457, 0.0033950806, -0.014541626, -0.013420105, 0.039978027, -0.04763794, -0.018630981, -0.021270752, 0.020202637, -0.06149292, -0.0002901554, -0.019607544, -0.008056641, -0.0014562607, 0.02810669, 0.014259338, 0.020324707, -0.042633057, 0.033935547, -0.012382507, 0.03540039, 0.033843994, 0.01612854, 0.010887146, -0.039276123, 0.020111084, -0.01878357, -0.0005159378, 0.033111572, 0.033355713, -0.02961731, -0.0063667297, -0.0039367676, -0.0048713684, -0.022964478, -0.020980835, -0.03543091, -0.04827881, 0.03237915, -0.03567505, 0.024612427, 0.008087158, -0.008049011, -0.030838013, -0.01096344, -0.01651001, 0.024795532, -0.042022705, -0.014472961, -0.008377075, 0.02784729, -0.006008148, 0.02432251, -0.04449463, 0.005126953, -0.057373047, -0.0067863464, 0.047546387, 0.0093307495, 0.01448822, -0.032043457, -0.022567749, -0.0070228577, 0.02281189, -0.032104492, 0.0075683594, -0.018737793, -0.010383606, -0.007358551, 0.03918457, 0.058532715, 0.00019598007, 0.035308838, -0.016952515, -0.0074424744, -0.07537842, 0.0095825195, 0.015838623, -0.029342651, -0.05041504, -0.0027046204, 0.093444824, -0.0064888, 0.01374054, 0.043273926, 0.0362854, -0.010093689, 0.005264282, -0.13500977, -0.027511597, -0.0019359589, -0.0070114136, 0.005580902, -0.012023926, -0.0059661865, 0.04147339, 0.047790527, 0.022949219, 0.022323608, -0.0029354095, 0.029022217, -0.018066406, 0.0005464554, -0.020202637, -0.003238678, -0.02331543, 0.027511597, -0.028015137, 0.02494812, 0.008880615, -0.0084991455, 0.004425049, -0.021850586, 0.004119873, -0.031921387, -0.014419556, 0.030014038, 0.056854248, -0.0042915344, -0.049194336, 0.0072250366, -0.046295166, -0.016235352, 0.0017127991, 0.054595947, 0.036590576, -0.07543945, -0.0019607544, -0.012496948, -0.012039185, -0.0011472702, 0.0029754639, 0.0064468384, -0.026229858, 0.0552063, -0.0007715225, 0.0005531311, 0.009353638, -0.031341553, -0.005672455, -0.041412354, 0.0103302, 0.0035419464, -0.027389526, 0.011962891, 0.032440186, -0.0021648407, -0.009254456, 0.023742676, -0.0042152405, 0.0010662079, -0.031707764, 0.028121948, 0.0077400208, -0.023284912, 0.08679199, -0.038360596, 0.007396698, 0.02859497, -0.016036987, 0.04421997, -0.008651733, -0.0069351196, -0.00051403046, -0.008888245, -0.00025820732, -0.020202637, 0.062286377, 0.0016050339, 0.023834229, -0.07220459, -0.0017881393, 0.0024356842, -0.0029029846, 0.042266846, -0.039642334, 0.030288696, 0.006614685, -0.011451721, 0.028747559, 0.009979248, -0.01272583, 0.016571045, 0.023727417, -0.013366699, -0.04385376, 0.014427185, -0.014923096, -0.012084961, 0.015945435, -0.024337769, 0.029663086, -0.009666443, -0.055847168, -0.035095215, -0.036315918, 0.02720642, -0.015106201, -0.00047516823, -0.01600647, 0.00868988, -0.011878967, -0.02255249, 0.035736084, 0.013084412, -0.03894043, -0.026977539, 0.006099701, 0.034484863, 0.003818512, 0.025314331, -0.009422302, -0.032714844, 0.0058021545, 0.014450073, 0.015670776, -0.03189087, -0.015274048, 0.00248909, -0.010887146, -0.014007568, -0.046081543, -0.011428833, 0.058135986, -0.048095703, -0.055603027, 0.014564514, 0.0068244934, -0.007419586, -0.018508911, 0.05606079, 0.014892578, 0.0069274902, 0.028701782, 0.018417358, -0.047454834, 0.022720337, 0.007461548, -0.07141113, -0.06842041, -0.04171753, -0.04663086, 0.00844574, -0.02128601, -0.03012085, 0.02418518, -0.03152466, 0.028579712, -0.016830444, -0.017547607, -0.028137207, -0.012069702, 0.009223938, -0.004650116, 0.03439331, -0.026687622, 0.0211792, -0.06390381, -0.059265137, -0.012214661, 0.021713257, 0.008026123, 0.017700195, 0.0032653809, 0.01966858, -0.03805542, 0.026367188, 0.031555176, -0.037109375, -0.032836914, -0.012275696, 0.011238098, 0.02357483, -0.043762207, 0.019104004, -0.017807007, 0.0007843971, -0.031921387, 0.031951904, -0.054534912, -0.034484863, -0.021133423, 0.06173706, -0.0060195923, -0.017181396, -0.0008292198, 0.01689148, 0.005104065, -0.031707764, -0.026428223, -0.010871887, -0.00025868416, -0.033447266, -0.042175293, -0.026870728, -0.030197144, 0.0042762756, 0.001376152, -0.0042686462, -0.05166626, 0.054473877, -0.014297485, -0.012191772, 0.0056152344, -0.012962341, 0.034301758, -0.025131226, 0.018981934, -0.01486969, 0.008682251, 0.012641907, -0.014022827, 0.026000977, 0.035095215, -0.0020923615, -0.05847168, 0.030426025, 0.027160645, -0.062042236, -0.0055503845, -0.008117676, 0.0014820099, -0.023742676, 0.009338379, -0.000603199, 0.00415802, 0.031555176, 0.03237915, 0.021850586, -0.024978638, 0.03543091, -0.0022830963, -0.0027713776, -0.012664795, -0.022491455, 0.017913818, -0.017333984, -0.001244545, 0.006477356, -0.052459717, 0.019729614, 0.019638062, -0.008888245, 0.0335083, -0.03768921, 0.012565613, -0.022018433, 0.0158844, -0.02015686, -0.026016235, -0.026687622, 0.0024490356, 0.01537323, 0.047454834, -0.010276794, 0.021087646, -0.04937744, -0.018585205, 0.0098724365, -0.032073975, -0.0008535385, 0.021011353, -0.036834717, -0.061645508, -0.05596924, -0.017654419, -0.050720215, 0.004627228, 0.0033626556, -0.01876831, 0.02168274, -0.01537323, 0.0060768127, 0.074279785, 0.03112793, 0.039367676, -0.07543945, 0.0036563873, 0.037231445, -0.015640259, -0.001282692, -0.002620697, -0.023376465, 0.00048828125, -0.008331299, -0.030212402, -0.0026931763, -0.005027771, -0.0022583008, -0.008102417, -0.020111084, 0.017440796, -0.0072669983, 0.013175964, -0.03387451, 0.012428284, -0.029846191, -0.07550049, -0.031982422, -0.0009717941, -0.037963867, 0.041290283, 0.034698486, -0.013420105, 0.019180298, -0.0058288574, -0.03744507, -0.024368286, 0.0022201538, 0.010536194, -0.0058517456, 0.0131073, 0.05569458, -0.013725281, -0.08282471, -0.05947876, 0.047821045, -0.06378174, -0.025222778, -0.05709839, 0.029510498, 0.022338867, 0.0022525787, 0.042022705, 0.04147339, 0.009521484, 0.009757996, -0.011978149, -0.028457642, -0.020339966, 0.046325684, 0.0073928833, -0.019104004, -0.034820557, 0.020233154, 0.0070533752, 0.046020508, 0.0033569336, 0.0546875, -0.009086609, 0.03692627, -0.007980347, -0.033294678, 0.0020713806, -0.009033203, 0.050628662, 0.031433105, -0.026794434, 0.04714966, 0.018341064, 0.0073661804, 0.01574707, 0.0127334595, 0.031280518, -0.02583313, -0.044403076, -0.01512146, -0.02015686, 0.017074585, 0.027069092, -0.026184082, 0.004070282, 0.0066337585, -0.00894165, -0.014045715, 0.007671356, -0.0048675537, 0.029083252, 0.016448975, 0.009361267, 0.009483337, -0.036621094, -0.010620117, -0.027893066, -0.038909912, 0.009262085, 0.013549805, -0.034454346, -0.038360596, -0.0023403168, -0.0056495667, -0.028671265, -0.013076782, -0.0284729, 0.0047950745, 0.019699097, -0.008331299, 0.03253174, -0.021514893, 0.03564453, 0.013717651, -0.048431396, 0.009536743, 0.040252686, -0.0072631836, -0.038085938, 0.022613525, 0.02583313, 0.04916382, -0.0096206665, -0.07269287, -0.055999756, 0.038726807, 0.033813477, -0.02558899, 0.057891846, -0.013870239, 0.011245728, 0.014587402, -0.008628845, 0.002614975, -0.008079529, -0.021087646, -0.02243042, 0.0003566742]}, "B085Y769KW": {"id": "B085Y769KW", "original": "Brand: TheElves\nName: TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch\nDescription: TheElves heavy duty waterproof Fire Pit/table Cover:
      1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
      2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
      3#. Waterproof design and air vents at sides can keep fire pit/table dry.
      4#. Double stitched seams add the strength of cover.
      5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
      6#. Protect fire pit/table from UV, rain, dust, bird's dropping etc.
      7#. Come with four useful accessories that prevent the cover from being scratched.

      Package Include:
      1 x Fire Pit Cover
      1 x Storage Bag
      4 x Accessories That Prevent The Cover From Being Scratched

      TheElves Team:
      ---We are the producers of covers.
      ---We provide high quality covers.
      ---We provide efficient logistics.
      ---We provide satisfactory customer service.\nFeatures: Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table.\nDurable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant.\nWater-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry.\nWindproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated.\nExtra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.\n", "metadata": {"Name": "TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch", "Brand": "TheElves", "Description": "TheElves heavy duty waterproof Fire Pit/table Cover:
      1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
      2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
      3#. Waterproof design and air vents at sides can keep fire pit/table dry.
      4#. Double stitched seams add the strength of cover.
      5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
      6#. Protect fire pit/table from UV, rain, dust, bird's dropping etc.
      7#. Come with four useful accessories that prevent the cover from being scratched.

      Package Include:
      1 x Fire Pit Cover
      1 x Storage Bag
      4 x Accessories That Prevent The Cover From Being Scratched

      TheElves Team:
      ---We are the producers of covers.
      ---We provide high quality covers.
      ---We provide efficient logistics.
      ---We provide satisfactory customer service.", "Features": "Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table.\nDurable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant.\nWater-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry.\nWindproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated.\nExtra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016311646, -0.014053345, -0.046875, -0.023757935, -0.021560669, -0.0026283264, -0.0132751465, 0.04727173, -0.018035889, 0.004497528, -0.038482666, 0.03643799, -0.034362793, -0.014251709, 0.0033931732, -0.055908203, 0.02279663, -0.01525116, 0.04257202, -0.014907837, 0.001824379, -0.00818634, 0.054504395, 0.030197144, 0.011428833, -0.057739258, 0.04269409, -0.019363403, 0.027114868, -0.011878967, 0.022094727, 0.0010633469, 0.056396484, 0.0021247864, -0.037261963, -0.014251709, -0.005455017, -0.018203735, -0.040405273, 0.036499023, 0.00868988, 0.007320404, 0.0072364807, -0.029174805, -0.011772156, -0.04333496, 0.045776367, 0.0023345947, -0.027191162, 0.008728027, 0.0087890625, 0.013343811, 0.016540527, 0.0121154785, -0.0060310364, -0.00724411, 0.010650635, -0.03451538, 0.018371582, -0.036834717, 0.013641357, 0.01701355, 0.037506104, 0.06188965, -0.056121826, 0.038146973, 0.097595215, -0.01689148, 0.011123657, -0.080200195, -0.019088745, 0.043701172, 0.001039505, -0.008331299, -0.039215088, -0.010169983, 0.0014219284, -0.020355225, 0.00020515919, 0.016433716, -0.006816864, -0.011016846, 0.048553467, -0.033081055, 0.015617371, 0.008720398, -0.0074691772, -0.014808655, 0.012817383, -0.038482666, -0.006313324, -0.00011944771, -0.008605957, 0.030334473, -0.01586914, -0.012001038, -0.00843811, -0.054351807, 0.03845215, -0.007209778, 0.053527832, -0.04525757, 0.005065918, 0.019866943, -0.003753662, 0.03656006, -0.018539429, 0.03579712, 0.04107666, 0.022766113, -0.0020008087, -0.037139893, -0.019302368, -0.016708374, -0.02406311, 0.014656067, -0.016662598, -0.04446411, -0.00042200089, -0.033966064, -0.04763794, -0.05331421, -0.0035171509, 0.03152466, 0.035461426, 0.021072388, -0.010345459, 0.04815674, -0.008422852, 0.016036987, 0.020721436, -0.005962372, -0.046295166, 0.046905518, 0.0010757446, 0.0058937073, 0.051940918, -0.035888672, -0.009849548, -0.0055007935, 0.0039043427, 0.03048706, 0.035461426, -0.031341553, -0.064697266, 0.016082764, 0.018508911, 0.0019454956, -0.022125244, -0.041107178, -0.037475586, -0.0023612976, 0.030822754, 0.02482605, -0.024383545, 0.015174866, 0.054260254, -0.029891968, -0.05593872, -0.05657959, 0.008125305, 0.02394104, -0.009567261, -0.03048706, -0.019332886, -0.04272461, -0.00063610077, 0.01626587, 0.019851685, 0.07824707, 0.022994995, 0.03189087, -0.032440186, 0.021865845, -0.00013327599, -0.031707764, -0.015327454, 0.0836792, 0.064086914, -0.11340332, -0.09063721, -0.09765625, 0.14416504, -0.06048584, 0.0028915405, -0.029052734, 0.009605408, -0.019378662, 0.036224365, 0.0037822723, -0.004261017, -0.001906395, -0.014587402, -0.026809692, -0.016357422, -0.0075950623, -0.010917664, 0.008430481, -0.018478394, 0.018157959, -0.025817871, -0.0022468567, 0.010772705, 0.0044174194, 0.024368286, -0.0057754517, 0.0036563873, 0.020050049, -0.011169434, 0.022705078, 0.02571106, 0.03111267, -0.04559326, -0.03656006, -0.021011353, 0.0021781921, -0.0020771027, 0.029083252, -0.0024089813, 0.026016235, 0.026229858, -0.012039185, 0.012802124, -0.015777588, -0.0027637482, -0.057281494, -0.0041770935, -0.033691406, 0.0317688, -0.043182373, 0.04135132, 0.050598145, 0.04510498, 0.009155273, -0.03829956, 0.050048828, 0.057006836, 0.018310547, -0.031799316, 0.0001078248, 0.021713257, -0.025558472, -0.01902771, 0.009292603, -0.014778137, -0.035614014, 0.017364502, -0.0052604675, -0.021209717, 0.02041626, 0.0345459, -0.006916046, -0.0028247833, -0.008743286, -0.03012085, 0.025863647, -0.032958984, 0.0037155151, 0.010696411, 0.032440186, -0.019958496, 0.056610107, 0.064819336, -0.01436615, 0.016799927, -0.0067825317, 0.05596924, 0.056549072, 0.009147644, -0.036071777, -0.0025634766, 0.04522705, -0.009277344, 0.046569824, 0.017532349, 0.031097412, -0.008605957, -0.020584106, -0.038757324, 0.014816284, -0.0035057068, -0.0011148453, -0.011177063, -0.0048103333, 0.030822754, -0.011360168, -0.0019741058, -0.005672455, -0.007019043, -0.009742737, 0.017852783, 0.014266968, 0.0058517456, -0.005191803, 0.020584106, -0.00178051, -0.025299072, 0.014373779, 0.019104004, -0.001616478, -0.02784729, 0.048095703, 0.0061912537, 0.0049705505, 0.004508972, 0.0496521, 0.01083374, 0.0070495605, 0.017211914, -0.017059326, -0.009231567, -0.01902771, 0.016494751, -0.0030345917, 0.020355225, -0.012916565, -0.022323608, 0.038513184, 0.019165039, 0.041931152, -0.010322571, -0.008888245, -0.023788452, -0.03137207, -0.006668091, 0.017730713, -0.059631348, 0.0007686615, -0.048187256, 0.027114868, 0.039367676, -0.034820557, -0.0062942505, -0.04196167, -0.006500244, -0.004501343, 0.013175964, 0.02230835, 0.01348114, -0.03945923, 0.007698059, 0.012939453, -0.01197052, 0.011756897, -0.09899902, -0.019134521, 0.05935669, -0.007827759, 0.0178833, -0.010223389, 0.04864502, -0.018325806, -0.04034424, -0.023117065, -0.013923645, 0.05505371, 0.033599854, -0.017547607, 0.03692627, -0.054748535, -0.032043457, 0.0041160583, -0.046661377, -0.022872925, 0.032287598, -0.021835327, -0.039093018, -0.0061531067, 0.019256592, 0.015731812, 0.07092285, -0.001039505, -0.055603027, -0.031433105, -0.03302002, -0.030029297, 0.0068359375, -0.047180176, -0.021057129, -0.01802063, -0.019042969, -0.0030956268, 0.009536743, 0.04321289, 0.034088135, 0.00762558, 0.023345947, 0.045135498, 0.0033683777, -0.008834839, -0.0053215027, 0.031921387, -0.02053833, -0.019165039, -0.021209717, -0.0063323975, 0.018753052, -0.04837036, 0.0077171326, -0.030670166, -0.0501709, -0.0058021545, -0.009292603, -0.010551453, -0.0032024384, -0.03778076, -0.021102905, -0.034851074, -0.010101318, 0.059936523, -0.012107849, 0.010093689, -0.008354187, 0.013031006, 0.027694702, -0.01411438, 0.016723633, -0.0032863617, -0.04611206, 0.01474762, 0.06085205, -0.062805176, 0.019836426, 0.004623413, -0.011138916, -0.043640137, 0.014732361, 0.014556885, 0.011917114, 0.034942627, -0.019622803, -0.020736694, -0.013763428, 0.008781433, -0.045715332, 0.017730713, 0.0016555786, -0.014251709, 0.014404297, -0.03591919, -0.030853271, -0.020111084, 0.017471313, 0.0030498505, 0.011940002, -0.012260437, 0.0124435425, -0.004623413, -0.014762878, -0.024780273, -0.04385376, 0.023803711, -0.014152527, 0.013267517, -0.0051116943, -0.0009469986, 0.00092840195, 0.033813477, -0.008399963, 0.011802673, 0.004310608, -0.035308838, 0.04559326, -0.00762558, -0.01121521, -0.04168701, 0.022720337, 0.021636963, -0.007106781, -0.012779236, 0.013504028, 0.024490356, 0.020980835, -0.007881165, 0.029708862, 0.040985107, -0.025360107, -0.02418518, -0.030212402, 0.017303467, -0.07550049, -0.0045166016, -0.05834961, 0.047088623, 0.043762207, -0.013679504, 0.081848145, 0.0713501, -0.0008068085, 0.04559326, 0.03125, 0.0390625, 0.024993896, 0.070373535, 0.007926941, 0.0055503845, -0.00223732, 0.03503418, -0.0042152405, -0.041015625, 0.011566162, 0.0066223145, -0.0049934387, 0.016036987, -0.030929565, -0.04244995, 0.02798462, -0.014793396, 0.012573242, 0.020446777, 0.0038318634, -0.0034103394, -0.023956299, 0.014801025, -0.024246216, -0.0077056885, -0.00043058395, 0.044555664, -0.04067993, -0.02217102, -0.024261475, -0.032470703, 0.012619019, 0.03543091, -0.00020301342, 0.010910034, -0.030334473, 0.029006958, -0.035888672, -0.008148193, 0.01776123, 0.028045654, 0.03100586, -0.008842468, 0.010650635, 0.03451538, 0.00046753883, -0.05368042, -0.061828613, -0.021118164, 0.03387451, 0.03665161, -0.012504578, -0.02041626, 0.008705139, -0.06213379, -0.022628784, -0.03201294, 0.0017518997, -0.023712158, -0.035461426, -0.021865845, -0.11199951, -0.043121338, -0.02267456, 0.012191772, -0.04711914, 0.03265381, -0.022888184, -0.033416748, 0.0088272095, 0.062805176, -0.08276367, -0.021881104, -0.042541504, 0.0008382797, -0.0015792847, -0.013122559, -0.00037789345, -0.041992188, -0.010002136, -0.006126404, 0.049438477, -0.0059165955, -0.0034561157, -0.029281616, -0.011474609, -0.013313293, 0.029815674, 0.03845215, -0.00907135, 0.03793335, -0.011695862, 0.010856628, -0.07720947, 0.0044441223, 0.03137207, -0.051818848, -0.06298828, -0.05960083, 0.032562256, 0.035247803, 0.0026130676, -0.03086853, 0.0102005005, 0.026687622, -0.020828247, -0.05053711, -0.0317688, 0.0058403015, -0.054779053, 0.004383087, -0.011932373, -0.013771057, 0.074279785, 0.047088623, -0.016693115, -0.01637268, -0.030288696, 0.02444458, 0.006713867, 0.011116028, 0.01285553, -0.026519775, 0.022583008, 0.019592285, -0.043670654, 0.05480957, 0.01133728, -0.025802612, -0.0067710876, -0.011550903, -0.008354187, -0.045562744, 0.015571594, -0.058654785, -0.008270264, -0.006801605, -0.015594482, -0.031799316, -0.024673462, -0.0035037994, 0.0074691772, -0.01209259, 0.03463745, 0.02558899, -0.01828003, 0.0028419495, -0.059753418, -0.012321472, 0.024673462, 0.031188965, 0.045196533, -0.046936035, -0.0041999817, -0.022064209, -0.008598328, 0.02067566, -0.033813477, -0.016220093, -0.023239136, 0.020401001, 0.014266968, 0.014823914, -0.0061836243, 0.053710938, -0.021331787, 0.03036499, 0.007736206, -0.023361206, -0.043762207, 0.013893127, 0.05105591, -0.03387451, 0.048675537, -0.032043457, 0.004600525, 0.025970459, -0.040985107, 0.046936035, 0.0066375732, -0.06390381, 0.012168884, 0.07269287, 0.022705078, -0.020965576, 0.08538818, -0.0067367554, -0.047668457, -0.0096206665, 0.00466156, 0.0068855286, 0.028564453, -0.03451538, -0.004753113, 0.035949707, -0.034118652, -0.019180298, 0.009223938, 0.054595947, -0.04034424, -0.041046143, 0.040039062, -0.029968262, -0.022338867, 0.015541077, -0.017333984, -0.04019165, -0.013793945, -0.016601562, 0.041992188, -0.01473999, -0.01878357, -0.03149414, 0.00944519, -0.040618896, -0.03765869, -0.053375244, 0.04824829, 0.016601562, -0.024337769, -0.012008667, -0.022872925, 0.014091492, -0.040649414, -0.008804321, -0.051239014, -0.026138306, -0.026763916, 0.06149292, -0.045196533, -0.01537323, -0.03894043, 0.007091522, 0.025115967, -0.014007568, -0.07757568, -0.018814087, 0.014152527, 0.022033691, -0.019592285, -0.022872925, 0.017181396, -0.03286743, -0.017120361, -0.023956299, 0.035125732, -0.0082092285, -0.028259277, 0.06384277, 0.027755737, 0.006713867, 0.019241333, -0.014434814, -0.019485474, 0.041870117, 0.013122559, -0.018997192, 0.022018433, 0.006515503, 0.029464722, -0.008010864, 0.007537842, -0.005466461, 0.055236816, 0.0013933182, -0.032562256, -0.06964111, -0.006412506, 0.0017461777, 0.008895874, 0.008804321, -0.029464722, 0.00945282, -0.05355835, 0.0052261353, 0.0038700104, -0.025222778, -0.012664795, 0.0042266846, -3.1590462e-06, -0.00818634, -0.006904602, 0.012145996, 0.014877319, 0.02861023, 0.001958847, -0.052947998, -0.0052719116, 0.027664185, 0.045440674, -0.024597168, -0.02796936, -0.0143966675, -0.015403748, -0.023529053, 0.036224365, 0.014762878, -0.0012369156, 0.03955078, 0.034301758, 0.004337311, -0.03338623, -0.016235352, 0.01210022, 0.02557373, -0.06756592, -0.024902344, 0.063964844, -0.019882202, 0.005256653, -0.047332764, 0.009773254, -0.006477356, -0.009384155, 0.009147644, -0.016525269, 0.017669678, -0.02130127, 0.031402588, 0.013450623, 0.010543823, 0.025970459, -0.018127441, -0.004840851, 0.002817154, 0.014457703, -0.008102417, 0.012680054, -0.009643555, -0.009681702, 0.027114868, -0.00046038628, 0.028884888, 0.044769287, 0.00035619736, 0.0105896, -0.043304443, 0.042144775, -0.03164673, -0.015167236, 0.010787964, -0.04849243, -0.01651001, -0.02861023, 0.03225708, -0.036865234, 0.115478516, -0.051483154, 0.0035648346, 0.026870728, 0.03274536, -0.033416748, -0.032714844, 0.08679199, -0.022003174, -0.0006661415, -0.017456055, -0.050048828, -0.009010315, 0.021316528, -0.044525146, -0.022781372, 0.008323669, 0.016189575, 0.0021915436, 0.024520874, -0.03302002, 0.028549194, 0.026641846, -0.031051636, 0.028137207, -0.03753662, -0.0005493164, 0.03250122, 0.0043411255, -0.035980225, 0.034942627, -0.07373047, 0.05419922, 0.026473999, 0.001698494, -0.02684021, -0.029312134, -0.017227173, -0.004257202, 0.00042009354, 0.03338623, 0.007827759, 0.041229248, -0.01600647, 0.00919342, 0.02973938, -0.010108948, 0.031799316, -0.012504578, -0.014328003, -0.022613525, -0.00015962124, 0.00086832047, 0.0051002502, -0.008796692, -0.009727478, 0.03074646, 0.0206604, 0.02670288, 0.0030403137, 0.008621216, -0.013328552, -0.02243042, 0.0012874603, 0.0038852692, 0.04574585, -0.029846191, -0.00178051, -0.017105103, -0.012237549, -0.01928711, -0.017471313, -0.044067383, 0.022003174, -0.014022827, -0.015396118, -0.02130127, 0.014892578, 0.029510498, -0.040893555, -0.031982422, 0.018585205, 0.0059661865, 0.013267517, 0.07928467, -0.034698486, -0.04119873, -0.043762207, -0.006450653, -0.010643005, 0.0018529892, -0.0146484375, 0.014877319, 0.012634277, 0.0013542175, -0.002216339, 0.0826416, -0.006187439, 0.00019812584, 0.011962891, -0.044189453, -0.039154053, 0.042785645, 0.012680054, -0.019042969, -0.020401001, 0.032165527, 0.036956787, 0.021652222, 0.02293396, 0.023712158, -0.09869385, -0.010597229, -0.057739258, 0.043151855, -0.020401001, -0.026687622, 0.03744507, 0.012031555, -0.014930725, 0.023895264, 0.047027588, -0.012542725, 0.034942627, 0.015792847, -0.00027251244, -0.00046515465, -0.023895264, 0.016113281, -0.0035552979, -0.011375427, 0.0020866394, -0.014701843, 0.013336182, 0.019256592, 0.006038666, -0.04385376, -0.010948181, 0.041412354, -0.00907135, 0.034606934, -0.0017757416, -0.01776123, 0.004180908, 0.0035438538, -0.013450623, -0.070495605, 0.010055542, 0.0692749, -0.05227661, -0.025924683, -0.015281677, 0.0152282715, 0.0031051636, -0.0597229, -0.03869629, -0.06100464, 0.015823364, 0.027175903, -0.020828247, 0.029724121, 0.0010128021, -0.015090942, -0.015472412, 0.028961182, -0.011398315, 0.021820068, -0.005153656, 0.051208496, 0.0024375916, 0.114746094, 0.003320694, -0.05569458, -0.05206299, 0.048706055, 0.012420654, -0.033813477, 0.037078857, -0.029693604, 0.019943237, 0.03729248, 0.0050086975, -0.015220642, 0.05001831, 0.06854248, 0.019134521, 0.021255493]}, "B07W87SKTP": {"id": "B07W87SKTP", "original": "Brand: DOZYANT\nName: 5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More\nDescription: It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
      The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
      The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

      Specification
      - Length: 5 feet / 60 Inch/152.5 cm
      - Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
      - Inlet Pressure: 25-250PSIG
      - Outlet Pressure: 0-20PSIG
      - Max.flow capacity:136000BTU
      - End Connector: 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

      * The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
      * There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
      * This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

      Note:
      1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
      2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
      \nFeatures: Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8\" flare M x 1/8\" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nAdjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator.\nHigh quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off.\n100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances.\nNo tools needed, easy and quick attachment for easier installation.\n", "metadata": {"Name": "5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More", "Brand": "DOZYANT", "Description": "It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
      The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
      The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

      Specification
      - Length: 5 feet / 60 Inch/152.5 cm
      - Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
      - Inlet Pressure: 25-250PSIG
      - Outlet Pressure: 0-20PSIG
      - Max.flow capacity:136000BTU
      - End Connector: 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

      * The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
      * There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
      * This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

      Note:
      1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
      2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
      ", "Features": "Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8\" flare M x 1/8\" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nAdjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator.\nHigh quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off.\n100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances.\nNo tools needed, easy and quick attachment for easier installation.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.039520264, 0.0008993149, 0.005027771, -0.052001953, -0.010421753, -0.00047588348, -0.0287323, -0.015136719, -0.02243042, 0.016357422, -0.0024909973, 0.025970459, 0.01108551, -0.03515625, 0.022979736, -0.029251099, 0.026168823, -0.037902832, -0.028015137, -0.03451538, -0.016464233, -0.008476257, -0.017486572, 0.07110596, 0.030548096, -0.0033817291, 0.008522034, 0.024856567, 0.0058288574, -0.0061683655, 0.028366089, -0.0019130707, 0.04537964, 0.029052734, -0.0597229, -0.03668213, -0.019195557, -0.004562378, -0.053863525, 0.033599854, 0.008270264, -0.0046691895, -0.013633728, 0.036254883, -0.037506104, -0.02128601, -0.020065308, -0.03353882, 0.046173096, 0.0074882507, 0.010375977, 0.032318115, 0.019577026, -0.015914917, -0.026351929, -0.016036987, -0.018035889, -0.035614014, 0.011253357, 0.03086853, 0.013137817, 0.0021400452, 0.003320694, -0.009185791, -0.00447464, 0.012580872, 0.059570312, -0.003774643, 0.015625, -0.012496948, -0.005077362, 0.0151901245, 0.015144348, 0.0105896, -0.062683105, -0.026535034, 0.051696777, -0.013183594, 0.0062446594, -0.016326904, 0.01940918, -0.023330688, 0.07116699, 0.02885437, -0.0074424744, 0.054534912, -0.020507812, -0.030471802, -0.035583496, -0.030883789, -0.019744873, 0.011161804, -0.068115234, -0.005432129, -0.014701843, -0.019592285, -0.03555298, -0.095703125, 0.018356323, 0.013870239, 0.04748535, -0.05041504, 0.061676025, 0.014854431, 0.024108887, 0.053985596, -0.024749756, 0.009109497, 0.04550171, 0.009361267, 0.011817932, -0.004917145, 0.009178162, -0.022735596, -0.024291992, 0.016571045, 0.021057129, -0.0041885376, 0.020736694, -0.0056877136, -0.0042381287, 0.011077881, 0.05529785, -0.060150146, -0.020996094, -0.028671265, -0.04510498, -0.030807495, -0.050994873, 0.0029067993, -0.016403198, 0.007270813, 0.041046143, 0.08721924, 0.016113281, -0.008766174, 0.034484863, 0.04751587, 0.009498596, 0.01852417, -0.008338928, -0.028305054, 0.0011043549, 0.023391724, -0.02180481, 0.014778137, 0.0053901672, 0.034332275, 0.014053345, -0.04937744, 0.01386261, -0.030166626, 0.05316162, 0.0074539185, -0.04586792, 0.01939392, 0.0017442703, -0.005306244, -0.049682617, -0.041625977, -0.010292053, -0.036315918, -0.03286743, -0.023284912, -0.051208496, 0.05203247, 0.019882202, -0.007129669, 0.022491455, 0.05529785, 0.013702393, 0.03945923, 0.061157227, 0.035003662, -0.006061554, -0.0066566467, -0.024597168, 0.06896973, 0.08514404, -0.1385498, -0.064208984, -0.05508423, 0.12792969, -0.042419434, 0.016418457, -0.012306213, 0.013267517, -0.03881836, -0.019973755, 0.008872986, 0.010879517, 0.07165527, 0.032714844, -0.039489746, -0.017654419, -0.006252289, 0.00087070465, 0.029968262, -0.021469116, 0.0050354004, -0.07122803, 0.026916504, -0.0035209656, 0.01763916, 0.029556274, -0.0015659332, -0.0075187683, 0.04473877, 0.058807373, 0.026321411, -0.0074539185, 0.00046563148, 0.004917145, -0.032836914, -0.05810547, 0.01727295, 0.001909256, 0.0050964355, 0.010375977, -0.018508911, 0.05053711, -0.024520874, 0.028900146, 0.053497314, 0.03970337, -0.03237915, -0.0050697327, -0.02734375, 0.020599365, -0.011672974, 0.0012998581, 0.03543091, 0.07110596, 0.030776978, -0.01776123, 0.04360962, 0.060302734, 0.013839722, -0.035217285, 0.0054473877, 0.022888184, -0.01852417, -0.030670166, -0.02458191, -0.013366699, -0.08917236, -0.016052246, -0.00843811, -0.030761719, -0.007133484, 0.014907837, -0.017028809, 0.031311035, -0.009437561, -0.05618286, 0.030441284, -0.015930176, 0.030807495, -0.03640747, -0.00045609474, -0.011306763, 0.022033691, 0.026382446, -0.0026340485, 0.023086548, 0.022369385, 0.041809082, 0.03793335, -0.014518738, 0.007080078, -0.0002887249, -0.00031375885, -0.003578186, -0.03152466, -0.042510986, 0.0012893677, -0.020263672, 0.035308838, -0.0124053955, -0.03048706, 0.015068054, 0.023239136, -0.019638062, -0.0048599243, 0.029129028, 0.021743774, -0.010017395, 0.0063323975, 0.05682373, 0.009750366, 0.037902832, 0.0047073364, 0.012184143, 0.025985718, 0.00030350685, -0.024108887, 0.043945312, -0.004573822, 0.0256958, -0.016204834, 0.017654419, 0.05645752, -0.032440186, 0.0440979, 0.0032100677, -0.022949219, -0.0061569214, 0.039855957, 0.026977539, -0.011695862, -0.008705139, 0.044708252, 0.030914307, -0.022979736, 0.06149292, 0.028823853, 0.016479492, 0.027313232, 0.027236938, 0.023834229, -0.009437561, -0.0124435425, 0.025497437, -0.028884888, 0.01940918, -0.028579712, -0.0259552, 0.00818634, -0.032928467, 0.012069702, 0.017913818, -0.021377563, -0.011222839, -0.01626587, 0.0063972473, -0.0039749146, -0.005344391, 0.035125732, -0.019348145, -0.09039307, -0.042297363, -0.10357666, 0.009292603, 0.03692627, -0.02406311, -0.027999878, 0.046875, 0.0077819824, -0.00894928, -0.0070381165, 0.009483337, -0.028396606, -0.0087509155, -0.008880615, 0.023254395, -0.008026123, -0.016525269, -0.037506104, 0.012916565, -0.06945801, 0.0020961761, -0.049194336, -0.059570312, -0.002363205, 0.05682373, 0.0049209595, -0.026870728, -0.031311035, 0.019958496, 0.01663208, 0.030456543, -0.019363403, -0.029006958, -0.0071754456, 0.010253906, -0.03768921, 0.0519104, -0.0104904175, 0.021057129, 0.033721924, 0.027282715, 0.02420044, -0.011817932, -0.010902405, 0.011917114, 0.024551392, 0.061950684, 0.02355957, 0.028396606, -0.044647217, 0.026153564, 0.04425049, -0.02067566, -0.0068244934, -0.008453369, -0.00031876564, 0.0184021, -0.013092041, -0.01701355, -0.029129028, -0.035308838, 0.006603241, 0.0029201508, -0.0057296753, -0.0059509277, -0.07562256, -0.029144287, -0.037139893, 0.028717041, 0.03186035, -0.02168274, 0.048187256, -0.011329651, 0.023040771, -0.036865234, 0.010955811, -0.046813965, -0.011138916, -0.038879395, 0.042388916, 0.06213379, -0.089660645, 0.033111572, 0.062164307, -0.024658203, -0.008285522, 0.00014531612, 0.018692017, -0.01272583, 0.0062179565, -0.01852417, -0.028549194, -0.05593872, -0.0027046204, -0.0074005127, 0.028411865, 0.043182373, -0.020614624, 0.047576904, -0.0129470825, -0.08062744, -0.046173096, -0.01991272, 0.026809692, -0.02355957, -0.0065612793, -0.055786133, -0.07739258, -0.006164551, -0.030090332, 0.018554688, -0.0063819885, 0.05935669, 0.02658081, 0.0007252693, 0.08654785, -0.0027580261, 0.04611206, -5.0663948e-05, 0.016235352, 0.016693115, -0.02178955, 0.03918457, 0.021820068, -0.032318115, -0.026138306, 0.017959595, 0.02520752, 0.008514404, -0.028701782, -0.003709793, 0.07080078, -0.010063171, -0.0069084167, 0.018218994, 0.018722534, 0.000118911266, -0.014328003, 0.032196045, -0.0030593872, -0.012481689, 0.012702942, -0.09423828, 0.061431885, 0.038604736, -0.031951904, 0.01322937, 0.0084991455, -0.016860962, 0.028717041, 0.037231445, 0.00258255, 0.013374329, 0.030380249, -0.011306763, -0.022232056, -0.0024204254, -0.041503906, 0.023468018, -0.0033245087, -0.0026664734, 0.02998352, 0.048858643, -0.03869629, -0.019760132, 0.025909424, 0.0030574799, -0.0026741028, 0.0044288635, -0.0309906, -0.03050232, -0.03704834, 0.013771057, 0.0021381378, -0.009719849, 0.015434265, -0.00667572, -0.010574341, -0.0056762695, -0.004890442, -0.013412476, -0.014411926, 0.021087646, 0.033203125, 0.015701294, -0.0143585205, -0.0036468506, -0.0037765503, -0.024429321, 0.012290955, 0.044128418, 0.014892578, 0.028366089, -0.02355957, -0.007461548, 0.006374359, -0.03756714, 0.05166626, -0.004306793, -0.068237305, -0.040802002, 0.008956909, 0.021514893, -0.002817154, -0.017425537, -0.045837402, -0.032073975, 0.029846191, -0.06323242, 0.015716553, 0.031234741, 0.03338623, 0.011314392, -0.002861023, -0.040893555, 0.04522705, -0.029556274, -0.01473999, 0.002866745, 0.037475586, 0.008392334, 0.02558899, -0.043060303, -0.013458252, -0.041778564, -0.016723633, 0.07519531, 0.032806396, -0.004032135, -0.035095215, -0.011543274, -0.0015335083, 0.026000977, -0.043640137, -0.0021686554, -0.020935059, -0.007675171, 0.021102905, 0.03161621, 0.05706787, 0.00020289421, 0.0033302307, -0.037475586, -0.0034122467, -0.086120605, 0.021240234, 0.016311646, -0.053863525, -0.06213379, -0.0022296906, 0.09442139, 0.012168884, 0.028945923, 0.013389587, 0.0046424866, 0.022918701, -0.026519775, -0.121398926, -0.04269409, -0.013801575, -0.009925842, 0.0055885315, 0.0034694672, -0.0059013367, 0.034423828, 0.021224976, -0.024047852, 0.026123047, -0.0007724762, 0.013084412, -0.013717651, -0.007972717, -0.0029640198, 0.014465332, -0.01689148, -0.004787445, -0.040893555, 0.016204834, 0.015670776, -0.016036987, 0.0018978119, -0.016967773, -0.010131836, -0.0390625, -0.015289307, 0.020828247, 0.0256958, -0.0034770966, -0.036193848, 0.009513855, -0.023834229, -0.009567261, 0.0015287399, 0.023239136, 0.01361084, -0.023986816, -0.013679504, -0.046722412, -0.022705078, 0.029846191, 0.0018892288, 0.01776123, -0.045410156, 0.025238037, 0.032226562, -0.0040512085, 0.009841919, -0.025512695, -0.0045394897, -0.01977539, 0.021453857, 0.008903503, -0.029556274, 0.012924194, 0.026489258, 0.013191223, 0.00037407875, 0.022384644, 0.013084412, -0.011199951, -0.028442383, 0.036376953, 0.011329651, -0.023864746, 0.0501709, -0.0362854, 0.03314209, 0.035736084, -0.028793335, 0.05758667, -0.004085541, 0.0022621155, 0.01373291, -0.0005145073, -0.0046081543, -0.037139893, 0.08898926, -0.0027828217, 0.020370483, -0.05343628, 0.016784668, -0.0051078796, 0.018295288, -0.012023926, -0.022994995, 0.020828247, -0.025146484, 0.0012311935, 0.044647217, 0.0040283203, -0.016845703, 0.0011024475, 0.020843506, -0.033111572, -0.037261963, 0.030303955, 0.0057029724, 0.017715454, -0.023330688, -0.04953003, 0.0446167, 0.012550354, -0.054779053, -0.021072388, -0.030944824, -0.011390686, -0.01600647, -0.021575928, -0.01991272, 0.006942749, -0.03050232, -0.008178711, 0.066467285, 0.0115737915, -0.02848816, -0.032409668, -0.0022888184, 0.024963379, -0.017944336, 0.032043457, -0.02494812, -0.023757935, -0.02658081, -0.029556274, 0.015930176, -0.058532715, -0.040283203, -0.032684326, -0.019958496, -0.029632568, 0.017974854, 0.0158844, 0.04849243, -0.02331543, -0.04333496, -0.029281616, 0.018325806, -0.031829834, -0.04196167, 0.06008911, 0.05456543, 0.0016069412, 0.0135650635, 0.0018138885, -0.049743652, 0.01802063, 0.01096344, -0.04989624, -0.054138184, -0.029144287, -0.022491455, -0.0034255981, -0.013435364, -0.034301758, 0.018707275, -0.026184082, 0.015487671, -0.021087646, -0.009994507, -0.019805908, -0.005836487, 0.0115737915, 0.0012435913, 0.026885986, -0.019180298, 0.039245605, -0.07952881, -0.06817627, -0.024139404, 0.015640259, 0.015670776, 0.03390503, 0.0032367706, 0.021469116, -0.05206299, -0.013587952, 0.016067505, -0.0043182373, -0.020935059, -0.0033168793, -0.008255005, 0.034240723, -0.050628662, 0.010612488, 0.002664566, -0.023452759, -0.03933716, 0.020584106, -0.051849365, -0.037963867, -0.011268616, 0.066467285, -0.015090942, 0.01727295, 0.037475586, 0.017303467, -0.007575989, -0.032470703, -0.030395508, -0.0178833, 0.003314972, -0.024795532, -0.03677368, -0.0016040802, -0.03164673, -0.0066108704, -0.01689148, 0.037109375, -0.042236328, 0.07299805, -0.017715454, 0.005886078, 0.035003662, -0.017654419, 0.06008911, -0.007205963, 0.03652954, -0.007472992, 0.027038574, -0.015701294, 0.009513855, 0.028244019, 0.016708374, 0.0037384033, -0.062805176, 0.039642334, 0.01878357, -0.070373535, 0.0067825317, 0.03918457, 0.005847931, 0.0017747879, 0.0019550323, -0.0017786026, 0.000726223, 0.023468018, 0.03717041, 0.034484863, -0.013977051, 0.034698486, -0.025650024, -0.018173218, -0.02772522, -0.028656006, 0.010513306, -0.0132369995, -0.013923645, 0.009918213, -0.06536865, 0.009864807, 0.015151978, -0.0012865067, 0.010169983, -0.019622803, 0.020645142, 0.018295288, 0.016647339, -0.032409668, -0.055633545, -0.053894043, -0.0013523102, 0.013710022, 0.022857666, -0.029724121, 0.020645142, 0.001288414, 0.0027751923, 0.016159058, -0.024780273, 0.029785156, 0.034057617, -0.037902832, -0.07366943, -0.05682373, -0.020568848, -0.034240723, -0.00749588, 0.0357666, -0.020645142, 0.059814453, 0.028381348, 0.0049819946, 0.074157715, 0.024459839, 0.022369385, -0.052246094, 0.024505615, 0.015205383, 0.015686035, 0.00762558, -0.037200928, -0.019195557, 0.0065841675, -0.01777649, -0.0022220612, 0.015274048, -0.004627228, -0.005420685, -0.008293152, -0.012802124, 0.008674622, -0.00945282, 0.010360718, -0.016311646, 0.04055786, -0.021743774, -0.040771484, -0.037322998, -0.03062439, -0.023040771, 0.06530762, 0.02017212, -0.007083893, 0.022613525, -0.014091492, -0.022628784, -0.02961731, 0.009048462, 0.029830933, 0.0003633499, -0.0059661865, 0.02973938, -0.0058135986, -0.050811768, -0.053222656, 0.028457642, -0.05505371, -0.009811401, -0.013000488, 0.028442383, 0.0413208, 0.018005371, 0.03640747, 0.02482605, 0.011505127, -0.0026721954, -0.0044288635, -0.015563965, -0.010055542, -0.0006546974, 0.009719849, -0.032196045, -0.03439331, 0.0024909973, 0.0057525635, 0.025100708, 0.017959595, 0.006259918, -0.011505127, 0.005153656, -0.010307312, -0.05267334, 0.0062789917, 0.0023727417, 0.031677246, 0.030731201, -0.021438599, 0.014152527, 0.005542755, -0.026611328, 0.0513916, 0.038970947, -0.008399963, -0.033050537, -0.06689453, -0.018325806, -0.006931305, 0.032043457, 0.0018339157, -0.048614502, 0.012954712, 0.0055007935, -0.02281189, 0.015930176, 0.04864502, -0.026016235, 0.018875122, 0.03753662, -0.0055389404, 0.019210815, -0.019088745, 0.009109497, -0.042663574, -0.01751709, -0.006652832, 0.021377563, -0.0345459, -0.048431396, -0.011390686, 0.01134491, -0.044708252, -0.03173828, -0.019454956, -0.02458191, 0.044006348, 0.010604858, 0.03062439, -0.017547607, 0.036895752, -0.011520386, -0.021453857, 0.036254883, 0.025360107, 0.03353882, -0.009864807, 0.00944519, 0.0124053955, 0.025985718, 0.0024318695, -0.07611084, -0.044067383, 0.030303955, 0.03277588, -0.032836914, 0.042175293, -0.019943237, 0.0045433044, 0.02166748, -0.019470215, -0.03164673, 0.007293701, 0.022445679, 0.008659363, 0.014732361]}, "B095JY9XMN": {"id": "B095JY9XMN", "original": "Brand: Zovoty\nName: Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)\nDescription:

      Have you already start the wonderful Barbecue party?
      Is your grill still look as new as you bought it?

      BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
      BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

      How does the Grill Cover protect your expensive grill?

      1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
      600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
      Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

      2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
      With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

      3.Extra Larger Design Ensure to Fit Various Kinds of Grills
      According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58\"x24\"x48\")fits most brands of grills, such as Weber, Char Broil etc.
      And, it also fits well for the 2 3 4 burner gas grill.
      Warm tips: Please measure your grill first before purchasing!

      4.Handle,velcro straps, Vents
      The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
      The convenient velcro straps ensure tightness for extreme outdoor conditions. Don't worry the grill cover will be blown off.
      The vents help keep you expensive grill ventilation.\nFeatures: FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58\"x 24\"x 48\") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly\nRIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring\n600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc\n100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don't allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area's all year's rainy day\n2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don't worry to have it outside on a typical wet and stormy day\n", "metadata": {"Name": "Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)", "Brand": "Zovoty", "Description": "

      Have you already start the wonderful Barbecue party?
      Is your grill still look as new as you bought it?

      BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
      BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

      How does the Grill Cover protect your expensive grill?

      1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
      600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
      Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

      2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
      With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

      3.Extra Larger Design Ensure to Fit Various Kinds of Grills
      According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58\"x24\"x48\")fits most brands of grills, such as Weber, Char Broil etc.
      And, it also fits well for the 2 3 4 burner gas grill.
      Warm tips: Please measure your grill first before purchasing!

      4.Handle,velcro straps, Vents
      The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
      The convenient velcro straps ensure tightness for extreme outdoor conditions. Don't worry the grill cover will be blown off.
      The vents help keep you expensive grill ventilation.", "Features": "FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58\"x 24\"x 48\") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly\nRIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring\n600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc\n100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don't allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area's all year's rainy day\n2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don't worry to have it outside on a typical wet and stormy day", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.012359619, -0.014808655, -0.029266357, -0.042755127, -0.007789612, 0.002614975, -0.01235199, 0.02607727, -0.061676025, -0.011299133, 0.0028743744, 0.03353882, -0.04385376, -0.039642334, 0.047973633, -0.042236328, 0.0046195984, 0.012001038, 0.024780273, -0.021057129, 0.0074043274, -0.01763916, 0.024307251, 0.033111572, 0.0038204193, -0.025726318, 0.023605347, -0.018066406, 0.015991211, -0.012229919, 0.0052261353, -0.0005235672, 0.021896362, 0.0052261353, 0.005748749, 0.008384705, -0.020355225, 0.0096588135, 0.016708374, 0.0013713837, 0.0055274963, -0.0020980835, 0.015975952, -0.013183594, 0.016799927, -0.04119873, 0.015136719, -0.07305908, 0.013641357, -0.008117676, 0.03845215, 0.041778564, 0.026168823, 0.0149002075, -0.019088745, 0.024276733, -0.0048561096, -0.017715454, 0.028778076, 0.015068054, -0.0098724365, -0.008575439, 0.022521973, -0.011154175, -0.024230957, -0.002084732, 0.060516357, 0.0021247864, -0.092163086, -0.057769775, 0.050201416, -0.01499176, 0.009880066, -0.019241333, -0.0390625, -0.008804321, 0.00044107437, -0.02897644, 0.018157959, -0.0009160042, -0.013015747, -0.046020508, 0.05142212, -0.01600647, 0.0041236877, 0.017242432, -0.013160706, -0.00881958, 0.010658264, -0.020751953, 0.0057144165, 0.04333496, -0.03326416, 0.028671265, -0.0011110306, -0.017547607, -0.03781128, 0.013877869, -0.033966064, 0.027496338, 0.020935059, -0.020477295, 0.0748291, -0.054260254, -0.021820068, 0.06945801, 0.0065574646, 0.04925537, -0.002084732, 0.005214691, 0.0016965866, -0.06121826, -0.013946533, -0.06365967, -0.016921997, 0.03866577, 0.0050621033, -0.03277588, 0.043914795, -0.049987793, -0.04473877, -0.0119018555, -0.037872314, 0.03881836, 0.03744507, 0.029876709, 0.018966675, 0.029815674, -0.030792236, 0.010177612, -0.0090789795, 0.0067100525, 0.014907837, 0.05834961, 0.019882202, -0.00970459, 0.05178833, -0.025650024, -0.00712204, 0.016220093, -0.033935547, 0.030853271, 0.064331055, -0.059173584, -0.006450653, 0.017852783, 0.0129776, 0.0074424744, -0.008773804, -0.054779053, 0.033966064, -0.047576904, 0.08502197, -0.02444458, -0.09075928, -0.025604248, -0.002822876, -0.013442993, -0.05670166, -0.074401855, -0.024353027, -0.0036258698, 0.008079529, -0.031463623, -0.05001831, 0.023605347, 0.00868988, 0.009269714, 0.024520874, 0.014968872, 0.016464233, -0.031585693, -0.014709473, 0.016113281, 0.010139465, 0.022338867, -0.0019550323, 0.088134766, 0.05419922, -0.09698486, -0.061950684, -0.06829834, 0.1328125, -0.047302246, 0.008026123, -0.029968262, -0.0072250366, -0.05117798, 0.03918457, -0.011856079, 0.009666443, -0.0035972595, 0.0046539307, -0.0060653687, 0.008758545, 0.0065994263, -0.025039673, 0.025741577, -0.013153076, -0.05392456, -0.03765869, -0.0018978119, 0.009689331, 0.018554688, 0.021453857, 0.00022530556, -0.0046806335, 0.025024414, 0.0154953, 0.03555298, 0.0033130646, 0.0124435425, -0.019378662, -0.049835205, -0.013824463, -0.015808105, -0.028778076, 0.025238037, 0.009269714, 0.022415161, 0.032440186, 0.009262085, 0.031204224, 0.00034713745, -0.012710571, -0.027633667, 0.010772705, -0.0027103424, 0.009414673, 0.022705078, -0.0036354065, -0.019714355, 0.0826416, 0.055725098, -0.009101868, 0.028945923, 0.040649414, -0.023223877, -0.035125732, 0.022064209, 0.00029182434, -0.01322937, -0.043029785, 0.042907715, -0.027282715, -0.036468506, -0.013122559, 0.038269043, -0.042938232, -0.008049011, 0.012924194, 0.04901123, 0.015945435, -0.024795532, -0.008560181, 0.054107666, -0.028137207, 0.0317688, -0.031677246, 0.041931152, -0.034484863, 0.023757935, 0.07055664, -0.010505676, 0.00932312, -0.00034499168, 0.029632568, 0.036712646, 0.003030777, -0.017990112, 0.0039043427, 0.0013494492, 0.007926941, 0.031463623, 0.025634766, 0.0050621033, 0.014175415, -0.024002075, 0.0071487427, 0.0065231323, 0.010864258, 0.029678345, -0.0005097389, -0.009536743, 0.011428833, -0.00056123734, 0.003320694, -0.005962372, -0.017105103, -0.033355713, 0.0030651093, 0.0043525696, -0.025222778, 0.0054512024, 0.03060913, -0.03036499, -0.007209778, 0.027923584, -0.011444092, -0.011703491, -0.024642944, 0.024291992, 0.010635376, -0.02671814, -0.013694763, 0.018127441, -0.010604858, 0.0031433105, 0.0026283264, -0.022384644, -0.005580902, 0.040374756, 0.025253296, -0.0032024384, 0.072021484, 0.017471313, 0.048797607, 0.045440674, 0.08581543, 0.03894043, -0.016189575, -0.007183075, -0.04724121, -0.03543091, -0.0018196106, 0.04019165, -0.06561279, -0.0020923615, -0.048736572, 0.015853882, -0.007736206, -0.035491943, -0.023895264, -0.00041627884, -0.011039734, 0.01348114, 0.007549286, -0.04067993, 0.00819397, -0.0030727386, 0.027633667, 0.014472961, -0.0078125, -0.012199402, -0.04776001, -0.0063323975, 0.052764893, 0.0047950745, -0.038848877, 0.0019245148, 0.040618896, -0.049041748, -0.024978638, -0.06970215, -0.026443481, 0.02267456, 0.0054359436, -0.091796875, -0.013404846, -0.09838867, -0.0063591003, -0.00919342, -0.04006958, 0.032592773, 0.039611816, -0.031341553, -0.014320374, 0.007511139, 0.031311035, 0.03567505, 0.029281616, 0.021820068, -0.017349243, -0.028411865, -0.01876831, -0.050445557, -0.0072135925, -0.06488037, -0.012260437, -0.02520752, -0.040039062, -0.011695862, 0.010810852, 0.024475098, -0.006576538, 0.042266846, 0.014503479, 0.061401367, -0.05429077, -0.04559326, -0.027297974, 0.085876465, -0.017120361, -0.034118652, 0.024795532, 0.026428223, -0.0036468506, 0.017562866, -0.0008544922, -0.03302002, -0.054107666, 0.013694763, 0.0045394897, -0.029541016, -0.026000977, -0.042907715, -0.040802002, -0.03540039, -0.020721436, 0.066589355, -0.049041748, 0.02319336, -0.04827881, 0.017654419, 0.03390503, -0.010894775, -0.006046295, -0.006843567, -0.011932373, 0.01600647, 0.0009050369, 0.01651001, 0.001405716, 0.022766113, -0.006542206, 0.007217407, -0.011016846, -0.003982544, -0.012962341, 0.015975952, -0.016464233, -0.025375366, -0.00069999695, -0.012168884, -0.049346924, -0.011528015, 0.010665894, 0.02015686, 0.03390503, -0.044067383, -0.0070228577, 0.004119873, -0.015686035, 0.02798462, -0.019256592, -0.0016422272, 0.010803223, -0.03277588, -0.031707764, -0.04888916, -0.018325806, 0.02407837, 0.012664795, 0.026260376, 0.010116577, 0.06384277, -0.01133728, 0.04373169, 0.0033798218, -0.013320923, -0.023910522, -0.048431396, 0.081970215, -0.0041770935, -0.031677246, -0.022476196, 0.052856445, -0.0031356812, -0.038391113, 0.014198303, -0.03363037, 0.037353516, 0.021118164, -0.012664795, 0.0065193176, -0.03302002, 0.0018262863, 0.01184082, -0.003686905, -0.012428284, -0.048309326, -0.015594482, -0.07116699, 0.09484863, 0.054595947, -0.010383606, 0.082092285, 0.091308594, -0.026275635, 0.040527344, 0.030853271, 0.026031494, 0.0090408325, 0.04562378, -0.01651001, 0.0044937134, 0.010223389, -0.026397705, -0.007865906, -0.025161743, 0.0016078949, -0.018753052, -0.036224365, 0.010383606, -0.018417358, 0.05529785, 0.05480957, -0.0027179718, -0.024978638, -0.05218506, 0.037200928, -0.058563232, 0.02508545, -0.0013713837, -0.0045051575, 0.005218506, 0.02192688, -0.007648468, -0.0061416626, -0.014862061, -0.0017032623, -0.027862549, 0.025466919, 0.00466156, 0.028182983, -0.000120818615, 0.025650024, 0.03274536, -0.028335571, -0.0074043274, 0.02760315, 0.01701355, 0.015327454, -0.0058784485, 0.010246277, 0.023971558, 0.0077934265, 0.017074585, 0.009109497, -0.04763794, 0.017593384, 0.027999878, -0.004058838, -0.042907715, 0.017822266, -0.053588867, -0.028900146, -0.026565552, -0.060668945, -0.0141067505, -0.030731201, -0.004760742, -0.029083252, 0.022735596, 0.01626587, -0.033691406, -0.05557251, -0.0025939941, -0.014251709, 0.040374756, -0.019378662, 0.07269287, -0.01940918, -0.068725586, 0.007045746, 0.009536743, 0.05633545, 0.04135132, 0.019958496, -0.01651001, -0.011695862, -0.033416748, 0.060333252, 0.006965637, -0.017181396, -0.027542114, 0.00415802, 0.011070251, 0.018737793, 0.01020813, -0.0058059692, 0.014633179, -0.012641907, 0.019989014, -0.06695557, -0.01878357, 0.06524658, -0.062347412, -0.04989624, -0.044158936, 0.06359863, 0.0022830963, -0.04876709, -0.0496521, 0.0385437, 0.019973755, 0.031143188, 0.037841797, 0.03643799, 0.033477783, 0.0054855347, 0.0002989769, 0.0060920715, -0.01133728, 0.002614975, -0.021194458, -0.026672363, -0.00198555, 0.0039749146, 0.027511597, -0.0046920776, 0.019897461, -0.025817871, -0.0032291412, -0.012039185, -0.025894165, -0.042877197, 0.06359863, 0.019958496, 0.0030021667, 0.0072898865, -0.017654419, 0.016235352, -0.03881836, 0.016815186, -0.05419922, -0.0038871765, -0.012123108, -0.01473999, -0.000320673, -0.030456543, 0.00217247, 0.024993896, -0.029388428, 0.03152466, -0.010749817, 0.02998352, -0.016906738, -0.01158905, 0.06921387, 0.033447266, 0.015472412, 0.012229919, -0.047546387, -0.01638794, -0.018005371, -0.0029029846, 0.00869751, 0.0021533966, -0.03744507, 0.026367188, 0.0025596619, -0.024246216, 0.0035209656, 0.028884888, 0.010749817, -0.035339355, 0.006752014, -0.022949219, -0.02029419, -0.024551392, 0.009094238, -0.0158844, 0.026519775, 0.017486572, -0.01902771, -0.02482605, 0.035125732, -0.05606079, 0.06439209, 0.0056381226, -0.058135986, 0.030227661, -0.0030975342, 0.020599365, -0.016967773, 0.009429932, 0.0060920715, -0.021240234, -0.036865234, -0.0041656494, -0.064453125, 0.03564453, -0.0024337769, -0.022964478, 0.037994385, -0.033599854, -0.043701172, 0.018325806, 0.061340332, -0.0068130493, 0.009864807, 0.027328491, 0.006248474, -0.061431885, 0.014755249, -0.05053711, -0.023971558, -0.01600647, 0.027130127, 0.018844604, -0.013038635, -0.028869629, -0.055358887, -0.0023937225, 0.0057792664, -0.045410156, -0.012107849, -0.001452446, 0.018951416, -0.021728516, 0.00011485815, 0.010040283, 0.01826477, -0.050598145, -0.00076150894, -0.0033473969, 0.024261475, 0.00030946732, 0.047302246, -0.026489258, -0.0046539307, -0.01084137, -0.02368164, 0.016815186, -0.023620605, -0.035125732, 0.00017619133, -0.010131836, -0.000834465, -0.03540039, 0.033111572, 0.07324219, -0.058807373, -0.048797607, -0.055664062, 0.024261475, -0.04876709, -0.050994873, 0.034240723, 0.027679443, 0.0099487305, 0.011299133, -0.002243042, -0.029220581, 0.024353027, 0.017852783, -0.05117798, -0.007926941, -0.017807007, 0.011871338, 0.0058288574, -0.016296387, -0.004058838, 0.059906006, -0.0062065125, -0.02154541, -0.036590576, -0.009033203, 0.008300781, -0.0025520325, 0.026275635, -0.013450623, -0.01802063, -0.03842163, -0.028167725, -0.06768799, -0.0064926147, 0.034362793, 0.01109314, 0.024932861, -0.014167786, 0.019317627, 0.042510986, -0.034332275, 0.043762207, -0.029800415, -0.0067367554, -0.0005569458, 0.033416748, 0.040008545, 0.0071525574, 0.010009766, -0.017822266, 0.013618469, -0.013374329, 0.032836914, -0.018096924, -0.019546509, -0.026412964, 0.061920166, 0.037261963, 0.0045776367, -0.00041794777, 0.0496521, 0.029785156, -0.03366089, -0.0128479, -0.020721436, -0.032592773, -0.016906738, -0.033966064, -0.0022010803, 0.016967773, 0.0069847107, 0.017700195, -0.008003235, 0.043548584, -0.0019025803, 0.02960205, 0.011054993, 0.016540527, -0.020065308, -0.022720337, -0.030715942, 0.023880005, -0.030532837, 0.0069351196, 0.005695343, -0.026062012, -0.016693115, 0.0059051514, -0.03933716, 0.07312012, 0.03652954, -0.02885437, 0.028579712, 0.0065956116, 0.009117126, 0.028045654, 0.0052757263, 0.0012464523, -0.06488037, -0.019241333, -0.00806427, 0.025878906, -0.013160706, 0.06738281, -0.014282227, 0.0068130493, -0.008796692, -0.0059127808, 0.018615723, -0.013259888, -0.008674622, 0.025909424, 0.015579224, -0.020980835, -0.07293701, -0.014312744, 0.026565552, -0.0026798248, -0.031982422, 0.018173218, 0.037872314, 0.013549805, 0.013786316, -0.015235901, -0.026931763, 0.008796692, 0.005317688, 0.008972168, 0.028640747, -0.0019445419, 0.033294678, 0.015930176, -0.028167725, 0.029800415, -0.032714844, 0.061340332, 0.03439331, 0.014717102, -0.029800415, -0.015563965, -0.01574707, 0.007411957, 0.011955261, 0.02557373, 0.013267517, 0.006160736, -0.005065918, 0.023223877, 0.03314209, -0.024551392, 0.026901245, 0.0032806396, -0.009010315, 0.0032806396, -0.03253174, 0.01737976, -0.0029850006, -0.03555298, 0.008766174, 0.00081443787, 0.006641388, 0.045898438, 0.015655518, -0.01272583, -0.014564514, -0.011779785, 0.022888184, -0.016479492, 0.026809692, -0.041870117, 0.021087646, -0.034484863, -0.032318115, -0.054534912, -0.02557373, -0.060699463, 0.027786255, -0.03378296, -0.038391113, -0.0033798218, 0.008132935, -0.01033783, -0.08251953, -0.039123535, -0.029968262, 0.038482666, 0.0050201416, 0.07208252, -0.04852295, -0.0546875, -0.08465576, 0.030838013, -0.10235596, -0.021270752, 0.023590088, 0.02029419, 0.052520752, 0.03149414, 0.035858154, 0.06573486, 0.019882202, -0.0022964478, -0.0034561157, -0.022766113, -0.0395813, 0.02268982, 0.00409317, -0.048950195, 0.012687683, 0.06298828, -0.0011558533, 0.025238037, 0.009796143, -0.039489746, -0.052734375, 0.008338928, -0.008270264, 0.04269409, -0.04034424, 0.013343811, -0.0040283203, 0.030441284, -0.005580902, -0.019241333, 0.0129776, -0.011734009, 0.0076942444, -0.0027694702, 0.027893066, 0.0060424805, -0.012817383, -0.015533447, -0.022766113, -0.0072364807, 0.02243042, 0.03527832, -0.029846191, 0.0184021, 0.015319824, -0.016036987, -0.006702423, -0.021087646, -0.016174316, 0.013626099, 0.013954163, -0.02204895, 0.007507324, 0.002439499, -0.026367188, -0.06628418, 0.041168213, 0.056518555, -0.035369873, -0.0049972534, 0.008926392, -0.008743286, 0.02885437, -0.026016235, -0.0068359375, -0.054901123, 0.024429321, 0.05230713, 0.0027503967, 0.008956909, -0.008514404, -0.023635864, 0.0077552795, 0.022705078, 0.00086164474, 0.03387451, 0.0035190582, -0.013671875, -0.026901245, 0.06756592, -0.026153564, -0.072265625, -0.048034668, 0.022079468, 0.026794434, -0.0033187866, 0.058654785, -0.0015878677, 0.02557373, 0.0047836304, 0.010635376, -0.01398468, 0.016159058, 0.023422241, 0.0005021095, 0.012611389]}, "B07QP6RCJW": {"id": "B07QP6RCJW", "original": "Brand: GasSaf\nName: GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS)\nDescription: Propane Tank Gauge
      Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
      Easy to Attach
      It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
      Solid Brass Withstands Weather, Scratching, Denting and Corroding
      Color Coded Dial for Easy Viewing
      How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak\nFeatures: 1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks\n2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement.\n3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety\n4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy.\n5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "metadata": {"Name": "GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS)", "Brand": "GasSaf", "Description": "Propane Tank Gauge
      Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
      Easy to Attach
      It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
      Solid Brass Withstands Weather, Scratching, Denting and Corroding
      Color Coded Dial for Easy Viewing
      How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak", "Features": "1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks\n2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement.\n3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety\n4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy.\n5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.005809784, -0.006095886, -0.017684937, 0.0042915344, -0.03173828, -0.007297516, -0.015266418, -0.021102905, 0.019927979, -0.0060157776, -0.016235352, 0.007133484, -0.022445679, -0.026397705, 0.00894165, -0.02810669, 0.02319336, -0.0010023117, -0.014060974, -0.026397705, -0.014541626, -0.006298065, -0.003156662, 0.07922363, -0.023345947, 0.040496826, 0.07476807, 0.003156662, -0.004310608, -0.0014648438, 0.01953125, -0.04083252, 0.004634857, 0.030792236, -0.008995056, 0.0017967224, -0.015975952, 0.026062012, 0.0034332275, -0.016845703, 0.0015640259, 0.0046157837, 0.020339966, -0.0014591217, -0.00018000603, -0.031311035, 0.005355835, -0.050445557, 0.012313843, 0.0039367676, 0.02027893, 0.0028419495, 0.025360107, 0.028289795, -0.006401062, 0.025741577, 0.03652954, -0.03213501, 0.005203247, -0.03189087, -0.007381439, 0.020111084, 0.025405884, 0.021469116, -0.051574707, -0.0076293945, 0.036468506, -0.008544922, -0.018569946, -0.053009033, 0.025283813, 0.023040771, 0.016677856, -0.03540039, -0.043701172, 0.011619568, 0.007499695, -0.012817383, 0.009895325, -0.019515991, -0.016723633, -0.011306763, 0.013076782, -0.0041542053, 0.0075302124, 0.01159668, -0.013725281, -0.0077171326, -0.01109314, -0.026351929, -0.009666443, -0.011894226, -0.038146973, 0.015350342, -0.0062294006, -0.025482178, -0.013145447, -0.025817871, 0.0067863464, -0.014274597, 0.01335907, -0.028335571, -0.010498047, 0.016586304, -0.011772156, 0.063964844, -0.002943039, -0.024627686, 0.00030636787, -0.005580902, 0.0068969727, -0.016189575, -0.020248413, -0.030441284, -0.024169922, 0.07287598, -2.5629997e-05, -0.020050049, 0.011764526, 0.01638794, -0.05142212, -0.03390503, 0.014129639, -0.022491455, 0.0317688, 0.002374649, 0.007522583, 0.013442993, -0.076660156, 0.035614014, -0.022415161, -0.023269653, 0.026672363, 0.091430664, 0.031204224, -0.024887085, 0.032226562, 0.005970001, -0.0017309189, 0.014335632, 0.0134887695, -0.014518738, -0.0033607483, 0.022903442, -0.068115234, 0.024246216, 0.015205383, 0.0043182373, -0.009994507, -0.08135986, -0.04321289, -0.00078105927, 0.019607544, 0.016220093, -0.057922363, -0.0076026917, -0.03161621, -0.009567261, -0.0017852783, -0.04611206, -0.016433716, -0.047668457, -0.021453857, -0.0012397766, -0.023345947, 0.045684814, 0.01512146, 0.010391235, 0.010070801, -0.024993896, 0.0038280487, 0.02268982, 0.021636963, 0.012023926, 0.014892578, 0.013885498, -0.02494812, 0.07409668, 0.058380127, -0.13427734, -0.071899414, -0.059936523, 0.11407471, -0.027130127, -0.017471313, -0.003145218, 0.0056152344, -0.0008573532, 0.012763977, 0.009597778, 0.021011353, 0.01876831, -0.008171082, -0.037353516, 0.025680542, 0.015090942, -0.038909912, -0.013496399, 0.00680542, -0.0017156601, -0.026321411, 0.025466919, -0.033447266, 0.019622803, 0.014175415, -0.02861023, 0.021499634, 0.020523071, 0.030227661, 0.029022217, -0.00881958, -0.0048828125, 0.014976501, -0.03918457, -0.03152466, 0.021850586, -0.03515625, -0.009460449, -0.017044067, 0.0012273788, -0.004211426, 0.0017213821, -0.008987427, 0.027282715, -0.0440979, 0.01335144, -0.028778076, 0.031921387, -0.010185242, 0.0025901794, 0.06915283, 0.007183075, 0.09503174, 0.045166016, -0.015487671, 0.023742676, 0.035369873, -0.028137207, -0.025894165, 0.023361206, 0.018569946, -0.018798828, -0.0446167, -0.0236969, 0.011772156, -0.06237793, -0.018600464, -0.003211975, 0.0015325546, 0.03866577, 0.030319214, 0.010047913, 0.0044136047, 0.009857178, -0.020385742, 0.018356323, 0.004951477, 0.04119873, -0.0748291, 0.040527344, -0.015213013, -0.00017952919, 0.024978638, -0.024917603, 0.032714844, -0.0044059753, 0.025650024, 0.02229309, -0.024734497, 0.008148193, 0.016662598, 0.005054474, 0.006603241, -0.017089844, -0.045288086, 0.008880615, -0.041992188, 0.03668213, 0.024780273, -0.016433716, 0.013511658, 0.0033912659, 0.027862549, -0.0099105835, 0.07904053, 0.017715454, -0.01234436, -0.042663574, -0.0056495667, 0.016983032, 0.032958984, -0.00014543533, -0.016723633, 0.0137786865, -0.023635864, -0.011672974, 0.020828247, -0.029327393, 0.025299072, -0.028778076, 0.037841797, 0.05218506, -0.038757324, 0.024047852, 0.0006227493, -0.010185242, -0.021408081, 0.029846191, 0.010635376, -0.020523071, -0.01828003, 0.016036987, 0.009101868, -0.025802612, 0.035614014, 0.02507019, -0.004081726, 0.01739502, 0.06323242, 0.072387695, -0.017822266, -0.0034675598, -0.041656494, 0.016616821, 0.0017871857, 0.014152527, -0.0019292831, -0.014328003, -0.03302002, 0.015022278, 0.004070282, -0.0057868958, 0.018676758, 0.03894043, -0.0087509155, -0.016479492, 0.023239136, 0.04840088, 0.023620605, -0.045684814, 0.021484375, 0.0012168884, -0.022628784, 0.031311035, -0.0546875, -0.03262329, 0.06713867, -0.0006971359, -0.031585693, -0.0026760101, 0.04937744, -0.018447876, 0.028213501, -0.018951416, 0.026931763, 0.012573242, -0.04208374, -0.011116028, 0.012435913, -0.063964844, -0.0021762848, -0.03050232, -0.059326172, -0.09942627, 0.05480957, 0.012413025, -0.057373047, -0.035888672, 0.022247314, 0.0413208, -0.010307312, 0.049621582, -0.04168701, -0.023208618, -0.02003479, -0.018753052, 0.0128479, -0.023361206, 0.0413208, 0.021972656, 0.021728516, 0.047821045, -0.035858154, 0.04751587, 0.041259766, 0.039398193, 0.08831787, 0.08026123, -0.023773193, -0.055511475, -0.019561768, 0.049041748, -0.02104187, -9.000301e-05, -0.023330688, -0.025665283, -0.007751465, 0.014411926, -0.058654785, 0.005355835, -0.028930664, 0.008300781, -0.0029563904, -0.002275467, 0.015808105, -0.06304932, 0.016906738, -0.053527832, 0.032714844, 0.02607727, -0.012077332, 0.03074646, -0.0018911362, 0.023422241, -0.022476196, 0.011161804, -0.0053253174, -0.007820129, -0.010223389, 0.003288269, 0.047210693, -0.07098389, 0.013038635, 0.027801514, 0.012084961, 0.008766174, 0.0064735413, -0.0050964355, -0.015960693, 0.03048706, 0.0043411255, -0.011695862, -0.032714844, -0.012466431, -0.00141716, 0.010643005, 0.01335144, -0.02658081, 0.023406982, -0.029281616, -0.059020996, -0.0020446777, -0.022155762, -0.0069999695, 0.0006952286, -0.032409668, 0.0016775131, -0.04751587, -0.027328491, -0.05493164, 0.00087451935, 0.025390625, 0.039764404, 0.024810791, 0.012710571, 0.040405273, 0.013427734, 0.04067993, 0.015899658, -0.010627747, -0.003129959, -0.047332764, 0.024993896, 0.011688232, 0.022003174, -0.056396484, 0.013320923, -0.005004883, -0.001203537, -0.011787415, -0.008934021, 0.06304932, 0.004337311, -0.020996094, -0.00699234, -0.0010099411, 0.031555176, -0.04864502, 0.062561035, -0.012336731, -0.020965576, 0.0060691833, -0.10083008, 0.083862305, 0.03643799, -0.017990112, 0.051208496, 0.047729492, -0.007949829, 0.031173706, 0.06665039, -0.00077342987, 0.015716553, 0.057495117, -0.016784668, -0.028564453, -0.002872467, -0.010536194, 0.009017944, -0.012840271, -0.0004286766, 0.03302002, -0.004070282, -0.007171631, -0.047943115, 0.004131317, 0.020584106, -0.035491943, -6.6161156e-05, -0.051513672, 0.0003247261, -0.05670166, 0.034332275, 0.019348145, -0.025405884, -0.043029785, 0.021972656, -0.033203125, -0.02507019, 0.033477783, -0.030471802, 0.017181396, 0.006958008, 0.04159546, -0.0035934448, 0.00655365, -0.04058838, 0.021560669, -0.02619934, -0.0058021545, 0.01828003, 0.01914978, -0.0137786865, -0.03805542, 0.034484863, -0.006580353, -0.014266968, 0.045776367, -0.015457153, -0.067871094, -0.0061416626, 0.020019531, 0.01751709, -0.027832031, 0.014198303, -0.026916504, 0.0042419434, 0.011604309, -0.047454834, 0.013175964, -0.019195557, -0.032562256, -0.06689453, -0.039031982, -0.012924194, 0.013832092, -0.009391785, 0.011451721, -0.029251099, -0.028366089, -0.001156807, 0.001247406, -0.03274536, -0.0036125183, -0.034942627, -0.0007276535, 0.034729004, -0.0042495728, -0.008728027, -0.038085938, -0.0345459, -0.00040078163, -0.011856079, -0.03326416, -0.0014209747, 0.012008667, -0.024368286, 0.011360168, 0.011756897, 0.05911255, -0.020217896, 0.018814087, -0.03149414, 0.018157959, -0.060455322, 0.02456665, 0.027526855, -0.013046265, -0.057159424, -0.029876709, 0.04135132, 0.0008831024, 0.03503418, 0.07080078, -0.005783081, -0.0053901672, -0.016799927, -0.12512207, -0.02406311, -0.016952515, -0.01423645, 0.010696411, 0.009719849, 0.0030345917, 0.023254395, 0.048431396, -0.035491943, 0.05886841, 0.009895325, -0.039764404, -0.01687622, -0.0037193298, -0.030166626, 0.048828125, -0.048461914, -0.027938843, -0.062805176, 0.064453125, 0.03942871, -0.00064086914, 0.0068740845, -0.019973755, -0.024261475, -0.018051147, -0.06036377, 0.0007042885, 0.04055786, -0.006160736, -0.040649414, 0.01953125, -0.014602661, -0.0040893555, -0.025634766, 0.00015461445, 0.0032806396, -0.008514404, -0.02267456, -0.03250122, -0.021774292, -0.012634277, -0.011299133, -0.003917694, -0.037078857, 0.022201538, 0.026351929, -0.012535095, -0.0026741028, -0.0049972534, 0.00068092346, 0.00090646744, -0.009513855, -0.00207901, -0.07458496, 0.0018320084, 0.044158936, -0.0015449524, -0.016036987, 0.013298035, 0.0063705444, -0.029159546, -0.051208496, 0.023284912, 0.025009155, -0.029830933, 0.00894928, 0.011116028, 0.033569336, 0.0287323, 0.0044403076, 0.005065918, 0.0058135986, -0.04498291, -0.0041542053, 0.0071983337, -0.004180908, -0.06829834, 0.06341553, -0.014259338, -0.027877808, -0.036254883, 0.023544312, 0.02583313, 0.031051636, -0.035186768, -0.02192688, 0.024856567, -0.033447266, 0.00217247, 0.0143966675, 0.042633057, -0.005783081, 0.024368286, 0.022979736, 0.0042915344, -0.060272217, 0.0037708282, 0.0068092346, 0.002937317, 0.034362793, -0.06677246, 0.043823242, 0.006580353, -0.078125, -0.032196045, -0.019256592, 0.016159058, -0.009742737, -0.0036849976, -0.033813477, -0.013633728, -0.013153076, 0.035461426, -0.0070533752, 0.0063667297, -0.02760315, -0.028915405, -0.03540039, 0.028198242, -0.010284424, 0.013801575, -0.037994385, -0.090026855, -0.013412476, 0.04171753, 0.022323608, -0.022460938, -0.032806396, -0.023513794, -0.016143799, -0.006000519, -0.016418457, -0.044189453, 0.06500244, -0.03982544, -0.06713867, 0.013053894, 0.0284729, -0.012908936, -0.030227661, 0.046081543, -0.0032920837, 0.018844604, 0.0014295578, 0.0031433105, -0.058135986, 0.031921387, 0.00057935715, -0.082336426, -0.014556885, -0.032440186, -0.0048599243, 0.02696228, -0.0053100586, -0.012619019, 0.024414062, -0.0309906, -0.019882202, -0.005958557, 0.0039787292, -0.009643555, -0.024719238, 0.014808655, -0.021194458, 0.00072288513, -0.004058838, 0.02571106, -0.07531738, -0.06298828, 0.0335083, 1.4662743e-05, -0.024017334, 0.015045166, 0.010055542, 0.03567505, -0.013343811, 0.0009627342, 0.00038051605, -0.029663086, -0.0050315857, 0.023773193, 0.0037574768, 0.051452637, -0.034240723, -0.013168335, -0.03201294, 0.03677368, -0.0107040405, 0.04373169, -0.078308105, -0.04901123, 0.032989502, 0.05230713, -0.0002040863, -0.027832031, -0.0014972687, -0.040039062, -0.066345215, -0.021270752, -0.027191162, -0.035003662, -0.03250122, -0.043701172, -0.016601562, 0.01108551, -0.010192871, 0.024261475, -0.007843018, 0.0128479, -0.029525757, 0.043640137, -0.017089844, -9.0539455e-05, 0.06951904, -0.034484863, 0.047576904, -0.033325195, 0.030731201, 0.0012550354, 0.0071754456, 0.011680603, -0.012672424, 0.012382507, 0.03074646, 0.008911133, -0.014312744, 0.024917603, 0.016586304, -0.05316162, -0.008514404, -0.013923645, 0.016189575, -0.005264282, 0.020690918, -0.00081682205, 0.023361206, 0.040008545, 0.026168823, 0.013145447, -0.015686035, 0.042663574, -0.05419922, 0.0063171387, -0.03378296, -0.038726807, 0.043823242, 0.044281006, -0.00044178963, -0.008735657, -0.0038909912, 0.02432251, 0.021713257, -0.02229309, 0.021835327, -0.045013428, 0.0077819824, -0.0024051666, -0.013061523, -0.032562256, -0.029174805, 0.039215088, 0.024002075, -0.018508911, 0.039398193, 0.029464722, 0.034332275, -0.022964478, -0.01676941, 0.007888794, -0.049072266, 0.00793457, 0.017715454, -0.010726929, -0.053100586, -0.0647583, -0.015182495, -0.032073975, -0.0013990402, 0.03515625, -0.03302002, 0.13793945, 0.028030396, -0.0077590942, 0.029403687, 0.00065279007, -0.003452301, -0.008995056, 0.006210327, -0.0048980713, 0.0037994385, -0.007648468, -0.020446777, 0.0031223297, -0.0033931732, 0.019744873, 0.005836487, 0.026763916, 0.008850098, -0.011741638, -0.043548584, 0.015586853, -0.01977539, -0.054718018, 0.06365967, -0.051727295, 0.018722534, -0.04598999, -0.057678223, -0.015167236, -0.021743774, -0.05734253, 0.059051514, 0.0032043457, 0.0007920265, -0.003850937, -0.024154663, 0.0045928955, -0.025405884, 0.015174866, 0.01965332, 0.05731201, -0.026901245, 0.024108887, -0.024398804, -0.034088135, -0.02053833, 0.034210205, -0.067871094, -0.025634766, -0.081970215, 0.039276123, 0.01071167, -0.017807007, -0.0010375977, 0.07513428, -0.01878357, 0.0023002625, 0.009109497, -0.04257202, -0.019226074, 0.0032730103, 0.008735657, -0.029937744, -0.047454834, 0.0262146, 0.009727478, -0.013198853, 0.030853271, -0.0005030632, -0.06921387, -0.0074386597, -0.026290894, -0.03439331, 0.0057640076, -0.018585205, 0.0077667236, -0.0107803345, -0.06225586, -0.051483154, -0.017562866, 0.06506348, 0.038879395, -0.020523071, 0.008865356, -0.025985718, -0.031280518, -0.036590576, -0.014274597, 0.0038337708, 0.013298035, -0.06008911, -0.018493652, 0.0021305084, -0.0049743652, -0.030899048, 0.018997192, 0.030227661, 0.0021457672, 0.010414124, 0.015975952, -0.025619507, -0.007801056, -0.002998352, -0.016921997, -0.075927734, 0.009185791, 0.0061454773, -0.013175964, -0.00041770935, -0.025848389, 0.008132935, -0.019500732, -0.014122009, -0.0082092285, -0.041259766, 0.01486969, 0.009490967, 0.0048217773, -0.00907135, 0.010734558, -0.023162842, -0.0019931793, 0.010772705, 0.017578125, 0.016342163, -0.02760315, 0.026031494, 0.008972168, 0.022857666, 0.009338379, -0.057891846, -0.03866577, 0.0262146, 0.0016937256, -0.026443481, 0.0077705383, -0.028793335, -0.00012850761, 0.04840088, -0.029266357, -0.041137695, 0.055267334, 0.085998535, 0.019104004, 0.02204895]}, "B001DC5HBG": {"id": "B001DC5HBG", "original": "Brand: Stansport\nName: Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)\nDescription: \nFeatures: Handy five-foot Propane Hose and Regulator Assembly tube\nFunctions as an extension cord for your outdoor propane appliances\nDesigned for use with Stansport's cast iron propane stove models 208, 209, and 210\n11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity\nNot universally compatible with all brands, Use caution when using propane appliances, For outdoor use only\n", "metadata": {"Name": "Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)", "Brand": "Stansport", "Description": "", "Features": "Handy five-foot Propane Hose and Regulator Assembly tube\nFunctions as an extension cord for your outdoor propane appliances\nDesigned for use with Stansport's cast iron propane stove models 208, 209, and 210\n11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity\nNot universally compatible with all brands, Use caution when using propane appliances, For outdoor use only", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013282776, -0.01777649, -0.018096924, -0.054748535, -0.024307251, -0.0013971329, -0.047302246, 0.01361084, -0.00969696, -0.020553589, -0.012672424, 0.028244019, -0.0027389526, -0.042266846, 0.04373169, -0.01687622, 0.042297363, 0.004447937, 0.015930176, -0.019927979, 0.012359619, 0.001996994, 0.010612488, 0.12976074, -0.0013027191, -0.0035152435, 0.04660034, -0.011398315, -0.0032844543, -0.023666382, 0.016494751, 0.029891968, 0.047058105, -0.023635864, -0.0042800903, -0.042541504, 0.01675415, -0.03012085, -0.04324341, 0.023162842, 0.0062446594, 0.009651184, 0.028167725, 0.004875183, 0.003200531, -0.020584106, 0.006996155, -0.059143066, -0.013183594, 0.0027713776, -0.0030384064, 0.0016536713, -0.0057907104, -0.05847168, 0.0024757385, -0.012161255, -0.012245178, 0.027023315, -0.0012235641, 0.012336731, -0.004901886, 0.04486084, -0.0034103394, -0.001906395, -0.008110046, 0.02281189, 0.10266113, -0.0109939575, 0.025482178, -0.016815186, -0.027740479, 0.036315918, 0.013999939, -0.0006070137, -0.06665039, -0.035125732, 0.015579224, -0.05343628, 0.02923584, -0.021438599, -0.0102005005, -0.03326416, 0.039276123, 0.01878357, -0.0135269165, 0.030960083, -0.024337769, -0.013641357, -0.033569336, -0.018814087, -0.018692017, 0.0034542084, -0.019226074, -0.005569458, -0.026062012, -0.016174316, -0.019927979, -0.07952881, 0.02532959, -0.014961243, 0.05065918, -0.049316406, 0.031021118, 0.021575928, 0.015396118, 0.056793213, 0.011123657, 0.012771606, 0.021850586, -0.0014419556, -0.010902405, 0.008804321, 0.03125, 0.017791748, -0.06121826, -0.01638794, -0.010185242, -0.016189575, -0.008285522, -0.00029444695, 0.0012607574, -0.0026512146, 0.072387695, -0.027313232, 0.018676758, 0.007461548, -0.04244995, -0.030944824, 0.022628784, -0.00032114983, -0.016067505, 0.03125, 0.012145996, 0.008796692, -0.0077552795, -0.00097084045, 0.025543213, -0.009002686, 0.01928711, 0.005180359, -0.010612488, -0.011131287, 0.022109985, 0.005947113, 0.010017395, -0.015533447, 0.019943237, 0.018005371, 0.016296387, 0.021591187, -4.029274e-05, -0.014762878, 0.012992859, 0.025802612, -0.002670288, 0.019348145, 0.021530151, -0.02180481, -0.004802704, -0.028640747, -0.026748657, -0.050048828, -0.034606934, -0.024642944, -0.054016113, 0.06542969, 0.03125, 0.004470825, 0.024932861, 0.05834961, -0.0015974045, 0.03326416, 0.025848389, 0.014633179, -0.005344391, 0.0014104843, -0.04321289, 0.06555176, 0.06088257, -0.12310791, -0.06311035, -0.06719971, 0.10571289, -0.038635254, 0.043884277, -0.060028076, 0.013946533, -0.032928467, -0.013000488, 0.011711121, -0.021194458, 0.011817932, 0.027511597, -0.05795288, -0.0031204224, 0.004524231, -0.025039673, 0.028900146, -0.013946533, -0.0022087097, -0.022216797, -0.005004883, 0.030563354, 0.00881958, 0.10089111, -0.028411865, 0.02520752, -0.0054893494, 0.011428833, 0.008392334, 0.004573822, 0.0014886856, -0.014328003, -0.030838013, -0.04071045, 0.0052337646, 0.0044441223, -0.023406982, 0.015548706, -0.03527832, 0.045776367, 0.011940002, 0.024383545, 0.040008545, -0.0031528473, -0.023864746, -0.01146698, -0.009506226, -0.023086548, 0.009025574, -0.01777649, 0.02166748, 0.0725708, 0.054534912, -0.015258789, 0.04815674, 0.087524414, 0.07293701, -0.03842163, -0.032958984, 0.027160645, -0.044921875, -0.014015198, -0.008140564, -0.02960205, -0.057800293, 0.015472412, -0.023544312, -0.011917114, -0.0020580292, 0.041778564, -0.020629883, 0.021469116, 0.0055503845, -0.0154800415, 0.013832092, -0.025039673, 0.006542206, -0.036071777, 0.022338867, -0.00033211708, 0.012550354, 0.020019531, -0.02368164, 0.018203735, 0.085632324, 0.04776001, 0.059387207, -0.041809082, 0.049926758, -0.0069274902, 0.034576416, -0.031677246, -0.029327393, -0.020874023, -0.04849243, -0.058929443, 0.06982422, -0.039520264, -0.030166626, -0.0017728806, 0.012397766, -0.0042648315, -0.0074806213, 0.0073661804, 0.0713501, 0.025650024, -0.0011644363, 0.022140503, -0.0011196136, 0.03753662, -0.0029621124, -0.017028809, 0.03286743, -0.040100098, -0.028747559, 0.04019165, -0.011444092, 0.02027893, -0.021148682, -0.0018892288, 0.04156494, -0.00422287, 0.00076150894, 0.0002603531, -0.02029419, -0.022964478, 0.025619507, -0.0052871704, -0.003501892, -0.07458496, 0.007911682, 0.025299072, -0.003917694, 0.038330078, 0.024856567, 0.0069465637, 0.03488159, 0.040649414, 0.038513184, 0.0037212372, 0.015586853, 0.023040771, 0.025558472, 0.023498535, -0.036468506, 0.030166626, 0.0049095154, -0.029159546, 0.011016846, -0.016448975, -0.016799927, -0.02947998, 0.058776855, -0.003004074, 0.043548584, 0.0042266846, 0.076049805, -0.0073661804, -0.07244873, -0.023498535, -0.0574646, -0.02609253, 0.023117065, -0.044403076, -0.03050232, 0.024871826, -0.010055542, 0.0077590942, -0.007835388, 0.017471313, 0.0005993843, -0.0046081543, -0.013313293, 0.022415161, 0.008972168, -0.028411865, -0.030166626, 0.029296875, -0.053649902, 0.016906738, -0.013702393, -0.020233154, -0.009147644, 0.020690918, -0.01940918, -0.0017995834, -0.025436401, -0.026687622, 0.005306244, 0.024459839, -0.008743286, -0.053344727, -0.025512695, -0.042419434, 0.007461548, 0.05255127, -0.024993896, -0.016921997, 0.007381439, -0.021377563, -0.015556335, -0.014694214, -0.016967773, -0.004825592, 0.04574585, 0.078308105, 0.006538391, 0.043060303, -0.035217285, 0.02772522, 0.026672363, -0.06072998, 0.00919342, -0.019012451, -0.02015686, 0.050048828, -0.025482178, -0.027374268, -0.029693604, -0.05340576, 0.025314331, -0.0073127747, -0.0027599335, -0.0010662079, -0.07147217, -0.025848389, -0.05606079, 0.013671875, 0.025543213, -0.021209717, 0.013343811, -0.025421143, 0.004837036, -0.015060425, -0.0057907104, -0.024841309, -0.004878998, -0.034423828, 0.017700195, 0.05871582, -0.08215332, 0.012191772, 0.014762878, -0.022094727, 0.0041923523, -0.0035953522, 0.02909851, -0.025238037, 0.018203735, 0.012298584, -0.015151978, -0.02456665, -0.016113281, 0.029586792, 0.05218506, 0.0009236336, -0.008529663, -0.008918762, -0.008110046, -0.017868042, 0.008071899, -0.034484863, 0.02986145, -0.019500732, -0.031021118, -0.0058937073, -0.04626465, 0.00025773048, -0.008071899, 0.01084137, -0.017410278, 0.06213379, 0.03579712, -0.013450623, 0.09954834, -0.004627228, 0.018112183, 0.006580353, -0.0059776306, -0.009384155, -0.0001295805, -0.01739502, -0.0030937195, -0.017608643, -0.039611816, -0.026062012, 0.031097412, 0.022872925, -0.031234741, -0.011985779, 0.10119629, 0.0028152466, -0.007701874, 0.015548706, -0.002538681, -0.013137817, -0.008468628, 0.026916504, 0.012512207, -0.0418396, 0.0116119385, -0.037384033, 0.028427124, 0.05407715, -0.032073975, 0.02835083, -0.010696411, 0.00774765, 0.02079773, 0.052642822, -0.036010742, 0.021774292, 0.025619507, -0.028686523, -0.0062179565, 0.0010471344, 0.013954163, -0.0014877319, -0.015808105, -0.022277832, 0.009567261, 0.0073623657, -0.008094788, -0.017684937, 0.0046653748, 0.006164551, -0.013916016, 0.023162842, -0.014389038, -0.015777588, -0.030273438, -0.051483154, -0.017150879, -0.02909851, -0.01586914, -0.0013418198, -0.015396118, -0.021987915, -0.005027771, 0.025543213, -0.010749817, 0.027313232, 0.01612854, 0.013847351, 0.0051231384, -0.0027980804, -0.013793945, -0.01928711, 0.041534424, 0.02507019, 0.019866943, 0.01008606, -0.029693604, 0.0060539246, -0.034088135, -0.022506714, 0.06750488, 0.01600647, -0.07055664, -0.041992188, 0.021942139, 0.050811768, -0.0057296753, -0.006088257, -0.040374756, 0.036895752, -0.0033664703, -0.027954102, -0.056549072, 0.025756836, 0.04425049, -0.075805664, -0.048797607, -0.05734253, 0.064941406, -0.02960205, 0.028457642, -0.010887146, -0.026550293, -0.012199402, -0.028915405, -0.05871582, 0.058685303, -0.07513428, -0.0152282715, 0.06829834, 0.035095215, 0.0016794205, -0.033721924, -0.008277893, 0.021377563, 0.08544922, -0.008903503, 0.04159546, -0.047729492, -0.010154724, 0.019546509, 0.010215759, 0.029434204, 0.031677246, 0.013191223, -0.04840088, 0.018310547, -0.07269287, 0.045410156, 0.004634857, 0.0056533813, -0.04449463, 0.0010290146, 0.07055664, 0.006893158, 0.009170532, 0.029037476, 0.028259277, 0.003276825, 0.01828003, -0.10015869, -0.013938904, 0.00028038025, -0.03161621, -0.01184845, -0.017852783, -0.009719849, 0.092285156, 0.027420044, 0.0084991455, 0.019897461, -0.019104004, -0.008613586, -0.010070801, -0.012199402, 0.007904053, 0.0054359436, -0.016967773, 0.010719299, 0.010047913, -0.0019083023, 0.032592773, -0.020736694, 0.008865356, 0.020019531, -0.019012451, -0.012451172, 0.0021400452, 0.006439209, -0.0066223145, -0.02508545, -0.032287598, 0.004058838, -0.03845215, -0.011077881, -0.037017822, -0.0059013367, -0.020874023, -0.0057868958, -0.016113281, -0.047302246, 0.0067214966, 0.020187378, 0.016952515, 0.020080566, -0.012367249, -0.035095215, 0.08166504, 0.006828308, 0.008407593, 0.027420044, -0.0256958, 0.0096588135, -0.00030851364, 0.008453369, 0.0012702942, -0.0051460266, 0.010475159, 0.009246826, -0.020080566, 0.01348114, 0.009803772, -0.018676758, -0.012199402, 0.039215088, -0.0060577393, 0.0055503845, 0.010543823, 0.016479492, 0.028213501, 0.050231934, 0.002986908, 0.00024414062, 0.04650879, -0.018203735, 0.015274048, -0.0016975403, -0.02381897, -0.018859863, 0.08654785, 0.0037765503, 0.0073890686, -0.030181885, 0.032562256, 0.0041275024, -0.0093307495, 0.0069007874, -0.023208618, 0.04800415, -0.078125, -0.012870789, 0.0005722046, -0.0013561249, -0.022720337, 0.014251709, -0.004383087, -0.010131836, -0.018066406, -0.016067505, 0.002090454, 0.007621765, -0.014190674, -0.045013428, 0.035308838, 0.023208618, -0.03012085, 0.0005283356, -0.013793945, -0.030059814, -0.036834717, -0.0020771027, 0.011550903, -0.0033245087, -0.0024681091, -0.0073432922, 0.064208984, 0.017120361, -0.010795593, -0.0236969, 0.008079529, -0.0024642944, -0.03756714, 0.021881104, -0.020843506, -0.014892578, 0.01763916, 0.007095337, 0.0024223328, 0.014305115, -0.04663086, -0.0008916855, -0.004047394, 0.0023708344, 0.016036987, -0.012825012, 0.032409668, -0.01612854, -0.020080566, -0.054107666, 0.029037476, -0.024307251, -0.016494751, 0.048187256, 0.08728027, -0.007144928, 0.05026245, -0.0010528564, -0.025161743, 0.016082764, 0.00064468384, -0.02784729, -0.060516357, -0.03704834, -0.034362793, 0.011787415, 0.0010318756, -0.034729004, 0.028396606, -0.027038574, -0.04788208, -0.011276245, 0.012283325, 0.013916016, 0.049957275, 0.014656067, -0.015357971, -0.022750854, -0.076538086, -0.031585693, -0.047424316, -0.07183838, -0.02053833, 0.030029297, 0.03656006, 0.04598999, -0.0037555695, -0.029342651, -0.068725586, 0.010696411, 0.0037212372, -0.040618896, -0.03842163, 0.029037476, 0.055755615, -0.013008118, -0.010627747, -0.011390686, -0.031463623, 0.00067806244, -0.0038719177, 0.064208984, -0.06359863, -0.0052757263, 0.005428314, 0.05444336, -0.01373291, 0.027572632, 0.022628784, 0.02571106, -0.023651123, -0.021377563, 0.0045661926, -0.035217285, 0.017730713, -0.03475952, 0.015449524, 0.01638794, -0.018753052, 0.020233154, -0.04257202, 0.0579834, -0.021224976, 7.8082085e-06, 0.0055007935, 0.00856781, 0.027801514, -0.008850098, -0.03366089, -0.009651184, 0.025375366, 0.01890564, -0.024780273, -0.038757324, 0.009742737, 0.032104492, 0.020141602, 0.005065918, -0.028244019, -0.038269043, 0.0019340515, 0.019592285, -0.009254456, 0.031951904, 0.0053482056, -0.01322937, -0.032470703, -0.024047852, -0.0058937073, 0.034698486, 0.0072135925, 0.048675537, -0.024017334, 0.018569946, -0.014572144, -0.00028443336, -0.022338867, -0.038848877, 0.02532959, -0.020843506, -0.016311646, 0.004875183, -0.07537842, 0.040618896, 0.011314392, 0.037994385, 0.03955078, -0.034240723, 0.018234253, 0.0126953125, -0.0051116943, -0.02822876, -0.040100098, -0.037994385, 0.002746582, 0.014076233, 0.002735138, -0.029388428, 0.0007696152, -0.020263672, -0.032806396, 0.020599365, -0.037200928, 0.014801025, 0.009437561, -0.013061523, -0.05569458, 0.015167236, -0.009742737, 0.008201599, 0.0124053955, 0.07312012, 0.041748047, 0.023651123, -0.01071167, -0.007698059, 0.037963867, 0.0026359558, 0.017364502, -0.063964844, 0.0029888153, 0.043518066, -0.029037476, -0.017837524, 0.00982666, -0.019882202, -0.0049324036, 0.009101868, -0.025177002, 0.0107803345, -0.0021305084, 0.00881958, -0.030059814, 0.023361206, -0.0016975403, -0.04598999, -0.024154663, -0.024337769, -0.025848389, -0.03302002, -0.048431396, -0.0028934479, 0.0045166016, -0.039398193, 0.02330017, 0.023468018, 0.0072364807, 0.016983032, -0.010635376, -0.048583984, 0.0024528503, 0.0026721954, 0.038024902, 0.02670288, 0.0007619858, 0.03427124, 0.0027713776, -0.056152344, -0.023086548, 0.02734375, -0.02708435, -0.020202637, -0.021209717, 0.012863159, 0.014549255, -0.008850098, 0.0067214966, 0.029296875, 0.033233643, -0.014389038, 0.022125244, -0.03189087, 0.0014743805, 0.024414062, 0.013511658, -0.008003235, -0.04473877, -0.009223938, 0.02935791, 0.01852417, 0.011177063, 0.012001038, -0.08831787, 0.003232956, -0.024520874, 0.0385437, -0.042053223, 0.030258179, -0.017028809, 0.0033798218, -0.022583008, 0.009246826, 0.014350891, 0.024810791, 0.03881836, 0.009407043, 0.03463745, -0.036071777, -0.09399414, -0.057769775, -0.03640747, 0.054718018, 0.019729614, -0.04043579, 0.0146102905, 0.02053833, -0.02017212, 0.013671875, 0.023147583, 0.0029029846, 0.040924072, -0.008331299, 0.039764404, 0.017486572, -0.036468506, 0.03793335, -0.046295166, -0.018310547, 0.048919678, -0.018463135, -0.012954712, -0.04333496, -0.017669678, -0.014778137, -0.052337646, -0.032287598, -0.03729248, -0.050109863, 0.046661377, 0.033294678, 0.016494751, 0.0006775856, 0.04534912, 0.00016784668, -0.020629883, 0.013252258, 0.015068054, 0.020309448, -0.020019531, 0.035369873, 0.012252808, 0.057556152, -0.009613037, -0.05657959, -0.061309814, 0.048614502, 0.035705566, -0.02394104, 0.053527832, -0.005065918, 0.011558533, 0.017028809, -0.05380249, -0.025512695, -0.0068969727, 0.09063721, -0.015037537, 0.00299263]}, "B00CRW6ZP8": {"id": "B00CRW6ZP8", "original": "Brand: Bull Outdoor Products\nName: Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head\nDescription: \nFeatures: 60, 000 BTU's of cooking power, Liquid Propane Outlaw Drop-In Grill Head\nUnit Dimensions: 32.25\" W x 24.12\" D x 21.25\" H | Cooking Grid Dimensions: 30 X 19\"\nWarming Rack 210 Sq. In. | Cooking Surface 810 Sq. In.\n5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking\n305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n", "metadata": {"Name": "Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head", "Brand": "Bull Outdoor Products", "Description": "", "Features": "60, 000 BTU's of cooking power, Liquid Propane Outlaw Drop-In Grill Head\nUnit Dimensions: 32.25\" W x 24.12\" D x 21.25\" H | Cooking Grid Dimensions: 30 X 19\"\nWarming Rack 210 Sq. In. | Cooking Surface 810 Sq. In.\n5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking\n305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.032592773, 0.007774353, -0.07714844, -0.010559082, 0.009757996, -0.02331543, -0.015327454, 0.02507019, -0.038391113, -0.022872925, -0.033996582, 0.037384033, -0.04434204, -0.022460938, 0.035614014, -0.046447754, 0.03479004, -0.0018720627, -0.00059890747, -0.021759033, -0.0013341904, 0.00038814545, -0.01890564, 0.08770752, 0.023132324, -0.061584473, 0.034210205, -0.036895752, 0.03829956, -0.012901306, 0.024810791, 0.014419556, 0.041534424, -0.028381348, 0.015449524, 0.011444092, 0.004020691, -0.013908386, -0.012329102, -0.00041985512, 0.021377563, -0.015457153, 0.0021133423, -0.03491211, -0.008102417, -0.019424438, 0.030838013, -0.013214111, 0.02607727, 0.00705719, -0.031555176, 0.0060539246, -0.014724731, -0.046051025, -0.010467529, -0.00333786, 0.012634277, 0.015319824, 0.021484375, -0.0014219284, -0.017318726, 0.013832092, 0.018218994, -0.015960693, -0.021026611, 0.016067505, 0.09136963, -0.03378296, 0.016571045, -0.025604248, 0.013206482, 0.021347046, -0.0003299713, 0.0070495605, -0.02796936, -0.026535034, -0.010536194, -0.05581665, 0.033294678, 0.013092041, -0.014282227, -0.044921875, 0.025283813, -0.0134887695, -0.01084137, 0.017745972, -0.009849548, 0.0047950745, -0.0110321045, -0.035858154, -0.01689148, 0.005508423, -0.019546509, 0.008682251, -0.030761719, -0.00074625015, -0.04135132, -0.074279785, 0.052612305, 0.0048446655, 0.06335449, -0.042755127, 0.004585266, 0.008659363, -0.0024356842, 0.020965576, 0.010009766, -0.001367569, 0.014144897, 0.0013103485, -0.025619507, 0.016281128, 0.022781372, 0.018554688, -0.026901245, -0.018798828, -0.016677856, -0.0015068054, -0.009735107, -0.015899658, -0.008422852, -0.0013093948, 0.008049011, 0.05166626, -0.0018758774, 0.029159546, -0.0018453598, -0.011581421, -0.047607422, 0.03378296, -0.009666443, 0.013336182, 0.019989014, 0.02822876, -0.01461792, -0.016586304, 0.022033691, -0.0022449493, -0.0001411438, 0.0047035217, -0.016204834, -0.009490967, 0.03451538, -0.0017681122, -0.019485474, 0.028060913, 0.029632568, 0.013938904, -0.02331543, -0.07141113, 0.0107040405, 0.007583618, 0.014625549, 0.022598267, -0.01398468, -0.003622055, 0.029006958, -0.028808594, -0.0211792, -0.0579834, -0.028182983, 0.0029506683, 0.023727417, -0.025146484, -0.031555176, 0.0017194748, -0.0051879883, 0.011245728, 0.020492554, 0.067871094, 0.014526367, 7.367134e-05, 0.0013999939, 0.007648468, -0.01625061, -0.01838684, -0.016036987, 0.047729492, 0.07055664, -0.12963867, -0.11206055, -0.057281494, 0.1328125, -0.07080078, -0.010505676, 0.00046110153, -0.025161743, -0.048950195, 0.053375244, -0.023040771, 0.0023021698, 0.018493652, 0.022613525, -0.03552246, 0.030334473, 0.012123108, -0.027359009, 0.019332886, -0.0050735474, -0.018615723, -0.049224854, 0.033050537, 0.0121536255, 0.033172607, 0.03475952, 0.019546509, -0.00020623207, 0.03010559, 0.016403198, 0.04336548, -0.011459351, -0.0069618225, -0.0014953613, -0.011489868, 0.008239746, -0.01234436, -0.0178833, -0.0063934326, 0.022567749, -0.031555176, 0.05935669, 0.019638062, 0.035827637, 0.021240234, 0.009994507, 0.000998497, -0.030578613, 0.0051460266, 0.015426636, 0.009223938, -0.00035881996, 0.011260986, 0.022277832, 0.07763672, 0.006198883, 0.0030956268, 0.05859375, 0.027023315, 0.023071289, -0.018707275, 0.005214691, -0.035858154, -0.02784729, 0.035888672, 0.01838684, 0.010559082, 0.0010929108, 0.02885437, -0.048675537, -0.01374054, 0.022979736, 0.021881104, 0.034484863, 0.029953003, -0.020858765, 0.027740479, -0.03451538, 0.013442993, -0.038848877, 0.033050537, -0.027679443, 0.01524353, 0.046844482, -0.02154541, 0.035125732, -0.024398804, 0.0076293945, -0.0004930496, -0.0317688, -0.01525116, 0.040649414, 0.030349731, -0.0019779205, -0.024719238, -0.014389038, -0.057006836, 0.005344391, 0.017837524, -0.011291504, -0.06274414, 0.014472961, 0.0056495667, 0.02722168, 0.0020713806, 0.028274536, 0.016708374, 0.022247314, 0.015510559, -0.008026123, 0.014884949, 0.015029907, 0.036224365, -0.017288208, 0.043762207, -0.0129776, 0.0039367676, 0.03945923, 0.025039673, 0.011276245, -0.0046653748, 0.03717041, 0.035003662, -0.023666382, 0.0049972534, 0.0004916191, -0.0068473816, 0.027130127, -0.0032997131, 0.0028686523, 0.003578186, -0.011352539, 0.048339844, 0.031188965, -0.011512756, 0.040374756, 0.016296387, 0.0073509216, 0.039367676, 0.026657104, 0.03640747, 0.0048294067, 0.026489258, -0.047943115, -0.029083252, 0.012382507, 0.02255249, -0.042877197, -0.012924194, -0.026351929, -0.0073127747, 0.024612427, -0.048736572, 0.016586304, -0.044189453, -0.00023412704, -0.02204895, 0.0008621216, 0.022537231, -0.021270752, -0.05606079, 0.0017461777, -0.034698486, 0.009536743, 0.02998352, -0.040222168, -0.019119263, 0.026062012, 0.011726379, -0.027542114, -0.0032997131, 0.01638794, -0.027694702, -0.012542725, 0.0013170242, -0.0107421875, 0.0042915344, 0.011062622, -0.061187744, -0.037750244, -0.07672119, -0.028839111, -0.0151901245, -0.06262207, -0.0021247864, 0.07531738, -0.027313232, -0.046875, -0.005001068, -0.018112183, -0.017807007, 0.011016846, -0.03793335, -0.010635376, -0.0124053955, -0.01096344, -0.009262085, 0.020492554, -0.03515625, 0.031066895, -0.0018463135, 0.0024433136, 0.029449463, -0.02798462, 0.016860962, 0.019729614, 0.01222229, 0.052734375, 0.019592285, 0.08691406, -0.016448975, 0.07116699, 0.033050537, -0.016220093, -0.013618469, 0.016479492, -0.0030498505, -0.023452759, 0.012458801, -0.066101074, 0.0011501312, -0.06677246, 0.0058250427, -0.0034446716, -0.046966553, 0.017822266, -0.08728027, -0.028259277, -0.056518555, 0.019592285, 0.059539795, -0.0049858093, -0.0016212463, -0.02368164, 0.0054512024, -0.0034637451, 0.0019741058, 0.02583313, 0.015594482, -0.001701355, -0.0390625, -0.006500244, 0.018829346, 0.0014715195, 0.0011205673, -0.074401855, -0.023483276, -0.027038574, 0.049743652, -0.032348633, 0.033996582, -0.022338867, -9.23872e-06, -0.028915405, -0.03463745, -0.013977051, 0.011360168, 0.013343811, 0.035583496, 0.0206604, -0.00843811, -0.021011353, -0.024093628, -0.0015830994, 0.051849365, 0.018798828, -0.017227173, -0.07739258, -0.036590576, 0.014205933, -0.013626099, -0.0066184998, -0.004837036, 0.05517578, 0.024963379, -0.017684937, 0.06915283, 0.03665161, 0.03451538, 0.03829956, 0.028961182, -0.005970001, -0.015510559, 0.015487671, 0.016052246, 0.0068626404, -0.017532349, -0.034210205, 0.02218628, 0.010131836, -0.011512756, 0.003063202, 0.08215332, 0.038024902, 0.0007891655, -0.011894226, -0.005092621, 0.017181396, -0.011665344, -0.018615723, -0.0141067505, -0.07080078, 0.0335083, -0.040527344, 0.041381836, 0.09222412, -0.05026245, 0.095336914, -0.010025024, -0.0021400452, 0.051086426, 0.019500732, -0.017669678, -0.008636475, 0.061157227, -0.050933838, 0.034301758, -0.0049057007, 0.009407043, 0.009681702, -0.005001068, -0.033172607, -0.009994507, 0.032562256, -0.017715454, 0.017166138, -0.022445679, -0.01436615, 0.023086548, 0.022857666, 0.0023860931, 0.007911682, -0.007247925, 0.0014333725, -0.0031032562, -0.021957397, -0.035888672, -4.017353e-05, -0.03741455, -0.020950317, 0.030349731, 0.024475098, 0.021026611, 0.012664795, 0.004245758, 0.0036029816, 0.024627686, -0.013183594, 0.011299133, -0.012893677, 0.028701782, 0.034088135, 0.0181427, -0.009529114, -0.029266357, 0.0135650635, -0.021362305, -0.017730713, 0.08123779, 0.024520874, -0.054351807, -0.039642334, -0.015716553, 0.040893555, -0.0340271, 0.0051002502, -0.027175903, -0.006855011, -0.01574707, 0.0054779053, -0.03111267, -0.009025574, 0.0025043488, -0.021942139, -0.02204895, -0.02935791, -0.02017212, -0.03527832, 0.018981934, 0.0044517517, 0.0037784576, -0.016921997, 0.042999268, -0.04647827, -0.007835388, -0.026885986, -0.0038375854, 0.06402588, 0.037475586, 0.044525146, -0.008995056, 0.021865845, -0.016815186, 0.16723633, 0.046813965, 0.004901886, -0.09667969, -0.022079468, -0.0049438477, 0.033233643, 0.050689697, 0.0023288727, 0.033721924, -0.052642822, -0.011543274, -0.051605225, 0.0041542053, 0.05935669, -0.024841309, -0.029571533, -0.013641357, 0.024658203, -0.00019681454, 0.006401062, -0.021026611, 0.018630981, -0.0065956116, 0.013656616, -0.05227661, -0.028060913, 0.0039787292, -0.050811768, 0.0040245056, -0.011802673, -0.025299072, 0.05303955, 0.05029297, 0.015296936, -0.043762207, -0.027008057, -0.015625, 0.015396118, 0.046661377, -0.023590088, -0.012779236, -0.027145386, -0.0118637085, -0.06793213, 0.105163574, 0.07342529, -0.0118637085, 0.01360321, 0.011985779, -0.020339966, -0.055877686, 0.0009899139, -0.0045928955, -0.011543274, -0.0003902912, -0.025375366, 0.02357483, -0.00067949295, 0.0078086853, -0.0077285767, -0.03829956, -0.010276794, 0.01727295, 0.017822266, -0.01448822, 0.0074539185, 0.040039062, 0.0033912659, 0.031585693, 0.012794495, -0.06512451, 0.065979004, -0.031066895, -0.03012085, 0.029953003, -0.028869629, -0.07171631, -0.07110596, 0.008010864, -0.0030269623, 0.06341553, 0.011169434, 0.012123108, 0.0063476562, 0.03967285, -0.005306244, 0.006511688, 0.00712204, 0.05508423, -0.015434265, -0.0028648376, 0.064331055, -0.043640137, 0.012229919, 0.03933716, -0.023925781, 0.054718018, 0.0052223206, -0.025726318, 0.033416748, 0.014137268, 0.015945435, -0.033691406, 0.024276733, -0.011756897, -0.03149414, -0.018798828, 0.017852783, 0.015205383, 0.00843811, 0.0022182465, -0.028289795, 0.037139893, -0.040374756, -0.0019836426, -0.011657715, 0.04534912, -0.0014095306, 0.021606445, 0.012252808, 0.008178711, -0.045776367, -0.028152466, -0.024230957, 0.0057411194, -0.035247803, -0.007385254, 0.026855469, -0.007293701, -0.025482178, -0.041809082, 0.005657196, -0.02381897, -0.039794922, -0.0066947937, -0.00484848, -0.019821167, -0.006958008, 0.03161621, 0.006752014, -0.001367569, -0.008674622, -0.04714966, -0.046813965, 0.01663208, -0.020324707, 0.0079574585, -0.018981934, -0.021850586, 0.04949951, 0.0039367676, 0.026031494, 0.02897644, -0.037231445, -0.013542175, 0.012145996, 0.0259552, -0.017929077, 0.027557373, 0.046875, -0.029327393, -0.019958496, -0.046142578, 0.060577393, -0.03881836, -9.584427e-05, 0.06854248, 0.07043457, 0.0058135986, 0.05154419, -0.007171631, -0.029312134, -0.014831543, -0.0055236816, -0.06616211, -0.02355957, -0.029281616, 0.011207581, -0.00598526, -0.033966064, -0.022491455, 0.039520264, -0.004486084, -0.026687622, -0.0063667297, -0.028869629, 0.006629944, -0.009223938, -0.009559631, -0.01789856, -0.010017395, -0.033111572, -0.035095215, 0.026565552, 0.03173828, 0.012039185, 0.027755737, 0.016662598, -0.026565552, 0.018615723, 0.047088623, -0.025604248, 0.05319214, 0.04220581, -0.03829956, -0.04397583, 0.0025615692, 0.025390625, 0.00010615587, -0.062042236, 0.011184692, -0.053649902, 0.05227661, 0.034057617, 0.053955078, -0.03869629, 0.0029239655, -0.004371643, 0.033325195, 0.0031356812, 0.030792236, 0.06021118, 0.0041160583, -0.085510254, 0.00013673306, -0.019088745, -0.062316895, -0.033477783, -0.03338623, -0.01777649, 0.015914917, -0.013893127, 0.034179688, -0.008262634, 0.011131287, -0.009689331, -0.007797241, 0.022964478, -0.0009822845, 0.006439209, -0.005695343, -0.061767578, 0.014930725, 0.028182983, 0.0044174194, -0.011642456, 0.01322937, -0.0026931763, 0.017700195, 0.0068130493, 0.030273438, -0.036010742, 0.019760132, 0.025497437, -0.06866455, 0.016220093, 0.010154724, -0.009750366, -0.0069389343, -0.06237793, -0.016860962, -0.0077781677, 0.006160736, -0.023895264, 0.06185913, -0.007411957, 0.012763977, -0.010391235, 0.0149002075, -0.0015745163, -0.008834839, 0.027618408, 0.009742737, 0.0061950684, 0.0024261475, -0.042419434, 0.01461792, 0.02519226, -0.02947998, -0.015541077, 0.014587402, 0.023513794, -0.004436493, 0.018127441, -0.027648926, -0.031829834, -0.020690918, -0.013206482, 0.014793396, 0.008460999, -0.014465332, -0.0012111664, 0.019561768, -0.008056641, 0.025497437, -0.010528564, 0.03878784, 0.023956299, 0.0107040405, -0.036987305, 0.01486969, -0.0073928833, -0.0034503937, 0.01550293, 0.051361084, 0.018798828, 0.015258789, 0.021743774, 0.004562378, 0.0692749, 0.0104599, 0.027770996, -0.01977539, 0.015396118, 0.019500732, 0.033416748, -0.0014333725, 0.039520264, -0.01701355, 0.0071754456, 0.041229248, 0.03086853, 0.027252197, -0.00042557716, -0.036224365, -0.047088623, 0.04736328, -0.019989014, -0.008476257, -0.014961243, -0.03753662, 0.016921997, -0.023422241, -0.04989624, -0.06137085, -0.0045394897, -0.045410156, 0.023147583, -0.0075149536, -0.031585693, 0.020248413, -0.009216309, -0.022399902, -0.06652832, 0.0014019012, -0.046173096, 0.018493652, -0.009971619, 0.042175293, -0.029708862, -0.03552246, -0.048675537, 0.012817383, -0.061279297, -0.035827637, 0.0041160583, 0.0001809597, 0.00041866302, -0.0038719177, 0.03253174, 0.010932922, 0.04650879, -0.0049972534, -0.011390686, 0.023223877, -0.011169434, -0.0013656616, 0.0029945374, -0.010749817, 0.020629883, 0.030532837, -0.0071792603, 0.014022827, 0.049560547, -0.051849365, -0.031082153, -0.033935547, -0.017440796, 0.009971619, -0.007865906, -0.024475098, 0.0234375, -0.015716553, -0.060424805, -0.027404785, -0.00242424, 0.061584473, 0.006126404, -0.0066947937, 0.036987305, 0.028778076, -0.014762878, -0.016799927, -0.011650085, -0.02204895, 0.036712646, -0.015899658, 0.03933716, -0.008041382, -0.03967285, 0.001414299, -0.022979736, -0.0025672913, -0.0074424744, 0.0004477501, 0.016693115, -0.013366699, -0.005264282, 0.031707764, -0.019989014, -0.00491333, 0.012619019, 0.027114868, -0.02671814, 0.008399963, -0.018920898, 0.0059432983, 0.0047912598, 0.0006155968, -0.0209198, -0.028945923, -0.027496338, 0.040771484, -0.026779175, 0.062927246, -0.054504395, -0.017715454, -0.018051147, 0.045715332, 0.01209259, 0.05505371, -0.064208984, 0.09484863, 0.024978638, 0.059814453, -0.0209198, -0.08642578, -0.038024902, 0.009109497, -0.029769897, 0.012962341, 0.012962341, -0.027572632, 0.014770508, 0.033355713, -0.0015249252, -0.028640747, 0.022583008, 0.016784668, 0.015945435, 0.010604858]}, "B00IREGQAE": {"id": "B00IREGQAE", "original": "Brand: Weber\nName: Weber 62753 19-1/2\" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer\nDescription: Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.\nFeatures: 19-1/2\" Weber LP SEAR Burner Tube.\nFits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.\n", "metadata": {"Name": "Weber 62753 19-1/2\" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer", "Brand": "Weber", "Description": "Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.", "Features": "19-1/2\" Weber LP SEAR Burner Tube.\nFits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0030975342, -0.0149002075, -0.015548706, -0.001627922, -0.012664795, -0.008377075, -0.008651733, 0.0014324188, 0.00034427643, 0.016571045, 0.033447266, 0.01927185, 0.013160706, -0.052490234, 0.024337769, 0.0036563873, 0.022644043, 0.030960083, 0.02520752, -0.015350342, 0.021194458, 0.0014076233, -0.02267456, 0.074035645, 0.04928589, -0.043823242, 0.023345947, -0.010414124, 0.03857422, -0.004306793, 0.027114868, -0.01864624, 0.027893066, 0.028335571, -0.031173706, 0.006111145, 0.0181427, -0.004673004, 0.010910034, -0.0056877136, 0.040039062, -0.014678955, -0.019958496, 0.043518066, -0.029693604, -0.018234253, 0.014343262, -0.026565552, 0.02760315, 0.056396484, -0.022460938, -0.02859497, -0.034942627, 0.02935791, -0.024383545, -0.06384277, 0.010765076, 0.020858765, 6.377697e-06, -0.018493652, -0.005241394, 0.035308838, 0.015823364, 0.013404846, -0.00060129166, 0.023910522, 0.1295166, -0.018508911, -0.021942139, -0.006385803, 0.0110321045, 0.012504578, 0.011871338, 0.019134521, -0.005634308, -0.041137695, 0.01158905, -0.026062012, 0.009361267, 0.04458618, -0.046813965, -0.038146973, -0.005996704, -0.005607605, -0.018432617, 0.0021839142, -0.025421143, 0.0033187866, -0.013511658, -0.0054779053, -0.0051879883, -0.012763977, -0.025436401, 0.04119873, 0.0070724487, -0.03137207, -0.02305603, -0.009742737, 0.019439697, -0.02116394, 0.022338867, -0.009986877, -0.030899048, 0.005695343, -0.0061569214, 0.04437256, -0.013168335, 0.04901123, 0.021697998, 0.012870789, -0.0001513958, -0.01637268, 0.024017334, -0.036010742, -0.01008606, 0.003332138, -0.002002716, 0.035003662, 0.022872925, -0.009376526, -0.00017380714, 0.012580872, -0.009788513, 0.012176514, 0.019958496, 0.036834717, -0.008895874, 0.007358551, -0.089904785, 0.07952881, -0.034973145, -0.006427765, 0.06304932, 0.03970337, -0.0047569275, -0.041412354, 0.02381897, 0.0016183853, -0.016799927, 0.03225708, -0.021530151, -0.025497437, 0.011360168, -0.030715942, -0.012924194, 0.018966675, 0.015213013, 0.016357422, 0.0033683777, -0.058746338, 0.03225708, -0.046569824, 0.0357666, 0.005592346, -0.0058174133, -0.0028877258, 0.022476196, -0.008804321, -0.03387451, -0.025772095, -0.0007996559, -0.030914307, -0.04006958, -0.026184082, -0.043792725, 0.03253174, 0.01007843, -0.0020866394, 0.029006958, 0.053619385, 0.0037517548, -0.04638672, 0.040374756, 0.015151978, -0.02281189, 0.015289307, 0.019241333, 0.044281006, 0.009628296, -0.030685425, -0.030319214, -0.06585693, 0.07055664, -0.03161621, -0.028900146, 0.03237915, 0.012016296, -0.017913818, -0.0009860992, -0.030136108, 0.07281494, 0.048034668, 0.026672363, 0.0018472672, 0.0039253235, -0.003572464, -0.03302002, 0.03050232, -0.02178955, -0.047943115, -0.016738892, 0.025268555, -0.019058228, -0.0026626587, 0.0009083748, -0.010444641, 0.019714355, 0.01701355, 0.047607422, 0.012306213, -0.02003479, -0.006164551, 0.011398315, -0.061035156, -0.038146973, 0.022415161, -0.02507019, 0.020690918, -0.0047950745, 0.015686035, 0.0011777878, -0.022781372, 0.0070877075, -0.009086609, 0.033233643, 0.016662598, -0.023635864, 0.011558533, 0.021759033, 0.021865845, -0.025344849, 0.01713562, 0.07421875, 0.05154419, -0.035461426, 0.040252686, 0.03881836, 0.062805176, -0.055999756, -0.010047913, 0.016647339, -0.0049972534, -0.032196045, -5.066395e-06, 0.027008057, -0.049591064, -0.03048706, 0.012245178, -0.04522705, -0.013420105, 0.09063721, 0.029144287, 0.014167786, 0.01335907, -0.02670288, 0.010574341, 0.0025901794, -0.008255005, -0.026245117, 0.03729248, -0.00036978722, 0.031982422, -0.0005874634, 0.007881165, 0.048065186, 0.018875122, 0.026000977, 0.01574707, -0.06488037, 0.043762207, 0.02722168, -0.0010528564, -0.011291504, 0.006111145, 0.025802612, -0.03463745, -0.004184723, 0.00073194504, -0.0054092407, -0.012428284, -0.0027427673, -0.00094652176, 0.024642944, 0.0033302307, 0.026519775, -0.019699097, 0.028808594, 0.007545471, -0.019332886, -0.013679504, 0.020645142, -0.012062073, -0.023086548, -0.008415222, 0.037200928, -0.027557373, 0.0602417, 0.0031700134, 0.006416321, -0.0028629303, 0.003019333, 0.031982422, -0.014587402, -0.006565094, 0.0014276505, -0.01838684, 0.005760193, 0.025436401, 0.009986877, -0.038848877, -0.0181427, 0.01071167, 0.014152527, 0.015533447, 0.0022468567, -0.012191772, 0.008171082, 0.019882202, 0.026367188, 0.05392456, 0.0024108887, 0.019256592, -0.058532715, -0.015548706, -0.009529114, 0.032928467, -0.045715332, -0.015426636, 0.010322571, -0.0006084442, -0.03640747, -0.03390503, -0.04058838, -0.009841919, -0.010871887, 0.007583618, 0.006717682, 0.026351929, -0.010665894, -0.02381897, -7.748604e-05, 0.008293152, 0.0007338524, -0.02267456, -0.038238525, -0.023132324, 0.009605408, 0.017684937, -0.02659607, -0.0105896, 0.029632568, -0.020690918, -0.009674072, 0.0029506683, -0.0129776, -0.034454346, 0.005054474, -0.048095703, -0.06719971, -0.08758545, -0.021316528, -0.007472992, -0.054718018, 0.009986877, 0.020462036, 0.00024747849, 0.011009216, -0.008674622, 0.01133728, 0.02659607, 0.004966736, 0.024230957, -0.057861328, -0.019851685, -0.007205963, -0.0033988953, 0.025421143, -0.028503418, -0.012107849, -0.0031471252, 0.02267456, 0.047851562, -0.041381836, 0.032287598, -0.03744507, 0.059906006, 0.05230713, 0.038116455, -0.021759033, -0.06384277, -0.009483337, 0.097839355, -0.060913086, -0.047943115, 0.0074920654, 0.02255249, 0.054382324, -0.00031161308, 0.035614014, -0.05621338, -0.09375, 0.019317627, 0.008300781, -0.035064697, -0.025772095, -0.05908203, -0.07043457, -0.04385376, 0.0024662018, 0.011169434, -0.028030396, 0.005874634, -0.048431396, 0.0090408325, -0.00970459, -4.696846e-05, 0.016830444, -0.007080078, -0.0042304993, -0.02468872, 0.045684814, -0.06616211, 0.04171753, 0.028640747, -0.023254395, -0.025512695, -0.005329132, 0.021102905, -0.035705566, 0.005897522, -0.02494812, -0.014854431, -0.04034424, -0.026748657, -0.023605347, 0.06463623, 0.052093506, 0.049865723, 0.045532227, -0.011306763, -0.037597656, -0.034606934, -0.005218506, 0.041931152, -0.014518738, 0.015327454, -0.04788208, -0.045715332, -0.015045166, -0.025268555, 0.03111267, -0.0042686462, 0.03857422, 0.025146484, 0.00541687, 0.13317871, -0.00374794, 0.03414917, 0.019378662, 0.0064315796, 0.012290955, -0.033843994, 0.04336548, 0.010223389, -0.012535095, -0.020690918, 0.013801575, 0.026870728, 0.017700195, -0.03857422, 0.0049591064, 0.03994751, -0.00881958, 0.0076446533, -0.014404297, 0.017349243, 0.027648926, 0.0107040405, -0.012870789, -0.039245605, -0.05029297, 0.0008430481, -0.0871582, 0.0692749, 0.023971558, -0.0045204163, 0.038879395, 0.059387207, -0.021148682, 0.010116577, 0.055419922, -0.030914307, 0.012489319, 0.0012960434, -0.05444336, -0.020050049, 0.022338867, -0.068237305, 0.012832642, -0.0034217834, -0.08258057, 0.017196655, 0.025054932, -0.0385437, -0.030838013, 0.0032405853, 0.011299133, 0.004714966, 0.014625549, -0.049346924, 0.046661377, -0.015068054, 0.012779236, 0.013046265, -0.023925781, -0.05593872, 0.034851074, 0.0017681122, -0.049041748, 0.011604309, 0.013702393, -0.035369873, -0.0021705627, 0.025482178, 0.03363037, 0.004432678, -0.04547119, -0.009216309, -0.0073013306, 0.01828003, 0.021194458, -0.020217896, 0.028244019, -0.0032672882, 0.0025520325, 0.0037250519, 0.022537231, 0.0178833, -0.06518555, -0.082458496, -9.346008e-05, 0.017578125, 0.006134033, -0.07611084, -0.0146102905, -0.03543091, -0.015388489, -0.0028057098, -0.05407715, -0.04168701, 0.03579712, 0.053100586, -0.0079422, 0.007820129, -0.013847351, -0.044952393, -0.053741455, 0.0030841827, -0.0059013367, 0.05633545, 0.017288208, 0.018798828, -0.029067993, -0.011878967, -0.019424438, -0.021118164, 0.08258057, 0.025299072, 0.015731812, -0.019927979, -0.009895325, -0.024093628, 0.07354736, 0.016738892, 0.008010864, -0.037261963, -0.021240234, 0.0033168793, 0.04650879, 0.07952881, -0.0016555786, 0.02633667, -0.035827637, -0.016998291, -0.034118652, -0.023651123, 0.010772705, -0.042297363, -0.040527344, -0.03363037, 0.036712646, -0.0022602081, 0.0005121231, -0.025009155, 0.0032539368, 0.0044898987, -0.025863647, -0.02003479, 0.0072898865, 0.0068130493, -0.0018615723, -0.006290436, -0.004310608, 0.0049972534, 0.015205383, 0.0074424744, -0.040222168, 0.04360962, 0.014030457, 0.005794525, -0.00043797493, -0.010002136, -0.027267456, 0.02456665, -0.024917603, -0.008049011, -0.02835083, 0.058654785, 0.035095215, -0.012573242, 0.010299683, 0.0075912476, -0.009811401, -0.037902832, 0.017593384, 0.004184723, 0.024475098, 0.001830101, -0.020446777, 0.010124207, -0.025650024, -0.009002686, -0.020965576, -0.0022640228, 0.008483887, 0.025741577, -0.022140503, -0.037597656, -0.005455017, 0.031311035, 0.004890442, 0.02822876, 0.009429932, 0.032470703, -0.0078086853, -0.013168335, 0.010543823, -0.018081665, -0.007904053, -0.022064209, -0.0029087067, -0.009124756, -0.0032444, -0.037384033, 0.011421204, -0.041656494, -0.02015686, -0.007911682, 0.016021729, -0.019042969, -6.020069e-05, 0.04547119, -0.025314331, 0.050964355, 0.028625488, -0.013061523, -0.011276245, 0.0184021, -0.04232788, 0.052093506, -0.019119263, -0.033721924, 0.0029830933, -0.00067281723, 0.0014638901, -0.035858154, 0.055267334, -0.0042419434, -0.018005371, -0.040740967, 0.0021152496, 0.024032593, 0.049835205, 0.024917603, -0.047210693, 0.033294678, 0.026062012, -0.020935059, -0.0075416565, 0.01399231, -0.0184021, -0.002866745, -0.015533447, -0.035980225, -0.008232117, -0.021865845, -0.07965088, 0.01058197, 0.045410156, 0.0335083, -0.006008148, -0.023406982, -0.03149414, -0.061584473, -0.0256958, 0.03643799, 0.011856079, 0.008354187, -0.035461426, -0.013931274, -0.007926941, 0.028289795, 0.026641846, 0.01184845, -0.04525757, -0.038909912, 1.937151e-05, 0.028717041, -0.0067749023, 0.04486084, -0.045196533, 0.0024719238, 0.009346008, -0.02128601, 0.0069084167, 0.052520752, -0.057739258, -0.013580322, -0.009094238, -0.005584717, -0.01171875, -0.044677734, 0.059570312, -0.03579712, -0.049743652, -0.05114746, 0.04663086, -0.013694763, -0.02633667, 0.05557251, 0.0040130615, 0.0209198, 0.012878418, -0.0054512024, -0.07647705, 0.0028572083, -0.00027656555, -0.07531738, -0.037872314, -0.054870605, 0.004398346, 0.015365601, -0.024124146, -0.018676758, 0.053466797, 0.030929565, 0.01234436, -0.08660889, -0.05279541, 0.008117676, -0.03942871, 0.006351471, -0.011177063, -0.0022144318, -0.005268097, -0.027938843, -0.07092285, 0.003025055, 0.01586914, 0.013023376, 0.0027675629, 0.019104004, 0.0039596558, 0.021987915, -0.027954102, 0.016204834, 0.0077552795, -0.0037193298, 0.0048294067, 0.039276123, -0.03982544, 0.039733887, -0.089660645, -0.008163452, 0.0036773682, 0.018218994, 0.018310547, -0.0053138733, -0.04525757, -0.035003662, 0.02571106, 0.03488159, 0.038391113, 0.039489746, -0.00019621849, -0.019821167, 0.035888672, 0.017318726, 0.004737854, -0.024734497, -0.0143585205, -0.026153564, 0.03515625, 0.050476074, 0.011131287, 0.014183044, 0.028060913, 0.05532837, -0.013542175, -0.004310608, 0.007820129, -0.014884949, 0.023361206, -0.014877319, -0.0022354126, 0.01020813, 0.07196045, 0.02923584, -0.0060920715, -0.025115967, -0.017288208, 0.015586853, 0.012718201, 0.032562256, -0.04034424, 0.038604736, 0.025177002, -0.07910156, 0.0019664764, -0.023147583, 0.0062675476, -0.009887695, -0.11004639, -0.02357483, -0.05328369, -0.018127441, 0.026504517, 0.07543945, 0.032592773, 0.021347046, 0.010032654, 0.0041007996, -0.0051727295, -0.0029773712, 0.0051460266, 0.03036499, 0.010513306, -0.014091492, -0.06762695, 0.043762207, 0.016494751, -0.002828598, 0.07141113, -0.04260254, -0.0006351471, -0.029769897, 0.045440674, -0.016738892, -0.052856445, 0.013420105, 0.0184021, -0.01864624, 0.038391113, 0.029953003, -0.01777649, -0.018325806, -0.03717041, 0.019348145, -0.015792847, 0.01965332, 0.02458191, -0.0017709732, -0.014595032, -0.028762817, -0.022964478, -0.012039185, 0.0017080307, 0.022476196, -0.036193848, 0.057769775, 0.051208496, 0.038482666, 0.048034668, -0.020050049, 0.008712769, 0.039642334, -0.004760742, 0.028778076, -0.009307861, -0.0008454323, 0.0020561218, -0.03677368, -0.012611389, 0.0003182888, -0.016098022, 0.01739502, 0.017440796, -0.0056610107, -0.027450562, -0.011528015, 0.018234253, -0.03781128, 0.04260254, -0.045837402, -0.047027588, 0.0012111664, -0.0059432983, -0.014892578, 0.020736694, -0.043121338, -0.021835327, 0.004776001, -0.0357666, 0.010826111, 0.0033359528, -0.047332764, -0.03717041, -0.009880066, -0.0027809143, 0.04296875, 0.0023536682, 0.054138184, -0.0043640137, -0.024047852, -0.027770996, -0.0022945404, -0.0060577393, -0.0046424866, 0.04446411, -0.044403076, -0.013282776, -0.0057907104, 0.032958984, 0.041046143, 0.047790527, -0.010765076, 0.0031719208, -0.013336182, -0.03488159, 0.064941406, 0.014930725, -0.035491943, 0.008865356, 0.024505615, -0.009681702, 0.035247803, 0.01222229, 0.021392822, -0.032806396, 0.0024299622, -0.033294678, -0.028366089, 0.044647217, -0.033569336, 0.026443481, 0.002500534, -0.076293945, 0.0027561188, -0.02178955, 0.03302002, 0.030792236, 0.0057640076, -0.0029735565, -0.04949951, -0.01689148, -0.04763794, -0.0001295805, 0.04107666, 0.04373169, -0.0135650635, -0.027328491, 0.02444458, -0.00090169907, 0.00095653534, 0.02017212, 0.02178955, 0.0005865097, 0.015777588, -0.025436401, -0.013793945, -0.014556885, -0.007083893, 0.010932922, -0.038330078, 0.044189453, 0.056915283, -0.061645508, -0.021316528, -0.01789856, -0.005832672, 0.011695862, -0.08013916, 0.027160645, -0.027328491, 0.018447876, -0.0072288513, 0.024261475, 0.0018062592, 0.044433594, -0.041259766, -0.029388428, 0.020950317, 0.027313232, 0.012557983, -0.05444336, 0.05984497, 0.013809204, 0.08331299, -0.016952515, -0.08874512, -0.042999268, 0.02998352, 0.015838623, -0.013053894, 0.061798096, -0.025787354, 0.0057296753, 0.0032615662, -0.02935791, -0.028533936, 0.02116394, 0.009056091, -0.011001587, 0.01423645]}, "B007O0MIIG": {"id": "B007O0MIIG", "original": "Brand: Hiland\nName: Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze\nDescription: \nFeatures: 39-Inch tall portable glass tube patio heater\nHammered Bronze finish. Quartz Glass Tube\nHeat output: 9500 BTU's. Electronic Ignition\nGas type: Propane\nUses a 1 lb propane tank (lasts 2-3 hrs. on high)\n", "metadata": {"Name": "Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze", "Brand": "Hiland", "Description": "", "Features": "39-Inch tall portable glass tube patio heater\nHammered Bronze finish. Quartz Glass Tube\nHeat output: 9500 BTU's. Electronic Ignition\nGas type: Propane\nUses a 1 lb propane tank (lasts 2-3 hrs. on high)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.02432251, 0.0031471252, -0.07470703, -0.081604004, 0.033355713, -0.033691406, -0.005619049, 0.048309326, -0.04888916, 0.033081055, -0.0044059753, 0.05532837, 0.0044670105, -0.025466919, 0.039123535, 0.0016756058, 0.02708435, 0.013923645, -0.0006723404, -0.029159546, -0.014587402, -0.0007791519, -0.034118652, 0.12121582, 0.020385742, -0.04034424, 0.02217102, -0.017089844, 0.022705078, -0.008476257, 0.030410767, 0.017913818, 0.0135269165, -0.0033473969, -0.0006213188, -0.019561768, -0.019210815, 0.007156372, -0.009635925, -0.00079631805, 0.001458168, -0.0044174194, -0.029876709, 0.018661499, -0.05606079, 0.010169983, -0.045288086, -0.008392334, 0.018600464, 0.04071045, -0.012702942, 0.007843018, -0.016555786, 0.013908386, -0.020690918, -0.03805542, 0.021469116, -0.01927185, 0.011413574, -0.02973938, -0.03137207, -0.006072998, 0.038909912, 0.0035762787, -0.02961731, -0.005519867, 0.06286621, -0.0076026917, 0.06149292, -0.05038452, -0.02154541, 0.068725586, -0.004501343, 0.04916382, -0.04916382, -0.006717682, 0.044281006, 0.042663574, 0.02015686, 0.019470215, -0.021377563, -0.011436462, 0.0012407303, -0.031066895, 0.011444092, -0.0037460327, -0.018356323, -0.004760742, -0.028869629, -0.05114746, -0.027511597, -0.01763916, -0.04864502, 0.017028809, -0.017852783, -0.012260437, -0.03842163, -0.084106445, 0.057006836, 0.01737976, 0.021850586, -0.03060913, -0.010734558, 0.009162903, -0.009010315, 0.016433716, -0.007873535, -0.021148682, 0.018554688, 0.029083252, -0.00969696, 0.0011253357, -0.0065689087, -0.0039520264, -0.044281006, 0.006904602, -0.033111572, -0.010635376, -0.0062789917, -0.027328491, -0.025009155, -0.013702393, -0.008544922, 0.022781372, 0.027526855, 0.02192688, -0.00944519, 0.02470398, -0.0597229, 0.041931152, -0.027740479, 0.0051460266, 0.020629883, 0.045532227, -0.009422302, -0.010978699, 0.04940796, 0.010169983, 0.009979248, 0.0003566742, 0.006385803, -0.0036373138, 0.0014925003, 0.01586914, -0.026275635, 0.02607727, 0.022659302, -0.009170532, -0.032226562, -0.04675293, -0.021209717, -0.025238037, 0.04397583, 0.0073623657, 0.005241394, -0.04055786, 0.026504517, -0.04748535, -0.005958557, -0.060760498, -0.036987305, -0.0032863617, 0.02368164, 0.021606445, -0.013839722, 0.02218628, 0.042236328, -0.0068969727, 0.035614014, 0.09906006, 0.025253296, -0.025177002, 0.016113281, 0.04522705, -0.004173279, 0.0066184998, -0.04888916, 0.109313965, 0.05480957, -0.107543945, -0.055389404, -0.058441162, 0.1743164, -0.043640137, -0.017303467, -0.017684937, 0.010017395, -0.013397217, 0.01852417, -0.0020713806, 0.03527832, 0.016586304, -0.015808105, -0.035064697, 0.004573822, 0.0067214966, -0.053619385, 0.0009784698, -0.010047913, 0.013511658, -0.045043945, 0.025009155, -0.009338379, 0.0146484375, 0.027954102, -0.005924225, 0.011108398, 0.022323608, 0.029663086, 0.03567505, -0.013130188, 0.010925293, 0.015350342, -0.078430176, -0.0093307495, 0.026397705, -0.0049476624, 0.031082153, -0.0009727478, 0.017425537, 0.014312744, -0.026367188, 0.027420044, 0.015419006, 0.03390503, -0.0008993149, -0.018188477, -0.008483887, 0.043792725, -0.0010814667, 0.014579773, 0.03086853, 0.074157715, 0.066467285, -0.0064201355, 0.026794434, 0.07098389, 0.047607422, -0.02432251, -0.016830444, -0.0033607483, -0.019622803, -0.032104492, 0.041931152, -0.023132324, -0.012130737, 0.0044136047, 0.020889282, -0.041900635, -0.026428223, 0.03491211, -5.9068203e-05, 0.03152466, 0.0056381226, -0.050933838, 0.025741577, 0.020507812, 0.016494751, -0.015289307, 0.036468506, -0.014823914, 0.059631348, 0.011009216, 0.015640259, -0.013793945, 0.01977539, 0.03237915, 0.038085938, 0.0024871826, -0.0041160583, 0.006061554, 0.02720642, -0.019012451, -0.03753662, 0.017364502, 0.017837524, -0.0030956268, 0.022491455, -0.02053833, -0.038360596, 0.015319824, -0.0028495789, -0.042663574, -0.005432129, 0.058135986, 0.022262573, -0.02494812, 0.005153656, -0.019165039, 0.014297485, 0.035217285, -0.01272583, -0.036254883, 0.027359009, -0.027404785, -0.02130127, 0.013763428, 0.01676941, 0.012863159, -0.024642944, -0.00409317, 0.037200928, -0.05947876, 0.042510986, -0.0059547424, 0.038482666, -0.04611206, 0.045043945, 0.023620605, -0.030410767, -0.008834839, 0.013748169, 0.028823853, 0.014190674, 0.016555786, 0.009414673, 0.016448975, 0.029571533, 0.023239136, 0.009735107, 0.0061187744, 0.024398804, -0.022216797, -0.0007972717, 0.012260437, -0.009750366, -0.030303955, -0.0128479, 0.0023937225, 0.030075073, 0.038391113, 0.020614624, -0.00059461594, -0.05065918, 0.007865906, -0.0107803345, -0.016540527, 0.034088135, -0.029449463, -0.0345459, -0.023040771, -0.026687622, 0.038208008, 0.014472961, -0.030914307, 0.004711151, 0.015579224, 0.011871338, -0.049804688, 0.006164551, 0.0011491776, -0.018997192, 0.0107803345, 0.0061416626, 0.017501831, 0.020614624, -0.040893555, -0.012199402, 0.0022964478, -0.054229736, 0.012710571, -0.03427124, -0.038146973, -0.0054779053, 0.0501709, -0.005420685, -0.0395813, -0.022109985, -0.041656494, 0.004951477, 0.04345703, -0.009773254, -0.056396484, -0.044525146, -0.07208252, -0.00356102, 0.004840851, -0.042266846, -0.00844574, -0.023925781, 0.022064209, 0.016525269, -0.012069702, -0.015014648, 0.0058135986, 0.011642456, 0.047302246, 0.04067993, 0.026885986, -0.011619568, 0.015823364, 0.021072388, -0.046539307, -0.00096035004, -0.00019562244, 0.002204895, -0.010566711, -0.022094727, -0.055999756, -0.015571594, -0.09057617, 0.013175964, 0.015472412, -0.047088623, 0.0034713745, -0.066345215, -0.052642822, -0.0524292, 0.021621704, 0.050323486, -0.017181396, 0.0019111633, -0.038726807, 0.0028495789, -0.02029419, 0.0284729, 0.036193848, -0.009841919, 0.01940918, -0.027450562, 0.010971069, -0.0040245056, 0.025222778, 0.027328491, -0.040405273, -0.0137786865, -0.028533936, 0.014526367, 0.0042152405, 0.039093018, -0.02960205, 0.016082764, -0.01121521, -0.010856628, -0.008735657, 0.044830322, 0.01210022, 0.05886841, 0.028549194, -0.022506714, -0.03656006, -0.0181427, 0.014030457, 0.014175415, -0.03100586, 0.021621704, -0.0010585785, -0.004184723, -0.002855301, -0.038238525, -0.0057144165, 0.0021190643, 0.04510498, 0.028747559, 0.0069084167, 0.054595947, -0.014511108, 0.02520752, 0.05279541, -0.0602417, -0.04837036, -0.0390625, 0.010238647, 0.009994507, 0.020828247, -0.043670654, 0.08618164, 0.016174316, -0.005176544, 0.021087646, 0.007171631, -0.017105103, 0.038909912, -0.008308411, 0.011291504, -0.012924194, 0.004776001, 0.015991211, -0.05215454, -0.027999878, -0.06982422, 0.014717102, -0.03353882, 0.027313232, 0.026626587, -0.018966675, 0.07373047, 0.033966064, 0.0020618439, 0.0079422, 0.043823242, 0.013366699, 0.00548172, 0.056243896, 0.0061149597, -0.03387451, 0.012771606, -0.019836426, 0.02494812, -0.017990112, -0.041900635, 0.041809082, -0.012420654, -0.045776367, -0.044281006, 0.017730713, -0.012191772, -0.0016336441, 0.00756073, -0.05441284, -0.02394104, -0.038635254, -0.011856079, 0.0016078949, -0.030212402, -0.046569824, 0.008308411, -0.008644104, -0.04119873, 0.013504028, 0.022155762, 0.0006532669, 0.0039367676, 0.0055351257, 0.043395996, 0.004272461, -0.01852417, 0.011405945, -0.008934021, 0.062286377, 0.0030956268, -0.0062446594, 0.050201416, -0.011787415, 0.011413574, -0.001408577, -0.0070114136, -0.010139465, -0.03515625, -0.05480957, 0.028259277, 0.031036377, -0.022766113, -0.02998352, 0.011062622, -0.030685425, 0.0036792755, 0.004852295, -0.0099487305, 0.0074806213, -0.02658081, -0.00699234, -0.064697266, -0.028640747, -0.0010023117, 0.0043678284, -0.033691406, 0.0076446533, -0.0149002075, 0.006187439, 0.02645874, 0.044281006, -0.05126953, -0.026733398, -0.007381439, -0.013824463, 0.032989502, -0.025177002, -0.041625977, -0.01058197, -0.008766174, 0.0104904175, 0.064331055, 0.00015032291, -0.030166626, -0.04650879, -0.009971619, 0.018875122, 0.026641846, 0.029708862, -0.019195557, -0.0003042221, -0.023803711, -0.012870789, -0.07397461, 0.017059326, 0.03451538, -0.01939392, -0.062194824, -0.028442383, 0.03781128, 0.020904541, 0.020690918, 0.033935547, -0.0032787323, 0.009284973, 0.007724762, -0.11407471, -0.06359863, -0.009208679, -0.020187378, 0.009849548, -0.0038547516, -0.015068054, 0.040985107, 0.023529053, 0.0034561157, -0.025161743, 0.0027599335, 0.0021705627, 0.009284973, 0.048553467, -0.03829956, 0.0033473969, -0.028137207, -0.010383606, -0.04119873, 0.026657104, 0.03186035, -0.025726318, 0.028961182, -0.0014944077, 0.009742737, 0.04324341, -0.0029678345, -0.03616333, -0.0068511963, 0.017059326, -0.0037517548, 0.0072250366, 0.019989014, -0.003376007, -0.031097412, -0.022064209, 0.0061454773, 0.052093506, -0.038909912, -0.012741089, -0.04876709, -0.05102539, -0.005142212, 0.01878357, -0.01586914, 0.0052452087, 0.056854248, -0.013374329, 0.0132751465, 0.013580322, -0.014930725, -0.008491516, -0.041168213, -0.0038852692, -0.021087646, 0.013038635, 0.024887085, 0.0055732727, -0.043060303, 0.053253174, -0.017669678, 0.019378662, -0.029815674, 0.03564453, 0.007587433, -0.004070282, 0.033050537, 0.023910522, 0.020828247, 0.042816162, -0.0003695488, 0.019348145, 0.0037670135, -0.025360107, 0.008163452, 0.024505615, 0.009651184, -0.03665161, 0.064941406, -0.0112838745, -0.0044441223, -0.049987793, 0.015022278, 0.0040512085, 0.010910034, -0.0017585754, -0.03555298, 0.049194336, -0.03982544, -0.028060913, 0.017196655, 0.064941406, -0.031982422, -0.016189575, 0.033721924, -0.015853882, -0.043670654, 0.012817383, -0.050750732, 0.024276733, 0.039215088, -0.007965088, -0.007160187, 0.014442444, -0.03640747, -0.013282776, 0.01260376, -9.0420246e-05, -0.015617371, 0.0026454926, 0.014915466, -0.018325806, 0.0154800415, 0.043762207, -0.009155273, 0.009483337, -0.055419922, -0.033325195, -0.028015137, 0.0024356842, -0.022628784, 0.060760498, -0.022277832, 0.012641907, 0.018844604, -0.055877686, -0.017944336, 0.03439331, -0.021484375, 0.015975952, -0.0044059753, 0.0020923615, -0.0006351471, -0.009399414, 0.10241699, -0.040374756, -0.055908203, -0.06439209, 0.02897644, -0.010467529, -0.03652954, 0.05911255, -0.021453857, 0.01979065, 0.002626419, 0.00843811, -0.038726807, 0.002735138, 0.0129470825, -0.05532837, -0.039245605, -0.030303955, -0.00070238113, -0.015487671, 0.016967773, -0.049102783, 0.028167725, -0.04852295, -0.011375427, -0.02822876, 0.0064201355, -0.0065841675, -0.062683105, 0.0057373047, -0.028686523, -0.005279541, -0.0072250366, -0.01902771, -0.037963867, -0.00774765, -0.004699707, 0.003648758, 0.02897644, 0.017089844, 0.014305115, 0.042022705, -0.037506104, -0.027191162, 0.031921387, -0.049682617, 0.00096940994, 0.011238098, 0.007270813, -0.010185242, -0.011268616, 0.0063323975, -0.01864624, -0.009803772, 0.009796143, 0.031402588, -0.049865723, -0.014892578, 0.039093018, 0.046691895, 0.029327393, 0.013031006, 0.020751953, 0.0046920776, -0.01838684, 0.006072998, 0.045074463, -0.020141602, -0.029571533, -0.033721924, 0.0024318695, 0.01927185, 0.0015602112, 0.034484863, 0.020767212, 0.02368164, -0.015151978, -0.00554657, 0.017715454, -0.010932922, -0.0132751465, 0.0107421875, -0.016586304, 0.023864746, 0.023025513, 0.0026378632, 0.055786133, -0.030899048, -0.012626648, 0.026824951, -0.031280518, 0.040222168, -0.031951904, 0.0289917, 0.017807007, -0.061279297, 0.024383545, -0.019744873, 0.0018625259, 0.006160736, -0.020629883, -0.0048294067, 0.019851685, 0.018051147, -0.008583069, 0.022964478, -0.0040740967, 0.0062026978, -0.008888245, -0.007850647, 0.010070801, -0.030761719, 0.025848389, 0.01953125, -0.003868103, -0.019134521, -0.031677246, 0.04095459, 0.032409668, 0.005466461, 0.023666382, 0.0034484863, 0.008956909, -0.0093307495, 0.012710571, -0.025421143, 0.0038719177, 0.021514893, -0.0052948, 0.013839722, -0.0058517456, -0.02444458, 0.025100708, 0.005886078, -0.02154541, 0.0256958, -0.05218506, 0.015289307, 0.012382507, 0.025909424, -0.06378174, -0.027801514, -0.011413574, -0.03265381, 0.019760132, 0.034851074, -0.010894775, 0.054229736, 0.038269043, -0.05328369, 0.034576416, -0.018966675, -0.0101623535, -0.048736572, 0.0491333, -0.0035247803, -0.0028686523, -0.03665161, 0.018188477, 0.006587982, 0.026138306, 0.04031372, 0.002796173, -0.07196045, -0.022079468, 0.034698486, -0.022842407, 0.030700684, -0.037963867, -0.03817749, 0.0051841736, -0.0076065063, 0.009498596, -0.008773804, -0.016235352, -0.02835083, 0.05142212, -0.030563354, -0.021148682, 0.039855957, -0.009063721, 0.0115356445, -0.020401001, 0.045318604, -0.031555176, 0.02720642, 0.007358551, 0.011405945, 0.023254395, 0.032928467, 0.013618469, -0.07165527, -0.099243164, 0.020935059, -0.03967285, -0.0055236816, 0.041381836, -0.028747559, -0.004108429, -0.0016946793, 0.04812622, 0.050689697, 0.062164307, -0.00233078, 0.057281494, -0.040405273, -0.026504517, 0.04159546, 0.042633057, -0.048461914, -0.02180481, -0.014152527, -0.0014867783, 0.061340332, 0.03111267, 0.005744934, -0.049041748, -0.040649414, -0.061920166, -0.009414673, -0.0066223145, -0.016036987, 0.03579712, -0.0041007996, -0.072143555, 0.024490356, 0.010673523, 0.07952881, 0.012229919, -0.042022705, 0.035125732, -0.055114746, -0.029251099, -0.068115234, -0.016052246, 0.046936035, 0.00019443035, -0.031951904, -0.0071411133, 0.024917603, -0.024627686, 0.014022827, 0.036071777, 0.0040359497, 0.048950195, 0.0029315948, -0.0064849854, 0.045806885, -0.042419434, 0.04663086, -0.014152527, 0.02619934, 0.00044870377, 0.004096985, -0.023742676, -0.025054932, -0.038604736, 0.023071289, -0.034118652, -0.052459717, -0.06262207, -0.06274414, 0.060791016, 0.054382324, -0.014572144, 0.0070343018, 0.010955811, 0.02015686, -0.03540039, -0.021972656, 0.020889282, -0.029586792, -0.018081665, 0.003856659, -0.0017595291, 0.054138184, -0.026046753, -0.051452637, -0.05114746, 0.03894043, -0.006046295, 0.0045166016, 0.04498291, -0.027679443, 0.0131073, 0.005405426, -0.011581421, -0.00843811, 0.0010900497, -0.01828003, -0.01625061, 0.0046043396]}, "B001EHKQ2A": {"id": "B001EHKQ2A", "original": "Brand: Stansport\nName: Stansport Single Burner 5,500 BTU Propane Stove, Black\nDescription: \nFeatures: Durable heavy gauge steel with baked on enamel finish\nIndividual regulator on/off control knob adjusts burner up to 5500 BTU's\nStove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included)\nWind baffles supports cookware and shields burners\nLow profile base for stability\n", "metadata": {"Name": "Stansport Single Burner 5,500 BTU Propane Stove, Black", "Brand": "Stansport", "Description": "", "Features": "Durable heavy gauge steel with baked on enamel finish\nIndividual regulator on/off control knob adjusts burner up to 5500 BTU's\nStove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included)\nWind baffles supports cookware and shields burners\nLow profile base for stability", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.01966858, -0.0231781, -0.0146865845, -0.051330566, -0.03878784, -0.012321472, -0.03930664, 0.009552002, -0.020202637, -0.016159058, -0.007648468, 0.031677246, -0.014808655, -0.051574707, 0.05078125, -0.016693115, 0.018249512, 0.007926941, 0.0073890686, -0.033843994, 0.027664185, -0.036743164, 0.004600525, 0.10491943, 0.01940918, -0.020721436, -0.023910522, 0.010139465, 0.008712769, -0.0035495758, 0.012611389, 0.02116394, 0.03237915, -0.014968872, 0.008399963, -0.031341553, 0.019760132, -0.019927979, -0.027511597, 0.014404297, 0.01802063, 0.009147644, 0.019805908, 0.027008057, 0.0006198883, -0.06347656, 0.055541992, -0.055908203, 0.0061073303, -0.0079574585, 0.006401062, -0.015525818, 0.014602661, -0.07635498, -0.027069092, -0.013679504, 0.02255249, 0.02116394, -0.017623901, -0.02178955, -0.014945984, 0.070617676, 0.012176514, 0.03591919, -0.04748535, 0.0074539185, 0.095703125, -0.033325195, 0.054992676, -0.039367676, -0.009712219, 0.08215332, 0.03881836, 0.013259888, -0.045715332, -0.03753662, 0.03665161, -0.003528595, 0.028213501, -0.021118164, 0.017990112, -0.026138306, 0.034942627, -0.008483887, 0.019332886, 0.0062675476, -0.0037345886, -0.015434265, -0.024276733, -0.0079193115, -0.018936157, 0.0008158684, -0.00093889236, 0.009361267, -0.041107178, 0.00843811, -0.02545166, -0.09350586, 0.04434204, -0.034576416, 0.05316162, -0.046081543, -0.016921997, 0.041809082, 0.0118255615, 0.051727295, -0.001947403, 0.021347046, 0.023605347, -0.012886047, -0.007965088, 0.001124382, 0.00027251244, 0.018112183, -0.040496826, 0.00068998337, -0.04434204, 0.011558533, -0.021896362, 0.03842163, -0.033721924, -0.008239746, 0.042877197, -0.028457642, -0.02658081, -0.042877197, -0.0115356445, -0.022018433, 0.0063095093, 0.003326416, -0.027114868, 0.024871826, 0.032073975, 0.03930664, 0.016448975, -0.0041236877, 0.02067566, -0.0047416687, 0.02456665, -0.008636475, -0.0124053955, 0.0124435425, 0.045288086, -0.012832642, -0.003446579, 0.014915466, 0.014724731, -0.0063095093, -0.0066375732, -0.021408081, -0.0018796921, -0.04586792, 0.0018634796, 0.043884277, -0.03366089, 0.054595947, 0.0038146973, 0.016220093, -0.026779175, -0.011550903, 0.020721436, -0.040924072, -0.051513672, 0.05795288, -0.018493652, 0.07672119, 0.0390625, 0.0025863647, 0.01727295, 0.025619507, -0.010101318, 0.035461426, 0.02330017, 0.013694763, -0.0023269653, 0.003856659, -0.047821045, 0.09350586, 0.030639648, -0.080200195, -0.04196167, -0.07067871, 0.105163574, -0.03201294, 0.0046424866, -0.03829956, 0.0003387928, -0.037597656, 0.02494812, -0.0028572083, 0.013839722, -0.01083374, 0.02407837, -0.058746338, 0.026824951, -0.0055999756, -0.033233643, -0.0085372925, -0.0016794205, -0.000333786, 0.029006958, -0.010505676, 0.03375244, -0.018157959, 0.043395996, -0.02218628, 0.024246216, 0.0022468567, -0.018051147, 0.017593384, 0.0099487305, 0.002670288, -0.0072517395, -0.03491211, -0.008300781, -0.00969696, -0.022766113, -0.01701355, -0.0025043488, -0.0044555664, 0.018737793, -0.007434845, -0.0005598068, 0.012275696, 0.016067505, -0.029785156, -0.002204895, -0.010940552, -0.00042390823, -0.0061569214, 0.007007599, 0.018188477, 0.045074463, 0.028076172, -0.017700195, 0.07421875, 0.08618164, 0.080322266, -0.05859375, -0.049591064, 0.015350342, -0.04144287, 0.0021190643, 0.040130615, -0.035491943, -0.0033035278, 0.03451538, -0.011039734, 0.0056495667, 0.0035419464, 0.042999268, -0.015701294, 0.024536133, -0.0039749146, 0.01713562, 0.010910034, -0.02078247, 0.002073288, -0.03086853, 0.050109863, -0.021743774, 0.057891846, 0.064453125, -0.008003235, 0.035949707, 0.0690918, 0.050048828, 0.064208984, -0.041259766, 0.045684814, -0.000600338, 0.049438477, -0.021408081, 0.01210022, -5.698204e-05, -0.021209717, -0.042266846, 0.03982544, -0.019226074, -0.0046424866, 0.005050659, -0.007270813, -0.01777649, -0.0038890839, 0.041809082, 0.034057617, 0.005580902, -0.009979248, 0.009429932, -6.246567e-05, 0.0317688, -0.013053894, -0.023864746, 0.016555786, -0.012748718, -0.039215088, 0.11010742, -0.02935791, 0.017150879, -0.012062073, 0.032836914, 0.035339355, -0.005882263, -0.00053167343, -0.004447937, -0.03527832, -0.014442444, 0.026260376, -0.009506226, -0.014144897, -0.042388916, 0.01928711, 0.01234436, 0.04309082, 0.016235352, -0.006134033, 0.02583313, 0.05303955, 0.038238525, 0.02659607, -0.004776001, -0.014419556, 0.012290955, -0.0034103394, 0.003200531, -0.0014009476, -0.00090265274, 0.002199173, -0.016845703, 0.020309448, -0.0076560974, -0.0061035156, -0.009048462, 0.03253174, -0.008964539, 0.017059326, 0.016921997, 0.038757324, 0.004497528, -0.037750244, 0.001115799, -0.0026283264, -0.020507812, -0.002029419, -0.03262329, -0.03930664, 0.024093628, -0.008125305, -0.017715454, 0.0009160042, 0.0181427, -0.0059013367, 0.007106781, -0.019088745, 0.0385437, -0.013389587, -0.041992188, -0.020080566, 0.017303467, -0.06060791, 0.040039062, -0.007499695, -0.006225586, -0.0026454926, 0.013145447, -0.035064697, -0.008956909, -0.029785156, -0.0335083, 0.013259888, 0.011772156, 0.026657104, -0.06384277, -0.039398193, -0.06719971, 0.007904053, 0.06530762, -0.022979736, -0.018066406, 0.0158844, -0.0155181885, -0.0098724365, -0.007282257, -0.013656616, -0.009490967, 0.040008545, 0.040405273, 0.001868248, 0.018325806, -0.026306152, 0.015075684, 0.016220093, -0.041503906, -0.0060577393, -0.016952515, 0.005504608, -0.011383057, -0.042663574, -0.01763916, 0.0030345917, -0.04888916, 0.027740479, -0.008979797, -0.0066184998, 0.0012578964, -0.09667969, -0.014823914, -0.062927246, 0.00023937225, 0.0035171509, 0.006587982, 0.007545471, -0.0037841797, 0.015609741, 0.024658203, -0.045410156, 0.028747559, -0.0033054352, -0.02420044, -0.016357422, 0.0657959, -0.09967041, 0.049316406, 0.017684937, -0.03930664, 0.013771057, -0.01751709, 0.037628174, -0.0284729, -0.0065689087, -0.006549835, -0.028411865, -0.028137207, -0.03149414, 0.044158936, 0.04812622, -0.00459671, -0.0025043488, -0.020690918, 0.015357971, -0.03050232, -0.023529053, -0.023712158, 0.03753662, -0.014465332, -0.008224487, -0.046936035, -0.048980713, -0.003572464, 0.0035381317, 0.014541626, -0.006000519, 0.012268066, 0.020614624, -0.022094727, 0.09576416, 0.008514404, 0.043182373, 0.047546387, -0.026504517, -0.03414917, -0.03466797, 0.026123047, 0.01802063, -0.01335144, -0.051361084, -0.002910614, 0.018157959, 0.0029144287, -0.0074386597, -0.009857178, 0.09362793, 0.021118164, 0.0056419373, -0.01651001, -0.0014715195, 0.020126343, 0.018585205, -0.016052246, -0.018356323, -0.04046631, 0.0033092499, 0.017425537, 0.0435791, 0.057800293, -0.017028809, 0.05895996, 0.021865845, 0.002418518, -0.014076233, 0.04574585, -0.036621094, -0.0022583008, 0.040039062, -0.016326904, -0.022262573, 0.004634857, 0.004714966, 0.0035495758, -0.00061941147, -0.01727295, 0.010223389, -0.019058228, -0.018875122, 0.0036735535, 0.00076436996, -0.02142334, -0.02633667, 0.0072250366, -0.017944336, -0.039276123, -0.032714844, -0.03086853, -0.016830444, -0.024108887, 0.0027999878, -0.022720337, -0.022125244, -0.030700684, -0.00044846535, 0.013153076, 0.00023126602, 0.009086609, 0.03253174, 0.01991272, -0.004207611, -0.016647339, -0.017196655, -0.050445557, 0.03955078, 0.016052246, 0.03668213, 0.04888916, -0.025650024, -0.0015249252, -0.017349243, -0.0051345825, 0.03515625, 0.019165039, -0.05368042, -0.001824379, 0.04559326, 0.031921387, -0.016357422, -0.004257202, -0.040130615, 0.013999939, -0.0209198, -0.025421143, -0.054779053, 0.0104904175, 0.03503418, -0.03475952, -0.048858643, -0.046569824, 0.043640137, 0.0021648407, 0.0019025803, -0.011642456, -0.020935059, 0.0030841827, -0.020614624, -0.06976318, 0.044677734, -0.06304932, -0.010231018, 0.051330566, 0.027999878, 0.025756836, -0.028137207, 0.022888184, -0.0058784485, 0.10620117, 0.011497498, 0.00548172, -0.06188965, -0.018203735, 0.009429932, 0.0027675629, 0.016418457, 0.0043182373, 0.02281189, -0.021469116, 0.0009765625, -0.04425049, 0.020980835, 0.012390137, 0.00049066544, -0.036590576, -0.0054855347, 0.088256836, -0.016571045, 0.021606445, 0.028381348, 0.011222839, -0.0021781921, 0.0068244934, -0.10546875, -0.020462036, -0.0031108856, -0.066101074, 0.0058517456, -0.010848999, -0.02809143, 0.06390381, 0.05090332, -0.019760132, -0.007881165, 0.004486084, 0.0289917, -0.0029029846, -0.0069084167, -0.027435303, 0.015274048, -0.02406311, -0.002948761, -0.00047898293, 0.011329651, 0.023513794, -0.023330688, 0.0034599304, 0.027999878, -0.007133484, -0.013633728, -0.022827148, 0.013435364, 0.0077438354, -0.045135498, -0.047698975, 0.020828247, -0.033294678, 0.008201599, -0.014549255, -0.018096924, -0.0038013458, -0.010429382, -0.005970001, -0.024124146, 0.022644043, 0.027160645, 0.01574707, 0.030929565, 0.021560669, -0.042236328, 0.06762695, 0.0035705566, 0.0014095306, 0.025482178, -0.0034599304, 0.023651123, 0.028442383, 0.0032196045, -0.032043457, -0.021957397, 0.0259552, 0.0015974045, -0.05895996, -0.00111866, 0.010375977, -0.025726318, -0.06317139, 0.00856781, 0.021652222, 0.012313843, 0.01878357, 0.030685425, 0.0289917, 0.05319214, -0.0022773743, 0.01940918, 0.02949524, -0.0054473877, 0.014228821, 0.0045700073, 0.013587952, -0.0026512146, 0.030227661, 0.005630493, -0.012786865, -0.015258789, 0.024429321, -0.0026054382, -0.0079193115, 0.04208374, -0.038269043, 0.049102783, -0.06542969, -0.03074646, -0.0013113022, 0.0066337585, -0.0024929047, 0.010810852, -0.00667572, -0.0287323, -0.022003174, -0.033081055, -0.048339844, -0.022109985, 0.003358841, 0.0065841675, -0.0011100769, -0.005104065, -0.00674057, -0.030197144, -0.020904541, -0.021987915, -0.05505371, 0.031280518, -0.013290405, -0.00970459, 0.009559631, 0.0047950745, 0.058258057, 0.024902344, -0.003566742, -0.025970459, -0.013206482, -0.024337769, -0.06378174, 0.028884888, -0.025421143, -0.0021266937, 0.020584106, 0.011695862, 0.0063552856, 0.03062439, -0.05429077, 0.0051116943, 0.015571594, 0.015304565, 0.01802063, -0.0362854, 0.038726807, -0.015609741, -0.018112183, -0.038208008, 0.07373047, -0.0032291412, 0.015548706, 0.03866577, 0.08239746, -0.013031006, 0.059814453, -0.0064582825, -0.041748047, 0.012969971, 0.008125305, -0.07727051, -0.045043945, -0.047454834, -0.014297485, -0.0056152344, 0.0025691986, -0.032684326, 0.044311523, -0.009460449, -0.042816162, -0.022705078, -0.0073165894, 0.020706177, 0.024856567, 0.005718231, -0.040374756, -0.018218994, -0.058654785, -0.05001831, -0.048614502, -0.0637207, -0.03010559, 0.023376465, 0.04788208, 0.02331543, -0.0057296753, -0.042022705, -0.03277588, 0.0038795471, -0.0030994415, -0.049560547, -0.018615723, 0.03262329, 0.048217773, -0.000849247, -0.0063819885, -0.0055999756, -0.032806396, -0.02571106, 0.027145386, 0.053894043, -0.045410156, 0.030700684, 0.045776367, 0.034362793, -0.006679535, 0.025970459, 0.035705566, 0.022735596, -0.051849365, -0.015914917, -0.025482178, -0.044891357, -0.015205383, -0.015823364, 0.0044784546, 0.028839111, -0.017501831, 0.019332886, -0.007549286, 0.0546875, -0.0025463104, 0.009803772, 0.015914917, 0.020446777, 0.0152282715, -0.0038280487, -0.034851074, 0.010009766, 0.007987976, 0.006210327, 0.0084991455, -0.031051636, 0.0014371872, 0.039916992, -0.0024662018, 0.015464783, -0.020095825, -0.022155762, 0.029464722, 0.0020923615, -0.028961182, 0.009262085, 0.009063721, -0.032989502, -0.044403076, -0.043304443, 0.008277893, 0.028640747, -0.009605408, 0.008552551, 0.0025959015, 0.009353638, 0.011894226, -0.0048599243, 0.003921509, -0.015365601, 0.025177002, -0.011352539, -1.7940998e-05, -0.018478394, -0.085632324, 0.054626465, 0.008255005, 0.05834961, 0.04925537, -0.032165527, 0.019561768, 0.0317688, 0.0016069412, -0.03353882, -0.0357666, -0.01322937, -0.0056762695, -0.008529663, 0.0006866455, 0.021530151, 0.014389038, -0.0152282715, -0.03213501, 0.02368164, -0.058624268, 0.013702393, 0.01020813, 0.030258179, -0.029815674, 0.005832672, -0.015838623, -0.010429382, 0.0284729, 0.016174316, 0.036346436, -0.0046577454, 0.031951904, 0.015159607, 0.04421997, -0.02696228, 0.01448822, -0.020080566, 0.009475708, 0.03074646, -0.00063323975, -0.011230469, 0.026367188, -0.011871338, -0.024429321, 0.03173828, -0.05166626, 0.016098022, 0.014518738, 0.030197144, -0.038757324, 0.032196045, -0.015365601, -0.06512451, 0.013298035, -0.024108887, -0.04309082, -0.019973755, -0.035064697, -0.02494812, -0.0051231384, -0.061676025, -0.005218506, -0.015449524, -0.020309448, 5.8710575e-05, -0.001666069, 0.009742737, -0.018920898, 0.003522873, 0.012046814, 0.016235352, 0.009063721, 0.04046631, -0.0063934326, -0.0597229, -0.029647827, 0.042755127, -0.045043945, -0.044281006, 0.0016698837, -0.021408081, -0.006263733, -0.0158844, -0.00037527084, -0.008331299, 0.046569824, -0.02949524, 0.03967285, -0.024169922, 0.006477356, -0.010177612, 0.0034046173, -0.004383087, -0.03918457, -0.0064048767, 0.03475952, 0.016036987, 0.024291992, 0.01373291, -0.10809326, -0.010482788, -0.03643799, 0.0546875, -0.06109619, 0.011383057, -0.0044555664, -0.006828308, -0.03857422, -0.009986877, 0.03729248, 0.06286621, 0.05368042, 0.02760315, 0.028564453, -0.04562378, -0.09552002, -0.07720947, -0.026306152, 0.07086182, 0.031982422, -0.040924072, -0.008094788, 0.024337769, -0.016204834, 0.019180298, 0.041809082, 0.011581421, 0.036468506, -0.012191772, 0.044769287, 0.01977539, -0.03756714, 0.072753906, -0.028274536, -0.033325195, 0.051757812, -0.020477295, -0.004638672, -0.013298035, -0.039520264, -0.007701874, -0.028503418, -0.026779175, -0.022903442, -0.038208008, 0.03652954, 0.030319214, 0.015823364, 0.0011644363, 0.041015625, -0.0004339218, -0.029006958, 0.0019435883, 0.009597778, 0.018753052, -0.010528564, 0.020751953, 0.015914917, 0.024810791, 0.0009069443, -0.072021484, -0.05645752, 0.033477783, 0.05001831, -0.015625, 0.050689697, 0.0018930435, 0.0158844, -0.00025105476, -0.013191223, -0.00630188, 0.0025043488, 0.058410645, -0.026550293, 0.0030975342]}, "B016YLUXLE": {"id": "B016YLUXLE", "original": "Brand: Coleman\nName: Propane Fuel Cylinders, 4 pk./16 oz.\nDescription:

      Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

      \nFeatures: 8.0 LBR\n310326 332418 335648 333264\n014045324069\n", "metadata": {"Name": "Propane Fuel Cylinders, 4 pk./16 oz.", "Brand": "Coleman", "Description": "

      Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

      ", "Features": "8.0 LBR\n310326 332418 335648 333264\n014045324069", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.06726074, -0.032562256, -0.047790527, -0.037109375, -0.028884888, 0.011222839, -0.05368042, 0.053863525, -0.06222534, -0.0053253174, 0.03463745, 0.005672455, -0.055664062, -0.06262207, 0.024002075, -0.042816162, 0.0034446716, 0.0076408386, -0.034179688, -0.039520264, 0.009986877, -0.024520874, -0.066467285, 0.066345215, 0.0049972534, -0.020187378, 0.06866455, -0.015388489, -0.0042419434, -0.026565552, 0.025512695, 0.013504028, 0.023452759, -0.02760315, 0.033935547, -0.008453369, 0.045410156, -0.015655518, 0.005645752, 0.007507324, 0.009468079, -0.003435135, 0.026535034, -0.025177002, -0.017105103, -0.01335144, 0.021133423, -0.008529663, 0.0088272095, 0.0012836456, 0.0012569427, 0.02078247, 0.009498596, -0.030044556, -0.00024795532, 0.027053833, 0.039855957, 0.047668457, 0.0075149536, -0.023452759, -0.026916504, 0.06549072, 0.022003174, 0.009849548, -0.04626465, 0.033111572, 0.06793213, -0.027954102, 0.033416748, -0.038269043, -0.026107788, 0.02355957, -0.0027885437, 0.020492554, -0.0635376, -0.03540039, 0.04486084, -0.038482666, 0.009353638, 0.0077590942, -0.058258057, -0.035003662, -0.026519775, 0.006919861, -0.022384644, 0.021987915, -0.0385437, -0.0013408661, -0.008171082, 0.017684937, -0.021987915, 0.06793213, 0.010498047, -0.002363205, -0.040618896, -0.0076942444, 0.018981934, -0.022201538, 0.043151855, -0.023254395, 0.007724762, -0.01713562, -0.048217773, 0.021774292, -0.0021972656, 0.02748108, -0.0023765564, 0.02645874, 0.024932861, 0.011390686, -0.008995056, -0.02204895, -0.010902405, -0.0046577454, -0.032073975, 0.007423401, -0.044708252, 0.04486084, -0.012069702, 0.06567383, -0.0005707741, 0.007217407, 0.034088135, -0.028915405, -0.011543274, -0.014137268, -0.035064697, -0.01197052, -0.039611816, 0.06542969, -0.036956787, -0.016616821, 0.022994995, 0.035308838, 0.0032043457, -0.02897644, 0.0057907104, -0.026885986, -0.0058021545, 0.028244019, 0.010665894, -0.036102295, 0.01020813, 0.009277344, -0.016067505, 0.049865723, 0.044067383, -0.026321411, -0.027679443, -0.036468506, -0.029663086, -0.030944824, 0.049194336, 0.018157959, -0.020111084, -0.005710602, 0.041168213, -0.038482666, -0.048339844, -0.068115234, -0.0105896, -0.042755127, -0.041748047, 0.0015134811, -0.024169922, 0.061401367, 0.024353027, 0.006259918, 0.0013065338, 0.010879517, -0.037231445, 0.0146484375, -0.0055236816, 0.0059890747, 0.012245178, 0.0064735413, -0.005290985, 0.03253174, 0.040527344, -0.06124878, -0.05014038, -0.04727173, 0.066467285, -0.009185791, 0.003025055, -0.06112671, 0.038024902, -0.025146484, -0.013946533, 0.011581421, 0.05215454, 0.030639648, -0.024734497, -0.0024967194, -0.015136719, 0.012023926, 0.0028915405, 0.05178833, -0.013465881, -0.046142578, 0.015052795, 0.0018796921, 0.029876709, 0.0042266846, 0.048217773, -0.018829346, 0.019302368, -0.0008740425, 0.00014042854, 0.037261963, 0.0026855469, 0.005252838, 0.009292603, -0.039123535, -0.033996582, -0.018737793, -0.027069092, 0.007713318, 0.02053833, 0.016189575, 0.03152466, 0.0017709732, 0.017227173, -0.0060768127, 0.024932861, -0.01689148, -0.0146865845, -0.027282715, 0.022766113, -0.01878357, 0.012641907, 0.045654297, 0.032562256, 0.07879639, 8.1300735e-05, -0.0054397583, 0.035491943, 0.025314331, 0.004928589, -0.016693115, 0.007259369, -0.011116028, -0.028015137, 0.0026168823, 0.007446289, 0.02217102, 0.028015137, -0.0035095215, -0.01914978, 0.036224365, 0.038330078, 0.03186035, 0.017593384, 0.074401855, -0.042938232, 0.030685425, -0.022277832, 0.0011835098, -0.037109375, 0.037231445, -0.016464233, 0.046936035, 0.029083252, 0.015670776, 0.0036373138, 0.00069618225, 0.041748047, 0.030822754, -0.015014648, -0.026611328, 0.007850647, 0.0413208, -0.0014448166, -0.022094727, -0.027511597, -0.03048706, -0.04196167, 0.049865723, 0.013755798, -0.04547119, 0.007736206, -0.02104187, -0.005016327, 0.0030708313, 0.06652832, 0.019989014, 0.006412506, 0.020080566, -0.04940796, -0.03756714, 0.0025596619, -0.00048327446, -0.031951904, -0.005596161, -0.004371643, -0.02659607, 0.026275635, -0.012992859, 0.02116394, -0.0262146, -0.004508972, 0.047332764, -0.015411377, 0.009811401, -0.005092621, 0.009552002, -0.002861023, 0.021835327, 0.00818634, -0.027740479, 0.007865906, 0.021408081, 0.031585693, 0.060791016, -0.013282776, -0.014015198, -0.02355957, 0.054107666, -0.0008382797, -0.015151978, -0.04714966, 0.022857666, 0.01687622, 0.0034809113, 0.03982544, -0.01626587, -0.014282227, 0.011299133, 0.003982544, 0.015472412, 0.008728027, 0.022277832, 0.01826477, 0.019851685, -0.006011963, -0.015312195, 0.0031642914, 0.048919678, 0.006000519, -0.026000977, 0.0028362274, -0.03793335, -0.009460449, -0.0024642944, -0.07141113, -0.040496826, 0.05368042, -0.012710571, -0.0034313202, -0.010238647, 0.053009033, 0.0067253113, 0.0440979, -0.025024414, 0.0413208, -0.020431519, -0.09490967, -0.007091522, 0.019882202, -0.07305908, -0.011642456, -0.013916016, -0.051696777, -0.020431519, 0.048828125, -0.0029010773, -0.042907715, -0.009857178, -0.022415161, 0.0055236816, -0.035858154, 0.018676758, -0.01737976, -0.020095825, -0.007751465, 0.020599365, 0.0715332, -0.0059509277, 0.017120361, 0.028381348, 0.018157959, 0.021408081, -0.01626587, 0.007659912, 0.0053863525, 0.031982422, 0.023864746, 0.030548096, -0.0022773743, -0.02368164, 0.0037937164, 0.04574585, -0.038330078, -0.014472961, -0.022460938, -0.003850937, -0.0040626526, -0.026184082, -0.005355835, -0.020584106, -0.06390381, -0.001209259, -0.005973816, -0.046905518, 0.009811401, -0.051818848, -0.0137786865, -0.04525757, 0.026153564, 0.02357483, -0.012588501, 0.019042969, -0.025314331, 0.011604309, -0.001947403, -0.0131073, -0.00013446808, -0.016983032, 0.031402588, 0.020904541, 0.021621704, -0.053649902, 0.012702942, 0.041992188, -0.037475586, -0.01360321, -0.012199402, 0.04373169, -0.08319092, 0.026107788, -0.00072717667, -0.028793335, -0.043151855, -0.06713867, 0.0022144318, 0.021087646, -0.017471313, 0.02758789, -0.04397583, 0.033050537, -0.011665344, -0.021484375, 0.010231018, 0.017440796, 0.009414673, -0.008079529, -0.03213501, 0.008506775, 0.024993896, 0.002275467, 0.009506226, 0.0055351257, 0.03262329, 0.007911682, -0.026657104, 0.026367188, 0.03314209, 0.020584106, -0.009880066, -0.0011777878, -0.03111267, -0.020004272, 0.019943237, -0.038330078, 0.0064697266, -0.068237305, 0.014022827, 0.017852783, 0.028137207, -0.022842407, 0.0003271103, 0.085754395, 0.0385437, 0.014320374, -0.014663696, -0.02835083, 0.008270264, 0.02986145, -0.042999268, -0.02255249, -0.079711914, 0.025009155, -0.1262207, 0.04067993, 0.043945312, -0.031311035, 0.08068848, 0.010658264, -0.024368286, 0.05645752, 0.060394287, 0.0074386597, 0.020507812, 0.035949707, -0.026565552, -0.015586853, -0.002286911, 0.0038261414, 0.022613525, -0.015625, -0.02960205, 0.018707275, 0.018859863, -0.020980835, -0.020828247, -0.0072288513, -0.0032482147, -0.00730896, 0.026947021, -0.02456665, 0.010040283, -0.015716553, 0.012931824, -0.011993408, -0.0037460327, 0.02420044, 0.0068855286, -0.043884277, 0.017242432, 0.005104065, -0.0043563843, -0.01309967, 0.016357422, 0.024230957, 0.0025730133, -0.010810852, -0.00066041946, -0.0027637482, -0.03451538, -0.0063591003, 0.018585205, 0.014755249, -0.022384644, -0.04537964, 0.059661865, 0.0049552917, 0.013511658, 0.029205322, -0.021942139, -0.08532715, 0.014007568, 0.030517578, -0.0031757355, -0.05783081, -0.0104599, -0.004009247, 0.010429382, 0.022445679, -0.03942871, -0.020004272, 0.006511688, 0.021499634, -0.06958008, -0.03414917, -0.02810669, -0.007080078, -0.0064811707, 0.014129639, -0.019348145, -0.02960205, 0.008842468, 0.02571106, -0.031555176, -0.010093689, -0.018554688, 0.026443481, -0.0041160583, -0.028503418, 0.068359375, -0.04586792, 0.023040771, -0.033691406, 0.05709839, 0.04119873, 0.016113281, -0.029510498, -0.035491943, 0.03024292, -0.020935059, 0.034210205, 0.014228821, 0.0010128021, -0.060913086, 0.020599365, -0.021697998, -0.059814453, 0.039031982, -0.07232666, -0.039001465, -0.046966553, 0.04147339, -0.011077881, 0.002418518, -0.028961182, -0.010749817, 0.03161621, -0.013160706, -0.06161499, -0.04751587, -0.018661499, -0.0362854, -0.029953003, -0.011604309, -0.016403198, 0.08166504, 0.020050049, -0.007827759, 0.026351929, -0.0037384033, -0.01626587, -0.008361816, 0.024963379, -0.049713135, 0.005683899, -0.05609131, 0.008125305, -0.075927734, 0.05606079, 0.022094727, 0.008956909, 0.011383057, -0.03012085, 0.010894775, -0.0077056885, -0.0056152344, -0.010810852, 0.024780273, 0.019470215, -0.01663208, -0.009719849, -0.010986328, -0.010009766, 0.0064964294, -0.014793396, 0.035858154, 0.012809753, -0.020111084, -0.0064201355, -0.021102905, 0.025802612, 0.014221191, 0.015548706, 0.025650024, -0.012580872, 0.0049972534, -0.027389526, 0.0132751465, 0.021499634, -0.045196533, -0.005180359, -0.015731812, 0.026611328, -0.04147339, 0.058013916, 0.020889282, 0.03527832, -0.024337769, 0.022872925, 0.022216797, 0.009918213, -0.031066895, 0.05831909, -0.008155823, -0.004070282, 0.016540527, -0.007320404, -0.016571045, 0.0008254051, -0.0028800964, 0.0062026978, -0.0037708282, -0.05014038, 0.042510986, 0.008453369, -0.0019350052, -0.034484863, 0.016159058, -0.02607727, -0.03302002, -0.024017334, 0.020568848, 0.00021481514, -0.0413208, 0.006412506, -0.01007843, 0.06829834, -0.01473999, -0.016235352, 0.024963379, -0.030960083, -0.010986328, 0.0055999756, -0.011413574, -0.049438477, 0.011405945, -0.004425049, -0.01676941, -0.014129639, 0.014839172, -0.027786255, 0.007843018, 0.008796692, -0.008636475, -0.005290985, -0.024642944, 0.015136719, 0.0017127991, 0.015625, -0.0014600754, 0.0010328293, 0.0019836426, 0.006351471, -0.064453125, -0.0038795471, -0.04901123, -0.038848877, -0.05328369, 0.012313843, 0.010482788, 0.036071777, -0.010658264, -0.023880005, 0.008323669, 0.015129089, 0.02885437, -0.00831604, -0.050201416, -0.0064735413, 0.012275696, 0.03604126, -0.0065078735, -0.018066406, 0.057495117, -0.029968262, -0.032043457, -0.055511475, 0.04550171, -0.018569946, 0.0102005005, -0.007408142, 0.014015198, -0.0031814575, 0.03189087, 0.004600525, -0.03427124, -0.003358841, -0.0012197495, 0.0042495728, -0.0025863647, -0.039489746, 0.023742676, 0.03262329, 0.044433594, -0.0033283234, 0.050964355, -0.0040245056, -0.0035743713, -0.054382324, 0.03591919, -0.021270752, -0.0019836426, 0.012382507, -0.016464233, -0.0115356445, -0.0345459, -0.004638672, -0.07659912, -0.07397461, -0.00068092346, 0.019439697, 0.035125732, 0.013908386, 0.011566162, 0.04171753, -0.049804688, 0.0069465637, 0.020431519, -0.024108887, -0.01637268, 0.02130127, 0.0017814636, 0.0075569153, -0.066101074, -0.0059776306, -0.004901886, -0.014694214, 0.020507812, 0.014976501, -0.014656067, 0.00819397, 0.021362305, 0.016784668, 0.023422241, -0.030181885, 0.006652832, 0.04031372, 0.026062012, -0.008796692, -0.018096924, -0.0057411194, -0.0024719238, -0.05960083, 0.02281189, 0.018478394, 0.0016393661, 0.022140503, -0.03668213, 0.056243896, -0.025680542, 0.01399231, 0.0014228821, -0.0058784485, 0.022247314, -0.016601562, -0.02217102, -0.0023288727, -0.0033721924, 0.02218628, -0.059173584, -0.02180481, 0.0036354065, 0.026931763, 0.018096924, 0.024490356, -0.008033752, -0.0024375916, 0.032409668, -0.048950195, 0.016174316, 0.011947632, -0.008201599, 0.0003244877, -0.023971558, -0.0013914108, -0.0063285828, 0.0043678284, 0.03503418, -0.022369385, 0.032073975, 0.023361206, 0.003238678, 0.0014419556, -0.021987915, -0.020935059, 0.031829834, -0.02394104, 0.0024547577, -0.0040740967, -0.041809082, 0.0791626, -0.0053138733, 0.050079346, 0.06774902, -0.04309082, 0.0004210472, 0.026306152, -0.0005197525, -0.04324341, -0.042541504, 0.024719238, 0.030517578, -0.03741455, -0.016433716, -0.020843506, 0.027236938, 0.033691406, -0.06341553, 0.0546875, -0.074035645, 0.076538086, 0.025512695, 0.07043457, -0.023849487, -0.044281006, -0.02041626, 0.02633667, -0.019378662, 0.0181427, 0.006717682, -0.0019483566, 0.007205963, -0.025604248, 0.0026416779, -0.026367188, -0.009941101, -0.011375427, 0.0045700073, 0.0063171387, -0.005897522, 0.0035305023, 0.03274536, -0.031311035, 0.010696411, 0.0002706051, -0.0154953, -0.009407043, -0.00096940994, -0.020828247, -0.03845215, 0.062286377, -0.020126343, -0.02923584, -0.04510498, -0.009635925, 0.025131226, -0.022888184, -0.013633728, -0.03137207, -0.03488159, -0.046691895, 0.056152344, -0.03555298, -0.004058838, 0.039154053, -0.008430481, -0.050476074, -0.05545044, -0.0029468536, -0.0035934448, 0.023147583, -0.03149414, 0.07098389, -0.04663086, -0.017822266, -0.08166504, -0.0129852295, -0.105285645, -0.005935669, -0.018295288, 0.0023403168, -0.013427734, -0.022613525, -0.007820129, 0.07159424, 0.029464722, -0.004749298, -0.00075387955, -0.053985596, -0.033294678, 0.083740234, 0.011436462, -0.023010254, -0.020263672, 0.04699707, -0.016723633, -0.011955261, 0.0040740967, -0.007335663, -0.06793213, 0.0064811707, 0.009864807, -0.04269409, -0.018676758, -0.0062713623, 0.0038146973, -0.0032520294, -0.03942871, -0.016220093, 0.02029419, 0.049713135, 0.06365967, -0.049224854, -0.002571106, -0.05569458, -0.07269287, -0.070007324, -0.017486572, 0.035095215, 0.050445557, 0.0030822754, 0.0030899048, 0.064331055, -0.02961731, 0.05105591, 0.040924072, 0.007156372, 0.0029773712, -0.008636475, 0.03778076, -0.011688232, -0.004875183, 0.03314209, -0.020339966, -0.0071754456, 0.010574341, 0.0022182465, 0.0057640076, 0.029266357, -0.032684326, 0.016571045, 0.010864258, 0.011634827, -0.0725708, -0.033721924, 0.024139404, 0.035705566, -0.030960083, 0.0012273788, -0.0044288635, 0.044525146, -0.022262573, 0.025360107, 5.8412552e-05, 0.03668213, 0.02720642, 0.02508545, 0.012687683, 0.06652832, -0.012374878, -0.1295166, -0.054901123, 0.009506226, 0.023590088, -0.008110046, 0.07330322, -0.031036377, 0.020309448, -0.017990112, -0.00667572, -0.029083252, 0.00970459, 0.077941895, -0.020492554, 0.016525269]}, "B00NG14614": {"id": "B00NG14614", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5\", Bronze\nDescription: \nFeatures: Includes lid, stones, tank holder, gas hose and regulator\nSteel frame with rubbed bronze finish\nUses 20 pound propane tank (not included) and has a 50,000 BTU output\nSafe for wood decks and great for camping or tailgating\nDimensions are 18.5\" wide and 14.7\" high\n", "metadata": {"Name": "Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5\", Bronze", "Brand": "Bond Manufacturing", "Description": "", "Features": "Includes lid, stones, tank holder, gas hose and regulator\nSteel frame with rubbed bronze finish\nUses 20 pound propane tank (not included) and has a 50,000 BTU output\nSafe for wood decks and great for camping or tailgating\nDimensions are 18.5\" wide and 14.7\" high", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013687134, 0.031311035, -0.058166504, -0.033447266, 0.018753052, -0.00063180923, -0.00894165, 0.012496948, -0.06713867, 0.020889282, -0.018203735, 0.029525757, -0.03945923, -0.025146484, 0.030578613, -0.062927246, 0.008049011, 0.012245178, -0.018310547, -0.029190063, 0.01461792, -0.019348145, -0.06210327, 0.072021484, 0.034179688, -0.01852417, 0.028503418, -0.032714844, 0.044952393, 0.009223938, 0.022033691, -0.035614014, 0.013458252, -0.02078247, 0.04147339, -0.023605347, 0.0019989014, -0.0046043396, -0.020721436, 0.005302429, 0.026885986, -0.018829346, -0.05807495, -0.0079956055, -0.055114746, -0.033294678, 0.033294678, -0.00022935867, -0.007896423, 0.02619934, 0.008934021, -0.007663727, 0.009017944, 0.018966675, -0.0074043274, -0.027328491, 0.002117157, 0.003660202, 0.004650116, 0.024230957, 0.0055618286, 0.052642822, -0.0022296906, -0.011360168, -0.03149414, 0.006828308, 0.07836914, -0.020492554, 0.0496521, -0.023254395, -0.009315491, 0.047851562, -0.008308411, -0.004688263, -0.006752014, -0.002073288, 0.005218506, -0.024459839, 0.02746582, 0.028793335, -0.048187256, -0.00945282, 0.0075416565, -0.021499634, -0.013999939, -0.010688782, -0.02519226, 0.0067634583, 0.0016088486, -0.025268555, -0.014518738, -0.025009155, 0.015975952, 0.023483276, -0.013137817, -0.014007568, -0.034210205, -0.1026001, 0.05517578, -0.0031852722, 0.0262146, -0.023742676, -0.010643005, 0.037384033, -0.0039253235, 0.09240723, 0.00554657, 0.018371582, 0.0019321442, -0.014465332, 0.01197052, -0.03164673, -0.0009841919, -0.026641846, -0.034210205, 0.015174866, -0.0022716522, 0.006866455, 0.027404785, 0.012870789, -0.014518738, -0.017303467, -0.0102005005, 0.05230713, 0.034179688, 0.032196045, 0.00012362003, 0.0015249252, -0.039093018, 0.064208984, -0.025360107, -0.020309448, 0.05215454, 0.07470703, 0.013786316, -0.02885437, 0.004798889, -0.036010742, 0.007133484, 0.008102417, 0.012687683, -0.01777649, 0.028518677, 0.012931824, -0.046051025, 0.05569458, 0.040802002, -0.023925781, -0.033599854, -0.06768799, -0.028457642, -0.009819031, 0.03289795, 0.012832642, -0.006324768, -0.028564453, 0.050811768, -0.050445557, -0.0085372925, -0.06958008, -0.009757996, -0.012931824, -0.02381897, -0.0045661926, -0.030059814, 0.029174805, 0.03515625, -0.004924774, 0.012641907, 0.059448242, -0.010299683, 0.0076141357, -0.01689148, 0.024810791, 0.0006685257, 0.002286911, -0.0146484375, 0.070129395, 0.0736084, -0.12792969, -0.096191406, -0.07098389, 0.13806152, -0.058532715, 0.000726223, -0.041625977, 0.0064048767, -0.04562378, 0.022109985, -0.0011758804, 0.038146973, 0.008369446, 0.01260376, -0.035827637, -0.0055236816, 0.011558533, -0.04888916, 0.01965332, -0.028961182, 0.010398865, -0.0748291, 0.051361084, -0.014823914, 0.06488037, 0.050933838, 0.028289795, 0.0050468445, 0.01789856, 0.016952515, 0.02468872, -0.013282776, -0.009361267, -0.0033664703, -0.0101623535, -0.017608643, -0.005393982, 0.009094238, -0.001824379, 0.015403748, -0.035247803, 0.02420044, 0.027618408, 0.004749298, 0.02809143, 0.008888245, -0.02923584, -0.009521484, -0.028701782, 0.040893555, -0.029876709, 0.06060791, 0.050354004, 0.052337646, 0.04324341, -0.0075950623, 0.0362854, 0.078430176, 0.02178955, -0.027832031, -0.020706177, 0.018630981, -0.041168213, -0.022125244, 0.021270752, -0.0143966675, -0.02204895, 0.016815186, 0.011299133, 0.0012321472, 0.07861328, -0.019241333, 0.01033783, 0.0010299683, -0.02017212, -0.049102783, 0.030227661, -0.032470703, -0.0015516281, -0.012557983, 0.023025513, -0.020629883, 0.010353088, 0.040527344, -0.013877869, 0.018997192, -0.0079422, 0.04458618, 0.04284668, -0.00806427, -0.01727295, 0.016311646, 0.034240723, -0.00699234, -0.025161743, 0.014579773, -0.052093506, -0.042419434, 0.040618896, -0.030548096, -0.04812622, 7.432699e-05, -0.0071525574, -0.025360107, -0.009033203, 0.01864624, -0.012313843, 0.01083374, 0.012863159, 0.013946533, 0.0069770813, 0.019165039, 0.018127441, -0.015136719, 0.028762817, 0.00063323975, -0.024993896, 0.0034694672, -0.032165527, 0.058929443, -0.05923462, -0.024124146, 0.05114746, -0.04208374, 0.03768921, -0.0020446777, 0.03744507, 0.011642456, 0.008255005, 0.009284973, -0.022399902, 0.002128601, 0.0036296844, 0.021850586, -0.008972168, 0.018981934, 0.0058631897, -0.017501831, 0.031158447, 0.016220093, 0.03353882, -0.007827759, -0.0036010742, -0.04623413, -0.0019702911, -0.0020542145, 0.02897644, -0.025268555, -0.009994507, -0.022994995, 0.008049011, 0.0074310303, -0.0039863586, 0.014526367, 0.046936035, 7.748604e-06, -0.0054244995, 0.005340576, 0.018936157, 0.014862061, -0.012161255, 0.024551392, 0.032806396, 0.00907135, 0.005115509, -0.038269043, -0.029327393, 0.0024318695, 0.0034217834, -0.0024795532, -0.014518738, 0.025253296, -0.012161255, 0.007144928, -0.01399231, -0.0012836456, -0.0053215027, -0.012626648, -0.033081055, -0.024795532, -0.059295654, -0.0021247864, -0.026565552, -0.03781128, 0.027160645, 0.041992188, -0.022644043, -0.026885986, -0.021896362, -0.0020179749, 0.004547119, 0.0011911392, 0.021896362, -0.058410645, -0.014183044, -0.026855469, 0.007293701, 0.033050537, -0.01285553, -0.043029785, -0.009902954, 0.032287598, 0.033294678, -0.011306763, 0.02709961, 0.042938232, 0.015930176, 0.028213501, 0.009719849, 0.027755737, -0.0020751953, 0.0158844, -0.0052833557, -0.049682617, -0.013870239, 0.006324768, 0.013153076, 0.017700195, -0.031219482, -0.0019626617, -0.03491211, -0.0340271, -0.018753052, -0.03062439, -0.0055732727, 0.012451172, -0.0657959, 0.015655518, -0.059783936, 0.015144348, 0.030090332, -0.006084442, 0.01828003, -0.0032253265, -0.006175995, -0.014801025, 0.00422287, 0.02355957, -0.0039520264, 0.025253296, -0.049224854, 0.014297485, -0.05517578, 0.030929565, 0.022033691, -0.013000488, -0.043182373, 0.030822754, 0.010604858, -0.0051727295, 0.02015686, -0.0024604797, -0.02128601, -0.0016078949, 0.011520386, 0.025146484, 0.052459717, -0.018234253, -0.019317627, -0.017120361, -0.032196045, -0.04940796, -0.013717651, 0.03161621, 0.018157959, 0.014152527, 0.006214142, -0.020721436, -0.03475952, -0.02885437, -0.03173828, -0.008979797, 0.017822266, 0.01335907, 0.024734497, 0.0015220642, 0.009109497, 0.019210815, 0.03704834, 0.056030273, -0.020935059, -0.014724731, -0.028869629, -0.010185242, 0.01852417, 0.012771606, -0.011192322, 0.027511597, 0.0014400482, -0.022079468, 0.009849548, -0.00945282, 0.015838623, 0.03527832, -0.005783081, -0.0126571655, -0.018096924, 0.016021729, 0.0047683716, -0.022766113, -0.015945435, -0.055908203, 0.013221741, -0.08746338, 0.0574646, 0.058929443, -0.03945923, 0.0847168, 0.048583984, -0.005924225, 0.08648682, 0.017562866, 0.024353027, -0.007965088, 0.09539795, -0.033813477, 0.05114746, 0.007511139, -0.02420044, -0.006679535, -0.04043579, -0.023864746, 0.012268066, 0.022705078, 0.0038528442, -0.040924072, 0.0048713684, 0.029632568, -0.017349243, -0.015113831, -0.025360107, 0.008766174, -0.049743652, 0.010444641, 0.019836426, -0.030273438, 0.032073975, -0.04598999, -0.017105103, -0.036895752, 0.018661499, 0.02458191, -0.03111267, 0.036499023, 0.017623901, 0.0020275116, 0.02142334, -0.0019292831, -0.016921997, -0.0065956116, 0.0385437, -0.004600525, -0.005142212, 0.00818634, -0.002067566, 0.0102005005, -0.028396606, -0.036193848, 0.055664062, -0.023635864, -0.091552734, -0.021850586, 0.01424408, 0.018554688, -0.0440979, 0.016159058, -0.04159546, 0.016708374, 0.0066223145, -0.04397583, 0.032714844, -0.02973938, -0.018295288, -0.05029297, -0.027450562, -0.03237915, 0.018981934, -0.044158936, 0.028305054, -0.006511688, -0.01991272, 0.0037517548, 0.025619507, -0.06512451, 0.004184723, -0.030761719, -0.012641907, 0.055908203, 0.009605408, 0.0054740906, -0.045196533, -0.030792236, 0.009437561, 0.072021484, -0.0005469322, 0.04547119, -0.030899048, -0.020584106, 0.005054474, 0.015289307, 0.007896423, -0.03186035, 0.018341064, 0.02633667, -0.009170532, -0.047424316, -0.03591919, 0.052581787, -0.046020508, -0.039215088, -0.03665161, 0.05947876, -0.016082764, -0.006538391, -0.035186768, 0.049041748, 0.035095215, 0.026428223, -0.064453125, -0.082092285, 0.025115967, -0.029037476, -0.02319336, -0.026947021, -0.00894165, 0.10058594, 0.005760193, -0.008956909, 0.009399414, -0.025100708, -0.034423828, 0.010612488, 0.015792847, -0.017608643, 0.006587982, -0.03579712, 0.018875122, -0.08514404, 0.071777344, -0.0018396378, -0.0032234192, -0.016189575, -0.008178711, -0.02142334, -0.09661865, 0.036834717, -0.03314209, -0.026306152, -0.022705078, -0.020126343, -0.036010742, -0.062438965, -0.015777588, -0.026947021, -0.054473877, -0.024169922, 0.055755615, -0.011161804, -0.035736084, -0.025161743, -0.006385803, 0.0022449493, 0.004924774, -0.012588501, -0.032989502, 0.022079468, -0.035339355, -0.02532959, 0.008369446, -0.015701294, -0.030303955, 0.004322052, 0.0003759861, -0.033477783, 0.03277588, 0.032714844, 0.007575989, 0.029449463, 0.023010254, -0.003780365, -0.02696228, -0.008598328, 0.013214111, -0.022903442, -0.03656006, 0.013153076, -0.004261017, 0.011634827, 0.009269714, -0.0020122528, 0.018753052, -0.014205933, -0.020233154, 0.031829834, 0.014007568, 0.012458801, -0.05947876, 0.042053223, -0.02078247, -0.027252197, -0.03704834, 0.012588501, -0.0010957718, -0.029800415, 0.014022827, -0.023834229, 0.044525146, -0.008079529, -0.018463135, 0.0058288574, 0.007446289, -0.015792847, 0.006214142, -0.010650635, -0.04107666, -0.0028762817, -0.046142578, -0.02961731, 0.020935059, -0.009567261, -0.0010242462, 0.020339966, 0.012359619, -0.014762878, -0.01020813, 0.007129669, -0.015914917, -0.026412964, -0.06951904, 0.013793945, 0.010902405, -0.04824829, -0.006511688, -0.031051636, 0.017944336, -0.056640625, -0.04751587, -0.04534912, -0.0015649796, -0.013999939, 0.06781006, -0.043060303, -0.01449585, -0.030151367, -0.02835083, 0.010787964, -0.017913818, -0.055023193, -0.012161255, 0.015136719, 0.010749817, -0.014976501, -0.038330078, 0.040893555, -0.020706177, -0.030029297, -0.015068054, 0.03970337, -0.0069007874, -0.00080251694, 0.033447266, 0.023147583, 0.0011520386, 0.05029297, 0.009025574, -0.05871582, -0.0104522705, -0.0056915283, -0.10748291, -0.03189087, -0.055358887, -0.009475708, -0.000269413, -0.009498596, -0.020111084, 0.048583984, -0.019119263, -0.025543213, 0.004257202, -0.010169983, 0.010414124, -0.04244995, -0.001739502, 0.0010843277, 0.01977539, 0.004886627, 0.04043579, 0.021209717, 0.028167725, -0.01763916, 0.026351929, 0.018447876, -0.012924194, -0.0033035278, 0.0032196045, -0.00440979, 0.052093506, 0.010246277, -0.053497314, -0.01914978, 0.044830322, 0.038238525, 0.010559082, -0.047180176, -0.03390503, -0.026062012, -0.0077285767, 0.05279541, 0.016204834, -0.01499176, 0.041137695, 0.035186768, 0.00907135, 0.009643555, 0.007095337, 0.009429932, -0.008148193, -0.017944336, -0.0018835068, -0.0040016174, -0.034729004, -0.018188477, -0.04626465, 0.01776123, -0.0024871826, -0.008895874, 0.04547119, 0.025024414, -0.006843567, 0.015701294, 0.019302368, 0.016098022, 0.012008667, 0.01802063, 0.010040283, -0.011924744, 0.042816162, 0.03866577, 0.03225708, -0.00843811, -0.023666382, -0.02229309, 0.021362305, -0.0010061264, 0.031799316, 0.008995056, 0.008766174, 0.01939392, -0.051727295, 0.01727295, -0.013145447, 0.006855011, 0.00674057, 0.007144928, 0.01940918, 0.012794495, 0.013153076, 0.045074463, -0.03543091, 0.023635864, 0.03152466, -0.02166748, 0.012184143, -0.016403198, -0.02331543, 0.009223938, 0.016052246, -0.0035324097, -0.00932312, -0.045654297, 0.03250122, 0.0340271, -0.0054855347, 0.033721924, -0.021759033, 0.007270813, -0.025161743, 0.004787445, -0.021575928, 0.051727295, 0.05596924, -0.041137695, 0.037872314, -0.0206604, 0.0050621033, 0.038238525, -0.030044556, -0.0124053955, 0.02293396, -0.062347412, 0.0046958923, 0.02003479, -0.016723633, -0.0022182465, -0.031463623, -0.018798828, 0.023284912, -0.008590698, 0.030960083, 0.0015554428, 0.03010559, -0.04550171, -0.035125732, 0.028579712, -0.0104904175, 0.021820068, -0.05935669, 0.019866943, 0.021972656, -0.025253296, -0.012145996, 0.0051956177, -0.0154953, 0.0015010834, 0.023651123, -0.04168701, 0.010192871, 0.006462097, 0.014823914, -0.021514893, -0.0011224747, 0.009307861, -0.031585693, 0.0013542175, -0.01838684, -0.02897644, -0.012367249, -0.051116943, -0.022949219, -0.011192322, -0.05343628, 0.026107788, 0.0057678223, -0.027511597, 0.0005450249, 0.0021095276, -0.013534546, -0.032318115, 0.0013904572, 0.0010433197, 0.024246216, -0.007209778, 0.06677246, -0.041015625, -0.022094727, -0.013465881, -0.012145996, 0.00440979, -0.0021343231, -0.0067825317, -0.039031982, -0.042175293, -0.03475952, 0.0038871765, -0.0011081696, 0.04333496, -0.023086548, -0.027404785, -0.012916565, 0.002981186, 0.0074157715, 0.004096985, -0.018203735, -0.05126953, 0.011177063, -0.018295288, 0.006046295, 0.034606934, -0.02166748, -0.105285645, -0.060058594, -0.07458496, -0.009292603, -0.02458191, -0.0016489029, 0.031707764, -0.009292603, -0.03475952, 0.05441284, 0.040618896, 0.06304932, 0.019638062, 0.0018138885, 0.030288696, -0.026885986, -0.053009033, -0.036010742, -0.026687622, 0.044525146, -0.007972717, -0.039093018, -0.03274536, 0.0206604, -0.0029754639, 0.010955811, 0.052703857, 0.004333496, 0.011375427, 0.004055023, -0.0340271, -0.02330017, -0.013549805, -0.0054397583, 0.007183075, -0.010368347, -0.041992188, 0.030426025, -0.03375244, -0.026351929, -0.015548706, 0.040985107, -0.030212402, -0.04019165, -0.03213501, -0.06768799, 0.008682251, 0.04736328, -0.03652954, 0.056762695, -0.025039673, -0.026824951, -0.0637207, 0.01360321, 0.01777649, -1.1742115e-05, -0.034484863, 0.05026245, 0.04510498, 0.09051514, -0.051208496, -0.019210815, -0.04043579, 0.020599365, -0.02758789, 0.03982544, 0.034179688, -0.012481689, 0.0184021, 0.03074646, -0.023101807, -0.035888672, 0.014755249, 0.093933105, -0.0052719116, 0.012130737]}, "B06WLHJ8GJ": {"id": "B06WLHJ8GJ", "original": "Brand: F Fellie Cover\nName: Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))\nDescription:
      Fellie Cover BBQ Grill Cover---Provide full protection for your grill

      Wide Compatibility:
      This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill's dimensions for proper fit.

      Adjustable Funtion (Wind-proof):
      Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

      Water-resistant:
      This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

      Durable Burner Gas Grill Cover:
      Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

      Firm Protection:
      Double stitching (Sewing), which is more durable than one-line stitching.

      Easy Installation:
      You can easily put this grill cover on or off.

      Easy to store/carry:
      Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

      Note: Please keep away from open flame and other sources of ignition.


      Item Color: Black
      Package included
      1 * Grill Cover
      1 * Packing Bag\nFeatures: Find the Perfect Cover - Measures 75\"Wx28\"Dx46\"H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill's dimensions for proper fit\nDurable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round\nEasy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds\nSecure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won't blow away in the wind\nEasy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage\n", "metadata": {"Name": "Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))", "Brand": "F Fellie Cover", "Description": "
      Fellie Cover BBQ Grill Cover---Provide full protection for your grill

      Wide Compatibility:
      This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill's dimensions for proper fit.

      Adjustable Funtion (Wind-proof):
      Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

      Water-resistant:
      This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

      Durable Burner Gas Grill Cover:
      Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

      Firm Protection:
      Double stitching (Sewing), which is more durable than one-line stitching.

      Easy Installation:
      You can easily put this grill cover on or off.

      Easy to store/carry:
      Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

      Note: Please keep away from open flame and other sources of ignition.


      Item Color: Black
      Package included
      1 * Grill Cover
      1 * Packing Bag", "Features": "Find the Perfect Cover - Measures 75\"Wx28\"Dx46\"H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill's dimensions for proper fit\nDurable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round\nEasy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds\nSecure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won't blow away in the wind\nEasy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.028640747, -0.00831604, -0.036346436, -0.020523071, -0.018157959, 0.014511108, -0.030029297, 0.022613525, -0.05142212, 0.0037155151, -0.008323669, 0.058013916, -0.018554688, -0.025344849, 0.06665039, -0.016845703, 0.011253357, 0.0034656525, -0.0032234192, -0.01727295, -0.02281189, -0.007434845, 0.014541626, 0.031677246, 0.026382446, -0.026168823, 0.05041504, -0.034973145, 0.031280518, -0.024749756, 0.028167725, -0.009056091, 0.060760498, -0.012557983, -0.030685425, 0.017425537, -0.034454346, -0.00025343895, -0.019226074, 0.007423401, 0.041992188, -0.034362793, -0.027709961, 0.039642334, 0.010253906, -0.060821533, 0.04373169, -0.074157715, -0.00894928, 0.008262634, 0.01965332, 0.019577026, 0.01878357, 0.033081055, -0.0051231384, 0.011451721, 0.022979736, -0.012397766, 0.033172607, 0.013969421, -0.011581421, 0.003967285, 0.01676941, -0.030288696, -0.01902771, 0.012817383, 0.09667969, -0.017120361, -0.06542969, -0.035888672, 0.045410156, 0.0011072159, 0.03475952, -0.007335663, -0.02279663, -0.054534912, 0.022644043, -0.03265381, 0.0109939575, -0.011062622, -0.031097412, -0.06137085, 0.048706055, 0.0017461777, -0.01448822, 0.024749756, -0.020431519, 0.0048065186, -0.010231018, -0.011062622, -0.0030918121, 0.06549072, -0.06225586, 0.031585693, 0.00029540062, 0.00440979, -0.03463745, 0.006416321, -0.030975342, 0.007965088, 0.030029297, -0.026321411, 0.0501709, -0.039276123, -0.01713562, 0.046844482, 0.019256592, 0.04837036, -0.0029640198, 0.000341177, -0.015083313, -0.04324341, -0.02003479, -0.07470703, -0.012382507, 0.05206299, 0.0066986084, -0.011459351, 0.0418396, -0.014457703, -0.033813477, -0.004219055, -0.059020996, 0.05706787, 0.052337646, 0.054656982, 0.017196655, 0.044799805, -0.029556274, 0.00011318922, -0.019134521, 0.013870239, 0.03149414, 0.057373047, 0.025115967, -0.017028809, -0.0029258728, -0.00053596497, -0.01159668, 0.0043182373, -0.029693604, 0.011207581, 0.064453125, -0.039855957, -0.015777588, 0.032806396, 0.018722534, -0.0015611649, -0.0074539185, -0.05078125, 0.019424438, -0.04449463, 0.046905518, 0.02218628, -0.07824707, -0.0066223145, 0.012191772, -0.022247314, -0.056915283, -0.05444336, -0.029586792, -0.0079956055, 0.0072669983, -0.017745972, -0.011756897, 0.008232117, 0.024871826, 0.017852783, 0.014541626, 0.011459351, -0.023010254, -0.014419556, -0.036071777, -0.0015497208, -0.0052337646, 0.027618408, -0.027450562, 0.074645996, 0.06274414, -0.09820557, -0.068115234, -0.07055664, 0.13659668, -0.0440979, -0.019760132, -0.026519775, 0.018585205, -0.0011978149, 0.026809692, 0.015838623, 0.015701294, -0.012145996, -0.033843994, 0.027801514, -0.02659607, 0.005191803, -0.016479492, 0.032073975, -0.026138306, -0.0072364807, -0.042419434, -0.013999939, 0.020645142, 0.0037059784, 0.021392822, -0.016464233, -0.0034885406, 0.014083862, 0.021408081, 0.012672424, -0.012008667, -0.03353882, 0.013999939, -0.033294678, -0.019485474, 0.0031604767, -0.019592285, 0.0055885315, 0.011444092, 0.027282715, 0.024108887, 0.019363403, 0.0012435913, -0.02545166, 0.024932861, -0.024459839, -0.0012998581, -0.01071167, 0.026138306, 0.020446777, -0.008010864, -0.0010385513, 0.048217773, 0.020141602, -0.031051636, 0.039642334, 0.032928467, 0.029205322, -0.050476074, 0.007167816, 0.015945435, -0.029052734, -0.014602661, 0.022583008, -0.023483276, 0.010818481, 0.029541016, -0.014831543, -0.04574585, 0.0075683594, 0.036865234, 0.020050049, 0.008987427, -0.016235352, -0.0463562, 0.043273926, -0.016036987, 0.020751953, -0.002193451, 0.018554688, -0.02897644, 0.018478394, 0.059295654, -0.020126343, 0.074157715, -0.025466919, 0.064331055, 0.047973633, -0.013702393, -0.018966675, -0.0105896, 0.021255493, -0.018051147, 0.056762695, 0.04812622, -0.0035800934, -0.012191772, -0.025756836, -0.009895325, 0.02861023, 0.02003479, 0.0524292, 0.015129089, 0.0037670135, 0.016052246, -0.019729614, 0.0064697266, 0.015930176, -0.014152527, -0.01386261, 0.01576233, 0.014457703, -0.008613586, -0.005138397, 0.012016296, -0.010345459, 0.0065345764, -0.007713318, 0.018203735, -0.025924683, -0.027038574, 0.0309906, -0.03274536, 0.026367188, -0.015609741, 0.0155181885, -0.0033473969, -0.008285522, -0.009529114, -0.043762207, 0.02571106, 0.041809082, 0.026733398, -0.038879395, 0.07733154, 0.01638794, 0.02458191, 0.041107178, 0.047821045, 0.030212402, -0.027542114, -0.042236328, -0.008995056, -0.042388916, -0.011627197, 0.0211792, -0.06262207, 0.018753052, -0.040649414, -0.008094788, 0.004776001, -0.061065674, -0.01928711, -0.0054512024, -0.00061655045, -0.005821228, -0.002210617, -0.009017944, 0.0002951622, -0.0118255615, 0.006286621, -0.004142761, -0.010383606, -0.036193848, -0.02909851, -0.024642944, 0.033966064, 0.022109985, -0.029556274, -0.012107849, 0.023773193, -0.055389404, -0.004966736, -0.043792725, -0.039764404, 0.052124023, 0.019165039, -0.08660889, -0.010917664, -0.093811035, -0.001783371, 0.0052719116, -0.04522705, -0.0107040405, 0.02519226, -0.028167725, -0.0067825317, -0.010047913, 0.021728516, 0.025283813, 0.022323608, 0.038024902, -0.023513794, -0.037200928, -0.022964478, -0.031021118, 0.017822266, -0.06262207, -0.015731812, -0.022506714, -0.062561035, -0.015838623, -0.02571106, 0.027023315, 0.042419434, 0.049987793, 0.050354004, 0.01965332, -0.0019044876, -0.040039062, -0.026138306, 0.018493652, -0.020339966, -0.038024902, 0.050994873, 0.03933716, 0.00064229965, -0.032989502, 0.017913818, -0.046020508, -0.04815674, -0.0109939575, -0.004623413, -0.023513794, 0.0019550323, -0.05316162, -0.01399231, -0.03704834, 0.015167236, 0.03274536, -0.038085938, 0.028793335, -0.033843994, 0.019989014, 0.0021686554, -0.004436493, -0.01499939, -0.0124435425, -0.023483276, 0.009094238, 0.017745972, 0.00856781, -0.0099105835, 0.02355957, -0.03137207, 0.046905518, -0.00017976761, 0.026473999, -0.012687683, 0.02406311, 0.013641357, -0.017166138, -0.008422852, 0.011711121, -0.022491455, 0.022018433, 0.0028476715, -0.012825012, 0.03488159, -0.034484863, -0.016525269, 0.0018644333, -0.036346436, 0.007972717, -0.022003174, -0.019927979, 0.009094238, -0.036834717, -0.04006958, -0.05883789, -0.002111435, 0.022659302, -0.0038032532, 0.021316528, 0.00856781, 0.06274414, 0.014701843, 0.05368042, 0.011291504, -0.02935791, -0.01864624, -0.040649414, 0.025115967, -0.0027122498, -0.03753662, -0.029541016, 0.09301758, 0.003566742, -0.0047035217, -0.00073337555, -0.032348633, 0.019485474, 0.008796692, -0.02319336, 0.027130127, 0.0014848709, -0.0005221367, -0.022949219, 0.025497437, -0.01209259, -0.038604736, 0.0023918152, -0.0670166, 0.09161377, 0.040252686, -0.011077881, 0.067871094, 0.07611084, -0.019332886, 0.06512451, 0.031341553, 0.037597656, 0.03466797, 0.048919678, -0.000112593174, 0.0007328987, 0.022369385, -0.03643799, -0.012176514, -0.0022125244, -0.055603027, -0.0105896, -0.055267334, -0.0030536652, -0.0029010773, 0.012512207, 0.029663086, -0.004257202, 0.011741638, -0.01687622, 0.043060303, -0.036865234, 0.00422287, 0.01586914, -0.02709961, 0.0007381439, 0.00730896, 0.023223877, -0.02418518, -0.018554688, 0.002193451, -0.007572174, 0.02142334, 0.033416748, -0.025619507, 0.022537231, -0.009681702, 0.02130127, -0.019882202, 0.010551453, 0.024429321, -0.005996704, 0.004550934, -0.027679443, 0.015625, 0.015037537, -0.0066108704, 0.024139404, 0.022064209, -0.059936523, 0.028686523, 0.070495605, -0.02267456, -0.03805542, 0.028305054, -0.06921387, -0.028137207, -0.040924072, -0.024536133, -0.024810791, -0.03527832, -0.024475098, 0.00012636185, 0.01763916, -0.029251099, -0.013442993, -0.068237305, 0.010925293, -0.003501892, 0.015220642, -0.012527466, 0.04473877, -0.07086182, 0.008422852, -0.004447937, 0.0017290115, 0.034942627, 0.0036087036, 0.029144287, -0.015098572, -0.01448822, -0.027526855, 0.06512451, -0.010429382, 0.01058197, -0.050567627, 0.006252289, 0.003030777, 0.03213501, 0.050567627, 0.0027256012, 0.040374756, -0.009338379, 0.05392456, -0.080566406, -0.04940796, 0.038482666, -0.075927734, -0.061187744, -0.088256836, 0.07611084, 0.014350891, -0.02658081, -0.032440186, 0.047729492, 0.028167725, 0.017227173, -0.021591187, 0.016952515, 0.03060913, -0.01473999, 0.0050086975, -0.008224487, -0.021759033, 0.009773254, -4.2021275e-05, -0.0027542114, -0.02935791, -0.008583069, 0.01838684, -0.011665344, 0.0007324219, -0.035461426, -0.0053482056, -0.03552246, 0.009941101, -0.05380249, 0.08288574, 0.064086914, 0.0019464493, -0.0018930435, 0.002904892, -0.008956909, -0.0770874, 0.011619568, -0.05734253, 0.0072784424, -0.005783081, -0.02748108, -0.026779175, -0.045684814, -0.010887146, 0.017120361, -0.032440186, 0.023086548, -0.021499634, 0.037750244, 0.009269714, 0.017700195, 0.038146973, 0.036895752, -0.011482239, 0.03552246, -0.039123535, -0.019638062, -0.022460938, 0.008850098, 0.03604126, -0.0033226013, -0.00806427, 0.05218506, 0.025848389, -0.032562256, 0.016464233, 0.036254883, 0.03378296, -0.029052734, 0.01586914, -0.026382446, -0.022232056, -0.023101807, -0.0012044907, -0.0008878708, 0.014022827, 0.026550293, -0.013168335, -0.009399414, 0.03479004, -0.039123535, 0.047698975, 0.0022449493, -0.028961182, 0.045806885, 0.00349617, -0.011390686, -0.00504303, 0.0692749, -0.00040364265, 0.00818634, -0.036193848, -0.0017719269, -0.0009794235, 0.046051025, -0.047546387, -0.0006155968, 0.040100098, 0.014205933, -0.015205383, -0.0028533936, 0.038513184, -0.057891846, -0.018737793, 0.014122009, -0.0046577454, -0.02670288, 0.0055770874, -0.03668213, -0.051574707, 0.004508972, 0.014656067, 0.026412964, -0.028640747, -0.03213501, -0.06707764, -0.044067383, 0.015167236, 0.010604858, 0.013023376, 0.0072898865, 0.029022217, -0.0037765503, -0.021957397, 0.021209717, 0.009140015, -0.01953125, -0.017700195, -0.018157959, 0.028396606, -0.016082764, 0.023254395, -0.042907715, 0.008155823, 0.0013523102, -0.018188477, 0.010559082, 0.022262573, -0.061035156, -0.0053367615, -0.0030536652, 0.013206482, -0.0335083, 0.0049362183, 0.057037354, -0.046020508, -0.03857422, -0.039398193, 0.03479004, -0.021255493, -0.034362793, 0.042114258, 0.03366089, 5.5491924e-05, 0.029876709, -0.013145447, -0.027374268, 0.004924774, 0.021255493, -0.061920166, -0.032348633, -0.0034275055, 0.030212402, -0.05307007, -0.009254456, -0.020904541, 0.05621338, -0.0040626526, -0.02986145, -0.051635742, -0.022140503, 0.011077881, -0.032989502, 0.020889282, -0.019439697, 0.001335144, -0.0031490326, -0.03213501, -0.0703125, -0.018875122, -0.0101623535, 0.019607544, 0.031402588, 0.00024032593, 0.01499939, 0.012756348, -0.039886475, 0.026947021, -0.017333984, -0.036621094, -0.00141716, 0.034332275, 0.040771484, 0.02684021, -0.022964478, -0.020965576, -0.013725281, 0.0041160583, 0.032989502, 0.012176514, -0.06124878, -0.033111572, 0.05795288, 0.033996582, -0.029693604, -0.0042266846, 0.009788513, 0.03161621, -0.013198853, -0.022064209, 0.023498535, -0.020965576, -0.007648468, -0.00087594986, -0.024429321, 0.025115967, -0.01638794, 0.0231781, -0.009399414, 0.05078125, -0.02003479, 0.025543213, 0.00365448, -0.0037174225, 0.009460449, -0.029296875, -0.0039749146, -0.012832642, -0.044952393, 0.0008559227, 0.0042762756, -0.04812622, -0.0010242462, 0.027770996, -0.019683838, 0.033477783, 0.0073013306, -0.00080251694, 0.008682251, -0.0016908646, 0.0061035156, 0.004070282, 0.015258789, 0.00078964233, -0.08282471, -0.027069092, -0.035614014, 0.028961182, 0.0088272095, 0.074279785, -0.009559631, 0.031311035, -0.0050468445, -0.008857727, -0.01361084, -0.026947021, 0.049713135, -0.0029125214, -0.016677856, -0.0115356445, -0.03643799, -0.0041503906, 0.027679443, -0.011077881, 0.009674072, -0.04147339, 0.023223877, -0.005252838, 0.028717041, -0.018966675, -0.024627686, -0.0026245117, 0.010040283, 0.016708374, 0.0074882507, -0.04147339, 0.020980835, 0.010818481, -0.039001465, 0.020202637, -0.04360962, 0.0791626, 0.04598999, -0.0099487305, -0.049682617, -0.023620605, -0.027633667, 0.0029621124, -0.009841919, 0.08294678, -0.0069847107, 0.026870728, 0.012214661, 0.03414917, 0.05102539, -0.014831543, 0.029388428, 0.00012493134, -0.0013427734, 0.007545471, 0.0077171326, -0.0058021545, -0.009010315, 0.0006299019, 0.0033092499, 0.021255493, -0.011497498, 0.008270264, -0.015029907, -0.0031814575, -0.010513306, -0.01675415, 0.0022468567, 0.006210327, 0.048980713, -0.03491211, -0.008178711, -0.014076233, -0.02456665, -0.043426514, 0.002357483, -0.052459717, -0.0075912476, -0.010749817, -0.044036865, -0.009536743, 0.0032157898, 0.017059326, -0.07446289, -0.027786255, -0.014198303, 0.03768921, -0.0055999756, 0.07446289, -0.060821533, -0.04486084, -0.020111084, 0.017425537, -0.05279541, -0.03363037, -0.0021896362, 0.010238647, 0.026824951, -0.015151978, -0.038146973, 0.09698486, -0.007091522, -0.014862061, -0.0064811707, -0.0011062622, -0.046813965, 0.06414795, 0.0073776245, -0.010566711, 0.04147339, 0.05670166, -0.009857178, -0.011062622, 0.0064086914, -0.020492554, -0.06970215, 0.0053710938, -0.009971619, -0.011909485, -0.009529114, 0.0069274902, 0.025009155, 0.04159546, 0.004989624, 0.021026611, 0.029708862, -0.033325195, 0.014038086, 0.011734009, 0.03439331, 0.0079956055, -0.03540039, -0.013427734, -0.029785156, -0.007003784, 0.054870605, 0.00032305717, -0.020629883, 0.022354126, -0.013092041, 0.017929077, 0.010063171, -0.01675415, -0.0067481995, 0.031585693, -0.014709473, -0.0050582886, 0.008331299, -0.014045715, -0.02748108, -0.020141602, 0.04522705, 0.07318115, -0.04925537, -0.0110321045, 0.0038280487, -0.014289856, 0.03326416, -0.017868042, -0.028137207, -0.03387451, -0.001247406, 0.034698486, -0.011886597, -0.015563965, -0.014579773, -0.009056091, -0.014335632, 0.032318115, 0.015060425, 0.04650879, -0.017425537, 0.043640137, 0.032958984, 0.007881165, -0.045898438, -0.016220093, -0.046295166, 0.013938904, 0.029251099, 0.003578186, 0.08062744, 0.0055770874, 0.0022907257, 0.019836426, -0.034179688, -0.044311523, 0.02571106, 0.015068054, 0.01675415, 0.016784668]}, "B094MW12HR": {"id": "B094MW12HR", "original": "Brand: SIRUITON\nName: SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black\nDescription: Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)\nFeatures: DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill\nPROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.\nWATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank.\nEXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage.\nGREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.\n", "metadata": {"Name": "SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black", "Brand": "SIRUITON", "Description": "Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)", "Features": "DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill\nPROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.\nWATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank.\nEXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage.\nGREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008033752, -0.011550903, -0.0036849976, -0.087646484, -0.0055770874, 0.021835327, -0.04650879, 0.040100098, -0.050201416, -0.025512695, -0.04949951, 0.047210693, -0.06222534, -0.009208679, 0.056793213, -0.061431885, 0.00063180923, 0.009307861, -0.01159668, -0.03265381, 0.0019931793, -0.031982422, -0.014160156, 0.03817749, 0.041900635, -0.043304443, 0.037322998, -0.00699234, 0.009727478, -0.028320312, 0.026168823, 0.02017212, 0.03982544, 0.0012102127, -0.0056991577, 0.01940918, 0.019302368, -0.03137207, -0.01374054, 0.008758545, -0.004749298, -0.009880066, 0.03652954, -0.030426025, -0.0008511543, -0.0077819824, -0.00084495544, -0.04058838, -0.008468628, 0.0440979, 0.036834717, 0.0012159348, 0.032989502, 0.018066406, 0.0064201355, 0.012069702, -0.008399963, -0.027908325, 0.008079529, -0.0032348633, 0.003063202, 0.020202637, 0.025161743, 0.017578125, -0.036499023, 0.026062012, 0.0635376, -0.025756836, -0.03955078, -0.019851685, 0.03463745, -0.0103302, 0.040649414, -0.006061554, -0.030929565, -0.018157959, 0.0063934326, 0.010467529, 0.026153564, -0.018554688, -0.03302002, -0.0042304993, 0.05014038, -0.033111572, -0.0070152283, -0.0102005005, -0.02217102, -0.0057754517, 0.0056648254, -0.0021381378, 0.0015087128, 0.014511108, 0.024978638, 0.009567261, -0.017547607, -0.031555176, -0.06958008, -0.057769775, 0.0017108917, 0.032714844, 0.024230957, -0.009056091, 0.054840088, -0.029327393, -0.017059326, 0.07824707, 0.030838013, 0.0010786057, 0.008636475, -0.034484863, 0.0027122498, 0.009262085, -0.0262146, -0.024169922, -0.00617218, 0.047424316, -0.035980225, 0.016296387, 0.010536194, 0.021118164, -0.033294678, -0.020263672, -0.0067443848, -0.035888672, 0.018463135, -0.0012331009, -0.013755798, 0.033416748, -0.026016235, 0.04727173, -0.028762817, -0.020751953, -0.0015087128, 0.06298828, 0.026031494, -0.025527954, 0.08062744, -0.05886841, -0.0001951456, 0.0036697388, -0.0063667297, 0.01713562, 0.016479492, -0.019638062, -0.03390503, 0.04220581, 0.018508911, -0.004611969, -0.023208618, -0.06439209, 0.008766174, -0.047424316, 0.062194824, -0.014549255, -0.05883789, -0.0051116943, -0.0062179565, -0.017425537, -0.057037354, -0.056243896, -0.040161133, -0.027938843, -0.01158905, 0.023345947, 0.00793457, 0.05255127, 0.05682373, 0.005542755, 0.011810303, 0.023956299, -0.03515625, 0.028900146, 0.028152466, 0.0076026917, 0.0014286041, 0.0032444, -0.044403076, 0.07330322, 0.09484863, -0.09326172, -0.061767578, -0.06124878, 0.1661377, -0.05331421, 0.0044136047, -0.028182983, 0.003900528, -0.038726807, 0.018463135, -0.014907837, 0.0055236816, 0.03652954, -0.014389038, -0.04522705, -0.0029010773, 0.04232788, -0.022003174, 0.021102905, -0.011528015, -0.0030517578, -0.030929565, 0.0024909973, -0.0017518997, -0.005874634, 0.028427124, -0.042785645, 0.024276733, 0.0010318756, -0.005466461, 0.019454956, -0.007297516, -0.019927979, 0.0015392303, -0.02027893, 0.0010251999, 0.025405884, 0.028503418, 0.039886475, -0.0063705444, -0.016815186, 0.026870728, -0.035614014, 0.030792236, 0.08483887, -0.009399414, -0.015823364, -0.009971619, -0.008743286, -0.004432678, -0.002948761, 0.024505615, 0.016067505, 0.07672119, 0.040527344, -0.027313232, 0.025772095, 0.010772705, -0.008621216, -0.033416748, 0.024612427, 0.016708374, 0.008666992, -0.007358551, 0.0076560974, 0.029953003, -0.064819336, -0.01473999, 0.0027179718, -0.041137695, -0.0062675476, 0.053009033, 0.03164673, 0.0011482239, 0.013023376, -0.011642456, 0.01739502, -0.034240723, 0.0149383545, -0.016723633, 0.03768921, -0.02003479, 0.023635864, 0.04748535, -0.027297974, -0.0045280457, 0.018661499, 0.055389404, 0.051971436, 0.024124146, -0.02418518, -0.02545166, 0.019714355, -0.0020542145, 0.030975342, 0.011375427, 0.03729248, -0.019073486, -0.0038337708, -0.02458191, 0.018951416, 0.005760193, 0.015380859, -0.03286743, -0.0016040802, 0.024520874, 0.006504059, -0.014701843, 0.02355957, -0.042816162, -0.012535095, 0.002462387, 0.044830322, 0.0006623268, 0.0071640015, 0.027328491, 0.010513306, 0.01197052, -0.011802673, 0.022338867, -0.008590698, -0.01184082, 0.05697632, 0.009399414, 0.002105713, -0.008735657, -0.00667572, -0.015365601, 0.022521973, 0.01890564, -0.0357666, 0.015525818, 0.047912598, 0.00642395, 0.002073288, 0.014419556, 0.0070266724, -0.009773254, 0.041168213, 0.074279785, 0.06390381, 0.019363403, 0.0040512085, -0.0007443428, -0.006664276, 0.010826111, -0.023132324, -0.025131226, -0.0033016205, -0.018737793, 0.0061416626, 0.0115356445, -0.007091522, -0.009025574, 0.024856567, -0.0039901733, 0.0038986206, -0.0029506683, 0.033569336, -0.0028476715, -0.06781006, -0.02633667, 0.015525818, 0.0015649796, 0.009765625, -0.024673462, -0.04812622, 0.05090332, -0.007789612, -0.033935547, 0.015426636, 0.02545166, -0.017364502, -0.008293152, -0.074035645, -0.002714157, 0.050720215, -0.012832642, -0.050109863, 0.03503418, -0.0703125, 0.006023407, -0.022766113, -0.05026245, -0.028930664, 0.07196045, -0.018966675, -0.05935669, -0.022735596, 0.015106201, 0.024307251, -0.024414062, 0.05218506, -0.07409668, -0.026855469, -0.029510498, 0.005508423, 0.018676758, -0.069885254, 0.002708435, -5.8293343e-05, -0.06738281, -0.006549835, -0.035217285, 0.04437256, -0.0047187805, 0.034179688, 0.036468506, 0.02507019, -0.0054244995, -0.022232056, 0.0071258545, 0.037322998, 0.03652954, -0.009643555, -0.0072250366, -0.019836426, -0.031555176, 0.032318115, -0.03466797, -0.0018186569, -0.041900635, -0.012168884, -0.007091522, -0.023880005, -0.0038604736, -0.04736328, -0.018371582, -0.050933838, 0.017745972, 0.045410156, 0.004207611, -0.0049057007, 0.016174316, -0.028518677, -0.002828598, 0.0011882782, -0.06652832, -0.0033740997, -0.0028419495, 0.012107849, 0.010131836, -0.026916504, -0.0018997192, 0.042419434, 0.00217247, -0.0040359497, 0.021713257, -0.0057754517, 0.010375977, 0.006641388, -0.0014238358, -0.021148682, -0.042236328, 0.009132385, 0.006980896, 0.04663086, 0.027618408, -0.038970947, 0.05871582, -0.014572144, -0.043792725, -0.014671326, 0.008300781, -0.0048103333, -0.032104492, 0.01537323, 0.0014877319, -0.014091492, -0.034179688, -0.03353882, -0.020477295, 0.03564453, 0.00983429, 0.020767212, -0.0047454834, 0.00014090538, 0.0041236877, 0.034362793, -0.021026611, -0.029754639, -0.021240234, -0.023086548, 0.0014295578, -0.024658203, -0.037109375, -0.04699707, 0.07891846, -0.00060129166, 0.014907837, -0.039764404, -0.050598145, 0.0635376, 0.040649414, -0.008201599, 0.007774353, -0.0021953583, -0.010810852, -0.035339355, 0.016723633, 0.014930725, -0.09832764, 0.024002075, -0.083862305, 0.074157715, 0.045928955, -0.012741089, 0.12927246, 0.087524414, -0.024719238, 0.030380249, 0.04257202, 0.004951477, 0.0049324036, 0.039276123, -0.037628174, -0.019638062, 0.0032596588, -0.019866943, -0.0023002625, -0.02255249, -0.024475098, 0.014625549, 0.010826111, -0.006576538, -0.027191162, 0.010810852, 0.01777649, -0.0055236816, 0.0005583763, -0.013206482, -0.009010315, -0.0335083, 0.019104004, 0.00687027, -0.0104522705, -0.008552551, -0.00010049343, 0.035705566, -0.02545166, -0.021209717, -0.029708862, -0.013977051, -0.01676941, 0.045959473, 0.029968262, -0.005493164, -0.044403076, 0.024368286, -0.019500732, 0.004047394, 0.011070251, 0.014404297, -0.01474762, -0.020584106, 0.04284668, -0.0013685226, -0.016464233, 0.004623413, -0.035308838, -0.0715332, 0.020584106, 0.03253174, -0.0051879883, -0.025619507, -0.008102417, -0.03213501, -0.047821045, 0.0020503998, -0.0011854172, 0.012619019, -0.023345947, -0.03765869, -0.039245605, -0.02848816, -0.020111084, 0.0034885406, -0.0496521, 0.021743774, 0.023330688, -0.0032672882, -0.012245178, 0.032318115, -0.03866577, -0.013160706, -0.0043907166, 0.0085372925, 0.047607422, 0.0035991669, -0.023849487, -0.041259766, -0.041809082, -0.011070251, 0.020004272, 0.0029582977, -0.007751465, 0.0064926147, 0.010307312, 1.3589859e-05, 0.027923584, 0.020126343, -0.01889038, 0.04562378, 0.010322571, 0.0423584, -0.052124023, -0.030899048, 0.009887695, -0.049194336, -0.06561279, -0.037994385, 0.07183838, 0.016479492, -0.021240234, -0.013290405, 0.01727295, 0.03112793, 0.015701294, -0.022537231, -0.0020523071, 0.013221741, -0.02696228, -0.025543213, -0.021560669, -0.0071640015, 0.062286377, 0.021560669, -0.0037593842, -0.02267456, 0.015686035, 0.018814087, -0.044799805, -0.010292053, -0.03265381, 0.009147644, -0.025863647, -0.004070282, -0.06854248, 0.09307861, 0.077697754, 0.0017986298, 0.008476257, -0.0011892319, -0.020690918, -0.047729492, -0.01914978, -0.04498291, 0.015960693, -0.018508911, -0.028915405, -0.02281189, -0.037384033, -0.003332138, -0.026367188, -0.025177002, -0.014465332, 0.022125244, -0.013305664, -0.0030937195, -0.004470825, -0.00036859512, 0.014579773, -0.00035262108, -0.018859863, -0.017822266, 0.01586914, -0.025909424, -0.020843506, 0.019561768, -0.019714355, 0.012275696, -0.0031356812, 0.0077400208, -0.051513672, 0.020965576, 0.044830322, 0.013671875, -0.024841309, 0.008964539, -0.020248413, -0.010215759, -0.026290894, 0.0019273758, 0.007751465, 0.0072288513, 0.016586304, -0.034454346, -0.014274597, 0.03765869, -0.046813965, 0.062164307, 0.020492554, -0.053710938, 0.049316406, 0.00012385845, -0.013328552, -0.072143555, 0.055847168, -0.025299072, -0.020217896, -0.04309082, 0.011772156, -0.016357422, -0.028564453, -0.026763916, 0.0074310303, 0.060424805, -0.05380249, -0.031951904, 0.024002075, 0.047973633, -0.005847931, 0.015426636, 0.03540039, -0.003917694, -0.051635742, 0.026397705, -0.020385742, 0.012290955, -0.00969696, -0.010292053, 0.03805542, 0.0079574585, -0.046447754, -0.03579712, 0.0014925003, -0.03668213, -0.055145264, -0.028366089, 0.019439697, 0.025054932, -0.02166748, -0.016159058, 0.0736084, 0.03768921, -0.0725708, -0.021392822, -0.015174866, 0.022018433, -0.019165039, 0.06744385, -0.04736328, -0.07366943, -0.028869629, -0.015975952, 0.000320673, -0.020355225, -0.018081665, -0.042144775, 0.005722046, 0.019882202, -0.006866455, 0.06463623, 0.047576904, -0.03817749, -0.024383545, -0.03149414, 0.028320312, 0.0052719116, -0.0345459, 0.082458496, 0.028915405, -0.0002193451, 0.015296936, -0.012168884, -0.028060913, 0.028320312, 0.012786865, -0.066345215, -0.021331787, -0.0070991516, 0.001329422, -0.030960083, 0.011985779, -0.014289856, 0.052612305, -0.02557373, -0.023773193, -0.03540039, 0.016937256, -0.013008118, 0.0052833557, 0.032287598, -0.0003809929, -0.02293396, -0.02734375, -0.018875122, -0.042175293, -0.011505127, -0.011161804, 0.018447876, 0.02407837, 0.015731812, -0.0015335083, -0.008911133, -0.028030396, 0.001115799, 0.027832031, -0.024291992, 0.0032997131, 0.018325806, -0.0041046143, 0.021942139, -0.05041504, 0.0037956238, -0.0071144104, -0.041992188, 0.021530151, 0.012359619, -0.06402588, -0.0063476562, 0.03604126, 0.051879883, -0.0043296814, -0.021713257, 0.024368286, -0.0129470825, -0.041412354, -0.02267456, -0.013160706, -0.023834229, 0.009521484, -0.026901245, -0.0003271103, 0.0058174133, -0.011421204, 0.002702713, 0.0043296814, 0.04458618, -0.042510986, 0.024459839, -0.0013389587, -0.00907135, 0.03692627, -0.0032463074, 0.028305054, -0.014930725, 0.05130005, 0.026138306, -0.050872803, -0.050048828, 0.03112793, 0.03881836, -0.019699097, 0.046722412, 0.064819336, 0.00409317, 0.004299164, -0.012397766, 0.03164673, 0.014350891, 0.019515991, 0.031463623, -0.034454346, -0.0024871826, 0.0010604858, 0.016448975, 0.027023315, 0.021362305, 0.0074539185, 0.026473999, -0.011260986, 3.272295e-05, -0.026565552, -0.0317688, 0.04385376, -0.008872986, -0.033172607, -0.0043029785, -0.024108887, -0.01209259, 0.039916992, -0.03250122, -0.027557373, -0.009361267, 0.03302002, -0.0023841858, -0.02267456, -0.043701172, -0.022842407, 0.027786255, 0.023956299, -0.028244019, -0.033111572, -0.029510498, 0.020721436, -0.007331848, -0.047821045, 0.036956787, -0.06677246, 0.02609253, 0.016494751, 0.03048706, -0.050872803, -0.033355713, -0.015716553, -0.014144897, 0.008583069, 0.014099121, 0.008934021, 0.037597656, -0.023117065, -0.005420685, 0.013519287, -0.01828003, 0.011703491, -0.004016876, -0.0011663437, -0.011909485, -0.0049819946, 0.0072898865, -0.0031261444, -0.031707764, -0.004562378, -0.017150879, -0.041534424, 0.0121154785, 0.010551453, 0.0063819885, -0.011001587, -0.024490356, -0.0015296936, -0.011199951, 0.04333496, -0.03466797, 0.049102783, -0.04751587, -0.06933594, -0.054504395, -0.055664062, -0.04135132, 0.06829834, -0.004486084, -0.013687134, 0.003742218, 0.013175964, -0.0056419373, -0.047943115, -0.008651733, -0.0049705505, 0.008216858, -0.012916565, 0.037963867, -0.017028809, -0.043151855, -0.04171753, 0.016448975, -0.057739258, -0.0062828064, -0.03527832, 0.025009155, 0.026107788, 0.014137268, 0.045654297, 0.032104492, 0.012565613, -0.004234314, 0.01663208, -0.030593872, -0.037078857, 0.032196045, 0.012229919, -0.029190063, -0.0023422241, 0.033172607, 0.019165039, -0.014404297, 0.020584106, 0.019470215, -0.06781006, 0.012992859, -0.022354126, 0.006958008, -0.0015964508, 0.00730896, 0.0041923523, 4.440546e-05, -0.035949707, 0.0045661926, -0.0015077591, 0.009414673, 0.0048942566, 0.024856567, 0.020751953, 0.011375427, -0.027862549, -0.003982544, -0.01612854, -0.0016918182, 0.008659363, -0.06854248, -0.008987427, 0.032806396, -0.024307251, 0.012802124, 0.053253174, 0.020309448, 0.014953613, 0.008659363, -0.009811401, -0.015113831, -0.009254456, -0.0038375854, 0.0066452026, -0.062072754, 0.020996094, 0.040924072, -0.037261963, -0.01473999, -0.0010271072, -0.008476257, 0.0059318542, -0.00141716, -0.070007324, -0.037139893, 0.027908325, 0.019760132, -0.0071907043, 0.00844574, 0.018859863, 0.02519226, 0.009651184, 0.018371582, 0.012382507, 0.021224976, -0.01789856, 0.037872314, 0.005378723, 0.022567749, -0.044891357, -0.122802734, -0.053375244, 0.0011730194, -0.005836487, 0.006942749, 0.05126953, -0.022064209, 0.024719238, -0.011413574, 0.018814087, 0.00187397, 0.044647217, 0.059783936, -0.036987305, 0.024108887]}, "B01MXN574C": {"id": "B01MXN574C", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

      High Quality
      The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

      Fit More Brands
      The barbecue grill cover fits many brands. The size is 72\u201d long * 26\u201d deep * 47\u201d high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

      Advantages
      1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
      2.The grill cover inside has a weather proof liner so you don't have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

      Easy to Install
      Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

      Package includes
      1*BBQ grill cover
      \nFeatures: Dimensions: This Homitt bbq cover measures 72\"L x 26\"W x 47\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHandles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "metadata": {"Name": "Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black", "Brand": "Homitt", "Description": "Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

      High Quality
      The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

      Fit More Brands
      The barbecue grill cover fits many brands. The size is 72\u201d long * 26\u201d deep * 47\u201d high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

      Advantages
      1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
      2.The grill cover inside has a weather proof liner so you don't have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

      Easy to Install
      Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

      Package includes
      1*BBQ grill cover
      ", "Features": "Dimensions: This Homitt bbq cover measures 72\"L x 26\"W x 47\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHandles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.000954628, -0.001783371, -0.0357666, -0.0096588135, -0.0061187744, -0.0030345917, -0.021316528, -0.0037593842, 0.008621216, -0.033691406, -0.01374054, 0.023345947, -0.025558472, -0.037963867, 0.052246094, -0.023269653, 0.016998291, -0.009063721, -0.003156662, -0.016677856, -0.016204834, -0.019439697, 0.017349243, 0.034820557, 0.019439697, -0.013824463, 0.0463562, -0.009414673, 0.025680542, 0.0025024414, 0.021102905, -0.03173828, 0.04928589, -0.004425049, -0.046325684, 0.012176514, -0.011795044, -0.006679535, -0.016326904, 0.008628845, 0.0017881393, 0.002313614, -0.010955811, 0.029342651, -0.00037312508, -0.051452637, 0.009101868, -0.06317139, 0.0032520294, 0.0149383545, 0.025741577, 0.015640259, 0.022216797, 0.055480957, -0.02659607, -0.015464783, 0.015541077, 0.0001000762, 0.017288208, -0.016815186, -0.02470398, 0.030639648, 0.020446777, -0.0042419434, -0.008964539, -0.00447464, 0.09100342, -0.007396698, -0.05065918, -0.019515991, 0.0519104, 0.0023765564, 0.012916565, -0.016906738, -0.043914795, -0.0019321442, -0.0022029877, -0.04135132, 0.032562256, -0.022232056, -0.045562744, -0.057128906, 0.023330688, -0.021621704, -0.007587433, -0.0023479462, -0.01133728, 0.018325806, 0.02305603, -0.037994385, 0.011581421, 0.059295654, -0.033081055, 0.024337769, -0.011383057, -0.027236938, -0.020141602, -0.0073890686, -0.011810303, -0.0050582886, 0.041137695, -0.029800415, 0.035827637, -0.01977539, -0.02130127, 0.06530762, 0.019363403, 0.04550171, -0.008453369, -0.0032577515, 0.0012807846, -0.076293945, -0.0043296814, -0.034332275, -0.038330078, 0.03656006, 0.021194458, -0.028182983, 0.013839722, -0.029571533, -0.04748535, -0.02482605, -0.00091934204, 0.04626465, 0.04321289, 0.051635742, 0.015960693, 0.0019874573, -0.0357666, 0.0015916824, -0.014930725, 0.02645874, 0.0007305145, 0.02468872, -0.009300232, -0.007041931, 0.05630493, -0.049194336, -0.01486969, 0.033416748, -0.041168213, 0.027786255, 0.05807495, -0.06329346, -0.033325195, 0.021392822, 0.012626648, 0.014472961, -0.0059432983, -0.07141113, 0.016738892, -0.039886475, 0.049835205, -0.004169464, -0.07543945, -0.0020008087, -0.0149002075, 0.00040125847, -0.050964355, -0.05215454, -0.040100098, -0.007896423, 0.02192688, -0.02027893, -0.033233643, 0.04840088, 0.014884949, 0.0030651093, 0.023010254, 0.024017334, -0.00068569183, -0.012619019, -0.033813477, -0.011657715, -0.008262634, 0.004501343, -0.019927979, 0.056549072, 0.08880615, -0.13085938, -0.06982422, -0.04425049, 0.14794922, -0.03250122, -0.0008125305, -0.025985718, 0.0013570786, -0.023666382, 0.03668213, 0.0037765503, 0.009887695, -0.015388489, -0.003288269, 0.00680542, -0.01689148, 0.0022182465, -0.0061187744, 0.038146973, -0.023376465, -0.033325195, -0.054870605, -0.010818481, 0.029418945, -4.720688e-05, 0.03010559, -0.009506226, -0.002254486, 0.029220581, 0.013374329, 0.024749756, -0.010917664, -0.009521484, 0.019302368, -0.06640625, 0.0034065247, 0.031036377, 0.017410278, 0.031707764, 0.00020825863, 0.029708862, 0.01902771, -0.004550934, 0.0072898865, 0.036499023, 0.02204895, -0.0026664734, -0.012260437, 0.0038928986, 0.012710571, 0.034729004, -0.03829956, -0.008285522, 0.084350586, 0.031463623, -0.03945923, 0.037841797, 0.029525757, 0.0022773743, -0.047973633, 0.027679443, 0.007583618, -0.037872314, -0.06109619, 0.0065574646, -0.025894165, -0.038848877, -0.013298035, 0.018569946, -0.026107788, 0.031921387, 0.033691406, 0.020187378, -0.0037250519, -0.0127334595, -0.013267517, 0.020248413, -0.044433594, 0.0079574585, -0.014762878, 0.020690918, -0.015930176, 0.028717041, 0.05960083, -0.0076026917, 0.056640625, 0.00089359283, 0.06298828, 0.049316406, -8.279085e-05, -0.020462036, -0.007217407, 0.0032787323, 0.008583069, 0.023880005, -0.016311646, 0.019058228, -0.010574341, 0.00087451935, -0.0023384094, 0.00048542023, 0.023529053, 0.04135132, -0.010864258, 0.0008044243, 0.013572693, 0.02230835, -0.0035114288, 0.030578613, -0.025039673, -0.01675415, 0.015609741, 0.004562378, 0.0004117489, -0.043060303, 0.047302246, -0.019515991, 0.0045814514, 0.01083374, 0.003074646, 0.0055656433, -0.007709503, 0.045928955, -0.00983429, 0.012916565, -0.013839722, -0.00033688545, -0.018218994, -0.0057373047, 0.00046014786, -0.024383545, 0.006122589, 0.06341553, 0.022979736, -0.013412476, 0.06652832, 0.021850586, 0.030960083, 0.049224854, 0.07354736, 0.04638672, -0.020019531, -0.0070724487, -0.038757324, -0.024368286, -0.0015993118, 0.03225708, -0.049072266, 0.000259161, -0.05810547, 0.031585693, -0.030776978, -0.040039062, -0.030303955, 0.0137786865, -0.016906738, 0.026428223, -0.008918762, -0.016998291, -0.009803772, -0.01826477, -0.0031852722, -0.044891357, -0.01322937, -0.022827148, -0.035980225, -0.026412964, 0.04144287, 0.010475159, -0.048461914, -0.009346008, 0.03805542, -0.039093018, -0.04260254, -0.08123779, -0.04812622, 0.015625, 0.035491943, -0.09448242, -0.0103302, -0.10180664, 0.012580872, -0.023117065, -0.047088623, 0.009338379, 0.034240723, -0.0096588135, -0.03302002, -0.0076789856, 0.037139893, 0.040283203, 0.0073013306, 0.028152466, -0.0065345764, -0.013450623, 0.0012512207, -0.03741455, -0.02885437, -0.057159424, -0.012619019, -0.036895752, -0.031280518, -0.016159058, 0.011276245, 0.010047913, 0.016204834, 0.020355225, 0.044006348, 0.061035156, 0.00308609, -0.036834717, 0.011810303, 0.073913574, 0.0013246536, -0.019744873, 0.019805908, 0.006275177, -0.0033435822, 0.0011444092, -0.021697998, -0.027511597, -0.049438477, 0.012252808, 0.0039482117, -0.0124435425, -0.037139893, -0.028015137, -0.038238525, -0.036224365, -0.0072898865, 0.025177002, -0.027435303, -0.00060367584, -0.049102783, 0.009300232, 0.027374268, -0.02796936, -0.002538681, 0.00045681, -0.02571106, 0.0024261475, 0.01436615, 0.016921997, -0.0020771027, 0.011672974, 0.018432617, 0.016693115, 0.01285553, -0.015106201, -0.0030269623, 0.018676758, 0.011436462, -0.024795532, -0.005180359, 0.001824379, -0.023086548, 0.013168335, 0.0049705505, -0.009590149, 0.021591187, -0.034973145, 0.004272461, 0.009880066, -0.023773193, 0.035858154, 0.0018777847, -0.026641846, -0.0013437271, -0.028579712, -0.029663086, -0.030639648, 0.019302368, 0.018569946, 0.0031604767, 0.027313232, 0.0022888184, 0.07879639, 0.005241394, 0.03466797, 0.011474609, -0.03543091, -0.06088257, -0.054840088, 0.06707764, -0.02293396, -0.021865845, -0.026626587, 0.06188965, 0.0034046173, -0.0016231537, -0.015457153, -0.029129028, 0.034973145, 0.010231018, 0.0032253265, -0.011985779, -0.027786255, 0.004890442, 0.043121338, -0.022842407, -0.020004272, -0.07733154, 0.01272583, -0.08331299, 0.06549072, 0.017715454, -0.0079193115, 0.068115234, 0.05734253, -0.012565613, 0.034332275, 0.049957275, -0.0009899139, 0.009033203, 0.07989502, -0.014633179, -0.0049438477, 0.008926392, -0.016448975, 0.003080368, -0.026153564, -0.0155181885, -0.0019054413, -0.01285553, -0.0021190643, -0.015182495, 0.046722412, 0.064819336, -0.018127441, -0.035064697, -0.02418518, 0.029281616, -0.06274414, -0.02230835, 0.0072135925, -0.025436401, 0.012954712, 0.005256653, -0.013671875, 0.004383087, -0.0105896, -0.0079574585, -0.009376526, -0.0039520264, 0.002614975, 0.032104492, 0.0066986084, -0.017288208, 0.045837402, -0.00044822693, -0.005393982, 0.0075683594, 0.009811401, 0.002254486, 0.010383606, 0.007133484, 0.0012016296, 0.0063285828, 0.012557983, -0.031158447, -0.053253174, -0.0049476624, 0.015541077, -0.0010185242, -0.04147339, 0.0028648376, -0.06378174, -0.030929565, -0.010368347, -0.08331299, -0.0037708282, -0.027526855, -0.011413574, -0.042419434, -0.0016088486, 0.006134033, -0.028442383, -0.049102783, 0.002363205, -0.0069236755, 0.010360718, -0.019256592, 0.0670166, -0.047058105, -0.033233643, 0.009567261, 0.006591797, 0.06628418, 0.041900635, 0.0061035156, -0.019210815, -0.012908936, -0.020339966, 0.09136963, 0.032440186, 0.016937256, -0.030426025, 0.001991272, -0.01348114, 0.04449463, 0.04373169, -0.0029716492, 0.048309326, -0.0009841919, 0.018478394, -0.08068848, -0.0027770996, 0.060913086, -0.083618164, -0.049957275, -0.03189087, 0.077941895, 0.020309448, -0.03475952, -0.031234741, 0.049560547, 0.020690918, 0.008140564, -0.010925293, 0.03579712, 0.024383545, -0.043945312, -0.011009216, -0.009254456, -0.018661499, 0.031982422, 0.018035889, -0.06677246, 0.0036563873, -0.0014314651, 0.031799316, 0.0038528442, 0.02619934, -0.03314209, -0.0039367676, -0.015609741, -0.018432617, -0.050994873, 0.08703613, 0.1015625, 0.013961792, 0.013549805, 0.009208679, -0.020553589, -0.08135986, -0.006099701, -0.023971558, 0.019592285, -0.017578125, -0.037078857, -0.0013771057, -0.039794922, 0.000787735, -0.00046110153, -0.023391724, 0.009674072, -0.0030403137, 0.019485474, -0.017410278, -0.0029258728, 0.03253174, 0.033843994, -0.004131317, -0.005279541, -0.060150146, -0.025375366, -0.024902344, -0.0184021, 0.0018548965, -0.019958496, 0.017318726, -0.024276733, 0.010353088, -0.009811401, -0.0075683594, 0.01751709, 0.02267456, -0.014266968, -0.012245178, 0.0028686523, -0.025360107, -0.023101807, 0.029052734, -0.04031372, 0.036102295, 0.040161133, -0.027877808, -0.014060974, 0.03643799, -0.04763794, 0.06939697, 0.009971619, -0.05404663, 0.021484375, -0.0029277802, 0.00019586086, 0.0021152496, 0.040252686, -0.0006971359, -0.0032291412, -0.045806885, 0.0076675415, -0.025360107, 0.031341553, -0.016738892, -0.022216797, -0.0070610046, -0.027908325, 0.022232056, 0.019302368, 0.035339355, -0.016998291, 0.02003479, 0.020553589, 0.017715454, -0.045440674, 0.014450073, -0.02558899, 0.006462097, -0.015129089, 0.004421234, 0.014953613, -0.0020580292, -0.021850586, -0.02923584, -0.00381279, 0.00060749054, -0.023895264, -0.0048561096, -0.007209778, 0.0050315857, -0.004852295, 0.019317627, 0.011764526, 0.0104904175, -0.037872314, -0.0038967133, 0.00818634, 0.015464783, -0.01209259, 0.042938232, 0.0020484924, -0.01133728, -0.012931824, -0.015296936, 0.011688232, -0.026428223, -0.023010254, 0.02822876, -0.0004887581, 0.014160156, -0.03237915, 0.008522034, 0.066223145, -0.05307007, -0.035186768, -0.06161499, 0.02180481, -0.021377563, -0.017913818, 0.040771484, 0.013809204, 0.006664276, 0.032073975, 0.0021629333, -0.034576416, 0.01713562, 0.0076408386, -0.045684814, 0.0062828064, -0.019210815, 0.016159058, 0.00023722649, -0.010803223, -0.007820129, 0.061676025, -0.000600338, -0.037475586, -0.047088623, -0.018981934, 0.011428833, -0.041625977, 0.014923096, -0.0099487305, 0.0007557869, 0.006175995, -0.007980347, -0.05947876, 0.00056123734, 0.0076675415, 0.028060913, 0.027450562, -0.040496826, 0.011734009, 0.03652954, -0.02078247, 0.07421875, -0.05038452, -0.002336502, 0.009857178, 0.0463562, 0.016601562, 0.051330566, 0.009056091, -0.027282715, 0.0012931824, 0.011177063, 0.01953125, -0.0066566467, -0.030853271, -0.026733398, 0.048217773, 0.027160645, 0.0033435822, 0.03527832, 0.0513916, 0.028030396, -0.0034542084, -0.0030155182, -3.159046e-05, -0.03161621, -0.026504517, -0.02999878, 0.0152282715, 0.04522705, 0.022491455, 0.018005371, -0.022109985, 0.06604004, -0.007698059, 0.019577026, 0.0020198822, -0.017074585, -0.002784729, -0.02444458, 0.017715454, 0.016326904, -0.014839172, 0.0102005005, -0.016067505, -0.01838684, -0.0051078796, 0.017623901, -0.014945984, 0.047180176, 0.012161255, 0.005027771, 1.3709068e-06, 0.003376007, 0.020599365, 0.061767578, 0.024246216, 0.03677368, -0.09259033, -0.021438599, -0.01197052, -0.0020637512, -0.028671265, 0.085876465, -0.0045547485, -0.006713867, -0.027420044, -0.009475708, -0.0060539246, -0.043395996, 0.011291504, 0.027679443, 0.01878357, -0.0030765533, -0.052886963, -0.01737976, 0.030853271, -0.043426514, -0.02229309, -0.015670776, 0.03741455, -0.0062828064, 0.036010742, -0.01927185, -0.018218994, 0.025482178, 0.0132751465, 0.0028457642, 0.019119263, 0.014480591, 0.019760132, 0.007221222, -0.028564453, 0.02470398, -0.016921997, 0.059570312, 0.03778076, 0.006374359, -0.034820557, -0.026870728, -0.01940918, 0.0057907104, -0.00881958, 0.04647827, -0.008171082, 0.007167816, -0.033050537, 0.037597656, 0.026977539, -0.024871826, 0.032806396, 0.01537323, -0.03375244, 0.008804321, -0.015991211, 0.0054130554, 0.007297516, -0.010940552, 0.0046920776, 0.020996094, -0.01033783, 0.024353027, -0.004837036, -0.0039901733, -0.024368286, -0.004016876, 0.011016846, -0.018188477, 0.023605347, -0.034820557, 0.002729416, -0.036346436, -0.032165527, -0.03225708, -0.031311035, -0.052246094, 0.048950195, -0.02734375, -0.02796936, -0.011199951, 0.010414124, -0.010894775, -0.040283203, -0.03189087, 0.010818481, 0.027908325, 0.003080368, 0.055267334, -0.038116455, -0.05319214, -0.045440674, 0.035736084, -0.06866455, -0.03805542, -0.021530151, 0.028503418, 0.044189453, 0.014129639, 0.043151855, 0.06213379, 0.0107040405, 0.0066604614, -0.0004453659, -0.011520386, -0.049804688, 0.072143555, 0.019104004, -0.032073975, 0.018096924, 0.047088623, -0.008071899, 0.054718018, 0.026855469, -0.022140503, -0.025360107, -0.03060913, -0.05569458, 0.008277893, -0.0010128021, 0.032806396, -0.0063667297, 0.033691406, -0.026168823, 0.012527466, -0.023544312, -0.0026416779, 0.016571045, -0.002811432, 0.03302002, -0.01625061, -0.045318604, -0.03390503, -0.024002075, 0.027999878, 0.031799316, 0.0037345886, -0.008163452, 0.04019165, -0.018035889, 0.028930664, 0.021347046, -0.010604858, -0.03164673, 0.031555176, 0.007751465, -0.035095215, 0.026229858, -0.0016050339, -0.029891968, -0.059692383, 0.045135498, 0.072265625, -0.056121826, -0.028961182, -0.0021972656, -0.011024475, 0.0134887695, -0.06378174, -0.040252686, -0.0960083, 0.032836914, 0.063964844, -0.038024902, 0.028762817, -0.016952515, -0.03237915, -0.023468018, 0.014465332, 0.012634277, 0.017166138, -0.008331299, 0.0023918152, 0.010574341, 0.029418945, -0.028503418, -0.032836914, -0.041748047, 0.030639648, -0.0034618378, 0.00831604, 0.043060303, -0.004055023, 0.019302368, -0.020904541, 0.027938843, -0.051696777, 0.047088623, 0.010231018, 0.000518322, 0.04095459]}, "B000WB2BH2": {"id": "B000WB2BH2", "original": "Brand: GasOne\nName: Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A\nDescription: \nFeatures: Regulator and hose ready to use\nHose length: 150cm (59in)\nConnecting outlet: 5/8\" Unf\nIncompatible with Bunsen burner\n", "metadata": {"Name": "Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A", "Brand": "GasOne", "Description": "", "Features": "Regulator and hose ready to use\nHose length: 150cm (59in)\nConnecting outlet: 5/8\" Unf\nIncompatible with Bunsen burner", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018218994, -0.027191162, -0.028396606, -0.018112183, -0.043823242, -0.0010824203, -0.036346436, 0.01020813, -0.04550171, 0.0062789917, 0.009864807, 0.03302002, -0.014709473, -0.043701172, 0.047729492, -0.026992798, 0.016479492, 0.04928589, 0.034454346, -0.025466919, 0.016235352, -0.008842468, -0.010650635, 0.10974121, 0.025390625, -0.008262634, 0.04763794, -0.010383606, 0.031555176, 0.0022354126, 0.038269043, -0.031021118, 0.043823242, 0.0058631897, -0.055023193, -0.08569336, -0.024246216, -0.016555786, -0.06451416, 0.03793335, 0.0068969727, -0.00061893463, -0.015853882, 0.026260376, -0.045654297, -0.013885498, -0.013076782, -0.022628784, -0.0079956055, 0.011123657, -0.007926941, 0.0058670044, -0.0078125, -0.0063705444, 0.00074863434, -0.00095033646, -0.013710022, -0.014427185, 0.008621216, 0.0042915344, 0.011764526, 0.009140015, 0.020355225, 0.00774765, -0.035491943, 0.01285553, 0.030334473, -0.014305115, -0.003042221, -0.032592773, 0.005004883, 0.0005888939, 0.018112183, 0.002796173, -0.06222534, -0.0036258698, 0.021835327, -0.0289917, 0.026031494, -0.010971069, 0.02645874, -0.059814453, 0.054107666, 0.01259613, -0.01612854, -0.0074043274, 0.005420685, -0.0056152344, -0.009971619, -0.02911377, -0.019714355, 0.0027389526, -0.029647827, 0.010467529, -0.032073975, -0.0063819885, -0.017410278, -0.03805542, 0.016189575, 0.0057640076, 0.030166626, -0.044006348, 0.041046143, -0.018203735, -0.008132935, 0.050231934, 0.022109985, 0.035980225, 0.020050049, -0.010948181, -0.007671356, 0.034118652, 0.013450623, -0.037109375, -0.01247406, 0.026138306, 0.019699097, -0.023712158, 0.010429382, -0.049224854, -0.0013589859, 0.011749268, 0.0042533875, -0.008712769, 0.032592773, 0.01838684, -0.02482605, 0.008903503, -0.04248047, 0.043060303, 0.0060653687, -0.028762817, 0.003824234, 0.06488037, 0.003232956, -0.022262573, 0.03643799, -0.02709961, 0.03765869, -0.018997192, 0.013847351, -0.022659302, -0.0030994415, 0.04309082, -0.007926941, -0.0154800415, 0.015289307, 0.020339966, 0.0027313232, -0.014556885, -0.0019760132, 0.0047721863, 0.037353516, 0.013557434, -0.02381897, -0.003768921, -0.006931305, -0.004096985, -0.0025081635, -0.03765869, -0.036346436, -0.004676819, 6.8962574e-05, -0.04434204, -0.044403076, -0.005317688, 0.0076446533, 0.008094788, 0.00982666, 0.068603516, -0.064575195, 0.0552063, 0.036590576, -0.00078487396, -0.020187378, -0.024597168, -0.060302734, 0.06677246, 0.049438477, -0.090148926, -0.03074646, -0.046051025, 0.11187744, -0.012649536, 0.012924194, -0.0074920654, 0.005519867, -0.040252686, 0.0095825195, -0.0020313263, 0.0017700195, 0.042633057, 0.029418945, -0.05645752, -0.0009756088, 0.007331848, 0.002576828, 0.0206604, -0.004398346, 0.010597229, -0.050567627, 0.027069092, 0.002401352, 0.015930176, 0.050628662, 0.0028457642, 0.016983032, 0.023010254, 0.0335083, 0.024230957, -0.011024475, 0.021224976, 0.005554199, -0.05596924, -0.026748657, 0.0440979, -0.013313293, -0.008033752, 0.030853271, -0.047729492, 0.08380127, -0.014953613, 0.052978516, 0.04220581, -0.009109497, -0.01574707, -0.0070610046, -0.004180908, -0.0042533875, 0.011878967, -0.0041389465, 0.015556335, 0.06732178, 0.072265625, -0.0048561096, 0.040039062, 0.09063721, 0.066711426, -0.024719238, -0.039001465, 0.00554657, -0.009132385, -0.02507019, 0.022415161, -0.02734375, -0.038330078, -0.0068511963, 0.020690918, -0.035583496, 0.014923096, 0.060791016, 0.02772522, 0.0137786865, 0.051452637, -0.029922485, 0.01625061, -0.04333496, 0.030715942, -0.046173096, 0.024627686, -0.012908936, 0.0042533875, 0.04852295, -0.03765869, 0.04333496, 0.046081543, 0.040130615, 0.039886475, -0.035888672, 0.03817749, 0.006160736, -0.015487671, -0.006954193, -0.03604126, -0.045562744, -0.010139465, -0.04244995, 0.06738281, -0.021347046, -0.048706055, -0.012138367, -0.012275696, 0.023727417, -0.009010315, 0.02267456, -0.00012469292, 0.0390625, -0.021942139, 0.019226074, -0.016448975, 0.038757324, -0.04171753, -0.04031372, 0.02130127, 0.012924194, -0.06829834, 0.042053223, -0.0018815994, 0.021194458, -0.027557373, 0.008583069, 0.0335083, -0.0501709, 0.011817932, 0.002275467, -0.0072898865, -0.0017051697, 0.011009216, -0.003583908, -0.013061523, 0.002313614, 0.034820557, 0.018951416, -0.026412964, 0.028671265, 0.02508545, -0.020385742, 0.02734375, 0.017532349, 0.0546875, -0.005886078, 0.0017738342, -0.025421143, -0.029541016, 0.007972717, 0.005176544, -0.03366089, -0.011802673, -0.03137207, 0.022720337, -0.004180908, -0.015289307, -0.014373779, 0.0055274963, -0.0018234253, 0.027389526, -0.00894165, 0.06854248, 0.00010496378, -0.074035645, -0.022247314, -0.030532837, -0.027328491, 0.01953125, -0.048309326, -0.0038833618, 0.01876831, 0.010398865, -0.06335449, -0.0072784424, 0.027938843, -0.031173706, -0.009490967, -0.01713562, 0.01966858, -0.0051002502, -0.012840271, -0.036071777, -0.0044288635, -0.06793213, -0.021911621, 0.0057792664, -0.03213501, -0.021118164, 0.019805908, -0.01776123, -0.043395996, 0.02230835, 0.0022201538, 0.013786316, 0.011650085, -0.030014038, -0.07159424, -0.002840042, 0.0085372925, 0.016571045, 0.024169922, -0.01751709, -0.002008438, 0.006248474, 0.031280518, 0.05319214, -0.02911377, 0.044128418, 0.006298065, 0.032348633, 0.06112671, 0.02178955, 0.007949829, -0.040924072, 0.007865906, 0.033569336, -0.05355835, -0.00944519, 0.050109863, 0.0093307495, -0.013832092, 0.0036125183, -0.06665039, -0.026504517, -0.03778076, -0.012901306, -0.016052246, -0.03213501, 0.0021419525, -0.08532715, -0.020812988, -0.03756714, 0.013343811, 0.08331299, -0.031555176, 0.011016846, -0.049804688, 0.026901245, -0.013771057, 0.024246216, -0.0075416565, -0.0008802414, -0.04864502, 0.020874023, 0.074645996, -0.087646484, 0.0703125, 0.062561035, -0.04650879, -0.0013170242, 0.003501892, 0.049072266, -0.033813477, -0.0004544258, -0.0027275085, -0.04055786, -0.029663086, -0.0088272095, 0.003753662, 0.01109314, -0.004753113, -0.03652954, 0.015945435, -0.015182495, -0.035949707, -0.020568848, -0.036102295, 0.0055236816, 0.0038280487, -0.038970947, -0.028366089, -0.057678223, 0.006454468, -0.045288086, 0.02041626, 0.006248474, 0.017440796, -0.004463196, -0.0058517456, 0.039215088, 0.012229919, 0.04019165, -0.020217896, -0.015174866, -0.008377075, -0.024505615, 0.047607422, -0.0053634644, -0.004924774, 0.01020813, -0.020126343, 0.038330078, -0.00036931038, -0.015235901, 0.03652954, 0.011940002, -0.025115967, -0.022766113, 0.008888245, 0.03253174, -0.0061416626, -0.018814087, 0.038879395, 0.00881958, -0.072753906, 0.01939392, -0.06347656, 0.019989014, 0.0013122559, -0.005970001, 0.05291748, 0.050689697, -0.003112793, 0.041015625, 0.05770874, 5.942583e-05, 0.029144287, 0.026779175, -0.011787415, -0.019424438, 0.008079529, 0.020523071, 0.015266418, -0.016799927, -0.01914978, 0.018478394, 0.010040283, -0.019546509, -0.022384644, 0.0019235611, 0.022918701, -0.0231781, -0.0069007874, -0.034942627, 0.01966858, -0.0423584, -0.051452637, 0.019561768, -0.037078857, -0.016479492, 0.0050964355, 0.042266846, -0.045562744, -0.028152466, 0.034240723, -0.023284912, 0.043762207, 0.02746582, -0.026473999, 0.018188477, 0.017669678, -0.03717041, -0.024932861, 0.013626099, 0.017410278, 0.025390625, 0.006801605, -0.012107849, 0.0051956177, -0.022872925, -0.014259338, 0.062042236, 0.013648987, -0.07904053, -0.024108887, 0.000936985, 0.008720398, -0.03314209, 0.0030288696, -0.016586304, 0.009887695, -0.0037555695, -0.013999939, -0.015617371, -0.00472641, 7.075071e-05, -0.01864624, -0.014282227, -0.020858765, 0.011802673, -0.015220642, -0.0034370422, -0.030014038, 0.027877808, 0.011932373, 0.0066604614, -0.063964844, 0.020309448, -0.08618164, -0.015586853, 0.052459717, 0.0074310303, -0.035736084, -0.02041626, -0.02444458, 0.0052604675, 0.087402344, -0.0035896301, 0.02772522, -0.029724121, -0.033813477, 0.0014781952, 0.022644043, 0.061645508, 0.01789856, 0.020629883, -0.048065186, -0.012268066, -0.09899902, 0.01751709, 0.059143066, -0.044006348, -0.068725586, -0.029083252, 0.04953003, 0.041534424, 0.014190674, -0.0034008026, 0.039886475, 0.010040283, -0.008094788, -0.09246826, -0.04348755, 0.000104665756, -0.013999939, 0.0075302124, -0.0015392303, -0.0025520325, 0.0067253113, 0.06390381, 0.0074272156, -0.0067863464, 0.015396118, 0.0053977966, -0.022079468, 0.001531601, -0.03302002, 0.015777588, -0.04446411, 0.00062561035, -0.01889038, 0.009811401, -0.0041122437, -0.0074882507, -0.010673523, -0.013504028, -0.0015010834, -0.03491211, 0.03466797, 0.018539429, -0.058380127, -0.03555298, -0.024993896, 0.022644043, -0.033691406, 0.00012022257, -0.0063438416, -0.013191223, 0.008857727, -0.013870239, 0.004673004, -0.02961731, -0.0028076172, 0.004917145, -0.01838684, 0.017715454, -0.037628174, 0.026397705, 0.019210815, -0.01777649, -0.0018005371, -0.01940918, -0.0154953, -0.018203735, -0.044067383, 0.006996155, -0.022201538, 0.03616333, 0.008834839, 0.006011963, -0.007701874, -0.0011119843, 0.004497528, -0.025238037, -0.020324707, 0.02331543, -0.027557373, -0.0011291504, 0.037109375, 0.004322052, -0.03186035, 0.036315918, -0.026397705, 0.046569824, -0.003572464, -0.027359009, -0.012069702, 0.015266418, 0.007843018, -0.061920166, 0.10418701, 0.00198555, -0.014724731, -0.06500244, 0.006454468, -0.0060691833, 0.0068359375, 0.013298035, -0.031097412, 0.032196045, -0.032073975, -0.022750854, 0.03567505, -0.018707275, 0.0030117035, 0.0051231384, 0.0058174133, -0.047668457, 0.013145447, 0.03540039, -0.0032024384, 0.005104065, 0.019210815, -0.068603516, 0.016540527, 0.025604248, -0.04309082, 0.0066604614, -0.021133423, 0.010307312, -0.011764526, -0.022323608, 0.018630981, 0.01927185, -0.012123108, -0.0368042, 0.023422241, 0.017700195, -0.039367676, -0.040405273, -0.056732178, 0.005016327, -0.02796936, 0.056396484, -0.0095825195, -0.003030777, 0.006538391, 0.02696228, 0.02758789, 0.009864807, -0.04336548, 0.029205322, -0.0045394897, 0.0034809113, 0.0045394897, -0.013015747, 0.03741455, -0.019104004, -0.021942139, -0.03866577, 0.02973938, -0.003440857, -0.008972168, 0.09991455, 0.04623413, 0.01574707, 0.0284729, 0.015449524, -0.042297363, 0.007068634, 0.0020694733, -0.059020996, -0.09857178, -0.05114746, -0.045684814, 0.0009188652, -0.008857727, -2.8312206e-05, 0.03173828, -0.0039138794, 0.015296936, -0.033721924, -0.011894226, -0.0084991455, -0.0077819824, 0.009353638, 0.0035037994, 0.011985779, -0.029663086, 0.021392822, -0.08502197, -0.07269287, 0.021331787, 0.026016235, 0.02470398, 0.024978638, 0.013450623, -0.0037193298, -0.0569458, 0.036621094, -0.015022278, 0.0040740967, -0.0032463074, 0.037017822, -0.0101623535, 0.053497314, -0.0435791, -0.014343262, -0.028366089, 0.045440674, 0.009292603, 0.024597168, -0.03540039, -0.013633728, -0.0027389526, 0.039642334, -0.043029785, 0.03302002, 0.0022411346, -0.0038661957, -0.035858154, -0.022338867, 0.03414917, -0.04937744, -0.0021629333, -0.051757812, 0.008041382, -0.00034570694, -0.007255554, -0.006626129, 0.0062026978, 0.021377563, -0.03894043, 0.01473999, -0.009757996, -0.041015625, 0.022628784, -0.012298584, 0.0368042, -0.03164673, 0.022598267, -0.008331299, 0.005432129, -0.005908966, 0.013328552, 0.039489746, 0.019088745, -0.004802704, -0.028625488, 0.010101318, 0.034210205, -0.03756714, -0.008888245, 0.04840088, 0.028549194, 0.0020217896, -0.07458496, -0.033172607, -0.04083252, 0.017166138, -0.0071411133, 0.049743652, -0.0007863045, 0.016738892, -0.04849243, -0.0070343018, -0.05218506, -0.056396484, 0.011695862, -0.039367676, -0.021835327, 0.023147583, -0.051818848, 0.008758545, 0.0362854, -0.02281189, 0.021820068, 0.004020691, 0.012275696, -0.02748108, -0.025177002, -0.045013428, -0.037261963, -0.013801575, -0.011138916, 0.006538391, 0.0055274963, 0.00844574, 0.00868988, -0.008384705, -0.0030536652, 0.005672455, -0.0071525574, 0.004917145, 0.01751709, -0.03253174, -0.038024902, -0.047790527, -0.011810303, -0.007537842, 0.0093688965, 0.023727417, 0.0030231476, 0.07098389, 0.021972656, 0.0019025803, 0.042785645, -0.03353882, 0.001086235, 0.012321472, 0.0107421875, -0.010925293, -0.008766174, -0.0076026917, -0.037261963, -0.022857666, -0.007621765, -0.021514893, -0.026306152, 0.02230835, -0.0021533966, 0.03768921, -0.013702393, -0.0005030632, -0.021148682, -0.03439331, 0.020721436, 0.0062332153, 0.015159607, -0.037109375, -0.0031738281, -0.020019531, -0.032470703, -0.044311523, 0.05166626, -0.024749756, 0.0063667297, 0.016098022, -0.020202637, 0.004501343, -0.015716553, 0.024353027, 0.031097412, 0.014312744, -0.008934021, 0.03793335, -0.022781372, -0.03918457, -0.04736328, 0.01977539, -0.06188965, -0.016662598, -0.02003479, 0.011123657, -0.001411438, -0.0015039444, 0.054992676, 0.116882324, 0.015533447, 0.024963379, 8.261204e-05, -0.030044556, -0.006137848, -0.0005760193, 0.00484848, -0.008216858, -0.035736084, 0.03829956, 0.006290436, 0.03552246, 0.017105103, 0.01007843, -0.019180298, 0.019439697, -0.00042915344, -0.01184082, 0.01966858, -0.010772705, 0.029678345, 0.011734009, -0.051452637, 0.006111145, -0.017623901, 0.028121948, 0.017654419, 0.017349243, 0.04611206, -0.010971069, -0.051116943, -0.031585693, -0.023284912, 0.02709961, 0.034362793, 0.0070991516, -0.031341553, -0.0011491776, -0.0008354187, -0.0021133423, -0.012435913, -0.02218628, 0.0039253235, 0.01586914, 0.030014038, -0.00712204, -0.012672424, 0.0040740967, -0.06085205, -0.032684326, 0.009986877, 0.012580872, -0.02166748, -0.019622803, -0.015151978, 0.019729614, -0.0048713684, -0.030227661, -0.031066895, -0.0037193298, 0.015182495, 0.015357971, 0.006504059, 0.019073486, 0.018676758, 0.0154953, -0.04171753, 0.00422287, 0.03930664, -0.020431519, -0.075927734, 0.062469482, 0.025894165, 0.053863525, 0.0023536682, -0.06768799, -0.055541992, 0.06530762, 0.03878784, -0.04574585, 0.068237305, -0.048431396, -0.0015039444, 0.03149414, -0.041412354, -0.06951904, 0.037597656, 0.08166504, -0.006690979, 0.029708862]}, "B00D3P0QAI": {"id": "B00D3P0QAI", "original": "Brand: Thermo Tiki\nName: Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel\nDescription: \nFeatures: \n", "metadata": {"Name": "Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel", "Brand": "Thermo Tiki", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.039520264, -0.00080013275, -0.06964111, -0.022079468, 0.0021476746, -0.024642944, -0.0039520264, 0.04660034, -0.043426514, 0.02810669, 0.022140503, 0.024734497, -0.0031833649, -0.04647827, 0.030319214, -0.028564453, 0.026062012, 0.0012149811, 0.024627686, -0.0069236755, -0.012161255, 0.00052785873, 0.0357666, -0.0005917549, 0.041809082, -0.05621338, 0.04071045, 0.013893127, 0.03375244, -0.0016098022, 0.03250122, -0.017303467, 0.008659363, 0.011291504, -0.020904541, -0.055389404, 0.019485474, -0.021392822, -0.024002075, 0.013122559, 0.015960693, 0.0048980713, -0.06903076, -0.03564453, -0.068603516, -0.028335571, 0.02017212, 0.04724121, 0.005710602, -0.021514893, 0.005405426, -0.017913818, 0.026947021, 0.016967773, -0.03643799, -0.031021118, 0.03338623, -0.008613586, 0.025222778, -0.076293945, -0.028457642, -0.00028824806, 0.054016113, 0.044403076, -0.056549072, 0.032409668, 0.070007324, -0.025375366, 0.036834717, -0.07122803, -0.038635254, 0.051330566, 0.019989014, 0.008468628, 0.021499634, -0.053955078, 0.036010742, 0.033081055, 0.017349243, 0.008804321, 0.0054626465, -0.005859375, -0.014915466, -0.044830322, 0.023986816, -0.009635925, -0.012130737, -0.010124207, -0.028320312, -0.03652954, -0.024963379, -0.038970947, -0.053955078, 0.033569336, 0.0016813278, 0.011253357, -0.03527832, -0.06903076, 0.020355225, 0.012191772, 0.008926392, -0.02331543, -0.004196167, 0.002981186, -0.025482178, 0.038208008, 0.038848877, 0.017150879, -0.002336502, -0.0039711, -0.029434204, 0.022750854, 0.013938904, 0.018600464, -0.053649902, -0.044128418, -0.0345459, -0.006969452, 0.002357483, -0.015182495, -0.009788513, 0.0126953125, -0.0055770874, 0.009559631, -0.003774643, -0.0017738342, 0.0121154785, -0.006980896, -0.04815674, 0.023452759, -0.020111084, 0.022018433, 0.0234375, 0.019729614, -0.0107803345, -0.008857727, -0.001121521, -0.020767212, 0.0020751953, -0.047332764, 0.06994629, -0.0026893616, -0.012107849, 0.03265381, -0.020874023, 0.03930664, 0.018936157, -0.018173218, -0.0023517609, -0.041625977, -0.04537964, -0.012298584, 0.010734558, 0.030090332, 0.035583496, 0.030319214, 0.06506348, -0.014770508, -0.036865234, -0.032165527, 0.015991211, -0.013267517, -0.03692627, 0.026641846, -0.022735596, 0.014976501, 0.045074463, 0.005859375, 0.035583496, 0.09240723, 0.0309906, -0.015716553, 0.021591187, 0.027450562, -0.022964478, -0.015640259, -0.047821045, 0.02960205, 0.062438965, -0.09509277, -0.07092285, -0.058288574, 0.0925293, -0.021728516, -0.017959595, -0.02658081, 0.030303955, 0.019256592, 0.013336182, 0.030715942, 0.0236969, 0.0070648193, -0.009498596, -0.0259552, 0.005718231, 0.002298355, -0.04562378, 0.0033016205, -0.012763977, 0.017074585, -0.018035889, 0.024627686, -0.03201294, 0.043060303, 0.0016946793, -0.01146698, 0.014595032, 0.0018939972, 0.017944336, 0.012069702, 0.013053894, 0.04019165, -0.0385437, -0.0637207, -0.028640747, 0.04425049, -0.0046424866, -0.026779175, 0.0038871765, -0.025009155, 0.031463623, 0.011947632, -0.0065574646, 0.0064048767, 0.022567749, -0.032409668, -0.0042915344, -0.0093688965, 0.034301758, 0.005634308, -0.0033054352, 0.026000977, 0.0017433167, 0.026412964, 0.0029182434, 0.029159546, 0.08428955, 0.03665161, 0.020965576, -0.027832031, -0.024246216, -0.0131073, -0.035705566, 0.078430176, 0.012969971, 0.050750732, 0.012336731, 0.038269043, -0.013061523, 0.03579712, 0.03756714, 0.0181427, 0.0042648315, 0.040405273, -0.008987427, 0.016708374, 0.0151901245, -0.01374054, -0.010932922, 0.019332886, -0.000562191, 0.05645752, -0.011627197, 0.020050049, 0.07287598, -0.011009216, 0.036346436, 0.02178955, -0.014587402, 0.009017944, 0.0064048767, -0.024978638, -0.008804321, 0.052581787, 0.048431396, -0.021835327, -0.040863037, -0.008056641, -0.0064468384, 0.02607727, 0.01259613, 0.01637268, -0.013145447, -0.002653122, 0.031158447, 0.019210815, -0.00957489, 0.011566162, -0.008598328, -0.007381439, 0.010299683, 0.03515625, 0.004852295, 0.004524231, 0.036743164, -0.007118225, 0.036224365, 0.053253174, 0.01424408, -0.021453857, -0.058563232, 0.0013599396, -0.03793335, -0.020965576, 0.0017623901, 0.032592773, 0.05419922, -0.039489746, -0.008079529, 0.032714844, -0.029785156, 0.01701355, 0.033416748, -0.002313614, 0.07269287, 0.027175903, 0.03074646, 0.05529785, 0.018310547, -0.029541016, -0.017471313, 0.0033855438, -0.004714966, -0.026473999, -0.0006914139, 0.011024475, -0.05029297, -0.00023078918, -0.007575989, 0.023086548, 0.015541077, -0.0115737915, -0.021224976, 0.002691269, -0.00969696, 0.020217896, 0.013717651, 0.02897644, 0.02029419, 0.003396988, 0.060821533, 0.0019083023, 0.0044517517, 0.002161026, -0.032409668, 0.011756897, 0.031234741, -0.0068130493, -0.017349243, 0.031555176, -0.011726379, -0.00970459, 0.0067100525, 0.012016296, 0.01663208, 0.014915466, -0.026641846, -0.005630493, 0.014022827, -0.048431396, -0.023345947, -0.0042381287, -0.025604248, 0.028686523, 0.042388916, -0.029907227, -0.04916382, 0.034576416, -0.03439331, 0.01525116, -0.002729416, -0.008560181, -0.043151855, -0.038238525, -0.061462402, 0.025680542, 0.006931305, -0.044921875, 0.006095886, -0.013244629, 0.00642395, 0.012161255, 0.004753113, 0.003080368, 0.040008545, -0.017990112, -0.01826477, 0.054260254, 0.0008134842, 0.0112838745, -0.02027893, 0.0015974045, 0.012794495, 0.0054244995, 0.022216797, -0.025894165, -0.014862061, 0.06341553, -0.09552002, 0.025268555, -0.10205078, 0.030258179, -0.011039734, -0.014389038, 0.030853271, -0.03677368, 0.0014286041, -0.0680542, -0.0054626465, 0.035461426, -0.042175293, -0.006855011, -0.045196533, -0.015220642, 0.020339966, -0.010177612, 0.033569336, -0.010269165, 0.01751709, -0.018173218, 0.01953125, -0.040802002, 0.018234253, 0.005004883, -0.046295166, -0.03479004, -0.010673523, 0.017745972, -0.028335571, 0.067871094, -0.007171631, -0.00066423416, -0.014221191, -0.0064582825, -0.037109375, 0.035339355, 0.028411865, 0.020187378, 0.053009033, -0.023468018, 0.008140564, -0.015213013, 0.028076172, 0.0041503906, 0.02809143, -0.0020122528, 0.009880066, 0.028198242, 0.043518066, -0.05517578, 0.022369385, -0.015159607, 0.06137085, 0.008369446, -0.014793396, 0.046875, -0.008224487, 0.045562744, 0.07208252, -0.019729614, -0.00945282, -0.05166626, 0.019424438, 0.043670654, -0.005329132, -0.03427124, 0.028396606, 0.01737976, 0.0009636879, -0.021240234, -0.016311646, 0.041229248, -0.03010559, -0.024658203, 0.010795593, -0.021194458, 0.023666382, 0.039611816, -0.0077171326, -0.028839111, -0.05831909, 0.0211792, -0.07165527, 0.059265137, 0.045959473, -0.012931824, 0.056121826, 0.033813477, 0.0124053955, 0.040100098, 0.046905518, -0.014335632, 0.030319214, 0.020889282, -0.016036987, -0.00774765, -0.009468079, 0.049102783, 0.027267456, -0.0012397766, -0.014282227, 0.004047394, 0.037902832, -0.021881104, -0.032958984, 0.014762878, 0.021469116, 0.006286621, 0.00047016144, -0.00024461746, -0.019378662, -0.020874023, 0.027145386, 0.016281128, -0.024261475, -0.054534912, 0.028640747, -0.03591919, -0.030548096, 0.031585693, -0.0040779114, 0.032714844, -0.028015137, 0.021347046, 0.03326416, -0.001291275, -0.0395813, 0.033935547, -0.010536194, -0.003068924, -0.007633209, 0.024475098, 0.0284729, 0.014923096, 0.0037841797, -0.010147095, 0.002702713, -0.01411438, -0.056884766, -0.021774292, 0.0018463135, -0.0044174194, 0.012496948, -0.019195557, 0.005355835, -0.06359863, -0.03564453, -0.010169983, -0.0068206787, -0.009681702, -0.004798889, -0.020874023, -0.072265625, -0.03338623, -0.0087890625, -0.025802612, -0.03753662, 0.04269409, -0.00422287, -0.040222168, 0.02355957, 0.0058059692, -0.05065918, -0.0064964294, -0.04901123, -0.01448822, 0.032836914, -0.0024986267, -0.010032654, -0.019958496, -0.04055786, -0.023712158, 0.062072754, 0.043029785, -0.021774292, -0.018722534, -0.004524231, -0.010360718, 0.05065918, 0.04675293, -0.03277588, 0.019470215, -0.0017023087, -0.006702423, -0.048034668, 0.008682251, 0.048431396, -0.02293396, -0.01600647, -0.02545166, 0.019546509, -0.0035171509, 0.01335907, -0.04244995, -0.0027580261, 0.0026245117, -0.012138367, -0.046020508, -0.0440979, -0.00026774406, -0.02104187, 0.0038166046, 0.00090408325, -0.010154724, 0.032684326, 0.024017334, -0.03314209, 0.026855469, -0.033447266, 0.012672424, 0.03793335, 0.044525146, -0.015129089, -0.010665894, -0.033691406, 0.019302368, -0.025863647, 0.0063819885, 0.045196533, -0.0045928955, 0.0101623535, 0.028656006, 0.00015699863, -0.013633728, -0.025619507, 0.022018433, -0.029174805, 0.014129639, -0.021942139, -0.012542725, 0.024108887, -0.01576233, -0.011550903, 0.010665894, 0.03540039, -0.0050735474, -0.022872925, -0.005302429, -0.020568848, -0.025665283, 0.0015563965, 0.056671143, 0.037597656, -0.086242676, 0.04067993, -0.056030273, -0.060577393, 0.0010347366, -0.037353516, -0.010299683, -0.008071899, 0.0027008057, 0.03994751, -0.02532959, -0.02053833, -0.013343811, -0.046203613, 0.017288208, 0.01876831, -0.005756378, -0.046203613, 0.04345703, 0.0038700104, 0.012390137, 0.03765869, 0.0016851425, 0.035888672, 0.022460938, -0.0010299683, 0.011909485, -0.0025482178, -0.048034668, 0.03543091, 0.010231018, 0.00919342, -0.023361206, 0.0385437, -0.009254456, -0.002199173, -0.04397583, 0.017944336, 0.021362305, 0.008430481, -0.04336548, -0.017196655, 0.05102539, -0.029434204, -0.011199951, 0.014816284, 0.065979004, -0.014701843, 0.0005931854, 0.02709961, -0.017715454, -0.029678345, 0.021057129, -0.023010254, -0.013008118, 0.021072388, -0.052734375, -0.006504059, 0.016937256, -0.014678955, -0.009262085, 0.0012311935, 0.005092621, -0.070251465, 0.023803711, 0.0440979, 0.015266418, 0.037322998, -0.010444641, 0.03829956, -0.0075645447, -0.01411438, -0.0317688, 0.017349243, 0.040863037, -0.012313843, 0.026245117, -0.02178955, 0.013870239, 0.013763428, -0.0134887695, 0.009353638, 0.020767212, -0.050811768, -0.008255005, 0.017196655, 0.03668213, -0.030029297, -0.014167786, 0.064086914, -0.04824829, -0.019943237, -0.055541992, 0.024246216, 0.016525269, -0.04776001, 0.07672119, 0.021072388, 0.0071868896, 0.016708374, -0.03527832, -0.032836914, 0.04751587, 0.026046753, -0.08880615, -0.0042762756, -0.0010700226, -0.021514893, 0.0069465637, 0.00957489, -0.02229309, 0.024856567, -0.05267334, -0.05987549, -0.030975342, 0.00957489, -0.0033054352, -0.008384705, 0.00052022934, -0.02406311, 0.028808594, -0.060943604, 0.019714355, -0.04916382, -0.06112671, -0.02670288, 0.034088135, 0.07476807, 0.011276245, 0.027023315, 0.060821533, -0.08886719, 0.009277344, 0.02558899, -0.04309082, 0.014694214, 0.06021118, 0.023590088, -0.018707275, -0.08477783, -0.030410767, -0.017974854, 0.041534424, 0.019592285, 0.018203735, -0.024169922, -0.0146865845, 0.025848389, 0.015068054, 0.008514404, -0.00198555, 0.022369385, 0.023773193, -0.016403198, -0.004146576, 0.010505676, -0.020523071, 0.047943115, -0.053497314, 0.015701294, -0.0066566467, -0.03503418, 0.009529114, -0.07635498, 0.0869751, 0.006958008, 0.02319336, 0.003929138, 0.019927979, -0.0040245056, -0.0032978058, -0.04296875, 0.012428284, -0.023422241, -0.002439499, -0.01914978, -0.015640259, 0.008514404, 0.028839111, -0.018173218, 0.020980835, -0.0003709793, 0.0039482117, -0.01537323, -0.05105591, 0.0597229, -0.047943115, -0.035095215, 0.0060768127, -0.032684326, -0.0074157715, 0.020614624, 0.00258255, -0.007095337, -0.007587433, 0.016921997, -0.0038013458, -0.007713318, 0.016815186, -0.02671814, -0.0044670105, 0.004650116, -0.013267517, -6.908178e-05, -0.010421753, -0.098083496, 0.027938843, 0.031799316, 0.020950317, 0.055847168, -0.024093628, 0.013282776, -0.03074646, 0.048095703, -0.02909851, -0.03366089, 0.0158844, 0.0042762756, -0.009063721, 0.039733887, 0.041229248, -0.011291504, -0.013015747, -0.070129395, 0.029251099, -0.055358887, 0.011238098, 0.016983032, 0.05834961, 0.0013866425, -0.005355835, -0.007724762, 0.01637268, 0.022018433, -0.014289856, 0.021102905, 0.025848389, 0.046783447, -0.033416748, 0.052703857, -0.006072998, -0.0046691895, -0.0066833496, 0.029083252, -0.0184021, 0.026733398, -0.008110046, -0.017852783, -0.0063972473, 0.0072784424, 0.008262634, 0.031021118, -0.015777588, -0.02104187, 0.009735107, -0.036621094, 0.03756714, -0.051208496, -0.013336182, 0.015174866, -0.041992188, 0.0039482117, 0.025268555, -0.0030956268, -0.061035156, 0.00034689903, -0.026489258, -0.013656616, -0.013870239, -0.027252197, -0.002998352, -0.0022010803, -0.0129852295, -0.044158936, -0.009902954, 0.00982666, 0.026733398, 0.008163452, 0.04055786, -0.02331543, -0.055419922, -0.061584473, 0.034729004, -0.08630371, -0.018173218, 0.036895752, -0.006839752, 0.005355835, 0.0034770966, -0.009803772, 0.084350586, 0.017059326, -0.0012922287, 0.04232788, -0.03137207, -0.030517578, 0.032684326, 0.016143799, -0.004673004, -0.018493652, 0.0039024353, 0.022964478, 0.053466797, 0.025650024, 0.022109985, -0.052001953, -0.01776123, -0.04925537, 0.032958984, 0.001745224, -0.013710022, 0.008613586, -0.0079574585, -0.08477783, -0.0040245056, -0.014526367, 0.056732178, 0.02810669, 0.004699707, 0.030151367, -0.020858765, -0.04321289, -0.042388916, -0.028076172, 0.0385437, 0.051208496, -0.016845703, 0.028823853, 0.024169922, -0.02885437, -0.0066490173, -0.02444458, 0.036254883, 0.01461792, -0.036987305, -0.011459351, 0.00724411, -0.03277588, 0.030776978, 0.00869751, 0.035125732, -0.026168823, 0.05255127, -0.039978027, -0.01637268, -0.02218628, 0.031341553, -0.003932953, -0.05697632, -0.024169922, -0.025375366, 0.028289795, 0.038238525, 0.0061683655, -0.03161621, -0.0066833496, 0.0040016174, -0.033569336, 0.022659302, -0.0021133423, 0.015457153, 0.0035190582, 0.03451538, 0.012832642, 0.091796875, 0.018203735, -0.06817627, -0.043762207, 0.0690918, 0.019500732, -0.05166626, 0.027023315, -0.024276733, 0.013923645, 0.033569336, -0.039978027, 0.00957489, -0.030883789, -0.038513184, -0.010169983, -0.019729614]}, "B00ED9WMNC": {"id": "B00ED9WMNC", "original": "Brand: Camco\nName: Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black)\nDescription: \nFeatures: Replacement cap for new style RV propane tank covers\nFunctional design for easy access to both propane tanks and changeover regulator\nIncludes attachment hardware\nMade of heavy duty, UV stabilized polypropylene\nBlack\n", "metadata": {"Name": "Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black)", "Brand": "Camco", "Description": "", "Features": "Replacement cap for new style RV propane tank covers\nFunctional design for easy access to both propane tanks and changeover regulator\nIncludes attachment hardware\nMade of heavy duty, UV stabilized polypropylene\nBlack", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022964478, -0.04989624, -0.012062073, -0.033233643, -0.05908203, 0.00995636, -0.0579834, 0.03869629, -0.008392334, -0.016571045, 0.0132751465, 0.014083862, -0.052886963, -0.035003662, 0.031143188, -0.026672363, 0.024505615, 0.0211792, 0.027404785, -0.022888184, -0.009643555, 0.0036334991, 0.007858276, 0.04397583, 0.012062073, 0.011199951, 0.019943237, 0.010787964, -0.0038414001, -0.008552551, 0.022781372, -0.009185791, 0.019485474, 0.018585205, 0.013053894, 0.062164307, 0.070495605, -0.0027446747, 0.021957397, 0.020462036, -0.0024738312, 0.008911133, 0.0647583, -0.0071144104, 0.020599365, -0.04660034, 0.019577026, -0.055389404, 0.016937256, 0.01763916, -0.013259888, 0.01083374, -0.028930664, 0.018310547, -0.008728027, 0.010360718, -0.016036987, 0.021743774, 0.017059326, 0.04888916, 0.012168884, 0.027130127, -0.009613037, -0.02607727, -0.03125, 0.01134491, 0.100097656, -0.012672424, -0.017959595, -0.04232788, 0.0015792847, 0.033721924, -0.0042686462, -0.016235352, -0.037994385, 0.011398315, 0.025314331, -0.017028809, 0.00020194054, 0.0061950684, -0.0022716522, -0.004688263, 0.058532715, -0.03805542, -0.019699097, -0.047027588, -0.016067505, 0.018554688, -0.025360107, -0.017745972, -0.020751953, -0.02482605, -0.035858154, 0.029159546, -0.0024814606, 0.014663696, -0.041809082, -0.028839111, 0.04067993, 0.025848389, -0.016342163, -0.020233154, 0.008636475, -0.032714844, 0.020553589, 0.01701355, -0.0014896393, -0.08093262, 0.012672424, -0.005935669, -0.0357666, 0.0637207, 0.00053453445, -0.005443573, 0.0034999847, 0.016418457, -0.036499023, 0.03955078, -0.0119018555, 0.019241333, -0.022460938, -0.02355957, 0.029174805, -0.028915405, 0.04196167, 0.009109497, -0.050231934, 0.027526855, -0.03942871, 0.015151978, -0.03237915, -0.006340027, 0.030548096, 0.079711914, 0.046966553, -0.005710602, 0.038238525, -0.03237915, 0.007545471, 0.014137268, -0.0017604828, -0.029754639, 0.012275696, 0.004627228, -0.010231018, 0.054656982, 0.008743286, -0.021453857, -0.014717102, -0.04837036, -0.02142334, -0.061920166, 0.025939941, 0.0073394775, 0.014984131, 0.006210327, 0.04385376, -0.0075149536, -0.043151855, -0.03366089, -0.009155273, -0.044006348, -0.037261963, 0.07354736, 0.025497437, 0.080078125, 0.051818848, -0.0023994446, 0.019378662, 0.046417236, -0.021362305, 0.0032405853, 0.045410156, 0.006134033, -0.022018433, 0.0045776367, -0.068237305, 0.06390381, 0.08758545, -0.09899902, -0.03665161, -0.04373169, 0.13439941, -0.0059165955, -0.033111572, -0.015052795, 0.034118652, 0.05609131, -0.01134491, 0.0033340454, 0.034576416, 0.011245728, -0.010643005, -0.019805908, -0.002111435, 0.0016317368, 0.028762817, 0.024597168, -0.00044345856, -0.008293152, -0.046173096, -0.005760193, 0.008377075, 0.02468872, 0.03479004, -0.039367676, 0.010215759, -0.0054893494, -0.060333252, -0.010383606, 0.034057617, 0.013160706, -0.012458801, -0.019363403, 0.009414673, 0.045837402, -0.001964569, -0.02986145, -0.009880066, -0.0043296814, 0.03086853, 0.0065345764, 0.020935059, 0.05606079, -0.0105896, 0.0061035156, -0.02407837, -0.0031929016, -0.004096985, -0.010513306, 0.05847168, 0.02104187, 0.009811401, 0.018218994, -0.031066895, 0.01600647, 0.008285522, 0.00067043304, -0.010871887, 0.012641907, 0.033721924, -0.026397705, 0.0036792755, 0.0020313263, 0.013397217, 0.0033245087, 0.029830933, -0.027038574, -0.021621704, -0.009765625, 0.0826416, -0.0362854, 0.005016327, -0.00730896, -0.04309082, 0.015991211, -0.03555298, 0.03262329, -0.024642944, 0.030563354, -0.031143188, 0.013465881, 0.06945801, -0.03778076, 0.042297363, 0.010009766, 0.05407715, 0.048461914, -0.018203735, -0.011161804, -0.0010385513, 0.04284668, 0.000685215, 0.05987549, -0.01360321, 0.035125732, -0.010238647, -0.023468018, 0.00932312, 0.03567505, 0.030654907, 0.017318726, 0.013618469, -0.018310547, 0.06713867, 0.021591187, -0.009864807, -0.007587433, -0.029846191, 0.00434494, 0.02961731, -0.00957489, -0.010932922, -0.010002136, 0.018692017, -0.017822266, 0.004421234, -0.023712158, 0.017623901, 0.00894928, -0.03277588, 0.060424805, 0.02835083, -0.00699234, -0.0051345825, 0.033111572, -0.0008354187, 0.009971619, 0.0118255615, -0.016113281, -0.004257202, 0.012413025, 0.012374878, 0.02027893, 0.024002075, 0.00484848, 0.019165039, 0.047729492, 0.056732178, 0.05731201, -0.0036201477, 0.05227661, -0.018615723, 0.005065918, 0.03729248, 0.0034885406, -0.022232056, -0.010253906, -0.008293152, -0.03717041, 0.02420044, -0.04135132, -0.017303467, 0.0077667236, 0.019470215, -0.00381279, -0.0019550323, 0.05709839, 0.014274597, -0.030914307, 0.03668213, -0.050048828, -0.0063972473, 0.04925537, 0.03060913, -0.03878784, 0.030380249, 0.0009880066, 0.0287323, 0.047027588, -0.03982544, -0.0046844482, 0.0038757324, -0.017974854, 0.011672974, 0.005142212, -0.02407837, -0.023208618, 0.01701355, -0.060913086, -0.025268555, -0.0028457642, -0.049072266, 0.014312744, 0.0143585205, 0.0023517609, -0.022216797, 0.022735596, 0.017791748, -0.0041656494, -0.027572632, -0.024978638, -0.036315918, 0.00957489, 0.051971436, 0.02973938, -0.0071372986, -0.068725586, 0.046875, -0.008506775, -0.031311035, -0.004146576, 0.0031852722, 0.04827881, 0.0043144226, 0.028457642, 0.034698486, 0.06347656, -0.012123108, -0.039093018, -0.0077590942, 0.06719971, -0.03527832, 0.0034809113, -0.03201294, -0.04083252, 0.0317688, 0.012672424, -0.062438965, -0.0015487671, -0.11273193, -0.004043579, -0.00041389465, -0.057403564, 0.00730896, -0.056610107, -0.061950684, -0.059020996, 0.030136108, 0.030059814, -0.013061523, -0.0039901733, -0.030319214, -0.0046157837, -0.041412354, 0.011909485, -0.012557983, 0.0047302246, -0.07647705, 0.027328491, 0.07110596, -0.04119873, -0.019943237, -0.0022697449, -0.034729004, 0.009513855, -0.010276794, 0.026107788, -0.0034999847, -0.004219055, -0.020645142, -0.0154953, -0.0059547424, -0.03012085, -0.031402588, -0.022064209, -0.025558472, -0.0070152283, -0.008735657, -0.021484375, -0.018096924, -0.0019187927, 0.012840271, 0.024017334, 0.0060310364, -0.020126343, -0.0129470825, -0.013679504, 0.008987427, -0.004261017, -0.01687622, -0.012329102, 0.0068473816, 0.020507812, -0.03225708, 0.09008789, 0.030593872, 0.034942627, 0.017593384, -0.045806885, -0.05795288, -0.04486084, 0.038604736, -0.013160706, -0.007709503, -0.058746338, 0.036865234, 0.038513184, 0.031951904, -0.03656006, 0.01423645, 0.06161499, 0.0029945374, 0.002773285, -0.008605957, 0.015174866, 0.020324707, -0.010383606, 0.031021118, 0.0018835068, -0.09460449, 0.04067993, -0.021911621, 0.04876709, 0.026916504, -0.01525116, 0.0869751, 0.028808594, -0.0026550293, 0.004837036, 0.040130615, -0.0031108856, 0.030151367, 0.00944519, -0.00983429, -0.03515625, 0.0022602081, -0.028793335, -0.03390503, -0.036193848, -0.027999878, 0.010040283, 0.009376526, 0.009933472, 0.0026760101, 0.021530151, 0.022247314, -0.011566162, -0.0034675598, 0.010925293, -0.005176544, -0.032470703, 0.0029964447, 0.02432251, -0.020263672, -0.020126343, 0.007797241, 0.014038086, -0.029006958, -0.015106201, -0.018096924, -0.018997192, 0.005756378, 0.033081055, 0.001004219, 0.01701355, -0.020950317, 0.012680054, -0.040924072, -0.010017395, 0.0075569153, 0.031036377, -0.006072998, -0.021759033, 0.035339355, 0.0047836304, 0.013961792, -0.009613037, -0.0018978119, -0.03970337, 0.024749756, 0.02458191, -0.013710022, -0.03451538, -0.008674622, -0.049682617, -0.03717041, -0.026397705, -0.028121948, -0.044189453, 0.0014724731, 0.022064209, -0.026916504, -0.03237915, -0.03942871, 0.022598267, -0.01663208, 0.0054855347, -0.005832672, -0.015586853, 0.004032135, 0.051818848, -0.05682373, -0.024383545, -0.05960083, 0.0013952255, 0.004917145, -0.007926941, 0.019607544, -0.013961792, 0.009185791, -0.019744873, -0.0018997192, 0.014587402, -0.026855469, -0.00052690506, -0.015945435, 0.010719299, 0.0068893433, 0.04055786, -0.008850098, 0.04373169, -0.011238098, 0.04849243, -0.06726074, -0.018569946, 0.048065186, -0.025390625, -0.060668945, -0.038330078, 0.067993164, -0.002155304, -0.010345459, 0.015571594, 0.010620117, -0.0005545616, 0.03994751, -0.027786255, 0.006702423, 0.010391235, -0.02659607, -0.0072631836, 0.002866745, -0.022567749, 0.0087890625, -0.019378662, -0.019378662, -0.04623413, 0.013290405, 0.07446289, -0.020568848, 0.0017194748, -0.007106781, -0.015930176, 0.03086853, -0.0063323975, -0.06298828, 0.061187744, 0.038269043, 0.013595581, 0.0044174194, -0.023788452, -0.0121154785, -0.066223145, -0.05529785, 0.012680054, 0.06088257, 0.008346558, -0.038269043, -0.0015335083, -0.007385254, -0.01763916, -0.024993896, -0.037994385, -0.03753662, 0.058135986, -0.019943237, -0.057250977, -0.035003662, 0.023788452, 0.041137695, -0.04937744, -0.030685425, -0.018249512, -0.06427002, -0.02168274, -0.014625549, 0.02130127, -0.02243042, -0.02658081, -0.007408142, 0.037506104, -0.00034618378, 0.067993164, 0.0001411438, 0.08721924, -0.019821167, 0.0068626404, -0.013618469, 0.0009832382, -0.018096924, 0.019241333, -0.011886597, 0.015014648, 0.05404663, 0.013748169, -0.015014648, 0.029312134, -0.020263672, 0.04748535, -0.018554688, -0.026000977, 0.026168823, 0.022247314, 0.0131073, -0.06124878, 0.06726074, -0.005859375, 0.007972717, -0.057159424, 0.032562256, 0.010902405, -0.022216797, 0.028778076, -0.037078857, 0.040405273, -0.0859375, -0.010528564, 0.035308838, 0.007904053, -0.008888245, 0.012832642, 0.004627228, -0.026489258, -0.009109497, 0.019073486, -0.0073165894, -0.017837524, -0.013999939, -0.02178955, 0.028182983, -0.0060424805, 0.0020618439, -0.012130737, -0.01802063, 0.016082764, -0.03869629, 0.010147095, -0.012077332, 0.010955811, 0.004070282, -0.023391724, -0.00178051, 0.006839752, -0.06439209, -0.0018634796, 0.015022278, 0.013381958, -0.008323669, 0.06021118, -0.058166504, -0.033721924, 0.007621765, -0.024887085, 0.008888245, -0.009231567, -0.044952393, -0.0440979, 0.023452759, 0.028076172, 0.02407837, -0.023910522, 0.021728516, -0.016830444, -0.020446777, -0.020385742, 0.056427002, -0.030899048, -0.045776367, 0.04837036, 0.037963867, 0.01373291, 0.015510559, -0.032104492, -0.034820557, -0.0061416626, -0.009719849, -0.071899414, -0.0048828125, -0.018859863, 0.010406494, -0.003314972, 0.005924225, 0.008850098, 0.045654297, 0.018722534, 0.014770508, -0.03378296, -0.008010864, -0.012924194, -0.017303467, 0.011802673, -0.026901245, 0.028259277, -0.031829834, 0.0115737915, -0.08441162, -0.11480713, -0.03414917, 0.02909851, 0.032409668, 0.00094795227, 0.009521484, -0.013832092, -0.052978516, 0.03387451, -0.016937256, -0.031799316, 0.013038635, 0.04159546, 0.0234375, 0.038726807, -0.016693115, -0.029785156, -0.034454346, -0.006175995, 0.03768921, 0.020202637, -0.057128906, -0.00038599968, 0.02758789, 0.042022705, -0.008529663, -0.030685425, -0.016723633, -0.0024337769, -0.01979065, -0.005630493, 0.010040283, -0.025115967, 0.024429321, -0.030517578, -0.02027893, -0.011428833, -0.03149414, 0.020263672, -0.007270813, 0.028442383, -0.008865356, 0.011886597, 0.007949829, -0.016311646, 0.0034179688, 0.0184021, 0.019073486, 0.03225708, 0.027313232, 0.021575928, -0.0362854, 0.007648468, -0.012298584, -0.0021038055, -0.019088745, 0.056274414, -0.01878357, 0.014877319, -0.008087158, -0.06124878, 0.045928955, 0.020324707, -0.014709473, 0.020126343, 0.00079488754, 0.029525757, 0.011604309, -0.0078086853, 0.026763916, -0.032104492, 0.031555176, 0.03274536, -0.029281616, -0.011665344, -0.032806396, -0.04324341, 0.03717041, -0.024169922, -0.04156494, 0.005592346, -0.029281616, 0.05630493, 0.034301758, 0.015151978, 0.06060791, -0.023666382, 0.006290436, -0.014427185, -0.010864258, -0.042877197, -0.01852417, 0.02180481, 0.0044555664, -0.021759033, -0.026611328, 0.0060768127, -0.00047397614, 0.020736694, -0.03652954, 0.03515625, -0.032836914, 0.0769043, 0.033447266, -0.011405945, -0.041046143, 0.01802063, -0.0058784485, 0.0016851425, 0.017425537, 0.05822754, 0.0023174286, 0.04144287, -0.012313843, -0.0024337769, 0.038848877, -0.012130737, 0.01373291, -0.035339355, 0.0016336441, 0.008590698, -0.01864624, -0.00073099136, 0.00096559525, -0.029373169, -0.0048179626, -0.015602112, -0.057159424, -0.018173218, 0.004005432, -0.004245758, 0.008911133, -0.022491455, 0.0050239563, 0.009963989, -0.0154418945, 0.0039749146, -0.030456543, 0.00554657, 0.01612854, -0.029342651, -0.03704834, -0.021560669, 0.00617218, -0.015625, -0.022735596, 0.016204834, 0.0068588257, -0.040618896, -0.030273438, -0.022583008, 0.019210815, 0.0031528473, -0.018737793, 0.010726929, 0.0015411377, -0.045928955, -0.038116455, 0.017364502, -0.052703857, -0.008560181, -0.029678345, -0.024627686, -0.047210693, -0.024368286, 0.0340271, 0.06512451, 0.03149414, 0.0046691895, 0.038208008, -0.05279541, -0.022079468, 0.007698059, 0.007007599, -0.018112183, -0.035827637, 0.027420044, 0.023208618, 0.017196655, 0.0043907166, 0.0151901245, -0.036590576, 0.03768921, 0.015289307, 0.03439331, 0.035186768, -0.016616821, 0.022018433, 0.028457642, -0.046722412, -0.09033203, -0.03881836, -0.011230469, 0.010787964, -0.016998291, 0.05053711, 0.012619019, -0.026535034, -0.049987793, -0.013877869, -0.017242432, 0.06567383, -0.027374268, -0.013519287, 0.0011472702, -0.008834839, -0.03164673, -0.031311035, 0.035095215, -0.007030487, -0.026168823, 0.028198242, -0.02545166, -0.020095825, -0.009521484, -0.0418396, -0.008377075, -0.015975952, 0.06021118, -0.03778076, -0.028640747, 0.008392334, 0.0063323975, -0.0014619827, 0.0020694733, -0.0635376, -0.031799316, 0.032073975, 0.020599365, -0.020858765, -0.021362305, 0.026046753, 0.035308838, 0.0017986298, 0.039794922, 0.0031871796, 0.027862549, -0.009613037, 0.023330688, -0.0059547424, 0.09539795, 0.00497818, -0.07110596, -0.04360962, 0.019744873, 0.046661377, -0.024276733, 0.06311035, -0.008720398, 0.022232056, 0.010360718, 0.011711121, -0.01309967, 0.0019893646, 0.09698486, -0.008354187, 0.012954712]}, "B074W2B6M8": {"id": "B074W2B6M8", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: \nFeatures: DIMENSIONS: This Homitt bbq cover measures 60\"L x 28\"W x 44\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "metadata": {"Name": "Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black", "Brand": "Homitt", "Description": "", "Features": "DIMENSIONS: This Homitt bbq cover measures 60\"L x 28\"W x 44\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.011383057, 0.0035305023, -0.04663086, -0.021148682, -0.002658844, -0.0077819824, -0.019836426, 0.009239197, 0.0021762848, -0.035369873, -0.003320694, 0.0115356445, -0.018295288, -0.041870117, 0.05126953, -0.028808594, 0.010688782, -0.007987976, 0.00680542, -0.018310547, -0.011543274, -0.024368286, 0.024536133, 0.029220581, 0.011024475, -0.026473999, 0.027572632, -0.008605957, 0.02293396, 0.0048446655, 0.015716553, -0.015068054, 0.04425049, 0.008979797, -0.051757812, 0.036712646, -0.008232117, -0.0049819946, -0.0016527176, 0.008354187, -0.015579224, 0.0128479, 0.0043182373, -0.004901886, 0.0018196106, -0.051361084, 0.004283905, -0.06048584, 0.014961243, 0.01940918, 0.012359619, 0.001914978, 0.009208679, 0.052886963, -0.029083252, -0.011833191, -0.011276245, 0.006996155, 0.023498535, -0.020889282, -0.023925781, 0.008422852, 0.02243042, -0.002046585, -0.009902954, -0.009048462, 0.088012695, 6.198883e-05, -0.043762207, -0.028778076, 0.04171753, 0.011001587, 0.023529053, -0.026504517, -0.03677368, -0.0035324097, -0.0050239563, -0.033569336, 0.033416748, -0.019485474, -0.024673462, -0.04989624, 0.0109939575, -0.015655518, -0.0043907166, -0.00242424, -0.0051345825, 0.0119018555, 0.021636963, -0.02508545, 0.012191772, 0.07788086, -0.029769897, 0.024368286, -0.005302429, -0.028320312, -0.025817871, -0.015777588, 0.0036144257, 0.0026779175, 0.02670288, -0.023880005, 0.020843506, -0.015701294, -0.023345947, 0.061462402, 0.01826477, 0.03225708, -0.0062789917, -0.008583069, -0.0027484894, -0.06878662, 0.018417358, -0.031219482, -0.038391113, 0.033325195, 0.035949707, -0.013038635, 0.021270752, -0.01828003, -0.06573486, -0.03543091, 0.0068092346, 0.03616333, 0.044158936, 0.048431396, 0.019805908, 0.0042800903, -0.039794922, 0.0082473755, -0.018676758, 0.025466919, 0.007896423, 0.02861023, -0.008346558, -0.006954193, 0.057861328, -0.0703125, -0.007446289, 0.027297974, -0.042633057, 0.03616333, 0.08117676, -0.064208984, -0.03869629, 0.016082764, 0.013221741, 0.01763916, -0.01902771, -0.07165527, 0.025161743, -0.037109375, 0.059661865, -0.0085372925, -0.08105469, 0.02229309, -0.003768921, 0.002073288, -0.07946777, -0.05380249, -0.04421997, -0.009346008, 0.019165039, -0.02357483, -0.031585693, 0.04296875, 0.014442444, 0.008392334, 0.021194458, 0.028030396, -0.013641357, -0.023956299, -0.0093688965, -0.008125305, -0.017730713, 0.01651001, -0.016784668, 0.06414795, 0.07208252, -0.11340332, -0.0635376, -0.053771973, 0.14440918, -0.036071777, 0.016601562, -0.036102295, -0.0019302368, -0.033721924, 0.040039062, -0.0038433075, 0.00022792816, -0.015777588, -0.0006427765, -0.0073242188, -0.016983032, 0.003955841, 0.004295349, 0.046783447, -0.016952515, -0.04257202, -0.03677368, 0.00085783005, 0.025344849, 0.0006170273, 0.026321411, -0.0005302429, 0.002943039, 0.0289917, 0.013069153, 0.022842407, -0.019821167, -0.012458801, 0.019683838, -0.047973633, -0.0008792877, 0.025650024, 0.022735596, 0.02508545, -0.0045547485, 0.025100708, 0.016174316, -0.01234436, -0.00039196014, 0.06124878, 0.018920898, -0.010444641, -0.0014810562, -0.005138397, 0.020401001, 0.028503418, -0.03189087, -0.025283813, 0.0892334, 0.04864502, -0.0317688, 0.04434204, 0.044799805, 0.018478394, -0.047607422, 0.007980347, 0.0051651, -0.034332275, -0.06188965, 0.01386261, 0.0012054443, -0.02357483, -0.01737976, 0.028762817, -0.008720398, 0.024276733, 0.027359009, 0.0030555725, 0.009140015, -0.00497818, -0.012535095, 0.022705078, -0.035614014, 0.0027885437, -0.021057129, 0.024124146, -0.012954712, 0.018447876, 0.045135498, -0.009643555, 0.041015625, 0.019012451, 0.062042236, 0.053222656, 0.0056114197, -0.014518738, -0.008125305, -0.0006299019, 0.009391785, 0.0066070557, -0.038391113, 0.001496315, -0.011985779, 0.016143799, 0.0030269623, -0.018173218, 0.0178833, 0.026367188, -0.0317688, -0.00030493736, 0.028945923, 0.02482605, -0.012458801, 0.027053833, -0.001033783, -0.0063552856, 0.021835327, -0.014183044, 0.0062217712, -0.044647217, 0.056640625, -0.034179688, 0.018569946, 0.005050659, 0.0007209778, 0.0015974045, 0.023925781, 0.044158936, -0.018661499, 0.005886078, -0.02545166, 0.027542114, -0.02468872, -0.010871887, -0.0035037994, -0.04168701, 0.018630981, 0.05178833, 0.022262573, -0.010818481, 0.062805176, 0.013442993, 0.026275635, 0.0552063, 0.0680542, 0.051696777, -0.013221741, -0.008392334, -0.043395996, -0.023330688, -0.0024528503, 0.03213501, -0.035461426, -0.00024318695, -0.047210693, 0.025436401, -0.039978027, -0.03286743, -0.03741455, 0.022521973, -0.012771606, 0.029434204, -0.008666992, -0.0154800415, -0.006526947, -0.00051546097, 0.0060806274, -0.04046631, -0.009277344, -0.025482178, -0.030685425, -0.041168213, 0.047851562, -0.0024700165, -0.04071045, 0.0067253113, 0.037506104, -0.03201294, -0.039031982, -0.072143555, -0.049713135, 0.014480591, 0.03100586, -0.09729004, -0.025924683, -0.10614014, 0.008132935, -0.018478394, -0.04446411, 0.033172607, 0.044433594, -0.027160645, -0.023269653, -0.009750366, 0.038635254, 0.04928589, 0.015060425, 0.029922485, -0.019348145, -0.02128601, -0.01739502, -0.045654297, -0.029037476, -0.054626465, -0.021469116, -0.033325195, -0.03100586, -0.011276245, 0.005973816, 0.016616821, 0.0012483597, 0.025924683, 0.034301758, 0.038726807, 0.0035762787, -0.03277588, 0.015914917, 0.08227539, 0.024154663, -0.025924683, 0.019546509, 0.008628845, -0.0031414032, 0.011909485, -0.0064888, -0.025558472, -0.06359863, 0.010368347, 0.007621765, -0.011665344, -0.036499023, -0.019897461, -0.052703857, -0.0446167, -0.015464783, 0.044799805, -0.02230835, -0.013977051, -0.054595947, 0.00349617, 0.025650024, -0.018463135, 0.010215759, 0.0052719116, -0.03164673, -0.0038871765, 0.02281189, 0.008323669, 0.0076179504, 0.010887146, 0.0071372986, 0.011711121, 0.005092621, -0.011909485, -0.0027713776, 0.020431519, 0.003982544, -0.01637268, -0.0026683807, 0.017425537, -0.012130737, 0.023544312, 0.004459381, -0.018432617, 0.019180298, -0.03744507, -0.008621216, 0.020431519, -0.019180298, 0.04171753, -0.0014352798, -0.021636963, 0.0019721985, -0.047851562, -0.02368164, -0.012268066, 0.010574341, 0.009361267, 0.0054855347, 0.02835083, -0.008026123, 0.07946777, 0.0014925003, 0.030227661, -0.0037136078, -0.042297363, -0.06518555, -0.052490234, 0.056396484, -0.033569336, -0.014305115, -0.02281189, 0.054779053, 0.0058555603, -0.013381958, 0.0036945343, -0.014419556, 0.016967773, 0.0012702942, -0.0046920776, -0.0017290115, -0.019332886, 0.0028800964, 0.03604126, -0.027420044, -0.019927979, -0.076171875, 0.0075798035, -0.08544922, 0.053253174, 0.028945923, -0.018249512, 0.068481445, 0.05419922, -0.026626587, 0.030136108, 0.056793213, 0.0051345825, -0.004142761, 0.07720947, -0.021316528, -0.013145447, 0.010688782, -0.024154663, 0.0061531067, -0.021255493, -0.02142334, -0.00092840195, -0.025344849, -0.0056991577, -0.008628845, 0.038085938, 0.055999756, -0.008056641, -0.03375244, -0.0103302, 0.019256592, -0.05014038, -0.0024814606, 0.009918213, -0.020095825, 0.026977539, -0.0074691772, -0.019622803, 0.004890442, -0.00806427, -0.013153076, -0.020614624, 0.014099121, 0.010025024, 0.01474762, 0.0024051666, 0.0013008118, 0.029464722, -0.013519287, 0.0014820099, 0.02330017, 0.017501831, 0.0036258698, 0.0001553297, 0.00617218, 0.012359619, 0.007843018, 0.0029850006, -0.03375244, -0.0501709, -0.008018494, 0.016998291, 0.000995636, -0.035064697, 0.0031833649, -0.04940796, -0.027420044, -0.0062065125, -0.069885254, -0.024520874, -0.025558472, 0.0022506714, -0.044708252, -0.0014066696, 0.008026123, -0.036743164, -0.06585693, 0.010971069, 0.0053100586, -0.0022010803, -0.02078247, 0.072753906, -0.056549072, -0.04083252, 0.001496315, 0.0017280579, 0.0758667, 0.055419922, 0.020507812, -0.022003174, -0.00932312, -0.023422241, 0.08618164, 0.028152466, 0.008636475, -0.031311035, -0.008071899, 0.00055265427, 0.03652954, 0.053344727, -0.01763916, 0.038085938, -0.003376007, 0.028259277, -0.07647705, -0.0014019012, 0.041107178, -0.08453369, -0.055633545, -0.023376465, 0.084350586, 0.019104004, -0.035339355, -0.02708435, 0.049987793, 0.018066406, 0.011360168, -0.011932373, 0.036468506, 0.024871826, -0.04083252, -0.016464233, -0.0105896, -0.021606445, 0.046569824, -0.0039100647, -0.06890869, -0.011169434, 0.0018043518, 0.036743164, 0.0014476776, 0.022399902, -0.041900635, -0.0025234222, -0.019424438, -0.012359619, -0.05984497, 0.06903076, 0.06756592, 0.031677246, 0.019714355, -0.011138916, -0.004814148, -0.07196045, -0.014503479, -0.04425049, 0.021820068, -0.03302002, -0.037902832, -0.0001052618, -0.047698975, 0.0039405823, -0.0036506653, -0.029632568, -0.0010070801, 0.0002603531, 0.020202637, -0.015274048, -0.0045776367, 0.007511139, 0.017456055, 0.011161804, -0.005077362, -0.05230713, -0.030715942, -0.033721924, -0.023742676, -0.019500732, -0.01713562, 0.006752014, 0.007472992, 0.02104187, -0.0029582977, -0.0074043274, 0.013725281, 0.013198853, -0.028396606, -0.017364502, 4.9114227e-05, -0.017623901, -0.02760315, 0.031311035, -0.03768921, 0.04864502, 0.0496521, -0.036468506, -0.012336731, 0.026397705, -0.0496521, 0.06225586, 0.0024871826, -0.055419922, 0.020202637, 0.0024795532, 0.002450943, -0.001791954, 0.050048828, -0.0027008057, 0.00052404404, -0.043273926, 0.014640808, -0.007019043, 0.03164673, -0.010787964, -0.030319214, -0.006095886, -0.029800415, 0.019577026, 0.018539429, 0.050628662, -0.011070251, 0.016708374, 0.02267456, 0.017410278, -0.05996704, 0.012229919, -0.03765869, 0.016403198, -0.02848816, 0.011474609, 0.012580872, 0.004283905, -0.0181427, -0.031585693, -0.010055542, -0.01626587, -0.02015686, 9.8884106e-05, -0.005191803, 0.0028038025, -0.00756073, 0.0085372925, -0.005809784, 0.008071899, -0.02998352, -0.023117065, -0.024658203, -6.7174435e-05, -0.024047852, 0.048553467, -0.008331299, -0.00995636, -0.013763428, -0.011909485, 0.009506226, -0.0073051453, -0.036590576, 0.022476196, -0.00548172, 0.0032577515, -0.0473938, 0.004814148, 0.058898926, -0.06274414, -0.02848816, -0.07299805, 0.027282715, -0.0042495728, -0.011291504, 0.055389404, 0.022125244, 0.0016756058, 0.039886475, -0.0015230179, -0.03918457, 0.0134887695, 0.0016422272, -0.06756592, 0.018600464, -0.019805908, 0.02218628, 0.0029449463, -0.006198883, 0.00013303757, 0.05657959, 0.019012451, -0.02558899, -0.03378296, -0.006263733, 0.010719299, -0.056121826, 0.014602661, -0.024093628, -0.0066337585, 0.008331299, -0.025619507, -0.05505371, 0.00819397, 0.009681702, 0.026870728, 0.033813477, -0.027435303, 0.014907837, 0.031951904, -0.027557373, 0.066223145, -0.042907715, -0.0026931763, 0.004310608, 0.039123535, 0.013069153, 0.058685303, -0.0051727295, -0.017562866, -0.014350891, 0.026916504, 0.012313843, 0.016784668, -0.037139893, -0.029327393, 0.041412354, 0.03491211, -0.00038170815, 0.038757324, 0.048736572, 0.021621704, -0.010879517, -0.0044403076, 0.0008659363, -0.030578613, -0.018356323, -0.033203125, 0.00674057, 0.035491943, 0.01852417, 0.010025024, -0.026184082, 0.061584473, -0.00187397, 0.029708862, 0.009094238, -0.010726929, 0.016082764, -0.01727295, 0.029251099, 0.029830933, -0.01033783, 0.0025615692, -0.0025577545, -0.018600464, -0.0026893616, 0.017623901, -0.028884888, 0.060760498, 0.0034446716, 0.012397766, -0.009803772, -0.012802124, 0.03616333, 0.068115234, 0.013175964, 0.0463562, -0.09851074, -0.032592773, -0.018463135, 0.00881958, -0.028762817, 0.09710693, -0.010223389, -0.004917145, -0.025054932, -0.011199951, 0.0013036728, -0.041992188, 0.019241333, 0.026519775, 0.014320374, -0.0055236816, -0.024993896, -0.008666992, 0.033416748, -0.03778076, -0.023284912, -0.003753662, 0.038208008, 0.007713318, 0.021148682, -0.021484375, -0.009254456, 0.03753662, 0.0032749176, 0.0043678284, 0.020553589, 0.025527954, 0.032714844, 0.020523071, -0.021881104, 0.031707764, -0.032287598, 0.06359863, 0.037719727, 0.01701355, -0.04348755, -0.039733887, -0.017837524, -0.0029582977, -0.008987427, 0.04046631, -0.011253357, 0.020019531, -0.025299072, 0.028030396, 0.016586304, -0.032928467, 0.021224976, 0.010772705, -0.030334473, 0.013168335, -0.014541626, 0.0014514923, -0.0012073517, -0.009567261, -0.0027046204, 0.0062713623, -0.020751953, 0.03503418, 0.0036315918, -0.009185791, -0.023162842, -0.013122559, 0.02557373, -0.015464783, 0.0121536255, -0.039245605, 0.017562866, -0.03668213, -0.029022217, -0.04586792, -0.024398804, -0.04168701, 0.04159546, -0.025436401, -0.022247314, -0.008934021, 0.011390686, 0.004688263, -0.045288086, -0.029922485, 0.0077209473, 0.0184021, 0.0028572083, 0.05303955, -0.028686523, -0.05392456, -0.061035156, 0.029708862, -0.0703125, -0.030441284, -0.018249512, 0.032592773, 0.051696777, 0.021835327, 0.054138184, 0.05114746, 0.017044067, 0.002336502, 0.0039043427, -0.0020713806, -0.044830322, 0.05947876, 0.009765625, -0.012245178, 0.025863647, 0.047607422, -0.012535095, 0.041809082, 0.01928711, -0.027526855, -0.035491943, -0.028625488, -0.042053223, 0.008460999, -0.015853882, 0.03527832, -0.010147095, 0.03250122, -0.020111084, 0.0032520294, -0.017120361, -0.0074768066, 0.016235352, 0.016143799, 0.043914795, -0.006603241, -0.04937744, -0.044189453, -0.026367188, 0.024871826, 0.028045654, 0.0026664734, -0.012588501, 0.019577026, -0.010025024, 0.016555786, 0.0073165894, -0.02519226, -0.013900757, 0.015975952, -0.0055007935, -0.027633667, 0.003622055, -0.002204895, -0.006713867, -0.06384277, 0.044830322, 0.05206299, -0.04196167, -0.035217285, -0.0007815361, -0.017028809, 0.007575989, -0.053009033, -0.043182373, -0.08856201, 0.024719238, 0.06506348, -0.04309082, 0.02746582, -0.022216797, -0.026107788, -0.00983429, 0.019882202, -0.0005879402, 0.019805908, 0.010498047, -0.002527237, -0.0069465637, 0.045806885, -0.023223877, -0.046783447, -0.04525757, 0.038330078, 0.005710602, -0.004989624, 0.051696777, -0.005153656, 0.022155762, -0.026504517, 0.042114258, -0.046661377, 0.036193848, -0.008811951, -0.0024795532, 0.035308838]}, "B00KM9ATAA": {"id": "B00KM9ATAA", "original": "Brand: EDMBG\nName: EDMBG 3 Pack Gas LIGHTERS 11\" Refillable Butane BBQ Kitchen Fireplace Grill Utility\nDescription: BBQ Grill Lighters - Extended Reach - 11\" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!\nFeatures: Extended Reach - 11\" total length\nSafety Lock - to keep safe from the little ones\nFlame Size Regulator - for all condition\nRefillable\n", "metadata": {"Name": "EDMBG 3 Pack Gas LIGHTERS 11\" Refillable Butane BBQ Kitchen Fireplace Grill Utility", "Brand": "EDMBG", "Description": "BBQ Grill Lighters - Extended Reach - 11\" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!", "Features": "Extended Reach - 11\" total length\nSafety Lock - to keep safe from the little ones\nFlame Size Regulator - for all condition\nRefillable", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.001168251, -0.01234436, -0.038879395, -0.036193848, -0.004310608, -0.019561768, -0.018325806, 0.012031555, -0.039276123, 0.020309448, -0.02520752, 0.027359009, -0.005168915, 0.0071907043, -0.0069389343, -0.026870728, 0.011291504, 0.031707764, 0.007774353, -0.021560669, -0.00869751, -0.010894775, -0.029632568, 0.061187744, 0.03918457, -0.032043457, 0.057159424, -0.017929077, 0.03656006, -0.0006403923, 0.02772522, -0.020568848, 0.022415161, 0.009933472, -0.029891968, -0.0670166, 0.016098022, -0.022125244, -0.034973145, 0.016677856, 0.011360168, -0.0015153885, -0.029174805, -0.0072669983, -0.025863647, 0.0018596649, -0.01966858, -0.033355713, 0.010734558, 0.038848877, 0.02734375, 0.0013895035, 0.009841919, 0.022888184, -0.011024475, 0.011367798, 0.03366089, -0.020904541, 0.043029785, -0.0096588135, -0.04348755, -0.012718201, 0.024642944, -0.030197144, -0.04159546, -0.0052337646, 0.01727295, -0.023147583, 0.037719727, -0.029724121, 0.0141067505, 0.02659607, 0.018493652, -0.024978638, -0.044036865, 0.015731812, 0.020507812, 0.0043296814, 0.010513306, -0.03050232, 0.0076408386, -0.012634277, 0.033325195, 9.840727e-05, -0.021438599, 0.0016851425, -0.00944519, -0.012252808, 0.01914978, -0.004058838, -0.0132751465, 0.05316162, -0.044830322, 0.06561279, -0.00869751, -0.0005469322, -0.012863159, -0.016067505, 0.0423584, 0.0009889603, 0.0069503784, -0.026153564, -0.043914795, 1.66893e-06, -0.017715454, 0.04824829, 0.0014944077, -0.004486084, -0.021087646, -0.002128601, -0.014129639, -0.058502197, 0.018371582, -0.041168213, -0.014251709, 0.0020980835, 0.006450653, 0.0184021, 0.030181885, -0.0093307495, -0.010261536, 0.019882202, -0.00856781, 0.030090332, 0.034301758, 0.04711914, 0.005722046, -0.009635925, -0.013687134, 0.034484863, 0.0025253296, -0.0016946793, -0.011146545, 0.0012807846, -0.02961731, -0.020004272, -0.019210815, 0.04525757, 0.02671814, -0.019500732, 0.007282257, -0.018493652, 0.030670166, 0.02444458, 0.00048589706, 0.00642395, 0.022064209, 0.018676758, 0.0024795532, -0.025787354, 0.023788452, -0.005191803, 0.051879883, -0.011871338, -0.06719971, -0.023834229, -0.028503418, -0.013381958, -0.017822266, -0.064453125, -0.0033683777, 0.010528564, -0.032714844, -0.030319214, -0.04345703, -0.019256592, 0.0501709, 0.015731812, 0.024383545, 0.057800293, 0.005027771, -0.05493164, 0.015838623, 0.019165039, -0.021774292, 0.026931763, -0.0066490173, 0.060150146, 0.06365967, -0.07470703, -0.040740967, -0.043762207, 0.13464355, -0.045166016, -0.022918701, -0.025497437, 0.0020160675, -0.026473999, 0.02357483, -0.00031232834, 0.039733887, 0.017440796, -0.033996582, 0.018463135, -0.057678223, -0.0056648254, -0.0043144226, 0.037078857, -0.0440979, 0.030410767, 0.03100586, 0.011245728, -0.0030212402, -0.005996704, -0.017471313, -0.0340271, 0.008598328, 0.004508972, 0.06304932, 0.039794922, -0.01852417, 0.033966064, -0.014541626, -0.01626587, -0.05102539, 0.0029296875, -0.0073394775, 0.05783081, 0.009162903, 0.02281189, 0.048187256, -0.05142212, 0.03491211, 0.016677856, 0.010871887, -0.051330566, -0.00040912628, -0.022949219, -0.00066518784, 0.002811432, -0.027404785, 0.032470703, 0.05239868, 0.07348633, 0.0072898865, 0.054656982, 0.06335449, 0.056793213, -0.0211792, -0.04055786, 0.029922485, 0.008651733, -0.019973755, -0.012008667, 0.0028095245, -0.024429321, 0.024291992, -0.030136108, -0.045166016, 0.02810669, 0.011978149, 0.064086914, 0.018188477, 0.058929443, -0.02670288, 0.03375244, -0.048095703, 0.011711121, -0.07348633, 0.023803711, -0.006893158, -0.02407837, 0.027664185, -0.029815674, 0.02357483, -0.0014839172, 0.053741455, 0.053741455, 0.020187378, -0.03665161, -0.0014753342, 0.037475586, -0.009216309, 0.010070801, 0.037109375, -0.036743164, -0.019805908, 0.006965637, -0.015281677, -0.027679443, -0.026748657, 0.006462097, 0.0031032562, -0.0020599365, -0.01322937, -0.0056648254, 0.024551392, -0.0033035278, -0.065979004, -0.08203125, -0.018157959, -0.0071372986, -0.05255127, 0.001996994, -0.023788452, -0.035736084, -0.022201538, 0.027572632, 0.023147583, -0.029907227, -0.018249512, 0.03466797, -0.05770874, 0.042999268, -0.01838684, 0.035705566, -0.02999878, 0.011749268, 0.00026154518, -0.08795166, 0.076171875, 0.018371582, 0.019317627, -0.025665283, 0.045654297, 0.026626587, 0.024398804, 0.036346436, 0.03479004, 0.01626587, -0.032287598, -0.041259766, -0.0017366409, -0.0047416687, 8.499622e-05, 0.005004883, 0.0012273788, 0.009796143, 0.012466431, 0.018615723, 0.02798462, 0.04421997, 0.013687134, 0.0048217773, 0.0054016113, -0.018234253, 0.0056991577, 0.0038204193, -0.009140015, -0.051361084, -0.015083313, -0.036956787, -0.0008201599, -0.01398468, -0.03262329, 0.019836426, -0.015670776, 0.0317688, -0.020629883, -0.0124435425, -0.013580322, -0.039733887, 0.014961243, 0.0073280334, 0.0362854, -0.036895752, -0.04928589, 0.008361816, -0.013313293, -0.04437256, -0.052246094, 0.004550934, -0.080322266, 0.01965332, 0.043121338, -0.0073013306, 0.00983429, 0.0011148453, 0.0519104, 0.036865234, -0.019332886, 0.0030975342, 0.044555664, 0.010925293, 0.04486084, -0.03652954, 0.03164673, -0.009475708, -0.038116455, -0.008171082, 0.011795044, 0.015716553, 5.2034855e-05, -0.0042381287, 0.009101868, 0.025405884, 0.025650024, 0.03866577, 0.0056152344, -0.013221741, 0.0024604797, 0.064819336, -0.05206299, -0.020050049, 0.0033035278, 0.0069847107, 0.037872314, -0.009361267, -0.0050086975, -0.04626465, -0.041900635, 0.02420044, -0.020126343, -0.0066719055, -0.033691406, -0.0206604, -0.025802612, -0.03665161, 0.0007891655, 0.044311523, 0.0048103333, -0.015853882, -0.0031757355, -0.0206604, 0.0064735413, -0.010292053, -0.045715332, -0.02015686, 0.04107666, 0.0076026917, 0.019210815, -0.094177246, 0.030700684, 0.05682373, -0.028244019, -0.032989502, 0.006652832, 0.01600647, -0.032318115, 0.05557251, 0.0079422, -0.005077362, 0.0044441223, 0.0016946793, -0.007522583, -0.016555786, -0.014350891, -0.031677246, 0.030578613, -0.038604736, -0.05834961, -0.011650085, 0.0027122498, 0.012046814, 0.02154541, -0.03945923, -0.031066895, -0.047180176, -0.010665894, -0.03768921, 0.022216797, 0.006313324, 0.053222656, 0.017318726, 0.013977051, 0.0770874, 0.031402588, 0.042907715, 0.074645996, -0.035949707, -0.039611816, -0.04559326, 0.0143966675, 0.033416748, 0.030685425, -0.016159058, 0.061431885, -0.0029907227, 0.02078247, -0.015197754, -0.011505127, -0.020889282, 0.024749756, -0.020584106, -0.015991211, -0.048034668, 0.033447266, 0.018005371, 0.009338379, -0.051330566, -0.038604736, -0.0042800903, -0.022018433, 0.10430908, 0.033416748, -0.0010662079, 0.07672119, 0.06585693, -0.0060310364, 0.030059814, -0.008285522, 0.008460999, 0.018493652, 0.025878906, -0.008277893, 0.014961243, 0.010139465, 0.02078247, 0.03366089, 0.0045928955, -0.034606934, 0.018585205, 0.012489319, -0.034454346, 0.003063202, 0.0069465637, 0.033996582, -0.0057373047, 0.0037059784, 0.025314331, 0.025680542, -0.023864746, -0.050811768, 0.0042648315, -0.02558899, -0.0076942444, 0.014022827, -0.011192322, -0.010253906, -0.014511108, 0.0052757263, 0.011779785, 0.0057296753, 0.020629883, 0.022720337, -0.017532349, 0.0062332153, 0.0033779144, -0.009979248, 0.015571594, 0.019317627, 0.009536743, 0.019134521, -0.0064964294, 0.011550903, -0.008255005, -0.0023918152, 0.020584106, 0.006000519, -0.040771484, 0.01322937, 0.022888184, -0.008880615, -0.019073486, 0.0035800934, -0.050933838, -0.012580872, -0.0028419495, -0.05319214, -0.015586853, -0.01600647, -0.0021781921, -0.051574707, -0.016845703, -0.027542114, -0.015510559, -0.03970337, 0.015823364, -0.00062942505, -0.009033203, 0.007408142, 0.064086914, -0.032409668, -0.038146973, 0.008453369, -0.01612854, 0.057861328, 0.0236969, 0.0024471283, -0.020980835, -0.006965637, -0.018173218, 0.052947998, -0.019302368, 0.001540184, -0.031097412, -0.004600525, 0.0072746277, 0.056762695, 0.08929443, -0.019699097, 0.0317688, -0.031066895, 0.03930664, -0.05307007, -0.077697754, 0.057556152, -0.097595215, -0.053894043, -0.08477783, 0.064331055, 0.0126571655, 0.019592285, -0.010421753, -0.004501343, 0.011619568, 0.03744507, -0.047180176, -0.03225708, -0.005191803, -0.030380249, 0.030838013, 0.010482788, 0.003376007, 0.025238037, 0.079711914, -0.0357666, 0.05239868, -0.027374268, -0.05569458, 0.019317627, 0.034179688, -0.035736084, 0.016647339, -0.061035156, 0.0017776489, -0.022491455, 0.0715332, 0.049621582, -0.014213562, 0.022232056, 0.03012085, 0.00075387955, -0.02746582, -0.006401062, 0.05834961, 0.030731201, -0.01020813, -0.038726807, 0.021911621, -0.028396606, -0.006011963, 0.005268097, -0.025802612, 0.038909912, 0.014045715, 0.024490356, 0.0054130554, 0.0053100586, 0.032440186, 0.00819397, 0.014198303, -0.014213562, -0.028381348, 0.01966858, -0.029815674, -0.030410767, 0.0048713684, 0.0005750656, -0.02180481, 0.03463745, 0.004272461, -0.032684326, -0.0020122528, 0.031280518, -0.02696228, -0.009803772, 0.036499023, 0.0049743652, 0.0004415512, -0.022155762, 0.040130615, 0.0041542053, -0.0038814545, 0.013442993, -0.01737976, 0.005001068, 0.009552002, -0.013198853, 0.00027680397, -0.010345459, -0.03933716, -0.0010480881, 0.009552002, -0.0026359558, -0.041412354, 0.066345215, 0.0004248619, -0.025939941, -0.03930664, 0.0004775524, 0.0063476562, 0.015960693, -0.0018110275, -0.012275696, 0.042388916, -0.01739502, 0.0008029938, 0.017562866, -0.0006842613, -0.037628174, -0.0051727295, 0.0062294006, -0.00969696, -0.025817871, 0.013961792, -0.0047683716, -0.0340271, -0.0012559891, -0.03967285, 0.041656494, -0.003643036, -0.036010742, -0.02748108, 0.016799927, 0.028320312, -0.03366089, -0.041931152, -0.0023059845, 0.0043029785, -0.0154418945, 0.012168884, -0.0385437, 0.00017881393, -0.027816772, -0.038238525, -0.05319214, -0.003921509, -0.027191162, 0.042053223, 0.012077332, -0.003364563, 0.025878906, 0.0010051727, 0.038024902, -0.014190674, 0.0023536682, 0.027420044, -0.011421204, 0.007774353, -0.07269287, 0.0030841827, 0.062469482, -0.07165527, -0.052612305, -0.036224365, 0.02961731, 0.008483887, 0.00078487396, 0.043518066, -0.0012378693, 0.005432129, 0.018676758, 0.0026111603, -0.033935547, -0.0068855286, 0.01083374, -0.0118255615, -0.062286377, -0.030731201, -0.0034809113, -0.012931824, 0.0024108887, 0.0135269165, 0.04031372, 0.010543823, -0.00059843063, -0.024032593, -0.02659607, -0.007106781, -0.035369873, -0.002286911, -0.0084991455, 0.011581421, -0.0138549805, -0.0036907196, -0.050048828, -0.0007786751, -0.007675171, 0.03189087, 0.028656006, -0.0018749237, 0.018463135, 0.013282776, -0.042510986, 0.036499023, 0.006767273, -0.027618408, 0.0013713837, 0.006000519, 0.01586914, -0.00085639954, -0.018310547, -0.008636475, -0.048950195, 0.0038166046, 0.0013408661, 0.06530762, -0.023712158, 0.034729004, -0.009010315, 0.031707764, -0.015045166, -0.01512146, 0.021331787, 0.003364563, -0.0569458, -0.026763916, 0.02470398, -0.040863037, 0.04220581, -0.033355713, 0.050445557, 0.042053223, -0.0054512024, -0.044403076, -0.00032305717, 0.0859375, 0.023132324, 0.054626465, 0.010398865, 0.017593384, 0.030059814, -0.01789856, 0.0032291412, 0.042297363, -0.007850647, -0.028167725, 0.019638062, 0.025390625, -0.01776123, 0.018981934, 0.021575928, 0.013061523, -0.02293396, -0.008239746, 0.009239197, 0.00060224533, -0.006843567, 0.02848816, 0.021255493, -0.008026123, -0.07897949, -0.04925537, -0.025985718, 0.041137695, 0.0065727234, 0.023605347, 0.0026378632, 0.024597168, 0.008888245, 0.027526855, -0.027801514, 0.00831604, -0.03967285, 0.01739502, 0.041748047, -0.0012140274, -0.01612854, 0.06549072, -0.020645142, 0.013046265, 0.009735107, -0.04006958, 0.011070251, 0.05807495, -0.027572632, -0.03189087, -0.013130188, 0.013397217, -0.004535675, -0.005870819, 0.009803772, 0.012207031, -0.00018906593, -0.00818634, -0.05206299, 0.011817932, -0.0262146, 0.02116394, 0.020050049, 0.02180481, -0.10284424, -0.021759033, 0.0050735474, -0.031982422, 0.021591187, 0.05114746, 0.046203613, 0.038909912, 0.0357666, 0.041503906, 0.08300781, 0.00409317, 0.03111267, -0.0060310364, -0.0022888184, 0.010253906, -0.025634766, 0.0113220215, -0.014160156, -0.022750854, 0.0058670044, -4.4226646e-05, -0.0110321045, 0.07904053, 0.027282715, -0.025878906, -0.016174316, -0.04257202, 0.037109375, -0.014831543, 0.04156494, -0.05038452, 0.0036849976, -0.024856567, 0.0007715225, 0.022644043, -0.03375244, -0.04736328, 0.06713867, -0.023895264, -0.0211792, -0.031829834, -0.007095337, 0.030212402, -0.04510498, 0.008361816, 0.0036830902, 0.07910156, 0.031311035, 0.047790527, -0.015563965, -0.09265137, -0.099731445, 0.04534912, -0.11035156, -0.023239136, 0.0035800934, -0.0043907166, -0.0059127808, -0.0034599304, 0.029571533, 0.074035645, 0.022323608, 0.004924774, 0.039733887, -0.028320312, -0.024597168, 0.061645508, 0.03112793, -0.0496521, -0.01612854, -0.0010004044, -0.0046577454, 0.018447876, 0.025222778, -0.027801514, -0.06555176, -0.021652222, -0.031219482, 0.0014333725, -0.02331543, 0.0076293945, -0.005203247, 0.0019626617, -0.02835083, -0.046173096, 0.0054779053, 0.0059661865, 0.023483276, 0.029022217, 0.04824829, -0.006263733, -0.046203613, -0.03866577, -0.022903442, 0.026763916, 0.04623413, -0.002506256, 0.026748657, 0.01838684, -0.035369873, 0.03277588, 0.0036907196, -0.003578186, -0.011367798, -0.038330078, -0.007041931, -0.044281006, -0.0014219284, 0.026153564, 0.007709503, -0.015930176, 0.01852417, 0.0032310486, -0.017486572, -0.014419556, -0.0158844, 0.010620117, -0.013069153, -0.042419434, -0.012748718, -0.033172607, 0.006641388, 0.0211792, 0.01096344, -0.0012426376, 9.995699e-05, -0.00982666, -0.004852295, 0.022720337, 0.014572144, 0.01171875, -0.016494751, 0.039611816, -0.0039749146, 0.07293701, 0.00983429, -0.06188965, -0.04663086, 0.047088623, 0.01612854, -0.039031982, 0.0340271, -0.015625, 0.013130188, -0.013259888, -0.052001953, -0.041931152, 0.01675415, 0.026916504, -0.035491943, 0.023834229]}, "B00IZCNOXK": {"id": "B00IZCNOXK", "original": "Brand: Flame King\nName: Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black\nDescription: \nFeatures: RV/TRAILER COMPATIBLE - Flame King\u2019s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are!\nCOMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface\nMOUNTABLE or FREE STANDING \u2013 The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping!\nSECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces\nPLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48\" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96\" Quick Connect Regulator Hose, Item LPRH8\n", "metadata": {"Name": "Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black", "Brand": "Flame King", "Description": "", "Features": "RV/TRAILER COMPATIBLE - Flame King\u2019s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are!\nCOMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface\nMOUNTABLE or FREE STANDING \u2013 The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping!\nSECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces\nPLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48\" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96\" Quick Connect Regulator Hose, Item LPRH8", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.023452759, 0.023101807, -0.02128601, 0.0029067993, 0.008476257, -0.027038574, -0.015434265, -0.04034424, -0.04296875, -0.0036468506, -0.0042533875, 0.05078125, -0.023849487, -0.026107788, 0.04660034, -0.032287598, 0.02458191, -0.0015935898, 0.029907227, 0.0056648254, 0.0026664734, 0.029571533, -0.005809784, 0.063964844, 0.07495117, -0.018417358, -0.014663696, 0.008621216, 0.049591064, 0.03857422, 0.050750732, -0.047180176, 0.042907715, -0.018478394, -0.047180176, -0.060760498, -0.030136108, -0.009178162, -0.054138184, 0.015556335, -0.006439209, 0.010406494, -0.032958984, -0.0099487305, -0.02998352, -0.037994385, -0.01927185, -0.023452759, -0.005432129, 0.0096206665, -0.0062789917, -0.014083862, 0.0031394958, 0.030044556, 0.0032901764, 0.033935547, 0.015350342, 0.002664566, 0.00730896, -0.014167786, -0.0010519028, 0.043518066, 0.02357483, 0.029434204, -0.044799805, -0.024169922, 0.06933594, -0.03250122, 0.018432617, -0.017410278, 0.0357666, 0.052124023, 0.021316528, 0.04067993, -0.021026611, -0.04623413, 0.012817383, -0.0071640015, 0.045898438, -0.0022563934, -0.0149002075, -0.047729492, 0.050842285, 0.004108429, -0.047912598, -0.00793457, -0.012168884, 0.019729614, -0.009765625, -0.036712646, -0.007648468, -0.0005683899, -0.044830322, 0.021560669, -0.012588501, -0.023406982, -0.03640747, -0.056671143, 0.031051636, 0.011924744, 0.041992188, -0.04373169, 0.03640747, 0.0012102127, -0.023117065, 0.05343628, 0.021896362, 0.0234375, -0.009338379, -0.0041923523, -0.01133728, -0.040771484, 0.041503906, 0.03765869, -0.048614502, -0.017333984, 0.010246277, 0.005290985, -0.0138549805, 0.018234253, -0.03302002, -0.0068855286, -0.009963989, 0.025268555, 0.050811768, 0.04095459, 0.009384155, 0.008148193, 0.0044898987, 0.040161133, -0.01171875, -0.05001831, 0.0048294067, 0.08404541, 0.04208374, -0.022247314, 0.0058174133, -0.012039185, 0.0022907257, -0.0077781677, -0.028274536, 0.012840271, 0.04788208, -0.0211792, -0.020263672, 0.0184021, 0.010559082, 0.025009155, -0.0026359558, -0.079589844, 0.036315918, -0.015930176, -0.0024147034, 0.029541016, -0.015640259, 0.017059326, -0.027954102, 0.005722046, 0.01411438, -0.017547607, -0.0073165894, -0.030471802, -0.006225586, -0.039398193, -0.047027588, 0.029815674, -0.029769897, -0.002161026, 0.011505127, 0.046569824, -0.023422241, 0.04159546, -0.004135132, -0.015365601, -0.027435303, -0.028564453, 0.011650085, 0.097351074, 0.04751587, -0.123291016, -0.057769775, -0.079589844, 0.14318848, -0.06161499, -0.0010595322, 0.010238647, 0.012817383, 0.018997192, -0.0030899048, 0.008003235, -0.0005173683, 0.03616333, -0.029800415, -0.0056877136, 0.024169922, 0.0017986298, -0.016860962, -0.0049972534, 0.015457153, -0.029693604, -0.0020275116, 0.0234375, 0.009544373, 0.025817871, 0.04168701, 0.003376007, 0.0056037903, 0.014762878, 0.04537964, 0.024917603, -0.0016031265, 0.00088500977, 0.00017368793, -0.044799805, -0.032470703, 0.024169922, -0.030700684, 0.044647217, 0.008911133, 0.027862549, 0.048553467, -0.043762207, 0.044281006, -8.6426735e-06, 0.035736084, -0.021499634, -0.018310547, -0.017211914, 0.02658081, -0.006538391, -0.0040512085, 0.033813477, 0.05130005, 0.028640747, -0.032104492, 0.038116455, 0.04663086, 0.045776367, -0.042755127, -0.0068740845, -0.009315491, -0.011657715, -0.06640625, 0.01676941, -0.048858643, -0.032989502, -0.0095825195, 0.027954102, 0.023284912, 0.030380249, 0.03918457, -0.013305664, 0.0028514862, 0.026901245, 0.00945282, 0.009300232, -0.028030396, -0.029876709, -0.054138184, 0.0357666, 0.0028190613, 0.0027637482, 0.018447876, -0.014732361, 0.08679199, -0.009674072, 0.047546387, 0.013000488, -0.053527832, 0.024291992, 0.02178955, 0.015235901, -0.01914978, -0.010604858, -0.0035381317, -0.024841309, -0.0040016174, 0.035186768, -0.059936523, -0.033996582, -0.0055770874, -0.034362793, 0.033691406, 0.004432678, 0.04937744, -0.0053901672, 0.04067993, -0.0031719208, -0.0031414032, -0.025268555, 0.008682251, -0.02027893, -0.008895874, -0.013801575, 0.022216797, -0.03817749, 0.0625, 0.007255554, 0.006252289, -0.019851685, 0.01222229, 0.030593872, -0.038238525, 0.0073165894, 0.00020086765, -0.0234375, -0.016311646, 0.01651001, 0.012939453, -0.052978516, 0.021148682, 0.02859497, 0.03125, -0.03378296, 0.07110596, 0.014976501, 0.008575439, 0.036712646, 0.022720337, 0.031188965, -0.0015592575, -0.005039215, -0.0016393661, 0.0029468536, 0.017227173, -0.031433105, 0.02243042, -0.0035438538, -0.009338379, 0.007381439, -0.021469116, -0.001906395, -0.0018367767, 0.024658203, -0.008163452, -0.0053634644, -0.006175995, 0.0362854, -0.006351471, -0.062286377, -0.011367798, 0.0032215118, -0.012863159, 0.0035648346, -0.020355225, 0.0065612793, 0.04824829, 0.016967773, -0.03137207, 0.033447266, -0.017959595, -0.022384644, 0.020874023, 0.027160645, 0.0035305023, -0.028259277, -0.041503906, -0.04083252, -0.060699463, -0.0960083, -0.017684937, -0.0036201477, -0.052368164, -0.024047852, 0.02949524, -0.0014743805, -0.03869629, 0.0012207031, 0.01940918, -0.013267517, 0.010635376, -0.009414673, -0.011154175, -0.0013446808, 0.022659302, -0.018127441, 0.041625977, -0.025360107, 0.036987305, 0.0284729, 0.00869751, 0.030181885, -0.029464722, 0.024429321, 0.01777649, 0.049835205, 0.051330566, 0.052612305, -0.008926392, -0.044891357, -0.017532349, 0.046295166, -0.047180176, -0.00541687, 0.009628296, 0.0036468506, 0.020523071, 0.009056091, -0.022659302, -0.03253174, -0.10681152, 0.0026054382, -0.028549194, -0.044311523, 0.000916481, -0.058166504, -0.052215576, -0.07861328, 0.0012922287, 0.013244629, -0.022827148, 0.01838684, -0.04232788, 0.022949219, -0.01828003, -0.026657104, -0.0034008026, -0.009109497, 0.01373291, -0.02029419, 0.0211792, -0.059936523, 0.0031356812, -0.008216858, -0.05718994, 0.010665894, -0.01826477, 0.048736572, -0.036346436, 0.029296875, 0.004886627, -0.0132369995, 0.0087890625, 0.021850586, -0.026306152, 0.0072746277, 0.00030326843, -0.04055786, 0.025680542, -0.04360962, -0.04727173, -0.02192688, -0.025894165, 0.00022923946, -0.006511688, -0.035827637, -0.013885498, -0.058258057, -0.016921997, -0.033721924, 0.0061798096, 0.016311646, 0.023162842, 0.023895264, 0.0098724365, 0.07531738, 0.01876831, 0.05340576, 0.055847168, -0.02961731, -0.010398865, -0.028121948, 0.0043678284, 0.044006348, -0.021270752, -0.00970459, 0.038269043, 0.0032444, -0.028076172, 0.019485474, -0.023086548, 0.0018320084, -0.010887146, -0.003932953, -0.01675415, 0.006008148, 0.012466431, 0.013977051, 0.018707275, -0.015090942, -0.059417725, 0.0184021, -0.09283447, 0.076171875, 0.033843994, -0.016906738, 0.075683594, 0.036193848, -0.011566162, 0.07531738, 0.05807495, 0.023925781, 0.02067566, 0.05319214, -0.019729614, 0.00944519, 0.014060974, -0.024993896, 0.012046814, 0.0138168335, -0.06628418, -0.0023384094, 0.040130615, -0.023452759, 0.006034851, -0.009422302, -0.0059509277, -0.001581192, -0.0006079674, 0.00466156, -0.001493454, -0.025924683, -0.008018494, -0.0049476624, -0.0016613007, -0.027801514, 0.017715454, 0.0068244934, -0.032958984, -0.013076782, -0.02180481, 0.013061523, 0.022216797, 0.049957275, -0.05117798, 0.016937256, -0.015541077, -0.0047683716, 0.012893677, 0.008781433, -0.0006699562, -0.018234253, 0.027862549, 0.0149383545, 0.0037975311, -0.002298355, 0.0018444061, 0.010726929, -0.063964844, -0.06286621, -0.013702393, 0.0006504059, 0.025131226, -0.03503418, 0.007865906, -0.062347412, -0.014480591, -0.025238037, -0.04550171, -0.02180481, -0.014556885, -0.0012054443, -0.047210693, -0.0013875961, -0.025985718, 0.0054855347, -0.06689453, 0.04107666, 0.0060577393, -0.03591919, -0.006416321, 0.02281189, -0.043395996, -0.010612488, -0.030395508, -0.000787735, 0.03842163, 0.016998291, 0.0037956238, 0.0010223389, -0.0435791, -0.014419556, 0.022262573, -0.010414124, -0.014572144, -0.016845703, -0.012870789, -0.03137207, 0.042022705, 0.046661377, 0.0039367676, 0.03225708, -0.016021729, -0.064208984, -0.014862061, -0.012229919, 0.04260254, -0.034820557, -0.0026569366, -0.007133484, 0.01789856, -0.019363403, -0.0034217834, -0.009315491, 0.04373169, 0.010314941, 0.051879883, -0.06210327, -0.023529053, 0.013404846, -0.024124146, 0.001572609, -0.005142212, -0.019622803, 0.015411377, 0.02696228, 0.00025081635, -0.010368347, -0.0107421875, 0.009552002, 0.011077881, 0.02835083, -0.036102295, -0.0005745888, -0.019515991, -0.0033073425, -0.053131104, 0.087646484, 0.06945801, 0.004558563, 0.01789856, 0.022201538, -0.014930725, -0.06201172, -0.0037517548, -0.04095459, 0.011634827, -0.005077362, -0.017990112, -0.0105896, -0.018707275, -0.0030593872, 0.02305603, -0.041992188, 0.013771057, 0.01007843, 0.030319214, -0.016296387, 0.002380371, 0.076660156, 0.025604248, 0.020019531, 0.038970947, -0.06567383, 0.011138916, -0.036376953, -0.023834229, 0.03540039, -0.022644043, -0.028503418, 0.031402588, 0.016967773, -0.02154541, 0.023986816, 0.0036411285, -0.00843811, -0.016601562, 0.0023422241, 0.010276794, -0.003047943, -0.027008057, 0.014030457, -0.043273926, 0.012680054, -0.000243783, 0.021026611, -0.016036987, 0.03982544, -0.01763916, 0.016418457, 0.02960205, -0.061523438, 0.012756348, -0.012489319, -0.016494751, -0.010253906, 0.08850098, -0.0016784668, 0.010765076, -0.038238525, 2.8431416e-05, 0.013511658, 0.024475098, -0.002784729, -0.012931824, 0.03363037, 0.0045394897, -0.014480591, 0.018432617, 0.032196045, -0.044525146, -0.032104492, 0.02835083, -0.0501709, -0.053894043, -0.00415802, 0.023544312, -0.006137848, -0.04650879, -0.040893555, 0.0440979, 0.028198242, 0.0069007874, 0.021331787, 0.0033512115, -0.0047836304, -0.017440796, -0.00141716, -0.0039749146, 0.0021514893, -0.0068855286, 0.0209198, -0.016983032, 0.009140015, -0.061553955, -0.05041504, -0.035705566, 0.023117065, 0.003440857, 0.058746338, -0.019592285, -0.037750244, 0.0034503937, 0.04623413, 0.024047852, 0.009895325, -0.04244995, 0.010284424, 0.020324707, 0.040863037, -0.039367676, -0.01109314, 0.07110596, -0.05456543, -0.03567505, -0.043029785, 0.04776001, 0.0062561035, 0.0055389404, 0.08874512, 0.051727295, 0.014183044, 0.036590576, -0.010108948, -0.06384277, 0.0064849854, 0.008003235, -0.120666504, -0.025436401, -0.027618408, 0.010406494, -0.023269653, -0.0045051575, -0.014480591, 0.03866577, -0.006591797, -0.0141067505, -0.030639648, -0.03302002, -0.0023918152, -0.05331421, 0.0014162064, -0.017745972, 0.002828598, -0.013824463, -0.015838623, -0.048614502, 0.009002686, 0.026687622, 0.036743164, 0.027038574, -0.0013284683, 0.013595581, 0.0362854, -0.06768799, 0.069885254, -0.028579712, 0.011154175, 0.013008118, 0.018188477, -0.0181427, 0.03451538, -0.008270264, 0.0039863586, -0.032684326, 0.036254883, 0.0010147095, 0.039764404, -0.08251953, -0.030059814, 0.006008148, 0.0625, -0.0340271, -0.01763916, -0.004310608, 0.010719299, -0.013137817, -0.029144287, 0.026855469, -0.027282715, -0.019119263, -0.01512146, 0.0038166046, 0.02645874, 0.0013141632, 0.013969421, 0.033111572, 0.037475586, -0.026168823, 0.009773254, -0.004535675, 0.0075683594, 0.070251465, -0.019012451, 0.0044059753, -0.0032405853, 0.041015625, 0.008972168, -0.01247406, -0.011199951, 0.00869751, 0.035095215, 0.025466919, -0.0051956177, -0.035888672, 0.016723633, 0.03463745, -0.055389404, 0.004119873, -0.022949219, -0.011810303, -0.031082153, -0.030395508, -0.020614624, 0.0061416626, 0.02268982, -0.0044059753, 0.034179688, -0.00869751, 0.019195557, -0.013160706, -0.06628418, 0.004711151, -0.032684326, -0.011375427, -0.010406494, -0.010643005, 0.019851685, -0.037261963, 0.055419922, 0.009712219, -0.0014686584, 0.042022705, -0.025527954, -0.007789612, 0.00083208084, 0.00051259995, -0.010597229, -0.03933716, 0.04510498, 0.024337769, -0.009994507, 0.059661865, 0.02104187, -0.001449585, -0.009933472, -0.066833496, 0.045318604, -0.05038452, 0.044036865, 0.015777588, 0.045806885, -0.061920166, -0.018112183, -0.008644104, -0.005367279, -0.0042266846, 0.06262207, -0.0003914833, 0.0390625, 0.0039482117, 0.03744507, 0.04257202, -0.026428223, 0.024490356, 0.021026611, -0.024108887, 0.020584106, -0.0113220215, 0.019485474, -0.0211792, -0.030776978, 0.014663696, -0.029159546, 0.012641907, 0.011459351, 0.010322571, -0.021377563, -0.016494751, -0.032836914, 0.007205963, -0.007858276, 0.06100464, -0.043060303, -0.0041275024, -0.03225708, -0.025146484, -0.013557434, -0.034088135, -0.051696777, 0.062561035, -0.026779175, -0.010955811, 0.011749268, 0.0019226074, -0.00073337555, -0.037841797, 0.004425049, 0.009712219, 0.0076446533, -0.010131836, 0.009025574, -0.007549286, -0.02293396, -0.043304443, 0.015930176, -0.05130005, -0.019363403, -0.032806396, 0.013137817, -0.009986877, -0.007980347, 0.032165527, 0.03451538, 0.013114929, 0.0058288574, 0.009208679, -0.045196533, 0.007888794, 0.022125244, 0.0024032593, -0.031311035, -0.06866455, 0.00065612793, 0.015823364, -0.005176544, 0.027816772, -0.014305115, -0.09161377, -0.008140564, -0.026000977, 0.027832031, -0.0044517517, -0.01638794, 0.0045051575, -0.0038452148, -0.049468994, -0.03479004, -0.015197754, 0.00340271, 0.035369873, 0.046569824, 0.04159546, 0.020111084, -0.07489014, -0.027053833, -0.030914307, -0.0010032654, 0.014137268, -0.03353882, 0.010818481, 0.0074806213, -0.02041626, -0.017623901, -0.0008454323, 0.015472412, -0.014678955, 0.0006546974, -0.0018129349, -0.03125, 0.0069236755, -0.025238037, -0.03225708, -0.0065574646, 0.06695557, 0.0027256012, -0.011123657, -0.0032100677, -0.025238037, -0.02406311, -0.0013570786, -0.0138168335, -0.03475952, -0.014350891, 0.0063323975, 0.029891968, -0.016296387, 0.002822876, -0.019454956, 0.012817383, -0.013793945, 0.027633667, 0.01247406, 0.021896362, -0.028015137, 0.06518555, 0.02180481, 0.040008545, -0.03366089, -0.074157715, -0.054595947, 0.0030612946, -0.026000977, 0.020248413, 0.015792847, -0.0023269653, 0.0061531067, 0.024490356, -0.0152282715, -0.045898438, 0.023391724, 0.032836914, 0.013809204, 0.032836914]}, "B00FL8LL7M": {"id": "B00FL8LL7M", "original": "Brand: Hiland\nName: Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb\nDescription: \nFeatures: Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it\nOur fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes\nHeat Rating: Higher temperature when compared to logs, lava rocks, stones, etc.\nIdeal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires\nAvailable in 10 and 20 pounds\n", "metadata": {"Name": "Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb", "Brand": "Hiland", "Description": "", "Features": "Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it\nOur fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes\nHeat Rating: Higher temperature when compared to logs, lava rocks, stones, etc.\nIdeal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires\nAvailable in 10 and 20 pounds", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00819397, -0.011802673, -0.062347412, -0.07745361, 0.018234253, -0.007007599, -0.027236938, 0.04534912, -0.030151367, 0.01210022, -0.013702393, 0.034301758, -0.007183075, -0.02142334, 0.01991272, -0.030014038, 0.0037670135, -0.011177063, -0.03552246, -0.040924072, -0.0019741058, -0.04864502, -0.011413574, 0.05819702, 0.04248047, -0.03967285, -0.0056762695, -0.019882202, 0.055358887, 0.022644043, 0.03050232, -0.012207031, 0.035095215, -0.020355225, -0.016235352, 0.003211975, 0.0037670135, -0.01626587, -0.031097412, 0.028945923, -0.021453857, 0.010528564, 0.022964478, -0.009918213, -0.021102905, -0.003326416, -0.02961731, -0.020065308, -0.006095886, 0.034088135, 0.010002136, 0.022064209, 0.0068740845, 0.023162842, -0.004486084, -0.024520874, 0.022659302, 7.5638294e-05, 0.0059814453, -0.016784668, -0.020568848, 0.02293396, 0.032928467, 0.021194458, -0.02027893, -0.029067993, 0.06311035, 0.011894226, -0.022384644, -0.05227661, 0.015930176, 0.051818848, 0.0013990402, -0.0074043274, -0.035583496, 0.03186035, 0.019256592, 0.025009155, 0.01007843, 0.002696991, -0.035705566, -0.016036987, 0.03161621, -0.01335907, -0.017608643, 0.014816284, -0.027526855, -0.00737381, -0.037322998, -0.020217896, -0.013641357, -0.0014343262, -0.080078125, 0.03149414, 0.008636475, -0.0076065063, -0.032196045, -0.10229492, 0.06555176, -0.009849548, 0.03857422, -0.050323486, -0.0073051453, 0.030899048, -0.016845703, 0.001291275, -0.019805908, -0.030349731, -0.015777588, 0.042114258, -0.023910522, -0.05050659, -0.0072364807, -0.031799316, -0.028152466, 0.03375244, 0.026504517, -0.017242432, 0.027694702, -0.014778137, 0.0054855347, 0.009361267, -0.031021118, 0.05630493, -0.009742737, -5.477667e-05, 0.002811432, -0.004436493, -0.06341553, 0.03475952, -0.029220581, 0.022079468, 0.022537231, 0.011329651, -0.032684326, -0.012359619, 0.012794495, 0.011192322, 0.0021247864, -0.028533936, 0.015457153, 0.03314209, 0.051208496, -0.0033016205, -0.020950317, 0.05041504, 0.009399414, -0.017166138, -0.010848999, -0.048034668, -0.006542206, -0.066101074, 0.055389404, 6.7949295e-05, -0.02407837, -0.023025513, 0.0690918, -0.04550171, -0.06329346, -0.06738281, 0.012199402, 0.014175415, 0.003917694, 0.04751587, -0.015449524, -0.0044136047, 0.034820557, -0.008674622, 0.012321472, 0.041259766, 0.0021572113, -0.015472412, -0.035217285, 0.009300232, 0.010360718, 0.019577026, 0.006000519, 0.11968994, 0.04168701, -0.11669922, -0.07281494, -0.075927734, 0.18066406, -0.072387695, -0.0062942505, -0.033325195, -0.009155273, -0.044952393, 0.033691406, -0.0074386597, 0.014633179, 0.011581421, -0.017242432, -0.053497314, -0.025970459, 0.025314331, -0.017242432, 0.026519775, -0.025039673, 0.044281006, -0.015045166, 0.004337311, -0.018478394, 0.014793396, -0.021072388, -0.023895264, -0.004722595, 0.02017212, 0.0073165894, 0.030380249, -0.010513306, -0.017929077, -0.007873535, -0.007167816, 0.0054397583, 0.020721436, -0.013214111, -0.009544373, 0.015625, -0.025115967, 0.028564453, 0.034332275, 0.009712219, 0.014862061, 0.028259277, 0.008094788, -0.048339844, -0.0031757355, 0.03225708, -0.017730713, 0.00060129166, 0.07733154, 0.07550049, 0.07861328, -0.005050659, 0.034973145, 0.054473877, 0.01977539, -0.029541016, -0.021530151, 0.0128479, -0.010253906, -0.0029525757, 0.046966553, 0.00042772293, -0.003376007, 0.007850647, 0.012969971, -0.031097412, 0.018081665, 0.03591919, 0.023391724, 0.009864807, 0.007095337, -0.034210205, 0.03616333, -0.004928589, 0.036071777, -0.013092041, 0.021636963, -0.034088135, 0.05947876, 0.05239868, -0.0002696514, -0.04159546, 0.0026187897, 0.022354126, 0.035247803, 0.028182983, -0.035614014, 0.0029201508, 0.033050537, -0.002210617, -0.015327454, 0.02848816, 0.014511108, -0.012924194, 0.009971619, 0.0095825195, -0.0065841675, -0.023040771, -0.025939941, 0.011909485, -0.0057258606, 0.026885986, 0.009376526, 0.03845215, -0.042053223, 0.016967773, -0.010787964, 0.009437561, -0.0039024353, -0.027313232, 0.03842163, -0.033111572, -0.045532227, -0.047424316, -0.00033450127, 0.01727295, -0.033721924, -0.010787964, 0.054779053, -0.02809143, 0.039764404, -0.0066719055, 0.04473877, -0.029586792, 0.04324341, 0.02822876, -0.046569824, 0.03845215, 0.00028777122, 0.018203735, -0.006916046, 0.04949951, 0.019973755, 0.023101807, 0.04083252, 0.055511475, 0.043121338, -0.04876709, 0.052764893, 0.0014066696, 0.030761719, 0.04486084, -0.009048462, -0.023742676, -0.001660347, 0.030044556, 0.031463623, 0.040252686, 0.049804688, 0.006340027, -0.06842041, 0.009559631, -0.043914795, 0.0071411133, 0.036621094, -0.0055770874, -0.05279541, -0.00019907951, 0.0074806213, -0.0007801056, 0.045074463, -0.067993164, -0.022018433, 0.02532959, -0.009506226, -0.0064086914, -0.0013580322, 0.0423584, 0.006088257, -0.014892578, 0.03125, 0.0049552917, 0.01386261, 0.00655365, 0.03994751, 0.010520935, -0.033325195, 0.002374649, -0.03564453, -0.059143066, -0.026550293, 0.06677246, -0.011795044, -0.06689453, -0.020980835, 0.0043792725, 0.028518677, 0.052947998, 0.0021038055, -0.031311035, -0.03387451, -0.041778564, -0.044525146, 0.01914978, -0.038970947, 0.00762558, -0.0075035095, -0.0030784607, 0.014045715, -0.013175964, -0.0109939575, 0.029296875, 0.0025901794, 0.026901245, 0.024536133, 0.031433105, -0.0027923584, -0.0018262863, -0.024230957, -0.009567261, -0.02456665, -0.02305603, -0.0062446594, 0.0069122314, -0.041931152, 0.017120361, -0.014450073, -0.11291504, -0.004322052, -0.004524231, -0.06213379, 0.0031852722, -0.053741455, -0.07293701, -0.060180664, 0.03778076, -0.014907837, -0.003194809, 0.02267456, -0.021072388, 0.0011959076, -0.03375244, 0.006225586, -0.007217407, -0.012565613, -0.014450073, 0.024734497, 0.022018433, -0.026641846, 0.041870117, 0.054016113, -0.044708252, -0.017044067, -0.020324707, 0.01966858, 0.016784668, 0.02243042, -0.028930664, -0.0069007874, -0.027664185, -0.022888184, -0.01424408, 0.045837402, 0.0149383545, 0.045928955, 0.008399963, -0.0066490173, -0.031951904, -0.006126404, 0.0049324036, 0.004219055, -0.037963867, 0.014221191, 0.015571594, -0.013885498, -0.0050354004, -0.023147583, -0.03656006, 0.00041651726, -0.0021095276, 0.01902771, -0.015258789, 0.020004272, -0.00048422813, 0.03753662, 0.01701355, -0.02949524, -0.035888672, -0.03616333, 0.044830322, -0.009246826, -0.0064353943, -0.021133423, 0.109191895, -0.0030574799, -0.031829834, 0.02885437, -0.012565613, -0.016860962, 0.027008057, 0.012413025, -0.023406982, 0.0062026978, 0.031555176, 0.016403198, -0.038635254, -0.018112183, -0.03479004, -0.0056495667, -0.009162903, 0.034606934, 0.029037476, -0.013153076, 0.05380249, 0.05218506, 0.0074806213, 0.055847168, 0.060699463, 0.037506104, 0.023742676, 0.043701172, 0.013977051, -0.029586792, 0.015792847, -0.0021266937, -0.012619019, -0.02998352, -0.07342529, 0.034088135, -0.025848389, -0.00233078, -0.04107666, -0.0021095276, 0.025970459, -0.003528595, 0.008003235, -0.008468628, -0.010612488, -0.03137207, 0.00730896, -0.004764557, -0.011871338, 0.001162529, -0.0053215027, 0.011054993, -0.01612854, -0.005760193, -0.0069274902, -0.019210815, 0.0121536255, 0.021392822, 0.014892578, 0.009643555, -0.00054216385, 0.014518738, -0.003993988, 0.025497437, 0.014144897, 0.013694763, 0.0046958923, -0.01802063, 0.020568848, -0.017440796, 0.0014133453, 0.002231598, -0.024673462, -0.054351807, 0.033416748, 0.012214661, -0.028274536, -0.044677734, 0.006893158, -0.054016113, 0.026992798, 0.019729614, -0.027908325, -0.020736694, 0.012512207, 0.013664246, -0.013031006, -0.016036987, -0.0149002075, -0.0184021, -0.010986328, -0.0056114197, 0.0023155212, 0.026489258, 0.013793945, 0.05480957, -0.0579834, -0.001991272, -0.044708252, 0.020233154, -0.0069885254, -0.034179688, 0.027740479, -0.03869629, -0.030960083, -0.027374268, 0.064086914, 0.020507812, 0.008033752, -0.029266357, -0.0178833, 0.00724411, 0.038757324, 0.03314209, -0.03805542, -0.03643799, -0.02822876, -0.08618164, -0.039276123, -0.015396118, 0.008125305, 0.0259552, -0.064208984, -0.06640625, 0.007144928, -0.00035738945, 0.0003182888, 0.02949524, -0.011764526, 0.02230835, 0.014945984, -0.060546875, -0.006290436, -0.011550903, -0.007003784, -0.0058021545, -4.1782856e-05, -0.019882202, 0.038208008, 0.0078086853, 0.0074272156, 0.0110321045, 0.012687683, -0.007835388, 0.0044555664, 0.017166138, -0.03656006, 0.02482605, -0.02796936, -0.03994751, -0.06311035, 0.052001953, 0.021514893, -0.02961731, -0.0001283884, -0.001991272, -0.009811401, 0.0042037964, -0.03451538, -0.042175293, 0.034606934, 0.005054474, -0.022247314, 0.0055007935, 0.0067749023, 0.008377075, 0.013191223, 0.022613525, 0.055664062, -0.014976501, -0.025024414, 0.0065345764, -0.053497314, -0.016647339, 0.048065186, -0.004169464, -0.003929138, -0.013389587, -0.01777649, 0.017242432, 0.030273438, 0.010345459, -0.02468872, -0.012168884, 0.008392334, 0.0018615723, -0.026412964, 0.006881714, -0.0067596436, 0.0056419373, -0.025375366, 0.057250977, 0.0020275116, -0.0040283203, -0.052246094, 0.016525269, 0.040222168, -0.05871582, 0.0066604614, 0.017990112, 0.020309448, 0.029281616, -0.014892578, 0.00047969818, 0.02142334, -0.00037550926, 0.0007510185, 0.011962891, -0.01033783, -0.044647217, 0.08074951, 0.0022277832, -0.01763916, -0.05166626, 0.01965332, -0.050598145, -0.017120361, -0.04498291, 0.010345459, 0.015090942, -0.036376953, 0.018630981, 0.06072998, 0.03768921, -0.013343811, -0.025375366, 0.05142212, -0.046783447, -0.0423584, 0.04449463, -0.061401367, 0.007774353, 0.0062408447, 0.002374649, -0.00062179565, 0.0012454987, -0.023468018, -0.042541504, 0.019515991, -0.007282257, -0.0020656586, -0.022079468, 0.04522705, -0.007549286, -0.0058250427, 0.03173828, -0.009002686, 0.005016327, -0.06719971, -0.042663574, -0.032470703, 0.013381958, -0.0072669983, 0.06427002, -0.0146484375, -0.012161255, 0.0009646416, -0.015914917, -0.002111435, 0.022842407, -0.045135498, 0.0010004044, -0.009422302, -0.0033493042, -0.016433716, 0.04324341, 0.051116943, -0.046051025, -0.019714355, -0.06958008, 0.037109375, -0.013298035, -0.018493652, 0.060302734, -0.0035991669, 0.014854431, 0.021347046, -0.00068092346, -0.008666992, 0.027801514, 0.019180298, -0.008583069, -0.044281006, -0.01737976, 0.0107040405, -0.02178955, -0.01979065, -0.03604126, 0.031707764, -0.029693604, -0.059173584, -0.030029297, -0.011039734, 0.019226074, -0.051208496, 0.0025119781, -0.009002686, 0.013427734, 0.019012451, 0.03717041, -0.018508911, 0.007972717, 0.006591797, 0.008079529, 0.01159668, 0.009689331, 0.0067825317, 0.029891968, -0.03982544, 0.005718231, -0.0128479, -0.02357483, -0.0023117065, 0.029388428, 0.05050659, -0.0015029907, 0.025222778, -0.008178711, 0.0040779114, -0.03829956, -0.002462387, 0.0060043335, -0.042938232, -0.019760132, 0.029800415, 0.057556152, 0.032928467, -0.015930176, 0.021362305, 0.00085783005, -0.03479004, 0.0059280396, 0.050689697, -0.033294678, -0.054901123, -0.02986145, 0.010726929, 0.031951904, 0.018356323, 0.027557373, 0.044921875, 0.005947113, -0.03274536, 0.029708862, 0.00021207333, 0.0032463074, -0.013267517, -0.006122589, -0.016693115, -0.0013360977, -0.010177612, -0.01550293, 0.035003662, -0.016464233, -0.0013875961, 0.04244995, -0.008407593, 0.018569946, -0.04107666, 0.013801575, 0.044067383, -0.05984497, -0.013313293, 0.013717651, 0.011070251, -0.011802673, 0.02571106, 0.01939392, 0.04156494, 0.007751465, 0.009963989, 0.036468506, -0.0010528564, -0.005531311, -0.030273438, 0.0096588135, 0.012123108, -0.027038574, -0.00793457, 0.06323242, 0.045166016, -0.029541016, -0.020599365, 0.05569458, 0.014579773, -7.57575e-05, 0.05319214, -0.011108398, -0.0037498474, -0.030273438, -0.013908386, -0.044830322, 0.012107849, 0.041656494, -0.0060768127, -0.009269714, -0.045074463, -0.0017213821, 0.036743164, -0.030715942, -0.019851685, 0.028869629, -0.049621582, 0.016052246, 0.014755249, -0.018920898, -0.08483887, -0.012512207, -0.0077667236, -0.03387451, 0.021606445, 0.048980713, -0.0052108765, 0.060150146, -0.0026187897, -0.07043457, 0.01878357, -0.038208008, -0.010726929, -0.061706543, 0.040252686, 0.032806396, -0.020202637, -0.01939392, 0.026443481, -0.024383545, 0.010231018, 0.007820129, -0.04196167, -0.050567627, 0.014373779, 0.019866943, -0.0010137558, -0.03338623, 0.02748108, -0.0345459, 0.04031372, -0.0061149597, -0.031707764, -0.005470276, 0.0075187683, -0.03427124, -0.011856079, -0.038726807, 0.0076026917, -0.027008057, 0.0016355515, -0.0016546249, -0.02482605, 0.05432129, -0.037841797, 0.015235901, -0.00034689903, 0.0368042, 0.001909256, 0.024551392, -0.019699097, -0.044433594, -0.03137207, 0.025604248, -0.03643799, -0.035369873, -0.004371643, 0.025634766, 0.031402588, 0.0006504059, 0.01638794, 0.009651184, 0.036987305, -0.016616821, 0.04626465, -0.023651123, -0.024505615, 0.03894043, 0.025436401, -0.016967773, -0.008453369, -0.00894165, -0.0012140274, 0.044433594, 0.035583496, 0.0041503906, -0.04876709, -0.032318115, -0.061157227, -0.016723633, -0.004234314, -0.014595032, 0.06149292, 0.02758789, -0.03527832, 0.053863525, 0.030288696, 0.047332764, 0.023086548, -0.00818634, -0.002779007, -0.0579834, -0.01966858, -0.04763794, -0.017318726, 0.03677368, -0.036254883, -0.0014066696, 0.014282227, 0.028884888, -0.012184143, 0.0059890747, 0.03741455, -0.011604309, 0.0005426407, 0.004886627, -0.022903442, 0.0065078735, -0.007904053, 0.012161255, 0.001291275, 0.016311646, -0.004119873, 0.055725098, -0.052124023, -0.04421997, -0.009101868, 0.020141602, -0.011131287, -0.06903076, -0.034088135, -0.03503418, -0.003534317, 0.024475098, -0.031707764, 0.03753662, -0.026535034, -0.013076782, -0.035339355, 0.0057144165, 0.028137207, 0.011329651, -0.050354004, 0.05557251, 0.025772095, 0.029571533, -0.033325195, -0.09088135, -0.067993164, 0.03250122, -0.019012451, 0.01083374, 0.028442383, -0.024261475, 0.007762909, 0.031799316, -0.011123657, -0.025360107, 0.03778076, 0.0713501, 0.014671326, 0.020385742]}, "B07Y337Y8T": {"id": "B07Y337Y8T", "original": "Brand: COSIEST\nName: COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover\nDescription: \nFeatures: \u2705\u3010 Great Bowls of Fire! \u3011: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party\u2019s just begun in patio space or backyard.\n\u2705\u3010 Rockin\u2019 Bowl \u3011: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob.\n\u2705\u3010 Fire is so Delightful \u3011: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady.\n\u2705\u3010 Weights and Measures \u3011: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you\u2019ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people.\n\u2705\u3010 Warranty and Service \u3011: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!\n", "metadata": {"Name": "COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover", "Brand": "COSIEST", "Description": "", "Features": "\u2705\u3010 Great Bowls of Fire! \u3011: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party\u2019s just begun in patio space or backyard.\n\u2705\u3010 Rockin\u2019 Bowl \u3011: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob.\n\u2705\u3010 Fire is so Delightful \u3011: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady.\n\u2705\u3010 Weights and Measures \u3011: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you\u2019ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people.\n\u2705\u3010 Warranty and Service \u3011: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.010017395, -0.0039596558, -0.02268982, -0.05126953, 0.0042877197, 0.007881165, -0.033447266, 0.0075302124, -0.048583984, 0.0064582825, -0.06274414, 0.021438599, -0.02293396, -0.009063721, 0.028793335, -0.06201172, 0.033325195, -0.04650879, -0.016571045, -0.041290283, -0.019195557, -0.04724121, 0.033325195, 0.08453369, 0.023651123, 0.0071487427, 0.0065956116, -0.012084961, 0.029464722, 0.0013275146, 0.03060913, -0.022064209, 0.045806885, 0.02444458, -0.06585693, 0.017578125, -0.0009570122, 0.00039315224, -0.024047852, 0.03869629, 0.003080368, -0.0037498474, -0.04348755, 0.02420044, -0.067871094, -0.028396606, 0.03186035, 0.024307251, -0.01889038, 0.0022716522, 0.008430481, 0.0042266846, 0.015541077, 0.009597778, -0.0060195923, 0.0046310425, 0.013694763, -0.048065186, -0.0057868958, -0.026046753, 0.005279541, 0.014198303, 0.046691895, 0.05581665, -0.042755127, 0.02696228, 0.091918945, 0.005203247, 0.015129089, -0.0692749, -0.026565552, 0.059326172, 0.02848816, -0.030975342, 0.009422302, -0.008468628, -0.0118637085, 0.01889038, 0.023834229, -0.0052108765, -0.0390625, 0.009246826, -0.033233643, -0.04751587, 0.0024051666, -0.0052719116, -0.027526855, -0.003446579, -0.0028743744, -0.0044288635, 0.000109136105, -0.025436401, -0.030593872, 0.05718994, 0.025421143, -0.011909485, -0.046417236, -0.08758545, 0.04876709, 0.0055007935, 0.013694763, -0.038269043, -0.0077285767, 0.016815186, 0.018035889, 0.06311035, -0.037261963, -0.04257202, 0.027236938, 0.0005450249, 0.01802063, -0.028289795, 0.017303467, -0.0048446655, -0.034301758, -0.010551453, -0.00970459, -0.008323669, 0.004020691, -0.018951416, -0.025390625, -0.016326904, 0.012840271, -0.021072388, 0.04434204, 0.0126571655, -0.021072388, 0.01524353, -0.060516357, 0.04119873, -0.03237915, -0.0020599365, 0.038146973, 0.04269409, -0.009162903, -0.023422241, 0.02998352, 0.011604309, 0.02420044, 0.008483887, 0.0062408447, -0.00016379356, 0.03378296, -0.021072388, -0.012435913, 0.015586853, 0.016738892, 0.0146865845, 0.012702942, -0.02798462, -0.029312134, 0.02999878, 0.018569946, 0.00856781, 0.033325195, 0.0010986328, 0.02494812, -0.019439697, -0.013206482, -0.027359009, -0.0037670135, -0.018692017, -0.02142334, 0.010566711, -0.014892578, 0.02923584, 0.010375977, -0.0045433044, 0.018966675, 0.08190918, -0.003736496, 0.07116699, 0.008361816, 0.017807007, 0.0022392273, -0.046051025, 0.013938904, 0.05215454, 0.06188965, -0.06149292, -0.0597229, -0.05517578, 0.1352539, -0.06097412, 0.0031604767, -0.049713135, -0.019897461, -0.05404663, 0.049957275, -0.01071167, -0.009437561, -0.003206253, -0.01512146, -0.01625061, 0.0146102905, -0.02420044, -0.020874023, -0.0048828125, -0.0049095154, 0.010505676, -0.021636963, 0.013122559, 0.025512695, 0.022140503, 0.016235352, 0.046722412, -0.007385254, 0.036712646, 0.037902832, 0.062561035, -0.027526855, -0.004787445, 0.0007739067, -0.009643555, -0.008285522, -0.006790161, 0.0024642944, -0.023269653, -0.0046463013, 0.0017251968, 0.036743164, -0.0072631836, -0.018814087, -0.0001616478, 0.042907715, -0.013046265, -0.02458191, -0.016647339, 0.044128418, -0.010437012, -0.013931274, 0.023406982, 0.05380249, 0.025772095, -0.026031494, 0.036956787, 0.056549072, 0.053344727, -0.036590576, -0.012504578, 0.012046814, -0.03842163, -0.033447266, 0.038238525, -0.0068969727, -0.043701172, -0.015129089, 0.02772522, 0.0005559921, 0.03579712, -0.009140015, -0.008270264, 0.0077934265, -0.013580322, -0.01638794, 0.027236938, -0.029037476, -0.0016212463, 0.023910522, -0.0011777878, -0.011787415, 0.0259552, 0.033966064, -0.0060157776, 0.025115967, -0.06213379, 0.04534912, 0.03475952, 0.02130127, -0.053466797, 0.006839752, 0.025543213, -0.012840271, 0.02796936, -0.0073013306, -0.021057129, -0.012756348, 0.00844574, -0.040740967, -0.011360168, -0.018249512, -0.001947403, 0.00070524216, -0.012580872, 0.015075684, 0.033416748, 0.026290894, -0.020095825, 0.032806396, 0.04260254, 0.050720215, 0.0049476624, 0.035125732, -0.01966858, 0.042541504, -0.009254456, -0.01777649, -0.005180359, 0.037506104, -0.018630981, -0.038970947, 0.047424316, -0.037139893, 0.049591064, -0.012001038, -0.0075531006, 0.0034542084, 0.017456055, -0.005558014, -0.050476074, -0.020141602, -0.015792847, 0.029067993, -0.01890564, 0.055358887, 0.0095825195, 0.022750854, 0.062927246, 0.051849365, 0.06298828, -0.023529053, 0.03857422, -0.027313232, -0.027404785, 0.027648926, 0.0005559921, -0.06048584, -0.004547119, -0.04434204, 0.008811951, 0.062469482, -0.038085938, 0.0079422, -0.03353882, 0.016174316, -0.018325806, 0.01360321, -0.0003941059, -0.011695862, -0.053375244, 0.016052246, 0.0008392334, -0.0057640076, 0.027938843, -0.005191803, -0.019836426, 0.002576828, 0.03111267, -0.004421234, -0.020736694, 0.0035305023, -0.045074463, -0.014129639, 0.0037841797, 0.03060913, -0.019241333, -0.024536133, 0.007843018, 0.017044067, -0.041625977, -0.049621582, -0.01763916, -0.06896973, 0.014541626, 0.06561279, 0.0012331009, -0.075805664, 0.024429321, -0.03503418, -0.009353638, 0.071777344, -0.02015686, -0.02760315, -0.051574707, -0.0859375, -0.04296875, 0.058288574, -0.024093628, 0.022476196, 0.03616333, -0.0026340485, 0.02029419, -0.031402588, 0.0073432922, 0.055023193, 0.017990112, 0.058166504, 0.028198242, 0.07104492, -0.005558014, 0.02923584, 0.009689331, -0.045410156, -0.0033168793, 0.007724762, -0.0063209534, 0.033477783, -0.01713562, -0.025863647, -0.0413208, -0.08380127, 0.0017328262, -0.0022888184, -0.04119873, 0.0051956177, -0.0625, -0.034942627, -0.044433594, 0.005619049, 0.017211914, -0.022857666, 0.012672424, -0.038208008, 0.011199951, -0.0056381226, -0.006412506, 0.029449463, 0.0035991669, -0.02067566, -0.0046539307, 0.027023315, -0.030517578, 0.0017538071, 0.0022296906, -0.03729248, -0.051452637, 0.02998352, 0.05380249, -0.040100098, 0.023483276, 8.440018e-05, -0.031402588, -0.004219055, 0.004787445, -0.009819031, 0.00032377243, -0.005531311, -0.029266357, 0.012313843, -0.03189087, -0.010627747, -0.027023315, -0.003698349, 0.054016113, -0.03918457, 0.02659607, -0.035888672, -0.02305603, -0.029144287, 0.033966064, 0.0024280548, -0.0022678375, 0.018661499, 0.021316528, -0.024276733, 0.038909912, 0.006702423, 0.07434082, -0.008377075, 0.0038814545, 0.050811768, -0.04925537, 0.019317627, 0.044677734, 0.008232117, -0.009597778, 0.020370483, 0.007347107, -0.022399902, 0.01890564, -0.007865906, 0.0060272217, -0.030426025, -0.020446777, 0.019195557, -0.015022278, 0.006450653, 0.030563354, -0.02293396, -0.0184021, -0.040283203, -0.0036258698, -0.05630493, 0.05822754, 0.055908203, -0.035461426, 0.0725708, 0.07281494, -0.03353882, 0.03640747, -0.00039935112, 0.047576904, -0.029159546, 0.059936523, -0.0007929802, 0.0014314651, 0.0012769699, 0.023956299, 0.029205322, 0.024597168, -0.038970947, 0.020904541, 0.019500732, -0.028915405, -0.059661865, -0.018325806, 0.06628418, -0.012817383, 0.015670776, 0.008102417, -0.0029449463, -0.028778076, -0.0061149597, 0.0064353943, -0.010467529, 0.0009069443, -0.00040864944, -0.029693604, -0.01020813, 0.008224487, -0.014602661, 0.009765625, 0.025054932, 0.052246094, -0.04437256, 0.017745972, -0.04107666, 0.027618408, -0.040374756, 0.0031414032, 0.011131287, 0.021072388, -0.029129028, -0.03491211, 0.03488159, 0.002292633, -0.016723633, 0.0095825195, -0.025161743, -0.060668945, -0.010803223, 0.045806885, 0.042114258, -0.01852417, -0.0047569275, -0.016464233, 0.009422302, 0.018463135, -0.05117798, -0.016571045, 0.0025234222, 0.032073975, -0.070373535, -0.0068206787, -0.0284729, 0.05496216, -0.059753418, 0.034484863, -0.005580902, 0.03112793, -0.008300781, 0.041900635, -0.09820557, 0.037322998, -0.0541687, 0.008407593, -0.026397705, -0.053955078, 0.019088745, -0.039855957, 0.0015258789, -0.003982544, 0.05987549, -0.0070648193, 0.0017194748, -0.030075073, 0.009605408, -0.009803772, 0.048461914, 0.020202637, -0.02583313, 0.030517578, 0.0028018951, -0.040130615, -0.052612305, -0.020446777, 0.019515991, -0.027618408, -0.06890869, -0.060577393, 0.02760315, 0.013595581, 0.009857178, -0.013183594, 0.009170532, 0.004776001, 0.0043754578, -0.040283203, -0.009094238, 0.0013999939, -0.039611816, 0.0076446533, -0.0033721924, -0.026107788, 0.064453125, 0.037078857, -0.0032463074, -0.02456665, -0.0070610046, 0.046905518, -0.019226074, 0.016540527, -0.0061569214, -0.027755737, -0.0034999847, 0.023635864, -0.061676025, 0.015586853, -0.031341553, -0.016815186, -0.022384644, -0.045074463, -0.01927185, -0.031951904, -0.022827148, -0.030563354, 0.0072669983, -0.008087158, -0.028152466, -0.01713562, -0.01473999, -0.009414673, -0.0054893494, -0.014732361, 0.027770996, 0.0038471222, -0.016311646, 0.004234314, -0.02796936, -0.015487671, 0.024139404, 0.010658264, 0.032714844, -0.0017061234, -0.035125732, -0.018585205, 0.0021419525, -0.018341064, -0.029968262, 0.007232666, -0.011802673, -0.0043525696, -0.03152466, -0.002779007, 0.028320312, -0.00655365, 0.03829956, 0.047790527, -0.0014638901, -0.017501831, -0.0116119385, -0.008270264, 0.008834839, -0.05859375, 0.011779785, -0.0057792664, -0.0001821518, 0.014228821, -0.032409668, 0.025299072, -0.011497498, -0.02104187, 0.012008667, 0.02947998, 0.013267517, -0.0129470825, 0.046142578, 0.00049829483, -0.02130127, -0.019485474, -0.007472992, -0.015838623, 0.07110596, -0.076293945, 0.008781433, 0.03982544, -0.015617371, -0.013504028, 0.027145386, 0.06317139, -0.03543091, -0.0065612793, 0.057159424, -0.019805908, -0.052886963, 0.026626587, 0.011207581, 0.010681152, 0.012046814, -0.06274414, 0.051940918, 0.014167786, -0.07745361, -0.022079468, 0.0011119843, 0.0038661957, -0.0010690689, -0.026763916, 0.03765869, 0.007926941, -0.012802124, 0.0134887695, 0.017181396, 0.0053482056, -0.013641357, -0.04815674, -0.017150879, 0.04019165, 0.011924744, 0.01625061, -0.0029945374, -0.02923584, -0.018463135, 0.009819031, 0.019348145, -0.03817749, -0.03237915, 0.0034103394, 0.01473999, -0.0019683838, -0.024978638, -0.010391235, 0.03253174, -0.043182373, -0.01828003, -0.05331421, 0.052490234, -0.022277832, -0.042419434, 0.042633057, 0.03475952, 0.004776001, 0.028167725, -0.03173828, -0.029922485, 0.021774292, 0.008964539, -0.071899414, 0.012825012, -0.029525757, 0.023086548, -0.015167236, -0.014808655, -0.03643799, 0.052459717, 0.008346558, -0.036071777, -0.040283203, -0.01007843, 0.015182495, -0.052490234, 0.014915466, -0.0019292831, 0.03152466, 0.015014648, 0.04006958, 0.00043988228, 0.035491943, 0.02848816, 0.0021476746, -0.0146865845, 0.0018100739, 9.2983246e-05, 0.058288574, 0.0056610107, 0.015098572, -0.010009766, -0.007873535, 0.031311035, 0.0158844, 0.009857178, 0.012779236, 0.04196167, 0.009063721, 0.0048332214, -0.008621216, 0.011886597, 0.012031555, -0.0039901733, 0.004764557, 0.0017242432, 0.013824463, 0.03488159, 0.019424438, 0.037384033, -0.017105103, -0.025680542, 0.01083374, 0.008934021, -0.026229858, -0.027648926, -0.036834717, -0.0023059845, 0.021377563, -0.0015392303, 0.035888672, -0.03189087, 0.049835205, 0.015289307, 0.009223938, 0.01436615, 0.014122009, 0.0067481995, -0.037628174, -0.009666443, 0.0063934326, -0.04626465, -0.030929565, 0.04736328, -0.00894928, 0.0055618286, 0.045166016, -0.014709473, 0.025772095, -0.05831909, 0.0072898865, 0.029449463, -0.066467285, 0.018814087, -0.013305664, -0.032348633, -0.018539429, 0.010719299, -0.005077362, 0.013824463, 0.049224854, 0.0013103485, 0.027679443, -0.029464722, 0.030654907, -0.031280518, -0.03439331, -0.028213501, -0.027191162, 0.014198303, -0.04156494, -0.03942871, 0.024780273, -0.0116119385, -0.0035552979, 0.05706787, -0.031463623, -0.0024280548, -0.0010595322, 0.00944519, -0.028259277, 0.038208008, -0.017349243, 0.0046653748, 0.04244995, 0.021316528, -0.016983032, -0.02029419, -0.0033035278, 0.029907227, -0.010040283, -0.015449524, 0.03152466, -0.068115234, 0.009597778, 0.006679535, 0.012367249, -0.02760315, -0.046173096, -0.018737793, -0.023712158, 0.017654419, -0.024139404, 0.025024414, 0.0013189316, -0.042663574, -0.062347412, -0.0029125214, -0.01777649, -0.011383057, -0.060272217, 0.02507019, -0.040222168, -0.029632568, -0.003982544, 0.0046920776, -0.0022716522, 0.020904541, 0.030044556, 0.020050049, 0.021896362, -0.0038166046, 0.008125305, 0.0054512024, -0.0073280334, -0.00036668777, 0.0109939575, -0.01928711, -0.00053596497, -0.02583313, 0.0045051575, -0.023666382, -0.0002901554, 0.028808594, -0.022216797, -0.019134521, 0.04333496, -0.01348114, -0.016799927, 0.0038166046, 0.030715942, -0.03213501, -0.016723633, 0.013198853, 0.014717102, -0.011482239, 0.032196045, 0.02355957, -0.047210693, -0.07293701, 0.002336502, -0.028930664, 0.018493652, -0.025421143, 0.027297974, 0.026763916, 0.0035743713, 0.032684326, 0.009140015, 0.029174805, -0.0099105835, 0.0021247864, -0.008758545, -0.055541992, 0.07763672, 0.02458191, -0.03024292, 0.029769897, 0.028533936, 0.005126953, 0.03555298, 0.02192688, 0.041259766, -0.07525635, -0.029037476, -0.068481445, -0.024276733, 0.010192871, -0.022323608, 0.06161499, 0.015533447, -0.040771484, 0.053344727, 0.025924683, 0.014884949, 0.012504578, -0.018249512, 0.021026611, -0.04006958, -0.013320923, -0.053771973, -0.023147583, 0.03152466, -0.017440796, -0.086120605, -0.015457153, -0.027282715, -0.010009766, -0.03591919, 0.017730713, 0.0066719055, 0.0103302, -0.021438599, 0.027770996, -0.011352539, -0.011169434, 0.030471802, -0.027069092, -0.011802673, -0.010467529, 0.04272461, -0.050323486, -0.020385742, -0.0345459, 0.027130127, -0.024002075, -0.0793457, -0.044921875, -0.082336426, 0.038635254, 0.060272217, -0.026550293, 0.08380127, -0.014022827, -0.027923584, -0.028152466, 0.004211426, -0.0029392242, 0.019424438, -0.014213562, -0.013122559, -0.003358841, 0.07299805, -0.015548706, -0.09063721, -0.050445557, 0.025848389, 0.008377075, -0.031204224, 0.053253174, -0.043060303, 0.005695343, 0.027618408, -0.019165039, -0.029693604, 0.050628662, 0.017242432, 0.023117065, 0.0259552]}, "B07Z3MSPMV": {"id": "B07Z3MSPMV", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze\nDescription: This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.\nFeatures: \u2600LIGHT WEIGHT AND PORTABLE \u2013 This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU's\n\u2600SAFTY DESIGN \u2013The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident\n\u2600WILDLY USE \u2013 Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use\n\u2600EASY AEESEMBLY \u2013 BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour\n\u2600MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating\n", "metadata": {"Name": "BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze", "Brand": "BALI OUTDOORS", "Description": "This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.", "Features": "\u2600LIGHT WEIGHT AND PORTABLE \u2013 This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU's\n\u2600SAFTY DESIGN \u2013The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident\n\u2600WILDLY USE \u2013 Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use\n\u2600EASY AEESEMBLY \u2013 BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour\n\u2600MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018722534, 0.00819397, -0.033843994, -0.029083252, 0.014434814, -0.01625061, 0.0069503784, 0.010391235, -0.020690918, 0.008712769, -0.0064849854, 0.03326416, -0.018936157, -0.026473999, 0.020965576, -0.027435303, 0.027023315, -0.024124146, -0.00068187714, -0.023025513, -0.0019817352, -0.0018129349, -0.004753113, 0.07171631, 0.008354187, -0.0025405884, 0.061340332, -0.0077705383, 0.031341553, -0.0047416687, 0.02357483, -0.017349243, 0.012611389, 0.023025513, -0.024368286, -0.04534912, -0.01927185, 0.010772705, -0.012130737, -0.0024356842, 0.019500732, 0.008659363, -0.05331421, 0.03213501, -0.0703125, -0.0141067505, -0.0022010803, 0.005344391, -0.012771606, 0.00365448, -0.0027313232, -0.013931274, 0.016036987, -0.015136719, -0.033966064, -0.043945312, 0.00094366074, 0.019058228, 0.02633667, -0.054534912, -0.030929565, -0.00043821335, 0.045013428, 0.020248413, -0.056793213, 0.0068092346, 0.025772095, -0.010734558, 0.07208252, -0.061187744, -0.041107178, 0.057250977, -0.023010254, 0.051330566, -0.0418396, -0.035186768, 0.049346924, 0.004463196, -0.0079574585, 0.04977417, -0.031982422, -0.0051231384, 0.008804321, -0.06427002, 0.016204834, -0.033233643, -0.017166138, 0.016815186, -0.0066452026, -0.017318726, -0.0074501038, -0.0026855469, -0.05291748, 0.06585693, 0.019042969, 0.001083374, -0.03744507, -0.091308594, 0.052001953, 0.025146484, 0.03277588, -0.053619385, 0.041870117, 0.0087890625, -0.015426636, 0.01725769, 0.014732361, 0.014823914, 0.016036987, 0.010757446, -0.028747559, -0.0018815994, -0.009552002, -0.00957489, -0.021011353, 0.010627747, -0.024459839, -0.020828247, -0.0057868958, -0.036224365, -0.030883789, -0.035888672, 0.0181427, 0.05041504, 0.02456665, 0.03427124, -0.0071525574, 0.008850098, -0.06970215, 0.038726807, -0.017562866, 0.013061523, 0.026153564, 0.0736084, 0.0012264252, -0.018173218, 0.035614014, 0.016220093, 0.02128601, -0.033111572, 0.04257202, -0.009056091, -0.002193451, 0.030380249, 0.0154418945, 0.029190063, 0.027069092, -0.0031604767, -0.013435364, -0.03286743, 0.014472961, -0.00041294098, 0.046020508, -0.0036392212, -0.012649536, -0.018798828, 0.059936523, -0.05593872, -0.040161133, -0.068725586, -0.029022217, 0.0035953522, 0.0104904175, 0.007297516, 0.0029239655, 0.00774765, 0.026046753, 0.008621216, 0.018463135, 0.08331299, -0.0010957718, -0.011917114, -0.0284729, 0.02859497, 0.002773285, 0.00053167343, -0.044830322, 0.049041748, 0.094055176, -0.1295166, -0.10046387, -0.05609131, 0.13513184, -0.0513916, -0.007156372, -0.024169922, 0.04360962, 0.023147583, -0.017715454, 0.02029419, 0.04055786, 0.015327454, -0.011932373, 0.012870789, -0.009407043, 0.009422302, -0.037109375, 0.040222168, -0.014884949, -0.027191162, -0.056518555, 0.01965332, -0.016784668, -0.011299133, 0.0345459, -0.017608643, 0.006713867, 0.027893066, 0.03213501, 0.02658081, -0.011955261, 0.0068969727, -0.0010871887, -0.072387695, -0.027023315, 0.026504517, 0.016921997, 0.045532227, -0.015464783, 0.03555298, -0.021316528, -0.023590088, -0.01789856, 0.014846802, 0.03036499, -0.03012085, -0.013755798, -0.027374268, 0.020996094, -0.0098724365, -0.018005371, 0.055755615, 0.028030396, 0.025146484, -0.02420044, 0.022140503, 0.06311035, 0.025802612, -0.005794525, -0.015090942, -0.014259338, -0.014503479, -0.03414917, 0.05368042, -0.061401367, -0.0385437, -0.0015697479, 0.032287598, -0.027938843, -0.0019016266, 0.0030174255, -0.004425049, 0.025283813, -0.011077881, -0.03881836, 0.03366089, -0.030822754, 0.0020694733, -0.007873535, 0.022079468, -0.006401062, 0.028839111, 0.043640137, -0.021316528, 0.06222534, -0.023361206, 0.06414795, 0.044158936, 0.009475708, -0.029266357, -0.0013208389, 0.032806396, -0.013679504, 0.0053901672, 0.03479004, -0.024108887, -0.010787964, 0.01133728, -0.027297974, -0.022888184, -0.0017538071, -0.004749298, -0.011550903, -0.0021343231, 0.050201416, 0.030853271, -0.013160706, -0.026641846, -0.08093262, -0.013328552, 0.015602112, 0.0075798035, -0.015563965, -0.027694702, -0.022628784, 0.00793457, -0.0018396378, 0.019821167, 0.020874023, -0.033966064, -0.0065841675, 0.01889038, -0.045562744, 0.022003174, -0.01864624, 0.028625488, -0.012535095, -0.016693115, -0.0045776367, -0.012138367, -0.021087646, 0.0041885376, 0.028564453, -0.031433105, 0.048614502, 0.028259277, -0.009986877, 0.026626587, 0.035491943, 0.013008118, -0.056427002, 0.017211914, -0.030853271, 0.019195557, 0.010673523, 0.02331543, 0.004142761, -0.0064353943, 0.036895752, 0.01727295, 0.04953003, 0.026138306, -0.0104522705, -0.045135498, 0.014251709, -0.020767212, 0.0030574799, 0.043395996, -0.008987427, -0.025054932, 0.0033302307, -0.006881714, 0.008033752, -0.008934021, -0.0025691986, -0.018188477, 0.004802704, 0.023330688, -0.032928467, -0.009880066, -0.004135132, -0.030410767, 0.02230835, -0.033813477, 0.0069999695, 0.0072021484, -0.037200928, -0.04083252, -0.021652222, -0.072265625, -0.03756714, -0.020980835, -0.05407715, 0.021408081, 0.057922363, 0.007926941, -0.031921387, 0.003528595, -0.043914795, -0.02545166, 0.02986145, -0.018417358, -0.031982422, -0.038330078, -0.034484863, 0.00044250488, 0.017791748, -0.04034424, 0.017501831, -0.002532959, 0.007080078, -0.0023422241, 0.022918701, -0.010231018, 0.021911621, 0.019012451, 0.04699707, 0.019607544, 0.050201416, -0.012626648, 0.033721924, 0.010734558, 0.030563354, -0.013015747, -0.01878357, -0.015174866, -0.02217102, -0.025253296, -0.018218994, 0.0016994476, -0.04888916, 0.021881104, 0.014640808, -0.015052795, 0.0107421875, -0.028289795, -0.010040283, -0.038146973, 0.009162903, 0.0423584, -0.0037574768, 0.021896362, -0.011741638, 0.018005371, -0.0051193237, -0.006641388, 0.08251953, -0.004360199, 0.03805542, -0.06439209, 0.014030457, -0.025650024, 0.034301758, 0.0009937286, -0.048706055, -0.009269714, -0.020721436, 0.014083862, 0.0022735596, 0.06524658, -0.021865845, 0.012573242, 0.00056934357, 0.0029735565, -0.05392456, -0.012908936, 0.0074501038, -0.004966736, 0.045196533, -0.047943115, -0.032836914, -0.029891968, 0.013305664, -0.0010385513, -0.013313293, 0.00090265274, -0.011856079, -0.003162384, 0.005458832, -0.059051514, 0.0006427765, 0.014671326, 0.09063721, 0.022979736, 0.025543213, 0.03668213, -0.01322937, 0.016998291, 0.019454956, -0.021575928, -0.032043457, -0.026046753, 0.042236328, -0.012763977, 0.03640747, -0.05621338, 0.0423584, -0.0064926147, -0.008522034, 0.0154800415, -0.027313232, 0.016021729, 0.014640808, 0.00066185, 0.030273438, 0.007320404, 0.010284424, 0.031082153, -0.07550049, -0.032287598, -0.04208374, -0.004245758, -0.057617188, 0.06335449, 0.05807495, -0.023971558, 0.07318115, 0.05545044, 0.0015525818, 0.035888672, 0.03111267, 0.02557373, -0.0023899078, 0.10974121, 0.009536743, -0.0017929077, -0.005973816, 0.023086548, 0.012191772, -0.022613525, 0.00049209595, 0.0012407303, 0.0031166077, -0.021850586, -0.062469482, -0.007980347, -0.008155823, 0.0023918152, 0.025909424, -0.052642822, -0.008964539, -0.019348145, 0.011192322, 0.03390503, -0.042663574, -0.047607422, -0.019058228, -0.0056419373, -0.05770874, 0.028427124, 0.02330017, 0.023010254, 0.00774765, 0.0084991455, 0.034698486, 0.0103302, -0.030197144, -0.010414124, -0.02204895, -0.011772156, 0.0135269165, 0.01878357, 0.0027770996, 0.0035552979, 0.010810852, 0.024047852, -0.018951416, -0.0028533936, 0.0014562607, -0.0309906, 0.010917664, 0.020568848, -0.00957489, 0.002161026, 0.01826477, -0.016143799, -0.03289795, -0.022079468, 0.012992859, -0.00015366077, -0.055755615, -0.04525757, -0.09100342, -0.03451538, -0.008506775, 0.033233643, -0.04437256, 0.020339966, -0.020553589, -0.00687027, 0.03201294, 0.0037555695, -0.05038452, -0.0022506714, -0.024093628, -0.013977051, 0.023788452, -0.03326416, -0.021530151, -0.05279541, -0.025772095, 0.010856628, 0.07867432, -0.010650635, 0.02456665, -0.020019531, -0.0066223145, -0.010276794, 0.022949219, 0.01965332, -0.053741455, 0.050842285, 0.018508911, 0.024383545, -0.0635376, -0.003189087, 0.019119263, -0.03189087, -0.045074463, -0.02734375, 0.04837036, 0.013648987, 0.00029540062, -0.019180298, 0.014732361, 0.0134887695, 0.01625061, -0.074157715, -0.05633545, 0.010810852, -0.016403198, 0.015068054, 0.0009975433, -0.02178955, 0.029968262, 0.030960083, 0.029541016, -0.026397705, -0.006576538, -0.017120361, -0.00030088425, 0.04208374, -0.024642944, 0.006248474, -0.020614624, -0.021392822, -0.045196533, 0.03048706, 0.07550049, 0.013191223, 0.049468994, 0.008964539, 0.012413025, 0.020721436, -0.003320694, 0.021438599, -0.006248474, -0.012298584, -0.0284729, -0.006324768, -0.027633667, -0.014022827, -0.013313293, -0.03363037, 0.010414124, 0.03277588, -0.019943237, -0.0021076202, -0.04144287, -0.049926758, -0.005065918, 0.015365601, -0.017913818, -0.030670166, 0.032226562, -0.02734375, -0.023727417, 0.0008454323, -0.008575439, 0.0006198883, -0.0028057098, -0.0007171631, -0.023239136, -0.017089844, 0.030410767, -0.0020618439, -0.00970459, 0.06085205, -0.028427124, 0.005207062, -0.045043945, 1.1920929e-07, 0.017333984, -0.04788208, 0.022460938, 0.0030918121, 0.020187378, 0.03186035, -0.005203247, 0.0112838745, -0.0011358261, 0.011024475, 0.018051147, 0.0019273758, 0.011436462, -0.025268555, 0.011642456, 0.00081062317, -0.017501831, -0.044555664, 0.01020813, 0.01374054, 0.04498291, -0.024780273, -0.027191162, 0.026519775, -0.010421753, -0.014450073, -0.015556335, 0.0791626, -0.041290283, -0.017745972, 0.028396606, 0.0016145706, -0.048187256, -0.012664795, 0.0006737709, 0.013290405, -0.0036888123, -0.039916992, 0.038604736, 0.017150879, -0.037231445, -0.0064735413, -0.0032444, 0.0048980713, -0.049438477, 0.0030345917, -0.010620117, -0.013900757, 0.0067100525, 0.038635254, -0.0031929016, 0.0049438477, -0.026367188, -0.037750244, -0.026641846, 0.010154724, -0.016860962, 0.035827637, -0.013168335, -0.0020065308, 0.02142334, -0.021560669, 0.0043525696, 0.008781433, -0.0137786865, 0.007221222, 0.016235352, 0.027511597, -0.0002515316, -0.02255249, 0.089782715, -0.03768921, -0.05090332, -0.029922485, 0.093811035, -0.03152466, 0.03692627, 0.020980835, 0.032318115, 0.012672424, 0.047088623, -0.00026869774, -0.04486084, -0.013000488, 0.0061302185, -0.07739258, -0.019210815, -0.030380249, 0.021774292, -0.01689148, 0.0024089813, -0.016799927, 0.040863037, -0.0042381287, -0.012062073, -0.026992798, -0.015640259, -0.0062789917, -0.039520264, 0.015205383, -0.020324707, -0.018630981, -0.01965332, -0.027954102, -0.035095215, 0.0045280457, 0.0058937073, 0.03012085, 0.037597656, -0.00982666, 0.012481689, 0.02293396, -0.032440186, 0.051513672, 0.0234375, -0.059783936, -0.017074585, -0.015823364, 0.050720215, -0.047210693, 0.0016775131, 0.012763977, 0.0038833618, 0.026733398, 0.05206299, -0.010566711, 0.0025119781, -0.008682251, 0.03781128, 0.005710602, -0.017822266, -0.015945435, 0.019134521, -0.025482178, -0.09082031, -0.01285553, 0.024536133, -0.036468506, -0.009979248, -0.02999878, 0.018234253, 0.014633179, 0.0037593842, 0.0061531067, 0.008476257, 0.027801514, 0.0045928955, -0.004638672, 0.011436462, -0.024154663, -0.0088272095, 0.00894928, 0.007686615, 0.023986816, -0.018341064, 0.011947632, -0.00705719, -0.022872925, -0.008659363, 0.030441284, 0.02041626, -0.00028681755, -0.037872314, 0.02722168, 0.031234741, -0.06390381, 0.0027980804, -0.031173706, -0.0062408447, -0.0184021, -0.03149414, -0.010665894, -0.014183044, 0.029388428, -0.035461426, 0.04486084, -0.028518677, 0.010253906, -0.017852783, 0.026992798, -0.05404663, -0.015022278, -0.010948181, -0.00724411, 0.0006175041, 0.0022678375, -0.05621338, 0.018112183, 0.045074463, -0.000667572, -0.0043525696, 0.011169434, 0.02973938, -0.0021514893, 0.014350891, -0.017333984, -0.048675537, 0.035308838, 0.032165527, -0.026794434, 0.04989624, 0.030426025, 0.01424408, -0.012016296, -0.037902832, -0.008613586, -0.02420044, -0.031921387, 0.01309967, 0.03744507, -0.02331543, -0.035858154, -0.026046753, -0.005290985, 0.0007824898, 0.0035476685, 0.007972717, -0.033966064, 0.026535034, -0.017623901, 0.039794922, -0.016571045, 0.008628845, -0.020111084, 0.023925781, -0.0049934387, -0.0009908676, -0.014892578, 0.021865845, 0.0059394836, 0.0040779114, 0.039398193, 0.0079956055, -0.003932953, -0.0062332153, 0.01876831, -0.034240723, 0.03540039, -0.04547119, -0.028884888, 0.024093628, -0.023757935, -0.035949707, 0.010131836, 0.017456055, -0.008728027, 0.040771484, -0.04714966, -0.051879883, -0.002948761, -0.01826477, -0.018875122, -0.0023403168, 0.03213501, -0.0054855347, 0.0053901672, 0.0284729, 0.036468506, -7.5399876e-05, 0.06842041, -0.0090408325, -0.054229736, -0.0748291, -0.003993988, -0.04446411, 0.020141602, 0.010360718, -0.007347107, -0.004016876, -0.0032043457, 0.026397705, 0.07678223, 0.03552246, 0.00111866, 0.03050232, -0.019851685, -0.019485474, 0.046142578, 0.03390503, -0.039367676, -0.010017395, -0.0007686615, 0.01802063, 0.042236328, 0.06524658, 0.011955261, -0.10784912, -0.08886719, -0.14172363, 0.03475952, -0.036743164, -0.014282227, 0.022003174, -0.011474609, -0.039611816, 0.039886475, 0.033355713, 0.051696777, 0.003921509, -0.016860962, 0.04727173, -0.008804321, 0.0025787354, -0.037994385, -0.0154800415, -0.0118637085, 0.014961243, -0.05795288, -0.0021476746, 0.03552246, -0.021133423, 0.012458801, 0.045806885, 0.018005371, 0.017791748, 0.013664246, -0.004753113, 0.018356323, -0.006450653, 0.04498291, -0.026733398, 0.003458023, -0.007167816, 0.02935791, -0.027664185, -0.011100769, -0.039215088, 0.033294678, -0.0064468384, -0.052581787, -0.058654785, -0.09362793, 0.052764893, 0.05819702, -0.022613525, 0.032318115, 0.009284973, 0.0031604767, -0.04638672, 0.0003938675, 0.027130127, 0.004886627, -0.046020508, 0.010696411, 0.020263672, 0.055633545, -0.009674072, -0.03744507, -0.052459717, 0.046722412, 0.008865356, -0.012268066, 0.028457642, -0.029830933, 0.026504517, 0.016403198, -0.033721924, 0.00088739395, -0.0069618225, 0.046691895, -0.020858765, 0.0012607574]}, "B00I8IY6E2": {"id": "B00I8IY6E2", "original": "Brand: Flame King\nName: Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White\nDescription: \nFeatures: For use on propane powered floor waxing, burnishing and polishing machine that use propane.\nComes with convenient installed propane level gauge, so you can always tell how much propane you have.\nPowder coated for long lasting exterior protection\nNewly designed all-in-one multi valve\nPowder coated for long lasting exterior protection, high grade steel welded construction\n", "metadata": {"Name": "Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White", "Brand": "Flame King", "Description": "", "Features": "For use on propane powered floor waxing, burnishing and polishing machine that use propane.\nComes with convenient installed propane level gauge, so you can always tell how much propane you have.\nPowder coated for long lasting exterior protection\nNewly designed all-in-one multi valve\nPowder coated for long lasting exterior protection, high grade steel welded construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0034637451, 0.01878357, -0.0793457, -0.068359375, 0.009971619, -0.019470215, -0.06744385, 0.012214661, -0.015975952, -0.0110321045, -0.0099487305, 0.0075683594, 0.0066337585, -0.044128418, 0.04925537, -0.020080566, 0.039489746, 0.02508545, 0.051879883, -4.0769577e-05, 0.0259552, 0.01689148, 0.022949219, 0.054656982, 0.053588867, -0.011238098, 0.02897644, 0.0015172958, 0.043426514, 0.0231781, 0.037384033, -0.045410156, 0.049804688, -0.020629883, -0.02960205, -0.012260437, -0.039611816, -0.011444092, -0.03930664, -0.0038051605, 0.009788513, 0.0058670044, -0.0025787354, -0.07531738, -0.01574707, -0.012756348, -0.012939453, -0.01600647, 0.047546387, 0.0070877075, 0.007873535, 0.008178711, -0.0075645447, 0.041809082, -0.014434814, 0.03186035, 0.04446411, -0.037841797, -0.016967773, -0.003967285, 0.00919342, 0.057556152, 0.020141602, 0.024429321, -0.06341553, 0.02204895, 0.07867432, -0.041870117, 0.027252197, -0.07299805, -0.014923096, 0.055419922, 0.010276794, 0.024597168, -0.024154663, -0.0023670197, 0.019577026, 0.033294678, 0.023757935, 0.015716553, -0.009262085, -0.04147339, 0.006664276, -0.009498596, -0.0025920868, 0.0031814575, -0.016067505, 0.000108242035, -0.0061302185, -0.019470215, -0.01473999, 0.044036865, -0.013061523, -0.023239136, -0.037506104, -0.036224365, -0.053771973, -0.08526611, 0.032928467, 0.01701355, 0.021057129, -0.034179688, 0.03463745, 0.006389618, -0.00050878525, 0.0692749, 0.0023002625, -0.03616333, 0.009284973, -0.009498596, 0.016616821, 0.007129669, 0.0017518997, -0.03353882, -0.037841797, 0.043640137, 0.007911682, -0.029876709, 0.011154175, -0.021713257, 0.008674622, -0.0046195984, 0.020553589, 0.003419876, 0.009559631, -0.003868103, -0.041931152, -0.0069122314, 0.004840851, 0.024246216, -0.018218994, -0.023590088, 0.00642395, 0.07336426, 0.027648926, -0.01008606, -0.032440186, 0.00033307076, 0.01675415, -0.009376526, -0.02558899, -0.029434204, 0.036743164, 0.0010948181, -0.035736084, 0.07006836, 0.005001068, -0.03387451, -0.0055656433, -0.033111572, -0.081970215, -0.034118652, -0.0087890625, 0.015388489, 0.016952515, -0.014282227, -0.02166748, 0.0023002625, 0.02142334, 0.007335663, 0.014862061, -0.00078964233, -0.002922058, -0.020431519, -0.016464233, -0.022018433, -0.026550293, -0.0007853508, 0.023223877, 0.037353516, 0.008987427, 0.034088135, -0.0002553463, 0.040771484, 0.009597778, -0.015113831, 0.012023926, 0.08709717, 0.05996704, -0.13989258, -0.097473145, -0.088134766, 0.1463623, -0.07635498, 0.017471313, -0.047729492, 0.015945435, -0.05267334, 0.024520874, 0.010444641, 0.015167236, 0.021560669, -0.01146698, -0.038635254, -0.012840271, 0.0049057007, -0.043029785, 0.002166748, -0.022735596, 0.014892578, -0.006843567, 0.0076065063, 0.005218506, 0.013687134, 0.0385437, -0.024749756, 0.02470398, -0.009117126, 0.033050537, 0.02861023, -0.009643555, -0.004058838, 0.0046157837, -0.020309448, -0.0075187683, 0.038635254, -0.028182983, -0.020736694, 0.01146698, -0.043914795, 0.04736328, 0.00047063828, 0.023406982, 0.041137695, -0.028930664, 0.017852783, -0.03857422, 0.02961731, 0.011497498, 0.011299133, 0.070373535, -0.00072288513, 0.087768555, 0.07159424, -0.004135132, 0.02696228, 0.035614014, -0.015449524, -0.021194458, 0.015792847, -0.0027217865, -0.011619568, 0.009124756, 0.08905029, -0.008049011, -0.036987305, 0.0011110306, 0.03829956, -0.022918701, 0.023605347, 0.04888916, 0.02217102, 0.0043945312, 0.022476196, -0.053527832, 0.022384644, 0.0025959015, 0.0262146, -0.059051514, 0.012397766, -0.0038471222, 0.055755615, 0.030014038, 0.021759033, 0.046569824, 0.008918762, 0.052490234, 0.04345703, -0.02671814, 0.0073127747, 0.015914917, 0.03250122, 0.0042686462, -0.004611969, -0.06689453, -0.0027599335, -0.034820557, 0.037200928, 0.005050659, -0.02015686, 0.0077323914, -0.05130005, 0.036712646, 0.012779236, 0.06933594, 0.043914795, 0.05340576, 0.0071754456, -0.060516357, -0.06732178, -0.041107178, 0.038879395, -0.008491516, -0.015304565, 0.04168701, -0.00869751, 0.029556274, -0.0074653625, 0.0181427, -0.036621094, -0.013618469, 0.03253174, -0.028518677, 0.007472992, -0.0075416565, -0.008155823, -0.020858765, 0.04119873, 0.013977051, -0.04537964, -0.004020691, 0.014785767, 0.0287323, 0.01210022, 0.024230957, 0.0063705444, 0.019439697, 0.04598999, 0.028839111, 0.0074920654, -0.05166626, -0.04333496, 0.02003479, 0.014770508, 0.003774643, -0.010749817, 0.03552246, 0.027954102, -0.03942871, 0.018035889, 0.013061523, 0.0025253296, 0.025634766, 0.022094727, -0.018539429, -0.022491455, -0.0036811829, 0.056671143, -0.016174316, -0.064941406, -0.018981934, 0.019226074, -0.0064430237, -0.0037136078, -0.049926758, -0.038024902, 0.0637207, -0.008018494, -0.03704834, 0.010810852, 0.014595032, 0.0034370422, -0.0016450882, 0.0259552, 0.013320923, -0.015579224, -0.015655518, 0.019958496, -0.005722046, -0.032562256, -0.025894165, -0.023208618, -0.056396484, -0.03656006, 0.03994751, -0.004135132, -0.045959473, -0.0021095276, 0.015579224, 0.0030212402, 0.028137207, 0.014755249, -0.06762695, -0.017242432, -0.012496948, -0.03744507, 0.05609131, -0.013618469, 0.026626587, 0.039611816, 0.022613525, 0.036895752, -0.052001953, 0.016113281, 0.05130005, 0.011482239, 0.04425049, 0.054138184, 0.008712769, -0.02835083, -0.025222778, -0.0013952255, -0.07421875, -0.01902771, -0.011795044, -0.007888794, -0.0022659302, 0.033081055, -0.030075073, -0.00730896, -0.10046387, 0.014953613, -0.022827148, -0.021057129, -0.0019760132, -0.008758545, -0.049346924, -0.0680542, 0.016952515, 0.04473877, -0.028839111, 0.009864807, -0.033966064, 0.018432617, -0.013671875, 0.0069770813, -0.027740479, -0.0067863464, -0.026489258, 0.0345459, 0.05960083, -0.068115234, 0.008781433, 0.028381348, -0.017608643, -0.025604248, 0.0012168884, 0.039398193, -0.03479004, -0.00031876564, -0.00233078, -0.041015625, -0.022567749, -0.02168274, 0.002204895, 0.00894928, -0.010246277, -0.024917603, -0.0066566467, -0.011398315, -0.0713501, -0.024169922, 0.014083862, -0.01776123, -0.007850647, -0.012817383, 0.0012559891, -0.029220581, -0.010009766, -0.00061035156, -0.0034294128, 0.0146484375, -0.025665283, 0.010612488, -0.029724121, 0.0047683716, 0.005218506, 0.055358887, -0.0049858093, -0.005054474, -0.0082473755, -0.03778076, 0.020446777, 0.022018433, -0.0073661804, -0.03213501, 0.01838684, 0.0112838745, -0.013587952, 0.016296387, -0.016464233, 0.036895752, 0.023361206, 0.0011119843, -0.004585266, 0.02078247, -0.0054740906, 0.004623413, -0.0031147003, 0.011161804, -0.058929443, 0.027160645, -0.05984497, 0.0071983337, 0.055541992, -0.027633667, 0.04748535, -0.010261536, -0.0074653625, 0.039855957, 0.033050537, 0.02571106, 0.012161255, 0.062469482, -0.004234314, -0.01751709, 0.0019683838, 0.012886047, -0.008995056, -0.05090332, 0.0068969727, -0.005783081, 0.06677246, 0.025054932, 0.0034866333, -0.036376953, 0.00066518784, -0.012786865, 0.041381836, 0.061523438, -0.017547607, 0.0025043488, 0.0060920715, -0.0013780594, -0.017654419, -0.012466431, 0.0262146, -0.010574341, -0.004600525, -0.0035820007, -0.025619507, -0.024719238, 0.022506714, 0.056793213, -0.036712646, 0.023986816, -0.013519287, 0.0077705383, -0.027618408, 0.007713318, -0.009361267, 0.019302368, 0.0037593842, -0.012435913, 0.037994385, -0.023376465, -0.0019025803, 0.009300232, -0.038024902, -0.06072998, -0.011878967, 0.0056991577, 0.020324707, -0.022018433, -0.016571045, -0.024475098, -0.016708374, -0.0058021545, -0.015556335, -0.046813965, 0.01928711, 0.028060913, -0.06317139, -0.019210815, -0.053588867, 0.017700195, -0.057281494, 0.030670166, -0.00042128563, -0.028121948, 0.0017700195, 0.033599854, -0.0385437, -0.014930725, -0.043884277, 0.017791748, 0.005630493, -0.006439209, 0.027770996, -0.03503418, -0.06451416, -0.036834717, 0.014846802, 0.019363403, -0.006958008, 0.010650635, -0.017028809, -0.009971619, -0.0008215904, 0.019638062, -0.045318604, 0.053009033, 0.0284729, -0.009384155, -0.05819702, 0.0055122375, 0.00017082691, -0.042175293, -0.07873535, -0.050048828, 0.027053833, 0.030426025, 0.04663086, 0.036193848, -0.020187378, -0.018814087, -0.008369446, -0.1116333, -0.027877808, -0.0178833, -0.004714966, -0.0015115738, -0.002500534, -0.0046424866, 0.011489868, 0.044677734, -0.0069007874, 0.030197144, 0.003818512, -0.008178711, 0.024230957, -0.064575195, -0.0030441284, 0.058013916, -0.011665344, -0.007881165, -0.01927185, 0.002193451, 0.037994385, 0.0011548996, 0.021408081, 0.016082764, -0.0013084412, -0.014724731, -0.0501709, 0.0053863525, 0.06939697, 0.0048942566, -0.040283203, -0.015625, -0.020721436, -0.028625488, -0.00680542, 0.008934021, 0.028579712, -0.011413574, -0.00051403046, -0.016540527, -0.040527344, -0.025604248, 0.028213501, -0.0023174286, -0.010787964, -0.061401367, -0.010856628, -0.029663086, -0.03668213, 0.0070991516, -0.033203125, -0.043395996, 0.024002075, 0.02053833, 0.02545166, 0.01109314, -0.012428284, -0.021896362, -0.030166626, 0.047424316, -0.0087509155, -0.0028381348, -0.023330688, 0.027404785, 0.0435791, 0.009025574, -0.0071640015, 0.027267456, 0.026657104, 0.027694702, 0.011642456, 0.00097608566, 0.01725769, -0.024627686, -0.005744934, 0.0016422272, -0.014129639, -0.05670166, 0.064697266, -0.007858276, -0.02722168, -0.04257202, 0.004863739, -0.045898438, -0.02243042, -0.026824951, 0.008071899, -0.0027313232, 0.02684021, 0.038360596, -0.0060653687, -0.026794434, -0.021331787, 0.024307251, -0.027648926, -0.027832031, 0.0023651123, -0.036224365, -0.015060425, 0.01322937, 0.012840271, -0.009292603, 0.048217773, 0.00491333, -0.0463562, -0.02835083, 0.0010623932, -0.0022964478, -0.0055656433, -0.025558472, -0.0023059845, 0.0028705597, -0.020309448, 0.012260437, -0.014633179, 0.015808105, -0.027359009, -0.044708252, -0.04458618, 0.019882202, 0.0004196167, 0.03768921, -0.029342651, -0.017181396, 0.013519287, 0.015350342, 0.034851074, -0.019897461, -0.043518066, -0.01838684, 0.0038604736, 0.007736206, -0.008926392, -0.048095703, 0.052764893, -0.02810669, -0.028579712, -0.027542114, 0.00011217594, 0.03074646, -0.037109375, 0.10333252, 0.01701355, 0.0051956177, 0.014564514, 0.005710602, -0.055633545, 0.025543213, 0.01802063, -0.059509277, -0.0657959, -0.040863037, -0.029083252, -0.018539429, -0.045440674, -0.006126404, 0.019058228, 0.004901886, 0.011627197, -0.003326416, -0.050598145, -0.0038032532, -0.024810791, 0.0009975433, -0.018463135, 0.011711121, -0.027130127, -0.0077705383, -0.022003174, -0.010597229, 0.01914978, 0.006767273, 0.006111145, 0.01461792, 0.004005432, 0.020462036, -0.019195557, 0.028518677, 0.023605347, -0.04849243, 0.005748749, 0.0181427, 0.003774643, 0.01272583, -0.071899414, -0.011802673, -0.028182983, 0.027572632, 0.0014657974, 0.051208496, -0.078186035, -0.023544312, 0.0076522827, 0.05935669, 0.014816284, -0.010894775, -0.010803223, -0.0069389343, 0.0042419434, -0.015327454, -0.012252808, -0.013748169, -0.018371582, -0.014274597, -0.04714966, -0.008781433, -0.030166626, 0.0259552, 0.011924744, 0.0029678345, -0.0015773773, -0.026397705, 0.0054244995, 0.016967773, 0.0395813, -0.01977539, -0.06695557, 0.005832672, 0.036590576, 0.016067505, -0.022140503, -0.0051498413, 0.0024089813, 0.027679443, 0.014205933, 0.01033783, -0.00043582916, -0.01687622, 0.047424316, -0.046173096, 0.014503479, -0.006755829, -0.00831604, -0.019515991, 8.136034e-05, 0.002002716, 0.0059394836, 0.03062439, 0.034576416, -0.040252686, 0.0018892288, 0.04751587, -0.010757446, -0.027008057, -0.015449524, -0.013549805, -0.03074646, -0.012580872, 0.0020065308, 0.01663208, -0.044403076, 0.030700684, 0.005470276, 0.02722168, 0.016494751, -0.057403564, 0.022003174, 0.0309906, 0.018829346, -0.018554688, -0.029830933, -0.0055618286, 0.00085544586, 0.006023407, 0.04284668, 0.0041275024, 0.038879395, -0.007209778, -0.021377563, 0.0027256012, -0.06414795, -0.018127441, -0.005065918, 0.026809692, -0.03414917, -0.024963379, -0.007583618, -0.0184021, 0.007434845, 0.0027828217, 0.01638794, 0.051605225, -0.012756348, 0.01084137, 0.045013428, -0.018859863, 0.025787354, -0.016403198, -0.0043945312, 0.01651001, -0.033081055, 0.0074310303, -0.016998291, -0.023483276, 0.0051574707, -0.012466431, -0.017089844, 0.038909912, 0.016159058, -0.025054932, -0.013427734, -0.0057258606, 0.026748657, -0.027877808, -0.003250122, -0.02406311, 0.019317627, -0.03970337, -0.061279297, -0.04067993, -0.043670654, -0.043518066, 0.06738281, -0.011177063, -0.02204895, 0.018234253, -0.007133484, -0.024246216, -0.07891846, -0.018035889, -0.017410278, 0.022994995, -0.023605347, 0.017532349, -0.031677246, -0.011100769, -0.033233643, 0.030426025, -0.09710693, -0.02684021, -0.034210205, -0.008049011, -0.002286911, -0.02027893, 0.012557983, -0.03869629, 0.033813477, -0.015396118, 0.049346924, -0.08343506, -0.016067505, 0.013938904, 0.025405884, -0.033447266, -0.06124878, 0.021835327, 0.008720398, -0.0023155212, 0.02217102, -0.00014567375, -0.06604004, 0.0072898865, -0.014793396, -0.012634277, -0.004673004, -0.024887085, 0.018951416, -0.0093307495, -0.06555176, -0.012619019, 0.011161804, 0.043670654, 0.046875, 0.020477295, -0.0029563904, -0.031097412, -0.04421997, -0.035064697, 0.00040602684, 0.03753662, 0.031555176, -0.047698975, -0.028686523, -0.006515503, -0.008483887, 0.011428833, 0.024765015, -0.014343262, -0.009651184, 0.03564453, -0.0022907257, -0.01197052, 0.0062179565, 0.0017089844, -0.0440979, -0.0048179626, 0.040405273, 0.0018157959, -0.018569946, -0.016036987, -0.020233154, -0.018707275, -0.026565552, -0.012664795, -0.043945312, -0.052947998, 0.004131317, 0.028289795, -0.026275635, 0.0003402233, 0.0023517609, 0.003414154, 0.00995636, 0.0357666, 0.0084991455, 0.047698975, -0.02180481, 0.08557129, 0.0013055801, 0.052368164, 0.003168106, -0.05065918, -0.039886475, 0.035583496, -0.0031852722, -0.015960693, 0.023468018, -0.040283203, 0.0023117065, 0.048095703, -0.021377563, -0.024353027, 0.02885437, 0.031082153, 0.015037537, 0.017990112]}, "B014DAVHSQ": {"id": "B014DAVHSQ", "original": "Brand: ThermoPro\nName: ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer\nDescription: \nFeatures: 300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use\nDual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions\nFood and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ\nConvenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything\nHigh accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32\u00b0f to 572\u00b0f (0\u00b0c to 300\u00b0c) and high accuracy of 1. 8\u00b0f ( 1\u00b0c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings\n", "metadata": {"Name": "ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer", "Brand": "ThermoPro", "Description": "", "Features": "300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use\nDual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions\nFood and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ\nConvenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything\nHigh accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32\u00b0f to 572\u00b0f (0\u00b0c to 300\u00b0c) and high accuracy of 1. 8\u00b0f ( 1\u00b0c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02279663, 0.0102005005, -0.013183594, 0.02923584, -0.0052108765, -0.033843994, 0.026687622, -0.038024902, 0.012916565, 0.04309082, 0.003479004, 0.012481689, 0.064086914, -0.04598999, 0.013458252, 0.013908386, 0.0107421875, 0.013427734, 0.026809692, -0.0024776459, -0.015174866, 0.027938843, -0.0019273758, 0.01008606, 0.04071045, 0.010131836, -0.0017576218, 0.0040626526, 0.025039673, 0.012504578, 0.03289795, -0.030654907, 0.039031982, 0.035095215, -0.08996582, -0.03652954, -0.048095703, 0.016189575, -0.035858154, 0.0019760132, 0.01335907, -0.0036201477, 0.029891968, 0.02281189, -0.009513855, -0.03930664, 0.032836914, -0.024108887, 0.0076293945, 0.043701172, 0.03845215, -0.010879517, 0.03491211, 0.011161804, -0.0015163422, 0.012893677, 0.008094788, -0.01411438, 0.024291992, -0.03857422, -0.024002075, -0.0053215027, 0.03491211, 0.033203125, -0.024002075, 0.005458832, 0.060180664, -0.013534546, 0.008834839, -0.03186035, 0.016143799, 0.02204895, 0.033111572, -0.021850586, -0.016143799, -0.055664062, 0.020095825, -0.032592773, 0.012992859, -0.0016736984, 0.02885437, -0.028701782, 0.016830444, -0.021881104, 0.029464722, 0.00674057, 0.0012369156, -0.025131226, -0.03479004, -0.056610107, -0.025253296, -0.017837524, -0.072387695, 0.014816284, -0.004108429, -0.024780273, -0.0043144226, -0.013046265, -0.011146545, -0.016525269, 0.026168823, -0.03414917, -0.010261536, -0.0012369156, 0.0029830933, 0.08215332, -0.003982544, 0.027374268, 0.03314209, 0.0025081635, 0.021743774, -0.010612488, -0.017074585, -0.009849548, -0.04458618, 0.029968262, -0.009338379, -0.05596924, -0.00051498413, -0.04522705, -0.041015625, -0.016479492, 0.015960693, 0.043914795, 0.01638794, 0.030929565, 0.018005371, -0.022033691, -0.08258057, 0.05355835, -0.030303955, -0.025894165, 0.033172607, 0.0287323, 0.015457153, -0.04586792, 0.038330078, -0.0059165955, 0.007549286, -0.005558014, 0.0045166016, -0.01625061, 0.0027198792, -0.0006670952, -0.038085938, -0.011131287, 0.029281616, 0.036468506, -0.041137695, -0.04598999, 0.0137786865, 0.035491943, 0.043884277, -0.0074310303, -0.04309082, -0.018112183, -0.022827148, -0.013648987, -0.010307312, -0.033416748, -0.03793335, -0.009490967, -0.00016212463, -0.013961792, -0.017105103, 0.0026359558, 0.0236969, -0.0010404587, 0.01953125, 0.009109497, 0.013664246, 0.005302429, -0.00044989586, 0.01977539, 0.013122559, 0.01423645, 0.00868988, 0.08416748, 0.072753906, -0.09063721, -0.06719971, -0.047058105, 0.16125488, -0.07330322, 0.0026302338, 0.0004107952, -0.017990112, 0.0012702942, 0.036834717, 0.006526947, -0.046051025, -0.014823914, -0.005531311, 0.02558899, -0.0034484863, -0.007675171, -0.046661377, 0.034118652, -0.028823853, -0.056854248, -0.059051514, 0.0026607513, -0.03253174, 0.038116455, -0.036224365, -0.0027828217, -0.0069351196, 0.035980225, -0.00137043, -0.0019798279, 0.0074005127, -0.010795593, 0.012779236, -0.07086182, -0.045043945, -0.0129852295, -0.043914795, -0.016235352, -0.0053863525, 0.017593384, 0.004627228, -0.010261536, -0.0032958984, -0.0025463104, 0.051635742, -0.016540527, -0.0149002075, -0.008331299, 0.057281494, -0.0013523102, -0.00034308434, 0.04711914, 0.0029087067, 0.03060913, 0.006866455, 0.04449463, 0.090270996, 0.036132812, -0.013206482, -0.03845215, 0.016143799, 0.009750366, -0.028503418, -0.0178833, 0.012420654, -0.028396606, 0.014625549, -0.013061523, 0.00088977814, 0.01158905, 0.023605347, -0.0256958, 0.036956787, -0.02015686, 0.013114929, 0.02734375, -0.023223877, 0.028320312, -0.045715332, 0.027755737, -0.022262573, 0.005001068, 0.04043579, -0.021896362, 0.031677246, -0.0152282715, 0.009857178, 0.008956909, -0.021896362, -0.01676941, 0.0101623535, 0.003200531, -0.002872467, -0.029968262, -0.007987976, -0.039123535, -0.027801514, 0.02619934, 0.03540039, -0.048339844, 0.0022125244, 0.039978027, 0.012268066, -0.0015907288, 0.0042381287, -0.04626465, 0.01574707, 0.03543091, -0.027053833, -0.007209778, 0.022262573, -0.0074539185, -0.02557373, 0.006866455, -0.003414154, -0.012397766, 0.032165527, 0.034576416, -0.0036754608, -0.007293701, 0.015563965, 0.030838013, -0.020721436, 0.015808105, -0.0049057007, 0.017654419, 0.013916016, 0.008369446, 0.007297516, -0.05606079, 0.053894043, 0.03881836, 0.04421997, -0.06585693, 0.060302734, 0.052612305, 0.010925293, 0.020355225, 0.011924744, 0.022506714, -0.0071640015, -0.006713867, -0.0524292, -0.0021152496, -0.0013275146, 0.02520752, -0.014526367, -0.018676758, 0.0052337646, 0.035247803, 0.057250977, 0.044555664, 0.03302002, -0.028427124, -0.0075416565, -0.027160645, -0.010185242, 0.0115737915, -0.027557373, -0.030853271, -0.040893555, 0.007587433, 0.03967285, -0.03643799, -0.06976318, 0.017333984, 0.008155823, 0.0065841675, -0.024047852, -0.012969971, 0.033813477, -0.012161255, 0.006626129, -0.0027942657, -0.0075149536, -0.022262573, -0.0036506653, -0.026473999, -0.03829956, -0.06689453, -0.039611816, 0.00022864342, -0.058685303, 0.008529663, 0.049102783, -0.018218994, -0.009361267, -0.002231598, 0.0033035278, 0.020263672, 0.068725586, -0.020904541, -0.020019531, -0.03555298, -0.052703857, -0.053344727, -0.00064992905, -0.04498291, 0.01927185, -0.016693115, -0.011054993, 0.024139404, 0.015098572, 0.039001465, -0.0017347336, 0.05227661, 0.016326904, 0.032928467, -0.022369385, -0.029281616, 0.014762878, 0.087524414, 0.020263672, -0.03479004, 0.0031547546, 0.026367188, -0.032714844, -0.043304443, -0.0018787384, -0.006511688, -0.069885254, -0.012077332, -0.031188965, -0.022064209, 0.018722534, -0.060638428, 0.0019626617, -0.05709839, 0.002418518, 0.052001953, -0.022033691, 0.009292603, -0.033966064, 0.017669678, 0.009155273, -0.012084961, 0.04562378, -0.0035762787, 0.03390503, -0.0501709, -0.0052986145, -0.010391235, 0.01675415, 0.0015516281, -0.011146545, 0.009025574, -0.028625488, -0.014274597, 0.0104904175, -0.0053710938, -0.040283203, -0.013038635, -0.026947021, -0.04220581, -0.012825012, 0.009132385, 0.016113281, -0.0012922287, 0.004787445, -0.0004940033, -0.05218506, -0.001086235, -0.014381409, 0.010574341, -0.023071289, -0.016906738, 0.00705719, -0.075683594, 0.0046195984, -0.09307861, -0.017150879, 0.0020256042, 0.0793457, 0.032592773, 0.025512695, 0.099853516, -0.02748108, 0.060028076, 0.054656982, -0.059753418, -0.008590698, -0.059661865, -0.008758545, 0.066467285, -0.018676758, -0.01852417, 0.043914795, -0.018295288, -0.04034424, 0.0085372925, -0.049194336, 0.050231934, -0.021255493, -0.01210022, -0.025787354, 0.0063552856, 0.038970947, 0.0035247803, 0.04244995, -0.014419556, -0.04159546, 0.014129639, -0.07342529, 0.0635376, -0.0028057098, 0.0026073456, 0.042053223, 0.046783447, -0.006061554, 0.016677856, 0.06402588, -0.011138916, 0.037261963, -0.011917114, -0.027572632, -0.035888672, -0.0025138855, 0.014854431, 0.03527832, 0.019119263, -0.019500732, 0.019119263, -0.0027675629, -0.0066833496, -0.06915283, 0.0035133362, 0.039123535, 0.020401001, 0.018478394, -0.076538086, 0.04257202, -0.016616821, 0.0011739731, -0.014266968, -0.017532349, -0.05105591, 0.012237549, 0.0032157898, -0.04083252, 0.0052986145, -2.348423e-05, 0.021652222, 0.0007123947, 0.02609253, 0.0020046234, 0.0049095154, -0.036621094, 0.0030822754, -0.0022087097, -0.018112183, 0.053222656, 0.008056641, 0.014480591, -0.00026583672, -0.011291504, 0.015701294, 0.00084114075, 0.00333786, -0.0053901672, -0.0039901733, 0.00856781, -0.010574341, -0.016540527, -0.011878967, 0.049987793, -0.06640625, 0.018707275, -0.0036945343, -0.07006836, 0.019958496, -0.05718994, -0.046691895, -0.031585693, -0.026351929, -0.010368347, -0.013046265, -0.005367279, 0.0054092407, 0.004211426, -0.019424438, -0.009727478, 0.008659363, -0.036224365, 0.01890564, -0.011871338, 0.002084732, 0.07019043, 0.021377563, 0.028564453, -0.0287323, -0.013999939, -0.023239136, 0.046691895, 0.011703491, 0.0021743774, -0.011642456, -0.049316406, -0.010276794, 0.011383057, 0.08203125, 0.02180481, 0.020187378, -0.068237305, -0.045715332, -0.0048446655, -0.019042969, 0.03894043, -0.031921387, 0.008216858, -0.03643799, 0.006084442, -0.016174316, 0.032440186, 0.017089844, -0.0063552856, -0.053710938, 0.018814087, -0.052612305, 0.008033752, -0.007686615, -0.003944397, 0.011306763, 0.0025634766, -0.028686523, -0.0047798157, 0.017608643, -0.013305664, -0.0446167, 0.0056381226, -0.029281616, 0.01651001, -0.011917114, -0.022720337, 0.040039062, -0.046081543, 0.0037631989, 0.01234436, 0.027816772, 0.05960083, -0.044921875, 0.008811951, 0.024032593, -0.023605347, 0.019683838, 0.0059509277, -0.02482605, -0.022277832, -0.040283203, -0.027694702, 0.005458832, -0.028671265, 0.0026988983, -0.00756073, 0.011764526, 0.016403198, -0.014816284, -0.010627747, -0.012664795, -0.01828003, -0.00730896, 0.021575928, 0.016113281, 0.0072898865, 0.0018100739, -0.014274597, -0.010032654, 0.0033054352, -0.010322571, -0.019104004, 0.004020691, -0.033416748, -0.018554688, -0.030700684, -0.040283203, 0.017486572, -0.04977417, 0.012886047, 0.030303955, -0.0006556511, -0.015281677, -0.0045547485, 0.009925842, -0.0035381317, -0.03527832, 0.07495117, -0.018737793, -0.0071144104, 0.022384644, -0.018859863, 0.055511475, -0.029678345, -0.016235352, 0.025680542, -0.02709961, -0.0035953522, 0.007633209, -0.002855301, 0.008293152, 0.012023926, -0.029922485, 0.008026123, 0.023040771, 0.037322998, 0.013557434, -0.043273926, 0.04360962, -0.004512787, -0.026611328, 0.005908966, 0.08190918, -0.055511475, -0.024993896, 0.006351471, -0.033813477, -0.056243896, -0.020248413, 0.008728027, -0.04373169, -0.060333252, -0.040374756, 0.007904053, -0.0007863045, 0.02810669, -0.012550354, -0.0050811768, 0.042053223, -0.04058838, 0.03363037, -0.029449463, -0.013961792, 0.014701843, 0.029785156, -0.036590576, -0.01586914, 0.026626587, -0.017333984, -0.018875122, -0.0076141357, -0.02720642, 0.0020771027, 0.008720398, -0.001783371, 0.05432129, 0.0064315796, 0.023376465, 0.021469116, 0.01940918, 0.018249512, 0.0010786057, 0.009033203, -0.016540527, -0.0026111603, 0.048309326, -0.036254883, -0.039794922, -0.02458191, 0.026290894, -0.0013971329, -0.032684326, 0.050231934, 0.02319336, -0.0029945374, 0.03173828, -0.010971069, -0.025650024, 0.035888672, 0.005832672, -0.049835205, -4.2021275e-05, -0.01966858, -0.02947998, 0.027023315, -0.0023460388, -0.008079529, 0.030822754, 0.012641907, 0.035095215, -0.029220581, -0.028701782, -0.0151901245, -0.009780884, 0.01725769, -0.0046043396, -0.0041770935, -0.031677246, -0.0069351196, -0.035308838, -0.017715454, 0.04309082, 0.037139893, 0.030670166, -0.0042533875, 0.038726807, 0.10015869, -0.09057617, 0.03274536, 0.008079529, -0.02760315, 0.010932922, 0.012229919, 0.0026340485, 0.0022602081, -0.038482666, -0.0024471283, -0.009536743, 0.01638794, 0.025878906, -1.680851e-05, -0.030944824, -0.024139404, 0.0073165894, 0.025161743, 0.013557434, 0.020126343, 0.012466431, 0.008255005, -0.01184845, -0.005607605, -0.024856567, -0.027801514, -0.047943115, -0.03930664, -0.00031995773, 0.024887085, 0.0046806335, 0.04574585, -0.0010318756, 0.026641846, -0.0262146, 0.057922363, -0.010688782, 0.03265381, 0.027816772, -0.029266357, -0.027816772, -0.027160645, 0.012229919, 0.00015377998, 0.0013542175, 0.017196655, -0.0037403107, 0.015686035, 0.0084991455, 0.020767212, 0.01889038, 0.01058197, 0.012374878, -0.059783936, 0.03552246, -0.07299805, -0.014877319, -0.023040771, 0.013908386, 0.029968262, 0.022781372, 0.02079773, -0.013519287, 0.11090088, -0.06982422, -0.00033187866, -0.0045318604, 0.018676758, -0.026153564, 0.0049934387, -0.013397217, -0.0046691895, 0.01335144, 0.0003671646, -0.04486084, 0.017059326, 0.024642944, -0.015899658, 0.021194458, -0.022644043, 0.021224976, 0.0058403015, -0.0129470825, -0.023223877, -0.043823242, 0.023117065, 0.029525757, -0.006477356, 0.030319214, -0.00667572, 0.014625549, 0.012229919, 0.006790161, 0.022842407, 0.0016565323, 0.04876709, 0.03616333, -0.030197144, -0.022857666, -0.09136963, -0.029373169, -0.025802612, -0.011955261, -0.026168823, -0.012245178, 0.08416748, 0.06970215, 0.023040771, 0.07269287, -0.00422287, 0.011764526, 0.039398193, 0.007686615, -0.021911621, 0.03149414, 0.018249512, -0.019989014, -0.010177612, 0.005832672, 0.0030612946, 0.06414795, 0.06347656, 0.020812988, -0.0025348663, -0.07019043, 0.060913086, -0.045776367, -0.0647583, 0.052246094, -0.064819336, -0.030517578, -0.0050621033, -0.0057373047, -0.014724731, -0.04663086, -0.040252686, 0.0569458, -0.03137207, -0.008560181, 0.017486572, -0.03265381, -0.022750854, -0.053619385, -0.0002220869, 0.0007724762, 0.033721924, 0.0054473877, 0.045715332, -0.026123047, -0.060150146, -0.054351807, 0.03930664, -0.07897949, -0.029418945, -0.018829346, -0.0035095215, -0.0046920776, -0.008712769, -0.01486969, -0.014518738, 0.020980835, -0.029937744, -0.029434204, -0.0031318665, -0.022201538, 0.01007843, -0.015686035, -0.010856628, -0.002653122, 0.033599854, 0.018753052, 0.05609131, 0.0016927719, 0.016555786, -0.07543945, -0.0052871704, -0.03869629, 0.026260376, -0.0119018555, -0.019897461, 0.0018634796, -0.017028809, -0.037902832, -0.04458618, 0.02734375, 0.020324707, 0.007030487, 0.056762695, -0.0007777214, 0.016174316, -0.026947021, 0.08099365, -0.0002913475, -0.031402588, 0.023620605, 0.034088135, 0.01651001, 0.03665161, -0.011909485, 0.023376465, 0.0146484375, 5.620718e-05, -0.012123108, 0.021209717, -0.0031795502, -0.008270264, 0.0154953, 0.021881104, -0.012275696, -0.015899658, 0.036102295, 0.035339355, -0.044555664, -0.017303467, -0.023956299, -0.0015211105, 0.0013771057, -0.061157227, 0.036590576, 0.0069770813, 0.0070228577, 0.008087158, 0.038879395, -0.02935791, 0.007637024, -0.03414917, -0.011703491, -0.014663696, 0.021774292, -0.017623901, -0.025909424, -0.039123535, -0.023284912, 0.0026741028, -0.01335907, -0.038024902, -0.06890869, 0.07171631, 0.033233643, -0.034454346, 0.03717041, 0.022720337, 0.01158905, 0.012069702, 0.040740967, -0.024749756, 0.017730713, -0.024993896, 0.017532349, 0.018325806]}, "B000QYNUXE": {"id": "B000QYNUXE", "original": "Brand: Garcima\nName: GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro\nDescription: \nFeatures: Medidas: 400mm.\nColor negro.\nMuy pr\u00e1ctico y f\u00e1cil de usar.\nArticulo tambi\u00e9n conocido como hornillo, hornilla cocina, fuego paellas.\nIdeal para cocinar con paellera.\n", "metadata": {"Name": "GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro", "Brand": "Garcima", "Description": "", "Features": "Medidas: 400mm.\nColor negro.\nMuy pr\u00e1ctico y f\u00e1cil de usar.\nArticulo tambi\u00e9n conocido como hornillo, hornilla cocina, fuego paellas.\nIdeal para cocinar con paellera.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.058929443, -0.025787354, -0.014312744, -0.0029716492, -0.040130615, 0.011459351, -0.05709839, 0.002231598, 0.0134887695, 0.0026359558, 0.036132812, -0.006580353, 0.0105896, -0.047454834, 0.001876831, 0.012031555, -0.013633728, 0.07757568, 0.04650879, 0.0067329407, 0.018127441, 0.021224976, -0.017364502, -0.012130737, 0.049194336, -0.02029419, 0.041290283, -0.018310547, 0.030319214, -0.031433105, 0.042419434, 0.003211975, 0.02204895, -0.006587982, 0.0110321045, 0.0021648407, 0.0033683777, -0.0028018951, -0.028427124, 0.033843994, 0.019515991, -0.002500534, 0.008010864, -0.019424438, -0.038513184, -0.017654419, 0.017837524, 0.011795044, 0.038726807, 0.043884277, 0.0021858215, 0.019470215, -0.015548706, 0.032348633, -0.004627228, 0.022003174, 0.0047569275, 0.027389526, 0.018127441, -0.018569946, -0.021209717, 0.01197052, 0.009552002, 0.0026741028, -0.015037537, 0.00705719, -0.022781372, -0.0036563873, 0.037963867, 0.0069122314, 0.009757996, -0.0041618347, -0.01537323, -0.042266846, -0.053741455, 0.070739746, -0.018295288, -0.0015592575, 0.00819397, -0.02255249, 0.024658203, 0.0043563843, 0.02897644, -0.0256958, 0.01020813, -0.012313843, -0.012710571, -0.02079773, 0.007457733, -0.020431519, -0.0121154785, 0.002632141, -0.00092601776, 0.017471313, -0.009490967, -0.020904541, -0.020004272, -0.041870117, 0.0071487427, 0.0016241074, 0.0042266846, -0.030288696, 0.017684937, 0.0012893677, -0.0055389404, 0.005657196, -0.009300232, 0.016464233, 0.040893555, 0.027252197, 0.00044178963, 0.021011353, -0.021453857, -0.008460999, -0.054992676, 0.05392456, -0.0066871643, -0.00957489, 0.011291504, 0.03286743, -0.05758667, -0.02279663, 0.07208252, 0.048675537, -0.00022745132, 0.034179688, 0.017440796, -0.05609131, -0.037628174, 0.08148193, -0.0075798035, 0.011451721, 0.027832031, -0.021224976, -0.05392456, -0.017333984, 0.04598999, 0.022613525, 0.002023697, 0.008239746, 0.032928467, -0.023162842, 0.008796692, 0.01878357, 0.04650879, 0.047180176, 0.020339966, -0.016708374, 0.02545166, 0.0033569336, -0.010772705, -0.011390686, 0.01713562, 0.054748535, -0.070373535, 0.07208252, 0.0025367737, 0.019134521, -0.06616211, -0.035339355, -0.008239746, -0.012046814, 0.012458801, 0.005126953, 0.0015878677, 0.0012807846, 0.0040245056, 0.008865356, 0.004337311, 0.017288208, 0.03253174, -0.0061035156, -0.036193848, -0.0121536255, 0.010528564, -0.0009613037, -0.02583313, 0.06341553, 0.045288086, -0.061950684, -0.039031982, -0.052215576, 0.087524414, -0.016357422, 0.012931824, -0.0395813, -0.010650635, -0.026641846, 0.050323486, -0.0040740967, 0.026901245, -0.0041542053, -0.06311035, -0.014259338, 0.02166748, -0.011116028, -0.04940796, -0.04675293, -0.00015628338, 0.03930664, -0.022140503, -0.013290405, -0.03881836, 0.010505676, -0.078430176, -0.016082764, -0.026245117, 0.028686523, -0.002714157, 0.029449463, -0.008125305, 0.0035476685, -0.008728027, -0.059326172, -0.04699707, -0.02709961, 0.015380859, -0.00843811, 0.02293396, -0.03024292, 0.08239746, -0.016525269, 0.043792725, 0.053344727, 0.016494751, 0.004219055, -0.006816864, 0.008842468, 0.025054932, 0.024963379, -0.01374054, -0.0024642944, 0.0007362366, 0.0049552917, -0.0, 0.06512451, 0.08532715, 0.05429077, -0.028274536, -0.046142578, 0.026535034, -0.01197052, -0.00819397, 0.016616821, -0.009559631, 0.0021476746, 0.021713257, -0.016952515, -0.054656982, -0.042510986, 0.03173828, -0.018310547, 0.018157959, 0.019317627, -0.0040626526, 0.005924225, 0.0062065125, 0.10900879, -0.004245758, 0.010368347, -0.05343628, 0.08880615, 0.11224365, -0.01727295, 0.035736084, 0.032836914, 0.06524658, 0.034057617, -0.0287323, 0.014335632, 0.013534546, 0.049041748, -0.03250122, 0.03237915, 0.053253174, -0.015853882, -0.040100098, 0.0074882507, -0.03817749, 0.0014371872, -0.009460449, -0.00995636, -0.046875, -0.009346008, 0.03805542, -0.038848877, -0.026428223, -0.014060974, -0.039154053, -0.033111572, -0.013092041, 0.0395813, 0.0053138733, -0.004962921, -0.0036640167, 0.008483887, 0.008712769, 0.034179688, -0.01889038, 0.021652222, -0.013824463, 0.030517578, 0.012931824, -0.0038528442, -0.032470703, 0.011497498, -0.03491211, -0.027435303, -0.029556274, -0.07873535, 0.038848877, 0.011100769, 0.008377075, -0.01890564, -0.0057907104, -0.023986816, -0.030670166, 0.032287598, 0.0039863586, 0.083618164, -0.017669678, 0.06561279, -0.03604126, -0.009780884, 0.032806396, 0.004386902, -0.05041504, -0.0022125244, -0.057739258, 0.019134521, 0.01574707, -0.0093307495, -0.0014657974, 0.03366089, 0.002626419, 0.021957397, 0.00062704086, 0.003332138, -0.0035572052, -0.0010900497, 0.009216309, -0.059539795, -0.01058197, -0.023345947, -0.015045166, 0.02519226, -0.024047852, 0.011672974, 0.0075416565, 0.018173218, -0.037322998, -0.030380249, -0.020614624, -0.0017900467, 0.02168274, 0.07299805, 0.010765076, 0.01751709, 0.056793213, -0.033416748, -0.03591919, -0.009529114, -0.084472656, 0.026000977, 0.07330322, -0.023330688, -0.013626099, -0.021987915, 0.016693115, -0.014480591, -0.01777649, 0.0038833618, -0.027389526, 0.014884949, 0.027145386, 0.000116467476, -0.020462036, -0.04171753, 0.04171753, 0.011207581, 0.012145996, 0.03829956, 0.011672974, 0.08312988, 0.02305603, -0.0065956116, -0.0070991516, 0.025558472, 0.038360596, 0.0015630722, 0.030517578, 0.025802612, -0.014663696, -0.014717102, -0.013122559, 0.017669678, -0.030639648, -0.028549194, 0.0019464493, -0.009567261, -0.062042236, -0.0013122559, -0.02973938, -0.023223877, -0.02947998, 0.035614014, -0.052612305, -0.040161133, 0.019714355, 0.040222168, -0.015151978, 0.016296387, -0.02520752, 0.023040771, -0.05493164, 0.019088745, -0.07751465, -0.012184143, 0.013809204, 0.029327393, -0.001203537, -0.021713257, -0.014137268, 0.03213501, -0.047332764, 0.028686523, -0.011512756, 0.037597656, 0.050964355, 0.0065574646, -0.0021743774, 0.00283432, -0.0121536255, -0.039276123, -0.028167725, 0.026489258, -0.0029964447, 0.042388916, -0.030334473, 0.00031971931, -0.0018119812, 0.010772705, -0.001698494, 0.05444336, 0.021774292, -0.042999268, -0.004207611, -0.019042969, -0.025787354, -0.044006348, 0.009109497, 0.037353516, -0.03555298, -0.00019788742, 0.0062675476, 0.009567261, 0.033721924, 0.040618896, 0.0015449524, -0.05001831, -0.04071045, -0.056671143, 0.068725586, -0.005176544, 0.01209259, -0.054779053, 0.030838013, 0.0058517456, -0.016830444, 0.0043640137, 0.0009756088, 0.046813965, -0.0076065063, -0.03567505, 0.028335571, -0.022537231, 0.02961731, 0.017852783, -0.035186768, -0.073791504, -0.017715454, -2.8729439e-05, -0.054595947, 0.05014038, 0.06378174, -0.027816772, 0.015129089, -0.017227173, -0.0011672974, -0.009002686, 0.027160645, -0.016601562, -0.0061187744, 0.036468506, -0.018112183, -0.028747559, 0.012580872, 0.031433105, 0.008430481, 0.049041748, -0.09588623, -0.010917664, -0.042999268, -0.029296875, -0.03414917, -0.017547607, 0.037902832, 0.024490356, 0.041992188, -0.011520386, 0.04348755, -0.000682354, -0.042144775, 0.01876831, -0.041809082, 0.008033752, -0.0143585205, 0.0017223358, -0.020721436, -0.023864746, 0.003414154, -0.027328491, 0.044891357, 0.011177063, -0.005771637, -0.015930176, 0.051208496, 0.010223389, -0.012748718, 0.0018634796, 0.030075073, 0.018951416, -0.00021278858, -0.006690979, 0.008377075, -0.027404785, -0.053771973, -0.03062439, -0.042419434, -0.034118652, -0.013343811, 0.019927979, 0.018997192, 0.020828247, 0.015403748, -0.061828613, 0.02696228, -0.0020122528, -0.056396484, -0.023483276, 0.0022964478, 0.005592346, -0.0049057007, -0.048095703, -0.051605225, -0.04046631, -0.020141602, 0.02468872, 0.035217285, -0.042541504, 0.020736694, 0.057891846, -0.06842041, -0.0044059753, -0.094055176, 0.003993988, -0.031341553, -0.03527832, 0.05419922, -0.026535034, -0.021575928, -0.031066895, 0.053222656, 0.026031494, -0.0008430481, -0.046844482, -0.014221191, -0.0043945312, 0.037017822, 0.057495117, -0.031585693, 0.011413574, -0.030944824, -0.04724121, -0.05706787, -0.0067710876, 0.03717041, -0.013175964, -0.047454834, -0.072631836, 0.009933472, 0.019577026, 0.0073127747, -0.0184021, 0.013404846, -0.0013189316, -0.0008196831, -0.062683105, -0.005710602, 0.0078048706, -0.0335083, 0.012718201, 0.0036621094, -0.009277344, 0.007484436, 0.034057617, -0.033203125, 4.9471855e-05, -0.028396606, 0.023468018, 0.009483337, 0.012825012, -0.020523071, -0.030914307, -0.009963989, 0.03656006, -0.02067566, 0.01071167, -0.041748047, 0.018585205, 0.01626587, -0.006996155, 0.038146973, -0.023956299, 0.014259338, -0.00059843063, 0.011741638, -0.0045204163, -0.03161621, -0.006729126, -0.042022705, -0.019424438, 0.00052785873, 0.0065956116, 0.029067993, 0.011543274, -0.005882263, -0.001660347, -0.03857422, -0.023040771, 0.02810669, 0.009056091, -0.033447266, 0.046142578, -0.045074463, 0.00022566319, 0.018600464, -0.027938843, 0.013641357, 0.022842407, -0.029693604, -0.010726929, -0.0014915466, -0.053710938, -0.014167786, -0.01727295, -0.04208374, -0.011566162, 0.03314209, -0.0143966675, -0.039886475, 0.04458618, -0.01828003, 0.044433594, 0.08215332, -0.025024414, 0.018951416, -0.0012340546, 0.006290436, -0.0065612793, -0.016601562, -0.010124207, 0.048858643, 0.03930664, 0.0024986267, -0.04699707, 0.07281494, -0.019378662, -0.037719727, -0.020355225, 0.0039520264, 0.029907227, -0.04586792, 0.055419922, -0.049713135, 0.047821045, 0.00617218, -0.003501892, -0.001502037, 0.0018320084, -0.00831604, 0.031982422, 0.013633728, 0.013282776, -0.022354126, 0.024810791, -0.05041504, -0.019226074, -0.0068626404, 0.039154053, 0.005634308, -0.015312195, 0.04977417, -0.018173218, -0.016479492, -0.010856628, -0.04168701, 0.033935547, 0.0045166016, 0.016036987, 0.015312195, 0.016113281, -0.00422287, 0.0017538071, -0.040893555, -0.01939392, 0.008117676, 0.06878662, 0.04925537, 0.015457153, 0.0019721985, -0.015838623, 0.018035889, -0.0014801025, 0.005104065, 0.02407837, -0.010414124, 0.017501831, 0.011390686, 0.05355835, -0.017349243, -0.032196045, 0.083862305, -0.04736328, -0.05340576, -0.043029785, 0.031097412, 0.025283813, 0.046661377, -0.047088623, -0.0057907104, -0.015113831, 0.049102783, 0.00932312, -0.02494812, 0.01687622, 0.025634766, -0.025146484, -0.033203125, -0.007507324, 0.01448822, -0.027572632, -0.055419922, 0.018188477, 0.028396606, 0.016143799, -0.015823364, 0.009643555, -0.047729492, 0.024963379, 0.012191772, 0.009521484, -0.029769897, 0.012084961, -0.05355835, 0.00073719025, -0.024993896, -0.0496521, 0.013870239, 0.007369995, 0.022247314, 0.042144775, 0.011856079, 0.008918762, -0.055114746, 0.00033664703, -0.020050049, -0.026138306, 0.04611206, 0.039276123, 0.00017881393, 0.05505371, 0.022827148, -0.027252197, -0.013160706, 0.018814087, 0.018203735, 0.00484848, 0.014678955, -0.0065193176, 0.013183594, 0.00081539154, 0.038024902, -0.030532837, 0.012435913, 0.033172607, 0.05456543, -0.0005888939, 0.0002259016, 0.014907837, 0.0069770813, -0.027023315, -0.010734558, -0.028701782, -0.022964478, -0.0140686035, -0.012237549, 0.011001587, -0.029159546, 0.010719299, 0.0023403168, -0.005558014, 0.06274414, -0.0031795502, -0.015716553, 0.006603241, 0.024169922, -0.024017334, -0.01499176, 0.017166138, 0.017944336, 0.026626587, 0.034942627, 0.014259338, 0.02809143, 0.005683899, 0.042144775, -0.038146973, 0.009101868, 0.07446289, 0.027511597, 0.048736572, -0.014213562, -0.019592285, 0.041168213, 0.037750244, 0.0079956055, -0.013221741, 0.0027561188, -0.0078048706, 0.022903442, -0.0030117035, 0.010772705, -0.00844574, -0.002199173, 0.006832123, 0.018600464, -0.020141602, 0.011138916, -0.012802124, 0.06365967, -0.042266846, -0.01852417, -0.009597778, 0.026992798, -0.035369873, 0.04647827, -0.025268555, -0.024215698, -0.0056610107, -0.011245728, -0.005645752, -0.02458191, -0.010894775, 0.0037136078, 0.04437256, -0.05255127, 0.014312744, -0.037475586, 0.04736328, 0.036315918, 0.04397583, 0.04598999, 0.024765015, -0.00894928, 0.01725769, 0.040496826, -0.022033691, 0.036956787, 0.080322266, 0.030517578, -0.02897644, 0.023452759, -0.038391113, -0.022628784, 0.014572144, 0.008483887, -0.043304443, 0.029388428, 0.0006098747, -0.035827637, -0.021240234, 0.008964539, -0.021118164, -0.0067863464, -0.038604736, 0.044158936, -0.019088745, -0.032562256, 0.0032024384, 0.015304565, -0.016921997, 0.023803711, -0.028137207, 0.012374878, 0.008934021, 0.01676941, -0.03164673, -0.009933472, -0.014053345, 0.024749756, -0.0026226044, -0.02960205, -0.013198853, 0.005290985, 0.02192688, -0.025802612, 0.012626648, 0.016723633, 0.036193848, -0.0287323, 0.008811951, -0.020523071, -0.019241333, -0.049987793, 0.019378662, -0.10424805, -0.03390503, -0.0018854141, -0.020767212, -0.027313232, -0.034454346, -0.055023193, 0.04043579, -0.0019369125, -0.02909851, 0.050750732, -0.018829346, 0.028518677, -0.079589844, -0.012268066, 0.00088882446, -0.031799316, -0.0256958, 0.022644043, 0.0054626465, 0.014831543, 0.026184082, -0.013076782, 0.046661377, 0.02357483, -0.013648987, 0.00031924248, 0.0011644363, -0.0060310364, 0.019210815, -0.030532837, -0.030578613, -0.020843506, -0.017456055, 0.025466919, 0.01424408, 0.01637268, -0.00021028519, -0.001045227, -0.02406311, -0.003232956, 0.001625061, 0.06866455, 0.06137085, -0.017181396, -0.044433594, -0.008201599, -0.0011110306, -0.057891846, -0.06842041, -0.050048828, 0.011360168, 0.016342163, -0.045043945, 0.03451538, 0.018417358, -0.0446167, -0.010925293, 0.008522034, 0.030975342, -0.030090332, -0.0021018982, 0.009384155, -0.009887695, 0.008041382, 0.0054244995, -0.05935669, -0.033081055, 0.026657104, 0.021972656, 0.005748749, 0.02168274, 0.011520386, 0.03656006, 0.002035141, 0.0022773743, 0.022842407, -2.8312206e-05, -0.05670166, 0.02281189, -0.0029258728, 0.027175903, -0.005809784, -0.052825928, -0.05581665, 0.06652832, 0.03286743, -0.033599854, 0.07519531, -0.011367798, 0.023269653, -0.047943115, -0.0015764236, -0.038604736, 0.03466797, 0.044128418, -0.02822876, 0.046783447]}, "B07XKXSSND": {"id": "B07XKXSSND", "original": "Brand: SPARC\nName: SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty\nDescription:

      Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

      This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

      Lightweight, Heavy Duty Design

      The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

      Easy to Use Trigger Start

      The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output. Effectively treat small and large areas with this torch.

      A Safe Long-Reaching Handle

      The handle reaches 34\u201d in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

      One Year Warranty

      Backed by our 1 year USA warranty against manufacturing defects. We are\u00a0based out of\u00a0Denver, CO, and offer customer service and support via phone, text, and e-mail.

      \nFeatures: OUTDOOR UTILITY TORCH \u2714 Great for use in gardening, construction, grill ignition, and more.\nTRIGGER START \u2714 Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output.\nLIGHTWEIGHT, HEAVY DUTY \u2714 Slip-resistant foam handle for maximum comfort.\nLONG-REACH KEEPS YOU AT A SAFE-DISTANCE \u2714 Reaches 34\u201d in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire.\nPOWERFUL \u2714 20,000 BTU output, fully adjustable via knob.\n", "metadata": {"Name": "SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty", "Brand": "SPARC", "Description": "

      Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

      This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

      Lightweight, Heavy Duty Design

      The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

      Easy to Use Trigger Start

      The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output. Effectively treat small and large areas with this torch.

      A Safe Long-Reaching Handle

      The handle reaches 34\u201d in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

      One Year Warranty

      Backed by our 1 year USA warranty against manufacturing defects. We are\u00a0based out of\u00a0Denver, CO, and offer customer service and support via phone, text, and e-mail.

      ", "Features": "OUTDOOR UTILITY TORCH \u2714 Great for use in gardening, construction, grill ignition, and more.\nTRIGGER START \u2714 Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output.\nLIGHTWEIGHT, HEAVY DUTY \u2714 Slip-resistant foam handle for maximum comfort.\nLONG-REACH KEEPS YOU AT A SAFE-DISTANCE \u2714 Reaches 34\u201d in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire.\nPOWERFUL \u2714 20,000 BTU output, fully adjustable via knob.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.023849487, -0.03451538, -0.010551453, -0.03451538, -0.025772095, 0.029876709, -0.014717102, 0.010185242, -0.044921875, 0.0022220612, -0.035827637, 0.029510498, 0.014793396, -0.011062622, 0.038024902, -0.04019165, 0.0058174133, 0.031585693, -0.0043182373, -0.020446777, 0.009254456, -0.022979736, -0.057739258, 0.08544922, 0.015319824, 0.0070228577, -0.015960693, -0.019744873, 0.01083374, -0.004142761, 0.024353027, -0.0010643005, 0.049591064, -0.017654419, -0.007820129, -0.018081665, 0.02885437, -0.035095215, -0.031311035, 0.031234741, 0.015457153, -0.0146865845, -0.099487305, 0.03363037, -0.07281494, -0.020950317, -0.001581192, 0.016281128, -0.012435913, 0.08306885, 0.0023593903, 0.015792847, -0.01134491, 0.030731201, 0.013160706, -0.021972656, 0.014678955, -0.07501221, 0.023361206, -0.0026187897, 0.010475159, -0.033050537, 0.03942871, 0.010284424, 0.0055999756, 0.01687622, 0.101501465, 0.007583618, -0.022964478, -0.020690918, 9.864569e-05, 0.003063202, -0.037902832, 0.002336502, -0.016998291, 0.004623413, 0.0021190643, -0.0011587143, 0.0079422, 0.045684814, 0.0033493042, 0.0012960434, 0.002199173, -0.027114868, 0.0059547424, -0.013191223, -0.017120361, -0.012619019, -0.026168823, -0.022094727, -0.030395508, 0.016845703, -0.012756348, -0.03390503, -0.041656494, 0.0004506111, -0.018814087, -0.048583984, 0.004005432, -0.022155762, 0.012634277, -0.03665161, 0.012367249, 0.012756348, -0.020187378, 0.0715332, 0.028320312, 0.028686523, -0.03451538, -0.008300781, -0.016693115, -0.06567383, -0.00044202805, -0.011764526, -0.027923584, -0.0033054352, -0.021484375, -0.010475159, -0.0025901794, -0.04800415, -0.009010315, -0.008636475, 0.04095459, -0.048553467, 0.014122009, -0.0206604, -0.043701172, -0.006088257, -0.03591919, 0.005332947, -0.0236969, 0.042755127, 0.04916382, 0.02645874, -0.0061912537, -0.011672974, 0.024017334, 0.024215698, 0.011795044, 0.0033168793, -0.011978149, -0.033294678, -0.0070152283, 0.016067505, 0.015182495, 0.021774292, -0.0041618347, 0.00793457, 0.03805542, 0.0076560974, -0.0041236877, -0.044189453, 0.044311523, -0.0017499924, -0.049713135, -0.009048462, 0.0017118454, -0.024429321, -0.019897461, -0.051239014, 0.04071045, -0.023452759, -0.030334473, 0.017349243, -0.019561768, 0.027816772, -0.0008034706, 0.0048980713, 0.017959595, 0.0036716461, -0.015701294, 0.03805542, 0.04638672, 0.0067100525, 0.0025691986, -0.0019454956, 0.002998352, 0.091796875, 0.06335449, -0.101257324, -0.06088257, -0.059143066, 0.17358398, -0.05819702, 0.00063610077, -0.03491211, 0.011856079, -0.04824829, 0.00061798096, 0.0029907227, 0.02748108, 0.043304443, 0.010528564, -0.0055885315, 0.018112183, -0.03050232, -0.026275635, -0.00522995, -0.00019013882, -0.0048828125, 0.024871826, 0.018966675, 0.03881836, -0.028244019, 0.033569336, -0.006801605, -0.0013389587, 0.01927185, -0.008071899, 0.036132812, -0.0040893555, -0.048858643, 0.020492554, -0.035827637, -0.01890564, -0.04547119, -0.028533936, 0.02305603, -0.0012550354, 0.018447876, 0.0129470825, -0.018035889, 0.012611389, -0.0010442734, 0.036621094, -0.050872803, -0.008071899, -0.046295166, 0.007881165, 0.005710602, -0.045806885, 0.0345459, 0.050079346, 0.023269653, -0.022628784, 0.034606934, 0.07141113, 0.049865723, -0.025650024, -0.00021290779, 0.032562256, 0.00015425682, -0.010322571, -0.0021514893, 0.014312744, -0.011726379, 0.032165527, -0.03186035, -0.0541687, -0.009208679, 0.021987915, 0.020385742, 0.010002136, -0.008003235, -0.04257202, 0.029510498, -0.06616211, -0.05734253, -0.02848816, 0.009712219, 0.025360107, -0.05493164, -0.01777649, -0.025299072, 0.016036987, -0.0023822784, 0.03164673, 0.03756714, -0.005432129, -0.017562866, 0.022003174, 0.023513794, -0.01878357, 0.029708862, 0.060028076, -0.05267334, -0.034484863, -0.003616333, -0.02003479, -0.015068054, -0.01889038, -0.0128479, -0.0061950684, -0.00598526, 0.005393982, -0.004295349, 0.014816284, -0.009880066, 0.024459839, -0.044006348, -0.024551392, 0.024871826, -0.026672363, 0.0552063, 0.0028438568, -0.043273926, 0.057922363, -0.0039634705, 0.016998291, -0.0063056946, 0.020233154, 0.04119873, -0.01864624, 0.012268066, -0.013580322, 0.048919678, 2.3841858e-07, -0.01134491, -0.021438599, -0.033935547, -0.0038604736, -0.00019621849, 0.02659607, 0.014884949, 0.004825592, -0.017822266, -0.013282776, 0.032958984, -0.0036239624, 0.0143966675, -0.006881714, -0.013175964, 0.02784729, 0.00090026855, 0.019073486, -0.031982422, 0.019744873, 0.0025691986, -0.042388916, 0.019363403, 0.026763916, -0.0041999817, 0.008056641, 0.020370483, 0.0033550262, 5.733967e-05, 0.00070762634, 0.08178711, 0.01828003, -0.028839111, 0.032958984, -0.021331787, -0.025115967, 0.02355957, -0.03302002, -0.030899048, 0.03778076, 0.0016832352, -0.05178833, 0.00233078, 0.03286743, -0.016494751, 0.026657104, 0.0006451607, 0.03765869, -0.055541992, -0.057525635, -0.008804321, -0.02166748, -0.05831909, -0.015304565, -0.026107788, -0.05999756, 0.021072388, 0.07159424, -0.022399902, -0.009033203, -0.028045654, 0.014389038, -0.0066719055, 0.012702942, 0.018493652, -0.022964478, -0.03112793, -0.012107849, -0.036254883, 0.0047569275, -0.021743774, 0.028060913, 0.018829346, 0.009979248, -0.016571045, 0.03955078, -0.0002541542, 0.024169922, 0.04260254, 0.107299805, 0.017623901, 0.046020508, -0.039276123, -0.0028591156, -0.007144928, -0.07208252, -0.039245605, 0.005432129, 0.01902771, 0.0023860931, -0.04446411, 0.008529663, -0.04446411, -0.12219238, 0.0035495758, 0.017089844, -0.046844482, -0.02470398, -0.022842407, -0.08911133, -0.048797607, 0.019622803, 0.03643799, -0.03390503, 0.03286743, -0.027328491, 0.0101623535, -0.03427124, 0.014213562, -0.019226074, -0.007904053, 0.040222168, -0.022201538, -0.012619019, -0.04458618, -0.024642944, 0.016357422, -0.043670654, -0.006717682, 0.0025157928, 0.03616333, -0.017700195, 0.04559326, -0.008155823, 0.0014104843, -0.018737793, 0.016067505, -0.033172607, 0.0096206665, 0.028823853, -0.028579712, 0.06970215, -0.045074463, -0.025482178, -0.043273926, -0.031799316, 0.03387451, -0.022232056, -0.0053215027, -0.05432129, -0.017425537, -0.025741577, -0.053344727, -0.027130127, 0.015052795, 0.034942627, 0.033813477, 0.026855469, 0.06561279, 0.028533936, 0.027160645, 0.019989014, 0.015357971, 5.841255e-06, -0.0082473755, 0.016967773, -0.011222839, -0.019805908, -0.05215454, 0.05340576, -0.0048332214, 0.0053977966, -0.0134887695, -0.05319214, 0.060150146, 0.012084961, 0.006454468, -0.03945923, 0.013694763, 0.04977417, -0.019119263, 0.017593384, -0.014129639, -0.048706055, 0.0121536255, -0.060638428, 0.042053223, 0.022201538, -0.0034770966, 0.048095703, 0.037963867, -0.055145264, 0.010871887, 0.02217102, -0.007873535, -0.03387451, 0.036224365, -0.07220459, -0.017196655, 0.023834229, 0.021026611, 0.026809692, 0.0016241074, -0.074645996, 0.028640747, 0.016860962, -0.053741455, -0.036071777, 0.040374756, 0.048797607, -0.0018129349, 0.033233643, -0.032073975, -0.008407593, -0.04901123, -0.0050315857, 0.014884949, -0.030227661, 0.016357422, -0.02720642, -0.060028076, -0.0043258667, 0.03237915, -0.014427185, 0.0151901245, -0.020095825, 0.0362854, 0.043060303, -0.032104492, -0.03250122, 0.014312744, -0.047180176, 0.04534912, 0.03793335, 0.004016876, 0.019989014, -0.06011963, 0.02432251, -0.007926941, -0.04333496, 0.029327393, 0.000579834, -0.047424316, -0.011398315, 0.00907135, 0.011100769, -0.023010254, 0.010398865, -0.03967285, 0.014373779, 0.034729004, -0.07989502, 0.023849487, -0.011444092, -0.006290436, -0.013687134, -0.04449463, -0.015411377, 0.08453369, 0.047088623, -0.032806396, -0.035308838, 0.021011353, 8.8870525e-05, -0.022064209, -0.04901123, 0.035186768, -0.10192871, 8.457899e-05, 0.0066108704, -0.022628784, -0.008773804, 0.013221741, -0.03579712, 0.005180359, -4.7802925e-05, -0.06817627, 0.011405945, -0.04598999, -0.02381897, 0.024124146, -0.011955261, 0.022979736, -0.0061302185, 0.030136108, -0.03677368, 0.049713135, -0.027648926, -0.03753662, 0.044647217, -0.011482239, -0.00724411, -0.04901123, 0.014717102, -0.0070266724, 0.011230469, -0.005935669, 0.01776123, 0.004432678, -0.0016155243, -0.06222534, -0.0007352829, -0.009017944, -0.044189453, 0.020874023, 0.0041885376, -0.012565613, 0.022735596, 0.06890869, -0.01878357, 0.0008263588, -0.018035889, -0.0056610107, 0.0077705383, 0.01134491, -0.0072746277, -0.010925293, -0.013671875, 0.008171082, -0.025558472, 0.023208618, 0.016784668, -0.012313843, 0.001750946, 0.0015926361, -0.014312744, -0.058532715, 0.0016860962, 0.0054473877, 0.041259766, 0.021514893, -0.028869629, -0.01727295, -0.03036499, -0.012687683, -0.032806396, -0.05227661, -0.02609253, 0.02998352, -0.007297516, -0.044647217, 0.010871887, -0.007713318, -0.009757996, 0.009819031, -0.040283203, -5.722046e-05, 0.025177002, -0.024475098, -0.024215698, -0.013084412, -0.015159607, -0.024291992, -0.033111572, 0.01146698, -0.032073975, 0.064575195, -0.000626564, 0.049468994, -0.017852783, 0.027542114, 0.010650635, -0.00434494, -0.014709473, 0.05267334, 0.013290405, -0.00069618225, 0.051849365, -0.0061149597, 0.02758789, 0.04434204, -0.0031547546, -0.0010709763, 0.007583618, -0.00242424, 0.051940918, -0.01436615, -0.012283325, -0.018295288, 0.050323486, -0.0035572052, 0.030044556, -0.057922363, 0.019012451, 0.036712646, -0.013343811, 0.02684021, -0.032989502, 0.07885742, -0.0121536255, -0.064208984, -0.035003662, -0.010429382, -0.045654297, 0.01651001, -0.036743164, -0.009605408, -0.03277588, -0.066345215, -0.000910759, -0.023803711, 0.004558563, -0.039764404, 0.02166748, 0.0087509155, -0.020446777, -0.024719238, 0.0052375793, -0.024398804, -0.03665161, -0.02494812, 0.014350891, 0.010673523, -0.01675415, 0.011070251, 0.0058898926, 0.025726318, -0.044067383, -0.050872803, -0.06762695, -0.0019197464, -0.024887085, 0.05532837, -0.017456055, -0.051635742, 0.007621765, 0.011764526, 0.026626587, -0.027374268, -0.013725281, -0.025741577, 0.0020332336, -0.015899658, 0.019042969, -0.04486084, 0.04043579, -0.008590698, -0.050079346, 0.007347107, 0.013717651, -0.009254456, 0.0039367676, 0.02168274, 0.01322937, 0.0051231384, 0.030014038, 0.025131226, -0.04458618, -0.022888184, -0.0045433044, 0.00014209747, -0.039855957, -0.045288086, 0.028518677, -0.024276733, -0.04425049, 0.014175415, 0.028015137, 0.020568848, 0.031982422, -0.025253296, -0.04800415, -0.016220093, -0.014793396, 0.015449524, 0.00617218, -0.0023479462, -0.0096206665, 0.0022563934, -0.00026655197, 0.01576233, -0.008705139, 0.017181396, 0.03591919, 0.0030899048, 0.01751709, 0.050720215, -0.03466797, -0.0011262894, 0.0066871643, -0.007598877, -0.0317688, -0.0029468536, 0.010047913, 0.03845215, -0.005115509, 0.0071868896, -0.0079956055, 0.019836426, 0.011192322, -0.007041931, 0.022903442, 0.023025513, 0.00566864, 0.0063095093, 0.03060913, 0.036865234, 0.06738281, -0.007637024, -0.05114746, 0.0076026917, -0.0050468445, -0.038360596, -0.02897644, 0.0064849854, -0.026779175, 0.019866943, -0.023986816, 0.011878967, 0.01991272, 0.027816772, -0.014381409, 0.033294678, 0.0035362244, -0.030059814, -0.0024204254, -0.008934021, 0.045043945, 0.014801025, -0.011138916, -0.033447266, -0.017745972, -0.004550934, 0.032226562, 0.042053223, 0.015487671, 0.002046585, -0.03338623, -0.006729126, 0.040893555, -0.029876709, -0.0022640228, -0.02180481, -0.011703491, -0.04095459, -0.0017271042, 0.015823364, 0.02180481, 0.0045547485, 0.0104522705, 0.034698486, -0.0056610107, 0.011940002, 0.030334473, -0.00024461746, -0.012580872, 0.0056915283, -0.008888245, -0.034301758, 0.01184845, 0.007068634, -0.0073432922, 0.032958984, 0.030883789, -0.02154541, -0.007156372, 0.004196167, 0.01108551, -0.02659607, 0.062286377, -0.014755249, -0.025054932, -0.025131226, 0.0058517456, 0.011550903, 0.023147583, -0.0013713837, -0.015197754, -0.034484863, -0.036712646, -0.01448822, -0.024978638, -0.026748657, 0.03744507, -0.0068626404, -0.06384277, -0.052581787, -0.018844604, -0.020065308, -0.0055007935, 0.01777649, -0.009895325, -0.019042969, 0.00070858, -0.023468018, 0.06378174, -0.022125244, 0.033355713, -0.05291748, 0.04449463, 0.027236938, -0.055419922, -0.0030498505, -0.008583069, -0.009155273, 0.012329102, 0.026016235, -0.019454956, 0.06341553, 0.010246277, -0.020462036, -0.0088272095, -0.025390625, 0.011047363, -0.0010900497, 0.028869629, -0.04083252, 0.034576416, -0.04107666, -0.07330322, -0.044769287, -0.020523071, -0.06237793, 0.050109863, -0.00819397, -0.025924683, 0.026947021, -0.012741089, -0.052368164, -0.05783081, 0.0018625259, 0.0070266724, 0.030456543, -0.025115967, 0.022094727, -0.020492554, -0.041748047, -0.031677246, 0.033081055, -0.103027344, -0.033935547, -0.024887085, 0.010681152, 0.011749268, -0.015396118, -0.0016841888, -0.024383545, 0.020553589, -0.014434814, 0.024353027, -0.053497314, -0.021743774, 0.007858276, -0.0019340515, -0.0016098022, -0.028884888, 0.019119263, 0.007385254, 0.023803711, 0.019088745, 0.04449463, -0.0289917, 0.015327454, -0.015838623, -0.036102295, 0.009536743, -0.04928589, 0.05267334, 0.0016031265, -0.061584473, -0.034851074, 0.0262146, 0.05508423, 0.00028324127, 0.0055389404, 0.047424316, 0.0055732727, 0.008117676, -0.001742363, -0.026443481, -0.02848816, 0.0073051453, -0.04800415, 0.019577026, 0.010238647, -0.03314209, 0.0141067505, 0.024032593, -0.027664185, 0.020462036, -0.026000977, -0.027191162, -0.009864807, -0.04055786, -0.041534424, -0.014045715, 0.0178833, 0.010169983, 0.020263672, -0.020202637, 0.016784668, -0.05606079, 0.030136108, 0.015655518, -0.062286377, -0.017608643, -0.038879395, 0.02619934, 0.0043144226, 0.018112183, 0.006088257, 0.02935791, -0.0053977966, 0.01600647, 0.010475159, -0.023406982, 0.009063721, 0.016082764, 0.031143188, -0.029907227, 0.05731201, -0.040405273, -0.064208984, -0.054748535, 0.037353516, -0.015991211, 0.010398865, 0.02835083, 0.0073165894, 0.026016235, 0.007549286, -0.00365448, 0.006450653, 0.011619568, 0.09082031, -0.024795532, 0.014450073]}, "B07X6CJ99H": {"id": "B07X6CJ99H", "original": "Brand: WADEO\nName: WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More\nDescription: 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material\uff1aPVC\u3001cuprum
      Length: \u00a04 Feet
      Weight : 20.46oz
      Inlet Pressre: 25~250 PSIG
      Outlet Pressure: 0~30 PSIG adjutable
      Gauge reading: 0 \u2013 60 PSI (1- 400 xkpa )\u00a0
      Outlet Connection: 5/8\"-18 UNF Female flare swivel fitting( 3/8\" SAE)
      Certificate: CSA
      Max. flow capacity:
      150,000 BTU/hr.
      Works with QCC1/ Type 1 propane tank
      \nFeatures: Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\nEasy and quick to install. Type 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch).\n3/8\u201d female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8\" male flare connector.\n3/8\" Female Flare Fitting has an outside diameter of 5/8\", come with pipe fitting 3/8\" flare M x 1/8\" MNPT.\nCSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "metadata": {"Name": "WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More", "Brand": "WADEO", "Description": "4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material\uff1aPVC\u3001cuprum
      Length: \u00a04 Feet
      Weight : 20.46oz
      Inlet Pressre: 25~250 PSIG
      Outlet Pressure: 0~30 PSIG adjutable
      Gauge reading: 0 \u2013 60 PSI (1- 400 xkpa )\u00a0
      Outlet Connection: 5/8\"-18 UNF Female flare swivel fitting( 3/8\" SAE)
      Certificate: CSA
      Max. flow capacity:
      150,000 BTU/hr.
      Works with QCC1/ Type 1 propane tank
      ", "Features": "Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\nEasy and quick to install. Type 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch).\n3/8\u201d female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8\" male flare connector.\n3/8\" Female Flare Fitting has an outside diameter of 5/8\", come with pipe fitting 3/8\" flare M x 1/8\" MNPT.\nCSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.020553589, -0.018127441, -0.023956299, -0.02331543, -0.036254883, 0.0023899078, -0.02607727, 0.0054244995, 0.023040771, 0.018356323, -0.0076065063, 0.005443573, 0.032836914, -0.03488159, 0.016799927, -0.012313843, 0.023895264, 0.0059890747, 0.021057129, -0.003332138, 0.0070991516, 0.018051147, -0.00046348572, 0.017211914, 0.026382446, -0.0066604614, 0.009513855, 0.02305603, 0.015434265, 0.015403748, 0.01889038, -0.033721924, 0.046844482, 0.0132751465, -0.04953003, -0.043060303, -0.0044822693, -0.022537231, -0.03527832, 0.019073486, -0.0056877136, 0.0025558472, -0.05734253, 0.02079773, -0.034332275, -0.06124878, -0.009086609, -0.05819702, 0.028427124, 0.019515991, -0.0049324036, 0.010383606, -0.0004823208, -0.026733398, -0.027297974, -0.03149414, 0.016571045, -0.054840088, 0.019348145, 0.023208618, 0.0013341904, -0.014884949, 0.016662598, -0.027282715, -0.039123535, -0.0018978119, 0.06100464, -0.009559631, -0.009933472, -0.030700684, 0.02458191, 0.020874023, 0.022644043, -0.00141716, -0.03111267, -0.033203125, 0.040893555, -0.018035889, 0.0019168854, -0.001704216, 0.027267456, -0.013282776, 0.02809143, -0.001285553, 0.015670776, 0.021087646, -0.006767273, -0.01838684, -0.058807373, -4.4822693e-05, -0.033477783, -0.0096588135, -0.049957275, 0.011360168, -0.009178162, 0.013687134, -0.039520264, -0.08483887, 0.022979736, 0.015686035, 0.02911377, -0.024169922, 0.03640747, 0.01727295, 0.022842407, 0.07928467, -0.018112183, 0.021469116, 0.035614014, -0.0049705505, 0.0035076141, -0.029678345, -0.008514404, -0.030853271, -0.026535034, 0.05355835, 0.019500732, -0.034362793, 0.007671356, -0.026153564, -0.029159546, 0.010772705, 0.015014648, -0.053131104, 0.014442444, 0.0032367706, -0.0008211136, -0.022857666, -0.047332764, 0.010246277, -0.013885498, -0.016952515, 0.064331055, 0.105285645, 0.04147339, -0.017028809, 0.015426636, -0.023117065, 0.004432678, 0.0126953125, -0.0037631989, -0.033569336, -0.009483337, 0.022338867, -0.018600464, 0.042541504, 0.020599365, -0.010719299, -0.0020542145, -0.0335083, -0.03994751, -0.020217896, 0.06085205, 0.0066871643, -0.06707764, 0.0026569366, 0.0067977905, -0.0067596436, -0.04736328, -0.05609131, 0.002363205, -0.029144287, -0.020263672, 0.007896423, -0.037231445, 0.04244995, 0.005630493, -0.0158844, 0.025299072, 0.08795166, -0.00010341406, 0.013420105, 0.04373169, 0.021820068, -0.011604309, 0.0037460327, -0.040771484, 0.09222412, 0.08013916, -0.103149414, -0.05026245, -0.060058594, 0.16442871, -0.05178833, 0.026016235, -0.058929443, 0.009277344, -0.061340332, -0.0039863586, 0.012573242, 0.012908936, 0.030090332, 0.000644207, -0.028656006, -0.006175995, 0.015434265, -0.007873535, 0.020263672, -0.0069465637, 0.005207062, -0.045135498, 0.021713257, -0.008621216, 0.0061683655, 0.050476074, -0.012619019, 0.018112183, 0.026443481, 0.05355835, -0.008483887, -0.017181396, -0.042236328, 0.018341064, -0.02607727, -0.064819336, 0.010147095, 0.011138916, -0.008628845, -0.0011472702, -0.02357483, 0.030914307, 0.006011963, 0.01159668, 0.056854248, 0.0070724487, -0.027145386, 0.017791748, -0.012290955, 0.023147583, 0.0022602081, 0.018981934, -0.0020370483, 0.052093506, 0.038604736, -0.019424438, 0.013160706, 0.06317139, 0.016952515, -0.018936157, -0.0007324219, 0.017318726, -0.02078247, -0.06262207, -0.034820557, -0.013694763, -0.08081055, -0.022003174, -0.010932922, -0.03665161, -0.005027771, 0.06939697, 0.004436493, 0.010734558, -0.0068855286, -0.0234375, 0.021133423, -0.034576416, 0.017181396, -0.021972656, 0.016326904, -0.014099121, 0.0075035095, 0.04385376, -0.018798828, 0.03643799, 0.038208008, 0.034851074, 0.026184082, -0.045898438, 0.032409668, 0.014785767, -0.0018825531, -0.0065994263, -0.017745972, -0.025619507, -0.021270752, -0.01940918, 0.030258179, -0.038208008, -0.035217285, 0.0051612854, 0.0056648254, -0.0017976761, -0.0047950745, 0.036712646, 0.004009247, 0.0027656555, -0.011070251, 0.004512787, -0.006000519, 0.044921875, -0.029968262, -0.015129089, -0.017654419, -0.013160706, -0.03491211, 0.056884766, 0.0042800903, 0.022094727, -0.023925781, 0.004764557, 0.041625977, -0.0395813, 0.026611328, 0.0062675476, -0.017242432, 0.006816864, 0.02961731, 0.028701782, -0.031082153, 0.032928467, 0.080444336, 0.018829346, -0.034210205, 0.054992676, 0.02784729, 0.019424438, 0.030654907, 0.05682373, 0.05886841, -0.0003876686, -0.0018281937, -0.007106781, -0.038757324, 0.014862061, -8.612871e-05, -0.05090332, -0.0044555664, -0.04638672, 0.02104187, 0.01776123, -0.017974854, 0.00015318394, -0.010284424, 0.007621765, -0.0023841858, 0.0023384094, 0.045318604, 0.0033740997, -0.040649414, -0.0077400208, -0.039520264, -0.007534027, 0.008323669, -0.040802002, -0.031433105, 0.05819702, -0.0022335052, -0.005455017, -0.005580902, 0.043701172, -0.020141602, 0.0038089752, -0.055999756, 0.01689148, -0.019500732, -0.035125732, -0.045318604, 0.019195557, -0.07946777, -0.027648926, -0.010032654, -0.06689453, -0.036743164, 0.068603516, -0.005329132, -0.047912598, -0.012504578, -0.008834839, -0.004421234, 0.013130188, -0.010620117, -0.022354126, -0.023971558, -0.022781372, -0.01084137, 0.036895752, -0.022003174, 0.019561768, 0.017456055, -0.00030994415, 0.02229309, -0.021865845, 0.028762817, 0.02381897, 0.030227661, 0.04727173, 0.034606934, -0.0031814575, -0.04977417, -0.017410278, 0.042388916, -0.025848389, -0.019302368, 0.013793945, 0.010543823, -0.023025513, 0.0068855286, -0.020767212, -0.020187378, -0.03289795, -0.0032596588, -0.012779236, 0.0035324097, 0.011764526, -0.08874512, 0.005836487, -0.059631348, 0.028656006, 0.035888672, -0.028198242, 0.041931152, -0.040130615, 0.032226562, -0.038024902, 0.008422852, -0.038146973, -0.010314941, -0.03515625, 0.048187256, 0.054260254, -0.076049805, 0.0112838745, 0.028564453, -0.03024292, -0.004299164, -0.015014648, 0.020309448, -0.05316162, 0.022491455, -0.0019302368, -0.02407837, -0.05493164, -0.03375244, -0.01638794, 0.022079468, 0.0357666, -0.007537842, 0.023361206, -0.0041122437, -0.06341553, -0.010070801, -0.021575928, -0.0072746277, -0.012718201, -0.028137207, 0.0029201508, -0.057861328, 0.004055023, -0.055877686, 0.013839722, 7.814169e-05, 0.0703125, 0.021697998, 0.009155273, 0.0993042, 0.040222168, 0.05810547, 0.023849487, -0.023834229, -0.018051147, -0.0385437, 0.033081055, 0.018951416, -0.033935547, -0.020309448, 0.023910522, 0.018981934, 0.010475159, -0.030456543, -0.005809784, 0.045013428, -0.010917664, -0.0022659302, 0.016433716, 0.03527832, 0.002199173, -0.022918701, 0.008377075, 0.007987976, -0.041625977, 0.021408081, -0.06939697, 0.05923462, 0.011703491, -0.0052833557, 0.029571533, 0.027359009, -0.012130737, 0.016098022, 0.068237305, -0.01058197, 0.018615723, 0.01576233, -0.02468872, -0.027923584, 0.007572174, -0.021453857, 0.02166748, 0.0023822784, -0.028030396, 0.013702393, -0.01965332, -0.042663574, -0.05380249, 0.030715942, -0.0003323555, -0.0049209595, 0.006504059, -0.08276367, -0.029037476, -0.04699707, -0.0022449493, 0.028640747, -0.02760315, -0.04446411, 0.016052246, -0.012580872, -0.03768921, 0.011795044, 0.021392822, -0.023147583, 0.028198242, 0.001830101, 0.027633667, 0.015808105, -0.011749268, -0.006095886, -0.00046873093, -0.00970459, 0.046722412, 0.008605957, -0.022903442, -0.024032593, 0.00793457, 0.0036468506, -0.006942749, 0.064819336, 0.023284912, -0.07318115, -0.027740479, -0.017578125, -0.0017414093, -0.0501709, -0.021209717, -0.01889038, -0.01676941, 0.036987305, -0.041137695, 0.0158844, 0.00970459, 0.006160736, -0.060546875, -0.045410156, -0.022598267, -0.00819397, -0.03488159, 0.008995056, 0.0010213852, -0.015357971, -0.008415222, 0.008117676, -0.051757812, 0.014831543, -0.07836914, 0.00040364265, 0.045776367, 0.0234375, 0.0015363693, -0.0010633469, 0.012397766, 0.0049057007, 0.064941406, -0.0051727295, -0.009780884, -0.04586792, -0.008468628, 0.0026073456, 0.02319336, 0.036987305, -0.022079468, 0.0115356445, -0.0034694672, -0.00036668777, -0.07421875, 0.01977539, 0.026641846, -0.046936035, -0.042175293, 0.0015563965, 0.06719971, 0.013763428, 0.043823242, 0.010528564, -0.008712769, -0.004169464, -0.024871826, -0.10748291, -0.05319214, -0.009498596, -0.031280518, -0.019866943, -0.015525818, -0.005886078, 0.103759766, 0.049194336, 0.0009860992, 0.050079346, -0.0010690689, 0.01398468, -0.008178711, 0.011062622, -0.04095459, 0.010688782, -0.029342651, -0.010681152, -0.03213501, 0.02470398, 0.030593872, -0.011703491, 0.011314392, -0.00038576126, 0.0016841888, -0.018478394, -0.001627922, 0.013885498, 0.03878784, -0.01637268, -0.045806885, 0.01084137, -0.037963867, -0.010002136, 0.021057129, 0.0066452026, 0.014221191, -0.04486084, 0.009643555, -0.040130615, -0.020751953, 0.058288574, 0.003566742, 0.03390503, -0.039215088, 0.033996582, 0.04272461, 0.010093689, 0.0070610046, -0.038970947, -0.005836487, -0.0010614395, -0.0029354095, 0.00064229965, -0.016723633, 0.0038471222, 0.010047913, 0.017593384, 0.0053138733, 0.037353516, -0.007118225, -0.0020980835, -0.040893555, -0.0011606216, 0.014961243, -0.04272461, 0.080444336, -0.044921875, 0.0073432922, 0.0289917, -0.012336731, 0.046142578, -0.009010315, -0.01687622, 0.020263672, 0.0044898987, 0.00040459633, -0.008560181, 0.06744385, -0.0034656525, 0.0045051575, -0.035339355, -0.0041923523, -0.023498535, 0.022140503, 0.028793335, -0.039520264, 0.035888672, -0.034606934, -0.029708862, 0.031555176, -0.030578613, -0.018630981, -0.015602112, 0.012130737, -0.06323242, -0.018356323, 0.015808105, -0.008216858, -0.010124207, 0.012664795, -0.041534424, 0.060180664, -0.0061302185, -0.07720947, -0.04876709, -0.028518677, 0.017684937, -0.01890564, 0.00015258789, -0.023239136, -0.00061798096, -0.01574707, -0.0068511963, 0.03225708, 0.011650085, -0.038970947, -0.019592285, 0.004196167, 0.029067993, 0.00013816357, 0.028656006, 0.008766174, -0.02218628, 0.023162842, 0.0017318726, 0.02154541, -0.03201294, 0.0038986206, 0.011116028, -0.01828003, -0.022003174, -0.042114258, -8.422136e-05, 0.053863525, -0.045288086, -0.068359375, 0.025177002, 0.021591187, -0.016830444, -0.044647217, 0.03253174, 0.014915466, 0.009361267, 0.010017395, -0.016174316, -0.046813965, -0.01071167, 0.0012922287, -0.046447754, -0.08178711, -0.05392456, -0.034454346, 0.005191803, -0.022018433, -0.0071411133, 0.036499023, -0.0030441284, 0.032073975, -0.013023376, -0.023483276, -0.024520874, -0.025924683, 0.01889038, -0.004512787, -0.0010671616, -0.0062942505, 0.010520935, -0.08721924, -0.054840088, 0.006916046, 0.023025513, 0.011779785, 0.014533997, 0.00995636, 0.040222168, -0.05532837, 0.024002075, 0.022705078, -0.03543091, -0.019821167, 0.011550903, -0.005001068, 0.023773193, -0.056549072, -0.00028038025, -0.019546509, 0.018066406, -0.008300781, 0.029174805, -0.06213379, -0.030685425, -0.013298035, 0.06341553, -0.010810852, -0.017578125, 0.002456665, 0.012207031, -0.013412476, -0.03466797, -0.054351807, -0.021270752, -0.028869629, -0.05444336, -0.018096924, 0.0009870529, -0.0043144226, 0.017944336, -0.007423401, 0.013572693, -0.06149292, 0.056427002, -0.026916504, 0.0028190613, 0.043518066, -0.024917603, 0.034942627, -0.029525757, 0.018478394, 0.002254486, 0.0093307495, -0.05331421, 0.010559082, 0.047851562, 0.023391724, -0.018310547, -0.047729492, 0.01335144, -0.016952515, -0.027114868, 0.013252258, -0.009880066, -0.020721436, -0.017562866, -0.012413025, -0.0009036064, -0.012741089, 0.017715454, 0.033172607, 0.039794922, -0.0072288513, 0.03152466, -0.014831543, -0.037841797, 0.0023403168, -0.03894043, 0.0052108765, -0.009147644, -0.016174316, 0.008148193, -0.048553467, 0.0209198, 0.024551392, -0.024429321, 0.031677246, -0.014877319, 0.009063721, -0.030166626, -0.0013017654, -0.036895752, -0.017532349, -0.016555786, -0.009857178, 0.009803772, 0.015151978, 0.00051927567, 0.022094727, -0.0099487305, 0.009742737, 0.01146698, -0.0008573532, 0.016052246, 0.031341553, -0.05166626, -0.07672119, -0.043792725, -0.01638794, -0.031951904, -5.507469e-05, 0.055236816, -0.011100769, 0.052246094, 0.026657104, 0.020309448, 0.07470703, 0.0087890625, 0.023468018, -0.02180481, 0.014045715, 0.019515991, -0.003326416, 0.0009589195, -0.03604126, -0.016647339, 0.004688263, -0.019241333, -0.0022583008, 0.002407074, -0.03050232, 0.0030384064, -0.04171753, 0.039398193, -0.03427124, -0.027664185, -0.00843811, -0.030792236, 0.027389526, -0.030853271, -0.0635376, -0.050354004, -0.008926392, -0.03149414, 0.040496826, 0.019195557, -0.02305603, 3.5762787e-06, 0.002981186, -0.02973938, -0.026184082, -0.022445679, 0.019424438, 0.014839172, -0.006679535, 0.027328491, -0.0011138916, -0.03050232, -0.04434204, 0.016937256, -0.04736328, -0.011413574, -0.028198242, 0.02255249, 0.021438599, 0.009590149, 0.010513306, 0.097473145, -0.0012331009, 0.009094238, -0.034362793, -0.011199951, -0.0074882507, -0.0063056946, -0.004337311, -0.038513184, -0.033966064, 0.03173828, 0.0027256012, -0.0043525696, 0.025054932, 0.0044517517, -0.015083313, 0.012580872, 0.0049324036, -0.04385376, 0.00655365, -0.024993896, 0.04827881, 0.024169922, -0.037231445, 0.011550903, 0.01979065, 0.002828598, 0.034942627, 0.012329102, 0.020050049, -0.003168106, -0.056243896, 0.0013751984, -0.01625061, -0.009971619, 0.026412964, -0.018295288, -0.020858765, -0.0009188652, -0.0045204163, -0.012588501, 0.0003695488, 0.0070266724, 0.0362854, 0.0146102905, 0.018569946, 0.012512207, -0.039733887, -0.00020122528, -0.031097412, -0.04675293, 0.015274048, -0.030853271, -0.010406494, -0.017166138, -0.026931763, -0.001367569, -0.03793335, -0.026565552, -0.022506714, -0.03125, 0.043914795, 0.012672424, 0.018676758, 0.0067481995, 0.01576233, -0.0006284714, -0.04736328, 0.016586304, 0.044830322, -0.013305664, -0.056854248, 0.009536743, 0.013504028, 0.07043457, 0.0025691986, -0.05996704, -0.0670166, 0.07183838, 0.009407043, -0.03729248, 0.013557434, -0.016464233, 0.0064086914, 0.017837524, -0.026687622, -0.027832031, 0.012054443, 0.01828003, -0.021957397, 0.012802124]}, "B01M2YIWRF": {"id": "B01M2YIWRF", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover\nDescription: \nFeatures: Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H\nGardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt\nClick-close straps snap at front to secure cover on the windiest days\nElastic hem cord for a tight and custom fit\nAir vents reduce inside condensation and wind lofting\n", "metadata": {"Name": "Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover", "Brand": "Classic Accessories", "Description": "", "Features": "Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H\nGardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt\nClick-close straps snap at front to secure cover on the windiest days\nElastic hem cord for a tight and custom fit\nAir vents reduce inside condensation and wind lofting", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02734375, -0.007583618, -0.04171753, -0.021316528, -0.011375427, -0.007396698, -0.006362915, 0.036712646, -0.010177612, -0.006816864, -0.026885986, 0.013923645, -0.03704834, -0.034362793, 0.015090942, -0.026565552, 0.02468872, 0.017364502, 0.010040283, -0.01776123, -0.016067505, -0.019012451, 0.010765076, 0.07507324, 0.009918213, -0.022583008, 0.048431396, -0.0033512115, 0.005596161, -0.015586853, 0.0138549805, -0.003156662, 0.023971558, 0.01914978, -0.027893066, 0.0009813309, 0.028137207, -0.016784668, -0.0027103424, 0.031036377, -0.012802124, 0.014228821, 0.041015625, -0.026367188, -0.003698349, -0.026977539, 0.008560181, -0.014595032, 0.030532837, 0.022323608, -0.005657196, 0.018249512, -0.019836426, -0.019973755, 0.001329422, 0.0018177032, 0.027999878, -0.03845215, 0.010269165, -0.008888245, -0.004673004, 0.01965332, 0.026351929, 0.007873535, 0.0057029724, -0.0006952286, 0.07928467, -0.0025501251, 0.027191162, 0.008865356, 0.002462387, 0.028579712, 0.021148682, -0.02142334, -0.021987915, -0.030899048, 0.0034751892, -0.027435303, 0.015808105, 0.006958008, -0.04220581, -0.025390625, 0.087402344, -0.037872314, -0.007156372, -0.022399902, -0.02003479, 0.0074806213, 0.012702942, -0.0042266846, -0.0016403198, 0.0063705444, 0.029205322, 0.0047950745, -0.021194458, -0.031799316, -0.043273926, -0.071899414, 0.03982544, 0.0017290115, 0.0045204163, -0.029510498, 0.0058021545, 0.004169464, 0.013549805, 0.04248047, 0.0040130615, -0.009712219, 0.038024902, -0.00299263, -0.0060272217, 0.055664062, -0.0079956055, -0.012969971, -0.022399902, 0.000998497, -0.043548584, 0.015342712, 0.010215759, -0.00497818, -0.02458191, -0.008163452, -0.027709961, -0.013450623, -0.0031166077, -0.025375366, -0.030899048, 0.054595947, -0.0028896332, 0.012557983, 0.0029582977, 0.0027999878, -0.0051994324, 0.038635254, 0.0008621216, -0.0053215027, 0.044006348, -0.037109375, 0.010528564, 0.0057868958, -0.000813961, -4.220009e-05, 0.017105103, 0.0004968643, -0.028137207, 0.026809692, 0.024597168, 0.005558014, -0.03314209, -0.056610107, 0.0012655258, -0.010681152, 0.0317688, -0.005584717, -0.054107666, 0.017562866, -0.026367188, 0.006427765, -0.031585693, -0.03286743, -0.051452637, -0.033325195, -0.006504059, 0.014259338, -0.010253906, 0.06774902, 0.043426514, 0.007598877, 0.012535095, 0.101501465, -0.032318115, 0.01713562, 0.03286743, 0.03201294, -0.017303467, -0.011787415, -0.020614624, 0.06970215, 0.062072754, -0.079833984, -0.05053711, -0.06161499, 0.113586426, -0.046661377, 0.029342651, -0.079833984, 0.013328552, -0.059753418, 0.032592773, 0.0063285828, -0.00655365, 0.010398865, 0.035736084, -0.016555786, -0.035583496, -0.029541016, -0.0057373047, 0.03137207, -0.035369873, 0.009635925, 0.018173218, -0.001124382, 0.020629883, 0.01586914, 0.04360962, -0.011627197, 0.011703491, -0.0051193237, -0.013450623, 0.009124756, 0.0044784546, 0.0031166077, -0.006454468, -0.021621704, 0.0107803345, 0.018371582, 0.022445679, 0.004558563, 0.0079422, -0.005924225, 0.049926758, -0.010948181, 0.020355225, 0.045684814, -0.027893066, -0.004638672, -0.013671875, 0.0022411346, -0.011711121, -0.0068473816, 0.055603027, 0.004611969, 0.064575195, 0.01876831, -0.04550171, 0.0077171326, 0.0236969, -0.02180481, -0.01687622, 0.04147339, 0.015396118, -0.0519104, -0.01991272, 0.039001465, -0.04522705, -0.04736328, 0.0028896332, 0.026657104, -0.02331543, -0.009170532, 0.05166626, -0.01838684, 0.018081665, 0.012664795, -0.016464233, 0.02142334, -0.023605347, -0.0022678375, -0.031463623, 0.022354126, 0.0033473969, 0.044311523, 0.019088745, 0.014221191, 0.016067505, 0.009178162, 0.06500244, 0.0670166, 0.034088135, -0.035461426, -0.030395508, 0.035095215, 0.0032348633, 0.030838013, -0.017745972, 0.015556335, -0.017913818, -0.0034332275, -0.012886047, 0.016235352, 0.03894043, 0.046295166, 0.025772095, -0.016479492, 0.018173218, -0.002418518, -0.0017004013, 0.007724762, -0.012763977, -0.010292053, 0.015853882, 0.03390503, 0.013290405, 0.01600647, 0.031982422, -0.018035889, 0.0054855347, 0.0020141602, 0.034301758, -0.027648926, -0.023666382, 0.036590576, -0.025527954, 0.021636963, -0.018798828, 0.0018577576, -0.043426514, 0.027160645, 0.019760132, -0.020980835, -0.027908325, 0.018173218, 0.004421234, 0.024856567, 0.013023376, 0.012237549, -0.0079193115, 0.04333496, 0.048919678, 0.054260254, 0.034576416, 0.021697998, -0.030075073, -0.01586914, 0.011421204, -0.0075035095, -0.03933716, -0.022216797, -0.06100464, 0.014549255, -0.010940552, -0.056915283, -0.020065308, 0.028793335, -0.003944397, 0.018478394, 0.0070533752, 0.044067383, 0.017486572, -0.0038604736, 0.03488159, 0.0050811768, -0.015342712, 0.006374359, -0.04812622, 0.0052986145, 0.044921875, 0.008804321, -0.01247406, 0.019592285, 0.0074043274, -0.013755798, -0.015686035, -0.043121338, -0.016784668, 0.046905518, 0.0038757324, -0.025756836, 0.01979065, -0.054260254, -0.032440186, -0.028030396, -0.079589844, -0.046173096, 0.066223145, 0.00983429, -0.07537842, 0.0010919571, -0.011672974, 0.0050315857, 0.034576416, -0.03604126, -0.034179688, -0.022338867, -0.030212402, 0.0016908646, 0.018539429, -0.050354004, 0.036010742, 0.006088257, -0.023025513, 0.0043296814, -0.019378662, 0.02192688, -0.003583908, 0.04345703, 0.09320068, 0.0231781, 0.047821045, -0.052459717, 0.044555664, 0.059265137, -0.053253174, -0.00881958, 0.0033111572, -0.007659912, 0.009208679, 0.032592773, -0.050323486, -0.023086548, -0.07519531, -0.016204834, 0.004081726, -0.042938232, -0.0057258606, -0.029220581, -0.054016113, -0.043670654, 0.028121948, 0.052093506, -0.025619507, 0.0048599243, -0.028701782, -0.009735107, -0.028411865, 0.03665161, -0.06463623, -0.0007958412, -0.04522705, 0.038116455, 0.013160706, -0.0020370483, -0.018249512, 0.016296387, -0.016098022, -0.008659363, 0.002773285, 0.009513855, -0.023468018, 0.033813477, 0.009849548, -0.0064086914, 0.0019454956, -0.030471802, -0.038879395, -0.068237305, -0.016326904, -0.028701782, 0.007820129, -0.033233643, -0.0435791, -0.0096206665, 0.032073975, 0.0048332214, -0.007282257, 0.019897461, 0.0010995865, -0.02015686, -0.022750854, -0.018310547, -0.027542114, 0.041168213, -0.0037517548, 0.008178711, -0.0013599396, -0.013938904, -0.003168106, 0.015136719, 0.01209259, 0.0046195984, -0.0099487305, -0.015335083, 0.004814148, -0.015617371, -0.014450073, -0.06896973, 0.070617676, -0.008491516, 0.020233154, -0.027893066, -0.04837036, 0.061431885, -0.001824379, -0.010688782, -0.00070238113, 0.017944336, 0.016525269, -0.020050049, 0.023468018, 0.009399414, -0.06939697, 0.014411926, -0.03842163, 0.054626465, 0.036071777, -0.014892578, 0.06518555, 0.061431885, 0.0005636215, 0.018692017, 0.050811768, -0.021148682, 0.017044067, 0.035064697, -0.026611328, -0.010917664, 0.006290436, -0.01158905, -0.027328491, -0.07623291, 0.0020370483, 0.005996704, 0.008995056, 0.02279663, -0.032440186, -0.004245758, 0.012718201, -0.013572693, -0.016418457, -0.05142212, 0.013305664, -0.05279541, 0.013435364, -0.0066566467, -0.004585266, 0.03253174, -0.013435364, 0.00762558, -0.014381409, -0.009262085, -0.051513672, -0.047912598, 0.029525757, 0.045532227, -0.040863037, 0.01486969, 0.0047836304, 0.036315918, -0.014839172, -0.0045166016, 0.024459839, -0.0006337166, 0.012275696, -0.0014810562, 0.018630981, 0.051513672, 0.016189575, 0.022628784, -0.064453125, -0.0881958, -0.0119018555, 0.0357666, 0.02217102, -0.063964844, -0.019058228, 0.0022029877, -0.047607422, 0.00033855438, -0.018035889, 0.00081014633, -0.020446777, -0.014663696, -0.09991455, -0.026062012, -0.0034179688, -0.009681702, -0.053497314, 0.040008545, -0.00440979, -0.030212402, -0.030792236, 0.043518066, -0.0736084, 0.021469116, -0.07324219, 0.020141602, -0.013664246, -0.0012559891, 0.06463623, -0.020233154, -0.021530151, -0.020996094, 0.061523438, 0.021530151, -0.0022678375, -0.035247803, -0.009399414, 0.00434494, 0.03439331, 0.04751587, -0.014770508, 0.04333496, -0.023757935, 0.03353882, -0.064575195, -0.007511139, 0.028060913, -0.03277588, -0.06689453, -0.03945923, 0.040252686, 0.008644104, -0.011184692, -0.012916565, 0.036346436, 0.019454956, 0.022064209, -0.064819336, -0.03475952, 0.015419006, -0.036102295, -0.023010254, -0.0128479, -0.020874023, 0.101501465, -0.01928711, -0.012359619, -0.020736694, -0.028915405, 0.023071289, 0.0066986084, 0.0178833, 0.021972656, -0.026473999, 0.010543823, 0.018554688, -0.088256836, 0.058532715, 0.018356323, 0.011154175, 0.015960693, -0.046325684, 0.015205383, -0.0151901245, -0.036254883, -0.041229248, 0.01524353, 0.0064201355, -0.012527466, -0.0119018555, 0.014961243, -0.011001587, -0.026779175, -0.041229248, -0.021850586, 0.031463623, 0.0022087097, -0.032165527, -0.00894928, 0.011062622, 0.025726318, -0.006793976, -0.010482788, -0.017410278, 0.026168823, -0.008224487, 0.005405426, 0.038604736, -0.015266418, 0.0076408386, -0.01826477, -0.008171082, -0.030883789, 0.030593872, 0.015777588, 0.024230957, 0.00749588, 0.04373169, -0.027130127, 0.002090454, -0.038604736, -0.019363403, -0.0029907227, -0.023910522, 0.013511658, 0.014961243, -0.04949951, 0.024459839, -0.0395813, 0.0309906, 0.0054969788, -0.040283203, 0.03086853, 0.020446777, 0.0064430237, -0.027511597, 0.075805664, -0.0054626465, -0.0028839111, -0.040496826, 0.007232666, -0.007774353, 0.009536743, -0.028945923, -0.0044136047, 0.03366089, -0.04336548, -0.00756073, 0.027954102, 0.011856079, -0.011497498, 0.018188477, 0.02520752, 0.013206482, -0.012962341, 0.05090332, -0.035125732, -0.014404297, -0.0005965233, 0.0022239685, 0.0014734268, -0.0068511963, 0.007686615, -0.042541504, 0.040527344, -0.027786255, -0.019104004, -0.0947876, 0.051879883, 0.013671875, -0.03074646, -0.012496948, 0.04446411, 0.009155273, -0.024810791, 0.020263672, 0.061462402, 0.05657959, 0.010482788, -4.220009e-05, -0.0524292, -0.0368042, -0.047729492, 0.017669678, 0.023117065, -0.03326416, -0.095947266, -0.03878784, 0.015945435, 0.040008545, 0.030014038, 0.037139893, 0.051361084, -0.021118164, 0.0007662773, -0.07720947, 0.009986877, -0.038146973, -0.070739746, 0.040008545, 0.041748047, -0.0073547363, 0.00365448, -0.018600464, -0.0018844604, 0.04345703, 0.035186768, -0.07849121, -0.0019292831, 0.02243042, 0.024597168, -0.044067383, -0.019088745, -0.02859497, 0.039489746, 0.0017786026, -0.0023841858, -0.040405273, -0.03656006, -0.005138397, -0.028778076, 0.01449585, -0.018508911, 0.029296875, 0.0007429123, 0.024154663, -0.030258179, -0.012168884, 0.002380371, 0.01902771, 0.010040283, 0.031143188, -0.009613037, -0.025970459, -0.037109375, 0.023422241, 0.009239197, -0.030914307, -0.007801056, 0.019424438, 0.01876831, 0.01637268, -0.018936157, -0.0090789795, -0.018997192, 0.036743164, 0.018035889, 0.035308838, -0.047454834, -0.032562256, 0.033416748, 0.039367676, 0.02078247, -0.02255249, 0.026977539, -0.032226562, -0.07879639, 0.0014209747, 0.0017499924, -0.034576416, 0.0036201477, -0.0385437, -0.017913818, -0.010231018, -0.018051147, 0.014717102, -0.010604858, 0.012268066, -0.00894928, 0.02784729, 0.018096924, 0.024658203, 0.0004823208, -0.010406494, -0.034820557, 0.009033203, -0.033477783, -0.015586853, -0.014183044, -0.048858643, 0.03894043, 0.050750732, -0.0126953125, 0.015655518, -0.018127441, -0.002216339, 0.0063705444, -0.017089844, 0.0025672913, 0.068237305, 0.011360168, 0.02494812, -0.061676025, -0.017074585, 0.011016846, 0.003566742, -0.04650879, 0.09375, -0.020568848, -0.01864624, -0.02330017, -0.0050468445, -0.03225708, -0.056549072, 0.09881592, -0.015731812, -0.047302246, -0.0010347366, -0.06774902, -0.06512451, 0.052520752, -0.038635254, -0.019638062, -0.033294678, 0.045684814, -0.031143188, 0.0006146431, -0.033477783, -0.019958496, 0.03375244, 0.008140564, -0.018005371, -0.005001068, 0.020645142, 0.038024902, -0.007980347, -0.010688782, 0.030929565, -0.040252686, 0.03265381, 0.01600647, -0.02935791, -0.054534912, 0.016418457, -0.0052452087, 0.017242432, -0.0050315857, 0.08996582, 0.019760132, -0.009635925, -0.0027942657, 0.0045700073, 0.06890869, 0.010803223, 0.030761719, -0.07562256, 0.02897644, 0.05682373, -0.013442993, -0.021362305, -0.024353027, 0.00869751, 0.01209259, 0.00036287308, -0.026779175, -0.034942627, 0.014442444, -0.0003991127, -0.011291504, -0.015052795, 0.010124207, 0.0032234192, 0.011421204, -0.013175964, -0.02027893, -0.028564453, -0.05557251, -0.016220093, -0.033172607, -0.06402588, 0.035583496, -0.020477295, 0.004169464, 0.0022296906, 0.009895325, 0.009010315, 0.0060043335, -0.016601562, 0.0513916, -0.00491333, 0.004585266, 0.04711914, -0.032073975, -0.03427124, -0.040527344, 0.013763428, -0.038848877, -0.018463135, -0.039886475, -0.0011854172, 0.0012950897, -0.013809204, -0.015136719, 0.008888245, 0.023620605, -0.018203735, 0.039855957, -0.03390503, -0.044189453, 0.053894043, 0.016830444, 0.003900528, 0.019088745, 0.033691406, 0.0048713684, -0.038330078, 0.053375244, -0.013755798, -0.06689453, -0.0075645447, -0.017623901, -0.004753113, -0.0021648407, -0.002954483, 0.024871826, 0.02456665, -0.010269165, 0.013320923, 0.026275635, -0.03515625, 0.009429932, -0.046020508, 0.03842163, -0.018981934, -0.043304443, -0.038970947, -0.03100586, 0.008369446, 0.04925537, -0.0206604, 0.0048942566, -0.018997192, -0.02748108, -0.012214661, -0.0236969, 0.0060043335, 0.006225586, -3.361702e-05, 0.0024700165, -0.005695343, -0.0052261353, 0.03515625, -0.02418518, -0.008415222, 0.013397217, -0.0039863586, -0.017456055, -0.009780884, -0.017349243, 0.0012865067, -0.020217896, -0.022216797, -0.0637207, -0.04159546, 0.013946533, 0.017227173, -0.025009155, -0.002462387, 0.01663208, 0.012611389, 0.011390686, 0.018997192, -0.013008118, 0.010437012, 0.0024681091, 0.06161499, -0.005718231, 0.09222412, -0.018417358, -0.067993164, -0.04309082, 0.023330688, 0.0075531006, -0.02128601, 0.068603516, -0.049591064, 0.014953613, 0.046295166, -0.015655518, -0.008598328, -0.012992859, 0.053894043, 0.020874023, -0.005821228]}, "B07263CMYG": {"id": "B07263CMYG", "original": "Brand: KIBOW\nName: KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection\nDescription: Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
      Specifications:
      -Hose Length: 4 Ft/48 Inch
      -Inlet Pressre: 25~250 PSIG
      -Outlet Pressure: 0~30 PSIG adjutable
      -Outlet Connection: 3/8\" Female flare swivel fitting\nFeatures: Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose.\nBuilt-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it's defective itself.\nType 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL.\nEasy and quick to install. Perfect for propane forge/foundry.\nPlease DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.\n", "metadata": {"Name": "KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection", "Brand": "KIBOW", "Description": "Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
      Specifications:
      -Hose Length: 4 Ft/48 Inch
      -Inlet Pressre: 25~250 PSIG
      -Outlet Pressure: 0~30 PSIG adjutable
      -Outlet Connection: 3/8\" Female flare swivel fitting", "Features": "Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose.\nBuilt-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it's defective itself.\nType 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL.\nEasy and quick to install. Perfect for propane forge/foundry.\nPlease DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.014884949, -0.03488159, -0.001156807, -0.019882202, -0.055603027, 0.0116119385, -0.021209717, 0.009262085, -0.00016486645, 0.046844482, -0.007095337, -0.01399231, 0.04824829, -0.018157959, -0.0011930466, -0.029037476, 0.017501831, 0.032073975, 0.033569336, -0.019439697, -0.0026741028, -0.0034828186, 0.0084991455, 0.07696533, -0.016921997, 0.042388916, 0.07122803, -0.0018014908, -0.0037631989, 0.0006766319, 0.01411438, -0.044433594, 0.03567505, 0.016220093, -0.035369873, -0.014297485, -0.024230957, -0.0022602081, -0.03326416, 0.027420044, -0.004005432, -0.00086069107, -0.040496826, 0.010559082, -0.056640625, -0.04147339, -0.008087158, -0.011260986, 0.012779236, 0.031921387, 4.041195e-05, 0.0046539307, 0.008483887, -0.042144775, -0.0052452087, -0.03665161, -0.013221741, -0.021606445, 0.01713562, 0.02760315, 0.0026855469, -0.00090169907, -0.0011987686, -0.028839111, -0.015853882, -0.018249512, 0.08380127, 0.018463135, 0.006816864, -0.036712646, 0.0019607544, 0.04107666, 0.0010757446, -0.008972168, -0.06719971, 0.0018568039, 0.050567627, -0.014945984, -0.0007367134, -0.00522995, 0.023620605, 0.033111572, 0.0016107559, -0.011962891, 0.015945435, -0.0004992485, -0.010612488, -0.027038574, -0.041748047, -0.058624268, -0.017242432, -0.027267456, -0.06817627, -0.0154800415, -0.0070495605, -0.035980225, -0.023376465, -0.10656738, 0.043121338, 0.022079468, 0.04647827, -0.05593872, 0.070617676, 0.031311035, 0.023239136, 0.07092285, -0.002336502, 0.009399414, 0.035247803, -0.014915466, 0.0034008026, 0.016738892, 0.01576233, -0.013702393, -0.052886963, 0.016738892, 0.02645874, -0.021850586, 0.017959595, 0.0004131794, 0.007083893, 0.024337769, 0.062561035, -0.05706787, -0.027114868, -0.0045547485, -0.026870728, -0.06591797, -0.032714844, -0.03704834, -0.0110321045, 0.02192688, 0.0335083, 0.07739258, 0.025299072, 0.020645142, 0.05307007, 0.014862061, 0.021469116, -0.005016327, 0.0034770966, -0.006298065, -0.0090789795, 0.0158844, -0.027038574, 0.045898438, 9.453297e-05, -0.021270752, 0.028457642, -0.05545044, -0.05670166, -0.029708862, 0.054840088, 0.006843567, -0.04901123, -0.020370483, 0.014602661, -0.0256958, -0.003967285, -0.060546875, -0.033477783, -0.03048706, -0.017211914, -0.020965576, -0.044677734, 0.054107666, -0.006614685, -0.0062217712, 0.018493652, 0.07171631, 0.008163452, 0.028717041, 0.018081665, 0.017089844, -0.011703491, -0.011207581, -0.067993164, 0.07678223, 0.070251465, -0.105285645, -0.047210693, -0.061035156, 0.113098145, -0.02645874, 0.023773193, 0.0076675415, 0.01020813, -0.043792725, -0.03237915, 0.0032997131, -0.006214142, 0.08288574, -0.012145996, -0.016845703, -0.015213013, 0.011245728, -0.00037646294, 0.023147583, -0.017532349, 0.012046814, -0.03552246, -0.022521973, 0.026672363, 0.015396118, 0.03692627, -0.018981934, -0.0017814636, 0.008583069, 0.066101074, 0.016693115, -0.026687622, -0.01524353, -0.008300781, 0.018417358, -0.04916382, -0.009223938, 0.014205933, 0.016464233, 0.023391724, -0.02355957, 0.05697632, 0.016784668, 0.0440979, 0.04647827, 0.0020561218, 0.0018854141, -0.012031555, -0.005207062, 0.014595032, 0.007785797, 0.003042221, 0.0067749023, 0.022567749, 0.01927185, -0.022705078, 0.02494812, 0.07739258, 0.020050049, -0.0143585205, -0.015914917, 0.02406311, -0.045562744, -0.044921875, -0.021194458, 0.0017309189, -0.078125, -0.010093689, -0.007911682, -0.016021729, 0.01940918, 0.049987793, 0.00039553642, 0.0055160522, -0.0060653687, -0.028533936, 0.010276794, -0.031433105, 0.042938232, -0.03781128, 0.005947113, -0.008026123, 0.0051231384, 0.04043579, -0.014984131, 0.034942627, 0.013679504, 0.043151855, 0.042236328, -0.032714844, 0.010253906, 0.011711121, 0.03643799, 0.004589081, -0.02444458, -0.04812622, -0.0007419586, -0.018859863, 0.039398193, -0.032318115, -0.026428223, -0.017715454, -0.015045166, 0.011230469, -0.0032310486, 0.024368286, 0.0027599335, 0.029571533, -0.012321472, 0.0077056885, -0.0019273758, 0.031707764, -0.012359619, -0.0046844482, 0.012908936, -0.005882263, -0.027908325, 0.0569458, -0.025497437, 0.012245178, -0.023895264, 0.037506104, 0.060638428, -0.03552246, 0.019927979, 0.011077881, -0.00831604, 0.033447266, 0.003616333, 0.0051078796, 0.007820129, -0.04434204, 0.03817749, 0.029769897, 0.000705719, 0.049835205, 0.03125, 0.0072631836, 0.051208496, 0.07537842, 0.07556152, -0.017333984, 0.016098022, -0.05142212, -0.0029335022, 0.017959595, 0.02331543, -0.03756714, -0.013801575, -0.03765869, 0.050445557, 0.028533936, 0.017959595, 0.02142334, -0.011947632, -0.0035591125, -0.0020561218, 0.0006313324, 0.055725098, -0.00894165, -0.06756592, -0.022155762, -0.07098389, -0.0016441345, 0.042541504, -0.026901245, -0.06329346, 0.035949707, -0.009590149, 0.021255493, -0.011413574, 0.042266846, -0.0044937134, 0.0038604736, -0.002281189, 0.005844116, 0.01612854, -0.0067329407, -0.04562378, -0.014137268, -0.08459473, -0.021881104, -0.026229858, -0.050445557, -0.02406311, 0.042755127, 0.007381439, -0.057861328, 0.010879517, -0.006729126, -0.026260376, 0.020462036, -0.035125732, -0.039794922, -0.020126343, 0.005584717, -0.0024089813, 0.054626465, -0.0154953, 0.02368164, 0.0423584, 0.02305603, 0.024520874, -0.0035991669, 0.018981934, 0.012771606, 0.020324707, 0.02507019, 0.0043029785, -0.006401062, -0.023757935, -0.014190674, 0.008621216, 0.002588272, 0.0017366409, -0.03375244, -0.029846191, -0.021362305, 0.0072288513, -0.04522705, 0.012199402, -0.05834961, 0.0061035156, 0.012611389, -0.018478394, 0.023727417, -0.09484863, -0.019256592, -0.045654297, 0.025848389, 0.035705566, -0.007160187, 0.027679443, -0.020523071, 0.015205383, -0.041992188, 0.0012769699, -0.05593872, -0.0011348724, -0.042816162, 0.03945923, 0.057495117, -0.08618164, 0.010681152, 0.03933716, -0.030075073, -0.031066895, 0.0036811829, 0.02659607, -0.03845215, 0.015808105, -0.035003662, -0.02180481, -0.044006348, -0.00014567375, 0.015380859, 0.041900635, 0.033050537, -0.049682617, 0.033691406, -0.02911377, -0.06628418, -0.025527954, -0.022644043, 0.007926941, 0.013572693, -0.02645874, -0.049713135, -0.06237793, 0.00050258636, -0.037872314, 0.001917839, -0.004146576, 0.029556274, 0.017196655, -0.012863159, 0.064575195, 0.020202637, 0.054229736, -0.017211914, 0.0014095306, 0.0141067505, -0.023971558, 0.017669678, 0.009552002, -0.016159058, -0.009170532, -0.0110321045, 0.012161255, -0.0012655258, -0.03387451, 0.0035686493, 0.04522705, 0.0010948181, -0.009635925, 0.01259613, 0.008934021, 0.007217407, -0.032196045, 0.03112793, 0.005012512, -0.01473999, 0.0036468506, -0.043945312, 0.050720215, 0.011497498, -0.00434494, 0.004207611, 0.017349243, -0.0040512085, 0.03994751, 0.028808594, -0.0022640228, -0.0034446716, 0.050842285, -0.019973755, 0.004310608, -0.0047836304, -0.010543823, 0.035125732, 0.0025749207, 0.018936157, 0.026733398, 0.018234253, -0.034423828, -0.03866577, 0.003604889, 0.0256958, -0.010864258, 0.0030269623, -0.035217285, -0.007385254, -0.031555176, -0.0034008026, 0.0017213821, -0.0209198, 0.005458832, -0.032165527, -0.02708435, -0.039489746, 0.010765076, 0.01486969, 0.007633209, 0.014122009, -0.0035476685, 0.041381836, -0.0067253113, 0.0018434525, -0.00045919418, -0.040496826, 0.0014219284, 0.022323608, 0.041534424, -0.0101623535, -0.043121338, 0.033569336, -0.019119263, 0.004337311, 0.022964478, -0.008232117, -0.048858643, -0.005744934, -0.010215759, -0.013092041, -0.035247803, -0.009109497, -0.039764404, -0.009544373, 0.024902344, -0.044708252, 0.017181396, -0.002281189, -0.0055236816, 0.002357483, -0.020568848, -0.03050232, 0.027816772, -0.014541626, -0.008522034, -0.0053901672, 0.01689148, -0.029327393, 0.01940918, -0.05960083, 0.015159607, -0.07873535, 0.0054473877, 0.05911255, 0.05154419, -0.020523071, -0.014450073, -0.0021305084, 0.029907227, 0.041625977, -0.023712158, 0.022323608, -0.03161621, -0.0030975342, -0.0028324127, 0.039764404, 0.05343628, -0.007865906, 0.02281189, -0.0024604797, -0.0023670197, -0.08227539, 0.007003784, 0.009025574, -0.035858154, -0.083862305, -0.033081055, 0.08868408, 0.009765625, 0.023986816, 0.011528015, 0.03161621, -0.011703491, 0.009025574, -0.1048584, -0.061279297, -0.0013999939, -0.05908203, 0.0211792, -0.01776123, 0.002029419, 0.07165527, 0.11706543, 0.017181396, 0.013198853, -0.010765076, -0.006225586, -0.017852783, -0.022476196, 0.02067566, 0.0067214966, -0.004764557, 0.0048446655, -0.04095459, 0.03704834, -0.020629883, -0.019470215, -0.009223938, -0.025115967, -0.001455307, -0.037628174, -0.008453369, 0.039245605, 0.042877197, 0.011817932, -0.04559326, 0.00409317, -0.038909912, -0.023086548, -0.0020923615, -0.008071899, 0.017715454, 0.0033779144, -0.0030097961, -0.035827637, -0.024749756, 0.015914917, 0.017181396, -0.0077438354, -0.037902832, 0.058044434, 0.009536743, 0.015625, 0.03378296, 0.0010604858, 0.0046691895, -0.022964478, -0.0056495667, -0.00484848, -0.003036499, -0.0151901245, 0.022277832, -0.0008611679, 0.018600464, -0.0011548996, 0.027252197, -0.022354126, -0.028625488, 0.01977539, -0.034606934, -0.038848877, 0.03994751, -0.033172607, 0.046325684, 0.03604126, -0.0050468445, 0.034240723, 0.0135269165, -0.013969421, 0.017181396, 0.025344849, 0.016967773, -0.037902832, 0.08239746, -0.010192871, 0.004032135, -0.037017822, 0.022155762, 0.0096588135, 0.0138549805, 0.0016336441, -0.024215698, 0.042236328, -0.032043457, -0.016403198, 0.003528595, 0.011383057, -0.008338928, 0.0011138916, -0.0053367615, -0.029953003, -0.031066895, -0.024383545, 0.00920105, 0.058654785, 0.01222229, -0.037139893, 0.06100464, 0.021987915, -0.07165527, 0.0023612976, -0.009803772, 0.00025963783, 0.007331848, -0.050842285, 0.00774765, 0.011962891, -0.020614624, -0.017669678, 0.03640747, 0.014793396, -0.019195557, -0.026794434, 0.0060539246, 0.0236969, -0.016952515, 0.018005371, -0.02230835, -0.051330566, -0.037872314, 0.008575439, 0.015113831, -0.034240723, -0.03741455, -0.016082764, -0.009735107, 0.010566711, -0.028640747, 0.019302368, 0.07397461, -0.05819702, -0.05517578, -0.025741577, 0.009597778, -0.024459839, 0.018707275, 0.035888672, 0.02217102, 0.0039520264, 0.030960083, 0.04071045, -0.017822266, 0.008804321, -0.0034713745, -0.029373169, -0.084350586, -0.033966064, -0.0574646, 0.0010414124, -0.021743774, -0.041625977, 0.04159546, -0.017990112, 0.02659607, -0.046142578, -0.03277588, -0.01576233, -0.061950684, -0.006111145, 0.003545761, 0.040222168, 0.032440186, 0.062286377, -0.05645752, -0.021224976, 0.0015668869, 0.021118164, 0.016662598, 0.023345947, 0.0051498413, 0.011192322, -0.06414795, 0.0154800415, 0.024459839, -0.06323242, -0.021057129, 0.032196045, 0.011116028, 0.061065674, -0.063964844, -0.012046814, -0.0064582825, -0.018371582, -0.026931763, 0.013755798, -0.055389404, -0.022766113, 0.012550354, 0.06088257, 0.013000488, -0.030929565, -0.0023784637, -0.021850586, -0.014717102, -0.009963989, -0.011764526, -0.012374878, -0.028274536, -0.06341553, -0.027786255, -0.030517578, -0.029525757, 0.032348633, 0.0015506744, -0.024551392, -0.034484863, 0.034729004, -0.00472641, -0.022033691, 0.03781128, -0.009819031, 0.05581665, -0.012496948, 0.055633545, 0.031204224, 0.004119873, -0.055725098, -0.024627686, 0.0340271, 0.00730896, 0.0059890747, -0.012245178, 0.0101623535, -0.01701355, -0.01121521, 0.004447937, -0.0038070679, 0.018508911, -0.0063438416, 0.018157959, 0.021652222, 0.031234741, 0.022491455, 0.020965576, 0.0060768127, -0.0034065247, 0.022232056, -0.0035190582, 0.0020122528, -0.012191772, -0.014015198, 0.013916016, 0.01676941, 0.01108551, -0.015930176, -0.00655365, 0.064331055, -0.011421204, -0.0012207031, 0.020935059, -0.023147583, 0.0011224747, 0.035583496, 0.012825012, -0.03277588, -0.0017147064, -0.032287598, -0.017150879, 0.040618896, 0.02027893, -0.0020599365, 0.029251099, -0.019607544, 0.032226562, -0.014778137, 0.021118164, -0.019897461, 0.022918701, -0.042877197, -0.08679199, -0.06964111, -0.021560669, -0.021881104, -0.013679504, 0.04296875, -0.008369446, 0.035827637, 0.013046265, 0.006866455, 0.03540039, -0.024032593, 0.012504578, 0.0027370453, 0.012275696, 0.007160187, -0.020141602, -0.00642395, -0.033691406, 0.024124146, 0.01625061, 0.010765076, 0.019226074, 0.015487671, -0.03302002, -0.010734558, -0.012199402, -0.008842468, 0.00969696, -0.013442993, -0.020248413, -0.027877808, 0.023361206, -0.020690918, -0.048706055, -0.05923462, 0.007499695, -0.033813477, 0.01537323, 0.016708374, -0.010505676, -0.010398865, 0.0016622543, 0.0055656433, -0.043151855, 0.0015487671, -0.0021781921, -0.019042969, -0.01651001, 0.029937744, -0.0036849976, -0.043182373, -0.03881836, 0.020477295, -0.053619385, 0.0005264282, -0.076293945, -0.0002822876, -0.046569824, -0.018615723, 0.05670166, 0.033569336, 0.020080566, 0.020477295, 0.010551453, 0.006290436, -0.012634277, 0.03869629, 0.017837524, -0.005962372, -0.021759033, -0.02532959, 0.006916046, -0.0030822754, 0.03604126, 0.0032596588, -0.06945801, -0.022262573, -0.029632568, -0.03643799, 0.0060195923, -0.018417358, 0.032470703, -0.0020523071, -0.039520264, 0.01828003, 0.02067566, 0.03286743, 0.024520874, 0.009262085, -0.008712769, -0.026504517, -0.064575195, 0.011993408, -0.0115737915, 0.027130127, 0.012519836, 0.015007019, -0.028915405, 0.027236938, 0.0116119385, 0.009109497, 0.049591064, -0.015472412, 0.021972656, 0.033477783, 0.004890442, 0.015037537, -0.028884888, -0.01525116, -0.057281494, -0.007637024, 0.039093018, -0.02558899, -0.018341064, -0.03552246, -0.013465881, -0.017791748, -0.04937744, -0.007980347, -0.047821045, -0.016967773, 0.031799316, 0.02041626, -0.004020691, 0.019805908, -0.01940918, 0.010566711, -0.0491333, 0.039611816, 0.027923584, 0.027053833, -0.014846802, 0.009231567, 0.03604126, 0.052703857, -0.008422852, -0.08868408, -0.049224854, 0.021392822, -0.012382507, 0.0031433105, 0.024291992, -0.020431519, 0.0020999908, 0.031677246, -0.02519226, -0.02935791, 0.0039787292, 0.057678223, -0.0077056885, 0.002199173]}, "B07JNK5CHG": {"id": "B07JNK5CHG", "original": "Brand: LW\nName: High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU\nDescription: Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.\nFeatures: Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings\nPowerful 100,000 BTU/Hr + burner\nIncludes hose and regulator and only requires standard size propane tank\nDimensions: 13\" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs\nMatchless ignitor\n", "metadata": {"Name": "High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU", "Brand": "LW", "Description": "Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.", "Features": "Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings\nPowerful 100,000 BTU/Hr + burner\nIncludes hose and regulator and only requires standard size propane tank\nDimensions: 13\" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs\nMatchless ignitor", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0040130615, -0.004524231, -0.015701294, 0.006290436, -0.025741577, -0.026977539, 0.020111084, -0.0027980804, -0.02923584, -0.0043525696, 0.001709938, 0.008140564, 0.0055618286, -0.05508423, 0.05291748, -0.021881104, 0.029022217, -0.00881958, 0.014823914, -0.017944336, -0.012084961, -0.0030384064, 0.041137695, 0.078186035, 0.023635864, 0.01335144, -0.022323608, 0.02015686, 0.015602112, 0.017547607, 0.034698486, -0.033203125, 0.016860962, 0.007663727, -0.02407837, -0.05834961, 0.0035858154, -0.01197052, -0.03665161, 0.016983032, -0.008087158, 0.01007843, -0.005432129, 0.007549286, -0.008377075, -0.036956787, 0.012336731, -0.056610107, -0.0056495667, 0.0011024475, 0.020324707, -0.011169434, 0.042877197, -0.024627686, -0.010749817, 0.0074653625, 0.058898926, -0.020507812, -0.0044288635, -0.036743164, -0.018203735, 0.04699707, 0.022460938, 0.02809143, -0.025970459, 0.029541016, 0.057495117, -0.004096985, 0.05102539, -0.043548584, -0.061645508, 0.041168213, 0.028778076, 0.01222229, -0.046813965, -0.037384033, 0.054779053, 0.005882263, 0.013031006, -0.0021305084, -0.008682251, 0.0059394836, -0.0078125, -0.029663086, 0.007083893, -0.014076233, -0.0058631897, -0.010375977, -0.018981934, -0.03604126, -0.010047913, -0.03640747, -0.06311035, 0.027694702, 0.024780273, -0.03878784, -0.037017822, -0.09753418, 0.05255127, 0.01576233, 0.035705566, -0.05496216, 0.043060303, 0.018478394, 0.0029640198, 0.10168457, -0.026184082, 0.058532715, 0.051513672, 0.0020198822, 0.04827881, -0.025115967, 0.020111084, -0.03643799, 0.002626419, 0.0062065125, -0.00024294853, 0.023498535, 0.024597168, 0.000109255314, -0.004463196, 0.001405716, 0.036071777, -0.0013561249, 0.0012798309, -0.0018587112, -0.011177063, -0.04043579, -0.031097412, 0.01940918, -0.027954102, -0.008758545, 0.033843994, 0.095458984, 0.033691406, -0.0026435852, 0.049346924, -0.03451538, 0.013206482, 0.009750366, 0.01209259, -0.019699097, -0.0075531006, 0.021942139, -0.025665283, 0.051635742, 0.021957397, -0.01777649, -0.030319214, -0.0713501, -0.030639648, -0.029174805, 0.024215698, 0.02784729, -0.009925842, 0.0028533936, 0.042663574, -0.028411865, -0.01411438, -0.048614502, -0.003873825, -0.027252197, -0.041534424, 0.010856628, -0.010574341, 0.038513184, 0.03112793, 0.012229919, 0.013183594, 0.03781128, 0.025100708, 0.0058631897, -0.015556335, 0.010902405, 0.0069122314, -0.0054016113, -0.02015686, 0.072021484, 0.030883789, -0.06781006, -0.046783447, -0.07232666, 0.08746338, -0.038330078, -0.01398468, -0.036071777, 0.005542755, -0.010726929, 0.04135132, 0.005970001, 0.0073242188, -0.017700195, -0.004776001, 8.881092e-06, -0.019302368, 0.005191803, -0.019805908, 0.032836914, -0.020019531, -0.008598328, 0.033996582, -0.032348633, 0.006210327, -0.036743164, -0.057495117, -0.052642822, -0.008842468, -0.005405426, 0.051757812, 0.03326416, -0.023620605, 0.0012140274, 0.02178955, -0.081970215, -0.044708252, 0.038146973, -0.026473999, 0.009246826, 0.010429382, -0.012893677, 0.03289795, -0.01574707, 0.040618896, 0.027328491, 0.009841919, 0.0050582886, -0.025756836, 0.0021038055, -0.021331787, 0.015167236, -0.019104004, 0.03274536, 0.083740234, 0.07373047, -0.009414673, 0.011062622, 0.045166016, -0.021133423, 2.7418137e-05, -0.004798889, 0.011512756, -0.019546509, -0.020309448, 0.0124435425, -0.04800415, -0.057922363, 0.018157959, -0.0032405853, -0.020950317, 0.02684021, 0.00043320656, 0.015403748, 0.017120361, -0.039733887, -0.03451538, 0.027297974, -0.0051078796, 0.0435791, -0.030700684, 0.0052757263, 0.0017251968, 0.04257202, 0.014801025, 0.0023460388, -0.004589081, 0.03225708, -0.0016059875, 0.004459381, -0.04562378, 0.024124146, 0.03894043, 0.0015974045, -0.0068511963, 0.00061655045, -0.0052337646, 0.006275177, -0.02218628, 0.021377563, -0.010627747, -0.00762558, 0.002210617, -0.004432678, 0.017807007, 0.004776001, 0.022735596, 0.024154663, 0.020736694, 0.023956299, 0.014862061, 0.034088135, 0.0592041, -0.019378662, -0.01159668, 0.012664795, -0.013412476, -0.021865845, 0.062194824, -0.024856567, 0.03189087, -0.015686035, 0.042175293, 0.059661865, -0.035736084, 0.04135132, -0.0024967194, -0.008666992, 0.0005965233, 0.027816772, 0.015007019, -0.027175903, 0.0024032593, 0.027954102, 0.009513855, 0.052215576, 0.020401001, -0.022155762, 0.043548584, 0.04373169, 0.034118652, 0.00894165, -0.017303467, 0.031402588, 0.0038013458, -0.010658264, 0.04034424, -0.007675171, -0.028808594, -0.003036499, -0.06237793, 0.024719238, 0.04058838, 0.01234436, 0.032989502, 0.030761719, -0.010772705, -0.020111084, 0.003967285, 0.0056495667, -0.020507812, -0.052490234, -0.03302002, -0.045410156, 0.0074310303, -0.01826477, -0.004837036, -0.084106445, 0.056793213, 0.005584717, -0.033599854, -0.0044059753, 0.038330078, -0.012458801, 0.030914307, -0.024993896, 0.021408081, -0.0019798279, -0.057647705, -0.07672119, -0.047210693, -0.10479736, 0.019210815, -0.05718994, -0.033477783, 0.009132385, 0.044158936, 0.0025787354, -0.05682373, 0.006046295, -0.01335907, -0.0020542145, 0.023406982, 0.013320923, -0.07397461, -0.03756714, -0.049438477, -0.013145447, 0.07208252, 0.0042152405, 0.020721436, 0.045288086, 0.05895996, 0.04434204, -0.032958984, -0.01576233, -0.00409317, 0.010871887, 0.0036315918, 0.031204224, -0.0044822693, -0.01096344, 0.016998291, 0.04824829, -0.039154053, -0.024490356, 0.004432678, 0.012619019, -0.040130615, -0.02557373, -0.026306152, -0.008628845, -0.046569824, 0.014457703, -0.032165527, 0.013900757, -0.023025513, -0.0546875, -0.026504517, -0.055908203, 0.010734558, 0.03744507, -0.002090454, 0.008888245, -0.02168274, 0.017852783, -0.017929077, -0.014045715, 0.047912598, -0.006401062, -0.017364502, -0.0014066696, 0.074523926, -0.09259033, 0.07714844, 0.049987793, -0.020370483, 0.039642334, -0.022354126, 0.014198303, -0.0040664673, -0.018569946, -0.013877869, -0.02809143, -0.010749817, 0.018463135, 0.0043640137, 0.02508545, -0.010948181, -0.03338623, 0.008476257, -0.029525757, -0.05429077, -0.02394104, -0.057647705, 0.004005432, -0.03479004, -0.015975952, -0.02659607, -0.078186035, 0.013511658, -0.037597656, 0.015411377, -0.01876831, 0.026168823, 0.024841309, -0.024353027, 0.1262207, 0.012870789, 0.049194336, 0.006832123, -0.010353088, 0.018936157, -0.032989502, -0.0049591064, 0.0390625, -0.028076172, 0.026916504, -0.038635254, 0.03930664, 0.004840851, -0.04586792, 0.028961182, 0.07067871, 0.04421997, -0.0029067993, -0.028335571, -0.0072288513, 0.03616333, -0.006401062, 0.0071525574, -0.027008057, -0.038146973, 0.004550934, -0.055664062, 0.051574707, 0.047668457, -0.03366089, 0.059509277, 0.016983032, 0.023208618, 0.022491455, -0.0035972595, -0.037902832, 0.03591919, -0.019485474, -0.021911621, 0.05618286, -0.005970001, -0.010116577, 0.012931824, -0.0045051575, -0.014320374, 0.015457153, 0.01108551, -0.028778076, -0.030456543, 0.016815186, 0.02607727, -0.006225586, 0.018051147, -0.03466797, 0.0007133484, -0.024612427, -0.028747559, -0.0067749023, -0.030151367, -0.0069618225, -0.0101623535, -0.007835388, -0.03302002, 0.005252838, 0.03161621, 0.024612427, -0.014862061, 0.03100586, 0.03314209, -0.0078125, -0.03845215, -0.019424438, -0.022384644, 0.045837402, 0.022247314, 0.047027588, 0.043884277, -0.020690918, -0.023544312, -0.0463562, -0.025558472, 0.06707764, 0.0140686035, -0.062561035, -0.0418396, 0.016113281, 0.037200928, -0.013069153, -0.016311646, -0.004901886, 0.002418518, 0.03286743, -0.09082031, 0.023010254, 0.0013046265, 0.006866455, -0.0016908646, -0.02696228, -0.04260254, 0.020477295, -0.0072784424, 0.0011796951, -0.0058135986, 0.011077881, -0.02041626, 0.04220581, -0.050445557, 0.014503479, -0.07324219, 0.023742676, -0.022277832, -0.010017395, 0.036895752, -0.019424438, 0.0016860962, -0.015083313, 0.07922363, 0.0017757416, 0.0134887695, -0.041778564, -0.0007891655, 0.010612488, 0.028762817, -0.014381409, -0.014625549, 0.003929138, 0.0024719238, -0.021575928, -0.033966064, -0.0032348633, 0.013671875, -0.037902832, -0.04043579, -0.0051002502, 0.08154297, -0.019454956, 0.042755127, 0.03729248, 0.008293152, -0.022018433, 0.021560669, -0.13745117, -0.07501221, -0.0050735474, -0.011077881, -0.00014150143, -0.0029563904, -0.009399414, 0.012031555, 0.026473999, 0.03378296, -0.015609741, -0.0057640076, -0.017456055, 0.00022959709, 0.02420044, -0.04034424, 0.018539429, -0.045196533, -0.026000977, -0.066467285, 0.032348633, 0.0033626556, 0.015670776, 0.010940552, -0.026763916, 0.016738892, -0.036254883, -0.03363037, 0.014801025, 0.018066406, -0.002439499, -0.031402588, 0.029556274, -0.001250267, -0.0025291443, 0.0044021606, 0.0068588257, 0.030517578, -0.026275635, -0.00459671, -0.03616333, -0.00033688545, 0.04034424, -0.0033740997, 0.018936157, -0.011314392, -0.00856781, 0.029083252, -0.007850647, -0.013656616, -0.004814148, -0.0017328262, -0.017227173, 0.020721436, -0.0060043335, -0.07470703, -0.0021820068, 0.060516357, -0.026473999, -0.017532349, 0.0357666, -0.0051078796, 0.006755829, -0.022888184, 0.036132812, 0.011985779, -0.015342712, 0.09429932, -0.01008606, 0.019821167, 0.015640259, -0.00054883957, 0.06286621, -0.03604126, 0.03250122, 0.015975952, 0.012199402, 0.049194336, -0.06188965, 0.032958984, -0.015396118, -0.017959595, -0.04940796, 0.01940918, 0.0062026978, -0.012481689, 0.014091492, -0.029403687, 0.03048706, -0.011383057, -0.005443573, 0.004852295, 0.03967285, -0.006866455, 0.010131836, 0.014823914, -0.017974854, -0.07989502, -0.019363403, -0.009429932, 0.0056762695, 4.017353e-05, -0.036193848, 0.05419922, 0.0061836243, -0.058532715, -0.03289795, -0.011131287, 0.01928711, -0.023208618, 0.00080251694, -0.0082473755, -0.005584717, 0.0036830902, 0.025512695, 0.06286621, 0.009765625, -0.0027885437, -0.04537964, -0.004386902, 0.026412964, -0.021972656, 0.021148682, -0.032440186, 0.025024414, 0.033203125, -0.02909851, 0.020843506, -0.026779175, -0.039978027, -0.036132812, 0.0033283234, 0.0035552979, -0.0049705505, -0.0036945343, 0.044158936, -0.032806396, -0.031097412, -0.039733887, 0.056365967, -0.02784729, -0.01158905, 0.053955078, 0.017318726, 0.017425537, 0.0309906, 0.010368347, -0.01374054, 0.0016593933, 0.00484848, -0.09918213, -0.028244019, -0.024124146, 0.009185791, -0.047912598, -0.051452637, 0.00774765, 0.030670166, -0.00052309036, -0.038146973, 0.014022827, -0.034820557, 0.012756348, -0.012886047, 0.012802124, -0.014793396, 0.0035896301, -0.032928467, -0.01423645, -0.03933716, -0.02406311, -0.040649414, 0.019989014, 0.0079956055, 0.016479492, -0.025924683, -0.02418518, 0.0011711121, 0.044769287, 0.020767212, -0.020996094, -0.019485474, -0.0021572113, -0.011421204, 0.0061073303, -0.04171753, 0.033081055, -0.016845703, 0.0066871643, -0.0340271, 0.03918457, -0.044891357, -0.030792236, 0.009757996, 0.03475952, 0.021331787, 0.015258789, 0.041870117, 0.027816772, -0.031402588, -0.007873535, -0.018753052, -0.0236969, -0.01525116, -0.030960083, -0.064208984, -0.0099105835, -0.025222778, 0.007598877, -0.009086609, 0.011695862, -0.02911377, 0.015487671, -0.0015821457, -0.008453369, 0.030517578, 0.0046310425, 0.025009155, -0.0065727234, 0.0155181885, 0.018707275, 0.02407837, -0.027236938, -0.030258179, 0.01335144, -0.044403076, 0.071777344, -0.057006836, 0.05899048, -0.04989624, -0.028320312, -0.005718231, -0.0014448166, 0.0152282715, 4.4107437e-06, -0.017669678, -0.0013103485, 0.023071289, 0.00017905235, 0.008666992, 0.01675415, 0.0011587143, 0.002626419, -0.006614685, -0.030883789, 0.016738892, -0.004058838, -0.019821167, 0.021408081, 0.014480591, -0.01586914, -0.009094238, 0.0014619827, 0.041534424, 0.0064048767, -0.01838684, -0.0072746277, 0.028076172, 0.0231781, -0.0077438354, -0.04321289, -0.017150879, -0.009292603, -0.0011205673, 0.0030708313, -0.0043792725, -0.010513306, 0.03942871, 0.025268555, -0.0016975403, 0.033050537, -0.04345703, 0.032958984, 0.01612854, 0.008049011, -0.019241333, -0.03933716, -0.009033203, -0.0099487305, 0.009490967, -0.013114929, 0.02810669, -0.026641846, 0.016464233, -0.0024585724, 0.0491333, -0.034484863, 0.018875122, -0.009590149, 0.018737793, 0.034576416, -0.022399902, 0.01777649, 0.0010814667, -0.03488159, 0.0022525787, 0.00014388561, 0.01159668, 0.043640137, -0.009262085, -0.003982544, -0.03286743, 0.014350891, -0.01309967, -0.02079773, 0.016983032, -0.0418396, -0.018417358, -0.020828247, -0.010391235, -0.00063610077, -0.028289795, -0.05706787, 0.045715332, -0.0059776306, -0.023849487, -0.0007338524, -0.005332947, -0.03338623, -0.07141113, -0.0057792664, -0.03338623, 0.015403748, 0.01486969, 0.078308105, -0.048309326, -0.08154297, -0.043426514, 0.04031372, -0.07006836, -0.045288086, 0.022857666, -0.0065345764, 0.009506226, -0.0025615692, 0.0024852753, 0.004047394, 0.048980713, -0.024887085, -0.0026130676, -0.021026611, -0.011428833, 0.02835083, -0.0029964447, -0.011657715, -0.023117065, 0.012023926, -0.0040779114, 0.0030174255, 0.027313232, -0.02645874, -0.07299805, -0.021957397, -0.0134887695, -0.0031700134, -0.045410156, 0.039001465, -0.0030460358, 0.00035381317, -0.024093628, 0.047698975, 0.008804321, 0.051086426, 0.04776001, -0.016036987, -0.007247925, -0.0546875, -0.059509277, -0.056854248, -0.015808105, 0.0491333, 0.037475586, -0.0118255615, 0.008407593, 0.028045654, -0.024246216, 0.000192523, 0.011070251, 0.0065193176, 0.026275635, 0.005264282, -0.026016235, 0.013473511, -0.022598267, 0.0154953, -0.015029907, -0.0013341904, 0.044067383, 0.017715454, -0.02583313, -0.0020561218, -0.03225708, -0.0022583008, -0.005191803, -0.030334473, -0.026412964, -0.056640625, 0.027938843, 0.03665161, 0.0007686615, -0.023452759, 0.010047913, 0.0071868896, -0.03479004, -0.011543274, 0.013252258, -0.023849487, -0.006893158, 0.007194519, 0.0045394897, 0.04244995, -0.0016832352, -0.05697632, -0.046569824, 0.034088135, 0.02456665, -0.021102905, 0.020629883, 0.00071525574, 0.021057129, 0.015113831, -0.0023097992, -0.010871887, -0.004673004, 0.07141113, -0.011070251, 0.011070251]}, "B07TNWQV77": {"id": "B07TNWQV77", "original": "Brand: XtremepowerUS\nName: XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn\nDescription: High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day\u2019s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15\"(W) x 15\"(L) x 13\"(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove\nFeatures: From tailgating to the backyard chef, cook-off chili to the day's crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable\nWide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control\nPerfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting\nCooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days\nEasy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy\n", "metadata": {"Name": "XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn", "Brand": "XtremepowerUS", "Description": "High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day\u2019s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15\"(W) x 15\"(L) x 13\"(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove", "Features": "From tailgating to the backyard chef, cook-off chili to the day's crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable\nWide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control\nPerfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting\nCooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days\nEasy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.015075684, -0.01612854, -0.019180298, -0.027297974, 0.0004105568, 0.0033817291, -0.006713867, 0.008613586, -0.048217773, -0.015197754, 0.020339966, 0.0019950867, -0.026611328, -0.045288086, 0.040924072, -0.042388916, 0.017684937, 0.04168701, 0.00793457, -0.02859497, -0.004562378, -0.013458252, -0.06970215, 0.11077881, 0.006866455, 0.0037078857, 0.0026187897, 0.025024414, -0.010826111, -0.0009021759, 0.015106201, 0.015777588, 0.049957275, 0.007095337, -0.054870605, -0.042999268, -0.0211792, -0.0060424805, -0.04269409, 0.0039901733, -0.018203735, 0.008277893, -0.04119873, 0.04031372, -0.036895752, -0.055419922, -0.003396988, -0.035491943, 0.022094727, 0.008285522, -0.0050201416, -0.01777649, 0.0057640076, -0.043395996, -0.032989502, -0.014213562, -0.010734558, 0.006248474, 0.007171631, -0.008476257, -0.008270264, 0.026626587, 0.020751953, 0.03656006, -0.027145386, 0.018493652, 0.09161377, -0.01309967, 0.03277588, -0.007724762, -0.0035972595, 0.04638672, 0.011749268, 0.003129959, -0.038238525, -0.014945984, 0.02545166, -0.006996155, 0.02720642, 0.0041160583, 0.0012044907, 0.011665344, 0.044555664, -0.054473877, 0.032470703, -0.037017822, -0.014892578, -0.0054359436, -0.033081055, -0.023956299, -0.02305603, -0.026535034, -0.04272461, -0.0109939575, -0.005302429, -0.008651733, -0.05319214, -0.079711914, 0.03768921, 0.024841309, 0.034423828, -0.03564453, 0.031585693, 0.00047945976, -0.01033783, 0.120910645, 0.04953003, 0.05267334, -0.0017538071, -0.046295166, 0.01550293, -0.008407593, 0.034576416, 0.0006117821, -0.03237915, -0.02859497, -0.0011348724, 0.0048294067, 0.010597229, -0.027740479, -0.00504303, -0.0045280457, 0.05038452, -0.016906738, -0.026123047, -0.018310547, -0.028274536, -0.04486084, -0.049621582, 0.037628174, -0.02217102, -0.002840042, 0.006313324, 0.046569824, -0.016052246, -0.015586853, 0.049987793, -0.021865845, -0.0055389404, 0.016525269, 0.0029506683, -0.014518738, 0.0052871704, 0.0178833, 0.003627777, -0.0014867783, 0.025558472, 0.030456543, 0.0014324188, -0.02961731, 0.004005432, 0.046691895, 0.026260376, 0.0025672913, -0.012237549, -0.05206299, 0.016418457, -0.050689697, 0.03152466, -0.04852295, -0.034210205, -0.017578125, 0.0030670166, -0.009773254, -0.038116455, 0.030029297, 0.0043144226, 0.007045746, 0.010757446, 0.011657715, -0.03768921, 0.02078247, 0.0126953125, 0.009216309, 0.0013933182, 0.020080566, -0.02331543, 0.0637207, 0.054138184, -0.11291504, -0.083618164, -0.08782959, 0.09698486, -0.05682373, -0.031188965, -0.006958008, 0.005569458, -0.002571106, 0.011581421, -0.005367279, 0.032196045, 0.004295349, -0.003917694, 0.0007247925, 0.013511658, 0.011039734, -0.04333496, 0.018600464, -0.013214111, -0.03050232, -0.04421997, -0.0032730103, -0.024749756, 0.014511108, -0.015670776, -0.04031372, -0.00016093254, -0.0001951456, 0.012962341, -0.002275467, -0.0077667236, -0.017349243, 0.02507019, -0.06982422, -0.04449463, 0.0058174133, 0.008857727, 0.020858765, 0.009780884, 0.014167786, 0.01777649, -0.015670776, -0.0064468384, 0.0152282715, 0.032043457, -0.02645874, -0.008033752, -0.024276733, 0.031677246, -0.0061836243, -0.0010814667, 0.015640259, 0.027938843, 0.01991272, -0.022155762, 0.040863037, 0.07904053, 0.038604736, -0.011917114, -0.0234375, 0.015640259, -0.04876709, -0.045928955, 0.0042800903, -0.04699707, -0.041015625, -0.002368927, 0.008773804, -0.031951904, -0.027145386, 0.014839172, 0.017547607, 0.040161133, -0.011405945, 0.0055885315, 0.034576416, -0.022232056, 0.025268555, -0.022445679, 0.017486572, -0.009246826, 0.05065918, 0.038146973, -0.001411438, 0.015007019, 0.004573822, 0.0154800415, 0.0060539246, -0.03479004, 0.011940002, 0.030395508, 0.031341553, -0.009963989, 0.0070724487, 0.004310608, -0.008720398, -0.031158447, 0.018157959, -0.009277344, -0.008270264, 0.01260376, -0.00028467178, 0.023895264, 0.0045776367, 0.036865234, 0.014663696, 0.009750366, 0.018127441, 0.027069092, 0.008850098, 0.04498291, -0.02067566, -0.024291992, 0.009857178, -0.009391785, -0.037475586, 0.055389404, -0.03427124, 0.038024902, -0.024398804, -0.011100769, 0.05105591, -0.0048599243, -0.008071899, -0.013061523, 0.01637268, -0.014846802, 0.020401001, -0.00944519, -0.043518066, -0.008857727, -0.009529114, 0.031677246, 0.0074882507, 0.042510986, 0.00026631355, 0.01386261, 0.052978516, 0.043304443, 0.051727295, -0.013015747, 0.031143188, 0.020080566, -0.018432617, 0.041259766, -0.026733398, -0.041046143, -0.00065660477, 0.0062828064, 0.003786087, 0.007888794, -0.010147095, -0.015945435, -0.01084137, 0.00076532364, -0.016204834, 0.0007362366, 0.01424408, -0.023361206, -0.07006836, -0.021987915, -0.043304443, 0.005153656, 0.009155273, -0.026397705, -0.058685303, 0.06896973, -0.005420685, -0.062927246, -0.006549835, 0.057617188, -0.021011353, 0.03137207, -0.022659302, 0.0103302, 0.007610321, -0.03488159, -0.039001465, -0.011642456, -0.08569336, -0.009399414, -0.044555664, -0.07354736, -0.023147583, 0.07684326, 0.016906738, -0.062561035, -0.025375366, 0.0071907043, 0.043395996, 0.02230835, 0.034210205, -0.060516357, -0.026168823, -0.049560547, -0.020996094, 0.032714844, -0.022994995, 0.039978027, 0.033691406, 0.02609253, 0.034820557, -0.014350891, 0.00920105, 0.025436401, 0.040130615, 0.07446289, 0.02482605, 0.033111572, -0.03955078, 0.01360321, 0.011634827, -0.059295654, 0.0070877075, 0.017425537, 0.0028057098, -0.02204895, -0.029327393, -0.0848999, -0.0049934387, -0.052825928, 0.011436462, -0.01777649, -0.022232056, 0.009109497, -0.09136963, 0.00019848347, -0.061309814, -0.011817932, 0.021224976, -0.041168213, 0.024261475, -0.03237915, 0.017959595, 0.022201538, -0.04043579, 0.042938232, -0.0049743652, -0.011940002, -0.0076522827, 0.06213379, -0.073791504, 0.033294678, 0.016830444, -0.053100586, 0.01928711, -0.020477295, 0.03277588, -0.008903503, 0.051116943, -0.004234314, 0.0053253174, -0.017059326, 0.026275635, -0.011001587, 0.020980835, 0.020339966, -0.03125, 0.058044434, -0.047943115, -0.0625, -0.037994385, -0.023712158, 0.017715454, -0.0012283325, -0.019485474, -0.05126953, -0.07067871, -0.011520386, -0.050933838, 0.0044822693, 0.009223938, 0.031021118, 0.025390625, -0.0037117004, 0.079956055, 0.011383057, 0.04562378, -0.008659363, -0.024230957, -0.009628296, -0.034088135, -0.0025405884, 0.016647339, -0.035308838, 0.009140015, 0.027999878, 0.0181427, 0.013580322, -0.046875, -0.0287323, 0.061279297, 0.034820557, -0.004085541, -0.032104492, -0.027328491, 0.053741455, 0.0064315796, 0.023727417, -0.024978638, -0.080200195, 0.01159668, -0.085998535, 0.047088623, 0.058380127, -0.031555176, 0.07757568, 0.040130615, 0.0029144287, 0.014801025, 0.010543823, -0.0032024384, 0.011184692, 0.022064209, -0.001121521, -0.001791954, 0.008399963, -0.015090942, 0.004711151, -0.005569458, -0.033233643, 0.00843811, -0.041870117, -0.027618408, -0.021591187, -0.011795044, -0.012016296, 0.0023612976, 0.01928711, -0.056884766, -0.012435913, -0.020248413, 0.03173828, -0.013137817, -0.0104599, 0.04611206, -0.04019165, -0.0063209534, -0.023513794, -0.007926941, 0.0104522705, 0.019424438, -0.0066184998, 0.014663696, 0.041412354, -0.0135650635, -0.014694214, 0.0010328293, -0.018234253, 0.03353882, 0.047302246, 0.006942749, 0.019958496, -0.01927185, -0.0137786865, -0.007873535, -0.022216797, 0.030471802, 0.017242432, -0.04812622, 0.0023860931, 0.028060913, 0.01210022, -0.022979736, 0.0071029663, 0.0008406639, 0.0060691833, 0.042816162, -0.0463562, 0.04046631, -0.024337769, -0.020874023, -0.04168701, -0.03062439, -0.0073890686, 0.029281616, -0.016067505, 0.0012731552, -0.00072050095, -0.027282715, -0.023529053, 0.0010671616, -0.017318726, 0.014175415, -0.03225708, 0.012290955, 0.028686523, -0.0049819946, 0.020629883, -0.0032482147, -0.004146576, -0.007217407, 0.056671143, -0.017715454, -0.010246277, -0.032226562, -0.018218994, -0.014816284, 0.044647217, 0.06756592, -0.026184082, 0.047180176, -0.021026611, 0.007965088, -0.050445557, 0.022827148, 0.02418518, -0.038238525, -0.022735596, 0.024154663, 0.0770874, -0.022476196, 0.009971619, 0.001502037, 0.051696777, 0.0013170242, 0.024032593, -0.113342285, -0.060424805, 0.013320923, -0.05001831, 0.0074768066, -0.0047798157, -0.018798828, 0.04135132, 0.047454834, 0.005470276, -0.03326416, -0.015655518, 0.018569946, -0.0062408447, 0.04373169, -0.05130005, -0.018600464, -0.053833008, 0.026931763, -0.066345215, 0.04522705, 0.018051147, -0.008895874, 0.008338928, -0.008773804, -0.0035305023, -0.03161621, -0.010749817, -0.009338379, 0.04296875, -0.024276733, -0.046905518, 0.003030777, -0.059661865, -0.011390686, -0.009147644, -0.015716553, 0.03414917, 0.000151515, 0.015007019, 0.0064926147, -0.011230469, 0.014823914, 0.024307251, -0.021240234, -0.012268066, 0.0029067993, 0.027740479, 0.00014197826, 0.014877319, 0.06341553, -0.008659363, 0.022064209, 0.0026474, -0.009773254, -0.100097656, -0.0074310303, 0.055145264, -0.04852295, 0.0012598038, 0.02809143, -0.015022278, -0.0077819824, -0.041503906, 0.01096344, 0.0044288635, -0.030792236, 0.06567383, -0.008903503, -0.0007843971, 0.023864746, -0.010047913, 0.04736328, -0.004497528, -0.010650635, 0.009788513, -0.024108887, 0.01020813, -0.051086426, 0.024597168, 0.002702713, 0.00025177002, -0.06677246, 0.017807007, -0.0068588257, -0.0028591156, 0.015167236, -0.027572632, 0.0546875, -0.058044434, -0.034332275, -0.0062332153, 0.042816162, -0.030029297, 0.008880615, 0.01727295, 0.011436462, -0.040527344, -0.00024914742, 0.01084137, -0.03781128, -0.0390625, -0.048980713, 0.05557251, -0.010978699, -0.014854431, -0.013824463, -0.01309967, 0.014320374, -0.02607727, 0.017807007, -0.0072517395, 0.0026130676, 0.0071487427, 0.01424408, 0.040740967, 0.028701782, -0.054473877, -0.022277832, -0.01499939, -0.0051116943, -0.02583313, 0.061035156, 0.0066223145, -0.024383545, -0.010932922, 0.011672974, 0.0026454926, -0.026611328, -0.031982422, 0.038330078, 0.009460449, -0.011772156, -0.001502037, -0.03050232, 0.045654297, -0.02381897, -0.053894043, 0.0209198, 0.045440674, -0.013542175, 0.0016412735, 0.068481445, 0.03302002, 0.0077323914, 0.03363037, 0.00724411, -0.041992188, -0.01020813, 0.010124207, -0.09674072, -0.04940796, -0.035827637, 0.01373291, -0.037597656, -0.014656067, -0.012199402, 0.03881836, -0.006996155, -0.022949219, -0.04156494, -0.017059326, -0.0028247833, -0.014457703, 0.009048462, -0.0076828003, 0.0009627342, -0.012321472, 0.026504517, -0.016525269, -0.0073547363, 0.010879517, 0.0259552, 0.0012607574, 0.014930725, -0.009902954, -0.029937744, -0.022506714, 0.042510986, 0.021377563, -0.039093018, 0.0044898987, 0.01676941, 0.020507812, 0.005657196, -0.036590576, 0.0019273758, -0.041748047, 0.0032634735, -0.00017428398, 0.06427002, -0.049987793, 0.00059366226, 0.013053894, 0.04699707, 0.03692627, 0.039916992, 0.044830322, -0.01826477, -0.017456055, 0.012626648, -0.02835083, -0.03173828, -0.015129089, -0.053863525, -0.041931152, -0.017242432, -0.025238037, 0.04043579, -0.04031372, 0.019821167, -0.03970337, 0.0385437, -0.0061531067, -0.049957275, 0.011009216, -0.024856567, 0.07220459, -0.03451538, -0.011566162, -0.016616821, -0.004219055, -0.021606445, 0.029525757, 0.04434204, 0.00040650368, 0.008453369, -0.05706787, 0.047607422, 0.012466431, -0.08929443, -0.0039634705, -0.019622803, -9.340048e-05, -0.025970459, -0.008255005, -0.0068855286, 0.037109375, 0.016799927, -0.01626587, 0.0042762756, -0.006378174, -0.010261536, -0.005466461, 0.015060425, -0.026489258, -0.01651001, 0.016799927, 0.0079193115, -0.006198883, -0.0020656586, -0.026412964, 0.029205322, 0.031234741, 0.014732361, 0.0009965897, -0.008331299, 0.020401001, 0.0058784485, 0.016998291, -0.021759033, -0.026412964, 0.02986145, 0.04071045, -0.015434265, -0.0058288574, -0.026931763, 0.040374756, -0.00013625622, -0.013755798, 0.0317688, -0.07574463, 0.032592773, 0.0211792, 0.018798828, -0.021377563, -0.01914978, -0.020950317, -0.017364502, 0.008377075, -0.005970001, 0.0066375732, -0.029312134, -0.0049858093, -0.042053223, 0.022979736, -0.036132812, 0.005924225, -0.042877197, 0.036102295, 0.030456543, 0.025665283, -0.0066490173, -0.0028057098, 0.0007786751, 0.0029773712, 0.022369385, -0.017425537, -0.0016965866, -0.007789612, 0.0010719299, -0.024520874, 0.034118652, -0.017318726, -0.01789856, -0.009429932, -0.034332275, 0.0057525635, -0.019256592, -0.041992188, -0.03967285, -0.018341064, -0.045166016, 0.03704834, 0.0010843277, -0.006374359, 0.01789856, -0.012481689, 0.0062294006, -0.037353516, 0.009460449, 0.0017633438, 0.020095825, -0.015838623, 0.03881836, -0.04272461, -0.056121826, -0.021209717, 0.052734375, -0.09118652, -0.04437256, -0.012145996, 6.568432e-05, 0.00020325184, -0.0035152435, 0.039215088, 0.026519775, 0.028244019, -0.0013523102, -0.023956299, -0.010108948, -0.009895325, 0.05206299, 0.00198555, 0.0025482178, -0.022628784, 0.013893127, 0.0065078735, 0.041778564, 3.7312508e-05, 0.025436401, -0.061767578, 0.0155181885, -0.025772095, 0.0061531067, -0.021469116, 0.0027751923, 0.027664185, 0.0052986145, -0.029663086, 0.021591187, 0.024871826, 0.026733398, 0.023544312, 0.003566742, 0.011161804, -0.03640747, -0.018127441, -0.052886963, -0.0064201355, 0.02859497, 0.025634766, -0.027359009, -0.011878967, 0.033172607, -0.011604309, 0.00843811, 0.022857666, 0.0008792877, 0.015319824, -0.0067634583, 0.030288696, 0.0016899109, -0.033294678, -0.010627747, -0.03881836, -0.05218506, 0.008476257, -0.00092077255, -0.008476257, 0.013542175, -0.027709961, 0.013504028, -0.013328552, 0.002714157, -0.023117065, 0.002035141, 0.01008606, 0.015037537, 0.025924683, 0.010955811, 0.031921387, -0.0015554428, -0.040008545, -0.0021800995, 0.04498291, -0.01537323, -0.064208984, 0.049224854, 0.026153564, 0.02305603, -0.044830322, -0.1071167, -0.07128906, 0.0115737915, 0.007293701, 0.020401001, 0.059509277, -0.0034294128, -0.0013952255, 0.03970337, -0.038024902, -0.04171753, 0.004081726, 0.05441284, 0.010063171, 0.016143799]}, "B00NCSUZBQ": {"id": "B00NCSUZBQ", "original": "Brand: Magma\nName: Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nBurner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\n", "metadata": {"Name": "Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size", "Brand": "Magma", "Description": "", "Features": "New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nBurner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.05340576, -0.0064048767, -0.07122803, 0.004535675, -0.029525757, -0.013427734, -0.016403198, 0.02104187, -0.022857666, 0.012023926, -0.03540039, 0.042907715, 0.010414124, -0.019226074, 0.032104492, -0.01499176, 0.033081055, 0.016525269, 0.0063667297, -0.030029297, 0.0005979538, -0.0048942566, -0.022399902, 0.08758545, 0.04812622, -0.02368164, -0.021499634, -0.009498596, 0.05053711, 0.03479004, 0.041168213, -0.031173706, 0.024597168, -0.010368347, 0.0057754517, -0.049224854, 0.025558472, -0.02909851, -0.025726318, 0.023406982, 0.011817932, -0.0045280457, -0.011878967, -0.024475098, -0.030227661, -0.014389038, 0.010231018, 0.010261536, 0.02357483, 0.013336182, 0.010635376, -0.01600647, 0.0071640015, 0.006000519, -0.021224976, 0.0064468384, -0.03213501, 0.0035533905, -0.00459671, 0.0029239655, 0.022109985, 0.028793335, 0.026947021, 0.03152466, -0.002111435, 0.022232056, 0.09118652, -0.003440857, 0.02911377, -0.026931763, -0.029129028, 0.031829834, 0.0012664795, 0.00548172, -0.005268097, -0.02444458, 0.019821167, -0.009613037, 0.020584106, 0.024215698, -0.03186035, -0.007095337, 0.01209259, -0.07757568, 0.032073975, -0.05493164, -0.02796936, 0.005809784, -0.008644104, -0.01399231, -0.013648987, 0.02330017, -0.05831909, 0.032592773, 0.012283325, -0.020065308, -0.045654297, -0.07525635, 0.026794434, 0.015220642, 0.020217896, -0.021148682, 0.03753662, 0.013572693, -0.034606934, 0.05029297, 0.056884766, 0.05444336, -0.029388428, -0.018966675, -0.021270752, -0.018005371, 0.0047340393, -0.07232666, -0.010520935, 0.023345947, 0.009841919, 0.0014247894, 0.042266846, -0.028167725, -0.015716553, 0.01499176, 0.052459717, 0.008308411, 0.005088806, 0.02355957, -0.0071525574, -0.060821533, -0.12597656, 0.07495117, -0.0011196136, 0.004108429, 0.049621582, 0.05859375, -0.023727417, -0.024047852, -0.0022125244, -0.005378723, 0.0031909943, -0.031433105, 0.0078125, -0.006252289, 0.023849487, 0.014755249, -0.04046631, 0.010192871, 0.029769897, 0.004333496, -0.040496826, -0.040985107, -0.010902405, 0.024047852, 0.029937744, 0.042541504, -0.005935669, 0.058532715, 0.043304443, 0.006580353, -0.076171875, -0.030776978, -0.07977295, -0.026000977, 0.028152466, 0.008979797, 0.0024147034, 0.058410645, 0.038116455, 0.010536194, 0.02015686, 0.03527832, -0.024353027, 0.011222839, 0.03656006, 0.016464233, -0.009284973, 0.011375427, -0.028762817, 0.01763916, 0.05456543, -0.0713501, -0.045166016, -0.040252686, 0.10119629, -0.02406311, -0.023086548, 0.03741455, 0.0048446655, 0.016113281, -0.012382507, -0.011398315, 0.020751953, 0.059539795, -0.007572174, -0.00920105, 0.0236969, -0.010620117, -0.06890869, -0.014930725, -0.017959595, -0.00881958, 0.012489319, -0.0037975311, -0.009361267, 0.0048942566, -0.07885742, -0.0074653625, -0.016342163, 0.017044067, 0.009803772, 0.031463623, -0.013336182, 0.0043678284, 0.015701294, -0.08178711, -0.016052246, -0.018325806, -0.02848816, -0.0027389526, -5.364418e-07, 0.025253296, 0.00843811, -0.0012331009, 0.0034656525, 0.023635864, 0.01977539, 0.015159607, -0.018051147, 0.008575439, 0.038879395, 0.020965576, -0.012382507, -0.017852783, 0.10498047, 0.05557251, -0.031677246, 0.03942871, 0.05419922, 0.041259766, -0.04852295, -0.015357971, 0.009735107, 0.019363403, -0.007259369, 0.033447266, 0.070129395, 0.031555176, 0.008506775, 0.0018033981, -0.020996094, -0.0060043335, 0.029830933, -0.0045547485, 0.027832031, 0.023254395, -0.01940918, 0.0357666, -0.017074585, -0.0030765533, -0.027328491, 0.021148682, 0.013313293, 0.05014038, -0.0016527176, 0.026260376, -0.005432129, 0.009796143, 0.020690918, 0.028900146, -0.016052246, -0.015144348, 0.028823853, 0.051757812, -0.017837524, -0.04888916, 0.025268555, -0.015716553, -0.05130005, 0.042510986, -0.0028305054, -0.036071777, -0.0015697479, -0.008888245, -0.04534912, -0.0006623268, 0.033081055, 0.0158844, 0.01197052, 0.021957397, -0.04434204, -0.009315491, 0.0184021, 0.018325806, -0.019012451, 0.0033912659, -0.0076446533, -0.014274597, 0.049041748, 0.012207031, 0.007118225, -0.0024642944, 0.03994751, 0.035095215, -0.05126953, 0.027374268, -0.0006055832, -0.022232056, 0.010169983, -0.015365601, -0.027130127, -0.023727417, -0.039001465, 0.0029907227, 0.03515625, -0.0016098022, 0.009796143, -0.008995056, -0.0030937195, 0.03604126, 0.005821228, 0.017364502, 0.025054932, -0.004524231, -0.06378174, -0.009056091, -0.01146698, 0.013534546, -0.01777649, -0.023254395, -0.054595947, -0.009063721, -0.012329102, -0.05078125, -0.007835388, 0.022735596, -0.00894928, 0.0018882751, -0.014328003, 0.054718018, -0.014350891, -0.06011963, -0.05895996, -0.044891357, 0.0053367615, -0.027328491, -0.040771484, 0.02557373, -0.007972717, 0.013191223, -0.085754395, -0.02998352, 0.022399902, -0.048614502, 0.028564453, 0.0023174286, 0.026519775, -0.03829956, -0.04296875, -0.008430481, -0.035614014, -0.061523438, -0.0055885315, -0.001906395, -0.028823853, -0.033294678, 0.052093506, -0.013511658, -0.05718994, 0.014305115, -0.036315918, -0.019561768, 0.06964111, -0.04260254, -0.06604004, -0.04550171, -0.05807495, -0.009521484, 0.05050659, -6.6280365e-05, -0.002281189, 0.010643005, 0.055877686, 0.029037476, 0.013687134, -0.023635864, -0.0020637512, 0.03302002, 0.021697998, 0.05517578, -0.03277588, -0.04321289, -0.017150879, 0.06088257, -0.010093689, -0.020629883, -0.013122559, -0.0035648346, 0.028137207, 0.002040863, 0.004863739, -0.0155181885, -0.105285645, 0.016967773, 0.001578331, -0.03842163, 0.0034637451, -0.08380127, -0.047058105, -0.06524658, 0.009391785, 0.059417725, -0.0046043396, -0.016601562, 0.00016009808, -0.007259369, 0.024673462, 0.008705139, 0.018554688, -0.01411438, 0.03186035, -0.01991272, -0.013977051, 0.01789856, 0.0072784424, 0.03262329, -0.066101074, 0.0018482208, -0.045959473, 0.037231445, -0.06414795, 0.053497314, -0.014053345, 0.012908936, -0.0033740997, -0.0041656494, -0.010353088, 0.010169983, -0.030029297, -0.028167725, -0.006690979, -0.028808594, -0.0057029724, -0.0063209534, -0.0011930466, -0.0038032532, 0.019958496, -0.038970947, 0.010391235, -0.009963989, -0.005935669, -0.0066184998, -0.024307251, 0.0030822754, 0.054504395, 0.029190063, -0.0012311935, 0.031585693, 0.021987915, 0.048065186, -0.003162384, -0.009536743, -0.014968872, -0.042236328, 0.02923584, -0.0050239563, -0.012260437, -0.033966064, 0.042297363, 0.018478394, 0.008453369, -0.007965088, 0.00052165985, 0.05041504, 0.021759033, -0.0028305054, -0.0063705444, -0.024490356, 0.016540527, 0.040496826, -0.044769287, -0.032287598, -0.030441284, 0.0050697327, -0.048614502, 0.037597656, 0.012161255, -0.009490967, 0.02508545, 0.037963867, 0.02720642, 0.048950195, 0.042907715, -0.009468079, 0.017562866, 0.056365967, -0.0023097992, 0.0099105835, 0.002752304, 0.011161804, 0.015670776, 0.007987976, -0.04397583, -0.00440979, 0.016479492, -0.042999268, -0.031051636, 0.0014915466, 0.012252808, -0.010574341, -0.007736206, -0.039123535, -0.010627747, -0.032226562, -0.03152466, -0.0043296814, -0.024139404, -0.0015068054, -0.023986816, 0.007156372, -0.056610107, -0.008514404, -0.03564453, 0.00071048737, 0.03152466, 0.053466797, -0.053100586, 0.0019302368, -0.0020446777, 0.0069389343, -0.011054993, -0.00014662743, 0.023483276, -0.0032043457, 0.07067871, 0.04006958, -0.03881836, 0.009529114, -0.019927979, 0.00056934357, -0.044433594, -0.06756592, -0.010803223, 0.014633179, -0.003578186, -0.036590576, 0.020355225, -0.06854248, -0.025421143, -0.026290894, -0.005722046, 0.001282692, -0.028915405, -0.023727417, -0.05307007, 0.0075950623, -0.0016708374, -0.08532715, -0.084228516, 0.029067993, 0.0051002502, 0.005355835, -0.005634308, 0.021621704, -0.038848877, -0.00065231323, -0.06561279, 0.0104522705, -0.0016155243, 0.0031471252, 0.060760498, -0.060394287, -0.006904602, -0.023529053, 0.12634277, 0.027496338, 0.023452759, -0.039611816, -0.0040626526, 0.009529114, 0.02760315, 0.010551453, -0.00067424774, -0.0035495758, -0.012649536, -0.018936157, -0.01979065, -0.026931763, 0.058166504, -0.059417725, -0.016738892, -0.02166748, 0.049987793, -0.02204895, 0.026123047, 0.0093688965, 0.008422852, -0.01676941, -0.012672424, -0.08441162, -0.004917145, -0.0044441223, -0.0056152344, 0.019989014, 0.013671875, -0.030349731, 0.029251099, 0.0131073, 0.011878967, 0.00051403046, -0.01411438, -0.008102417, 0.017074585, 0.0135269165, -0.019073486, 0.004600525, -0.036590576, 7.599592e-05, -0.061767578, 0.064331055, 0.020217896, -0.011146545, -0.011016846, -0.027038574, -0.019256592, -0.049835205, -0.012817383, 0.045898438, 0.005722046, -0.00057315826, -0.0345459, 0.0062942505, -0.024780273, -0.007331848, 0.0001732111, -0.017822266, 0.034606934, -0.004173279, 0.02520752, 0.01626587, 0.015777588, 0.0082092285, -0.015579224, 0.058807373, 0.033111572, 0.009887695, 0.080078125, -0.0061149597, 0.01033783, 0.005340576, -0.028381348, -0.024429321, 0.015388489, 0.017807007, 0.025909424, 0.02758789, -0.030731201, 0.04232788, -0.014549255, -0.017929077, 0.024093628, -0.012382507, -0.01864624, 0.0345459, -0.041381836, 0.022918701, -0.009063721, 0.0015821457, 0.0134887695, 0.03375244, -0.025466919, 0.005710602, 0.017089844, -0.022018433, -0.0044670105, -0.018127441, 0.006717682, -0.021057129, 0.042144775, 0.0016317368, -0.00010639429, -0.05883789, 0.017578125, 0.047546387, 0.04437256, -0.0071792603, -0.03918457, 0.033050537, -0.034179688, -0.012199402, -0.01939392, 0.010124207, -0.016235352, 0.0259552, -0.016448975, 0.010559082, -0.024490356, -0.027526855, -0.07733154, 0.022415161, -0.0013198853, 0.040283203, 0.0066566467, 0.0002142191, -0.025344849, -0.04168701, -0.009986877, -0.018096924, -0.032989502, -0.03579712, 0.013000488, 0.009033203, -0.01914978, -0.01586914, 0.05319214, 0.022583008, -0.028579712, -0.046783447, -0.04751587, -0.007030487, -0.05215454, 0.053619385, -0.017150879, 0.0054893494, 0.012252808, -0.012939453, -0.004917145, 0.031021118, -0.045532227, 0.015525818, 0.03186035, 0.07745361, -0.031829834, 0.039764404, 0.091918945, -0.059936523, -0.033813477, -0.068359375, 0.04446411, -0.0047569275, 0.0060424805, 0.0519104, 0.06878662, -0.0073509216, 0.04840088, 0.0012607574, -0.053833008, 0.00466156, -0.0019702911, -0.07104492, -0.04095459, -0.039001465, -0.021636963, 0.019470215, -0.02017212, -0.033111572, 0.028579712, -0.010345459, -0.022705078, -0.04373169, -0.034729004, 0.010421753, -0.06109619, 0.014572144, -0.005695343, 0.0002863407, 0.017547607, -0.017959595, -0.055603027, 0.0060157776, 0.046813965, 0.004951477, 0.010475159, -0.039215088, 0.0004916191, -0.0018348694, 0.059906006, 0.06222534, -0.043640137, 0.04937744, 0.009307861, 0.038513184, -0.04095459, 0.06573486, -0.024642944, -0.006122589, -0.0501709, 0.021270752, 0.015563965, 0.065979004, -0.048034668, 0.016296387, 0.028198242, 0.03237915, 0.036987305, 0.0045776367, 0.01084137, -0.029022217, -0.035461426, 0.011550903, -0.017974854, -0.04434204, 0.004837036, -0.021148682, -0.061401367, -0.018951416, -0.049804688, -0.0032310486, -0.033691406, 0.03074646, 0.015838623, 0.028930664, 0.008850098, 0.019165039, 0.032073975, 0.00051546097, 0.010437012, 0.03793335, -0.01789856, -0.010528564, -0.012283325, 0.010902405, 0.018005371, 0.0435791, 0.004524231, 0.01600647, -0.03845215, 0.023239136, 0.0016956329, -0.04989624, 0.022369385, 0.024032593, -0.007762909, 0.014923096, -0.047058105, -0.0048446655, 0.012954712, -0.026016235, -0.01449585, 0.009315491, 0.024353027, -0.004234314, -0.016067505, 0.02130127, -0.035369873, -0.01979065, -0.015655518, 0.002828598, 0.022857666, 0.014404297, -0.01838684, 0.027572632, 0.06542969, -0.038726807, 0.019927979, 0.021606445, 0.0027065277, -0.081970215, 0.02104187, -0.0129776, -0.0135650635, 0.015533447, 0.00034928322, 0.017654419, 0.0592041, 0.027023315, -0.0028915405, 0.020843506, -0.035614014, 0.023666382, -0.030807495, 0.057037354, 0.038360596, 0.021606445, -0.028320312, -0.018096924, -0.0073928833, -0.018356323, 0.021957397, -0.0033569336, 0.013832092, -0.006111145, -0.0016336441, 0.0010375977, 0.03805542, -0.035736084, 0.014556885, -0.00033640862, 0.008621216, -0.016418457, 0.029296875, -0.00091934204, -0.026992798, -0.014015198, -0.004173279, -0.006351471, 0.024246216, 0.027313232, 0.020050049, 0.012680054, -0.031982422, -0.0031585693, 0.0045928955, -0.04397583, 0.025375366, -0.032989502, -0.02204895, -0.0050354004, -0.0049705505, -0.0063934326, -0.02027893, -0.048950195, 0.04196167, -0.01158905, -0.03756714, -0.018066406, 0.0087890625, 0.0006380081, -0.052459717, -0.011756897, -0.0038986206, 0.03274536, 0.005050659, 0.018539429, -0.004863739, -0.06359863, -0.06427002, 0.044006348, -0.06530762, -0.034423828, 0.03262329, -0.025421143, -0.006538391, -0.0054397583, 0.003627777, 0.09362793, 0.020706177, -0.00087690353, -0.0158844, -0.0236969, -0.006877899, 0.031433105, 0.0038642883, -0.022705078, -0.026733398, 0.018173218, 0.0014066696, 0.013198853, 0.021026611, -0.007843018, -0.05596924, -0.023010254, -0.031066895, -0.009819031, 0.00011968613, 0.0046844482, -0.0041160583, -0.0075683594, -0.04916382, -0.023666382, -0.013877869, 0.014808655, 0.043273926, 0.0020923615, 0.013366699, -0.011459351, -0.05682373, -0.020767212, -0.013877869, 0.006084442, 0.021026611, 0.035095215, 0.008506775, 0.0040283203, -0.0048179626, -0.0068588257, -0.012237549, -0.02494812, 0.016403198, 0.01687622, -0.00819397, 0.015083313, -0.020980835, 0.036712646, -0.018005371, -0.02571106, 0.022064209, 0.036712646, -0.023498535, -0.0020942688, -0.029220581, -0.0018434525, 0.020950317, -0.015991211, 0.006198883, -0.0010728836, -0.022399902, 0.0009899139, 0.023849487, 0.0066871643, 0.0060577393, -0.017089844, -0.027679443, 0.030853271, 0.021514893, 0.03326416, -0.026016235, 0.029922485, 0.027282715, 0.02508545, -0.03338623, -0.0340271, -0.038208008, 0.0127334595, 0.006515503, 0.01386261, 0.040130615, -0.009124756, 0.013633728, 0.0149383545, -0.0065460205, 0.005027771, 0.009544373, 0.04486084, -0.010437012, 0.0095825195]}, "B00NVUUPEM": {"id": "B00NVUUPEM", "original": "Brand: Coleman\nName: Coleman Propane Fuel Case of 6\nDescription: Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.\nFeatures: \n", "metadata": {"Name": "Coleman Propane Fuel Case of 6", "Brand": "Coleman", "Description": "Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.042785645, -0.01612854, -0.02659607, -0.022842407, -0.027130127, 0.011360168, -0.03643799, 0.017730713, -0.040863037, -0.01789856, -0.0059165955, 0.022354126, -0.047576904, -0.046875, 0.03100586, -0.04135132, 0.008560181, 0.0054855347, -0.030639648, -0.038269043, -0.00349617, -0.029403687, -0.061676025, 0.07611084, 0.015449524, -0.034454346, 0.04660034, -0.016220093, 0.0037136078, -0.013366699, 0.02381897, 0.019805908, 0.042816162, -0.018035889, -0.001376152, -0.0031051636, 0.04360962, -0.02368164, -0.020462036, 0.021362305, -0.0049552917, 0.008041382, 0.044036865, -0.016403198, -0.008728027, -0.009407043, 0.0059928894, -0.024246216, 0.018478394, -0.030456543, 0.00894928, 0.036895752, 0.01423645, -0.051330566, -0.004688263, 0.02999878, 0.018203735, 0.03643799, 0.01109314, -0.03918457, -0.023071289, 0.038024902, 0.02923584, 0.03375244, -0.036956787, 0.01676941, 0.064208984, -0.025787354, -0.005168915, -0.032592773, 0.012626648, 0.012870789, -0.024993896, 0.025985718, -0.042022705, -0.017807007, 0.016784668, -0.038909912, 0.010269165, 0.046966553, -0.084472656, -0.04675293, -0.014198303, -0.012481689, -0.018310547, 0.019561768, -0.039764404, 0.0015850067, 0.0046958923, 0.0152282715, -0.0103302, 0.09527588, -0.004211426, 0.0022468567, -0.04559326, -0.005908966, -0.0021266937, -0.044525146, 0.051452637, -0.0036354065, 0.02357483, -0.028457642, -0.012458801, 0.020812988, -0.010375977, 0.055114746, 0.0072898865, 0.023757935, 0.017990112, 0.00011020899, -0.005672455, -0.013839722, -0.0038051605, 0.0011425018, -0.014945984, 0.008491516, -0.03503418, 0.04522705, -0.012252808, 0.058532715, -0.019958496, -0.006038666, 0.018630981, -0.036102295, -0.005203247, -0.039031982, -0.027130127, 0.010154724, -0.037750244, 0.032958984, -0.05142212, -0.0105896, 0.05645752, 0.067993164, 0.03363037, -0.023712158, 0.00605011, -0.012573242, 0.0023212433, 0.011413574, 0.0132751465, -0.034484863, -0.008003235, 0.030471802, -0.05984497, 0.031677246, 0.03717041, 0.007926941, -0.03744507, -0.04852295, -0.0019378662, -0.030456543, 0.050994873, -0.006462097, -0.009262085, -0.03869629, 0.03479004, -0.052886963, -0.016616821, -0.06774902, -0.034240723, -0.030334473, -0.009918213, -0.010513306, -0.028411865, 0.04458618, 0.026885986, 0.0043144226, 0.009284973, 0.015823364, -0.03149414, 0.013122559, 0.004261017, 0.00605011, 0.0066719055, 0.004749298, -0.011100769, 0.022994995, 0.043304443, -0.062683105, -0.053009033, -0.047180176, 0.04840088, 0.0006980896, -0.004825592, -0.044281006, 0.036865234, -0.014671326, -0.0064888, 0.0024166107, 0.06915283, 0.028915405, -0.07598877, 0.024307251, -0.032714844, 0.017181396, -0.011421204, 0.049865723, -0.015327454, -0.036621094, 0.045837402, -0.015007019, 0.053833008, -0.034210205, 0.037322998, -0.023330688, 0.0154418945, 0.006187439, 0.017791748, 0.038085938, -0.0023174286, -0.013801575, 0.018493652, -0.056243896, -0.037261963, -0.018615723, -0.0101623535, 0.02154541, 0.036102295, 0.012023926, 0.05206299, 0.0028800964, 0.032684326, -0.008399963, 0.008018494, -0.018997192, -0.021530151, -0.010055542, -0.0076904297, -0.011459351, 0.0037288666, 0.043914795, 0.07788086, 0.07928467, -0.0015287399, 0.020950317, 0.05230713, 0.022354126, -0.017700195, -0.0126571655, 0.0038871765, -0.014663696, -0.020584106, 0.026504517, 0.028137207, 0.030578613, 0.012962341, 0.012634277, -0.023391724, 0.020477295, 0.04714966, 0.034301758, 0.010002136, 0.07751465, -0.0345459, 0.030151367, -0.029663086, 0.0034999847, -0.02848816, 0.045715332, -0.014411926, 0.05441284, 0.052581787, 0.004333496, -0.01876831, 0.013427734, 0.038116455, 0.026916504, 0.012992859, -0.01272583, -0.0079422, 0.0013780594, -0.0013427734, -0.0045776367, -0.0016736984, 0.00015282631, -0.037902832, 0.03302002, 0.013900757, -0.024047852, 0.008506775, -3.6656857e-05, -0.0052833557, -0.002840042, 0.04144287, 0.003194809, 0.011047363, 0.01852417, -0.02722168, -0.021514893, 0.0049743652, 0.019836426, -0.020233154, 0.0059776306, 0.004722595, -0.016311646, 0.008171082, -0.021591187, 0.027740479, -0.049621582, 0.0010566711, 0.048828125, -0.038024902, 0.03137207, -0.011917114, 0.010322571, -0.024505615, 0.013435364, -0.0017261505, -0.036071777, -0.002090454, -0.000910759, 0.029083252, 0.036010742, -0.0030612946, -0.011245728, -0.012519836, 0.03765869, -0.009223938, -0.022857666, -0.057037354, -0.0018453598, 0.034423828, 0.006755829, 0.024719238, -0.020111084, -0.0158844, 0.026382446, 0.011314392, 0.015686035, 0.009841919, 0.026473999, 0.0025539398, 0.03253174, 0.004558563, -0.004760742, 0.0050621033, 0.070007324, 0.0015611649, -0.055847168, -0.01689148, -0.05078125, -0.022766113, 0.021514893, -0.03692627, -0.042785645, 0.024383545, -0.0051727295, -0.025054932, -0.0047836304, 0.029373169, -0.0023536682, 0.022750854, -0.021713257, 0.03845215, -0.03591919, -0.07373047, -0.020050049, 0.0029773712, -0.07824707, 0.02015686, -0.029525757, -0.048553467, -0.01574707, 0.06451416, -0.016540527, -0.0368042, -0.049224854, 0.015220642, 0.029586792, -0.04562378, 0.04446411, -0.042175293, -0.008293152, 0.0076065063, 0.021850586, 0.07110596, -0.00051116943, 0.0016527176, 0.026947021, 0.00060749054, 0.018936157, -0.020767212, 0.0046310425, 0.03237915, 0.027374268, 0.05822754, 0.055603027, 0.022140503, -0.016357422, 0.005302429, 0.024658203, -0.041229248, -0.015731812, -0.0034370422, 0.0033493042, -0.013763428, -0.01285553, -0.020080566, -0.030563354, -0.063964844, 0.0018787384, -0.0044403076, -0.03289795, 0.0026836395, -0.053375244, -0.021957397, -0.053527832, 0.015960693, 0.008033752, 0.0012407303, 0.007637024, -0.009712219, 0.009155273, 0.014694214, -0.035217285, 0.019744873, -0.021438599, 0.037139893, -0.008392334, 0.03918457, -0.10095215, 0.040649414, 0.052093506, -0.022476196, 0.012527466, -0.017364502, 0.023666382, -0.04296875, 0.021469116, 0.0011129379, -0.017242432, -0.027938843, -0.041259766, -0.009185791, 0.019348145, -0.026260376, -0.0066337585, -0.03439331, 0.010879517, 0.0015325546, -0.024551392, 0.019515991, 0.02784729, -0.008384705, 0.0045814514, -0.012084961, 0.01826477, 0.0030937195, -0.01386261, 0.0099105835, 0.015060425, 0.020843506, 0.009841919, -0.018966675, 0.010597229, 0.036102295, 0.018417358, -0.030517578, 0.0009841919, -0.024978638, -0.009536743, 0.029418945, -0.047912598, -0.005683899, -0.047454834, 0.019134521, 0.015029907, 0.012229919, -0.026947021, -0.022827148, 0.088012695, 0.016571045, -0.013259888, 0.00083875656, -0.008903503, 0.010917664, 0.011207581, -0.012382507, -0.01763916, -0.045074463, -0.009033203, -0.14611816, 0.091674805, 0.08709717, -0.04840088, 0.088256836, 0.040863037, -0.0007162094, 0.019104004, 0.047302246, -0.01146698, 0.013916016, 0.04425049, -0.021240234, -0.017120361, 0.0040359497, 0.017166138, 0.028503418, -0.0043144226, -0.010879517, 0.009056091, -0.011962891, -0.030670166, 0.0055999756, 0.009185791, -0.0055351257, 0.001865387, 0.01727295, -0.0040512085, -0.005470276, -0.019836426, -0.0024147034, 0.001168251, -0.0093688965, 0.028259277, -0.00983429, -0.04260254, 0.005092621, 0.0018548965, 0.01436615, 0.0021076202, 0.011390686, 0.0134887695, 0.015289307, 0.009529114, -0.025253296, -0.0014209747, -0.025466919, 0.019744873, 0.026229858, 0.005264282, -0.015090942, -0.05569458, 0.054107666, 9.083748e-05, 0.0141067505, 0.032196045, -0.037353516, -0.089538574, 0.018081665, 0.040252686, 0.0024814606, -0.06225586, 0.010658264, 0.028411865, 0.0345459, 0.030014038, -0.031433105, 0.0021686554, -0.026245117, 0.00374794, -0.056762695, -0.024978638, -0.023788452, 0.0050849915, -0.019180298, 0.02255249, -0.013130188, -0.031799316, 0.014144897, 0.03845215, -0.037353516, -0.020690918, -0.030822754, 0.021957397, -0.0005350113, -0.021987915, 0.017715454, -0.03579712, -0.0041542053, -0.0068511963, 0.036010742, 0.005706787, 0.010673523, -0.016845703, -0.024337769, 0.022979736, -0.0018796921, 0.024612427, -0.02619934, 0.006248474, -0.026977539, 0.018096924, -0.022628784, -0.054718018, 0.020187378, -0.053131104, -0.051605225, -0.06713867, 0.045043945, -0.0011224747, 0.0031528473, -0.03982544, 0.0075035095, 0.034240723, -0.010887146, -0.06616211, -0.05291748, -0.008476257, -0.026290894, -0.012580872, -0.00970459, -0.012275696, 0.043060303, 0.014305115, -0.015151978, 0.010276794, 0.005104065, -0.015266418, -0.012840271, 0.03894043, -0.07141113, 0.017318726, -0.06719971, 0.00074768066, -0.078308105, 0.06933594, 0.02243042, 0.009422302, 0.011772156, -0.01878357, -0.0031261444, -0.03375244, -0.01701355, 0.003314972, 0.021560669, 0.012817383, -0.024093628, -0.0042648315, -0.011711121, -0.016403198, -0.011497498, -0.019927979, -0.0028572083, 0.0010194778, -0.01008606, -0.034698486, -0.00605011, 0.023284912, -0.00012469292, 0.02508545, 0.045043945, -0.027297974, 0.0019550323, -0.047180176, -0.010627747, 0.016433716, -0.02243042, 0.0090789795, 0.019882202, 0.01197052, -0.08227539, 0.042388916, 0.040863037, 0.023910522, -0.022705078, 0.022750854, 0.0035743713, -0.008026123, -0.032806396, 0.026977539, -0.0026607513, -0.00048804283, 0.042755127, 0.001750946, 0.0018005371, -0.0002975464, 0.008590698, 0.016937256, -0.012390137, -0.05657959, 0.040893555, -0.006389618, 0.016143799, -0.039611816, 0.041503906, -0.015113831, -0.0056610107, -0.059692383, 0.015625, 0.0128479, 0.00025486946, -0.011749268, -0.011856079, 0.0619812, -0.002986908, -0.026779175, 0.019500732, -0.0040512085, -0.02949524, 0.013504028, -0.008094788, -0.032592773, -0.0143585205, -0.01121521, -0.029769897, 0.007572174, 0.04031372, -0.015197754, 0.005683899, 0.004196167, -0.028213501, -0.012489319, -0.036346436, 0.031799316, 0.012313843, 0.015655518, -0.028945923, -0.004711151, -0.010063171, 0.007045746, -0.055755615, 0.00039672852, -0.046813965, -0.01737976, -0.033843994, 0.013710022, 0.013290405, 0.04373169, -0.02053833, -0.012313843, -0.020401001, 0.007331848, 0.03152466, -0.03857422, -0.06933594, -0.0143966675, 0.015327454, 0.021347046, -0.02482605, -0.0043945312, 0.031433105, -0.035095215, -0.025436401, -0.028900146, 0.06793213, -0.05783081, -0.002960205, 0.01436615, 0.0068893433, 0.022644043, 0.03164673, 0.014122009, -0.017730713, 0.016296387, 0.016189575, -0.0068855286, 0.010375977, -0.017623901, 0.0209198, 0.026351929, 0.023147583, -0.00075244904, 0.04650879, 0.0051879883, 0.013183594, -0.044433594, 0.0028247833, -0.021331787, 0.024108887, 0.014762878, 0.00020265579, -0.0077819824, -0.054138184, 0.010406494, -0.04977417, -0.049438477, -0.0149002075, 0.02746582, 0.052947998, -0.0038547516, 0.008201599, 0.03277588, -0.039001465, 0.03137207, 0.02748108, -0.009544373, -0.013427734, -0.0050201416, -0.009819031, -0.003326416, -0.04788208, 0.018875122, -0.011833191, -0.009521484, 0.016342163, 0.024230957, -0.0368042, -0.014350891, 0.039245605, 0.03225708, 0.029281616, 0.008483887, 0.0052490234, 0.030944824, 0.032409668, 0.005886078, 0.018066406, -0.0069999695, 0.011177063, -0.05886841, 0.022781372, 0.018753052, 0.0077667236, -0.0036735535, -0.049743652, 0.082214355, -0.04385376, 0.005870819, -0.012168884, -0.030090332, 0.05166626, -0.017211914, 0.014427185, -0.022094727, -0.007671356, 0.025024414, -0.04638672, -0.016525269, -0.002811432, 0.024246216, 0.022338867, 0.017425537, -0.023452759, 0.0065727234, 0.031234741, -0.050231934, -0.004962921, -0.0030097961, -0.013343811, -0.009765625, -0.034606934, -0.019866943, -0.007217407, 0.018951416, 0.02583313, -0.019500732, 0.024230957, 0.036346436, 0.010765076, 0.008407593, -0.015945435, -0.019241333, 0.040405273, -0.0007791519, 0.00013446808, -0.015281677, -0.04248047, 0.052825928, 0.00907135, 0.014518738, 0.051727295, -0.032073975, -0.00039720535, -0.008804321, -0.0042762756, -0.053619385, -0.051116943, 0.0065345764, 0.026367188, -0.0423584, -0.015090942, -0.0040016174, 0.023376465, 0.008087158, -0.09094238, 0.03326416, -0.095581055, 0.029525757, 0.019378662, 0.08911133, -0.062683105, -0.03326416, -0.011566162, -0.004306793, 0.0016183853, 0.037628174, 0.006542206, -0.0013103485, -0.011985779, -0.036102295, 0.012397766, -0.014862061, -0.0135269165, -0.04888916, 0.018554688, 0.016784668, -0.0015001297, -0.0073509216, 0.0115737915, -0.020324707, 0.0039024353, 0.017089844, -0.029388428, -0.0024681091, -0.0051231384, -0.009178162, -0.0390625, 0.05496216, -0.026672363, -0.03564453, -0.020874023, -0.030776978, 0.009864807, -0.021514893, -0.030075073, -0.029632568, -0.023788452, -0.046722412, 0.054656982, -0.010002136, -0.0018510818, 0.0038414001, -0.009857178, -0.025756836, -0.028701782, 0.011116028, 0.012123108, 0.06774902, -0.02305603, 0.08123779, -0.04473877, -0.014183044, -0.05041504, -0.026000977, -0.044555664, 0.0074653625, -0.02166748, -0.007411957, -0.033843994, -0.026733398, 0.00046801567, 0.047973633, 0.026443481, -0.0011062622, 0.027877808, -0.05117798, -0.04058838, 0.08642578, 0.038116455, -0.042236328, -0.014297485, 0.016464233, -0.013145447, -0.020629883, 0.023986816, -0.0044288635, -0.09466553, -0.018936157, -0.03475952, -0.034179688, -0.017654419, -0.010231018, 0.005458832, 0.00042033195, -0.043151855, -0.044433594, 0.012458801, 0.03881836, 0.04623413, -0.046783447, 0.04788208, -0.04623413, -0.065979004, -0.09552002, -0.03479004, 0.052459717, 0.037841797, -0.020095825, -0.027572632, 0.057037354, -0.01335144, 0.039794922, 0.045410156, 0.017486572, -0.0036182404, 0.0009765625, 0.03274536, -0.012145996, -0.006832123, 0.014549255, -0.02684021, -0.022720337, 0.0016212463, -0.005290985, 0.018737793, 0.056640625, -0.03338623, 0.014671326, 0.029022217, 0.032714844, -0.054626465, -0.048675537, 0.036132812, 0.04537964, -0.017730713, 0.0039901733, 0.0051727295, 0.029678345, -0.0446167, 0.02255249, 0.027053833, 0.031143188, -0.0058250427, 0.031951904, 0.04257202, 0.02583313, -0.030563354, -0.11199951, -0.051757812, 0.0015163422, 0.02619934, -0.00055885315, 0.08215332, -0.036102295, 0.014457703, -0.008590698, -0.03250122, -0.028823853, -0.007865906, 0.050964355, -0.02432251, 0.009849548]}, "B0765BJV74": {"id": "B0765BJV74", "original": "Brand: Grillman\nName: Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant\nDescription: \nFeatures: The 58\" x 24\" x 48\" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information!\nSecure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions.\nEasy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come!\nRegardless of what you're looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover.\nPlease click the \"Visit the Grillman Store\" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!\n", "metadata": {"Name": "Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant", "Brand": "Grillman", "Description": "", "Features": "The 58\" x 24\" x 48\" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information!\nSecure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions.\nEasy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come!\nRegardless of what you're looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover.\nPlease click the \"Visit the Grillman Store\" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0025348663, -0.00012552738, -0.022155762, -0.020935059, -0.01423645, 0.009178162, -0.028030396, -0.0063591003, -0.023284912, 0.004070282, 0.0056381226, 0.032287598, 0.0016536713, -0.042266846, 0.038635254, -0.021713257, 0.015411377, 0.030227661, 0.023376465, -0.009849548, 0.0010957718, 0.0043258667, -0.006603241, 0.061309814, 0.03866577, -0.06665039, 0.036132812, -0.01537323, 0.04434204, -0.0027179718, 0.032989502, -0.009513855, 0.047180176, -0.004600525, -0.025421143, 0.05065918, -0.005264282, -0.00258255, 0.008346558, 0.0036621094, 0.0029678345, -0.010375977, -0.005092621, -0.014770508, -0.00052690506, -0.030715942, 0.009063721, -0.05783081, 0.0236969, -0.017486572, 0.012588501, 0.045715332, 0.009727478, 0.05267334, -0.022628784, 0.01322937, 0.0056152344, -0.011360168, 0.03744507, -0.016159058, -0.01890564, -0.01927185, 0.029434204, -0.009674072, -0.038635254, 0.00472641, 0.090148926, -0.00497818, -0.0491333, -0.059906006, 0.022949219, 0.0127334595, 0.062683105, -0.02381897, -0.032592773, -0.048980713, -0.009933472, -0.0440979, 0.04638672, -0.048339844, -0.0027599335, -0.026473999, -0.009918213, 0.017807007, -0.004585266, 0.02897644, -0.004337311, -0.018112183, 0.0029888153, -0.028366089, 0.004371643, 0.012077332, -0.035247803, 0.011184692, 0.006702423, -0.032958984, -0.024536133, -0.024490356, 0.011268616, 0.011886597, 0.020339966, -0.023391724, 0.035308838, -0.017120361, -0.04260254, 0.048217773, -0.007896423, 0.054382324, -0.0019350052, 0.020828247, 0.0077209473, -0.09490967, -0.03717041, -0.056732178, -0.010231018, 0.035491943, -0.03793335, -0.0008201599, 0.010627747, -0.036071777, -0.03491211, -0.01424408, -0.026473999, 0.070373535, 0.035980225, 0.041015625, 0.023864746, 0.02418518, -0.042114258, 0.03375244, -0.021850586, -0.017089844, 0.034088135, 0.06829834, 0.027313232, -0.009490967, 0.024307251, -0.005958557, -0.013183594, 0.0070877075, -0.007610321, 0.030029297, 0.053894043, -0.032470703, -0.013305664, 0.009231567, 0.014419556, 0.008171082, 0.014518738, -0.041931152, 0.007686615, -0.02229309, 0.044433594, 0.02909851, -0.07788086, 0.021484375, 0.009674072, -0.0050315857, -0.059448242, -0.049072266, -0.037200928, -0.013038635, -0.0017776489, -0.044403076, -0.047576904, 0.019226074, 0.027160645, 0.0050239563, 0.024307251, 0.015525818, -0.017211914, -0.02180481, -0.011833191, 0.0046310425, 0.0009279251, 0.029327393, -0.02166748, 0.056549072, 0.049926758, -0.06707764, -0.041503906, -0.0496521, 0.11999512, -0.023468018, 0.009117126, -0.007335663, 0.022537231, -0.01121521, -0.0019798279, 0.008323669, 0.021469116, 0.030212402, -0.034179688, 0.028671265, -0.0033073425, 0.007648468, -0.033111572, 0.020065308, -0.010292053, -0.04849243, -0.01020813, 0.0121536255, 0.00096702576, 0.007411957, 0.01576233, -0.01574707, 0.007820129, 0.0143585205, 0.049835205, 0.028518677, -0.031951904, -0.023956299, 0.019119263, -0.01033783, -0.016189575, 0.01939392, 0.03225708, -0.005218506, -0.008903503, 0.010665894, 0.0024204254, 0.012763977, -0.033111572, 0.036071777, 0.010681152, -0.021728516, 0.0022182465, -0.0061149597, 0.023254395, 0.029708862, -0.018127441, -0.008544922, 0.0657959, 0.05731201, -0.002773285, 0.042816162, 0.06048584, 0.009414673, -0.025131226, -0.0063171387, 0.0020217896, -0.031036377, -0.043304443, 0.015975952, -0.0011539459, 0.014793396, -0.0068511963, 0.024795532, -0.025985718, 0.0075798035, 0.039916992, 0.01398468, 0.016830444, -0.004524231, -0.017593384, 0.036224365, -0.007835388, -0.009437561, -0.056427002, 0.057159424, 0.00447464, 0.037506104, 0.01713562, 0.0015897751, 0.011993408, 0.023239136, 0.05130005, 0.04925537, -0.0066108704, -0.0077209473, -0.0023078918, 0.028579712, 0.013542175, 0.024658203, -0.026138306, -0.0011234283, -0.002828598, 0.0036735535, 0.011711121, -0.0062828064, 0.013122559, 0.03668213, 0.03378296, -0.010429382, 0.021575928, -0.009735107, 0.0074272156, 0.0027179718, -0.031311035, -0.016357422, 0.010520935, -0.00995636, -0.035125732, -0.0034561157, 0.041259766, -0.032928467, 0.047546387, -0.006008148, 0.009147644, -0.021224976, 0.015975952, 0.022705078, -0.032196045, -0.01474762, -0.01260376, 0.05718994, -0.038513184, 0.02029419, 0.019073486, -0.033966064, 0.039276123, 0.041656494, 0.019348145, -0.035980225, 0.076538086, 0.017211914, 0.023040771, 0.043182373, 0.046569824, 0.03616333, -0.035827637, -0.01826477, -0.038848877, -0.026763916, -0.011146545, 0.037078857, -0.03488159, 0.011436462, -0.031234741, -0.009529114, -0.02468872, -0.058563232, -0.03112793, -0.005619049, -0.009811401, 0.0075950623, 0.000110805035, 0.0070648193, 0.0063591003, 0.010406494, 0.008872986, -0.02355957, -0.008255005, -0.04336548, -0.03036499, -0.034301758, 0.047332764, -0.002746582, -0.01676941, 0.017715454, 0.017837524, -0.02204895, -0.03189087, -0.054595947, -0.03387451, 0.029174805, 0.025009155, -0.08215332, -0.00315094, -0.08294678, -0.007701874, -0.025131226, -0.050445557, 0.02229309, 0.043060303, -0.020126343, -0.0039711, -0.019302368, 0.04159546, 0.032165527, 0.027954102, 0.04043579, -0.047943115, -0.024932861, -0.0056533813, -0.037109375, -0.015808105, -0.06161499, 0.022949219, -0.0098724365, -0.025772095, 0.009277344, -0.019882202, 0.031036377, -0.004711151, 0.03756714, 0.05441284, 0.07116699, -0.019104004, -0.045166016, -0.017990112, 0.07513428, -0.0146484375, -0.022735596, 0.02230835, 0.014518738, 0.0041160583, 0.016098022, -0.0082473755, -0.030792236, -0.07043457, 0.0052337646, 0.010940552, -0.034576416, -0.02859497, -0.062042236, -0.060668945, -0.046142578, -0.020584106, 0.09112549, -0.041625977, -0.023773193, -0.018173218, -0.033477783, 0.04244995, 0.011291504, -0.03302002, -0.004016876, -0.016845703, 0.006198883, 0.0028190613, -0.010139465, -0.025299072, 0.007270813, -0.008811951, 0.046173096, -0.0077285767, 0.021881104, -0.014129639, 0.011756897, 0.0103302, -0.015792847, -0.02458191, 0.017837524, -0.01247406, 0.048797607, 0.016784668, -0.0113220215, 0.042663574, -0.031585693, -0.039276123, -0.012031555, -0.027450562, -0.004322052, -0.01763916, -0.019515991, 0.00097465515, -0.035095215, -0.024780273, 0.0095825195, -0.021392822, 0.013801575, 0.0075645447, 0.042877197, -0.0075263977, 0.074157715, -0.01727295, 0.012031555, -0.00869751, -0.0018434525, -0.037139893, -0.027816772, 0.06427002, -0.044067383, -0.022369385, -0.019226074, 0.034301758, -0.00068712234, -0.026916504, 0.001748085, -0.03503418, 0.02848816, 0.021118164, -0.02949524, 0.0026779175, -0.05493164, 0.0067100525, -0.0008659363, 0.021881104, -0.024261475, -0.05038452, -0.016693115, -0.07922363, 0.099487305, 0.06304932, -0.019973755, 0.083740234, 0.0690918, -0.012580872, 0.046783447, 0.043823242, 0.02909851, 0.024917603, 0.06945801, 0.0013132095, -0.013435364, 0.021499634, -0.038146973, 0.012214661, 0.0060691833, -0.061309814, 0.00075626373, -0.041046143, -0.040924072, -0.020050049, 0.042297363, 0.0423584, 0.009887695, -0.010902405, -0.029800415, 0.021987915, -0.049194336, 0.041625977, 0.039489746, -0.023239136, -0.0027618408, 0.015312195, 0.030883789, -0.03567505, -0.01121521, 0.0034866333, 0.0015935898, 0.011985779, 0.03857422, -0.010902405, 0.002450943, -0.01902771, -0.010665894, -0.0057754517, 0.016464233, 0.014251709, -0.011054993, 0.026473999, 0.004421234, 0.0049324036, 0.0028018951, 0.005584717, 0.0032997131, -0.036010742, -0.05114746, 0.010620117, 0.033294678, 0.0068626404, -0.04449463, 0.008384705, -0.03152466, -0.0005335808, -0.0072364807, -0.022613525, -0.027877808, -0.017456055, 0.009147644, -0.04510498, 0.018234253, 0.010894775, -0.05279541, -0.07556152, 0.0061569214, -0.014091492, 0.03302002, -0.010650635, 0.039367676, -0.044189453, -0.017105103, 0.019851685, 0.005760193, 0.04498291, 0.011749268, 0.04486084, -0.029083252, 0.011894226, -0.024551392, 0.09210205, 0.020828247, 0.0028820038, -0.04812622, -0.021331787, -0.00028061867, 0.01499939, 0.05090332, 0.009864807, 0.0418396, -0.011604309, 0.020217896, -0.052825928, -0.017837524, 0.030960083, -0.058410645, -0.03677368, -0.038391113, 0.06414795, -0.004776001, -0.04660034, -0.010032654, 0.048431396, 0.037963867, 0.0048942566, -0.006778717, 0.05682373, 0.020980835, -0.022125244, 0.0071868896, -0.0055732727, -0.009994507, 0.025939941, 0.021987915, -0.02720642, 0.00045776367, -0.028335571, -0.011711121, 0.0146484375, 0.027664185, -0.028579712, -0.0051002502, -0.02583313, 0.008430481, -0.06573486, 0.0848999, 0.03817749, 0.015457153, -0.00032901764, -0.017166138, -0.01184082, -0.0914917, -0.0037937164, -0.029464722, 0.017044067, -0.0052375793, -0.029159546, 0.00011527538, -0.028259277, 0.004432678, 0.018203735, -0.019577026, 0.03564453, -0.02748108, 0.024505615, -0.0118255615, -0.0017518997, 0.057128906, 0.0107803345, -0.0013723373, 0.015022278, 0.01864624, -0.02923584, -0.025314331, 0.014862061, 0.012176514, -0.008705139, -0.035003662, 0.044891357, 0.010414124, -0.019989014, 0.015129089, -0.013183594, 0.010238647, -0.05126953, -0.013519287, 0.0063056946, -0.011634827, -0.015731812, 0.050109863, -0.038116455, 0.057434082, 0.043304443, -0.010223389, -0.0052261353, 0.025299072, -0.037078857, 0.07757568, -0.01109314, -0.018707275, 0.0135650635, -0.0063972473, -0.0034122467, -0.02281189, 0.07635498, 0.0041503906, 0.0055885315, -0.05407715, 0.0098724365, -0.0052948, 0.015449524, -0.016098022, -0.009239197, 0.032165527, 0.005748749, -0.016967773, 0.009887695, 0.045837402, -0.0262146, 0.026016235, 0.026138306, 0.035888672, -0.027862549, 0.040740967, -0.06329346, -0.02696228, -0.008926392, 0.034454346, 0.008392334, -0.023971558, -0.024291992, -0.078063965, -0.021316528, 0.0039978027, -0.004928589, -0.008201599, 0.0121154785, 0.024658203, -0.0132751465, -0.018356323, 0.010643005, 0.009460449, -0.012413025, -0.035308838, -0.037994385, 0.009552002, -0.020965576, 0.03781128, -0.012504578, -9.1433525e-05, -0.015716553, 0.005218506, 0.023284912, -0.023284912, -0.037139893, 0.013114929, 0.0011987686, 0.023742676, -0.025161743, 0.013641357, 0.06506348, -0.051361084, -0.03857422, -0.06652832, 0.027801514, -0.06896973, -0.0519104, 0.070373535, 0.044311523, 0.015213013, 0.014465332, 0.023529053, -0.030670166, 0.041381836, 0.014045715, -0.055847168, -0.0008420944, -0.005821228, -0.0008749962, 0.009109497, 0.005203247, -0.040405273, 0.038848877, -0.041107178, -0.028442383, -0.044830322, -0.005207062, 0.00041890144, -0.053100586, 0.013656616, -0.026321411, 0.0017671585, -0.008758545, -0.017425537, -0.06921387, -0.004940033, 0.025314331, 0.022613525, 0.016021729, -0.026031494, 0.026504517, 0.055725098, -0.025894165, 0.064208984, -0.03366089, -0.0074691772, 0.007888794, 0.055541992, 0.031585693, 0.036254883, -0.026794434, -0.026123047, -0.04269409, 0.03463745, 0.040863037, 0.037872314, -0.045074463, -0.002008438, 0.059051514, 0.022445679, -0.015312195, -0.0039901733, 0.0084991455, 0.048339844, 0.012916565, -0.022323608, 0.03253174, -0.003540039, -0.010734558, -0.013969421, -0.019866943, 0.015670776, 0.004501343, -0.0010099411, -0.0021438599, 0.03390503, -0.002008438, 0.0107421875, 0.020202637, 0.014129639, -0.010139465, -0.014762878, -0.03463745, 0.026687622, 0.039611816, 0.00894928, 0.0019254684, -0.012504578, -0.015312195, 0.017547607, -0.00920105, 0.046020508, -0.005821228, 0.016540527, 0.008850098, -0.03817749, 0.027496338, 0.01689148, -0.0023345947, 0.021987915, -0.09246826, -0.05303955, -0.021652222, 0.042266846, -0.008293152, 0.06304932, -0.0030345917, 0.01737976, -0.016998291, -0.018585205, 0.029083252, -0.013519287, 0.028427124, 0.03781128, 0.005001068, -0.025543213, -0.06951904, 0.016967773, 0.022476196, -0.012641907, 0.03866577, -0.014732361, 0.009719849, -0.027938843, 0.010009766, -0.0152282715, -0.033203125, 0.010398865, 0.028259277, 0.008796692, 0.04650879, -0.004878998, 0.010314941, -0.009429932, -0.047790527, 0.03024292, -0.05014038, 0.033996582, 0.024032593, 0.034484863, -0.05419922, -0.047607422, -0.029876709, -0.007408142, -0.024337769, 0.062347412, -0.025421143, 0.035491943, 0.032714844, 0.054626465, 0.067993164, -0.024597168, 0.030380249, 0.018157959, 0.0012054443, 0.026031494, -0.012779236, 0.006362915, -0.001490593, -0.030441284, 0.0021362305, 0.0048828125, -0.014923096, 0.031433105, 0.017181396, -0.012519836, -0.0151901245, -0.011924744, 0.028793335, -0.026535034, 0.008720398, -0.019989014, -0.013725281, -0.0048294067, -0.027633667, -0.046539307, -0.0041046143, -0.040496826, 0.008071899, 0.0014333725, -0.04257202, -0.0256958, 0.010658264, -0.006603241, -0.06237793, -0.043548584, -0.011787415, 0.02670288, -0.009719849, 0.046173096, -0.050323486, -0.027282715, 0.005455017, 0.030395508, -0.053894043, -0.05078125, 0.024871826, -0.002407074, 0.022033691, 0.0061569214, 0.011230469, 0.0519104, 0.020706177, -0.012168884, 0.012680054, -0.008331299, -0.049468994, 0.06149292, 0.020446777, -0.0135269165, 0.0357666, 0.05218506, -0.01763916, 7.5101852e-06, 0.022521973, -0.032684326, -0.016052246, 0.010826111, 0.007183075, -0.011726379, 0.015716553, -0.016555786, 0.023010254, 0.015197754, -0.039123535, 0.007926941, 0.0057754517, -0.0035572052, 0.021408081, -0.023513794, 0.05218506, 0.0071868896, -0.047180176, -0.03378296, -0.021972656, -0.0056610107, 0.08178711, 0.010536194, -0.022262573, 0.023590088, -0.012260437, 0.02067566, -0.010261536, 0.00024747849, -0.0181427, 0.020751953, -0.031982422, -0.051727295, 0.00095129013, -0.03439331, 0.0071525574, -0.07513428, 0.046569824, 0.054595947, -0.03567505, -0.012367249, -0.012878418, -0.009971619, 0.031311035, -0.05630493, -0.025390625, -0.05215454, -0.012535095, 0.01902771, -0.02458191, 0.00040769577, -0.009635925, -0.010231018, -0.017501831, 0.035217285, 0.016052246, 0.03302002, -0.02798462, 0.031829834, 0.023849487, 0.06561279, -0.028717041, -0.031341553, -0.023483276, 0.0038986206, 0.035736084, -0.0043640137, 0.070373535, -0.024002075, 0.009124756, 0.0009675026, -0.026824951, -0.042114258, 0.04196167, 0.024887085, -0.002784729, 0.03930664]}, "B00ARJOTSI": {"id": "B00ARJOTSI", "original": "Brand: EISCO\nName: Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment\nDescription: Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

      THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.\nFeatures: Liquid propane gas bunsen burner\nAluminum burning mixer tube with brass flame stabilizer\nAccepts 6 to 8mm tubing\nBase diameter - 80mm, height - 160mm, burner tube diameter - 13mm\nDie cast zinc alloy base. May come with a gold or blue base.\n", "metadata": {"Name": "Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment", "Brand": "EISCO", "Description": "Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

      THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.", "Features": "Liquid propane gas bunsen burner\nAluminum burning mixer tube with brass flame stabilizer\nAccepts 6 to 8mm tubing\nBase diameter - 80mm, height - 160mm, burner tube diameter - 13mm\nDie cast zinc alloy base. May come with a gold or blue base.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.076171875, -0.011627197, -0.09692383, 0.012794495, -0.02204895, -0.035705566, -0.031707764, 0.04067993, -0.0010490417, -0.00038003922, -0.053100586, -0.0049972534, 0.042388916, -0.035461426, 0.040161133, -0.03111267, -0.0042495728, 0.031280518, -0.0013923645, -0.037597656, 0.0023002625, -0.05581665, 0.028137207, 0.039886475, 0.019882202, -0.023223877, 0.038116455, 0.004589081, 0.011009216, -0.0072250366, 0.016662598, -0.010360718, 0.047821045, 0.0035800934, -0.041900635, -0.031082153, 0.022857666, -0.033294678, -0.027954102, 0.0037765503, -0.015594482, 0.01474762, 0.041900635, 0.046661377, -0.016662598, -0.03817749, -0.006515503, -0.028930664, -0.014038086, 0.027359009, -0.013549805, -0.024780273, -0.016052246, -0.008522034, -0.01928711, -0.03857422, 0.047454834, -0.039093018, 0.0004811287, -0.03173828, -0.01499939, 0.020568848, 0.039123535, 0.009529114, -0.01838684, -0.0012311935, -0.007904053, -0.0137786865, 0.038238525, 0.0049591064, 0.0017118454, 0.006290436, -0.011367798, 0.015602112, -0.02796936, -0.012489319, 0.02204895, -0.008079529, 0.019638062, 0.0317688, 0.029693604, 0.050811768, 0.05783081, -0.037384033, 0.011436462, -0.015205383, -0.019638062, -0.034820557, -0.0102005005, 0.0082092285, -0.019866943, -0.033599854, 0.031402588, 0.02229309, -0.038208008, 0.03475952, -0.045806885, -0.10253906, 0.041931152, 0.003440857, 0.06341553, -0.058929443, 0.059753418, 0.0037937164, -0.0027122498, 0.06060791, -0.0070152283, -0.00944519, 0.008323669, 0.0044021606, -0.00016903877, -0.022857666, -0.036499023, -0.053588867, -0.0043029785, 0.048950195, -0.029541016, 0.011566162, 0.020446777, 0.009849548, -0.00982666, -0.008323669, 0.024780273, 0.03060913, -0.0007481575, 0.02947998, -0.014778137, -0.025024414, -0.058654785, 0.0036449432, -0.024230957, 0.0022411346, 0.047210693, 0.09112549, 0.04284668, -0.008392334, -0.018432617, -0.028167725, 0.0004427433, -0.022827148, 0.016815186, -0.008369446, 0.029312134, 0.014602661, -0.024932861, 0.04711914, 0.025787354, -0.016738892, -0.015167236, -0.06225586, -0.046081543, 0.0016975403, 0.022277832, 0.01448822, -0.074279785, 0.009559631, -0.028625488, -0.0045051575, -0.025817871, -0.048187256, -0.032562256, -0.034606934, -0.025146484, 0.026657104, -0.01940918, 0.056152344, 0.03970337, -0.0012960434, 0.008972168, 0.039978027, 0.0056419373, 0.004798889, -0.006587982, -0.015945435, -0.012367249, -0.015777588, 0.030410767, 0.056427002, 0.040740967, -0.09057617, -0.06530762, -0.064819336, 0.12463379, -0.046173096, -0.008972168, 0.0046463013, 0.0035266876, -0.034057617, 0.010231018, -0.018112183, 0.046142578, 0.02619934, 0.04949951, -0.028671265, -0.015777588, -0.04525757, -0.0104904175, -1.2397766e-05, -0.020187378, 0.024612427, -0.039855957, 0.042785645, -0.013832092, 0.01159668, 0.039215088, -0.016708374, 0.021652222, 0.01940918, 0.026550293, 0.019897461, -0.016815186, -0.015991211, -0.00022745132, -0.003900528, -0.019104004, 0.03173828, -0.040374756, -0.0055999756, 0.015670776, -0.012496948, 0.041900635, -0.024291992, 0.04434204, -0.009635925, 0.00819397, 0.0013275146, -0.026535034, 0.0064811707, 0.014831543, -0.0061416626, 0.037017822, 0.039886475, 0.04714966, 0.06359863, 0.022750854, 0.019577026, 0.07556152, -0.024658203, 0.010093689, -0.014480591, 0.0074272156, 0.009407043, 0.027420044, 0.07080078, 0.041809082, -0.01737976, 0.012550354, 0.035125732, -0.0067596436, 0.052520752, 0.04827881, 0.039398193, -0.005794525, 0.031829834, 0.0015544891, 0.011436462, -0.032409668, -0.0151901245, -0.029006958, 0.052093506, -0.013198853, 0.020095825, 0.030181885, -0.014060974, 0.016571045, -0.008384705, 0.022903442, 0.020950317, -0.038848877, 0.008430481, 0.024749756, 0.018188477, 0.014175415, -0.005554199, -0.0625, -0.004673004, -0.016601562, 0.034484863, -0.00032043457, -0.010795593, 0.02911377, 0.025161743, 0.047180176, 0.00274086, 0.037231445, 0.0154953, 0.022445679, 0.021118164, 0.010620117, -0.0013198853, 0.039001465, -0.01727295, 0.0028476715, -0.014404297, 0.015548706, -0.046081543, 0.0836792, -0.035186768, 0.026657104, -0.012672424, 0.055908203, 0.048706055, -0.031234741, 0.016174316, 0.0023651123, 0.015106201, 0.017303467, 0.024978638, 0.005504608, -0.05053711, 0.009979248, -0.005405426, 0.0011930466, -0.02619934, -0.005004883, -0.012214661, -0.00712204, 0.004852295, -0.0132369995, 0.01864624, -0.011505127, 0.039855957, -0.0309906, -0.014442444, 0.010948181, 0.009552002, -0.036499023, -0.01348114, 0.0011148453, 0.04107666, 0.030685425, 0.022445679, 0.011642456, -0.023101807, -0.011390686, -0.0041542053, 0.01928711, 0.010246277, -0.005340576, -0.06323242, -0.0028305054, 0.02835083, -0.0072250366, 0.020370483, -0.04119873, -0.035827637, 0.010025024, 0.009773254, 0.013694763, -0.012367249, 0.030838013, -0.021621704, 0.006416321, 0.0013751984, 0.0064048767, -0.031021118, -0.015563965, 0.0031547546, -0.038635254, -0.05392456, -0.017913818, -0.010284424, -0.041229248, 0.00011366606, 0.047546387, -0.00667572, -0.050872803, -0.0025730133, -0.0022506714, 0.017410278, 0.010375977, -0.019836426, -0.020721436, -0.01020813, -0.018432617, -0.0018730164, 0.09667969, -0.003686905, 0.0056991577, 0.06048584, 0.0118637085, 0.06866455, -0.08874512, 0.008392334, 0.018997192, 0.008323669, 0.008003235, 0.01096344, 0.018936157, 0.0012254715, 0.0037250519, 0.0050239563, -0.035064697, -0.046539307, 0.017913818, 0.013206482, 0.0134887695, 0.0056114197, -0.01335144, -0.036834717, -0.04815674, 0.02456665, -0.0016746521, 0.008666992, -0.011161804, -0.09454346, -0.04257202, -0.029632568, 0.002155304, 0.020080566, -0.002527237, 0.029434204, -0.03982544, 0.04034424, 0.002960205, -0.024383545, -0.032440186, -0.017578125, 0.016723633, 0.0066604614, 0.031951904, -0.07519531, 0.05239868, 0.06112671, -0.02772522, -0.0013313293, 0.0015602112, 0.018997192, -0.007572174, 0.016052246, -0.0021018982, -0.0129470825, -0.025024414, -0.03778076, -0.012275696, -0.0020446777, 0.017166138, -0.016799927, 0.023330688, -0.0036296844, -0.032196045, -0.021316528, 0.023956299, 0.017166138, -0.012756348, -0.003370285, -0.0077781677, -0.015472412, -0.0049362183, -0.008041382, 0.007385254, -0.016082764, 0.023498535, 0.028762817, -0.016403198, 0.1385498, 0.04348755, 0.045410156, 0.009544373, 0.0077323914, -0.006767273, -0.03201294, 0.02053833, 0.0034885406, 0.002216339, -0.0055351257, -0.027069092, 0.0496521, 0.0082092285, -0.035614014, 0.03086853, 0.03744507, -0.03161621, -0.014183044, -0.01474762, 0.01713562, 0.033843994, 0.023834229, -0.00050878525, -0.027679443, -0.05105591, 0.020141602, -0.09661865, 0.053741455, 0.031021118, -0.023727417, 0.059448242, 0.02822876, -0.0234375, -0.012107849, -0.045410156, -0.02142334, -0.03555298, 0.025238037, -0.038879395, 0.03225708, 0.007610321, 0.05419922, 0.023239136, -0.006515503, -0.023971558, -0.005420685, -0.02607727, -0.012329102, -0.0027828217, 0.035491943, 0.0016860962, -0.014518738, -0.0102005005, -0.0093307495, -0.036010742, -0.052886963, -0.029907227, 0.021850586, -0.036010742, -0.036132812, 0.025665283, -0.013267517, -0.02368164, 0.011634827, 0.010627747, -0.020584106, 0.013885498, 0.017730713, 0.026947021, 0.019180298, -0.020401001, -0.00082302094, -0.024597168, 0.026168823, 0.010017395, 0.026168823, 0.0115356445, -0.021697998, 0.011894226, -0.024353027, -0.030014038, 0.04321289, 0.017715454, -0.06640625, -0.02293396, 0.0051231384, 0.0070381165, -0.02281189, -0.00459671, -0.051879883, -0.03503418, -0.058410645, -0.010772705, -0.06112671, -0.00077676773, 0.018417358, -0.014785767, 0.005554199, -0.028366089, 0.021881104, -0.03869629, -0.00048708916, 0.013839722, 0.037109375, -0.017745972, 0.043762207, -0.035003662, -0.017623901, 0.00086688995, 0.032684326, -0.013771057, -0.0053253174, 5.13196e-05, -0.0178833, -0.035705566, -0.020751953, 0.04373169, -0.006248474, -0.02947998, -0.027236938, -0.032409668, -0.015007019, -0.008392334, 0.009590149, -0.008903503, 0.051116943, 0.010025024, -0.01322937, -0.046081543, -0.0045814514, -0.026443481, 0.005382538, -0.06384277, -0.03967285, 0.03692627, -0.004425049, 0.00894928, 0.012069702, 0.00018405914, 0.0082092285, -0.011047363, -0.05899048, -0.01637268, -0.013168335, -0.044158936, 0.0037574768, -0.008049011, -0.009567261, 0.044067383, 0.082092285, 0.007118225, 0.007865906, 0.026229858, 0.008628845, -0.0155181885, 0.008575439, -0.040618896, 0.01777649, -0.028213501, -0.048583984, -0.017562866, 0.052459717, 0.022064209, -0.014968872, 0.010643005, 0.033599854, -0.0012569427, -0.057250977, -0.02357483, 0.05496216, -0.036743164, -0.04724121, -0.06237793, 0.022918701, -0.052825928, 0.005680084, -0.029052734, -0.016662598, 0.00041007996, 0.022354126, -0.016662598, -0.01789856, -0.0040397644, 0.003080368, 0.0060768127, 0.035614014, 0.01953125, 0.011497498, 0.012863159, 0.004425049, 0.010276794, -0.015853882, -0.016708374, 0.002035141, -0.07366943, -0.003238678, -0.020492554, 0.017837524, 0.019577026, 0.026626587, -0.008155823, 0.031799316, -0.0029907227, 0.003118515, -0.022857666, 0.03173828, -0.017303467, -0.014831543, 0.026290894, -0.02468872, 0.030197144, 0.018096924, 0.006225586, -0.02734375, 0.0063552856, -0.0848999, -0.03302002, -0.0038280487, -0.0068511963, -0.027160645, 0.076171875, -0.0004646778, -0.015640259, -0.04837036, 0.0060577393, 0.029006958, 0.025054932, -0.0017032623, -0.021728516, 0.047546387, -0.010017395, -0.024124146, -0.040802002, 0.032409668, -0.0592041, -0.015419006, -0.030212402, -0.024032593, -0.046936035, -0.07336426, -0.03918457, -0.005470276, -0.011108398, -0.010002136, 0.021896362, -0.002380371, -0.048431396, -0.053375244, 0.008460999, -0.018112183, -0.01802063, 0.037872314, -0.006614685, -0.020492554, 0.033569336, 0.066589355, 0.011367798, -0.00046133995, -0.018951416, -0.0029125214, -0.00039458275, 0.020355225, -0.011497498, 0.024154663, -0.022735596, 0.00970459, 0.042419434, 0.005619049, 0.032806396, 0.014259338, -0.04031372, -0.013786316, -0.016220093, -0.018325806, -0.0340271, -0.045562744, 0.055877686, -0.04232788, -0.056549072, -0.02041626, 0.054626465, -0.050872803, -0.04940796, 0.10003662, 0.038726807, 0.022140503, 0.011161804, -0.0025863647, -0.026412964, -0.025054932, -0.019882202, -0.015052795, 0.00592041, -0.046142578, 0.032409668, 0.024520874, -0.058258057, -0.034576416, 0.034698486, 0.0008096695, -0.018676758, -0.075805664, -0.084350586, 0.026489258, -0.032470703, 0.010055542, -0.024246216, -0.0054969788, 0.014709473, 0.014770508, -0.030136108, -0.020706177, -0.025817871, -0.016983032, 0.028442383, 0.011543274, -0.0036125183, -0.010772705, -0.01210022, -0.021514893, 0.009094238, -0.021728516, 0.0025177002, 0.015083313, -0.016784668, 0.015365601, -0.035095215, -0.0010433197, -0.055511475, 0.05734253, 0.026550293, 0.07171631, -0.072021484, -0.0004312992, 0.04171753, 0.059387207, 0.029968262, -0.03253174, 0.0052757263, -0.01424408, -0.039398193, -0.007843018, 0.0056495667, -0.022521973, 0.0029315948, -0.035247803, -0.03930664, -0.008262634, -0.032928467, -0.012641907, -0.037841797, 0.038757324, -0.049926758, 0.00982666, -0.0023269653, -0.040496826, 0.057922363, -0.027816772, 0.03805542, -0.03503418, 0.047332764, -0.023590088, 0.033599854, 0.019088745, -0.002571106, 0.034942627, 0.017868042, 0.022842407, -0.06060791, 0.013435364, 0.04208374, -0.08502197, -0.0015792847, 0.020751953, -0.011550903, -0.0032787323, -0.018188477, 0.017211914, -0.020980835, 0.020401001, 0.017440796, 0.032226562, -0.007434845, 0.03100586, 0.0023841858, -0.022338867, 0.0256958, 0.0018033981, 0.019363403, 0.01473999, 0.0035495758, -0.016784668, 0.004016876, 0.038848877, 0.0029735565, -0.012283325, 0.020858765, -0.037353516, 0.016113281, 0.0096588135, 0.029678345, -0.034057617, -0.040802002, -0.012039185, 0.019744873, -0.013008118, 0.010070801, 0.016845703, 0.033111572, -0.025848389, -0.024139404, 0.01235199, -0.055267334, -0.012290955, 0.0152282715, -0.003967285, -0.038482666, -0.042541504, -0.028182983, -0.033233643, 0.0009870529, 0.010696411, -0.013656616, 0.005355835, 0.018081665, 0.018035889, 0.045684814, -0.014762878, 0.009742737, 0.007419586, 0.014892578, 0.01638794, 0.02923584, -0.0036792755, -0.003211975, -0.016662598, -0.014320374, -0.004814148, -0.01424408, 0.029418945, -0.022460938, -0.02432251, -0.024139404, 0.028366089, -0.02319336, -0.0154953, -0.0090408325, -0.05706787, 0.028533936, -0.031982422, -0.057647705, -0.028549194, -0.02835083, -0.027252197, 0.06100464, 0.008056641, -0.04220581, 0.015083313, 0.026992798, -0.06549072, -0.054595947, -0.050842285, -0.005756378, -0.014274597, -0.002866745, 0.044067383, -0.03503418, -0.026428223, 0.00970459, 0.034118652, -0.024215698, -0.052947998, 0.013221741, -0.018127441, 0.009307861, 0.0010671616, 0.01852417, 0.033721924, 0.02609253, -0.01965332, 0.066589355, 0.025253296, -0.00819397, -0.02923584, 0.028305054, -0.03112793, 0.017211914, -0.029632568, -0.017929077, 0.027755737, 0.021911621, -0.0072517395, -0.011886597, -0.0013751984, -0.007865906, -0.047912598, 0.024932861, -0.05316162, 0.06390381, 0.020126343, -0.076293945, 0.016220093, 0.01576233, 0.052246094, 0.024963379, -0.0047302246, 0.022949219, -0.05203247, -0.04525757, -0.064819336, -0.027114868, 0.06451416, 0.0060539246, -0.05255127, -2.9087067e-05, -0.016479492, -0.015640259, -0.028884888, 0.008720398, 0.013771057, 0.04058838, -0.02053833, -0.007797241, 0.022445679, -0.042877197, -0.0067253113, -0.0049591064, -0.03692627, 0.007030487, 0.028961182, -0.023666382, -0.008323669, -0.028366089, 0.022354126, -0.0031795502, -0.023498535, -0.02319336, -0.060516357, 0.03933716, 0.014846802, 0.0022010803, 0.015289307, 0.05609131, -0.020233154, -0.060150146, 0.013801575, 0.026672363, 0.0134887695, -0.02267456, 0.01864624, 0.046539307, 0.079589844, -0.008758545, -0.07128906, -0.048095703, 0.030395508, 0.006706238, -0.009597778, 0.018661499, -0.00012648106, 0.0073242188, 0.042053223, -0.0084991455, -0.015853882, 0.011886597, 0.019012451, 0.012718201, 0.0034370422]}, "B01LYQLDVJ": {"id": "B01LYQLDVJ", "original": "Brand: Stanbroil\nName: Stanbroil 3/8\" X 18\" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace\nDescription: Key Features:

      - This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
      - Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
      - Provides extra corrosion protection from accidental contact with common household chemicals.
      - Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

      Compatibility:

      \u2714 Propane
      \u2714 Natural Gas
      \u2714 Gas Fire Pits
      \u2714 Gas Fireplaces
      \u2714 Gas Log Sets

      Tips for checking and addressing problem of whistling

      \u27a4 Flex Line Problems:
      1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
      2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
      3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

      \u27a4 Gas Pressure is Too High
      ~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

      ~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
      . Natural gas: Between 3.5\u201d WC and 7\u201d WC.
      Propane: 7\u201d WC and 11\u201d WC
      \nFeatures: Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance\n3/8\" OD x 1/4\" ID 18 inch Stainless steel pipe coated black gas line with fittings\n3/8\" Male Flare x 1/2\" Male NPT fitting end, 3/8\" Male Flare x 1/2\" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience\nCSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners\nThere is a staggered pitch every 2\" to Eliminate Whistling\n", "metadata": {"Name": "Stanbroil 3/8\" X 18\" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace", "Brand": "Stanbroil", "Description": "Key Features:

      - This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
      - Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
      - Provides extra corrosion protection from accidental contact with common household chemicals.
      - Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

      Compatibility:

      \u2714 Propane
      \u2714 Natural Gas
      \u2714 Gas Fire Pits
      \u2714 Gas Fireplaces
      \u2714 Gas Log Sets

      Tips for checking and addressing problem of whistling

      \u27a4 Flex Line Problems:
      1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
      2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
      3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

      \u27a4 Gas Pressure is Too High
      ~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

      ~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
      . Natural gas: Between 3.5\u201d WC and 7\u201d WC.
      Propane: 7\u201d WC and 11\u201d WC
      ", "Features": "Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance\n3/8\" OD x 1/4\" ID 18 inch Stainless steel pipe coated black gas line with fittings\n3/8\" Male Flare x 1/2\" Male NPT fitting end, 3/8\" Male Flare x 1/2\" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience\nCSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners\nThere is a staggered pitch every 2\" to Eliminate Whistling", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.025161743, -0.0082092285, -0.04647827, -0.027679443, -0.006828308, -0.00012034178, -0.021209717, 0.0075683594, -0.005695343, 0.010948181, -0.018035889, 0.013793945, -0.0006251335, -0.025634766, 0.0069732666, -0.02684021, 0.008865356, 0.0043907166, 0.00075674057, -0.024841309, 0.008766174, -0.028182983, -0.00016629696, 0.060943604, 0.021514893, 0.019821167, 0.05807495, -0.03100586, 0.02809143, -0.011604309, 0.028945923, -0.015563965, 0.06561279, 0.03845215, -0.11804199, -0.0074386597, -0.032958984, -0.00038528442, -0.06964111, 0.03540039, -0.0074043274, -0.009925842, -0.007827759, -0.012649536, -0.020690918, -0.0076904297, -0.012001038, -0.046813965, 0.0066833496, 0.033477783, 0.023483276, 0.020751953, 0.00680542, 0.024734497, -0.009086609, -0.009559631, -0.021148682, -0.017181396, -0.00724411, 0.012763977, 0.030807495, 0.031707764, 0.010124207, 0.048706055, -0.050994873, 0.00029182434, 0.05130005, -0.010925293, -0.031311035, -0.041046143, 0.022872925, 0.005176544, 0.022918701, -0.040405273, -0.043518066, 0.012184143, 0.025680542, 0.004108429, -0.002506256, -0.030960083, -0.02029419, 0.023529053, 0.016143799, -0.019683838, -0.023788452, -0.01398468, -0.027359009, -0.0018062592, -0.051635742, -0.010620117, -0.027175903, 0.029968262, -0.06048584, -0.0063819885, -0.019561768, 0.008773804, -0.052947998, -0.08496094, 0.036499023, 0.026855469, 0.0027446747, -0.03302002, 0.049468994, -0.0024223328, 0.021881104, 0.08154297, -0.018478394, 0.012237549, 0.040802002, -0.003736496, 0.024887085, -0.013000488, -0.029327393, -0.054840088, -0.028640747, 0.030151367, -0.014442444, -0.030914307, 0.03857422, -0.046203613, -0.020263672, 0.01374054, -0.013664246, -0.013687134, 0.029190063, 0.011581421, -0.0031547546, -0.016937256, -0.03289795, 0.047851562, 0.0057754517, -0.032104492, 0.0030269623, 0.068359375, 0.003314972, -0.019729614, 0.029586792, 0.029876709, 0.024902344, -0.0032539368, 0.0178833, -0.037109375, -0.018157959, 0.01096344, 0.040740967, 0.031341553, 0.011108398, -0.007835388, 0.031234741, -0.008331299, -0.0012130737, -0.026275635, 0.059051514, 0.01109314, -0.051452637, -0.024536133, -0.0038928986, -0.026473999, -0.0099105835, -0.030593872, -0.04940796, -0.028457642, 0.010726929, 0.008506775, -0.0041618347, 0.04220581, 0.040222168, 0.01424408, 0.0018882751, 0.001411438, 0.016723633, 0.064086914, 0.008995056, -0.020599365, 0.0071029663, -0.031463623, -0.009292603, 0.05999756, 0.074401855, -0.10668945, -0.064819336, -0.039398193, 0.1784668, -0.076049805, 0.014831543, -0.053985596, 0.03640747, 0.022354126, -0.019302368, 0.03753662, 0.020553589, -0.016983032, -0.008903503, -0.06829834, -0.0064849854, -0.011314392, 0.021591187, -0.0020942688, -0.007522583, 0.02835083, -0.074523926, 0.0029239655, 0.00749588, 0.00415802, 0.04446411, -0.03564453, 0.005176544, 0.024520874, 0.025527954, 0.008117676, -0.01600647, -0.016601562, 0.004512787, -0.006717682, -0.03677368, -0.007457733, -0.012741089, 0.010757446, -0.005580902, 0.012123108, 0.015914917, -0.040771484, 0.0059547424, 0.018066406, -0.012931824, 0.004009247, -0.022125244, 0.015098572, -0.014335632, 0.011856079, 0.012435913, 0.028060913, 0.04196167, 0.058166504, -0.02017212, 0.02607727, 0.028961182, 0.024749756, -0.018356323, -0.010513306, 0.04647827, -0.055480957, -0.004825592, -0.002500534, 0.0413208, -0.023727417, 0.005382538, -0.0158844, -0.019729614, 0.0038223267, 0.027252197, 0.007698059, 0.02748108, 0.029968262, 0.0001951456, 0.027130127, -0.06921387, -0.03262329, 0.0042686462, -0.025772095, 0.026916504, 0.02268982, 0.0031986237, 0.010070801, 0.060028076, -0.062469482, 0.01890564, 0.01121521, 0.020401001, -0.036956787, -0.0022945404, -0.044647217, -0.009048462, 0.03262329, -0.022506714, 0.01625061, -0.031143188, 0.017990112, -0.01966858, 0.008323669, 0.005809784, 0.024032593, 0.014305115, -0.006362915, 0.015975952, 0.018081665, 0.008605957, -0.007843018, 0.008026123, 0.0062942505, 0.022842407, 0.00548172, -0.021774292, 0.03918457, -0.020980835, -0.016174316, -0.0058021545, -0.03137207, 0.03540039, -0.05142212, 0.008476257, 0.037963867, -0.035217285, 0.013305664, -0.00089883804, -0.010520935, -0.030227661, 0.023040771, 0.0024871826, -0.029052734, -0.03930664, -0.003250122, 0.04232788, 0.015960693, 0.04623413, 0.028823853, -0.009895325, 0.05987549, 0.05911255, 0.07702637, -0.021362305, 0.0070762634, -0.0140686035, 0.0070114136, -0.0037384033, 0.0011644363, 0.0010900497, 0.00077819824, 0.014862061, -0.0055885315, -0.011543274, -0.008468628, -0.052825928, 0.018035889, 0.0016775131, -0.0036354065, 0.021102905, 0.0446167, -0.002811432, -0.06188965, -0.022460938, 0.021652222, -0.01638794, -0.0010852814, -0.073913574, -0.016220093, 0.055877686, -0.0131073, -0.031433105, -0.012649536, 0.05609131, -0.020523071, 0.021270752, -0.027740479, 0.013122559, 0.042022705, -0.030136108, -0.06097412, 0.020385742, -0.09259033, 0.0038528442, -0.008621216, -0.02784729, -0.036712646, 0.039215088, -0.023880005, -0.0418396, -0.014312744, -0.048797607, -0.020843506, 0.025344849, -0.02418518, -0.036254883, -0.032836914, -0.06173706, 0.019546509, 0.07122803, -0.014945984, -0.011230469, 0.046661377, -0.0032157898, 0.035186768, -0.049987793, 0.020187378, 0.08123779, 0.018539429, 0.05392456, 0.0178833, 0.06036377, -0.023849487, 0.018096924, -0.010032654, -0.1060791, -0.018630981, 0.0038013458, 0.010803223, 0.018035889, -0.0042495728, -0.03250122, -0.044067383, -0.038635254, 0.0049324036, -0.042144775, -0.0006599426, -0.011871338, -0.0703125, 9.441376e-05, -0.055786133, 0.007762909, 0.036132812, 0.0030651093, 0.03656006, -0.003704071, 0.033325195, 0.003250122, -0.038330078, -0.013557434, -0.0034942627, -0.06933594, 0.020248413, 0.05606079, -0.05795288, -0.001042366, 0.009109497, 0.012237549, -0.015899658, 0.023925781, -0.0055160522, -0.057128906, 0.030212402, 0.030410767, -0.050964355, -0.038085938, 0.010635376, -0.012336731, 0.06951904, 0.033447266, 0.036468506, 0.049041748, -0.014442444, -0.084228516, -0.020339966, 0.00032615662, -0.015670776, -0.010665894, -0.015853882, -0.021057129, -0.040985107, -0.031051636, -0.03942871, -0.0075416565, 0.008850098, 0.042022705, 0.03149414, 0.014083862, 0.05291748, 0.0390625, 0.047088623, 0.008346558, -0.024673462, 0.009025574, -0.024841309, -0.0023059845, 0.013290405, 0.0016241074, 0.0073928833, -0.002248764, 0.0011405945, -0.03842163, 0.011886597, 0.0017700195, -0.0024471283, 0.007785797, -0.0034332275, 0.034484863, -0.0037193298, -0.023361206, -0.007873535, 0.00071811676, 0.00793457, -0.06585693, 0.019348145, -0.033081055, 0.056152344, 0.039093018, -0.015174866, 0.05822754, 0.011299133, 0.012001038, 0.023117065, 0.021026611, -0.01737976, 0.011451721, 0.018325806, -0.0018758774, 0.016281128, -0.0006327629, -0.004852295, -0.016799927, -0.031402588, 0.004432678, -0.0071372986, 0.018081665, 0.005302429, 0.0025196075, 0.012451172, -0.008804321, -0.007522583, -0.014282227, 0.021575928, -0.035186768, -0.03289795, 0.029449463, 0.028213501, -0.013450623, -0.022460938, 0.019577026, 0.026367188, -0.04574585, -0.0027065277, -0.040527344, -0.01739502, 0.0110321045, 0.038360596, 0.005065918, -0.015419006, 0.011184692, 0.026229858, -0.014518738, 0.06137085, 0.0059661865, 0.014389038, 0.05166626, -0.036468506, 3.182888e-05, -0.046844482, -0.02293396, 0.06726074, 0.012969971, -0.07977295, -0.038269043, -0.0026874542, 0.023757935, -0.034423828, -0.010536194, -0.007698059, -0.027130127, 0.00030827522, -0.03189087, -0.007534027, -0.00023376942, -0.008255005, -0.063964844, -0.013214111, 0.009010315, -0.031463623, -0.060913086, -0.0019159317, -0.005252838, 0.026824951, -0.0023651123, -0.016311646, -0.066223145, 0.035125732, -0.036834717, -0.028778076, 0.053222656, -0.0003683567, 0.008903503, -0.03375244, -0.0059165955, 0.005882263, 0.033447266, -0.045532227, 0.008323669, -0.042938232, -0.012199402, -0.009887695, 0.026992798, 0.018218994, 0.0064086914, -0.0063438416, -0.025924683, -0.068237305, -0.07757568, -0.0128479, 0.07397461, -0.048950195, -0.03286743, -0.027114868, 0.077941895, -0.0014190674, 0.027679443, 0.047454834, 0.018630981, -0.0018072128, -0.0010147095, -0.13232422, -0.039001465, -0.013763428, -0.021011353, 0.020004272, 0.0020599365, 0.0035552979, 0.03515625, 0.045654297, 0.00020563602, 0.03173828, -0.015838623, -0.009017944, 0.0032310486, -0.005672455, -0.0030021667, 0.021820068, -0.016616821, -0.017791748, -0.045196533, 0.04827881, -0.015991211, -0.031585693, -0.044311523, 0.00029730797, -0.02331543, -0.074157715, 0.0011711121, 0.02961731, 0.025238037, 0.009338379, -0.036132812, 0.0005893707, -0.027679443, -0.018981934, 0.008804321, 0.026306152, 0.05960083, -0.014419556, -0.005924225, 0.015136719, -0.047027588, -0.008972168, -0.023498535, 0.021728516, -0.00087594986, 0.041625977, 0.036224365, -0.019821167, 0.020950317, -0.007019043, -0.0071907043, -0.030944824, 0.007221222, -0.0017566681, 0.020431519, -0.0037899017, -0.005458832, -0.00856781, -0.011894226, 0.026229858, 0.019302368, -0.04348755, -0.052978516, 0.0053634644, 0.03074646, -0.039764404, -0.009544373, 0.031219482, 0.031982422, 0.018966675, 0.0004849434, -0.008857727, 0.0061683655, -0.003129959, 0.0070266724, 0.015899658, 0.019882202, 0.029846191, 0.056030273, 0.022064209, 0.026672363, -0.037109375, 0.008468628, -0.012260437, 0.010238647, 0.00497818, -0.014007568, 0.068115234, -0.048339844, -0.056427002, 0.013633728, 0.01474762, -0.014770508, 0.013343811, 0.01499176, -0.027038574, -0.039794922, 0.0093688965, -0.00061655045, 0.012207031, 0.01637268, -0.05407715, -0.005077362, 0.047912598, -0.026763916, 0.005470276, 0.0067710876, -0.009796143, -0.01146698, -0.052764893, 0.015853882, 0.012359619, -0.034820557, 0.016860962, 0.0059661865, -0.0024795532, -0.030212402, -0.040008545, -0.0003054142, 0.021911621, 0.010032654, 0.0284729, -0.0028038025, -0.023849487, 0.01373291, 0.0020866394, 0.023986816, -0.017150879, -0.017364502, -0.004852295, 0.027893066, 0.046844482, -0.004722595, -0.040893555, 0.020477295, -0.023742676, -0.009117126, 0.010574341, 0.007369995, -0.023712158, -0.08453369, 0.046203613, 0.010856628, -0.0042419434, -0.003194809, -0.012680054, -0.031036377, 0.0231781, 0.012573242, -0.07910156, -0.04751587, -0.032165527, -0.011016846, -0.012046814, -0.03363037, -0.011734009, 0.011543274, -0.01713562, 0.012138367, 0.015541077, -0.018341064, -0.009803772, -0.034606934, -0.0042266846, -0.03579712, 0.022140503, -0.008453369, 0.012168884, -0.034240723, -0.054748535, -0.015129089, 0.010017395, -0.0072669983, 0.03074646, -0.021118164, -0.018112183, -0.020309448, 0.009361267, 0.008522034, -0.033966064, -0.01914978, 0.017318726, 0.03375244, 0.01108551, -0.06573486, -0.006000519, -0.019546509, 0.0064811707, -0.0178833, 0.02746582, -0.007663727, -0.005142212, -0.0011520386, 0.032836914, 0.0010757446, 0.017684937, 0.02456665, 0.010673523, -0.010612488, -0.009902954, -0.011756897, -0.032714844, -0.0077781677, -0.028701782, -0.022354126, 0.0036849976, -0.023803711, 0.022750854, 0.0025558472, 0.031158447, -0.030960083, 0.0289917, 0.0049972534, 0.004711151, 0.013954163, -0.01991272, -0.0033473969, -0.009353638, 0.0289917, -0.0138168335, 0.019042969, 0.027542114, -0.013900757, 0.03933716, 0.05822754, -0.026763916, -0.016555786, -0.0020523071, 0.016860962, -0.015388489, 0.0053901672, -0.0012025833, 0.012710571, -0.016662598, 0.027557373, 0.009963989, -0.015556335, 0.056152344, 0.017959595, 0.05206299, -0.048858643, 0.05090332, 0.0019140244, 0.00081682205, -0.006576538, 0.020568848, -0.01727295, -0.005382538, 0.002943039, -0.010482788, 0.003168106, 0.021713257, 0.032073975, 0.0031147003, 0.014633179, -0.046691895, 0.027816772, -0.005947113, 0.028366089, -0.041748047, -0.0049819946, -0.024475098, -0.012107849, 0.03326416, -0.033691406, -0.022094727, 0.06842041, -0.012702942, -0.0134887695, 0.020935059, -0.06738281, 0.0039520264, 0.009819031, -0.006652832, -0.05505371, -0.07904053, -0.021759033, -0.029418945, -0.024795532, 0.025802612, -0.02508545, 0.0435791, -0.013893127, -0.007701874, 0.036743164, 0.0060768127, 0.0146102905, -0.05105591, -0.00063610077, 0.0033092499, 0.08337402, 0.0051574707, 0.012329102, -0.013137817, -0.004600525, 0.0061149597, 0.008552551, -0.016799927, 0.012283325, 0.014343262, -0.017532349, -0.026031494, 0.036956787, -0.037139893, 0.016143799, -0.036315918, 0.04586792, -0.03857422, -0.07269287, -0.00472641, -0.021972656, -0.02961731, 0.08654785, 0.04168701, -0.025054932, -0.013549805, 0.012329102, -0.028915405, -0.032318115, -0.037261963, 0.017181396, -0.0013408661, 0.0044784546, 0.0335083, -0.033416748, -0.05960083, -0.0020446777, 0.053985596, -0.034301758, -0.07104492, 0.0006098747, -0.008735657, 0.0050964355, -0.025634766, -0.012054443, 0.016357422, 0.021224976, -0.038848877, -0.04336548, -0.02760315, -0.016098022, 0.048736572, -0.003660202, -0.027496338, -0.053985596, 0.022918701, 0.01197052, 0.007820129, -0.015174866, 0.012290955, -0.07208252, 0.04626465, 0.026763916, 0.002840042, -0.064086914, 0.014434814, 0.014564514, 0.028045654, 0.0071411133, 0.011039734, 0.04940796, 0.024765015, 0.03643799, 0.00793457, 0.027374268, -0.004108429, -0.08660889, -0.028182983, -0.035491943, 0.00680542, 0.024215698, -0.030441284, -0.0023040771, 0.015090942, 0.0020446777, -0.040527344, -0.002714157, 0.01737976, 0.036743164, -0.015304565, -0.015571594, 0.020217896, -0.048461914, 0.0126571655, -0.020004272, 0.008140564, -0.036346436, 0.024963379, -0.025161743, -0.024353027, -0.025299072, 0.039978027, -0.030883789, -0.03225708, -0.015792847, -0.01777649, -0.022232056, 0.017608643, -0.0015249252, -0.0026226044, -0.015365601, -0.014305115, -0.013114929, 0.005783081, 0.008880615, 0.003894806, -0.006427765, 0.02998352, 0.0006713867, 0.07104492, -0.011878967, -0.057800293, -0.06072998, 0.03894043, 0.033294678, -0.024765015, 0.070373535, -0.005821228, 0.019577026, -0.006008148, -0.03161621, -0.010818481, 0.0042037964, 0.068237305, -0.04244995, 0.021987915]}, "B078K8DSXC": {"id": "B078K8DSXC", "original": "Brand: GasOne\nName: Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet\nDescription: \nFeatures: \u2713 A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience\n\u2713 MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n\u2713 READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use\n", "metadata": {"Name": "Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet", "Brand": "GasOne", "Description": "", "Features": "\u2713 A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience\n\u2713 MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n\u2713 READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0031719208, -0.011642456, -0.041809082, -0.039642334, -0.011138916, -0.008613586, 0.002735138, 0.019546509, -0.024475098, 0.003572464, 0.0043907166, 0.022323608, 0.0070610046, -0.035858154, 0.043701172, -0.0107803345, 0.0137786865, 0.030517578, 0.01486969, -0.018188477, -0.0047340393, -0.0028629303, -0.011116028, 0.091430664, 0.03387451, -0.0335083, 0.05206299, -0.024902344, 0.039489746, -0.0040740967, 0.0345459, -0.020690918, 0.04800415, -0.0054893494, -0.054626465, -0.06921387, -0.039276123, -0.017593384, -0.055725098, 0.02116394, 0.009353638, 0.003540039, -0.018539429, 0.02281189, -0.04171753, -0.020843506, -0.0020332336, -0.026123047, 0.025817871, -0.0023555756, 0.013641357, 0.0109939575, 0.0056037903, -0.036376953, -0.02230835, 0.015640259, -0.016998291, -0.023544312, 0.0015916824, -0.010215759, 0.013328552, 0.0063476562, 0.022018433, 0.027542114, -0.055145264, 0.03640747, 0.051330566, -0.027404785, -0.005859375, -0.06915283, -0.013381958, 0.010414124, 0.017654419, -0.017593384, -0.059173584, 0.009407043, 0.019195557, -0.014198303, 0.017700195, -0.020721436, 0.00806427, -0.05630493, 0.038757324, 0.03353882, -0.016281128, 0.028198242, -0.0052604675, -0.008323669, -0.011650085, -0.041778564, -0.01576233, 0.0093688965, -0.042297363, 0.018463135, -0.03111267, -0.0035362244, -0.0074005127, -0.05621338, 0.040252686, -0.0019369125, 0.03656006, -0.052856445, 0.03805542, 0.0064353943, 0.0005912781, 0.068115234, 0.019073486, 0.019622803, 0.011016846, -0.024337769, -0.007575989, 0.019073486, -0.023330688, -0.029388428, -0.023544312, 0.047210693, 0.004673004, -0.04928589, -0.00077724457, -0.049224854, 0.007259369, -0.0062332153, 0.04940796, -0.029724121, 0.03186035, 0.01637268, -0.04724121, -0.020874023, -0.054779053, 0.032928467, 0.0029525757, 0.002357483, 0.016494751, 0.052337646, -0.005420685, -0.0029754639, 0.042144775, -0.029296875, 0.03274536, -0.018936157, 0.00982666, -0.027008057, -0.006969452, 0.029403687, -0.03314209, 0.024093628, 0.029251099, -0.0070648193, -0.012573242, -0.033813477, -0.05581665, 0.013114929, 0.06222534, -0.0067977905, -0.038635254, -0.018859863, 0.018051147, -0.024215698, -0.02470398, -0.05670166, -0.022262573, -1.9133091e-05, -0.012199402, -0.049804688, -0.04611206, -0.0043258667, 0.006290436, 0.012191772, 0.009048462, 0.09320068, -0.07281494, 0.031402588, 0.005718231, -0.0010881424, -0.026641846, -0.017959595, -0.039855957, 0.07446289, 0.072143555, -0.125, -0.06329346, -0.054870605, 0.1418457, -0.05606079, 0.0395813, -0.02609253, 0.017425537, -0.039886475, -0.010757446, 0.013763428, -0.032409668, 0.053588867, 0.023986816, -0.060516357, 0.0015554428, 0.00995636, -0.021133423, 0.018981934, -0.014480591, 0.01625061, -0.028411865, 0.028213501, 0.009361267, 0.009216309, 0.06365967, 0.0033035278, 0.019195557, 0.026687622, 0.012519836, 0.040283203, 0.006538391, 0.038635254, -0.008590698, -0.05368042, -0.008682251, 0.02444458, -0.025756836, -0.03062439, 0.017684937, -0.04598999, 0.0513916, 0.0026168823, 0.025283813, 0.036346436, -0.004966736, -0.020553589, -0.011260986, -0.006755829, 0.005393982, 0.00063180923, 0.0027999878, 0.019439697, 0.10046387, 0.08331299, -0.020584106, 0.035888672, 0.082458496, 0.072631836, -0.02861023, -0.03286743, 0.0070610046, -0.011917114, -0.0463562, 0.004047394, -0.020370483, -0.06402588, -0.014602661, 0.015342712, -0.014099121, 0.0098724365, 0.042907715, 0.010948181, 0.024291992, 0.014541626, -0.010597229, 0.018737793, -0.030548096, 0.0154418945, -0.028167725, 0.018432617, -0.008605957, 0.021057129, 0.044708252, -0.019348145, 0.0064315796, 0.03652954, 0.028259277, 0.037109375, -0.012252808, 0.026550293, 0.00415802, -0.021560669, -0.0056877136, -0.0284729, -0.064697266, -0.003698349, -0.045898438, 0.06185913, 0.004146576, -0.032836914, -0.010498047, 0.018859863, 0.007858276, -0.004928589, -0.00095558167, -0.0018520355, 0.015426636, -0.009140015, 0.020553589, -0.021224976, 0.016494751, -0.022155762, -0.015083313, 0.01737976, 0.011894226, -0.054534912, 0.009033203, -0.017578125, 0.011634827, -0.037231445, 0.0077171326, 0.046875, -0.026504517, 0.00018692017, -0.004535675, 0.012298584, 0.007358551, 0.0054359436, 0.00390625, -0.020004272, -0.005558014, 0.00869751, 0.018325806, -0.03765869, 0.035827637, 0.034332275, -0.0096206665, 0.025619507, 0.03250122, 0.04864502, -0.0034809113, -0.029571533, -0.01776123, -0.030563354, -0.002527237, 0.00340271, -0.027999878, 0.00052404404, -0.0027370453, 0.0124435425, 0.008705139, 0.012809753, 0.0012111664, 0.01675415, 0.0014190674, -0.0047950745, 0.00095939636, 0.07287598, 6.431341e-05, -0.09082031, -0.014778137, -0.035217285, -0.027313232, 0.034088135, -0.026733398, -0.024291992, 0.015136719, 0.014656067, -0.054382324, -0.008956909, 0.012916565, -0.038330078, -0.009674072, -0.028030396, 0.02949524, -0.0023479462, -0.022460938, -0.036895752, 0.020767212, -0.06384277, -0.045043945, -0.010879517, -0.060394287, -0.016189575, 0.070617676, -0.006439209, -0.045410156, 0.003709793, -0.022323608, 0.019836426, 0.009140015, -0.001581192, -0.07019043, -0.025482178, -0.045318604, 0.015235901, 0.031066895, -0.0023021698, -0.0032958984, 0.0072746277, 0.040893555, 0.034698486, -0.012825012, 0.013648987, 0.02078247, 0.015312195, 0.05215454, 0.019821167, 0.022583008, -0.022659302, 0.009353638, 0.0073547363, -0.06707764, -0.0181427, 0.037506104, 0.0070762634, 0.0057792664, 0.0059432983, -0.041870117, -0.041229248, -0.03869629, -0.01550293, -0.028259277, -0.019454956, -0.0010118484, -0.06652832, -0.0069389343, -0.049346924, 0.00982666, 0.044403076, -0.026901245, 0.007259369, -0.046295166, 0.012382507, -0.018035889, 0.011077881, -0.016052246, -0.0040740967, -0.0524292, 0.017715454, 0.064819336, -0.071777344, 0.04788208, 0.053741455, -0.04296875, 0.020843506, 0.010322571, 0.033843994, -0.02406311, 0.020126343, 0.012626648, -0.031585693, -0.039367676, 0.00012218952, 0.0085372925, 0.043060303, 0.014038086, -0.023345947, 0.017654419, -0.015556335, -0.05154419, -0.02079773, -0.025421143, 0.0019321442, 0.010765076, -0.04144287, -0.025497437, -0.06774902, 9.655952e-06, -0.07684326, 0.014266968, 0.004585266, 0.037109375, 0.007511139, 0.014015198, 0.0602417, -0.00079488754, 0.040222168, -0.023620605, -0.017807007, -0.0024547577, -0.031280518, 0.037017822, 0.0012073517, 0.0036563873, -0.013046265, 0.018310547, 0.018432617, -0.009712219, 0.0046691895, 0.018966675, -0.0022945404, -0.020431519, -0.037872314, 0.015823364, 0.008964539, 0.014320374, -0.030548096, 0.046783447, -0.011161804, -0.07525635, 0.015541077, -0.01210022, 0.025009155, 0.015602112, -0.007381439, 0.0791626, 0.048553467, 0.012588501, 0.040405273, 0.075927734, -0.02772522, 0.030166626, 0.030731201, -0.011421204, -0.008415222, 0.0054512024, 0.012626648, 0.002752304, -0.020248413, -0.023147583, 0.016418457, 0.0076828003, -0.021377563, -0.058929443, 0.014724731, 0.03161621, -0.026306152, 0.005832672, -0.059051514, 0.0014791489, -0.040039062, -0.026153564, 0.007663727, -0.030731201, -0.039398193, 0.0012130737, 0.020431519, -0.0435791, -0.013542175, 0.011367798, -0.01524353, 0.021728516, 0.030197144, -0.015914917, 0.023345947, -0.022247314, -0.016220093, -0.040039062, 0.0049934387, 0.037384033, 0.028060913, 0.026321411, -0.011741638, -0.010383606, 0.0038909912, -0.015823364, 0.043395996, 0.0047836304, -0.06335449, -0.022857666, -0.0049552917, 0.0024757385, -0.028915405, 0.0043182373, -0.022216797, -0.008415222, -0.012031555, -0.01373291, -0.0019721985, -0.02494812, -0.0178833, -0.029434204, -0.027511597, -0.0019779205, -0.003227234, -0.0035037994, -0.020431519, -0.026428223, 0.030975342, 0.00680542, 0.02671814, -0.067993164, 0.015075684, -0.07720947, -0.015396118, 0.04574585, 0.010627747, -0.033935547, -0.026992798, -0.01676941, -0.005218506, 0.07501221, 0.008735657, 0.005558014, -0.013008118, -0.034454346, 0.006996155, 0.035339355, 0.067871094, 0.0032672882, 0.008590698, -0.04522705, -0.036468506, -0.08984375, 0.0050201416, 0.050323486, -0.041412354, -0.076416016, -0.030517578, 0.072753906, 0.02268982, 0.003730774, 0.004436493, 0.04171753, 0.023803711, -0.01852417, -0.10021973, -0.025527954, 0.0017328262, -0.039978027, 0.019943237, 0.0073509216, -0.011398315, 0.021652222, 0.08074951, -0.003408432, -0.004535675, 0.02331543, 0.024597168, -0.039031982, 0.018478394, -0.04309082, 0.010528564, -0.026123047, 0.0042648315, -0.04522705, 0.0284729, 0.009223938, 0.006439209, -0.0055160522, -0.030532837, -0.0064811707, -0.035949707, -0.009140015, 0.021133423, -0.02067566, -0.035980225, -0.03656006, 0.023513794, -0.0284729, 0.0025100708, 0.0093307495, 0.006259918, 0.02192688, -0.034332275, 0.0036640167, -0.03665161, -0.014266968, 0.02911377, -0.0013284683, -0.0013494492, -0.07293701, 0.009384155, 0.0289917, -0.013031006, -0.014266968, -0.014022827, -0.010261536, -0.01235199, 3.4451485e-05, 0.0039978027, -0.035583496, 0.009765625, 0.026290894, -0.01171875, -0.011154175, 0.008003235, 0.01474762, -0.026519775, -0.018737793, 0.03265381, -0.010719299, -0.010955811, 0.028930664, -0.0013189316, -0.024978638, 0.037994385, -0.030288696, 0.05807495, 0.009628296, -0.04046631, -0.02015686, 0.010658264, 0.02420044, -0.055114746, 0.0881958, 0.003255844, -0.006263733, -0.06866455, 0.004951477, 0.0064048767, 0.009712219, 0.0073547363, -0.030334473, 0.017486572, -0.03439331, -0.005039215, 0.002073288, -0.007827759, -0.03363037, -0.010627747, -0.0011520386, -0.03125, 0.004688263, 0.0104522705, -0.0209198, 0.011451721, 0.02949524, -0.04232788, 0.009750366, 0.023742676, -0.062561035, -0.012382507, -0.013282776, -0.0069084167, -0.024520874, -0.017440796, 0.016052246, 0.010040283, -0.011680603, -0.016479492, 0.017242432, 0.017044067, -0.0335083, -0.041168213, -0.040893555, 0.010070801, -0.018981934, 0.055389404, -0.0023651123, -0.019195557, 0.0090789795, 0.040893555, 0.024749756, 0.00932312, -0.04626465, 0.024520874, -0.0015306473, 0.007980347, 0.0064315796, -0.02520752, 0.034332275, -0.023529053, -0.01802063, -0.04699707, 0.022583008, -0.0011501312, -0.0077323914, 0.097595215, 0.06329346, 0.011550903, 0.035858154, 0.016845703, -0.035858154, -0.00283432, 0.0024547577, -0.06854248, -0.07305908, -0.04901123, -0.03366089, -0.007701874, 0.008911133, -0.012916565, 0.04043579, -0.010353088, -0.009757996, -0.031433105, 0.0037345886, -0.007686615, -0.02357483, 0.022216797, 0.018844604, 0.0048332214, -0.0047340393, 0.032562256, -0.07446289, -0.032836914, 0.02532959, 0.011955261, 0.010726929, 0.038238525, 0.017745972, 0.011299133, -0.05392456, 0.015129089, 0.00051164627, -0.011291504, -0.029693604, 0.013313293, 0.006931305, 0.032348633, -0.052825928, -0.0027561188, -0.013069153, 0.006526947, -0.014556885, 0.015136719, -0.030380249, -0.01763916, -0.012779236, 0.043273926, -0.03781128, 0.04449463, 0.03387451, 0.008972168, -0.029647827, -0.03378296, 0.00573349, -0.042877197, -0.018463135, -0.029556274, -0.03086853, 0.0017738342, -0.023132324, 0.03677368, -0.00075626373, 0.0076942444, -0.036956787, -0.00061273575, -0.0011949539, -0.02545166, 0.02960205, -0.020126343, -0.0036888123, -0.03640747, 0.04244995, 0.0018749237, 0.009086609, -0.0073051453, -0.007335663, 0.027496338, 0.014968872, 0.01285553, -0.027236938, 0.0009217262, 0.01600647, -0.033050537, -0.002275467, 0.0027217865, -0.004623413, -0.009986877, -0.0317688, -0.014122009, -0.01524353, 0.020843506, 0.0055351257, 0.05633545, -0.012779236, 0.01965332, -0.035339355, 0.0061569214, -0.055236816, -0.05303955, -0.0071754456, -0.040405273, 0.0027542114, 0.030944824, -0.080200195, 0.010978699, 0.030715942, -0.0014352798, 0.027496338, 0.0005631447, 0.016342163, -0.019607544, -0.032043457, -0.043151855, -0.05596924, -0.034606934, -0.0032691956, 0.0014286041, 0.02999878, 0.013336182, -0.00712204, -0.032348633, -0.029388428, 0.01361084, -0.007965088, 0.0016927719, 0.016952515, -0.030517578, -0.052093506, -0.044525146, -0.021347046, 0.007068634, -0.012542725, 0.041107178, 0.0061454773, 0.048461914, 0.02053833, -0.0042152405, 0.05621338, -0.008743286, 0.017547607, -0.01713562, 0.015411377, 0.0024433136, -0.013313293, -0.0039711, -0.018661499, -0.037261963, -0.0045700073, -0.024169922, -0.030700684, 0.001748085, 0.026138306, 0.015365601, -0.012130737, -0.0019388199, 0.014312744, -0.03237915, 0.009140015, 0.0021381378, 0.0440979, -0.032226562, -0.00056505203, -0.040130615, -0.014022827, -0.02130127, 0.03640747, 0.005393982, 0.010940552, 0.034942627, -0.017684937, -0.016845703, -0.032470703, 0.019363403, 0.015625, -0.0046424866, -0.006919861, 0.04611206, -0.02017212, -0.066467285, -0.047851562, 0.033599854, -0.06896973, -0.018417358, -0.060638428, 0.03564453, 0.021316528, 0.0058403015, 0.061676025, 0.06915283, 0.013076782, 0.016906738, 0.0041542053, -0.045684814, -0.007911682, 0.022872925, 0.013626099, -0.024963379, -0.047027588, 0.03555298, 0.03817749, 0.04284668, 0.015342712, 0.06762695, -0.053894043, 0.03994751, -0.022613525, 0.019577026, -0.004142761, -0.0020141602, 0.026306152, 0.009315491, -0.03375244, 0.044952393, 0.009666443, 0.020248413, 0.016296387, -0.006916046, 0.034820557, -0.0211792, -0.033111572, -0.041870117, -0.021362305, 0.0309906, 0.013595581, -0.024749756, -0.018035889, -0.01626587, 0.001121521, -0.02519226, -0.00075769424, -0.0047721863, 0.0017051697, 0.0110321045, 0.037872314, -0.016189575, -0.017471313, -0.014060974, -0.06951904, -0.03503418, 0.01285553, -0.0020122528, -0.02217102, -0.032470703, -0.021896362, 0.016235352, -0.026763916, -0.045776367, -0.046905518, -0.01789856, 0.00856781, 0.022216797, -0.006668091, 0.024795532, 0.0021820068, 0.012420654, -0.053375244, 0.00067329407, 0.044555664, -0.013008118, -0.058746338, 0.028366089, 0.033325195, 0.014823914, -0.009239197, -0.07281494, -0.05279541, 0.051696777, 0.020111084, -0.019546509, 0.046722412, -0.017028809, 0.0068511963, 0.02267456, -0.014144897, -0.030975342, 0.030532837, 0.055786133, -0.0018882751, 0.015281677]}, "B08TRF6CMF": {"id": "B08TRF6CMF", "original": "Brand: samdew\nName: samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only\nDescription: 20lb Propane Tank Gas Cover\nFeatures: \u3010Fit Well\u3011: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better.\n\u3010Outside Storage Pocket\u3011: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage.\n\u3010Humanized Design\u3011: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow.\n\u3010Stable Tabletop Feature\u3011: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank.\n\u3010Protect Your Tank\u3011: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.\n", "metadata": {"Name": "samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only", "Brand": "samdew", "Description": "20lb Propane Tank Gas Cover", "Features": "\u3010Fit Well\u3011: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better.\n\u3010Outside Storage Pocket\u3011: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage.\n\u3010Humanized Design\u3011: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow.\n\u3010Stable Tabletop Feature\u3011: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank.\n\u3010Protect Your Tank\u3011: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.011367798, -0.024505615, 0.023391724, -0.027816772, -0.030853271, 0.032318115, -0.017211914, 0.009498596, -0.028579712, -0.011138916, -0.010932922, 0.008003235, -0.06628418, -0.022628784, 0.005367279, -0.06048584, 0.0154800415, -0.029800415, -0.03265381, -0.025390625, -0.013397217, -0.028869629, 0.017456055, 0.010696411, 0.026947021, -0.015182495, 0.014526367, 0.0025310516, 0.016571045, -0.008422852, 0.020462036, -0.010627747, 0.027694702, 0.031097412, -0.020828247, 0.020904541, 0.0074539185, -0.00705719, 0.00472641, 0.019195557, 0.003528595, 0.004573822, 0.05935669, 0.008895874, 0.01651001, -0.044891357, 0.023132324, -0.04144287, 0.0005235672, 0.050720215, 0.004924774, 0.031951904, -0.00021982193, -0.028182983, 0.006374359, 0.0034942627, 0.004837036, -0.012374878, 0.017288208, -0.0082092285, 0.0054473877, 0.020126343, 0.017105103, 0.011795044, -0.039367676, 0.036987305, 0.07928467, -0.022872925, -0.009490967, -0.026397705, -0.010269165, 0.0060691833, 0.0060195923, -0.02961731, -0.06854248, -0.02281189, -0.0023117065, -0.058898926, 0.015029907, -0.004486084, -0.03466797, -0.022521973, 0.040496826, -0.0069847107, -0.011383057, 0.012313843, -0.022094727, -0.010375977, 0.013145447, 0.00011360645, -0.0047798157, 0.021896362, 0.048309326, 0.019241333, -0.043670654, -0.011962891, -0.053100586, -0.05831909, 0.0413208, 0.024536133, -0.0013484955, -0.032470703, 0.012191772, -0.0008997917, -0.024459839, 0.028747559, -0.00033950806, 0.015914917, 0.01133728, 0.023498535, -0.019561768, 0.008529663, -0.017211914, -0.04336548, -0.012382507, 0.02784729, -0.030715942, 0.03173828, 0.0137786865, 0.019302368, -0.003194809, -0.009414673, 0.008369446, -0.026901245, 0.0055732727, -0.013748169, -0.03475952, 0.015670776, -0.003276825, 0.03375244, -0.0072517395, -0.018096924, 0.0178833, 0.048339844, 0.02243042, -0.0024166107, 0.0075035095, 0.009521484, -0.0015411377, 0.025665283, -0.03060913, -0.029296875, 0.04046631, -0.0066223145, -0.03604126, 0.048797607, 0.015235901, -0.010818481, -0.012252808, -0.0546875, -0.029571533, -0.032073975, 0.03878784, -0.020629883, -0.046813965, -0.024810791, -0.02960205, -0.013916016, -0.034301758, -0.041748047, 0.005180359, -0.013267517, -0.018447876, 0.04562378, 0.045806885, 0.026733398, 0.0061912537, 0.018371582, 0.010391235, 0.043884277, -0.021713257, 0.039642334, 0.0052108765, 0.0129776, 0.0056381226, -0.009979248, -0.0072898865, 0.070617676, 0.07989502, -0.10107422, -0.0647583, -0.049621582, 0.14440918, -0.04498291, 0.020629883, -0.050079346, 0.022323608, -0.035186768, -0.0027980804, 0.006389618, 0.028961182, 0.03262329, -0.03289795, 0.017913818, -0.00699234, 0.017578125, -0.027008057, 0.029006958, -0.023284912, -0.025939941, -0.059265137, 0.000998497, 0.022064209, 0.00806427, 0.05343628, -0.043670654, 0.01876831, 0.015014648, -0.021621704, 0.0362854, 0.002122879, 0.0076141357, 0.011253357, -0.045684814, 0.015838623, 0.027175903, 0.010925293, 0.030227661, -0.0034103394, 0.010643005, 0.0234375, -0.045715332, 0.010269165, 0.02798462, -0.006504059, -0.008720398, -0.015975952, -0.017593384, 0.008117676, -0.007583618, 0.043884277, 0.026382446, 0.054656982, 0.019577026, -0.030029297, 0.025115967, 0.02571106, -0.016616821, -0.013908386, 0.0289917, 0.024368286, -0.051940918, -0.004131317, 0.031311035, -0.00217247, -0.019210815, 0.010643005, 0.008644104, -0.024917603, 0.02520752, 0.080566406, 0.008575439, -0.014465332, 0.019073486, -0.009559631, 0.0006170273, -0.04574585, 0.0055503845, 0.0044670105, 0.0143585205, -0.013313293, 0.07598877, 0.06640625, 0.0014505386, 0.01600647, 0.01953125, 0.045776367, 0.044921875, -0.0043258667, -0.014022827, -0.0066337585, 0.025360107, 0.0065345764, 0.03326416, -0.041015625, 0.014312744, -0.039886475, 0.0038928986, 0.022079468, 0.018203735, 0.004470825, -0.011009216, 0.011077881, 0.0015850067, 0.04083252, -0.016342163, 0.021530151, 0.021606445, -0.02128601, 0.005908966, 0.02279663, 0.0236969, 0.014846802, -0.0033493042, 0.0018386841, 0.00060749054, 0.004512787, -0.0038909912, 0.024383545, -0.010536194, 0.0066337585, 0.027252197, -0.024642944, 0.013549805, 0.0070228577, 0.010398865, -0.016448975, 0.044158936, 0.038024902, -0.004814148, -0.013679504, 0.004047394, -0.005012512, 0.051330566, -0.008476257, -0.010757446, -0.0038375854, 0.042755127, 0.06750488, 0.07525635, 0.012809753, -0.0003633499, -0.014961243, -0.011024475, -0.007472992, -0.008972168, -0.017196655, -0.0039749146, -0.06201172, -0.027328491, -0.006916046, -0.078186035, -0.010536194, 0.03668213, -0.0017776489, 0.0064315796, 0.018127441, 0.060150146, 0.040008545, -0.025665283, 0.06506348, 0.008277893, -0.008560181, 0.05117798, -0.021728516, -0.06604004, 0.0345459, 0.000647068, -0.010734558, -0.025314331, 0.041046143, -0.018615723, -0.016738892, -0.063964844, -0.020217896, 0.04272461, -0.006416321, -0.07067871, 0.013717651, -0.08203125, 0.017578125, -0.030303955, -0.05734253, -0.07611084, 0.05026245, 0.010757446, -0.059173584, -0.041290283, 0.018661499, 0.02218628, 0.008895874, 0.045196533, -0.077697754, -0.03164673, -0.026565552, -0.017028809, -0.0031871796, -0.06549072, -0.0059127808, -0.010353088, -0.030319214, 0.030883789, -0.034332275, 0.07763672, -0.0024089813, 0.022109985, 0.069885254, 0.061553955, 0.039123535, -0.032196045, 0.030685425, 0.07006836, 0.034484863, -0.009002686, 0.0043411255, -0.017410278, 0.0006842613, 0.02772522, -0.042816162, -0.011665344, -0.051757812, 0.03463745, 0.012489319, -0.0028648376, -0.035247803, -0.057250977, -0.05419922, -0.029449463, 0.037261963, 0.015914917, 0.0014810562, -0.0059165955, 0.0003490448, -0.014060974, -0.030258179, 0.01550293, -0.016662598, -0.0051116943, -0.038879395, 0.023162842, 0.03173828, -0.03765869, 0.026779175, 0.03137207, 0.015731812, -0.018951416, -0.0025596619, -0.0102005005, -0.022979736, 0.009971619, -0.00022602081, -0.016098022, -0.02784729, -0.0016126633, -0.016693115, -0.0042152405, -0.0009775162, -0.04598999, 0.03048706, -0.026351929, 0.003484726, -0.02079773, -0.01701355, 0.041778564, -0.04272461, 0.014350891, -0.039764404, -0.006401062, -0.0031700134, -0.0046310425, -0.014694214, 0.025375366, 0.00024461746, 0.004776001, -0.014434814, 0.0044898987, -0.024795532, 0.0026931763, -0.015960693, -0.023361206, -0.048095703, -0.018310547, 0.037353516, -0.05734253, -0.01953125, -0.034851074, 0.042297363, 0.0028514862, -0.007843018, -0.00038194656, -0.03289795, 0.050354004, 0.011154175, -0.0024528503, 0.001121521, -0.009674072, 0.0062675476, -0.0043296814, 0.010383606, -0.006767273, -0.07623291, 0.013191223, -0.04849243, 0.09942627, 0.03692627, -0.021072388, 0.113464355, 0.072265625, -0.013458252, -0.0026474, 0.01953125, 0.0003566742, 0.0040893555, 0.030776978, -0.018127441, -0.035003662, -0.006313324, 0.01651001, -0.0070533752, -0.033477783, 0.0016450882, -0.005973816, 0.017211914, 0.01209259, -0.012512207, -0.015945435, -0.014030457, -0.02935791, 0.00894928, -0.01285553, -0.036102295, -0.034088135, 0.041381836, -0.0062713623, -0.0050621033, 0.022979736, -0.036224365, -0.0025024414, -0.01737976, -0.006904602, -0.037872314, 0.00484848, 0.0011320114, 0.049926758, 0.0027885437, -0.03189087, 0.0051574707, 0.02279663, -0.033569336, 0.023223877, 0.001701355, 0.0066947937, -0.035217285, -0.039916992, 0.054382324, 0.002620697, -0.023513794, 0.035064697, -0.019760132, -0.105529785, 0.014274597, 0.07086182, -0.010177612, -0.053100586, -0.00472641, -0.04135132, -0.019363403, 0.01348114, -0.01411438, -0.0087509155, -0.006778717, -0.0073890686, -0.02684021, 0.0035820007, -0.005947113, -0.013023376, -0.053863525, 0.011001587, -0.012275696, 0.022338867, -0.009643555, 0.027282715, -0.056121826, 0.008956909, -0.018096924, 0.015945435, -0.016296387, -0.027130127, 0.024383545, -0.040039062, 0.012191772, -0.0044174194, 0.01789856, 0.0005941391, 0.006866455, -0.0059318542, -0.006538391, -0.020629883, 0.012062073, 0.023529053, -0.012199402, 0.06414795, 0.026550293, 0.019485474, -0.06665039, -0.025268555, 0.012077332, -0.041229248, -0.06854248, -0.029693604, 0.09063721, -0.0026855469, -0.018341064, -0.019760132, 0.027389526, 0.047821045, -0.03567505, -0.0579834, 0.0032043457, 0.0093307495, -0.036254883, -0.022857666, -0.009925842, -0.026184082, 0.07147217, 0.0045051575, -0.017684937, -0.049468994, 0.012138367, -0.01751709, -0.039642334, -0.005710602, -0.0060691833, 0.033447266, -0.0024261475, -0.02684021, -0.097595215, 0.08496094, 0.06500244, 0.03262329, 0.0040626526, -0.003446579, -0.009284973, -0.08129883, -0.0715332, 0.009979248, 0.06829834, 0.043884277, -0.016296387, 0.0032901764, 0.028015137, -0.017684937, -0.05883789, -0.0135650635, -0.017440796, 0.020935059, -0.036346436, -0.009719849, -0.002243042, -0.026428223, 0.028137207, -0.008850098, -0.022125244, -0.045196533, -0.031982422, -0.039886475, -0.025817871, 0.008636475, -0.042053223, -0.009544373, 0.00079250336, 0.017501831, -0.026779175, 0.03756714, 0.002084732, 0.016036987, -0.028625488, 0.017303467, -0.029586792, -0.010292053, -0.045562744, -0.008262634, 0.024673462, -0.002904892, 0.00075244904, -0.00050115585, 0.00223732, 0.027755737, -0.03439331, 0.04928589, -0.007858276, 0.0012083054, 0.029052734, 0.03366089, 0.01689148, -0.11810303, 0.08129883, -0.010627747, -0.051116943, -0.062042236, 0.01235199, -0.017959595, -0.048675537, 0.03781128, -0.015052795, 0.04458618, -0.032073975, -0.008796692, 0.0135269165, 0.04309082, -0.018875122, 0.010948181, 0.028671265, -0.023223877, -0.07501221, 0.009475708, -0.03744507, 0.032043457, -0.01889038, 0.011642456, 0.0016107559, -0.0018787384, 0.0012311935, -0.033813477, 0.011627197, 0.00015103817, -0.054718018, -0.046783447, -0.010803223, 0.012496948, -0.034301758, -0.010879517, -0.01713562, -0.0004644394, -0.029266357, -0.016311646, -0.004032135, 0.031158447, 0.012184143, 0.021133423, -0.04660034, -0.037841797, -0.020004272, -0.0019140244, 0.020828247, -0.041900635, -0.04437256, -0.051696777, -0.020751953, -0.01436615, 0.010261536, 0.020095825, 0.07897949, -0.040527344, -0.05609131, -0.05633545, 0.02406311, -0.023895264, -0.038970947, 0.040222168, 0.028198242, 0.0029716492, 0.021743774, 0.011871338, -0.0435791, 0.005519867, 0.0036354065, -0.035461426, -0.051452637, -0.029403687, 0.006958008, -0.018341064, 0.024963379, 0.0014848709, 0.040924072, -0.014007568, -0.021911621, -0.03793335, 0.02720642, -0.018920898, -0.009681702, 0.013183594, -0.035705566, -0.0040740967, -0.033996582, -0.030593872, -0.039123535, -0.04525757, -0.026107788, 0.026550293, 0.034332275, 0.025390625, -0.0044822693, -0.012878418, -0.052856445, 0.015808105, 0.010559082, -0.055999756, 0.028076172, 0.023269653, 0.012664795, 0.021743774, 0.006008148, 0.003850937, -0.0034732819, -0.011947632, 0.03918457, -0.011734009, -0.029937744, -0.023468018, 0.049316406, 0.0317688, -0.020202637, -0.05444336, -0.005962372, -0.009277344, -0.057617188, -0.025924683, 0.015586853, -0.021331787, 0.037475586, -0.024139404, -0.0028858185, -0.0039749146, -0.020858765, -0.00037169456, -0.026107788, 0.04284668, -0.03012085, 0.021240234, 0.015487671, -0.0058555603, 0.023086548, 0.0054969788, 0.007534027, -0.001285553, -0.006778717, -7.760525e-05, -0.022125244, -0.059051514, 0.022842407, 0.03062439, -0.029251099, 0.022949219, -0.014472961, 0.009681702, 0.02998352, -0.0597229, 0.006401062, 0.006046295, -0.009971619, -0.0010662079, -0.010238647, -0.008865356, -0.011047363, 0.030685425, 0.027297974, 0.028656006, -0.010375977, 0.04876709, -0.0154418945, -0.019485474, -0.022583008, -0.012008667, 0.013397217, -0.0069389343, -0.020309448, 0.00056934357, -0.002073288, 0.015571594, 0.028305054, -0.010314941, 0.0152282715, -0.03817749, 0.024475098, -0.00055503845, -0.01902771, -0.054504395, -0.022827148, -0.015007019, -0.024398804, -0.005592346, -0.04727173, -0.0010890961, 0.031021118, -0.012161255, -0.04824829, 0.022323608, -0.05706787, 0.017715454, 0.014389038, 0.02444458, -0.02861023, -0.0063209534, -0.010543823, -0.0017089844, 0.0012769699, 0.03829956, 0.0044021606, 0.035491943, -0.04171753, -5.1379204e-05, 0.018936157, -0.043914795, 0.01739502, -0.017669678, 0.0075302124, 0.028396606, -0.024810791, -0.0044555664, -0.026306152, -0.02935791, 0.0075645447, -0.017196655, -0.012161255, 0.025024414, -0.017532349, 0.0024986267, -0.029907227, 0.01651001, -0.004009247, -0.019592285, -0.0209198, -0.008384705, 0.03265381, -0.05090332, -0.066467285, -0.03451538, -0.06933594, -0.05291748, 0.09698486, -0.028686523, -0.012969971, -0.032989502, 0.015655518, 0.023239136, -0.019332886, -0.024765015, 0.024154663, 0.025939941, -0.014709473, 0.0473938, -0.041748047, -0.010673523, -0.044647217, -0.016235352, -0.04824829, -0.0057525635, -0.051086426, 0.024307251, 0.0054473877, -0.024765015, -0.00095796585, 0.037994385, 0.0069503784, -0.011421204, 0.031219482, -0.055114746, -0.027145386, 0.055267334, 0.030715942, -0.014457703, -0.039611816, -0.0031223297, -0.0072669983, -0.020629883, 0.00018024445, 0.011764526, -0.08148193, 0.0027980804, -0.022064209, -0.03552246, -0.0034828186, -0.014579773, 0.015487671, 0.013008118, -0.01789856, -0.010116577, 0.023925781, -0.018508911, 0.026138306, 0.011749268, 0.009590149, -0.010803223, -0.034362793, -0.036499023, -0.018234253, 0.011482239, 0.011795044, -0.04977417, -0.015380859, 0.038513184, -0.012763977, -0.011642456, 0.04324341, 0.04736328, -0.0059890747, -0.017105103, -0.0019083023, -0.039520264, 0.0037288666, 0.0023117065, -0.011680603, -0.012245178, 0.031921387, 0.023712158, -0.038513184, -0.011657715, -0.018630981, -0.007419586, -0.020568848, -0.051696777, -0.06427002, -0.032073975, -0.001750946, 0.016067505, -0.025512695, -0.011627197, 0.0013933182, 0.028244019, -0.015014648, 0.011230469, 0.0027389526, 0.011390686, 0.02229309, 0.062561035, 0.027740479, 0.055603027, -0.010307312, -0.066467285, -0.02255249, 0.01876831, 0.02571106, -0.03363037, 0.067993164, -0.059051514, 0.01083374, 0.017562866, -0.01637268, -0.011955261, 0.019821167, 0.089904785, -0.0009741783, 0.02470398]}, "B078RGBKN7": {"id": "B078RGBKN7", "original": "Brand: SHINESTAR\nName: SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included\nDescription: Get it, you can control the temperature of your appliance exactly what you want

      Description
      0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
      This is an essential part of converting your fire pit/table to a larger flame
      Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
      Comes with a brass orifice connector, 3/8\" Flare M x 1/8\" MNPT
      SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

      Feature
      Length: 5 feet/ 60inch
      Hose Connection: QCC1/Type1 x 3/8'' female flare fitting
      Outlet Outside Diameter: 5/8\"-18 UNF
      Orifice Fitting Connector: 3/8\" Flare M x 1/8\" MNPT Pipe Fitting
      Gas Flow: 120,000BTU/Hr
      Material: Durable rubber hose and solid brass fitting
      Warm Tips
      - In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
      - Please double check your propane appliance/adapter connection is 3/8\" Male flare fitting

      Note: For Outdoor Use Only.
      \nFeatures: \u3010Adjustable\u3011 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need\n\u3010Multi Purpose\u3011 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Well Made\u3011 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security\n\u3010Standard Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Extra Bonus\u3011 Comes with a brass orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "metadata": {"Name": "SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included", "Brand": "SHINESTAR", "Description": "Get it, you can control the temperature of your appliance exactly what you want

      Description
      0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
      This is an essential part of converting your fire pit/table to a larger flame
      Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
      Comes with a brass orifice connector, 3/8\" Flare M x 1/8\" MNPT
      SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

      Feature
      Length: 5 feet/ 60inch
      Hose Connection: QCC1/Type1 x 3/8'' female flare fitting
      Outlet Outside Diameter: 5/8\"-18 UNF
      Orifice Fitting Connector: 3/8\" Flare M x 1/8\" MNPT Pipe Fitting
      Gas Flow: 120,000BTU/Hr
      Material: Durable rubber hose and solid brass fitting
      Warm Tips
      - In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
      - Please double check your propane appliance/adapter connection is 3/8\" Male flare fitting

      Note: For Outdoor Use Only.
      ", "Features": "\u3010Adjustable\u3011 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need\n\u3010Multi Purpose\u3011 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Well Made\u3011 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security\n\u3010Standard Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Extra Bonus\u3011 Comes with a brass orifice connector with 3/8\" Flare M x 1/8\" MNPT", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.002023697, -0.0010681152, -0.053131104, -0.043670654, 0.0046157837, -0.013931274, -0.010643005, 0.009384155, 0.023651123, 0.005908966, -0.057434082, -0.013427734, 0.029891968, -0.02267456, 0.0063552856, -0.042785645, 0.02192688, 0.010177612, 0.017501831, -0.01802063, 0.011329651, -0.0032463074, -0.01084137, 0.06921387, 0.032043457, -0.02293396, 0.022949219, 0.024246216, 0.012512207, 0.00434494, 0.030700684, -0.030670166, 0.038909912, 0.016555786, -0.057159424, -0.042419434, -0.023788452, -0.0049095154, -0.036315918, 0.012557983, 0.013961792, -0.012001038, -0.021453857, 0.017654419, -0.007171631, -0.068115234, 0.02986145, -0.059631348, 0.046661377, -0.024719238, -0.007205963, 0.030044556, 0.010620117, -0.051635742, -0.028366089, -0.047546387, -0.03869629, 0.020858765, 0.009506226, 0.047424316, 0.007850647, 0.006351471, -0.00041985512, -0.01285553, -0.014228821, -0.0033817291, 0.10406494, -0.0031986237, 0.0045051575, -0.019454956, 0.00907135, 0.04019165, 0.008888245, -0.008132935, -0.06750488, -0.0066375732, 0.011810303, -0.028793335, 0.016921997, -0.016479492, 0.0013151169, -0.05606079, 0.048553467, 0.003522873, 0.01676941, 0.04248047, -0.014015198, -0.013504028, -0.058166504, -0.045532227, -0.025161743, 0.0057640076, -0.07489014, -0.00730896, -0.017822266, -0.013412476, -0.03363037, -0.106933594, 0.03768921, 0.0034637451, 0.05218506, -0.048461914, 0.04309082, 0.028320312, 0.0031909943, 0.08001709, -0.0032482147, -0.0012521744, 0.00894928, 0.0026664734, 0.0050849915, -0.025772095, -0.0046806335, -0.024520874, -0.031585693, 0.02178955, 0.0058288574, -0.037017822, 0.008285522, -0.051605225, -0.012420654, 0.004863739, 0.03845215, -0.06726074, -0.0077209473, -0.032440186, -0.045135498, -0.006160736, -0.041168213, 0.01751709, -0.0016031265, -0.011375427, 0.072753906, 0.1015625, 0.037200928, -0.005958557, 0.016799927, 0.04714966, 0.017501831, -0.009971619, -0.004184723, -0.02331543, -0.014587402, 0.024627686, 0.02619934, 0.031463623, 0.025527954, -0.006462097, 0.009422302, -0.029510498, -0.00944519, -0.012207031, 0.029296875, 0.03149414, -0.06222534, 0.03390503, -0.010398865, 0.014137268, -0.03036499, -0.021850586, -0.019073486, -0.031799316, -0.029037476, -0.005050659, -0.03768921, 0.046661377, 0.04324341, -0.0013904572, 0.017562866, 0.05795288, -0.0036907196, 0.05117798, 0.015792847, 0.022842407, 0.006099701, -0.019058228, -0.035186768, 0.082336426, 0.078552246, -0.15783691, -0.07373047, -0.059753418, 0.15185547, -0.045440674, 0.031951904, -0.03945923, 0.02897644, -0.032104492, -0.02331543, 0.027648926, 0.0049705505, 0.02520752, 0.010498047, -0.037109375, 0.009857178, 0.0009279251, -0.015151978, 0.0016384125, -0.0043258667, 0.0020923615, -0.0836792, 0.0317688, -0.020446777, 0.024459839, 0.043548584, -0.00299263, 0.0022697449, 0.04095459, 0.04144287, 0.0016717911, -0.011131287, -0.030029297, 0.0029792786, -0.005252838, -0.039489746, 0.010444641, 0.013221741, -0.010604858, -0.0026893616, -0.04647827, 0.049957275, -0.0007443428, 0.034820557, 0.08807373, 0.015289307, -0.012313843, 0.0029678345, 0.008201599, 0.046081543, -0.0036087036, 0.039916992, 0.014266968, 0.05731201, 0.025878906, -0.037078857, 0.035369873, 0.062805176, 0.04827881, -0.039398193, -0.002708435, 0.017944336, -0.07305908, -0.04827881, -0.022232056, 0.001783371, -0.05239868, -0.023208618, 0.00983429, -0.03265381, 0.016921997, 0.034942627, 0.00844574, 0.011894226, 0.0037021637, -0.02671814, 0.017608643, -0.016799927, 0.019866943, -0.042938232, 0.033233643, -0.0152282715, 0.03982544, 0.03414917, -0.017105103, 0.052856445, -0.0026226044, 0.05130005, 0.025283813, -0.013145447, -0.0059051514, -0.0013628006, 0.008644104, -0.010215759, -0.019683838, -0.050476074, 0.0012817383, -0.014045715, 0.043029785, -0.04309082, -0.03414917, 0.016845703, -0.002954483, -0.0030174255, 2.8669834e-05, 0.040374756, 0.024246216, 0.017669678, 0.02508545, 0.04647827, 0.01449585, 0.05987549, -0.037872314, -0.03704834, 0.029876709, -0.027450562, -0.049865723, 0.023147583, -0.014030457, 0.015419006, -0.018035889, 0.034454346, 0.05618286, -0.022033691, 0.03225708, 0.012672424, -0.03717041, 0.014122009, 0.021072388, 0.00819397, -0.013687134, -0.026229858, 0.037506104, 0.020050049, -0.04220581, 0.06072998, 0.030471802, 0.0064468384, 0.03262329, 0.014816284, 0.03604126, -0.016418457, 0.021240234, 0.0046424866, 0.008453369, 0.03186035, -0.014595032, -0.0042037964, -0.003993988, -0.0670166, 0.03793335, 0.027145386, 0.00957489, 0.017959595, 0.038146973, 0.00944519, 0.0141067505, -0.010650635, 0.026931763, -0.01550293, -0.0038089752, -0.015655518, -0.027648926, 0.0037460327, -0.03756714, -0.06585693, -0.010910034, 0.043151855, 0.0067710876, 0.0014915466, -0.018707275, 0.03668213, -0.022842407, -0.009025574, -0.010147095, -0.009849548, 0.015670776, 0.011062622, -0.023651123, -0.011474609, -0.05895996, 0.0011940002, -0.05770874, -0.06677246, -0.02758789, 0.06719971, 0.0102005005, -0.04547119, -0.021347046, -0.011154175, -0.004207611, 0.03817749, -0.04812622, 0.0029354095, -0.023666382, -0.013717651, -0.012939453, 0.04473877, -0.014228821, 0.016418457, 0.03463745, 0.0030059814, 0.011245728, -0.0059509277, 0.0048942566, 0.01612854, 0.033843994, 0.07678223, 0.017318726, 0.02003479, -0.04446411, -0.006374359, 0.025482178, -0.020904541, -0.016067505, -0.004753113, -0.003156662, 0.005191803, 0.009651184, -0.023040771, -0.01574707, -0.04562378, 0.020141602, -0.026473999, 0.016464233, -0.016540527, -0.09320068, -0.017425537, -0.06390381, 0.01965332, 0.008666992, -0.032562256, 0.031219482, -0.04345703, 0.019821167, -0.033294678, 0.0041999817, -0.049987793, -0.0010938644, -0.044006348, 0.035064697, 0.0592041, -0.08673096, 0.02609253, 0.043029785, -0.026794434, -0.018829346, -9.000301e-05, 0.019500732, -0.010627747, 0.02848816, -0.015098572, -0.013320923, -0.036712646, -0.0143585205, -0.01461792, 0.011878967, 0.02355957, -0.026733398, 0.04171753, -0.022140503, -0.09320068, -0.048950195, -0.0015525818, 0.010604858, -0.02758789, -0.002040863, -0.048553467, -0.05441284, 0.007205963, -0.059326172, 0.022109985, 0.0024147034, 0.041625977, 0.0236969, -0.0055999756, 0.11151123, -0.008422852, 0.03302002, 0.034210205, 0.0012350082, -0.004711151, -0.021697998, 0.035858154, 0.005924225, -0.013580322, -0.031921387, 0.027664185, 0.0032901764, 0.001745224, -0.0068092346, -0.011772156, 0.048797607, 0.00579834, -0.0059280396, 0.0037345886, 0.014465332, 0.010345459, -0.027023315, 0.035308838, 0.0010499954, -0.020523071, 0.012168884, -0.068603516, 0.070129395, 0.03543091, -0.011421204, 0.009666443, 0.0005426407, -0.0015869141, 0.0129852295, 0.03741455, 0.0009937286, 0.020889282, 0.011543274, -0.009437561, -0.021438599, 0.0070495605, -0.044158936, 0.023635864, 0.011047363, -0.028381348, 0.008125305, 0.00016903877, -0.042175293, -0.0256958, 0.014480591, 0.019805908, 0.020584106, 0.0012397766, -0.019958496, -0.016143799, -0.02027893, 0.0026340485, 0.025497437, -0.023376465, -0.020904541, 0.013877869, -0.00894928, -0.021011353, 0.0044937134, -0.0098724365, -0.021484375, 0.0039596558, 0.045898438, 0.0069351196, 0.01675415, -0.04232788, 0.0110321045, -0.01828003, 0.015838623, 0.010131836, 0.012786865, -0.01058197, -0.02961731, 0.028457642, -0.0126571655, -0.026107788, 0.0345459, 0.019607544, -0.045043945, -0.035308838, -0.025299072, -0.007118225, -0.016494751, -0.0085372925, -0.062164307, -0.010894775, -0.002696991, -0.022705078, -0.0118255615, 0.019454956, 0.025894165, -0.038085938, -0.0211792, -0.035369873, 0.0116119385, -0.0418396, -0.008796692, -0.00027036667, 0.022506714, -0.008239746, 0.018798828, -0.068603516, 0.019088745, -0.064331055, -0.014022827, 0.065979004, 0.024642944, -0.0018806458, -0.0029621124, -0.011375427, 0.012954712, 0.03491211, -0.049621582, 0.003501892, -0.05960083, -0.009216309, 0.017150879, 0.033569336, 0.051208496, -0.0053520203, -0.003030777, -0.0289917, -0.03439331, -0.084106445, 0.023132324, 0.041900635, -0.040893555, -0.038238525, 0.0046463013, 0.07800293, -0.0017967224, 0.017288208, 0.019546509, 0.011474609, 0.01007843, -0.039093018, -0.08654785, 0.0056381226, -0.00409317, -0.021148682, 0.017715454, 0.0019931793, -0.016281128, 0.06878662, 0.06512451, 0.020233154, 0.012588501, -0.017349243, -0.0032482147, -0.0046043396, -0.005168915, -0.008865356, 0.017929077, -0.023422241, 0.009780884, -0.035308838, 0.037994385, 0.009796143, -0.015457153, -0.0075302124, -0.014144897, -0.005004883, -0.04840088, -0.014564514, -0.0051574707, 0.06921387, -0.0036754608, -0.042022705, 0.014472961, -0.029220581, -0.005996704, -0.0129470825, 0.04714966, -0.003047943, -0.06604004, -0.027694702, -0.05178833, -0.015174866, 0.010505676, -0.0021686554, 0.0026817322, -0.036193848, 0.038146973, 0.021499634, -0.011932373, 0.0040397644, -0.006576538, -0.003742218, -0.009529114, 0.020858765, 0.00674057, -0.0059127808, -0.015640259, -0.010147095, -0.00070858, 0.013153076, 0.025283813, -0.003622055, -0.006439209, -0.020050049, 0.005290985, -0.016662598, -0.032562256, 0.022567749, -0.015975952, 0.020736694, 0.035308838, -0.026412964, 0.0357666, 0.0038986206, 0.00969696, -0.010620117, -0.0061035156, -0.008911133, -0.008201599, 0.072021484, 0.0052261353, 0.016937256, -0.055786133, 0.0031166077, -0.043670654, 0.0028839111, 0.046844482, -0.040100098, 0.012680054, -0.022857666, -0.0074806213, 0.026657104, -0.012374878, -0.042388916, -0.019180298, 0.009719849, -0.045440674, -0.019226074, 0.02784729, -0.018920898, 0.039611816, -0.011375427, -0.018035889, 0.040374756, 0.023666382, -0.060455322, -0.022369385, -0.023544312, 0.018508911, -0.014953613, -0.011734009, 0.011146545, 0.022415161, -0.0093307495, -0.02168274, 0.014183044, 0.010238647, -0.033721924, -0.023345947, -0.0011253357, -0.0060424805, -0.022064209, 0.044769287, -0.018951416, -0.0413208, -0.009010315, 0.037963867, 0.01928711, -0.002544403, -0.044067383, 0.013092041, -0.0028133392, -0.0064353943, 0.010009766, -0.028717041, 0.07849121, -0.020050049, -0.06097412, -0.021102905, 0.03353882, -0.036499023, -0.03463745, 0.059051514, 0.062683105, -0.0013608932, 0.017120361, 0.0065460205, -0.027542114, 0.009307861, 0.0048103333, -0.03918457, -0.0579834, -0.029464722, -0.03390503, 0.019119263, -0.035736084, -0.016479492, 0.045684814, -0.0032634735, -0.0020637512, -0.036834717, -0.029083252, -0.0030822754, -0.031036377, -0.007297516, -0.01586914, 0.042419434, -0.015266418, 0.042999268, -0.064086914, -0.062194824, -0.007850647, 0.02609253, 0.024795532, 0.03366089, 0.019638062, 0.032684326, -0.07293701, -0.0010375977, 0.0044822693, -0.029266357, -0.0087890625, 0.021743774, -0.00021076202, 0.06048584, -0.017333984, -0.0039596558, 0.01991272, 0.011329651, -0.022354126, -0.013214111, -0.032165527, -0.051940918, -0.017868042, 0.052825928, 0.0015010834, 0.037628174, 0.011238098, -0.025924683, 0.0017642975, -0.016494751, -0.020858765, -0.03842163, 0.0054244995, -0.012924194, -0.04550171, -0.007331848, -0.038391113, 0.011444092, -0.023971558, 0.025177002, -0.0357666, 0.029785156, -0.007030487, -0.005432129, 0.028823853, -0.019973755, 0.018569946, -0.024108887, 0.012306213, -0.010803223, 0.0126953125, -0.03265381, 0.012367249, 0.049957275, 0.024230957, -0.019058228, -0.060272217, 0.030441284, 0.039642334, -0.057647705, -0.01084137, -0.0017633438, 0.007133484, -0.024841309, 0.016189575, 0.0033435822, 0.0021381378, 0.021469116, 0.042297363, 0.03475952, -0.02507019, 0.03894043, -0.006729126, 0.002609253, -0.025543213, 0.00390625, -0.030181885, 0.004333496, 0.009544373, -0.0005850792, -0.040283203, 0.030151367, 0.012939453, 0.017303467, 0.032318115, -0.03765869, 0.013755798, 0.0008234978, 0.0043182373, -0.027191162, -0.03543091, -0.019363403, 0.0043182373, 0.004722595, 0.03152466, 0.012260437, 0.008239746, -0.017089844, -0.003686905, 0.012687683, 0.005317688, -0.0043525696, 0.030532837, -0.0440979, -0.08117676, -0.066589355, -0.024780273, -0.050109863, -0.005836487, 0.016082764, -0.018096924, 0.029846191, 0.028167725, 0.0011043549, 0.06512451, 0.010597229, 0.017715454, -0.045928955, 0.010322571, 0.0284729, -0.0032424927, 0.001912117, -0.0054626465, -0.03756714, 0.005004883, -0.024642944, -0.030166626, 0.0003836155, 0.007484436, 0.0038795471, -0.015777588, -0.023986816, 0.015380859, -0.029281616, 0.0524292, -0.0418396, 0.0061149597, -0.03540039, -0.070495605, -0.01197052, -0.032043457, -0.03640747, 0.07824707, 0.019882202, -0.016647339, 0.012580872, -0.0037288666, -0.033355713, -0.02394104, -0.012649536, 0.022232056, -0.015838623, -0.010238647, 0.041625977, -0.021606445, -0.02279663, -0.054870605, 0.00724411, -0.055541992, -0.0042800903, -0.028625488, 0.024765015, 0.015853882, 0.005290985, 0.034484863, 0.008705139, 0.027374268, -0.0042800903, -0.018081665, -0.03427124, -0.0035972595, 0.01979065, 0.0019931793, -0.022659302, -0.057647705, 0.014976501, -0.0008955002, 0.023452759, 0.03604126, 0.0043678284, -0.023498535, 0.0015106201, -0.017990112, -0.02545166, -0.03439331, 0.014289856, 0.02519226, 0.044647217, -0.0016069412, 0.028244019, 0.029067993, -0.016662598, 0.04071045, 0.016189575, 0.018829346, -0.01423645, -0.043823242, -0.016342163, -0.014228821, 0.0043907166, 0.03665161, -0.026306152, 0.005710602, -0.0090789795, -0.03152466, -0.0018291473, -0.0048217773, -0.014389038, 0.038116455, 0.031066895, -0.01663208, 0.020141602, -0.04034424, -0.0018186569, -0.028060913, -0.00819397, -0.0069465637, 0.0023517609, -0.027801514, -0.04333496, -0.0028858185, 0.0017852783, -0.047973633, -0.010238647, -0.027389526, -0.0069351196, 0.028717041, 0.011016846, 0.02558899, -0.010665894, 0.013694763, -0.0050086975, -0.026885986, 0.012191772, 0.026107788, -0.0031642914, -0.01423645, 0.02406311, 0.01084137, 0.057617188, -0.029464722, -0.053863525, -0.040649414, 0.009613037, 0.002368927, 0.0006303787, 0.056427002, -0.024108887, -0.0050315857, 0.019760132, -0.022521973, -0.039886475, 0.004272461, 0.022583008, -0.00048351288, 0.011810303]}, "B07D9GZ43Y": {"id": "B07D9GZ43Y", "original": "Brand: SHINESTAR\nName: SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit\nDescription: ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your're trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves\nFeatures: \u3010Quick & Handy\u3011 Propane hose extension is designed for extending the propane line on gas appliances.\n\u3010Multi-Purpose\u3011 Works with RV, griddle, grill, stove, fire pit, heater and so on.\n\u3010Exclusive Material\u3011 Made from braided stainless steel and solid brass, rust-proof & leak-free.\n\u3010Perfect Length\u3011 6-foot long, more flexible to move grill anywhere you want.\n\u3010Brass Fittings\u3011 3/8 inch female flare fittings on both ends.\n", "metadata": {"Name": "SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit", "Brand": "SHINESTAR", "Description": "ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your're trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves", "Features": "\u3010Quick & Handy\u3011 Propane hose extension is designed for extending the propane line on gas appliances.\n\u3010Multi-Purpose\u3011 Works with RV, griddle, grill, stove, fire pit, heater and so on.\n\u3010Exclusive Material\u3011 Made from braided stainless steel and solid brass, rust-proof & leak-free.\n\u3010Perfect Length\u3011 6-foot long, more flexible to move grill anywhere you want.\n\u3010Brass Fittings\u3011 3/8 inch female flare fittings on both ends.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0062828064, -0.002840042, -0.074035645, -0.0340271, 0.017150879, -0.041748047, -0.0012722015, 0.033935547, -0.0014915466, 0.01676941, -0.031311035, 0.021820068, -0.0079422, -0.012359619, -0.0072021484, -0.041290283, 0.019897461, 0.028442383, 0.009414673, -0.01727295, 0.0016736984, -0.0007920265, -0.027053833, 0.068725586, -0.008796692, -0.0071105957, 0.079833984, -0.011039734, 0.01953125, 0.007045746, 0.017959595, -0.04562378, 0.027404785, 0.00045394897, -0.035125732, -0.08544922, -0.0017156601, -0.022476196, -0.02986145, 0.005672455, 0.010223389, -0.010047913, -0.02998352, 0.012413025, -0.014976501, -0.07019043, 0.033050537, -0.04135132, 0.00819397, -0.018371582, -0.003025055, 0.04498291, 0.00340271, -0.008705139, 0.005279541, 0.0040245056, -0.0075645447, 0.00031852722, 0.0059165955, 0.017044067, 0.007965088, 0.027877808, 0.007827759, 0.0046424866, -0.022644043, -0.020111084, 0.06976318, 0.0018815994, -0.022003174, -0.04647827, 0.034179688, 0.035827637, 0.0113220215, -0.026565552, -0.054229736, 0.012229919, 0.018753052, -0.011245728, 0.018081665, -0.01727295, -0.043121338, -0.054870605, 0.017166138, -0.006008148, -0.015975952, 0.01171875, -0.031097412, 0.013427734, -0.008285522, -0.058502197, -0.0055885315, 0.009124756, -0.046417236, 0.0045280457, -0.029129028, -0.025268555, -0.025772095, -0.07513428, 0.039764404, 0.012878418, 0.059509277, -0.056365967, 0.04714966, -0.008743286, 0.0025100708, 0.05593872, 0.0028934479, 0.01826477, 0.020111084, 0.0036525726, -0.0101623535, -0.007083893, 0.0027942657, 0.0010499954, -0.04348755, 0.0052604675, 0.00434494, -0.026000977, -0.00868988, -0.019943237, -0.042938232, -0.029403687, -0.0028762817, -0.0016794205, 0.014404297, -0.022842407, -0.018493652, 0.047332764, -0.031555176, 0.0077667236, 0.0017337799, -0.012802124, 0.036010742, 0.074035645, 0.019180298, -0.011398315, 0.0046844482, 0.02798462, 0.014732361, -0.02394104, 0.033325195, -0.018798828, -0.010520935, 0.028198242, -0.0016546249, 0.00258255, 0.030792236, 0.015426636, -0.0047798157, -0.020812988, 0.0038909912, 0.015823364, 0.021621704, 0.037994385, -0.06774902, 0.037841797, -0.006046295, 0.010795593, -0.03503418, -0.037506104, -0.048431396, -0.017425537, 0.032592773, -0.0037574768, -0.02571106, 0.042144775, 0.0011425018, -0.011123657, 0.01058197, 0.08123779, -0.00944519, 0.05758667, 0.0019702911, 0.0021152496, -0.014183044, -0.05404663, -0.034698486, 0.09106445, 0.070251465, -0.14001465, -0.066345215, -0.0657959, 0.15673828, -0.050750732, -0.022384644, -0.03543091, 0.016448975, -0.02558899, 0.01651001, 0.0030994415, 0.052581787, 0.02609253, -0.00762558, -0.039916992, 0.029327393, 0.03878784, -0.03668213, 0.022262573, 0.0001078248, -0.039367676, -0.038208008, 0.009757996, -0.005050659, 0.004711151, 0.04711914, -0.0143585205, 0.0054397583, 0.029037476, 0.027038574, 0.018615723, -0.0035152435, -0.027130127, 0.00447464, -0.017990112, -0.028686523, -0.01828003, -0.015640259, -0.010063171, 0.01550293, -0.0463562, 0.079833984, -0.004501343, 0.056365967, 0.043792725, -0.027694702, 0.00035595894, -0.01977539, 0.022262573, -0.023956299, 0.0262146, 0.008125305, 0.014320374, 0.07086182, 0.020706177, -0.033203125, 0.034973145, 0.05834961, 0.0670166, -0.03567505, -0.0021305084, -0.0014104843, -0.04534912, -0.06121826, -0.0052490234, -0.021453857, -0.047790527, -0.022109985, 0.027328491, -0.04849243, 0.035736084, 0.028686523, 0.036621094, -0.007926941, 0.026260376, -0.0619812, 0.027740479, -0.0015096664, -0.0077590942, -0.0357666, 0.043426514, -0.004989624, 0.0317688, 0.0028305054, -0.00737381, 0.018875122, 0.019927979, 0.04815674, 0.02470398, -0.015655518, -0.01109314, 0.00024962425, 0.03390503, -0.012924194, -0.0077781677, -0.051483154, 0.015625, -0.015609741, 0.04248047, -0.049835205, -0.018554688, 0.010269165, 0.0041122437, 0.015129089, -0.007980347, 0.01259613, 0.042266846, 0.03970337, 0.01663208, 0.013504028, 0.0026397705, 0.037322998, -0.004886627, -0.0118637085, 0.017715454, -0.025848389, -0.031158447, -0.0084991455, 0.006061554, 0.030563354, -0.029464722, -0.025390625, 0.04559326, -0.035217285, 0.021774292, -0.0010509491, -0.015419006, 0.0025787354, 0.011619568, -0.009628296, -0.039398193, -0.0043563843, 0.0099105835, 0.012382507, 0.012939453, 0.036132812, 0.013801575, 0.018585205, 0.055633545, 0.057861328, 0.05230713, 0.0050621033, 0.01890564, -0.014251709, -0.0003566742, 0.028579712, -0.010887146, -0.02394104, -0.009971619, -0.030700684, 0.018066406, 0.0005903244, 0.006099701, 0.013694763, 0.04345703, -0.0013866425, 0.009895325, 0.008224487, -0.020462036, -0.012184143, 0.020370483, 0.011398315, -0.016220093, 0.0043144226, -0.04067993, -0.06402588, 0.0073661804, 0.041168213, 0.00086021423, -0.02041626, -0.0054130554, 0.01651001, -0.024383545, 0.0077934265, -0.017105103, 0.0031871796, -0.0017433167, -0.01235199, -0.018737793, 4.3570995e-05, -0.050750732, 0.009277344, -0.061798096, -0.062316895, 0.0069847107, 0.08148193, -0.0104522705, -0.043701172, -0.030975342, -0.012207031, -0.013206482, 0.0069847107, -0.030822754, -0.028274536, -0.014633179, 0.003206253, 0.016204834, 0.03050232, -0.026687622, 0.006904602, 0.009719849, -0.010017395, 0.01537323, -0.017211914, 0.030807495, 0.029129028, 0.0284729, 0.08026123, 0.027801514, 0.04071045, -0.028884888, 0.0038642883, 0.021759033, -0.041259766, -0.008758545, -0.021072388, -0.015945435, 0.04360962, 0.0074501038, -0.014625549, -0.033477783, -0.10296631, 0.0413208, -0.0034046173, -0.010292053, -0.0087509155, -0.044525146, -0.04574585, -0.052246094, 0.027236938, 0.04260254, 0.00058078766, 0.028213501, -0.036254883, 0.06048584, -0.03012085, -0.0020580292, -0.02722168, -0.0124053955, 0.009773254, -0.004047394, 0.023223877, -0.07507324, 0.038604736, 0.047698975, -0.04824829, -0.029525757, -0.010917664, 0.030822754, -0.0135269165, 0.033691406, -0.012969971, -0.0075149536, -0.03829956, -0.051116943, -0.027252197, -0.036254883, 0.00982666, -0.023208618, 0.00756073, -0.0010251999, -0.00021827221, -0.030807495, 0.007232666, 0.019592285, -0.018218994, 0.008201599, -0.02810669, 0.017807007, 0.01524353, 0.00617218, 0.0031490326, -0.006263733, 0.021087646, 0.025238037, -0.0385437, 0.054840088, -0.0063095093, 0.014678955, 0.017211914, 0.004886627, -0.009384155, -0.020477295, 0.040161133, -0.0010004044, 0.049713135, -0.008178711, -0.005630493, 0.013389587, 0.010810852, 0.003232956, 0.020568848, -0.009796143, 0.0073394775, -0.02229309, 0.009124756, -0.0028896332, -0.002456665, -0.041870117, 0.033172607, 0.01146698, -0.033447266, 0.012306213, -0.1104126, 0.060028076, -0.0058059692, -0.004306793, 0.01411438, 0.017303467, 0.014450073, 0.030838013, 0.03237915, 0.022979736, 0.044189453, 0.015327454, 0.013885498, -0.006084442, 0.020339966, -0.05065918, 0.036590576, 0.04144287, -0.07543945, 0.005844116, -0.0011224747, -0.06713867, 0.013175964, 0.042144775, 0.008728027, -0.009490967, -0.012237549, -0.0067481995, -0.015419006, -0.051635742, -0.019302368, 0.04019165, -0.034362793, -0.045410156, 0.035125732, -0.011604309, -0.028121948, 0.003189087, -0.0032787323, -0.004436493, -0.012886047, 0.031463623, 0.03479004, 0.01373291, -0.0647583, 0.027770996, -0.027420044, -0.013168335, 0.018920898, 0.029571533, -0.022369385, -0.013763428, 0.0026454926, -0.012939453, -0.004436493, 0.061706543, 0.024505615, -0.048919678, -0.036102295, -0.02494812, 0.020309448, -0.024841309, -0.012863159, -0.03390503, -0.0005283356, 0.0050468445, -0.007297516, -0.014373779, 0.012428284, 0.018936157, -0.08392334, -0.012969971, -0.037353516, 0.0015802383, -0.076049805, 0.03036499, 0.00390625, 0.0031719208, 0.018569946, 0.007457733, -0.061401367, 0.00058603287, -0.038269043, -0.008804321, 0.04611206, -0.0063285828, -0.023345947, 0.004447937, -0.008331299, 0.0231781, 0.030731201, -0.03753662, 0.00091409683, -0.053009033, 0.008125305, 0.014602661, 0.018249512, 0.010047913, 0.00033950806, -0.0021629333, -0.007911682, -0.019683838, -0.05142212, -0.015037537, 0.0309906, -0.026168823, -0.03286743, -0.0345459, 0.053955078, -0.013725281, -0.005252838, -0.0008702278, 0.023239136, 0.036346436, 0.013092041, -0.060333252, -0.02078247, 0.0063552856, -0.034057617, 0.012931824, 5.185604e-06, -0.014701843, 0.03677368, 0.057281494, 0.011993408, -0.023101807, -0.005054474, -0.0032634735, -0.010353088, -0.008834839, -0.018798828, 0.038909912, -0.023880005, -0.0030651093, -0.034576416, 0.07006836, 0.025360107, -0.029830933, -0.012489319, -0.017486572, -0.011917114, -0.060150146, 0.0154953, -0.00028300285, 0.026763916, -0.027114868, -0.031341553, 0.027694702, -0.046783447, 0.0041923523, -0.022506714, -0.009597778, -0.014854431, -0.0002784729, -0.01776123, -0.061309814, -0.0149002075, 0.019058228, 0.010322571, 0.008453369, 0.016311646, 0.0027484894, 0.03250122, -0.009735107, 0.013313293, 0.023422241, -0.012214661, -0.013420105, 0.017974854, -0.005592346, -0.01776123, 0.007030487, -0.0035991669, 0.0006494522, 0.02053833, 0.016799927, 0.0014677048, -0.003540039, -0.004173279, 0.024169922, -0.059051514, -0.0005545616, -0.03427124, 7.4744225e-05, 0.013931274, 0.0088272095, -0.02822876, 0.0012626648, 0.0029850006, -0.03201294, 0.04776001, 0.0032901764, 0.009979248, -0.015914917, 0.09289551, -0.009223938, 0.023727417, -0.070739746, 0.007789612, -0.023330688, 0.019470215, -0.0017433167, -0.01361084, 0.02645874, -0.017227173, -0.015609741, 0.029586792, -0.011741638, -0.06036377, -0.051574707, 0.014328003, -0.072021484, -0.015571594, 0.02532959, -0.011421204, 0.03164673, 0.01902771, -0.05041504, 0.042053223, 0.036346436, -0.06109619, -0.017532349, -0.0079422, -0.024642944, -0.024902344, -0.015914917, 0.035125732, 0.018875122, -0.015319824, -0.009147644, -0.0011425018, 0.011077881, -0.03866577, -0.030227661, -0.039031982, -0.006729126, -0.021911621, 0.057739258, -0.02166748, -0.041381836, 0.0009813309, 0.04385376, 0.028335571, 0.0075912476, -0.05606079, -0.0039482117, -0.010299683, -0.010482788, 0.017715454, -0.017959595, 0.07183838, -0.01928711, -0.047912598, -0.06750488, 0.0231781, -0.05621338, -0.08068848, 0.10601807, 0.052337646, 0.014816284, -0.011360168, 0.00019681454, 0.008995056, -0.016494751, -0.0072631836, -0.004676819, -0.0067596436, -0.016403198, 0.029891968, 0.0034046173, 0.006549835, -0.028625488, 0.045654297, -0.03149414, -0.022445679, -0.03778076, 0.00030350685, -0.00187397, -0.053833008, 0.007183075, -0.014930725, -0.0046920776, 0.0050735474, 0.0034255981, -0.01600647, 0.005054474, -0.020523071, 0.010063171, 0.027664185, 0.048309326, 0.015060425, 0.021606445, -0.066589355, -0.027511597, -0.0101623535, -0.0035076141, 0.0075531006, 0.017623901, -0.009010315, 0.020263672, -0.013999939, 0.0043029785, 0.00052785873, 0.030410767, 0.02607727, -0.0053253174, -0.041778564, -0.034240723, 0.032318115, 0.03869629, -0.0010757446, 0.04437256, 0.02659607, -0.017425537, -0.011428833, -0.015640259, -0.027832031, -0.04248047, -0.021453857, -0.019226074, 0.017562866, 0.07220459, 0.007205963, 0.038513184, -0.02041626, 0.08288574, -0.019012451, 0.023880005, 0.0042915344, -0.015472412, 0.04699707, -0.02192688, 0.045074463, -0.020187378, 0.013710022, -0.008712769, 0.023468018, -0.010231018, -0.0014123917, 0.03942871, 0.03668213, -0.028549194, -0.042999268, 0.031021118, 0.025161743, -0.06506348, 0.012512207, 0.0075798035, -0.007762909, 0.0110321045, -0.023590088, -0.002658844, -0.018310547, 0.011054993, 0.013221741, 0.040100098, -0.012664795, 0.040924072, 0.008285522, 0.009437561, -0.013320923, 0.0075798035, -0.02130127, 0.018341064, 0.028930664, -0.013900757, -0.025054932, -0.023468018, 0.053009033, -0.024353027, 0.010169983, -0.026489258, 0.02293396, -0.042907715, -0.012252808, -0.034179688, -0.04446411, -0.015426636, 0.0129776, -0.013847351, 0.005683899, -0.002002716, -0.0005726814, -0.0028438568, -0.0435791, 0.029067993, -0.029327393, 0.030731201, 0.027770996, -0.0023441315, -0.09448242, -0.059906006, -0.013175964, -0.04135132, -0.008415222, 0.053833008, 0.0014858246, 0.04559326, 0.050201416, -0.010810852, 0.074523926, 0.011001587, 0.012321472, -0.03591919, 0.03173828, 0.016952515, -0.014480591, -0.01574707, -0.00843811, -0.009880066, 0.025253296, -0.009292603, -0.0076828003, -0.038879395, 0.0004415512, -0.020217896, -0.030410767, 0.00083112717, -0.0015993118, -0.013374329, 0.02935791, -0.059265137, -0.0018548965, -0.036376953, -0.053253174, 0.008857727, -0.021957397, -0.04220581, 0.06732178, 0.0039711, -0.01838684, 0.0074272156, -0.018157959, -0.03564453, -0.03555298, -0.008117676, 0.007534027, 0.031158447, 0.0015439987, 0.04321289, -0.008377075, -0.041656494, -0.035491943, 0.020187378, -0.02909851, -0.0011911392, -0.0010967255, 0.037628174, 0.037017822, 0.009391785, 0.015106201, 0.021347046, 0.023727417, -0.0036792755, -0.030181885, -0.017715454, -0.011054993, 0.03164673, -0.010566711, -0.022338867, -0.030197144, 0.027374268, -0.014801025, 0.023132324, 0.025909424, -0.028030396, -0.016235352, -0.0072784424, 0.001449585, -0.00522995, -0.04083252, 0.025726318, 0.019104004, 0.046295166, 0.018127441, 0.013069153, 0.03152466, -0.062408447, 0.06036377, -0.024505615, 0.018325806, -0.009124756, -0.04812622, -0.018463135, -0.012718201, -0.0014400482, -0.014877319, -0.02760315, 0.008651733, 0.0037498474, -0.026321411, 0.0023708344, 0.021652222, -0.014457703, 0.04949951, 0.03161621, 0.024765015, 0.03805542, -0.051361084, 0.006587982, -0.047546387, -0.054656982, -0.008804321, -0.010688782, -0.011192322, -0.01979065, -0.031463623, 0.02357483, -0.030715942, -0.029693604, -0.019729614, -0.07098389, 0.042999268, 0.028503418, 0.0069847107, 0.02923584, 0.018218994, -0.040100098, -0.009124756, 0.011177063, 0.011268616, -0.016586304, -0.026000977, 0.032684326, -0.015266418, 0.097839355, -0.05404663, -0.03717041, -0.04916382, 0.00063943863, -0.024276733, 0.03768921, 0.047027588, 0.012634277, -0.014770508, 0.031463623, -0.076416016, -0.0513916, -0.00932312, 0.0637207, -0.006690979, 0.007843018]}, "B0771WRDGT": {"id": "B0771WRDGT", "original": "Brand: Concord\nName: Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16\" Square\nDescription:

      The Concord single propane burner is built like a tank.

      Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

      For the holiday season, this is the perfect burner for your turkey fryer.

      To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go\u2026.

      For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






      Measurements: Burner Stand 16.5\" Wide x 16.5\" Height

      Burner head is 10\" Wide.






      Concord burners - make every outing count.

      \nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x16.5\".\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "metadata": {"Name": "Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16\" Square", "Brand": "Concord", "Description": "

      The Concord single propane burner is built like a tank.

      Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

      For the holiday season, this is the perfect burner for your turkey fryer.

      To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go\u2026.

      For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






      Measurements: Burner Stand 16.5\" Wide x 16.5\" Height

      Burner head is 10\" Wide.






      Concord burners - make every outing count.

      ", "Features": "Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x16.5\".\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.032226562, -0.022613525, -0.03149414, -0.05630493, -0.025253296, 0.027038574, -0.04244995, 0.038238525, -0.028533936, 0.0178833, -0.028869629, -0.0027275085, 0.002872467, -0.020645142, 0.0012998581, -0.051330566, -0.0035743713, 0.05065918, 0.00774765, -0.026306152, 0.009422302, -0.02067566, -0.051727295, 0.074279785, 0.03805542, -0.026321411, -0.04208374, 0.00015330315, 0.024795532, -0.00022161007, 0.0178833, 0.016448975, 0.034057617, -0.022094727, 0.007675171, -0.05493164, 0.010551453, -0.029052734, -0.0345459, 0.031799316, -0.0036945343, 0.0050697327, -0.025024414, 0.004360199, -0.018569946, -0.032684326, 0.0010480881, -0.052368164, -0.016983032, -0.004272461, -0.012863159, -0.02319336, 0.0013017654, -0.07141113, -0.013671875, -0.027755737, 0.025924683, -0.04333496, -0.006298065, -0.0014591217, -0.009170532, 0.0154418945, 0.03491211, 0.018096924, -0.07019043, -0.00070238113, 0.03845215, -0.015464783, 0.02017212, -0.06921387, -0.012916565, 0.056121826, 0.036071777, 0.026412964, -0.047302246, -0.028656006, 0.038208008, 0.028518677, 0.03527832, -0.022781372, 0.0035438538, -0.0018129349, 0.008407593, -0.051635742, 0.049987793, -0.016204834, -0.012680054, -0.022476196, -0.04333496, -0.024490356, -0.02357483, -0.032348633, -0.064208984, 0.043518066, 0.0031261444, 0.008255005, -0.056518555, -0.12121582, 0.064453125, 0.0032749176, 0.057403564, -0.03817749, -0.0050086975, 0.037109375, 0.008880615, 0.10284424, -0.00289917, 0.03201294, 0.025787354, -0.0118255615, 0.02859497, -0.022140503, 0.008865356, -0.015419006, -0.016082764, -0.014816284, -0.028930664, 0.02218628, 0.0048942566, 0.0016345978, -0.0057792664, -0.006351471, 0.0030841827, -0.012252808, -0.019515991, -0.028213501, -0.031982422, 0.0077934265, -0.020339966, 0.020523071, -0.026885986, -0.005470276, 0.0368042, 0.074523926, 0.022140503, -0.0062675476, 0.008834839, 0.012466431, -0.0050201416, 0.01763916, -0.036224365, -0.031433105, 0.023284912, -0.02331543, -0.049468994, -0.001502037, 0.033081055, 0.01838684, -0.015151978, -0.05758667, -0.02746582, 0.04458618, 0.039154053, -0.008216858, -0.019210815, -0.01235199, 0.008918762, -0.014778137, -0.018798828, -0.030303955, -0.022644043, -0.023284912, -0.015991211, 0.033843994, -0.0043411255, 0.041534424, 0.04067993, -0.0054359436, 0.018615723, 0.027450562, -0.012969971, 0.019958496, 0.041259766, 0.005672455, -0.005771637, -0.005722046, -0.02507019, 0.0892334, 0.05319214, -0.082214355, -0.050079346, -0.059906006, 0.13146973, -0.028305054, -0.045288086, 0.00274086, 0.008422852, -0.0015878677, 0.03253174, -0.015281677, 0.042022705, 0.0018749237, 0.018096924, -0.06088257, 0.025390625, 0.00017535686, -0.066101074, -0.012458801, -0.014190674, 0.028244019, -0.015129089, 0.019729614, 0.026153564, 0.017105103, 0.026550293, 0.002796173, 0.0048294067, 0.009056091, 0.024215698, 0.017669678, -0.0049552917, 0.0037670135, 0.020690918, -0.06939697, -0.018112183, 0.028884888, -0.01914978, -0.009887695, 0.012573242, -0.041015625, 0.037994385, -0.00027394295, 0.037506104, 0.028640747, 0.021392822, -0.013267517, -0.012268066, -0.01411438, 0.00020956993, 0.006034851, -0.041107178, 0.030960083, 0.06982422, 0.062561035, 0.013923645, 0.030288696, 0.07446289, 0.00894165, -0.004211426, -0.014778137, 0.00035881996, -0.008323669, -0.027572632, 0.023773193, -0.017227173, 0.003862381, 0.022750854, 0.01789856, -0.023925781, 0.016433716, 0.007736206, 0.022262573, 0.014770508, 0.01637268, -0.012123108, 0.024734497, -0.02168274, -0.036499023, -0.021011353, 0.03717041, 0.010017395, 0.054229736, 0.01600647, 0.016494751, 0.02784729, -0.028411865, 0.008583069, 0.0031433105, 0.00013411045, -0.010879517, 0.014076233, -0.012229919, -0.00054073334, 0.0012550354, 0.024902344, 0.015129089, -0.0340271, 0.0055351257, 0.00071048737, 0.0037899017, 0.014633179, 0.015853882, -0.011253357, 0.0037078857, 0.028564453, 0.014816284, -0.0022792816, 0.015960693, -0.014060974, 0.021728516, 0.025268555, 0.037475586, -0.027633667, 0.019836426, -0.006187439, 0.0021839142, 0.06402588, -0.015258789, 0.036376953, -0.05404663, 0.018447876, 0.030426025, -0.066589355, 0.033721924, -0.017532349, -0.03829956, -0.00894165, 0.015266418, -0.0054740906, -0.046936035, 0.010360718, 0.032714844, 0.030731201, 0.018081665, 0.03744507, 0.005420685, 0.010810852, 0.04876709, 0.051818848, 0.040740967, -0.028945923, 0.009651184, -0.009727478, 0.013916016, 0.012588501, 0.007041931, 0.012565613, 0.0020141602, -0.018630981, 0.0058059692, 0.054138184, 0.016571045, 0.028793335, 0.0074806213, 0.017089844, -0.011756897, -0.0015296936, -0.01878357, -0.011268616, 0.00844574, 0.0021591187, -0.008346558, 0.012313843, -0.029785156, 0.024917603, -0.036224365, -0.01953125, 0.022201538, -0.0071258545, 0.0018758774, -0.010955811, -0.027496338, 0.030899048, -0.046081543, 0.03250122, -0.049041748, -0.07128906, -0.03125, -0.010070801, -0.068359375, 0.004562378, -0.030136108, -0.06384277, -0.0413208, 0.07098389, 0.006652832, -0.040405273, -0.042419434, -0.036895752, -0.004737854, 0.046722412, -0.006549835, -0.061065674, -0.040863037, -0.074157715, -0.0023937225, 0.04244995, -0.018966675, -0.0039024353, 0.006095886, 0.016159058, 0.01348114, -0.029129028, -0.015914917, 0.036315918, 0.031311035, 0.04345703, 0.03778076, 0.011810303, -0.025787354, -0.013267517, 0.016998291, -0.05166626, -0.0028572083, 0.023712158, 0.005672455, -0.01889038, -0.001906395, -0.06628418, -0.00026130676, -0.041931152, -0.012641907, -0.013336182, -0.033935547, 0.02330017, -0.09100342, -0.0011796951, -0.04888916, 0.008842468, -0.033111572, -0.009147644, -0.005290985, -0.025344849, -0.0038890839, 0.0007791519, -0.03479004, 0.060272217, 0.00944519, 0.006252289, -0.03781128, 0.053833008, -0.066833496, 0.05203247, 0.01977539, -0.013893127, 0.0023860931, -0.04901123, -0.0025234222, -0.005645752, -0.007091522, -0.04864502, 9.3102455e-05, -0.018249512, 0.0023345947, 0.01637268, 0.021896362, -0.013267517, -0.06347656, 0.013969421, -0.028869629, -0.05480957, -0.0309906, 0.02798462, 0.027450562, -0.0028934479, 0.0121154785, -0.030548096, -0.052490234, 0.025756836, -0.01876831, 0.0030136108, -0.008354187, 0.04232788, 0.01737976, -0.026275635, 0.07611084, 0.01461792, 0.03149414, 0.055114746, -0.024429321, -0.016738892, -0.020736694, 0.0009007454, 0.002216339, -0.021392822, -0.042236328, 0.016357422, 0.036834717, 0.021270752, -0.041137695, 0.011230469, 0.06604004, 0.02609253, -0.007095337, 0.008850098, 0.008605957, 0.0012636185, -0.017028809, -0.0052833557, 0.00042510033, -0.056488037, 0.007987976, -0.057159424, 0.056671143, 0.035369873, -0.02633667, 0.07519531, 0.031066895, -0.0056381226, -0.00019168854, 0.00011962652, -0.018539429, -0.011260986, 0.026046753, -0.036743164, 0.01713562, 0.009857178, -0.029205322, 0.035064697, 0.0013551712, -0.030426025, 0.022384644, 0.037261963, -0.04525757, -0.016403198, -0.030685425, -0.0065689087, 0.008056641, 0.014160156, -0.010047913, 0.003030777, -0.007007599, -0.012496948, 0.0063438416, -0.031341553, 0.05871582, -0.07098389, -0.0062065125, -0.029144287, 0.0082473755, -0.032440186, 0.021606445, -0.020355225, 0.042938232, -0.00025629997, 0.006286621, -0.05255127, 0.0446167, -0.026184082, 0.02520752, -0.0076141357, 0.008094788, -0.00031971931, -0.036132812, 0.058654785, -0.00422287, -0.03488159, 0.007820129, -0.060668945, -0.08605957, -0.01449585, 0.04611206, 0.027801514, -0.024215698, -0.013954163, 0.01171875, -0.015533447, 0.012641907, -0.018554688, -0.013534546, -0.0028324127, 0.011734009, -0.06463623, -0.061798096, -0.028884888, 0.05392456, 0.013786316, -0.007987976, -0.03289795, -0.03149414, -0.027679443, 0.017196655, -0.031555176, 0.008743286, -0.052368164, 0.015716553, 0.02217102, 0.008895874, 0.021636963, -0.025482178, -0.032592773, -0.028411865, 0.072143555, 0.012924194, -0.005332947, -0.037475586, 0.0032863617, 0.019714355, 0.036834717, 0.01977539, -0.017181396, -0.008384705, -0.011688232, 0.007881165, -0.046691895, -0.020812988, 0.012084961, -0.027770996, -0.04272461, -0.030776978, 0.092041016, -0.022720337, 0.044433594, -0.013435364, -0.004081726, -0.022125244, -0.02027893, -0.096069336, -0.054595947, -0.011497498, -0.048553467, 0.011108398, -0.008354187, -0.022399902, 0.047576904, 0.05847168, 0.010848999, -0.034210205, -0.02406311, -0.0068511963, -0.01991272, 0.04095459, -0.030273438, -0.01625061, -0.033813477, 0.008804321, -0.0064888, 0.032073975, 0.011428833, -0.049194336, -0.023086548, -0.00045871735, -0.031677246, -0.043670654, -0.023345947, -0.012489319, -0.008766174, -0.019195557, -0.03677368, -0.00033283234, -0.016342163, -0.0016641617, -0.017684937, -0.046081543, -0.01007843, 0.03616333, -0.0026054382, -0.008232117, -0.0041999817, -0.0031089783, 0.0053863525, 0.011627197, -0.01612854, -0.019088745, 0.054016113, -0.0104599, -0.005065918, 0.03753662, 0.00010681152, -0.01008606, 0.03439331, -0.007736206, -0.07348633, 0.007789612, 0.04006958, -0.014442444, -0.010688782, 0.0021152496, 0.009132385, -0.009300232, -0.03010559, 0.028259277, -0.024337769, 0.009422302, 0.047668457, 0.025680542, 0.0362854, 0.035491943, 0.010375977, 0.009742737, 0.012825012, 0.004119873, 0.014907837, -0.012229919, 0.016693115, -0.051513672, 0.020187378, -0.005622864, -0.026824951, -0.06036377, 0.0109939575, -0.00051498413, 0.009498596, 0.014839172, -0.037139893, 0.03881836, -0.041931152, -0.027069092, 0.020568848, 0.08355713, -0.013137817, 0.014328003, 0.053894043, 0.022888184, -0.06689453, 0.02758789, 0.0015516281, 0.023849487, -0.00522995, -0.041534424, 0.03262329, 0.038238525, -0.030288696, 0.010429382, -0.028945923, 0.001209259, -0.0020999908, 0.01979065, -0.018447876, -0.016784668, 0.0045928955, 0.043884277, 0.039276123, 0.021743774, -0.062072754, -0.034698486, -0.013549805, 0.015541077, -0.008583069, 0.053985596, -0.011207581, -0.048095703, -0.0033626556, 0.018829346, 0.030441284, -0.045928955, -0.0137786865, -0.01676941, 0.027038574, 0.0413208, -0.019897461, -0.019454956, 0.095825195, -0.0357666, -0.047943115, -0.054534912, 0.06008911, -0.024780273, -0.002866745, 0.03491211, 0.05206299, 0.0008325577, 0.030258179, -0.007408142, -0.0030059814, 0.010894775, 0.015533447, -0.053527832, -0.012901306, -0.020324707, 0.010154724, -0.02507019, -0.01600647, 0.008811951, 0.049560547, 0.0016584396, -0.003124237, -0.0037269592, -0.0076828003, -0.0001578331, -0.046875, -0.012382507, -0.04498291, 0.023834229, -0.0152282715, 0.0026779175, -0.03390503, -0.025222778, -0.034118652, 0.026138306, 0.041931152, -0.001791954, -0.0055999756, -0.012710571, -0.01789856, 0.030349731, 0.0101623535, -0.022109985, 0.02508545, -0.011756897, -0.012527466, -0.003993988, 0.040924072, 0.018325806, -0.026885986, 0.026855469, 0.02243042, 0.048980713, -0.02381897, 0.0077209473, 0.02557373, 0.023376465, 0.014007568, 0.003446579, 0.04385376, 0.0107040405, -0.049102783, 0.0032405853, 0.028625488, -0.031143188, -0.026412964, -0.03579712, -0.059051514, -0.017669678, -0.024169922, 0.02468872, -0.04232788, 0.027709961, -0.012176514, -0.005634308, 0.0053749084, -0.01499939, 0.034973145, -0.01776123, 0.014282227, -0.00793457, 0.008430481, 0.013023376, -0.041503906, -0.03237915, 0.019134521, 0.038024902, -0.01689148, 0.03353882, -0.049346924, 0.03677368, 0.0234375, -0.08441162, -0.0029716492, -0.04324341, -0.008041382, -0.027816772, -0.035339355, -0.027786255, 0.025558472, 0.016143799, -0.005104065, -0.0036411285, 0.021133423, 0.007282257, -0.002243042, 0.006702423, -0.019973755, -0.025878906, 0.030975342, -0.0037002563, -0.0046157837, -0.0020275116, -0.021697998, 0.0040359497, 0.04547119, -0.015411377, 0.0051116943, -0.019882202, 0.021728516, -0.017562866, 0.0042152405, -0.03781128, -0.015686035, 0.037719727, 0.011924744, -0.023361206, -0.020401001, -0.0045661926, 0.011383057, -0.031921387, -0.023132324, 0.015853882, -0.034210205, -0.00023925304, 0.014884949, -0.017822266, -0.021743774, -0.056243896, -0.028259277, -0.024627686, -0.005130768, -0.0051841736, -0.017074585, -0.01625061, 0.016281128, 0.0023422241, 0.025527954, -0.028656006, 0.020706177, 0.011665344, 0.009132385, 0.006072998, 0.033691406, -0.011291504, -0.0035629272, -0.0022449493, -0.018966675, 0.007987976, -0.03125, -0.011810303, -0.013702393, -0.00077056885, -0.029815674, 0.02784729, -0.048919678, -0.0058555603, 0.021713257, -0.04562378, 0.05078125, -0.029342651, -0.06695557, -0.062683105, -0.012260437, -0.04244995, 0.030807495, 0.0021514893, -0.028564453, -0.015449524, -0.00081682205, 0.00491333, -0.033416748, -0.0064697266, 0.009429932, 0.035705566, 0.023712158, 0.037841797, -0.023406982, -0.076416016, -0.041290283, 0.048583984, -0.06384277, -0.08404541, -0.00207901, 0.011917114, 0.032196045, 0.019378662, 0.07330322, -0.03125, 0.046020508, -0.010864258, 0.023742676, -0.040161133, -0.022964478, 0.04788208, 0.022018433, -0.028808594, -0.019165039, 0.015312195, -0.002067566, -0.013053894, 0.02947998, -0.017822266, -0.040527344, -0.0064582825, -0.0034980774, -0.036254883, -0.011184692, -0.0067596436, 0.02520752, 0.006511688, -0.0552063, 0.047180176, 0.0029525757, 0.04901123, 0.016784668, -0.04208374, 0.0592041, -0.021148682, -0.04751587, -0.06774902, -0.038482666, 0.021942139, 0.00012767315, -0.046691895, 0.01612854, 0.048706055, -0.03729248, 0.038879395, 0.05407715, 0.0020484924, 0.012184143, 0.036621094, -0.016662598, 0.014015198, -0.0067253113, 0.02720642, -0.024749756, -0.016830444, -0.0014190674, 0.013267517, -0.011062622, -0.0047569275, 0.0022907257, 0.00019156933, -0.011154175, 0.025039673, -0.029724121, -0.013412476, -0.018508911, 0.032318115, -0.0067596436, 0.011230469, -0.021865845, 0.0012321472, -0.0803833, -0.0041618347, 0.052734375, -0.0043182373, -0.0579834, 0.010795593, 0.04916382, 0.047973633, -0.03048706, -0.0770874, -0.031982422, 0.007637024, 0.0023002625, 0.01399231, 0.057891846, -0.028366089, 0.011878967, 0.04989624, -0.033966064, -0.021850586, -0.0028877258, 0.036987305, 0.014266968, -0.0043640137]}, "B083GGFXFT": {"id": "B083GGFXFT", "original": "Brand: SHINESTAR\nName: SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges\nDescription: SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

      Description
      \u2714 Ability to check the fuel level without having to remove the tank.
      \u2714 Checks for leaks on propane appliances
      \u2714 See at a glance when your propane level is low
      \u2714 Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

      What is it use for?
      It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
      How to detect leaks?
      To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

      \u2605 NOTE: Will not read levels immediately: begins working when propane is flowing
      \nFeatures: \u3010Awesome Connection\u3011 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L.\n\u3010Double Function Gauge\u3011 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety\n\u3010Multi-Purpose\u3011 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking\n\u3010Easy to Install\u3011 It only takes 1 minute to screw it on by hands. Installation is a snap.\n\u3010Standard Adapter\u3011 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.\n", "metadata": {"Name": "SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges", "Brand": "SHINESTAR", "Description": "SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

      Description
      \u2714 Ability to check the fuel level without having to remove the tank.
      \u2714 Checks for leaks on propane appliances
      \u2714 See at a glance when your propane level is low
      \u2714 Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

      What is it use for?
      It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
      How to detect leaks?
      To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

      \u2605 NOTE: Will not read levels immediately: begins working when propane is flowing
      ", "Features": "\u3010Awesome Connection\u3011 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L.\n\u3010Double Function Gauge\u3011 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety\n\u3010Multi-Purpose\u3011 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking\n\u3010Easy to Install\u3011 It only takes 1 minute to screw it on by hands. Installation is a snap.\n\u3010Standard Adapter\u3011 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.021118164, -0.021057129, -0.061401367, -0.037384033, -0.010116577, -0.024795532, -0.007545471, 0.032348633, 0.040405273, -0.0009279251, -0.034606934, -0.0031909943, 0.0054855347, -0.028335571, 0.0017290115, -0.0211792, 0.01927185, 0.034851074, 0.01876831, -0.025161743, 0.00730896, -0.023239136, -0.0047073364, 0.08099365, -0.007221222, 0.040100098, 0.0619812, -0.010910034, 0.0038032532, -0.006252289, 0.018051147, -0.048461914, 0.02229309, 0.0029964447, 0.0060806274, -0.0030879974, -0.0128479, 0.004020691, 0.009887695, -0.023971558, 0.010429382, -0.019500732, -0.01826477, -0.016357422, -0.019760132, -0.02192688, 0.009788513, -0.020736694, 0.020004272, -0.01586914, 0.0090408325, 0.015792847, 0.022888184, -0.005355835, -0.01939392, -0.016159058, -0.0088272095, 0.003627777, -0.0016746521, 0.027938843, 0.004322052, 0.0390625, 0.0018825531, 0.013473511, -0.053375244, 0.003692627, 0.049072266, -0.027008057, -0.0010128021, -0.05935669, 0.008743286, 0.027160645, -0.00029683113, -0.016860962, -0.059509277, 0.011482239, 0.0025749207, -0.023971558, 0.016082764, -0.02041626, 0.013267517, -0.037872314, -0.009292603, 0.0072402954, 0.008682251, 0.021209717, -0.0033359528, -0.0116119385, 0.0028095245, -0.014678955, -0.00040078163, 0.028945923, 0.004142761, 0.002784729, -0.03878784, -0.016845703, -0.0014543533, -0.017486572, 0.032562256, -0.018661499, 0.0041236877, -0.03152466, -0.047790527, 0.0027751923, 0.009986877, 0.047027588, -0.014778137, -0.047698975, 0.021530151, 0.017974854, 0.0068588257, 0.0062217712, -0.030807495, -0.05355835, -0.0099105835, 0.06274414, -0.004005432, -8.440018e-05, 0.016220093, -0.005004883, -0.030227661, 0.0062675476, -0.012184143, -0.04763794, 0.010444641, -0.021484375, 0.009315491, -0.0035858154, -0.074645996, 0.026290894, -0.0017786026, -0.011444092, 0.036468506, 0.10290527, 0.030975342, -0.005382538, 0.0023517609, 0.046813965, 0.0054130554, -0.01550293, 0.008674622, -0.027297974, -0.023803711, 0.01524353, -0.001616478, 0.023544312, 0.022628784, 0.015342712, -0.0143585205, -0.04534912, 0.03100586, -0.043060303, 0.017364502, 0.016708374, -0.059936523, 0.0020961761, -0.0345459, 0.00046634674, -0.008308411, -0.029678345, -0.045837402, -0.029159546, 0.009651184, 0.0052757263, -0.016220093, 0.031433105, 0.02949524, 0.0042877197, 0.019897461, 0.034057617, 0.032318115, 0.0146102905, 0.022216797, 0.013725281, 4.1484833e-05, -0.011703491, -0.03744507, 0.09246826, 0.057769775, -0.16516113, -0.074279785, -0.06311035, 0.13085938, -0.027175903, -0.016403198, -0.04244995, 0.009552002, -0.027496338, 0.02456665, 0.0040397644, 0.028366089, 0.010421753, -0.011001587, -0.049438477, 0.024993896, 0.027664185, -0.006793976, 0.013458252, 0.0079422, -0.036254883, -0.058898926, 0.029067993, -0.036590576, 0.028762817, 0.029251099, -0.02835083, 0.02279663, 0.019088745, 0.025268555, 0.012924194, -0.0049209595, -0.0046463013, 0.004272461, -0.032287598, -0.04901123, -0.020568848, -0.0025024414, -0.03878784, 0.003293991, -0.03753662, 0.053741455, 0.013938904, 0.013587952, 0.034729004, -0.029449463, 0.06121826, -0.049621582, 0.042633057, -0.006034851, 0.0016965866, 0.074523926, 0.036499023, 0.07312012, 0.014411926, -0.029953003, 0.023864746, 0.056365967, -0.010871887, -0.017562866, 0.019119263, 0.02508545, -0.06945801, -0.03314209, 0.009773254, 0.02571106, -0.05859375, -0.035095215, 0.035095215, -0.032165527, 0.03967285, -0.0006155968, 0.045684814, 0.026748657, 0.033996582, -0.05407715, 0.05783081, 0.016113281, 0.041015625, -0.06555176, 0.045776367, -0.010826111, 0.020355225, 0.022842407, -0.0076179504, 0.02720642, -0.0035133362, 0.042907715, 0.0256958, -0.007583618, -0.016342163, -0.005329132, 0.015380859, -0.0022830963, -0.034423828, -0.074279785, 0.027893066, -0.027816772, 0.05267334, -0.008483887, -0.031707764, 0.009162903, -0.034973145, 0.0065193176, 0.00088596344, 0.06506348, 0.05328369, 0.02645874, 0.0062026978, -0.027709961, 0.012435913, 0.059265137, -0.026321411, -0.037261963, -0.0013561249, -0.052490234, -0.025146484, 0.014465332, -0.03152466, 0.020812988, -0.009742737, 0.014724731, 0.06359863, -0.00090932846, 0.011199951, 0.008880615, -0.047180176, 0.013870239, 0.007522583, 0.0038814545, -0.023742676, -0.01361084, 0.03881836, 0.013755798, -0.031829834, 0.05218506, 0.034698486, 0.005924225, 0.0256958, 0.04562378, 0.077697754, -0.040222168, -0.0013656616, -0.026260376, 0.01739502, 0.00831604, 0.0059547424, 0.01638794, 0.002105713, -0.040252686, 0.015022278, 0.04473877, 0.0035629272, 0.040008545, 0.057678223, 0.012481689, -0.0016860962, 0.012001038, -0.0073547363, -0.012191772, -0.002254486, 0.00705719, -0.016143799, 0.009376526, -0.005584717, -0.07244873, -0.032714844, 0.086242676, -0.012107849, -0.020339966, -0.0181427, 0.06567383, -0.031677246, 0.0066871643, 0.018997192, 0.015388489, -0.015792847, -0.00052690506, 0.013450623, -0.011497498, -0.029525757, 0.009689331, -0.06628418, -0.06591797, -0.048095703, 0.069885254, 0.022949219, -0.066223145, -0.03366089, -0.00198555, 0.029296875, 0.004585266, 0.0015039444, -0.045562744, -0.023498535, -0.038360596, 0.016220093, 0.0055732727, -0.049713135, 0.052368164, 0.0050964355, 0.0012607574, 0.026794434, -0.0418396, 0.021865845, 0.032318115, 0.030166626, 0.06695557, 0.053741455, -0.013206482, -0.041809082, -0.027572632, 0.02268982, -0.009681702, -0.0014677048, 0.00054597855, -0.021560669, -0.016662598, 0.033294678, -0.068115234, 0.016448975, -0.07946777, 0.051971436, 0.009864807, 0.008911133, -0.02558899, -0.034851074, -0.038146973, -0.058776855, 0.034362793, 0.022628784, -0.030578613, 0.019561768, -0.033569336, 0.020721436, -0.020050049, 0.020996094, -0.025375366, -0.010284424, -0.04019165, 0.017211914, 0.05984497, -0.07519531, 0.031082153, 0.049041748, -0.0385437, -0.015007019, 0.004722595, 0.0357666, -0.018798828, 0.0154418945, -0.005672455, -0.022247314, -0.048461914, -0.060668945, -0.0025730133, -0.017654419, 0.0045814514, -0.021560669, 0.0075912476, 0.0061035156, -0.059509277, -0.02456665, -0.002407074, 0.011528015, -0.008277893, -0.0014505386, -0.028427124, -0.033721924, 0.0018892288, -0.042663574, 0.006111145, 0.01828003, 0.029586792, 0.013618469, -0.0031471252, 0.039611816, -0.007129669, 0.024734497, -0.0036849976, 0.019989014, 0.012664795, -0.02508545, 0.013435364, 0.0012292862, 0.02015686, -0.033477783, -0.012786865, 0.0101623535, 0.0121154785, -0.005443573, -0.0020713806, 0.046936035, 0.03451538, -0.03869629, 0.007446289, -0.05307007, 0.029510498, -0.03274536, 0.058563232, -0.031829834, -0.0027637482, -0.0006380081, -0.07678223, 0.06555176, 0.03753662, -0.015579224, 0.016403198, 0.027389526, 0.018341064, 0.058807373, 0.04815674, 0.009498596, 0.027053833, 0.067993164, 0.00340271, -0.0016708374, -0.0040245056, -0.021820068, 0.032470703, -0.022827148, 0.028121948, 0.005130768, -0.02798462, -0.029846191, 0.004005432, 0.018112183, 0.0005578995, -0.024917603, -0.011276245, -0.022598267, -0.020141602, -0.041778564, 0.006111145, 0.014450073, -0.02180481, -0.034484863, 0.024490356, -0.05102539, -0.00894928, 0.028915405, -0.03793335, 0.0018959045, 0.0025959015, 0.052642822, -0.01727295, 0.015129089, -0.042907715, 0.03515625, -0.030715942, -0.04095459, 0.019210815, -0.0011005402, -0.03164673, -0.009567261, 0.020980835, 0.039611816, -0.03189087, 0.04220581, 0.019119263, -0.049591064, -0.024002075, 0.0039901733, 0.01802063, -0.014907837, 0.004180908, -0.06210327, 0.008102417, -0.0033607483, -0.023406982, -0.0009236336, -0.0001244545, 0.0035324097, -0.093933105, -0.05178833, -0.01890564, -0.005458832, -0.02017212, 0.016860962, -0.016464233, -0.018478394, -0.0062179565, 0.015258789, -0.03665161, 0.0030517578, -0.022705078, 0.013900757, 0.014923096, -0.01586914, 0.027252197, -0.021713257, -0.033447266, -0.0065727234, -1.7046928e-05, -0.03918457, 0.0026245117, -0.011566162, -0.011955261, 0.029388428, 0.004501343, 0.019332886, 0.011680603, -0.0053482056, -0.019882202, 0.011756897, -0.04812622, 0.007972717, 0.0236969, -0.017181396, -0.02407837, -0.0020370483, 0.05770874, -0.016433716, 0.03378296, 0.040802002, -0.009529114, -0.0098724365, -0.009895325, -0.094177246, -0.007888794, -0.013046265, -0.002008438, 0.011650085, 0.011795044, -0.0049591064, 0.011619568, 0.027252197, -0.015914917, 0.05419922, -0.008666992, -0.017974854, -0.00078201294, 0.0044059753, -0.025253296, 0.02583313, -0.04425049, -0.007411957, -0.053863525, 0.07647705, 0.051696777, -0.02458191, -0.0009889603, -0.03845215, -0.0362854, -0.038238525, -0.06427002, 0.0151901245, 0.06903076, -0.012901306, -0.052368164, 0.036956787, -0.021606445, 0.00028944016, -0.03616333, -0.0016145706, -0.02734375, -0.010948181, -0.020370483, -0.055480957, -0.0060539246, 0.009338379, 0.00447464, -0.004058838, -0.04107666, 0.032440186, 0.034240723, -0.008560181, 0.0017051697, -0.0027923584, -0.012481689, 0.026184082, 0.017929077, 0.013183594, -0.062164307, 0.016342163, 0.03741455, 0.013847351, 0.01171875, 0.024414062, -0.009300232, -0.030258179, -0.035614014, -0.014640808, 0.003353119, -0.037384033, -0.00806427, 0.014389038, 0.021224976, 0.03933716, -0.01109314, 0.015975952, 0.02279663, -0.007904053, 0.049987793, 0.008392334, -0.001783371, -0.02293396, 0.056518555, -0.011474609, 0.0038337708, -0.032409668, 0.01473999, -0.006652832, 0.016189575, 0.018478394, -0.03741455, 0.01474762, -0.024398804, 0.0005893707, 0.009643555, 0.015914917, -0.04168701, -0.008422852, 0.010467529, -0.034576416, -0.04095459, -0.0011396408, -0.016586304, 0.035736084, 0.015335083, -0.03265381, 0.033294678, 0.036865234, -0.057678223, -0.01108551, -0.00983429, 0.017288208, 0.0016546249, -0.004383087, -0.0072898865, -0.0056648254, 0.0014314651, 0.034057617, -0.007106781, 0.009536743, -0.027496338, -0.011474609, -0.020706177, 0.0031776428, -0.009780884, 0.03439331, -0.034729004, -0.066223145, -0.014022827, 0.030380249, 0.023223877, -0.013206482, -0.041748047, -0.020736694, 0.0008802414, -0.0009255409, 0.020996094, -0.039611816, 0.038757324, -0.01197052, -0.042541504, 0.00087833405, 0.029769897, -0.037841797, -0.059417725, 0.09887695, 0.057037354, 0.011940002, 0.0015487671, 0.014320374, -0.027526855, 0.044891357, 0.0020942688, -0.052581787, -0.016799927, -0.021835327, -0.037994385, 0.05041504, -0.023666382, -0.015914917, 0.0496521, 0.017486572, -0.0015659332, -0.0501709, -0.039276123, 0.016906738, -0.045806885, 0.017227173, -0.030944824, -0.010719299, 0.015655518, 0.008529663, -0.048583984, -0.045654297, 0.018493652, 0.0041389465, -0.005630493, 0.031677246, 0.002462387, 0.015991211, -0.018295288, -0.013328552, 0.01637268, -0.018859863, 0.011245728, 0.016799927, -0.027618408, 0.047729492, -0.033721924, 0.0055236816, -0.026428223, 0.044830322, 0.021911621, 0.02355957, -0.070617676, -0.044647217, 0.04083252, 0.042938232, 0.01991272, 0.022583008, 0.0060768127, -0.029067993, 0.0022792816, -0.012008667, -0.024673462, -0.033172607, -0.029434204, -0.021987915, -0.01386261, 0.035827637, -0.010307312, 0.0440979, -0.011405945, 0.041168213, -0.007194519, 0.053466797, -0.0043754578, 0.013801575, 0.039764404, -0.046539307, 0.032806396, -0.010284424, 0.019683838, -0.01197052, 0.047027588, 0.0035419464, -0.041503906, 0.01373291, 0.036956787, -0.0070381165, -0.0005803108, 0.038726807, 0.042816162, -0.08972168, 0.0036888123, -0.025802612, 0.005554199, -0.0019550323, 0.032318115, 0.0052719116, 0.024765015, 0.01398468, 0.021987915, 0.008666992, -0.0027217865, 0.032165527, -0.0079422, 0.016540527, -0.007911682, 0.008804321, 0.0006432533, 0.04031372, 0.018310547, -0.030090332, -0.01828003, 0.039794922, 0.022140503, -0.0016956329, 0.022232056, -0.02229309, 0.0040664673, -0.011009216, -0.0029659271, -0.036468506, -0.043304443, -0.0021343231, 0.024505615, -0.0057029724, 0.02406311, -0.0031757355, -0.004295349, -0.00944519, -0.0357666, 0.016967773, -0.028411865, 0.011245728, 0.024459839, 0.013061523, -0.04446411, -0.041107178, -0.01007843, -0.012451172, 0.0033245087, 0.04006958, 0.001159668, 0.11975098, 0.01689148, -0.005443573, 0.029144287, -0.033081055, -0.009017944, 0.0053520203, 0.017547607, 0.008102417, 0.006385803, -0.01386261, -0.041900635, -0.004787445, 0.0006914139, -0.010879517, -0.018859863, 0.012748718, 0.017913818, 0.013381958, -0.03112793, -0.012466431, -0.007217407, -0.045440674, 0.08868408, -0.042816162, -0.0031642914, -0.048950195, -0.08203125, -0.007701874, -0.0016584396, -0.072387695, 0.05227661, 0.0038776398, -0.019454956, -0.008682251, -0.0063552856, 0.005115509, -0.06335449, -0.004512787, -0.009437561, 0.035736084, -0.010261536, 0.04360962, -0.008674622, -0.031204224, -0.050231934, 0.004146576, -0.032287598, 0.0031967163, -0.028457642, 0.03881836, 0.040161133, 0.014953613, 0.027023315, 0.038116455, 0.01687622, 0.0036754608, -0.010292053, -0.041229248, -0.020385742, 0.019744873, 0.005859375, -0.020568848, -0.05407715, 0.02230835, -0.0011768341, -0.01411438, 0.04727173, -7.1525574e-05, -0.032409668, -0.014205933, -0.023635864, -0.032104492, -0.027511597, 0.0014925003, -0.0034618378, 0.015899658, -0.03643799, -0.037017822, 0.018936157, 0.055114746, 0.043670654, -0.021987915, -0.009979248, -0.045837402, -0.019058228, -0.025558472, -0.007537842, 0.028167725, 0.01852417, -0.07104492, -0.03289795, 0.011428833, 0.0003170967, -0.02432251, 0.024978638, 0.025527954, 0.024337769, 0.029174805, 0.028930664, 0.012481689, -0.035980225, 0.020507812, -0.034454346, -0.09313965, -0.0014266968, 0.010932922, -0.01537323, -0.016098022, -0.01838684, 0.015686035, -0.02746582, -0.007457733, -0.008300781, -0.028137207, 0.006919861, 0.023101807, 0.0053215027, 0.0023040771, 0.00035429, -0.028015137, -0.030517578, 0.00050258636, 0.020233154, -0.008239746, -0.004459381, -0.007118225, 5.3465366e-05, 0.05407715, -0.037384033, -0.018539429, -0.023147583, -0.021118164, -0.03189087, 0.023971558, 0.029006958, -0.012176514, -0.0071640015, 0.060516357, -0.025894165, -0.050445557, 0.010467529, 0.06512451, 0.03302002, 0.011421204]}, "B077TFYR4T": {"id": "B077TFYR4T", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage\nDescription: \nFeatures: Rich heritage finish\nPropane ready (fuel conversion not permitted)\nUp to 20, 000 BTU's/hr heats up to 700 sq. Ft\nThermostat control knob automatically maintains your ideal heat level\nWall or corner installation options included\n", "metadata": {"Name": "Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage", "Brand": "Pleasant Hearth", "Description": "", "Features": "Rich heritage finish\nPropane ready (fuel conversion not permitted)\nUp to 20, 000 BTU's/hr heats up to 700 sq. Ft\nThermostat control knob automatically maintains your ideal heat level\nWall or corner installation options included", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.054901123, 0.0063476562, -0.024917603, -0.06536865, 0.03253174, -0.024993896, 0.011482239, -0.00116539, -0.0211792, 0.007583618, -0.030441284, 0.013008118, 0.016235352, -0.03488159, 0.026855469, -0.027938843, 0.037139893, -0.00020849705, 0.01625061, -0.034332275, 0.0070228577, -0.008171082, 0.01574707, 0.08605957, 0.036193848, -0.03756714, 0.0053977966, 0.012054443, 0.014976501, 0.005268097, 0.022491455, 0.005168915, 0.059753418, -0.025466919, -0.030029297, 0.031555176, 0.021743774, -0.03491211, -0.030471802, 0.022262573, -0.009918213, 0.0067634583, -0.06903076, -0.0574646, -0.048095703, -0.015029907, -0.006126404, 0.02079773, 0.004776001, 0.03302002, -0.0015630722, -0.016418457, -0.012290955, 0.021514893, -0.015029907, -0.03994751, 0.020889282, -0.013557434, 0.0033683777, -0.032562256, -0.017913818, 0.035095215, 0.033569336, 0.038146973, -0.022064209, 0.021408081, 0.098083496, 0.009170532, 0.032440186, -0.056671143, -0.058380127, 0.049835205, 0.020767212, -0.05142212, -0.020523071, 0.04232788, -0.016494751, -0.010276794, 0.020843506, -0.024368286, -0.051971436, -0.025390625, -0.03668213, -0.007843018, -0.011199951, 0.02609253, -0.0234375, -0.008926392, -0.009925842, -0.009521484, -0.016433716, -0.041656494, -0.008476257, 0.028411865, 0.011047363, -0.03756714, -0.017944336, -0.068481445, 0.05480957, 0.0102005005, 0.020309448, -0.06185913, 0.034729004, 0.0044441223, -0.0002565384, 0.018875122, -0.013282776, 0.044281006, 0.0748291, 0.031829834, 0.019226074, 0.051879883, -0.013870239, -0.0073928833, -0.02949524, 0.00687027, -0.05758667, 0.019851685, 0.017150879, 0.03643799, -0.012557983, 0.0015935898, 0.011161804, 0.012588501, -0.01637268, -0.008010864, -0.0058250427, -0.0079422, -0.034973145, -0.009887695, 0.0005021095, -0.008811951, -0.022079468, 0.055877686, 0.008613586, 0.0029830933, 0.014450073, 0.026153564, 0.024047852, -0.046203613, 0.012672424, 0.020385742, 0.040740967, -0.0018472672, -0.0013275146, 0.0034980774, 0.015960693, 0.026519775, -0.008979797, -0.036621094, 0.008270264, -0.01033783, -0.0062332153, -0.0058059692, 0.012573242, -0.038879395, -0.03866577, -0.018859863, 0.05831909, 0.003227234, 0.026733398, -0.026245117, -0.032470703, 0.023468018, -0.025939941, 0.043914795, 0.013618469, 0.00844574, 0.035186768, 0.07745361, 0.03479004, -0.018630981, 0.009429932, 0.033721924, 0.0006117821, 0.00642395, -0.021575928, 0.03591919, 0.04119873, -0.08276367, -0.05999756, -0.07745361, 0.061431885, -0.029556274, -0.016998291, 0.016799927, 0.027999878, 0.030181885, -0.013114929, 0.013763428, 0.037017822, 0.044830322, 0.062805176, -0.029846191, -0.017959595, -0.06286621, -0.035491943, -0.030059814, -0.040252686, 0.06793213, 0.019119263, -0.028945923, 0.045043945, -0.011795044, -0.038330078, 0.016601562, -0.02420044, 0.017196655, 0.029678345, 0.0154418945, -0.00907135, 0.0042648315, 0.020599365, -0.08178711, -0.049682617, 0.014968872, 0.033294678, 0.03579712, 0.01612854, -0.04107666, 0.029708862, -0.03656006, 0.04827881, 0.08459473, -0.02029419, 0.011161804, -0.030456543, 0.02029419, -0.021591187, 0.011993408, 0.019943237, 0.016662598, 0.011604309, 0.062683105, 0.03942871, 0.03930664, 0.06793213, -0.004764557, 0.011383057, -0.028640747, 0.018615723, -0.020965576, -0.01499176, 0.042541504, -0.00881958, 0.01574707, 0.03753662, -0.0008878708, -0.00018298626, 0.0803833, 0.009048462, 0.03363037, -0.010528564, 0.017745972, -0.054718018, 0.037963867, -0.028839111, -0.0034942627, -0.00920105, 0.006412506, 0.007347107, 0.062072754, 0.007259369, 0.027191162, 0.039031982, 0.04812622, 0.071899414, 0.078186035, -0.015701294, -0.005718231, -0.004436493, 0.0440979, -0.0017127991, -0.023712158, -0.019805908, -0.009170532, -0.026916504, 0.026626587, 0.007537842, -0.036590576, 0.0042762756, -0.024978638, -0.02420044, 0.0021133423, 0.06555176, 0.024490356, -0.010978699, -0.013435364, -0.02003479, 0.010551453, 0.01965332, 0.027923584, -0.010345459, 0.024612427, 0.014595032, -0.0022449493, 0.025924683, -0.0496521, 0.039398193, -0.05203247, 0.0309906, 0.054870605, -0.037750244, 0.03463745, -0.0098724365, 0.012466431, 0.00466156, 0.011276245, 0.0031280518, -0.061523438, 0.01687622, -0.0063438416, 0.0070724487, 0.043945312, -0.02331543, -0.0040664673, 0.012619019, 0.023529053, 0.05529785, 0.042755127, -0.03744507, 0.042633057, -0.008651733, -0.010925293, 0.046905518, -0.007358551, -0.04058838, 0.0014753342, -0.022140503, -0.011756897, 0.035125732, -0.03955078, -0.0022449493, -0.04046631, -0.004055023, -0.0096206665, -0.002155304, 0.03463745, -0.026931763, -0.03881836, -0.030776978, -0.026519775, 0.022476196, 0.0006337166, -0.028259277, -0.007068634, -0.021255493, 0.00920105, -0.032470703, -0.011566162, 0.0059661865, -0.011764526, 0.01689148, -0.011817932, 0.00793457, -0.012565613, -0.031921387, -0.012145996, -0.008911133, -0.054107666, -0.05014038, -0.04763794, -0.08203125, -0.03414917, 0.051574707, 0.026046753, -0.0715332, 0.0017023087, -0.060455322, -0.030975342, 0.032562256, -0.05834961, -0.029525757, -0.033813477, -0.06573486, 0.013244629, 0.05142212, -0.005290985, 0.008842468, 0.02381897, 0.046020508, 0.02772522, 0.009292603, -0.010627747, 0.012763977, 0.015686035, 0.05432129, 0.028839111, 0.054534912, -0.028778076, 0.046691895, 0.05795288, -0.061645508, -0.004245758, 0.04660034, 0.01423645, -0.018463135, 0.024154663, -0.1027832, -0.010978699, -0.09338379, 0.015701294, -0.020599365, -0.035369873, -0.0018386841, -0.057037354, -0.028457642, -0.04559326, -0.0005850792, 0.064453125, 0.014984131, -0.02368164, 0.03024292, -0.014945984, 0.010009766, -0.0008058548, 0.0071907043, -0.0041656494, 0.0040664673, -0.035095215, 0.024719238, -0.061065674, 0.02822876, 0.0034828186, -0.05316162, 0.018432617, -0.010063171, 0.04849243, 0.013595581, 0.0052490234, -0.0072364807, -0.019882202, -0.032684326, -0.029769897, 0.0050582886, 0.007091522, -0.009643555, -0.008476257, 0.0012130737, 0.0026874542, -0.040222168, -0.031280518, 0.031707764, 0.022628784, 0.011955261, 0.005908966, -0.037109375, -0.016555786, -0.019943237, -0.008049011, 0.009994507, 0.0020503998, 0.031051636, 0.024230957, -0.01737976, 0.040130615, -0.0031528473, 0.0423584, 0.029205322, -0.036865234, -0.009933472, -0.042907715, 0.020309448, 0.015792847, 0.014213562, -0.050994873, 0.024032593, 0.014411926, 0.023849487, -0.019302368, 0.006263733, 0.057891846, 0.03201294, -0.00037002563, -0.016052246, -0.00819397, 0.024398804, 0.033843994, -0.035583496, -0.02684021, -0.028030396, 0.013511658, -0.054260254, 0.061462402, 0.033569336, -0.009994507, 0.031280518, 0.0020828247, -2.092123e-05, 0.004928589, 0.010719299, 0.008285522, 0.008224487, 0.027435303, 0.0013399124, -0.02420044, 0.010620117, -0.04067993, -0.00035953522, -0.019836426, -0.04019165, 0.02720642, 0.05102539, 0.0022182465, -0.06225586, -0.0051612854, 0.03692627, -0.0006532669, 0.019989014, -0.053222656, 0.034332275, -0.028045654, 0.04763794, 0.01108551, -0.021026611, -0.027908325, 0.0032596588, 0.031158447, -0.05102539, 0.008407593, 0.015655518, 0.0022125244, -0.011985779, 0.037719727, 0.004558563, 0.010437012, -0.04876709, -0.017593384, -0.008018494, -0.034698486, 0.021591187, 0.015838623, -0.026855469, 0.014144897, -0.0013036728, 0.020767212, 0.006427765, -0.013999939, -0.054992676, -0.032562256, -0.0059776306, 0.0022907257, 0.009559631, -0.03704834, 0.0002667904, -0.03112793, -0.053771973, -0.04309082, 0.022079468, -0.03677368, -0.033172607, -0.02229309, -0.02822876, -0.015136719, -0.03125, -0.01260376, -0.035064697, 0.019454956, 0.010902405, -0.018997192, 0.03086853, 0.012428284, -0.0440979, -0.011871338, 0.005050659, -0.020812988, 0.038146973, -0.013458252, -0.011878967, -0.03414917, -0.029052734, -0.027008057, 0.019180298, 0.030654907, -0.030960083, 0.021102905, -0.014701843, -0.009063721, 0.01663208, 0.021560669, -0.049438477, 0.007408142, 0.010749817, -0.06329346, -0.061157227, 0.0063972473, 0.044799805, -0.051208496, -0.038085938, 0.019134521, 0.08459473, -0.017440796, 0.04095459, 0.044647217, -0.020004272, -0.026275635, 0.035247803, -0.11785889, -0.040496826, -0.030792236, -0.025009155, 0.0071983337, 0.008148193, -0.02684021, 0.0440979, 0.04421997, -0.015556335, 0.007133484, -0.0052986145, 0.013946533, -0.011451721, -0.0045318604, -0.010383606, 0.009689331, -0.012229919, 0.0019950867, 0.0061073303, 0.0006017685, 0.035339355, 0.00026464462, 0.031433105, 0.0012178421, 0.026504517, 0.018844604, 0.021957397, 0.010818481, 0.017211914, 0.051605225, 0.0019044876, -0.041015625, 0.0064353943, -0.04714966, -0.0031089783, -0.024627686, 0.055999756, 0.008094788, 0.0129776, 0.03616333, -0.0103302, -0.036499023, -0.0043182373, 0.022354126, -0.019561768, -0.023635864, 0.072143555, -0.015281677, -0.013298035, 0.02180481, -0.020507812, -0.043060303, -0.029006958, -0.00522995, -0.021911621, 0.01965332, 0.0021381378, -0.038726807, 0.017501831, 0.054504395, -0.006767273, -0.013954163, -0.0011472702, 0.030151367, 0.0036525726, -0.04269409, 0.04977417, 0.036834717, 0.0030441284, 0.050231934, -0.021636963, 0.057891846, 0.0085372925, 0.0029907227, -0.00085783005, -0.0053634644, 0.016235352, -0.038360596, 0.03945923, 0.011070251, -0.011375427, -0.06555176, -0.016815186, 0.011039734, 0.024856567, 0.01651001, -0.027572632, 0.050109863, 0.019958496, -0.026443481, 0.02330017, 0.04269409, -0.016296387, -0.03778076, 0.039093018, -0.058654785, -0.040802002, 0.005584717, -0.049468994, 0.04748535, -0.037628174, 0.01890564, 0.027770996, 0.025253296, -0.021743774, -0.012397766, -0.024291992, 0.009147644, -0.024429321, -0.014656067, -0.019882202, 0.00868988, -0.024627686, -0.013084412, 0.00166893, 0.0015325546, -0.017791748, -0.016525269, -0.032196045, 0.009727478, -0.020904541, 0.019012451, -0.033294678, 0.007484436, 0.049560547, -0.016662598, 0.014564514, 0.057769775, -0.05142212, -0.013908386, 0.012634277, 0.039855957, 0.016296387, 0.008399963, 0.014221191, 0.00050878525, 0.00749588, -0.01638794, 0.029815674, -0.030166626, -0.03225708, 0.08013916, 0.07977295, 0.007083893, 0.0209198, 0.013435364, -0.03793335, -0.0079574585, -0.0053863525, -0.021072388, -0.032714844, -0.048431396, 0.01826477, 0.0073127747, -0.042266846, 0.0137786865, 0.026992798, 0.009849548, -0.010765076, -0.0024261475, -0.038482666, 0.0016784668, -0.06304932, 0.003692627, -0.004016876, 0.029052734, 0.030136108, 0.05227661, -0.0440979, -0.006996155, -0.0018663406, 0.009925842, 0.0002682209, -0.017318726, -0.0066223145, 0.030792236, 0.023223877, 0.028381348, 0.02456665, -0.05609131, -0.015197754, 0.030410767, 0.026290894, 0.0129470825, -0.03265381, -0.01991272, -0.028045654, 0.0126953125, 0.038116455, 0.031707764, -0.012069702, 0.011764526, 0.0680542, 0.023483276, 0.010231018, 0.036346436, 0.05758667, 0.015304565, -0.042999268, 0.0005931854, 0.0031089783, -0.04751587, -0.002325058, -0.031982422, -0.0069999695, -0.0017118454, -0.015960693, -0.0010185242, 0.02027893, 0.020004272, 0.0075645447, 0.012939453, 0.009613037, 0.024002075, 0.03463745, 0.017074585, -0.04269409, 0.029418945, 0.021743774, -0.002937317, -0.006374359, 0.041809082, -0.0044441223, 0.007171631, -0.003572464, 0.05203247, -0.052642822, 0.014808655, 0.012245178, -0.047668457, 0.00333786, -0.009552002, -0.016937256, -0.02748108, -0.010688782, 0.005756378, -0.016052246, 0.017456055, 0.009986877, 0.08355713, -0.022583008, 0.012550354, 0.042510986, -0.017364502, 0.04522705, 0.0042304993, 0.06878662, 0.014404297, 0.012466431, -0.039154053, -0.06524658, 0.005886078, 0.020812988, 0.010971069, 0.034240723, -0.026473999, 0.015396118, 0.0008354187, 0.012077332, -0.035614014, -0.04156494, -0.01020813, 0.00881958, -0.003358841, 0.0015335083, -0.01663208, 0.004722595, 0.044921875, -0.0010547638, 0.021835327, -0.005077362, 0.0231781, 0.026748657, 0.008514404, -0.025177002, -0.0035648346, -0.015342712, 0.00041389465, -0.0073242188, 0.015052795, 0.011329651, -0.052093506, 0.028945923, -0.05419922, 0.032958984, -0.026306152, -0.011184692, -0.036895752, 0.03982544, 0.039398193, 0.008888245, 0.0013771057, 0.021621704, -0.021148682, 0.004283905, 0.022460938, -0.004814148, 0.033416748, 0.0017614365, 0.022155762, -0.03253174, 0.0029067993, -0.025421143, -0.035949707, 0.04562378, -0.04031372, -0.01184845, 0.022140503, 0.006839752, -0.05807495, -0.005683899, -0.022079468, -0.010986328, -0.006904602, -0.024047852, -0.010795593, 0.0069236755, 0.02407837, -0.01626587, -0.014755249, 0.030273438, -0.02192688, -0.011192322, 0.043640137, -0.041015625, -0.03189087, -0.04650879, 0.028030396, -0.10308838, -0.014259338, -0.008583069, -0.04244995, -0.06384277, -0.032287598, -0.0021247864, -0.0005631447, 0.041137695, -0.018875122, 0.013076782, 0.010726929, 0.005050659, -0.02468872, 0.0059547424, -0.025787354, -0.026657104, -0.032562256, -0.0042304993, 0.006668091, 0.0038833618, 0.0135650635, -0.0670166, 0.0151901245, 0.0043640137, -0.023864746, -0.017044067, -0.010047913, 0.0021686554, -0.0053215027, -0.046875, -0.019836426, 0.009002686, 0.024459839, 0.032989502, 0.013381958, 0.028274536, -0.036590576, -0.074279785, -0.061401367, -0.014549255, 0.056671143, -0.020584106, -0.011016846, 0.034973145, 0.04135132, -0.028701782, 0.02947998, 0.036895752, -0.011444092, 0.0039138794, 0.028808594, -0.068115234, 0.0068893433, -0.009117126, -0.009178162, -0.022628784, 0.0793457, 0.011062622, -0.020904541, -0.0037326813, -0.017242432, -0.035461426, 0.0151901245, -0.04486084, -0.036132812, -0.004146576, -0.037963867, 0.042633057, 0.017700195, 0.010948181, -0.023788452, 0.038513184, -0.011711121, -0.017562866, 0.0055732727, 0.0082473755, 0.0078048706, 0.0016393661, -0.01991272, -0.0015487671, -0.008575439, 0.023880005, -0.06317139, -0.008514404, 0.046142578, 0.011482239, -0.055908203, 0.05670166, -0.093933105, 0.020812988, 0.021972656, -0.020462036, 0.02116394, -0.03475952, -0.0050582886, -0.015686035, -0.020095825]}, "B09B76PJKX": {"id": "B09B76PJKX", "original": "Brand: PAMASE\nName: Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)\nDescription: Want to make your gas tank durable enough to serve you for a long time?
      We sincerely recommend our propane gas tank cover bag to you!

      Features
      1. Measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder
      2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
      3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
      4. Easy to pick up or place the gas tank and open or close the valve
      5. With four ventilation grommets, two side pockets and thick carrying handles

      Specification:
      Color: Black
      Size: 12.5\" x 19.4\"
      Material: 600D Oxford Cloth\nFeatures: [Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it's absolutely perfect for placing it next to your outdoor grill or camping stove.\n[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank.\n[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table.\n[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve.\n[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don't strangle your hand at all.\n", "metadata": {"Name": "Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)", "Brand": "PAMASE", "Description": "Want to make your gas tank durable enough to serve you for a long time?
      We sincerely recommend our propane gas tank cover bag to you!

      Features
      1. Measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder
      2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
      3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
      4. Easy to pick up or place the gas tank and open or close the valve
      5. With four ventilation grommets, two side pockets and thick carrying handles

      Specification:
      Color: Black
      Size: 12.5\" x 19.4\"
      Material: 600D Oxford Cloth", "Features": "[Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it's absolutely perfect for placing it next to your outdoor grill or camping stove.\n[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank.\n[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table.\n[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve.\n[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don't strangle your hand at all.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004180908, -0.016281128, -0.007041931, -0.022216797, -0.0149002075, 0.015022278, -0.026031494, 0.0065994263, -0.02696228, -0.024215698, -0.05508423, 0.026382446, -0.07598877, -0.013961792, 0.014434814, -0.066589355, 0.00044441223, -0.015266418, -0.024093628, -0.035827637, -0.015808105, -0.05114746, 0.02684021, 0.022399902, 0.014434814, -0.023925781, 0.03741455, -0.0031051636, 0.005016327, -0.027862549, 0.015357971, 0.013031006, 0.034301758, -0.006134033, -0.005466461, 0.026885986, 0.011306763, 0.0008530617, 0.010131836, 0.0065345764, 0.00026631355, -0.004447937, 0.01096344, -0.03656006, 0.014053345, -0.041870117, 0.013214111, -0.052642822, 0.020370483, 0.03427124, -0.0011796951, 0.0256958, -0.013320923, 0.0059890747, -8.940697e-07, 0.005302429, 0.02619934, -0.02168274, 0.008796692, 8.165836e-05, 0.009284973, 0.03744507, 0.016708374, 0.014251709, -0.043762207, 0.016983032, 0.054351807, -0.029251099, -0.0062446594, -0.033355713, 0.013969421, 0.013000488, 0.015296936, -0.03640747, -0.06652832, 0.026275635, -0.009887695, -0.041748047, 0.031280518, -0.030685425, -0.02027893, -0.012702942, 0.059326172, -0.038604736, -0.004146576, -0.02067566, -0.024017334, -0.0001553297, 0.019073486, -0.014907837, 0.002231598, 0.01991272, 0.014007568, 0.0211792, -0.032958984, -0.017227173, -0.021759033, -0.04660034, 0.02331543, 0.02772522, 0.031433105, -0.047943115, 0.06921387, -0.007926941, -0.0067214966, 0.040649414, 0.0118255615, -0.021972656, -0.004699707, -0.00724411, -0.03112793, 0.0101623535, -0.03692627, -0.045776367, -0.0007491112, 0.03778076, -0.04046631, -0.004333496, 0.005847931, -0.009857178, -0.022262573, -0.011070251, 0.0006904602, -0.027862549, 0.033721924, 0.0010156631, -0.03265381, 0.036376953, -0.043029785, 0.039978027, -0.02015686, -0.0132369995, 0.0058631897, 0.05795288, 0.016174316, -0.020568848, 0.039093018, -0.0062294006, -0.0031032562, 0.031799316, -0.061462402, -0.008621216, 0.048309326, -0.029373169, -0.043884277, 0.046295166, 0.02947998, -0.007080078, -0.03050232, -0.06112671, -0.013931274, -0.027236938, 0.046051025, -0.005050659, -0.05834961, 0.00340271, -0.024459839, -0.002401352, -0.05810547, -0.041748047, -0.026046753, -0.023117065, 0.006061554, 0.031280518, -0.003227234, 0.05581665, 0.011360168, -0.0036296844, 0.009513855, 0.016860962, -0.038635254, 0.021530151, 0.023620605, 0.00894928, 0.0034275055, 0.0029525757, -0.022766113, 0.08728027, 0.072265625, -0.10638428, -0.06842041, -0.07104492, 0.15039062, -0.034423828, -0.0073776245, -0.06726074, 0.02708435, -0.024230957, 0.017410278, 0.016357422, 0.030227661, 0.0017728806, -0.017623901, -0.017120361, -0.0012979507, 0.009155273, -0.0082473755, 0.0154953, -0.0025615692, -0.012184143, -0.03616333, -0.00894165, 0.013259888, 0.03289795, 0.050048828, -0.041870117, 0.021362305, -0.009727478, -0.0049934387, 0.0053977966, 0.0073661804, -0.0021457672, 0.0026226044, -0.036712646, 0.001832962, 0.049743652, -0.013427734, 0.005531311, -0.011192322, -0.0019702911, 0.038482666, -0.02949524, 0.02758789, 0.027145386, -0.014434814, -0.012336731, -0.0113220215, 0.00048708916, -0.00025105476, -0.011383057, 0.05697632, 0.012207031, 0.090270996, 0.040130615, -0.04031372, 0.018859863, 0.018432617, -0.024017334, -0.03729248, 0.043884277, 0.0368042, -0.05517578, -0.0036334991, 0.016708374, 0.0027065277, -0.027420044, 0.013313293, -0.0009264946, -0.022781372, 0.02468872, 0.054382324, 0.00068950653, 0.003288269, 0.034820557, -0.015182495, 0.019607544, -0.058258057, 0.012260437, -0.0134887695, 0.026565552, -0.02418518, 0.05883789, 0.087646484, -0.0030918121, 0.011482239, 0.020217896, 0.05053711, 0.052642822, -0.016082764, 0.0014047623, -0.0005517006, 0.044036865, 0.007411957, 0.048797607, -0.017974854, 0.021072388, -0.03074646, -0.00415802, -0.0027370453, 0.029373169, 0.008644104, -0.0075645447, -0.0064849854, 0.0034427643, 0.034423828, 0.017288208, 0.022079468, 0.01398468, -0.018112183, -0.00970459, 0.0309906, -0.005771637, -0.0095825195, -0.026885986, 0.026947021, -0.017730713, 0.0023784637, -0.016326904, 0.021911621, -0.012107849, -0.0010662079, 0.04699707, -0.010871887, 0.022369385, -0.0073280334, 0.011474609, -0.03286743, 0.034362793, 0.010032654, -0.027511597, -0.034301758, -0.0053901672, 0.0231781, 0.031555176, 0.009414673, 0.0019721985, -0.016723633, 0.05102539, 0.0597229, 0.09515381, 0.028381348, -0.001537323, -0.026046753, 0.014564514, -0.011253357, -0.004383087, -0.0011539459, -0.011528015, -0.060821533, -0.0038909912, 0.006893158, -0.048614502, 0.0023231506, 0.017562866, -0.008583069, -0.003528595, 0.0077705383, 0.039886475, 0.01927185, -0.022583008, 0.03756714, 0.0018672943, -0.014701843, 0.0184021, -0.040618896, -0.03262329, 0.0657959, -9.49502e-05, -0.025558472, 0.016738892, 0.027313232, -0.01876831, 0.0009074211, -0.052825928, -0.016021729, 0.022979736, -0.02255249, -0.058502197, -0.0016641617, -0.082214355, 0.0042533875, -0.028808594, -0.0690918, -0.0814209, 0.064208984, 0.011711121, -0.06945801, -0.04989624, 0.031707764, 0.03237915, -0.0011386871, 0.026351929, -0.06829834, -0.016281128, -0.012138367, -0.006095886, 0.04171753, -0.034118652, 0.010566711, 0.020706177, -0.027328491, 0.008598328, -0.024795532, 0.020874023, -0.00048613548, 0.034210205, 0.06402588, 0.024658203, 0.021865845, -0.038604736, 0.03488159, 0.06185913, -0.0071411133, -0.022033691, -0.013259888, -0.0056610107, -0.012992859, 0.008674622, -0.009155273, -0.008300781, -0.05987549, 0.013580322, 0.0068626404, -0.021652222, -0.009971619, -0.04776001, -0.028640747, -0.035827637, 0.026794434, 0.047821045, -0.0259552, -0.005996704, -0.008056641, -0.0038318634, -0.0032520294, 0.00573349, -0.036956787, -0.0066986084, -0.045043945, 0.027801514, 0.041992188, -0.04727173, -0.001247406, 0.02734375, 0.00063705444, 0.008682251, 0.019256592, 0.0063171387, 0.006389618, -0.0064811707, 0.001329422, -0.03326416, -0.010520935, 0.011581421, -0.021774292, -0.0011301041, -0.011917114, -0.061950684, 0.025283813, -0.037139893, -0.0015048981, -0.0146484375, 0.026123047, 0.027862549, -0.030288696, 0.018417358, 0.004131317, 0.028884888, -0.011413574, -0.003736496, -0.011764526, 0.021011353, -0.00957489, 0.00970459, -0.019699097, -0.012496948, 0.019592285, 0.029251099, -0.0234375, 0.004749298, -0.019302368, -0.011932373, 0.041168213, -0.04248047, 0.00598526, -0.06500244, 0.05380249, -0.0059013367, 0.015716553, -0.01361084, -0.030029297, 0.041259766, 0.027130127, -0.01134491, 0.005554199, -0.012046814, 0.012008667, -0.0037937164, -0.0027389526, -0.026489258, -0.06768799, 0.0059394836, -0.075805664, 0.10748291, 0.047668457, -0.018600464, 0.115112305, 0.09576416, 0.0022087097, 0.008888245, 0.02230835, 0.032196045, 0.01285553, 0.053131104, 0.01739502, -0.034851074, -0.0009121895, -0.0068130493, 0.004928589, -0.0211792, 0.015533447, -0.017120361, -0.013999939, 0.0018081665, -0.04901123, 0.0020103455, 0.006290436, -0.025878906, 0.01878357, -0.02357483, -0.048461914, -0.03768921, 0.020980835, -0.0009794235, -0.003124237, 0.034484863, -0.027542114, -0.021743774, 0.0003297329, 0.0028648376, -0.017684937, -0.0126571655, -0.0065689087, 0.033416748, 0.022216797, 0.002904892, -0.031799316, 0.03164673, -0.044128418, -0.012062073, 0.02532959, 0.041503906, -0.016113281, -0.029022217, 0.022064209, -0.0022220612, -0.01373291, -0.0029621124, -0.04232788, -0.06323242, 0.017547607, 0.08581543, 0.015640259, -0.024429321, 0.01184082, -0.015380859, -0.015525818, 0.0075302124, -0.04724121, 0.011306763, -0.04107666, -0.02357483, -0.04647827, -0.013053894, -0.041503906, 0.039215088, -0.06439209, 0.028518677, 0.0031700134, -0.013473511, -0.020370483, 0.052764893, -0.055236816, -0.0003950596, -0.0071868896, 0.02709961, -0.031433105, -0.035339355, 0.011390686, -0.028427124, 0.0009126663, -0.026870728, 0.007911682, -0.0046806335, -0.009567261, -0.018096924, 1.9073486e-05, 0.007080078, 0.0030174255, -0.015159607, -0.010467529, 0.046142578, 0.029464722, 0.03265381, -0.10662842, 0.0012998581, 0.030792236, -0.044769287, -0.092041016, -0.041137695, 0.10333252, 0.022109985, -0.0129470825, -0.032318115, 0.016525269, 0.05996704, -0.015449524, -0.03111267, -0.012550354, 0.012329102, -0.049804688, -0.019119263, -0.009216309, -0.018112183, 0.08758545, 0.020965576, -0.009269714, -0.0028820038, 0.0068092346, 0.011100769, 0.0017290115, -0.0040779114, -0.02633667, 0.020385742, -0.025970459, -0.01713562, -0.09350586, 0.081970215, 0.046020508, 0.0069732666, -0.0034542084, -0.03665161, -0.026748657, -0.057861328, -0.022323608, -0.009666443, 0.058746338, 0.028015137, -0.023086548, -0.031951904, -0.01689148, -0.02809143, -0.03100586, -0.027175903, -0.028182983, 0.038146973, -0.022201538, -0.030044556, -0.013008118, 0.008110046, 0.03475952, -0.033843994, -0.016784668, -0.017227173, -0.022994995, -0.025741577, -0.0033397675, 0.049194336, -0.01965332, 0.017562866, -0.010536194, 0.012008667, -0.046722412, 0.036621094, 0.034179688, 0.04837036, -0.026397705, 0.005531311, -0.038085938, -0.016571045, -0.031433105, -0.022781372, -0.0048675537, 0.016677856, 0.027542114, -0.008132935, -0.0032081604, -0.0018615723, -0.014755249, 0.017547607, -0.0046043396, -0.045806885, 0.022888184, 0.047973633, -0.014839172, -0.05871582, 0.07086182, -0.015472412, -0.047912598, -0.0023555756, 0.019042969, -0.01586914, 0.010826111, -0.030303955, -0.011726379, 0.02583313, -0.049102783, 0.008163452, 0.012825012, 0.04107666, 0.0013160706, 0.02243042, 0.016555786, -0.016952515, -0.059051514, -0.0022659302, -0.02671814, 0.0056991577, -0.007499695, -0.009887695, 0.03491211, 0.0038604736, -0.036193848, -0.036712646, 0.016204834, -0.011039734, -0.0362854, -0.006111145, 0.032806396, 0.017028809, 0.009925842, 0.010658264, 0.014183044, 0.014854431, -0.057037354, -0.0074882507, 0.0035305023, 0.025787354, 0.005344391, 0.04888916, -0.034942627, -0.044677734, -0.053771973, 0.01184845, 0.0109939575, -0.04244995, -0.053253174, -0.013328552, -0.013809204, -0.010826111, 0.019134521, -0.026382446, 0.04611206, -0.020706177, -0.03793335, -0.053253174, 0.025894165, 0.0022850037, -0.03665161, 0.06185913, 0.014060974, 0.007648468, 0.022827148, -0.015213013, -0.012130737, 0.030792236, 0.018569946, -0.07733154, -0.03237915, -0.012199402, -0.018966675, -0.017364502, 0.00012469292, -0.017440796, 0.046875, -0.01890564, -0.013496399, -0.03439331, 0.0001487732, -0.015930176, 0.02168274, 0.009223938, -0.023651123, 0.003753662, -0.0625, -0.013320923, -0.05316162, -0.05996704, 0.0073394775, 0.008666992, 0.022262573, 0.012283325, 0.0022716522, -0.020965576, -0.028671265, 0.007129669, 0.022323608, -0.039489746, 0.0178833, -0.011932373, -0.0029392242, 0.010910034, 0.009864807, 0.012039185, -0.009788513, -0.006290436, 0.039886475, 0.007205963, -0.042785645, -0.011375427, 0.056488037, 0.04309082, -0.0059432983, -0.022232056, 0.009803772, -0.00856781, -0.02885437, -0.014457703, -0.011703491, -0.025009155, 0.00869751, -0.0062675476, -0.017974854, 0.013748169, -0.017456055, 0.018005371, -0.0073623657, 0.051849365, -0.042266846, 0.0044898987, -0.0032138824, -0.018157959, 0.025512695, -0.027160645, 0.015281677, -0.039520264, -0.03250122, -0.0007543564, -0.010574341, -0.034454346, 0.03729248, 0.038238525, -0.0058555603, 0.010566711, 0.02696228, -0.004737854, 0.019332886, -0.042663574, 0.03579712, 0.018173218, -0.0025196075, 0.02848816, -0.021697998, -0.020858765, -0.03086853, 0.066711426, 0.011138916, 0.075805664, -0.048950195, 0.05291748, -0.042114258, 0.002998352, -0.031707764, -0.047821045, 0.068603516, 0.029632568, -0.020065308, -0.021820068, -0.007827759, 0.0209198, 0.041900635, -0.008232117, -0.0010566711, -0.0037956238, 0.010681152, -0.010787964, -0.0064048767, -0.040100098, -0.028060913, 0.0047912598, 0.009742737, -0.0060539246, -0.015838623, -0.014656067, 0.031677246, -0.007843018, -0.043792725, 0.02319336, -0.052734375, 0.03326416, 0.020980835, 0.023925781, -0.058746338, -0.047546387, -0.016860962, -0.023391724, -0.001750946, 0.029800415, -0.023590088, 0.049316406, -0.018066406, -0.0071792603, 0.01600647, -0.010269165, 0.01146698, -0.010398865, -0.009887695, 0.0030708313, -0.035247803, -0.003730774, -0.031173706, -0.0034675598, 0.027908325, -0.007091522, -0.00749588, 0.0042877197, 0.0050201416, 0.015350342, -0.016983032, 0.011009216, 0.0015611649, -0.022994995, -0.0019350052, 0.004184723, 0.026245117, -0.043304443, -0.0446167, -0.059295654, -0.05239868, -0.06378174, 0.055725098, -0.04534912, -0.021774292, -0.014465332, 0.012077332, -0.020355225, -0.045837402, -0.041656494, 0.009803772, 0.017303467, -0.012519836, 0.04034424, -0.02961731, -0.035980225, -0.03314209, -0.0007638931, -0.035736084, -0.006679535, -0.05307007, 0.03152466, 0.023590088, -0.0039787292, 0.0010890961, 0.05001831, -0.0010890961, -0.0035057068, 0.01537323, -0.040008545, -0.03274536, 0.06561279, 0.014892578, -0.01737976, -0.011764526, 0.015975952, -0.006904602, -0.012702942, 0.025848389, -0.029464722, -0.041137695, -0.005264282, -0.009643555, -0.014060974, -0.005886078, 0.0011177063, 0.022415161, 0.024780273, -0.0054244995, 0.017913818, 0.0259552, -0.024139404, 0.011741638, 0.014953613, 0.017349243, -0.0042915344, -0.011077881, -0.02609253, -0.01576233, 0.011741638, 0.034454346, -0.041656494, -0.072021484, 0.007724762, 0.012954712, -0.021881104, 0.026733398, 0.026000977, -0.0012674332, -0.008857727, 0.01927185, -0.012939453, 0.0007157326, 0.020324707, -0.028244019, -0.042785645, -0.0021343231, 0.024887085, -0.03074646, -0.027389526, -0.015777588, 0.012207031, -0.024414062, -0.021316528, -0.074279785, -0.054626465, 0.04196167, 0.030181885, -0.016021729, -0.008056641, 0.013969421, 0.027252197, -0.0020599365, 0.015144348, -0.0005912781, 0.016418457, -0.010437012, 0.056030273, 0.011459351, 0.058166504, -0.010437012, -0.09466553, -0.04043579, 0.010635376, 0.035003662, -0.023468018, 0.07836914, -0.04257202, 0.017318726, 0.015083313, 0.0074539185, -0.014732361, 0.027832031, 0.055145264, 0.005683899, 0.022247314]}, "B07B8SN67W": {"id": "B07B8SN67W", "original": "Brand: Blaze Grills\nName: Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane\nDescription: Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you're hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.\nFeatures: DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output\nSTAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment\nKEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements\nPUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start\nEASY CLEANUP: Full-width drip tray offers quick and easy cleanup\n", "metadata": {"Name": "Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane", "Brand": "Blaze Grills", "Description": "Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you're hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.", "Features": "DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output\nSTAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment\nKEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements\nPUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start\nEASY CLEANUP: Full-width drip tray offers quick and easy cleanup", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03479004, 0.0031871796, -0.040893555, -0.07373047, 0.021224976, -0.02017212, 0.0013999939, 0.0340271, -0.064208984, -0.008636475, -0.021438599, 0.022857666, -0.015930176, -0.02406311, 0.052581787, -0.057891846, 0.020980835, 0.016174316, 0.0093688965, -0.029296875, 0.016708374, -0.034423828, 0.0028362274, 0.0993042, 0.046417236, -0.046539307, -0.00907135, -0.015090942, 0.04269409, 0.0073051453, 0.029632568, -0.00039434433, 0.042938232, -0.008361816, -0.040740967, -0.075683594, -0.050048828, -0.0129470825, -0.05987549, 0.026763916, 0.038269043, -0.029510498, -0.027786255, 0.003206253, -0.01348114, -0.036956787, 0.07897949, -0.019058228, 0.014442444, 0.01763916, -0.00016188622, -0.029022217, 0.009918213, -0.004776001, -0.015144348, -0.012054443, -0.014152527, -0.042266846, 0.010238647, 0.026412964, 0.008361816, -0.0038051605, 0.028198242, -0.015312195, -0.048187256, 0.0020999908, 0.08282471, -0.02178955, -0.008369446, -0.052368164, 0.01826477, 0.048187256, 0.0063591003, -0.026138306, 0.0014352798, 0.0070533752, -0.0019569397, -0.010719299, 0.017654419, 0.0004811287, -0.006000519, -0.05709839, 0.026046753, -0.008590698, 0.005836487, 0.0107421875, -0.019699097, 0.00091791153, -0.006072998, -0.013122559, -0.013092041, 0.001083374, -0.013511658, 0.040130615, -0.023269653, 0.0056419373, -0.040496826, -0.034118652, 0.016326904, -0.0018472672, 0.0024700165, -0.026748657, -0.016952515, 0.010917664, -0.019134521, 0.0657959, 0.019699097, 0.033843994, -0.018356323, 0.0030326843, 0.003862381, -0.051086426, 0.015014648, -0.03387451, -0.021148682, 0.0010032654, -0.002122879, 0.005569458, 0.02381897, -0.031555176, -0.03111267, -0.0074005127, -0.016021729, 0.0079574585, 0.012069702, 0.021072388, 0.0044898987, -0.0053138733, -0.012321472, 0.028198242, -0.02961731, -0.017150879, 0.055236816, 0.059387207, 0.02192688, -0.031585693, 0.0039253235, 0.009483337, 0.012451172, -0.036224365, 0.02746582, 0.009162903, 0.011177063, 0.014427185, -0.034698486, 0.009521484, 0.02229309, 0.01789856, -0.007713318, -0.049591064, -0.012931824, 0.011009216, 0.038879395, 0.007736206, -0.062286377, -0.008514404, -0.0025730133, -0.027648926, -0.0034599304, -0.053863525, 0.00081300735, -0.0038757324, 0.014411926, 0.019515991, -0.014335632, 0.030456543, 0.011024475, 0.010391235, 0.026611328, 0.009429932, 0.006088257, -0.03579712, 0.018569946, 0.014419556, -0.014732361, 0.021255493, -0.010131836, 0.0473938, 0.05682373, -0.101623535, -0.08319092, -0.059814453, 0.13061523, -0.056243896, -0.024246216, 0.008178711, -0.012992859, 0.0046081543, 0.03753662, 0.002954483, -0.008140564, -0.012275696, 0.0010290146, -0.05065918, 0.05407715, 0.018173218, -0.05987549, -0.016540527, 0.0113220215, -0.007621765, -0.012168884, 0.00806427, -0.013397217, 0.029663086, -0.008407593, 0.00819397, -0.007598877, 0.012741089, 0.010139465, 0.02507019, -0.013053894, 0.0038967133, 0.032409668, -0.10040283, -0.033935547, 0.006298065, -0.017089844, 0.010063171, -0.012054443, 0.0368042, -0.01802063, 0.007896423, -0.029846191, -0.0051498413, 0.026504517, -0.0090789795, -0.020339966, -0.013336182, 0.013771057, -0.002986908, -0.024032593, 0.025146484, 0.099243164, 0.11907959, 0.011459351, 0.03955078, 0.07501221, 0.037841797, -0.028503418, -0.037017822, 0.011360168, -0.03186035, -0.039855957, 0.034210205, -0.009010315, -0.038360596, -0.012741089, 0.034942627, -0.01637268, 0.009735107, 0.007698059, 0.007850647, 0.024841309, 0.010864258, 0.0037384033, 0.026977539, 0.0021324158, 0.006336212, -0.024124146, 0.010520935, 0.0021362305, 0.046051025, 0.0076065063, 0.008872986, 0.0024375916, -0.031158447, 0.009521484, 0.0066375732, 0.0051574707, -0.03161621, 0.023635864, 0.031799316, -0.01084137, -0.024093628, 0.034179688, 0.012168884, -0.04260254, 0.029083252, 0.01158905, -0.027908325, -0.02178955, -0.035705566, -0.029830933, -0.0038089752, 0.021652222, -0.016479492, 0.014839172, -0.0055236816, -0.025924683, -0.0066452026, 0.023956299, 0.0076408386, -0.014221191, -0.0038528442, -0.023773193, -0.0065689087, 0.05432129, 0.032226562, -0.009376526, 0.0056533813, 0.01259613, 0.02633667, -0.0062828064, -0.016342163, 0.0033359528, -0.00072050095, 0.048950195, 0.009490967, 0.003255844, -0.027526855, 0.014877319, 0.0018672943, 0.020309448, 0.03918457, 0.022903442, -0.007873535, 0.011444092, 0.035736084, 0.03741455, 0.017822266, -0.04559326, -0.020019531, -0.046539307, -0.023406982, -0.0022716522, 0.036590576, -0.025787354, -0.008354187, -0.0025291443, 0.0048103333, -0.02267456, -0.02796936, -0.0049552917, 0.0026340485, -0.005718231, -0.008460999, 0.009246826, 0.0011930466, -0.0006132126, -0.058807373, 0.030151367, -0.008491516, -0.007896423, 0.05911255, -0.029052734, -0.0206604, 0.036102295, 0.00057792664, -0.030761719, 0.004962921, 0.020339966, -0.030776978, 0.009979248, -0.02432251, -0.0019607544, -0.053771973, -0.025482178, -0.03503418, -0.06149292, -0.07128906, -0.025650024, -0.007446289, -0.04977417, -0.005634308, 0.07019043, -0.019699097, -0.043945312, -0.0021476746, -0.020629883, -0.01512146, 0.059417725, -0.012672424, -0.046051025, -0.035827637, -0.041809082, -0.022064209, 0.03817749, -0.02255249, -0.021530151, 0.0015296936, 0.006134033, 0.00472641, -0.028839111, -0.025680542, -0.014228821, 0.020706177, 0.043395996, 0.046813965, 0.014907837, -0.03289795, 0.014137268, 0.0637207, -0.009750366, -0.013206482, 0.009712219, 0.009109497, -0.05126953, -0.01612854, -0.053649902, 0.009963989, -0.06512451, 0.015808105, 0.011444092, -0.03527832, 0.010116577, -0.059631348, -0.02230835, -0.039215088, -0.017440796, 0.03765869, -0.03253174, -0.010314941, -0.030700684, -0.0067825317, 0.032806396, -0.022872925, 0.045288086, 0.0015926361, 0.04650879, -0.055786133, 0.0024929047, -0.031921387, 0.018051147, 0.0033168793, -0.024978638, -0.015342712, -0.0038814545, 0.024002075, -0.016021729, -0.0066833496, -0.007858276, -0.02293396, -0.022003174, 0.0046310425, 0.015090942, 0.016540527, 0.0033435822, -0.028686523, 0.030883789, -0.03262329, -0.026733398, -0.041107178, 0.011375427, 0.01878357, 0.022583008, -0.0037994385, -0.030670166, -0.018356323, 0.011123657, -0.0463562, 0.006916046, 0.0039100647, 0.015548706, 0.006111145, -0.00844574, 0.076660156, 0.035339355, 0.053863525, 0.028656006, -0.040771484, -0.016693115, -0.050231934, 0.012001038, 0.020370483, -0.0014152527, -0.045776367, 0.034118652, 0.009590149, 0.0028152466, 0.0054397583, -0.016525269, 0.07354736, 0.0287323, -0.00035595894, 0.0004940033, 0.0151901245, 0.020217896, -0.0076675415, -0.03805542, -0.030593872, -0.06500244, 0.008338928, -0.062408447, 0.07128906, 0.059936523, -0.03756714, 0.09576416, 0.055389404, 0.015350342, 0.049682617, 0.03250122, -0.034179688, 0.0008773804, 0.058898926, -0.02998352, 0.027770996, 0.016815186, -0.017852783, 0.02609253, -0.002861023, -0.028671265, -0.0036182404, -0.001865387, -0.03768921, -0.023162842, -0.005973816, 0.00034213066, -0.015472412, 0.025360107, -0.02859497, -0.005531311, -0.039855957, -0.030639648, -0.010940552, -0.03366089, -0.043823242, 0.006061554, -0.039794922, -0.020874023, 0.015625, -0.008369446, 0.034820557, -0.007572174, 0.047058105, -0.020126343, 0.019897461, -0.0513916, 0.023864746, 0.038116455, 0.05267334, 0.010253906, -0.02758789, 0.015380859, -0.008323669, -0.020309448, -0.041046143, -0.014907837, 0.037597656, -0.0034427643, -0.048339844, -0.0073776245, 0.032104492, 0.015350342, -0.022079468, -0.031097412, -0.028762817, -0.030838013, 0.0025691986, -0.047973633, -0.03338623, 0.02331543, 0.030960083, -0.09100342, -0.06994629, -0.022491455, 0.00995636, -0.0029945374, 0.012908936, -0.030548096, -0.031463623, -0.016830444, 0.022384644, -0.037475586, 0.009628296, -0.058044434, 0.005718231, 0.04260254, 0.024124146, 0.0519104, -0.039611816, -0.01121521, -0.042999268, 0.09112549, 0.022766113, -0.019424438, -0.016815186, -0.005104065, 0.016784668, 0.017974854, -0.0036964417, -0.013465881, -0.017578125, -0.015563965, -0.04953003, -0.03869629, 0.015777588, 0.0519104, 0.0020103455, 0.0074768066, 0.028137207, 0.054351807, -0.03286743, 0.015594482, 0.010650635, 0.037872314, 0.006919861, 0.028060913, -0.09277344, -0.026123047, 0.0074691772, -0.0053863525, 0.005332947, -0.011795044, -0.017044067, 0.015808105, 0.029449463, 0.03765869, -0.034973145, -0.038116455, -0.006828308, 0.031082153, 0.029708862, -0.014801025, -0.0074539185, -0.014457703, 0.0025157928, -0.064208984, 0.08081055, 0.052612305, -0.02709961, -0.0055732727, 0.0034732819, -0.04135132, -0.049926758, -0.031311035, -0.0007686615, 0.01184845, 0.009208679, -0.026855469, -0.013786316, -0.015403748, -0.017547607, -0.007972717, -0.022079468, 0.013442993, -0.019195557, 0.018432617, -0.0030174255, 0.04815674, 0.034423828, -0.013519287, 0.01663208, 0.010368347, -0.015602112, 0.033966064, -0.024841309, -0.010398865, 0.00957489, -0.028945923, -0.016067505, -0.04260254, -0.0076675415, 0.007835388, 0.00025820732, 0.0070228577, 0.02067566, 0.012260437, 0.013053894, 0.018844604, -0.021560669, -0.039398193, 0.010231018, -0.032592773, -0.023025513, 0.05807495, 0.010375977, 0.023742676, 0.02949524, 0.0067825317, 0.00856781, 0.0029735565, -0.027175903, 0.05923462, -0.019058228, -0.009460449, -0.016799927, 0.048034668, -0.012329102, 0.02331543, -0.05871582, 0.0057029724, -0.0017633438, 0.021728516, 0.014839172, -0.039001465, 0.016281128, 0.018966675, -0.011260986, 0.003583908, 0.021606445, -0.03668213, -0.0028495789, 0.009727478, -0.015525818, -0.030334473, 0.0004940033, -0.035614014, -0.004749298, 0.020217896, 0.004535675, 0.015571594, 0.0027198792, -0.037597656, -0.039123535, 0.009536743, -0.045898438, -0.026443481, -0.022338867, 0.003572464, -0.012138367, -0.02758789, 0.031982422, 0.025115967, 0.007247925, -0.006893158, -0.015716553, 0.00033545494, -0.0006752014, -0.017715454, 0.025177002, -0.021240234, -0.012802124, 0.054473877, 0.0037288666, 0.029159546, -0.0007724762, -0.021148682, -0.027557373, 0.00056266785, -0.0021247864, -0.014228821, -0.029891968, 0.08062744, -0.044708252, -0.060424805, -0.05911255, 0.0004925728, 0.02357483, -0.025115967, 0.08270264, 0.029663086, -0.008911133, 0.029724121, -0.008026123, -0.0491333, -0.0060577393, -0.00207901, -0.085998535, 0.0115737915, -0.03527832, 0.040252686, -0.010932922, -0.04510498, -0.02319336, 0.04714966, 0.0008802414, -0.049468994, -0.017166138, -0.03994751, 0.0317688, -0.04434204, 0.012458801, -0.019714355, -0.024871826, 0.0007805824, -0.0362854, -0.027359009, 0.007965088, 0.025375366, 0.011039734, 0.007827759, -0.00573349, 0.0012702942, 0.015129089, -0.009971619, 0.020431519, 0.0013504028, -0.013534546, 0.006198883, 0.019592285, -0.008071899, 0.0423584, -0.018676758, -0.0033626556, -0.012931824, 0.005882263, 0.036071777, 0.008049011, 0.0006990433, 0.018096924, 0.046203613, 0.010665894, -0.024597168, 0.06109619, 0.05899048, -0.0146865845, -0.07501221, -0.007381439, -0.01537323, -0.06665039, -0.030166626, -0.02180481, -0.050354004, 0.02696228, -0.022994995, 0.052124023, -0.08441162, 0.061523438, -0.012290955, -0.02267456, 0.010406494, -0.018295288, 0.01687622, 0.008033752, -0.036346436, -0.0039520264, -0.011940002, 0.008079529, -0.012580872, -0.055847168, 0.0043640137, 0.041137695, 0.012794495, 0.0030899048, -0.010055542, -0.001241684, 0.026123047, -0.04925537, 0.02835083, -0.017181396, -0.03741455, -0.008346558, -0.08691406, -0.055725098, -0.013900757, 0.015556335, 0.002796173, 0.04309082, 0.027999878, 0.017288208, 0.011947632, 0.0061416626, 0.0146484375, 0.0053710938, -0.018112183, 0.038970947, 0.03488159, -0.022720337, -0.022247314, 0.014381409, 0.053466797, -0.0009050369, 0.04425049, -0.040283203, 0.014640808, -0.068237305, 0.053649902, -0.01852417, -0.042999268, 0.01574707, 0.029373169, -0.019104004, 0.020553589, -0.0003979206, -0.0016069412, 0.011138916, -0.010406494, 0.016647339, -0.0012140274, 0.0063552856, 0.034423828, 0.010887146, -0.052947998, -0.016052246, -0.008918762, 6.908178e-05, 0.0055351257, 0.018615723, 0.04437256, -0.046844482, 0.055725098, 0.024032593, 0.08709717, -0.011116028, 0.02796936, -0.00198555, 0.030792236, 0.051513672, -0.015670776, -0.01171875, 0.004714966, -0.0059814453, 0.015808105, 0.024673462, 0.00038838387, 0.017700195, 0.004337311, 0.00076818466, -0.057006836, 0.038360596, -0.0440979, -0.032714844, 0.05444336, -0.050476074, 0.0056610107, -0.02709961, -0.01965332, -0.0413208, -0.035064697, -0.07635498, 0.031311035, -0.0395813, -0.03186035, 0.00084495544, 0.0030231476, 0.004257202, -0.04397583, -0.013214111, -0.0043640137, 0.0033683777, -0.002904892, 0.0569458, -0.03918457, -0.06774902, -0.018310547, 0.052734375, -0.08758545, -0.040893555, -0.026779175, 0.0072364807, 0.002456665, -0.0124435425, 0.020980835, 0.0070228577, 0.03314209, -0.013595581, 0.019973755, -0.057250977, -0.034942627, 0.047058105, 0.014503479, -0.05532837, -0.008605957, 0.049743652, -0.002603531, 0.0031661987, 0.041748047, -0.004470825, -0.056396484, -0.018981934, -0.030212402, -0.018066406, -0.044921875, 0.0043182373, 0.011138916, 0.0038585663, -0.019042969, 0.033569336, 0.021987915, 0.02633667, 0.040802002, 0.026824951, 0.029022217, 0.011436462, -0.025177002, -0.052246094, -0.012878418, 0.0005760193, 0.038909912, -0.01638794, 0.010620117, 0.03744507, -0.025665283, 0.011955261, 0.027282715, 0.014152527, 0.018844604, -0.010551453, -0.0025939941, -0.005104065, -0.025650024, 0.011207581, -0.011177063, -0.0040779114, 0.059326172, 0.014228821, -0.031677246, -0.03564453, -0.015457153, -0.017044067, -0.017105103, -0.028762817, 0.012390137, -0.057373047, -0.009429932, 0.03543091, -0.009056091, 0.0680542, -0.028182983, -0.05657959, -0.025970459, -0.0074882507, 0.0062446594, -0.01953125, -0.03302002, 0.008872986, -0.011184692, 0.10650635, -0.027557373, -0.03878784, -0.030883789, 0.022018433, -0.0068626404, -0.0012454987, 0.03881836, -0.027816772, 0.0072402954, 0.051116943, -0.0039024353, 0.0067977905, -0.013885498, 0.036956787, 0.0011520386, -0.009544373]}, "B08KHCX3CW": {"id": "B08KHCX3CW", "original": "Brand: Dumble\nName: Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose\nDescription: \nFeatures: \n", "metadata": {"Name": "Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose", "Brand": "Dumble", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018936157, -0.0385437, -0.03488159, -0.033294678, -0.0501709, -0.0059814453, -0.06402588, 0.020996094, -0.048675537, 0.017578125, 0.03387451, 0.0748291, 0.005756378, -0.048187256, 0.062805176, 0.023712158, 0.024856567, 0.021438599, 0.0113220215, -0.016723633, -0.020645142, -0.00712204, 0.032165527, 0.033935547, 0.026947021, -0.0135269165, 0.07623291, 0.001657486, -0.0016746521, -0.020477295, 0.031921387, -0.014778137, 0.0074768066, 0.007259369, -0.0004441738, -0.06542969, -0.0206604, 0.0070266724, -0.007167816, -0.014816284, 0.0066490173, -0.00969696, 0.0037937164, -0.034454346, -0.03668213, 0.012168884, -0.0013551712, 0.019836426, 0.03265381, 0.019882202, -0.012664795, 0.03753662, -0.019729614, -0.06311035, 0.0071640015, -0.022949219, -0.04373169, 0.02229309, 0.0335083, 0.0023956299, -0.008018494, 0.0018835068, 0.009170532, -0.0013809204, 0.02243042, 0.008216858, -0.009590149, 0.026824951, 0.06201172, 0.012214661, -0.036865234, 0.009490967, 0.022735596, 0.02029419, -0.023956299, -0.0059051514, -0.0135269165, 0.017654419, 0.04812622, 0.0041389465, -0.03363037, -0.034332275, 0.039520264, 0.002450943, -0.023956299, 0.006538391, -0.02255249, 0.007709503, -0.0060806274, 0.014511108, -0.0041885376, 0.0513916, -0.07409668, 0.049072266, 0.03060913, -0.012214661, -0.007396698, -0.015525818, 0.02822876, -0.034606934, 0.013221741, -0.014144897, -0.0569458, 0.01222229, -0.0010604858, 0.046417236, 0.00043678284, -0.011909485, 0.0036468506, -0.00040650368, -0.008140564, -0.0049057007, 0.025100708, -0.0017108917, -0.017913818, -0.04647827, -0.03781128, 0.031799316, 0.015151978, -0.029846191, 0.031829834, 0.036865234, 0.07525635, -0.048065186, -0.017944336, -0.0023670197, -0.05493164, -0.05206299, -0.042816162, -0.007396698, -0.0095825195, 0.07232666, 0.0079574585, 0.00051164627, -0.023925781, 0.014038086, 0.048187256, 0.044128418, 0.019958496, 0.007446289, -0.03173828, -0.013015747, 0.013290405, 0.0006418228, 0.016159058, 0.04699707, 0.0069007874, -0.021438599, 0.028900146, -0.029556274, -0.0033187866, -0.048828125, 0.01309967, 0.019805908, 0.02420044, 0.004573822, 0.018096924, -0.025985718, 0.009475708, -0.023895264, -0.007713318, -0.025527954, 0.007980347, -0.00894165, -0.02154541, 0.033477783, -0.018005371, 0.0072250366, 0.016174316, 0.026184082, -0.03439331, 0.06561279, -0.008621216, -0.0020370483, -0.0032672882, -0.031707764, -0.05102539, 0.05810547, 0.06854248, -0.13195801, -0.093566895, -0.074279785, 0.10852051, -0.040649414, 0.0037841797, -0.038635254, 0.023086548, -0.009239197, 0.021316528, 0.012863159, 0.007286072, 0.010864258, -0.0013074875, -0.026016235, -0.020080566, 0.018875122, 0.013763428, 0.019973755, -0.015853882, 0.029022217, -0.044036865, 0.03173828, -0.031585693, 0.06628418, 0.060699463, -0.0017538071, 0.023269653, -0.021987915, 0.01626587, -0.00088882446, -0.0028305054, -0.008323669, -0.0068206787, -0.04623413, -0.037628174, 0.033447266, 0.00333786, -0.032409668, 0.034484863, -0.039916992, 0.038024902, 0.052642822, 0.010818481, 0.01586914, -0.025543213, 0.0262146, -0.031051636, 0.013557434, -0.039886475, 0.009223938, 0.0055503845, 0.02633667, 0.07397461, 0.06604004, 0.0005707741, 0.04095459, 0.06774902, 0.010917664, -0.034301758, -0.0073242188, 0.03274536, -0.035858154, 0.011932373, 0.01234436, -0.0317688, -0.028869629, 0.038238525, -0.036468506, -0.06982422, -0.008399963, 0.08911133, 0.0028820038, 0.0060195923, 0.024749756, -0.054992676, 0.0124053955, -0.04083252, 0.036743164, -0.021820068, 0.015083313, -0.022445679, 0.05307007, 0.06793213, -0.020568848, 0.02243042, 0.036987305, 0.039642334, 0.046722412, -0.018051147, 0.020690918, -0.0095825195, -0.002313614, -0.000582695, 0.020202637, -0.021850586, -0.0075798035, -0.02746582, 0.007675171, 0.0062065125, 0.002986908, -0.017684937, 0.016723633, -0.01461792, -0.012313843, -0.015899658, -0.06311035, 0.008613586, -0.0073394775, -0.032470703, 0.008918762, 0.04055786, -0.0026855469, -0.027893066, -0.0062828064, 0.01133728, -0.0061454773, -0.01399231, -0.019729614, 0.009025574, -0.0035800934, 0.008598328, 0.06665039, 0.024978638, -0.014785767, -0.003856659, -0.040771484, -0.033935547, 0.008712769, -0.016860962, -0.015159607, -0.060638428, 0.02003479, 0.011131287, 0.012374878, -0.017959595, -0.025802612, -0.017684937, 0.008071899, 0.0061073303, 0.028121948, 0.02734375, 0.03326416, -0.008117676, 0.016540527, 0.021499634, -0.027023315, -0.0025806427, -0.0040893555, -0.06903076, 0.015090942, -0.037078857, -0.035980225, -0.033447266, 0.04534912, -0.017700195, 0.04147339, -0.010978699, 0.06335449, -0.006214142, -0.048095703, -0.029937744, -0.073913574, -0.007091522, 0.025772095, -0.0423584, 0.009239197, 0.004108429, 0.01171875, -0.030838013, -0.01234436, 0.012680054, -0.022766113, -0.0058631897, -0.0012664795, 0.02029419, -0.009254456, -0.02407837, -0.03050232, -0.001824379, -0.060516357, -0.050598145, -0.015029907, -0.05102539, 0.022583008, 0.042999268, -0.0046539307, -0.03164673, 0.031982422, 0.014083862, 0.028945923, -0.04220581, 0.012641907, -0.027023315, 0.013938904, 0.021362305, 0.03604126, 0.022644043, -0.0418396, 0.00894165, 0.023254395, 0.007865906, 0.03253174, -7.075071e-05, 0.06555176, 0.03970337, 0.013710022, 0.05923462, 0.039794922, 0.029815674, -0.027893066, 0.0022029877, 0.0103302, -0.024612427, -0.00053167343, 0.002521515, -0.0088272095, -0.008033752, -0.0028896332, -0.06121826, -0.007598877, -0.061035156, 0.013793945, -0.024902344, 0.001912117, -0.004371643, -0.047454834, -0.016983032, -0.048706055, 0.013175964, 0.037384033, -0.019851685, -0.0023937225, -0.03137207, 0.0006747246, -0.03591919, 0.002626419, -0.04043579, -0.00044631958, -0.06542969, 0.030578613, 0.08416748, -0.086242676, 0.01737976, 0.017715454, -0.018630981, 0.007598877, 0.030838013, 0.032836914, -0.0132369995, 0.007297516, 0.015586853, -0.031082153, -0.028518677, -0.038482666, -0.013404846, 0.0345459, 0.00831604, 0.024856567, 0.009017944, -0.0018835068, -0.044433594, -0.016433716, 0.031311035, 0.005443573, 0.041992188, -0.038391113, -0.007911682, -0.02017212, -0.0007343292, 0.0037078857, 0.009979248, -0.018417358, -0.0026454926, 0.015609741, -0.041137695, 0.080322266, 0.032989502, 0.027816772, 0.016464233, 0.008415222, -0.001039505, -0.024841309, 0.022354126, -0.0037345886, 0.0071640015, -0.05001831, 0.030776978, 0.016281128, 0.013221741, -0.011154175, 0.023864746, 0.019088745, 0.04257202, -0.013473511, 0.021759033, 0.0018253326, -0.032470703, -0.03955078, 0.022750854, 0.026000977, -0.036621094, 0.020080566, -0.11639404, 0.006111145, 0.024780273, -0.013801575, -0.012939453, -0.031463623, 0.019882202, 0.033203125, 0.018463135, -0.020080566, 0.040863037, 0.005290985, 0.006385803, 0.0009703636, 0.0019283295, -0.022842407, -0.034851074, -0.047088623, -0.017807007, 0.0013818741, 0.03768921, 0.03302002, -0.00856781, -0.040527344, 0.00016307831, -0.0010557175, 0.039489746, 0.013534546, 0.007873535, 0.020202637, 0.041107178, 0.032043457, -0.02041626, 0.0025367737, -0.039733887, 0.0287323, -0.058013916, 0.0010795593, -0.007724762, 0.0061073303, 0.013069153, 0.022659302, -0.011909485, -0.028457642, 0.035125732, 0.013259888, -0.004283905, 0.020233154, 0.019958496, -0.0030517578, 0.007133484, -0.016021729, 0.021102905, -0.0058670044, -0.01550293, 0.054992676, 0.0071983337, -0.04736328, -0.025604248, -0.014862061, 0.016815186, -0.037017822, -0.01600647, -0.024276733, 0.02180481, 0.0059661865, -0.055908203, -0.0597229, 0.047912598, 0.07019043, 0.0149002075, 0.0051345825, -0.031982422, 0.0056915283, -0.05899048, 0.0062446594, 0.011329651, 0.025650024, 0.0036640167, -0.011756897, -0.014762878, -0.0021190643, -0.06378174, 0.0021877289, 0.03930664, 0.011924744, -0.048034668, 0.010803223, -0.029754639, 0.030822754, 0.038482666, -0.042175293, 0.021835327, -0.045043945, -0.028640747, -0.002380371, 0.0032100677, 0.03753662, 0.013496399, 0.020401001, -0.03387451, -0.027572632, -0.058776855, -0.0050849915, 0.019714355, -0.0569458, -0.057037354, -0.021606445, 0.04458618, 0.012779236, 0.003982544, -0.0023956299, -0.0021648407, 0.010551453, -0.05883789, -0.062286377, 0.020004272, -0.009788513, 0.012306213, 0.001449585, -8.696318e-05, 0.016326904, 0.0025863647, 0.041748047, 0.018737793, 0.026046753, 0.021484375, 0.030044556, -0.05142212, 0.009140015, -0.030227661, 0.003145218, -0.023590088, -0.008338928, -0.0020751953, -0.023620605, -0.013130188, 0.0026817322, 0.005859375, -0.001411438, 0.0131073, -0.032073975, -0.018493652, -0.037506104, 0.051635742, 0.01576233, -0.022705078, -0.04650879, -0.026763916, -0.024673462, -0.05126953, -0.011024475, -0.011985779, -0.006450653, -0.0078048706, -0.010772705, 0.043640137, -0.01574707, 0.011672974, -0.010681152, -0.039916992, 0.0024433136, 0.01713562, -0.018463135, 7.277727e-05, 0.016571045, -0.0140686035, -0.024978638, -0.026290894, 0.006095886, -0.011001587, 0.016921997, 0.0084991455, 0.012298584, -0.020202637, 0.008888245, 0.011749268, -0.00793457, -0.015487671, 0.06378174, -0.001039505, 0.006011963, 0.0647583, -0.009864807, 0.022827148, 0.02897644, -0.011100769, 0.03173828, -0.003768921, -0.028167725, -0.010070801, -0.0022335052, 0.011268616, -0.046844482, 0.043182373, 0.00178051, -0.022094727, -0.059265137, 0.000790596, -0.016830444, 0.01676941, -0.023010254, -0.014144897, 0.009239197, -0.028503418, 0.014122009, 0.016555786, -0.017913818, 0.0073013306, 0.05267334, -0.00248909, 0.021835327, 0.017608643, 0.0385437, -0.022766113, -0.024475098, 0.040771484, -0.059143066, -0.011123657, 0.007572174, -0.017929077, -0.013572693, -0.023223877, 0.012237549, 0.0020751953, 0.017303467, 0.052612305, 0.030929565, 0.03881836, -0.0637207, -0.015609741, -0.01134491, -0.023590088, 0.0026836395, 0.02998352, -0.00029039383, -0.011016846, 0.045806885, -0.03475952, -0.03857422, 0.009391785, 0.014961243, 0.020935059, 0.0024547577, -0.04925537, -0.013702393, -0.015266418, -0.00039863586, 0.028427124, -0.026153564, 0.029144287, -0.009414673, -0.0066490173, -0.06335449, 0.031921387, -0.0064048767, -0.018493652, 0.053222656, 0.058776855, 0.0048561096, 0.044158936, -0.017471313, -0.035369873, 0.024642944, -0.0013065338, -0.0051078796, -0.085876465, -0.047027588, -0.059448242, 0.0234375, -0.022644043, -0.024505615, 0.023330688, -0.017623901, 0.0074157715, -0.02947998, -0.038757324, -0.005306244, -0.0016298294, 0.0063819885, -0.006576538, 0.010795593, -0.028121948, 0.0067214966, -0.07611084, -0.07897949, -0.026657104, 0.0079193115, 0.0119018555, 0.032989502, -0.013031006, 0.015586853, -0.04852295, -0.004840851, 0.06329346, -0.0231781, -0.015823364, -0.010177612, -0.030685425, 0.0039405823, -0.08074951, 0.016113281, -0.019073486, 0.017211914, -0.011550903, 0.036499023, -0.03793335, -0.023406982, -0.01713562, 0.03289795, -0.01222229, 0.048797607, 0.030960083, 0.014709473, -0.0075912476, -0.01914978, -0.019515991, -0.03970337, 0.040527344, -0.037261963, 0.009635925, -0.0209198, -0.029830933, -0.028182983, -0.008766174, 0.01348114, -0.033203125, 0.043426514, -0.006591797, 0.01259613, 0.0109939575, -0.03640747, -0.010231018, -0.023208618, -0.013626099, -0.012054443, -0.019317627, 0.00970459, 0.000770092, 0.024536133, 0.006801605, 0.039398193, -0.0088272095, 0.007965088, 0.025817871, -0.032928467, -0.013809204, 0.024551392, 0.033477783, 0.0056762695, -0.020736694, 0.0035362244, -0.008148193, 0.022750854, 0.040008545, 0.008605957, 0.011077881, 0.03930664, -0.04611206, -0.010223389, -0.00793457, -0.034729004, 0.0065994263, 0.0340271, 0.010009766, -0.016189575, -0.08270264, 0.052978516, -0.0032024384, 0.026306152, 0.06933594, -0.010871887, 0.004371643, -0.010414124, 0.011726379, -0.024230957, -0.044799805, -0.03390503, -0.000541687, 0.009391785, 0.016174316, -0.0075683594, 0.012916565, -0.008308411, -0.03579712, 0.006046295, -0.014793396, 0.0031795502, 0.011329651, 0.016235352, -0.029647827, -0.023117065, -0.0027065277, -0.034179688, 0.03277588, -0.013420105, 0.0039043427, 0.05810547, -0.011688232, -0.02909851, 0.026855469, 0.01398468, -0.0036582947, -0.05731201, -0.004558563, -0.0023441315, -0.020950317, 0.00027275085, -0.028930664, -0.019104004, 0.023712158, -0.007259369, 0.001750946, 0.01626587, -0.0440979, 0.04525757, 0.008804321, 0.03060913, -0.039001465, 0.009353638, -0.046844482, 0.05343628, 0.0287323, -0.018585205, -0.05230713, -0.064331055, -0.02607727, -0.028793335, 0.046203613, 0.00059461594, 0.008613586, 0.0062179565, -0.007106781, -0.041381836, 0.003818512, 0.015167236, 0.045410156, 0.04888916, -0.011047363, 0.021255493, 0.00088596344, -0.03829956, -0.056030273, 0.007701874, -0.07312012, 0.005672455, 0.02154541, 0.0027637482, 0.021652222, 0.010070801, 0.038909912, 0.034332275, 0.046417236, 0.00111866, 0.02798462, -0.012504578, 0.0046958923, 0.010665894, -0.004459381, 0.013153076, -0.034851074, -0.016311646, -0.050476074, 0.03564453, -0.024536133, -0.036621094, 0.0059661865, 0.01373291, 0.0335083, -0.06793213, 0.027359009, 0.011924744, 0.04260254, 0.052093506, -0.0134887695, 0.05935669, -0.015258789, -0.052368164, 0.028503418, 0.0056419373, 0.0040512085, -0.055908203, -0.057769775, -0.036468506, -0.014808655, 0.051239014, 0.06652832, -0.02180481, -0.008735657, 0.043182373, -0.021972656, 0.021408081, 0.018920898, 0.03793335, 0.005016327, 0.019439697, 0.018478394, 0.0062713623, -0.018157959, -0.013587952, -0.04638672, -0.02418518, -0.050048828, 0.024734497, -0.020706177, -0.035461426, -0.036132812, 0.0473938, -0.01586914, -0.055999756, -0.03945923, -0.005683899, 0.03265381, 0.017486572, 0.01309967, -0.05718994, 0.041290283, 0.03756714, -0.057800293, 0.031097412, 0.051696777, 0.029953003, -0.044281006, 0.061553955, 0.060668945, 0.04159546, 0.024230957, -0.088012695, -0.035095215, 0.0569458, 0.008270264, -0.043792725, 0.015357971, -0.053497314, -0.0045318604, 0.0035762787, -0.07318115, -0.010772705, -0.035461426, 0.077697754, -0.037963867, -0.0026226044]}, "B078KPHKZD": {"id": "B078KPHKZD", "original": "Brand: ThermoPro\nName: ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer\nDescription: \nFeatures: Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to \u00b10.9 degree Fahrenheit\nSuper long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands\nLock function: Kitchen thermometer can lock the current temperature; the reading won\u2019t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included\nBacklight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\nWide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking\n", "metadata": {"Name": "ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer", "Brand": "ThermoPro", "Description": "", "Features": "Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to \u00b10.9 degree Fahrenheit\nSuper long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands\nLock function: Kitchen thermometer can lock the current temperature; the reading won\u2019t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included\nBacklight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\nWide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.026885986, 0.015975952, -0.0090408325, 0.037902832, 0.00058555603, -0.03640747, 0.030685425, -0.038848877, 0.02923584, 0.020523071, 0.008781433, 0.010124207, 0.028518677, -0.053619385, 0.022033691, -0.0013875961, 0.005706787, 0.028015137, 0.038757324, 0.004016876, -0.020751953, 0.02154541, 0.025619507, -0.0064353943, 0.0357666, -0.005771637, 0.0018205643, 0.0059165955, 0.02558899, 0.013549805, 0.020339966, -0.032409668, 0.015396118, 0.043060303, -0.08312988, -0.033416748, -0.05557251, 0.036193848, -0.0149383545, -0.018707275, 0.011756897, -0.0013999939, -0.017684937, 0.03869629, -0.015853882, -0.046295166, 0.029022217, -0.02168274, 0.0048713684, 0.025726318, 0.041412354, -0.027359009, 0.046203613, 0.005115509, -0.0010652542, 0.014816284, 0.007987976, 0.015220642, 0.020751953, -0.052581787, -0.032928467, 0.021713257, 0.024734497, 0.03982544, -0.029312134, 0.0024871826, 0.060180664, -0.014213562, 0.019241333, -0.032348633, 0.0041770935, 0.027008057, -0.00092983246, -0.022415161, 0.012199402, -0.033294678, 0.0069351196, -0.02507019, 0.0043678284, 0.030227661, -0.007335663, -0.02381897, -0.008399963, -0.022766113, 0.022872925, 0.0021324158, -0.0082092285, -0.01826477, -0.029769897, -0.037902832, -0.03503418, 0.01335907, -0.031585693, 0.00052309036, -0.025405884, -0.013847351, 0.0051574707, -0.013847351, 0.011741638, 0.003955841, 0.018127441, -0.037872314, 0.004283905, -0.0102005005, 0.0032615662, 0.06451416, -0.004573822, 0.014038086, 0.017730713, 0.0067749023, 0.013877869, -0.034179688, -0.035339355, -0.033569336, -0.021774292, 0.046295166, -0.009895325, -0.05038452, 0.0052337646, -0.032928467, -0.046539307, -0.022705078, 0.013168335, 0.036315918, 0.028167725, 0.022262573, 0.01473999, -0.00440979, -0.061065674, 0.04135132, -0.030685425, -0.02432251, 0.026977539, 0.038848877, 0.01701355, -0.04434204, 0.004322052, -0.0048675537, 0.004749298, 0.0034923553, 0.008842468, -0.03729248, -0.0018100739, 0.013832092, -0.02243042, -0.01007843, 0.01637268, 0.035339355, -0.013412476, -0.04788208, 0.034057617, 0.015266418, 0.044555664, -0.013092041, -0.02911377, -0.034118652, -0.031402588, -0.014404297, -0.003200531, -0.034606934, -0.010391235, -0.0078125, 0.006916046, 0.026992798, 0.008171082, -0.0017471313, 0.018676758, -0.00079393387, 0.011917114, 0.027877808, 0.017227173, 0.007858276, -0.004032135, 0.004470825, -0.0029582977, -0.0076828003, -0.010299683, 0.070129395, 0.08642578, -0.10058594, -0.0736084, -0.048706055, 0.15270996, -0.068725586, 0.008605957, 0.013633728, -0.022369385, 0.009880066, 0.038482666, 0.01675415, -0.068603516, -0.005558014, -0.014091492, 0.032470703, -0.0007047653, -0.008598328, -0.03579712, 0.043701172, -0.026626587, -0.067871094, -0.07513428, 0.006893158, -0.036224365, 0.041931152, -0.05923462, 0.012527466, -0.022232056, 0.043426514, -0.008422852, -0.0033111572, 0.0067863464, -0.027877808, 0.008117676, -0.06536865, -0.036071777, 0.016738892, -0.03616333, -0.04196167, -0.012016296, 0.0087509155, 0.011802673, 0.014801025, -0.009506226, 0.01360321, 0.056488037, -0.01586914, -0.0046539307, -0.00059986115, 0.06149292, 0.0093688965, 0.0054512024, 0.027908325, 0.024673462, 0.020874023, -0.015731812, 0.036132812, 0.064575195, 0.027893066, -0.008178711, -0.017456055, 0.0143585205, -0.0012636185, -0.037384033, -0.009185791, 0.006374359, -0.008399963, 0.01675415, -0.015655518, -0.004623413, 0.020019531, 0.009429932, 0.0027008057, 0.03086853, 0.018875122, 0.006942749, 0.028060913, -0.016036987, 0.046691895, -0.0692749, 0.0446167, -0.033447266, 0.031234741, 0.061584473, -0.01121521, 0.03857422, 0.0046653748, 0.0077171326, 0.00088500977, -0.037719727, 0.010047913, 0.0146865845, -0.0047798157, -0.00970459, -0.025787354, -0.021636963, -0.04562378, -0.023635864, 0.030395508, -0.002735138, -0.048217773, 0.0022411346, 0.03491211, 0.031280518, 0.0023937225, 0.0030651093, -0.06298828, 0.010375977, -0.0030288696, -0.016448975, -0.021148682, 0.009216309, -0.011909485, -0.019622803, 0.0060768127, 0.014076233, -0.03289795, 0.023239136, 0.033416748, 0.009048462, -0.01574707, 0.02166748, 0.03302002, -0.045288086, 0.04156494, -0.0005970001, -0.03173828, -0.011665344, 0.03982544, 0.012893677, -0.060272217, 0.029724121, 0.05114746, 0.042297363, -0.04916382, 0.062316895, 0.04043579, 0.012611389, 0.017196655, -0.0029659271, -0.0038909912, -0.022262573, -0.0032482147, -0.051727295, -0.0011968613, -0.009422302, 0.033813477, -0.029647827, -0.0049057007, 0.012664795, 0.019363403, 0.040771484, 0.036132812, 0.03137207, -0.026062012, 0.00055742264, -0.026138306, 0.0010824203, 0.017837524, -0.018066406, -0.017700195, -0.0110321045, 0.006324768, 0.04058838, -0.013282776, -0.064208984, 0.024490356, 0.006954193, 0.006454468, -0.008293152, -0.014816284, 0.018310547, -0.027130127, -0.003080368, 0.012382507, -0.01727295, -0.001288414, 0.015525818, 0.0014181137, -0.019973755, -0.056518555, -0.021347046, 0.01763916, -0.028747559, 0.0010204315, 0.040649414, -0.04348755, -0.015068054, -0.0037727356, 0.020095825, 0.043182373, 0.04534912, 0.00027942657, -0.034332275, -0.026779175, -0.031311035, -0.038085938, -0.012863159, -0.05368042, 0.004802704, -0.031555176, -0.019058228, 0.013092041, 0.025131226, 0.043823242, -0.0013799667, 0.032958984, 0.003686905, 0.048431396, -0.023223877, -0.03237915, 0.019592285, 0.097717285, 0.03930664, -0.03591919, 0.002483368, 0.007270813, -0.018096924, 0.0011768341, -0.014801025, 0.006164551, -0.099365234, -0.0050697327, -0.038024902, -0.015281677, -0.0014104843, -0.033050537, -0.015853882, -0.060760498, 0.013298035, 0.043395996, -0.024017334, 0.014335632, -0.03488159, -0.0008292198, 0.012512207, -0.0063972473, 0.031829834, -0.008720398, 0.038970947, -0.044799805, 0.00242424, -0.024932861, 0.035827637, 0.017944336, 0.0043411255, -0.0026454926, -0.0013208389, -0.016921997, 0.0033397675, -0.013900757, -0.012672424, -0.030181885, -0.02168274, -0.026428223, -0.0040664673, 0.03744507, 0.011528015, 0.008842468, 0.0027427673, -0.009140015, -0.05493164, -0.014030457, -0.011734009, 0.0032424927, -0.012619019, -0.01096344, -0.0071372986, -0.069885254, 0.010971069, -0.066833496, -0.014381409, 0.009132385, 0.07330322, 0.028503418, 0.009254456, 0.06072998, -0.044555664, 0.0635376, 0.025161743, -0.0435791, 0.0036334991, -0.06591797, 0.02279663, 0.059417725, -0.009597778, -0.04019165, 0.051818848, -0.014671326, -0.02722168, 0.0030670166, -0.044921875, 0.06323242, -0.02204895, -0.026123047, -0.018692017, -0.0034255981, 0.037994385, -0.006717682, 0.056396484, -0.018859863, -0.0657959, 0.024841309, -0.07476807, 0.045166016, -0.0035858154, 0.009025574, 0.05895996, 0.04031372, 0.007030487, 0.04144287, 0.047943115, -0.010124207, 0.03451538, 0.014091492, -0.02961731, -0.0107803345, -0.00083065033, 0.009002686, 0.028961182, 0.02281189, -0.027709961, 0.0155181885, 0.006679535, 0.0046157837, -0.042633057, -0.0007429123, 0.047821045, 0.025222778, 0.007637024, -0.05783081, 0.06237793, -0.02017212, -0.0010738373, 0.009223938, -0.025512695, -0.061706543, 0.014381409, -0.0028190613, -0.045074463, 0.0028362274, 0.020141602, 0.015296936, 0.0033950806, 0.010238647, 0.007858276, 0.01675415, -0.04373169, 0.0041007996, -0.007030487, 0.0013113022, 0.04046631, -0.022369385, 0.037719727, 0.004310608, 0.005104065, 0.030776978, -0.004486084, 0.0033626556, 0.021499634, 0.009864807, 0.017974854, -0.026062012, -0.041015625, 0.0003926754, 0.046447754, -0.0836792, 0.04196167, -0.004760742, -0.05557251, 0.016281128, -0.04220581, -0.042053223, -0.022628784, -0.02571106, -0.0022659302, -0.02670288, -0.009803772, 0.012031555, 0.013923645, -0.035614014, 8.7201595e-05, 0.018127441, -0.043304443, 0.014732361, -0.025497437, 0.0026626587, 0.049804688, 0.012519836, 0.046020508, -0.04714966, -0.0015907288, -0.033935547, 0.03086853, 0.020462036, 0.009307861, 0.007129669, -0.053527832, -0.006134033, 0.02053833, 0.08441162, 0.012237549, 0.009292603, -0.06500244, -0.054229736, -0.018798828, -0.028671265, 0.049987793, -0.02607727, 0.00299263, -0.05419922, 0.011375427, -0.012512207, 0.011230469, -0.006538391, 0.0056495667, -0.043518066, 0.029525757, -0.0070877075, 0.03152466, 0.0012559891, -0.0025939941, 0.019821167, 0.0013914108, -0.016174316, -0.043914795, 0.045928955, -0.010177612, -0.028869629, 0.016494751, -0.048919678, 0.022033691, -0.024749756, -0.031082153, 0.059661865, -0.0670166, -0.008781433, 0.014579773, 0.028640747, 0.06347656, -0.038970947, 0.0126953125, 0.021820068, -0.017105103, 0.015129089, -0.0014648438, -0.008171082, -0.026412964, -0.047698975, -0.0340271, 0.011276245, -0.037902832, 0.0016965866, 0.002796173, 0.030075073, 0.033172607, -0.02557373, -0.014099121, -0.014503479, -0.014427185, -0.0064849854, 0.02468872, 0.011070251, 0.0042152405, -0.022628784, 0.009246826, -0.010070801, 0.00655365, 0.00069093704, -0.017807007, 0.0051956177, -0.022613525, -0.016571045, -0.044006348, -0.02079773, 0.013771057, -0.041656494, 0.0020046234, 0.023513794, 0.0049934387, -0.019058228, -0.022064209, 0.0056648254, -0.0138549805, -0.031982422, 0.11218262, -0.019882202, 0.0101623535, 0.014633179, -0.0075645447, 0.04989624, -0.028152466, -0.035217285, 0.034362793, -0.019042969, -0.004585266, -0.010940552, -0.0005121231, 0.009376526, -0.005302429, -0.027709961, 0.001625061, 0.003326416, 0.027191162, 0.016983032, -0.031921387, 0.053955078, -0.015853882, -0.035247803, -0.014503479, 0.071777344, -0.017715454, 0.024887085, -0.010627747, 0.0096588135, -0.034729004, -0.029281616, 0.006061554, -0.058258057, -0.045928955, -0.02822876, 0.018844604, -0.021072388, 0.016677856, -0.026412964, -0.01687622, 0.038635254, -0.046905518, 0.054748535, -0.03451538, -0.014801025, 0.013343811, 0.03326416, -0.018356323, -0.018814087, 0.0037822723, -0.016799927, -0.003660202, 0.008598328, -0.010177612, 0.002357483, -0.024917603, 0.018692017, 0.05557251, -0.015701294, 0.014656067, 0.03527832, -0.020690918, -0.008071899, -0.0072021484, 0.010597229, -0.013786316, -0.0026664734, 0.0463562, -0.03656006, -0.034851074, -0.042388916, 0.028259277, -0.0033607483, -0.020187378, 0.044128418, -0.013374329, 0.008712769, 0.033966064, -0.004585266, -0.016723633, 0.015548706, 0.0025520325, -0.034118652, 0.008735657, -0.01713562, -0.002904892, 0.01878357, -0.014335632, -0.007167816, 0.01939392, 0.0059890747, 0.038360596, -0.031829834, -0.04748535, -0.0098724365, -0.026123047, 0.012481689, -0.017822266, -0.0012598038, -0.038482666, -0.030288696, -0.04562378, -0.036712646, 0.04626465, 0.022262573, 0.029129028, -0.014167786, 0.05014038, 0.11468506, -0.0703125, 0.01689148, 0.0071258545, -0.03692627, 0.0073051453, 0.010498047, 0.023025513, -0.02659607, -0.020004272, -0.011749268, -0.004547119, 0.02243042, 0.03765869, -0.015342712, -0.030715942, -0.032318115, 0.017791748, 0.02645874, 0.014511108, -0.0058555603, 0.011451721, 0.00674057, -0.04156494, -0.011856079, -0.021118164, -0.034240723, -0.04321289, -0.05001831, 0.03237915, 0.020812988, 0.004299164, 0.021072388, 0.02571106, 0.01309967, -0.013931274, 0.031982422, -0.012954712, -0.0076446533, 0.033569336, -0.01637268, 0.02268982, -0.018615723, -0.0019235611, -0.0073661804, 0.010467529, 0.040039062, -0.009246826, 0.019363403, 0.02168274, 0.012672424, -0.005405426, 0.024154663, -0.018234253, -0.056518555, 0.050628662, -0.04815674, -0.02519226, -0.0021648407, 0.02355957, 0.038848877, 0.038482666, 0.0090789795, -0.010864258, 0.060699463, -0.0309906, -0.0037822723, 0.005760193, 0.03656006, -0.033966064, -0.002943039, 0.019332886, -0.0031433105, 0.01676941, 1.0251999e-05, -0.046539307, 0.026992798, 0.01966858, -0.009559631, 0.03062439, -0.011886597, 0.027832031, -0.0016441345, -0.0234375, -0.038757324, -0.029968262, 0.016815186, -0.0018339157, -0.007583618, 0.003856659, 0.0035476685, -0.0016002655, 0.040283203, 0.002872467, 0.033691406, 0.013259888, 0.07409668, 0.037719727, -0.022766113, -0.014389038, -0.08251953, -0.028884888, -0.011245728, -0.020767212, -0.018692017, -0.019989014, 0.0904541, 0.054229736, 0.01802063, 0.055603027, -0.015808105, 0.0034160614, 0.050689697, 0.0071754456, -0.014289856, 0.02633667, 0.024368286, -0.041992188, -0.023605347, 5.8472157e-05, -0.030578613, 0.062286377, 0.038238525, -0.0004014969, 0.003862381, -0.06359863, 0.053649902, -0.056121826, -0.048217773, 0.05633545, -0.057556152, -0.022354126, 0.0048599243, 0.0071372986, -0.028762817, -0.053466797, -0.03564453, 0.054107666, -0.041870117, -0.018341064, 0.0015678406, -0.023925781, -0.009765625, -0.058776855, -0.000767231, -0.006954193, 0.048950195, 0.008560181, 0.06878662, -0.05130005, -0.07055664, -0.0625, 0.046417236, -0.10784912, -0.031036377, -0.035858154, 0.011245728, 0.009864807, 0.003206253, 0.005168915, -0.011795044, 0.019622803, -0.020263672, -0.010940552, -0.01676941, -0.035827637, 0.02017212, -0.007423401, -0.022781372, 0.0034503937, 0.040802002, 0.017288208, 0.047851562, 0.0067329407, 0.015945435, -0.07342529, -0.0033111572, -0.031143188, 0.0256958, 0.010627747, -0.026412964, -0.00047063828, -0.018539429, -0.042541504, -0.051879883, 0.0033798218, 0.005428314, 0.021331787, 0.054229736, -0.022659302, 0.024749756, -0.011039734, 0.085754395, 0.0071907043, -0.033599854, 0.029830933, 0.053619385, 0.008529663, 0.021484375, -0.007987976, 0.015701294, -0.008796692, -0.008850098, -0.011474609, 0.031066895, 0.009048462, 0.0031204224, 0.0126953125, 0.030944824, -0.02696228, -0.030334473, 0.032928467, 0.028945923, -0.050079346, -0.02835083, -0.036865234, 0.010421753, -0.016616821, -0.095825195, 0.04660034, 0.018478394, 0.005493164, 0.009361267, 0.037506104, -0.027542114, -0.0028305054, -0.03375244, -0.00932312, -0.011077881, 0.0082473755, -0.018844604, -0.019989014, -0.029800415, -0.033843994, 0.020233154, -0.0002053976, -0.06365967, -0.0592041, 0.06842041, 0.023498535, -0.040496826, 0.024414062, 0.015914917, 0.00018072128, 0.03277588, 0.024871826, -0.02746582, 0.013092041, -0.051513672, 0.020233154, 0.0047569275]}, "B07FC7KCJD": {"id": "B07FC7KCJD", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with 3/8\" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided\nDescription: Feature:
      Hose Length: 6ft
      Connector: 3/8\" female flare fitting x 3/8\" female flare fitting.
      Material: Stainless steel braided.

      Warning: Only for OUTDOOR Use.
      \nFeatures: \u3010Awesome Extension\u3011 Extend your existing hose to reach the gas appliance. No need to carry a large tank around.\n\u3010Widely Applied\u3011 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more.\n\u3010Nice Length\u3011 6 feet in length allows getting more distance and moving around where it is needed.\n\u3010Durable & Chew-Proof\u3011 Stainless steel braided hose effectively reduces damage caused by friction and animals.\n\u3010Standard Connector\u3011 3/8\" female flare fitting x 3/8\" female flare fitting.\n", "metadata": {"Name": "GASPRO 6-Foot Propane Hose with 3/8\" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided", "Brand": "GASPRO", "Description": "Feature:
      Hose Length: 6ft
      Connector: 3/8\" female flare fitting x 3/8\" female flare fitting.
      Material: Stainless steel braided.

      Warning: Only for OUTDOOR Use.
      ", "Features": "\u3010Awesome Extension\u3011 Extend your existing hose to reach the gas appliance. No need to carry a large tank around.\n\u3010Widely Applied\u3011 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more.\n\u3010Nice Length\u3011 6 feet in length allows getting more distance and moving around where it is needed.\n\u3010Durable & Chew-Proof\u3011 Stainless steel braided hose effectively reduces damage caused by friction and animals.\n\u3010Standard Connector\u3011 3/8\" female flare fitting x 3/8\" female flare fitting.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030151367, 0.010795593, -0.06616211, -0.0013122559, 0.011238098, -0.032592773, -0.017944336, 0.002714157, 0.014724731, 0.02104187, -0.019226074, 0.038879395, -0.0069274902, -0.00945282, -0.0064697266, -0.022766113, -0.00015175343, 0.05670166, 0.034973145, -0.0047950745, -0.0044403076, 0.008834839, -0.020645142, 0.017791748, 0.006767273, 0.022857666, 0.056671143, -0.022628784, 0.025253296, 0.006412506, 0.01361084, -0.03955078, 0.04623413, 0.013267517, -0.05557251, -0.066589355, 0.033355713, -0.0362854, -0.05581665, 0.050231934, -0.01361084, 0.0054092407, -0.019592285, 0.029342651, -0.038116455, -0.049804688, 0.008216858, -0.004776001, 0.0026111603, 0.010665894, -0.006252289, 0.037963867, -0.008071899, 0.029403687, 0.024597168, 0.016418457, 7.31349e-05, -0.0289917, 0.013908386, -0.02772522, 0.008644104, -0.00039815903, 0.0413208, 0.04043579, -0.03668213, 0.0062065125, 0.06359863, -0.025131226, -0.01852417, -0.048583984, 0.021530151, 0.01676941, 0.015274048, -0.0023078918, -0.056274414, -0.01889038, 0.034240723, -0.03262329, 0.023162842, -0.011520386, -0.015350342, 0.0124435425, 0.0023860931, -0.0020332336, -0.002855301, 0.024520874, -0.036071777, -0.0121536255, -0.02558899, -0.02848816, -0.018722534, -0.015930176, -0.053375244, 0.012771606, -0.00063991547, -0.020111084, -0.009284973, -0.07751465, 0.044525146, 0.018310547, 0.031982422, -0.042999268, 0.05114746, 0.0056877136, 0.016082764, 0.05682373, -0.00592041, 0.021728516, 0.027832031, -0.006450653, -0.004673004, -0.020324707, -0.048858643, 0.002708435, -0.060333252, 0.016143799, -0.051696777, -0.029708862, -0.013046265, -0.009170532, -0.042633057, -0.02583313, 0.008285522, 0.035217285, 0.014343262, 0.009353638, -0.0016880035, 0.024353027, -0.022323608, 0.014053345, -0.020629883, -0.006591797, 0.0501709, 0.059417725, 0.00021314621, -0.020050049, 0.016738892, 0.00066185, -0.004924774, 0.009399414, 0.007522583, -0.050811768, -0.01890564, 0.02520752, -0.019439697, -0.008087158, 0.033233643, 0.031051636, 0.0009946823, -0.028381348, -0.013450623, 0.03918457, 0.04647827, 0.030654907, -0.053466797, 0.03753662, 0.021560669, -0.00365448, -0.068115234, -0.045776367, -0.03982544, -0.005153656, 0.033203125, -0.037506104, -0.04486084, 0.025283813, -0.011253357, -0.025878906, 0.008239746, 0.087768555, -0.01335907, 0.04248047, 0.027496338, 0.0026664734, -0.023742676, -0.047729492, -0.039398193, 0.08154297, 0.08862305, -0.13415527, -0.051330566, -0.047912598, 0.1730957, -0.043548584, -0.025161743, -0.025909424, 0.013259888, -0.03338623, 0.0054740906, -0.005176544, 0.07116699, 0.06573486, -0.02029419, -0.061462402, 0.018157959, 0.061676025, -0.027038574, 0.038024902, 0.0018939972, -0.027511597, 0.009552002, 0.005744934, -0.004108429, -0.012817383, 0.018737793, -0.004837036, 0.0019664764, 0.022247314, 0.016555786, 0.011207581, -0.0071640015, -0.012580872, 0.006160736, -0.018493652, -0.03152466, 0.00233078, -0.020828247, -0.035949707, 0.014274597, -0.013809204, 0.053894043, 0.0037765503, 0.0234375, 0.043151855, -0.024810791, -0.030776978, 0.0093307495, 0.010650635, -0.015350342, 0.038482666, -0.013404846, -0.02470398, 0.042755127, 0.021484375, -0.020339966, 0.04449463, 0.072265625, 0.0848999, -0.04168701, -0.028335571, 0.015548706, -0.011894226, -0.047210693, -0.02494812, -0.0058135986, -0.01977539, -0.0026435852, -0.012542725, -0.07495117, 0.008544922, 0.07501221, 0.030456543, -0.008026123, -0.00088596344, -0.068603516, 0.034942627, -0.03656006, -0.02760315, -0.04699707, 0.06011963, -0.008216858, 0.026763916, 0.032989502, -0.006011963, 0.02746582, 0.04034424, 0.05328369, 0.042541504, -0.029968262, 0.01852417, 0.009796143, 0.016479492, -0.014823914, 0.01727295, -0.0037460327, -0.014434814, -0.021438599, 0.012809753, -0.046966553, -0.02168274, -0.009422302, 0.008033752, 0.00060653687, -0.024673462, 0.030548096, 0.0052490234, -0.00064849854, -0.040222168, 0.023040771, -0.019943237, 0.007843018, -0.003414154, -0.0021266937, 0.0010643005, 0.0047302246, -0.046813965, 0.020767212, -0.009742737, 0.041259766, -0.0473938, -0.041900635, 0.036254883, -0.057647705, 0.0234375, -0.008041382, 0.006931305, -0.015716553, 0.014801025, 0.0088272095, -0.058654785, 0.04373169, 0.033813477, 0.016723633, -0.014129639, 0.03289795, 0.015296936, 0.009552002, 0.04486084, 0.053497314, 0.04888916, 0.021072388, 0.0062561035, -0.0035572052, -0.02381897, 0.023391724, -0.023025513, -0.02796936, -0.011459351, 0.011711121, -0.03302002, -0.018966675, -0.022415161, -0.009979248, 0.021865845, 0.00079345703, -0.009063721, -0.0016326904, 0.018066406, -0.013519287, -0.028961182, 0.007534027, -0.025802612, 0.006324768, 0.0027923584, -0.058532715, 0.010810852, 0.016586304, 0.0037155151, -0.03652954, -0.0030059814, 0.014778137, -0.0041236877, 0.0073509216, -0.0007452965, 0.013381958, 0.012748718, -0.017532349, 0.0054740906, 0.024246216, -0.05090332, -0.03778076, -0.011482239, -0.06161499, -0.029190063, 0.08453369, -0.023529053, -0.0657959, -0.009803772, -0.0020809174, -0.024047852, -0.019485474, -0.010025024, -0.017562866, -0.015945435, 0.0074501038, 0.0025234222, 0.020462036, -0.023956299, 0.009231567, 0.0068206787, 0.02470398, 0.025878906, -0.015304565, 0.030303955, 0.039733887, 0.020217896, 0.060577393, 0.00920105, 0.050933838, -0.027175903, 0.008354187, 0.01008606, -0.05609131, -0.012870789, -0.006298065, -0.0014762878, 0.019073486, -0.019515991, -0.035095215, -0.033111572, -0.0871582, 0.004940033, 0.011619568, -0.046966553, 0.024154663, -0.057434082, -0.039276123, -0.03488159, 0.038085938, 0.030914307, 0.013542175, 0.02029419, -0.0047073364, 0.023513794, -0.0491333, 0.012229919, -0.026153564, -0.01864624, -0.016601562, 0.029968262, 0.045135498, -0.0657959, 0.023666382, 0.04647827, -0.010177612, -0.019699097, 0.0010156631, -0.0063667297, -0.010948181, 0.05581665, 0.004211426, -0.00806427, -0.047302246, -0.06341553, -0.018997192, -0.014732361, 0.008544922, 0.018508911, -0.016113281, 0.015426636, -0.007423401, -0.008834839, -0.017410278, -0.010368347, -0.009208679, -0.018478394, 0.010414124, -0.0031013489, 0.03050232, -0.003276825, -9.816885e-05, 0.00907135, 0.06689453, 0.017547607, -0.023101807, -0.0289917, 0.009185791, 0.036712646, 0.0064048767, 0.0010299683, 0.00046014786, -0.031143188, 0.026153564, 0.018234253, 0.038513184, -0.011642456, -0.022140503, 0.011940002, 0.009056091, -0.0093688965, 0.0027160645, 0.013137817, -0.05859375, -0.033355713, 0.056854248, 0.0026550293, -0.03201294, -0.031402588, 0.043884277, 0.029647827, -0.019058228, 0.0055618286, -0.080566406, 0.068115234, 0.01008606, -0.0016431808, 0.019256592, 0.039794922, -0.009674072, -0.004737854, 0.04385376, 0.015075684, 0.02154541, 0.023956299, 0.002603531, -0.040039062, 0.013702393, -0.01852417, 0.014083862, 0.04660034, -0.10058594, -0.0066452026, 0.022109985, -0.048614502, -0.007926941, 0.041900635, 0.00016331673, 0.0006284714, 0.0011501312, -0.05343628, -0.005832672, -0.05404663, -0.031585693, 0.050048828, -0.045013428, -0.04989624, 0.004901886, 0.029541016, -0.06365967, -0.0070724487, -0.033477783, -0.028030396, -0.010124207, 0.0362854, 0.009971619, 0.02268982, -0.059936523, 0.05480957, -0.012329102, 0.014411926, 0.03656006, 0.008644104, 0.0060043335, -0.015182495, 0.0039787292, -0.014678955, -0.004283905, 0.05154419, 0.021377563, -0.055877686, -0.018295288, -0.0058517456, 0.009208679, -0.021514893, -0.012176514, -0.028793335, -0.021408081, 0.029067993, -0.0025863647, 0.010108948, 0.010772705, -0.0052833557, -0.08392334, -0.0043296814, -0.02029419, -0.01007843, -0.07489014, 0.03665161, -0.00831604, 0.0063591003, 0.014015198, 0.037963867, -0.04827881, -0.021224976, -0.02583313, -0.009056091, 0.05996704, 0.020767212, 0.0010795593, -0.019134521, -0.012779236, -0.0077438354, 0.032684326, 0.001745224, -0.014701843, -0.026412964, -0.011238098, -0.010299683, 0.029678345, 0.040252686, -0.011329651, 0.017623901, -0.026123047, -0.028366089, -0.050445557, -0.05319214, 0.04638672, -0.04864502, -0.03567505, -0.055511475, 0.06185913, -0.013000488, 0.017440796, 0.027740479, 0.017562866, 0.009376526, 0.023895264, -0.09075928, -0.024047852, -0.0003476143, -0.030685425, -0.011627197, -0.019729614, -0.007865906, 0.072387695, 0.053100586, 0.043792725, -0.018875122, 0.02532959, 0.025314331, -0.024002075, -0.03704834, -0.02545166, 0.041290283, -0.026123047, 0.008766174, -0.012046814, 0.052246094, 0.026870728, -0.016067505, 0.007724762, 0.0075187683, 0.009254456, -0.049438477, 0.038238525, -0.006603241, -0.0008530617, -0.040527344, -0.03414917, 0.0035953522, -0.06604004, -0.0007586479, 0.023803711, -0.010871887, 0.037994385, -0.009254456, 0.01626587, -0.018478394, -0.03250122, 0.02885437, -0.0034160614, 0.02243042, -0.006362915, 0.006126404, 0.049591064, -0.0059394836, -0.001250267, -0.0028877258, -0.016647339, -0.05569458, 0.025253296, 0.0007305145, -0.008338928, 0.025726318, -0.0014181137, 0.0068511963, -0.0011920929, 0.025283813, 0.025741577, 0.0031414032, -0.014045715, 0.058685303, -0.03250122, 0.0025367737, 0.012374878, -0.0015211105, 0.016098022, 0.021057129, -0.008140564, -0.007083893, 0.008270264, -0.020355225, 0.041656494, 0.00063943863, 0.018997192, -0.03768921, 0.076660156, -0.0131073, 0.016677856, -0.07623291, -0.0017843246, 0.03048706, 0.006919861, 0.022384644, -0.029022217, 0.047607422, 0.02532959, -0.02746582, 0.03302002, -0.0065231323, -0.025802612, -0.038116455, 0.01058197, -0.06237793, -0.00970459, 0.016937256, -0.021316528, -0.02796936, 0.030578613, -0.026245117, 0.029220581, -0.011627197, -0.045318604, -0.050048828, 0.0045166016, -0.0101623535, -0.021957397, -0.018127441, 0.024658203, 0.00023770332, -0.006439209, -0.0038642883, 0.01637268, 0.012741089, -0.025039673, -0.02986145, -0.028533936, 0.033081055, -0.008026123, 0.027770996, 0.008720398, -0.024002075, 0.012542725, 0.022399902, 0.013282776, -0.012107849, -0.022033691, 0.010185242, -0.0039978027, 0.010284424, -0.022964478, -0.0059318542, 0.076538086, -0.037506104, -0.054718018, -0.019439697, 0.010520935, -0.032989502, -0.036956787, 0.08862305, 0.032043457, 0.01424408, 0.00982666, 0.016174316, -0.01524353, 0.005695343, -0.0044288635, 0.004383087, -0.021011353, -0.024429321, 0.009437561, 0.009559631, 0.041748047, -0.03277588, 0.02255249, -0.05670166, 0.02456665, -0.013839722, 0.036132812, -0.039398193, -0.04244995, 0.011245728, 0.00869751, 0.0076789856, 0.00012302399, -0.00026607513, -0.040527344, 0.0007829666, -0.013061523, 0.017501831, 0.012619019, 0.021911621, 0.007671356, 0.019500732, -0.041290283, 0.013504028, -0.0046081543, 0.01285553, 0.0025730133, 0.0029506683, -0.015335083, 0.014228821, -0.039245605, 0.010055542, -0.01776123, 0.008255005, 0.008018494, 0.01979065, -0.029373169, 0.0028820038, 0.017166138, 0.028167725, -0.00039052963, -0.0345459, 0.028564453, 0.04977417, -0.01309967, -0.03945923, -0.041259766, -0.013214111, -0.008163452, -0.042816162, 0.012901306, 0.04284668, 0.004638672, 0.019088745, -0.02243042, 0.06774902, -0.036254883, 0.044555664, -0.009025574, -0.021362305, 0.039489746, -0.001329422, 0.06378174, -0.0066070557, 0.005947113, -0.016723633, 0.014266968, -0.00057792664, -0.0011339188, 0.027496338, 0.03994751, -0.026397705, -0.03164673, 0.019104004, 0.03842163, -0.064941406, 0.0023937225, -0.009147644, -0.00484848, -0.0076408386, -0.027832031, -0.0056533813, -0.020874023, 0.019760132, 0.015808105, 0.019805908, 0.002626419, 0.043060303, 0.031311035, 0.0035552979, -0.013771057, -0.0058135986, 0.018722534, -0.03768921, 0.0023384094, 0.011314392, -0.019805908, -0.01789856, 0.05899048, -0.05606079, 0.0055274963, -0.00198555, 0.013244629, -0.061157227, -0.021469116, -0.0317688, -0.037384033, -0.02532959, -0.010528564, -0.005756378, 0.0005669594, -0.004962921, 0.014884949, -0.03930664, -0.044433594, 0.016983032, -0.047912598, 0.016616821, 0.030654907, 0.0015153885, -0.052764893, -0.060058594, -0.020248413, -0.0079422, -0.015525818, 0.036621094, -0.004753113, 0.05126953, 0.005748749, 0.009338379, 0.07434082, 0.01876831, 0.039611816, -0.049438477, 0.014381409, 0.02960205, -0.022155762, -0.023025513, -0.020370483, -0.013023376, 0.015609741, -0.012550354, -0.034118652, -0.035125732, -0.028778076, -0.018753052, -0.01852417, -0.0049552917, -0.0020866394, 0.006477356, -0.0059890747, -0.05203247, -0.01499176, -0.016784668, -0.0692749, -0.013557434, -0.0019931793, -0.03466797, 0.037628174, 0.031433105, -0.030731201, -0.0028381348, -0.0031204224, -0.027313232, -0.03488159, 0.0015926361, -0.003648758, 0.029464722, 0.0048980713, 0.044677734, -0.02571106, -0.070373535, -0.0124435425, 0.04977417, -0.052459717, -0.039001465, -0.002035141, 0.0236969, 0.01361084, 0.0042152405, 0.022369385, 0.06707764, 0.019805908, 0.0028419495, 0.0049743652, -0.032348633, -0.01689148, 0.035949707, -0.0061302185, -0.0064468384, -0.028289795, 0.022323608, 0.010971069, 0.033172607, -0.00023722649, 0.023803711, -0.044189453, 0.02670288, -0.00932312, 0.010421753, 0.0041618347, 0.0029640198, 0.04220581, 0.03149414, -0.032409668, 0.020568848, -0.00024867058, -0.030166626, 0.029815674, 0.024002075, 0.05090332, 0.021881104, -0.048675537, -0.0085372925, -0.02670288, -0.015312195, -0.021194458, -0.015335083, 0.0038032532, 0.0023555756, 0.006137848, -0.038879395, 0.008201599, 0.0037612915, 0.04348755, -0.0046043396, 0.03479004, 0.0158844, -0.046051025, 0.00041484833, -0.0155181885, -0.074279785, 0.026321411, 0.029769897, -0.036712646, -0.036621094, -0.026168823, 0.007095337, -0.0064582825, -0.064575195, -0.026412964, -0.045410156, 0.030776978, 0.01058197, 0.014320374, 0.0062446594, 0.035705566, -0.01121521, -0.016799927, 0.009727478, 0.021011353, -0.018188477, -0.05441284, 0.04046631, -0.0048179626, 0.10473633, -0.04626465, -0.036132812, -0.066101074, 0.03253174, -0.0075683594, 0.020843506, 0.035705566, 0.027420044, -0.0014562607, 0.022567749, -0.043640137, -0.021499634, -0.006881714, 0.019424438, -0.02658081, 0.008331299]}, "B07W6MTWVF": {"id": "B07W6MTWVF", "original": "Brand: Kohree\nName: Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank\nDescription: Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank\nFeatures: \u3010Application\u3011: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter.\n\u3010Multipurpose\u3011: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating.\n\u3010Very Cost Effective\u3011 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more.\n\u3010Easy to Use\u3011: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance.\n\u3010Safe Connection\u3011: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.\n", "metadata": {"Name": "Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank", "Brand": "Kohree", "Description": "Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank", "Features": "\u3010Application\u3011: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter.\n\u3010Multipurpose\u3011: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating.\n\u3010Very Cost Effective\u3011 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more.\n\u3010Easy to Use\u3011: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance.\n\u3010Safe Connection\u3011: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0013561249, -0.017654419, -0.03704834, -0.009689331, -0.008262634, -0.03805542, 0.032287598, 0.032165527, 0.0021800995, 0.020645142, 0.015838623, 0.017654419, 0.012641907, -0.039001465, 0.0030536652, 0.00090551376, 0.002538681, 0.013473511, 0.0051879883, -0.02027893, -0.0070762634, -0.008674622, 0.0009965897, 0.05908203, 0.008895874, -0.023422241, 0.042816162, -0.00017774105, 0.0052833557, -0.017181396, 0.026412964, 0.017990112, 0.05215454, 0.015335083, -0.08062744, -0.05859375, 0.0048561096, -0.039215088, -0.067993164, 0.05596924, 0.015472412, -0.030807495, -0.041748047, 0.0062294006, -0.031082153, -0.019210815, 0.034729004, -0.0055389404, 0.021697998, 0.0074005127, -0.0057411194, -0.025939941, 0.0087509155, -0.018630981, -0.0022220612, 0.019958496, 0.012573242, -0.062805176, -0.007232666, 0.0061798096, 0.02784729, 0.013572693, 0.016784668, 0.012832642, -0.0463562, -0.011474609, 0.03665161, -0.009544373, -0.0002887249, -0.078552246, -0.020324707, 0.04425049, 0.01222229, 0.022079468, -0.058258057, -0.06518555, 0.014862061, -0.060577393, 0.023712158, 0.024734497, -0.00258255, -0.059295654, 0.020339966, 0.0013856888, -0.007926941, 0.025924683, -0.0070762634, -0.0065345764, -0.009117126, -0.023803711, -0.010604858, 0.0435791, -0.032287598, 0.008239746, -0.029464722, -0.016464233, -0.038848877, -0.088134766, 0.008674622, -0.0010576248, 0.041900635, -0.031829834, 0.03250122, 0.019042969, 0.020690918, 0.074645996, 0.019439697, -0.017974854, 0.029800415, -0.021102905, 0.016036987, 0.05545044, 0.03677368, 0.0063323975, -0.031341553, -0.007911682, 0.020019531, 0.018295288, 0.008453369, 0.019104004, -0.0259552, -0.0151901245, 0.0143966675, -0.030426025, -0.0067253113, -0.028884888, -0.005844116, 0.006034851, -0.048858643, 0.0060920715, -0.030197144, 0.012138367, 0.06304932, 0.072753906, 0.02734375, -0.012741089, 0.032226562, -0.01348114, -0.005683899, 0.042022705, -0.010627747, -0.07507324, -0.03289795, 0.01600647, -0.034088135, 0.008903503, 0.021194458, 0.022369385, 0.0053367615, -0.04486084, -0.021621704, -0.009361267, 0.048217773, -0.006549835, -0.025222778, -0.043121338, -0.00026535988, -0.039093018, 0.0046958923, -0.042907715, -0.036346436, -0.009460449, 0.033081055, -0.028335571, 0.002538681, 0.015838623, 0.0034980774, 0.015098572, 0.016036987, 0.052612305, -0.011878967, 0.03326416, 0.015510559, -0.00982666, -0.0053215027, -0.019561768, -0.033050537, 0.06298828, 0.06921387, -0.13647461, -0.06970215, -0.06463623, 0.11767578, -0.03555298, 0.034484863, -0.09429932, 0.04373169, -0.049438477, -0.011741638, 0.018478394, 0.030899048, 0.0068244934, -0.006504059, 0.0068359375, -0.010803223, -0.0076560974, -0.034454346, 0.009750366, -0.013595581, -0.003458023, -0.032287598, -0.0005559921, 0.008361816, 0.008087158, 0.023361206, -0.024414062, 0.0015277863, 0.006980896, 0.00818634, 0.021148682, 0.0018014908, 0.003353119, -0.0065345764, -0.03173828, -0.028244019, 0.010620117, 0.008781433, 0.034973145, 0.009765625, -0.019897461, 0.052490234, -0.008468628, 0.041290283, 0.042114258, -0.017089844, -0.016586304, -0.009941101, -0.0024414062, -0.014961243, 0.0052948, -0.0024547577, 0.04071045, 0.11791992, 0.066223145, -0.029953003, 0.023483276, 0.06689453, 0.041290283, -0.038146973, -0.0014533997, 0.0020942688, -0.015182495, -0.048187256, -0.013618469, -0.017105103, -0.028076172, -0.0015220642, -0.01083374, -0.013259888, 0.026062012, 0.043701172, 0.030410767, 0.009712219, 0.048217773, -0.01701355, 0.030334473, -0.01134491, 0.0025501251, -0.051879883, 0.0345459, -0.0104599, -0.00085544586, 0.007904053, -0.015625, 0.0119018555, 0.014961243, 0.047210693, 0.032592773, -0.004600525, 0.001947403, -0.014503479, -0.036193848, -0.02053833, -0.017730713, -0.027252197, -0.015007019, -0.03010559, 0.041870117, -0.031799316, -0.027359009, 0.02456665, 0.021347046, 0.043792725, -0.016189575, 0.051361084, 0.07421875, 0.012504578, -0.005554199, -0.07220459, -0.017471313, 0.0019197464, 0.017501831, -0.013633728, -0.016784668, 0.003358841, -0.006969452, 0.06921387, 0.02079773, 0.033050537, -0.03552246, 0.013328552, 0.026367188, -0.08905029, 0.051727295, -0.0076408386, -0.011741638, -0.025665283, 0.027053833, 0.0075531006, -0.06341553, -0.0057907104, 0.01373291, 0.020553589, 0.0069274902, 0.039093018, 0.020965576, 0.008430481, 0.048950195, 0.06173706, 0.049438477, -0.0036811829, 0.011138916, -0.017059326, -0.01852417, 0.010635376, -0.0020141602, -0.049468994, 0.0005555153, 0.060516357, -0.003320694, -0.030426025, 0.017227173, -0.0335083, 0.01108551, -0.008552551, 0.00037813187, 0.033233643, -0.032684326, -0.02281189, -0.041137695, 0.039642334, -0.0132751465, -0.00045347214, 0.043304443, -0.0005326271, -0.069885254, 0.020095825, -0.002418518, 0.0045776367, 0.008270264, 0.00026583672, -0.019256592, 0.02571106, -0.024993896, 0.023834229, -0.016204834, -0.044067383, -0.0137786865, 0.0022735596, -0.06890869, 0.02432251, -0.04156494, -0.060180664, -0.0070228577, 0.08306885, -0.016921997, -0.029205322, -0.047027588, -0.03829956, 0.008926392, -0.0033874512, 0.0069618225, -0.07318115, -0.02645874, -0.046417236, 0.013450623, 0.05697632, -0.025894165, -0.015853882, 0.031951904, -0.0009918213, 0.031951904, -0.03668213, 0.038482666, -0.022994995, 0.051330566, 0.07873535, 0.03353882, 0.021270752, -0.057861328, 0.0099487305, 0.064086914, -0.0060577393, -0.026748657, -0.015930176, -0.0016384125, -0.0078125, -0.026901245, -0.015670776, -0.013786316, -0.036468506, -0.013038635, 0.0022258759, -0.017913818, 0.016571045, -0.05114746, -0.011711121, -0.046295166, 0.0077171326, 0.066467285, -0.044647217, 0.016464233, -0.0340271, 0.024017334, -0.010246277, -0.0071907043, -0.012367249, -0.008552551, -0.041412354, 0.011009216, 0.055999756, -0.052886963, 0.038208008, 0.046417236, -0.02456665, 0.018493652, 0.004016876, 0.03062439, -0.005168915, 0.012023926, 0.004383087, -0.021026611, -0.07281494, -0.052368164, -0.0047035217, -0.0033473969, 0.030471802, -0.033569336, 0.037139893, 0.0067634583, -0.03488159, -0.031402588, 0.008712769, 0.037902832, -0.016342163, 0.016723633, -0.0440979, -0.009468079, 0.0058670044, -0.024429321, 0.024307251, -0.005744934, 0.059570312, 0.004371643, -0.008934021, 0.07336426, 0.035339355, 0.03427124, -0.00819397, 0.015655518, 0.017547607, -0.020507812, 0.0074386597, -0.008003235, 0.037139893, -0.08251953, 0.057434082, -0.015274048, -0.012565613, 0.0132369995, -0.005844116, 0.005569458, -0.015266418, -0.023376465, 0.030166626, 0.028762817, 0.0039863586, -0.020980835, 0.0065078735, -0.007118225, -0.043670654, 0.0028800964, -0.101501465, 0.04119873, 0.015151978, -0.007446289, 0.02406311, 0.022644043, 0.008338928, 0.014862061, 0.056640625, -0.031021118, 0.0024414062, 0.050109863, -0.02571106, -0.013389587, 0.013374329, -0.041381836, 0.0014810562, 0.014205933, -0.03314209, -0.0053901672, 0.011642456, -0.04055786, 0.0016393661, 0.036834717, -0.027999878, -0.0044937134, -0.0018224716, -0.055725098, -0.0146102905, -0.04937744, 0.019805908, 0.01826477, -0.013153076, -0.023010254, 0.024887085, 0.0013980865, -0.009063721, 0.0018138885, 0.010635376, -0.028747559, 0.0018377304, 0.026062012, 0.029159546, -0.0029506683, -0.033447266, -0.008125305, -0.05441284, 0.011413574, 0.020996094, 0.010322571, -0.004714966, -0.0546875, 0.046569824, 0.02330017, -0.013160706, 0.051971436, -0.0058250427, -0.09790039, -0.0013980865, 0.07104492, 0.015205383, -0.039245605, 0.0065956116, -0.06719971, -0.0036754608, -0.004951477, -0.0357666, -0.0050849915, 0.0043563843, 0.0051574707, -0.0446167, -0.022872925, -0.0057678223, -0.004787445, -0.005783081, -0.004711151, -0.019302368, 0.03439331, 0.017303467, 0.054901123, -0.07397461, -0.010848999, -0.029769897, -0.012802124, 0.036834717, 0.0063934326, 0.012458801, -0.030807495, 0.013710022, 0.0020160675, 0.043518066, -0.005542755, 0.0035915375, -0.035186768, -0.022247314, -0.01802063, 0.016281128, 0.03503418, -0.051452637, 0.04510498, 0.011184692, -0.0065727234, -0.04537964, -0.012756348, 0.032196045, -0.023040771, -0.021499634, -0.023666382, 0.055389404, -0.0031318665, -0.0046424866, -0.044769287, 0.0317688, 0.03149414, -0.0060424805, -0.048187256, -0.028915405, 0.004627228, -0.021194458, -0.010406494, -0.00919342, -0.012275696, 0.020370483, 0.014549255, -0.0043258667, -0.025177002, 0.019317627, 0.0061035156, 0.007293701, 0.0259552, -0.056915283, 0.024871826, -0.04458618, -0.017333984, -0.0703125, 0.056671143, 0.04449463, 0.0038414001, 0.0045814514, -0.008155823, -0.004550934, -0.01259613, 0.03250122, -0.010429382, 0.0007991791, -0.0074424744, -0.028564453, -0.0072364807, -0.048858643, -0.018066406, -0.017532349, -0.018173218, 0.0069732666, 0.014190674, -0.018417358, -0.04208374, -0.039154053, -0.004207611, 0.029388428, 0.0056114197, -0.03805542, -0.01713562, 0.009750366, 0.0028362274, -0.001748085, -0.005622864, 0.0062065125, -0.01524353, 0.051757812, 0.0030345917, -0.050048828, 0.0011959076, 0.016860962, -0.012916565, -0.013305664, 0.026000977, -0.026535034, -0.011436462, 0.009963989, 0.014724731, 0.031143188, -0.007270813, 0.017715454, 0.0317688, 0.018188477, 0.038330078, -0.008323669, 0.035369873, 0.014587402, -0.027160645, 0.04345703, 0.009674072, 0.0015459061, -0.030395508, 0.091796875, -0.009773254, 0.016220093, -0.066833496, 0.004924774, 0.0032730103, 0.017440796, 0.008010864, -0.02809143, 0.03225708, -0.008178711, -0.014526367, 0.007511139, 0.03930664, -0.022491455, -0.016235352, 0.03262329, -0.018692017, -0.03375244, 0.024139404, 0.012702942, 0.020217896, 0.005619049, -0.04928589, 0.041503906, 0.02772522, -0.033599854, 0.002483368, -0.030059814, 0.052703857, 0.023925781, 0.000103890896, -0.040985107, -0.016540527, 6.9499016e-05, 0.03125, 0.00983429, 0.0062408447, -0.05114746, -0.043029785, -0.04006958, 0.03024292, 0.009300232, 0.04547119, -0.00831604, -0.039855957, 0.005973816, 0.0003080368, 0.0051345825, 0.026855469, -0.019226074, 0.011398315, -0.002588272, 0.024383545, -0.02015686, -0.0017271042, 0.07550049, -0.040985107, -0.03189087, -0.08581543, 0.07489014, -0.06878662, -0.036193848, 0.07751465, 0.012130737, 0.03173828, 0.0025939941, -0.004295349, -0.031921387, -0.0064430237, -0.006034851, -9.936094e-05, -0.018539429, -0.04019165, 0.0069236755, 0.030288696, 0.029632568, -0.011749268, 0.024551392, -0.033355713, -0.009849548, -0.047851562, 0.022216797, -0.030456543, -0.013595581, 0.012763977, -0.011810303, -0.010444641, -0.0037956238, 0.01586914, -0.05706787, -0.027938843, 0.024414062, 0.01864624, 0.013694763, 0.0040893555, 0.017166138, 0.033599854, -0.04196167, 0.039794922, 0.013717651, -0.02368164, -0.009864807, 0.022247314, -0.00036978722, 0.055114746, -0.053466797, -0.004173279, -0.022613525, 0.0206604, 0.025314331, 0.017196655, -0.039886475, -0.019119263, 0.030227661, 0.023803711, 0.024353027, 0.0039253235, 0.012992859, -0.016235352, -0.03289795, -0.0054779053, -0.035705566, -0.031066895, 0.00037646294, -0.03857422, 0.009513855, 0.011306763, -0.00434494, 0.014144897, -0.02696228, 0.038879395, -0.0069007874, -0.02420044, 0.020370483, -0.03982544, 0.029052734, -0.01625061, 0.017303467, -0.010246277, 0.047332764, 0.040100098, -0.027572632, -0.048736572, -0.0034999847, 0.016906738, -0.032165527, 0.0440979, 0.010246277, -0.0012578964, 0.034729004, -0.054382324, 0.014038086, -0.018814087, 0.0063209534, -0.0074882507, -0.042541504, -0.016647339, -0.029800415, 0.030822754, 0.041900635, 0.05038452, -0.0043563843, 0.036254883, -0.01977539, -0.009811401, 0.0010099411, -0.018310547, 0.010665894, 0.016586304, -0.0072898865, -0.009643555, -0.042388916, -0.02670288, 0.025665283, -0.012321472, -0.02268982, -0.010124207, 0.03744507, 0.019439697, -0.0103302, -0.051086426, -0.041015625, 0.008590698, 0.013282776, -0.032409668, -0.0036525726, 0.019882202, 0.029022217, -0.018585205, -0.028549194, 0.013038635, -0.04663086, 0.014755249, 0.018630981, 0.008644104, -0.028961182, -0.010528564, -0.013427734, 0.004207611, -0.005874634, 0.04421997, 0.02897644, 0.032806396, 0.018981934, 0.034362793, 0.066345215, -0.0005259514, 0.032684326, -0.007293701, 0.011291504, 0.020614624, -0.030181885, -0.0046043396, -0.024765015, 0.0017747879, 0.01586914, -0.016464233, 0.005214691, 0.011123657, -0.009727478, 0.021591187, -0.038238525, 0.05419922, -0.015144348, -0.043914795, -0.019744873, -0.014152527, -0.030136108, -0.01272583, -0.0446167, -0.02923584, -0.025253296, -0.062469482, 0.03555298, 0.0049972534, 0.0020656586, 0.005710602, -0.012527466, 0.008705139, -0.025878906, 0.024047852, 0.0024738312, 0.0423584, -0.028579712, 0.04083252, -0.031799316, -0.03161621, -0.014526367, 0.03225708, -0.07550049, -0.01727295, -0.025512695, 0.017608643, 0.01979065, 0.008773804, 0.046447754, 0.06933594, 0.0022602081, 0.0178833, -0.02168274, -0.027832031, -0.028823853, 0.0793457, 0.005996704, -0.018127441, -0.015220642, 0.03665161, -0.010787964, 0.026290894, 0.02180481, -0.012840271, -0.035827637, -0.007511139, -0.020980835, -0.0074157715, -0.010910034, 0.0014925003, 0.03201294, 0.0019454956, -0.032043457, 0.055145264, 0.035003662, 0.012252808, 0.030426025, 0.023895264, 0.0070533752, -0.020614624, -0.023483276, -0.041046143, -0.01878357, 0.032348633, -0.0015850067, -0.023834229, -0.042022705, -0.0064430237, 0.016815186, -0.039978027, 0.018157959, 0.005584717, 0.011680603, -0.0014543533, -0.00592041, -0.011459351, -0.013900757, -0.035949707, -0.02154541, -0.028656006, 0.04067993, 0.0059547424, -0.020095825, -0.023483276, -0.02809143, -0.00390625, -0.024536133, -0.040405273, -0.01651001, -0.070129395, 0.055664062, 0.02619934, 0.014213562, -0.017562866, 0.0211792, -0.010414124, -0.015449524, 0.00793457, 0.018951416, 0.021072388, 0.008049011, 0.000813961, 0.010467529, -0.009208679, -0.027130127, -0.075805664, -0.04208374, 0.014312744, 0.016662598, -0.004837036, 0.0637207, -0.0423584, 0.0037059784, 0.021499634, -0.03387451, -0.051849365, 0.022567749, 0.09472656, 0.0041122437, 0.027297974]}, "B07PYVNJ2Z": {"id": "B07PYVNJ2Z", "original": "Brand: GASPRO\nName: GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More\nDescription: How to use it:
      The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

      Great for:
      RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

      Warning: Only for OUTDOOR Use.\nFeatures: \u3010Well Gas Control \u3011Two-stage regulator results in a more consistent inlet pressure between the first and second stage\n\u3010Standard Connector\u3011QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Outlet Pressure\u301111\" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow\n\u3010 Compatibility \u3011Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more\n\u3010 High Quality \u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "metadata": {"Name": "GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More", "Brand": "GASPRO", "Description": "How to use it:
      The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

      Great for:
      RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

      Warning: Only for OUTDOOR Use.", "Features": "\u3010Well Gas Control \u3011Two-stage regulator results in a more consistent inlet pressure between the first and second stage\n\u3010Standard Connector\u3011QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Outlet Pressure\u301111\" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow\n\u3010 Compatibility \u3011Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more\n\u3010 High Quality \u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03302002, -0.023864746, -0.033081055, -0.006008148, -0.042419434, -0.0053100586, -0.031402588, 0.00504303, 0.023406982, 0.013633728, -0.019546509, 0.0146865845, 0.0062294006, -0.02142334, 0.0011119843, -0.030075073, 0.00945282, 0.039093018, 0.02432251, -0.010650635, 0.003686905, 0.0039100647, -0.029724121, 0.040130615, 0.019622803, 0.033996582, 0.047698975, -0.016235352, 0.025604248, 0.00037503242, 0.031921387, -0.03173828, 0.015640259, 0.013946533, -0.010231018, -0.045654297, 0.019515991, -0.013885498, -0.020065308, 0.014289856, 0.003047943, -0.008842468, 0.0004041195, 0.024963379, -0.01574707, -0.038391113, 0.023590088, -0.017181396, 0.004081726, -0.0070762634, -0.012886047, 0.023025513, -0.007949829, -0.0012750626, 0.0047340393, -0.00274086, 0.01096344, -0.028503418, 0.007320404, -0.010559082, 0.0035362244, 0.01826477, 0.02255249, 0.023468018, -0.022140503, 0.023727417, 0.07104492, -0.024002075, 0.009048462, -0.020767212, -0.0095825195, 0.020187378, 0.019317627, -0.0013332367, -0.0657959, 0.015686035, -0.000100016594, -0.024215698, 0.044403076, -0.01953125, 0.015777588, 0.027511597, 0.008865356, -0.008354187, 0.014472961, 0.010856628, -0.024597168, -0.0152282715, -0.068237305, -0.041015625, -0.04348755, -0.034851074, -0.0748291, -0.002117157, -0.008148193, -0.0012464523, 0.014373779, -0.06384277, 0.035369873, 0.003019333, 0.035003662, -0.04107666, 0.0496521, 0.01134491, 0.006160736, 0.06628418, 0.009353638, 0.0031261444, 0.014144897, -0.011314392, 0.0022087097, -0.0005559921, -0.041412354, -0.013046265, -0.020751953, 0.017700195, -0.057250977, -0.0048942566, 0.00182724, -0.0075149536, -0.02772522, -0.018997192, 0.06854248, -0.033996582, 0.01928711, 0.01247406, -0.020629883, -0.032592773, -0.032196045, 0.031555176, -0.015029907, -0.020736694, 0.058563232, 0.093566895, 0.03213501, -0.022460938, 0.037506104, -0.002904892, 0.014945984, 0.0011997223, -0.0035648346, -0.04336548, -0.021499634, 0.021606445, -0.012741089, 0.012908936, 0.034851074, 0.013763428, -0.016418457, -0.03765869, -0.03048706, 0.019195557, 0.053771973, 0.014297485, -0.030273438, 0.016082764, 0.030670166, -0.0074272156, -0.032806396, -0.042663574, -0.027359009, -0.02809143, 0.002117157, -0.03930664, -0.040100098, 0.0390625, -0.01713562, -0.011146545, 0.009750366, 0.0501709, -0.02998352, 0.039520264, 0.04547119, -0.012367249, -0.032806396, -0.025024414, -0.066589355, 0.066711426, 0.08105469, -0.11639404, -0.03656006, -0.03829956, 0.11968994, -0.012748718, -1.7285347e-05, -0.039245605, 0.0066452026, -0.045135498, 0.008232117, 0.004180908, 0.036346436, 0.05456543, -0.0012083054, -0.06976318, 0.021194458, 0.026123047, -0.015213013, 0.013626099, -0.0018291473, 0.005771637, 0.0040740967, 0.028747559, -0.012367249, -0.018157959, 0.0018844604, -0.008865356, 0.0066223145, 0.030410767, 0.035186768, 0.014411926, -0.017593384, -0.01309967, 0.01108551, -0.023284912, -0.028839111, 0.010818481, -0.0055351257, -0.02053833, 0.011497498, -0.0016040802, 0.051483154, -4.5895576e-06, 0.020126343, 0.03338623, 0.010360718, -0.044769287, 0.022613525, -0.014511108, 0.0045661926, 0.01423645, -0.024429321, -0.0036735535, 0.07470703, -0.0011301041, -0.03857422, 0.05215454, 0.08996582, 0.07324219, -0.05404663, -0.0158844, 0.020645142, -0.023117065, -0.025924683, -0.0015153885, -0.017745972, -0.062316895, -0.008323669, -0.00086450577, -0.059631348, 0.018936157, 0.07086182, 0.033172607, -0.0071907043, -0.0056495667, -0.058380127, 0.02722168, -0.014472961, -0.0155181885, -0.052734375, 0.06567383, -0.0005784035, 0.013145447, 0.015274048, -0.009994507, 0.022766113, 0.034942627, 0.03894043, 0.0211792, -0.020462036, 0.03152466, 0.011184692, -0.00983429, -0.014427185, 0.0055351257, 0.018554688, -0.007610321, -0.017120361, 0.017562866, -0.0345459, -0.004337311, -0.0032749176, -0.016494751, 0.007232666, -0.014015198, 0.05718994, 0.0045547485, 0.0027618408, -0.035186768, 0.02168274, -0.009811401, 0.028747559, -0.03289795, -0.015075684, -0.0016222, -0.0141067505, -0.05657959, 0.06329346, -0.03414917, 0.034210205, -0.032470703, -0.0061416626, 0.048461914, -0.033050537, 0.014259338, 0.011886597, 0.009025574, 0.015403748, 0.0016994476, 0.0149383545, -0.00090408325, -0.008079529, 0.027999878, 0.020767212, -0.03390503, 0.053955078, 0.02619934, 0.010070801, 0.03756714, 0.054382324, 0.06317139, 0.015312195, 0.014266968, 0.0038719177, -0.0010490417, 0.03466797, -0.022994995, 0.011741638, -0.0115737915, -0.014343262, -0.009544373, 0.027755737, -0.00970459, 0.018081665, 0.026794434, 0.011695862, -0.009109497, -0.007118225, 0.055786133, -0.0098724365, -0.075683594, -0.012672424, -0.039916992, -0.008720398, 0.037963867, -0.068847656, -0.010848999, 0.040496826, -0.0035934448, -0.007293701, -0.011184692, 0.028030396, -0.004497528, 0.028793335, 0.0033454895, 0.028839111, 0.01852417, -0.04638672, -0.0075912476, 0.02998352, -0.060455322, -0.016540527, -0.021469116, -0.06124878, -0.08880615, 0.08477783, -0.0038585663, -0.08300781, -0.04937744, 0.0073890686, -0.0030727386, -0.01309967, 0.006504059, -0.010932922, -0.022277832, -0.0061454773, -0.011390686, 0.031707764, -0.011817932, 0.022857666, 0.016403198, 0.047180176, 0.024047852, -0.0051612854, 0.0023899078, 0.01763916, 0.032806396, 0.086364746, 0.021957397, 0.031341553, -0.039520264, 0.017425537, 0.028411865, -0.05987549, 0.005607605, 0.0027103424, -0.0063056946, -0.0006456375, -0.010917664, -0.06451416, -0.008293152, -0.043518066, -0.002500534, 0.008087158, -0.040740967, 0.021881104, -0.10913086, -0.016845703, -0.046539307, 0.058532715, -0.013122559, 0.0017871857, 0.01612854, 0.011741638, -0.0368042, -0.056762695, 0.02420044, -0.019882202, -0.0055885315, -0.043426514, 0.019943237, 0.06738281, -0.08520508, 0.024490356, 0.026229858, -0.029403687, -0.0017490387, 0.0029277802, 0.015045166, -0.013534546, 0.062469482, 0.006298065, -0.0024471283, -0.03930664, -0.007369995, 0.01852417, 0.037078857, 0.016906738, -0.022155762, 0.0023651123, -0.010475159, -0.0736084, -0.016677856, -0.026351929, -0.024429321, 0.0012102127, -0.03591919, -0.0019216537, -0.06304932, -0.007129669, -0.054504395, 0.0010700226, 0.0059394836, 0.05267334, 0.030471802, 0.004928589, 0.06829834, 0.013671875, 0.04284668, 0.020904541, 0.0017948151, 0.0035305023, -0.027862549, 0.03955078, 0.023605347, 0.028335571, -0.030914307, -0.007820129, 0.025009155, 0.023101807, -0.02520752, 0.01348114, 0.030807495, -0.06304932, -0.030670166, 0.031677246, -0.025970459, -0.009742737, 0.0018444061, 0.05722046, 0.012641907, -0.024154663, -0.0057678223, -0.06915283, 0.09161377, 0.04550171, -0.024261475, 0.064697266, 0.05908203, -0.010917664, -0.0031700134, 0.045043945, -0.0038452148, -0.0011444092, 0.044281006, -0.009231567, -0.032409668, 0.019973755, -0.049041748, 0.032684326, 0.029785156, -0.05935669, 0.016860962, -0.02708435, -0.04220581, -0.0024738312, 0.0075416565, 0.012207031, 0.001537323, 0.0024986267, -0.025680542, 0.0060806274, -0.018676758, -0.018798828, 0.025772095, -0.031188965, -0.06695557, 0.020080566, 0.018081665, -0.054138184, 0.008010864, -0.00806427, -0.0060691833, 0.009033203, 0.036743164, -0.0076026917, 0.015037537, -0.038269043, 0.011367798, -0.023254395, 0.005710602, 0.036010742, -0.0051574707, -0.00065279007, -0.026535034, 0.01386261, 0.008262634, -0.0032863617, 0.040771484, 0.004096985, -0.05444336, -0.014373779, 0.019760132, 0.022750854, -0.022338867, -0.004196167, -0.03768921, 0.0005016327, 0.013877869, -0.017303467, -0.0058059692, 0.0043792725, 0.0028419495, -0.050231934, -0.01977539, -0.035858154, 0.011703491, -0.04421997, 0.014511108, -0.011352539, 0.03463745, -0.024536133, 0.027404785, -0.0423584, 0.0014848709, -0.07122803, 0.007843018, 0.050231934, 0.041381836, 0.002149582, -0.028213501, -0.026412964, -0.007713318, 0.025527954, -0.006275177, -0.0020713806, -0.019607544, -0.03274536, -0.0028057098, 0.021072388, 0.041931152, -0.009963989, 0.0234375, -0.01612854, -0.0088272095, -0.07147217, 0.014625549, 0.039276123, -0.02520752, -0.040283203, -0.008270264, 0.07208252, -0.005619049, 0.023895264, 0.074523926, 0.023986816, -0.009132385, 0.01348114, -0.13024902, -0.0048980713, -0.011169434, -0.0050964355, -0.015838623, -0.018234253, -0.009384155, 0.057037354, 0.026367188, 0.039154053, 0.0138168335, 0.0062942505, 0.016983032, -0.015312195, -0.026321411, -0.014579773, 0.019134521, -0.017089844, 0.028533936, -0.026535034, 0.047302246, 0.053588867, 0.0036640167, 0.016494751, -0.018707275, -0.0032749176, -0.025024414, 0.0010137558, -0.026351929, 0.03201294, -0.02079773, -0.03744507, -0.0027217865, -0.046447754, -0.010536194, 0.03930664, 0.0043792725, 0.023483276, -0.028884888, 0.017959595, -0.03363037, -0.039154053, 0.03338623, -0.008728027, 0.010116577, -0.04071045, 0.012023926, 0.044281006, -0.00217247, -0.0077323914, -0.011131287, -0.028625488, -0.009735107, -0.0069236755, 0.007850647, -0.022476196, 0.023635864, 0.020904541, 0.015045166, 0.00995636, 0.028533936, 0.012619019, -0.018173218, -0.033294678, 0.010635376, -0.0071105957, -0.044036865, 0.036315918, 0.0046424866, 0.019989014, 0.041259766, -0.0055274963, 0.019515991, 0.02684021, -0.021759033, 0.031341553, -0.0010786057, -0.004852295, -0.049102783, 0.0826416, -0.021438599, 0.01713562, -0.05517578, 0.013259888, 0.04437256, 0.011856079, 0.021942139, -0.042053223, 0.031234741, -0.0024776459, -0.004764557, 0.015945435, 0.010345459, -0.03262329, -0.014625549, 0.012741089, -0.03945923, -0.023086548, 0.012832642, -0.011276245, -0.0055122375, -0.0061569214, -0.01612854, 0.042999268, -0.0079193115, -0.042266846, -0.032684326, -0.0068626404, 0.007774353, -0.030685425, -0.016143799, 0.004173279, -0.0014228821, -0.0018081665, -0.011932373, 0.02142334, 0.014770508, -0.027694702, -0.034179688, -0.0024852753, 0.022506714, -0.009674072, 0.033843994, 0.0009279251, -0.052612305, -0.00040006638, 0.019226074, 0.0069847107, -0.03050232, -0.0037288666, 0.007457733, -0.010276794, 0.009628296, -0.016311646, -0.021026611, 0.06365967, -0.044952393, -0.047790527, -0.034820557, 0.00057411194, -0.0051651, -0.006954193, 0.06652832, 0.057556152, -0.005706787, 0.030303955, 0.023330688, -0.043029785, 0.042785645, 0.011962891, -0.035888672, -0.029876709, -0.026367188, -0.026611328, 0.007881165, 0.00027680397, -0.02520752, 0.035308838, -0.012329102, 0.050476074, -0.032348633, -0.009742737, -0.028457642, -0.022018433, 0.0065727234, 0.008895874, 0.024917603, -0.0062942505, 0.031051636, -0.058776855, -0.045013428, 0.0099105835, 0.027740479, -0.011543274, 0.011940002, -0.007873535, 0.0037002563, -0.013519287, 0.045196533, -0.0006890297, 0.030776978, -0.0027694702, 0.0006928444, -0.05419922, 0.056518555, -0.05114746, 0.01737976, -0.023773193, 0.02130127, -0.012863159, 0.03286743, -0.07342529, -0.03665161, 0.029556274, 0.047668457, -0.018341064, -0.028747559, 0.010902405, 0.026504517, -0.022857666, -0.040100098, -0.017364502, -0.01977539, 0.00141716, -0.060760498, -0.030075073, -0.013839722, -0.028137207, 0.022918701, -0.020370483, 0.0054359436, -0.05770874, 0.06274414, -0.022994995, -0.011627197, 0.039733887, -0.030807495, 0.047546387, -0.04296875, 0.0062561035, 0.008766174, 0.0004222393, -0.01878357, -0.020401001, 0.016433716, 0.022735596, -0.00030446053, -0.010635376, 0.021636963, 0.035186768, -0.06945801, -0.0016260147, -0.029769897, -0.0064353943, -0.019805908, -0.00995636, 0.0029697418, -0.00025105476, 0.014854431, 0.025360107, 0.019927979, 0.0044059753, 0.03741455, -0.019729614, -0.004486084, -0.04034424, -0.038635254, 0.006839752, -0.028793335, -0.019210815, 0.033355713, -0.04840088, 0.017028809, 0.039031982, -0.01965332, 0.020874023, 0.0015506744, 0.0030574799, -0.03125, 0.002691269, -0.031707764, -0.032928467, -0.03010559, -0.009407043, 0.008262634, 0.041625977, 0.013504028, 0.009887695, -0.05722046, -0.02178955, -0.001748085, -0.032318115, -0.021713257, 0.02519226, -0.024627686, -0.0463562, -0.04437256, -0.016784668, -0.0084991455, -0.013000488, 0.048919678, 0.001332283, 0.061950684, -0.0076293945, 0.015899658, 0.07543945, 0.025054932, 0.03842163, -0.04031372, 0.004295349, 0.004009247, -0.030136108, -0.018188477, -0.023132324, -0.00818634, 0.0077171326, -0.006702423, -0.03186035, -0.0032463074, -0.0029888153, -0.0044555664, -0.009788513, -0.03286743, 0.01928711, -0.008674622, 0.020950317, -0.030334473, -0.0072021484, -0.031143188, -0.07659912, -0.013900757, 0.009498596, -0.046051025, 0.03378296, 0.04083252, -0.020431519, 0.0032291412, -0.0032653809, -0.04736328, -0.01966858, 0.013618469, 0.012062073, 0.029083252, 0.0017738342, 0.038238525, -0.015541077, -0.074401855, -0.021072388, 0.027618408, -0.042297363, -0.009292603, -0.027816772, 0.018920898, -0.0035381317, 0.0036411285, 0.049102783, 0.08917236, 0.019302368, 0.00605011, 0.018554688, -0.060150146, -0.01020813, 0.017028809, -7.432699e-05, -0.02067566, -0.06347656, 0.025543213, 0.029052734, 0.029159546, 0.00724411, 0.06591797, -0.043945312, 0.041778564, -0.014846802, -0.0040359497, 0.018081665, -0.020614624, 0.044677734, 0.027435303, -0.042297363, -0.008506775, -0.0013856888, -0.011550903, 0.02168274, 0.020477295, 0.04901123, 0.0023555756, -0.048614502, -0.029006958, -0.026870728, 0.004966736, -0.0047416687, -0.036315918, 0.0076026917, 0.015914917, 0.005836487, -0.02861023, 0.022369385, 0.025024414, 0.017318726, -0.01802063, 0.020614624, -0.012420654, -0.038024902, -0.026184082, -0.028717041, -0.054473877, 0.011909485, 0.014877319, -0.025314331, -0.03186035, -0.031951904, 0.017211914, -0.018341064, -0.052581787, -0.038757324, -0.026550293, 0.035583496, -0.0014152527, 0.012756348, -0.0032749176, 0.03527832, 0.008598328, -0.05819702, 0.0016317368, 0.03338623, -0.026290894, -0.050628662, 0.031707764, 0.024017334, 0.07702637, -0.027557373, -0.050933838, -0.058410645, 0.03567505, 0.0032348633, -0.008010864, 0.04196167, 0.0063056946, 0.0072517395, 0.03277588, -0.03488159, -0.018417358, -0.015533447, 0.027297974, -0.01411438, -0.0072784424]}, "B000C77UYA": {"id": "B000C77UYA", "original": "Brand: Manchester Tank\nName: Manchester Tank & Equip 10393.1 11lb Propane Tank\nDescription: \nFeatures: Colonial white powder coated finish\nVertical cylinder design\nProduct weighs 11 pounds\nAll cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E\nAll Manchester cylinders are triple tested with dry pneumatic air\n", "metadata": {"Name": "Manchester Tank & Equip 10393.1 11lb Propane Tank", "Brand": "Manchester Tank", "Description": "", "Features": "Colonial white powder coated finish\nVertical cylinder design\nProduct weighs 11 pounds\nAll cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E\nAll Manchester cylinders are triple tested with dry pneumatic air", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.037109375, -0.014915466, -0.053009033, -0.069885254, -0.03173828, 0.02368164, -0.080566406, 0.039154053, -0.044891357, 0.010215759, 0.0049209595, 0.011260986, -0.022567749, -0.0357666, 0.021362305, -0.042755127, 0.039886475, -0.032226562, -0.0054244995, -0.024719238, -0.0047416687, -0.007785797, 0.030715942, 0.053863525, 0.033691406, -0.060150146, 0.011405945, -0.005393982, 0.036499023, -0.010757446, 0.025756836, 0.00969696, 0.026901245, -0.008926392, 0.026107788, 0.032836914, 0.06201172, -0.017074585, 0.0008788109, 0.01600647, 0.01083374, -0.00995636, 0.06958008, -0.08117676, 0.016647339, 0.013244629, 0.015655518, -0.026672363, 0.007041931, -0.0037136078, 0.0021362305, -0.027908325, 0.017913818, -0.037597656, -0.02520752, -0.016677856, 0.06604004, -0.059906006, -0.004135132, -0.018676758, 0.0069999695, 0.06964111, 0.018417358, 0.0078125, -0.047821045, 0.010314941, 0.04083252, -0.031829834, 0.015304565, -0.04736328, -0.005607605, 0.029525757, 0.012313843, 0.025253296, -0.041412354, 0.0065231323, 0.060272217, 0.042053223, -0.007610321, 0.008102417, 0.005092621, 0.022537231, -0.02708435, 0.040039062, -0.022140503, 0.04156494, -0.015640259, -0.046661377, 0.03805542, 0.0026054382, -0.0060577393, 0.050445557, 0.0055503845, 0.046875, -0.018661499, -0.007987976, -0.051513672, -0.093322754, 0.05456543, 0.0184021, 0.0284729, -0.034057617, 0.019577026, 0.011138916, 0.014862061, 0.05508423, -0.017105103, 0.0064582825, 0.045959473, 0.0024967194, 0.012008667, 0.021621704, -0.017684937, -0.031921387, -0.0121154785, 0.035339355, -0.012161255, 0.01966858, 0.008270264, 0.012336731, 0.007648468, 0.0030593872, 0.026321411, -0.01802063, -0.014381409, -0.009925842, -0.03744507, -0.0029678345, 0.008125305, 0.023254395, -0.029876709, -0.0028381348, 0.0039863586, 0.03189087, -0.0065231323, -0.014968872, 0.009521484, -0.016830444, -0.022399902, 0.019485474, -0.014205933, -0.009979248, 0.028640747, -0.026916504, -0.064453125, 0.07458496, 0.031677246, -0.03918457, -0.066467285, -0.11236572, -0.02961731, -0.035491943, 0.012908936, 0.010108948, 0.0138168335, -0.01751709, 0.024124146, -0.020980835, -0.011924744, -0.03866577, 0.0018987656, -0.042510986, -0.024276733, 0.036376953, -0.0032653809, 0.059814453, 0.029785156, 0.0045318604, 0.01727295, 0.06933594, -0.033966064, 0.019348145, 0.045928955, 0.0064926147, -0.01876831, -0.010223389, 0.015388489, 0.04046631, 0.06958008, -0.06774902, -0.04458618, -0.018218994, 0.16418457, -0.040740967, 0.0127334595, -0.060791016, 0.025039673, -0.04534912, -0.007167816, 0.0059814453, 0.044128418, 0.021347046, 0.023010254, -0.015586853, -0.0029468536, -0.010093689, -0.056030273, 0.01689148, -0.041992188, 0.0013999939, 0.0059776306, -0.0010719299, 0.02772522, 0.021209717, 0.053253174, -0.0390625, 0.028869629, -0.012535095, 0.011299133, 0.048309326, -0.02104187, 0.012672424, 0.004589081, -0.03857422, 0.016571045, 0.016464233, -0.046844482, -0.0008068085, -0.012619019, 0.0011224747, -0.009971619, 0.00459671, -0.008506775, -0.013938904, -0.038879395, 0.0076446533, -0.02255249, 0.018508911, -0.005455017, 0.00030589104, 0.07324219, -0.0017118454, 0.073791504, 0.048034668, 0.0006670952, 0.015914917, 0.04550171, -0.053863525, -0.0050621033, 0.010597229, 0.011520386, -0.004070282, 0.0074043274, 0.05407715, 0.0074157715, -0.035003662, 0.0021972656, 0.018096924, -0.004497528, -0.028915405, 0.03050232, -0.024612427, 0.049041748, 0.020950317, 0.019638062, 0.016433716, -0.024047852, 0.023956299, -0.02456665, 0.034606934, -0.03781128, 0.048095703, 0.05407715, -0.005050659, 0.0054855347, 0.020721436, 0.049987793, 0.04486084, 0.007972717, -0.008605957, -0.0008497238, 0.01449585, -0.015655518, -0.014373779, 0.0041122437, -0.0040893555, -0.03866577, 0.028076172, -0.010482788, -0.019821167, 0.006210327, -0.014930725, 0.01838684, 0.001909256, 0.050842285, -0.0025196075, 0.011131287, -0.005340576, -0.08300781, -0.029083252, -0.0017700195, 0.022369385, -0.00472641, -0.033233643, 0.009239197, -0.0021038055, 0.03201294, 0.020751953, 0.011054993, -0.008575439, -0.018112183, 0.03213501, -0.013305664, 0.0030326843, 0.0073432922, -0.035247803, -0.0107040405, 0.027923584, 0.01739502, -0.036987305, 0.0005106926, 0.0541687, 0.029174805, 0.011505127, 0.044036865, 0.008918762, 0.024932861, 0.044952393, 0.018615723, -0.008666992, -0.012939453, 0.042510986, 0.045562744, 0.020309448, 0.050872803, -0.03375244, 0.0051841736, 0.0058937073, -0.04333496, -0.00028467178, 0.021896362, -0.021240234, 0.0032482147, 0.007965088, 0.010414124, 0.0028018951, 0.018707275, -0.0021972656, 0.005542755, -0.067993164, 0.02519226, 0.034484863, 0.0054779053, 0.05657959, -0.015335083, -0.02810669, 0.021530151, 0.0067710876, 0.036346436, 0.005455017, -0.009208679, -0.007972717, 0.01108551, 0.0019292831, 0.036376953, -0.02557373, -0.040374756, 0.050354004, 0.024993896, -0.022994995, -0.031173706, -0.027954102, -0.07080078, 0.004634857, 0.07952881, -0.0063591003, -0.014373779, -0.028839111, -0.0035514832, -0.018295288, 0.028030396, -0.0055007935, -0.08758545, -0.013145447, -0.0044898987, -0.0040626526, 0.025909424, -0.0184021, -0.033294678, -0.0023155212, 0.004032135, -0.0016202927, 0.03704834, 0.007904053, 0.0027446747, 0.016693115, 0.051635742, 0.0030059814, 0.051971436, -0.013763428, 0.03375244, 0.021408081, 0.02168274, -0.01928711, 0.0071983337, -0.0016069412, -0.030593872, 0.0017719269, -0.034301758, 0.0039711, -0.045074463, -0.0030994415, -0.009590149, -0.03768921, -0.013542175, -0.06451416, -0.05831909, -0.04385376, 0.025543213, 0.05886841, -0.009567261, 0.011230469, -0.0104522705, 0.013595581, -0.010017395, 0.02357483, -0.04446411, -0.011688232, -0.02859497, 0.05947876, 0.04827881, -0.06896973, 0.01651001, 0.049438477, 0.0004143715, 0.04724121, -0.029937744, -0.003643036, -0.020507812, -0.03387451, -0.00605011, -0.038604736, 0.0028152466, -0.04421997, -0.042388916, -0.013755798, -0.016586304, 0.0524292, -0.0061683655, -0.016235352, -0.038330078, -0.01108551, 0.00050640106, 0.050872803, -0.020965576, 0.022598267, -0.020233154, -0.03225708, 0.021652222, 0.010307312, 0.00674057, 0.0022850037, -0.0038337708, 0.011383057, -0.04348755, 0.047851562, -0.0055160522, 0.009811401, 0.026260376, -0.003917694, -0.0007224083, -0.006198883, -0.06549072, -0.006717682, 0.011871338, -0.042541504, 0.08520508, 0.008956909, 0.0055503845, 0.012420654, 0.014213562, -0.0042419434, 0.020751953, -0.028396606, 0.007511139, -0.002155304, 0.0018014908, -0.023468018, 0.024291992, 0.008102417, -0.06201172, 0.030441284, -0.074523926, 0.00844574, -0.0073928833, 0.0018129349, 0.027160645, -0.0040016174, 0.004753113, 0.013587952, 0.025802612, -0.009101868, 0.037597656, 0.015533447, -0.00068473816, -0.007797241, -0.011192322, -0.00039744377, -0.022369385, -0.056030273, 0.014717102, -0.0024166107, 0.05215454, 0.044799805, -0.0181427, -0.006160736, -0.008735657, -0.005947113, 0.03817749, -0.0034122467, -0.046020508, -0.022613525, 0.0031108856, 0.017181396, -0.0262146, 0.03466797, -0.03744507, 0.010879517, -0.012207031, -0.004863739, 0.013549805, 0.017669678, 0.018920898, 0.026672363, -0.033111572, -0.016220093, 0.019180298, -0.0078125, -0.078430176, -0.0030975342, 0.002702713, 0.07946777, -0.021469116, -0.06414795, 0.05126953, -0.03366089, -0.013397217, 0.0023994446, -0.022018433, -0.03366089, 0.005607605, 0.05206299, 0.024429321, -0.015304565, 0.003232956, -0.016571045, -0.03137207, -0.023788452, -0.0008611679, -0.029632568, -0.02154541, -0.00699234, -0.02809143, -0.0098724365, -0.023742676, -0.03050232, -0.043426514, 0.013687134, 0.0060272217, 0.005302429, -0.0015192032, 0.026657104, -0.04586792, 0.013137817, -0.04699707, 0.025894165, -0.032409668, -0.034698486, 0.074035645, -0.0826416, -0.008781433, -0.04269409, 0.06451416, 0.046661377, 0.017578125, 0.008171082, -0.015029907, 0.005722046, -0.00422287, 0.002632141, -0.04537964, 0.016281128, 0.0155181885, 0.011512756, -0.06585693, -0.04827881, 0.061340332, -0.06591797, -0.055236816, -0.051361084, 0.07171631, 0.0024490356, 0.02368164, -0.021240234, -0.0009965897, 0.025375366, -0.022949219, -0.09716797, -0.06976318, -0.010635376, -0.0019454956, -0.022949219, -0.018630981, -0.009010315, 0.054504395, 0.033599854, 0.034210205, -0.005420685, -0.022033691, -0.009857178, -0.027664185, 0.0132751465, -0.003993988, -0.010292053, -0.01927185, 0.011413574, -0.022079468, 0.05154419, 0.036071777, -0.011688232, 0.01625061, 0.029251099, 0.0028572083, -0.010696411, -0.036865234, 0.0026931763, -0.007457733, 0.014259338, -0.014892578, 0.011207581, 0.039855957, 0.0046958923, -0.023635864, -0.050933838, 0.019836426, 0.0703125, -0.016738892, 0.004714966, -0.055511475, -0.04876709, -0.006412506, -0.013290405, -0.06439209, 0.016998291, 0.0053100586, -0.0073013306, -0.024520874, -0.014480591, -0.02798462, -0.020751953, 0.014122009, -0.0010280609, -0.048309326, 0.012008667, 0.02923584, -0.018157959, -0.030029297, -0.0042800903, 0.0063934326, 0.020202637, -0.020996094, 0.040283203, -0.055725098, 0.046051025, 0.029174805, 0.0075645447, 0.015029907, -0.002796173, 0.0052719116, -0.024307251, -0.028076172, -0.035614014, -0.02267456, -0.002248764, 0.0027675629, -0.03503418, 0.0579834, -0.0023975372, -0.020065308, -0.046813965, 0.012451172, -0.01852417, -0.049072266, 0.0012407303, -0.0016679764, 0.021102905, -0.016693115, 0.02822876, 0.014419556, 0.025375366, 0.009490967, 0.02645874, 0.0062561035, -0.024719238, -0.038085938, -0.01876831, -0.07446289, 0.04449463, 0.008010864, 0.00054073334, -0.0095825195, 0.01878357, -0.030914307, -0.02130127, -0.008872986, 0.014137268, -0.012573242, -0.009880066, -0.0105896, -0.011184692, -0.017211914, 0.009902954, -0.0881958, -0.017333984, -0.054229736, -0.00806427, 0.0013780594, 0.041290283, 0.055725098, 0.010177612, -0.018035889, -0.03781128, -0.0064926147, -0.014091492, 0.018554688, -0.07208252, -0.021240234, -0.014144897, 0.005630493, 0.015029907, -0.032348633, 0.027908325, 0.062072754, -0.05001831, -0.026779175, -0.055541992, 0.052124023, -0.023376465, -0.012969971, 0.05267334, 0.05529785, 0.0039138794, 0.03149414, -0.018676758, -0.026428223, 0.0026721954, 0.007282257, -0.019363403, -0.03729248, -0.033691406, 0.015548706, -0.009033203, 0.02609253, -0.011398315, 0.02230835, -0.012321472, -0.0038719177, -0.013397217, 0.017608643, -0.028030396, 0.023269653, 0.019821167, -0.024108887, -0.00047826767, -0.046875, 0.002943039, -0.031143188, -0.075927734, -0.06097412, 0.017623901, 0.03363037, 0.028701782, -0.010566711, 0.013427734, -0.051086426, -0.017288208, 0.010566711, -0.01687622, -0.0025806427, 0.02734375, 0.009529114, 0.01335144, -0.048919678, -0.007980347, -0.01802063, 0.005455017, -0.005092621, 0.03527832, -0.034118652, -0.015914917, 0.013702393, 0.02671814, 0.013404846, -0.011192322, 0.021347046, -0.016799927, -0.055603027, -0.003955841, -0.008872986, -0.041107178, -0.03363037, -0.011802673, -0.052337646, 0.029846191, -0.017410278, 0.0055160522, -0.045318604, 0.050598145, 0.042053223, 0.018829346, 0.021881104, 0.019821167, 0.0076560974, -0.023269653, -0.01687622, 0.048187256, -0.022781372, -0.025665283, -0.026168823, 0.020004272, 0.033477783, 0.04498291, 0.017166138, 0.0051231384, -0.025466919, -0.0046653748, 0.0015268326, 0.007160187, -0.015060425, -0.013641357, 0.018753052, -0.028869629, -0.0014219284, -0.000436306, 0.011222839, 0.021514893, 0.013877869, -0.042633057, 0.01423645, 0.027053833, -0.03503418, -0.013031006, 0.0004119873, -0.006454468, -0.016479492, 0.033294678, -0.012718201, -0.020004272, -0.014038086, -0.00028061867, 0.023895264, -0.019104004, -0.0046539307, -0.015060425, 0.024459839, 0.0046424866, -0.02255249, -0.03665161, 0.018997192, 0.068725586, -0.014221191, -0.011222839, -0.027420044, 0.037322998, 0.028793335, -0.025665283, -0.06628418, 0.013763428, -0.073791504, 0.003900528, 0.015487671, 0.055358887, -0.059814453, 0.006652832, 0.012413025, -0.01979065, 0.03515625, 0.031982422, 0.04663086, -0.035736084, -0.042114258, -0.04699707, -0.008781433, -0.012451172, -0.0064888, -0.043121338, -0.004360199, -0.014541626, -0.015701294, -0.010627747, -0.0030994415, -0.023590088, 0.0021209717, -0.012504578, -0.034851074, -0.017456055, 0.031707764, -0.0039787292, -0.05508423, 0.047698975, 0.007789612, -0.06210327, 0.0048713684, -0.022903442, -0.012565613, -0.026809692, -0.039031982, 0.009468079, -0.02973938, -0.058624268, 0.07623291, 0.005027771, -0.025131226, -0.01763916, -0.0023212433, -0.005153656, -0.022094727, 0.010559082, 0.0041885376, 0.0390625, 0.021820068, 0.044891357, -0.0044441223, -0.05810547, -0.06677246, 0.02166748, -0.045013428, -0.018447876, -0.005748749, -0.02456665, -0.016494751, -0.0126953125, 0.0072784424, 0.013458252, 0.05090332, -0.009559631, 0.040618896, -0.03375244, -0.015151978, 0.010818481, 0.013969421, -0.019226074, -0.02407837, 0.0029640198, -0.019683838, -0.043518066, 0.030792236, -0.03363037, -0.0178833, 0.0044174194, 0.034301758, -0.068847656, -0.03652954, 0.013641357, 0.013969421, 0.025527954, -0.021896362, 0.007205963, 0.024169922, 0.03427124, 0.03390503, -0.022338867, 0.0010128021, -0.04650879, -0.030044556, -0.059265137, -0.012634277, 0.036895752, 0.021377563, -0.0032844543, 0.008735657, -0.015312195, -0.008987427, -0.0078125, -0.019104004, -0.023773193, -0.034301758, -0.006099701, 0.002357483, -0.041748047, 0.03050232, 0.0096588135, -0.01966858, -0.013465881, 0.047180176, -0.033111572, -0.0017948151, -0.023239136, -0.03149414, -0.018310547, -0.046661377, -0.015548706, -0.043273926, -0.0036201477, -0.01927185, 0.005332947, -0.00522995, 0.005256653, 0.0034503937, 0.02949524, -0.023925781, 0.024353027, 0.026229858, 0.034698486, -0.03994751, 0.05328369, 0.03100586, 0.025665283, 0.008369446, -0.09436035, -0.048187256, 0.035003662, 0.0028018951, -0.027297974, 0.014465332, -0.012329102, 0.019256592, 0.012260437, -0.032806396, 0.005344391, -0.008491516, 0.057037354, -0.0340271, 0.0032405853]}, "B016NA3XAO": {"id": "B016NA3XAO", "original": "Brand: DuraSteel\nName: DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU\nDescription: \nFeatures: High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes.\nMade to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors.\nIndoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you've been looking for.\nPropane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator.\nQuality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.\n", "metadata": {"Name": "DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU", "Brand": "DuraSteel", "Description": "", "Features": "High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes.\nMade to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors.\nIndoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you've been looking for.\nPropane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator.\nQuality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009971619, 0.009346008, -0.0055732727, -0.024002075, -0.0039863586, -0.0056762695, -0.008720398, -0.019165039, -0.057434082, 0.007419586, 0.0010881424, 0.014984131, -0.0062713623, -0.050109863, 0.05215454, -0.039276123, 0.018875122, -0.0039367676, -0.013710022, -0.023590088, -0.003004074, -0.0002207756, -0.03488159, 0.057556152, 0.046783447, -0.040802002, -0.07110596, 0.019180298, -0.013244629, -0.0009083748, 0.018249512, 0.024368286, 0.04675293, 0.010719299, -0.063964844, -0.016052246, -0.016113281, 0.002286911, -0.031219482, 0.0033454895, 0.018157959, -0.0017719269, -0.040863037, 0.0124435425, -0.04699707, -0.033233643, 0.037384033, -0.015525818, -0.024368286, 0.030181885, -0.017593384, -0.02708435, -0.0063438416, -0.02357483, -0.0028686523, -0.027938843, 0.01991272, -0.011238098, 0.020843506, -0.016830444, -0.02293396, 0.0155181885, 0.026931763, 0.006969452, -0.028656006, 0.010261536, 0.038146973, 0.012184143, 0.013191223, -0.061767578, -0.033294678, 0.014671326, 0.01399231, 0.005012512, -0.014663696, -0.045074463, 0.014846802, -0.026397705, 0.031143188, 0.011856079, 0.0028476715, 0.014297485, -0.008071899, -0.00806427, -0.0418396, -0.04574585, -0.006210327, -0.009613037, -0.05886841, -0.059509277, -0.034362793, -0.038909912, -0.082336426, 0.003320694, -0.011817932, -0.004722595, -0.026901245, -0.11627197, 0.03363037, -0.008964539, 0.05105591, -0.03488159, 0.01663208, 0.035583496, 0.023544312, 0.09313965, -0.031280518, 0.03704834, 0.050201416, -0.008415222, 0.025665283, -0.008911133, -0.019332886, -0.049072266, -0.006198883, 0.015396118, -0.04321289, 0.013847351, 0.03378296, -0.025268555, -0.005405426, 0.012367249, 0.039154053, 0.020050049, -0.0023555756, 0.0064888, 0.0015163422, -0.049957275, 0.009422302, -0.029815674, -0.047302246, 0.04196167, 0.07147217, 0.053222656, 0.010627747, -0.00041365623, 0.0033740997, -0.016662598, 0.024642944, 0.005783081, 0.030029297, -0.01083374, -0.00079774857, 0.028518677, -0.016448975, 0.02619934, 0.006046295, -0.010810852, 0.017501831, -0.041381836, -0.047912598, -0.010566711, 0.048187256, 0.005382538, -0.050354004, 0.0012817383, 0.014450073, -0.016464233, -0.014694214, -0.04269409, -0.005329132, -0.008255005, -0.011024475, -0.017364502, -0.026153564, 0.019348145, 0.010185242, 0.019592285, 0.017684937, 0.039489746, 0.0127334595, -0.0029735565, -0.023040771, 0.008621216, 0.013954163, -0.009819031, -0.008758545, 0.05230713, 0.063964844, -0.09741211, -0.07775879, -0.06518555, 0.10205078, -0.046813965, -0.012298584, -0.018173218, -0.0014505386, -0.009017944, 0.031982422, 0.011810303, -0.009094238, -0.014213562, 0.007972717, -0.05545044, -0.019882202, 0.02670288, -0.004131317, 0.03491211, -0.0057640076, 0.010635376, 0.018295288, -0.0005478859, 0.009552002, -0.011940002, -0.048583984, 0.006149292, -0.014816284, 0.016052246, 0.026657104, 0.041412354, 0.0033016205, 0.047027588, -0.019805908, -0.029525757, -0.011940002, 0.05380249, -0.013031006, 0.033355713, 0.01625061, -0.007972717, 0.022735596, 0.028686523, 0.01979065, -0.014144897, 0.052703857, 0.007801056, -0.03338623, -0.0034255981, 0.024215698, 0.013641357, -0.051605225, 0.028198242, 0.085998535, 0.08734131, -0.028015137, 0.020721436, 0.028884888, 0.027877808, -0.019821167, -0.008224487, 0.020751953, -0.018478394, -0.028671265, -0.025543213, -0.06726074, -0.0925293, 0.001332283, -0.017440796, -0.034362793, 0.012062073, 0.007835388, 0.007457733, 0.020523071, -0.013160706, -0.03201294, 0.028533936, -0.015670776, -0.0011177063, -0.017028809, -0.015060425, 0.030975342, 0.021835327, -0.029083252, 0.01979065, 0.010635376, -0.027648926, -0.011054993, -0.012031555, -0.03579712, -0.0014238358, 0.037628174, 0.009346008, -0.01525116, 0.002204895, 0.014060974, -0.024810791, -0.01612854, 0.026321411, -0.054138184, -0.015525818, 0.018661499, -0.022857666, 0.0015687943, 0.01737976, 0.058776855, 0.04373169, 0.025177002, 0.047607422, 0.034484863, 0.022247314, 0.04269409, -0.00089359283, -0.013534546, 0.005947113, -0.0038375854, -0.03152466, 0.03955078, 0.027618408, -0.0026779175, -0.016616821, -0.009208679, 0.02558899, -0.035095215, 0.00027179718, -0.011230469, 0.030181885, -0.0048103333, 0.0137786865, -0.007434845, -0.008659363, -0.03274536, -0.006877899, 0.041931152, -0.03274536, 0.07733154, 0.011436462, 0.0048561096, 0.044525146, -0.0023174286, -0.023635864, -0.0019893646, 0.018981934, 0.004535675, -0.023986816, 0.021438599, -0.004917145, -0.03842163, -0.0024032593, -0.035247803, 0.028686523, 0.03475952, 0.010269165, 0.031585693, -0.0007901192, -0.013710022, -0.023422241, 0.0059280396, -0.031463623, -0.01638794, -0.034240723, -0.0026454926, -0.007003784, -0.01461792, -0.021835327, -0.00072288513, -0.026306152, -0.0008854866, 0.023117065, 0.0006875992, -0.00094747543, 0.0046043396, -0.01033783, -0.004917145, -0.027923584, 0.00793457, -0.005580902, -0.015380859, -0.04824829, -0.0071372986, -0.0579834, -0.026489258, -0.01902771, -0.045135498, 0.010810852, 0.028717041, -0.009757996, -0.01838684, 0.014183044, -0.01084137, -0.0055122375, 0.0124053955, 0.0076141357, -0.07513428, -0.027999878, -0.03451538, 0.007030487, 0.10284424, 0.0024261475, 0.059509277, 0.08605957, 0.03253174, 0.032409668, -0.023880005, -0.018066406, 0.017120361, -0.013122559, -0.016296387, 0.023010254, 0.026809692, 0.022277832, 0.03286743, 0.012893677, 0.009941101, -0.014175415, 0.00932312, -0.009506226, -0.016098022, -0.0045051575, -0.04949951, -0.018539429, -0.045654297, 0.01852417, -0.019256592, -0.01574707, -0.036956787, -0.07220459, -0.045776367, -0.05102539, -0.0028629303, 0.045410156, -0.012878418, -0.01259613, -0.023788452, 0.0038051605, -0.010185242, 0.0055236816, 0.039855957, 0.009147644, -0.015777588, -0.02859497, 0.06536865, -0.06573486, 0.045806885, 0.03189087, -0.02407837, 0.0385437, -0.046417236, 0.023269653, -0.047332764, -0.0033473969, -0.029800415, -0.013641357, -0.03466797, 0.026397705, -0.0038909912, 0.028930664, 0.028396606, -0.032806396, 0.05706787, -0.040039062, -0.039489746, -0.018234253, 0.0017633438, 0.041229248, -0.010986328, 0.0042800903, -0.033111572, -0.04562378, -0.01058197, -0.046691895, -0.015975952, -0.010353088, -0.0022144318, 0.036376953, 0.00141716, 0.11004639, 0.06329346, 0.06738281, 0.011123657, 0.01751709, 0.034576416, -0.03277588, 0.004497528, 0.04638672, 0.0015068054, -0.028915405, -0.0043678284, 0.022903442, -0.016220093, -0.010971069, 0.0046653748, 0.0748291, 0.017120361, -0.012771606, 0.007255554, -0.0032958984, 0.024917603, 0.0029563904, -0.034088135, -0.055908203, -0.037384033, 0.005683899, -0.075805664, 0.09729004, 0.04031372, -0.038360596, 0.08105469, 0.062438965, 0.0037288666, 0.033355713, 0.01586914, -0.01612854, 0.015098572, 0.036987305, -0.007045746, 0.020355225, 0.008583069, -0.013534546, -0.008865356, -0.0211792, -0.058044434, 0.00920105, 0.03479004, -0.007713318, -0.04800415, 0.00894165, 0.052886963, -0.022964478, 0.009559631, -0.028808594, 0.028961182, -0.04071045, -0.0031852722, 0.0073928833, -0.030044556, -0.02960205, 0.008102417, 0.014297485, -0.028839111, 0.0007777214, -0.020065308, 0.008453369, 0.03717041, 0.045196533, -0.032043457, -0.01386261, 0.005203247, -0.0019702911, -0.014404297, 0.021209717, 0.030578613, -0.0037117004, 0.014717102, -0.018356323, 0.019760132, 0.00043320656, -0.010856628, 0.011924744, -0.031234741, -0.02772522, -0.027694702, -0.011207581, 0.0178833, -0.024429321, 0.0058135986, -0.031951904, -0.013221741, 0.0016584396, -0.042297363, 0.01096344, -0.029525757, -0.03805542, -0.05718994, -0.010414124, 0.008384705, 0.022323608, -0.03048706, 0.0031013489, -0.035736084, 0.000623703, 0.009254456, 0.016540527, -0.0692749, 0.026733398, -0.06994629, 0.0107421875, -0.0020313263, -0.029281616, 0.0047073364, -0.0076789856, -0.0025787354, -0.008041382, 0.088134766, -0.0034313202, 0.0007863045, -0.055908203, 0.046844482, 0.012588501, -0.004837036, -0.0680542, 0.015930176, 0.012001038, 0.024505615, -0.006767273, -0.048339844, -0.009643555, 0.039611816, -0.017791748, -0.028717041, -0.0013313293, 0.0769043, -0.027572632, 0.015586853, 0.016174316, 0.011940002, 0.0069274902, 0.00995636, -0.10827637, -0.057373047, -0.00762558, -0.0069084167, 0.0057868958, 0.0001578331, -0.0056762695, -0.0021209717, 0.013214111, -0.045898438, 0.023254395, 0.019546509, 0.0071983337, -0.029800415, -0.0060653687, -0.022460938, 0.034423828, -0.012771606, -0.03265381, -0.04373169, 0.035186768, 0.045318604, 0.015365601, -0.0019283295, -0.0007991791, -0.027755737, -0.07635498, -0.05340576, -0.020187378, 0.048095703, -0.004760742, -0.036621094, 0.01473999, -0.007865906, 0.011764526, -0.016998291, 0.008728027, 0.011764526, -0.041259766, -0.0003786087, -0.0075416565, 0.00073719025, -0.018798828, 0.008071899, -0.015533447, -0.04257202, 0.042938232, 0.02166748, 0.013458252, 0.020065308, 0.012397766, -0.021316528, -0.0152282715, 0.020492554, -0.015434265, -0.07269287, -0.02116394, 0.055358887, -0.052642822, -0.013496399, 0.021392822, 0.026824951, -0.023925781, 0.00374794, 0.07989502, 0.01184845, -0.0018873215, 0.036376953, 0.006931305, 0.044189453, 0.025650024, 0.010719299, 0.0014667511, 0.006832123, -0.0007777214, 0.0385437, 0.0146102905, 0.07019043, -0.00030612946, 0.034729004, 0.006111145, 0.029525757, -0.065979004, 0.01864624, 0.032989502, -0.011421204, 0.03250122, -0.041748047, 0.064819336, -0.043029785, -0.026123047, 0.013076782, 0.026016235, -0.030456543, -0.008636475, 0.0053749084, -0.0418396, -0.045166016, -0.0025634766, -0.01979065, -0.017471313, 0.0138168335, -0.027389526, 0.040039062, -0.018493652, -0.06304932, -0.046905518, -0.03942871, 0.029129028, -0.023590088, -0.007972717, -0.059051514, 0.005924225, -0.029373169, 0.0063972473, 0.041809082, 0.008903503, 0.0004954338, -0.027404785, -0.006088257, 0.03744507, -0.026138306, 0.0102005005, -0.009208679, 0.033355713, 0.062316895, -0.025802612, 0.020141602, 0.0132369995, -0.012245178, 0.0039596558, -0.0018615723, 0.0028686523, -0.012367249, -0.03451538, 0.06317139, -0.032287598, -0.044677734, -0.016860962, 0.057525635, -0.031707764, -0.03237915, 0.05218506, -0.017532349, 0.021835327, 0.007030487, -0.016418457, -0.047576904, -0.034423828, -0.020614624, -0.07952881, 0.0005850792, -0.047058105, 0.05810547, -0.004966736, -0.08343506, -0.009002686, 0.01953125, 0.021408081, 0.006416321, 0.003370285, -0.07092285, 0.011154175, 0.0020198822, 0.011787415, 0.0033607483, -0.022277832, -0.034484863, -0.02015686, 0.008674622, 0.016952515, -0.010765076, 0.003622055, -0.021865845, 0.01789856, 0.0031852722, 0.017150879, -0.0045928955, 0.0052261353, -0.020339966, 0.012420654, -0.0036201477, 0.00674057, -0.0024166107, 0.06365967, 0.0049362183, -0.004699707, -0.030822754, 0.004863739, -0.013496399, 0.03717041, -0.017410278, -0.011566162, -0.024612427, 0.024658203, 0.010887146, -0.013923645, 0.025741577, -0.009681702, -0.04559326, -0.016983032, -0.040283203, -0.0345459, -0.015914917, -0.006790161, -0.044403076, -0.01133728, -0.029769897, 0.01285553, 0.013191223, 0.011665344, 0.014923096, -0.0015449524, 0.0073890686, -0.0119018555, 0.08355713, -0.017196655, 0.054107666, 0.012031555, 0.04397583, 0.017929077, -0.02015686, 0.007286072, -0.0178833, 0.013786316, 0.0021877289, 0.046295166, -0.035705566, 0.009780884, 0.005138397, -0.045318604, 0.009803772, 0.00434494, -0.009727478, 0.00035738945, -0.03237915, -0.018218994, 0.0074043274, 0.043121338, -0.004261017, 0.044952393, -0.021697998, 0.00894165, -0.014419556, -0.03805542, -0.01737976, 0.0020103455, -0.02861023, 0.0035877228, 0.0016069412, 0.007156372, 0.018432617, 0.00390625, 0.039154053, -0.037261963, -0.037261963, -0.005268097, 0.020858765, 0.01939392, -0.011276245, -0.024856567, -0.048187256, 0.0019359589, 0.03894043, -0.032440186, 0.03567505, -0.003276825, 0.015602112, -0.011169434, -0.019821167, 0.015777588, -0.022918701, 0.025939941, 0.035614014, -0.03668213, -0.049438477, -0.055999756, -0.030456543, 0.01033783, -0.02192688, 0.019012451, 0.009864807, -0.038269043, 0.0025577545, 0.010284424, 0.03564453, -0.048858643, 0.036254883, 0.0044059753, 0.019439697, 0.056396484, -0.015792847, 0.012107849, 0.0146484375, -0.0053253174, 0.012130737, 0.057495117, 0.04296875, 0.057525635, -0.011047363, -0.01008606, -0.03656006, 0.00548172, -0.010253906, -0.019958496, 0.03186035, -0.06530762, -0.0031776428, -0.036956787, -0.03616333, -0.026107788, -0.057006836, -0.06414795, 0.0769043, -0.021209717, -0.032226562, 0.014602661, -0.0017681122, -0.037719727, -0.033203125, 0.014762878, 0.019317627, 0.029327393, 0.009399414, 0.054351807, -0.02229309, -0.082214355, -0.056915283, 0.03540039, -0.043914795, -0.010017395, -0.0070266724, 0.017578125, 0.03152466, -0.01449585, -0.0018539429, -0.018249512, 0.021484375, -0.033355713, -0.0024604797, -0.008560181, -0.03933716, 0.022109985, -0.0040130615, -0.02859497, 0.0017242432, 0.038269043, 0.0030117035, 0.010795593, 0.031677246, -0.0132369995, -0.030227661, 0.014671326, 0.0022945404, 0.0074501038, -0.017196655, 0.0034236908, 0.030273438, -0.015274048, -0.05996704, 0.030273438, 0.008682251, 0.08306885, 0.043060303, 0.0072746277, -0.008262634, -0.024993896, -0.037384033, -0.021438599, -0.011871338, 0.011878967, 0.007987976, -0.019897461, 0.035095215, 0.024658203, -0.036743164, 0.043060303, 0.019744873, -0.015716553, 0.011077881, -0.008522034, -0.03765869, 0.012939453, -0.021347046, -0.017089844, -0.028884888, 0.03161621, 0.0034503937, 0.013687134, -0.02053833, 0.024597168, -0.028396606, 0.008216858, 0.009605408, 0.006965637, -0.038848877, -0.0791626, 0.017837524, 0.042266846, -0.024032593, 0.028503418, -0.0053520203, -0.01361084, -0.043518066, 0.028823853, 0.024719238, 0.03881836, -0.04031372, 0.034423828, 0.035827637, 0.0036010742, -0.042663574, -0.049743652, -0.02986145, -0.028717041, -0.004650116, 0.02482605, 0.068115234, -0.048553467, 0.013122559, -0.0021915436, 0.014015198, -0.043884277, 0.02520752, 0.023834229, -0.010505676, 0.021530151]}, "B08S3533D9": {"id": "B08S3533D9", "original": "Brand: Folocy\nName: Folocy 14 1/2\" x 6 1/4\" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nDescription: SPECIFICATION:
      Material: Stainless Steel
      \u00a0Products Included: Set of 3 \u00d7 Barbecue bbq grill pipe burner replacement

      ADVANTAGE
      Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
      \nFeatures: Dimensions: 14.5 x 6.25 inch (14 1/2\" x 6 1/4\"), Material: Stainless Steel Center-fed Pipe Burner\nSuperior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use.\nFit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nEasy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water.\nNotices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend\u00a0removing the original part and comparing it to our bbq grill parts.\n", "metadata": {"Name": "Folocy 14 1/2\" x 6 1/4\" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC", "Brand": "Folocy", "Description": "SPECIFICATION:
      Material: Stainless Steel
      \u00a0Products Included: Set of 3 \u00d7 Barbecue bbq grill pipe burner replacement

      ADVANTAGE
      Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
      ", "Features": "Dimensions: 14.5 x 6.25 inch (14 1/2\" x 6 1/4\"), Material: Stainless Steel Center-fed Pipe Burner\nSuperior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use.\nFit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nEasy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water.\nNotices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend\u00a0removing the original part and comparing it to our bbq grill parts.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008346558, -0.0034542084, -0.025222778, -0.0597229, 0.019378662, -0.0009622574, 0.0038166046, 0.03111267, -0.04272461, 0.012954712, 0.014282227, -0.032928467, 0.014526367, -0.022750854, 0.008712769, -0.047546387, 0.022323608, 0.006336212, 0.010620117, -0.0236969, -0.017211914, -0.008178711, -0.025527954, 0.08001709, 0.04284668, -0.04446411, 0.048309326, 0.008865356, 0.05227661, 0.021362305, 0.047943115, -0.04296875, 0.07562256, -0.026672363, -0.02027893, -0.016906738, 0.02230835, -0.026870728, -0.020462036, 0.012207031, 0.035003662, -0.021606445, -0.0077590942, 0.034576416, -0.0062561035, -0.045532227, 0.04547119, -0.04638672, -3.2186508e-05, 0.014228821, 0.005718231, -0.021911621, 0.0064735413, 0.0357666, -0.012580872, 0.0044136047, 0.0036468506, 0.027954102, 0.020965576, -0.039367676, -0.024398804, 0.012275696, 0.026733398, 0.026763916, -0.02760315, 0.022979736, 0.08105469, -0.01576233, -0.045013428, -0.058532715, 0.021850586, -0.0049057007, 0.022018433, -0.011962891, -0.014350891, -0.009346008, -0.011352539, -0.015777588, 0.023117065, 0.0010204315, -0.0112838745, -0.008132935, 0.03842163, -0.0546875, 0.02017212, -0.05368042, -0.013137817, 0.01550293, -0.042663574, -0.024230957, -0.02734375, -0.0032138824, -0.06878662, 0.02607727, 0.0005965233, 0.0033359528, -0.014503479, 0.0039978027, 0.0152282715, 0.029632568, 0.05255127, -0.051330566, 0.059692383, -0.041778564, -0.019515991, 0.06842041, 0.021530151, 0.013534546, -0.0074005127, -0.007160187, 0.0010118484, -0.012161255, -0.031066895, -0.0670166, -0.014137268, 0.054229736, 0.004673004, -0.029541016, 0.02848816, -0.057373047, -0.025543213, 0.010749817, 0.0010318756, -0.027328491, 0.07501221, 0.055755615, 0.00944519, 0.001496315, -0.017608643, 0.03945923, -0.06665039, -0.029968262, 0.064941406, 0.05947876, 0.040130615, -0.040618896, -0.005012512, -0.035064697, 0.008682251, 0.017456055, -0.011192322, -0.031204224, 0.037353516, 0.014823914, -0.018310547, -0.0013589859, 0.016937256, 0.029586792, 0.0025939941, -0.045898438, 0.049194336, -0.0362854, 0.05517578, 0.013694763, -0.036987305, -0.003238678, 0.03677368, -0.03640747, -0.040985107, -0.06750488, -0.07409668, -0.031829834, 0.012763977, -0.027130127, -0.027435303, 0.023132324, 0.050323486, 0.01335907, 0.018585205, 0.019927979, -0.02508545, -0.010108948, -0.013450623, -0.006439209, 0.0069999695, 0.017074585, 0.0039253235, 0.045440674, 0.044525146, -0.087768555, -0.074645996, -0.046142578, 0.107788086, -0.04800415, -0.009529114, -0.0065727234, 0.004676819, 0.014915466, -0.0024147034, 0.0013389587, 0.0090408325, -0.010231018, 0.011627197, -0.012062073, 0.013824463, 0.0023784637, 0.0036125183, 0.03189087, 0.016860962, -0.05130005, -0.027267456, 0.025299072, -0.017303467, 0.010574341, 0.01890564, -0.010047913, 0.015274048, 0.01838684, 0.009567261, 0.042907715, -0.012069702, -0.0059394836, 0.011291504, -0.02684021, -0.005718231, 0.0020275116, -0.011161804, -0.00983429, 0.0032806396, 0.01864624, 0.025863647, 0.016723633, 0.00036358833, 0.011566162, 0.04562378, -0.0519104, -0.01121521, -0.042114258, 0.024291992, -0.026916504, -0.017974854, 0.05557251, 0.044433594, 0.048706055, -0.009407043, 0.042388916, 0.05987549, 0.07891846, -0.025909424, -0.036315918, 0.008636475, 0.016052246, -0.040771484, -0.010749817, -0.020248413, -0.0102005005, 0.021652222, -0.01927185, -0.04486084, -0.030822754, 0.047302246, 0.02017212, 0.037017822, 0.012268066, -0.030639648, 0.027511597, -0.013084412, 0.015808105, -0.036346436, 0.013298035, -0.00623703, 0.009941101, 0.0051727295, -0.015350342, 0.033172607, -0.005844116, 0.02330017, 0.002670288, -0.012207031, 0.0016584396, 0.006164551, -0.009597778, 0.0040779114, 0.001909256, -0.050689697, -0.0071029663, -0.02659607, 0.046051025, -0.027938843, -0.024520874, 0.03213501, 0.05307007, 0.003774643, -0.010238647, -0.0059280396, 0.016784668, 0.0008254051, 0.05117798, -0.029022217, -0.023605347, -0.007045746, 0.011260986, -0.023147583, -0.0015954971, 0.025344849, -0.023117065, 0.046875, 0.04849243, -0.013290405, 0.01651001, 0.009437561, 0.022354126, -0.03387451, 0.004600525, -0.024215698, -0.0013246536, -0.011787415, -0.016586304, -0.023757935, -0.08294678, 0.018554688, 0.007118225, 0.021362305, -0.018722534, 0.048461914, 0.0015916824, 0.0103302, 0.0446167, 0.01335144, -0.006462097, -0.010368347, -0.01663208, -0.0259552, -0.045074463, 0.004142761, 0.03074646, -0.07159424, -0.0038528442, 0.009147644, 0.017471313, -0.017211914, -0.013328552, -0.02748108, 0.0019216537, -0.007434845, 0.003921509, -0.0068893433, -0.014572144, -0.013717651, -0.026245117, -0.0038871765, -0.012336731, 0.017425537, -0.016464233, -0.031097412, 0.042175293, 0.031585693, 0.03237915, 0.04373169, 0.020401001, -0.027359009, -0.042633057, 0.0236969, 0.011108398, 0.01940918, -0.00415802, -0.036224365, -0.024932861, -0.03845215, -0.08605957, -0.025375366, 0.010658264, -0.029067993, 0.040496826, 0.002319336, -0.0013465881, 0.006965637, 0.028411865, 0.009147644, 0.01386261, 0.0574646, -0.0004146099, -0.03378296, -0.0146102905, -0.016113281, -0.026519775, 0.034484863, -0.042633057, -0.005016327, 0.008071899, 0.0017986298, 0.046081543, -0.055145264, 0.02267456, 0.023269653, 0.04034424, 0.041290283, 0.033294678, -0.009460449, -0.021377563, -0.011421204, 0.0154418945, -0.021118164, -0.027572632, 0.03427124, 0.017181396, 0.03213501, -0.04446411, 0.0057907104, -0.05834961, -0.07397461, 0.0018634796, -0.010215759, -0.02609253, 0.006866455, -0.09112549, -0.026443481, -0.061187744, -0.0031967163, 0.027404785, -0.009483337, 0.019744873, -0.028152466, 0.02810669, 0.011894226, -0.03378296, -0.0007338524, 0.005252838, -0.016983032, -0.017456055, 0.02330017, 0.005470276, 0.025543213, 0.02961731, -0.03527832, 0.0039520264, 0.0050735474, 0.02748108, 0.00048589706, 0.025680542, 0.00014472008, -0.024978638, -0.0033626556, -0.00970459, -0.031204224, 0.008728027, 0.015312195, 0.036499023, 0.04559326, -0.037017822, 0.0030460358, 0.0055656433, -0.019851685, 0.017868042, -0.013175964, -0.043792725, 0.015045166, -0.005886078, -0.02897644, -0.0011606216, -0.024002075, 0.015312195, 0.018859863, 0.03869629, -0.0049591064, 0.06365967, 0.022766113, 0.05239868, 0.01864624, -0.043151855, -0.02458191, -0.051727295, 0.040618896, 0.028945923, -0.015197754, 0.0042877197, 0.020889282, 0.018844604, -0.038146973, 0.01939392, 0.0013227463, 0.016571045, -0.015930176, -0.0044403076, 0.033111572, 0.023895264, 0.0039596558, 0.013420105, -0.025161743, -0.0037117004, -0.06427002, 0.0057029724, -0.063964844, 0.049560547, 0.026779175, -0.025848389, 0.04598999, 0.054534912, -0.03878784, -0.0006723404, 0.002855301, -0.018417358, -0.027236938, 0.015396118, -0.05517578, -0.0019569397, 0.0071754456, 0.010253906, -0.0018472672, -0.01574707, -0.027420044, -0.016357422, -0.0023937225, -0.019104004, -0.030685425, 0.044799805, 0.02130127, 0.002544403, -0.0061836243, -0.11791992, 0.05886841, -0.056396484, 0.025344849, 0.030456543, -0.025619507, -0.0541687, 0.02809143, 0.017501831, -0.059326172, 0.0025959015, -0.015136719, -0.029953003, 0.02947998, 0.0079193115, 0.037231445, -0.006996155, 0.023269653, 0.015449524, 0.017852783, 0.027862549, 0.024642944, -0.0007033348, 0.027740479, -0.00868988, -0.003129959, -0.028686523, -0.006679535, 0.030029297, 0.0015115738, -0.05722046, -0.0025482178, 0.030532837, -0.011787415, -0.032684326, 0.0013856888, -0.022323608, -0.00548172, -0.025039673, -0.010398865, -0.041931152, -0.0059547424, 0.006336212, -0.030075073, -0.0234375, 0.0146865845, -0.030731201, -0.0033569336, -0.019714355, -0.03933716, 0.012954712, -0.010887146, 0.052459717, -0.06149292, 0.00067949295, -0.023162842, -0.009994507, 0.06097412, 0.030532837, -0.013923645, 0.015625, -0.015686035, 0.0046806335, 0.026733398, -0.031921387, -0.012016296, -0.0418396, -0.016143799, -0.016662598, 0.041137695, 0.0713501, -0.010017395, 0.056488037, -0.03414917, 0.022064209, -0.056518555, 0.0003938675, 0.027160645, -0.06726074, -0.048217773, -0.023651123, 0.056427002, 0.012954712, 0.00022447109, 0.026901245, 0.011772156, -0.0066604614, -0.00023949146, -0.023254395, 0.041778564, 0.02142334, -0.030807495, 0.020584106, -0.006958008, -0.00019049644, 0.031021118, 0.04196167, 0.00047016144, -0.015365601, 0.01828003, -0.028335571, -0.0119018555, -0.0047836304, -0.0289917, 0.04663086, -0.055358887, -0.013412476, -0.097351074, 0.109069824, 0.06274414, -0.014778137, 0.011161804, -0.0158844, -0.021911621, -0.021316528, 0.013618469, -0.014350891, 0.0064201355, -0.054473877, -0.05319214, 0.0037136078, -0.0791626, 0.005458832, 0.037750244, -0.010505676, 0.04269409, -9.8884106e-05, 0.011436462, -0.033569336, -0.045318604, 0.03543091, -0.013961792, 0.023864746, -0.027572632, 0.03982544, 0.0073013306, -0.00970459, -0.00920105, -0.039733887, -0.021713257, 0.007461548, -0.011581421, -0.0048942566, -0.0018033981, -0.040740967, 0.038024902, -0.024917603, -0.020492554, 0.024108887, -0.0051612854, -0.00472641, -0.0046310425, 0.053985596, -0.024002075, 0.03778076, 0.01725769, -0.02658081, -0.010871887, 0.04196167, -0.057128906, 0.039245605, 0.026138306, -0.04876709, -0.0013141632, -0.028366089, 0.033081055, -0.0006289482, 0.0031700134, 0.015213013, -0.0020542145, -0.06439209, 0.010856628, 0.043060303, 0.028945923, 0.0017051697, -0.035095215, 0.04168701, 0.009094238, -0.016647339, 0.0010356903, 0.052001953, -0.039093018, -0.02960205, 0.009101868, -0.02519226, -0.019683838, -0.020599365, -0.050048828, 0.028884888, 0.012237549, 0.012161255, 0.018951416, 0.0058135986, -0.031677246, -0.03363037, -0.03869629, -0.0043258667, -0.02381897, 0.013877869, -0.001953125, 0.007762909, 0.005844116, -0.004852295, 0.0003042221, -0.0030059814, -0.024536133, 0.0073013306, -0.03189087, 0.005706787, -0.032440186, 0.045410156, -0.031097412, -0.0068473816, 0.032806396, -0.02897644, -0.0046577454, 0.025131226, -0.010185242, -0.014038086, -0.0016355515, 0.007411957, -0.04446411, -0.05987549, 0.059906006, -0.0579834, -0.044311523, -0.07489014, 0.049438477, 0.0068893433, 0.008453369, 0.11383057, 0.023971558, 0.020889282, 0.015075684, -0.021118164, -0.03540039, 0.011940002, -0.00024938583, -0.049316406, -0.011314392, -0.036621094, 0.01550293, 0.011383057, 0.004917145, -0.017349243, 0.060302734, 0.011390686, -0.024719238, -0.040649414, 0.00018453598, 9.5009804e-05, -0.060424805, 0.029830933, -0.011268616, -0.009613037, 0.010543823, -0.01940918, -0.14868164, -0.04840088, 0.005722046, 0.025009155, 0.035369873, 0.008239746, -0.0037021637, -0.0010871887, -0.051696777, 0.037322998, 0.007282257, -0.005039215, 0.009101868, 0.015716553, -0.01979065, 0.037902832, -0.03225708, 0.022705078, -0.0031375885, 0.018463135, 0.028671265, 0.007446289, -0.039031982, -0.014122009, 0.04220581, 0.04611206, 0.004589081, 0.008903503, 0.019226074, -0.0066833496, -0.0345459, -0.008964539, -0.014030457, -0.043640137, -0.032440186, -0.037719727, -0.024505615, 0.028427124, -0.00349617, 0.044891357, -0.008644104, 0.018722534, -0.014923096, -0.028915405, -0.005302429, -0.034362793, 0.06524658, -0.03451538, 0.013122559, -0.017471313, 0.032196045, 0.0029506683, -0.0033359528, -0.008560181, 0.016296387, 0.027709961, -0.010444641, 0.040893555, -0.011421204, 0.00868988, -0.011436462, -0.030441284, 0.03982544, 0.0054512024, -0.01386261, 0.018554688, -0.088256836, -0.057006836, -0.024887085, 0.039031982, -0.0055236816, 0.059020996, -0.0042419434, 0.018844604, -0.021911621, -0.0041236877, -0.038848877, -0.021774292, -0.031036377, -0.0072669983, 0.00541687, 0.020645142, -0.038604736, 0.01423645, 0.026138306, -0.01966858, 0.0049705505, 0.0014848709, 0.033050537, -0.017242432, -0.010772705, -0.023345947, -0.020126343, 0.028823853, 0.028167725, 0.003446579, 0.020431519, 0.0046653748, 0.0063323975, -0.001206398, -0.035614014, 0.023910522, -0.014053345, 0.059661865, 0.03213501, -0.014007568, -0.06384277, -0.02960205, -0.012069702, -0.010437012, 0.0104904175, 0.02609253, -0.008277893, 0.027191162, -0.028411865, 0.014518738, 0.028579712, 0.008453369, 0.021759033, -0.02407837, -0.012992859, 0.014480591, -0.035583496, -0.00020444393, -0.011810303, -0.013206482, -0.0061683655, 0.032928467, -0.003063202, 0.079833984, 0.008850098, 0.0110321045, 0.0052719116, -0.04434204, -0.027114868, 0.023101807, 0.08215332, -0.0071029663, 0.008743286, -0.021743774, -0.022521973, -0.02609253, 0.008369446, -0.050048828, -0.0050849915, -0.0019550323, -0.012535095, 0.016906738, -0.014076233, -0.020980835, -0.052246094, 0.009506226, 0.00093889236, 0.05102539, 0.0057678223, 0.047027588, -0.034332275, -0.031311035, -0.056274414, 0.012451172, -0.070739746, 0.0021514893, -0.03186035, 0.020614624, -0.012435913, -0.013954163, 0.047332764, 0.04296875, 0.03353882, 0.0007944107, -0.028427124, -0.056427002, -0.035217285, 0.051452637, -0.008171082, -0.017547607, -0.0289917, 0.039733887, 0.00944519, 0.031555176, 0.017471313, -0.0061073303, -0.03579712, -0.0054740906, -0.025466919, -9.572506e-05, -0.0022716522, -0.0030345917, 0.02911377, 0.022735596, -0.026382446, -0.011642456, 0.007411957, -0.027069092, 0.03567505, 0.036193848, -0.0054130554, -0.029296875, -0.03857422, -0.02053833, -0.0071029663, 0.025405884, 0.025863647, 0.050201416, -0.027114868, 0.0071144104, 0.008308411, -0.00029087067, -0.018081665, -0.05001831, 0.02494812, 0.024871826, -0.030258179, 0.026809692, -0.01625061, -0.009124756, -0.027862549, -0.00605011, 0.0357666, 0.008255005, -0.025985718, -0.01789856, -0.018341064, -0.0059509277, -0.0045433044, -0.017501831, 0.017959595, -0.07116699, 0.023330688, 0.033447266, 0.011894226, -0.009468079, 0.0143966675, -0.06384277, -0.02859497, 0.018936157, 0.018829346, 0.010559082, -0.060760498, 0.053131104, 0.013038635, 0.105773926, -0.02142334, -0.029083252, -0.02911377, -0.008834839, 0.024475098, 0.016677856, 0.050964355, 0.008987427, 0.013336182, 0.026565552, 0.018157959, -0.029266357, 0.020111084, 0.06842041, 0.017654419, 0.015014648]}, "B012ZY1RNM": {"id": "B012ZY1RNM", "original": "Brand: Camco\nName: Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black\nDescription: \nFeatures: Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks\nLid makes accessing propane tanks easier and more efficient\nKit includes hardware needed for installation\nConstructed of UV-stabilized polypropylene\nBlack\n", "metadata": {"Name": "Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black", "Brand": "Camco", "Description": "", "Features": "Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks\nLid makes accessing propane tanks easier and more efficient\nKit includes hardware needed for installation\nConstructed of UV-stabilized polypropylene\nBlack", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012008667, -0.023071289, -0.027938843, -0.05657959, -0.037017822, 0.010040283, -0.043884277, 0.048858643, -0.0061035156, -0.03353882, 0.0056266785, -0.012718201, -0.052734375, -0.047088623, 0.029220581, -0.037963867, 0.010101318, 0.0010118484, 0.0020828247, -0.03564453, 0.002439499, -0.033447266, 0.004398346, 0.013450623, 0.04043579, -0.045898438, -0.01637268, 0.00944519, 0.016723633, -0.010612488, 0.021057129, 0.013832092, 0.0423584, 0.01197052, -0.01864624, 0.0680542, 0.04949951, -0.019973755, -0.0012283325, 0.016418457, -0.01461792, 0.025756836, 0.06994629, 0.019714355, 0.018051147, -0.07757568, 0.048187256, -0.056854248, 0.055114746, 0.029830933, 0.0011873245, 0.022918701, -0.003944397, -0.041259766, -0.014289856, 0.018814087, 0.022369385, -0.040618896, 0.017486572, 0.0044288635, 0.0014486313, 0.016571045, 0.024810791, -0.008384705, -0.03942871, 0.028335571, 0.07922363, -0.017364502, -0.01826477, -0.08087158, -0.02381897, 0.02973938, 0.0063934326, 0.023605347, -0.046691895, -0.033813477, 0.04019165, 0.0025081635, 0.009521484, 0.02217102, 0.0006246567, -0.030975342, 0.058166504, -0.019302368, -0.0012798309, 0.0022640228, -0.017532349, -0.0146484375, -0.03753662, 0.0025043488, -0.034088135, -0.025512695, -0.005115509, 0.014556885, -0.021316528, 0.013931274, -0.032714844, -0.039398193, 0.034362793, 0.00793457, -0.010299683, -0.015151978, -0.0077819824, -4.5716763e-05, 0.0027675629, 0.0149383545, 0.004753113, -0.03488159, 0.0143585205, 0.00043821335, -0.031463623, 0.046569824, -0.0103302, -0.016967773, -0.010795593, 0.015563965, -0.03591919, 0.03805542, 0.010734558, 0.028656006, -0.036499023, -0.026428223, -0.018722534, -0.027664185, 0.014556885, -0.03024292, -0.026504517, 0.06451416, -0.047821045, -0.026657104, -0.033843994, 0.036743164, 0.060699463, 0.06341553, 0.026016235, 0.008483887, 0.0046958923, 0.006942749, 0.012641907, 0.017730713, -0.0068244934, -0.03262329, 0.024002075, 0.014953613, -0.03677368, 0.05142212, 0.020263672, -0.015777588, -0.03338623, -0.05316162, -0.04928589, -0.008865356, 0.031829834, 0.009063721, -0.029022217, 0.0039520264, 0.03543091, -0.01638794, -0.045654297, -0.062408447, -0.0032043457, -0.024871826, -0.02810669, 0.08404541, 0.04071045, 0.056549072, 0.0519104, 0.0054512024, 0.005847931, 0.0020160675, -0.040527344, -0.007446289, -0.006450653, 0.0027542114, 0.0018825531, 0.024658203, -0.030761719, 0.07281494, 0.06994629, -0.088378906, -0.06567383, -0.06677246, 0.13439941, -0.042297363, -0.01134491, -0.027023315, 0.02848816, -0.014282227, -0.0028648376, -0.020309448, 0.025405884, 0.044708252, -0.0023097992, -0.021591187, 0.0024738312, -0.0069122314, 0.0015573502, 0.010253906, -0.013839722, 0.0026741028, -0.057739258, -0.018936157, 0.016098022, 0.015327454, 0.02532959, -0.047698975, 0.021102905, -0.0046539307, -0.05355835, -0.01574707, 0.019805908, -0.017532349, 0.012275696, -0.046722412, 0.0070610046, 0.039733887, -0.0031337738, -0.00894165, -0.026306152, -0.005138397, 0.0013036728, 0.0071372986, 0.0038146973, 0.06124878, -0.010093689, 0.0069274902, -0.035247803, 0.0026283264, -0.0088272095, -0.014823914, 0.05105591, 0.040802002, 0.03338623, 0.022857666, -0.013710022, 0.029129028, 0.021362305, -0.029937744, -0.016143799, 0.023483276, 0.032989502, -0.038146973, 0.011871338, 0.031951904, 0.011474609, -0.01737976, 0.016479492, -0.009941101, -0.02217102, -0.0013284683, 0.09362793, -0.018875122, 0.0070762634, 0.009490967, -0.039733887, 0.015701294, -0.032318115, 0.025177002, 0.008010864, 0.0071105957, -0.029663086, 0.045135498, 0.07635498, -0.018081665, 0.018936157, -0.0030117035, 0.058654785, 0.05340576, 0.020217896, -0.031982422, -0.01448822, 0.039794922, 0.0020179749, 0.019851685, -0.05618286, 0.04714966, -0.028305054, 0.0035057068, 0.008056641, 0.008636475, 0.036712646, 0.0113220215, 0.00983429, -0.0064849854, 0.0519104, 0.008628845, 0.007736206, 0.029724121, -0.05630493, 0.004421234, 0.02494812, 0.0345459, 0.020477295, -0.03894043, 0.037719727, 0.016952515, 0.05569458, -0.020584106, 0.016738892, -0.0018339157, 0.016296387, 0.051696777, 0.0029773712, 0.007255554, -0.011642456, 0.011894226, -0.02798462, 0.01424408, 0.005870819, -0.018722534, -0.012702942, 0.028793335, 0.008720398, 0.035491943, -0.00078582764, -0.0032291412, 0.031066895, 0.038970947, 0.06298828, 0.045166016, 0.004463196, 0.015899658, -0.029937744, 0.013832092, 0.017364502, 0.0070266724, -0.0014858246, -0.010818481, -0.0069618225, -0.02532959, -0.007972717, -0.045806885, -0.024871826, 0.0019254684, 0.0063438416, -0.0027065277, 0.0003707409, 0.050872803, -0.0046195984, -0.034423828, 0.02041626, -0.017913818, -0.0068092346, 0.030532837, 0.03829956, -0.08093262, 0.00022912025, -0.0066337585, -0.0019950867, 0.021911621, -0.020690918, 0.004852295, -0.008285522, -0.024398804, 0.007873535, 0.030471802, -0.0079956055, -0.014350891, 0.03753662, -0.04751587, 0.013893127, -0.029800415, -0.0340271, 0.009422302, 0.028320312, 0.0060806274, -0.048675537, 0.010261536, -0.00027942657, 0.022033691, -0.018188477, 0.016830444, -0.064331055, -0.019042969, -0.012901306, 0.011314392, 0.023422241, -0.05731201, 0.014793396, 0.0026302338, -0.01159668, 0.031677246, -0.04534912, 0.050109863, 0.005142212, 0.032165527, 0.05593872, 0.06561279, 0.006717682, -0.046936035, 0.013122559, 0.070617676, -0.020385742, -0.021759033, -0.004425049, -0.025146484, 0.038970947, 0.05203247, -0.03567505, -0.017929077, -0.10992432, -0.0024261475, -0.0029067993, -0.041015625, -0.012077332, -0.008605957, -0.0871582, -0.06011963, 0.020126343, 0.03781128, -0.004005432, 0.019500732, -0.008079529, 0.013656616, -0.019210815, 0.00037884712, -0.025131226, -0.008476257, -0.03869629, 0.04852295, 0.046966553, -0.052764893, 0.0034618378, 0.037994385, -0.033599854, 0.010475159, 0.010269165, 0.03326416, -0.006046295, -0.012702942, -0.015899658, -0.024017334, -0.036010742, -0.05142212, -0.030639648, 0.005001068, 0.0047721863, 0.014266968, -0.0019798279, 0.002483368, -0.03286743, -0.035827637, 0.0030593872, 0.021896362, -0.023406982, 0.0129852295, -0.028518677, -0.03186035, 0.0060272217, 0.00856781, -0.021835327, -0.0023899078, -0.024536133, 0.0008635521, -0.039276123, 0.05819702, -0.0019836426, 0.03744507, 0.015151978, -0.015945435, -0.023269653, -0.02458191, 0.00894165, -0.014213562, 0.012466431, -0.03491211, 0.02355957, 0.02015686, 0.024215698, -0.015365601, 0.018051147, 0.031707764, 0.0007071495, -0.0053100586, 0.004989624, 0.016098022, 0.010856628, 0.003921509, 0.00025963783, -0.008285522, -0.084472656, 0.029678345, -0.029205322, 0.044555664, 0.0211792, -0.011886597, 0.097473145, 0.058624268, -0.0067367554, 0.0035209656, 0.03933716, -0.004890442, 0.0011863708, 0.030715942, -0.02279663, -0.039855957, -0.009651184, 0.008399963, -0.00026798248, -0.0418396, 0.014266968, -0.015274048, -0.016998291, -0.00035190582, 0.0052719116, 0.0069389343, 0.0030765533, -0.025482178, 0.004886627, 0.022003174, -0.040649414, -0.026275635, 0.025543213, 0.011695862, -0.013847351, 0.010505676, -0.030593872, 0.0093688965, -0.028915405, -0.0017576218, -0.026123047, -0.02418518, 0.005290985, 0.034332275, 0.009178162, 0.0026130676, -0.022079468, 0.027618408, -0.067871094, -0.014572144, 0.0021820068, 0.03201294, 0.03186035, -0.018432617, 0.030776978, 0.029434204, 0.018051147, 0.009002686, -0.027877808, -0.08215332, 0.03152466, 0.060150146, -0.00592041, -0.07269287, -0.014984131, -0.03390503, -0.03768921, 0.00028252602, -0.011253357, -0.019256592, 0.0032215118, 0.012428284, 0.0043182373, -0.048828125, -0.051635742, 0.036132812, 0.013076782, -0.0028705597, 0.0056419373, -0.011924744, 0.016967773, 0.061798096, -0.06414795, -0.027191162, -0.06903076, 0.003080368, -0.002248764, -0.014533997, 0.019851685, -0.022827148, -0.0030212402, -0.019744873, 0.059173584, 0.0035114288, -0.007980347, -0.01663208, 0.008850098, 0.015472412, 0.036376953, 0.03866577, -0.01689148, 0.008956909, -0.024520874, 0.0020656586, -0.047027588, -0.034240723, 0.028305054, -0.06384277, -0.06976318, -0.03970337, 0.07745361, 0.0037441254, -0.023666382, -0.0362854, 0.02798462, 0.03111267, 0.028198242, -0.00894165, -0.024932861, 0.01373291, -0.043945312, -0.016693115, -0.004180908, -0.027755737, 0.04928589, 0.0006814003, -0.03756714, -0.027511597, 0.01600647, 0.027114868, -0.025772095, -0.006576538, -0.0104522705, 0.0090408325, 0.004020691, -0.007926941, -0.04937744, 0.060455322, 0.037841797, 0.016738892, 0.022232056, -0.0055885315, 0.0069007874, -0.047607422, -0.053344727, 0.0046195984, 0.076293945, -0.007461548, -0.050872803, -0.005783081, -0.037719727, -0.0126571655, -0.044952393, 0.0032100677, -0.04748535, 0.041656494, -0.051635742, -0.060455322, -0.04269409, -0.02494812, 0.011566162, -0.02796936, -0.024002075, -0.009742737, -0.016204834, -0.026489258, -0.017745972, 0.02368164, -0.036743164, -0.021347046, 0.0063056946, 0.013725281, -0.017562866, 0.04348755, 0.009002686, 0.024887085, -0.036102295, 0.0016202927, 0.019958496, -0.009086609, -0.02154541, 0.055419922, 0.008964539, 0.012283325, 0.04611206, 0.034118652, -0.0418396, 0.0051574707, -0.020370483, 0.043518066, -0.039855957, -0.00920105, 0.0030441284, 0.013061523, 0.006916046, -0.07293701, 0.040252686, -0.00021326542, -0.030380249, -0.044525146, 0.020339966, -0.037017822, -0.058685303, 0.01776123, -0.0077056885, 0.030822754, -0.043548584, -0.0019311905, 0.007820129, 0.036590576, -0.0053863525, 0.033813477, 0.0040626526, 0.006702423, -0.017349243, -0.0052604675, -0.03503418, 0.0625, -0.009162903, 0.0032958984, 0.0057868958, 0.022842407, -0.019622803, -0.0062294006, -0.0040245056, -0.008041382, -0.036956787, -0.02835083, 0.02406311, 0.024230957, -0.020263672, -0.04647827, -0.040008545, 0.010559082, -0.061553955, -0.0099487305, -0.04425049, -0.0059280396, -0.0043945312, 0.05984497, -0.076049805, -0.005306244, -0.017105103, -0.01953125, 0.01576233, -0.0066223145, -0.09289551, -0.056243896, 0.037322998, 0.053100586, 0.021697998, -0.0022735596, 0.038879395, -0.009819031, -0.018051147, -0.015541077, 0.05697632, -0.02003479, -0.05203247, 0.0715332, 0.060028076, -0.0042686462, 0.017028809, -0.03894043, -0.068359375, 0.013908386, -0.004234314, -0.07543945, -0.044403076, -0.046722412, -0.020126343, 0.005027771, -0.011711121, 0.0010843277, 0.023880005, 0.016189575, 0.023101807, -0.013374329, -0.01626587, -0.022094727, -0.03012085, -0.004096985, -0.06088257, 0.016448975, -0.026901245, 0.009605408, -0.055419922, -0.08758545, -0.02482605, 0.02178955, 0.033935547, 0.00869751, 0.0057907104, -0.0140686035, -0.020339966, 0.017471313, 0.013160706, -0.05142212, 0.009140015, 0.027374268, 0.019592285, 0.015777588, -0.021743774, -0.014625549, -0.005332947, -0.025680542, 0.049865723, -0.0018672943, -0.03994751, -0.011779785, 0.0635376, 0.03881836, 0.022247314, -0.025924683, -0.011871338, -0.012382507, -0.0064048767, -0.0042686462, 0.016220093, -0.019897461, 0.035858154, -0.022628784, 0.015312195, 0.014816284, -0.024887085, 0.015853882, -0.009925842, 0.052734375, 0.0012512207, 0.019561768, 0.009002686, -0.013839722, -0.0059890747, 0.01084137, 0.016677856, 0.031097412, 0.009307861, 0.0071144104, -0.033416748, -0.02645874, 0.018676758, 0.021240234, -0.025863647, 0.052581787, -0.027297974, 0.016082764, 0.03137207, -0.07330322, 0.011962891, 0.038513184, -0.0055732727, 0.015899658, -0.015312195, 0.012634277, 0.019943237, 0.005065918, 0.041503906, -0.050048828, 0.033599854, 0.028198242, -0.019332886, 0.026184082, -0.04827881, -0.04763794, 0.03326416, -0.033599854, -0.012458801, 0.00466156, -0.019058228, 0.0637207, 0.012199402, 0.019546509, 0.06970215, -0.046142578, 0.0021629333, 0.0021076202, 0.012283325, -0.041046143, -0.0154953, 0.011581421, -0.013328552, 0.0011806488, -0.006362915, 0.035003662, 0.016815186, 0.00029110909, -0.05126953, 0.038085938, -0.06591797, 0.05001831, 0.027542114, 0.005355835, -0.014335632, 0.003370285, -0.008491516, -0.0027103424, 0.026504517, 0.01927185, 0.010757446, 0.030715942, 0.007896423, -0.004600525, 0.041107178, -0.013053894, 0.0064315796, -0.024368286, 0.015388489, 0.00057315826, -0.003917694, -5.340576e-05, -0.008460999, -0.02633667, -0.0041770935, -0.01499176, -0.035888672, 0.009338379, 0.017684937, -0.01878357, -0.021255493, 0.028656006, 0.005859375, -0.015472412, -0.028945923, -0.016494751, -0.03970337, 0.0011940002, 0.001909256, -0.026153564, -0.052459717, -0.037841797, 0.025390625, -0.026275635, -0.02998352, 0.0012779236, 0.01008606, -0.043151855, -0.025604248, -0.015670776, 0.016296387, 0.03375244, -0.02432251, -0.007850647, 0.0057754517, -0.021759033, -0.049316406, 0.015296936, -0.06817627, -0.007621765, -0.049041748, 0.0010795593, -0.022247314, -0.027908325, -0.0058135986, 0.04852295, 0.004169464, -0.009376526, 0.05505371, -0.0541687, -0.029464722, 0.025787354, 0.017791748, 0.0042762756, -0.01940918, 0.022018433, 0.017288208, 0.012298584, 0.0076408386, 0.025115967, -0.03677368, 0.03274536, 0.0038318634, 0.00793457, 0.021362305, -0.03024292, 0.04550171, 0.02861023, -0.035308838, -0.022628784, 0.0029659271, -0.026062012, 0.023956299, -0.033721924, 0.028686523, -0.015419006, -0.04824829, -0.049102783, -0.01939392, 0.011672974, 0.012832642, -0.033203125, 0.008575439, 0.026351929, -0.022079468, 0.0045318604, 0.016906738, 0.0149383545, -0.0061683655, 0.0012102127, 0.0019607544, -0.017547607, -0.009887695, -0.012886047, -0.033203125, -0.023269653, 0.013496399, 0.051727295, -0.042266846, -0.037872314, -0.0008459091, -0.003068924, -0.02381897, -0.0385437, -0.042816162, -0.06964111, 0.043518066, 0.051940918, -0.016342163, 0.013908386, 0.020370483, -0.0036201477, -0.00831604, 0.04724121, 0.007904053, 0.061767578, -0.012756348, 0.03262329, 0.012107849, 0.037017822, -0.017913818, -0.08270264, -0.04095459, -2.1457672e-06, 0.015533447, 0.00037884712, 0.045684814, -0.014633179, 0.0057373047, 0.014564514, 0.0044403076, -0.017349243, 0.01309967, 0.07928467, 0.0019464493, 0.00831604]}, "B07SB2Q8X7": {"id": "B07SB2Q8X7", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
      The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
      If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
      The propane hose body is made of stainlesssteel it will long lasting for your appliance
      This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

      Specification
      - Length: 12feet / 144 Inch/366 cm
      style=\"margin-left: 5.25pt;\"
      - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
      - Inlet Pressure: 25-250PSIG
      - Outlet Pressure: 0-30PSIG
      - Max.flow capacity:136000BTU
      - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

      Warm Tips
      -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
      -Not suitable for appliances which need low pressure regulator
      \nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more\n\u3010Brass Connector\u3011 P.O.L. x 3/8\u2033 Female Flare, orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "metadata": {"Name": "GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit", "Brand": "GASPRO", "Description": "GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
      The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
      If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
      The propane hose body is made of stainlesssteel it will long lasting for your appliance
      This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

      Specification
      - Length: 12feet / 144 Inch/366 cm
      style=\"margin-left: 5.25pt;\"
      - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
      - Inlet Pressure: 25-250PSIG
      - Outlet Pressure: 0-30PSIG
      - Max.flow capacity:136000BTU
      - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

      Warm Tips
      -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
      -Not suitable for appliances which need low pressure regulator
      ", "Features": "\u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more\n\u3010Brass Connector\u3011 P.O.L. x 3/8\u2033 Female Flare, orifice connector with 3/8\" Flare M x 1/8\" MNPT", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.007171631, 0.0051193237, -0.036071777, -0.021133423, -0.013389587, -0.019470215, -0.015686035, -0.0069274902, 0.026153564, 0.0041923523, -0.03173828, 0.0018110275, 0.002866745, -0.028823853, 0.0020427704, -0.02192688, 0.02180481, 0.03729248, 0.04446411, -0.008041382, 0.008346558, 0.014060974, -0.004085541, 0.059814453, 0.014587402, 0.012191772, 0.023651123, 0.011405945, 0.018493652, 0.011161804, 0.0121536255, -0.031173706, 0.041656494, 0.018630981, -0.04257202, -0.019882202, 0.014320374, -0.022949219, -0.044128418, 0.06185913, -0.010986328, 0.030090332, 0.0064315796, 0.016708374, -0.020095825, -0.044067383, 0.0010957718, -0.036254883, 0.015060425, 0.020431519, -0.0051002502, 0.015838623, 0.0005607605, -0.012496948, -0.0018367767, -0.031707764, -0.022018433, -0.0009493828, 0.005680084, 0.021621704, 0.01184082, 0.01499939, 0.0057754517, 0.011627197, -0.013916016, 0.042236328, 0.06414795, -0.032043457, 0.028762817, -0.004508972, -0.0138549805, 0.005973816, 0.0149002075, 0.0023612976, -0.06274414, -0.0005121231, 0.035583496, -0.019607544, 0.011161804, -0.00856781, 0.038360596, 0.00737381, 0.01826477, 0.01751709, 0.009628296, 0.046691895, -0.011642456, -0.04269409, -0.02810669, -0.027496338, -0.008300781, 0.0082092285, -0.07128906, 0.0022830963, -0.002916336, -0.023849487, -0.0064811707, -0.10272217, 0.06506348, 0.004436493, 0.07098389, -0.0625, 0.047790527, 0.036834717, 0.01878357, 0.07183838, -0.025680542, -0.009925842, 0.040008545, -0.0015554428, 0.020233154, -0.022491455, -0.026626587, -0.027648926, -0.026748657, 0.04421997, -0.017471313, -0.03363037, -0.0018987656, -0.02859497, -0.015701294, 0.009292603, 0.037506104, -0.03201294, -0.0026760101, 0.0011367798, -0.020828247, -0.03353882, -0.028137207, 0.006412506, -0.019348145, 0.007789612, 0.057403564, 0.079833984, 0.020874023, 0.00045728683, 0.01309967, -0.010650635, -0.0059051514, 0.015945435, -0.015686035, -0.027175903, -0.013710022, 0.003501892, -0.0109939575, 0.029800415, 0.03665161, 0.00018417835, -0.0059509277, -0.049682617, -0.030212402, 0.017028809, 0.039733887, 0.017288208, -0.028549194, 0.018249512, 0.019317627, -0.0036525726, -0.030136108, -0.046325684, -0.015129089, -0.026885986, -0.030792236, -0.0060310364, -0.028167725, 0.042663574, 0.044311523, 0.0037059784, 0.011459351, 0.03503418, -0.015457153, 0.0395813, 0.0637207, 0.02279663, -0.00032758713, -0.0031814575, -0.045013428, 0.05529785, 0.099121094, -0.14453125, -0.06451416, -0.040985107, 0.13256836, -0.03616333, 0.019073486, -0.033050537, -0.0011205673, -0.058807373, 0.0015335083, 0.0020942688, 0.011108398, 0.059570312, 0.0093688965, -0.038360596, 0.0038013458, 0.015045166, -0.031677246, 0.03112793, -0.014152527, -0.015319824, -0.049987793, 0.0069274902, 0.010665894, 0.00086164474, 0.035949707, 0.012313843, -0.008056641, 0.04232788, 0.031311035, 0.009841919, -0.012207031, -0.023117065, 0.00907135, -0.017700195, -0.041992188, 0.005722046, -0.0065956116, -0.033294678, -0.0042495728, -0.022094727, 0.026275635, -0.015281677, -0.0043640137, 0.06628418, 0.005168915, -0.036346436, 0.024520874, -0.0126571655, 0.012435913, 0.008865356, -0.0027999878, -0.005455017, 0.050872803, 0.041625977, -0.025848389, 0.031921387, 0.061523438, 0.047576904, -0.032318115, -0.010505676, 0.011764526, -0.016784668, -0.04901123, -0.020751953, -0.03869629, -0.066467285, 0.0024490356, -0.0068740845, -0.052490234, -0.024658203, 0.061035156, 0.029815674, 0.023529053, -0.00274086, -0.030899048, 0.033843994, -0.02709961, 0.0154418945, -0.039642334, 0.029190063, -0.0055732727, 0.03640747, 0.046691895, -0.014381409, 0.048339844, 0.018325806, 0.05041504, 0.040740967, -0.020736694, 0.024505615, 0.0054512024, 9.405613e-05, -0.010253906, 0.007610321, -0.037628174, -0.0018882751, -0.023422241, 0.02104187, -0.028320312, -0.02255249, -0.0056533813, -0.0058898926, -0.003704071, -0.0048599243, 0.03967285, -0.005657196, 0.0087509155, 0.0024700165, 0.02381897, 0.0024852753, 0.032806396, -0.008407593, -0.0063476562, 0.003019333, 0.012413025, -0.041259766, 0.06173706, -0.054992676, 0.034423828, -0.042236328, 0.05001831, 0.062316895, -0.048095703, 0.050598145, -0.005542755, -0.02406311, -0.011917114, 0.017715454, 0.007637024, -0.018798828, -0.00869751, 0.060455322, 0.021652222, -0.05041504, 0.03778076, 0.021606445, -0.00034737587, 0.0101623535, 0.021606445, 0.05432129, -0.0023670197, -0.008834839, 0.002904892, -0.0037670135, 0.00932312, -0.012565613, -0.006439209, 0.00028538704, -0.043273926, 0.018798828, 0.027938843, -0.009712219, -0.0026569366, -0.00957489, 0.0071525574, 0.004623413, -0.024856567, 0.060150146, -0.021392822, -0.046905518, -0.04397583, -0.05218506, 0.020233154, 0.00066661835, -0.07128906, -0.03543091, 0.032287598, -0.009849548, 0.010467529, -0.026809692, 0.048706055, 0.015220642, -0.011444092, -0.01209259, 0.0037937164, 0.0031585693, -0.00894165, -0.014884949, 0.010566711, -0.060272217, -0.036254883, -0.01171875, -0.07086182, -0.07324219, 0.08874512, -0.0065231323, -0.06347656, -0.03265381, -0.0038108826, 0.0016813278, 0.016036987, 0.0121154785, -0.026794434, -0.036712646, -0.035461426, -0.0154800415, 0.025970459, -0.027145386, 0.026260376, 0.017486572, 0.014518738, 0.026794434, -0.011199951, 0.028503418, 0.043182373, 0.016723633, 0.045166016, 0.02381897, 0.015083313, -0.03237915, -0.020980835, 0.008224487, -0.03677368, -0.01939392, -0.011222839, -0.004108429, 0.001830101, -0.0035247803, -0.018798828, -0.014656067, 0.0062026978, -0.0023899078, -0.019424438, -0.0016889572, 0.0021247864, -0.08685303, 0.003610611, -0.03491211, 0.024505615, -0.010169983, 0.014511108, 0.018218994, 0.014579773, -0.019226074, -0.029953003, -0.0034675598, -0.015075684, -0.009887695, -0.02734375, 0.009315491, 0.060394287, -0.08618164, 0.024810791, 0.033691406, -0.014884949, 0.018295288, 0.010124207, 0.006416321, 0.004901886, 0.025344849, 0.007949829, -0.020401001, -0.053497314, -0.014785767, 0.023071289, 0.029129028, 0.02835083, -0.029388428, 0.024154663, -0.0037841797, -0.107666016, -0.019821167, -0.02772522, -0.0029964447, -0.0037212372, -0.04244995, -0.02859497, -0.10266113, 0.024047852, -0.0390625, 0.020431519, -0.005065918, 0.07385254, 0.02180481, -0.006214142, 0.058563232, 0.020080566, 0.047546387, -0.005115509, -0.0046310425, -0.018539429, -0.032684326, 0.05596924, -0.0052833557, -0.039123535, -0.02267456, 0.0013332367, -0.0011510849, -0.0058784485, -0.026397705, -0.030426025, 0.083618164, -0.043151855, -0.024536133, 0.038360596, 0.021881104, -0.014724731, -0.017944336, 0.030548096, 0.006298065, -0.003982544, -0.00819397, -0.05239868, 0.06378174, 0.055114746, -0.02218628, 0.016540527, 0.024963379, -0.010543823, -0.030426025, 0.048461914, -0.013755798, 0.019180298, -0.015609741, 0.00484848, -0.06549072, 0.0075263977, -0.032989502, 0.023727417, 0.015541077, -0.040618896, 0.022094727, 0.0045928955, -0.03652954, -0.035736084, -0.007419586, -0.0009188652, 0.013824463, 0.032043457, -0.07489014, 0.009025574, -0.011795044, -0.009994507, 0.038146973, -0.045776367, -0.033081055, -0.016921997, 0.009109497, -0.062072754, 0.0071983337, -0.025939941, -0.017044067, 0.0031604767, 0.029846191, 0.017044067, 0.023132324, -0.046142578, 0.04348755, -0.0074806213, 0.037078857, 0.035827637, 0.010848999, -0.005542755, -0.04095459, 0.017562866, -0.024780273, 0.0042800903, 0.030975342, 0.04901123, -0.024673462, 0.0013446808, -0.0037193298, -0.017562866, -0.022232056, -0.020568848, -0.033691406, -0.05203247, 0.021026611, -0.02545166, 0.021484375, 0.0006842613, -0.013626099, -0.029693604, -0.016571045, -0.028015137, 0.02973938, -0.039123535, -0.0064086914, -0.0042037964, 0.021316528, 0.001335144, 0.029342651, -0.05053711, 0.010665894, -0.06237793, -0.0010318756, 0.02935791, 0.00067710876, 0.026733398, -0.031097412, -0.025039673, -0.010803223, 0.019805908, -0.026672363, 0.0104522705, -0.0124053955, -0.0071868896, -0.0107803345, 0.042114258, 0.056640625, -0.0020809174, 0.03173828, -0.022827148, -0.021011353, -0.07739258, 0.010902405, 0.00793457, -0.028366089, -0.055999756, -0.009017944, 0.0793457, 0.0021743774, 0.019241333, 0.04660034, 0.032836914, -0.014808655, 0.0007472038, -0.14575195, -0.037078857, -0.0067596436, -0.01776123, 0.012176514, -0.01676941, -0.009376526, 0.041290283, 0.06512451, 0.031173706, 0.008628845, 0.0025901794, 0.028793335, -0.027954102, -0.0016584396, -0.022857666, 0.00080251694, -0.030395508, 0.02949524, -0.017745972, 0.011650085, 0.005470276, -0.012199402, 0.0025348663, -0.020370483, -0.00018596649, -0.023727417, -0.022354126, 0.03173828, 0.062194824, -0.009895325, -0.05114746, 0.012611389, -0.049438477, -0.008262634, 0.008712769, 0.052581787, 0.03744507, -0.072509766, 0.0032634735, -0.009628296, -0.018249512, 0.00035738945, 0.004261017, -0.0048675537, -0.027801514, 0.05709839, -0.004535675, 0.0050239563, 0.011947632, -0.023773193, -0.0046424866, -0.05996704, 0.0035877228, 0.0010404587, -0.012069702, 0.021560669, 0.024841309, 0.0066375732, -0.013450623, 0.024627686, 0.0033493042, 0.003353119, -0.029678345, 0.039794922, 0.005756378, -0.016311646, 0.083984375, -0.036834717, 0.0020065308, 0.018005371, -0.014289856, 0.031433105, -0.016967773, -0.012969971, -0.00052309036, -0.011138916, 0.002696991, -0.024261475, 0.053466797, 0.003566742, 0.018478394, -0.06939697, -0.0009994507, 0.0076141357, -0.0043945312, 0.03869629, -0.037078857, 0.034301758, 0.0026416779, -0.018005371, 0.020874023, -0.011390686, -0.016311646, 0.01927185, 0.0107803345, -0.018875122, -0.023651123, 0.014389038, -0.009803772, -0.012252808, 0.020217896, -0.026809692, 0.03753662, -0.008560181, -0.06329346, -0.03488159, -0.032287598, 0.020614624, -0.022125244, -0.0004043579, -0.013450623, 0.009208679, -0.012825012, -0.02708435, 0.040527344, 0.018005371, -0.03967285, -0.029312134, -0.00055122375, 0.02911377, -0.00049448013, 0.02897644, -0.0056648254, -0.030883789, 0.0017900467, 0.014038086, 0.008979797, -0.034301758, -0.017486572, 0.007331848, -0.0062561035, -0.008575439, -0.045684814, -0.013534546, 0.057678223, -0.050201416, -0.052856445, 0.02154541, 0.008682251, -0.0036830902, -0.009376526, 0.060272217, 0.016525269, 0.00541687, 0.034942627, 0.022705078, -0.06359863, 0.015205383, 0.0023288727, -0.06958008, -0.07720947, -0.056121826, -0.053253174, 0.014572144, -0.019805908, -0.032073975, 0.02116394, -0.034210205, 0.033599854, -0.016342163, -0.016174316, -0.02772522, -0.01663208, 0.010856628, -0.004173279, 0.032836914, -0.023284912, 0.012886047, -0.06719971, -0.056121826, -0.010688782, 0.020874023, 0.0030345917, 0.01486969, 0.0018348694, 0.030151367, -0.026733398, 0.0259552, 0.03152466, -0.04675293, -0.032684326, -0.008514404, 0.015945435, 0.020950317, -0.037506104, 0.016357422, -0.029037476, 0.014076233, -0.030273438, 0.041625977, -0.049804688, -0.028076172, -0.017868042, 0.05807495, -0.00894928, -0.02848816, -0.004047394, 0.020050049, 0.00059461594, -0.032958984, -0.023101807, -0.009613037, -0.00774765, -0.024765015, -0.051849365, -0.02645874, -0.030090332, 0.0012140274, 0.0053977966, -0.0067710876, -0.03314209, 0.05053711, -0.00957489, -0.005580902, 0.014892578, -0.014381409, 0.027145386, -0.015106201, 0.016540527, -0.008743286, -0.002407074, 0.013999939, -0.019058228, 0.022018433, 0.034210205, 0.00065898895, -0.042877197, 0.025161743, 0.031829834, -0.06341553, -0.007041931, -0.009033203, 0.0055351257, -0.021850586, 0.012969971, 0.0071754456, 0.00881958, 0.023223877, 0.024368286, 0.017349243, -0.02394104, 0.03112793, 0.012496948, 0.0066375732, -0.012138367, -0.0090408325, 0.008872986, -0.020935059, 0.0074424744, 0.0053634644, -0.03805542, 0.020965576, 0.019012451, -0.018600464, 0.04019165, -0.040161133, 0.009391785, -0.028015137, 0.016235352, -0.023971558, -0.0340271, -0.032684326, 0.004261017, 0.014633179, 0.03656006, -0.012413025, 0.01574707, -0.061676025, -0.021362305, 0.0102005005, -0.026916504, -0.010185242, 0.019012451, -0.028564453, -0.053741455, -0.05444336, -0.017211914, -0.047332764, 0.007118225, 0.0060539246, -0.015403748, 0.032165527, -0.026184082, 0.0118637085, 0.0703125, 0.024154663, 0.04333496, -0.075927734, 0.0045661926, 0.052856445, -0.013381958, -0.0035991669, -0.0029735565, -0.024429321, -8.8095665e-05, -0.006996155, -0.031433105, -0.004463196, -0.007369995, -0.0029392242, -0.001663208, -0.025466919, 0.016784668, 0.001572609, 0.012252808, -0.031219482, 0.018585205, -0.03881836, -0.0859375, -0.037963867, -0.001791954, -0.043151855, 0.04208374, 0.0317688, -0.01586914, 0.025161743, -0.014122009, -0.040740967, -0.036590576, 0.008422852, -0.0042381287, -0.00223732, 0.016174316, 0.05456543, -0.017166138, -0.083984375, -0.055114746, 0.048065186, -0.06939697, -0.028213501, -0.06100464, 0.024627686, 0.017105103, -0.004863739, 0.035949707, 0.035369873, 0.0060272217, 0.0019798279, -0.0009937286, -0.02420044, -0.018951416, 0.037963867, 0.011756897, -0.019989014, -0.031921387, 0.004463196, 0.012069702, 0.025405884, 0.0029506683, 0.059051514, -0.028259277, 0.043304443, 0.0010433197, -0.035217285, 0.007751465, -0.011276245, 0.053588867, 0.03353882, -0.032318115, 0.0340271, 0.009841919, 0.017913818, 0.020858765, 0.014778137, 0.03237915, -0.025100708, -0.045684814, -0.01965332, -0.022705078, 0.02204895, 0.026062012, -0.02722168, 0.008399963, -0.0001988411, -0.0076446533, -0.019210815, 0.0048713684, 0.0010118484, 0.029266357, 0.0070991516, 0.022079468, 0.0011320114, -0.040100098, -0.020706177, -0.034820557, -0.04647827, 0.004852295, 0.008712769, -0.031799316, -0.030456543, -0.0024299622, -0.0063934326, -0.024032593, -0.007434845, -0.031097412, 0.0072746277, 0.021255493, -0.006061554, 0.029312134, -0.020584106, 0.036987305, 0.014831543, -0.061523438, 0.009635925, 0.041778564, -0.003107071, -0.034820557, 0.015716553, 0.03302002, 0.06793213, -0.011260986, -0.070251465, -0.05593872, 0.04257202, 0.026611328, -0.024917603, 0.05505371, -0.014587402, 0.009086609, 0.0178833, -0.017074585, 0.004070282, -0.0023841858, -0.0054473877, -0.02949524, -0.0020427704]}, "B074MDC1JV": {"id": "B074MDC1JV", "original": "Brand: LEGACY HEATING\nName: Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating\nDescription: \nFeatures: Item size: 56.7in x21.3in x24in\nFull Stainless Steel Burner and High Quality constructure\nHeat resistant tempered glass wind guard included\nLava glass, table lid and a protection cover included\nUse with 20lb. propane tank (not included) ETL Approved\n", "metadata": {"Name": "Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating", "Brand": "LEGACY HEATING", "Description": "", "Features": "Item size: 56.7in x21.3in x24in\nFull Stainless Steel Burner and High Quality constructure\nHeat resistant tempered glass wind guard included\nLava glass, table lid and a protection cover included\nUse with 20lb. propane tank (not included) ETL Approved", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.014930725, 0.00868988, -0.08459473, -0.060455322, 0.033721924, -0.040039062, -0.0010709763, 0.045532227, -0.064086914, 0.02243042, -0.0014209747, 0.008712769, 0.0090408325, -0.045013428, 0.041229248, -0.05239868, 0.023513794, 0.041015625, 0.059387207, -0.015052795, 0.008392334, 0.008140564, 0.0289917, 0.04788208, 0.018569946, 0.0009918213, -0.03756714, -0.029647827, 0.039642334, 0.016784668, 0.016983032, -0.021377563, 0.03439331, 0.015304565, -0.045959473, -0.029907227, -0.050689697, 0.0056114197, -0.047180176, 0.02961731, -0.0076446533, 0.011734009, 0.011138916, -0.04849243, -0.025924683, -0.0034732819, -0.026657104, -0.026443481, 0.013710022, -0.02130127, 0.0059318542, 0.026672363, 0.025512695, 0.026016235, -0.021255493, 0.0030403137, 0.02670288, -0.044952393, 0.014915466, -0.017593384, -0.003704071, 0.0012607574, 0.040893555, 0.016586304, -0.029922485, 0.016403198, 0.13452148, -0.025253296, 0.029205322, -0.03668213, -0.01146698, 0.06665039, 0.01084137, 0.025726318, -0.012260437, -0.039916992, -0.0044555664, -0.011482239, 0.025863647, 0.03161621, -0.021728516, -0.008605957, 0.00856781, -0.05783081, -0.003610611, -0.057617188, -0.011238098, 0.019760132, 0.006023407, -0.027282715, 0.011421204, -0.058746338, -0.030319214, 0.061828613, 0.029891968, -0.04208374, -0.055633545, -0.07281494, 0.03253174, -0.0005173683, -0.00075674057, -0.010444641, -0.015823364, 0.007987976, -0.02178955, 0.09490967, 0.026168823, 0.043273926, -0.008506775, 0.009231567, 0.011146545, -0.05871582, 0.010444641, -0.0068130493, -0.05935669, 0.019104004, 0.002067566, -0.031677246, 0.0060539246, -0.0068855286, -0.058654785, -0.041625977, 0.020431519, 0.049621582, 0.042114258, 0.05609131, 0.012527466, -0.0059509277, -0.021881104, 0.035583496, 0.0008544922, -0.012779236, -0.010002136, 0.030181885, -0.019577026, -0.016479492, 0.025665283, 0.0036525726, 0.015037537, -0.023376465, 0.0066871643, 0.023101807, 0.051483154, -0.0044784546, -0.00010681152, -0.005168915, 0.01979065, 0.03250122, -0.010131836, -0.047027588, 0.026275635, 0.021743774, 0.025894165, 0.026763916, -0.0099487305, 0.015182495, 0.037384033, -0.011764526, -0.054992676, -0.040039062, -0.004009247, 0.0067825317, -0.00969696, -0.028335571, -0.030807495, -0.039123535, 0.011985779, 0.0059051514, 0.031204224, 0.10534668, 0.002286911, -0.028015137, 0.027557373, 0.019760132, -0.03616333, -0.013038635, 0.006427765, 0.0803833, 0.034088135, -0.059631348, -0.06161499, -0.07495117, 0.13195801, -0.06518555, 0.03010559, -0.07409668, 0.014091492, -0.04107666, 0.011566162, 0.02418518, -0.007083893, 0.016326904, 0.033203125, -0.0546875, 0.022918701, -0.015068054, -0.009155273, -0.0027046204, -0.0067596436, 0.014663696, 0.06518555, -0.010971069, 0.0066604614, -0.016708374, -0.013671875, -0.019973755, -0.004058838, -0.0076408386, 0.01687622, 0.05368042, 0.0053634644, 0.04559326, -0.05014038, -0.009124756, -0.01802063, 0.02029419, -0.02293396, 0.007659912, -0.014724731, 0.020935059, -0.018081665, -0.009407043, -0.014190674, -0.0016117096, 0.016525269, -0.020324707, -0.0104522705, -0.014709473, 0.016418457, -0.010299683, 0.011131287, 0.03668213, 0.042297363, 0.038879395, -0.004634857, 0.031555176, 0.035217285, -0.0016546249, -0.025878906, -0.008636475, 0.015930176, -0.03277588, -0.01109314, 0.03692627, -0.035491943, -0.014671326, 0.013877869, 0.0049705505, -0.012329102, 0.026062012, 0.027618408, 0.0018138885, 0.020370483, -0.013702393, -0.02255249, 0.026260376, -0.046020508, -0.0030956268, 0.013656616, 0.005836487, -0.01638794, 0.029678345, 0.05456543, -0.00793457, 0.0037021637, 0.013923645, 0.031707764, 0.039886475, -0.0385437, -0.006793976, 0.025177002, 0.04925537, 0.007549286, 0.015525818, 0.048461914, -0.050354004, 0.0053253174, -0.023330688, -0.001045227, -0.006515503, 0.023361206, 0.032440186, -0.033843994, -0.0069236755, 0.024917603, -0.003036499, -0.028335571, 0.018661499, 0.03074646, 0.0052986145, 0.030822754, -0.00088119507, 0.0022354126, 0.020263672, 0.012123108, -0.040496826, -0.017074585, -0.0040397644, 0.034118652, -0.040771484, -0.01940918, 0.034729004, -0.024810791, 0.01197052, 0.0073394775, -0.018722534, 0.02217102, 0.0019388199, 0.005580902, 0.0082473755, -0.060760498, -0.002773285, 0.029724121, -0.0362854, 0.081726074, 0.041015625, 0.03427124, 0.050720215, 0.056884766, 0.06890869, -0.0027256012, -0.0033054352, -0.014778137, -0.00052690506, 0.006641388, 0.003042221, 0.0010709763, -0.010231018, -0.060760498, -0.01675415, 0.007484436, -0.059631348, -0.022079468, -0.0046653748, 0.0044441223, 0.011795044, -0.0072288513, 0.03338623, -0.00868988, -0.06304932, -0.013259888, 0.022979736, -0.0019607544, 0.009284973, -0.012359619, -0.0184021, 0.013969421, 0.017990112, -0.05908203, -0.0033283234, 0.015914917, -0.034088135, -0.0032405853, -0.023590088, -0.026611328, -0.002122879, -0.0098724365, -0.09082031, -0.045440674, -0.09613037, 0.015617371, -0.010604858, -0.022201538, 0.012031555, 0.0025749207, -0.013511658, -0.004825592, 0.01676941, -0.030059814, -0.0126571655, 0.11364746, -0.04083252, -0.09503174, -0.04284668, -0.07727051, -0.035186768, 0.022262573, -0.037994385, 0.019195557, 0.0037002563, -0.00030827522, 0.047698975, -0.012130737, 0.06652832, 0.03451538, 0.011398315, 0.027359009, -0.0022029877, 0.060791016, 0.004814148, 0.040985107, -0.0044021606, -0.056671143, -0.039276123, 0.011131287, 0.015602112, 0.0121536255, -0.0012617111, 0.0062446594, -0.037750244, -0.10571289, -0.0023403168, 0.0007863045, -0.05203247, 0.014038086, -0.07873535, -0.051971436, -0.05419922, 0.01838684, 0.046875, -0.01979065, -0.0055122375, -0.020553589, -0.02633667, 0.011657715, 0.014953613, -0.012016296, -0.0096206665, -0.023147583, 0.004600525, 0.033203125, -0.049713135, 0.020767212, 0.02923584, -0.02053833, -0.027709961, 0.006198883, 0.0056915283, 0.008872986, 0.051879883, 0.0033569336, 0.0011901855, -0.010574341, -0.017578125, -0.018844604, 0.015586853, 0.016693115, 0.018707275, 0.016235352, -0.02470398, -0.011131287, 0.005203247, -0.01399231, 0.018066406, 0.013397217, -0.03564453, 0.00081014633, -0.03640747, 0.0034332275, 0.034454346, -0.039733887, 0.006881714, -0.02470398, 0.017105103, -0.043182373, -0.017410278, -0.01499939, 0.05923462, 0.03427124, -0.04220581, 0.0029468536, -0.03857422, -0.0036334991, 0.044006348, -0.009277344, -0.0032157898, 0.022262573, 0.018066406, -0.041046143, 0.01348114, -0.0028934479, 0.009689331, -0.010391235, -0.007106781, 0.024963379, 0.034820557, -0.01096344, -0.013763428, -0.023544312, 0.009132385, -0.05404663, 0.018218994, -0.077697754, 0.06036377, 0.042877197, -0.016830444, 0.056610107, 0.009254456, -0.009605408, 0.015823364, -0.00655365, 0.01965332, 0.001080513, 0.04522705, 0.010726929, 0.00894165, 0.00818634, -0.0005478859, -0.02734375, -0.024002075, -0.053955078, 0.013008118, 0.02973938, 0.04638672, -0.061828613, -0.008705139, 0.03274536, -0.006275177, 0.022750854, -0.04019165, 0.012290955, -0.03567505, -0.035247803, 0.03488159, -0.03314209, -0.0107040405, 0.025177002, 0.06378174, -0.045959473, -0.03463745, -0.0057144165, -0.019454956, 0.041656494, 0.027252197, -0.0043907166, 0.0065689087, 0.025985718, 0.023910522, 0.014389038, -0.018249512, 0.0021381378, -0.01737976, 0.0063476562, 0.03475952, -0.0070991516, 0.015045166, 0.008049011, -0.010871887, -0.06427002, -0.07550049, 0.019760132, 0.033691406, -0.0031833649, -0.05001831, -0.0028247833, -0.018325806, -0.0014724731, 0.015335083, -0.020599365, -0.0060157776, -0.009666443, 0.0023937225, -0.08880615, -0.027267456, -0.02116394, -0.007205963, -0.06817627, 0.02861023, 0.0017995834, 0.0069618225, -0.011878967, 0.027526855, -0.06262207, 0.030700684, -0.04837036, 0.021957397, -0.015144348, -0.034973145, 0.040893555, -0.035095215, 0.0026283264, -0.011360168, 0.112854004, 0.008972168, 0.026382446, -0.06756592, -0.011878967, -0.006668091, 0.046020508, 0.052337646, -0.017578125, 0.006965637, -0.03466797, -0.06329346, -0.045440674, -0.007598877, 0.03338623, -0.012496948, -0.036712646, -0.031799316, 0.02357483, -0.004852295, 0.030426025, 0.04135132, -0.023223877, -0.012290955, -0.016677856, -0.08148193, -0.007156372, -0.007106781, -0.037597656, -0.008354187, -0.004764557, -0.02168274, 0.06878662, 0.009033203, -0.02998352, -0.007987976, -0.004924774, 0.044921875, -0.009361267, -2.8371811e-05, -0.00819397, -0.015068054, -0.0073776245, 0.009971619, -0.0670166, 0.055236816, 0.03225708, -0.005771637, 0.0072021484, -0.0015659332, -0.0015058517, -0.040496826, -0.00137043, -0.011878967, -0.02130127, -0.030151367, -0.019195557, 0.017196655, -0.023666382, 0.011528015, -0.01914978, -0.029891968, 0.007293701, 0.022369385, -0.005897522, -0.029052734, -0.017562866, 0.008506775, -0.00040984154, 0.01928711, 0.033355713, -0.028381348, 0.036010742, -0.033447266, -0.01448822, 0.010612488, -0.02357483, 0.0027866364, 0.003440857, 0.014671326, 0.0154418945, -0.008682251, -0.0040664673, 0.0065956116, -0.009048462, 0.032409668, 0.0046806335, -0.045013428, -0.054626465, -0.011245728, 0.040100098, -0.04421997, 0.04031372, 0.015151978, 0.05142212, 0.0072669983, 0.023651123, 0.0052223206, -0.043670654, 0.023162842, 0.016052246, 0.012413025, 0.01449585, -0.04119873, 0.052124023, -0.0048446655, -0.019210815, -0.049682617, 0.008888245, -0.006629944, 0.038330078, -0.027664185, -0.016815186, 0.03756714, -0.044403076, -0.02720642, 0.021469116, 0.03137207, -0.015098572, -0.0045166016, 0.008720398, -0.032348633, -0.011932373, -0.002527237, -0.01651001, 0.04940796, 0.026153564, -0.01890564, 0.036193848, 0.023895264, -0.048553467, -0.015014648, 0.025558472, 0.0027694702, -0.06048584, -0.032287598, 0.051971436, 0.021621704, -0.009681702, -0.008346558, -0.0043144226, 0.019195557, -0.03616333, -0.04446411, -0.0748291, 0.004306793, -0.033325195, 0.052825928, -0.046783447, 0.028564453, 0.00020134449, -0.028076172, 0.014419556, 0.0002875328, -0.06427002, -0.031066895, 0.003622055, 0.009208679, -0.0045814514, 0.01737976, 0.046936035, -0.031036377, -0.019805908, -0.054382324, 0.011695862, -0.03781128, -0.0552063, 0.014511108, 0.02571106, 0.0046081543, 0.011291504, -0.0060272217, -0.029510498, 0.022247314, 0.017318726, -0.03414917, -0.016571045, -0.01638794, -0.0014762878, -0.00046634674, -0.03466797, -0.020812988, 0.033081055, -0.011177063, -0.017044067, -0.009414673, -0.032989502, 0.0044784546, -0.06689453, -0.0023670197, -0.042510986, 0.017059326, 0.014183044, -0.004940033, -0.036743164, -0.010284424, 0.03704834, -0.0027580261, -0.008987427, 0.0026683807, 0.00712204, 0.019821167, 0.003364563, 0.006072998, 0.018585205, -0.016433716, -0.0058898926, 0.008056641, 0.004524231, -0.017593384, -0.044067383, 0.019119263, -0.038726807, -0.005290985, 0.035461426, 0.035705566, -0.010185242, 0.0463562, 0.018875122, 0.014144897, 0.012573242, 0.009506226, 0.031585693, 0.014587402, -0.043029785, 0.0019378662, 0.020904541, -0.030700684, -0.0031585693, -0.055480957, 0.000115573406, 0.015014648, -0.010940552, 0.030090332, -0.023086548, 0.03567505, 0.025985718, -0.0005531311, 0.03253174, 0.021240234, -0.013572693, 0.015060425, -0.051452637, 0.04937744, 0.022140503, -0.02128601, 0.085510254, -0.0038795471, -0.023986816, 0.026992798, -0.017318726, 0.034729004, 0.018661499, -0.010917664, 0.0289917, -0.028030396, 0.0022659302, -0.00308609, 0.010147095, -0.013877869, -0.044525146, -0.015449524, -0.017410278, 0.017456055, -0.0005259514, 0.035583496, 0.004085541, 0.016540527, 0.005241394, -0.019805908, -0.0101623535, -0.039154053, 0.07104492, -0.03390503, -0.024520874, 0.0036296844, -0.05508423, -0.021362305, 0.045806885, 0.008239746, -0.009384155, -0.0105896, 0.051208496, -0.009628296, 0.0040359497, -0.020965576, -0.012260437, 0.028167725, -0.005783081, 0.017181396, 0.02456665, 0.013763428, 0.0043411255, 0.011131287, -0.030548096, 0.03189087, -0.028335571, 0.03878784, 0.019119263, 0.0033874512, -0.02470398, -0.03866577, -0.0048828125, -0.012466431, 0.0069732666, 0.0025348663, -0.015014648, 0.022354126, -0.031799316, 0.0020503998, 0.028671265, -0.025360107, 0.006252289, -0.01374054, -0.008987427, 0.0027866364, 0.009399414, 0.008255005, 0.030151367, -0.04522705, 0.0009407997, 0.0074424744, 0.009521484, 0.0040664673, 0.02357483, 0.008888245, -0.024459839, -0.014297485, 0.020095825, -0.031158447, 0.02658081, -0.022201538, -0.018417358, -0.025039673, -0.0113220215, 0.004886627, -0.016555786, -0.02885437, 0.026031494, -0.0030078888, -0.016967773, -0.01739502, -0.010475159, 0.05340576, -0.033599854, -0.00086450577, 0.019363403, 0.040161133, 0.0009484291, 0.047729492, -0.028656006, -0.04107666, -0.03012085, 0.0051193237, -0.025390625, -0.02494812, 0.041778564, 0.004371643, 0.033813477, -0.0056610107, -0.037719727, -0.013549805, 0.035339355, -0.034851074, -0.006504059, -0.046569824, -0.026000977, 0.045684814, 0.0019569397, -0.025177002, -0.020614624, 0.044189453, -0.011459351, 0.009506226, 0.011604309, -0.019378662, -0.07775879, -0.008384705, -0.016983032, 0.005203247, -0.003250122, 0.0070762634, 0.015686035, 0.025024414, -0.022720337, 0.030517578, 0.0028572083, -0.022018433, 0.03213501, 0.0019741058, -0.0010538101, -0.037628174, -0.04736328, 0.002380371, -0.0076179504, 0.016860962, 0.038360596, -0.023452759, 0.048828125, 0.019927979, -0.04458618, 0.028671265, 0.00023698807, 0.008636475, -0.0037670135, 0.06915283, -0.04095459, -0.015686035, -0.00036406517, -0.004261017, -0.0077209473, -0.048217773, -0.03253174, 0.050598145, -0.04916382, -0.04977417, -0.009963989, 0.04269409, -0.02784729, -0.06713867, -0.008415222, -0.024719238, -0.014091492, 0.026641846, -0.011680603, 0.009757996, -0.01965332, -0.0107803345, -0.017745972, -0.006755829, 0.009490967, -0.015312195, -0.02709961, 0.0051651, -0.016738892, 0.06451416, -0.022521973, -0.086242676, -0.05706787, 0.03656006, -0.011062622, -0.009841919, 0.034057617, -0.018600464, 0.008880615, 0.044128418, -0.03970337, 0.0045928955, -0.0012626648, 0.10205078, -0.01852417, -0.003900528]}, "B00PKVS3HG": {"id": "B00PKVS3HG", "original": "Brand: Powerblanket\nName: Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray\nDescription: \nFeatures: Safely heats cylinder to an optimal 90 \u00b0 F / 32 \u00b0C (\u00b1 10 \u00b0F/5 \u00b0C)\nSaves money by optimizing gas and material usage\nIncrease flow rate performance and efficiency of gas cylinders\nEliminate unnecessary cylinder refills in cold weather\nCertified to UL/CSA/CE standards\n", "metadata": {"Name": "Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray", "Brand": "Powerblanket", "Description": "", "Features": "Safely heats cylinder to an optimal 90 \u00b0 F / 32 \u00b0C (\u00b1 10 \u00b0F/5 \u00b0C)\nSaves money by optimizing gas and material usage\nIncrease flow rate performance and efficiency of gas cylinders\nEliminate unnecessary cylinder refills in cold weather\nCertified to UL/CSA/CE standards", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0069007874, -0.023391724, -0.036621094, -0.049194336, -0.014793396, -0.017425537, -0.03869629, 0.014213562, -0.029312134, 0.014930725, 0.04067993, 0.0021038055, 0.011924744, -0.055236816, 0.021316528, -0.004245758, 0.024169922, -0.008415222, 0.010147095, -0.030288696, 0.018859863, -0.025360107, 0.0033359528, 0.10284424, -0.008232117, -0.024932861, 0.057556152, -0.012390137, -0.013511658, -0.026260376, 0.006652832, 0.033355713, 0.06213379, -0.017166138, -0.03543091, -0.0033473969, 0.012237549, -0.020233154, -0.030410767, 0.02909851, 0.0015869141, 0.010063171, -0.03781128, 0.012634277, -0.06506348, -0.013374329, -0.0154953, -0.0012712479, 0.02027893, 0.01210022, 0.002418518, 0.028747559, -0.010948181, 0.022216797, -0.014297485, 0.0053138733, 0.015129089, 0.006839752, 0.019302368, 0.0069007874, -0.019897461, 0.0058135986, 0.019012451, -0.021652222, -0.036468506, 0.027832031, 0.04724121, -0.0009493828, 0.014091492, -0.04989624, -0.026306152, 0.0059013367, 0.021697998, 0.015625, -0.034118652, -0.046447754, 0.028335571, -0.020431519, 0.021026611, -0.008125305, -0.052215576, 0.01626587, -0.024154663, -0.031921387, -0.020370483, -0.018875122, -0.028686523, 0.0060043335, 0.042144775, -0.051727295, 0.007423401, 0.0026283264, 0.015388489, 0.0063095093, -0.01890564, -0.055145264, 0.0015029907, -0.048187256, 0.055236816, -0.01626587, 0.0028896332, -0.036132812, -0.034606934, 0.015464783, -0.004184723, 0.019180298, -0.026916504, 0.025421143, 0.037841797, 0.033935547, 7.289648e-05, -0.06500244, -0.033111572, -0.03338623, -0.039794922, 0.05178833, -0.024353027, -0.020858765, 0.004322052, -0.0135269165, 0.00060606, 0.005596161, 0.00819397, 0.026412964, -0.014091492, 0.0048294067, -0.002714157, -0.025436401, -0.07421875, -0.004135132, -0.004016876, -0.0019273758, 0.057250977, 0.09106445, 0.025756836, 0.0037498474, 0.032684326, -0.025146484, -0.002603531, 6.067753e-05, 0.0025939941, 0.0008225441, 0.016281128, -0.03250122, -0.017700195, 0.038848877, 0.020568848, 0.0006971359, -0.020874023, -0.05303955, -0.012397766, -0.03942871, 0.041503906, -0.01727295, -0.06347656, -0.010574341, -0.035186768, 0.005344391, -0.03704834, -0.0289917, 0.0209198, -0.04168701, -0.009597778, 0.015655518, -0.025924683, 0.038848877, -0.0105896, -0.01449585, 0.0042762756, 0.07141113, -0.057159424, -0.017120361, -0.038757324, -0.020401001, -0.029571533, -0.007827759, 0.0079422, 0.09692383, 0.07470703, -0.11187744, -0.07183838, -0.059448242, 0.19030762, -0.06640625, 0.017242432, -0.06842041, 0.020935059, -0.051727295, 0.010421753, 0.00033283234, 0.045776367, 0.00881958, -0.01524353, -0.026153564, 0.0052871704, 0.02130127, -0.020004272, 0.02357483, 0.0007843971, -0.015205383, -0.0015888214, -0.02079773, 0.015075684, 0.015716553, 0.061798096, -0.037384033, 0.016448975, -0.017715454, 0.036071777, 0.019317627, -0.010002136, -0.031951904, 0.01637268, -0.035339355, -0.03668213, 0.027709961, -0.021942139, 0.031188965, -0.0040893555, -0.018218994, -0.0056381226, 0.0036334991, 0.016967773, 0.009735107, 0.044128418, -0.023284912, -0.007827759, -0.033813477, 0.018371582, -0.004852295, -0.048858643, 0.054840088, 0.058502197, 0.06652832, 0.00422287, 0.03945923, 0.1083374, 0.045898438, -0.016708374, -0.03378296, 0.00440979, -0.040039062, -0.015670776, 0.044921875, -0.004524231, -0.017791748, 0.0069503784, 0.03201294, 0.0056495667, 0.06524658, 0.015266418, 0.020568848, 0.004245758, 0.029083252, -0.027694702, 0.026367188, -0.041137695, -0.009132385, -0.0073394775, 0.0013914108, 0.008232117, 0.030593872, 0.014312744, 0.007709503, 0.048431396, -0.00069999695, 0.073791504, 0.064697266, 0.0011796951, -0.024215698, -0.011108398, 0.03515625, -0.015609741, 0.039154053, 0.06616211, -0.04168701, -0.04156494, -0.00447464, -0.002418518, 0.007850647, -0.007171631, 0.025909424, 0.01928711, -0.015052795, 0.0004246235, 0.02809143, 0.01725769, 0.008468628, -0.05429077, -0.006324768, 0.028808594, 0.02432251, -0.00070619583, 0.001704216, -0.038970947, -0.0004723072, 0.08520508, 0.002565384, 0.018035889, -0.027038574, 0.014015198, 0.034606934, -0.04257202, -0.0008239746, -0.025787354, 0.022521973, -0.023849487, -0.008529663, -0.010971069, -0.055114746, 0.02557373, 0.017959595, 0.018798828, 0.018051147, 0.0009937286, -0.015625, 0.0008511543, 0.036712646, 0.023254395, 0.05203247, -0.03074646, 0.001499176, -0.025512695, -0.036956787, -0.00058221817, 0.021392822, -0.04006958, 0.0060310364, -0.014122009, 0.028045654, -0.00032234192, 0.015342712, 0.0006017685, 0.009864807, -0.009689331, 0.009140015, 0.012840271, 0.059387207, 0.002204895, -0.06750488, -0.02986145, -0.009651184, -0.037506104, -0.0068969727, -0.030136108, -0.02178955, 0.014007568, 0.013519287, -0.044189453, 0.014442444, 0.0035190582, -0.005264282, -0.029052734, -0.05340576, -0.0071907043, -0.009643555, 0.009407043, -0.039276123, 8.195639e-05, -0.0736084, -0.014526367, -0.020889282, -0.037353516, 0.025283813, 0.02760315, 0.0016908646, -0.041625977, 0.030456543, 0.00061511993, 0.0050582886, 0.050872803, 0.0119018555, -0.03741455, -0.0385437, -0.043151855, -0.031707764, 0.07897949, 0.025146484, -0.04055786, 0.01763916, 0.04046631, -0.00680542, 0.01586914, -0.043945312, 0.039642334, 0.008850098, 0.02305603, -0.0074386597, 0.07019043, 0.004245758, 0.04345703, -0.0075645447, -0.028030396, -0.042663574, 0.0012741089, 0.032592773, -0.031677246, -0.038635254, 0.017791748, -0.03277588, -0.1027832, 0.014518738, 0.001206398, -0.022125244, 7.927418e-06, 0.00015807152, -0.03253174, -0.053100586, 0.023803711, 0.09655762, -0.015686035, -0.009086609, -0.0060768127, -0.00043225288, -0.0049972534, 0.03326416, -0.012336731, 0.008911133, -0.041534424, 0.0035476685, 0.028137207, -0.015838623, 0.0067863464, 0.02166748, -0.027038574, 0.06665039, -0.03152466, 0.042266846, -0.046783447, -0.016326904, -0.0005059242, -0.01727295, -0.028411865, -0.031677246, -0.0005326271, 0.028884888, -0.0061149597, 0.020904541, -0.020431519, -0.003200531, -0.030273438, -0.024017334, 7.3075294e-05, 0.023864746, 0.0041122437, -0.01424408, -0.040252686, -0.020080566, 0.019012451, 0.019973755, 0.013885498, -0.002313614, 0.030822754, 0.017807007, -0.019561768, 0.04257202, 0.01852417, 0.031463623, -0.0009121895, 0.017181396, 0.004245758, -0.011009216, 0.03201294, -0.0126571655, 0.036834717, -0.08404541, 0.05392456, -0.008232117, 0.040405273, -0.026153564, -0.014640808, 0.04360962, 0.0046844482, -0.005760193, -0.0022697449, -0.0003476143, -0.0013847351, 0.027740479, -0.029159546, -0.017364502, -0.077697754, 0.031234741, -0.09088135, 0.036712646, 0.013069153, -0.013458252, 0.0635376, 0.0049552917, -0.022476196, 0.044433594, 0.034210205, 0.0021953583, -0.0055122375, 0.05041504, -0.03237915, -0.016036987, -0.0041885376, 0.01637268, 0.014083862, -0.015991211, -0.012275696, 0.009986877, 0.01902771, 0.020751953, -0.018615723, -0.0055656433, 0.031433105, -0.0256958, 0.014518738, -0.012931824, 0.01626587, -0.041625977, -0.0023765564, 0.026763916, -0.025619507, 0.022994995, -0.034118652, -0.0016708374, -0.022827148, 0.0004377365, 0.014945984, 0.029937744, -0.019805908, 0.006576538, 0.041870117, 0.0025196075, -0.040863037, 0.025894165, -0.04840088, -0.0032081604, 0.008270264, 0.024871826, -0.0076408386, -0.023590088, 0.029052734, -0.0041122437, -0.02255249, -0.005279541, -0.029907227, -0.039916992, -0.015716553, 0.0012140274, 0.004371643, -0.012168884, -0.01259613, 0.0031394958, -0.035858154, 0.010719299, -0.007820129, -0.0005264282, -0.021255493, -0.02671814, 0.012794495, -0.022323608, -0.0357666, 0.009284973, 0.019058228, -0.005340576, -0.0072784424, 0.004951477, -0.017745972, 0.051452637, -0.034118652, -0.027328491, 0.009010315, 0.02067566, -6.020069e-05, -0.0061073303, 0.007633209, -0.027496338, 0.014503479, 0.012748718, 0.04333496, 0.010627747, 0.036315918, -0.0132751465, 0.008201599, 0.016723633, -0.026245117, -0.024551392, -0.0077171326, 0.017227173, 0.016433716, 0.019805908, -0.06768799, -0.013191223, 0.061645508, -0.038269043, -0.033843994, -0.047576904, 0.048553467, 0.0015306473, 0.0026931763, -0.0362854, 0.008117676, 0.030853271, -0.045776367, -0.0597229, -0.03652954, -0.0021629333, -0.022232056, -0.0026512146, -0.002872467, -0.016067505, 0.05368042, 0.030395508, 0.021469116, -0.025970459, 0.026565552, -0.0046157837, -0.008430481, -0.016342163, -0.026779175, 0.037628174, -0.029663086, -0.040527344, -0.03286743, 0.013664246, -0.032043457, 0.029937744, 0.021652222, -0.030288696, 0.039520264, -0.029312134, -0.02418518, -0.023345947, 0.013893127, 0.0020694733, -0.030838013, -0.008636475, -0.018966675, -0.015586853, -0.024505615, -0.0018444061, 0.05053711, 0.022109985, -0.030395508, 0.018737793, -0.031555176, -0.061462402, -0.006008148, -0.017211914, -0.0335083, 0.018508911, -0.019699097, -0.03427124, -0.013145447, 0.005180359, -0.021621704, 0.0020523071, 0.022460938, 0.017868042, -0.029083252, -0.0027923584, 0.0491333, -0.01612854, -0.009719849, -0.0028572083, 0.021026611, -0.014404297, -0.04272461, 0.025482178, -0.03366089, 0.0036010742, -0.024887085, 0.011474609, 0.05227661, 0.021850586, 0.017288208, -0.031951904, 0.016860962, -0.02494812, -0.013008118, 0.0013084412, 0.023529053, -0.029418945, 0.07543945, -0.00012230873, 0.0051574707, -0.056518555, 0.0044021606, -0.017562866, -0.05935669, 0.027328491, -0.011711121, 0.026016235, 0.0017137527, 0.010932922, -0.0007004738, -0.024673462, -0.037597656, -0.025924683, -0.011009216, -0.040161133, -0.0074043274, -0.018798828, -0.012893677, -0.015777588, 0.015159607, -0.029724121, 0.018432617, -0.00233078, -0.0074920654, -0.02029419, -0.020126343, 0.021972656, -0.06359863, -0.006008148, -0.03945923, 0.01285553, -0.016586304, -0.0079956055, 0.013877869, 0.01928711, -0.091918945, -0.02947998, -0.051116943, 0.004299164, -0.001162529, 0.0892334, -0.044036865, -0.0072746277, 0.0065689087, -0.020965576, 0.017410278, 0.010635376, -0.04208374, -0.015281677, 0.019180298, 0.034851074, 0.0013132095, -0.020370483, 0.05303955, -0.036590576, -0.014701843, -0.06890869, 0.042999268, -0.019607544, -0.012641907, 0.020202637, 0.0129776, 0.00015318394, 0.028060913, -0.0132751465, -0.044952393, 0.003353119, -0.0038108826, -0.056243896, -0.013923645, -0.030441284, 0.013259888, 0.0034046173, -0.032318115, -0.03552246, 0.019332886, -0.013900757, 0.018188477, -0.035186768, -0.043884277, -0.013465881, -0.08123779, 0.0030021667, -0.022140503, 0.017044067, 0.010681152, 0.0050354004, -0.08538818, -0.025939941, 0.008270264, 0.015701294, 0.0070266724, 0.018829346, 0.022079468, 0.037017822, -0.034210205, 0.012130737, -0.00067329407, -0.02432251, -0.015090942, 0.03753662, 0.012886047, 0.043670654, -0.04925537, -0.020645142, -0.039001465, 0.051879883, 0.024230957, 0.038604736, -0.010070801, 0.018341064, -0.013267517, 0.010917664, -0.008453369, -0.00356102, -0.012878418, -0.02305603, -0.015975952, -0.0021400452, 0.02659607, -0.035888672, 0.017120361, -0.077941895, 0.038726807, -0.0025596619, 0.012588501, 0.022659302, 0.0009560585, 0.026260376, -0.0014753342, -0.0043640137, 0.019577026, 0.02557373, 0.011520386, -0.023254395, -0.06341553, 0.011787415, 0.024658203, -0.03503418, 0.023925781, -1.4066696e-05, 0.022323608, 0.039489746, 0.010246277, 0.0034618378, -0.030593872, -0.022766113, 0.059417725, -0.03186035, -0.012794495, 0.023605347, -0.006214142, -0.03161621, -0.05065918, -0.0124435425, -0.00031781197, 0.00070381165, 0.009880066, 0.020095825, 0.012336731, 0.013999939, -0.029327393, 0.011772156, -0.0131073, -0.00844574, -0.032714844, 0.036102295, 0.03149414, -0.020263672, -0.0056152344, 0.017181396, 0.011604309, 0.008277893, -0.0026283264, -0.029006958, 0.025238037, 0.060516357, 0.00712204, -0.026153564, -0.0446167, 0.031158447, 0.038360596, -0.03793335, 0.0010318756, 0.022583008, 0.032196045, 0.051116943, -0.010269165, 0.027267456, -0.026260376, 0.049072266, 0.035339355, 0.033294678, -0.10644531, -0.08660889, -0.022033691, -0.04147339, -0.016479492, 0.043670654, -0.017745972, 0.0051498413, 0.024398804, 0.0053749084, 0.025421143, -0.010597229, -0.0056610107, 0.030731201, -0.006072998, -0.041748047, -0.009590149, -0.0046958923, 0.011772156, -0.035705566, 0.0020923615, -0.011871338, -0.052001953, -0.015449524, 0.013801575, -0.01852417, -0.055541992, 0.07409668, -0.03564453, -0.05859375, -0.0019226074, -0.047607422, -0.023162842, -0.007259369, 0.0206604, -0.028259277, -0.035064697, -0.053100586, 0.010032654, -0.049865723, -0.010551453, 0.0127334595, 0.00061893463, -0.020141602, -0.034454346, -0.010520935, 0.016662598, 0.006767273, 0.0051231384, 0.027679443, -0.0151901245, -0.048065186, -0.043151855, 0.021408081, -0.05883789, -0.03591919, 0.0024261475, 0.008674622, 0.0051879883, 0.0010509491, 0.040802002, -0.016815186, 0.0541687, -0.013534546, -0.000579834, 0.01676941, 0.027038574, -0.00737381, 0.009803772, -0.04660034, -0.045806885, -0.039031982, 0.001461029, 0.005176544, 0.036224365, 0.019485474, -0.057250977, -0.008705139, -0.033843994, -0.021530151, -0.034332275, 0.008979797, -0.00017094612, 0.0038318634, -0.0395813, 0.019042969, 0.012771606, 0.027359009, 0.042022705, -0.014472961, 0.03314209, -0.010673523, -0.05456543, -0.051605225, -0.018325806, 0.02418518, 0.02645874, -0.022094727, -0.03918457, 0.03479004, -0.001947403, 0.047912598, 0.04324341, -0.01133728, 0.007698059, -0.037506104, -0.013130188, -0.010314941, -0.017105103, 0.004589081, 0.0033740997, 0.01828003, 0.0040016174, -0.028762817, 0.0060920715, -0.014427185, -0.01939392, 0.0047073364, -0.038909912, 0.00667572, -0.03225708, -0.022491455, -0.006965637, 0.028823853, -0.0074310303, -0.029266357, -0.015777588, 0.013450623, -0.022201538, -0.020721436, 0.017471313, -0.035003662, -0.024597168, -0.026916504, -0.012374878, 0.05819702, -0.016555786, -0.103881836, -0.048736572, 0.042633057, 0.0435791, -0.039794922, 0.08856201, -0.03543091, 0.009635925, -0.015686035, -0.016189575, -0.0031547546, 0.013519287, -0.0005979538, -0.032440186, 0.011016846]}, "B000P9GZSW": {"id": "B000P9GZSW", "original": "Brand: Texsport\nName: Texsport Portable Outdoor Propane Heater\nDescription: \nFeatures: Sport Type: Camping & Hiking\n", "metadata": {"Name": "Texsport Portable Outdoor Propane Heater", "Brand": "Texsport", "Description": "", "Features": "Sport Type: Camping & Hiking", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02507019, -0.02293396, -0.01612854, 0.02444458, -0.039001465, -0.0128479, -0.0124435425, -0.009979248, -0.06549072, -0.011123657, 0.052642822, 0.026535034, -0.041992188, -0.071899414, 0.059661865, -0.029342651, 0.008544922, -0.0057907104, -0.023483276, -0.037078857, 0.012931824, -0.040527344, -0.02658081, 0.08123779, 0.008506775, 0.023254395, 0.013671875, -0.011177063, -0.006252289, -0.026275635, 0.014160156, 0.02444458, -0.022918701, 0.018966675, 0.035064697, -0.0029125214, 0.025131226, -0.0002014637, 0.013717651, 0.006122589, 0.00022137165, 0.008026123, -0.030349731, 0.02243042, -0.055847168, -0.03866577, 0.010650635, 0.016830444, -0.009979248, 0.016967773, 0.0016231537, -0.019119263, 0.0069465637, -0.024154663, -0.007106781, -0.025222778, 0.027191162, 0.053497314, 0.015312195, -0.06762695, -0.05239868, 0.040771484, 0.036987305, 0.04144287, -0.040161133, 0.018997192, 0.07635498, -0.017059326, -0.014335632, -0.0713501, -0.009422302, 0.019622803, -0.013374329, 0.034484863, -0.047943115, -0.043914795, 0.033294678, -0.04055786, 0.026489258, 0.012832642, 0.014930725, -0.03756714, 0.047790527, -0.021331787, 0.007610321, -0.007129669, -0.0031871796, 0.01486969, 0.016479492, -0.011795044, 0.0069389343, 0.015930176, -0.025268555, 0.04244995, -0.0068588257, -0.008766174, -0.016357422, -0.060699463, 0.0259552, -0.022735596, 0.02670288, -0.025253296, -0.015159607, 0.0074768066, -0.0131073, 0.063964844, 0.05532837, 0.04159546, -0.01436615, -0.025543213, -0.021881104, -0.014183044, 0.011314392, 0.043884277, -0.038208008, -0.038208008, -0.049835205, 0.040740967, -0.018753052, 0.061187744, 0.005996704, 0.028625488, 0.03111267, -0.037872314, -0.017944336, -0.023254395, -0.018920898, -0.037353516, 0.0027675629, 0.04071045, -0.032928467, 0.026947021, 0.006801605, -0.020080566, -0.03024292, -0.023513794, 0.040161133, 0.016983032, 0.009017944, -0.036987305, 0.011329651, 0.024475098, 0.030288696, 0.0030021667, -0.015914917, 0.003643036, 0.02079773, 0.013412476, -0.004470825, -0.007347107, -0.011604309, -0.0029029846, -0.019119263, 0.03161621, 0.010169983, 0.01914978, 0.010192871, 0.0024662018, -0.0007042885, -0.01499939, 0.048065186, -0.030334473, -0.04171753, 0.043884277, -0.042785645, 0.04888916, 0.03933716, 0.0025367737, 0.029312134, 0.04324341, 0.018066406, 0.016525269, -0.01927185, 0.02758789, 0.018295288, -0.016784668, -0.039123535, 0.055603027, 0.059661865, -0.12683105, -0.07531738, -0.06365967, 0.0982666, -0.03302002, -0.015945435, -0.049194336, 0.04296875, 0.011520386, 0.008857727, 0.01663208, 0.05508423, 0.010055542, 0.010269165, -0.031555176, -0.01828003, 0.04156494, -0.053771973, 0.059570312, -0.03265381, -0.0050621033, -0.0037460327, 0.006454468, -4.810095e-05, 0.021026611, 0.0435791, -0.018203735, 0.025161743, 0.0020141602, 0.018707275, 0.027770996, -0.0107421875, 0.0010843277, 0.016723633, -0.12219238, -0.038635254, 0.02973938, -0.010536194, -0.008735657, 0.016677856, -0.012794495, 0.008216858, 0.043823242, 0.0070533752, -0.012893677, -0.02268982, -0.009971619, -0.02444458, -0.005405426, -0.0050849915, -0.023712158, 0.055725098, 0.0395813, 0.03503418, 0.046875, -0.00088214874, 0.039916992, 0.10308838, 0.06347656, -0.00037431717, -0.038208008, -0.009590149, -0.025604248, -0.02168274, 0.06286621, -0.011001587, 0.06951904, 0.045135498, -0.00025081635, -0.006641388, 0.040496826, 0.024917603, 0.020874023, 0.01838684, 0.043060303, -0.046783447, 0.027374268, -0.025726318, 0.008506775, 0.0087890625, 0.023361206, -0.03387451, 0.07965088, 0.07122803, 0.005680084, 0.036254883, 0.030899048, 0.052947998, 0.05621338, -0.024597168, 0.023071289, 0.01247406, 0.026824951, -0.015083313, 0.035888672, 0.09838867, -0.041381836, -0.042938232, -0.0068511963, 0.011871338, 0.020935059, 0.0035896301, -0.010726929, -0.006679535, 0.008430481, 0.020065308, 0.013404846, 0.023590088, 0.034729004, -0.050354004, -0.07733154, -0.035125732, 0.0018835068, -0.066101074, 0.03677368, 0.007167816, -0.051330566, 0.0016489029, 0.00233078, 0.012168884, -0.022964478, -0.0317688, 0.03677368, 0.0043182373, -0.02897644, -0.0025157928, 0.003967285, 0.018875122, -0.0054855347, -0.011520386, 0.028213501, -0.09851074, -0.014030457, 0.022033691, 0.032958984, 0.027770996, 0.01852417, 0.021087646, 0.049713135, 0.042114258, -0.011245728, -0.017547607, -0.0026855469, 0.0038223267, -0.0012903214, -0.0013961792, -0.0056381226, 0.0015201569, 0.00667572, -0.018066406, -0.014892578, -0.038238525, -0.052246094, -0.02394104, 0.0390625, 0.0044441223, 0.018875122, 0.014778137, 0.046447754, 0.020263672, -0.021224976, 0.027999878, -0.02116394, -0.015419006, -0.0008845329, -0.04928589, -0.019927979, 0.02444458, -0.002483368, -0.007583618, 0.0013151169, 0.015487671, -0.008651733, 0.0008401871, -0.017608643, 0.018875122, -0.011329651, -0.02243042, 0.0012168884, 0.022903442, -0.042236328, -0.008079529, -0.005580902, -0.027114868, -0.0022850037, 0.011039734, -0.018859863, -0.029464722, 0.0058784485, -0.012771606, 0.015563965, -0.035125732, -0.0012664795, -0.013473511, -0.02218628, -0.0138168335, 0.03543091, -0.030319214, -0.070617676, 0.062469482, -0.019378662, 0.0067100525, 0.010124207, 0.026473999, 0.024414062, 0.008857727, 0.031402588, 0.013221741, 0.02458191, 0.021575928, -0.022827148, 0.0090408325, 0.039398193, -0.0066719055, 0.0116119385, -0.0022602081, -0.016281128, -0.03213501, 0.0002565384, -0.06768799, 0.025009155, -0.032989502, 0.020767212, 0.014801025, -0.035308838, -0.018371582, -0.0061798096, -0.027908325, -0.022903442, 0.0062294006, 0.023925781, -0.03149414, -0.0067863464, -0.037872314, -0.0024814606, -0.015052795, 0.005252838, 0.029708862, -0.020355225, 0.034088135, -0.012336731, 0.014808655, -0.043640137, 0.030334473, 0.04159546, -0.03756714, 0.011634827, -0.03173828, 0.004169464, -0.005378723, 0.05960083, -0.0046310425, 0.015342712, 0.0017604828, 0.008155823, -0.012054443, 0.059417725, 0.010765076, 0.041229248, 0.03173828, -0.02708435, 0.0418396, 0.010116577, 0.019332886, 0.02520752, 0.026321411, -0.0069389343, -0.0029716492, 0.03857422, 0.0048980713, -0.029281616, 0.029907227, -0.004322052, 0.049865723, 0.0079956055, -0.0067825317, 0.060028076, 0.043640137, 0.025558472, 0.03062439, -0.042144775, -0.07147217, -0.044067383, 0.034576416, -0.020339966, 0.0011005402, -0.08685303, 0.028381348, 0.019943237, 0.012359619, -0.005744934, -0.011253357, 0.0736084, 0.030410767, -0.031433105, 0.022521973, -0.0395813, 0.019515991, 0.01802063, -0.0040245056, -0.031799316, -0.044830322, 0.013259888, -0.051208496, 0.03643799, 0.03857422, -0.0055618286, 0.009170532, -0.017974854, -0.014251709, 0.010108948, -0.005016327, -0.0032176971, 0.011566162, 0.038513184, -0.010292053, 0.004852295, -0.000106692314, 0.01335144, -0.020706177, -0.012168884, -0.043151855, -0.011871338, 0.020446777, 0.0008530617, -0.018951416, -0.029251099, -0.011917114, -0.0012159348, 0.027740479, 0.015670776, -0.0178833, 0.0034561157, -0.02520752, 0.013366699, -0.041137695, 0.008506775, -0.020629883, -0.07647705, -0.013320923, 0.03793335, 0.013900757, 0.019958496, -0.012435913, 0.01058197, 0.053344727, -0.003408432, -0.034362793, 0.018325806, -0.021255493, 0.019378662, -0.0024909973, 0.025390625, -0.024765015, -0.028259277, 0.038757324, -0.03048706, -0.032684326, -0.014137268, -0.02130127, -0.021469116, -0.02230835, 0.032684326, 0.035705566, 0.030776978, -0.015701294, -0.04257202, -0.011749268, -0.021575928, 0.01914978, -0.068603516, 0.01235199, 0.023544312, -0.107543945, -0.03869629, -0.033172607, 0.03326416, -0.0423584, 0.041046143, -0.02784729, -0.023925781, -0.0020580292, 0.020401001, -0.018859863, -0.005680084, -0.037109375, 0.008354187, 0.019927979, 0.0050621033, -0.0050849915, -0.02746582, 0.008979797, 0.005138397, 0.027679443, -0.0074768066, 0.010978699, -0.020843506, -0.014099121, -0.004283905, 0.019226074, 0.034851074, -0.02670288, 0.043121338, 0.0025043488, 0.018936157, -0.046081543, 0.00022161007, 0.021728516, -0.033325195, -0.039642334, -0.0385437, 0.04473877, 0.017028809, 0.0007328987, -0.062561035, 0.004825592, 0.013023376, -0.008010864, -0.038360596, -0.034698486, 0.016616821, -0.038024902, -0.0034694672, -0.008110046, -0.016937256, 0.0569458, 0.012229919, -0.009880066, 0.03161621, -0.018554688, 0.0026340485, -0.0014896393, 0.026977539, -0.023849487, -0.017578125, -0.04159546, 0.025863647, -0.034057617, 0.032348633, 0.004196167, -0.037750244, 0.008987427, 0.017578125, 0.0044174194, 0.008583069, -0.004940033, 0.010292053, 0.015701294, 0.046691895, -0.0071411133, -0.025756836, 0.030563354, -0.029830933, -0.038024902, -0.0043144226, 0.02734375, 0.0042877197, -0.014556885, 0.012481689, 0.022766113, -0.018203735, 0.03387451, 0.025756836, 0.023742676, -0.08886719, 0.022888184, -0.027877808, -0.03765869, 0.029418945, 0.0061569214, 0.018417358, 0.030685425, 0.011741638, -0.06695557, 0.007019043, 0.051116943, -0.007347107, -0.03857422, 0.012931824, -0.0019350052, -0.0042152405, -0.022109985, 0.040283203, -0.012023926, 0.03933716, -0.007369995, 0.017868042, 0.032104492, 0.014205933, -0.0019702911, 0.0023384094, -0.0073928833, -0.022949219, 0.02645874, 0.0019197464, 0.011138916, -0.009925842, 0.0129776, -0.006767273, -0.02784729, -0.012878418, 0.018081665, 0.029006958, 0.00016570091, 0.020477295, -0.032196045, 0.048675537, -0.03363037, -0.024780273, -0.018737793, -0.015464783, -0.03591919, -0.014152527, -0.012886047, -0.02999878, 0.031036377, 0.0049972534, -0.045013428, -0.019119263, 0.013679504, -0.014190674, -0.008041382, -0.0074386597, -0.0052948, -0.020828247, -0.01512146, 0.01361084, -0.060394287, 0.06347656, -0.0017986298, -0.016921997, 0.059570312, 0.017684937, -0.017211914, -0.009971619, 0.012191772, -0.032318115, 6.2167645e-05, 0.02180481, -0.016220093, -0.0011358261, -0.01777649, -0.049041748, 0.015281677, 0.012268066, -0.0006723404, 0.036132812, -0.036743164, 0.013877869, 0.0069770813, 0.032318115, -0.009628296, 0.035064697, 0.06088257, -0.0440979, -0.021911621, -0.043182373, 0.047546387, 0.0016431808, 0.013252258, 0.034210205, 0.03967285, -0.0018606186, 0.045318604, 5.3346157e-05, 0.0067749023, 0.03152466, 0.011238098, -0.0032577515, -0.013702393, -0.0004608631, -0.008850098, -0.0029315948, 0.026794434, -0.029708862, 0.043945312, -0.043518066, -0.06390381, -0.038879395, 0.020736694, 0.005962372, -0.048339844, -0.007549286, -0.050567627, 0.014724731, -0.024276733, -0.0018482208, -0.06341553, -0.07281494, -0.006439209, 0.04675293, 0.055847168, -0.006164551, 0.01348114, 0.028656006, -0.06945801, 0.06451416, 0.015579224, -0.06549072, 0.0051956177, 0.077697754, 0.07714844, -0.034820557, -0.030731201, -0.040130615, -0.025558472, 0.01852417, 0.041137695, 0.026367188, -0.008872986, 0.013381958, 0.024459839, 0.016067505, -0.0034370422, 0.022201538, 0.02229309, -0.00083351135, -0.04067993, 0.006614685, 0.014289856, -0.039123535, 0.038116455, -0.050201416, 0.039398193, 0.020355225, -0.010948181, 0.00025820732, -0.064086914, 0.10498047, -0.01235199, 0.020141602, 0.0090408325, -0.009963989, -0.00048160553, -0.03466797, -0.010398865, -0.008407593, -0.04119873, -0.018127441, -0.032226562, -0.027526855, 0.029449463, 0.040527344, 0.0041046143, 0.0021820068, -0.018432617, 0.013534546, 0.02355957, -0.050476074, -0.013122559, 0.0234375, 0.015838623, -0.0051002502, -0.029174805, -0.014045715, 0.0045318604, 0.015319824, -0.009399414, 0.02645874, 0.002609253, 0.005088806, -0.021057129, 0.001156807, -0.011039734, -0.033569336, 0.046966553, -0.007118225, -0.026473999, -0.0064201355, -0.093322754, 0.061157227, 0.014694214, 0.06549072, 0.055847168, -0.020568848, 0.01991272, -0.0020713806, 0.011108398, -0.031219482, -0.040252686, 0.00187397, -0.0014209747, -0.017578125, 0.0041503906, 0.026931763, 0.0022068024, 0.051574707, -0.05230713, 0.037139893, -0.042877197, 0.05569458, 0.012542725, 0.07897949, -0.021392822, -0.006942749, -0.011878967, 0.0015192032, 0.009773254, 0.014877319, -0.009246826, 0.0181427, -0.012184143, -0.052947998, 0.016143799, -0.011924744, -0.012306213, -0.03656006, 0.020324707, -0.03555298, 0.0052948, -0.022262573, -0.017913818, 0.0052223206, 0.007083893, 0.011314392, 0.004169464, -0.029067993, -0.012275696, 0.035339355, -0.035095215, 0.053863525, -0.046722412, -0.046051025, -0.0033988953, 2.026558e-06, -0.01852417, 0.012413025, 0.011146545, -0.024749756, 0.0077285767, -0.02279663, -0.020065308, -0.0284729, -0.008102417, 0.010948181, -0.011680603, 0.0072517395, 0.007843018, 0.030960083, 0.04156494, 0.021865845, -0.00051021576, 0.02420044, 0.0006504059, -0.047424316, -0.04724121, 0.0072898865, -0.04626465, -0.022857666, 0.008224487, -0.018585205, -0.013473511, -0.017471313, -0.005214691, 0.096069336, 0.019577026, 0.0049858093, -0.04660034, -0.009689331, 0.0069122314, -0.012435913, -0.022323608, -0.017318726, -0.05987549, 0.02722168, 0.022262573, 0.03326416, 0.00869751, 0.047302246, -0.072509766, -0.010940552, -0.04562378, 0.0104904175, 0.012329102, -0.0065345764, 0.016418457, 0.0063438416, -0.070129395, -0.009643555, -0.029449463, 0.05529785, 0.027542114, 0.01197052, 0.04058838, -0.00022816658, -0.056121826, -0.03640747, -0.029037476, 0.009681702, 0.06274414, -0.06964111, -0.014228821, 0.0146484375, -0.03289795, 0.021209717, 0.026153564, 0.020584106, 0.012374878, -0.010955811, 0.03363037, -0.012763977, -0.0141067505, 0.03918457, -0.02456665, -0.011100769, -0.0012760162, 0.025527954, -0.026184082, -0.017227173, -0.019256592, 0.011802673, -0.004173279, -0.03466797, -0.021408081, -0.030410767, 0.030853271, 0.017471313, 0.027786255, -0.022369385, 0.030166626, -0.007297516, -0.039978027, 0.0102005005, 0.023330688, 0.02418518, -0.034057617, 0.064575195, 0.04421997, 0.040985107, -0.0069007874, -0.07220459, -0.03869629, 0.02456665, -0.005493164, -0.009925842, -0.0006804466, -0.004611969, 0.011367798, 0.039031982, -0.033691406, -0.021865845, 0.004623413, 0.057739258, 0.00919342, -0.00048065186]}, "B096VKRVW5": {"id": "B096VKRVW5", "original": "Brand: GCBSAEQ\nName: GCBSAEQ \u200b1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8\" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part\nDescription: Product specifications
      Type: 1LB Propane Tank Regulator
      Connection 1: 1LB female connector (1\" x 20 female throwaway cylinder thread)
      Connection 2: 3/8\" Male flare connector(5/8\"-18UNF Thread)
      Material: Brass
      Package: 1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.
      Easy to install
      1LB propane regulator to 3/8\" male flare adapter is convenient and quick to install, just need to rotate manually.
      Safe to use
      1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.
      Applicable scene
      1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
      Material
      1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
      Note
      1. Please check your connector before ordering.
      2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
      3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don't use it.
      4.Propane elbow fitting adapter is only suitable for Blackstone 17\" and 22\" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
      \nFeatures: \u2605\u3010Package\u30111 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.\n\u2605\u3010Safe to use\u30111LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.\n\u2605\u3010Applicable scene\u30111LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.\n\u2605\u3010Notice\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder.\n\u2605\u3010Quality Assurance\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.\n", "metadata": {"Name": "GCBSAEQ \u200b1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8\" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part", "Brand": "GCBSAEQ", "Description": "Product specifications
      Type: 1LB Propane Tank Regulator
      Connection 1: 1LB female connector (1\" x 20 female throwaway cylinder thread)
      Connection 2: 3/8\" Male flare connector(5/8\"-18UNF Thread)
      Material: Brass
      Package: 1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.
      Easy to install
      1LB propane regulator to 3/8\" male flare adapter is convenient and quick to install, just need to rotate manually.
      Safe to use
      1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.
      Applicable scene
      1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
      Material
      1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
      Note
      1. Please check your connector before ordering.
      2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
      3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don't use it.
      4.Propane elbow fitting adapter is only suitable for Blackstone 17\" and 22\" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
      ", "Features": "\u2605\u3010Package\u30111 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.\n\u2605\u3010Safe to use\u30111LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.\n\u2605\u3010Applicable scene\u30111LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.\n\u2605\u3010Notice\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder.\n\u2605\u3010Quality Assurance\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.023712158, -0.004688263, -0.016616821, -0.007881165, -0.02230835, -0.0018453598, -0.023712158, -0.00919342, -0.025314331, 0.03189087, -0.025802612, 0.012229919, 0.011108398, -0.013771057, 0.009185791, -0.028198242, 0.012329102, 0.011993408, -0.009681702, -0.027679443, 0.004169464, -0.0011053085, -0.04562378, 0.09008789, 0.03604126, -0.035614014, 0.040374756, 0.023620605, 0.016235352, -0.000895977, 0.03189087, -0.01979065, 0.03552246, -0.0041007996, -0.025619507, -0.048736572, -0.022613525, -0.0077285767, -0.05227661, 0.03274536, 0.030166626, -0.033569336, -0.027038574, 0.027160645, -0.022903442, -0.033081055, 0.028030396, -0.041778564, 0.016998291, -0.02154541, -0.016464233, 0.033355713, -0.006587982, -0.013458252, -0.0033111572, 0.011314392, 0.004398346, -0.03353882, 0.0018978119, 0.03741455, 0.015449524, 0.02355957, -0.00065660477, -0.020721436, -0.06390381, 0.01979065, 0.05227661, -0.013885498, 0.0017900467, -0.070129395, -0.024169922, 0.024871826, 0.0058898926, 0.0020599365, -0.08117676, -0.035858154, 0.050079346, -0.033111572, -0.008651733, 0.0060272217, -0.0032615662, -0.05392456, 0.04574585, -0.0060272217, 0.006832123, 0.010223389, -0.012588501, -0.009033203, -0.042388916, -0.03225708, -0.034088135, -0.0043907166, -0.04663086, -0.011680603, -0.028060913, -0.007709503, -0.025009155, -0.060546875, 0.024139404, 0.0025424957, 0.023620605, -0.023117065, 0.025878906, 0.0015125275, 0.024383545, 0.051513672, -0.016281128, -0.031158447, 0.022857666, -0.0075263977, -0.0043258667, 0.041778564, -0.0073432922, -0.026992798, -0.0262146, 0.04257202, 0.0027446747, 0.009124756, 0.017822266, 0.021194458, -0.022201538, -0.02355957, 0.042022705, -0.019622803, 0.041748047, 0.020889282, -0.03765869, 0.0008292198, -0.06774902, 0.040100098, -0.026870728, -0.025436401, 0.050964355, 0.10656738, 0.032806396, -0.021911621, 0.06323242, -0.014030457, 0.014221191, 0.0005645752, 0.004333496, -0.0118255615, -0.0063056946, 0.001616478, -0.03665161, 0.031951904, 0.020355225, 0.0016927719, -0.00032401085, -0.066833496, -0.02243042, -0.016479492, 0.06933594, 0.0016479492, -0.046020508, -0.04244995, 0.03378296, -0.05444336, -0.008056641, -0.08581543, -0.0028190613, -0.016403198, -0.009033203, -0.003293991, -0.020996094, 0.010398865, 0.0124435425, -0.006275177, 0.022705078, 0.05923462, 0.01940918, 0.014472961, 0.024490356, -0.009849548, -0.007209778, -0.03414917, -0.03704834, 0.06463623, 0.08441162, -0.10455322, -0.07287598, -0.04550171, 0.14099121, -0.045532227, 0.014633179, -0.03692627, 0.017089844, -0.030288696, -0.015945435, 0.013000488, 0.006465912, 0.02999878, -0.0020370483, -0.061401367, 0.011329651, 0.013420105, 0.00047302246, 0.009155273, 0.0066947937, 0.01675415, -0.028121948, 0.010856628, 0.036499023, 0.0029010773, 0.06311035, -0.00655365, 0.01058197, 0.022125244, 0.04446411, 0.015808105, 0.00096702576, 0.00819397, -0.021820068, 0.006011963, -0.03591919, 0.013137817, -0.004764557, 0.02041626, 0.0038833618, 0.0014390945, 0.0045776367, -0.0023612976, 0.0064315796, 0.025741577, 0.011108398, -0.01751709, 0.004131317, -0.01008606, -0.011177063, 0.01789856, -0.02470398, 0.012023926, 0.06591797, 0.051483154, -0.038269043, 0.013320923, 0.047943115, 0.048828125, -0.02355957, 0.0053253174, 0.02029419, -0.016723633, -0.03869629, -0.034576416, -0.026809692, -0.06542969, 0.0031776428, -0.022445679, -0.014930725, 0.020935059, 0.030654907, 0.012016296, 0.009674072, 0.0054244995, -0.025634766, 0.007095337, -0.032226562, 0.015197754, -0.06567383, 0.038604736, -0.009094238, -0.019454956, 0.021820068, -0.035888672, 0.033325195, 0.029525757, 0.031799316, 0.008934021, -0.030044556, 0.026733398, 0.0072250366, -0.037719727, -0.01953125, -0.01436615, 0.013320923, 0.008865356, -0.051574707, 0.028427124, 0.012062073, -0.010139465, 0.003791809, 0.011390686, 0.004673004, -0.009796143, 0.008651733, 0.0018978119, 0.020019531, 0.030303955, -0.015556335, -0.014419556, 0.023040771, -0.008651733, -0.014762878, -0.013755798, -0.023544312, -0.031677246, 0.04168701, -0.009750366, 0.015899658, -0.023712158, 0.0010080338, 0.047027588, -0.011749268, 0.016204834, -0.020141602, 0.019851685, -0.019851685, 0.020980835, 0.017501831, -0.05834961, 0.024536133, 0.027191162, 0.007446289, -0.026992798, 0.030548096, 0.036468506, -0.009651184, 0.028121948, 0.06439209, 0.07977295, 0.011955261, -0.009277344, -0.0015325546, -0.017837524, 0.012130737, -0.011749268, -0.024124146, -0.0099487305, 0.024108887, 0.014732361, 0.0011167526, 0.02947998, 0.00011986494, 0.03186035, -0.0024108887, -0.018096924, 0.013473511, 0.0513916, 0.005607605, -0.032592773, 0.0048828125, -0.043029785, -0.014961243, 0.010498047, -0.01360321, -0.037384033, 0.013633728, 0.014328003, -0.04776001, -0.011390686, 0.017852783, -0.027008057, 0.02670288, -0.0093688965, 0.019500732, -0.02394104, -0.045043945, -0.015853882, -0.008796692, -0.06378174, -0.0069274902, -0.032714844, -0.07147217, -0.022216797, 0.08276367, 0.0129470825, -0.04208374, -0.027175903, 0.006313324, 0.018203735, 0.023513794, -0.0012636185, -0.034942627, -0.016799927, -0.019332886, -0.028900146, 0.034942627, -0.011543274, 0.029327393, 0.02760315, 0.035583496, 0.04522705, -0.011680603, 0.030181885, -0.025527954, 0.04675293, 0.067993164, 0.01902771, 0.014663696, -0.053222656, 0.04837036, 0.0793457, -0.0769043, -0.023040771, -0.012870789, 0.01953125, -0.020523071, -0.07110596, -0.0079193115, -0.039855957, -0.048034668, 0.02130127, 0.0121536255, -0.028961182, 0.012298584, -0.09051514, -0.012252808, -0.049346924, 0.017150879, 0.029205322, -0.020324707, 0.051116943, -0.031829834, 0.037963867, -0.0209198, 0.0027236938, -0.00919342, -0.018997192, -0.03050232, 0.044403076, 0.06524658, -0.08416748, 0.0030536652, 0.03074646, -0.0075950623, -0.0006928444, 0.010955811, 0.014228821, -0.016647339, 0.023925781, 0.00566864, -0.027557373, -0.037322998, -0.021881104, -0.018463135, -0.01158905, 0.0069885254, -0.027023315, 0.03161621, -0.026504517, -0.10229492, -0.019973755, 0.015899658, 0.0009965897, 0.00066280365, -0.014259338, -0.017791748, -0.060150146, -0.009101868, -0.02154541, 0.004825592, 0.01260376, 0.03579712, 0.024887085, -0.003583908, 0.061828613, 0.009597778, 0.050048828, 0.004699707, 0.017700195, 0.024993896, -0.027893066, 0.030014038, 0.023773193, 0.005870819, -0.057769775, 0.023803711, 0.017700195, 0.013549805, 0.0019035339, 0.009033203, 0.068481445, -0.013977051, 0.0021839142, 0.0029830933, -0.0018482208, 0.017822266, -0.00037813187, 0.027130127, -0.018005371, -0.0435791, 0.013771057, -0.06829834, 0.07647705, 0.015174866, -0.010154724, 0.052581787, 0.038360596, -0.024276733, 0.033294678, 0.041290283, 0.0057868958, 0.0058135986, 0.032592773, -0.024215698, -0.028671265, -0.004322052, -0.013427734, 0.046325684, 0.008552551, 0.006916046, 0.009727478, -0.029510498, -0.060516357, -0.0138549805, 0.0055389404, -0.014923096, -0.014961243, -0.0027427673, -0.023101807, -0.033111572, -0.04144287, 0.013259888, -0.0073776245, -0.00299263, 0.012435913, -0.006416321, -0.026947021, -0.0013628006, 0.0063934326, 0.01474762, -0.016036987, 0.050750732, 0.027923584, -0.032409668, 0.005672455, 0.0064964294, -0.015029907, -0.051361084, 0.03866577, 0.041778564, 0.014472961, 0.0070648193, -0.06549072, 0.03881836, -0.004432678, -0.024536133, 0.08862305, -0.00415802, -0.10235596, -0.040771484, 0.005870819, 0.019683838, -0.04373169, 0.014312744, -0.010643005, 0.018157959, 0.017089844, -0.022445679, 0.016098022, -0.021362305, -0.017974854, -0.046722412, -0.032348633, -0.03375244, 0.04776001, -0.026016235, 0.014122009, -0.018844604, 0.0019111633, -0.032348633, 0.013923645, -0.053375244, 0.02279663, -0.059906006, -0.008529663, 0.068237305, 0.044555664, 0.001537323, -0.03074646, 0.0005617142, -0.004890442, 0.027252197, -0.021011353, -0.008338928, -0.014259338, -0.034362793, 0.005783081, 0.026321411, 0.06463623, -0.013137817, 0.025314331, -0.02798462, 0.019439697, -0.06842041, -0.0014286041, 0.05380249, -0.039916992, -0.04055786, -0.0018968582, 0.09490967, -0.019760132, 0.0011034012, -0.0047187805, 0.032470703, 0.0063438416, 0.016555786, -0.064941406, -0.017807007, 0.009521484, -0.036712646, -0.0074806213, -0.0031051636, -0.011077881, 0.061401367, 0.032684326, -0.011680603, -0.0065193176, 0.02230835, 0.019165039, -0.014793396, 0.016571045, -0.078552246, 0.03439331, -0.06976318, 0.008728027, -0.05001831, 0.06365967, 0.044525146, 0.015129089, 0.0031147003, -0.000992775, -0.016723633, -0.0713501, 0.015975952, -0.019302368, 0.020584106, -0.03265381, -0.04345703, -0.0012950897, -0.061279297, -0.009437561, 0.0016708374, -0.013832092, -0.0059890747, 0.010299683, -0.016296387, -0.04043579, -0.043426514, 0.014923096, -0.021148682, 0.01335144, -0.036132812, 0.006072998, 0.04473877, -0.026672363, -0.017349243, -0.0073394775, -0.0015325546, -0.013626099, 0.041748047, 0.0049362183, -0.060821533, 0.013404846, 0.02961731, 0.00086688995, 0.013748169, 0.016784668, 0.01737976, -0.037994385, -0.034729004, 0.015991211, 0.011131287, -0.061553955, -0.019714355, -0.002412796, 0.005760193, 0.038238525, -0.0143585205, 0.005382538, 0.005897522, -0.007789612, 0.04321289, -0.021530151, 0.0029716492, -0.020996094, 0.056274414, 0.0015192032, 0.04095459, -0.08685303, 0.001871109, 0.004878998, 0.07342529, 0.0041656494, -0.044006348, 0.02658081, -0.045074463, -0.015022278, 0.03378296, -0.0026340485, -0.028656006, -0.010734558, 0.009986877, -0.05911255, -0.018493652, 0.020248413, 0.01625061, 0.00093078613, -0.0096588135, -0.06384277, 0.04663086, 0.023406982, -0.055633545, -0.010116577, -0.032836914, -0.006198883, 0.0064735413, -0.012931824, -0.005744934, -0.0046577454, -0.02130127, -0.008544922, -0.0049209595, 0.0071792603, -0.054107666, -0.014556885, -0.02067566, -0.0040397644, -0.010627747, 0.05871582, 0.010681152, -0.022857666, 0.0011539459, 0.03427124, 0.027175903, -0.024337769, -0.03253174, 0.02243042, 0.008575439, 0.026412964, -0.0054740906, -0.0021705627, 0.07287598, -0.02671814, -0.055480957, -0.0052452087, 0.04296875, -0.04397583, -0.04626465, 0.07446289, 0.0385437, 0.015579224, 0.011184692, 0.008674622, -0.040252686, -0.006175995, 0.009094238, -0.056030273, -0.05142212, -0.044036865, -0.0049858093, -0.0043144226, 0.00016617775, 0.008155823, 0.057281494, 0.017333984, 0.0028076172, -0.047729492, -0.010803223, -0.005455017, -0.027008057, 0.011833191, -0.014472961, 0.01864624, -0.025466919, 0.009010315, -0.08062744, -0.055877686, -0.016784668, 0.026794434, 0.038513184, -0.012649536, 0.006526947, 0.0077781677, -0.026626587, 0.05206299, 0.00548172, -0.041259766, -0.0231781, 0.008811951, 0.02178955, 0.020858765, -0.0099105835, -0.010719299, -0.021697998, 0.010154724, 0.0018157959, 0.040039062, -0.045288086, -0.01071167, -0.012825012, 0.04196167, 0.005722046, 0.010124207, 0.0012769699, -0.0048980713, 0.0104904175, -0.0063323975, 0.008056641, -0.019699097, -0.0075035095, -0.06506348, -0.036865234, -0.023788452, -0.014808655, 0.016174316, -0.027130127, -0.005645752, -0.024536133, 0.012397766, -3.927946e-05, -0.012588501, 0.060394287, -0.0039863586, 0.040985107, 0.00016117096, 0.06317139, 0.020629883, -0.0056648254, -0.06414795, -0.003829956, 0.030395508, -0.0044441223, 0.015731812, -0.04360962, 0.023345947, 0.02722168, -0.040100098, -0.029006958, -0.012756348, 0.02281189, -0.034851074, -0.027511597, 0.010826111, 0.0061836243, -0.009605408, 0.008003235, 0.026306152, 0.006965637, 0.020080566, -0.023773193, -0.024230957, -0.019699097, -0.037200928, 0.0018634796, 0.0045204163, -0.02494812, 0.0064048767, -0.03555298, 0.030578613, 0.024993896, 0.023040771, 0.010055542, -0.003414154, 0.010879517, 0.029922485, -0.018692017, -0.041107178, -0.025512695, 0.013015747, 0.0007095337, -0.0072746277, 0.019622803, 0.025619507, 0.025299072, -0.0064430237, -0.0020198822, -0.001742363, -0.0076141357, -0.006881714, 0.024032593, -0.009140015, -0.032836914, -0.05065918, -0.033325195, 0.027755737, -0.026062012, 0.0546875, -0.0025501251, 0.03640747, 0.028182983, 0.06021118, 0.079711914, 0.0011415482, 0.040374756, 0.016021729, -0.013519287, 0.04434204, -0.022521973, -0.017929077, -0.016021729, -0.016098022, -0.0059051514, -0.012512207, -0.050567627, -0.007499695, 0.013328552, -0.029647827, -0.026763916, 0.0025043488, -0.004119873, -0.0012464523, 0.03289795, -0.059173584, 0.018081665, -0.03262329, -0.034179688, -0.03277588, -0.011703491, -0.04647827, 0.03842163, -0.006210327, -0.0047912598, 0.03552246, -0.011360168, -0.039520264, -0.048858643, -0.005958557, 0.008369446, 0.006034851, -0.008163452, 0.055603027, -0.017791748, -0.06100464, -0.06744385, 0.017410278, -0.055419922, 0.007987976, -0.047821045, 0.03540039, 0.01574707, 0.010360718, 0.034332275, 0.07885742, -0.0013542175, 0.0141067505, 0.003583908, -0.033111572, 0.00020933151, 0.0039100647, 0.0036735535, -0.021347046, -0.043121338, 0.012321472, 0.009048462, -0.008972168, 0.028411865, -0.013626099, -0.066833496, -0.011184692, -0.020965576, -0.001750946, -0.0035533905, -0.0184021, 0.03149414, 0.0068206787, -0.036712646, -0.0154953, 0.012527466, 0.011550903, 0.030227661, -0.024673462, 0.014221191, -0.005279541, -0.049041748, -0.00058603287, -0.011856079, 0.0021038055, 0.021133423, -0.0034713745, -0.009605408, -0.0030059814, 0.012084961, -0.048919678, -0.011566162, 0.014022827, 0.0096588135, 0.030029297, 0.0037212372, 0.0029468536, -0.02015686, -0.0178833, -0.043670654, -0.030944824, 0.005504608, 0.008163452, -0.019973755, -0.03060913, -0.0069465637, -0.0032596588, -0.032806396, -0.0030212402, -0.048034668, -0.043029785, 0.018157959, 0.028396606, -0.002506256, -0.007785797, -3.20673e-05, 0.012138367, -0.038513184, 0.013061523, 0.030090332, 0.0118637085, -0.034301758, 0.021850586, 0.029220581, 0.020889282, -0.04168701, -0.06744385, -0.06793213, -0.0006942749, -0.008796692, 0.01965332, 0.05722046, -0.021331787, 0.011985779, -0.0038814545, -0.0065612793, -0.032196045, -0.008483887, 0.039215088, -0.009338379, 0.0098724365]}, "B004KH4LAE": {"id": "B004KH4LAE", "original": "Brand: Hiland\nName: Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze\nDescription: \nFeatures: Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included\nPatio heater dimensions: 21.5\" W x 21\" D x 91\" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top \u2013 36\u201d/91.4cm. Side \u2013 24\u201d/60.9 cm\nIncludes a reliable igniter and a Safety auto shut off tilt valve\nUses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU\nThe latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction\n", "metadata": {"Name": "Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze", "Brand": "Hiland", "Description": "", "Features": "Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included\nPatio heater dimensions: 21.5\" W x 21\" D x 91\" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top \u2013 36\u201d/91.4cm. Side \u2013 24\u201d/60.9 cm\nIncludes a reliable igniter and a Safety auto shut off tilt valve\nUses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU\nThe latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.026473999, 0.000869751, -0.07940674, -0.06829834, 0.031799316, -0.030075073, 0.013977051, 0.05630493, -0.040863037, 0.020233154, -0.03692627, 0.041748047, 0.0073547363, -0.015640259, 0.04562378, -0.030273438, 0.032836914, -0.0037498474, -0.0014562607, -0.02368164, -0.017028809, 0.0060043335, -0.0041046143, 0.12164307, 0.028671265, -0.040740967, 0.008621216, 0.0022792816, 0.023727417, 0.004257202, 0.037872314, 0.006378174, 0.025482178, -0.019439697, -0.0069007874, -0.031585693, 0.00667572, -0.01838684, -0.019241333, 0.0011444092, 0.0018911362, -0.005970001, -0.0134887695, 0.01675415, -0.04916382, 0.007019043, -0.02470398, -0.008735657, -0.0038013458, 0.015960693, 0.0036849976, -0.012199402, 0.020935059, 0.026489258, -0.03994751, -0.062561035, 0.0023841858, 0.0020599365, 0.0132369995, -0.037628174, -0.020050049, 0.0030517578, 0.036193848, 0.020080566, -0.051239014, -0.00031208992, 0.06097412, -0.020050049, 0.029052734, -0.062316895, -0.0121154785, 0.058654785, 0.016326904, 0.01890564, -0.049713135, 0.019851685, 0.024902344, 0.023880005, 0.024414062, -0.007987976, -0.017410278, -0.016296387, -0.0032978058, -0.0211792, 0.015609741, 0.016784668, -0.020721436, -0.013496399, -0.028030396, -0.04901123, -0.026977539, -0.018600464, -0.047546387, 0.016723633, -0.012962341, -0.003250122, -0.033233643, -0.08886719, 0.05517578, 0.005138397, 0.06390381, -0.049743652, 0.03314209, 0.012130737, -0.0131073, 0.020019531, -0.0013122559, -0.009460449, 0.019058228, 0.024291992, -0.012046814, 0.0065612793, -0.018035889, -0.024932861, -0.050231934, 0.022720337, -0.020523071, -0.03970337, 0.011642456, -0.045776367, -0.028076172, -0.015731812, 0.008453369, 0.036376953, 0.00072574615, 0.017120361, -0.0015583038, 0.0030384064, -0.023498535, 0.027023315, -0.033416748, 0.0043296814, 0.028778076, 0.051208496, 0.006122589, -0.009979248, 0.059417725, 0.012374878, 0.014205933, -0.0015249252, 0.002872467, -0.0020275116, -0.004558563, -0.010124207, -0.027938843, 0.018814087, 0.018539429, 0.0015974045, -0.012916565, -0.028945923, -0.039123535, -0.0006079674, 0.04272461, -0.00018763542, -0.0026359558, -0.02003479, 0.026733398, -0.029647827, -0.031021118, -0.044036865, -0.053222656, -0.012588501, 0.028442383, 0.021759033, -0.0025501251, 0.05392456, 0.021408081, 0.0013093948, 0.030883789, 0.09057617, 0.008201599, -0.022781372, 0.022720337, 0.020889282, -0.013755798, 0.00434494, -0.042297363, 0.111450195, 0.05947876, -0.10723877, -0.05239868, -0.05508423, 0.17504883, -0.04284668, -0.0005760193, -0.012741089, 0.006893158, -0.025131226, 0.004055023, 0.0062789917, 0.02645874, 0.024276733, -0.002664566, -0.055786133, -0.018478394, 0.016326904, -0.042755127, 0.009613037, -0.020355225, 0.037261963, -0.017028809, 0.013587952, -0.023895264, -0.0021877289, 0.04244995, -0.031021118, 0.024124146, 0.0045814514, -0.0047683716, 0.051635742, 0.0015954971, 0.029663086, -0.00333786, -0.06750488, 0.016677856, 0.020019531, -0.028808594, 0.0072631836, -0.013580322, 0.020141602, 0.027359009, -0.031066895, 0.026031494, 0.023498535, 0.047607422, -0.009895325, -0.014732361, -0.020217896, 0.04736328, 0.006164551, -0.022918701, 0.025848389, 0.037597656, 0.06185913, 0.0011110306, 0.0309906, 0.06933594, 0.033691406, -0.008605957, -0.023269653, -0.009223938, -0.023468018, -0.0473938, 0.04397583, -0.013031006, -0.008041382, -0.00037384033, 0.038085938, -0.041015625, -0.03149414, 0.059326172, 0.0028972626, 0.032287598, 0.037719727, -0.033477783, 0.015182495, 0.02116394, -0.0040893555, -0.009384155, 0.024734497, -0.0021457672, 0.027954102, -0.0154953, -0.0031719208, 0.013153076, 0.02116394, 0.04248047, 0.04888916, 0.00015413761, -0.016662598, -0.00434494, 0.02532959, -0.01109314, 0.0068511963, -0.010650635, -0.005924225, 0.0017538071, 0.010948181, -0.035858154, -0.02204895, 0.0070381165, -0.022872925, -0.029388428, 0.0051841736, 0.06506348, 0.020629883, 0.012268066, 0.017211914, 0.011932373, 0.020355225, 0.025512695, 0.008583069, -0.013450623, 0.04928589, -0.01725769, -0.016052246, -0.02331543, 0.030349731, 0.0047187805, -0.011428833, 0.00048017502, 0.03955078, -0.033569336, 0.03427124, -7.712841e-05, 0.029541016, -0.02772522, 0.034057617, 0.017974854, -0.023513794, -0.019180298, 0.013267517, 0.03527832, -0.0014858246, 0.050720215, 0.02407837, 0.035461426, 0.042755127, 0.040527344, -0.013504028, 0.0008249283, 0.020263672, -0.011199951, -0.020126343, 0.0079193115, -0.0017356873, -0.040802002, -0.0066986084, 0.017166138, -0.012611389, 0.017654419, -0.022079468, -0.012374878, -0.06225586, 0.015541077, -0.03250122, 0.00024533272, 0.009971619, -0.023483276, -0.048797607, 0.0004799366, -0.004032135, 0.02545166, 0.024291992, -0.03375244, 0.019165039, 0.024887085, 0.020050049, -0.008979797, 0.004802704, -0.018005371, -0.02583313, -0.003396988, -0.016159058, 0.009918213, 0.0051727295, -0.03262329, -0.02230835, 0.0065612793, -0.059020996, -0.010597229, -0.027191162, -0.044525146, -0.0008997917, 0.0680542, -0.02394104, -0.05508423, -0.014640808, -0.031677246, 0.0070343018, 0.050048828, -0.0018062592, -0.057250977, -0.038848877, -0.07873535, -0.010261536, -0.0009660721, -0.03149414, 0.0027065277, -0.018295288, 0.0524292, 0.0385437, -0.024536133, -0.014877319, -0.0043754578, 0.013809204, 0.019851685, 0.035858154, 0.014297485, -0.008049011, 0.007106781, 0.020462036, -0.03161621, 0.0013799667, 0.008392334, -0.0055656433, 0.00033903122, -0.013450623, -0.061340332, -0.01852417, -0.1184082, 0.031677246, 0.029251099, -0.051727295, -0.0029239655, -0.08459473, -0.068115234, -0.05154419, 0.030883789, 0.028793335, -0.014457703, 0.020523071, -0.034576416, -0.0030326843, -0.03753662, 0.024536133, 0.04244995, -0.015037537, 0.033355713, -0.018356323, 0.013298035, -0.0024700165, 0.03414917, 0.022079468, -0.053497314, -0.015365601, -0.03378296, 0.03326416, -0.018035889, 0.03845215, -0.028518677, 0.011993408, -0.0105896, 0.008575439, -0.03173828, 0.068481445, 0.031677246, 0.0748291, 0.05633545, -0.033081055, -0.04727173, -0.034606934, -0.005695343, 0.006828308, -0.038085938, 0.01448822, -0.007873535, -0.01776123, 0.0071868896, -0.036376953, -0.016342163, -0.005783081, 0.03643799, 0.031234741, 0.0033054352, 0.07287598, -0.029251099, 0.024597168, 0.013259888, -0.027709961, -0.025985718, -0.031143188, 0.023834229, 0.002210617, 0.023635864, -0.041900635, 0.07080078, 0.02458191, 0.00015795231, 0.010116577, 0.020767212, -0.028396606, 0.01612854, 0.007843018, 0.007583618, 0.002210617, -0.00063562393, 0.002336502, -0.015304565, 0.00806427, -0.08111572, 0.02355957, -0.0035762787, 0.029510498, 0.024337769, -0.021011353, 0.08300781, 0.03503418, 0.00030326843, 0.031143188, 0.038116455, 0.019805908, 0.010810852, 0.0625, 0.007472992, -0.016204834, 0.0046310425, -0.019302368, 0.029937744, -0.016174316, -0.034576416, 0.042114258, -0.050231934, -0.040924072, -0.04437256, 0.019454956, -0.004951477, -0.023513794, 0.0047340393, -0.046539307, -0.036346436, -0.05041504, -0.010795593, 0.0037250519, -0.034484863, -0.053100586, 0.017364502, -0.02178955, -0.021514893, 0.0151901245, 0.014846802, 0.00036978722, 0.0006580353, 0.019592285, 0.021591187, 0.0073127747, -0.027252197, -0.0015745163, -0.008628845, 0.043304443, -0.008964539, -0.0013837814, 0.01902771, -0.017913818, 0.029907227, -0.0030155182, -0.004257202, -0.011520386, -0.024261475, -0.050079346, 0.024810791, 0.025482178, -0.031982422, -0.03955078, 0.0072669983, -0.018814087, 0.0024814606, 0.0063591003, 0.012702942, -0.0057678223, -0.020217896, -0.0053710938, -0.06854248, -0.009849548, -0.009849548, -0.017227173, -0.057922363, 0.00957489, -0.02420044, 0.04147339, 0.02243042, 0.046569824, -0.048858643, -0.028274536, 0.0049705505, 0.0012903214, 0.016845703, -0.029769897, -0.009681702, -0.024719238, -0.02003479, 0.003583908, 0.0736084, 0.012016296, -0.011627197, -0.041992188, -0.0034637451, 0.006336212, 0.04071045, 0.027786255, -0.030395508, -0.0040779114, -0.008682251, -0.036071777, -0.086242676, 0.03253174, 0.051208496, -0.018417358, -0.0552063, -0.0079956055, 0.031829834, 0.019638062, 0.0132369995, 0.019088745, -0.0023460388, 0.0030174255, -0.0024719238, -0.08105469, -0.01889038, -0.004589081, -0.037872314, 0.009231567, 0.0014238358, -0.010574341, 0.04446411, 0.04949951, 0.010406494, -0.028686523, 0.008453369, 0.005596161, 0.0012254715, 0.041778564, -0.027297974, 0.004802704, -0.013977051, -0.020507812, -0.041137695, 0.010154724, 0.05114746, -0.013282776, 0.04083252, 0.00061416626, 0.0077819824, 0.04385376, -0.030044556, -0.012825012, 0.011260986, 0.015838623, -0.02331543, 0.005138397, 0.025527954, -0.009361267, -0.0046958923, -0.046691895, 0.022354126, 0.05895996, -0.023727417, -0.004425049, -0.05529785, -0.01259613, -0.0065612793, 0.017196655, -0.0077438354, -0.010444641, 0.071777344, -0.022964478, 0.0030345917, 0.01828003, -0.01739502, -0.007209778, -0.039031982, -0.011566162, -0.01033783, 0.012168884, -0.0019950867, 0.020690918, -0.046295166, 0.04586792, 0.0030879974, 0.019760132, -0.04598999, 0.047424316, 0.011978149, 0.00047254562, 0.023757935, 0.030593872, 0.0027256012, 0.040802002, -0.0012865067, 0.007423401, 0.021865845, -0.023651123, 0.032928467, 0.00042176247, -0.0041542053, -0.022369385, 0.06536865, -0.012702942, 0.021575928, -0.05645752, 0.009590149, -0.012084961, 0.00086164474, -0.00919342, -0.018585205, 0.035186768, -0.040161133, -0.00881958, 0.012458801, 0.055267334, -0.043518066, -0.014961243, 0.044799805, 0.004634857, -0.06732178, 0.0206604, -0.04345703, 0.030014038, 0.008338928, 0.0038394928, 0.016677856, 0.018249512, -0.035308838, -0.022842407, 0.019470215, 0.0014677048, -0.02130127, -0.0079956055, 0.008674622, -0.018615723, -0.0010795593, 0.04095459, 0.016860962, 0.014701843, -0.056549072, -0.018829346, -0.03286743, 0.0052375793, -0.022506714, 0.061187744, -0.013641357, 0.023986816, 0.026168823, -0.038848877, -0.013885498, 0.019836426, -0.0317688, 0.020492554, -0.0017147064, -0.00055122375, -0.00969696, 0.021026611, 0.109436035, -0.041534424, -0.051574707, -0.06109619, 0.016784668, 0.002506256, -0.055541992, 0.110961914, -0.00038003922, 0.024169922, 0.0051078796, -0.005607605, -0.04660034, 0.0023460388, 0.010147095, -0.09246826, -0.04244995, -0.03982544, 0.0006227493, -0.01436615, 0.012771606, -0.043701172, 0.035491943, -0.024597168, -0.014320374, -0.029205322, 0.0059051514, 0.0018367767, -0.049560547, 0.012771606, -0.009147644, 0.007949829, 0.0028305054, -0.0057868958, -0.041137695, 0.015594482, -0.020889282, 0.018463135, 0.021942139, 0.012451172, 0.001288414, 0.04547119, -0.048095703, -0.008583069, 0.027770996, -0.04626465, 0.007003784, 0.027664185, 0.009407043, 0.0045700073, -0.035095215, -0.003370285, -0.014274597, -0.0015802383, 0.026901245, 0.017715454, -0.04626465, -0.03366089, 0.057556152, 0.04498291, 0.038513184, 0.025665283, -0.002998352, -0.029067993, -0.00084352493, 0.022949219, 0.045684814, -0.021102905, -0.043670654, -0.027908325, -0.0027503967, 0.037628174, 0.010215759, 0.030441284, 0.01876831, 0.024353027, -0.017044067, -0.011550903, 0.007709503, -0.006465912, -0.004840851, -0.011436462, -0.03237915, 0.012901306, 0.006416321, -0.015563965, 0.048614502, -0.0181427, -0.016906738, 0.021774292, -0.012130737, 0.015975952, -0.036468506, 0.010940552, 0.00957489, -0.05065918, 0.021972656, -0.037475586, -0.008659363, -0.009422302, 0.002708435, -0.00036382675, 0.028411865, 0.026901245, -0.027816772, 0.028244019, -0.016677856, -0.0073928833, 0.0053138733, -0.020126343, 0.03237915, -0.014480591, 0.030654907, 0.018325806, -0.017944336, -0.023956299, -0.029434204, 0.01914978, 0.027145386, 0.0044136047, 0.02218628, -0.03439331, 0.029144287, -0.002735138, 0.028701782, -0.027389526, -0.009544373, 0.0075187683, -0.0012788773, -0.00068855286, 0.002752304, -0.0016012192, 0.031082153, -0.010269165, -0.036987305, 0.02178955, -0.068725586, 0.002855301, 0.013427734, 0.03665161, -0.072631836, -0.03564453, -0.011894226, -0.03842163, 0.020065308, 0.016540527, 0.002210617, 0.04055786, 0.038757324, -0.040527344, 0.049682617, -0.024536133, 0.00063180923, -0.033721924, 0.047698975, -0.02017212, -0.01084137, -0.01637268, 0.009155273, -0.0059394836, 0.016342163, 0.013664246, -0.0012788773, -0.032684326, -0.0033435822, 0.031433105, -0.029251099, 0.040649414, -0.026626587, -0.041778564, 0.004901886, 0.010604858, 0.006843567, 0.0054016113, 0.0019273758, -0.03805542, 0.04071045, -0.018508911, -0.037597656, 0.031066895, -0.016220093, -0.0042877197, -0.011398315, 0.059814453, -0.03918457, 0.0038452148, 0.0021381378, 0.030731201, 0.01360321, 0.024871826, 0.01739502, -0.05505371, -0.09173584, 0.015426636, -0.045837402, 0.0069351196, -0.0010929108, -0.021377563, -0.006713867, -0.009635925, 0.042663574, 0.05114746, 0.040039062, 0.00013279915, 0.06008911, -0.049438477, -0.009063721, 0.024002075, 0.02859497, -0.03213501, -0.028289795, -0.016723633, -0.005252838, 0.07159424, 0.012145996, 0.0061569214, -0.04019165, -0.014862061, -0.052734375, -0.0009417534, -0.023712158, -0.012504578, 0.022781372, -0.0019607544, -0.05319214, 0.013763428, 0.03555298, 0.05834961, 0.006313324, -0.049804688, 0.051239014, -0.026275635, -0.018173218, -0.053466797, -0.024673462, 0.015808105, -0.013885498, -0.025115967, -0.01071167, 0.008712769, -0.008171082, -0.013587952, 0.02796936, 0.013168335, 0.039367676, 0.0010566711, -0.008743286, 0.02859497, -0.026397705, 0.03086853, -0.015487671, 0.02255249, 0.040527344, 0.009407043, -0.027908325, 0.0015068054, -0.03933716, 0.0076026917, -0.011306763, -0.06347656, -0.084228516, -0.059143066, 0.05218506, 0.042633057, -0.031143188, 0.01373291, 0.023223877, 0.030548096, -0.026321411, -0.016952515, 0.023208618, -0.009979248, 0.0001322031, -0.038757324, -0.00667572, 0.023452759, -0.028259277, -0.06951904, -0.06896973, 0.050689697, 0.012710571, -0.0067253113, 0.054260254, -0.0034542084, 0.009094238, 0.010971069, -0.008331299, -0.015823364, 0.01576233, -0.0073928833, -0.008995056, 0.018722534]}, "B07ZGHCR2M": {"id": "B07ZGHCR2M", "original": "Brand: LONGADS\nName: 12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator \u2026\nDescription:

      You can control the temperature of your appliance exactly what you want

      \u2705The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

      \u2705If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

      \u2705Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

      Specification

      - Length: 12feet / 144 Inch/366 cm

      style=\"margin-left: 5.25pt;\"

      - Apply to: propane burners, stove,\u00a0gas grill,\u00a0turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

      - Inlet Pressure: 25-250PSIG

      - Outlet Pressure: 0-30PSIG

      - Max.flow capacity:136000BTU

      - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

      Warm Tips\u00a0\u00a0\u00a0

      1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

      2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

      3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE.\u00a0ALL propane appliances are OUTDOOR Use.

      After sale guarantee

      You are not satisfied, don't be too quick to leave a negative comment,\u00a0you can request a replacement or a full refund.\u00a0Contact us! We will show you a satisfactory solution.

      \nFeatures: \u3010Measure Your Pressure\u3011Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\n\u3010End Fitting to Appliance\u301112Foot 0-30 PSI\u00a0High\u00a0pressure\u00a0stainless\u00a0steel\u00a0hose, 3/8\u201d female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8\u2019\u2019 male flare connector.\n\u3010New\u00a0upgrade\u3011Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don't need to move your atmospheric bottle. Gas\u00a0Pressure\u00a0Gauge\u00a0allow\u00a0you\u00a0control\u00a0of\u00a0the\u00a0heat\u00a0output\u00a0with\u00a0a\u00a0precise\u00a0level,\u00a0to\u00a0keep\u00a0your\u00a0outdoor\u00a0cooker\u00a0in\u00a0optimal\u00a0operating\u00a0condition.\n\u3010Durable Material Design\u3011The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank.\n\u3010SAFETY\u3011Pass CSA certificate for your safety, excellent sealing quality is promised for your safety.\u00a0propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "metadata": {"Name": "12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator \u2026", "Brand": "LONGADS", "Description": "

      You can control the temperature of your appliance exactly what you want

      \u2705The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

      \u2705If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

      \u2705Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

      Specification

      - Length: 12feet / 144 Inch/366 cm

      style=\"margin-left: 5.25pt;\"

      - Apply to: propane burners, stove,\u00a0gas grill,\u00a0turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

      - Inlet Pressure: 25-250PSIG

      - Outlet Pressure: 0-30PSIG

      - Max.flow capacity:136000BTU

      - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

      Warm Tips\u00a0\u00a0\u00a0

      1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

      2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

      3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE.\u00a0ALL propane appliances are OUTDOOR Use.

      After sale guarantee

      You are not satisfied, don't be too quick to leave a negative comment,\u00a0you can request a replacement or a full refund.\u00a0Contact us! We will show you a satisfactory solution.

      ", "Features": "\u3010Measure Your Pressure\u3011Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\n\u3010End Fitting to Appliance\u301112Foot 0-30 PSI\u00a0High\u00a0pressure\u00a0stainless\u00a0steel\u00a0hose, 3/8\u201d female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8\u2019\u2019 male flare connector.\n\u3010New\u00a0upgrade\u3011Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don't need to move your atmospheric bottle. Gas\u00a0Pressure\u00a0Gauge\u00a0allow\u00a0you\u00a0control\u00a0of\u00a0the\u00a0heat\u00a0output\u00a0with\u00a0a\u00a0precise\u00a0level,\u00a0to\u00a0keep\u00a0your\u00a0outdoor\u00a0cooker\u00a0in\u00a0optimal\u00a0operating\u00a0condition.\n\u3010Durable Material Design\u3011The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank.\n\u3010SAFETY\u3011Pass CSA certificate for your safety, excellent sealing quality is promised for your safety.\u00a0propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0016641617, 0.0013141632, -0.0050697327, 0.0058631897, -0.021209717, -0.003704071, 0.0016813278, -0.022003174, -0.026824951, 0.0033226013, -0.02204895, 0.01852417, -0.021835327, -0.027694702, 0.018341064, -0.048095703, 0.03540039, -0.0010614395, 0.031707764, -0.006160736, -0.012145996, 0.027420044, -0.0038318634, 0.096191406, 0.022323608, -0.012641907, 0.027755737, 0.02998352, 0.007774353, 0.011940002, 0.022918701, -0.03778076, 0.05581665, 0.0021324158, -0.03778076, -0.01399231, -0.0014410019, -0.009155273, -0.036834717, 0.022415161, -0.0006275177, 0.008087158, -0.017547607, 0.013877869, -0.016235352, -0.030563354, -0.017669678, -0.0793457, 0.027038574, 0.03842163, 0.002796173, 0.026062012, -0.0035591125, -0.03314209, -0.019851685, -0.03741455, 0.012145996, -0.012313843, 0.0003232956, 0.012863159, -0.008995056, 0.020721436, 0.009208679, 0.012420654, -0.029876709, -0.00091314316, 0.03744507, -0.0059890747, 0.020736694, 0.0064086914, 0.015380859, 0.009239197, 0.002035141, -0.0059394836, -0.030792236, 0.021438599, 0.031204224, 0.017868042, 0.0038051605, -0.0057907104, -0.0074539185, -0.015007019, 0.023834229, 0.014556885, -0.003364563, 0.031921387, -0.016647339, -0.02015686, -0.045288086, -0.00085544586, -0.023971558, 0.022460938, -0.045410156, 0.012588501, -0.009002686, 0.0059547424, -0.009597778, -0.077819824, 0.06365967, -0.0044555664, 0.051208496, -0.054901123, 0.023895264, 0.027938843, 0.00082445145, 0.07055664, -0.011558533, 0.012840271, 0.019989014, -0.0025482178, 0.0099487305, -0.022079468, 0.00094795227, -0.0079956055, -0.03982544, 0.027938843, 0.013694763, -0.023468018, -0.0096588135, -0.007045746, -0.012954712, 0.010864258, 0.028808594, -0.016433716, 0.0024318695, 0.013076782, -0.0126953125, -0.039245605, -0.048614502, 0.016540527, -0.025970459, -0.0017280579, 0.045135498, 0.08258057, 0.026519775, -0.010810852, 0.03540039, -0.006164551, 0.007484436, 0.015670776, -0.020965576, -0.02268982, 0.009262085, -0.009094238, -0.040649414, 0.018218994, 0.016815186, 0.019546509, 0.01083374, -0.0635376, -0.011138916, -0.023376465, 0.05038452, 0.0057411194, -0.04434204, -0.014183044, -0.008369446, -0.018463135, -0.00667572, -0.047058105, -0.013122559, -0.040496826, -0.03677368, -0.023422241, -0.05996704, 0.051208496, 0.03237915, 0.002090454, 0.020935059, 0.050720215, -0.0057525635, 0.00920105, 0.03265381, 0.02456665, -0.0013017654, 0.013336182, -0.016952515, 0.044769287, 0.06518555, -0.10876465, -0.045684814, -0.03326416, 0.11804199, -0.044830322, 0.016998291, -0.03643799, 0.01222229, -0.024414062, -0.011291504, 0.024032593, 0.014213562, 0.027313232, 0.007980347, 0.0046806335, -0.0052337646, -0.014503479, -0.032348633, 0.009544373, -0.022720337, -0.008377075, -0.07165527, 0.010253906, -0.0065193176, 0.0030269623, 0.011756897, -0.0019607544, -0.0073432922, 0.043701172, 0.06088257, 0.0077056885, -0.028396606, -0.03604126, 0.035095215, -0.04534912, -0.050811768, 0.027038574, 0.016738892, 0.0051574707, 0.0023403168, -0.0025901794, 0.014373779, -0.019927979, 0.011154175, 0.046844482, 0.008239746, -0.018493652, -0.007572174, -0.011924744, -0.014038086, 0.009513855, -0.007575989, 0.012763977, 0.060516357, 0.053344727, -0.019958496, 0.02709961, 0.055603027, 0.011680603, -0.017486572, -0.0035133362, 0.01197052, -0.009941101, -0.058380127, -0.02180481, -0.03488159, -0.07556152, -0.015304565, -0.003314972, -0.017089844, 0.003818512, 0.018127441, -0.011886597, 0.032287598, -0.0049934387, -0.013542175, 0.023376465, -0.03515625, 0.028152466, -0.021575928, 0.011817932, -0.027770996, -0.0032367706, 0.06585693, -0.039123535, 0.029083252, 0.018859863, 0.026870728, 0.02243042, -0.042266846, 0.03338623, 0.015701294, 0.012908936, 0.003932953, -0.04989624, -0.04937744, 0.004737854, -0.02357483, 0.038970947, 0.0015821457, -0.048309326, -0.02394104, -0.0010547638, -0.007797241, 0.007045746, 0.007774353, -0.005554199, 0.021636963, 0.0036144257, 0.020477295, 0.01928711, 0.04940796, -0.011131287, -0.014846802, 0.016235352, -0.019760132, -0.031829834, 0.07531738, -0.049041748, 0.032348633, -0.01878357, 0.025527954, 0.057403564, -0.030334473, 0.036102295, 0.003047943, -0.022735596, -0.0064315796, 0.040222168, 0.016815186, -0.042114258, -0.008346558, 0.018447876, 0.03616333, -0.038330078, 0.062164307, 0.03265381, -0.0053482056, 0.040374756, 0.050994873, 0.06982422, -0.003982544, -0.015106201, 0.0017118454, -0.022201538, 0.004924774, -0.0066070557, -0.028381348, -0.0056037903, -0.006793976, 0.014961243, 0.024719238, 0.008651733, -0.0039405823, 0.0032844543, 0.010673523, -0.0049057007, -0.017837524, 0.07434082, -0.025436401, -0.09832764, -0.066101074, -0.064575195, 0.0059318542, 0.028533936, -0.04647827, -0.022491455, 0.043182373, -0.0039978027, -0.03265381, -0.0046539307, 0.041137695, -0.012168884, -0.010635376, -0.055541992, 0.0015611649, 0.0059661865, -0.0065193176, -0.057891846, 0.012794495, -0.0871582, -0.04260254, -0.00806427, -0.081848145, -0.05984497, 0.06695557, 0.0064697266, -0.05960083, -0.019042969, 0.007259369, 0.006248474, 0.044067383, -0.015396118, -0.043182373, -0.021026611, -0.014259338, -0.020599365, 0.03704834, -0.022476196, 0.036590576, 0.031311035, 0.017089844, 0.031829834, -0.010765076, 0.021362305, 0.025894165, 0.027008057, 0.06518555, 0.04159546, 0.014335632, -0.044647217, -0.0008125305, 0.029190063, -0.009986877, -0.018844604, -0.015312195, -0.0060195923, -0.014778137, 0.0033607483, -0.030029297, -0.009559631, -0.008834839, 0.0064582825, -0.020584106, 0.0030136108, -0.011077881, -0.0602417, 0.0005221367, -0.035491943, 0.018463135, 0.04309082, -0.010246277, 0.019012451, -0.008728027, 0.02079773, -0.021591187, 0.0010719299, -0.027618408, -0.020599365, 0.007534027, 0.015563965, 0.032287598, -0.08666992, 0.02406311, 0.03842163, -0.005908966, -0.015411377, 0.0059165955, 0.0056533813, -0.029663086, 0.034423828, -0.0015144348, -0.010757446, -0.039978027, -0.014129639, 0.0029411316, 0.017990112, 0.024261475, -0.013694763, 0.039093018, -0.010772705, -0.101257324, -0.05987549, -0.026107788, 0.015136719, 4.3570995e-05, -0.020751953, -0.06958008, -0.09844971, 0.010513306, -0.04827881, 0.0066337585, -0.0066604614, 0.04034424, 0.0287323, -0.0063056946, 0.10546875, 0.037475586, 0.06933594, -0.005706787, -0.02722168, -0.006580353, -0.049194336, 0.05029297, 0.011894226, -0.044036865, -0.0014925003, 0.0032234192, 0.020050049, 0.0003092289, -0.03439331, -0.016571045, 0.08093262, -0.014663696, -0.0032520294, -0.018875122, 0.012237549, 0.032287598, -0.020385742, 0.052947998, -0.013618469, -0.028442383, 0.0035648346, -0.0814209, 0.058776855, 0.029190063, -0.014633179, 0.01965332, 0.01235199, 0.0067749023, -0.0027580261, 0.0491333, -0.033203125, 0.033996582, -0.022460938, -0.003288269, -0.03253174, 0.0090408325, -0.03918457, 0.029571533, -0.00484848, 0.008796692, 0.04147339, -0.013664246, -0.035949707, -0.039123535, 0.0034484863, 0.022964478, 0.0042037964, 0.014587402, -0.072387695, 0.019515991, -0.023117065, 0.006614685, 0.029754639, -0.035461426, -0.03652954, 0.009864807, 0.012466431, -0.042938232, -0.0035934448, -0.0023860931, -0.01864624, 0.027252197, 0.017349243, 0.011772156, -0.00088071823, 0.0055160522, 0.021606445, -0.019378662, 0.02381897, 0.06628418, 0.023895264, -0.0030555725, -0.040771484, -0.010726929, -0.022949219, -0.0011911392, 0.08605957, 0.03125, -0.068481445, -0.031951904, -0.0020885468, 0.03164673, -0.0637207, -0.0052490234, -0.014328003, -0.008804321, 0.039123535, -0.053344727, 0.01713562, -0.0031414032, -0.00907135, -0.022415161, -0.021209717, -0.02204895, 0.028518677, -0.018753052, -0.010055542, -0.013435364, -0.0059432983, -0.006752014, 0.028930664, -0.05380249, -0.004131317, -0.043182373, -0.0101623535, 0.0546875, 0.01977539, -0.027679443, 0.00027942657, -0.008239746, 0.02116394, 0.022003174, -0.033172607, -0.011413574, -0.03036499, -0.008712769, 0.01020813, 0.03060913, 0.051086426, -0.0018358231, 0.009140015, -0.028961182, 0.0044670105, -0.07196045, 0.009002686, 0.047912598, -0.045532227, -0.041107178, -0.015731812, 0.07147217, 0.0020065308, 0.037719727, 0.031051636, 0.01449585, -0.0119018555, -0.034088135, -0.14147949, -0.032104492, -0.008239746, -0.027542114, 0.0041007996, -0.008163452, -0.011734009, 0.043182373, 0.029296875, 0.0011205673, -0.009185791, 0.0027065277, 0.003358841, -0.012924194, 0.008384705, -0.006969452, 0.009239197, -0.028198242, -0.01612854, -0.040771484, 0.04550171, 0.035003662, -0.0107421875, 0.0066223145, 0.0016050339, -0.0048599243, -0.026977539, -0.022735596, 0.052764893, 0.052764893, 0.020507812, -0.04360962, 0.007888794, -0.027130127, -0.022277832, 0.012107849, 0.060699463, 0.04473877, -0.07720947, -0.016036987, -0.00945282, -0.0062828064, 0.026107788, -0.00017094612, 0.0099105835, -0.010696411, 0.020385742, 0.010719299, -0.017944336, -0.0063972473, -0.004398346, 0.010673523, -0.027526855, 0.013801575, -0.008354187, -0.039794922, -0.019195557, 0.029022217, -0.018157959, 0.00060510635, 0.011726379, 0.028121948, -0.03353882, -0.036376953, 0.035186768, 0.010665894, -0.032684326, 0.08886719, -0.060272217, 0.023956299, 0.01058197, -0.021362305, 0.062072754, -0.019424438, -0.049194336, 0.019058228, -0.02986145, -0.020446777, -0.017150879, 0.0635376, 0.0073432922, 0.026184082, -0.057495117, 0.015792847, -0.019210815, 0.011383057, 0.0068893433, -0.023529053, 0.029815674, -0.016937256, -0.017456055, 0.025131226, -0.015930176, -0.0031108856, 0.03591919, 0.0049362183, -0.005958557, -0.041137695, 0.011154175, 0.015731812, 0.01096344, 0.012390137, -0.068359375, 0.04675293, 0.022506714, -0.082336426, -0.013473511, -0.03527832, 0.0044441223, 0.0063438416, 0.011207581, -0.02444458, -0.0027713776, -0.003271103, 0.013977051, 0.040374756, 0.014839172, -0.035858154, -0.030227661, -0.0018463135, 0.029373169, -0.0014600754, 0.039367676, -0.019210815, -0.034576416, -0.006187439, 0.021011353, 0.023590088, -0.044281006, -0.027435303, -0.010734558, -0.018417358, -0.02508545, -0.017944336, -0.017532349, 0.06793213, -0.04458618, -0.05670166, -0.01600647, 0.014801025, -0.006587982, -0.03427124, 0.043395996, 0.017745972, 0.007865906, 0.017059326, -0.010467529, -0.047088623, -0.0006532669, 0.0012340546, -0.062194824, -0.053955078, -0.04333496, -0.01737976, -0.005882263, -0.02947998, -0.018829346, 0.0413208, -0.0025615692, 0.012649536, -0.03543091, -0.037872314, -0.0039138794, -0.021652222, 0.0146865845, -0.013664246, 0.025497437, -0.017074585, 0.013465881, -0.08569336, -0.06689453, -0.010147095, 0.034606934, 0.030899048, 0.011894226, 0.0035629272, 0.01927185, -0.05984497, 0.03933716, 0.02230835, -0.03878784, -0.02130127, 0.008621216, 0.012786865, 0.032348633, -0.047210693, 0.005531311, -0.005012512, -0.017669678, -0.038330078, 0.015914917, -0.061828613, -0.06402588, -0.008110046, 0.070739746, -0.0011663437, 0.018463135, 0.024353027, -0.007751465, -0.021514893, -0.012069702, -0.03729248, -0.036132812, -0.026763916, -0.036956787, -0.03086853, 0.0036945343, -0.014198303, 0.008033752, 0.007888794, 0.008575439, -0.051513672, 0.019180298, -0.015052795, -0.04534912, 0.01928711, -0.01965332, 0.06506348, -0.024475098, 0.028213501, -0.009170532, 0.008163452, -0.0013389587, 0.00504303, 0.03567505, 0.021224976, 0.0076446533, -0.061431885, 0.0037517548, -0.0026836395, -0.032165527, 0.009933472, 0.018844604, -0.028244019, -0.009887695, -0.027450562, -0.0062675476, -0.023742676, 0.028686523, 0.03363037, 0.03842163, -0.014137268, 0.042633057, -0.03466797, -0.005001068, -0.035461426, -0.03668213, 0.009307861, 0.013046265, 0.010879517, 0.00041246414, -0.051574707, 0.032958984, 0.009239197, -0.00041604042, 0.030014038, -0.040496826, 0.019897461, -0.007820129, 0.00010228157, -0.03930664, -0.045410156, -0.03656006, 0.009384155, 0.0073623657, 0.009941101, -0.030212402, 0.02557373, -0.01676941, 0.015808105, 0.007549286, 0.009376526, 6.7949295e-06, 0.024749756, -0.018630981, -0.06945801, -0.056549072, -0.018447876, -0.034973145, 0.0015497208, 0.025177002, -0.021362305, 0.04058838, 0.027862549, 0.016998291, 0.060455322, -0.004184723, 0.020553589, -0.028518677, 0.006752014, 0.030471802, -0.018295288, -0.003332138, -0.0041275024, -0.018051147, 0.016036987, 0.0011377335, -0.004611969, 0.00054883957, -0.0022239685, -0.010719299, -0.019012451, 0.0021324158, -0.017333984, -0.0012760162, 0.033050537, -0.040985107, 0.008071899, -0.029647827, -0.043823242, -0.0052490234, -0.018844604, -0.04244995, 0.052337646, 0.012664795, -0.0051727295, 0.03466797, -0.020736694, -0.03201294, -0.041809082, -0.00021576881, 0.0034866333, 0.03062439, 0.0075912476, 0.06451416, -0.025482178, -0.068359375, -0.048187256, 0.03564453, -0.061645508, -0.02444458, -0.06768799, 0.040222168, 0.032409668, 0.004119873, 0.0005040169, 0.05441284, -0.011100769, -0.007499695, -0.013595581, 0.011459351, -0.0069465637, 0.0075912476, 0.006587982, -0.036346436, -0.007320404, 0.010116577, -0.0057640076, 0.02986145, 0.0015859604, 0.018875122, -0.041778564, 0.012527466, -0.018722534, -0.03427124, -0.0034713745, 0.00050497055, 0.023162842, 0.029846191, -0.022537231, 0.010559082, 0.0035953522, -0.0003297329, 0.019622803, -0.012069702, 0.016311646, -0.051086426, -0.06274414, -0.039733887, -0.023422241, 0.051849365, 0.02798462, -0.000682354, 0.018463135, 0.032714844, -0.026473999, 0.018234253, 0.013252258, -0.0107040405, 0.002916336, 0.044677734, 0.013084412, 0.011497498, -0.012550354, -0.020431519, -0.07055664, -0.029129028, 0.006706238, 0.011489868, -0.03439331, -0.034942627, -0.01789856, 0.009590149, -0.0440979, -0.039276123, -0.042633057, 0.003293991, 0.020706177, 0.0013132095, 0.02947998, 0.0135269165, 0.03274536, 0.017364502, -0.028900146, 0.009010315, 0.026641846, -0.002105713, -0.03479004, 0.008155823, 0.006580353, 0.04559326, 0.0101623535, -0.057922363, -0.046661377, 0.036376953, 0.011680603, -0.028381348, 0.031341553, -0.01449585, 0.008834839, 0.023284912, -0.03955078, -0.012229919, 0.019180298, 0.059387207, -0.03152466, 0.010925293]}, "B01N01N50Z": {"id": "B01N01N50Z", "original": "Brand: Elementi\nName: Elementi Lunar Bowl Cast Concrete Fire Pit - LP\nDescription: A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the 'Lunar Bowl' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42\" x 42\" x 16\". Burner Ring Size: 12\" (Dia.). Burner Pan Size: 23.7\" Diameter (I.D.).\nFeatures: Model #: OFG101-LP\nBTUs (max): 45,000\nFuel Type: Liquid Propane\nBody construction: Glass fiber reinforced concrete\nOverall Dimensions: 42\" x 42\" x 16\"\n", "metadata": {"Name": "Elementi Lunar Bowl Cast Concrete Fire Pit - LP", "Brand": "Elementi", "Description": "A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the 'Lunar Bowl' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42\" x 42\" x 16\". Burner Ring Size: 12\" (Dia.). Burner Pan Size: 23.7\" Diameter (I.D.).", "Features": "Model #: OFG101-LP\nBTUs (max): 45,000\nFuel Type: Liquid Propane\nBody construction: Glass fiber reinforced concrete\nOverall Dimensions: 42\" x 42\" x 16\"", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.058441162, -0.0345459, -0.016479492, 0.010215759, -0.06298828, 0.018127441, -0.026657104, -0.0075035095, -0.04324341, -0.004966736, -0.023788452, -0.021499634, -0.019500732, -0.018432617, 0.019561768, -0.0836792, 0.017715454, -0.03656006, -0.0184021, -0.038604736, 0.013465881, -0.038208008, 0.023544312, 0.032989502, 0.0236969, -0.015838623, -0.033050537, -0.005168915, 0.021224976, 0.018661499, 0.005958557, 0.006210327, 0.014694214, 0.0209198, -0.040283203, -0.05078125, -0.013069153, 0.0030345917, -0.013336182, 0.00095272064, 0.01576233, -0.015151978, -0.012252808, 0.008094788, -0.042388916, -0.022628784, 0.0044670105, -0.010658264, 0.009498596, 0.015014648, -0.0025596619, 0.021560669, 0.010009766, 0.02671814, -0.00806427, -0.010505676, 0.017303467, 0.00073575974, 0.0005669594, 0.0044784546, 0.0072746277, 0.05819702, 0.010925293, 0.014404297, -0.038879395, 0.020812988, 0.014450073, -0.022506714, 0.08465576, -0.032287598, -0.028442383, 0.040039062, 0.01802063, -0.022201538, -0.014289856, -0.023452759, 0.026519775, -0.0070533752, 0.003271103, -0.0127334595, -0.048034668, 0.021331787, -0.04043579, -0.04928589, -0.012207031, -0.029418945, -0.038146973, 0.0003168583, 0.023803711, -0.070373535, 0.0022850037, -0.06097412, -0.01461792, 0.0574646, -0.0047569275, -0.040008545, -0.05026245, -0.08099365, 0.055633545, 0.019805908, 0.035095215, -0.033843994, -0.0034370422, 0.0047187805, -0.0035762787, 0.06121826, 0.005748749, 0.040496826, 0.021240234, 0.006603241, -0.0044517517, 0.013923645, -0.0074272156, -0.034484863, -0.0017166138, 0.013809204, -0.03515625, 0.014656067, 0.01789856, -0.02911377, -0.0054969788, -0.0020503998, 0.014274597, 0.025863647, -0.0013408661, 0.021469116, -0.0074272156, -0.02519226, -0.020965576, 0.050323486, -0.027877808, -0.017578125, 0.04827881, 0.03527832, -0.0041542053, -0.016860962, 0.013999939, 0.0027942657, 0.012306213, -0.020065308, 0.026138306, -0.017227173, 0.02482605, 0.018310547, -0.050811768, 0.038482666, 0.012954712, -0.029342651, -0.024887085, -0.0073013306, -0.067993164, -0.008300781, 0.0071144104, 0.014251709, 0.029876709, -0.007911682, 0.063964844, -0.024139404, -0.0073127747, -0.038726807, 0.011177063, 0.027557373, 0.043395996, 0.02935791, -0.023223877, -0.009994507, 0.00069618225, -0.018249512, 0.025466919, 0.06506348, 0.036956787, 0.030410767, 0.015899658, -0.00088500977, -0.012779236, -0.034210205, 0.017578125, 0.072265625, 0.055908203, -0.06750488, -0.047851562, -0.047576904, 0.13745117, -0.049743652, 0.01625061, 0.0018901825, 0.00579834, -0.055023193, -0.0079193115, -0.018188477, 0.040740967, 0.068603516, 0.0014677048, -0.044036865, -0.0116119385, -0.0104904175, -0.041534424, -0.016204834, -0.01525116, 0.07556152, 0.0085372925, 0.008926392, -0.05795288, 0.008544922, -0.030853271, -0.021102905, 0.015686035, 0.00034427643, 0.032348633, 0.07373047, -0.007522583, 0.03149414, -0.011665344, -0.021774292, -0.01576233, 0.0016431808, -0.012054443, 0.01108551, -0.013191223, 0.018875122, -0.014205933, -0.028823853, -0.015403748, -0.010147095, 0.020843506, -0.031311035, -0.01701355, -0.007843018, 0.040924072, -0.014320374, -0.005470276, 0.028320312, 0.008224487, 0.028442383, -0.018798828, 0.047058105, 0.055786133, 0.070007324, -0.025161743, -0.037994385, 0.0021781921, 0.02558899, -0.011833191, 0.053985596, 0.002439499, 0.0041389465, 0.025939941, 0.031143188, 0.008987427, 0.028182983, -0.04336548, -0.0016403198, 0.04788208, 0.0048599243, -0.002527237, 0.05432129, -0.045898438, -0.041290283, 0.018814087, 0.005592346, 0.011634827, 0.04067993, 0.0158844, 0.011100769, 0.060058594, 0.00025820732, 0.06317139, 0.05206299, -0.032836914, -0.021392822, 0.020996094, 0.07513428, 0.023452759, -0.0093307495, -0.09277344, -0.00856781, 0.009536743, 0.02746582, -0.038146973, -0.044799805, 0.0024337769, -0.005115509, -0.017990112, -0.008552551, 0.052825928, -0.021133423, -0.0033187866, -0.028244019, 0.036254883, 0.025497437, 0.020339966, 0.026779175, 0.0026359558, 0.02571106, 0.013031006, -0.011474609, -0.0082092285, -0.013572693, 0.023635864, -0.042755127, 0.014190674, 0.041503906, -0.026657104, 0.009994507, -0.004638672, -0.009292603, 0.039367676, -0.009208679, -0.0030231476, -0.0005135536, -0.044921875, 0.0131073, 0.018630981, -0.010063171, 0.020721436, 0.006969452, -0.008621216, 0.026809692, 0.008239746, 0.01977539, 0.0028743744, 0.03289795, -0.0017299652, -0.048431396, 0.027542114, 0.007549286, -0.08758545, -0.0029411316, -0.04989624, 0.02772522, 0.07836914, 0.00907135, 0.027908325, 0.011985779, 0.008255005, -0.0044021606, 0.022720337, 0.0015354156, -0.006542206, -0.043762207, -0.025634766, 0.009597778, 0.0074920654, -0.017211914, -0.0070114136, 0.0027656555, -0.019561768, 0.007446289, -0.044036865, -0.0062408447, -0.00029921532, -0.03302002, -0.012077332, 0.011306763, -0.002790451, -0.028793335, -0.007850647, -0.018325806, -0.023864746, -0.05166626, -0.034118652, -0.05227661, -0.06939697, 0.042388916, 0.055114746, 0.034942627, -0.038085938, 0.022460938, -0.047912598, -0.027389526, 0.05807495, -0.031280518, -0.03488159, -0.030914307, -0.049926758, -0.014717102, 0.06732178, -0.0028495789, -0.013465881, 0.04901123, -0.003736496, 0.014259338, -0.007419586, 0.01499939, 0.01651001, 0.004878998, -0.01058197, 0.0025348663, 0.012130737, 0.009941101, -0.006290436, -0.009567261, -0.011756897, -0.030349731, -0.004207611, 0.019332886, -0.030303955, -0.038604736, -0.0062446594, -0.025741577, -0.1295166, 0.009010315, 0.012535095, -0.040618896, 0.017959595, -0.04800415, -0.04260254, -0.05303955, -0.00042009354, 0.05709839, 0.005809784, -0.0014162064, 0.010276794, 0.017944336, -0.0055122375, -0.015960693, 0.024780273, 0.00037670135, -0.002336502, -0.022064209, 0.026855469, -0.038116455, 0.046142578, 0.02458191, -0.04260254, -0.00028419495, 0.0068588257, 0.043670654, -0.039245605, -0.0009765625, -0.005706787, -0.033813477, 0.006008148, 0.013755798, -0.00051641464, 0.049804688, -0.005874634, 0.0040130615, -0.005859375, -0.03451538, 0.028503418, 0.008071899, -0.010154724, 0.02607727, -0.010429382, -0.026519775, 0.0027866364, -0.0044517517, -0.024734497, -0.015312195, 0.002588272, 0.015792847, -0.012466431, -0.0019102097, -0.003004074, 0.0206604, 0.041107178, 0.059509277, -0.0027179718, 0.035705566, 0.040039062, -0.01625061, 0.027374268, 0.041229248, -0.010864258, 0.032928467, 0.012397766, 0.045837402, -0.013961792, 0.015281677, 0.043029785, -0.023117065, -0.0077400208, -0.003929138, 0.011360168, -0.014160156, 0.015991211, 0.02911377, -0.031433105, -0.01902771, -0.08709717, 0.028869629, -0.042816162, 0.03186035, 0.01108551, -0.009063721, 0.07537842, 0.056427002, -0.010528564, 0.04675293, -0.0065841675, 0.030639648, 0.0035743713, 0.035491943, -0.019592285, 0.03250122, -0.014312744, 0.044647217, -0.0038452148, -0.022857666, -0.027420044, -0.003578186, 0.015930176, 0.0028953552, -0.049743652, -0.014770508, 0.042144775, 0.018005371, 0.015792847, 0.002658844, 0.0074539185, -0.008529663, -0.012306213, 0.004917145, -0.03567505, -0.029754639, -0.0012111664, 0.010269165, -0.040924072, -0.0016269684, 0.016937256, -0.033203125, 0.058044434, 0.021331787, -0.04058838, 0.01461792, 0.029907227, -0.013374329, -0.029647827, 0.0073890686, -0.018051147, -0.015411377, 0.018371582, -0.0036735535, 0.050079346, 0.032562256, -0.000813961, 0.002199173, -0.008773804, -0.03050232, 0.0034618378, 0.042053223, 0.007820129, -0.0112838745, -0.0037937164, 0.005958557, 0.016235352, 0.010322571, -0.0055885315, -0.024917603, 0.0067977905, 0.040130615, -0.041259766, -0.013183594, -0.009483337, -0.03375244, -0.038146973, 0.013076782, 0.0050621033, 0.0033340454, -0.039520264, 0.020935059, -0.01600647, 0.02848816, 0.020324707, 0.038024902, -0.022018433, -0.02229309, 0.06994629, -0.09460449, 0.015975952, -0.042175293, 0.05456543, -0.022949219, 0.035247803, -0.0032653809, -0.023803711, -0.0025482178, 0.01033783, 0.040100098, 0.0039787292, 0.033294678, -0.02243042, -0.01210022, -0.047851562, -0.022766113, 0.041229248, -0.020629883, -0.049926758, -0.047698975, 0.042388916, 0.0036697388, 0.0073661804, -0.0115737915, 0.011695862, -0.014923096, 0.027359009, -0.035217285, -0.012245178, 0.010902405, -0.048980713, 0.009384155, -0.0065956116, -0.016098022, 0.0725708, 0.0569458, 0.0022392273, -0.0010204315, 0.003686905, 0.0074539185, 0.0027256012, 0.020019531, -0.03366089, -0.0020008087, -0.024108887, -0.010826111, -0.023025513, 0.053253174, -0.008651733, -0.014793396, 0.017486572, 0.0015411377, 0.023132324, -0.033294678, -0.05517578, -0.002538681, 0.01789856, -0.050628662, -0.04547119, 0.05480957, -0.0154953, 0.022354126, -0.017547607, -0.034484863, 0.006248474, 0.017700195, -0.0049819946, -0.00349617, -0.016983032, -0.017486572, -0.011047363, 0.038208008, 0.026855469, -0.0051956177, 0.043823242, -0.03314209, -0.0073623657, 0.0065460205, -0.015457153, -0.007507324, -0.025375366, -0.009132385, 0.011375427, -0.018081665, -0.028686523, 0.011199951, -0.0039863586, 0.040374756, 0.0065078735, 0.014511108, -0.042938232, 0.028579712, -0.035491943, -0.025482178, 0.0011415482, 0.003479004, 0.0112838745, 0.015777588, -0.006828308, -0.007461548, -0.016433716, 0.013175964, 0.039642334, 0.018005371, 0.03842163, -0.022613525, 0.01713562, -0.0077781677, -0.015052795, -0.02798462, -0.00274086, 0.015808105, 0.049468994, 0.00039815903, -0.0423584, 0.034179688, -0.04977417, -0.0072784424, -0.008308411, 0.066223145, -0.048065186, -0.013389587, 0.03881836, -0.0055236816, -0.06591797, -0.014266968, -0.020080566, 0.0067329407, 0.02178955, -0.04446411, 0.006801605, 0.017730713, -0.041137695, 0.012054443, 0.058380127, 0.019241333, -0.010688782, -0.07849121, 0.050994873, 0.0005774498, -0.02406311, 0.04663086, 0.02998352, 0.013786316, -0.07537842, -0.012992859, 0.01071167, -0.011634827, -0.008651733, 0.0949707, -0.017501831, -0.010498047, -0.009681702, 0.011123657, 0.022277832, 0.00018548965, -0.06427002, 0.017120361, -0.0039253235, -0.021499634, -0.003490448, -0.025131226, 0.011940002, -0.021255493, -0.038360596, -0.01826477, 0.06738281, -0.035003662, -0.024551392, 0.051971436, 0.00055217743, 0.01739502, 0.01953125, -0.02078247, -0.00063180923, -0.010650635, 0.014892578, -0.078430176, 0.0060539246, 0.011398315, 0.038238525, -0.040924072, -0.06451416, -0.039245605, 0.03778076, 0.034088135, 0.020385742, -0.034484863, -0.08703613, 0.016677856, -0.06225586, -0.0037994385, 0.008079529, 0.048858643, 0.018249512, 0.042266846, -0.005241394, 0.05718994, 0.006160736, 0.0058059692, -0.018157959, 0.0005059242, -0.020767212, -0.03253174, 0.03161621, 0.021942139, -0.044158936, 0.022232056, 0.031799316, -0.00049877167, 0.00806427, 0.005558014, 0.05831909, 0.009819031, -0.018127441, 0.01838684, 0.07324219, 0.013473511, 0.03112793, 0.049957275, 0.0390625, -0.0026855469, 0.03869629, 0.0023937225, 0.039733887, 0.00090408325, -0.03668213, -0.0013427734, 0.017318726, -0.026428223, -0.024719238, -0.033843994, 0.024917603, 0.04748535, 0.0021915436, 0.034301758, -0.024398804, 0.07550049, 0.01977539, -0.008506775, 0.0038166046, -0.0099487305, 0.0037212372, -0.033355713, 0.0045776367, 0.017913818, -0.03050232, -0.009269714, 0.0030174255, -0.010848999, -0.006175995, 0.028823853, 0.013931274, 0.023284912, -0.045562744, 0.051574707, -0.013748169, -0.08026123, 0.001036644, -0.021865845, -0.0018568039, 0.0102005005, -0.008232117, 0.0026054382, 0.0069351196, -0.011451721, -0.001914978, 0.05847168, -0.00064229965, -0.0014820099, 0.028381348, -0.03414917, 0.032348633, -0.0074920654, -0.005004883, -0.016418457, -0.01626587, -0.0023975372, -0.01991272, -0.020324707, 0.05230713, -0.053955078, -0.020599365, -0.01374054, 0.022064209, -0.035614014, 0.04168701, -0.02458191, -0.03137207, -0.004180908, 0.0063209534, -0.008987427, -0.009887695, -0.0022411346, 0.04324341, -0.043884277, 0.0010414124, -0.021514893, -0.044403076, -0.06878662, 0.017410278, 0.0016613007, -0.024032593, -0.002105713, -0.014038086, 0.007019043, 0.01159668, 0.0019245148, 0.020019531, -0.02658081, -0.014862061, -0.05810547, -0.004142761, -0.06414795, -0.02368164, -0.027740479, 0.032684326, -0.02645874, -0.027572632, -0.0008511543, -0.011528015, -0.00070619583, 0.029266357, 0.01663208, 0.03656006, 0.027648926, 0.0023441315, 0.009010315, -0.026535034, 0.006126404, -0.0075035095, -0.0104522705, 0.011985779, -0.0068626404, -0.008598328, -0.006793976, -0.009819031, -0.03567505, 0.0074768066, -0.039611816, 0.005744934, -0.00030255318, -0.04824829, -0.027053833, 0.012512207, -0.011222839, -0.04144287, -0.031829834, 0.010528564, 0.04727173, -0.0052452087, 0.034332275, 0.018310547, -0.029586792, -0.07647705, -0.0008611679, -0.009185791, 0.0058555603, 0.04397583, -0.01876831, -0.00082588196, 0.011001587, 0.038208008, 0.0015230179, 0.053344727, -0.013885498, 0.009513855, 0.0007328987, -0.022521973, 0.03567505, 0.023468018, 0.0004146099, 0.011741638, -0.00012087822, -5.2154064e-05, 0.0140686035, 0.038360596, -0.0013017654, -0.09857178, -0.052490234, -0.07574463, -0.0037612915, 0.024993896, -0.040618896, 0.039245605, -0.004055023, -0.0770874, 0.03543091, 0.015625, 0.056671143, 0.012969971, -0.041229248, -0.003107071, -0.017166138, 0.007534027, -0.015068054, 8.058548e-05, -0.0076942444, 0.0019741058, -0.05407715, 0.030700684, -0.028335571, -0.018936157, -0.043548584, -0.009513855, 0.02897644, 0.01902771, -0.03152466, 0.006126404, -0.017547607, -0.026443481, 0.025482178, 0.009963989, -0.0115737915, -0.03274536, 0.07086182, -0.04144287, -0.009750366, -0.035247803, 0.052459717, 0.020858765, -0.07727051, -0.025909424, -0.06524658, -0.010238647, 0.051849365, -0.034454346, 0.08325195, -0.06439209, -0.014038086, -0.047332764, 0.011039734, 0.02583313, -0.009124756, -0.03704834, 0.044830322, 0.027694702, 0.078552246, -0.014274597, -0.0446167, -0.0390625, 0.049865723, -0.00083732605, -0.0041389465, 0.030563354, -0.021987915, 0.002664566, 0.0076560974, -0.08795166, -0.022094727, -0.0064353943, 0.045013428, -0.053955078, 0.0067443848]}, "B07YHC58TG": {"id": "B07YHC58TG", "original": "Brand: SHINESTAR\nName: SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill\nDescription: Description:
      Replace short regulator hose kit on gas appliance.
      Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
      12ft long enough to put the propane tank where needed with length to spare.
      Added protection of the stainless steel braided around the hose.
      Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
      Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

      Feature:
      Hose Length: 12 Feet
      Connection: Acme nut (QCC) x 3/8'' Female Flare Fitting
      Outlet Pressure:11\" W.C.
      Flow Capacity: 80,000 BTU/Hr
      Length: 12 feet /144 inch

      NOTE:
      FULLY TIGHTENED at both sides of hose before using to prevent leakage.
      To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      Keeping the hose away from HIGH TEMPERATURE.
      For Outdoor Use Only.
      \nFeatures: \u3010Perfect Upgrade\u3011The attached propane gauge can detect dangerous leaks and read fuel level at glance\n\u3010More Durable\u3011Stainless braided hose prevents whatever animals from chewing through your hose\n\u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Control Gas Flow\u3011The regulator Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n", "metadata": {"Name": "SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill", "Brand": "SHINESTAR", "Description": "Description:
      Replace short regulator hose kit on gas appliance.
      Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
      12ft long enough to put the propane tank where needed with length to spare.
      Added protection of the stainless steel braided around the hose.
      Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
      Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

      Feature:
      Hose Length: 12 Feet
      Connection: Acme nut (QCC) x 3/8'' Female Flare Fitting
      Outlet Pressure:11\" W.C.
      Flow Capacity: 80,000 BTU/Hr
      Length: 12 feet /144 inch

      NOTE:
      FULLY TIGHTENED at both sides of hose before using to prevent leakage.
      To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      Keeping the hose away from HIGH TEMPERATURE.
      For Outdoor Use Only.
      ", "Features": "\u3010Perfect Upgrade\u3011The attached propane gauge can detect dangerous leaks and read fuel level at glance\n\u3010More Durable\u3011Stainless braided hose prevents whatever animals from chewing through your hose\n\u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Control Gas Flow\u3011The regulator Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04147339, -0.009407043, -0.06021118, -0.024429321, -0.016662598, -0.017547607, -0.014572144, 0.028518677, -0.012908936, 0.02128601, -0.044189453, 0.019729614, -0.0018615723, -0.011306763, 0.011383057, -0.04864502, 0.0129470825, 0.04083252, 0.02331543, -0.0041618347, -0.009284973, 0.006340027, -0.019989014, 0.072753906, 0.011444092, 0.01878357, 0.064819336, 0.01109314, 0.025863647, 0.016555786, 0.024093628, -0.066223145, 0.04562378, 0.0010070801, -0.047027588, -0.078430176, -0.012634277, -0.01576233, -0.047058105, 0.0059547424, 0.012832642, -0.019927979, -0.017028809, -0.004009247, -0.007965088, -0.036499023, 0.010726929, -0.049865723, 0.021743774, -0.021942139, -0.004634857, 0.048339844, 0.005706787, -0.03552246, -0.010238647, -0.009735107, -0.002380371, -0.008865356, 0.0016040802, 0.022613525, 0.00920105, 0.037078857, -0.00579834, 0.00027656555, -0.014984131, -0.0078086853, 0.07318115, -0.0037326813, -0.008460999, -0.015586853, 0.022399902, 0.024765015, -0.0027179718, -0.016693115, -0.040618896, 0.027038574, 0.013290405, -0.0026779175, 0.010063171, -0.0052452087, -0.016235352, -0.045196533, 0.0335083, 0.011993408, 0.0068511963, 0.029846191, -0.025344849, -0.0034236908, -0.038879395, -0.03591919, -0.02507019, -0.0020523071, -0.02558899, -0.005558014, -0.04244995, 0.003917694, -0.0076141357, -0.06451416, 0.038116455, -0.004459381, 0.023468018, -0.038360596, 0.007522583, 0.009101868, 0.015563965, 0.09069824, -0.0039100647, -0.018066406, 0.009841919, -0.0088272095, 0.008605957, -0.007896423, -0.010482788, -0.04019165, -0.014633179, 0.04385376, 0.008293152, -0.027709961, 0.0013093948, -0.0390625, -0.016723633, -0.013465881, 0.017929077, -0.039611816, 0.016113281, -0.0026512146, -0.02470398, -0.002658844, -0.059295654, 0.003742218, -0.0107803345, 0.011268616, 0.059539795, 0.09515381, 0.026290894, -0.010604858, 0.011917114, 0.0118255615, 0.036590576, -0.012748718, -0.008163452, -0.031158447, 0.00091028214, 0.021881104, 0.00055742264, 0.032196045, 0.012817383, -0.009544373, 0.00440979, -0.029815674, -0.014404297, -0.03491211, 0.03479004, 0.031829834, -0.06100464, 0.0037498474, 0.006439209, -0.010169983, -0.020355225, -0.059753418, -0.037261963, -0.028747559, 0.004497528, -0.015167236, -0.052490234, 0.037017822, 0.008132935, -0.011787415, 0.025894165, 0.09136963, 0.0041046143, 0.016983032, 0.023223877, 0.003074646, -0.013656616, -0.034301758, -0.038238525, 0.057434082, 0.078186035, -0.16015625, -0.07745361, -0.049987793, 0.1303711, -0.040039062, 0.010215759, -0.03982544, 0.021591187, -0.018157959, -0.011558533, 0.024536133, 0.021087646, 0.028305054, 0.018356323, -0.03982544, 0.03387451, 0.0066833496, -0.025268555, 0.0030899048, -0.0024757385, -0.012962341, -0.042663574, 0.029800415, -0.023452759, 0.021850586, 0.041412354, -0.0011081696, 0.011207581, 0.022094727, 0.022155762, 0.01939392, -0.00038146973, -0.008087158, -0.008659363, -0.023788452, -0.03152466, -0.0090789795, 0.0082092285, -0.04547119, 0.020370483, -0.040283203, 0.07196045, 0.035980225, 0.026321411, 0.04055786, -0.01386261, 0.0030212402, -0.024871826, 0.00818634, -0.025741577, 0.005458832, 0.00680542, 0.033233643, 0.074645996, 0.015136719, -0.03970337, 0.029159546, 0.05328369, 0.04071045, -0.04360962, 0.005558014, 0.018478394, -0.048797607, -0.046447754, -0.010017395, -0.008766174, -0.06414795, -0.016418457, 0.010528564, -0.018615723, 0.04748535, 0.042114258, 0.0124053955, 0.01739502, 0.017105103, -0.04550171, 0.023788452, -0.0025100708, 0.031311035, -0.04272461, 0.03741455, -0.024307251, 0.014701843, 0.024246216, -0.021835327, 0.02658081, 0.014968872, 0.035583496, 0.0184021, -0.022583008, 0.005882263, 0.004627228, 0.014228821, -0.0013952255, -0.03048706, -0.057739258, 0.012382507, -0.03390503, 0.056915283, -0.03390503, -0.032104492, 0.010543823, 0.007904053, -0.0012636185, -0.0030498505, 0.025894165, 0.034851074, 0.0135650635, 0.009544373, 0.025497437, -0.0076065063, 0.048034668, -0.029296875, -0.02734375, 0.026168823, -0.025939941, -0.052520752, 0.02078247, -0.002483368, 0.012374878, -0.009803772, 0.0034923553, 0.05493164, -0.011169434, 0.010414124, 0.010406494, -0.029815674, 0.023956299, 0.014526367, -0.0007882118, -0.017410278, -0.036193848, 0.022827148, 0.017089844, -0.008888245, 0.036956787, 0.017608643, -0.0041160583, 0.043945312, 0.046203613, 0.07196045, -0.02168274, -0.00086545944, -0.0037117004, -0.003917694, 0.018692017, -0.00041246414, -0.016784668, -0.0024108887, -0.018997192, 0.014099121, 0.0317688, 0.0045318604, 0.020065308, 0.044433594, 0.012123108, 0.0023555756, -0.0035305023, 0.02861023, -0.014350891, -0.040618896, -0.011672974, -0.035858154, 0.0102005005, 0.011993408, -0.07373047, -0.014976501, 0.049835205, 0.0040130615, -0.019332886, -0.017807007, 0.04562378, -0.020401001, 0.0011444092, -0.03515625, 0.0146484375, -0.013000488, -0.01689148, -0.03112793, 0.006576538, -0.061309814, -0.03189087, -0.047302246, -0.083862305, -0.036468506, 0.0871582, 0.023620605, -0.050872803, -0.032043457, 0.007896423, 0.004142761, 0.014335632, -0.024169922, -0.042877197, -0.006904602, 0.008338928, 0.0019817352, 0.027328491, -0.019760132, 0.045715332, 0.030227661, 0.025100708, 0.032714844, -0.009780884, 0.014778137, 0.03086853, 0.026916504, 0.07098389, 0.038269043, 0.023712158, -0.03579712, 0.004322052, 0.020599365, -0.04083252, -0.0026130676, -0.019241333, -0.021255493, -0.008308411, 0.01008606, -0.053619385, 0.0011968613, -0.081604004, 0.03488159, -0.008384705, 0.0022201538, -0.0017976761, -0.10321045, -0.032043457, -0.06555176, 0.017578125, 0.036010742, 0.004322052, 0.0017490387, -0.023132324, 0.025375366, -0.015075684, -0.007980347, -0.0524292, -0.004512787, -0.040130615, 0.03564453, 0.07330322, -0.11791992, 0.017333984, 0.040496826, -0.035339355, -0.035064697, 0.008308411, 0.019821167, -0.013420105, 0.04397583, -0.007583618, -0.007083893, -0.04550171, -0.029800415, 0.0066184998, -0.010467529, 0.017837524, -0.032592773, 0.034606934, -0.008644104, -0.06262207, -0.04458618, -0.002002716, 0.008399963, 0.002325058, -0.011749268, -0.04812622, -0.035064697, 0.0021362305, -0.036315918, 0.0030174255, 0.009315491, 0.026123047, 0.027160645, -0.0129470825, 0.05987549, 0.017028809, 0.05102539, 0.011421204, 0.019302368, 0.023742676, -0.036346436, 0.04647827, 0.026168823, 0.010635376, -0.018341064, 0.01083374, 0.03274536, 0.04055786, -0.028640747, 0.0076446533, 0.036956787, -0.0061149597, -0.005092621, -0.00095653534, 0.022659302, 0.0049705505, -0.037109375, 0.051696777, 0.015991211, -0.039276123, 0.020751953, -0.093322754, 0.056365967, 0.020065308, -0.016479492, 0.038269043, 0.008148193, 0.0067367554, 0.04748535, 0.041778564, 0.0023460388, 0.030334473, 0.044006348, -0.0052948, 0.003709793, 0.0044059753, -0.03326416, 0.03768921, 0.0024280548, -0.0042266846, 0.0069732666, -0.009094238, -0.07348633, -0.036743164, 0.015731812, 0.028213501, -0.0071525574, 0.0019817352, -0.035583496, -0.008102417, -0.044708252, -0.02053833, 0.012565613, -0.030685425, -0.030838013, 0.018859863, -0.033843994, -0.007549286, 0.013183594, 0.010787964, -0.028259277, 0.020431519, 0.026123047, 0.008132935, 0.0075416565, -0.017745972, -6.777048e-05, -0.015419006, 0.0029087067, 0.019836426, 0.0126571655, -0.020599365, -0.026763916, 0.017440796, -0.020217896, -0.02798462, 0.056488037, -0.0012969971, -0.05935669, -0.043945312, -0.028564453, 0.019378662, -0.020584106, -0.01928711, -0.058532715, -0.0004181862, 0.019882202, -0.025512695, 0.0019741058, 0.017974854, 0.00844574, -0.053100586, -0.03656006, -0.038330078, 0.019012451, -0.036132812, 0.0049095154, 0.010116577, 0.0031909943, -0.018844604, 0.028564453, -0.067871094, 0.022262573, -0.060028076, -0.0019836426, 0.049560547, 0.027542114, -0.022857666, 0.0013246536, -0.014259338, 0.020095825, 0.03161621, -0.032104492, 0.007659912, -0.03643799, -0.01309967, 0.0149383545, 0.026748657, 0.03869629, -0.005203247, 0.0061683655, -0.024871826, -0.011817932, -0.085754395, 0.009643555, 0.04623413, -0.052337646, -0.0513916, -0.024551392, 0.08337402, 0.006378174, 0.034698486, 0.032928467, -0.0064697266, -0.0184021, -0.02406311, -0.074401855, 0.020141602, -0.013084412, -0.030685425, 0.006362915, -0.017059326, -0.008712769, 0.06878662, 0.06695557, 0.022994995, -0.009544373, 0.006225586, -0.0007381439, -0.007698059, -0.010093689, -0.019760132, 0.029022217, -0.036468506, -0.010223389, -0.039794922, 0.055664062, 0.029006958, -0.023345947, -0.003932953, -0.020309448, -0.017456055, -0.059173584, -0.00054740906, 0.0034255981, 0.044891357, 0.013870239, -0.02279663, 0.015319824, -0.01309967, -0.008735657, -0.010864258, 0.027923584, -0.012016296, -0.054382324, -0.009742737, -0.057739258, 0.011764526, 0.024429321, -4.887581e-06, -0.011810303, -0.050231934, 0.008110046, 0.037963867, -0.019821167, -0.0057258606, 0.0067863464, -0.0026683807, -0.0054779053, -0.000279665, -0.009628296, -0.025177002, -0.013549805, 0.015602112, -0.0154418945, 0.025421143, 0.032562256, 0.0027923584, -0.028625488, -0.028503418, 0.0035591125, 0.00023305416, -0.056427002, -0.008522034, -0.0073394775, 0.009231567, 0.026397705, -0.026016235, 0.023788452, 0.012496948, -0.039642334, 0.02645874, -0.015182495, -0.008598328, -0.031173706, 0.09820557, 0.0060043335, 0.03466797, -0.0847168, 0.0014371872, -0.046447754, 0.040252686, 0.01386261, -0.035095215, 0.00056886673, -0.036132812, 0.0065231323, 0.017791748, -0.024902344, -0.053771973, -0.020385742, -0.0014543533, -0.04916382, 0.011764526, 0.028396606, -0.00667572, 0.026275635, 0.040283203, -0.059387207, 0.040405273, 0.029266357, -0.06958008, -0.015792847, -0.0119018555, 0.001906395, -0.015487671, -0.032287598, 0.015960693, 0.013435364, -0.013954163, -0.01637268, 0.01826477, 0.016586304, -0.039611816, -0.010910034, -0.014259338, -0.0030059814, -0.029174805, 0.050567627, -0.014945984, -0.042510986, -0.016830444, 0.03164673, 0.01751709, -0.019058228, -0.042266846, -0.0010757446, -0.020706177, -0.021759033, 0.033050537, -0.024673462, 0.056274414, -0.0079574585, -0.048095703, -0.049072266, 0.022476196, -0.022888184, -0.06036377, 0.07354736, 0.06109619, 0.0007505417, 0.010650635, -0.011108398, -0.015357971, -0.0009560585, 0.002117157, -0.022354126, -0.05126953, -0.030776978, -0.018234253, 0.008163452, -0.030670166, -0.021896362, 0.06112671, 0.004486084, -0.015296936, -0.051361084, -0.035217285, 0.014663696, -0.020523071, 0.010734558, -0.010543823, -0.010032654, -0.006855011, 0.010940552, -0.05215454, -0.046875, 0.0019779205, 0.010177612, -0.013786316, 0.034820557, 0.006652832, 0.032409668, -0.041381836, -0.027435303, 0.026916504, -0.028442383, -0.0054626465, 0.009994507, -0.01737976, 0.056732178, -0.043945312, 0.0029315948, 0.013496399, 0.0015268326, 0.009613037, -0.014770508, -0.060028076, -0.055847168, 0.03050232, 0.050964355, 0.0104522705, 0.044708252, 0.022583008, -0.033599854, -0.0077552795, -0.008033752, -0.028686523, -0.052337646, -0.009460449, -0.025344849, -0.035858154, 0.008674622, -0.031829834, 0.021194458, -0.025360107, 0.021606445, -0.035064697, 0.03933716, -0.017913818, -0.015182495, 0.04748535, -0.031311035, 0.052856445, -0.03704834, 0.017730713, 0.016082764, 0.0061073303, -0.037078857, -0.008384705, 0.03274536, 0.028213501, -0.019104004, -0.009475708, 0.009757996, 0.029708862, -0.048675537, 0.005722046, 0.0018157959, -0.00018572807, -0.011962891, -0.020980835, -0.01008606, -0.020767212, 0.033599854, 0.022613525, 0.04446411, -0.027313232, 0.043640137, -0.029769897, 0.0055274963, -0.04208374, -0.031066895, -0.006175995, 0.0061798096, 0.0017251968, 0.012313843, -0.02456665, 0.023117065, 0.022460938, -0.008705139, 0.011375427, -0.024246216, 0.021728516, -0.006877899, -0.010322571, -0.044952393, -0.039215088, -0.0116119385, 0.01360321, -0.015419006, 0.0010633469, -0.0007882118, 0.03137207, 0.00034713745, 0.0107421875, 0.015853882, -0.01953125, 0.0067596436, 0.021621704, -0.025268555, -0.060577393, -0.03274536, -0.01084137, -0.03125, 0.0024433136, 0.03515625, 0.003929138, 0.049835205, 0.029663086, -0.004814148, 0.05407715, 0.0104599, 0.017074585, -0.027618408, 0.01663208, 0.018447876, -0.048095703, -0.009841919, -0.008850098, -0.011207581, 0.026245117, -0.00013911724, -0.035369873, -0.028503418, 0.005859375, -0.0037326813, -0.01259613, -0.019927979, -0.00055122375, -0.0066337585, 0.042114258, -0.030288696, 0.0070343018, -0.041503906, -0.070129395, -0.015823364, -0.019195557, -0.0552063, 0.062408447, -0.001698494, -0.030303955, 0.0038967133, -0.0032844543, -0.05267334, -0.042785645, -0.020629883, 0.009544373, 0.03161621, -0.0032978058, 0.045440674, -0.0031547546, -0.049682617, -0.043945312, 0.021118164, -0.03579712, 0.011039734, -0.039764404, 0.048736572, 0.031341553, 0.011558533, 0.041107178, 0.041870117, 0.026016235, 0.008087158, -0.00374794, -0.016784668, -0.0050315857, 0.008560181, 0.001958847, -0.015792847, -0.035980225, 0.0065612793, -0.0015964508, 0.0014123917, 0.032165527, 0.0007305145, -0.03717041, -0.0039749146, -0.020950317, -0.027893066, -0.02557373, 0.020065308, 0.013328552, 0.02609253, -0.014007568, 0.008560181, 0.025344849, -0.009307861, 0.04019165, -0.008132935, 0.023849487, -0.017791748, -0.037719727, -0.026565552, -0.011985779, 0.017700195, 0.0340271, -0.026153564, -0.019073486, 0.009101868, -0.015289307, 0.007762909, 0.014472961, 0.008895874, 0.037841797, 0.04248047, 0.022872925, 0.015853882, -0.04699707, -0.017501831, -0.052886963, -0.0803833, -0.0009379387, 0.007888794, -0.026473999, -0.027236938, -0.033203125, 0.019729614, -0.02520752, -0.049072266, -0.053466797, -0.032165527, 0.036071777, 0.011779785, 0.0070533752, 0.0011997223, 0.032165527, 0.016204834, -0.030044556, 0.0062828064, 0.024307251, -0.0072517395, -0.035217285, 0.006549835, -0.0048446655, 0.0513916, -0.011016846, -0.054718018, -0.033233643, 0.012817383, -0.0042800903, -0.0034065247, 0.034606934, -0.02772522, -0.0032863617, 0.05267334, -0.047180176, -0.03463745, 0.0043182373, 0.080078125, 0.0017127991, 0.004020691]}, "B01GZPBCPU": {"id": "B01GZPBCPU", "original": "Brand: DOZYANT\nName: DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8\" Female Flare Nut, 2 Feet\nDescription: \nFeatures: Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8\" Female Flare swivel nut which has an outside diameter of 5/8\" In order to accommodate for the flare seat\nReplacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill.\nEasy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator.\nSafety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels\nFits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application\n", "metadata": {"Name": "DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8\" Female Flare Nut, 2 Feet", "Brand": "DOZYANT", "Description": "", "Features": "Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8\" Female Flare swivel nut which has an outside diameter of 5/8\" In order to accommodate for the flare seat\nReplacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill.\nEasy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator.\nSafety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels\nFits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010787964, 0.008361816, -0.019454956, -0.043304443, -0.0031013489, -0.0010566711, -0.02507019, 0.0048713684, -0.03225708, 0.04434204, 0.0012683868, 0.050628662, 0.017181396, -0.018234253, 0.018508911, -0.00983429, -0.0021915436, -0.005542755, -0.029769897, -0.04296875, -0.009185791, -0.019805908, -0.037261963, 0.03982544, 0.046142578, -0.008415222, 0.020095825, 0.01763916, 0.02810669, 0.00233078, 0.03866577, -0.022857666, 0.026473999, 0.03074646, -0.05621338, -0.069885254, -0.020767212, 0.004207611, -0.048034668, 0.02760315, 0.01550293, -0.026321411, -0.030044556, 0.021957397, -0.034820557, -0.021911621, -0.0014848709, -0.030838013, 0.023925781, 0.019454956, 0.008880615, 0.02619934, 0.02154541, 0.010658264, -0.01725769, -0.010917664, -0.019042969, -0.046905518, 0.01574707, 0.026626587, 0.024978638, -0.0055656433, 0.0014514923, -0.008148193, -0.0018072128, 0.00012290478, 0.05645752, 0.007965088, -0.024780273, -0.026382446, 0.003370285, 0.022705078, 0.0066986084, 0.0016269684, -0.03274536, -0.027755737, 0.030426025, -0.03427124, 0.022003174, 0.013885498, 0.036132812, -0.0065956116, 0.09295654, 0.01512146, -0.0041160583, 0.020599365, -0.008918762, -0.015533447, -0.02684021, -0.051483154, -0.020370483, -0.013908386, -0.050476074, 0.0028762817, -0.017105103, -0.02015686, -0.006690979, -0.03652954, 0.0029735565, 0.01524353, 0.0129852295, -0.032348633, 0.03125, 0.00034546852, 0.019515991, 0.072509766, -0.012680054, 0.02684021, 0.029388428, -0.00033020973, 0.008071899, -0.032104492, -0.031585693, -0.059661865, -0.010810852, 0.059387207, -0.0045433044, -0.004585266, 0.030548096, -0.010246277, -0.017730713, -0.008270264, 0.052124023, -0.04269409, -0.0019626617, -0.007259369, -0.024841309, -0.023452759, -0.06378174, -0.022369385, -0.019302368, 0.01914978, 0.06124878, 0.095458984, 0.022506714, -0.010131836, 0.040496826, 0.035980225, 0.018447876, -0.0082473755, 0.02897644, -0.014801025, -0.010818481, 0.035186768, -0.021240234, 0.008026123, -0.003194809, 0.034332275, 0.01739502, -0.044677734, 0.016235352, -0.047058105, 0.07287598, 0.0004069805, -0.08306885, 0.01109314, -0.011024475, -0.015106201, -0.060821533, -0.056610107, -0.00081539154, -0.03186035, -0.014404297, -0.028274536, -0.039978027, 0.047454834, -0.0065689087, -0.015419006, 0.029663086, 0.06506348, 0.0031108856, 0.005443573, 0.07293701, 0.018676758, -0.023590088, -0.00198555, -0.027908325, 0.06762695, 0.07849121, -0.11968994, -0.048858643, -0.042785645, 0.1071167, -0.021118164, 0.021865845, -0.0069122314, 0.014076233, -0.019851685, -0.01586914, 0.014526367, -0.0051956177, 0.060577393, 0.027618408, -0.04385376, -0.008705139, 0.007926941, 0.0077552795, 0.028121948, -0.012168884, 0.007648468, -0.002565384, 0.025970459, -0.0060195923, 0.0039711, 0.012535095, -0.0045433044, -0.005756378, 0.025222778, 0.02268982, 0.056884766, 0.0070648193, 0.024475098, -0.021759033, -0.022521973, -0.013511658, 0.008796692, -0.022369385, -0.009254456, 0.016693115, 0.017608643, 0.04949951, 0.013893127, 0.022140503, 0.0019159317, 0.044677734, -0.012527466, -0.025756836, -0.025390625, 0.030273438, -0.0018911362, -0.00919342, 0.037200928, 0.053466797, 0.014251709, -0.030792236, 0.044769287, 0.05987549, 0.0413208, -0.04550171, -0.00045228004, 0.021224976, -0.015312195, -0.025405884, -0.0013370514, -0.010429382, -0.05218506, 0.008262634, -0.011451721, -0.034484863, 0.017807007, 0.042114258, 0.014442444, 0.011817932, 0.0036907196, -0.05657959, 0.028366089, -0.012619019, 0.0178833, -0.042236328, 0.0062294006, -0.009681702, -0.009048462, -0.007827759, -0.010383606, 0.020050049, 0.015464783, 0.023773193, 0.010093689, -0.013717651, 0.005367279, 0.008613586, -0.025726318, 0.0038032532, -0.0023899078, -0.018432617, 0.012619019, -0.017684937, 0.019256592, 0.013374329, -0.005180359, 0.015991211, 0.028259277, 0.023727417, -0.006462097, 0.01739502, 0.030776978, 0.007926941, 0.0037765503, 0.03074646, -0.023101807, 0.03237915, -0.03010559, -0.021087646, 0.029418945, -0.024520874, -0.04916382, 0.060791016, 0.024124146, -0.0016489029, 0.01423645, 0.008041382, 0.03765869, -0.014587402, 0.0041618347, 0.02822876, -0.011222839, 0.028259277, 0.002626419, 0.01965332, 0.020401001, -0.031219482, 0.05142212, 0.031982422, -0.01473999, 0.052947998, 0.026138306, 0.0067253113, 0.035125732, 0.02192688, 0.0082473755, -0.02406311, -0.032806396, 0.007633209, -0.03552246, 0.004169464, 0.0006866455, -0.033569336, 0.021713257, -0.012680054, 0.00957489, -0.022018433, -0.023010254, -0.010467529, 0.009414673, -0.002254486, -0.01209259, 0.0033073425, 0.008872986, -0.008842468, -0.056854248, -0.0057640076, -0.08001709, 0.0024223328, 0.032409668, -0.044921875, -0.031585693, 0.04623413, 0.00034689903, -0.028366089, -0.017791748, 0.026473999, -0.014450073, 0.011428833, 0.0051345825, 0.040222168, -0.0067863464, -0.0357666, -0.026260376, 0.021530151, -0.06866455, -0.00945282, -0.01725769, -0.05053711, 0.008026123, 0.046844482, -0.007797241, -0.029006958, -0.011764526, 0.020462036, 0.028442383, 0.0061950684, 5.5134296e-05, -0.029220581, -0.0011806488, 0.018997192, -0.024291992, 0.06088257, -0.0096588135, -0.0028572083, 0.032562256, -0.008506775, 0.005432129, -0.0054473877, 0.0031147003, -0.0016679764, 0.02998352, 0.052124023, 0.018814087, 0.019638062, -0.03729248, 0.019348145, 0.048858643, -0.008369446, -0.0051116943, 0.005504608, 0.0039482117, 0.018630981, -0.02520752, -0.02909851, -0.035095215, -0.056793213, 0.00073957443, 0.010879517, -0.0178833, -0.013748169, -0.08502197, -0.05041504, -0.033966064, 0.02218628, 0.03967285, -0.025238037, 0.048309326, -0.009025574, 0.017349243, -0.03527832, 0.02041626, -0.05886841, -0.0038108826, -0.04006958, 0.03262329, 0.05831909, -0.09112549, 0.013320923, 0.04196167, -0.0039367676, 0.0015592575, 0.026473999, 0.019866943, 0.014877319, 0.0072898865, 0.007129669, -0.022644043, -0.054901123, 0.0033798218, 0.00029110909, 0.048919678, 0.04220581, -0.021347046, 0.054260254, -0.024932861, -0.05206299, -0.04345703, -0.016662598, 0.036987305, -0.017684937, -0.0017614365, -0.056396484, -0.058288574, -0.026947021, -0.035095215, -0.01109314, 0.0057678223, 0.053649902, 0.042907715, 0.009315491, 0.083618164, 0.025787354, 0.05078125, -0.0032482147, 0.045440674, 0.019119263, -0.02268982, 0.054901123, 0.02420044, -0.0073242188, -0.029678345, 0.04244995, 0.031921387, 0.01449585, -0.017730713, 0.008842468, 0.021102905, -0.009666443, -0.005092621, 0.0012655258, -0.020736694, 0.022827148, -0.0006260872, 0.021362305, -0.025375366, -0.025848389, 0.0115356445, -0.08831787, 0.08758545, 0.03945923, -0.028137207, 0.05935669, 0.040252686, -0.03616333, 0.07800293, 0.021484375, 0.03201294, -0.00856781, 0.072631836, -0.019943237, 0.0025138855, 0.009399414, -0.044158936, 0.011161804, -0.0017385483, -0.025817871, 0.037872314, 0.017837524, -0.026153564, -0.013717651, 0.060302734, 0.024780273, -0.03265381, -0.03152466, -0.027389526, -0.03579712, -0.07714844, 0.053100586, 0.0069503784, -0.010498047, -0.008522034, 0.00070905685, -0.054504395, -0.008476257, 0.030227661, -0.013404846, -0.023040771, 0.054504395, 0.05529785, -0.04498291, -0.032073975, 0.034576416, -0.036254883, -0.025177002, 0.004142761, 0.070007324, 0.018508911, 0.021530151, -0.024108887, -0.018432617, 0.0024204254, -0.034301758, 0.043640137, -0.020812988, -0.07879639, -0.022018433, 0.009559631, 0.009918213, -0.020065308, -0.0031814575, -0.07122803, -0.030059814, -0.019561768, -0.045196533, -0.019729614, 0.0059776306, 0.01828003, 0.0036315918, -0.010398865, -0.02796936, -0.025131226, -0.028686523, -0.01638794, 0.0064697266, 0.036132812, 0.011672974, 0.009788513, -0.059020996, 0.006378174, -0.043304443, -0.028518677, 0.10406494, 0.04486084, 0.014434814, -0.019226074, -0.0085372925, 0.008094788, 0.02722168, -0.026977539, 0.00712204, -0.026947021, -0.017227173, 0.0066452026, 0.028747559, 0.061920166, -0.008621216, 0.017303467, -0.02557373, -0.00440979, -0.09423828, 0.0093307495, 0.048614502, -0.04446411, -0.066589355, -0.030685425, 0.06976318, 0.01663208, 0.013885498, -0.013954163, -0.0017442703, 0.0149002075, -0.0128479, -0.05154419, -0.0078086853, -0.008621216, -0.005958557, 0.0023059845, 0.014381409, 0.0040626526, 0.00699234, 0.010879517, -0.032073975, 0.034240723, -0.0009899139, -0.0034484863, -0.0067825317, -0.0138168335, -0.0047416687, 0.01436615, -0.015327454, 0.0033035278, -0.06524658, 0.024230957, 0.020324707, -0.0024776459, -0.010986328, -0.025909424, -0.025817871, -0.049072266, -0.021362305, -2.4199486e-05, -0.009399414, 0.0073394775, -0.0181427, -0.015655518, -0.0024051666, -0.016357422, 0.009742737, 0.0007581711, 0.010574341, -0.028427124, 0.014556885, -0.041015625, 0.0033721924, 0.051879883, 0.0034370422, 0.008041382, -0.059051514, 0.017562866, 0.0017185211, -0.015304565, 0.0023765564, -0.045928955, -0.010574341, 0.0011796951, -0.0035419464, 0.011497498, -0.016937256, 0.0049705505, 0.037231445, 0.017028809, -0.01890564, 0.0017385483, 0.016113281, -0.002401352, -0.023971558, 0.039978027, -0.0033607483, 0.003370285, -0.007007599, -0.030227661, 0.009162903, 0.028518677, -0.049438477, 0.03845215, -0.0047340393, -0.04458618, 0.038238525, 0.007621765, 0.022781372, -0.022781372, 0.08935547, 0.0042915344, 0.025772095, -0.06210327, 0.013145447, 0.019317627, 0.059692383, -0.040283203, -0.023284912, 0.013130188, -0.02079773, 0.010574341, 0.0284729, -0.019058228, -0.041992188, -0.018325806, 0.012382507, -0.03933716, -0.0019521713, 0.034973145, -0.017028809, 0.023254395, 0.017990112, -0.045196533, 0.03479004, 0.0010814667, -0.08911133, -0.050567627, -0.02456665, -0.009513855, -0.019073486, -0.03479004, -0.0335083, -0.0021800995, -0.040496826, 0.00932312, 0.049804688, 0.016357422, -0.036376953, -0.023040771, -0.026733398, 0.031097412, -0.02619934, 0.03186035, -0.031066895, 0.0049705505, -0.025421143, -0.045440674, 0.008483887, -0.03744507, -0.061920166, -0.03363037, -0.011375427, -0.00712204, 0.019851685, 0.007499695, 0.027297974, -0.022598267, -0.02720642, -0.030166626, 0.030853271, -0.032989502, -0.06958008, 0.06378174, 0.082092285, 0.0005168915, 0.014595032, -0.02885437, -0.05355835, 0.036315918, 0.014099121, -0.07220459, -0.035858154, -0.015350342, -0.023864746, 0.0074501038, -0.027832031, -0.025360107, 0.03451538, 0.0023403168, 0.041259766, -0.02645874, -0.018997192, -0.019180298, -0.016403198, 0.015853882, 0.019866943, 0.025100708, -0.0050354004, 0.05126953, -0.11053467, -0.074523926, 0.003921509, 0.010368347, -0.007858276, 0.019973755, 0.0003721714, 0.014381409, -0.024276733, -0.0013694763, -0.023727417, 0.039245605, 0.004890442, 0.022994995, -0.03643799, 0.080322266, -0.0340271, 0.002532959, -0.0104522705, -0.035125732, -0.009262085, 0.03314209, -0.041870117, 0.0109939575, 0.021072388, 0.055267334, -0.027023315, 0.026992798, 0.038146973, 0.015731812, -0.006412506, -0.032562256, 0.017807007, -0.02281189, -0.012161255, -0.039520264, -0.026062012, 0.0018472672, -0.015464783, 0.017578125, -0.01776123, 0.03616333, -0.0036582947, 0.06524658, -0.010574341, 0.009796143, 0.044677734, -0.04083252, 0.062927246, 0.008728027, 0.027023315, -0.0042304993, 0.028625488, -0.005264282, -0.00047445297, 0.01878357, 0.026916504, -0.00047636032, -0.0035133362, 0.03152466, 0.017944336, -0.060455322, 0.020446777, 0.011451721, 0.0038776398, 0.013191223, -0.011184692, 0.012542725, 0.015007019, 0.0068130493, -0.0016460419, 0.0637207, -0.008476257, 0.021896362, -0.048675537, -0.030639648, -0.053863525, -0.050628662, 0.0029468536, -0.03451538, -0.019561768, 0.032287598, -0.05593872, 0.024398804, 0.029541016, -0.01525116, 0.015213013, 0.003194809, 0.00969696, 0.0016222, 0.012825012, -0.02722168, -0.03250122, -0.0046539307, 0.0017461777, 0.004360199, 0.045928955, 0.012413025, 0.016418457, 0.016174316, 0.008453369, 0.0055389404, -0.013198853, 0.034332275, 0.050079346, -0.039001465, -0.064819336, -0.042297363, -0.018066406, -0.010612488, -0.011940002, 0.060272217, -0.017456055, 0.08062744, 0.010307312, 0.035003662, 0.06689453, 0.018585205, 0.03640747, -0.019317627, 0.0032958984, 0.0001693964, 0.011787415, -0.0030460358, -0.03955078, -0.012535095, -0.0032672882, -0.0015306473, -0.012802124, 0.028411865, 0.010513306, -0.021606445, -0.003124237, -0.03967285, 0.028869629, 0.00012516975, 0.027450562, -0.022399902, 0.02418518, -0.008552551, -0.018936157, -0.054901123, -0.013290405, -0.025512695, 0.02355957, -0.004470825, -0.024246216, 0.0056648254, 0.0024681091, 0.005340576, -0.061920166, 0.0015010834, 0.0005059242, 0.0066719055, -0.020935059, 0.008590698, 0.0038166046, -0.03591919, -0.050354004, 0.02079773, -0.047027588, -0.008743286, -0.01574707, 0.038208008, 0.02798462, 0.016677856, 0.069885254, 0.08154297, 0.0095825195, 0.015914917, -0.03579712, -0.018737793, -0.015655518, -0.0066184998, -0.005783081, -0.023513794, -0.03152466, 0.03640747, 0.022644043, 0.032928467, 0.026031494, 0.017333984, -0.035308838, -0.0014753342, -0.020095825, -0.0072021484, 0.009292603, -0.019607544, 0.019607544, 0.0044784546, -0.04159546, -0.035888672, -0.015083313, -0.006565094, 0.027740479, 0.024246216, 0.028717041, -0.011634827, -0.07421875, -0.039031982, -0.020248413, 0.023529053, 0.017318726, -0.04989624, 0.0012540817, -0.016662598, -0.018630981, -0.011352539, 0.016601562, -0.009262085, 0.010299683, 0.0368042, -0.009017944, 0.01084137, -0.013954163, -0.0059890747, -0.051086426, -0.010353088, 0.029754639, 0.005050659, -0.008003235, 0.010803223, -0.04916382, 0.007270813, -0.009002686, -0.047973633, -0.01525116, -0.0061149597, 0.026535034, 0.003490448, 0.018966675, -0.008346558, 0.026153564, -0.0031414032, -0.02532959, 0.045318604, 0.036132812, 0.04724121, -0.04699707, 0.004425049, 0.011985779, 0.01878357, -0.0059165955, -0.08105469, -0.040039062, 0.017547607, 0.018737793, -0.020584106, 0.031555176, -0.0181427, -0.0011758804, 0.02961731, -0.027862549, -0.028579712, 0.0131073, 0.03479004, 0.013023376, 0.014533997]}, "B01AH5M8M0": {"id": "B01AH5M8M0", "original": "Brand: Concord\nName: Concord Banjo 16\u201d Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove\nDescription:

      This Concord single burner portable Gas Stove is built like a tank..

      Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10\u201d single burner head (replaceable), and stand.

      This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you're ready to go. It also has removable legs for easy storage.

      Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

      Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




      Measurements: Burner Stand 16.5\" Wide x 12\" Height

      Burner head is 10\" Wide.



      Concord burners - make every outing count.
      \nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x12\"(Height).\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "metadata": {"Name": "Concord Banjo 16\u201d Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove", "Brand": "Concord", "Description": "

      This Concord single burner portable Gas Stove is built like a tank..

      Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10\u201d single burner head (replaceable), and stand.

      This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you're ready to go. It also has removable legs for easy storage.

      Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

      Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




      Measurements: Burner Stand 16.5\" Wide x 12\" Height

      Burner head is 10\" Wide.



      Concord burners - make every outing count.
      ", "Features": "Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x12\"(Height).\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.026138306, -0.014694214, -0.009597778, -0.058898926, -0.034118652, 0.04498291, -0.06585693, 0.016540527, -0.024841309, 0.014793396, -0.028335571, 0.0026397705, 0.013435364, -0.030883789, 0.017562866, -0.04348755, 0.0033740997, 0.046722412, 0.009590149, -0.018417358, -0.0030441284, 0.0005393028, -0.055908203, 0.06088257, 0.04269409, -0.02607727, -0.050598145, -0.0013656616, 0.024429321, -0.0010271072, 0.020355225, 0.015853882, 0.035736084, -0.011367798, -0.020126343, -0.070129395, -0.006881714, -0.016784668, -0.040802002, 0.027618408, 0.0019779205, 0.0025119781, -0.018310547, 0.0052337646, -0.013259888, -0.0413208, 0.017028809, -0.053253174, -0.02268982, -0.0029678345, -0.009536743, -0.02168274, 0.0029392242, -0.073913574, -0.015991211, -0.0390625, 0.028717041, -0.051513672, -0.006378174, 0.0040893555, -0.009880066, 0.013076782, 0.033172607, 0.016830444, -0.0713501, 0.00028252602, 0.032592773, -0.022750854, 0.025741577, -0.06719971, -0.0029335022, 0.05682373, 0.022903442, 0.0054473877, -0.053100586, -0.013122559, 0.021530151, 2.1100044e-05, 0.03387451, -0.016738892, -0.0064964294, 4.1544437e-05, 0.016067505, -0.05154419, 0.044281006, -0.015602112, -0.01108551, -0.02192688, -0.03842163, -0.029846191, -0.024368286, -0.0317688, -0.06341553, 0.041229248, 0.003522873, 0.0010004044, -0.051849365, -0.12261963, 0.06616211, -0.011138916, 0.05392456, -0.032836914, -0.015556335, 0.04638672, 0.013923645, 0.111694336, -0.012229919, 0.042633057, 0.0345459, -0.015930176, 0.03286743, -0.042877197, -0.011260986, -0.023269653, -0.02029419, 0.018798828, -0.025222778, -0.0037765503, -0.0035133362, -0.009513855, -0.002407074, -0.004257202, 0.0076026917, -0.0020484924, -0.009742737, -0.018066406, -0.029815674, 0.010437012, -0.014640808, 0.014846802, -0.033203125, -0.004371643, 0.05227661, 0.074035645, 0.027297974, -0.004924774, -0.0009860992, -0.0069999695, -0.0024108887, 0.02696228, -0.030853271, -0.040161133, 0.025787354, -0.0019359589, -0.04446411, -0.0070343018, 0.025222778, 0.01889038, -0.009422302, -0.040161133, -0.027648926, 0.03491211, 0.033935547, -0.010437012, -0.019699097, -0.016601562, -0.007873535, -0.011375427, -0.012969971, -0.025268555, -0.025314331, -0.012794495, -0.0027275085, 0.03427124, 0.013465881, 0.02658081, 0.040985107, 0.0017671585, 0.016708374, 0.038391113, -0.0063438416, 0.034088135, 0.037506104, 0.010131836, -0.0019836426, -0.019546509, -0.03314209, 0.085998535, 0.041534424, -0.08068848, -0.045684814, -0.06088257, 0.11138916, -0.01852417, -0.031097412, -0.006164551, 0.015144348, -0.0036315918, 0.030059814, -0.011451721, 0.026260376, 0.0007042885, 0.009346008, -0.05218506, 0.013175964, -0.00440979, -0.056121826, -0.0099105835, -0.015090942, 0.036346436, -0.02355957, 0.0079193115, 0.029144287, 0.025756836, 0.023254395, 0.005142212, 0.002981186, 0.006652832, 0.028411865, 0.014137268, -0.00472641, 0.004650116, 0.017669678, -0.06512451, -0.027404785, 0.030410767, -0.013633728, -0.015625, 0.011024475, -0.045166016, 0.038909912, -0.0018844604, 0.034973145, 0.04055786, 0.015083313, -0.014801025, -0.0058937073, -0.011795044, -0.00472641, 0.0115737915, -0.041809082, 0.024841309, 0.04574585, 0.051483154, 0.006755829, 0.027191162, 0.063964844, 0.020584106, -0.006034851, -0.012863159, -0.005622864, -0.0087890625, -0.027313232, 0.039886475, -0.027389526, -0.004878998, 0.019454956, 0.026428223, -0.02142334, 0.016647339, 0.0038089752, 0.02041626, 0.021392822, 0.016616821, -0.021377563, 0.034576416, -0.01687622, -0.032958984, -0.03100586, 0.051239014, 0.007194519, 0.06695557, 0.014465332, 0.019561768, 0.009727478, -0.014533997, 0.009902954, 0.007911682, 0.003566742, -0.012565613, 0.013633728, 0.002532959, 0.007423401, 0.01638794, 0.015289307, 0.014564514, -0.03375244, 0.0017642975, 0.015716553, 0.00945282, 0.015296936, 0.002986908, -0.0074157715, 0.0032920837, 0.047088623, 0.013420105, 0.0023784637, 0.021316528, -0.013664246, 0.018493652, 0.02468872, 0.03173828, -0.023406982, 0.019561768, -0.02217102, 0.0054969788, 0.07312012, -0.020568848, 0.04135132, -0.058258057, 0.014259338, 0.030883789, -0.07373047, 0.03878784, -0.026000977, -0.019515991, -0.026809692, 0.009147644, -0.008651733, -0.0579834, 0.0256958, 0.046081543, 0.021774292, -0.00868988, 0.04385376, 0.007183075, 0.01739502, 0.029724121, 0.04119873, 0.04611206, -0.03704834, -0.00012850761, -0.00021648407, 0.01689148, 0.011367798, 0.0038986206, 0.012130737, 0.008636475, -0.024490356, 0.010192871, 0.046966553, 0.007801056, 0.015609741, 0.004508972, 0.015419006, -0.0058135986, -0.0006799698, -0.009857178, -0.0063476562, -0.0031986237, 0.0009455681, -0.02041626, 0.004840851, -0.030853271, 0.029342651, -0.049316406, -0.03414917, 0.021774292, -0.013061523, -0.0039749146, -0.006000519, -0.02130127, 0.030593872, -0.05014038, 0.02923584, -0.03933716, -0.06585693, -0.03842163, -0.0068511963, -0.0690918, 0.005012512, -0.02961731, -0.05508423, -0.04269409, 0.06616211, 0.0014829636, -0.055633545, -0.027175903, -0.040283203, -0.008575439, 0.049346924, -0.0051460266, -0.066589355, -0.039794922, -0.0758667, 0.0071983337, 0.030014038, -0.02508545, 0.003868103, 0.009811401, 0.0074424744, 0.019470215, -0.024047852, -0.0034446716, 0.050689697, 0.031036377, 0.0670166, 0.04522705, 0.024978638, -0.034423828, -0.011558533, 0.01574707, -0.04751587, -0.00894165, 0.013511658, 0.020523071, -0.02923584, -0.027053833, -0.049591064, -0.008010864, -0.024887085, -0.02255249, -0.00919342, -0.03781128, 0.013626099, -0.09326172, -0.00995636, -0.037200928, 0.009361267, -0.023834229, 0.0026073456, 0.0019760132, -0.013641357, -0.001329422, -0.002368927, -0.03286743, 0.05255127, 0.010253906, -0.011108398, -0.029434204, 0.06121826, -0.071777344, 0.04159546, 0.011985779, -0.00881958, 0.017166138, -0.039367676, 0.0050697327, -0.015205383, -0.005645752, -0.03363037, -0.01133728, -0.0069007874, 0.0027065277, 0.0071487427, 0.03137207, -0.0284729, -0.050994873, -0.002866745, -0.027374268, -0.062438965, -0.017852783, 0.026229858, 0.03466797, -0.0052986145, 0.016693115, -0.02734375, -0.060638428, 0.008117676, -0.026351929, 0.007419586, -0.0047836304, 0.03186035, 0.020965576, -0.013618469, 0.091308594, 0.016113281, 0.026519775, 0.041625977, -0.029525757, -0.018478394, -0.026428223, 0.0060806274, -0.005203247, -0.011039734, -0.04043579, 0.01436615, 0.024459839, 0.01625061, -0.0309906, 0.0058898926, 0.07745361, 0.04046631, 0.0012578964, 0.009140015, 0.014930725, -0.014343262, -0.022094727, -0.0033473969, 0.023635864, -0.045776367, 0.0051879883, -0.059906006, 0.056121826, 0.036499023, -0.02180481, 0.056762695, 0.010292053, 0.0063056946, -0.021652222, -0.008720398, -0.03375244, -0.0055389404, 0.017105103, -0.024383545, 0.0074005127, 0.008239746, -0.031555176, 0.027709961, 0.001791954, -0.0362854, 0.019958496, 0.039367676, -0.04232788, -0.026977539, -0.016479492, -0.006855011, 0.011657715, 0.016342163, -0.029922485, -0.008712769, -0.012229919, -0.017440796, -0.0027637482, -0.027328491, 0.06793213, -0.08746338, 0.007949829, -0.032348633, 0.007949829, -0.027114868, 0.017486572, -0.016403198, 0.031173706, -0.0022029877, 0.011207581, -0.05126953, 0.05090332, -0.0231781, 0.034118652, 0.00043797493, 0.012283325, -0.012397766, -0.04876709, 0.05480957, -0.013961792, -0.030700684, 0.02571106, -0.041992188, -0.08557129, -0.01423645, 0.032684326, 0.021865845, -0.029708862, -0.014472961, 0.010276794, -0.018417358, 0.009063721, -0.015670776, -0.005832672, -0.0045051575, 0.0067329407, -0.054260254, -0.06298828, -0.037200928, 0.064575195, 0.012260437, -0.005290985, -0.023956299, -0.028366089, -0.031158447, 0.028686523, -0.04248047, 0.02029419, -0.04559326, 0.018829346, 0.017929077, 0.010482788, 0.015029907, -0.028717041, -0.0077552795, -0.010681152, 0.0770874, -0.0020637512, 0.009147644, -0.040130615, -0.0082473755, 0.024291992, 0.026062012, 0.021759033, -0.01777649, -0.007904053, -0.024917603, 0.00096035004, -0.05407715, -0.010314941, 0.012268066, -0.028030396, -0.051483154, -0.020523071, 0.08654785, -0.016082764, 0.055664062, 0.0013189316, -0.015266418, -0.030532837, -0.021026611, -0.11395264, -0.05770874, -0.023651123, -0.03326416, 0.005466461, -0.014839172, -0.017440796, 0.060058594, 0.047668457, 0.0115737915, -0.013587952, -0.02192688, -0.022125244, -0.016845703, 0.036224365, -0.03112793, -0.004047394, -0.043701172, 0.0076828003, -0.009010315, 0.03942871, 0.01109314, -0.03744507, -0.012825012, 0.013763428, -0.017364502, -0.039123535, -0.029571533, -0.0066375732, 0.0027637482, -0.011444092, -0.041290283, -0.0074653625, -0.016555786, -0.012008667, -0.027175903, -0.034210205, -0.010787964, 0.028457642, -0.018859863, -0.015823364, -0.006450653, -0.0043182373, 0.0025978088, 0.0041007996, -0.031921387, -0.01348114, 0.062286377, -0.012809753, -0.0032444, 0.038909912, 0.005519867, -0.014953613, 0.024993896, -0.013046265, -0.07287598, 0.0010128021, 0.04647827, -0.023529053, -0.013008118, 0.01890564, 0.011650085, 0.001791954, -0.010719299, 0.05657959, -0.024810791, 0.012084961, 0.062805176, 0.019104004, 0.02909851, 0.032562256, 0.011955261, 0.008743286, 0.0023345947, -0.0029525757, -0.005458832, -0.01499176, 0.014953613, -0.04083252, 0.0143585205, -0.0017223358, -0.024551392, -0.055847168, 0.0024299622, 0.0032253265, 0.0016555786, 0.052856445, -0.0496521, 0.039794922, -0.0104904175, -0.034362793, 0.024978638, 0.08215332, -0.023223877, 0.00086307526, 0.052124023, 0.012573242, -0.055114746, 0.037078857, 0.0046577454, 0.02142334, -0.0027770996, -0.045562744, 0.025436401, 0.033172607, -0.024276733, 0.013801575, -0.021987915, 0.008239746, 0.0113220215, 0.015029907, -0.008094788, -0.010787964, 0.006996155, 0.038269043, 0.023223877, 0.018341064, -0.07366943, -0.03982544, -0.023529053, 0.024734497, 0.0031032562, 0.054992676, -0.0053749084, -0.0524292, -0.006225586, 0.011787415, 0.034301758, -0.051513672, -0.0047569275, -0.01247406, 0.025604248, 0.041900635, -0.015274048, -0.030426025, 0.10900879, -0.039001465, -0.06011963, -0.042175293, 0.06347656, -0.024414062, -0.0020599365, 0.038208008, 0.0463562, 0.0007557869, 0.031173706, -0.0022830963, -0.0071411133, -0.011772156, 0.013282776, -0.044433594, -0.01373291, -0.027374268, 0.029724121, -0.030059814, -0.020477295, -0.001124382, 0.042541504, -0.0020217896, 0.015037537, -0.0029277802, -0.016036987, -0.0042915344, -0.036346436, -0.005126953, -0.0390625, 0.014450073, -0.013404846, 0.0027713776, -0.03213501, -0.03366089, -0.03778076, 0.027786255, 0.041137695, 0.008895874, -0.008781433, -0.0038089752, -0.031097412, 0.02519226, 0.006511688, -0.014923096, 0.024414062, -0.0050735474, -0.0014076233, -0.0041923523, 0.01878357, 0.017791748, -0.03375244, 0.021697998, 0.012023926, 0.053253174, -0.021942139, 0.00957489, 0.013221741, 0.02973938, 0.019500732, 0.0028495789, 0.033111572, 0.012008667, -0.025161743, 0.0035476685, 0.03173828, -0.026046753, -0.006462097, -0.02671814, -0.062316895, -0.025039673, -0.0317688, 0.018615723, -0.03805542, 0.024261475, -0.016693115, -0.0049819946, 0.0043563843, -0.0109939575, 0.037597656, -0.014709473, 0.012664795, -0.0021018982, 0.0068969727, 0.010955811, -0.0345459, -0.022216797, 0.013923645, 0.039855957, -0.002670288, 0.024002075, -0.048858643, 0.035827637, 0.027267456, -0.08947754, 0.0050697327, -0.026016235, -0.012428284, -0.018173218, -0.04888916, -0.029190063, 0.026138306, 0.016555786, -0.00409317, -0.0014877319, 0.02619934, 0.0050849915, -0.011253357, 0.00566864, -0.02130127, -0.023635864, 0.018798828, -0.006942749, -0.0032520294, -7.593632e-05, -0.025878906, 0.009399414, 0.04434204, -0.023895264, 0.0057144165, -0.0056114197, 0.015930176, -0.025894165, -0.009170532, -0.038330078, -0.014091492, 0.041107178, 0.007255554, -0.01878357, -0.016342163, 0.0016937256, 0.026306152, -0.034576416, -0.030731201, 0.016799927, -0.046661377, 0.010269165, 0.023406982, -0.017196655, -0.023071289, -0.05731201, -0.02508545, -0.037261963, 0.00995636, -0.028030396, -0.016494751, -0.027542114, 0.0064048767, 0.015014648, 0.028030396, -0.026489258, 0.021514893, 0.013946533, -0.007270813, 0.016113281, 0.028076172, -0.01638794, 0.009010315, -0.00037384033, -0.013183594, 0.024124146, -0.02645874, -0.006000519, -0.016571045, 0.007106781, -0.026535034, 0.023086548, -0.039794922, -0.013267517, 0.029571533, -0.043548584, 0.052947998, -0.021835327, -0.056793213, -0.057678223, 0.0009188652, -0.030258179, 0.033721924, 0.020339966, -0.029891968, -0.019592285, -0.0017948151, 0.0039901733, -0.030715942, 0.00011897087, 0.0046310425, 0.041503906, 0.01171875, 0.046020508, -0.033050537, -0.06439209, -0.02319336, 0.040649414, -0.057678223, -0.076416016, -0.00076055527, 0.0017223358, 0.015640259, 0.016845703, 0.07543945, -0.025283813, 0.049194336, -0.007987976, 0.0206604, -0.03729248, -0.019012451, 0.030685425, 0.021057129, -0.037750244, -0.020492554, 0.013710022, -0.0075187683, 0.0030899048, 0.021392822, -0.02180481, -0.03781128, -0.007095337, -0.0043144226, -0.033233643, -0.012397766, -0.01084137, 0.030166626, 0.0055732727, -0.059173584, 0.044311523, 0.0050086975, 0.05496216, 0.019760132, -0.054748535, 0.05935669, -0.04034424, -0.06121826, -0.084228516, -0.040985107, 0.036071777, -0.004333496, -0.05227661, 0.0016508102, 0.03970337, -0.02999878, 0.033721924, 0.057617188, -5.376339e-05, 0.017791748, 0.036010742, -0.015701294, 0.018539429, -0.010787964, 0.027023315, -0.024475098, -0.013656616, 0.0070610046, 0.002916336, -0.005783081, -0.00819397, -0.0022659302, -0.004070282, -0.014816284, 0.022735596, -0.012367249, -0.0054626465, -0.018966675, 0.028289795, -0.003627777, -0.003932953, -0.022613525, 1.4305115e-05, -0.083862305, -0.0032234192, 0.06402588, 0.005596161, -0.06506348, 0.011291504, 0.0625, 0.029037476, -0.022064209, -0.07385254, -0.025024414, 0.01235199, 0.011405945, 0.0072364807, 0.06793213, -0.053649902, 0.015052795, 0.033355713, -0.032104492, -0.014022827, -0.012420654, 0.03164673, -0.00048661232, -0.007873535]}, "B07KM2GSW7": {"id": "B07KM2GSW7", "original": "Brand: ROVSUN\nName: ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing\nDescription:

      75,000 BTU Outdoor Propane Stove
      Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

      SPECIFICATON
      Material: Cast Iron
      Output: 75,000 BTU
      Burner Diameter: 10.24 inch
      Hose: 47.2 inch
      Dimension: 15.7\"L x 15.7\"W x 29.9\"H

      \nFeatures: 75,000BTU \u2605 Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time.\nQUICK ASSEMBLY \u2605 Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7\u2019\u2019 x 15.7\u2019\u2019. ONLY works with propane, any other gas is not available.\nEASY OPERATION \u2661 Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow.\nSPACE-SAVING \u2661 Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height.\nSTURDY FRAME \u2661 This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.\n", "metadata": {"Name": "ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing", "Brand": "ROVSUN", "Description": "

      75,000 BTU Outdoor Propane Stove
      Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

      SPECIFICATON
      Material: Cast Iron
      Output: 75,000 BTU
      Burner Diameter: 10.24 inch
      Hose: 47.2 inch
      Dimension: 15.7\"L x 15.7\"W x 29.9\"H

      ", "Features": "75,000BTU \u2605 Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time.\nQUICK ASSEMBLY \u2605 Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7\u2019\u2019 x 15.7\u2019\u2019. ONLY works with propane, any other gas is not available.\nEASY OPERATION \u2661 Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow.\nSPACE-SAVING \u2661 Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height.\nSTURDY FRAME \u2661 This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0019760132, -0.004005432, 0.012214661, 0.0069503784, -0.011199951, 0.00932312, -0.0043640137, -0.027404785, -0.04119873, -0.027862549, -0.035827637, 0.041381836, -0.038146973, -0.036712646, 0.07196045, -0.051605225, 0.039245605, -0.005592346, 0.0030956268, -0.016738892, 0.013290405, 0.014518738, -0.043670654, 0.097229004, 0.026016235, -0.008773804, 0.007167816, 0.0057868958, 0.00091409683, -0.01725769, 0.015602112, 0.009185791, 0.040039062, -0.0012254715, -0.036621094, -0.09124756, 0.0072669983, -0.03237915, -0.042633057, 0.0028839111, 0.025100708, -0.009346008, -0.010414124, 0.043395996, -0.0021648407, -0.037902832, 0.04324341, -0.038848877, -0.0002593994, 0.030578613, -0.00554657, 0.001083374, 0.003364563, -0.050201416, -0.008148193, -0.018066406, 0.017364502, -0.017807007, 0.009246826, -0.037597656, -0.025817871, 0.011352539, 0.04006958, 0.028900146, -0.0390625, 0.012046814, 0.058380127, -0.0078125, 0.025665283, -0.035705566, -0.020233154, 0.048034668, 0.041046143, 0.022644043, -0.028167725, -0.093933105, 0.058044434, -0.03491211, 0.027526855, -0.0079956055, -0.008125305, 0.014053345, 0.026519775, -0.03717041, 0.0066108704, -0.023834229, -0.015052795, -0.010215759, -0.06390381, -0.035095215, -0.025390625, -0.06427002, -0.07904053, 0.004081726, 0.023071289, -0.020858765, -0.06555176, -0.105895996, 0.05529785, 0.018447876, 0.035888672, -0.037109375, 0.03326416, 0.02041626, -0.01374054, 0.08502197, 0.0121154785, 0.054748535, 0.03149414, -0.009490967, 0.018829346, -0.014083862, -0.019607544, -0.010848999, -0.017791748, -0.005004883, -0.039978027, 0.0051841736, -0.004737854, 0.0012931824, 0.008918762, -0.007843018, 0.03845215, 0.0040283203, 0.002658844, 0.014175415, -0.039123535, -0.022720337, -0.021942139, 0.04977417, -0.036499023, -0.006149292, 0.022094727, 0.036468506, -0.0054855347, -0.034301758, 0.005935669, 0.0021915436, 0.015686035, 0.007171631, -0.024856567, -0.014541626, 0.030517578, -0.0048332214, -0.05126953, 0.025604248, 0.020751953, 0.011894226, -0.0043907166, -0.084106445, -0.024551392, 0.002161026, 0.017730713, 0.012039185, 0.010627747, -0.023254395, 0.035705566, -0.03894043, -0.0025959015, -0.03387451, -0.006626129, 0.011711121, 0.027267456, -0.0030651093, -0.01776123, -0.008453369, 0.0070495605, -0.0074768066, 0.009101868, 0.02659607, -0.003753662, 0.039611816, -0.028366089, 0.018722534, 0.015106201, -0.019485474, -0.035583496, 0.05038452, 0.06628418, -0.07891846, -0.057739258, -0.06304932, 0.12658691, -0.04812622, -0.039367676, 0.016540527, -0.013641357, -0.020233154, 0.03152466, -0.015808105, 0.03692627, 0.014564514, -0.00069618225, -0.0036506653, 0.017669678, 0.009231567, -0.074035645, 0.0037174225, -0.017196655, -0.010040283, -0.0005078316, 0.015602112, 0.023239136, -0.012268066, 0.0014390945, 0.01612854, -0.012321472, 0.027664185, 0.041992188, 0.0008635521, 0.002948761, 0.0036735535, 0.010871887, -0.08300781, -0.078430176, 0.0023555756, 0.019714355, 0.05807495, 0.016204834, 0.035003662, 0.04171753, -0.046417236, 0.037597656, 0.037261963, 0.01727295, -0.029785156, -0.009536743, -0.0132369995, 0.0014619827, 0.008117676, -0.011856079, 0.01713562, 0.036010742, 0.04977417, -0.005844116, 0.023254395, 0.060058594, 0.020065308, -0.006088257, -0.007411957, 0.0016946793, -0.025390625, -0.035369873, 0.0070228577, -0.048828125, -0.042633057, 0.0149002075, -0.0015935898, -0.013717651, 0.040649414, 0.0011672974, 0.013442993, 0.004497528, -0.013046265, -0.035186768, 0.020645142, -0.026153564, -0.0012617111, 0.008491516, 0.0027389526, 0.008285522, 0.046966553, 0.009750366, 0.02279663, -0.0016927719, -0.013511658, 0.01007843, -0.0017623901, -0.031066895, -0.010498047, 0.037628174, 0.04888916, 0.0047721863, -0.024917603, -0.0056037903, -0.028671265, -0.011795044, 0.019760132, -0.015716553, -0.04348755, 0.028152466, 0.03778076, 0.035125732, -0.0044822693, 0.0031490326, 0.039978027, 0.029464722, 0.030395508, 0.02671814, 0.01914978, 0.043518066, -0.0031108856, -0.012916565, 0.013137817, -0.024124146, -0.02859497, 0.072143555, 0.008979797, 0.023880005, -0.011238098, 0.042297363, 0.04949951, -0.06939697, 0.057769775, 0.007675171, 0.0077705383, 0.00057792664, 0.034820557, 0.020446777, -0.011230469, -0.014572144, 0.01423645, 0.025268555, 0.0152282715, 0.052947998, 0.0004925728, 0.030899048, 0.0513916, 0.054748535, 0.032196045, -0.044799805, 0.0019664764, 0.0067329407, -0.008666992, 0.025726318, -0.010513306, -0.016921997, 0.0016069412, 0.0016441345, -0.005882263, 0.029769897, -0.016830444, 0.009094238, -0.026916504, 0.0074806213, -0.02255249, -0.009307861, 0.013496399, -0.0017681122, -0.042388916, 0.005645752, 0.010665894, -0.0007762909, 0.0065345764, -0.009140015, -0.041107178, 0.01512146, 0.008300781, -0.025238037, -0.005153656, 0.012130737, -0.00844574, 0.023635864, -0.06036377, 0.0044670105, 0.0051498413, -0.035217285, -0.062286377, -0.0050849915, -0.09063721, -0.0039749146, -0.011413574, -0.056854248, -0.045043945, 0.07080078, -0.027450562, -0.043701172, -0.06500244, -0.023666382, -0.010650635, 0.04953003, 0.0033473969, -0.048431396, -0.022491455, -0.03161621, -0.0069618225, 0.023727417, -0.03567505, -0.0008378029, 0.0029525757, 0.014656067, 0.029144287, -0.019256592, 0.0058021545, -0.0035991669, 0.03652954, 0.07043457, 0.052001953, 0.010108948, -0.048431396, 0.019348145, 0.05935669, -0.052368164, -0.017318726, 0.024230957, 0.014480591, -0.00022423267, -0.019592285, -0.051574707, -0.030792236, -0.039764404, -0.003742218, -0.020324707, -0.027618408, 0.018234253, -0.11468506, 0.00037503242, -0.061279297, -0.024841309, 0.017333984, -0.03363037, -0.010276794, -0.044158936, 0.0023536682, 0.032806396, -0.04525757, 0.07110596, -0.0027542114, 0.0061035156, -0.039886475, 0.057281494, -0.06616211, 0.064941406, 0.029541016, -0.033355713, 0.016342163, -0.037475586, 0.009811401, -0.017349243, 0.029953003, -0.03302002, 0.008796692, -0.013626099, 0.010307312, 0.009399414, 0.03338623, 0.01222229, -0.050598145, 0.048065186, -0.028411865, -0.014404297, -0.027404785, -0.015808105, 0.011543274, -0.010810852, -0.0038318634, -0.031951904, -0.015426636, -0.0010108948, -0.025650024, -0.008392334, 0.0056381226, 0.032714844, 0.026733398, -0.01725769, 0.074523926, 0.01184082, 0.053894043, 0.030731201, -0.026275635, -0.015411377, -0.05911255, 0.02519226, 0.027328491, -0.030532837, -0.024627686, -0.008163452, 0.007537842, -0.013290405, -0.009521484, -0.03152466, 0.10253906, 0.023651123, 0.013435364, -0.024002075, -0.01007843, 0.024383545, 0.0357666, -0.02255249, -0.030670166, -0.062561035, -0.0033721924, -0.12072754, 0.06500244, 0.06781006, -0.04336548, 0.07745361, 0.056671143, -0.027999878, 0.02746582, 0.0019273758, -0.0039863586, -0.0005044937, -0.013267517, -0.041870117, 0.02444458, 0.014122009, 0.009132385, -0.0056648254, 0.012359619, -0.07165527, 0.004753113, -0.01838684, -0.013137817, -0.050476074, -0.018310547, 0.0075798035, -0.016784668, 0.034820557, -0.035858154, -0.027648926, -0.013267517, -0.022018433, 0.008087158, -0.03189087, 0.0036849976, -0.028762817, -0.0034236908, -0.03161621, -0.005783081, 0.024932861, 0.008903503, 0.010536194, 0.005710602, 0.026062012, -0.00096559525, -0.0104599, 0.010475159, -0.01285553, 0.02027893, 0.010055542, 0.044036865, 0.026184082, -0.010902405, -0.0093307495, -0.04727173, -0.016662598, 0.046875, 0.0035133362, -0.066223145, -0.011787415, 0.027908325, 0.022872925, -0.029556274, 0.024627686, -0.035339355, -0.009651184, -0.009902954, -0.031402588, 0.023910522, -0.040496826, -0.026138306, -0.05432129, -0.053863525, -0.034423828, 0.04220581, 0.021514893, -0.013389587, -0.02633667, -0.0057144165, 0.008010864, -0.030426025, -0.03768921, 0.031021118, 0.010681152, 0.004085541, 0.0395813, -0.023376465, -0.0029716492, -0.013557434, -0.01524353, 0.00093746185, 0.07550049, -0.013015747, 0.0019016266, -0.03451538, -0.003452301, 0.01876831, 0.04220581, 0.052825928, -0.014213562, -0.0041007996, -0.054229736, 0.0023708344, -0.01979065, -0.007160187, -0.0008635521, -0.036224365, -0.03378296, -0.025421143, 0.053344727, -0.020004272, 0.024963379, 0.017120361, -0.0003809929, 0.0047950745, 0.006038666, -0.120910645, -0.064331055, -0.014434814, -0.05303955, 0.0025253296, -0.01423645, -0.015129089, 0.027435303, 0.061309814, -0.014137268, -0.019577026, -0.01335907, 0.015838623, -0.004135132, -0.004798889, -0.02015686, 0.0027217865, -0.03253174, 0.021438599, -0.05166626, 0.050598145, 0.05307007, -0.021530151, -0.012748718, 0.0010871887, -0.031234741, -0.04034424, 0.012489319, -0.007987976, 0.039489746, 0.0072517395, -0.028839111, -0.009010315, -0.044952393, -0.016586304, -0.027313232, -0.008056641, 0.019439697, -0.0036334991, -0.010124207, -0.007499695, 0.036895752, 0.038360596, 0.033966064, 0.015914917, 0.021270752, -0.06933594, 0.018859863, -0.010398865, -0.02508545, 0.030456543, -0.021469116, -0.026168823, -0.016418457, -0.0046157837, -0.050567627, 0.03781128, 0.040527344, -0.011489868, -0.013381958, 0.013137817, -0.04071045, -0.013824463, -0.011161804, 0.0060310364, -0.015274048, 0.0067749023, -8.6426735e-05, -0.0062294006, 0.0003478527, 0.03338623, -0.021255493, 0.0021781921, 0.03390503, -0.06640625, 0.04901123, 0.0002245903, 0.0052948, -0.057037354, 0.0077781677, -0.012023926, -0.031921387, -0.030578613, 0.026046753, 0.0042648315, -0.043182373, 0.03161621, -0.037506104, 0.061828613, -0.078430176, -0.030899048, 0.0061416626, 0.07507324, 0.0032596588, 0.0211792, 0.033691406, 0.019378662, -0.05935669, -0.002494812, -0.014808655, 0.01486969, -5.5015087e-05, -0.0435791, -0.0018520355, 0.020751953, -0.032165527, 0.00062799454, -0.01889038, 0.010261536, -0.008659363, 0.0028533936, -0.02961731, -0.0044555664, -0.01789856, 0.013076782, 0.036071777, 0.02268982, -0.02947998, -0.038604736, -0.03668213, -0.0006117821, -0.027297974, 0.038330078, -0.030212402, -0.023361206, 0.03277588, -0.008972168, 0.015792847, 0.0013809204, -0.017837524, -0.020843506, 0.017959595, 0.0069274902, -0.02267456, -0.0181427, 0.04006958, -0.035888672, -0.034057617, -0.019073486, 0.057159424, -0.008476257, -0.022155762, 0.06854248, 0.0032672882, 0.0032234192, 0.008583069, -0.0099105835, -0.03289795, -0.0072784424, -0.0026874542, -0.043029785, -0.024642944, -0.025665283, 0.012748718, -0.012298584, -0.01600647, -0.024124146, 0.027542114, -0.042236328, -0.035217285, -0.011695862, -0.00894165, 0.0075683594, 0.003768921, 0.012794495, 0.018035889, 0.007511139, -0.02670288, 0.010360718, -0.029968262, -0.011474609, 0.006881714, 0.020751953, 0.021514893, 0.010627747, 0.0046043396, 0.0024280548, -0.025253296, 0.031951904, -0.0013113022, -0.0023231506, 0.0015411377, 0.0042495728, 0.0030155182, 0.025375366, -0.00623703, 0.009880066, -0.0149383545, -0.033203125, -0.0025558472, 0.024230957, -0.035888672, 0.004840851, 0.016738892, 0.051940918, -0.0042762756, -0.006298065, 0.027191162, 0.026031494, -0.0435791, -0.009925842, 0.007980347, -0.03353882, -0.028335571, -0.004486084, -0.036193848, 0.012863159, -0.029388428, 0.013381958, 0.01473999, 0.024734497, -0.04534912, 0.015541077, 0.0031719208, -0.037017822, 0.006893158, -0.00073575974, 0.040618896, -0.010253906, 0.023910522, 0.018173218, -0.046325684, -0.035858154, 0.026138306, 0.046020508, -0.013397217, 0.033569336, -0.009490967, 0.0048332214, 0.01600647, -0.043426514, 0.0059547424, -0.018814087, -0.003419876, -0.014450073, -0.019302368, -0.0041122437, 0.03225708, -0.0040359497, -0.0034542084, 0.018325806, 0.008293152, 0.0025596619, -0.019515991, 0.005050659, -0.043426514, -0.03225708, 0.0057373047, -0.0006322861, -0.024154663, 0.009361267, -0.0059127808, 0.0006785393, 0.042266846, -0.0060920715, -0.013145447, -0.021942139, 0.023956299, -0.0061149597, 0.008369446, -0.018310547, -0.01940918, 0.080444336, 0.04446411, -0.028427124, 0.007347107, 0.0025234222, 0.044769287, 0.022232056, -0.00894928, 0.013877869, -0.05230713, 0.026260376, 0.027053833, 0.037109375, 0.005004883, -0.01259613, -0.015930176, 0.002500534, 0.019821167, -0.015563965, 0.013633728, 0.013015747, -0.015975952, -0.02053833, 0.028747559, -0.045959473, 0.028442383, -0.0050315857, 0.026031494, 0.011184692, 0.036224365, -0.0056533813, 0.0067253113, 0.006958008, 0.012329102, 0.038116455, 0.029220581, 0.008476257, 0.0087509155, -0.005756378, -0.027999878, 0.017501831, -0.006679535, -0.024978638, 0.012283325, -0.04888916, 0.0020122528, -0.019622803, -0.057861328, -0.01763916, 0.0011672974, -0.053771973, 0.040161133, 0.013267517, -0.0063209534, 0.01725769, -0.01335907, -0.01789856, -0.010055542, 0.013168335, 0.028579712, 0.046691895, 0.0017089844, 0.06970215, -0.040283203, -0.06939697, -0.03475952, 0.033081055, -0.06329346, -0.038116455, -0.009010315, 0.010475159, 0.013626099, -0.006778717, 0.017166138, 0.0037269592, 0.026901245, -0.023376465, 0.013381958, -0.0056533813, -0.020736694, 0.02255249, 0.011962891, -0.022644043, -0.0002808571, -0.0030136108, 0.0063209534, 0.01600647, 0.0038318634, 0.016937256, -0.08227539, 0.0025539398, -0.028366089, -0.008636475, -0.05532837, 0.017593384, 0.0063476562, -0.004180908, -0.030456543, 0.05441284, 0.029434204, 0.06591797, 0.017608643, -0.050476074, 0.031921387, -0.03265381, -0.0013999939, -0.057617188, -0.013969421, 0.014846802, -0.0003335476, -0.060333252, 0.0020751953, 0.01991272, -0.0146484375, -0.023834229, 0.032196045, 0.034088135, -0.0002323389, -0.02218628, 0.03125, -0.0058631897, -0.009689331, 0.020187378, -0.010772705, -0.025283813, 0.026870728, -0.007297516, -0.008979797, 0.0034618378, -0.03161621, 0.0048942566, -0.02166748, -0.009384155, -0.025970459, -0.079711914, 0.059661865, 0.0619812, -0.0033855438, 0.02999878, 0.027130127, -0.021987915, -0.029159546, -0.010498047, 0.029342651, -0.011077881, -0.039123535, 0.019760132, 0.016311646, -0.008651733, -0.031555176, -0.12963867, -0.068847656, 0.009506226, -0.00447464, 0.015327454, 0.033294678, -0.0033855438, 0.0032310486, 0.026687622, -0.026535034, -0.03326416, 0.023544312, 0.035095215, 0.016799927, 0.017807007]}, "B07RZTL6TK": {"id": "B07RZTL6TK", "original": "Brand: Linkool\nName: Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection\nDescription: Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


      ✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
      ✔ Measures Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High
      ✔ Premium Oxford and upgraded PVC backed polyester fabric
      ✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
      ✔ Air vents reduce inside condensation and wind lofting
      ✔ Padded handles for easy fitting and removal
      ✔ All weahter protection
      ✔ All round drawstring bottom with cord locks for added security to make it won't blow away in the wind
      \nFeatures: NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles\nDRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill\nDIMENSION:Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High, Fits standard 20 lbs cylinder propane tank for Weber grill\nPREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank\nMAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won't blow away in the wind.BE READY for anything Mother Nature can throw at you\n", "metadata": {"Name": "Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection", "Brand": "Linkool", "Description": "Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


      ✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
      ✔ Measures Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High
      ✔ Premium Oxford and upgraded PVC backed polyester fabric
      ✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
      ✔ Air vents reduce inside condensation and wind lofting
      ✔ Padded handles for easy fitting and removal
      ✔ All weahter protection
      ✔ All round drawstring bottom with cord locks for added security to make it won't blow away in the wind
      ", "Features": "NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles\nDRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill\nDIMENSION:Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High, Fits standard 20 lbs cylinder propane tank for Weber grill\nPREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank\nMAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won't blow away in the wind.BE READY for anything Mother Nature can throw at you", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.02798462, 0.018737793, -0.028778076, -0.08178711, 0.0070762634, -0.0023021698, -0.026229858, 0.035583496, -0.050567627, 0.010795593, 0.008956909, 0.005332947, -0.020217896, -0.041412354, 0.028182983, -0.027069092, 0.008003235, 0.015571594, 0.011245728, -0.029724121, 0.0018644333, -0.017913818, 0.006198883, 0.03942871, 0.021697998, -0.01222229, 0.045166016, -0.028778076, 0.027923584, -0.025009155, 0.016983032, -0.0035266876, 0.066711426, -0.038330078, -0.014175415, 0.036224365, 0.021728516, -0.03100586, -0.029327393, 0.029571533, -1.4483929e-05, 0.0066566467, 0.00027823448, -0.009178162, -0.0019245148, -0.06707764, 0.019302368, -0.04425049, 0.016860962, 0.049621582, 0.009796143, 0.0129776, 0.008964539, -0.022216797, 0.014511108, -0.0038871765, 0.013183594, -0.008995056, 0.014678955, 0.027420044, -0.006790161, 0.021240234, 0.0005636215, -0.024780273, -0.020263672, 0.006969452, 0.09375, -0.02468872, -0.025741577, -0.026672363, 0.020553589, 0.024337769, 0.014144897, -0.00737381, -0.023498535, -0.005859375, 0.005634308, -0.016113281, 0.0076408386, 0.022018433, -0.014251709, -0.007434845, 0.035888672, 0.0067100525, -0.024505615, 0.020095825, -0.014419556, -0.015083313, 0.028137207, 0.017486572, 0.0067710876, 0.02772522, 0.03555298, 0.026184082, -0.017532349, -0.035003662, -0.01889038, -0.039520264, 0.029067993, 0.046325684, 0.006980896, -0.033294678, 0.069885254, -0.018997192, 0.007701874, 0.0619812, 0.010070801, -0.022338867, 0.012748718, -0.009269714, -0.012428284, 0.028518677, -0.028503418, -0.024169922, -0.005191803, 0.033233643, -0.032348633, 0.026550293, -0.00053453445, 0.014442444, -0.01864624, -0.013626099, -0.020645142, -0.0003068447, 0.006259918, 0.0029087067, -0.015159607, 0.04574585, -0.04727173, -0.007472992, -0.018203735, 0.002111435, 0.04324341, 0.085632324, 0.036590576, -0.0068740845, 0.04345703, -0.015960693, 0.0129776, 0.036743164, -0.08380127, -0.031677246, 0.04559326, -0.037872314, -0.03881836, 0.040802002, 0.0005145073, 0.0009765625, 0.016082764, -0.058410645, -0.036193848, -0.053131104, 0.059417725, -0.007003784, -0.0715332, -0.031158447, -0.0068092346, -0.029022217, -0.035369873, -0.057250977, -0.02746582, -0.027648926, 0.00020587444, 0.020370483, -0.00843811, 0.052215576, 0.029373169, -0.0007724762, 0.012619019, 0.04864502, -0.008621216, -0.009048462, 0.017623901, 0.021102905, 0.0009613037, 0.000117480755, -0.015327454, 0.06518555, 0.09832764, -0.12158203, -0.09289551, -0.050994873, 0.17687988, -0.048583984, 0.02053833, -0.053985596, 0.038238525, -0.025634766, -0.014221191, 0.018493652, 0.02558899, 0.019439697, 0.056854248, -0.0029640198, 0.0032596588, 0.018814087, -0.055480957, 0.04650879, -0.024154663, -0.07281494, -0.042877197, 0.013504028, -0.013702393, 0.011260986, 0.027694702, -0.026000977, 0.018951416, 0.018920898, 0.0034637451, 0.01423645, 0.0033302307, 0.009887695, -0.012275696, -0.019821167, -0.010932922, 0.016967773, 0.008369446, 0.01826477, 0.017501831, -0.0050468445, 0.054626465, 0.0056419373, 0.041534424, 0.040893555, -0.010169983, 0.0008120537, -0.0035533905, 0.006385803, 0.009048462, 0.0012340546, 0.03945923, 0.00724411, 0.05770874, 0.03112793, -0.017105103, 0.033111572, 0.055664062, -0.047027588, -0.014862061, 0.029205322, 0.017959595, -0.036193848, 0.013710022, 0.060058594, -0.030517578, -0.03427124, 0.010925293, 0.016296387, -0.030776978, -0.0020427704, 0.06768799, -0.01524353, 0.010627747, 0.011444092, -0.021850586, 0.016983032, 0.02178955, 0.056732178, -0.059265137, 0.038360596, -0.018539429, 0.02168274, 0.029647827, -0.0060920715, 0.017913818, -0.029327393, 0.035736084, 0.032714844, 0.005996704, -0.034820557, 0.0016412735, 0.025054932, 0.0019569397, 0.01586914, -0.036834717, 0.0046844482, -0.01928711, 0.014976501, -0.0012111664, -0.006790161, 0.013969421, 0.016830444, 0.0017385483, 0.0045776367, 0.02330017, 0.013290405, 0.028945923, 0.020431519, -0.027709961, -0.0012454987, 0.034179688, -0.0011196136, 0.00027108192, -0.026550293, 0.027770996, -0.014381409, 0.051239014, 0.011604309, 0.016998291, -0.0022468567, -0.017700195, 0.03579712, -0.009559631, 0.003873825, -0.008003235, 0.016113281, -0.007762909, 0.0184021, 0.021774292, -0.030288696, 0.014007568, 0.03326416, 0.011634827, -0.009979248, 0.03717041, 0.028823853, 0.011108398, 0.0395813, 0.067993164, 0.07421875, -0.014167786, -0.02658081, -0.02897644, -0.023513794, -0.019119263, 0.016174316, -0.028366089, 0.0052261353, -0.02458191, -0.0035152435, -0.0362854, -0.039855957, -0.027709961, -0.0014266968, 0.00027418137, 0.0015878677, 0.011001587, 0.037200928, -0.00019586086, -0.03778076, 0.010437012, 0.006713867, -0.016448975, 0.0025959015, -0.02507019, -0.055419922, 0.063964844, -0.0019989014, 0.00497818, 0.011642456, 0.02645874, -0.023040771, -0.001832962, -0.05987549, -0.030410767, 0.010810852, -0.008026123, -0.053527832, -0.030303955, -0.093566895, 0.016586304, -0.028778076, -0.04196167, 0.035308838, 0.032409668, -0.013206482, -0.005847931, -0.008049011, 0.0013799667, 0.015823364, 0.014846802, 0.03488159, -0.111328125, -0.029663086, -0.0289917, 0.002576828, 0.016738892, -0.025985718, -0.027740479, -0.009681702, 0.0015630722, 0.019989014, -0.019363403, 0.030715942, 0.014381409, 0.042877197, 0.068847656, 0.034851074, 0.0056991577, -0.04675293, 0.007282257, 0.04360962, -0.037994385, -0.032836914, 0.00026345253, 1.6987324e-05, 0.0075950623, 0.030059814, 0.00030612946, -0.02645874, -0.07281494, 0.0309906, 0.023971558, -0.017059326, -0.031173706, -0.008621216, -0.06555176, -0.037384033, 0.0024986267, 0.07366943, -0.031433105, 0.010658264, -0.013923645, 0.022201538, 0.013092041, 0.010910034, -0.020431519, -0.002784729, -0.030975342, 0.005832672, 0.01146698, 0.0011205673, 0.012779236, 0.04107666, -0.023040771, -0.0031909943, -0.005050659, 0.02494812, -0.00856781, -0.0021896362, -0.021896362, -0.020690918, -0.030441284, -0.027954102, -0.031829834, 0.0030975342, 0.007194519, 0.012001038, 0.025558472, -0.012199402, -0.04776001, -0.057159424, 0.042266846, 0.04058838, -0.019760132, 0.03805542, -0.051757812, -0.01108551, -0.0050468445, -0.011749268, -0.005718231, 0.0126953125, 0.018066406, 0.008964539, -0.010040283, 0.043548584, -0.009033203, 0.01902771, -0.013343811, 0.016494751, -0.014221191, -0.0079574585, 0.04449463, -0.030899048, -0.016403198, -0.04977417, 0.06903076, -0.0113220215, -0.010887146, -0.008468628, -0.0289917, 0.028839111, 0.013580322, -0.015182495, 0.004837036, 0.028640747, 0.006336212, -0.032196045, 0.017990112, -0.009811401, -0.041900635, -0.0107421875, -0.08288574, 0.06463623, 0.058929443, -0.038146973, 0.079589844, 0.08001709, -0.015022278, 0.0075302124, 0.04824829, -0.0211792, 0.016036987, 0.02897644, -0.043426514, -0.024887085, 0.003004074, -0.05709839, 0.007949829, -0.033477783, 0.031829834, -0.0042686462, 0.011741638, -0.0070991516, -0.02758789, 0.0028038025, -0.008079529, -0.0035591125, -0.015380859, -0.024261475, -0.050750732, -0.04333496, 0.034118652, 0.03527832, -0.027679443, 0.025436401, -0.024429321, 0.010986328, -0.021514893, -0.004432678, -0.033172607, -0.047424316, 0.0036773682, 0.027114868, 0.014198303, 0.021255493, -0.025039673, 0.037628174, -0.0146484375, 0.008934021, 0.001868248, 0.02281189, 0.0071792603, -0.012702942, 0.019515991, -0.011505127, 0.0055618286, 0.021453857, -0.039123535, -0.085754395, 0.014839172, 0.05102539, -0.02708435, -0.057037354, -0.030181885, -0.03552246, -0.04244995, 0.014671326, -0.01777649, -0.0059051514, 0.0066490173, -0.003440857, -0.037628174, -0.00472641, -0.026565552, 0.012374878, -0.06738281, 0.020050049, 0.0031833649, 0.004627228, 0.020492554, 0.060058594, -0.06335449, -0.025283813, -0.0003373623, -0.004722595, 0.00983429, -0.031311035, 0.018920898, -0.029434204, -0.0018539429, -0.003993988, 0.029129028, -0.008460999, -0.0015649796, -0.01927185, 0.02178955, 0.00044965744, 0.029327393, 0.025619507, 0.0071105957, 0.04046631, 0.006324768, 0.038726807, -0.057556152, -0.013221741, 0.048065186, -0.03665161, -0.046142578, -0.025482178, 0.07684326, -0.008285522, 5.0485134e-05, 0.0032424927, 0.012504578, 0.015541077, -0.022964478, -0.039398193, 0.01499939, 0.0078086853, -0.04171753, -0.01524353, -0.012870789, -0.033721924, 0.095336914, -0.0034999847, -0.003255844, -0.04336548, 0.0065193176, 0.018325806, -0.0231781, 0.019317627, -0.015853882, 0.0014190674, -0.022903442, -0.011703491, -0.10369873, 0.06549072, 0.08105469, 0.029663086, 0.009117126, -0.010391235, -0.0060043335, -0.039154053, -0.030395508, 0.0067481995, 0.03930664, 0.021896362, -0.025970459, 0.017227173, 0.014816284, -0.008728027, -0.019470215, -0.03842163, -0.02003479, 0.045806885, -0.018463135, -0.027557373, -0.039489746, 0.019546509, -0.0018291473, -0.023803711, -0.03665161, -0.0058288574, -0.012046814, -0.052856445, -0.022720337, 0.012588501, -0.030975342, -0.011711121, 0.0138168335, 0.01625061, -0.021484375, 0.03753662, 0.024673462, 0.026916504, -0.015914917, 0.013748169, -0.005382538, -0.009391785, -0.021408081, 0.019744873, 0.01209259, -0.0011234283, 0.055603027, -0.0033435822, -0.014816284, 0.033172607, -0.037109375, 0.06365967, -0.0036087036, -0.0109939575, 0.0022735596, 0.01776123, -0.0053710938, -0.06329346, 0.0949707, 0.0046920776, -0.017181396, -0.04815674, 0.0140686035, -0.013748169, -0.01411438, -0.014175415, -0.0025749207, 0.048461914, -0.032073975, -0.024017334, 0.0024967194, 0.04208374, -0.0028591156, 0.019378662, 0.013916016, 0.0019035339, -0.05883789, -0.0087509155, -0.031585693, 0.010520935, -0.022033691, -0.0009365082, 0.044403076, -0.0014228821, -0.044403076, -0.052520752, -0.015388489, 0.0052833557, -0.029251099, -0.021087646, -0.005054474, 0.0146102905, -0.019485474, -0.020736694, 0.024917603, 0.029190063, -0.07470703, -0.020462036, -0.025817871, 0.028518677, 0.015686035, 0.049621582, -0.05291748, -0.0011005402, -0.033050537, -0.037353516, 0.008453369, -0.051696777, -0.05987549, -0.03378296, 0.005794525, 0.01828003, -0.000603199, 0.015312195, 0.031555176, -0.014045715, -0.01234436, -0.059936523, 0.042114258, 0.006668091, -0.027236938, 0.07531738, 0.014282227, 0.0023384094, 0.016921997, -0.009460449, -0.0491333, 0.01474762, 0.013267517, -0.052825928, -0.052947998, -0.034484863, -0.010154724, 0.0003914833, -0.002609253, -0.025375366, 0.036987305, -0.024139404, -0.0085372925, -0.020187378, 0.00063467026, -0.015411377, -0.024017334, 0.020690918, -0.012840271, 0.01576233, -0.005680084, 0.0038394928, -0.0423584, -0.017425537, -0.0184021, 0.012809753, 0.019866943, 0.023757935, -0.013595581, -0.02746582, -0.0026435852, 0.0011644363, 0.02607727, -0.05645752, 0.009887695, 0.041503906, 0.008918762, 0.035583496, -0.058380127, -0.017913818, -0.009796143, 0.0075569153, 0.01689148, 0.01386261, -0.05609131, -0.03753662, 0.03250122, 0.03933716, 0.0026245117, -4.5716763e-05, -0.0012788773, -0.00881958, 0.0007510185, -0.006088257, -0.016906738, -0.02015686, 0.028808594, -0.030563354, 0.039093018, 0.035339355, -0.0006656647, 0.020767212, 0.0057373047, 0.0635376, 0.0021038055, -0.0054969788, 0.017868042, 0.0017061234, 0.02607727, 0.004722595, -0.011520386, 0.015235901, -0.01777649, -0.005542755, -0.016799927, -0.039642334, 0.021942139, 0.033050537, -0.018920898, 0.030181885, -0.011192322, 0.0063972473, 0.020187378, -0.028839111, 0.024383545, 0.021728516, -0.0021858215, 0.005088806, -0.035583496, 0.009140015, -0.015289307, 0.009765625, 0.018844604, 0.027938843, 0.010528564, 0.034301758, 0.023086548, 0.014175415, -0.012886047, -0.0026950836, 0.06542969, 0.009536743, -0.008590698, -0.028152466, -0.07513428, -0.009666443, 0.02758789, 0.007850647, 0.024093628, -0.026382446, 0.025817871, -0.0037326813, 0.014282227, -0.038879395, -0.038604736, -0.0034160614, 0.0013885498, -0.006969452, 0.0075950623, 0.016448975, 0.033843994, -0.02619934, -0.045684814, 0.008926392, -0.037506104, -0.011077881, 0.010887146, 0.018066406, -0.027542114, -0.0010595322, -0.004634857, 0.01550293, -0.0041542053, 0.06970215, 0.023422241, 0.06512451, -0.0018262863, 0.021453857, 0.047210693, -0.004676819, 0.02758789, -0.008590698, 0.00434494, 0.0020713806, -0.03201294, 0.00289917, -0.008369446, -0.010185242, 0.0029754639, 0.0040893555, -0.032806396, 0.005634308, 0.039978027, 0.019439697, -0.04333496, 0.008514404, 0.0031986237, -0.044433594, 0.06439209, -0.031143188, 0.004245758, -0.025161743, 0.001124382, -0.02017212, -0.04324341, -0.045288086, 0.045684814, -0.036071777, -0.03543091, -0.019607544, 0.013717651, 0.004360199, -0.056549072, -0.03137207, -0.006439209, 0.020889282, -0.009124756, 0.03527832, -0.037506104, -0.0055351257, -0.042877197, 0.0026950836, -0.06933594, -0.014251709, -0.010261536, -0.018997192, -0.0041236877, -0.014183044, 0.010528564, 0.048736572, 0.02178955, -0.017059326, 0.020355225, -0.049224854, -0.029403687, 0.051696777, 0.021835327, -0.013725281, -0.01083374, 0.016845703, 0.0049972534, -0.012260437, 0.021697998, 0.0003182888, -0.08081055, -0.008110046, -0.04067993, -0.0025157928, -0.014877319, -0.010971069, 0.028701782, -0.0051002502, -0.026992798, 0.045410156, 0.0496521, 0.01725769, 0.02909851, 0.011543274, 0.008392334, 0.004386902, -0.028320312, -0.011558533, -0.014625549, 0.006164551, -0.022506714, -0.02709961, -0.054870605, -0.010513306, 0.01625061, -0.062347412, 0.009284973, 0.0070114136, 0.0036010742, 0.014389038, -0.030349731, -0.030197144, -0.0021095276, -0.0107803345, 0.0046310425, -0.041015625, 0.0016975403, 0.046661377, -0.03869629, -0.009727478, -0.012298584, 0.012390137, 0.008026123, -0.032409668, -0.07739258, -0.09576416, 0.05493164, 0.048309326, -0.034118652, -0.007205963, 0.0020046234, 0.017333984, -0.009506226, 0.03164673, -0.0002641678, 0.03488159, 0.0016174316, 0.04446411, 0.009643555, 0.07287598, -0.042510986, -0.09185791, -0.054107666, -0.028762817, -0.0027980804, 0.021575928, 0.059814453, -0.026626587, 0.016738892, 0.022338867, -0.0016975403, -0.007785797, 0.019683838, 0.026412964, -0.0019626617, 0.010543823]}, "B08H18XLP9": {"id": "B08H18XLP9", "original": "Brand: ARC Advanced Royal Champion\nName: ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU\nDescription: \nFeatures: \ud83d\udd25\u3010STURDY AND DURABLE\u3011The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable.\n\ud83d\udd25\u3010ADJUSTABLE BURNER\u3011200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods.\n\ud83d\udd25\u3010RELIABLE SAFETY\u3011The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use.\n\ud83d\udd25\u3010STABLE DESIGN)\u3011The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use.\n\ud83d\udd25\u3010PORTABLE DESIGN\u3011The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking\n", "metadata": {"Name": "ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU", "Brand": "ARC Advanced Royal Champion", "Description": "", "Features": "\ud83d\udd25\u3010STURDY AND DURABLE\u3011The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable.\n\ud83d\udd25\u3010ADJUSTABLE BURNER\u3011200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods.\n\ud83d\udd25\u3010RELIABLE SAFETY\u3011The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use.\n\ud83d\udd25\u3010STABLE DESIGN)\u3011The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use.\n\ud83d\udd25\u3010PORTABLE DESIGN\u3011The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0072784424, -0.0006456375, -0.040893555, -0.052093506, 0.006702423, -0.009727478, -0.014411926, 0.022079468, -0.032958984, 0.0024814606, -0.015205383, 0.009971619, 0.009437561, -0.04815674, 0.057556152, -0.033172607, 0.014526367, 0.028198242, 0.004573822, -0.016616821, -0.007797241, -0.007068634, -0.03149414, 0.093444824, 0.045715332, -0.009590149, 0.0011510849, -0.021194458, 0.040161133, 0.0038051605, 0.025985718, -0.0060043335, 0.081604004, -0.055664062, -0.035064697, -0.060791016, -0.0069236755, -0.062683105, -0.09765625, 0.05029297, -0.006793976, 0.010276794, 0.01864624, 0.00793457, -0.02268982, -0.028121948, 0.010292053, -0.02128601, -0.001537323, 0.029830933, -0.009513855, 0.006324768, -0.017196655, -0.016799927, 0.0043563843, -0.011405945, 0.030426025, -0.009262085, 0.008239746, -0.014549255, -0.023803711, 0.018234253, 0.022888184, 0.012863159, -0.0287323, 0.016998291, 0.074645996, -0.001698494, 0.04421997, -0.0519104, -0.04510498, 0.048828125, -0.0037345886, -0.007537842, -0.047821045, 0.011909485, -0.0019407272, -0.019973755, 0.04006958, -0.011474609, -0.0127334595, -0.027938843, 0.009918213, -0.012413025, 0.028869629, 0.033966064, -0.017181396, -0.022903442, -0.031234741, -0.025604248, -0.020248413, -0.034973145, -0.06274414, 0.033966064, 0.00057697296, -0.0031394958, -0.026687622, -0.09063721, 0.039398193, 0.017974854, 0.044006348, -0.039733887, 0.06390381, -0.0018863678, -0.0030765533, 0.11968994, 0.026306152, 0.03945923, -0.0028648376, -0.023834229, 0.016983032, -0.043670654, -0.011619568, -0.019317627, -0.02796936, 0.02659607, -0.02684021, -0.0082092285, -0.007419586, 0.0017271042, 0.0020523071, 0.0028362274, 0.047607422, -0.012664795, 0.0010766983, 0.0030574799, -0.028411865, -0.04840088, -0.06036377, 0.04562378, -0.04446411, 0.008880615, 0.04244995, 0.061767578, 0.018630981, -0.019226074, 0.007144928, -0.030014038, 0.034088135, -0.019500732, 0.01739502, -0.015655518, 0.00630188, 0.052978516, -0.019317627, 0.03237915, 0.014053345, -0.0039043427, -0.019439697, -0.049041748, 0.0037822723, -0.04421997, 0.02508545, 0.014656067, 0.00409317, -0.006652832, 0.024642944, -0.024215698, -0.008666992, -0.016906738, -0.009727478, -0.005821228, -0.019180298, 0.0107421875, -0.017837524, 0.005908966, 0.020751953, 0.0007171631, 0.021896362, 0.04711914, 0.0018882751, -4.696846e-05, 0.007083893, 0.028579712, 0.0046081543, 0.010665894, -0.001115799, 0.060821533, 0.08105469, -0.11212158, -0.06384277, -0.043945312, 0.17468262, -0.06744385, 0.0028457642, -0.03945923, 0.014205933, -0.045684814, 0.0146484375, 0.0053253174, 0.008865356, 0.030090332, -0.008476257, -0.031799316, 0.020401001, -0.006713867, -0.035491943, -0.014144897, -0.0014410019, 0.001830101, 0.008872986, -0.0017852783, 0.011817932, 0.0009021759, 0.039489746, -0.035339355, 0.015159607, -0.013549805, 0.007408142, 0.0015201569, -0.005115509, -0.031951904, 0.029953003, -0.077697754, -0.037322998, 0.006801605, 0.013069153, 0.0065574646, 0.00086450577, -0.05053711, 0.027786255, -0.010231018, 0.029708862, 0.0703125, 0.034729004, -0.022872925, -0.014427185, -0.01876831, 0.01171875, -0.012374878, -0.02015686, 0.053863525, 0.059265137, 0.08337402, 0.0023822784, 0.012741089, 0.061553955, 0.024093628, -0.006916046, -0.027389526, 0.019058228, -0.0054969788, -0.02796936, -0.013839722, -0.02017212, -0.056518555, 0.0107040405, -0.008636475, -0.03302002, -0.025848389, 0.02305603, 0.00075531006, 0.044067383, 0.017089844, -0.020751953, 0.0137786865, -0.0055007935, 0.019577026, -0.02331543, 0.038604736, -0.022384644, 0.057281494, 0.04260254, -0.004459381, 0.030517578, -0.007358551, 0.045837402, 0.039001465, -0.009140015, -0.012184143, -0.001326561, 0.033355713, 0.00032520294, -0.0040512085, 0.012054443, -0.009765625, -0.027435303, 0.014953613, 0.0112838745, -0.0063285828, -0.0014915466, -0.011146545, 0.003704071, -0.0030918121, 0.029968262, 0.013702393, 0.018081665, 0.008125305, -0.030914307, -0.013137817, 0.019363403, -0.0071105957, -0.021377563, -0.012413025, 0.009880066, -0.021697998, 0.0496521, -0.01171875, 0.021011353, -0.054473877, -0.005332947, 0.027786255, -0.055023193, 0.024230957, 0.0040893555, -0.018615723, 0.0049819946, 0.030426025, 0.018005371, -0.01776123, -0.019485474, 0.035858154, 0.029327393, 0.012107849, 0.030807495, 0.011123657, 0.008628845, 0.04675293, 0.039855957, 0.042297363, 0.009277344, 0.0118637085, -0.002954483, 0.014961243, 0.012237549, -0.008483887, 0.007347107, -0.006134033, -0.018157959, 0.02809143, -0.017486572, -0.0074691772, -0.027618408, 0.032409668, -0.011405945, 0.015007019, 0.0027942657, 0.036224365, 0.005519867, -0.05621338, -0.012123108, -0.05142212, -0.006450653, 0.008903503, -0.044189453, -0.0077819824, 0.035583496, 0.008430481, -0.010139465, 0.017532349, 0.017333984, -0.007659912, 0.02482605, -0.011871338, 0.028457642, -0.018951416, -0.046447754, -0.02217102, -0.0074691772, -0.06555176, -0.0064964294, -0.035125732, -0.06274414, -0.0034313202, 0.07434082, -0.003917694, -0.046813965, -0.037750244, -0.024658203, -0.023284912, 0.01789856, 0.0055160522, -0.06402588, -0.0418396, -0.040618896, 0.011329651, 0.06707764, -0.006095886, 0.001001358, 0.035705566, 0.013000488, 0.034454346, -0.010826111, 0.017929077, 0.008453369, 0.042633057, 0.042022705, 0.0012292862, 0.024780273, -0.021331787, 0.0158844, 0.013885498, -0.004119873, 0.00054979324, -0.0001540184, -0.012519836, -0.005130768, -0.0014886856, -0.045318604, 0.0027942657, -0.066589355, 0.006626129, -0.013206482, -0.026153564, -0.0005393028, -0.04748535, -0.044403076, -0.047210693, 0.0018396378, -0.0030899048, -0.0045204163, 0.012756348, -0.022140503, 0.0054397583, 0.0056114197, -0.03591919, -0.017807007, 0.004676819, -0.06323242, 0.013969421, 0.06695557, -0.05657959, 0.008918762, 0.016906738, -0.07745361, 0.0059013367, -0.042999268, 0.039733887, -0.026489258, 0.047668457, -0.027145386, 0.0128479, -0.01260376, 0.029830933, -0.0051002502, -0.0008702278, 0.011894226, -0.062042236, 0.064697266, -0.04876709, -0.05831909, -0.0112838745, 0.010627747, 0.013252258, -0.0107040405, 0.0034179688, -0.017227173, -0.054016113, 0.014152527, -0.017349243, 0.014320374, -0.009223938, 0.027664185, 0.029052734, -0.0113220215, 0.07446289, 0.013168335, 0.021499634, 0.016433716, 0.0044670105, -0.010543823, -0.014350891, 0.02885437, -0.008377075, -0.008049011, -0.024414062, 0.007949829, 0.04208374, 0.0056610107, -0.017044067, 0.029815674, 0.04852295, 0.039154053, -0.008842468, -0.010864258, -0.0206604, 0.017196655, -0.004673004, -0.00894165, -0.029052734, -0.034820557, 0.017501831, -0.05126953, 0.07293701, 0.05996704, -0.03314209, 0.06750488, 0.017684937, -0.010948181, 0.0011491776, 0.029724121, -0.012176514, 0.021331787, 0.0037708282, -0.02394104, -0.014694214, 0.010246277, -0.018417358, 0.009857178, -0.0045776367, -0.038024902, 0.0013570786, 0.036346436, -0.023223877, -0.03866577, 0.012435913, 0.0075950623, 0.0062294006, 0.0005979538, -0.054260254, -0.01374054, -0.037231445, 0.048217773, 0.010826111, -0.00995636, -0.0062713623, -0.020812988, -0.012641907, -0.0413208, 0.016677856, -0.011520386, 0.007209778, -0.014167786, 0.032470703, -0.0013256073, 0.02658081, -0.050720215, 0.03265381, -0.0368042, 0.04425049, 0.02293396, 0.026275635, 0.011917114, -0.04006958, 0.020385742, -0.024795532, -0.026184082, -0.0018167496, 0.016860962, -0.024139404, 0.0127334595, 0.046295166, -0.0041046143, 9.000301e-06, 0.0005159378, -0.03656006, -0.0010690689, -0.016357422, -0.045532227, -0.0041046143, -0.008377075, -0.00046730042, -0.09667969, -0.07867432, -0.011451721, 0.060699463, 0.021774292, -0.007423401, -0.030136108, -0.040039062, -0.02204895, 0.029937744, -0.055603027, 0.012016296, -0.06304932, 0.010848999, 0.025375366, 0.0129470825, 0.0033168793, -0.020568848, -0.016159058, 0.0025558472, 0.08892822, 0.007774353, 0.018981934, -0.037261963, -0.0035133362, 0.011260986, 0.0345459, 0.025482178, 0.002708435, 0.028320312, -0.0057907104, -0.011550903, -0.066711426, 0.033447266, 0.01727295, 0.00060224533, -0.047821045, 0.0075149536, 0.05834961, -0.0028877258, 0.041046143, -0.0041503906, -0.013877869, -0.020385742, -0.04006958, -0.07977295, -0.031585693, -0.01309967, -0.034820557, 0.03387451, -0.010734558, -0.016525269, 0.08190918, 0.09100342, 0.044158936, -0.01007843, -0.018508911, -0.0041007996, 0.0019025803, 0.025802612, -0.03378296, -0.0016174316, -0.03201294, 0.011474609, -0.05505371, 0.04940796, 0.020355225, 0.0021343231, -0.0015363693, 0.00040888786, -0.008544922, -0.06756592, -0.023773193, 0.031585693, 0.008766174, -0.023010254, -0.051635742, 0.0056533813, -0.038726807, -0.010406494, -0.029525757, -0.016418457, -0.019363403, 0.007499695, -0.020629883, -0.034820557, 0.0070724487, 0.004787445, 0.010215759, 0.0051116943, -0.02418518, -0.011116028, 0.024139404, -0.010971069, -0.0067253113, 0.0069122314, 0.0008883476, -0.01007843, 0.00881958, -2.092123e-05, -0.04055786, -0.004837036, 0.049621582, -0.015823364, -0.027908325, 0.015083313, 0.024337769, -0.0087890625, -0.04949951, 0.038726807, 0.0014076233, 0.005256653, 0.03189087, -0.004951477, 0.017288208, 0.02684021, 0.002943039, 0.0126571655, 0.0104904175, -0.043182373, -0.029403687, -0.016113281, -0.00052404404, -0.01586914, 0.032562256, 0.007396698, -0.0053367615, -0.058135986, 0.0012149811, 0.02406311, -0.025054932, 0.042022705, -0.035583496, 0.042114258, 0.0046424866, -0.026794434, -0.0019187927, 0.03970337, -0.0054397583, 0.036956787, 0.0043678284, 0.0146865845, -0.0058631897, -0.0042419434, 0.008087158, 0.0034885406, 0.0107040405, -0.05130005, 0.0423584, 0.015602112, -0.038726807, -0.013381958, -0.009048462, -0.008872986, -0.03817749, -0.022628784, 0.016601562, 0.019119263, -0.0027160645, -0.014152527, 0.015838623, 0.013908386, -0.05859375, -0.050598145, -0.03060913, 0.015617371, -0.0061454773, 0.066589355, -0.029556274, -0.04272461, -0.0028762817, 0.010932922, 0.012641907, -0.017028809, -0.035003662, -0.027816772, 0.026016235, 0.027755737, -0.01626587, -0.026855469, 0.0869751, -0.03277588, -0.051757812, -0.0496521, 0.035308838, -0.002817154, -0.014564514, 0.07373047, 0.007911682, 0.008041382, 0.032928467, 0.0023422241, -0.052337646, -0.008468628, -0.0009331703, -0.08581543, -0.03543091, -0.050048828, 0.0004608631, -0.0043029785, -0.025604248, -0.029647827, 0.03955078, -0.02420044, -0.029846191, -0.0033187866, -0.029571533, 0.009056091, -0.026748657, -0.0006752014, -0.016525269, 0.021011353, -0.021408081, 0.021865845, -0.040802002, -0.050109863, -0.0053482056, 0.013511658, 0.049346924, 0.0154800415, 0.02494812, 0.024627686, -0.044769287, 0.013183594, 0.02217102, -0.07055664, -0.013626099, -0.01991272, 0.026473999, -0.016937256, 0.043029785, 0.015434265, -0.01473999, 0.025772095, 0.010177612, 0.030944824, -0.03152466, -0.0051231384, -0.009635925, 0.031173706, -0.015777588, 0.017105103, 0.0075645447, -0.01524353, -0.016571045, -0.008148193, -0.009437561, -0.045654297, -0.009277344, -0.043914795, -0.036865234, -0.007209778, -0.034301758, 0.039154053, -0.03265381, 0.03338623, 0.008476257, -0.02420044, 0.013671875, -0.023757935, 0.03125, -0.02178955, 0.007724762, -0.002149582, -0.01033783, 0.02619934, -0.042022705, -0.045806885, 0.0012083054, 0.030410767, -0.013641357, 0.032806396, -0.016830444, 0.0032787323, 0.032592773, -0.053131104, 0.0013589859, -0.04421997, 0.0038337708, -0.03677368, -0.030776978, -0.008163452, -0.008552551, 0.009437561, -0.01146698, 0.03463745, -0.010368347, 0.021881104, -0.017486572, 0.015182495, -0.03225708, 0.0036334991, -0.042236328, -0.0041618347, 0.014732361, 0.011398315, -0.059387207, 0.028717041, 0.01737976, 0.015823364, 0.032440186, -0.03062439, 0.014732361, -0.004096985, -0.04486084, -0.025375366, -0.041046143, 0.023361206, 0.033691406, -0.01309967, 0.029067993, -0.006706238, 0.0032444, -0.0021839142, -0.02218628, 0.021057129, -0.025970459, 0.021209717, 0.0211792, 0.0044898987, -0.052856445, -0.027786255, -0.013824463, -0.015472412, 0.0033607483, 0.024719238, 0.02015686, -0.009178162, -0.0012845993, -0.012786865, 0.04611206, 0.0031356812, 0.025558472, -0.051361084, 0.010025024, 0.024841309, -0.0072517395, -0.016601562, 0.004825592, -0.010185242, 0.014923096, 0.011428833, 0.0032157898, -0.011131287, -0.0082092285, 0.0037651062, -0.019210815, 0.0062332153, -0.02520752, -0.008399963, 0.027816772, -0.045410156, 0.009803772, -0.0446167, -0.077941895, -0.037963867, 0.0061683655, -0.087646484, 0.0043754578, -0.0009036064, -0.040985107, -0.012023926, 0.004501343, -0.011856079, -0.07281494, -0.00020337105, -0.031158447, 0.02508545, 0.0044937134, 0.05770874, -0.03173828, -0.06512451, -0.010688782, 0.03744507, -0.053894043, -0.027618408, -0.016784668, 0.035461426, 0.031463623, 0.029830933, 0.087524414, -0.010971069, 0.040802002, 0.009162903, -0.009643555, -0.037231445, -0.0055885315, -0.0034008026, 0.0024261475, -0.047088623, -0.03591919, 0.025970459, 0.008598328, 0.024780273, 0.03237915, 0.025299072, -0.043701172, -0.004638672, -0.046081543, 0.004573822, -0.053863525, 0.009925842, 0.0061035156, -0.012588501, -0.03390503, 0.036132812, 0.03640747, 0.05847168, 0.020263672, 3.939867e-05, 0.048095703, -0.021255493, -0.061462402, -0.041625977, -0.031982422, 0.032592773, -0.006690979, -0.054016113, -0.0038833618, 0.018737793, -0.031051636, 0.02645874, 0.048309326, -0.016174316, 0.05630493, 0.00774765, -0.015098572, 0.043914795, -0.045410156, 0.041625977, 0.0029506683, -0.013473511, -0.024810791, -0.0068359375, -0.005584717, -0.0059890747, -0.006767273, 0.008636475, -0.012992859, 0.030212402, 0.0027103424, -0.0231781, 0.0062179565, 0.030929565, 0.005996704, -0.008926392, -0.0038375854, -0.03414917, -0.05065918, -0.0012283325, 0.037261963, -0.010360718, -0.058654785, 0.047424316, 0.022460938, 0.049194336, -0.042755127, -0.08947754, -0.068725586, 0.010215759, -0.00724411, 0.025741577, 0.03665161, 0.0042304993, 0.015914917, 0.016052246, -0.04034424, -0.018676758, -0.02293396, 0.051239014, -0.0141067505, -0.0058135986]}, "B0014E3MSI": {"id": "B0014E3MSI", "original": "Brand: Camco\nName: Camco 59013 Single Stage Propane Low Press Regulator\nDescription: \nFeatures: Maintains a constant 11\" WC propane pressure\n200,000 BTU/HR\nFor connecting free standing gas bottle to low pressure gas appliances\n1/4\" Female NPT (Inlet) x 3/8\" Female NPT (Outlet)\nUL Listed\n", "metadata": {"Name": "Camco 59013 Single Stage Propane Low Press Regulator", "Brand": "Camco", "Description": "", "Features": "Maintains a constant 11\" WC propane pressure\n200,000 BTU/HR\nFor connecting free standing gas bottle to low pressure gas appliances\n1/4\" Female NPT (Inlet) x 3/8\" Female NPT (Outlet)\nUL Listed", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.02973938, -0.0496521, -0.024108887, -0.03414917, -0.0647583, 0.00774765, -0.057159424, 0.029144287, -0.0038166046, 0.0005788803, 0.03302002, -0.0155181885, -0.034942627, -0.05960083, 0.0022010803, -0.017547607, 0.024765015, 0.0063934326, 0.018997192, -0.019958496, 0.024978638, -0.0052719116, -0.03717041, 0.06173706, -0.00440979, 0.03086853, 0.05657959, 0.0013227463, 0.0055236816, -0.000828743, 0.018722534, -0.040527344, 0.0395813, -0.029159546, 0.012992859, 0.020339966, 0.037384033, -0.02154541, -0.011489868, -0.0020694733, -0.019165039, 0.025100708, 0.049804688, 0.02973938, -2.8312206e-05, -0.05239868, 0.006591797, -0.052734375, 0.044891357, 3.9994717e-05, -0.0138168335, 0.027145386, 0.003232956, -0.05697632, -0.017837524, -0.011833191, -0.012138367, -0.012062073, 0.029449463, 0.030776978, -0.0073547363, 0.000202775, 0.01247406, -0.03591919, -0.029083252, 0.010292053, 0.01864624, -0.013641357, 0.019592285, -0.033996582, -0.00944519, 0.016998291, -0.0126571655, 0.015022278, -0.0770874, 0.0046806335, 0.033294678, -0.0052719116, 0.018463135, -0.0040893555, 0.006038666, 0.001241684, 0.009552002, -0.0065345764, -0.008888245, 0.0043029785, -0.02078247, -0.019042969, -0.05496216, -0.016433716, -0.03744507, 0.009086609, -0.05895996, -0.0057258606, -0.013885498, 0.012397766, -0.026824951, -0.061462402, 0.070007324, -0.008270264, 0.033233643, -0.04248047, -0.01739502, 0.012832642, 0.02659607, 0.039794922, 0.017410278, 0.00573349, 0.025360107, -0.014060974, -0.009521484, 0.04650879, 0.011329651, 0.0063667297, -0.030151367, -0.0137786865, -0.025558472, 0.017700195, -0.0006623268, 0.015182495, -0.0018167496, 0.020507812, 0.027832031, -0.032714844, 0.02192688, 0.01826477, -0.037719727, -0.020935059, -0.07385254, -0.010719299, -0.021820068, 0.01852417, 0.0637207, 0.08258057, 0.029174805, 0.014099121, 0.029144287, 0.010215759, 0.0021038055, 0.02355957, 0.010246277, -0.030197144, 0.0016918182, 0.0128479, -0.040039062, 0.03643799, 0.023468018, -0.02545166, -0.02935791, -0.032165527, -0.07409668, -0.0088272095, 0.03829956, -0.0042381287, -0.008872986, -0.019607544, 0.0058250427, -0.01689148, 0.007221222, -0.04006958, 0.012527466, -0.020385742, -0.009178162, -0.0058059692, -0.022079468, 0.02545166, -0.02029419, -0.008453369, 0.0038108826, 0.034332275, -0.045562744, 0.06958008, 0.019683838, 0.015312195, -0.008262634, 0.0022029877, -0.040924072, 0.059173584, 0.064086914, -0.07293701, -0.035980225, -0.048034668, 0.11090088, -0.022750854, 0.010276794, -0.057495117, 0.02507019, -0.043182373, 0.003522873, 0.0050811768, 0.032440186, 0.046783447, 0.018875122, -0.0340271, -0.0065307617, -0.01965332, 0.003320694, -0.0032081604, -0.016113281, 0.017593384, -0.06210327, -0.009773254, 0.02243042, 0.01876831, 0.055358887, -0.031951904, 0.02180481, 0.010391235, 0.0078086853, -0.024124146, -0.016448975, -0.030715942, 0.03982544, -0.06964111, -0.045715332, 0.050079346, 0.009963989, -0.037902832, 0.010559082, -0.020874023, 0.03930664, 0.025314331, 0.0052833557, 0.038757324, 0.020843506, 0.009246826, -0.006198883, 0.0021896362, 0.020202637, 0.0035133362, 0.02947998, -0.0026817322, 0.028884888, 0.04220581, -0.0021781921, 0.0423584, 0.048431396, 0.03640747, -0.042999268, -0.0070533752, 0.0075263977, -0.030136108, -0.026931763, 0.040039062, -0.024719238, -0.010971069, 0.01777649, 0.008735657, -0.014183044, 0.0115737915, 0.07727051, -0.01084137, 0.00819397, 0.0050697327, -0.026184082, 0.018234253, -0.03564453, 0.035308838, -0.011741638, 0.008522034, -0.03060913, 0.058898926, 0.07513428, -0.0077323914, 0.047943115, 0.040130615, 0.048980713, 0.04534912, -0.04006958, 0.022720337, 0.00705719, 0.036468506, 0.01121521, 0.008094788, -0.04623413, 0.0020122528, -0.015205383, 0.008804321, 0.0075683594, -0.00466156, -0.0008201599, -0.018371582, 0.004272461, -0.00466156, 0.034484863, -0.0018644333, 0.027404785, 0.012954712, -0.03778076, -7.8201294e-05, 0.03262329, -0.0067100525, -0.017410278, -0.005027771, 0.0029125214, -0.008415222, 0.06817627, -0.061676025, 0.026428223, -0.019836426, 0.055511475, 0.06451416, -0.017227173, 0.03024292, 0.0013933182, 0.016036987, -0.0015830994, 0.013961792, 0.005973816, -0.006259918, -0.03010559, 0.018005371, 0.017837524, 0.024551392, -0.003276825, -0.023330688, -0.0052604675, 0.038879395, 0.015838623, 0.042053223, -0.0178833, 0.0154800415, -0.00036001205, -0.0016212463, 0.016525269, -0.0012836456, -0.0010957718, 0.0067863464, -0.029327393, 0.015472412, 0.02420044, -0.015075684, -0.0034236908, 0.025650024, 0.017593384, 0.02230835, -0.01689148, 0.11419678, 0.006881714, -0.08105469, -0.0259552, -0.04638672, -0.023544312, 0.05621338, 0.0032463074, -0.027557373, 0.03994751, 0.0031547546, -0.015777588, 0.021484375, -0.0061569214, -0.027328491, 0.03286743, -0.03866577, 0.036834717, 0.025283813, -0.058532715, -0.04486084, 0.048309326, -0.07714844, -0.012779236, -0.022460938, -0.05606079, -0.047332764, 0.027252197, 0.022216797, -0.052612305, 0.0018148422, -0.021392822, -0.011543274, -0.0038471222, -0.0118255615, -0.028167725, -0.012260437, -0.019866943, 0.0115737915, 0.040496826, -0.014297485, 0.0234375, 0.017501831, 0.027160645, 0.014877319, 0.01777649, 0.005088806, 0.0413208, 0.009666443, 0.059051514, 0.059509277, 0.011016846, -0.03414917, 0.00497818, 0.036071777, -0.07312012, -0.00592041, 0.008758545, -0.00011610985, -0.008308411, -0.010536194, -0.043395996, -0.014373779, -0.02748108, -0.02420044, -0.025527954, -0.032196045, 0.020431519, -0.10736084, -0.011802673, -0.04260254, 0.0027275085, 0.02810669, 0.0033473969, -0.026626587, -0.006980896, -0.0093307495, 0.0025997162, -0.035614014, -0.006893158, -0.006793976, -0.019805908, 0.029800415, 0.06976318, -0.12017822, 0.014122009, 0.017120361, -0.0050315857, 0.03652954, -0.00522995, 0.0035533905, -0.027328491, 0.023712158, 0.017089844, -0.011520386, -0.049346924, -0.012535095, 0.0077552795, 0.054779053, -0.0064468384, -0.015426636, -0.030761719, 0.009819031, -0.05770874, -0.0053634644, 0.03869629, 0.021591187, 0.02658081, 0.0038776398, -0.020843506, -0.045074463, 0.0209198, -0.06604004, 0.018600464, -0.017868042, 0.03591919, 0.017471313, -0.011405945, 0.11022949, 0.0016698837, 0.02230835, 0.03277588, -0.037078857, -0.011459351, -0.0077438354, -0.036590576, -0.019042969, -0.017837524, -0.015037537, 0.0037231445, 0.02960205, 0.01927185, -0.034362793, 0.020706177, 0.04663086, -0.0019798279, 0.0027694702, -0.04220581, -0.04446411, 0.039031982, 0.022232056, 0.031463623, -0.02784729, -0.068603516, 0.028533936, -0.02671814, 0.054656982, 0.03363037, -0.017440796, 0.077819824, 0.02545166, -0.0018253326, 0.014709473, 0.047973633, -0.007904053, 0.02720642, 0.004524231, -0.006843567, -0.037872314, 0.017089844, -0.04208374, -0.022598267, -0.041046143, -0.026000977, 0.0070495605, -0.0063285828, 0.004627228, -0.018630981, -0.0052833557, -0.003648758, -0.02923584, 0.0053749084, -0.012870789, -0.03994751, -0.031463623, -0.041900635, -0.0029468536, -0.025390625, 0.023513794, -0.038238525, -0.027130127, -0.028060913, 0.0031528473, 0.01586914, 0.008262634, -0.0044670105, 0.032318115, 0.010848999, -0.01574707, -0.016311646, -0.010009766, -0.030883789, -0.029067993, -0.0017995834, 0.03036499, -0.0036087036, -0.0055999756, 0.019729614, 0.012336731, -0.0054969788, 0.035247803, 0.056854248, -0.047058105, 0.030593872, 0.024520874, -0.040222168, -0.03866577, -0.0073013306, -0.02734375, -0.017700195, -0.0011348724, -0.045684814, -0.030029297, 0.0014104843, 0.027557373, -0.007881165, -0.040222168, -0.03378296, 0.0065727234, 0.013938904, -0.028656006, -0.020980835, 0.006362915, 0.012786865, 0.050933838, -0.072021484, -0.021957397, -0.069885254, -0.015144348, 0.057800293, 0.030914307, 0.010093689, -0.004009247, -0.015182495, 0.0031833649, 0.07800293, 0.00087308884, 0.009727478, -0.043670654, -0.01449585, 0.029037476, -0.0055732727, 0.027633667, 0.001947403, 0.0013561249, -0.036590576, 0.046020508, -0.053222656, 0.008621216, 0.040740967, -0.045959473, -0.06161499, -0.035461426, 0.051818848, 0.016815186, 0.05166626, 0.020004272, -0.013870239, -0.0087509155, -0.021942139, -0.14147949, -0.06878662, -0.032287598, -0.040893555, 0.009513855, 0.0017948151, -0.019577026, 0.051879883, 0.043792725, -0.009895325, -0.006000519, -0.008544922, 0.02470398, -0.02998352, -0.032592773, 0.012878418, -0.008270264, 0.010093689, 0.023086548, -0.030563354, 0.024047852, 0.04336548, -0.012023926, 0.009170532, 0.0045166016, -0.008132935, -0.014770508, -0.0368042, 0.030593872, 0.022262573, 0.020812988, -0.031021118, 0.006690979, 0.010406494, -0.021911621, -0.033935547, 0.022964478, -0.034942627, -0.027145386, -0.033172607, -0.05429077, -0.00066900253, -0.020370483, 0.019256592, 0.0017995834, -0.02456665, 0.006034851, -0.00046896935, 0.002023697, 0.007106781, -0.011375427, -0.018295288, -0.0009074211, -0.017730713, -0.003490448, -0.0052337646, 0.00969696, 0.0056266785, 0.012870789, -0.028182983, 3.9219856e-05, 0.0015544891, -0.016052246, -0.03881836, 0.021102905, -0.0071907043, 0.0011425018, 0.08642578, 0.007598877, 0.01398468, 0.021530151, -0.0050315857, 0.052642822, -0.0206604, -0.034362793, 0.0030727386, -0.0060310364, 0.020431519, -0.029067993, 0.04888916, 0.002729416, 0.018356323, -0.06536865, 0.015434265, -0.014892578, -0.023788452, 0.023010254, -0.028259277, 0.022537231, -0.040405273, -0.010795593, 0.008514404, -0.0014123917, -0.016235352, 0.032928467, -0.00027918816, -0.0058288574, -0.03475952, 0.0014667511, -0.009124756, -0.009208679, -0.01802063, -0.043823242, 0.03729248, 0.008628845, -0.051361084, -0.028335571, -0.009124756, 0.014579773, -0.03265381, -0.023651123, 0.023468018, 0.027008057, -0.004737854, -0.047576904, -0.015289307, 0.0061836243, -0.003604889, 0.0014305115, -0.0009293556, -0.020828247, -0.028442383, 0.046203613, -0.04345703, -0.029373169, 0.032196045, 0.0061073303, 0.025146484, 0.004470825, -0.033294678, -0.033447266, 0.013061523, 0.011390686, 0.0023841858, -0.023010254, 0.033233643, -0.023132324, -0.035003662, 0.018035889, 0.009902954, -0.020248413, -0.02772522, 0.028259277, 0.05041504, -0.011734009, 0.03704834, 0.0009551048, -0.06665039, 0.047546387, 0.0052757263, -0.046081543, -0.048828125, -0.03717041, -0.041168213, 0.018707275, -0.049865723, -0.0024299622, 0.050476074, 0.031921387, 0.059051514, -0.034576416, -0.06329346, -0.014411926, -0.040374756, -0.010734558, -0.053649902, 0.023101807, -0.012329102, 0.00919342, -0.04119873, -0.057556152, 0.010635376, 0.015098572, 0.04724121, 0.016601562, 0.023071289, 0.04840088, -0.062683105, 0.005016327, 0.026733398, -0.036132812, -0.009979248, 0.032806396, 0.0036525726, 0.020095825, -0.06335449, -0.0011758804, -0.02558899, 0.012023926, 0.014221191, 0.032836914, -0.039001465, -0.0023441315, 0.017318726, 0.03189087, -0.001786232, -0.02519226, 0.019348145, 0.023864746, -0.046295166, -0.028808594, 0.008712769, -0.025848389, 0.016525269, -0.031829834, -0.043884277, -0.021408081, -0.045715332, 0.0019044876, -0.015335083, 0.011238098, -0.028427124, 0.0126571655, -0.0035476685, 0.0024909973, 0.03253174, -0.028945923, -0.016937256, -0.0030670166, 0.00035476685, 0.02078247, -0.036254883, 0.007511139, -0.029220581, -0.0018901825, -0.024520874, 0.06719971, -0.053985596, 0.02748108, 0.015136719, -0.062347412, -0.004901886, 0.038269043, 0.01689148, -0.00010752678, 0.0077552795, 0.033935547, -0.0026397705, -0.00048303604, 0.036712646, -0.008964539, 0.013725281, 0.034362793, -0.025543213, -0.0020542145, -0.0046653748, -0.025909424, 0.005004883, 0.0054244995, -0.0050086975, -0.012069702, -0.039611816, 0.068847656, 0.0262146, 0.0017004013, 0.059631348, -0.0048828125, -0.00447464, -0.016281128, 0.03152466, -0.019210815, -0.033966064, -0.00207901, 0.014762878, 0.009124756, 0.040496826, 0.024108887, 0.005306244, -0.038635254, -0.03793335, 0.005996704, -0.034210205, -0.026275635, 0.013366699, 0.022827148, 0.02130127, -0.017074585, -0.022705078, 0.009094238, 0.026489258, -0.007381439, -0.0022830963, 0.03894043, 0.03488159, -0.008880615, 0.066223145, -0.0071144104, 0.018447876, -0.045043945, 0.026931763, 0.0038414001, 0.023773193, -0.009681702, -0.0030078888, -0.024414062, -0.015113831, -0.008598328, -0.047302246, -0.003967285, -0.026397705, 0.0021629333, -0.015899658, 0.04345703, -0.025863647, -0.027450562, -0.033447266, -0.016082764, -0.010314941, -0.020736694, -0.039520264, -0.033294678, -0.013702393, -0.03781128, 0.023513794, -0.0062789917, -0.005252838, 0.021148682, 0.013053894, -0.05847168, -0.020706177, -0.043151855, 0.032928467, -0.026931763, -0.017074585, 0.0127334595, -0.00374794, -0.055908203, -0.044067383, 0.043670654, -0.070251465, -0.050323486, -0.018554688, -0.0067634583, -0.01876831, -0.008895874, 0.06488037, 0.035339355, 0.04159546, 0.00043582916, 0.04006958, -0.043884277, -0.004623413, 0.007621765, 0.030517578, -0.033111572, -0.05029297, 0.0075683594, 0.023880005, 0.029434204, 0.011230469, 0.044525146, -0.023956299, 0.028198242, -0.0012960434, -0.021697998, 0.039031982, -0.006591797, 0.016799927, 0.014381409, -0.037475586, -0.0010986328, -0.014564514, -0.0317688, 0.027038574, -0.016967773, 0.021057129, -0.053375244, -0.043548584, -0.08557129, -0.016616821, 0.040496826, 0.05166626, -0.014884949, 0.005290985, 0.03366089, -0.020996094, 0.020477295, -0.003534317, 0.014305115, 0.010726929, 0.018951416, 0.016799927, 0.018127441, -0.022399902, 0.017059326, -0.055145264, 0.027801514, -0.06109619, 0.010276794, -0.015670776, -0.06976318, -0.00016343594, 0.025131226, -0.062805176, 0.02281189, -0.04421997, 0.009887695, 0.012786865, 0.0013217926, 0.007583618, 0.016799927, 0.034698486, 0.03604126, -0.04486084, 0.0039634705, 0.036956787, -0.0103302, -0.034210205, -0.018463135, 0.014053345, 0.050354004, 0.015991211, -0.09039307, -0.0446167, 0.049316406, 0.031463623, -0.03503418, 0.045166016, -0.050354004, 0.02015686, 0.0048217773, -0.0184021, 0.011741638, -0.023590088, 0.043884277, -0.046966553, -0.0024986267]}, "B08FMFK7CN": {"id": "B08FMFK7CN", "original": "Brand: METER STAR\nName: Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17\" and 22\" Blackstone Tabletop Camper Grill\nDescription: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F
      No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
      Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
      CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
      Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
      Specifications\uff1a
      A. 3/8\" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
      B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
      Warm Tips:
      * This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
      Quality Standard:
      CSA
      Package Included:
      1 Pcs x Propane Elbow Adapter.
      1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.\nFeatures: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F\nNo Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit\nGreat Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill\nCSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model\nElbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping\n", "metadata": {"Name": "Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17\" and 22\" Blackstone Tabletop Camper Grill", "Brand": "METER STAR", "Description": "6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F
      No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
      Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
      CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
      Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
      Specifications\uff1a
      A. 3/8\" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
      B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
      Warm Tips:
      * This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
      Quality Standard:
      CSA
      Package Included:
      1 Pcs x Propane Elbow Adapter.
      1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.", "Features": "6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F\nNo Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit\nGreat Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill\nCSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model\nElbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012298584, -0.0043411255, -0.02330017, -0.0073928833, -0.030670166, -0.003736496, -0.02835083, -0.018844604, -0.01701355, 0.019729614, -0.0028800964, 0.0284729, -0.005657196, -0.02708435, 0.012794495, -0.018310547, 0.024475098, 0.011474609, -0.014816284, -0.024246216, -0.026779175, 0.01977539, -0.037750244, 0.093933105, 0.0435791, -0.052246094, 0.035491943, -0.0020160675, 0.048065186, 0.0084991455, 0.03756714, -0.021011353, 0.027053833, 0.00045990944, -0.022476196, -0.04348755, -0.01612854, -0.016220093, -0.026062012, 0.008293152, 0.048858643, -0.018585205, -0.04837036, 0.05722046, -0.054260254, -0.0680542, 0.05102539, -0.0048065186, 0.01096344, 0.015052795, -0.00077199936, 0.019714355, -0.0029678345, -0.021255493, -0.00983429, -0.0014925003, 0.017684937, -0.038757324, -0.0007376671, 0.02796936, 0.01864624, 0.031585693, 0.006149292, -0.005382538, -0.03643799, 0.007160187, 0.04876709, -0.02861023, 0.014801025, -0.029922485, 0.017974854, 0.030471802, 0.017791748, 0.01285553, -0.03552246, -0.0345459, 0.008407593, -0.006652832, 0.026260376, 0.013908386, -0.007045746, -0.04647827, 0.0030231476, -0.012107849, -0.007041931, -0.014533997, -0.015304565, 0.0050201416, -0.022827148, -0.03994751, -0.018951416, -0.011375427, -0.053649902, 0.007827759, -0.0016326904, -0.03048706, -0.016403198, -0.04562378, 0.011352539, 0.02911377, 0.016403198, -0.027893066, 0.06549072, -0.024993896, 0.006023407, 0.072021484, -0.0022716522, -0.0012655258, 0.020004272, 0.0004761219, 0.0048713684, -0.0040512085, 0.020492554, 3.385544e-05, -0.0390625, 0.014259338, 0.008087158, -0.008705139, -0.0029754639, -0.0006585121, -0.024810791, -0.022964478, 0.0368042, -0.022338867, 0.03036499, 0.013900757, -0.023010254, -0.0013389587, -0.08642578, 0.032104492, -0.015975952, -0.020370483, 0.05319214, 0.115112305, 0.04660034, -0.021118164, 0.035736084, -0.007671356, 0.009513855, 0.016830444, -0.03540039, -0.017120361, 0.02444458, -0.025756836, -0.05130005, 0.024810791, 0.026107788, 0.008308411, -0.028060913, -0.0670166, -0.014419556, -0.0063209534, 0.04547119, 0.008926392, -0.040496826, -0.03857422, 0.014053345, -0.029388428, 0.011016846, -0.06384277, -0.03414917, -0.018920898, 0.002166748, -0.018310547, -0.018493652, 0.008087158, -0.011795044, 0.0018920898, 0.026367188, 0.089538574, 0.016326904, 0.027053833, 0.02734375, 0.00019621849, -0.010375977, -0.040039062, -0.06915283, 0.07128906, 0.07336426, -0.1307373, -0.07305908, -0.056518555, 0.10961914, -0.017349243, 0.032165527, -0.024978638, 0.014640808, -0.03338623, -0.008552551, 0.009925842, -0.014167786, 0.02432251, 0.005760193, -0.024917603, 0.0056419373, -0.0024795532, -0.011352539, 0.009643555, -0.003419876, -0.0031967163, -0.0256958, 0.030288696, -0.0013580322, 0.0031051636, 0.050811768, -0.015777588, 0.017242432, 0.023223877, 0.031707764, 0.015434265, -0.00016915798, 0.02142334, -0.013153076, -0.03665161, -0.025390625, 0.027252197, -0.012542725, -0.0075302124, -0.0066337585, -0.017990112, 0.020828247, -0.00070667267, 0.012466431, 0.038360596, 0.007835388, -0.019927979, -0.017120361, -0.024230957, -0.00040888786, -0.010864258, -0.0033435822, 0.04724121, 0.06970215, 0.048583984, -0.04663086, 0.017715454, 0.046081543, 0.0574646, -0.03286743, -0.0004506111, 0.010520935, 0.004135132, -0.044799805, -0.010574341, -0.02394104, -0.057617188, -0.0023384094, 0.0026168823, -0.03463745, 0.009407043, 0.04574585, 0.027252197, 0.014945984, 0.046447754, -0.04800415, 0.025436401, -0.0093688965, -0.029785156, -0.050872803, 0.043182373, -0.003917694, 0.005695343, -0.001326561, 0.0038204193, 0.013206482, 0.014083862, 0.024398804, 0.014717102, -0.015129089, 0.008575439, 0.010627747, -0.024490356, -0.017684937, -0.037750244, -0.02848816, 0.01878357, -0.025924683, 0.039215088, 0.004962921, -0.021896362, 0.029129028, 0.027496338, -0.0016803741, -0.013130188, 0.027816772, 0.012336731, -0.0051231384, 0.019714355, -0.037902832, 0.0036678314, 0.040527344, -0.03744507, -0.032165527, -0.017120361, -0.02192688, -0.023101807, 0.08453369, 0.0074043274, 0.006793976, -0.013137817, 0.026153564, 0.041259766, -0.037719727, 0.011375427, 5.3346157e-05, 0.009490967, 0.0018644333, 0.022979736, 0.02746582, -0.04800415, 0.028045654, 0.035614014, 0.029083252, -0.012374878, 0.030349731, 0.028213501, -0.0015554428, 0.04425049, 0.060913086, 0.07519531, 0.0015563965, 0.012367249, -0.034698486, 0.0020179749, 0.007850647, 0.005115509, -0.011627197, -0.01576233, 0.007369995, 0.022506714, 0.0023174286, 0.01828003, -0.009292603, 0.027770996, -0.0071144104, 0.007751465, -0.0036811829, 0.048980713, -0.017120361, -0.03567505, -0.027160645, -0.03375244, -0.0068626404, -0.0070228577, 0.013893127, -0.041656494, 0.021362305, 0.022705078, -0.052947998, 0.013031006, 0.0009880066, -0.042144775, 0.022994995, -0.03213501, 0.0143966675, -0.035491943, -0.04736328, -0.03555298, -0.010345459, -0.07128906, -0.0071372986, -0.041625977, -0.063964844, 0.009544373, 0.072387695, 0.0009202957, -0.048919678, -0.003862381, -0.009223938, 0.006969452, 0.0491333, -0.002286911, -0.05734253, -0.043884277, -0.046325684, -0.022232056, 0.05722046, -0.012794495, 0.015113831, 0.031829834, 0.02470398, 0.035125732, -0.014259338, 0.029693604, -0.01928711, 0.045715332, 0.036315918, 0.017089844, 0.0049934387, -0.03982544, 0.023223877, 0.067993164, -0.07397461, -0.013092041, -0.011169434, 0.018920898, 0.025177002, -0.0513916, -0.011428833, -0.03363037, -0.04586792, 0.030639648, 0.0074043274, -0.006893158, 0.0025348663, -0.10687256, -0.019546509, -0.055877686, 0.036895752, 0.059783936, -0.0061035156, 0.051727295, 0.005554199, 0.034698486, -0.031829834, 0.02507019, -0.03378296, -0.009376526, -0.038635254, 0.03111267, 0.03781128, -0.05557251, -0.002275467, 0.030929565, -0.016723633, 0.026153564, 0.011703491, 0.02619934, 0.015319824, -0.031707764, -0.01159668, -0.043151855, -0.026367188, -0.009613037, -0.008285522, 0.024749756, 0.00705719, -0.008041382, 0.022979736, -0.02557373, -0.056152344, -0.04638672, -0.046295166, 0.0096206665, -0.0018005371, -0.032409668, -0.054992676, -0.066467285, 0.0107040405, -0.03326416, -0.020248413, -0.0093688965, 0.035705566, 0.02796936, 0.001540184, 0.09753418, 0.0070648193, 0.043640137, 0.020935059, 0.0018100739, -0.013038635, -0.029785156, 0.060394287, 0.017471313, -0.010826111, -0.072509766, 0.033569336, 0.012420654, -0.0038719177, 0.00422287, -0.009086609, 0.07836914, 0.040863037, -0.007797241, -0.012260437, -0.020568848, 0.027175903, 0.0018873215, -0.005836487, -0.04348755, -0.061828613, 0.0129776, -0.07244873, 0.056915283, 0.012878418, -0.019882202, 0.03857422, 0.02079773, -0.02456665, 0.02545166, 0.050872803, -0.0019893646, -0.0016651154, 0.05331421, -0.028305054, -0.027023315, 0.006717682, -0.019363403, 0.026290894, 0.01713562, -0.019683838, 0.003572464, -0.03225708, -0.014961243, -0.00187397, 0.010231018, 0.0069503784, -0.0013237, -0.009529114, -0.01890564, -0.011764526, -0.039978027, 0.015975952, 0.0010595322, -0.015220642, -0.032958984, 0.00048613548, -0.01423645, -0.034423828, 0.020599365, 0.012062073, 0.025604248, 0.029159546, 0.028823853, -0.011833191, -0.013648987, 0.011680603, -0.020309448, -0.020507812, 0.026260376, 0.032836914, 0.010345459, 0.032073975, -0.013221741, -0.0124435425, -0.00724411, -0.03201294, 0.035705566, -0.031341553, -0.07208252, -0.040893555, -0.029922485, 0.00061035156, -0.013893127, 0.0073776245, -0.049346924, 0.0034542084, 0.0060157776, -0.038208008, -0.0075912476, -0.016693115, 0.0021762848, -0.044769287, -0.026870728, -0.026290894, 0.04019165, -0.021606445, 0.011062622, -0.013748169, -0.009109497, -0.031951904, -0.005317688, -0.048217773, 0.028442383, -0.06933594, -0.011459351, 0.049621582, 0.021560669, -0.0044784546, -0.024765015, -0.011772156, 0.006011963, 0.048919678, -0.019348145, 0.025726318, -0.030273438, -0.011680603, 0.030258179, 0.024429321, 0.03475952, 0.004096985, -0.0137786865, -0.029312134, -0.012763977, -0.086242676, 0.031555176, 0.0335083, -0.040405273, -0.044708252, 0.013313293, 0.104003906, -0.007575989, 0.012924194, 0.012359619, 0.0069618225, -0.0068130493, 0.03213501, -0.06964111, -0.028884888, 0.0020542145, -0.002357483, -0.01247406, -0.0070266724, -0.019134521, 0.040130615, 0.0023536682, 0.0066490173, -0.017227173, 0.021865845, 4.774332e-05, -0.027999878, 0.014228821, -0.05255127, 0.024658203, -0.0423584, 0.0015249252, -0.044830322, 0.055145264, 0.019729614, -0.024230957, -0.0009441376, -0.0011854172, -0.017471313, -0.019744873, -0.0020542145, -0.017913818, 0.018753052, -0.030792236, -0.042785645, 0.014099121, -0.049041748, -0.0049438477, 0.0043907166, 0.007801056, 0.015487671, -0.011749268, -0.004951477, -0.014533997, -0.03604126, -0.008529663, -0.016586304, -0.014533997, -0.066467285, 0.010307312, 0.039642334, -0.018096924, -0.015945435, 0.018539429, -0.010848999, -0.030914307, 0.020095825, 0.017562866, -0.03704834, 0.03591919, 0.030899048, 0.01550293, -0.016204834, 0.03048706, -0.012290955, -0.0013637543, -0.03640747, 0.014305115, 0.00831604, -0.017700195, 0.025970459, -0.005405426, -0.015487671, 0.043792725, -0.02381897, 0.031311035, 0.007499695, -0.019882202, -0.0025920868, -0.010116577, -0.0048828125, -0.01322937, 0.07684326, 0.0068206787, 0.024673462, -0.0625, 0.019897461, 0.03338623, 0.045318604, -0.0031223297, -0.04373169, 0.038360596, -0.053771973, -0.01965332, 0.022979736, 0.068481445, -0.032806396, -0.0017175674, 0.03817749, -0.0017051697, -0.03717041, 0.033050537, 0.031219482, -0.029327393, 0.010063171, -0.0847168, 0.06311035, 0.009971619, -0.07244873, -0.027389526, -0.027420044, 0.008995056, -0.020477295, -0.022247314, -0.02458191, 0.003643036, -0.02494812, -0.009666443, 0.0050811768, 0.015899658, -0.07574463, -0.019180298, -0.012809753, 0.027557373, 0.011405945, 0.06677246, -0.020370483, -0.048706055, -0.011772156, 0.009086609, 0.0075416565, 0.010643005, -0.02722168, 0.0027866364, 0.014930725, 0.043548584, 0.013557434, -0.032409668, 0.06542969, -0.018295288, -0.03164673, -0.05923462, 0.039031982, -0.034973145, -0.04446411, 0.051483154, 0.040924072, 0.01007843, 0.015167236, -0.010574341, -0.06121826, 0.02319336, 0.016677856, -0.12054443, -0.0546875, -0.037322998, -0.03515625, -0.01033783, -0.010215759, -0.031341553, 0.037506104, -0.0004825592, 0.032836914, -0.07208252, -0.03656006, -0.012527466, 0.011627197, 0.0077819824, -0.023269653, 0.011054993, -0.052734375, 0.034088135, -0.08013916, -0.11022949, 0.023513794, 0.025253296, 0.009063721, -0.0033092499, 0.019714355, 0.021072388, -0.02104187, 0.043273926, 0.016723633, -0.02670288, -0.011802673, 0.0013866425, -0.011764526, 0.037872314, -0.011070251, 0.016464233, -0.038238525, 0.024139404, 0.033172607, 0.04397583, -0.061767578, -0.010505676, 0.034362793, 0.044891357, 0.0030174255, -0.000172019, 0.0013837814, -0.024230957, -0.012840271, -0.009353638, -0.016113281, -0.044647217, -0.015930176, -0.04321289, 0.007671356, 0.002401352, 0.0132751465, -0.009674072, 0.008094788, 0.021392822, -0.027938843, 0.01979065, -0.0026893616, -0.020248413, 0.010902405, -0.00033569336, 0.021148682, 0.0033016205, 0.018249512, 0.029785156, -0.033996582, -0.0368042, -0.005695343, 0.017150879, -0.02909851, 0.05557251, -0.04043579, 0.012435913, 0.0345459, -0.052978516, -0.0073776245, 0.0029449463, 0.00090026855, -0.027069092, 0.010101318, 0.0074157715, 0.0087890625, 0.022644043, 0.007144928, 0.06842041, -0.035339355, 0.022399902, -0.029708862, -0.03955078, -0.0044670105, -0.03878784, 0.031677246, -0.008666992, -0.03466797, 0.0072746277, -0.011489868, 0.027069092, 0.01966858, -0.02279663, 0.008552551, -0.00466156, 0.0026435852, 0.015296936, -0.02217102, -0.030532837, -0.022323608, 0.050689697, 0.04260254, -0.029586792, 0.014709473, 0.012771606, -0.0024700165, 0.026931763, -0.006401062, 0.002784729, 0.0040512085, 0.02998352, 0.043640137, -0.013435364, -0.029022217, -0.022537231, -0.019317627, -0.0024585724, 0.009208679, 0.04550171, -0.0044898987, 0.04525757, -0.016052246, 0.025100708, 0.028762817, -0.024047852, 0.019851685, 0.021514893, -0.023345947, 0.009132385, -0.028182983, -0.001033783, -0.019256592, -0.018463135, 0.0053977966, -0.0146484375, -0.014350891, 0.021057129, -0.0101623535, -0.011672974, -0.019210815, -0.0007953644, -0.011039734, 0.010772705, 0.014129639, -0.039794922, 0.030700684, -0.037841797, -0.05178833, -0.019165039, -0.008094788, -0.041168213, 0.050354004, 0.012062073, -0.020050049, 0.031311035, -0.0069618225, -0.0519104, -0.055603027, -0.005680084, -0.009284973, 0.020431519, -0.0013971329, 0.04837036, -0.0028648376, -0.038482666, -0.071899414, 0.01701355, -0.06982422, 0.017944336, -0.024795532, 0.025024414, 0.01360321, 0.008583069, 0.058044434, 0.052612305, 0.014678955, 0.0028324127, -0.042816162, -0.01940918, -0.0009841919, 0.028915405, -0.018920898, -0.020477295, -0.062438965, 0.020141602, 0.01727295, 0.018554688, 0.052886963, -0.0030174255, -0.030380249, -0.015106201, -0.023864746, 0.008728027, -0.003742218, -0.008155823, 0.011123657, 0.013931274, -0.04446411, -0.019012451, -0.010940552, 0.0051994324, 0.023269653, -0.033325195, 0.020553589, -0.022216797, -0.06591797, -0.010299683, -0.018203735, 0.007007599, 0.013580322, -0.049224854, 0.009086609, 0.0032291412, -0.010025024, -0.01776123, 0.010253906, 0.02078247, -0.015022278, 0.0084991455, 0.0022945404, -0.021560669, -0.005569458, -0.019500732, -0.040893555, -0.017120361, 0.04272461, -0.012702942, 0.0031986237, 0.0041275024, -0.030395508, -0.0118637085, -0.009529114, 0.00806427, -0.028335571, -0.039367676, 0.017349243, 0.024658203, -0.0065307617, 0.00025749207, 0.0037574768, -0.0017147064, -0.03756714, -0.0076293945, 0.02456665, -0.020050049, -0.033081055, 0.0026569366, 0.017623901, 0.050994873, -0.030349731, -0.03930664, -0.033447266, 0.013031006, -0.0010328293, 0.006389618, 0.052246094, -0.038970947, 0.008125305, 0.029785156, -0.008178711, -0.022109985, 0.010864258, 0.067871094, 0.0069122314, 0.009414673]}, "B003CV5IGK": {"id": "B003CV5IGK", "original": "Brand: Napoleon\nName: Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel\nDescription: \nFeatures: Up to 11000 BTU's\n304 Stainless steel construction\n7 foot heat radius\nElectronic push button igniter\nPerfect for your backyard\n", "metadata": {"Name": "Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel", "Brand": "Napoleon", "Description": "", "Features": "Up to 11000 BTU's\n304 Stainless steel construction\n7 foot heat radius\nElectronic push button igniter\nPerfect for your backyard", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018737793, 0.04751587, -0.055511475, -0.0024356842, 0.04284668, -0.04977417, 0.024429321, -0.02609253, -0.04248047, 0.0018539429, -0.025665283, 0.016082764, -4.1127205e-06, -0.028656006, 0.029754639, -0.032562256, 0.032226562, -0.014732361, 0.012802124, -0.024429321, -0.0059051514, -0.007095337, 0.033050537, 0.06274414, 0.016937256, -0.041412354, 0.0748291, 0.025772095, 0.016067505, -0.010520935, 0.0317688, -0.006832123, 0.009025574, 0.035125732, -0.023254395, -0.028808594, 0.019851685, -0.007621765, -0.026748657, 0.04876709, 0.035217285, -0.004257202, -0.034606934, -0.0032577515, -0.04559326, -0.021606445, 0.028549194, 0.009231567, -0.0030708313, 0.007270813, 0.024902344, -0.020187378, 0.038482666, 0.009185791, -0.025680542, -0.0041999817, 0.030944824, -0.053466797, 0.0037784576, -0.034942627, -0.020462036, -0.007888794, 0.051605225, 0.021224976, -0.05218506, 0.036010742, 0.08691406, -0.021194458, 0.040649414, -0.10357666, -0.050567627, 0.053588867, -0.030548096, 0.019210815, -0.02670288, -0.016189575, 0.03729248, -0.010185242, 0.009033203, 0.03741455, 0.0129776, -0.006629944, -0.0284729, 0.0082092285, -0.019363403, 0.0143585205, -0.0050086975, -0.01852417, -0.03277588, -0.04660034, -0.022613525, -0.05041504, -0.11029053, 0.07312012, 0.026245117, -0.013656616, -0.057159424, -0.05697632, 0.03161621, 0.008979797, -0.00504303, -0.011695862, -0.014038086, 0.013404846, 0.005832672, 0.06976318, 0.012458801, 0.04562378, 0.032318115, -0.007762909, 0.011634827, -0.0068969727, 0.0041770935, 0.016967773, -0.030838013, -0.039398193, -0.051605225, 0.016525269, -0.016540527, -0.01927185, -0.049224854, -0.007911682, -0.0104904175, 0.0071372986, 0.01499939, 0.008460999, 0.018707275, 0.011695862, -0.021087646, 0.05090332, -0.015930176, -0.009506226, -0.02078247, 0.021820068, -0.013946533, -0.020248413, 0.054992676, -0.0087890625, 0.009597778, 0.003320694, 0.03488159, -0.009803772, -0.0008568764, 0.010879517, -0.033813477, 0.032196045, 0.019134521, -0.008705139, -0.008110046, -0.03970337, -0.022064209, -0.0033302307, 0.013702393, 0.014152527, 0.0017385483, 0.022567749, 0.005092621, -0.002494812, -0.017532349, -0.0076828003, 0.0005970001, -0.009925842, 0.02017212, 0.0073127747, -0.017349243, 0.033203125, -0.00097465515, -0.0012321472, 0.03277588, 0.0947876, -0.0056152344, -0.020858765, 0.033477783, 0.060394287, -0.016525269, 0.009101868, -0.016708374, 0.025283813, 0.07232666, -0.097961426, -0.084228516, -0.04650879, 0.13671875, -0.062194824, 0.012420654, -0.051116943, 0.014892578, -0.048919678, 0.011001587, 0.009498596, 0.020721436, 0.029571533, -0.0038547516, -0.026107788, 0.015991211, -0.002779007, -0.041870117, 0.008865356, -0.010536194, 0.0037193298, -0.02255249, 0.04901123, -0.028137207, 0.027191162, 0.034088135, -0.0019321442, 0.022964478, 0.0046157837, 0.027053833, 0.047332764, -0.022460938, 0.028442383, 0.006416321, -0.08795166, -0.0184021, 0.057250977, -0.03540039, 0.014175415, -0.0021247864, 0.008110046, -0.0008330345, 0.0093307495, 0.007881165, -0.020477295, 0.008865356, -0.0259552, -0.007911682, -0.022583008, 0.021102905, -0.011917114, 0.025497437, 0.020309448, 0.07550049, 0.10772705, 0.043182373, 0.035369873, 0.0713501, -0.0041923523, -0.023925781, -0.025741577, 0.015388489, -0.009117126, 0.0039787292, 0.03845215, 0.002696991, 0.029418945, 0.044036865, -0.02645874, -0.0061187744, 0.0051651, 0.026733398, 0.007713318, 0.017318726, 0.045684814, -0.0047836304, 0.015548706, 0.008926392, 0.02494812, -0.017166138, 0.018005371, -0.012832642, 0.068115234, 0.021759033, 0.022460938, 0.043151855, -0.0057907104, 0.037750244, 0.039245605, -0.026748657, -0.010551453, 0.028182983, 0.04815674, -0.01739502, -0.0154953, -0.008514404, -0.02709961, -0.02998352, 0.04248047, -0.041381836, -0.048339844, 0.016540527, -0.04156494, -0.037384033, 0.0031642914, 0.06738281, 0.006980896, 0.009719849, 0.023468018, -0.07318115, -0.007331848, 0.018325806, 0.01020813, -0.02482605, 0.002922058, -0.012664795, 0.008659363, 0.056610107, 0.007472992, 0.001865387, -0.019821167, 0.005748749, 0.024536133, -0.028442383, -0.007331848, -0.011734009, 0.040527344, 0.0093307495, 0.0031547546, -0.008262634, 0.0034828186, -0.014633179, -0.005882263, 0.020263672, 0.04269409, -0.0069007874, -0.0060653687, -0.0010766983, 0.038970947, 0.037475586, 0.010910034, -0.015541077, -0.0013628006, -0.022140503, -0.041870117, 0.010375977, 0.0050964355, -0.05496216, 0.002090454, 0.011581421, 0.012962341, 0.009841919, -0.0038604736, -0.0149383545, -0.024291992, 0.0022830963, 0.01411438, -0.011207581, 0.023406982, -0.015083313, -0.055847168, -0.01890564, -0.025604248, 0.007873535, -0.0076675415, -0.008232117, -0.002614975, 0.00623703, 0.011154175, -0.08166504, 0.0023536682, 0.0005917549, -0.049346924, 0.0034255981, -0.02418518, 0.025558472, 0.021514893, -0.03149414, -0.007106781, 0.031280518, -0.047210693, -0.0064315796, 0.014625549, -0.003900528, 0.01928711, 0.011238098, -0.04916382, -0.007221222, 0.013557434, -0.037139893, -0.013298035, 0.026855469, -0.0027275085, -0.06982422, -0.03756714, -0.050628662, 0.009864807, 0.014762878, -0.04626465, 0.016830444, -0.0015392303, 0.010643005, -0.00806427, 0.051696777, -0.009216309, -0.009117126, 0.002029419, -0.019638062, -0.0040779114, 0.034332275, 0.0021953583, 0.02583313, 0.031585693, -0.0045280457, -0.006652832, 0.009254456, 0.0031337738, -0.05871582, -0.015434265, -0.06640625, 0.018966675, -0.049346924, 0.009063721, -0.0016231537, -0.017349243, 0.013023376, -0.04748535, -0.013587952, -0.028076172, -0.008216858, 0.05999756, 0.0034694672, -0.03314209, -0.005138397, -0.019882202, 0.02017212, -0.009765625, 0.045776367, -0.004272461, 0.028167725, -0.019302368, 0.023468018, -0.05065918, 0.015045166, 0.0107040405, -0.0236969, 0.031829834, -0.026260376, 0.0020713806, 0.023239136, 0.017044067, -0.0014028549, -0.0016622543, -0.0026245117, 0.016860962, -0.008018494, 0.04498291, 0.0060424805, 0.00806427, 0.03604126, -0.021942139, -0.044677734, -0.044036865, -0.014274597, 0.039916992, -0.015975952, 0.014518738, -0.039916992, -0.043518066, 0.007335663, -0.028640747, -0.0067443848, -0.016845703, 0.04119873, 0.025177002, 0.0019760132, 0.08282471, 0.012214661, 0.03930664, 0.0435791, -0.022766113, -0.03086853, -0.03640747, 0.039886475, 0.006149292, 0.008583069, -0.02420044, 0.032226562, 0.0077819824, -0.01398468, 0.009475708, -0.0051612854, 0.013114929, 0.029067993, -0.0066223145, -0.019439697, 0.009429932, 0.028244019, 0.0018157959, -0.023773193, -0.027053833, -0.0769043, 0.01939392, -0.0524292, 0.059265137, 0.045654297, -0.02067566, 0.10101318, 0.044708252, 0.021469116, 0.04095459, 0.024337769, -0.012008667, -0.011894226, 0.06542969, -0.016113281, 0.018341064, 0.0026397705, 0.0031318665, 0.011940002, -0.013641357, -0.011314392, 0.02998352, 0.035705566, -0.016845703, -0.050354004, -5.5372715e-05, 0.017364502, 0.0013017654, 0.007598877, -0.043640137, -0.0076828003, -0.037353516, -0.00021481514, 0.00945282, -0.039215088, -0.060913086, -0.011947632, 0.021972656, -0.08569336, 0.0132369995, -0.0016670227, 0.0056610107, -0.031280518, 0.026977539, 0.052642822, -0.010795593, -0.048431396, 0.021865845, -0.038970947, 0.028747559, 0.027832031, 0.05596924, 0.036987305, -0.020843506, -0.03036499, -0.027053833, -0.008918762, 0.0029640198, -0.04058838, -0.04196167, 0.002275467, 0.040161133, 0.018112183, -0.010696411, -0.0005264282, -0.030532837, -0.020324707, -0.013885498, -0.030532837, -0.008575439, -0.02305603, -0.013969421, -0.08746338, -0.0473938, -0.02696228, -0.00095033646, -0.012145996, -0.00025844574, -0.024002075, -0.0061569214, 0.031402588, 0.02923584, -0.050720215, -0.024414062, -0.016235352, 0.013183594, 0.0061912537, -0.021270752, 0.01576233, -0.04446411, 0.015701294, -0.007736206, 0.08337402, -0.009880066, 0.009162903, -0.022918701, -0.036865234, 0.0011587143, 0.01209259, 0.050567627, -0.008033752, 0.03363037, -0.03277588, -0.008666992, -0.06896973, 0.026779175, 0.04852295, -0.025131226, -0.03604126, -0.00034451485, 0.057922363, 0.0015249252, 0.009742737, -0.04055786, 0.010749817, 0.011436462, 0.010345459, -0.067871094, -0.070739746, 0.011802673, -0.0418396, 0.010597229, -0.007537842, -0.03793335, 0.047668457, 0.044525146, 0.015548706, -0.047302246, -0.0039863586, 0.020477295, -0.0012435913, -0.0062179565, -0.0048294067, 0.0033569336, -0.014953613, 0.028305054, -0.061645508, 0.040985107, 0.047821045, -0.0027866364, 0.012382507, -0.0071144104, 0.011741638, -0.00920105, -0.013214111, -0.028533936, -0.037750244, -0.03729248, -0.019241333, 0.032165527, -0.0068359375, 0.018615723, -0.022018433, -0.031677246, 0.012062073, 0.03326416, -0.013694763, -0.0084991455, -0.014801025, -0.023620605, -0.026000977, 0.02142334, 0.002527237, -0.037597656, 0.051727295, -0.039215088, -0.022109985, 0.010848999, -0.02909851, -0.025909424, -0.015975952, 0.0049209595, 0.0076522827, 0.04434204, -0.028411865, 0.042633057, -0.057739258, 0.042388916, -0.007598877, 0.0209198, -0.04940796, 0.035827637, 0.021835327, -0.0004181862, 0.038116455, 0.01373291, 0.017578125, 0.026321411, -0.0016679764, 0.009033203, 0.004310608, -0.04611206, 0.028259277, 0.043426514, 0.03591919, -0.045928955, 0.030929565, -0.013870239, -0.0418396, -0.03604126, 0.015014648, -0.003643036, 0.025848389, 0.0010166168, -0.042297363, 0.039642334, -0.06695557, -0.024993896, 0.0037994385, 0.013198853, 0.004234314, 0.022735596, -0.0010700226, -0.023910522, 0.0013570786, -0.021011353, -0.026916504, -0.0052948, -0.022994995, -0.014144897, 0.0079956055, 0.0061302185, -0.0069503784, -0.014701843, -0.013633728, -0.0055770874, -0.03274536, -0.0017261505, 0.0044670105, 0.0020141602, -0.005947113, -0.009178162, 0.017471313, 0.008674622, 0.00806427, -0.018341064, -0.0058631897, -0.017288208, -0.05126953, 0.03555298, -0.024414062, -0.014198303, 0.046173096, 0.001458168, 0.023727417, 0.02482605, -0.019683838, -0.017562866, 0.02067566, 0.04724121, 0.003446579, -0.011039734, 0.06768799, -0.036895752, -0.010917664, -0.1227417, 0.024276733, 0.0054893494, -0.036315918, 0.066345215, 0.031829834, 0.0016717911, 0.024215698, -0.021820068, -0.046966553, 0.012481689, 0.0014152527, -0.0960083, -0.012237549, -0.024917603, 0.0018835068, -0.013916016, -0.0088272095, -0.023651123, 0.018814087, -0.052947998, -0.027908325, -0.00843811, -0.008682251, 0.0019798279, -0.027999878, 0.005405426, -0.009750366, 0.0149002075, -0.021881104, 0.021011353, -0.027145386, -0.022369385, -0.007232666, 0.049468994, 0.031707764, 0.01979065, -0.006881714, 0.017868042, -0.07373047, 0.04510498, -0.0017004013, -0.0055885315, -0.0043182373, 0.04446411, 0.01651001, 0.03656006, -0.058776855, -0.02444458, -0.027435303, -0.007507324, 0.08416748, -0.008590698, 0.033691406, 0.057922363, 0.07373047, -0.010543823, -0.0055236816, 0.0043258667, 0.012138367, 0.009170532, -0.03189087, -0.017364502, 0.017227173, -0.03466797, -0.01109314, -0.03540039, -0.012588501, 0.001704216, -0.028305054, 0.001698494, -0.023864746, 0.03378296, 0.022644043, -0.009422302, 0.013877869, 0.011413574, -0.0034046173, -0.005264282, -0.052124023, 0.04058838, 0.013381958, -0.005645752, 0.025100708, 0.022155762, -0.013061523, 0.0154418945, 0.010955811, 0.015541077, -0.01751709, 0.010551453, 0.0317688, -0.041229248, -0.0033454895, -0.007522583, 0.011100769, -0.00843811, -0.016998291, -0.0026454926, 0.010627747, 0.009185791, -0.0073051453, -0.010215759, 0.008811951, 0.0070152283, -0.02709961, 0.033203125, -0.0340271, -0.03353882, 0.044067383, 0.0010852814, 0.0154418945, -0.010093689, -0.032196045, 0.011993408, 0.06347656, -0.022155762, 0.021255493, 0.033813477, 0.010177612, -0.05307007, -0.009635925, -0.029724121, -0.039154053, -0.008369446, -0.0057258606, 0.011398315, 0.022460938, -0.007019043, 0.020950317, 0.002248764, 0.005908966, -0.0004940033, -0.01084137, -0.018371582, 0.016998291, 0.0063438416, 0.01802063, -0.020584106, -0.014205933, 0.012367249, 0.020767212, -0.033294678, 0.025741577, 0.009941101, 0.021591187, 0.00023245811, 0.056671143, -0.0027885437, 0.013442993, -0.036987305, 0.012145996, 0.013710022, 0.04626465, -0.0126953125, 0.003730774, 0.00447464, -0.0069999695, 0.041412354, 0.051635742, 0.0309906, 0.0031795502, 0.0098724365, -0.013336182, -0.019378662, -0.0050239563, -0.0018548965, 0.038757324, -0.02760315, 0.018692017, -0.0042877197, -0.0071258545, -0.031555176, -0.0044670105, -0.015808105, 0.02507019, 0.013923645, -0.00137043, 0.025939941, -0.018539429, 0.02166748, -0.01374054, 0.01361084, 0.04269409, -0.002527237, 0.012268066, 0.085876465, -0.041107178, -0.09564209, -0.09881592, 0.03491211, -0.12359619, 0.02331543, 0.03265381, -0.02293396, -0.013435364, -0.014266968, 0.0044174194, 0.031799316, 0.04916382, -0.01927185, 0.033477783, -0.044036865, 0.0064430237, -3.8266182e-05, 0.02217102, -0.03805542, -0.06500244, -0.015045166, 0.015174866, 0.04559326, 0.03289795, 0.014633179, -0.040222168, -0.0060806274, -0.032348633, 0.012161255, -0.033355713, 0.0050621033, -0.010002136, -0.017333984, -0.06378174, -0.015045166, 0.006500244, 0.041107178, 0.029830933, 0.04525757, 0.035369873, -0.017318726, -0.0463562, -0.06149292, -0.018539429, 0.042266846, 0.009147644, -0.020263672, 0.015098572, 0.024108887, -0.02268982, 0.0022563934, 0.01914978, 0.0051956177, 0.030853271, 0.004348755, 0.04321289, 0.02633667, -0.030075073, 0.056640625, -0.026824951, -0.05038452, -0.004634857, 0.017562866, -0.021987915, -0.033081055, -0.029327393, 0.021499634, -0.02532959, -0.027862549, -0.040985107, -0.04824829, 0.032043457, 0.048919678, -0.008140564, 0.055358887, -0.014221191, -0.0014886856, -0.009475708, 0.004627228, 0.0053520203, -0.0027103424, -0.021850586, 0.033325195, -0.011772156, 0.026473999, -0.015579224, -0.040252686, -0.0602417, 0.06488037, 0.026916504, -0.023880005, 0.0541687, -0.01272583, 0.019805908, 0.0045318604, -0.053009033, 0.0058631897, -0.013031006, -0.0013179779, -0.040618896, -0.010032654]}, "B08XBC336Y": {"id": "B08XBC336Y", "original": "Brand: GeiSerailie\nName: 2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking\nDescription:
      Features:

      Nice gifts for BBQ lover:
      This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

      Practical and useful:
      These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

      Specifications:
      Material: stainless steel, wood
      Color: as the picture shown
      Quantity: 2 pieces

      Package include:
      1 x Grill spatula
      1 x Barbecue tong

      Note:
      Pointed parts include, please use it carefully and keep away from kids.
      Manual measurement, please allow slight errors on size.
      The colors may exist slight difference due to different screens.\nFeatures: Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier\nThickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ\nLong handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control\nMultiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat\nEasy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you\n", "metadata": {"Name": "2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking", "Brand": "GeiSerailie", "Description": "
      Features:

      Nice gifts for BBQ lover:
      This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

      Practical and useful:
      These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

      Specifications:
      Material: stainless steel, wood
      Color: as the picture shown
      Quantity: 2 pieces

      Package include:
      1 x Grill spatula
      1 x Barbecue tong

      Note:
      Pointed parts include, please use it carefully and keep away from kids.
      Manual measurement, please allow slight errors on size.
      The colors may exist slight difference due to different screens.", "Features": "Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier\nThickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ\nLong handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control\nMultiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat\nEasy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0045318604, -0.0035800934, -0.025039673, -0.008392334, -0.014572144, -0.012199402, 0.0012540817, -0.0035152435, -0.03253174, 0.03250122, 0.017791748, 0.013008118, 0.022033691, -0.02722168, 0.001950264, -0.028289795, 0.016540527, 0.026657104, 0.03152466, -0.024124146, 0.0002887249, -0.025375366, 0.022155762, 0.034820557, 0.08538818, -0.053253174, -0.032287598, 0.0064353943, 0.05557251, 0.012207031, 0.05230713, -0.021316528, 0.047912598, 0.002286911, -0.049804688, -0.027282715, -0.008552551, -0.0024967194, -0.034088135, 0.011756897, 0.033996582, -0.015258789, -0.050354004, 0.044281006, -0.04837036, -0.005470276, -0.0064315796, -0.014724731, 0.040283203, 0.0463562, 0.033203125, 0.010009766, 0.021255493, -0.008850098, -0.018951416, -0.018417358, 0.009559631, -0.028213501, 0.005191803, 0.03677368, 0.0041618347, -0.0059928894, 0.004600525, -0.019226074, -0.07269287, -0.0030078888, 0.031280518, -0.02748108, -0.04724121, -0.079956055, 0.034454346, -0.0050468445, 0.022964478, -0.024459839, -0.0035266876, -0.04095459, -0.0042495728, -0.041381836, 0.019470215, 0.0018148422, -0.026657104, -0.03540039, 0.041259766, -0.041412354, 0.018859863, -0.0063171387, -0.021942139, -0.0041656494, 0.012008667, -0.011009216, 0.008544922, -0.010864258, -0.07458496, 0.0982666, 0.031143188, 0.005207062, -0.027114868, -0.0231781, -0.007534027, 0.026855469, 0.026138306, -0.035491943, 0.062683105, -0.02798462, -0.024459839, -0.012260437, -0.00982666, -0.013916016, -0.017944336, 0.03225708, -0.042144775, -0.030273438, 0.021240234, -0.00724411, -0.024398804, -0.020736694, 0.0025100708, -0.012275696, 0.014266968, -0.0546875, -0.04272461, -0.011817932, -0.00017142296, 0.02305603, 0.05429077, 0.057556152, 0.022277832, 0.0015916824, 0.044403076, -0.026153564, -0.042633057, -0.003955841, 0.068603516, 0.049591064, 0.03111267, -0.013916016, 0.02607727, -0.024856567, -0.006916046, 0.019760132, -0.018966675, -0.0046081543, 0.03074646, -0.03137207, 0.014335632, -0.004295349, 0.03074646, 0.033721924, -0.0033664703, -0.0010643005, 0.010131836, 0.042053223, 0.04714966, -0.011878967, -0.0715332, -0.031829834, -0.046142578, -0.015670776, -0.011100769, -0.05529785, -0.046417236, -0.024307251, 0.0068893433, -0.047027588, -0.0513916, 0.028701782, 0.0035800934, 0.00856781, 0.003358841, 0.019470215, -0.004306793, 0.013114929, -0.030548096, -0.025039673, -0.0043029785, -0.014755249, -0.02810669, 0.05343628, 0.05633545, -0.078552246, -0.03552246, -0.041381836, 0.1015625, -0.023803711, 0.006259918, -0.032806396, 0.011932373, 0.0028419495, 0.030899048, 0.024978638, -0.015449524, -0.00089263916, -0.021850586, 0.026824951, 0.0031051636, 0.019073486, -0.026626587, 0.041534424, -0.0028495789, -0.0692749, -0.007820129, -0.008972168, 0.015159607, -0.015640259, -0.04763794, 0.007774353, -0.02859497, 0.037994385, -0.0018987656, 0.049591064, 0.0036849976, -0.006790161, -0.001783371, -0.03186035, 0.0061531067, -0.016311646, -0.028289795, -0.012123108, 0.00983429, 0.024169922, 0.030960083, 0.013221741, 0.011482239, -0.012229919, 0.01209259, 0.027145386, -0.029144287, 0.026031494, 0.021072388, 0.036132812, -0.010986328, -0.010902405, 0.08166504, 0.091796875, -0.020584106, 0.03253174, 0.019058228, 0.057800293, -0.026687622, -0.019760132, 0.006801605, -0.005756378, -0.03289795, 0.020736694, 0.037261963, -0.0014476776, -0.007095337, 0.0044822693, 0.0019207001, -0.009002686, 0.033935547, -0.015792847, 0.028900146, -0.014884949, 0.01499939, 0.01461792, -0.051605225, -0.002822876, -0.05126953, 0.05090332, -0.030044556, -0.033813477, 0.056762695, -0.038360596, 0.06185913, 0.0158844, 0.03112793, 0.022323608, -0.0129852295, 0.034576416, -0.013916016, -0.083618164, -0.007820129, 0.0032081604, 0.059631348, -0.06866455, -0.028076172, 0.013145447, -0.025985718, -0.0129470825, 0.0099487305, 0.039733887, 0.06719971, -0.011497498, 0.014801025, 0.007331848, 0.017974854, -0.03225708, 0.013008118, -0.016143799, 0.009002686, 0.01651001, -0.022903442, 0.030944824, 0.010826111, -0.03540039, 0.045196533, 0.08660889, -0.027709961, 0.015579224, -0.012573242, 0.0041542053, -0.05227661, 0.010787964, -0.026657104, 0.022109985, -0.033111572, 0.014984131, -0.0030174255, -0.087402344, 0.054473877, 0.021621704, 0.022216797, 0.03552246, 0.033294678, 0.0075416565, 0.029586792, 0.058532715, 0.055541992, 0.021575928, -0.0008544922, -0.023483276, -0.0284729, -0.0017747879, -0.018051147, 0.020507812, -0.02029419, -0.006374359, -0.053375244, 0.023513794, 0.04824829, 0.011726379, 0.048095703, 0.015357971, 0.0010309219, -0.028701782, -0.0010242462, -0.019500732, -0.018203735, -0.015022278, -0.012329102, -0.03111267, 0.008369446, -0.037719727, -0.01838684, 0.021072388, -0.0077667236, 0.020248413, -0.023895264, 0.018493652, -0.020843506, -0.03100586, 0.033416748, -0.0026626587, 0.036376953, -0.0013113022, -0.047210693, 0.005367279, 0.0065574646, -0.059448242, -0.028686523, 0.034210205, -0.029510498, 0.01902771, 0.0014925003, -0.044067383, 0.025314331, 0.015350342, 0.022476196, 0.009796143, 0.030319214, 0.005268097, -0.041992188, -0.023498535, -0.0018167496, -0.01914978, 0.0025177002, -0.05621338, 0.012992859, -0.0015335083, -0.028442383, 0.0385437, -0.026412964, 0.06817627, 0.0037784576, 0.03829956, 0.05050659, 0.055267334, -0.012435913, -0.047058105, -0.009101868, 0.060699463, -0.050872803, -0.028503418, -0.03704834, 0.008453369, 0.036987305, -0.041168213, 0.04248047, -0.03479004, -0.09613037, 0.0036411285, -0.019165039, -0.037506104, 0.009338379, -0.027557373, -0.032409668, -0.05154419, 0.011497498, 0.013641357, -0.017105103, 0.012886047, -0.048919678, 0.02407837, -0.008056641, -0.019866943, 0.06738281, 0.0020542145, -0.0030326843, -0.06021118, 0.035888672, -0.047424316, 0.03552246, 0.0051002502, -0.013694763, -0.029693604, 0.034362793, 0.011558533, -0.015357971, 0.053009033, 0.017608643, -0.02696228, -0.015274048, -0.011039734, -0.033966064, -0.0039520264, -0.006629944, 0.010093689, 0.018127441, -0.023117065, -0.0027713776, -0.010749817, -0.045043945, 0.032043457, -0.013214111, -0.03060913, -0.02861023, -0.025604248, 0.0048828125, -0.0001642704, -0.022628784, 0.0009994507, 0.017349243, 0.020370483, -0.01725769, 0.048614502, 0.012382507, 0.027542114, 0.055725098, -0.020248413, -0.04473877, -0.026000977, 0.030456543, -0.0088272095, 0.021560669, -0.05432129, 0.023986816, -0.010421753, -0.016616821, 0.01399231, -0.014442444, 0.0501709, 0.0121154785, -0.0047454834, 0.033721924, 0.018875122, -0.018829346, 0.021697998, -0.067871094, -0.008178711, -0.056121826, -0.013298035, -0.10308838, 0.08929443, 0.015312195, -0.01739502, 0.067993164, 0.09490967, -0.0077056885, 0.014526367, -0.009918213, 0.014755249, 0.010169983, 0.026184082, -0.008544922, 0.015357971, 0.00447464, -0.0056037903, 0.066223145, 0.023101807, -0.030197144, 0.0042648315, 0.0040740967, -0.070617676, 0.0026359558, 0.0024375916, 0.021270752, -0.008384705, -0.0028762817, -0.013130188, 0.03125, -0.026245117, -0.010353088, 0.012512207, -0.034851074, -0.048034668, 0.010154724, 0.024124146, -0.06903076, 0.004184723, -0.006095886, 0.0069885254, -0.0050811768, 0.033721924, 0.008934021, 0.01876831, -0.061553955, 0.032806396, -0.021347046, 0.031051636, 0.04928589, 0.0033302307, 0.026748657, -0.029907227, 0.011764526, -0.011581421, -0.017242432, -0.0036373138, 0.020263672, -0.01890564, 0.008628845, 0.01876831, -0.029968262, 0.0043144226, 0.0045433044, -0.050598145, -0.043701172, -0.006855011, -0.036743164, -0.0026817322, -0.009361267, -0.028244019, -0.076660156, -0.0011062622, 0.028320312, -0.070007324, -0.08337402, 0.0357666, 0.002445221, -0.05557251, -0.0064468384, 0.050567627, -0.05682373, -0.005718231, -0.062683105, -0.010345459, 0.050872803, 0.035369873, 0.0005226135, -0.0073127747, -0.040222168, -0.015853882, 0.085998535, -0.00067186356, -0.000579834, -0.045715332, -0.013374329, 0.010360718, 0.049804688, 0.07122803, 0.012710571, 0.030883789, -0.042388916, 0.001947403, -0.04147339, -0.019546509, 0.03878784, -0.058013916, -0.0317688, -0.032043457, 0.060272217, -0.005836487, 0.02607727, -0.0054779053, -0.0076446533, -0.024505615, -0.013221741, -0.02998352, 0.012672424, -0.0014276505, -0.05343628, -0.0045051575, -0.0054855347, -0.012496948, 0.05404663, 0.023742676, -0.047454834, -0.024612427, -0.020751953, -0.049621582, 0.004180908, 0.0013656616, -0.009635925, 0.022277832, -0.051727295, 0.016983032, -0.03353882, 0.08306885, 0.072509766, -0.037384033, -0.016906738, 0.013748169, -0.034820557, -0.048980713, -0.00094270706, -0.000893116, 0.0107040405, -0.017456055, -0.04421997, -0.0011491776, -0.049194336, 0.0019464493, -0.016555786, -0.0014915466, 0.0025501251, -0.011764526, 0.0053863525, -0.029647827, -0.005783081, -0.0036945343, 0.00504303, 0.05621338, 0.016036987, -0.029953003, 0.02444458, -0.025131226, -0.015220642, -0.021652222, -0.001876831, -0.019515991, 0.017303467, 0.009384155, -0.07098389, 0.032409668, 0.061645508, -0.005580902, 0.0058898926, 0.025177002, -0.0010385513, -0.0031356812, 0.00831604, 0.033172607, -0.026641846, -0.011116028, 0.025634766, -0.012535095, 0.028900146, 0.012161255, -0.020996094, 0.034423828, -0.016784668, -0.0107040405, 0.044952393, -0.024490356, -0.015258789, 3.2007694e-05, 0.016647339, 0.006008148, 0.008903503, -0.0345459, -0.008636475, 0.02015686, 0.07696533, 0.0029621124, -0.036376953, 0.053771973, 0.005897522, -0.041259766, 0.011390686, 0.015464783, -0.035827637, 0.0039634705, -0.00045490265, -0.019454956, -0.013961792, 0.0064888, -0.014945984, -0.03756714, -0.0002644062, -0.021606445, 0.005054474, -0.012229919, -0.021957397, -0.034851074, 0.0073890686, -0.0037288666, -0.0463562, -0.017822266, 0.012901306, 0.020050049, -0.00667572, 0.005680084, 0.02708435, 0.004005432, 0.0003540516, -0.04812622, -0.024093628, -0.009819031, -0.034454346, 0.040924072, -0.010810852, 0.018081665, 0.029327393, -0.016296387, 0.027496338, 0.027923584, -0.03189087, 0.012268066, -0.004486084, 0.005344391, -0.024551392, -0.018981934, 0.062927246, -0.0423584, -0.038330078, -0.042999268, 0.026779175, 0.0005631447, -0.0027942657, 0.017837524, -0.034973145, -0.0007801056, 0.021347046, -0.015281677, -0.025817871, -0.005844116, -0.0013666153, -0.047912598, 0.019699097, -0.013198853, 0.047332764, -0.0031166077, -0.004081726, -0.03994751, 0.03466797, -0.037506104, -0.009361267, -0.051879883, -0.02319336, -0.0022335052, -0.023071289, 0.004863739, -0.041900635, -0.011314392, -0.03555298, -0.020385742, -0.007347107, -0.003900528, 0.009986877, 0.056762695, 0.022415161, -0.029434204, 0.025680542, 0.0657959, -0.05505371, 0.08856201, -0.033081055, 0.0107803345, 0.005809784, 0.02470398, 0.0062332153, 0.026809692, 0.0067100525, 0.0009455681, -0.006603241, -0.0126953125, 0.047912598, -0.0181427, -0.027557373, -0.017684937, 0.06274414, 0.030960083, 0.0026226044, -0.03527832, -0.008460999, -0.0015993118, -0.0045661926, -0.016036987, -0.032073975, -0.0137786865, -0.025024414, -0.031555176, -0.010551453, 0.022766113, -0.01272583, 0.029037476, 0.008903503, 0.025390625, -0.01751709, 0.013954163, 0.0072517395, -0.0055274963, 0.008575439, -0.04058838, -0.032226562, -0.017974854, 0.022720337, 0.01486969, -0.0077056885, -0.0019445419, -0.033416748, 0.0056877136, 0.007820129, 0.020004272, -0.019424438, 0.006072998, 0.019134521, -0.015281677, 0.004928589, 0.0234375, 0.010169983, -0.004196167, -0.055786133, -0.03805542, 0.007091522, 0.041015625, -0.012687683, 0.029403687, 0.00019097328, 0.013717651, -0.010025024, -0.015434265, -0.013015747, -0.015472412, -0.027160645, 0.0018806458, 0.010375977, 0.005924225, -0.017089844, -0.006084442, 0.031402588, -0.037109375, -0.02772522, -0.01524353, 0.030807495, -0.022994995, 0.03643799, -0.024932861, -0.021865845, 0.005935669, 0.002090454, 0.007446289, 0.052825928, 0.038085938, -0.018341064, 0.0010633469, -0.03164673, 0.0063095093, 0.022125244, -0.0022640228, 0.029144287, 0.0067634583, -0.02607727, -0.019454956, -0.012298584, -0.026107788, 0.029785156, -0.002866745, 0.006793976, 0.061065674, 0.009094238, 0.038513184, 0.07928467, 0.014549255, 0.031311035, 0.014015198, -0.0033435822, -0.019195557, -0.04257202, 0.0014877319, -0.054107666, -0.021896362, 0.0070877075, -0.009277344, 0.005332947, 0.060180664, 0.021743774, -0.011268616, -0.025390625, 0.003578186, 0.01133728, -0.019470215, 0.002538681, -0.027053833, -0.026779175, -0.026870728, -0.016448975, -0.009483337, -0.03250122, -0.06628418, 0.050231934, -0.026931763, -0.0025959015, 0.0065689087, -0.026687622, 0.017547607, -0.022323608, 0.02407837, 0.017913818, 0.05722046, 0.018310547, 0.08312988, -0.044799805, -0.0736084, -0.051940918, 0.027175903, -0.05014038, -0.018737793, -0.007827759, 0.025268555, 0.035888672, -0.008995056, -0.063964844, 0.062164307, -0.018051147, -0.022003174, -0.043945312, -0.07922363, -0.039123535, 0.05758667, -0.025024414, -0.009651184, -0.03878784, 0.078186035, -0.02166748, 0.049621582, 0.005393982, -0.04257202, -0.03768921, -0.016677856, -0.0390625, -0.010971069, -0.010299683, -0.0073509216, 0.0075035095, -0.0079956055, -0.048187256, -0.03894043, 0.013725281, 0.009552002, 0.019714355, -0.0008482933, -0.01979065, -0.036224365, 0.0103302, -0.008796692, -0.005622864, 0.013595581, 0.0073051453, 0.008705139, 0.013839722, -0.008934021, -0.027633667, 0.01109314, 0.0016412735, -0.048980713, 0.000521183, -0.010894775, 0.038879395, -0.018966675, -0.011756897, -0.0036640167, -0.033843994, -0.05908203, 0.026351929, 0.01979065, -0.029693604, -0.00409317, -0.008895874, -2.2888184e-05, 0.0009484291, -0.020767212, -0.0024681091, -0.08239746, 0.045410156, 0.035217285, 0.0057907104, 0.011795044, 0.007873535, -0.04574585, -0.0044136047, 0.007583618, -0.004047394, -0.0181427, -0.011955261, 0.03579712, -0.008911133, 0.05203247, 0.02772522, -0.023788452, -0.026367188, 0.06500244, 0.004257202, -0.05328369, 0.00957489, -0.023834229, 0.0087890625, 0.023590088, -0.012863159, -0.002286911, -0.00970459, 0.021896362, 0.0020599365, -0.007106781]}, "B077SP5BJP": {"id": "B077SP5BJP", "original": "Brand: GasOne\nName: GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black\nDescription: \nFeatures: \u2713 propane adapter that saves money - Gas one's propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can't recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money!\n\u2713 STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One's propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting\n\u2713 extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter's solid bras materials ensure longevity as well as Universal usage\n\u2713 GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience\n\u2713 easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you're ready to refill! / fits Qcc1/Type1 & 1lb propane tanks\n", "metadata": {"Name": "GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black", "Brand": "GasOne", "Description": "", "Features": "\u2713 propane adapter that saves money - Gas one's propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can't recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money!\n\u2713 STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One's propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting\n\u2713 extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter's solid bras materials ensure longevity as well as Universal usage\n\u2713 GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience\n\u2713 easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you're ready to refill! / fits Qcc1/Type1 & 1lb propane tanks", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.024459839, -0.0060768127, -0.033569336, -0.0013179779, -0.029754639, -0.0005502701, -0.011024475, 0.012313843, 0.013923645, -0.0076789856, -0.030792236, -0.0043258667, 0.0016870499, -0.033691406, 0.0059776306, -0.026763916, 0.0057640076, -0.00090789795, -0.006893158, -0.041900635, 0.021697998, -0.04321289, -0.016357422, 0.109436035, -0.01612854, 0.00466156, 0.04776001, -0.02243042, -0.005428314, -0.038208008, 0.0035190582, 0.0259552, 0.035827637, -0.010253906, -0.033172607, -0.04006958, -0.009689331, -0.032836914, -0.042785645, 0.0211792, 0.0134887695, -0.0020637512, 0.009941101, -0.023803711, -0.015090942, -0.010574341, 0.013839722, -0.013534546, 0.004962921, 0.040924072, 0.0074386597, -0.028045654, 0.009475708, 0.028121948, -0.0028820038, 0.007751465, 0.0024967194, -0.032196045, -0.0017061234, -0.020767212, -0.0041389465, 0.008987427, 0.02999878, 0.026641846, -0.079833984, 0.03100586, 0.024154663, -0.034179688, 0.019683838, -0.08276367, -0.040100098, 0.021530151, 0.009216309, 0.00907135, -0.06817627, -0.023284912, 0.035369873, -0.030471802, 0.015930176, -0.0073165894, -0.0049591064, -0.034423828, 0.025314331, 0.016464233, -0.020584106, 0.009140015, -0.015449524, -0.01184082, -0.02468872, -0.012519836, -0.024291992, -0.00032520294, -0.016555786, 0.0052833557, -0.03112793, -0.007621765, -0.021087646, -0.03656006, 0.020858765, 0.018341064, 0.025039673, -0.044830322, 0.05419922, -0.012573242, 0.012252808, 0.019699097, 0.0015954971, -0.03829956, 0.026763916, 0.0010004044, -0.023025513, 0.09484863, -0.018035889, -0.02897644, 0.010360718, 0.060577393, -0.016235352, 0.016601562, -0.002790451, 0.018829346, 0.023025513, 0.018341064, 0.011230469, -0.05480957, -0.011260986, -0.047180176, -0.05419922, 0.00920105, -0.04949951, 0.052093506, -0.017730713, -0.026626587, 0.028244019, 0.06048584, 0.023376465, -0.020339966, 0.04031372, 0.017852783, 0.042663574, -0.031051636, 0.03567505, -0.016937256, -0.0028018951, 0.057739258, 0.016906738, 0.036346436, 0.015289307, -0.008811951, 0.0211792, -0.030380249, -0.033050537, 0.0003643036, 0.029571533, -0.034851074, 0.0006542206, -0.037261963, -0.03692627, -0.006816864, 0.030975342, 0.0027275085, -0.049072266, -0.0105896, 0.017669678, 0.0082092285, 0.018127441, 0.021865845, 0.018753052, 0.004940033, 0.003862381, 0.045928955, -0.022018433, 0.051879883, 0.0036811829, -0.0126571655, -0.008544922, -0.043182373, -0.024429321, 0.07696533, 0.05404663, -0.07244873, -0.030914307, -0.04626465, 0.1315918, -0.024765015, 0.019973755, -0.041748047, 0.01586914, -0.055664062, -0.008506775, -0.003982544, 0.018112183, 0.064697266, -0.016601562, -0.05819702, 0.014137268, 0.03451538, -0.053588867, 0.007801056, -0.006866455, -0.016937256, -0.04385376, -0.028366089, 0.051239014, -0.021026611, -0.008262634, -0.02255249, -0.009788513, 0.033966064, -0.0012130737, 0.017028809, 0.007259369, 0.004627228, -0.003227234, -0.030181885, -0.0071792603, 0.01083374, 0.0023002625, 0.01247406, 0.0033512115, -0.03491211, 0.068237305, -0.036468506, 0.05126953, 0.0758667, -0.029800415, -0.009063721, -0.025283813, -0.0060157776, -0.037750244, -0.012893677, 0.029846191, 0.048065186, 0.068603516, 0.04034424, -0.031463623, 0.024780273, 0.093688965, 0.035125732, -0.016418457, -0.006542206, 0.011489868, -0.01663208, 0.0035953522, 0.04135132, -0.01751709, -0.020477295, 0.018325806, 0.01977539, -0.010688782, 0.021469116, 0.070007324, 0.040100098, -0.0009303093, 0.03793335, 0.0062828064, 0.008323669, -0.014404297, 0.03048706, -0.044067383, 0.016540527, -0.009651184, 0.016662598, 0.04168701, -0.015945435, 0.010269165, 0.027359009, 0.056549072, 0.048095703, 0.0063438416, -0.004497528, -0.0054473877, -0.003660202, -0.017501831, 0.016815186, -0.031921387, -0.00025701523, -0.04296875, 0.038024902, -0.011627197, -0.008552551, -0.005138397, -0.039123535, 0.030532837, -0.0009870529, 0.04815674, 0.0020160675, 0.039733887, -0.02168274, -0.027236938, -0.009674072, 0.010429382, 0.032104492, 0.0056495667, -0.005126953, 0.002998352, -0.008544922, 0.023422241, -0.01977539, 0.030258179, -0.02796936, 0.021759033, 0.061401367, -0.028625488, 0.018035889, -0.006591797, -0.017349243, -0.0029582977, 0.024215698, 0.010345459, -0.040649414, 0.033935547, 0.03225708, 0.007686615, 0.024124146, -0.014953613, 0.002111435, -0.017547607, 0.031982422, 0.039031982, 0.06085205, 0.033447266, -0.006111145, -0.013397217, -0.018997192, -0.0031051636, -0.026412964, -0.017089844, -0.0032405853, 0.03942871, -0.009925842, 0.017227173, 0.01134491, -0.012451172, -0.052124023, 0.010147095, -0.019729614, 0.019638062, 0.021896362, 0.003616333, -0.033355713, 0.021621704, -0.016647339, -0.01979065, 0.014282227, -0.00749588, -0.029754639, 0.024398804, 0.005508423, -0.0035476685, 0.020614624, -0.003534317, -0.0069122314, 0.020111084, 0.005874634, 0.033691406, -0.0015745163, -0.02947998, 0.018066406, 0.0031337738, -0.057128906, 0.007965088, -0.024917603, -0.064575195, -0.056854248, 0.07800293, 0.00022864342, -0.05291748, -0.051513672, -0.03439331, -0.0022220612, -0.01828003, -0.018096924, -0.068237305, -0.014556885, -0.014053345, 0.05441284, 0.03656006, -0.015136719, -0.0013122559, 0.017349243, 0.03982544, 0.038726807, -0.02619934, 0.03277588, -0.052947998, 0.061187744, 0.049194336, 0.007762909, -0.008705139, -0.049804688, 0.0015802383, 0.07739258, 0.024368286, -0.02305603, 0.013206482, -0.004524231, -0.0038528442, 0.022155762, -0.02507019, -0.013954163, -0.032684326, 0.0056610107, -0.022232056, 0.0060653687, -0.003982544, -0.034362793, -0.0019836426, -0.047058105, 0.0031967163, 0.016036987, -8.481741e-05, 0.009712219, -0.018753052, 0.022216797, 0.0079574585, -0.03878784, -0.049194336, -0.006954193, -0.061340332, 0.056427002, 0.06536865, -0.06512451, 0.046875, 0.061340332, -0.03491211, 0.01499176, 0.018875122, 0.05001831, -0.025527954, -0.003610611, 0.018997192, -0.044403076, -0.040802002, -0.02166748, 0.0027122498, 0.02407837, -0.0009331703, -0.029510498, 0.013328552, -0.010101318, -0.05114746, -0.023635864, -0.020248413, -0.0047798157, -0.03894043, 0.00818634, -0.018341064, -0.02444458, -0.00818634, -0.029434204, 0.013412476, 0.03189087, 0.019744873, -0.00043797493, 0.0004940033, 0.017669678, -0.0075302124, 0.018341064, -0.020401001, -0.0056114197, -0.020263672, -0.008544922, 0.0126571655, -0.04547119, 0.006324768, -0.034484863, 0.04067993, 0.0072898865, -0.0028419495, 0.0008649826, -0.0005583763, 0.02116394, -0.004722595, -0.029891968, 0.025878906, 0.025436401, 0.012771606, -0.023010254, 0.022766113, -0.017822266, -0.06524658, 0.0045700073, -0.058013916, 0.060943604, 0.019210815, -0.017074585, 0.08294678, 0.08465576, -0.025268555, 0.023544312, 0.04324341, 0.0002939701, -0.0069274902, 0.046844482, -0.045654297, -0.026062012, -0.008720398, 0.018447876, 0.01940918, -0.018997192, 0.027160645, -0.011772156, 0.014183044, -0.022567749, 0.0022640228, 0.008216858, -0.022094727, -0.010169983, -0.018173218, -0.035583496, -0.016235352, -0.04953003, -0.030258179, 0.029815674, -0.035186768, -0.010002136, -0.0011138916, -0.0024738312, -0.027664185, -0.0048675537, 0.000538826, 0.0037994385, -0.0014629364, 0.02748108, 0.0022029877, -0.011520386, -0.015419006, -0.008964539, -0.070251465, 0.032226562, -0.018127441, 0.045654297, -0.030029297, -0.079833984, 0.07891846, -0.030410767, -0.00046944618, 0.06124878, -0.013069153, -0.11004639, 0.001663208, 0.04977417, -0.0024871826, -0.06573486, -0.005836487, 0.012374878, -0.0013055801, 0.010124207, 0.0023937225, -0.008934021, -0.021911621, -0.010826111, -0.024246216, -0.051452637, -0.0473938, 0.044921875, 0.030395508, -0.016647339, -0.044036865, 0.045440674, -0.016220093, 0.044525146, -0.060943604, -0.0016088486, -0.084106445, 0.0033187866, 0.0052108765, -0.0003671646, -0.012893677, -0.066223145, -0.021759033, -0.024658203, 0.008720398, -0.00844574, -0.0015735626, 0.037384033, -0.010169983, 0.0015411377, 0.0385437, 0.0574646, 0.0031795502, 0.012435913, -0.031311035, -0.006919861, -0.07965088, 0.0043563843, 0.031829834, -0.019439697, -0.07171631, -0.029907227, 0.064575195, 0.017288208, -0.006996155, -0.062438965, 0.037322998, 0.04107666, 0.008735657, -0.035461426, -0.066589355, 0.011581421, -0.030334473, -0.018737793, -0.017593384, -0.03100586, 0.05328369, 0.047973633, 0.0072135925, -0.018234253, 0.015205383, -0.015419006, -0.026535034, 0.017562866, -0.067993164, 0.022033691, -0.064331055, -0.008636475, -0.064086914, 0.052825928, 0.053527832, 0.025802612, 0.016433716, -0.0024280548, -0.00141716, -0.03213501, -0.010917664, 0.0126571655, 0.011116028, -0.044433594, -0.04486084, 0.04345703, -0.041046143, 0.0074005127, -0.03062439, -0.052703857, -0.021057129, 0.049560547, -0.02458191, -0.03262329, -0.028167725, -0.00932312, 0.001282692, 0.007270813, -0.056427002, 0.00028800964, 0.022369385, -0.014976501, -0.02456665, -0.0020198822, -0.00042247772, -0.00040340424, -0.037231445, -0.004463196, -0.05291748, 0.018035889, 0.049224854, -0.002456665, 0.023757935, 0.0062446594, -0.026260376, -0.0287323, -0.026504517, -0.021011353, -0.0030727386, -0.029174805, -0.0057868958, 0.004673004, -0.049072266, 0.016342163, -0.038116455, 0.04574585, -0.018615723, -0.0044898987, -0.019699097, -0.0043525696, 0.023284912, -0.07879639, 0.082336426, -0.0038585663, -0.01625061, -0.08001709, 0.014755249, -0.0287323, -0.048431396, 0.008110046, -0.0049552917, 0.031402588, -0.0064315796, -0.012527466, 0.0054092407, 0.020339966, 0.00308609, 0.0099487305, 0.0018510818, -0.018508911, -0.024719238, 0.01133728, -0.031311035, 0.03375244, 0.023590088, -0.014205933, 0.011268616, 0.021621704, -0.04446411, -0.017623901, -0.006340027, 0.0043258667, -0.018310547, -0.03756714, 0.015342712, 0.007896423, -0.02293396, 0.00059461594, -0.041656494, -0.002603531, -0.04525757, -0.02923584, -0.04397583, 0.002822876, 0.014335632, 0.028427124, 0.00089359283, -0.04043579, 0.016143799, 0.06311035, 0.02293396, 0.006504059, -0.041809082, 0.041259766, 0.011817932, 0.0074272156, -0.005256653, 0.01234436, 0.013404846, -0.015609741, -0.010795593, 0.009902954, 0.052612305, -0.015945435, -0.015533447, 0.088256836, 0.011520386, 0.036193848, 0.010124207, 0.0077400208, -0.0010910034, 0.02267456, 0.0008940697, 0.0143585205, -0.07543945, -0.029678345, -0.057006836, 0.009902954, 0.0017566681, 0.025894165, 0.03878784, 0.0016403198, -0.008422852, -0.015380859, 0.007019043, -0.00945282, -0.037261963, 0.007835388, -0.019470215, 0.015113831, -0.0132751465, 0.015792847, -0.08850098, -0.06149292, 0.017913818, 0.01914978, 0.024108887, 0.024246216, 0.017074585, 0.02267456, -0.04953003, 0.009017944, 0.003276825, -0.011550903, 0.012321472, 0.019180298, -0.013809204, 0.0423584, -0.0211792, -0.009803772, -0.028305054, 0.024749756, 0.00024604797, 0.043060303, -0.03186035, 0.009902954, -0.024246216, 0.045715332, -0.0041999817, -0.024337769, 0.00749588, -0.016296387, -0.058807373, -0.015388489, 0.02720642, -0.035949707, -0.009925842, -0.052947998, -0.013755798, -0.00089359283, -0.016693115, 0.038635254, -0.010574341, -0.0011892319, -0.017410278, 0.010597229, 0.0020885468, -0.013214111, 0.045410156, -0.003112793, 0.02394104, -0.006664276, 0.038208008, -0.0031013489, -0.021530151, -0.036010742, 0.015380859, 0.04019165, -0.0043525696, 0.009117126, -0.022750854, 0.017562866, 0.05029297, -0.052978516, -0.025543213, 0.016143799, 0.017608643, -0.017715454, -0.036895752, 0.004142761, 0.019927979, -0.016296387, 0.006778717, 0.0067481995, 0.037963867, -0.0024166107, 0.029190063, -0.007003784, 0.00667572, -0.010482788, 0.019577026, -0.037902832, -0.007724762, 0.00094890594, -0.017974854, 0.018707275, 0.017227173, 0.007286072, -0.0056419373, -0.00023043156, 0.023773193, 0.028884888, -0.040924072, -0.04373169, -0.02708435, -0.013175964, -0.018981934, 0.003692627, 0.019500732, 0.035186768, 0.037902832, -0.028884888, -0.012290955, -0.0018415451, -0.040893555, -0.02381897, 0.0131073, 0.018859863, -0.040222168, 0.014129639, 0.0005903244, 0.0059890747, 0.0047836304, 0.055847168, 0.033477783, 0.054016113, 0.023391724, 0.004676819, 0.040740967, -0.025360107, 0.0038280487, 0.015319824, 0.0065574646, -0.004501343, -0.052856445, -0.0070152283, -0.07141113, -0.014411926, -0.00069761276, -0.0513916, 0.003145218, 0.053619385, 0.034210205, -0.006362915, -0.0234375, 0.00598526, 0.0028533936, -0.034118652, 0.0345459, -0.03253174, 0.012046814, -0.03286743, -0.011886597, -0.024215698, -0.033111572, -0.043762207, 0.042816162, -0.025848389, -0.013397217, -0.023742676, -0.0011930466, 0.04156494, -0.039764404, -0.0015230179, 0.0035915375, 0.041931152, -0.016281128, 0.011894226, -0.02015686, -0.015205383, -0.033203125, 0.0043258667, -0.05734253, -0.019943237, -0.079833984, 0.016860962, -0.013664246, -0.012611389, 0.043945312, 0.08721924, -0.0005350113, 0.024383545, -0.006439209, -0.06463623, -0.012771606, 0.014816284, 0.0033168793, -0.011703491, -0.036315918, 0.05404663, 0.03475952, 0.01398468, -0.0045433044, 0.032073975, -0.025558472, 0.05407715, 0.014076233, 0.00042581558, 0.013572693, -0.036102295, 0.034362793, -0.00013029575, -0.04525757, -0.0041007996, -0.00233078, 0.021713257, 0.017089844, 8.362532e-05, 0.0126953125, -0.012237549, -0.036254883, 0.0044517517, -0.016677856, 0.0063705444, 0.0020503998, -0.044891357, -0.05166626, -0.03353882, 0.020065308, -0.050231934, -0.0028896332, -0.01222229, 0.010169983, 0.004310608, 0.017822266, -0.013038635, -0.011260986, 0.014038086, -0.034851074, -0.034118652, 0.06903076, -0.022903442, -0.004760742, -0.012123108, -0.030776978, -0.02078247, -0.022064209, -0.01637268, -0.04849243, -0.06573486, 0.018997192, 0.029876709, -0.02180481, 0.01260376, -0.00074243546, 0.0007224083, -0.030731201, 0.003189087, 0.03857422, 0.008544922, -0.044769287, 0.03201294, 0.03640747, -0.006011963, -0.031707764, -0.070617676, -0.068725586, 0.017318726, 0.03881836, 0.0010108948, 0.07965088, -0.0030059814, 0.00048422813, 0.02154541, -0.032073975, -0.048614502, 0.017028809, 0.06274414, 0.016921997, 0.015487671]}, "B086V7Y4LR": {"id": "B086V7Y4LR", "original": "Brand: Vailge\nName: Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige\nDescription:

      Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

      New product Promotion\uff1a 15% Off.

      Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

      Advantages from other covers:

      \u25baMade of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

      \u25baLarge padded handle loops for easy fitting, removal, hanging and convenient storage.

      \u25ba Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

      \u25ba Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

      \u25baThe cover is easily folded for storage and won't take up a lot of room whilst not in use.

      \u25baEasy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

      \u25baNote: Please allow your grill to cool before covering.

      Kindly Note:

      1.Please Measure Before Purchasing.

      2.Be sure the cover is of the same shape as your grill.

      3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

      \nFeatures: Size: This bbq grill cover measures 72\" Length x 26\" Width x 47\" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill's dimensions for proper fit before purchasing.\nSuper Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc.\nUv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant.\nHandles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting.\nGood Shopping Experience: We think you're going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.\n", "metadata": {"Name": "Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige", "Brand": "Vailge", "Description": "

      Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

      New product Promotion\uff1a 15% Off.

      Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

      Advantages from other covers:

      \u25baMade of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

      \u25baLarge padded handle loops for easy fitting, removal, hanging and convenient storage.

      \u25ba Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

      \u25ba Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

      \u25baThe cover is easily folded for storage and won't take up a lot of room whilst not in use.

      \u25baEasy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

      \u25baNote: Please allow your grill to cool before covering.

      Kindly Note:

      1.Please Measure Before Purchasing.

      2.Be sure the cover is of the same shape as your grill.

      3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

      ", "Features": "Size: This bbq grill cover measures 72\" Length x 26\" Width x 47\" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill's dimensions for proper fit before purchasing.\nSuper Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc.\nUv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant.\nHandles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting.\nGood Shopping Experience: We think you're going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00242424, 0.0028953552, -0.05255127, -0.032165527, -0.014419556, -0.012863159, -0.025146484, 0.032196045, -0.06994629, 0.02470398, 0.034210205, 0.033996582, -0.02758789, -0.053009033, 0.0075798035, -0.030044556, 0.016662598, -0.0103302, 0.0042762756, -0.009605408, -0.021148682, -0.019485474, 0.010902405, 0.04284668, -0.0060768127, 0.011993408, 0.015625, 0.0008134842, -0.00092601776, 0.0015716553, 0.0019836426, -0.007675171, 0.039764404, -0.015640259, 0.010910034, 0.02268982, -0.0074424744, -0.013648987, 0.011375427, -0.01234436, -0.0061950684, 0.012229919, 0.024490356, 0.01210022, 0.003932953, -0.00856781, -0.01991272, -0.0473938, 0.00762558, 0.006214142, 0.053344727, 0.039001465, 0.042236328, 0.03363037, -0.013847351, 0.0070381165, -0.017410278, -0.016067505, 0.0209198, -0.008491516, -0.009292603, -0.018188477, 0.034210205, 9.101629e-05, -0.038482666, 0.018981934, 0.08856201, -0.03555298, -0.082214355, -0.036254883, 0.07110596, -0.0128479, 0.010292053, 0.0109939575, -0.034088135, -0.029968262, -0.017745972, -0.020492554, 0.034118652, 0.0067596436, -0.028884888, -0.072631836, 0.05810547, -0.011543274, -0.010215759, 0.016143799, -0.012931824, 0.005645752, 0.017181396, -0.011352539, 0.013160706, 0.03048706, -0.020767212, 0.038757324, 0.006916046, -0.027679443, -0.028320312, -0.025985718, 0.023147583, 0.038208008, 0.0066070557, -0.03152466, 0.054504395, -0.030166626, -0.044921875, 0.050964355, 0.023651123, 0.0440979, 0.01121521, 0.016845703, 0.010910034, -0.019607544, -0.012207031, -0.03503418, -0.04550171, 0.033966064, 0.002035141, -0.053253174, 0.023757935, -0.05239868, -0.040161133, -0.021347046, -0.010528564, 0.040985107, 0.04449463, 0.03427124, 0.030029297, 0.018432617, 0.024932861, -0.022918701, -0.008171082, -0.009338379, 0.021560669, 0.081970215, 0.059570312, -0.008361816, 0.044555664, -0.03704834, -0.021911621, 0.021713257, -0.016708374, 0.0073928833, 0.037017822, -0.034576416, -0.04373169, 0.017944336, 0.018676758, 0.008331299, 0.010063171, -0.048034668, -0.015609741, -0.016983032, 0.06616211, -0.011054993, -0.09692383, 0.01222229, -0.024902344, -0.004962921, -0.065979004, -0.07171631, -0.034301758, -0.022140503, 0.021896362, -0.036376953, -0.03173828, 0.058135986, 0.022232056, 0.0026512146, 0.03439331, 0.025512695, -0.032714844, 0.0038928986, -0.002462387, 0.014564514, -0.0023670197, 0.022964478, 0.015197754, 0.06384277, 0.08251953, -0.090148926, -0.05429077, -0.04345703, 0.16101074, -0.05380249, 0.03741455, -0.04940796, 0.0028457642, -0.04562378, 0.025787354, 0.0059928894, -0.004245758, -0.012626648, 0.009490967, -0.014205933, -0.022979736, -0.021820068, -0.012062073, 0.008094788, -0.015602112, 0.013465881, -0.030975342, -0.01335907, 0.012573242, 0.014625549, 0.032318115, -0.019226074, 0.0061073303, 0.00039100647, 0.010505676, 0.05230713, -0.009849548, -0.008903503, 0.0043296814, -0.04458618, -0.010360718, -0.025527954, -0.02268982, 0.035308838, -0.0049476624, 0.032592773, 0.01448822, -0.019439697, 0.024612427, 0.02911377, 0.00831604, -0.015350342, 0.0066223145, 0.008552551, 0.018936157, 0.027862549, 0.006389618, 0.0023841858, 0.07183838, 0.035491943, -0.027359009, 0.033050537, 0.023864746, 0.004825592, -0.033691406, 0.014205933, 0.0071411133, -0.030471802, -0.033843994, 0.026275635, -0.010818481, -0.0005927086, -0.0012550354, 0.011291504, -0.04248047, -0.009681702, 0.0076942444, 0.0262146, 0.025466919, -0.037719727, -0.016723633, 0.04827881, -0.041870117, 0.012786865, -0.012664795, 0.027618408, -0.021194458, 0.028808594, 0.06500244, -0.01939392, 0.016235352, 0.0010633469, 0.03475952, 0.028335571, 0.017150879, -0.012207031, -0.0057296753, -0.0121154785, -0.0055122375, 0.03604126, 0.04977417, -0.012123108, -0.017959595, -0.003522873, -0.0052986145, 0.008766174, -0.0070228577, 0.031097412, 0.020355225, -0.00818634, -0.026794434, -0.009773254, 0.03527832, -0.0018796921, -0.021697998, -0.07116699, -0.026504517, 0.037322998, -0.039123535, 0.03387451, 0.019973755, -0.034301758, -0.0045814514, 0.018508911, 0.011756897, -0.005722046, -0.014312744, 0.030654907, -0.027160645, 0.011268616, 0.008804321, 0.027252197, 0.014076233, -0.012298584, 0.0031433105, -0.036865234, 0.02067566, 0.010055542, 0.026275635, -0.010688782, 0.04525757, 0.039276123, 0.0076065063, 0.062469482, 0.07702637, 0.048583984, 0.015701294, -0.022766113, -0.052001953, -0.035308838, -0.018676758, 0.026443481, -0.06530762, -0.01134491, -0.011604309, -0.004070282, -0.05053711, -0.0569458, -0.03805542, -0.026367188, -0.00868988, -0.0151901245, -0.0034179688, -0.009780884, 0.009269714, -0.0078048706, 0.01953125, 0.0023918152, 0.0007715225, -0.010902405, -0.04650879, -0.027114868, 0.03527832, 0.0017223358, -0.04345703, -0.03289795, 0.058166504, -0.03326416, -0.019439697, -0.10015869, -0.02142334, 0.023712158, 0.009223938, -0.070617676, 0.02053833, -0.09112549, 0.026947021, -0.025146484, -0.051879883, 0.010787964, 0.055389404, -0.020965576, -0.033172607, -0.022628784, 0.018463135, 0.025680542, 0.041534424, 0.013298035, 0.00970459, -0.01713562, -0.02822876, -0.045043945, 0.018569946, -0.039642334, 0.0024852753, 0.0077323914, -0.0049438477, 0.017196655, -0.020202637, 0.015426636, -0.0019102097, 0.035369873, 0.022567749, 0.05267334, -0.023376465, -0.038085938, -0.018600464, 0.06573486, 0.0019741058, -0.029220581, 0.040222168, 0.012863159, -0.0046539307, 0.021377563, -0.010269165, -0.041290283, -0.09729004, 0.0064582825, -0.018554688, -0.02619934, -0.00024092197, -0.03010559, -0.040100098, -0.05709839, 0.0021457672, 0.068847656, -0.04260254, 0.024414062, -0.039154053, 0.028762817, 0.0036354065, 0.0038890839, 0.014854431, -0.0061149597, 0.0076942444, -0.01878357, 0.008384705, 0.015731812, -0.006587982, 0.00737381, -0.00749588, 0.04031372, 0.008636475, 0.020751953, -0.017456055, 0.04168701, 0.02204895, -0.015365601, 0.0011358261, 0.008079529, -0.02468872, -0.006263733, -0.0082092285, -0.020904541, 0.0317688, -0.052001953, -0.0021476746, -0.003643036, -0.026489258, -0.008094788, -0.014312744, -0.020950317, 0.010292053, -0.008171082, 0.01701355, -0.02861023, 0.009536743, 0.010635376, 0.037841797, 0.033721924, -0.0077209473, 0.07244873, -0.003162384, 0.027999878, 0.021362305, -0.0034599304, -0.035003662, -0.05291748, 0.101623535, -0.02557373, -0.023361206, -0.02180481, 0.039367676, -0.0028266907, -0.015930176, 0.00080013275, -0.030700684, 0.042144775, -0.00070142746, -0.018356323, 0.018661499, -0.0024852753, -0.007911682, -0.0044898987, 0.0073165894, 0.007534027, -0.07720947, -0.006549835, -0.0635376, 0.095336914, 0.021606445, -0.0004248619, 0.08532715, 0.100097656, -0.0070381165, 0.024841309, 0.06555176, -0.032470703, -0.0016994476, 0.08843994, -0.0413208, -0.0038414001, 0.009597778, 0.015670776, -0.0024909973, -0.051330566, -0.016311646, -0.013267517, -0.023086548, 0.00028538704, -0.016983032, -0.0013103485, 0.05380249, -0.03451538, 0.0070991516, 0.020004272, 0.025894165, -0.0473938, -0.016448975, -0.015991211, -0.024002075, 0.011558533, 0.014556885, 0.0071907043, -0.0015459061, -0.02268982, 0.0059890747, 0.017944336, 0.025115967, 0.027435303, -0.025604248, 0.007881165, -0.018005371, 0.012908936, -0.005054474, -0.0006055832, 0.029464722, 0.003856659, 0.018844604, 0.0057029724, -0.0118637085, 0.026412964, 0.029083252, 0.022659302, -0.028564453, -0.05014038, 0.007133484, 0.025100708, 0.035308838, -0.05493164, 0.018203735, -0.052856445, -0.024749756, -0.033203125, -0.019180298, -0.014526367, -0.025299072, -0.0132751465, -0.04058838, 0.0037498474, 0.012451172, -0.045928955, -0.06506348, 0.012016296, -0.00592041, 0.02418518, 0.0024719238, 0.06286621, -0.045318604, -0.03475952, 0.009544373, 0.011016846, 0.036102295, 0.010734558, 0.006641388, -0.022384644, -0.043518066, -0.018554688, 0.05847168, -0.004386902, 0.011756897, -0.009788513, -0.009155273, -0.011116028, 0.049194336, 0.05834961, -0.017807007, 0.05899048, -0.014472961, 0.0368042, -0.066711426, -0.0284729, 0.093811035, -0.05404663, -0.035705566, -0.06427002, 0.032836914, 0.011817932, -0.03643799, -0.025680542, 0.047454834, 0.011558533, 0.032348633, 0.0019083023, 0.045440674, 0.026412964, -0.0011749268, -0.0033092499, 0.00069618225, -0.012283325, 0.004627228, -0.0059432983, -0.017929077, -0.008644104, 0.006652832, 0.019744873, -0.008110046, 0.021469116, -0.0018167496, 0.0015907288, 0.0051498413, -0.025131226, -0.062408447, 0.07366943, 0.062347412, -9.614229e-05, 0.006374359, -0.00048184395, -0.015731812, -0.046081543, 0.050933838, -0.03274536, -0.015510559, 0.004558563, -0.009170532, -0.012069702, -0.03857422, -0.010734558, 0.0024757385, -0.022964478, -0.0033493042, -0.0039138794, 0.014671326, -0.0061035156, -0.015029907, 0.010810852, 0.03933716, 0.007671356, -0.007144928, -0.039855957, -0.00969696, -0.010772705, 0.0025520325, -0.012237549, -0.013656616, 0.001493454, 0.01928711, 0.0107040405, -0.024459839, 0.0072402954, 0.022598267, 0.028579712, -0.024856567, 0.006916046, 0.015304565, -0.032409668, -0.038848877, 0.016662598, -0.025131226, 0.0016679764, 0.011146545, -8.177757e-05, -0.008728027, 0.027740479, -0.031982422, 0.035369873, 0.0029621124, -0.04257202, 0.04324341, -0.003944397, 0.004322052, -0.014305115, 0.02482605, -0.0023956299, -0.022125244, -0.027954102, -0.0015869141, -0.028518677, 0.05166626, -0.027023315, -0.0013484955, 0.036865234, -0.008354187, -0.018051147, 0.03010559, 0.04534912, -0.010696411, 0.007858276, 0.045288086, 0.0093307495, -0.061828613, 0.026885986, -0.041290283, -0.015533447, -0.0060920715, 0.015731812, 0.0035686493, -0.014816284, -0.01235199, -0.054473877, 0.009170532, 0.0031700134, -0.011207581, -1.0788441e-05, 0.007545471, -0.0018730164, 0.017486572, 0.03378296, 0.043548584, 0.025878906, -0.02809143, -0.0036773682, -0.007003784, 0.021759033, -0.01953125, 0.027526855, -0.03567505, -0.025253296, -0.011116028, -0.029632568, 0.014076233, 0.016784668, -0.030258179, -0.016418457, 0.001036644, 0.0053596497, -0.01939392, 0.016952515, 0.046813965, -0.0368042, -0.025924683, -0.019500732, 0.034942627, -0.037078857, -0.048034668, 0.046295166, 0.016830444, 0.012199402, 0.017364502, -0.033721924, -0.040222168, 0.014465332, 0.017181396, -0.07299805, -0.011817932, -0.01171875, 0.02671814, -0.02772522, -0.019546509, 0.029190063, 0.03262329, 0.015075684, -0.022598267, -0.0231781, -0.02166748, -0.013473511, -0.026809692, 0.01940918, -0.017730713, -0.015625, -0.02243042, -0.036132812, -0.07128906, -0.010025024, 0.041229248, 0.024108887, 0.0020160675, 0.011482239, 0.014785767, 0.023986816, -0.039093018, 0.061157227, -0.02708435, 0.0023212433, 0.014884949, 0.0519104, 0.02571106, 0.029022217, -0.026397705, -0.022827148, -0.012069702, 0.01637268, 0.06384277, 0.0055770874, -0.052581787, -0.018829346, 0.075683594, 0.035491943, 0.007133484, -0.016830444, 0.034942627, 0.040405273, -0.018371582, -0.022735596, 0.0068130493, -0.013626099, -0.016296387, -0.01889038, -0.018508911, 0.022644043, -0.008529663, 0.012741089, -0.0054969788, 0.03829956, 0.0048599243, -0.00025749207, 0.017349243, -0.015670776, 0.0018844604, -0.03515625, -0.030426025, 0.009567261, -0.0019836426, -0.00617218, 0.015548706, -0.02909851, -0.006549835, 0.017654419, -0.011909485, 0.04168701, 0.02017212, -0.025115967, 0.022247314, 0.045684814, -0.008834839, 0.04840088, 0.030273438, 0.0017824173, -0.09429932, -0.032073975, -0.032714844, 0.02420044, -0.013793945, 0.06781006, -0.006275177, 0.0033721924, -0.018463135, -0.018157959, -0.022537231, -0.040283203, 0.03665161, 0.015853882, -0.010314941, -0.006576538, -0.038757324, -0.05429077, 0.048187256, -0.02986145, -0.043548584, -0.01499939, 0.04901123, 0.008964539, 0.006793976, -0.032226562, -0.054504395, 0.037841797, 0.033111572, -0.04208374, -0.00067329407, 0.024810791, 0.016983032, -0.029281616, -0.051727295, 0.024871826, -0.04638672, 0.04748535, 0.022079468, 0.006690979, -0.044128418, -0.008262634, -0.0018930435, -0.02784729, 0.022399902, 0.024810791, 0.020355225, 0.057556152, -0.022644043, 0.0026931763, 0.037628174, -0.012321472, 0.015930176, -0.004535675, 0.0011091232, -0.018539429, -0.019989014, 0.0236969, 0.0070877075, -0.04647827, 0.010383606, 0.0039978027, 0.008346558, 0.020568848, -0.0036067963, 0.00894165, 0.0062828064, -0.02696228, 0.0042266846, 0.007709503, 0.015640259, 0.011352539, 0.012466431, -0.036895752, -0.06628418, -0.05987549, -0.0082473755, -0.05831909, 0.03729248, -0.020507812, -0.049957275, -0.046447754, 0.040283203, 0.045318604, -0.054870605, -0.056121826, 0.004020691, 0.032073975, 0.017288208, 0.06915283, -0.02708435, -0.066223145, -0.07312012, 0.02017212, -0.06213379, -0.0028629303, 0.00028204918, 0.0107040405, 0.031188965, 0.0024414062, -0.00774765, 0.08227539, 0.0067749023, -0.017303467, -0.0016832352, 0.0061035156, -0.019317627, 0.011238098, 0.004421234, -0.024734497, 0.0093307495, 0.015213013, 0.017959595, 0.049102783, 0.005882263, 0.010108948, -0.06341553, 0.009254456, -0.029754639, 0.047668457, -0.012634277, 0.0026569366, 0.007911682, 0.032806396, -0.016693115, -0.005138397, 0.012649536, -0.03793335, 0.019165039, -0.0037059784, 0.014282227, 0.005508423, -0.02519226, -0.013046265, -0.011009216, -0.0011224747, 0.044281006, 0.016281128, -0.003314972, -0.0034561157, -0.007785797, 0.0020427704, -0.03112793, -0.023773193, -0.028198242, 0.01890564, -0.026138306, -0.031677246, 0.021835327, -0.0048942566, -0.0009689331, -0.04727173, 0.027069092, 0.05239868, -0.037597656, -0.008468628, 0.010009766, -0.002855301, 0.015853882, -0.009552002, -0.016723633, -0.06878662, 0.052703857, 0.044830322, 0.009719849, 0.017654419, 0.01348114, -0.019180298, -0.0059280396, 0.019592285, -0.0047950745, 0.030639648, 0.0025100708, 0.06732178, 0.009361267, 0.042541504, -0.037078857, -0.04119873, -0.05319214, 0.033233643, 0.021102905, -0.020263672, 0.07006836, -0.015792847, 0.02053833, 0.020828247, 0.012771606, -0.004890442, 0.039642334, 0.010696411, 0.015365601, 0.014015198]}, "B07WYJTB3P": {"id": "B07WYJTB3P", "original": "Brand: ProCom\nName: ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in\nDescription: \nFeatures: ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment.\nTECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area.\nDEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nSTYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\n", "metadata": {"Name": "ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in", "Brand": "ProCom", "Description": "", "Features": "ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment.\nTECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area.\nDEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nSTYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0335083, -0.022857666, 0.013847351, -0.068603516, -0.015144348, 0.0021972656, 0.010139465, 0.028778076, 0.00036478043, 0.010673523, -0.04849243, -0.0030727386, 0.005130768, -0.025253296, 0.01574707, -0.037719727, 0.00680542, 0.014953613, -0.011909485, -0.019104004, 0.008377075, -0.028244019, -0.005241394, 0.056518555, -0.010673523, 0.0046691895, 0.011360168, 0.020248413, -0.013252258, 0.0135269165, 0.011299133, -0.0060539246, 0.07122803, -0.0015659332, -0.08215332, -0.014213562, -0.05886841, 0.0017290115, -0.06506348, 0.036895752, -0.020874023, 0.014968872, 0.052856445, -0.0028648376, -0.004257202, -0.043548584, 0.009399414, -0.03366089, 0.021224976, 0.04574585, 0.0093307495, -0.009597778, 0.00762558, -0.017333984, -0.006000519, -0.01852417, -0.030395508, 0.08343506, 0.0048446655, 0.007987976, -0.016830444, 0.052459717, -0.015625, -0.0070648193, -0.048187256, 0.013870239, 0.03387451, -0.021362305, 0.03741455, -0.04232788, -0.0035629272, 0.035369873, 0.025009155, -0.038391113, -0.06384277, 0.014602661, 0.027359009, -0.023040771, 0.019561768, -0.05255127, 0.003993988, 0.030929565, 0.026290894, -0.06451416, 0.021713257, -0.04547119, -0.006881714, -0.001698494, -0.032592773, -0.033996582, -0.025985718, -0.017105103, -0.02760315, -0.016525269, -0.030166626, -0.015853882, -0.046417236, -0.035461426, 0.02645874, 0.008422852, 0.00894928, -0.029312134, -0.006587982, -0.0039482117, -0.008895874, 0.042419434, -0.028747559, -0.03491211, -0.015129089, 0.03277588, -0.004699707, -0.09857178, -0.022842407, -0.0690918, 0.006465912, 0.07739258, 0.0038146973, -0.0063285828, 0.025619507, -0.020828247, -0.010925293, 0.008995056, 0.03845215, 0.041107178, -0.017745972, 0.024383545, 0.014404297, -0.07067871, -0.0062675476, 0.00046539307, -0.0013103485, -0.002319336, 0.030715942, 0.061309814, 0.010345459, -0.0031585693, 0.024917603, 0.05557251, 0.028778076, -0.047058105, 0.048706055, 0.039520264, 0.04498291, 0.009490967, -0.040740967, 0.028839111, 0.015792847, 0.0047416687, 0.003967285, -0.058746338, -0.03189087, 0.008804321, 0.029922485, 0.025054932, -0.025894165, 0.01940918, 0.0231781, -0.01600647, -0.031829834, -0.029129028, -0.0059661865, -0.024246216, -0.015090942, 0.017837524, 0.0077934265, 0.032989502, 0.025939941, 0.024246216, 0.019042969, 0.038848877, 0.017166138, -0.025680542, -0.030532837, 0.008354187, 0.0036773682, 0.009719849, 0.019607544, 0.05456543, 0.061645508, -0.050628662, -0.05319214, -0.03466797, 0.16235352, -0.07885742, -0.018371582, 0.014923096, 0.0062065125, -0.002653122, -0.004386902, -0.0024681091, 0.04650879, 0.05718994, 0.027862549, -0.030975342, 0.0019359589, -0.035125732, -0.023498535, -0.0009217262, -0.032714844, 0.048187256, -0.0025901794, -0.02116394, 0.022415161, 0.00207901, -0.0065231323, -0.005004883, -0.0069847107, 0.011665344, 0.029632568, 0.014465332, -0.01991272, -0.0184021, 0.027252197, -0.058654785, -0.030578613, 0.0127334595, -0.031158447, 0.015586853, 0.0066833496, 0.032592773, 0.036834717, -0.018371582, 0.024505615, -0.011543274, 0.052886963, 0.01083374, -0.027572632, -0.0046844482, 0.050598145, 0.0024414062, 0.01838684, 0.047027588, -0.0056915283, 0.009490967, -0.0066566467, 0.047180176, 0.06793213, 0.05142212, -0.020965576, -0.019180298, 0.012863159, -0.041534424, 0.017913818, 0.06518555, -0.011352539, -0.001036644, 0.026931763, 0.011192322, -0.013183594, 0.072387695, 0.0209198, 0.030029297, -0.010955811, 0.008712769, -0.027664185, 0.015388489, -0.05407715, -0.018737793, 0.0029525757, -0.0025138855, 0.006793976, 0.06561279, 0.04550171, 0.0041160583, 0.037902832, -0.03375244, 0.04058838, 0.03100586, -0.023117065, -0.04373169, 0.016174316, 0.048095703, -0.020980835, 0.0073776245, 0.003080368, 0.038116455, -0.05355835, 0.033203125, -0.01928711, 0.0037059784, 0.01777649, 0.008369446, 0.017669678, -0.0042152405, 0.035217285, -0.013290405, 0.026611328, 0.040161133, -0.020187378, 0.010276794, 0.05987549, -0.0036830902, -0.030059814, 0.023910522, -0.037963867, -0.018234253, 0.05834961, -0.00868988, 0.03842163, -0.013679504, 0.008979797, 0.041931152, -0.04547119, 0.036895752, -0.012817383, 0.017318726, -0.007133484, 0.007411957, 0.0005249977, -0.034729004, 0.0070381165, 0.042022705, 0.010169983, -0.005077362, 0.0063323975, 0.017562866, -0.020065308, 0.008117676, 0.009483337, 0.024551392, -0.033721924, -0.0013170242, -0.009010315, -0.02571106, 0.010971069, 0.019195557, -0.040985107, 0.009346008, 0.019302368, -0.0056648254, 0.027282715, -0.0056495667, -0.008934021, -0.008178711, 0.015823364, -0.019317627, 0.008331299, 0.007949829, -0.008255005, -0.022216797, -0.01348114, 0.04449463, 0.0068588257, -0.032928467, -0.04623413, -0.019119263, -0.0026798248, -0.007675171, 0.012359619, -0.019760132, 0.0496521, -0.0067825317, 0.013694763, -0.014762878, 0.015625, -0.0017251968, -0.022705078, -0.01789856, 0.0011835098, -0.059448242, -0.001531601, -0.00078201294, -0.020202637, -0.009689331, 0.020126343, -0.02532959, -0.017715454, -0.020263672, 0.0050964355, 1.4305115e-06, 0.05734253, -0.012763977, -0.070495605, -0.0121536255, -0.023254395, -0.013648987, 0.058532715, 0.00472641, -0.005706787, 0.03475952, 0.035369873, 0.031555176, 0.0044517517, -0.014755249, -0.031463623, 0.03540039, 0.023254395, -0.00440979, 0.0039596558, -0.021636963, 0.0032596588, 0.037231445, -0.059417725, -0.02720642, 0.04498291, 0.017044067, -0.02053833, 0.018173218, -0.0637207, -0.023986816, -0.02897644, 0.01626587, -0.013023376, -0.018966675, 0.022537231, -0.11462402, 0.01586914, -0.04562378, 0.060577393, 0.014152527, 0.034423828, -0.00843811, 0.031982422, -0.02772522, -0.036315918, 0.024627686, -0.021865845, -0.006259918, 0.018051147, -0.0025634766, 0.009048462, -0.060546875, -0.026321411, 0.0071258545, -0.056610107, 0.042907715, 0.00579834, 0.06286621, 0.0090789795, -0.0048713684, 0.0158844, -0.037017822, -0.0037078857, 6.1273575e-05, -0.021057129, 0.036132812, 0.011016846, 0.011207581, 0.03479004, -0.026428223, -0.067871094, -0.032043457, 0.04244995, 0.011230469, -0.0060653687, 0.014259338, 0.0021572113, -0.038085938, -0.0019311905, -0.060272217, -0.0045700073, 0.013511658, 0.035736084, 0.0078086853, 0.013748169, 0.04095459, 0.04421997, 0.05154419, 0.024765015, -0.06964111, -0.04486084, -0.04736328, -0.015792847, 0.0036697388, 0.009025574, -0.020126343, 0.013694763, 0.022827148, -0.013511658, 0.009544373, 0.009155273, 0.0074157715, -0.013877869, -0.0013751984, -0.04449463, -0.054656982, 0.066711426, 0.05001831, 0.0131073, -0.06585693, -0.033813477, -0.007865906, -0.03074646, 0.05831909, 0.058746338, -0.008781433, 0.06347656, 0.039215088, -0.024536133, 0.031173706, 0.008491516, 0.0016222, -0.02911377, 0.053100586, -0.029724121, 0.008338928, 0.019165039, -0.0496521, -0.007949829, -0.041259766, -0.03302002, 0.0039711, 0.009216309, 0.01586914, -0.012191772, 0.0042495728, 0.027908325, 0.023254395, 0.033599854, -0.04751587, 0.03366089, -0.025985718, -0.03540039, 0.028427124, -0.04837036, -0.005393982, -0.0026435852, 0.0013437271, -0.031982422, -0.0001667738, -0.031982422, 0.015464783, -0.005130768, 0.041778564, -0.007835388, -0.018508911, -0.0038547516, 0.027908325, -0.02734375, -0.014213562, 0.04244995, 0.022384644, -0.025314331, -0.015594482, -0.0048332214, 0.001786232, -0.036865234, 0.028045654, 0.04901123, -0.03805542, 0.0206604, 0.03918457, -0.037628174, 0.0031719208, -0.006412506, -0.023025513, -0.04071045, -0.040863037, -0.04598999, -0.0368042, -0.041229248, -0.018096924, -0.027267456, -0.052886963, -0.04135132, 0.024642944, 0.027954102, -0.005016327, -0.026473999, -0.0023498535, 0.008285522, -0.013412476, -0.01739502, -0.0038604736, 0.049072266, 0.007827759, 0.028366089, -0.01777649, 0.03942871, -0.045715332, -0.035369873, -0.036071777, 0.055541992, -0.014129639, 0.01096344, -0.005748749, -0.02268982, 0.0009741783, -0.016693115, -0.015403748, -0.00541687, 0.010566711, -0.0024929047, -0.025924683, 0.0017585754, -0.015029907, -0.02456665, -0.02279663, -0.019607544, 0.008720398, 0.08831787, -0.031280518, 0.0023326874, 0.00030303, 0.009399414, -0.00030183792, 0.040039062, -0.04244995, -0.03253174, -0.0003950596, -0.014701843, -0.00017488003, -0.00541687, -0.009536743, 0.011734009, 0.04537964, -0.0087890625, 0.044281006, -0.047027588, -0.0055656433, 0.008872986, 0.018981934, 0.039733887, -0.03918457, 0.022109985, 0.028793335, -0.009094238, 0.060028076, 0.014198303, -0.014228821, 0.0027503967, -0.016098022, -0.01525116, -0.04156494, -0.0074691772, -0.021530151, -0.012367249, 0.021484375, -0.00944519, -0.010551453, 0.030014038, -0.00076436996, 0.030410767, -0.012962341, 0.0690918, 0.015304565, 0.021591187, 0.013343811, -0.038635254, 0.030853271, -0.00945282, 0.008453369, -0.00687027, 0.009925842, 0.03250122, -0.025604248, -0.0041160583, 0.006542206, -0.030349731, 0.01739502, -0.031051636, 0.008155823, 0.031799316, -0.002981186, -0.026672363, 0.04269409, -0.033996582, 0.017105103, 0.03656006, -0.04925537, -0.09753418, -0.002407074, 0.05328369, -0.051727295, 0.0513916, -0.019317627, 0.020004272, 0.039733887, -0.0107803345, 0.024261475, -0.0006136894, -0.019302368, 0.0051574707, 0.017700195, -0.0012931824, -0.035583496, 0.07531738, -0.007484436, -0.041900635, -0.021148682, 0.0062446594, -0.017669678, -0.0034446716, -0.019821167, 0.0025501251, 0.03717041, -0.0022583008, -0.015838623, -0.022460938, 0.03479004, -0.06341553, -0.04751587, -0.009666443, -0.07299805, -0.035369873, -0.044677734, -0.04574585, 0.05130005, -0.0118255615, 0.027511597, 0.013847351, 0.026489258, -0.0033416748, 0.011680603, 0.0068626404, 0.0049934387, -0.0211792, -0.03692627, 0.021591187, 0.021575928, -0.018432617, -0.0132751465, -0.03564453, -0.01461792, -0.020355225, -0.03149414, -0.0105896, -0.0045204163, -0.008979797, 0.03652954, 0.014717102, 0.052001953, 0.054107666, -0.018859863, 0.0013303757, 0.029083252, -0.028289795, 0.039123535, 0.012901306, 0.03466797, -0.0067253113, -0.010147095, 0.06878662, -0.03704834, -0.05230713, 0.035125732, 0.006389618, -0.0046653748, -0.05392456, 0.0859375, 0.06304932, -0.0045700073, 0.033325195, 0.008506775, -0.021469116, 0.00048398972, -0.00053215027, -0.053253174, -0.009529114, -0.018875122, 0.012451172, -0.012245178, -0.04107666, -0.008399963, 0.041748047, 0.0037784576, -0.04208374, 0.028900146, -0.026397705, 0.032196045, -0.0541687, 0.022064209, 0.016281128, 0.004524231, 0.0029029846, 0.011238098, -0.04473877, 0.025726318, -0.0037136078, -0.019546509, -0.043914795, 0.006126404, -0.022537231, 0.018081665, 0.036743164, -0.02029419, -0.034088135, 0.014373779, 0.03050232, 0.016967773, -0.019714355, 0.06365967, 0.010803223, -0.0024909973, -0.05355835, 0.031433105, 0.07348633, 0.040771484, 0.001004219, 0.06567383, 0.014503479, 0.011299133, 0.020980835, 0.021987915, 0.0107421875, -0.00843811, -0.013160706, 0.009429932, 0.018997192, -0.02508545, -0.0050086975, -0.02607727, -0.0069503784, 0.027893066, -0.00944519, 0.029129028, -0.023513794, 0.07324219, -0.028030396, 0.0038986206, -0.003566742, 0.009338379, 0.059020996, -0.00932312, -0.0021896362, -0.018615723, 0.036224365, -0.0149002075, 0.0113220215, 0.03817749, -0.004508972, 0.020202637, 0.026107788, 0.011413574, 0.006881714, -0.0005683899, -0.0084991455, -0.040222168, 0.048065186, -0.0072517395, -0.029922485, 0.007194519, -0.056732178, -0.023483276, -0.021514893, 0.021011353, -0.040222168, 0.08001709, -0.010520935, 0.011238098, -0.0063323975, 0.012229919, -0.010269165, -0.011802673, -0.005142212, 0.009223938, 0.0007662773, -0.020324707, -0.014213562, 0.002866745, 0.033935547, -0.025405884, 0.014427185, -0.021102905, 0.017333984, -0.004940033, 0.040893555, -0.020492554, -0.029785156, -0.03970337, -0.017791748, 0.021408081, 0.01927185, 0.00920105, 0.0027484894, 0.030319214, -0.0039634705, 0.049041748, 0.0017147064, 0.07385254, 0.022994995, -0.029174805, -0.04244995, -0.008041382, -0.004108429, -0.0024986267, 0.010154724, 0.013908386, 0.031982422, -0.047943115, -0.008674622, 0.027709961, 0.045837402, -0.01828003, 0.023025513, -0.0034160614, -0.0053215027, 0.036499023, 0.050109863, 0.01210022, 0.03286743, -0.03564453, -0.010475159, 0.010398865, -0.005844116, 0.007499695, -0.002357483, -0.03048706, -0.031234741, 0.010437012, -0.018859863, -0.009490967, 0.046722412, -0.06573486, -0.0335083, -0.0013399124, -0.004131317, -0.013832092, -0.022537231, -0.036956787, 0.039093018, -0.017669678, -0.0067596436, 0.007797241, -0.007331848, 0.0043563843, -0.031082153, -0.015411377, 0.022735596, -0.0075263977, -0.019882202, -0.0010051727, -0.025131226, -0.022354126, -0.0048332214, 0.047576904, -0.066711426, -0.057159424, 0.015716553, -0.0126953125, -0.004421234, -0.0013198853, 0.06262207, 0.008056641, 0.0552063, -0.0109939575, -0.0071258545, -0.032592773, -0.012245178, 0.036712646, -0.0033168793, -0.022262573, -0.022827148, 0.02809143, -0.010444641, -0.010185242, 0.020233154, -0.00957489, -0.083862305, 0.0004963875, 0.004737854, -0.011955261, 0.03086853, -0.013008118, 0.03555298, 0.043548584, -0.030212402, 0.012794495, -0.0011644363, -0.008995056, 0.04324341, -0.01928711, 0.07055664, 0.005077362, -0.12573242, -0.03253174, -0.04736328, 0.008529663, -0.023590088, -0.035888672, 0.052886963, 0.017837524, -0.040100098, 0.010566711, 0.036010742, -0.009963989, -0.011016846, -0.013656616, 0.020507812, -0.04586792, -0.031555176, -0.040496826, -0.008277893, -0.07165527, 0.04309082, -0.0075798035, -0.021469116, -0.024642944, -0.025161743, 0.00674057, -0.028167725, -0.050231934, 0.0011634827, -0.044677734, -0.024551392, 0.017486572, -0.012687683, 0.0211792, -0.01927185, -0.039245605, -0.0418396, -0.0012264252, -0.001200676, -0.028015137, 0.0024929047, 0.019622803, 0.0044822693, 0.1081543, -0.03427124, -0.04309082, -0.045440674, 0.021255493, -0.0061912537, 0.0021133423, 0.04638672, -0.017852783, 0.022842407, 0.018188477, -0.07434082, 0.033966064, -0.039123535, 0.01789856, -0.057739258, -0.014213562]}, "B0024ECBMA": {"id": "B0024ECBMA", "original": "Brand: Camco\nName: Camco 59313 Vertical Two Stage Propane Regulator , Gray\nDescription: \nFeatures: Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances\nInlet: 1/4\" Female NPT Outlet: 3/8\" Female NPT\nOutlet pressure 11\"WC\nFor vertical mount applications\n160,000 BTU/hr\n", "metadata": {"Name": "Camco 59313 Vertical Two Stage Propane Regulator , Gray", "Brand": "Camco", "Description": "", "Features": "Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances\nInlet: 1/4\" Female NPT Outlet: 3/8\" Female NPT\nOutlet pressure 11\"WC\nFor vertical mount applications\n160,000 BTU/hr", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.041503906, -0.051239014, -0.04736328, -0.025817871, -0.07092285, -0.0025863647, -0.06149292, 0.03994751, -0.02407837, 0.012382507, 0.01197052, 0.0025749207, -0.031097412, -0.035217285, -0.004924774, -0.030258179, 0.013160706, 0.017120361, 0.0016565323, -0.035308838, 0.025680542, -0.02482605, -0.017501831, 0.07598877, -0.0071372986, 0.016967773, 0.01789856, 0.0031147003, -0.0095825195, -0.01789856, 0.019699097, -0.00233078, 0.021377563, -0.03552246, 0.050811768, -0.019744873, 0.040374756, -0.011878967, 0.012252808, -0.004173279, -0.019302368, 0.018814087, 0.06921387, 0.012771606, -0.004333496, -0.040161133, 0.018295288, -0.030090332, 0.022720337, 0.00017428398, -0.017364502, 0.030944824, -0.011459351, -0.024124146, 0.00091552734, 0.003047943, -0.0070610046, 0.026443481, 0.029769897, 0.021636963, -0.017089844, 0.0069503784, 0.0019702911, -0.04397583, -0.042510986, 0.015007019, 0.042816162, -0.01689148, 0.012290955, -0.06536865, -0.022491455, 0.029052734, -0.031555176, -0.001461029, -0.04800415, 0.027160645, -0.011802673, -0.020080566, 0.0317688, -0.0005607605, -0.03729248, 0.015235901, -0.012802124, -0.0071792603, -0.027618408, -0.021453857, -0.028366089, 0.004962921, -0.059020996, -0.039001465, -0.035827637, -0.0036849976, -0.06896973, -0.013458252, -0.015205383, -0.008918762, -0.01939392, -0.056365967, 0.07446289, -0.0061454773, 0.02368164, -0.048309326, -0.007774353, 0.0014419556, 0.019882202, 0.0064926147, 0.021240234, -0.00036501884, 0.035858154, -0.009140015, -0.032470703, 0.078063965, -0.0032081604, -0.0057792664, -0.031051636, -0.03161621, -0.048614502, 0.014663696, 0.008514404, 0.0041503906, -0.01626587, -0.008026123, 0.08300781, -0.04940796, 0.017471313, 0.011802673, -0.032470703, -0.043884277, -0.013175964, 0.014289856, -0.028839111, -0.00021779537, 0.03540039, 0.054504395, 0.028244019, -0.0046081543, 0.021240234, -0.009155273, 0.028274536, -0.032409668, 0.035461426, 0.014671326, 0.019241333, 0.033294678, -0.03286743, 0.051513672, 0.036895752, -0.018844604, -0.036621094, -0.077819824, -0.011100769, -0.05038452, 0.021392822, 0.008857727, -0.020889282, -2.8014183e-05, -0.021591187, 0.009735107, -0.013893127, -0.007358551, -0.01940918, -0.037506104, -0.0028266907, -0.022781372, -0.016113281, 0.045196533, -0.023040771, 0.0014896393, 0.020629883, 0.027862549, -0.031082153, 0.020355225, 0.059539795, 0.0024223328, -0.023590088, 0.0039978027, -0.05670166, 0.024551392, 0.06695557, -0.075927734, -0.044036865, -0.040924072, 0.09222412, -0.01713562, -0.009147644, -0.020950317, 0.01651001, 0.007675171, -0.011184692, 0.010627747, 0.022399902, 0.03314209, -0.008934021, 0.0075187683, -0.013847351, -0.030471802, 0.019058228, 0.016357422, -0.02911377, -0.0061454773, -0.039123535, -0.008110046, 0.001127243, 0.019165039, 0.036102295, -0.022949219, 0.0058555603, -0.0022640228, 0.01802063, 0.012664795, -0.009811401, -0.031433105, 0.013961792, -0.03277588, -0.022323608, 0.017028809, -0.0032043457, -0.019134521, -0.008018494, -0.0062675476, 0.014297485, 0.0071907043, 0.006664276, 0.031921387, 0.02911377, 0.0037574768, 0.019317627, 0.011482239, 0.061523438, 0.031799316, 0.03225708, -0.042297363, 0.0069732666, 0.018356323, -0.022949219, 0.022216797, 0.034332275, 0.037261963, -0.020324707, -0.004901886, 0.008644104, -0.02734375, -0.033477783, 0.019943237, -0.0345459, -0.036071777, 0.0103302, 0.0071525574, -0.018920898, -0.0053901672, 0.050231934, -0.015777588, 0.015960693, 0.02267456, -0.048217773, 0.019897461, -0.017227173, 0.002023697, -0.005332947, 0.033935547, -0.0138168335, 0.054229736, 0.04522705, -0.001083374, 0.07543945, 0.02557373, 0.05731201, 0.038635254, -0.048034668, 0.024841309, 0.016601562, 0.053649902, 0.0006017685, 0.009346008, -0.010307312, 0.008125305, -0.016662598, 0.0071983337, 0.007045746, 0.0031013489, -0.0030498505, -0.036468506, -0.008201599, -0.0022773743, 0.054870605, 0.028244019, 0.019088745, 0.0067825317, -0.07476807, -0.012413025, 0.029724121, -0.01600647, -0.022109985, -0.03527832, -0.018722534, -0.006996155, 0.043548584, -0.05227661, 0.033721924, -0.013366699, -0.010917664, 0.056396484, -0.0007586479, -0.003545761, 0.0015153885, 0.013305664, -0.008262634, 0.011054993, 0.0011358261, 0.009109497, -0.047576904, 0.030075073, 0.015670776, 0.00894165, 0.033447266, 0.0043945312, -0.016479492, 0.05014038, 0.0149002075, 0.032226562, -0.020523071, 0.05380249, -0.019439697, 0.018249512, 0.026351929, 0.003414154, -0.009765625, -0.0033836365, -0.040161133, -0.017059326, 0.021774292, -0.035064697, 0.0059814453, 0.031799316, 0.010513306, 0.013336182, -0.005844116, 0.06890869, -0.01424408, -0.06488037, -0.00541687, -0.052886963, -0.0026493073, 0.052124023, -0.014793396, -0.01687622, 0.028579712, 0.0063209534, -0.0047798157, -0.004383087, 0.016586304, -0.038116455, 0.044189453, -0.018981934, 0.042388916, 0.009803772, -0.062561035, -0.008926392, 0.046203613, -0.061523438, 0.021224976, -0.024902344, -0.04736328, -0.091308594, 0.031280518, 0.005306244, -0.050811768, -0.059539795, -0.019332886, -0.03881836, -0.010192871, -0.039245605, 0.000813961, -0.00605011, 0.01828003, 0.011680603, 0.028198242, -0.018997192, 0.05657959, 0.026031494, 0.026504517, 0.011047363, -0.000415802, 0.004497528, 0.050872803, 0.008216858, 0.06781006, 0.07922363, 0.027862549, -0.037719727, 0.010093689, 0.04284668, -0.05618286, -0.015579224, 0.0070228577, -0.005504608, -0.014099121, -0.006587982, -0.041412354, -0.019210815, -0.054504395, -0.023162842, -0.0058517456, -0.0592041, 0.009338379, -0.09436035, -0.05267334, -0.03942871, 0.034362793, 0.0051651, -0.0044441223, -0.004840851, -0.0032348633, -0.024276733, -0.025817871, 0.0029678345, -0.017211914, -0.0020771027, -0.031204224, 0.016815186, 0.037963867, -0.05609131, 0.0058403015, 0.02720642, -0.03579712, 0.030075073, -0.031677246, 0.020935059, -0.028701782, 0.02079773, -0.011154175, -0.0070152283, -0.02293396, -0.042633057, -0.02003479, 0.015411377, -0.002817154, 0.025390625, -0.008117676, 0.0035705566, -0.066345215, -0.02810669, 0.0059432983, 0.027267456, 0.041259766, -0.02645874, -0.055419922, -0.05987549, 0.010398865, -0.037231445, 0.018493652, -0.011207581, 0.051116943, 0.020431519, -0.0065994263, 0.11553955, 0.0032615662, 0.035491943, 0.033355713, -0.05834961, -0.034484863, -0.020523071, -0.009506226, -0.014625549, -0.008850098, -0.031585693, 0.023666382, 0.031097412, 0.026672363, -0.035583496, 0.013618469, 0.055877686, -0.021347046, 0.0074501038, -0.02861023, -0.00063085556, 0.01953125, 0.02218628, 0.0289917, -0.008003235, -0.04940796, 0.01776123, -0.057006836, 0.08685303, 0.035339355, -0.016052246, 0.07611084, 0.031799316, -0.012901306, 0.048461914, 0.06817627, -0.008384705, 0.024353027, 0.011146545, -0.04434204, -0.022628784, 0.02368164, -0.041931152, -0.012565613, -0.009895325, -0.05545044, 0.009925842, 0.0032024384, -0.010002136, -0.015113831, -0.005317688, 0.032440186, 0.00060129166, 0.027328491, 0.00059366226, 0.0021896362, -0.012458801, -0.009086609, 0.021942139, -0.017242432, -0.02760315, 0.0099105835, -0.026992798, -0.025161743, 0.0137786865, -0.0060310364, 0.006755829, -0.002445221, 0.028961182, 0.014518738, -0.00041127205, -0.025466919, 0.019546509, -0.049865723, -0.015808105, 0.013404846, 0.03515625, -0.026321411, -0.03741455, 0.0395813, 0.006439209, 0.014572144, 0.006298065, 0.033447266, -0.039154053, 0.04925537, 0.0236969, -0.04727173, -0.046020508, -0.0008907318, -0.03378296, -0.027908325, -0.029541016, -0.012969971, -0.044189453, -0.0105896, 0.016799927, -0.051483154, -0.031280518, -0.038757324, 0.013114929, -0.018615723, 0.016952515, -0.022476196, -0.015457153, 0.010009766, 0.016326904, -0.049957275, -0.026824951, -0.042419434, -0.019744873, 0.06890869, 0.034088135, -0.008125305, -0.00029468536, -0.017807007, 0.008049011, 0.039520264, 0.019882202, -0.0032634735, -0.026733398, -0.017929077, 0.016906738, 0.0099487305, 0.039031982, 0.017562866, 0.023483276, -0.027709961, 0.04647827, -0.06542969, 0.013496399, 0.053588867, -0.041137695, -0.043762207, -0.00094795227, 0.064331055, -0.0015916824, 0.031311035, 0.027511597, 0.005176544, -0.015419006, -0.0051994324, -0.11193848, -0.024902344, -0.014511108, -0.014305115, -0.018249512, 0.004219055, -0.018737793, 0.042022705, 0.00623703, -0.014801025, 0.01864624, -0.008888245, 0.0158844, -0.017318726, -0.028518677, 0.0022220612, 0.01776123, 0.006996155, 0.007545471, -0.058898926, 0.04815674, 0.071777344, 0.007965088, 0.03692627, 0.0012216568, -0.007911682, -0.008972168, -0.04309082, 0.0005440712, 0.05432129, 0.058166504, -0.027267456, -0.023849487, 0.024490356, -0.039154053, -0.005962372, -0.012954712, -3.7133694e-05, 0.013122559, -0.008987427, -0.04437256, -0.031585693, 0.02267456, -0.0010118484, -0.0027313232, -0.026275635, -0.0005412102, 0.011672974, -0.02458191, -0.012931824, -0.009490967, -0.031051636, -0.0072746277, -0.045135498, -0.0010242462, 0.010917664, 0.030075073, -0.013404846, 0.036590576, -0.017974854, 0.006904602, 0.00737381, 0.0018463135, -0.029830933, 0.018096924, -0.02079773, 0.0074539185, 0.052124023, 0.004398346, 0.007820129, 0.013328552, -0.0061149597, 0.02243042, -0.009735107, -0.04663086, 0.037017822, 0.009361267, -0.010887146, -0.0018634796, 0.07739258, -0.013198853, 0.01940918, -0.02079773, 0.025238037, 0.014533997, -0.0041770935, 0.011192322, -0.03579712, 0.027832031, -0.053222656, 0.010894775, 0.025268555, 0.0033245087, -0.0026664734, 0.006023407, 0.014709473, -0.039611816, -0.035064697, 0.009269714, -0.014587402, -0.012550354, -0.030395508, -0.011405945, 0.039367676, -0.0023899078, -0.017807007, -0.028320312, -0.018722534, 0.018249512, -0.032287598, -0.013206482, 0.0018625259, 0.022857666, -0.015007019, -0.035369873, -0.014579773, 0.00048065186, -0.028121948, -0.022872925, 0.012107849, -0.0052948, -0.009613037, 0.035217285, -0.02168274, -0.017913818, 0.033325195, 0.0065574646, 0.017807007, 0.0048065186, -0.03741455, -0.01953125, 0.007003784, 0.014823914, 0.015602112, -0.03262329, 0.0317688, -0.019851685, -0.031036377, -0.011062622, 0.026229858, -0.013542175, -0.030441284, 0.04663086, 0.062561035, -0.0058670044, 0.026412964, -0.021102905, -0.06048584, 0.07550049, 0.008140564, -0.0715332, -0.011688232, -0.02229309, -0.038635254, 0.035369873, -0.03616333, -0.02444458, 0.057891846, 0.0047721863, 0.0025539398, -0.056121826, -0.055480957, 0.0059432983, -0.039978027, -0.009902954, -0.052856445, 0.03427124, -0.032409668, 0.004550934, -0.06414795, -0.07336426, 0.0009851456, 0.016708374, 0.049194336, -0.009811401, 0.027191162, 0.03753662, -0.04144287, 0.025299072, 0.02217102, -0.0107803345, 0.004676819, 0.014717102, -0.04156494, 0.05255127, -0.029205322, 0.008155823, -0.03933716, 0.047058105, 0.018814087, 0.048675537, -0.083740234, -0.034942627, 0.03945923, 0.0579834, -0.042663574, -0.027359009, 0.009719849, 0.03543091, -0.044677734, -0.0368042, 0.024902344, -0.037384033, 0.00491333, -0.06304932, -0.0680542, -0.031829834, -0.05630493, 0.05581665, -0.06890869, 0.017364502, -0.038726807, 0.02230835, -0.0018100739, 0.0038051605, 0.03955078, -0.039031982, -0.004261017, -0.007949829, 0.02861023, 0.0287323, -0.041656494, -0.0017223358, -0.02204895, -0.003168106, -0.014419556, 0.039398193, -0.008079529, -0.0024719238, -0.015853882, -0.009498596, 0.011192322, 0.02482605, -0.0025577545, 0.010437012, -0.00029945374, 0.020721436, 0.019363403, -0.020706177, 0.0036010742, 0.011604309, 0.027633667, 0.005874634, -0.01838684, -0.0017356873, -0.01171875, -0.021514893, 0.002368927, -0.0022640228, -0.006286621, 0.0012083054, -0.04824829, 0.06536865, 0.022644043, 0.03289795, 0.051696777, -0.02406311, 0.0021476746, 0.011741638, 0.02720642, -0.006038666, -0.03503418, -0.018600464, 0.01008606, 0.030685425, 0.085754395, 0.016067505, -0.011009216, -0.007408142, -0.008712769, 0.009895325, 0.0075416565, -0.00039052963, 0.031143188, -0.025390625, -0.020599365, 0.007358551, -0.013961792, 0.009750366, 0.014625549, 0.05935669, -0.0024204254, 0.015342712, 0.012489319, -0.023635864, 0.05529785, 0.019454956, 0.0019798279, -0.060760498, 0.013793945, -0.009552002, -0.024215698, -0.0067863464, 0.013847351, -0.027801514, 0.008979797, -0.00048828125, -0.024887085, -0.028244019, -0.019683838, 0.02456665, 0.003419876, 0.007801056, -0.017196655, -0.018127441, -0.0236969, 0.006942749, -0.030441284, -0.022460938, -0.07098389, -0.0234375, 0.0041046143, -0.057617188, 0.0033168793, -0.010757446, -0.030776978, -0.014572144, 0.037109375, -0.0047950745, -0.027801514, -0.03945923, 0.037719727, -0.008201599, -0.0057258606, 0.02406311, 0.027511597, -0.06542969, -0.04888916, 0.018585205, -0.011100769, -0.003118515, -0.032318115, -0.022415161, -0.04421997, -0.009407043, 0.07293701, 0.055877686, 0.041046143, 0.009613037, 0.07446289, -0.048034668, -0.014923096, 0.016464233, 0.03201294, -0.017181396, -0.034576416, -0.014152527, 0.032684326, 0.031341553, -0.0072784424, 0.08294678, -0.019241333, 0.07141113, 0.019546509, 0.00039219856, 0.0368042, -0.00819397, 0.020706177, 0.024337769, -0.035705566, -0.04119873, -0.0287323, -0.0440979, 0.012870789, -0.03479004, 0.040161133, -0.031341553, -0.06695557, -0.081604004, -0.029388428, 0.038513184, 0.028762817, -0.024429321, 0.031341553, 0.04159546, -0.027374268, 0.0048828125, -0.0029449463, 0.019119263, -0.008613586, 0.0087509155, -0.0016431808, -0.008956909, -0.0155181885, -0.020584106, -0.03845215, 0.020324707, -0.023422241, 0.025222778, -0.015068054, -0.028381348, -0.023361206, 0.019577026, -0.02935791, -0.005607605, -0.032836914, -0.023849487, 0.036743164, 0.024597168, 0.009384155, 0.013717651, 0.036102295, 0.006263733, -0.024795532, 0.017654419, 0.010894775, 0.018936157, -0.007675171, 0.0006299019, 0.0058517456, 0.06781006, 0.0046577454, -0.058288574, -0.04135132, 0.050720215, 0.00598526, -0.0138549805, 0.019195557, -0.016235352, 0.014320374, 0.039154053, -0.06854248, 0.026779175, -0.05532837, 0.03289795, -0.04159546, -0.03152466]}, "B0787VMCT8": {"id": "B0787VMCT8", "original": "Brand: FDW\nName: FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze\nDescription: \nFeatures: \u2160 \u3010EASY TO ASSEMBLY:\u3011All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater\n\u2161 \u3010PUT LOTS OF HEATER:\u3011The patio heater\u2019s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it\u2019s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater\n\u2162 \u3010MULTIPLE PLACE USAGE:\u3011The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters\n\u2163 \u3010SAFTY:\u3011 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater\n\u2164 \u3010HIGH QUALITY MATERIAL:\u3011 The patio heater use high quality stainless steel of the heating element which isn\u2019t easy to melt/burn off, and the outdoor heater fire can\u2019t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater\n", "metadata": {"Name": "FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze", "Brand": "FDW", "Description": "", "Features": "\u2160 \u3010EASY TO ASSEMBLY:\u3011All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater\n\u2161 \u3010PUT LOTS OF HEATER:\u3011The patio heater\u2019s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it\u2019s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater\n\u2162 \u3010MULTIPLE PLACE USAGE:\u3011The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters\n\u2163 \u3010SAFTY:\u3011 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater\n\u2164 \u3010HIGH QUALITY MATERIAL:\u3011 The patio heater use high quality stainless steel of the heating element which isn\u2019t easy to melt/burn off, and the outdoor heater fire can\u2019t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.028427124, 0.00869751, -0.0039978027, -0.011138916, 0.024047852, -0.024276733, 0.042663574, 0.0068130493, -0.064331055, 0.0047416687, -0.008049011, 0.020706177, -0.015686035, -0.027832031, 0.057891846, -0.05508423, 0.012825012, -0.0065574646, -0.017410278, -0.024337769, -0.004135132, -0.015853882, -0.025894165, 0.076049805, 0.015136719, -0.04067993, 0.112854004, -0.013572693, 0.01626587, -0.028869629, 0.036376953, -0.008529663, 0.044891357, 0.0030384064, -0.01876831, -0.044555664, -5.8591366e-05, -0.0158844, -0.04083252, 0.038879395, 0.015113831, -0.006664276, -0.047973633, 0.014251709, -0.046783447, -0.0065078735, -0.007286072, -0.0055999756, -0.008293152, 0.030044556, 0.0029125214, -0.031555176, 0.0024929047, 0.023406982, -0.037597656, -0.02178955, 0.03250122, -0.023468018, 0.026245117, -0.044555664, -0.02911377, -0.0010328293, 0.035491943, 0.024719238, -0.03768921, 0.035369873, 0.042144775, -0.015419006, 0.037353516, -0.045318604, -0.03149414, 0.00818634, 0.010185242, 0.009712219, -0.0049095154, -0.005405426, 0.0061454773, 0.0231781, 0.01058197, 0.02015686, 0.02822876, 0.0071487427, 0.025405884, -0.037628174, 0.031951904, -0.004470825, 0.0045814514, -0.035095215, -0.06085205, -0.05203247, -0.044281006, -0.048706055, -0.05557251, 0.00036740303, -0.008323669, 0.0011730194, -0.036468506, -0.04309082, 0.009933472, 0.019363403, 0.020507812, -0.033447266, 0.037719727, -0.00844574, -0.040161133, 0.064697266, 0.011001587, 0.011726379, -0.02973938, 0.011985779, -0.0049934387, -0.07562256, -0.0020179749, -0.011886597, -0.02545166, 0.00029230118, -0.026016235, -0.022018433, 0.012916565, -0.05291748, -0.008300781, -0.010978699, -0.0011548996, 0.051727295, 0.029373169, 0.04434204, -0.006412506, 0.010665894, -0.043029785, 0.039276123, -0.020690918, 0.0032539368, 0.03427124, 0.039733887, -0.014091492, -0.016845703, 0.014480591, 0.011131287, 0.016586304, -0.030181885, 0.032165527, 0.0023498535, 0.016281128, 0.01675415, 0.014976501, 0.0024719238, -0.009269714, 0.011955261, 0.032165527, 0.019821167, -0.010215759, -0.015792847, 0.038482666, -0.00015175343, -0.014038086, -0.046142578, 0.053588867, -0.056762695, 0.0007581711, -0.06463623, -0.041229248, -0.02041626, 0.028915405, -0.01146698, -0.01550293, 0.029968262, 0.009231567, 0.007701874, 0.013404846, 0.10595703, -0.012588501, 0.029144287, -0.041809082, 0.008262634, -0.0029029846, -0.033691406, -0.025802612, 0.06072998, 0.07836914, -0.14587402, -0.08996582, -0.05404663, 0.12512207, -0.042907715, -0.006378174, -0.034851074, 0.021438599, -0.0015640259, 0.0066986084, 0.015655518, 0.034057617, -0.006134033, -0.014793396, -0.0129852295, 0.007621765, 0.0031223297, -0.026016235, 0.008560181, -0.004760742, 0.010482788, -0.05569458, 0.022964478, -0.03062439, 0.010643005, 0.035980225, -0.01158905, 0.016357422, 0.020111084, 3.4213066e-05, 0.029129028, -0.013702393, -0.011497498, 0.019500732, -0.06970215, -0.017425537, 0.0051231384, 0.011474609, 0.0038280487, 0.0030784607, 0.024093628, 0.030166626, -0.021835327, -0.010345459, 0.012802124, 0.011116028, -0.044525146, -0.012649536, -0.032684326, -0.018188477, -0.00579834, -0.033172607, 0.04434204, -0.0022945404, 0.0597229, 0.014801025, 0.016433716, 0.05657959, 0.016036987, 0.020889282, -0.020767212, -0.0042877197, -0.033843994, -0.038482666, 0.046661377, -0.07281494, -0.036468506, 0.022445679, 0.022003174, -0.01260376, -0.007949829, 0.037506104, -0.00945282, 0.022445679, 0.018447876, -0.011291504, 0.02456665, -0.0012331009, 0.0018825531, -0.0076408386, 0.0115356445, 0.010650635, 0.02557373, -0.006790161, -0.0075263977, 0.026153564, -0.01424408, 0.030639648, 0.008483887, -0.004261017, -0.0042266846, 0.011566162, -0.021011353, 0.008323669, 0.043121338, -0.06512451, -0.02696228, -0.010391235, 0.018829346, -0.030044556, -0.014045715, -0.0062713623, 0.0074882507, 0.01210022, -0.002046585, 0.027786255, -0.011207581, 0.01209259, -0.0023498535, -0.008453369, 0.0022640228, 0.019821167, 0.00157547, -0.03173828, 0.020462036, 0.015266418, -0.023223877, 0.02520752, 0.016159058, 0.024642944, -0.019744873, 0.0021266937, 0.019943237, -0.06274414, 0.025863647, -0.004863739, 0.02973938, -0.028717041, 0.020629883, 0.0047035217, -0.021835327, -0.0118255615, 0.017333984, 0.031188965, 0.001452446, 0.047698975, 0.021850586, 0.023010254, 0.04901123, 0.0848999, 0.049804688, -0.043060303, 0.022033691, 0.0103302, -0.022232056, 0.029937744, -0.001704216, -0.035705566, 0.0026187897, 0.035247803, 0.006095886, 0.0115737915, -0.012496948, -0.03225708, -0.042053223, 0.008155823, -0.009895325, -0.0076942444, 0.0690918, 0.0012187958, -0.04385376, 0.009979248, -0.0045433044, 0.004989624, 0.017150879, -0.020568848, 0.026123047, -0.018753052, 0.024856567, -0.033569336, -0.011108398, -0.008171082, -0.04824829, 0.017593384, -0.04058838, 0.016311646, 0.018096924, -0.029220581, -0.038330078, 0.005130768, -0.062072754, -0.055236816, 0.0014247894, -0.06210327, -0.020339966, 0.024017334, 0.017120361, -0.022872925, 0.008140564, -0.045410156, -0.004638672, 0.062438965, -0.02772522, -0.04699707, -0.03024292, -0.08465576, 0.005432129, -0.02078247, -0.04071045, 0.0077552795, -0.016418457, 0.034729004, 0.038909912, -0.017486572, 0.006668091, -0.0105896, 0.038146973, 0.053771973, 0.032684326, 0.01158905, -0.018951416, 0.0063285828, 0.030212402, -0.003396988, 0.0031013489, 0.029312134, -0.012664795, 0.016647339, -0.001408577, -0.06866455, -0.0099487305, -0.07543945, 0.028533936, 0.005016327, -0.018203735, -0.005443573, -0.025665283, -0.03527832, -0.043426514, 0.00026750565, 0.033935547, -0.033325195, 6.967783e-05, -0.04446411, -0.0021018982, -0.01763916, 2.3782253e-05, 0.07232666, 0.0005970001, 0.009979248, -0.04559326, 0.03994751, -0.022201538, 0.033966064, 0.0011100769, -0.032836914, -0.0018367767, -0.023345947, 0.001405716, -0.0027866364, 0.06317139, -0.019042969, 0.019348145, -0.0124435425, -0.0062217712, -0.056427002, -0.011367798, 0.0317688, 0.036590576, 0.06347656, -0.038269043, -0.01763916, -0.014823914, 0.02331543, 0.0055732727, 0.022628784, -0.02633667, 0.002658844, -0.009490967, 0.016937256, -0.033081055, 0.02027893, 0.00029563904, 0.07861328, 0.027069092, 0.016708374, 0.07409668, 0.013031006, 0.025863647, 0.027404785, 0.0010852814, 0.006412506, -0.03213501, 0.043121338, 0.023162842, 0.014640808, -0.045288086, 0.022583008, 0.007347107, -0.023498535, 0.015037537, -0.0045051575, 0.0129470825, 0.026947021, 0.008903503, 0.03677368, 0.037902832, -0.022415161, -0.012794495, -0.034088135, 0.025527954, -0.08648682, 0.012710571, -0.09173584, 0.05529785, 0.022445679, -0.02116394, 0.09710693, 0.061706543, -0.030075073, 0.0473938, 0.012641907, 0.01737976, -0.025146484, 0.06750488, -0.022750854, 0.01210022, -0.0031108856, 0.0211792, -0.02015686, -0.02607727, -0.020080566, 0.023269653, -0.0038070679, 0.02027893, -0.03515625, 0.01222229, -0.024108887, -0.0015487671, 0.0017795563, -0.07446289, 0.017578125, -0.036132812, 0.01322937, -0.004020691, -0.028961182, -0.039123535, -0.007972717, -0.0021400452, -0.04928589, 0.01550293, 0.0008006096, 0.03010559, 0.0020694733, 0.032836914, -0.010261536, -0.0016450882, -0.009590149, 0.00037407875, -0.00064992905, 0.019546509, -0.011207581, 0.018203735, -0.006980896, -0.0088272095, 0.009506226, -0.027740479, -0.0013580322, 0.008712769, -0.031204224, -0.0340271, 0.0022087097, 0.015113831, 0.019073486, -0.035095215, -0.008804321, -0.012191772, -0.033233643, 0.011604309, 0.013023376, 0.015396118, -0.026916504, -0.04827881, -0.07745361, -0.03942871, -0.013252258, 0.027313232, -0.023986816, 0.006099701, -0.03866577, 0.019973755, 0.02142334, 0.0027446747, -0.040496826, -0.0107040405, 0.02507019, -0.014846802, 0.03878784, -0.026489258, -0.027755737, -0.0102005005, -0.025054932, -0.010009766, 0.03353882, -0.010345459, -0.02482605, -0.020706177, -0.007888794, 0.00032281876, 0.0053482056, 0.008094788, -0.016983032, 0.02456665, 8.7440014e-05, 0.0049095154, -0.055786133, -0.010131836, 0.02897644, -0.020965576, -0.028778076, -0.016647339, 0.053253174, -0.012481689, -0.005619049, -0.015670776, 0.01374054, 0.005466461, -0.0034389496, -0.05130005, -0.00055742264, 0.011474609, -0.050842285, 0.035705566, 0.0012903214, -0.0033073425, 0.00070619583, 0.07745361, -0.018341064, 0.0012636185, 0.014564514, 0.020812988, -0.012184143, 0.009994507, -0.027908325, 0.025115967, -0.008613586, -0.032409668, -0.05886841, 0.011680603, 0.080200195, 0.04425049, 0.048736572, 0.0103302, 0.020523071, -0.00055265427, -0.017349243, 0.03656006, 0.019973755, -0.003932953, -0.04031372, 0.015670776, -0.035827637, -0.016616821, 0.011657715, 8.058548e-05, 0.046569824, -0.0074691772, -0.00818634, 0.03250122, -0.031829834, -0.040100098, -0.0010004044, 0.051361084, -0.0012245178, -0.031341553, 0.04168701, -0.027877808, -0.039642334, -0.03643799, -0.01777649, -0.000620842, -0.0079956055, 0.001127243, -0.030456543, -0.026550293, 0.036071777, -0.02772522, -0.02243042, 0.050842285, -0.041992188, -0.021881104, -0.05633545, -0.015113831, 0.032409668, -0.034057617, -0.014709473, 0.025482178, -0.010932922, 0.030059814, -0.014839172, 0.04421997, 0.013282776, -0.014701843, -0.01977539, -0.0013904572, 0.013420105, -0.020767212, 0.04977417, 0.015823364, -0.0005660057, -0.064819336, 0.0056381226, 0.025650024, 0.0066337585, 0.015144348, -0.0395813, 0.038635254, -0.008895874, -0.018798828, -0.024673462, 0.022598267, -0.009437561, 0.04876709, -0.0076675415, 0.03829956, -0.01763916, -0.0072746277, -0.00047278404, 0.039520264, 0.007511139, -0.054351807, 0.009498596, 0.050933838, -0.033813477, 0.006225586, 0.008285522, 0.018997192, -0.058502197, -0.007911682, -0.014305115, -0.0006046295, 0.0008735657, 0.025497437, 0.032226562, 0.019058228, -0.07196045, -0.04171753, -0.03845215, 0.01802063, -0.009231567, 0.06781006, -0.020736694, -0.023223877, 0.06842041, -0.018493652, 0.01348114, 0.016464233, 0.015731812, -0.014587402, 0.0020580292, 0.005821228, 0.012680054, -0.04425049, 0.09991455, -0.037322998, -0.06713867, -0.03225708, 0.045776367, 0.011207581, 0.011566162, 0.09020996, 0.033966064, 0.015174866, 0.031234741, -0.0006914139, -0.045837402, 0.011329651, 0.015426636, -0.06781006, -0.03201294, -0.02645874, 0.015312195, -0.027297974, 0.020584106, -0.011665344, 0.028503418, -0.023406982, -0.010360718, -0.024887085, 0.0116119385, -0.023727417, -0.019439697, 0.010665894, -0.021759033, 0.0008993149, -0.03111267, -0.0077209473, -0.06463623, -0.035583496, -0.026321411, 0.03250122, 0.022521973, 0.02027893, -0.011054993, -0.021759033, -0.045135498, 0.03805542, 0.02128601, -0.04159546, -0.002243042, 0.014167786, 0.010345459, 0.0061035156, -0.04989624, -0.00806427, 0.011634827, 0.011772156, 0.010879517, -0.010154724, -0.0014619827, -0.032165527, 0.029006958, 0.015411377, -0.038635254, -0.009819031, 0.0039024353, 0.0011739731, -0.02708435, -0.028930664, 0.007835388, -0.024520874, -0.014190674, -0.021377563, -0.024993896, 0.020050049, -0.018341064, 0.03967285, -0.027282715, 0.03765869, 0.0033607483, -0.040893555, 0.013641357, -0.054779053, -0.011741638, -0.032714844, 0.014755249, 0.0055885315, -0.013435364, -0.045654297, 0.043945312, 0.013572693, 0.003068924, 0.04046631, 0.02947998, -0.010223389, -0.029525757, 0.018310547, 0.021987915, -0.06304932, 0.0129470825, -0.0413208, -0.010398865, -0.019973755, -0.04046631, -0.039093018, -0.005355835, 0.06384277, 0.01058197, 0.03265381, -0.020614624, 0.015930176, 0.0021476746, -0.01939392, -0.017105103, 0.0018453598, -0.02671814, -0.024475098, -0.0020961761, 0.01084137, -0.03289795, -0.0027427673, 0.04360962, -0.0007829666, -0.009033203, -0.016738892, 0.039520264, 0.003435135, -0.006286621, -0.022216797, -0.00035476685, 0.04888916, 0.00042915344, 0.016021729, 0.014007568, 0.0074005127, 0.008903503, -0.01071167, -0.054229736, 0.021102905, -0.042938232, 0.0054130554, 0.017318726, 0.03942871, -0.025100708, -0.00016248226, -0.015296936, -0.014122009, 0.019042969, -0.0135650635, 0.002954483, -0.021331787, -0.006298065, 0.0035800934, 0.0463562, -0.01737976, 0.024658203, -0.03010559, 0.013038635, -0.011955261, -0.032440186, -0.009780884, -0.0020542145, 0.01625061, 0.029678345, 0.03744507, 0.05218506, 0.0134887695, -0.013160706, 0.02230835, -0.018203735, 0.0048980713, -0.05154419, -0.013023376, 0.041259766, -0.033569336, -0.0023670197, 0.0023899078, 0.005470276, -0.0287323, 0.013809204, -0.029418945, -0.031463623, 0.011993408, -0.0047187805, -0.013900757, -0.010284424, -0.016708374, -0.00066280365, 0.023880005, 0.03387451, 0.086120605, -0.003786087, 0.029052734, -0.005832672, -0.035614014, -0.059173584, 0.010345459, -0.047027588, -0.011222839, 0.0067634583, -0.0004003048, 0.0037784576, -0.0023670197, 0.01751709, 0.09118652, 0.019805908, 0.007835388, 0.031051636, -0.026062012, -0.016342163, 0.018218994, 0.01953125, -0.014556885, -0.019699097, -0.0054512024, -0.018112183, 0.09173584, 0.01977539, -0.0052986145, -0.030838013, -0.047821045, -0.0947876, -0.0006160736, -0.0362854, 0.0031738281, 0.018295288, -0.020553589, -0.049865723, 0.07623291, 0.029067993, 0.07672119, 0.03829956, -0.004650116, 0.021942139, -0.047210693, -0.053649902, -0.07891846, -0.024032593, 0.050231934, 0.008964539, -0.058685303, -0.009284973, 0.033172607, -0.010292053, 0.017959595, 0.05706787, 0.016677856, 0.0259552, -0.026062012, -0.010597229, -0.0011377335, -0.025177002, 0.003873825, -0.015319824, 0.023361206, 0.04837036, 0.031829834, -0.039886475, 0.0045204163, -0.016952515, -0.011878967, 0.0154800415, -0.04159546, -0.018493652, -0.06304932, 0.033721924, 0.029434204, -0.002122879, 0.018310547, 0.021728516, -0.015380859, -0.06567383, -0.03277588, 0.05041504, -0.04827881, -0.037261963, -0.037353516, 0.031677246, 0.012161255, 0.017532349, -0.07910156, -0.047424316, 0.055725098, 0.007709503, -0.03050232, 0.022766113, -0.013954163, 0.010025024, 0.007888794, -0.07495117, -0.0061836243, -0.032348633, -0.010803223, -0.04147339, 0.0018663406]}, "B073KV4WLJ": {"id": "B073KV4WLJ", "original": "Brand: GasOne\nName: GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb\nDescription: \nFeatures: Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\nSave money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\nEASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\nSafety 1st - top quality propane hose adapter\n", "metadata": {"Name": "GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb", "Brand": "GasOne", "Description": "", "Features": "Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\nSave money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\nEASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\nSafety 1st - top quality propane hose adapter", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019485474, -0.005622864, -0.026123047, -0.016235352, -0.016525269, 0.00021111965, -0.015792847, 0.013748169, -0.0035858154, -0.017974854, 0.01083374, -0.00617218, -0.009460449, -0.05960083, 0.02432251, -0.019714355, 0.019104004, -0.024490356, -0.015602112, -0.033691406, 0.017730713, -0.031799316, 0.011108398, 0.10583496, -0.00041794777, -0.030303955, 0.06036377, -0.033233643, 0.024154663, -0.030929565, 0.012367249, 0.018661499, 0.04638672, -0.01008606, -0.05154419, -0.051971436, -0.035095215, -0.026397705, -0.06335449, 0.03543091, 0.019073486, -0.0069007874, 0.01914978, -0.004146576, -0.009140015, -0.033081055, 0.041381836, -0.017166138, 0.028930664, 0.024139404, -0.00057554245, -0.014595032, 0.008323669, -0.0025730133, -0.007511139, -0.004058838, -0.0029773712, -0.016937256, 0.009109497, 0.005622864, -0.005519867, 0.0016593933, 0.014213562, -0.008987427, -0.04333496, 0.026351929, 0.0004017353, -0.040863037, 0.04901123, -0.038238525, -0.0345459, 0.01335907, 0.012176514, 0.017807007, -0.06384277, -0.020523071, 0.032836914, -0.015045166, 0.02116394, -0.001534462, 0.023788452, -0.023788452, 0.018585205, 0.0054626465, -0.012832642, -0.0026416779, -0.005065918, -0.014968872, -0.012367249, 0.0011901855, -0.028076172, 0.022003174, 0.021026611, -0.005176544, -0.05230713, -0.00027656555, -0.026321411, -0.06378174, 0.013114929, 0.01373291, 0.021392822, -0.038513184, 0.0574646, 0.010101318, 0.012008667, 0.017227173, -0.006084442, -0.0137786865, 0.040222168, 0.01826477, -0.011947632, 0.07598877, -0.003194809, -0.0047798157, -0.015777588, 0.034057617, 0.0026493073, 0.00088119507, -0.010429382, 0.007293701, 0.01940918, 0.008239746, 0.020889282, -0.038330078, -0.0067825317, -0.028244019, -0.035217285, -0.004135132, -0.0345459, 0.018493652, -0.01928711, -0.0064315796, 0.03253174, 0.06915283, 0.01687622, -0.00491333, 0.03250122, -0.018478394, 0.01826477, 0.003522873, 0.0052223206, -0.05178833, 0.00032663345, 0.024383545, 0.03189087, 0.03945923, 0.018966675, -0.0059051514, 0.012413025, -0.023040771, -0.02734375, -0.018463135, 0.040283203, -0.038116455, -0.016082764, -0.05923462, -0.025970459, -0.030014038, 0.028518677, -0.031402588, -0.027069092, 0.00026249886, 0.0206604, 0.013031006, 0.015716553, 0.009391785, -0.0019798279, 0.01184082, 0.008575439, 0.045196533, -0.036865234, 0.05230713, -0.00023758411, 0.0011558533, 0.0002720356, -0.029953003, -0.05407715, 0.10296631, 0.058654785, -0.11999512, -0.045898438, -0.054626465, 0.13989258, -0.01108551, 0.038513184, -0.05810547, 0.010925293, -0.10015869, 0.005874634, -0.013839722, 0.017456055, 0.05807495, -0.013618469, -0.06335449, 0.010688782, 0.049224854, -0.022003174, 0.031204224, 0.0012454987, -0.015594482, -0.07702637, -0.015701294, 0.028320312, 5.1677227e-05, 0.030410767, -0.023925781, 0.0079956055, 0.024963379, 0.0008916855, 0.018249512, -0.004234314, -0.021224976, 0.012138367, -0.015022278, -0.023498535, -0.013420105, -0.0075531006, 0.002193451, 0.0067100525, -0.06378174, 0.070007324, -0.02607727, 0.062469482, 0.09686279, -0.023132324, -0.006462097, -0.021377563, -0.0051651, -0.02671814, 0.005115509, 0.008842468, 0.034576416, 0.06829834, 0.036895752, -0.030319214, 0.026611328, 0.09729004, 0.05505371, -0.014251709, -0.013839722, 0.012268066, -0.034088135, -0.0082473755, 0.033233643, -0.009101868, -0.03378296, 0.008239746, 0.020523071, -0.020553589, 0.0023727417, 0.08380127, 0.03274536, 0.017074585, 0.03543091, 0.003396988, 0.021011353, 0.012962341, 0.022277832, -0.043945312, 0.026901245, -0.012519836, 0.012580872, 0.0007715225, -0.006336212, 0.019104004, 0.02758789, 0.045135498, 0.035705566, -0.019851685, 0.017654419, 0.005832672, -8.940697e-07, -0.010231018, -0.02798462, -0.050048828, 0.004940033, -0.04095459, 0.052459717, -0.003124237, -0.029678345, -0.009140015, -0.050689697, -0.0042762756, -0.003900528, 0.05130005, 0.017959595, 0.03729248, -0.014694214, -0.04977417, 0.0004646778, 0.010658264, 0.04534912, 0.033996582, -0.031555176, -0.0034046173, 0.008117676, 0.052612305, -0.010299683, 0.03829956, -0.036193848, 0.026824951, 0.047607422, -0.071899414, 0.037506104, -0.023651123, 0.002155304, 0.0016546249, 0.0077400208, -0.0021858215, -0.03845215, 0.020065308, 0.008125305, 0.0005836487, 0.03475952, -0.030929565, -0.018127441, -0.016693115, 0.013916016, 0.02935791, 0.06604004, -0.0056266785, 0.010269165, -0.00086164474, -0.012123108, 0.017120361, -0.025100708, -0.027420044, 0.008323669, 0.028030396, 0.010818481, 0.005584717, 0.0096588135, -0.009613037, -0.044555664, -0.016540527, -0.015365601, 0.023971558, 0.017211914, -0.00055217743, -0.026489258, 0.03366089, 0.01209259, -0.026351929, -0.0049705505, -0.016845703, -0.03540039, 0.012969971, 0.0071372986, -0.027435303, 0.0033397675, 0.014152527, -0.018218994, 0.0021915436, -0.005542755, 0.0044059753, 0.0067749023, 0.0010938644, -0.011009216, -0.005218506, -0.0513916, -0.0037384033, -0.026062012, -0.060272217, -0.012214661, 0.07989502, -0.015365601, -0.032043457, -0.028213501, -0.02822876, -0.0004246235, -6.198883e-06, 0.0056762695, -0.093322754, -0.021881104, -0.030731201, 0.028823853, 0.035339355, -0.01902771, 0.0009422302, 0.015487671, 0.052520752, 0.060150146, -0.0501709, 0.0385437, -0.045196533, 0.068603516, 0.066711426, -0.007217407, 0.01335907, -0.057525635, 0.03353882, 0.07879639, 0.02494812, -0.030456543, 0.007987976, -0.008598328, -0.0019254684, 0.03665161, -0.02583313, -0.013969421, -0.034301758, 0.008796692, -0.019897461, 0.012512207, -0.011276245, -0.009757996, -0.0025482178, -0.046661377, 0.0060195923, 0.031799316, -0.005634308, 0.01399231, -0.02418518, 0.038848877, -0.007247925, -0.026397705, -0.01020813, -0.008232117, -0.03237915, 0.016921997, 0.035186768, -0.04458618, 0.04940796, 0.061279297, -0.058441162, -0.014694214, 0.0064582825, 0.05770874, -0.049926758, 0.013580322, -0.011474609, -0.03149414, -0.06341553, -0.056610107, -0.0087509155, 0.019744873, 0.0061302185, 0.018417358, -0.0040512085, 0.014877319, -0.042907715, -0.017486572, -0.033050537, 0.008232117, -0.025894165, -0.01171875, -0.021957397, -0.04119873, 0.017974854, -0.032104492, 0.014343262, 0.016281128, 0.023345947, -0.010055542, -0.003929138, 0.022018433, -0.01927185, 0.018737793, -0.038269043, -0.007888794, -0.014083862, -0.005760193, 0.01878357, -0.056121826, 0.0017061234, -0.038024902, 0.042266846, 0.012367249, 0.0019102097, -0.001294136, 0.010414124, 0.029663086, 0.0033035278, -0.016113281, 0.030670166, 0.057159424, -0.010444641, -0.032409668, -0.013801575, 0.0024738312, -0.06933594, 0.023269653, -0.08001709, 0.028823853, -0.018173218, -0.0019369125, 0.049224854, 0.049865723, -0.033203125, -0.0012979507, 0.030899048, -0.007045746, -0.0211792, 0.029556274, -0.05319214, -0.028656006, -0.007446289, 0.005466461, 0.013511658, -0.011421204, -0.0040664673, -0.011497498, 0.03048706, -0.0256958, -0.025146484, 0.020019531, -0.008354187, -0.009986877, -0.0256958, -0.079956055, -0.012832642, -0.058746338, -0.009506226, 0.023239136, -0.028213501, -0.006881714, -0.0051651, 0.026153564, -0.022323608, -0.014389038, 0.004360199, -0.0028839111, -0.010375977, 0.024047852, 0.011955261, -0.002275467, -0.022567749, 0.011199951, -0.06414795, 0.017684937, 0.0022144318, 0.059448242, -0.012329102, -0.062347412, 0.033813477, -0.026794434, -0.006214142, 0.068847656, 0.004047394, -0.10748291, -0.015640259, 0.031463623, 0.002040863, -0.06210327, -0.024414062, 0.007320404, -0.012138367, 0.03363037, -0.03753662, 0.00028705597, 0.015113831, 0.02078247, -0.032165527, -0.032440186, -0.029541016, 0.019042969, -0.010353088, 0.0068206787, -0.016021729, 0.025283813, 0.0010299683, 0.06149292, -0.05697632, -0.022491455, -0.06201172, 0.0047187805, -0.009719849, -0.019836426, -0.006263733, -0.063964844, -0.010070801, -0.026382446, 0.055358887, 0.026260376, 0.0033855438, 0.00983429, -0.0055236816, 0.01586914, 0.035583496, 0.053497314, 0.007156372, -0.009590149, -0.04348755, -0.02168274, -0.079833984, -0.0121536255, 0.046966553, -0.0340271, -0.06738281, -0.017990112, 0.07324219, 0.012107849, 0.016601562, -0.042236328, 0.004146576, 0.020462036, -0.01737976, -0.05239868, -0.0463562, -0.013450623, -0.038726807, -0.017929077, -0.018615723, -0.025680542, 0.073791504, 0.039031982, 0.014732361, -0.024520874, 0.012199402, -0.011512756, -0.0104904175, 0.02154541, -0.061065674, 0.039215088, -0.05142212, -0.0262146, -0.051574707, 0.035736084, 0.02520752, 0.0006275177, 0.0032405853, 0.00217247, 0.00022375584, -0.014030457, -0.010505676, -0.0054473877, 0.026855469, -0.054779053, -0.046142578, 0.03604126, -0.060180664, 0.009536743, -0.026290894, -0.013404846, 0.003921509, 0.012207031, -0.02923584, -0.035827637, -0.039611816, -0.019073486, 0.013320923, 0.010597229, -0.056030273, -0.013542175, 0.026138306, -0.0059661865, -0.015197754, -0.0063934326, -0.022323608, -0.019439697, -0.03845215, 0.0011606216, -0.027389526, 0.022857666, 0.036376953, -0.020553589, -0.009223938, 0.018814087, 0.0034008026, -0.009819031, -0.021362305, 0.032958984, 0.026779175, -0.026977539, 0.018554688, 0.017532349, -0.01235199, 0.026229858, -0.022216797, 0.03491211, -0.017471313, 0.032989502, -0.039520264, -0.001499176, -0.0065345764, -0.07574463, 0.09387207, 0.0033912659, -0.017288208, -0.06781006, -0.007003784, -0.03933716, -0.037475586, 0.03552246, -0.017745972, 0.034179688, 0.005039215, -0.012794495, -0.021240234, 0.053588867, -0.021362305, 0.00023555756, -0.0029678345, -0.008361816, -0.027877808, -0.021514893, -0.031402588, 0.04837036, 0.0011606216, -0.018325806, 0.00374794, 0.04168701, -0.020843506, 0.0056610107, -0.0035476685, -0.0008816719, -0.014373779, -0.038482666, 0.016677856, 0.0015649796, -0.023025513, 0.0126953125, -0.03781128, -0.0014238358, -0.041870117, -0.046081543, -0.06640625, 0.010429382, 0.021133423, 0.030471802, -0.010696411, -0.045684814, 0.004962921, 0.060638428, 0.0317688, 0.012840271, -0.053375244, 0.018844604, 0.0062408447, 0.018371582, -0.016738892, 0.015174866, 0.030014038, -0.028274536, -0.005088806, -0.033966064, 0.049560547, -0.019638062, -0.021133423, 0.067993164, 0.046325684, 0.0058021545, 0.025024414, -0.009414673, -0.012786865, -0.016204834, -0.011123657, 0.04650879, -0.09094238, -0.056030273, -0.026794434, 0.016448975, 0.0068244934, 0.024856567, 0.031829834, 0.0051612854, -0.007247925, -0.0064697266, 0.016952515, -0.017425537, -0.039764404, 0.006629944, -0.023376465, 0.0031528473, -0.0037784576, 0.008033752, -0.05569458, -0.047210693, 0.01725769, 0.01676941, 0.027938843, 0.031921387, 0.017623901, 0.022918701, -0.062286377, 0.00068998337, -0.0060768127, -0.026031494, -0.008872986, 0.028366089, 0.016235352, 0.03665161, -0.026565552, -0.02027893, -0.020874023, 0.029922485, 0.009063721, 0.01638794, -0.0012083054, 0.008407593, -0.034301758, 0.020111084, -0.016052246, -0.042755127, -0.008491516, -0.004512787, -0.030349731, -0.03086853, 0.01083374, -0.021331787, -0.004257202, -0.046661377, 0.00082588196, 0.002664566, -0.009506226, 0.032409668, -0.0025196075, 0.014198303, 0.0017948151, 0.00724411, 0.011047363, -0.023880005, 0.015808105, 0.014976501, 0.008628845, 0.00497818, 0.03265381, 0.014228821, -0.026916504, -0.083740234, 0.022201538, 0.043518066, -0.011947632, -0.0021247864, -0.055755615, -0.0042533875, 0.056396484, -0.040252686, -0.030853271, 0.038238525, 0.012329102, -0.024536133, -0.038879395, -0.003435135, -0.021713257, 0.0050201416, 0.024765015, 0.029586792, 0.01838684, 0.009712219, 0.021865845, -0.007068634, 0.011993408, -0.020431519, 0.021469116, -0.01802063, 0.005191803, -0.009429932, -0.032562256, -0.013717651, 0.015975952, -0.009628296, -0.013938904, 0.0033245087, 0.030090332, 0.013175964, -0.009971619, -0.03704834, -0.027297974, -0.0013132095, -0.013679504, 0.0072898865, 0.008483887, 0.017684937, 0.053985596, -0.007648468, -0.0046081543, 0.010299683, -0.041229248, -0.010787964, 0.013450623, 0.018692017, -0.023605347, 0.0158844, -0.0035572052, 0.020095825, 0.003648758, 0.04333496, 0.048431396, 0.004283905, -0.0029697418, -0.021331787, 0.025863647, -0.02720642, 0.0040359497, -0.011245728, 0.009468079, 0.0073051453, -0.03994751, 0.0016078949, -0.053649902, -0.017181396, 0.015563965, -0.04446411, 0.013656616, 0.03656006, -0.0020103455, 0.016555786, -0.032226562, 0.05255127, -0.012634277, -0.044067383, -0.028625488, 0.0029582977, 0.025878906, -0.027801514, -0.016296387, -0.050109863, -0.025894165, -0.046173096, 0.041290283, -0.019897461, -0.005519867, -0.0077781677, -0.0082092285, 0.014717102, -0.013877869, 0.007205963, 0.025161743, 0.046905518, -0.033325195, -0.0065307617, -0.022949219, 0.0076522827, -0.0043296814, 0.019195557, -0.07043457, -0.040527344, -0.027496338, 0.012809753, 0.013702393, -0.0045394897, 0.00031757355, 0.043762207, 0.0068511963, -0.008201599, -0.0053367615, -0.07281494, -0.025634766, 0.046844482, 0.003791809, -0.016540527, -0.039367676, 0.050109863, 0.0034160614, 0.02670288, 0.0015935898, 0.014709473, -0.018447876, 0.028823853, 0.006549835, -0.025543213, -0.0021972656, -0.023956299, 0.04034424, -0.007701874, -0.034057617, 0.057922363, 0.032470703, 0.031082153, 0.036865234, 0.019500732, -0.0068740845, -0.014839172, -0.04232788, -0.007583618, -0.017349243, 0.016677856, -0.008514404, -0.041870117, -0.06213379, -0.009750366, 0.016906738, -0.02670288, 0.028121948, -0.012390137, -0.006542206, 0.023773193, -0.030761719, -0.024337769, -0.0014925003, -0.016235352, -0.010246277, -0.022277832, 0.06793213, -0.014160156, -0.02217102, -0.022644043, -0.03060913, -0.025054932, -0.027160645, -0.034301758, -0.04534912, -0.07775879, 0.038085938, 0.027069092, -0.012565613, 0.024032593, 0.019302368, -0.0036182404, -0.029907227, 0.0071372986, 0.031280518, 0.01966858, -0.029434204, 0.015525818, 0.019943237, 0.018692017, -0.015579224, -0.08569336, -0.051727295, 0.028335571, 0.035888672, -0.013717651, 0.082092285, -0.043395996, -0.0034561157, 0.031555176, -0.03829956, -0.037475586, 0.022140503, 0.060791016, 0.0074501038, 0.011695862]}, "B003T08FV4": {"id": "B003T08FV4", "original": "Brand: Hiland\nName: Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver\nDescription: \nFeatures: seasons: All year long\n", "metadata": {"Name": "Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver", "Brand": "Hiland", "Description": "", "Features": "seasons: All year long", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.025177002, -0.016204834, -0.052368164, -0.06173706, 0.005168915, -0.026000977, -0.013435364, 0.044799805, -0.04055786, 0.022750854, -0.002029419, 0.02545166, 0.024612427, -0.02798462, 0.041778564, -0.0178833, 0.028625488, 0.022201538, 0.0051498413, -0.019973755, -0.008041382, 0.003452301, -0.017501831, 0.077819824, 0.05593872, -0.07525635, 0.012069702, 0.021499634, 0.030700684, 0.006362915, 0.04208374, -0.007133484, 0.014671326, -0.017562866, 0.02796936, -0.000705719, -0.0042915344, -0.00667572, -0.012435913, 0.004020691, -0.009765625, 0.024765015, 0.019317627, 0.006664276, -0.042938232, -0.024047852, -0.01966858, 0.0018854141, -0.0014972687, 0.034820557, -0.0019931793, -0.010848999, 0.0073013306, 0.017578125, -0.024642944, -0.049865723, -0.004501343, 0.021148682, 0.030181885, -0.034454346, -0.0423584, -0.011482239, 0.040100098, -0.0073890686, -0.042236328, 0.007858276, 0.057128906, -0.016738892, 0.058654785, -0.06124878, -0.037963867, 0.068359375, 0.00022637844, 0.035949707, -0.03704834, 0.00087833405, 0.039794922, 0.017730713, 0.023910522, 0.017562866, 0.00217247, -0.035949707, 0.035461426, 0.01474762, -0.008163452, 0.019424438, -0.01424408, -0.0070762634, -0.019683838, -0.041534424, -0.022399902, -0.036071777, -0.05355835, 0.03540039, 0.007156372, -0.019500732, -0.017562866, -0.04727173, 0.042236328, -0.029342651, 0.02319336, -0.03579712, -0.057525635, 0.021575928, -0.01940918, 0.010856628, -0.019012451, 0.03378296, 0.038116455, 0.049987793, -0.0056114197, 0.0038013458, 0.0053977966, 0.027511597, -0.04171753, -0.03543091, -0.051574707, 0.014381409, -0.01902771, -0.00070524216, 0.0031814575, 0.015037537, 0.00774765, 0.007850647, 0.001332283, 0.013290405, -0.029846191, 0.0008535385, -0.030944824, 0.014450073, -0.014831543, 0.0135650635, -0.021896362, 0.02999878, -0.0043754578, 0.00047397614, 0.07098389, -0.0019550323, 0.008529663, -0.02923584, -0.002840042, 0.0368042, 0.019851685, -0.02796936, 0.030975342, 0.031921387, 0.020431519, -0.013343811, -0.0025196075, 0.0011806488, -0.0038890839, -0.03427124, 0.019134521, 0.010253906, -0.019500732, -0.013954163, 0.028930664, -0.02784729, -0.027954102, -0.06585693, -0.004146576, -0.023086548, -0.00983429, 0.014076233, -0.011238098, 0.040863037, 0.03692627, 0.0062332153, 0.026229858, 0.06768799, -0.008842468, -0.024017334, 0.011947632, 0.02508545, -0.010177612, 0.007091522, -0.056030273, 0.0690918, 0.053863525, -0.07952881, -0.061676025, -0.053344727, 0.12585449, -0.029174805, -0.008728027, -0.051696777, 0.00041532516, -0.021560669, 0.046875, 0.009971619, 0.04119873, -0.018295288, -0.030578613, -0.03289795, -0.0030918121, 0.002166748, -0.06994629, -0.007118225, -0.021224976, 0.0362854, -0.029220581, 0.020004272, -0.022399902, 0.02230835, 0.009994507, -0.008224487, 0.0037021637, 0.012069702, 0.029281616, 0.05508423, -0.015655518, 0.03677368, 0.0069732666, -0.09509277, 0.0063171387, 0.049987793, 0.0023651123, 0.031463623, 0.0026569366, 0.0049858093, 0.0044403076, 0.013694763, 0.011436462, 0.0103302, 0.009117126, 0.0149383545, -0.022232056, 0.0035076141, 0.027877808, 0.009933472, 0.027862549, 0.013832092, 0.04638672, 0.07965088, 0.0048217773, 0.025543213, 0.056030273, 0.021499634, -0.0028209686, -0.022567749, 0.011497498, -0.040283203, -0.018112183, 0.054229736, -0.02331543, -0.0051956177, 0.018478394, 0.01373291, -0.019638062, 0.025039673, 0.03845215, -0.0046577454, 0.008720398, 0.025146484, -0.08117676, 0.02784729, 0.0017662048, 0.0006008148, 0.010314941, 0.024093628, -0.011779785, 0.0524292, 0.01966858, 0.002664566, 0.03286743, 0.019424438, 0.059692383, 0.044128418, -0.0022258759, -0.012634277, -0.0007658005, 0.024475098, -0.009429932, 0.027435303, 0.050231934, -0.010177612, -0.011764526, -0.007282257, -0.0045280457, 0.010765076, 0.005744934, -0.011421204, -0.04159546, -0.004398346, 0.036346436, 0.035614014, -0.007827759, 0.009757996, -0.025985718, 0.0006418228, 0.020492554, 0.019363403, -0.022354126, 0.035247803, -0.011253357, -0.013114929, -0.0064086914, 0.02268982, 0.0035419464, -0.0038223267, -0.015205383, 0.04095459, -0.01525116, 0.020233154, 0.014404297, 0.04309082, 0.02243042, 0.023040771, 0.015670776, 0.008743286, -0.042663574, -0.016174316, 0.027832031, 0.0625, 0.0076789856, 0.008766174, 0.026428223, 0.049041748, 0.031829834, -0.016860962, -0.012634277, 0.07269287, -0.005508423, -0.009941101, 0.044067383, -0.007194519, -0.042022705, -0.008483887, -0.0070381165, 0.010246277, 0.02519226, -0.019104004, -0.0138168335, -0.051208496, 0.008102417, -0.008003235, -0.008903503, 0.023086548, -0.018432617, -0.05770874, -0.021759033, -0.010765076, 0.020843506, 0.018463135, -0.032806396, -0.00869751, 0.012718201, 0.0061416626, -0.0038452148, -0.00066947937, 0.002521515, -0.0048713684, -0.000682354, 0.0030269623, 0.009773254, 0.019348145, -0.028015137, -0.025360107, -0.00029158592, -0.059814453, 0.012275696, 0.011741638, -0.001001358, -0.013153076, 0.00724411, -0.035858154, -0.04385376, 0.0040397644, -0.034851074, 0.008506775, 0.027648926, -0.009048462, -0.04449463, -0.04296875, -0.0680542, 0.0038146973, 0.01953125, -0.034942627, 0.026397705, 0.0009407997, 0.02709961, 0.012840271, 0.0028247833, -0.017105103, -0.043914795, 0.027297974, 0.023147583, 0.023666382, -0.00075769424, -0.027755737, 0.022521973, 0.060943604, -0.022247314, -0.0013370514, 0.015777588, -0.017150879, -0.02796936, 0.0056495667, -0.080200195, -0.00020492077, -0.09289551, 0.017745972, 0.006855011, -0.03942871, -0.011558533, -0.048797607, -0.0635376, -0.052581787, 0.026977539, 0.03579712, -0.027297974, 0.017654419, -0.040924072, 0.009895325, -0.03237915, 0.023040771, 0.045440674, -0.019638062, 0.037078857, -0.012954712, 0.03918457, -0.050842285, 0.029663086, 0.018951416, -0.033599854, 0.0005373955, -0.033233643, 0.00932312, -0.0033435822, 0.03765869, -0.025390625, 0.0137786865, -0.031341553, -0.022644043, 0.0073280334, 0.059692383, 0.019943237, 0.060760498, 0.012039185, 0.0037937164, -0.0141067505, -0.043273926, -0.019866943, 0.0152282715, -0.031402588, 0.024597168, -0.03274536, -0.002292633, 0.006511688, -0.06524658, -0.008590698, 0.0049858093, 0.021820068, 0.020080566, 0.004512787, 0.04840088, 0.011520386, 0.02279663, 0.015617371, -0.036346436, -0.025726318, -0.024246216, 0.005504608, -0.015151978, 0.008430481, -0.049591064, 0.077941895, 0.02003479, 0.018493652, -0.010673523, -0.00076913834, 0.015411377, 0.017700195, -0.011566162, -0.00076293945, -0.032958984, 0.029205322, 0.026809692, -0.020080566, -0.049316406, -0.060668945, 0.018569946, -0.033996582, 0.046844482, 0.03652954, -0.019378662, 0.06100464, 0.024780273, -0.008575439, 0.028045654, 0.03555298, 0.029373169, 0.016036987, 0.04473877, 0.006919861, -0.031555176, -0.00064086914, -0.01864624, 0.0015277863, -0.049591064, -0.017715454, 0.03704834, 0.033691406, 0.007255554, -0.046966553, -0.0018339157, 0.009887695, -0.023468018, 0.017410278, -0.03933716, -0.0072364807, -0.040252686, -0.03543091, 0.0025177002, -0.031707764, -0.024856567, 0.012123108, -0.009162903, -0.03201294, -4.1484833e-05, 0.037322998, -0.0042800903, -0.0007071495, 0.00932312, 0.043640137, 0.019546509, -0.052734375, 0.0038146973, -0.011413574, 0.06518555, 0.024108887, -0.004261017, 0.040374756, -0.02279663, 0.005958557, -0.013961792, -0.004234314, 0.020462036, -0.044128418, -0.08239746, 0.0002001524, 0.014678955, -0.0070381165, -0.052612305, 0.0067367554, -0.0058250427, -0.0037879944, 0.011672974, 0.003047943, -0.021850586, -0.0028305054, 0.005634308, -0.0635376, -0.054626465, -0.014556885, -0.018798828, -0.0030727386, 0.00844574, -0.022109985, 0.015991211, 0.015716553, 0.047210693, -0.036621094, -0.03237915, 0.0019989014, -0.005935669, 0.042053223, -0.0045547485, 0.0063095093, -0.039978027, -0.005584717, -0.015838623, 0.087646484, 0.020126343, 0.0019102097, -0.034454346, -0.015945435, 0.0052490234, 0.017623901, 0.01586914, -0.04034424, 0.0028305054, -0.004940033, -0.018844604, -0.070373535, 0.03137207, 0.048736572, -0.0031757355, -0.029586792, 0.00083732605, 0.027786255, 0.011512756, -0.00554657, -0.011566162, 0.005344391, 0.020767212, -0.0036773682, -0.06976318, -0.054534912, 0.0062332153, -0.03970337, -0.0032539368, -0.008811951, -0.035095215, 0.055236816, 0.011245728, 0.014015198, -0.06964111, -0.018218994, 0.01739502, 0.02130127, 0.03201294, -0.023254395, -0.011856079, -0.014091492, 0.0010232925, -0.038757324, 0.015472412, 0.025802612, -0.017364502, 0.032928467, -0.00011974573, 0.020889282, 0.048919678, -0.01033783, -0.031829834, -0.006866455, 0.041534424, 0.011886597, 0.02079773, 0.07873535, 0.0042762756, 0.0037059784, -0.06665039, 0.030914307, 0.07196045, -0.0037155151, 0.0052757263, -0.042053223, 0.002544403, -0.0068893433, 0.016586304, 0.012908936, -0.033081055, 0.04437256, -0.04446411, -0.022979736, 0.016586304, -0.017608643, -0.023666382, -0.02520752, 0.0035743713, -0.01537323, 0.01461792, 0.015060425, 0.0016498566, -0.07165527, 0.04498291, 0.00248909, 0.009941101, -0.06530762, 0.041259766, 0.049835205, 0.0041389465, 0.00497818, 0.0074768066, -0.027648926, 0.0131073, -0.025238037, 0.018859863, -0.018188477, -0.024169922, -0.000112235546, -0.0077056885, -0.008773804, 0.009307861, 0.06665039, 0.0021839142, 0.015991211, -0.04876709, 0.0067634583, -0.036254883, -0.025848389, 0.02508545, -0.025024414, 0.033050537, -0.041046143, -0.015014648, 0.019317627, 0.02557373, -0.027816772, -0.021331787, 0.015975952, -0.035858154, -0.026657104, 0.013313293, -0.039916992, 0.025756836, -0.0058021545, -0.0020751953, 0.038330078, 0.0060691833, -0.039916992, -0.022872925, 0.015182495, 0.017150879, -0.021560669, 0.009399414, 0.015670776, -0.019561768, 0.027313232, 0.037628174, 0.04296875, 0.009674072, -0.018173218, -0.038635254, -0.016586304, 0.006904602, -0.044158936, 0.028793335, -0.015106201, 0.009811401, 0.04260254, -0.02482605, -0.005214691, 0.027557373, -0.030532837, 0.0110321045, 0.0064697266, 0.027420044, -0.0036258698, 0.03564453, 0.08660889, -0.046844482, -0.0209198, -0.07800293, -0.0070533752, 0.02507019, -0.030822754, 0.06890869, -0.03387451, 0.019760132, 0.008483887, 0.0058784485, -0.029632568, 0.031433105, 0.019073486, -0.014045715, -0.040802002, -0.025131226, -0.019042969, 0.0051612854, -0.009132385, -0.028533936, 0.031051636, -0.015640259, -0.04525757, -0.029907227, -0.0074882507, 0.019012451, -0.086242676, -0.0014448166, -0.04006958, 0.015777588, 0.034942627, -0.010665894, -0.035827637, -0.019241333, -0.023712158, 0.039764404, 0.0395813, -0.0052375793, -0.0027313232, 0.028839111, -0.053619385, 0.043182373, -0.0031318665, -0.013557434, 0.017623901, 0.064331055, 0.0065612793, 0.032958984, -0.03289795, -0.036834717, -0.013748169, -0.019882202, 0.06500244, -0.0027656555, -0.0038490295, 0.024169922, 0.06072998, 0.008110046, 0.02520752, 0.049957275, 0.03378296, -0.012512207, -0.03286743, 0.012161255, 0.025909424, -0.04034424, -0.030166626, -0.064086914, 0.01576233, 0.022537231, 0.016937256, 0.030258179, -0.011230469, 0.034057617, 0.021896362, 0.036376953, 0.0056648254, 0.029312134, -0.05404663, -0.0006928444, -0.03225708, 0.052734375, 0.009742737, -0.03201294, 0.059906006, 0.0005583763, -0.041412354, 0.014320374, -0.001329422, 0.017440796, -0.028701782, 0.014633179, 0.036102295, -0.05239868, -0.008460999, -0.017578125, 0.01146698, -0.02104187, -0.046325684, -0.029525757, 0.0041618347, 0.0033130646, -0.01133728, 0.018707275, 0.02961731, -0.002494812, 0.01360321, -0.023162842, 0.011688232, -0.015045166, 0.035247803, -0.010879517, -0.018508911, -0.02180481, -0.06976318, 0.049224854, 0.027145386, 0.044555664, 0.059906006, -0.025024414, 0.016937256, -0.018188477, 0.060760498, -0.013320923, -0.02558899, -0.024108887, -0.015579224, 0.023117065, 0.020935059, -0.0077056885, -0.0029411316, 0.007270813, -0.04333496, 0.014968872, -0.028274536, 0.0028362274, 0.017730713, 0.04348755, -0.014419556, -0.023132324, -0.0146865845, -0.03878784, 0.0390625, -0.03829956, 0.0073432922, 0.047790527, 0.02571106, -0.025100708, 0.038635254, -0.027893066, 0.007583618, -0.034057617, 0.024261475, 0.011787415, -0.035888672, -0.03451538, 0.012451172, 0.018234253, 0.027008057, 0.051879883, 0.0127334595, -0.033721924, -0.008003235, -0.004486084, -0.042144775, 0.052520752, -0.039215088, -0.05441284, -0.012626648, -0.04888916, -0.0008597374, 0.005908966, 0.032806396, -0.0031433105, 0.026290894, -0.016281128, -0.015274048, 0.014961243, -0.019226074, -0.009407043, -0.010017395, 0.038848877, -0.03164673, 0.023498535, 0.009231567, 0.036712646, 0.021148682, 0.044158936, -0.016815186, -0.06945801, -0.08734131, 0.026809692, -0.07751465, -0.017456055, 0.06939697, -0.047912598, -0.011444092, -0.0033340454, 0.01890564, 0.04711914, 0.066833496, -0.018966675, 0.036834717, -0.04550171, -0.009498596, 0.019561768, 0.011016846, -0.018554688, -0.04736328, -0.0028495789, 0.01626587, 0.023361206, 0.038360596, 0.019165039, -0.06970215, -0.025512695, -0.059326172, 0.0011911392, -0.014152527, -0.008125305, 0.031707764, 0.007537842, -0.056243896, 0.012512207, 0.01864624, 0.049987793, 0.020141602, -0.037719727, 0.034179688, -0.031311035, -0.0390625, -0.058685303, -0.023544312, 0.02935791, 0.003124237, -0.01637268, 0.013153076, 0.040893555, -0.019683838, 0.025054932, 0.04046631, -0.0033988953, 0.014778137, -0.0010461807, 0.04812622, 0.011772156, -0.017105103, 0.063964844, -0.031677246, -0.029418945, 0.01939392, 0.052612305, -0.05822754, -0.03753662, -0.021881104, 0.007507324, -0.0118255615, -0.06439209, -0.09362793, -0.047180176, 0.058929443, 0.046020508, -0.019073486, 0.021743774, 0.024291992, 0.053131104, -0.03414917, -0.015029907, 0.014060974, -0.016586304, 0.0029335022, -0.008506775, 0.006084442, 0.022445679, 0.032409668, -0.059143066, -0.03463745, 0.07861328, 0.011169434, -0.05923462, 0.033081055, -0.052215576, 0.01914978, -0.0053596497, -0.041656494, -0.012741089, -0.0061302185, -0.02003479, -0.042388916, 0.013473511]}, "B00TFYOC5G": {"id": "B00TFYOC5G", "original": "Brand: Chard\nName: Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer\nDescription: The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you're making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.\nFeatures: 50,000 BTU Cast Iron Burner\n18 Quart Aluminum Pot\nTwo Aluminum Strainer Baskets with Insulated Handle\n21\" Welded Stand & Dual-sided for cooking two foods at once\n", "metadata": {"Name": "Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer", "Brand": "Chard", "Description": "The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you're making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.", "Features": "50,000 BTU Cast Iron Burner\n18 Quart Aluminum Pot\nTwo Aluminum Strainer Baskets with Insulated Handle\n21\" Welded Stand & Dual-sided for cooking two foods at once", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.05847168, -0.029632568, -0.0017671585, -0.047576904, -0.01763916, -0.017303467, 6.753206e-05, 0.0031547546, -0.037017822, 0.025802612, -0.011672974, 0.031082153, 0.0009675026, -0.012207031, 0.010383606, -0.027511597, 0.03704834, 0.007881165, 0.03793335, -0.01449585, 0.00598526, 0.019470215, 0.0070648193, 0.08459473, 0.052459717, 0.00079250336, -0.024276733, -0.00018954277, 0.016616821, -0.001742363, 0.04168701, -0.02331543, 0.054534912, 0.014160156, -0.06536865, 0.0007753372, -0.061950684, 0.0065193176, -0.04876709, 0.017471313, -0.002904892, 0.011390686, -0.035583496, -0.013618469, -0.050964355, -0.027816772, 0.014389038, 0.006137848, 0.020767212, 0.03161621, -0.01309967, -0.00014841557, -0.0061683655, -0.017150879, -0.013381958, -0.03515625, 0.056793213, 0.018249512, 0.04647827, -0.047912598, -0.075683594, -0.0025482178, 0.037384033, -0.016540527, -0.029541016, 0.005558014, 0.052093506, -0.013175964, -0.004386902, -0.039093018, 0.014038086, 0.027633667, 0.04006958, 0.02407837, -0.02116394, -0.06896973, 0.04034424, -0.0043258667, 0.023651123, -0.014785767, -0.03982544, -0.024230957, 0.021957397, -0.04321289, -0.0010690689, -0.015197754, -0.024963379, 0.004196167, -0.04534912, 0.0060768127, -0.008674622, -0.071899414, -0.059814453, 0.06317139, 0.028411865, -0.012916565, -0.06335449, -0.06817627, 0.008132935, 0.018310547, 0.009597778, -0.031799316, 0.04724121, 0.0012664795, -0.010002136, 0.052856445, -0.008811951, 0.029144287, 0.027297974, -0.003238678, 0.010818481, 0.02268982, 0.014343262, -0.02558899, 0.0009174347, 0.00415802, -0.026565552, 0.042938232, -0.000957489, 0.009216309, -0.016830444, 0.012748718, 0.022399902, 0.009262085, 0.0048942566, 0.013183594, -0.0073776245, -0.032440186, -0.05456543, 0.043884277, -0.006919861, -0.010787964, -5.620718e-05, 0.04937744, -0.018066406, -0.018447876, -0.03201294, -0.0058403015, -0.011390686, -0.010116577, -0.0075798035, 0.0011405945, 0.06964111, -0.025680542, -0.03479004, 0.009178162, 0.029006958, 0.026641846, -0.014076233, -0.044525146, -0.027313232, 0.031585693, -0.00248909, 0.037994385, -0.04373169, 0.041381836, -0.035858154, 0.0051727295, -0.01008606, 0.005241394, -0.0049438477, -0.03881836, -0.011116028, -0.005756378, -0.058288574, 0.070739746, -0.0027046204, -0.018875122, 0.023345947, -0.022827148, 0.0132751465, -0.007183075, -0.0028629303, 0.046539307, 0.029220581, 0.031951904, 0.014297485, 0.08514404, 0.021652222, -0.069885254, -0.05831909, -0.07196045, 0.13659668, -0.064331055, -0.03390503, 0.013465881, 0.0024757385, -0.000682354, 0.004295349, -0.013214111, 0.055664062, 0.041137695, -0.03793335, -0.009101868, 0.0048217773, 0.0079574585, -0.05065918, -0.0052108765, -0.012321472, 0.009277344, -0.03189087, 0.03274536, -0.01701355, 0.013961792, -0.023864746, 0.026992798, -0.00484848, 0.030395508, 0.035705566, 0.03161621, -0.022537231, -0.005317688, -0.002401352, -0.015945435, -0.014923096, 0.0129852295, -0.040771484, -0.005378723, 0.010749817, -0.021087646, 0.029800415, 0.02520752, 0.032196045, -0.0014858246, 0.04598999, 0.015174866, -0.025985718, -0.005962372, 0.055419922, 0.007534027, -0.004776001, 0.006137848, 0.032562256, 0.017425537, -0.040039062, 0.009223938, 0.017318726, -0.00497818, -0.0061531067, 0.021392822, 0.0011959076, -0.0435791, -0.035858154, 0.022476196, -0.0020999908, -0.0009522438, 0.010757446, 0.019592285, 0.0049819946, 0.021072388, 0.019500732, -0.028427124, 0.031280518, -0.021911621, 0.006832123, 0.009216309, -0.03717041, -0.009475708, 0.009513855, -0.010910034, 0.004524231, 0.018600464, 0.014259338, -0.010787964, 0.025466919, -0.06591797, 0.028625488, 0.0022773743, -0.008995056, -0.03894043, 0.022460938, 0.023498535, -0.020568848, -0.020614624, 0.002199173, -0.002521515, -0.014045715, 0.024871826, -0.012527466, -0.036193848, 0.013191223, 0.044555664, -0.020523071, -0.009300232, 0.0018033981, -0.008842468, -0.015083313, 0.017074585, -0.02758789, 0.00046229362, 0.022064209, 0.04336548, -0.033081055, 0.03677368, 0.0011167526, -0.005645752, 0.059783936, 0.025100708, 0.015541077, 0.003791809, -0.0023612976, 0.038269043, -0.017852783, 0.0015707016, 0.01071167, 0.034851074, 0.04727173, -0.026000977, 0.005542755, 0.022567749, -0.010543823, 0.028396606, 0.049560547, 0.013061523, 0.062072754, 0.039611816, 0.010520935, 0.08605957, 0.024291992, 0.00081062317, -0.005592346, 0.00472641, 0.015701294, -0.022994995, 0.019348145, -0.01486969, -0.017990112, -0.0018434525, -0.03652954, 0.041900635, 0.028457642, 0.027877808, 0.015144348, 0.01574707, -0.010215759, 0.01838684, 0.0017261505, -0.046966553, -0.020401001, -0.008934021, 0.006538391, -0.030349731, 0.017059326, -0.022415161, -0.0036506653, -0.029296875, 0.062286377, -0.0035877228, -0.01902771, 0.025527954, 0.01108551, -0.039154053, 0.00086688995, -0.03753662, 0.025817871, -0.07098389, -0.03942871, -0.047027588, -0.030975342, -0.084228516, -0.0072746277, -0.030349731, -0.041290283, -0.0395813, 0.034179688, -0.002773285, -0.045410156, -0.011962891, -0.031280518, -0.051696777, -0.023025513, -0.030639648, 0.014572144, -0.011726379, -0.0031852722, 0.02999878, 0.018859863, -0.022613525, 0.020904541, 0.0033168793, 0.021896362, 0.02784729, 0.017364502, 0.0138168335, -0.0044822693, 0.045959473, 0.025741577, -0.015960693, 0.025527954, -0.007785797, 0.018295288, 0.009735107, 0.019241333, -0.0129852295, 0.02520752, 0.01876831, -0.022460938, -0.0357666, -0.025222778, -0.008834839, -0.036315918, 1.0788441e-05, -0.02508545, -0.016296387, 0.029083252, -0.08892822, 0.030258179, -0.06304932, 0.0016546249, 0.006351471, -0.019058228, -0.015617371, -0.06311035, 0.021499634, 0.003107071, -0.021331787, 0.10192871, 0.022384644, 0.015319824, -0.07946777, 0.05392456, -0.08758545, 0.03173828, 0.0041007996, -0.03552246, -0.017868042, -0.026657104, 0.00010216236, 0.009223938, 0.014381409, -0.03881836, 0.022018433, -0.024536133, 5.441904e-05, 0.005138397, -0.004020691, -0.0057373047, -0.06317139, 0.012229919, -0.017044067, -0.04135132, -0.025131226, -0.002292633, -0.0042152405, 0.00573349, -0.0005040169, -0.012557983, -0.030654907, 0.03338623, -0.025146484, -0.0066947937, -0.013435364, 0.036132812, 0.016784668, -0.021026611, 0.06677246, -0.009490967, 0.03955078, 0.025314331, 0.008369446, 0.00283432, -0.031585693, 0.041778564, 0.024719238, -0.01423645, 0.00504303, 0.02420044, 0.017715454, 8.702278e-05, -0.0066337585, -0.01235199, 0.046722412, 0.0025844574, -0.032836914, 0.033691406, -0.05105591, -0.012634277, 0.039794922, -0.04321289, -0.043182373, -0.057159424, -0.0042266846, -0.039886475, 0.07128906, 0.044311523, -0.013961792, 0.09460449, 0.08746338, -0.015464783, 0.042541504, -0.009918213, 0.010627747, 0.0038528442, 0.032348633, -0.0027256012, 0.02166748, 0.004825592, -0.010269165, 0.015525818, 0.016159058, -0.06866455, 0.008132935, -0.0038490295, -0.024871826, -0.016601562, 0.014251709, 0.01777649, 0.008766174, 0.019927979, -0.008003235, -0.004360199, -0.0010070801, -0.0024471283, -0.0112838745, -0.026748657, 0.019073486, -0.03955078, 0.009666443, -0.04675293, -0.0042686462, 0.017959595, 0.05770874, -0.005569458, 0.042755127, -0.008743286, -0.0340271, -0.0129776, -0.021102905, -0.011260986, 0.015144348, 0.012199402, 0.013336182, 0.054382324, 0.014633179, -0.025787354, -0.038757324, -0.0063171387, 0.04876709, -0.027770996, -0.07897949, -0.022613525, -0.0038776398, 0.029403687, -0.055236816, -0.0031967163, 4.1127205e-06, -0.0017518997, 0.053955078, -0.07208252, 0.031188965, 0.0017223358, 0.0051002502, -0.0680542, -0.035461426, 0.00046896935, -0.024154663, -0.015579224, -0.008956909, -0.010566711, -0.005050659, -0.003063202, -0.006969452, -0.013336182, 0.00415802, -0.003917694, 0.017501831, 0.022750854, -0.023971558, -0.020233154, -0.010307312, -0.036956787, -0.011405945, 0.0736084, 0.0055236816, 0.000101685524, -0.043762207, -0.02154541, 0.007411957, 0.021377563, 0.028167725, -0.0026626587, -0.004676819, -0.011749268, -0.036315918, -0.04257202, -0.034606934, 0.063964844, -0.03213501, -0.0058059692, 0.00598526, 0.055633545, -0.043426514, -0.0034809113, -0.095336914, 0.03668213, 0.006893158, 0.025527954, 0.007507324, -0.050201416, 0.02508545, -0.025039673, -0.0034999847, -0.007461548, -0.0043144226, 0.014053345, 0.03302002, -0.023864746, 0.013824463, -0.068847656, -0.02810669, 0.028244019, 0.024841309, 0.032806396, -0.031097412, -0.0029144287, 0.03164673, -0.0713501, 0.08416748, 0.0770874, -0.012557983, 0.009132385, 0.016586304, -0.031204224, -0.067993164, -0.0178833, -0.016342163, 0.015777588, 0.0036411285, -0.022567749, -0.021987915, -0.02154541, -0.016311646, -0.045928955, -0.04437256, 0.0007176399, 0.03765869, 0.0018520355, 0.015304565, 0.02154541, -0.014259338, 0.015777588, 0.017959595, 0.022216797, -0.00844574, 0.035308838, -0.015266418, 0.003944397, 0.026504517, -0.01675415, 0.0052833557, 0.020477295, 0.02168274, -0.03894043, 0.037261963, 0.02658081, 0.016281128, 0.001914978, 0.012634277, 0.022750854, -0.034362793, -0.06500244, 0.004547119, -0.0025348663, -0.038330078, 0.02949524, -0.015197754, 0.0051498413, 0.03213501, -0.030838013, 0.049316406, -0.009895325, -0.027770996, -0.01725769, 0.015838623, 0.02545166, -0.035064697, 0.0026359558, 0.0093307495, -0.062927246, -0.018081665, 0.015380859, 0.010154724, -0.0317688, 0.024551392, -0.027954102, 0.052368164, 0.0209198, -0.033294678, 0.011619568, 0.064453125, -0.0317688, -0.0064315796, 0.045440674, 0.0009627342, -0.068481445, 0.00056505203, -0.037353516, 0.003452301, -0.007850647, 0.02130127, 0.02178955, -0.0035190582, -0.014579773, -0.03616333, 0.007583618, 0.023117065, -0.010154724, -0.013214111, 0.015403748, 0.010276794, 0.0030403137, 0.003004074, -0.0013914108, 0.010314941, 0.032104492, -0.021102905, -0.05090332, -0.013542175, -0.049041748, 0.016342163, 0.0044288635, 0.0019044876, 0.0597229, 0.0025119781, 0.0158844, 0.0063705444, -0.009208679, 0.011680603, 0.01272583, 0.0012493134, -0.0115737915, -0.010215759, 0.0814209, -0.042236328, -0.059936523, 0.0076141357, 0.01838684, 0.03451538, 0.018112183, 0.05239868, 0.0385437, -0.005367279, 0.047912598, 0.0027751923, -0.028060913, 0.02998352, 0.00819397, -0.05847168, -0.0045280457, -0.013572693, -0.0041503906, -0.005039215, -0.01979065, -0.021713257, 0.0064697266, -0.034820557, 0.0004339218, -0.008575439, 0.0059814453, -0.020965576, 0.003129959, 0.014442444, 0.00064992905, -0.005821228, -0.04333496, 0.001707077, -0.029281616, -0.020874023, -0.0042915344, 0.03125, 0.003780365, -0.030197144, -0.027511597, -0.018814087, 0.018707275, 0.07635498, -0.021713257, -0.013977051, 0.021957397, 0.06488037, 0.009010315, 0.056030273, -0.024093628, -0.032836914, -0.0011634827, 0.029708862, 0.0121536255, 0.008857727, -0.045715332, -0.043395996, 0.026779175, 0.036987305, -0.014472961, 0.024459839, 0.06939697, 0.05517578, -0.044830322, -0.026931763, -0.045684814, -0.046661377, -0.00025558472, -0.0137786865, -0.08605957, -0.032684326, -0.06286621, 0.034606934, -0.05050659, 0.0036678314, 0.013038635, -0.00015354156, 0.024505615, 0.008979797, -0.041290283, -0.0027828217, -0.05331421, 0.022750854, -0.024932861, -0.009773254, 0.0026950836, -0.0317688, 0.025939941, 0.04699707, 0.010726929, -0.0074005127, -0.0014753342, 9.125471e-05, -0.024261475, -0.029022217, 0.0362854, -0.048431396, -0.03173828, -0.016967773, -0.03805542, -0.040161133, -0.010444641, 0.06628418, 0.035858154, 0.0010690689, 0.002872467, 0.05871582, 0.019607544, 0.02809143, -0.015945435, -0.015625, 0.03652954, -0.002286911, -0.001250267, -0.012840271, 0.017700195, 0.0018558502, 0.032073975, -0.012268066, -0.015670776, -0.01902771, 0.03326416, 0.017486572, 0.01461792, -0.015167236, -0.04034424, 0.025100708, 0.018539429, 0.0017280579, 0.054595947, -0.001036644, 0.017990112, 0.04144287, -0.00674057, 0.047302246, -0.019042969, 0.047912598, 0.031982422, 0.026763916, -0.0028858185, 0.0068473816, -0.02180481, -0.0132369995, 0.035888672, -0.007904053, 0.004650116, 0.0023078918, -0.012641907, 0.046905518, 0.036346436, -0.03579712, 0.02848816, 0.013694763, -0.02508545, 0.020217896, 0.022720337, -0.00038528442, -0.0037021637, -0.02067566, -0.023254395, 0.016906738, -0.015823364, 0.046539307, 0.015090942, -0.004070282, -0.010818481, -0.009384155, 0.014320374, -0.02305603, -0.0058631897, -0.020812988, -0.03250122, -0.01651001, -0.04437256, -0.0032367706, 0.009689331, -0.041656494, 0.012512207, 0.04626465, -0.055389404, -0.043518066, 0.031341553, -0.0006761551, -0.033050537, -0.040771484, -0.00062942505, 0.037902832, 0.015472412, 0.041259766, -0.030212402, -0.08081055, -0.037506104, 0.057861328, -0.092041016, -0.07067871, 0.021606445, 0.014526367, 0.033813477, 0.009140015, 0.015617371, 0.07373047, 0.02305603, 0.0014352798, -0.059143066, -0.024978638, -0.0064888, 0.04788208, -0.018997192, -0.02482605, -0.01651001, 0.06744385, -0.018341064, 0.048950195, 0.020019531, 0.015563965, -0.039978027, -0.038238525, -0.066589355, -0.029174805, -0.023223877, 0.020965576, -0.00081300735, 0.019378662, -0.022766113, 0.010276794, -0.001493454, -0.008506775, 0.04260254, -0.01134491, 0.021957397, -0.031433105, -0.028625488, -0.064819336, -0.01625061, 0.046051025, -0.0021915436, -0.038360596, 0.05380249, 0.0121536255, -0.04006958, 0.008918762, 0.01914978, -0.0016736984, -0.025543213, -0.0025348663, 0.0065994263, -0.038116455, 0.008407593, -0.007091522, -0.020904541, -0.003501892, 0.03326416, 0.031280518, -0.045196533, -0.054260254, -0.0062675476, -0.009918213, -0.024246216, -0.028656006, 0.013977051, -0.03137207, 0.00042200089, 0.06488037, 0.006778717, -0.010887146, -0.04095459, -0.033203125, -0.03805542, 0.0006146431, 0.017028809, -0.014465332, -0.015014648, -0.010353088, 0.0057296753, 0.06378174, -0.030731201, -0.08569336, -0.0637207, 0.009017944, 0.0069465637, 0.017837524, 0.04055786, 0.01399231, 0.01965332, -0.0071487427, -0.00497818, -0.023635864, -0.004550934, 0.03161621, -0.02015686, 0.026763916]}, "B087B6RSSF": {"id": "B087B6RSSF", "original": "Brand: Chulan\nName: 5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection\nDescription: Propane has a meter that tells you how much pressure you're rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically.\nFeatures: \u3010Scope of application\u3011 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8\" Extended connector.\n\u3010CSA certification\u3011 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety.\n\u3010Quality\u3011 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment.\n\u3010Additional table\u3011 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.\n\u3010After-sales service\u3011 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.\n", "metadata": {"Name": "5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection", "Brand": "Chulan", "Description": "Propane has a meter that tells you how much pressure you're rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically.", "Features": "\u3010Scope of application\u3011 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8\" Extended connector.\n\u3010CSA certification\u3011 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety.\n\u3010Quality\u3011 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment.\n\u3010Additional table\u3011 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.\n\u3010After-sales service\u3011 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030700684, -0.009002686, -0.045806885, -0.0236969, -0.029266357, -0.0039749146, -0.02456665, 0.01133728, -0.0013599396, 0.007320404, -0.05493164, 0.011955261, 0.026306152, -0.01776123, 0.01890564, -0.03982544, 0.026397705, 0.0035171509, 0.026901245, -0.011177063, -0.010749817, 0.008987427, 0.016860962, 0.05947876, 0.010643005, -0.004550934, 0.026824951, -0.0010681152, -0.0009803772, -0.015037537, 0.017990112, 0.017410278, 0.033691406, 0.03375244, -0.063964844, -0.04849243, -0.007419586, -0.0044670105, -0.046173096, 0.030731201, -0.016418457, 0.019180298, -0.012214661, -0.0143585205, -0.023132324, -0.04260254, -0.017456055, -0.04046631, 0.020858765, 0.029281616, 0.008522034, 0.013641357, 0.0040512085, 0.015037537, -0.030578613, -0.030883789, 0.0018119812, 0.007762909, 0.0057792664, 0.019622803, -0.013320923, 0.013450623, 0.003686905, -0.016906738, -0.026428223, 0.006298065, 0.084228516, -0.0016384125, 0.0158844, -0.033843994, -0.0058250427, 0.037231445, 0.013504028, -0.0059509277, -0.028625488, -0.0009317398, -0.008132935, -0.020477295, 0.037384033, -0.0059280396, 0.0008573532, -0.029174805, 0.03881836, 0.018371582, 0.0021743774, 0.06640625, -0.011909485, -0.026870728, -0.051239014, -0.030197144, -0.029693604, 0.01914978, -0.06970215, -0.01197052, -0.02255249, -0.0126571655, -0.016937256, -0.08496094, 0.051727295, 0.010696411, 0.039916992, -0.02961731, 0.021026611, 0.02520752, 0.022003174, 0.07507324, -0.043762207, -0.0019836426, 0.042877197, 0.0068092346, 0.022399902, -0.03387451, -0.015777588, -0.019180298, -0.036621094, 0.0473938, 1.9609928e-05, -0.040100098, -0.012001038, -0.01940918, -0.027038574, 0.011550903, 0.014892578, -0.030700684, 0.00048470497, -0.0011320114, 0.0010375977, -0.030670166, -0.082092285, 0.01965332, -0.015579224, 0.0076560974, 0.06439209, 0.09643555, 0.03967285, -0.013969421, 0.0017518997, 0.013496399, 0.007545471, -0.0032176971, 0.011154175, 0.0078048706, 0.024978638, 0.009223938, -0.03857422, 0.029510498, 0.0062179565, 0.004283905, 0.0054244995, -0.076049805, 0.0010356903, -0.051818848, 0.038208008, 0.033569336, -0.053497314, 0.025894165, 0.0036449432, -0.0010623932, -0.025482178, -0.040405273, -0.009544373, -0.03729248, -0.025802612, 0.00067949295, -0.047058105, 0.06518555, 0.011672974, -0.004043579, 0.013847351, 0.03616333, -0.02670288, 0.05014038, 0.009170532, 0.019104004, 0.01727295, 0.009666443, -0.028244019, 0.06750488, 0.07635498, -0.11645508, -0.052246094, -0.051330566, 0.13793945, -0.04788208, 0.008140564, -0.018463135, 0.014755249, -0.016571045, 0.0056533813, 0.020568848, 0.0038547516, 0.025222778, -0.0036945343, -0.0025844574, 0.00037574768, -0.025756836, -0.03366089, -0.00617218, -0.021057129, -0.0066108704, -0.079833984, 0.020309448, -0.02923584, 0.02142334, 0.037506104, -0.023391724, 0.012619019, 0.030899048, 0.082214355, 0.009719849, -0.04055786, -0.03643799, 0.020645142, -0.013145447, -0.07067871, -0.0104904175, 0.013656616, -0.0037994385, -0.0036849976, -0.023925781, 0.015556335, -0.017196655, 0.0004775524, 0.06585693, 0.006099701, -0.013160706, -0.002855301, -0.005054474, 0.043670654, -0.019134521, 0.06121826, 0.016235352, 0.075927734, 0.050231934, -0.015853882, 0.017028809, 0.058502197, -0.015625, -0.0256958, 0.012702942, 0.026947021, -0.02041626, -0.042541504, -0.040893555, -0.022659302, -0.079956055, -0.011566162, -0.020874023, -0.021850586, 0.0129776, 0.0184021, 0.0234375, 0.019165039, 0.04550171, -0.013832092, 0.024383545, -0.025161743, 0.034179688, -0.031402588, 0.0029697418, -0.013687134, 0.012199402, 0.04220581, -0.010131836, 0.0463562, 0.014854431, 0.041259766, 0.045440674, -0.03173828, 0.022079468, 0.01348114, 0.017593384, -0.010643005, -0.030029297, -0.03842163, -0.0023651123, -0.032043457, 0.03479004, -0.020812988, -0.03744507, -0.0073928833, -0.01586914, -0.010635376, 0.009124756, 0.05114746, 0.013893127, 0.014961243, -0.0031528473, 0.029067993, 0.015670776, 0.047851562, -0.034240723, -0.029769897, 0.02243042, -0.046051025, -0.035003662, 0.040740967, -0.018417358, 0.013748169, -0.03616333, 0.032806396, 0.044158936, -0.037841797, 0.023239136, 0.005420685, -0.023284912, -0.016616821, 0.04788208, 0.025100708, -0.029769897, 0.0029563904, 0.06713867, 0.032196045, -0.044647217, 0.05279541, 0.0059890747, 0.004219055, 0.024246216, 0.021942139, 0.04534912, -0.014717102, -0.008270264, 0.00137043, -0.0020866394, 0.012557983, -0.0024471283, -0.015777588, 0.0042381287, -0.0234375, 0.031555176, 0.011108398, 0.0016889572, 0.001991272, -0.004081726, -0.0022621155, -0.01361084, -0.015151978, 0.032409668, -0.017501831, -0.05429077, -0.039611816, -0.07110596, 0.010414124, 0.0010719299, -0.055389404, -0.04537964, 0.06439209, -0.012184143, -0.026977539, 0.00957489, 0.041931152, -0.0051231384, -0.007888794, -0.05117798, 0.011352539, 0.007461548, -0.031234741, -0.05630493, 0.0069084167, -0.08520508, -0.02217102, -0.03366089, -0.072387695, -0.038513184, 0.07086182, -0.013877869, -0.03765869, -0.027526855, 0.005832672, 0.0033054352, 0.019302368, -0.0023612976, -0.046020508, -0.019348145, -0.013183594, -0.015022278, 0.06994629, -0.016799927, 0.0009469986, 0.03036499, -0.009262085, 0.01574707, -0.034454346, 0.020065308, 0.03326416, 0.020965576, 0.049682617, 0.020385742, 0.022872925, -0.025863647, -0.0044898987, 0.014503479, -0.034454346, -0.020858765, -0.013130188, 0.0009403229, 0.02381897, 0.0013685226, -0.0015125275, -0.025283813, 0.0059165955, 0.0027751923, -0.001917839, -0.0004529953, 0.005832672, -0.05645752, 0.015914917, -0.02973938, 0.014945984, 0.03338623, -0.008056641, 0.030517578, -0.0055732727, 0.014305115, -0.009155273, -0.013389587, 0.007797241, -0.0052375793, -0.02734375, -0.00217247, 0.06774902, -0.0960083, 0.04421997, 0.035888672, -0.014266968, 0.0048599243, 0.004650116, 0.011314392, -0.017547607, 0.017303467, -0.009338379, -0.028320312, -0.049865723, -0.023651123, -0.0033283234, 0.0079574585, 0.037902832, -0.028625488, 0.03451538, -0.010543823, -0.09552002, -0.013725281, -0.006454468, 0.02230835, -0.0016384125, -0.02583313, -0.03048706, -0.090270996, -0.0015325546, -0.037231445, 0.010536194, -0.0056114197, 0.059509277, 0.017440796, 0.0054130554, 0.06896973, 0.044006348, 0.0501709, 0.015930176, -0.0040283203, -0.014007568, -0.020065308, 0.019561768, 0.0056495667, -0.016326904, -0.016983032, 0.006439209, 0.0053749084, -0.0020446777, -0.020629883, -0.020339966, 0.071777344, -0.021759033, -0.011138916, 0.020446777, 0.018753052, -0.013206482, -0.030807495, 0.041046143, 0.017089844, -0.025375366, 0.005420685, -0.06768799, 0.072021484, 0.03591919, -0.020965576, 0.027999878, 0.0368042, 0.011230469, -0.009475708, 0.06903076, -0.025146484, 0.017562866, 0.016738892, -0.0063705444, -0.048309326, 0.0058898926, -0.05770874, 0.029205322, 0.0003092289, 0.011627197, 0.03314209, -0.00422287, -0.03353882, -0.05621338, 0.015930176, 0.013183594, 0.0039749146, 0.016830444, -0.057800293, -0.025466919, -0.02130127, 0.006298065, 0.033477783, -0.027633667, -0.0021953583, -0.0031604767, 0.011306763, -0.029144287, 0.0004954338, -0.015838623, -0.015838623, 0.018035889, 0.016906738, 0.032562256, -0.015090942, -0.0054512024, 0.01083374, -0.030960083, 0.017303467, 0.031829834, 0.034851074, 0.036132812, -0.027679443, 0.005027771, -0.02330017, -0.025848389, 0.054992676, 0.027160645, -0.06842041, -0.029312134, 0.0073051453, 0.011039734, -0.020935059, -0.01449585, -0.03314209, -0.012008667, 0.022659302, -0.040771484, 0.009666443, 0.005634308, 0.00054740906, -0.0340271, -0.023101807, -0.023803711, -0.019866943, -0.043762207, 0.0004811287, 0.002243042, -0.0029525757, 0.00409317, -0.010108948, -0.0368042, 0.004627228, -0.050720215, -0.004508972, 0.035064697, -0.009941101, -0.005847931, -0.01537323, -0.02909851, 0.0045051575, 0.020935059, -0.052124023, 0.021011353, -0.018356323, -0.00831604, -0.0054473877, 0.034179688, 0.03262329, 0.015411377, 0.025299072, -0.0075683594, -0.0035476685, -0.06738281, 0.010414124, 0.0103302, -0.018737793, -0.05581665, -0.0044403076, 0.076049805, -0.0038967133, 0.031951904, 0.041229248, 0.017578125, -0.0033512115, 0.009315491, -0.13317871, -0.045318604, -0.0041542053, -0.033111572, -0.0001270771, -0.0066604614, -0.012466431, 0.058166504, 0.042297363, -0.024353027, 0.028198242, -0.0049743652, 0.00044083595, -0.016464233, -0.0025157928, -0.01008606, 0.014549255, -0.03378296, -0.0047836304, -0.049987793, 0.04486084, 0.0181427, -0.012245178, -0.004131317, -0.028244019, -0.008728027, -0.037353516, -0.027832031, 0.048614502, 0.027618408, -0.011497498, -0.04309082, 0.022216797, -0.024871826, -0.012336731, -0.017349243, 0.062194824, 0.021240234, -0.05493164, -0.028305054, -0.03387451, -0.023071289, -0.0011348724, -0.0055999756, 0.02796936, -0.0041770935, 0.037994385, 0.02746582, -0.0028629303, 0.014862061, -0.0131073, -0.009902954, -0.020690918, 0.023162842, -0.007293701, -0.022140503, -0.02027893, 0.025512695, -0.03050232, -0.0076904297, 0.028686523, 0.0077705383, 0.014030457, -0.00037169456, 0.054138184, -0.0074653625, -0.007255554, 0.062561035, -0.022125244, 0.0012521744, 0.015960693, -0.014167786, 0.043914795, -0.007282257, -0.029541016, -0.005420685, -0.0019435883, -0.0041923523, -0.02557373, 0.0670166, 0.0054893494, -0.009605408, -0.045074463, 0.016418457, -0.016052246, -0.0024299622, -0.0109939575, -0.015136719, 0.046417236, -0.014511108, -0.019073486, 0.0473938, 0.0079956055, -0.01260376, 0.011672974, 0.032989502, -0.02142334, -0.047058105, 0.037200928, -0.0019168854, 0.02355957, 0.025146484, -0.057403564, 0.037750244, 0.02067566, -0.07763672, -0.014816284, -0.048431396, 0.040130615, -0.0010414124, -0.0026359558, -0.030426025, 0.009681702, -0.0068511963, -0.008781433, 0.04473877, 0.019683838, -0.029571533, -0.042144775, 0.004940033, 0.023712158, -0.0077323914, 0.04522705, -0.016433716, -0.0050849915, 0.034484863, 0.013465881, 0.046020508, -0.024414062, -0.03564453, -0.017227173, 0.0030136108, 0.009429932, -0.043762207, -0.04107666, 0.033691406, -0.046813965, -0.031066895, -0.014228821, 0.012283325, -0.017318726, -0.029769897, 0.054870605, 0.013397217, 0.017745972, 0.017288208, 0.0004901886, -0.023086548, -0.024856567, -0.010818481, -0.049987793, -0.060577393, -0.035095215, -0.009811401, -0.0058784485, -0.068115234, -0.03112793, 0.03161621, -0.0096206665, 0.0076446533, -0.01184845, -0.061309814, 0.0035877228, -0.010810852, 0.022827148, 0.0047035217, 0.020767212, -0.014892578, 0.030029297, -0.0914917, -0.058654785, 0.026824951, 0.018112183, -0.0062561035, 0.021362305, 0.016967773, 0.06542969, -0.047180176, 0.006298065, 0.019348145, -0.045440674, -0.037750244, 0.006958008, 0.02281189, 0.01878357, -0.03161621, 0.0087890625, -0.0137786865, -0.013122559, -0.030319214, 0.017562866, -0.060058594, -0.04562378, -0.009552002, 0.0715332, -0.003107071, 0.0012016296, 0.014373779, -0.009902954, -0.038116455, -0.015960693, -0.020721436, -0.028640747, -0.002658844, -0.05722046, -0.03555298, -0.03363037, -0.026275635, 0.017745972, -0.028961182, 0.009864807, -0.050567627, 0.06524658, -0.01864624, 0.004840851, 0.026153564, -0.035369873, 0.06542969, -0.024765015, 0.0234375, 0.0014476776, 0.006706238, -0.019622803, 0.003238678, 0.040649414, 0.021072388, -0.010925293, -0.05960083, -0.0021686554, 0.016677856, -0.026000977, -0.009338379, -0.016937256, -0.0054359436, -0.04147339, -0.0074882507, -0.011276245, 0.002313614, 0.052520752, 0.02319336, 0.042297363, -0.033691406, 0.03768921, -0.030883789, -0.0020809174, 0.0034217834, -0.028869629, 0.03213501, 0.016067505, -0.004421234, -0.008125305, -0.030136108, 0.01965332, 0.015235901, -0.024520874, 0.016723633, -0.046966553, 0.015586853, -0.01235199, 0.01374054, -0.016448975, -0.042236328, -0.010246277, 0.021530151, 0.011329651, 0.05407715, -0.017807007, 0.01008606, -0.0231781, 0.0060157776, 0.024902344, -0.0082473755, 0.022125244, 0.018737793, -0.055267334, -0.08325195, -0.08111572, -0.015357971, -0.050354004, 0.0015516281, 0.016036987, -0.014694214, 0.05670166, -0.008575439, -0.0068969727, 0.058502197, 0.026275635, 0.033599854, -0.07623291, 0.021362305, 0.0345459, -0.0115356445, 0.003929138, 0.006690979, -0.027816772, -0.007080078, 0.024291992, -0.023880005, 0.02796936, 0.0026836395, 0.007904053, -0.033294678, 0.025543213, -0.011985779, -0.032562256, -0.004798889, -0.028305054, 0.021636963, -0.033691406, -0.06359863, -0.025375366, 0.043426514, -0.048339844, -0.0033569336, 0.046844482, -0.02218628, 0.006126404, -0.002067566, -0.008323669, -0.047607422, -0.0039482117, 0.0067825317, 0.011833191, 0.010185242, 0.05392456, -0.007598877, -0.051452637, -0.047943115, 0.02267456, -0.027542114, -0.0047798157, -0.045715332, 0.021835327, 0.021347046, 0.0030345917, 0.015808105, 0.037872314, 0.0043029785, -0.005012512, -0.013877869, -0.013671875, -0.0077323914, 0.020599365, 0.014457703, -0.06021118, -0.037384033, 0.0048179626, -0.00091934204, 0.020095825, 0.010795593, 0.022613525, -0.044677734, 0.0064086914, -0.027496338, -0.027633667, 0.0020389557, -0.014434814, 0.045776367, 0.01889038, -0.029388428, 0.013954163, 0.028335571, 0.024963379, 0.02835083, -0.01423645, 0.0087509155, -0.042144775, -0.06652832, -0.018295288, -0.023147583, 0.029510498, -0.0046081543, -0.051208496, 0.027862549, 0.0028877258, -0.028442383, -0.014518738, 0.013954163, 0.01486969, 0.018157959, 0.032714844, -0.004875183, 0.005138397, -0.022918701, -0.004360199, -0.030303955, -0.0385437, 0.0074806213, -0.018600464, -0.020721436, -0.048065186, 0.009414673, -0.007843018, -0.056671143, 0.00037527084, -0.005126953, 0.021240234, 0.00806427, 0.009681702, 0.0395813, 0.0013160706, 0.0009384155, -0.008644104, -0.023330688, 0.013153076, 0.03366089, 0.0017309189, -0.03668213, 0.020248413, 0.01878357, 0.022232056, -0.012680054, -0.06561279, -0.06903076, 0.043029785, 0.010406494, -0.015014648, 0.041290283, -0.017547607, 0.01184845, 0.024337769, -0.013664246, -0.016403198, 0.018157959, 0.06768799, 0.00086927414, 0.0023460388]}, "B01HQRD8EO": {"id": "B01HQRD8EO", "original": "Brand: GasOne\nName: Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold)\nDescription: \nFeatures: DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included\nAUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove\nEASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition\nSAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected\nVERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness\n", "metadata": {"Name": "Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold)", "Brand": "GasOne", "Description": "", "Features": "DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included\nAUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove\nEASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition\nSAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected\nVERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.034942627, -0.011764526, -0.016799927, -0.00037908554, -0.01966858, 0.017944336, -0.01727295, -0.009681702, -0.023406982, -0.007709503, -0.016403198, 0.010009766, -0.011764526, -0.032562256, 0.040649414, -0.0390625, -0.014587402, 0.060516357, 0.01687622, -0.037872314, 0.017440796, -0.059417725, -0.0096588135, 0.07476807, 0.009338379, 0.009857178, -0.032348633, 0.0071144104, 0.0039253235, -0.0068130493, 0.02696228, 0.0236969, 0.036071777, 0.0037136078, -0.043548584, -0.0552063, 0.002483368, -0.020217896, -0.06530762, 0.055541992, 0.013366699, -0.006538391, -0.0063972473, 0.021759033, -0.032592773, 0.008338928, -0.005519867, 0.005935669, 0.00041604042, 0.040222168, 0.006439209, -0.011123657, -0.013824463, 0.01133728, -0.005027771, -0.0064849854, 0.021636963, -0.014450073, 2.7775764e-05, -0.0056381226, -0.0017156601, 0.015686035, 0.021362305, 0.012641907, -0.06323242, 0.043151855, 0.024719238, -0.038116455, 0.04449463, -0.04837036, -0.025115967, 0.02166748, 0.016525269, -0.02293396, -0.05239868, 0.020050049, -0.006210327, -0.02848816, 0.040985107, -0.025299072, -0.028015137, -0.059661865, 0.039031982, -0.030944824, 0.030136108, -0.008598328, -0.016647339, 0.0049362183, -0.041534424, -0.013465881, -0.023269653, -0.039367676, -0.055511475, 0.030654907, -0.0042381287, 0.0044174194, -0.020843506, -0.041748047, 0.020126343, 0.011039734, 0.019638062, -0.04348755, 0.0390625, -0.02166748, -0.0087509155, 0.04473877, 0.01789856, 0.027008057, 0.0029010773, -0.011444092, -0.0041160583, -0.025268555, -0.029571533, -0.020111084, -0.016418457, 0.07385254, -0.013175964, -0.019515991, -0.0073776245, 0.009681702, -0.00063610077, 0.0058288574, 0.029251099, -0.040924072, 0.011253357, -0.008392334, -0.044128418, -0.019607544, -0.011512756, 0.05328369, -0.037322998, 0.002363205, 0.024841309, 0.018051147, -0.03326416, -0.023971558, 0.0058288574, -0.011116028, 0.0317688, -0.06567383, 0.03881836, 0.010681152, 0.020080566, 0.023376465, 0.021499634, 0.022537231, 0.033081055, -0.0030174255, -0.017303467, -0.034973145, 0.01322937, 0.017349243, 0.03466797, 0.003856659, -0.0032138824, -0.006919861, -0.0030002594, 0.0042304993, 0.0012521744, -0.018936157, -0.015403748, -0.014556885, -0.008720398, 0.02897644, -0.0017137527, 0.03074646, 0.030563354, 0.00042772293, 0.0039043427, 0.019104004, -0.012260437, 0.037200928, -0.010612488, -0.017822266, -0.006084442, -0.045013428, -0.031173706, 0.06549072, 0.03414917, -0.04901123, -0.039520264, -0.058166504, 0.097473145, -0.032165527, -0.011528015, 0.0014295578, -0.017166138, -0.035491943, 0.018249512, -0.020721436, 0.025772095, 0.029663086, -0.0078125, -0.022491455, -0.0016508102, -0.010643005, -0.0009975433, 0.016525269, -0.01449585, -0.010551453, 0.01210022, 0.017608643, -0.007446289, 0.0040130615, -0.03717041, -0.0085372925, -0.00076007843, 0.023910522, -0.009971619, 0.02720642, 0.015197754, 0.0030612946, -0.009277344, -0.03375244, -0.005218506, 0.00089788437, -0.037475586, 0.03579712, -0.003276825, 0.008918762, 0.026885986, -0.03768921, 0.040527344, 0.02619934, 0.017822266, -0.039794922, -0.0062561035, -0.02822876, 0.0056114197, -0.014671326, -0.049072266, 0.04574585, 0.06518555, 0.05987549, -0.032714844, 0.021728516, 0.06524658, 0.067993164, -0.022033691, -0.029403687, 0.015335083, 0.004962921, -0.016571045, 0.006801605, -0.022109985, -0.032409668, 0.02104187, 0.0060310364, -0.046081543, 0.01600647, 0.018127441, 0.04901123, 0.010955811, 0.044799805, -0.034454346, 0.036743164, -0.039520264, 0.006713867, -0.018920898, 0.01940918, -0.004550934, 0.07611084, 0.066101074, 0.009162903, 0.013122559, 0.0026226044, 0.02961731, 0.018661499, -0.010025024, -0.004180908, 0.015686035, 6.240606e-05, -0.011306763, 0.035308838, 0.043670654, 0.0010976791, -0.033111572, 0.0047187805, 0.016677856, 0.019256592, -0.009216309, -0.05984497, 0.015640259, 0.0040397644, 0.0769043, -0.0211792, 0.032806396, -0.011779785, -0.0032806396, -0.04623413, 0.013542175, -0.046417236, -0.040863037, -0.0011901855, -0.03225708, -0.076416016, 0.06878662, 0.0011501312, 0.013252258, -0.033691406, -0.011962891, 0.02017212, -0.049560547, 0.013221741, 0.013748169, -0.012435913, 0.031311035, 0.013404846, 0.016952515, -0.022003174, 0.028564453, 0.018066406, 0.017425537, 0.025894165, -0.0030822754, -0.02281189, -0.009925842, 0.03414917, 0.0109939575, 0.041107178, -0.012321472, -0.03366089, -0.019973755, 0.0019798279, -0.013832092, -0.0010538101, 0.003627777, 0.003145218, -0.009994507, -0.0050849915, 0.017303467, -0.00020825863, 0.006793976, -0.011795044, 0.0019397736, -0.006866455, -0.0028858185, -0.0055122375, -0.005504608, -0.005634308, 0.02468872, -0.020370483, 0.006793976, -0.00073337555, -0.030532837, -0.05480957, 0.03262329, -0.0021858215, -0.035827637, -0.0055160522, 0.039215088, -0.011779785, 0.04232788, -0.010810852, 0.064208984, -0.0625, -0.09552002, 0.008857727, 0.002275467, -0.05303955, -0.018737793, -0.027572632, -0.077819824, -0.047027588, 0.07800293, 0.0082092285, -0.06665039, -0.024597168, 0.026687622, 0.038604736, 0.011543274, 0.023880005, -0.083496094, -0.0058288574, -0.012275696, -0.001704216, -0.018981934, -0.039916992, 0.033325195, -0.005718231, 0.035888672, 0.033447266, 0.0031013489, 0.043304443, -0.0040397644, 0.026626587, 0.007019043, 0.014022827, 0.012321472, -0.026473999, 0.029266357, 0.026870728, -0.019256592, -0.0146865845, 0.030532837, 0.012397766, -0.041046143, -0.025161743, -0.06500244, -0.0032405853, -0.023208618, 0.0020580292, -0.02230835, -0.007888794, 0.0044441223, -0.085876465, 0.020401001, -0.04574585, 0.022598267, 0.011566162, -0.0032157898, 0.012748718, -0.02418518, 0.017410278, -0.020858765, -0.0053596497, 0.06518555, -0.014167786, 0.013198853, -0.0256958, 0.062194824, -0.09686279, 0.07763672, 0.047943115, -0.028778076, -0.013328552, -0.0027599335, 0.0025920868, 0.006652832, 0.051330566, -0.0006904602, 0.0058517456, -0.035827637, 0.0013027191, 0.029937744, 0.03503418, 0.007167816, -0.047973633, 0.026245117, -0.026550293, -0.054016113, -0.010925293, -0.010665894, 0.00028657913, -0.02053833, -0.009933472, -0.0014410019, -0.04058838, 0.026687622, -0.070007324, 0.006626129, 0.009552002, 0.046661377, -0.0024108887, -0.0004887581, 0.05496216, 0.015525818, 0.035827637, 0.0032997131, -0.009170532, -0.010360718, -0.022125244, 0.00025367737, -0.01398468, -0.024841309, -0.03555298, 0.057281494, -0.0036811829, -0.0069007874, -0.008560181, -0.037841797, 0.045440674, -0.0003335476, -0.029968262, 0.010604858, -0.004219055, 0.036071777, -0.010566711, 0.009346008, -0.04159546, -0.04006958, -0.00541687, -0.06323242, 0.057617188, 0.049438477, -0.017593384, 0.07598877, 0.060516357, -0.023452759, 0.028411865, 0.036071777, -0.011329651, -0.024124146, 0.047729492, -0.04864502, 0.00073957443, 0.016296387, 0.0046539307, 0.035247803, 0.0066833496, -0.028915405, 0.021713257, -0.031555176, -0.03491211, -0.03668213, 0.007167816, 0.0079422, -0.017105103, 0.01838684, -0.043548584, -0.029907227, -0.026733398, -0.0362854, -0.007270813, -0.030517578, -0.008979797, -0.021209717, -0.048950195, -0.009315491, 0.0068473816, -0.027175903, 0.0057754517, -0.0075798035, 0.04498291, -0.011985779, -0.021575928, -0.017425537, 0.007850647, -0.058135986, 0.008102417, 0.02217102, 0.046569824, -0.03265381, -0.06555176, 0.053131104, -0.014205933, -0.013671875, 0.0619812, 0.01210022, -0.090026855, 0.009590149, 0.03717041, -0.01676941, -0.056671143, -0.007709503, -0.008575439, 0.010772705, 0.010551453, -0.053009033, -0.0045661926, -0.0178833, -0.0074882507, -0.055847168, -0.033203125, -0.023498535, 0.06237793, 0.0071144104, -0.0008711815, -0.037078857, -0.0076179504, -0.0020332336, -0.0031986237, -0.032592773, 0.02104187, -0.06542969, 0.007980347, 0.019897461, -0.013046265, -0.012954712, -0.020690918, -0.02178955, -0.013023376, 0.026031494, 0.029541016, -0.0054779053, -0.0027370453, -0.01777649, 0.0070114136, 0.025390625, 0.045532227, -0.018447876, 0.02861023, -0.029815674, -0.0076408386, -0.07904053, 0.013626099, 0.054016113, -0.018417358, -0.04763794, -0.013839722, 0.0597229, -0.00091457367, 0.0022277832, -0.07299805, 0.044525146, 0.031982422, 0.027572632, -0.056518555, -0.10253906, 0.010650635, -0.021148682, 0.027679443, 0.0024795532, -0.0072135925, 0.0154800415, 0.0904541, 0.02468872, -0.0019950867, -0.00907135, 0.026275635, -0.009033203, 0.034484863, -0.045166016, -0.021957397, -0.041046143, 0.0317688, -0.04864502, 0.06542969, 0.003332138, -0.024414062, -0.006290436, -0.03225708, -0.017471313, -0.031280518, 0.010681152, 0.002855301, -0.02041626, -0.04611206, -0.03955078, 0.02168274, -0.053741455, 0.003955841, 0.0032978058, 0.008049011, 0.029632568, -0.0079574585, -0.0140686035, 0.006000519, -0.01739502, -0.00058984756, -0.01876831, 0.028427124, -0.011856079, -0.0050697327, 0.053527832, -0.01864624, -0.019515991, 0.012718201, -0.012107849, 0.010925293, -0.057617188, 0.007129669, -0.06365967, 0.028045654, 0.04623413, 0.009536743, -0.017623901, 0.015731812, 0.0033435822, -0.03555298, -0.07385254, -0.01713562, 0.011657715, -0.034942627, 0.031066895, 0.004573822, 0.029693604, 0.019561768, 0.0029830933, 0.017028809, 0.0017557144, 0.0070991516, 0.057525635, 0.02545166, 0.016036987, -0.05142212, 0.06137085, -0.023544312, -0.026046753, -0.042938232, 0.0055618286, 0.018508911, 0.01134491, 0.015045166, -0.034179688, 0.055999756, 0.0039367676, -0.030792236, 0.0011329651, 0.011756897, -0.008583069, -0.0072898865, -0.0022068024, -0.04776001, -0.044555664, -0.021057129, -0.03994751, -0.029266357, 0.04095459, -0.023864746, -0.019699097, -0.0003707409, -0.01083374, -0.021759033, -0.0143966675, 0.014877319, -0.05731201, -0.0051651, -0.019241333, 0.015281677, -0.020248413, -0.015052795, 0.0054893494, 0.01235199, -0.028915405, -0.05114746, -0.060791016, 0.008026123, -0.027359009, 0.03543091, 0.027755737, -0.011878967, -0.003768921, 0.020355225, 0.020492554, -0.043273926, -0.011817932, 0.042022705, 0.012428284, 0.013313293, -0.028198242, -0.021240234, 0.052886963, -0.041259766, -0.061584473, 0.042266846, 0.017807007, -0.0019989014, -0.011940002, 0.07409668, 0.0035972595, 0.01133728, 0.026611328, 0.031951904, -0.03869629, -0.0087509155, 0.0104522705, -0.0949707, -0.049072266, -0.04309082, -0.010818481, -0.019515991, 0.0012073517, 0.006591797, 0.025878906, 0.0009584427, 0.006793976, -0.043060303, -0.017303467, -0.0026874542, -0.027832031, -0.01121521, -0.013153076, 0.027923584, -0.041046143, 0.011062622, -0.042175293, -0.026626587, 0.0030155182, 0.020965576, -0.008544922, -0.009796143, -0.012535095, -0.019195557, 0.0027275085, 0.06311035, -0.000995636, -0.006641388, 0.000115692616, 0.01524353, -0.0035762787, 0.023712158, -0.017044067, -0.0064697266, -0.066833496, -0.022613525, 0.0026760101, 0.0892334, -0.057037354, 0.05178833, -0.0046691895, 0.043395996, -0.0079956055, 0.0020771027, -0.012245178, -0.015235901, -0.022033691, 0.00605011, 0.059906006, -0.03363037, -0.028274536, -0.037841797, -0.026565552, -0.008117676, -0.022460938, 0.03955078, -0.02671814, 0.020721436, -0.041229248, 0.0048332214, 0.0010147095, -0.03488159, 0.04034424, 0.011169434, 0.06173706, -0.007358551, 0.009407043, 0.024734497, -0.049560547, -0.053955078, 0.014671326, 0.037231445, -0.02067566, 0.031204224, -0.024597168, 0.040863037, 0.054779053, -0.09442139, -0.025054932, -0.0045166016, 0.013671875, -0.011161804, -0.06274414, -0.05343628, 0.0029754639, 0.020217896, -0.018356323, 0.011154175, 0.015991211, 0.0033931732, 0.021606445, 0.015319824, -0.015205383, -0.020339966, 0.049102783, -0.025283813, -0.015380859, -0.01828003, -0.025436401, 0.061920166, 0.008590698, 0.015335083, 0.021057129, -0.019699097, 0.003643036, 0.02557373, -0.039764404, -0.04626465, -0.032470703, -0.0014543533, 0.012329102, -0.011711121, -0.01676941, -0.029037476, 0.021392822, 0.0046424866, -0.053955078, 0.029464722, -0.07458496, 0.048797607, 0.036956787, 0.043426514, -0.04095459, -0.032165527, -0.019424438, -0.03390503, 0.015060425, -0.0012340546, 0.014480591, -0.043121338, 0.01852417, -0.0005097389, 0.044036865, -0.05203247, 0.030044556, -0.00046777725, 0.01663208, 0.02999878, 0.0012903214, -0.016921997, -0.019210815, -0.013000488, -0.0036087036, -0.012756348, -0.053863525, 0.015411377, 0.022277832, 0.014831543, -0.023895264, 0.00040864944, -0.015617371, -0.01777649, 0.057373047, -0.019760132, -0.010688782, -0.035888672, -0.04083252, -0.010818481, 0.0024738312, -0.046844482, 0.026794434, -0.0052757263, -0.023666382, 0.003293991, 0.012077332, 0.024261475, -0.084228516, 0.0054969788, -0.053497314, -0.008094788, -0.002861023, 0.038391113, -0.030334473, -0.056732178, -0.037384033, 0.035705566, -0.07281494, -0.05923462, -0.0008430481, 0.0061912537, 0.009010315, 0.0072250366, 0.0087890625, 0.06640625, 0.014205933, -0.006603241, 0.022506714, -0.015586853, -0.016357422, 0.02041626, 0.007965088, -0.017150879, -0.014724731, 0.016159058, 0.022750854, 0.032592773, -0.014373779, 0.05517578, -0.087890625, 0.020370483, -0.028564453, 0.014160156, -0.0008459091, -0.022155762, 0.032409668, 0.0020561218, -0.053649902, 0.026031494, 0.00819397, 0.049316406, -0.0003902912, 0.030151367, 0.0670166, -0.011543274, -0.033996582, -0.041229248, -0.0362854, 0.03201294, -0.0061302185, -0.043273926, 0.0066719055, 0.007835388, -0.016937256, -0.006969452, 0.030685425, 0.0019416809, 0.0016145706, 0.008003235, 0.008140564, -0.020141602, -0.006958008, -0.015655518, -0.0340271, -0.04537964, 0.06585693, -0.020446777, -0.0005264282, 0.0103302, -0.026885986, -0.018127441, -0.010047913, 0.010414124, -0.010673523, -0.012367249, -0.0071029663, 0.032714844, -0.004043579, 0.011276245, -0.008018494, -0.004917145, -0.03604126, 0.008972168, 0.030303955, 0.0155181885, -0.028884888, 0.02406311, 0.0287323, 0.010360718, -0.027816772, -0.08343506, -0.064575195, 0.030227661, 0.017944336, 0.001162529, 0.06439209, -0.017059326, 0.012825012, 0.010269165, -0.008178711, -0.037841797, 0.00774765, 0.044555664, 0.0023727417, 0.016159058]}, "B0002P1D0Y": {"id": "B0002P1D0Y", "original": "Brand: Red Dragon\nName: Red Dragon CD-100 Propane Cylinder Dolly,Steel\nDescription: \nFeatures: A handy way to move a simple 20 pound cylinder while flaming\nThis dolly makes the perfect companion for any Red Dragon Torch Kit\nIdeally suited for LP Gas cylinders up to 40 pounds.\nThe single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch\nWhen the torch is not in operation, it can be stored on the convenient torch bracket.\n", "metadata": {"Name": "Red Dragon CD-100 Propane Cylinder Dolly,Steel", "Brand": "Red Dragon", "Description": "", "Features": "A handy way to move a simple 20 pound cylinder while flaming\nThis dolly makes the perfect companion for any Red Dragon Torch Kit\nIdeally suited for LP Gas cylinders up to 40 pounds.\nThe single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch\nWhen the torch is not in operation, it can be stored on the convenient torch bracket.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015914917, -0.020477295, -0.024139404, -0.011627197, -0.029937744, -0.006919861, -0.016845703, 0.011543274, -0.010719299, 0.0044136047, 0.008964539, 0.02079773, -0.03741455, -0.037017822, 0.01386261, -0.028045654, 0.03237915, -0.023117065, -0.010551453, -0.029556274, 0.0039863586, -0.013694763, 0.015808105, 0.059783936, 0.06072998, -0.043304443, -0.0064086914, -0.005519867, 0.055145264, 0.004184723, 0.052947998, -0.024032593, 0.046173096, -0.013969421, -0.021469116, -0.078308105, 0.00072717667, -0.018707275, -0.053619385, 0.01864624, -0.00091838837, 0.011619568, -0.012817383, -0.02180481, -0.029556274, -0.024642944, 0.00023293495, 0.0052108765, 0.040222168, 0.079956055, -0.0034370422, 0.025665283, -0.025222778, -0.0031986237, -0.0011672974, -0.0039100647, 0.03237915, -0.0062675476, 0.026275635, -0.021011353, -0.029632568, 0.02407837, 0.022949219, -0.011039734, -0.022781372, 0.018035889, -0.028259277, -0.01449585, 0.015357971, -0.007461548, -0.0025730133, -0.02229309, 0.0012845993, -0.0034751892, 0.00045204163, -0.022872925, 0.04598999, -0.003414154, -0.011680603, 0.041931152, -0.027694702, 0.008323669, 0.013999939, -0.03665161, 0.0076828003, -0.0078125, -0.036499023, -0.011764526, 0.019012451, 0.019348145, -0.011062622, 0.06939697, 0.03866577, 0.009262085, -0.03567505, 0.015197754, 0.011787415, -0.048065186, 0.050354004, 0.013710022, 0.044647217, -0.064819336, 0.0602417, -0.008804321, -0.0049095154, 0.017852783, -0.0036678314, -0.025024414, 0.02204895, 0.009170532, -0.010948181, 0.0317688, 0.013923645, -0.010414124, -0.030914307, -0.013137817, -0.02558899, 0.013328552, 0.012260437, -0.0032577515, 0.00869751, 0.018432617, 0.03225708, 0.004016876, -0.023391724, 0.0077056885, 0.00097608566, -0.060577393, 0.010559082, 0.011299133, -0.05670166, 0.0006489754, 0.074035645, 0.037261963, 0.016708374, -0.01499939, 0.035308838, -0.014549255, 0.00030064583, -0.0020160675, 0.01348114, -0.026931763, -0.01576233, 0.0034370422, -0.04638672, 0.02281189, 0.01966858, -0.0059165955, -0.020233154, -0.044769287, -0.04852295, 0.0037269592, 0.013877869, -0.0015668869, 0.028930664, -0.037353516, 0.01084137, -0.027572632, 0.023971558, -0.0077285767, 0.047180176, -0.0017318726, -0.03302002, -0.0016469955, -0.028335571, -0.010345459, -0.036010742, -0.0070991516, 0.013900757, 0.032470703, -0.0046539307, 0.0061302185, -0.012397766, 0.013259888, 0.0053749084, 0.0013065338, 0.01197052, 0.061950684, 0.056884766, -0.11462402, -0.09472656, -0.0635376, 0.14868164, -0.073791504, 0.009742737, -0.013839722, 0.036590576, -0.0057525635, -0.010734558, 0.011428833, 0.038391113, 0.025482178, -0.013046265, -0.07128906, -0.027359009, 0.033233643, -0.0048713684, 0.027770996, -0.007575989, 0.025405884, 0.04815674, -0.006767273, 0.036590576, -0.0029525757, 0.018661499, -0.003932953, 0.0018320084, -0.007987976, 0.016983032, 0.082336426, -0.005191803, 0.020584106, -0.021072388, 0.015357971, 0.023376465, -0.011360168, -0.03555298, 0.028259277, -0.0033779144, 0.007850647, 0.008773804, -0.034576416, 0.02810669, 0.010696411, 0.041015625, -0.02406311, -0.009384155, -0.009521484, 0.054504395, 0.0010690689, 0.0073776245, 0.0046081543, 0.053344727, 0.06976318, -0.019561768, 0.025390625, 0.060546875, 0.02079773, -0.007286072, -0.0049095154, 0.004722595, 0.015548706, -0.011383057, 0.044525146, -0.02204895, -0.01600647, 0.0124053955, 0.02758789, -0.020950317, -0.037109375, 0.039764404, -0.000667572, 0.052124023, 0.0982666, 0.0010843277, 0.0062942505, -0.031158447, 0.017044067, -0.03805542, -0.024551392, 0.021728516, -0.024459839, -0.032165527, -0.00945282, -0.0028324127, -0.012306213, 0.026870728, 0.02003479, 0.016494751, -0.04647827, 0.006942749, 0.021942139, -0.01033783, 0.0019683838, 0.00819397, 0.0137786865, -0.030563354, 0.017837524, 0.008460999, -0.0039138794, -0.01574707, -0.040740967, 0.0052108765, -0.0038757324, 0.0440979, 0.032836914, 0.03729248, 0.0031013489, -0.060791016, -0.01586914, -0.0017538071, 0.029769897, -0.024963379, -0.0006136894, 0.015007019, -0.00030326843, 0.03945923, 0.027786255, 0.0017614365, -0.031143188, 0.0051193237, 0.01864624, -0.05493164, 0.010414124, -0.008644104, 0.027664185, -0.004623413, -0.004055023, -0.014465332, -0.019500732, -0.025909424, -0.02178955, 0.041625977, 0.030273438, 0.020996094, -0.016036987, 0.011489868, 0.038238525, -0.04031372, -0.06951904, -0.011703491, -0.037963867, 0.031677246, 0.019622803, -0.0050849915, -0.037200928, 0.060028076, 0.01576233, -0.053863525, 0.024230957, 0.01878357, -0.010978699, 0.025253296, 0.00969696, 5.799532e-05, -0.009414673, 0.009437561, 0.01058197, -0.012084961, -0.039855957, 0.013572693, 0.034118652, -0.009010315, -0.01751709, 0.012908936, -0.056396484, 0.005962372, 0.0035953522, 0.023971558, 0.026916504, -0.017410278, -0.007209778, 0.014282227, 0.019226074, 0.019699097, -0.032440186, -0.026260376, -0.015960693, -0.043701172, -0.061523438, 0.0140686035, -0.051330566, -0.033355713, 0.059448242, 0.029052734, 0.011558533, -0.028839111, 0.0051231384, 0.03540039, 0.06530762, -0.07873535, 0.068359375, -0.023895264, -0.014533997, 0.012969971, 0.01927185, 0.041259766, -0.034942627, 0.0043525696, 0.023483276, -0.006038666, 0.035858154, -0.054260254, 0.03817749, 0.02053833, 0.038024902, 0.056152344, -0.015914917, 0.04232788, -0.02154541, 0.015403748, 0.0038223267, -0.0034923553, -0.019302368, -0.033477783, -0.019317627, 0.02722168, -0.008796692, -0.0038318634, -0.019882202, -0.11621094, 0.032409668, -0.0032348633, -0.009101868, -0.028411865, -0.0026397705, -0.0670166, -0.056732178, 0.0033569336, 0.032104492, -0.030395508, 0.039916992, -0.04724121, 0.053955078, -0.018554688, -0.009216309, 0.004398346, -0.015914917, 0.0036125183, 0.015670776, 0.050048828, -0.085510254, 0.018463135, 0.021209717, -0.042419434, -0.019500732, -0.020080566, 0.03463745, -0.04525757, 0.0054016113, -0.045440674, -0.0141067505, 0.0060157776, -0.01953125, -0.021469116, 0.025375366, -0.012145996, 0.0066184998, -0.009269714, -0.026748657, -0.052886963, -0.030166626, -0.008522034, 0.024414062, -0.027999878, 0.021392822, -0.023620605, -0.0513916, -0.026901245, -0.0071144104, -0.023544312, 0.0042877197, 0.0019407272, 0.022369385, -0.013008118, 0.066467285, 0.05392456, 0.025100708, -0.02758789, 0.011390686, -0.032562256, -0.015640259, 0.043151855, -0.030197144, -0.013206482, -0.010772705, -0.022003174, 0.027801514, -8.4519386e-05, -0.024932861, 0.007461548, 0.058135986, 0.022247314, 0.016418457, -0.021118164, -0.004966736, 0.00793457, 0.034729004, -0.022155762, -0.013336182, -0.045074463, 0.0107803345, -0.03488159, 0.06414795, 0.0368042, -0.011360168, 0.061584473, 0.04095459, 0.0049705505, 0.07373047, 0.013298035, 0.00868988, -0.01574707, 0.08178711, -0.028503418, 0.03930664, -0.0023212433, 0.0020771027, 0.0042495728, -0.021606445, -0.010070801, -0.012458801, 0.006137848, -0.008277893, -0.021377563, 0.0053901672, 0.020385742, -0.019561768, 0.016921997, 0.0016899109, -0.010681152, -0.034454346, -0.01939392, 0.03982544, -0.044525146, 0.012519836, -0.03741455, 0.025024414, -0.053009033, -0.009208679, 0.008041382, -0.010437012, -0.0019817352, 0.024124146, 0.028900146, -0.008644104, -0.02166748, -0.031143188, -0.036468506, 0.033111572, 0.009925842, 0.02520752, 0.04159546, -0.03781128, 0.020202637, -0.015914917, -0.014526367, 0.01399231, -0.01474762, -0.064453125, 0.0036563873, 0.03262329, 0.0052757263, -0.030944824, 0.004886627, -0.007904053, -0.033843994, -0.007850647, 0.017868042, 0.0060653687, -0.03387451, -0.03152466, -0.012893677, -0.026351929, -0.045440674, -0.020645142, -0.028381348, 0.0053482056, 0.016021729, -0.0054016113, -0.0033740997, 0.05303955, -0.044036865, -0.020187378, -0.064697266, 0.013023376, -0.0065612793, -0.012054443, 0.023529053, -0.06060791, -0.0067214966, -0.017700195, 0.05984497, -0.009033203, 0.044281006, 0.0015830994, -0.038909912, -0.0016040802, 0.010375977, 0.012016296, -0.013847351, -0.0032291412, -0.028900146, -0.080078125, -0.037628174, -0.06738281, 0.046417236, -0.06781006, -0.04663086, -0.06427002, 0.06695557, -0.003326416, 0.02470398, -0.022232056, 0.014350891, -0.031097412, 0.036834717, -0.074523926, -0.0362854, -0.0030441284, -0.060791016, 0.026901245, 0.0027236938, -0.019821167, 0.045532227, 0.08111572, 0.015853882, -0.050445557, 0.013587952, -0.006313324, -0.013137817, 0.02168274, -0.05065918, 0.020233154, -0.03616333, -0.028579712, -0.00036859512, 0.0025596619, -0.008621216, -0.035186768, -0.009460449, 0.005607605, -0.0137786865, -0.024627686, -0.02746582, -0.015007019, 0.053710938, -0.026489258, -0.03829956, 0.020706177, -0.034240723, 0.014724731, -0.044921875, -0.039733887, -0.014060974, 0.03781128, -0.018692017, -0.0029697418, -0.010856628, -0.07574463, -0.004776001, 0.0067596436, -0.012260437, -0.047943115, 0.05319214, -0.0385437, -0.035980225, 0.033843994, -0.010284424, -0.037872314, -0.01802063, 0.004627228, 0.009513855, 0.012329102, -0.011978149, 0.021011353, -0.082092285, 0.0040359497, 0.012908936, -0.0010671616, -0.029464722, 0.06976318, 0.006690979, 0.0597229, 0.019119263, 0.037078857, 0.01977539, 0.03744507, 0.011634827, -0.025558472, 0.03060913, -0.032928467, 0.032196045, -0.023498535, 0.010116577, -0.06549072, 0.04446411, -0.011222839, -0.0011730194, -0.088012695, 0.017715454, -0.0077285767, -0.05038452, -0.012039185, 0.012763977, 0.035827637, -0.012130737, 0.0181427, 0.0143585205, 0.025802612, -0.02897644, -0.0061950684, 0.01663208, -0.040374756, -0.02885437, -0.013961792, -0.023239136, 0.052703857, 0.028778076, -0.045043945, -0.014801025, 0.05239868, -0.016571045, 0.031799316, 0.032043457, -0.012969971, -0.004348755, -0.0637207, 0.059631348, 0.020645142, -0.025680542, -0.010681152, -0.015327454, 0.01689148, -0.04171753, 0.008659363, -0.007663727, 0.00605011, -0.014312744, 0.040924072, -0.042755127, -0.006175995, -0.03656006, -0.0068855286, 0.026367188, -0.042419434, -0.06878662, -0.028289795, 0.0050201416, 0.0034980774, -0.0063209534, -0.0035896301, 0.01373291, -0.014556885, -0.014297485, -0.03012085, 0.0362854, 0.009376526, 0.01550293, 0.03543091, -0.004650116, -0.00027418137, 0.03466797, 0.0042037964, 0.0028247833, -0.023345947, -0.0071487427, 0.0059013367, -0.0008816719, -0.018951416, 0.047821045, -0.026382446, -0.0012960434, -0.035949707, 0.021118164, -0.013725281, 0.025131226, -0.04095459, -0.017059326, -0.02722168, 0.00223732, 0.021530151, -0.009170532, -0.019592285, -0.030639648, -0.0021533966, -0.019836426, -0.013710022, 0.024139404, -0.01638794, -0.019256592, 0.03869629, -0.0049209595, -0.02558899, 0.014694214, -0.007549286, 0.017623901, -0.043182373, -0.018234253, 0.02243042, 0.026382446, -0.0077285767, -0.046936035, -0.006629944, -0.012145996, -0.010314941, -0.013916016, 0.02659607, -0.04675293, -0.021331787, 0.033447266, 0.047943115, 0.034240723, -0.03149414, -0.0010938644, -0.018508911, -0.028579712, 0.006542206, 0.009727478, -0.033050537, 0.040771484, -0.015930176, 0.016647339, 0.010948181, -0.028289795, -0.050598145, -0.022903442, 0.075683594, -0.024719238, 0.031433105, 0.007255554, -0.026290894, 0.07165527, 0.0047683716, 0.0881958, 0.01550293, 0.0151901245, -0.0018720627, -0.0002593994, -0.040893555, 0.023834229, 0.044433594, -0.008666992, 0.014167786, -0.03970337, 0.004901886, 0.0121536255, -0.03955078, 0.009613037, 0.045440674, -0.008895874, 0.01386261, -0.009162903, 0.020721436, 0.048950195, -0.022247314, 0.003780365, -0.026504517, 0.031585693, -0.0073242188, -0.0019292831, -0.038604736, 0.03665161, 0.010040283, -0.007160187, 0.01751709, -0.01939392, -0.021133423, -0.011192322, 0.03414917, 0.008026123, 0.024795532, 0.024017334, -0.07940674, 0.022064209, 0.054351807, 0.042633057, -0.03475952, -0.029052734, 0.010429382, -0.00434494, -0.009880066, -0.0016145706, 0.032226562, 0.005252838, 0.03817749, -0.052612305, 0.023468018, -0.049682617, 0.055755615, 0.02999878, 0.060546875, -0.07910156, -0.044006348, -0.015319824, -0.03778076, 0.0040016174, 0.037322998, -0.016845703, -0.015808105, -0.009941101, -0.007865906, 0.03302002, -0.013809204, 0.015167236, -0.02279663, 0.009414673, 0.02041626, -0.0054130554, 2.5808811e-05, 0.006122589, -0.03161621, -0.00028920174, 0.0001282692, -0.045684814, 4.8160553e-05, -0.026351929, -0.0007972717, -0.04650879, 0.04638672, -0.040893555, -0.01838684, 0.002407074, -0.028411865, -0.018096924, -0.0058288574, -0.00026845932, -0.017745972, -0.017623901, -0.025558472, 0.027053833, 0.001127243, -0.0025596619, 0.014549255, -0.025161743, 0.02571106, -0.05670166, 0.02722168, -0.017623901, 0.039398193, -0.012321472, 0.06518555, -0.017410278, -0.025970459, -0.05380249, -0.011833191, -0.037139893, 0.0118637085, 0.0018310547, -0.011054993, -0.013595581, -0.018936157, 0.017333984, -0.0063056946, 0.039215088, -0.023666382, 0.08129883, -0.0020561218, -0.022872925, -0.0022583008, 0.0357666, -0.016448975, 0.018875122, -0.021972656, -0.013282776, 0.010650635, 0.016525269, -0.014755249, 0.014389038, 0.00021922588, 0.0068969727, -0.04522705, 0.022109985, -0.030822754, 0.016571045, 0.0070343018, -0.072021484, -0.06427002, -0.004875183, 0.0713501, 0.037109375, -0.030471802, 0.024124146, -0.014190674, -0.08880615, -0.013977051, -0.028945923, 0.014564514, 0.001080513, -0.021194458, -0.019470215, 0.039733887, -0.002254486, 0.011299133, 0.043121338, -0.0036125183, 0.006793976, -0.009864807, 0.011985779, 0.0050086975, -0.009170532, 0.028884888, -0.023864746, 0.028533936, 0.04425049, 0.016281128, -0.02178955, 0.017349243, -0.048583984, 0.0049095154, 0.0033893585, -0.063964844, -0.00819397, -0.03591919, 0.008865356, 0.03463745, -0.006587982, 0.026031494, -0.007980347, -0.020248413, -0.008178711, 0.011451721, 0.0058288574, 0.004058838, -0.020217896, 0.015930176, -0.0004079342, 0.045196533, -0.018569946, -0.13684082, -0.05810547, 0.018463135, -0.004085541, -0.0053749084, 0.035491943, -0.021102905, 0.0078048706, 0.022476196, -0.030410767, -0.022918701, 0.010421753, 0.036468506, -0.009338379, 0.010070801]}, "B00QB6PBZQ": {"id": "B00QB6PBZQ", "original": "Brand: Outland Living\nName: Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket\nDescription: \nFeatures: DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements.\nCONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose.\nDISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items.\nWEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use.\nPERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25\" diameter by 18.5\" height to ensure a snug fit for your 20 lb propane tank.\n", "metadata": {"Name": "Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket", "Brand": "Outland Living", "Description": "", "Features": "DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements.\nCONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose.\nDISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items.\nWEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use.\nPERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25\" diameter by 18.5\" height to ensure a snug fit for your 20 lb propane tank.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.017578125, 0.0006380081, -0.0028743744, -0.06329346, 0.0042381287, 0.01828003, -0.008049011, 0.01574707, -0.034240723, 0.011932373, -0.041229248, 0.04473877, -0.025177002, -0.013420105, 0.024276733, -0.042633057, 0.015129089, 0.006198883, -0.003435135, -0.037963867, -0.0154953, -0.028717041, 0.021896362, 0.079711914, 0.011726379, -0.038757324, 0.04006958, -0.02935791, 0.0025920868, -0.0317688, 0.017120361, 0.037109375, 0.040374756, -0.01373291, -0.008415222, -0.011222839, -0.00497818, -0.009231567, -0.026672363, 0.020050049, 0.013259888, -0.005290985, -0.01878357, -0.023269653, -0.027389526, -0.017089844, 0.0052108765, -0.0062561035, -0.019439697, 0.032104492, -0.0016565323, 0.025009155, 0.0059165955, 0.0065574646, -0.004421234, -0.030258179, 0.02848816, -0.03604126, 0.0184021, -0.010795593, -0.01398468, 0.0062179565, 0.033233643, 0.000992775, -0.034240723, 0.015113831, 0.09362793, -0.025726318, -0.028121948, -0.02923584, 0.014511108, 0.0064582825, 0.028152466, -0.024093628, -0.02658081, -0.0033550262, 0.015182495, -0.0061416626, 0.015144348, -0.02482605, 0.0047683716, -0.013168335, 0.01876831, -0.028152466, 0.018753052, -0.015686035, -0.004928589, -0.004966736, -0.00072431564, -0.02557373, -0.014305115, 0.021240234, -0.003414154, -0.014427185, -0.01272583, -0.041412354, -0.043914795, -0.07104492, 0.03945923, 0.019897461, 0.024353027, -0.042999268, 0.05871582, -0.020553589, 0.016967773, 0.084472656, -0.018356323, -0.008804321, 0.027999878, 0.0014705658, 0.014801025, 0.004131317, -0.0014638901, -0.0138168335, -0.036834717, 0.0027198792, -0.020004272, 0.018585205, 0.0032348633, 0.020843506, -0.0076789856, -0.0079956055, -0.02470398, 0.02659607, 0.0335083, 0.010231018, -0.025543213, 0.038909912, -0.047088623, 0.046569824, -0.033935547, 0.0002001524, 0.029327393, 0.010253906, -0.0065612793, -0.022979736, 0.076171875, 0.0016403198, -0.005592346, 0.019622803, -0.023895264, 0.006122589, 0.025619507, -0.0206604, -0.05255127, 0.04888916, 0.014503479, -0.0011920929, -0.00617218, -0.06439209, -0.038604736, -0.015113831, 0.038330078, 0.00504303, -0.013572693, -0.03665161, 0.033355713, -0.04171753, -0.014549255, -0.07147217, -0.008926392, -0.0053710938, -0.017471313, 0.025741577, -0.0052261353, 0.034088135, 0.01676941, -0.009490967, 0.022415161, 0.07098389, -0.019363403, 0.0234375, 0.02519226, 0.03857422, -0.004146576, 0.00033712387, -0.018051147, 0.08782959, 0.0748291, -0.13549805, -0.07305908, -0.05630493, 0.1583252, -0.034210205, 0.019104004, -0.039642334, -0.010772705, -0.06964111, 0.010658264, -0.0067634583, -0.00055360794, 0.02859497, -0.0134887695, -0.038208008, -0.021347046, 0.046722412, -0.039367676, 0.04144287, -0.027755737, 0.00082445145, -0.013252258, 0.024612427, -0.013824463, 0.007511139, 0.048828125, -0.033325195, 0.026138306, 0.010444641, 0.038879395, 0.010124207, -0.008552551, -0.0025730133, -0.016067505, -0.021942139, -0.017471313, 0.02432251, 0.0065612793, 0.008682251, -0.0040893555, -0.0073280334, 0.044708252, 0.02330017, 0.03050232, 0.043701172, -0.0033855438, -0.01727295, -0.013671875, -0.016921997, 0.01600647, -0.005203247, 0.034576416, 0.036376953, 0.026504517, -0.011962891, -0.036743164, 0.030181885, 0.03466797, -0.017944336, -0.026794434, 0.03540039, 0.029922485, -0.05078125, -0.000831604, 0.05404663, -0.011741638, -0.028625488, 0.01574707, 0.014129639, -0.04727173, 0.02128601, 0.04626465, 0.011978149, -0.0011539459, -0.00440979, -0.0340271, 0.009757996, -0.03086853, 0.017944336, 0.010063171, 0.0027256012, -0.009178162, 0.04373169, 0.039276123, 0.00027179718, 0.008781433, 2.6404858e-05, 0.052337646, 0.05029297, -0.0011940002, -0.031280518, 0.007331848, 0.031311035, 0.0016775131, -0.006164551, -0.014778137, 0.00070381165, -0.023834229, 0.009674072, -0.0055732727, -0.01348114, 0.010864258, 0.0053901672, 0.017913818, -0.0049057007, 0.021896362, 0.010864258, 0.026290894, -0.0046806335, -0.010185242, -0.0051574707, 0.0021247864, 0.04837036, -0.007896423, 0.046142578, -0.011123657, 0.0054016113, -0.03778076, 0.01675415, 0.030807495, -0.023239136, -0.026885986, 0.051879883, -0.0335083, 0.056121826, 0.003566742, 0.008773804, 0.017440796, 0.016418457, 0.027832031, -0.005722046, -0.007621765, 0.020812988, 0.011077881, -0.026504517, 0.061279297, 0.040924072, -0.0012321472, 0.046203613, 0.08972168, 0.09851074, 0.0065727234, 0.05239868, 0.01864624, 0.01675415, 0.03970337, -0.031463623, -0.0074043274, 0.0019006729, 0.03074646, 0.0031642914, -0.011291504, 0.005596161, 0.004207611, 0.0056533813, -0.0037078857, -0.028656006, 0.012954712, 0.04232788, 0.018737793, -0.037750244, 0.034973145, 0.038208008, -0.0012540817, 0.046783447, -0.025482178, -0.039916992, -0.0053710938, 0.0021018982, -0.015853882, -0.0014257431, 0.009864807, -0.0104599, -0.0138168335, -0.029724121, -0.009735107, 0.0035533905, 0.0054244995, -0.033081055, -0.0006313324, -0.07788086, 0.022323608, -0.040252686, -0.04901123, -0.026947021, 0.042510986, 0.0026760101, -0.057037354, -0.023620605, 0.025177002, 0.02255249, 0.025802612, 0.029785156, -0.06488037, -0.03427124, -0.035308838, -0.029464722, -0.008796692, -0.0357666, 0.009735107, -0.006996155, 0.014282227, 0.02003479, -0.004753113, 0.030914307, 0.008628845, 0.03842163, 0.05758667, 0.04660034, 0.017349243, -0.032440186, 0.024230957, 0.0368042, -0.028015137, 0.004798889, 0.026535034, -0.0070381165, -0.02293396, 0.036468506, -0.09875488, -0.009094238, -0.075927734, 0.016815186, 0.0033950806, -0.010215759, -0.0105896, -0.05508423, -0.031982422, -0.055236816, 0.030395508, 0.05239868, -0.0074424744, -0.0049934387, 0.00026798248, -0.003993988, -0.023513794, 0.015144348, -0.009773254, -0.002872467, -0.054016113, 0.029678345, 0.04953003, -0.033325195, 0.02671814, 0.036346436, -0.012168884, -0.045715332, 0.03363037, 0.014518738, 0.012542725, 0.01676941, -0.0042304993, -0.02104187, -0.027236938, -0.0109939575, -0.009361267, 0.020584106, 0.01586914, -0.012893677, 0.02998352, -0.014053345, 0.013122559, -0.020431519, -0.017913818, 0.014144897, -0.03237915, 0.008277893, -0.016525269, 0.0067977905, 0.018936157, -0.002122879, -0.021331787, 0.019363403, 0.018798828, 0.0009703636, -0.017944336, -0.041107178, -0.01876831, 0.047973633, 0.015991211, 0.00072717667, 0.021392822, -0.021896362, -0.0074653625, 0.02319336, 0.00042819977, -0.05871582, 0.051330566, 0.021759033, 0.015792847, -0.02810669, -0.020767212, 0.044708252, -0.031463623, -0.035125732, 0.037719727, -0.008033752, 0.0038394928, -0.009277344, 0.020568848, -0.013748169, -0.060699463, -0.0007791519, -0.081726074, 0.10247803, 0.030212402, -0.02218628, 0.09503174, 0.0970459, -0.016906738, 0.06173706, 0.033721924, 0.00920105, -5.8710575e-05, 0.06100464, -0.04159546, 0.029159546, -0.008422852, -0.010765076, -0.019943237, -0.043518066, 0.021438599, -0.008003235, -0.008033752, 0.017959595, -0.031982422, -0.027130127, 0.0008611679, -0.005554199, 0.0056762695, 0.006290436, -0.020523071, -0.015670776, 0.015602112, 0.012664795, -0.018630981, 0.0002361536, -0.016174316, -0.013717651, -0.03363037, 0.010696411, 0.01625061, -0.017959595, 0.011367798, 0.039367676, -0.011314392, 0.044433594, -0.05227661, 0.0066947937, -0.03237915, 0.024536133, -0.013153076, 0.0068969727, -0.012687683, -0.047210693, 0.058532715, -0.0048942566, -0.033691406, 0.014328003, -0.02960205, -0.07287598, -0.012207031, 0.03137207, 0.02053833, -0.018966675, -0.007423401, -0.01574707, -0.036315918, -0.007827759, -0.021469116, -0.012008667, -0.013557434, -0.008079529, -0.04095459, -0.025299072, -0.05319214, 0.020370483, -0.049468994, 0.038116455, 0.0020523071, -0.016525269, -0.01737976, 0.04046631, -0.03768921, -0.016540527, -0.031433105, 0.026138306, -0.005504608, -0.008476257, 0.037597656, -0.046783447, -0.024810791, -0.015304565, 0.03817749, 0.0043411255, 0.028457642, 0.0029010773, -0.0056915283, 0.00995636, 0.013061523, 0.027236938, -0.027893066, 0.03137207, 0.005027771, 0.007003784, -0.066833496, -0.00051641464, 0.029800415, -0.040924072, -0.06185913, -0.048431396, 0.040252686, 0.020599365, -0.0069351196, -0.0043678284, 0.00983429, 0.051574707, 0.007865906, -0.058532715, -0.041107178, 0.007347107, -0.04156494, -0.02015686, -0.0021648407, -0.013168335, 0.082092285, 0.020446777, -0.0068130493, -0.0012664795, -0.012451172, 0.013687134, 0.0026226044, 0.03225708, -0.033081055, -0.0077705383, -0.011154175, -0.0011482239, -0.08282471, 0.083862305, 0.04333496, -0.003686905, 0.001619339, -0.0063552856, -0.025756836, -0.059173584, -0.012054443, -0.026016235, 0.051727295, 0.015556335, -0.018035889, -0.010559082, -0.015914917, -0.011856079, -0.023910522, -0.017288208, -0.0045547485, 0.025177002, -0.025100708, -0.025100708, -0.023284912, -0.0010442734, 0.033599854, -0.011802673, -0.03201294, 0.014846802, -0.009544373, -0.0070877075, 0.008300781, 0.020339966, -0.023254395, 0.008766174, 0.018295288, 0.028015137, -0.031677246, 0.051696777, 0.024810791, 0.062286377, 0.0082473755, 0.0061149597, 0.010467529, -0.027145386, -0.03793335, -0.0029258728, 0.008934021, -0.03463745, 0.009971619, -0.021209717, -0.017959595, 0.031143188, -0.04663086, 0.038970947, 0.018432617, -0.051330566, 0.03225708, 0.050445557, 0.0040130615, -0.055755615, 0.075927734, -0.016662598, -0.04220581, -0.014099121, 0.018997192, -0.010307312, -0.017333984, -0.034057617, 0.004875183, 0.05206299, -0.028274536, -0.0016946793, 0.016113281, 0.05102539, -0.022384644, 0.0008211136, 0.03829956, -0.008125305, -0.039855957, 0.017410278, -0.047821045, 0.0030975342, -0.024017334, 0.005569458, 0.018920898, -0.0055732727, -0.007709503, -0.037506104, 0.006790161, -0.057556152, -0.054107666, -0.041625977, 0.03314209, 0.028640747, -0.027023315, 0.008964539, 0.02255249, 0.015991211, -0.09259033, -0.027908325, 0.0032253265, 0.024337769, 0.007286072, 0.07116699, -0.04043579, -0.036590576, -0.034484863, -0.0064735413, 0.01725769, -0.027191162, -0.05593872, -0.030090332, 0.03656006, 0.06451416, 0.016525269, 0.008743286, 0.06555176, -0.028701782, -0.02760315, -0.040283203, 0.024383545, -0.04135132, -0.067993164, 0.087890625, 0.058258057, 0.009284973, 0.0019292831, 0.002521515, -0.03274536, -0.023010254, -0.005466461, -0.044067383, -0.039001465, -0.04537964, 0.010528564, -0.014266968, 0.020401001, -0.03829956, 0.04269409, -0.024841309, 0.013053894, -0.02355957, 0.001156807, -0.022888184, -0.01134491, 0.02331543, -0.032348633, -0.0046195984, -0.050689697, -0.007247925, -0.025680542, -0.0135269165, -0.019683838, 0.011680603, 0.044281006, 0.01159668, 0.0008506775, 0.001581192, -0.010749817, -0.0011548996, 0.030731201, -0.055664062, -0.03201294, 0.010574341, 0.012924194, 0.009536743, -0.038085938, -0.002445221, 0.009056091, -0.0289917, 0.018661499, -0.0006155968, -0.04385376, -0.029144287, 0.027801514, 0.0524292, -0.0015468597, -0.04336548, 0.023757935, -0.0079956055, -0.05307007, -0.020095825, 0.0025081635, -0.02192688, 0.004463196, -0.048339844, 0.025344849, 0.033477783, -0.0023937225, 0.028915405, -0.0046081543, 0.04800415, -0.03186035, -0.0009403229, -0.0016613007, -0.03253174, 0.03250122, 0.0042381287, 0.04119873, -0.009338379, 0.006679535, 0.004676819, -0.015487671, -0.018096924, 0.039520264, 0.043701172, -0.001832962, 0.015914917, -0.0076522827, 0.022964478, -0.018707275, -0.01889038, 0.0028629303, 0.0009918213, 0.018997192, 0.0040130615, -0.0413208, -0.025268555, 0.00970459, 0.042144775, -0.012123108, 0.066345215, -0.024139404, 0.017929077, 0.012062073, 0.0112838745, -0.021759033, -0.034576416, 0.037017822, -0.009880066, -0.003271103, -0.006881714, 0.023040771, 0.019195557, 0.019470215, -0.030273438, 0.009117126, -0.039367676, 0.004753113, -0.010299683, -0.008110046, -0.045776367, -0.00737381, -0.0029621124, 0.0015411377, 0.0065307617, -0.027160645, -0.038635254, 0.0041236877, -0.044647217, -0.04727173, 0.028121948, -0.057006836, 0.0051994324, 0.012130737, 0.028030396, -0.04559326, 0.018707275, 0.0018815994, 0.0041618347, 0.0016317368, 0.05218506, 0.031066895, 0.012290955, -0.011581421, -0.015930176, 0.017333984, -0.037872314, 0.015640259, -0.017059326, 0.008102417, 0.025848389, -0.053710938, -0.0013246536, -0.006576538, -0.009613037, 0.03866577, 0.012619019, 0.013366699, -0.0034923553, -0.017227173, 0.01789856, -0.0020637512, -0.019699097, -0.011367798, -0.016799927, 0.016708374, 0.0040397644, -0.0057029724, -0.022735596, -0.021011353, -0.019683838, -0.03387451, -0.0541687, 0.03515625, -0.043304443, -0.032104492, -0.030685425, 0.019805908, -0.015029907, -0.032409668, -0.023132324, 0.0062179565, 0.021911621, 0.008346558, 0.050201416, -0.017700195, -0.06573486, -0.021331787, 0.031921387, -0.021652222, -0.014533997, 0.0102005005, -0.00970459, 0.008483887, 0.010520935, 0.040740967, 0.020217896, 0.041534424, -0.0037441254, 0.04458618, -0.040893555, -0.027496338, 0.047943115, 0.016403198, 0.0039405823, -0.0124435425, -0.012245178, 0.0066108704, 0.0010442734, 0.038208008, -0.013183594, -0.08074951, -0.020187378, -0.044067383, 0.0017824173, 0.0149383545, -0.050994873, 0.055633545, 0.014305115, -0.029937744, 0.018112183, 0.045837402, 0.029846191, 0.014419556, -0.023590088, 0.027282715, -0.010215759, -0.057861328, -0.007335663, -0.032287598, 0.014320374, -0.012611389, -0.0692749, -0.019958496, -0.00077438354, -0.010368347, -0.021194458, 0.02909851, 0.040039062, 0.005180359, -0.039489746, -0.007980347, -0.031555176, -0.00022542477, 0.015197754, -0.0025081635, 0.0023231506, -0.004714966, 0.028793335, -0.036895752, -0.03970337, -0.0007419586, 0.011817932, -0.029373169, -0.032073975, -0.079833984, -0.08062744, 0.0132751465, 0.04675293, -0.051574707, 0.032165527, -0.02558899, -0.0019054413, -0.022415161, -0.011123657, 0.008041382, -0.032165527, -0.025360107, 0.055847168, 0.022979736, 0.05307007, -0.026184082, -0.07672119, -0.03302002, 0.012870789, 0.004348755, 0.00075769424, 0.08227539, -0.04498291, 0.007118225, 0.044525146, -0.021835327, -0.04675293, 0.033416748, 0.05105591, 0.040252686, 0.023605347]}, "B01IRR7HSU": {"id": "B01IRR7HSU", "original": "Brand: GasOne\nName: GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case\nDescription: Who doesn't like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we've come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.\nFeatures: Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case\nPiezo-electric ignition that eliminates the use for lighter/matches\nBuilt in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane)\nHeat adjustable dial to your desired heat\n", "metadata": {"Name": "GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case", "Brand": "GasOne", "Description": "Who doesn't like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we've come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.", "Features": "Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case\nPiezo-electric ignition that eliminates the use for lighter/matches\nBuilt in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane)\nHeat adjustable dial to your desired heat", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.05038452, -0.019592285, -0.0076675415, 0.0074653625, -0.04135132, 0.025024414, -0.049224854, -0.02760315, -0.03265381, -0.007980347, -0.028823853, 0.008468628, -0.042022705, -0.028289795, 0.0345459, -0.0637207, -0.0034694672, 0.052124023, 0.025634766, -0.031021118, 0.024917603, -0.048431396, 0.006538391, 0.09674072, 0.006336212, 0.016983032, -0.049316406, -0.011253357, 0.00076913834, -0.025680542, 0.010375977, 0.04510498, 0.024154663, 0.0016021729, -0.030151367, -0.026901245, -0.030548096, 0.0017795563, -0.040924072, 0.03466797, -0.0013160706, -0.0010271072, 0.010787964, 0.04034424, -0.036224365, 0.013771057, -0.025238037, -0.0018224716, -0.0128479, 0.053527832, -0.0059661865, 0.0026454926, -0.015930176, 0.008079529, 0.010848999, -0.010292053, 0.024902344, -0.0154800415, 0.002374649, 0.004917145, -0.0005040169, 0.009979248, 0.0105896, -0.0013446808, -0.055877686, 0.037475586, 0.018188477, -0.033325195, 0.045135498, -0.027023315, -0.020233154, 0.019638062, 0.026306152, -0.024887085, -0.024597168, -0.0038757324, -0.014694214, -0.03390503, 0.035095215, -0.009597778, -0.016342163, -0.036132812, 0.021728516, -0.030303955, 0.027954102, 0.006149292, -0.008903503, -0.0053901672, -0.0032081604, 0.010696411, -0.009986877, -0.022537231, 0.006855011, 0.03717041, -0.017150879, -4.6491623e-06, -0.019866943, -0.052703857, 0.024505615, 0.021438599, 0.025146484, -0.0546875, 0.05456543, -0.0146865845, -0.02532959, 0.03479004, 0.02279663, 0.059265137, 0.016448975, 0.002380371, 0.003112793, -0.027404785, -0.01826477, -0.01676941, -0.03161621, 0.06384277, 0.005153656, -0.032348633, 0.0036621094, -0.0090789795, -0.013587952, -0.0067214966, 0.021850586, -0.0074043274, 0.0362854, 0.019439697, -0.024368286, -0.015853882, -0.014022827, 0.04699707, -0.044708252, 0.0076065063, 0.016738892, 0.0154800415, -0.023910522, -0.028442383, -0.007698059, -0.016860962, 0.021026611, -0.050689697, 0.00957489, 0.009933472, 0.041656494, -0.0052757263, 0.018920898, 0.008033752, 0.03414917, 0.015808105, -0.0131073, -0.019882202, 0.019638062, 0.027236938, 0.03125, -0.002702713, -0.0146102905, -0.022598267, -0.01939392, -0.008857727, 0.00029468536, -0.029693604, -0.016082764, -0.004219055, 0.010612488, 0.028442383, -0.0030822754, 0.01675415, 0.030731201, 0.002325058, 0.0059432983, 0.010795593, -0.021347046, 0.030334473, -0.021133423, -0.00434494, 0.0064735413, -0.015640259, -0.011245728, 0.06604004, 0.03564453, -0.05432129, -0.054107666, -0.06726074, 0.107666016, -0.039611816, -0.0009036064, 0.00023388863, -0.024963379, -0.032104492, 0.03390503, -0.018722534, 0.0024280548, 0.014778137, 0.0050201416, -0.021499634, -0.0043907166, -0.018463135, 0.0006084442, 0.018188477, -0.019515991, -0.009086609, -0.0004823208, 0.021636963, -0.017456055, 0.007019043, -0.026306152, -0.011482239, -0.0036525726, 0.020980835, 0.0034980774, 0.0069084167, 0.0041160583, 0.0039901733, -0.0051651, -0.038360596, -0.018096924, 0.017471313, -0.049621582, 0.05441284, 0.005744934, 0.014930725, 0.031463623, -0.040222168, 0.050323486, 0.006942749, 0.03942871, -0.033996582, 0.0046157837, -0.027923584, 0.023254395, -0.009902954, -0.036468506, 0.027664185, 0.057373047, 0.05895996, -0.029754639, 0.026016235, 0.06677246, 0.06317139, -0.023117065, -0.03125, 0.014030457, 0.0030326843, -0.011367798, 0.022064209, -0.022567749, -0.028335571, 0.019714355, 0.02166748, -0.052490234, -0.0149383545, 0.020523071, 0.026412964, 0.015808105, 0.031158447, -0.018966675, 0.01864624, -0.0345459, 0.012374878, -0.013092041, 0.021774292, -0.012145996, 0.07318115, 0.07525635, -0.00068855286, 0.022140503, -0.014312744, 0.023971558, 0.0077781677, -0.023162842, -0.0077209473, 0.02949524, 0.00057411194, -0.0184021, 0.026168823, 0.079956055, -0.0056877136, -0.03479004, -0.007949829, 0.017303467, 0.020355225, -0.019958496, -0.060577393, -0.009735107, 0.0046958923, 0.059051514, -0.03869629, 0.03579712, 0.0008215904, 0.0055236816, -0.038269043, 0.02670288, -0.05026245, -0.03616333, -0.0046691895, -0.014442444, -0.07659912, 0.07836914, -0.0027217865, 0.016220093, -0.03930664, -0.024597168, 0.018875122, -0.047058105, 8.98242e-05, 0.013809204, -0.0011301041, 0.021759033, 0.011375427, 0.020721436, -0.02267456, 0.028564453, 0.013900757, 0.020950317, 0.014595032, 0.0105896, -0.00970459, -0.0038547516, 0.040863037, 0.02822876, 0.06915283, -0.0067825317, -0.06124878, -0.022888184, 0.0035591125, -0.040924072, 7.343292e-05, 0.025299072, 0.010498047, -0.024505615, 0.010192871, 0.0026988983, -0.0070152283, -0.011123657, -0.0058288574, -0.0057411194, 0.0014810562, 0.0025463104, 0.006401062, -0.009773254, -0.008285522, 0.022384644, -0.026107788, 0.0013523102, 0.006706238, -0.031799316, -0.061340332, 0.011795044, -0.003944397, -0.042877197, -0.022827148, 0.0602417, -0.013175964, 0.03543091, -0.024230957, 0.0423584, -0.062927246, -0.073791504, -0.019210815, -0.023452759, -0.05984497, -0.021957397, -0.024627686, -0.067993164, -0.049102783, 0.04699707, 0.022247314, -0.059448242, -0.0014925003, 0.025726318, 0.024932861, 0.022277832, 0.031951904, -0.08251953, -0.016845703, -0.019744873, -0.014266968, -0.041107178, -0.03665161, 0.04083252, -0.02255249, 0.0413208, 0.02923584, 0.019622803, 0.02998352, -0.0065574646, 0.04736328, 0.02571106, -0.002002716, 0.0037822723, -0.026184082, 0.009941101, 0.02217102, -0.012062073, -0.009391785, 0.03829956, 0.0090789795, -0.02760315, -0.025619507, -0.06286621, -0.010406494, -0.015556335, 0.011329651, -0.0124435425, -0.010467529, 0.0054130554, -0.084106445, 0.030776978, -0.042388916, 0.026351929, 0.0042800903, 0.005970001, 0.02684021, -0.008132935, 0.018203735, -0.020904541, -0.013252258, 0.046142578, -0.01637268, 0.03314209, -0.017654419, 0.040008545, -0.09967041, 0.07598877, 0.058776855, -0.035736084, 0.008880615, -0.011314392, 0.0028457642, 0.008583069, 0.054382324, -0.0009508133, 0.0090408325, -0.022659302, -6.645918e-05, -0.009101868, 0.024368286, 0.010116577, -0.0259552, 0.038604736, -0.03503418, -0.032348633, 0.010322571, -0.014884949, -0.0034561157, -0.022399902, -0.009002686, 0.018203735, -0.031982422, 0.026107788, -0.075805664, 0.0129776, 0.010864258, 0.026275635, -0.0036907196, -0.0037612915, 0.033813477, 0.011108398, 0.017807007, 0.0074005127, 0.006969452, -0.009552002, 0.00046372414, -0.011054993, -0.03753662, -0.02268982, -0.02520752, 0.057495117, -0.011116028, -0.014694214, -0.00349617, -0.04473877, 0.04046631, 0.0104904175, -0.026168823, 0.011276245, -0.02418518, 0.024658203, -0.009666443, 0.012168884, -0.03164673, -0.04095459, -0.008804321, -0.06524658, 0.06536865, 0.044281006, -0.01852417, 0.0814209, 0.07183838, -0.02230835, 0.0071411133, 0.038604736, -0.02999878, -0.013946533, 0.021438599, -0.0440979, -0.013511658, 0.02017212, 0.0023117065, 0.029403687, 0.015609741, -0.04473877, 0.015899658, -0.037139893, -0.013572693, -0.031585693, 0.0028572083, -2.5331974e-05, -0.011512756, 0.020370483, -0.045928955, -0.028533936, -0.030975342, -0.053771973, -0.007320404, -0.03074646, -0.002614975, -0.023925781, -0.045959473, -0.004085541, -0.0017023087, -0.034088135, 0.0074501038, 0.00027561188, 0.029449463, -0.011619568, -0.028457642, 0.014762878, 0.024673462, -0.054534912, -0.016311646, 0.026550293, 0.047668457, -0.040100098, -0.040740967, 0.035461426, -0.011703491, -0.020111084, 0.04660034, 0.00094509125, -0.07299805, 0.009407043, 0.060577393, -0.0011453629, -0.039245605, -0.0063705444, -0.017471313, 0.012374878, 0.008300781, -0.068725586, -0.005180359, -0.014976501, 0.004917145, -0.07293701, -0.031799316, -0.010047913, 0.042022705, -0.0065956116, 0.0056266785, -0.031311035, -0.007129669, 0.0019664764, 0.0154800415, -0.01285553, -0.018051147, -0.0569458, 0.014030457, 0.0011138916, -0.01524353, 0.0050354004, -0.025115967, -0.02798462, -0.021636963, 0.012931824, 0.005355835, 0.0022945404, 0.0032405853, -0.0031585693, 0.0023040771, 0.026550293, 0.027008057, -0.011306763, 0.033447266, -0.012779236, -0.008529663, -0.06359863, 0.016448975, 0.045928955, 0.011222839, -0.029525757, -0.0075416565, 0.03515625, 0.00016331673, 0.008224487, -0.0803833, 0.02357483, 0.030517578, 0.02508545, -0.036224365, -0.101623535, 0.007911682, -0.009353638, 0.030197144, 0.005710602, -0.00667572, 0.011428833, 0.076538086, 0.036834717, 0.010551453, -0.001704216, 0.020935059, -0.023025513, 0.019683838, -0.049041748, -0.010299683, -0.044708252, 0.026306152, -0.03338623, 0.055267334, 0.015533447, -0.019989014, 0.00054359436, -0.008583069, -0.013900757, -0.022445679, 0.009742737, 0.0154800415, -0.024673462, -0.02142334, -0.031829834, 0.010070801, -0.034423828, -0.009407043, -0.0011358261, 0.010688782, 0.010803223, -0.028808594, -0.011062622, -0.0046539307, -0.012290955, -0.014129639, -0.01689148, 0.02407837, -0.0044403076, -0.0048179626, 0.029220581, -0.019607544, -0.013420105, -0.0015258789, -0.005962372, 0.029296875, -0.055389404, -0.0028915405, -0.054229736, -0.008262634, 0.061950684, -0.012527466, -0.031188965, 0.010772705, 0.02015686, -0.04284668, -0.10479736, -0.028701782, 0.010131836, -0.03704834, 0.04751587, 0.014373779, 0.048950195, 0.024597168, 0.0071105957, 0.0048980713, -0.007835388, 0.041534424, 0.049041748, 0.040893555, 0.042938232, -0.06512451, 0.044525146, -0.016555786, -0.048858643, -0.038635254, -4.5478344e-05, 0.02897644, 0.0058937073, 0.035339355, -0.04714966, 0.066589355, 0.023025513, -0.043792725, 0.016967773, 0.04852295, -0.0075645447, -0.018859863, 0.028915405, -0.056427002, -0.056488037, -0.0030384064, -0.04510498, -0.025360107, 0.04043579, -0.00667572, -0.046783447, 0.012557983, 0.030044556, 0.005760193, -0.011634827, 0.018478394, -0.03741455, -0.008682251, -0.011047363, 0.023345947, -0.018707275, -0.011230469, -0.0028457642, 0.009353638, -0.040283203, -0.053466797, -0.037231445, 0.021011353, -0.008308411, 0.043518066, 0.046905518, -0.013442993, 0.010002136, 0.023406982, 0.025146484, -0.046813965, -0.005428314, 0.058563232, 0.018325806, 0.018478394, -0.047790527, 0.022994995, 0.08239746, -0.05911255, -0.068603516, 0.05886841, 0.012557983, -0.017196655, -0.012176514, 0.043121338, -0.019241333, 0.006538391, 0.027816772, 0.03488159, -0.023025513, -0.01626587, 0.0072364807, -0.08306885, -0.021057129, -0.024414062, 0.025894165, -0.024047852, 0.0036525726, 0.004310608, 0.0236969, 0.010856628, 0.03466797, -0.04650879, -0.014625549, -0.012458801, -0.04284668, -0.016586304, -0.032684326, 0.019958496, -0.03894043, -0.0062332153, -0.034851074, -0.021987915, -0.002439499, 0.013648987, -0.008216858, -0.00013923645, -0.013542175, -0.031341553, 0.00843811, 0.047454834, -0.0009174347, -0.0135269165, -0.018753052, 0.0066184998, 0.0077438354, 0.012741089, -0.030426025, -0.0043907166, -0.06915283, -0.02609253, 0.025421143, 0.077819824, -0.054992676, 0.06439209, 0.0028457642, 0.049102783, 0.009124756, 0.0018310547, -0.0046920776, -0.006313324, -0.008888245, 0.0124435425, 0.071777344, -0.028686523, -0.018051147, -0.0385437, -0.0102005005, -0.013465881, -0.01574707, 0.033721924, -0.029571533, 0.024658203, -0.038879395, -0.022476196, 0.00945282, -0.06713867, 0.041107178, 0.010627747, 0.06439209, -0.016815186, 0.008705139, 0.029388428, -0.03652954, -0.072387695, 0.005130768, 0.029830933, -0.024414062, 0.032989502, -0.024398804, 0.01537323, 0.06149292, -0.08581543, -0.019622803, 0.010391235, 0.007873535, -0.015899658, -0.09954834, -0.06188965, -0.0033130646, 0.027114868, -0.037750244, 0.036834717, 0.02330017, -0.01146698, 0.021362305, 0.009544373, 0.008926392, -0.01586914, 0.045837402, 0.0063095093, -0.0014715195, -0.023330688, -0.014572144, 0.031463623, 0.017120361, 9.393692e-05, 0.013458252, -0.032287598, 0.009681702, 0.016342163, -0.029296875, -0.055023193, -0.06311035, 0.0006914139, 0.026947021, -0.030441284, -0.03640747, -0.044769287, 0.009979248, 0.026367188, -0.050994873, 0.03665161, -0.04586792, 0.052703857, 0.035186768, 0.0574646, -0.041778564, -0.04348755, -0.025009155, -0.032287598, 0.010047913, -0.028533936, 0.0140686035, -0.032958984, 0.014640808, -0.0035114288, 0.036987305, -0.06591797, 0.022354126, 0.008651733, 0.013404846, 0.03414917, 0.011665344, -0.02166748, -0.018371582, -0.007797241, -0.012084961, -0.015335083, -0.049682617, 0.023162842, 0.0068359375, 0.029052734, -0.014717102, 0.0012865067, -0.019546509, -0.02017212, 0.04196167, -0.005432129, -0.004245758, -0.03616333, -0.024108887, -0.0059013367, 0.014213562, -0.046905518, 0.015213013, -0.0020122528, -0.0234375, -0.008651733, 0.018417358, 0.043792725, -0.05947876, 0.0052108765, -0.031707764, -0.010818481, -0.0039978027, 0.023101807, -0.020019531, -0.0524292, -0.009117126, 0.042175293, -0.05026245, -0.0625, 0.027008057, -0.0018033981, 0.006790161, 0.006591797, -0.0053253174, 0.06124878, 0.02027893, -0.018310547, 0.03955078, -0.007217407, -0.02355957, 0.041259766, 0.022888184, -0.024597168, -0.0024852753, 0.008140564, 0.008903503, 0.041107178, -0.018417358, 0.055633545, -0.064453125, 0.024124146, -0.026687622, 0.0079422, 0.012359619, -0.0138168335, 0.030166626, 0.015296936, -0.052246094, 0.029953003, -0.0152282715, 0.030807495, -0.016723633, 0.019302368, 0.101257324, 0.016693115, -0.030929565, -0.047454834, -0.051940918, 0.017410278, -0.015594482, -0.061462402, -0.0009226799, -0.009735107, -0.016159058, -0.0063705444, 0.043060303, -0.010238647, -0.010047913, 0.014892578, 0.008766174, -0.027893066, -0.00058984756, -0.017654419, -0.036102295, -0.044677734, 0.043182373, -0.015586853, -0.00025463104, 0.0021400452, -0.01184845, -0.017578125, -0.008888245, 0.030700684, 0.012336731, -0.02029419, -0.0027694702, 0.04171753, 0.0104904175, 0.0060539246, -0.009307861, -0.018478394, -0.027832031, 0.00982666, 0.026062012, 0.016571045, -0.03375244, 0.033691406, 0.025436401, 0.016357422, -0.025924683, -0.060150146, -0.05532837, 0.02659607, 0.0005464554, 0.011131287, 0.038635254, -0.017730713, 0.012832642, 0.0118255615, -0.016784668, -0.050231934, 0.015136719, 0.05206299, 0.00016450882, 0.021957397]}, "B007HG7SM8": {"id": "B007HG7SM8", "original": "Brand: Camco\nName: Camco 59843 20\" Pigtail Propane Hose Connectors - Acme x 1/4\" Male NPT\nDescription: \nFeatures: Connect your camper's 1/4\" NPT inlet regulator to a 20lb or 30lb LP tank\nRated for 200,000 BTUs per hour\nBuilt-in excess flow and thermal protection\n20\" hose\nACME nut x 1/4\" male NPT\n", "metadata": {"Name": "Camco 59843 20\" Pigtail Propane Hose Connectors - Acme x 1/4\" Male NPT", "Brand": "Camco", "Description": "", "Features": "Connect your camper's 1/4\" NPT inlet regulator to a 20lb or 30lb LP tank\nRated for 200,000 BTUs per hour\nBuilt-in excess flow and thermal protection\n20\" hose\nACME nut x 1/4\" male NPT", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009223938, -0.018554688, -0.017089844, -0.039489746, -0.017929077, -0.0028533936, -0.03543091, 0.013153076, 0.0074653625, 0.015129089, 0.066833496, -0.014328003, -0.008911133, -0.07366943, -0.0026016235, -0.009597778, -0.023880005, 0.06359863, -0.012962341, -0.05267334, 0.016143799, -0.05960083, -0.03677368, 0.041625977, -0.013839722, 0.004272461, 0.040283203, -0.011390686, 0.006298065, -0.00034475327, 0.009559631, -0.01979065, 0.03414917, 0.014297485, -0.038146973, -0.010070801, 0.0005970001, -0.0041275024, -0.039489746, 0.038604736, 0.0013656616, 0.009353638, 0.0053977966, 0.017242432, -0.028549194, -0.0569458, 0.01600647, -0.012207031, 0.047912598, 0.010971069, -0.018630981, 0.011276245, -0.00932312, -0.034820557, -0.0031337738, 0.02041626, 0.013893127, -0.00667572, 0.020690918, 0.0020389557, 0.0023708344, 0.025634766, 0.002878189, -0.015823364, -0.049468994, 0.019927979, 0.030395508, -0.029327393, 0.055541992, -0.043640137, -0.041107178, 0.049987793, -0.0045280457, 0.0044174194, -0.08135986, -0.014816284, 0.024047852, -0.038909912, 0.0134887695, -0.009162903, -0.020050049, -0.030807495, -0.02722168, 0.030548096, -0.019104004, 0.033691406, -0.023513794, -0.010269165, -0.022247314, -0.020706177, -0.028579712, 0.014854431, 0.025299072, -0.021972656, -0.06500244, 0.01158905, -0.022781372, -0.052368164, 0.061279297, 0.029693604, 0.001449585, -0.02885437, 0.017501831, -0.005252838, 0.0317688, 0.028549194, 0.009925842, -0.014816284, 0.03237915, -0.003435135, -0.026657104, 0.08441162, 0.023529053, -0.0036087036, -0.024353027, -0.023834229, -0.008651733, 0.035003662, 0.0035705566, 0.012863159, -0.021865845, -0.015838623, 0.023483276, -0.021820068, 0.012519836, 0.00083208084, -0.014381409, -0.0030765533, -0.06854248, 0.03643799, -0.008888245, -0.005290985, 0.025268555, 0.07116699, 0.02015686, -0.011932373, 0.03390503, -0.01826477, 0.0024166107, 0.008880615, 0.002298355, -0.017501831, -0.0060768127, 0.0042877197, 0.010154724, 0.032287598, 0.022033691, -0.00042581558, -0.026733398, -0.029541016, 0.010513306, -0.020217896, 0.027114868, 0.011955261, -0.020767212, -0.0079574585, 0.0004298687, -0.0024776459, -0.021087646, -0.038116455, -0.0044937134, -0.025848389, -0.013885498, -0.033569336, -0.05456543, 0.02180481, -0.023452759, -0.010643005, 0.024810791, 0.025253296, -0.0051994324, -0.0065612793, 0.03552246, 0.027008057, -0.007610321, 0.016708374, -0.044433594, 0.08087158, 0.07147217, -0.12597656, -0.074279785, -0.062042236, 0.11444092, -0.019180298, -0.02947998, -0.013122559, 0.011978149, -0.02670288, 0.008277893, -0.020980835, 0.046020508, 0.059783936, -0.01713562, -0.022018433, -0.023544312, 0.007888794, 0.012565613, 0.02217102, -0.018753052, 0.0038700104, -0.050720215, 0.02658081, 0.0040626526, 0.04135132, 0.070739746, -0.014793396, 0.023803711, -0.008255005, 0.026046753, 0.014122009, -0.01802063, -0.030258179, 0.029281616, -0.0501709, -0.017837524, 0.029129028, -0.008773804, -0.011131287, 0.010253906, -0.03390503, 0.05380249, 0.008468628, 0.042510986, 0.043395996, 0.00024306774, 0.038208008, -0.033996582, 0.02243042, -0.01965332, 0.025299072, 0.0018005371, 0.018936157, 0.008926392, 0.037322998, -0.023895264, 0.013969421, 0.026153564, 0.051361084, -0.014480591, -0.009185791, 0.0579834, -0.061340332, -0.015350342, -0.030578613, -0.019561768, -0.055664062, 0.030960083, -0.044006348, -0.008720398, 0.01687622, 0.07470703, -0.026947021, 0.0135650635, 0.008743286, -0.050567627, 0.02420044, -0.019989014, 0.013946533, -0.017654419, 0.031433105, -0.019302368, 0.05706787, 0.06121826, -0.0044898987, 0.12145996, -0.016937256, 0.062469482, 0.02015686, -0.07019043, 0.016845703, 0.024429321, 0.02027893, -0.010360718, 0.0065612793, -0.034301758, -0.010948181, -0.025436401, 0.020263672, -0.015838623, -0.012626648, -0.014266968, -0.033477783, -0.013534546, 5.555153e-05, 0.056793213, 0.023849487, 0.026870728, -0.00447464, -0.061035156, 0.005935669, 0.04638672, -0.011146545, -0.020553589, -0.035980225, -0.023101807, -0.012863159, 0.035369873, -0.05126953, 0.026351929, -0.014160156, 0.018417358, 0.070739746, 0.016723633, -0.0007972717, 0.0044174194, -0.006290436, -0.019683838, 0.055633545, 0.029129028, -0.05053711, -0.022262573, 0.0066184998, 0.023468018, 0.03845215, 0.0014448166, -0.003917694, 0.0029182434, 0.044769287, 0.01828003, 0.041259766, -0.024490356, 0.039245605, -0.033477783, -0.021408081, 0.033599854, 0.029953003, -0.056427002, -0.010673523, -0.032348633, -0.03137207, -0.006511688, -0.043640137, 0.00843811, 0.051086426, 0.0050468445, 0.003622055, -0.004547119, 0.01689148, -0.013053894, -0.03753662, 0.012413025, -0.021606445, 0.018005371, 0.024551392, -0.013832092, -0.03125, 0.040527344, 0.005622864, -0.026733398, -0.00090551376, 0.012634277, -0.021743774, 0.03253174, -0.00868988, 0.032226562, 0.01058197, -0.046173096, -0.009819031, 0.01424408, -0.06829834, 0.00048971176, -0.03945923, -0.05999756, -0.003818512, 0.058532715, 0.0031204224, -0.06451416, -0.0014314651, -0.017684937, -0.012252808, -0.0109939575, -0.03375244, -0.031219482, 0.011749268, 0.02784729, 0.02571106, 0.051086426, 0.0030345917, 0.022399902, 0.02557373, 0.05883789, 0.035095215, 0.007171631, 0.014663696, -0.013069153, 0.014389038, 0.06604004, 0.045898438, 0.027816772, -0.03643799, 0.018218994, 0.05102539, -0.037078857, -0.022781372, -0.023330688, -0.0026454926, 0.0061950684, 0.0054779053, 0.0063171387, -0.007671356, -0.043060303, -0.010307312, -0.03189087, -0.020385742, 0.023880005, -0.10479736, -0.013061523, -0.05227661, 0.015007019, 0.047729492, -0.02609253, -0.021881104, -0.036987305, -0.011116028, -0.0053710938, 0.009674072, 0.0041618347, -0.006374359, -0.054473877, 0.02482605, 0.06677246, -0.058258057, 0.019515991, 0.02067566, -0.05630493, -0.008483887, -0.008583069, 0.042663574, -0.044952393, 0.031677246, -0.015396118, -0.012573242, -0.02619934, -0.03390503, -0.016433716, -0.013786316, -0.019744873, -0.021102905, -0.019897461, -0.0066947937, -0.059936523, -0.042053223, 0.028305054, 0.010643005, 0.013885498, 0.01473999, -0.05166626, -0.03552246, 0.034606934, -0.0109939575, 0.010322571, -0.018615723, 0.046173096, 0.011230469, -0.018859863, 0.0692749, 0.01058197, 0.025817871, 0.007724762, -0.021942139, -0.035339355, -0.0116119385, 0.0071754456, -0.023330688, -0.014152527, -0.021865845, 0.019195557, 0.035583496, 0.038635254, -0.034454346, 0.026382446, 0.037872314, 0.013145447, 0.008735657, -0.028015137, -0.020217896, 0.02960205, 0.011581421, 0.031921387, -0.011062622, -0.06048584, 0.03488159, -0.07501221, 0.046661377, -0.0069274902, -0.0065956116, 0.039245605, 0.012176514, -0.0029277802, 0.04159546, 0.056762695, 0.009269714, 0.014076233, 0.055511475, -0.016830444, -0.036132812, -0.0028152466, -0.022644043, -0.009788513, -0.024597168, -0.049316406, -0.006389618, 0.023757935, 0.0037117004, -0.00258255, 0.05368042, 0.030517578, -0.003955841, -0.013290405, -0.038238525, -0.004673004, -0.06726074, 0.012130737, -0.020309448, 0.002784729, 0.036254883, -0.020599365, -0.035858154, -0.0020313263, 0.00074863434, -0.028549194, -0.031555176, 0.018661499, 0.019927979, 0.020568848, 0.0009174347, 0.0029640198, 0.029571533, -0.030639648, -0.032928467, -0.0069351196, 0.016723633, -0.008323669, -0.0034999847, 0.032470703, 0.009414673, 0.0069236755, 0.026641846, 0.012275696, -0.06842041, 0.024215698, 0.031143188, -0.030776978, -0.0647583, -0.017303467, -0.029541016, -0.007549286, 0.035308838, -0.050109863, 0.0024871826, 0.033813477, 0.04397583, -0.058380127, -0.048339844, -0.0073776245, 0.019805908, 0.016281128, 0.0082092285, -0.030456543, -0.002538681, 0.015365601, 0.052459717, -0.062805176, -0.031402588, -0.05505371, -0.017318726, 0.03656006, 0.0075683594, 0.029342651, 0.00141716, -0.008575439, -0.013076782, 0.063964844, 0.018127441, 0.011833191, -0.050323486, -0.0132369995, 0.019714355, 0.008880615, 0.030197144, 0.020095825, 0.020935059, -0.029800415, 0.032104492, -0.04864502, 0.014602661, 0.047058105, -0.025878906, -0.037109375, -0.009986877, 0.035217285, 0.00076055527, -0.016662598, -0.0029621124, 0.03781128, 0.042175293, -0.0008330345, -0.09832764, -0.04650879, 0.0018377304, -0.044830322, -0.009506226, -0.014755249, -0.02029419, 0.09088135, 0.022140503, -0.0019550323, -0.021240234, 0.01260376, 0.03857422, -0.049591064, 0.00617218, -0.0287323, 0.004951477, -0.027160645, -0.005756378, -0.06488037, 0.055267334, 0.064941406, 0.012672424, 0.029037476, -0.007637024, -0.012619019, -0.024719238, -0.0076179504, -0.008522034, 0.028625488, 0.009757996, -0.03540039, -0.0058403015, -0.027160645, -0.020339966, -0.051757812, -0.03656006, -0.06124878, 0.0362854, -0.015625, -0.0715332, -0.013328552, 0.014411926, 0.0061035156, -0.01512146, -0.053833008, 0.010528564, 0.029037476, -0.011695862, -0.0025997162, 0.0014257431, -0.029067993, 0.00089263916, -0.016708374, -0.008834839, 0.0047683716, 0.017791748, -0.024993896, 0.031433105, -0.012031555, 0.016448975, 0.0025463104, -0.0013809204, -0.01638794, 0.04034424, -0.0032138824, -0.0005311966, 0.014411926, 0.033935547, -0.016830444, 0.028289795, -0.0026359558, 0.016052246, -0.0038108826, -0.0072898865, 0.027938843, 0.02279663, -0.017181396, -0.029647827, 0.10595703, -0.01727295, 0.012702942, -0.05883789, 0.013908386, 0.007911682, 0.0021381378, 0.05508423, -0.060791016, 0.028930664, -0.07977295, -0.01751709, 0.009262085, 0.023727417, -0.030181885, -0.004737854, 0.0052337646, -0.037628174, -0.021835327, -0.0046463013, 0.0018005371, 0.039031982, -0.0013494492, -0.059326172, 0.025039673, 0.038879395, -0.02053833, 0.020355225, -0.008308411, 0.032348633, -0.0038928986, -0.011352539, 0.00381279, 0.0015296936, -0.004840851, -0.024520874, -0.0138549805, 0.015838623, -0.03314209, -0.015853882, -0.017028809, -0.027664185, -0.019210815, 0.064941406, -0.0016622543, -0.022491455, 0.025726318, 0.025985718, 0.025115967, 0.0029392242, -0.031188965, -0.0007390976, -0.0048065186, -0.0021514893, 0.019470215, -0.027923584, 0.03665161, -0.006549835, -0.038146973, -0.018341064, 0.037078857, -0.03012085, -0.023483276, 0.050323486, 0.03894043, 0.008560181, 0.032226562, -0.009460449, -0.050109863, 0.033111572, 0.013198853, -0.04046631, -0.06945801, -0.039276123, -0.03829956, 0.0027179718, -0.021347046, -0.0074539185, 0.053253174, 0.013847351, -0.05328369, -0.04348755, -0.028167725, 0.021774292, -0.042175293, -0.005355835, -0.04724121, 0.0038146973, 0.00970459, 0.0018396378, -0.028427124, -0.03112793, 0.01663208, 0.027694702, 0.021209717, 0.003604889, 0.019485474, 0.042938232, -0.050354004, 0.030273438, 0.0064735413, -0.034851074, 0.0020599365, 0.013511658, -0.008422852, 0.035003662, 0.0014600754, -0.0073928833, -0.019958496, 0.017333984, 0.035858154, 0.013336182, -0.023590088, 0.012832642, -0.004119873, 0.022369385, -0.017349243, -0.04034424, -0.026229858, -0.0024757385, -0.0021686554, -0.029144287, -0.037017822, -0.026916504, -0.011062622, -0.049957275, -0.02507019, -0.006996155, -0.016662598, 0.04611206, -0.038757324, 0.012527466, -0.022537231, 0.015174866, -0.00793457, -0.033081055, 0.0054397583, -0.050628662, 0.030593872, -0.016479492, 0.04107666, 0.018753052, -0.027862549, -0.047668457, 0.008720398, 0.023025513, -0.02243042, 0.036468506, -0.007522583, 0.0049476624, 0.0050582886, -0.021438599, 0.0010824203, 0.03262329, 0.028045654, 0.0023708344, -0.024230957, 0.0012741089, 0.003545761, 0.007286072, 0.018661499, 0.023544312, 0.022781372, 0.015548706, 0.018569946, -0.012367249, 0.03552246, -0.003068924, 0.020004272, -0.00089120865, -0.022964478, -0.026275635, -0.015655518, 0.044036865, 0.043426514, -0.010406494, 0.027313232, -0.0068855286, 0.009567261, -0.009246826, 0.004928589, -0.032073975, -0.017410278, 0.014732361, -0.011146545, 0.00592041, 0.011314392, 0.026763916, 0.019424438, 0.0061912537, 0.008422852, 0.024642944, -0.024291992, 0.045715332, 0.02381897, -0.04852295, -0.04168701, 0.01739502, -0.008552551, -0.007827759, 0.017242432, 0.06817627, 0.0022239685, 0.0040016174, -0.013267517, -0.021530151, 0.062316895, 0.014480591, 0.019210815, -0.093322754, 0.03086853, 0.02394104, -0.018875122, -0.019897461, -0.04058838, -0.017150879, 0.0057525635, -0.03439331, -0.03677368, -0.026153564, 0.013633728, 0.007217407, -0.033935547, 0.033111572, -0.0020446777, -0.053253174, -0.010307312, -0.005847931, -0.0044441223, -0.023086548, -0.04559326, -0.008644104, 0.0011758804, -0.041412354, 0.036987305, 0.02406311, -0.02822876, 0.014282227, 0.025527954, -0.0491333, -0.029815674, -0.033843994, 0.022277832, -0.019012451, -0.035064697, -0.012702942, 0.045532227, -0.015472412, -0.070495605, -0.004776001, -0.035247803, 0.034088135, -0.031021118, 0.016693115, 0.008460999, 0.011146545, 0.064819336, 0.026733398, 0.03062439, 0.014457703, 0.017486572, -0.0552063, -0.0079422, 0.03286743, 0.012008667, -0.018951416, -0.05328369, -0.00093507767, 0.020263672, 0.01739502, 0.03289795, 0.03164673, -0.01651001, 0.02645874, -0.0002632141, 0.012542725, 0.011634827, -0.0184021, 0.03741455, 0.038360596, -0.010261536, 0.01966858, 0.0076904297, -0.0647583, 0.012138367, -0.010314941, 0.03677368, -0.0039596558, -0.030212402, -0.06021118, -0.012565613, 0.01651001, 0.06311035, 0.0057373047, -0.055847168, 0.0015153885, 0.004219055, -0.005191803, -0.008079529, -0.009338379, 0.012802124, -0.007007599, 0.024169922, -0.004436493, -0.03692627, -0.012702942, -0.036346436, -0.020584106, -0.008628845, -0.013580322, -0.012054443, -0.062438965, -0.022949219, 0.00548172, -0.077697754, -0.02670288, -0.00554657, -0.012969971, 0.028961182, 0.029312134, 0.026748657, 0.0042648315, 0.011306763, -0.019714355, -0.03152466, 0.008460999, 0.0054016113, 0.0019664764, 0.0006875992, -0.015327454, -0.0013256073, 0.08331299, -0.00074768066, -0.10479736, -0.037994385, 0.03010559, 0.031341553, -0.030075073, 0.059387207, -0.060943604, 0.013908386, 0.032836914, -0.00793457, -0.0058174133, -0.04800415, 0.064208984, 0.0008096695, -0.02482605]}, "B00NCSUZDE": {"id": "B00NCSUZDE", "original": "Brand: Magma\nName: Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 12\"x18\" main grilling area 5-1/2\"x18\" secondary grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "metadata": {"Name": "Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size", "Brand": "Magma", "Description": "", "Features": "New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 12\"x18\" main grilling area 5-1/2\"x18\" secondary grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.07104492, -0.03387451, -0.058288574, 0.001912117, -0.05706787, 0.0041046143, -0.04586792, 0.029663086, -0.029129028, 0.017547607, -0.0178833, 0.052825928, -0.007003784, -0.015029907, 0.026138306, -0.0072669983, 0.030014038, 0.02017212, 0.008834839, -0.015731812, 0.008720398, 0.010810852, -0.040527344, 0.021652222, 0.04449463, -0.0007457733, -0.048706055, -0.001282692, 0.020965576, 0.008773804, 0.033172607, 0.00680542, 0.04824829, -0.028717041, -0.006095886, -0.021820068, 0.00026464462, -0.026733398, -0.022521973, 0.009063721, 0.0062828064, 0.0020484924, 0.021453857, 0.025009155, -0.01914978, -0.051757812, 0.028442383, -0.005504608, 0.021972656, 0.0078125, 0.0046691895, -0.005317688, 0.00023162365, 0.022827148, -0.022445679, 0.0062828064, -0.037200928, 0.037872314, 0.0064926147, -0.009765625, 0.0022850037, 0.034454346, 0.015777588, 0.022079468, -0.0037345886, -0.0020580292, 0.09875488, 0.00077295303, 0.037078857, -0.015029907, -0.0049438477, 0.056243896, 0.0065841675, -0.0030918121, -0.02571106, 0.007904053, 0.012916565, 0.008148193, 0.020462036, -0.0056610107, -0.018707275, -0.02470398, 0.022384644, -0.06890869, 0.019546509, -0.045440674, -0.018096924, 0.008049011, -0.0007548332, -0.022979736, 0.0015888214, 0.021911621, -0.0602417, 0.04272461, 0.014450073, -0.026306152, -0.0074310303, -0.046813965, 0.024673462, 0.0209198, 0.028335571, -0.03326416, 0.047821045, 0.02078247, -0.029953003, 0.041381836, 0.043518066, 0.040283203, -0.014793396, -0.0061035156, -0.018325806, -0.019424438, -0.0066337585, -0.038909912, -0.045684814, 0.026733398, 0.0046310425, -0.024383545, 0.019958496, -0.016159058, -0.016555786, 0.021026611, 0.010108948, 0.016342163, 0.019485474, 0.026733398, 0.0026817322, -0.031585693, -0.13598633, 0.05545044, -0.0067634583, 0.033721924, 0.066589355, 0.025360107, -0.020141602, -0.024871826, 0.0024204254, 0.0109939575, 0.012893677, -0.0345459, -0.0042915344, -0.0016412735, 0.0126953125, 0.0103302, -0.03768921, -0.018005371, 0.011230469, 0.02734375, -0.021942139, -0.026290894, 0.0079193115, 0.004989624, 0.018722534, 0.04244995, -0.021362305, 0.06915283, 0.037719727, 0.008720398, -0.09094238, -0.036376953, -0.051940918, -0.04156494, 0.03955078, 0.048065186, 0.02848816, 0.078186035, 0.02192688, 0.013664246, 0.013572693, 0.074279785, -0.030090332, 0.013519287, 0.028060913, 0.01285553, -0.021087646, -0.0027885437, -0.022033691, 0.012145996, 0.075805664, -0.09057617, -0.07556152, -0.057647705, 0.09320068, -0.03717041, -0.03152466, 0.052001953, -0.014228821, 0.04446411, 0.031036377, -0.008636475, 0.0050086975, 0.024536133, -0.025344849, -0.01524353, 0.0053253174, 0.01576233, -0.050964355, 0.0035743713, -0.012237549, -0.018569946, 0.016036987, 0.02420044, -0.023605347, 0.0063591003, -0.06774902, 0.010032654, -0.014350891, 0.033966064, 0.007751465, 0.027496338, -0.01159668, -0.015136719, 0.014213562, -0.05923462, -0.004421234, 0.0057144165, -0.029724121, -0.012084961, -0.011528015, 0.05419922, -0.006828308, 0.013633728, -0.01751709, 0.017074585, 0.003566742, 0.024856567, -0.0026435852, 0.021484375, 0.04949951, 0.037506104, 0.01725769, -0.05657959, 0.115722656, 0.06829834, -0.026397705, 0.054229736, 0.04953003, 0.028244019, -0.058502197, -0.009941101, 0.0058555603, -0.0036792755, -0.00566864, 0.05606079, 0.05795288, 0.033416748, 0.015853882, 0.023361206, -0.024887085, -0.035095215, 0.05456543, -0.019866943, 0.041015625, 0.08129883, -0.021591187, 0.025161743, -0.027130127, -0.01876831, -0.03149414, 0.04647827, 0.006526947, 0.089660645, 0.032714844, 0.038513184, 0.0023784637, 0.0206604, 0.025772095, 0.04296875, -0.042236328, -0.008880615, 0.045318604, 0.09484863, -0.009223938, -0.019638062, -0.011413574, -0.01638794, -0.061798096, 0.042510986, 0.009857178, -0.02368164, -0.01802063, 0.00034809113, -0.037139893, -0.01235199, 0.020339966, -0.035705566, 0.004184723, -0.013244629, -0.01889038, -0.00022637844, 0.016601562, 0.01826477, -0.028518677, 0.024841309, 0.0048980713, -0.01802063, 0.009262085, 0.026046753, -0.008705139, -0.011566162, 0.024124146, 0.024780273, -0.05871582, 0.041778564, -0.0058403015, -0.0022964478, 0.009498596, -0.008842468, -0.015975952, -0.047943115, -0.0005197525, 0.016647339, 0.04534912, -0.05670166, 0.06677246, 0.035858154, 0.012672424, 0.04147339, 0.0053138733, 0.009590149, -0.003211975, 0.007671356, -0.04888916, -0.0005722046, 0.00982666, 0.011421204, -0.016326904, -0.004131317, -0.05758667, -0.03564453, -0.042114258, -0.074401855, -0.0084991455, 0.041534424, -0.0020923615, -8.1419945e-05, -0.0039405823, 0.039916992, -0.016342163, -0.04446411, -0.021240234, -0.06427002, 0.002784729, -0.028900146, -0.01423645, -0.016738892, -0.0047454834, 0.008010864, -0.04220581, -0.015090942, 0.00983429, -0.03111267, 0.0047302246, 0.028152466, 0.022323608, -0.018615723, -0.021774292, 0.012535095, -0.033111572, -0.044281006, -0.016494751, 0.008895874, -0.03579712, -0.100097656, 0.051361084, -0.00932312, -0.08673096, 0.009140015, -0.005947113, -0.001376152, 0.058502197, -0.011932373, -0.04840088, -0.047607422, -0.046661377, -0.02671814, 0.0211792, -0.02331543, -0.037139893, -0.020721436, 0.0043754578, 0.010551453, 0.0033569336, 0.022033691, -0.00046682358, 0.021972656, 0.014465332, 0.04925537, -0.017532349, -0.020721436, -0.014846802, 0.043823242, 0.015419006, -0.010726929, -0.016311646, -0.017120361, 0.008850098, 0.0068092346, -0.018814087, -0.009681702, -0.12426758, 0.009712219, -0.0090408325, -0.044891357, -0.011550903, -0.106933594, -0.06536865, -0.068725586, 0.017242432, 0.024520874, -0.0053977966, -0.026489258, -0.010475159, -0.01838684, 0.009223938, -7.635355e-05, -0.017288208, -0.011383057, 0.0060577393, -0.023147583, 0.003129959, 0.000600338, 0.005264282, 0.030670166, -0.05404663, 0.019989014, -0.03967285, 0.037872314, -0.05227661, 0.03640747, -0.02128601, 0.006462097, -0.0068626404, -0.010719299, -0.014732361, 0.014175415, -0.008613586, -0.009178162, 0.01348114, -0.03753662, -0.03237915, 0.0025520325, -0.0031108856, 0.003932953, 0.007156372, -0.032684326, 0.008384705, -0.031280518, -0.010482788, -0.02192688, -0.031585693, 0.008880615, 0.06939697, 0.031921387, 0.010101318, 0.028518677, 0.031188965, 0.057800293, 0.008903503, -0.009811401, -0.013305664, -0.055023193, 0.04840088, 0.01802063, 0.0008172989, -0.0284729, 0.056732178, -0.0037994385, -0.0010356903, 0.0101623535, -0.011413574, 0.024993896, 0.0074653625, -0.013420105, -5.620718e-05, -0.038513184, 0.01802063, 0.037902832, -0.029006958, -0.03729248, -0.026229858, 0.013389587, -0.047821045, 0.037902832, 0.033355713, -0.018676758, 0.018051147, 0.022460938, 0.0034294128, 0.050201416, 0.037231445, -0.022720337, -0.013687134, 0.074523926, -0.040008545, 0.017837524, 0.023590088, -0.029754639, 0.029403687, 0.03463745, -0.06274414, 0.017669678, -0.008926392, -0.061767578, -0.02835083, 0.008399963, 0.009513855, -0.014518738, 0.024246216, -0.032440186, -0.014274597, -0.019866943, -0.041015625, -0.016296387, -0.020065308, 0.00070381165, 0.013793945, 5.0008297e-05, -0.018508911, -0.020095825, -0.032989502, -0.0013580322, 0.01625061, 0.041625977, -0.03250122, 0.030792236, -0.037750244, 0.01725769, -0.020370483, -0.020202637, 0.02619934, 0.025161743, 0.04901123, 0.033355713, -0.034210205, -0.0058555603, -0.012649536, -0.009674072, -0.022109985, -0.0501709, 0.005420685, 0.015808105, -0.027633667, -0.019378662, 0.0036087036, -0.020263672, -0.035369873, -0.02079773, 0.01637268, -0.024658203, -0.02078247, -0.0051002502, -0.031433105, 0.00044441223, -0.032165527, -0.025238037, -0.07196045, 0.034606934, 0.008171082, 0.01612854, -0.010467529, 0.028839111, -0.019073486, -0.022659302, -0.06137085, 0.018661499, 0.01977539, 0.028182983, 0.057891846, -0.06976318, -0.024475098, -0.029296875, 0.0881958, 0.035308838, 0.025421143, -0.017730713, -0.016555786, -0.0008716583, 0.013336182, 0.020065308, -0.014671326, 0.007972717, -0.0032043457, -0.0042037964, -0.018585205, -0.020996094, 0.05923462, -0.03225708, -0.0084991455, -0.022476196, 0.027862549, -0.015808105, 0.03173828, -0.018188477, 0.008010864, -0.014328003, -0.006500244, -0.0637207, -0.012390137, 0.0012178421, -0.011978149, 0.011276245, 0.025466919, -0.034057617, 0.0390625, 0.0050468445, 0.0029640198, -0.0072364807, 0.014785767, -0.015319824, -0.0029201508, -0.03805542, -0.027923584, 0.05316162, -0.04321289, -0.026733398, -0.02507019, 0.035736084, 0.02911377, -0.0023117065, 0.0078125, -0.01071167, -0.007068634, -0.025466919, -0.035614014, 0.05697632, 0.011154175, -0.014312744, -0.056152344, 0.016738892, -0.038024902, -0.0050086975, -0.014984131, -0.019699097, 0.039001465, -0.011802673, 0.032318115, 0.025024414, 0.020355225, -0.0075912476, 0.01612854, 0.020904541, 0.005104065, 0.007358551, 0.03363037, -0.0026569366, 0.014678955, 0.016082764, -0.0077400208, -0.035125732, 0.047058105, 0.012275696, 0.03137207, -0.0020065308, -0.028747559, 0.035095215, -0.020065308, -0.007675171, 0.05670166, -0.0029354095, -0.027511597, 0.06112671, -0.028457642, 0.00095272064, -0.015914917, -0.0027160645, -0.005722046, 0.028015137, -0.02507019, 0.0055656433, 0.003643036, -0.03363037, 0.010848999, -0.029449463, 0.0009522438, -0.00957489, 0.022827148, 0.00093126297, 0.011550903, -0.061645508, 0.014923096, 0.03579712, 0.020996094, -0.016342163, -0.039031982, 0.011772156, -0.03793335, 0.018844604, 0.0060539246, 0.020507812, -0.029281616, -0.015655518, 0.0065727234, -0.027633667, -0.037231445, 0.0020008087, -0.06652832, -0.036987305, -0.009468079, 0.026153564, -0.004486084, -0.020721436, -0.011985779, -0.062286377, -0.017166138, 0.0023155212, 0.02444458, -0.00919342, 0.00057315826, -0.009246826, -0.004688263, 0.020889282, 0.04647827, 0.0143585205, -0.043670654, -0.057739258, -0.041931152, -0.0014095306, -0.039154053, 0.059631348, -0.021102905, -0.0054855347, 0.01108551, -0.02116394, -0.001408577, 0.021850586, -0.051879883, 0.010276794, 0.018005371, 0.06536865, -0.055023193, 0.029159546, 0.076660156, -0.05847168, -0.028182983, -0.06237793, 0.04168701, -0.022735596, -0.043518066, 0.048919678, 0.056274414, -0.0032138824, 0.022369385, -0.018341064, -0.051605225, 0.000664711, 0.0055122375, -0.07867432, -0.044891357, -0.04095459, -0.014015198, 0.003484726, 0.015350342, -0.0206604, 0.04083252, 0.0019245148, -0.02796936, -0.051849365, -0.007232666, 0.0010766983, -0.073913574, -0.0024528503, -0.0072631836, 0.014183044, 0.023452759, -0.0028457642, -0.023925781, 0.033843994, 0.03475952, 0.0012960434, 0.009468079, -0.018966675, 0.008407593, 0.018234253, 0.039398193, 0.04046631, -0.05368042, 0.041046143, 0.017990112, 0.06573486, -0.005290985, 0.060028076, -0.039367676, -0.028839111, -0.061462402, 0.008712769, 0.022125244, 0.069885254, -0.06915283, 0.018554688, 0.044006348, 0.04864502, 0.031341553, -0.024734497, -0.0055274963, -0.022583008, -0.014427185, -0.006214142, -0.034484863, -0.028381348, 0.007080078, -0.013633728, -0.022476196, 0.005870819, -0.024032593, -0.0015239716, -0.017440796, 0.047210693, -0.0027599335, 0.016571045, 0.0044021606, 0.013717651, 0.05532837, -0.009246826, 0.021621704, 0.010978699, -0.051818848, -0.026000977, -0.015335083, 0.024230957, 0.035339355, 0.039489746, 0.012931824, 0.018920898, -0.008918762, 0.013763428, 0.007873535, -0.045562744, 0.024276733, -0.0010166168, -0.007331848, 0.010070801, -0.010658264, 0.004699707, 0.036956787, -0.018997192, -0.010551453, -0.0013437271, 0.022964478, -0.0047912598, -0.014877319, 0.029907227, -0.03967285, -0.008430481, 0.0041389465, 0.008491516, 0.01713562, -0.005508423, 0.008735657, 0.029541016, 0.03189087, -0.051879883, 0.004486084, -0.016403198, 0.009010315, -0.04937744, 0.031463623, -0.011444092, -0.019699097, -0.015655518, -0.014404297, 0.025253296, 0.040283203, 0.014343262, 0.018859863, 0.0010490417, -0.032287598, 0.008880615, -0.03741455, 0.036315918, 0.047821045, -0.015541077, -0.024505615, -0.026947021, -0.016723633, -0.01939392, 0.013931274, 0.008079529, -0.0042648315, 0.013397217, 0.009155273, -0.003047943, 0.03173828, -0.03149414, 0.0036773682, 0.00019216537, 0.0009217262, -0.015853882, 0.04421997, 0.0031661987, -0.02229309, -0.015670776, -0.003686905, -0.014678955, 0.030227661, 0.015068054, 0.038848877, 0.011375427, -0.017440796, -0.02192688, 0.012176514, -0.043670654, 0.06903076, -0.01966858, -0.006755829, -0.00058698654, 0.013320923, -0.008590698, -0.009613037, -0.01625061, 0.038604736, -0.0023670197, -0.038879395, -0.030914307, 0.013328552, 0.041137695, -0.076660156, -0.017959595, -0.024795532, 0.056884766, -0.012626648, 0.0018157959, 0.008216858, -0.046173096, -0.033172607, 0.030303955, -0.04171753, -0.02255249, 0.03186035, -0.034088135, -0.005393982, -0.002084732, 0.012901306, 0.12390137, 0.01763916, 0.013160706, 0.008369446, -0.025909424, -0.030014038, 0.044891357, 0.021011353, -0.021148682, 0.006931305, 0.024978638, 0.00566864, 0.019378662, 0.0110321045, -0.007980347, -0.039031982, 0.014625549, 0.00207901, -0.0046844482, -0.024017334, 0.029785156, -0.042053223, -0.0016498566, -0.028808594, -0.058685303, -0.013397217, 0.004611969, 0.015731812, 0.008338928, 0.018447876, -0.014381409, -0.05899048, -0.0096588135, -0.02015686, 0.008079529, 0.039489746, 0.011772156, 0.032714844, 0.010551453, -0.020080566, -0.0008816719, -0.00756073, -0.00774765, 0.000954628, -0.0104522705, 0.012184143, -0.004634857, -0.006549835, 0.03793335, -0.02684021, -0.0024814606, 0.025466919, 0.05807495, -0.040283203, -0.020614624, -0.018432617, 0.0054473877, 0.01612854, -0.04321289, 0.0012464523, -0.011482239, -0.0023918152, -0.0029411316, 0.015403748, 0.0028743744, 0.017211914, -0.0058135986, -0.034820557, 0.0074920654, 0.04095459, -0.007522583, -0.037475586, 0.012748718, 0.03753662, 0.018585205, -0.0146484375, -0.05847168, -0.03111267, 0.021377563, -0.004535675, -0.0074424744, 0.009651184, -0.027496338, 0.008872986, 0.023773193, 0.010261536, 0.007217407, 0.01739502, 0.024291992, 0.0061416626, -0.002588272]}, "B016M5A2SQ": {"id": "B016M5A2SQ", "original": "Brand: Weber\nName: Weber Spirit E330 Lp Black Grill\nDescription: \nFeatures: Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling\nSear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer\nKeep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or saut\u00e9 veggies on the side burner\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\n", "metadata": {"Name": "Weber Spirit E330 Lp Black Grill", "Brand": "Weber", "Description": "", "Features": "Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling\nSear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer\nKeep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or saut\u00e9 veggies on the side burner\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.014511108, 0.013847351, -0.016464233, 0.014328003, -0.019317627, -0.0039253235, -0.016357422, -0.0051574707, -0.009613037, 0.020111084, -0.011047363, 0.009483337, 0.034240723, -0.043701172, 0.022109985, -0.016418457, 0.039245605, -0.0019054413, 0.027145386, -0.006793976, 0.0039596558, 0.014923096, 0.020629883, 0.0501709, 0.07232666, -0.039093018, 0.0044784546, -0.0061531067, 0.06414795, 0.016571045, 0.04071045, -0.05633545, 0.03250122, 0.028915405, -0.040649414, 0.010894775, 0.035705566, -0.0154953, 0.012138367, 0.0031261444, 0.028564453, -0.009414673, 0.023223877, 0.049835205, -0.026412964, -0.024841309, 0.023773193, -0.012802124, 0.033111572, -0.011871338, -0.018005371, 0.014717102, -0.0075798035, -0.021133423, -0.021255493, 0.0020561218, 0.024505615, -0.03503418, 0.021881104, -0.00067281723, -0.005470276, 0.007598877, 0.010101318, -0.031158447, 0.0040359497, 0.018157959, 0.10992432, -0.01348114, -0.045532227, -0.025466919, 0.032592773, -0.0064888, 0.053222656, 0.012184143, -0.0018882751, -0.082336426, 0.029968262, -0.031555176, 0.0034065247, 0.014427185, -0.037841797, -0.016464233, 0.008331299, -0.021194458, 0.0033817291, 0.0076522827, -0.032348633, -0.0022792816, 0.025039673, -0.03314209, 0.0178833, -0.040863037, -0.013549805, 0.08288574, 0.013519287, -0.04107666, -0.033996582, -0.043823242, 0.0055122375, -0.011550903, 0.02720642, -0.017089844, 0.004348755, 0.008239746, -0.013832092, 0.035583496, -0.01889038, 0.00299263, 0.0037593842, 0.011909485, -0.011665344, -0.06915283, -0.009666443, -0.023498535, -0.038482666, 0.013763428, -0.013595581, -0.012191772, 0.025772095, -0.007381439, -0.012763977, 0.008384705, -0.0035133362, 0.039886475, 0.024246216, 0.047790527, 0.021316528, -0.02507019, -0.06439209, 0.026123047, -0.052215576, 0.017196655, 0.05239868, 0.015640259, 0.004386902, -0.023422241, -0.038330078, -0.04321289, -0.0069351196, -0.012649536, 0.0032958984, -0.007068634, 0.048034668, -0.0038700104, 0.0064735413, 0.026123047, 0.018310547, 0.013343811, -0.0033054352, -0.053131104, 0.01776123, -0.006629944, 0.011886597, 0.0126571655, -0.04284668, -0.013442993, -0.024765015, 0.00907135, -0.008483887, -0.032562256, -0.030700684, -0.030258179, -0.023788452, -0.028686523, -0.051696777, 0.035491943, 0.027252197, -0.004737854, 0.02470398, 0.02607727, 0.033843994, -0.06390381, 0.031280518, -0.008758545, -0.029464722, 0.012413025, -0.013717651, 0.022232056, 0.05279541, -0.04135132, -0.047973633, -0.049682617, 0.089904785, -0.022964478, 0.014289856, 0.029037476, 0.028442383, 0.011070251, -0.022338867, -0.0010004044, -0.0015258789, 0.0435791, -0.0042419434, -0.015068054, 0.03579712, -0.0012931824, -0.0016069412, 0.012207031, 0.011001587, -0.043884277, 0.0124435425, 0.02708435, -0.03390503, 0.0054397583, -0.017547607, -0.009346008, 0.004135132, 0.013671875, 0.030563354, 0.01789856, -0.005428314, 0.013267517, -0.0009775162, -0.057373047, -0.025924683, 0.019424438, -0.022918701, -0.0039138794, 0.024414062, -0.014945984, 0.03543091, 0.023590088, 0.020721436, -0.017318726, 0.02999878, 0.0033226013, -0.01777649, 0.0058403015, 0.011474609, 0.0033626556, -0.023529053, 0.024475098, 0.101745605, 0.07495117, -0.013786316, 0.061157227, 0.053375244, 0.015075684, -0.057525635, -0.017486572, 0.011260986, -0.04977417, -0.042266846, 0.005870819, -0.010276794, -0.0021915436, 0.014656067, 0.013786316, -0.012969971, 0.010414124, 0.011878967, 0.0121154785, 0.03466797, 0.013053894, -0.027069092, 0.031051636, -0.014579773, 0.00042366982, -0.023239136, 0.06652832, -0.031082153, 0.03050232, 0.06072998, -0.012863159, 0.04711914, 0.00907135, 0.042633057, 0.029434204, -0.062164307, 0.010314941, 0.021850586, 0.027008057, -0.016113281, -0.010917664, -0.01914978, -0.025665283, -0.014633179, 0.027145386, -0.021514893, -0.02809143, 0.04055786, 0.025878906, 0.052612305, 0.0011444092, 0.0491333, -0.051239014, 0.0031986237, 0.008018494, 0.013442993, -0.04824829, 0.0044441223, -0.028305054, -0.022415161, 0.009216309, 0.03225708, -0.06549072, 0.103393555, 0.008934021, -0.008979797, 0.008232117, 0.068481445, 0.04574585, -0.02015686, -0.006134033, -0.007129669, -0.049041748, -0.01461792, 0.010940552, 0.0013809204, -0.06591797, 0.05834961, 0.08331299, 0.027832031, -0.023651123, 0.064086914, 0.027557373, 0.011955261, 0.05053711, 0.046966553, 0.034362793, -0.039123535, -0.050201416, -0.01725769, -0.007598877, -0.03173828, 0.024536133, 0.011772156, 0.008003235, -0.03552246, -0.00013184547, -0.03894043, -0.044891357, -0.030288696, -0.0075149536, -0.018630981, 0.0016784668, 0.00027513504, 0.05859375, -0.009338379, -0.016967773, -0.011230469, -0.05596924, -0.025894165, -0.023864746, -0.050567627, -0.025634766, 0.0087509155, 0.016937256, -0.01625061, -0.0034694672, 0.022842407, -0.017929077, -0.016433716, -0.04284668, -0.016326904, -0.039978027, 0.010536194, -0.049743652, -0.03475952, -0.080566406, 0.0008845329, -0.025650024, -0.052856445, 0.02557373, 0.044952393, 0.0024871826, -0.026641846, 0.00818634, -0.02609253, -0.0005507469, -0.0054740906, -0.008651733, -0.021270752, -0.02507019, -0.03665161, 0.006046295, 0.03829956, -0.035888672, -0.013687134, 0.009307861, -0.015945435, 0.026275635, -0.053466797, 0.009918213, 0.02734375, 0.032165527, 0.019561768, 0.06604004, -0.019882202, -0.03363037, -0.022216797, 0.06304932, -0.024627686, -0.028427124, 0.025100708, -0.0052948, 0.044647217, 0.04135132, -0.021759033, -0.028518677, -0.096191406, -0.014640808, 0.011161804, -0.06048584, -0.017425537, -0.03756714, -0.07684326, -0.03475952, 0.0107040405, 0.054748535, 0.023391724, -0.01461792, 0.011459351, -0.009254456, 0.007549286, 0.0026378632, 0.0033569336, -0.016845703, -0.008155823, -0.004180908, 0.027114868, -0.041107178, 0.03387451, 0.039916992, -0.04949951, 0.03414917, -0.02218628, 0.031082153, 0.0058250427, -0.011909485, -0.02041626, -0.027160645, -0.003255844, 0.014213562, -0.013267517, 0.035308838, -0.002231598, -0.001619339, 0.037902832, -0.042510986, 0.006980896, 0.010093689, -0.037597656, 0.058288574, -0.017608643, -0.027374268, -0.029953003, -0.05871582, -0.023910522, 0.014862061, -0.02230835, -0.0021533966, 0.014312744, 0.025756836, -0.007659912, 0.111572266, -0.0014076233, 0.041931152, 0.029663086, -0.03338623, -0.007633209, -0.04034424, 0.018325806, 0.018615723, 0.006378174, -0.020843506, 0.011314392, 0.013542175, -0.0184021, -0.0023899078, -0.0036773682, 0.014007568, -0.018035889, -0.0031585693, -0.031158447, -0.017059326, 0.053619385, 0.03463745, -0.013320923, -0.05822754, -0.032806396, -0.0069999695, -0.08532715, 0.103881836, 0.049865723, -0.011734009, 0.07287598, 0.08673096, 0.0059280396, 0.038208008, 0.037475586, -0.024490356, 0.011116028, 0.053863525, -0.033447266, 0.008323669, 0.011955261, -0.06524658, 0.018692017, -0.018356323, -0.038391113, 0.03543091, 0.017929077, -0.013542175, -0.005558014, 0.00894165, -0.013717651, -0.0032367706, 0.01576233, -0.01033783, -0.0019388199, -0.016647339, 0.014022827, 0.021102905, -0.029327393, -0.06427002, 0.015609741, 0.00818634, -0.056243896, 0.019195557, 0.026062012, 0.029037476, 0.03668213, 0.037506104, -0.0143966675, -0.012481689, 0.013015747, -0.028259277, -0.019378662, -0.017730713, -0.00082969666, -0.0019054413, -0.023071289, 0.0020198822, 0.028503418, 0.017730713, 0.005466461, -0.011169434, -0.080200195, -0.01802063, -0.015670776, 0.008934021, 0.008369446, -0.033935547, -0.014518738, -0.0592041, -0.01979065, -0.013420105, -0.070007324, -0.047851562, 0.035064697, 0.049865723, -0.0132369995, 0.03125, 0.011299133, -0.048034668, -0.051086426, 0.018096924, -0.016021729, 0.01727295, 0.043304443, 0.020065308, -0.037017822, -0.03286743, -0.03213501, -0.019317627, 0.068359375, 0.008216858, 0.0013036728, -0.043884277, -0.0126571655, -0.023910522, 0.072753906, 0.034088135, 0.018341064, -0.008773804, -0.025421143, -0.00831604, 0.03692627, 0.045928955, -0.0016126633, -0.0009083748, -0.037872314, -0.06896973, -0.020904541, -0.018173218, -0.0063438416, -0.04977417, -0.035186768, -0.02319336, 0.06311035, -0.0049972534, 0.020095825, -0.00983429, -0.0018577576, -0.060546875, 0.05166626, -0.016586304, 0.007003784, 0.0025520325, -0.0053215027, 0.008476257, 0.0035591125, -0.019424438, 0.002105713, 0.022857666, -0.00014901161, -0.024032593, 0.021850586, 0.019241333, -0.0061683655, 0.008110046, -0.04425049, 0.017730713, -0.014823914, -0.033111572, -0.04525757, 0.07348633, 0.023422241, 0.015991211, 0.017486572, 0.011680603, 0.004676819, -0.05142212, -0.033935547, 0.023590088, 0.017608643, -0.025375366, -0.05227661, -0.005821228, -0.04940796, -0.012565613, 0.004447937, 0.007083893, 0.041992188, -0.02607727, 0.013954163, 0.016082764, 0.018844604, 0.021255493, 0.00078344345, 0.016799927, 0.018997192, -0.024612427, -0.00466156, -0.039398193, -0.029785156, 0.004360199, -0.013847351, -0.0002913475, 0.043426514, 0.0051231384, -0.046569824, -0.025344849, 0.023880005, -0.016830444, -0.013549805, 0.014572144, -0.00050735474, -0.009307861, -0.040863037, 0.008575439, -0.019699097, 0.0056648254, 0.061523438, -0.026184082, -0.0030059814, 0.014968872, -0.032073975, 0.05633545, -0.019500732, -0.044677734, 0.052947998, -0.0017356873, 0.0055274963, -0.03552246, 0.066101074, -0.010719299, 0.015380859, -0.06021118, -0.007850647, 0.0068130493, 0.060516357, 0.0025691986, -0.04257202, 0.039611816, -0.020401001, -0.030059814, -0.013587952, 0.03744507, -0.019592285, 0.0023708344, 0.005420685, -0.0033187866, -0.014968872, -0.016906738, -0.03555298, 0.029373169, 0.0017242432, 0.0036754608, 0.028335571, 0.008529663, -0.05065918, -0.057861328, -0.036956787, -0.008888245, -0.012535095, 0.02709961, -0.033172607, 0.002374649, -0.010292053, -0.008361816, 0.016052246, 0.0024108887, -0.019058228, -0.034820557, -0.011367798, 0.0129852295, -0.020965576, 0.031204224, -0.023040771, 0.04815674, 0.0016183853, -0.02607727, 0.014221191, 0.012359619, -0.052001953, 0.029907227, -0.0020313263, -0.00944519, -0.02444458, -0.02960205, 0.053771973, -0.04901123, -0.06341553, -0.0008664131, 0.047027588, -0.04724121, -0.022979736, 0.03881836, -0.0030651093, 0.010429382, 0.028518677, -0.0001424551, -0.055786133, -0.020080566, 0.0038223267, -0.058410645, -0.020004272, -0.03857422, 0.027908325, 5.6922436e-05, -0.034088135, 0.017822266, 0.062469482, 0.06939697, -0.003566742, -0.033294678, -0.04626465, 0.016235352, -0.0138168335, -0.0014734268, -0.023529053, 0.006690979, -0.013504028, 0.01637268, -0.0077400208, -0.011451721, 0.010681152, 0.06222534, 0.01802063, -0.015090942, 0.009208679, 0.051727295, -0.07196045, 0.081848145, -0.00680542, -0.022918701, -0.01739502, 0.044799805, 0.02758789, -0.0064353943, -0.056854248, -0.02229309, -0.03503418, 0.023071289, 0.06402588, 0.019226074, -0.018112183, 0.02619934, 0.035583496, 0.00283432, 0.027191162, 0.008117676, 0.016799927, -0.004573822, -0.0059814453, 0.009918213, 0.038757324, -0.013755798, -0.04336548, -0.04058838, 0.010314941, 0.054901123, 0.02029419, 0.033996582, -0.016418457, 0.066589355, 0.019851685, -0.025878906, 0.020584106, -0.011230469, 0.003522873, -0.0025157928, -0.029586792, 0.023773193, 0.010520935, -0.016281128, 0.026504517, 0.028244019, -0.007522583, 0.025543213, 0.00566864, 0.03286743, -0.0368042, 0.030532837, 0.03137207, -0.064331055, -0.005634308, 0.033233643, 0.011444092, 0.003414154, -0.06536865, -0.024887085, -0.019317627, 0.004714966, 0.022903442, 0.035339355, 0.03414917, 0.029281616, -0.017196655, 0.018447876, -0.020126343, -0.04171753, 0.035827637, 0.027053833, 0.014015198, -0.008026123, -0.010063171, 0.030883789, 0.012626648, -0.032348633, 0.01890564, -0.034210205, 0.007850647, 0.012229919, 0.023284912, -0.03062439, -0.035125732, 0.046691895, 0.028808594, -0.024047852, -0.011405945, 0.016921997, 0.023117065, 0.0085372925, -0.042877197, 0.018157959, -0.05886841, 0.032989502, 0.03640747, 0.060821533, -0.011871338, -0.01524353, -0.022384644, -0.022399902, 0.011299133, 0.03010559, -0.0057907104, 0.049713135, 0.03668213, 0.034057617, 0.02243042, -0.031555176, -0.004714966, 0.03161621, -0.0085372925, 0.011116028, 0.018997192, -0.009254456, -0.024536133, -0.0056991577, -0.004634857, -0.017120361, -0.01134491, 0.019500732, -0.0013580322, -0.0027866364, -0.025299072, -0.0013608932, -0.0015115738, -0.022644043, 0.041412354, -0.0574646, -0.007911682, 0.0049552917, 0.012756348, -0.023086548, -0.015541077, -0.028076172, 0.026687622, -0.014854431, -0.033569336, -0.03277588, -0.006580353, 0.030395508, -0.057556152, 0.001868248, -0.027893066, 0.06161499, -0.004348755, 0.030563354, -0.0074272156, -0.018753052, -0.020690918, 0.012771606, -0.030654907, -0.014167786, -0.018630981, 0.004535675, 0.0018281937, -0.01020813, 0.0126953125, 0.05267334, 0.012893677, -0.01826477, -0.015914917, 0.0262146, -0.016174316, 0.012458801, -0.0077590942, -0.005748749, 0.00881958, 0.012512207, -0.030593872, 0.048736572, 0.010543823, 0.008834839, -0.039886475, -0.026916504, -0.061340332, -0.02909851, 0.019226074, -0.012794495, 0.005378723, -0.015838623, -0.0725708, -0.014770508, -0.011077881, 0.043060303, 0.0090789795, 0.013206482, 0.020126343, -0.039855957, -0.01966858, -0.04232788, -0.011726379, 0.036071777, 0.031707764, -0.0039863586, 0.021377563, 0.005558014, -0.0385437, 0.02330017, 0.00076675415, -0.00084114075, -0.039764404, 0.011894226, -0.029327393, -0.045959473, 0.014419556, -0.025390625, -0.012290955, -0.015556335, 0.016357422, 0.08843994, -0.06536865, -0.038848877, 0.0178833, 0.003063202, 0.014579773, -0.058746338, -0.014831543, -0.03286743, -0.004032135, 0.015563965, -0.010284424, 0.020751953, -0.0013971329, -0.013298035, -0.026473999, 0.0072898865, 0.010902405, 0.002298355, -0.014190674, -0.0010375977, 0.005393982, 0.061187744, -0.0031051636, -0.08898926, -0.043395996, 0.059539795, 0.009284973, -0.029830933, 0.03857422, -0.045562744, 0.015068054, -0.023742676, -0.00014472008, -0.0435791, 0.020187378, 0.036102295, -0.022384644, 0.03781128]}, "B00QMVEG8S": {"id": "B00QMVEG8S", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner\nDescription: \nFeatures: COOKING POWER: Up to 22,000 total BTUs\nPUSH-BUTTON IGNITION: For matchless lighting\n2 ADJUSTABLE BURNERS: For precise temperature control\nWIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes\nPRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions\n", "metadata": {"Name": "Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner", "Brand": "Coleman", "Description": "", "Features": "COOKING POWER: Up to 22,000 total BTUs\nPUSH-BUTTON IGNITION: For matchless lighting\n2 ADJUSTABLE BURNERS: For precise temperature control\nWIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes\nPRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.020553589, -0.01737976, -0.018127441, 0.023605347, -0.028259277, -0.0134887695, 0.015419006, 0.0020065308, -0.02230835, -0.033233643, -0.015113831, -0.012908936, -0.0028476715, -0.059570312, 0.045196533, -0.048614502, -0.0031795502, 0.031219482, -0.0017108917, -0.04055786, 0.010749817, -0.038330078, -0.028686523, 0.08526611, 0.02911377, -0.051727295, -0.033081055, -0.005050659, 0.013977051, -0.0028419495, 0.021133423, 0.029006958, 0.03540039, -0.012031555, -0.01890564, -0.05810547, 0.03463745, -0.034454346, -0.042663574, 0.037841797, -0.011924744, 0.02633667, 0.014724731, -0.0028057098, -0.038024902, -0.029586792, -0.009712219, -0.0012149811, 0.005821228, -0.006767273, -0.022827148, 0.006416321, -0.005722046, -0.022064209, -0.0065612793, -0.007209778, 0.035705566, -0.006652832, 0.012504578, -0.048553467, -0.027359009, -0.0009813309, 0.05331421, 0.03137207, -0.049987793, 0.029571533, 0.07220459, -0.016708374, 0.045806885, -0.061401367, -0.046539307, 0.046722412, 0.005744934, 0.025894165, -0.046661377, -0.016799927, 0.016586304, -0.00036978722, 0.040527344, -0.014091492, 0.004623413, -0.016647339, -0.04321289, -0.006713867, 0.040802002, 0.041046143, -0.0050811768, -0.040130615, -0.008293152, -0.057922363, -0.016738892, 0.0021438599, -0.07165527, 0.015579224, -0.009643555, -0.03515625, -0.049591064, -0.07720947, 0.044189453, 0.0033035278, 0.026733398, -0.018463135, -0.018371582, 0.007881165, -0.001083374, 0.06149292, 0.014289856, 0.07159424, 0.043426514, -0.0056037903, 0.014923096, 0.018707275, 0.0181427, 0.015388489, -0.008628845, -0.026779175, -0.053863525, 0.043762207, -0.005065918, 0.02519226, -0.016983032, -0.027175903, 0.053009033, 0.013290405, 0.0019760132, -0.0018777847, -0.029434204, -0.0017757416, 0.006591797, 0.034729004, -0.039642334, -0.007545471, 0.05810547, 0.04977417, 0.016479492, -0.025543213, 0.0019521713, 0.026550293, 0.016967773, -0.042022705, 0.014228821, 0.0024929047, 0.034698486, 0.02142334, -0.009124756, 0.020828247, 0.011482239, 0.0158844, 0.009437561, -0.07165527, 0.04626465, -0.036132812, 0.018569946, 0.014984131, 0.0075683594, 0.014930725, -0.0018024445, 0.0041656494, -0.0143966675, -0.0065345764, -0.03744507, -0.023635864, -0.017211914, 0.0011634827, -0.0077934265, 0.042419434, 0.055541992, 0.014038086, 0.010253906, 0.040802002, -0.008415222, 0.03189087, 0.022628784, 0.0049438477, -0.011695862, -0.03173828, -0.0018196106, 0.02180481, 0.037597656, -0.04360962, -0.04736328, -0.042144775, 0.08465576, -0.03265381, 0.0022830963, -0.012702942, 0.037017822, 0.017913818, -0.023590088, 0.018859863, 0.025756836, 0.020736694, -0.042175293, 0.020950317, -0.0071105957, -0.0062942505, -0.006137848, 0.022476196, -0.024871826, -0.012145996, 0.001786232, 0.0109939575, -0.007888794, 0.025054932, -0.031234741, 0.00242424, -0.002275467, 0.008934021, 0.013923645, 0.04800415, -0.005584717, -0.006954193, 0.021774292, -0.072021484, -0.018569946, -0.018615723, 0.0073661804, 0.03933716, 0.04336548, 0.038604736, 0.0637207, -0.011306763, 0.048675537, -0.023345947, 0.017745972, -0.0018177032, -0.01687622, -0.010322571, 0.024108887, -0.0064735413, 0.012191772, 0.025878906, 0.03265381, 0.06628418, -0.005130768, 0.025375366, 0.064941406, 0.052337646, 0.0011463165, -0.03967285, 0.0030593872, -0.05783081, -0.05609131, -0.017028809, -0.013298035, 0.025115967, 0.016159058, 0.0014381409, -0.0121536255, 0.04888916, 0.006198883, 0.017654419, 0.008621216, 0.027008057, -0.01914978, 0.0036582947, -0.038757324, 0.010322571, 0.015670776, 0.01411438, -0.018005371, 0.057403564, 0.055480957, 0.008804321, -0.011543274, 0.045837402, 0.0236969, 0.025665283, -0.026275635, 0.02835083, 0.020858765, 0.006717682, -0.008331299, 0.005619049, 0.03994751, -0.044433594, -0.0110321045, 0.0017328262, 0.012062073, -0.018753052, 0.023010254, 0.010818481, 0.012626648, -0.00047779083, 0.057037354, -0.02041626, 0.010147095, 0.03842163, -0.027832031, -0.016708374, 0.013008118, -0.008575439, -0.036956787, 0.022979736, -0.039215088, -0.026397705, 0.042510986, 0.021575928, 0.00497818, -0.015640259, 0.007434845, 0.025787354, -0.041137695, 0.0048446655, 0.017120361, 0.0010881424, 0.017593384, 0.024780273, 0.009757996, -0.008720398, -0.02067566, -0.020385742, 0.010749817, 0.04434204, -0.0064315796, -0.010826111, -0.005859375, 0.03564453, 0.05038452, 0.039093018, -0.0496521, 0.00920105, -0.0058937073, -0.005004883, 0.026779175, 0.0044784546, -0.02368164, 0.005672455, -0.043304443, -0.0039863586, 0.034423828, -0.011581421, 0.022094727, 0.0065841675, 0.008384705, -0.009307861, -0.0013818741, 0.00655365, -0.0051956177, -0.025924683, 0.00440979, -0.03201294, -0.0070114136, -0.0022583008, -0.025924683, -0.03945923, 0.061035156, -0.013404846, -0.018661499, 0.024612427, 0.030334473, -0.008453369, 0.059326172, 0.0098724365, 0.04989624, -0.03869629, -0.083618164, -0.021911621, -0.028915405, -0.0826416, 0.005748749, -0.030059814, -0.053253174, -0.011314392, 0.053710938, -0.004169464, -0.047180176, -0.019989014, -0.004547119, 0.008117676, -0.012863159, 0.0021591187, -0.060058594, 0.0028648376, 0.007080078, 0.02633667, 0.007411957, -0.026992798, 0.0619812, 0.0028743744, 0.015777588, -0.0028266907, 0.039276123, -0.010040283, 0.01927185, 0.027572632, 0.010627747, 0.012954712, 0.00045323372, -0.012367249, -0.00069856644, 0.01927185, -0.012939453, -0.023254395, 0.026184082, 0.027816772, -0.047088623, -0.046875, -0.022140503, -0.005012512, -0.07312012, 0.0076789856, -0.008766174, -0.045288086, 0.019607544, -0.0859375, -0.02571106, -0.06390381, 0.0105896, 0.024871826, 0.0006017685, -0.014442444, -0.0020275116, -0.027297974, 0.005252838, -0.004245758, 0.066101074, -0.019714355, 0.04196167, -0.031021118, 0.03894043, -0.08203125, 0.05053711, 0.031402588, -0.0033397675, 0.04067993, -0.06964111, -0.021331787, -0.042175293, 0.018814087, -0.019638062, 0.012779236, -0.017242432, 0.004180908, 0.025604248, 0.07647705, -0.0137786865, -0.03515625, -0.007507324, -0.016571045, -0.024932861, -0.05529785, 0.0059013367, 0.015548706, 0.011772156, -0.010215759, -0.05593872, -0.01424408, 0.01084137, -0.027069092, 0.021102905, -0.002943039, 0.049621582, 0.0036735535, -0.008415222, 0.07092285, 0.04724121, 0.037902832, 0.019500732, -0.041809082, -0.025100708, -0.032318115, 0.0004274845, 0.0018672943, -0.019607544, -0.04232788, 0.0033817291, 0.029754639, 4.476309e-05, -0.015197754, -0.0010032654, 0.0881958, 0.033447266, -0.021331787, -0.007858276, -0.058135986, 0.055725098, 0.013023376, 0.006996155, -0.062927246, -0.037597656, -0.00522995, -0.09790039, 0.08331299, 0.044403076, -0.015327454, 0.06555176, 0.036315918, -0.0040130615, 0.009674072, 0.042144775, -0.019851685, 0.0076141357, 0.026809692, -0.0423584, -0.007686615, 0.001906395, 0.045074463, -0.0042037964, -0.012428284, -0.06591797, 0.0021896362, 0.030975342, -0.004760742, -0.027282715, -0.0024166107, 0.026397705, -0.021469116, 0.014389038, -0.0317688, 0.002702713, -0.029663086, -0.041931152, -0.008857727, -0.026626587, 0.012123108, -0.027954102, 0.007911682, -0.035247803, -0.012550354, 0.0014276505, 0.006038666, -0.021438599, 0.020050049, 0.05996704, -0.001625061, -0.0368042, 0.028900146, -0.057495117, -0.01121521, 0.044799805, 0.05847168, 0.007293701, -0.028060913, 0.004547119, -0.021636963, -0.012702942, 0.030273438, 0.004180908, -0.06311035, 0.018295288, 0.024383545, -0.019439697, -0.04119873, 0.008453369, -0.017318726, 0.011642456, 0.02166748, -0.07330322, 0.0066223145, -0.027938843, -0.01486969, -0.06915283, -0.0513916, -0.025543213, -0.0073242188, 0.012229919, 0.014541626, -0.026275635, -0.035583496, 0.01008606, -0.007835388, -0.035369873, 0.012512207, -0.029693604, 0.012649536, -0.009727478, -0.033111572, 0.05355835, -0.04336548, 0.017074585, -0.025482178, 0.10858154, 0.018539429, 0.019638062, -0.05267334, -0.026657104, 0.009742737, -0.011505127, 0.011367798, -0.03451538, 0.020751953, -0.012786865, 0.01374054, 0.009880066, -0.043670654, 0.0047950745, -0.0070762634, -0.0027065277, -0.0121154785, 0.059814453, -0.05734253, 0.0006594658, 0.003080368, 0.0362854, 0.012260437, 0.013153076, -0.1149292, -0.05038452, -0.00015723705, -0.054016113, -0.01449585, -0.0005598068, -0.0178833, 0.026794434, 0.020507812, -0.028076172, -0.02281189, -0.00081539154, 0.031463623, -0.009750366, 0.02911377, -0.043762207, -0.012382507, -0.027511597, 0.008125305, -0.026733398, 0.050445557, 0.011207581, -0.010368347, 0.005744934, 8.9764595e-05, 0.007549286, -0.035308838, -0.0059509277, 0.0018997192, -0.0037117004, 0.0028266907, -0.011413574, 0.017791748, 0.001750946, -0.011451721, 0.006996155, -0.02696228, 0.025436401, 0.038116455, -0.010169983, -0.030471802, -0.029418945, 0.049621582, 0.016098022, 0.028762817, 0.021575928, -0.021240234, 0.0024604797, -0.007888794, -0.000259161, -0.0049362183, -0.034332275, -0.014541626, 0.011711121, 0.018463135, -0.0035514832, 0.019317627, -0.009925842, 0.014480591, -0.017700195, 0.015625, 0.03466797, -0.03692627, -0.054870605, 0.028259277, 0.034118652, -0.03717041, 0.03616333, -0.010276794, -0.02180481, 0.036956787, -0.035888672, 0.03829956, 0.01574707, -0.051879883, 0.009727478, 0.019317627, 0.011062622, -0.012268066, 0.032073975, -0.006877899, -0.040130615, -0.005443573, 0.024383545, 0.047576904, 0.003780365, 0.02178955, -0.036193848, 0.10369873, -0.059509277, -0.076660156, -0.0059661865, 0.0075798035, -0.037872314, -0.020462036, -0.00045228004, -0.03427124, -0.003396988, -0.0098724365, -0.026428223, 0.027236938, 0.03466797, -0.030654907, -0.0022068024, 0.028427124, -0.023117065, 0.0043258667, -0.031829834, 0.02079773, -0.060150146, 0.03378296, -0.030532837, 0.0059051514, 0.01826477, -0.00806427, 0.0016937256, 0.0034122467, -0.023330688, -0.060424805, -0.056365967, -0.0074653625, -0.034179688, 0.029922485, 0.007904053, -0.030273438, 0.023239136, 0.03137207, 0.02458191, 0.0052833557, -0.016189575, 0.017089844, 0.029647827, 0.055877686, -0.04434204, 0.0051841736, 0.057922363, -0.0546875, -0.024551392, -0.046813965, 0.053863525, -0.020965576, 0.0045814514, 0.015594482, 0.02281189, -0.0043945312, 0.03918457, 0.004837036, -0.0385437, 0.018630981, -0.0030574799, -0.056121826, 0.025756836, -0.019210815, 0.019042969, 0.035247803, 0.0017023087, -0.011787415, 0.042144775, -0.0010204315, -8.749962e-05, -0.038513184, -0.01751709, -0.005455017, -0.036071777, -0.0065727234, -0.017059326, 0.011276245, -0.017700195, 0.0031280518, -0.047302246, -0.015274048, 0.016906738, 0.037322998, 0.02885437, -0.030303955, 0.015960693, 0.051239014, -0.023208618, 0.07269287, -0.0109939575, 0.021240234, -0.003929138, 0.03277588, -0.014770508, 0.01965332, -0.053985596, -0.008140564, -0.040222168, -0.010658264, -0.004016876, 0.061279297, -0.081604004, -0.00945282, 0.019378662, 0.057250977, 0.009353638, 0.012786865, -0.004016876, 0.010650635, 0.016815186, 0.01449585, 0.019012451, -0.025894165, 0.0036067963, -0.06915283, -0.02243042, 0.005290985, -0.021942139, 0.01689148, -0.05987549, 0.058044434, -0.025924683, 0.013923645, -0.0018053055, -0.015960693, 0.0284729, -0.035705566, 0.024169922, 0.00078487396, -0.026565552, 0.025009155, -0.056396484, -0.07458496, 0.032196045, 0.04296875, -0.032440186, 0.021133423, -0.04220581, 0.018188477, 0.018005371, -0.060760498, -0.0005130768, 0.026977539, -0.008110046, -0.006313324, -0.050628662, -0.015640259, 0.01939392, -0.01838684, -0.007904053, 0.02822876, 0.029434204, -0.017745972, -0.014526367, 0.011383057, -0.007549286, -0.040863037, 0.061950684, 0.01083374, -0.0015668869, -0.018127441, -0.03945923, 0.07714844, 0.0154953, 0.02999878, 0.0692749, -0.028121948, -0.0044822693, -0.014556885, -0.019699097, -0.04019165, -0.0592041, -0.0011129379, 0.026107788, -0.034179688, -0.014221191, -0.009307861, -0.0124435425, 0.006175995, -0.05343628, 0.014694214, -0.02015686, 0.029190063, 0.018569946, 0.06237793, 0.00011104345, -0.002117157, -0.008880615, -0.012176514, 0.028137207, -0.0072021484, 0.008552551, -0.01436615, 0.028366089, -0.010231018, 0.025238037, -0.049041748, 0.00157547, 0.0035743713, 0.02571106, 0.029510498, -0.02355957, -0.0073623657, -0.012458801, -0.013389587, -0.0002644062, 0.019439697, -0.020324707, 0.02720642, -0.010757446, 0.01725769, -0.010093689, 0.013046265, -0.0050468445, -0.025634766, -0.014297485, -0.0020103455, -0.051727295, -0.031280518, -0.06945801, 0.008094788, -0.02116394, -0.079956055, 0.054473877, -0.003929138, -0.012207031, -0.0002465248, 0.0014753342, 0.0015850067, -0.029769897, 0.00019478798, 0.00982666, 0.012237549, 0.016662598, 0.045043945, -0.018203735, -0.0501709, -0.04788208, 0.011787415, -0.04006958, -0.031585693, -0.014503479, -0.047302246, -0.07318115, -0.031921387, 0.03289795, 0.09399414, 0.035003662, 0.006034851, -0.025100708, -0.021240234, -0.009689331, 0.04598999, 0.010223389, -0.04763794, -0.040496826, 0.01713562, 0.0023727417, -0.0023002625, 0.009468079, 0.0022716522, -0.091308594, -0.0009975433, -0.012664795, -0.004333496, 0.015365601, -0.010406494, 0.014541626, 0.021987915, -0.04067993, 0.013404846, -0.009231567, 0.018676758, 0.03845215, -0.05807495, 0.049835205, -0.039276123, -0.068237305, -0.10601807, -0.027435303, 0.045318604, 0.014320374, -0.007797241, 0.026535034, 0.019119263, -0.031341553, 0.0008735657, 0.005466461, -0.014732361, 0.01626587, 0.031799316, -0.002708435, -0.00058984756, -0.02319336, 0.018447876, 0.008865356, -0.068847656, 0.0073623657, 0.0099487305, -0.010444641, 0.0021972656, -0.029067993, 0.01386261, -0.008277893, -0.011810303, -0.033172607, 0.0008816719, 0.020629883, 0.025482178, 0.0104599, -0.0075798035, 0.008102417, 0.016311646, -0.030380249, 0.008575439, 0.011695862, 0.015312195, -0.0039253235, 0.021026611, 0.026885986, -0.0019702911, 0.0013618469, -0.049316406, -0.024383545, 0.014183044, 0.022369385, -0.012306213, 0.042022705, -0.018157959, 0.022415161, 0.025604248, 0.001627922, 0.016021729, -0.022201538, 0.033813477, -0.001036644, -0.014305115]}, "B00V8JJGOI": {"id": "B00V8JJGOI", "original": "Brand: HKESTG\nName: 2-Stage Propane Tank Regulator with 2 Pigtail Hoses\nDescription: Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.\nFeatures: Don\u2019t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks.\nHooks up 2 propane tanks to your RV at once so you\u2019ll always have a fuel supply.\nAuto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow.\nLets you remove empty propane cylinder without interrupting propane supply.\nIncludes 2 12-inch pigtail hoses.\n", "metadata": {"Name": "2-Stage Propane Tank Regulator with 2 Pigtail Hoses", "Brand": "HKESTG", "Description": "Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.", "Features": "Don\u2019t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks.\nHooks up 2 propane tanks to your RV at once so you\u2019ll always have a fuel supply.\nAuto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow.\nLets you remove empty propane cylinder without interrupting propane supply.\nIncludes 2 12-inch pigtail hoses.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0049705505, -0.014717102, -0.02835083, -0.039794922, -0.023071289, -0.010147095, -0.022155762, 0.017242432, -0.0005669594, 0.012527466, 0.022750854, -0.008384705, -0.0038280487, -0.040405273, -0.013923645, -0.01739502, 0.022537231, -0.008285522, -0.022018433, -0.02230835, 0.0059280396, -0.006122589, -0.032318115, 0.11755371, 0.005508423, -4.3690205e-05, 0.045928955, 0.033447266, -0.012214661, -0.00674057, 0.021377563, -0.01524353, 0.009841919, -0.007446289, 0.001115799, -0.030303955, -0.0019741058, -0.0042915344, -0.02949524, 0.021530151, -0.005962372, -0.005130768, 0.03869629, -0.024459839, -0.0014896393, -0.02520752, -0.00274086, -0.04852295, 0.013008118, -0.01789856, -0.03060913, -0.01486969, -0.020233154, -0.0287323, -0.01411438, -0.030197144, -0.0056381226, 0.005996704, 0.024154663, 0.035736084, -0.00060606, 0.021270752, -0.0054855347, -0.041992188, -0.061279297, 0.0068855286, 0.017150879, -0.0013961792, 0.036071777, -0.05255127, -0.036102295, 0.04937744, 0.0041885376, -0.00062704086, -0.03286743, 0.03137207, -0.061553955, 0.0047912598, 0.07312012, -0.010749817, -0.028213501, -0.0184021, 0.040527344, 0.0042800903, -0.03881836, -0.003314972, -0.023101807, 0.009681702, -0.04248047, -0.031707764, -0.02571106, 0.019561768, -0.087402344, 0.0051345825, -0.009788513, -0.0073661804, -0.0015096664, -0.053619385, 0.04800415, -0.0002052784, 0.023147583, -0.046813965, 0.009155273, 0.006668091, 0.01802063, 0.02571106, -0.02279663, -0.014930725, 0.030715942, 0.023468018, -0.016586304, 0.033233643, -0.0005645752, -0.029708862, -0.02017212, -0.0010910034, -0.03744507, 0.026565552, 0.027755737, 0.016189575, -0.0031833649, 0.002122879, 0.04812622, -0.049194336, -0.014251709, -0.018218994, -0.030075073, -0.029174805, -0.008361816, 0.0012397766, -0.033203125, 0.012886047, 0.05343628, 0.06210327, 0.033172607, -0.009101868, 0.033935547, 0.008094788, 0.02079773, -0.0030994415, 0.015083313, -0.019699097, 0.0034713745, 0.032196045, -0.016967773, 0.0340271, 0.03463745, -0.013511658, -0.025466919, -0.033477783, -0.046569824, 0.004421234, 0.027023315, -0.006580353, 0.0016679764, -0.046081543, -0.03579712, -0.010604858, 0.054626465, -0.0154418945, -0.049072266, -0.044555664, -0.017074585, -0.03793335, -0.04840088, 0.054992676, -0.0043678284, 0.0011854172, 0.024459839, -0.025863647, 0.010940552, 0.03363037, 0.07647705, 0.00724411, -0.0007801056, 0.01033783, -0.014984131, 0.024642944, 0.066101074, -0.0836792, -0.045715332, -0.040802002, 0.11651611, -0.03567505, -0.00793457, -0.004108429, 0.012893677, 0.016616821, 0.0063209534, 0.011909485, 0.0001758337, 0.011383057, -0.013595581, -0.005027771, 0.006603241, -0.02154541, 0.01826477, 0.0016651154, -0.0067214966, -0.007774353, 0.03036499, 0.022247314, -0.026123047, 0.020111084, -0.014076233, -0.014091492, -0.0019512177, -0.0132751465, 0.0024700165, 0.033325195, -0.0034885406, -0.017623901, -0.0030021667, -0.02130127, -0.010169983, -0.0105896, -0.012512207, 0.0028896332, 0.022857666, -0.005420685, 0.04525757, -0.0087509155, 0.04321289, 0.011505127, 0.015625, -0.00365448, -0.009490967, -0.014503479, 0.023605347, -0.00020265579, 0.017044067, 0.010353088, 0.053253174, 0.027938843, -0.049346924, 0.026489258, 0.043548584, 0.04067993, -0.0256958, 0.0032730103, 0.0067634583, -0.030303955, -0.010276794, 0.052093506, -0.04284668, -0.07220459, -0.014274597, 0.032409668, 0.00062942505, -0.00970459, 0.07910156, -0.03555298, 0.02319336, 0.042541504, 0.007621765, -0.0016546249, -0.009788513, 0.040863037, -0.060028076, 0.021759033, -0.009162903, -0.008407593, 0.012710571, -0.029190063, 0.03918457, -0.015136719, 0.019927979, 0.012870789, -0.016357422, -0.0046920776, 0.009178162, -0.015167236, -0.0028457642, -0.0013799667, -0.045928955, -0.057678223, -0.019973755, 0.03829956, 0.0035152435, -0.028823853, -0.020767212, -0.02053833, -0.007396698, -0.006877899, 0.06561279, 0.012145996, -0.014297485, -0.05255127, -0.03277588, 0.0020561218, 0.042877197, -0.009254456, -0.03729248, 0.0069274902, -0.0044403076, -0.017349243, 0.05908203, -0.037384033, 0.019363403, -0.0045318604, 0.020217896, 0.064941406, 0.02128601, -0.008674622, 0.03253174, -0.011566162, 0.023483276, -0.0022029877, 0.0004029274, 0.040283203, -0.05545044, 0.05215454, 0.029281616, -0.014656067, 0.036010742, 0.01499176, -0.016204834, 0.045837402, 0.016555786, 0.041412354, 0.018493652, 0.070251465, 0.013374329, 0.039154053, 0.057159424, -0.042999268, 0.010101318, -0.009666443, -0.037261963, -0.023956299, 0.015594482, -0.024002075, 0.03387451, 0.06097412, 0.008796692, 0.0025253296, 0.0020103455, 0.081848145, -0.007858276, -0.07293701, -0.00995636, -0.04147339, -0.011642456, 0.057769775, -0.044525146, -0.008338928, 0.032958984, 0.000975132, 0.012268066, 0.006767273, 0.006187439, 0.00045633316, 0.013549805, 0.008476257, 0.026062012, 0.0029296875, -0.028869629, 0.024612427, 0.031951904, -0.036895752, -0.0010929108, -0.033721924, -0.07299805, -0.10571289, 0.069885254, 0.013282776, -0.0993042, -0.056274414, -0.0006766319, -0.018615723, -0.009475708, -0.009216309, -0.01486969, -0.01209259, 0.0014448166, -0.0046844482, 0.0007634163, -0.03253174, 0.012886047, -0.01737976, 0.012359619, 0.005924225, -0.017486572, -0.016738892, 0.009994507, 0.034057617, 0.09124756, 0.030014038, 0.025787354, -0.04095459, 0.008514404, 0.019577026, 0.0030651093, -0.0015306473, -0.011871338, -0.022766113, -0.012367249, -0.0107803345, -0.06008911, 0.005432129, -0.026489258, 0.004890442, -0.016067505, -0.017166138, 0.035705566, -0.12878418, 0.028671265, -0.06573486, 0.041046143, -0.016799927, -0.04119873, 0.014785767, -0.042388916, -0.031219482, -0.042785645, 0.009529114, 0.026000977, 0.01411438, -0.056640625, -0.021331787, 0.05795288, -0.07733154, 0.03756714, 0.015792847, -0.030227661, -0.025985718, 0.006767273, 0.019821167, -0.014205933, 0.06640625, 0.009651184, 0.011077881, -0.010261536, 0.00187397, 0.008323669, 0.024276733, -0.009933472, -0.031433105, 0.0006456375, -0.013618469, -0.09710693, -0.006252289, 0.014602661, -0.0045280457, 0.024551392, -0.026321411, -0.014823914, -0.08154297, -0.015525818, -0.050231934, -0.008155823, 0.00548172, 0.028137207, 0.025314331, 0.00034332275, 0.08001709, 0.031555176, 0.053344727, 0.03338623, -0.024353027, -0.0037956238, -0.02255249, -0.013259888, 0.027374268, -0.015670776, -0.016021729, -0.0060424805, 0.015472412, 0.022720337, -0.040252686, -0.01725769, 0.07720947, -0.0209198, -0.014877319, 0.0021915436, 0.0067749023, 0.017196655, 0.002248764, 0.008850098, -0.024261475, -0.000477314, -0.008773804, -0.048553467, 0.09210205, 0.03173828, -0.011993408, 0.043273926, 0.06347656, 0.008102417, 0.030776978, 0.021514893, -0.00038075447, 0.021255493, 0.01473999, -0.0033359528, -0.0112838745, 0.011566162, -0.06329346, 0.016998291, -0.0016355515, -0.023605347, 0.026107788, 0.027359009, -0.025772095, -0.03149414, -0.008087158, 0.029006958, -0.010047913, 0.028305054, -0.015716553, -0.014289856, -0.012496948, 0.015625, 0.0154953, -0.013618469, -0.022857666, 0.02810669, 0.030807495, -0.028793335, -0.015625, -0.024337769, -0.0018281937, 0.021820068, 0.018661499, -0.00085926056, -0.008773804, 0.0038986206, 0.032714844, -0.045898438, -0.012481689, 0.024963379, 0.026260376, 0.0032138824, -0.019073486, 0.0054893494, -0.0021400452, 0.0032234192, 0.021820068, -0.0018539429, -0.04284668, -0.012168884, 0.019882202, 0.029144287, -0.034301758, -0.0077705383, -0.035827637, 0.0023593903, -0.0010414124, -0.017990112, -0.042144775, -0.0048217773, 0.026672363, -0.051727295, -0.022705078, -0.025802612, 0.01260376, -0.010360718, -0.005279541, -0.018844604, 0.0132369995, -0.027191162, -0.008148193, -0.044891357, 0.029266357, -0.07354736, 0.01423645, 0.02130127, 0.012023926, -0.03579712, 0.008934021, -0.022232056, 0.026809692, -0.007865906, -0.046722412, -0.012519836, -0.026779175, 0.006088257, 0.0038051605, 0.0067367554, 0.017440796, 0.023834229, 0.03982544, -0.0064926147, 0.041412354, -0.057159424, 0.033477783, 0.01537323, -0.024398804, -0.046203613, -0.017028809, 0.034240723, 0.011436462, 0.002374649, 0.028167725, 0.032562256, 0.016296387, -0.019638062, -0.13500977, -0.027267456, -0.0073509216, -0.012229919, 0.006416321, 0.002122879, -0.02192688, 0.052490234, 0.017990112, -0.00869751, 0.019439697, 0.004585266, 0.007499695, -0.021392822, 0.018829346, -0.029922485, 0.007030487, -0.020843506, -0.020629883, -0.058502197, 0.025177002, 0.038970947, 0.007106781, 0.014785767, -0.01360321, -0.0041999817, -0.021759033, -0.06378174, -0.04360962, 0.07507324, 0.008354187, -0.037902832, 0.012931824, 0.009971619, -0.00472641, -0.013092041, -0.023925781, -0.006614685, 0.03237915, -0.006866455, -0.03540039, -0.04071045, 0.00793457, 0.014350891, 0.0072517395, -0.05593872, -0.0010766983, -0.0002670288, -0.007396698, -0.0072288513, -0.012077332, -0.018478394, 0.017715454, -0.059387207, 0.0060806274, -0.027282715, 0.027572632, 0.020339966, 0.039154053, -0.016220093, 0.03201294, 0.017044067, -0.0124435425, -0.04626465, 0.022476196, 0.014945984, -0.03881836, 0.025772095, 0.012870789, -0.012229919, 0.023925781, -0.0062713623, 0.013076782, -0.0017385483, -0.050872803, -0.01600647, 0.003189087, 0.0049438477, -0.039031982, 0.07714844, 0.0036563873, -0.01247406, -0.048980713, 0.025054932, -0.018585205, -0.016448975, -0.0013923645, -0.015380859, 0.023086548, -0.057739258, 0.00040078163, 0.022232056, -0.005168915, -0.033843994, -0.010749817, 0.009857178, -0.044036865, -0.0057868958, 0.026565552, -0.009689331, 0.06573486, -0.0082473755, -0.040893555, 0.035583496, 0.04348755, -0.04486084, 0.028869629, 0.011627197, 0.002111435, -0.043273926, -0.019699097, 0.019058228, 0.025146484, 0.00034046173, -0.019454956, 0.0022907257, 0.020370483, -0.04248047, -0.02571106, -0.011756897, -0.0006747246, -0.024902344, 0.05319214, -0.026184082, -0.018539429, 0.00020253658, -0.011100769, -0.004764557, 0.0032157898, -0.045318604, 0.0041923523, -0.0074005127, 0.0010251999, -0.0116119385, -0.0067367554, 0.041625977, -0.0362854, -0.03579712, -0.030670166, 0.033233643, 0.015808105, 0.008911133, 0.04776001, 0.044891357, -0.0010604858, 0.04510498, 0.00049877167, -0.027709961, 0.039154053, 0.011878967, -0.07824707, -0.025222778, -0.006580353, 0.005126953, -0.025115967, -0.03375244, -0.0013952255, 0.050323486, 0.039245605, 0.0066719055, -0.05014038, -0.03515625, 0.005470276, -0.012489319, 0.0041885376, -0.035736084, -0.010002136, -0.029281616, 0.00059461594, -0.043670654, -0.059265137, 0.040802002, 0.009498596, 0.012954712, 0.018508911, 0.0043525696, -0.003314972, -0.024124146, 0.019714355, 0.010169983, -0.0047798157, 0.008110046, 0.004020691, -0.0413208, 0.047088623, -0.03086853, 0.011756897, -0.035491943, 0.08526611, -0.033935547, 0.05441284, -0.08325195, -0.08618164, 0.011184692, 0.054595947, -0.009460449, -0.011207581, 0.011421204, -0.01033783, -0.035217285, -0.02230835, -0.033081055, -0.03277588, 0.020065308, -0.07080078, -0.043029785, -0.05154419, -0.05126953, 0.035125732, -0.070129395, 0.017150879, -0.040985107, 0.026763916, -0.014122009, -0.026992798, 0.026626587, -0.019927979, 0.06072998, -0.025268555, -0.003118515, 0.00969696, -0.009277344, -0.036712646, 0.012954712, 0.026763916, 0.010665894, 0.008850098, -0.021270752, 0.01776123, -0.017410278, -0.046447754, 0.02658081, -0.022216797, -0.010818481, -0.0028686523, -0.022155762, -0.0024356842, -0.015098572, 0.025863647, 0.019760132, 0.012458801, 0.013710022, 0.036895752, 0.0077819824, -0.010948181, -0.026306152, -0.008201599, -0.0119018555, -0.05227661, -0.009094238, 0.025848389, -0.023925781, 0.09124756, 0.007259369, 0.02532959, 0.076293945, -0.023239136, -0.0149002075, 0.010612488, 0.020065308, -0.019226074, -0.0859375, -0.03643799, 0.03488159, -0.003929138, 0.0546875, -0.017944336, 0.0135269165, -0.027114868, -0.0029067993, 0.010375977, -0.0178833, -0.007457733, 0.012275696, -0.021591187, -0.08569336, -0.0259552, -0.015930176, -0.026794434, -0.008422852, 0.0769043, -0.0095825195, 0.01637268, 0.015235901, 0.01449585, 0.05706787, 0.013435364, 0.012573242, -0.026367188, 0.004776001, -0.006626129, -0.029296875, -0.020996094, -0.02267456, -0.0008883476, 0.010177612, 0.0033435822, -0.01953125, -0.014633179, 0.00096940994, 0.024719238, -0.019378662, -0.0037975311, 0.013076782, -0.031555176, 0.00014555454, -0.0052337646, -0.027359009, -0.04147339, -0.061676025, -0.019165039, -0.050842285, -0.06719971, 0.06463623, -0.02053833, -0.00484848, -0.007888794, 0.0079574585, -0.0079956055, -0.029052734, -0.005596161, 0.012428284, 0.038757324, -0.009559631, 0.026535034, 0.019241333, -0.05178833, -0.040802002, 0.009490967, 0.01171875, 0.007675171, -0.028182983, 0.0018157959, -0.022583008, 0.010215759, 0.08630371, 0.085632324, 0.039642334, 0.024017334, -0.005268097, -0.03262329, 0.00055265427, 0.03475952, -0.0026168823, -0.024536133, -0.05206299, 0.025817871, -0.005924225, 0.02407837, 0.009231567, 0.034301758, -0.004283905, 0.028015137, -0.0053520203, -0.051452637, 0.013137817, -0.005443573, 0.035064697, 0.031707764, -0.01914978, -0.013122559, -0.0115737915, -0.015304565, 0.02458191, 0.004306793, 0.0059928894, -0.022842407, -0.019973755, -0.029663086, -0.011787415, 0.00894165, 0.008491516, -0.05734253, -0.012039185, 0.0317688, 0.0032463074, -0.026138306, 0.032714844, 0.062469482, 0.0007648468, -0.025421143, 0.015045166, -0.033233643, -0.01864624, -0.029876709, -0.028335571, -0.02116394, -0.00017035007, 0.017333984, -0.026794434, -0.03149414, -0.029510498, 0.024429321, -0.029418945, -0.041107178, -0.023452759, -0.04360962, 0.035247803, 0.020950317, 0.018875122, -0.028823853, 0.015434265, -0.0023517609, -0.04397583, 0.0056533813, 0.022064209, -0.011375427, -0.026184082, 0.020736694, 0.023101807, 0.070251465, 0.009590149, -0.05682373, -0.047576904, 0.042938232, 0.0034542084, -0.022583008, 0.0066566467, -0.0030403137, 0.00050258636, 0.052520752, -0.033172607, -0.023101807, 0.0023880005, 0.07086182, 0.004009247, 0.0051002502]}, "B0179IK62C": {"id": "B0179IK62C", "original": "Brand: Broil King\nName: Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nMake the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results\nDurable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready\nDo more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb\nMake your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space\n", "metadata": {"Name": "Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l", "Brand": "Broil King", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nMake the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results\nDurable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready\nDo more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb\nMake your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.006313324, 0.009162903, -0.067993164, -0.03543091, 0.01033783, -0.01474762, -0.025741577, 0.027801514, -0.017868042, 0.013298035, 0.018676758, 0.019500732, -0.0040740967, -0.049560547, 0.027389526, -0.0034179688, 0.03756714, -0.009208679, 0.02670288, 0.0026512146, 0.015113831, 0.027572632, -0.00071430206, 0.07116699, 0.048797607, 0.017028809, -0.021499634, 0.009101868, 0.028671265, 0.028152466, 0.02507019, -0.04510498, 0.061950684, -0.008155823, -0.05203247, -0.041900635, -0.04046631, -0.0052604675, -0.055603027, 0.014694214, 0.013618469, -0.008155823, -0.047088623, -0.015975952, -0.036590576, -0.019546509, -0.018218994, -0.02760315, 0.046051025, 0.010635376, 0.0020332336, 0.0042800903, 0.00137043, 0.018081665, -0.038238525, -0.018035889, -0.00062417984, 0.028442383, 0.011131287, -0.050964355, -0.019683838, 0.018966675, 0.03805542, 0.05630493, -0.063964844, 0.014602661, 0.07537842, -0.030075073, 0.00060653687, -0.07965088, -0.005268097, 0.052246094, 0.012161255, -0.048187256, 0.023483276, 0.0045928955, 0.0070495605, 0.005836487, -0.0043678284, -0.0069732666, -0.018081665, -0.009559631, 0.030471802, -0.029525757, -0.0031967163, -0.018539429, -0.018798828, 0.0004143715, -0.003200531, -0.009155273, -0.020889282, 0.032165527, 0.0035381317, 0.04574585, -0.04837036, 0.04168701, -0.036224365, -0.037353516, 0.056610107, 0.027328491, 0.060302734, -0.050109863, 0.057525635, -0.020965576, 0.0011901855, 0.099243164, 0.00019454956, 0.06274414, 0.0026454926, -0.014892578, 0.028747559, -0.09814453, 0.002368927, -0.025634766, 0.005542755, 0.029891968, 0.004951477, -0.021896362, -0.0045051575, -0.07196045, -0.01751709, -0.0037269592, 0.0019264221, 0.025741577, 0.029968262, 0.023208618, -0.0127334595, 0.00085544586, -0.01209259, 0.06817627, -0.007980347, -0.038024902, 0.048553467, 0.07299805, 0.011505127, -0.027786255, 0.0068511963, -0.017700195, 0.03237915, 0.015274048, -0.037628174, -0.02508545, 0.041107178, 0.022598267, 0.014289856, 0.02116394, 0.009101868, 0.009109497, 0.0026512146, -0.031158447, 0.009292603, -0.012931824, 0.022781372, 0.037017822, -0.05029297, -0.0035972595, -0.020477295, -0.019805908, 0.015960693, -0.029724121, -0.040740967, -0.030349731, 0.02229309, -0.015838623, -0.028869629, 0.05508423, -0.015411377, 0.00774765, 0.018234253, 0.024230957, -0.004962921, 0.009300232, 0.008796692, -0.013793945, -0.011360168, -0.013290405, 0.016174316, 0.06048584, 0.05041504, -0.10498047, -0.06677246, -0.060546875, 0.12817383, -0.07220459, -0.0053863525, -0.015670776, 0.055236816, 0.040039062, -0.0062561035, 0.038757324, 0.019699097, 0.005947113, -0.061279297, 0.011894226, 0.033447266, -0.0029296875, -0.0004017353, -0.029678345, 0.028060913, -0.013633728, -0.0037593842, 0.006679535, 0.020950317, -0.011009216, -0.004306793, -0.005607605, 0.00068998337, 0.019744873, 0.013038635, 0.025558472, -0.011207581, -0.019561768, 0.0109939575, -0.023208618, -0.013511658, 0.008277893, -0.0055274963, 0.016967773, 0.023269653, -0.005344391, 0.044921875, 0.014572144, 0.046325684, 0.036071777, 0.011619568, 0.021438599, -0.04043579, 0.010597229, 0.023544312, -0.0032138824, 0.015960693, 0.03189087, 0.06463623, 0.059906006, -0.02470398, 0.025665283, 0.036590576, 0.06500244, -0.039398193, -0.015220642, 0.017364502, -0.005207062, -0.041290283, -0.026489258, -0.017105103, -0.021957397, 0.002281189, -0.021240234, -0.025878906, -0.009559631, 0.064208984, 0.009155273, 0.024139404, -0.0003902912, 0.017211914, 0.04208374, 0.010139465, 0.04095459, -0.06439209, 0.024459839, -0.0146484375, 0.01889038, -0.010864258, -0.0025234222, 0.0357666, -0.025421143, 0.005710602, -0.0065612793, -0.026473999, 0.00043177605, 0.029083252, -0.009490967, 0.0054969788, 0.019622803, -0.0030670166, -0.018829346, -0.0004348755, 0.0025234222, -0.0132369995, -0.005897522, 0.011161804, 0.020355225, 0.0032176971, -0.01675415, 0.028320312, 0.018157959, 0.0047569275, -0.021560669, -0.028900146, -0.009262085, 0.01159668, -0.0009822845, -0.023330688, -0.011299133, 0.0056381226, -0.017120361, 0.03036499, 0.024475098, 0.011421204, -0.029403687, -0.00079107285, 0.012321472, -0.037597656, -0.000934124, 0.0020828247, -0.026412964, -0.014785767, 0.022201538, -0.0065841675, -0.027618408, -0.017623901, 0.03778076, 0.03414917, -0.027404785, 0.058685303, 0.0075798035, 0.021530151, 0.03225708, 0.016113281, -0.0010852814, -0.035308838, 0.024520874, -0.06402588, 0.005393982, 0.016815186, 0.02708435, -0.01826477, -0.013168335, -0.054870605, 0.0149002075, -0.018417358, -0.023803711, -0.013671875, 0.055908203, -0.011978149, 0.005683899, -0.0046157837, 0.012313843, -0.020233154, -0.040771484, -0.001490593, 0.00042200089, -0.01826477, -0.034698486, -0.042236328, 9.512901e-05, 0.020889282, 0.005870819, 0.04043579, -0.0029678345, 0.007774353, -0.009613037, 0.02029419, -0.015335083, 0.009384155, -0.0062713623, -0.04269409, -0.051483154, -0.032470703, -0.07684326, -0.008850098, -0.01725769, -0.04458618, -0.008529663, 0.044708252, -0.01725769, -0.028701782, -0.0007891655, -0.0072669983, 0.0005259514, 0.05517578, -0.009307861, -0.07537842, -0.021270752, -0.039154053, -0.010887146, 0.05117798, -0.03012085, -0.03338623, 0.017150879, -0.014259338, 0.0019187927, -0.011505127, 0.011009216, 0.022201538, 0.021148682, 0.020355225, 0.018112183, 0.016860962, -0.009277344, -0.0077705383, 0.01676941, -0.027191162, 0.016296387, -0.011978149, -0.0209198, 0.026550293, 0.004676819, -0.06488037, -0.000934124, -0.057495117, -0.013771057, -0.02470398, -0.02406311, -0.0064888, -0.028671265, -0.033325195, -0.04727173, 0.0003733635, -0.0016517639, -0.010299683, 0.035003662, -0.010063171, 0.009536743, 0.0048561096, -0.033569336, -0.02279663, -0.0064964294, -0.027297974, -8.046627e-06, 0.019363403, -0.0043945312, 0.03918457, 0.036987305, -0.017120361, 0.024780273, -0.033996582, 0.002916336, -0.0031528473, 0.036865234, -0.017807007, 0.007843018, 0.002193451, -0.006729126, -0.046875, 0.005771637, -0.018295288, -0.0052948, 0.005138397, -0.04345703, -0.06390381, -0.007637024, 0.040740967, 0.0021152496, -0.00623703, -0.0079422, 0.0340271, -0.044036865, 0.029281616, -0.0692749, 0.027160645, -0.0016555786, 0.079589844, 0.0037059784, 0.008766174, 0.07720947, 0.05090332, 0.056427002, 0.02330017, -0.04156494, -0.035339355, -0.050079346, 0.024459839, 0.025802612, 0.019760132, -0.042144775, 0.016738892, 0.018005371, -0.015945435, 0.025497437, 0.009101868, 0.026245117, 0.019348145, -0.0028858185, -0.009033203, -0.015991211, 0.019134521, 0.010757446, -0.016235352, -0.025466919, -0.027282715, 0.0020866394, -0.03366089, 0.05404663, 0.059448242, -0.01953125, 0.0579834, 0.054351807, 0.01449585, -0.0110321045, -0.0026664734, -0.025314331, -0.0011577606, 0.017654419, -0.022094727, 0.013961792, 0.021957397, -0.022354126, 0.0118255615, -0.0069122314, -0.049713135, 0.01234436, 0.008735657, -0.021453857, 0.006263733, 0.015945435, 0.007987976, -0.0048828125, -0.010551453, -0.0016050339, -0.0016851425, -0.025604248, 0.005470276, 0.027954102, -0.030181885, -0.023513794, 0.010810852, 0.013290405, -0.031829834, 0.0087890625, 0.007358551, 0.042053223, -0.0287323, 0.053588867, -0.0013380051, 0.025894165, -0.062072754, 0.010261536, -0.022750854, 0.03677368, 0.009468079, -0.01473999, 0.06689453, -0.008056641, 0.0022335052, 0.0049591064, -0.037902832, 0.040496826, -0.015426636, -0.06585693, -0.024719238, 0.0043563843, 0.03591919, -0.026687622, -0.008346558, -0.0038909912, 0.010025024, -0.022827148, -0.05606079, -0.058013916, 0.014427185, 0.059936523, -0.07366943, -0.034332275, 0.0053749084, -0.013282776, -0.015914917, 0.009918213, -0.023025513, -0.014373779, -0.015556335, 0.012809753, -0.061584473, 0.041625977, -0.058288574, -0.0022468567, 0.0287323, -0.0015716553, 0.042388916, -0.021713257, -0.012886047, -0.022705078, 0.12030029, -0.0071792603, 0.00459671, -0.049560547, -0.03475952, -0.031585693, 0.027648926, 0.037750244, -0.033447266, 0.03567505, -0.006034851, -0.06500244, -0.014060974, -0.02204895, 0.005882263, -0.025054932, -0.020370483, -0.004989624, 0.03765869, -0.017425537, 0.007396698, -0.0034637451, 0.010475159, 0.013763428, 0.023651123, -0.037628174, 0.009170532, 0.0018119812, 0.02178955, 0.019134521, -0.013908386, 0.014846802, -0.054901123, 0.064086914, 0.06915283, 0.004333496, -0.011360168, -0.00073480606, 0.041046143, 0.029922485, -0.024124146, -0.012176514, -0.013420105, -0.012458801, -0.05014038, 0.08905029, 0.070617676, -0.017730713, 0.021911621, 0.03869629, -0.0040359497, -0.027938843, -0.0102005005, -0.014251709, 0.0076675415, -0.04940796, -0.03756714, 0.033081055, -0.036102295, 0.024368286, -0.003030777, 0.01222229, 0.023086548, -0.023635864, 0.010520935, -0.01158905, -8.696318e-05, 0.029632568, 0.011062622, -0.008529663, -0.012634277, -0.01991272, 0.016540527, -0.008354187, -0.009681702, 0.00868988, -0.020462036, -0.02999878, 0.019836426, -0.0005311966, -0.0026779175, 0.019927979, 0.0012207031, 0.004310608, -0.03274536, 0.023071289, 0.010353088, 0.0020332336, -0.041412354, 0.018875122, -0.027694702, 0.022781372, 0.03756714, 0.0062294006, -0.038909912, 0.028381348, -0.034118652, 0.04360962, -0.009757996, -0.03564453, 0.018234253, -0.02458191, 0.021087646, -0.018432617, 0.029586792, -0.0024261475, 0.006702423, -0.0770874, -0.00831604, 0.0029029846, 0.003786087, 0.049041748, -0.04714966, 0.015319824, -0.010360718, 0.0075950623, -0.019729614, 0.006401062, -0.059753418, -0.0115737915, -0.016403198, 0.00076675415, 0.0045318604, -0.0073890686, 0.001832962, -0.027923584, -0.05078125, -0.020477295, 0.016326904, -0.0025424957, 0.02633667, -0.00819397, -0.01914978, -0.022094727, -0.004463196, -0.0072364807, 0.018005371, 0.020431519, 0.0030136108, -0.018829346, 0.027816772, -0.00749588, 0.007247925, -0.013381958, 0.042175293, -0.011695862, -0.018371582, 0.041259766, -0.054016113, 0.012054443, 0.013885498, -0.05215454, -0.02053833, 0.076416016, -0.062286377, 0.007003784, 0.0051231384, 0.024902344, -0.047424316, -0.008285522, 0.03225708, -0.043548584, -0.0026950836, -0.055908203, 0.04067993, -0.026550293, -0.029846191, 0.046417236, 0.039001465, 0.0015382767, 0.024108887, -0.020004272, -0.07299805, 0.015281677, 0.0134887695, -0.08886719, -0.0038490295, -0.04095459, 0.028900146, 0.0002105236, -0.032196045, -0.027511597, 0.031555176, -0.0054969788, -0.046844482, -0.01687622, -0.024246216, 0.017150879, -0.015701294, 0.0118255615, -0.010177612, -0.021240234, -0.037109375, -0.03845215, -0.08557129, -0.03616333, 0.025466919, 0.004283905, 0.01134491, 0.010437012, 0.0098724365, 0.055480957, -0.04055786, 0.004386902, -0.0010433197, 0.01928711, 0.003692627, 0.0005683899, -0.04144287, 0.049621582, -0.02748108, 0.0073165894, -0.023757935, 0.05078125, 0.01108551, 0.029922485, -0.016571045, -0.0021877289, -0.013000488, 0.020965576, 0.023849487, 0.00982666, 0.023757935, -0.021469116, -0.018051147, -0.00881958, -0.038635254, -0.032989502, -0.047424316, -0.015411377, -0.05203247, 0.024871826, -0.018753052, 0.041107178, -0.06008911, 0.049957275, -0.0011873245, -0.010398865, 0.007896423, -0.0050697327, 0.02218628, -0.012886047, -0.04055786, 0.010169983, 0.0107803345, -0.011505127, -0.0368042, -0.00415802, 0.032989502, 0.03765869, 0.03692627, -0.015136719, -0.060577393, 0.028427124, 0.019958496, -0.060638428, 0.0029735565, -0.020614624, -0.014183044, -0.019058228, -0.018417358, -0.0039863586, -0.018173218, 0.03665161, 0.020339966, 0.054138184, -0.018676758, 0.029266357, -0.010238647, 0.00013613701, -0.015625, -0.0070877075, -0.074279785, 0.009178162, 0.053009033, 0.02456665, -0.011451721, 0.04397583, 0.019226074, -0.00919342, 0.029663086, -0.024002075, 0.019424438, -0.008605957, 0.023345947, -0.015701294, -0.017501831, 0.0035305023, 0.015396118, -0.0015506744, -0.010383606, -0.04562378, 0.039916992, 0.0019893646, -0.0037384033, 0.036956787, -0.037719727, 0.023040771, 0.010314941, 0.045684814, -0.0703125, -0.0035572052, 0.011413574, -0.006084442, 0.025268555, 0.0423584, 0.035858154, 0.05078125, 0.0055236816, 0.025848389, 0.04977417, -0.0181427, 0.037750244, -0.009147644, 0.00048470497, 0.061279297, -0.0134887695, 0.022277832, 0.002357483, -0.023025513, 0.010498047, 0.0009274483, 0.024032593, 0.043426514, 0.031280518, -0.026565552, -0.00166893, -0.04776001, 0.011581421, 0.011665344, 0.073791504, -0.06072998, -0.010398865, -0.014564514, -0.048065186, -0.03640747, -0.009231567, -0.063964844, 0.019210815, -0.0019817352, -0.02772522, -0.003967285, 0.0107421875, -0.0077781677, -0.018325806, -0.005542755, 0.0231781, 0.024612427, 0.0064353943, 0.043304443, -0.04534912, -0.071777344, -0.020385742, 0.06976318, -0.10241699, -0.072387695, -0.02027893, 0.0044898987, 0.002445221, -0.0029239655, 0.026870728, 0.046783447, 0.027511597, -5.543232e-06, -0.039764404, -0.029052734, -0.02166748, 0.028778076, -0.02810669, -0.02229309, -0.026687622, 0.026916504, 0.020202637, 0.011856079, 0.02355957, 0.01361084, -0.07965088, 0.009986877, -0.016448975, 0.027420044, -0.0362854, 0.025619507, -0.029067993, 0.008033752, -0.037231445, -0.020446777, -0.005290985, 0.026168823, 0.04937744, -0.0023040771, 0.026245117, -0.021850586, -0.105285645, -0.014427185, -0.025039673, 0.027755737, 0.043426514, -0.015235901, -0.015899658, 0.002122879, -0.034057617, 0.006576538, 0.007335663, -0.009429932, 0.03475952, 0.0015869141, -0.004180908, 0.0020523071, -0.041259766, -0.0065994263, 0.00022959709, -0.07196045, 0.054534912, 0.018630981, -0.019195557, -0.00051498413, -0.04156494, -0.0019311905, 0.0007481575, -0.058410645, 0.0074386597, -0.041290283, 0.0064964294, 0.039764404, -0.005355835, -0.028152466, -0.005947113, -0.029647827, -0.039733887, 0.006088257, 0.028793335, 0.01423645, -0.04724121, 0.052093506, 0.02456665, 0.058258057, -0.016998291, -0.068481445, -0.03302002, 0.0107803345, 0.0058670044, 0.009765625, 0.05480957, -0.035858154, -0.005962372, 0.037384033, -0.039367676, -0.0680542, 0.057128906, -0.0038394928, 0.032165527, 0.038726807]}, "B08KSLN5VC": {"id": "B08KSLN5VC", "original": "Brand: GasOne\nName: GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag\nDescription: \nFeatures: EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle\nDIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck\nHIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage\nCONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation\nHIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease\n", "metadata": {"Name": "GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag", "Brand": "GasOne", "Description": "", "Features": "EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle\nDIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck\nHIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage\nCONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation\nHIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.024414062, -0.008415222, -0.007411957, 0.0056037903, -0.027923584, 0.017791748, -0.044830322, -0.038879395, -0.013519287, -0.0060424805, -0.0055732727, 0.037078857, -0.039215088, -0.038330078, 0.03338623, -0.033081055, -0.016830444, 0.040740967, -0.003446579, -0.025634766, 0.013137817, -0.041870117, -0.053985596, 0.07519531, 0.0034122467, 0.035308838, -0.05319214, 0.008987427, -0.003967285, -0.010536194, -0.005970001, 0.026321411, 0.0029640198, -0.00027608871, -0.01272583, -0.066101074, -0.018249512, -0.0062332153, -0.04031372, 0.020080566, 0.0046310425, 0.0027389526, 0.004688263, 0.0152282715, -0.0259552, 0.01965332, -0.012458801, -0.017150879, 0.00749588, 0.025344849, -0.018173218, -0.0006942749, -0.023208618, -0.020050049, 0.017059326, 0.018096924, 0.039367676, -0.036865234, 0.0066490173, -0.0345459, -0.03253174, 0.0018024445, 0.039245605, 0.015777588, -0.058776855, 0.032470703, 0.022003174, -0.028808594, 0.024353027, -0.048919678, -0.023895264, 0.022094727, -0.006214142, -0.001701355, -0.04248047, -0.013847351, 0.02470398, -0.04260254, 0.011177063, 0.0031585693, -0.01398468, 0.005970001, 0.023864746, -0.04144287, 0.0016450882, -0.024963379, -0.017364502, -0.012878418, -0.0030136108, -0.023147583, -0.014694214, -0.009727478, -0.03564453, 0.001458168, -0.02078247, -0.013626099, -0.024673462, -0.06585693, 0.029006958, 0.026321411, 0.016479492, -0.050323486, 0.06384277, 0.005973816, -0.023803711, 0.04348755, 0.037322998, 0.04940796, 0.0070610046, 0.006439209, -0.0025978088, -0.005794525, -0.051605225, -0.02178955, 4.8577785e-05, 0.0680542, -0.037902832, 0.00844574, 0.006652832, 0.022781372, -0.005771637, -0.008369446, 0.024307251, -0.020095825, 0.031280518, 0.0033359528, -0.031677246, 0.0012264252, -0.023498535, 0.029754639, -0.041168213, 0.017913818, 0.03475952, 0.027450562, -0.008117676, -0.025512695, -0.0064926147, -0.016143799, -0.0035762787, -0.03286743, -0.0007867813, 0.0012292862, 0.020721436, 0.005680084, 0.04626465, 0.015098572, 0.046722412, 0.008857727, -0.026428223, -0.028289795, 0.050048828, 0.0055503845, 0.024734497, -0.0041275024, 0.006099701, -0.028808594, 0.015029907, -0.03463745, 0.01436615, -0.037963867, -0.046325684, 0.007926941, 0.02897644, 0.016906738, 0.008934021, -0.0010662079, 0.032989502, 0.0028438568, 0.009437561, 0.048034668, -0.013824463, 0.07556152, -0.03869629, -0.008964539, 0.0040512085, -0.05581665, -0.027786255, 0.05105591, 0.052764893, -0.062805176, -0.022628784, -0.03781128, 0.107177734, -0.010284424, -0.000849247, -0.022125244, -0.0003631115, -0.072387695, 0.030731201, -0.02079773, 0.041809082, 0.032684326, -0.011695862, -0.04208374, 0.015579224, 0.049591064, -0.049194336, 0.015289307, -0.008728027, -0.021697998, -0.008384705, -0.010131836, 0.020339966, 0.0027675629, -0.033813477, -0.004802704, -0.024246216, 0.024261475, 0.023620605, -0.0047416687, -0.014175415, -0.033233643, 0.017318726, -0.040893555, -0.038848877, 0.03933716, -0.023162842, 0.06100464, 0.018051147, 0.03930664, 0.049621582, -0.05758667, 0.06976318, 0.018432617, 0.038482666, -0.022323608, -0.002035141, -0.013114929, 0.027297974, 0.015258789, -0.038604736, 0.014099121, 0.03555298, 0.048461914, -0.03152466, 0.012779236, 0.037719727, 0.040649414, -0.008407593, -0.010070801, 0.0037288666, -0.01979065, -0.024398804, 0.031433105, -0.019180298, 0.019226074, 0.033599854, 0.021743774, -0.030197144, 0.005027771, 0.016723633, 0.017089844, 0.009719849, 0.031188965, -0.017471313, 0.02571106, -0.04309082, 0.015457153, -0.04916382, 0.04937744, -0.039733887, 0.06213379, 0.08520508, 0.004081726, 0.039520264, -0.009346008, 0.035736084, 0.01663208, -0.023269653, 0.024017334, 0.013259888, -0.014152527, -0.011543274, 0.025497437, 0.07330322, -0.037109375, -0.03869629, 0.0010080338, -0.027359009, -0.0005378723, 0.0075950623, -0.010475159, 0.020721436, 0.004764557, 0.05368042, -0.04949951, 0.022140503, -0.0013456345, -0.036590576, -0.030441284, 0.015914917, -0.014526367, -0.025009155, -0.013702393, -0.015823364, -0.03515625, 0.091430664, 0.013916016, 0.014694214, -0.04067993, -0.010498047, 0.01424408, -0.06323242, 0.0017776489, -0.011856079, -0.008918762, -0.0013637543, 0.021911621, 0.0056419373, -0.062194824, 0.01725769, 0.0034313202, 0.0368042, 0.019699097, 0.011894226, -0.006401062, -0.008255005, 0.044158936, 0.017211914, 0.042510986, 0.016586304, -0.049987793, -0.024398804, 0.0181427, -0.025314331, -0.012069702, 0.036102295, -0.0011701584, -0.02178955, 0.016403198, 0.028457642, -0.010284424, 0.002544403, -0.023513794, -0.0054130554, -0.0038166046, 0.0007967949, 0.006248474, 0.00058221817, 0.013008118, 0.017089844, 0.01689148, 0.0027236938, -0.04675293, -0.012863159, -0.06317139, -0.025466919, 0.004837036, -0.030090332, -0.036895752, 0.05014038, -0.014816284, 0.03387451, 0.004295349, 0.05606079, -0.06915283, -0.07977295, 0.011909485, -0.028198242, -0.07128906, -0.04055786, 0.00020432472, -0.06213379, -0.06072998, 0.058685303, 0.011421204, -0.08203125, -0.0025043488, -0.006439209, 0.026306152, 0.022842407, 0.039764404, -0.07763672, -0.023239136, -0.043884277, -0.0019254684, 0.036468506, -0.008956909, 0.06878662, 0.045013428, 0.040100098, 0.05496216, 0.004005432, 0.03616333, -0.00440979, 0.038146973, 0.031555176, -0.0027256012, -0.009407043, -0.020065308, -0.012512207, 0.0043182373, -0.009887695, -0.0140686035, 0.051635742, 0.011367798, -0.041107178, 0.01146698, -0.06976318, -0.0027561188, -0.026657104, 0.007411957, -0.0014476776, -0.028533936, 0.01360321, -0.05734253, 0.01272583, -0.037109375, 0.00932312, -0.0013618469, 0.0028915405, 0.017974854, -0.025222778, 0.022781372, -0.010917664, -0.031555176, 0.06378174, -0.008781433, -0.005619049, -0.02911377, 0.05621338, -0.082336426, 0.056274414, 0.030014038, -0.030334473, 0.014335632, -0.04800415, -0.013885498, 0.011657715, 0.025726318, -0.03778076, 0.015403748, -0.008987427, 0.00907135, -0.016616821, 0.018676758, 0.0059318542, -0.033721924, 0.052246094, -0.034820557, -0.046844482, -0.0066947937, -0.025436401, -0.011138916, -0.030807495, -0.011741638, 0.017852783, -0.0513916, 0.018508911, -0.028961182, 0.011940002, 0.013893127, 0.048217773, 0.007369995, -0.013908386, 0.0017995834, 0.00066947937, -0.0006632805, 0.018188477, 0.0034866333, -0.0151901245, 0.0047302246, -0.0020275116, -0.044891357, -0.021438599, -0.0025558472, 0.020431519, 0.0043144226, -0.007282257, -0.014419556, -0.025817871, 0.053894043, 0.0032348633, -0.018707275, 0.010284424, -0.018615723, 0.026245117, 0.025024414, 0.0033435822, -0.034057617, -0.035949707, -0.0037136078, -0.07513428, 0.057800293, 0.032409668, -0.021331787, 0.046447754, 0.05239868, -0.009422302, -0.011199951, -0.0053901672, -0.007835388, 0.0038490295, -0.002456665, -0.025970459, 0.000992775, 0.0116119385, 0.011688232, 0.027542114, 0.022018433, -0.042388916, 0.0026683807, -0.0206604, -0.0317688, -0.06088257, -5.9604645e-06, 0.019561768, -0.004840851, 0.01651001, -0.07470703, 0.008239746, -0.033325195, -0.017654419, -0.009017944, -0.03527832, -0.019882202, -0.028335571, -0.042541504, -0.014411926, 0.012130737, 0.0034656525, 0.019607544, -0.016174316, 0.016723633, 0.011192322, -0.020080566, -0.014259338, 0.009109497, -0.061828613, 0.008178711, 0.006866455, 0.045135498, -0.031341553, -0.05178833, 0.044830322, -0.029373169, -0.002576828, 0.045166016, -0.021911621, -0.10119629, 0.0004067421, 0.04385376, 0.014434814, -0.06109619, -0.0065689087, -0.009674072, -0.013702393, -0.005706787, -0.018127441, -0.008239746, -0.021377563, -0.010864258, -0.09100342, -0.048431396, -0.00969696, 0.024597168, -0.014678955, 0.025009155, -0.029067993, -0.03765869, -0.005405426, 0.024475098, -0.027832031, -0.0049438477, -0.0552063, 0.020095825, -0.011474609, -0.021652222, 0.0058135986, -0.01889038, -0.019882202, -0.01424408, 0.00029706955, -0.02734375, 0.0034065247, 0.0022277832, -0.017074585, -0.011688232, 0.025314331, 0.03744507, -0.016998291, 0.04776001, 0.006526947, -0.027908325, -0.053344727, -0.021499634, 0.02796936, 0.011474609, -0.039123535, -0.051239014, 0.040771484, -0.008583069, 0.015777588, -0.037506104, 0.021148682, 0.0049057007, 0.021057129, -0.07873535, -0.08691406, 0.0013608932, -0.030975342, 0.010002136, -0.014213562, -0.015853882, 0.016220093, 0.08227539, 0.031707764, -0.022659302, -0.009506226, 0.035339355, -0.012718201, 0.038208008, -0.06488037, -0.025466919, -0.04449463, 0.033996582, -0.06298828, 0.06298828, 0.04498291, 0.013717651, -0.0036735535, -0.0013227463, -0.021575928, -0.068725586, -0.00052928925, 0.02053833, -0.029129028, -0.03414917, -0.03086853, 0.006336212, -0.03970337, -0.007095337, -0.017730713, 0.008338928, 0.016479492, 0.00617218, -0.025299072, 0.0076026917, -0.012008667, -0.024673462, 0.0011777878, 0.03866577, 0.006164551, -0.02166748, 0.013381958, -0.00022780895, -0.0030345917, -0.009147644, 0.0010375977, 0.014755249, -0.029647827, 0.0033073425, -0.06512451, 0.032562256, 0.05819702, 0.017715454, -0.031433105, 0.020584106, -0.0034389496, -0.031585693, -0.07324219, -0.027572632, 0.021209717, -0.04067993, 0.036895752, -0.00018370152, -0.009689331, 0.011672974, -0.022247314, 0.029418945, -0.018798828, 0.005355835, 0.025390625, 0.017532349, -0.000869751, -0.057373047, 0.062561035, -0.015281677, -0.03387451, -0.036193848, 0.011108398, 0.0446167, 0.029083252, 0.044433594, -0.059570312, 0.07281494, -0.010635376, -0.048919678, 0.025619507, 0.033416748, -0.011360168, -0.004840851, 0.020141602, -0.020233154, -0.03881836, 0.025756836, -0.0051345825, -0.04876709, -0.015335083, -0.047790527, -0.026367188, 0.00016713142, 0.036102295, 0.0066833496, -0.0045204163, 0.0059928894, -0.049194336, -0.0010738373, -0.020019531, 0.010314941, -0.016708374, 0.013023376, 0.02545166, 0.012809753, -0.040039062, -0.04788208, -0.028244019, 0.020202637, -0.0058288574, 0.031402588, 0.0076789856, -0.008018494, -0.02003479, 0.008514404, 0.0038928986, -0.015182495, -0.037200928, 0.04498291, 0.029663086, 0.04284668, -0.08050537, 0.0118255615, 0.0892334, -0.07293701, -0.06427002, 0.035858154, 0.06793213, -0.024383545, 0.043640137, 0.05407715, -0.023834229, 0.0289917, 0.03253174, 0.03869629, 0.006000519, 0.010215759, 0.043426514, -0.071899414, -0.04940796, -0.0135269165, 0.0006785393, -0.06951904, -0.002632141, 0.009483337, 0.029693604, 0.00422287, 0.034820557, -0.011528015, -0.013679504, -0.022384644, -0.014038086, 0.00023543835, -0.017822266, 0.017211914, -0.053741455, -0.008232117, -0.041259766, -0.037322998, 0.011154175, 0.021575928, 0.020217896, -0.013267517, 0.009735107, 0.0121154785, -0.0057029724, 0.05291748, -0.015098572, -0.017288208, -0.0071792603, 0.02897644, 0.038208008, -0.0038490295, -0.014854431, -0.015472412, -0.06665039, 0.011169434, 0.05758667, 0.0579834, -0.03488159, 0.07171631, 0.013694763, 0.03314209, -0.004688263, 0.033294678, 0.035491943, 0.019256592, -0.022369385, -0.008468628, 0.030059814, -0.038513184, 0.02545166, -0.016616821, -0.032714844, -0.028686523, -0.029937744, -0.0104522705, -0.013999939, 0.023742676, -0.026351929, 0.0020122528, -0.007797241, -0.060058594, 0.019577026, 0.0031490326, 0.07476807, -0.022521973, 0.027770996, 0.036254883, -0.031036377, -0.06021118, 0.0033111572, 0.031341553, -0.002532959, 0.01876831, -0.020965576, 0.042877197, 0.054718018, -0.082092285, -0.028701782, -0.023727417, 0.013320923, -0.026473999, -0.022445679, 0.0033473969, 0.025787354, -0.02166748, -0.014541626, 0.05230713, 0.0046691895, -0.022735596, 0.0149002075, 0.0079574585, -0.019714355, -0.024398804, 0.028823853, -0.0029392242, -0.009597778, -0.0057411194, 0.004760742, 0.021392822, 0.026641846, -0.04272461, -0.02418518, 0.014228821, 0.008491516, -0.009269714, -0.05404663, -0.053466797, -0.0345459, 0.035705566, 0.018432617, -0.0335083, -0.06640625, -0.017684937, 0.029647827, -0.023834229, -0.046417236, 0.035583496, -0.07318115, 0.030059814, 0.02104187, 0.035003662, 0.020507812, -0.01890564, -0.017974854, 0.009941101, 0.0037155151, -0.0065727234, 0.0039787292, -0.0062217712, -0.019714355, 0.016586304, 0.034973145, -0.05050659, 0.027786255, 0.011833191, -0.0024585724, 0.038513184, 0.003479004, -0.018554688, -0.008758545, -0.029708862, -0.016159058, -0.006401062, -0.040924072, 0.011802673, -0.009666443, 0.03225708, -0.014808655, -0.0020446777, -0.04034424, -0.008903503, 0.050476074, -0.01914978, 0.002248764, -0.014862061, -0.029556274, -0.019760132, 0.017868042, -0.027816772, 0.011413574, 0.014785767, -0.019104004, -0.0026054382, -0.009414673, 0.06695557, -0.054473877, 0.025543213, -0.02418518, 0.010215759, 0.009010315, 0.055725098, -0.017974854, -0.035064697, -0.024093628, -0.00944519, -0.014724731, -0.02381897, 0.026275635, -0.010154724, 0.001458168, -0.0007815361, -0.018310547, 0.048187256, 0.01763916, -0.021072388, 0.006790161, -0.016708374, -0.017074585, 0.050598145, 0.020477295, -0.026992798, -0.020141602, 0.00035881996, 0.035858154, 0.0010299683, 0.03942871, 0.05303955, -0.0770874, -0.009483337, -0.056243896, -0.0034160614, 0.0059661865, -0.0037288666, 0.0049934387, 0.010040283, -0.05822754, 0.0071525574, -0.021133423, 0.026046753, 0.001376152, 0.009033203, 0.055755615, 0.0025959015, -0.019134521, -0.025817871, -0.031433105, 0.015151978, 0.0061302185, -0.03765869, -0.043151855, -0.0126953125, -0.0023670197, -0.011634827, 0.02319336, -0.017425537, 0.017593384, 0.021087646, -0.01398468, -0.006259918, -0.006549835, 0.02079773, 0.0046539307, -0.039855957, 0.014373779, -0.035217285, 0.005756378, -0.013847351, -0.028884888, -0.0042381287, -0.032440186, 0.017333984, -0.0045700073, -0.026245117, 0.016616821, 0.0051612854, 0.021240234, 0.022506714, 0.03010559, -0.023101807, -0.031433105, -0.015258789, 0.02558899, -0.034576416, -0.06585693, 0.07678223, 0.026809692, 0.015563965, -0.037750244, -0.06085205, -0.049621582, 0.0084991455, 0.0017366409, 0.009407043, 0.04626465, -0.020111084, 0.0049476624, 0.02609253, -0.017974854, -0.023040771, 0.012191772, 0.0013923645, 0.011299133, 0.007129669]}, "B083VS1N2M": {"id": "B083VS1N2M", "original": "Brand: Baja\nName: Baja 900-Watt Propane Powered Inverter Generator, BAI911LP\nDescription: \nFeatures: \n", "metadata": {"Name": "Baja 900-Watt Propane Powered Inverter Generator, BAI911LP", "Brand": "Baja", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.014801025, -0.026550293, -0.048553467, -0.0022583008, -0.018554688, -0.026168823, 0.0019340515, 0.034942627, -5.4359436e-05, -0.020202637, 0.031707764, -0.0007224083, -0.01626587, -0.062347412, 0.02772522, -0.031021118, -0.0033302307, 0.059051514, 0.03253174, -0.028121948, 0.026245117, -0.03817749, -0.03060913, 0.06036377, 0.023208618, -0.018676758, 0.037475586, -0.019836426, 0.045288086, -0.0027065277, 0.019866943, -0.027923584, 0.0019569397, -0.017791748, 0.054138184, -0.0027599335, -0.017990112, 0.011207581, 0.022659302, -0.029846191, 0.029174805, 0.0037498474, -0.010719299, -0.059814453, -0.05706787, 0.015670776, 0.030014038, 0.06774902, 0.0042877197, 0.020141602, -0.009567261, 0.011299133, -0.025756836, 0.04373169, 0.0052108765, -0.016586304, -0.027709961, -1.9192696e-05, 0.029159546, -0.012969971, -0.023651123, -0.033325195, 0.03527832, -0.0031108856, -0.027389526, 0.007083893, 0.03060913, -0.019821167, 0.10864258, -0.017730713, -0.047180176, 0.064575195, -0.006378174, 0.04736328, -0.027359009, -0.06542969, 0.058929443, 0.012519836, 0.0018491745, 0.03387451, 0.03918457, -0.0019321442, 0.021316528, -0.0060768127, 0.01537323, 0.0022392273, -0.003396988, -0.022201538, 0.01550293, -0.015914917, 0.00043320656, -0.017471313, -0.011489868, 0.04055786, 0.0015687943, -0.013908386, 0.003414154, 0.021453857, 0.022644043, 0.016571045, -0.03314209, -0.0124053955, -0.02166748, -0.02420044, 0.011917114, 0.007858276, 0.021392822, 0.008995056, 0.02835083, 0.002122879, -0.040740967, 0.06762695, -0.014060974, -0.018218994, -0.029632568, 0.010414124, -0.057250977, 0.041015625, 0.0063667297, 0.021484375, -9.804964e-05, 0.02909851, 0.022338867, -0.02671814, -0.0423584, -0.02885437, -0.016616821, -0.044891357, -0.068603516, -0.004211426, -0.030883789, 0.07299805, 0.032043457, -0.010292053, -0.034973145, 0.010726929, 0.012794495, -0.0036907196, -0.01474762, -0.014511108, 0.011512756, -0.0011863708, 0.008560181, -0.024215698, 0.045013428, 0.0010709763, 0.009925842, 0.010574341, 0.027267456, 0.019332886, -0.014755249, 0.0032291412, 0.015792847, 0.022521973, 0.024169922, 0.014671326, 0.013031006, -0.0025615692, 0.003435135, -0.01625061, 0.032470703, -0.008888245, 0.013305664, 0.064331055, 0.0090789795, 0.0056266785, -0.011878967, -0.008453369, 0.025665283, 0.06719971, 0.028289795, -0.0074691772, -0.014228821, 0.019836426, -0.00491333, -0.014511108, -0.062927246, -0.020050049, 0.056640625, -0.07305908, -0.054901123, -0.023086548, 0.011810303, 0.039733887, 0.006034851, -0.036621094, 0.014305115, -0.021621704, 0.013313293, 0.0115737915, 0.0368042, 0.002714157, -0.0076789856, -0.030532837, 0.018295288, 0.0079193115, 0.009773254, 0.009735107, 0.0071868896, -0.008857727, 0.00605011, 0.029418945, -0.03567505, -0.015007019, -0.035186768, -0.018310547, 0.009735107, 0.023025513, 0.06707764, 0.020477295, -0.029434204, -0.01675415, 0.015563965, -0.061309814, -0.038391113, 0.06488037, -0.009902954, 0.020141602, 0.035125732, 0.0027122498, 0.06738281, -0.0016107559, 0.054138184, -0.0058135986, -0.044128418, 0.0073928833, -0.025787354, 0.011680603, -0.05557251, 0.029067993, -0.000998497, 0.010681152, 0.039154053, 0.03201294, -0.039886475, 0.0037708282, 0.017181396, 0.018539429, -0.020553589, 0.020950317, -0.0065994263, -0.042297363, -0.048675537, 0.024612427, -0.025817871, 0.04699707, 0.038757324, 0.011497498, -0.018508911, -0.011047363, 0.023361206, 0.00806427, 0.026306152, -0.0037212372, -0.014343262, 0.02142334, -0.030380249, 0.006549835, 0.027542114, 0.016067505, -0.0070381165, 0.07293701, 0.060577393, 0.009269714, 0.03845215, 0.008712769, 0.0519104, 0.043914795, -0.026412964, -0.006038666, 0.023132324, 0.064453125, -0.018066406, 0.018844604, 0.076660156, -0.06762695, -0.038146973, 0.0074653625, 0.006008148, -0.00016367435, -0.029327393, -0.0074501038, -0.037902832, -0.006565094, 0.0151901245, -0.0037250519, -0.00045681, -0.013328552, -0.09136963, -0.0184021, 0.010734558, 0.01171875, -0.04321289, -0.010635376, -0.03717041, 0.0019607544, -0.021224976, -0.0001320839, 0.022338867, -0.041137695, -0.003522873, 0.04333496, -0.052337646, 0.04714966, -0.0058174133, -0.007820129, 0.04550171, -0.017181396, -0.033294678, -0.00598526, -0.035705566, -0.02204895, 0.0045433044, 0.027572632, -0.005596161, 0.008590698, 0.0027484894, 0.025177002, 0.052581787, 0.038116455, 0.00043201447, 0.05392456, -0.018493652, 0.020812988, 0.031463623, -0.016784668, 0.002904892, -0.0041389465, 0.032806396, -0.03100586, 0.023483276, 0.0076560974, 0.004764557, 0.015792847, 0.013717651, -0.034423828, 0.01574707, 0.0076408386, 0.0033397675, -0.021087646, 0.018753052, 0.01285553, -0.0043945312, 0.006500244, -0.022628784, -0.004032135, -0.0015058517, 0.018356323, -0.028945923, -0.0071487427, 0.0055770874, -0.024658203, 0.0051002502, 0.031143188, 0.028686523, -0.07623291, -0.01486969, 0.010505676, -0.047668457, -0.03643799, 0.0027770996, -0.04296875, -0.04260254, 0.019500732, -0.0052375793, 0.03189087, -0.019470215, 0.018112183, -0.010482788, -0.001657486, -0.04034424, -0.0132369995, 0.007129669, 0.0013513565, 0.01739502, 0.028259277, 0.00623703, -0.032165527, 0.02456665, 0.0054969788, 0.0049972534, -0.0025978088, 0.027557373, 0.01687622, 0.027999878, 0.017028809, 0.02180481, 0.05795288, 0.016342163, -0.01512146, 0.02557373, 0.06036377, -0.014282227, 0.0005159378, 0.03186035, -0.0013551712, -0.08050537, 0.008148193, -0.10992432, 0.015098572, -0.09674072, 0.022079468, 0.010192871, -0.038757324, -0.0038433075, -0.06652832, -0.048919678, -0.060638428, 0.021713257, 0.026626587, -0.021530151, -0.0047416687, 0.0077934265, -0.027328491, -0.007472992, 0.009788513, 0.032318115, 0.0026283264, -0.049346924, 0.0078048706, 0.056915283, -0.007587433, -0.0012159348, 0.014633179, -0.027862549, 0.032592773, -0.03668213, -0.005065918, 0.009681702, 0.062194824, -0.024475098, 0.042816162, -0.04144287, -0.019882202, -0.00018119812, 0.058563232, 0.021759033, 0.024887085, 0.018798828, -0.0035915375, -0.024856567, -0.019683838, 0.046051025, 0.046325684, 0.009231567, 0.023269653, -0.03829956, -0.011772156, 0.017913818, -0.0063819885, 0.03390503, -0.007118225, 0.07867432, 0.017471313, -0.013267517, 0.04562378, -0.009590149, 0.026275635, 0.0211792, 0.004459381, -0.017730713, -0.023925781, 0.048858643, -0.018127441, 0.026412964, -0.036010742, 0.023361206, 0.020812988, 0.025863647, -0.012123108, 0.03277588, 0.024230957, 0.024307251, -0.015777588, -0.031051636, -0.013183594, 0.046417236, -0.009208679, 0.023742676, -0.040527344, 0.0009665489, 0.0002861023, -0.054901123, 0.06964111, 0.054016113, -0.012435913, -0.00043582916, -0.0022697449, 0.0060310364, 0.024459839, 0.010765076, -0.00932312, 0.019943237, 0.05303955, -0.012809753, 0.008155823, 0.021148682, -0.048980713, -0.0048103333, 0.013252258, -0.081604004, 0.007534027, 0.024749756, -0.010032654, 0.0012464523, -0.009765625, 0.0029525757, 0.0024108887, 0.027572632, 0.02722168, -0.0019083023, 0.0019340515, -0.030914307, 0.03717041, -0.051513672, -0.024963379, -0.01259613, -0.012939453, -0.040222168, 0.017242432, 0.022003174, 0.024551392, -0.0072784424, 0.022476196, 0.023849487, -0.023086548, -0.011116028, -0.005558014, -0.036010742, -0.019439697, 0.01826477, 0.04663086, -0.0030498505, -0.018707275, 0.0071411133, -0.022842407, -0.01838684, 0.03604126, 0.015914917, -0.04284668, -0.022888184, -0.0020866394, 0.012390137, -0.013671875, -0.0008196831, 0.0069122314, 0.014572144, 0.035461426, -0.077697754, -0.013084412, 0.020095825, 0.04647827, -0.08166504, -0.026107788, -0.012962341, 0.01878357, -0.0440979, 0.017471313, -0.034118652, 0.012413025, 0.01727295, 0.034942627, -0.020233154, -0.032470703, -0.021881104, 0.006137848, 0.008628845, 0.0005478859, -0.007858276, -0.0074806213, -0.020736694, -0.011207581, 0.053619385, -0.010803223, -0.0016889572, -0.025985718, -0.04837036, 0.010261536, -0.031463623, 0.031585693, -0.007396698, 0.05255127, -0.021728516, 0.03567505, -0.05178833, 0.016799927, 0.041290283, -0.021026611, -0.032714844, -0.0067634583, 0.03540039, -0.006385803, 0.009628296, -0.015235901, 0.014793396, -0.00091171265, 0.016113281, -0.09124756, -0.07043457, -0.0018167496, -0.028793335, 0.016311646, 0.012825012, -0.02671814, -0.016586304, 0.019180298, 0.002937317, -0.040374756, -0.015144348, 0.023239136, -0.0051231384, 0.06390381, -0.026275635, -0.039123535, -0.0001757145, -0.0034065247, -0.033935547, 0.061401367, 0.07672119, -0.014190674, 0.030166626, 0.020080566, -0.0014219284, -0.009506226, 0.007648468, 0.035858154, -0.033050537, 0.032318115, 0.0043411255, 0.01473999, 0.06008911, -0.022109985, -0.06072998, -0.036346436, -0.02230835, 0.04071045, -0.031143188, -0.024307251, 0.0128479, -0.03756714, 0.02041626, -0.037719727, -0.060668945, -0.0036640167, 0.0015735626, -0.0155181885, -0.005458832, 0.021209717, -0.017059326, -0.041107178, -0.029922485, 0.0031337738, -0.05633545, 0.038208008, 0.033294678, -0.019104004, -0.02444458, 0.0012369156, 0.021987915, -0.028671265, -0.04257202, 0.032165527, 0.0026245117, 0.00881958, 0.040161133, 0.003129959, 0.0031547546, 0.03845215, -0.009101868, 0.0050735474, -0.0055885315, -0.009254456, 0.007709503, -0.008453369, 0.0017204285, -0.0121536255, 0.053649902, -4.4703484e-05, 0.0209198, -0.024993896, -5.2332878e-05, -0.026046753, 0.051696777, -0.01600647, -0.027679443, 0.024932861, -0.031082153, -0.023498535, 0.01474762, -0.021240234, 0.01361084, 0.03994751, -0.013946533, -0.00749588, 0.0006070137, -0.013900757, -0.056488037, -0.0028381348, 0.03643799, -0.0024604797, -0.004623413, -0.0022830963, -0.021331787, -0.028015137, 0.0025997162, -0.022384644, -0.078430176, -0.011497498, 0.045013428, 0.04348755, 0.0013408661, -0.038208008, -0.023757935, -0.0033092499, -0.012573242, -0.041259766, -0.027664185, 0.026657104, -0.000279665, 0.010314941, -0.040924072, -0.016494751, -0.008277893, -0.03994751, -0.00025892258, -0.00048017502, -0.030776978, -0.011100769, -0.0011911392, -0.013587952, -0.0013790131, -0.0068588257, 0.044830322, -0.029907227, -0.04425049, -0.008125305, 0.03866577, 0.029708862, -0.0024261475, 0.011207581, 0.043792725, -0.02243042, 0.033081055, -0.03765869, -0.029129028, -0.011367798, -0.007003784, -0.0019550323, -0.0385437, -0.04550171, -0.005241394, 0.012413025, -0.018218994, -0.024383545, 0.042297363, 0.0028514862, -0.0010004044, -0.045959473, -0.039245605, -0.002023697, -0.097961426, -0.022827148, -0.016098022, 0.050445557, 0.032318115, 0.054748535, -0.019256592, 0.012107849, -0.018829346, 0.036712646, 0.018981934, 0.011512756, 0.0032081604, 0.04232788, -0.06347656, 0.031707764, -0.008430481, 0.0020656586, -0.007701874, 0.05831909, 0.0014696121, 0.02684021, -0.06726074, -0.037139893, -0.044525146, 0.026763916, -0.008422852, 0.068237305, -0.0758667, -0.034698486, 0.03225708, 0.064086914, 0.0043678284, -0.044311523, 0.0012378693, 0.011795044, -0.03225708, -0.014205933, 0.008110046, -0.02279663, 0.031707764, -0.03604126, 0.042510986, 0.03390503, -0.009513855, -0.01966858, -0.0051841736, 0.075805664, 0.019836426, -0.0051994324, 0.022338867, -0.002336502, 0.010215759, 0.018554688, -0.008811951, 0.068847656, -0.00548172, -0.01663208, -0.008666992, 0.007850647, -0.0043640137, 0.016723633, -0.009765625, 0.05419922, -0.043884277, -0.041107178, 0.05429077, -0.010467529, -0.036712646, 0.028259277, -0.0022525787, -0.044433594, -0.019515991, 0.004020691, 0.00026392937, 0.022003174, 0.025344849, 0.014442444, 0.02229309, 0.010353088, 0.023666382, 0.03414917, -0.025222778, -0.002658844, 0.03152466, 0.0002784729, 0.027923584, -0.028137207, -0.08227539, 0.039855957, -0.0072517395, 0.022979736, 0.011253357, -0.004055023, 0.008987427, 0.029312134, 0.06744385, 0.005508423, 0.008346558, -0.0004825592, -0.011978149, 0.0513916, 0.0635376, -0.008728027, -0.021453857, 0.055725098, -0.0013179779, -0.008369446, 0.045684814, 0.013435364, 0.025054932, 0.043823242, -0.06591797, -0.03793335, -0.008972168, -0.03756714, 0.0143966675, 0.013511658, 0.00096321106, 0.02508545, 0.030700684, -0.019042969, 0.034118652, -0.028381348, 0.007194519, -0.020202637, 0.02885437, 0.0385437, 0.027755737, -0.014984131, 0.008811951, -0.02796936, 0.0019378662, 0.009307861, -0.039154053, -0.031082153, -0.010803223, 0.011001587, -0.03050232, 0.02935791, -0.031173706, -0.028198242, -0.010353088, -0.0016050339, -0.0692749, 0.005584717, 0.008720398, 0.01158905, -0.024230957, -0.052001953, 0.016860962, -0.040252686, 0.00055885315, 0.009407043, -0.020477295, 0.0048217773, 0.0008955002, 0.017837524, 0.03274536, 0.036315918, 0.005092621, 0.05419922, -0.01071167, -0.06652832, -0.1003418, 0.025177002, -0.10083008, -0.002702713, 0.03717041, -0.03439331, -0.0069999695, 0.004890442, 0.043426514, 0.06604004, 0.045806885, 0.0034103394, 0.01953125, 0.0184021, 0.021133423, -0.00097322464, 0.020507812, -0.018692017, -0.057373047, -0.06341553, -0.0009121895, 0.040222168, 0.036987305, 0.008399963, 0.020019531, 0.01512146, 0.008384705, -0.018157959, 0.009941101, -0.015335083, -0.017089844, -0.011833191, -0.08721924, -0.030029297, -0.0546875, 0.06384277, 0.01701355, -0.05065918, 0.05206299, -0.04168701, -0.04815674, -0.06677246, -0.03060913, 0.031143188, 0.04083252, -0.05102539, 0.0132751465, 0.032348633, -0.037719727, 0.018035889, 0.029830933, 0.041290283, -0.001329422, 0.0035953522, -0.008285522, -0.00062036514, -0.01763916, 0.017608643, -0.02229309, 0.013633728, -0.056854248, 0.03375244, -0.036346436, -0.06414795, -0.009628296, 0.041870117, -0.040802002, -0.031982422, -0.0042037964, -0.009590149, 0.007320404, 0.0044937134, 0.01737976, -0.0028686523, 0.029525757, -0.010391235, -0.006980896, 0.014533997, 0.003829956, 0.017929077, -0.013053894, 0.035217285, -0.0064811707, 0.06317139, -0.03149414, -0.103271484, -0.0418396, -0.0004968643, 0.0055885315, 0.02432251, 0.060150146, -0.038330078, 0.016845703, 0.022628784, -0.054870605, 0.023742676, -0.035858154, -0.030090332, -0.030715942, -0.020935059]}, "B07PYV2NMZ": {"id": "B07PYV2NMZ", "original": "Brand: GASPRO\nName: GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range\nDescription: How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more\nFeatures: \u3010Standard Connector \u3011Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8\" Female Flare. 5/16\" diameter LP hose\n\u3010Well Gas Control \u3011Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances\n\u3010 Max BTU Flow\u3011Providing 11\" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow\n\u3010Compatibility\u3011Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more\n\u3010High Quality\u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "metadata": {"Name": "GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range", "Brand": "GASPRO", "Description": "How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more", "Features": "\u3010Standard Connector \u3011Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8\" Female Flare. 5/16\" diameter LP hose\n\u3010Well Gas Control \u3011Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances\n\u3010 Max BTU Flow\u3011Providing 11\" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow\n\u3010Compatibility\u3011Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more\n\u3010High Quality\u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017807007, -0.012794495, -0.029647827, -0.01525116, -0.029968262, -0.008094788, -0.02859497, 0.0031032562, 0.013053894, 0.007671356, -0.024749756, 0.023925781, -0.016983032, -0.014945984, 0.0047569275, -0.03842163, 0.005847931, 0.03050232, 0.016616821, -0.015205383, 0.006828308, -0.006378174, -0.021377563, 0.042053223, 0.026992798, 0.02532959, 0.037384033, -0.014030457, 0.017913818, 0.004558563, 0.02986145, -0.027297974, 0.025039673, 0.01876831, -0.032440186, -0.0440979, 0.008491516, -0.011543274, -0.030029297, 0.019302368, 0.0015907288, -0.008743286, -0.0055885315, 0.025543213, -0.021148682, -0.038848877, 0.019561768, -0.014091492, 0.0079956055, 0.015098572, -0.00793457, 0.023406982, -0.009552002, -0.0076828003, 0.012748718, 0.0015802383, 0.008262634, -0.032592773, 0.007396698, -0.010009766, 0.013999939, 0.0077552795, 0.025115967, 0.03036499, -0.016189575, 0.015075684, 0.036895752, -0.019851685, 0.018676758, -0.008903503, -0.0030326843, 0.014350891, 0.010124207, -0.00040245056, -0.04788208, 0.014091492, 0.006011963, -0.017410278, 0.032196045, -0.003440857, 0.0047454834, 0.008010864, 0.0028934479, 0.0029277802, 0.011833191, 0.02809143, -0.024734497, -0.014701843, -0.059387207, -0.030395508, -0.03768921, -0.024429321, -0.06463623, 0.00028276443, -0.005176544, -0.010559082, 0.006210327, -0.06427002, 0.043640137, 0.0069389343, 0.030929565, -0.04107666, 0.039611816, 0.007789612, 0.007633209, 0.06341553, -0.003993988, 0.0009198189, 0.011917114, -0.0040512085, 0.0046577454, -0.02255249, -0.038757324, -0.0012111664, -0.035949707, 0.011161804, -0.049957275, -0.020767212, -0.01058197, -0.018508911, -0.02217102, -0.020812988, 0.06604004, -0.024429321, 0.01309967, 0.008293152, -0.023345947, -0.025726318, -0.023117065, 0.017288208, -0.018295288, -0.014122009, 0.062164307, 0.08239746, 0.02545166, -0.020355225, 0.04586792, -0.002117157, 0.007835388, -0.0057754517, -0.008995056, -0.03564453, -0.02494812, 0.016784668, -0.015205383, 0.013336182, 0.022033691, 0.012458801, 0.002840042, -0.047332764, -0.019714355, -0.00046801567, 0.03970337, 0.025024414, -0.033721924, 0.0262146, 0.031982422, -0.010253906, -0.032928467, -0.039489746, -0.03829956, -0.027313232, 0.0041999817, -0.03378296, -0.040771484, 0.04537964, -0.0011796951, -0.008239746, 0.012687683, 0.04537964, -0.032196045, 0.03451538, 0.06137085, -0.013008118, -0.03567505, -0.02406311, -0.0680542, 0.07183838, 0.08734131, -0.12976074, -0.03668213, -0.03692627, 0.1451416, -0.016433716, -0.006526947, -0.01739502, 0.0076179504, -0.042755127, -0.0021591187, -0.0005812645, 0.039916992, 0.073913574, -0.015777588, -0.058532715, 0.022979736, 0.041046143, -0.018798828, 0.023483276, 0.0016775131, -0.006843567, 0.0082092285, 0.029296875, -0.019439697, -0.007419586, 0.0045700073, -0.0013961792, 0.0058250427, 0.026443481, 0.02720642, 0.01676941, -0.009681702, -0.006362915, 0.0052375793, -0.033477783, -0.029266357, 0.014831543, -0.013656616, -0.008079529, 0.012619019, 0.011367798, 0.048675537, -0.0038585663, 0.023269653, 0.026611328, -0.003917694, -0.032562256, 0.01071167, -0.0011806488, -0.0035171509, 0.018417358, -0.017333984, -0.011062622, 0.07446289, 0.020736694, -0.028213501, 0.051757812, 0.08929443, 0.072021484, -0.048736572, -0.025436401, 0.018234253, -0.021591187, -0.034240723, -0.008987427, -0.022109985, -0.051940918, -0.004463196, -0.0028018951, -0.06500244, 0.008308411, 0.06842041, 0.036865234, -0.0046157837, -0.0032634735, -0.059326172, 0.030227661, -0.02230835, -0.020401001, -0.039611816, 0.055755615, 0.0039596558, 0.025985718, 0.017822266, -0.0054473877, 0.0076293945, 0.03967285, 0.033233643, 0.023666382, -0.026550293, 0.03842163, 0.008659363, -0.009262085, -0.008071899, 0.01234436, -0.014884949, -0.0056991577, -0.009849548, 0.018447876, -0.022888184, -0.011726379, -0.011528015, -0.018981934, -0.010017395, -0.018295288, 0.04748535, -0.00042629242, 0.0011873245, -0.039642334, 0.021835327, -0.00762558, 0.030212402, -0.032470703, -0.006664276, -0.00598526, -0.017669678, -0.053100586, 0.07922363, -0.04107666, 0.03805542, -0.039764404, 0.005924225, 0.04949951, -0.04800415, 0.01625061, 0.015014648, 0.0026245117, 0.01939392, 0.005004883, 0.015213013, -0.014640808, 0.008895874, 0.03933716, 0.0138168335, -0.040924072, 0.039123535, 0.023712158, 0.0029640198, 0.035247803, 0.04852295, 0.07800293, 0.0054512024, 0.010002136, 0.0070533752, -0.013832092, 0.028717041, -0.015792847, -0.012367249, -0.011077881, -0.024368286, -0.01776123, 0.008125305, -0.016921997, 0.024154663, 0.034240723, 0.0072669983, -0.012809753, -0.0048294067, 0.048614502, -0.006702423, -0.06719971, -0.004234314, -0.018951416, -0.013977051, 0.02973938, -0.052246094, -0.015205383, 0.02508545, 0.0017843246, -0.016204834, -0.021118164, 0.03112793, -0.0084991455, 0.022781372, 0.0013399124, 0.027023315, -0.0011367798, -0.039520264, -0.0040664673, 0.020080566, -0.062072754, -0.0284729, -0.02394104, -0.07116699, -0.081726074, 0.08984375, 0.001203537, -0.08843994, -0.04385376, 0.0058517456, 0.0060424805, -0.019104004, -0.0013866425, -0.0088272095, -0.015182495, -0.0007491112, -0.0035495758, 0.029312134, -0.010810852, 0.032104492, 0.024719238, 0.04373169, 0.033447266, -0.015571594, 0.013587952, 0.03152466, 0.0390625, 0.09094238, 0.024887085, 0.04284668, -0.04284668, 0.021957397, 0.032287598, -0.04953003, -0.001206398, 0.0021953583, -0.0059432983, 0.0023880005, -0.016189575, -0.058013916, -0.013221741, -0.068237305, 0.00491333, 0.016098022, -0.03552246, 0.00579834, -0.095214844, -0.05050659, -0.041107178, 0.045562744, -0.0049057007, 0.0048294067, 0.013648987, 0.006416321, -0.03164673, -0.047546387, 0.023544312, -0.022384644, -0.0019111633, -0.04473877, 0.017150879, 0.07019043, -0.09326172, 0.021057129, 0.022476196, -0.024627686, 0.0019569397, 0.0033435822, 0.011940002, -0.017700195, 0.051116943, 0.007751465, -0.0019702911, -0.041229248, -0.030212402, 0.008872986, 0.0026187897, 0.012031555, -0.021362305, 0.0010709763, -0.011703491, -0.07409668, -0.015640259, -0.022903442, -0.019332886, 0.0048713684, -0.03503418, -0.0027694702, -0.064086914, -0.004383087, -0.04006958, -0.0033893585, 0.014205933, 0.054748535, 0.03152466, -0.0015153885, 0.042877197, 0.013885498, 0.050689697, 0.019866943, 0.0002632141, 0.0042800903, -0.041259766, 0.055480957, 0.029266357, 0.0262146, -0.028717041, -0.02268982, 0.039611816, 0.03451538, -0.03451538, 0.02810669, 0.03829956, -0.06561279, -0.02267456, 0.016906738, -0.012886047, -0.0039596558, 9.11355e-05, 0.05871582, 0.017944336, -0.019058228, -0.0014190674, -0.07952881, 0.08831787, 0.035217285, -0.017166138, 0.051727295, 0.050964355, -0.007423401, -7.158518e-05, 0.045806885, -0.0044059753, 0.006427765, 0.043151855, -0.006336212, -0.032318115, 0.020950317, -0.045196533, 0.020248413, 0.018966675, -0.06512451, 0.013198853, -0.006641388, -0.034210205, -0.015457153, 0.009971619, 0.013870239, 0.0046577454, 0.0073890686, -0.032928467, 0.005634308, -0.021652222, -0.008041382, 0.03515625, -0.029632568, -0.08654785, 0.029174805, 0.033477783, -0.07122803, 0.003686905, -0.032318115, -0.026611328, 0.005142212, 0.027923584, 0.0056381226, 0.008369446, -0.029815674, 0.03515625, -0.014198303, 0.011291504, 0.032165527, 0.0030078888, -0.017623901, -0.041992188, 0.017318726, -0.013023376, -0.0061416626, 0.045684814, 0.013137817, -0.05307007, -0.019042969, 0.011924744, 0.024154663, -0.020187378, -0.011062622, -0.028762817, -0.016555786, 0.011749268, -0.019943237, 0.0018901825, 0.003414154, -0.00019419193, -0.055389404, -0.010475159, -0.03817749, 0.016738892, -0.05267334, 0.030059814, -0.00566864, 0.015022278, -0.011657715, 0.023483276, -0.040924072, -0.0027923584, -0.06185913, 0.0026226044, 0.05255127, 0.03010559, 0.0068740845, -0.025161743, -0.021484375, -0.0039367676, 0.039367676, -0.0206604, -0.004169464, -0.033477783, -0.026916504, -0.0023269653, 0.02885437, 0.052886963, -0.015266418, 0.029510498, -0.019241333, -0.0007162094, -0.066711426, -0.007843018, 0.04156494, -0.03338623, -0.041137695, -0.02178955, 0.06451416, -0.006465912, 0.020599365, 0.057647705, 0.024978638, 0.005710602, -6.854534e-06, -0.11706543, -0.0032787323, -0.0055351257, -0.002418518, -0.012207031, -0.015640259, -0.002746582, 0.057647705, 0.03439331, 0.031402588, 0.022338867, 0.011695862, 0.022003174, -0.005126953, -0.016036987, -0.03677368, 0.027801514, -0.024047852, 0.01965332, -0.02243042, 0.04171753, 0.033935547, 0.0019683838, 0.015266418, -0.0069351196, 0.0041160583, -0.03704834, 0.0057144165, -0.023239136, 0.047424316, -0.012039185, -0.035827637, 0.0033683777, -0.042663574, -0.008041382, 0.030426025, 0.0036239624, 0.033355713, -0.02394104, 0.013557434, -0.019607544, -0.036987305, 0.017333984, -0.0034217834, 0.01197052, -0.03451538, 0.018737793, 0.038757324, 0.0033340454, -0.00039219856, -0.005970001, -0.021072388, -0.034179688, -0.0048065186, -0.00056123734, -0.028152466, 0.021408081, 0.025787354, -0.005332947, 0.0014972687, 0.033050537, 0.024765015, -0.0056991577, -0.028747559, 0.032836914, -0.010231018, -0.03302002, 0.02482605, -0.011054993, 0.022460938, 0.029067993, -0.011398315, 0.011375427, 0.014862061, -0.035308838, 0.021240234, -0.0062179565, 0.014877319, -0.06555176, 0.090270996, -0.013061523, 0.011138916, -0.085998535, 0.01020813, 0.0317688, -0.0015392303, 0.009605408, -0.030410767, 0.03527832, 0.0077667236, -0.0053520203, 0.012916565, 0.002500534, -0.03286743, -0.013053894, 0.012176514, -0.037231445, -0.015174866, 0.01838684, -0.027160645, -0.015579224, -0.0031929016, -0.0178833, 0.024780273, -0.010093689, -0.03189087, -0.041503906, -0.0016717911, 0.0059814453, -0.027877808, -0.0062828064, 0.0052986145, -0.006084442, 0.003709793, -0.0053100586, 0.021331787, 0.017944336, -0.0440979, -0.03353882, -0.018310547, 0.018997192, -0.010528564, 0.044769287, -0.0067253113, -0.041778564, -0.0049819946, 0.013969421, 0.013137817, -0.033447266, -0.012809753, -0.004005432, -0.0066184998, 0.004016876, -0.0025157928, -0.03475952, 0.06213379, -0.03378296, -0.04925537, -0.030761719, 0.016586304, -0.018478394, -0.009750366, 0.07574463, 0.06008911, 0.0019512177, 0.029388428, 0.018692017, -0.04510498, 0.027709961, 0.004650116, -0.033691406, -0.03894043, -0.03366089, -0.0178833, 0.010223389, -0.0028381348, -0.0357666, 0.026245117, -0.0287323, 0.03878784, -0.027145386, -0.011146545, -0.025100708, -0.018417358, 0.0067481995, 0.014518738, 0.014015198, -0.014930725, 0.012718201, -0.07324219, -0.042236328, 0.000664711, 0.02053833, -0.0014972687, 0.013923645, -0.0037403107, 0.007797241, -0.023040771, 0.035949707, -0.0022773743, 0.029556274, -0.002527237, 2.4199486e-05, -0.054504395, 0.04901123, -0.051635742, 0.013893127, -0.034179688, 0.021072388, -0.012634277, 0.04925537, -0.072143555, -0.022354126, 0.021209717, 0.044036865, -0.0063171387, -0.03491211, 0.005252838, 0.03048706, -0.007411957, -0.039001465, -0.02456665, -0.01158905, 0.0049057007, -0.059051514, -0.022506714, -0.008636475, -0.02607727, 0.020828247, -0.020645142, 0.015731812, -0.06793213, 0.0546875, -0.02041626, -0.017303467, 0.0637207, -0.015457153, 0.053375244, -0.046722412, 0.0030727386, 0.0073280334, -0.018203735, -0.01965332, -0.0087890625, 0.024139404, 0.03842163, -0.017700195, -0.030899048, 0.038238525, 0.041992188, -0.092041016, -0.0045280457, -0.033599854, -0.0034217834, -0.02243042, -0.010688782, 0.008598328, -7.635355e-05, 0.0071868896, 0.021347046, 0.022537231, 0.0074806213, 0.034240723, 0.0021324158, -0.00920105, -0.017303467, -0.026550293, 0.012435913, -0.023391724, -0.008262634, 0.017959595, -0.052459717, 0.004535675, 0.04156494, -0.02041626, 0.029449463, -0.014427185, 0.003932953, -0.040740967, 0.0009584427, -0.030197144, -0.03125, -0.020614624, -0.007369995, 0.0010433197, 0.02973938, 0.015213013, 0.0284729, -0.0463562, -0.027755737, -0.0039596558, -0.05065918, -0.020721436, 0.021240234, 0.009666443, -0.05987549, -0.045166016, -0.01524353, -0.018875122, -0.010398865, 0.057861328, -3.2663345e-05, 0.06384277, -0.005191803, 0.015716553, 0.07434082, 0.029129028, 0.035308838, -0.050933838, 0.0034503937, 0.012718201, -0.015960693, -0.010009766, -0.02470398, -0.02230835, 0.003358841, -0.021575928, -0.041625977, -0.022735596, -0.010887146, -0.0016994476, -0.0033416748, -0.040649414, 0.009628296, -0.0032463074, 0.032165527, -0.027542114, 0.008232117, -0.0362854, -0.07397461, -0.026473999, -0.0025959015, -0.042938232, 0.041015625, 0.025909424, -0.019958496, 0.007789612, -0.0008778572, -0.050628662, -0.026977539, 0.01008606, 0.009346008, 0.022750854, 0.00021076202, 0.0154418945, 0.00088977814, -0.06604004, -0.013038635, 0.03488159, -0.035858154, -0.014053345, -0.020614624, 0.02947998, 0.006389618, 0.011459351, 0.057891846, 0.08239746, 0.019226074, 0.008926392, 0.025894165, -0.0541687, -0.010025024, 0.017669678, -0.0008621216, -0.019119263, -0.05218506, 0.02130127, 0.014854431, 0.019363403, -0.0008544922, 0.050811768, -0.041931152, 0.043945312, -0.0007586479, -0.01890564, 0.006801605, -0.010223389, 0.046295166, 0.032165527, -0.035369873, 0.0032310486, 0.0048599243, -0.02230835, 0.022277832, 0.017944336, 0.05517578, 0.0021972656, -0.052764893, -0.03555298, -0.031311035, 0.0076446533, -0.009460449, -0.03527832, 0.005580902, 0.024765015, 0.005870819, -0.018554688, 0.02973938, 0.027069092, 0.022903442, -0.013153076, 0.0135269165, -0.014915466, -0.03829956, -0.023910522, -0.016799927, -0.06427002, -0.004787445, 0.028793335, -0.027328491, -0.033294678, -0.026824951, 0.02859497, -0.011520386, -0.064575195, -0.038635254, -0.026123047, 0.040405273, -0.011169434, 0.018325806, -0.019577026, 0.05117798, 0.003320694, -0.04626465, 0.010864258, 0.029586792, -0.015449524, -0.049621582, 0.023773193, 0.01448822, 0.087402344, -0.030059814, -0.047821045, -0.05996704, 0.037628174, -0.0034828186, -0.007549286, 0.030288696, 0.0035266876, 0.008613586, 0.02406311, -0.047607422, -0.016860962, -0.014907837, 0.037750244, -0.03100586, 0.00013709068]}, "B082M8BYTK": {"id": "B082M8BYTK", "original": "Brand: BELLEZE\nName: BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze\nDescription: Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

      A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There's a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

      Your safety is our priority, and that's why we've equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30\u00b0, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

      Specifications:
      Heat Range: 175 Sq/Ft (15' Radius)
      Diameter of Dome Reflector: 31.9\"
      Support Pole Size: 2.9\" Diamter, 34.3\"Height
      Size of Burner: 11\"Diameter, 12\"Height
      Size of Base: 18.1\"Diameter, 3.39\"Height
      Overall Height: 7.25FT\nFeatures: [COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants.\n[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures.\n[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night.\n[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck.\n[LOVE-IT OR 100 DAY RETURNS] We guarantee that you\u2019ll love this product. If not, simply return within 100 days of purchase.\n", "metadata": {"Name": "BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze", "Brand": "BELLEZE", "Description": "Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

      A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There's a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

      Your safety is our priority, and that's why we've equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30\u00b0, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

      Specifications:
      Heat Range: 175 Sq/Ft (15' Radius)
      Diameter of Dome Reflector: 31.9\"
      Support Pole Size: 2.9\" Diamter, 34.3\"Height
      Size of Burner: 11\"Diameter, 12\"Height
      Size of Base: 18.1\"Diameter, 3.39\"Height
      Overall Height: 7.25FT", "Features": "[COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants.\n[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures.\n[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night.\n[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck.\n[LOVE-IT OR 100 DAY RETURNS] We guarantee that you\u2019ll love this product. If not, simply return within 100 days of purchase.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.005428314, -0.010528564, -0.017425537, -0.024337769, -0.0041999817, 0.0007390976, -0.018127441, -0.00030827522, -0.090148926, 0.055145264, -0.014297485, 0.04095459, 0.04168701, -0.003211975, 0.048797607, -0.027236938, 0.029907227, -0.015792847, -0.0038452148, -0.027297974, -0.007980347, -0.00504303, -0.013336182, 0.120666504, 0.008232117, -0.009506226, 0.07861328, -0.02142334, 0.016799927, -0.011146545, 0.025741577, -0.006526947, 0.03765869, 0.019546509, -0.044891357, -0.03338623, 0.0017261505, 0.00096416473, -0.028152466, 0.02583313, 0.026855469, -0.01612854, -0.04486084, 0.01600647, -0.047546387, -0.011169434, -0.003944397, -0.015312195, -0.0090408325, -0.018722534, -0.0040245056, -0.020721436, 0.020217896, -0.0061798096, -0.020828247, -0.010757446, -0.012611389, -0.0016918182, 0.024780273, -0.02192688, -0.022399902, 0.0006160736, 0.03668213, 0.015792847, -0.041931152, 0.02658081, 0.04815674, -0.018829346, 0.05419922, -0.06011963, -0.02772522, 0.032104492, 0.0068626404, 0.014587402, -0.054748535, -0.014770508, 0.04159546, -0.002483368, 0.031463623, -0.023529053, 0.017501831, -0.015655518, 0.01625061, 0.018234253, -0.031463623, -0.0041007996, 7.2300434e-05, -0.0024642944, -0.031188965, -0.032714844, -0.017807007, -0.04977417, -0.035308838, 0.03881836, -0.014060974, -0.00028586388, -0.058135986, -0.08892822, 0.029342651, 0.003435135, 0.024047852, -0.015426636, 0.012519836, 0.031188965, -0.013008118, 0.06329346, -0.00057315826, 0.013969421, 0.003414154, 0.008277893, -0.008857727, -0.04135132, 0.005558014, -0.018753052, -0.02444458, -0.024856567, -0.03793335, -0.0038661957, 0.01158905, -0.058532715, -0.011291504, -0.008491516, 0.0033988953, 0.033691406, 0.017471313, 0.027282715, -0.015113831, 0.021438599, -0.025115967, 0.027175903, -0.032958984, -0.0033416748, 0.013130188, 0.04937744, 0.016662598, -0.016830444, 0.030258179, 0.0105896, 0.02420044, -0.03567505, 0.021408081, 0.037963867, 0.036956787, -0.0087509155, 0.01525116, 0.030166626, 0.018341064, 0.00011461973, -0.009819031, -0.030426025, 0.017059326, -0.020431519, 0.036254883, 0.008766174, -0.03894043, -0.004852295, 0.04107666, -0.048217773, -0.037628174, -0.062927246, -0.044036865, -0.012664795, 0.022460938, -0.023208618, -0.048095703, 0.028015137, -0.0030670166, 0.00017273426, 0.0206604, 0.072509766, -0.032592773, -0.000787735, 0.016448975, 0.007385254, -0.033691406, -0.0029506683, -0.027755737, 0.09832764, 0.044647217, -0.10583496, -0.06500244, -0.07910156, 0.1274414, -0.03353882, 0.016326904, -0.012359619, 0.009162903, -0.018157959, -0.017333984, 0.012191772, 0.0072784424, 0.037628174, 0.011039734, 0.007949829, -0.0093307495, -0.036224365, -0.024505615, 0.014923096, -0.01751709, 0.012084961, -0.014282227, 0.017791748, 0.021377563, 0.0005054474, 0.031555176, 0.023422241, -0.0030269623, 0.007320404, 0.04425049, 0.05029297, -0.022994995, 0.017578125, -0.0019330978, -0.05795288, -0.033325195, -0.007751465, -0.022659302, -0.014823914, -0.0003004074, 0.0038223267, -0.0036201477, 0.007987976, -0.021133423, -0.0005993843, 0.033477783, -0.049224854, -0.00061798096, -0.035614014, 0.025039673, 0.0020580292, -0.033569336, 0.034851074, 0.04977417, 0.076416016, 0.019836426, 0.026901245, 0.0871582, 0.032684326, 0.009010315, -0.027923584, -0.0064888, -0.045928955, -0.045013428, 0.054748535, -0.06390381, -0.024551392, 0.008293152, 0.034210205, -0.008911133, 0.014198303, 0.016677856, -0.004840851, 0.014556885, -0.0066452026, -0.016082764, 0.022064209, 0.0014486313, -0.0009212494, -0.005443573, 0.020935059, 0.0030345917, 0.01889038, -0.017593384, 0.0010147095, 0.03591919, -0.02319336, 0.04586792, 0.030166626, -0.008117676, -0.029403687, 0.017913818, 0.030212402, 0.00061893463, -0.015403748, -0.008163452, -0.03363037, -0.026687622, 0.037994385, -0.040100098, -0.04800415, 0.028030396, -0.022994995, -0.023101807, 0.010383606, 0.06921387, 0.00756073, -0.004425049, 0.042297363, -0.027877808, -0.01146698, 0.030563354, -0.020706177, -0.032043457, 0.005821228, -0.014122009, -0.03704834, 0.040740967, -0.022064209, 0.026367188, -0.0011796951, 0.03363037, 0.051971436, -0.019989014, 0.02229309, -0.008583069, 0.008010864, -0.017181396, 0.044525146, 0.013694763, -0.033203125, -0.008552551, -0.0033512115, 0.036010742, -0.006965637, 0.058807373, 0.028930664, 0.01737976, 0.056030273, 0.065979004, 0.036010742, -0.016906738, 0.0017547607, -0.04916382, -0.028457642, 0.005607605, 0.012557983, -0.058776855, -0.0041923523, -0.0026168823, -0.024017334, 0.025115967, -0.024551392, 0.0115737915, -0.004348755, 0.0041389465, -0.019958496, 0.0039978027, 0.058135986, 0.010894775, -0.030883789, 0.0077705383, 0.0033626556, -0.018371582, -0.02418518, -0.02357483, -0.005870819, -0.01612854, 0.02243042, -0.037384033, -0.017654419, 0.014457703, -0.017730713, 0.041290283, -0.021896362, -0.0012273788, -0.0014219284, -0.045806885, -0.003194809, -0.013160706, -0.05130005, -0.045410156, -0.0005226135, -0.037322998, -0.011428833, 0.049316406, -0.005268097, -0.0390625, 0.0070495605, -0.04699707, -0.0259552, 0.08337402, -0.037017822, -0.06335449, -0.04147339, -0.086242676, -0.009811401, 0.055511475, -0.030548096, 0.034088135, 0.038635254, 0.0069236755, 0.021972656, -0.025299072, -0.008491516, -0.00592041, 0.032836914, 0.05758667, 0.016555786, 0.02796936, -0.012145996, 0.025283813, 0.025344849, 0.017318726, -0.007820129, 0.040008545, -0.019699097, -0.013084412, 0.04107666, -0.07824707, -0.0021533966, -0.08911133, 0.018478394, 0.006259918, -0.030456543, 0.0096206665, -0.061431885, -0.022827148, -0.04171753, -0.0070610046, 0.04550171, -0.0015583038, -0.024520874, -0.023483276, 0.0013980865, 0.015068054, -0.021057129, 0.05496216, 0.010673523, 0.012054443, -0.05657959, 0.008888245, 0.0065460205, 0.01979065, 0.014884949, -0.04272461, 0.028915405, -0.0110321045, 0.030654907, -0.02734375, 0.04196167, 0.009773254, -0.0064849854, 0.009124756, 0.005191803, -0.043640137, -0.0036239624, -0.012016296, 0.004425049, 0.024841309, -0.04067993, -0.03768921, -0.014778137, -0.004840851, 0.0099105835, -0.0018196106, -0.01360321, -0.007080078, -0.05126953, 0.026290894, -0.06536865, 0.010749817, -0.021972656, 0.058166504, 0.018096924, 0.0045166016, 0.11315918, 0.042388916, 0.030517578, -0.0023765564, -0.0031967163, -0.008430481, -0.023529053, 0.012329102, 0.017410278, 0.030731201, -0.058288574, 0.05557251, 0.004169464, 0.026168823, 0.01235199, -0.007888794, 0.011787415, 0.0154953, -0.020050049, 0.014175415, -0.009086609, 0.027572632, -0.009147644, 0.005596161, -0.030593872, -0.059631348, 0.020080566, -0.041046143, 0.045806885, 0.05545044, -0.032836914, 0.080322266, 0.02268982, -0.006954193, 0.081726074, 0.037597656, 0.026290894, 0.0051345825, 0.07647705, -0.018722534, 0.021652222, 3.2663345e-05, 0.01235199, 0.0042419434, -0.016036987, -0.07183838, 0.020858765, 0.011108398, -0.032196045, -0.04663086, 0.028564453, 0.021591187, -0.01637268, -0.0023918152, -0.060943604, 0.0043525696, -0.06329346, -0.012802124, -0.012573242, -0.012939453, -0.031799316, 0.030685425, 0.034179688, -0.036865234, -0.015823364, 0.020812988, -0.01449585, 0.0062408447, 0.02696228, 0.03967285, 0.00032806396, -0.0146865845, -0.01499176, -0.028747559, -0.008056641, 0.02217102, 0.007774353, 0.0023040771, 0.010314941, 0.0045928955, 0.043823242, -0.025360107, 0.017730713, -0.049987793, -0.07293701, -0.017242432, 0.01158905, 0.02468872, -0.027053833, 0.0077934265, -0.02444458, -0.03390503, -0.016540527, -0.03378296, 0.010635376, -0.024902344, -0.028259277, -0.078308105, -0.030517578, 0.018951416, 0.03704834, -0.025985718, -0.0093688965, -0.04043579, 0.03314209, 0.002500534, -0.023712158, -0.017501831, 0.012329102, 0.017562866, 0.016403198, 0.022842407, -0.028686523, -0.027786255, -0.030441284, -0.0029468536, 0.007209778, 0.07080078, -0.0034770966, -0.009719849, -0.019500732, -0.0098724365, 0.020965576, 0.016189575, 0.004825592, -0.02482605, -0.029830933, -0.011497498, -0.013435364, -0.028793335, -0.0619812, 0.02104187, -0.041870117, -0.021148682, -0.03378296, 0.08258057, -0.041412354, 0.003293991, 0.00076532364, 0.008598328, 0.021240234, -0.012718201, -0.068725586, -0.005760193, 0.0042419434, -0.035308838, 0.008857727, -0.004966736, -0.026672363, 0.041168213, 0.031036377, -0.0057640076, -0.027557373, -0.024337769, 0.026489258, -0.021133423, 0.0010986328, -0.0129852295, -0.013053894, -0.033966064, 0.04714966, 0.0058937073, 0.004825592, 0.047088623, -0.0048446655, 0.027359009, 0.044708252, 0.0062942505, -0.0076408386, -0.008583069, 0.010414124, 0.015853882, 0.0059051514, -0.020721436, -0.00015056133, -0.017318726, -0.0132751465, -0.026824951, -0.06225586, -0.0031547546, 0.054016113, 0.004058838, 0.0009918213, 0.000852108, -0.023391724, -0.018173218, 0.037078857, 0.010902405, -0.03756714, 0.07043457, -0.034851074, -0.030929565, -0.0006008148, -0.027877808, -0.013847351, -0.039978027, 0.01033783, -0.022140503, 0.02281189, 0.016723633, 0.030548096, -0.020904541, 0.061767578, -0.020507812, -0.0037345886, -0.041534424, 0.015640259, 0.044281006, -0.037017822, -0.019638062, -0.00042891502, -0.010391235, 0.037078857, -0.022705078, 0.030059814, 0.017150879, -0.0064315796, 0.06124878, 0.012435913, 0.02607727, -0.04425049, 0.025787354, -0.0096206665, -0.008773804, -0.043395996, 0.022338867, 0.023590088, -0.021087646, 0.0056762695, -0.031036377, 0.055267334, -0.060394287, -0.030075073, -0.015945435, 0.033691406, 0.013252258, 0.034973145, -0.0030345917, -0.009025574, -0.038085938, -0.025405884, -0.03793335, 0.045806885, -0.018875122, -0.0016241074, 0.02532959, 0.023361206, -0.045013428, -0.0099487305, 0.023849487, 0.018569946, -0.025802612, -0.0031852722, 0.007160187, -0.0049591064, 0.014450073, 0.02746582, 0.05456543, 0.028915405, -0.04748535, -0.019058228, -0.041229248, -0.0029697418, -0.051513672, 0.05718994, -0.01398468, 0.0022182465, 0.07598877, -0.048706055, -0.007949829, 0.018920898, 0.029571533, -0.015914917, -0.005077362, 0.012336731, 0.0061073303, -0.020309448, 0.08758545, -0.033233643, -0.054840088, -0.035888672, 0.054534912, 0.014190674, -0.005306244, 0.06774902, -0.0049324036, 0.02003479, 0.014198303, -0.032989502, -0.055633545, -0.032928467, -0.0022945404, -0.04147339, -0.031311035, -0.050201416, 0.036987305, -0.014823914, -0.024673462, 0.0102005005, 0.042938232, 0.0035495758, -0.05947876, 0.009155273, -0.024871826, 0.024124146, -0.028366089, 0.024597168, 0.010292053, 0.0040283203, -0.0012407303, 0.006416321, -0.07208252, -0.0124435425, -0.001203537, 0.024887085, 0.03152466, 0.03768921, -0.003030777, -0.024978638, -0.049804688, 0.0059165955, -0.006717682, -0.011398315, -0.021530151, 0.0030231476, 0.02394104, 0.026382446, 0.018859863, -0.0038700104, 0.002161026, 0.00075244904, 0.07385254, -0.015525818, 0.039611816, 0.02760315, 0.07330322, -0.022109985, -0.018371582, 0.023803711, 0.020736694, 0.009689331, -0.019714355, -0.010795593, 0.023101807, -0.02027893, -0.027816772, -0.031982422, -0.023895264, 0.01285553, -0.02218628, 0.045440674, -0.035949707, 0.045440674, 0.03527832, -0.018432617, 0.014198303, -0.00015127659, -0.028564453, -0.008926392, -0.04638672, 0.028747559, -0.0026741028, -0.01411438, -0.0061302185, 0.0075302124, 0.009735107, 0.031204224, 0.021835327, -0.0024776459, -0.06048584, 0.03845215, 0.021148682, -0.04660034, -0.023223877, -0.025772095, 0.025985718, -0.026229858, -0.022857666, -0.044647217, 0.0036125183, 0.051818848, -0.006843567, 0.010040283, -0.006095886, 0.020874023, 0.004501343, -0.009536743, 0.0077285767, -0.010246277, 0.055114746, 0.01234436, -0.014801025, -0.015258789, -0.024414062, -0.0015830994, 0.044647217, -0.023788452, 0.00074863434, -0.002658844, 0.015060425, -0.022323608, 0.003211975, -0.0317688, -0.037322998, 0.01878357, 0.011680603, -0.018630981, -0.024291992, -0.0026664734, 0.0024223328, -0.00566864, -0.043121338, -0.0012426376, -0.035888672, -0.0009236336, 0.019897461, 0.012573242, 0.0017938614, -0.042785645, -0.032440186, 0.007865906, -0.009727478, -0.011726379, 0.0064582825, 0.0020332336, 0.01586914, -0.020736694, 0.026000977, -0.014694214, 0.0035743713, -0.013916016, 0.021484375, -0.014289856, -0.002161026, -0.0015735626, 0.024459839, 0.006587982, 0.01424408, 0.043914795, 0.013900757, 0.00046348572, 0.01612854, -0.0024528503, -0.03286743, 0.022903442, -0.021896362, -0.04135132, 0.046966553, -0.038024902, 0.029281616, -0.024246216, -0.06768799, -0.05923462, 0.03768921, -0.061553955, -0.028900146, 0.028244019, -0.0005311966, 0.0009441376, -0.019058228, 0.025024414, 4.23193e-06, 0.018798828, 0.03918457, 0.057891846, -0.007873535, 0.0049362183, 0.014656067, -0.051330566, -0.04232788, 0.02456665, -0.04647827, -0.007255554, -0.010314941, -0.015045166, -0.025054932, -0.027191162, 0.025024414, 0.039794922, 0.032043457, -0.008369446, 0.0064811707, 0.0040359497, -0.00055265427, -0.018417358, 0.008041382, 0.005455017, -0.023101807, -0.011695862, 0.009727478, 0.047546387, 0.006072998, 0.035583496, -0.070373535, 0.0052375793, -0.037841797, 0.017044067, -0.04525757, -0.0057411194, 0.007873535, -0.024795532, -0.037353516, 0.04397583, 0.038116455, 0.06707764, 0.015960693, 0.0029945374, 0.031311035, -0.026245117, 0.008544922, -0.070739746, -0.013175964, 0.041992188, 0.004283905, -0.06323242, 0.0060195923, 0.0031166077, -0.03378296, 0.014877319, 0.039215088, -0.022125244, 0.04333496, -0.044799805, -0.005355835, 0.015823364, -0.054473877, 0.001627922, -0.016189575, 0.02619934, 0.025985718, 0.036956787, -0.0440979, -0.02835083, -0.004501343, -0.0033473969, -0.017044067, -0.02835083, -0.033935547, -0.06567383, 0.01889038, 0.06210327, -0.014381409, 0.017501831, -0.024093628, -0.01701355, -0.040039062, -0.0060691833, 0.016159058, 0.0007443428, 0.009117126, 0.00045633316, 0.031402588, 0.012069702, -0.0023880005, -0.066345215, -0.03366089, 0.040496826, 0.011154175, -0.028182983, 0.06915283, -0.053619385, 0.024841309, -0.020507812, -0.036895752, 0.013389587, -0.06008911, -0.0035324097, -0.048614502, -0.020767212]}, "B08SBQJ7P1": {"id": "B08SBQJ7P1", "original": "Brand: Foinwer\nName: Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill\nDescription: It is an ideal substitute for the 16.4oz/1lb green camping small propane tank\nFeatures: \ud83c\udf81 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device.\n\ud83c\udfc6 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment.\n\ud83c\udf19 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank\n\ud83d\udd12Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage\n\ud83d\udce7 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use\n", "metadata": {"Name": "Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill", "Brand": "Foinwer", "Description": "It is an ideal substitute for the 16.4oz/1lb green camping small propane tank", "Features": "\ud83c\udf81 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device.\n\ud83c\udfc6 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment.\n\ud83c\udf19 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank\n\ud83d\udd12Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage\n\ud83d\udce7 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.020385742, 0.0050811768, -0.05996704, -0.0022010803, 0.022903442, -0.03692627, 0.024124146, 0.02218628, -0.060821533, 0.0063285828, 0.020324707, 0.020431519, -0.024093628, -0.033355713, 0.029342651, -0.03048706, 0.03314209, -0.038360596, -0.026260376, -0.032592773, 0.0032310486, -0.010108948, -0.028244019, 0.08691406, 0.011619568, -0.017150879, 0.046905518, -0.016098022, 0.027786255, -0.00016713142, 0.025497437, -0.02720642, 0.056427002, -0.008094788, -0.059814453, -0.045837402, -0.0034179688, -0.032440186, -0.055847168, 0.036590576, 0.032470703, -0.0118255615, -0.010879517, 0.028823853, -0.032287598, -0.014518738, 0.039276123, -0.0018453598, 0.011772156, 0.04626465, -0.019577026, -0.009513855, -0.009048462, 0.021987915, 0.016342163, -0.002500534, 0.043884277, -0.059570312, -0.010879517, -0.019729614, 0.0007452965, 0.031677246, 0.019165039, 0.031982422, -0.051696777, 0.010185242, 0.023788452, -0.03488159, 0.03741455, -0.064453125, -0.025756836, 0.049072266, -0.0027103424, 0.008743286, -0.05307007, -0.030471802, 0.06185913, -0.0031166077, -0.008651733, 0.019134521, -0.049621582, -0.039245605, 0.031280518, -0.0007338524, 0.0015993118, 0.045684814, -0.026947021, -0.021942139, -0.029937744, -0.029541016, -0.025054932, 0.020126343, -0.038848877, 0.01876831, -0.028945923, -0.018539429, 0.009147644, -0.029220581, 0.027770996, 0.0035381317, 0.039764404, -0.06365967, 0.04208374, -0.0118255615, 0.014572144, 0.04888916, -0.004512787, 0.004310608, 0.054901123, 0.01586914, 0.012397766, 0.037353516, -0.0031757355, -0.0143585205, -0.005001068, 0.03387451, 0.00011998415, 0.024093628, -0.0060653687, 0.03186035, -0.005355835, 0.0110321045, -0.00573349, -0.03338623, 0.006626129, -0.003118515, -0.018188477, 0.014015198, -0.038116455, 0.02279663, -0.037261963, 0.008552551, 0.04135132, 0.040496826, 0.0041046143, -0.038116455, 0.008590698, -0.0009508133, 0.019622803, 0.03463745, -0.0005097389, -0.03048706, 0.042785645, 0.03213501, -0.004573822, 0.04248047, 0.026504517, -0.005115509, 0.014472961, -0.06585693, -0.011924744, -0.009925842, 0.03665161, 0.0071907043, -0.021652222, -0.030380249, 0.011947632, -0.042266846, 0.01828003, -0.059417725, -0.046691895, -0.01789856, 0.008651733, -0.012023926, 0.02281189, 0.0034046173, 0.022964478, 0.027511597, 0.005126953, 0.051727295, -0.017745972, 0.06616211, -0.024047852, -0.024810791, 0.0009756088, -0.06542969, -0.031463623, 0.099243164, 0.06854248, -0.12194824, -0.059631348, -0.07745361, 0.13671875, -0.04611206, 0.041259766, -0.06890869, 0.02494812, -0.07086182, 0.001452446, 0.011795044, 0.018814087, 0.018005371, -0.018569946, 0.0055236816, -0.00806427, 0.0069465637, -0.006954193, 0.02935791, -0.010810852, -0.02746582, -0.026748657, 0.0013475418, -0.008079529, -0.017059326, 0.004070282, -0.04034424, 0.0016622543, 0.028656006, 0.0124435425, 0.053619385, -0.032592773, -0.033294678, 0.030883789, -0.036468506, 0.012992859, 0.008079529, -0.012199402, 0.011077881, 0.0141067505, -0.03253174, 0.07336426, 0.016143799, 0.054351807, 0.04776001, -0.0014667511, -0.009590149, -0.012451172, -0.0003476143, -0.00447464, -0.0012989044, 0.0073623657, 0.0335083, 0.06008911, 0.047180176, -0.031982422, 0.008140564, 0.025863647, 0.027923584, -0.022109985, 0.024810791, 0.020751953, 0.0098724365, -0.006187439, 0.0056877136, -0.027740479, -0.06506348, 0.018249512, -0.014572144, -0.029724121, 0.017333984, 0.028686523, 0.03152466, 0.024810791, 0.03475952, -0.05517578, 0.05029297, -0.015388489, 0.019973755, -0.01109314, 0.014259338, -0.025497437, 0.01751709, 0.034942627, -0.009788513, 0.0085372925, -0.008651733, 0.012863159, 0.009918213, -0.014305115, -0.008033752, 0.018844604, 0.0065231323, -0.019241333, 0.0019226074, -0.0131073, -0.034179688, -0.05130005, 0.033599854, -0.013885498, -0.015396118, 0.0043640137, 0.0052986145, 0.04953003, -0.009056091, 0.029159546, -0.0020275116, 0.03945923, -0.00415802, -0.024337769, 0.0024089813, 0.0074386597, 0.055389404, 0.014457703, 0.028137207, -0.0007162094, 0.0072021484, -0.007820129, -0.034088135, 0.04611206, -0.048553467, -0.00079250336, 0.06072998, -0.038970947, 0.042877197, -0.011375427, 0.003686905, -0.017196655, 0.019699097, 0.017074585, -0.05404663, 0.020004272, 0.008102417, 0.02268982, 0.034484863, -0.0054397583, -0.0059890747, -0.0231781, 0.047088623, 0.02960205, 0.05758667, 0.023834229, -0.012260437, -0.030380249, 0.0050697327, 0.0022201538, -0.0045814514, -0.02671814, -0.008911133, 0.047943115, -0.0006971359, 0.004524231, 0.015342712, -0.009895325, 0.0066337585, 0.015541077, 0.004562378, 0.0059280396, -0.0010595322, -0.015716553, -0.015357971, 0.015312195, -0.027404785, 0.0067329407, 0.0032348633, -0.006500244, -0.056640625, -0.015037537, 0.0011367798, 0.007457733, -0.020553589, 0.024230957, -0.005683899, 0.008026123, -0.013923645, 0.008644104, -0.029449463, -0.017745972, -0.016677856, -0.022613525, -0.076293945, 0.03036499, -0.042907715, -0.03543091, -0.0011968613, 0.075927734, -0.021469116, -0.040802002, -0.033233643, -0.041503906, -0.03845215, 0.02067566, 0.0018587112, -0.11071777, -0.027191162, -0.022125244, 0.042419434, 0.042144775, -0.03994751, -0.00217247, 0.0035705566, 0.011268616, 0.043151855, -0.029190063, 0.045166016, -0.023422241, 0.04727173, 0.075805664, 0.009521484, 0.0423584, -0.043884277, 0.036376953, 0.04849243, -0.011077881, -0.027542114, -0.0070724487, 0.001660347, 0.01625061, -0.036376953, -0.012390137, -0.04562378, -0.01763916, -0.0084991455, -0.022583008, -0.023452759, 0.01259613, -0.043823242, -0.00020468235, -0.048431396, 0.015319824, 0.04949951, 0.00084733963, 0.03466797, -0.0016803741, 0.03741455, -0.01828003, -0.00894928, 0.012191772, -0.00031542778, -0.023345947, -0.004749298, 0.06329346, -0.06286621, 0.03060913, 0.029525757, -0.03579712, 0.004283905, -0.01612854, 0.018371582, -0.024383545, 0.02458191, -0.0038261414, -0.007419586, -0.038330078, -0.04309082, -0.024749756, -0.00617218, 0.005607605, -0.03414917, 0.030014038, -0.003583908, -0.038726807, 0.00082969666, 0.014572144, 0.029281616, -0.017791748, 0.013496399, -0.0010271072, -0.0052986145, 0.008140564, -0.00447464, 0.009841919, -0.0074043274, 0.043151855, 0.014198303, -0.0154418945, 0.038391113, 0.018600464, 0.0010681152, -0.014984131, 0.021759033, 0.0061836243, 0.017364502, -0.015640259, -0.031829834, 0.03604126, -0.06933594, 0.033966064, -0.016052246, -0.020217896, 0.032348633, -0.012290955, 0.03994751, -0.0030174255, -0.021865845, 0.050109863, 0.024093628, -0.023025513, -0.036224365, 0.0014343262, 0.005088806, -0.05731201, 0.017440796, -0.12109375, 0.041412354, -0.014434814, -0.011520386, 0.04611206, 0.04647827, 0.021606445, 0.007461548, 0.013015747, -0.005962372, 0.015525818, 0.05380249, 0.0076942444, 1.4364719e-05, 0.018936157, -0.019378662, -0.0054969788, -0.015205383, -0.042114258, 0.017791748, 0.022476196, -0.013137817, 0.004558563, 0.017623901, -0.051574707, -0.015617371, -0.0062675476, -0.05404663, -0.042633057, -0.050476074, 0.016708374, 0.015090942, -0.024490356, -0.03326416, -0.0030059814, 0.008987427, -0.046844482, -0.0070381165, -0.018096924, -0.023010254, 0.0051994324, 0.021621704, 0.027694702, -0.012931824, -0.017318726, 0.00920105, -0.016357422, 0.019897461, -0.013198853, 0.02357483, -0.036193848, -0.040618896, 0.06008911, -0.02293396, -0.00040388107, 0.05822754, -0.0040397644, -0.06768799, -0.009429932, 0.070251465, 0.046875, -0.02961731, 0.008117676, -0.024475098, 0.0038642883, -0.0236969, -0.010520935, -0.022628784, -0.021820068, -0.003238678, -0.042816162, -0.04232788, -0.018600464, -0.024429321, -0.00970459, 0.007118225, -0.013061523, 0.0021209717, 0.015342712, 0.06707764, -0.0748291, -0.01914978, -0.06921387, -0.001909256, 0.02557373, 0.019577026, -0.0126953125, -0.009925842, -0.0017337799, 0.030929565, 0.039794922, -0.029830933, 0.008483887, -0.019088745, -0.006412506, -0.014091492, 0.03668213, 0.035003662, -0.03189087, 0.018615723, -0.00554657, -0.02835083, -0.035736084, -0.0368042, 0.020645142, -0.04537964, -0.05947876, -0.035461426, 0.07287598, -0.0050735474, -0.0010929108, -0.042388916, 0.018157959, 0.0345459, 0.006111145, -0.04336548, -0.066223145, -0.0020198822, -0.016174316, 0.006324768, -0.018539429, -0.018127441, 0.035186768, 0.025253296, 0.029846191, -0.02659607, 0.014694214, -0.039978027, -0.008026123, 0.040496826, -0.047210693, 0.031036377, -0.07067871, -0.026473999, -0.084350586, 0.073913574, 0.039215088, 0.019226074, 0.021591187, -0.02986145, 0.0037841797, -0.0368042, 0.0011386871, -0.008865356, 0.028015137, -0.00881958, -0.025405884, 0.008735657, -0.0395813, -0.005554199, -0.02722168, -0.03375244, 0.009353638, 0.037078857, -0.029510498, 0.0075263977, -0.024291992, -0.028823853, -0.0075912476, -0.012313843, -0.041015625, -0.007511139, 0.009300232, -0.031463623, -0.020248413, 0.012321472, -0.002796173, -0.0035915375, 0.0031967163, -0.009162903, -0.07775879, 0.02104187, 0.07122803, -0.017974854, 0.00050354004, 0.03363037, -0.027282715, 0.004802704, -0.017700195, 0.01121521, 0.00097322464, -0.017974854, -0.0002168417, -0.008804321, 0.03262329, 0.03753662, -0.010375977, 0.013145447, 0.016921997, -0.06567383, 0.017822266, -0.011177063, -0.0005226135, -0.05154419, 0.050628662, 0.004699707, -0.00504303, -0.0703125, 0.015327454, 0.027496338, -0.017868042, -0.0087509155, -0.00020825863, 0.062561035, 0.018920898, -0.027679443, 0.013961792, 0.037353516, -0.021621704, -0.022277832, 0.006778717, -0.033691406, -0.03692627, -0.008140564, -0.029891968, 0.05831909, 0.012718201, -0.014564514, 0.002336502, 0.029785156, -0.03717041, 0.005531311, -0.007080078, -0.010269165, 0.00422287, 0.01235199, 0.014251709, -0.005924225, 0.018798828, 0.01348114, -0.024993896, 0.0032424927, -0.036102295, -0.025238037, -0.0463562, 0.005138397, -0.010673523, 0.03955078, -0.020523071, -0.04638672, 0.0016469955, 0.00497818, -0.0046691895, 0.015777588, -0.027832031, -0.020828247, 0.006412506, 0.00894928, 0.00023937225, -0.02508545, 0.042663574, -0.017990112, -0.020736694, -0.066589355, 0.07965088, -0.041168213, -0.027679443, 0.09020996, 0.013847351, 0.042633057, -0.000104665756, -0.019073486, -0.028564453, -0.012214661, 0.0057754517, -0.033691406, -0.069885254, -0.041870117, -0.008399963, -0.026535034, 0.0025424957, -0.0065345764, 0.043182373, -0.02268982, -0.06304932, -0.014671326, 0.0051231384, 0.011520386, -0.04574585, 0.009307861, -0.01474762, 0.033111572, -0.00869751, 0.025299072, -0.06137085, -0.057556152, 0.0046463013, 0.023742676, 0.05130005, 0.017929077, 0.01134491, 0.027328491, -0.08343506, 0.013504028, 0.029708862, -0.019866943, -0.04434204, 0.010368347, 0.02130127, 0.017974854, -0.052093506, 0.0031700134, -0.03387451, -0.0038909912, 0.0012664795, 0.034423828, -0.053100586, -0.0061187744, -0.011672974, 0.062805176, 0.015960693, 0.0119018555, 0.020706177, -0.010635376, -0.033050537, -0.0010490417, -0.0011262894, -0.033172607, -0.012413025, -0.015823364, -0.0076446533, 0.04135132, -0.019500732, 0.02279663, -0.005847931, 0.044158936, 0.0026512146, 0.014709473, 0.007835388, -0.0018758774, 0.03564453, 0.005695343, 0.018310547, 0.023864746, 0.04067993, 0.030136108, -0.03744507, -0.060028076, 0.009399414, 0.014060974, -0.04510498, 0.064331055, -0.01763916, -0.009689331, 0.037597656, -0.025146484, 0.008094788, -0.032562256, -0.023635864, -0.033691406, -0.027191162, 0.0022239685, -0.00843811, -0.0022258759, 0.0008029938, 0.050476074, 0.001578331, 0.030715942, -0.0059280396, 0.009086609, -0.040496826, -0.028518677, 0.0184021, -0.028244019, 0.0019569397, 0.016494751, -0.062469482, -0.0068092346, 0.03353882, 0.00045108795, 0.004081726, 0.025268555, 0.02609253, -0.014038086, -0.03930664, -0.02772522, -0.042541504, -0.00039172173, 0.00020611286, 0.0110321045, 0.0146102905, -0.0085372925, -0.004753113, -0.0015058517, -0.044921875, 0.044891357, -0.04168701, 0.036865234, 0.008415222, 0.017837524, -0.04711914, -0.020629883, -0.006893158, -0.008377075, 0.0022773743, 0.02708435, 0.011222839, 0.0146865845, -0.0019006729, 0.00015103817, 0.033355713, -0.007423401, 0.015380859, -0.030166626, 0.012069702, 0.039123535, -0.015640259, -0.006576538, -0.02130127, -0.0064849854, 0.00831604, -0.004634857, 0.009140015, 0.014259338, -0.006175995, 0.009178162, -0.011398315, 0.009735107, -0.026672363, 0.001917839, 0.009353638, -0.014694214, -0.0209198, -0.022567749, -0.056854248, -0.032806396, -0.010902405, -0.053710938, 0.019012451, -0.013595581, -0.0024318695, 0.015930176, -0.008628845, -0.029785156, -0.055541992, 0.0024318695, -0.012191772, 0.025527954, -0.0013589859, 0.05706787, -0.05419922, -0.02154541, -0.061035156, -0.001253128, -0.074645996, 0.003129959, -0.03945923, 0.03729248, 0.020431519, 0.0060195923, 0.025131226, 0.027801514, 0.009292603, 0.0020999908, -0.010124207, -0.04949951, -0.014709473, 0.077697754, 0.019104004, -0.034301758, -0.041625977, 0.0107040405, 0.00047445297, 0.009613037, 0.023788452, -0.0023822784, -0.04776001, -0.0047836304, -0.020080566, -0.016235352, -0.037597656, -0.006855011, 0.03479004, 0.0006184578, -0.015945435, 0.024459839, 0.05380249, 0.013519287, 0.023544312, 0.007270813, -0.008773804, -0.024749756, -0.017929077, -0.007209778, -0.003967285, 0.027160645, -0.011459351, -0.022781372, -0.082458496, 0.010978699, 0.021881104, -0.006729126, 0.055419922, -0.016723633, 0.016281128, 0.051513672, 0.007129669, 0.011062622, -0.002937317, 0.00072956085, -0.04067993, -0.046813965, 0.055114746, 0.021957397, -0.032592773, -0.012237549, -0.004421234, -0.023529053, -0.0035324097, -0.013923645, -0.025482178, -0.06652832, 0.05795288, 0.04849243, 0.004272461, -0.013580322, 0.0033016205, -0.025970459, -0.05886841, -0.0043525696, 0.036468506, -0.011688232, -0.035186768, -0.002943039, 0.029022217, 0.01689148, -0.03616333, -0.044281006, -0.06274414, 0.022033691, 0.026855469, -0.00035309792, 0.07354736, 0.013572693, 0.0021705627, 0.048706055, -0.02394104, -0.031951904, 0.0040245056, 0.09082031, 0.021743774, -0.004699707]}, "B015S0VALO": {"id": "B015S0VALO", "original": "Brand: \nName: 71'' Propane Gas Stove Burner REGULATOR 71'' Hose 20,000 BTU Propane Regulator\nDescription: **Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.\nFeatures: Low pressure propane stove regulator\nHose length: 71'' long\n0-20 PSI ; BTU max: 20,000\n** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully**\nQuantity: 1 ; Shipping Weight: 1 lb\n", "metadata": {"Name": "71'' Propane Gas Stove Burner REGULATOR 71'' Hose 20,000 BTU Propane Regulator", "Brand": "", "Description": "**Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.", "Features": "Low pressure propane stove regulator\nHose length: 71'' long\n0-20 PSI ; BTU max: 20,000\n** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully**\nQuantity: 1 ; Shipping Weight: 1 lb", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.005153656, -0.031799316, -0.016967773, -0.027236938, -0.03857422, -0.019424438, -0.018707275, 0.026016235, -0.045318604, -0.0034599304, 0.004924774, 0.038330078, -0.0011510849, -0.04260254, 0.060516357, -0.013809204, 0.025344849, 0.025436401, 0.03579712, -0.015838623, 0.018676758, 0.0062294006, 0.01184082, 0.08618164, 0.007171631, -0.051452637, 0.02961731, 0.020339966, 0.003320694, -0.0053215027, 0.021270752, -0.0012073517, 0.030899048, 0.003124237, -0.032409668, -0.06390381, -0.018066406, -0.015426636, -0.0446167, 0.015945435, 0.03503418, -0.018432617, 0.033325195, 0.017440796, -0.006362915, -0.015419006, 0.030029297, -0.03189087, 0.027236938, -0.008651733, 0.00843811, 0.0043029785, 0.015617371, -0.06939697, -0.026931763, -0.04788208, 0.03567505, 0.005657196, 0.009590149, -0.05670166, -0.01335144, 0.03488159, 0.022232056, 0.046966553, -0.033691406, 0.013931274, 0.043884277, -0.008056641, 0.0446167, -0.042755127, -0.024124146, 0.038238525, 0.012870789, -0.013290405, -0.04650879, 0.009407043, 0.012199402, 0.0014467239, 0.01977539, -0.016204834, 0.040527344, -0.022644043, 0.043304443, 0.030776978, -0.009971619, 0.031341553, -0.0064086914, -0.025741577, -0.029556274, -0.03237915, -0.02961731, 0.018951416, -0.07879639, 0.015914917, -0.013053894, 0.016464233, -0.025619507, -0.08282471, 0.030822754, -0.010543823, 0.039489746, -0.048187256, 0.029174805, 0.017654419, 0.027145386, 0.06112671, -0.010498047, 0.03869629, 0.05935669, -0.006603241, 0.0053482056, 0.043792725, 0.015319824, -0.005382538, -0.028793335, -0.001285553, -0.002494812, -0.00920105, 0.0082092285, -0.0073013306, -0.002937317, 0.0074882507, 0.04788208, -0.04019165, -0.023071289, -0.022949219, -0.026947021, -0.031951904, -0.028656006, 0.0131073, -0.0118637085, 0.022003174, 0.009239197, 0.02458191, -0.022903442, -0.0093307495, 0.031234741, -0.026275635, 0.020874023, 0.0033912659, 0.006389618, -0.015686035, 0.015312195, 0.0126571655, -0.020431519, 0.029464722, 0.020202637, -0.0077667236, 0.00881958, -0.059692383, -0.015083313, -0.036895752, 0.022918701, 0.023330688, -0.016906738, 0.014724731, 0.0031528473, -0.0069007874, -0.0057907104, -0.028747559, -0.025909424, -0.010650635, -0.009727478, -0.029296875, -0.03994751, 0.02279663, 0.017410278, 0.009422302, 0.02973938, 0.09039307, -0.018997192, 0.021591187, 0.046844482, 0.031463623, -0.013641357, -0.016113281, -0.030456543, 0.053649902, 0.059936523, -0.11566162, -0.08691406, -0.07373047, 0.10821533, -0.05480957, 0.006038666, -0.029953003, -0.007545471, -0.054779053, 0.031951904, -0.0066490173, 0.0014791489, 0.010986328, 0.043395996, -0.03375244, -0.024719238, -0.014076233, -0.026107788, 0.027435303, -0.035827637, 0.025772095, -0.006893158, 0.018753052, 0.013999939, 0.014144897, 0.026687622, 0.012214661, 2.7418137e-06, 0.01260376, 0.025238037, 0.03086853, -0.011856079, -0.015777588, 0.004470825, -0.016815186, -0.013572693, 0.0017061234, -0.038604736, -0.03652954, 0.0042381287, -0.037139893, 0.046875, 0.011413574, 0.030044556, 0.039855957, -0.0015764236, -0.005012512, -0.015296936, -0.002008438, -0.008644104, 0.021972656, 0.003835678, 0.0046958923, 0.07507324, 0.070739746, -0.005580902, 0.048950195, 0.059631348, 0.021224976, -0.03466797, -0.021484375, -0.004638672, -0.011726379, -0.03225708, 0.03982544, -0.053497314, -0.027633667, 0.019256592, 0.00415802, -0.045166016, -0.0021686554, 0.049346924, 0.015167236, 0.01285553, 0.02078247, -0.04714966, 0.026885986, -0.035003662, 0.023284912, -0.0206604, 0.014755249, -0.023010254, 0.028259277, 0.054901123, -0.01777649, 0.02368164, 0.066589355, 0.039916992, 0.049560547, -0.037475586, 0.050567627, 0.0072517395, 0.004840851, -0.022399902, -0.018585205, -0.019073486, 0.004673004, -0.030181885, 0.038330078, -0.045013428, -0.027664185, -0.003522873, 0.038604736, 0.0020637512, 0.0033245087, -0.007522583, -0.033447266, 0.009643555, 0.0052871704, 0.04498291, 0.037963867, 0.05142212, -0.00013518333, -0.011444092, 0.030929565, -0.0154800415, -0.025314331, 0.08276367, -0.016967773, 0.025619507, -0.02911377, 0.01676941, 0.03842163, -0.03652954, 0.0067214966, -0.0013666153, 0.0042304993, 0.003353119, 0.026397705, 0.013763428, -0.016555786, -0.016983032, 0.01739502, 0.0079193115, -0.022506714, 0.03149414, 0.017074585, 0.018569946, 0.017288208, 0.035461426, 0.03475952, 0.00440979, 0.014633179, -0.021072388, -0.0028495789, 0.023071289, -0.0053482056, -0.021011353, -0.006248474, -0.050994873, 0.007575989, -0.0039978027, -0.02407837, -0.008628845, 0.029891968, 0.002008438, 0.0062217712, -0.0031490326, 0.045013428, -0.020095825, -0.09106445, -0.04675293, -0.040222168, -0.010543823, 0.027893066, -0.023010254, -0.05041504, 0.0236969, 0.0062065125, 0.003730774, -0.014595032, 0.01525116, -0.015182495, 0.0034313202, -0.059173584, 0.030227661, -0.014312744, -0.048797607, -0.05770874, 0.027008057, -0.07092285, -0.023513794, -0.03012085, -0.07299805, -0.026535034, 0.08886719, -0.0036373138, -0.046417236, -0.037200928, -0.010154724, 0.010810852, 0.011039734, -0.005756378, -0.040649414, -0.008483887, -0.0118255615, 0.00036740303, 0.027130127, -0.0105896, 0.006904602, 0.015617371, 0.03378296, 0.035339355, 0.0022735596, 0.015411377, 0.023544312, 0.024459839, 0.0960083, 0.057647705, 0.02658081, -0.03463745, 0.0178833, 0.046447754, -0.020492554, -0.023071289, -0.006298065, 0.008056641, -0.035003662, -0.037261963, -0.011444092, -0.0015468597, -0.06488037, 0.020141602, -0.009407043, -0.013137817, 0.013755798, -0.12286377, -0.018417358, -0.05291748, 0.008460999, 0.018753052, -0.0017690659, -0.014831543, -0.011497498, -0.03012085, 0.0071258545, -0.009941101, 0.00037264824, -0.0020160675, -0.040893555, 0.01876831, 0.079956055, -0.105651855, 0.038482666, 0.028015137, 0.0042762756, 0.020004272, 0.009246826, -0.0032863617, -0.019485474, 0.020355225, 0.013687134, -0.017959595, -0.029663086, -0.0019273758, 0.02684021, 0.03152466, -0.0028877258, -0.025344849, 0.009429932, -0.010826111, -0.04034424, -0.032043457, -0.015457153, 0.029510498, 0.0060424805, -0.015350342, -0.040252686, -0.05203247, -0.0011711121, -0.03326416, -0.0035476685, -0.015083313, 0.010429382, 0.025726318, -0.010093689, 0.1048584, -0.013259888, 0.039916992, -0.0020637512, -0.03894043, -0.0132369995, -0.048736572, 0.012786865, 0.015266418, 0.0058898926, -0.046081543, 0.022842407, 0.026397705, 0.028747559, -0.019210815, 0.018539429, 0.044403076, 0.038085938, -0.0039253235, -0.029541016, 0.011932373, 0.016860962, -0.053710938, 0.0637207, 0.010749817, -0.062347412, 0.027252197, -0.06866455, 0.030883789, 0.016403198, -0.0103302, 0.04135132, -0.011291504, -6.0141087e-05, -0.005584717, 0.034332275, -0.018447876, 0.027679443, 0.022872925, 0.008041382, -0.029006958, 0.0055732727, -0.01020813, 0.021072388, -0.006866455, -0.055358887, 0.023849487, 0.0625, -0.028213501, -0.06060791, -0.025238037, 0.04083252, -0.008811951, 0.03503418, -0.0368042, 0.018798828, -0.006389618, -0.021347046, 0.0054397583, -0.034240723, -0.025848389, 0.0046081543, -0.0033950806, -0.022583008, 0.006290436, 0.03149414, 0.0039367676, 0.019332886, -0.0025615692, 0.01626587, 0.0050201416, 0.0010633469, -0.0008659363, -0.018600464, 0.03515625, 0.025436401, 0.02218628, 0.02520752, -0.029968262, -0.008232117, -0.041290283, 0.0042419434, 0.06829834, 0.025314331, -0.06628418, -0.009231567, 0.0129776, 0.005908966, -0.03933716, 0.0206604, -0.03805542, 0.022109985, -0.00047945976, -0.06390381, -0.005783081, -0.018203735, 0.0047035217, -0.04159546, -0.03475952, -0.04434204, 0.08917236, -0.027755737, -0.006362915, -0.014045715, 0.007671356, 0.012023926, 0.0060806274, -0.029220581, -0.0050849915, -0.06341553, -0.012641907, 0.036193848, 0.020019531, -0.01676941, -0.017807007, -0.0039749146, 0.0020256042, 0.05154419, -0.0017089844, 0.015609741, -0.024017334, -0.022994995, -0.014793396, 0.037597656, 0.048065186, -0.0236969, 0.03338623, -0.0063476562, 0.0006008148, -0.074401855, -0.016952515, 0.046569824, -0.04437256, -0.0592041, -0.03866577, 0.074157715, 0.0029182434, 0.040222168, 0.023422241, 0.02015686, -0.014877319, -0.0064086914, -0.14367676, -0.05947876, -0.00868988, -0.0513916, 0.003753662, -0.013160706, -0.012573242, 0.053344727, 0.0597229, 0.001247406, -0.017669678, 0.018341064, 0.048187256, -0.04550171, 0.010108948, -0.026626587, 0.005832672, -0.025909424, 0.014007568, -0.014266968, 0.004764557, 0.02078247, -0.02029419, 0.0014925003, 0.0015077591, 0.0067977905, -0.015686035, 0.010643005, -0.010826111, 0.0066566467, 0.0037021637, -0.02507019, -0.014892578, -0.01701355, -0.01838684, -0.013046265, 0.007858276, -0.0022716522, -0.018447876, -0.0042381287, -0.022521973, -0.0062561035, 0.013183594, -0.0024433136, -0.0032634735, -0.0390625, 0.013412476, 0.02709961, 0.0015525818, 0.0053215027, 0.005027771, -0.014976501, -0.011619568, -0.016784668, -0.004436493, -0.0062408447, -0.0035591125, -0.0023345947, 0.00058174133, -0.00818634, 0.02835083, -0.002817154, 0.0012779236, -0.0045318604, 0.05215454, -0.00843811, -0.0068473816, 0.035125732, 0.0024852753, -0.005870819, 0.04800415, -0.025421143, 0.040527344, 0.022399902, -0.03869629, -0.034057617, 0.03250122, 0.0045928955, -0.064697266, 0.101745605, -0.0060577393, -0.029190063, -0.050323486, 0.0072784424, -0.03326416, -0.0034503937, 0.025619507, -0.035614014, 0.026489258, -0.042266846, -0.01966858, 0.005252838, -0.0028514862, -0.0146865845, 0.023132324, 0.0041770935, -0.013702393, 0.0035514832, 0.003824234, -0.012527466, -0.011131287, 0.028808594, -0.030517578, 0.016921997, 0.007545471, -0.024993896, -0.004283905, -0.017288208, -0.010757446, 0.02017212, -0.028213501, 0.023620605, 0.014526367, -0.009628296, -0.016448975, 0.054016113, 0.017837524, -0.021316528, -0.028762817, -0.020492554, 0.02003479, -0.033966064, 0.04284668, -0.017303467, -0.052581787, 0.015106201, 0.02418518, 0.012527466, 0.0074539185, -0.040496826, -0.004589081, -0.017562866, -0.007926941, 0.008430481, -0.025558472, 0.058380127, -0.030303955, -0.03652954, -0.07501221, 0.017852783, -0.0025043488, -0.013885498, 0.01802063, 0.049804688, -0.004863739, 0.034942627, -0.0074310303, -0.026641846, -0.020431519, -0.001660347, -0.02619934, -0.08404541, -0.054107666, -0.019882202, -0.01071167, -0.022994995, -0.014541626, 0.036132812, -0.00090646744, -0.02935791, -0.040649414, -0.03314209, 0.011566162, 0.011329651, 0.011581421, -0.014076233, 0.008049011, -0.05227661, 0.009346008, -0.082336426, -0.08099365, -0.025726318, -0.004169464, 0.011871338, 0.069885254, -0.0007786751, -0.018630981, -0.041107178, -0.040222168, 0.011764526, -0.028762817, -0.0058555603, -0.009933472, -0.0020370483, 0.028564453, 0.023590088, 0.011955261, -0.029510498, 0.009147644, -0.005592346, 0.053344727, -0.058624268, -0.0024528503, 0.0017700195, 0.048675537, -0.02482605, 0.01486969, 0.007598877, 0.003534317, -0.006385803, -0.021743774, -0.052215576, -0.03656006, 0.0045166016, -0.045074463, -0.0124053955, -0.008659363, -0.013557434, 0.012962341, -0.022918701, 0.043670654, -0.047607422, 0.042297363, -0.0076141357, -0.0058555603, 0.018112183, -0.020065308, 0.012168884, -0.024795532, 0.031234741, 0.022354126, -0.03265381, -0.022888184, -0.002216339, 0.016479492, -0.006958008, 0.043548584, -0.04348755, -0.002084732, 0.002664566, -0.0064697266, -0.017227173, 0.03314209, 0.008506775, -0.0070762634, -0.060638428, -0.019805908, -0.022216797, 0.016448975, 0.02720642, 0.02923584, 0.0036411285, 0.022232056, -0.028045654, 0.005569458, -0.03564453, -0.05368042, 0.04550171, 0.0033626556, -0.007297516, -0.0046310425, -0.087646484, 0.016616821, -0.0074310303, 0.00831604, 0.040527344, -0.03643799, 0.012001038, 0.022415161, -0.018005371, -0.032165527, -0.041900635, -0.0073547363, 0.015716553, -0.0075187683, 0.015312195, 0.012321472, 0.005256653, -0.019226074, -0.011657715, 0.0028457642, -0.0020427704, -0.0073890686, 0.016586304, -0.024917603, -0.047302246, -0.035614014, -0.0027446747, -0.015045166, 0.009346008, 0.016952515, -0.0017538071, 0.03918457, 0.024246216, 0.009986877, 0.07043457, 0.013809204, 0.025238037, -0.030761719, 0.014434814, 0.02746582, 0.017929077, 0.007511139, 0.014251709, -0.016830444, 0.0025310516, 0.031829834, 0.021148682, 0.02645874, -0.0002772808, 0.028778076, -0.009361267, -0.0033245087, 0.011665344, -0.019424438, 0.0030136108, 0.01386261, -0.0045776367, -0.038146973, -0.06555176, -0.008712769, -0.0052871704, -0.04171753, 0.06365967, 0.05343628, -0.008110046, 0.025527954, -0.010444641, -0.013137817, -0.01146698, 0.0079574585, 0.031280518, 0.013053894, 0.01309967, 0.055847168, -0.02973938, -0.064819336, -0.06329346, 0.028518677, -0.07910156, -0.00073862076, 0.005580902, 7.259846e-05, 0.0059928894, 0.00088071823, 0.02947998, 0.03378296, 0.040924072, -0.004119873, 0.038330078, -0.03302002, -0.003610611, -2.1755695e-05, 0.020477295, -0.046051025, -0.041015625, -0.0063972473, 0.008453369, 0.021469116, 0.03567505, 0.0024356842, -0.019180298, 0.023925781, 0.01979065, -0.018112183, -0.027420044, 0.014183044, 0.021331787, 0.03994751, -0.014968872, 0.008682251, 0.023483276, -0.023147583, 0.018829346, -0.059906006, 0.039367676, -0.051452637, -0.038848877, -0.074401855, -0.026657104, 0.041259766, 0.021453857, -0.032348633, 0.023025513, -0.009407043, -0.024032593, 0.0017232895, 0.0018234253, -0.0012731552, 0.00052928925, 0.022018433, 0.018508911, -0.007293701, -0.016448975, 0.012527466, -0.032806396, -0.03643799, -0.005821228, -0.007881165, -0.017044067, -0.018981934, -0.035491943, 0.016845703, -0.02720642, -0.025863647, -0.052886963, -0.034484863, 0.036102295, 0.027023315, 0.0032196045, -0.008598328, 0.024627686, 0.022613525, -0.04348755, -0.013000488, 0.029022217, -0.014930725, -0.038757324, 0.028442383, 0.026733398, 0.022598267, 0.0060424805, -0.07763672, -0.05441284, 0.048461914, 0.02720642, -0.038482666, 0.04156494, -0.034851074, 0.019851685, 0.03668213, -0.005405426, -0.019760132, 0.02154541, 0.07080078, 0.011871338, 0.006374359]}, "B07M6RMP1V": {"id": "B07M6RMP1V", "original": "Brand: ARC Advanced Royal Champion\nName: ARC, 339S Super Propane Burner Stove with Electron Strike,13\" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing\nDescription: \nFeatures: \ud83d\udd25Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances.\n\ud83d\udd25Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors.\n\ud83d\udd25Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious\n\ud83d\udd25High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included.\n\ud83d\udd25Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.\n", "metadata": {"Name": "ARC, 339S Super Propane Burner Stove with Electron Strike,13\" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing", "Brand": "ARC Advanced Royal Champion", "Description": "", "Features": "\ud83d\udd25Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances.\n\ud83d\udd25Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors.\n\ud83d\udd25Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious\n\ud83d\udd25High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included.\n\ud83d\udd25Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0031089783, -0.004711151, -0.0259552, -0.029708862, -0.00034070015, -0.0073432922, 0.0026340485, 0.020355225, -0.02458191, -0.0003452301, -0.000869751, -0.00058460236, -0.015975952, -0.040039062, 0.02406311, -0.030792236, 0.019851685, 0.0015048981, -0.009086609, -0.022323608, -0.0017528534, -0.009132385, -0.03463745, 0.09643555, 0.033416748, -0.0061531067, -0.020431519, -0.011459351, 0.03692627, 0.0007801056, 0.019317627, 0.0026836395, 0.08477783, -0.04574585, -0.032958984, -0.025665283, 0.027023315, -0.059661865, -0.07659912, 0.053833008, -0.01096344, 0.013626099, 0.02734375, -0.0009250641, -0.01335144, -0.033477783, 0.0141067505, -0.026412964, 0.014701843, -0.016098022, -0.02684021, 0.003868103, -0.009979248, -0.037506104, -0.017547607, -0.006023407, 0.03781128, -0.008148193, 0.019180298, -0.036499023, -0.031677246, 0.012680054, 0.035247803, 0.021026611, -0.021316528, 0.024017334, 0.08343506, -0.0110321045, 0.007911682, -0.03845215, -0.020324707, 0.026748657, 0.018066406, -0.007129669, -0.058441162, -0.0025959015, 0.012535095, -0.013977051, 0.04586792, -0.025421143, -0.031402588, -0.007827759, -0.0025672913, -0.047332764, 0.042877197, 0.014022827, -0.028503418, -0.016174316, -0.018829346, -0.039886475, -0.009208679, -0.0051956177, -0.083618164, 0.034606934, 0.019714355, -0.011962891, -0.05014038, -0.09472656, 0.04458618, 0.02507019, 0.05090332, -0.0440979, 0.064453125, -0.009666443, -0.010566711, 0.112976074, 0.03164673, 0.08441162, 0.00069475174, -0.013023376, 0.03189087, -0.061401367, -0.010032654, 0.012672424, -0.013282776, -0.010009766, -0.05657959, 0.024932861, -0.019165039, 0.035369873, -0.004295349, -0.0035476685, 0.028152466, -0.0026054382, 0.011917114, 0.011154175, -0.030822754, -0.034362793, -0.04812622, 0.013763428, -0.0368042, 0.051757812, 0.04055786, 0.024108887, -0.02293396, 0.0022335052, 0.003627777, -0.029296875, 0.019424438, -0.0043029785, 0.0060577393, -0.03982544, 0.005126953, 0.038391113, -0.033599854, 0.010681152, -0.0049972534, 0.019638062, 0.0008506775, -0.028747559, 0.004016876, -0.051635742, 0.014503479, 0.017730713, 0.038146973, -0.00088500977, 0.058563232, -0.024932861, -0.02168274, -0.023223877, -0.014457703, -0.02128601, -0.03378296, -0.011520386, -0.039855957, 0.027297974, 0.018096924, -0.004119873, 0.017486572, 0.03451538, 0.0012779236, 0.026611328, 0.0501709, 0.0036678314, -0.013145447, -0.017074585, -0.0025291443, 0.04135132, 0.062683105, -0.0993042, -0.07171631, -0.04840088, 0.11907959, -0.04638672, -0.006752014, -0.037597656, 0.019104004, -0.026443481, 0.016815186, -0.0034675598, 0.03466797, 0.010574341, -0.010887146, -0.031951904, 0.015037537, -0.014533997, -0.014297485, -0.014022827, -0.0006790161, -0.0024490356, 0.03250122, -0.00047159195, 0.022506714, -0.0076560974, 0.003232956, -0.024215698, -0.0022296906, -0.005870819, -0.03173828, 0.018753052, 0.014282227, -0.010360718, 0.008850098, -0.06951904, 0.006580353, 0.021881104, -0.010368347, 0.004272461, -0.0055351257, -0.017242432, 0.026855469, 0.0033130646, 0.0385437, 0.052642822, 0.031021118, -0.0058555603, -0.031585693, -0.020217896, -0.007286072, 0.008895874, -0.04824829, 0.036193848, 0.033294678, 0.07550049, -0.011199951, 0.015083313, 0.030960083, 0.035888672, 0.0024318695, -0.02848816, 0.011268616, -0.009529114, -0.046844482, -0.0050964355, -0.041625977, -0.024978638, 0.021514893, -0.00315094, -0.009002686, 0.016967773, -0.0044937134, 0.014083862, 0.018112183, -0.0049858093, -0.03363037, 0.025848389, -0.008392334, 0.011756897, -0.042633057, 0.03729248, -0.0038471222, 0.027633667, 0.008422852, -0.0015945435, -0.012016296, 0.02027893, 0.011108398, 0.027389526, -0.035003662, 0.007221222, 0.024520874, 0.042510986, 0.012908936, 0.016555786, 0.020965576, 0.0067481995, -0.019226074, -0.007873535, 0.026519775, 0.0064430237, -0.017837524, -0.013031006, 0.036224365, -0.003490448, 0.016479492, -0.0077285767, 0.037017822, -0.0012655258, -0.012557983, -0.011383057, 0.03353882, -0.026382446, -0.026062012, -0.009124756, -0.00944519, -0.026809692, 0.055145264, -0.017486572, 0.027175903, -0.018432617, 0.0099105835, 0.040130615, -0.028808594, 0.006706238, 0.0017595291, -0.020492554, 0.0010051727, 0.028640747, 0.008110046, -0.020019531, -0.020385742, 0.010116577, 0.03540039, 0.03616333, 0.05001831, 0.0055656433, 0.034210205, 0.054870605, 0.07116699, 0.021865845, -0.009643555, 0.027954102, 0.014633179, 0.0038070679, 0.021331787, -0.015426636, 0.00092077255, -0.0041389465, -0.030593872, 0.02204895, -0.016067505, -0.004550934, -0.008361816, 0.035095215, -0.021026611, -0.004207611, -0.0020332336, 0.005115509, -0.021972656, -0.0569458, -0.044128418, -0.0017528534, -0.004043579, -0.025878906, -0.0569458, -0.02255249, 0.032440186, 0.0038032532, -0.020812988, -0.010032654, 0.038238525, -0.00868988, 0.016143799, -0.022338867, 0.0206604, -0.021560669, -0.03265381, -0.048828125, -0.023101807, -0.08404541, 0.021774292, -0.02532959, -0.046081543, -0.011474609, 0.072509766, -0.017913818, -0.061431885, -0.038726807, -0.017089844, 0.013839722, 0.02557373, 0.009780884, -0.09527588, -0.04135132, -0.046081543, 0.010398865, 0.06781006, 0.0009908676, 0.011978149, 0.03604126, 0.033203125, 0.04727173, -0.029174805, -0.011795044, 0.017196655, 0.025970459, 0.0067214966, 0.013519287, 0.02911377, -0.0032043457, 0.032104492, 0.02418518, 0.004261017, -0.011009216, -0.024932861, -0.012870789, 0.0063705444, -0.020385742, -0.0071525574, 0.0076065063, -0.07891846, 0.019088745, 0.008605957, -0.044891357, 0.0019397736, -0.056793213, -0.05706787, -0.044708252, 0.0035934448, 0.0011119843, 0.03225708, 0.00039577484, 0.010940552, 0.00044941902, 0.002614975, -0.033966064, 0.001449585, 0.0028705597, -0.03652954, 0.00289917, 0.06329346, -0.07147217, 0.027648926, 0.017791748, -0.06008911, -0.006038666, -0.05343628, 0.019165039, -0.02520752, 0.055358887, -0.025924683, 0.016448975, 0.0045204163, 0.027267456, -0.02520752, -0.0032367706, -0.005004883, -0.05166626, 0.06149292, -0.066101074, -0.0070991516, -0.009651184, -0.005859375, -0.0058021545, -0.012145996, -0.016357422, 0.0027770996, -0.0010986328, 0.022460938, -0.025512695, 0.0029678345, -0.021377563, 0.00868988, 0.019851685, -0.02279663, 0.1237793, 0.042053223, 0.041290283, -0.00041389465, 0.010719299, 0.010635376, -0.018920898, 0.004573822, 0.020019531, -0.0013589859, -0.012039185, -0.011001587, 0.046936035, 0.007873535, -0.020751953, 0.047912598, 0.034179688, 0.03564453, -0.009048462, -0.014442444, -0.022354126, 0.040222168, -0.007293701, 0.001739502, -0.02659607, -0.009925842, -0.00504303, -0.025665283, 0.08294678, 0.064697266, -0.022979736, 0.049438477, 0.028900146, -0.016052246, 0.04647827, 0.023635864, -0.0059013367, 0.029968262, -0.01600647, -0.04748535, 0.025680542, 0.0033493042, 0.019973755, 0.0069274902, -0.012458801, -0.027420044, 0.0050468445, -0.0077781677, -0.0126953125, -0.023605347, 0.00052309036, -0.003786087, -0.011390686, -0.008308411, -0.025146484, -0.015731812, -0.038146973, 0.01789856, 0.031433105, -0.028961182, -0.02355957, 0.021118164, -0.015106201, -0.022659302, 0.018051147, 0.0023517609, 0.012458801, -0.00749588, 0.03781128, -0.0054359436, 0.020477295, -0.03753662, 0.024429321, -0.040618896, 0.037200928, 0.010238647, 0.028793335, 0.01612854, -0.035736084, 0.02456665, -0.014854431, -0.015144348, 0.014549255, -0.0055618286, -0.032714844, -0.0061912537, 0.017730713, 0.014884949, -0.021713257, -0.005508423, -0.003736496, -0.012512207, 0.0038604736, -0.054718018, 0.0051994324, -0.027450562, -0.0107421875, -0.07501221, -0.042816162, -0.020736694, 0.05697632, -0.0025119781, 0.0022411346, -0.02798462, -0.026031494, -0.025924683, 0.04360962, -0.046203613, 0.0021457672, -0.06048584, 0.014694214, 0.01436615, 0.0037193298, 0.017715454, -0.021987915, -0.012649536, -0.012069702, 0.06549072, 0.011566162, 0.0008711815, -0.027008057, -0.026016235, 0.010574341, 0.019180298, 0.01940918, 0.012260437, 0.026565552, -0.022720337, 0.00048685074, -0.032165527, -0.012413025, 0.021102905, -0.027786255, -0.025756836, -0.023468018, 0.049224854, -0.0076293945, 0.020904541, -0.007534027, 0.0014829636, -0.0020809174, -0.012924194, -0.07952881, -0.03125, -9.000301e-05, -0.015838623, 0.025817871, -0.017837524, -0.015960693, 0.0418396, 0.06896973, 0.072631836, -0.042785645, 0.0062026978, 0.015792847, 0.0149002075, 0.04812622, -0.06414795, 0.009941101, -0.04208374, -0.030548096, -0.061676025, 0.061950684, 0.02470398, -0.004081726, -0.0132369995, -0.014541626, -0.026275635, -0.090148926, 0.0072364807, 4.708767e-05, -0.017028809, -0.0070991516, -0.03161621, -0.0118637085, -0.032287598, -0.008834839, 0.0050735474, -0.011375427, 0.027130127, 0.00035905838, -0.008201599, -0.0031757355, -0.0064430237, 0.029571533, 0.02758789, 0.0038280487, -0.012031555, -0.05239868, 0.03665161, 0.0018434525, -0.006832123, 0.03060913, 0.0029850006, -0.01361084, 0.012931824, -0.0047035217, -0.055023193, 0.013839722, 0.046325684, 0.0033798218, -0.02796936, 0.012329102, 0.01927185, -0.019454956, -0.051483154, 0.03390503, 0.005847931, -0.005935669, 0.01953125, -0.0007915497, 0.05947876, 0.03817749, 0.015823364, 0.0068473816, 0.024047852, -0.017333984, 0.0011167526, -0.0015268326, 0.021118164, -0.020614624, 0.0015668869, -0.00049734116, -0.02027893, -0.03062439, 0.026321411, 0.045135498, -0.021575928, 0.017044067, -0.040924072, 0.047576904, -0.06323242, -0.03302002, 0.00087976456, 0.016571045, 0.004310608, 0.037109375, 0.001953125, 0.009941101, -0.013496399, -0.001745224, 0.0104599, 0.032165527, -0.0076065063, -0.051818848, 0.041625977, 0.039276123, -0.035308838, 0.00907135, -0.016799927, -0.011070251, -0.062683105, 0.00932312, 0.009918213, 0.01789856, 0.007549286, -0.02407837, 0.01763916, 0.014961243, -0.06744385, -0.039154053, -0.038391113, -0.0010643005, -0.020401001, 0.074157715, -0.02128601, -0.043640137, -0.0016927719, 0.0010070801, 0.009094238, -0.034484863, -0.037597656, -0.01612854, 0.005886078, -0.0015163422, -0.020568848, 0.019500732, 0.037353516, -0.035491943, -0.025039673, -0.039123535, 0.04321289, 0.011795044, 0.018051147, 0.06201172, 0.014556885, 0.0008506775, 0.04876709, 0.0010852814, -0.06744385, 0.00058174133, -0.0061302185, -0.10333252, -0.004600525, -0.05633545, 0.021072388, 0.004081726, -0.042541504, -0.053497314, 0.04623413, -0.03829956, -0.050994873, -0.02017212, -0.046447754, 0.029525757, -0.010658264, 0.00039052963, -0.016036987, 0.014198303, -0.02116394, 0.024002075, -0.017623901, -0.036712646, -0.03237915, 0.0053215027, 0.033355713, 0.007926941, -0.0007324219, -0.0051574707, -0.011955261, -0.0035572052, 0.006614685, -0.0713501, 0.012260437, 0.004638672, 0.033050537, 0.000500679, 0.058135986, 0.0012636185, -0.030914307, 0.00016951561, -0.0051612854, 0.06524658, -0.046417236, 0.0132751465, 0.015090942, 0.036102295, -0.012901306, 0.030303955, 0.015342712, -0.025039673, -0.04534912, 0.008720398, 0.024963379, -0.05053711, -0.023727417, -0.04446411, -0.019500732, 0.02532959, -0.011619568, 0.042785645, -0.058532715, 0.06506348, 0.0005955696, -0.0017871857, 0.013244629, 0.0023288727, 0.02810669, 0.0058288574, 0.004219055, 0.011260986, 0.0012283325, 0.032928467, -0.041168213, -0.02432251, -0.004600525, 0.024261475, -0.005908966, 0.038909912, -0.020126343, 0.008705139, 0.025253296, -0.0501709, -0.005947113, -0.042877197, 0.010269165, -0.03677368, -0.007675171, 0.007575989, 0.024337769, -0.0076065063, 0.030334473, -0.011528015, 0.025039673, 0.018249512, -0.02670288, 0.03466797, -0.053619385, -0.022399902, -0.02482605, -0.0071792603, 0.012054443, 0.020065308, 0.0014066696, 0.034729004, 0.029571533, 0.0046920776, 0.015899658, -0.028900146, 0.013801575, 0.0023708344, -0.044799805, -0.029830933, -0.025939941, 0.04727173, 0.024414062, -0.021270752, 0.011138916, 0.014167786, 0.02961731, -0.0071105957, -0.019958496, 0.028823853, -0.06774902, 0.02279663, 0.017654419, 0.0036621094, -0.03086853, 0.0041275024, -0.009056091, 0.004711151, 0.0068092346, 0.023773193, 0.026473999, -0.013916016, -0.003944397, 0.003929138, 0.060577393, -0.0042495728, 0.035247803, -0.060455322, 0.0031814575, 0.05355835, -0.013145447, -0.009208679, 0.012176514, 0.0003938675, 0.029052734, 0.015731812, 0.040496826, -0.025268555, 0.0048103333, 0.0038928986, -0.02961731, 0.005405426, -0.024749756, -0.0132369995, 0.031585693, -0.040649414, 0.017456055, -0.04119873, -0.07891846, -0.048187256, 0.011238098, -0.076538086, 0.015205383, 0.010414124, -0.05657959, -0.031555176, 0.010528564, 0.005180359, -0.07562256, -0.006427765, -0.046020508, 0.019210815, 0.029403687, 0.037139893, 0.009292603, -0.085632324, -0.040924072, 0.039245605, -0.029205322, -0.0317688, 0.009483337, 0.04260254, 0.0680542, 0.033416748, 0.05029297, -0.007820129, 0.036071777, -0.0087890625, 0.02720642, -0.04324341, -0.013069153, -0.008392334, -0.0012493134, -0.028839111, -0.014312744, 0.02218628, 0.015541077, 0.018508911, 0.02217102, 0.011077881, -0.081848145, -0.014839172, -0.047210693, 0.02809143, -0.05606079, 0.016433716, -0.010437012, -0.019317627, -0.048980713, 0.025909424, 0.023513794, 0.08093262, 0.041992188, -0.024032593, 0.053741455, -0.024414062, -0.08117676, -0.08935547, -0.040863037, 0.03439331, -0.0065994263, -0.058929443, -0.0054893494, -0.0013895035, -0.028442383, -0.005176544, 0.029922485, -0.012382507, 0.03237915, -0.010017395, -0.00070667267, 0.012214661, -0.025512695, 0.020233154, -0.00982666, -0.022338867, 0.03250122, 0.026550293, -0.013412476, 0.006702423, -0.014511108, -0.012542725, 0.014328003, 0.00617218, 0.003063202, -0.04348755, 0.0063591003, 0.04309082, -0.0079574585, 0.0119018555, -0.010101318, -0.030090332, -0.039245605, -0.0062065125, 0.025726318, -0.0037574768, -0.018066406, 0.03277588, 0.0024929047, 0.053100586, -0.04208374, -0.080078125, -0.044921875, 0.006439209, -0.0129852295, 0.034057617, 0.021331787, -0.009880066, 0.017501831, 0.052886963, -0.023162842, -0.006465912, -0.0154418945, 0.06549072, 0.012237549, -0.0058517456]}, "B074BT57HG": {"id": "B074BT57HG", "original": "Brand: Renook\nName: Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black\nDescription: \nFeatures: 1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat\n2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "metadata": {"Name": "Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black", "Brand": "Renook", "Description": "", "Features": "1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat\n2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.007446289, 0.03579712, -0.028182983, -0.021621704, 0.010650635, -0.00011193752, -0.023468018, -0.0051956177, -0.013015747, 0.033966064, -0.0009202957, 0.05758667, -0.020019531, -0.023162842, -0.0011196136, 0.009925842, 0.024032593, -0.03933716, -0.010047913, -0.039520264, -0.01159668, -0.023849487, 0.027938843, 0.021728516, 0.033233643, -0.012939453, -0.028823853, -0.013092041, 0.041809082, 0.0026245117, 0.012878418, -0.0010261536, 0.037506104, 0.0043296814, -0.055145264, -0.03555298, 0.018508911, -0.018920898, -0.020492554, 0.008865356, 0.02722168, -0.01914978, -0.015525818, -0.036346436, -0.04348755, -0.009841919, 0.013908386, 0.0033836365, -0.011260986, 0.0541687, 0.021636963, 0.015594482, 0.020614624, 0.017974854, 0.008613586, -0.00422287, -0.017288208, 0.020095825, 0.019485474, 0.016433716, -0.0013437271, -0.0011110306, 0.013145447, -0.00066947937, -0.031951904, 0.01727295, 0.060913086, -0.026397705, -0.06213379, -0.040618896, 0.05050659, -0.016036987, 0.018005371, -0.023162842, -0.018478394, -0.03262329, 0.043640137, -0.025054932, -0.0030326843, 0.0068969727, -0.047332764, -0.0038146973, 0.045562744, -0.038391113, -0.02696228, -0.041381836, -0.034057617, 0.01838684, -0.019317627, -0.023361206, -0.007259369, 0.009628296, -0.08074951, 0.044128418, 0.015098572, -0.028915405, -0.039245605, -0.068237305, 0.037750244, 0.044525146, 0.01914978, -0.043945312, 0.053497314, 0.00088596344, -0.014015198, 0.039764404, -0.016937256, -0.01890564, -0.014533997, 0.019744873, -0.014839172, -0.048553467, -0.0012989044, -0.024490356, -0.02909851, 0.036071777, 0.013381958, -0.038269043, -0.006916046, -0.053894043, -0.03338623, -0.023925781, -0.0011062622, 0.03945923, 0.04928589, 0.05899048, -0.011138916, 0.02218628, -0.051849365, 0.044128418, -0.008888245, -0.011726379, 0.016082764, 0.041656494, -0.009361267, -0.022323608, -0.02116394, 0.005115509, 0.0047683716, 0.004135132, -0.018936157, 0.0034370422, 0.07366943, -0.029052734, -0.008049011, 0.023880005, 0.044067383, 0.020080566, -0.044006348, -0.068359375, 0.030639648, -0.002746582, 0.048095703, 0.0029621124, -0.040893555, 0.013381958, 0.0024318695, -0.0016956329, -0.05355835, -0.02230835, 0.0063438416, -0.003566742, -0.009277344, -0.037597656, -0.023468018, -0.021194458, -0.0259552, 0.017471313, 0.022033691, 0.045013428, 0.034454346, 3.451109e-05, -0.032714844, -0.016998291, -0.01210022, -0.043029785, 0.013717651, 0.066467285, 0.0440979, -0.06732178, -0.048828125, -0.057159424, 0.09515381, -0.027801514, -0.009025574, -0.04220581, 0.021057129, 0.0357666, 0.016479492, 0.039031982, -0.009773254, -0.042755127, -0.022232056, -0.020721436, 0.0051193237, 0.030319214, -0.07739258, 0.013938904, -0.017715454, -0.0005106926, 0.013534546, 0.0023918152, -0.004360199, -0.004085541, 0.009101868, -0.042175293, 0.01184845, 0.002325058, -0.005302429, 0.026977539, 0.03237915, 0.013832092, -0.038269043, -0.0039520264, 0.0028705597, 0.013442993, 0.022094727, -0.030395508, 0.02633667, -0.05331421, 0.077819824, 0.04547119, 0.027526855, 0.07122803, 0.026992798, -0.018951416, -0.020553589, -0.012481689, 0.0044136047, 0.014297485, -0.0496521, 0.038330078, 0.07354736, 0.04510498, -0.022964478, 0.058013916, 0.048095703, 0.07678223, -0.0602417, -0.013793945, -0.009017944, -0.030288696, -0.051574707, 0.019470215, 0.016098022, -0.011062622, -0.014846802, 0.03918457, -0.028884888, -0.03050232, 0.037200928, -0.0132369995, 0.04977417, -0.0021781921, -0.009490967, 0.034423828, -0.0703125, -0.020233154, -0.036865234, 0.022781372, -0.01159668, 0.007850647, 0.04953003, -0.022628784, 0.07324219, -0.028060913, 0.06088257, 0.029449463, -0.021453857, -0.012039185, 0.0031642914, 0.0036067963, -0.009803772, 0.006702423, -0.002374649, 0.010139465, -0.01838684, 0.014762878, 0.00034570694, -0.013999939, 0.020874023, 0.019821167, 0.015609741, -0.004234314, 0.04714966, 0.015342712, 0.0121154785, 0.007873535, -0.030227661, -0.019302368, 0.02532959, 0.007167816, -0.024215698, -0.0025196075, 0.02029419, -0.023254395, 0.023849487, 0.007873535, 0.008010864, -0.008483887, 0.003162384, 0.045410156, -0.03152466, 0.01687622, -4.953146e-05, -0.01058197, 0.020904541, -0.04071045, -0.04135132, -0.024154663, 0.0026397705, 0.041656494, 0.041870117, -0.017654419, 0.063964844, 0.012535095, -0.0003092289, 0.054138184, 0.017333984, 0.017745972, -0.013496399, 0.03945923, -0.037200928, -0.0008177757, 0.011741638, 0.015396118, -0.023254395, -0.016586304, 0.013519287, 0.054992676, 0.03665161, 0.068359375, 0.015617371, -0.004562378, -0.0019187927, -0.010658264, -0.009101868, 0.06439209, 0.013328552, -0.004295349, -0.001458168, 0.0023860931, -0.008964539, -0.04638672, -0.053771973, 0.029754639, 0.015266418, 0.025894165, -0.017684937, -0.011138916, 0.0064811707, -0.036468506, 0.027374268, 0.0011825562, -0.00680542, 0.014793396, -0.022003174, -0.02079773, -0.018981934, -0.06567383, -0.026138306, 0.009933472, -0.045715332, 0.011940002, 0.052246094, -0.0345459, -0.025924683, 0.008514404, -0.004096985, -0.017593384, 0.038269043, 0.0044517517, -0.07312012, -0.024917603, -0.015235901, -0.011291504, 0.01461792, -0.038757324, -0.0035152435, -0.00894165, -0.019805908, 0.000808239, -0.001666069, 0.002527237, -0.00013113022, 0.015991211, 0.023803711, 0.060821533, -0.020736694, -0.02784729, -0.019378662, 0.05480957, -0.057037354, -0.03491211, -0.040771484, 0.026824951, 0.03338623, -0.06665039, 0.04827881, -0.04650879, -0.064086914, -0.0110321045, -0.0008382797, -0.03488159, -0.031707764, -0.06378174, -0.041290283, -0.03173828, 0.010688782, 0.08905029, 0.016098022, -0.018829346, 0.026748657, 0.00083208084, 0.0049476624, 0.016677856, 0.019226074, -0.0064430237, -0.010360718, -0.0011310577, 0.038604736, -0.061645508, 0.031066895, 0.029205322, -0.050750732, 0.003124237, 0.011940002, 0.06768799, -0.064453125, -0.0034561157, 0.00095415115, -0.05142212, -0.004802704, 0.027328491, -0.023376465, 0.027557373, -0.012275696, -0.033966064, 0.037506104, -0.03930664, -0.03677368, -0.022537231, -0.016662598, 0.030853271, -0.051330566, 0.009101868, -0.010284424, -0.041992188, 0.011871338, -0.03918457, -0.011413574, -0.00024080276, 0.039031982, 0.012771606, 0.0012168884, 0.052703857, 0.034088135, 0.034057617, 0.02041626, -0.018707275, -0.050842285, -0.04925537, 0.09490967, -0.012611389, 0.042419434, -0.03463745, 0.0357666, -0.019546509, -0.013847351, 0.015594482, -0.013824463, 0.003522873, 0.045776367, -0.015411377, 0.016952515, -3.7312508e-05, 0.021377563, 0.018371582, -0.05682373, -0.05444336, -0.073913574, 0.010650635, -0.054504395, 0.07055664, 0.055847168, -0.040374756, 0.10131836, 0.048675537, -0.007671356, 0.034240723, 0.01259613, 0.009002686, 0.006603241, 0.04522705, -0.010513306, 0.006462097, 0.016845703, -0.027008057, -0.010536194, -0.016540527, -0.05618286, 0.006515503, 0.011917114, -0.002319336, -0.0090408325, 0.010276794, 0.007194519, 0.028121948, -0.0052871704, -0.04663086, 0.025619507, -0.030715942, 0.009506226, -0.0027656555, -0.0066070557, -0.025421143, 0.053253174, -0.008911133, 0.0055160522, -0.0056991577, 0.025100708, 0.012901306, 0.043792725, 0.036987305, -0.0181427, 0.004875183, -0.00806427, -0.016403198, -0.059295654, -0.014022827, 0.05618286, 0.05645752, 0.02041626, -0.02067566, -0.030532837, -0.0115356445, -0.0262146, 0.027999878, -0.0069122314, -0.058532715, -0.02230835, 0.011550903, 0.01979065, -0.014541626, 0.045532227, -0.057525635, 0.028427124, -0.017623901, -0.06500244, -0.021118164, -0.024551392, -0.011398315, -0.016281128, 0.01687622, -0.024154663, -0.053588867, -0.05819702, 0.0138549805, -0.0015945435, 0.013435364, -0.013572693, 0.0135269165, -0.051940918, 0.021362305, -0.0029506683, -0.0016050339, 0.043945312, 0.011665344, 0.058654785, -0.044006348, -0.03161621, -0.0335083, 0.050079346, 0.0050697327, 0.021469116, -0.014556885, -0.019104004, 0.024871826, 0.0019207001, 0.024856567, -0.0044174194, -0.006137848, -0.03829956, -0.014587402, -0.04425049, -0.034301758, 0.05279541, -0.0463562, -0.02381897, -0.044799805, 0.07873535, -0.028717041, -0.013282776, -0.05090332, 0.011413574, 0.014831543, -0.009849548, -0.006374359, -0.008964539, 0.015945435, 0.03503418, -0.011489868, 0.0027103424, -0.01600647, 0.001162529, -0.026855469, 0.008796692, -0.0038719177, -0.005054474, -0.025405884, 0.027282715, -0.021652222, 0.0062179565, 0.02696228, -0.012954712, -0.019989014, 0.014419556, 0.02029419, 0.037017822, -0.023483276, -0.0020122528, 0.014717102, -0.024047852, -0.024887085, -0.008880615, -0.044128418, -0.011642456, -0.021820068, -0.017318726, 0.0008831024, -0.014793396, 0.008934021, 0.030197144, -0.026733398, 0.037994385, 0.007080078, 0.025619507, -0.003709793, 0.00724411, 0.06640625, 0.019836426, 0.040893555, 0.055541992, -0.043640137, -0.023956299, -0.03918457, -0.033721924, -0.013908386, -0.013534546, -0.05038452, 0.030319214, 0.00018644333, -0.017440796, 0.0031547546, 0.024017334, -0.020980835, -0.03213501, 0.04928589, -0.014343262, 0.024246216, -0.00028538704, 0.06744385, 0.00015556812, 0.02557373, -0.00440979, -0.019134521, -0.0025806427, 0.01184082, -0.044403076, 0.05001831, -0.0061683655, -0.06359863, -0.015106201, -0.0011062622, 0.037139893, -0.0020561218, 0.06317139, 0.024017334, 0.009117126, -0.06488037, 0.012809753, -0.0062675476, 0.023971558, -0.033050537, -0.0013084412, 0.03604126, 0.016067505, -0.0042304993, 0.030151367, 0.014297485, 0.014266968, 0.018295288, 0.007949829, -0.015731812, -0.02658081, 0.022033691, -0.0037174225, -0.046691895, -0.002155304, -0.051879883, -0.008117676, 0.007499695, -0.0096588135, -0.017715454, -0.0096588135, 0.0014810562, -0.01940918, -0.019958496, -0.012199402, 0.0018692017, -0.016860962, 0.027297974, -0.018539429, 0.0035686493, -0.020767212, 0.0024700165, -0.023513794, -0.028839111, -0.033203125, 0.049621582, -0.03100586, -0.009284973, 0.016357422, -0.047729492, 0.008010864, -0.0034828186, -0.018035889, -0.014625549, -0.0006904602, -0.0013036728, -0.011451721, -0.018981934, 0.035186768, -0.03982544, -0.018798828, -0.04397583, 0.032592773, 0.00060606, -0.034484863, 0.041748047, 0.0059890747, 0.0032405853, 0.01071167, -0.026611328, -0.042877197, 0.026397705, 0.0050315857, -0.041778564, 0.005680084, -0.014564514, 0.0033512115, 0.007286072, -0.029312134, -0.00806427, 0.03778076, -0.0032844543, -0.003686905, -0.0058403015, -0.025970459, 0.007511139, 0.014778137, 0.020370483, 0.011238098, -0.007423401, -0.015327454, 0.03656006, -0.061798096, -0.053710938, 0.050323486, 0.04333496, 0.009819031, -0.04336548, 0.020050049, 0.06921387, -0.023239136, 0.10028076, -0.038085938, -0.014724731, 0.01235199, 0.04324341, 0.040649414, 0.020599365, 0.007835388, -0.023529053, -0.015068054, 0.015670776, 0.023666382, 0.019515991, -0.053222656, -0.03878784, 0.06689453, 0.04928589, 0.0284729, 0.0093688965, 0.036956787, 0.03366089, -0.00049591064, -0.012413025, 0.068847656, -0.005897522, -0.03387451, -0.007045746, 0.0029335022, 0.04711914, 0.008255005, 0.013458252, 0.04562378, 0.039276123, -0.02557373, 0.053588867, -0.0087509155, 0.036315918, 0.020401001, -0.009513855, -0.03781128, 0.013000488, -0.0047569275, -0.012504578, 0.009895325, 0.02078247, -0.0007071495, 0.026519775, -0.0011720657, 0.029922485, -0.014251709, 0.047302246, 0.0017242432, -0.03866577, 0.013900757, 0.024108887, 0.017440796, 0.030090332, -0.060546875, -0.019515991, -0.0105896, 0.01637268, -0.016601562, 0.10443115, -0.033966064, 0.0073013306, -0.048706055, 0.011253357, -0.050689697, -0.028015137, 0.0137786865, 0.04421997, 0.0034179688, -0.015823364, 0.006175995, 0.014564514, 0.034484863, -0.06567383, 0.0211792, -0.016662598, -0.00048613548, -0.023117065, 0.028015137, -0.0335083, -0.049835205, 0.03918457, 0.04727173, -0.04547119, 0.014091492, 0.00868988, 0.0028209686, 0.0024318695, -0.027038574, 0.0027580261, -0.0008544922, -0.0012340546, 0.032928467, 0.015419006, 0.009017944, -0.009033203, -0.018005371, 0.013435364, 0.012817383, 0.004142761, 0.016281128, 0.070739746, 0.045043945, 0.06011963, 0.058135986, -0.0206604, 0.022003174, 0.055877686, -0.0045318604, -0.010383606, 0.018798828, -0.0019817352, -0.031433105, 0.0018863678, 0.014671326, -0.010803223, 0.014099121, 0.014022827, -0.00042963028, -0.011016846, -0.010231018, -0.017562866, 0.026351929, -0.009819031, 0.010101318, -0.035247803, 0.03857422, -0.012649536, -0.027496338, -0.04647827, -0.025558472, -0.031951904, 0.04336548, 0.008544922, -0.036987305, -0.021881104, -0.0119018555, 0.031951904, -0.06958008, 0.005958557, -0.022415161, 0.0791626, 0.010261536, 0.0826416, -0.048217773, -0.057128906, -0.06008911, 0.014793396, -0.071899414, 0.0015668869, -0.033233643, 0.024108887, 0.03024292, -0.00015866756, 0.021881104, 0.0501709, 0.003982544, -0.005279541, -0.03366089, -0.058563232, -0.027435303, 0.019165039, -0.01423645, -0.036193848, -0.027908325, 0.06439209, -0.002937317, 0.029083252, 0.025970459, -0.03353882, -0.026382446, -0.0077934265, -0.011138916, 0.016571045, -0.0016641617, 0.0042152405, 0.009651184, 0.006175995, -0.028625488, 0.033172607, 0.0076179504, 0.00046253204, 0.017196655, 0.03677368, 0.01687622, -0.012031555, -0.049102783, 0.010772705, -0.02357483, 0.009643555, 0.034332275, -0.010604858, -0.034362793, 0.018295288, -0.01902771, 0.043395996, 0.031021118, -0.016586304, -0.008491516, -0.03793335, -0.0030841827, -0.05508423, 0.0045814514, 1.7762184e-05, 0.023132324, -0.042419434, -0.012237549, 0.049865723, -0.029922485, -0.007369995, -0.026382446, 0.019119263, 0.013595581, -0.039367676, 0.00067186356, -0.06536865, -0.0065612793, 0.036743164, -0.015464783, 0.0028095245, -0.030303955, -0.03741455, -0.010238647, 0.0037651062, 0.0052986145, -0.0062026978, -0.008605957, 0.02230835, -0.00036096573, 0.023239136, -0.030258179, -0.036132812, -0.03741455, 0.021072388, 0.010726929, -0.006904602, 0.06665039, -0.05670166, 0.016479492, -0.009239197, 0.0059661865, -0.02432251, 0.021713257, 0.048706055, 0.0046081543, 0.034301758]}, "B07T6F3CWS": {"id": "B07T6F3CWS", "original": "Brand: GASPRO\nName: GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot\nDescription: Product description\uff1a
      Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
      Taking the regulator hose end connect to your 3/8\u2019\u2019 male flare connector propane appliance.
      Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8\"male flare connector
      0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
      This is an essential part of converting your fire pit/table to a larger flame

      Specification:
      Certificate : CSA
      Gas Type : LP/LPG
      Regulator Type : High Pressure
      Outlet Pressure : 0-20 PSIG
      Inlet Pressure \uff1a25-250 PSI
      Flow Capacity : 120000 BTU/Hr
      Hose Length : 8 feet/ 96 inch
      End Connector : 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

      NOTE:
      1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
      2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
      3.Not suitable for appliances which need low pressure regulator

      Warning:
      Only for OUTDOOR Use.\nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs\n\u3010Durable and Chew-proof\u3011 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u30108ft Length\u3011 Gives you adequate length for appliance and tank placement\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "metadata": {"Name": "GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot", "Brand": "GASPRO", "Description": "Product description\uff1a
      Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
      Taking the regulator hose end connect to your 3/8\u2019\u2019 male flare connector propane appliance.
      Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8\"male flare connector
      0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
      This is an essential part of converting your fire pit/table to a larger flame

      Specification:
      Certificate : CSA
      Gas Type : LP/LPG
      Regulator Type : High Pressure
      Outlet Pressure : 0-20 PSIG
      Inlet Pressure \uff1a25-250 PSI
      Flow Capacity : 120000 BTU/Hr
      Hose Length : 8 feet/ 96 inch
      End Connector : 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

      NOTE:
      1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
      2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
      3.Not suitable for appliances which need low pressure regulator

      Warning:
      Only for OUTDOOR Use.", "Features": "\u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs\n\u3010Durable and Chew-proof\u3011 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u30108ft Length\u3011 Gives you adequate length for appliance and tank placement\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03427124, 0.024108887, -0.01940918, -0.031433105, 0.0073127747, -0.015853882, -0.001964569, -0.035827637, 0.013244629, 0.013763428, -0.02180481, 0.015640259, 0.000500679, -0.02670288, 0.00932312, -0.023498535, 0.02368164, 0.03829956, 0.043029785, -0.003818512, 0.0025081635, 0.021560669, -0.0143585205, 0.06347656, 0.023422241, -0.009788513, 0.013725281, 0.011329651, 0.024459839, 0.02003479, 0.01878357, -0.022994995, 0.03656006, 0.03668213, -0.062561035, -0.042663574, 0.00969696, -0.017059326, -0.0569458, 0.074645996, -0.001821518, 0.012916565, -0.0054512024, 0.018356323, -0.022720337, -0.037353516, -0.007709503, -0.03930664, 0.0211792, 0.013076782, -0.008705139, 0.0064086914, -0.0019111633, -0.008277893, -0.014015198, -0.044403076, -0.021240234, 0.011878967, 0.002418518, 0.0234375, 0.0066871643, 0.020431519, 0.0058937073, 0.0018539429, -0.013442993, 0.021011353, 0.09082031, -0.022918701, 0.005290985, 0.001748085, 0.015838623, 0.012817383, 0.017456055, 0.01184082, -0.049194336, -0.015205383, 0.031082153, -0.01977539, 0.014404297, -0.005908966, 0.024871826, -0.012901306, 0.038848877, 0.0077056885, 0.01689148, 0.04925537, -0.010238647, -0.036895752, -0.04626465, -0.029754639, -0.019638062, -0.0043678284, -0.07611084, -0.0026893616, -0.00040340424, -0.025817871, -0.0073547363, -0.10235596, 0.03933716, 0.007896423, 0.065979004, -0.051696777, 0.059387207, 0.032318115, 0.018325806, 0.078552246, -0.024368286, 0.011627197, 0.034820557, -0.0033855438, 0.015365601, -0.03692627, -0.029754639, -0.019866943, -0.021148682, 0.038391113, -0.02520752, -0.030441284, -0.008743286, -0.026107788, -0.012329102, 0.008613586, 0.020065308, -0.01272583, -0.008491516, -0.0012607574, -0.021224976, -0.018218994, -0.044769287, 0.025680542, -0.0151901245, -0.0020103455, 0.048828125, 0.085632324, 0.01725769, -0.010383606, 0.007835388, -0.00020337105, -0.00030183792, 0.017440796, -0.013191223, -0.03729248, -0.013069153, 0.01953125, -0.00033068657, 0.026611328, 0.026016235, 0.00083065033, 0.012924194, -0.04449463, -0.03062439, 0.01335144, 0.042907715, 0.017333984, -0.035949707, 0.016967773, 0.021820068, -0.0040626526, -0.036224365, -0.038879395, -0.021331787, -0.036956787, -0.031234741, -0.018554688, -0.039794922, 0.051330566, 0.028411865, -0.0028629303, 0.0074043274, 0.024093628, -0.020614624, 0.041992188, 0.042541504, 0.009635925, 0.0035076141, -0.007835388, -0.038513184, 0.057891846, 0.09777832, -0.13439941, -0.052886963, -0.038330078, 0.14404297, -0.0362854, 0.028640747, -0.027496338, 0.008529663, -0.033721924, -0.016647339, 0.01600647, -0.013946533, 0.0552063, 0.003873825, -0.044036865, 0.0049476624, 0.015029907, -0.011650085, 0.030075073, -0.0059318542, -0.009239197, -0.052825928, 0.023025513, 0.00027608871, -0.0014333725, 0.0236969, 0.016677856, -0.011184692, 0.046203613, 0.052124023, 0.007698059, -0.0234375, -0.00541687, 0.011665344, -0.028961182, -0.047180176, 0.03173828, 0.0041618347, -0.016052246, 0.004623413, -0.015258789, 0.030334473, -0.009475708, 0.0018920898, 0.05441284, 0.0032691956, -0.03237915, 0.02267456, -0.007659912, 0.014282227, 0.018814087, -0.0042648315, -0.016082764, 0.05331421, 0.04916382, -0.020385742, 0.03744507, 0.0647583, 0.054870605, -0.036987305, -0.022338867, 0.012748718, -0.02949524, -0.053619385, -0.02456665, -0.04171753, -0.06317139, 0.00059747696, -0.009811401, -0.049194336, -0.010772705, 0.08001709, 0.02949524, 0.016052246, -0.0041923523, -0.025299072, 0.028564453, -0.03768921, 0.008354187, -0.04550171, 0.031402588, -0.008674622, 0.022781372, 0.039794922, -0.02067566, 0.052368164, 0.0052108765, 0.045135498, 0.030944824, -0.014472961, 0.010505676, 0.006664276, -0.0024108887, -0.007080078, 0.0029640198, -0.034973145, -0.0012350082, -0.006755829, 0.015930176, -0.043426514, -0.025482178, -0.005847931, 0.010734558, -0.012901306, -0.015792847, 0.04034424, -0.016326904, -0.016845703, -0.025054932, 0.030303955, 0.006542206, 0.039031982, -0.025436401, -0.012237549, -0.0027484894, 0.009971619, -0.051879883, 0.07342529, -0.039764404, 0.031799316, -0.03878784, 0.022323608, 0.049957275, -0.05029297, 0.036895752, -0.0031051636, -0.009124756, -0.002023697, 0.020263672, 0.012870789, -0.023010254, 0.003446579, 0.05126953, 0.02482605, -0.034454346, 0.042877197, 0.017211914, 0.016082764, 0.015266418, 0.017303467, 0.016921997, -0.008049011, 0.006706238, 0.010559082, -0.008270264, 0.025802612, -0.012840271, -0.00381279, -0.0024776459, -0.04244995, 0.020339966, 0.038482666, -0.010101318, -0.004512787, -0.017501831, 0.00969696, 0.004737854, -0.02116394, 0.07763672, -0.005970001, -0.057006836, -0.03677368, -0.037750244, 0.006931305, 0.011253357, -0.07556152, -0.017211914, 0.03125, -0.0054092407, 0.001159668, -0.017974854, 0.043518066, 0.012283325, -0.0016117096, -0.008598328, -0.0018672943, 0.01600647, -0.016723633, -0.038879395, -0.004863739, -0.08129883, -0.020721436, -0.015731812, -0.06427002, -0.06506348, 0.07489014, -0.0070343018, -0.06500244, -0.017425537, -0.0032920837, -0.0011529922, 0.0026626587, 0.0005354881, -0.01626587, -0.031051636, -0.02142334, -0.008369446, 0.045288086, -0.015579224, 0.004055023, 0.023498535, 0.021026611, 0.032470703, -0.014343262, 0.020584106, 0.0131073, 0.026153564, 0.05154419, 0.016937256, 0.01737976, -0.044433594, 0.001964569, 0.03387451, -0.04925537, -0.017730713, -0.0002309084, 0.0027694702, 0.010314941, -0.005874634, -0.022583008, -0.022537231, 0.0075416565, -0.00819397, -0.0068206787, -0.009513855, -0.00548172, -0.086120605, -0.0061912537, -0.02708435, 0.01966858, -0.009674072, -0.0003888607, 0.021820068, -0.018844604, 0.0009264946, -0.03363037, -0.0074920654, -0.025970459, -0.008049011, -0.041381836, 0.03378296, 0.07159424, -0.08239746, 0.028869629, 0.039520264, -0.020217896, 0.023223877, 0.0041275024, 0.012268066, -0.00023317337, 0.020019531, 0.0032253265, -0.024414062, -0.044403076, -0.011314392, -0.011268616, 0.018676758, 0.04260254, -0.008796692, 0.054718018, -0.019958496, -0.09820557, -0.028198242, -0.029052734, -0.014823914, -0.010437012, -0.038879395, -0.021560669, -0.08581543, 0.02432251, -0.03616333, 0.03463745, -0.008834839, 0.0803833, 0.022476196, -0.0019521713, 0.07873535, 0.021774292, 0.046813965, 0.004463196, 0.0038967133, -0.011924744, -0.035308838, 0.062072754, 0.005203247, -0.022827148, -0.01713562, 0.007335663, -0.00116539, -9.864569e-05, -0.025390625, -0.022125244, 0.06185913, -0.029541016, -0.005344391, 0.019104004, 0.024917603, -0.020370483, -0.0129470825, 0.024307251, 0.023025513, -0.026016235, 0.0026359558, -0.07293701, 0.06695557, 0.02508545, -0.014625549, 0.025299072, 0.034729004, 0.00042366982, -0.024642944, 0.06225586, -0.023086548, 0.017532349, 0.0061187744, 0.0024051666, -0.06439209, 0.0128479, -0.04800415, 0.021987915, 0.015129089, -0.048583984, 0.024597168, 0.0014734268, -0.038360596, -0.022018433, 0.0054779053, -0.016296387, 0.03286743, 0.027374268, -0.05999756, -0.007850647, -0.00995636, -0.014770508, 0.03149414, -0.039978027, -0.019332886, 0.0011920929, 0.025390625, -0.040924072, -0.006549835, -0.033233643, -0.02015686, 0.010147095, 0.042785645, -0.0039596558, 0.022888184, -0.033233643, 0.03845215, -0.01348114, 0.036132812, 0.035888672, 0.017608643, 0.0013198853, -0.047027588, 0.018493652, -0.03414917, -0.0025577545, 0.031982422, 0.03363037, -0.031707764, -0.0059051514, -0.0017251968, -0.0019874573, -0.0184021, -0.012184143, -0.05117798, -0.03111267, 0.021026611, -0.028656006, 0.018554688, 0.011222839, -0.010871887, -0.032714844, -0.014060974, -0.029663086, 0.0446167, -0.03286743, -0.0035438538, -0.011680603, 0.018493652, 0.003293991, 0.020568848, -0.04144287, -0.0036258698, -0.066833496, -0.0068511963, 0.05807495, 0.01309967, 0.01600647, -0.021743774, -0.021011353, -0.008071899, 0.02998352, -0.033996582, 0.007419586, -0.025619507, -0.017608643, -0.0057678223, 0.034332275, 0.05206299, 0.0010356903, 0.018005371, -0.03237915, -0.037963867, -0.072021484, 0.0015201569, 0.030883789, -0.024383545, -0.03604126, -0.007522583, 0.06365967, -0.0013036728, 0.017089844, 0.035003662, 0.031799316, -0.006690979, -0.0011472702, -0.12182617, -0.025894165, 0.0008497238, -0.009010315, 0.0016756058, -0.017242432, -0.0036449432, 0.061706543, 0.061401367, 0.036071777, 0.017440796, 0.0024356842, 0.032562256, -0.016357422, 0.0050849915, -0.023254395, 0.0025558472, -0.024719238, 0.012870789, -0.03250122, 0.017120361, 0.018737793, -0.0029067993, 0.009170532, -0.011817932, 0.001083374, -0.032348633, -0.012283325, 0.030044556, 0.03805542, 0.0034179688, -0.042236328, 0.0057525635, -0.03274536, -0.013290405, -0.004047394, 0.05697632, 0.021057129, -0.06903076, -0.006416321, -0.0231781, -0.021606445, -0.012229919, -0.0038375854, 0.0061569214, -0.022399902, 0.049621582, 0.015411377, 0.0011463165, 0.010719299, -0.02003479, -0.0041007996, -0.048828125, 0.01361084, -0.0005955696, -0.0140686035, 0.0015144348, 0.015686035, -0.004600525, -0.005897522, 0.017044067, 0.013267517, -0.0013694763, -0.033691406, 0.037384033, -0.003780365, -0.020553589, 0.06842041, -0.025466919, 0.001203537, 0.023651123, -0.0118637085, 0.033233643, -0.004901886, -0.020599365, -0.013664246, -0.01574707, 0.0055389404, -0.029769897, 0.05795288, 0.002840042, 0.019973755, -0.08154297, -0.007171631, -0.0075950623, -0.013427734, 0.048553467, -0.0418396, 0.03353882, 0.008834839, -0.021469116, 0.02684021, 0.013641357, -0.03189087, 0.0011873245, 0.021255493, -0.024780273, -0.035461426, 0.012565613, -0.008071899, -0.016433716, 0.015670776, -0.030761719, 0.03250122, -0.0065345764, -0.06109619, -0.036743164, -0.021469116, 0.014137268, -0.014724731, -0.007472992, -0.0119018555, 0.0050849915, -0.010787964, -0.008514404, 0.029342651, 0.014793396, -0.033081055, -0.034484863, -0.010108948, 0.02130127, -0.0072364807, 0.032440186, -0.010063171, -0.023162842, 0.00093078613, 0.0077209473, 0.016525269, -0.024597168, -0.024307251, 0.006919861, -0.000538826, 0.0035152435, -0.029800415, -0.016525269, 0.072631836, -0.04284668, -0.06347656, 0.0033473969, 0.013893127, -0.009719849, -0.02293396, 0.062561035, 0.03387451, 0.0011501312, 0.030014038, 0.0049591064, -0.05505371, 0.010734558, 0.0027122498, -0.065979004, -0.09259033, -0.048339844, -0.05859375, 0.0065307617, -0.025405884, -0.04095459, 0.016220093, -0.041748047, 0.02456665, -0.022445679, -0.013519287, -0.025772095, -0.011741638, 0.0010757446, 0.00089502335, 0.050079346, -0.012649536, 0.051513672, -0.061340332, -0.060302734, -0.024002075, 0.02645874, 0.003686905, 0.024856567, -0.006088257, 0.01725769, -0.03640747, 0.022521973, 0.0090408325, -0.02746582, -0.027923584, 0.009292603, 0.009292603, 0.04397583, -0.040985107, 0.004245758, -0.0019054413, 0.017166138, -0.04864502, 0.025650024, -0.041503906, -0.05206299, -0.01802063, 0.05291748, -0.011978149, -0.009719849, -0.001496315, 0.024475098, 0.011207581, -0.027679443, -0.020507812, -0.017349243, 0.0025691986, -0.03201294, -0.03527832, -0.023788452, -0.02571106, -0.009284973, 0.0075263977, -0.005458832, -0.056854248, 0.05078125, -0.017822266, -0.016983032, 0.012954712, -0.018829346, 0.027389526, -0.02949524, 0.01876831, -0.009162903, -0.0037460327, 0.000682354, -0.008712769, 0.03012085, 0.033599854, 0.00058221817, -0.057037354, 0.019363403, 0.04534912, -0.05480957, -0.01398468, -0.0027675629, 0.011680603, -0.030899048, -0.0022621155, 0.00932312, -0.006374359, 0.022201538, 0.026504517, 0.042022705, -0.024536133, 0.03250122, 0.002565384, -0.0028457642, -0.020645142, -0.015342712, 0.007904053, -0.027145386, 0.0008444786, 0.010848999, -0.04071045, 0.01625061, 0.019989014, -0.010818481, 0.026123047, -0.035186768, 0.014846802, -0.014762878, 0.029449463, -0.01625061, -0.03829956, -0.029220581, 0.012123108, 0.019165039, 0.05935669, -0.014434814, 0.020507812, -0.052642822, -0.009086609, 0.012062073, -0.030700684, 0.0054130554, 0.02670288, -0.0546875, -0.057159424, -0.04815674, -0.013587952, -0.0446167, 0.010253906, 0.007434845, -0.01109314, 0.029144287, -0.0065689087, 0.013725281, 0.06903076, 0.025146484, 0.033966064, -0.055267334, 0.006958008, 0.03262329, 0.0051651, -0.005847931, -0.006652832, -0.016036987, -0.0042686462, 0.0010585785, -0.031463623, -0.0034122467, -0.0064811707, 0.0005068779, -0.0009417534, -0.030944824, 0.019561768, 0.0039482117, 0.031341553, -0.03213501, 0.018096924, -0.040252686, -0.085998535, -0.028839111, -0.005958557, -0.055541992, 0.0440979, 0.023880005, -0.010871887, 0.026473999, -0.014030457, -0.050720215, -0.012054443, 0.008987427, 0.02154541, 0.009681702, 0.0099105835, 0.054382324, -0.023620605, -0.0826416, -0.043151855, 0.05444336, -0.0758667, -0.03010559, -0.04425049, 0.028930664, 0.021392822, 0.00705719, 0.038146973, 0.047180176, 0.00970459, 0.0035266876, -0.01171875, -0.03152466, -0.0206604, 0.034484863, 0.0039253235, -0.021987915, -0.036346436, 0.024291992, 0.0030975342, 0.041534424, -0.0012598038, 0.04486084, -0.024337769, 0.029571533, -0.01499939, -0.025939941, -0.0072288513, -0.012008667, 0.050476074, 0.036468506, -0.029464722, 0.042144775, 0.015060425, 0.021209717, 0.023910522, 0.018096924, 0.042663574, -0.024276733, -0.054473877, -0.031021118, -0.021133423, 0.027679443, 0.039794922, -0.017700195, 0.022262573, 0.012466431, -0.018829346, -0.0043678284, -0.000992775, 0.009635925, 0.024490356, -0.0033912659, 0.017822266, -0.0008196831, -0.036132812, -0.015113831, -0.027191162, -0.03353882, 0.0048980713, 0.018447876, -0.03741455, -0.039489746, -0.0030231476, -0.00045204163, -0.027618408, -0.033416748, -0.020263672, 0.006668091, 0.02418518, -0.011138916, 0.037719727, -0.0309906, 0.04336548, 0.00491333, -0.052490234, 0.013519287, 0.043182373, -0.0075683594, -0.052124023, 0.021591187, 0.026641846, 0.053955078, -0.020874023, -0.07476807, -0.07055664, 0.04147339, 0.035827637, -0.020263672, 0.068847656, -0.0031204224, 0.014060974, 0.012863159, -0.027740479, -0.01133728, -0.010627747, -0.008781433, -0.024108887, 0.003440857]}, "B07QBZN1HS": {"id": "B07QBZN1HS", "original": "Brand: Unicook\nName: Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe\nDescription: Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

      Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

      Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won't wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0\u00b0F, ensure superior performance and long-lasting.

      Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
      1. Constructed with new generation rip & fade resistant fabric and vinyl coating
      2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
      3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
      4. Fastening straps at bottom keep your bbq cover securely in place

      Care and Use:
      1. Allow grill to cool before covering
      2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
      3. Air Dry for next use.

      Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the \"Visit the Unicook Store\" button to get the proper cover you need.\nFeatures: \u3010Grill Cover Dimension\u3011- 60 inch grill cover measures 60\"W x 23\"D x 42\"H, fits most brands of grill with width between 54\" and 58\". \ufe61Measure your grill before purchasing to determine the proper cover.\n\u3010Fade Resistant\u3011- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection.\n\u3010No Water Leaking\u3011- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams.\n\u3010Handles and Straps\u3011- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days.\n\u3010Wide Selection\u3011 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "metadata": {"Name": "Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe", "Brand": "Unicook", "Description": "Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

      Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

      Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won't wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0\u00b0F, ensure superior performance and long-lasting.

      Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
      1. Constructed with new generation rip & fade resistant fabric and vinyl coating
      2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
      3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
      4. Fastening straps at bottom keep your bbq cover securely in place

      Care and Use:
      1. Allow grill to cool before covering
      2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
      3. Air Dry for next use.

      Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the \"Visit the Unicook Store\" button to get the proper cover you need.", "Features": "\u3010Grill Cover Dimension\u3011- 60 inch grill cover measures 60\"W x 23\"D x 42\"H, fits most brands of grill with width between 54\" and 58\". \ufe61Measure your grill before purchasing to determine the proper cover.\n\u3010Fade Resistant\u3011- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection.\n\u3010No Water Leaking\u3011- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams.\n\u3010Handles and Straps\u3011- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days.\n\u3010Wide Selection\u3011 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019622803, 0.0008277893, -0.014640808, -0.02027893, -0.015655518, 0.027572632, -0.053588867, -0.0035095215, -0.033203125, -0.006275177, -0.0011014938, 0.038238525, -0.032592773, -0.028335571, 0.0026931763, -0.029891968, -0.007331848, 0.010398865, 0.01309967, -0.019058228, -0.0032348633, -0.02293396, 0.029663086, 0.002281189, 0.002243042, -0.010292053, 0.012565613, 0.012367249, 0.0030059814, -0.006427765, 0.0124053955, -0.0093307495, 0.066101074, -0.015899658, -0.04837036, 0.035736084, -0.0028152466, -0.014717102, -0.017593384, 0.0074920654, 0.01776123, -0.0044937134, 0.0061416626, -0.022338867, 0.014076233, -0.058166504, 0.045654297, -0.056243896, -0.015586853, -0.0021591187, 0.026657104, 0.028244019, 0.027496338, -0.003660202, 0.014579773, 0.054748535, -0.03164673, -0.00040125847, 0.033233643, 0.01398468, -0.011764526, -0.020462036, 0.00907135, -0.029937744, -0.035461426, -0.02015686, 0.08666992, -0.005455017, -0.08972168, -0.06903076, 0.07562256, 0.022750854, 0.04336548, -0.012451172, 0.012802124, -0.04498291, 0.0056991577, -8.028746e-05, 0.020462036, 0.0048332214, -0.01663208, -0.046020508, 0.028549194, -0.0003578663, -0.027435303, 0.00066947937, -0.01687622, 0.0007019043, 0.014602661, 0.011116028, 0.006839752, 0.0619812, -0.026412964, 0.03353882, 0.0181427, -0.019439697, -0.018859863, -0.021224976, 0.017593384, 0.021957397, 0.013633728, -0.035980225, 0.05444336, -0.021881104, -0.024871826, 0.050354004, -0.0033092499, 0.016189575, -0.008293152, 0.0076789856, 0.0019817352, -0.06719971, -0.020065308, -0.061828613, -0.04083252, 0.055511475, 0.0069465637, -0.05267334, 0.043701172, -0.03994751, -0.06903076, -0.041931152, -0.006504059, 0.010368347, 0.044525146, 0.024475098, 0.027359009, 0.032165527, -0.036590576, -0.0021381378, -0.024093628, 0.014854431, 0.03579712, 0.057434082, 0.03338623, -0.014373779, 0.060913086, 0.0041542053, -0.009567261, 0.022247314, -0.035583496, 0.030395508, 0.04446411, -0.05041504, -0.0057792664, 0.026779175, 0.016525269, 0.0013942719, 0.004436493, -0.052459717, 0.014198303, -0.017715454, 0.054229736, -0.0047912598, -0.07775879, -0.010574341, 0.026641846, -0.024383545, -0.051330566, -0.07727051, 0.006565094, -0.028747559, -0.03778076, -0.02859497, -0.047027588, 0.035491943, 0.0048103333, 0.012786865, 0.02796936, 0.019683838, 0.029953003, -0.004760742, 0.010231018, -0.017837524, -0.018112183, -0.00818634, -0.05670166, 0.104003906, 0.070617676, -0.06512451, -0.04034424, -0.06359863, 0.14367676, -0.01889038, 0.016906738, -0.028686523, 0.017211914, -0.00018453598, 0.012809753, 0.01889038, -0.011047363, -0.010246277, 0.019699097, -0.00060510635, -0.009185791, -0.0061149597, -0.042297363, 0.01335907, -0.024871826, -0.023620605, -0.05899048, 0.018539429, 0.0009613037, 0.0053710938, 0.018249512, -0.012420654, 0.0016117096, 0.034698486, -0.017318726, 0.0070724487, 0.012893677, -0.015716553, -0.022994995, -0.02973938, -0.019241333, 0.025543213, -0.00868988, 0.010543823, 0.0069847107, -0.017745972, 0.04135132, -0.01348114, 0.0317688, 0.061065674, 0.0051994324, -0.0043182373, -0.031158447, 0.008605957, -0.018005371, 0.015235901, -0.032592773, 0.035491943, 0.0826416, 0.015991211, -0.035461426, 0.048187256, 0.048065186, -0.010879517, -0.04562378, 0.030929565, -0.0024089813, -0.0118255615, -0.048461914, 0.0113220215, 0.00844574, -0.013137817, -0.016998291, 0.02722168, -0.034698486, -0.025787354, 0.030593872, 0.00472641, 0.021697998, 0.0016775131, -0.009757996, 0.034118652, -0.045013428, 0.018875122, -0.0317688, 0.0032196045, -0.022201538, 0.020095825, 0.0703125, -0.02381897, 0.010955811, 0.006225586, 0.01398468, 0.03164673, 0.002784729, -0.00053596497, -0.009757996, -0.017059326, -0.006034851, 0.042663574, 0.010856628, -0.012191772, -0.027435303, -0.0036525726, 0.0046310425, 0.012641907, 0.020629883, 0.052856445, 0.004699707, -0.010009766, -0.004245758, -0.01625061, 0.0064086914, 0.023986816, -0.020965576, 0.01335907, 0.017440796, 0.03173828, -0.0030441284, 0.006385803, 0.011222839, 0.00020933151, 3.963709e-05, 0.026412964, -0.002664566, -0.03314209, 0.011421204, 0.031585693, -0.013153076, -0.008705139, 0.001912117, 0.034576416, 0.007820129, 0.00522995, 0.015472412, -0.011581421, 0.005504608, 0.048461914, 0.030410767, -0.024795532, 0.0848999, 0.023147583, 0.034210205, 0.06842041, 0.060333252, 0.04714966, -0.03515625, -0.028076172, -0.020889282, -0.015975952, -0.003709793, 0.03286743, -0.023269653, 0.018737793, -0.019363403, 0.03567505, -0.015823364, -0.023651123, -0.051727295, -0.024032593, -0.0043563843, 0.03289795, -0.0006814003, 0.0033607483, 0.0014572144, -0.009521484, -0.009307861, 0.027404785, -0.014625549, -0.07232666, -0.052001953, -0.029388428, 0.08013916, 0.0005507469, -0.042510986, 0.0036010742, 0.033599854, -0.044952393, -0.02180481, -0.0736084, -0.023498535, -0.0029335022, -0.005302429, -0.109375, -0.032318115, -0.12695312, -0.015045166, -0.021942139, -0.054718018, 0.040008545, 0.07873535, -0.024414062, -0.04006958, 0.002336502, 0.004814148, 0.0014696121, 0.013885498, 0.021484375, -0.03994751, -0.025146484, -0.015396118, -0.0022468567, 0.011054993, -0.025543213, 0.005054474, -0.006225586, 0.0037403107, -0.010612488, -0.00724411, -0.047698975, 0.018493652, 0.021316528, 0.014442444, 0.06274414, -0.0055122375, -0.0335083, 0.0038814545, 0.071777344, -0.025650024, -0.030258179, 0.012374878, 0.02947998, 0.003627777, -0.008102417, 0.0057029724, -0.030258179, -0.06707764, 0.01210022, -0.00043559074, -0.03353882, -0.020477295, -0.048736572, -0.04031372, -0.03982544, 0.010032654, 0.060577393, -0.03213501, 0.0026569366, -0.04107666, -0.0006723404, 0.00258255, 0.006980896, 0.0021324158, -0.0061035156, -0.002450943, 0.011581421, 0.005207062, 0.0036087036, 0.0065612793, 0.033172607, -0.019424438, 0.009864807, -0.018157959, 0.018035889, -0.032989502, 0.0021533966, -0.0102005005, -0.026107788, 0.0015869141, 0.018676758, -0.03842163, 0.0043411255, 0.0023670197, -0.00818634, 0.039001465, -0.047973633, -0.0069732666, -0.02003479, -0.021713257, 0.046081543, 0.0026550293, -0.004108429, -0.027069092, -0.0440979, -0.03604126, -0.016342163, 0.0030727386, 0.019439697, 0.027908325, 0.030960083, 0.012786865, 0.07281494, 0.0015926361, 0.033935547, -0.008155823, 0.0044898987, -0.011878967, -0.030731201, 0.051116943, -0.0075531006, 0.0029201508, -0.01612854, 0.008514404, -0.0002937317, -0.032348633, 0.018371582, -0.013687134, 0.025665283, 0.007873535, -0.025054932, 0.020980835, -0.012107849, -0.0042648315, -0.0015602112, -0.0030937195, -0.013031006, -0.06518555, 0.0079193115, -0.0635376, 0.07342529, 0.06365967, -0.029647827, 0.09063721, 0.05444336, -0.029815674, 0.027755737, 0.018966675, 0.0005068779, 0.009254456, 0.030578613, -0.037597656, 0.017593384, 0.016113281, -0.019088745, -0.012817383, -0.024475098, -0.022155762, -0.030975342, -0.055480957, 0.008255005, -0.035827637, 0.022262573, 0.041015625, -0.017791748, 0.004032135, -0.03338623, -0.006954193, -0.04888916, 0.013519287, 0.0078048706, -0.021438599, -0.010154724, 0.028808594, -0.013633728, -0.011123657, 0.0006585121, 0.013397217, 0.0010824203, 0.018081665, 0.012825012, -0.0043258667, 0.004814148, 0.012504578, -0.004699707, -0.014625549, -0.0019073486, 0.027023315, 0.017990112, 0.00052928925, -0.004623413, -0.0025691986, 0.0104599, -0.0009531975, 0.014518738, -0.029510498, -0.039276123, -0.022262573, 0.04650879, 0.042877197, -0.021713257, 0.013404846, -0.040100098, 0.01146698, 0.011024475, -0.014030457, -0.008804321, -0.006011963, 0.005680084, -0.009422302, 0.026321411, -0.010108948, -0.03186035, -0.08325195, 0.019454956, 0.00031733513, 0.006362915, -0.026321411, 0.0680542, -0.052093506, -0.027175903, -0.0023555756, -0.007835388, 0.07244873, 0.05078125, 0.0017585754, -0.014442444, -0.019561768, -0.014373779, 0.06500244, 0.01146698, -0.0015172958, -0.027389526, -0.034088135, -0.0049095154, 0.01109314, 0.06439209, -0.016952515, 0.039123535, -0.026367188, 0.014968872, -0.060455322, -0.028137207, 0.04776001, -0.06100464, -0.04852295, -0.0501709, 0.09118652, -0.012771606, -0.031433105, -0.024124146, 0.027740479, 0.0126953125, 0.04309082, 0.01134491, 0.035186768, 0.024887085, 0.0033226013, -0.013381958, -0.0058784485, -0.01802063, 0.018432617, -0.043670654, -0.02684021, -0.023849487, 0.007156372, 0.041625977, -0.04248047, 0.029220581, -0.022125244, -0.023101807, -0.012519836, 0.00034451485, -0.035125732, 0.060302734, 0.060272217, -0.006614685, -0.0051498413, 0.0095825195, -0.03137207, -0.07476807, -0.0021781921, -0.04373169, 0.012992859, 0.0013313293, -0.01953125, -0.026947021, -0.01939392, -0.008110046, 0.028198242, -0.0015916824, 0.030273438, -0.014259338, 0.018508911, 0.015853882, -0.009994507, 0.017211914, 0.0023384094, 0.001077652, -0.014091492, -0.025131226, -0.048431396, -0.04647827, -0.02734375, -0.019119263, -0.01864624, -0.06512451, 0.014144897, 0.023895264, -0.009338379, 0.04156494, 0.0121154785, -0.0039367676, -0.053894043, 0.0048446655, 0.019424438, -0.018707275, -0.030731201, 0.06311035, -0.012397766, 0.046722412, 0.042510986, -0.041931152, -0.04071045, 0.017303467, -0.05709839, 0.07055664, -0.017089844, -0.06982422, 0.010375977, 0.0012578964, 0.011314392, -0.006214142, 0.036834717, 0.0061302185, -0.013092041, -0.035980225, 0.001871109, -0.0056610107, 0.03857422, -0.044433594, 0.0024585724, 0.034484863, 0.022445679, -0.004085541, 0.022140503, 0.033691406, 0.0031871796, 0.010543823, 0.015563965, -0.008934021, -0.049926758, 0.00055933, -0.033111572, -0.0309906, -0.06414795, 0.004371643, 0.020217896, -0.014038086, -0.01600647, -0.053222656, 0.016311646, -0.034301758, -0.015792847, -0.0020999908, 0.018753052, 0.014289856, 0.0058670044, 0.02947998, -0.016036987, -0.0017356873, -0.025543213, -0.002319336, -0.017349243, 0.0019664764, -0.0107040405, 0.03817749, -0.020019531, -0.01272583, -0.01272583, -0.012413025, 0.012489319, -0.024261475, -0.029296875, 0.008216858, 0.008880615, 0.014411926, -0.03692627, 0.022399902, 0.03591919, -0.049438477, -0.015396118, -0.06713867, -0.00573349, -0.039611816, -0.0657959, 0.002193451, 0.03793335, -0.0043296814, 0.024154663, -0.0071487427, -0.042541504, 0.04220581, 0.0067596436, -0.080200195, 0.00365448, -0.017288208, 0.0010089874, -0.001748085, 0.003458023, 0.007385254, 0.040924072, -0.012428284, -0.010131836, 0.019317627, 0.0042915344, -0.011550903, -0.020965576, 0.038238525, -0.0022525787, -0.01789856, -0.03375244, -0.030761719, -0.089782715, -0.025436401, 0.023666382, 0.039855957, 0.04598999, -0.012428284, 0.035980225, 0.047027588, -0.05456543, 0.06866455, -1.6987324e-05, -0.041809082, -0.0062217712, 0.02658081, 0.035491943, -0.0031318665, -0.021194458, -0.015563965, -0.0013608932, 0.020385742, 0.037322998, -0.016067505, -0.021377563, -0.028808594, 0.06210327, 0.030258179, -0.0055770874, 0.00059843063, 0.018539429, 0.022781372, -0.008346558, -0.008216858, 0.024139404, -0.01701355, 0.011726379, -0.032562256, 0.02406311, 0.016296387, 0.017974854, -0.010757446, -0.010414124, 0.047546387, -0.03173828, 0.046325684, 0.0025081635, -0.0041046143, 0.010971069, -0.0062217712, 0.011306763, -0.002670288, -0.009689331, -0.0023021698, -0.0050354004, -0.042907715, 0.017044067, 0.04043579, -0.024246216, 0.0368042, 0.01586914, -0.03164673, -0.0037403107, 0.0033283234, 0.04272461, 0.044830322, -0.016784668, 0.022964478, -0.07183838, -0.011245728, 0.02003479, -0.022003174, -0.02520752, 0.059020996, 0.011054993, -0.010643005, -0.018630981, -0.017822266, 0.009117126, -0.013427734, 0.012702942, 0.023468018, 0.011505127, -0.0026340485, -0.040283203, -0.006427765, 0.04916382, -0.015594482, -0.012107849, 0.0044403076, 0.02861023, -0.007797241, 0.03643799, -0.015792847, -0.032592773, 0.029464722, 0.007133484, -0.011459351, 0.02041626, 0.038391113, 0.002243042, -0.0028572083, -0.028335571, 0.035949707, 0.002521515, 0.040374756, 0.020690918, 0.02394104, -0.022125244, -0.024719238, -0.026550293, 0.006965637, -0.0021533966, 0.029190063, 0.003993988, -0.0021190643, -0.012527466, 0.026779175, 0.010978699, -0.037261963, 0.0053482056, 0.047180176, -0.027572632, -0.018936157, -0.0256958, 0.010894775, 0.005214691, -0.030090332, -0.0051002502, -0.0064353943, -0.019958496, 0.03189087, 0.013343811, 0.004180908, -0.050109863, 0.038024902, -0.0029964447, -0.04940796, 0.018508911, -0.041290283, 0.022125244, -0.023529053, -0.039031982, -0.056854248, -0.060333252, -0.027893066, 0.0703125, -0.03479004, -0.04446411, -0.01651001, 0.01285553, -0.0008249283, -0.08392334, -0.047851562, -0.02923584, 0.017929077, 0.021591187, 0.061676025, -0.032104492, -0.062042236, -0.07171631, 0.031402588, -0.083496094, -0.0231781, -0.022445679, 0.03591919, 0.057434082, 0.022262573, 0.0340271, 0.056427002, 0.008422852, 0.0016736984, -0.00248909, -0.0178833, -0.034606934, 0.07220459, 0.004623413, -0.0036296844, 0.0036907196, 0.044158936, 0.0022258759, 0.0070114136, 0.026565552, -0.04067993, -0.02015686, 0.0013027191, -0.0036411285, 0.019622803, -0.0017347336, -0.0015153885, 0.009460449, 0.027053833, -0.027801514, -0.005203247, 0.0015201569, -0.019332886, 0.015457153, 0.04824829, 0.0072669983, 0.014968872, -0.030914307, 0.01322937, -0.018096924, -0.0027503967, 0.023330688, 0.00016307831, -0.02734375, -0.009170532, -0.0002696514, -0.0011920929, 0.0057678223, -0.025375366, -0.022262573, 0.019012451, -0.007801056, -0.040161133, 0.013313293, -0.005630493, -0.010025024, -0.050048828, 0.02268982, 0.036956787, -0.034973145, -0.021530151, 0.008430481, -0.017456055, 0.0001205802, -0.013618469, -0.044799805, -0.025741577, 0.009963989, 0.042266846, -0.018188477, -0.0020046234, -0.029266357, 0.020339966, -0.013519287, 0.014427185, 0.00793457, 0.0033817291, -0.010345459, -0.011871338, -0.0075302124, 0.05783081, -0.034088135, -0.06689453, -0.07879639, 0.05517578, 0.049835205, -0.021865845, 0.101745605, -0.005332947, 0.018615723, 0.028198242, 0.0072784424, -0.00793457, 0.029937744, 0.029434204, 0.023162842, 0.01966858]}, "B07H5RHXJN": {"id": "B07H5RHXJN", "original": "Brand: Weber\nName: Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nGS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\n", "metadata": {"Name": "Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nGS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.027938843, -0.0014772415, -0.045013428, 0.011306763, -0.015068054, -0.008720398, -0.013595581, -0.001411438, -0.037231445, 0.035858154, 0.029891968, 0.018463135, 0.006126404, -0.038085938, 0.019485474, 0.0004222393, 0.032043457, 0.0042762756, 0.0072669983, -0.021850586, 0.022018433, -0.00945282, 0.005306244, 0.070617676, 0.031463623, -0.0574646, 0.04849243, -9.435415e-05, 0.031158447, 0.011100769, 0.026275635, -0.015640259, 0.013114929, 0.03475952, -0.032287598, -0.029449463, 0.027542114, 0.005710602, 0.00868988, 0.009925842, 0.032684326, -0.020065308, -0.02760315, 0.0065307617, -0.024597168, -0.05117798, 0.04815674, -0.015716553, 0.02456665, 0.055511475, -0.006298065, 0.033355713, -0.023773193, 0.046783447, -0.010818481, -0.030670166, -0.0034332275, 0.021194458, 0.013626099, 0.0033435822, -0.0017528534, 0.015274048, 0.012016296, -0.0018148422, -0.03314209, -0.00667572, 0.07751465, -0.021972656, -0.026870728, -0.054626465, 0.04977417, 0.021759033, 0.02809143, -0.03881836, 0.0005569458, -0.017242432, -0.002658844, -0.03161621, 0.018585205, -0.004676819, -0.022384644, -0.004486084, -0.001876831, 0.0011749268, -0.014152527, 0.0018968582, -0.03527832, -0.005306244, -0.010543823, -0.037109375, -0.0072021484, -0.01890564, -0.036346436, 0.035217285, -0.0036468506, -0.02178955, -0.018325806, -0.052520752, 0.046722412, 0.01953125, 0.015380859, -0.030456543, 0.027267456, -0.009277344, -0.008293152, 0.06463623, -0.016082764, 0.03555298, 0.014442444, 0.010910034, -0.0055770874, -0.076049805, 0.00137043, -0.041412354, -0.024353027, 0.043518066, 0.01991272, -0.027191162, 0.019882202, -0.040283203, 0.0034713745, 0.007972717, 0.020721436, 0.026443481, 0.008140564, 0.0340271, -0.018951416, -0.029174805, -0.044830322, 0.028671265, -0.034820557, 0.00030207634, 0.064819336, 0.07342529, 0.014511108, -0.012252808, 0.006904602, 0.009994507, 0.025924683, -0.011924744, 0.0037174225, -0.03225708, -0.007537842, 0.02154541, 0.04550171, 0.024536133, 0.028930664, -0.0015983582, 0.008155823, -0.05126953, 0.04949951, -0.019073486, 0.048858643, 0.0030441284, -0.037475586, 0.0037231445, 0.01638794, -0.015258789, -0.047546387, -0.03173828, -0.015411377, -0.031829834, 0.0068626404, 0.026260376, -0.015777588, 0.057647705, 0.010848999, 0.014915466, 0.008392334, 0.01272583, -0.029190063, -0.026992798, 0.016616821, 0.0046653748, -0.008911133, 0.032806396, -0.008483887, 0.022537231, 0.03930664, -0.027038574, -0.027816772, -0.053894043, 0.055725098, -0.011077881, -0.013961792, 0.03955078, 0.01966858, 0.017578125, -0.00013172626, -6.908178e-05, 0.045166016, 0.02986145, -0.013366699, 0.025909424, 0.016586304, -0.016952515, -0.050231934, 0.0034885406, -0.017593384, -0.025436401, 0.009849548, -0.013153076, -0.016967773, -0.012229919, -0.024551392, -0.04119873, 0.006538391, 0.004234314, 0.01889038, 0.014320374, -0.021896362, -0.03765869, 0.049041748, -0.072509766, -0.026947021, 0.025512695, -0.026657104, 0.010406494, 0.01071167, 0.0029964447, 0.035583496, 0.015716553, 0.021759033, -0.0028934479, 0.040374756, 0.021484375, -0.014877319, 0.017044067, 0.05783081, 0.021530151, -0.0038642883, -0.024978638, 0.09075928, 0.08929443, -0.0070724487, 0.047424316, 0.09008789, 0.06311035, -0.028701782, -0.033294678, 0.014625549, -0.04272461, -0.06341553, -0.036621094, -0.036071777, -0.008422852, 0.0011148453, -0.0045051575, -0.034118652, -0.007980347, 0.030441284, 0.01651001, 0.04360962, 0.029342651, -0.04345703, 0.06311035, 0.0072784424, -0.028717041, -0.01902771, 0.045898438, 0.014595032, 0.06762695, -0.0066604614, 0.034301758, 0.059814453, 0.005455017, 0.023864746, 0.005393982, -0.050323486, 0.026916504, 0.026794434, -0.007904053, -0.015174866, -0.017623901, 0.018920898, -0.0018987656, -0.039001465, 0.025604248, 0.022598267, -0.012107849, 0.019989014, 0.03173828, 0.0007185936, -0.014343262, 0.04736328, 0.026412964, -0.008476257, -0.020629883, -0.045715332, -0.019973755, 0.033447266, -0.05886841, -0.04397583, -0.037994385, -0.009529114, -0.042297363, 0.058013916, -0.0039749146, -0.0019836426, -0.027542114, 0.027709961, 0.026123047, -0.03857422, -0.0057029724, 0.004886627, -0.00818634, 0.012916565, 0.016738892, 0.005744934, -0.020126343, -0.007583618, 0.017913818, 0.016662598, 0.0038986206, 0.022460938, -0.014183044, -0.0023441315, 0.048065186, 0.032440186, 0.034698486, -0.030776978, 0.0335083, -0.0440979, -0.035827637, 0.01713562, 0.048553467, -0.0803833, -0.004714966, -0.027374268, -0.017501831, -0.06713867, -0.07092285, -0.035614014, 0.023544312, -0.015541077, 0.011108398, 0.027557373, -0.021835327, 0.013038635, -0.009185791, 0.064086914, 0.0021209717, -0.020690918, 0.008483887, -0.031402588, 0.0031166077, 0.00818634, 0.014289856, -0.014152527, 0.0014152527, 0.0009083748, -0.025985718, 0.005256653, -0.020339966, 0.0025196075, -0.03112793, -0.013397217, -0.05621338, -0.049102783, -0.09289551, 0.010108948, -0.023101807, -0.04949951, -0.020324707, 0.036743164, -0.0068130493, -0.041625977, -0.011779785, -0.029586792, 0.017440796, 0.022018433, 0.0032539368, -0.05117798, -0.04055786, -0.053466797, 0.01171875, 0.06732178, -0.0013895035, -0.020217896, 0.032836914, 0.01461792, 0.013214111, 0.0036125183, -0.009811401, -0.010383606, 0.043670654, 0.049713135, 0.014381409, 0.019241333, -0.03942871, 0.0009860992, 0.048919678, -0.0035152435, -0.023406982, -0.0059318542, -0.008102417, 0.03164673, 0.005710602, -0.00044465065, -0.026519775, -0.040863037, 0.025100708, 0.02545166, -0.019821167, -0.03781128, -0.021713257, -0.04751587, -0.011932373, -0.0077705383, 0.054870605, -0.01890564, -0.019683838, -0.02822876, 0.010910034, 0.010391235, 0.0041770935, 0.020217896, -0.008399963, 0.019241333, -0.030853271, 0.0019416809, -0.003967285, 0.021270752, 0.024154663, -0.030685425, 0.032989502, -0.014953613, 0.036071777, -0.024917603, 0.002916336, 0.011070251, -0.013999939, -0.01272583, 0.005996704, 0.012252808, 0.10845947, 0.0206604, 0.05239868, 0.00440979, -0.018569946, -0.020889282, -0.00019335747, -0.009399414, 0.032714844, -0.013458252, 0.003780365, -0.007633209, -0.03857422, 0.00063848495, -0.064697266, -0.013679504, -0.00038695335, 0.014953613, 0.031982422, 0.0011177063, 0.103881836, 0.023147583, 0.044769287, -0.011924744, -0.009757996, -0.0049705505, -0.03744507, 0.05657959, -0.010978699, -0.011444092, -0.043304443, 0.084350586, 0.006427765, -0.01725769, 0.024871826, 0.00045704842, 0.004737854, 0.034210205, -0.00034546852, -0.053009033, -0.030471802, 0.0635376, -7.9870224e-05, 0.011108398, -0.058288574, -0.027664185, -0.017059326, -0.05706787, 0.068237305, 0.052642822, -0.027160645, 0.0637207, 0.07714844, -0.028778076, 0.035217285, 0.022964478, 0.0021572113, -0.011024475, 0.053466797, -0.05001831, -0.0012016296, 0.020965576, -0.058044434, -0.0047798157, -0.0011644363, -0.09222412, 0.007843018, 0.0010948181, -0.031982422, -0.04156494, 0.019378662, 0.0071525574, 0.0043411255, 0.014930725, -0.04714966, -0.0051078796, -0.03552246, 0.029663086, 0.01424408, -0.019927979, -0.01687622, -0.0042533875, 0.0028266907, -0.037719727, 0.002462387, 0.00422287, -0.0013475418, -0.00919342, 0.041259766, 7.265806e-05, 0.016555786, -0.05987549, -0.010917664, -0.020843506, 0.028366089, 0.025268555, 0.001461029, 0.014656067, -0.023483276, 0.026306152, 0.010925293, -0.0069732666, 0.000538826, -0.05996704, -0.026168823, -0.025527954, 0.007598877, 0.0340271, -0.016418457, 0.002998352, -0.04034424, 0.018737793, 0.034454346, -0.041381836, -0.00869751, 0.024291992, 0.030822754, -0.07092285, -0.0010232925, 0.00258255, -0.06866455, -0.06225586, 0.025039673, -0.020568848, -0.002090454, -0.0058555603, -0.009384155, -0.035827637, 0.0055122375, -0.052001953, -0.020339966, 0.06262207, 0.0052490234, 0.06414795, -0.044433594, -0.0049362183, -0.03781128, 0.0927124, 0.044281006, 0.020599365, -0.03250122, -0.0065689087, 0.011192322, 0.024780273, 0.021316528, 0.0004208088, 0.0018548965, -0.013343811, -0.029296875, -0.042755127, -0.020980835, 0.07171631, -0.015533447, 0.008338928, -0.0009403229, 0.04751587, -0.038238525, 0.010643005, -0.018218994, -0.0093688965, 0.0023002625, 0.006137848, -0.024261475, 0.008666992, -0.007286072, 0.005378723, 0.022949219, 0.016937256, -0.008369446, -0.0385437, 0.015853882, -0.024368286, 0.036132812, -0.022491455, -0.027923584, 0.019760132, 0.022323608, -0.030303955, 0.004421234, -0.041046143, 0.009063721, -0.0513916, 0.08758545, 0.05178833, 0.0037269592, 0.016723633, 0.0087890625, -0.00011754036, -0.051239014, -0.0042877197, -0.022064209, -0.03765869, -0.022659302, -0.010826111, 0.022872925, 0.0072784424, -0.005783081, -0.0029144287, 0.0061149597, 0.012321472, -0.03665161, 0.014305115, -0.016693115, 0.018157959, 0.026306152, -0.023391724, 0.024154663, -0.0004312992, -0.0026988983, 0.043548584, -0.034698486, -0.024261475, -0.002363205, -0.0138168335, -0.006793976, -0.014717102, 0.013954163, 0.00020873547, -0.008598328, 0.017852783, 0.0038967133, -0.022949219, -0.0068969727, 0.024887085, -0.025360107, -0.04284668, 0.028335571, -0.04473877, 0.021072388, 0.0038166046, -0.0116119385, -0.026397705, 0.018127441, -0.057647705, 0.056488037, 0.012908936, -0.05496216, 0.03302002, -0.0021476746, -0.010856628, -0.036224365, 0.08679199, -0.01663208, 0.0154953, -0.068359375, 0.0043945312, 0.03314209, 0.03262329, 0.040008545, -0.054229736, 0.040100098, -0.03475952, -0.032104492, 0.017471313, 0.04815674, 0.006126404, 0.026382446, 0.024032593, 0.0058517456, -0.052581787, 0.027893066, -0.07739258, -0.01763916, 0.036743164, 0.014549255, -0.007183075, -0.01235199, -0.027404785, -0.068725586, -0.00881958, 0.021972656, 0.017181396, -0.0021362305, 0.0075683594, -0.006690979, 0.018371582, 0.021087646, 0.003107071, 0.010650635, -0.04284668, -0.032104492, -0.02708435, -0.0289917, -0.044006348, 0.07342529, -0.0029010773, -0.023391724, 0.036346436, 0.03543091, 0.024414062, 0.03475952, -0.03186035, 0.0236969, -0.009628296, -8.34465e-05, -0.009475708, -0.039520264, 0.082214355, -0.037384033, -0.06585693, -0.011375427, 0.01802063, -0.010055542, -0.041992188, 0.041809082, 0.011512756, -0.008491516, 0.020568848, -0.02532959, -0.0637207, 0.008476257, 0.0057296753, -0.0949707, -0.017089844, -0.031555176, -0.0019216537, 0.009124756, -0.006931305, -0.0021839142, 0.036132812, 0.012130737, -0.0069274902, -0.035858154, -0.009086609, -0.005393982, -0.036499023, 0.002462387, 0.011787415, 0.030670166, -0.024093628, 0.014556885, -0.066467285, -0.012664795, 0.017211914, 0.028289795, 0.024307251, -0.0035171509, 0.01524353, 0.038085938, -0.031555176, 0.03845215, -0.048950195, 0.03878784, 0.0046539307, 0.039642334, 0.0032615662, 0.05670166, -0.008087158, -0.021240234, -0.039093018, 0.03164673, 0.024490356, 0.050964355, -0.03665161, 0.009490967, -0.0006098747, 0.03579712, 0.05368042, 0.020233154, 0.024719238, 0.00043010712, 0.042999268, 0.008636475, -0.022872925, -0.008842468, -0.03994751, -0.029891968, -0.019042969, 0.036132812, -0.004459381, 0.059692383, -0.036834717, 0.048706055, 0.029937744, -0.029571533, 0.027801514, -0.0033798218, 0.009864807, 0.054382324, -0.0062675476, 0.0703125, 0.019836426, 0.015975952, -0.033966064, -0.021224976, 0.00983429, 0.024475098, 0.00029492378, 0.03152466, -0.041412354, 0.006855011, -0.0035190582, -0.023452759, -0.0068244934, 0.001657486, -0.006023407, -0.011360168, -0.08105469, -0.03353882, -0.008201599, -0.00605011, -0.016708374, 0.01864624, 0.03805542, -0.0025501251, 0.0019044876, -0.0075569153, -0.004432678, 0.012184143, -0.044433594, 0.019317627, 0.030166626, -0.008102417, -0.04397583, 0.05960083, 0.006542206, -0.015686035, 0.052581787, -0.015312195, -0.0035915375, -0.019683838, 0.016082764, -0.043640137, -0.06549072, -0.019012451, 0.04421997, -0.049072266, -0.03414917, -0.029937744, -0.002571106, 0.03274536, -0.057128906, 0.031463623, -0.035827637, 0.052612305, 0.04852295, 0.057556152, -0.039245605, -0.027816772, -0.027832031, -0.01134491, -0.005695343, 0.039031982, -0.015701294, -0.013061523, 0.018173218, 0.039642334, 0.054351807, -0.007461548, 0.022460938, -0.0069351196, -0.011512756, 0.031463623, -0.015342712, -0.006450653, 0.007801056, 0.013496399, 0.008766174, 0.048919678, 0.027908325, 0.047058105, 0.049713135, 0.00031471252, -0.025619507, -0.018600464, 0.031951904, -0.040649414, 0.06323242, -0.03466797, -0.009605408, -0.0054092407, 0.0058174133, -0.03503418, -0.0018901825, -0.042541504, -0.0053100586, -0.022094727, -0.05328369, -0.04559326, 0.018173218, 0.036315918, -0.040618896, -0.0027618408, -0.013076782, 0.051757812, -0.006324768, 0.008155823, -0.010948181, -0.022247314, 0.0011444092, 0.034484863, -0.03704834, -0.06756592, 0.02255249, -0.019119263, 7.3969364e-05, -0.003604889, 0.018051147, 0.10064697, 0.02444458, -0.004550934, 0.007030487, 0.0078048706, -0.041259766, 0.011703491, 0.011512756, -0.023544312, 0.028564453, 0.03829956, -0.009002686, 0.024673462, 0.03366089, -0.0019721985, -0.054260254, -0.01965332, -0.04928589, -0.009109497, -0.01109314, -0.006046295, 0.013832092, 0.024215698, -0.023345947, 0.027893066, 0.020080566, -0.00831604, 0.010391235, -0.009086609, 0.042541504, -0.0146484375, -0.04095459, -0.055389404, -0.021087646, 0.036590576, 0.024673462, -0.012840271, -0.01802063, -0.00014865398, -0.0005068779, -0.012321472, 0.0056495667, 0.002981186, -0.004211426, -0.017837524, -0.022140503, -0.026046753, -0.0178833, -0.026931763, -0.008148193, -0.011131287, 0.030410767, 0.014953613, -0.020629883, -0.0026226044, -0.021438599, -0.002603531, 0.009483337, -0.018844604, -0.0020313263, -0.016067505, -0.001748085, 0.011619568, 0.0025920868, -0.011207581, 0.004306793, -0.019256592, -0.04095459, 0.036712646, 0.037109375, 0.04852295, -0.06616211, 0.023483276, 0.031921387, 0.048339844, -0.01878357, -0.06695557, -0.028320312, 0.03793335, -0.0020427704, -0.0052833557, 0.051452637, -0.04208374, 0.024612427, -3.6776066e-05, 0.004043579, 0.013046265, -0.0051612854, 0.019927979, -0.037017822, 0.0129470825]}, "B018A484AK": {"id": "B018A484AK", "original": "Brand: Martin Grill Gadget\nName: Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long\nDescription: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nFeatures: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nNO HARMFUL BRISTLES: Don't take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury.\nTOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There's a universal brass head that fits any grill grate rack and a wooden handle totaling 16\".\nUNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA.\nLIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.\n", "metadata": {"Name": "Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long", "Brand": "Martin Grill Gadget", "Description": "EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.", "Features": "EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nNO HARMFUL BRISTLES: Don't take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury.\nTOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There's a universal brass head that fits any grill grate rack and a wooden handle totaling 16\".\nUNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA.\nLIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018859863, 0.028869629, -0.022872925, -0.0029640198, 0.014923096, -0.03366089, 0.004245758, -0.025405884, -0.007980347, 0.045196533, 0.025650024, 0.04296875, -0.0077285767, -0.017974854, -0.02418518, -0.0031528473, -0.0054092407, 0.024383545, -0.0012407303, -0.015594482, -0.015930176, -0.008522034, -0.04171753, 0.009468079, 0.036895752, -0.04675293, 0.03149414, 0.019973755, 0.035125732, -0.0015134811, 0.035491943, -0.022064209, 0.0056114197, 0.025283813, -0.01902771, 0.0006837845, -0.06085205, 0.031951904, 0.009803772, -0.029037476, -0.002861023, 0.008811951, -0.0030136108, 0.015472412, -0.0463562, -0.008102417, -0.013534546, 0.013221741, 0.011886597, 0.0023593903, 0.012420654, -0.0059013367, 0.019439697, 0.02180481, -0.028015137, -0.017288208, 0.0057029724, -0.022827148, 0.018585205, 0.035247803, 0.008178711, 0.005844116, 0.0036392212, -0.020233154, -0.029724121, -0.012931824, 0.07623291, -0.017105103, -0.029907227, -0.025894165, 0.04864502, 0.0046424866, 0.017074585, -0.011192322, -0.02986145, -0.03982544, 0.013748169, -0.055786133, 0.007751465, 0.012687683, -0.018585205, -0.03741455, 0.014633179, 0.0009636879, -0.018295288, -0.0011672974, -0.013587952, 0.0009331703, 0.010848999, -0.016616821, -0.0036258698, -0.02809143, -0.008552551, 0.04434204, 0.00037193298, -0.021881104, -0.0065612793, -0.036895752, -0.020736694, -0.00522995, 0.039367676, -0.032287598, 0.05014038, -0.0041236877, -0.035003662, -0.027862549, 0.003271103, 0.0020771027, -0.01210022, 0.04034424, -0.037231445, -0.0057907104, 2.259016e-05, -0.037750244, -0.05621338, -0.003232956, -0.0014257431, -0.07067871, 0.014022827, -0.095581055, -0.042419434, -0.04776001, 0.0019836426, 0.032104492, 0.07684326, 0.053619385, -0.017181396, 0.050476074, -0.017486572, -0.035186768, -0.009117126, 0.036712646, 0.019424438, 0.013755798, -0.006286621, 0.0019760132, -0.022994995, 0.008407593, 0.017227173, 0.024963379, -0.022415161, -0.061828613, 0.02029419, 0.0060310364, -0.0028190613, -0.022888184, 0.016662598, 0.025100708, 0.012870789, 0.046905518, -0.05029297, 0.057495117, 0.05795288, -0.017700195, -0.026657104, -0.028900146, -0.010398865, -0.023956299, -0.026351929, -0.062316895, 0.028030396, -0.009513855, -0.0006799698, 0.020324707, -0.013069153, 0.0067596436, -0.0060272217, -0.0046844482, 0.011291504, 0.04550171, 0.011833191, 0.01852417, -0.05633545, 0.008865356, 0.022018433, -0.027282715, -0.050231934, 0.05355835, 0.08441162, -0.1381836, -0.07684326, -0.048736572, 0.1116333, -0.024124146, -0.022094727, -0.040161133, 0.016189575, 0.019760132, 0.035308838, 0.014671326, 0.023483276, -0.028671265, 0.017745972, -0.00907135, 0.009963989, 0.0008049011, -0.047729492, 0.013015747, -0.0054512024, -0.04345703, 0.0031089783, -0.053466797, 0.030288696, -0.02520752, -0.06933594, -0.026565552, -0.029296875, 0.021652222, 0.04220581, 0.050811768, -0.019973755, -0.008430481, -0.0028247833, -0.0040130615, -0.0026874542, -0.02848816, -0.018081665, 0.026382446, 0.025131226, 0.023376465, 0.053955078, -0.015594482, 0.040802002, -0.0017566681, 0.032165527, 0.029449463, -0.034973145, 0.016952515, 0.019744873, 0.037628174, -0.02885437, 0.014450073, 0.076416016, 0.08111572, -0.0014839172, 0.033081055, 0.076660156, 0.025390625, -0.011764526, -0.02458191, -0.0018186569, -0.025360107, -0.034942627, 0.03326416, -0.035491943, -0.0087890625, 0.010101318, 0.027389526, -0.034118652, -0.00198555, 0.01914978, 0.0070343018, 0.017471313, 0.009841919, -0.023590088, 0.033294678, -0.029586792, 0.027633667, -0.048980713, 0.033172607, -0.027252197, -0.017288208, 0.03640747, -0.04272461, 0.023849487, -0.026748657, 0.035949707, 0.0206604, -0.010726929, -0.029907227, 0.010765076, 0.030899048, -0.003004074, 0.011421204, 0.032318115, 0.011962891, -0.025756836, 0.0020217896, 0.0057907104, 0.00598526, -0.0034866333, 0.05303955, 0.030426025, -0.029129028, 0.008377075, -0.009994507, -0.012039185, -0.05709839, 0.0087890625, 0.028900146, 0.031463623, 0.021484375, -0.010154724, 0.0079956055, -0.0034008026, -0.009025574, 0.05621338, 0.05014038, -0.0062408447, -0.0068893433, -0.011192322, 0.01473999, -0.04949951, 0.01574707, -0.012008667, 0.033447266, 0.0030345917, -0.025177002, -0.024291992, -0.041168213, 0.04989624, 0.07409668, 0.046020508, -0.016921997, 0.051635742, 0.028808594, -0.0107803345, 0.046295166, 0.0006914139, -0.0037460327, -0.026367188, -0.0041656494, -0.013450623, 0.0116119385, 0.009757996, 0.0093307495, 8.773804e-05, 0.008506775, -0.019989014, 0.042236328, 0.0019550323, 0.031707764, 0.00044107437, 0.038391113, -0.021270752, 0.00349617, -0.0035686493, -0.011016846, -0.024749756, -0.022155762, -0.012176514, -0.03050232, 0.008155823, -0.029190063, 0.0028686523, -0.015197754, -0.005947113, 0.022720337, -0.033325195, 0.013626099, -0.015594482, -0.027069092, 0.041107178, 0.0048179626, 0.013648987, -0.009277344, -0.04034424, -0.033081055, -0.052246094, -0.08148193, -0.0026798248, 0.0044288635, -0.022354126, 0.015594482, 0.011077881, -0.029052734, -0.0017318726, 0.013580322, 0.015045166, 0.023391724, 0.011817932, -0.009674072, -0.01776123, -0.010910034, -0.007801056, -0.004940033, 0.019760132, -0.043060303, -0.040130615, -0.010429382, -0.02619934, 0.03414917, -0.04864502, 0.06738281, -0.01285553, 0.026351929, 0.039367676, 0.052612305, -0.0146484375, -0.036224365, 1.4066696e-05, 0.07904053, -0.018173218, -0.03262329, -0.0062675476, 0.01651001, 0.031463623, -0.038391113, 0.01914978, -0.041931152, -0.13110352, 0.022750854, -0.0041389465, -0.028305054, -0.014129639, -0.069885254, -0.07330322, -0.055603027, 0.023803711, 0.015945435, 0.0020008087, -0.006462097, 0.0057296753, -0.007221222, 0.008674622, -0.029968262, 0.011817932, -0.015274048, 0.030090332, -0.029006958, 0.0055999756, -0.02947998, -0.003786087, 0.001042366, -0.014633179, 0.0060768127, -0.010017395, -0.011116028, -0.02772522, 0.081726074, -0.0045928955, 0.016052246, 0.012748718, 0.024734497, -0.05255127, 0.030212402, -0.008522034, -0.02659607, 0.041625977, -0.059020996, -0.05203247, -0.016586304, -0.018310547, 0.0059432983, 0.005176544, -0.037994385, -0.036895752, -0.04751587, -0.012817383, -0.027023315, -0.029434204, 0.0030326843, 0.030029297, 0.029022217, -0.0011835098, 0.09564209, -0.005508423, 0.03527832, -0.030975342, 0.0042800903, -0.011566162, -0.028640747, 0.06463623, -0.013259888, 0.017288208, -0.0703125, 0.08929443, -0.025115967, -0.011291504, 0.05154419, -0.02166748, 0.024291992, -0.018737793, -0.010269165, 0.03842163, 0.018218994, -0.01436615, 0.04272461, -0.057922363, -0.019088745, -0.0368042, 0.008560181, -0.08850098, 0.06591797, -0.0019741058, 0.015533447, 0.037231445, 0.05621338, -0.014839172, -0.026260376, -0.011566162, -0.0056915283, -0.003232956, 0.023620605, -0.019485474, -0.020614624, 0.011695862, -0.04067993, 0.025848389, -0.012680054, -0.012718201, 0.02659607, -0.010520935, -0.036315918, -0.010147095, 0.03878784, 0.048614502, -0.0049095154, -0.026153564, -0.03729248, 0.039764404, -0.052612305, -0.0031852722, -0.0040740967, -0.007663727, -0.014297485, 0.044555664, 0.008506775, -0.007209778, -0.013923645, 0.0025405884, 0.039520264, 0.013397217, 0.0051498413, -0.0008788109, -0.013183594, 0.011619568, 0.026367188, -0.0027370453, -0.008972168, 0.054229736, 0.027511597, 0.026519775, 0.007083893, -0.042755127, -0.020523071, -0.0011119843, 0.025497437, -0.0048332214, -0.017547607, -0.0010766983, 0.0038414001, -0.009017944, -0.016784668, -0.008666992, -0.025161743, -0.054382324, -0.019714355, 0.005455017, -0.010002136, -0.02243042, -0.04272461, -0.021408081, -0.010215759, 0.0055122375, -0.078308105, -0.03253174, 0.015991211, -0.004219055, -0.013290405, -0.02079773, 0.03451538, -0.06149292, 0.018051147, -0.041259766, -0.017089844, 0.07678223, 0.049743652, 0.0064353943, -0.015930176, -0.033843994, -0.019760132, 0.045440674, -0.0043144226, -0.00299263, -0.019302368, -0.035827637, -0.010314941, 0.034729004, 0.10626221, -0.00932312, 0.04272461, -0.038635254, -0.006088257, -0.059814453, -0.02267456, 0.019363403, -0.046783447, -0.058288574, -0.035369873, 0.08728027, -0.010063171, 0.0017337799, -0.018676758, 0.025146484, -0.016586304, 0.016677856, 0.0005555153, 0.033935547, 0.008880615, -0.017532349, -0.011787415, -0.009475708, -0.026535034, 0.012046814, 0.008743286, 0.005302429, -0.051116943, 0.0023670197, -0.04788208, -0.00055122375, 0.0006670952, -0.016525269, 0.042175293, -0.050994873, -0.029876709, -0.04385376, 0.076049805, 0.05807495, -0.023330688, -0.010238647, 0.01637268, -0.025177002, -0.042877197, -0.017181396, 0.022720337, 0.012123108, -0.049194336, -0.05218506, 0.03552246, -0.063964844, 0.016616821, -0.024887085, -0.031799316, 0.015670776, 0.013999939, 0.00046992302, -0.012512207, 0.010314941, 0.013374329, -0.011207581, 0.017074585, -0.02571106, -0.0009946823, 0.019821167, -0.03186035, -0.026306152, -0.016525269, 0.0119018555, 0.010643005, 0.015716553, 0.014968872, -0.063964844, 0.005882263, 0.070129395, -0.0075302124, -0.020904541, 0.06274414, -0.009864807, 0.01914978, -0.00092983246, 0.059387207, 0.004623413, 0.0023555756, -0.0044403076, -0.0418396, -0.008216858, 0.0146102905, -0.049560547, 0.037384033, -0.01701355, -0.008354187, 0.027770996, -0.034942627, 0.0010299683, -0.011184692, 0.04385376, 0.008140564, 0.035217285, -0.07910156, 0.00059747696, 0.027511597, 0.07055664, 0.00031757355, -0.03378296, 0.025909424, -0.024536133, -0.01725769, 0.019958496, 0.025482178, -0.037872314, -0.0074920654, 0.0078086853, -0.015686035, -0.0158844, 0.02456665, -0.05227661, -0.045074463, 0.0042762756, 0.0015764236, -0.016464233, -0.021957397, -0.0046157837, -0.04257202, -0.0031147003, 0.043701172, -0.00995636, 0.024917603, -0.04977417, -0.016784668, -0.0013303757, 0.06713867, -0.033172607, -0.0022239685, -0.00046038628, -0.031311035, -0.085632324, -0.00019299984, -0.015037537, 0.011184692, 0.011665344, 0.01210022, 0.042816162, -0.01979065, 0.032440186, -0.017913818, 0.0074501038, 0.009048462, 0.012367249, 0.043426514, 0.002084732, -0.0234375, 0.09887695, -0.027954102, -0.058654785, -0.03286743, 0.05130005, -0.025436401, -0.019058228, 0.040100098, 0.00541687, 0.007904053, 0.013290405, -0.013725281, -0.0049057007, 0.0059928894, -0.0031375885, -0.020339966, 0.003446579, -0.018829346, 0.008201599, 0.013893127, 0.004207611, -0.0042762756, 0.029037476, -0.008422852, 0.035858154, -0.018005371, -0.017318726, -0.019088745, -0.03024292, 0.023422241, 0.015007019, -0.017196655, 0.003435135, 0.0047798157, -0.08843994, -0.015258789, 0.023071289, 0.040618896, 0.0345459, -0.04699707, 0.026290894, 0.072021484, -0.042510986, 0.09576416, -0.00077342987, -0.05001831, -0.005836487, 0.03164673, 0.047912598, -0.004798889, -0.021743774, -0.018661499, -0.037078857, 0.036254883, 0.029541016, 0.026138306, -0.049987793, -0.013595581, 0.03805542, 0.04776001, 0.03466797, 0.011695862, 0.023071289, -0.0075798035, 0.0022239685, 0.0058631897, -0.050201416, -0.025100708, -0.032073975, -0.019210815, 0.0020370483, 0.019836426, -0.00484848, 0.031402588, 0.04333496, 0.0017871857, -0.004047394, 0.015609741, 0.0011882782, -0.010276794, 0.041778564, -0.038116455, -0.007587433, -0.020065308, 0.005367279, -0.0029258728, -0.004421234, 0.015670776, -0.0033550262, 0.028335571, 0.026123047, 0.028564453, -0.03665161, 0.030685425, 0.013961792, -0.045654297, -0.0010089874, 0.0030021667, 0.005332947, -0.0007581711, -0.015777588, 0.0029907227, 0.010757446, 0.019683838, 0.002538681, 0.027053833, -0.0138549805, 0.016067505, 0.019607544, 0.001376152, -0.017715454, 0.008125305, 0.0023212433, -0.009727478, 0.016052246, -0.005794525, -0.04324341, -0.017623901, 0.056427002, -0.030792236, -0.015464783, 0.015365601, 0.024932861, -0.04751587, 0.031951904, -0.018844604, -0.024383545, 0.018615723, 4.3153763e-05, 0.01902771, 0.05593872, 0.05618286, -0.023635864, 0.005405426, -0.049194336, 0.0063934326, 0.018997192, 0.032318115, 0.037628174, 0.011672974, 0.012283325, -0.024734497, -0.015945435, -0.018432617, 0.02633667, -0.041259766, 0.011505127, 0.02848816, -0.021697998, 0.006641388, 0.03314209, -0.0072784424, 0.019500732, -0.019683838, -0.00869751, 0.0034160614, -0.025772095, -0.012908936, 0.0016145706, -0.0028018951, 0.008041382, 0.03262329, -0.026916504, 0.040924072, 0.0066947937, 0.017944336, -4.7683716e-07, -0.033447266, 0.043121338, -0.024734497, 0.004787445, -0.0043640137, -0.021331787, -0.012191772, -0.045318604, -0.009552002, -0.032806396, -0.022460938, 0.07525635, 0.03111267, -0.037475586, -0.026382446, -0.011001587, 0.03466797, -0.07312012, -0.0053100586, -0.028549194, 0.05279541, -0.011924744, 0.02420044, -0.006134033, -0.041137695, -0.066467285, 0.020202637, -0.08917236, -0.0054893494, -0.006580353, -0.011039734, -0.0079574585, -0.011558533, 0.048217773, 0.00021016598, 0.045440674, -0.009918213, 0.012687683, -0.025924683, -0.006916046, 0.051452637, 0.015350342, -0.010650635, -0.05114746, -0.03692627, -0.010559082, 0.040130615, 0.008293152, -0.019866943, -0.02255249, -0.019638062, -0.028305054, -0.008285522, 0.01663208, 0.0006275177, -0.0063095093, 0.0030174255, -0.048431396, 0.001502037, -0.025054932, -0.013877869, 0.0057411194, -0.0095825195, -0.010612488, -0.035003662, 0.008323669, 0.010360718, -0.0020828247, 0.010688782, 0.026794434, 0.039611816, 0.01991272, -0.0231781, -0.011238098, 0.0074882507, -0.016784668, -0.062469482, -0.00217247, -0.0068855286, -0.011199951, -0.027893066, 0.013824463, 0.007293701, -0.0064201355, -0.013641357, 0.061920166, 0.051879883, -0.05267334, -0.0154800415, -0.0071754456, -0.01146698, 0.017105103, -0.045288086, 0.0033016205, -0.049468994, 0.021881104, 0.0066947937, 0.010047913, 0.001241684, 0.009429932, -0.03741455, -0.0016222, 0.04031372, 0.010650635, 0.034851074, -0.023254395, 0.062927246, 0.018951416, 0.05154419, 0.0020580292, -0.025909424, -0.059631348, 0.06915283, 0.025894165, -0.036834717, 0.028320312, -0.0034923553, 0.011802673, 0.02255249, 0.03451538, -0.017745972, 0.033355713, 0.04269409, 0.011955261, 0.017715454]}, "B07WK2GZGD": {"id": "B07WK2GZGD", "original": "Brand: STYDDI\nName: STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut\nDescription:

      STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

      1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
      2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
      3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

      Product Instructions:
      1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
      2.Taking the regulator hose end connect to your 3/8\" male flare connector propane appliance.
      3.Checking this hose both ends must be fully tightened.

      Specification:
      Inlet\uff1aQCC-1 Tank Connection (ACME)
      Outlet: 3/8\" Female Flare Nut
      Flow Capacity: 80000 BTU/Hr
      Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
      Certificate: CSA
      Gas Type: LP/LPG
      Material: Rubber / Brass

      Attention:
      1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
      2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
      3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      4.Keeping the hose away from HIGH TEMPERATURE.

      Note:
      Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

      \nFeatures: NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter.\nCSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8\" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8\" male flare connector propane appliance. It\u2019s compatible with your 20-50 lb propane gas tank.\nUNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills.\nA MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.\n", "metadata": {"Name": "STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut", "Brand": "STYDDI", "Description": "

      STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

      1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
      2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
      3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

      Product Instructions:
      1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
      2.Taking the regulator hose end connect to your 3/8\" male flare connector propane appliance.
      3.Checking this hose both ends must be fully tightened.

      Specification:
      Inlet\uff1aQCC-1 Tank Connection (ACME)
      Outlet: 3/8\" Female Flare Nut
      Flow Capacity: 80000 BTU/Hr
      Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
      Certificate: CSA
      Gas Type: LP/LPG
      Material: Rubber / Brass

      Attention:
      1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
      2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
      3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
      4.Keeping the hose away from HIGH TEMPERATURE.

      Note:
      Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

      ", "Features": "NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter.\nCSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8\" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8\" male flare connector propane appliance. It\u2019s compatible with your 20-50 lb propane gas tank.\nUNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills.\nA MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00957489, -0.03805542, -0.01864624, -0.030090332, -0.045440674, -0.01436615, -0.030090332, 0.023498535, -0.010017395, 0.027740479, -0.025619507, 0.016204834, 0.00089502335, -0.004760742, -0.004623413, -0.03250122, 0.023742676, 0.019973755, 0.012466431, -0.0012159348, -0.012550354, 0.034942627, -0.025726318, 0.0541687, 0.045898438, -0.027313232, 0.050598145, 0.029525757, 0.029678345, 0.01701355, 0.037353516, -0.052215576, 0.035705566, 0.011909485, -0.03515625, -0.05102539, -0.0058174133, -0.012680054, -0.051452637, 0.0317688, 0.00041294098, -0.014297485, -0.031982422, 0.023422241, -0.047332764, -0.0070991516, -0.02406311, -0.019882202, 0.024597168, 0.039978027, 0.0026683807, 0.040496826, 0.003288269, -0.011688232, -0.0155181885, -0.023605347, 0.007709503, -0.0446167, 0.012611389, 0.0028057098, -0.0010099411, 0.007820129, 0.020187378, 0.0076942444, -0.013298035, 0.011001587, 0.03515625, -0.0045928955, 0.013305664, -0.029022217, -0.0027885437, 0.018218994, 0.0056648254, -0.00749588, -0.040161133, -0.001291275, 0.04135132, 0.0027484894, 0.001288414, 0.008277893, 0.016540527, 0.0036640167, 0.01423645, -0.010070801, 0.026565552, 0.0064849854, -0.015060425, -0.028381348, -0.006549835, -0.03237915, -0.020858765, -0.018157959, 0.015075684, 0.0055618286, -0.05279541, -0.00033020973, -0.0317688, -0.0496521, 0.02053833, 0.02545166, 0.009681702, -0.018508911, 0.030929565, -0.0030174255, 0.008544922, 0.074645996, 0.023010254, 0.020690918, 0.013259888, -0.00969696, 0.0013751984, 0.02482605, -0.0063476562, -0.032592773, -0.027999878, 0.026733398, 0.0018453598, -0.0030975342, 0.02168274, -0.016448975, -0.009552002, 0.013847351, -0.0065956116, -0.036010742, 0.0029697418, 0.00016522408, -0.0037651062, -0.01197052, -0.055847168, 0.018600464, -0.016433716, 0.025177002, 0.064819336, 0.059539795, -0.0041046143, -0.0209198, 0.0680542, -0.003665924, -0.0088272095, 0.04067993, -0.010002136, -0.040130615, -0.020370483, -0.0019741058, -0.03942871, 0.017608643, -0.005168915, 0.011146545, 0.02748108, -0.03753662, -0.03164673, -0.0670166, 0.06878662, 0.01158905, -0.07885742, -0.0033359528, 0.00818634, -0.034118652, -0.031234741, -0.08001709, -0.02166748, -0.004852295, 0.0035076141, -0.04498291, -0.053253174, 0.0099487305, -0.010894775, -0.004245758, 0.029190063, 0.09100342, 0.045318604, 0.022460938, 0.030044556, 0.0137786865, -0.0076179504, -0.029449463, -0.038757324, 0.057891846, 0.09094238, -0.16809082, -0.08856201, -0.062042236, 0.11413574, -0.028442383, 0.0011348724, -0.048736572, 0.033996582, -0.011558533, -0.00579834, 0.018127441, 0.04547119, 0.02607727, -0.0024375916, -0.043701172, -0.0134887695, 0.021987915, -0.014930725, 0.02432251, -0.017120361, 0.027191162, -0.049926758, 0.0017166138, 0.01991272, -0.008560181, 0.03338623, 0.0012731552, -0.0023231506, 0.035217285, 0.04626465, 0.051757812, -0.016052246, 0.0211792, -0.0049819946, -0.031433105, -0.04699707, 0.005455017, -0.0107421875, -0.008056641, -0.004245758, 0.017852783, 0.03338623, -0.010986328, 0.00088596344, 0.02720642, -0.002035141, -0.016113281, -0.014404297, -0.026123047, 0.0065078735, -0.005256653, 0.0112838745, 0.019500732, 0.072509766, 0.043395996, -0.018096924, 0.022964478, 0.064819336, 0.03062439, -0.0143585205, -0.00066804886, 0.011131287, -0.017578125, -0.037109375, -0.013534546, -0.0446167, -0.056427002, 0.012718201, -0.027648926, -0.010185242, 0.005519867, 0.022247314, -0.021133423, 0.038970947, 0.014328003, -0.02911377, 0.025924683, -0.031707764, 0.0027618408, -0.033599854, 0.036193848, -0.028625488, -0.010093689, 0.035705566, -0.024658203, 0.0038909912, 0.010253906, 0.031951904, 0.018447876, -0.025131226, -0.008331299, 0.008453369, 0.034973145, 0.016159058, -0.013381958, -0.06768799, -0.016830444, -0.0005002022, 0.022827148, 0.00762558, -0.029876709, 0.012207031, 0.020431519, 0.010032654, -0.018661499, 0.041809082, 0.00894928, -0.0051345825, -0.037841797, 0.015434265, 0.0058174133, 0.04244995, -0.017318726, -0.0115737915, -0.001455307, -0.005760193, -0.0259552, 0.06732178, 0.023086548, 0.0059165955, -0.019104004, 0.001115799, 0.02772522, -0.030075073, -0.009376526, 0.016418457, -0.007106781, 0.009536743, 0.033233643, 0.02758789, -0.011230469, -0.0011739731, 0.029144287, 0.031585693, -0.011077881, 0.04034424, 0.019515991, -0.002986908, 0.03756714, 0.048187256, 0.046051025, -0.023513794, 0.0008530617, -0.028244019, -0.043792725, 0.01876831, 0.020767212, -0.070617676, 0.0013303757, 0.021087646, 0.007419586, 0.026473999, 0.012237549, 0.0046653748, 0.021270752, 0.004962921, -0.0012397766, 0.011878967, 0.00029230118, -0.018798828, -0.11828613, -0.05508423, -0.0023384094, -0.007797241, 0.043304443, -0.027374268, -0.041046143, 0.03213501, 0.0016651154, -0.028717041, -0.006969452, 0.023986816, -0.02949524, 0.0090408325, -0.0178833, 0.008628845, 0.037109375, -0.01687622, -0.040374756, 0.01033783, -0.06994629, -0.044891357, -0.0061836243, -0.06585693, -0.022155762, 0.06878662, -0.012619019, -0.043823242, -0.016433716, -0.005252838, 0.0013914108, 0.01979065, -0.010040283, -0.029174805, -0.008132935, -0.018310547, -0.008865356, 0.018936157, -0.020141602, -0.018127441, 0.005718231, 0.013298035, 0.029022217, 0.0017623901, 0.031982422, 0.03933716, 0.005088806, 0.05911255, 0.05203247, 0.013053894, -0.02130127, -0.0046463013, 0.017532349, -0.04421997, -0.013999939, 0.000521183, 0.012680054, -0.01171875, -0.025970459, -0.025527954, -0.016647339, -0.048858643, 0.0034370422, -0.00081300735, -0.011199951, 0.018661499, -0.09069824, -0.012718201, -0.055480957, 0.021743774, 0.04434204, -0.034118652, 0.012054443, -0.0368042, 0.012535095, -0.039733887, 0.02218628, -0.052612305, -3.7431717e-05, -0.080566406, 0.029510498, 0.07525635, -0.070617676, 0.03491211, 0.04333496, -0.018157959, -0.028793335, 0.011192322, 0.012008667, -0.018234253, 0.019943237, -0.009773254, -0.020828247, -0.04925537, -0.020812988, 0.007320404, 0.03286743, 0.016311646, -0.033172607, 0.0018959045, -0.005630493, -0.060272217, -0.05050659, -0.026382446, 0.016601562, -0.01020813, -0.019851685, -0.046020508, -0.05078125, -0.008888245, -0.0138549805, -0.00039601326, -0.0011501312, 0.04876709, 0.027420044, 0.0020580292, 0.08807373, 0.039367676, 0.051208496, 0.00060606, 0.0005259514, 0.004436493, -0.03793335, 0.049041748, 0.024398804, 0.009185791, -0.009300232, -0.010627747, 0.024414062, -0.0048561096, -0.011489868, 0.02331543, 0.028839111, -0.014823914, -0.02357483, 0.04260254, -0.012992859, 0.00022029877, -0.019500732, 0.0435791, -0.0010261536, -0.038879395, 0.019180298, -0.0690918, 0.050201416, 0.012702942, -0.010482788, 0.040618896, 0.026016235, -0.011871338, 0.049865723, 0.047302246, 0.026138306, 0.0066871643, 0.072021484, 0.0074272156, -0.022079468, -0.0013504028, -0.0019292831, 0.012428284, 0.00022983551, -6.169081e-05, 0.008964539, -0.03010559, -0.01586914, -0.006690979, 0.021697998, -0.0033950806, -0.021972656, -0.004432678, -0.04071045, -0.042144775, -0.042999268, -0.040283203, 0.004173279, -0.02810669, -0.019058228, 0.011894226, -0.009643555, -0.016342163, -0.0055770874, 0.0032444, -0.010292053, 0.048461914, 0.0368042, -0.008674622, -0.01802063, 0.030548096, -0.008010864, -0.033477783, 0.004131317, 0.036010742, 0.013626099, 0.012107849, -0.021255493, 0.003293991, 0.003917694, -0.022216797, 0.032073975, -0.053009033, -0.083984375, -0.0340271, -0.0042037964, 0.02798462, -0.032318115, 0.012626648, -0.05105591, -0.0012140274, -0.0019111633, -0.015304565, 0.004383087, -0.017669678, -0.014640808, -0.025482178, -0.0317688, -0.029190063, 0.0029258728, -0.012680054, -0.014411926, 0.016494751, 0.016830444, -0.020751953, 0.023391724, -0.03955078, 0.007659912, -0.058929443, 0.0059394836, 0.045440674, 0.029754639, 0.0034751892, -0.02243042, 0.0074806213, 0.01008606, 0.039215088, -0.019332886, -0.005683899, -0.028076172, -0.028015137, 0.0068092346, 0.020828247, 0.079833984, -0.039642334, 0.024902344, -0.018234253, 0.014373779, -0.090148926, 0.0105896, 0.03955078, -0.035888672, -0.06185913, -0.038146973, 0.07305908, -0.003107071, 0.006969452, 0.010818481, 0.009941101, 0.026641846, -0.0390625, -0.09277344, 0.003572464, -0.012290955, -0.016494751, 0.012771606, -0.010917664, 0.0069732666, 0.030319214, 0.06341553, 0.032073975, 0.0068473816, 0.018127441, 0.0026855469, 0.002483368, 0.009674072, -0.035705566, 0.021057129, -0.034301758, 0.0054512024, -0.04055786, 0.04537964, 0.036895752, 0.00248909, -0.011054993, -0.016220093, -0.011199951, -0.080200195, -0.01663208, 0.0038375854, 0.031402588, 0.009223938, -0.034973145, -0.005027771, -0.015823364, -0.022262573, -0.013114929, 0.02015686, 0.0021972656, -0.03250122, -0.0074882507, -0.028717041, -0.015510559, 0.0056266785, -0.0056991577, 0.0340271, -0.061950684, 0.0003323555, 0.076171875, -0.0035953522, -0.019805908, -0.033355713, 0.004047394, -0.0052948, -0.0051651, -0.0039596558, -0.008972168, -0.02949524, 0.0054092407, 0.0013637543, 0.0031490326, 0.03753662, 0.0107421875, -0.017593384, -0.047607422, 0.015602112, 0.040924072, -0.05041504, 0.010635376, -0.06149292, 0.022140503, 0.03869629, -0.042999268, 0.05545044, 0.016830444, -0.046173096, -0.017440796, -0.015327454, 0.022583008, -0.012336731, 0.053771973, 0.025390625, 0.013832092, -0.08453369, -0.002231598, 0.01939392, 0.07232666, -0.0016183853, -0.043945312, 0.009178162, -0.005584717, -0.0015277863, 0.02897644, 0.004764557, -0.030227661, -0.0078125, 0.012390137, -0.03567505, -0.020446777, 0.019683838, 0.0036582947, 0.021621704, -0.0035743713, -0.0579834, 0.033721924, 0.02355957, -0.033355713, -0.0031318665, -0.00072956085, 0.0069885254, -0.016738892, -0.025772095, 0.008781433, -0.001964569, 0.014038086, 0.01247406, 0.04421997, 0.01675415, -0.031051636, -0.02558899, -0.010810852, 0.0118255615, -0.023742676, 0.042755127, -0.01423645, -0.03869629, 0.009468079, -0.009284973, 0.027572632, -0.016403198, -0.022064209, -0.027008057, -0.022583008, -0.017440796, 0.009979248, -0.02154541, 0.032440186, -0.028656006, -0.048187256, -0.038146973, 0.023605347, -0.0018577576, -0.037139893, 0.06738281, 0.0491333, -0.00031018257, 0.014434814, -0.0057754517, -0.023391724, 0.0059509277, 0.010421753, -0.034820557, -0.07678223, -0.028549194, -0.01852417, -0.018127441, 0.004562378, -0.0010976791, 0.054901123, 0.002571106, 0.007701874, -0.042236328, -0.0013856888, -0.0154800415, -0.045898438, 0.021697998, 0.0021915436, -0.012908936, 0.010520935, 0.0014266968, -0.11383057, -0.03387451, 0.017807007, 0.02293396, -0.0062065125, 0.008140564, -0.0024147034, -0.0076942444, -0.027511597, 0.030731201, -0.0049858093, 0.0023174286, -0.013580322, 0.01007843, -0.011405945, 0.05770874, -0.052368164, 0.0009756088, 0.0035152435, -0.010948181, -0.013542175, 0.011444092, -0.054992676, -0.048797607, 0.032073975, 0.06817627, -0.02017212, 0.031433105, 0.02861023, -0.012084961, -0.010772705, -0.035247803, -0.04348755, -0.038085938, 0.0022144318, -0.017684937, -0.046051025, -0.011520386, -0.027709961, -0.018463135, -0.00040483475, 0.014678955, -0.014656067, 0.040985107, -0.01651001, -0.009506226, 0.02432251, -0.038391113, 0.040893555, 0.009506226, 0.03857422, -0.004283905, 0.028625488, -0.010978699, -0.021102905, 0.0135650635, 0.005619049, 0.018615723, -0.024414062, 0.018478394, -0.0025463104, -0.030807495, -0.007637024, -0.013298035, 0.009498596, -0.015975952, -0.031051636, -0.022598267, -0.02116394, 0.023468018, 0.0070152283, 0.06732178, -0.0099487305, 0.034423828, -0.02758789, -0.02758789, -0.03137207, -0.020553589, 0.0049934387, -0.036254883, -0.044036865, 0.021942139, -0.016113281, 0.020614624, 0.013938904, -0.021102905, 0.013137817, -0.0335083, 0.011398315, 0.009925842, 0.015083313, -0.035858154, -0.031066895, -0.007293701, 0.014083862, 0.0014972687, 0.022644043, -0.0044937134, 0.024139404, -0.004096985, -0.009643555, 0.02609253, -0.033966064, 0.03704834, 0.02885437, -0.037475586, -0.06060791, 0.000436306, 0.003112793, -0.0065078735, 0.0110321045, 0.07489014, 0.010391235, 0.07067871, 0.021453857, 0.019134521, 0.06896973, -0.00040531158, 0.017868042, -0.0051078796, 0.013549805, 0.009353638, -0.01789856, -0.02178955, -0.03643799, 0.01852417, 0.014732361, 0.023712158, 0.011138916, 0.01991272, -0.010681152, -7.534027e-05, -0.014823914, -0.014060974, -0.0030403137, 0.0049209595, 0.027191162, -0.037109375, 0.008255005, -0.03656006, -0.059143066, -0.0053100586, -0.019500732, -0.04852295, 0.06530762, 0.011123657, 0.005290985, 0.0289917, -0.008705139, -0.0146102905, -0.03881836, 0.00010383129, 0.02861023, 0.0009813309, -0.015556335, 0.04220581, -0.010261536, -0.05987549, -0.06188965, 0.021759033, -0.08996582, 0.004085541, 0.021133423, 0.03729248, 0.064331055, 0.042175293, 0.044647217, 0.082092285, 0.010169983, 0.013496399, -0.030395508, -0.032836914, -0.014930725, 0.030853271, 0.0053138733, -0.031036377, -0.06439209, 0.007785797, 0.026855469, 0.027114868, 0.036865234, 0.014213562, -0.034423828, -0.00093507767, -0.017868042, 0.00919342, -0.0077209473, -0.040039062, 0.026641846, -0.0040283203, -0.03503418, -0.021194458, 0.037109375, 0.01071167, 0.0078125, -0.020050049, 0.029830933, -0.010444641, -0.03189087, -0.0017719269, -0.021865845, 0.0017719269, 0.04699707, -0.01676941, -0.009170532, 0.033935547, -0.0018529892, -0.016738892, 0.008666992, 0.039794922, 0.020309448, 0.021713257, 0.044769287, 0.007865906, -0.014030457, -0.0004169941, -0.06530762, -0.055419922, 0.04901123, -0.0138549805, -0.023986816, -0.022872925, -0.037261963, -0.0146102905, -0.03692627, -0.0713501, -0.011428833, -0.036224365, 0.03375244, 0.010391235, 0.030883789, -0.013519287, 0.029724121, -0.020599365, -0.039611816, 0.030975342, 0.025787354, 0.030380249, -0.03439331, 0.008773804, 0.011352539, 0.06137085, 0.0037269592, -0.07788086, -0.05404663, 0.04663086, 0.026748657, -0.033355713, 0.04385376, -0.009307861, 0.0104599, 0.04168701, -0.05090332, -0.01576233, -0.021194458, 0.086120605, -0.002161026, 0.0031375885]}, "B001ABPB2U": {"id": "B001ABPB2U", "original": "Brand: Stansport\nName: Stansport Propane Appliance to Distribution Post, 5 Feet\nDescription: \nFeatures: Works on 30 inch distribution post\nWorks on all propane appliances\nHeavy duty quality hose\nBrass fittings for security to appliances and tanks\nBuy more than one to put on distribution post\n", "metadata": {"Name": "Stansport Propane Appliance to Distribution Post, 5 Feet", "Brand": "Stansport", "Description": "", "Features": "Works on 30 inch distribution post\nWorks on all propane appliances\nHeavy duty quality hose\nBrass fittings for security to appliances and tanks\nBuy more than one to put on distribution post", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0038852692, -0.0131073, -0.017120361, 0.0034732819, -0.030654907, -0.013320923, -0.020065308, -0.00018298626, -0.0067443848, -0.021148682, 0.011497498, 0.045013428, -0.0029659271, -0.057250977, 0.05456543, 0.012672424, 0.028762817, 0.010528564, 0.00957489, -0.03543091, 0.0046539307, -0.029708862, 0.039794922, 0.12524414, 0.01725769, -0.006336212, 0.07965088, -0.0026245117, 0.007007599, -0.031402588, 0.024871826, 0.012626648, 0.06225586, -0.050567627, -0.007881165, -0.040405273, 0.006225586, -0.04232788, -0.04345703, -0.01386261, 0.0019292831, 0.014907837, 0.033935547, 0.008834839, -0.017959595, -0.01763916, -0.0014019012, -0.022720337, 0.0038852692, 0.036895752, -0.006969452, 0.01020813, -0.00699234, -0.029022217, 0.0047454834, -0.0019454956, -0.036132812, 0.018798828, 0.025436401, -0.005935669, -0.013031006, -0.0071144104, 0.015853882, -0.0033226013, -0.019821167, 0.024307251, 0.10913086, -0.018356323, 0.0141067505, -0.034240723, -0.008979797, 0.045440674, 0.026916504, 0.007205963, -0.03982544, -0.075805664, 0.030899048, -0.03967285, 0.009674072, 0.007129669, 0.00059890747, -0.0058288574, 0.01852417, 0.014076233, -0.04537964, -0.012832642, -0.026245117, -0.010032654, 0.012512207, -0.025634766, 0.0054397583, 0.031219482, -0.03677368, 0.028778076, -0.006137848, -0.029418945, -0.009521484, -0.04916382, 0.0059509277, -0.014144897, 0.015045166, -0.034820557, -0.0072631836, 0.016082764, 0.008132935, 0.036987305, -0.00027537346, -0.03616333, 0.0013341904, 0.009170532, -0.025527954, -0.0023975372, 0.027679443, 0.052520752, -0.07513428, -0.043548584, -0.03488159, -0.023635864, -0.028518677, -0.0038089752, -0.038482666, -0.0061950684, 0.021713257, -0.00472641, 0.043518066, 0.038757324, 0.0042304993, -0.011108398, 0.03555298, 0.019073486, -0.029815674, 0.03237915, 0.033325195, -0.03741455, -0.019454956, -0.01838684, -0.014282227, -0.0070533752, -0.0031032562, -0.0031757355, 0.0024528503, 0.007160187, 0.049804688, 0.014183044, 0.003019333, 0.0040016174, 0.018737793, 0.0105896, 0.012428284, 0.00067329407, -0.0059394836, -0.0046043396, -0.0032978058, 0.052246094, -0.029403687, 0.054656982, 0.031799316, -0.0054893494, -0.034454346, -0.038879395, -0.008705139, -0.026489258, -0.004837036, -0.027328491, -0.068603516, 0.04598999, -0.005138397, -0.011787415, 0.021072388, 0.08886719, -0.009437561, 0.03930664, 0.02583313, 0.011146545, -0.02130127, -0.020828247, -0.048736572, 0.037231445, 0.068359375, -0.112854004, -0.083862305, -0.061767578, 0.12585449, -0.04714966, 0.03250122, -0.06719971, 0.027908325, -0.058288574, -0.023803711, 0.0059928894, 0.04598999, 0.036224365, 0.020477295, -0.046936035, -0.02508545, 0.023330688, -0.017837524, 0.053833008, -0.02859497, -0.011001587, -0.025924683, -0.002254486, 0.031173706, 0.012580872, 0.09814453, -0.020462036, 0.036895752, -0.0048179626, 0.020584106, 0.013328552, -0.016662598, -0.022750854, 0.012641907, -0.05996704, -0.034942627, 0.0046157837, -0.006778717, -0.038085938, 0.0032577515, -0.04373169, 0.016784668, 0.013832092, -0.0043907166, 0.025131226, -0.054718018, -0.014961243, -0.010749817, 0.021347046, -0.054382324, 0.015419006, 0.042175293, -0.014198303, 0.044555664, -0.005897522, -0.04284668, 0.06021118, 0.07897949, 0.08520508, -0.042266846, -0.014251709, 0.015563965, -0.03564453, -0.0031147003, 0.029312134, 0.0025997162, -0.04135132, 0.0011377335, 0.008850098, -0.006340027, 0.02218628, 0.057159424, -0.003929138, 0.0036354065, -0.0065307617, -0.009712219, 0.0099487305, -0.0020503998, 0.026489258, -0.02357483, 0.013717651, -0.010475159, 0.02861023, 0.026062012, -0.0038051605, 0.03286743, 0.043762207, 0.046844482, 0.05419922, -0.027191162, 0.029174805, -0.008926392, 0.03451538, -0.034820557, -0.025619507, 0.0069007874, -0.026901245, -0.059326172, 0.05316162, -0.018112183, -0.016601562, -0.0044555664, -0.00831604, 0.029281616, -0.016448975, 0.0501709, 0.039886475, 0.025054932, -0.05343628, 0.019073486, -0.0022659302, 0.01411438, 0.029251099, -0.0035476685, 0.041778564, -0.0032348633, -0.012252808, -8.4519386e-05, -0.021438599, 0.033416748, -0.031982422, -0.021087646, 0.04727173, -0.004436493, 0.0011396408, -0.012260437, 0.010681152, -0.020355225, 0.027038574, -0.00856781, -0.023742676, -0.049621582, -0.019622803, 0.03579712, 0.011192322, 0.055908203, 0.023529053, 0.01939392, 0.05117798, 0.0009937286, -0.008224487, 0.0031280518, 0.002664566, 0.010681152, 0.008125305, 0.017822266, -0.014755249, -0.0021152496, 0.00030088425, -0.041625977, 0.028640747, -0.019424438, -0.004878998, -0.010917664, 0.038116455, -0.010284424, 0.03274536, 0.020507812, 0.0925293, 0.021102905, -0.02633667, 0.004798889, -0.02999878, -0.052856445, -0.01210022, -0.05609131, 0.01335144, 0.029922485, 0.009544373, -0.03149414, -0.014472961, 0.01676941, -0.027694702, -0.019119263, 0.005619049, 0.01977539, 0.02607727, -0.0074424744, -0.0017547607, 0.044952393, -0.035827637, 0.03817749, 0.0032730103, 0.013092041, -0.021438599, -0.022125244, -0.027557373, 0.0017662048, -0.016571045, -0.0423584, -0.02029419, 0.03125, -0.038208008, -0.044677734, -0.026016235, -0.034210205, 0.01928711, -0.021728516, -0.062561035, 0.00080013275, -0.035491943, -0.051879883, -0.026687622, 0.017196655, 0.008575439, -0.050842285, 0.042144775, 0.057891846, -0.0058937073, 0.027664185, -0.03894043, 0.03933716, 0.066711426, 0.0072364807, -0.009140015, -0.018630981, -0.03253174, 0.01663208, 0.021713257, -0.013511658, 0.0035095215, -0.07336426, 0.013084412, -0.014709473, -0.0022335052, -0.005050659, -0.00061798096, -0.024108887, -0.05368042, 0.00843811, 0.03050232, 0.010093689, 0.0002720356, -0.009887695, 0.02279663, -0.006942749, -0.012817383, -0.01612854, -0.010932922, -0.0032577515, -0.001083374, 0.030319214, -0.09118652, -0.0023670197, 0.014381409, 0.0073623657, 0.03161621, -0.026947021, -0.0126571655, -0.030273438, 0.014183044, -0.002254486, 0.00015199184, -0.02571106, -0.038879395, 0.025894165, 0.027908325, -0.002002716, -0.0024757385, -0.017196655, 0.002527237, -0.047027588, -0.0027542114, -0.014129639, 0.040527344, -0.026672363, -0.007457733, -0.039398193, -0.055236816, 0.009269714, 0.018981934, 0.028701782, 0.00030183792, 0.024383545, 0.0043182373, -0.027145386, 0.031433105, -0.024597168, 0.02192688, 0.015411377, -0.024963379, -0.008399963, -0.020217896, -0.02067566, -0.0005426407, -0.011917114, -0.045715332, -0.00086450577, 0.013221741, 0.01612854, -0.015792847, -0.015625, 0.07470703, 0.018722534, -0.015853882, 0.015213013, -0.007774353, 0.011985779, -0.010902405, 0.011512756, -0.0143585205, -0.015159607, 0.008407593, -0.0619812, 0.016159058, 0.03881836, -0.019699097, -0.013381958, -0.026931763, 0.0054016113, 0.024459839, 0.029968262, -0.01902771, 0.0105896, 0.045166016, -0.02532959, 0.008880615, 0.0032196045, 0.02708435, -0.0022506714, -0.012496948, -0.01838684, -0.004047394, 0.015220642, -0.010818481, -0.016677856, 0.014328003, 0.014251709, -0.031341553, -0.0016946793, -0.022491455, -0.030410767, -0.050628662, -0.048675537, 0.012588501, -0.0309906, 0.012634277, -0.0030670166, 0.010116577, -0.025054932, -0.015274048, 0.05682373, 0.036071777, -0.013374329, 0.0057792664, 0.05303955, -0.009811401, -0.035064697, -0.024459839, -0.008811951, 0.014457703, -0.002248764, 0.011695862, 0.043121338, 0.020065308, -0.006752014, -0.0067863464, -0.016174316, 0.06842041, -0.012168884, -0.06585693, -0.06161499, 0.009185791, 0.08380127, -0.010269165, -0.03982544, -0.013633728, -0.023208618, 0.0103302, -0.020263672, -0.059906006, 0.040649414, 0.057861328, -0.0904541, -0.0435791, -0.03479004, 0.05987549, -0.03778076, 0.041748047, -0.02720642, -0.0335083, -0.025878906, -0.011871338, -0.058807373, 0.050842285, -0.08105469, 0.0033950806, 0.039489746, 0.03817749, -0.016799927, -0.016036987, -0.007297516, 0.032684326, 0.08508301, -0.012580872, 0.030807495, -0.049041748, -0.011238098, 0.012214661, 0.01725769, 0.05050659, 0.0072517395, 0.021118164, -0.04574585, -0.004962921, -0.039093018, 0.037994385, -0.02394104, -0.0055007935, -0.04751587, 0.012504578, 0.051971436, 0.0078125, -0.002981186, -0.016693115, 0.015808105, 0.023330688, 0.008605957, -0.048095703, -0.014198303, 0.000538826, -0.00093984604, -0.02268982, -0.015350342, -0.012886047, 0.049713135, -0.014839172, 0.0024681091, 0.032684326, -0.02722168, -0.014091492, -0.0069847107, -0.032318115, 0.025604248, 0.012786865, -0.002029419, 0.018661499, -0.009674072, 0.020629883, 0.054901123, -0.025634766, -0.007801056, 0.031311035, -0.021820068, -0.026321411, -0.009239197, -0.019714355, 0.00046992302, -0.0115737915, -0.036834717, -0.0077209473, -0.024337769, -0.012077332, -0.029663086, -0.016983032, -0.002325058, 0.022399902, -0.013626099, -0.03656006, -0.03326416, -0.013298035, 0.009048462, 0.047180176, 0.04208374, -0.027572632, 0.075927734, 0.0027503967, 0.014884949, 0.018325806, -0.0029449463, -0.014709473, 0.050689697, 0.010810852, -0.035125732, 0.0031280518, 0.031097412, -0.0056266785, -0.064575195, -0.026931763, 0.024978638, -0.01625061, -0.06591797, 0.02168274, -0.014732361, 0.048065186, 0.02720642, 0.0003402233, 0.040405273, 0.03817749, -0.012458801, 0.017120361, 0.013977051, -0.0074882507, -0.01965332, 0.0008149147, 0.0035495758, 0.0063934326, 0.0418396, 0.021224976, -0.011581421, -0.025009155, 0.015945435, -0.026306152, -0.0037212372, 0.015220642, -0.018981934, 0.035003662, -0.08276367, 0.001748085, 0.020889282, -0.0014982224, 0.015380859, -0.004081726, 0.005443573, -0.05758667, -0.022232056, -0.015266418, -0.05117798, 0.020477295, 0.008934021, 0.008834839, -0.00025820732, 0.016586304, -0.017105103, -0.005088806, -0.028305054, 0.014076233, -0.026687622, 0.025299072, -0.012268066, -0.0049858093, 0.0022354126, -0.0014448166, 0.039489746, 0.0060691833, -0.036956787, -0.032073975, 0.026870728, 0.027435303, -0.0041656494, 0.025848389, -0.03869629, -0.003124237, 0.00919342, -0.013343811, 0.0036201477, 0.01222229, -0.05618286, -0.011390686, -0.00793457, -0.018508911, 0.005355835, 0.0030498505, 0.0064735413, -0.014160156, -0.004886627, -0.03189087, 0.015701294, -0.019927979, -0.018081665, 0.015609741, 0.03866577, -0.00995636, 0.03805542, -0.0059013367, -0.015823364, 0.03375244, 0.009590149, -0.01259613, -0.03753662, -0.02067566, -0.026184082, 0.017318726, 0.024017334, -0.034606934, 0.039916992, -0.04208374, -0.06109619, -0.021850586, 0.018325806, 0.010375977, 0.02822876, 0.018753052, -0.037231445, -0.046295166, -0.057403564, -0.054779053, -0.061553955, -0.072509766, -0.018478394, 0.013145447, 0.041503906, 0.07659912, 0.012702942, -0.010192871, -0.09741211, -0.04034424, -0.0072631836, -0.030075073, -0.018844604, 0.0690918, 0.043548584, 0.034301758, -0.045166016, -0.028671265, -0.017868042, -0.004711151, 0.043884277, 0.029022217, -0.01965332, 0.012184143, 0.036743164, 0.030517578, -0.015991211, 0.025985718, 0.039093018, 0.038604736, -0.036712646, -0.034088135, 0.008026123, -0.03491211, 0.040771484, -0.03579712, 0.02798462, 0.010353088, -0.028335571, 0.009651184, -0.04055786, 0.060760498, -0.01448822, 0.0018606186, 0.014427185, 0.022323608, 0.053833008, 0.009216309, -0.05090332, 0.0036811829, 0.0010910034, -0.023147583, 0.043151855, 0.011238098, -0.009719849, 0.037994385, 0.02961731, -0.01083374, -0.013923645, -0.023483276, 0.006160736, 0.006416321, -0.005001068, 0.031555176, 0.009735107, -0.0013008118, -0.0005455017, -0.030197144, -0.011276245, 0.06121826, -0.0072288513, 0.02999878, -0.032104492, 0.03286743, -0.040252686, 0.005859375, -0.008049011, -0.03326416, 0.018203735, 0.029281616, -0.016998291, -0.012260437, -0.03781128, 6.765127e-05, 0.046569824, -0.0006337166, 0.03967285, -0.05267334, 0.02394104, -0.04928589, 0.021575928, -0.025283813, -0.036743164, -0.07299805, -0.017623901, 0.025512695, 0.0031642914, -0.026504517, 0.017684937, -0.011444092, -0.049865723, 0.034423828, -0.059539795, 0.02949524, 0.00059890747, 0.02015686, -0.033721924, 0.01360321, -0.009994507, 0.0061531067, 0.02406311, 0.049194336, 0.035705566, 0.019989014, -0.023666382, 0.010391235, 0.0413208, 0.01676941, 0.015991211, -0.051879883, -0.00844574, 0.008155823, 0.019439697, -0.015701294, -0.0053520203, -0.004096985, 0.0046539307, 7.390976e-05, -0.001074791, 0.0024299622, 0.009506226, 0.003364563, -0.033416748, 0.017684937, 0.0149383545, -0.049591064, -0.015007019, -0.03427124, 0.0024147034, -0.033843994, -0.046081543, -0.015151978, 0.002029419, -0.03173828, 0.023269653, 0.009567261, 0.025405884, 0.018234253, -0.025558472, -0.014556885, 0.01776123, 0.02130127, 0.057403564, 0.06463623, -0.0041389465, 0.019378662, 0.016494751, -0.050231934, -0.033599854, 0.03994751, -0.043823242, -0.034179688, 0.005329132, 0.0012340546, 0.0231781, -0.0067863464, 0.0093307495, 0.042633057, 0.03225708, -0.013580322, 0.007686615, -0.074401855, -0.00793457, 0.0524292, 0.005844116, -0.009063721, -0.07171631, 0.026397705, -0.0031738281, 0.07232666, -0.011444092, 0.0090408325, -0.010131836, 0.0031051636, -0.024765015, 0.0043678284, -0.012718201, 0.004196167, 0.00034499168, 0.001115799, -0.027526855, 0.012611389, 0.020523071, 0.013511658, 0.028808594, 0.0079574585, 0.03149414, -0.02571106, -0.08880615, -0.007904053, -0.024154663, 0.019760132, 0.033355713, -0.03729248, 0.013305664, 0.016784668, -0.027786255, -0.0029144287, 0.013175964, 0.018997192, 0.03149414, 0.0107040405, 0.022079468, 0.02204895, -0.03265381, 0.023910522, -0.058776855, -0.00983429, 0.021224976, -0.009529114, -0.0050735474, -0.033325195, 0.0020942688, -0.007270813, -0.028366089, 0.0146484375, -0.035095215, -0.049468994, 0.03010559, 0.020889282, 0.0074882507, 0.00022017956, 0.046783447, -0.0061073303, -0.0011453629, 0.028884888, -0.016784668, 0.03869629, 0.029907227, 0.05239868, -7.778406e-05, 0.111450195, 0.00043678284, -0.044555664, -0.033721924, 0.029663086, -0.0031852722, -0.01071167, 0.01751709, -0.012672424, 0.005180359, 0.012649536, -0.070251465, -0.015777588, -0.0078086853, 0.10882568, -0.033569336, 0.0017576218]}, "B01N1RO9WG": {"id": "B01N1RO9WG", "original": "Brand: GasOne\nName: Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove\nDescription: \nFeatures: \u2713 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included)\n\u2713 PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame\n\u2713 EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness***\n\u2713 SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism\n\u2713 WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind\n", "metadata": {"Name": "Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove", "Brand": "GasOne", "Description": "", "Features": "\u2713 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included)\n\u2713 PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame\n\u2713 EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness***\n\u2713 SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism\n\u2713 WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016052246, -0.017425537, 0.0066604614, -0.029510498, -0.028411865, 0.0206604, -0.030471802, -0.008361816, -0.021865845, -0.006580353, -0.019332886, 0.027252197, -0.009727478, -0.03781128, 0.054656982, -0.012107849, -0.01751709, 0.05407715, 0.016403198, -0.02796936, 0.005493164, -0.045074463, -0.030044556, 0.08935547, 0.021697998, -0.017150879, -0.053527832, 0.0085372925, 0.008369446, -0.013656616, 0.022583008, 0.029724121, 0.0287323, 0.0058288574, -0.03390503, -0.05545044, -0.041534424, -0.0067749023, -0.059692383, 0.045928955, 0.0057678223, -0.007736206, -0.026657104, 0.013648987, -0.036834717, -0.014274597, 0.0033779144, -0.009536743, 0.026245117, 0.008544922, -0.00868988, -0.0022735596, -0.01448822, 0.017822266, -0.01626587, -0.008895874, 0.019958496, -0.015403748, 0.012863159, -0.031829834, -0.011436462, -0.0029830933, 0.027694702, 0.02734375, -0.053009033, 0.035186768, 0.022720337, -0.031173706, 0.05657959, -0.058563232, -0.04724121, 0.023330688, 0.019042969, -0.0013608932, -0.040802002, -0.017944336, 0.001159668, -0.034851074, 0.040222168, -0.01335144, 0.015266418, 0.0022830963, 0.004764557, -0.020690918, 0.014839172, -0.013389587, -0.00932312, -0.016326904, -0.040252686, 0.01424408, -0.0262146, -0.04324341, -0.029220581, 0.02355957, 0.0005059242, 0.0069999695, -0.045806885, -0.083618164, 0.046539307, 0.028549194, 0.024627686, -0.051727295, 0.04989624, -0.007297516, -0.0004954338, 0.06732178, 0.0158844, 0.03982544, 0.017059326, -0.015991211, 0.008338928, -0.03314209, -0.043121338, -0.043395996, 0.019866943, 0.0748291, -0.021255493, 0.017486572, 0.008895874, 0.026443481, -0.0041999817, -0.009010315, 0.044189453, -0.003080368, 0.004760742, 0.0035991669, -0.033447266, -0.019104004, -0.042419434, 0.01473999, -0.010108948, 0.019012451, 0.0032634735, 0.041778564, -0.02104187, -0.006500244, 0.017623901, -0.025253296, -0.0043411255, -0.045715332, 0.02255249, 0.01651001, 0.029052734, -0.0060272217, 0.015235901, 0.009918213, 0.023223877, 0.022705078, -0.0020771027, -0.013870239, 0.0058174133, 0.017959595, 0.01739502, 0.018814087, -0.0010137558, -0.00674057, -0.0020275116, -0.0059432983, 0.008384705, -0.01826477, 0.004711151, -0.002462387, 0.0015668869, 0.033325195, 0.012893677, 0.010063171, 0.025100708, 0.011604309, 0.013725281, 0.04623413, 0.016281128, 0.04458618, 0.0012979507, -0.011268616, -0.017105103, -0.054016113, -0.03338623, 0.054656982, 0.03982544, -0.053344727, -0.030212402, -0.04473877, 0.10455322, -0.021224976, -0.009468079, -0.0005517006, -0.018600464, -0.05078125, 0.027923584, -0.027877808, 0.022903442, 0.0231781, -0.0146102905, -0.018585205, -0.0010271072, -0.009788513, -0.022827148, 0.00073862076, -0.01979065, 0.003622055, 0.013572693, -0.007888794, 0.004283905, -0.002275467, -0.061340332, -0.006702423, -0.021224976, 0.017929077, 0.020980835, 0.016647339, -0.0044937134, -0.0024356842, 0.011940002, -0.053497314, -0.054260254, -0.010757446, -0.023895264, 0.057006836, 0.016708374, 0.03515625, 0.058441162, -0.047943115, 0.059631348, 0.009719849, 0.03765869, -0.011207581, -0.012817383, -0.0107040405, 0.0256958, 0.014289856, -0.05078125, 0.015182495, 0.047180176, 0.051574707, -0.008659363, 0.028045654, 0.09906006, 0.06842041, -0.005859375, -0.046691895, -0.0022735596, -0.028900146, -0.030044556, 0.028869629, -0.038269043, 6.741285e-05, 0.025909424, 0.019638062, -0.030548096, 0.021118164, 0.007835388, 0.024169922, -0.00076532364, 0.0006260872, -0.0017347336, 0.023269653, -0.020614624, 0.034576416, -0.030471802, 0.030349731, -0.019973755, 0.07244873, 0.06707764, -0.0023269653, 0.012435913, 0.023788452, 0.04373169, 0.034484863, -0.009521484, 0.0135650635, 0.0039405823, -0.013374329, -0.0016202927, 0.038238525, 0.056396484, -0.017929077, -0.01777649, -0.00894165, -0.015411377, 0.017501831, 0.0031471252, -0.03994751, 0.0076522827, 0.014205933, 0.057647705, -0.024536133, 0.04144287, 0.024856567, -0.008903503, -0.008308411, 0.030471802, -0.037750244, -0.020904541, -0.0110321045, -0.015037537, -0.03668213, 0.08905029, 0.003982544, 0.026184082, -0.03881836, 0.0012369156, 0.014389038, -0.08123779, 0.03756714, -0.002998352, -7.57575e-05, 0.004673004, 0.008026123, 0.0058135986, -0.03012085, 0.019897461, 0.01625061, 0.025680542, 0.006122589, 0.007129669, -0.025558472, 0.00012153387, 0.02960205, 0.017532349, 0.044647217, -0.0045318604, -0.041900635, -0.0345459, -0.0026340485, -0.025741577, 0.004261017, 0.013366699, -0.0005941391, -0.007762909, -0.012664795, 0.030303955, 0.00667572, 0.012939453, -0.0076789856, -0.0064201355, -0.016433716, -0.0048103333, 0.020950317, -0.005001068, -0.016082764, 0.003993988, 0.006038666, 0.005706787, -0.012588501, -0.015548706, -0.05657959, 0.0024929047, -0.0024585724, -0.06298828, -0.021591187, 0.04284668, -0.030776978, 0.017074585, -0.014801025, 0.048065186, -0.060150146, -0.06311035, -0.01713562, -0.022644043, -0.05392456, -0.0435791, -0.0002501011, -0.08270264, -0.06451416, 0.076049805, -0.0059127808, -0.06542969, -0.025131226, 0.0056037903, 0.020401001, 0.04159546, 0.023071289, -0.09680176, -0.026000977, -0.04486084, -0.013389587, 0.021713257, -0.018447876, 0.019195557, 0.020507812, 0.03604126, 0.037109375, -0.01725769, 0.02897644, -0.006881714, 0.03942871, 0.041290283, 0.017044067, 0.010696411, -0.038238525, 0.026977539, 0.04196167, -0.015213013, -0.018722534, 0.043701172, 0.024642944, -0.042144775, -0.029525757, -0.043395996, -0.0017404556, -0.018829346, 0.016494751, -0.01209259, -0.009048462, 0.007659912, -0.076538086, 0.021270752, -0.033813477, 0.030288696, -0.008934021, 0.0049819946, 0.010604858, -0.015853882, -0.004085541, -0.027267456, -0.014923096, 0.039855957, -0.008476257, -0.0056152344, -0.016311646, 0.061401367, -0.07293701, 0.07269287, 0.050445557, -0.024612427, 0.0020160675, -0.033203125, -0.0129470825, 0.017089844, 0.034820557, -0.026260376, 0.023727417, -0.022659302, 0.006126404, 0.018997192, 0.0368042, -0.0028648376, -0.05255127, 0.02532959, -0.032928467, -0.048614502, -0.03265381, -0.044830322, -0.006340027, -0.03173828, -0.025039673, -0.011657715, -0.051727295, 0.01965332, -0.07086182, 0.014961243, 0.01802063, 0.050476074, -0.00044608116, -9.280443e-05, 0.020263672, 0.01146698, 0.018569946, -0.0032730103, -0.010658264, -0.02947998, -0.025115967, 0.015396118, -0.0368042, 0.018051147, -0.04626465, 0.050109863, 0.003753662, 0.016616821, -0.008865356, 0.0040397644, 0.024032593, -0.0016670227, -0.034088135, 0.00035214424, -0.030441284, 0.047576904, -0.006038666, 0.02986145, -0.047698975, -0.01878357, -0.009231567, -0.043121338, 0.050354004, 0.045318604, -0.011871338, 0.045806885, 0.040283203, -0.02897644, 0.0019426346, 0.011329651, -0.0115737915, -0.022262573, 0.023269653, -0.044311523, -0.008171082, 0.017242432, 0.010414124, 0.016220093, 0.007865906, -0.04928589, 0.019363403, -0.007850647, -0.020553589, -0.030532837, 0.026565552, -0.011268616, -0.01826477, -0.005214691, -0.07702637, -0.037353516, -0.056030273, -0.054382324, 0.008773804, -0.04650879, -0.022155762, -0.018005371, -0.01876831, -0.023712158, 0.0053634644, -0.0040130615, 0.0044822693, -0.0023994446, 0.03527832, -0.0099105835, -0.0079574585, -0.008850098, 0.018829346, -0.06008911, 0.010307312, 0.023727417, 0.03451538, 0.003780365, -0.037963867, 0.03515625, -0.010940552, -0.01146698, 0.05432129, 0.032440186, -0.083496094, 0.02229309, 0.042633057, -0.026733398, -0.054718018, -0.018310547, 0.0030136108, -0.004436493, 0.014846802, -0.07159424, 0.006500244, -0.01235199, -0.0005893707, -0.046722412, -0.054382324, -0.033111572, 0.009559631, 0.004348755, 0.004425049, -0.0075645447, -0.011688232, 0.0057678223, 0.016159058, -0.05795288, 0.02418518, -0.04385376, 0.006752014, -0.0023269653, -0.027420044, -0.0022068024, -0.023834229, 0.0054855347, 0.0014886856, 0.053833008, 0.004333496, 0.0005707741, -0.026947021, -0.00082683563, 0.012359619, 0.04220581, 0.046661377, -0.0463562, 0.019638062, 0.011474609, 0.019134521, -0.098083496, 0.029632568, 0.042541504, 0.00894165, -0.061065674, -0.023147583, 0.05307007, 0.013076782, 0.032836914, -0.020843506, 0.022964478, 0.012863159, 0.02017212, -0.10870361, -0.097961426, -0.013427734, -0.015823364, 0.019165039, 0.010986328, -0.009490967, -0.009651184, 0.06524658, 0.0077781677, -0.0090789795, -0.0031471252, 0.050964355, 0.0010118484, 0.02168274, -0.03930664, -0.022216797, -0.011627197, 0.016479492, -0.05316162, 0.053863525, 0.016921997, -0.009536743, 0.010437012, 0.0009646416, -0.0032310486, -0.038269043, -0.020462036, 0.0029125214, -0.012329102, -0.04736328, -0.03262329, 0.0413208, -0.030075073, 0.012184143, -0.009132385, 0.003578186, 0.0077323914, 0.0033302307, -0.016326904, -0.015144348, -0.01537323, -0.008476257, -0.01676941, 0.032592773, -0.04660034, 0.00028562546, 0.057678223, -0.0107421875, -0.023086548, -0.0115356445, -0.008453369, 0.0020656586, -0.023132324, 0.008361816, -0.038238525, 0.019470215, 0.051574707, -0.00059890747, -0.02015686, 0.005783081, 0.041900635, -0.05709839, -0.078552246, -0.0019407272, 0.024429321, -0.044677734, 0.0513916, 0.0024261475, 0.037322998, 0.0038394928, 0.0024967194, 0.02470398, -0.021453857, 0.014602661, 0.036956787, 0.019561768, 0.026535034, -0.047332764, 0.058685303, -0.011665344, -0.018035889, -0.05392456, 0.0043945312, 0.0362854, -0.015174866, 0.061676025, -0.052764893, 0.06021118, 0.01574707, -0.03286743, 0.0038719177, 0.03768921, -0.010856628, -0.0045928955, 0.0033416748, -0.032562256, -0.05239868, -0.017990112, -0.027999878, -0.024597168, 0.023422241, -0.045776367, -0.03744507, 0.015823364, 0.009780884, -0.0102005005, -0.005302429, -0.006439209, -0.06762695, 0.0038166046, -0.011238098, 0.01626587, -0.0009813309, -0.010154724, 0.037353516, 0.009841919, -0.017333984, -0.06463623, -0.055389404, 0.013542175, -0.03591919, 0.0287323, 0.0017776489, -0.017089844, 0.008155823, -0.018066406, 0.005630493, -0.016662598, -0.0124053955, 0.0262146, 0.016983032, 0.01473999, -0.06915283, -0.025894165, 0.06097412, -0.0680542, -0.05505371, 0.042510986, 0.04031372, -0.0209198, -0.010398865, 0.04220581, 0.01133728, 0.006755829, 0.03289795, 0.018753052, -0.02319336, -0.004173279, 0.01398468, -0.08679199, -0.03845215, -0.022644043, -0.0027046204, -0.03866577, 0.0018024445, 0.027008057, 0.028961182, 0.0052452087, 0.010681152, -0.011054993, 0.003540039, -0.01727295, -0.031677246, -0.013847351, -0.0138549805, 0.015838623, -0.018234253, -0.012237549, -0.026519775, -0.0056533813, -0.007297516, 0.012741089, 0.005821228, 0.010368347, -0.0146484375, -0.032165527, -0.0030994415, 0.029937744, -0.0051231384, -0.0146102905, -0.0017976761, 0.03186035, -0.0029182434, 0.04031372, -0.037994385, -0.01828003, -0.0670166, 0.014549255, 0.018096924, 0.08459473, -0.043426514, 0.049987793, 0.012825012, 0.022964478, -0.0121536255, 0.021224976, -0.0001834631, -0.024536133, -0.034423828, 0.0006804466, 0.048217773, -0.036956787, -0.03616333, -0.043792725, -0.033966064, -0.01676941, -0.021972656, 0.029830933, -0.0070610046, -0.003250122, 0.0053100586, 0.011390686, 0.018493652, -0.015083313, 0.031097412, 0.034973145, 0.043060303, 0.04776001, 0.02218628, 0.035949707, -0.027114868, -0.06573486, -0.0058784485, 0.02897644, -0.018081665, 0.02696228, -0.010055542, 0.034362793, 0.04260254, -0.075927734, -0.019897461, 0.009490967, 0.025466919, 0.0025901794, -0.06317139, -0.027435303, 0.011543274, 0.0018138885, -0.03842163, -0.0059280396, 0.02822876, -0.0104904175, 0.03842163, 0.028518677, -0.010139465, -0.0012874603, 0.05419922, -0.00020074844, -0.013153076, -0.036346436, -0.001958847, 0.042663574, 0.014762878, -0.010643005, 0.010902405, -0.032318115, 0.014892578, 0.00983429, -0.026412964, -0.039215088, -0.034973145, 0.0068588257, 0.021194458, -0.017028809, -0.0340271, -0.03652954, 0.019302368, 0.0038108826, -0.049346924, 0.04547119, -0.081848145, 0.052642822, 0.02458191, 0.04208374, 0.004737854, -0.014167786, -0.012008667, -0.0061683655, 0.013069153, -0.014533997, 0.025726318, -0.032104492, 0.012962341, -0.018249512, 0.047607422, -0.050048828, 0.019424438, -0.009597778, 0.030654907, 0.015510559, 0.036865234, 0.004142761, -0.0030002594, -0.02607727, -0.017929077, -0.018722534, -0.02935791, 0.021026611, -0.0031490326, 0.030136108, -0.026672363, 0.012275696, -0.027313232, -0.020645142, 0.049468994, -0.012931824, -0.020568848, -0.02142334, -0.036743164, -0.027832031, 0.010757446, -0.061065674, 0.0020961761, -0.006008148, -0.027862549, -0.031463623, 0.016860962, 0.07977295, -0.061767578, 0.004043579, -0.016204834, 0.037841797, 0.0047340393, 0.028152466, -0.021316528, -0.06695557, -0.015945435, 0.044647217, -0.085632324, -0.088378906, 0.015586853, -0.003376007, 0.0028533936, -0.0014724731, -0.004550934, 0.034301758, 0.024398804, -0.01361084, 0.0234375, -0.024337769, -0.011558533, 0.02494812, 0.019104004, -0.02116394, -0.02482605, 0.008514404, 0.03173828, 0.019546509, 0.00013029575, 0.05609131, -0.06915283, 0.0121154785, -0.028259277, 0.005290985, -0.016921997, -0.002904892, 0.009559631, -0.009963989, -0.05593872, 0.036590576, 0.008758545, 0.048095703, 0.007537842, 0.032958984, 0.06488037, -0.0027484894, -0.01838684, -0.03704834, -0.033416748, 0.019073486, 0.01007843, -0.033111572, 0.008903503, -0.037200928, -0.028671265, -0.023513794, -0.00059843063, -0.016677856, -0.0005083084, 0.004558563, -0.019836426, -0.028564453, -0.0084991455, -0.016784668, -0.00447464, -0.026748657, 0.04006958, -0.036102295, -0.0038032532, -0.01222229, -0.03781128, -0.012580872, -0.039093018, -0.005592346, 0.010826111, -0.008514404, -0.006542206, 0.01096344, 0.01763916, -0.0029964447, -0.010574341, -0.009162903, -0.036499023, -0.0029754639, 0.017944336, -0.008850098, -0.025253296, 0.045959473, 0.015510559, 0.044799805, -0.034423828, -0.0803833, -0.065979004, 0.021865845, 0.027252197, -0.0010137558, 0.08428955, -0.018157959, 0.009048462, 0.026657104, -0.01663208, -0.028564453, 0.015075684, 0.021392822, 0.005493164, 0.018173218]}, "B0848RWBP7": {"id": "B0848RWBP7", "original": "Brand: GasOne\nName: GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black\nDescription: \nFeatures: \u2713 Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\n\u2713 Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\n\u2713 Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\n\u2713 EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\n\u2713 Safety 1st - top quality propane hose adapter\n", "metadata": {"Name": "GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black", "Brand": "GasOne", "Description": "", "Features": "\u2713 Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\n\u2713 Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\n\u2713 Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\n\u2713 EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\n\u2713 Safety 1st - top quality propane hose adapter", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00945282, 0.00642395, -0.028381348, -0.018173218, -0.013122559, 0.002735138, -0.025360107, 0.0029258728, -0.017150879, -0.0036182404, 0.0049743652, -0.014724731, 0.0024547577, -0.053649902, 0.026870728, -0.025650024, 0.012756348, -0.013328552, -0.019042969, -0.04019165, 0.010887146, -0.03479004, 0.008651733, 0.099487305, 0.014205933, -0.046691895, 0.05230713, -0.037261963, 0.042114258, -0.024414062, 0.013046265, 0.012290955, 0.047698975, -0.003932953, -0.06149292, -0.039764404, -0.0129470825, -0.03555298, -0.06427002, 0.040374756, 0.015174866, -0.008346558, 0.015022278, -0.019577026, -0.0072746277, -0.035461426, 0.041534424, -0.01651001, 0.007774353, 0.036956787, 0.012916565, -0.008026123, 0.024246216, -0.013557434, 0.0044898987, 0.005077362, -0.0031604767, -0.041870117, -0.0024852753, 0.006500244, 0.009300232, 0.004650116, 0.01663208, 0.0058174133, -0.04119873, 0.022628784, 0.034179688, -0.037353516, 0.021575928, -0.039520264, -0.015640259, 0.014251709, 0.012237549, 0.016937256, -0.0541687, -0.01600647, 0.01890564, -0.013298035, 0.024169922, -0.0069503784, 0.012191772, -0.043640137, 0.03353882, 0.023803711, -0.012664795, 0.018829346, -0.0070228577, -0.013793945, 0.004486084, -0.010940552, -0.02079773, 0.025390625, 0.020370483, 0.0023174286, -0.049438477, -0.010620117, -0.023117065, -0.053863525, 0.02859497, 0.030014038, 0.017807007, -0.045959473, 0.06781006, -0.0032176971, 0.01083374, 0.022155762, -0.005592346, -0.038635254, 0.031021118, 0.015167236, -0.019012451, 0.087524414, -0.0020618439, -0.015823364, -0.008308411, 0.03640747, 0.006198883, 0.0112838745, 2.2113323e-05, 0.012794495, 0.009925842, -0.00032544136, 0.028884888, -0.03933716, -0.018920898, -0.037109375, -0.047424316, -0.00014793873, -0.026916504, 0.0074272156, -0.027648926, -0.0069084167, 0.05014038, 0.07110596, 0.028244019, -0.0018062592, 0.024551392, -0.004020691, 0.013244629, 0.0033054352, 0.008148193, -0.048431396, 0.0039749146, 0.030029297, 0.012664795, 0.040863037, 0.010574341, -0.005908966, 0.015029907, -0.025390625, -0.038024902, -0.030227661, 0.045013428, -0.04562378, -0.03277588, -0.054260254, -0.03048706, -0.029464722, 0.023376465, -0.030471802, -0.04232788, -0.007980347, 0.025756836, 0.013763428, 0.021743774, 0.024215698, 0.004337311, 0.004337311, 0.0013971329, 0.04019165, -0.047912598, 0.04815674, 0.0063056946, 0.0006403923, -0.00029420853, -0.016860962, -0.064453125, 0.09375, 0.0770874, -0.1217041, -0.049346924, -0.053955078, 0.14428711, -0.008590698, 0.043823242, -0.066101074, 0.0259552, -0.08728027, -0.0073661804, 0.0024108887, 0.014099121, 0.06512451, -0.01828003, -0.043518066, 0.013809204, 0.024810791, -0.028579712, 0.0077819824, -0.0012598038, 0.003660202, -0.07904053, -0.024597168, 0.023406982, -0.0003502369, 0.010108948, -0.028503418, -0.0026988983, 0.02961731, 0.005077362, 0.02015686, -0.0013341904, -0.010948181, 0.00894165, -0.032318115, -0.020645142, -0.013694763, -0.010345459, -0.0036144257, -0.0025749207, -0.045715332, 0.054992676, -0.024642944, 0.041046143, 0.09136963, -0.0284729, -0.0027809143, -0.026473999, -0.003440857, -0.039611816, -0.00072574615, 0.024398804, 0.043823242, 0.07421875, 0.04043579, -0.03439331, 0.03213501, 0.099487305, 0.047454834, -0.017349243, -0.010902405, 0.016052246, -0.024230957, 0.014793396, 0.051635742, 0.008468628, -0.030578613, 0.004055023, 0.021606445, -0.019866943, 0.020202637, 0.081970215, 0.044708252, 0.0067825317, 0.04220581, -0.0054740906, 0.018554688, 0.0026607513, 0.01991272, -0.028717041, 0.022567749, -0.014976501, 0.009887695, 0.011787415, -0.008346558, -0.006477356, 0.037628174, 0.043273926, 0.039855957, -0.009521484, 0.011138916, 0.0043678284, 0.009338379, -0.018920898, -0.02079773, -0.049194336, 0.00056409836, -0.044830322, 0.052459717, 0.0021877289, -0.022094727, 0.0024814606, -0.055603027, -0.0045547485, 0.0005803108, 0.06347656, 0.017333984, 0.029403687, 0.0019893646, -0.048980713, -0.0014314651, 0.0118637085, 0.046203613, 0.030792236, -0.034088135, 0.0073051453, 0.01373291, 0.078552246, -0.010017395, 0.029678345, -0.022277832, 0.041107178, 0.04736328, -0.056671143, 0.027420044, -0.016540527, -0.0012302399, 0.0015602112, 0.014205933, 0.008842468, -0.03994751, 0.01939392, 0.01550293, 0.00579834, 0.03744507, -0.021209717, -0.0033359528, -0.018234253, 0.021362305, 0.037384033, 0.06665039, 0.0034294128, 0.0050735474, -0.015510559, -0.020462036, 0.008293152, -0.014945984, -0.039276123, 0.007369995, 0.021835327, 0.0015296936, 0.011451721, 0.0051994324, -0.006958008, -0.039215088, -0.001578331, -0.015594482, 0.024627686, 0.016448975, 0.0118255615, -0.03552246, 0.03982544, 0.015060425, -0.018707275, 0.023605347, -0.009941101, -0.03378296, 0.0076904297, 0.0050354004, -0.012298584, 0.008407593, 0.0020751953, -0.014472961, 0.0072746277, 0.00013613701, 0.01007843, -0.005329132, -0.005252838, -0.005493164, -0.019500732, -0.05822754, 0.005836487, -0.018005371, -0.050079346, -0.032348633, 0.07299805, -0.010375977, -0.041931152, -0.03326416, -0.041809082, -0.015655518, -0.008514404, -0.010971069, -0.11279297, -0.017654419, -0.016113281, 0.052856445, 0.033355713, -0.018432617, 0.013442993, 0.022598267, 0.051452637, 0.058532715, -0.03869629, 0.040649414, -0.033111572, 0.07098389, 0.078186035, 0.013549805, -0.007297516, -0.060424805, 0.0109939575, 0.07519531, 0.020874023, -0.026885986, -0.009994507, -0.014862061, 0.0071487427, 0.017974854, -0.010818481, -0.019515991, -0.036132812, 0.014884949, -0.00434494, 0.0109939575, -0.00642395, -0.035736084, -0.008041382, -0.04711914, 0.01777649, 0.039520264, -0.00025844574, 0.014144897, -0.016036987, 0.03125, -0.017196655, -0.008056641, -0.01612854, -0.008377075, -0.031463623, 0.021820068, 0.044128418, -0.054138184, 0.04550171, 0.058898926, -0.052612305, -0.011856079, -0.0038909912, 0.050476074, -0.039245605, 0.008522034, -0.018539429, -0.024993896, -0.051513672, -0.045532227, -0.0022525787, 0.019378662, -0.0016527176, 0.012878418, -0.00223732, 0.0041999817, -0.029815674, -0.02468872, -0.03463745, 0.009986877, -0.031951904, 5.9187412e-05, -0.032409668, -0.026535034, 0.02293396, -0.033935547, 0.013427734, 0.012702942, 0.025161743, -0.015342712, -0.0056610107, 0.02281189, -0.014801025, 0.02482605, -0.013496399, -0.009765625, -0.014221191, -0.006164551, 0.020141602, -0.03881836, 0.008728027, -0.03366089, 0.04815674, 0.0036735535, 0.0001667738, -0.0009469986, 0.00036931038, 0.02178955, -0.009613037, -0.028701782, 0.038116455, 0.0579834, -0.0012788773, -0.04434204, 0.014541626, 0.0054893494, -0.06359863, 0.018997192, -0.05368042, 0.028625488, -0.008148193, -0.004047394, 0.047332764, 0.041168213, -0.01966858, 0.0069999695, 0.047332764, -0.007511139, -0.008049011, 0.048858643, -0.044891357, -0.032714844, -0.010932922, 0.008277893, 0.01083374, -0.019454956, 0.020126343, -0.009918213, 0.022644043, -0.012023926, -0.018539429, 0.015823364, -0.014663696, -0.010894775, -0.020401001, -0.06921387, -0.011741638, -0.052520752, -0.027801514, 0.010475159, -0.023620605, -0.014633179, 0.00843811, 0.009307861, -0.015327454, -0.014076233, -0.004257202, -0.0087509155, 0.0023994446, 0.026763916, 0.0095825195, -0.011955261, -7.69496e-05, 0.0041275024, -0.049743652, 0.024978638, -0.011779785, 0.05456543, -0.0051078796, -0.045837402, 0.030441284, -0.044128418, -0.015434265, 0.058563232, -0.006816864, -0.10510254, -0.016967773, 0.03237915, -0.005039215, -0.052459717, -0.022415161, -0.0030555725, -0.018218994, 0.026870728, -0.030792236, 0.0017290115, 0.016601562, 0.011749268, -0.035217285, -0.03753662, -0.030471802, 0.020248413, -0.007980347, 0.010795593, -0.021392822, 0.015319824, -0.01751709, 0.06677246, -0.061462402, -0.014411926, -0.07788086, 0.008010864, -0.0015993118, 0.009414673, -0.007446289, -0.06427002, -0.011169434, -0.021408081, 0.050964355, 0.01940918, 0.0006418228, 0.017150879, 0.013153076, 0.007785797, 0.04736328, 0.03366089, 0.00945282, -0.008346558, -0.021057129, -0.02998352, -0.09753418, 0.013427734, 0.030014038, -0.026046753, -0.07739258, -0.0035419464, 0.098083496, 0.01687622, 0.0046043396, -0.050872803, 0.019592285, 0.03463745, -0.016571045, -0.054992676, -0.064086914, -0.00598526, -0.03225708, -0.016830444, -0.019348145, -0.022109985, 0.072143555, 0.042510986, 0.019241333, -0.029937744, 0.014389038, -0.018814087, -0.01965332, 0.0072288513, -0.052337646, 0.036132812, -0.05029297, -0.022827148, -0.064208984, 0.04434204, 0.022109985, 0.011428833, 0.007209778, -0.008628845, 0.009788513, -0.020462036, -0.009536743, -0.006038666, 0.021408081, -0.038482666, -0.039764404, 0.02909851, -0.04940796, 0.001613617, -0.03338623, -0.01675415, -0.014259338, 0.0146484375, -0.020965576, -0.0423584, -0.034698486, -0.0155181885, 0.00894928, -0.0010967255, -0.06359863, 0.0018177032, 0.023086548, -0.00856781, -0.008666992, -0.00242424, -0.013450623, -0.014884949, -0.05114746, -0.010276794, -0.039916992, 0.019836426, 0.041992188, -0.02243042, -0.0027275085, 0.012130737, -0.006587982, -0.012374878, -0.017044067, 0.014846802, 0.016784668, -0.018936157, 0.0047073364, 0.00043010712, -0.005744934, 0.029266357, -0.020141602, 0.018966675, -0.0066490173, 0.022094727, -0.028396606, 0.0033626556, -0.0021877289, -0.08294678, 0.10253906, -0.0034942627, -0.013473511, -0.059661865, -0.0035686493, -0.024810791, -0.050598145, 0.02670288, -0.013710022, 0.042175293, 0.014472961, -0.016784668, -0.019180298, 0.060943604, -0.005115509, 0.008430481, 9.655952e-06, -0.01663208, -0.039215088, -0.029388428, -0.019500732, 0.029037476, 0.014228821, -0.029083252, 0.012916565, 0.026885986, -0.03277588, -0.0011081696, -0.022659302, 0.017456055, -0.007434845, -0.04425049, -0.005455017, 0.0013885498, -0.038482666, -0.013679504, -0.038146973, 0.0016841888, -0.05429077, -0.036254883, -0.059295654, 0.010276794, 0.0236969, 0.036956787, -0.0060691833, -0.061706543, -0.0018491745, 0.05319214, 0.022994995, -0.013191223, -0.03552246, 0.013397217, 0.010848999, 0.025878906, -0.0069503784, 0.015167236, 0.03515625, -0.031097412, -0.008369446, -0.030929565, 0.042114258, -0.014320374, -0.021118164, 0.08013916, 0.028015137, 0.017715454, 0.01663208, -0.0029354095, -0.01158905, 0.005569458, -0.0041999817, 0.022415161, -0.08532715, -0.037322998, -0.04724121, 0.020355225, 0.012481689, 0.012077332, 0.02368164, -0.008964539, 0.01878357, -0.0049209595, 0.01889038, -0.030075073, -0.03366089, 0.007232666, -0.016784668, 0.013183594, 0.00504303, 0.03378296, -0.039733887, -0.049560547, 0.010955811, 0.02420044, 0.028869629, 0.02305603, 0.012382507, 0.01689148, -0.05783081, 0.02041626, 0.005908966, -0.021316528, -0.010177612, 0.031158447, 0.0018663406, 0.05718994, -0.04244995, -0.01939392, -0.013046265, 0.002275467, 0.005138397, 0.015060425, -0.028335571, -0.006252289, -0.007129669, 0.042144775, -0.009010315, -0.023025513, -0.0014648438, -0.023880005, -0.027709961, -0.02178955, -0.012718201, -0.031402588, 0.013671875, -0.044189453, -0.0007338524, -0.0076293945, -0.022842407, 0.024917603, -0.0041275024, 0.010383606, 0.011703491, 0.008033752, 0.014335632, -0.015960693, 0.0124435425, 0.010276794, 0.0036373138, 0.015136719, 0.04486084, 0.016021729, -0.043304443, -0.072265625, 0.022598267, 0.0413208, -0.0036716461, 0.009361267, -0.030838013, -0.008384705, 0.05633545, -0.039886475, -0.017929077, 0.041503906, 0.009391785, -0.013160706, -0.03665161, -0.011329651, -0.014480591, 0.008773804, 0.034942627, 0.025421143, 0.025146484, 0.014183044, 0.017745972, -0.006511688, 0.01184082, -0.012809753, 0.0016040802, -0.0073509216, 0.010749817, -0.0066375732, -0.0149002075, -0.0062065125, 0.011856079, -0.01940918, -0.008148193, -0.00434494, 0.026107788, 0.010696411, -0.009597778, -0.044708252, -0.028945923, 0.0013303757, -0.010169983, -0.002023697, 0.009742737, 0.024032593, 0.046661377, -0.006969452, -0.0066947937, 0.0007843971, -0.029312134, -0.0124053955, 0.014289856, 0.018966675, -0.027633667, 0.019683838, -0.00422287, 0.012580872, 0.0038166046, 0.045043945, 0.050323486, 0.014007568, -0.015777588, -0.02798462, 0.017242432, -0.028518677, -0.007545471, -0.01108551, 0.011108398, -0.014373779, -0.05596924, -0.010925293, -0.056243896, -0.0040359497, 0.018112183, -0.029159546, 0.01612854, 0.04638672, 0.0037670135, 0.009651184, -0.026748657, 0.038757324, -0.026535034, -0.029464722, -0.0013313293, -0.00012719631, 0.024520874, -0.03060913, -0.020202637, -0.04498291, -0.040283203, -0.050994873, 0.05557251, -0.017578125, -0.016723633, -0.018798828, -0.0014867783, 0.010406494, -0.018798828, 0.0011234283, 0.020187378, 0.048797607, -0.028518677, 0.014678955, -0.030883789, -0.01184082, -0.01776123, 0.013366699, -0.064819336, -0.016479492, -0.054718018, 0.003227234, -0.01209259, -0.012306213, 0.028549194, 0.05831909, 0.00868988, 0.0049934387, -0.008995056, -0.065979004, -0.019454956, 0.036376953, 0.0028457642, -0.013542175, -0.025466919, 0.06048584, 0.009132385, 0.037475586, 0.0028629303, 0.015159607, -0.016403198, 0.029022217, 0.0017213821, -0.020629883, 0.007507324, -0.024307251, 0.0423584, -0.000202775, -0.036621094, 0.046447754, 0.017181396, 0.034454346, 0.027252197, 0.0149002075, 0.009109497, -0.0042419434, -0.035095215, -0.011314392, -0.0137786865, 0.013412476, -0.009849548, -0.06036377, -0.06756592, -0.027313232, 0.027160645, -0.054473877, 0.01928711, 0.0029850006, -0.018539429, 0.014511108, -0.018951416, -0.039276123, 0.012611389, -0.005458832, -0.0090789795, -0.026657104, 0.0814209, -0.024963379, -0.0146484375, -0.009498596, -0.03793335, -0.029830933, -0.017547607, -0.040100098, -0.056396484, -0.070617676, 0.034606934, 0.029434204, -0.018295288, 0.02067566, 0.010414124, 0.004459381, -0.02482605, 0.0046424866, 0.031951904, 0.010101318, -0.04159546, 0.028533936, 0.022354126, 0.018600464, -0.018692017, -0.074157715, -0.043884277, 0.016235352, 0.025634766, -0.00932312, 0.07183838, -0.045806885, -0.0007147789, 0.033569336, -0.028549194, -0.017715454, 0.0071754456, 0.08239746, -0.0018110275, -0.0021514893]}, "B083G4SNQX": {"id": "B083G4SNQX", "original": "Brand: ORIENT FAMULAY\nName: 58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black\nDescription: ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

      Features:
      -Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
      -Ccomes with a storage zipper bag. So it is very easy to fold when you don't need it
      -Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
      -With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

      Care and Use:
      1. Allow grill to cool before covering.
      2. The water repellent finish enables stain-preventing and easy cleaning
      3. Dry up the cover in the sun for next use or storage it to the bag

      What you could get?
      1 x 58inch grill cover
      1 x Storage bag
      Lifetime Product guarantee\nFeatures: \u3010WIDE COMPATIBILITY\u3011The bbq cover measures 58\"L x 24\"W x 46\"H inch, Check your grill's dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss\n\u3010Rip Resistant & UV Protection\u3011: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly.\n\u3010PORTABLE & CONVENIENCE\u3011The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle\n\u3010LIGHTWEIGHT BUT DURABLE MATERIAL\u3011:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new\n\u3010LIFETIME REPLACEMENT\u3011Any issues with the ripping or fading, please contact us and we'll make this right and give you the satisfied answer!\n", "metadata": {"Name": "58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black", "Brand": "ORIENT FAMULAY", "Description": "ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

      Features:
      -Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
      -Ccomes with a storage zipper bag. So it is very easy to fold when you don't need it
      -Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
      -With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

      Care and Use:
      1. Allow grill to cool before covering.
      2. The water repellent finish enables stain-preventing and easy cleaning
      3. Dry up the cover in the sun for next use or storage it to the bag

      What you could get?
      1 x 58inch grill cover
      1 x Storage bag
      Lifetime Product guarantee", "Features": "\u3010WIDE COMPATIBILITY\u3011The bbq cover measures 58\"L x 24\"W x 46\"H inch, Check your grill's dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss\n\u3010Rip Resistant & UV Protection\u3011: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly.\n\u3010PORTABLE & CONVENIENCE\u3011The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle\n\u3010LIGHTWEIGHT BUT DURABLE MATERIAL\u3011:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new\n\u3010LIFETIME REPLACEMENT\u3011Any issues with the ripping or fading, please contact us and we'll make this right and give you the satisfied answer!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.011314392, 0.009780884, -0.04272461, -0.040283203, 0.023361206, 9.518862e-05, -0.0039978027, 0.010803223, -0.033172607, -0.015640259, -0.008804321, -0.0019321442, -0.03805542, -0.0423584, 0.050872803, -0.057556152, 0.008163452, 0.0063552856, 0.008659363, -0.015388489, 0.0025596619, -0.010391235, 0.022125244, 0.011512756, 0.042755127, -0.030899048, -0.008148193, -0.0093307495, 0.02456665, -0.011802673, 0.014465332, -0.005153656, 0.036315918, -0.00041365623, -0.027053833, 0.016998291, -0.039031982, 0.0029697418, -0.027130127, 0.017669678, 0.02116394, -0.013694763, -0.0357666, 0.005115509, -0.020751953, -0.017303467, -0.0038280487, -0.05316162, 0.02671814, -0.004169464, 0.0012893677, 0.04107666, -0.003753662, 0.03475952, -0.009605408, 0.004272461, 0.0028419495, 0.016937256, 0.032318115, -0.04144287, -0.037078857, 0.0019464493, 0.021438599, 0.013687134, -0.022003174, -0.0045280457, 0.055541992, -0.0047798157, -0.06286621, -0.030548096, 0.05029297, 0.0012197495, 0.037506104, -0.0069007874, -0.021743774, -0.042785645, -0.014350891, -0.0524292, 0.04260254, -0.0074920654, -0.0028705597, -0.035095215, 0.018554688, -0.015449524, -0.023910522, -0.03881836, -0.00484848, 0.008018494, 0.016784668, -0.013313293, -0.00018131733, 0.06695557, -0.03048706, 0.027770996, -0.01576233, -0.018051147, -0.03753662, -0.03463745, 0.025482178, 0.019104004, 0.022521973, -0.029525757, 0.031280518, -0.005718231, -0.043640137, 0.04525757, 0.045135498, 0.07897949, -0.013916016, 0.00094127655, -0.010910034, -0.033203125, -0.013175964, -0.057739258, 0.00051498413, 0.025466919, -0.011352539, 0.007472992, 0.030975342, -0.031982422, -0.04949951, -0.014038086, -0.038024902, 0.035095215, 0.014099121, 0.0256958, 0.029052734, 0.035125732, -0.020828247, 0.02482605, -0.02746582, -0.00868988, 0.027008057, 0.05050659, 0.012496948, -0.027938843, 0.021835327, -0.009941101, -0.00045847893, 0.0031166077, -0.019500732, 0.006252289, 0.05303955, -0.027008057, -0.038879395, 0.02355957, 0.00016772747, 0.0110321045, 0.0024852753, -0.07763672, 0.03161621, -0.0635376, 0.061950684, -0.010383606, -0.08526611, -0.014533997, -0.008735657, -0.015007019, -0.0657959, -0.052520752, -0.037902832, -0.024719238, 0.018615723, -0.06188965, -0.056121826, 0.035003662, -0.032928467, -0.008033752, 0.015319824, 0.035064697, -0.00060129166, -0.023651123, -0.028884888, -0.01234436, -0.0036754608, -0.0010213852, -0.005432129, 0.06573486, 0.04840088, -0.09082031, -0.07006836, -0.0680542, 0.103149414, -0.03579712, 0.01461792, -0.030639648, 0.020523071, -0.0158844, 0.007347107, 0.02142334, -0.0029239655, -0.0006737709, -0.034973145, 0.0135650635, -0.037841797, 0.03375244, -0.01600647, 0.048187256, -0.019943237, -0.029159546, -0.014656067, -0.024795532, 0.01939392, 0.012840271, 0.019622803, -0.023544312, -0.00022113323, 0.006095886, 0.02848816, 0.030731201, -0.0033912659, 0.018295288, -0.00274086, -0.03768921, -0.037597656, -0.0071907043, -0.0126953125, 0.052490234, -0.015174866, 0.027679443, 0.008377075, -0.03704834, 0.006958008, 0.017654419, 0.032073975, -0.020507812, 7.379055e-05, -0.022354126, 0.04043579, 0.006290436, 0.005088806, 0.0118637085, 0.036071777, 0.025802612, -0.04159546, 0.02305603, 0.005290985, 0.041503906, -0.028656006, 0.021148682, 0.0060768127, 0.008995056, -0.038208008, 0.037994385, -0.016998291, -0.015045166, 0.003353119, 0.03137207, -0.047027588, -0.046569824, 0.025848389, -0.012382507, 0.035888672, 0.032592773, -0.029159546, 0.022506714, -0.025390625, 0.03552246, -0.031463623, 0.023452759, -0.016464233, 0.02508545, 0.041229248, -0.014587402, 0.026138306, 0.040496826, 0.048919678, 0.048950195, -0.011398315, 0.010650635, -0.01676941, 0.021316528, 0.009361267, 0.007286072, -0.03616333, -0.016418457, 0.0042686462, 0.015342712, -0.012496948, -0.029296875, 0.02558899, 0.032043457, -0.0071487427, 0.0002822876, 0.018218994, -0.0066375732, -0.0058021545, 0.022949219, 0.00040841103, -0.010482788, 0.02670288, -0.01940918, -0.034729004, 0.0053215027, 0.020629883, -0.036956787, -0.009849548, 0.031051636, -0.005859375, -0.01272583, -0.012054443, 0.027893066, -0.016983032, -0.0070495605, -0.02218628, 0.044006348, -0.020553589, -0.009002686, 0.001496315, -0.034301758, 0.03265381, 0.052642822, 0.01763916, -0.02420044, 0.054107666, 0.0020961761, 0.026611328, 0.04006958, 0.039489746, 0.04827881, -0.026779175, -0.01751709, -0.032165527, -0.027709961, -0.009727478, 0.035461426, -0.03829956, -0.00027012825, -0.02848816, 0.0016794205, -0.03050232, -0.038238525, -0.032409668, 0.0035476685, -0.026306152, 0.000644207, 0.007083893, -0.039733887, 0.0019340515, 0.005332947, 0.036743164, -0.01777649, 0.008613586, -0.011177063, -0.04208374, -0.030685425, 0.033233643, -0.006198883, -0.0043754578, 0.0022583008, 0.031585693, -0.018249512, 0.014793396, -0.03164673, -0.021743774, 0.052947998, -0.0063171387, -0.06390381, -0.013809204, -0.08868408, -0.0040893555, 0.0012016296, -0.043304443, -0.031158447, 0.026046753, -0.024383545, -0.024658203, -0.012031555, 0.041748047, 0.050750732, 0.04989624, 0.029205322, -0.045684814, -0.020889282, -0.011314392, -0.043029785, 0.007587433, -0.03289795, -0.012390137, -0.008377075, -0.017837524, 0.0018968582, -0.02279663, 0.018325806, 0.03074646, 0.025924683, 0.043518066, 0.059692383, -0.0037021637, -0.037506104, -0.015670776, 0.066711426, -0.016616821, -0.027877808, 0.008377075, 0.02067566, -0.015060425, 0.019317627, -0.005748749, -0.021621704, -0.047027588, -0.020935059, 0.0051193237, -0.039489746, -0.008979797, -0.047180176, -0.040161133, -0.02935791, -0.0071907043, 0.05392456, -0.068725586, 0.02017212, -0.050964355, -0.0006775856, 0.014709473, 0.014877319, -0.029846191, -0.0014638901, -0.019180298, 0.006866455, 0.006515503, 0.0059432983, -0.0004761219, 0.022521973, 0.013267517, 0.042663574, -0.005680084, -0.0018615723, -0.029144287, -0.02784729, 0.011558533, -0.03930664, 0.004749298, 0.027130127, -0.031311035, 0.035217285, 0.00020730495, -0.012275696, 0.037139893, -0.046081543, -0.017349243, 0.008079529, -0.014190674, 0.028778076, 0.010871887, -0.032440186, 0.008522034, -0.06100464, -0.06512451, -0.03756714, -0.023040771, 0.034454346, -0.022949219, 0.032165527, 0.023468018, 0.043914795, 0.04486084, 0.022872925, -0.025741577, -0.024108887, -0.03756714, -0.023162842, 0.034851074, -0.027374268, -0.002046585, -0.036102295, 0.03274536, 0.006717682, -0.0015878677, -0.010017395, -0.01449585, 0.040222168, 0.024108887, -0.024520874, 0.029785156, -0.040863037, -0.010604858, -0.0045928955, 0.0019407272, -0.025985718, -0.07470703, 0.012313843, -0.111450195, 0.091308594, 0.03942871, -0.023071289, 0.10296631, 0.08380127, -0.029525757, 0.03326416, 0.046173096, 0.016067505, 0.0138168335, 0.05532837, -0.013664246, -0.01676941, 0.004634857, -0.033233643, 0.006416321, -0.0135650635, -0.013656616, -0.014907837, -0.020492554, -0.008026123, -0.023727417, 0.05206299, 0.061309814, 0.030319214, -0.0211792, -0.057495117, 0.06359863, -0.04083252, -0.023925781, -0.0011730194, -0.02835083, -0.0030517578, -0.016479492, -0.01374054, -0.024551392, -0.0049362183, -0.014381409, -0.051116943, 0.06222534, 0.021102905, -0.042053223, 0.020446777, 0.04171753, 0.017837524, -0.0052337646, -0.0038909912, 0.023361206, 0.015808105, 0.0013608932, 0.014457703, -0.011383057, -0.0018692017, -0.011878967, 0.031829834, 0.030090332, -0.05267334, 0.007587433, 0.060668945, 0.0036258698, -0.014015198, 0.0070266724, -0.06970215, -0.034942627, -0.03793335, -0.02999878, -0.012634277, -0.023025513, -0.023986816, -0.049926758, -0.019866943, -0.013343811, -0.0770874, -0.046173096, 0.019424438, 0.0039253235, -0.0129776, -0.007369995, 0.011428833, -0.05819702, 0.009605408, 0.025360107, -0.014976501, 0.07946777, 0.010673523, -0.003921509, -0.015853882, -0.040802002, -0.004837036, 0.09503174, -0.011184692, 0.02532959, -0.062194824, -0.0068244934, 0.0068969727, 0.026062012, 0.074401855, 0.0075683594, 0.061187744, -0.006969452, 0.06921387, -0.079833984, -0.04727173, 0.0725708, -0.06311035, -0.04852295, -0.06781006, 0.056365967, -0.0026512146, -0.033325195, -0.023620605, 0.030319214, 0.012184143, 0.016433716, 0.018981934, 0.059326172, 0.026184082, -0.0020980835, -0.0011348724, 0.0037155151, -0.017211914, -0.012123108, -0.007537842, -0.054656982, 0.026519775, -0.031097412, 0.014198303, 0.017623901, 0.051849365, -0.04232788, -0.021469116, -0.013092041, 0.00422287, -0.049468994, 0.0769043, 0.029525757, -0.0011501312, -0.01436615, -0.01033783, -0.01828003, -0.070495605, 0.017456055, -0.030273438, -0.006801605, 0.015541077, -0.005592346, -0.022079468, 0.0043754578, -0.013664246, 0.01374054, -0.017684937, 0.029129028, -0.040008545, 0.033813477, 0.013977051, 0.03086853, 0.06768799, 0.015167236, 0.008575439, 0.016845703, -0.017120361, -0.012817383, -0.025634766, 0.00699234, 0.0026435852, -0.017074585, -0.015556335, 0.02041626, 0.0050849915, -0.003435135, -0.0010271072, 0.011680603, 0.011497498, -0.050811768, 0.00415802, -0.008895874, 0.0017766953, -0.053497314, 0.018371582, -0.01777649, 0.04095459, 0.059661865, 0.008583069, -0.021942139, 0.008850098, -0.007472992, 0.02357483, 0.0016937256, -0.093322754, 0.0045394897, 0.023086548, 0.013572693, 0.016067505, 0.047729492, 0.010025024, -0.0061454773, -0.017669678, -0.0057678223, -0.016311646, 0.02319336, -0.004951477, -0.018981934, 0.035827637, -0.01373291, -0.00970459, 0.00868988, 0.09283447, -0.033081055, -0.012763977, 0.030441284, 0.0014324188, -0.0491333, 0.013900757, -0.042388916, -0.025314331, -0.02027893, 0.02470398, 0.0071983337, -0.015487671, 0.0031394958, -0.040618896, 0.00349617, 0.009101868, -0.023269653, -0.034301758, -0.009719849, 0.024536133, -0.025863647, 0.0038337708, 0.020889282, 0.016143799, -0.03488159, -0.046691895, -0.026611328, 0.040039062, 0.0065193176, 0.025283813, -0.025421143, 0.001364708, 0.007598877, -0.017562866, 0.02029419, -0.022140503, -0.03970337, -0.02267456, -0.0021400452, -0.008720398, -0.026000977, 0.0070724487, 0.029937744, -0.033416748, -0.024887085, -0.05645752, 0.065979004, -0.05319214, -0.011886597, 0.01889038, 0.0050354004, 0.023544312, 0.02482605, -0.010108948, -0.052001953, 0.020751953, 0.01928711, -0.068603516, -0.003774643, -0.029785156, 0.021438599, -0.00072336197, -0.01171875, -0.012619019, 0.044830322, -0.015419006, -0.033294678, -0.025634766, -0.01826477, 0.0063056946, -0.046051025, 0.032562256, -0.017807007, -0.026687622, 0.00724411, -0.045135498, -0.09075928, -0.0041923523, 0.02130127, 0.026885986, 0.017608643, -0.016540527, 0.022018433, 0.03149414, -0.0368042, 0.049224854, -0.023712158, -0.01525116, -0.0038013458, 0.021484375, 0.01625061, 0.020950317, -0.009750366, -0.003074646, -0.02558899, 0.030471802, 0.05734253, 0.011451721, -0.057861328, -0.03527832, 0.07763672, 0.04953003, -0.0025577545, 0.022644043, 0.016860962, 0.008811951, 0.0059509277, -0.0045394897, 0.04046631, -0.014526367, 0.0033798218, -0.023712158, 0.007835388, 0.002193451, 0.007713318, 0.0034065247, 0.0005364418, 0.04034424, -0.01878357, 0.014122009, 0.011985779, 0.008628845, 0.043121338, -0.0037708282, 0.00085020065, 0.0023841858, 0.024108887, 0.015991211, -0.0024852753, -0.020935059, -0.020126343, 0.01361084, -0.019226074, 0.055603027, 0.051330566, -0.0071105957, -0.0007286072, -0.01751709, 0.04486084, 0.015823364, -0.0059051514, 0.044952393, -0.06994629, -0.049316406, -0.013366699, 0.02796936, -0.03439331, 0.06402588, -0.016021729, 0.007385254, 0.025268555, -0.015541077, 0.032592773, -0.012535095, 0.007621765, 0.014930725, 0.032196045, -0.011070251, -0.017089844, -0.006160736, 0.04562378, -0.034942627, -0.02166748, 0.0107040405, 0.025726318, -0.008422852, 0.020935059, -0.010566711, -0.015731812, 0.03765869, 0.016799927, 0.0019273758, 0.020355225, -0.006011963, 0.05593872, -0.015716553, -0.016296387, 0.033355713, -0.059631348, 0.0423584, 0.027252197, 0.011772156, -0.036010742, 0.004169464, -0.011787415, -0.011238098, 0.019836426, 0.048309326, -0.000872612, 0.04269409, -0.0022583008, 0.044891357, 0.016433716, -0.021209717, 0.0055236816, 0.020904541, -0.037109375, 0.018249512, 0.021850586, 0.0076789856, 0.024871826, -0.02355957, -0.0038967133, 0.024658203, 0.012756348, 0.026046753, -0.006542206, 0.016906738, -0.020248413, 0.014732361, -0.009315491, -0.0231781, 0.02027893, -0.0040893555, 0.020019531, -0.04067993, -0.05456543, -0.028442383, -0.029541016, -0.05517578, 0.059143066, 0.0016508102, -0.05142212, -0.01953125, 0.0050849915, -0.006175995, -0.080444336, -0.029922485, -0.030319214, 0.048919678, 0.00844574, 0.056518555, -0.042663574, -0.035980225, -0.056488037, 0.013664246, -0.08123779, -0.02708435, 0.033935547, -0.0016927719, 0.035980225, 0.0063476562, 0.029632568, 0.03237915, 0.025817871, -0.021957397, -0.00080394745, -0.035095215, -0.046661377, 0.07183838, 0.015106201, -0.026443481, 0.0072669983, 0.038513184, -0.012954712, 0.023605347, 0.014335632, -0.04019165, -0.028244019, -0.0006222725, -0.017364502, 0.004802704, -0.033050537, 0.02557373, -0.013793945, 0.006225586, -0.020431519, 0.009552002, 0.009338379, -0.0048103333, -0.0056877136, 0.00680542, 0.0141067505, 0.0022277832, 0.015304565, 0.027236938, -0.008552551, -0.014350891, 0.011856079, -0.003326416, -0.043914795, -0.015151978, 0.014099121, -0.011352539, 0.001329422, -0.045898438, 0.011276245, 0.028900146, -0.022232056, -0.0049858093, -0.0030136108, -0.0043182373, -0.0031795502, -0.05291748, 0.018676758, 0.07800293, -0.049926758, -0.016738892, -0.004611969, 0.0012016296, 0.030929565, -0.036590576, -0.015197754, -0.070251465, 0.030334473, 0.041107178, -0.010566711, -0.0026855469, 0.006175995, -0.023544312, -0.018157959, 0.037017822, 0.007843018, 0.044555664, -0.0076026917, 0.03479004, 0.018234253, 0.07824707, -0.048217773, -0.034210205, -0.06726074, 0.027114868, 0.006084442, 0.011878967, 0.06463623, 0.004142761, 0.022567749, 8.612871e-05, 0.0029773712, -0.026397705, 0.038238525, 0.029830933, -0.0105896, 0.032562256]}, "B07Y5RY59R": {"id": "B07Y5RY59R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L75000 32\" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface.\nComponent package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nBest of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "metadata": {"Name": "Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal", "Brand": "Lion Premium Grills", "Description": "", "Features": "Lion L75000 32\" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface.\nComponent package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nBest of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03817749, -0.01537323, -0.06951904, 0.020751953, -0.026290894, -0.018188477, -0.007835388, 0.016845703, -0.07940674, -0.0037403107, 0.0077781677, 0.024032593, -0.025299072, -0.043395996, 0.05444336, -0.05783081, 0.028625488, 0.01663208, 0.012649536, -0.018463135, -0.0018939972, 0.0008158684, -0.021194458, 0.07489014, 0.043121338, -0.057373047, 0.04058838, -0.021514893, 0.06304932, 0.0073890686, 0.028564453, -0.014572144, 0.038238525, -0.026260376, 0.026184082, 0.046539307, -0.0051498413, -0.01184845, 0.01763916, -0.008140564, 0.007659912, 0.010108948, -0.036193848, 0.02696228, -0.058776855, -0.009971619, -0.015182495, -0.0042266846, -0.01071167, -0.0021514893, -0.0039024353, 0.0035591125, 0.0061149597, -0.006954193, -0.011054993, 0.0031967163, -0.006378174, 0.011962891, 0.025680542, -0.009140015, -0.016174316, -0.0011138916, 0.022705078, 0.0010499954, -0.026931763, 0.034820557, 0.11022949, -0.012458801, -0.036315918, -0.058776855, 0.0036582947, -0.006122589, 0.04598999, -0.03668213, -0.00945282, -0.027801514, 0.009651184, -0.02671814, 0.03201294, -0.042114258, 0.028549194, 0.02545166, 0.0019607544, -0.036621094, 0.024612427, -0.021255493, -0.013999939, -0.020355225, -0.012702942, -0.019805908, -0.021743774, -0.037628174, -0.0259552, 0.033325195, -0.007774353, -0.007865906, -0.041748047, -0.08129883, 0.0418396, -0.009048462, 0.05105591, -0.034179688, -0.005584717, 0.020202637, -0.036193848, 0.062561035, 0.024169922, 0.050964355, -0.02116394, 0.014892578, -0.007572174, -0.09698486, 0.02734375, -0.047790527, 0.00055933, 0.0015573502, 0.01007843, 0.0098724365, 0.031341553, -0.03668213, -0.05178833, -0.016159058, 0.011817932, 0.06896973, 0.05105591, 0.06976318, 0.022888184, -0.00054836273, -0.04736328, 0.045898438, -0.014015198, 0.011940002, 0.056152344, 0.023406982, -0.014953613, -0.038360596, 0.011795044, 0.01977539, 0.00012123585, -0.0056991577, -0.016311646, -0.008964539, 0.024398804, -0.025344849, -0.013626099, -0.00096178055, 0.028137207, 0.02178955, -0.020904541, -0.015296936, -0.0034675598, 0.025436401, 0.027938843, -0.018478394, -0.017150879, -0.037872314, -0.021057129, -0.019561768, -0.0034942627, -0.018447876, -0.022720337, -0.018936157, 0.020721436, 0.0055770874, -0.025497437, 0.03704834, 0.013969421, 0.0033016205, 0.018951416, 0.014724731, 0.0047454834, -0.008552551, -0.0118637085, 0.0027370453, 0.0052452087, 0.008483887, -0.0054740906, 0.062805176, 0.045196533, -0.10656738, -0.0847168, -0.06994629, 0.12731934, -0.07098389, 0.01626587, -0.0025100708, 0.011650085, -0.009780884, -0.00033545494, 0.010116577, -0.0137786865, 0.026321411, -0.048309326, -0.011528015, 0.0036849976, -0.006011963, -0.023727417, -0.0044670105, 0.0015544891, 0.0033187866, -0.0022125244, -0.008613586, 0.007881165, -0.01007843, -0.0076942444, -0.0012702942, -0.008354187, 0.010292053, 0.0137786865, 0.032287598, -0.015289307, -0.006755829, 0.008682251, 0.0017471313, 0.0110321045, 0.022277832, -0.009849548, 0.022506714, 0.008079529, 0.007259369, 0.028625488, 0.016159058, 0.022521973, 0.03729248, 0.01965332, 0.0146484375, -0.017028809, 0.0127334595, 0.033691406, 0.033081055, -0.021362305, -0.010398865, 0.06384277, 0.04348755, -0.0065956116, 0.066833496, 0.055877686, 0.05758667, -0.055389404, -0.026885986, 0.01890564, 0.0005950928, -0.038879395, -0.006340027, 0.0056533813, 0.010757446, 0.03189087, -0.026275635, 0.00932312, -0.031402588, 0.04522705, -0.038330078, 0.03363037, -0.029571533, 0.032348633, 0.012512207, -0.001247406, 0.006252289, -0.03982544, -0.025665283, 0.025161743, 0.031311035, -0.038513184, 0.030792236, 0.03656006, 0.007446289, 0.023162842, 0.008865356, -0.044128418, 0.025405884, 0.027282715, 0.028564453, 0.0022182465, -0.04309082, -0.0011987686, -0.03286743, -0.0074157715, 0.034973145, -0.025177002, -0.06274414, 0.012954712, 0.03036499, 0.037475586, -0.027282715, 0.046203613, 0.048553467, 0.0036830902, -0.0385437, -0.06695557, -0.03286743, -0.00434494, 0.021820068, -0.039642334, -0.00047445297, -0.0022182465, -0.0048446655, 0.08203125, 0.038269043, -0.0073509216, 0.012779236, 0.011550903, 0.010734558, -0.031036377, 0.00052404404, 0.007904053, -0.022491455, 0.023254395, 0.009727478, 0.00409317, -0.03543091, 0.04296875, 0.06994629, 0.021850586, 0.027359009, 0.019958496, -0.0047569275, 0.0044174194, 0.042907715, 0.055480957, 0.0635376, -0.028625488, 0.026794434, -0.04168701, -0.033813477, 0.018920898, 0.04034424, -0.0748291, -0.0047950745, -0.038360596, 0.025268555, -0.00066185, -0.021835327, -0.021377563, -0.0025691986, -0.010864258, 0.016357422, 0.006626129, 0.05142212, 0.004627228, -0.072387695, 0.01713562, -0.031341553, -0.008995056, 0.045074463, -0.048339844, -0.0040245056, -0.01272583, 0.009162903, -0.0020961761, -0.008163452, 0.011764526, -0.00762558, 0.0025424957, 0.02810669, 0.0010814667, -0.0154953, -0.015090942, -0.054870605, -0.06536865, -0.08062744, 0.03353882, -0.005558014, -0.013183594, -0.011749268, 0.030960083, -0.029006958, -0.012107849, -0.032684326, 0.0046463013, -0.006088257, 0.05267334, -0.00932312, -0.05706787, -0.02607727, -0.007850647, -0.018432617, 0.037719727, -0.03643799, 0.035125732, 0.014526367, -0.0018110275, 0.023284912, -0.01763916, 0.0032997131, -0.007843018, 0.025436401, 0.013847351, 0.023971558, 0.003370285, -0.021728516, 0.0077781677, 0.044952393, -0.053527832, -0.043762207, 0.006439209, 0.02583313, 0.03894043, -0.01828003, 0.02432251, -0.039886475, -0.0016546249, 0.014198303, 0.0010223389, 0.0016202927, -0.015625, -0.055236816, -0.0047569275, -0.016845703, -0.00063323975, 0.036865234, -0.030517578, 0.006793976, -0.01927185, -0.022903442, 0.027893066, -0.01360321, 0.030654907, -0.011734009, 0.011817932, -0.032714844, 0.02746582, -0.039398193, 0.023971558, 0.01713562, -0.034332275, 0.00052404404, -0.022857666, 0.014793396, -0.008056641, 0.028747559, -0.017807007, -0.004447937, 0.010223389, -0.011169434, -0.039794922, -0.000875473, 0.0006556511, 0.016601562, 0.03955078, -0.03842163, -0.060546875, -0.011184692, 0.019195557, 0.018722534, 0.024276733, -0.029663086, -0.012145996, -0.051879883, 0.02796936, 0.01158905, 0.0052833557, -0.025512695, 0.034423828, 0.017715454, -0.029174805, 0.06890869, -0.011566162, 0.019638062, -3.963709e-05, 0.010879517, 0.0019798279, -0.023422241, 0.043151855, 0.00061416626, 0.033233643, -0.034973145, 0.025787354, 0.012382507, 0.004650116, 0.01448822, 0.02381897, 0.015090942, 0.008895874, -0.0016441345, -0.012992859, -0.027252197, 0.02432251, 0.014678955, -0.0077438354, -0.024291992, -0.029037476, -0.015197754, -0.0519104, 0.08929443, 0.0925293, -0.034088135, 0.08581543, 0.066223145, -0.0135269165, 0.07751465, 0.017990112, -0.01096344, 0.014434814, 0.005054474, -0.056030273, 0.04925537, 0.011856079, 0.006389618, 0.02444458, 0.008918762, -0.05078125, 0.0061569214, -0.0035915375, -0.03253174, -0.040527344, 0.0069732666, 0.0022945404, -0.0032615662, 0.015159607, -0.06286621, 0.027374268, -0.03930664, 0.042053223, -0.006023407, -0.010292053, -0.013374329, 0.0059814453, 0.0025520325, -0.028503418, -0.00548172, -0.0071029663, 0.015716553, -0.0052490234, 0.029190063, 0.008758545, -0.00566864, -0.018539429, 0.012901306, -0.008880615, 0.039794922, 0.035491943, 0.005634308, 0.06365967, 0.010406494, -0.024520874, -0.01777649, 0.004119873, 0.034851074, -0.009292603, -0.039886475, -0.012084961, 0.0015420914, 0.022537231, -0.026260376, -0.020324707, -0.043701172, -0.038726807, -0.020812988, -0.05117798, -0.03942871, 0.012329102, 0.014755249, -0.06427002, -0.04232788, -0.02003479, -0.0715332, -0.03427124, 0.01776123, -0.019119263, -0.02935791, 0.0062828064, 0.02130127, -0.0119018555, -0.022888184, -0.028823853, 7.1525574e-07, 0.032226562, 0.006412506, 0.076049805, -0.057922363, 0.003780365, -0.04147339, 0.09375, 0.06274414, 0.002105713, 0.0031318665, -0.02720642, -0.010772705, 0.008934021, 0.011688232, 0.04623413, 0.024108887, -0.04095459, -0.035339355, -0.02243042, -0.023910522, 0.030410767, -0.059692383, -0.017593384, -0.007232666, 0.06774902, -0.016448975, 0.0184021, -0.035461426, 0.0042304993, -0.027923584, 0.007411957, -0.028167725, 0.022064209, 0.019577026, -0.03062439, 0.009544373, -0.0132369995, -0.020126343, 0.05899048, 0.01852417, -0.009315491, -0.008102417, 0.00970459, -0.010902405, 0.018173218, 0.0014276505, -0.0102005005, 0.027832031, -0.008087158, -0.053527832, -0.05908203, 0.062194824, 0.0385437, 0.0016794205, 0.023422241, 0.011566162, 0.0075149536, -0.020401001, -0.028823853, 0.013290405, 0.004890442, -0.03692627, -0.046203613, 0.02508545, -0.035980225, 0.01651001, -0.0077705383, -0.019714355, 0.040374756, 0.00856781, 0.00983429, 0.007171631, -0.0088272095, 0.008888245, -0.009735107, 0.03604126, 0.024002075, 0.017654419, 0.014434814, -0.01725769, 0.019470215, -0.009147644, -0.038024902, -0.005443573, -0.021652222, 0.012916565, -0.016677856, 0.015174866, 0.022018433, 0.022659302, -0.036224365, 0.024398804, 0.0041923523, 0.009460449, -0.03994751, 0.023162842, -0.009536743, -0.0032577515, 0.008804321, -0.06439209, 0.017791748, 0.042022705, -0.05987549, 0.05432129, 0.020339966, -0.05529785, 0.07165527, -0.0055618286, -0.010818481, -0.036621094, 0.057647705, -0.01902771, 0.03366089, -0.050964355, 0.02949524, 0.015960693, -0.04348755, 0.0015249252, -0.013999939, 0.02243042, -0.002204895, 0.03994751, 0.009773254, 0.023071289, -0.03451538, 9.405613e-05, 0.010215759, -0.0059280396, -0.04043579, 0.009414673, -0.028945923, -0.01737976, -0.016937256, -0.0052871704, 0.021469116, -0.010818481, -0.0138549805, -0.023742676, -0.012825012, -0.020217896, -0.01374054, 0.008804321, 0.020080566, 0.00020432472, 0.0119018555, 0.0009965897, -0.00033545494, -0.0011148453, -0.038726807, -0.014457703, -0.017990112, -0.018966675, -0.017120361, 0.06378174, -0.030838013, 0.036895752, 0.049560547, -0.061553955, 0.0103302, 0.013160706, -0.022857666, -0.023483276, 0.019454956, 0.017715454, -0.007896423, -0.022705078, 0.08050537, -0.042877197, -0.046966553, -0.037628174, 0.026031494, -0.019348145, -0.03366089, 0.06591797, -0.033050537, 0.024002075, 0.0059547424, -0.015045166, -0.07836914, 0.027420044, 0.0064697266, -0.11279297, -0.000110685825, -0.038208008, -0.002248764, 0.01612854, 0.029144287, -0.02142334, 0.040740967, -0.016525269, 0.0025901794, -0.047058105, 0.016723633, -0.020812988, -0.051239014, 0.0040779114, -0.011795044, -0.00026082993, 0.007320404, 0.003320694, -0.046173096, 0.0014772415, 0.022628784, 0.03048706, 0.026733398, -0.026245117, 0.008674622, 0.04159546, -0.023529053, 0.06750488, -0.017211914, 0.023345947, 0.015281677, 0.030670166, -0.026977539, 0.061920166, -0.035064697, 0.008018494, -0.047302246, 0.022567749, 0.009239197, 0.040771484, -0.019226074, 0.024765015, 0.005897522, 0.029449463, 0.010108948, 0.0129852295, 0.021972656, 0.013465881, -0.0035037994, -0.00046563148, 0.0053138733, -0.02154541, -0.050109863, -0.018112183, 0.01586914, 0.057678223, 0.015289307, 0.02986145, 0.005012512, 0.061676025, 0.008674622, 0.01939392, 0.021118164, 0.030807495, 0.017211914, -0.008850098, -0.058654785, 0.022644043, 0.011306763, 0.014312744, 9.286404e-05, -0.041046143, 0.0023975372, 0.041656494, 0.0079956055, -0.003704071, -0.04788208, 0.0496521, -0.030838013, -0.047851562, 0.008888245, -0.0024318695, 0.008804321, 0.014701843, -0.045074463, -0.026153564, 0.009521484, 0.016693115, 0.008148193, 0.0062332153, 0.011497498, 0.008331299, -0.03829956, -0.0069274902, -0.003648758, -0.020065308, 0.0020751953, 0.041778564, 0.008674622, -0.0059394836, 0.025054932, 0.0317688, 0.023498535, -0.030136108, 0.010696411, -0.0057525635, 0.0034923553, -0.02519226, 0.024536133, -0.010398865, -0.024429321, 0.0018968582, 0.0072746277, 0.021118164, 0.04446411, 0.014060974, -0.009178162, 0.054870605, -0.023162842, 0.03656006, 0.0049591064, 0.058502197, 0.035217285, 0.025436401, -0.022583008, -0.057037354, -0.014755249, -0.025421143, 0.008735657, -0.015357971, -0.0043144226, 0.021774292, 0.0062789917, 0.080566406, 0.07208252, 0.021743774, 0.042053223, 0.012062073, -0.022918701, 0.015327454, -0.0047912598, 0.0008716583, -0.006011963, -0.00042247772, 0.011512756, 0.031021118, 0.051239014, 0.061187744, 0.04156494, 0.0046691895, -0.032989502, -0.018310547, 0.002811432, -0.0395813, 0.076049805, -0.044830322, 0.0046195984, -0.01713562, -0.036010742, -0.034301758, -0.00642395, -0.03982544, 0.028030396, 0.002714157, -0.04156494, -0.029220581, 0.012031555, 0.023544312, -0.05532837, -0.024520874, -0.009361267, 0.036865234, -0.0034828186, 0.02784729, -0.023208618, -0.05819702, -0.029220581, 0.05734253, -0.07897949, -0.049346924, 0.019973755, -0.0071640015, 0.014831543, -0.0036792755, 0.01260376, 0.036621094, 0.03451538, -0.006904602, -0.0034389496, -0.020935059, -0.03186035, 0.032806396, 0.004146576, -0.008087158, -0.0019874573, 0.04397583, -0.025650024, 0.043151855, 0.0037078857, -0.04220581, -0.034820557, -0.027801514, -0.02180481, 0.0095825195, -0.016067505, 0.00012338161, -0.022521973, -0.013587952, -0.07714844, -0.060791016, -0.0066452026, 0.038482666, 0.037963867, 0.0184021, 0.01423645, -0.019363403, -0.037261963, -0.016616821, -0.016830444, 0.019943237, 0.027297974, -0.025024414, -0.01008606, 0.024017334, -0.015701294, 0.016799927, 0.021942139, -0.0060043335, 0.01725769, 0.012191772, -0.008926392, 0.0025901794, -0.023956299, 0.007926941, -0.001285553, -0.039276123, 0.04321289, 0.057739258, -0.03656006, 0.0006995201, -0.021575928, -0.0061798096, 0.033294678, -0.044036865, 0.016113281, -0.020202637, -0.007091522, 0.018951416, 0.017532349, 0.007423401, -0.001490593, -0.02720642, -0.019424438, 0.026275635, 0.019134521, 0.029830933, -0.046295166, 0.055755615, 0.0036334991, 0.056274414, -0.009178162, -0.025543213, -0.03829956, 0.05770874, 0.01663208, -0.03253174, 0.03111267, -0.020614624, 0.011222839, -0.0017108917, -0.016174316, -0.0715332, 0.058807373, 0.07354736, 0.007911682, 0.052612305]}, "B00Q9MF83M": {"id": "B00Q9MF83M", "original": "Brand: AZ Patio Heaters\nName: Tabletop Gas Patio Heater Finish: Stainless Steel\nDescription: HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30\". Overall Width - Side to Side: -12\". Overall Depth - Front to Back: -12\". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.\nFeatures: \n", "metadata": {"Name": "Tabletop Gas Patio Heater Finish: Stainless Steel", "Brand": "AZ Patio Heaters", "Description": "HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30\". Overall Width - Side to Side: -12\". Overall Depth - Front to Back: -12\". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0045661926, 0.022491455, -0.052215576, -0.021102905, 0.030090332, -0.022766113, -0.0003170967, -0.0066986084, -0.056030273, 0.043518066, 0.0049743652, 0.028121948, 0.051971436, -0.023757935, 0.023025513, -0.009269714, 0.02709961, -0.0340271, -0.0046043396, -0.009529114, -0.02394104, 0.021636963, -0.005657196, 0.04232788, 0.024261475, -0.04260254, 0.055847168, -0.00044989586, 0.027877808, -0.006187439, 0.03488159, -0.007411957, 0.02420044, 0.017486572, -0.0132751465, 0.0076942444, 0.00390625, 0.0046806335, -0.019454956, 0.030685425, 0.013015747, -0.0027885437, -0.0063056946, 0.003768921, -0.026443481, -0.01574707, 0.0060310364, -0.010482788, 0.009002686, 0.016357422, -0.002117157, 0.00762558, 0.009391785, -0.0034980774, -0.023376465, -0.022338867, 0.032409668, 0.008804321, 0.011131287, -0.07220459, -0.03479004, 0.012001038, 0.0501709, 0.04949951, -0.054016113, 0.023727417, 0.06274414, -0.030166626, 0.057678223, -0.066589355, -0.05319214, 0.054992676, -0.017303467, -0.03463745, -0.0035037994, 0.05239868, -0.01197052, 0.017913818, 0.0005469322, 0.014785767, 0.021011353, 0.00022149086, 0.023742676, -0.035827637, 0.0028152466, -0.03387451, -0.0001450777, -0.007637024, -0.015022278, -0.029388428, -0.023269653, -0.024002075, -0.030838013, 0.058807373, -0.013900757, 0.0137786865, 0.005378723, -0.06628418, 0.040039062, -0.0037441254, 0.036499023, -0.064819336, 0.02079773, 0.012435913, -0.023803711, 0.07128906, 0.02760315, 0.032562256, -0.013038635, -0.00605011, -0.0008330345, -0.06970215, -0.006515503, 0.0022411346, -0.06185913, -0.0013570786, -0.015258789, -0.03048706, -0.0043144226, -0.031311035, -0.053833008, -0.031433105, 0.017974854, 0.0574646, 0.04269409, 0.05529785, 0.022720337, -0.017349243, -0.046875, 0.07159424, -0.03353882, -0.0073776245, 0.054748535, 0.034606934, -0.0052871704, -0.04989624, 0.012954712, -0.0010824203, 0.022247314, -0.037261963, 0.016067505, 0.015281677, 0.038330078, -0.00046133995, 0.008514404, 0.022277832, 0.028411865, -0.0047912598, -0.0036582947, -0.032989502, 0.007865906, -0.002439499, 0.054016113, 0.00299263, -0.028411865, 0.0020484924, 0.026412964, -0.025909424, -0.035095215, -0.055114746, -0.0073127747, 0.0011301041, 0.020385742, 0.009811401, -0.028411865, 0.013916016, -0.0006747246, -0.010383606, 0.015258789, 0.049346924, -0.032409668, -0.028671265, 0.011009216, 0.030258179, -0.010482788, 0.033843994, -0.030639648, 0.071899414, 0.061553955, -0.10723877, -0.07019043, -0.04916382, 0.14025879, -0.049041748, 0.0015287399, -0.009529114, 0.009880066, -0.027175903, 0.013931274, 0.004623413, 0.018005371, 0.013092041, -0.010002136, -0.06719971, 0.007701874, 0.0026111603, -0.011108398, -0.00070619583, 0.0004878044, 0.027511597, -0.041748047, 0.044677734, -0.035980225, 0.012184143, 0.010223389, -0.008880615, 0.009162903, 0.027542114, 0.0010757446, 0.041259766, 0.002948761, 0.04711914, -0.023620605, -0.05255127, -0.005634308, 0.017120361, 0.004272461, 0.0234375, -0.0016269684, 0.032104492, 0.00541687, -0.0015916824, 0.009674072, 0.015151978, 0.00047588348, -0.036987305, 0.0062179565, -0.02659607, 0.02494812, -0.025894165, 0.03491211, 0.025299072, 0.025375366, 0.04751587, 0.0049819946, 0.040924072, 0.07397461, 0.043518066, -0.005207062, -0.035095215, 0.0021648407, -0.02508545, -0.030273438, 0.04763794, -0.059295654, -0.020065308, 0.011833191, 0.016616821, -0.010635376, -0.009780884, 0.014144897, -0.0014390945, 0.035888672, 0.06707764, -0.0017032623, 0.022476196, -0.020141602, -0.0025024414, -0.028152466, 0.038360596, -0.012535095, 0.07476807, 0.048461914, 0.017089844, 0.004852295, -0.0032749176, 0.020462036, 0.03918457, 0.0028152466, -0.012924194, 0.011634827, 0.018112183, -0.021774292, 0.02494812, 0.043518066, -0.018417358, -0.035736084, 0.028045654, -0.02494812, -0.018829346, -0.010925293, -0.030075073, -0.020065308, 0.011672974, 0.053222656, 0.021362305, 0.0065994263, -0.010025024, -0.019805908, -0.0029945374, 0.032684326, -0.027816772, -0.0073432922, -0.010055542, -0.010169983, -0.019241333, 0.075683594, 0.036499023, 0.0056991577, -0.0013542175, 0.0028896332, 0.01977539, -0.031219482, 0.017044067, -0.0107421875, 0.032165527, -0.024520874, 0.008995056, 0.0032444, -0.024520874, -0.0016345978, 0.028305054, 0.044433594, 0.013114929, 0.041809082, 0.020935059, 0.0050201416, 0.04876709, 0.037078857, 0.006000519, 0.019500732, 0.0158844, -0.028762817, -0.0048217773, 0.005542755, -0.0033340454, -0.0052375793, -0.0076446533, -0.0012378693, 0.026626587, 0.0023059845, -0.0014762878, -0.022338867, -0.010765076, 0.0077781677, 0.014228821, -0.013412476, 0.07519531, 0.007549286, -0.029647827, 0.020568848, -0.028305054, -0.010116577, 0.0067367554, -0.01586914, -0.004878998, 0.0021400452, 0.007247925, -0.029296875, -0.0075798035, 0.0043182373, -0.019866943, -0.0054397583, -0.012107849, 0.0087509155, -0.00055122375, -0.021102905, 0.016540527, 0.014312744, -0.035308838, -0.04559326, 0.00819397, -0.05569458, -0.02748108, 0.02168274, -0.0017995834, -0.025497437, 0.0075798035, -0.048553467, -0.01739502, 0.08642578, -0.028442383, -0.08905029, -0.054870605, -0.08728027, -0.016815186, -0.021499634, -0.040100098, 0.007534027, -0.021697998, 0.027709961, 0.010887146, 0.024383545, 0.015914917, -0.041931152, 0.01687622, -0.022399902, 0.011276245, -0.010345459, -0.0065078735, 0.008659363, 0.057159424, -0.009407043, -0.012237549, 0.01914978, 0.0037651062, -0.020858765, -0.010261536, -0.044769287, -0.008056641, -0.08959961, 0.007858276, 0.0011425018, -0.036010742, -0.010940552, -0.064086914, -0.049621582, -0.05166626, 0.007865906, 0.060791016, -0.01109314, -0.0033073425, -0.031982422, 0.010467529, -0.005680084, 0.0038909912, 0.07611084, -0.0071258545, 0.030593872, -0.037139893, 0.03866577, -0.06866455, 0.04034424, 0.025817871, -0.018508911, 0.0019073486, -0.012458801, -0.0023345947, 0.0115356445, 0.048309326, 0.003124237, 0.010757446, -0.028366089, 0.005355835, -0.059753418, 0.03729248, 0.045532227, 0.03161621, 0.08099365, -0.038635254, 0.014968872, -0.00045228004, 0.015930176, 0.023239136, -0.008766174, -0.0062828064, 0.032287598, 0.018692017, -0.017242432, -0.032470703, -0.014678955, 0.008956909, 0.04812622, 0.04248047, 0.018005371, 0.062561035, 0.007232666, 0.04071045, 0.025421143, -0.044281006, -0.020263672, -0.043121338, 0.02822876, 0.012397766, 0.0019989014, -0.037017822, 0.059906006, -0.0061416626, -0.028305054, 0.017990112, -0.031082153, 0.0158844, 0.02243042, -0.024795532, 0.050109863, 0.002866745, 0.0030574799, 0.0046844482, -0.068359375, -0.028808594, -0.08123779, 0.02017212, -0.060699463, 0.06939697, 0.05895996, -0.029846191, 0.11187744, 0.026641846, -0.02255249, 0.0289917, 0.018600464, 0.013244629, -0.029724121, 0.07397461, -0.01889038, -0.008407593, 0.0017795563, 0.045318604, 0.027633667, -0.0005698204, -0.030822754, 0.038909912, -0.003545761, -0.036346436, -0.040893555, -0.013847351, -0.0068206787, 0.027374268, 0.017044067, -0.039276123, -0.008087158, -0.005996704, 0.0025234222, 0.001540184, -0.020355225, -0.035339355, 0.02935791, -0.013381958, -0.015563965, 0.004219055, -0.025405884, -0.0027923584, -0.019699097, 0.0059127808, 0.03149414, 0.012039185, -0.03540039, 0.066101074, -0.018081665, 0.034118652, -0.0049858093, 0.03970337, 0.046051025, -0.004234314, -0.0041770935, -0.034606934, -0.028945923, -0.023406982, -0.02482605, -0.038726807, 0.0041923523, 0.004371643, -0.021148682, -0.010253906, -0.0048599243, -0.001083374, -0.036621094, -0.006263733, 0.01928711, -0.00894928, -0.03933716, -0.022827148, -0.109802246, -0.05142212, -0.0034656525, 0.039031982, -0.016342163, 0.02330017, -0.046661377, -0.02798462, -0.0017299652, 0.05819702, -0.050354004, -0.018173218, -0.01411438, 0.0075645447, 0.020385742, 0.0017662048, -0.014862061, -0.024337769, -0.007446289, 0.00223732, 0.049194336, -0.018707275, -0.0026664734, -0.013771057, -0.0014181137, -0.010543823, 0.020980835, -0.004562378, -0.024246216, 0.020980835, 0.017425537, -0.029434204, -0.062805176, 0.015174866, 0.028915405, -0.046447754, -0.04336548, -0.003194809, 0.053100586, 0.008384705, -0.0018281937, -0.039398193, 0.020141602, 0.021606445, 0.00982666, -0.06390381, -0.057250977, 0.014976501, -0.012741089, 0.0063285828, 0.0025520325, -0.0025291443, 0.011650085, 0.028137207, -0.004333496, 0.0045700073, -0.0027637482, 0.029022217, 0.009109497, 0.025558472, -0.018249512, -0.0043792725, -0.030685425, 0.019561768, -0.0758667, 0.02973938, 0.089782715, 0.024749756, 0.0418396, 0.024154663, 0.016494751, 0.01626587, -0.014907837, 0.033203125, -0.0063591003, -0.0017986298, -0.03857422, 0.019561768, -0.012901306, -0.010971069, 0.0074043274, 0.024093628, 0.0569458, -0.0038318634, -0.027404785, 0.013977051, -0.059143066, -0.036956787, -0.0044136047, 0.039733887, -0.010299683, -0.051483154, 0.020263672, -0.028579712, -0.030380249, -0.021896362, -0.0317688, 0.0107803345, -0.021087646, 0.000101685524, -0.028305054, -0.018798828, 0.021896362, -0.023834229, -0.034057617, 0.030822754, 0.013000488, -0.01159668, -0.056610107, 0.027893066, 0.0044441223, -0.011886597, 0.03567505, -0.0018644333, 0.005252838, 0.03491211, -0.01625061, 0.022720337, 0.0140686035, -0.006046295, -0.010360718, 0.0029716492, 0.0052948, 0.0014333725, 0.04284668, 0.015045166, -0.012763977, -0.034362793, 0.019851685, 0.03741455, -0.0029468536, 0.004623413, -0.040893555, 0.05508423, -0.027130127, -0.029571533, 0.01701355, 0.028442383, -0.022598267, 0.0033740997, 0.016952515, -0.010551453, -0.023864746, 0.0074310303, -0.023086548, 0.013458252, 0.013122559, -0.022003174, -0.006263733, 0.024429321, -0.009963989, 0.00598526, -0.0052986145, -0.0007677078, -0.055023193, 0.006717682, -0.00010764599, 0.0054626465, 0.00881958, 0.022262573, -0.012229919, 0.010643005, -0.06347656, -0.038269043, -0.056488037, 0.009963989, -0.004211426, 0.06222534, -0.009399414, 0.014678955, 0.023452759, -0.02748108, 0.0026950836, 0.009559631, -0.018463135, 0.016571045, 0.008560181, 0.014167786, -0.03591919, -0.03149414, 0.08929443, -0.05633545, -0.06161499, -0.024536133, 0.039123535, -0.013641357, 0.0018997192, 0.03704834, 0.042877197, -0.0012998581, 0.035858154, -0.012840271, -0.04248047, 0.016693115, 0.013404846, -0.1171875, -0.013771057, -0.018356323, 0.012451172, -0.02355957, 0.013931274, -0.04296875, 0.038848877, -0.029220581, -0.010688782, -0.031677246, -0.006565094, -0.0070152283, -0.025253296, 0.012794495, -0.010139465, -0.0015964508, -0.010147095, 0.0020484924, -0.053375244, -0.029693604, -0.013999939, 0.011077881, 0.03894043, 0.020523071, 0.017120361, 0.013168335, -0.03994751, -0.017440796, 0.015579224, -0.017623901, 0.0027828217, 0.007091522, 0.000114023685, -0.018569946, -0.009475708, 0.013999939, -0.035583496, 0.018234253, 0.036224365, 0.027893066, -0.017349243, 0.014503479, 0.023742676, 0.02180481, 0.0021018982, -0.0007801056, 0.007980347, -0.019363403, -0.0463562, -0.006111145, 0.02444458, -0.029663086, -0.039215088, -0.04940796, -0.0052223206, 0.031341553, 0.015106201, 0.040252686, -0.022491455, 0.05908203, -0.02545166, 0.026733398, -0.002943039, 0.013832092, 0.00015950203, -0.008964539, -0.026824951, 0.0137786865, 0.040283203, -0.005508423, 0.01335907, 0.047424316, -0.013954163, 0.013137817, 0.022491455, 0.028076172, -0.0211792, 0.031707764, 0.0131073, -0.0657959, 0.022628784, 0.015640259, 0.012023926, 0.021850586, -0.009506226, 0.01083374, 0.010269165, 0.017318726, -0.015945435, 0.03479004, -0.026672363, 0.0041542053, -0.004524231, 0.024276733, -0.030090332, -0.021499634, 0.02154541, -0.016143799, 0.008415222, 0.006855011, -0.03744507, -0.0017004013, 0.052215576, -0.02003479, 0.011444092, -0.01689148, 0.027053833, -0.030929565, -0.013702393, -0.03152466, -0.015350342, 0.034576416, -0.0082473755, 0.002872467, 0.003709793, 0.02281189, 0.018676758, -0.013114929, -0.066833496, 0.023361206, -0.06185913, 0.021499634, 0.023605347, 0.055358887, -0.024734497, -0.0013313293, -0.01713562, -0.021392822, 0.022781372, 0.014732361, -0.0045204163, 0.010948181, 0.015457153, -0.0007009506, 0.041778564, -0.041534424, 0.016921997, -0.006275177, 0.029525757, -0.0022907257, 0.0076179504, 0.0061035156, 0.023620605, -0.006046295, 0.01576233, 0.029327393, 0.042877197, -0.0013437271, 0.018051147, -6.80089e-05, -0.03466797, 0.0036964417, -0.0112838745, -0.035095215, 0.049682617, -0.060699463, 0.014762878, 0.002948761, 0.0053215027, -0.024932861, 0.010498047, -0.007583618, -0.010375977, 0.02017212, 0.002565384, -0.008621216, -0.014595032, 0.02619934, -0.011650085, 0.023132324, 0.035247803, 0.053497314, -0.0038414001, 0.05734253, -0.01638794, -0.029159546, -0.072021484, -0.0044670105, -0.06463623, 0.03363037, 0.020233154, 0.0037059784, 0.014343262, 0.0019350052, 0.03845215, 0.07501221, 0.042907715, -0.003730774, 0.043029785, -0.034301758, -0.012191772, 0.022033691, 0.02067566, -0.038757324, -0.022155762, -0.0023860931, -0.0017576218, 0.09069824, 0.010902405, 0.013473511, -0.050567627, -0.031799316, -0.081604004, 0.013343811, -0.022949219, -0.013755798, 0.013908386, 0.0076560974, -0.05432129, -0.018951416, 0.011360168, 0.03062439, 0.07171631, -0.024765015, 0.011924744, -0.035217285, -0.07891846, -0.0670166, -0.01687622, 0.026855469, -0.011703491, -0.07879639, 0.007171631, 0.017944336, -0.023880005, -0.003118515, 0.043884277, 0.042877197, -0.0079956055, -0.00818634, 0.02520752, -0.019348145, -0.009475708, 0.020126343, -0.034332275, -0.024673462, 0.02218628, 0.041656494, -0.05130005, -0.04309082, -0.0020160675, 0.0012407303, -0.025360107, -0.049987793, -0.023620605, -0.06732178, 0.05456543, 0.044158936, 0.007156372, 0.02368164, 0.022079468, -0.02305603, -0.05609131, -0.011909485, 0.046722412, -0.0236969, -0.04458618, -0.010177612, 0.025375366, 0.023132324, 0.008934021, -0.062805176, -0.04309082, 0.0579834, 0.021514893, -0.051361084, 0.047607422, -0.048736572, 0.012664795, 0.03173828, -0.03491211, 0.00484848, 0.006427765, -0.00035500526, -0.022979736, -0.0013628006]}, "B0024ECC3S": {"id": "B0024ECC3S", "original": "Brand: Camco\nName: Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)\nDescription: \nFeatures: Easy access to gas valves\nHeavy-duty polypropylene\nPolar White\nFor two 20 lb propane tanks\nEasy to install and highly durable\n", "metadata": {"Name": "Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)", "Brand": "Camco", "Description": "", "Features": "Easy access to gas valves\nHeavy-duty polypropylene\nPolar White\nFor two 20 lb propane tanks\nEasy to install and highly durable", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016815186, -0.019561768, -0.046813965, -0.05618286, -0.021453857, 0.0073051453, -0.053497314, 0.053955078, -0.04663086, -0.02217102, 0.024673462, 0.007030487, -0.06402588, -0.06137085, 0.03427124, -0.043670654, 0.011497498, -0.0017108917, -0.007507324, -0.03237915, 0.0077285767, -0.035858154, 0.019882202, 0.0128479, 0.013427734, -0.037231445, 0.04309082, 0.0034542084, -0.003501892, -0.031021118, 0.015205383, 0.028213501, 0.025970459, 0.004917145, -0.0026493073, 0.03579712, 0.06866455, -0.028961182, -0.009231567, 0.017944336, -0.023025513, 0.036590576, 0.051727295, 0.021347046, 0.0013828278, -0.05239868, -0.004020691, -0.053375244, 0.045013428, 0.06878662, 0.009132385, 0.0035915375, -0.01637268, 0.013473511, 0.009025574, 0.027404785, -0.0052757263, -0.010948181, 0.024749756, 0.009750366, -0.00045323372, 0.020004272, 0.009567261, -0.008842468, -0.03756714, 0.0317688, 0.07977295, -0.017837524, -0.01864624, -0.07299805, -0.015396118, 0.010284424, 0.010643005, -0.027328491, -0.05770874, 0.000436306, 0.013938904, -0.009552002, 0.01977539, -0.020996094, -0.013214111, 0.0057792664, 0.031173706, -0.016586304, -0.009559631, -0.006023407, -0.027664185, -0.018661499, 0.01651001, 0.0023708344, -0.008476257, 0.010231018, 0.008125305, 0.03866577, -0.0058631897, -0.0105896, -0.027893066, -0.026916504, 0.043121338, 0.02217102, 0.01713562, -0.037963867, 0.030532837, -0.010353088, -0.010551453, 0.016326904, -0.009933472, 0.005405426, 0.026611328, 0.035186768, -0.014732361, 0.017822266, -0.01676941, -0.013023376, -0.02947998, -0.008049011, -0.049865723, 0.012908936, 0.0069084167, -0.0052375793, -0.035247803, -0.020141602, 0.00712204, -0.021453857, 0.013046265, -0.012229919, -0.029769897, 0.04031372, -0.05331421, 0.002670288, -0.008277893, 0.021850586, 0.027694702, 0.039154053, -0.0007247925, 0.009750366, 0.013435364, 0.0067481995, 0.013923645, 0.0067100525, 0.019241333, -0.03149414, 0.010009766, 0.034606934, -0.025939941, 0.029907227, 0.02406311, -0.0014877319, -0.0335083, -0.044921875, -0.017562866, -0.009422302, 0.043640137, 0.0103302, -0.026992798, 0.008934021, 0.0021324158, -0.006462097, -0.045532227, -0.033996582, -0.025985718, -0.016906738, 0.0050315857, 0.011878967, 0.0009493828, 0.022109985, 0.015777588, -0.008644104, 0.0121154785, 0.031829834, -0.028274536, 0.03274536, 0.0053634644, 0.029586792, 0.0010347366, -0.0061912537, -0.017791748, 0.056671143, 0.07836914, -0.107177734, -0.07220459, -0.05657959, 0.15588379, -0.050109863, -0.0060272217, -0.042419434, 0.020401001, -0.03262329, 0.0037288666, -0.012512207, 0.04849243, 0.051208496, -0.004749298, 0.009681702, -0.02015686, 0.004863739, -0.01939392, 0.03173828, -0.03152466, -0.023620605, -0.053955078, -0.019592285, 0.02709961, 0.020187378, 0.06958008, -0.05307007, 0.03930664, -0.01979065, -0.010437012, 0.02619934, -0.02279663, -0.04055786, 0.032165527, -0.051513672, 0.0053138733, 0.016189575, 0.00052309036, 0.030212402, -0.011207581, -0.009262085, 0.005207062, -0.0009460449, 0.027893066, 0.047912598, -0.049713135, 0.017578125, -0.028625488, 0.019851685, -0.028717041, 0.0035934448, 0.08673096, 0.013961792, 0.029434204, 0.02720642, -0.007167816, 0.011917114, 0.006752014, -0.068847656, -0.00023972988, 0.040496826, 0.0154800415, -0.030853271, -0.0064697266, 0.03881836, 0.015167236, -0.012367249, 0.0069618225, 0.005794525, -0.023834229, -0.028839111, 0.078430176, -0.035003662, 0.025268555, -0.00014722347, -0.04309082, 0.019226074, -0.034332275, -0.003955841, 0.0060539246, 0.017990112, -0.012390137, 0.06121826, 0.07092285, 0.004184723, 0.016067505, 0.0055656433, 0.052734375, 0.055389404, 0.011314392, -0.021713257, -0.0047912598, 0.032318115, -0.0008635521, 0.059570312, -0.0018644333, 0.028274536, -0.030715942, -0.02670288, 0.016036987, 0.03665161, 0.018936157, -0.008934021, -0.02217102, -0.0052223206, 0.045806885, -0.0048179626, -0.0034217834, 0.018112183, -0.08294678, -0.008796692, 0.011360168, 0.01763916, 0.0035305023, -0.05343628, 0.05859375, 0.008621216, 0.023925781, -0.013298035, 0.0104904175, -0.00737381, -0.0023040771, 0.04373169, 0.008056641, -0.005874634, 0.0018663406, 0.022201538, -0.02279663, 0.0309906, 0.028060913, -0.008216858, -0.013893127, 0.030410767, 0.021896362, 0.03842163, 0.008552551, 0.0058670044, 0.04071045, 0.04663086, 0.061035156, 0.06945801, -0.0135650635, 0.045532227, -0.0015506744, -0.012069702, 0.038208008, -0.0062294006, -0.056427002, 0.004184723, -0.066711426, -0.008132935, 0.025222778, -0.06384277, -0.012680054, -0.0016813278, 0.011672974, 0.0054969788, 0.0034370422, 0.048217773, 0.004421234, -0.04168701, 0.028915405, -0.027923584, 0.012825012, 0.053466797, 0.0044784546, -0.04989624, 0.025894165, 0.004524231, -0.035583496, -0.015548706, 0.032409668, -0.033111572, 0.026641846, -0.03012085, 0.01524353, 0.028305054, -0.044921875, -0.029953003, 0.023925781, -0.064208984, 0.03427124, -0.028335571, -0.027313232, -0.004940033, 0.04647827, -0.01966858, -0.034423828, -0.03692627, 0.012397766, 0.016296387, -0.011795044, 0.014205933, -0.10632324, -0.010894775, 0.017944336, 0.016189575, -0.027053833, -0.058776855, 0.04522705, -0.0129852295, 0.00059080124, -0.0005502701, 0.02848816, 0.03463745, 0.028808594, 0.010269165, 0.060943604, 0.09289551, 0.00258255, -0.041046143, -0.006504059, 0.04525757, -0.019256592, -0.01940918, 0.019332886, -0.0019893646, 0.0053253174, 0.023406982, -0.031799316, -0.016052246, -0.081848145, 0.0071144104, 0.010185242, -0.0496521, -0.011177063, -0.03668213, -0.083618164, -0.03805542, 0.020645142, 0.047912598, -0.03475952, 0.011100769, -0.023269653, -0.00081300735, -0.0074768066, 0.008621216, -0.015853882, -0.013954163, -0.041503906, 0.048706055, 0.029449463, -0.0093307495, 0.0040359497, 0.03805542, -0.014083862, 0.01285553, -0.0287323, -0.0076942444, 0.0023899078, 0.0049209595, -0.021636963, -0.0067977905, -0.025543213, -0.046722412, -0.021484375, -0.0057792664, -0.005947113, 0.02217102, -0.0031089783, 0.002653122, -0.010482788, -0.02305603, 0.011627197, 0.023971558, -0.0014629364, 0.0047340393, -0.025970459, 4.4345856e-05, 0.03286743, 0.00674057, -0.011474609, -0.009437561, 0.0036125183, 0.002872467, -0.044708252, 0.04574585, -0.033477783, 0.0317688, 0.0017547607, -0.023910522, -0.013313293, -0.03265381, 0.0031776428, -0.0052490234, 0.0082473755, -0.059539795, 0.043884277, -0.009117126, 0.016616821, -0.012359619, -0.018356323, 0.03894043, -0.01020813, -0.018981934, 0.0073242188, 0.00018393993, -0.009666443, -0.0038032532, 0.041656494, 0.015182495, -0.074035645, 0.019943237, -0.061035156, 0.039916992, 0.040985107, -0.020645142, 0.07098389, 0.035705566, 0.0016613007, 0.0054359436, 0.044158936, -0.003545761, 0.029281616, 0.024459839, -0.010795593, -0.046081543, 0.005302429, -0.011161804, -0.031677246, -0.044311523, -0.026733398, -0.007293701, -0.012184143, 0.020065308, -0.02407837, 0.03100586, 0.010643005, -0.017684937, 0.02394104, -0.00434494, -0.04840088, -0.03173828, 0.015174866, 0.03173828, -0.027404785, 0.02545166, -0.025253296, 0.011230469, -0.026397705, -0.0032653809, -0.035308838, -0.024841309, -0.011383057, 0.023803711, 0.034729004, 0.009262085, -0.036010742, 0.05227661, -0.045135498, -0.025680542, -0.0073165894, 0.016540527, -0.02406311, -0.012969971, 0.05392456, 0.03878784, 0.008087158, 0.014640808, -0.0055885315, -0.042938232, 0.014129639, 0.05105591, 0.007347107, -0.032104492, -0.021133423, -0.015098572, -0.04321289, 0.010856628, -0.008155823, -0.027557373, 0.0059547424, 0.018432617, -0.02128601, -0.028625488, -0.03918457, 0.00630188, -0.030471802, 0.017059326, 0.005558014, -0.018478394, 0.0057411194, 0.05960083, -0.04660034, -0.04638672, -0.03668213, 0.0068359375, 0.019241333, -0.0014038086, 0.03616333, -0.031341553, -0.008644104, -0.029724121, 0.039215088, 0.046691895, -0.015914917, -0.019210815, -0.017547607, -0.0013828278, 0.0058059692, 0.04977417, -0.02053833, 0.04159546, -0.018112183, 0.03378296, -0.06149292, -0.026290894, 0.029006958, -0.07293701, -0.08355713, -0.044891357, 0.06915283, 0.009986877, -0.007499695, -0.064941406, 0.0034160614, 0.036102295, -0.029830933, -0.015235901, -0.028717041, 0.0143585205, -0.01612854, -0.032592773, -0.014961243, -0.01940918, 0.0602417, -0.0099105835, -0.0048980713, -0.012268066, 0.024612427, 0.040985107, -0.052947998, -0.022018433, -0.002363205, 0.016860962, 0.005180359, -0.014717102, -0.076538086, 0.042938232, 0.054138184, 0.024795532, 0.040252686, -0.0074424744, 0.019332886, 0.0024604797, -0.026763916, -0.026000977, 0.032043457, 0.025741577, -0.021560669, -0.030471802, -0.008117676, -0.02267456, -0.029769897, -0.013504028, -0.001036644, 0.07336426, -0.028656006, -0.034179688, -0.04937744, -0.009262085, 0.023208618, -0.019348145, -0.030761719, 0.000518322, -0.03744507, -0.014411926, -0.012023926, 0.00258255, -0.009490967, -0.025054932, 0.039794922, 0.014266968, -0.018539429, 0.041290283, 0.005683899, 0.035888672, -0.0121536255, 0.014183044, -0.012901306, -0.0149383545, -0.020904541, 0.015853882, 0.032073975, -0.008979797, 0.070617676, 0.025314331, -0.013191223, 0.014312744, -0.02305603, 0.07220459, -0.036254883, -0.00050640106, 0.031555176, 0.000102221966, 0.011199951, -0.08441162, 0.038848877, -0.0124053955, -0.008651733, -0.069885254, 0.021575928, -0.030883789, -0.04901123, 0.019363403, -0.009590149, 0.055603027, -0.052642822, -0.029296875, 0.0038719177, 0.031829834, -0.028259277, 0.013900757, 0.007534027, -0.020996094, -0.045043945, -0.010673523, -0.04736328, 0.021057129, -0.04559326, 0.027160645, 0.032104492, -0.008415222, -0.007080078, -0.04083252, -0.03894043, 0.046295166, 0.009864807, -0.0035953522, -0.012107849, 0.0234375, -0.018814087, -0.052642822, -0.022232056, -0.0010576248, -0.039093018, -0.014549255, -0.013366699, 0.021087646, 0.006881714, 0.034057617, -0.053009033, -0.023468018, -0.0060310364, -0.016937256, 0.017547607, -0.032989502, -0.061950684, -0.060760498, 0.0036449432, 0.006134033, 0.0027008057, -0.0012245178, 0.0037403107, -0.023254395, -0.0024528503, -0.03515625, 0.02456665, -0.012016296, -0.0657959, 0.05206299, 0.045928955, -0.008888245, 0.009254456, -0.029342651, -0.051239014, 0.035827637, 0.013122559, -0.076171875, -0.03463745, -0.025878906, -0.011833191, -0.008171082, -0.010185242, 0.01096344, 0.030471802, -0.006690979, -0.03302002, -0.01134491, -0.008361816, -0.0015487671, -0.040527344, 0.0087890625, -0.04309082, 0.017974854, -0.01739502, -0.00029563904, -0.07672119, -0.07800293, -0.050476074, 0.009468079, 0.04714966, 0.019958496, 0.0061073303, 0.012268066, -0.027053833, -0.009796143, 0.008934021, -0.04650879, -0.004634857, 0.025527954, 0.029129028, -0.000600338, -0.030532837, -0.014839172, -0.008636475, 0.0012340546, 0.0519104, 0.008163452, -0.061462402, -0.03451538, 0.06008911, 0.050598145, -0.011695862, -0.045776367, -0.028335571, 0.014022827, 0.0062294006, -0.020721436, 0.008033752, -0.0056610107, 0.055023193, -0.03555298, 0.027053833, -0.0010766983, -0.0287323, -0.001127243, -0.0038089752, 0.047332764, -0.0074768066, 0.0002297163, 0.012924194, 0.003791809, 0.004119873, -0.004760742, -0.033050537, 0.014915466, 0.0072746277, 0.020706177, -0.046722412, -0.023483276, 0.0014162064, 0.004299164, -0.040039062, 0.079589844, -0.022567749, 0.014877319, 0.01701355, -0.056793213, 0.014923096, 0.024993896, 0.00995636, 0.0090789795, -0.010627747, 0.0054893494, -0.0087509155, 0.006877899, 0.038635254, -0.015220642, 0.024780273, 0.039520264, -0.020889282, -0.0071754456, 0.003522873, -0.011077881, -0.0054473877, 0.018325806, -0.011695862, -0.018569946, -0.01133728, 0.03543091, 0.017745972, 0.019958496, 0.047027588, -0.047851562, 0.0074310303, 0.00655365, 0.010887146, -0.03463745, -0.016098022, -0.022598267, -0.021896362, 0.02178955, 0.016647339, 0.0056381226, 0.028427124, 0.010116577, -0.028579712, 0.028427124, -0.060546875, 0.03982544, 0.02507019, 0.013557434, -0.041503906, -0.013328552, -0.00522995, -0.008140564, 0.015571594, 0.033569336, 0.010444641, 0.039520264, -0.006198883, -0.026977539, 0.03652954, -0.002840042, 0.018203735, -0.06762695, 0.025909424, 0.0045394897, 0.0065460205, 0.0061073303, -0.007686615, -0.041381836, -0.01058197, -0.020553589, -0.04586792, 0.0151901245, 0.029327393, 0.006580353, -0.021377563, 0.029907227, 0.022338867, -0.039886475, -0.049316406, 0.01525116, -0.00038194656, -0.008239746, -0.044311523, -0.041748047, -0.010719299, -0.041137695, 0.025405884, 0.013031006, -0.035949707, -0.004962921, 0.007801056, -0.0413208, -0.052642822, -0.035095215, -0.0059928894, 0.013954163, -0.0008826256, 0.02923584, -0.0064888, -0.037719727, -0.06652832, 0.007358551, -0.056884766, 0.0051460266, -0.0256958, -0.0107040405, 0.0010108948, -0.010673523, 0.0024871826, 0.052856445, 0.0149383545, -0.007320404, 0.062469482, -0.06732178, -0.036712646, 0.042144775, 0.030914307, -0.019851685, -0.022415161, 0.02659607, 0.011459351, -0.0027656555, -0.0028495789, 0.009963989, -0.04486084, 0.033172607, 0.027893066, -0.029022217, 0.0044403076, -0.020767212, 0.04159546, 0.012565613, -0.022781372, 0.013801575, 0.030899048, -0.009544373, 0.023117065, -0.0418396, 0.045288086, -0.02859497, -0.046813965, -0.08868408, -0.016113281, 0.01928711, 0.02519226, 0.013916016, -0.030517578, 0.022460938, 0.000685215, -0.0051002502, 0.0029621124, -0.016403198, -0.0006313324, 0.00390625, 0.009216309, -0.0056381226, -0.022750854, 0.0014238358, -0.029159546, -0.023727417, -0.017715454, 0.027862549, -0.02104187, -0.022384644, -0.0049972534, 0.010375977, -0.026245117, 0.00044178963, -0.04171753, -0.04446411, 0.040222168, 0.030700684, 0.002374649, -0.012374878, 0.043273926, 0.010345459, -0.003074646, 0.03704834, 0.015853882, 0.05834961, -0.0031585693, 0.02583313, 0.00040555, 0.050872803, -0.01423645, -0.12487793, -0.058013916, 0.017059326, 0.013038635, -0.0084991455, 0.047088623, -0.024414062, 0.0039138794, 0.02960205, -0.025299072, 0.0056114197, -0.0044822693, 0.06427002, -0.020324707, -0.0048828125]}, "B07GRFTR4S": {"id": "B07GRFTR4S", "original": "Brand: GasOne\nName: GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC\nDescription: \nFeatures: \u2713 MEASURE YOUR PRESSURE \u2013 Use Gas One\u2019s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One\u2019s Pressure Gauge lets users control their heat with a precise level of accuracy\n\u2713 USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable\n\u2713 DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners\n\u2713 COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow\n\u2713 STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI\n", "metadata": {"Name": "GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC", "Brand": "GasOne", "Description": "", "Features": "\u2713 MEASURE YOUR PRESSURE \u2013 Use Gas One\u2019s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One\u2019s Pressure Gauge lets users control their heat with a precise level of accuracy\n\u2713 USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable\n\u2713 DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners\n\u2713 COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow\n\u2713 STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.032104492, -0.040100098, -0.02458191, 0.006542206, -0.06329346, 0.0020942688, -0.017852783, 0.008178711, 0.0003736019, -0.006378174, -0.003791809, 0.0051574707, 0.0007481575, -0.041290283, 0.023025513, -0.023712158, 0.019577026, 0.008354187, 0.013061523, -0.020507812, -0.004573822, -0.0072746277, 0.007904053, 0.08935547, -0.0075683594, 0.0014410019, 0.055725098, -0.0053977966, 0.003162384, -0.0026988983, 0.017807007, -0.0066070557, 0.037597656, 0.008636475, -0.04953003, -0.031082153, -0.03314209, -0.0107040405, -0.04714966, 0.032592773, -0.008766174, 0.018035889, -0.0062713623, 0.009796143, -0.03060913, -0.029846191, -0.010559082, -0.024124146, 0.019378662, 0.025772095, 0.0070648193, 0.009674072, 0.0043258667, -0.013145447, -0.015571594, -0.012176514, -0.029403687, -0.010192871, 0.013679504, 0.014915466, 0.005783081, -0.007949829, 0.017028809, -0.0027675629, -0.03878784, 0.031021118, 0.022277832, -0.015289307, 0.0074882507, -0.05102539, -0.024993896, -0.0005517006, 0.019058228, -0.015335083, -0.0715332, 0.0012636185, 0.034210205, -0.020645142, 0.007587433, -0.026672363, 0.05001831, 0.0053863525, 0.012237549, 0.04522705, -0.019744873, 0.038970947, -0.0059127808, -0.0390625, -0.03656006, -0.015281677, -0.019134521, -0.0057258606, -0.05053711, 0.009475708, -0.008392334, -0.017349243, -0.015029907, -0.061157227, 0.033721924, 0.0013370514, 0.040405273, -0.045410156, 0.029724121, 0.018630981, 0.0077590942, 0.055786133, 0.0043258667, 0.0141067505, 0.030715942, -0.017303467, -0.0026397705, 0.020462036, -0.028778076, -0.034240723, -0.036865234, 0.07196045, 0.016433716, -0.060638428, -0.002784729, -0.047302246, 0.005722046, 0.021743774, 0.05783081, -0.07489014, -0.0073928833, -0.017654419, -0.04071045, -0.049194336, -0.028244019, 0.038269043, -0.0062026978, -0.02357483, 0.034057617, 0.08203125, 0.02053833, -0.01247406, 0.02470398, -0.029449463, 0.020462036, -0.027008057, 0.0143585205, -0.014717102, -0.0038661957, 0.025878906, 0.002861023, 0.024459839, 0.026062012, 0.00299263, -0.00724411, -0.034057617, -0.022262573, 0.010574341, 0.046081543, -0.0005226135, -0.051513672, -0.0066566467, -0.010169983, -0.010597229, -0.00617218, -0.041229248, -0.014762878, -0.019363403, -0.005432129, 0.008850098, -0.023086548, 0.037261963, 0.00466156, -0.0004286766, 0.011909485, 0.06994629, -0.055480957, 0.0385437, 0.03125, 0.00504303, -0.024108887, -0.0023231506, -0.042633057, 0.06573486, 0.066345215, -0.117004395, -0.057891846, -0.04675293, 0.13293457, -0.042816162, 0.03515625, -0.018447876, 0.00073575974, -0.088134766, -0.004550934, -0.0034885406, -0.0035934448, 0.06524658, -0.004009247, -0.036102295, -0.006767273, 0.011123657, -0.03564453, 0.0093307495, -0.021209717, 0.01612854, -0.06384277, 0.01977539, 0.013069153, 0.019561768, 0.065979004, -0.004825592, 0.020080566, 0.027374268, 0.039367676, 0.013832092, -0.005870819, 0.001996994, 0.0028152466, -0.021194458, -0.051818848, 0.00091028214, -0.012504578, -0.005958557, 0.003484726, -0.04550171, 0.057678223, -0.018615723, 0.036102295, 0.06365967, -0.00019335747, -0.035125732, 0.0033454895, -0.014404297, 0.019226074, -0.0022029877, 0.004306793, 0.0024547577, 0.08355713, 0.0625, -0.012390137, 0.0209198, 0.091918945, 0.0044403076, -0.009132385, -0.009727478, 0.019241333, -0.015670776, -0.0390625, -0.013153076, 0.0019426346, -0.061553955, -0.013313293, 0.009529114, -0.02305603, -0.007545471, 0.060913086, 0.012802124, 0.017700195, 0.010414124, -0.0005865097, 0.005874634, -0.018325806, 0.042907715, -0.02696228, 0.0060043335, -0.013252258, 0.030548096, 0.05078125, -0.018188477, 0.019317627, 0.055603027, 0.03942871, 0.057800293, -0.01638794, 0.03652954, 0.00081539154, 0.0023517609, -0.0021209717, -0.03111267, -0.06585693, -0.018859863, -0.04269409, 0.06188965, -0.0028953552, -0.042938232, -0.00957489, -0.042938232, 0.021347046, 0.0087890625, 0.054534912, 0.0126953125, 0.045776367, -0.011474609, 0.015052795, -0.020507812, 0.020065308, -0.014198303, -0.010429382, 0.011413574, -0.00504303, -0.040985107, 0.047698975, -0.030090332, 0.028274536, -0.04434204, 0.05053711, 0.056762695, -0.06036377, 0.033172607, 0.012680054, -0.021255493, 0.032806396, 0.0011348724, 0.0075798035, -0.0059776306, 0.0074539185, 0.06414795, 0.029647827, -0.039398193, 0.037384033, 0.035003662, -0.023498535, 0.0184021, 0.020629883, 0.066101074, -0.0236969, -0.038879395, -0.015655518, -0.039398193, -0.0075912476, 0.005580902, -0.04071045, 0.0043907166, -0.019699097, 0.027740479, 0.024917603, 0.017822266, 0.011329651, -0.013000488, 0.0019760132, -0.003200531, -0.00969696, 0.06011963, -0.015914917, -0.061950684, -0.022735596, -0.024536133, -0.009017944, 0.010482788, -0.046447754, -0.0309906, 0.06854248, 0.00036978722, -0.040985107, 0.00049066544, 0.040985107, -0.035949707, -0.01033783, -0.030426025, 0.027038574, -0.01777649, -0.023635864, -0.02798462, 0.017974854, -0.062469482, -0.031799316, -0.018844604, -0.07366943, -0.027038574, 0.07635498, -0.002248764, -0.04043579, -0.022735596, -0.009597778, 0.01586914, 0.019454956, -0.00894165, -0.08276367, -0.017532349, -0.029571533, 0.0070343018, 0.03643799, -0.009864807, 0.022094727, 0.030853271, 0.04296875, 0.0552063, -0.023635864, 0.04244995, 0.0066566467, 0.03933716, 0.047088623, 0.0061531067, -0.006275177, -0.037322998, -0.017105103, 0.016983032, 0.008094788, -0.019439697, 0.019134521, -0.014091492, -0.025680542, 0.016616821, -0.052764893, -0.0040779114, -0.050201416, 0.0016231537, -0.022232056, -0.0009946823, 0.0060653687, -0.0690918, -0.0008802414, -0.056793213, 0.018432617, 0.023391724, -0.013793945, 0.026382446, -0.016326904, 0.012435913, -0.025360107, -0.009567261, -0.026504517, 0.000685215, -0.050445557, 0.028305054, 0.0574646, -0.064575195, 0.0345459, 0.04550171, -0.043151855, 0.02243042, -0.0056419373, 0.039794922, -0.041259766, 0.005004883, 0.006565094, -0.036254883, -0.046051025, -0.010955811, 0.00945282, 0.04309082, 0.013893127, -0.030883789, 0.014266968, -0.004562378, -0.061462402, -0.012329102, -0.030838013, 0.008277893, 0.0046844482, -0.046905518, -0.02357483, -0.092041016, 0.021728516, -0.076416016, 0.01751709, 0.0024929047, 0.049224854, -0.0044517517, -0.0010290146, 0.06317139, 0.015365601, 0.045684814, -0.0010318756, -0.027008057, -0.01991272, -0.020507812, 0.022949219, -0.016189575, -0.038635254, -0.0010070801, 0.043304443, 0.012359619, -0.008010864, -0.020492554, -0.008079529, 0.024520874, -0.030639648, -0.020950317, 0.019638062, 0.03540039, -0.004058838, -0.021728516, 0.038024902, 0.012420654, -0.048675537, 0.013465881, -0.021484375, 0.035858154, -0.00031852722, 0.0018377304, 0.026229858, 0.025466919, 0.007019043, 0.023712158, 0.062561035, -0.0020980835, 0.01600647, 0.0362854, -0.0005559921, -0.031341553, 0.0021247864, -0.0032253265, -0.005279541, -0.034210205, 0.0058898926, 0.015731812, 0.005886078, 0.0020828247, -0.0657959, -0.0011005402, 0.031280518, -0.013504028, 0.016921997, -0.06945801, 0.006828308, -0.02659607, -0.029708862, 0.017288208, -0.039398193, -0.03353882, -0.011940002, 0.00699234, -0.046173096, -0.002319336, -0.014709473, -0.011421204, 0.017105103, 0.028305054, -0.011398315, 0.005504608, -0.012283325, -0.0020599365, -0.03668213, 0.009300232, 0.005207062, 0.040496826, 0.009941101, -0.02986145, 0.022781372, -0.018539429, -0.016662598, 0.056152344, 0.002456665, -0.083618164, -0.020370483, -0.013221741, -0.019180298, -0.05368042, -0.0101623535, -0.011062622, -0.0075531006, 0.032470703, -0.046875, 0.02394104, 0.0018882751, 0.0034046173, -0.013038635, -0.016220093, -0.017059326, 0.013671875, -0.018341064, -0.0129776, -0.022018433, 0.024658203, -0.02067566, 0.018112183, -0.045074463, 0.01890564, -0.06964111, 0.008995056, 0.03463745, 0.015701294, -0.017547607, -0.041900635, -0.0019664764, -0.013450623, 0.07293701, 0.0060920715, 0.010284424, -0.0038871765, -0.009284973, 0.011116028, 0.052093506, 0.072265625, 0.009651184, 0.017684937, -0.03488159, -0.0034046173, -0.100097656, 0.025100708, 0.03074646, -0.027267456, -0.073913574, -0.009902954, 0.079589844, 0.024658203, 0.025924683, 0.023345947, 0.017364502, -0.0087509155, -0.0033302307, -0.11517334, -0.050079346, -0.015975952, -0.035888672, 0.018630981, -0.005393982, -0.00066900253, 0.029632568, 0.096191406, -0.0044136047, 0.03451538, 0.0032863617, 0.0118637085, -0.030563354, 0.010223389, -0.049682617, 0.007980347, -0.047790527, 0.027282715, -0.024383545, 0.0027217865, -0.01259613, -8.225441e-05, -0.005054474, -0.0234375, 0.0022277832, -0.029434204, -0.028839111, -0.0011911392, 0.03286743, -0.04006958, -0.0446167, 0.027923584, -0.03857422, 0.0053138733, -0.0022697449, 0.012489319, 0.010070801, -0.034973145, -0.010017395, -0.024612427, -0.010604858, -0.004333496, -0.004634857, 0.0018024445, -0.077697754, 0.053619385, 0.015029907, -0.000954628, 0.0033569336, -0.02796936, -0.0085372925, 0.004425049, -0.031433105, -0.0031280518, -0.023101807, 0.002998352, 0.028335571, -0.003479004, -0.017700195, 0.01272583, 0.009689331, -0.009994507, -0.029434204, 0.03363037, 0.007659912, -0.01184845, 0.06585693, -0.019866943, -0.00055217743, 0.03466797, -0.022354126, 0.063964844, -0.004753113, 0.011146545, -0.051513672, 0.009086609, 0.0040626526, -0.037384033, 0.082214355, 0.008270264, -0.01789856, -0.046325684, 0.0014619827, -0.02444458, 0.0031204224, 0.002544403, -0.023468018, 0.030853271, -0.017669678, -0.014144897, 0.009521484, -0.0053901672, -0.0068588257, 0.0064086914, -0.0045700073, -0.042114258, -0.010879517, -0.007106781, -0.009475708, 0.018173218, 0.00894165, -0.04171753, 0.020843506, 0.025344849, -0.053375244, -0.008384705, -0.03277588, 0.015045166, -0.035736084, 0.005153656, -0.0054359436, 0.018035889, -0.010299683, -0.025680542, 0.042541504, 0.011299133, -0.03579712, -0.036956787, -0.020111084, 0.016433716, -0.006702423, 0.038757324, 0.012840271, -0.047668457, 0.011161804, 0.08282471, 0.043304443, -0.017959595, -0.026153564, 0.030227661, -0.0020656586, -0.0051574707, -0.043945312, -0.011177063, 0.058624268, -0.048431396, -0.051605225, 0.01991272, 0.023101807, -0.0076408386, -0.008483887, 0.059417725, 0.0463562, 0.0077590942, 0.032043457, 0.011253357, -0.019561768, 0.0029411316, 0.0058021545, -0.044189453, -0.09613037, -0.03817749, -0.056243896, -0.0015058517, -0.029281616, -0.005458832, 0.037353516, 0.008979797, 0.008331299, -0.036376953, -0.026519775, -0.0077667236, -0.018737793, 0.018600464, -0.0034751892, 0.00409317, -0.017822266, -0.0027427673, -0.09643555, -0.054229736, 0.023101807, 0.022628784, 0.016082764, 0.0418396, 0.024810791, 0.031311035, -0.08190918, 0.011451721, 0.015930176, -0.030426025, -0.0137786865, 0.0059280396, 0.00042295456, 0.036712646, -0.024902344, 0.0006608963, -0.032470703, 0.00623703, -0.004058838, 0.03475952, -0.043182373, 0.0027236938, 0.0036296844, 0.056152344, -0.01612854, -0.011222839, -0.02017212, -0.009559631, 0.0003476143, -0.026016235, 0.0052986145, -0.019592285, -0.021133423, -0.041656494, -0.042144775, -0.022994995, -0.02128601, 0.03439331, 0.006061554, -0.023117065, -0.03375244, 0.02154541, -0.010063171, -0.026229858, 0.0345459, -0.018157959, 0.040039062, -0.027313232, 0.044708252, 0.0056991577, -0.0076789856, -0.042266846, 0.0107040405, 0.046081543, 0.024475098, -0.016921997, -0.030273438, 0.01725769, 0.015403748, -0.05319214, 0.0037879944, -0.013885498, -0.007286072, -0.011299133, 0.007347107, -0.00088500977, -0.008552551, 0.043884277, 0.018981934, 0.055755615, -0.04159546, 0.02684021, -0.0046844482, -0.015960693, -0.0056648254, -0.021514893, 0.0051002502, -0.034179688, -0.011360168, 0.008850098, -0.050689697, 0.027709961, 0.010749817, -0.0028572083, 0.019439697, -0.0034484863, 0.008361816, -0.0045433044, -0.040771484, -0.02357483, -0.022628784, 0.02017212, 0.0065956116, 0.016479492, 0.044311523, 0.015136719, 0.021377563, -0.012359619, 0.003900528, 0.0025405884, -7.3730946e-05, -0.00082302094, 0.021240234, -0.03186035, -0.058807373, -0.059631348, -0.021743774, -0.02545166, -0.0074310303, 0.037628174, -0.010978699, 0.06121826, -0.019485474, -0.010055542, 0.034240723, -0.025512695, 0.018310547, -0.028060913, 0.008659363, 0.018035889, -0.03186035, 0.0072402954, -0.037261963, -0.036499023, 0.0070266724, -0.02684021, -0.007293701, 0.041992188, 0.010787964, 0.01184082, -0.014953613, -0.0027503967, 0.0065307617, -0.031463623, -0.0016937256, 0.004173279, 0.06628418, -0.035461426, -0.032592773, -0.04748535, -0.00881958, -0.011566162, 0.05505371, 0.036956787, 0.0050964355, 0.011062622, -0.007041931, -0.014595032, -0.033111572, -0.0008120537, 0.015686035, -0.0016880035, -0.012962341, 0.023040771, -0.01777649, -0.029220581, -0.035217285, 0.024429321, -0.05126953, -0.027511597, -0.062469482, 0.012458801, -0.009384155, -0.011497498, 0.030029297, 0.06378174, 0.0019989014, 0.007461548, 0.0016431808, -0.028182983, -0.0069770813, 0.010513306, 0.00077581406, -0.0062179565, -0.03475952, 0.02772522, 0.026809692, 0.01576233, 0.018615723, 0.064331055, -0.01889038, 0.040618896, -0.007537842, -0.03942871, 0.016662598, -0.026779175, 0.045654297, -0.001493454, -0.04055786, 0.011360168, 0.015686035, 0.026382446, 0.008171082, 0.017425537, 0.012306213, -0.028060913, -0.03250122, 0.004524231, -0.022338867, 0.015510559, 0.015541077, -0.034698486, -0.010757446, -0.024108887, -0.0016117096, -0.034606934, -0.0014724731, -0.0044403076, 0.015434265, 0.046081543, 0.0013599396, 0.0044441223, -0.022018433, -0.011741638, -0.045135498, -0.047332764, 0.03225708, -0.026443481, -0.009315491, -0.022064209, -0.0043182373, -0.012016296, -0.028305054, 0.010536194, -0.026031494, 0.006965637, 0.020858765, 0.018310547, 0.020828247, 0.004348755, 0.022079468, -0.0022506714, -0.060699463, 0.0035381317, 0.051239014, -0.009162903, -0.041381836, 0.0027256012, 0.037902832, 0.010597229, -0.0070877075, -0.05645752, -0.0440979, 0.036621094, 0.034362793, -0.027053833, 0.07080078, -0.035980225, -0.0014677048, 0.031280518, -0.039855957, -0.012016296, 0.0027484894, 0.040405273, -0.011917114, -4.0352345e-05]}, "B01BEOULUE": {"id": "B01BEOULUE", "original": "Brand: BootYo!\nName: BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single))\nDescription: Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.\nFeatures: Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders\nPerfect for lanterns, single burner stoves, grills, heaters and other propane appliances\nGreat to take camping, hunting, on construction jobs, work, tailgating!\nLightweight, sturdy, long lasting.\nMade in the USA!\n", "metadata": {"Name": "BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single))", "Brand": "BootYo!", "Description": "Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.", "Features": "Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders\nPerfect for lanterns, single burner stoves, grills, heaters and other propane appliances\nGreat to take camping, hunting, on construction jobs, work, tailgating!\nLightweight, sturdy, long lasting.\nMade in the USA!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.036132812, -0.0020980835, -0.035614014, -0.04714966, -0.012542725, 0.034942627, -0.04675293, 0.025161743, -0.005203247, 0.018936157, -0.026779175, 0.010894775, -0.041290283, -0.020690918, -0.004360199, -0.020858765, 0.016479492, -0.016403198, -0.0102005005, -0.035461426, 0.019073486, -0.035614014, -0.010604858, 0.02557373, 0.00031232834, 0.028320312, 0.07873535, -0.054901123, 0.048614502, -0.020446777, 0.013702393, -0.03387451, 0.04937744, -0.05227661, 0.03439331, -0.011985779, 0.06762695, -0.058563232, -0.00982666, 0.023101807, -0.003610611, 0.0026721954, -0.036224365, -0.029800415, -0.041503906, -0.03543091, -0.00034618378, 0.01083374, 0.057525635, 0.009933472, 0.0013122559, -1.4483929e-05, -0.011268616, -0.016738892, -0.03164673, -0.024551392, -0.01184082, 0.010185242, 0.016021729, 0.0013093948, -0.022323608, 0.0069007874, 0.01727295, -0.016479492, -0.026611328, 0.03479004, 0.045196533, -0.01751709, 0.012023926, -0.015731812, -0.011985779, 0.0019702911, -0.010940552, -0.0033893585, -0.031555176, 0.005290985, 0.020111084, 0.004447937, 0.0045700073, 0.034942627, -0.02798462, 0.04248047, 0.048736572, -0.05621338, 0.007369995, -0.027664185, -0.041656494, -0.0040283203, -0.022094727, -0.0010986328, -0.022857666, -0.01965332, -0.026748657, 0.026443481, 0.012870789, -0.01474762, -0.040802002, -0.043426514, 0.034576416, 0.012565613, -0.007106781, -0.00920105, -0.022033691, 0.0074157715, 0.019592285, 0.07220459, -0.009269714, -0.03942871, 0.027648926, -0.012557983, -0.0049972534, 0.016525269, -0.015838623, -0.038238525, 0.029464722, 0.02758789, -0.027359009, 0.059265137, 0.010932922, 0.012535095, -0.008605957, 0.022399902, -0.0074768066, -0.05645752, 0.023544312, 0.0017709732, -0.012123108, -0.0013093948, -0.059173584, 0.028274536, 0.009765625, -0.004360199, -0.011192322, 0.06304932, 0.005580902, -0.001455307, 0.0012273788, -0.05697632, -0.025619507, 0.021697998, 0.033233643, -0.01348114, 0.017837524, -0.0041007996, -0.03050232, 0.019241333, 0.02319336, 0.0026893616, 0.008758545, -0.041992188, -0.016586304, -0.016799927, 0.050476074, 0.013893127, -0.012390137, -0.006839752, 0.052124023, -0.032806396, -0.05038452, -0.056427002, -0.021575928, 0.000623703, 0.0020809174, 0.0010080338, 0.02128601, 0.013313293, -0.00011134148, 0.00932312, 0.015403748, 0.049591064, 0.0020694733, 0.010368347, -0.031707764, 0.023254395, 0.011116028, -0.007446289, -0.01852417, 0.06817627, 0.052947998, -0.085632324, -0.054107666, -0.06161499, 0.09539795, -0.016860962, 0.017837524, -0.04611206, 0.031280518, -0.03427124, -0.011116028, 0.00894928, 0.030471802, 0.03768921, -0.023605347, -0.041992188, -0.01374054, 0.028869629, -0.044830322, 0.02696228, -0.023605347, 0.011329651, -0.0031528473, 0.0018291473, 0.036590576, 0.008369446, 0.05783081, -0.007381439, 0.018585205, -0.004524231, -0.039245605, 0.015022278, 0.038848877, 0.025436401, -0.025848389, -0.030441284, -0.008743286, -0.0019550323, -0.014427185, 0.0048980713, 0.008102417, -0.0047073364, 0.058044434, -0.05908203, 0.047729492, 0.058776855, 0.015701294, -0.013252258, -0.013458252, -0.009140015, -0.014328003, -0.013496399, 0.0065727234, 0.038360596, 0.0054626465, 0.04626465, -0.012084961, 0.0037269592, 0.033996582, 0.03955078, -0.00082445145, 0.007926941, 0.003080368, -0.00025773048, 0.0076408386, 0.06439209, -0.008628845, -0.015602112, 0.014350891, 0.02709961, -0.03161621, 0.05380249, 0.042877197, 0.045043945, -0.0028572083, 0.052703857, -0.058288574, 0.039031982, -0.012992859, 0.05883789, -0.04373169, 0.041137695, -0.03326416, 0.018295288, 0.06173706, -0.012680054, -0.00093460083, -0.009185791, 0.016784668, 0.020370483, -0.01322937, -0.016235352, 0.012519836, 0.03918457, -0.013664246, -0.0070152283, -0.037841797, -0.04397583, -0.0042648315, 0.027557373, -0.041809082, -0.0541687, -0.002336502, -0.04446411, 0.006855011, -0.0044517517, 0.05307007, 0.036224365, 0.028533936, -0.022857666, -0.0054779053, -0.012191772, 0.016281128, 0.00047159195, -0.005130768, -0.020553589, 0.054351807, -0.018371582, 0.057525635, -0.01676941, 0.04446411, -0.030792236, 0.010276794, 0.039276123, -0.053619385, 0.047180176, -0.005355835, 0.009666443, -0.018722534, 0.029312134, 0.010665894, -0.036895752, 0.012191772, 0.034057617, 0.0031528473, 0.019729614, -0.036254883, -0.032836914, -0.0121536255, -0.0007362366, 0.002275467, 0.036010742, -0.007911682, -0.009788513, 0.004371643, -0.010299683, 0.023849487, -0.004711151, -0.03262329, -0.0069351196, -0.036254883, 0.009941101, 0.1138916, 0.0099105835, 0.02772522, -0.051116943, 0.02243042, -0.016098022, 0.0055389404, 0.03805542, -0.0038013458, -0.060516357, -0.01727295, -0.027923584, -0.013397217, 0.013160706, -0.072387695, -0.0066223145, 0.015388489, 0.00036096573, 0.001750946, -0.026046753, 0.034484863, -0.010559082, 0.00969696, -0.0010404587, 0.023727417, 0.031036377, -0.03515625, 0.010673523, 0.045318604, -0.044036865, -0.0039138794, -0.035247803, -0.05734253, -0.003829956, 0.06088257, 0.016326904, -0.03050232, -0.039031982, 0.03012085, 0.037597656, -0.03314209, 0.044952393, -0.046691895, -0.01701355, 0.011657715, 0.01600647, 0.028625488, -0.030944824, 0.028915405, 0.025024414, -0.029693604, 0.03302002, -0.010635376, 0.08496094, 0.009567261, 0.032165527, 0.066711426, 0.029052734, 0.00055122375, -0.038513184, -0.003868103, 0.045654297, -0.060821533, -0.017211914, 0.0184021, -0.0064315796, 0.010414124, 0.039733887, -0.06085205, -0.030197144, -0.06512451, 0.01449585, 0.020141602, -0.023803711, -0.011199951, -0.036895752, -0.035736084, -0.026260376, -0.008293152, 0.011459351, -0.027053833, 0.03286743, -0.01928711, 0.019958496, 0.030944824, -0.03967285, -0.029876709, -0.023147583, 0.029190063, -0.0054626465, 0.0021095276, -0.038024902, 0.0209198, 0.050201416, -0.028121948, -0.0061073303, 0.029968262, 0.050689697, -0.015533447, 0.0115737915, 0.011428833, -0.03640747, -0.009643555, -0.0317688, -0.03414917, 0.0118637085, 0.0029678345, 0.017349243, 0.010734558, -0.012413025, -0.045959473, -0.0074768066, 0.032958984, 0.045715332, -0.015274048, 0.020324707, -0.010658264, -0.029052734, 0.03363037, 0.01637268, -0.037902832, 0.020523071, 0.034057617, 0.003736496, -0.030761719, -0.06695557, 0.03479004, 0.018585205, -0.014038086, 0.02279663, 0.0017995834, 0.0037059784, -0.005138397, -0.036193848, 0.0061187744, -0.01247406, -0.008216858, 0.027938843, 0.013671875, -0.028198242, 0.025405884, 0.045166016, 0.010154724, 0.011238098, 0.0149383545, 0.017166138, -0.013137817, 0.03918457, -0.044403076, -0.004890442, -0.06866455, 0.0035114288, -0.10266113, 0.05947876, 0.051513672, -0.02848816, 0.08129883, 0.050109863, -0.010955811, -0.0028820038, -0.0020885468, -0.010284424, -0.0003657341, 0.028320312, -0.01876831, -0.0105896, 0.017166138, -0.0065231323, 0.055267334, 0.04650879, -0.026809692, 0.01574707, -0.026947021, -0.061187744, -0.03213501, 0.005821228, -0.016555786, -0.013397217, 0.0234375, -0.026168823, -0.06732178, -0.032409668, -0.02859497, 0.0018854141, -0.017150879, 0.041656494, -0.018066406, -0.035980225, 0.004699707, -0.007621765, -0.018310547, -0.02305603, 0.025634766, 0.05670166, -0.035491943, -0.030593872, 0.022521973, -0.024154663, -0.025299072, 0.02748108, -0.015640259, 0.0016498566, -0.05355835, -0.05505371, 0.08306885, -0.014343262, -0.00044369698, 0.04626465, -0.022888184, -0.080200195, -0.006286621, 0.053771973, 0.030517578, -0.041992188, -0.019500732, -0.041503906, -0.062042236, -0.04156494, -0.038757324, -0.022857666, -0.01576233, -0.0064468384, -0.034698486, -0.057403564, -0.03543091, -0.028793335, -0.01108551, -0.004306793, 0.01966858, -0.025848389, -0.008506775, 0.028518677, -0.051086426, -0.0011901855, -0.047729492, 0.018478394, -0.013801575, -0.015975952, -0.0055160522, -0.019515991, -0.020751953, -0.029907227, 0.014259338, 0.0039711, -0.040985107, 0.005622864, 0.007797241, 0.014015198, 0.018371582, 0.014801025, -0.019165039, 0.0011062622, 0.0022239685, 0.0052833557, -0.044921875, 0.0069732666, -0.019195557, 0.0013971329, -0.06854248, -0.057281494, 0.022628784, 0.01687622, 0.008811951, -0.04321289, -0.0016832352, 0.003786087, 0.009216309, -0.049438477, -0.028030396, -0.0023593903, -0.05126953, -0.019058228, -0.019378662, -0.029220581, 0.06713867, 0.011802673, -0.052612305, -0.025100708, -0.01348114, -0.036376953, 0.007865906, 0.04373169, -0.027267456, 0.004184723, -0.031799316, -0.013000488, -0.08117676, 0.058563232, 0.014083862, 0.016021729, -0.011749268, -0.047180176, -0.016906738, -0.07269287, 0.00085258484, 0.01852417, 0.029922485, -0.0041503906, -0.030715942, 0.008270264, -0.023895264, -0.0077056885, -0.026565552, -0.023391724, 0.00026202202, 0.026519775, -0.02861023, -0.014968872, -0.024276733, -0.03225708, 0.03314209, 0.033081055, 0.03717041, -0.05218506, -0.007270813, -0.014526367, -0.0061416626, -0.0005373955, -0.014976501, -0.0016927719, -0.015899658, 0.004463196, -0.04446411, 0.03970337, 0.03543091, 0.0340271, -0.0056533813, 0.015701294, -0.041290283, -0.013145447, -0.03692627, -0.016601562, -0.006511688, -0.0070762634, 0.047302246, 0.012779236, 0.0059890747, 0.025100708, -0.007144928, 0.042633057, -0.0017175674, -0.034484863, -0.03869629, -0.0044555664, 0.01864624, -0.03668213, 0.0149383545, 0.012794495, -0.033081055, -0.039276123, -0.001947403, -0.005355835, -0.0013437271, -0.020980835, -0.01096344, 0.033111572, 0.020904541, -0.008972168, 0.018920898, 0.033599854, -0.04473877, -0.00045371056, 0.024719238, -0.006591797, -0.033569336, 0.014625549, -0.02633667, -0.005622864, -0.024597168, -0.024124146, -0.0075187683, 0.012893677, 0.010566711, 0.0020923615, -0.01878357, -0.029556274, 0.0036792755, -0.052947998, 0.047180176, 0.027404785, -0.036132812, -0.048309326, -0.05041504, -0.01461792, 0.0040359497, -5.1140785e-05, 0.026168823, 0.020507812, 0.010398865, -0.0021705627, -0.037078857, -0.04248047, -0.02053833, 0.011871338, 0.022628784, -0.032043457, -0.05810547, -0.03225708, 0.0062828064, 0.027236938, -0.032409668, -0.00957489, 0.034210205, -0.029418945, -0.029769897, -0.021820068, 0.05895996, -0.0099105835, -0.0016088486, 0.05783081, 0.005584717, 0.01676941, 0.023117065, 0.0035324097, -0.016937256, 0.024398804, 0.028686523, -0.06402588, -0.032287598, 0.0018548965, -0.0034179688, -0.041107178, 0.0047187805, -0.031585693, 0.029159546, -0.030792236, 0.015823364, -0.028869629, -0.0016441345, -0.024978638, 0.000541687, 0.013153076, -0.02444458, -0.0053596497, -0.033416748, -0.003578186, 0.014518738, -0.036712646, -0.0057792664, 0.011520386, 0.014442444, 0.03353882, 0.005130768, 0.0053482056, -0.046966553, -0.010627747, 0.0069274902, -0.04397583, -0.013824463, 0.034423828, 0.03253174, -0.0052871704, -0.041290283, -0.008972168, -0.01612854, 0.0121154785, 0.034820557, 0.009429932, -0.01914978, 0.0013380051, 0.035247803, 0.026306152, 0.023132324, -0.0036849976, 0.011421204, 0.011070251, -0.009544373, 0.0006480217, 0.05041504, -0.007633209, 0.0052375793, -0.029266357, 0.013725281, -0.003446579, -0.01965332, 0.0062026978, -0.010498047, 0.03842163, -0.010063171, -0.006526947, 0.002861023, -0.018676758, 0.068481445, 0.013832092, 0.043304443, 0.016174316, 0.020523071, 0.024810791, -0.02130127, -0.03540039, -0.003709793, 0.02331543, -0.017440796, 0.036224365, -0.01322937, -0.0045318604, 0.005645752, -0.01737976, 0.015045166, -0.013572693, -0.024414062, -0.0074005127, -0.0088272095, 0.002954483, 0.024429321, 0.02494812, -0.02355957, -0.031555176, 0.019866943, 0.016983032, -0.020065308, 0.0037078857, -0.027923584, -0.031982422, 0.0037651062, -0.01259613, -0.0056877136, 0.015083313, -0.03262329, 0.0390625, -0.010017395, 0.0093307495, 0.018859863, -0.043884277, 0.014633179, 0.059753418, 0.022247314, -0.02508545, -0.033935547, 0.010101318, 0.010726929, -0.008430481, 0.005569458, 0.0064811707, 0.041870117, 0.02458191, -0.05239868, -0.0053100586, -0.08074951, -0.011917114, 0.023406982, 0.080444336, -0.00012743473, -0.042053223, -0.023727417, -0.004463196, -0.008346558, 0.0006599426, -0.0067596436, 0.017623901, 0.052093506, 0.026184082, 0.04220581, -0.05480957, 0.0107040405, 0.037017822, 0.011528015, 0.055908203, 0.02432251, 0.015357971, -0.0050201416, -0.014732361, -0.005935669, 0.020523071, 0.006790161, 0.07067871, -0.019973755, 0.019363403, 0.002439499, 0.0020217896, -0.013130188, -0.0121154785, -0.019973755, 0.012931824, 0.042633057, -0.042419434, -0.059692383, -0.05758667, -0.027694702, -0.034210205, 0.052947998, 0.0012168884, -0.019302368, -0.007461548, -0.020523071, 0.012680054, -0.040039062, 0.014434814, 0.0073242188, 0.042114258, -0.009422302, 0.07293701, -0.026229858, -0.016952515, -0.04586792, -0.02029419, -0.04714966, 0.009025574, -0.040496826, 0.008422852, 0.006603241, -0.012649536, 0.02508545, 0.07092285, 0.010246277, 0.005256653, 0.037200928, -0.050720215, -0.030731201, 0.06088257, 0.03161621, -0.023284912, -0.018463135, 0.011383057, 0.01335907, -0.027404785, 0.014259338, 0.02671814, -0.08807373, 0.021362305, -0.004447937, -0.013626099, -0.049713135, -0.0072517395, 0.00415802, 0.0003733635, -0.021881104, -0.035095215, 0.04385376, 0.052337646, 0.028152466, -0.03363037, 0.030670166, -0.026916504, -0.004310608, -0.07556152, -0.004180908, 0.032684326, 0.017227173, -0.057495117, 0.0023670197, 0.006462097, -0.015838623, -0.02519226, 0.013595581, 0.016235352, -0.008987427, -0.010803223, 0.035308838, 0.014320374, 0.000998497, 0.046081543, -0.053009033, 0.033569336, -0.001335144, 0.02027893, -4.4584274e-05, 0.04147339, -0.026947021, 0.007881165, 0.030731201, 0.03363037, -0.041107178, -0.115722656, 0.06237793, 0.05731201, -0.019866943, 0.017089844, 0.026367188, -0.036315918, -0.045043945, 0.019210815, 0.024169922, 0.019042969, -0.04525757, 0.036193848, 0.027954102, 0.07470703, -0.026443481, -0.12719727, -0.048919678, -0.0015039444, 0.014839172, 0.017913818, 0.06695557, -0.021362305, -0.006263733, 0.008552551, -0.07086182, -0.045928955, 0.03378296, 0.07281494, -0.025268555, 0.024307251]}, "B06XTGCQ7P": {"id": "B06XTGCQ7P", "original": "Brand: GasOne\nName: GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects\nHigh heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU)\nConvenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box\nHeavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSafety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "metadata": {"Name": "GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep", "Brand": "GasOne", "Description": "", "Features": "Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects\nHigh heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU)\nConvenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box\nHeavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSafety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019607544, -0.014190674, 0.0015363693, 0.0064697266, -0.03164673, 0.006313324, -0.012397766, -0.024780273, -0.02558899, -0.0007405281, -0.0061149597, 0.015563965, -0.005844116, -0.045410156, 0.038726807, -0.0317688, -0.00970459, 0.02897644, -0.010025024, -0.029785156, 0.0236969, -0.034484863, -0.05657959, 0.09118652, 0.033569336, 0.0110321045, -0.04321289, -0.0059394836, 0.019897461, 0.0040779114, 0.025238037, 0.0055007935, 0.054534912, -0.026748657, -0.03265381, -0.058685303, -0.028030396, -0.03527832, -0.07287598, 0.029220581, 0.007286072, 0.0079956055, -0.00023066998, 0.0395813, -0.015625, -0.034057617, 0.011680603, -0.039245605, -0.0101623535, 0.043762207, -0.007232666, -0.009864807, -0.0008149147, -0.035583496, 0.00762558, -0.0024280548, 0.011169434, -0.008773804, 0.008155823, -0.032348633, -0.017562866, -0.004962921, 0.03753662, 0.026977539, -0.05505371, 0.029693604, 0.042999268, -0.018005371, 0.02558899, -0.066223145, -0.035461426, 0.035888672, 0.031280518, 0.014541626, -0.06365967, -0.03567505, 0.034942627, -0.03366089, 0.04257202, -0.034973145, -0.0053710938, -0.016159058, 0.026901245, -0.038513184, 0.020202637, -0.011932373, -0.00374794, -0.0064048767, -0.048736572, -0.029830933, -0.028793335, -0.040771484, -0.0793457, 0.026229858, 0.012718201, -0.0060043335, -0.025726318, -0.07470703, 0.038726807, 0.0032596588, 0.048950195, -0.052215576, 0.04309082, 0.01979065, -0.018814087, 0.10736084, 0.036010742, 0.06652832, 0.018188477, -0.03250122, 0.018508911, 0.008270264, -0.024307251, -0.028411865, -0.0021266937, 0.023101807, -0.035186768, 0.006828308, 0.012176514, -0.007621765, 0.0023231506, -0.0046577454, 0.04031372, -0.035491943, 0.012939453, -0.011802673, -0.04751587, -0.009300232, -0.020568848, 0.0418396, -0.013053894, -0.024887085, 0.011253357, 0.07537842, 0.010040283, -0.023483276, 0.018051147, -0.02432251, 0.02557373, -0.011398315, 0.0028038025, -0.01663208, 0.026504517, 0.02418518, 0.014541626, 0.029922485, 0.030548096, -0.00011074543, 0.00035905838, -0.046203613, -0.0069465637, 0.0039100647, 0.026779175, 0.017745972, -0.012519836, -0.0050964355, 0.042877197, -0.027786255, -0.010299683, -0.039794922, -0.022064209, -0.022720337, -0.011795044, 0.012672424, -0.014549255, 0.031066895, 0.019210815, 0.0039787292, -0.0030899048, 0.022323608, -0.050811768, 0.05834961, 0.010978699, -0.0025730133, 0.0010881424, -0.016555786, -0.057800293, 0.06304932, 0.060546875, -0.08929443, -0.053100586, -0.066711426, 0.11755371, -0.028915405, -0.01071167, 0.005771637, -0.0061416626, -0.02720642, 0.01600647, -0.0048828125, 0.006263733, 0.03253174, 0.007549286, -0.040618896, 0.028945923, -0.0044174194, -0.04626465, -0.012130737, -0.0026397705, -0.0019073486, -0.019470215, 0.014968872, 0.017562866, -0.022079468, -0.017837524, -0.00013589859, -0.008880615, 0.045196533, 0.048553467, 0.019378662, -0.02104187, -0.0048828125, 0.032958984, -0.08215332, -0.042388916, 0.03942871, 0.007434845, 0.022857666, 0.022094727, -0.0037441254, 0.07232666, -0.030303955, 0.06048584, 0.056671143, 0.024459839, -0.025894165, -0.00655365, -0.018218994, 0.01121521, -0.0039100647, -0.03237915, 0.018722534, 0.046051025, 0.056793213, -0.013122559, 0.021438599, 0.08538818, 0.034851074, -0.00057935715, -0.027435303, 0.005306244, -0.05026245, -0.022338867, 0.026824951, -0.029830933, -0.01776123, 0.019454956, 0.017211914, -0.014450073, 0.042388916, 0.0070114136, 0.020584106, 0.0026283264, -0.0073776245, -0.017288208, 0.010055542, -0.036132812, 0.02810669, -0.035217285, 0.028701782, -0.021255493, 0.042175293, 0.058441162, -0.0082473755, -0.004634857, 0.024597168, 0.010566711, 0.013336182, -0.034301758, 0.0340271, 0.03161621, 0.0016565323, -0.00970459, -0.0033855438, 0.011688232, -0.008468628, -0.04425049, 0.028823853, -0.008178711, -0.016845703, 0.0059394836, -0.021728516, 0.008201599, -0.0027122498, 0.037597656, 0.0034675598, 0.032806396, 0.01651001, 0.011352539, -0.015319824, 0.02961731, -0.025650024, -0.02154541, 0.0010032654, -0.016601562, -0.050994873, 0.0871582, -0.014877319, 0.025024414, -0.038909912, 0.04006958, 0.037750244, -0.062347412, 0.033233643, 0.00831604, -0.0042266846, 0.027755737, 0.026855469, 0.018447876, -0.013412476, 0.0006046295, -0.012557983, 0.03125, 0.025726318, 0.02897644, 0.013549805, 0.010604858, 0.053771973, 0.060424805, 0.05078125, -0.0149002075, 0.0008392334, -0.0061035156, -0.024597168, 0.018569946, -0.009208679, -0.03387451, -0.006832123, -0.021560669, 0.024749756, 0.031051636, 0.0072784424, 0.021972656, -0.009094238, 0.0033416748, 0.0014133453, -0.007724762, 0.024978638, -0.0007748604, -0.02947998, -0.001627922, 0.0032100677, 0.0013113022, -0.010398865, -0.024383545, -0.05645752, 0.05105591, 0.0060653687, -0.049346924, -0.012275696, 0.059051514, -0.030654907, 0.021453857, -0.015823364, 0.026184082, -0.029678345, -0.037902832, -0.020187378, -0.04119873, -0.08227539, -0.02609253, -0.007789612, -0.043426514, -0.031402588, 0.03918457, 0.010650635, -0.064941406, 0.0026664734, -0.025405884, -0.0005803108, 0.026321411, 0.0030536652, -0.080078125, -0.029327393, -0.035186768, 0.009033203, 0.06298828, 0.0079574585, -0.006099701, 0.03074646, 0.046905518, 0.045440674, -0.02420044, -0.014312744, 0.009552002, 0.04031372, 0.039764404, 0.012237549, -0.009788513, -0.023849487, 0.0019626617, 0.010643005, -0.014152527, -0.02508545, 0.0552063, 0.012741089, -0.024017334, 0.012489319, -0.052215576, -0.0211792, -0.045135498, -0.0012540817, -0.027282715, -0.016540527, 0.015029907, -0.107055664, 0.010177612, -0.057037354, 0.0040359497, 0.012145996, -0.008010864, 0.017288208, -0.03161621, 0.008865356, -0.0024909973, -0.022064209, 0.0635376, -0.0010280609, -0.010650635, -0.028717041, 0.06274414, -0.0758667, 0.064941406, 0.030944824, -0.042755127, 0.029052734, -0.037750244, 0.02041626, -0.01121521, 0.009552002, -0.014694214, -0.004673004, -0.013412476, -0.0028896332, 0.0047302246, 0.043701172, 0.0025024414, -0.049865723, 0.02583313, -0.028839111, -0.040008545, -0.01423645, -0.033203125, 0.01751709, -0.019454956, -0.013580322, -0.024673462, -0.0625, 0.02142334, -0.07171631, 0.009933472, 0.0016317368, 0.04559326, 0.008682251, -0.004749298, 0.072753906, 0.0063705444, 0.029403687, 0.019592285, -0.020553589, -0.023452759, -0.016815186, 0.014465332, -0.010871887, -0.03817749, -0.0055732727, 0.02015686, 0.026229858, 0.0056037903, -0.028335571, -0.001789093, 0.06323242, 0.023162842, -0.014038086, -0.0104599, 0.0060157776, 0.040771484, 0.003698349, -1.2278557e-05, -0.0317688, -0.06011963, -0.0041122437, -0.033416748, 0.055236816, 0.03857422, -0.024459839, 0.08605957, 0.07366943, -0.004085541, 0.027694702, 0.041046143, -0.01574707, 0.012710571, 0.019760132, -0.03817749, -0.0013866425, 0.0098724365, 0.0009813309, 0.0154800415, 0.0058174133, -0.026062012, 0.018569946, 0.0006313324, -0.011779785, -0.06222534, -0.0044136047, 0.0090408325, -0.014213562, 0.0022354126, -0.065979004, -0.02142334, -0.03274536, -0.015525818, 0.0039138794, -0.029281616, -0.00015759468, -0.03326416, -0.0045776367, -0.036224365, -0.0035305023, 0.008522034, 0.020233154, 0.0013904572, 0.021072388, 0.0013856888, -0.005718231, -0.009239197, -0.0031871796, -0.03933716, 0.027267456, 0.002374649, 0.054107666, 0.0039138794, -0.03363037, 0.019470215, -0.048950195, -0.027755737, 0.045043945, -0.008293152, -0.07714844, -0.011314392, 0.040649414, 0.011138916, -0.03527832, 0.0059051514, -0.026977539, -0.004589081, 0.0013628006, -0.026428223, 0.019515991, -0.02708435, -0.03024292, -0.0725708, -0.047698975, -0.012702942, 0.0368042, 0.0032901764, 0.0021038055, -0.03643799, -0.019348145, -0.0036411285, 0.014518738, -0.03225708, 0.001657486, -0.050231934, 0.005973816, 0.02330017, -0.007587433, -0.008911133, -0.026306152, -0.029342651, -0.0018672943, 0.08087158, -0.0016956329, 0.011054993, -0.020095825, 0.012176514, 0.010406494, 0.04562378, 0.030212402, -0.010353088, 0.012191772, -0.021820068, -0.012954712, -0.07434082, 0.009109497, 0.035369873, -0.00856781, -0.051849365, -0.020202637, 0.08880615, -0.013137817, 0.01663208, -0.002122879, 0.032684326, 0.017242432, 0.019042969, -0.11480713, -0.07946777, 0.0010471344, -0.052581787, 0.022247314, -0.0047569275, -0.01625061, 0.034729004, 0.09075928, 0.017547607, -0.030075073, -0.003112793, 0.012184143, -0.039093018, 0.012710571, -0.06365967, -0.003145218, -0.068115234, 0.049468994, -0.03805542, 0.025497437, 0.024368286, -0.009109497, -0.0060539246, -0.012161255, -0.007858276, -0.017288208, 0.027557373, 0.008659363, -0.026916504, -0.031982422, -0.031234741, 0.023284912, -0.049041748, -0.00066185, -0.0027427673, -2.592802e-05, 0.012039185, -0.021911621, -0.015853882, -0.017410278, -9.101629e-05, 0.011405945, 0.01259613, 0.015792847, -0.026626587, -0.008392334, 0.035461426, 0.009773254, -0.0027751923, 0.00957489, -0.0053710938, 0.00035476685, -0.02859497, -0.003129959, -0.06854248, 0.028289795, 0.048339844, -0.02142334, -0.013198853, 0.0076179504, 0.012588501, -0.035339355, -0.03527832, 0.029251099, 0.00010693073, -0.03387451, 0.044769287, 0.00579834, -0.04296875, 0.028503418, -0.030578613, 0.043884277, 0.006965637, -0.020324707, 0.0140686035, 0.011436462, 0.012268066, -0.07519531, 0.045043945, -0.010772705, -0.036193848, -0.038024902, 0.02230835, 0.035583496, -0.023498535, 0.06756592, -0.066223145, 0.06048584, -0.044189453, -0.042877197, -0.007637024, 0.06842041, 0.0007100105, -0.0033245087, 0.00894165, -0.022109985, -0.056030273, -0.040618896, -0.013725281, 0.0028934479, 0.001660347, -0.032989502, 0.0023612976, 0.011047363, -0.003730774, 0.011505127, -0.021392822, 0.009132385, -0.040618896, 0.012649536, -0.023956299, -0.003993988, -0.0029907227, 0.0071983337, 0.053741455, 0.020004272, -0.045806885, -0.07171631, -0.07928467, -0.014572144, -0.04168701, 0.057891846, -0.0031147003, -0.013168335, 0.029907227, 0.033691406, 0.030532837, -0.012962341, -0.018554688, 0.014587402, 0.028686523, 0.027023315, -0.033233643, -0.019256592, 0.05505371, -0.03741455, -0.04046631, 0.00042295456, 0.03604126, 0.03475952, 0.011924744, 0.09307861, 0.027511597, -0.0015048981, 0.03652954, 0.010467529, -0.033691406, -0.005153656, 0.0019683838, -0.078125, -0.0579834, -0.036987305, -0.014045715, -0.02218628, -0.014846802, 0.0121154785, 0.035858154, -0.0030555725, -0.01991272, -0.0016517639, -0.007167816, 0.0012197495, -0.017333984, -0.015975952, -0.02017212, 0.02142334, -0.042877197, 0.010475159, -0.01399231, -0.029144287, -0.005531311, 0.029586792, 0.0335083, 0.017089844, -0.00094509125, -0.012031555, -0.04486084, 0.029815674, -0.011756897, -0.031204224, 0.002035141, 0.028930664, 0.03451538, 0.006504059, 0.015098572, -0.019210815, -0.024963379, -0.006706238, -0.0011339188, 0.04562378, -0.03692627, 0.017456055, 0.0066375732, 0.040496826, -0.0051231384, 0.014160156, 0.018844604, 0.0038871765, -0.025878906, -0.0037593842, 0.024536133, -0.037841797, -0.0259552, -0.026550293, -0.04525757, -0.0044822693, -0.0209198, 0.016098022, 0.0010757446, -0.0008816719, -0.020126343, -0.01133728, 0.00047326088, -0.043029785, 0.02003479, -0.015281677, 0.04083252, -0.02796936, 0.038757324, 0.036712646, -0.051757812, -0.047851562, 0.004207611, 0.030700684, -0.008529663, 0.024765015, -0.031677246, 0.027130127, 0.03640747, -0.0637207, -0.02432251, -0.0065460205, 0.012908936, -0.026123047, -0.027053833, -0.012084961, 0.01889038, 0.003932953, -0.007663727, 0.041656494, -0.0068626404, -0.0059661865, -0.0016098022, -0.0034389496, -0.009742737, -0.02923584, 0.007297516, -0.017410278, -0.00868988, 0.0060424805, -0.05090332, 0.024932861, 0.029815674, 0.020965576, 0.008415222, -0.0024375916, 0.02671814, 0.0055236816, -0.044525146, -0.031677246, -0.03717041, 0.039245605, 0.028457642, -0.026306152, -0.0045280457, 0.00033473969, 0.022994995, -0.033843994, -0.017181396, 0.011451721, -0.039001465, -0.007881165, 0.023025513, -0.002193451, 0.0017261505, -0.010505676, -0.015151978, 0.011199951, 0.011390686, 0.0014028549, 0.024917603, 0.0026493073, 0.013046265, -0.036010742, 0.037841797, -0.05706787, 0.018310547, -0.020751953, 0.04397583, 0.027633667, 0.0041885376, -0.011650085, -0.027557373, -0.018539429, -0.017196655, -0.013877869, -0.04650879, 0.017318726, -0.007209778, 0.02746582, -0.024307251, 0.011489868, -0.040008545, -0.031585693, 0.045288086, -0.024658203, -0.0008544922, -0.022476196, -0.041931152, -0.030456543, -0.019104004, -0.043823242, 0.035125732, 0.00459671, -0.006275177, 0.01586914, -0.012939453, -0.0074539185, -0.03668213, 0.02166748, -0.010925293, 0.014633179, -0.0021820068, 0.042236328, -0.03463745, -0.03857422, -0.030960083, 0.02166748, -0.06585693, -0.02796936, -0.039611816, 0.017745972, -0.0048828125, -0.006225586, 0.008392334, 0.04788208, 0.016433716, -0.00090026855, 0.005176544, -0.026916504, -0.009536743, 0.02281189, 0.009887695, -0.021911621, -0.013519287, 0.019500732, 0.04269409, 0.008506775, 0.03466797, 0.040740967, -0.0769043, 0.005542755, -0.04385376, 0.010795593, -0.019256592, -0.0017585754, 0.042236328, 0.0024375916, -0.043029785, 0.05935669, 0.017181396, 0.061676025, 0.00687027, 0.0047340393, 0.043884277, -0.009811401, -0.01222229, -0.046966553, -0.021255493, 0.015419006, 0.0019273758, -0.016555786, -0.022903442, -0.002527237, -0.0046043396, -0.023605347, 0.008308411, -0.012275696, 0.009689331, 0.033569336, -0.0049324036, 0.005077362, -0.0039749146, 0.026794434, -0.012969971, -0.017578125, 0.029190063, -0.0028152466, -0.020935059, 0.0021305084, -0.010513306, -0.008850098, -0.0018730164, 0.033813477, -0.017364502, -0.031311035, 0.037872314, 0.0541687, 0.016281128, 0.01965332, 0.00012588501, -0.009178162, -0.058502197, -0.017120361, 0.045318604, -0.027435303, -0.07611084, 0.045166016, 0.03640747, 0.015686035, -0.033935547, -0.06109619, -0.05444336, 0.011474609, 0.004611969, 0.01802063, 0.045074463, 0.00484848, 0.013381958, 0.033813477, -0.0024147034, -0.011489868, 0.0011882782, 0.032318115, 0.0050964355, 0.0072517395]}, "B07D6FSMX3": {"id": "B07D6FSMX3", "original": "Brand: ISUMER\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill\nDescription: Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking\nFeatures: Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\nFirm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting.\nEasy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean.\nAdjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill\u2019 height and balance.\nGrill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.\n", "metadata": {"Name": "Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill", "Brand": "ISUMER", "Description": "Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking", "Features": "Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\nFirm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting.\nEasy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean.\nAdjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill\u2019 height and balance.\nGrill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.010986328, 0.018249512, -0.010681152, 0.013885498, 0.0112838745, 0.0103302, -0.006626129, -0.049194336, -0.041931152, 0.009178162, 0.008743286, 0.019638062, -0.021118164, -0.03378296, 0.030670166, -0.03479004, 0.009757996, 0.03640747, 0.031311035, -0.029953003, 0.005455017, -0.027267456, -0.023376465, 0.09234619, 0.041809082, -0.022506714, -0.006706238, -0.0019006729, 0.034454346, 0.019546509, 0.025421143, -0.014984131, 0.027313232, 0.003534317, -0.0014476776, -0.010246277, -0.03173828, 0.01777649, -0.0071105957, 0.0007920265, 0.033325195, -0.023864746, -0.049957275, 0.013343811, -0.038238525, -0.024307251, 0.017028809, -0.01576233, -0.012176514, -0.02557373, 0.03466797, -0.01436615, 0.045532227, -0.023635864, -0.00819397, 0.022659302, 0.018081665, -0.021972656, 0.03286743, -0.028549194, -0.028656006, -0.0140686035, 0.040161133, 0.009796143, -0.0501709, -0.009017944, 0.074645996, -0.023071289, -0.0418396, -0.057739258, 0.048217773, 0.019302368, 0.014595032, 0.0054130554, -0.025985718, -0.06402588, 0.05001831, -0.02468872, 0.0013628006, 0.029541016, -0.056793213, -0.0059165955, -0.032348633, -0.06286621, 0.00064611435, -0.037902832, -0.023269653, 0.0103302, -0.011367798, -0.011199951, -0.0027217865, -0.049957275, -0.04107666, 0.06890869, 0.016464233, -0.0027065277, -0.023666382, -0.053253174, 0.045837402, -0.0009589195, 0.044555664, -0.03677368, 0.0069732666, 0.0077438354, -0.028915405, 0.06021118, 0.03253174, 0.04827881, -0.002943039, -0.003929138, -0.00043034554, -0.072509766, -0.00031018257, -0.01977539, -0.016647339, -0.00053834915, -0.017456055, 0.02772522, 0.0037651062, 0.004257202, -0.029968262, -0.010696411, 0.006023407, 0.0513916, 0.06149292, 0.07104492, 0.006072998, 0.0043563843, -0.08972168, 0.055541992, -0.050750732, 0.022369385, 0.082092285, 0.023208618, -0.010032654, -0.037231445, 0.0021781921, -0.0074157715, -0.0018796921, 0.02130127, -0.022766113, -0.014404297, 0.048614502, -0.0062065125, -0.03387451, -0.0073509216, 0.048950195, 0.043792725, -0.039611816, -0.06161499, 0.0579834, 0.0048332214, 0.07092285, 0.0034942627, -0.07104492, -0.02178955, 0.022521973, -0.043792725, -0.045562744, -0.09442139, -0.01838684, -0.00868988, 0.036712646, -0.011558533, -0.018295288, 0.009590149, -0.012619019, -0.0071487427, 0.013374329, 0.018951416, 0.014251709, 0.008407593, -0.019332886, -0.019546509, -0.009681702, -0.010406494, 0.009384155, 0.018035889, 0.070129395, -0.04901123, -0.05569458, -0.045318604, 0.10449219, -0.045318604, -2.7954578e-05, 0.0014486313, -0.0058288574, -0.024337769, 0.028686523, -0.008766174, -0.0010433197, 0.015090942, 0.008842468, -0.028884888, 0.0060310364, 0.057617188, -0.026901245, 0.04550171, -0.003479004, -0.05014038, -0.0059928894, 0.0024204254, 0.006164551, 0.021362305, 0.016601562, -0.022903442, 0.0039634705, 0.011146545, 0.029296875, 0.03668213, -0.008659363, -0.0017795563, 0.010414124, -0.055633545, -0.0287323, -0.017669678, -0.013320923, 0.026672363, -0.0079956055, 0.010826111, 0.0079956055, -0.0335083, -0.0036354065, 0.025054932, 0.028518677, -0.04196167, 0.0023403168, -0.024963379, 0.04748535, -0.011550903, 0.005756378, 0.028335571, 0.046661377, 0.042816162, -0.011398315, 0.03189087, 0.058288574, 0.048034668, -0.031311035, -0.01084137, 0.021362305, 0.005935669, -0.05328369, -0.030654907, 0.06359863, -0.032928467, -0.028366089, 0.007949829, -0.051757812, -0.0018892288, 0.013595581, 0.03564453, 0.020736694, 0.011734009, -0.0569458, 0.061584473, -0.035247803, 0.015899658, -0.061798096, 0.067871094, -0.042633057, -0.004787445, 0.05657959, -0.018508911, 0.031021118, -0.021362305, 0.02923584, 0.012962341, 0.0006213188, -0.006378174, -0.0055236816, -0.0055160522, -0.0036354065, -0.011894226, 0.04611206, -0.06384277, -0.026916504, 0.014808655, 0.0034618378, -0.032806396, 0.01864624, 0.020477295, 0.04260254, -0.003238678, 0.02507019, -0.021026611, 0.007949829, 0.01737976, -0.07470703, -0.05319214, -0.017227173, 0.015853882, -0.031143188, -0.017807007, 0.0017166138, 0.0018100739, 0.030456543, 0.059539795, -0.009681702, -0.018325806, -0.024749756, 0.012107849, -0.066223145, 0.0074386597, -0.0234375, 0.00060606, -0.027389526, -0.007297516, -0.022125244, -0.08666992, 0.040893555, 0.018966675, 0.04284668, -0.04168701, 0.06390381, 0.018920898, -0.002521515, 0.037231445, 0.033721924, 0.05508423, -0.050109863, -0.039123535, -0.04171753, 0.025863647, -0.02281189, 0.02709961, 0.016189575, 0.006084442, 0.009048462, 0.012542725, -0.011398315, 0.005695343, -0.027023315, -0.004043579, -0.002729416, 0.0066108704, -0.009475708, 0.011116028, -0.004234314, -0.01638794, 0.013450623, -0.021987915, 0.014503479, -0.0095825195, -0.0037574768, -0.004055023, 0.0022907257, 0.016189575, 0.010345459, 0.013542175, -0.021820068, -0.025848389, 0.026153564, -0.025726318, 0.0001218915, 0.033294678, -0.035125732, -0.059509277, -0.027618408, -0.08502197, -0.03062439, -0.0020313263, -0.056884766, 0.0021648407, 0.03869629, -0.007949829, -0.010620117, -0.00945282, 0.0022449493, 0.0062828064, 0.014373779, 0.0054626465, -0.032104492, -0.013641357, -0.0016422272, -0.018463135, 0.023986816, -0.03048706, -0.04095459, -0.016464233, -0.013450623, 0.020706177, -0.005039215, 0.048553467, 0.013519287, 0.0046195984, 0.035217285, 0.062927246, 0.01763916, -0.029541016, 0.0077590942, 0.06286621, -0.06555176, -0.0079574585, 0.01689148, 0.027755737, -0.018447876, -0.05569458, -0.037231445, -0.033569336, -0.04864502, 0.01826477, 0.017410278, -0.031829834, 0.0019664764, -0.05355835, -0.0055160522, -0.03466797, 0.00061893463, 0.05355835, -0.035461426, 0.038146973, -0.052246094, 0.048095703, -0.009376526, -0.01701355, 0.027420044, -0.010246277, 0.03817749, -0.049682617, -0.02017212, 0.00472641, 0.010787964, 0.03274536, -0.01524353, 0.0034217834, -0.0028800964, 0.006011963, -0.01763916, 0.04711914, 0.0005874634, -0.00039291382, -0.002729416, 0.022705078, -0.04827881, 0.008850098, 0.009208679, -0.04360962, 0.066589355, -0.05935669, -0.008796692, 0.011245728, -0.0446167, 0.017852783, -0.011520386, -0.03781128, 0.007663727, -0.05618286, -0.0124435425, -0.0105896, -0.017868042, 0.015991211, 0.026473999, 0.02772522, -0.005470276, 0.0018453598, 0.029342651, 0.023468018, 0.006023407, -0.01285553, -0.026931763, -0.02003479, 0.019378662, -0.025314331, 0.0146102905, -0.03616333, 0.014732361, -0.010864258, 0.0027542114, 0.0028705597, -0.01600647, 0.046691895, 0.040161133, 0.0016717911, 0.019882202, -0.02507019, -0.007881165, 0.010673523, -0.05117798, -0.018692017, -0.052856445, 0.0009379387, -0.109069824, 0.11071777, 0.035888672, -0.014335632, 0.080444336, 0.07739258, -0.006839752, 0.035491943, 0.017715454, 0.008972168, 0.009849548, 0.047821045, -0.005630493, 0.0075950623, 0.025939941, -0.034454346, 0.039367676, 0.031204224, -0.09527588, 0.033721924, 0.019363403, -0.0793457, 0.0026893616, -0.0017738342, -0.023590088, 0.008018494, -0.015670776, -0.0051231384, -0.028549194, -0.01701355, 0.017486572, 0.015419006, -0.0073509216, 0.028839111, 0.0015621185, 0.00566864, -0.0090408325, -0.021484375, 0.00687027, 0.05609131, 0.002035141, 0.025619507, -0.004722595, -0.01574707, -0.015426636, 0.011520386, -0.023529053, -0.009727478, 0.0149383545, 0.0036907196, 0.0072364807, 0.0014686584, 0.015220642, 0.010528564, -0.01625061, 0.00032162666, -0.017456055, -0.057617188, 0.022644043, 0.018661499, -0.03378296, -0.03463745, 0.022979736, -0.06384277, -0.017364502, -0.025009155, -0.038146973, -0.0031585693, -0.025054932, -0.021743774, -0.057891846, -0.0023612976, 0.012664795, -0.03692627, -0.04458618, 0.017196655, -0.013122559, -0.041412354, -0.034698486, 0.031204224, -0.0066108704, -0.025009155, 0.042907715, 0.014846802, 0.060058594, 0.023010254, -0.0046043396, -0.008880615, -0.03668213, 0.0018949509, 0.034606934, -0.010643005, 0.010353088, -0.028564453, -0.022735596, -0.011131287, 0.032318115, 0.07800293, -0.03616333, 0.03918457, -0.009025574, -0.0028915405, -0.047027588, -0.01486969, 0.04232788, -0.052764893, -0.024139404, -0.00982666, 0.070739746, -0.025177002, -0.005065918, -0.05279541, 0.02357483, 0.009536743, 0.018661499, -0.02619934, -0.035614014, 0.017868042, -0.013046265, 0.010223389, -0.012382507, -0.015113831, 0.04345703, 0.03137207, 0.022842407, -0.012969971, -0.033447266, -0.06500244, -0.009162903, 0.042510986, -0.031951904, -0.001996994, -0.05633545, 0.02319336, -0.07269287, 0.09313965, 0.06976318, -0.035339355, -0.005077362, 0.0072402954, -0.03778076, -0.032165527, 0.042022705, -0.035217285, -0.039886475, -0.018371582, -0.012565613, -0.023712158, -0.043426514, -0.006931305, -0.0040893555, -0.03463745, 0.0016670227, 0.001540184, 0.01235199, -0.02015686, 0.018981934, 0.055999756, 0.003211975, 0.019470215, -0.002904892, -0.020233154, 0.0031280518, -0.041229248, -0.014831543, -0.008613586, 0.0001399517, -0.009971619, 0.010108948, -0.0052948, -0.06185913, 0.015640259, 0.061553955, -0.021591187, -0.022232056, 0.02645874, 0.013877869, 0.007545471, -0.0074386597, 0.06976318, -0.008575439, -0.0071372986, 0.0014753342, -0.046295166, 0.03579712, 0.000869751, -0.024032593, 0.009437561, -0.02192688, -0.021072388, 0.03189087, -0.0074043274, 0.0029010773, -0.018066406, 0.0002644062, 0.0075187683, -0.0096588135, -0.0340271, -0.0014858246, -0.00095033646, 0.04034424, 0.0030975342, -0.024230957, 0.03765869, 0.015319824, -0.015403748, 0.02041626, 0.05178833, -0.010467529, -0.013061523, 0.030426025, -0.0017871857, -0.047607422, 0.003118515, -0.011795044, -0.016830444, -0.0025997162, -0.030883789, 0.0029563904, 0.01626587, -0.021835327, -0.017456055, 0.009765625, 0.013725281, -0.022323608, 0.026016235, -0.0262146, -0.0071868896, 0.018295288, 0.06591797, -0.030578613, 0.0088272095, -0.036621094, -0.047912598, -0.06384277, 0.02558899, 0.0020446777, 0.020980835, -0.01838684, -0.014862061, 0.008560181, -0.000998497, 0.021011353, 0.019378662, -0.026443481, 0.0027008057, 0.005115509, 0.023361206, -0.054504395, 0.0075187683, 0.0914917, -0.059692383, -0.05557251, -0.035003662, 0.055847168, -0.01966858, 0.0027999878, 0.07165527, -0.025878906, 0.024291992, 0.015144348, 0.0041999817, -0.026184082, -0.009681702, 2.9146671e-05, -0.07824707, 0.029312134, -0.009346008, 0.023376465, 0.021240234, 0.023880005, -0.011650085, 0.053100586, -0.017333984, -0.013267517, -0.060943604, 0.013053894, -0.015266418, -0.054840088, 0.01133728, -0.024963379, -0.016494751, -0.0012197495, -0.01890564, -0.057373047, -0.0025482178, 0.06781006, 0.026565552, 0.026901245, -0.03286743, 0.03970337, 0.06304932, -0.03869629, 0.0703125, -0.0046195984, -0.03665161, 0.01423645, 0.02923584, 0.02558899, -0.0030937195, 0.010307312, 0.0022678375, -0.006450653, -0.006801605, 0.03475952, -0.023025513, 0.016586304, 0.015579224, 0.036743164, 0.011512756, 0.040222168, -0.009986877, 0.036132812, 0.007511139, -0.028198242, -6.7293644e-05, 0.04522705, -0.012199402, 0.015106201, -0.03277588, 0.0317688, 0.0064048767, -0.0057792664, 0.0135269165, 0.035827637, 0.021224976, -0.037475586, 0.009033203, 0.010047913, -0.006385803, 0.040740967, -0.0047454834, -0.018112183, -0.008361816, -0.01210022, 0.0064888, -0.031173706, 0.009536743, 0.011787415, 0.021484375, 0.009025574, 0.030288696, -0.016479492, 0.022979736, 0.030731201, -0.058288574, 0.0077438354, -0.010566711, 0.00844574, -0.005760193, -0.078552246, -0.027450562, -0.026290894, 0.016296387, -0.008399963, 0.060424805, -0.005634308, 0.016693115, -0.029129028, 0.046417236, -0.044189453, -0.018692017, 0.0038833618, 0.03237915, 0.020523071, -0.005088806, -0.043792725, -0.0137786865, 0.051971436, -0.021697998, -0.019424438, -0.011543274, 0.030593872, -0.013938904, 0.0006737709, -0.02104187, -0.025466919, 0.067993164, 0.03643799, -0.025604248, 0.010696411, -0.0057907104, -0.008956909, 0.061431885, -0.0513916, 0.02986145, 0.0039482117, 0.05999756, 0.04046631, 0.06414795, -0.022399902, -0.025619507, -0.026123047, -0.008163452, 0.0053863525, 0.029449463, -0.018173218, 0.043273926, 0.00894165, 0.038238525, 0.05706787, -0.02330017, 0.042663574, 0.017791748, 0.009101868, 0.020065308, 0.024490356, -0.006919861, -0.016082764, -0.008995056, -0.007896423, -0.002319336, -0.002779007, 0.018447876, -0.012962341, 0.0035419464, -0.03463745, 0.03277588, -0.0039138794, -0.044769287, -0.010902405, -0.021469116, -0.017532349, -0.008804321, -0.0317688, -0.010826111, -0.00058841705, -0.025665283, 0.016494751, 0.017654419, -0.019546509, -0.0074424744, 0.0030326843, 0.009185791, -0.050048828, 0.01158905, -0.010131836, 0.008216858, -0.0052948, 0.06518555, -0.03353882, -0.044647217, -0.06677246, 0.0065078735, -0.049041748, -0.010154724, -0.0046310425, 0.02281189, 0.032928467, -0.000828743, 0.020751953, 0.06604004, 0.008140564, -0.0007920265, 0.009857178, -0.034423828, -0.051116943, 0.062469482, 0.02027893, -0.020980835, 0.0069084167, 0.043548584, 0.0020008087, 0.052490234, 0.014541626, 0.004360199, -0.051361084, -0.028778076, -0.061584473, 0.012496948, -0.022888184, -0.00040316582, 0.014732361, -0.01335144, -0.035858154, -0.0019435883, 0.01940918, 0.02722168, 0.010360718, 0.031677246, -0.0046958923, -0.022857666, -0.0047187805, -0.00806427, -0.006767273, 0.018173218, 0.01737976, 0.00042295456, -0.03010559, 0.027130127, -0.0058021545, 0.013435364, 0.024536133, -0.011962891, 0.0077171326, -0.0060310364, 0.0064048767, -0.0063438416, -0.003917694, 0.030731201, -0.0011129379, -0.035949707, -0.008842468, 0.031707764, -0.014228821, 0.0072898865, 0.0052108765, 0.0054016113, 0.023757935, 0.044433594, -0.009941101, -0.039001465, 0.0037021637, 0.031982422, -0.002691269, 0.014808655, -0.008850098, -0.0146484375, -0.0069084167, 0.012527466, 0.015670776, 0.003047943, -0.01928711, 0.03463745, -0.0017871857, 0.05645752, -0.0082092285, -0.031829834, -0.042053223, 0.041778564, 0.010696411, -0.02520752, 0.02848816, 0.0032596588, 0.004787445, 0.012458801, -0.015174866, -0.040100098, 0.017791748, 0.051818848, 8.6307526e-05, 0.023605347]}, "B07PHKT5XC": {"id": "B07PHKT5XC", "original": "Brand: GasOne\nName: GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black\nDescription: \nFeatures: Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements\nHigh heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control\nConvenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection\nHeavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSteel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas\n", "metadata": {"Name": "GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black", "Brand": "GasOne", "Description": "", "Features": "Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements\nHigh heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control\nConvenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection\nHeavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSteel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.006008148, -0.007408142, -0.018203735, -0.040161133, -0.017562866, 0.015975952, -0.044006348, -0.005405426, -0.026809692, 0.00687027, -0.009162903, -0.00093078613, -0.004673004, -0.043914795, 0.02180481, -0.03338623, 0.011100769, 0.0463562, 0.04425049, -0.0135269165, 0.0030670166, -0.010414124, 0.028213501, 0.043914795, 0.015991211, -0.027648926, 0.015541077, -0.019943237, 0.028320312, -0.007259369, 0.022903442, -7.390976e-06, 0.05218506, -0.058532715, 0.013412476, 0.004486084, 0.014572144, -0.046051025, -0.03768921, 0.02078247, 0.0027770996, -0.0005850792, 0.0012245178, 0.016204834, -0.009056091, -0.049194336, 0.037322998, -0.035095215, -0.007457733, 0.0440979, -0.0068473816, 0.0038967133, -0.012619019, 0.03048706, 0.007774353, 0.011543274, -0.0071868896, -0.010009766, 0.014854431, 0.0072517395, 0.0049743652, -0.019622803, 0.023742676, -0.0062713623, -0.043395996, 0.025802612, 0.0715332, -0.02494812, 0.0057868958, -0.052612305, -0.018218994, 0.033447266, 0.032318115, -0.01574707, -0.030563354, -0.030197144, -0.0022296906, -0.05130005, 0.035217285, -0.019439697, 0.009918213, -0.026992798, 0.059173584, -0.0058135986, -0.006164551, -0.001868248, -0.0075683594, -0.009727478, 0.016799927, -0.012382507, -0.0005159378, 0.0023288727, -0.008766174, 0.038024902, -0.001832962, -0.018875122, -0.0107040405, -0.06555176, 0.028030396, -0.004425049, 0.04446411, -0.052886963, 0.036590576, 0.005241394, -0.01033783, 0.07348633, 0.008071899, 0.05215454, 0.030792236, -0.010025024, 0.013534546, -0.00011378527, -0.017654419, -0.053985596, 0.005622864, 0.06121826, -0.00029277802, -0.002216339, 0.03161621, -0.015541077, -0.01309967, -0.012184143, 0.013656616, -0.012649536, 0.017669678, 0.0037326813, -0.03414917, 0.013725281, 0.005580902, 0.04031372, -0.011962891, -0.025604248, 0.020812988, 0.06774902, 0.021652222, -0.014831543, 0.043884277, -0.05218506, 0.009185791, -0.024017334, 0.010940552, 0.021591187, 0.02734375, -0.009590149, 0.0051002502, 0.014923096, 0.015449524, 0.006160736, -0.0018167496, -0.010673523, -0.0048332214, -0.013587952, 0.0413208, 0.014801025, -0.04284668, 0.02003479, 0.013595581, -0.001964569, -0.056793213, -0.033294678, -0.032104492, -0.0013866425, -0.002111435, 0.024871826, -0.0025043488, 0.041503906, 0.05682373, 0.0015907288, 0.0069732666, 0.047424316, -0.023605347, 0.0044403076, 0.0062561035, 0.030166626, 0.0019388199, 0.010719299, -0.04525757, 0.072753906, 0.061309814, -0.09387207, -0.05783081, -0.06628418, 0.14782715, -0.04159546, -0.01914978, -0.01146698, -0.012908936, -0.03729248, 0.047027588, -0.015396118, 0.012878418, 0.008552551, 0.012428284, -0.03604126, -0.0029125214, 0.010444641, -0.02545166, 0.020584106, -0.012054443, -0.024810791, -0.035308838, 0.0105896, 0.00365448, 0.004184723, 0.0027160645, -0.012001038, 0.0052375793, 0.018127441, 0.054504395, 0.010940552, -0.026672363, 0.007713318, 0.012794495, -0.0635376, -0.049346924, 0.025253296, -0.02809143, 0.0068206787, 0.009346008, -0.0033779144, 0.06329346, -0.014152527, 0.04663086, 0.048034668, 0.030014038, -0.050933838, 0.00080394745, -0.028930664, 0.025497437, -0.005027771, -0.030441284, 0.021392822, 0.066589355, 0.07312012, 0.010498047, 0.03353882, 0.097351074, -0.019470215, -0.019714355, -0.012741089, -0.0019683838, -0.044647217, -0.014183044, 0.050720215, -0.03451538, 0.02444458, 0.031463623, 0.023849487, -0.031829834, 0.058380127, 0.057525635, 0.03363037, -0.021896362, 0.009246826, -0.040008545, 0.015686035, -0.041625977, 0.015960693, -0.0053634644, 0.018676758, -0.017745972, 0.022766113, 0.049987793, -0.017669678, 0.0126571655, 0.03591919, 0.06402588, 0.067871094, -0.004776001, -0.0053520203, 0.0037403107, 0.04776001, -0.0010538101, 0.005710602, -0.008384705, 0.0041007996, -0.033447266, 0.021713257, 0.0060272217, -0.011482239, 0.009010315, -0.01361084, -0.02748108, -0.002729416, 0.040130615, 0.020843506, 0.010192871, 0.023269653, 0.0309906, -0.01701355, -0.0036640167, 0.0003669262, 0.016067505, 0.0057296753, 0.03375244, -0.048187256, 0.07183838, -0.022064209, 0.026977539, -0.023834229, 0.048675537, 0.047454834, -0.0234375, 0.016708374, -0.0010900497, 0.0473938, 0.008781433, 0.012535095, 0.016830444, -0.00048732758, -0.0035591125, -0.0063171387, 0.022460938, 0.026000977, 0.016860962, 0.019866943, 0.010223389, 0.05227661, 0.08996582, 0.078308105, -0.003921509, 0.01184845, -0.0435791, -0.04269409, 0.019821167, 0.02305603, -0.07324219, -0.014060974, -0.044403076, -0.0061531067, 0.018157959, -0.025421143, 0.015914917, -0.02357483, 0.0021743774, -0.006549835, -0.008415222, 0.049041748, 0.0043754578, -0.042877197, 0.0042533875, -0.011291504, -0.010475159, 0.013572693, -0.06060791, -0.035125732, 0.05316162, -0.006263733, -0.050048828, 0.0018625259, 0.055877686, -0.028518677, -0.041046143, -0.082214355, -0.018432617, 0.017807007, 0.014633179, -0.058624268, 0.009231567, -0.07757568, -0.010513306, -0.020843506, -0.050201416, -0.009849548, 0.05041504, -0.011558533, -0.043945312, -0.0060310364, -0.012870789, 0.02078247, 0.02720642, 0.018127441, -0.08325195, -0.031463623, -0.05859375, -0.009613037, 0.01083374, -0.018081665, -0.019638062, -0.0045204163, 0.019943237, 0.022705078, -0.0021266937, 0.009010315, -0.008071899, 0.045715332, 0.025512695, 0.0036296844, -0.012130737, -0.02507019, 0.00806427, 0.029159546, 0.015182495, -0.011886597, 0.03781128, -0.0023536682, -0.035339355, 0.035095215, -0.05355835, -0.0042304993, -0.07104492, 0.003982544, -0.008285522, -0.017593384, -0.02784729, -0.04763794, -0.048950195, -0.045196533, 0.0058059692, 0.07739258, -0.012794495, -0.0078048706, -0.024963379, -0.0016460419, -0.0022945404, 0.0004105568, 0.037994385, 0.0029468536, -0.014976501, -0.01977539, 0.049316406, -0.035888672, 0.06549072, 0.03692627, -0.047546387, 0.048034668, -0.0178833, 0.03048706, -0.01927185, -0.01234436, -0.013427734, -0.020370483, -0.026794434, 0.0019550323, -0.008255005, 0.05218506, 0.019897461, -0.013496399, 0.0317688, -0.021514893, -0.013252258, -0.020462036, -0.01777649, 0.03781128, -0.005405426, -0.010574341, -0.04473877, -0.029922485, -0.010139465, -0.05557251, 0.017715454, 0.022384644, 0.02973938, 0.010543823, 0.0005121231, 0.06555176, -0.017318726, 0.015113831, -0.02557373, -0.01612854, -0.047302246, -0.028778076, 0.056030273, -0.053833008, -0.027862549, -0.012565613, 0.023605347, 0.027053833, 0.0032749176, -0.024932861, 0.008232117, 0.037719727, 0.01586914, -0.017471313, 0.003419876, 0.0064582825, 0.011390686, -0.01626587, 0.007987976, -0.011459351, -0.054534912, 0.0018043518, -0.02331543, 0.047790527, 0.027435303, -0.012619019, 0.07397461, 0.0769043, 0.0067214966, 0.033691406, 0.034729004, 0.0032520294, -0.0013275146, 0.066711426, -0.016815186, 0.008903503, 0.0058250427, 0.0075263977, 0.014221191, -0.01525116, -0.002374649, 0.0103302, 0.010612488, 0.0005645752, -0.036621094, 0.0025367737, 0.0390625, -0.015304565, -0.0037002563, -0.0209198, -0.0008826256, -0.034606934, -0.040283203, 0.0036315918, -0.026504517, -0.003479004, -0.011062622, 0.012466431, -0.021774292, -0.014480591, 0.016845703, 0.01348114, -0.007637024, 0.0096588135, 0.03375244, -0.004386902, -0.016586304, 0.010894775, -0.02897644, 0.018753052, 0.0039253235, 0.04046631, 0.012290955, -0.022003174, 0.011642456, -0.02519226, -0.030792236, 0.029754639, -0.009536743, -0.06695557, 0.002122879, 0.034301758, -0.0016813278, -0.01889038, -0.006061554, -0.05316162, -0.021774292, -0.009101868, -0.050811768, 0.013923645, -0.007701874, -0.013572693, -0.034851074, -0.023773193, -0.030059814, -0.0003643036, -0.018081665, -0.0075263977, -0.015640259, 0.039642334, -0.017654419, 0.05505371, -0.062347412, -0.013305664, -0.04019165, 0.005519867, 0.021575928, 0.013015747, -0.022613525, -0.016342163, -0.006969452, 0.002363205, 0.07348633, -0.005493164, 0.004383087, -0.033966064, 0.005153656, 0.013542175, 0.027770996, 0.024917603, -0.0010595322, 0.025985718, -0.0030918121, 0.006664276, -0.1005249, -0.00053215027, 0.031341553, -0.026947021, -0.09857178, -0.048187256, 0.0904541, 0.018493652, -0.01991272, -0.0020103455, 0.062408447, 0.054840088, 0.0184021, -0.08001709, -0.034179688, 0.01411438, -0.0592041, 0.01763916, 0.010757446, -0.025787354, 0.019012451, 0.07098389, -0.023727417, -0.040893555, 0.014915466, 0.049194336, -0.03439331, 0.010368347, -0.05581665, -0.005619049, -0.017425537, 0.0012397766, -0.04849243, 0.066345215, 0.02381897, 0.025802612, -0.0011367798, -0.016296387, 0.0027980804, -0.074523926, 0.024490356, 0.0017375946, -0.05807495, -0.032165527, -0.025604248, 0.031555176, -0.027999878, 0.0058021545, -0.009414673, -0.01687622, -0.011711121, -0.004840851, -0.009780884, -0.027114868, -0.014862061, -0.006679535, 0.02684021, -0.009422302, -0.018173218, 0.010681152, -0.0027542114, 0.007457733, 0.014404297, 0.019180298, -0.027816772, 0.0062789917, -0.08850098, 0.006072998, -0.016708374, 0.023864746, 0.03451538, 0.014862061, -0.010528564, 0.011711121, -0.0143966675, -0.019989014, -0.03829956, 0.00070142746, -0.023269653, -0.015686035, 0.04248047, 0.023544312, -0.029373169, 0.034362793, -0.028640747, 0.047210693, 0.015792847, -0.03253174, 0.008514404, 0.026260376, 0.017684937, -0.06341553, 0.04812622, -0.009162903, -0.03656006, -0.02986145, 0.0077590942, 0.009513855, -0.009284973, 0.03744507, -0.04309082, 0.061706543, -0.022262573, -0.047729492, 0.00598526, 0.068725586, 0.015487671, 0.010391235, 0.015403748, -0.023010254, -0.06665039, -0.031585693, -0.0680542, -0.0074424744, 0.006298065, 0.03314209, -0.014350891, -0.016555786, 0.011886597, -0.04849243, -0.005634308, 0.0048980713, -0.048339844, 0.0019311905, 0.009422302, 0.015296936, 0.0068206787, -0.015266418, 0.038024902, 0.021102905, -0.03869629, -0.05038452, -0.044769287, 0.0072402954, -0.015899658, 0.040283203, 0.00333786, -0.030136108, 0.01474762, 0.024383545, 0.030029297, -0.033325195, -0.009635925, 0.0107421875, 0.014503479, 0.03164673, 0.0035305023, 0.0044822693, 0.06903076, -0.037322998, -0.03173828, -0.06732178, 0.010795593, 0.024978638, -0.015777588, 0.0637207, 0.054779053, -0.01651001, 0.045043945, -0.0027999878, -0.03845215, -0.019073486, -0.011009216, -0.06640625, -0.03768921, -0.04071045, 0.0047721863, -0.01763916, -0.021896362, 0.015823364, 0.041778564, 0.013122559, 0.001876831, -0.016311646, -0.024398804, -0.0010461807, -0.048950195, 0.0057868958, -0.0077590942, 0.015151978, -0.003791809, 0.0025367737, -0.04498291, 0.008453369, -0.013206482, 0.013427734, 0.011436462, 0.035949707, -0.0064086914, -0.01197052, -0.041809082, 0.0059928894, -0.029525757, -0.019515991, -0.0025730133, 0.066223145, 0.036499023, 0.014060974, -0.029159546, -0.046905518, -0.04168701, 0.017868042, -0.0025196075, 0.054504395, -0.057891846, -0.0061302185, 0.0076408386, 0.051239014, -0.011856079, -0.031677246, -0.0070228577, -0.006717682, -0.037750244, -0.015075684, 0.031677246, -0.026153564, -0.004360199, -0.048065186, -0.036590576, -0.039611816, -0.022140503, 0.01423645, 0.011962891, -0.027709961, 0.007537842, -0.01902771, 0.015235901, -0.02229309, 0.026947021, -0.0029067993, 0.014579773, -0.0059776306, 0.033111572, 0.025146484, -0.023345947, -0.051086426, -0.007019043, 0.017608643, -0.03265381, 0.036224365, -0.04425049, -0.009719849, 0.048828125, -0.04940796, 0.0024433136, 0.026977539, -0.011726379, -0.012969971, -0.049743652, -0.031921387, -0.0037822723, 0.031402588, -0.013771057, 0.031173706, 0.0017004013, 0.015533447, 0.01361084, -0.008583069, 0.032165527, -0.02178955, 0.004524231, 0.0119018555, 0.0096588135, -0.023071289, -0.058563232, 0.029205322, 0.02796936, 0.0076675415, 0.022109985, -0.007797241, 0.012550354, 0.00044751167, -0.023071289, -0.047454834, -0.053955078, -0.007499695, 0.014221191, -0.026123047, -0.02557373, -0.013534546, 0.031341553, -0.025253296, -0.012336731, 0.004550934, -0.041046143, -0.0058670044, 0.020126343, -0.007167816, -0.021102905, -0.03036499, -0.018112183, 0.0044822693, -0.0030670166, 0.009651184, 0.015457153, 0.022598267, 0.0021858215, -0.00868988, 0.025527954, -0.05795288, 0.009887695, 0.012397766, 0.014381409, -0.00031971931, -0.007820129, -0.02545166, -0.033447266, -0.010917664, -0.007575989, -0.0206604, -0.05041504, -0.0041275024, 0.008201599, 0.016693115, -0.025939941, 0.021957397, -0.023605347, -0.035736084, 0.04385376, -0.010482788, 0.0026302338, -0.029342651, -0.026779175, -0.030807495, -0.04083252, -0.05343628, 0.04626465, -0.029785156, -0.02394104, -0.017593384, 0.011054993, -0.006023407, -0.048919678, -0.017211914, -0.011459351, 0.006095886, -0.019454956, 0.021469116, -0.0519104, -0.044311523, 0.0058670044, 0.043762207, -0.07946777, -0.07312012, -0.03552246, 0.009346008, -0.01335907, -0.012580872, 0.025421143, 0.01626587, 0.029327393, 0.004512787, 0.002729416, -0.018692017, -0.014190674, 0.015686035, 0.012191772, -0.027145386, -0.006515503, 0.031982422, 0.0030231476, -4.094839e-05, 0.020385742, 0.00818634, -0.078125, -0.013374329, -0.040008545, -0.009674072, 0.02078247, -0.023010254, 0.040161133, 0.0031700134, -0.04724121, 0.0345459, 0.0010929108, 0.039886475, 0.009727478, 0.0209198, 0.04901123, 0.023864746, -0.0037612915, -0.03768921, -0.022460938, -0.014328003, 0.020187378, -0.017578125, -0.04006958, -0.030944824, -0.0011882782, -0.027450562, -0.002243042, -0.02571106, 0.009590149, 0.007217407, -0.020202637, -0.014793396, -0.025131226, -0.0138549805, -0.0062446594, -0.025909424, 0.038391113, 0.054504395, -0.052734375, -0.03491211, 0.017501831, -0.016098022, 0.0008392334, 0.008377075, -0.0791626, -0.04385376, 0.041931152, 0.059906006, -0.036254883, 0.02017212, -0.010818481, 0.03363037, -0.034118652, 0.0045814514, 0.032806396, 0.0046806335, -0.06149292, 0.054351807, 0.022201538, 0.06085205, -0.05041504, -0.058502197, -0.06402588, 0.02897644, 0.002866745, 0.011512756, 0.06573486, -0.01889038, 0.019821167, 0.0025730133, 0.011146545, -0.0112838745, -0.0020771027, 0.015556335, -0.0055656433, 0.012550354]}, "B088YP9G4N": {"id": "B088YP9G4N", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker\nDescription:
      Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

      With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

      Technical Details:
      Premium Material: Solid iron support + Chrome plated BBQ wire mesh
      Color: Black\nFeatures: The grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE\u2019S GATHERING]\n", "metadata": {"Name": "Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker", "Brand": "LETION", "Description": "
      Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

      With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

      Technical Details:
      Premium Material: Solid iron support + Chrome plated BBQ wire mesh
      Color: Black", "Features": "The grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE\u2019S GATHERING]", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.01436615, 0.04534912, -0.019561768, -0.0124435425, 0.033813477, -0.009277344, 0.0010852814, -0.030166626, -0.020874023, -0.014175415, -0.02444458, 0.051971436, -0.057373047, -0.026901245, 0.018600464, -0.03945923, -0.0012168884, 0.06021118, 0.008483887, -0.017166138, 0.012550354, -0.0073013306, -0.07434082, 0.07470703, 0.033172607, -0.01713562, 0.015350342, -0.006942749, 0.016937256, 0.009094238, 0.02407837, -0.012908936, 0.024658203, 0.033355713, -0.038330078, -0.03756714, -0.043304443, 0.02658081, -0.011489868, -0.0019512177, 0.015853882, -0.0016813278, -0.0803833, 0.037841797, -0.059753418, -0.07330322, 0.01864624, -0.012268066, -0.019058228, -0.007194519, 0.023284912, -0.0018644333, 0.041900635, -0.02494812, -0.004878998, -0.0013971329, 0.036987305, -0.04220581, 0.026016235, -0.020431519, -0.02998352, 0.005428314, 0.02709961, 2.3961067e-05, -0.010177612, -0.03488159, 0.07714844, 0.013961792, -0.07672119, -0.056518555, 0.06665039, 0.01020813, -0.0027866364, -0.014640808, 0.02268982, -0.034973145, -0.002161026, -0.037231445, 0.0076179504, 0.044036865, -0.054870605, -0.016418457, 0.00036478043, -0.06384277, 0.01776123, -0.017852783, -0.024032593, 0.00073575974, 0.037597656, -0.0013055801, 0.02619934, -0.039031982, -0.016021729, 0.091430664, 0.042663574, -0.037902832, -0.019500732, -0.022842407, -0.0045318604, -0.00031542778, 0.026016235, -0.026641846, 0.025100708, -0.0025691986, -0.036071777, 0.08306885, 0.032409668, 0.021636963, -0.052368164, -0.018218994, 0.0038089752, -0.089538574, -0.0027542114, -0.025741577, -0.008270264, 0.0035037994, -0.0181427, 0.026733398, 0.011528015, 0.014549255, -0.05255127, -0.028900146, -0.015930176, 0.0060577393, 0.0670166, 0.026535034, 0.017211914, 0.032836914, -0.08276367, 0.046051025, -0.03366089, 0.026382446, 0.05065918, 0.018035889, -0.027252197, -0.030136108, -0.00793457, -0.0049705505, 0.01864624, -0.0012817383, -0.010139465, 0.0027103424, 0.05706787, 0.0063171387, -0.007843018, 0.023834229, 0.040649414, 0.0068855286, -0.034210205, -0.05706787, 0.039123535, -0.0059013367, 0.05102539, 0.016647339, -0.062561035, -0.031433105, -0.010063171, -0.038330078, -0.0073890686, -0.06652832, -0.006713867, -0.010055542, 0.008560181, 0.0084991455, -0.008377075, 0.022644043, 0.024291992, 0.00617218, 0.022018433, 0.026367188, 0.029876709, 0.0018901825, 0.003818512, -0.008079529, -0.004310608, -0.00881958, -0.024215698, 0.07385254, 0.07385254, -0.11566162, -0.07043457, -0.060516357, 0.109069824, -0.026916504, 0.02204895, -0.012138367, 0.01939392, 0.0023422241, -0.003484726, 0.029907227, -0.030212402, 0.017303467, 0.024536133, -0.015312195, 0.0059547424, 0.019958496, -0.025772095, 0.02709961, -0.01574707, -0.024780273, 0.01663208, 0.015777588, -0.011291504, 0.013092041, -0.0064888, -0.007434845, 0.0084991455, 0.015617371, 0.057800293, 0.04888916, -0.012504578, 0.015563965, -0.015731812, -0.046905518, -0.079711914, -0.024215698, 0.00020253658, 0.020492554, -0.0032806396, -0.015853882, 0.014732361, -0.017242432, 0.01687622, 0.034973145, 0.02079773, -0.030334473, -0.007030487, -0.023529053, 0.020309448, 0.00819397, -0.040039062, 0.034576416, 0.062347412, 0.05682373, -0.012512207, 0.04095459, 0.085510254, 0.07989502, -0.024520874, -0.033172607, 0.02861023, 0.017288208, -0.046051025, -0.026367188, 0.048950195, -0.05291748, -0.031463623, -0.0011014938, -0.028839111, -0.009254456, 0.021774292, 0.014915466, 0.035736084, 0.0098724365, 0.00075626373, 0.028717041, -0.04727173, 0.03945923, -0.037231445, 0.004737854, -0.027282715, 0.009216309, 0.047607422, -0.032226562, 0.020614624, -0.0046806335, 0.026931763, 0.019714355, -0.027832031, 0.008712769, 0.012840271, -0.0029277802, -0.015686035, -0.0045776367, 0.058166504, 0.0028514862, -0.04776001, 0.013587952, 0.014945984, -0.003282547, 5.7518482e-05, 0.0002039671, -0.0074043274, -0.0127334595, 0.02822876, 0.0045166016, -0.007572174, -0.010665894, -0.04928589, -0.031066895, -0.0116119385, 0.015525818, -0.010002136, -0.011962891, 0.016525269, -0.00983429, 0.030807495, 0.061676025, -0.0033779144, -0.012832642, -0.009307861, 0.020889282, -0.046875, 0.0030326843, -0.017166138, 0.014205933, -0.0013027191, -0.0012702942, -0.013938904, -0.06915283, 0.043914795, 0.014907837, 0.036346436, -0.04815674, 0.07110596, 0.011207581, 0.0013217926, 0.06402588, 0.035339355, 0.05606079, -0.05117798, -0.026977539, -0.035217285, -0.0027942657, -0.010688782, 0.032562256, -0.009529114, 0.00944519, 0.031585693, 0.01651001, -0.0107040405, 0.04547119, -0.014198303, 0.024978638, -0.007850647, 0.007160187, 0.0048942566, 0.050964355, -0.0048599243, -0.04714966, -0.017623901, -0.010627747, -0.014190674, -0.03302002, -0.032165527, 0.008277893, 0.013336182, 0.013389587, 0.016326904, 0.0026073456, -0.0038795471, -0.027923584, 0.031555176, -0.022903442, -0.005317688, 0.0064315796, -0.029830933, -0.04119873, -0.04046631, -0.08227539, -0.017959595, -0.016204834, -0.04864502, 0.0010948181, 0.016021729, 0.0026741028, -0.0053901672, -0.0062713623, 0.002532959, 0.019317627, 0.026062012, 0.019104004, -0.041046143, -0.02999878, -0.030822754, -0.03970337, 0.041259766, -0.029159546, -0.03869629, -0.0031089783, -0.023208618, -0.001991272, 0.008728027, 0.017074585, 0.027130127, 0.02079773, 0.053588867, 0.027648926, 0.029190063, -0.031036377, 0.004299164, 0.0049858093, -0.016677856, -0.01725769, 0.029434204, -0.00047421455, -0.0017309189, -0.00573349, -0.06903076, -0.013450623, -0.04763794, 0.023345947, 0.015975952, -0.023101807, -0.01360321, -0.022232056, -0.014442444, -0.029129028, 0.0018386841, 0.04083252, -0.01689148, 0.018722534, -0.027023315, 0.026290894, -0.0008354187, -0.016174316, 0.038909912, -0.01763916, 0.053222656, -0.030319214, -0.003419876, -0.044525146, 0.026748657, 0.03189087, -0.008033752, 0.016174316, 0.0028686523, -0.0030021667, -0.002538681, 0.022842407, -0.004016876, -0.024246216, 0.007019043, 0.02281189, -0.0670166, 0.023788452, 0.0068626404, -0.0027923584, 0.04776001, -0.07104492, 0.037475586, 0.0068206787, -0.041503906, 0.028167725, -0.005027771, -0.03048706, 0.0037021637, -0.017990112, -0.023834229, -0.05960083, -0.0015916824, 0.025604248, 0.0463562, 0.023010254, 0.035217285, 0.026733398, 0.0045776367, 0.022415161, -0.007461548, -0.0034637451, -0.017837524, -0.024658203, 0.05090332, -0.034057617, 0.003522873, -0.033935547, 0.03036499, -0.0014915466, -0.021591187, 0.02758789, -0.008979797, 0.031982422, 0.043182373, -0.005554199, 0.030319214, -0.020339966, -0.022460938, 0.011230469, -0.051116943, -0.016296387, -0.024978638, -0.017944336, -0.066711426, 0.09490967, 0.078552246, -0.022659302, 0.07659912, 0.07006836, 0.0033569336, 0.044647217, 0.03967285, -0.008468628, 0.014579773, 0.044525146, -0.018081665, 0.013534546, 0.011070251, 0.0001578331, 0.03753662, -0.002483368, -0.05734253, 0.017593384, -0.026611328, -0.06689453, 0.015129089, 0.016067505, -0.016036987, 0.008460999, -0.00083208084, 0.0028629303, -0.031829834, -0.021499634, 0.03286743, 0.024429321, -0.011657715, -1.6748905e-05, 0.009170532, 0.019561768, -0.020492554, -0.008110046, 0.008476257, 0.027160645, 0.0056877136, 0.011054993, 0.008880615, 0.009819031, -0.020584106, 0.024902344, -0.025421143, 0.0010929108, 0.013000488, 0.028518677, -0.013427734, -0.0146484375, 0.024124146, -0.021728516, -0.044189453, -0.037261963, -0.01687622, 0.004714966, 0.0040130615, 0.030715942, -0.0015277863, 0.037017822, 0.014457703, -0.076171875, -0.0027675629, -0.02923584, -0.05053711, -0.021652222, -0.019073486, -0.0026226044, -0.05618286, -0.031799316, -0.009262085, -0.031204224, -0.023147583, 0.035858154, 0.0016422272, -0.06890869, -0.033172607, 0.03543091, -0.03677368, 0.0009899139, 0.0044784546, 0.018066406, 0.037872314, 0.019882202, -0.0021400452, -0.028625488, -0.022598267, -0.009170532, 0.007949829, -0.02519226, 0.003665924, -0.006576538, -0.011985779, -0.0013427734, 0.0340271, 0.06329346, -0.046539307, -0.0017356873, -0.027038574, -0.030517578, -0.04901123, -0.008903503, 0.03427124, -0.0069847107, -0.032348633, -0.02709961, 0.028320312, -0.015625, -0.001455307, -0.06311035, 0.009300232, 0.018234253, 0.010597229, 0.006679535, -0.010444641, 0.016113281, -0.012214661, 0.012535095, 0.004032135, -0.021759033, 0.030853271, 0.025283813, 0.021347046, -0.022506714, -0.049346924, -0.027008057, 0.04675293, 0.05822754, -0.001750946, -0.018112183, -0.02619934, 0.013221741, -0.053710938, 0.074401855, 0.06542969, -0.005176544, -0.0011386871, -0.00030493736, -0.014137268, -0.05480957, -0.0061912537, -0.025009155, -0.039520264, -0.022567749, -0.027374268, -0.013290405, -0.017684937, -0.00945282, -0.021209717, -0.01852417, 0.0129776, -0.0016965866, 0.008255005, -0.0070877075, 0.024856567, 0.029464722, 0.0013828278, 0.031234741, 0.0005507469, -0.013168335, 0.010566711, -0.038360596, -0.018081665, -0.017852783, 0.00096845627, -0.04208374, 0.008361816, -0.0020389557, -0.042266846, -0.0027656555, 0.05517578, -0.036010742, -0.016448975, 0.02659607, 0.047302246, -0.004219055, -0.038116455, 0.07537842, -0.011680603, -0.014312744, 0.017410278, -0.029083252, 0.016082764, 0.029052734, -0.044067383, 0.061676025, 0.013969421, -0.054992676, 0.009963989, -0.0011501312, -0.0146484375, -0.024307251, 0.02607727, -0.003829956, -0.03756714, -0.02619934, -0.003856659, -0.009437561, 0.05392456, -0.03390503, -0.002035141, 0.04119873, 0.010253906, -0.011795044, 0.026977539, 0.023803711, -0.019088745, -0.0033226013, 0.038482666, -0.00097227097, -0.01448822, 0.036590576, -0.022613525, -0.012023926, 0.0069618225, -0.024490356, -0.03074646, 0.021713257, 0.01361084, 0.0010700226, 0.0041618347, -0.025299072, -0.035339355, -0.019561768, -0.023635864, -0.012924194, -0.023254395, 0.04824829, -0.022842407, -0.0043792725, -0.01776123, -0.023117065, -0.025253296, 0.0037384033, -0.010597229, 0.03451538, -0.007987976, 0.035705566, 0.023925781, -0.04864502, -0.0066223145, 0.03817749, -0.016799927, 0.034606934, 0.0149002075, 0.0345459, -0.014549255, -0.039886475, 0.07092285, -0.04525757, -0.040924072, -0.067993164, 0.056427002, 0.0011310577, 0.022384644, 0.052612305, -0.012237549, 0.013320923, 0.03515625, -0.0020656586, -0.03173828, 0.0025482178, 0.016326904, -0.064208984, -0.011192322, -0.039520264, -0.0012779236, 0.014251709, 0.014587402, -0.030349731, 0.032226562, -0.029708862, -0.01864624, -0.04244995, -0.0013360977, -0.01789856, -0.03878784, 0.0065078735, -0.014549255, -0.0025730133, -0.031433105, -0.016220093, -0.08282471, -0.022598267, 0.0541687, 0.037719727, 0.040740967, -0.047302246, 0.025604248, 0.0289917, -0.013023376, 0.09753418, 0.0012397766, -0.011619568, -0.034362793, -0.00856781, 0.033447266, -0.009880066, -0.00020480156, 0.016067505, 0.024353027, 0.015159607, 0.044433594, -0.050933838, 0.011741638, -0.02671814, 0.03062439, 0.0038642883, 0.009712219, 0.020568848, 0.046417236, 0.03982544, -0.011360168, -0.012336731, 0.018600464, -0.010612488, -0.0028495789, -0.020462036, 0.028808594, 0.030593872, 0.016159058, 0.014472961, 0.020935059, 0.038848877, -0.040985107, -0.006111145, 0.0023841858, -0.032989502, 0.0058631897, -0.008644104, -0.010025024, -0.007949829, -0.008972168, -0.0046310425, -0.06604004, -0.0062942505, 0.024795532, 0.038604736, 0.030914307, -0.005004883, -0.024795532, -0.0004594326, -0.0014343262, -0.024246216, 0.007621765, 0.0143966675, -0.0013122559, 0.0042915344, -0.056152344, -0.018432617, -0.020019531, 0.01965332, -0.015342712, 0.07751465, -0.01651001, 0.005542755, -0.015975952, 0.013389587, -0.024414062, -0.0012054443, 0.003458023, 0.026245117, 0.003753662, -0.014328003, -0.017211914, -0.012161255, 0.05831909, -0.047607422, -0.023330688, -0.0078048706, 0.02760315, -0.043914795, 0.03955078, -0.023345947, -0.02330017, 0.044525146, 0.013626099, -0.017440796, -0.021224976, 0.0050621033, -0.04437256, 0.015563965, -0.06903076, 0.031463623, 0.017410278, 0.041778564, 0.027618408, 0.070373535, 0.015205383, -0.00015175343, -0.025009155, 0.038879395, 0.009788513, 0.026275635, 0.008346558, 0.07244873, 0.0074806213, 0.045776367, 0.076416016, 0.0025959015, 0.05215454, 0.021591187, 0.00073337555, -0.022537231, 0.033996582, -0.02053833, -0.011428833, 0.020401001, 0.002067566, 0.020523071, 0.018310547, 0.00079250336, -0.0011968613, 0.0039367676, -0.025772095, 0.016540527, -0.0023555756, -0.01902771, 0.0014247894, -0.028945923, -0.0019874573, 0.010826111, -0.01626587, -0.029769897, 0.004425049, -0.021942139, 0.008033752, 0.019195557, -0.026397705, -0.03466797, -0.0045700073, 0.021224976, -0.03164673, 0.014884949, -0.005077362, 0.035949707, 0.0053901672, 0.05807495, -0.016662598, -0.064697266, -0.03756714, 0.026748657, -0.042541504, -0.024398804, 0.019058228, -0.010795593, 0.02305603, 0.01977539, 0.042907715, 0.093444824, 0.03024292, 0.009063721, 0.0037727356, 0.009353638, -0.049102783, 0.033111572, 0.025604248, -0.04812622, 0.04940796, 0.04953003, 0.013343811, 0.07684326, 0.046905518, -0.00060367584, -0.011451721, -0.038604736, -0.07946777, 0.032440186, -0.016967773, -0.019683838, 0.019744873, -0.019241333, -0.045043945, 0.01499939, 0.039367676, 0.056732178, 0.036468506, 0.028045654, -0.000910759, -0.028182983, -0.057556152, -0.02116394, -0.009902954, 0.028320312, 0.021347046, -0.059143066, 0.014480591, 0.014549255, -0.03540039, 0.028213501, 0.041381836, 0.009300232, -0.0053520203, -0.02178955, 0.030532837, -0.0073547363, -0.020874023, 0.006416321, -0.021881104, -0.011581421, 0.014862061, 0.058166504, -0.04107666, 0.0027809143, -0.0014190674, -0.00091028214, 0.033233643, -0.0013217926, 0.000102341175, -0.039215088, 0.0066375732, 0.041931152, 0.0038776398, 0.010612488, -0.017089844, -0.032165527, -0.019714355, 0.019683838, 0.03805542, 0.0034065247, -0.051330566, 0.04525757, 0.016921997, 0.035369873, -0.025726318, -0.035461426, -0.061767578, 0.034118652, 0.00023186207, 0.010688782, 0.029647827, 0.022201538, 0.020111084, -0.014320374, -0.0040397644, 0.0045318604, -0.00819397, 0.0012273788, -0.03475952, 0.014785767]}, "B07JPZXW51": {"id": "B07JPZXW51", "original": "Brand: TECHOST\nName: WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required\nDescription: \nFeatures: \n", "metadata": {"Name": "WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required", "Brand": "TECHOST", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.045318604, -0.027023315, 0.018005371, 0.02508545, -0.0552063, 0.011276245, -0.0020008087, -0.013168335, -0.00793457, 0.02947998, 0.021728516, 0.028640747, -0.00058317184, -0.034576416, 0.0002834797, 0.0023269653, 0.013893127, 0.021774292, 0.0152282715, -0.011070251, -0.006603241, 7.8976154e-05, 0.002374649, -0.014884949, 0.00605011, 0.07507324, 0.028289795, -0.0068206787, -0.0028514862, -0.022445679, 0.01739502, -0.023406982, 0.03164673, 0.057647705, -0.10095215, 0.007385254, -0.0071411133, 0.020309448, -0.03579712, 0.029174805, -0.0008459091, 0.022521973, 0.062805176, -0.0042152405, -0.006336212, 0.001449585, 0.0076789856, -0.0016698837, 0.029510498, 0.029815674, 0.004196167, 0.036346436, -0.012664795, 0.025848389, -0.0019893646, -0.015457153, 0.018035889, 0.016952515, 0.026000977, -0.05114746, -0.048065186, 0.0066871643, 0.040863037, 0.011749268, -0.007736206, 0.029632568, 0.04031372, 0.003479004, 0.0033054352, -0.031204224, -0.023757935, -0.0020961761, 0.0025348663, 0.0041046143, -0.05895996, -0.013687134, 0.018936157, -0.02015686, 0.021697998, -0.0017137527, 0.017211914, -0.022842407, 0.10809326, -0.022644043, -0.014808655, -0.04284668, -0.013435364, 0.010482788, -0.052490234, -0.04714966, -0.014305115, -0.05041504, -0.09161377, 0.0158844, 0.023651123, -0.03225708, -0.054901123, -0.014030457, 0.007858276, 0.006214142, -0.02507019, 0.004348755, -0.061828613, -0.017730713, -0.007381439, 0.059509277, -0.009902954, -0.0143966675, 0.010574341, -0.0021305084, 0.020141602, -0.011512756, -0.03112793, -0.031982422, -0.026367188, 0.05935669, -0.021636963, -0.010231018, 0.00063610077, 0.013267517, -0.048950195, -0.022079468, 0.06304932, -0.046783447, 0.035491943, 0.012313843, -0.025360107, -0.010398865, -0.006965637, -0.0032691956, 0.004989624, 0.023834229, -0.00070142746, 0.027114868, -0.020141602, 0.018096924, 0.04611206, 0.028884888, 0.026504517, -0.008399963, 0.053649902, -0.040924072, -0.04046631, 0.06689453, 0.02368164, 0.02130127, 0.042755127, -0.006793976, -0.00223732, -0.028533936, -0.016113281, 0.051605225, 0.038726807, -0.00040006638, -0.002111435, -0.004501343, 0.0071983337, -0.011451721, -0.010864258, -0.0184021, 0.018737793, -0.020233154, -0.022003174, 0.068603516, 0.0075187683, 0.04159546, 0.03451538, 0.003686905, 0.0146865845, 0.016708374, 0.00623703, -0.0049057007, 0.02305603, 0.009109497, -0.019607544, -0.0031528473, -0.0013208389, 0.076660156, 0.021575928, -0.09387207, -0.041900635, -0.061798096, 0.08947754, -0.01134491, -0.041381836, 0.018371582, 0.013076782, 0.052581787, 0.0021209717, 0.009170532, 0.039855957, 0.020843506, -0.016647339, -0.015548706, -0.019439697, -0.0042037964, -0.015655518, 0.0047683716, -0.026275635, 0.017547607, -0.048858643, -0.008522034, 0.012969971, 0.02357483, 0.0067100525, -0.017242432, -0.002155304, 0.02609253, 0.016326904, 0.021072388, -0.013999939, -0.01322937, 0.037109375, -0.10668945, -0.02305603, 0.037200928, -0.033111572, -0.0071144104, 0.009101868, -0.039886475, 0.029571533, 0.010902405, 0.034729004, 0.024307251, 0.0014810562, 0.014549255, -0.017456055, 0.011634827, 0.010299683, 0.009559631, 0.046844482, -0.0015583038, 0.024490356, 0.022659302, -0.0064926147, 0.015151978, 0.054534912, -0.019500732, 0.005634308, 0.0206604, 0.018112183, -0.04156494, -0.016448975, 0.022949219, -0.0041656494, -0.038360596, -0.00390625, 0.01184082, -0.032989502, 0.017684937, 0.026382446, 0.019195557, -0.004760742, 0.025543213, -0.03668213, 0.019699097, -0.02406311, -0.013717651, -0.016326904, 0.029129028, -0.005554199, 0.022613525, 0.034362793, 0.00049972534, 0.009651184, -0.012275696, 0.04534912, 0.037750244, 0.015777588, -0.042999268, 0.0031547546, 0.04031372, 0.0017547607, 0.046875, 0.022857666, 0.0680542, -0.033813477, -0.017562866, 0.03918457, 0.04421997, 0.015655518, -0.015045166, 0.02406311, -0.0015125275, 0.04498291, -0.019714355, 0.02116394, 0.017150879, -0.0042648315, 0.05291748, 0.046905518, 0.016555786, -0.021453857, 0.027496338, -0.017288208, 0.008911133, 0.0044517517, -0.018554688, 0.033935547, -0.043640137, -0.031585693, 0.033813477, -0.037384033, 0.011581421, -0.011489868, -0.0034236908, -0.032836914, 0.01751709, -0.0005106926, -0.039978027, -0.044769287, -0.04373169, -0.008857727, -0.02519226, -0.028518677, -0.03225708, -0.033447266, -0.035339355, -0.046142578, 0.010192871, 0.08129883, 0.022399902, 0.0062332153, 0.0071754456, 0.0076828003, -0.0619812, 0.0061569214, -0.025268555, -0.050598145, -0.014556885, 0.010681152, -0.024780273, -0.009208679, 0.053253174, 0.01914978, 0.022018433, 0.01637268, 0.0039634705, 0.017562866, 0.010932922, 0.054229736, 0.037384033, 0.0072364807, 0.007911682, -0.07928467, 0.018539429, 0.05618286, 0.009735107, 0.011955261, -0.010299683, 0.015853882, -0.025726318, -0.008644104, -0.018157959, 0.018997192, 0.005935669, -0.014945984, -0.021728516, 0.017684937, -0.05810547, -0.026168823, 0.010810852, -0.02798462, -0.0040016174, -0.0075569153, -0.01184845, -0.007007599, 0.017837524, 0.011734009, 0.014930725, -0.016448975, 0.017974854, -0.07208252, -0.015579224, 0.012367249, 0.03074646, -0.016586304, -0.049743652, 0.004699707, -0.019378662, -0.015258789, -0.020599365, 0.046905518, 0.014099121, 0.011238098, -0.0051345825, 0.03692627, 0.03201294, 0.042022705, -0.0066871643, 0.0473938, 0.03540039, -0.02519226, -0.005630493, 0.033691406, -0.019943237, -0.008224487, 0.052520752, -0.1159668, 0.0041275024, 0.008880615, -0.017929077, -0.024673462, -0.01828003, -0.0036087036, -0.06707764, -0.0059928894, -0.038024902, 0.025009155, 0.034942627, -0.0104522705, -0.025817871, 0.0075950623, -0.039367676, -0.009552002, 0.025360107, 0.021331787, -0.011978149, 0.01864624, 0.000108361244, 0.011962891, -0.025360107, -0.011741638, 0.0009841919, -0.008277893, -0.0039367676, 0.020248413, -0.0067596436, 0.027923584, 0.049438477, 0.02168274, -0.0031261444, 0.0067863464, -0.010658264, -0.029953003, -0.0076026917, -0.006454468, -0.010887146, 0.018692017, -0.0385437, -0.04031372, -0.011932373, 0.03189087, 0.03640747, 0.02508545, -0.0039787292, -0.02583313, -0.03363037, -0.01259613, -0.073791504, 0.019454956, -0.014442444, 0.0066986084, 0.018661499, 0.007247925, 0.12231445, -0.021484375, 0.022888184, -0.00020742416, -0.02960205, -0.0032310486, -0.0128479, -0.032958984, -0.015533447, 0.013221741, -0.030456543, 0.051116943, 0.0042152405, 0.008346558, -0.0079422, 0.0017414093, -0.012069702, -0.016906738, -0.04449463, 0.036712646, -0.010482788, 0.011054993, -0.048858643, 0.055358887, -0.004383087, 0.04159546, -0.009231567, -0.056640625, 0.050750732, 0.010871887, 0.0012149811, -0.045837402, -0.009223938, -0.010231018, -0.03363037, -0.018463135, -0.046203613, 0.012229919, -0.029464722, -0.03149414, 0.0055160522, 0.009101868, -0.015403748, -0.020736694, -0.021240234, -0.01902771, -0.009407043, 0.0051841736, 0.022003174, -0.044921875, 0.02935791, 0.029922485, -0.004169464, 0.018829346, -0.05630493, -0.004699707, -0.042388916, -0.010948181, 0.027069092, -0.026855469, 0.010726929, 0.01436615, -0.028076172, -0.010147095, 0.005466461, 0.010620117, 0.013473511, -0.031311035, 0.03173828, 0.023071289, 0.013000488, -0.06726074, 0.0068855286, -0.010643005, -0.009498596, 0.030197144, 0.014198303, 0.0035686493, -0.0024909973, -0.013206482, 0.004508972, -0.011703491, 0.059387207, -0.04067993, -0.10455322, -0.01260376, 0.033111572, 0.046417236, -0.07232666, -0.004425049, -0.03100586, -0.016815186, 0.006713867, -0.050964355, -0.0034122467, -0.0032482147, 0.008972168, -0.037506104, -0.015686035, -0.033081055, 0.0015230179, -0.038330078, 0.019241333, -0.008865356, -0.034332275, 0.022598267, -8.416176e-05, -0.022628784, -0.011787415, -0.02368164, -0.0041885376, 0.008430481, -0.03363037, -0.0016746521, -0.020248413, -0.0030593872, -0.02519226, 0.011039734, 0.015464783, -0.025756836, 0.0038909912, 0.008399963, 0.034118652, 0.016586304, 0.03692627, 0.027877808, 0.020492554, -0.046691895, 0.045288086, -0.04257202, -0.004585266, 0.052490234, -0.030975342, -0.031188965, -0.04550171, 0.020690918, 0.003080368, 0.025924683, 0.00869751, -0.023666382, 0.02633667, -0.030853271, -0.099243164, -0.033233643, -0.026184082, 0.022521973, 0.039398193, 0.017852783, 0.017318726, -0.038391113, 0.07080078, 0.015098572, 0.066833496, -0.0037727356, -0.011978149, -0.01626587, 0.008666992, -0.02178955, 0.020065308, -0.029876709, -0.018157959, -0.06665039, 0.07147217, 0.05441284, 0.005645752, 0.008872986, 0.00010830164, -0.00409317, -0.03930664, 0.021133423, 0.005744934, 0.0024986267, 0.021133423, -0.023025513, -0.03515625, -0.025634766, -0.03616333, 0.025985718, -0.010643005, 0.04534912, 0.01576233, -0.0064315796, -0.0025901794, -0.06628418, -0.010932922, 0.01436615, 0.0028324127, -0.023101807, -0.0037193298, 0.032714844, 0.0058250427, 0.019607544, 0.020736694, 0.00051116943, -0.019012451, 0.016098022, 0.012680054, -0.06390381, 0.02357483, 0.039520264, 0.00315094, -0.00289917, 0.040863037, 0.015716553, -0.03552246, -0.022354126, 0.030075073, 0.03744507, -0.05178833, 0.027648926, 0.0015611649, -0.010276794, 0.027404785, -0.026809692, 0.025512695, -0.008605957, -0.03237915, -0.0078048706, -0.021942139, 0.005180359, -0.03289795, 0.031311035, 0.0028972626, 0.0075187683, -0.060699463, 0.012321472, 0.0690918, -0.016418457, 0.027511597, -0.035736084, 0.05758667, -0.019332886, -0.032287598, 0.0158844, 0.03353882, -0.008293152, 0.02558899, 0.011184692, 0.009674072, -0.031051636, 0.002450943, -0.050476074, 0.023330688, 0.045288086, -0.0014600754, -0.029785156, 0.019012451, -0.021652222, -0.010444641, 0.0010986328, 0.032196045, 0.005130768, -0.0022411346, 0.0184021, 0.008636475, 0.014251709, 0.00029039383, -0.0423584, -0.0051193237, -0.0024681091, -0.0256958, -0.049468994, -0.0047836304, -0.03729248, 0.01777649, -0.015350342, -0.024276733, -0.008834839, 0.030029297, 0.00919342, 0.009788513, -0.04598999, 0.028244019, -0.025497437, -0.01838684, -0.018951416, -0.0010843277, -0.0155181885, -0.022567749, -0.008888245, 0.0029468536, -0.015777588, 0.00075531006, -0.03842163, 0.051452637, 0.047027588, -0.0099487305, 0.016647339, 0.016555786, -0.023971558, 0.041534424, 0.023529053, -0.033416748, -0.07928467, -0.02494812, -0.03933716, -0.011787415, 0.022415161, 0.014968872, 0.018463135, -0.018630981, -0.022125244, 0.0055351257, 0.027297974, -0.0062065125, -0.041259766, -0.008171082, -0.0149383545, 0.035705566, -0.0061912537, 0.055999756, -0.06976318, -0.062927246, 0.011459351, 0.028167725, -0.009101868, 0.023452759, 0.019210815, 0.06323242, -0.07714844, 0.010620117, -0.0056762695, -0.023956299, 0.02230835, 0.05645752, 0.019348145, 0.024627686, -0.03540039, -0.037384033, -0.04675293, 0.014129639, -0.009010315, 0.079711914, -0.03842163, 0.02859497, 0.009086609, 0.026992798, 0.041137695, 0.03793335, 0.049926758, -0.007171631, -0.06939697, 0.034332275, 0.06542969, -0.040802002, -0.022491455, -0.012619019, -0.0637207, 0.0014181137, -0.048980713, 0.0009469986, -0.033599854, 0.03765869, -0.054779053, 0.064208984, -0.0063972473, 0.051361084, 0.029052734, -0.009941101, -0.07836914, -0.009239197, 0.016983032, -0.0024967194, -0.020507812, 0.012901306, 0.012207031, 0.020507812, 0.032318115, 0.021728516, 0.0038070679, 0.006641388, 0.012329102, -0.019058228, -0.023468018, -0.021606445, 0.02279663, -0.0065689087, 0.016708374, 0.024932861, 0.0041122437, 0.013000488, 0.05810547, -0.0058288574, 0.015014648, 0.030395508, -0.04714966, -0.013076782, -0.0079956055, -0.027816772, 0.027801514, 0.062347412, -0.001496315, -0.026031494, -0.058563232, 0.038208008, 0.033294678, 0.027008057, 0.080078125, -0.07305908, 0.0070877075, -0.038146973, 0.042663574, -0.030395508, -0.014877319, 0.010406494, -0.030166626, 0.013916016, 0.004966736, 0.023086548, -0.004196167, -0.020431519, -0.025680542, -0.018325806, -0.0085372925, -0.02166748, 0.024276733, -0.0036582947, -0.028060913, -0.070373535, -0.026138306, -0.013786316, 0.011260986, -0.016693115, -0.028625488, 0.09295654, 0.048187256, 0.0005493164, 0.01713562, -0.06317139, -0.0076828003, 0.022262573, 0.009468079, 0.029327393, 0.027954102, 0.010498047, -0.034606934, -0.02015686, 0.012199402, -0.021026611, 0.024780273, 0.021362305, 0.053344727, -0.0057525635, -0.040161133, 0.0077438354, -0.0023784637, -0.059265137, 0.07824707, -0.035491943, -0.049346924, -0.014823914, -0.031829834, -0.007019043, -0.043121338, -0.048797607, 0.056488037, -0.023849487, -0.0028076172, 0.0035190582, -0.014259338, -0.00037956238, -0.01474762, 0.027420044, 0.030395508, 0.04534912, -0.03704834, 0.009437561, -0.04714966, -0.007827759, 0.0005955696, 0.03845215, -0.08392334, -0.058288574, -0.010650635, 0.015182495, 0.0057296753, -0.027252197, -0.043395996, 0.045684814, -0.00028443336, -0.020706177, 0.02204895, 0.0031661987, -0.0069351196, -0.017440796, 0.00029230118, -0.009391785, -0.020904541, -0.007221222, 0.010932922, -0.013076782, 0.025680542, 0.007537842, -0.039520264, 0.030075073, 0.009506226, -0.025909424, 0.008262634, -0.039520264, 0.022445679, -0.021987915, -0.07019043, 0.020065308, -0.0052452087, 0.09429932, 0.00021791458, 0.016937256, 0.035949707, 0.008964539, -0.04324341, 0.003376007, -0.022613525, -0.011146545, -0.0063476562, -0.042144775, -0.0022182465, 0.010284424, 0.0012359619, -0.020553589, 0.029144287, 0.018051147, -0.034240723, -0.010986328, 0.015357971, -0.04309082, 0.015449524, 0.009178162, -0.018432617, -0.029785156, 0.010681152, 0.06060791, -0.032470703, 0.0014219284, -0.0073776245, 0.005176544, 0.03378296, -0.015136719, -0.012535095, -0.021865845, 0.0670166, 0.029449463, 0.022567749, -0.03111267, 0.047454834, -0.011650085, -0.027633667, 0.020996094, 0.0209198, 0.028930664, -0.02470398, -0.0040130615, 0.012161255, 0.024169922, -0.0040130615, -0.07318115, -0.040863037, 0.04244995, 0.046051025, -0.047088623, 0.09161377, -0.061645508, -0.006690979, 0.004699707, -0.041381836, -0.07574463, 0.014877319, -0.004699707, 0.0023269653, 0.03152466]}, "B00WLYOAB8": {"id": "B00WLYOAB8", "original": "Brand: onlyfire\nName: Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black\nDescription: Specifications:\u00a0
      Onlyfire 14451 Electric Push Button Igniter
      One \"AA\" Battery Is Needed. (Battery Not Included)
      4 Male Spade Connector Outlets

      Original Part Numbers: \u00a0 03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

      Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

      Uniflame Part Numbers: 55-07-448;

      Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

      Amana Part Numbers: FCTG3007029;

      Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

      Suitable Models of BBQ gas grills:
      Fits Various gas grill models of\u00a0BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

      Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

      Exact-fit parts !Cooks better! Durable construction and Lasts longer!

      A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

      NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

      Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

      \nFeatures: CSA Certified, Requires 7/8\" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt \"AA\" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001,\nOriginal Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1\nFits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP\nFits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720\nKenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371\n", "metadata": {"Name": "Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black", "Brand": "onlyfire", "Description": "Specifications:\u00a0
      Onlyfire 14451 Electric Push Button Igniter
      One \"AA\" Battery Is Needed. (Battery Not Included)
      4 Male Spade Connector Outlets

      Original Part Numbers: \u00a0 03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

      Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

      Uniflame Part Numbers: 55-07-448;

      Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

      Amana Part Numbers: FCTG3007029;

      Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

      Suitable Models of BBQ gas grills:
      Fits Various gas grill models of\u00a0BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

      Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

      Exact-fit parts !Cooks better! Durable construction and Lasts longer!

      A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

      NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

      Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

      ", "Features": "CSA Certified, Requires 7/8\" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt \"AA\" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001,\nOriginal Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1\nFits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP\nFits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720\nKenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013191223, -0.0048675537, -0.024032593, -0.025909424, -0.0036773682, 0.005886078, -0.02507019, 0.015914917, -0.009292603, 0.023086548, 0.010520935, -0.01878357, 0.030426025, -0.033416748, 0.011711121, -0.016937256, 0.005207062, 0.0062713623, 0.011772156, -0.007686615, 0.03515625, 0.0033817291, -0.02986145, 0.06323242, 0.03439331, -0.022888184, 0.041778564, 0.0016679764, 0.018630981, -0.009689331, 0.04144287, -0.027999878, 0.0413208, 0.0011034012, -0.06274414, -0.003168106, -0.026901245, 0.0101623535, -0.027618408, 0.014282227, 0.03262329, -0.03994751, -0.022644043, 0.036376953, -0.018585205, -0.042510986, 0.038879395, -0.039642334, 0.023971558, -0.009712219, 0.012741089, 0.023544312, 0.02670288, 0.009407043, -0.026977539, 0.019165039, 0.0042495728, -0.049316406, 0.011436462, 0.039794922, 0.03286743, -0.010322571, 0.0030670166, -0.024780273, -0.04309082, -0.014877319, 0.058685303, 0.0054244995, -0.023712158, -0.057434082, 0.03829956, 0.032196045, 0.02659607, -0.037017822, -0.019622803, -0.020614624, 0.024810791, -0.032714844, 0.031341553, -0.03152466, 0.0036907196, -0.048187256, 0.0028133392, -0.007419586, 0.02204895, 0.0076179504, 0.00078344345, -0.015426636, -0.058929443, -0.05078125, -0.036376953, -0.008377075, -0.07922363, 0.011154175, -0.009429932, -0.0032215118, 0.039489746, 0.029022217, 0.011100769, -0.028366089, -0.00012493134, -0.032958984, -0.0236969, 0.0014772415, -0.0043525696, 0.043823242, 0.010169983, 0.034088135, 0.006816864, 8.2850456e-05, -0.001707077, -0.03378296, -0.012741089, -0.029220581, -0.01701355, 0.023422241, -0.01499939, -0.019943237, 0.007347107, -0.0287323, -0.0047683716, -0.0076026917, -0.034118652, 0.040008545, 0.032684326, 0.007091522, -0.025436401, 0.048095703, -0.008453369, 0.00472641, -0.061676025, 0.026428223, 0.0960083, 0.053100586, 0.020507812, -0.018081665, -0.01159668, 0.008460999, 0.039733887, -0.011932373, 0.013175964, -0.020812988, 0.02645874, 0.04043579, 0.038757324, 0.015357971, 0.018539429, 0.03692627, 0.012481689, -0.0146484375, 0.012954712, 0.017959595, 0.032348633, 0.041168213, -0.04095459, 0.026382446, 0.01864624, 0.0093307495, -0.04660034, -0.041107178, -0.010269165, -0.013977051, -0.017593384, 0.002319336, -0.026733398, 0.031097412, 0.026519775, 0.005218506, 0.018600464, 0.038726807, 0.006450653, -0.041168213, 0.02154541, 0.014259338, -0.013305664, 0.012870789, 0.009239197, 0.06097412, 0.031021118, -0.048095703, -0.038604736, -0.04800415, 0.105651855, -0.048736572, -0.042297363, 0.014137268, 0.023651123, 0.055664062, 0.024963379, 0.009140015, 0.059814453, -0.008033752, 0.028869629, -0.010276794, 0.008148193, -0.017623901, 0.0014476776, 0.009140015, -0.017074585, -0.025466919, -0.0181427, 0.021408081, -0.0051231384, -0.0055007935, -0.025619507, -0.011749268, 0.001036644, 0.040252686, 0.021072388, -0.014030457, 0.020858765, 0.015151978, -0.0025196075, -0.066223145, -0.064453125, -0.0041389465, 0.0064964294, 0.02432251, -0.0209198, 0.0209198, 0.009590149, -0.045288086, -0.003698349, 0.002796173, 0.010154724, 0.009841919, -0.020187378, -0.006214142, 0.018585205, 0.019699097, 0.004055023, 0.009101868, 0.0104904175, 0.07299805, -0.0019760132, 0.043121338, 0.04309082, 0.08258057, -0.021408081, -0.054534912, 0.018585205, -0.0657959, -0.04837036, -0.02293396, -0.04244995, -0.0077667236, 0.019577026, -0.024993896, -0.025909424, 0.02607727, -0.0029773712, 0.029846191, 0.022216797, 0.046020508, -0.032348633, 0.03363037, -0.029708862, -0.010192871, -0.024276733, -0.001244545, -0.008369446, -0.024917603, 0.006214142, -0.028167725, 0.050750732, 0.004261017, 0.055236816, 0.039154053, 0.009521484, -0.02835083, -0.015106201, -0.00969696, 0.0043754578, -0.004447937, -0.022109985, -0.00017046928, -0.025238037, 0.012451172, 0.027191162, -0.018463135, -0.019134521, -0.014312744, 0.027389526, -0.014892578, 0.057617188, 0.031585693, 0.0046463013, -0.03756714, -0.04675293, -0.016708374, 0.032165527, -0.022857666, -0.035736084, -0.014060974, -0.02432251, -0.014183044, 0.028717041, 0.0074501038, 0.0037345886, -0.012138367, -0.008026123, 0.042510986, -0.002576828, -0.0072517395, -0.012237549, 0.02508545, -0.018157959, -0.032104492, -0.023269653, -0.064086914, 0.031097412, 0.054016113, 0.03668213, 0.045074463, 0.030059814, -0.013946533, 0.0058555603, 0.060821533, -0.033325195, -0.07086182, -0.025802612, -0.014457703, 0.013031006, -0.022476196, 0.0019454956, -0.003921509, -0.016967773, 0.014175415, -0.045532227, -0.008163452, 0.014480591, -0.030563354, 0.0047798157, 0.053253174, 0.0040016174, 0.0007381439, -0.0045814514, 0.058898926, -0.012435913, -0.013702393, -0.02067566, -0.018203735, -0.007843018, -0.03741455, -0.025268555, -0.031951904, 0.025848389, -0.0047035217, -0.027023315, -0.004585266, 0.03274536, -0.014816284, 0.024597168, -0.008171082, 0.023590088, 0.011650085, -0.03201294, -0.017028809, 0.002620697, -0.06677246, -0.0004506111, -0.019699097, -0.05218506, 0.029953003, 0.061920166, -0.024627686, -0.02331543, 0.011314392, -0.009277344, 0.008422852, 0.005340576, 0.013435364, -0.039367676, -0.020309448, -0.018997192, -0.012367249, 0.01373291, -0.059326172, 0.028884888, 0.0043182373, -0.04498291, 0.018173218, -0.029891968, 0.072631836, -0.012039185, 0.023910522, 0.025619507, 0.021896362, 0.012619019, -0.008399963, -0.00198555, 0.029159546, -0.041503906, -0.032226562, 0.008796692, 0.019622803, 0.0028877258, -0.062683105, 0.013633728, -0.034454346, -0.059570312, -0.0059890747, -0.03213501, -0.008262634, 0.012504578, -0.09918213, 0.00040888786, -0.07098389, 0.019714355, 0.034606934, -0.019699097, 0.00023710728, -0.028411865, -0.011161804, -0.014053345, -0.0023097992, -0.011268616, -0.020004272, -0.042785645, 0.041412354, 0.044067383, -0.03741455, 0.0017566681, 0.018585205, -0.0635376, -0.0390625, 0.010375977, 0.05899048, -0.06982422, 0.029327393, -0.036132812, -0.015823364, -0.009689331, 0.01374054, -0.016143799, 0.029449463, -0.013267517, -0.05834961, 0.030014038, -0.06585693, -0.08496094, -0.031173706, -0.014602661, -0.0074882507, -0.00982666, -0.02142334, -0.004547119, -0.07006836, -0.017837524, -0.028152466, -0.015541077, -0.0013370514, 0.037078857, 0.032562256, 0.0059394836, 0.11138916, 0.018463135, 0.019332886, 0.044158936, -0.012336731, -0.031021118, -0.015701294, 0.017196655, -0.012886047, -0.01751709, -0.029067993, 0.09851074, -0.010414124, -0.014419556, 0.025161743, -0.037628174, 0.0066108704, 0.015304565, -0.020828247, -0.00504303, -0.025283813, 0.012458801, -0.002817154, 0.03265381, -0.018478394, -0.029830933, -0.010696411, 0.012275696, 0.051330566, 0.036895752, -0.02229309, 0.05279541, 0.047851562, -0.002626419, 0.085998535, 0.04006958, 0.017242432, 0.004135132, 0.08508301, -0.026535034, 0.029388428, 0.023269653, -0.015258789, 0.0023460388, -0.021224976, -0.0770874, 0.03237915, -0.02619934, -0.022613525, -0.008239746, 0.022903442, 0.001115799, -0.0068244934, -0.009483337, -0.060302734, 0.0015621185, -0.039001465, 0.0011005402, -0.018371582, -0.018615723, -0.016784668, -0.00856781, -0.0021266937, -0.02041626, 0.0072746277, -0.040405273, 0.0044021606, 0.03062439, 0.062805176, -0.060455322, -0.03274536, 0.033203125, 0.013832092, -0.001077652, 0.038726807, 0.03955078, 0.0059661865, 0.03692627, -0.018997192, -0.030883789, -0.027862549, -0.017364502, 0.04434204, 0.015426636, -0.04989624, 0.008796692, 0.029052734, -0.011062622, -0.027328491, 0.0054397583, -0.039367676, -0.00038933754, -0.040100098, -0.0047912598, -0.07293701, -0.007663727, 0.01259613, 0.05227661, -0.013900757, -0.07128906, 0.0020065308, -0.009140015, 0.0042037964, 0.029037476, 0.029190063, 0.009552002, -0.0079193115, -0.040039062, 0.01687622, -0.011604309, -0.012084961, 0.02557373, -0.032714844, 0.068481445, -0.04171753, 0.009490967, -0.017440796, 0.08203125, -0.045684814, 0.03930664, -0.053527832, -0.030395508, 0.013641357, 0.0044288635, 0.068115234, -0.0069732666, 0.022872925, -0.043029785, 0.032684326, -0.03677368, -0.0015659332, 0.06072998, -0.057128906, -0.026229858, -0.028457642, 0.03225708, 0.009223938, 0.0024719238, -0.0063056946, 0.036468506, -0.018615723, 0.08068848, -0.057403564, -0.040527344, 0.0027217865, -0.028686523, 0.010948181, 0.006477356, -0.006011963, 0.039733887, 0.047027588, 0.0049591064, -0.021331787, -0.05166626, -0.0748291, 0.024536133, 0.061462402, -0.030792236, -0.015464783, -0.054473877, 0.020095825, -0.08935547, 0.070495605, 0.04156494, 0.007396698, -0.011077881, -0.022277832, -0.019744873, -0.050933838, -0.026260376, -0.0095825195, 0.026412964, 0.03567505, -0.020309448, 0.011856079, 0.021438599, -0.0013427734, -0.0049095154, 0.00818634, -0.010749817, -0.047821045, 0.017349243, -0.013427734, 0.027648926, 0.0029296875, 0.0138168335, -0.0035686493, -0.046539307, 0.033935547, 0.046875, 0.015106201, 0.03857422, 0.0053215027, -0.01159668, -0.03491211, -0.004676819, -0.004432678, -0.0026569366, -0.019943237, 0.003665924, -0.051971436, -0.013946533, 0.009994507, 0.042816162, -0.03878784, -0.040802002, 0.0368042, 0.0041542053, -0.03543091, -0.0074386597, 0.024765015, 0.018707275, 0.01802063, -0.0033893585, 0.0037002563, -0.011230469, 0.023803711, -0.007106781, 0.0016765594, -0.009963989, 0.0154800415, 0.036499023, 0.02684021, -0.01737976, -0.03277588, 0.011077881, 0.022537231, 0.0058403015, -0.0058288574, 0.004508972, 0.0435791, -0.016571045, -0.01651001, -0.021606445, -0.02003479, -0.016326904, 0.025436401, -0.036895752, -0.01576233, 0.005771637, -0.0143966675, -0.019882202, 0.020065308, 0.026382446, -0.015296936, 0.039489746, 0.018005371, -0.0647583, -0.03463745, -0.040161133, 0.034179688, 0.0079193115, 0.009902954, -0.0028057098, 0.026992798, 0.0073051453, -0.024505615, -0.01977539, -0.0031375885, -0.0101623535, -0.016952515, -0.009979248, -0.0029067993, -0.029907227, 0.03277588, -0.0032234192, 0.009552002, 0.018951416, -0.008666992, 0.020141602, 0.01436615, -0.02532959, 0.04309082, -0.00422287, 0.0037822723, -0.013839722, -0.06707764, 0.056365967, -0.025115967, -0.037200928, -0.024871826, 0.035705566, 0.0064888, -0.02909851, 0.08709717, 0.009140015, 0.00856781, 0.02368164, -0.0018281937, -0.05380249, -0.051757812, -0.025390625, -0.0152282715, -0.05722046, -0.0519104, 0.013435364, -0.00050735474, 0.005962372, -0.019241333, 0.04043579, 0.0074501038, 0.014717102, -0.046295166, -0.023117065, 0.00062704086, -0.054779053, 0.0043144226, -0.0023269653, 0.019226074, 0.024871826, 0.027755737, -0.076538086, -0.03326416, 0.014198303, -0.0018854141, 0.02116394, -0.0053253174, 0.022781372, 0.0012283325, -0.025421143, 0.040893555, -0.020431519, 0.021072388, 0.010612488, 0.025283813, -0.033843994, 0.053985596, -0.04559326, -0.008232117, -0.07128906, 0.025558472, 0.018249512, 0.066711426, -0.030776978, 0.028167725, 0.008010864, 0.024490356, 0.016098022, 0.044281006, 0.043823242, 0.010520935, -0.007797241, 0.0013551712, 0.062683105, -0.035583496, 0.020904541, 0.0236969, -0.009216309, 0.02809143, -0.022323608, 0.0022850037, 0.03414917, 0.050079346, -0.039733887, 0.017486572, -0.01499939, -0.034454346, 0.015823364, -0.0001924038, 0.026275635, 0.020004272, 0.03717041, 0.024749756, -0.023391724, 0.0034618378, -0.022033691, 0.00035119057, -0.0073776245, 0.045776367, -0.0014791489, 0.023803711, 0.049682617, -0.051849365, -0.0005888939, -0.010437012, 0.009094238, -0.005130768, -0.057525635, -0.00019800663, 0.015571594, -0.017532349, -0.016082764, 0.0064735413, 0.020248413, 0.000854969, -0.013061523, -0.009773254, 0.0001732111, -0.032592773, 0.053100586, -0.015357971, -0.014076233, -0.0025959015, -0.05319214, 0.06124878, 0.012924194, 0.0024433136, 0.06774902, -0.030441284, -0.00072574615, -0.022354126, 0.04046631, -0.007247925, -0.00667572, 0.023529053, 0.005836487, 0.02041626, 0.0803833, 0.04345703, 0.021942139, -0.015533447, -0.0032157898, 0.011123657, -0.030349731, 0.021881104, 0.03213501, -0.020385742, -0.022994995, -0.049987793, -0.03152466, -0.0025081635, -0.0042686462, 0.0011072159, 0.0009551048, 0.018753052, 0.052124023, 0.039733887, 0.05130005, -0.014526367, 0.015434265, 0.02998352, 7.992983e-05, 0.03665161, 0.034454346, 0.010765076, -0.029052734, -0.031585693, -0.017501831, -0.02079773, -0.01550293, 0.059783936, 0.017837524, -0.008964539, -0.013870239, -0.037139893, 0.057373047, -0.023254395, 0.021652222, -0.057159424, 0.024719238, 0.0047454834, 0.053222656, -0.033843994, -0.020324707, -0.020248413, 0.02960205, -0.032409668, -0.03717041, -0.021987915, 0.017227173, 0.018112183, -0.062805176, -0.035827637, 0.01146698, 0.0135269165, -0.012107849, 0.02960205, -0.03451538, -0.07171631, -0.041992188, 0.070617676, -0.11029053, -0.058654785, 0.022415161, 0.0038604736, 0.021408081, 0.008460999, 0.01763916, 0.06732178, 0.017730713, -0.016235352, -0.012130737, -0.024307251, -0.021118164, 0.0012435913, -0.014785767, 0.008071899, -0.012886047, 0.026763916, 0.00459671, 0.021270752, 0.014099121, -0.00040078163, -0.047180176, 0.011558533, 0.002111435, 0.008613586, -0.005657196, -0.017196655, 0.037872314, 0.021514893, -0.027572632, -0.026489258, 0.009109497, 0.0066604614, 0.028457642, 0.0055351257, 0.038604736, -0.0018568039, -0.04309082, -0.047912598, -0.024871826, 0.021438599, 0.014076233, -0.0011348724, 0.015167236, 0.021514893, -0.020706177, 0.0045051575, -0.006259918, -0.009140015, -0.038085938, -0.004234314, -0.02645874, -0.043792725, 0.0052108765, -0.06365967, -0.05230713, 0.022949219, 0.064453125, 0.014511108, -0.018936157, -0.02772522, -0.017532349, -0.004924774, -0.025894165, -0.06378174, -0.004425049, -0.017623901, 0.017044067, 0.0340271, 0.017410278, 0.009841919, -0.0032615662, -0.024475098, -0.008758545, 0.015380859, -0.0077438354, -0.0042266846, -0.029434204, 0.03756714, -0.0003144741, 0.061309814, -0.0050468445, -0.006385803, -0.05026245, 0.037719727, 0.01474762, -0.018707275, 0.050811768, -0.02319336, 0.0054512024, 0.018692017, -0.022399902, -0.04458618, 0.012466431, 0.06317139, 0.010276794, 0.009468079]}, "B09B48Y5JB": {"id": "B09B48Y5JB", "original": "Brand: H0MEpartss\nName: H0MEpartss 200lb / 420lb Propane Tank Lid 16\" Diameter Cover Top Above Ground Black Plastic\nDescription: Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~\"\nFeatures: \u2705 Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid\"\n\u2705 We have only quality products.\n\u2705 High quality- save your time and your money.\n\u2705 Ensure long-lasting and effective performance.\n", "metadata": {"Name": "H0MEpartss 200lb / 420lb Propane Tank Lid 16\" Diameter Cover Top Above Ground Black Plastic", "Brand": "H0MEpartss", "Description": "Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~\"", "Features": "\u2705 Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid\"\n\u2705 We have only quality products.\n\u2705 High quality- save your time and your money.\n\u2705 Ensure long-lasting and effective performance.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013687134, -0.021514893, -0.039367676, -0.07659912, -0.008399963, -0.011833191, -0.03579712, 0.056610107, -0.014259338, -0.009056091, 0.0031089783, 0.008384705, -0.043151855, -0.04498291, 0.021530151, -0.034729004, 0.010864258, -0.0033893585, -0.0043945312, -0.036987305, -0.014434814, -0.02709961, -0.009017944, 0.036865234, 0.043395996, -0.06933594, 0.0040626526, 0.0061950684, -0.006843567, -0.04324341, 0.019500732, 0.05795288, 0.037017822, -0.021865845, 0.010116577, 0.02003479, 0.010482788, -0.023483276, -0.017105103, 0.011978149, -0.013664246, 0.0137786865, 0.061767578, -0.03050232, -0.00024318695, -0.00831604, 0.009223938, -0.046905518, 0.02041626, 0.021057129, -0.003786087, 0.0001257658, -0.005138397, -0.03427124, -0.0069503784, 0.012214661, 0.024337769, -0.006767273, 0.007419586, -0.010551453, -0.0048561096, 0.036071777, 0.022750854, 0.02217102, -0.031585693, 0.042266846, 0.09667969, -0.027420044, 0.026229858, -0.03778076, -0.030700684, 0.040985107, 0.026916504, 0.028656006, -0.0619812, -0.05795288, 0.064208984, 0.0061836243, 0.007457733, 0.0069007874, 0.01335907, -0.01374054, 0.06463623, 0.00447464, -0.006652832, 0.009880066, -0.015327454, -0.025054932, -0.021072388, 0.01852417, -0.023117065, -0.013748169, 0.0101623535, 0.054382324, -0.015304565, 0.025299072, -0.013664246, -0.02809143, 0.0066604614, -0.01499939, -0.0024204254, -0.0231781, 0.01309967, 0.0021572113, 0.0042419434, -0.007091522, -0.012298584, -0.023254395, 0.03161621, 0.027236938, -0.036376953, 0.06677246, 0.00034308434, -0.014877319, -0.01285553, 0.030059814, -0.020599365, 0.017364502, 0.0045433044, 0.021591187, -0.0018587112, -0.012664795, 0.02067566, -0.032806396, 0.042114258, 0.011894226, -0.05911255, 0.023071289, -0.03062439, 0.0070266724, -0.041778564, 0.025650024, 0.052978516, 0.03289795, 0.007843018, -0.008995056, 0.037841797, -0.05770874, -0.012161255, 0.03692627, 0.002210617, -0.030517578, 0.018051147, -0.015670776, -0.031707764, 0.04550171, 0.02670288, -0.027557373, -0.015975952, -0.034973145, -0.0513916, -0.035461426, 0.04574585, 0.023666382, -0.05328369, -0.0116119385, 0.044525146, -0.032348633, -0.03555298, -0.08898926, -0.023361206, -0.017166138, 0.0014972687, 0.0362854, -0.010368347, 0.04437256, 0.029052734, -0.002773285, 0.014930725, -0.016326904, 0.0012321472, -0.03100586, -0.0025997162, 0.022003174, 0.013069153, 0.039794922, -0.009277344, 0.061035156, 0.0602417, -0.08270264, -0.04107666, -0.044036865, 0.11462402, -0.017471313, 0.024887085, -0.067871094, 0.017410278, -0.053100586, -0.005092621, -0.004135132, 0.013450623, 0.03414917, -0.007499695, -0.049346924, 0.012825012, -0.019821167, 0.019622803, 0.0047035217, 0.00687027, -0.0107040405, -0.049102783, 0.003686905, 0.005680084, -0.011917114, 0.016082764, -0.049621582, 0.022018433, 0.011749268, -0.027648926, 0.01727295, 0.0076904297, 0.007446289, 0.008903503, -0.046844482, -0.00052547455, 0.01449585, -0.018203735, -0.014045715, -0.021240234, -0.011428833, -0.004211426, -0.005180359, -0.008811951, 0.040496826, -0.022781372, 0.006374359, -0.01360321, -0.0014743805, -0.00034832954, -0.0040359497, 0.058441162, 0.0021038055, 0.076416016, 0.06439209, -0.0034008026, 0.018493652, 0.03540039, -0.035125732, -0.026107788, 0.018859863, 0.014839172, -0.02645874, 0.009780884, 0.07489014, 0.001821518, 0.0020599365, 0.022659302, 0.03540039, -0.025970459, 0.008605957, 0.07696533, 0.00623703, 0.015602112, 0.060516357, -0.0158844, 0.008216858, -0.01826477, 0.029052734, -0.012893677, 0.01902771, -0.033172607, 0.016113281, 0.037597656, -0.019958496, 0.021072388, -0.027236938, 0.054992676, 0.039001465, 0.015945435, -0.04348755, 0.0017414093, 0.029678345, -0.011421204, -0.005558014, -0.044433594, -0.023895264, -0.033599854, 0.031585693, -0.004058838, -0.037628174, 0.015235901, -0.029205322, -0.032104492, -0.007411957, 0.06500244, -0.017120361, -0.0059509277, 0.025299072, -0.023071289, 0.02633667, 0.04260254, 0.0154418945, 0.035064697, -0.0368042, 0.011550903, -0.00013756752, 0.013687134, -0.10290527, 0.06561279, -0.031158447, 0.008346558, 0.09307861, 0.032714844, 0.009757996, -0.026519775, 0.018676758, -0.025360107, 0.02507019, 0.016555786, -0.018798828, -0.00059843063, 0.023010254, 0.020965576, 0.008781433, 0.02734375, 0.004634857, 0.012748718, 0.035949707, 0.05065918, 0.04333496, 0.010604858, 0.027297974, -0.02204895, -0.009422302, 0.029754639, -0.010520935, -0.030273438, -0.015174866, 0.00015938282, -0.021240234, 0.011390686, -0.037506104, -0.015457153, -0.0015487671, 0.0060157776, 0.004219055, -0.0051651, 0.061431885, -0.002380371, -0.035339355, -0.014549255, -0.020050049, -0.008880615, 0.004463196, -0.024032593, -0.034851074, -0.0038108826, -0.0056381226, 0.0074157715, 0.001496315, 0.009170532, 0.01235199, -0.011985779, -0.0023345947, 0.01576233, 0.0116119385, -0.0082092285, 0.0030345917, 0.030319214, -0.047821045, -0.006668091, -0.046295166, -0.054718018, 0.027999878, 0.07501221, 0.009841919, -0.024032593, -0.0071640015, 0.003566742, 0.048095703, -0.013038635, 0.02784729, -0.058441162, -0.03829956, -0.03289795, 0.0104904175, 0.017791748, -0.050079346, 0.0042495728, 0.0022735596, 0.005344391, 0.035491943, -0.027389526, 0.056488037, -0.024169922, 0.06335449, 0.07757568, 0.005844116, 0.030929565, -0.032562256, 0.039886475, 0.04940796, -0.0041236877, -0.007827759, 0.0039367676, -0.014587402, -0.015113831, 0.032226562, -0.060668945, -0.0013027191, -0.113708496, 0.010154724, -0.016494751, -0.027435303, -0.008041382, 0.03781128, -0.054626465, -0.06604004, -0.0034160614, 0.05343628, -0.01259613, 0.038604736, -0.04031372, 0.06915283, -0.012519836, -0.0068588257, -0.020828247, -0.0063285828, -0.035308838, 0.04486084, 0.052124023, -0.03414917, 0.022781372, 0.05429077, -0.052856445, 0.02229309, 0.014526367, 0.06933594, -0.0070533752, -0.020965576, 0.0037059784, -0.053375244, -0.03479004, -0.04147339, -0.034362793, -0.0034332275, 0.007461548, 0.009986877, 0.01436615, -0.0052948, -0.05722046, -0.007247925, -0.016357422, -0.003314972, -0.022720337, 0.006313324, -0.002817154, -0.046142578, 0.009132385, 0.029418945, -0.00592041, 1.0550022e-05, -0.011779785, 0.001666069, -0.044708252, -0.0005903244, -0.04144287, 0.013824463, -0.021499634, -0.00033903122, -0.012527466, -0.016525269, 0.028335571, -0.03390503, 0.014671326, -0.031280518, 0.013343811, 0.023376465, 0.0071411133, -0.016555786, 0.02015686, 0.022857666, 0.042541504, -0.02407837, 0.0035419464, -0.044403076, 0.019439697, -0.023239136, 0.033355713, -0.020248413, -0.07556152, 0.024459839, -0.050109863, 0.027572632, 0.02406311, -0.020477295, 0.076049805, 0.02355957, 0.01159668, 0.020721436, 0.0107803345, 0.010887146, 0.015930176, 0.055725098, 0.0082473755, -0.02154541, -0.00774765, -0.004421234, 0.019195557, -0.015342712, 0.0067481995, -0.0006465912, -0.024337769, -0.016159058, -0.016784668, 0.024017334, 0.017807007, -0.04638672, 0.004295349, 0.020599365, -0.04937744, -0.045440674, 0.05722046, 0.012413025, -0.0020694733, 0.038848877, -0.01939392, 0.047973633, -0.018875122, -0.020111084, -0.006954193, 0.009231567, 0.009254456, 0.009605408, 0.011192322, 0.0039596558, 0.009307861, 0.042175293, -0.05154419, -0.008903503, 0.020492554, 0.022613525, 0.059265137, 0.005695343, 0.010101318, 0.034942627, -0.0012245178, 0.0049324036, -0.08166504, -0.111450195, 0.0035152435, 0.06335449, 0.018478394, -0.060302734, -0.006134033, 0.009399414, -0.022247314, -0.0015382767, -0.0102005005, -0.010536194, -0.023223877, -0.0037117004, -0.018234253, -0.024093628, -0.030197144, 0.0056610107, -0.010871887, -0.0077934265, -0.004096985, 0.033966064, -0.008102417, 0.020904541, -0.026306152, -0.0024051666, -0.042938232, 0.031463623, -0.04776001, -0.052612305, 0.022338867, -0.043548584, 0.012931824, -0.01084137, 0.071777344, 0.01461792, 0.0015897751, -0.025817871, -0.00969696, 0.015068054, 0.009742737, 0.018722534, -0.015579224, 0.018341064, -0.0028705597, -0.012054443, -0.05532837, -0.01687622, 0.04309082, -0.05441284, -0.04928589, -0.042022705, 0.06591797, 0.014381409, -0.023498535, -0.009117126, 0.036193848, 0.05432129, 0.01701355, -0.0736084, -0.061340332, 0.012054443, -0.022583008, -0.03338623, -0.015792847, -0.035064697, 0.095336914, -0.033325195, -0.006462097, -0.03918457, 0.004020691, -0.015777588, -0.0010528564, 0.015144348, -0.04324341, 0.0234375, -0.039001465, -0.007205963, -0.032287598, 0.01876831, 0.030426025, 0.039123535, 0.03857422, 0.007385254, 0.037200928, -0.01399231, -0.037139893, 0.028839111, 0.022537231, 0.01197052, -0.030334473, 0.018814087, -0.0072784424, -0.013183594, -0.02268982, -0.056640625, -0.033111572, 0.066589355, -0.029327393, -0.04525757, -0.052978516, -0.01197052, 0.0048065186, -0.03564453, -0.042510986, -0.0031852722, 0.02368164, -0.01828003, -0.0010604858, 0.042999268, -0.029052734, 0.022445679, -0.00038909912, 0.022994995, -0.00242424, 0.044189453, -0.018829346, 0.08917236, -0.0155181885, 0.044128418, -0.02079773, -0.0015077591, 0.0044174194, 0.039764404, 0.03475952, -0.0071258545, 0.044830322, 0.002105713, -0.009208679, 0.0034427643, -0.0058021545, 0.028762817, -0.024932861, -0.0021591187, 0.036743164, -0.00033545494, 0.017791748, -0.08380127, 0.052124023, -0.009605408, -0.003452301, -0.08331299, -0.0047035217, -0.03050232, -0.023910522, 0.0262146, -0.030090332, 0.034454346, -0.035217285, -0.01322937, -0.014297485, 0.057800293, -0.019805908, 0.040222168, 0.008308411, 0.03253174, -0.04147339, -0.023498535, -0.014328003, 0.017089844, -0.022872925, -0.02796936, 0.014770508, 0.013244629, -0.0043296814, -0.011016846, -0.007045746, 0.009353638, 0.0054512024, -0.04083252, 0.030670166, 0.01260376, -0.014846802, -0.018356323, -0.046447754, 0.008651733, -0.045959473, -0.012512207, -0.050048828, 0.015205383, 0.007461548, 0.030639648, -0.024993896, 0.0039482117, -0.02659607, -0.015037537, 0.010726929, -0.04095459, -0.072753906, -0.0070648193, 0.021148682, 0.052856445, 0.04336548, 0.010353088, 0.06335449, -0.013931274, -0.029937744, -0.07409668, 0.06640625, -0.010635376, -0.008705139, 0.06304932, 0.048309326, 0.00566864, 0.02859497, -0.004901886, -0.044403076, -0.00018060207, -0.0010271072, -0.029251099, -0.050476074, -0.05178833, -0.009170532, 0.005218506, -0.011642456, 0.011352539, 0.030853271, 0.0045394897, -0.0024719238, 0.018051147, 0.004753113, -0.010482788, -0.004508972, 0.016326904, -0.033416748, -0.007335663, 0.005077362, 0.03945923, -0.022506714, -0.05718994, 0.0129776, 0.0035991669, -0.003835678, 0.018844604, -0.002149582, -0.02519226, -0.001625061, 0.002243042, -0.022964478, -0.0129852295, -0.016677856, 0.044525146, 0.03781128, 0.030059814, -0.013084412, -0.03793335, 0.004802704, -0.009895325, 0.01600647, 0.008956909, -0.008735657, -0.002456665, 0.01499939, 0.019744873, 0.011940002, 0.0005555153, 0.028137207, -0.006385803, -0.02015686, 0.007888794, -0.008705139, -0.027404785, 0.0023384094, -0.057556152, 0.0052871704, -0.0050354004, -0.014945984, 0.025390625, -0.050231934, 0.052703857, 0.020401001, 0.01096344, 0.01751709, -0.0027580261, -0.0013418198, 0.0016431808, 0.021408081, 0.043518066, -0.011512756, -0.0022621155, -0.025756836, 0.016830444, -0.002796173, 0.014442444, -0.00061416626, 0.040161133, -0.029785156, 0.014320374, 0.024795532, -0.04724121, -0.004295349, 0.02178955, 0.008163452, -0.0030899048, -0.005695343, 0.012321472, 0.016082764, 0.016021729, 0.023635864, -0.042785645, 0.029464722, 0.0262146, -0.008712769, 0.023849487, -0.04296875, -0.039001465, 0.051574707, -0.04498291, -0.023880005, 0.0056152344, -0.0725708, 0.052246094, 0.0070495605, 0.032928467, 0.06939697, -0.031677246, 0.007789612, 0.002500534, 0.0067634583, -0.04031372, -0.0028495789, 0.045166016, 0.0007019043, -0.019378662, -0.03933716, 0.020645142, 0.03060913, 0.007972717, -0.028686523, 0.027572632, -0.06665039, 0.047424316, 0.039001465, -0.0178833, -0.022415161, -0.013702393, -0.0050315857, -0.016204834, 0.030181885, 0.010650635, -0.008399963, 0.022781372, 0.030776978, -0.006259918, 0.04550171, 0.00434494, -0.00012421608, -0.01008606, 0.013572693, -0.009094238, -0.0446167, -0.0025424957, -0.029586792, -0.0003285408, 0.014572144, -0.0034103394, -0.008560181, 0.032196045, 0.002450943, -0.002878189, -0.018096924, 0.0020694733, -0.009887695, 0.0041770935, -0.01776123, -0.017669678, -0.008407593, -0.0079956055, 0.01600647, -0.041992188, -0.031555176, -0.045776367, 0.009994507, -0.044525146, -0.010658264, 0.009895325, -0.008415222, -0.005355835, -0.012039185, 0.028198242, 0.016113281, 0.03213501, -0.02671814, 0.0056877136, 0.0028629303, -0.011566162, -0.037017822, 0.009086609, -0.058441162, -0.01234436, -0.009719849, -0.018676758, -0.02192688, -0.020874023, 0.005722046, 0.03778076, 0.036468506, -0.016082764, 0.010566711, -0.061767578, -0.019927979, 0.05960083, 0.00050878525, 0.0071792603, -0.04714966, 0.025634766, -5.3286552e-05, -0.0335083, 0.03564453, -0.027374268, -0.042297363, -0.016296387, -0.0021324158, -0.02078247, 0.0013523102, -0.0056991577, 0.033935547, 0.03363037, -0.0034618378, -0.009300232, -0.007007599, -0.048217773, 0.029449463, -0.006504059, -0.013763428, -0.025619507, -0.043640137, -0.011116028, -0.008354187, 0.024246216, 0.008743286, -0.02671814, -0.0006213188, 0.013938904, -0.021697998, 0.005882263, 0.011871338, -0.013450623, -0.010772705, 0.021835327, -0.012939453, -0.022491455, -5.054474e-05, -0.0055122375, -0.022888184, -0.0395813, 0.028305054, 0.053009033, -0.060913086, -0.07183838, 0.01966858, -0.019836426, -0.039764404, -0.041412354, -0.022247314, -0.070373535, 0.030303955, 0.04269409, -0.007675171, 0.016311646, 0.0059127808, -0.021713257, -0.041900635, 0.02848816, 0.005508423, 0.02986145, -0.018035889, 0.062347412, 0.038238525, 0.0680542, -0.006038666, -0.09259033, -0.024459839, 0.017196655, 0.020111084, -0.017440796, 0.056640625, -0.06573486, 0.0049743652, 0.036499023, 0.0074157715, -0.029754639, 0.023742676, 0.09399414, 0.011314392, 0.015686035]}, "B0783GVCFV": {"id": "B0783GVCFV", "original": "Brand: Weber\nName: Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches\nBoasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D\n529 Square inches of cooking space over three burners\n", "metadata": {"Name": "Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches\nBoasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D\n529 Square inches of cooking space over three burners", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0019683838, -0.004219055, -0.021087646, -0.00944519, -0.012710571, 0.008674622, -0.021057129, 0.001080513, -0.0017366409, 0.041503906, -0.030303955, 0.01789856, 0.022628784, -0.0137786865, 0.0033168793, -0.0031871796, 0.025970459, 0.005832672, 0.015548706, -0.023544312, 0.027450562, -0.013771057, -0.0034942627, 0.074645996, 0.061584473, -0.06317139, 0.052825928, -0.022750854, 0.04888916, -0.004386902, 0.0368042, -0.010650635, 0.044952393, 0.025039673, -0.061798096, -0.016647339, 0.014808655, 0.0021820068, -0.0068473816, 0.006652832, 0.02243042, -0.0032997131, -0.0030555725, 0.0026245117, -0.019088745, -0.051361084, 0.03250122, -0.027755737, 0.0027446747, 0.027770996, -0.011177063, 0.007183075, -0.012237549, 0.03857422, -0.011390686, -0.035095215, 0.031463623, -0.040405273, 0.011665344, 0.0016050339, 0.01159668, 0.021636963, 0.016555786, 0.004798889, -0.011756897, 0.019561768, 0.091552734, -0.026260376, 0.015197754, -0.020492554, 0.014549255, 0.013076782, 0.026046753, 0.009010315, 0.0009160042, -0.035217285, -0.013954163, -0.026412964, 0.040283203, 0.015357971, -0.00434494, 0.01953125, -0.01777649, -0.0064048767, 0.01033783, 0.011062622, -0.035308838, -0.011795044, -0.016082764, -0.037750244, -0.0071983337, -0.018218994, -0.05255127, 0.031280518, 0.0077400208, -0.029769897, -0.019439697, -0.05432129, 0.0491333, 0.0046310425, 0.01675415, -0.028289795, 0.0022468567, 0.007537842, -0.013305664, 0.036865234, -0.011650085, 0.015640259, 0.012710571, 0.020889282, -0.011703491, -0.051116943, -0.008476257, -0.021453857, -0.045440674, 0.03805542, 0.008171082, -0.050201416, 0.008514404, -0.027877808, -0.0309906, -0.013931274, 0.028900146, 0.0146102905, 0.045043945, 0.04711914, 0.003944397, -0.0126953125, -0.035736084, 0.006374359, -0.02708435, 0.031280518, 0.047943115, 0.028961182, -0.013328552, 2.2172928e-05, 0.02658081, -0.009849548, 0.01777649, -0.019180298, 0.017471313, 0.0014457703, 0.011230469, 0.009254456, 0.0395813, 0.02406311, 0.021942139, -0.0064811707, 0.015487671, -0.017120361, 0.009399414, -0.015731812, 0.037017822, 0.0085372925, -0.059448242, -0.005466461, -0.023727417, -0.0055503845, -0.03463745, -0.030822754, -0.07183838, -0.023071289, 0.037475586, -0.030212402, -0.025238037, 0.045440674, 0.013473511, 0.016860962, 0.02204895, 0.045410156, -0.0023269653, -0.027175903, 0.043548584, 0.01965332, -0.017807007, 0.014129639, -0.034240723, 0.024368286, 0.05279541, -0.07080078, -0.06173706, -0.059661865, 0.06842041, -0.018295288, 0.0038414001, -0.009613037, 0.04824829, -0.012252808, -0.015289307, 0.012145996, 0.055541992, 0.04949951, -0.039733887, 0.007156372, 0.026245117, 0.0074501038, -0.06756592, -0.011489868, -0.012252808, -0.0016860962, -0.00223732, 0.0042800903, -0.023925781, -0.001326561, 0.0023860931, -0.042144775, 0.013847351, 0.0039482117, 0.0007009506, 0.018920898, -0.0138168335, -0.024215698, 0.022903442, -0.024993896, -0.0055389404, 0.021743774, -0.010253906, -0.01424408, 0.023452759, -0.0058555603, 0.05078125, 0.04623413, 0.0102005005, 0.0033340454, 0.034973145, -0.002588272, -0.000644207, 0.0054092407, 0.050689697, 0.008262634, 0.0008430481, -0.012954712, 0.07757568, 0.08404541, 0.0073165894, 0.04095459, 0.070739746, 0.04006958, -0.032440186, -0.029769897, 0.004180908, -0.09259033, -0.0574646, -0.0021800995, -0.077941895, -0.006866455, 0.013832092, 0.0067481995, -0.02746582, -0.0010948181, 0.027999878, 0.0012598038, 0.029907227, 0.027648926, -0.036956787, 0.039916992, -0.004699707, -0.020324707, 0.0050239563, 0.042266846, -0.00459671, 0.048980713, 0.0284729, 0.0063972473, 0.047790527, 0.0070381165, 0.051940918, 0.036132812, -0.03540039, -0.005554199, 0.010498047, 0.027053833, 0.0023822784, 0.00970459, -0.03945923, 0.020874023, -0.016799927, 0.013504028, 0.00881958, -0.0034770966, 0.01335144, 0.034484863, 0.017715454, -0.015625, 0.042785645, 0.00894165, -0.005470276, -0.047851562, -0.0062408447, -0.00020813942, 0.036071777, -0.030441284, -0.037994385, 0.00071287155, 0.012298584, -0.03564453, 0.089538574, -0.014129639, 0.002002716, -0.019256592, 0.040893555, 0.026443481, -0.024047852, -0.0135650635, -0.008010864, -0.023010254, 0.002609253, 0.0035037994, -0.007858276, -0.06384277, 0.040405273, 0.044067383, 0.028793335, -0.057647705, 0.067993164, 0.016113281, 0.0105896, 0.037872314, 0.031677246, 0.035217285, -0.028167725, 0.03161621, -0.037139893, -0.031829834, 0.028182983, 0.03253174, -0.060516357, 0.0044059753, -0.053466797, -0.0129776, -0.06347656, -0.08355713, -0.03805542, -0.014892578, -0.02293396, 0.014480591, 0.009384155, 0.016326904, 0.0018205643, -0.027755737, 0.025375366, -0.011199951, -0.024154663, -0.0041770935, -0.03918457, -0.018325806, -0.0011014938, 0.011619568, 0.015029907, -9.173155e-05, 0.0013885498, -0.011375427, -0.011657715, -0.05218506, 0.0040397644, -0.040527344, -0.0127334595, -0.047210693, -0.019134521, -0.06585693, -0.004096985, -0.00062799454, -0.051452637, -0.008003235, 0.061401367, -0.03286743, -0.016921997, -0.026443481, -0.049987793, 0.0028190613, 0.025924683, -0.015808105, -0.03704834, -0.03656006, -0.049804688, 0.019638062, 0.04147339, -0.024353027, 0.00081825256, 0.013076782, -0.008216858, -0.0070114136, -0.008422852, -0.030197144, 0.034942627, 0.02720642, 0.057556152, 0.03945923, 0.034484863, -0.022918701, -0.010856628, 0.018829346, -0.00491333, -0.024673462, 0.016601562, -0.010551453, 0.022109985, 0.019851685, -0.015083313, -0.018753052, -0.08929443, 0.005836487, 0.010543823, -0.04714966, -0.015655518, -0.07122803, -0.064086914, -0.035461426, -0.009429932, 0.04248047, -0.0098724365, -0.024612427, -0.020233154, -0.012580872, 0.019958496, -0.010116577, -0.014312744, -0.012962341, 0.009414673, 0.000849247, 0.012374878, -0.0262146, 0.01461792, 0.029220581, -0.019561768, 0.027770996, -0.026000977, 0.018829346, -0.0015468597, 0.020324707, -0.0064086914, 0.0005469322, -0.02003479, 0.022155762, 0.020965576, 0.060668945, -0.0034484863, -0.0109939575, 0.017318726, -0.030944824, -0.03845215, -0.00844574, 0.028320312, 0.04244995, 0.02558899, -0.014770508, -0.02029419, -0.04812622, 0.010475159, -0.03930664, 0.010627747, -0.0016069412, 0.0078086853, 0.015686035, -0.017486572, 0.07513428, 0.014602661, 0.061950684, -0.0040245056, -0.03390503, -0.019332886, -0.06286621, 0.057800293, 0.009010315, 0.014007568, -0.054138184, 0.08068848, 0.01134491, -0.008163452, 0.034332275, 0.016479492, -0.024383545, -0.0029850006, -0.019851685, -0.002122879, -0.045715332, 0.043762207, 0.006591797, 0.011146545, -0.06347656, -0.013504028, -0.025924683, -0.052581787, 0.08972168, 0.07055664, -0.024261475, 0.06774902, 0.09454346, -0.023513794, 0.054748535, 0.018493652, -0.008110046, 0.003320694, 0.038146973, -0.061584473, 0.034118652, 0.006000519, -0.08319092, -0.0012769699, -0.005115509, -0.0519104, 0.014579773, -0.006702423, -0.028015137, -0.062927246, 0.017852783, 0.009819031, 0.006855011, 0.014266968, -0.06185913, 0.0012550354, -0.038024902, 0.006942749, 0.029296875, -0.03918457, -0.046844482, -0.013053894, 0.00957489, -0.0736084, 0.01146698, 0.019363403, 0.00020444393, 0.005962372, 0.040008545, -0.003025055, 0.010864258, -0.021697998, -0.022094727, -0.018218994, 0.015136719, 0.010688782, -0.00094747543, -0.0206604, -0.026031494, 0.03765869, 0.0096588135, 0.0016946793, -0.022033691, -0.0680542, -0.014564514, -0.012130737, 0.0035324097, 0.012420654, -0.01928711, -0.02142334, -0.048950195, -0.030334473, 0.004447937, -0.050872803, -0.025039673, 0.034484863, 0.039520264, -0.05065918, 0.011306763, -0.008651733, -0.051696777, -0.082458496, 0.03427124, -0.018859863, 0.008224487, 0.012329102, 0.025009155, -0.039276123, -0.01096344, -0.03665161, -0.009155273, 0.04147339, -0.0024261475, 0.05557251, -0.044677734, 0.010864258, -0.025146484, 0.06878662, 0.006565094, 0.032409668, -0.023757935, -0.013969421, -0.013175964, 0.03765869, 0.03338623, 0.016403198, 0.023788452, -0.013114929, -0.02532959, -0.06994629, -0.0005865097, 0.033966064, -0.020874023, -0.0345459, -0.0049819946, 0.066589355, -0.018234253, 0.025894165, 0.0031147003, -0.0035896301, -0.024307251, 0.021057129, -0.05441284, 0.004486084, -0.0064430237, -0.007873535, 0.029403687, 0.0054512024, -0.0018167496, -0.009933472, 0.050994873, 0.004688263, 0.020126343, 0.007434845, 0.013366699, 0.015975952, 0.020187378, -0.056884766, 0.016860962, -0.03643799, -0.005897522, -0.07067871, 0.0859375, 0.013313293, 0.031280518, 0.017288208, 0.012229919, 0.012184143, -0.07727051, -0.022735596, -0.01838684, -0.01008606, -0.016174316, -0.025146484, -0.0074424744, -0.0019245148, -0.0078125, 0.018997192, 0.013809204, 0.04763794, -0.044128418, 0.011077881, 0.009864807, -0.008354187, 0.025146484, -0.0058174133, 0.008026123, -0.016967773, 0.0016126633, 0.010025024, -0.035064697, -0.017547607, -0.009941101, -0.008361816, -0.016281128, 0.0027370453, -0.00060749054, -0.007827759, -0.007575989, -0.0032596588, 0.018295288, -0.024414062, 0.0049476624, 0.023269653, -0.02104187, -0.028121948, 0.044311523, -0.022583008, 0.022079468, 0.026733398, -0.030395508, -0.012069702, 0.01889038, -0.047180176, 0.053009033, -0.0021362305, -0.03427124, 0.02609253, -0.017120361, 0.0016536713, -0.050598145, 0.111816406, -0.011581421, 0.040252686, -0.10241699, 0.015899658, 0.052215576, 0.03643799, -0.0019893646, -0.035705566, 0.0385437, -0.025985718, -0.013183594, 0.0034065247, 0.06427002, -0.041900635, 0.0074157715, 0.015434265, 0.022384644, -0.03869629, 0.011657715, -0.04034424, -0.012031555, 0.052368164, -0.028915405, -0.019546509, 0.0042495728, -0.03527832, -0.046447754, -0.0050811768, 0.020706177, -0.008201599, 0.01966858, 0.010574341, -0.00080919266, 0.030563354, 0.009689331, 0.016082764, 0.008743286, -0.014183044, -0.029663086, -0.03604126, -0.02520752, -0.048980713, 0.05206299, 0.012870789, -0.0060653687, -0.0019388199, 0.012229919, 0.008102417, -0.0015239716, -0.029876709, 0.048339844, -0.023040771, -0.016052246, -0.032043457, -0.053100586, 0.07458496, -0.049987793, -0.06921387, -0.030883789, 0.04949951, -0.036102295, -0.02482605, 0.066345215, 0.019424438, 0.010253906, 0.026184082, -0.0033798218, -0.027709961, 0.0031318665, 0.016220093, -0.059906006, -0.039154053, -0.017623901, -0.0011835098, -0.015853882, 0.012550354, 0.0029258728, 0.03439331, -0.000243783, -0.0069999695, 0.0028438568, 0.02748108, -0.021728516, -0.031433105, 0.0011377335, -0.0007853508, 0.031082153, -0.031021118, 0.013069153, -0.048187256, -0.01876831, 0.02041626, 0.04547119, 0.028869629, -0.008239746, 0.018218994, 0.05493164, -0.05633545, 0.06719971, -0.029724121, 0.009117126, -0.0030002594, 0.050720215, 0.013412476, 0.053344727, -0.047973633, -0.032409668, -0.018051147, 0.022262573, 0.028533936, 0.028793335, -0.012069702, 0.011833191, 0.017929077, 0.010246277, 0.029190063, 0.03366089, 0.046051025, 0.022766113, 0.004589081, -0.0059547424, -0.011764526, -0.02027893, -0.028793335, -0.052337646, -0.020843506, 0.015022278, -0.0017251968, 0.057128906, -0.048797607, 0.03717041, 0.035369873, -0.006881714, 0.017974854, 0.011764526, -0.007484436, 0.032714844, -0.02394104, 0.06378174, 0.027328491, -0.007911682, 0.013214111, 0.012161255, -0.01184082, 0.027923584, -0.0093688965, 0.043395996, -0.031463623, 0.037994385, -0.020629883, -0.040283203, -0.00089502335, 0.015213013, 0.013549805, 0.020187378, -0.091796875, -0.030975342, -0.01348114, -3.516674e-06, -0.003900528, 0.0002875328, 0.043151855, 0.009391785, -0.014671326, 0.018341064, -0.008659363, -0.01222229, 0.015350342, 0.034210205, 0.020614624, -0.01852417, -0.028533936, 0.06365967, 0.007434845, 0.015625, 0.062805176, -0.03945923, 0.003189087, 0.0006890297, 0.021408081, -0.03378296, -0.03817749, 0.010368347, 0.03930664, -0.020629883, -0.023620605, -0.019882202, 0.020431519, 0.023254395, -0.059143066, 0.022918701, -0.055541992, 0.032562256, 0.037200928, 0.076660156, -0.053710938, -0.03274536, -0.02330017, 0.0008234978, -0.0074501038, 0.062194824, -0.01574707, 0.02229309, 0.0023765564, 0.032714844, 0.04147339, -0.009468079, 0.015312195, -0.017105103, -0.019073486, 0.02619934, -0.018478394, -0.009429932, -0.0059776306, 0.011398315, 0.012382507, 0.03805542, 0.02027893, 0.04989624, 0.01852417, 0.0010404587, 0.0012750626, -0.040863037, 0.029556274, -0.00982666, 0.060272217, -0.024124146, -0.0050239563, 0.0041389465, -0.015602112, -0.039154053, 0.010475159, -0.028015137, 0.0012149811, 0.010612488, -0.04324341, -0.047973633, 0.009063721, 0.06781006, -0.04534912, -0.015731812, -0.0029010773, 0.033569336, -0.0001154542, -0.0044059753, 0.005104065, -0.033935547, -0.005958557, 0.0340271, -0.015533447, -0.06088257, -0.014190674, 0.019729614, 0.02130127, -0.0016145706, 0.0068893433, 0.08319092, 0.004585266, -0.00022101402, 0.013511658, 0.0017518997, -0.0385437, 0.057556152, 0.013618469, 0.0030899048, 0.027160645, 0.018218994, -0.016525269, 0.05038452, -0.026855469, 0.024505615, -0.029327393, 0.025619507, -0.011680603, -0.040161133, -0.011558533, 0.0020694733, 0.005558014, 0.006916046, -0.038848877, 0.029022217, 0.013511658, 0.0031394958, 0.007896423, -0.014709473, 0.043029785, -0.043701172, -0.009208679, -0.08685303, -0.019348145, 0.05532837, 0.029907227, -0.012863159, -0.0079422, -0.016555786, -0.013412476, -0.017578125, -0.011367798, -0.009941101, -0.023208618, -0.01247406, -0.015586853, -0.050872803, 0.0055274963, -0.02029419, -0.0032424927, -0.03668213, -0.0009098053, 0.013427734, -0.0138549805, -0.0060310364, -0.018066406, 0.00982666, -0.012710571, -0.013298035, -0.036590576, -0.025421143, -0.001004219, 0.0041389465, -0.007820129, 0.0007638931, 0.011505127, 0.005680084, -0.022064209, 0.009803772, 0.02432251, 0.023880005, -0.026016235, 0.019546509, 0.018417358, 0.03579712, -0.012451172, -0.08343506, -0.02432251, 0.031036377, 0.012290955, -0.011962891, 0.062805176, -0.05709839, 0.0060577393, 0.0074310303, -0.024978638, -0.01701355, 0.007259369, 0.0019817352, -0.01687622, 0.020584106]}, "B088YRD1WT": {"id": "B088YRD1WT", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ\nDescription:
      Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

      With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

      Technical Details:
      Premium Material: Solid iron support + Chrome plated BBQ wire mesh
      Unfolded Product Dimensions :14.96''x10.62''x7.87''
      Folded Product Dimensions : 13.77''x9.4''x2.36''
      Product weight: 3.53 lb
      Color: Black\nFeatures: \u25baThe barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.\n", "metadata": {"Name": "Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ", "Brand": "LETION", "Description": "
      Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

      With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

      Technical Details:
      Premium Material: Solid iron support + Chrome plated BBQ wire mesh
      Unfolded Product Dimensions :14.96''x10.62''x7.87''
      Folded Product Dimensions : 13.77''x9.4''x2.36''
      Product weight: 3.53 lb
      Color: Black", "Features": "\u25baThe barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0021839142, 0.040985107, -0.01889038, 0.013008118, 0.03152466, -0.013519287, 0.010604858, -0.046142578, -0.030792236, -0.008460999, -0.015007019, 0.0413208, -0.05758667, -0.021957397, 0.008491516, -0.05078125, 0.005039215, 0.051879883, 0.016799927, -0.012374878, 0.0070724487, -0.001663208, -0.06451416, 0.08703613, 0.030593872, -0.017730713, 0.013473511, -0.0063667297, 0.009414673, 0.005874634, 0.017364502, -0.0059318542, 0.026123047, 0.027435303, -0.04611206, -0.039245605, -0.046173096, 0.021652222, -0.012870789, -0.0023002625, 0.013931274, -0.0016765594, -0.05581665, 0.021270752, -0.040802002, -0.060058594, 0.008972168, -0.024887085, -0.019012451, -0.012039185, 0.027496338, -0.005302429, 0.04876709, -0.023712158, -0.0067710876, 0.0027236938, 0.030029297, -0.03552246, 0.021331787, -0.01939392, -0.02067566, 0.0052986145, 0.031311035, 0.012886047, -0.014419556, -0.041290283, 0.0597229, 0.008041382, -0.05831909, -0.052734375, 0.06304932, 0.015777588, -0.0016050339, -0.01348114, 0.009750366, -0.043304443, 0.013549805, -0.037139893, -0.0025177002, 0.043884277, -0.05001831, -0.017211914, 0.005180359, -0.057281494, 0.012397766, -0.01399231, -0.024414062, -0.0038776398, 0.026626587, -0.0044136047, 0.017730713, -0.0496521, -0.023101807, 0.08959961, 0.038970947, -0.028717041, -0.018173218, -0.024734497, 0.0067749023, 0.0068092346, 0.034576416, -0.035369873, 0.032226562, -0.007637024, -0.028671265, 0.08087158, 0.0259552, 0.024398804, -0.037994385, -0.013679504, 0.0019664764, -0.08935547, -0.006542206, -0.020187378, -0.004966736, 0.004058838, -0.025238037, 0.02935791, 0.0023994446, 0.015106201, -0.04071045, -0.021484375, -0.0037498474, 0.012214661, 0.061523438, 0.029006958, 0.010932922, 0.02708435, -0.07824707, 0.03744507, -0.0345459, 0.037109375, 0.052978516, 0.008659363, -0.031951904, -0.028289795, -0.017700195, -0.01687622, 0.012634277, 0.0072517395, -0.01939392, -0.0017127991, 0.053527832, 0.0015411377, -0.019851685, 0.025650024, 0.04083252, 0.0061683655, -0.03439331, -0.06677246, 0.028076172, 0.0049858093, 0.056121826, 0.011550903, -0.06201172, -0.033569336, -0.012611389, -0.03616333, -0.007583618, -0.07122803, -0.01889038, -0.0026168823, 0.0149002075, -0.012237549, -0.011505127, 0.014472961, 0.013938904, 0.004135132, 0.015510559, 0.032470703, 0.019134521, -0.00868988, -0.00819397, -0.014953613, -0.010803223, -0.0029125214, -0.01637268, 0.06732178, 0.070617676, -0.1048584, -0.07165527, -0.062286377, 0.1159668, -0.03201294, 0.029815674, -0.009437561, 0.012176514, -0.019210815, -0.008018494, 0.023513794, -0.03378296, 0.031051636, 0.013259888, 0.004322052, -0.0018558502, 0.020584106, -0.029693604, 0.028121948, -0.01928711, -0.026916504, 0.0138549805, 0.012962341, -0.0046081543, 0.008895874, 0.0065689087, -0.006095886, 0.009986877, 0.015609741, 0.05569458, 0.04937744, -0.008110046, 0.020339966, -0.018127441, -0.044525146, -0.068603516, -0.023513794, -0.0033359528, 0.029144287, -0.0022335052, -0.011558533, 0.008720398, -0.012138367, 0.017684937, 0.023864746, 0.014511108, -0.03161621, -0.004020691, -0.019515991, 0.011734009, 0.01586914, -0.038146973, 0.022567749, 0.05343628, 0.05307007, -0.013633728, 0.039764404, 0.07550049, 0.076171875, -0.029556274, -0.026733398, 0.02406311, 0.019348145, -0.03930664, -0.011940002, 0.051757812, -0.062347412, -0.030258179, 0.0077819824, -0.023544312, -0.0036067963, 0.021240234, 0.0043678284, 0.033233643, 0.00459671, 0.0015830994, 0.025985718, -0.037139893, 0.038726807, -0.04171753, 0.010917664, -0.024612427, 0.01953125, 0.04232788, -0.021820068, 0.014152527, -0.004234314, 0.02029419, 0.022018433, -0.029266357, 0.0033016205, 0.015449524, 0.0023860931, -0.014259338, -0.020462036, 0.049926758, -0.013168335, -0.051574707, 0.023925781, 0.023071289, -0.020095825, 0.012779236, -0.0023975372, -0.004699707, -0.0042266846, 0.026916504, 0.002298355, 0.0016145706, 0.017669678, -0.05239868, -0.02696228, -0.01209259, 0.03741455, 0.0058937073, -0.018981934, 0.014587402, 0.0069999695, 0.044952393, 0.061279297, -0.0040130615, -0.018539429, -0.0041389465, 0.017059326, -0.057525635, 0.006401062, -0.018447876, 0.011520386, -0.01386261, -0.0066947937, -0.012893677, -0.06829834, 0.036468506, 0.023483276, 0.045166016, -0.0541687, 0.0848999, 0.020828247, -0.00818634, 0.062683105, 0.023330688, 0.04220581, -0.052124023, -0.049468994, -0.019973755, 0.009590149, -0.018920898, 0.022094727, 0.012535095, 0.014259338, 0.028152466, 0.018127441, -0.0037975311, 0.04385376, -0.013404846, 0.008850098, -0.008277893, -0.0010251999, 0.0048217773, 0.043182373, 0.0014419556, -0.0435791, -0.007083893, 0.007575989, -0.009864807, -0.034362793, -0.018249512, -0.0048217773, 0.006263733, 0.01701355, 0.014190674, 0.0075950623, -0.0032176971, -0.026794434, 0.030578613, -0.026657104, -0.008903503, 0.0014286041, -0.027420044, -0.053863525, -0.04840088, -0.088256836, -0.018478394, -0.02230835, -0.053985596, 0.020446777, 0.027236938, 0.005218506, -0.010032654, -0.0018339157, -0.008026123, 0.011657715, 0.038146973, 0.026626587, -0.06161499, -0.043426514, -0.0440979, -0.042907715, 0.03955078, -0.025741577, -0.041809082, -0.0033416748, -0.022644043, 0.0017995834, 0.0015487671, 0.024154663, 0.013191223, 0.028289795, 0.053344727, 0.037872314, 0.018936157, -0.040527344, -0.0007247925, 0.023788452, -0.03186035, -0.011993408, 0.022033691, 0.0015296936, 0.0010652542, -0.0075531006, -0.07104492, -0.018203735, -0.039642334, 0.019805908, 0.011299133, -0.020568848, -0.017059326, -0.023864746, -0.007106781, -0.029037476, -0.007106781, 0.047088623, -0.0060043335, 0.01525116, -0.023620605, 0.03488159, 0.011161804, -0.030288696, 0.041137695, -0.0124435425, 0.058502197, -0.035369873, -0.014823914, -0.029037476, 0.01259613, 0.032806396, -0.016815186, 0.023345947, -0.00055933, 0.007484436, -0.014480591, 0.022994995, -0.00078105927, -0.02130127, 0.0034542084, 0.014183044, -0.060028076, 0.013259888, -0.00042247772, -0.007091522, 0.03665161, -0.05770874, 0.020812988, 0.00047135353, -0.046081543, 0.03265381, -0.015129089, -0.024215698, -0.0047187805, -0.031585693, -0.03213501, -0.06262207, 0.0019550323, 0.027038574, 0.038085938, 0.02532959, 0.03692627, 0.026504517, 0.0059814453, 0.024215698, 0.002527237, -0.013633728, -0.024841309, -0.017944336, 0.028518677, -0.034301758, 0.0071372986, -0.031707764, 0.030288696, -0.005962372, -0.019088745, 0.026779175, -0.01071167, 0.027191162, 0.04360962, -0.0025901794, 0.021957397, -0.01007843, -0.014152527, 0.0042915344, -0.0463562, -0.018722534, -0.03930664, -0.014656067, -0.07989502, 0.09625244, 0.06304932, -0.02168274, 0.07720947, 0.06439209, 0.0021800995, 0.05142212, 0.032318115, -0.0023269653, 0.021606445, 0.046295166, -0.015533447, 0.017684937, 0.010093689, -0.009628296, 0.0340271, 0.007183075, -0.06506348, 0.009765625, -0.010559082, -0.0647583, 0.002363205, 0.018218994, -0.017150879, 0.0067481995, 0.0052452087, -0.012054443, -0.042388916, -0.023284912, 0.032958984, 0.028442383, -0.015930176, 0.01625061, 0.0004146099, 0.019592285, -0.016494751, -0.016418457, -0.0009560585, 0.025787354, 0.00818634, 0.018875122, -0.005191803, 0.009094238, -0.021362305, 0.022460938, -0.016220093, 0.007545471, 0.0090789795, 0.015388489, -0.0029296875, -0.0031166077, 0.020065308, -0.016052246, -0.046295166, -0.03289795, -0.02116394, 0.0033855438, 0.0009622574, 0.024215698, 0.0028648376, 0.030883789, 0.019042969, -0.07550049, -0.004016876, -0.028289795, -0.05239868, -0.0126571655, -0.023757935, -0.009292603, -0.055114746, -0.03024292, -0.009887695, -0.02168274, -0.023773193, 0.03552246, 0.00034594536, -0.07006836, -0.033813477, 0.029922485, -0.033813477, 0.0026359558, 0.017684937, 0.016159058, 0.034057617, 0.011962891, 0.011222839, -0.027526855, -0.019821167, -0.010719299, 0.024139404, -0.02331543, 0.012550354, -0.015274048, -0.009300232, -0.004798889, 0.03967285, 0.07092285, -0.04434204, 0.003643036, -0.028747559, -0.039520264, -0.046539307, -0.0025196075, 0.02999878, -0.0118255615, -0.030334473, -0.01689148, 0.031555176, -0.010925293, 0.009155273, -0.049835205, 0.0015525818, 0.006088257, 0.011138916, -0.0042419434, -0.011772156, 0.013069153, -0.014404297, 0.017944336, 0.0023727417, -0.017105103, 0.030349731, 0.030410767, 0.024642944, -0.01965332, -0.054016113, -0.047546387, 0.04864502, 0.0748291, -0.018539429, -0.019607544, -0.044647217, 0.017868042, -0.048828125, 0.08105469, 0.080566406, -0.010505676, 0.003862381, 0.008399963, -0.017578125, -0.043670654, 0.012237549, -0.032928467, -0.052246094, -0.028839111, -0.020004272, -0.017532349, -0.027160645, -0.011497498, -0.022232056, -0.024841309, 0.0053977966, 0.0036525726, 0.0060310364, -0.012069702, 0.020858765, 0.034210205, -0.001332283, 0.022399902, -0.0061569214, -0.020431519, 0.015113831, -0.044433594, -0.026489258, -0.0093688965, -0.0022468567, -0.043884277, -0.002117157, -0.008956909, -0.028808594, -0.00079774857, 0.050445557, -0.029541016, -0.024978638, 0.027389526, 0.04248047, 0.0076141357, -0.03173828, 0.0848999, -0.017150879, 0.004562378, 0.011703491, -0.029815674, 0.014167786, 0.025482178, -0.038116455, 0.05142212, 0.009109497, -0.056854248, 0.0231781, 0.001420021, 0.0020999908, -0.036834717, 0.016357422, -0.0021686554, -0.037902832, -0.0357666, -0.015014648, -0.024719238, 0.053375244, -0.019012451, -0.0121154785, 0.035308838, 0.015213013, -0.015716553, 0.024734497, 0.033233643, -0.015533447, 0.001543045, 0.041015625, 0.0057868958, -0.02142334, 0.039978027, -0.024368286, -0.00983429, 0.017089844, -0.021331787, -0.027038574, 0.020080566, 0.008560181, -0.0053520203, 0.007209778, -0.015434265, -0.033111572, -0.023071289, -0.015426636, -0.0027389526, -0.020080566, 0.0357666, -0.037231445, -0.0025501251, -0.035064697, -0.028182983, -0.0423584, 0.0008826256, -0.00730896, 0.04421997, -0.00687027, 0.028442383, 0.018707275, -0.03555298, -0.003944397, 0.031707764, -0.016983032, 0.029190063, 0.01739502, 0.037841797, -0.028442383, -0.03427124, 0.09649658, -0.05529785, -0.05340576, -0.0791626, 0.05984497, -0.0042915344, 0.01751709, 0.06311035, -0.017745972, 0.023468018, 0.031555176, -0.004398346, -0.024902344, -0.018325806, 0.0015268326, -0.07757568, 0.01474762, -0.028701782, 0.020980835, 0.012420654, 0.0073928833, -0.030151367, 0.03930664, -0.020004272, -0.01663208, -0.044067383, -0.0076446533, -0.015579224, -0.028259277, 0.0065574646, -0.017425537, -0.013191223, -0.03591919, -0.027618408, -0.05166626, -8.4877014e-05, 0.060699463, 0.026489258, 0.03765869, -0.035003662, 0.032196045, 0.022216797, -0.01550293, 0.07757568, -0.0068244934, -0.006893158, -0.02986145, 0.00062179565, 0.03717041, -0.011009216, 0.007118225, 0.00945282, 0.027038574, -0.004966736, 0.048309326, -0.052001953, 0.022644043, -0.013595581, 0.054718018, 0.0004529953, 0.015319824, 0.017593384, 0.049835205, 0.043792725, -0.010215759, -0.00843811, 0.034698486, -0.00819397, 0.0013017654, -0.020889282, 0.038269043, 0.032287598, 0.017318726, 0.01247406, 0.035003662, 0.036895752, -0.038238525, -0.01360321, 0.0043945312, -0.031921387, 0.009536743, -0.008171082, -0.019714355, -0.004398346, -0.010925293, 0.0055885315, -0.07946777, -0.027938843, 0.03552246, 0.042388916, 0.02671814, -0.0066223145, -0.024337769, -0.0020828247, 0.010231018, -0.028182983, 0.0058021545, 0.020019531, 0.0006957054, 0.0053634644, -0.069885254, -0.028533936, -0.035949707, 0.036224365, -0.014633179, 0.07714844, -0.025283813, 0.01499176, -0.023239136, 0.0079193115, -0.027069092, -0.004371643, -0.001991272, 0.02507019, -0.0017442703, -0.0062675476, -0.025848389, -0.013519287, 0.051971436, -0.04953003, -0.022109985, -0.0010995865, 0.0256958, -0.038085938, 0.03427124, -0.026489258, -0.03274536, 0.046783447, 0.024597168, -0.0259552, -0.025131226, 0.00024044514, -0.038879395, 0.027359009, -0.077697754, 0.03982544, 0.010765076, 0.04815674, 0.029830933, 0.090026855, 0.007511139, -0.0071525574, -0.024536133, 0.026794434, 0.008049011, 0.020462036, 0.005809784, 0.05014038, 0.013084412, 0.040863037, 0.07720947, 0.004714966, 0.04788208, 0.010856628, 0.0040283203, -0.012306213, 0.03250122, -0.008491516, -0.0038089752, 0.009300232, -0.0034313202, 0.024658203, 0.023162842, 0.026351929, -0.0099487305, -0.0056762695, -0.026107788, 0.024124146, -0.0060691833, -0.015365601, -0.0015211105, -0.04058838, -0.0069351196, 0.0025520325, -0.03012085, -0.033721924, 0.008544922, -0.029541016, 0.0054740906, 0.012458801, -0.020568848, -0.022583008, -0.014320374, 0.016220093, -0.023498535, 0.02861023, 0.0015306473, 0.035491943, 0.005092621, 0.07086182, -0.034179688, -0.06323242, -0.033416748, 0.02468872, -0.044555664, -0.024734497, 0.0151901245, 0.0007481575, 0.030792236, 0.018966675, 0.038269043, 0.070495605, 0.029251099, 0.0041542053, 0.0070648193, -0.0012979507, -0.053100586, 0.045715332, 0.026123047, -0.04071045, 0.051849365, 0.051605225, 0.013595581, 0.08929443, 0.031402588, 0.0029659271, -0.012535095, -0.028747559, -0.07336426, 0.035827637, -0.019134521, -0.021072388, 0.025558472, -0.014381409, -0.035308838, 0.017700195, 0.045562744, 0.03930664, 0.0287323, 0.018920898, 0.002729416, -0.03479004, -0.051574707, -0.022659302, -0.009857178, 0.033966064, 0.016448975, -0.046325684, 0.011512756, 0.017913818, -0.032226562, 0.03314209, 0.045318604, -0.004798889, -0.00039482117, -0.00831604, 0.029907227, 0.0043945312, -0.021499634, 0.017440796, -0.033294678, -0.0073013306, 0.022399902, 0.046905518, -0.037322998, 0.0090408325, -0.0006084442, -0.0052490234, 0.03237915, 0.0068969727, 0.0055618286, -0.051605225, 0.01626587, 0.04449463, 0.0064430237, 0.003479004, -0.009803772, -0.042877197, -0.023239136, 0.015068054, 0.029251099, -0.010124207, -0.047821045, 0.053253174, 0.01449585, 0.039642334, -0.014411926, -0.04019165, -0.05267334, 0.03918457, 0.007511139, -0.0032157898, 0.033966064, 0.006248474, 0.014526367, -6.169081e-05, -0.017349243, 0.002817154, -0.016906738, 0.00655365, -0.024734497, 0.009994507]}, "B0009PUQAK": {"id": "B0009PUQAK", "original": "Brand: Coleman\nName: Coleman High-Pressure Propane Hose and Adapter\nDescription: \nFeatures: 5-foot hose and adapter attaches propane appliances to 20-pound propane tanks\nGreat for use with Coleman grills, stoves, lanterns, heaters, and more\nA cost-efficient solution to regularly replacing 1-pound canisters\nAllows propane devices to last up to 20x longer without refueling\nHand tighten counterclockwise\n", "metadata": {"Name": "Coleman High-Pressure Propane Hose and Adapter", "Brand": "Coleman", "Description": "", "Features": "5-foot hose and adapter attaches propane appliances to 20-pound propane tanks\nGreat for use with Coleman grills, stoves, lanterns, heaters, and more\nA cost-efficient solution to regularly replacing 1-pound canisters\nAllows propane devices to last up to 20x longer without refueling\nHand tighten counterclockwise", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.02330017, 0.006652832, -0.02217102, -0.01965332, 0.006088257, -0.02192688, 0.0015544891, -0.0068130493, -0.03378296, -0.0042304993, 0.013618469, 0.0070381165, 0.02859497, -0.057128906, 0.052368164, -0.004383087, 0.025222778, 0.00039172173, 0.0052337646, -0.027130127, -0.0071640015, -0.01751709, 0.009094238, 0.10449219, -0.004180908, -0.0065307617, 0.04800415, -0.0063476562, 0.0079956055, -0.009063721, 0.02078247, 0.0030708313, 0.05734253, -0.0010404587, -0.059417725, -0.025238037, 0.014335632, -0.028411865, -0.062683105, 0.038208008, -0.0063819885, 0.011116028, 0.012939453, 4.416704e-05, -0.023605347, -0.021957397, -0.005302429, -0.018539429, 0.013793945, -0.028427124, 0.011314392, 0.001906395, 0.034942627, -0.04626465, -0.018173218, -0.0018758774, 0.007797241, -0.0052757263, 0.01108551, -0.036193848, -0.011383057, -0.0013074875, 0.03201294, 0.022140503, -0.028564453, 0.027557373, 0.080200195, -0.028915405, 0.013130188, -0.03100586, -0.016830444, 0.025177002, 0.013404846, 0.0259552, -0.060150146, -0.057525635, 0.059326172, -0.019210815, 0.010879517, 0.005306244, -0.03616333, -0.053222656, -0.0020179749, 0.015335083, -0.0008621216, 0.034118652, -0.024658203, -0.015060425, -0.015068054, -0.048583984, -0.022323608, 0.055633545, -0.06677246, -0.0041275024, -0.037841797, -0.019882202, -0.03390503, -0.06738281, 0.029373169, 0.017318726, 0.03881836, -0.039093018, 0.03604126, 0.0045700073, 0.019943237, 0.04989624, -0.0101623535, -0.019348145, 0.02998352, 0.009056091, -0.0008325577, 0.030685425, 0.062347412, 0.017562866, -0.05178833, -0.014854431, 0.026489258, -0.0013713837, -0.008598328, 0.008140564, -0.018249512, -0.015975952, 0.0024375916, 0.015701294, 0.016403198, -0.0024051666, 1.770258e-05, 0.012207031, -0.016830444, 0.028366089, -0.05078125, -0.0017204285, 0.073791504, 0.053710938, 0.03579712, -0.021835327, 0.039855957, 0.043670654, 0.020706177, -0.012367249, 0.019638062, -0.015113831, -0.0071029663, 0.030944824, -0.021987915, 0.0032081604, 0.008583069, 0.030807495, 0.0067596436, -0.044433594, 0.020263672, -0.02154541, 0.029174805, -0.009727478, 0.02519226, -0.017852783, 0.02079773, -0.02633667, 0.004814148, -0.025222778, -0.05496216, -0.025497437, 0.00038433075, -0.014656067, -0.024017334, 0.033935547, 0.053466797, 0.010536194, 0.023864746, 0.072387695, -0.014007568, 0.012756348, 0.03994751, 0.019729614, -0.005882263, -0.010643005, -0.06225586, 0.082458496, 0.06451416, -0.12658691, -0.06768799, -0.07098389, 0.09625244, -0.013763428, 0.02053833, -0.050689697, 0.04638672, -0.01473999, -0.028701782, 0.014122009, 0.04360962, 0.04006958, -0.01083374, 0.017425537, -0.018829346, 0.01966858, -0.021316528, 0.05807495, -0.022628784, -0.0423584, -0.05987549, -0.004776001, -0.0025844574, 0.02684021, 0.017364502, -0.01927185, -0.003408432, 0.007843018, 0.041992188, 0.026443481, -0.023803711, -0.03616333, 0.03010559, -0.055511475, -0.04046631, -0.0017204285, 0.013641357, 0.0134887695, 0.034423828, -0.03982544, 0.067993164, 0.0079193115, 0.048461914, 0.03866577, -0.010345459, 0.0057144165, -0.024780273, -0.0013933182, -0.042236328, 0.0152282715, -0.02935791, 0.043792725, 0.0970459, 0.074035645, -0.02394104, 0.036834717, 0.08831787, 0.045532227, -0.037628174, -0.024871826, 0.013557434, -0.055541992, -0.027069092, -0.017044067, -0.01927185, -0.014228821, 0.014717102, -0.01626587, -0.041931152, 0.011276245, 0.041534424, 0.02670288, 0.020553589, 0.031829834, -0.04071045, 0.03314209, -0.028793335, 0.028839111, -0.027679443, 0.015792847, -0.024276733, 0.018707275, 0.051574707, -0.023284912, 0.0029468536, 0.055786133, 0.040008545, 0.04827881, -0.027114868, 0.023620605, -0.0039367676, 0.0048713684, -0.018356323, -0.038757324, -0.0024700165, -0.020492554, -0.031143188, 0.047790527, -0.0018815994, -0.04321289, 0.035705566, 0.026947021, 0.027450562, -0.007820129, 0.050079346, -0.0034732819, 0.008392334, 0.018218994, -0.0309906, -0.00092220306, 0.025283813, 0.022018433, 0.0158844, -0.022125244, 0.008140564, -0.0052757263, 0.015586853, -0.0071105957, 0.037902832, -0.03137207, -0.008666992, 0.048553467, -0.03338623, 0.042236328, -0.005710602, -0.010986328, -0.0063095093, 0.024932861, 0.001996994, -0.036499023, -0.028060913, -0.013160706, 0.012107849, 0.07556152, -0.007751465, -0.011077881, 0.014778137, 0.040252686, 0.05065918, 0.017868042, -0.01335907, 0.030563354, 0.0010948181, 0.0060806274, 0.02961731, -0.012893677, -0.0129470825, 0.0031528473, -0.007411957, 0.013572693, 0.0009775162, -0.0048675537, -0.013015747, -0.008094788, -0.00022304058, 0.0026893616, 0.010017395, 0.010818481, -0.019500732, -0.036621094, -0.0011911392, -0.06567383, -0.0039711, 0.019042969, -0.017593384, -0.036132812, 0.029846191, 0.007858276, -0.008308411, 0.015701294, -0.004322052, -0.014137268, 0.012435913, -0.026733398, 0.015899658, -0.005619049, -0.039520264, -0.036987305, -0.0015296936, -0.07891846, 0.015556335, -0.021652222, -0.023147583, -0.01007843, 0.04525757, -0.026748657, -0.027008057, -0.021972656, -0.016799927, 0.019317627, -0.01838684, 0.0018339157, -0.051483154, -0.006839752, -0.012260437, 0.024459839, 0.025009155, -0.015113831, 0.038604736, 0.020584106, 0.046142578, 0.031036377, -0.0014705658, 0.013893127, -0.020736694, 0.054260254, 0.055114746, 0.025100708, 0.0048217773, -0.041503906, 0.0035533905, 0.056274414, -0.058929443, -0.008346558, -0.039489746, -0.013168335, 0.02192688, -0.008232117, -0.008979797, -0.018432617, -0.04019165, 0.0026760101, -0.010513306, -0.0015621185, -0.017944336, 0.004058838, -0.022720337, -0.046539307, 0.027740479, 0.038330078, -0.021514893, 0.028411865, -0.016021729, 0.024169922, -0.02583313, 0.006462097, 0.0004518032, -0.015602112, 0.00082063675, 0.01927185, 0.028396606, -0.05303955, 0.028152466, 0.051239014, -0.014381409, 0.03378296, -0.028457642, 0.014160156, -0.02003479, -0.005104065, -0.012870789, -0.019088745, -0.05230713, -0.019699097, 0.0059661865, 0.022262573, 0.020355225, -0.027542114, 0.02330017, -0.008995056, -0.015548706, -0.017715454, -0.041015625, 0.016952515, -0.02458191, -0.017837524, -0.012817383, -0.028274536, 0.002319336, -0.023925781, 0.002998352, 0.00035071373, 0.035980225, 0.01361084, -0.016723633, 0.04055786, 0.03050232, 0.040008545, -0.039031982, 0.008865356, 0.016281128, -0.013870239, 0.0027103424, -0.014007568, 0.016571045, -0.059570312, 0.004585266, 0.0056533813, -0.006641388, 2.1994114e-05, 0.0036125183, 0.057556152, 0.024215698, -0.026504517, 0.006702423, -0.024459839, 0.026931763, -0.020477295, 0.044281006, -0.0340271, -0.049591064, 0.015945435, -0.11730957, 0.064453125, 0.038330078, -0.028030396, 0.045928955, 0.008735657, 0.013046265, -0.010185242, 0.038482666, -0.012916565, 0.04144287, 0.005680084, -0.0073776245, -0.03225708, -0.020385742, 0.05722046, 0.026611328, -0.012794495, 0.005001068, -0.0025291443, 0.044677734, -0.03692627, 0.006298065, 0.017868042, -0.008239746, -0.0031108856, -0.004508972, -0.053222656, 0.011375427, -0.039276123, -0.021072388, -0.010940552, -0.017288208, 0.01586914, -0.03161621, -0.019302368, -0.023208618, 0.0032482147, -0.0032444, 0.027511597, -0.041168213, 0.02104187, 0.06665039, -0.01512146, -0.053253174, 0.017837524, -0.024887085, 0.044891357, 0.009986877, 0.0093307495, 0.005493164, -0.053894043, 0.02758789, -0.03945923, -0.011695862, 0.054992676, -0.013900757, -0.083984375, -0.03253174, 0.02029419, 0.032562256, -0.03262329, -0.0040626526, 0.015930176, 0.032440186, 0.044891357, -0.06640625, -0.00033426285, 0.003194809, 0.030380249, -0.0440979, -0.020187378, -0.028427124, 0.011779785, -0.021652222, 0.007160187, -0.024215698, 0.020690918, -0.015281677, 0.046722412, -0.04559326, -0.0149002075, -0.04598999, 0.014404297, 0.01285553, 0.008125305, 0.008552551, -0.04736328, 0.0037670135, 0.0039596558, 0.081848145, 0.00057172775, 0.02142334, -0.028869629, -0.0070228577, 0.023101807, 0.028915405, 0.052001953, -0.02468872, 0.010032654, -0.03451538, 0.026535034, -0.04333496, -0.004119873, 0.028839111, -0.04345703, -0.023910522, 0.0064888, 0.068115234, -0.023284912, -0.00459671, -0.01386261, 0.035705566, 0.020263672, 0.0131073, -0.07739258, -0.029083252, 0.006225586, -0.011238098, -0.030715942, -0.0021839142, -0.011390686, 0.07470703, -0.008666992, -0.022109985, 0.012588501, 0.0020542145, -0.010406494, -0.0053863525, 0.015335083, -0.020553589, 0.024429321, -0.033203125, -0.021575928, -0.052337646, 0.06573486, -0.020721436, -0.010284424, 0.001496315, -0.02204895, 0.0115356445, -0.036254883, 0.002981186, -0.0023040771, -0.021575928, -0.013366699, -0.03503418, 0.020599365, -0.019927979, -0.0074653625, -0.033294678, -0.013008118, -0.004722595, 0.014251709, -0.026779175, -0.05621338, -0.014472961, 0.014343262, 0.016494751, 0.032684326, 0.006679535, -0.024536133, 0.024719238, -0.008972168, -0.007247925, 0.0035572052, -0.019500732, -0.0071372986, 0.010482788, 0.0044136047, -0.023483276, 0.0030975342, 0.015457153, -0.009056091, -0.010513306, 0.024429321, 0.0069999695, -0.004501343, -0.011009216, 0.050750732, 0.007118225, 0.002702713, 0.062805176, 0.00065660477, 0.017349243, 0.033813477, -0.0051345825, 0.05596924, -0.008598328, 0.016448975, 0.038848877, -0.005958557, -0.013519287, -0.03100586, 0.09075928, -0.00945282, 0.016906738, -0.04144287, 0.011375427, -0.016342163, -0.0030441284, -0.012626648, -0.004688263, 0.035308838, -0.027740479, -0.013160706, 0.013977051, 0.005970001, -0.023391724, -0.012672424, 0.0017166138, -0.049560547, -0.046417236, -0.01638794, -0.03111267, 0.036590576, 0.033203125, -0.033050537, 0.018188477, 0.028182983, -0.043182373, -0.01701355, -0.005050659, 0.0005168915, -0.03527832, 0.0013055801, -0.013717651, 0.0005912781, 0.0033226013, 0.012260437, -0.011932373, 0.0056419373, -0.04067993, -0.013435364, -0.013580322, 0.022140503, 0.0060195923, 0.043914795, -0.018127441, -0.046905518, -0.00415802, 0.016189575, 0.015510559, -0.031555176, -0.035003662, -0.02319336, -0.00907135, 0.0011386871, -0.0076026917, 0.010551453, 0.06262207, -0.04498291, -0.039886475, -0.06970215, 0.029312134, -0.056518555, -0.057281494, 0.06652832, 0.04272461, 0.028137207, 0.008491516, 0.008171082, -0.019439697, 0.007423401, -0.00459671, -0.016174316, -0.020141602, -0.024963379, -0.005554199, 0.02609253, 0.01802063, -0.032928467, 0.036468506, -0.04449463, -0.043426514, -0.02961731, 0.013076782, -0.0033245087, -0.021499634, 0.0040664673, -0.018569946, 0.0031719208, -0.0181427, 0.0149383545, -0.06439209, -0.046081543, -0.00068855286, 0.027450562, 0.037841797, 0.022720337, 0.019515991, 0.05126953, -0.07287598, 0.013626099, 0.025497437, -0.016952515, -0.02671814, 0.006214142, -0.0054626465, 0.005935669, -0.04611206, 0.006416321, -0.034942627, 0.0021781921, -0.008995056, 0.050994873, -0.07348633, -0.03427124, 0.010116577, 0.06512451, 0.005001068, 0.0075187683, 0.024108887, 0.004108429, -0.024414062, -0.0055999756, -0.0025787354, -0.034362793, 0.026657104, -0.07354736, 0.022720337, 0.005115509, -0.0021705627, -0.0003607273, -0.04486084, 0.05407715, -0.043395996, 0.028503418, -0.013595581, -0.021194458, 0.028717041, -0.016616821, 0.02027893, -0.01889038, 0.015052795, 0.006828308, -0.029891968, -0.0050697327, 0.0070991516, 0.025482178, -0.010047913, 0.033050537, -0.09399414, 0.024734497, 0.0096206665, -0.04638672, -0.03491211, 0.050842285, 0.021606445, -0.016998291, -0.041534424, -0.008834839, -0.0063476562, -0.0063171387, 0.03817749, 0.019607544, 0.023498535, 0.016494751, -0.024597168, -0.018203735, 0.0052108765, -0.022079468, 0.01171875, 0.015266418, -0.00014066696, -0.020385742, -0.046691895, -0.021713257, 0.03729248, -0.01335907, 0.0029640198, -0.03164673, 0.035888672, -0.005973816, -0.008430481, -0.04397583, -0.043548584, -0.025222778, 0.0002603531, 0.0001809597, -0.007171631, -0.02243042, 0.016433716, 0.018341064, -0.04083252, 0.021347046, -0.04534912, 0.032592773, 0.00995636, 0.039489746, -0.05630493, -0.010543823, -0.009086609, -0.013542175, 0.005542755, 0.054840088, 0.016281128, -0.0062065125, 0.013587952, -0.016708374, 0.03842163, 0.007221222, -0.0021896362, -0.04650879, 0.01309967, 0.01109314, -0.06085205, -0.022994995, -0.05911255, 0.012893677, 0.03878784, -0.025054932, 0.015716553, -0.029510498, -0.011787415, -0.031433105, -0.035736084, 0.06021118, -0.009468079, -0.025772095, -0.064208984, -0.040863037, 0.0029201508, -0.03515625, -0.04812622, -0.00207901, -0.03152466, -0.05645752, 0.08068848, 0.0014286041, 0.007713318, 0.0055274963, -0.017044067, -0.015281677, -0.009376526, 0.024261475, 0.039276123, 0.055603027, 0.0009994507, 0.044525146, -0.018630981, -0.06414795, -0.033081055, 0.0335083, -0.03036499, -0.03955078, -0.007545471, 0.0010509491, -0.006778717, -0.008964539, 0.01550293, 0.07519531, 0.025924683, -0.0008711815, 0.009994507, -0.06500244, -0.010566711, 0.07269287, 0.016677856, -0.023544312, -0.06402588, 0.008926392, -0.02796936, 0.007843018, 0.019805908, -0.022872925, -0.026687622, 0.0031909943, 0.0038280487, -0.05227661, -0.0027236938, 0.00059747696, 0.014526367, 0.024536133, -0.01637268, 0.026473999, 0.018447876, -0.010406494, 0.04168701, -0.0075035095, 0.024398804, -0.05026245, -0.08441162, -0.06286621, -0.025100708, 0.061462402, 0.007610321, -0.017929077, -0.0073051453, 0.040008545, -0.018920898, 0.034118652, 0.048736572, -0.025344849, 0.01159668, 0.0037326813, 0.024963379, 0.0011301041, -0.014816284, 0.04486084, -0.021942139, -0.04208374, 0.022766113, 0.00021874905, -0.012687683, -0.02130127, -0.02053833, 0.00027656555, -0.035003662, -0.027954102, -0.03778076, -0.03378296, 0.03265381, 0.02015686, 0.011436462, 0.0057525635, 0.027023315, 0.0036640167, 0.0023727417, 0.025909424, 0.013442993, 0.03326416, -0.017913818, 0.04348755, 0.0019550323, 0.04562378, -0.02355957, -0.055358887, -0.048034668, 0.023620605, 0.044952393, -0.017913818, 0.0836792, -0.029281616, 0.014350891, 0.0008735657, -0.047058105, -0.0317688, -1.3709068e-05, 0.089416504, -0.020370483, 0.021652222]}, "B08FQY2LBK": {"id": "B08FQY2LBK", "original": "Brand: GasSaf\nName: GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8\" Male Connector Suitable for Turkey Fryer\uff0cFish Fryer\uff0cPropane Burner\uff0cFire Pit and More- CSA Certified\nDescription: GasSaf Adjustable Propane Regulator Hose
      Product features
      The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
      Specifications: Hose length: 4 feet / 48 inches
      Regulator type: high pressure
      Gas type: LP / LPG
      Inlet pressure: 25-250 PSI
      Outlet pressure: 0-10PSIG
      Capacity: 122000 BTU/Hr
      Tail connection: 1/8-inches male connector
      Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
      \nFeatures: \u3010Product Parameters\u3011\uff1aAdjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector\n\u3010Flame Control\u3011: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI)\n\u3010More Reliable\u3011: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment\n\u3010Scope of Application\u3011: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice\n\u3010Easy to install\u3011: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working\n", "metadata": {"Name": "GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8\" Male Connector Suitable for Turkey Fryer\uff0cFish Fryer\uff0cPropane Burner\uff0cFire Pit and More- CSA Certified", "Brand": "GasSaf", "Description": "GasSaf Adjustable Propane Regulator Hose
      Product features
      The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
      Specifications: Hose length: 4 feet / 48 inches
      Regulator type: high pressure
      Gas type: LP / LPG
      Inlet pressure: 25-250 PSI
      Outlet pressure: 0-10PSIG
      Capacity: 122000 BTU/Hr
      Tail connection: 1/8-inches male connector
      Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
      ", "Features": "\u3010Product Parameters\u3011\uff1aAdjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector\n\u3010Flame Control\u3011: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI)\n\u3010More Reliable\u3011: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment\n\u3010Scope of Application\u3011: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice\n\u3010Easy to install\u3011: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.035186768, -0.0032787323, -0.014274597, -0.02330017, -0.008377075, -0.024642944, 0.0052452087, 0.0013256073, 0.0051727295, 0.011131287, 7.2300434e-05, 0.002243042, 0.004108429, -0.032104492, 0.0102005005, -0.014190674, 0.03213501, 0.002023697, 0.0011720657, -0.016616821, -0.0067367554, 0.004814148, -0.010864258, 0.09484863, 0.0035495758, -0.005077362, 0.05706787, 0.027450562, 0.012374878, 0.0069770813, 0.0287323, -0.037628174, 0.040405273, 0.01612854, -0.05316162, -0.07269287, -0.0008211136, -0.019317627, -0.07885742, 0.06762695, 0.017501831, 0.006713867, -0.0055656433, 0.026733398, -0.016235352, -0.042541504, 0.0049209595, -0.048217773, 0.02923584, -0.01852417, 0.0069770813, 0.00207901, 0.019744873, -0.024307251, -0.024871826, -0.012054443, -0.0014257431, 0.020721436, 0.0138549805, -0.001282692, -0.01574707, 0.012374878, -0.0011291504, -0.019302368, -0.033477783, -0.014389038, 0.05999756, -0.0006098747, 0.016860962, -0.022766113, 0.008651733, 0.037994385, -0.0041618347, -0.005870819, -0.06298828, 0.012367249, 0.020858765, -0.02784729, 0.009590149, -0.004760742, -0.0040359497, 0.0037345886, 0.032073975, -0.014793396, 0.005882263, -0.0042304993, -0.01953125, -0.007408142, -0.040161133, -0.016052246, -0.020629883, -0.013557434, -0.042510986, 0.014083862, -0.017990112, 0.0017595291, -0.03277588, -0.11956787, 0.028625488, -0.0049858093, 0.07006836, -0.05593872, 0.069885254, 0.046020508, -0.009819031, 0.04849243, -0.0025997162, 0.01235199, 0.014144897, 0.0017614365, 0.00052547455, -0.01386261, 0.0025253296, -0.0082473755, -0.056640625, 0.042816162, 0.024993896, -0.046020508, -0.007358551, -0.010536194, -0.022781372, -0.012809753, 0.058380127, -0.057922363, 0.008117676, -0.0079193115, -0.033843994, -0.027008057, -0.045928955, 0.014595032, -0.037261963, -0.005256653, 0.057037354, 0.09222412, 0.038604736, -0.018798828, 0.027252197, -0.012145996, 0.0021362305, 0.01625061, 0.0066986084, -0.029708862, -0.016311646, 0.02003479, -0.036590576, 0.018829346, 0.017700195, -0.0068130493, 0.006351471, -0.045318604, -0.059753418, 0.008644104, 0.03390503, 0.025650024, -0.048431396, 0.022216797, -0.009017944, 0.0057144165, -0.025970459, -0.03845215, 0.009124756, -0.034057617, -0.043182373, -0.0042266846, -0.048614502, 0.044677734, 0.011016846, -0.0076141357, 0.016860962, 0.0050315857, -0.0011510849, 0.013763428, 0.010101318, 0.031799316, 0.013259888, 0.014945984, -0.04727173, 0.096191406, 0.06878662, -0.14050293, -0.061950684, -0.05935669, 0.13964844, -0.03012085, 0.012290955, -0.026870728, -0.010673523, -0.046417236, 0.019973755, 0.0036640167, -0.004295349, 0.017196655, 0.006137848, -0.0413208, -0.017807007, 0.02684021, -0.011314392, 0.03488159, -0.013458252, 0.009857178, -0.036895752, 0.020324707, -0.0020389557, 0.024337769, 0.045166016, -0.0047187805, 0.0072669983, 0.024093628, 0.04559326, 0.026351929, -0.014053345, -0.008110046, 0.011184692, -0.012870789, -0.029891968, 0.025115967, -0.018112183, -0.0020103455, 0.012123108, -0.034118652, 0.031707764, -0.0008029938, 0.027694702, 0.033966064, 0.006580353, -0.036224365, 0.02017212, -0.007911682, 0.027359009, -0.0038833618, 0.01512146, -0.0017080307, 0.070373535, 0.06341553, -0.013694763, 0.024719238, 0.03479004, 0.010261536, -0.025177002, 0.0026893616, 0.03186035, -0.048736572, -0.03050232, -0.023864746, -0.038757324, -0.06414795, 0.011489868, -0.027786255, -0.025100708, -0.016448975, 0.033325195, -0.0029506683, 0.036071777, 0.025848389, -0.0093307495, 0.007419586, -0.018203735, 0.033935547, -0.093322754, 0.046173096, -0.009460449, 0.021865845, 0.02796936, -0.024215698, 0.05432129, 0.0134887695, 0.023040771, 0.026351929, -0.05532837, 0.036865234, 0.023864746, 0.0064353943, -0.0056037903, -0.03186035, -0.031921387, -0.02607727, -0.034210205, 0.0524292, -0.026428223, -0.043670654, -0.00667572, -0.02079773, 0.032684326, 0.00051021576, 0.052947998, -0.026947021, 0.037231445, -0.014167786, 0.024047852, 0.0051193237, 0.06726074, -0.05355835, -0.022949219, -0.005569458, -0.03970337, -0.058044434, 0.01777649, -0.009681702, 0.022567749, -0.03451538, 0.023773193, 0.051574707, -0.04864502, 0.034576416, 0.0017957687, -0.0034866333, -0.012199402, 0.026641846, 0.011024475, -0.012329102, -0.008895874, 0.033355713, 0.014328003, -0.018630981, 0.05319214, 0.01940918, 0.022338867, 0.023101807, 0.030593872, 0.014839172, -0.013343811, -0.00089120865, -0.003396988, 0.02658081, 0.022567749, -0.016204834, 0.0146865845, -0.0037555695, -0.056427002, 0.03515625, 0.000849247, -0.01121521, 0.0057296753, 0.0023612976, -0.0184021, 0.011764526, -0.008171082, 0.057769775, 0.010772705, -0.06137085, -0.019195557, -0.04763794, -0.0052757263, 0.013069153, -0.06781006, -0.012466431, 0.0413208, 0.010093689, 0.013999939, -0.01701355, 0.03265381, -0.0063972473, -0.0044937134, -0.025665283, -0.009727478, 0.02142334, -0.005958557, -0.022994995, 0.005882263, -0.06341553, -0.012817383, -0.03265381, -0.050628662, -0.073791504, 0.03479004, 0.009475708, -0.0647583, -0.0034332275, -0.0075187683, 0.018661499, 0.024871826, 0.0058631897, -0.010795593, -0.02520752, -0.026947021, -0.029830933, 0.045562744, -0.008811951, 0.027923584, 0.043884277, 0.03552246, 0.046722412, -0.01939392, 0.0143585205, -0.022109985, 0.033294678, 0.02178955, 0.010864258, -0.031204224, -0.031311035, -0.005077362, 0.0541687, -0.0028762817, -0.00774765, -0.018814087, -0.0121154785, -0.01687622, 0.0059661865, -0.031585693, 0.0059661865, -0.014633179, -0.0022850037, -0.01134491, 0.0068244934, 0.002937317, -0.085998535, 0.013473511, -0.0446167, 0.015098572, 0.009643555, -0.03353882, 0.05734253, -0.032318115, 0.025039673, -0.019104004, -0.0045776367, -0.03363037, 0.0032196045, -0.027038574, 0.019607544, 0.047973633, -0.07922363, 0.021194458, 0.03427124, 0.0019569397, 0.009742737, -0.003452301, -0.013710022, -0.017608643, 0.020858765, -0.009643555, -0.014190674, -0.02192688, -0.0065841675, -0.020248413, 0.015563965, 0.016311646, -0.015319824, 0.032958984, -0.02949524, -0.081726074, -0.005844116, -0.06286621, -0.009651184, -0.017288208, -0.032409668, -0.014472961, -0.09527588, -0.0012025833, -0.0012969971, 0.015792847, 0.001159668, 0.020004272, 0.027633667, -0.02999878, 0.08300781, 0.026153564, 0.036865234, 0.0035877228, 0.002117157, -0.015060425, -0.029556274, 0.035217285, -0.0022830963, 0.0040740967, -0.060668945, -0.009651184, 0.02041626, 0.0031757355, -0.013366699, 0.009689331, 0.079589844, 0.008926392, 0.015296936, -0.021621704, 0.037475586, 0.009780884, -0.019180298, 0.027267456, 0.01927185, -0.034362793, 0.011734009, -0.080322266, 0.058135986, 0.024124146, -0.014984131, 0.03604126, 0.028808594, 0.011566162, -0.011276245, 0.03982544, -0.0134887695, 0.0385437, 0.022125244, 0.016082764, -0.048919678, 0.0088272095, -0.037628174, 0.02029419, 0.009208679, -0.051605225, 0.038757324, 0.011772156, -0.04800415, -0.054534912, 0.015464783, 0.029968262, -0.0126953125, 0.010147095, -0.04345703, -0.007888794, -0.036102295, 0.03326416, 0.025512695, -0.017501831, 0.004928589, -0.0073547363, 0.02557373, -0.033294678, -0.013252258, -0.014808655, 0.0064086914, 0.005290985, 0.03741455, -0.008453369, 0.0044555664, -0.023864746, 0.013961792, -0.040100098, 0.014663696, 0.018844604, 0.05419922, -0.0071640015, -0.04425049, 0.023513794, -0.030517578, -0.0049858093, 0.058410645, 0.014724731, -0.068359375, -0.024291992, 0.010322571, 0.021911621, -0.036193848, 0.012420654, -0.024978638, 0.00920105, 0.014671326, -0.031433105, 0.009750366, -0.0043144226, -0.0045433044, -0.04547119, -0.026153564, -0.030731201, 0.051696777, -0.03475952, -0.0038414001, -0.020568848, 0.024002075, 0.010070801, 0.0010738373, -0.06329346, 0.016357422, -0.052612305, -0.018218994, 0.04537964, 0.0035953522, -0.024124146, 0.0001591444, -0.01637268, 0.009651184, 0.031829834, -0.03591919, -0.014160156, -0.03756714, -0.031829834, 0.0048828125, 0.021591187, 0.07324219, -0.033050537, 0.023254395, -0.023620605, -0.0010967255, -0.052246094, 0.0039711, 0.03366089, -0.044525146, -0.037994385, -0.006580353, 0.0635376, -0.011062622, 0.0028743744, 0.038909912, 0.025939941, 0.00076150894, -0.010421753, -0.08996582, -0.007858276, -0.0017633438, -0.031555176, 0.007980347, -0.0050468445, -0.016967773, 0.031585693, 0.058380127, 0.0013275146, -0.0138549805, -0.01008606, -0.021774292, -0.019744873, -0.002588272, -0.01133728, 0.016403198, -0.033447266, 0.008918762, -0.06585693, 0.044799805, -0.009117126, 0.0012969971, 0.0029678345, -0.031982422, -0.008857727, -0.023086548, -0.050231934, 0.038970947, 0.049041748, -0.009864807, -0.050811768, 0.022567749, -0.023757935, -0.01235199, -0.021209717, 0.015563965, -0.0022296906, -0.045410156, -0.0061912537, -0.040039062, 0.0032634735, 0.01537323, -0.0021266937, -0.016525269, -0.050201416, 0.038604736, -0.011138916, -0.014930725, -0.001329422, -0.013305664, -0.007659912, -0.029693604, -0.025268555, -0.013061523, -0.028442383, -0.006614685, 0.0154953, -0.01878357, -0.0015897751, 0.0041160583, 0.036102295, -0.016067505, -0.018493652, 0.064941406, -0.003955841, -0.009429932, 0.051452637, -0.009208679, 0.013908386, 0.020202637, 0.0028476715, 0.0004544258, -0.0058288574, -0.037322998, 0.014038086, -0.0018529892, -0.014595032, -0.04953003, 0.10345459, -0.0075149536, 0.024520874, -0.06756592, 0.013366699, -0.0051002502, 0.017288208, 0.009407043, -0.021438599, 0.045043945, -0.035949707, -0.025161743, 0.027633667, 0.00749588, -0.028564453, 0.0009622574, 0.011276245, -0.015304565, -0.016860962, 0.028778076, -0.009719849, 0.020965576, 0.015388489, -0.034606934, 0.038879395, -0.002161026, -0.080200195, -0.03463745, -0.0065956116, -0.01676941, -0.019363403, -0.026031494, 0.00028562546, -0.0008029938, -0.031341553, 0.0011606216, -0.00028300285, 0.0043945312, -0.014770508, -0.03677368, -0.011360168, 0.021575928, -0.010871887, 0.018997192, -0.0054969788, -0.05557251, -0.012374878, 0.03866577, 0.028778076, -0.03265381, -0.022583008, 0.0070495605, -0.027862549, -0.029830933, -0.015113831, 0.012046814, 0.079589844, -0.050750732, -0.06713867, -0.034729004, 0.002456665, 0.026138306, -0.010025024, 0.057556152, 0.04043579, -0.01322937, 0.025177002, -0.0038776398, -0.058288574, 0.0003273487, -0.006816864, -0.051818848, -0.051239014, -0.04309082, -0.008171082, 0.0013237, -0.02003479, -0.026733398, 0.013458252, -0.032196045, 0.020462036, -0.022583008, -0.017547607, -0.019012451, -0.012519836, -0.008018494, 0.00869751, 0.047576904, -0.029205322, 0.044128418, -0.047088623, -0.05239868, -0.013900757, 0.011222839, 0.020401001, 0.018554688, 0.00043654442, 0.026824951, -0.052825928, 0.0037784576, 0.005710602, -0.049316406, -0.015213013, 0.0158844, 0.022735596, 0.03125, 0.0016307831, -0.010124207, -0.008399963, 0.026687622, -0.051879883, 0.03164673, -0.05508423, -0.066833496, -0.039978027, 0.06738281, 0.013427734, -0.042510986, -3.8921833e-05, 0.01260376, -0.021209717, -0.017837524, -0.0016460419, 0.0004274845, -0.0036201477, -0.033172607, -0.039154053, -0.01725769, -0.030456543, 0.0030231476, -0.008277893, -0.0058670044, -0.035461426, 0.02810669, -0.009941101, -0.0018396378, 0.050109863, -0.020874023, -0.002483368, -0.029083252, 0.046417236, 0.0020046234, 0.017150879, -0.009674072, -0.010978699, 0.033599854, 0.04031372, -0.024810791, -0.0791626, -0.005355835, 0.021713257, -0.0020503998, -0.036895752, 0.038604736, 0.020446777, -0.03527832, -0.0019283295, 0.010658264, 0.022521973, 0.029968262, 0.020935059, 0.023452759, -0.01737976, 0.027893066, -0.03427124, -0.028778076, -0.015930176, -0.045318604, 0.009254456, 0.0019950867, -0.017196655, 0.004322052, -0.0020332336, 0.029052734, 0.012039185, 0.0046539307, 0.020599365, -0.030853271, 0.022094727, 0.02255249, -0.017852783, -0.0357666, -0.052703857, -0.012207031, 0.013641357, 0.0052833557, 0.04058838, -0.009727478, 0.044403076, -0.017822266, 0.023513794, 0.01171875, -0.011749268, 0.009986877, 0.013244629, -0.0715332, -0.0892334, -0.05529785, -0.012916565, -0.054748535, -0.0008845329, 0.02557373, -0.015930176, 0.034118652, 0.030319214, 0.032226562, 0.078430176, 0.022079468, 0.037017822, -0.03668213, 0.0024642944, 0.02961731, -0.02571106, -0.011802673, -0.0075302124, -0.0008530617, 0.009857178, 0.0035896301, -0.015777588, -0.001282692, 0.00067281723, -0.0060043335, -0.020889282, -0.014350891, 0.00843811, -0.03579712, 0.020080566, -0.03857422, 0.012619019, -0.02822876, -0.05166626, -0.029464722, -0.020843506, -0.044158936, 0.035339355, 0.0036392212, -0.026947021, -0.012016296, 0.00573349, -0.013931274, -0.013198853, -0.008728027, 0.026977539, -0.016235352, -0.0029335022, 0.026107788, -0.031097412, -0.059173584, -0.025817871, 0.06329346, -0.08258057, -0.05682373, -0.06500244, 0.032196045, 0.010795593, 0.0024719238, 0.04147339, 0.048706055, 0.0037841797, 0.018569946, -0.014060974, -0.031829834, -5.3167343e-05, 0.011985779, 0.0011491776, -0.013191223, -0.05291748, 0.011779785, 0.0055770874, 0.016357422, 0.01171875, 0.014312744, -0.04925537, 0.008308411, -0.016723633, -0.025161743, -0.029129028, 0.003900528, 0.0206604, 0.007583618, -0.026855469, 0.028289795, 0.014259338, 0.020812988, 0.021331787, 0.008476257, 0.030395508, -0.016464233, -0.035461426, -0.02142334, -0.020889282, 0.009315491, 0.031036377, -0.010772705, 0.022262573, 0.01322937, -0.02709961, 0.021591187, 0.015274048, -0.012008667, 0.022476196, -0.010566711, 0.024353027, -0.0016241074, -0.03286743, 0.002811432, -0.02935791, -0.033996582, 0.030944824, -0.01461792, -0.02659607, -0.032714844, -0.008201599, -0.0113220215, -0.04046631, -0.017242432, -0.02798462, -0.017089844, 0.03643799, 0.003479004, 0.029586792, -0.018707275, 0.03265381, -0.0005631447, -0.012481689, 0.030395508, 0.025802612, 0.034729004, -0.050048828, 0.062683105, 0.024765015, 0.027236938, 0.010650635, -0.09173584, -0.054534912, 0.052459717, 0.025497437, -0.041534424, 0.040985107, -0.030639648, 0.0076293945, 0.018035889, -0.036834717, -0.031066895, 0.0236969, 0.045532227, -0.019195557, 0.011665344]}, "B00NCSUZHK": {"id": "B00NCSUZHK", "original": "Brand: Magma\nName: Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "metadata": {"Name": "Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size", "Brand": "Magma", "Description": "", "Features": "New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.06262207, -0.031463623, -0.05847168, -0.00041484833, -0.06185913, 0.00088596344, -0.0390625, 0.022109985, -0.026107788, 0.00724411, -0.02960205, 0.045440674, -0.020370483, -0.014518738, 0.024429321, -0.030944824, 0.040863037, -0.004421234, 0.00919342, -0.021057129, 0.00030231476, 0.0051231384, -0.0039711, 0.029190063, 0.04800415, -0.02104187, -0.018539429, -0.01966858, 0.045806885, 0.023483276, 0.040893555, -0.01789856, 0.047424316, -0.030380249, -0.0016069412, -0.040405273, 0.013412476, -0.035461426, -0.034057617, 0.02772522, 0.00077295303, 0.001373291, 0.004047394, -0.01776123, -0.034423828, -0.013496399, 0.0015592575, 0.019744873, 0.021133423, 0.013580322, 0.0036029816, -0.0016069412, 0.004878998, 0.040100098, -0.0209198, 0.0077285767, -0.033050537, 0.023880005, 0.0035877228, -0.016937256, 0.008148193, 0.028564453, 0.024551392, 0.035888672, 0.0025730133, 0.0146484375, 0.09259033, -0.00033068657, 0.028381348, -0.020477295, -0.015701294, 0.036712646, -0.010353088, 0.009117126, -0.020431519, -0.010803223, 0.011329651, -0.01651001, 0.015701294, 0.022460938, -0.0385437, -0.02822876, -0.00049734116, -0.08099365, 0.03164673, -0.04888916, -0.028686523, 0.0057258606, 0.0135269165, -0.017990112, 0.0053901672, 0.032226562, -0.06793213, 0.049194336, 0.020339966, -0.030258179, -0.036956787, -0.07519531, 0.034820557, 0.0289917, 0.014877319, -0.02999878, 0.047454834, 0.022491455, -0.031921387, 0.026031494, 0.04144287, 0.04727173, -0.013977051, -0.0036354065, -0.032226562, -0.018936157, -0.006401062, -0.075683594, -0.027648926, 0.036743164, 0.014328003, -0.017425537, 0.04284668, -0.034332275, -0.010406494, 0.017593384, 0.03778076, 0.019515991, 0.021331787, 0.035125732, -0.008529663, -0.045562744, -0.1385498, 0.07299805, 0.009941101, 0.009223938, 0.030212402, 0.036224365, -0.024093628, -0.030426025, 0.010406494, 0.010597229, 0.005344391, -0.02432251, 0.013114929, -0.020233154, -0.0038585663, 0.026733398, -0.05770874, -0.009429932, 0.018737793, 0.0154953, -0.032073975, -0.0335083, -0.030822754, 0.029266357, 0.028167725, 0.048858643, -0.009559631, 0.0680542, 0.06878662, -0.008323669, -0.097351074, -0.05343628, -0.057617188, -0.033599854, 0.035858154, 0.036315918, 0.027282715, 0.061340332, 0.027420044, 0.01234436, 0.0151901245, 0.06378174, -0.012039185, 0.014038086, 0.01739502, 0.011711121, -0.018447876, -0.0035476685, -0.013938904, 0.017547607, 0.06549072, -0.077941895, -0.060150146, -0.045959473, 0.11260986, -0.03540039, -0.023498535, 0.05783081, -0.010437012, 0.009887695, -0.0038852692, -0.017120361, 0.025177002, 0.074035645, -0.01612854, -0.010726929, 0.011688232, -0.0063323975, -0.046875, -0.012458801, -0.014572144, -0.007774353, 0.017486572, 0.0002939701, -0.011772156, -0.0014219284, -0.06488037, -0.008880615, -0.017333984, 0.025131226, 0.0053710938, 0.028305054, -0.0039520264, 0.003227234, 0.00573349, -0.0713501, -0.00674057, 0.00592041, -0.034362793, -0.007369995, -0.0037460327, 0.039398193, 0.013946533, 0.010948181, 0.005367279, 0.021850586, 0.015716553, 0.018829346, -0.008087158, 0.011260986, 0.036010742, 0.0284729, -0.0032405853, -0.03024292, 0.08648682, 0.04949951, -0.020965576, 0.052825928, 0.06347656, 0.033691406, -0.04458618, -0.017715454, 0.007583618, 0.013206482, -0.007335663, 0.053955078, 0.07476807, 0.036346436, 0.011108398, 0.016174316, -0.016937256, -0.018600464, 0.02859497, -0.018188477, 0.03878784, 0.051818848, -0.026519775, 0.035247803, -0.028564453, -0.007080078, -0.03604126, 0.03604126, 0.0046463013, 0.07501221, 0.03817749, 0.03062439, -0.016357422, 0.014137268, 0.010765076, 0.03062439, -0.025894165, -0.012817383, 0.04547119, 0.06982422, -0.0181427, -0.03274536, 0.0152282715, -0.025817871, -0.05532837, 0.04949951, -0.011299133, -0.032928467, 0.0011940002, -0.0033187866, -0.034118652, -0.00089645386, 0.03579712, 0.0129852295, 0.006904602, 0.0063056946, -0.02331543, -0.0020523071, 0.024261475, 0.00045704842, -0.033477783, 0.021057129, -0.011894226, -0.023834229, 0.011367798, 0.016677856, -0.00090789795, -0.01033783, 0.02027893, 0.024139404, -0.050445557, 0.029968262, -0.002729416, -0.018951416, -0.00065517426, -0.0021381378, -0.021514893, -0.032989502, -0.029251099, 0.009208679, 0.03878784, -0.03756714, 0.0340271, 0.021316528, -0.0040359497, 0.040039062, 0.010887146, 0.027862549, 0.008239746, -0.0025749207, -0.06451416, 1.8417835e-05, -0.006225586, 0.016525269, -0.0107040405, -0.012161255, -0.062347412, -0.015914917, -0.008171082, -0.046966553, 0.009750366, 0.048187256, -0.0026950836, -0.004497528, -0.009780884, 0.046936035, -0.013641357, -0.056274414, -0.05001831, -0.04953003, -0.004421234, -0.039642334, -0.023101807, 0.012313843, -7.212162e-05, 0.011672974, -0.062164307, -0.02734375, 0.016235352, -0.05218506, 0.0011644363, 0.013725281, 0.016189575, -0.02671814, -0.017333984, -0.0023841858, -0.033416748, -0.05255127, -0.019348145, 0.0012149811, -0.0385437, -0.058410645, 0.05886841, -0.009086609, -0.0713501, 0.017074585, -0.025772095, -0.011077881, 0.06085205, -0.034454346, -0.059143066, -0.0446167, -0.048797607, -0.012191772, 0.036743164, -0.009529114, -0.022598267, -0.0056915283, 0.025466919, 0.021835327, 0.014434814, 0.008865356, 0.010696411, 0.025970459, 0.017745972, 0.0713501, -0.0357666, -0.028213501, -0.033691406, 0.040374756, 0.010292053, -0.0062026978, -0.021255493, -0.018173218, 0.017745972, 0.00078105927, -0.008201599, -0.010787964, -0.11450195, 0.010009766, -0.008224487, -0.03704834, -0.0070381165, -0.09020996, -0.05355835, -0.074035645, 0.013313293, 0.05166626, -0.011352539, -0.025161743, 0.0004606247, -0.020385742, 0.019165039, 0.017745972, 0.0038452148, -0.010421753, 0.017929077, -0.030227661, -0.0115737915, 0.023895264, -0.0032463074, 0.025619507, -0.06161499, 0.0025196075, -0.03366089, 0.034118652, -0.047210693, 0.054138184, -0.013786316, 0.013641357, 0.0158844, -0.007888794, -0.030136108, -0.0025672913, -0.02658081, -0.010856628, 0.0030269623, -0.04272461, -0.00070905685, 0.01473999, -0.010765076, 0.014221191, 0.014701843, -0.043029785, 0.0138168335, -0.018814087, -0.033081055, -0.013786316, -0.047210693, 0.012542725, 0.046905518, 0.041870117, 0.014465332, 0.03692627, 0.01940918, 0.050750732, -0.007987976, 0.0004775524, 0.0026359558, -0.038635254, 0.031982422, 0.008201599, -0.0005350113, -0.021575928, 0.05340576, 0.008155823, 0.0074005127, -0.002981186, 0.001203537, 0.024536133, 0.015594482, -0.011001587, 0.008453369, -0.01914978, 0.005088806, 0.02645874, -0.030288696, -0.022140503, -0.03527832, 0.018692017, -0.06695557, 0.028701782, 0.011665344, -0.014503479, 0.010093689, 0.018814087, 0.018798828, 0.061767578, 0.048675537, -0.016662598, 0.013442993, 0.061798096, -0.020736694, 0.017593384, 0.009010315, 0.0025405884, 0.018188477, 0.016357422, -0.041503906, 0.0012073517, -0.0012397766, -0.039398193, -0.017333984, 0.015205383, 0.018203735, -0.0073776245, 0.015686035, -0.009101868, -0.017990112, -0.022598267, -0.0335083, -0.0058059692, -0.019439697, 0.0038928986, 0.002828598, 0.013580322, -0.031341553, -0.02355957, -0.033294678, 0.010299683, 0.016220093, 0.057403564, -0.045196533, 0.01751709, -0.035308838, 0.0075416565, -0.018341064, -0.024673462, 0.026016235, -0.0010004044, 0.056396484, 0.045440674, -0.029769897, 0.030136108, -0.010955811, -0.0005888939, -0.029449463, -0.06829834, -0.006046295, 0.011360168, -0.01524353, -0.03363037, 0.026412964, -0.051757812, -0.03503418, -0.041809082, -0.0052871704, -0.014198303, -0.044799805, -0.023895264, -0.034606934, 0.009887695, -0.013313293, -0.086364746, -0.09320068, 0.03869629, 0.02078247, 0.013534546, -0.004432678, 0.017288208, -0.025009155, -0.010292053, -0.08782959, 0.021316528, -0.0060577393, 0.007637024, 0.060699463, -0.0758667, -0.015525818, -0.022064209, 0.10723877, 0.020858765, 0.035491943, -0.028930664, -0.009681702, 0.006385803, 0.021072388, 0.020523071, -0.0014429092, -0.0055732727, -0.013626099, -0.017181396, -0.0075645447, -0.024978638, 0.060455322, -0.009773254, 0.0016565323, -0.035583496, 0.005470276, -0.022415161, 0.028945923, -0.0036830902, 0.0025482178, -0.013961792, -0.004749298, -0.060638428, 0.00017011166, -0.0027580261, 0.030944824, 0.0107803345, 0.025177002, -0.023284912, 0.019577026, -0.013832092, 0.021835327, 0.02494812, -0.0037460327, -0.03338623, -0.0017080307, -0.01524353, -0.022033691, 0.02784729, -0.04949951, -0.010643005, -0.06524658, 0.05392456, 0.013366699, 0.00038838387, -0.0012454987, -0.036254883, -0.012794495, -0.043029785, -0.019363403, 0.044921875, 0.01586914, -0.004966736, -0.050994873, -0.002254486, -0.046081543, -0.013801575, -0.0102005005, -0.01386261, 0.04727173, -0.017242432, 0.029159546, 0.026107788, 0.025436401, -0.004299164, -0.0035896301, 0.029769897, 0.0062675476, 0.009803772, 0.058013916, -0.008132935, 0.007926941, 0.012413025, -0.010505676, -0.022079468, 0.038208008, 0.01084137, 0.027908325, 0.0017023087, -0.02558899, 0.03930664, -0.00036096573, -0.025680542, 0.05621338, -0.016799927, -0.026611328, 0.04284668, -0.050109863, -0.0015687943, -0.0023326874, 0.002500534, -0.0077438354, 0.035491943, -0.02671814, 0.005771637, 0.00920105, -0.03805542, -0.0021686554, -0.024124146, 0.006385803, -0.015960693, 0.030960083, 0.004295349, -0.00095558167, -0.055603027, 0.019760132, 0.04321289, 0.026916504, -0.012413025, -0.044677734, 0.026641846, -0.045654297, -0.00075531006, 0.0011234283, 0.011772156, -0.016036987, 0.006690979, -0.00089120865, -0.027282715, -0.035125732, -0.008651733, -0.07183838, 0.009552002, -0.012359619, 0.037109375, 0.00969696, -0.0066566467, -0.028549194, -0.05355835, -0.007987976, -0.021484375, -0.021377563, -0.029571533, 0.013725281, 0.0054626465, -0.023590088, 0.0024433136, 0.049987793, 0.016677856, -0.029190063, -0.0592041, -0.042785645, -0.0071372986, -0.048828125, 0.052978516, -0.020095825, -0.0042686462, 0.009635925, -0.0054512024, 0.0027389526, 0.023117065, -0.057281494, 0.014137268, 0.01638794, 0.050231934, -0.060394287, 0.041168213, 0.06390381, -0.068359375, -0.0256958, -0.058776855, 0.04525757, -0.007850647, -0.021911621, 0.06201172, 0.049865723, -0.0023155212, 0.033843994, -0.015075684, -0.07714844, -0.006324768, 0.0018911362, -0.08312988, -0.042907715, -0.0546875, -0.014640808, 0.017669678, -0.0071868896, -0.030853271, 0.029449463, -0.013450623, -0.03277588, -0.041778564, -0.026245117, 0.010520935, -0.06298828, 0.0072898865, -0.0067710876, 0.004627228, 0.007888794, -0.020141602, -0.042510986, 0.020553589, 0.05014038, 0.0009908676, 0.009590149, -0.021362305, 0.0071105957, 0.007659912, 0.045318604, 0.043029785, -0.05960083, 0.062561035, 0.0119018555, 0.050201416, -0.019851685, 0.052825928, -0.017959595, -0.017471313, -0.050048828, 0.011329651, 0.008705139, 0.0690918, -0.059631348, 0.0076408386, 0.039611816, 0.04360962, 0.03540039, -0.015556335, -3.8981438e-05, -0.031341553, -0.022705078, 0.001209259, -0.032318115, -0.033966064, 0.022491455, -0.014213562, -0.044311523, -0.017959595, -0.037994385, -0.008766174, -0.042144775, 0.039276123, 0.0030765533, 0.032409668, 0.0064849854, 0.033355713, 0.034057617, -0.008636475, -0.0056762695, 0.024856567, -0.024383545, -0.00598526, -0.022842407, 0.01890564, 0.03152466, 0.038909912, 0.017440796, 0.016571045, -0.008148193, 0.0059394836, 0.010482788, -0.03842163, 0.028182983, 0.005508423, -0.014251709, 0.012588501, -0.022781372, -0.0027236938, 0.023452759, -0.01826477, -0.0070991516, 0.011962891, 0.019302368, -0.0011148453, -0.030853271, 0.020523071, -0.043426514, -0.019577026, -0.010009766, 0.0137786865, 0.014595032, 0.007167816, -0.0017852783, 0.029464722, 0.051757812, -0.049560547, 0.009109497, 0.006252289, 0.001832962, -0.07458496, 0.022750854, -0.016708374, -0.0039520264, 0.006340027, -0.013969421, 0.024124146, 0.029754639, 0.016418457, 0.01651001, 0.026306152, -0.041290283, 0.01461792, -0.04574585, 0.05618286, 0.046661377, 0.0138168335, -0.017242432, -0.022537231, -0.013885498, -0.027832031, 0.022827148, -0.012176514, -0.0046844482, 0.002981186, -0.0068969727, -0.0060539246, 0.02734375, -0.035186768, 0.0062026978, -0.0021095276, -0.0018606186, -0.024795532, 0.032104492, 0.0025863647, -0.019195557, -0.017150879, 0.001701355, -0.012718201, 0.032318115, 0.023895264, 0.02947998, 0.012512207, -0.030761719, 0.0030231476, -0.002746582, -0.050476074, 0.040618896, -0.020355225, -0.0009741783, -0.0053710938, 0.0073623657, -0.013786316, -0.030059814, -0.020217896, 0.05545044, -0.0060043335, -0.039642334, -0.019439697, 0.009239197, 0.028076172, -0.061279297, -0.014854431, -0.008056641, 0.02822876, -0.007484436, 0.017532349, -0.0010910034, -0.049041748, -0.048095703, 0.023727417, -0.052520752, -0.02166748, 0.029251099, -0.044708252, -0.015151978, -0.016571045, -0.0087890625, 0.092163086, 0.022521973, -4.5597553e-05, -0.016860962, -0.019058228, -0.015716553, 0.048431396, 0.011192322, -0.017456055, -0.014457703, 0.02003479, 0.0064086914, 0.01411438, 0.01512146, 0.000934124, -0.049438477, 0.008598328, -0.008354187, -0.010475159, -0.008125305, 0.014907837, -0.022766113, -0.0051460266, -0.04385376, -0.06768799, -0.01574707, 0.017837524, 0.032806396, 0.006023407, 0.014083862, -0.005882263, -0.06524658, -0.0039043427, -0.014572144, -0.0026054382, 0.028320312, 0.033081055, 0.017074585, 0.016036987, -0.011184692, 0.0051460266, -0.0016784668, -0.026565552, 0.007598877, -0.011062622, 0.009170532, -0.0035686493, -0.022018433, 0.022262573, -0.024124146, -0.02078247, 0.037078857, 0.062286377, -0.036193848, -0.005847931, -0.01939392, -0.005382538, 0.031433105, -0.025238037, 0.0036849976, 0.0011100769, -0.016845703, -0.0006904602, 0.016677856, 0.013656616, 0.009307861, -0.010856628, -0.01701355, 0.012527466, 0.030838013, -0.0026474, -0.028701782, 0.010116577, 0.015792847, 0.029571533, -0.032928467, -0.032928467, -0.03253174, 0.0059280396, -0.011703491, 0.021835327, 0.017562866, -0.0038375854, 0.006263733, 0.01927185, -0.003572464, -0.013893127, 0.03253174, 0.0446167, 0.008232117, 0.010757446]}, "B0817KW1JV": {"id": "B0817KW1JV", "original": "Brand: All Power America\nName: All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red\nDescription: \nFeatures: 12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG)\n18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load\nFuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start\n2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit\nEPA Certified. Non C. A. R. B. Compliant, not available to ship to California\n", "metadata": {"Name": "All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red", "Brand": "All Power America", "Description": "", "Features": "12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG)\n18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load\nFuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start\n2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit\nEPA Certified. Non C. A. R. B. Compliant, not available to ship to California", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008140564, -0.007865906, -0.014450073, -0.04547119, -0.01701355, 0.005344391, -0.020019531, 0.004787445, -0.04269409, 0.020065308, 0.027893066, 0.022125244, -0.0155181885, -0.025421143, 0.023208618, -0.008583069, 0.018737793, -0.008651733, -0.007965088, -0.012954712, -0.024795532, 0.018585205, -0.035614014, 0.09173584, 0.029129028, -0.028533936, 0.02633667, -0.015609741, 0.053833008, -0.0062675476, 0.03164673, -0.028274536, 0.038879395, -0.029144287, -0.003118515, -0.06982422, 0.022491455, -0.022628784, -0.03564453, 0.0030975342, 0.03189087, -0.021255493, -0.03515625, 0.06719971, -0.041534424, -0.048919678, 0.04937744, 0.0038089752, -0.0051651, 0.0063209534, 0.016860962, 0.013397217, 0.021865845, 0.015563965, -0.009498596, -0.0045204163, -0.034729004, 0.026016235, 0.021911621, -0.01651001, -0.01084137, -0.004371643, 0.020050049, 0.009117126, -0.038604736, -0.0028820038, 0.028335571, -0.019699097, 0.09051514, 0.0046310425, -0.0115356445, 0.049743652, 0.036499023, 0.005935669, 0.0129852295, -0.045318604, 0.029815674, 0.024307251, 0.018875122, 0.011436462, 0.007904053, 0.00856781, 0.014411926, -0.02368164, -0.0031204224, -0.02357483, -0.012619019, -0.011810303, 0.009506226, -0.029174805, -0.002948761, 0.020751953, -0.01586914, -0.0118637085, -0.02432251, -0.045776367, -0.012817383, -0.048431396, 0.028121948, 0.03363037, 0.0077285767, -0.038146973, 0.030303955, -0.005634308, 0.00011265278, 0.017700195, -0.007286072, -0.001121521, 0.032409668, 0.018630981, -0.018661499, -0.001083374, 0.005870819, 0.0077438354, -0.027755737, 0.03137207, -0.0004658699, 0.027633667, -0.0051460266, 0.07373047, 0.021484375, 0.026290894, -0.0065956116, 0.02796936, 0.0057678223, 0.0064315796, -0.027511597, -0.0132751465, -0.045898438, 0.05709839, -0.029785156, 0.019927979, -0.009094238, -0.013420105, -0.026565552, -0.030639648, 0.016921997, -0.01991272, -0.0025539398, 0.0061416626, 0.012290955, -0.028503418, 0.0055122375, 0.016159058, -0.015411377, -0.024108887, 0.017593384, 0.058013916, -0.012168884, -0.027450562, 0.05630493, -0.024612427, 0.0018472672, 0.013755798, 0.0385437, -0.03656006, 0.014877319, -0.029037476, 0.03744507, -0.030654907, -0.0262146, -0.030136108, -0.0015010834, 0.0131073, -0.016815186, 0.032836914, 0.02017212, -0.009086609, 0.0345459, 0.010307312, 0.03781128, 0.025177002, 0.040008545, 0.043914795, 0.012619019, 0.014709473, -0.04977417, 0.0022411346, 0.06323242, -0.104003906, -0.07116699, -0.04977417, 0.045318604, -0.0011091232, -0.0021133423, -0.029525757, 0.036956787, 0.014930725, -0.018829346, 0.018798828, 0.048950195, 0.016723633, -0.01235199, -0.049194336, 0.052734375, 0.0038890839, -0.017044067, -0.025726318, 0.018600464, -0.01612854, 0.06451416, -0.01777649, 0.00856781, -0.024032593, -0.005622864, -0.049987793, 0.012001038, -0.008293152, 0.00034594536, -0.0259552, 0.0029716492, -0.043029785, 0.01876831, -0.027862549, -0.036071777, 0.016204834, -0.0073394775, 0.037597656, 0.010177612, 0.03640747, -0.0026302338, -0.016983032, 0.023239136, -0.009048462, 0.032104492, -0.009979248, -0.017364502, -0.01499176, 0.016784668, 0.0036354065, 0.008644104, 0.036499023, -0.014434814, 0.04296875, -0.029907227, -0.0018482208, 0.04031372, 0.05532837, 0.005882263, -0.030929565, 0.018966675, -0.051635742, -0.014892578, -0.0027122498, -0.013221741, -0.034240723, 0.023147583, -0.004508972, -0.0071411133, 0.024917603, 0.020263672, 0.012329102, 0.028137207, 0.06726074, -0.015487671, 0.011482239, -0.01574707, 0.014152527, -0.03717041, 0.029022217, 0.010887146, 0.06390381, 0.016555786, 0.029388428, -0.010314941, 0.03250122, 0.040740967, 0.043121338, -0.027038574, -0.0015869141, 0.024017334, 0.05407715, -0.0048103333, 0.022399902, 0.021728516, -0.03086853, -0.05105591, 0.015350342, 0.014076233, -0.010238647, -0.0037345886, -0.0055656433, -0.0026245117, 0.0074501038, 0.024780273, -0.010009766, 0.014251709, 0.008628845, -0.077819824, -0.04650879, 0.021728516, -0.060577393, -0.038635254, -0.04534912, 0.014442444, -0.04751587, 0.027114868, -0.028686523, 0.023223877, -0.039367676, 0.042999268, 0.057403564, -0.047088623, 0.044281006, -0.025726318, 0.016815186, -0.05105591, -0.013542175, -0.020233154, -0.031280518, -0.031707764, 0.030319214, 0.030334473, 0.031051636, 0.0104599, -0.0069122314, -0.0029125214, 0.022781372, -0.018966675, -0.012718201, -0.008323669, -0.022018433, 0.03427124, -0.025131226, 0.0038795471, -0.017684937, -0.023635864, 0.008903503, -0.037322998, -0.0115737915, 0.012336731, -0.027542114, 0.00712204, 0.049224854, 0.0014514923, -0.019836426, 0.0040740967, 0.0340271, 0.008583069, -0.04449463, 0.028060913, 0.017807007, 0.024139404, 0.04800415, -0.05126953, 0.013336182, 0.042236328, -0.005065918, -0.036499023, 0.012535095, 0.025787354, -0.013572693, 0.009544373, 0.0010242462, 0.0052604675, -0.079589844, -0.028198242, -0.021469116, -0.06317139, -0.06518555, -0.014915466, -0.03427124, -0.092041016, -0.0135269165, 0.10601807, -0.011817932, -0.017471313, -0.079833984, -0.03540039, -0.041107178, 0.0030155182, -0.047424316, -0.00016069412, -0.017196655, -0.013137817, 0.022949219, 0.012992859, -0.048614502, 0.01776123, -0.014663696, -0.02128601, -0.007827759, -0.011299133, -0.0035953522, -0.009422302, 0.010848999, -0.025985718, -0.002696991, 0.022750854, 0.008125305, 0.044525146, 0.039031982, -0.00081062317, 0.015556335, 0.022842407, -0.0024719238, -0.048187256, -0.023498535, -0.109558105, 0.010002136, -0.060394287, 0.015716553, 0.008781433, -0.012062073, -0.03793335, -0.056365967, -0.045288086, -0.049194336, 0.0031490326, 0.072265625, -0.014564514, 0.030838013, -0.0028438568, 0.014984131, 0.011161804, -0.011695862, 0.0012598038, -0.0018367767, -0.064331055, 0.024093628, 0.050201416, -0.0178833, 0.03289795, 0.033477783, -0.022949219, -0.010551453, -0.027175903, -0.0035057068, -0.018707275, 0.024749756, -0.045562744, 0.0037441254, -0.027908325, -0.015098572, 0.010414124, -0.021911621, -0.018478394, -0.06549072, 0.0020370483, -0.011802673, -0.049926758, -0.028503418, -0.019561768, -0.006515503, 0.005844116, -0.02319336, -0.047180176, -0.054626465, 0.014022827, -0.02003479, -0.0014657974, 0.0074005127, 0.0110321045, 0.004169464, -0.009628296, 0.018188477, 0.0013713837, 0.035003662, -0.0053749084, -0.017150879, -0.029296875, -0.020050049, 0.0014944077, -0.023147583, -0.006095886, 0.0054626465, 0.04321289, 0.034423828, 0.028762817, -0.019729614, 0.023284912, 0.0036582947, -0.018707275, -0.02029419, 0.022079468, -0.0016784668, -0.00045585632, 0.009056091, -0.0013837814, -0.009597778, -0.020599365, 0.00818634, -0.053375244, 0.054504395, 0.032196045, -0.001115799, 0.013832092, 0.024017334, -0.016601562, 0.08721924, 0.0068855286, 0.023162842, -0.011146545, 0.06628418, -0.039398193, 0.056488037, 0.010910034, -0.046173096, 0.0093307495, -0.0003247261, 0.002691269, 0.013885498, -0.012489319, -0.020355225, -0.06488037, 0.030700684, 0.034484863, 0.0037841797, 0.01524353, -0.09375, 0.013458252, -0.04598999, -0.031982422, 0.0029830933, -0.040496826, 0.019973755, -0.078063965, -0.047210693, -0.04345703, 0.034484863, 0.035217285, 0.014808655, 0.029769897, -4.9054623e-05, 0.0026626587, -0.01763916, 0.026748657, -0.02357483, -0.014350891, 0.011123657, 0.020309448, 0.010421753, 0.02267456, 0.008590698, -0.008117676, -0.021148682, -0.01864624, 0.03265381, 0.014007568, -0.053741455, -0.003227234, 0.008781433, -0.015716553, -0.020004272, -0.007911682, 0.04473877, 0.022003174, 0.077819824, -0.07043457, 0.0073127747, 0.009170532, 0.032348633, -0.057556152, -0.061157227, -0.048034668, 0.060546875, 0.028930664, 0.012680054, -0.03161621, -0.029907227, -0.014427185, -0.005794525, -0.028335571, 0.032806396, 0.007637024, 0.009094238, 0.024093628, -0.002161026, -0.04058838, -0.031951904, -0.010818481, -0.0070724487, 0.0390625, -0.044036865, 0.021987915, -0.023529053, -0.0058555603, 0.024887085, -0.00843811, -0.00957489, 0.02720642, 0.004016876, -0.010047913, 0.030044556, -0.07183838, 0.008041382, 0.04852295, -0.041809082, -0.042541504, -0.019439697, 0.07299805, 0.0031929016, 0.046905518, -0.009498596, -0.036254883, -0.019561768, -0.022872925, -0.09661865, -0.07086182, -0.018432617, -0.018844604, -0.0141067505, -0.025314331, -0.0134887695, 0.064697266, 0.017730713, 0.04473877, -0.04989624, -0.023284912, -0.0038414001, 0.009338379, 0.033691406, -0.009475708, -0.018737793, -0.01739502, -0.0047569275, -0.052734375, 0.037078857, 0.025177002, -0.0035896301, 0.020431519, -0.0038719177, 0.006565094, 0.0037651062, -0.023254395, 0.04019165, -0.039794922, 0.017303467, -0.010826111, -0.001701355, 0.022476196, -0.020050049, -0.037872314, -0.055541992, -0.02619934, 0.026367188, 0.010467529, -0.0184021, 0.030548096, -0.009757996, 0.0121154785, -0.017349243, -0.07757568, 0.005607605, 0.029190063, 0.0025196075, -0.004371643, 0.008407593, -0.008178711, -0.017166138, -0.043395996, -0.005176544, -0.068359375, 0.036468506, 0.06414795, -0.009140015, -0.013496399, 0.011398315, 0.008506775, -0.054992676, -0.057617188, -0.0099105835, 0.014968872, -0.03375244, 0.023254395, -0.022094727, -0.005748749, 0.0035266876, -0.012313843, -0.006702423, -0.017578125, -0.019073486, -0.018127441, -0.00023829937, -0.022064209, -0.007865906, 0.08679199, 0.008506775, -0.0045433044, -0.027526855, 0.022659302, 0.0335083, 0.01322937, 0.02835083, -0.025894165, 0.065979004, -0.015960693, -0.039489746, 0.02053833, 0.011726379, 0.008956909, 0.024841309, -0.004722595, -0.0031604767, -0.011726379, -0.017578125, -0.0062942505, 0.028121948, -0.017868042, -0.019241333, 0.009857178, 0.025817871, -0.008842468, 0.01600647, -0.016662598, 0.011054993, 0.032104492, -0.048919678, 0.036895752, 0.027053833, -0.022094727, -0.039642334, -0.050567627, 0.0074653625, -0.050994873, -0.016479492, -0.045684814, -0.039764404, -0.034698486, 0.073913574, 0.0033607483, -0.054260254, 0.034942627, -0.0090789795, 0.0012016296, 0.009468079, 0.019500732, 0.011955261, -0.0058250427, -0.0022068024, -0.00566864, 0.012641907, 0.006996155, -0.03933716, -0.025146484, 0.010498047, 0.031143188, -0.01461792, 0.0022583008, 0.034210205, 0.0025634766, 0.0066375732, 0.033294678, 0.016311646, -0.035125732, -0.021697998, -0.00756073, -0.05279541, -0.048919678, -0.042114258, 0.007904053, 0.0017566681, -0.06359863, 0.0023002625, 0.03845215, 0.035888672, 0.06549072, -0.005847931, -0.0793457, -0.009674072, -0.08288574, -0.0038146973, 0.02331543, 0.005756378, 0.06210327, 0.03616333, -0.03982544, 0.049987793, 0.013595581, 0.029312134, 0.04348755, -0.0016565323, 0.014823914, -0.0038700104, -0.05014038, 0.059570312, -0.005268097, -0.047302246, -0.01537323, 0.03112793, 0.019042969, 0.044677734, -0.01991272, -0.01713562, -0.032836914, 0.004627228, 0.022567749, 0.035217285, -0.06970215, -0.00919342, 0.030319214, 0.05493164, 0.0069732666, 0.047607422, 0.016616821, -0.027008057, -0.021362305, 0.023361206, 0.044921875, -0.046539307, 0.035888672, -0.018325806, -0.01902771, -0.00084781647, -0.04248047, 0.0012464523, -0.0003848076, 0.03488159, 0.03062439, -0.039123535, 0.02960205, -0.049346924, 0.021087646, 0.036102295, 0.05834961, 0.06915283, -0.040771484, -0.012710571, -0.0435791, -0.015670776, 0.0418396, 0.030166626, -0.02720642, 0.060180664, 0.014678955, -0.020568848, 0.034454346, -0.026733398, 0.007106781, -0.021697998, 0.007434845, -0.03125, -0.030380249, -0.005092621, -0.015319824, 0.013023376, 0.008010864, 0.058380127, 0.000233531, 0.0069999695, -0.015655518, 0.021759033, -0.019363403, -0.02192688, 0.014221191, 0.013084412, 0.010986328, -0.0006699562, 0.007003784, 0.01878357, 0.030151367, -0.040893555, 0.015686035, -0.033569336, 0.0036201477, -0.021316528, 0.06463623, -0.008575439, -0.026123047, -0.030548096, 0.001537323, 0.022888184, 0.03552246, -0.019256592, 0.0016841888, 0.03111267, 0.0035381317, 0.0069503784, 0.020889282, 0.017990112, 0.022720337, 0.00022518635, -0.08642578, -0.035736084, -0.0087890625, 0.011199951, -0.017028809, 0.055358887, 0.018676758, -0.039215088, -0.045410156, -0.0067863464, 0.016983032, -0.032196045, 0.022506714, -0.033691406, -0.005508423, 0.021759033, 0.03366089, 0.002046585, 0.020248413, -0.014907837, 0.0029239655, 0.034851074, 0.030929565, 0.046447754, 0.006198883, 0.045043945, -0.036621094, 0.00894928, -0.0050086975, -0.05419922, 0.034698486, -0.01864624, 0.0023231506, -0.027313232, -0.036743164, -0.0063209534, -0.007659912, -0.026901245, 0.05105591, 0.025482178, -0.009994507, 0.0023078918, -0.010482788, -0.00762558, -0.0104522705, -0.00017237663, 0.030929565, 0.04257202, 0.0016965866, 0.028823853, -0.0015802383, -0.04031372, -0.04840088, 0.027496338, -0.055419922, -0.008720398, 0.0047950745, 0.010223389, -0.008605957, 0.016113281, 0.081970215, 0.034240723, 0.04534912, 0.012039185, 0.03857422, -0.0061454773, -0.008583069, -0.029281616, 0.016403198, -0.027450562, -0.018829346, -0.031341553, -0.040924072, 0.049621582, -0.015365601, -0.030456543, -0.0126953125, -0.014953613, 0.012451172, -0.045013428, 0.0021591187, -0.039154053, 0.032989502, 0.017196655, -0.043518066, 0.0043563843, 0.010604858, 0.024337769, 0.01687622, -0.0065994263, 0.035614014, -0.04736328, -0.015838623, -0.0791626, -0.018539429, 0.046173096, 0.018447876, -0.04849243, 0.010467529, 0.002286911, -0.015487671, 0.0042304993, 0.015213013, 0.017166138, -0.027130127, 0.025268555, -0.013931274, -0.019470215, 0.014839172, -0.008224487, -0.028198242, 0.02670288, 0.03955078, -0.054870605, 0.011436462, -0.01979065, -0.047851562, 0.0009975433, -0.06329346, -0.038879395, -0.011177063, 0.057739258, -0.004722595, -0.01802063, 0.03942871, -0.025619507, 0.032684326, 0.030532837, -0.02545166, -0.015975952, -0.014419556, -0.020431519, 0.040161133, -0.0037708282, 0.0107421875, 0.043548584, -0.028564453, -0.09265137, -0.04559326, 0.0055999756, 0.029724121, 0.0021514893, 0.066101074, -0.025848389, 0.009292603, 0.052459717, -0.014266968, 0.03552246, -0.037628174, 0.027740479, 0.015342712, -0.028503418]}, "B010O0ZWWQ": {"id": "B010O0ZWWQ", "original": "Brand: SHASTA VENT\nName: Shasta Vent 8\" Dia. I.D. Class A, All Fuel, SS \"Chimney Cap\" for 8\" Shasta Vent Chimneys\nDescription: \nFeatures: Oil, coal, natural gas, propane burning appliances\nNatural drafting building heating appliances\nZero-clearance factory-built fireplaces\nDouble wall chimney system for residential and building heating appliances\n", "metadata": {"Name": "Shasta Vent 8\" Dia. I.D. Class A, All Fuel, SS \"Chimney Cap\" for 8\" Shasta Vent Chimneys", "Brand": "SHASTA VENT", "Description": "", "Features": "Oil, coal, natural gas, propane burning appliances\nNatural drafting building heating appliances\nZero-clearance factory-built fireplaces\nDouble wall chimney system for residential and building heating appliances", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015930176, -0.039978027, -0.0074043274, 0.0009908676, -0.040527344, 0.0030937195, -0.028778076, 0.002872467, -0.02128601, -0.016296387, -0.013145447, 0.026931763, 0.02293396, -0.04837036, 0.062469482, -0.010940552, 0.04083252, 0.04107666, 0.059448242, -0.0068473816, 0.0073661804, 0.037353516, 0.014755249, 0.05206299, 0.0067443848, -0.009864807, 0.05166626, -0.006755829, 0.008300781, -0.011833191, 0.018447876, -0.018936157, 0.04159546, -0.0095825195, -0.018066406, 0.026443481, -0.006954193, 0.00049734116, -0.016586304, 0.0051994324, 0.0025405884, 0.0061454773, 0.053344727, -0.056762695, -0.0017127991, -0.011428833, 0.030197144, -0.009498596, 0.02809143, -0.032104492, -0.013832092, 0.028457642, -0.005355835, -0.013290405, -0.0066833496, 0.02015686, 0.01335144, 0.019119263, 0.012039185, -0.016174316, -0.028579712, 0.043823242, 0.0075187683, 0.004878998, -0.04537964, -0.012023926, 0.066101074, -0.021881104, 0.024108887, -0.06524658, 0.0016260147, 0.06842041, 0.015022278, -0.053375244, 0.009063721, 0.009376526, 0.018447876, -0.003955841, -0.008926392, -0.0028209686, -0.011749268, -0.016937256, 0.042388916, -0.03781128, -0.021209717, -0.039154053, -0.0079956055, 0.013938904, -0.0184021, -0.0023174286, -0.0057678223, 0.01096344, -0.04232788, 0.019592285, 0.0040283203, -0.029693604, -0.059661865, -0.06774902, 0.0087509155, 0.008636475, -0.002796173, -0.004863739, 0.006801605, -0.0024223328, 0.0004324913, 0.03692627, -0.008659363, 0.01991272, 0.014259338, -0.001033783, -0.0088272095, -0.025756836, -0.022750854, -0.027023315, -0.03201294, 0.005065918, -0.060516357, -0.008628845, 0.017944336, -0.031280518, -0.040283203, -0.014213562, 0.029388428, -0.01600647, 0.020492554, 0.016204834, -0.009994507, -0.0048332214, 0.0025844574, -0.02998352, -0.030593872, 0.026290894, 0.02418518, 0.030776978, 0.011405945, 0.021316528, -0.032226562, 0.02420044, 0.039855957, -0.04034424, 0.020462036, -0.0002799034, 0.05569458, 0.035858154, -0.0016803741, 0.0070762634, 0.0065307617, -0.0016212463, 0.010398865, 0.0075912476, -0.041778564, -0.009742737, 0.01008606, 0.030029297, -0.03463745, 0.032287598, 0.018463135, -0.0022525787, -0.050811768, -0.04159546, -0.03366089, -0.03881836, -0.015472412, 0.019348145, -0.02067566, 0.062286377, 0.07244873, 0.0032081604, 0.009216309, -0.01876831, 0.011268616, -0.0140686035, 0.017120361, 0.02748108, 0.013130188, 0.033843994, -0.057037354, 0.023239136, 0.06121826, -0.06011963, -0.044281006, -0.040649414, 0.07672119, -0.0070877075, 0.010032654, -0.030380249, 0.0053749084, -0.030944824, 0.011894226, 0.0017795563, 0.021194458, 0.05255127, 0.033111572, 0.0060272217, -0.028289795, -0.02645874, -0.045166016, 0.011360168, -0.05392456, 0.032684326, 0.0055236816, -0.016326904, 0.022140503, -0.03225708, 0.004840851, -0.009300232, 0.0012350082, 0.01713562, 0.044189453, 0.026397705, -0.007396698, 0.031188965, -0.021728516, -0.046417236, -0.04159546, 0.032928467, 0.039611816, -0.003791809, 0.010391235, -0.024749756, 0.020614624, 0.007118225, 0.008560181, 0.052764893, 0.012809753, 0.0063285828, -0.017456055, 0.0054855347, 0.009315491, 0.002122879, 0.0079574585, 0.013717651, 0.06359863, 0.086242676, -0.0018033981, 0.027832031, 0.035339355, -0.001543045, -0.010902405, -0.0008029938, 0.02268982, -0.05722046, 0.006259918, 0.06317139, -0.016937256, 0.043426514, 0.037109375, 0.0038871765, -0.0025596619, 0.041809082, 0.062408447, -0.0067977905, -0.012084961, 0.04849243, -0.0065574646, -0.027313232, 0.011917114, 0.010322571, -0.013771057, 0.01777649, -0.0003299713, 0.0769043, 0.012229919, 0.033172607, 0.035064697, 0.011680603, 0.04937744, 0.045806885, -0.052215576, 0.008544922, 0.023071289, 0.0715332, -0.00057935715, 0.05831909, 0.050231934, -0.024719238, -0.025177002, -0.021987915, 0.02532959, 0.023361206, 0.019256592, -0.0413208, 0.055664062, 0.003271103, 0.07849121, 0.0070648193, 0.044555664, 0.0009613037, -0.025939941, -0.008407593, 0.013557434, 0.014083862, -0.018798828, 0.009391785, 0.014266968, -0.019317627, -0.04663086, -0.031707764, 0.038330078, -0.03894043, -0.014427185, 0.05618286, -0.0048294067, 0.009140015, -0.011352539, -0.007896423, 0.009750366, 0.0033664703, 0.00023555756, -0.03765869, 0.020736694, 0.030593872, 0.0501709, 0.033691406, 0.0395813, 0.015655518, 0.009292603, 0.07244873, 0.017959595, 0.010353088, -0.027938843, 0.031585693, -0.043701172, 0.007789612, -0.0012054443, 0.030853271, -0.04360962, -0.00010430813, -0.028564453, -0.010147095, -0.005809784, -0.029891968, -0.016952515, 0.0027179718, -0.014533997, 0.009765625, 0.014129639, 0.016708374, -0.0058517456, -0.018753052, -0.015457153, -0.058410645, -0.021209717, -0.039367676, -0.04296875, -0.03152466, -0.03427124, 0.002286911, -0.007865906, -0.014701843, 0.02268982, 0.009628296, 0.0051231384, -0.045196533, 0.0368042, -0.036499023, -0.049621582, 0.0012426376, 0.03781128, -0.04458618, -0.03677368, -0.02217102, -0.053375244, -0.05444336, 0.0146865845, 0.025772095, -0.05996704, 0.009063721, -0.015853882, 0.0021190643, 0.009460449, -0.014579773, -0.006729126, -0.023712158, -0.03314209, -0.0019779205, 0.026428223, -0.024612427, -0.0101623535, 0.00894928, -0.018997192, -0.012084961, 0.0069236755, 0.017959595, 0.024429321, 0.033599854, -0.012763977, 0.02355957, -0.043518066, -0.019546509, -0.051971436, 0.029388428, 0.03274536, 0.018066406, 0.033599854, -0.01687622, -0.013458252, 0.027420044, -0.12023926, 0.012077332, -0.11114502, -0.0004284382, -0.0016479492, -0.068481445, 0.039031982, -0.15551758, -0.04269409, -0.05923462, 0.028335571, 0.018203735, 0.010566711, 0.021484375, 0.005256653, 0.009422302, -0.020248413, 0.0013427734, 0.030578613, 0.0073509216, -0.011489868, -0.028823853, 0.027999878, -0.045715332, 0.0021209717, -0.0037136078, -0.04272461, 0.026794434, -0.0390625, 0.05609131, -0.06341553, -0.027572632, -0.016021729, -0.023147583, -0.02279663, -0.01701355, -0.015403748, 0.05368042, 0.0011281967, 0.030960083, 0.0038337708, -0.012992859, -0.043914795, -0.023071289, 0.059020996, 0.022750854, 0.019439697, 0.0063323975, -0.014274597, 0.012901306, 0.002023697, 0.046661377, -0.01878357, -0.0068588257, -0.011817932, 0.011932373, -0.05230713, 0.03982544, 0.029342651, 0.03640747, 0.031951904, -0.017440796, 0.0032653809, -0.033172607, -0.027542114, 0.004360199, -0.033599854, -0.053588867, 0.014076233, 0.013084412, -0.0014162064, -0.031158447, -0.019134521, 0.11376953, -0.022277832, -0.024963379, -0.02470398, -0.0647583, 0.0758667, 0.041809082, 0.016220093, -0.06964111, -0.0049552917, -0.0015516281, -0.0848999, 0.08068848, 0.036071777, 0.01058197, 0.018615723, 0.038482666, -0.013046265, 0.0046958923, -0.0042419434, 0.00299263, -0.010192871, 0.028930664, -0.027755737, -0.0033340454, -0.0032444, -0.030075073, -0.0037326813, -0.036315918, -0.024505615, 0.023498535, 0.012886047, -0.0006251335, -0.05480957, -0.008583069, 0.0345459, 0.0032043457, 0.029724121, -0.012367249, 0.010017395, -0.0017204285, -0.021530151, 0.0021915436, -0.023223877, -0.03250122, 0.01940918, -0.0059547424, -0.034851074, 0.015434265, -0.029464722, -0.009460449, -0.008453369, 0.007663727, 0.020462036, 0.007835388, -0.018829346, 0.053375244, -0.02355957, 0.0025291443, 0.013458252, 0.029571533, -0.0015411377, -0.015838623, 0.007347107, -0.0152282715, -0.00818634, 0.022644043, -0.013290405, -0.05316162, 0.0027008057, 0.024276733, 0.0118637085, -0.041778564, -0.008407593, -0.062469482, -5.465746e-05, -0.026351929, -0.038848877, -0.043151855, 0.02331543, 0.026733398, -0.03189087, -0.01612854, -0.03111267, -0.052246094, -0.05014038, 0.031204224, 0.03253174, -0.0019626617, 0.019332886, 0.015563965, -0.035614014, -0.0071105957, -0.0010480881, 0.011062622, -0.025604248, -0.05114746, 0.020233154, -0.047576904, -0.020858765, -0.0033817291, 0.047790527, -0.013031006, 0.015182495, -0.016143799, -0.03869629, 0.018508911, -0.028503418, -0.014450073, -0.00027441978, -0.0005426407, -0.018875122, -0.020462036, -0.019989014, -0.036956787, 0.00687027, -0.041381836, -0.038726807, -0.017211914, 0.070617676, -0.015701294, 0.012268066, -0.003376007, -0.024414062, 0.010223389, -0.021591187, -0.05532837, -0.013694763, -0.00617218, -0.0077171326, 0.01361084, 0.0051879883, -0.014266968, 0.010276794, 0.032287598, 0.011062622, 0.004211426, 0.006832123, 0.030349731, -0.019058228, -0.041290283, -0.010314941, 0.029052734, -0.00065660477, -0.0042915344, -0.042419434, 0.01335907, 0.015434265, 0.015823364, 0.008049011, -0.0068969727, 0.013130188, -0.039154053, -0.030532837, 0.024047852, 0.028076172, 0.04336548, -0.0045700073, -0.010543823, 0.03768921, -0.027130127, 0.015464783, 0.046661377, 0.06390381, -0.04046631, -0.021469116, 0.0076560974, -0.04345703, -0.004131317, -0.017868042, 0.042144775, 0.06500244, -0.042266846, 0.06915283, -0.023803711, -0.006225586, 0.030044556, 0.0046310425, -0.0013122559, 0.00018560886, 0.017578125, 0.023086548, -0.010269165, -0.009712219, 0.030410767, -0.032440186, 0.007217407, 0.06201172, -0.020767212, -0.027420044, 0.06365967, 0.018081665, -0.007183075, 0.0028858185, -0.05633545, 0.02986145, -0.014671326, -0.023162842, -0.005264282, -0.04937744, -0.021133423, 0.052337646, -0.005016327, 0.026565552, -0.0001488924, 0.06713867, -0.0007352829, 0.032287598, -0.06555176, 0.0018129349, 0.00019848347, 0.0038051605, 0.016143799, -0.03250122, 0.033966064, -0.015670776, 0.006340027, 0.030899048, -0.0038528442, 0.017532349, 0.011581421, 0.008522034, -0.03741455, 0.02659607, 0.017044067, -0.03942871, 0.018508911, 0.027175903, -0.020492554, -0.027282715, 0.0071029663, -0.004699707, -0.008705139, -0.029083252, 0.003982544, -0.019058228, 0.032196045, 0.016784668, 0.01399231, 0.022750854, -0.010093689, -0.06201172, -0.010612488, -0.007534027, 0.001086235, 0.008666992, -0.0027561188, -0.0052108765, 0.02053833, -0.0051651, 0.0099105835, 0.023361206, 0.013977051, 0.0049819946, 0.038330078, -0.04977417, 0.050445557, -0.0034885406, -0.0046157837, 0.01007843, 0.007675171, 0.043548584, -0.015571594, -0.051239014, 0.05532837, 0.022338867, 0.020950317, 0.0043640137, 0.03970337, 0.043670654, -0.004699707, 0.042053223, 0.003080368, -0.005004883, 0.020126343, 0.0033607483, -0.06817627, 0.023635864, -0.007209778, 0.017990112, -0.000300169, -0.030166626, -0.024536133, 0.031951904, 0.00013744831, 0.0037593842, -0.03930664, -0.04714966, 0.011177063, -0.041229248, 0.010032654, 0.01600647, -0.0049934387, 0.008102417, -0.014045715, -0.049041748, 0.012039185, -0.0015525818, 0.022399902, 0.029373169, -0.006351471, 0.00579834, 0.010131836, -0.020187378, 0.039520264, -0.045013428, -0.027496338, 0.03668213, 0.140625, 0.045684814, 0.031463623, -0.08276367, -0.085876465, -0.055480957, 0.04849243, 0.051940918, 0.045013428, 0.006706238, 0.044525146, 0.015327454, -0.01423645, 0.0440979, 0.014419556, 0.026290894, 0.024765015, -0.001830101, 0.008659363, -0.012359619, -0.02053833, -0.0013656616, -0.016220093, -0.03515625, 0.0073013306, -0.03503418, 0.012298584, -0.048034668, 0.054718018, -0.022460938, 0.03677368, 0.021011353, 0.04006958, 0.034851074, 0.024673462, -0.04522705, 0.014678955, -0.00031232834, 0.012504578, -0.0025596619, 0.016464233, -0.034057617, 0.0024585724, 0.008857727, 0.029968262, 0.012527466, -0.020751953, 0.013679504, -0.027160645, 0.010650635, -0.019577026, -0.009765625, -0.015403748, -0.019332886, 0.005191803, -0.01737976, -0.004825592, 0.018249512, 0.014160156, 0.036315918, 0.018005371, -0.007835388, 0.0033512115, -0.024368286, -0.045318604, 0.06222534, -0.03878784, -0.012893677, 0.025268555, -0.06011963, 0.024169922, 0.005760193, -0.012420654, 0.004135132, 0.0073547363, 0.012367249, -0.006416321, 0.001490593, -0.05392456, -0.06109619, -0.07147217, -0.032440186, 0.010360718, -0.0076408386, 0.0031032562, 0.037078857, 0.022399902, -0.023483276, 0.03668213, -0.04309082, 0.033355713, 0.013450623, 0.029312134, -0.048614502, 0.0014572144, -0.009475708, 0.011817932, -0.0032863617, 0.06085205, 0.011131287, 0.024520874, -0.003982544, 0.013908386, 0.026855469, -0.022781372, -0.0006804466, 0.0061302185, -0.012901306, 0.011711121, 0.030410767, -0.037231445, -0.0206604, -0.007713318, -0.0102005005, -0.00623703, -0.042419434, -0.032348633, -0.024902344, 0.025405884, -0.028884888, 0.004146576, -0.046661377, -0.02708435, 0.060913086, -0.03378296, 0.014862061, -0.02267456, -0.046447754, -0.045715332, -0.023971558, -0.03640747, 0.036865234, -0.015411377, 0.01449585, -0.014556885, -0.013763428, 0.022583008, 0.041656494, 0.0051956177, 0.07751465, 0.045074463, -0.015617371, -0.016693115, 0.0035686493, -0.021469116, -0.022766113, 0.034698486, -0.054779053, -0.050811768, 0.024658203, -0.022323608, -0.011138916, -0.018630981, -0.03878784, 0.078552246, 0.020568848, -0.024963379, 0.031463623, 0.005153656, 0.0055351257, -0.060821533, 0.0067100525, 0.011810303, -0.017578125, -0.022659302, -0.019058228, -0.033355713, 0.016830444, 0.009552002, -0.015853882, 0.03302002, 0.03616333, -0.08294678, 0.0127334595, -0.03277588, 0.03262329, 0.026733398, -0.03286743, -0.029922485, 0.015007019, 0.009971619, 0.011695862, -0.014091492, 0.055664062, 0.00067567825, -0.057769775, -0.031799316, -0.03567505, -0.009468079, 0.016937256, 0.007030487, 0.026611328, 0.037506104, -0.014831543, -0.0010614395, 0.014045715, 0.015670776, 0.01928711, -0.004585266, 0.005203247, 0.0040016174, -0.018417358, 0.004878998, -0.026290894, 0.013267517, -4.9233437e-05, 0.007106781, -0.023117065, -0.026306152, -0.0231781, 0.008392334, -0.02772522, -0.005832672, -0.052215576, -0.05380249, 0.030395508, 0.03930664, -0.018188477, 0.015029907, 0.017837524, 0.007045746, -0.017166138, 0.011787415, 0.0134887695, 0.006324768, 0.0018777847, 0.018218994, 0.0039482117, 0.054626465, 0.0021457672, -0.04916382, -0.043426514, 0.06500244, 0.043121338, -0.041809082, 0.06878662, -0.03201294, 0.03149414, -0.009788513, -0.034729004, 0.015327454, -0.025497437, 0.12573242, -0.05038452, -0.0021572113]}, "B072JYD7MC": {"id": "B072JYD7MC", "original": "Brand: Unicook\nName: Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More\nDescription: Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

      Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection\uff1a

      \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

      \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

      \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

      \u25cf Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

      Care and Use
      \u25ba Allow grill to cool before covering.
      \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
      \u25ba Air dry for next use.

      Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Fade Resistant Grill Cover\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt.\n\u3010Fabric Handles\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage\n\u3010Fastening Straps\u3011- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off\n\u3010Small Grill Cover Dimension\u3011- 2 burner grill cover measures 32\" width by 24\" depth and 43\" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. \ufe61Be sure to measure your grill first to determine the proper cover size\n\u3010Wide Selection\u3011 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "metadata": {"Name": "Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More", "Brand": "Unicook", "Description": " Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

      Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection\uff1a

      \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

      \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

      \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

      \u25cf Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

      Care and Use
      \u25ba Allow grill to cool before covering.
      \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
      \u25ba Air dry for next use.

      Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.", "Features": "\u3010Fade Resistant Grill Cover\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt.\n\u3010Fabric Handles\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage\n\u3010Fastening Straps\u3011- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off\n\u3010Small Grill Cover Dimension\u3011- 2 burner grill cover measures 32\" width by 24\" depth and 43\" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. \ufe61Be sure to measure your grill first to determine the proper cover size\n\u3010Wide Selection\u3011 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015464783, -0.0016946793, -0.013122559, -0.013656616, -0.018310547, 0.019241333, -0.04711914, -0.010093689, -0.06890869, 0.01977539, 0.012619019, 0.040893555, -0.018081665, -0.026489258, 0.017105103, -0.02432251, 0.00944519, 0.006969452, 0.010444641, -0.019332886, 0.007896423, -0.026062012, 0.007282257, 0.033203125, 0.00089883804, 0.007789612, 0.026992798, 0.011390686, 0.0039749146, 0.0038928986, 0.010726929, -0.027511597, 0.065979004, -0.012939453, -0.061157227, 0.0001655817, -0.017868042, -0.009941101, -0.0491333, 0.030090332, 0.037963867, -0.019226074, -0.0027618408, 0.008331299, 0.01852417, -0.08630371, 0.078308105, -0.061767578, -0.008270264, -0.0011987686, 0.016830444, 0.039611816, 0.018112183, 0.01902771, 0.017211914, 0.058807373, -0.0028324127, -0.009605408, 0.025726318, 0.009689331, -0.013725281, -0.0027256012, 0.011833191, -0.025177002, -0.045715332, -0.013145447, 0.08325195, -0.014274597, -0.072387695, -0.069885254, 0.069885254, 0.027420044, 0.03765869, -0.015975952, 0.010353088, -0.038024902, -0.009132385, 0.0028629303, 0.031021118, -0.0020198822, -0.016906738, -0.041778564, 0.02532959, -0.025726318, 0.0015535355, -0.004257202, -0.01600647, 0.0018939972, 0.01751709, -0.016662598, 0.004535675, 0.057800293, -0.013053894, 0.022506714, -0.0057907104, -0.027053833, -0.01197052, -0.0020008087, 0.019714355, 0.016418457, 0.028564453, -0.035247803, 0.044555664, -0.03125, -0.017608643, 0.07727051, 0.0016584396, 0.01777649, 0.0010433197, 0.0035266876, 0.020431519, -0.051483154, -0.027893066, -0.053222656, -0.024917603, 0.05505371, -0.018432617, -0.05215454, 0.025619507, -0.04727173, -0.07537842, -0.044952393, -0.0062217712, 0.029083252, 0.04107666, 0.02798462, 0.029907227, 0.0234375, -0.020385742, -0.008392334, -0.017303467, 0.021118164, 0.022918701, 0.058013916, 0.023605347, -0.0074691772, 0.08093262, 0.037322998, 0.027954102, 0.0045661926, -0.0501709, 0.01927185, 0.043426514, -0.02255249, -0.023498535, 0.0118255615, 0.0033130646, 0.011047363, 0.011116028, -0.044403076, 0.011894226, -0.039398193, 0.06951904, -0.0044136047, -0.07904053, -0.007171631, 0.030090332, -0.02960205, -0.085876465, -0.082092285, 0.0001552105, -0.022338867, -0.018630981, -0.023452759, -0.02861023, 0.029052734, 0.012611389, 0.013648987, 0.020309448, 0.015640259, 0.018936157, 0.0015668869, 0.0019302368, -0.019088745, -0.014945984, -0.014785767, -0.045440674, 0.109436035, 0.08874512, -0.08154297, -0.05050659, -0.06060791, 0.17358398, -0.040008545, -0.005065918, -0.021530151, 0.026290894, 0.009742737, 0.012283325, 0.008972168, 0.023147583, -0.009086609, -0.0011234283, -0.016357422, 0.0053215027, -0.0058517456, -0.022583008, 0.008018494, -0.0090789795, -0.007881165, -0.030838013, 0.014968872, -0.017242432, -0.008338928, 0.014831543, -0.03994751, 0.008720398, 0.02659607, 0.002494812, -0.0007867813, 0.007247925, -0.015853882, -0.016052246, -0.0070877075, -0.021774292, 0.019485474, -0.018615723, -0.003124237, 0.020324707, -0.021560669, 0.046142578, 0.03656006, 0.020202637, 0.011230469, 0.004814148, -0.0034103394, -0.02255249, 0.004016876, 0.009979248, 0.0051078796, -0.0029830933, 0.038879395, 0.07525635, 0.032562256, -0.018920898, 0.040252686, 0.054840088, -0.0129776, -0.035491943, 0.028015137, -0.0027866364, 0.010665894, -0.02696228, 0.029296875, 0.00079488754, -0.0021266937, 0.0050964355, 0.021575928, -0.040161133, -0.025527954, 0.04168701, 0.013938904, 0.019088745, -0.016464233, -0.017440796, 0.033843994, -0.03652954, 0.012313843, -0.028701782, 0.010421753, -0.01374054, 0.027374268, 0.04269409, -0.014976501, 0.05178833, -0.024536133, 0.026779175, 0.029266357, -0.012809753, -0.009384155, 0.005844116, -0.012176514, -0.0016212463, 0.052124023, 0.029159546, -0.008369446, -0.021911621, -0.014297485, 0.012451172, 0.01675415, 0.02557373, 0.0690918, -0.019439697, -0.0154953, -0.0002105236, -0.019302368, -0.019500732, 0.02545166, -0.01663208, 0.034454346, 0.04824829, 0.00944519, -0.012771606, -0.011886597, 0.007247925, -0.0006928444, -0.007987976, 0.018585205, -0.0026359558, -0.018493652, -0.0115356445, 0.03616333, 0.020050049, -0.03137207, 0.003255844, 0.04269409, 0.022232056, 0.0051994324, 0.013084412, -0.010810852, 0.023132324, 0.040252686, 0.032165527, -0.007686615, 0.061279297, 0.020645142, 0.02229309, 0.062927246, 0.064331055, 0.06304932, -0.05895996, -0.0015192032, -0.018508911, -0.009391785, 0.015838623, 0.031829834, -0.033721924, 0.014671326, -0.0149383545, 0.018615723, -0.0069389343, -0.046173096, -0.05480957, -0.054504395, -0.0011548996, 0.016525269, -0.0052719116, 0.0031394958, 0.005645752, -0.017044067, 0.005847931, 0.012809753, -0.009689331, -0.044311523, -0.06616211, 0.009056091, 0.04537964, 0.017974854, -0.048980713, -0.0043029785, 0.019989014, -0.04550171, 0.006336212, -0.017974854, -0.02204895, 0.050598145, -0.011497498, -0.09667969, -0.057037354, -0.1204834, -0.00982666, -0.024551392, -0.05218506, 0.012611389, 0.06585693, -0.022720337, -0.05218506, 0.015388489, 0.0059127808, -0.013824463, 0.015701294, 0.006164551, -0.06185913, -0.015396118, 0.001912117, 0.008880615, -0.0021629333, -0.03652954, -0.0029907227, -0.02810669, -0.0073013306, -0.022872925, -0.0027656555, -0.05029297, 0.021911621, 0.027908325, 0.011268616, 0.054351807, -0.008674622, -0.037719727, -0.021865845, 0.057769775, -0.035888672, -0.029815674, -0.019180298, 0.03665161, -0.006214142, -0.027618408, 0.022125244, -0.018478394, -0.0690918, 0.009605408, -0.0042495728, -0.035949707, -0.013084412, -0.053009033, -0.031585693, -0.044158936, 0.027908325, 0.046875, -0.013473511, 0.030151367, -0.00014686584, 0.013710022, -0.014915466, 0.008323669, 0.0027446747, -0.011642456, 0.02911377, -0.0017967224, -0.0049743652, -0.006225586, 0.014854431, 0.02960205, -0.029815674, 0.032989502, -0.04788208, 0.009986877, -0.04736328, 0.010673523, -0.019927979, -0.024368286, 0.004802704, 0.019500732, -0.045928955, -0.009506226, -0.003704071, -0.005622864, 0.037353516, -0.0541687, -0.03010559, -0.031463623, 0.013504028, 0.014434814, 0.016784668, -0.009223938, -0.021224976, -0.017822266, -0.038391113, -0.02027893, -0.0059165955, 0.018463135, 0.023086548, 0.030334473, 0.008460999, 0.0637207, 0.027786255, 0.039031982, -0.008529663, -0.011886597, -0.008705139, -0.034240723, 0.032989502, 0.00043344498, -0.022766113, -0.03250122, 0.048034668, -0.012397766, -0.047302246, 0.02482605, -0.047546387, 0.048034668, 0.02571106, 0.00283432, -0.006122589, -0.009552002, 0.009544373, 0.032196045, -0.04534912, -0.030014038, -0.052337646, -0.00079393387, -0.06970215, 0.107788086, 0.07727051, -0.030151367, 0.109558105, 0.0836792, -0.008529663, 0.0234375, 0.020568848, -0.01737976, 0.025405884, 0.019195557, -0.035705566, 0.020843506, 0.016220093, -0.056610107, -0.0093307495, -0.022521973, -0.026412964, -0.020217896, -0.043914795, -0.004333496, -0.003856659, 0.014221191, 0.0075912476, -0.027359009, -0.0021839142, -0.022003174, -0.0026741028, -0.052612305, 0.020263672, 0.016418457, -0.020996094, -0.013717651, 0.029220581, -0.008491516, -0.008590698, -0.0014572144, 0.01083374, -0.011222839, 0.030349731, 0.012870789, -0.0049591064, 0.01940918, 0.00466156, 0.010658264, -0.021957397, -0.019882202, 0.030853271, 0.00687027, -0.029464722, 0.0024795532, 0.01802063, 0.03845215, -0.0012044907, 0.013671875, -0.016479492, -0.02482605, -0.022659302, 0.030822754, 0.045013428, -0.013809204, 0.007888794, -0.04864502, -0.011909485, -0.01335907, -0.023208618, -0.0061302185, -0.03213501, -0.016052246, -0.028274536, 0.008270264, -0.020263672, -0.02218628, -0.051696777, 0.014160156, -0.0075035095, -0.005886078, -0.032287598, 0.062805176, -0.07092285, -0.000603199, -0.02923584, -0.0104522705, 0.070739746, 0.04827881, 0.008377075, -0.007045746, -0.017578125, -0.02394104, 0.017227173, 0.012313843, -0.03189087, -0.022384644, 0.00831604, 0.0017585754, 0.022628784, 0.02507019, 0.020202637, 0.03817749, -0.019363403, 0.01398468, -0.060028076, 0.009635925, 0.038024902, -0.03048706, -0.04260254, -0.036193848, 0.057647705, -0.0011816025, -0.036010742, -0.031677246, 0.025115967, 0.018692017, 0.033966064, 0.02003479, 0.03692627, 0.027267456, 0.012825012, -0.0031433105, -0.00504303, -0.0066223145, 0.020767212, -0.020111084, -0.005054474, 0.008628845, -0.0064964294, 0.02482605, -0.007873535, 0.03955078, -0.020904541, -0.023773193, -0.008003235, 0.0025577545, -0.02468872, 0.06286621, 0.052001953, -0.00554657, -0.0030021667, 0.01108551, -0.01737976, -0.079589844, 0.016067505, -0.037475586, 0.00762558, 0.02494812, -0.0063705444, -0.051330566, -0.014846802, -0.026763916, 0.03704834, -0.0050354004, 0.043548584, -0.018051147, 0.015640259, 0.012535095, -0.014595032, 0.052093506, 0.018753052, 0.006149292, 0.012168884, -0.019256592, -0.023376465, -0.019042969, 0.004878998, 0.008171082, -0.030258179, -0.021850586, 0.008079529, 0.020706177, -0.009346008, 0.019607544, 0.019744873, 0.003704071, -0.040008545, 0.0010986328, 0.019378662, -0.0413208, -0.0524292, 0.031555176, -0.010238647, 0.015594482, 0.046539307, -0.05130005, -0.007545471, 0.02658081, -0.04611206, 0.07336426, -0.011054993, -0.039489746, 0.0063476562, -0.0013513565, 0.011444092, 0.0005283356, 0.034484863, 0.006679535, -0.009628296, -0.03640747, -0.001458168, -0.010322571, 0.036254883, -0.038848877, -0.0079574585, 0.026245117, 0.021408081, -0.004261017, 0.012779236, 0.020843506, -0.01399231, -0.0016803741, 0.0065574646, -0.025894165, -0.04473877, 0.0032234192, -0.027999878, -0.03363037, -0.055145264, 0.005466461, 0.035949707, -0.015625, -0.028411865, -0.05831909, 0.02029419, -0.028182983, -0.033325195, -0.0015468597, 0.02609253, 0.016143799, 0.0069007874, 0.025253296, 0.010864258, 0.007911682, -0.03439331, -0.016326904, -0.02368164, 0.00466156, -0.0115737915, 0.045959473, 0.00856781, -0.0033626556, -0.0011644363, -0.014350891, 0.010292053, -0.026947021, -0.016067505, 0.030776978, -0.00248909, 0.004890442, -0.013641357, 0.025787354, 0.053131104, -0.055847168, -0.024459839, -0.07098389, 0.013198853, -0.025787354, -0.046051025, 0.011070251, 0.008575439, 0.0035820007, 0.023208618, -0.0105896, -0.041381836, 0.024002075, 0.0043411255, -0.09008789, 0.03741455, -0.0048561096, 0.03640747, -0.0109939575, -0.0016422272, -0.01550293, 0.036102295, -0.030380249, -0.01197052, 0.0024166107, -0.006137848, -0.008163452, -0.013076782, 0.024002075, 0.0008621216, -0.004032135, -0.031311035, -0.011878967, -0.05529785, -0.019699097, 0.005264282, 0.03857422, 0.035491943, -0.020858765, 0.020965576, 0.05038452, -0.03842163, 0.06604004, -0.0023345947, -0.03540039, -0.008758545, 0.031143188, 0.04324341, -0.029586792, -0.018127441, -0.016540527, 0.00843811, 0.011451721, 0.027770996, -0.0234375, -0.04135132, -0.06695557, 0.07647705, 0.041992188, -0.0104599, -0.021881104, 0.008270264, 0.03378296, 0.011810303, -0.016525269, 0.030029297, -0.00025248528, 0.005996704, -0.02619934, -0.01965332, 0.0016288757, -0.0034866333, -0.013648987, -0.021942139, 0.04284668, -0.03213501, 0.039520264, 0.003320694, -0.002368927, 0.030456543, -0.0076904297, 0.02810669, -0.012184143, -0.042907715, -0.00049877167, -0.029220581, -0.066833496, 0.023391724, 0.047821045, -0.019226074, 0.011726379, 0.011642456, -0.053009033, -0.007972717, 0.009536743, 0.05508423, 0.033203125, -0.037109375, 0.0076179504, -0.06390381, -0.0074920654, 0.0052719116, -0.0149383545, -0.024230957, 0.07434082, -0.0021400452, -0.0061531067, 0.007270813, -0.0143966675, 0.012504578, 0.008354187, -0.028701782, 0.0028190613, 0.023895264, 0.0024662018, -0.033599854, 0.0022506714, 0.04058838, -0.007881165, 0.012031555, -0.020431519, 0.025802612, -0.021102905, 0.03289795, -0.0071754456, -0.06112671, 0.037261963, 0.03930664, -0.030426025, 0.050598145, 0.019638062, -0.008056641, 0.0029888153, -0.0154418945, 0.024765015, 0.024139404, 0.03149414, 0.031829834, -0.009407043, -0.01020813, -0.015731812, -0.026351929, -0.011451721, 0.009803772, -0.009605408, 0.0006275177, -0.011329651, 0.0031166077, 0.026855469, 0.008621216, -0.04638672, -0.0029792786, 0.04522705, -0.026290894, -0.0033397675, -0.01902771, 0.0014123917, 0.019317627, -0.02670288, -0.0025539398, 0.018569946, -0.0143585205, 0.012374878, 0.014839172, -0.0011072159, -0.03375244, 0.026992798, -0.018829346, -0.019729614, 0.033294678, -0.03074646, -0.009689331, -0.020858765, -0.03817749, -0.034332275, -0.07092285, -0.054107666, 0.070129395, -0.043670654, -0.040985107, -0.022491455, 0.0046081543, 0.012023926, -0.08630371, -0.035308838, -0.025817871, 0.027618408, 0.015609741, 0.0647583, -0.026779175, -0.053009033, -0.06945801, 0.023025513, -0.055358887, -0.0032348633, 0.007610321, 0.0020637512, 0.023788452, 0.015098572, 0.03894043, 0.0736084, 0.02456665, -0.0017375946, -0.0030593872, -0.028320312, -0.05456543, 0.08148193, 0.0028972626, -0.024993896, 0.018188477, 0.052703857, -0.009613037, 0.028549194, 0.024642944, -0.042114258, -0.042816162, -0.018692017, -0.028686523, 0.017074585, 0.0065078735, -0.008430481, 0.01576233, 0.014549255, -0.035247803, 0.030685425, 0.0012512207, -0.0017204285, 0.0019664764, 0.0501709, 0.010787964, 0.007549286, -0.030471802, 0.024002075, -0.016571045, 0.009536743, 0.016937256, -0.026824951, -0.0056381226, 0.013404846, -0.008682251, -0.00642395, 0.019012451, 0.008010864, -0.0041160583, 0.015823364, -0.010147095, -0.02684021, 0.0008635521, -0.019012451, -0.011451721, -0.050567627, 0.029006958, 0.030075073, -0.019729614, 0.018341064, -0.0010137558, -0.016601562, 0.031677246, 0.017059326, -0.0038852692, -0.023071289, -0.00919342, 0.026626587, 0.0012521744, -0.0054359436, -0.013969421, -0.012435913, -0.040130615, -0.0054130554, 0.024871826, -0.009361267, -0.011734009, -0.02319336, 0.009361267, 0.055633545, -0.041900635, -0.044708252, -0.07299805, 0.050964355, 0.008674622, -0.0017709732, 0.047729492, 0.0019798279, 0.015838623, 0.038757324, -0.017578125, -0.0104522705, 0.016647339, 0.03466797, 0.018692017, 0.018920898]}, "B08P38XD3T": {"id": "B08P38XD3T", "original": "Brand: CEMGYIUK\nName: Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)\nDescription:
      FEATURES:

      -Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
      -Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
      -Water-Resistant,All Weather Protection
      dual propane tank cover rv
      rv propane tank cover double
      travel trailer double propane tank cover
      travel trailer propane tank cover
      \nFeatures: \u2665FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28\"x 12\"x 18\"inch ( (71cm x 30.5cm x 45.7cm)\n\u2665Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank.\n\u2665propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal.\n\u2665EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements\n\u2665100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.\n", "metadata": {"Name": "Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)", "Brand": "CEMGYIUK", "Description": "
      FEATURES:

      -Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
      -Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
      -Water-Resistant,All Weather Protection
      dual propane tank cover rv
      rv propane tank cover double
      travel trailer double propane tank cover
      travel trailer propane tank cover
      ", "Features": "\u2665FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28\"x 12\"x 18\"inch ( (71cm x 30.5cm x 45.7cm)\n\u2665Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank.\n\u2665propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal.\n\u2665EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements\n\u2665100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013000488, -0.028152466, -0.024658203, -0.04058838, -0.013847351, -0.010108948, -0.001449585, 0.044952393, -0.046081543, -0.003932953, -0.028198242, 0.037231445, -0.083862305, -0.021331787, 0.02418518, -0.056518555, 0.02658081, -0.02520752, -0.02482605, -0.042999268, -0.013465881, -0.041290283, 0.00957489, 0.060760498, 0.013160706, -0.00724411, 0.033111572, -0.008590698, 0.00737381, -0.014862061, 0.02760315, -0.004432678, 0.04751587, -0.011528015, 0.018844604, 0.04876709, 0.018203735, -0.015457153, -0.0034599304, 0.013282776, -0.018096924, 0.010864258, 0.03918457, 0.0058174133, 0.007282257, -0.05038452, 0.025131226, -0.040740967, 0.008003235, -0.009246826, -0.0067634583, -0.010025024, -0.0020160675, -0.029373169, -0.003917694, 0.024658203, 0.030258179, -0.05429077, 0.0054626465, -0.006778717, 0.012290955, 0.025283813, 0.03604126, 0.037872314, -0.045043945, 0.020263672, 0.017562866, -0.03756714, 0.012458801, -0.024734497, 0.0067481995, 0.002243042, 0.042510986, -0.025253296, -0.037963867, -0.003704071, -0.00052022934, 0.00014662743, 0.0236969, -0.029159546, 0.023117065, -0.034301758, 0.043884277, -0.011001587, -0.009819031, -0.019378662, 0.0070762634, 0.0034103394, -0.0075302124, -0.0015077591, -0.006137848, 0.0011672974, -0.002149582, -0.001247406, -0.029296875, -0.009162903, -0.026123047, -0.031341553, 0.05456543, 0.027572632, 0.0137786865, -0.046539307, 0.03756714, -0.019897461, 0.0053215027, 0.03579712, 0.005016327, 0.0132369995, 0.03744507, -0.001405716, -0.011909485, 0.032104492, 0.0021915436, -0.011123657, -0.010002136, 0.031982422, -0.023025513, 0.030456543, -0.0021381378, 0.02897644, -0.055664062, -0.021530151, -0.048339844, 0.0018100739, 0.027145386, -0.0009689331, 0.00075531006, 0.060516357, -0.048858643, 0.07232666, -0.010543823, -0.028167725, -0.015960693, 0.058746338, 0.015792847, -0.025863647, 0.028060913, 0.0041236877, -0.017608643, 0.017700195, -0.046417236, 0.013938904, 0.042114258, -0.049591064, -0.08306885, 0.051849365, 0.015686035, -0.020385742, -0.030715942, -0.07928467, -0.03567505, -0.045684814, 0.029846191, 0.025360107, -0.039642334, 0.0010118484, 0.022628784, -0.017852783, -0.03265381, -0.06317139, -0.021911621, -0.034423828, -0.030654907, -0.009429932, -0.040008545, 0.054656982, 0.025421143, 0.008148193, 0.022415161, 0.042999268, 0.03274536, 0.041259766, 0.026046753, 0.019561768, 0.008590698, -0.034942627, -0.004634857, 0.09869385, 0.056274414, -0.11981201, -0.07159424, -0.066223145, 0.14880371, -0.06414795, -0.022460938, -0.029815674, -0.00015902519, -0.025344849, 0.04135132, -0.011955261, 0.025466919, 0.0061912537, 0.009216309, -0.013442993, 0.0015802383, -0.012481689, -0.03656006, 0.001821518, -0.019424438, 0.003929138, -0.023727417, 0.003276825, 0.008514404, 0.03289795, 0.038757324, -0.014129639, 0.012207031, 0.0014572144, -0.032226562, -0.0058898926, 0.018875122, -0.029022217, 0.014274597, -0.03845215, -0.008895874, -0.006416321, 0.0012359619, 0.02394104, -0.022598267, 0.0124053955, 0.017150879, -0.03289795, 0.008460999, 0.057647705, -0.031951904, -0.017105103, -0.017745972, 0.0025348663, -0.0001385212, -0.020309448, 0.0859375, 0.025527954, 0.041168213, 0.0041122437, -0.027954102, 0.023223877, 0.034973145, -0.02822876, -0.017578125, 0.03616333, 0.01209259, -0.02166748, -0.027801514, 0.0046424866, 0.0069885254, -0.043792725, -0.012046814, 0.021224976, -0.008514404, 0.0044555664, 0.06384277, -0.016189575, 0.018203735, -0.02708435, -0.0059776306, 0.020996094, -0.038024902, 0.018310547, -0.014839172, -0.0032863617, 0.001964569, 0.02684021, 0.029159546, 0.00083351135, 0.02355957, -0.03942871, 0.049713135, 0.03918457, 0.025970459, -0.037475586, -0.009468079, -0.00091362, 0.0033740997, 0.04031372, -0.043029785, 0.029129028, -0.006587982, 0.0011348724, -0.014045715, 0.008895874, 0.000831604, 0.00907135, 0.013381958, -0.011940002, 0.02279663, 0.014228821, 0.01979065, 0.011199951, -0.03869629, 0.004787445, 0.035339355, 0.023086548, -0.01612854, -0.015365601, 0.035705566, -0.0019140244, 0.048309326, -0.032806396, 0.03668213, -0.011558533, -0.013381958, 0.05947876, -0.00047278404, 0.006111145, 0.009613037, 0.0008249283, 0.014328003, 0.010627747, 0.0058403015, -0.006187439, -0.02154541, 0.0052986145, 0.008888245, -0.0115356445, 0.044952393, 0.0259552, 0.016174316, 0.042297363, 0.07672119, 0.093322754, 0.005783081, 0.018936157, 0.014251709, 0.011024475, 0.030059814, -0.042755127, 0.0048179626, -0.0058898926, -0.022125244, -0.015434265, 0.01600647, -0.046569824, -0.012130737, 0.0021858215, 0.017608643, 0.0023612976, -0.00068473816, 0.025985718, 0.0062408447, -0.030166626, 0.017303467, -0.0035629272, 0.002658844, 0.018310547, -0.046325684, -0.038726807, 0.06329346, -0.012428284, -0.035247803, 0.0010175705, 0.04071045, -0.014060974, -0.008071899, -0.050933838, 0.0022964478, 0.010566711, -0.015701294, -0.023773193, 0.034484863, -0.06414795, 0.00042557716, -0.037902832, -0.054382324, -0.035583496, 0.07537842, 0.00055265427, -0.07611084, -0.031677246, 0.036987305, 0.036315918, -0.0037708282, 0.020492554, -0.050598145, -0.012390137, 0.012123108, -0.008094788, 0.0010595322, -0.04724121, 0.020812988, -0.0037727356, -0.014816284, -0.00045585632, 0.000954628, 0.034332275, 0.005973816, 0.036743164, 0.06021118, 0.055145264, 0.002029419, -0.031799316, 0.009490967, 0.057739258, 0.016799927, -0.025299072, -0.0031986237, 0.00025224686, -0.03744507, 0.03604126, -0.024642944, 0.0020980835, -0.061798096, 0.0014095306, 0.002861023, -0.024780273, 0.00894165, -0.04864502, -0.023864746, -0.051727295, 0.0335083, 0.020263672, -0.02381897, 0.03050232, -0.025939941, 0.02809143, -0.015045166, 0.006614685, 0.001821518, 0.0039749146, -0.035736084, -0.003047943, 0.0473938, -0.050872803, 0.019378662, 0.030822754, -0.025421143, 0.0014095306, -0.0069885254, 0.0015821457, 0.023361206, 0.030563354, -0.018753052, 0.005138397, -0.008163452, -0.019134521, -0.036071777, -0.034423828, -0.0030918121, -0.03933716, 0.024368286, -0.033447266, -0.04196167, 0.009223938, 0.03894043, -0.0023040771, 0.02104187, -0.02861023, 0.03010559, -0.0075187683, -0.0023880005, 0.014984131, -0.003545761, 0.021392822, 0.0018072128, -0.001704216, -0.029266357, 0.0023326874, 0.020126343, 0.0418396, -0.010391235, 0.011116028, 0.008918762, -0.024642944, 0.016296387, -0.005065918, 0.0035915375, -0.03125, 0.05935669, -0.0020065308, 0.016235352, -0.009231567, -0.021697998, 0.012779236, 0.009796143, -0.014892578, 0.0007619858, 0.014297485, 0.010032654, -0.0231781, 0.018341064, -0.025939941, -0.055786133, 0.0024909973, -0.1026001, 0.07952881, 0.026123047, -0.018692017, 0.09075928, 0.101257324, -0.0010194778, 0.035949707, 0.03173828, 0.0054092407, 0.029647827, 0.024551392, -0.013168335, -0.0013074875, -0.005466461, -0.04940796, 0.026153564, 0.0044174194, 0.03326416, -0.009346008, -0.015136719, -0.027282715, -0.04260254, -0.018417358, 0.009124756, 0.0009007454, 0.012130737, -0.032196045, 0.00048398972, -0.019805908, 0.011512756, 0.014862061, -0.015426636, -0.0033473969, -0.0013904572, 0.010498047, -0.029418945, -0.013137817, -0.013374329, 0.012969971, 0.021942139, 0.03918457, -0.02947998, -0.008468628, -0.0053520203, -0.005039215, -0.029037476, 0.0053863525, 0.012458801, 0.0184021, -0.005886078, -0.040252686, 0.040283203, -0.0082092285, -0.009651184, 0.020187378, -0.010871887, -0.058441162, -0.0075950623, 0.041229248, 0.027114868, -0.01675415, -0.011878967, -0.022888184, -0.059020996, -0.014251709, -0.055267334, 0.003993988, -0.039489746, -0.017974854, -0.058044434, -0.035095215, -0.033813477, 0.029586792, -0.014343262, 0.0059165955, -0.0055732727, -0.0013418198, -0.023223877, 0.057769775, -0.038208008, -0.024459839, 0.007282257, 0.026916504, -0.01737976, -0.023162842, 0.03387451, -0.029129028, -0.017578125, -0.017852783, -0.018554688, -0.035980225, -0.0209198, 0.0032291412, -0.0024089813, 0.0038642883, 0.031951904, 0.027954102, -0.027511597, 0.049987793, 0.018295288, 0.04824829, -0.068237305, 0.0048065186, 0.024810791, -0.030563354, -0.064575195, -0.018096924, 0.07940674, 0.0043258667, -0.03262329, -0.03338623, 0.038391113, 0.04159546, 0.0018186569, -0.027633667, -0.008262634, 0.021881104, -0.031311035, -0.024917603, -0.02645874, -0.019165039, 0.07897949, 0.010093689, -0.0018482208, -0.005027771, 0.010620117, 0.05670166, -0.014457703, 0.02558899, -0.031799316, -0.020309448, 0.005054474, -0.013023376, -0.07458496, 0.090148926, 0.057617188, -0.00497818, 0.013946533, -0.012451172, -0.010856628, -0.039367676, -0.046966553, -0.015304565, 0.0602417, 0.0038967133, -0.029891968, 0.015098572, -0.0059547424, 0.006549835, -0.01977539, -0.045135498, -0.0038661957, 0.0446167, -0.0057792664, -0.015571594, -0.022613525, 0.025558472, 0.046813965, -0.012077332, -0.0027160645, -0.043182373, -0.017562866, -0.009773254, -0.0025920868, 0.025527954, -0.02999878, -0.012954712, -0.019973755, 0.014129639, -0.061462402, 0.07165527, 0.047607422, 0.033203125, -0.041046143, -0.0015859604, 0.0032978058, -0.01902771, -0.06341553, 0.0126953125, 0.0046920776, 0.010467529, 0.018920898, 0.003232956, -0.005569458, -0.0028324127, -0.005405426, 0.01991272, -0.027893066, -0.060699463, 0.0155181885, 0.039794922, 0.021484375, -0.05630493, 0.054107666, -0.0135269165, -0.046142578, -0.019485474, 0.015716553, -0.042053223, -0.018722534, -0.044647217, 0.0067634583, 0.0184021, -0.03945923, 0.010917664, -0.0036392212, 0.078186035, -0.021713257, 0.033050537, 0.024307251, 0.021026611, -0.066345215, -0.0030517578, -0.018753052, 0.008865356, -0.023071289, -0.016418457, 0.0103302, 0.013298035, -0.0070495605, -0.01550293, 0.0071792603, -0.0047798157, -0.042266846, -0.020614624, 0.0070266724, 0.015617371, -0.013839722, -0.0101623535, 0.033294678, 0.024810791, -0.087402344, -0.02128601, 0.00415802, 0.030517578, 0.01259613, 0.06585693, -0.029876709, -0.04095459, -0.035217285, 0.0027275085, 0.018478394, -0.05834961, -0.059265137, -0.035064697, 0.009292603, 0.015617371, -0.01612854, 0.023788452, 0.010696411, -0.028823853, 0.0020771027, -0.031982422, 0.012527466, -0.0074920654, -0.045043945, 0.04434204, 0.04916382, -0.0053977966, 0.016586304, -0.011924744, -0.03265381, 0.006111145, 0.012054443, -0.10119629, 0.011238098, -0.009841919, 0.027893066, -0.019851685, -0.006210327, -0.04827881, 0.026412964, -0.044189453, -0.0009551048, -0.034362793, 0.00058221817, -0.013282776, -0.040802002, 0.021942139, -0.027801514, -0.0020370483, -0.013221741, -0.024383545, -0.0657959, -0.041229248, -0.0052604675, 0.021957397, 0.012130737, 0.018966675, -0.010047913, -0.013648987, -0.028503418, 0.027923584, 0.012687683, -0.033081055, 0.022857666, 0.035980225, -0.0007004738, -0.008354187, -0.028381348, -0.004058838, 0.0014362335, -0.010185242, 0.018157959, -0.002714157, -0.051757812, -0.06585693, 0.07678223, 0.040924072, -0.005794525, -0.01864624, 0.020004272, -0.0026874542, -0.037384033, -0.015159607, 0.017669678, -0.027023315, 0.012161255, -0.03048706, 0.009880066, 0.015975952, -0.011756897, 0.0052604675, -0.027282715, 0.06262207, -0.039855957, 0.029586792, 0.0073051453, -0.003774643, 0.035614014, -0.02619934, 0.037719727, -0.030578613, -0.0045433044, 0.014907837, -0.0018033981, -0.066833496, 0.019134521, 0.032318115, -0.023468018, 0.0211792, 0.013679504, 0.0033721924, -0.023040771, -0.037872314, 0.049743652, -0.017837524, -0.032470703, 0.01687622, -0.042236328, -0.02720642, 0.016983032, 0.02935791, -0.028030396, 0.047912598, -0.009254456, 0.017562866, -0.006263733, -0.0028381348, -0.0028190613, -0.039245605, 0.06500244, -0.007068634, -0.017303467, -0.013542175, -0.0057296753, 0.032409668, 0.026229858, -0.0110321045, 0.034698486, -0.033355713, 0.011123657, -0.00944519, -0.022903442, -0.042266846, -0.03768921, 0.03643799, 0.03427124, -0.03555298, -0.018066406, -0.02067566, 0.029129028, -0.0054244995, -0.038513184, 0.02734375, -0.056488037, 0.031143188, 0.016464233, 0.01084137, -0.07647705, -0.041992188, -0.0055618286, -0.01361084, -0.01083374, 0.07366943, -0.00605011, 0.036071777, -0.008865356, 0.008323669, 0.024520874, -0.0072402954, 0.002916336, -0.014915466, -0.018875122, 0.005054474, -0.027679443, -0.014274597, -0.029083252, 0.0070877075, 0.031799316, -0.017425537, -0.010002136, -0.041015625, 0.007926941, 0.0011444092, -0.021377563, 0.011276245, 0.006412506, -0.03881836, -0.018051147, -0.0038337708, 0.022994995, -0.050079346, -0.043151855, -0.015991211, -0.05923462, -0.04586792, 0.07281494, -0.02520752, -0.026809692, 0.0025024414, 0.018218994, -0.000767231, -0.0597229, -0.029022217, -0.0022640228, -0.012466431, 0.002910614, 0.046051025, -0.005104065, -0.06488037, -0.07067871, -0.0018911362, -0.01914978, 0.00031900406, -0.0025749207, -0.0033416748, 0.017181396, -0.000110685825, 0.03086853, 0.07623291, 0.030227661, 0.0017404556, 0.015167236, -0.050628662, -0.033599854, 0.04159546, 0.010887146, -0.037902832, -0.023590088, 0.034606934, -0.0031051636, -0.010009766, 0.0047798157, 0.012145996, -0.0491333, 0.012176514, -0.010772705, -0.028839111, -0.015716553, -0.011566162, 0.03451538, 0.024551392, -0.00944519, 0.0140686035, 0.025283813, -0.009140015, 0.01260376, -0.049346924, 0.03125, -0.0011672974, -0.012329102, -0.05819702, -0.022109985, -0.008605957, 0.015426636, -0.089416504, -0.034118652, 0.019378662, -0.000623703, -0.046691895, 0.022018433, 0.06726074, 0.008590698, 0.0049591064, -0.0070610046, -0.016555786, -0.016799927, -0.0074043274, -0.015686035, -0.052581787, 0.011199951, 0.046447754, -0.041656494, -0.008651733, -0.0024681091, -0.0060195923, 0.0029468536, -0.00756073, -0.06359863, -0.056640625, 0.04232788, 0.052581787, -0.030212402, -0.022079468, 0.0013599396, 0.02607727, -0.008453369, 0.0140686035, 0.0013570786, 0.011795044, 0.01084137, 0.02268982, -0.0026741028, 0.08099365, -0.035369873, -0.08892822, -0.047302246, -0.0029125214, -0.008216858, 0.010795593, 0.027664185, -0.005962372, 0.0066490173, 0.039001465, -0.026260376, -0.05343628, 0.01676941, 0.016723633, 0.023376465, 0.025680542]}, "B07F2VP353": {"id": "B07F2VP353", "original": "Brand: Fire-Maple\nName: Fire-Maple \"Fixed Star 1\" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use\nDescription: Portable Propane Stove Burner for Camping
      The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

      Specifications:
      Materials: Aluminum, stainless steel, copper, silicone
      Open: \u0424128x173mm
      Weight: 1.13Ib/511g

      \nFeatures: HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves.\nCOMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz!\nINTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly.\nSAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure.\n30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!\n", "metadata": {"Name": "Fire-Maple \"Fixed Star 1\" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use", "Brand": "Fire-Maple", "Description": "Portable Propane Stove Burner for Camping
      The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

      Specifications:
      Materials: Aluminum, stainless steel, copper, silicone
      Open: \u0424128x173mm
      Weight: 1.13Ib/511g

      ", "Features": "HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves.\nCOMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz!\nINTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly.\nSAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure.\n30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.044830322, -0.017990112, -0.027557373, -0.020431519, -0.024993896, 0.023773193, -0.033935547, -0.0016069412, -0.05328369, 0.005004883, -0.025039673, 0.027191162, -0.023208618, -0.03665161, 0.045806885, -0.06384277, 0.0009484291, 0.02859497, -0.011627197, -0.046936035, 0.006351471, -0.048614502, -0.02670288, 0.10675049, 0.017028809, -0.0099487305, -0.04724121, 0.016906738, 0.0034217834, 0.009429932, 0.0071144104, 0.011260986, 0.026428223, 0.0044059753, -0.04510498, -0.07147217, -0.013404846, -0.0018730164, -0.046325684, 0.028503418, 0.008850098, -0.003320694, -0.006023407, 0.009292603, -0.015235901, -0.017868042, 0.008735657, -0.04449463, -0.012969971, 0.04812622, 0.004211426, -0.016067505, -0.016204834, 0.031280518, -0.0033092499, 0.0012998581, 0.042144775, 0.018005371, -0.005207062, -0.0135269165, -0.020401001, 0.06237793, 0.007217407, 0.025115967, -0.028076172, 0.0107803345, 0.053588867, -0.0073432922, 0.017318726, -0.021148682, -0.001906395, 0.018249512, 0.0023612976, 0.030593872, -0.049591064, -0.018127441, 0.024917603, -0.008216858, 0.03741455, 0.0033855438, -0.047302246, -0.022201538, -0.015670776, -0.066833496, 0.024658203, -0.04031372, -0.018753052, 0.011482239, -0.020202637, -0.03982544, -0.017837524, -0.00422287, -0.04449463, 0.008583069, -0.032318115, -0.006008148, 0.0051078796, -0.01876831, 0.022872925, -0.0005068779, 0.01637268, -0.020523071, 0.009788513, -0.005420685, -0.012191772, 0.07495117, 0.050598145, 0.02784729, -0.01953125, -0.034210205, -0.011146545, 0.004257202, 0.013366699, -0.007259369, 0.006511688, 0.008003235, -0.020462036, 0.053833008, 0.0018062592, 0.021499634, -0.028503418, -0.005340576, -0.0035152435, 0.00598526, 0.032287598, 0.008331299, -0.0047416687, 0.010017395, -0.008094788, 0.04269409, -0.02558899, 0.011413574, 0.022521973, 0.008903503, -0.03488159, -0.015457153, 0.0061950684, 0.028366089, 0.0025787354, -0.02796936, 0.010574341, -0.0048980713, 0.0071029663, 0.019378662, -0.02670288, -0.0072631836, 0.018539429, 0.029281616, -0.0057754517, -0.03527832, 0.024093628, -0.014572144, 0.024841309, 0.013252258, -0.024642944, 0.008987427, 0.0074882507, -0.008972168, -0.02218628, -0.027999878, 0.0010023117, -0.011260986, -0.006038666, 0.040771484, -0.0018501282, 0.038360596, 0.016052246, -0.0032672882, 0.007019043, 0.041412354, -0.012367249, 0.053588867, -0.022750854, -0.022659302, -0.0029945374, -0.042877197, -0.02456665, 0.08392334, 0.04550171, -0.080322266, -0.039245605, -0.056396484, 0.11035156, -0.021591187, -0.018356323, -0.02432251, 0.010292053, -0.033203125, 0.0016899109, -0.002046585, 0.053771973, 0.044647217, -0.015701294, 0.016342163, -0.020568848, -0.026000977, -0.0463562, 0.0054855347, -0.033233643, 0.007484436, -0.043121338, -0.0023975372, -0.019439697, -0.0071029663, -0.026275635, -0.04626465, 0.003894806, 0.030654907, 0.022232056, 0.055999756, -0.003742218, 0.0002503395, -0.0011053085, -0.02027893, 0.018539429, 0.01991272, -0.009414673, 0.011878967, 0.008407593, 0.005432129, 0.02720642, 0.0010995865, 0.020217896, 0.012641907, -0.007762909, -0.028182983, -0.016342163, -0.0063972473, -0.008552551, -0.010719299, 0.0042419434, 0.03427124, 0.034210205, 0.014389038, -0.005554199, 0.04837036, 0.08654785, 0.04699707, -0.01309967, -0.029434204, -0.0038318634, -0.008468628, -0.047424316, 0.019470215, -0.031158447, 0.016723633, 0.022369385, 0.018341064, -0.020339966, 0.033569336, 0.024810791, 0.017074585, 0.0018291473, 0.024612427, -0.03756714, 0.016677856, -0.010284424, 0.040374756, -0.01108551, 0.03503418, -0.03665161, 0.09320068, 0.082092285, 0.007751465, 0.011817932, -0.015068054, 0.02293396, 0.009552002, -0.040893555, -0.010139465, 0.035339355, 0.05267334, -0.025177002, 0.048065186, 0.076293945, -0.036254883, -0.012718201, -0.009239197, -0.05090332, 0.006576538, 0.009635925, 0.0013999939, 0.025878906, 0.0072364807, 0.038085938, 0.004764557, 0.026779175, 0.02079773, 0.012451172, -0.008110046, 0.016143799, 0.003118515, -0.026947021, 0.01928711, -0.030044556, -0.03024292, 0.030441284, 0.032226562, 0.0008125305, -0.029464722, -0.04473877, 0.021194458, -0.03878784, 0.011489868, 0.0071487427, 0.015396118, 0.0440979, 0.0071525574, 0.011764526, -0.05218506, 0.055511475, 0.011741638, 0.034942627, 0.041748047, 0.037902832, -0.01234436, 0.030670166, 0.06677246, 0.028564453, -0.009719849, 0.013282776, 0.007926941, -0.012557983, 0.044525146, 0.012290955, -0.0206604, 0.040863037, -0.013328552, -0.025024414, 0.02810669, 0.04953003, 0.03515625, 0.026626587, 0.051635742, 0.021469116, 0.01158905, 0.0016975403, -0.048553467, -0.018875122, 0.023086548, 0.011665344, 0.024993896, 0.047027588, -0.045074463, -0.027679443, -0.05709839, 0.05038452, -0.009338379, -0.012367249, 0.012863159, 0.03060913, -0.008544922, 0.034118652, -0.024108887, 0.016815186, -0.040740967, -0.04824829, -0.010902405, -0.04107666, -0.071899414, 0.003255844, -0.0395813, -0.061309814, -0.024871826, 0.028076172, 0.016983032, -0.028564453, -0.01928711, 0.03842163, 0.013870239, 0.051239014, 0.0063476562, -0.06890869, -0.014389038, -0.008338928, -0.033721924, 0.054656982, -0.0041046143, 0.013092041, 0.025283813, 0.04067993, 0.05267334, -0.013061523, 0.0032348633, 0.015670776, 0.035186768, 0.018615723, -0.00091695786, 0.016677856, -0.021957397, 0.008308411, 0.010910034, -0.029968262, -0.005897522, 0.009750366, 0.01675415, -0.02859497, -0.034851074, -0.04763794, -0.0069122314, -0.041107178, 0.0099487305, -0.024505615, -0.023971558, 0.0060310364, -0.09094238, 0.0006747246, -0.06341553, 0.0012226105, -0.017486572, -0.016326904, 0.021774292, -0.037017822, 0.029647827, -0.0009589195, -0.034118652, 0.053100586, -0.0231781, 0.02619934, 0.012535095, 0.07696533, -0.14025879, 0.070007324, 0.04586792, -0.05368042, 0.051605225, -0.071777344, 0.038208008, -0.02420044, -0.028396606, -0.045715332, -0.009147644, 0.0039253235, 0.033111572, -0.0126953125, 0.014755249, -0.008079529, -0.041107178, 0.048828125, -0.05505371, -0.021362305, -0.034118652, 0.011642456, 0.037597656, -0.0056762695, -0.005458832, -0.050872803, -0.021087646, 0.033447266, -0.040405273, 0.019973755, -0.00085926056, 0.051208496, 0.012290955, -0.011482239, 0.0395813, 0.013710022, 0.049713135, 0.005844116, -0.006160736, 0.019821167, -0.042144775, 0.013046265, 0.020111084, -0.044921875, -0.024658203, 0.08483887, 0.04547119, 0.03390503, -0.04309082, 0.0011701584, 0.049316406, 0.037719727, 0.0027675629, -0.0052452087, -0.011772156, 0.028411865, 0.012290955, -0.04147339, -0.033447266, -0.072387695, 0.009017944, -0.050994873, 0.04437256, 0.034179688, -0.020553589, 0.07434082, 0.04248047, -0.0027580261, 0.017593384, -0.031982422, -0.005908966, 0.0042037964, 0.03668213, -0.0072250366, 0.043426514, 0.002401352, -0.036743164, 0.023788452, -0.0031795502, -0.022750854, 0.008934021, -0.022033691, -0.038635254, -0.04321289, -0.0007314682, 0.019805908, 0.0007009506, 0.006538391, -0.059753418, 0.010757446, -0.028259277, 0.014549255, 0.005847931, -0.02305603, 0.020446777, -0.018295288, -0.015487671, -0.020095825, -3.8087368e-05, -0.0011520386, 0.0016050339, -0.0034503937, 0.046844482, -0.010765076, 0.0035362244, -0.051818848, 0.0067367554, -0.031799316, 0.008583069, 0.027160645, 0.00881958, -0.021759033, -0.021270752, 0.031951904, 0.011657715, 0.012084961, -0.0154418945, -0.032348633, -0.05859375, 0.045562744, 0.06137085, -0.013191223, -0.047088623, 0.009567261, -0.052368164, 0.010025024, -0.0033340454, -0.02708435, -0.014808655, 0.00020182133, 0.010910034, -0.034576416, -0.015281677, -0.041290283, 0.033691406, -0.03152466, 0.025131226, 0.008018494, -0.026107788, -0.030654907, 0.029815674, -0.023895264, -0.005554199, -0.015701294, 0.037902832, -0.018127441, -0.026657104, 0.011749268, -0.013687134, -0.023040771, -0.014816284, 0.0047187805, -0.008872986, 0.0020771027, -0.02444458, 0.0024204254, 0.006263733, 0.03253174, 0.04763794, 0.023132324, 0.021560669, -0.028015137, -0.008331299, -0.0736084, 0.002658844, 0.040863037, -0.03866577, -0.047058105, 0.00073575974, 0.08538818, -0.004009247, 0.025131226, -0.052612305, 0.028244019, 0.007736206, 0.03149414, -0.08892822, -0.13232422, 0.0129776, -0.057373047, 0.03491211, 0.008842468, -0.007080078, 0.015014648, 0.08532715, -0.0055656433, -0.023910522, 0.009643555, 0.031341553, -0.0049591064, 0.014984131, -0.025344849, 0.004989624, -0.011703491, -0.015068054, -0.026763916, 0.047302246, 0.0040664673, -0.030792236, -0.015136719, 0.0021476746, -0.015777588, -0.07507324, -0.022720337, 0.012077332, 0.034698486, 0.005706787, -0.0287323, 0.00051164627, -0.009407043, -0.0013332367, -0.014457703, 0.0093688965, 0.0015697479, -0.006755829, -0.016113281, -0.00843811, -0.0062065125, -0.00057792664, 0.016540527, 0.046447754, 0.01876831, -0.061279297, 0.058288574, -0.0046195984, -0.025802612, 0.027664185, -0.011268616, -0.009666443, -0.021011353, -0.0056762695, -0.02986145, 0.0011014938, 0.028030396, -0.013832092, -0.0015459061, 0.041992188, -0.03414917, -0.005405426, -0.023223877, -0.0063171387, 0.005344391, -0.021102905, -0.017074585, 0.01953125, 0.0019741058, 0.008834839, -0.006839752, -0.005859375, 0.008049011, -0.030456543, 0.034240723, 0.0015697479, 0.0113220215, -0.01737976, 0.011741638, -0.023590088, -0.023376465, -0.023910522, 0.005882263, -0.02078247, 0.016403198, 0.030136108, -0.045532227, 0.030883789, -0.048736572, -0.021484375, 0.029708862, -0.0005173683, -0.04458618, -0.019973755, 0.022491455, -0.036315918, -0.019607544, 0.034362793, 0.0029640198, -0.050567627, -0.03857422, -0.031311035, 0.04840088, -0.017227173, -0.027954102, -0.042938232, -0.0028972626, 0.03552246, 0.013198853, -0.03289795, 0.0073623657, 0.005355835, -0.0074005127, 0.020812988, -0.014770508, 0.0054359436, -0.05340576, -0.03552246, -0.038848877, -0.00730896, -0.01322937, 0.05883789, -0.023986816, -0.007926941, -0.017593384, -0.00762558, 0.010795593, -0.013801575, -0.056762695, 0.006580353, 0.03253174, 0.045135498, -0.0032043457, 0.018295288, 0.05496216, -0.026641846, -0.023254395, -0.0184021, 0.06573486, -0.017532349, -0.020446777, 0.068237305, -0.01071167, 0.021972656, 0.004146576, 0.010108948, -0.01247406, -0.016662598, 0.01902771, -0.091552734, -0.008781433, -0.019821167, 0.043182373, -0.03656006, -0.0074653625, -0.016601562, 0.039398193, -0.023040771, -0.038116455, -0.009017944, -0.013839722, 0.017791748, -0.068847656, 0.013656616, -0.022201538, -0.02708435, 0.010528564, -0.04815674, -0.023864746, 0.052093506, 0.021606445, 0.010192871, 0.0030097961, 0.008705139, 0.019638062, 0.010353088, -0.012191772, 0.023468018, -0.0003504753, -0.00869751, -0.00010985136, -0.0031585693, 9.471178e-05, 0.023727417, 0.015342712, 0.017501831, -0.02394104, -0.021102905, 0.014694214, 0.0496521, -0.027526855, 0.031677246, 0.022888184, 0.042266846, 0.0050621033, 0.0073623657, 0.035186768, -0.004425049, -0.02947998, -0.00066423416, -0.008956909, -0.040924072, -0.037902832, -0.01776123, -0.011024475, 0.020706177, 0.0019140244, 0.041656494, 0.047424316, -0.0021038055, -0.041137695, 0.03668213, -0.007724762, -0.026901245, 0.069885254, -0.030899048, 0.09680176, -0.016937256, 0.010475159, 0.023727417, -0.022613525, -0.05569458, -0.0068206787, 0.031143188, 0.011390686, 0.009513855, -0.03326416, 0.025131226, 0.01725769, -0.06036377, 0.008399963, -0.018661499, -0.0021076202, -0.016662598, -0.012184143, -0.02758789, 0.023742676, 0.047424316, -0.004421234, 0.0418396, -0.027374268, 0.018188477, -0.01828003, 0.01713562, -0.0435791, 0.003068924, -0.03765869, 0.024368286, 0.025787354, -0.0023841858, -0.009796143, 0.07159424, 0.0072402954, 0.0078086853, 0.010444641, 0.0042533875, -0.010231018, 0.0071144104, -0.030166626, -0.038146973, -0.0070877075, 0.026672363, 0.0019721985, -0.012382507, -0.015068054, -0.006538391, 0.018447876, -0.03161621, -0.07727051, 0.02911377, -0.08380127, 0.0262146, 0.025878906, 0.04119873, -0.013710022, -0.015365601, -0.021972656, 0.0011711121, 0.014083862, -0.013633728, 0.013893127, -0.042266846, -0.0049362183, -0.001420021, 0.027282715, -0.05166626, 0.020828247, -0.0037956238, 0.01512146, 0.04031372, 0.0041160583, -0.007865906, 0.0075912476, -0.025939941, -0.0071868896, -0.006084442, -0.052703857, -0.0037651062, 0.013763428, 0.018463135, -0.019119263, 0.023452759, -0.024520874, -0.01260376, 0.048675537, 0.0005507469, -0.039215088, -0.010238647, -0.0061187744, 0.0068359375, -0.0066108704, -0.038879395, 0.012748718, 0.000998497, -0.053344727, -0.011940002, 0.023529053, 0.016418457, -0.08453369, -0.034454346, -0.043914795, -0.015541077, 0.012207031, 0.02583313, -0.009384155, -0.043060303, -0.040496826, 0.014556885, -0.01878357, -0.037200928, -0.0040016174, -0.0016269684, 0.0009784698, -0.014328003, 0.013824463, -0.009742737, 0.024719238, -0.018035889, 0.024368286, -0.06439209, -0.049468994, 0.06298828, 0.027923584, -0.042022705, -0.014892578, 0.048614502, 0.015350342, -0.013313293, 0.057769775, 0.009223938, -0.107666016, -0.03878784, -0.06378174, -0.0041275024, -0.014328003, -0.016052246, 0.043426514, 0.02520752, -0.024108887, 0.037719727, 0.02130127, -0.017807007, 0.027114868, -0.0128479, 0.016448975, -0.037597656, -0.038330078, -0.03543091, -0.016723633, 0.03137207, 0.007446289, -0.030700684, -0.032989502, -0.024353027, -0.0025978088, -0.0059661865, 0.0149002075, -0.03201294, 0.015655518, -9.459257e-05, -0.014259338, -0.0016784668, -0.022369385, -0.0023155212, -0.027450562, 0.008850098, 0.03164673, -0.022598267, -0.015960693, -0.030410767, -0.015960693, -0.012878418, -0.042510986, -0.022628784, 0.048736572, -0.029144287, -0.0016555786, 0.018737793, 0.021850586, -0.008903503, 0.013458252, -0.07458496, -0.03515625, -0.00012898445, 0.035064697, -0.017791748, -0.046417236, 0.05255127, 0.025619507, 0.032806396, -0.020492554, -0.092163086, -0.05886841, 0.02709961, -0.013694763, 0.004219055, -0.007144928, 0.006614685, 0.023498535, 0.03894043, 0.02607727, -0.01335144, 0.030838013, 0.036224365, 0.026519775, 0.0135650635]}, "B07VHP3M9L": {"id": "B07VHP3M9L", "original": "Brand: MESMART\nName: Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART\nDescription: \nFeatures: Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires\nWiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required\nSimple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48\u201d, height 2.1cm/0.83\u201d, nice decoration, install it in kitchen or anywhere refers to gas leaking\nFireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use\nPackage Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.\n", "metadata": {"Name": "Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART", "Brand": "MESMART", "Description": "", "Features": "Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires\nWiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required\nSimple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48\u201d, height 2.1cm/0.83\u201d, nice decoration, install it in kitchen or anywhere refers to gas leaking\nFireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use\nPackage Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.037994385, -0.012870789, -0.019561768, 0.015296936, -0.03253174, 0.011817932, -0.0043525696, -0.01512146, 0.006828308, 0.016662598, -0.039642334, 0.007129669, 0.026657104, -0.02166748, 0.017227173, -0.014602661, -0.008636475, 0.04208374, 0.050567627, -0.003452301, 0.014518738, -0.0027313232, -0.0012207031, -0.025436401, -0.008552551, 0.053833008, 0.041168213, -0.010917664, -0.0053520203, -0.01184082, 0.011199951, -0.020217896, 0.05493164, 0.031585693, -0.10046387, 0.0018234253, -0.052093506, 0.026473999, -0.0385437, -0.0017032623, 0.006088257, 0.011077881, 0.051483154, -0.0115737915, -0.0047721863, 0.008155823, -0.01071167, -0.02986145, -0.0052833557, 0.0005054474, 0.010528564, -0.0005412102, 0.009147644, 0.04309082, -0.0045394897, 0.0015249252, -0.013420105, 0.006828308, 0.01914978, -0.011543274, -0.016921997, -0.01576233, 0.027526855, -0.0031280518, -0.02696228, 0.017105103, 0.06616211, -0.003025055, -0.019439697, -0.04498291, -0.00053215027, 0.008110046, 0.020568848, -0.054595947, -0.02684021, -8.159876e-05, 0.024551392, -0.019302368, 0.00655365, -0.029464722, -0.0087509155, -0.015731812, 0.033996582, -0.04534912, 0.010391235, -0.02456665, -0.009185791, 0.0023384094, -0.028793335, -0.04333496, -0.01612854, -0.030456543, -0.052734375, 0.014915466, -0.018661499, -0.013442993, -0.034454346, -0.014404297, 0.005748749, -0.01574707, 0.010070801, -0.016220093, -0.028381348, -0.00054597855, -0.022537231, 0.05038452, -0.009681702, -0.0098724365, -0.015182495, 0.0018348694, -0.00091409683, -0.059295654, -0.026931763, -0.085632324, -0.021911621, 0.12017822, 0.03842163, -0.028717041, 0.041992188, -0.002714157, -0.0335083, -0.001663208, 0.020355225, -0.02468872, 0.044189453, 0.030090332, 0.0026626587, 0.00039076805, -0.0049209595, 0.035614014, -0.010955811, 0.018447876, 0.005710602, -0.0063209534, -0.033477783, -0.020690918, 0.054626465, 0.06335449, 0.0519104, -0.025985718, 0.07299805, -0.021972656, -0.029388428, 0.107666016, -0.03253174, -0.016281128, 0.01285553, 0.028579712, 0.0026054382, -0.023391724, -0.012542725, 0.02444458, 0.049713135, -0.00018954277, -0.08026123, 0.011474609, -0.039642334, -0.004119873, -0.04208374, -0.023727417, -0.0287323, -0.040161133, -0.008674622, 0.023010254, -0.012008667, 0.067993164, 0.05014038, -0.0022354126, 0.01991272, 0.03817749, -0.008583069, 0.0236969, 0.001625061, 0.029266357, 0.01902771, 0.0007185936, 0.02368164, 0.046691895, 0.056030273, -0.09307861, -0.048339844, -0.025680542, 0.13378906, -0.0335083, -0.038635254, 0.009391785, 0.0011253357, 0.024261475, 0.0099487305, 0.0035820007, 0.04449463, 0.015914917, 0.004173279, -0.0236969, -0.037353516, -0.008239746, -0.017105103, 0.0028839111, -0.023849487, 0.038604736, -0.023788452, 0.0075645447, -0.0211792, 0.007972717, -0.008674622, -0.014137268, -0.006515503, 0.022766113, 0.0006918907, -0.0023994446, -0.007751465, -0.046661377, 0.031921387, -0.046447754, -0.015716553, 0.015136719, -0.014129639, 0.048553467, 0.011199951, 0.038879395, 0.025222778, -0.037384033, 0.038604736, 0.028411865, 0.026687622, 0.0010910034, -0.015029907, 0.010627747, 0.036224365, 0.020187378, 0.03164673, -0.010437012, 0.025436401, 0.006839752, -0.020751953, 0.017227173, 0.044067383, -0.017868042, -0.0068893433, 0.026855469, 0.0132751465, -0.03729248, -0.035949707, 0.022155762, 0.011726379, -0.021011353, -0.0054359436, 0.028747559, -0.043182373, 0.004501343, 0.0017738342, 0.03753662, 0.024017334, 0.013435364, -0.014404297, 0.05340576, -0.027435303, 0.01676941, -0.04272461, -9.3877316e-05, -0.00063085556, -0.014564514, 0.007965088, -0.02079773, 0.030090332, -0.030395508, 0.01701355, 0.0014867783, -0.0073013306, -0.0066223145, 0.015701294, -0.02748108, 0.01020813, 0.015945435, -0.023498535, 0.040771484, -0.023468018, 0.005619049, 0.04812622, 0.0059165955, 0.0049591064, -0.026504517, -0.0023994446, -0.0011730194, 0.03668213, 0.014373779, 0.027175903, 0.019180298, -0.0023670197, 0.04598999, 0.044677734, 0.021331787, 0.01524353, -0.027236938, -0.022979736, 0.010009766, 0.005924225, -0.010688782, 0.03692627, -0.045654297, -0.034179688, 0.03643799, -0.057281494, 0.02456665, -0.027893066, 0.028076172, -0.03060913, -0.031555176, -0.022354126, -0.027023315, -0.029327393, 0.00010854006, 0.011703491, -0.04550171, 0.01600647, 0.0025119781, -0.017486572, 0.0047569275, -0.0065193176, 0.050079346, -0.0075302124, 0.030212402, 0.015533447, 0.019958496, 0.019302368, -0.024459839, -0.0007739067, -0.0032901764, -0.06604004, 0.015159607, -0.0005493164, -0.0051002502, 0.00082683563, 0.07458496, -0.009140015, 0.0068244934, 0.0053520203, 0.031311035, 0.025772095, -0.018615723, 0.03515625, 0.015571594, -0.014472961, 0.00969696, -0.081604004, 0.016693115, 0.03933716, 0.005672455, -0.021942139, -0.02130127, 0.050598145, -0.01586914, 0.0030651093, -0.020004272, 0.02394104, 0.008857727, -0.024993896, -0.0077934265, 0.031433105, -0.057647705, -0.0018110275, -0.0018405914, -0.034729004, -0.04449463, 0.023529053, -0.010429382, -0.026367188, -0.017974854, 0.013969421, 0.048309326, 0.003900528, 0.01499176, -0.011802673, -0.013221741, -0.01676941, -0.008140564, -0.0038414001, -0.038482666, 0.026397705, 0.0020427704, -0.051208496, -0.027297974, -0.0027313232, 0.00046944618, 0.015472412, 0.0017127991, 0.03945923, 0.047210693, 0.029937744, -0.006374359, 0.03881836, 0.023635864, -0.06854248, 0.0024280548, -0.0016546249, -0.023513794, 0.015533447, 0.015052795, -0.09875488, -0.016815186, -0.0034046173, 0.0033740997, 0.00017416477, -0.011192322, -0.010215759, -0.036102295, -0.012931824, -0.02470398, 0.004486084, 0.062469482, 0.04144287, -0.016098022, 0.05203247, -0.0031528473, 0.013404846, -0.01461792, -0.018676758, -0.021438599, 0.015533447, 0.02243042, 0.030380249, -0.064331055, 0.001701355, 0.032196045, 0.012672424, 0.037872314, -0.01423645, -0.05001831, 0.055480957, 0.040283203, -0.0023384094, 0.015434265, 0.010559082, 0.016342163, -0.03829956, 0.002500534, -0.0014886856, -0.029678345, 0.045532227, -0.05392456, -0.04748535, 0.014144897, 0.011802673, 0.03225708, 0.03414917, -0.037506104, 0.0061035156, -0.05508423, -0.026885986, -0.02116394, -0.016220093, -0.00756073, 0.005882263, 0.046661377, 0.0076026917, 0.093811035, -0.018814087, 0.03729248, 0.0038814545, -0.014038086, 0.013877869, -0.024658203, -0.02418518, 0.0154800415, 0.023971558, -0.07019043, 0.053649902, -0.0090408325, 0.007633209, 0.0017528534, 3.2246113e-05, 0.029052734, -0.00023698807, -0.015823364, 0.020996094, -0.020217896, 0.010421753, -0.01512146, 0.028320312, -0.002161026, 0.013793945, -0.0076560974, -0.09289551, 0.033294678, 0.014732361, -0.012489319, -0.023498535, 0.027893066, -0.00484848, -0.011047363, -0.017868042, -0.010238647, 0.021118164, -0.01373291, -0.0009021759, 0.0070724487, 0.0028648376, -0.03765869, -0.0107040405, -0.017562866, -0.032928467, 0.0037593842, 0.061950684, 0.006580353, -0.03744507, 0.04373169, 0.04473877, -0.020828247, -0.012527466, -0.06161499, 0.018310547, -0.06060791, 0.03173828, -0.00881958, -0.014175415, -0.0013446808, -0.010864258, -0.03994751, -0.013580322, 0.034332275, -0.004634857, -0.00573349, 0.018981934, 0.010261536, -0.012680054, 0.029327393, -0.022064209, 0.030838013, -0.008361816, 0.0043754578, 0.029251099, 0.03842163, -0.007507324, -0.03466797, -0.00983429, -0.04159546, 0.00016152859, 0.06921387, -0.013305664, -0.08404541, -0.012634277, 0.032470703, 0.033233643, -0.0418396, -0.0042495728, -0.011421204, -0.007461548, 0.020492554, -0.021697998, -0.009849548, -0.0035514832, 0.004463196, -0.061645508, -0.035827637, -0.0022296906, -0.036499023, -0.0051231384, 0.0064926147, -0.022903442, -0.03137207, 0.011878967, -0.00422287, 0.0076942444, -0.036010742, 0.028381348, 0.025314331, -0.0065574646, -0.0690918, 0.009231567, -0.044158936, -0.03262329, -0.021484375, 0.02935791, -0.014701843, 0.0069732666, -0.0018529892, -0.007411957, 0.02633667, 0.021987915, 0.037963867, 0.044677734, 0.023651123, -0.053741455, 0.042510986, -0.04727173, -0.034332275, 0.039276123, -0.019546509, -0.051116943, -0.05340576, 0.028396606, -0.00065517426, 0.040374756, 0.042785645, -0.013076782, -0.0067710876, 0.007736206, -0.111572266, -0.048950195, -0.019714355, -0.002254486, 0.057281494, 0.007610321, 0.01637268, -0.010650635, 0.094055176, 0.03036499, 0.045837402, 0.00856781, -0.00674057, -0.002790451, 0.012794495, -0.019180298, 0.036987305, -0.020751953, -0.046813965, -0.051208496, 0.058288574, 0.03302002, -0.022766113, -0.005027771, -0.007461548, -0.026153564, -0.022140503, -0.0031852722, 0.03933716, -0.0026798248, 0.030136108, -0.026870728, -0.027511597, -0.004486084, -0.035003662, -0.009803772, -0.01600647, 0.017318726, 0.0033912659, 0.0019006729, 0.023727417, 0.0021362305, -0.015716553, 0.007484436, 0.013671875, -0.049987793, 0.027877808, 0.015571594, 0.01423645, 0.025238037, -0.03475952, 0.00504303, -0.034698486, 0.0068969727, 0.021057129, -0.057403564, 0.027816772, 0.055877686, 0.028717041, -0.014923096, 0.040527344, 0.0022296906, -0.02482605, -0.06866455, -0.005809784, 0.03793335, -0.07879639, 0.010559082, -0.0032024384, -0.008155823, 0.01625061, -0.01727295, -0.00035953522, 0.0008049011, -0.056915283, 0.034973145, 0.00016105175, -0.010154724, -0.06665039, 0.061035156, -0.022949219, -0.008430481, -0.049835205, 0.020507812, 0.041290283, 0.01902771, 0.0024662018, -0.040100098, 0.042755127, -0.06903076, -0.0059318542, 0.009254456, 0.09875488, -0.0060043335, 0.02973938, 0.04055786, 0.050567627, -0.08898926, -0.011054993, -0.0071868896, 0.0060577393, 0.05026245, -0.059265137, -0.0090789795, 0.030776978, -0.042541504, -0.0068244934, 0.032836914, 0.01927185, -0.015182495, -0.025756836, 0.019073486, -0.0067214966, 0.0041122437, 0.03778076, -0.035308838, -0.008140564, 0.028579712, -0.013595581, -0.056274414, -0.0317688, -0.056793213, 0.014671326, -0.021148682, -0.05328369, -0.0137786865, 0.04446411, 0.021911621, -0.019134521, -0.03842163, -0.0034542084, -0.016021729, -0.016662598, -0.019607544, 0.006591797, 0.033966064, -0.03704834, -0.040618896, -0.004951477, 0.0043144226, -0.0062446594, -0.034179688, 0.056152344, 0.015357971, 0.0009727478, 0.014564514, 0.0058631897, -0.013023376, 0.005592346, -0.0012102127, -0.007522583, -0.038360596, -0.025299072, 0.0010461807, -0.00053691864, 0.03161621, 0.006389618, 0.018692017, -0.016036987, -0.02407837, -0.0042915344, 0.043304443, -0.013328552, -0.062347412, 0.010261536, -0.010726929, 0.02267456, 0.0077781677, 0.02017212, -0.08081055, -0.018234253, 0.020050049, -0.0070381165, -0.002067566, 0.020614624, 0.017608643, 0.06317139, -0.02243042, -0.025726318, -0.0093688965, -0.03567505, 0.0075035095, 0.05029297, 0.014328003, 0.019058228, -0.05633545, -0.018356323, -0.02835083, 0.02027893, -0.0062561035, 0.044311523, -0.03717041, -0.021331787, 0.018447876, 0.043670654, 0.02507019, 0.010986328, 0.04397583, -0.010223389, -0.058135986, 0.0007777214, -0.011817932, -0.04345703, -0.020446777, -0.04724121, -0.041046143, -0.027236938, -0.019805908, 0.018997192, -0.02128601, -0.008071899, -0.057861328, 0.06414795, -0.024993896, 0.024795532, 0.049072266, -0.030410767, -0.013511658, -0.038238525, 0.036895752, -0.003396988, -0.003414154, 0.009284973, 0.004787445, 0.020751953, 0.031829834, 0.009666443, -0.030151367, 0.018630981, 0.006011963, -0.018798828, -0.026977539, -0.006401062, 0.0368042, -0.007575989, 0.015716553, 0.03842163, 0.0093688965, -0.00087594986, 0.023361206, 0.024307251, -0.018676758, 0.027435303, -0.039978027, 0.042388916, -0.042297363, -0.048034668, 0.041778564, 0.054382324, 0.014770508, -0.015419006, -0.044281006, -0.00036787987, 0.052703857, -0.012619019, 0.03540039, -0.036865234, 0.009414673, -0.05255127, 0.06335449, -0.021759033, -0.04272461, -0.01158905, -0.010658264, 0.012588501, 0.024093628, 0.020721436, 0.040130615, -0.022460938, 0.008644104, -0.012649536, -0.017318726, -0.01864624, 0.014221191, -0.020858765, -0.047302246, -0.05807495, -0.014602661, -0.025161743, 0.0062713623, 0.0015487671, -0.03137207, 0.051574707, 0.03152466, -0.007881165, -0.016525269, -0.06732178, -0.010620117, 0.02835083, 0.003540039, 0.037322998, 0.007369995, 0.0027313232, -0.027511597, -0.0015640259, -0.0029830933, -0.009208679, 0.0036716461, 0.008049011, 0.04989624, -0.003124237, -0.043762207, -0.008964539, 0.012710571, -0.08154297, 0.11022949, -0.050933838, -0.018798828, -0.037109375, -0.035308838, -0.0042381287, -0.049743652, -0.06994629, 0.06591797, -0.041809082, -0.029891968, -0.008712769, 0.008766174, -0.027923584, -0.04324341, -0.010467529, 0.008392334, 0.0031337738, -0.021575928, 0.007850647, -0.048797607, -0.010978699, -0.008293152, 0.041809082, -0.08050537, -0.07543945, -0.042785645, 0.040130615, 0.028884888, -0.02494812, -0.026473999, 0.0423584, -0.009414673, -0.014595032, 0.050109863, -0.020385742, -0.019439697, -0.059173584, 0.0051651, -0.0076446533, 0.0093688965, 0.007019043, -0.023254395, -0.04598999, 0.025268555, -0.018844604, -0.06390381, 0.0055007935, 0.002199173, -0.07159424, -0.0010662079, -0.022994995, 0.0128479, -0.026931763, -0.05303955, 0.029785156, 0.00737381, 0.070251465, 0.007911682, -0.016616821, 0.047546387, -0.0025482178, -0.012283325, -0.05429077, -0.034820557, 0.001045227, -0.010879517, -0.009300232, -0.0050811768, 0.0055351257, -0.0020961761, -0.014442444, 0.024383545, -0.025268555, -0.029067993, -0.016647339, 0.00012409687, -0.046569824, 0.026321411, 0.024887085, 0.0035095215, -0.011291504, 0.013931274, 0.052337646, -0.03414917, -0.0030097961, -0.0020618439, 0.0031738281, 0.018814087, -0.004425049, -0.013671875, -0.03086853, 0.03137207, 0.029922485, 0.00010561943, -0.04525757, 0.028198242, -0.019378662, -0.03463745, -0.008033752, 0.023651123, 0.012199402, -0.013763428, -0.025634766, 0.006717682, 0.00969696, -0.0043182373, -0.03793335, -0.041015625, 0.041229248, 0.023788452, -0.0345459, 0.05709839, -0.025924683, 0.011077881, 0.027389526, -0.010177612, -0.014198303, 0.018447876, 0.003107071, 0.008377075, 0.016311646]}, "B07QG6QCLD": {"id": "B07QG6QCLD", "original": "Brand: APG outdoor\nName: APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking\nDescription: This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
      Features:
      Made of stainless steel for durability.
      Mounts to a gas stove and requires no electricity Rust proof emitter guard.
      Adjustable safety valve controls gas flow and heating power.
      Weighs 320G and comes in a storage bag, convenient to carry.
      Specifications:
      Material: Stainless steel & Aluminum alloy & Copper
      Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
      Net Weight: 320g
      Package List:
      1 * Heater
      1 * Canister Stand
      1 * Storage Bag
      \nFeatures: Note: Propane Tank Need Mapp Adapter to use \uff08product don't contain adapter\uff09\nWeighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)\nPackage List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn't contain gas tank)\nMaterial: Stainless steel & Aluminum alloy & Copper\n", "metadata": {"Name": "APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking", "Brand": "APG outdoor", "Description": " This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
      Features:
      Made of stainless steel for durability.
      Mounts to a gas stove and requires no electricity Rust proof emitter guard.
      Adjustable safety valve controls gas flow and heating power.
      Weighs 320G and comes in a storage bag, convenient to carry.
      Specifications:
      Material: Stainless steel & Aluminum alloy & Copper
      Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
      Net Weight: 320g
      Package List:
      1 * Heater
      1 * Canister Stand
      1 * Storage Bag
      ", "Features": "Note: Propane Tank Need Mapp Adapter to use \uff08product don't contain adapter\uff09\nWeighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)\nPackage List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn't contain gas tank)\nMaterial: Stainless steel & Aluminum alloy & Copper", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.025924683, -0.0038795471, -0.029327393, -0.012313843, 0.007648468, -0.01247406, 0.00491333, 0.010772705, -0.03753662, 0.0019664764, 0.033355713, 0.022323608, -0.049560547, -0.0357666, 0.00081014633, -0.034851074, 0.009170532, -0.019561768, -0.049102783, -0.03173828, -0.029403687, -0.013763428, -0.031829834, 0.11077881, -0.0036888123, -0.009124756, 0.024612427, -0.0002541542, 0.0066566467, -0.01373291, 0.02319336, -0.009666443, 0.039276123, -0.022521973, -0.018966675, -0.042816162, 0.040008545, -0.034484863, -0.03466797, 0.024353027, 0.016555786, -0.008087158, 0.011276245, 0.061279297, -0.024734497, -0.03186035, 0.013221741, -0.017929077, -0.010246277, -0.03643799, 0.029785156, 0.026016235, 0.055389404, 0.007293701, -0.029693604, 0.004333496, 0.024917603, -0.026611328, 0.0082092285, -0.054107666, -0.012611389, 0.018661499, 0.04562378, 0.045776367, -0.06829834, 0.030792236, 0.041931152, -0.03125, 0.009033203, -0.066467285, -0.008041382, 0.015312195, 0.021118164, 0.02822876, -0.01965332, -0.047790527, 0.030792236, 0.012184143, 0.04019165, 0.012519836, -0.004890442, -0.0049362183, 0.009796143, -0.05984497, 0.024719238, -0.026031494, -0.013504028, -0.00030708313, 0.012489319, -0.042785645, 0.00076150894, 0.036102295, -0.031143188, -0.011924744, -0.021865845, -0.031707764, -0.070129395, -0.08929443, 0.02645874, 0.048187256, -0.012016296, -0.015457153, 0.037139893, -0.0017738342, -0.015914917, 0.054656982, -0.0037193298, 0.021530151, -0.004764557, 0.0015134811, -0.00041913986, -0.064086914, -0.010955811, -0.007850647, -0.046417236, 0.027832031, -0.017608643, -0.015464783, -0.005882263, 0.014801025, -0.019332886, -0.020767212, 0.018844604, 0.009811401, 0.021331787, -4.8458576e-05, -0.024856567, 0.019424438, -0.059509277, 0.06994629, -0.0335083, -0.008117676, 0.04815674, 0.036376953, -0.0038585663, -0.040405273, 0.025131226, -0.00066661835, 0.006286621, -0.028808594, 0.010108948, -0.025985718, 0.0042533875, 0.016662598, -0.023147583, 0.0104599, 0.015167236, 0.02067566, 0.01071167, -0.03930664, 0.023971558, -0.032928467, 0.036132812, 0.011207581, -0.012237549, 0.0016670227, 0.014907837, -0.021118164, -0.026351929, -0.045318604, -0.008720398, -0.023651123, -0.020935059, 0.022125244, -0.03643799, 0.03616333, 0.037322998, 0.0038261414, 0.017059326, 0.030426025, 0.0065460205, 0.026473999, -0.002960205, -0.013206482, -0.011985779, -0.025100708, -0.010879517, 0.103027344, 0.057006836, -0.06982422, -0.06896973, -0.07775879, 0.13708496, -0.06161499, -0.013801575, -0.058441162, 0.031341553, -0.019195557, -0.0046081543, 0.008216858, 0.06384277, 0.016799927, 0.024398804, -0.0236969, -0.008491516, -0.007987976, -0.04156494, 0.01499176, -0.02368164, 0.014450073, 0.021270752, -0.010643005, -0.0082092285, 0.016403198, 0.007835388, -0.05154419, 0.013725281, -0.02178955, -0.027130127, 0.009422302, 0.013961792, -0.023010254, 0.011299133, -0.0803833, -0.032440186, -0.018157959, -0.00970459, 0.04574585, 0.0043144226, 0.036895752, 0.019577026, -0.0043144226, 0.04058838, -0.0055503845, 0.030685425, -0.035003662, -0.0077323914, -0.030059814, 0.02746582, -0.028244019, 0.009895325, 0.057403564, 0.009239197, 0.034210205, -0.0068969727, 0.035003662, 0.038146973, 0.0289917, -0.0033226013, -0.018447876, 0.013061523, -0.029846191, -0.01852417, 0.027755737, -0.015487671, 0.0063323975, 0.0362854, -0.017181396, -0.025558472, 0.041534424, -0.0051116943, 0.050079346, 0.016540527, 0.06640625, -0.045440674, 0.043518066, 0.0004911423, 0.039276123, -0.02998352, 0.012825012, -0.014579773, 0.057617188, 0.022537231, 0.010543823, -0.021728516, -0.014793396, -0.008483887, -0.0005850792, -0.029922485, 0.0011234283, 0.043945312, 0.026885986, -0.007095337, -0.00096702576, 0.019363403, -0.030792236, -0.015586853, 0.019805908, -0.009346008, -0.0418396, -0.02267456, -0.0149383545, 0.0046653748, 0.0135650635, -0.0020332336, -0.019561768, 0.03363037, 0.02961731, -0.038330078, -0.02557373, 0.006290436, 0.0037136078, -0.03857422, -0.0015382767, -0.007358551, -0.022979736, 0.03414917, 0.003484726, 0.0124053955, -0.035705566, -0.015037537, 0.030532837, -0.031799316, 0.014526367, -0.008407593, -0.004299164, -0.047332764, 0.03326416, 0.004924774, -0.011795044, -0.042175293, 0.014457703, 0.022888184, 0.014274597, 0.02482605, -0.003528595, 0.023971558, 0.033416748, 0.044952393, 0.0005431175, -0.006439209, -0.010475159, -0.0014591217, 0.030441284, -0.005279541, -0.019104004, 0.028625488, 0.0017032623, 0.027328491, -0.0017118454, -0.012260437, -0.001247406, -0.006214142, 0.018753052, -0.004699707, -0.0051727295, 0.010856628, 0.0017566681, -0.0039043427, -0.029678345, 0.029052734, -0.027801514, -0.0038337708, 0.031188965, -0.030685425, -0.0031909943, 0.039215088, 0.0046844482, -0.0104904175, 0.021118164, -0.024276733, -0.023986816, -5.3346157e-05, -0.035614014, 0.009338379, 0.012260437, -0.01802063, -0.042297363, -0.0073280334, -0.08062744, -0.031829834, -0.018661499, -0.068115234, -0.00856781, 0.0446167, 0.02658081, -0.0524292, 0.008834839, -0.03540039, 0.025253296, 0.009613037, 0.0005636215, -0.037750244, -0.030044556, -0.04522705, 0.016586304, -0.027130127, -0.06088257, 0.036102295, -0.025314331, 0.025939941, 0.020187378, -0.02079773, 0.013847351, 0.009223938, 0.021118164, 0.036499023, 0.03414917, 0.0395813, -0.014205933, 0.033233643, 0.028259277, -0.029403687, -0.0004553795, 0.009597778, 0.0019226074, -0.04296875, -0.04336548, -0.06506348, 0.009971619, -0.031143188, 0.023666382, 0.017166138, -0.025054932, 0.013961792, -0.049682617, -1.3291836e-05, -0.025741577, 0.027862549, 0.059143066, -0.008308411, -0.0042686462, -0.010673523, -0.008132935, -0.017944336, 0.018463135, 0.016952515, -0.00762558, 0.016677856, -0.021743774, 0.025665283, -0.018356323, 0.055236816, 0.058563232, -0.042785645, -0.025466919, -0.003932953, 0.010910034, 0.0050964355, 0.056243896, -0.014465332, 0.009887695, -0.015686035, 0.009361267, -0.030731201, 0.0039863586, 0.014854431, -0.07080078, 0.07208252, -0.05630493, 0.00013315678, 0.01586914, 0.0036029816, 0.019989014, -0.010368347, -0.010116577, 0.019958496, 0.009094238, 0.046569824, 0.003522873, -0.006126404, -0.010948181, 0.04119873, 0.002105713, -0.03314209, 0.015556335, 0.03050232, 0.04425049, 0.01537323, -0.009277344, 0.012298584, -0.025543213, -0.0029754639, 0.0128479, -0.0036735535, -0.05114746, 0.0871582, 0.0043182373, 0.006164551, -0.00066280365, -0.026260376, 0.034179688, 0.024536133, -0.031234741, 0.022415161, -0.011108398, 0.032440186, -0.005596161, -0.017349243, -0.045562744, -0.039855957, 6.03199e-05, -0.082458496, 0.08239746, 0.052215576, -0.024520874, 0.08123779, 0.06768799, 0.0017223358, 0.022720337, -0.026153564, 0.017807007, -0.00060510635, 0.03845215, 0.0024147034, 0.016571045, 0.012870789, -0.020843506, 0.021148682, 0.0023555756, -0.040283203, 0.017410278, -0.029281616, -0.04559326, -0.037475586, -0.0044937134, 0.01234436, -0.0044441223, 0.022994995, -0.02355957, 0.025253296, -0.017364502, -0.019180298, 0.001162529, -0.04522705, -0.008804321, -0.03137207, -0.053375244, -0.02130127, 0.017318726, -0.0146484375, -0.009376526, -0.0009918213, 0.033721924, -0.020904541, 0.03869629, -0.053955078, 0.036010742, -0.01361084, 0.015380859, 0.0049858093, 0.00069093704, -0.01725769, -0.03112793, 0.042144775, -0.017333984, -0.016326904, 0.027191162, -0.0044517517, -0.06488037, 0.013412476, 0.078186035, 0.016281128, -0.025161743, 4.4107437e-05, 0.020812988, -0.01600647, 0.005004883, 0.02507019, 0.008216858, -0.055358887, -0.05444336, -0.078186035, -0.03527832, -0.023086548, 0.032348633, -0.0073890686, 0.021377563, -0.019485474, -0.030853271, -0.005050659, 0.005558014, -0.018463135, 0.009742737, -0.008598328, 0.03265381, -0.04156494, -0.056640625, -0.034820557, -0.019927979, 0.026290894, 0.026184082, 0.016159058, -0.04296875, 0.0052986145, -0.023773193, 0.019073486, 0.024841309, 0.042297363, 0.018234253, -0.025543213, 0.0063819885, 0.00087594986, 0.05847168, -0.057922363, 0.0070114136, 0.035491943, -0.060913086, -0.05569458, -0.029342651, 0.04547119, 0.01927185, 0.023269653, -0.078430176, -0.017349243, 0.00630188, 0.014480591, -0.013710022, -0.07513428, -0.002002716, -0.030090332, 0.019500732, -0.0027542114, -0.009529114, 0.06781006, 0.06744385, 0.022094727, 0.033233643, 0.02192688, -0.004802704, 0.004005432, 0.0025424957, -0.026412964, 0.03540039, -0.03717041, -0.041137695, -0.06829834, 0.047576904, 0.016067505, 0.015037537, 0.01625061, -0.026245117, 0.006668091, -0.0309906, 0.017105103, 0.01084137, -0.009651184, 0.007068634, -0.022735596, -0.027648926, -0.03744507, -0.028686523, 0.011444092, -0.035949707, 0.033416748, 0.028671265, 0.012908936, 0.024459839, -0.015037537, 0.01058197, 0.018692017, -0.0057640076, -0.011070251, -0.029663086, 0.025527954, -0.0028686523, 0.0040740967, 0.04083252, 0.0049057007, 0.0068893433, 0.0066070557, -0.01449585, -0.041015625, -0.007293701, 0.03161621, 0.014976501, -0.030395508, -0.004508972, 0.020217896, -0.03439331, -0.07684326, 0.0054740906, -0.012702942, -0.022964478, 0.004463196, 0.008453369, 0.03555298, 0.020111084, 0.012718201, -0.026687622, 0.011985779, -0.014259338, 0.07336426, 0.023880005, -0.0026950836, -0.089904785, 0.05581665, -0.024383545, -0.044189453, -0.044799805, 0.031204224, 0.045684814, -0.012756348, 0.015716553, -0.03894043, 0.044403076, -0.046905518, -0.0075531006, -0.0010280609, 0.06488037, -0.024932861, -0.012161255, 0.022842407, 0.0002822876, -0.082214355, -0.024765015, -0.018859863, 0.0071983337, -0.024429321, -0.017211914, 0.034484863, 0.017684937, -0.017669678, -0.004634857, -0.0036945343, 0.028564453, -0.054351807, 0.029327393, -0.031051636, -0.0015697479, 0.023925781, 0.023071289, 0.03781128, 0.021759033, -0.045166016, -0.033996582, -0.017105103, 0.023483276, -0.032836914, 0.045959473, -0.011184692, -0.02418518, 0.032287598, -0.008125305, 0.012138367, 0.012199402, -0.013656616, 0.010513306, 0.009124756, 0.02458191, -0.027282715, -0.04525757, 0.06628418, -0.049224854, -0.051727295, 0.0047836304, 0.05407715, -0.0259552, -0.00016117096, 0.06185913, 0.056884766, 0.0031414032, 0.04660034, 0.0032806396, -0.021636963, -0.00630188, 0.011878967, -0.088012695, -0.014884949, -0.022079468, 0.016113281, -0.03427124, 0.010147095, -0.010055542, 0.04272461, -0.020217896, -0.0128479, -0.013175964, 0.0028076172, -0.0068206787, -0.064941406, 0.005039215, -0.028564453, 0.0063438416, -0.0008883476, -0.00774765, -0.058044434, -0.011566162, -0.036621094, 0.039886475, 0.07373047, 0.028701782, 0.000487566, -0.02406311, -0.08569336, 0.018844604, 0.03048706, -0.04473877, -0.009597778, 0.016983032, 0.017211914, 0.0015516281, -0.03805542, -0.0066833496, -0.020751953, 0.0077285767, 0.030212402, 0.032073975, -0.0026664734, 0.037109375, 0.0076408386, 0.015014648, -0.009109497, 0.0046157837, 0.0012197495, -0.048095703, -0.057525635, 0.005886078, 0.010719299, -0.056030273, -0.0035572052, -0.043670654, -0.01928711, -0.00096321106, -0.035583496, 0.040740967, -0.059539795, 0.053253174, -0.030593872, -0.014701843, 0.002275467, -0.040863037, 0.024520874, -0.008636475, 0.0362854, -0.01626587, 0.056030273, 0.025680542, 0.004005432, -0.029876709, 0.0032043457, 0.019577026, 0.006843567, 0.020690918, 0.020477295, 0.015945435, 0.015052795, -0.057891846, 0.013343811, -0.022964478, -0.003358841, 0.004131317, -0.023513794, -0.032684326, 0.014213562, 0.05645752, -0.009963989, 0.049713135, -0.022613525, 0.009544373, -0.022216797, 0.0211792, -0.029144287, -0.02671814, 0.01586914, 0.01878357, -0.0049819946, -0.013633728, 0.0184021, 0.064331055, 0.017364502, -0.010223389, 0.012992859, -0.026611328, 0.0051956177, 0.017745972, -0.013061523, -0.040985107, -0.016036987, 0.029571533, 0.012870789, -0.028579712, -0.028076172, -0.0071525574, 0.042114258, -0.0015287399, -0.057678223, 0.0141067505, -0.08642578, 0.004131317, 0.012893677, 0.083984375, -0.07055664, -0.072265625, -0.03012085, -0.0012226105, -0.005367279, 0.0101623535, -0.004901886, -0.034118652, 0.004486084, -0.006706238, 0.03390503, -0.039733887, 0.011505127, 0.016311646, 0.0066337585, 0.00554657, -0.0034542084, -0.011856079, -0.021881104, 0.018692017, 0.03060913, -0.01007843, 0.040222168, -0.0491333, 0.012298584, 0.00062417984, -0.036743164, 0.025436401, -0.008323669, -0.039123535, 0.011802673, -0.025878906, 0.056243896, -0.020828247, -0.03488159, -0.049835205, -0.0022277832, -0.030303955, 0.022537231, -0.013442993, -0.028396606, -0.00062561035, 0.0105896, 0.011245728, -0.04031372, 0.0026130676, 0.004886627, 2.6762486e-05, 0.0024280548, 0.022827148, 0.008934021, -0.06866455, -0.06591797, 0.036499023, -0.06414795, -0.0113220215, -0.038513184, 0.026123047, 0.013748169, -0.0023040771, 0.023727417, 0.034942627, 0.018051147, 0.0036296844, 0.008583069, -0.0057296753, 0.005794525, 0.019195557, 0.012161255, -0.039031982, -0.03503418, -0.021835327, -0.009094238, 0.054382324, -0.0015077591, 0.023635864, -0.077819824, -0.023666382, -0.0736084, -0.008178711, -0.011116028, -0.016326904, 0.02456665, -0.0010251999, -0.040771484, 0.01626587, 0.0076065063, 0.014755249, -0.006374359, 0.021957397, 0.031921387, 0.008026123, 0.00053167343, -0.013206482, -0.01876831, -0.0019311905, 0.042297363, -0.06903076, -0.037750244, 0.001540184, -0.012275696, 0.0010375977, 0.02708435, 0.026107788, 0.024475098, 0.0030136108, -0.002374649, 0.024261475, -0.02180481, 0.032836914, -0.028808594, 0.021194458, 0.009750366, 0.02319336, -0.022262573, 0.0262146, -0.024276733, 0.019241333, 0.011421204, 0.0037174225, -0.02279663, -0.0029659271, -0.0032157898, 0.022338867, 0.014183044, -0.016830444, 0.00674057, -0.0009822845, -0.04840088, -0.023666382, 0.013900757, -0.053009033, -0.03842163, 0.034576416, 0.013626099, 0.103881836, -0.008666992, -0.09069824, -0.040100098, 0.024856567, 0.002872467, -0.011306763, 0.046020508, -0.050872803, 0.0104599, 0.044891357, -0.022628784, -0.03161621, 0.011329651, 0.0423584, 0.019195557, 0.0023422241]}, "B07C1KZK5W": {"id": "B07C1KZK5W", "original": "Brand: DOZYANT\nName: DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified\nDescription: \nFeatures: CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel\nCOST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks.\nWEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "metadata": {"Name": "DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified", "Brand": "DOZYANT", "Description": "", "Features": "CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel\nCOST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks.\nWEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.023986816, 0.021606445, -0.023010254, -0.058929443, 0.02798462, 0.0021858215, -0.014183044, 0.0032157898, -0.029632568, 0.00258255, -0.0002641678, 0.03869629, -0.0040397644, -0.036254883, 0.046295166, -0.020431519, 0.026107788, -0.057769775, -0.062316895, -0.05731201, -0.014328003, -0.042297363, -0.006095886, 0.122802734, 0.020248413, -0.015151978, 0.030853271, -0.016067505, 0.017959595, -0.027832031, 0.022323608, 0.014297485, 0.045654297, 0.010391235, -0.06689453, -0.061157227, -0.049102783, -0.007045746, -0.06536865, 0.010894775, 0.0335083, -0.029129028, -0.00655365, 0.0028324127, -0.017822266, -0.015350342, 0.03277588, -0.01689148, 0.041137695, 0.0066833496, 0.0038852692, 0.0018510818, 0.027786255, 0.0020484924, -0.015434265, -0.0019264221, -0.0002696514, -0.07788086, 0.010559082, 0.016159058, 0.01789856, -0.010353088, 0.014961243, 0.000114023685, -0.014472961, 0.019470215, 0.051635742, -0.0132751465, 0.04650879, -0.044677734, -0.060333252, 0.0423584, 0.0020771027, 0.03274536, -0.066589355, -0.068481445, 0.060791016, -0.039611816, 0.0046157837, 0.024093628, 0.004764557, -0.020355225, 0.058013916, 0.0082473755, -0.014129639, 0.020736694, -0.015357971, -0.014892578, -0.008766174, -0.030090332, -0.020690918, 0.02545166, -0.0045204163, -0.026885986, -0.050964355, -0.017196655, -0.050079346, -0.08129883, 0.010482788, 0.017654419, 0.023284912, -0.041046143, 0.0423584, -0.0028438568, 0.021560669, 0.025360107, -0.019927979, -0.021194458, 0.049835205, 0.018630981, 0.00566864, 0.065979004, 0.023468018, -0.007575989, 0.006252289, 0.012207031, 0.01651001, 0.04953003, 0.016799927, 0.052581787, -0.005004883, -0.008934021, 0.015220642, -0.026351929, -0.012359619, -0.038635254, -0.029220581, 0.015235901, -0.039001465, -0.020111084, -0.03768921, 0.032989502, 0.046081543, 0.042297363, -0.000218153, 0.00010603666, 0.036499023, 0.061706543, 0.004322052, 0.0016202927, 0.0074691772, -0.026931763, -0.000854969, 0.019210815, -0.005290985, 0.027755737, 0.0035438538, 0.022262573, 0.017456055, -0.054595947, 0.03237915, -0.045715332, 0.034820557, -0.022262573, -0.01574707, -0.03225708, -0.021957397, -0.022979736, 0.006755829, -0.02961731, -0.028656006, -0.009803772, 0.017211914, -0.0030136108, -0.0051460266, 0.02017212, 0.019439697, -0.0028057098, 0.028137207, 0.052246094, 0.021499634, 0.042114258, 0.042907715, 0.029174805, 0.004722595, -0.02532959, -0.043792725, 0.10614014, 0.08148193, -0.15124512, -0.064453125, -0.064208984, 0.13574219, -0.021469116, 0.036102295, -0.06506348, 0.017822266, -0.09564209, -0.024887085, 0.0014762878, 0.03579712, 0.066101074, 0.0345459, -0.05657959, -0.013671875, 0.007396698, 0.0016756058, 0.03515625, -0.011512756, 0.0038490295, -0.064086914, -0.006652832, 0.020553589, 0.015930176, 0.020126343, -0.0131073, -0.008049011, 0.02267456, 0.008621216, 0.0262146, 0.0044517517, -0.01675415, 0.011749268, -0.034118652, -0.023757935, 0.0009150505, -0.006515503, 0.012039185, 0.0013990402, -0.030380249, 0.035125732, -0.013092041, 0.034484863, 0.05001831, -0.0018396378, 0.003479004, -0.036895752, -0.004169464, -0.017333984, -0.0124435425, 0.03555298, 0.067871094, 0.07531738, 0.01171875, -0.029342651, 0.043121338, 0.061401367, 0.03060913, -0.037750244, 0.01411438, 0.029052734, -0.02571106, 0.016784668, 0.04348755, -0.0075187683, -0.059692383, -0.00051116943, 0.016662598, -0.015670776, 0.035980225, 0.014785767, 0.001244545, 0.015075684, 0.013290405, -0.06933594, 0.03643799, 0.024795532, 0.045837402, -0.018203735, -0.004070282, -0.01235199, 0.018630981, -0.008666992, 0.0041656494, -0.011657715, 0.027435303, 0.036193848, 0.018981934, 0.00038027763, 4.2259693e-05, 0.0047302246, -0.010345459, -0.00982666, -0.030029297, -0.023529053, 0.005470276, -0.030593872, 0.032684326, 0.014503479, -0.016021729, 0.028564453, -0.015792847, 0.024627686, 0.00022804737, 0.056732178, 0.059295654, 0.024963379, 0.022338867, -0.031799316, -0.009056091, 0.005142212, 0.061920166, 0.032104492, -0.0045661926, -0.00409317, 0.019927979, 0.07269287, 0.0029830933, 0.026779175, -0.007572174, 0.024810791, 0.044525146, -0.047546387, 0.038238525, -0.010902405, 0.0019989014, -0.018325806, 0.017929077, 0.01689148, -0.013877869, -0.025604248, 0.005027771, 0.014411926, 0.041168213, 0.0060920715, -0.0039253235, 0.0043144226, 0.028457642, 0.032562256, 0.030548096, -0.005973816, -0.0031738281, 0.0368042, 0.009719849, 0.025054932, -0.043395996, 0.006088257, 0.026245117, 0.014785767, 0.006336212, -0.012298584, -0.015342712, -0.0345459, -0.034973145, -0.004371643, -0.011161804, 0.020980835, 0.0010566711, -0.009475708, -0.037139893, 0.030319214, -0.052825928, -0.0038776398, 0.02722168, 0.007949829, -0.04748535, 0.024017334, -0.0013303757, -0.0070533752, 0.02470398, -0.023254395, -0.0015220642, 0.013069153, 0.011291504, 0.02999878, 0.0053634644, -0.025497437, -0.014793396, 0.010757446, -0.058288574, 0.026535034, -0.038360596, -0.049621582, 0.027114868, 0.06149292, -0.022155762, -0.0029754639, -0.056854248, -0.004131317, 0.011009216, 0.011016846, -0.015792847, -0.079711914, -0.008117676, -0.0018587112, 0.008865356, 0.044311523, -0.01852417, 0.027450562, 0.024719238, 0.021011353, 0.029815674, -0.020126343, 0.008361816, -0.02293396, 0.050842285, 0.06921387, 0.013175964, 0.029403687, -0.052124023, 0.04876709, 0.08093262, 0.014862061, -0.020431519, -0.020889282, -0.011253357, 0.013809204, -0.0006427765, -0.004901886, -0.019104004, -0.027496338, 0.0018091202, 0.012992859, -0.014404297, -0.0014152527, -0.034576416, -0.017822266, -0.023544312, 0.026138306, 0.03857422, -0.008766174, 0.049804688, -0.0038909912, 0.049835205, -0.038330078, 0.011619568, -0.025848389, -0.010879517, -0.02355957, 0.028518677, 0.050201416, -0.078430176, 0.048797607, 0.07196045, -0.009559631, -0.011734009, 0.017745972, 0.024017334, 0.0033092499, -0.00040531158, -0.0031909943, -0.028289795, -0.0635376, -0.032318115, 0.0006084442, -0.0008034706, 0.013168335, -0.025802612, 0.019454956, -0.0020370483, -0.033050537, -0.016098022, 0.0007457733, 0.056396484, -0.040740967, 0.023895264, -0.04107666, -0.02760315, 0.009567261, -0.00017261505, 0.006855011, -0.0042381287, 0.039733887, 0.0064964294, -0.020950317, 0.02645874, -0.0016937256, 0.017074585, -0.027755737, 0.049560547, 0.028137207, 0.004714966, 0.013587952, -0.013267517, 0.027236938, -0.068359375, 0.053222656, 0.015716553, 0.018692017, 0.0018930435, 0.020355225, 0.031555176, 0.0010099411, -0.014953613, 0.04385376, 0.027557373, -0.003610611, -0.021911621, -0.009849548, -0.005329132, -0.041290283, 0.014198303, -0.11273193, 0.052978516, 0.017532349, -0.024795532, 0.04244995, 0.03363037, -0.018066406, 0.027404785, 0.0008149147, 0.01525116, -0.003868103, 0.05215454, -0.01939392, 0.0008087158, -0.009864807, -0.027404785, 0.013145447, -0.025558472, 0.020019531, 0.020339966, 0.06982422, -0.024795532, -0.0040740967, 0.035888672, -0.022537231, -0.015144348, -0.028701782, -0.047302246, -0.043029785, -0.064941406, 0.022506714, 0.010643005, -0.009124756, 0.014076233, 0.0065994263, -0.05053711, 0.021347046, 0.014533997, -0.0010004044, -0.010177612, 0.012260437, 0.032836914, 0.014167786, -0.030548096, 0.003408432, -0.010147095, -0.04711914, 0.0042037964, 0.0067100525, 0.03112793, 0.0032348633, -0.030410767, 0.034057617, 0.012321472, -0.04348755, 0.056732178, 0.0062828064, -0.07720947, -0.019210815, 0.043060303, 0.015350342, -0.005004883, -0.012275696, -0.05645752, -0.023086548, 0.0042648315, -0.057159424, -0.0019989014, 0.025726318, 0.026290894, -0.0234375, -0.029556274, -0.049591064, 0.042297363, -0.031341553, 0.024047852, -0.0017309189, -0.0041007996, 0.009895325, 0.05380249, -0.045288086, -0.030059814, -0.022338867, -0.00018918514, 0.023361206, 0.0020885468, 0.021835327, -0.061645508, -0.0041999817, -0.0069351196, 0.018737793, -0.020950317, 0.024536133, 0.013298035, 0.002243042, 0.01096344, 0.026916504, 0.035858154, -0.007865906, 0.0019569397, -0.020019531, -0.010917664, -0.07965088, 0.0040245056, 0.02835083, -0.050109863, -0.06677246, -0.016021729, 0.07861328, 0.02279663, 0.020507812, -0.05886841, -0.013374329, 0.04348755, -0.033203125, -0.06173706, -0.07067871, -0.012016296, -0.0016174316, -0.03010559, -0.007408142, -0.017715454, 0.053710938, -0.02671814, -0.0134887695, -0.012321472, -0.011871338, -0.008460999, 0.0036144257, 0.03125, -0.03945923, 0.020050049, -0.037231445, -0.0231781, -0.06329346, 0.024719238, 0.026794434, -0.006374359, -0.00022864342, -0.014335632, -0.014503479, -0.023330688, -0.036743164, 0.0043907166, 0.012237549, -0.019454956, -0.029769897, 0.018997192, -0.014854431, -0.0038280487, -0.046173096, -0.018295288, -0.0067481995, 0.022537231, -0.027008057, -0.041900635, -0.013130188, 0.0032634735, 0.021362305, 0.013458252, -0.050109863, -0.024276733, 0.04360962, 0.0127334595, 0.0034542084, -0.006095886, -0.022842407, -0.014472961, -0.010353088, 0.008125305, -0.049682617, 0.030090332, 0.060058594, -0.009231567, -0.0038928986, 0.030059814, -0.02130127, 0.004550934, -0.014503479, 0.010032654, 0.011405945, -0.013839722, -0.006313324, -0.0064468384, 0.052703857, 0.025848389, -0.017105103, 0.025161743, 0.000118911266, 0.0045661926, 0.02897644, 0.019454956, 0.004432678, -0.04446411, 0.08148193, -0.0076446533, -0.0044555664, -0.040496826, 0.0082092285, -0.024261475, -0.0055732727, -0.016113281, -0.007888794, 0.016983032, -0.022125244, 0.021438599, 0.013191223, 0.0496521, -0.018325806, -0.002538681, 0.02407837, -0.0045547485, -0.047058105, 0.011039734, -0.02458191, 0.064208984, -0.009391785, -0.024810791, 0.015403748, 0.04043579, -0.041656494, 0.0038986206, -0.022888184, -0.0082473755, -0.009048462, -0.02960205, -0.020431519, -0.0040359497, -0.036010742, 0.011230469, 0.018356323, 0.00522995, -0.04208374, -0.023498535, -0.009567261, 0.035888672, 0.01020813, 0.021575928, -0.037200928, -0.016983032, -0.015640259, -0.03704834, 0.0071105957, -0.024993896, -0.052947998, -0.042999268, -0.005428314, -0.0104522705, 0.029144287, 0.03933716, 0.018829346, -0.007671356, -0.0077819824, -0.046722412, 0.06060791, -0.04925537, -0.056915283, 0.08282471, 0.053588867, 0.01789856, 0.007209778, -0.018508911, -0.04067993, 0.018859863, 0.0073661804, 0.008659363, -0.055541992, -0.035064697, -0.016998291, 0.012397766, 0.042175293, -0.010482788, 0.02041626, -0.02684021, 0.014198303, -0.003917694, 0.04638672, -0.043304443, -0.026550293, 0.009132385, -0.01235199, 0.022888184, 0.0018968582, 0.038085938, -0.05065918, -0.048431396, -0.0039043427, 0.027740479, 0.023071289, 0.0073928833, 0.013580322, 0.05001831, -0.04083252, 0.009124756, 0.007972717, -0.002035141, -0.017547607, 0.007167816, -0.00072193146, 0.017303467, -0.028503418, 0.009536743, -0.014129639, -0.041107178, 0.013282776, 0.020858765, -0.014404297, 0.03503418, -0.003396988, 0.03074646, -0.011444092, -0.015106201, 0.042907715, -0.00011140108, -0.06964111, -0.03164673, -0.0032863617, -0.036834717, 0.025146484, -0.0259552, 0.017242432, 0.00983429, -0.011672974, 0.0065307617, 0.010551453, 0.03933716, -0.0029354095, 0.058929443, 0.0053100586, 0.0051841736, 0.011161804, 0.00819397, 0.046051025, 0.024353027, 0.03491211, 0.0035266876, 0.0036754608, -0.0345459, 0.021072388, 0.022323608, -0.015182495, 0.029418945, -0.025436401, 0.012199402, 0.03955078, -0.06317139, 0.005630493, 0.031433105, 0.010673523, 0.0023536682, -0.008453369, 8.612871e-05, 0.015144348, 0.010620117, 0.023529053, 0.04058838, 0.004585266, 0.022399902, -0.02078247, 0.012001038, -0.029678345, -0.0368042, 0.01260376, -0.004573822, 0.0007209778, 0.003566742, -0.041778564, -0.043151855, 0.03466797, -0.021591187, -0.041412354, -0.0017433167, 0.033050537, 0.021621704, 0.009162903, -0.033966064, -0.042633057, -0.007472992, -0.00730896, -0.006248474, 0.0018205643, -0.013847351, 0.029464722, 0.028137207, -0.0033626556, 0.0038528442, -0.03765869, 0.0050621033, 0.023162842, 0.02748108, -0.062561035, -0.017593384, -0.008224487, 0.001701355, -0.013717651, 0.059906006, 0.011726379, 0.034301758, 0.016464233, -0.0055885315, 0.05142212, 0.003583908, 0.010307312, -0.036376953, 0.021606445, 0.014984131, 0.0027198792, -0.009628296, -0.05117798, 0.0068855286, 0.019897461, -0.016616821, 0.018844604, 0.014472961, -0.0052452087, -0.0044517517, -0.022125244, 0.04446411, -0.014541626, -0.03491211, -0.029647827, -0.0067214966, -0.0016212463, -0.016525269, -0.036224365, -0.03793335, -0.042297363, -0.04043579, 0.052856445, -0.017349243, -0.006843567, 0.000182271, -0.017730713, 0.009399414, -0.024337769, 0.03591919, 0.015090942, 0.049468994, -0.012283325, -0.0014829636, 0.0069084167, -0.021728516, -0.05319214, 0.011436462, -0.03829956, -0.0069770813, 0.015960693, 0.030975342, 0.049560547, 0.012779236, 0.016036987, 0.0033893585, 0.021072388, -0.0112838745, 0.013389587, -0.066589355, -0.022705078, 0.027435303, 0.019592285, -0.033233643, -0.035247803, 0.02696228, -0.009490967, 0.028381348, 0.014678955, -0.01234436, -0.012512207, -0.006664276, -0.014022827, -0.042785645, -0.004180908, -0.0056495667, 0.0362854, -0.0044288635, -0.02557373, 0.050109863, 0.019561768, 0.0019569397, 0.03643799, 0.023956299, 0.00012230873, -0.018371582, -0.039276123, -0.024368286, -0.011962891, 0.029830933, -0.02255249, -0.08660889, -0.04144287, -0.0038051605, -0.0064430237, -0.0030899048, 0.072631836, -0.011772156, -0.0007071495, 0.030883789, -0.019012451, -0.00390625, -0.0007491112, -0.0019369125, -0.04031372, 0.003572464, 0.040374756, -0.0032634735, -0.012176514, -0.021942139, -0.029129028, -0.008331299, -0.040924072, -0.030212402, -0.024154663, -0.0725708, 0.052124023, 0.019485474, 0.0058174133, 5.543232e-06, 0.031951904, -0.024093628, -0.013130188, 0.027389526, 0.015167236, 0.045684814, 0.014907837, -0.020568848, 0.004688263, -0.0013818741, -0.01133728, -0.08306885, -0.0357666, 0.008346558, 0.03933716, -0.01737976, 0.06274414, -0.026779175, -0.0028877258, 0.042633057, -0.04135132, -0.039978027, 0.0014219284, 0.053588867, 0.023986816, 0.008369446]}, "B072559N4L": {"id": "B072559N4L", "original": "Brand: LOOCH\nName: LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch\nDescription:

      Each set has 6 of the highest quality grill mats that makes grilling anything easy!

      Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

      You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

      They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

      For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

      These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

      These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

      -Veggies
      -Shrimp
      -Fish
      -Bacon
      -Pizza
      -Pancakes
      -Eggs
      -Anything else you want to put on the grill!

      BBQ Grill Mats Size: 15.75\" x 13\"

      \nFeatures: 100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill!\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit!\nSECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!\n", "metadata": {"Name": "LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch", "Brand": "LOOCH", "Description": "

      Each set has 6 of the highest quality grill mats that makes grilling anything easy!

      Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

      You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

      They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

      For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

      These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

      These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

      -Veggies
      -Shrimp
      -Fish
      -Bacon
      -Pizza
      -Pancakes
      -Eggs
      -Anything else you want to put on the grill!

      BBQ Grill Mats Size: 15.75\" x 13\"

      ", "Features": "100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill!\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit!\nSECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.011444092, 0.005393982, -0.00730896, 0.0059394836, -0.0010356903, -0.01751709, 0.006565094, -0.028518677, -0.036499023, 0.04147339, 0.004890442, 0.015396118, 0.0015115738, -0.024124146, 0.0049591064, -0.010116577, 0.028839111, -0.03677368, -0.011856079, -0.03741455, -0.0058135986, -0.027450562, 0.040618896, 0.021347046, 0.038208008, -0.008018494, -0.029647827, -0.007133484, 0.00982666, -0.014663696, 0.019470215, 0.007972717, 0.031463623, 0.02268982, -0.05480957, -0.016921997, 0.0049324036, 0.00466156, -0.021835327, 0.019439697, 0.017425537, -0.0033226013, 0.014656067, 0.008049011, -0.017349243, -0.031188965, 0.0039482117, -0.046875, -0.008300781, 0.058624268, 0.021026611, 0.01576233, 0.010910034, 0.017852783, 0.012771606, -0.0059776306, 0.009056091, 0.008178711, 0.026016235, 0.020492554, -0.017837524, 0.00869751, 0.010383606, -0.016845703, -0.008415222, -0.014297485, 0.021759033, -0.014732361, -0.051208496, -0.012817383, 0.07598877, -0.013870239, 0.030441284, -0.03753662, -0.03643799, -0.03564453, 0.034454346, -0.03543091, 0.00818634, -0.012519836, -0.03994751, -0.042144775, 0.022018433, -0.028579712, -0.0051498413, -0.010398865, -0.022018433, 0.012039185, -0.026687622, -0.029586792, -0.009284973, 0.022079468, -0.09698486, 0.026016235, 0.017166138, -0.01864624, -0.02407837, -0.060455322, 0.019607544, 0.02772522, 0.030471802, -0.059448242, 0.064453125, -0.00077056885, -0.024230957, 0.037109375, -0.00021517277, -0.0079574585, -0.012809753, 0.016021729, -0.016738892, -0.029220581, 0.013679504, -0.0058250427, -0.033111572, 0.0017261505, 0.01171875, -0.020050049, 0.012580872, -0.025878906, -0.045898438, -0.025009155, -0.036376953, 0.056854248, 0.06402588, 0.057006836, 0.0038604736, 0.048187256, -0.06890869, 0.0132751465, -0.025848389, 0.016189575, 0.056121826, 0.042663574, -0.0061912537, -0.011199951, 0.011566162, 0.0038585663, 0.0051612854, 0.02659607, -0.021102905, -0.02130127, 0.049468994, -0.015853882, -0.043548584, -0.0036144257, 0.0345459, 0.034484863, -0.036865234, -0.062561035, 0.014297485, 0.013130188, 0.05770874, 0.010658264, -0.060699463, 0.03567505, -0.0055656433, 0.004512787, -0.07537842, -0.016555786, -0.0044059753, -0.010269165, 0.0036945343, -0.06982422, -0.047943115, 0.0012331009, -0.05657959, 0.011779785, 0.018310547, 0.018310547, 0.02645874, -0.0048980713, -0.032196045, -0.021362305, -0.007888794, -0.016159058, -0.018203735, 0.08081055, 0.04006958, -0.05581665, -0.030838013, -0.054016113, 0.10821533, -0.02178955, -0.024108887, -0.044311523, 0.029525757, 0.052520752, 0.03668213, 0.03781128, 0.011276245, -0.06695557, -0.0059814453, 0.0068092346, 0.024902344, 0.0050849915, -0.05218506, 0.008026123, 0.0022296906, -0.03918457, 0.009742737, -0.011039734, 0.02709961, 0.0071029663, 0.039733887, -0.03564453, 0.011734009, 0.0016355515, -0.0021362305, 0.05130005, 0.011444092, 0.00013685226, -0.024291992, -0.0025138855, 0.0010576248, -0.044067383, 0.02558899, -0.0042304993, 0.031051636, -0.02670288, 0.076171875, 0.026000977, 0.028167725, 0.057800293, 0.034820557, -0.0011501312, -0.01927185, -0.0046081543, 0.022338867, 0.04196167, -0.06933594, 0.023605347, 0.04788208, 0.049957275, -0.026184082, 0.029754639, 0.03387451, 0.04272461, -0.021377563, -0.0031204224, -0.016143799, -0.02217102, -0.041168213, 0.036315918, 0.003982544, 0.026733398, 0.017684937, 0.026824951, -0.012817383, -0.004211426, 0.035858154, -0.010345459, 0.03677368, -0.015052795, -0.0063171387, 0.02709961, -0.078430176, 0.020965576, -0.015853882, 0.0005993843, -0.015159607, 0.027893066, 0.08087158, -0.024246216, 0.046325684, -0.042785645, 0.028518677, 0.016967773, -0.021362305, -0.026657104, 0.020629883, 0.012084961, 0.012519836, 0.008163452, 0.010398865, 0.020385742, 0.0005159378, -0.021194458, 0.026489258, -0.010299683, 0.027359009, 0.016403198, 0.011978149, 0.0014228821, 0.051605225, -0.03894043, 0.005050659, 0.010032654, 0.0004644394, -0.024337769, 0.016693115, 0.0065231323, -0.014305115, 0.017044067, 0.015449524, -0.0340271, -0.025146484, 0.016708374, 0.0019283295, 0.006088257, 0.0038757324, 0.055633545, -0.001502037, 0.0034980774, -0.0017318726, 0.039093018, 0.019012451, -0.01411438, -0.017181396, -0.011672974, 0.026184082, 0.024902344, 0.050628662, -0.032440186, 0.07470703, 0.021270752, 0.005344391, 0.054351807, 0.022109985, 0.019699097, 0.019424438, 0.022460938, -0.055847168, 0.007774353, -0.010292053, 0.0042381287, -0.020477295, -0.01977539, 0.045715332, 0.029388428, 0.048065186, 0.074035645, 0.016815186, -0.0015106201, 0.008041382, -0.008163452, -0.006580353, -0.028930664, -0.017059326, 0.0063285828, -0.00592041, -0.010978699, 0.0034313202, -0.06500244, -0.03704834, 0.027908325, 0.033813477, 0.020401001, -0.021759033, -0.005973816, -0.0032024384, -0.055755615, 0.038848877, -0.018753052, 0.019927979, -0.016235352, -0.045928955, -0.0059051514, -0.013084412, -0.056427002, -0.018478394, 0.024276733, -0.030227661, 0.012306213, 0.038360596, -0.04473877, -0.013694763, 0.022094727, 0.0143966675, -0.003501892, 0.04147339, 0.00017046928, -0.041290283, -0.027679443, -0.0060310364, -0.036102295, 0.023010254, -0.035095215, -0.02960205, -0.0071754456, -0.014564514, 0.004421234, 0.0149002075, 0.025726318, 0.0049591064, 0.01739502, 0.025985718, 0.036010742, -0.011764526, -0.021072388, -0.008255005, 0.042266846, -0.060638428, -0.029418945, -0.011642456, 0.025985718, 0.013114929, -0.04272461, 0.010917664, -0.04800415, -0.06500244, -0.0015068054, -0.0059547424, -0.037841797, -0.033477783, -0.036743164, -0.051239014, -0.02885437, -0.0060806274, 0.103881836, -0.026626587, -0.012550354, -0.012184143, -0.003753662, 0.022125244, 0.013420105, 0.03930664, -0.004524231, 0.006088257, -0.026016235, 0.03704834, -0.06921387, 0.045532227, 0.016937256, -0.039764404, -0.0022277832, 0.030090332, 0.06665039, -0.028015137, -0.04647827, -0.009483337, -0.07470703, -0.003414154, 0.05630493, -0.017059326, 0.04144287, -0.007118225, -0.07354736, 0.040985107, -0.058624268, -0.048339844, -0.022583008, -0.018173218, 0.027267456, -0.038269043, 0.005004883, -0.008369446, -0.046539307, 0.0076904297, -0.041137695, -0.020111084, -0.0017585754, 0.05569458, 0.01890564, -0.0056152344, 0.034942627, 0.07458496, 0.06518555, 0.02897644, -0.018875122, -0.03250122, -0.074157715, 0.0871582, 0.027526855, 0.008605957, -0.035705566, 0.050872803, -0.01361084, -0.009613037, 0.008491516, -0.012893677, 0.03982544, -0.0046653748, -0.023834229, 0.030181885, 0.00075626373, 0.025238037, 0.036193848, -0.039154053, -0.046691895, -0.057006836, 0.0061149597, -0.0625, 0.076171875, 0.048553467, -0.035736084, 0.08758545, 0.059753418, 0.011985779, 0.046020508, 0.006958008, 0.0018348694, 0.009239197, 0.04446411, -0.019714355, 0.035064697, 0.0031528473, -0.005355835, 0.008522034, -0.013069153, -0.024749756, 0.0020427704, 0.022338867, -0.017211914, 0.016830444, 0.019073486, -0.013214111, 0.03161621, 0.001461029, -0.015487671, 0.0030403137, -0.024124146, 0.012145996, 0.025802612, -0.029678345, -0.0053482056, 0.0118255615, -0.009422302, -0.017837524, 0.00069379807, 0.038024902, 0.0491333, 0.037384033, 0.039001465, -0.032226562, 0.0044898987, 0.0046463013, -0.024932861, -0.036254883, 0.0084991455, 0.048736572, 0.026794434, 0.050354004, -0.010284424, -0.022994995, -0.0048446655, -0.015617371, 0.04663086, 0.027633667, -0.06402588, -0.0072517395, 0.022262573, 0.009971619, -0.019500732, 0.038848877, -0.047790527, 0.0131073, -0.018692017, -0.06137085, -0.02406311, -0.019180298, -9.047985e-05, -0.0357666, 0.008384705, -0.007041931, -0.028457642, -0.05029297, 0.013557434, -0.017868042, 0.012077332, 0.009765625, 0.047088623, -0.049560547, -0.013595581, -0.0068130493, -0.0040016174, 0.034851074, -0.0064468384, 0.015144348, -0.038146973, -0.028320312, -0.034729004, 0.067871094, 0.02444458, 0.02178955, -0.019165039, -0.007522583, -0.0018520355, 0.023834229, 0.04046631, 0.012084961, 0.014411926, -0.02897644, -0.019332886, -0.038848877, -0.020904541, 0.03289795, -0.06793213, -0.028686523, -0.04058838, 0.04473877, 0.00087451935, -0.015197754, -0.074157715, 0.008605957, 0.05392456, -0.038360596, -0.02407837, -0.04815674, 0.010261536, 0.009460449, -0.020141602, -0.015167236, -0.013725281, 0.05419922, -0.011734009, 0.0071868896, 0.013465881, -0.0014419556, -0.048980713, 0.008865356, -0.0043144226, -0.018188477, 0.034942627, -0.051574707, -0.013923645, -0.03036499, 0.06137085, 0.032043457, -0.044403076, -0.0012369156, -0.010673523, -0.02986145, -0.01586914, 0.008331299, -0.0029506683, -0.016494751, 0.023101807, -0.015792847, -0.022918701, -0.0064582825, -0.017700195, 0.010467529, -0.02796936, -0.00207901, -0.0037288666, 0.024261475, -0.04864502, 0.012268066, 0.077697754, 0.0028476715, 0.033081055, 0.038146973, -0.023086548, 0.0062828064, -0.03387451, -0.025161743, -0.010025024, -0.00083732605, -0.041290283, 0.0038700104, -0.0037574768, -0.072387695, 0.022994995, 0.072387695, -0.01979065, -0.022277832, 0.04067993, -0.01737976, 0.0075302124, 0.010032654, 0.06896973, 0.00894165, 0.022216797, 0.004623413, -0.043762207, 0.022445679, 0.027709961, -0.0413208, 0.028518677, 0.006549835, -0.057434082, 0.021316528, 0.012672424, 0.022842407, -0.03491211, 0.06185913, 0.009864807, 0.00095415115, -0.05130005, 0.008712769, -0.042633057, 0.011489868, -0.01626587, 0.009475708, 0.066833496, 0.015029907, -0.040802002, 0.015419006, 0.011772156, -0.03302002, -0.0047187805, 0.0057678223, -0.012519836, -0.022094727, 0.013404846, -0.010047913, -0.0141067505, 0.008270264, -0.033050537, 0.0158844, 0.020370483, -0.035888672, -0.013977051, -0.022140503, 0.0077781677, -0.022109985, 0.011520386, -0.02027893, 0.00030565262, -0.0016126633, 0.027618408, -0.019454956, -0.00258255, -0.041381836, 0.0060653687, 0.00687027, 0.01020813, -0.0004131794, 0.049438477, -0.044067383, 0.010093689, -0.0033740997, -0.05731201, -0.0019798279, 0.014259338, -0.04559326, -0.009056091, -0.008880615, -0.019439697, -0.0102005005, -0.015586853, 0.02658081, -0.033599854, -0.014350891, -0.056640625, 0.027267456, 0.0035572052, -0.021453857, 0.042175293, -0.018997192, 0.01259613, 0.0065307617, -0.009124756, -0.03866577, 0.03326416, 0.008453369, -0.033721924, -0.010688782, -0.019119263, -0.0012865067, -0.0014276505, -0.034606934, -0.010917664, 0.04144287, -0.0134887695, -0.046203613, -0.023483276, -0.032989502, 0.025100708, 0.010040283, 0.01701355, -0.0004386902, -0.00806427, -0.017715454, 0.012664795, -0.010787964, -0.015899658, 0.05996704, 0.016693115, 0.004837036, -0.04119873, 0.026184082, 0.037231445, -0.007980347, 0.07434082, -0.043762207, 0.0043678284, 0.0035190582, 0.049835205, 0.050628662, 0.041107178, 0.0027656555, -0.03048706, 0.006664276, 0.02267456, 0.007801056, -0.015167236, -0.035858154, -0.058166504, 0.044952393, 0.044158936, 0.031066895, 0.014282227, 0.03237915, 0.03591919, 0.010871887, -0.0005402565, 0.056152344, -0.003068924, -0.01322937, -0.020477295, 0.0062942505, 0.04888916, -0.0007958412, 0.013061523, 0.0023078918, 0.060180664, -0.049804688, 0.03765869, -0.011009216, 0.013580322, 0.022338867, -0.01979065, -0.03439331, -0.0317688, -0.030288696, -0.007106781, -0.012535095, 0.028717041, -0.009132385, 0.007858276, -0.03253174, 0.067993164, -0.019485474, 0.06402588, 0.0022144318, -0.058807373, 0.01663208, 0.038330078, 0.023117065, 0.035217285, -0.045959473, -0.02482605, -0.0064086914, 0.043395996, 0.0017576218, 0.059570312, -0.012390137, 0.025512695, -0.011062622, -0.005142212, -0.037963867, -0.020248413, 0.0146484375, -0.015457153, -0.0056648254, 0.0051231384, 0.029937744, 0.018173218, 0.046081543, -0.073791504, -0.013648987, 0.020462036, -0.0038871765, -0.026290894, 0.0025424957, -0.038269043, -0.054840088, -0.0010528564, 0.037963867, -0.024551392, 0.008415222, -0.030319214, 0.015090942, 0.009307861, -0.028717041, 0.004459381, -0.015213013, 0.006275177, 0.04067993, 0.035308838, -0.0010986328, 0.017547607, -0.01234436, 0.0009088516, 0.030151367, 0.007385254, 0.010375977, 0.04940796, 0.033203125, 0.06939697, 0.050994873, -0.027709961, 0.030059814, 0.05532837, -0.025253296, 0.0027770996, 0.007896423, 0.0051727295, -0.058776855, -0.0039100647, 0.014968872, -0.032836914, 0.015655518, 0.01473999, -0.00029325485, -0.012931824, -0.0026741028, -0.027114868, 0.031463623, -0.001449585, 0.014755249, -0.022964478, -0.015014648, -0.0002770424, -0.027023315, -0.016311646, -0.021774292, -0.035491943, 0.032440186, 0.023101807, -0.018692017, -0.017959595, -0.02558899, 0.016601562, -0.068481445, 0.0065460205, -0.012001038, 0.08166504, 0.008796692, 0.05606079, -0.041381836, -0.056243896, -0.035095215, 0.03302002, -0.057861328, -0.039978027, -0.02609253, 0.026473999, 0.030258179, -0.014450073, -0.03668213, 0.04849243, -0.012268066, -0.018508911, -0.019363403, -0.032592773, -0.011390686, 0.016357422, -0.016464233, -0.024536133, -0.03527832, 0.03338623, 0.011108398, 0.019165039, 0.034362793, -0.022338867, -0.0647583, -0.022003174, -0.038970947, 0.030685425, -0.016082764, 0.031036377, 0.0017261505, 0.018463135, -0.006088257, 0.028198242, 0.013000488, -0.019943237, 0.04260254, 0.023620605, -0.012420654, -0.03112793, -0.06970215, 0.0047798157, -0.023040771, 0.030075073, 0.038238525, 0.034332275, -0.06149292, 0.012527466, 0.003534317, 0.020339966, 0.009727478, -0.035888672, -0.04208374, 0.0009870529, 0.027435303, -0.050872803, 0.024124146, 0.0034427643, -0.027282715, -0.05493164, -0.016326904, 0.018371582, -0.019729614, -0.009719849, -0.018875122, 0.020339966, -0.007820129, -0.030731201, -0.009155273, -0.08850098, 0.023208618, 0.044647217, -0.0037174225, 0.007133484, -0.0057792664, -0.036071777, -0.02861023, 0.025817871, 0.031677246, 0.028320312, -0.024002075, 0.004585266, 0.018737793, -0.0075569153, -0.005279541, -0.04940796, -0.051208496, 0.0491333, 0.031677246, -0.028015137, 0.053009033, -0.028320312, 0.016342163, -0.017547607, 0.0010604858, -0.0126953125, -0.008934021, 0.0032730103, -0.022262573, 0.019454956]}, "B07C2KCQXX": {"id": "B07C2KCQXX", "original": "Brand: Cuisinart\nName: Cuisinart CGG-750 Portable, Venture Gas Grill, Red\nDescription: \nFeatures: 154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\n9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control.\nCOMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nPROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure.\nLARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.\n", "metadata": {"Name": "Cuisinart CGG-750 Portable, Venture Gas Grill, Red", "Brand": "Cuisinart", "Description": "", "Features": "154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\n9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control.\nCOMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nPROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure.\nLARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.06738281, 0.0002644062, -0.03567505, 0.017456055, -0.026611328, 0.001991272, -0.035736084, -0.011047363, -0.015609741, 0.0078125, -0.04095459, 0.050567627, -0.011909485, -0.015464783, 0.024505615, -0.024459839, 0.0065689087, 0.020217896, -0.005115509, -0.021011353, -0.011306763, -0.015449524, -0.030548096, 0.056152344, 0.038848877, -0.03060913, -0.007911682, -0.008285522, 0.031402588, 0.0009455681, 0.030288696, -0.0032444, 0.036499023, -0.013717651, -0.011054993, -0.0013313293, 0.01398468, -0.014793396, -0.020568848, 0.0033454895, 0.0055160522, 0.0021896362, 0.015068054, 0.02267456, -0.01625061, -0.02758789, 0.025482178, -0.010116577, 0.0077819824, -0.017807007, -0.0017700195, 0.004058838, 0.014564514, -0.015701294, -0.021270752, -0.027618408, -0.018569946, -0.009513855, 0.016845703, -0.01864624, -0.013938904, -0.02229309, 0.032989502, 0.008834839, -0.044006348, -0.0096206665, 0.085632324, -0.028076172, -0.009155273, -0.036102295, 0.025634766, 0.03640747, 0.007041931, 0.016342163, -0.027114868, -0.051635742, 0.04852295, -0.028762817, 0.0061531067, 0.011436462, -0.04840088, 0.009460449, -0.017410278, -0.038391113, -0.027664185, -0.03652954, -0.03137207, 0.014053345, -0.015197754, -0.035736084, -0.00730896, -0.008285522, -0.0949707, 0.046203613, 0.036834717, -0.01398468, -0.034301758, -0.068725586, 0.023361206, 0.014694214, 0.04675293, -0.05203247, 0.05014038, 0.0053215027, -0.018447876, 0.030807495, -0.0074272156, 0.05908203, 0.024230957, 0.022354126, -0.0038661957, -0.062683105, -0.0041046143, -0.01789856, -0.025100708, 0.026031494, -0.0028190613, -0.0034103394, 0.0013217926, 0.013092041, -0.021621704, 0.0036735535, -0.031066895, 0.023864746, 0.05569458, 0.070373535, 0.03652954, -0.018753052, -0.09259033, 0.041381836, -0.03265381, 0.03265381, 0.075805664, 0.022354126, -0.019515991, -0.021484375, 0.035491943, 0.019348145, 0.031677246, -0.028076172, 0.020187378, -0.0037498474, 0.010192871, 0.023956299, -0.033447266, 0.0073890686, 0.037475586, 0.02861023, -0.041046143, -0.05480957, 0.018127441, 0.006362915, 0.033355713, 0.038085938, -0.06512451, 0.00957489, -0.005962372, -0.016418457, -0.027359009, -0.06744385, -0.019714355, -0.0209198, 0.020187378, -0.007774353, -0.03250122, 0.03314209, -0.0067367554, -0.00019586086, 0.011459351, 0.07098389, -0.015716553, 0.009147644, -0.040405273, 0.018173218, 0.0054512024, -0.005393982, 0.006702423, 0.014175415, 0.043304443, -0.015716553, -0.019073486, -0.03768921, 0.1015625, -0.022827148, -0.013259888, -0.00548172, 0.015342712, -0.01448822, 0.0044517517, 0.0064697266, 0.036590576, 0.016662598, 0.01109314, 0.007041931, -0.0059814453, 0.004173279, -0.040618896, 0.03955078, -0.03024292, -0.021240234, 0.044921875, 0.006706238, -0.006679535, -0.028656006, -0.04083252, -0.027511597, -0.005218506, 0.008300781, 0.026504517, 0.011405945, -0.0031356812, -0.0027561188, 0.005680084, -0.06488037, -0.053985596, -0.0082092285, -0.017364502, -0.00013399124, 0.015853882, 0.0010576248, 0.050750732, -0.0032444, 0.041381836, 0.014259338, 0.043273926, 0.024795532, -0.02204895, 0.012771606, 0.024398804, 0.014480591, -0.024383545, 0.029632568, 0.084350586, 0.047332764, -0.029571533, 0.037261963, 0.07836914, 0.04498291, -0.036254883, -0.00029349327, 0.011299133, -0.07019043, -0.028625488, 0.035491943, 0.0006489754, -0.011352539, 0.0023155212, 0.024414062, -0.013015747, 0.029785156, 0.015258789, 0.020248413, 0.030258179, 0.06341553, -0.03274536, 0.039764404, -0.0079422, 0.01789856, -0.0029239655, 0.014511108, 0.0047683716, 0.04727173, 0.0041542053, 0.019638062, -0.008872986, 0.014793396, -0.00217247, 0.0077781677, -0.038879395, 0.0040359497, 0.032287598, 0.02810669, -0.0041160583, 0.0038204193, 0.024246216, 0.0009613037, -0.04019165, 0.018936157, -0.016448975, -0.013832092, -0.00016880035, -0.008583069, 0.022567749, -0.00042915344, 0.012397766, 0.025558472, 0.035491943, 0.014419556, -0.042144775, -0.0026512146, 0.01512146, 0.0040130615, -0.014122009, -0.0039024353, -0.01234436, -0.0049972534, 0.09051514, 0.02015686, 0.0154418945, -0.023132324, 0.031402588, 0.013534546, -0.076416016, 0.051605225, -0.014587402, -0.013076782, -0.036712646, 0.0052452087, 0.0013103485, -0.026275635, -0.010101318, 0.04373169, 0.04046631, 0.010604858, 0.049987793, -0.0017080307, -0.0015993118, 0.05508423, -0.009414673, -0.013877869, -0.021011353, -0.025848389, -0.014625549, -0.020462036, -0.01373291, 0.011505127, -0.033233643, 0.010520935, -0.031402588, -0.0038280487, 0.024856567, -0.017700195, -0.010848999, 0.02835083, 0.009735107, 0.0044937134, 0.008995056, -0.020904541, -0.0072746277, -0.012290955, 0.019943237, -0.04220581, -0.011146545, -0.023727417, -0.010948181, -0.0062446594, 0.02079773, 0.031219482, -0.005809784, -0.0025024414, 0.00020885468, -0.034729004, 0.022140503, -0.07092285, 0.016921997, -0.00818634, -0.06378174, -0.08319092, -0.0151901245, -0.09851074, -0.0025253296, 0.0059509277, -0.042541504, -0.023208618, 0.055633545, -0.03062439, -0.05215454, -0.030319214, 0.004005432, 0.012542725, 0.04837036, 0.0066566467, -0.023666382, -0.03503418, -0.048797607, -0.041412354, 0.048614502, -0.049987793, 0.046966553, 0.029190063, -0.05001831, 0.011642456, -0.055023193, 0.03213501, 0.005607605, 0.006717682, 0.03439331, 0.06262207, 0.016784668, -0.019943237, 0.02468872, 0.053741455, 0.013206482, -0.018173218, -0.004825592, -0.016021729, 0.0104904175, -0.011169434, -0.014823914, -0.02331543, -0.05618286, -0.007537842, -0.013885498, -0.030838013, -0.018005371, -0.06488037, -0.04232788, -0.044555664, 0.015274048, 0.0690918, -0.019058228, -0.01927185, -0.038604736, 0.009689331, -0.0112838745, 0.01676941, 0.040527344, -0.017562866, 0.028213501, -0.024414062, 0.029830933, -0.0546875, 0.010414124, 0.020065308, -0.012138367, -0.006340027, -0.0052948, -0.0023899078, -0.030731201, 0.042663574, 0.008674622, -0.004760742, -0.009963989, 0.0021095276, -0.04046631, -0.0016307831, -0.000269413, -0.021835327, 0.03640747, -0.039642334, -0.055511475, -0.0045204163, 0.011650085, 0.04058838, 0.02357483, -0.022277832, -0.028518677, -0.055236816, -0.02734375, -0.0256958, 0.032226562, 0.0073661804, 0.008598328, 0.017181396, -0.0048179626, 0.06616211, 0.006843567, 0.01878357, 0.04159546, -0.040008545, -0.042388916, -0.025466919, -0.005672455, -0.0059051514, -0.012069702, -0.051940918, 0.05279541, -0.016571045, -0.014694214, 0.01977539, -0.038726807, 0.041992188, 0.021316528, -0.00020337105, -0.026947021, -0.063964844, 0.03692627, 0.040802002, -0.00025486946, -0.042633057, -0.07086182, 0.025146484, -0.115722656, 0.095947266, 0.029373169, -0.019134521, 0.08703613, 0.034698486, 0.011741638, 0.045898438, 0.012390137, -0.0003979206, -0.009178162, 0.10681152, -0.0087890625, 0.03930664, 0.020401001, -0.038970947, 0.005970001, 0.018310547, -0.07165527, 0.011878967, -0.013008118, -0.046203613, -0.03100586, 0.013908386, 0.023880005, -0.0146865845, -0.00655365, -0.04837036, 0.003419876, -0.047943115, -0.009590149, 0.013977051, -0.0236969, -0.0013933182, -0.017028809, 0.015007019, -0.032714844, -0.011482239, -0.015899658, 0.027526855, -0.009803772, 0.055358887, -0.0135269165, 0.0060653687, -0.054656982, -0.0044822693, -0.017471313, 0.021102905, 0.016204834, 0.0020828247, 0.010513306, -0.018753052, 0.016281128, -0.0027637482, -0.011360168, -0.006454468, -0.032287598, -0.026306152, -0.0032463074, 0.029083252, 0.010879517, -0.021987915, 0.00024485588, -0.03552246, -0.023223877, -0.018814087, 0.00059461594, -0.031402588, -0.015205383, -0.009918213, -0.049682617, -0.03643799, -0.030639648, 0.01171875, -0.037597656, 0.028564453, -0.0035915375, -0.049804688, -0.01033783, 0.022277832, -0.0496521, 0.0143585205, -0.012008667, -0.021484375, 0.051696777, 0.026550293, 0.00920105, -0.04901123, 0.037139893, 0.00014662743, 0.10449219, 0.007865906, 0.02999878, -0.022583008, -0.0077323914, -0.028259277, 0.06573486, 0.07293701, 0.0028095245, 0.03866577, -0.032165527, -0.043426514, -0.02470398, -0.016601562, 0.04989624, -0.061645508, -0.019454956, -0.014343262, 0.06286621, -0.026870728, 0.013168335, -0.016784668, -0.004322052, -0.017425537, -0.008277893, -0.044433594, -0.0015745163, 0.00066185, 0.011711121, -0.019805908, 0.00207901, -0.016143799, 0.02508545, -0.026428223, 0.01751709, -0.01676941, -0.010551453, -0.021621704, 0.024551392, 0.049835205, -0.024414062, 0.004219055, -0.01939392, -0.038879395, -0.044006348, 0.062927246, 0.054473877, -0.013259888, -0.002670288, -0.0016098022, -0.027770996, -0.05810547, -0.0026760101, 0.031982422, -0.013870239, 0.022567749, -0.018478394, 0.01285553, -0.0027942657, -0.015472412, -0.011871338, -0.017349243, 0.015823364, -0.018966675, 0.022506714, 0.0119018555, 0.03277588, 0.0024814606, 0.0005617142, 0.008010864, -0.019332886, -0.029449463, 0.022720337, -0.029067993, -0.028182983, 0.012664795, 0.000831604, 0.016616821, -0.0102005005, 0.0011739731, -0.09887695, 0.017562866, 0.078430176, -0.009223938, 0.013084412, -0.0020580292, 0.03387451, -0.004688263, -0.000289917, 0.06994629, -0.05178833, -0.0052223206, 0.033599854, 0.012458801, -0.013809204, 0.04837036, -0.032562256, 0.03338623, 0.028289795, -0.0256958, 0.03591919, -0.025894165, -0.0073623657, -0.02520752, 0.028869629, -0.0068206787, 0.021347046, -0.05630493, 0.0024795532, 0.020736694, 0.05557251, 0.031433105, -0.058624268, 0.02281189, -0.015434265, -0.0054397583, 0.029205322, 0.045715332, -0.018203735, -0.01675415, 0.033355713, -0.02885437, -0.027908325, 0.028503418, -0.016311646, -0.0038757324, -0.023483276, -0.019699097, 0.009796143, 0.01600647, 0.0076179504, -0.0006465912, 0.013023376, -0.00944519, -0.026306152, 0.005695343, -0.019012451, -0.007843018, 0.009712219, 0.055358887, -0.006248474, 0.0010528564, -0.064208984, -0.018569946, 0.015945435, -0.012710571, -0.01638794, 0.08868408, -0.030715942, 0.011367798, 0.010978699, -0.050750732, -0.005214691, -0.0014877319, -0.033447266, -0.008323669, 0.005580902, 0.023239136, -0.032226562, -0.03842163, 0.07727051, -0.05130005, -0.038330078, -0.061920166, 0.0692749, -0.010375977, -0.010063171, 0.040008545, -0.0024909973, 0.013076782, 0.029922485, -0.010826111, -0.032165527, -0.018981934, 0.004825592, -0.060333252, -0.043823242, -0.025115967, 0.011695862, -0.03173828, 0.009094238, -0.023376465, 0.057525635, 0.002117157, 0.002204895, -0.030944824, -0.014343262, -0.0018959045, -0.006336212, 0.018035889, 0.009223938, 0.011260986, -0.04498291, -0.0008735657, -0.027297974, 0.00793457, 0.050567627, 0.026809692, -0.0014772415, -0.027908325, 0.016937256, 0.048339844, 0.019088745, 0.0769043, -0.035095215, 0.0044403076, 0.015472412, 0.039886475, -0.0034713745, 0.04550171, 0.005634308, -0.001958847, -0.0146865845, -0.010505676, 0.036895752, 0.012535095, -0.01902771, 0.013313293, 0.04812622, 0.021026611, 0.022033691, 0.027130127, 0.050994873, 0.015823364, -0.027755737, 0.0061073303, 0.02406311, -0.033996582, -0.0005235672, -0.024047852, 0.0019054413, 0.025894165, -0.010375977, 0.047668457, -0.02659607, 0.066345215, -0.0069618225, 0.013282776, 0.004299164, 0.00011634827, 0.009841919, -0.05343628, -0.02482605, -0.0045661926, 0.017745972, 0.012756348, -0.028182983, 0.028778076, -0.012504578, -0.003704071, -0.023651123, 0.08581543, -0.044891357, 0.019485474, 0.027328491, -0.04647827, -0.0054855347, -0.0064353943, 0.010810852, -0.022476196, -0.07092285, -0.029022217, -0.00982666, -0.0019989014, 0.012878418, 0.03591919, 0.026916504, 0.011955261, -0.021850586, 0.016845703, -0.027511597, -0.026504517, 0.016998291, 0.028198242, 0.02670288, -0.009063721, 0.013908386, -0.014053345, 0.05456543, -0.0725708, -0.023651123, -0.02029419, 0.015563965, -0.044525146, 0.055114746, -0.008666992, -0.03100586, 0.046875, 0.037200928, -0.013511658, 0.03326416, 0.021606445, -0.002986908, 0.0046157837, -0.06518555, 0.029541016, -0.03869629, 0.051635742, 0.03036499, 0.031021118, -0.027023315, -0.015098572, 0.0061149597, -0.021911621, 0.034851074, -0.007068634, 0.013168335, 0.025375366, -0.00058841705, 0.0038871765, 0.034301758, -0.028839111, 0.021499634, -0.004688263, 0.009651184, 0.032043457, 0.0055160522, -0.022338867, 0.029953003, 0.018325806, 0.030334473, 0.05734253, 0.016799927, -0.008453369, 0.022064209, 0.019180298, -0.016693115, 0.0040740967, 0.0029735565, -0.029769897, 0.0287323, -0.011955261, -0.034088135, -0.012046814, -0.06951904, 0.0109939575, 0.037139893, -0.049041748, 0.009307861, 0.062347412, -0.021072388, -0.008766174, 0.002325058, 0.0129470825, -0.051361084, 0.020935059, -0.010986328, 0.025772095, 0.022109985, 0.03817749, -0.0066490173, -0.056030273, -0.042816162, 0.0129470825, 0.000726223, -0.039215088, -0.032562256, 0.0023021698, -0.0058059692, -0.028823853, 0.009460449, 0.008140564, 0.031829834, -0.008338928, 0.05508423, -0.014053345, -0.027618408, 0.04815674, 0.04473877, -0.058685303, 0.007858276, -0.008384705, -0.018081665, 0.04736328, 0.0074043274, -0.014205933, -0.031402588, -0.016403198, -0.02255249, -0.011192322, -0.018173218, -0.0064582825, 0.001953125, 0.0025634766, -0.040039062, -0.042175293, 0.0004079342, 0.04095459, 0.008171082, -0.020553589, 0.027572632, -0.016830444, -0.048706055, -0.025665283, -0.030899048, 0.003419876, 0.03579712, -0.007286072, -0.017669678, 0.026046753, -0.026031494, 0.032226562, 0.021514893, -0.005908966, -0.0028839111, 6.753206e-05, 0.034576416, -0.005329132, 0.0010814667, 0.035858154, -0.035614014, -0.016281128, 0.020751953, 0.020629883, -0.028060913, 0.009284973, -0.027008057, 0.008270264, 0.009925842, -0.016494751, -0.022399902, -0.0395813, -0.014846802, 0.039520264, -0.023132324, 0.018127441, -0.03253174, -0.017822266, -0.043121338, 0.005104065, 0.034423828, -0.010818481, -0.0736084, 0.017959595, 0.03112793, 0.050048828, -0.0368042, -0.04699707, -0.039367676, -0.0033435822, -0.020233154, 0.022720337, 0.033935547, -0.03640747, -0.0014219284, 0.025665283, -0.013130188, -0.08062744, 0.045776367, 0.037139893, 0.042541504, 0.036315918]}, "B077GDYMCX": {"id": "B077GDYMCX", "original": "Brand: Weber\nName: Weber 7137 Tank Cover\nDescription: \nFeatures: UV inhibitors in fabric resists fading\nBreathable, weather resistant fabric\nProtects cylinder from the elements\nDrawstring keeps the cover in Place\nFits standard size 20Lb liquid propane tank (Sold Separately)\n", "metadata": {"Name": "Weber 7137 Tank Cover", "Brand": "Weber", "Description": "", "Features": "UV inhibitors in fabric resists fading\nBreathable, weather resistant fabric\nProtects cylinder from the elements\nDrawstring keeps the cover in Place\nFits standard size 20Lb liquid propane tank (Sold Separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0059890747, -0.007507324, -0.043762207, -0.08288574, -0.018814087, 0.009399414, -0.059783936, 0.05130005, -0.019638062, 0.017593384, 0.027038574, 0.034851074, -0.021469116, -0.055480957, 0.015975952, 0.0036144257, 0.041168213, 0.028701782, 0.03817749, -0.00843811, -0.006504059, 0.0040893555, 0.026824951, 0.06542969, 0.012992859, -0.037628174, 0.058410645, -0.015045166, 0.003255844, -0.018295288, 0.0234375, 0.00504303, 0.03475952, -0.015548706, 0.027893066, 0.060913086, 0.02357483, -0.01651001, 0.0073509216, 0.013290405, 0.005191803, 0.0017547607, 0.050109863, -0.007083893, 0.017562866, -0.043701172, 0.040863037, -0.04284668, 0.045959473, 0.010986328, -0.0078048706, 0.03579712, -0.016357422, -0.0031375885, -0.0062828064, 0.0006117821, 0.04348755, -0.0107040405, 0.02684021, -0.029907227, -0.031280518, 0.02053833, 0.027297974, -0.012489319, 0.005844116, 0.00015628338, 0.089904785, -0.0158844, -0.036071777, -0.013374329, 0.031402588, 0.003868103, 0.025314331, 0.018844604, -0.012687683, -0.055603027, 0.025436401, -0.027267456, 0.024002075, 0.015640259, -0.016799927, -0.029937744, 0.020004272, 0.0025596619, -0.010986328, 0.025741577, -0.02003479, -0.005962372, 0.003894806, -0.0105896, 0.0013475418, 0.023071289, -0.018508911, 0.032226562, 0.0031223297, -0.036865234, -0.035736084, -0.034362793, 0.031341553, 0.027786255, 0.0024700165, -0.018066406, 0.018096924, -0.022537231, 0.0024032593, 0.05441284, 0.006214142, 0.022994995, 0.032348633, 0.009994507, 0.0060195923, 0.039245605, 0.011734009, 0.0036411285, -0.028686523, -0.038513184, -0.053344727, 0.044921875, 0.017166138, 0.013122559, -0.015350342, 0.007797241, -0.032073975, -0.043304443, 0.020355225, -0.015991211, -0.021347046, 0.04574585, -0.023742676, -0.025527954, 0.001581192, 0.028747559, 0.00894928, 0.051116943, -0.0026245117, 0.011543274, 0.021102905, -0.0016098022, -0.0076942444, 0.0046157837, -0.02128601, 0.00085163116, 0.024993896, -0.02078247, -0.03955078, 0.059631348, 0.023284912, -0.01626587, -0.018127441, -0.09460449, -0.0037460327, -0.047454834, 0.053771973, -0.014770508, -0.021362305, -0.018173218, 0.0013446808, -0.005493164, -0.038360596, -0.040771484, -0.0014076233, -0.017837524, -0.039520264, -0.00049972534, -0.026504517, 0.03375244, 0.04852295, 0.007843018, 0.02708435, 0.08947754, 0.002407074, -0.034820557, -0.0076065063, 0.034606934, -0.011962891, -0.0021209717, -0.016052246, 0.029693604, 0.059326172, -0.07080078, -0.06008911, -0.050231934, 0.10119629, -0.0209198, 0.018997192, -0.04220581, 0.014854431, -0.060394287, 0.004512787, -0.017211914, 0.062072754, 0.029144287, -0.0030574799, -0.028564453, -0.03201294, 0.016677856, -0.016952515, 0.035491943, -0.021530151, -0.004512787, -0.01209259, -0.027893066, 0.024917603, 0.035369873, 0.045806885, -0.033599854, 0.01763916, -0.019927979, 0.013031006, 0.023223877, -0.009811401, -0.039367676, 0.010864258, -0.02166748, -0.012649536, 0.007007599, 0.0022144318, -0.0017986298, -0.0013904572, -0.033111572, 0.039489746, -0.008811951, 0.030883789, 0.066711426, -0.024642944, 0.02835083, -0.026260376, 0.028656006, 0.02508545, 0.0015163422, 0.11456299, -0.007511139, 0.04360962, 0.026855469, -0.00919342, 0.03744507, 0.048309326, -0.024337769, -0.031051636, 0.015556335, -0.008544922, -0.05419922, -0.019485474, 0.06732178, -0.022109985, 0.010795593, 0.011558533, 0.037994385, -0.0073051453, 0.011047363, 0.08477783, -0.011878967, 0.0017623901, -0.024749756, 0.014282227, -0.0018644333, -0.008277893, 0.04647827, -0.023483276, 0.03942871, -0.037872314, 0.08404541, 0.08270264, 0.014915466, 0.024597168, -0.018615723, 0.06274414, 0.05078125, 0.011924744, -0.0362854, -0.0056533813, 0.021408081, -0.0035076141, 0.012382507, 0.0095825195, 0.010505676, -0.014701843, -0.0055770874, -0.024215698, -0.0005168915, 0.029205322, 0.04522705, 0.03567505, 0.00045585632, 0.027420044, 0.008735657, 0.0062713623, 0.00945282, -0.021575928, -0.03427124, 0.009628296, 0.005836487, -0.017150879, 0.00027751923, 0.030395508, -0.035125732, 0.032318115, -0.012779236, 0.014083862, -0.02609253, -0.0075035095, 0.042663574, -0.012130737, 0.014892578, -0.0022335052, -0.006778717, 0.00843811, -0.012962341, -0.011512756, -0.007583618, -0.04901123, -0.0065574646, -0.005935669, -0.0116119385, 0.03540039, 0.024139404, 0.038024902, 0.019973755, 0.06738281, 0.06384277, -0.001077652, 0.04046631, 0.003479004, -0.0076522827, 0.027435303, -0.01399231, -0.02078247, -0.0009851456, -0.033477783, 0.00033402443, -0.04345703, -0.059692383, -0.04763794, -0.0049209595, 0.0018777847, 0.018051147, 0.011962891, 0.055389404, 0.009773254, -0.02861023, 0.010177612, -0.001832962, -0.010375977, 0.00085020065, -0.042541504, -0.045013428, 0.038604736, -0.00869751, 0.023956299, 0.025344849, 0.016342163, 0.007472992, -0.037628174, -0.06488037, -0.009811401, 0.0056114197, 0.005710602, -0.037261963, 0.016586304, -0.057281494, -0.0026893616, -0.007911682, -0.0440979, 6.92606e-05, 0.0067443848, -0.010154724, -0.014175415, -0.0024337769, 0.013214111, 0.028533936, -0.038513184, 0.047210693, -0.046813965, -0.01902771, -0.0078048706, 0.013473511, -0.02142334, -0.062561035, -0.0037708282, -0.03186035, -0.024749756, 0.0029182434, -0.0076942444, 0.025115967, 0.019500732, 0.036987305, 0.039764404, 0.029724121, 0.001578331, -0.036468506, -0.008354187, 0.02027893, 0.018753052, -0.027786255, 0.023101807, -0.0079956055, -0.003572464, 0.048217773, -0.033050537, -0.014038086, -0.07373047, -0.00076532364, 0.018508911, -0.054534912, -0.003616333, -0.03149414, -0.06774902, -0.033050537, 0.0032310486, 0.06707764, -0.038635254, 0.019256592, -0.03753662, 0.016952515, -0.0007390976, 0.014083862, -0.01739502, -0.010070801, -0.041046143, 0.026748657, 0.044555664, -0.028182983, -0.006767273, 0.021530151, -0.012283325, -0.01260376, -0.007106781, -0.0058784485, -0.00046682358, 0.06591797, -0.011886597, 0.013999939, -0.04345703, -0.045562744, -0.008476257, 0.013061523, 0.017333984, 0.007873535, 0.020858765, -0.002500534, 0.028656006, 0.0040626526, 0.012794495, 0.05871582, -0.02003479, 0.028305054, -0.01322937, 0.007171631, -0.002368927, -0.004512787, -0.0104904175, 0.0009036064, 0.0064888, 0.016677856, -0.025970459, 0.052215576, 0.004623413, 0.032226562, 0.0030174255, 0.02671814, 0.009490967, -0.012901306, 0.011077881, 0.0017147064, -0.03894043, -0.054840088, 0.06890869, 0.022872925, 0.028564453, -0.04510498, -0.02468872, 0.057769775, -0.0015363693, -0.0008659363, -0.023590088, 0.024627686, 0.025894165, -0.0309906, 0.060272217, 0.009742737, -0.043884277, -0.00054359436, -0.117614746, 0.07556152, 0.061157227, -0.019180298, 0.06573486, 0.07067871, -0.013191223, -0.008262634, 0.056121826, -0.027038574, 0.027053833, 0.01586914, -0.026062012, -0.036834717, -0.0058937073, -0.0058174133, -0.012382507, -0.055999756, -0.004085541, -0.017837524, 0.014144897, 0.01676941, -0.017837524, -0.02822876, 0.0009860992, -0.024597168, 0.023880005, 0.012275696, -0.011108398, -0.01914978, 0.010444641, 0.041107178, -0.0317688, 0.031982422, -9.9122524e-05, 0.02571106, -0.01826477, -0.017715454, -0.023376465, -0.030380249, 0.010314941, 0.016708374, 0.005836487, 0.010726929, -0.0047836304, 0.034851074, -0.03869629, -0.0041542053, -0.016113281, 0.029571533, -0.0074386597, -0.022369385, 0.0519104, -0.0004544258, 0.014144897, 0.0022277832, -0.054595947, -0.059661865, 0.0090789795, 0.024032593, 0.0010023117, -0.04660034, -0.0033302307, -0.05029297, -0.013534546, -0.031433105, -0.012023926, -0.036132812, -0.011253357, 0.009552002, -0.029968262, 0.010917664, -0.054260254, 0.044067383, -0.053009033, 0.022064209, -0.010971069, 0.020080566, 0.008033752, 0.045532227, -0.049560547, -0.018630981, -0.043426514, 0.007926941, -0.0027980804, -0.013008118, 0.0758667, -0.043060303, -0.00025892258, -0.034484863, 0.0087509155, -0.005519867, 0.031280518, 0.00067186356, -0.005092621, -0.012710571, 0.00868988, 0.04046631, -0.045043945, 0.07507324, 0.022537231, 0.04244995, -0.0395813, -0.0435791, 0.053771973, -0.05065918, -0.047790527, -0.048980713, 0.031951904, 0.00058841705, -0.031585693, -0.015060425, 0.03744507, 0.044799805, 0.01348114, -0.039855957, 0.00157547, 0.018997192, -0.033996582, -0.030212402, -0.017318726, -0.023254395, 0.045776367, -0.00066661835, -0.04547119, -0.024215698, 0.019348145, 0.04837036, -0.03768921, -0.02406311, -0.0158844, -0.007980347, -0.007621765, 0.017822266, -0.07397461, 0.07757568, 0.07714844, 0.018554688, 0.02104187, 0.02973938, 0.0009794235, -0.04232788, -0.02267456, -0.01739502, 0.031402588, 0.0030975342, -0.018295288, 0.012283325, 0.0013713837, -0.00655365, -0.038391113, -0.02281189, -0.0077171326, 0.051086426, -0.027297974, -0.020553589, -0.014404297, -0.0064468384, 0.012069702, -0.004009247, -0.010009766, -0.0053596497, -0.0073051453, -0.026290894, 0.00053691864, 0.012680054, -0.01776123, 0.004711151, 0.034851074, 0.029846191, -0.04159546, 0.027038574, 0.031219482, 0.014602661, -0.055511475, 0.015335083, -0.008811951, -0.008331299, -0.034484863, 0.029647827, 0.0340271, 0.025939941, 0.016220093, -0.012794495, -0.02822876, 0.008117676, -0.04257202, 0.032348633, -0.005203247, -0.070739746, -0.016174316, 0.023635864, 0.009674072, -0.03161621, 0.077697754, -0.007671356, -0.027069092, -0.033691406, -0.007610321, -0.0501709, 0.029067993, -0.025299072, -0.0020008087, 0.02166748, -0.006904602, -0.0022659302, 0.008453369, -0.022384644, -0.023010254, 0.013076782, -0.0046653748, -0.022857666, -0.0052223206, 0.0008792877, -0.058685303, -0.0104522705, 0.009841919, 0.018920898, 0.03475952, -0.032562256, -0.031402588, -0.08380127, -0.022888184, -0.0058403015, -0.015930176, -0.024047852, 0.048309326, 0.046691895, -0.018432617, -0.068481445, 0.053344727, 0.022125244, -0.04876709, -0.0020542145, 0.022399902, 0.058563232, -0.0030460358, 0.025741577, -0.048919678, -0.023651123, -0.04336548, -0.0070991516, 0.003211975, -0.00017499924, -0.06982422, -0.009292603, -0.013618469, -0.013023376, -0.03555298, 0.007587433, 0.01991272, -0.04147339, -0.035614014, -0.036987305, 0.041931152, -0.025848389, -0.053619385, -0.011650085, 0.033203125, -0.01474762, 0.017303467, -0.037139893, -0.02432251, 0.054748535, 0.034484863, -0.056732178, -0.016281128, 0.006958008, -0.0016517639, -0.017745972, -0.036376953, -0.021759033, 0.03842163, 0.010482788, 0.018218994, -0.05026245, -0.04034424, -0.010398865, -0.034057617, 0.0069503784, -0.025665283, 0.011955261, -0.019302368, 0.0062789917, -0.05908203, -0.036499023, -0.0003836155, 0.02458191, 0.018188477, 0.007598877, 0.008529663, 0.025161743, -0.030044556, 0.026626587, -0.0034713745, -0.049804688, 0.033721924, 0.06842041, 0.008132935, 0.04006958, -0.03479004, -0.041992188, -0.011695862, 0.048736572, 0.037841797, 0.019821167, -0.030090332, -0.023284912, 0.049591064, -0.0044670105, 0.0055160522, -0.011940002, 0.014122009, -0.0057640076, -0.01864624, -0.010223389, -0.01713562, -0.02494812, 0.021347046, -0.053863525, 0.015235901, 0.009155273, -0.007785797, 0.006122589, -0.03012085, 0.062469482, -0.0044174194, 0.04244995, 0.0015182495, 0.029815674, 0.040496826, -0.02458191, 0.004749298, 0.00712204, -0.029449463, -0.006198883, 0.009017944, -0.031555176, 0.022598267, 0.03665161, -0.03869629, 0.05355835, 0.009864807, 0.025650024, -0.0026931763, -0.03643799, 0.019714355, 0.0030403137, -0.003370285, 0.014411926, -0.0541687, 0.01285553, 0.004924774, -0.012390137, -0.02015686, 0.020233154, 0.018173218, 0.002670288, 0.019882202, 0.0006542206, -0.012397766, -0.007926941, 0.038269043, -0.0070114136, -0.016723633, -0.02243042, -0.03277588, 0.03503418, 0.023345947, -0.0071029663, 0.04623413, -0.039123535, 0.0075798035, -0.009498596, 0.027420044, -0.039642334, -0.0206604, 0.028717041, -0.0014390945, -0.024597168, -0.011367798, 0.040618896, 0.012428284, -0.032409668, -0.04296875, 0.0077552795, -0.04586792, -0.019439697, 0.008903503, 0.037963867, -0.0076179504, -0.0087890625, -0.01701355, 0.02432251, -0.020111084, 0.054382324, -0.018157959, 0.022262573, -0.021255493, 0.020248413, 0.0362854, -0.005290985, 0.024658203, -0.036834717, -0.009597778, 0.021255493, -0.019836426, -0.012359619, -0.011413574, -0.011520386, -0.0035820007, 0.008277893, -0.061065674, -0.0020751953, 0.040374756, 0.01751709, -0.028427124, 0.029174805, -0.007827759, -0.048706055, 0.046661377, -0.014198303, -0.007408142, -0.02482605, -0.031707764, -0.013374329, -0.020309448, -0.052978516, 0.042633057, -0.025375366, -0.03189087, -0.013427734, 0.019866943, 0.028778076, -0.04031372, -0.026351929, 0.01663208, -0.0033187866, -0.0013113022, 0.052886963, -0.02482605, -0.020828247, -0.04916382, -0.013053894, -0.018295288, 0.008674622, 0.003528595, -0.02027893, -0.0037212372, -0.010063171, 0.015960693, 0.0149002075, 0.04244995, -0.018585205, 0.05319214, -0.040283203, -0.052520752, 0.042236328, 0.031585693, -0.02267456, 0.0049324036, 0.02508545, -0.0087509155, -0.019256592, 0.011680603, 0.0070381165, -0.068359375, -0.009666443, -0.02519226, -0.06439209, 0.025314331, -0.018844604, 0.022415161, 0.040222168, -0.046081543, 0.00844574, -0.0073242188, -0.023483276, 0.02029419, -0.0030002594, 0.032714844, -0.007335663, -0.053955078, -0.061645508, -0.024780273, 0.015899658, 0.0178833, -0.037994385, -0.0048980713, -0.010848999, -0.013389587, -0.027618408, -0.008575439, 0.015960693, -0.023468018, 0.024993896, -0.020507812, -0.042510986, 0.017059326, -0.023666382, -0.0069999695, -0.061401367, -0.024291992, 0.05090332, -0.052459717, -0.05218506, -0.003484726, 0.014183044, -0.031158447, -0.053863525, -0.06439209, -0.044158936, 0.021865845, 0.007209778, -0.033691406, -0.016845703, 0.025619507, 0.024734497, -8.583069e-06, 0.033996582, 0.0005970001, 0.036071777, 0.012123108, 0.0657959, 0.01902771, 0.022598267, -4.118681e-05, -0.14440918, -0.052459717, 0.021652222, 0.015563965, -0.035339355, 0.05255127, -0.049835205, 0.008018494, 0.02142334, -0.0020313263, -0.02911377, 0.021697998, -0.0048332214, 0.003376007, 0.025741577]}, "B00T95H1PE": {"id": "B00T95H1PE", "original": "Brand: Alpha Grillers\nName: Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types\nDescription: The Best Grill Brush For Cleaning Your BBQ. Here\u2019s Why:

      Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18\" Long Handle.

      Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

      Ready For Cleaning That's So Quick & Easy You May Even Enjoy It?

      Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you'll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

      Hard On Grime - Gentle On Grates

      This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

      So What Are You Waiting For? Click The \"Add To Cart\" Button Above To Get Your Brand New Brush Delivered Today.

      Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it's time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.\nFeatures: GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it\u2019ll bend or break.\nSAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that\u2019ll get your grill looking good as new, but don\u2019t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types.\nEASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you\u2019ll be done in a flash.\n18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time.\nBBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they'll love! Backed by Alpha Griller's 90-Day Satisfaction Guarantee.\n", "metadata": {"Name": "Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types", "Brand": "Alpha Grillers", "Description": "The Best Grill Brush For Cleaning Your BBQ. Here\u2019s Why:

      Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18\" Long Handle.

      Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

      Ready For Cleaning That's So Quick & Easy You May Even Enjoy It?

      Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you'll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

      Hard On Grime - Gentle On Grates

      This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

      So What Are You Waiting For? Click The \"Add To Cart\" Button Above To Get Your Brand New Brush Delivered Today.

      Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it's time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.", "Features": "GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it\u2019ll bend or break.\nSAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that\u2019ll get your grill looking good as new, but don\u2019t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types.\nEASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you\u2019ll be done in a flash.\n18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time.\nBBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they'll love! Backed by Alpha Griller's 90-Day Satisfaction Guarantee.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009132385, 0.030639648, -0.04458618, -0.027877808, 0.0146865845, -0.005558014, -0.0071983337, -0.0041618347, -0.013702393, 0.059539795, 0.01449585, 0.04196167, 0.014701843, 0.003622055, -0.03692627, 0.0022029877, 0.015525818, -0.006011963, -0.010772705, -0.008628845, -0.034454346, 0.008300781, -0.008270264, -0.026367188, 0.02255249, -0.026779175, 0.020126343, 0.018066406, 0.023208618, 0.0068473816, 0.028823853, -0.03152466, 0.025375366, 0.014846802, -0.006401062, 0.021621704, 4.953146e-05, 0.00598526, 0.014190674, -0.000582695, 0.026824951, -0.027938843, 0.008338928, 0.034820557, 0.001420021, -0.029586792, 0.027023315, -0.04309082, 0.015220642, 0.029083252, 0.0056915283, 0.030960083, -0.003835678, 0.02178955, -0.01727295, -8.3863735e-05, -0.011161804, 0.0072898865, 0.023666382, 0.01626587, 0.0059394836, 0.005290985, 0.012031555, -0.009933472, -0.041015625, 0.0055732727, 0.08728027, -0.040496826, -0.05203247, -0.049072266, 0.07244873, -0.002866745, 0.015609741, -0.025314331, -0.02305603, -0.008216858, -0.0037555695, -0.038146973, 0.012077332, -0.0027256012, -0.033355713, -0.035614014, 0.019958496, 0.00541687, -0.020355225, 0.020828247, -0.02029419, -0.0027446747, 0.013572693, -0.011878967, 0.0020809174, -0.017700195, -0.03375244, 0.045715332, 0.029022217, -0.032226562, -0.031280518, -0.08874512, 0.030944824, 0.025939941, 0.05316162, -0.056915283, 0.07501221, 0.0044403076, -0.022705078, 0.008659363, 0.018554688, 0.05166626, 0.0058059692, 0.023635864, -0.019119263, -0.020843506, -0.010299683, -0.032104492, -0.06500244, 0.018005371, 0.011451721, -0.08905029, 0.016357422, -0.06982422, -0.027572632, -0.021865845, -0.013839722, 0.042755127, 0.04055786, 0.02758789, -0.013595581, 0.028915405, -0.041259766, 0.00440979, -0.014640808, 0.0072021484, 0.02696228, 0.041046143, -0.002632141, -0.024017334, -0.013938904, 0.012336731, 0.015701294, -0.00730896, 0.01676941, -0.03668213, 0.02243042, 0.03289795, 0.005756378, 0.015716553, 0.012908936, 0.01436615, 0.008384705, -0.01121521, 0.033294678, -0.01713562, 0.036621094, 0.036376953, -0.028045654, -0.0055770874, 0.05911255, -0.042419434, -0.04208374, -0.08282471, -0.00907135, -0.00856781, 0.02482605, 0.017501831, 0.010749817, 0.0063667297, -3.1411648e-05, 0.012817383, 0.008880615, -0.01977539, 0.03717041, -0.019042969, -0.011009216, -0.040740967, -0.0043525696, -0.005039215, -0.02003479, 0.017288208, 0.057800293, -0.1149292, -0.08496094, -0.047607422, 0.047576904, -0.024124146, -0.04699707, -0.0041275024, -0.004272461, 0.021606445, 0.056884766, -0.00919342, 0.031982422, -0.039215088, -0.02319336, -0.0027179718, 0.028778076, 0.033416748, -0.0146102905, 0.041748047, 0.014007568, -0.08215332, 0.023666382, -0.013542175, -0.0042686462, 0.005722046, -0.051452637, -0.01222229, -0.02319336, 0.011375427, 0.026565552, 0.046875, -0.003686905, 0.017868042, 0.009429932, -0.077819824, -0.02168274, -0.0076942444, -0.038757324, 0.029296875, -0.010101318, 0.0496521, -0.0077056885, -0.003768921, -0.00053691864, -0.0087509155, -0.0056610107, 0.022399902, -0.04711914, 0.0014572144, -0.037841797, 0.033203125, -0.025390625, 0.019638062, 0.08703613, 0.06311035, -0.018234253, 0.03451538, 0.05908203, 0.03062439, -0.024261475, -0.008605957, 0.0040893555, -0.013572693, -0.026824951, 0.011856079, -0.020095825, 0.0033035278, 0.018356323, 0.0037555695, -0.023269653, -0.0061454773, 0.006652832, 0.0066452026, 0.02722168, 8.249283e-05, -0.0079956055, 0.047912598, -0.05126953, 0.0005507469, -0.013038635, -0.017410278, 0.011123657, -0.033355713, 0.00058603287, -0.020767212, -0.019836426, -0.020996094, -0.0051727295, -0.00012218952, 0.016799927, -0.024673462, 0.00066900253, -0.041656494, 0.002790451, 0.059051514, 0.007888794, 0.020080566, -0.021743774, -0.009773254, 0.003370285, 0.027496338, 0.0032920837, 0.03338623, 0.03640747, -0.0112838745, 0.006603241, 0.0075035095, 0.0061531067, -0.004798889, -0.035461426, -0.027175903, 0.022415161, -0.0118255615, -0.028656006, -0.010169983, -0.0023670197, -0.033203125, -0.015792847, 0.018722534, 0.005466461, -0.012207031, 0.00969696, 0.042053223, -0.006893158, -0.014274597, 0.013130188, 0.0037136078, 0.014816284, -0.0034561157, 0.007167816, 6.0737133e-05, -0.013366699, 0.061767578, 0.06384277, 0.045684814, 0.041534424, 0.011444092, 0.008758545, 0.06726074, 0.015945435, -0.041931152, -0.06945801, -0.050720215, -0.053955078, -0.011688232, -0.046966553, 0.060791016, -0.0132369995, 0.0063934326, -0.026245117, 0.037322998, -0.027450562, 0.014350891, -0.019088745, 0.02268982, -0.018569946, 0.008285522, -0.008369446, 0.049224854, 0.004295349, -0.022537231, -0.0007171631, -0.03491211, -0.008056641, -0.012901306, 0.0062828064, 0.0052337646, -0.034362793, 0.01449585, -0.025421143, 0.004337311, -0.025222778, -0.03616333, 0.03253174, 0.02609253, 0.03062439, -0.023223877, -0.0335083, -0.010025024, -0.04800415, -0.06298828, -0.016708374, 0.029281616, -0.016952515, 0.025787354, -0.008926392, -0.043182373, 0.024780273, 0.028137207, -0.0003476143, 0.009216309, 0.012535095, -0.018066406, 0.0057754517, -0.012290955, -0.0026512146, -0.008613586, -0.013290405, -0.048614502, -0.02267456, -0.02696228, -0.0055503845, 0.014274597, -0.0077209473, 0.03829956, 0.021240234, 0.014846802, 0.014823914, 0.07220459, -0.0040359497, -0.013954163, -0.013366699, 0.036590576, -0.010940552, -0.03503418, -0.026535034, 0.017456055, -0.007980347, -0.052947998, 0.031143188, -0.026641846, -0.12017822, -0.0016088486, -0.0024032593, -0.039001465, 0.02607727, -0.07867432, -0.036956787, -0.06298828, 0.011375427, -0.027572632, 0.012161255, 0.0052948, -0.017791748, 0.00056409836, -0.004169464, -0.049438477, 0.04107666, -0.0016860962, -0.004436493, -0.035980225, -0.0032749176, 0.032043457, 0.0022583008, 0.0067214966, -0.021469116, 0.003528595, -0.01146698, 0.0022563934, -0.007419586, 0.022964478, -0.019989014, -0.01701355, -0.0025043488, -0.0044174194, -0.0524292, -0.0008134842, -0.0042037964, -0.017074585, 0.043426514, -0.035308838, -0.04675293, -0.042114258, -0.030761719, -0.00730896, -0.0050697327, -0.026351929, -0.039978027, -0.031097412, -0.0035915375, -0.036346436, -0.006500244, -0.0013904572, 0.05493164, 0.021270752, 0.003446579, 0.0637207, -0.0124435425, 0.042144775, -0.025466919, 0.017929077, -0.008987427, -0.036315918, 0.07879639, -0.011505127, -0.005306244, -0.048828125, 0.08483887, -0.029632568, -0.019836426, 0.026275635, -0.06085205, 0.044921875, 0.01096344, -0.0096588135, 0.022094727, 0.002922058, -0.009399414, 0.0357666, -0.047210693, -0.019714355, -0.0048332214, -0.007850647, -0.030166626, 0.08892822, 0.03552246, -0.005607605, 0.03753662, 0.066711426, 0.020492554, 0.038970947, 0.017913818, 0.0041160583, 0.0463562, 0.022720337, 0.0075035095, 0.018341064, -0.0059776306, 0.0071487427, 0.040618896, -0.011123657, 0.007724762, -0.0051574707, -0.0039138794, -0.034454346, -0.011749268, 0.040222168, 0.04498291, -0.024887085, -0.020858765, -0.036254883, 0.027328491, -0.07086182, -0.004257202, -0.006088257, 0.0019760132, -0.015449524, 0.054992676, 0.020217896, -0.001455307, -0.0032997131, -0.015838623, 0.020355225, 0.0107421875, 0.032440186, -0.024612427, 0.020706177, -0.038757324, 0.04724121, -0.030776978, -0.024307251, 0.045959473, 0.013755798, 0.016906738, 0.006336212, -0.016296387, 0.03555298, -0.0021877289, 0.04864502, 0.0010223389, -0.053955078, -0.020568848, 0.011634827, 0.019165039, -0.030792236, 0.013183594, -0.057159424, -0.020065308, -0.031921387, -0.030151367, -0.0019521713, -0.02267456, -0.023590088, -0.027709961, -0.0021820068, -0.0010385513, -0.009521484, -0.04650879, 0.008956909, -0.006542206, 0.007411957, -0.014030457, 0.060180664, -0.035217285, -0.034088135, 0.026321411, -0.011329651, 0.09301758, 0.06262207, 0.00040078163, -0.013542175, -0.033203125, -0.024551392, -0.010368347, -0.023132324, -0.0073165894, 0.0030174255, -0.025726318, 0.0109939575, 0.0256958, 0.06774902, -0.013031006, 0.033203125, -0.03427124, 0.03173828, -0.05783081, -0.03552246, 0.044433594, -0.047729492, -0.046844482, -0.03756714, 0.101623535, -0.009407043, 0.010650635, -0.007534027, -0.00944519, 0.0037651062, -0.028884888, -0.019195557, 0.026870728, -0.00023555756, -0.012794495, 0.0033283234, 0.007610321, -0.038238525, 0.01121521, -0.0017404556, 0.0024471283, -0.054870605, 0.013618469, 0.014152527, -0.005683899, -0.014877319, 0.0079956055, 0.02381897, -0.0020713806, -0.02960205, -0.023986816, 0.059387207, 0.07409668, -0.032073975, 0.0017957687, 0.031921387, -0.036987305, -0.06097412, -0.035125732, 0.021774292, 0.020629883, -0.0025939941, -0.04220581, 0.02583313, -0.01777649, 0.010429382, 0.0056152344, -0.050476074, 0.021347046, 0.010879517, 0.026351929, -0.0043411255, 0.00881958, 0.035064697, -0.007850647, 0.007068634, 0.002822876, -0.005672455, -0.01637268, -0.030319214, -0.017700195, -0.029434204, 0.0038700104, -0.032440186, 0.050964355, -0.013839722, -0.073913574, -0.012130737, 0.056671143, -0.062805176, -0.007896423, 0.045959473, -0.013847351, -0.0044517517, 0.01763916, 0.0552063, -0.0068206787, 0.0008072853, 0.01096344, -0.05050659, -0.018753052, 0.0088272095, -0.054016113, 0.03277588, -0.024932861, -0.070007324, 0.018188477, -0.047302246, 0.023239136, -0.005710602, -0.0061073303, 0.0158844, 0.008506775, -0.07366943, 0.0075187683, -0.029434204, 0.01739502, 0.015144348, -0.03753662, -0.0064697266, -0.033325195, 0.02330017, 0.0024604797, 0.026062012, -0.042816162, -0.023117065, 0.002084732, -0.02999878, -0.012008667, -0.022003174, -0.03857422, -0.04421997, -0.0038833618, 0.0024261475, -0.005466461, -0.015068054, 0.004184723, -0.04486084, -0.009567261, 0.011009216, -0.03353882, 0.022628784, -0.051574707, -0.019821167, -0.0029354095, 0.05307007, -0.0037555695, 0.0016765594, -0.0017881393, -0.016464233, -0.007621765, 0.00070667267, -0.009017944, 0.013870239, 0.034362793, 0.036071777, 0.046966553, -0.028137207, 0.044921875, -0.045410156, 0.015853882, 0.031188965, 0.011657715, 0.017532349, -0.00040340424, 0.004737854, 0.04611206, -0.026382446, -0.021942139, -0.07269287, 0.054840088, -0.037750244, -0.02960205, 0.080200195, 0.034820557, 0.024719238, 0.01687622, -0.0017948151, -0.010917664, 0.036254883, 0.0046157837, 0.0038318634, -0.01902771, -0.013893127, -0.002117157, 0.01083374, -0.017700195, -0.018463135, 0.04296875, -0.005382538, -0.032562256, -0.032073975, -0.03616333, 0.019424438, -0.031066895, 0.011894226, 0.007331848, -0.004638672, 0.0184021, 0.019180298, -0.039855957, 0.009506226, 0.02532959, 0.038879395, 0.05810547, -0.049591064, 0.015640259, 0.046783447, -0.040924072, 0.10809326, -0.010246277, -0.050079346, -0.001991272, 0.055145264, 0.045043945, 0.012809753, -0.023895264, -0.02758789, -0.03842163, 0.009742737, 0.012512207, 0.039764404, -0.069885254, -0.03265381, 0.06567383, 0.06500244, 0.017852783, 0.018112183, 0.009117126, 0.0068588257, 0.015853882, 0.0054359436, -0.00034093857, -0.022399902, -0.060913086, -0.011802673, -0.041107178, 0.026992798, -0.0031013489, 0.043823242, 0.0070343018, 0.008644104, -0.029464722, -0.013290405, 0.01838684, -0.004196167, 0.0015211105, 0.015266418, -0.08135986, -0.00064373016, 0.009712219, 0.0026950836, 0.014160156, -0.0039978027, -0.01651001, 0.018157959, -0.006626129, 0.029876709, -0.0060310364, -0.012107849, 0.015594482, -0.024002075, 0.004306793, -0.0048980713, -0.0027885437, -0.0149002075, -0.011207581, -0.021835327, 0.019454956, 0.054504395, 0.006324768, -0.0030574799, -0.005367279, 0.027008057, 0.003627777, 0.015731812, -0.0112838745, 0.016052246, -0.029251099, 0.030197144, 0.017608643, -0.022628784, -0.0524292, -0.008811951, 0.046295166, -0.01411438, -0.0071640015, 0.0036449432, 0.030731201, -0.024765015, -0.004180908, -0.03479004, -0.06695557, -0.017684937, 0.013900757, -0.0074501038, 0.011276245, 0.010429382, -0.008743286, 0.0044784546, -0.056243896, 0.037628174, -0.038208008, 0.06542969, 0.036132812, 0.039520264, -0.00043535233, -0.0029945374, -0.013328552, 0.010543823, 0.014389038, 0.00793457, 0.0043678284, -0.0019741058, -0.037017822, 0.03677368, 0.076049805, 0.03677368, 0.04522705, -0.06585693, -0.013626099, 0.012496948, -0.0020580292, -0.026351929, 0.003993988, 0.014045715, 0.01828003, 0.03463745, 0.006587982, -0.025115967, 0.04083252, 0.014450073, -0.014297485, -0.034729004, 0.042785645, -0.010391235, 0.036193848, 0.0050315857, 0.012817383, -0.0029296875, -0.027923584, -0.06994629, -0.010627747, -0.035369873, 0.01939392, 0.002286911, -0.03930664, -0.03326416, 0.0039634705, 0.052764893, -0.07495117, -0.017578125, -0.030395508, 0.079589844, 0.01134491, 0.07421875, -0.02772522, -0.04763794, -0.07385254, 0.008361816, -0.07385254, -3.3199787e-05, -0.064575195, 0.04888916, 0.029006958, 0.0069503784, 0.06915283, 0.048950195, 0.018554688, 0.028457642, 0.014793396, -0.01424408, -0.018096924, 0.015838623, -0.017959595, 0.013595581, 0.01625061, 0.012390137, -0.00724411, 0.09637451, 0.01612854, -0.014923096, 0.015960693, -0.023757935, -0.04309082, 0.014961243, -0.010749817, 0.00055217743, 0.011123657, 0.0008416176, -0.035217285, 0.02508545, 0.0057258606, 0.005428314, 0.019073486, 0.007091522, -0.00061511993, -0.012893677, -0.009513855, 0.0063476562, -0.02368164, -0.0010118484, 0.056915283, 0.013366699, 0.008453369, 0.017868042, -0.015487671, 0.009895325, 0.012428284, -0.0056266785, -0.012710571, -0.008216858, -0.019042969, -0.03161621, 0.016204834, 0.019851685, -0.0041923523, 0.004627228, 0.032226562, 0.054718018, -0.03933716, -0.018234253, 0.00078201294, -0.0032234192, 0.008972168, -0.029327393, 0.05984497, -0.06817627, 0.016815186, 0.007522583, 0.029937744, 0.013221741, 0.016067505, -0.085632324, -0.001613617, 0.015899658, 0.0008368492, 0.007949829, 0.015808105, 0.045837402, -0.0032806396, 0.056793213, -0.013763428, -0.041809082, -0.04046631, 0.030303955, -0.0079574585, -0.015380859, 0.026931763, -0.031799316, 0.02798462, 0.0026378632, 0.06384277, -0.026367188, 0.054718018, 0.043121338, 0.031677246, 0.044830322]}, "B07PFQHD1W": {"id": "B07PFQHD1W", "original": "Brand: USA Network\nName: Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt\nDescription: \nFeatures: This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you're a fan of Mr. Robot as well as the hit BBQ restaurant.\nOfficially Licensed USA Network Mr. Robot Tee.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "metadata": {"Name": "Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt", "Brand": "USA Network", "Description": "", "Features": "This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you're a fan of Mr. Robot as well as the hit BBQ restaurant.\nOfficially Licensed USA Network Mr. Robot Tee.\nLightweight, Classic fit, Double-needle sleeve and bottom hem", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00497818, -0.014144897, -0.02809143, -0.0003733635, -0.03805542, -0.016464233, 0.0048713684, 0.007835388, -0.058044434, 0.027618408, -0.011253357, 0.03414917, -0.024856567, -0.018371582, 0.027801514, -0.03778076, 0.026733398, 0.0052948, 0.030654907, -0.014633179, 0.01360321, 0.026901245, 0.011985779, 0.037628174, 0.033447266, -0.051849365, 0.09082031, -0.0044288635, 0.043884277, -0.004180908, 0.04736328, -0.057525635, 0.05441284, -0.0066223145, -0.049438477, -0.082458496, -0.0418396, -0.02305603, -0.051727295, 0.014884949, 0.012138367, 0.011650085, 0.0046844482, -0.026687622, -0.033203125, -0.018295288, -0.010757446, -0.0048179626, 0.01638794, 0.00044178963, -0.014076233, 0.007423401, -0.014755249, -0.0014667511, 0.0054626465, 0.006385803, -0.015464783, 0.009605408, 0.029174805, -0.014350891, -0.008979797, -0.016082764, 0.025680542, 0.025039673, -0.01739502, -0.0024871826, 0.03930664, -0.001080513, -0.02809143, -0.042907715, 0.02420044, 0.007171631, 0.011245728, 0.018417358, -0.0074806213, -0.011566162, 0.031555176, 0.030853271, 0.015686035, 0.015853882, -0.02331543, -0.05621338, -0.013923645, -0.022445679, 0.0107421875, 0.032318115, -0.01713562, -0.016799927, -0.033325195, -0.011550903, -0.036895752, -0.014877319, -0.02633667, 0.020874023, -0.012519836, -0.00894165, 0.026519775, 0.044830322, -0.000248909, -0.015167236, -0.011421204, -0.019241333, -0.03466797, -0.0013875961, -0.00548172, 0.008972168, 0.0010499954, 0.043670654, 0.04321289, 0.023010254, -0.013214111, 0.053833008, 0.010940552, -0.003993988, -0.053131104, 0.0048332214, 0.017913818, -0.0154418945, 0.012214661, -0.0034313202, 0.027191162, 0.03945923, -0.005870819, -0.006664276, 0.0071105957, 0.016525269, -0.005466461, -0.018737793, -0.06958008, 0.035339355, 0.005203247, -0.0024757385, 0.014831543, 0.044311523, -0.0096206665, -0.0127334595, 0.04006958, -0.019683838, -0.005973816, 0.005645752, 0.021072388, -0.0006155968, 0.010559082, -0.014816284, -0.06439209, 0.020553589, 0.030197144, 0.022323608, -0.030853271, -0.07183838, -0.015838623, -0.0036010742, 0.02532959, 0.03353882, 0.014801025, 0.008430481, 0.047027588, -0.013343811, -0.044281006, -0.025146484, -0.009460449, -0.005218506, -0.010795593, -0.021118164, -0.023345947, -0.0050239563, 0.01171875, 0.011711121, 0.021453857, 0.027679443, 0.023376465, -0.03955078, 0.017196655, -0.010810852, -0.024276733, -0.012588501, 0.013961792, -0.009918213, 0.05255127, -0.034851074, -0.05996704, -0.05050659, 0.056793213, -0.02947998, -0.028839111, 0.066101074, -0.017028809, 0.05557251, 0.027267456, 0.005695343, -0.04043579, 0.0107040405, -0.029373169, 0.022521973, 0.015731812, -0.011390686, -0.038848877, -0.012451172, -0.013618469, -0.0231781, 0.0124435425, -0.024734497, 0.013114929, -0.04159546, -0.060668945, 0.0068626404, -0.02998352, 0.04156494, -0.0036010742, -0.008850098, 0.0056762695, -0.018829346, -0.0035896301, -0.036468506, -0.035339355, 0.02407837, -0.020614624, 0.047332764, 0.017852783, 0.03878784, 0.0138168335, 0.010673523, 0.020248413, -0.029159546, 0.00089359283, -0.0027751923, -0.021194458, 0.008552551, 0.03591919, -0.0013532639, 0.056884766, 0.02229309, 0.040374756, 0.044647217, -0.017745972, 0.051635742, 0.06689453, 0.07305908, -0.024902344, -0.032287598, 0.0007972717, 0.011367798, -0.026947021, 0.011428833, 0.0154953, 0.0011444092, 0.010910034, 0.003036499, -0.002374649, 0.070373535, 0.018035889, 0.022537231, -0.024810791, 0.015701294, -0.036743164, 0.027786255, -0.062164307, 0.0044403076, -0.031921387, 0.01826477, -0.009780884, 0.0024929047, 0.05050659, -0.025421143, -0.0020427704, 0.01096344, 0.006401062, 0.0018510818, -0.040405273, 0.013549805, 0.012420654, 0.016464233, 0.00415802, 0.045043945, 0.044067383, -0.010246277, -0.012962341, -0.03237915, 0.01763916, 0.028945923, -0.010383606, -0.015388489, 0.03338623, -0.0014238358, 0.024017334, -0.003042221, 0.04449463, -0.019088745, -0.012901306, -0.015350342, 0.029129028, -0.029266357, -0.03250122, 0.036346436, -0.017807007, -0.037078857, 0.046051025, 0.033416748, -0.008872986, 0.0070266724, 0.04345703, 0.035186768, -0.053741455, 0.045288086, -0.0234375, 0.015548706, -0.033966064, -0.020141602, -0.024368286, -0.032196045, -0.02456665, 0.008705139, 0.035583496, 0.04626465, 0.062408447, 0.004989624, 0.045959473, 0.089660645, 0.036132812, -0.0519104, 0.014793396, 0.037384033, -0.0020942688, -0.018951416, 0.023971558, -0.013595581, -0.046875, -0.0043563843, -0.047821045, -0.0007109642, 0.013038635, -0.024002075, -0.0079956055, 0.024673462, 0.008995056, 0.005088806, 0.007904053, 0.0131073, -0.003698349, -0.010612488, 0.02406311, 0.0070991516, 0.018005371, -0.017807007, -0.04208374, 0.0071411133, 0.013725281, 0.005214691, -0.0012569427, -0.0018815994, 0.011932373, -0.025146484, 0.020248413, -0.025634766, -0.008148193, -0.0055999756, -0.030471802, -0.059143066, -0.039733887, -0.085754395, -0.058532715, 0.032196045, -0.034729004, 0.055419922, -0.02104187, -0.017242432, 0.03753662, 0.04437256, 0.06341553, 0.04269409, 0.016357422, 0.042510986, 0.0236969, -0.011703491, 0.01864624, -0.08459473, -0.005908966, -0.04360962, 0.012191772, -0.017318726, -0.011978149, 0.014915466, 0.013931274, 0.044830322, 0.029220581, 0.026397705, 0.017745972, 0.04937744, -0.006931305, -0.020751953, -0.018585205, 0.03652954, 0.0031661987, -0.030151367, 0.0074157715, 0.009941101, -0.0060157776, -0.011695862, 0.015388489, -0.034423828, -0.08337402, 0.01586914, -0.0062942505, -0.027252197, -0.004673004, -0.024490356, -0.052520752, -0.058044434, -0.0038394928, -0.012161255, 0.025878906, 0.011619568, 0.027938843, -0.008674622, 0.020370483, -0.053619385, 0.038604736, 0.015945435, -0.054382324, -0.041809082, 0.08428955, -0.099243164, 0.03729248, -0.016830444, -0.08984375, 0.0064964294, -0.054901123, 0.054748535, -0.057739258, 0.035369873, -0.038513184, 0.015327454, 0.01071167, -0.00034499168, -0.08026123, -0.0259552, 0.0065307617, 0.0066223145, 0.074279785, -0.0748291, 0.008003235, -0.03164673, -0.036376953, 0.01007843, -0.021057129, -0.0044174194, -0.03201294, -0.014190674, -0.07208252, -0.0473938, -0.016601562, 0.044921875, 0.004623413, 0.03753662, 0.038604736, 0.014320374, 0.044830322, 0.024047852, 0.019378662, -0.0028057098, -0.029006958, -0.017913818, 0.040924072, 0.00818634, 0.02508545, -0.026107788, 0.033416748, -0.006881714, -0.021942139, 0.0259552, 0.00039625168, -0.0063819885, 0.03387451, 0.008049011, -0.016723633, -0.0034809113, 0.010253906, -0.013175964, -0.011505127, -0.005214691, -0.024246216, 0.014175415, -0.03869629, 0.06097412, -0.003145218, -0.00026011467, 0.00447464, 0.022659302, 0.0059547424, 0.01663208, 0.034332275, -0.050750732, 0.022567749, -0.013786316, -0.034942627, 0.008644104, 0.0031013489, 0.010276794, 0.0013532639, -0.019012451, -0.038513184, 0.0055885315, 0.008796692, 0.0037708282, 0.045013428, -0.00042772293, 0.034210205, 0.017684937, -0.0021018982, 0.059692383, 0.01398468, 0.0051841736, 0.034820557, 0.021331787, -0.012641907, -0.04159546, 0.042663574, 0.030075073, -0.033691406, -0.0049095154, 0.03427124, -0.026504517, 0.023223877, 0.0049362183, 0.04083252, 0.03375244, -0.024307251, -0.00028777122, 0.003566742, 0.01550293, 0.005908966, 0.0051651, 0.02470398, 0.014472961, 0.0015668869, -0.030212402, -0.05328369, 0.017440796, 0.030700684, -0.026916504, -0.027816772, -0.039642334, -0.022415161, 0.041992188, 0.029937744, -0.053131104, -0.005432129, -0.018569946, -0.011405945, -0.027175903, -0.02406311, 0.0050621033, -0.041656494, -0.020874023, -0.011856079, -0.030960083, -0.056396484, 0.014976501, 0.004245758, 0.0061950684, -0.00087308884, 0.017990112, -0.041809082, 0.01222229, -0.031463623, -0.007827759, 0.040527344, 0.015144348, 0.04055786, -0.044555664, -0.04269409, -0.029541016, 0.0038166046, -0.017349243, 0.038146973, 0.0099105835, -0.029022217, 0.00248909, 0.0035743713, 0.051239014, -0.017913818, 0.042053223, -0.00077676773, 0.03491211, -0.016174316, -0.0021133423, -0.028289795, 0.00081014633, -0.04232788, -0.03994751, 0.030273438, -0.017059326, -0.030960083, -0.03173828, -0.006340027, 0.05328369, -0.060577393, 0.002029419, 0.047424316, 0.012969971, -0.031204224, 0.033996582, 0.017715454, -0.017303467, 0.0011806488, 0.057617188, 0.02859497, -0.040252686, -0.0012273788, -0.008323669, -0.018310547, 0.017181396, -0.03289795, 0.013809204, -0.03414917, 0.024154663, -0.08099365, 0.09869385, 0.033996582, -0.041381836, -0.008583069, -0.013572693, -0.021713257, -0.03515625, 0.027816772, -0.012161255, -0.03253174, -0.06530762, -0.03793335, 0.01713562, -0.085632324, 0.020095825, -0.015853882, -0.07922363, -0.010925293, 0.048065186, 0.016204834, -0.018661499, -0.005428314, 0.04437256, 0.031555176, 0.016235352, 0.040130615, -0.028640747, -0.0713501, -0.031829834, -0.019210815, -0.017196655, 0.01524353, 0.025390625, 0.035125732, -0.002790451, -0.02796936, -0.038482666, 0.014167786, 0.012611389, -0.023651123, 0.015525818, 0.0054244995, 0.04019165, 0.021453857, 0.109558105, -0.05682373, 0.068725586, 0.015716553, -0.04989624, 0.0042762756, 0.042938232, -0.035980225, 0.011802673, 0.023788452, -0.059661865, 0.0317688, -0.026672363, -0.021453857, -0.022827148, 0.03201294, -0.0079956055, -0.0027770996, -0.034088135, 0.009437561, -0.04333496, -0.0058174133, -0.017745972, 0.000992775, 0.0071754456, -0.0025558472, 0.025726318, 0.0036563873, -0.01939392, -0.062683105, -0.058898926, -0.012123108, -0.0847168, 0.015838623, -0.0036964417, 0.004875183, -0.06732178, -0.002248764, -0.030075073, -0.0074691772, -0.011558533, 0.049987793, 0.011856079, 0.028457642, -0.014755249, -0.031463623, -0.04598999, 0.062408447, 0.03112793, -0.007091522, -0.02319336, -0.058654785, -0.013076782, -0.014892578, -0.041900635, 0.0009803772, -0.013763428, 0.009002686, 0.05657959, -0.054748535, -0.037017822, 0.008743286, -0.014877319, 3.0457973e-05, 0.051208496, -0.036010742, -0.01576233, -0.009628296, -0.0065231323, -0.05508423, -0.025268555, 0.047668457, -0.05432129, -0.021575928, -0.060302734, 0.031021118, 0.009208679, 0.030334473, 0.03955078, 0.03933716, -0.0050735474, 0.043701172, 0.008880615, -0.005126953, 0.039398193, 0.01007843, 0.059814453, -0.019989014, -0.0011930466, -0.015853882, 0.049224854, 0.018234253, -0.0057373047, 0.00843811, -0.007080078, 0.0052757263, -0.029174805, 0.014411926, -0.029647827, 0.008605957, 0.016036987, -0.0099105835, 0.014251709, -0.055145264, 0.0045700073, -0.055603027, -0.026947021, 0.034454346, 0.047576904, 0.038909912, -0.04348755, 0.03579712, 0.049865723, -0.036743164, 0.09020996, -0.021759033, -0.005504608, 0.026123047, 0.045684814, 0.011390686, 0.028656006, -0.023361206, -0.0052261353, -0.0014476776, -0.0012044907, 0.03173828, -0.0013885498, -0.0009050369, 0.015838623, 0.009506226, 0.026107788, -0.03274536, -0.016479492, 0.019577026, 0.050323486, -0.061798096, -0.03668213, 0.015403748, -0.020843506, 0.0037059784, 0.0056114197, -0.015731812, -0.012390137, -0.013938904, -0.011482239, 0.047790527, -0.017593384, -0.02470398, 0.010375977, 0.002779007, -0.010536194, 0.032287598, -0.031234741, -0.019241333, -0.011688232, 0.029922485, 0.008010864, -0.0018405914, 0.0077781677, -0.00027489662, 0.01966858, 0.014579773, 0.039764404, 0.026977539, -0.011169434, 0.03427124, -0.006893158, -0.00010347366, -0.041931152, 0.018798828, -0.021499634, -0.07678223, -0.041168213, -0.02482605, 0.021530151, 0.019989014, 0.025787354, 0.009864807, 0.016525269, -0.037231445, 0.025009155, -0.029678345, -0.005554199, -0.020904541, 0.05987549, 0.030944824, -0.027633667, -0.07342529, 0.017684937, 0.048553467, -0.0010604858, 0.0440979, -0.019134521, 0.025817871, -0.043151855, 0.0019378662, -0.023254395, -0.03378296, 0.0049552917, 0.013343811, 0.0059814453, 0.020721436, -0.015312195, -0.0027618408, 0.006095886, -0.010978699, 0.019012451, 0.008918762, 0.046844482, 0.034240723, -0.057250977, 0.03451538, 0.020385742, -0.02798462, 0.031799316, -0.0023670197, 0.00642395, -0.0021648407, 0.012413025, -0.0023403168, 0.040008545, 0.028671265, -0.016998291, 0.005973816, 0.017562866, -0.026153564, -0.0019254684, -0.0015659332, 0.006198883, 0.009735107, -0.038391113, -0.0011520386, 0.014556885, -0.011207581, 0.0033664703, -0.018356323, -0.022766113, -0.01965332, 0.02394104, -0.0074920654, -0.015617371, -0.019577026, -0.033966064, -0.029876709, 0.013771057, 0.014442444, -0.02142334, 0.019256592, -0.0016717911, -0.007972717, 0.04675293, -0.042510986, -0.048065186, 0.00045704842, 0.0925293, -0.044677734, 0.0076522827, -0.00041246414, 0.05596924, -0.020599365, 0.041259766, -0.008033752, -0.042877197, -0.024139404, 0.02935791, -0.057159424, -0.014465332, 0.027755737, -0.020858765, -0.0027770996, 8.2075596e-05, 0.049560547, -0.016952515, 0.045562744, -0.010810852, 0.049468994, -0.03225708, -0.022125244, 0.028701782, 0.037139893, -0.043304443, -0.021591187, -0.017181396, -0.023498535, 0.035888672, 0.025802612, -0.009963989, -0.023452759, -0.004837036, -0.020080566, -0.04522705, -0.0019321442, -0.015029907, -0.006061554, -0.023345947, -0.05014038, -0.066833496, 0.0082092285, 0.0008983612, 0.004295349, 0.014663696, 0.032409668, 0.025543213, -0.024856567, -0.010101318, -0.018936157, -0.019714355, -0.014183044, -0.05102539, 0.0132751465, -0.012313843, -0.013183594, -0.028747559, 0.03100586, 0.024658203, -0.04559326, 0.004638672, -0.011421204, -0.06097412, 0.044036865, -0.023895264, -0.046203613, 0.012413025, 0.009048462, 0.097351074, -0.060791016, -0.0020942688, -0.013267517, 0.006324768, 0.055877686, -0.06842041, 0.011772156, -0.053710938, 0.0015125275, 0.049560547, -0.007633209, 0.013847351, -0.027526855, -0.021652222, -0.017425537, 0.0008163452, 0.0178833, -0.0014257431, -0.03036499, 0.0031356812, -0.002117157, 0.021270752, -0.008918762, -0.08459473, -0.061309814, 0.037384033, 0.010398865, -0.010559082, 0.013298035, 0.03414917, 0.020111084, 0.02116394, 0.031951904, -0.0068740845, 0.023223877, 0.018554688, 0.008239746, 0.0121154785]}, "B071ZM8YVC": {"id": "B071ZM8YVC", "original": "Brand: GasOne\nName: GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects\nHigh heat output- fully adjustable heat-control regulator knob, power with Control\nHeavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting\nSafety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\nSteel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank\n", "metadata": {"Name": "GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep", "Brand": "GasOne", "Description": "", "Features": "Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects\nHigh heat output- fully adjustable heat-control regulator knob, power with Control\nHeavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting\nSafety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\nSteel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0423584, -0.021820068, -0.036102295, 0.017623901, -0.040161133, 0.005382538, -0.015068054, 0.00024485588, -0.02192688, 0.010955811, 0.0032958984, 0.012359619, 0.0128479, -0.047027588, 0.02986145, -0.021469116, 0.0044517517, 0.020904541, -0.007827759, -0.034179688, 0.02520752, -0.031204224, -0.034362793, 0.10827637, 0.021469116, 0.018951416, -0.018157959, -0.015777588, 0.026855469, 0.004135132, 0.022354126, -0.007171631, 0.05810547, -0.024627686, -0.037353516, -0.059387207, -0.042236328, -0.019973755, -0.07537842, 0.025726318, 0.016418457, -0.0012178421, 0.008728027, 0.01789856, -0.021469116, -0.010971069, 0.017974854, -0.011291504, -0.016723633, 0.04321289, 0.007396698, -0.0012702942, 0.013298035, -0.0138168335, 0.0024681091, -0.014259338, 0.027435303, -0.01234436, 0.0124053955, -0.017333984, -0.023422241, 0.009429932, 0.031188965, 0.0006914139, -0.064453125, 0.02760315, 0.06933594, -0.020217896, -0.01058197, -0.08105469, -0.018096924, 0.033081055, 0.011558533, -0.00061511993, -0.05886841, -0.013031006, 0.029891968, -0.037261963, 0.030059814, -0.023788452, -0.018981934, -0.012619019, 0.034423828, -0.0574646, 0.023803711, -0.0259552, -0.009895325, 0.0026397705, -0.03375244, -0.039855957, -0.012763977, -0.015380859, -0.10308838, 0.039886475, 0.026748657, -0.021087646, -0.015380859, -0.07800293, 0.030548096, -0.0079422, 0.055786133, -0.05218506, 0.046325684, 0.013893127, -0.016052246, 0.07458496, 0.018112183, 0.04977417, 0.014541626, -0.0052261353, 0.006904602, -0.011817932, -0.024932861, -0.016448975, -0.014167786, 0.023849487, -0.02961731, -0.024246216, 7.104874e-05, -0.038208008, -0.0010061264, -0.0013561249, 0.04272461, -0.031463623, -0.004398346, -0.015068054, -0.038879395, -0.02015686, -0.04260254, 0.03967285, -0.023101807, -0.013038635, 0.02319336, 0.06970215, 0.0025291443, -0.027450562, 0.028289795, -0.016281128, 0.0236969, -0.020874023, 0.021759033, -0.013046265, 0.01071167, 0.03933716, 0.022140503, 0.02532959, 0.027770996, -0.0034694672, 0.012809753, -0.045135498, -0.0050811768, -0.0059661865, 0.028442383, 0.005065918, 0.014701843, -0.009490967, 0.04324341, -0.019515991, -0.01184845, -0.03062439, -0.02999878, -0.0076293945, 0.010734558, 0.0135269165, -0.011299133, 0.0149383545, 0.032684326, -0.0048294067, -0.012191772, 0.031463623, -0.07678223, 0.06878662, -0.01689148, -0.026397705, -0.010787964, -0.025375366, -0.072265625, 0.05886841, 0.052337646, -0.08581543, -0.046447754, -0.06365967, 0.10473633, -0.015541077, -0.007675171, 0.009880066, -0.004131317, -0.03012085, 0.015617371, -0.015380859, 0.018997192, 0.03225708, -0.003900528, -0.02279663, 0.017623901, 0.0065307617, -0.05819702, -0.0037517548, -0.016616821, 0.0027999878, -0.037597656, -0.008964539, 0.020614624, -0.021743774, -0.014472961, -0.0067329407, -0.017944336, 0.043304443, 0.036468506, 0.02293396, -0.011642456, 0.0008392334, 0.012954712, -0.072753906, -0.046936035, 0.014823914, 0.013496399, 0.010047913, 0.014533997, 0.0063171387, 0.06707764, -0.019836426, 0.045074463, 0.055603027, 0.020996094, -0.009391785, -0.01461792, -0.007156372, -0.0016746521, 0.008522034, -0.056884766, 0.023757935, 0.052978516, 0.046783447, -0.036315918, 0.016220093, 0.059936523, 0.044189453, -0.009132385, -0.005870819, 0.007194519, -0.03741455, -0.018814087, 0.03717041, -0.030044556, -0.016525269, 0.021087646, 0.01789856, -0.043060303, 0.028411865, 0.023330688, 0.037322998, -0.006969452, -0.0020561218, -0.034332275, 0.025177002, -0.041229248, 0.022567749, -0.032287598, 0.028305054, -0.028045654, 0.047790527, 0.07232666, -0.012741089, 0.0009288788, 0.02583313, 0.009437561, 0.018920898, -0.025054932, 0.028915405, 0.029342651, -0.006088257, -0.013122559, 0.009819031, 0.018188477, -0.011062622, -0.041412354, 0.027740479, -0.028808594, -0.013946533, -0.00058841705, -0.025253296, 0.029708862, -0.0036010742, 0.03100586, -0.017501831, 0.03753662, 0.004207611, 0.010818481, -0.017120361, 0.03366089, -0.024475098, -0.01939392, 0.0007071495, -0.030517578, -0.045654297, 0.07287598, 0.0044517517, 0.013252258, -0.036071777, 0.01637268, 0.019485474, -0.07055664, 0.026657104, 0.0030498505, 0.00036787987, 0.030288696, 0.0058937073, 0.002664566, -0.015403748, 0.010795593, 0.008850098, 0.030410767, 0.030212402, 0.039154053, 0.02168274, 0.010093689, 0.064575195, 0.06896973, 0.039978027, -0.00024747849, -0.004337311, 0.006046295, -0.04019165, 0.01739502, -0.011787415, -0.04916382, -0.003320694, -0.03250122, 0.03692627, 0.0074768066, -0.0034980774, 0.0020713806, 0.0003914833, -0.0034389496, 0.022247314, -0.00944519, 0.010116577, -0.003250122, -0.034454346, 0.0030937195, -0.019577026, 0.0070877075, 0.0034179688, -0.027755737, -0.048858643, 0.05581665, 0.0070343018, -0.06689453, -0.005191803, 0.057800293, -0.039367676, 0.022598267, -0.022415161, 0.020980835, -0.009780884, -0.038085938, -0.027313232, -0.015945435, -0.08618164, -0.034179688, 0.005870819, -0.038635254, -0.0063209534, 0.041992188, -0.006866455, -0.053955078, 0.019714355, 0.005027771, 0.009597778, 0.029815674, -0.0021572113, -0.07623291, -0.022140503, -0.009391785, -0.01020813, 0.029296875, -0.00843811, -0.008918762, 0.012023926, 0.036315918, 0.0357666, 0.0013923645, 0.0067329407, 0.016357422, 0.037017822, 0.0184021, 0.012023926, -0.0036773682, -0.01828003, -0.0006494522, 0.010559082, 0.0038871765, -0.024383545, 0.041778564, 0.002002716, -0.016937256, 0.017318726, -0.04345703, -0.018447876, -0.03475952, 0.013977051, -0.01007843, -0.010826111, -0.0013980865, -0.08453369, 0.0050735474, -0.04711914, -0.007511139, 0.0020561218, -0.0072517395, 0.024307251, -0.04348755, 0.025970459, 0.0051193237, -0.039886475, 0.037628174, 0.0025634766, -0.021499634, -0.023452759, 0.058410645, -0.089904785, 0.049468994, 0.027435303, -0.056396484, 0.008041382, -0.03540039, 0.027862549, -0.026885986, 0.030929565, -0.017852783, -0.007843018, -0.020858765, 0.0026721954, 0.010803223, 0.059295654, 0.008842468, -0.05014038, 0.030456543, -0.027557373, -0.04812622, -0.011230469, -0.037231445, 0.012886047, -0.022781372, -0.01651001, -0.025726318, -0.06036377, 0.012245178, -0.0335083, 0.009376526, 0.00023663044, 0.026367188, 0.0146484375, -0.01789856, 0.08673096, 0.0385437, 0.037475586, 0.015541077, -0.010902405, -0.005191803, -0.016983032, -0.00065374374, 0.004699707, -0.04232788, -0.0008831024, 0.02670288, 0.013221741, -0.005092621, -0.029281616, -0.014770508, 0.05419922, 0.015899658, -0.020263672, -0.002855301, 0.013366699, 0.029342651, -0.009635925, 0.009208679, -0.012649536, -0.058654785, -0.008514404, -0.046173096, 0.0713501, 0.039001465, -0.015083313, 0.08062744, 0.08917236, -0.013961792, 0.043914795, 0.044158936, 0.011566162, 0.027297974, 0.0039520264, -0.029342651, -0.004753113, 0.00944519, -0.009124756, 0.018341064, -0.0022563934, -0.0033626556, 0.026504517, 0.0003271103, -0.017944336, -0.049987793, 0.006576538, 0.016159058, -0.012268066, 0.006324768, -0.048614502, -0.016403198, -0.03366089, 0.008621216, 0.021987915, -0.028579712, 0.00415802, -0.020446777, 0.029281616, -0.03894043, -0.020996094, -0.000664711, 0.009140015, -0.002325058, 0.0056991577, 0.013969421, 0.008659363, -0.019973755, 0.02394104, -0.035949707, 0.042236328, -0.008255005, 0.054901123, -0.008491516, -0.054656982, 0.04385376, -0.068237305, -0.027374268, 0.049835205, -0.009147644, -0.08911133, -0.012992859, 0.051879883, 0.018417358, -0.035888672, -0.004688263, -0.03640747, -0.009223938, 2.1278858e-05, -0.009750366, 0.0042037964, -0.013832092, -0.025375366, -0.060058594, -0.037597656, -0.00051641464, 0.023330688, -0.005958557, 0.0034103394, -0.02418518, -0.019165039, -0.007019043, 0.04333496, -0.04043579, -0.004512787, -0.0647583, 0.00712204, 0.02281189, -0.0028705597, -0.00037407875, -0.04071045, -0.041900635, -0.015129089, 0.04827881, 0.0061683655, 0.00074100494, 0.014427185, -0.00894928, -0.001285553, 0.03265381, 0.032928467, -0.02017212, 0.02217102, -0.016189575, -0.01701355, -0.067871094, 0.0032958984, 0.027999878, 0.00844574, -0.047698975, -0.026794434, 0.06951904, -0.0073890686, 0.018463135, -0.02041626, 0.028869629, 0.015655518, -0.00818634, -0.08831787, -0.06185913, 0.007472992, -0.046142578, 0.0066833496, -0.016525269, -0.01411438, 0.04510498, 0.07543945, 0.015365601, -0.028808594, 0.00642395, 0.017623901, -0.050689697, 0.014961243, -0.044799805, -0.0058135986, -0.059051514, 0.025115967, -0.05493164, 0.049072266, 0.040161133, 0.0020523071, 0.004119873, -0.00415802, -0.0022792816, -0.029006958, -0.0018730164, -0.031219482, -0.010276794, -0.055114746, -0.039611816, 0.021148682, -0.04321289, 0.008117676, 0.02394104, 0.0206604, 0.04449463, -0.02432251, -0.013183594, -0.00440979, -0.025100708, 0.017822266, 0.0066947937, 0.023773193, -0.021713257, 0.0039253235, 0.028305054, -0.0038642883, -0.0068588257, 0.005214691, -0.0012321472, -0.020721436, -0.005508423, -0.005886078, -0.09429932, 0.032714844, 0.06896973, -0.025222778, -0.029144287, 0.013954163, 0.00021183491, -0.027954102, -0.042877197, 0.023101807, 0.015655518, -0.027999878, 0.03503418, 0.008857727, -0.037750244, 0.020935059, -0.02998352, 0.04638672, 0.003030777, -0.039642334, 0.017547607, 0.0037765503, 0.0006837845, -0.06451416, 0.053222656, -0.0109939575, -0.027069092, -0.044830322, 0.01512146, 0.017456055, -0.021606445, 0.055419922, -0.057159424, 0.05065918, -0.030838013, -0.031280518, -8.106232e-05, 0.06506348, -0.017028809, -0.022201538, 0.017822266, -0.039367676, -0.07611084, -0.024856567, -0.0025424957, -0.00044941902, 0.0063438416, -0.048736572, 0.015007019, 0.014022827, -0.02468872, 0.009086609, -0.019561768, -0.008110046, -0.05911255, 0.01020813, -0.009284973, 0.0129852295, -0.008796692, -0.0055732727, 0.033447266, 0.010795593, -0.047058105, -0.05026245, -0.04473877, -0.010848999, -0.025253296, 0.051849365, -0.001613617, 0.002811432, 0.016815186, 0.033325195, 0.02772522, -0.023498535, -0.04345703, 0.016738892, 0.013534546, 0.0035572052, -0.04586792, -0.013031006, 0.04067993, -0.04019165, -0.03744507, 0.001420021, 0.012428284, 0.043151855, 0.0075683594, 0.09057617, 0.05078125, -0.007068634, 0.046844482, 0.0028839111, -0.04446411, -0.005874634, 0.0009660721, -0.08203125, -0.076293945, -0.04437256, -0.024749756, -0.022735596, -0.016403198, -0.012573242, 0.04260254, -0.005218506, -0.022109985, -0.031341553, -0.022613525, 0.0051116943, -0.005771637, -0.0052871704, -0.017974854, 0.025543213, -0.044647217, 0.02168274, -0.05038452, -0.06100464, -0.0031814575, 0.02949524, 0.03201294, 0.0006251335, 0.0055770874, 0.004878998, -0.043395996, 0.039886475, -0.01374054, -0.02671814, 0.003742218, 0.041534424, 0.035003662, 0.0051002502, 0.003112793, -0.021331787, -0.028945923, -0.008934021, -0.0035419464, 0.042388916, -0.036132812, 0.01965332, -0.0038814545, 0.04837036, -0.00039958954, 0.010902405, 0.0051612854, -0.011268616, -0.013809204, 0.007205963, 0.03302002, -0.035827637, -0.036224365, -0.040618896, -0.042144775, -0.010658264, -0.011528015, 0.024124146, -0.002506256, -0.00869751, -0.040924072, -0.0067596436, -0.01158905, -0.045074463, 0.022109985, -0.028625488, 0.039154053, -0.044891357, 0.031234741, 0.025512695, -0.03375244, -0.05831909, 0.015960693, 0.043548584, -0.014289856, 0.028305054, -0.025375366, 0.022735596, 0.03286743, -0.046020508, -0.02218628, 0.017929077, 0.012863159, -0.017196655, -0.029067993, -0.010406494, 0.0057754517, 0.0056495667, -0.005027771, 0.03250122, -0.0060043335, -0.008285522, -0.010017395, 0.009880066, -0.026824951, -0.039154053, 0.009117126, -0.01737976, -0.0068855286, 0.0124053955, -0.03137207, 0.036010742, 0.030670166, 0.011726379, -0.0072021484, 0.018310547, 0.02067566, 0.005695343, -0.026062012, -0.030563354, -0.036956787, 0.025909424, 0.02029419, -0.010177612, 0.00868988, -0.0025787354, 0.024520874, -0.052459717, -0.034820557, 0.030334473, -0.06384277, 0.005207062, 0.01586914, 0.0019569397, -0.0027713776, -0.017364502, -0.015930176, -0.006088257, 0.018005371, -0.015960693, 0.013000488, 0.011062622, 0.0044670105, -0.027618408, 0.022476196, -0.055480957, 0.01979065, -0.026138306, 0.028457642, 0.038085938, -0.011932373, -0.00066518784, -0.008758545, -0.034729004, -0.0109939575, -0.015075684, -0.042938232, 0.022750854, 0.008918762, 0.02407837, -0.028793335, 0.0003106594, -0.019485474, -0.04421997, 0.031555176, -0.020385742, -0.004901886, -0.016113281, -0.03225708, -0.037719727, -0.006752014, -0.038360596, 0.01184082, 0.0061302185, -0.01574707, 0.0063323975, 0.002313614, -0.01626587, -0.049743652, 0.010292053, -0.017059326, 0.010177612, 0.012374878, 0.054718018, -0.045684814, -0.049865723, -0.0368042, 0.025100708, -0.06286621, -0.056762695, -0.04248047, 0.030395508, 0.019592285, -0.0056877136, 0.0020618439, 0.07470703, 0.0004284382, 0.0044517517, -0.0014753342, -0.025344849, -0.018295288, 0.028045654, 0.009864807, -0.011131287, -0.0034713745, 0.0345459, 0.032836914, 0.021621704, 0.026641846, 0.03869629, -0.07122803, 0.008964539, -0.04360962, 0.0075035095, -0.012557983, -0.014228821, 0.04248047, 0.0002772808, -0.0491333, 0.054992676, 0.014694214, 0.074645996, 0.0082092285, -0.0007843971, 0.042388916, -0.019378662, -0.013763428, -0.056549072, -0.023376465, 0.023208618, 0.029678345, -0.0061531067, -0.044647217, 0.0044517517, 0.011726379, -0.03427124, -0.005592346, 0.006565094, -0.009231567, 0.036102295, -0.0018367767, -0.011047363, 0.011077881, 0.016342163, -0.019515991, -0.036346436, 0.045166016, -0.024658203, -0.0045547485, 0.023513794, -0.03869629, -0.006866455, 0.004322052, 0.016067505, -0.012458801, 0.0028591156, 0.026916504, 0.039733887, 0.027770996, 0.0008511543, 0.003627777, 0.006641388, -0.042266846, -0.0064926147, 0.047790527, -0.016601562, -0.07757568, 0.038909912, 0.020263672, 0.0075035095, -0.034698486, -0.064941406, -0.059570312, 0.021331787, 0.006298065, 0.015159607, 0.049041748, 0.0020179749, 0.004638672, 0.027023315, -0.03668213, -0.026428223, -0.0031032562, 0.047668457, -0.008132935, 0.009124756]}, "B0098HR10I": {"id": "B0098HR10I", "original": "Brand: Weber\nName: Weber 47510001 Spirit E310 Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nPerfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system\n", "metadata": {"Name": "Weber 47510001 Spirit E310 Natural Gas Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nPerfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0013666153, 0.00970459, -0.036254883, -0.007987976, -0.010673523, -0.008468628, -0.021820068, 0.009666443, -0.00856781, 0.033721924, -0.026229858, 0.014633179, 0.044708252, -0.020385742, 0.012496948, -0.005458832, 0.025497437, -0.0010509491, 0.005821228, -0.025100708, 0.028717041, -0.0062561035, -0.017456055, 0.05722046, 0.058654785, -0.06512451, 0.048736572, -0.020248413, 0.062927246, -0.006904602, 0.036254883, -0.017654419, 0.04046631, 0.030578613, -0.050720215, 0.011817932, -0.003709793, 0.013397217, 0.021209717, -0.0061454773, 0.03048706, -0.0082473755, -0.018295288, 0.0008330345, -0.014793396, -0.047790527, 0.041168213, -0.021591187, 0.0038375854, 0.027236938, 0.010795593, -0.008239746, 0.011703491, 0.009399414, -0.019317627, -0.043945312, 0.030258179, -0.007671356, 0.017822266, -0.0045318604, -0.02116394, 0.025344849, 0.018356323, -0.019622803, 0.0033817291, 0.0039405823, 0.10205078, -0.013397217, -0.02961731, -0.022155762, 0.042144775, -0.0025291443, 0.014968872, 0.026443481, -0.008552551, -0.047546387, 0.0049743652, -0.015037537, 0.021865845, 0.018356323, -0.038848877, 0.005470276, -0.019256592, -0.02633667, 0.0035362244, -0.0021209717, -0.04244995, 0.010368347, -0.030181885, -0.033843994, -0.0051841736, -0.022216797, -0.068237305, 0.044769287, 0.0259552, -0.035858154, -0.038879395, -0.07385254, 0.051635742, 0.011734009, 0.027069092, -0.035705566, 0.013580322, 0.010749817, -0.00061798096, 0.029922485, -0.017745972, 0.009849548, 0.015686035, 0.024017334, -0.023986816, -0.042785645, -0.02168274, -0.029708862, -0.03704834, 0.030593872, -0.018157959, -0.033721924, 0.015182495, -0.022216797, -0.020065308, 0.013542175, 0.018508911, -0.005256653, 0.03579712, 0.0362854, 0.008857727, -0.024139404, -0.026733398, 0.011955261, -0.030197144, 0.007896423, 0.042755127, 0.042755127, 0.013259888, -0.009490967, 0.008613586, 0.0009737015, 0.03375244, -0.026824951, 0.024520874, -0.018508911, 0.014305115, 0.03741455, 0.044158936, 0.012664795, 0.03302002, 0.0025730133, 0.017288208, -0.01424408, 0.020370483, 0.009063721, 0.032073975, -0.003873825, -0.026672363, -0.02760315, -0.018173218, -0.025024414, -0.0058174133, -0.026977539, -0.056884766, -0.021896362, 0.0206604, -0.0018568039, -0.0072669983, 0.048095703, 0.047668457, 0.010322571, 0.033233643, 0.03842163, 0.024932861, -0.033172607, 0.050079346, 0.030975342, -0.006008148, 0.021026611, -0.021347046, -0.0047950745, 0.055633545, -0.060272217, -0.06112671, -0.041503906, 0.06304932, -0.010856628, -0.016494751, 0.0127334595, 0.05166626, 0.027832031, -0.033813477, 0.016342163, 0.055908203, 0.042907715, -0.035888672, 0.0046539307, 0.028945923, -0.004108429, -0.06750488, -0.01499176, -0.012580872, -0.012718201, -0.004776001, -0.0069885254, -0.013191223, 0.0036678314, -0.008003235, -0.025497437, -0.0008792877, 0.004299164, 0.035949707, 0.027511597, -0.02923584, -0.025878906, 0.026123047, -0.03274536, -0.019882202, 0.029571533, -0.00932312, -0.000852108, 0.027160645, 0.001285553, 0.038604736, 0.034606934, 0.014450073, 7.468462e-05, 0.03161621, -0.0060768127, -0.0040130615, -0.002023697, 0.031280518, 0.003786087, 0.007133484, -0.0010585785, 0.067993164, 0.04660034, 0.0051231384, 0.061676025, 0.06842041, 0.01222229, -0.051635742, -0.023239136, 0.00060653687, -0.09020996, -0.05255127, 0.0036125183, -0.08001709, -0.003194809, 0.015914917, 0.008613586, -0.013374329, -0.010482788, 0.011039734, -0.013000488, 0.03955078, 0.044830322, -0.027008057, 0.036865234, -0.017715454, -0.010604858, -0.0039978027, 0.038238525, -0.004009247, 0.05670166, 0.037719727, 0.010261536, 0.04421997, -0.002653122, 0.04598999, 0.02935791, -0.044067383, 0.004508972, 0.022842407, 0.031829834, -0.0059928894, 0.011550903, 0.00497818, 0.023880005, -0.015975952, -0.0009112358, 0.0038776398, 0.0031814575, 0.025436401, 0.032592773, 0.043182373, -0.009605408, 0.019683838, 0.014083862, 0.018157959, -0.02684021, -0.014022827, -0.036499023, 0.014022827, -0.035095215, -0.049743652, 0.01309967, 0.0052757263, -0.04812622, 0.09576416, -0.0045318604, 0.009819031, -0.029830933, 0.030731201, 0.020965576, -0.052612305, 0.007980347, -0.011329651, -0.03265381, -0.023971558, 0.029418945, 0.006034851, -0.062072754, 0.031799316, 0.042816162, 0.022216797, -0.043640137, 0.062438965, 0.019714355, 0.010284424, 0.0435791, 0.04159546, 0.04071045, -0.030136108, 0.023406982, -0.025421143, -0.02293396, 0.019042969, 0.013519287, -0.047027588, 0.010215759, -0.05102539, -0.010620117, -0.031402588, -0.055664062, -0.023498535, -0.0074691772, -0.019729614, 0.0037002563, 0.005718231, 0.037109375, -0.00061273575, -0.014724731, 0.05050659, -0.03475952, -0.016433716, 0.011581421, -0.035827637, -0.017791748, 0.013786316, 0.009742737, 0.011360168, 0.0065193176, -0.00033330917, -0.021102905, -0.008659363, -0.03277588, -0.004508972, -0.0105896, 0.0014286041, -0.041809082, -0.005504608, -0.05908203, -0.015296936, -0.00016021729, -0.044433594, 0.0065307617, 0.07080078, -0.029403687, -0.013793945, -0.021636963, -0.042999268, -0.019317627, 0.014350891, -0.016021729, -0.00881958, -0.03778076, -0.048065186, -0.00093507767, 0.040985107, -0.03881836, -0.01335144, 0.009788513, -0.018325806, -0.0047912598, -0.024398804, -0.021881104, 0.046417236, 0.024597168, 0.052246094, 0.042297363, 0.023452759, -0.028869629, -0.012542725, 0.015617371, -0.020645142, -0.023330688, 0.028564453, -0.0020103455, 0.02809143, 0.031234741, -0.020599365, -0.026641846, -0.09814453, 0.01966858, 0.013839722, -0.041656494, -0.014480591, -0.06365967, -0.05783081, -0.043762207, 0.010864258, 0.049713135, 0.0046463013, -0.03086853, 0.0061569214, -0.03274536, 0.007987976, 0.0036830902, -0.014297485, -0.008285522, -0.008071899, -0.0020484924, 0.020736694, -0.026977539, 0.032470703, 0.034820557, -0.004688263, -0.0032176971, -0.009010315, -0.006275177, 0.0031661987, 0.038909912, -0.0028457642, 0.0016098022, -0.010437012, 0.023117065, 0.006664276, 0.08068848, -0.0021514893, -0.022521973, 0.0259552, -0.031051636, -0.019104004, -0.01083374, 0.008293152, 0.047851562, -0.0060768127, -0.0017957687, -0.025054932, -0.04333496, -0.00054216385, -0.04208374, 0.012748718, -0.014160156, 0.013504028, 0.018844604, -0.008644104, 0.13012695, -0.0041046143, 0.04724121, -0.005077362, -0.045837402, -0.020965576, -0.04815674, 0.025894165, -0.0066337585, 0.03378296, -0.06185913, 0.06439209, 0.0071372986, -0.007080078, 0.027923584, 0.008346558, -0.021072388, -0.0022964478, -0.02067566, -0.010940552, -0.038391113, 0.04727173, 0.007217407, 0.023925781, -0.051849365, -0.037475586, -0.015319824, -0.08477783, 0.10748291, 0.08251953, -0.03189087, 0.08935547, 0.09033203, -0.012016296, 0.073791504, 0.021896362, -0.0095825195, 0.0011043549, 0.043548584, -0.056762695, 0.049316406, -0.004650116, -0.047821045, 0.0041389465, -0.026504517, -0.017730713, 0.021911621, 0.022277832, -0.010360718, -0.066223145, 0.01977539, 0.009475708, -0.016738892, 0.01626587, -0.043640137, -0.013999939, -0.03527832, -0.0033931732, 0.024627686, -0.03744507, -0.028625488, -0.014343262, -0.0023002625, -0.055480957, 0.009269714, 0.017349243, 0.010612488, 0.018692017, 0.03881836, -0.006187439, -0.0008430481, -0.0034561157, -0.025299072, -0.011672974, 0.0029964447, 0.0067825317, 0.012741089, -0.03643799, -0.018005371, 0.027069092, -0.0076446533, 0.0068855286, -0.031311035, -0.06536865, -0.008346558, 0.0007677078, 0.00026226044, -0.010787964, -0.017791748, -0.013916016, -0.0418396, -0.012840271, 0.024032593, -0.06201172, -0.017211914, 0.039123535, 0.048919678, -0.024353027, 0.014099121, 0.0050239563, -0.060760498, -0.058654785, 0.008415222, -0.016738892, 0.012825012, 0.037353516, 0.016983032, -0.04006958, -0.019927979, -0.021102905, -0.021835327, 0.054626465, -0.0015172958, 0.0385437, -0.033996582, 0.0013189316, -0.03338623, 0.062683105, 0.021255493, 0.013999939, -0.019744873, -0.007320404, -0.00617218, 0.04071045, 0.033691406, 0.03186035, 0.017181396, -0.03265381, -0.007045746, -0.06774902, -0.0034065247, 0.025741577, -0.035095215, -0.044921875, -0.018737793, 0.062805176, -0.00020492077, 0.020248413, 0.0023670197, -0.007461548, -0.03475952, 0.043914795, -0.04840088, -0.013191223, -0.0029067993, -0.0027427673, 0.022415161, 0.004169464, -0.00072574615, -0.0132751465, 0.03665161, 0.016479492, 0.016571045, 0.02003479, 0.030838013, 0.0031280518, 0.011161804, -0.041290283, 0.016067505, -0.014801025, -0.008575439, -0.07476807, 0.11029053, 0.041290283, 0.030044556, 0.028076172, 0.023864746, 0.016235352, -0.056671143, -0.016586304, -0.014762878, 0.006828308, -0.025253296, -0.022903442, 0.018798828, -0.0079574585, -0.005809784, 0.020690918, 0.03274536, 0.055877686, -0.07495117, 0.018951416, 0.014312744, 0.018234253, 0.028747559, -0.0084991455, 0.00021731853, -0.028808594, -0.012168884, 0.02279663, -0.03439331, -0.023834229, 0.0067481995, -0.023223877, -0.009635925, 0.028305054, -0.002714157, -0.020751953, -0.025238037, 0.013366699, -0.015731812, -0.02658081, 0.017303467, 0.016067505, 1.7940998e-05, -0.04522705, 0.026687622, -0.03173828, 0.0064468384, 0.010787964, -0.03933716, -0.0041503906, 0.0022964478, -0.047180176, 0.029449463, 0.0030899048, -0.059814453, 0.049102783, -0.008262634, -0.020462036, -0.04586792, 0.122558594, -0.016311646, 0.03765869, -0.08288574, 0.008964539, 0.041412354, 0.02708435, 0.0043945312, -0.050720215, 0.021392822, -0.02909851, 0.0025691986, 0.0035591125, 0.05557251, -0.036743164, -0.008171082, 0.014907837, 0.0013303757, -0.021392822, 0.0041618347, -0.02041626, -0.0015573502, 0.013412476, -0.033477783, 0.010147095, 0.001373291, -0.035217285, -0.040252686, -0.028152466, 0.012924194, 0.016983032, 0.024353027, -0.01828003, -0.001499176, 0.020050049, 0.011756897, 0.007297516, 0.00881958, -0.023651123, -0.03543091, -0.037139893, -0.025604248, -0.042755127, 0.060516357, -0.019866943, 0.005771637, -0.004558563, -0.0038585663, 0.009521484, 0.005935669, -0.05316162, 0.016845703, 0.0020179749, 0.0048713684, -0.032287598, -0.062683105, 0.060058594, -0.04977417, -0.060943604, 0.002565384, 0.041656494, -0.03387451, -0.029830933, 0.03149414, -0.015037537, 0.009841919, 0.015174866, -0.019241333, -0.03982544, 0.030288696, 0.019805908, -0.038970947, -0.036499023, -0.02041626, -0.019302368, 0.0068740845, 0.00472641, 0.01586914, 0.043426514, 0.0058250427, -0.03640747, -0.0025863647, 0.013313293, -0.0057296753, -0.02772522, 0.00579834, -0.009185791, 0.015792847, -0.019882202, 0.008605957, -0.055511475, -0.021011353, 0.014907837, 0.050628662, 0.03253174, -0.024871826, 0.015037537, 0.06384277, -0.0552063, 0.071777344, -0.013809204, -0.004676819, 0.0052223206, 0.049316406, 0.0051879883, 0.052856445, -0.036254883, -0.026489258, -0.0289917, 0.01499939, 0.054016113, 0.030288696, -0.025680542, 0.023391724, 0.024124146, 0.019515991, 0.030410767, 0.02607727, 0.03237915, 0.021026611, 0.006385803, 0.0012960434, 0.004119873, -0.016616821, -0.029022217, -0.046020508, -0.0063209534, 0.024642944, -0.0029029846, 0.054382324, -0.036621094, 0.042144775, 0.023483276, 0.020355225, 0.011550903, 0.028457642, -0.010299683, 0.017471313, -0.024353027, 0.057647705, 0.023086548, -0.009811401, 0.033172607, 0.022399902, -0.017303467, 0.022903442, -0.0038146973, 0.035461426, -0.040802002, 0.040039062, 0.0019359589, -0.052215576, -0.0067634583, 0.0007047653, 0.009971619, 0.0006275177, -0.054870605, -0.036895752, -0.0011749268, 0.02760315, -0.014053345, 0.0011882782, 0.028396606, 0.0038528442, -0.037994385, 0.012374878, -0.01373291, -0.033477783, -0.00061035156, 0.061676025, 0.026321411, -0.01576233, -0.008888245, 0.055847168, 0.0065345764, -0.008529663, 0.0519104, -0.033599854, -0.00060224533, -0.0045776367, 0.01864624, -0.029144287, -0.026947021, 0.00983429, 0.028427124, -0.009513855, -0.020965576, -0.010467529, 0.034240723, 0.012435913, -0.068115234, 0.0016498566, -0.06817627, 0.0103302, 0.040252686, 0.09429932, -0.032836914, -0.03451538, -0.033477783, 0.00522995, -0.020248413, 0.06549072, -0.029205322, 0.033599854, -0.0082092285, 0.02128601, 0.043518066, 0.0071258545, 0.012199402, -0.027877808, -0.011177063, 0.01838684, -0.02835083, 0.0015068054, 0.011329651, -0.017959595, 0.0067749023, 0.029510498, 0.00011122227, 0.04534912, 0.02809143, -0.016143799, -0.0057868958, -0.03503418, 0.042816162, -0.028198242, 0.04071045, -0.048461914, -0.010536194, -0.0024051666, -0.008575439, -0.021194458, 0.016189575, -0.037322998, 0.0054969788, 0.014915466, -0.036895752, -0.052459717, 0.014160156, 0.07562256, -0.041107178, -0.023712158, 0.0051994324, 0.050964355, 0.0018825531, 0.015571594, -0.016326904, -0.034332275, -0.007865906, 0.035583496, -0.03741455, -0.050689697, -0.039916992, 0.010398865, 0.0013008118, -0.028045654, -0.021392822, 0.06317139, 0.0033798218, -0.020217896, -0.005302429, 0.015975952, -0.032287598, 0.036956787, 0.010887146, -0.012321472, 0.031585693, 0.018829346, -0.020904541, 0.031463623, -0.0067710876, 0.014961243, -0.0289917, 0.013580322, -0.014221191, -0.056488037, -0.001627922, -0.011184692, 0.004573822, -0.00043821335, -0.052520752, 0.0026607513, 0.01676941, 0.029541016, 0.015205383, -0.017807007, 0.023910522, -0.04815674, -0.012763977, -0.07696533, -0.0050964355, 0.057006836, 0.013267517, -0.030334473, -0.013618469, -0.020751953, -0.009414673, -0.024108887, -0.002155304, -0.006752014, -0.037139893, 0.011039734, -0.023849487, -0.04421997, 0.019073486, -0.030761719, -0.016448975, -0.015083313, -0.011360168, 0.041778564, -0.027862549, -0.01676941, -0.0030822754, 0.012275696, -0.007457733, -0.009864807, -0.044433594, -0.02822876, -0.00365448, 0.0009813309, -0.018127441, 0.0045394897, 0.01083374, 0.021652222, -0.012435913, 0.011306763, 0.03213501, 0.018676758, -0.03652954, 0.01626587, 0.013122559, 0.013397217, -0.027023315, -0.08984375, -0.029129028, 0.026901245, 0.021438599, -0.0045166016, 0.0925293, -0.054901123, 0.01524353, 0.0012426376, 0.0034275055, -0.005378723, 0.018875122, 0.018920898, -0.012641907, 0.023773193]}, "B005EOSOIW": {"id": "B005EOSOIW", "original": "Brand: Mr. Heater\nName: Mr. Heater MH15 Single Tank Top Outdoor Propane Heater\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "metadata": {"Name": "Mr. Heater MH15 Single Tank Top Outdoor Propane Heater", "Brand": "Mr. Heater", "Description": "", "Features": "Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.019485474, -0.0079956055, -0.01209259, -0.04437256, -0.018157959, -0.00039339066, -0.03765869, 0.009963989, -0.054779053, -0.01586914, 0.041137695, 0.022659302, -0.027938843, -0.07470703, 0.059326172, -0.026245117, 0.0037555695, -0.0025539398, -0.037902832, -0.030075073, 0.0317688, -0.02406311, -0.067993164, 0.05053711, 0.02923584, -0.0463562, 0.020355225, -0.018692017, 0.021575928, -0.01689148, 0.022064209, 0.001449585, 0.02607727, -0.019302368, 0.011062622, -0.0105896, -0.012107849, 0.000116705894, -0.011405945, -0.006412506, 0.0053482056, 0.006603241, -0.032684326, 0.00630188, -0.057403564, -0.04788208, 0.027053833, 0.028457642, 0.011764526, -0.030822754, 0.014312744, -0.027877808, 0.04058838, -0.042999268, -0.051635742, -0.03652954, 0.06317139, -0.0060310364, 0.02507019, -0.070617676, -0.055511475, 0.028152466, 0.049957275, 0.04244995, -0.064086914, 0.03048706, 0.07244873, -0.0231781, 0.0066070557, -0.09643555, -0.032287598, 0.045013428, 0.032958984, 0.02394104, -0.066833496, -0.046783447, 0.039978027, -0.012138367, 0.03591919, -0.036895752, 0.0018596649, -0.0149383545, -0.005744934, -0.022750854, -0.0027122498, -0.014755249, -0.00440979, 0.00061941147, -0.039245605, -0.005794525, -0.040222168, -0.0043640137, -0.026931763, -0.011077881, -0.025634766, -0.010040283, -0.02859497, -0.048797607, 0.05557251, 0.008155823, -0.021255493, -0.002193451, -0.046661377, 0.008407593, -0.020141602, 0.018692017, 0.04800415, -0.011543274, -0.018829346, -0.029220581, -0.033233643, 0.026351929, 0.01927185, -0.0007748604, -0.035217285, -0.022766113, -0.027389526, 0.012290955, 0.0025787354, -0.010231018, -0.017974854, 0.013557434, 0.018035889, -0.033966064, 0.0047950745, -0.025253296, -0.012863159, -0.0059165955, -0.042755127, 0.056854248, -0.041412354, 0.016571045, 0.03387451, -0.005592346, -0.034179688, -0.038513184, 0.02394104, 0.015426636, -0.0075798035, -0.0028152466, -0.008476257, -0.0007405281, 0.013954163, -0.009788513, -0.02494812, 0.011299133, 0.002576828, 0.011390686, -0.0025901794, -0.0184021, -0.016357422, -0.0013933182, 0.020507812, -0.012413025, 0.030395508, -0.016326904, 0.021026611, -0.021194458, -0.0056877136, -0.01890564, 0.008781433, -0.018295288, -0.023239136, 0.029266357, -0.030380249, 0.023452759, 0.048736572, 0.002670288, 0.016311646, 0.07501221, 0.015388489, -0.03024292, -0.0074691772, 0.007484436, -0.015159607, -0.01637268, -0.05770874, 0.08508301, 0.056854248, -0.11193848, -0.076171875, -0.07458496, 0.114868164, -0.045715332, -0.017974854, -0.017333984, 0.034179688, 0.02758789, 0.005996704, 0.007972717, 0.032714844, 0.041931152, 0.023406982, -0.020706177, -0.0065078735, -0.009567261, -0.03173828, 0.0072021484, -0.025222778, 0.01890564, 0.019699097, -0.008407593, 0.037719727, -0.029663086, 0.0385437, -0.009963989, 0.015289307, 0.0016431808, -0.006362915, 0.017456055, -0.005607605, -0.040100098, 0.025161743, -0.07287598, -0.018692017, -0.0055618286, -0.013618469, 0.017700195, 0.026763916, -0.016815186, 0.031677246, 0.023452759, 0.017578125, -0.007534027, -0.011497498, -0.0146484375, -0.0064582825, 0.0025634766, 0.009292603, 0.0043945312, 0.017089844, -0.006198883, 0.059448242, 0.074523926, 0.011550903, 0.022216797, 0.07922363, 0.02381897, -0.0050354004, -0.028320312, -0.011497498, -0.027679443, -0.008232117, 0.09289551, -0.056243896, 0.04473877, 0.042877197, 0.02267456, -0.021530151, 0.033355713, 0.03753662, 0.02331543, 0.010917664, 0.014984131, -0.057525635, 0.026763916, -0.02822876, 0.04119873, -0.031097412, 0.033813477, -0.025390625, 0.08679199, 0.06951904, -0.0013217926, -0.019165039, 0.064941406, 0.028167725, 0.05960083, -0.011260986, 0.027236938, -0.0023078918, 0.0074920654, 0.0028495789, 0.039733887, 0.057800293, -0.026046753, -0.00029087067, -0.023651123, -0.008903503, 0.009010315, 0.0071792603, -0.02166748, 0.013572693, -0.0065307617, 0.05218506, 0.028076172, 0.010047913, -0.0109939575, -0.019729614, -0.0022449493, 0.023223877, 0.0076065063, -0.028808594, 0.01876831, 0.022842407, -0.02609253, -0.037963867, 0.0052452087, 0.020980835, -0.016052246, -0.031555176, 0.048614502, 0.0019044876, 0.0054473877, -0.01259613, 0.034851074, 0.0013914108, -0.003446579, -0.0071754456, -0.00983429, -0.035827637, -0.040100098, 0.012641907, -0.001294136, 0.028289795, 0.00687027, 0.01499939, 0.03250122, 0.024551392, 0.026733398, -0.040740967, 0.0044670105, -0.004043579, -0.008407593, 0.019592285, 0.001004219, -0.01914978, 0.011505127, -0.025283813, -0.01586914, -0.013206482, -0.06161499, -0.03704834, 0.04837036, 0.01537323, 0.03125, 0.0037059784, 0.032806396, -0.007686615, -0.034576416, 0.016448975, -0.02885437, -0.009681702, 0.0116119385, -0.018676758, 0.00065517426, 0.04385376, 0.019699097, -0.053527832, 0.024047852, -0.010643005, -0.030792236, 0.0052261353, -0.017074585, 0.026168823, 0.01675415, -0.034362793, -0.012786865, 0.04385376, -0.05178833, -0.032348633, 0.011665344, -0.038024902, -0.027145386, 0.02470398, -0.025466919, -0.027893066, -0.0017213821, -0.06378174, 0.007194519, -0.0016298294, -0.023025513, -0.039215088, -0.03149414, -0.048583984, 0.027374268, -0.01878357, -0.06536865, 0.029281616, -0.011169434, 0.0036563873, 0.0051193237, 0.018432617, 0.010223389, 0.011833191, 0.004962921, -0.019454956, 0.01574707, 0.004989624, 0.00484848, -0.024810791, -0.011634827, 0.0043792725, -0.013298035, 0.012527466, 0.000446558, -0.038146973, 0.004245758, -0.045043945, 0.007209778, -0.050964355, 0.00082731247, 0.024475098, -0.06903076, 0.0045394897, -0.06048584, -0.057617188, -0.01701355, 0.011314392, 0.02810669, -0.022415161, -0.0211792, -0.019256592, -0.019622803, -0.0007452965, 0.010131836, 0.006263733, -0.0010995865, -0.015991211, -0.002155304, 0.048461914, -0.057128906, 0.015464783, 0.019607544, -0.017410278, 0.011253357, -0.019882202, 0.009407043, 0.011604309, 0.06011963, 0.010261536, 0.009544373, -0.01473999, -0.021591187, -0.029464722, 0.028427124, 0.020462036, 0.022628784, 0.020019531, -0.018814087, 0.0018606186, 0.005214691, 0.010482788, 0.052703857, -0.022033691, 0.05053711, -0.013343811, -0.01373291, -0.038269043, -0.07208252, -0.006034851, 0.030517578, 0.025100708, 0.02545166, 0.020858765, 0.034179688, 0.0413208, 0.037200928, 0.0043182373, -0.004421234, 0.0028018951, -0.027038574, -0.0026340485, 0.005176544, -0.007801056, -0.05496216, 0.062805176, -0.0005507469, -0.014404297, 0.020599365, -0.029174805, 0.03378296, 0.039642334, -0.027069092, 0.04626465, -0.01210022, 0.002456665, -0.0050201416, -0.02218628, -0.013450623, -0.050323486, 0.029342651, -0.09429932, 0.031188965, 0.01171875, -0.003665924, 0.017745972, -0.005569458, -0.012802124, -0.024780273, 0.0044898987, 0.0019626617, 0.018692017, -0.009780884, -0.008605957, -0.04812622, 0.014457703, -0.028915405, -0.026611328, -0.024856567, -0.07183838, 0.01537323, 0.011627197, 0.012207031, -0.04156494, -0.01234436, 0.014465332, -0.002210617, 0.014968872, -0.03555298, 0.014595032, -0.0184021, 0.033050537, 0.007545471, -0.0055389404, -0.027648926, 0.039215088, -0.044677734, 0.00466156, 0.01663208, 0.0057640076, 0.008094788, -0.0023860931, -0.0009889603, 0.034332275, 0.012382507, -0.028961182, 0.049682617, -0.014152527, -0.024871826, 0.0072784424, 0.003894806, 0.013389587, 0.025756836, 0.006652832, 0.044525146, -0.009902954, 0.027359009, 0.0052986145, -0.049346924, -0.005584717, 0.03677368, 0.024353027, -0.031341553, 0.009124756, -0.014419556, 0.003162384, -0.029846191, 0.01701355, -0.035736084, -0.014793396, 0.007232666, -0.078063965, -0.023895264, -0.030273438, 0.020553589, -0.0524292, 0.026519775, -0.019638062, 0.0046043396, 0.0107421875, 0.00944519, -0.04711914, 0.013259888, -0.035614014, 0.008255005, 0.022445679, -0.022964478, 0.046661377, -0.055145264, -0.0046043396, -0.015312195, 0.036499023, -0.022399902, 0.042663574, 0.0011367798, -0.017959595, -0.0211792, 0.0034275055, 0.02368164, -0.035339355, 0.050811768, 0.003643036, 0.0008172989, -0.013000488, -0.047027588, -0.005256653, -0.047332764, -0.056274414, -0.04336548, 0.052368164, -0.00050878525, 0.0052375793, 0.0009384155, 0.00459671, 0.021102905, -0.046447754, -0.09472656, -0.015434265, -0.0042419434, -0.027175903, 0.012550354, 0.0008711815, -0.006225586, -8.666515e-05, 0.06008911, 0.030517578, -0.009124756, -0.0068626404, -0.004261017, -0.004962921, 0.0056991577, -0.020019531, 0.0068092346, -0.037628174, 0.006210327, -0.060424805, 0.029296875, 0.047943115, 0.0009522438, 0.0385437, 0.02583313, 0.026351929, 0.021530151, -0.045074463, 0.038269043, 0.009468079, -0.0057792664, -0.044433594, -0.0024356842, -0.005554199, -0.017105103, 0.012870789, -0.05444336, 0.016677856, 0.06213379, -0.003414154, -0.0048179626, -0.046173096, -0.025558472, 0.00793457, 0.0009036064, -0.019424438, -0.024780273, 0.033172607, -0.019119263, -0.012550354, 0.020431519, 0.022140503, 0.0059432983, 0.05053711, -0.002407074, -0.078308105, -0.017608643, 0.05291748, -0.022521973, -0.023788452, 0.0039749146, -0.011131287, -0.0056915283, -0.010818481, 0.021850586, -0.012107849, 0.035339355, -0.018112183, -0.01586914, 0.022415161, 0.009254456, -0.005783081, -0.009880066, -0.01838684, -0.04547119, 0.013153076, -0.015350342, 0.015487671, -0.014564514, -0.0010499954, 0.00687027, -0.015197754, -0.048095703, 0.011299133, -0.018356323, -0.06994629, 0.049346924, -0.02885437, 0.021514893, -0.028564453, 0.015716553, 0.020263672, -0.0028934479, 0.0045394897, 0.023132324, -0.0057029724, -0.030288696, 0.039611816, 0.02784729, -0.05343628, 0.08294678, 0.034057617, 0.010955811, -0.018951416, 0.04626465, -0.020553589, 0.010299683, 0.013496399, 0.0034694672, -0.045776367, 0.015792847, 0.055236816, 0.02909851, 0.0287323, -0.020751953, -0.0025615692, 0.0025463104, -0.0067367554, -0.030944824, -0.025390625, 0.018112183, -0.021499634, 0.013938904, -0.016342163, -0.031463623, -0.014472961, -0.016082764, -0.0052223206, -0.010574341, -0.03881836, -0.0013246536, 0.011138916, 0.027191162, -0.0032310486, 0.027923584, 0.046417236, -0.027786255, -0.014816284, -0.058532715, 0.054138184, -0.0073776245, -0.027023315, 0.11804199, 0.10089111, 0.0079193115, 0.032409668, -0.02418518, -0.010002136, 0.01512146, -0.0014476776, -0.013557434, 0.033355713, -0.00086307526, 0.047546387, -0.003753662, -0.0036201477, -0.047424316, 0.006084442, -0.051513672, -0.032989502, 0.001461029, -0.0031223297, -0.0013504028, -0.042114258, 0.007896423, -0.028305054, -0.02468872, -0.002035141, -0.03704834, -0.025177002, 0.0020542145, -0.014511108, 0.029800415, 0.041259766, 0.009063721, 0.002588272, 0.016799927, -0.046661377, 0.033843994, 0.016983032, -0.021911621, 0.0011348724, 0.028533936, 0.022918701, -0.032806396, -0.03552246, -0.0051231384, -0.021728516, 0.04989624, 0.059814453, 0.0030536652, 0.008636475, 0.006866455, 0.060821533, -0.0071907043, 0.020767212, 0.032806396, 0.05722046, -0.009300232, -0.07696533, 0.012504578, -0.020431519, -0.057861328, 0.031677246, -0.046936035, 0.010910034, -0.007385254, -0.008132935, 0.0026931763, -0.017318726, 0.044067383, -0.018951416, 0.015625, 0.0047035217, -0.008796692, -0.020065308, -0.023712158, -0.020889282, -0.0065307617, 0.046539307, 0.00541687, 0.03289795, -0.052490234, -0.017532349, 0.03375244, 0.00070238113, 0.0031967163, -0.016464233, 0.008522034, 0.056610107, -0.07183838, -0.00015032291, -0.01436615, -0.009849548, -0.022079468, -0.026931763, 0.0055122375, 0.003124237, 0.012802124, -0.005706787, 0.011314392, -0.007904053, 0.017730713, -0.06109619, 0.009811401, -0.04522705, -0.05718994, 0.021362305, -0.025756836, -0.026504517, 0.020385742, -0.085510254, 0.022903442, 0.048583984, 0.036865234, 0.042785645, -0.008331299, 0.034057617, -0.032470703, 0.007801056, -0.026473999, -0.051239014, 0.035949707, 0.0053138733, -0.022521973, 0.032440186, 0.04309082, 0.016494751, 0.0045547485, -0.058044434, 0.020095825, -0.059051514, 0.019638062, 0.023406982, 0.046295166, -0.030426025, -0.044952393, -0.013618469, -0.0020198822, 0.006324768, -0.017150879, 0.012535095, -0.013694763, 0.05596924, 0.011802673, 0.04257202, -0.016540527, -0.009513855, 0.018310547, 0.0071411133, -0.008506775, -0.0012493134, -0.021148682, -0.007408142, -0.013046265, 0.013168335, 0.0028476715, -0.0004785061, -0.02909851, -0.023986816, -0.012565613, -0.03302002, 0.041992188, -0.045196533, -0.01133728, 0.006515503, -0.035308838, -0.038482666, 0.008361816, 0.01928711, -0.016357422, -0.015197754, -0.02067566, 0.00945282, -0.006336212, -0.036834717, -0.02267456, 0.015167236, 0.04498291, -0.045898438, -0.0027561188, -0.011741638, -0.0059890747, 0.018157959, 0.022567749, -0.003616333, -0.08099365, -0.060455322, 0.055419922, -0.07141113, -0.052825928, 0.005607605, -0.026870728, -0.041900635, -0.012458801, 0.04638672, 0.057159424, 0.042663574, 0.009773254, 0.036956787, -0.066467285, -0.0040512085, 0.02053833, 0.015777588, -0.023330688, -0.061279297, 0.014511108, 0.008178711, 0.018997192, 0.022613525, 0.031341553, -0.066467285, -0.013023376, -0.052581787, -0.023498535, 0.028320312, -0.03326416, 0.041259766, 0.012397766, -0.036712646, -0.016357422, 0.006465912, -0.0357666, -0.006088257, 0.0060577393, 0.05505371, 0.0022468567, -0.06652832, -0.006439209, -0.024871826, 0.004585266, 0.09515381, -0.0317688, -0.022705078, 0.029296875, -0.027023315, 0.034942627, 0.010658264, 0.017120361, 0.023376465, 0.009208679, -0.00869751, 0.024780273, -0.019073486, 0.007019043, -0.048095703, 0.04675293, 0.0059051514, 0.054473877, -0.0446167, -0.040008545, 0.0074272156, 0.0015859604, -0.009155273, -0.028198242, -0.004173279, 0.024856567, 0.018951416, 0.017105103, 0.033355713, -0.06304932, 0.024551392, 0.02708435, -0.049835205, 0.023986816, 0.04147339, 0.020736694, -0.030227661, 0.029220581, 0.048187256, 0.0181427, -0.016082764, -0.055786133, -0.05267334, 0.04284668, 0.00844574, -0.015464783, 0.055267334, -0.027572632, 0.013000488, 0.036743164, -0.008384705, -0.00026345253, -0.028396606, 0.06323242, -0.00030994415, -0.010612488]}, "B07VW6QZF5": {"id": "B07VW6QZF5", "original": "Brand: GQC\nName: GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)\nDescription: \nFeatures: \u3010Healthy and Safe Choice\u3011These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture.\n\u3010High Temperature Resistance\u3011Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500\u2109, won't burn or shrink, go through microwave quite well\n\u3010A Good helper to BBQ & Baking\u3011Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg.\n\u3010Secret to Save Money\u3011Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities\n\u3010No Mess, Easy to Clean\u3011Dishwasher safe means clean-up is a breeze! Don't waste anymore time scraping the \"crud\" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!\n", "metadata": {"Name": "GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)", "Brand": "GQC", "Description": "", "Features": "\u3010Healthy and Safe Choice\u3011These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture.\n\u3010High Temperature Resistance\u3011Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500\u2109, won't burn or shrink, go through microwave quite well\n\u3010A Good helper to BBQ & Baking\u3011Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg.\n\u3010Secret to Save Money\u3011Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities\n\u3010No Mess, Easy to Clean\u3011Dishwasher safe means clean-up is a breeze! Don't waste anymore time scraping the \"crud\" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [5.5909157e-05, -0.0028877258, -0.024139404, -0.0049057007, -0.00856781, -0.02279663, 0.0020370483, -0.0014638901, -0.046203613, 0.04776001, -0.0025539398, 0.033477783, 0.03125, -0.0146102905, 0.016143799, -0.011657715, 0.010498047, -0.005443573, 0.0135650635, -0.027893066, -0.006122589, -0.030532837, 0.009399414, 0.029312134, 0.040893555, -0.02532959, 0.03479004, -0.003768921, 0.023117065, -0.015701294, 0.02029419, 0.0012750626, 0.042266846, 0.023666382, -0.06903076, -0.045776367, -0.020019531, -0.013038635, -0.049621582, 0.02999878, -0.0026245117, 0.011116028, 0.012321472, 0.022201538, -0.030166626, -0.017852783, -0.02142334, -0.036102295, -0.00982666, 0.049682617, 0.014808655, 0.034698486, 0.0048599243, 0.05758667, 0.0024261475, 0.0039863586, 0.008094788, 0.036224365, 0.039855957, 0.009750366, -0.030090332, 0.0072631836, 0.011054993, -0.020248413, -0.021011353, -0.0021419525, 0.03704834, 0.005306244, -0.07330322, -0.04916382, 0.027267456, -0.016311646, 0.045806885, -0.061920166, -0.044799805, 0.003540039, 0.019607544, -0.029891968, 0.012954712, -0.051361084, -0.0519104, -0.01928711, 0.06112671, -0.08660889, 0.0070228577, -0.06384277, -0.026275635, 0.028808594, -0.01890564, -0.04095459, -0.014465332, 0.025344849, -0.07269287, 0.012397766, -0.0077667236, -0.02961731, -0.038513184, -0.050048828, 0.0026836395, 0.022323608, 0.034240723, -0.030380249, 0.046691895, -0.0063552856, -0.017654419, 0.07281494, 0.0023975372, -0.007419586, -0.015487671, 0.004722595, 0.013786316, -0.039886475, 0.0062828064, -0.01360321, -0.027938843, 0.018112183, 0.015457153, -0.025726318, -0.0038585663, -0.03527832, -0.047180176, -0.03100586, 0.011566162, 0.043792725, 0.072631836, 0.076171875, -0.00041866302, 0.00033450127, -0.074401855, 0.022857666, -0.011116028, 0.008430481, 0.038970947, 0.061279297, 0.00014734268, -0.005710602, -0.0039405823, -0.044555664, 0.012001038, 0.0021800995, 0.009986877, 0.0011444092, 0.0546875, 0.0074043274, 0.011260986, 0.03753662, 0.04348755, 0.016860962, -0.045410156, -0.087524414, 0.033294678, 0.009208679, 0.046783447, 0.0053215027, -0.04727173, 0.018951416, -0.022399902, 0.0040740967, -0.05441284, -0.024932861, -0.016860962, 0.011711121, 0.03677368, -0.04272461, -0.028686523, -0.010253906, -0.04272461, -0.0008854866, 0.015151978, 0.030303955, 0.021347046, -0.02229309, -0.03353882, -0.021026611, -0.013343811, -0.014045715, -0.00015246868, 0.039520264, 0.074645996, -0.07055664, -0.057495117, -0.045043945, 0.122802734, -0.043029785, -0.040771484, -0.0047912598, -0.004432678, 0.035064697, 0.04171753, 0.010124207, 0.00409317, -0.03137207, -0.049835205, -0.017333984, 0.009063721, 0.050842285, -0.056732178, 0.015914917, -0.004207611, -0.029373169, 0.0011415482, 0.011619568, -0.00052309036, 0.035736084, 0.009811401, -0.017745972, 0.010406494, 0.00062417984, 0.009651184, 0.032287598, 0.005947113, 0.001127243, -0.01651001, -0.00079774857, -0.004634857, -0.03302002, -0.015090942, -0.02053833, 0.0039863586, -0.016601562, 0.039276123, 0.02192688, 0.0062561035, 0.020217896, 0.018356323, -0.014282227, -0.019134521, -0.009468079, 0.035217285, 0.0048675537, -0.01524353, 0.03604126, 0.022644043, 0.024795532, -0.0236969, 0.03265381, 0.057922363, 0.09527588, -0.020553589, -0.029327393, 0.004764557, -0.008468628, -0.050598145, -0.0071792603, 0.045318604, -0.008872986, -0.01222229, 0.013031006, -0.015159607, 0.0026187897, 0.015701294, 0.013702393, 0.03466797, 0.019607544, 0.007270813, 0.03237915, -0.06341553, -0.005153656, -0.02545166, 0.010040283, -0.0028057098, 0.014137268, 0.033843994, -0.01210022, 0.057006836, -0.035614014, 0.04067993, 0.021026611, -0.026748657, -0.019012451, 0.014556885, 0.015182495, -0.0019130707, 0.02909851, 0.031951904, 0.01499176, -0.03152466, -0.01461792, 0.036590576, 0.011550903, 0.01789856, 0.016677856, 0.0042915344, -0.011039734, 0.0368042, -0.031097412, 0.0013628006, 0.010910034, -0.019195557, -0.045928955, 0.009170532, 0.0014591217, -0.028060913, -0.0034503937, 0.017440796, -0.04058838, 0.023605347, 0.03439331, -0.008110046, 8.684397e-05, -0.003376007, 0.030426025, -0.037139893, 0.016815186, -0.010932922, 0.016677856, -0.020111084, -0.008979797, -0.021469116, -0.04510498, 0.009246826, 0.035583496, 0.027359009, -0.013755798, 0.040527344, 0.0008239746, 0.0053482056, 0.046142578, 0.03375244, 0.019866943, -0.042785645, 0.038726807, -0.031982422, 0.0021266937, 0.025558472, 0.01979065, -0.029251099, -0.0051116943, -0.0015382767, 0.031402588, 0.039764404, 0.051086426, 0.025604248, 0.010482788, 0.0056114197, 0.003326416, -0.0070381165, 0.028167725, 0.008834839, -0.017608643, 0.00037169456, 0.008911133, 0.003643036, -0.029815674, -0.06945801, 0.006942749, 0.017578125, 0.030670166, -0.040039062, -0.04421997, 0.048553467, -0.045562744, 0.0051574707, 0.012496948, -0.0030155182, -7.075071e-05, -0.015594482, 0.0028839111, -0.00856781, -0.048614502, -0.019622803, 0.013221741, -0.04324341, -0.005657196, 0.04510498, -0.026565552, -0.018493652, -0.011154175, 0.018966675, 0.011703491, 0.02960205, 0.026763916, -0.08258057, -0.022781372, -0.02003479, -0.029708862, 0.015434265, -0.03665161, 0.012748718, 0.0037822723, -0.002462387, 0.022827148, -0.004966736, 0.0074043274, 0.008934021, 0.010665894, 0.029129028, 0.06567383, -0.012268066, -0.020812988, -0.008934021, 0.054016113, -0.055999756, -0.038085938, -0.005619049, 0.028945923, 0.026428223, -0.06945801, 0.03274536, -0.054107666, -0.05618286, -0.009483337, -0.004055023, -0.02444458, -0.03237915, -0.04244995, -0.03173828, -0.028396606, 0.006958008, 0.097717285, -0.016098022, -0.019485474, 0.00064229965, -0.019500732, 0.01184082, 0.02130127, 0.033843994, -0.011306763, -0.0076828003, -0.006046295, 0.037597656, -0.062286377, 0.033294678, 0.025131226, -0.023712158, -0.0085372925, 0.00063085556, 0.019088745, -0.055908203, 0.0010128021, -0.013282776, -0.04937744, -0.021194458, 0.03729248, -0.011985779, 0.066833496, 0.011917114, -0.035949707, 0.047027588, -0.037628174, -0.017608643, -0.017074585, -0.036834717, 0.020751953, -0.04598999, -0.0065193176, -0.015342712, -0.048614502, -0.02218628, -0.02960205, -0.011054993, 0.025650024, 0.010520935, 0.008399963, 0.0034770966, 0.017929077, 0.06451416, 0.045776367, 0.029327393, -0.018676758, -0.032989502, -0.055023193, 0.07739258, 0.002784729, 0.021774292, -0.04714966, 0.051879883, -0.011062622, -0.01285553, 0.024108887, -0.010681152, 0.016067505, 0.008430481, -0.001244545, 0.00011950731, -0.007843018, 0.004673004, 0.0418396, -0.042388916, -0.023147583, -0.06750488, 0.006462097, -0.06365967, 0.09753418, 0.05731201, -0.03186035, 0.09527588, 0.06640625, -0.016204834, 0.026290894, -0.008880615, 0.016677856, -0.0025997162, 0.039978027, -0.0099105835, 0.017669678, 0.0068626404, -0.006313324, -0.0042686462, -0.015792847, -0.035186768, 0.005016327, -0.016952515, 0.0044670105, -0.01033783, 0.013549805, 0.02381897, 0.02357483, -0.016738892, -0.040252686, 0.03302002, -0.032592773, 0.045288086, -0.0060920715, 0.009002686, -0.000115811825, 0.04925537, -0.01876831, 0.017044067, -0.021209717, 0.025436401, 0.01939392, 0.047180176, 0.032440186, -0.025024414, -0.013572693, 0.016418457, -0.023254395, -0.037963867, 0.0059394836, 0.05105591, 0.031555176, 0.0395813, -0.017150879, -0.012565613, -0.019973755, -0.015090942, 0.03277588, 0.012336731, -0.055847168, -0.008850098, 0.0048942566, -0.00038528442, -0.014930725, 0.034301758, -0.04901123, -0.0013179779, -0.002105713, -0.101867676, 0.024353027, -0.04321289, -0.03302002, -0.021591187, 0.012466431, -0.00674057, -0.027832031, -0.045715332, 0.0017375946, -0.0031166077, 0.024932861, -0.012199402, 0.044403076, -0.036621094, -0.023529053, 0.0011453629, 0.0014896393, 0.0390625, 0.010009766, 0.044036865, -0.059326172, -0.01461792, -0.041015625, 0.037872314, 0.023071289, 0.015098572, 0.007637024, -0.014770508, -0.0013799667, 0.024475098, 0.04135132, -0.020202637, 0.036376953, -0.0075187683, 0.01109314, -0.041381836, -0.03765869, 0.0625, -0.08312988, -0.007751465, -0.027145386, 0.07080078, -0.014213562, -0.02230835, -0.068847656, 0.004585266, 0.026809692, -0.023223877, 0.018218994, -0.016906738, 0.011627197, 0.008071899, -0.011367798, -0.007709503, 9.000301e-05, 0.02684021, 0.017410278, -0.01838684, 0.026062012, 0.011711121, -0.04473877, -0.018707275, -0.038146973, -0.026367188, 0.05343628, -0.05493164, -0.012046814, -0.011772156, 0.058410645, 0.044189453, -0.018493652, 0.0015773773, 0.0018205643, -0.02079773, -0.04714966, 0.025924683, -0.027618408, -0.009979248, -0.004459381, -0.009727478, -0.026504517, -0.03741455, -0.009773254, 0.022872925, 0.004032135, 0.033233643, -0.028717041, 0.020751953, -0.01739502, -0.015365601, 0.050231934, 0.019638062, 0.05682373, 0.032104492, -0.014663696, -0.050842285, -0.024551392, -0.023727417, -0.04989624, -0.014694214, -0.033050537, 0.025360107, -0.0016088486, -0.06390381, 0.02381897, 0.055908203, -0.032043457, -0.0040664673, 0.034057617, 0.0015096664, 0.0037727356, -0.011070251, 0.030914307, -0.018997192, 0.0027866364, -0.0345459, 0.0078125, -0.0099105835, 0.028793335, -0.041778564, 0.032592773, 0.017608643, -0.037200928, 0.02017212, -0.008308411, 0.015411377, -0.03955078, 0.05935669, 0.011932373, 0.011695862, -0.08074951, 0.0072784424, -0.038330078, 0.02748108, -0.018081665, -0.0054893494, 0.044128418, -0.009864807, -0.027832031, -0.019546509, 0.03466797, -0.04498291, 0.009307861, -0.015136719, 0.029006958, -0.01637268, -0.022445679, 0.012145996, -0.054656982, 0.014213562, -0.040771484, 0.029724121, -0.00806427, -0.036010742, -0.03326416, -0.041992188, 0.0064430237, -0.034973145, 0.022720337, -0.04095459, 0.0054512024, -0.01612854, 0.0050697327, -0.0059280396, 0.018325806, -0.08068848, -0.029373169, -0.036346436, -0.029190063, -0.021881104, 0.105773926, -0.0049858093, -0.0042533875, 0.020248413, -0.0077323914, 0.016189575, 0.01727295, -0.016784668, 0.02734375, 0.0132751465, 0.012817383, -0.040100098, -0.038238525, 0.061828613, -0.0519104, -0.03918457, -0.027313232, 0.04196167, 0.019699097, -0.010215759, 0.08392334, 0.017684937, 0.008506775, 0.018936157, -0.018066406, -0.028015137, 0.015151978, 0.012489319, -0.072509766, -0.0023040771, -0.021316528, 0.000374794, 0.0058898926, -0.010177612, -0.022720337, 0.03829956, -0.005672455, -0.0040626526, -0.037719727, -0.02204895, 0.0046844482, 0.009971619, 0.01524353, 0.0023345947, 0.0022792816, -0.027328491, 0.029510498, -0.05218506, -0.040740967, 0.039398193, 0.03414917, 0.0027332306, -0.028213501, 0.010002136, 0.035308838, -0.018417358, 0.08215332, -0.037719727, -0.010345459, 0.007205963, 0.062561035, 0.060577393, 0.012138367, -0.009681702, -0.03768921, -0.0112838745, -0.010223389, 0.0043754578, 0.012557983, -0.07421875, -0.029312134, 0.04208374, 0.060913086, 0.04309082, -0.012023926, 0.018920898, 0.0135269165, -0.0015268326, 0.0021095276, 0.049591064, -0.0050849915, -0.012428284, -0.027328491, -0.010116577, 0.009559631, -0.007987976, 0.020401001, 0.019989014, 0.02017212, -0.033233643, 0.011390686, -0.021148682, 0.01586914, 0.042938232, -0.025985718, -0.025360107, -0.024520874, 0.035705566, -0.004508972, -0.007675171, 0.025054932, -0.0051002502, 0.022354126, 0.0028362274, 0.027770996, 0.013122559, 0.041107178, 0.0129776, -0.06561279, 0.01361084, -0.010009766, 0.0072021484, 0.016571045, -0.03012085, -0.029830933, 0.010955811, 0.053833008, -0.030761719, 0.0635376, -0.041870117, -0.00617218, -0.016937256, -0.009811401, -0.011077881, -0.016052246, -0.0022773743, 0.017807007, -0.0032596588, -0.010566711, -0.007637024, 0.021102905, 0.040924072, -0.03555298, 0.00957489, 0.0118255615, 0.010826111, -0.006706238, -0.0058898926, -0.0345459, -0.05392456, 0.04788208, 0.059783936, -0.05014038, -0.0008854866, -0.0052604675, 0.00705719, -0.011634827, -0.02407837, 0.016403198, 0.0018177032, 0.005619049, 0.029266357, 0.0038776398, -0.0073165894, 0.017074585, -0.013214111, 0.019485474, 0.0047302246, 0.047058105, 0.02368164, 0.033111572, 0.0014648438, 0.04788208, 0.04083252, -0.020996094, 0.029144287, 0.040985107, -0.023208618, -0.013366699, 0.004840851, -0.014503479, -0.06628418, 0.020523071, -4.851818e-05, -0.0076408386, 0.010482788, 0.043426514, 0.023849487, -0.015533447, -0.000834465, -0.05090332, 0.054595947, -0.02809143, 0.035369873, -0.054626465, 0.024749756, -0.022491455, -0.010719299, 0.009880066, -0.015327454, -0.033355713, 0.03286743, 0.01828003, -0.023422241, -0.016479492, -0.004322052, 0.034423828, -0.056365967, -0.008010864, -0.010437012, 0.059631348, 0.01184845, 0.086364746, -0.055541992, -0.08996582, -0.04333496, 0.040893555, -0.076293945, -0.01109314, -0.03265381, 0.007358551, 0.007865906, -0.021514893, -0.022994995, 0.020996094, 0.007030487, -0.025268555, -0.02658081, -0.041412354, -0.020690918, 0.01914978, -0.012557983, -0.019927979, -0.029006958, 0.03540039, 0.03149414, 0.032073975, 0.019256592, -0.004760742, -0.052001953, 0.003929138, -0.025054932, 0.048950195, -0.006450653, -0.00856781, 0.01939392, -0.0015478134, -0.030197144, 0.02029419, 0.01600647, 0.005466461, 0.033721924, 0.0002553463, 0.00058555603, -0.029769897, -0.026412964, -0.020935059, -0.012573242, 0.01675415, 0.02305603, 0.017440796, -0.022216797, 0.0075035095, 0.0015077591, 0.013679504, 0.005268097, -0.030471802, -0.036621094, -0.012588501, 0.0006890297, -0.05166626, 0.020370483, 0.002779007, -0.013847351, -0.023849487, 0.0053482056, 0.009468079, -0.012458801, -0.0028057098, -0.026168823, 0.006767273, -0.006298065, -0.019729614, 0.008728027, -0.044555664, 0.017944336, 0.033081055, 0.016326904, 0.014656067, -0.009712219, -0.035736084, -0.003528595, 0.02355957, 0.015716553, 0.03225708, -0.029663086, 0.04107666, 0.0062789917, 0.02607727, -0.013534546, -0.080078125, -0.05029297, 0.020568848, 0.036865234, -0.0146865845, 0.06866455, -0.02218628, 0.03274536, -0.03567505, 0.014060974, -0.017913818, -0.007865906, -0.004901886, -0.010879517, 0.021911621]}, "B081J6T3BZ": {"id": "B081J6T3BZ", "original": "Brand: ThermoPro\nName: ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat\nDescription: \nFeatures: 4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill\u2019s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe\n500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard\nStandalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance\nOptimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of \u00b11.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required\nSmart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat\n", "metadata": {"Name": "ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat", "Brand": "ThermoPro", "Description": "", "Features": "4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill\u2019s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe\n500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard\nStandalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance\nOptimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of \u00b11.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required\nSmart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019012451, 0.013290405, 0.00036263466, 0.036621094, -8.267164e-05, -0.031066895, 0.034729004, -0.042938232, 0.014472961, 0.041015625, 0.036102295, 0.01033783, 0.049560547, -0.04937744, 0.016067505, 0.015914917, 0.009674072, 0.024734497, 0.042175293, 3.5464764e-05, -0.017089844, 0.017349243, 0.024154663, 0.022323608, 0.037841797, 0.03074646, -0.0003862381, 0.013175964, 0.028213501, 0.017822266, 0.027130127, -0.04864502, 0.03149414, 0.042144775, -0.10632324, -0.04901123, -0.052368164, 0.013015747, -0.044036865, 0.0032863617, 0.013687134, 0.0006942749, 0.04135132, 0.014312744, -0.00315094, -0.015113831, 0.019332886, -0.02394104, -0.006855011, 0.047027588, 0.025146484, -0.022140503, 0.024337769, 0.020950317, 0.013839722, 0.02192688, 0.026016235, -0.0073890686, 0.03387451, -0.046905518, -0.03878784, -0.0036849976, 0.033599854, 0.024002075, -0.012496948, 0.0003490448, 0.069885254, -0.007797241, -0.010009766, -0.04333496, 0.014846802, 0.025482178, 0.027893066, -0.0107040405, -0.001115799, -0.056243896, -0.003282547, -0.03012085, 0.032806396, 0.00047445297, 0.0052490234, -0.0078048706, 0.012130737, -0.035217285, 0.014152527, -0.010719299, -0.006958008, -0.014564514, -0.031585693, -0.055847168, -0.024475098, 0.004852295, -0.06008911, 0.008728027, -0.02218628, -0.010543823, -0.0063972473, 0.0070648193, -0.028884888, -0.0038814545, 0.0042800903, -0.023147583, -0.0035114288, -0.011978149, -0.012619019, 0.055145264, -0.00894928, 0.009376526, 0.011444092, 0.015609741, 0.005317688, -0.044891357, -0.020477295, -0.020187378, -0.023117065, 0.0070724487, -0.01852417, -0.046905518, 0.0020103455, -0.05114746, -0.055847168, -0.026245117, 0.011489868, 0.031280518, 0.02986145, 0.018722534, 0.02053833, 0.0034656525, -0.07366943, 0.049926758, -0.028045654, -0.02130127, 0.02468872, 0.0357666, 0.014419556, -0.041870117, 0.03074646, -0.008117676, 0.013519287, 0.0022182465, 0.00035500526, -0.033721924, -0.01322937, 0.010757446, -0.03967285, -0.02279663, 0.023849487, 0.042510986, -0.027114868, -0.035614014, 0.008056641, 0.03866577, 0.02822876, 0.00051546097, -0.04019165, -0.0090789795, -0.017730713, -0.011260986, -0.0045776367, -0.026031494, -0.013748169, -0.011787415, 0.008666992, -0.003162384, -0.009590149, 0.007663727, -0.0071372986, -0.0026359558, 0.01927185, 0.013458252, 0.0037117004, 0.0019016266, 0.017715454, 0.01348114, -0.0041389465, 0.013153076, 0.001074791, 0.09942627, 0.06732178, -0.12359619, -0.087768555, -0.06439209, 0.15661621, -0.07861328, -0.019851685, 0.010910034, -0.0028095245, 0.035003662, 0.038146973, 0.015174866, -0.031555176, -0.010910034, -0.034576416, 0.03253174, -0.003742218, 0.017730713, -0.018203735, 0.0552063, -0.014854431, -0.082092285, -0.057128906, 0.018753052, -0.024246216, 0.024780273, -0.027175903, 0.0025691986, -0.008728027, 0.040740967, -0.016784668, -0.008491516, 0.014335632, -0.002796173, 0.006931305, -0.08947754, -0.029678345, 0.027008057, -0.045898438, -0.01914978, -0.008346558, 0.0039863586, -0.0031757355, -0.006111145, -0.0061454773, 0.008995056, 0.032226562, -0.018005371, -0.017913818, -0.001704216, 0.02571106, 0.0058174133, 0.0062217712, 0.04940796, 0.015579224, 0.0066871643, -0.0017738342, 0.053619385, 0.09411621, 0.051116943, -0.026641846, -0.03866577, 0.009963989, -0.0068206787, -0.052246094, -0.032836914, 0.0038909912, -0.025863647, 0.0034599304, -0.008071899, -0.02407837, 0.008361816, 0.039489746, -0.010681152, 0.019104004, -0.011741638, -0.008483887, 0.021209717, -0.009086609, 0.035217285, -0.050109863, 0.03414917, -0.028808594, 0.01374054, 0.046936035, -0.015007019, 0.036102295, 0.00010693073, 0.013763428, 0.011009216, -0.03265381, 0.0045928955, 0.018310547, 0.0014400482, -0.010665894, -0.033843994, -0.0011339188, -0.03265381, -0.03982544, 0.035736084, 0.014404297, -0.04586792, 0.010978699, 0.038085938, 0.03314209, -0.0034694672, 0.00856781, -0.04901123, 0.009269714, 0.013908386, -0.035858154, -0.008720398, 0.023071289, -0.0028705597, -0.025924683, 0.012023926, -0.014099121, -0.00497818, -0.005558014, 0.027755737, 0.0041885376, -0.02204895, -0.018951416, 0.029785156, -0.020248413, -0.004722595, -0.0033054352, -0.015609741, 0.019012451, 0.013046265, -0.0043525696, -0.06402588, 0.033813477, 0.025970459, 0.034210205, -0.051971436, 0.055145264, 0.038848877, 0.01360321, 0.011161804, 0.021118164, 0.029312134, 0.004020691, -0.0043144226, -0.02508545, -0.008460999, 0.008575439, 0.008422852, -0.026901245, -0.017227173, -0.011917114, 0.038360596, 0.05053711, 0.040527344, 0.025436401, -0.014198303, -0.0031108856, -0.010482788, -0.0013208389, 0.013717651, -0.026672363, -0.04626465, -0.03265381, -0.017852783, 0.031799316, -0.01109314, -0.06591797, 0.018463135, 0.025680542, 0.015960693, 0.01739502, -0.00995636, 0.01574707, -0.015991211, 0.0074157715, 0.0002641678, -0.0087890625, 0.0021972656, 0.001045227, -0.028305054, -0.02748108, -0.06677246, -0.038635254, 0.011428833, -0.053375244, -0.003440857, 0.039154053, -0.019683838, -0.0058135986, -0.009475708, 0.024902344, 0.037017822, 0.051696777, 0.0055160522, -0.03286743, -0.025970459, -0.03366089, -0.06100464, -0.029541016, -0.043273926, 0.008880615, -0.034179688, -0.008300781, 0.014305115, 0.050628662, 0.040100098, 0.026794434, 0.033447266, 0.030334473, 0.058654785, -0.007698059, -0.028808594, 0.021087646, 0.06427002, 0.018081665, -0.021606445, -0.0021514893, 0.018630981, -0.022567749, -0.050201416, -0.0045166016, -0.00058555603, -0.068237305, 0.00045204163, -0.028808594, -0.016815186, 0.013671875, -0.049560547, 0.0038452148, -0.057128906, 0.0048103333, 0.046783447, -0.01285553, -0.0050964355, -0.025665283, -0.010803223, 0.017227173, -0.0063323975, 0.03074646, 0.0011672974, 0.025558472, -0.048828125, 0.0032863617, -0.020935059, 0.014122009, -0.0008511543, -0.011039734, -0.0051574707, 0.0020828247, -0.0052261353, 0.010299683, -0.0109939575, -0.02330017, -0.03262329, -0.0028457642, -0.020324707, -0.0052223206, 0.021957397, -0.010093689, -0.011512756, -0.008758545, -0.011062622, -0.03753662, 0.013923645, -0.038848877, 0.002029419, -0.01209259, -0.050476074, 0.015350342, -0.072631836, 0.007446289, -0.07867432, -0.02281189, 0.00051164627, 0.06567383, 0.03439331, 0.022750854, 0.09631348, -0.030578613, 0.06311035, 0.040496826, -0.058776855, 0.0048103333, -0.061553955, -0.008071899, 0.07098389, -0.018478394, -0.022247314, 0.032196045, -0.00843811, -0.053619385, 0.012969971, -0.043518066, 0.050323486, -0.035186768, -0.009651184, -0.015670776, 0.015304565, 0.019439697, 0.0071754456, 0.042633057, -0.0034885406, -0.047454834, 0.022644043, -0.07336426, 0.039611816, -0.004196167, 0.0050468445, 0.037322998, 0.029907227, 0.0018033981, 0.017684937, 0.05444336, -0.010688782, 0.03668213, 0.0028076172, -0.027267456, -0.019851685, 0.005092621, 0.00623703, 0.03286743, 0.023086548, -0.026748657, 0.018447876, -0.018875122, -0.008880615, -0.044921875, 0.019302368, 0.038848877, 0.009857178, 0.0041885376, -0.06604004, 0.044158936, -0.039367676, -0.0016469955, 0.008346558, -0.01979065, -0.059173584, 0.03201294, -0.006122589, -0.032714844, 0.006629944, 0.020385742, 0.019104004, 0.0048675537, 0.007522583, -0.0023345947, 0.01713562, -0.030197144, 0.002855301, -0.010566711, -0.010520935, 0.038726807, 0.0129776, 0.022644043, 0.0001540184, -0.010665894, 0.0028152466, -0.0029239655, 0.028045654, 0.011474609, -0.011405945, 0.0016469955, -0.037384033, -0.018615723, -0.020553589, 0.049072266, -0.08099365, 0.030899048, -0.017089844, -0.07861328, -0.0052375793, -0.025390625, -0.010986328, -0.04034424, -0.009857178, 0.010513306, -0.023925781, -0.020355225, 0.015319824, 0.0033721924, -0.031341553, 0.0008773804, 0.0035095215, -0.03729248, 0.010543823, -0.007850647, 0.0011501312, 0.058898926, 0.004173279, 0.02508545, -0.027374268, -0.01838684, -0.039093018, 0.025680542, 0.018737793, -0.0040740967, 0.0027751923, -0.04638672, -0.014862061, 0.029785156, 0.095214844, 0.015274048, 0.021362305, -0.07733154, -0.056427002, -0.019714355, -0.022003174, 0.04638672, -0.007801056, 0.0016126633, -0.057434082, -0.0065193176, -0.009803772, 0.03173828, 0.0038871765, -0.01838684, -0.0637207, 0.02748108, -0.019348145, 0.01878357, -0.008659363, 0.013320923, 0.0032482147, 0.00012493134, -0.015670776, -0.01108551, 0.009292603, -0.013923645, 0.00242424, 0.007572174, -0.02520752, 0.010307312, -0.009429932, -0.022491455, 0.039855957, -0.03994751, -0.005859375, 0.020706177, 0.018692017, 0.053710938, -0.04006958, 0.005455017, 0.012107849, -0.029769897, 0.014549255, 0.011116028, -0.026809692, -0.03475952, -0.048950195, -0.03112793, 0.008842468, -0.04815674, 0.010932922, -0.014411926, -0.004081726, 0.0060424805, 0.0021629333, -0.009025574, -0.027694702, -0.0057144165, -0.0018119812, 0.016723633, 0.01725769, 0.009635925, -0.005508423, -0.0033798218, -0.017608643, 0.0035209656, -0.014450073, -0.012802124, -0.014808655, -0.006439209, -0.014335632, -0.034088135, -0.0284729, 0.02394104, -0.056549072, 0.019714355, 0.03152466, -0.0044555664, -0.032562256, -0.015991211, -0.002380371, 0.0070724487, -0.051849365, 0.07305908, -0.020828247, 0.0026626587, 0.027511597, -0.023712158, 0.056030273, -0.017654419, -0.025924683, 0.04562378, -0.030792236, 0.005214691, -0.0181427, -0.023773193, 0.0077323914, 0.0027198792, -0.04537964, 0.0060653687, 0.034240723, 0.045440674, 0.0395813, -0.06695557, 0.044036865, -0.026916504, -0.027145386, -0.021133423, 0.09625244, -0.053741455, -0.021575928, 0.0043525696, -0.016601562, -0.04840088, -0.029510498, -0.00075244904, -0.021240234, -0.04232788, -0.038116455, 0.0019245148, 0.010353088, 0.01499176, -0.0072784424, -0.01386261, 0.049560547, -0.04244995, 0.07019043, -0.038879395, -0.011497498, 0.020462036, 0.037322998, -0.018859863, -0.011444092, 0.0027751923, -0.027526855, -0.020477295, -0.0005440712, -0.017852783, 0.012428284, -0.012420654, -0.004142761, 0.041900635, 0.013282776, 0.017715454, 0.044433594, -0.012817383, 0.009239197, -0.0004093647, 0.0072746277, -0.0129470825, -0.0037631989, 0.056427002, -0.043151855, -0.040252686, -0.044891357, 0.03125, 0.00077295303, -0.042022705, 0.057434082, 0.017654419, -0.0035095215, 0.024490356, -0.027755737, -0.013046265, 0.021896362, 0.013725281, -0.015434265, -0.036376953, -0.021469116, -0.024841309, 0.010269165, 0.007873535, 0.012329102, 0.026809692, 0.001739502, 0.017196655, -0.034301758, -0.019714355, -0.01499939, -0.010437012, 0.012832642, -0.0025367737, 0.0002257824, -0.03543091, -0.018218994, -0.049316406, -0.019165039, 0.039276123, 0.03717041, 0.042755127, -0.017242432, 0.05166626, 0.123291016, -0.095581055, 0.032073975, 0.011657715, -0.026275635, 0.021713257, 0.012130737, -0.0022335052, -0.0051727295, -0.035308838, -0.006942749, -0.011306763, 0.013038635, 0.037628174, -0.0049972534, -0.033081055, -0.012878418, -0.0019817352, 0.028900146, 0.008224487, 0.017196655, 0.018188477, 0.020370483, -0.015106201, -0.015701294, -0.0066986084, -0.022506714, -0.04486084, -0.026016235, -0.0051574707, 0.03338623, -0.0006952286, 0.030319214, 0.0025119781, 0.03265381, -0.02116394, 0.04269409, -0.008132935, 0.017227173, 0.027893066, -0.03213501, -0.02885437, -0.030334473, 0.0049972534, 0.004634857, 0.008308411, 0.008674622, -0.00283432, 0.019592285, 0.0066833496, 0.019119263, 0.016555786, 0.017532349, -0.0066986084, -0.04006958, 0.035095215, -0.078430176, -0.006134033, -0.020446777, 0.021194458, 0.029434204, 0.031051636, 0.01625061, -0.0015144348, 0.095947266, -0.052490234, -0.008369446, 0.0082092285, 0.022247314, -0.013374329, 0.013343811, -0.014434814, 0.0073928833, 0.027557373, -0.009849548, -0.06933594, 0.011428833, 0.020309448, -0.019760132, 0.04046631, -0.03289795, 0.016937256, -0.020523071, 0.0036525726, -0.026611328, -0.035583496, 0.0045433044, -0.009338379, 0.009689331, 0.02999878, 0.02708435, 0.005405426, 0.008132935, -0.017730713, 0.01828003, -0.013252258, 0.050842285, 0.04522705, -0.0070610046, -0.021072388, -0.08294678, -0.02961731, -0.013542175, -0.014045715, -0.0051879883, -0.026046753, 0.08795166, 0.04510498, 0.021865845, 0.06274414, -0.020996094, 0.015945435, 0.047698975, 0.008148193, -0.009269714, 0.012771606, 0.023773193, -0.033599854, -0.022705078, 0.0034008026, -0.010597229, 0.0569458, 0.05718994, 0.013397217, -0.019378662, -0.06976318, 0.053741455, -0.05493164, -0.0413208, 0.051116943, -0.07745361, -0.02961731, 0.0011491776, -0.013076782, -0.03543091, -0.05014038, -0.055877686, 0.047210693, -0.036193848, -0.026992798, -0.02067566, -0.016937256, 0.0019931793, -0.061279297, -0.008140564, -0.014572144, 0.06439209, -0.0039711, 0.037017822, -0.0390625, -0.043762207, -0.034576416, 0.031143188, -0.076171875, -0.041046143, -0.016464233, 0.014480591, 0.006958008, 0.0014677048, -0.0115356445, -0.0047721863, 0.009315491, -0.019348145, -0.02142334, -0.01638794, -0.028884888, -0.0023822784, -0.014289856, -0.019470215, 0.00047159195, 0.051849365, 0.010726929, 0.049682617, -0.0020637512, 0.021591187, -0.062561035, 0.004623413, -0.023544312, 0.019241333, 0.0024814606, -0.020874023, -0.009941101, -0.033172607, -0.05227661, -0.0552063, 0.009735107, 0.02532959, 0.015022278, 0.06378174, -0.022659302, 0.01689148, -0.011734009, 0.08459473, 0.005744934, -0.030136108, 0.032104492, 0.021606445, 0.032958984, 0.038726807, -0.028335571, 0.04309082, 0.015350342, -0.00116539, -0.028030396, 0.0077400208, 0.0029029846, -0.024017334, 0.016281128, 0.026428223, -0.011962891, -0.016555786, -0.004322052, 0.043884277, -0.03845215, -0.021087646, -0.015090942, 0.018005371, -0.0032196045, -0.04333496, 0.03390503, 0.004398346, 0.018875122, 0.0024356842, 0.04257202, -0.029754639, 0.030792236, -0.02947998, -0.017654419, -0.0017299652, 0.019226074, 0.0004553795, -0.03842163, -0.022659302, -0.011276245, 0.015670776, 0.0007677078, -0.07098389, -0.052337646, 0.057556152, 0.024673462, -0.03878784, 0.026443481, 0.007385254, 0.00021243095, 0.023391724, 0.023208618, -0.0345459, 0.021148682, -0.033813477, 0.018325806, 0.013557434]}, "B07N24FPJ1": {"id": "B07N24FPJ1", "original": "Brand: Home State Texas Shirts\nName: Home State Texas Gift T-Shirt Men And Women\nDescription: \nFeatures: Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more\nWear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "metadata": {"Name": "Home State Texas Gift T-Shirt Men And Women", "Brand": "Home State Texas Shirts", "Description": "", "Features": "Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more\nWear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more\nLightweight, Classic fit, Double-needle sleeve and bottom hem", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00022661686, -0.00086688995, 0.010498047, 0.023269653, -0.02458191, -0.009651184, 0.012702942, -0.03201294, 0.0017757416, -0.015464783, 0.010894775, 0.012451172, -0.03845215, -0.04748535, 0.02368164, -0.040405273, 0.046661377, -0.01838684, 0.01737976, -0.009506226, -0.011520386, 0.023452759, 0.022735596, 0.027114868, 0.038330078, 0.025115967, 0.012969971, -0.0032081604, 0.048706055, 0.03475952, 0.037963867, -0.08203125, 0.05114746, -0.029724121, 0.008117676, -0.0028324127, 0.00756073, -0.028884888, -0.027359009, 0.027954102, -0.012275696, 0.027145386, -0.033691406, 0.049560547, -0.07141113, -0.0256958, -0.019332886, 0.0023937225, -0.0038166046, 0.06896973, -0.0037250519, 0.0028896332, -0.039916992, 0.032928467, 0.027770996, 0.007411957, -0.02557373, 0.05029297, 0.043029785, -0.049438477, -0.043395996, -0.005104065, 0.032196045, 0.03253174, -0.027191162, 0.0002617836, 0.018051147, -0.012649536, -0.067871094, -0.032104492, 0.05822754, -0.04168701, 6.878376e-05, -0.02267456, 0.019729614, 0.030685425, -0.020431519, 0.027069092, 0.01234436, 0.025314331, 0.012458801, -0.024139404, 0.076171875, -0.026443481, -0.00017690659, 0.0015649796, -0.013954163, -0.0070343018, 0.008804321, 0.029205322, -0.0026874542, 0.016998291, 0.0023918152, 0.060180664, 0.0041542053, 0.0014705658, -0.019744873, -0.0010719299, -0.0070991516, -0.0051345825, -0.03277588, 0.010101318, -0.06072998, 0.0076560974, 0.0030441284, 0.029067993, 4.464388e-05, 0.025177002, 0.033050537, 0.021026611, -0.0040130615, 0.02609253, 0.03050232, 0.01689148, 0.011123657, -0.026184082, -0.031921387, 0.06677246, -0.00025486946, 0.062316895, -0.003572464, 0.018127441, 0.048034668, 0.020187378, 0.014579773, 0.072143555, 0.008239746, -0.06768799, -0.00818634, 0.022415161, -0.035064697, 0.0028572083, -0.00064754486, 0.019699097, -0.011436462, -0.013282776, 0.029876709, -0.00051784515, -0.03161621, 0.013465881, -0.0020942688, -0.011154175, 0.01008606, -0.03036499, 0.012077332, -0.009666443, 0.01789856, 0.030731201, 0.00027513504, -0.018432617, 0.02911377, -0.010917664, 0.003873825, 0.030441284, 0.006149292, -9.6678734e-05, 0.015075684, -0.020324707, 0.004989624, -0.01449585, 0.011024475, -0.050079346, -0.03024292, 0.023849487, -0.035491943, 0.058441162, 0.031707764, -0.0035495758, 0.027236938, 0.014038086, 0.045318604, -0.019546509, 0.024780273, -0.012199402, -0.012649536, -0.012786865, -0.03717041, 0.009643555, 0.05706787, -0.04714966, -0.04522705, -0.039276123, 0.0692749, -0.009925842, -0.03842163, 0.04852295, -0.00497818, 0.053131104, 0.031555176, 2.9206276e-05, -0.0065307617, -0.011154175, -0.012046814, -0.020492554, -0.016616821, -0.010147095, -0.008651733, -0.003288269, -0.021057129, 0.01914978, 0.033233643, 0.0011863708, 0.012191772, -0.0211792, -0.0021400452, -0.017105103, 0.009262085, 0.010726929, 0.011856079, 0.035491943, -0.013427734, 0.0060539246, 0.013198853, -0.086120605, -0.03062439, 0.018569946, -0.008781433, -0.004589081, 0.029586792, -0.022720337, 0.025344849, 0.040161133, 0.007865906, 0.018493652, -0.0335083, -0.0368042, -0.034088135, -0.020614624, -0.07800293, -0.018692017, -0.0067749023, 0.078308105, 0.012802124, 0.04119873, -0.019317627, 0.025146484, 0.041290283, 0.020355225, -0.0049819946, -0.010177612, -0.01600647, -0.02407837, -0.022857666, 0.064208984, 0.052734375, 0.076538086, 0.02116394, 0.030776978, -0.013420105, 0.031433105, 0.013397217, 0.0026626587, 0.004360199, -0.050994873, -0.029724121, 0.020614624, -0.057250977, -0.0055122375, -0.0039634705, 0.005367279, -0.017562866, 0.020080566, 0.061187744, -0.020462036, 0.029571533, 0.0038661957, 0.014625549, 0.0056991577, -0.01890564, 0.03982544, 0.0021877289, -0.047546387, -0.01033783, 0.04046631, 0.06628418, -0.05871582, -0.005580902, -0.030426025, 0.0007200241, 0.0021839142, -0.00018024445, -0.040618896, 0.019210815, 0.008613586, 0.04324341, 0.015930176, 0.05126953, 0.028900146, -0.031982422, -0.024490356, -0.016159058, 0.019973755, -0.021072388, 0.019302368, 0.03137207, -0.028335571, 0.02305603, -0.020599365, -0.00037145615, 0.008682251, 0.047332764, 0.064575195, 0.013381958, -0.001159668, 0.014442444, -0.009727478, 0.019729614, 0.014640808, 0.031829834, 0.010353088, -0.0062294006, 0.037017822, 0.014503479, 0.039916992, 0.026992798, 0.006591797, 0.026290894, 0.055023193, 0.044647217, -0.010299683, -0.004760742, 0.053833008, 0.03164673, -0.0071105957, 0.043304443, -0.01890564, -0.0345459, 0.0011529922, -0.06112671, -0.034057617, 0.048187256, -0.015975952, 0.0234375, 0.030426025, 0.024658203, -0.012863159, -0.0014867783, 0.02230835, -0.013092041, -0.010322571, -0.012969971, 0.043029785, 0.00012034178, -0.048431396, -0.00044608116, -0.02281189, 0.009429932, -0.0023212433, -0.00207901, 0.011695862, -3.8146973e-06, -0.02180481, 0.010528564, -0.010437012, 0.007820129, -0.01638794, -0.026550293, -0.02268982, -0.016983032, -0.061157227, -0.0703125, 0.01651001, -0.06008911, -0.0033016205, 0.04272461, 0.00014674664, -0.01828003, 0.029037476, 0.011459351, -0.011138916, 0.023422241, -0.028747559, 0.042022705, -0.0032138824, 0.015472412, -0.029220581, -0.022964478, -0.05380249, 0.03793335, -0.026519775, -0.012504578, -0.01247406, 0.03677368, -0.00868988, -0.010147095, 0.042053223, 0.033721924, 0.022842407, 0.02015686, -0.01953125, 0.02355957, 0.04977417, -0.006881714, -0.030899048, 0.016311646, 0.0025367737, 0.00072956085, 0.04824829, -0.018356323, -0.017181396, -0.06500244, 0.019882202, -0.022918701, -0.018600464, 0.008460999, -0.026657104, 0.0079193115, -0.055267334, 0.0014648438, 0.016281128, -0.011009216, -0.023605347, -0.030639648, -0.029190063, 0.007858276, -0.029281616, 0.09466553, 0.025405884, -0.068115234, -0.074279785, 0.07696533, -0.040161133, 0.034698486, -0.034973145, -0.014533997, 0.035308838, -0.023712158, -0.014671326, 0.026123047, 0.02178955, -0.0047340393, 0.006416321, 0.003479004, -0.026321411, -0.035369873, 0.047180176, 0.006137848, 0.0871582, 0.011543274, -0.012298584, 0.025238037, -0.019546509, -0.008003235, -0.027633667, 0.019561768, -0.026794434, -0.016540527, 0.044799805, -0.034454346, 0.034301758, -0.004840851, 0.02142334, -0.018356323, 0.018859863, -0.023147583, 0.0012578964, 0.008895874, 0.016067505, 0.057403564, -0.033721924, -0.043914795, -0.03439331, 0.021621704, -0.00041770935, 0.013389587, -0.06732178, 0.062164307, -0.0037841797, 0.020019531, 0.0077438354, -0.0024261475, 0.03050232, -0.0012598038, 0.0026435852, 0.017074585, -0.019378662, -0.022964478, 0.017730713, 0.0021896362, 0.018966675, -0.036712646, 0.015716553, -0.011787415, -0.036254883, -0.027130127, 0.016723633, -0.030975342, -0.006958008, 0.005908966, 0.001830101, 0.015060425, -0.031463623, 0.020339966, -0.006767273, -0.024963379, -0.005470276, 0.012794495, -0.0036010742, 0.010528564, 0.0068511963, -0.058502197, -0.0011863708, -0.013641357, -0.0262146, -0.03643799, -0.007751465, 0.051879883, 0.007293701, 0.007843018, -0.0071029663, 0.044830322, -0.007381439, 0.0052833557, 0.023773193, -0.02281189, 0.042785645, -0.04336548, 0.029205322, -0.032318115, -0.024108887, -0.012268066, 0.020385742, -0.009590149, 0.0036830902, 0.02684021, 0.007835388, -0.019577026, 0.052246094, 0.008987427, 0.034240723, -0.0048103333, 0.027023315, -0.009140015, -0.02911377, 0.033294678, -0.07147217, -0.018249512, 0.0046424866, -0.025253296, -0.013916016, -0.009674072, -0.03048706, 0.008415222, 0.019134521, -0.0028877258, -0.043945312, -0.002155304, 0.035858154, -0.020950317, 0.003709793, 0.006187439, 0.0052375793, -0.08905029, -0.023529053, 0.0028305054, -0.04196167, -0.060150146, 0.03942871, -0.012435913, -0.018493652, 0.0055236816, -0.025253296, -0.046844482, 0.04458618, -0.04727173, -0.016098022, 0.049682617, -0.0010356903, -0.043029785, -0.01966858, -0.064941406, -0.0070533752, -0.006252289, -0.02696228, -0.024383545, -0.012893677, -0.0048179626, 0.013343811, -0.007411957, -0.017349243, -0.027832031, 0.018325806, 0.032165527, 0.02734375, -0.027374268, 0.0060539246, -0.003824234, -0.030181885, -0.03111267, -0.019088745, 0.047790527, -0.012893677, -0.0025672913, -0.02859497, -0.011756897, 0.00793457, -0.012107849, -0.01576233, 0.019836426, 0.003063202, -0.038146973, 0.008422852, 0.0011405945, -0.0067367554, 0.027328491, 0.038085938, -0.05267334, 0.041290283, -0.0045928955, -0.009765625, -0.002462387, -0.010627747, -0.044281006, 0.025756836, -0.05859375, 0.022155762, -0.05480957, 0.10266113, 0.04144287, -0.017166138, -0.008956909, 0.018875122, -0.023422241, -0.05493164, -0.026473999, -0.024902344, -0.006755829, -0.012023926, -0.029724121, -0.002943039, -0.009223938, -0.001996994, -0.029144287, -0.05508423, -0.018798828, 0.0016002655, 0.01033783, -0.018234253, 0.054473877, 0.04269409, 0.050933838, 0.020843506, 0.030380249, -0.011833191, 0.008491516, 0.018814087, 0.021209717, 0.010574341, 0.0178833, -0.016403198, 0.057678223, -0.031799316, -0.11450195, -0.03845215, 0.08508301, -0.07366943, 0.00032281876, 0.031219482, -0.017700195, -0.015579224, -0.021530151, 0.011817932, 0.006336212, -0.023986816, -0.0048980713, 0.009681702, -0.021087646, 0.010368347, -0.019165039, 0.002910614, -0.009124756, -0.028915405, 0.06149292, -0.009750366, 0.0054626465, -0.043670654, -0.015357971, -0.007709503, -0.027664185, -0.02998352, -0.0043563843, -0.07861328, 0.007411957, -0.0003387928, -0.024902344, -0.02116394, -0.028137207, 0.043426514, 0.0014467239, -0.020370483, -0.064941406, -0.027511597, -0.0088272095, -0.052734375, -0.0007863045, -0.0017089844, -0.05355835, -0.049987793, -0.047912598, 0.03918457, 0.040771484, -0.044525146, -0.0039138794, -0.066833496, 0.014221191, 0.016464233, -0.085998535, -0.016357422, 0.05078125, 0.046813965, 0.0040016174, -0.057617188, -0.07318115, -0.026184082, 0.005859375, -0.021743774, 0.01259613, 0.02331543, 0.02166748, 0.00094366074, -0.054748535, 0.00028419495, -0.01020813, -0.033355713, -0.008857727, 0.025894165, -0.055847168, -0.013465881, -0.017425537, -0.0284729, -0.006679535, -0.005355835, 0.022598267, -0.024917603, -0.028656006, -0.019485474, -0.00566864, 0.030319214, 0.0041046143, -0.005428314, 0.0597229, -0.025299072, 0.03778076, -0.014213562, 0.048187256, 0.06677246, 0.005924225, 0.103637695, 0.0118637085, 0.028640747, -0.0099105835, 0.035308838, 0.0031833649, -0.027145386, 0.01247406, -0.051483154, -0.03024292, -0.03086853, 0.008010864, -0.0079193115, -0.019546509, 0.0031280518, -0.015426636, 0.03048706, -0.03982544, 0.01235199, -0.01802063, -0.0020446777, 0.007843018, 0.029144287, 0.05960083, -0.017349243, 0.009605408, 0.009521484, -0.04827881, 0.045806885, 0.006664276, -0.0045051575, -0.005218506, -0.032226562, -0.009841919, -0.0057373047, 0.02104187, 0.032073975, 0.03074646, -0.0042152405, 0.034484863, -0.051116943, 0.021392822, -0.007987976, -0.008911133, 0.004497528, 0.01600647, 0.001291275, 0.02796936, 0.014450073, -0.054870605, -0.002084732, 0.019485474, -0.03274536, 0.0151901245, -0.037963867, 0.036468506, 0.030548096, -0.004585266, -0.011062622, -0.03857422, 0.08911133, -0.016830444, 0.062805176, -0.005355835, 0.023712158, 0.02746582, -0.056915283, 0.0018119812, -0.022766113, 0.003967285, -0.036895752, -0.0006451607, 0.062408447, -0.003036499, 0.03213501, 0.04953003, -0.005001068, 0.04272461, -0.014564514, 0.009544373, -0.0024261475, 0.015258789, -0.019226074, 0.011329651, -0.004070282, -0.051605225, -0.00642395, 0.013374329, -0.004211426, -0.0029468536, 0.023971558, 0.016418457, 0.01235199, -0.021316528, 0.0435791, -0.07598877, -0.06506348, 0.0647583, -0.04748535, -0.027679443, 0.015319824, -0.037994385, 0.043151855, 0.006931305, 0.010032654, -0.01713562, 0.021743774, 0.02545166, 0.042297363, -0.015098572, -0.049621582, -0.04260254, -0.014923096, -0.0034732819, 0.008735657, -0.00019967556, -0.0068244934, 0.039642334, -0.024490356, -0.013725281, 0.007774353, -0.019638062, 0.0074501038, 0.00090932846, -0.0029087067, 0.0061912537, 0.0052261353, -0.024932861, 0.085754395, -0.038726807, 0.06695557, 0.009635925, 0.028045654, -0.013908386, 0.018081665, 0.056365967, 0.022140503, 0.029083252, -0.040039062, 0.0049438477, -0.027557373, -0.054595947, -0.024490356, -0.053710938, 0.011444092, 0.03567505, -0.029251099, 0.012756348, -0.019821167, -0.010757446, 0.0038547516, -0.025741577, 0.02178955, -0.024520874, -0.024963379, 0.003145218, -0.01828003, -0.0015201569, -0.021377563, -0.00011628866, -0.01272583, 0.0051193237, -0.03366089, 0.01260376, 0.0096588135, 0.021331787, 0.01071167, -0.028121948, -0.0057868958, 0.0037269592, 0.008483887, 0.045318604, 0.059173584, 0.0047950745, 0.026504517, 0.0040397644, -0.06549072, -0.08453369, 0.0287323, -0.05871582, -0.02444458, -0.026168823, 0.022354126, 0.0134887695, -0.009544373, -0.034332275, 0.0793457, -0.012779236, -0.007282257, -0.0071258545, -0.0181427, -0.020950317, 0.0028533936, -0.00023031235, -0.019012451, -0.009384155, 0.03286743, -0.010551453, 0.07080078, 0.0050582886, 0.017684937, 0.020858765, 0.0027313232, -0.0178833, -0.021102905, 0.043151855, -0.047454834, 0.028564453, -7.2181225e-05, -0.064941406, -0.07128906, -0.016723633, 0.013587952, 0.058898926, 0.042114258, -0.0098724365, -0.037200928, -0.090270996, -0.052459717, -0.016342163, 0.061920166, 0.029953003, -0.005531311, -0.0020923615, 0.025375366, -0.019439697, 0.033447266, 0.028778076, -0.026657104, -0.048980713, -0.0075798035, 0.02670288, -0.09246826, 0.03741455, 0.0112838745, -0.006336212, -0.07696533, 0.015411377, 0.04135132, -0.02960205, 0.0010824203, -0.011627197, -0.008598328, 0.020080566, -0.03237915, -0.0317688, -0.02760315, -0.001285553, 0.04269409, -0.0113220215, 0.035827637, -0.025680542, 0.0044021606, -0.023635864, 0.0016851425, 0.009468079, 0.011474609, 0.0025806427, -0.018356323, -0.012832642, 0.037719727, 0.0024089813, -0.089660645, -0.047943115, 0.030075073, -0.0059776306, -0.012054443, 0.021347046, 0.013824463, 0.012664795, 0.020690918, 0.028625488, -0.0037765503, 0.016540527, 0.029571533, -2.9981136e-05, 0.005027771]}, "B07FSJ3FNJ": {"id": "B07FSJ3FNJ", "original": "Brand: HERSENT\nName: 20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches\nDescription:
      Product Features:
      Size: 12.5 x 12.5 x 24 inches.
      Material: Heavy Duty Polyester UV coated nano environmental protection materials.
      Durable, scratch resistant polyester with UV protection all year round.
      Easy to Clean: Low Circle Machine Wash & Handwash.
      Upgrade Your Patio or Garden D\u00e9cor.
      SHIPMENT TIME

      1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
      2.The normal arrival time of Dispatched from Seller is between 10-15 days
      3.Holiday Season Peak time maybe longer than normal delivery.\nFeatures: This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nConvenient side velcro and magic tape allows for easy set up.\nEasily clean this 20lb propane tank with damp duster or by hosing with clean water.\nPERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb.\n100% RISK FREE BUY: A necessary great father\u2019s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!\n", "metadata": {"Name": "20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches", "Brand": "HERSENT", "Description": "
      Product Features:
      Size: 12.5 x 12.5 x 24 inches.
      Material: Heavy Duty Polyester UV coated nano environmental protection materials.
      Durable, scratch resistant polyester with UV protection all year round.
      Easy to Clean: Low Circle Machine Wash & Handwash.
      Upgrade Your Patio or Garden D\u00e9cor.
      SHIPMENT TIME

      1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
      2.The normal arrival time of Dispatched from Seller is between 10-15 days
      3.Holiday Season Peak time maybe longer than normal delivery.", "Features": "This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nConvenient side velcro and magic tape allows for easy set up.\nEasily clean this 20lb propane tank with damp duster or by hosing with clean water.\nPERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb.\n100% RISK FREE BUY: A necessary great father\u2019s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0072021484, 0.00894165, -0.01663208, -0.058532715, -0.00712204, 0.010955811, -0.048217773, 0.019622803, -0.061920166, -0.038635254, -0.015975952, 0.008590698, -0.064697266, -0.040130615, 0.060455322, -0.07165527, 0.02458191, -0.03048706, -0.008110046, -0.039031982, -0.029647827, -0.035217285, 0.050567627, 0.06756592, 0.030059814, -0.06506348, 0.051971436, 0.007293701, 0.021774292, -0.020446777, 0.027175903, 0.010475159, 0.048583984, -0.014389038, 0.010650635, 0.038024902, 0.049804688, -0.03186035, 0.0017175674, 0.01474762, -0.019561768, 0.010772705, 0.04446411, -0.04446411, 0.011177063, -0.022064209, 0.00289917, -0.042297363, 0.013618469, 0.03778076, -0.015731812, 0.024032593, -0.015823364, 0.0042877197, 0.0026340485, 0.009056091, 0.01953125, -0.03274536, 0.00010663271, -0.008766174, 0.00038409233, 0.033721924, 0.022140503, 0.019760132, -0.009437561, 0.013420105, 0.04574585, -0.01033783, -0.01474762, -0.007888794, 0.008682251, -0.009315491, 0.03475952, -0.010253906, -0.05783081, -0.0047073364, -0.0037002563, 0.0017051697, 0.027770996, -0.031036377, -0.027801514, -0.034423828, 0.061401367, -0.010238647, -0.021377563, -0.0016231537, -0.0184021, 0.00025749207, -0.007003784, 0.0016736984, -0.014961243, 0.008926392, 0.027770996, 0.008529663, -0.03869629, 0.006855011, -0.031051636, -0.043548584, 0.025375366, 0.0064201355, 0.019836426, -0.034942627, 0.032318115, 0.0055770874, -0.0008392334, 0.020736694, -0.008224487, 0.0008735657, 0.032348633, 0.016174316, -0.024795532, 0.044799805, -0.009712219, -0.03164673, -0.0032157898, 0.045318604, -0.025939941, 0.03189087, 0.014831543, 0.02532959, -0.031219482, -0.03125, -0.03845215, 0.002943039, 0.02558899, -0.0037899017, -0.024047852, 0.06945801, -0.037963867, 0.05682373, -0.033325195, -0.01737976, 0.025360107, 0.03845215, 0.019058228, -0.03012085, 0.04031372, -0.020202637, 0.0037708282, -0.0048294067, -0.050323486, 0.0068740845, 0.05255127, -0.043640137, -0.043548584, 0.037841797, 0.010101318, -0.0073509216, -0.0066566467, -0.030914307, -0.044891357, -0.04083252, 0.0463562, -0.013519287, -0.04928589, -0.007648468, -0.012077332, -0.018493652, -0.04776001, -0.051818848, -0.034973145, -0.009185791, 0.006465912, 0.029678345, 0.016601562, 0.03237915, 0.038116455, 0.0013837814, 0.017318726, 0.05456543, -0.012832642, 0.027313232, 0.031402588, 0.029693604, -5.7935715e-05, -0.0023231506, -0.02027893, 0.08294678, 0.08544922, -0.11859131, -0.06225586, -0.054260254, 0.15686035, -0.026733398, 0.028045654, -0.06384277, 0.015579224, -0.05859375, -0.002023697, 0.0017938614, 0.012176514, 0.040405273, 0.018249512, -0.045684814, -0.0015439987, 0.007835388, -0.014427185, 0.0209198, -0.012306213, -0.0035858154, -0.004234314, 0.012916565, 0.0038986206, 0.0038585663, 0.032836914, -0.024353027, 0.022491455, 0.0032081604, -0.0046157837, 0.0010356903, 0.01348114, -0.0073661804, -0.004852295, -0.016311646, -0.00026464462, 0.066223145, 0.0010166168, 0.018707275, -0.029434204, -0.019638062, 0.012840271, -0.037109375, 0.019363403, 0.07434082, -0.03265381, -0.002029419, -0.018096924, 0.0035152435, -0.03213501, -0.0047798157, 0.06762695, 0.024978638, 0.08441162, 0.05303955, -0.015113831, 0.025634766, 0.030685425, -0.052734375, -0.023010254, 0.038482666, 0.027740479, -0.037841797, -0.0002875328, 0.040405273, 0.00071287155, -0.042297363, 0.004901886, 0.021606445, -0.010658264, 0.018600464, 0.068725586, -0.0020389557, 0.01864624, 0.007133484, -0.0046539307, 0.02720642, -0.038879395, 0.009941101, -0.007156372, 0.034851074, -0.026870728, 0.042999268, 0.057495117, -0.008644104, -0.020019531, 0.011474609, 0.062164307, 0.049041748, 0.022720337, -0.02708435, -0.021865845, 0.02960205, 0.0079956055, 0.034973145, -0.059783936, 0.011131287, 0.005870819, 0.0022506714, -0.016098022, 0.0006041527, 0.0023860931, -0.0038909912, -0.020233154, 0.0037155151, 0.05935669, 0.014091492, -0.0030174255, 0.0064468384, -0.025131226, 0.0154953, 0.052490234, 0.005004883, 0.016998291, -0.049224854, 0.05493164, -0.007965088, 0.027435303, -0.036346436, 0.0496521, -0.028198242, -0.0010442734, 0.05999756, -0.022140503, 0.027130127, -0.006477356, 0.009544373, -0.021743774, 0.032684326, 0.0132751465, -0.025741577, -0.034088135, -0.003036499, 0.0026683807, 0.005996704, 0.017623901, 0.016647339, -0.00522995, 0.038970947, 0.0541687, 0.0637207, 0.029510498, 0.028717041, -0.027664185, 0.0084991455, 0.018096924, -0.017349243, -0.015350342, -0.018707275, -0.030212402, -0.022094727, 0.016448975, -0.04360962, 0.001253128, 0.019638062, 0.0012521744, -0.010147095, 0.005542755, 0.08380127, 0.014839172, -0.059326172, 0.0004119873, -0.0025119781, -0.019378662, 0.03302002, -0.03768921, -0.023849487, 0.028747559, 0.0056037903, -0.017791748, -0.0107421875, 0.029968262, -0.025634766, -0.019607544, -0.045440674, -0.029525757, 0.0395813, 0.0059776306, -0.053588867, -0.0050964355, -0.07775879, -0.009773254, -0.034820557, -0.06402588, -0.03427124, 0.074523926, 8.08835e-05, -0.052825928, -0.038879395, 0.006416321, 0.018966675, 0.008811951, -0.018539429, -0.060943604, -0.01876831, -0.010978699, 0.0019760132, -0.015670776, -0.053985596, 0.02709961, -0.014472961, -0.018630981, 0.023239136, -0.025466919, 0.04055786, -0.021514893, 0.045288086, 0.078430176, 0.032409668, 0.010566711, -0.040161133, 0.01940918, 0.06958008, 0.027130127, -0.012359619, 0.016860962, -0.0057373047, -0.021957397, 0.026412964, -0.05444336, -0.0019817352, -0.053375244, -0.001285553, 0.015991211, -0.033081055, -0.014144897, -0.054656982, -0.059936523, -0.034332275, 0.042053223, 0.05355835, -0.024459839, 0.008926392, -0.012306213, 0.0019035339, -0.032318115, 0.035247803, -0.032928467, -0.0015935898, -0.018447876, 0.021484375, 0.02330017, -0.030212402, 0.016342163, 0.061828613, -0.02746582, 0.009407043, -0.010574341, 0.0012578964, -0.005554199, 0.02684021, -0.02243042, 0.00056791306, -0.03060913, -0.012084961, -0.025390625, 0.006542206, 0.012306213, -0.00970459, 0.032226562, -0.017150879, -0.015823364, -0.038970947, 0.0027923584, 0.022277832, -0.029724121, 0.018127441, -0.037261963, 0.01058197, -0.013015747, 0.022201538, -0.009963989, 0.025985718, 0.012313843, 0.0063552856, -0.026611328, -0.02192688, -0.04486084, 0.0262146, -0.024841309, -0.007575989, -0.012184143, -0.021118164, 0.036102295, -0.02734375, -0.005607605, -0.04800415, 0.05923462, 0.0087890625, 0.013175964, -0.010757446, -0.010513306, 0.034179688, 0.0060272217, -0.013832092, 0.008087158, 0.034057617, -0.0060653687, -0.030090332, 0.025878906, 0.016494751, -0.08074951, 0.023773193, -0.07525635, 0.055511475, 0.02532959, -0.013214111, 0.08917236, 0.059692383, -0.023223877, 0.017807007, 0.015571594, 0.018234253, 0.007068634, 0.030181885, -0.025527954, -0.018081665, -0.0037822723, -0.048614502, 0.009742737, -0.007820129, 0.01928711, -0.0206604, 0.020843506, -0.018951416, -0.013748169, 0.010925293, 0.020767212, -0.011253357, -0.0007376671, -0.01474762, -0.0079574585, -0.043426514, 0.027557373, 0.014915466, -0.0030651093, 0.03250122, 0.0025997162, 0.013320923, 0.015731812, -0.021011353, -0.022277832, -0.023284912, 0.0001180172, 0.058166504, 0.0047454834, -0.013595581, -0.027923584, 0.018188477, -0.027496338, 0.0035896301, -0.0011253357, 0.023971558, -0.023361206, -0.025726318, 0.04837036, -0.007419586, -0.0056533813, 0.015853882, -0.05718994, -0.10668945, 0.009178162, 0.04345703, 0.006416321, -0.049957275, -0.031051636, 0.003967285, -0.055358887, 0.028564453, -0.023544312, 0.0016012192, -0.004924774, -0.0038661957, -0.057647705, -0.027389526, -0.037231445, 0.049926758, -0.05078125, 0.031555176, 0.017105103, -0.0007042885, -0.0079422, 0.05606079, -0.042877197, -0.03479004, 0.009628296, 0.016036987, -0.015960693, -0.033355713, 0.044769287, -0.053955078, 0.008522034, -0.0317688, 0.0184021, -0.0066986084, 0.011245728, 0.0003619194, -0.0012197495, 0.0073242188, 0.015213013, 0.02520752, -0.024490356, 0.02168274, 0.0009918213, 0.011642456, -0.06604004, 0.0037994385, 0.008300781, -0.07055664, -0.058441162, -0.019561768, 0.08270264, 0.020736694, -0.0118255615, -0.011451721, 0.019165039, 0.016998291, 0.010063171, -0.049041748, -0.017028809, 0.0023422241, -0.031341553, -0.01586914, -0.010940552, -0.024307251, 0.10797119, -0.015045166, 0.009490967, -0.04699707, 0.014762878, 0.021835327, -0.022521973, 0.008644104, -0.017852783, -0.0007982254, -0.008415222, -0.025039673, -0.074279785, 0.053222656, 0.04083252, 0.01928711, 0.0149383545, -0.025680542, -0.0012779236, -0.02482605, -0.021484375, -0.062286377, 0.053009033, 0.0110321045, -0.018951416, -0.010597229, -0.018157959, -0.0044403076, -0.047668457, -0.058898926, -0.030792236, 0.095703125, -0.03265381, -0.020965576, -0.0335083, -0.0284729, 0.030090332, -0.009475708, -0.024353027, -0.027175903, -0.01776123, -0.03390503, -0.014808655, 0.030014038, -0.02734375, -0.029434204, 0.027175903, 0.019989014, -0.034698486, 0.046081543, 0.02255249, 0.034301758, -0.0124053955, 0.025985718, -0.022201538, -0.009292603, -0.0023937225, 0.028518677, 0.016571045, -0.004966736, 0.028915405, -0.014678955, -0.030807495, 0.0038871765, -0.03488159, 0.048431396, -0.015853882, -0.036621094, 0.013214111, 0.012619019, 0.022064209, -0.066223145, 0.043182373, -0.004753113, -0.034973145, -0.04135132, 0.00831604, -0.029556274, -0.024459839, -0.01890564, -0.0078125, 0.03152466, -0.03137207, 0.0066947937, 0.0074501038, 0.050323486, -0.033081055, 0.021469116, 0.024658203, 0.028564453, -0.07739258, 0.0206604, -0.031829834, 0.032318115, -0.03466797, -0.018661499, 0.013824463, 0.023361206, -0.0046195984, -0.013000488, -0.009979248, -0.03186035, -0.04159546, -0.0491333, -0.004459381, 0.013954163, -0.050354004, 0.003917694, -0.0014266968, 0.011627197, -0.045013428, -0.0006971359, -0.011672974, -0.0033740997, -0.020950317, 0.040283203, -0.054840088, -0.04711914, -0.024490356, -0.0068206787, 0.016235352, -0.038513184, -0.059020996, -0.05508423, 0.0038337708, 0.017547607, 0.0007548332, 0.030700684, 0.030334473, -0.02784729, -0.012298584, -0.043884277, 0.042236328, -0.007194519, -0.02406311, 0.06878662, 0.011543274, 0.0066604614, 0.0184021, -0.012191772, -0.02709961, 0.004875183, 0.010375977, -0.05618286, -0.023422241, -0.009178162, 0.02116394, -0.035736084, -0.005130768, -0.013786316, 0.036468506, -0.010368347, 0.015426636, -0.041412354, -0.008659363, -0.015571594, -0.03479004, 0.015930176, -0.047607422, 0.0025196075, -0.008728027, -0.0017299652, -0.035888672, -0.048797607, -0.032409668, 0.015731812, 0.006641388, 0.021957397, -0.012283325, -0.021224976, -0.01008606, -0.010879517, 0.017868042, -0.053619385, -0.0076789856, 0.030853271, 0.025497437, 0.023895264, -0.03439331, -0.022598267, 0.015823364, -0.028320312, 0.007610321, -0.0042152405, -0.034820557, -0.03353882, 0.034057617, 0.048339844, 0.015365601, -0.02923584, 0.030578613, -0.015457153, -0.06112671, -0.012687683, -0.008995056, -0.028579712, 0.03286743, -0.046203613, 0.014152527, -0.0070762634, -0.0058898926, 0.004196167, 0.0006737709, 0.02848816, -0.015853882, 0.020263672, 0.011856079, 0.0051460266, 0.012748718, -0.011146545, 0.008476257, 0.0022583008, 0.024841309, 0.018417358, -0.039611816, -0.038146973, 0.034240723, 0.026016235, -0.033050537, 0.0423584, 0.0011739731, -0.009460449, 0.0073013306, -0.00365448, 0.009429932, 0.035614014, 0.005672455, 0.010139465, -0.048797607, -0.011001587, -0.0135650635, 0.022827148, 0.019836426, 0.070495605, -0.008598328, 0.025604248, -0.005832672, 0.00036525726, -0.018157959, -0.039764404, 0.07293701, -0.020751953, -0.03161621, -0.008872986, -0.012825012, -0.003955841, 0.030731201, -0.004550934, 0.00018489361, -0.02406311, 0.023880005, 0.015655518, -0.0057640076, -0.034057617, -0.013679504, 0.029541016, 0.0068893433, -0.004009247, -0.005405426, -0.010681152, 0.053588867, 0.009529114, -0.033111572, 0.034362793, -0.08459473, 0.031799316, 0.028686523, 0.02897644, -0.082214355, -0.017562866, 0.0008382797, -0.031066895, 0.018005371, 0.039398193, 0.022247314, 0.023757935, -0.006866455, 0.000975132, 0.009284973, -0.028060913, 0.011390686, -0.005241394, 0.0026836395, -0.0057525635, -0.009178162, -0.014221191, -0.020477295, 0.0048065186, 0.017944336, 0.0075263977, -0.0036087036, 0.0071144104, 0.002922058, -7.092953e-05, -0.012016296, 0.0023174286, -0.0010232925, -0.012237549, 0.01209259, -0.017578125, 0.03564453, -0.056030273, -0.05911255, -0.041809082, -0.056365967, -0.049438477, 0.08001709, -0.025619507, -0.02734375, -0.010864258, 0.0055389404, -0.014152527, -0.03933716, -0.023132324, 0.010917664, 0.027038574, -0.020828247, 0.04925537, -0.031402588, -0.026397705, -0.03567505, 0.0023765564, -0.035888672, -0.010925293, -0.03161621, 0.008079529, 0.021469116, -0.0020694733, 0.013923645, 0.05178833, 0.024749756, -0.006664276, 0.021636963, -0.03289795, -0.04397583, 0.020751953, 0.015205383, -0.03010559, 0.015731812, 0.053863525, 0.0067481995, -0.00598526, -0.005897522, 0.009002686, -0.04473877, 0.030471802, 0.0069274902, -0.013420105, 0.001329422, -0.011108398, 0.024765015, 0.023208618, -0.021469116, 0.008216858, -0.004180908, -0.014633179, 0.0071868896, -0.0029907227, 0.011306763, -0.012298584, -0.029220581, -0.014595032, -0.018051147, 0.008308411, 0.023147583, -0.05203247, -0.010864258, 0.02243042, -0.007419586, -0.007160187, 0.024398804, 0.050933838, -0.0063056946, 0.011634827, -0.0030651093, -0.021514893, 0.007709503, 0.010360718, -0.0024604797, -0.05621338, -0.014732361, 0.035461426, -0.018569946, -0.010681152, -0.014755249, 0.022949219, -0.015083313, -0.02420044, -0.06732178, -0.047912598, 0.022003174, 0.039978027, -0.02532959, -0.017654419, -0.00082302094, 0.03012085, 0.007484436, 0.014282227, -0.0071907043, 0.0071258545, -0.005710602, 0.021270752, -0.0005803108, 0.06665039, -0.01789856, -0.1038208, -0.04623413, 0.011779785, 0.007762909, -0.022491455, 0.052124023, -0.031402588, 0.010574341, 0.029556274, -0.011268616, -0.032684326, 0.046936035, 0.06384277, 0.011688232, 0.035949707]}, "B00NO1O6ZC": {"id": "B00NO1O6ZC", "original": "Brand: GASONE\nName: Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks\nDescription: \nFeatures: \u2713 User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance\n\u2713 READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection)\n\u2713 MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n", "metadata": {"Name": "Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks", "Brand": "GASONE", "Description": "", "Features": "\u2713 User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance\n\u2713 READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection)\n\u2713 MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008514404, -0.03967285, -0.01158905, -0.022415161, -0.04937744, 0.010856628, -0.02532959, 0.009422302, -0.012130737, 0.0012979507, 0.025100708, 0.00116539, 0.006866455, -0.060028076, 0.032409668, -0.007423401, 0.020126343, -0.008361816, -0.0035514832, -0.02633667, 0.002620697, -0.017654419, -0.0002770424, 0.08618164, 0.009887695, -0.0004389286, 0.055541992, -0.0031719208, 0.021408081, 0.0025806427, 0.025466919, -0.027374268, 0.034301758, 0.010185242, -0.055786133, -0.064575195, -0.0368042, -0.00793457, -0.057128906, 0.030975342, -0.006225586, 0.010391235, -0.005870819, 0.03744507, -0.029403687, -0.039733887, -0.0076179504, -0.042144775, 0.028518677, 0.014091492, 0.012763977, -0.007858276, 0.008613586, -0.025024414, -0.02708435, -0.016540527, -0.013954163, -0.008392334, 0.013198853, 0.007019043, 0.00868988, 0.0041542053, 0.0109939575, 0.0027561188, -0.027420044, 0.025939941, 0.04937744, -0.017456055, 5.6624413e-06, -0.034088135, -0.013702393, 0.0061035156, 0.012268066, -0.0073547363, -0.07684326, 0.018981934, 0.028030396, -0.0057754517, 0.018463135, -0.0309906, 0.0390625, -0.027770996, 0.05709839, 0.032836914, -0.0058059692, 0.026763916, -0.000767231, -0.027618408, -0.03036499, -0.0053863525, -0.013755798, 0.0039100647, -0.036621094, 0.011940002, -0.019058228, -0.007419586, -0.003929138, -0.0703125, 0.041259766, 0.015701294, 0.055786133, -0.0713501, 0.083862305, 0.012687683, 0.0007071495, 0.039764404, 0.011405945, 0.035949707, 0.033325195, -0.010238647, -0.014694214, 0.03552246, 0.0011405945, -0.025299072, -0.03387451, 0.039276123, 0.022445679, -0.048034668, 0.0067100525, -0.0513916, 0.035247803, 0.03366089, 0.051483154, -0.074157715, -0.007160187, -0.017211914, -0.058380127, -0.04257202, -0.042755127, 0.03765869, -0.01828003, -0.01586914, 0.034332275, 0.0715332, 0.021087646, -0.014427185, 0.048339844, 0.004638672, 0.0340271, -0.023376465, 0.025024414, -0.027038574, -0.028305054, 0.049804688, 0.0020809174, 0.016906738, 0.02394104, 0.009185791, 0.011955261, -0.03616333, -0.02897644, 0.024017334, 0.03668213, -0.01084137, -0.025390625, -0.026550293, -0.007671356, -0.022262573, 0.016799927, -0.031463623, -0.03289795, -0.023223877, -0.013679504, 0.015914917, -0.0019226074, 0.036346436, 0.022216797, 0.019943237, 0.010597229, 0.07183838, -0.06542969, 0.056762695, 0.041992188, 0.011146545, -0.021453857, -0.013938904, -0.052703857, 0.06842041, 0.0597229, -0.10247803, -0.037353516, -0.048553467, 0.11016846, -0.020935059, 0.042297363, -0.012611389, 0.0015192032, -0.066833496, -0.011222839, -0.004421234, -0.020370483, 0.07385254, 0.007083893, -0.058258057, -0.006843567, 0.022994995, -0.011817932, 0.018508911, -0.011070251, 0.008239746, -0.074157715, 0.010612488, 0.018066406, 0.021347046, 0.051757812, -0.010696411, 0.012641907, 0.022628784, 0.030334473, 0.01789856, -0.006855011, 0.0057868958, 0.014381409, -0.05532837, -0.03338623, 0.017089844, -0.0063056946, 0.013046265, 0.009506226, -0.040985107, 0.04949951, -0.03552246, 0.035888672, 0.0725708, -0.0044021606, -0.0009756088, -0.016311646, 0.0013246536, -0.0022411346, 0.0040016174, -0.0006122589, 0.016204834, 0.06121826, 0.05102539, -0.016616821, 0.032226562, 0.08734131, 0.019836426, -0.010063171, -0.017501831, 0.01449585, -0.05102539, -0.04800415, -0.010055542, -0.023117065, -0.068359375, -0.01727295, 0.015022278, -0.034210205, -0.009254456, 0.06390381, 0.015174866, 0.0113220215, 0.00819397, -0.009605408, 0.012702942, -0.01574707, 0.03857422, -0.032104492, 0.010345459, -0.013648987, 0.024032593, 0.043426514, -0.021896362, 0.019821167, 0.03262329, 0.037750244, 0.039001465, -0.0050201416, 0.02583313, 0.0041007996, -0.01953125, -0.0062332153, -0.02684021, -0.05331421, -0.028533936, -0.034179688, 0.060546875, -0.013648987, -0.03591919, -0.0118255615, -0.023635864, 0.016296387, 0.0017566681, 0.027557373, -0.0056037903, 0.039733887, -0.0011281967, 0.019851685, -0.016036987, 0.023864746, -0.02784729, -0.008018494, 4.0113926e-05, 0.0023727417, -0.045776367, 0.01878357, -0.019500732, 0.021713257, -0.036254883, 0.030899048, 0.054718018, -0.054626465, 0.033843994, 0.004787445, -0.005832672, 0.012268066, 0.026870728, 0.011703491, -0.022583008, -0.0009403229, 0.01373291, 0.024551392, -0.016616821, 0.036865234, 0.022781372, -0.0071792603, 0.025985718, 0.020446777, 0.054229736, -0.006000519, 0.0010194778, 0.011436462, -0.027496338, 0.023849487, -0.025161743, -0.036132812, 0.003446579, -0.037200928, 0.029663086, 0.015052795, 0.003124237, -0.005207062, -0.003753662, 0.0020961761, 0.014312744, -0.0047340393, 0.07562256, -0.0042266846, -0.06951904, -0.019851685, -0.042785645, -0.010681152, 0.023254395, -0.020385742, -0.05166626, 0.047027588, 0.0051994324, -0.036834717, -0.001619339, 0.0309906, -0.033294678, -0.0059928894, -0.019683838, 0.028915405, -0.0023708344, -0.015388489, -0.014007568, 0.019561768, -0.05758667, -0.017120361, -0.019943237, -0.062194824, -0.055541992, 0.06976318, -0.004924774, -0.057434082, -0.02267456, -0.014503479, 0.022354126, 0.009643555, -0.0012130737, -0.076660156, -0.01864624, -0.036254883, 0.005138397, 0.028152466, -2.938509e-05, 0.01524353, 0.026138306, 0.057556152, 0.05090332, -0.019989014, 0.0317688, 0.0015096664, 0.04107666, 0.059570312, 0.021255493, -0.0054016113, -0.05429077, -0.0149383545, 0.038360596, -0.013969421, -0.006629944, 0.02722168, -0.017486572, -0.012931824, 0.03375244, -0.07141113, -0.008392334, -0.028686523, -0.0029411316, -0.031143188, 0.006061554, -0.01612854, -0.040649414, -0.0049438477, -0.050109863, 0.014701843, 0.018981934, -0.014625549, 0.01727295, -0.028030396, 0.02130127, -0.0345459, -0.008377075, -0.026672363, 0.0021266937, -0.058166504, 0.029541016, 0.059906006, -0.07006836, 0.053527832, 0.055999756, -0.054534912, 0.025466919, -0.0040245056, 0.04272461, -0.0413208, 0.006641388, 0.003917694, -0.03390503, -0.04510498, 0.012413025, 0.0042800903, 0.06591797, 0.02909851, -0.020950317, 0.033996582, -0.02142334, -0.062561035, -0.029785156, -0.051086426, -0.009941101, -0.01638794, -0.03250122, -0.030563354, -0.07080078, 0.009056091, -0.067993164, 0.023406982, 0.0048332214, 0.024658203, 0.0001938343, 0.0010681152, 0.0519104, -0.0023956299, 0.03479004, -0.027816772, -0.01927185, -0.008354187, -0.012741089, 0.012496948, -0.022827148, -0.023910522, -0.0066986084, 0.022415161, 0.008361816, -0.010421753, -0.015472412, 0.0019874573, 0.028045654, -0.009811401, -0.018859863, -0.00217247, 0.02557373, 0.018707275, -0.025390625, 0.05117798, -0.00434494, -0.06109619, 0.029067993, -0.031707764, 0.017623901, -0.0028247833, -0.0025348663, 0.03552246, 0.016464233, -0.0019798279, 0.022094727, 0.06329346, -0.0064964294, 0.014801025, 0.02998352, -0.01108551, -0.034729004, -0.0036964417, 0.022201538, -0.0035743713, -0.03010559, -0.008552551, 0.014961243, 0.02217102, -0.007762909, -0.044647217, 0.007133484, 0.014572144, -0.0073623657, 0.002632141, -0.05645752, 0.009796143, -0.025970459, -0.008659363, 0.029174805, -0.022705078, -0.0039100647, 0.011154175, 0.03173828, -0.02458191, -0.024856567, 0.0008430481, 0.009239197, -0.0095825195, 0.017364502, 0.024810791, 0.00021338463, -0.029937744, 0.00248909, -0.0368042, 0.019958496, 0.007904053, 0.038024902, 0.016921997, -0.024810791, 0.013122559, -0.020996094, -0.008842468, 0.052764893, 0.0051879883, -0.08105469, -0.014801025, 0.008842468, -0.01285553, -0.04916382, -0.008888245, 0.016571045, 0.0069770813, 0.04611206, -0.038024902, 0.027130127, 0.0034503937, -0.0038986206, 0.017791748, -0.0069389343, -0.019973755, 0.030410767, -0.014183044, -0.027114868, -0.024383545, 0.060272217, -0.007358551, 0.024642944, -0.039367676, -0.0020427704, -0.07373047, 0.002620697, 0.019989014, 0.010154724, -0.024215698, -0.043395996, -0.013008118, -0.006164551, 0.0770874, 0.016021729, 0.018859863, 0.001868248, -0.016540527, 0.016708374, 0.043395996, 0.07348633, 0.0059928894, 0.014877319, -0.043395996, -0.0024414062, -0.1015625, 0.025970459, 0.0463562, -0.04034424, -0.07556152, -0.002664566, 0.0814209, 0.02407837, 0.028427124, 0.024246216, 0.025390625, 0.00018811226, -0.00308609, -0.13330078, -0.05645752, -0.014472961, -0.014205933, 0.008522034, 0.0072364807, -0.013534546, 0.016021729, 0.05682373, 0.0016059875, 0.015617371, -0.0016527176, 0.01902771, -0.037750244, 6.765127e-05, -0.022094727, -0.0035419464, -0.021118164, 0.015014648, -0.02166748, 0.0010442734, -0.0056991577, 0.0059394836, 0.0033607483, -0.023849487, 0.0063285828, -0.017959595, -0.032806396, 0.015945435, 0.018676758, -0.050048828, -0.049102783, 0.04815674, -0.03466797, 0.013656616, 0.0063323975, -0.0077323914, 0.006626129, -0.016433716, -0.003917694, -0.036987305, -0.015182495, 0.02192688, 0.018554688, -0.007774353, -0.06970215, 0.03375244, 0.012954712, 0.0056610107, 0.006378174, -0.005607605, -0.003047943, -0.019226074, -0.022445679, 0.00071144104, -0.023742676, 0.006046295, 0.03366089, -0.023452759, 0.010414124, 0.003419876, 0.0069122314, -0.024749756, -0.017593384, 0.021774292, -0.0044288635, -0.02166748, 0.07897949, -0.0033092499, -0.01247406, 0.034332275, -0.025024414, 0.07922363, -0.006313324, 0.015304565, -0.034088135, 0.009223938, 0.014801025, -0.059539795, 0.06762695, 0.006526947, -0.020858765, -0.043273926, 0.0071907043, -0.034851074, -0.03036499, 0.021224976, -0.020996094, 0.022354126, -0.04296875, -0.0036087036, 0.00970459, -0.013725281, -0.002111435, 0.009780884, -0.007080078, -0.04055786, -0.027450562, 0.0002360344, -0.0066947937, -0.0030403137, -0.0032539368, -0.0390625, 0.019088745, 0.012771606, -0.035491943, -0.014183044, -0.02645874, 0.007217407, -0.027923584, -0.014816284, -0.009300232, 0.022079468, -0.027435303, -0.027252197, 0.03842163, 0.013038635, -0.028564453, -0.024597168, 0.0027427673, 0.0068626404, -0.012741089, 0.0362854, 0.0071029663, -0.06713867, -0.005393982, 0.064453125, 0.026229858, -0.035980225, -0.01737976, 0.023635864, -0.0059547424, -0.004550934, -0.006793976, -0.00024533272, 0.046691895, -0.038513184, -0.035827637, -0.0031471252, 0.020355225, -0.005306244, -0.004146576, 0.06958008, 0.04510498, 0.012962341, 0.026611328, 0.020812988, -0.029800415, 0.010749817, 0.01586914, -0.06866455, -0.1071167, -0.04458618, -0.060668945, -0.018508911, -0.007381439, -0.008460999, 0.027191162, -0.008682251, 0.012863159, -0.036743164, -0.012275696, -0.011878967, -0.027435303, 0.007419586, -0.003929138, 0.016998291, -0.01234436, 0.02293396, -0.09197998, -0.05404663, -0.004940033, 0.024429321, 0.043151855, 0.051483154, 0.018692017, 0.0017843246, -0.09057617, 0.009307861, -0.0056152344, -0.030349731, -0.01222229, 0.029403687, 0.009605408, 0.05291748, -0.034820557, -0.01751709, -0.023666382, 0.017410278, -0.03491211, 0.04046631, -0.055358887, -0.022201538, -0.029830933, 0.061920166, -0.019607544, -0.015792847, 0.015151978, 0.012367249, -0.009994507, -0.034332275, -0.004196167, -0.023620605, -0.0019168854, -0.027877808, -0.032714844, -0.02142334, -0.0234375, 0.017868042, 0.01828003, -0.020843506, -0.023345947, 0.031219482, -0.0032520294, -0.0072631836, 0.03225708, 0.00010818243, 0.02255249, -0.0067214966, 0.037902832, 0.006706238, -0.016113281, -0.028671265, 0.0040779114, 0.03967285, 0.02420044, -0.010025024, -0.061553955, 0.026626587, 0.023254395, -0.04208374, -0.033691406, 0.023773193, 0.021774292, -0.01550293, -0.0011606216, 0.014503479, -0.00028586388, 0.00024104118, 0.028427124, 0.034973145, -0.006576538, 0.01739502, -0.0031051636, -0.008148193, -0.02067566, -0.034362793, 0.0055618286, -0.035369873, 0.0029468536, 0.016586304, -0.052703857, 0.03845215, 0.009925842, 0.0095825195, 0.0362854, -0.010215759, 0.0048065186, -0.0075149536, -0.020095825, -0.034332275, -0.036895752, -0.02041626, -0.011756897, 0.019805908, 0.03475952, 0.008056641, 0.015960693, -0.016342163, 0.0060043335, 0.010467529, 0.0002168417, 0.0040130615, 0.01663208, -0.036071777, -0.055511475, -0.03857422, -0.013198853, -0.029708862, 0.008651733, 0.023345947, 0.006416321, 0.060943604, -0.00087833405, -0.02067566, 0.032073975, -0.018173218, 0.008224487, -0.030319214, 0.010543823, 0.010719299, -0.021743774, 0.011604309, -0.04348755, -0.039031982, 0.002166748, -0.050201416, -0.0074653625, 0.03552246, -0.0046157837, 0.02557373, -0.003929138, -0.007774353, 0.006996155, -0.024780273, -0.00051546097, 0.008163452, 0.07745361, -0.039794922, -0.021408081, -0.03717041, -0.016479492, -0.02255249, 0.06439209, 0.02130127, 0.0025119781, 0.0112838745, -0.0082473755, -0.015090942, -0.02255249, 0.011833191, 0.020523071, -0.015731812, -0.017501831, 0.01071167, -0.02293396, -0.038909912, -0.014190674, 0.03704834, -0.066589355, -0.046417236, -0.06958008, 0.020141602, -0.0021381378, -0.013908386, 0.032836914, 0.05834961, 0.0050621033, 0.013473511, -0.0079422, -0.05545044, -0.005962372, 0.018737793, 0.0018491745, -0.00092983246, -0.057281494, 0.042388916, 0.021240234, 0.027709961, -0.0011720657, 0.05545044, -0.039611816, 0.050079346, 0.0067367554, -0.024291992, 0.011077881, -0.022399902, 0.037139893, 0.0030002594, -0.028869629, 0.009841919, 0.008255005, 0.0126571655, 0.016281128, 0.008865356, 0.0096206665, -0.045166016, -0.06970215, -0.021408081, -0.022659302, 0.043426514, 0.007709503, -0.01133728, -0.019805908, 0.003686905, -0.004425049, -0.00016701221, 0.024002075, -0.024047852, -0.001206398, 0.012023926, 0.020065308, -0.016357422, -0.00957489, 0.006778717, -0.05722046, -0.012817383, 0.038482666, -0.02960205, -0.009277344, -0.03463745, -0.011581421, -0.015670776, -0.046203613, 0.010253906, -0.04550171, 0.00687027, 0.028427124, 0.014266968, 0.008735657, 0.00029873848, 0.017822266, 0.02545166, -0.03842163, 0.004169464, 0.035003662, -0.0047683716, -0.045684814, 0.042175293, 0.028686523, 0.021255493, 0.00749588, -0.07836914, -0.043823242, 0.034576416, 0.03479004, -0.028747559, 0.049194336, -0.032958984, -0.005340576, 0.030593872, -0.032806396, -0.04425049, 0.02722168, 0.040649414, 0.0036296844, 0.020935059]}, "B08D8S7BK1": {"id": "B08D8S7BK1", "original": "Brand: KILILIUN\nName: KILILIUN 2 Pack 15 inch 1/4\" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4\" Male NPT and QCC1 Connector for Standard 2-Stage Regulator\nDescription:

      Package Included:

      2Pcs x 1/4\" NPT RV Propane Pigtail Hose with Gauge

      1Pc x Thread Seal Tape

      2Pcs x PVC Dust Covers


      Feature:

      Material: Durable 100% solid brass fitting and Stainless steel braided hose

      Inlet connector: QCC1

      Outlet connector: 1/4\" Male NPT


      Convenience:

      You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


      Installation:

      Easy to install and No extra tools needed.


      Display:

      The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


      Kindly Note:

      1/4'' Male NPT(Not 1/4\" male inverted flare). Please check your connector before you order.

      \nFeatures: [Package included] 2 pack 15inch QCC1 1/4\" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4\" inverted flare).\n[Durable Material] 1/4\" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather.\n[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks.\n[Extensive Application] You can connect the RV propane pigtail hose 1/4\" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking.\n[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.\n", "metadata": {"Name": "KILILIUN 2 Pack 15 inch 1/4\" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4\" Male NPT and QCC1 Connector for Standard 2-Stage Regulator", "Brand": "KILILIUN", "Description": "

      Package Included:

      2Pcs x 1/4\" NPT RV Propane Pigtail Hose with Gauge

      1Pc x Thread Seal Tape

      2Pcs x PVC Dust Covers


      Feature:

      Material: Durable 100% solid brass fitting and Stainless steel braided hose

      Inlet connector: QCC1

      Outlet connector: 1/4\" Male NPT


      Convenience:

      You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


      Installation:

      Easy to install and No extra tools needed.


      Display:

      The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


      Kindly Note:

      1/4'' Male NPT(Not 1/4\" male inverted flare). Please check your connector before you order.

      ", "Features": "[Package included] 2 pack 15inch QCC1 1/4\" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4\" inverted flare).\n[Durable Material] 1/4\" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather.\n[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks.\n[Extensive Application] You can connect the RV propane pigtail hose 1/4\" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking.\n[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.011886597, -0.018966675, 0.0017814636, -0.02784729, -0.031188965, 0.008842468, -0.04714966, -0.0019760132, 0.019989014, -0.0043792725, -0.00932312, -0.0015211105, -0.0012779236, -0.035491943, 0.01637268, -0.038482666, 0.013648987, 0.009140015, 0.00093603134, -0.009567261, 0.010169983, -0.017501831, -0.023025513, 0.048095703, -0.007255554, 0.056030273, 0.06842041, -0.014671326, -0.0146865845, -0.019134521, 0.010093689, -0.035858154, 0.026763916, 0.009994507, -0.02848816, -0.03237915, -0.02809143, 0.01008606, -0.014350891, 0.009498596, 0.02357483, -0.010093689, -0.030151367, -0.0016775131, -0.041809082, -0.017623901, 0.0020122528, -0.010871887, -0.00409317, 0.010498047, 0.0014791489, 0.025802612, 0.005996704, -0.010002136, 0.0015001297, 0.01473999, -0.018585205, -0.009284973, 0.008094788, 0.040496826, 0.0024604797, -0.008468628, 0.014183044, -0.031051636, -0.07043457, -0.012138367, 0.027297974, 0.0038776398, 0.014877319, -0.062561035, -0.006591797, 0.051879883, -0.013633728, -0.01713562, -0.03353882, 0.019302368, -0.024093628, -0.025817871, 0.020935059, 0.0015735626, -0.023757935, -0.013473511, -0.009552002, 0.018051147, -0.032562256, 0.00856781, -0.022155762, -0.006500244, -0.01777649, -0.022033691, -0.004283905, 0.009757996, -0.028152466, 0.008705139, -0.01071167, -0.02053833, -0.036193848, -0.06970215, 0.046691895, 0.036987305, 0.008102417, -0.03933716, 0.058258057, 0.0005660057, 0.016174316, 0.018539429, 0.02784729, -0.0018873215, 0.013923645, -0.00029563904, -0.031158447, 0.078430176, -0.020980835, -0.03753662, -0.03564453, 0.00687027, -0.025878906, 0.019134521, 0.027648926, 0.0104904175, -0.00016832352, 0.0044021606, 0.03793335, -0.054718018, -0.009651184, -0.007881165, -0.03286743, -0.02116394, -0.043548584, -0.012107849, -0.0038719177, 0.004711151, 0.032806396, 0.08874512, 0.032836914, 0.0022449493, 0.045715332, 0.030517578, 0.023422241, -0.02204895, 0.022994995, 0.013145447, 0.00089788437, 0.027801514, 0.0262146, 0.05404663, 0.028289795, -0.019302368, -0.0018835068, -0.053009033, 0.0021705627, -0.029403687, 0.012908936, 0.0007853508, -0.018234253, -0.0041542053, -0.043914795, 0.0014753342, 0.031051636, -0.0030384064, -0.02458191, -0.029907227, -0.0013847351, -0.018493652, -0.05621338, 0.049987793, 0.010978699, -0.015342712, 0.018371582, 0.021194458, -0.0018577576, 0.03213501, -0.0020122528, -0.017211914, -0.012748718, -0.0068359375, -0.0637207, 0.08734131, 0.07318115, -0.113220215, -0.048553467, -0.06451416, 0.14624023, -0.03881836, -0.024917603, 0.019897461, -0.010498047, -0.042755127, 0.0050582886, -0.022338867, 0.01701355, 0.05960083, -0.025909424, 0.015388489, -0.004535675, -0.022216797, 0.0008177757, 0.0077552795, -0.016220093, -0.003200531, -0.012138367, 0.029129028, -0.012649536, 0.029724121, 0.058044434, -0.009124756, 0.028457642, -0.009178162, 0.020965576, 0.025054932, 0.007827759, -0.014923096, -0.013542175, 0.011878967, -0.036895752, -0.012573242, -0.02798462, -0.0211792, 0.0012979507, 0.014533997, 0.056365967, -0.0021438599, 0.04345703, 0.027420044, -0.005908966, 0.043182373, -0.007873535, 0.028045654, 0.03793335, 0.036712646, 0.044128418, -0.030273438, 0.02420044, 0.0262146, -0.0340271, 0.035858154, 0.074401855, 0.09259033, -0.03744507, -0.03765869, 0.016220093, -0.03753662, -0.021499634, 0.020858765, 0.0046424866, -0.0619812, -0.010299683, 0.014533997, 0.021469116, 0.027038574, 0.06210327, 0.0019006729, 0.017990112, 0.037322998, 0.011795044, -0.0059165955, -0.024520874, 0.033233643, -0.049804688, 0.013389587, -0.014144897, 0.037750244, 0.046783447, -0.00062036514, 0.08502197, -0.010040283, 0.040496826, 0.01927185, -0.04537964, 0.0032749176, 0.024383545, 0.012901306, 0.015716553, -0.009773254, -0.04071045, -0.023391724, -0.013450623, 0.022735596, 0.00843811, -0.020019531, 0.008644104, -0.002632141, 0.012245178, 0.002325058, 0.06109619, 0.049926758, -0.0009522438, -0.026611328, -0.047454834, -0.013977051, 0.014289856, -0.0028820038, -0.028182983, -0.0011434555, -0.029830933, -0.017456055, 0.022735596, -0.009643555, -8.2850456e-05, -0.008033752, 0.033416748, 0.064819336, -0.020401001, 0.01574707, 0.00484848, 0.004547119, 0.0024528503, 0.009208679, 0.0013980865, -0.0146102905, -0.024032593, 0.050872803, 0.013504028, -0.01322937, 0.028427124, -0.0028362274, -0.009292603, 0.041534424, 0.013580322, 0.06359863, -0.044067383, 0.010757446, -0.007904053, -0.0076828003, 0.03111267, 0.012779236, -0.039978027, 0.01008606, -0.052886963, -0.01322937, 0.0037021637, -0.07421875, 0.011924744, 0.017593384, 0.0018205643, -0.01889038, 0.0055732727, 0.008918762, -0.0077285767, -0.030075073, -0.0011997223, -0.059448242, -0.0087890625, -0.0012569427, -0.07684326, 0.01927185, 0.06781006, 0.0019464493, -0.037200928, 1.6152859e-05, 0.030319214, -0.014205933, 0.017929077, -0.045562744, 0.00945282, 0.016540527, -0.026687622, -0.028549194, 0.024353027, -0.068359375, -0.02458191, -0.008605957, -0.08673096, -0.072753906, 0.077941895, -0.015296936, -0.0703125, -0.039764404, -0.0057029724, 0.00012600422, -0.00081300735, -0.0046577454, 0.020843506, -0.01374054, 0.012290955, -0.0063667297, 0.043762207, -0.008895874, 0.0071258545, 0.010765076, 0.04135132, 0.03741455, -0.013504028, 0.009185791, 0.009567261, 0.024002075, 0.046691895, 0.04498291, 0.011352539, -0.029815674, -0.0029640198, 0.03967285, -0.020812988, -0.016845703, -0.011756897, 0.008926392, -0.018249512, -0.03540039, -0.019348145, -0.00605011, -0.032592773, 0.030563354, 0.0030078888, -0.02166748, 0.017730713, -0.1071167, -0.0050086975, -0.046936035, 0.028152466, 0.08392334, -0.006843567, 0.02041626, -0.02394104, 0.050628662, -0.040863037, 0.012191772, -0.00970459, -0.0039138794, -0.06536865, 0.036193848, 0.07678223, -0.054626465, 0.03967285, 0.049865723, -0.04888916, -0.036895752, 0.012870789, 0.031158447, -0.0597229, 0.070373535, 0.008834839, -0.023925781, -0.045196533, -0.03515625, -0.0035095215, 0.0110321045, 0.0023345947, -0.005306244, -0.0071258545, -0.0044937134, -0.050628662, 0.017242432, 0.017700195, 0.010513306, 0.023406982, -0.011169434, 0.022949219, -0.04837036, -0.0052604675, -0.022720337, 0.011474609, 0.007259369, -0.004043579, 0.014511108, -0.017349243, 0.07897949, 0.0050239563, 0.017425537, 0.013374329, 0.010231018, -0.021865845, -0.009765625, 0.034820557, -0.023330688, 0.0040512085, -0.043273926, 0.03994751, 0.008781433, 0.024429321, -0.011985779, -0.0053367615, 0.042114258, -0.011627197, 0.008422852, 0.018203735, 0.04736328, -0.0022563934, -0.026046753, 0.038391113, 0.033081055, -0.03225708, 0.020568848, -0.1159668, 0.064575195, -0.01625061, 0.0057525635, -0.002325058, 0.02909851, -0.02053833, 0.037994385, 0.04321289, 0.024642944, 0.0008673668, 0.05935669, -0.0040626526, -0.02357483, -0.011146545, -0.030822754, 0.03427124, -0.003704071, -0.0014352798, -0.00248909, 0.0023002625, -0.040527344, -0.032592773, -0.009140015, 0.02305603, -0.03652954, 0.01335144, -0.011390686, -0.00459671, -0.042388916, -0.013923645, -0.0067367554, -0.005077362, -0.002199173, 0.06463623, -0.012023926, 0.030685425, -0.02041626, -0.021224976, -0.030090332, 0.023361206, 0.005760193, 0.030212402, -0.0016355515, 0.0070495605, 0.040863037, -0.059326172, -0.02508545, 0.0058135986, 0.0357666, -0.012268066, -0.03591919, 0.03656006, -0.016448975, -0.006401062, -0.0061912537, -0.050994873, -0.07537842, 0.008987427, 0.012458801, -0.013870239, -0.051452637, 0.03048706, -0.060577393, 0.0143966675, -0.009254456, -0.005039215, -0.008148193, -0.027542114, -0.011566162, -0.03173828, -0.007949829, -0.009048462, 0.03036499, -0.014305115, -0.0098724365, -0.038604736, 0.03048706, -0.005168915, 0.051940918, -0.046447754, -0.0044784546, -0.052490234, 0.010421753, 0.021392822, 0.012550354, 0.02861023, -0.025558472, -0.011657715, -0.0037574768, 0.036956787, -0.019836426, 0.0206604, -0.030685425, -0.013504028, -0.0093688965, 0.0067443848, 0.04425049, -0.0054626465, 0.06591797, 0.0032730103, 0.052093506, -0.036376953, 0.018417358, 0.008560181, -0.0045166016, -0.03186035, -0.017288208, 0.026367188, -0.00087451935, 0.006389618, 0.040985107, 0.013381958, 0.011878967, -0.02810669, -0.121520996, 0.00017011166, -0.0104599, -0.05178833, 0.008865356, -0.006011963, -0.002445221, 0.019088745, 0.073913574, -0.015991211, -0.0044784546, -0.004863739, -0.019638062, 0.015357971, 0.020019531, -0.021606445, 0.027282715, -0.039916992, -0.026611328, -0.043762207, 0.051483154, 0.06512451, -0.01574707, -0.0013074875, 0.007209778, -0.033050537, -0.03161621, -0.0256958, 0.019042969, 0.06225586, 0.051239014, -0.032592773, 0.007904053, 6.121397e-05, -0.0064086914, -0.028320312, -0.053955078, -0.01209259, 0.06713867, -0.0068626404, -0.038848877, -0.034820557, 0.01727295, 0.0234375, 0.0236969, -0.018188477, 0.0029258728, 0.020767212, 0.015579224, 0.00856781, -0.019073486, -0.028640747, 0.025848389, -0.03503418, 0.008834839, 0.016342163, -0.005886078, -0.027877808, 0.018844604, 0.010131836, 0.03024292, 0.010322571, -0.01737976, -0.06903076, -0.016052246, 0.007972717, -0.05847168, 0.011672974, -0.017456055, 0.032928467, 0.04928589, -0.01663208, 0.009971619, 0.025100708, -0.04852295, 0.038482666, 0.009017944, 0.018737793, -0.029052734, 0.08282471, -0.006690979, 0.010856628, -0.054473877, 0.03567505, 0.01197052, 0.034179688, -0.031433105, -0.027008057, 0.017654419, -0.032196045, 0.014892578, -0.0032444, 0.023849487, -0.027069092, 0.0056419373, 0.008308411, -0.018676758, -0.036956787, -0.00459671, -0.01461792, 0.050811768, -0.021652222, -0.035614014, 0.039764404, 0.037506104, -0.05633545, 0.006729126, 0.013145447, 0.001458168, -0.009773254, -0.03543091, 0.031158447, 0.020614624, 0.0032176971, -0.0036735535, -0.0011816025, 0.012748718, -0.009902954, -0.01852417, -0.031402588, -0.010894775, -0.03656006, 0.03479004, -0.023406982, -0.007659912, 0.015098572, 0.032043457, 0.04586792, -0.016296387, -0.083984375, -0.017211914, 0.012611389, 0.023666382, -0.037231445, -0.021942139, 0.05227661, -0.056518555, -0.033325195, -0.029953003, 0.035888672, -0.03201294, 0.012512207, 0.017578125, 0.009307861, 0.011642456, 0.030838013, 0.014305115, -0.019378662, 0.070129395, 0.024154663, -0.023071289, -0.03488159, -0.008834839, -0.03439331, 0.008613586, -0.016738892, -0.04373169, 0.03010559, -0.026687622, -0.010665894, -0.05355835, -0.03677368, -0.007850647, -0.039276123, 0.01525116, -0.0032653809, -0.0070877075, -0.0025119781, -0.009590149, -0.058929443, -0.014930725, 0.04208374, 0.0051002502, -0.0021858215, 0.022994995, 0.009605408, 0.025894165, -0.027511597, 0.021209717, 0.0151901245, -0.05050659, -0.005680084, 0.037261963, -0.0023441315, 0.044128418, -0.049560547, -0.0012083054, -0.015205383, 0.0009050369, -0.01725769, 0.019042969, -0.054138184, -0.029251099, 0.011512756, 0.050201416, 0.020309448, -0.041778564, -0.0031318665, -0.015312195, -0.0053482056, -0.0061798096, -0.025512695, -0.018310547, -0.022598267, -0.02998352, -0.03604126, 0.006652832, -0.018951416, 0.013114929, 0.013442993, -0.0050697327, -0.05593872, 0.06088257, -0.014839172, 0.003791809, 0.05206299, -0.021194458, 0.032592773, -0.024414062, 0.06732178, 0.041229248, -0.05871582, -0.04748535, -0.009147644, 0.011047363, 0.006904602, 0.020599365, 0.01727295, -0.028076172, 0.014129639, -0.004562378, 0.031829834, 0.044311523, -0.012573242, 0.006290436, -0.016799927, 0.017623901, -0.02494812, 0.027404785, 0.049041748, 0.03152466, 0.008895874, 0.05014038, 0.024719238, -0.028671265, -0.004272461, 0.0038986206, 0.017974854, -0.041748047, -0.027450562, 0.0015172958, 0.024261475, 0.055786133, 0.009849548, -0.018630981, 0.010353088, -0.009292603, 0.0126571655, 0.0039482117, 0.041503906, -0.037109375, -0.07867432, -0.039642334, 0.026000977, 0.0050621033, 0.05340576, 0.014656067, 0.04284668, 0.0012140274, 0.021224976, 0.00049352646, -0.01247406, 0.027023315, 0.02470398, -0.034362793, -0.014373779, -0.03781128, -0.027679443, 0.0014009476, 0.0034942627, 0.02935791, -0.03353882, 0.05090332, -0.025924683, 0.020523071, 0.021469116, -0.0112838745, 0.015701294, -0.0064086914, -0.027923584, 0.0211792, 0.019439697, -0.008674622, -0.050201416, 0.018814087, -0.0049743652, -0.006061554, -0.0027561188, 0.0259552, -0.019866943, -0.0064735413, -0.019241333, -0.0065727234, -0.009933472, -0.015411377, 0.016174316, -0.039489746, 0.01965332, -0.03463745, -0.042388916, -0.024642944, -0.009765625, -0.026916504, 0.05606079, 0.020309448, -0.023345947, -0.0124053955, 0.010848999, 0.022979736, -0.054504395, -0.01878357, 0.009231567, 0.010940552, -0.016098022, 0.07092285, -0.02406311, -0.04333496, -0.023788452, 0.015975952, -0.040527344, -0.0009059906, -0.03842163, 0.0010633469, -0.02607727, -0.006454468, 0.03677368, 0.066223145, 0.023880005, 0.010726929, 0.046966553, -0.031982422, -0.029418945, 0.027069092, 0.019989014, -0.012878418, -0.034973145, -0.019424438, 0.009025574, -0.021438599, 0.02041626, 0.027359009, -0.05340576, 0.014762878, -0.005405426, -0.033691406, 0.015129089, -0.024856567, 0.011077881, -0.009414673, -0.055114746, -0.034942627, -0.007434845, 0.027130127, 0.008430481, -0.011703491, 0.0030574799, 0.007129669, -0.0018005371, -0.019973755, -0.002696991, -0.02229309, -0.0009551048, -0.011734009, -0.020599365, 0.029205322, 0.0209198, -0.039245605, 0.03579712, 0.024505615, 0.019866943, 0.018707275, 0.034423828, -0.0051841736, -0.029052734, -0.015411377, -0.030883789, -0.06781006, 0.0075302124, -0.021331787, -0.0049362183, -0.015075684, -0.017028809, -0.008232117, -0.028396606, 0.0066375732, -0.05718994, -0.069885254, 0.052734375, 0.030654907, -0.0018196106, 0.0058174133, 0.022384644, -0.003698349, -0.044769287, -0.0062294006, 0.029876709, -0.024795532, -0.050720215, 0.026657104, 0.029846191, 0.08850098, -0.035125732, -0.039978027, -0.052764893, 0.017654419, 0.002500534, 0.0070877075, 0.070007324, -0.022857666, 0.0065307617, 0.043395996, -0.046905518, -0.01838684, -0.008728027, 0.076416016, 0.0005531311, -0.004787445]}, "B07Q4DMHK9": {"id": "B07Q4DMHK9", "original": "Brand: MR. TORCH\nName: BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY\nDescription: \nFeatures: Max Temperature heat up to 2642\u00b0F (1450\u00b0C), Powerful Supper Swirl Cyclone Flame\nTrigger Start Piezo Ignition, Anti-flaring\nUse standard propane or MAPP or MAP/Pro gas cartridge\nIdeal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers;\nMade in Taiwan, with the highest quality control.\n", "metadata": {"Name": "BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY", "Brand": "MR. TORCH", "Description": "", "Features": "Max Temperature heat up to 2642\u00b0F (1450\u00b0C), Powerful Supper Swirl Cyclone Flame\nTrigger Start Piezo Ignition, Anti-flaring\nUse standard propane or MAPP or MAP/Pro gas cartridge\nIdeal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers;\nMade in Taiwan, with the highest quality control.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.014877319, -0.00088071823, -0.013626099, -0.036010742, -0.013847351, 0.014823914, -0.03161621, -0.006072998, -0.0050621033, 0.026626587, -0.011772156, 0.014961243, 0.039001465, -0.02696228, 0.010925293, -0.011123657, 0.012756348, 0.0041236877, -0.016281128, -0.0039787292, -0.019058228, 0.0027923584, -0.037872314, -0.015556335, 0.016677856, -0.0061683655, -0.029785156, 0.015960693, 0.01776123, 0.015716553, 0.026153564, 0.0018405914, 0.042816162, 0.02960205, -0.048095703, 0.01210022, 0.024414062, -0.017730713, -0.04067993, 0.056121826, 0.014625549, 0.005302429, -0.0881958, 0.025390625, -0.09100342, -0.015426636, -0.01638794, 0.034210205, 0.01348114, 0.009994507, 0.0051612854, -0.01890564, 0.0036792755, -0.0101623535, -0.028945923, -0.019500732, 0.03845215, -0.00907135, 0.004173279, 0.021697998, 0.0003464222, 0.048828125, -0.0037193298, -0.010231018, -0.010108948, 0.022491455, 0.045043945, -0.014259338, 0.058166504, 0.011329651, -0.010574341, 0.032440186, 0.02130127, 0.016998291, -0.06591797, -0.06124878, 0.029937744, -0.045196533, 0.019836426, -0.0036315918, 0.0049934387, -0.011512756, -0.010665894, -0.036224365, 0.046539307, 0.006061554, -0.010650635, -0.015533447, -0.031188965, 0.0012617111, -0.0357666, -0.015533447, 0.0010757446, -0.030136108, -0.025802612, -0.0015172958, -0.040008545, -0.048095703, 0.015594482, 0.020126343, -0.02418518, -0.010513306, 0.009086609, -0.010925293, 0.0124435425, 0.07910156, -0.0077056885, 0.01689148, 0.03845215, -0.008132935, 0.013656616, -0.007827759, 0.012542725, -0.020080566, -0.021759033, 0.029724121, -0.001452446, 0.006011963, 0.005756378, -0.009590149, -0.015388489, 0.0137786865, 0.031280518, -0.03616333, 0.010437012, 0.015670776, -0.023468018, -0.020935059, -0.060028076, 0.030136108, -0.036346436, 0.00642395, 0.072387695, 0.05178833, 0.014595032, -0.024734497, 0.04989624, -0.0016479492, 0.0035114288, -0.022140503, 0.019866943, 0.020614624, -0.0028133392, -0.0032157898, 0.011192322, -0.008369446, 0.0060043335, 0.023239136, 0.011116028, -0.007282257, 0.01965332, -0.0077285767, 0.038391113, -0.0023708344, -0.020187378, -0.002494812, -0.02041626, -0.008216858, -0.014884949, -0.009483337, 0.00042295456, -0.018692017, -0.0149002075, 0.011009216, -0.027435303, 0.029632568, 0.029846191, 0.00092315674, 0.03387451, 0.06237793, 0.018203735, 0.0154953, 0.018707275, 0.019958496, 0.0011835098, -0.021194458, 0.041381836, 0.082336426, 0.02809143, -0.034606934, -0.026382446, -0.043121338, 0.16333008, -0.06719971, -0.023635864, -0.062072754, 0.013267517, -2.69413e-05, 0.04925537, 0.018249512, 0.030319214, -0.00756073, 0.021987915, -0.008277893, -0.031280518, -0.0289917, -0.003276825, 0.018585205, -0.026870728, 0.006126404, 0.050354004, 0.016540527, 0.0032100677, -0.0033073425, 0.018432617, -0.021087646, 0.012245178, -0.012512207, 0.03161621, 0.04510498, -0.020080566, -0.014350891, 0.032348633, -0.07312012, -0.029464722, -0.009269714, -0.037719727, 0.022979736, -0.00060892105, 0.0115737915, 0.010795593, -0.011695862, 0.027023315, 0.017089844, 0.02482605, -0.03475952, -0.0024814606, -0.031555176, 0.020126343, 0.0036010742, -0.011329651, 0.009994507, 0.008926392, 0.022399902, -0.00094509125, 0.028335571, 0.08062744, 0.03564453, -0.002817154, -0.021469116, 0.027526855, -0.016021729, -0.020843506, -0.0039634705, 0.026824951, 0.035369873, 0.029052734, -0.03111267, -0.0362854, 0.038909912, -0.020217896, 0.026290894, 0.014656067, -0.023422241, -0.08306885, 0.07122803, -0.037750244, -0.0574646, -0.0050201416, 0.012145996, 0.032958984, 0.015327454, -0.017959595, 0.014274597, -0.017211914, 0.0038166046, 0.017456055, 0.02633667, 0.0004093647, -0.012748718, 0.0045928955, -0.0046043396, -0.020828247, -0.013267517, 0.05886841, -0.05319214, -0.017333984, 0.014862061, -0.013977051, -0.032562256, -0.001698494, -0.016601562, 0.017547607, 0.007904053, 0.045440674, 0.020721436, 0.017578125, 0.010726929, 0.014839172, 0.0012979507, 0.010803223, 0.009544373, -0.030548096, 0.06100464, -0.027038574, -0.029907227, 0.051513672, -0.018600464, 0.016525269, -0.014465332, 0.017547607, 0.036621094, -0.019607544, 0.008682251, 0.00869751, -0.021697998, -0.014198303, 0.038269043, 0.017669678, -0.045288086, 0.022201538, 0.049560547, 0.03881836, 0.0129470825, 0.048797607, -0.004196167, 0.04675293, 0.05404663, 0.017623901, 0.025375366, -0.016784668, 0.020721436, -0.04220581, 0.034942627, 0.01348114, 0.0061302185, 0.020843506, -0.009178162, -0.036712646, 0.029052734, 0.07720947, 0.046051025, 0.026184082, 0.009941101, 0.010406494, -0.014793396, 0.003162384, 0.05706787, -0.010383606, -0.03225708, -0.011917114, -0.016723633, -0.0014038086, -0.00299263, -0.043121338, -0.008010864, 0.045410156, -0.0009813309, -0.030639648, 0.013626099, 0.017288208, -0.0067481995, 0.020751953, -0.0095825195, 0.045898438, -0.016693115, -0.05670166, 0.0057258606, 0.024520874, -0.049346924, -0.025939941, -0.02192688, -0.05633545, 0.038635254, 0.05935669, -0.0101623535, -0.029815674, 0.014518738, -0.000300169, 0.0032958984, 0.00014936924, 0.01322937, -0.0079956055, -0.021484375, -0.00806427, -0.016586304, 0.08105469, -0.0030078888, -0.03491211, 0.026992798, -0.005973816, 0.0048103333, -0.019638062, -0.034484863, 0.03945923, 0.022964478, -0.006088257, -0.013450623, 0.008018494, 0.016357422, -0.030273438, -0.02911377, -0.004470825, -0.0368042, 0.0021972656, 0.0124053955, -0.0065574646, -0.00198555, 0.0109939575, -0.038269043, -0.1328125, -0.0027942657, 0.008216858, -0.052490234, 0.0073928833, -0.06933594, -0.091796875, -0.05935669, 0.033111572, 0.050994873, -0.04147339, 0.03744507, -0.032836914, 0.032409668, -0.027191162, 0.026931763, 0.008644104, -0.0009202957, -0.018157959, -0.008583069, 0.043701172, -0.07513428, 0.014953613, 0.010284424, -0.052124023, -0.045684814, -0.008934021, 0.031829834, -0.025497437, 0.058258057, -0.02293396, 0.008590698, -0.013511658, -0.0057144165, -0.055511475, 0.02607727, 0.014770508, 0.014793396, 0.0368042, -0.029891968, -0.06317139, -0.048095703, -0.016189575, -0.0014781952, -0.023452759, 0.010108948, -0.046844482, -0.0357666, -0.017532349, -0.048980713, -0.0076446533, 0.011665344, 0.03451538, 0.031982422, 0.00806427, 0.06817627, 0.029769897, 0.055603027, 0.035614014, -0.006664276, -0.001121521, -0.039093018, 0.008033752, 0.034698486, 0.00049734116, -0.018295288, 0.0045394897, -0.0039978027, -0.018692017, 0.0014657974, -0.012138367, 0.037841797, 0.051330566, 0.025527954, -0.03475952, 0.008079529, 0.049072266, 0.0057411194, -0.028884888, -0.04348755, -0.050720215, 0.022659302, -0.050476074, 0.051116943, -0.0018501282, 0.0058517456, 0.048339844, -0.0012197495, -0.03289795, 0.052764893, 0.06451416, -0.002401352, 0.0019550323, 0.022964478, -0.06719971, -0.015174866, 0.011390686, 0.028152466, 0.0059394836, -0.018737793, -0.054748535, -0.0028152466, 0.027313232, -0.02015686, -0.029449463, 0.047302246, 0.0418396, 0.008323669, 0.007247925, -0.030776978, -0.0041160583, -0.054718018, 0.050598145, 0.024139404, -0.014015198, 0.005947113, 0.014122009, -0.007095337, -0.0062561035, 0.0012102127, -0.033416748, -0.01776123, -0.008956909, 0.036590576, 0.0052223206, 0.011802673, -0.049468994, 0.014205933, -0.027633667, 0.012619019, 0.012840271, 0.008087158, 0.008071899, -0.021560669, 0.026168823, 0.02267456, -0.022064209, 0.051757812, -0.004070282, -0.06616211, -0.01234436, 0.053833008, 0.029724121, -0.027740479, 0.010650635, -0.027252197, -0.00705719, 0.034484863, -0.0513916, 0.049865723, -0.0335083, -0.040161133, -0.020355225, -0.040924072, -0.03753662, 0.052825928, 0.0023841858, -0.008377075, -0.012023926, 0.01878357, 0.006591797, 0.0082092285, -0.029434204, 0.016082764, -0.028945923, 0.013946533, -0.009490967, -0.029510498, 0.005340576, 0.009887695, -0.0030174255, 0.01576233, 0.07305908, -0.028747559, 0.017852783, -0.081726074, -0.042510986, -0.016143799, -0.038360596, -0.01033783, -0.03253174, 0.06060791, 0.018875122, 0.0042648315, 0.009628296, -0.03552246, -0.019561768, -0.024871826, -0.04421997, -0.07067871, -0.016357422, 0.014350891, 0.026855469, -4.6789646e-05, -0.010597229, 0.01637268, -0.01637268, -0.09173584, -0.054473877, -0.021362305, -0.01033783, 0.0074882507, -0.0082092285, -0.0105896, 0.010536194, 0.054534912, 0.02267456, -0.0042648315, 0.0041618347, -0.0065612793, 0.016143799, 0.041290283, -0.06201172, 0.0061149597, -0.04800415, -0.026443481, -0.031280518, 0.036743164, -0.029220581, -0.034179688, -0.030212402, 0.010856628, -0.008071899, -0.043151855, 0.01878357, 0.03881836, 0.013877869, -0.001045227, -0.026992798, 0.014831543, -0.027145386, 0.003293991, -0.031204224, -0.023361206, -0.021972656, 0.009994507, -0.01979065, -0.049072266, -0.014350891, -0.02772522, -0.013977051, -0.0004503727, -0.053344727, 0.037231445, 0.017623901, -0.014839172, -0.0030708313, -0.01158905, -0.021255493, -0.04699707, 0.012718201, 0.015136719, -0.007820129, 0.016693115, 0.009376526, 0.0029144287, -0.04925537, 0.007762909, 0.03378296, 0.0012998581, -0.038208008, 0.066589355, -0.0146865845, 0.024627686, 0.007873535, 0.028137207, 0.08526611, 0.03463745, 0.031921387, -0.032073975, -0.00062704086, 0.016464233, 0.043121338, 0.015548706, -0.0032215118, -0.013679504, 0.051971436, -0.01777649, 0.011604309, -0.020126343, 0.02571106, 0.044891357, -0.026382446, 0.018920898, -0.027114868, 0.06713867, -0.035858154, -0.033325195, -0.00548172, -0.038208008, -0.0025997162, 0.04650879, -0.039398193, -0.0074310303, 0.011520386, -0.030975342, -0.056884766, 0.007209778, 0.014282227, 0.012954712, 0.01574707, -0.0038471222, -0.02305603, -0.036712646, 0.0010271072, 0.0015077591, -0.027709961, 0.028579712, 0.039215088, 0.008880615, 0.036071777, -0.010772705, 0.0068740845, 0.02041626, -0.019622803, -0.03503418, -0.05682373, -0.01876831, -0.052459717, 0.062561035, -0.020248413, -0.039978027, -0.008224487, -0.005947113, 0.028839111, -0.059173584, -0.0362854, -0.02519226, -0.00019013882, 0.0041046143, 0.00060606, -0.015594482, 0.045928955, -0.032836914, -0.043884277, -0.008377075, 0.041107178, -0.024002075, -0.026260376, 0.05456543, 0.03326416, 0.01121521, 0.030807495, -0.011161804, -0.07623291, -0.019821167, -0.014167786, -0.056488037, -0.02558899, -0.05114746, 0.017654419, -0.004924774, -0.041534424, -0.03250122, 0.009963989, -0.026046753, 0.0018005371, -0.013267517, -0.04876709, 0.0044784546, -0.021636963, 0.0072364807, 0.011047363, 0.00095033646, -0.026489258, -0.016906738, -0.031463623, -0.0026607513, 0.0010280609, 0.002632141, 0.030273438, 0.0025119781, 0.011962891, 0.015350342, -0.0033874512, 0.0027599335, 0.0040359497, -0.03643799, 0.005756378, 0.030181885, 0.0077667236, 0.006755829, -0.03741455, -0.008674622, -0.0390625, -0.013214111, -0.010124207, 0.043823242, -0.013069153, 0.028656006, 0.017456055, 0.026931763, 0.036499023, 0.014533997, 0.03933716, -0.007534027, -0.059692383, 0.0049819946, -0.0037651062, -0.03829956, 0.00055742264, -0.027526855, -0.027770996, -0.028900146, -0.032989502, 0.015792847, 0.0029182434, -0.00945282, -0.03543091, 0.050201416, 0.0032138824, 0.009147644, 0.04824829, -0.009643555, 0.033813477, -0.0035629272, 0.089782715, 0.0005993843, 0.0032024384, -0.016540527, 0.0028152466, 0.031677246, 0.005832672, 0.03225708, -0.04006958, 0.022537231, 0.04916382, -0.04321289, -0.040771484, 0.014389038, 0.04788208, -0.023498535, 0.020523071, 0.032806396, 0.0072288513, 0.015609741, 0.021133423, 0.038726807, -0.022033691, 0.038726807, 0.026062012, 0.0064353943, 0.009902954, -0.0138549805, 0.018447876, -0.016983032, 0.004524231, -0.0011291504, -0.019927979, 0.027267456, 0.0033988953, -0.0013456345, 0.011795044, -0.032440186, 0.01876831, 0.027130127, -0.034332275, -0.04522705, -0.0047683716, 0.0071411133, -0.011932373, -0.009124756, -0.041931152, 0.0034008026, 0.02760315, -0.01626587, -0.007335663, -0.013931274, -0.0463562, 0.013824463, 0.044769287, -0.035827637, -0.059417725, -0.10571289, -0.029067993, -0.03378296, -0.014183044, -0.007762909, -0.026901245, 0.032958984, 0.061950684, 0.013801575, 0.041229248, -0.02079773, -0.013130188, 0.030410767, 0.012542725, 0.009132385, 0.0036468506, -0.0055236816, 0.012435913, -0.01940918, 0.01020813, 0.0068855286, 0.010505676, -0.0052375793, -0.014350891, -0.0005631447, -0.05227661, 0.03933716, -0.046081543, -0.03616333, 0.044158936, -0.058166504, -0.029251099, -0.046813965, -0.043426514, -0.009315491, -0.03265381, -0.078308105, 0.03881836, -0.01763916, -0.029129028, 0.009628296, 0.010299683, 0.008728027, -0.054718018, -0.014442444, -0.015640259, -0.009468079, -0.027633667, 0.042541504, -0.047790527, -0.029708862, -0.011489868, 0.020812988, -0.07751465, -0.033447266, -0.005996704, -0.010406494, -0.014816284, -0.004169464, 0.06201172, -0.008018494, 0.05166626, -0.0077590942, 0.034729004, -0.024291992, -0.0357666, 0.03375244, 0.020141602, -0.01499176, -0.015571594, -0.0016345978, 0.009628296, 0.0036258698, 0.023895264, 0.026016235, -0.035217285, 0.021911621, 0.00920105, -0.020187378, 0.029693604, -0.051330566, 0.0703125, 0.018173218, -0.055908203, -0.037261963, 0.017822266, 0.03768921, 0.019088745, 0.025115967, 0.028259277, -0.006263733, -0.07513428, 0.008659363, -0.02835083, -0.0014696121, 0.048034668, -0.013473511, 0.020095825, 0.025375366, -0.04510498, 0.042236328, 0.019500732, -0.026367188, 0.027572632, 0.0014343262, -0.021438599, 0.028396606, -0.028747559, 0.022445679, -0.019348145, 0.044281006, 0.060150146, -0.010871887, -0.00029420853, 0.015487671, -0.053771973, -0.006587982, -0.0039863586, -0.03555298, 0.0015735626, -0.008163452, -0.017028809, 0.013641357, 0.008613586, -0.01852417, -0.0058631897, -0.00724411, -0.020401001, -0.0017566681, 0.0135650635, -0.013221741, -0.019882202, 0.042663574, -0.003047943, 0.03665161, -0.010688782, -0.11315918, -0.08154297, 0.06347656, -0.0010375977, -0.012832642, 0.016311646, -0.0055770874, 0.02557373, 0.047454834, 0.028167725, 0.04058838, -0.012763977, 0.09710693, -0.006324768, -0.015823364]}, "B009V11U6C": {"id": "B009V11U6C", "original": "Brand: Dr. Shrink\nName: Shrink RapidShrink 100 Propane Heat Tool\nDescription: \nFeatures: It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors\nOur product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition\nManufactured in United States\n", "metadata": {"Name": "Shrink RapidShrink 100 Propane Heat Tool", "Brand": "Dr. Shrink", "Description": "", "Features": "It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors\nOur product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition\nManufactured in United States", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.061584473, -0.017868042, -0.07849121, 0.03616333, -0.019546509, -0.031433105, -3.093481e-05, 0.032562256, -0.02809143, -0.0057907104, 0.023147583, 0.008666992, -0.035095215, -0.04623413, 0.0039711, -0.03387451, 0.040802002, -0.03463745, 0.02557373, -0.025878906, 0.027938843, -0.008125305, 0.04562378, 0.083862305, 0.009506226, 0.042388916, 0.08166504, -0.06100464, 0.029281616, -0.030517578, 0.012245178, -0.021438599, 0.03189087, -0.021392822, 0.030166626, 0.07965088, 0.028152466, -0.009063721, -0.001704216, 0.0158844, -0.008361816, 0.023132324, -0.011199951, -0.035003662, -0.050811768, -0.01727295, 0.012008667, 0.030593872, 0.021453857, 0.02909851, 0.013648987, -0.0071144104, 0.018859863, 0.047332764, -0.0073547363, 0.0017747879, -0.017501831, 0.032073975, 0.014808655, 0.0073928833, -0.009162903, 0.017440796, 0.0051002502, -0.0076026917, -0.014984131, -0.00944519, 0.05419922, 0.005302429, 0.011726379, -0.035461426, -0.016281128, 0.038238525, 0.015602112, 0.003856659, -0.026550293, -0.025100708, -0.0026741028, 0.0065612793, 0.052215576, -0.0019102097, -0.00011116266, 0.0038089752, -0.012863159, -0.002670288, -0.02368164, 0.013374329, -0.025787354, -0.011375427, -0.015731812, 0.024475098, -0.006084442, 0.040222168, -0.019546509, 0.02355957, 0.009994507, -0.011062622, -0.02659607, -0.06719971, 0.03857422, 0.016723633, -0.0006289482, -0.0357666, 0.04788208, 0.0028705597, 0.0020599365, 0.0059661865, -0.0039138794, -0.025634766, 0.005760193, 0.0043678284, -0.033843994, -0.013435364, -0.028518677, -0.032196045, -0.029968262, 0.031402588, -0.056488037, 0.015548706, 0.01058197, 0.016677856, 0.010040283, 0.03164673, 0.04156494, -0.09069824, -0.03060913, -0.0592041, -0.046417236, -0.026138306, -0.016815186, 0.014167786, -0.024429321, 0.033813477, 0.03488159, 0.004245758, -0.014572144, 0.00035262108, 0.027877808, -0.011138916, -0.0005030632, -0.015106201, 0.008842468, 0.0158844, 0.030899048, -0.010910034, 0.038391113, -0.0051345825, 0.0059318542, 0.021759033, 0.03567505, 0.02154541, -0.023025513, 0.014152527, 0.016464233, -0.0095825195, -0.00605011, -0.029342651, -0.022445679, -0.018951416, -0.00178051, -0.023712158, 0.019165039, -0.027145386, -0.02154541, 0.020767212, -0.04119873, 0.041107178, 0.014831543, 0.0022125244, 0.02104187, 0.08709717, 0.026168823, -0.04248047, -0.021636963, 0.006511688, -0.028213501, -0.008522034, -0.042633057, 0.020263672, 0.06689453, -0.117004395, -0.088256836, -0.0625, 0.06591797, -0.010604858, 0.025665283, -0.018966675, 0.03363037, -0.027252197, -0.04034424, 0.00844574, 0.051483154, 0.079833984, 0.008956909, -0.0619812, -0.018157959, 0.020736694, -0.033111572, 0.006996155, -0.019317627, 0.051208496, 0.0149002075, -0.007171631, 0.024780273, 0.002796173, -0.029067993, 0.0129470825, -0.020217896, 0.020141602, -0.008903503, 0.016021729, 0.0015325546, -0.060455322, 0.014213562, -0.030059814, -0.00086069107, 0.023880005, -0.0013895035, 0.010002136, 0.0066184998, -0.017578125, 0.03677368, -0.014633179, 0.027252197, 0.036499023, -0.0022830963, -0.028671265, -0.010566711, -0.004219055, -0.0022907257, -0.021957397, 0.009132385, 0.040161133, 0.06225586, 0.11010742, 0.014122009, 0.015411377, 0.07562256, 0.025604248, 0.012619019, -0.026779175, 0.034301758, -0.011375427, -0.012084961, -0.0057296753, 0.034851074, 0.03353882, 0.03265381, -0.029647827, -0.007587433, 0.06488037, 0.06201172, 0.02658081, -0.0154800415, 0.051635742, -0.005695343, -0.018249512, -0.030929565, 0.030410767, -0.034942627, -0.0024662018, -0.008277893, 0.03753662, 0.045928955, -0.0070533752, -0.0025081635, -0.028717041, 0.0006594658, -0.0025806427, -0.028121948, -0.02079773, 0.040649414, 0.035614014, -0.033081055, -0.010772705, 0.08111572, 0.010734558, -0.015899658, 0.009399414, -0.045410156, -0.012489319, 0.010627747, 0.0013799667, 0.04522705, 0.008232117, -0.01687622, -0.01965332, 0.059783936, 0.040924072, -0.002073288, 0.029876709, 0.043060303, 0.012481689, -0.013763428, 0.001115799, 0.0154800415, -0.00440979, -0.013122559, 0.046722412, -0.022109985, -0.0055122375, -0.004550934, 0.018371582, -0.009315491, -0.018844604, -0.0029678345, 0.0135650635, -0.00076532364, 0.0054626465, -0.013954163, -0.04727173, 0.00044441223, 0.003232956, 0.020751953, 0.030929565, 0.020019531, -0.024841309, 0.030700684, 0.0413208, 0.0037841797, -0.02709961, -0.039398193, 0.008171082, -0.018417358, -0.013343811, 0.013084412, 0.018005371, -0.044799805, 0.0135269165, -0.011940002, -0.04727173, 0.024765015, -0.0099105835, 0.017074585, 0.03555298, 0.016311646, -0.027511597, 0.012870789, 0.003168106, -0.019897461, -0.021362305, -0.0011587143, -0.015380859, 0.013542175, -0.015129089, -0.02456665, -0.053955078, 0.025253296, 0.0025672913, 0.005012512, -0.031555176, 0.04144287, -0.017501831, -0.009155273, -0.056121826, 0.0028877258, 0.04724121, -0.008277893, -0.0063819885, 0.05508423, -0.038848877, -0.02079773, -0.01789856, -0.04296875, 0.02355957, 0.039855957, -0.009002686, -0.0057868958, -0.0002655983, 0.040374756, 0.059509277, -0.014297485, 0.064697266, -0.02418518, -0.027267456, -0.022872925, -0.03024292, 0.019683838, -0.05105591, 0.031799316, 0.015182495, -0.0070991516, 0.026397705, -0.015960693, 0.043060303, 0.018417358, 0.029510498, 0.0236969, -6.9737434e-06, 0.03781128, -0.017868042, 0.0035743713, 0.0030975342, -0.022628784, -0.030395508, -0.01890564, -0.02557373, 0.014167786, 0.06439209, -0.013267517, -0.018310547, -0.053833008, 0.032043457, 0.0005078316, -0.007801056, -0.0014066696, -0.062683105, 0.0033016205, -0.04486084, 0.021270752, 0.0015306473, -0.030014038, -0.008720398, -0.035308838, -0.012901306, 0.001332283, -0.009254456, 0.015419006, -0.014732361, 0.018508911, 0.012084961, 0.021453857, -0.036621094, 0.018569946, 0.04397583, 0.010940552, 0.00090265274, -0.00422287, -0.008598328, -0.01374054, 0.024765015, 0.014297485, -0.007648468, -0.031585693, -0.016479492, -0.012680054, 0.039215088, 0.0037765503, -0.023864746, 0.009498596, -0.022003174, -0.03778076, -0.012573242, -0.013084412, 0.040252686, -0.037353516, 0.018493652, -0.018234253, -0.04699707, 0.008651733, -0.013893127, -0.0059394836, 0.009399414, 0.0046806335, 0.01777649, -0.019805908, 0.022918701, 0.027542114, 0.024963379, 0.018295288, -0.045684814, -0.035583496, -0.02116394, -0.037231445, -0.041137695, -0.013473511, -0.07861328, 0.060943604, -0.019546509, 0.031173706, -0.0256958, -0.051879883, 0.10620117, 0.021972656, -0.00819397, 0.0061454773, 0.013298035, 0.018325806, -0.022140503, -0.036743164, -0.018981934, -0.05456543, 0.028656006, -0.006389618, -0.03668213, 0.0019817352, 0.0029182434, -0.012054443, -0.041015625, -0.003452301, -0.0071105957, -0.006298065, -0.052520752, 0.010139465, 0.009963989, -0.026626587, 0.002861023, 0.0020694733, -0.015716553, 0.025024414, -0.04360962, -0.014762878, 0.026016235, 0.018188477, -0.02748108, -0.024032593, 0.0045166016, 0.026794434, 0.0077400208, 0.015670776, -0.05090332, 0.017791748, -0.025726318, -0.015075684, 0.018493652, -0.040130615, 0.0064926147, -0.037506104, -0.017074585, -0.031707764, 0.0066070557, -0.0104904175, 0.031951904, -0.044311523, 0.037017822, 0.06567383, -0.0385437, -0.036865234, 0.0010023117, -0.010620117, 0.042236328, -0.0112838745, -0.022827148, 0.023132324, 0.00076150894, 0.023788452, -0.014595032, -0.0025291443, 0.011154175, 0.023376465, -0.033203125, 0.01675415, 0.051757812, -0.0008969307, -0.017227173, -0.023834229, -0.057739258, -0.062469482, -0.06518555, 0.04147339, -0.09753418, 0.025680542, 0.03050232, -0.037109375, -0.013793945, -0.06359863, 0.00027108192, -0.07165527, 0.041992188, 0.024337769, 0.0058555603, 0.0017719269, -0.0099105835, -0.04727173, 0.05038452, -0.040374756, -0.0055885315, 0.023468018, 0.0018138885, 0.056121826, -0.037322998, -0.016830444, -0.008354187, 0.073913574, 0.01361084, 0.044952393, -0.011734009, -0.02281189, -0.004890442, 0.015068054, 0.010429382, -0.0033779144, 0.007633209, -0.020477295, -0.05657959, -0.03253174, -0.021850586, 0.010246277, -0.011695862, -0.04486084, -0.05670166, 0.034362793, -0.01448822, 0.00031018257, -0.06774902, -0.028564453, 0.024169922, -0.032836914, 0.013679504, -0.0088272095, -0.007820129, -0.04336548, -0.0029449463, -0.010383606, -0.01777649, 0.031799316, 0.04647827, -0.01625061, -0.010108948, -0.025253296, -0.0008006096, 0.017227173, -0.005115509, 0.0051002502, -0.010498047, -0.008850098, 0.031158447, 0.0118255615, 0.006038666, -0.008987427, -0.041992188, -0.005821228, -0.0005841255, -0.008277893, 0.018920898, -0.047027588, 0.026535034, 0.051696777, -0.005104065, -0.047546387, 0.020935059, -0.01512146, -0.012008667, -0.027557373, -0.04562378, -0.0022354126, 0.04611206, -0.008666992, -0.017913818, -0.020065308, -0.026123047, 0.0036811829, 0.016464233, -0.018310547, -0.065979004, 0.048797607, -0.03189087, -0.030151367, 0.0128479, 0.009254456, 0.0031490326, 0.05444336, 0.02357483, -0.0680542, 0.032287598, 0.023010254, 0.018371582, -0.04699707, 0.024353027, 0.053710938, 0.014846802, -0.04220581, 0.099365234, 0.003068924, 0.0013809204, -0.040771484, 0.054229736, 0.0061149597, 0.019134521, -0.009544373, -0.010169983, 0.0009870529, -0.0050811768, 0.02810669, -0.021255493, 0.027374268, -0.020690918, -0.016113281, -0.0033740997, -0.01335907, -0.04095459, 0.008094788, 0.037475586, 0.010734558, -0.023162842, -0.01676941, 0.034118652, 0.01725769, 0.02444458, -0.0058898926, -0.008979797, 0.010368347, 0.040252686, -0.018493652, -0.019348145, -0.017822266, -0.026046753, -0.01838684, 0.003145218, -0.068115234, 0.0154418945, 0.064941406, -0.017791748, -0.016647339, -0.042633057, -0.014602661, -0.03543091, -0.045410156, -0.017913818, -0.009506226, 0.016418457, -0.035736084, -0.0007452965, 0.01802063, 0.0059814453, -0.017211914, -0.024902344, -0.00086307526, 0.018829346, -0.010627747, 0.023803711, -0.04876709, 0.0009150505, 0.03540039, 0.0050964355, 0.017532349, 0.054595947, -0.092041016, -0.033996582, -0.016418457, -0.02961731, -0.025390625, -0.022903442, 0.024276733, -0.031799316, -0.029907227, -0.027389526, 0.035461426, 0.0062026978, -0.0011100769, 0.021560669, -0.022583008, 0.0013465881, 0.0317688, 0.015571594, -0.02482605, 0.006511688, -0.016204834, 0.0060539246, 0.014373779, -0.027893066, 0.013298035, 0.022125244, -0.045074463, -0.056365967, 0.018814087, -0.057525635, -0.040771484, -0.022079468, -0.030456543, 0.012916565, -0.068603516, -0.006095886, -0.047576904, -0.019592285, 0.0077323914, -0.03289795, -0.01209259, -0.0074768066, -0.0027828217, 0.032440186, 0.017105103, 0.01109314, 0.009597778, 0.04159546, -0.03375244, 0.026016235, 0.026504517, -0.037261963, -0.03756714, 0.054016113, 0.044830322, 0.0017309189, -0.08544922, -0.01335907, -0.055877686, 0.044433594, 0.035095215, 0.06500244, -0.029174805, 0.009017944, 0.049072266, 0.026153564, 0.015716553, 0.01927185, 0.061950684, 0.019058228, -0.056884766, -0.0016822815, -0.010726929, -0.045715332, 0.0058784485, -0.020523071, 0.02658081, 0.019485474, 0.009918213, -0.04421997, 0.016799927, 0.041778564, -0.059173584, 0.023406982, -0.012207031, -0.022506714, 0.04534912, -0.05899048, 0.008842468, -0.050079346, 0.08282471, 0.03869629, 0.032989502, -0.02722168, -0.03387451, 0.0026874542, -0.024749756, 0.0597229, 0.06286621, -0.027832031, -0.0066108704, 0.018157959, 0.012771606, -0.019226074, 0.0005955696, -0.0023384094, 0.008407593, 0.042785645, 0.04598999, -0.023101807, -0.023239136, -0.001871109, 0.005393982, -0.020370483, 0.0074424744, 0.007835388, 0.0054740906, 0.0028839111, 0.0121536255, 0.03878784, 0.033355713, -0.030685425, -0.018508911, -0.0014019012, 0.05706787, 0.0068092346, 0.017990112, -0.031829834, 0.036865234, -0.052825928, 0.022460938, -0.00017344952, -0.053741455, 0.064331055, 0.056152344, -0.035491943, 0.054473877, 0.038635254, 0.02243042, 0.046417236, -0.015609741, 0.030639648, -0.024642944, 0.062927246, 0.028945923, 0.023590088, -0.068725586, -0.07751465, -0.027709961, -0.007675171, -0.01197052, 0.02835083, 0.0105896, 0.015686035, -0.016998291, -0.006210327, 0.019058228, -0.0115356445, 0.01020813, -0.03805542, -0.014953613, 0.0042304993, -0.0075149536, -0.013458252, 0.019897461, -0.025497437, 0.0074043274, 0.023284912, -0.024093628, 0.017623901, -0.019927979, -0.007980347, -0.047546387, 0.034210205, -0.019866943, -0.035583496, -0.023635864, -0.032836914, -0.021697998, -0.009971619, -0.0059165955, -0.01902771, -0.04473877, -0.058929443, 0.033111572, -0.0524292, -0.0074043274, 0.011817932, -0.027755737, -0.01939392, -0.011894226, 0.021026611, 0.0345459, 0.039031982, 0.014411926, 0.0045166016, -0.022247314, -0.044006348, -0.031921387, 0.053466797, -0.07885742, -0.08770752, 0.0023918152, -0.012634277, 0.0015220642, -0.007686615, 0.04248047, 0.021865845, 0.045898438, -0.0062294006, -0.00868988, -0.017974854, 0.020950317, -0.017913818, -0.01776123, 0.025558472, -0.0541687, -0.0033569336, -0.0025157928, 0.025634766, 0.041992188, -0.016082764, 0.0016765594, -0.00223732, -0.0032176971, -0.022857666, 0.0067634583, 0.0059432983, 0.022628784, 0.049835205, -0.016235352, 0.017837524, -0.03778076, -0.026260376, 0.0066566467, 0.021835327, 0.012062073, 0.011985779, 0.01461792, 0.009674072, -0.008224487, -0.018966675, 0.0541687, 0.0028896332, 0.058929443, 0.018585205, -0.03527832, 0.009399414, -0.029769897, 0.012489319, 0.006839752, 0.0090789795, -0.013656616, -0.0023784637, -0.010139465, 0.013023376, -0.0013570786, -0.012397766, 0.019592285, 0.037078857, -0.03515625, 0.00932312, -0.030639648, 0.00063180923, 0.015975952, -0.020751953, -0.035705566, -0.04788208, 0.029312134, 0.035125732, -0.0058898926, -0.020980835, 0.014335632, 0.015045166, -0.04296875, -0.026290894, 0.016403198, -0.037139893, -0.03024292, 0.024551392, 0.0088272095, 0.07159424, -0.013374329, -0.107055664, -0.052978516, 0.03515625, 0.010528564, -0.019439697, 0.062347412, -0.032287598, 0.0021343231, 0.03945923, -0.07110596, -0.021224976, 0.023483276, 0.03414917, -0.0017776489, 0.012214661]}, "B00004Z2FP": {"id": "B00004Z2FP", "original": "Brand: Red Dragon\nName: Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder Works great)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2, 000-degrees F\nThe weed Dragon has received the National home gardening club member tested seal-of-approval.\nMade in the U.S.A.\n", "metadata": {"Name": "Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit", "Brand": "Red Dragon", "Description": "", "Features": "Quickly hooks up to any refillable propane tank (20lb cylinder Works great)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2, 000-degrees F\nThe weed Dragon has received the National home gardening club member tested seal-of-approval.\nMade in the U.S.A.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008010864, -0.022750854, -0.009468079, -0.024963379, -0.015670776, 0.0037612915, -0.009254456, 0.0077056885, 0.0020961761, 0.0054893494, 0.013008118, -0.013023376, -0.027313232, -0.03729248, 0.009033203, -0.028045654, 0.039978027, 0.0009880066, 0.025222778, -0.023529053, -0.0076293945, 0.011756897, 0.0067634583, 0.06286621, 0.02861023, -0.017730713, 0.025527954, -0.0053863525, 0.04916382, 0.024536133, 0.043182373, -0.039031982, 0.06689453, 0.007987976, -0.085998535, -0.07055664, 0.0015792847, -0.028198242, -0.070007324, 0.044708252, 0.004383087, 0.0127334595, -0.040039062, -0.048614502, -0.022567749, -0.041229248, 0.0012340546, -0.0022220612, 0.04269409, 0.08569336, -0.011222839, 0.007549286, -0.03652954, 0.0042381287, 0.00012266636, -0.002937317, 0.066467285, -0.05911255, 0.02859497, -0.06262207, -0.039794922, -0.008560181, 0.06124878, 0.036743164, -0.052124023, 0.00642395, 0.052001953, -0.019515991, 0.013885498, -0.053009033, 0.009780884, 0.026184082, -0.008155823, 0.012588501, 0.0069732666, -0.053344727, 0.047790527, -0.022994995, -0.020019531, 0.06298828, -0.01184845, -0.008094788, -0.008232117, -0.013786316, 0.013153076, 0.014602661, -0.033966064, -0.017349243, -0.019546509, 0.0006299019, -0.02180481, 0.007209778, -0.023742676, 0.010093689, -0.011543274, -0.004081726, -0.017929077, -0.057617188, 0.038116455, 0.0061950684, 0.017837524, -0.041046143, 0.020568848, 0.000192523, -0.014724731, 0.03842163, 0.0074882507, -0.006916046, -0.008583069, 0.0023345947, -0.01852417, -0.011604309, 0.0034828186, -0.0015716553, -0.027023315, 0.008262634, -0.013877869, 0.0022201538, -0.004398346, 0.011116028, 0.032562256, 0.051452637, 0.033447266, -0.009422302, -0.028656006, 0.007572174, -0.0006246567, -0.08514404, -0.018173218, 0.006137848, -0.021408081, 0.01008606, 0.051879883, 0.04611206, 0.005050659, -0.009391785, 0.04650879, -0.037872314, -0.0005259514, -0.011291504, 0.021347046, -0.005279541, -0.005844116, -0.002779007, -0.024139404, 0.03375244, 0.029632568, -0.013221741, -0.021652222, -0.059631348, -0.03048706, 0.0030765533, 0.010307312, -0.010307312, 0.03265381, -0.04937744, 0.0055122375, -0.023345947, 0.03930664, -0.006511688, 0.053222656, -0.012451172, -0.06536865, 0.038360596, -0.0054244995, 0.0020713806, 0.019363403, 0.0059661865, 0.033966064, -0.000828743, 0.005832672, -0.028457642, 0.031402588, 0.027877808, 0.0038490295, 0.036224365, 0.0008735657, 0.078125, 0.05355835, -0.12414551, -0.06945801, -0.050109863, 0.16967773, -0.058410645, 0.016906738, -0.040252686, 0.022155762, -0.021499634, -0.017623901, 0.023651123, 0.011100769, 0.019226074, -0.026824951, -0.01991272, -0.012619019, 0.0062561035, -0.023239136, 0.016479492, -0.01802063, 0.0025310516, 0.028533936, -0.006416321, 0.025238037, 0.009757996, 0.015159607, 0.00014424324, 0.0054512024, -0.007549286, 0.011878967, 0.06274414, -0.005191803, 0.025817871, -0.0035171509, -0.02696228, 0.017684937, 0.023880005, -0.021530151, 0.044311523, 0.023010254, -0.0029239655, 0.0368042, -0.020584106, 0.050445557, 0.012908936, 0.005214691, -0.007904053, -0.024841309, 0.00039696693, -0.0032691956, 0.014183044, -0.0042915344, 0.002500534, 0.06549072, 0.101379395, -0.030258179, 0.0014314651, 0.02520752, 0.05215454, -0.011711121, -0.007534027, 0.0075302124, 0.015304565, -0.015640259, 0.040374756, -0.027160645, -0.0137786865, 0.020935059, 0.018051147, -0.009025574, 0.0016641617, -0.0013885498, -0.018218994, 0.032684326, 0.013198853, 0.0018386841, 0.013381958, -0.035980225, 0.0055351257, -0.017364502, -0.0029392242, 0.018417358, 0.029159546, -0.00033044815, 0.012168884, 0.002439499, -0.031585693, 0.031036377, 0.024047852, 0.017929077, -0.05596924, 0.020904541, 0.045532227, -0.025726318, -0.0036582947, 0.046844482, -0.03942871, -0.04473877, 0.023406982, 0.0051078796, -0.02192688, -0.0033168793, -0.0054512024, -0.007259369, -0.0110321045, 0.03451538, 0.06591797, 0.0057640076, -0.008384705, -0.041625977, -0.040740967, -0.007926941, 0.012191772, -0.0357666, -0.0104904175, 0.030151367, -0.028915405, 0.02407837, 0.02998352, 0.009750366, -0.023468018, -0.007583618, 0.014389038, -0.074279785, 0.01977539, 0.0019683838, 0.040283203, -0.00016105175, 0.019760132, 0.0038166046, -0.024841309, -0.001159668, -0.015808105, 0.0151901245, 0.015197754, 0.0143585205, -0.02720642, 0.009025574, 0.018615723, -0.0018472672, 0.010574341, 0.006549835, 0.048583984, 0.006538391, -0.0021324158, 0.050476074, -0.030838013, -0.0132751465, -0.011238098, -0.06109619, 0.023361206, 0.021560669, -0.018188477, 0.015655518, -0.0015878677, -0.0032863617, -0.011062622, -0.0040779114, 0.04724121, -0.01524353, -0.059753418, -0.010375977, -0.0009226799, -0.002046585, -0.00598526, -0.035217285, -0.040924072, 0.059661865, -0.0006098747, 0.025039673, 0.028839111, 0.007774353, -0.0062217712, 0.013748169, 0.0055389404, 0.035736084, -0.074523926, -0.050811768, 0.019378662, -0.03375244, -0.051330566, 0.009170532, -0.026428223, -0.022567749, 0.050323486, 0.03250122, -0.0052375793, -0.024353027, 0.013710022, 0.03265381, 0.041107178, -0.017089844, 0.03375244, -0.011016846, -0.026824951, -0.0038890839, -0.024765015, 0.019622803, -0.019546509, 0.018920898, 0.0129776, 0.016937256, 0.026031494, -0.022033691, 0.00029730797, 0.012992859, 0.05392456, 0.05923462, 0.0031356812, 0.009590149, -0.040985107, -0.0017490387, 0.024871826, -0.01474762, -0.010932922, -0.016586304, -0.01600647, 0.0060920715, -0.014541626, -0.022766113, -0.018157959, -0.15039062, 0.03338623, 0.00017607212, -0.024993896, -0.024398804, -0.057495117, -0.092041016, -0.06707764, 0.00409317, 0.070617676, -0.03781128, 0.020309448, -0.03656006, 0.026153564, -0.0037498474, 0.023284912, 0.02708435, -0.006549835, 0.007457733, -0.008575439, 0.03253174, -0.04534912, -0.0003721714, 0.016586304, -0.058135986, -0.0070762634, -0.042999268, 0.04660034, -0.04925537, 0.021362305, -0.049743652, 0.0034103394, 0.011993408, 0.0027656555, -0.006713867, 0.027252197, -0.0064430237, -0.020751953, 0.015686035, -0.030853271, -0.052764893, -0.03918457, 0.009590149, -0.0060195923, -0.007457733, 0.0014505386, -0.016952515, -0.0070533752, 0.0015525818, -0.013595581, -0.018127441, 0.003145218, 0.027450562, 0.023376465, -0.0058135986, 0.03527832, 0.042633057, 0.031066895, 0.033203125, -0.02394104, -0.042022705, -0.026672363, 0.012245178, 0.007873535, -0.007873535, -0.042144775, 0.029815674, 0.011528015, -0.00944519, -0.0046920776, -0.0061073303, 0.057769775, 0.023712158, 0.0036315918, -0.025939941, 0.017745972, 0.027954102, -0.0051574707, 0.0071754456, -0.0104522705, -0.049926758, 0.018218994, -0.040863037, 0.047821045, 0.027114868, -0.008720398, 0.053375244, 0.013259888, 0.0040512085, 0.038024902, 0.034088135, -0.01878357, -0.017364502, 0.066589355, -0.029785156, -0.00069379807, -0.0008454323, 0.04626465, 0.014945984, -0.000726223, -0.028640747, 0.0012598038, 0.02822876, -0.035461426, -0.03314209, 0.0054473877, 0.002817154, 0.007472992, 0.030883789, -0.030975342, 0.005680084, -0.020065308, -0.022018433, 0.017593384, -0.039520264, -0.011444092, -0.0127334595, -0.03817749, -0.025558472, 0.01965332, 0.023452759, -0.021255493, -0.010070801, 0.020736694, 0.026748657, 0.030944824, -0.06112671, -0.019546509, -0.025863647, 0.029647827, 0.010284424, 0.00182724, 0.015289307, -0.033599854, 0.024993896, -6.2048435e-05, -0.0042304993, 0.0034065247, -0.0069465637, -0.028213501, 0.015151978, 0.010627747, -0.010726929, -0.01285553, 0.019561768, -0.017715454, -0.03466797, -0.0141067505, -0.021102905, 0.011550903, -0.03286743, -0.035491943, -0.04473877, -0.043060303, -0.04727173, 0.0060768127, -0.0010080338, 0.0069274902, 0.0009689331, -0.035827637, -0.001742363, 0.021011353, -0.045196533, -0.011123657, -0.072631836, 0.008102417, 0.009086609, -0.0034713745, -0.016708374, -0.025863647, -0.019424438, -0.029708862, 0.028869629, -0.008331299, -0.004917145, -0.0003733635, -0.040618896, 0.0013809204, 0.0042800903, 0.028564453, -0.017623901, 0.014274597, -0.04260254, -0.05343628, -0.020202637, -0.025009155, 0.013511658, -0.0104599, -0.028778076, -0.046936035, 0.014442444, -0.0006980896, 0.026016235, 0.017608643, 0.015045166, -0.028030396, 0.05609131, -0.09863281, -0.038238525, -0.0064086914, 0.0024032593, 0.03414917, 0.015960693, -0.003358841, -0.038879395, 0.05038452, 0.029663086, -0.02935791, 0.0003633499, -0.008369446, -0.0044288635, 0.019317627, -0.051879883, 0.019607544, -0.04220581, -0.011543274, -0.03237915, 0.028945923, -0.015457153, -0.025802612, -0.023651123, -0.007896423, -0.025039673, -0.06677246, -0.0017709732, -0.0513916, 0.033813477, -0.0069465637, -0.017501831, -0.005680084, -0.03253174, 0.0042381287, -0.03253174, -0.0135650635, -0.0021381378, 0.004180908, -0.018188477, -0.017578125, 0.007820129, -0.023284912, 0.016540527, -0.024307251, -0.052886963, 0.0032691956, -0.011581421, -0.019363403, -0.016784668, -0.00035452843, -0.030578613, -0.04864502, -0.044006348, 0.0058784485, -0.005332947, 0.032470703, -0.0045280457, 0.025665283, -0.05215454, 0.024658203, -0.015945435, 0.006187439, -0.0143585205, 0.03729248, 0.0016851425, 0.035095215, 0.015960693, 0.014793396, 0.026626587, 0.04949951, 0.008308411, 0.011505127, 0.028137207, -0.024780273, 0.020477295, -0.007598877, 0.020767212, -0.06488037, 0.03353882, -0.016464233, -0.011268616, -0.07702637, 0.02520752, 0.033172607, -0.011413574, 0.00021982193, -0.021118164, 0.04876709, -0.050994873, -0.0017366409, 0.008705139, 0.008377075, -0.004322052, 0.023132324, 0.0045394897, -9.971857e-05, -0.00630188, 0.007270813, -0.028198242, 0.024307251, 0.004058838, -0.006729126, 0.039916992, 0.015213013, -0.021148682, -0.021652222, 0.036071777, -0.031219482, 0.018081665, -0.0949707, 0.107666016, 0.020767212, -0.026062012, -0.03250122, 0.004463196, 0.0021800995, -0.032073975, -0.00068712234, 0.035491943, 0.028060913, 0.005886078, 0.028701782, -0.022109985, -0.037322998, 0.008422852, -0.015640259, 0.02696228, -0.06878662, 0.010131836, -0.025787354, 0.0011920929, -0.009887695, -0.00032830238, -0.03326416, 0.021972656, -0.021270752, -0.024810791, -0.045684814, 0.050598145, -0.0041656494, -0.013618469, 0.08404541, 0.01335907, 0.018875122, 0.010902405, -0.024169922, -0.03366089, -0.019622803, -0.00037312508, -0.027496338, -0.012756348, -0.03062439, 0.030258179, 0.0006275177, -0.008476257, -0.015945435, 0.025405884, -0.028625488, 0.008926392, -0.021774292, -0.012542725, -0.02458191, -0.033172607, 0.0107421875, -0.002439499, -0.012123108, -0.0011072159, 0.0010919571, 0.009124756, 0.033691406, 0.0032215118, 0.012573242, 0.008934021, 0.012763977, 0.008079529, 0.017349243, -0.027740479, 0.013381958, 0.0026226044, -0.03857422, -0.009109497, 0.02558899, 0.017547607, 0.021865845, -0.017196655, -0.0140686035, -0.045410156, 8.356571e-05, -0.017471313, 0.06072998, -0.032165527, 0.016937256, 0.009902954, 0.026184082, -0.026626587, -0.044952393, 0.028259277, -0.017120361, -0.13244629, -0.033599854, -0.012802124, -0.06378174, 0.025299072, -0.009567261, -0.021896362, 0.0006122589, -0.045013428, -0.023391724, -0.020187378, 0.055480957, -0.011512756, 0.03704834, 0.001376152, -0.007572174, 0.055847168, -0.02078247, 0.06365967, 0.016677856, 0.03652954, 0.015281677, 0.009880066, -0.042114258, 0.0012187958, 0.033294678, -0.012084961, 0.032104492, -0.04916382, -0.021850586, 0.012886047, -0.025802612, 0.021438599, 0.047454834, -0.04058838, -0.005504608, -0.0022964478, 0.020462036, 0.03289795, -0.01802063, -0.003042221, 0.025390625, 0.008460999, -0.0096588135, 0.0012636185, -0.0056533813, -0.018615723, -0.00022256374, 0.0061454773, 0.0009226799, -6.914139e-05, -0.0126953125, -0.016601562, 0.03805542, 0.019454956, 0.02381897, 0.015655518, -0.041412354, 0.008865356, 0.030517578, 0.057617188, -0.027374268, -0.04006958, -0.018753052, -0.006958008, -0.011329651, 0.0023117065, 0.03112793, 0.0052452087, 0.038482666, -0.020980835, -0.0011415482, -0.01436615, 0.031036377, 0.033691406, 0.024734497, -0.10424805, -0.051696777, -0.011459351, -0.03793335, -0.007820129, 0.06237793, -0.026275635, -0.022918701, -0.014541626, -0.015213013, 0.030181885, -0.014373779, 0.021102905, -0.03869629, 0.008018494, 0.028579712, -0.033081055, 0.011299133, 0.0018863678, -0.026016235, 0.016326904, 0.0064735413, -0.006767273, 0.018432617, -0.019989014, 0.0048561096, -0.028808594, 0.0045394897, -0.07330322, -0.0027332306, 0.08062744, -0.054992676, -0.004688263, -0.016540527, -0.0025196075, -0.006164551, -0.023712158, -0.024612427, 0.036468506, -0.0020599365, -0.0029525757, 0.029190063, -0.026000977, 0.0071983337, -0.0592041, 0.014335632, -0.016662598, 0.016738892, -0.01991272, 0.056640625, -0.03086853, -0.054229736, -0.061767578, 0.014427185, -0.094177246, -0.0034217834, 0.004016876, -0.018661499, -0.020004272, -0.04058838, -0.0074043274, 0.00356102, 0.034423828, -0.031311035, 0.06707764, -0.05368042, -0.031082153, 0.021255493, 0.030899048, -0.021896362, -0.02357483, 0.0012598038, -0.00667572, 0.02835083, 0.027893066, -0.0107421875, 0.0072135925, -0.005142212, 0.012321472, -0.028747559, 0.021530151, -0.026382446, 0.006755829, 0.003080368, -0.058288574, -0.07647705, -0.010223389, 0.038391113, 0.040649414, -0.007587433, 0.029022217, -0.025405884, -0.06512451, -0.04660034, -0.015991211, 0.029846191, 0.01663208, -0.01197052, -0.012359619, 0.014305115, -0.01499176, 0.028213501, 0.032684326, -0.039367676, 0.0118637085, -0.031402588, -0.016143799, -0.015686035, -0.025894165, -0.018585205, -0.007896423, 0.027862549, 0.05130005, 0.0007009506, -0.018463135, -0.00036382675, -0.044158936, -0.0071029663, -0.008674622, -0.06274414, 0.002216339, -0.0569458, 0.01965332, 0.0423584, -0.002374649, 0.041137695, -0.008178711, -0.050109863, 0.009780884, -0.013832092, -0.016723633, -0.034606934, -0.016067505, 0.0059509277, -0.040008545, 0.08087158, 0.0031528473, -0.1418457, -0.058258057, 0.019592285, 0.010429382, -0.015220642, 0.02532959, -0.018569946, 0.029067993, 0.028427124, 0.07647705, -0.00050640106, 0.03414917, 0.03842163, 0.027618408, 0.024658203]}, "B07G4899R5": {"id": "B07G4899R5", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry\nDescription: What are The Benefits of Using Camplux Single Burner Camping Stove ?

      1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What's more,the powder coating makes it is waterproof and anti-rust.
      2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
      3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
      4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
      5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it's more safety to use wrench in order to tighten).
      6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
      7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
      8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

      Specifications:

      Color: Black
      Product Type: Single Burner
      Material: Cast Iron
      Product Extension Size:15.75\u00d715.75\u00d728.8 Inch\uff0840*40*73cm\uff09
      Product Size without Extension:15.75\u00d715.75\u00d716.9\uff0840*40*43cm\uff09
      Type of Gas:Propane
      Heat Output:200,000 BTU/HR
      Regulator Length: 5 feet / 60 inch/152.5 cm
      Usage Condition:Normal Outdoor

      What You Will Get:

      1 x Propane Gas Camp Stove
      1 x High Pressure CSA Certified Regulator
      1 x User Manual

      Inquiry & after sales service: support@camplux.com
      Service hotline: (844)-538-7475\nFeatures: 200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time\nDetachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking\nEasy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb\nHigh Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It's hard to destroy and has a long service life\nWok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services\n", "metadata": {"Name": "Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry", "Brand": "CAMPLUX ENJOY OUTDOOR LIFE", "Description": "What are The Benefits of Using Camplux Single Burner Camping Stove ?

      1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What's more,the powder coating makes it is waterproof and anti-rust.
      2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
      3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
      4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
      5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it's more safety to use wrench in order to tighten).
      6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
      7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
      8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

      Specifications:

      Color: Black
      Product Type: Single Burner
      Material: Cast Iron
      Product Extension Size:15.75\u00d715.75\u00d728.8 Inch\uff0840*40*73cm\uff09
      Product Size without Extension:15.75\u00d715.75\u00d716.9\uff0840*40*43cm\uff09
      Type of Gas:Propane
      Heat Output:200,000 BTU/HR
      Regulator Length: 5 feet / 60 inch/152.5 cm
      Usage Condition:Normal Outdoor

      What You Will Get:

      1 x Propane Gas Camp Stove
      1 x High Pressure CSA Certified Regulator
      1 x User Manual

      Inquiry & after sales service: support@camplux.com
      Service hotline: (844)-538-7475", "Features": "200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time\nDetachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking\nEasy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb\nHigh Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It's hard to destroy and has a long service life\nWok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009468079, -0.0069351196, -0.003168106, -0.020690918, -0.0049476624, -0.008384705, 0.0053863525, -0.004673004, -0.06640625, -0.008926392, -0.005077362, 0.0030078888, -0.02999878, -0.041625977, 0.05529785, -0.051757812, 0.014831543, 0.018066406, 0.0020484924, -0.036712646, 0.031433105, -0.02432251, -0.04989624, 0.111328125, 0.039916992, -0.030212402, -0.03591919, 0.02772522, 0.024307251, 0.019256592, 0.024429321, -0.0065956116, 0.059570312, -0.049224854, -0.0019779205, -0.047912598, -0.007904053, -0.041748047, -0.06585693, 0.030471802, 0.039031982, -0.028182983, -0.026184082, 0.054656982, -0.017532349, -0.05319214, 0.05026245, -0.04751587, -0.012786865, -0.008140564, 0.006401062, -0.020843506, 0.022567749, -0.015945435, -0.02381897, -0.0011253357, 0.03137207, -0.01725769, 0.012809753, -0.03390503, -0.026321411, 0.012901306, 0.047088623, 0.03378296, -0.049926758, 0.0035152435, 0.068237305, -0.013946533, 0.0045051575, -0.0602417, 0.00466156, 0.044525146, 0.029891968, 0.031921387, -0.046539307, -0.04925537, 0.023773193, -0.00970459, 0.04321289, -0.019042969, -0.008743286, -0.032043457, 0.032836914, -0.05026245, 0.026184082, -0.024734497, 0.003019333, 0.0033130646, -0.08227539, -0.027755737, -0.03390503, -0.058410645, -0.07861328, 0.014701843, 0.004600525, 0.0055274963, -0.06719971, -0.09680176, 0.026885986, 0.010688782, 0.06915283, -0.046142578, 0.04864502, 0.011054993, -0.0042915344, 0.11279297, 0.028823853, 0.06896973, 0.01838684, -0.030395508, 0.017196655, -0.004348755, -0.03060913, -0.0058670044, -0.008666992, 0.017227173, -0.04763794, 0.015449524, -0.004585266, 0.018356323, -0.013381958, -0.016677856, 0.04284668, -0.0014734268, 0.0067977905, 0.011482239, -0.02619934, -0.017089844, -0.016311646, -0.001581192, -0.014564514, 0.012207031, 0.033355713, 0.057800293, 0.009162903, -0.0033988953, 0.0042495728, 0.03503418, 0.0025749207, 0.015602112, -0.018997192, -0.017333984, 0.040252686, -0.0101623535, -0.0037841797, 0.033325195, 0.018463135, 0.0021018982, 0.005279541, -0.05166626, -0.011070251, -0.0107040405, 0.032592773, 0.0047035217, -0.045806885, -0.011436462, 0.014450073, -0.012756348, -0.03012085, -0.049041748, -0.009674072, -0.021591187, -0.029022217, -0.028686523, -0.04437256, 0.025024414, 0.018035889, 0.004825592, 0.011398315, -0.015068054, 0.0016374588, 0.043945312, 0.030517578, 0.014915466, 0.021347046, 0.0032348633, -0.032958984, 0.07525635, 0.07507324, -0.08514404, -0.056732178, -0.06384277, 0.13317871, -0.052246094, -0.014656067, -0.0016670227, 0.021148682, 0.00774765, -0.0056495667, 0.006351471, 0.020355225, 0.02406311, 0.021652222, 0.008087158, 0.027114868, -0.02027893, -0.0546875, -0.0043029785, -0.008430481, -0.0040893555, 0.012634277, 0.0024280548, 0.0017318726, -0.027114868, -0.024353027, -0.025100708, 0.0012607574, 0.015472412, 0.014572144, 0.02470398, -0.004840851, -0.0057144165, 0.014839172, -0.060577393, -0.022277832, 0.030960083, 0.0031871796, 0.017227173, 0.010353088, -0.010124207, 0.04034424, -0.02178955, 0.030548096, 0.047851562, 0.04559326, -0.023788452, -0.014732361, -0.02355957, 0.026138306, -0.005329132, -0.028793335, 0.03842163, 0.03286743, 0.04925537, 0.0025539398, 0.023208618, 0.06365967, 0.019165039, -0.0063934326, -0.024261475, -0.002954483, -0.035095215, -0.05218506, -0.0016307831, -0.02835083, 0.0032157898, 0.017471313, -0.004333496, -0.01461792, 0.03186035, -0.011100769, 0.027359009, 0.006462097, 0.027450562, -0.02330017, 0.026016235, -0.036224365, 0.021087646, -0.04257202, 0.026794434, -0.013206482, 0.03970337, 0.048980713, -0.0024051666, 0.0008788109, -0.0017309189, 0.041503906, 0.03213501, -0.0055656433, -0.010498047, 0.004058838, 0.031021118, -0.0049552917, -0.013725281, 0.014305115, 0.008491516, -0.023544312, 0.01424408, -0.0062217712, -0.018463135, -0.0023727417, -0.020690918, 0.006214142, 0.013572693, 0.044128418, 0.008056641, 0.028259277, 0.018875122, 0.018188477, 0.0075187683, 0.029129028, 0.01108551, -0.022521973, 0.017562866, -0.028793335, -0.026367188, 0.057739258, -0.009147644, 0.020187378, -0.0053634644, 0.033233643, 0.051483154, -0.04006958, 0.05532837, -0.0023899078, -0.0077819824, -0.0018348694, 0.021377563, 0.004173279, -0.003993988, -0.017959595, 0.022323608, 0.03100586, 0.014625549, 0.060668945, 0.021835327, 0.02885437, 0.07470703, 0.07849121, 0.049591064, -0.035369873, 0.006603241, 0.02468872, 0.0072364807, 0.033996582, -0.020614624, 0.00881958, 0.014930725, -0.014015198, 0.010726929, 0.040924072, 0.013137817, 0.024627686, -0.0057258606, 0.0007481575, -0.013877869, 2.2053719e-06, 0.02243042, 0.0048179626, -0.038085938, 0.0043907166, 0.010444641, -0.0095825195, -0.005405426, -0.042816162, -0.03050232, 0.022949219, 0.009727478, -0.02758789, -0.019165039, 0.03591919, -0.025268555, 0.036346436, -0.04812622, 0.025283813, 0.004081726, -0.06060791, -0.04248047, 0.0026836395, -0.08886719, 4.3213367e-05, -0.049041748, -0.07055664, -0.030471802, 0.066833496, 0.015914917, -0.051605225, -0.02557373, -0.036102295, 0.017044067, 0.0038318634, 0.008430481, -0.025650024, -0.03012085, -0.05407715, -0.0011949539, 0.046447754, -0.021728516, -0.006038666, 0.016113281, 0.01272583, 0.039001465, -0.029922485, 0.011299133, -0.0011024475, 0.043029785, 0.05038452, 0.023345947, 0.01675415, -0.03829956, 0.04196167, 0.04876709, -0.05218506, -0.01828003, 0.04083252, 0.016708374, 0.0030784607, -0.0069236755, -0.028396606, -0.028961182, -0.037872314, 0.006752014, -0.008346558, -0.03881836, -0.0012836456, -0.10144043, -0.022369385, -0.04498291, 0.0064468384, 0.029785156, -0.016799927, 0.015312195, -0.02394104, 0.022888184, -0.0064964294, -0.01158905, 0.04550171, -0.0076179504, 0.010444641, -0.030700684, 0.05255127, -0.0927124, 0.04067993, 0.023254395, -0.040740967, 0.018096924, -0.031921387, 0.0039749146, 0.0017223358, 0.052459717, -0.018569946, 0.020751953, -0.017364502, -0.018981934, -0.030166626, -0.005886078, 0.014816284, -0.04284668, 0.035369873, -0.019851685, -0.04345703, -0.014595032, 0.01777649, 0.03741455, -0.03173828, 0.024597168, -0.015701294, -0.032073975, 0.02444458, -0.02809143, -0.007762909, -0.007083893, 0.0635376, 0.019577026, -0.022079468, 0.07116699, 0.018722534, 0.044555664, 0.04449463, -0.010002136, -0.028152466, -0.038879395, 0.046569824, 0.021987915, -0.02772522, -0.02079773, 0.054992676, 0.032409668, 0.011604309, -0.012016296, 0.008338928, 0.041656494, 0.06161499, -0.0027256012, -0.013252258, -0.007003784, 0.031799316, -0.02067566, -0.015266418, -0.034484863, -0.05456543, 0.004512787, -0.05984497, 0.059448242, 0.062927246, -0.028533936, 0.07513428, 0.045410156, -0.02217102, 0.022842407, 0.051330566, -0.008232117, -0.005458832, 0.032196045, -0.035705566, -0.021057129, 0.0076904297, -0.04776001, 0.008468628, 0.015319824, -0.027862549, 0.010696411, -0.0025539398, -0.018249512, -0.06585693, -0.023849487, 0.004146576, 0.0010585785, 0.021987915, -0.04031372, -0.021972656, -0.015525818, 0.008758545, 0.0043411255, -0.024002075, 0.006893158, -0.0079193115, -0.031036377, -0.008026123, 0.010955811, -0.003932953, 0.0035057068, 0.0149002075, 0.034729004, 0.0074539185, -0.025146484, -0.0013561249, 0.009460449, -0.0084991455, 0.030548096, 0.01222229, 0.0038471222, 0.037384033, -0.0011100769, 0.011993408, -0.011276245, -0.020874023, 0.03729248, 0.0043296814, -0.07336426, -0.0069503784, 0.045135498, 0.0018129349, -0.024368286, 0.0054397583, -0.021835327, 0.0054893494, 0.0017004013, -0.019195557, -0.003282547, -0.019042969, 0.0029258728, -0.07733154, -0.04257202, 0.0018100739, 0.038482666, 0.014915466, -0.007461548, -0.048339844, -0.02659607, 0.01058197, -0.0072784424, -0.033477783, 0.002040863, -0.021652222, 0.0068893433, 0.023132324, -0.025344849, -0.009132385, -0.0116119385, -0.018814087, -0.002532959, 0.045074463, -0.024505615, -0.019821167, -0.04055786, -0.004638672, 0.008834839, 0.042633057, 0.046875, -0.04067993, 0.010978699, -0.01727295, -0.01121521, -0.052734375, -0.0041122437, 0.028121948, -0.001739502, -0.034851074, -0.035583496, 0.06652832, -0.011734009, -0.0014076233, 0.0005631447, 0.037902832, 0.016967773, 0.014419556, -0.093322754, -0.034423828, 0.013153076, -0.040802002, 0.026672363, -0.00045204163, -0.028640747, 0.049682617, 0.06311035, 0.006565094, -0.0041236877, -0.011642456, 0.009567261, -0.010749817, -0.009376526, -0.033233643, 0.011871338, -0.04663086, 0.032440186, -0.023986816, 0.061431885, 0.0592041, -0.005458832, -0.0054740906, 0.022033691, -0.017410278, -0.05960083, 0.004585266, -0.023803711, 0.018829346, 0.003627777, -0.023406982, 0.0045204163, -0.025817871, -2.7418137e-05, -0.030136108, -0.0014591217, -0.0053520203, -0.027877808, -0.012916565, -0.0154418945, 0.029937744, 0.013191223, 0.008872986, 0.008552551, 0.0015182495, -0.03186035, 0.048583984, -0.012275696, -0.01322937, 0.026733398, -0.0074272156, 0.0067443848, 0.007736206, 0.006690979, -0.093322754, 0.021911621, 0.056488037, -0.013847351, -0.013786316, -0.0046653748, -0.00022399426, -0.0132751465, -0.009086609, 0.035705566, -0.022201538, 0.0107040405, 0.022994995, 0.0181427, -0.015655518, 0.030822754, -0.011131287, 0.025482178, 0.01739502, -0.045410156, 0.014266968, -0.00024056435, -0.006099701, -0.055877686, 0.037475586, -0.006126404, -0.027282715, -0.035705566, 0.015945435, 0.011833191, 0.012199402, 0.010665894, -0.044830322, 0.040130615, -0.04171753, -0.0158844, 0.014053345, 0.08227539, -0.04232788, -0.014533997, 0.05819702, 0.014572144, -0.06518555, 0.033599854, -0.018173218, 0.012466431, 0.011642456, -0.028671265, 0.01826477, 0.00894928, -0.039215088, -0.016204834, -0.029769897, 0.010520935, -0.041290283, 0.0005803108, -0.036102295, -0.0058555603, -0.03302002, 0.015197754, 0.043762207, 0.01777649, -0.045440674, -0.028518677, -0.02508545, -0.0061950684, -0.037628174, 0.059509277, -0.009880066, -0.019760132, 0.04434204, 0.020751953, 0.016845703, 0.027786255, -0.028533936, 0.013679504, 0.014427185, -0.0030498505, -0.0023994446, -0.030761719, 0.05545044, -0.022979736, -0.04660034, -0.007160187, 0.04711914, 0.011749268, -0.00541687, 0.071777344, 0.0362854, -0.003982544, 0.026168823, -0.024780273, -0.027877808, -0.0008993149, 0.0042877197, -0.07635498, -0.025558472, -0.022583008, -0.0009870529, -0.010437012, -0.009010315, -0.02394104, 0.025482178, -0.028167725, -0.016189575, -0.024887085, -0.009887695, -0.0070495605, -0.004272461, 0.007713318, -0.024017334, 0.021957397, -0.029418945, 0.032226562, -0.038024902, -0.05795288, -0.03768921, 0.025253296, 0.04373169, 0.019851685, 0.0005187988, 0.0060195923, -0.04675293, -0.0011339188, 0.00017666817, -0.035095215, 0.01259613, 0.024230957, 0.027862549, 0.007144928, 0.032470703, -0.0032367706, -0.0016222, 0.0070724487, -0.00043153763, 0.014373779, -0.027526855, -0.033996582, 0.018295288, 0.035186768, 0.024810791, 0.009117126, 0.01537323, -0.042510986, -0.027877808, 0.014816284, 0.016799927, -0.03656006, -0.022598267, -0.02243042, -0.01361084, 0.029434204, -0.015434265, 0.021774292, -0.021636963, 0.060668945, -0.049987793, 0.0073394775, -0.013877869, -0.03933716, 0.04257202, -0.044189453, 0.050872803, -0.061065674, 0.01033783, 0.025665283, -0.03994751, -0.020324707, 0.0056495667, 0.026473999, -0.0012311935, 0.037384033, -0.038085938, 0.004085541, 0.04446411, -0.056793213, -0.016174316, -0.038604736, -0.019729614, -0.05307007, -0.039886475, -0.02154541, 0.013687134, 0.0066337585, -0.0061149597, 0.062347412, -0.011795044, 0.0044174194, 0.0010547638, 0.011955261, -0.03491211, -0.007457733, -0.011070251, -0.016998291, 5.4836273e-06, 0.0025138855, -0.048065186, -0.0016965866, 0.03729248, 0.009887695, -0.010169983, -0.010902405, 0.037231445, 0.011993408, -0.021942139, -0.027511597, -0.036590576, 0.060516357, 0.047210693, -0.03842163, 0.00843811, 0.0020198822, 0.04046631, 0.0032539368, -0.013305664, 0.018081665, -0.05911255, 0.017959595, 0.03189087, 0.008041382, -0.02848816, -0.043029785, -0.023223877, -0.00019848347, 0.006023407, 0.00038909912, -0.014984131, 0.029663086, 0.018188477, -0.0036849976, 0.034240723, -0.05819702, 0.019180298, 0.028289795, 0.025421143, 0.0069465637, 0.062805176, -0.0044441223, -0.012413025, -0.009506226, -0.020736694, 0.010643005, -0.009986877, 0.004634857, -0.017654419, 0.015487671, -0.008560181, 0.0038108826, -0.018051147, -0.010353088, 0.003255844, -0.007183075, 0.011619568, -0.03778076, -0.047424316, -0.025543213, -0.02999878, -0.068481445, 0.04107666, -0.023910522, -0.017669678, 0.019058228, -0.009063721, -0.003627777, -0.023635864, 0.025665283, 0.01285553, 0.028823853, -0.008522034, 0.06317139, -0.026550293, -0.07543945, -0.06512451, 0.02809143, -0.08782959, -0.011222839, -0.02545166, 0.032165527, 0.026931763, 0.00041365623, 0.004802704, 0.039123535, -0.00059843063, -0.0024147034, -0.0036029816, -0.051330566, -0.0096206665, -0.009223938, -0.007827759, -0.016998291, -0.03010559, 0.039611816, 0.0068130493, 0.03152466, -0.0064811707, 0.0054855347, -0.08026123, 0.0026283264, -0.02659607, 0.022567749, -0.036895752, -0.0031585693, 0.035064697, -0.019073486, -0.03744507, 0.06677246, 0.0362854, 0.047027588, 0.002746582, -0.03353882, 0.045806885, -0.008483887, 0.00062942505, -0.057495117, -0.019927979, -0.003955841, 0.014755249, -0.045776367, 0.011230469, 0.027175903, -0.026626587, -2.7298927e-05, 0.03010559, 0.015853882, 0.003704071, 0.0001770258, 0.0031280518, 0.012519836, -0.0084991455, 0.024337769, -0.025848389, 0.015090942, 0.019958496, 0.015449524, -0.023284912, 0.02670288, -0.026519775, -0.011207581, 0.012672424, 0.002313614, -0.0071792603, -0.0519104, 0.02381897, 0.040649414, 0.00969696, -0.01852417, 0.0012893677, -0.032348633, -0.029281616, 0.008811951, 0.04019165, 0.01965332, -0.066345215, 0.018676758, 0.015975952, -0.0003376007, -0.037902832, -0.06414795, -0.06262207, 0.023712158, 0.008285522, 0.0042686462, 0.036071777, 0.009376526, 0.0054397583, 0.045562744, -4.416704e-05, -0.00076293945, -0.009346008, 0.03857422, 0.022903442, 0.0003824234]}, "B07XDJKQ22": {"id": "B07XDJKQ22", "original": "Brand: VIVOHOME\nName: VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

      Features:
      -The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
      -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
      -The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
      -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
      -Great stove for camping; It will really simplify your canning process

      Product Specification:
      -Rated output: 36,000 total BTU/hr, for 18,000 BTU each
      -Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
      -Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
      -Note: The product is equipped with a 10 PSI regulator, and it's also suitable for the 20 PSI regulator.
      -Stove Height: 29\" without windscreen /35\" total

      Package Includes\uff1a
      -1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

      Product Warranty:
      -We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended\n2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "metadata": {"Name": "VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr", "Brand": "VIVOHOME", "Description": "Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

      Features:
      -The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
      -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
      -The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
      -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
      -Great stove for camping; It will really simplify your canning process

      Product Specification:
      -Rated output: 36,000 total BTU/hr, for 18,000 BTU each
      -Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
      -Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
      -Note: The product is equipped with a 10 PSI regulator, and it's also suitable for the 20 PSI regulator.
      -Stove Height: 29\" without windscreen /35\" total

      Package Includes\uff1a
      -1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

      Product Warranty:
      -We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.", "Features": "GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended\n2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.030212402, -0.023330688, -0.011947632, -0.06793213, -0.012504578, -0.009132385, -0.010879517, 0.020690918, -0.047668457, 0.016418457, 0.013389587, 0.027053833, -0.035461426, -0.035217285, 0.02670288, -0.03036499, 0.014823914, 0.0055503845, 0.0014247894, -0.007583618, 0.013626099, 0.015037537, -0.04095459, 0.0635376, 0.016281128, -0.0026454926, -0.078552246, 0.010269165, 0.009681702, 0.005332947, 0.0019521713, 0.036712646, 0.028381348, -0.016921997, -0.0131073, -0.06604004, -0.036499023, -0.008331299, -0.04824829, 0.033416748, 0.0066184998, -0.020935059, 0.016906738, -0.033477783, 0.0025367737, 0.0019054413, 0.0024700165, -0.054382324, -0.003604889, 0.027511597, -0.01928711, -0.026473999, -0.011924744, -0.017913818, -0.0037269592, -0.016281128, 0.032562256, -0.03164673, 0.009613037, -0.031402588, -0.017745972, 0.0007176399, 0.0395813, 0.033172607, -0.04623413, 0.032073975, -0.00066804886, -0.015457153, 0.045562744, -0.04574585, -0.050079346, 0.025283813, 0.044036865, 0.047332764, -0.026992798, -0.066711426, -0.0014209747, -0.010444641, 0.06390381, -0.021194458, 0.005443573, 0.0015439987, 0.0018901825, -0.021850586, 0.024230957, 0.0019454956, -0.009857178, -0.015792847, -0.03768921, 0.0051002502, -0.022506714, -0.053833008, -0.050933838, 0.050994873, 0.016586304, 0.005142212, -0.04296875, -0.057434082, 0.036346436, 0.029144287, 0.011650085, -0.033569336, 0.030426025, 0.0066604614, 0.009460449, 0.075805664, 0.008880615, 0.04385376, 0.032409668, -0.001326561, 0.023803711, -0.00071144104, 0.0021438599, -0.047027588, 0.0046539307, -0.016311646, -0.028274536, 0.033294678, 0.024490356, -0.02670288, -0.009803772, -0.009674072, -0.00016450882, 0.03277588, -0.019302368, 0.007331848, -0.0079193115, -0.016464233, -0.011207581, 0.023895264, -0.0028076172, -0.022125244, -0.029815674, 0.0748291, 0.012420654, -0.014953613, 0.011245728, 0.009056091, -0.001077652, -0.017486572, 0.01285553, -0.02243042, 0.0028076172, 0.009559631, -0.0027599335, 0.021865845, 0.04647827, 0.011787415, -0.019302368, -0.045288086, -0.020263672, 0.0077171326, -0.0011377335, 0.026428223, 0.024765015, 0.006061554, 0.03466797, -0.025360107, 0.019210815, -0.018478394, -0.003955841, -0.012557983, 0.0041389465, 0.0030765533, -0.017089844, 0.030593872, 0.0068359375, -0.0005888939, 0.024642944, 0.04135132, -0.0141067505, 0.04232788, 0.035705566, 0.02923584, -0.00064992905, -0.0073280334, -0.014175415, 0.059265137, 0.0625, -0.101257324, -0.06628418, -0.059509277, 0.13598633, -0.047454834, -0.02468872, -0.02961731, -0.014137268, -0.048583984, 0.042755127, -0.008590698, 0.032409668, 0.015655518, -0.00018239021, -0.012817383, 0.012084961, -0.013763428, -0.029830933, 0.004032135, -0.013832092, 0.009902954, 0.007610321, 0.006893158, -0.010826111, 0.02041626, -0.04559326, 0.011497498, -0.026290894, 0.019577026, 0.021728516, 0.029464722, -0.0022201538, 0.011062622, 0.01637268, -0.06793213, -0.029510498, -0.015899658, 0.004722595, 0.03692627, 0.009292603, 0.008872986, 0.029312134, -0.019561768, 0.045715332, 0.03994751, 0.029586792, -0.0077171326, -0.006099701, -0.01852417, -0.00082826614, 0.016662598, -0.058044434, 0.015914917, 0.04547119, 0.06616211, -0.011428833, 0.015945435, 0.057006836, 0.033111572, -0.012611389, -0.01927185, 0.010726929, -0.024597168, -0.034301758, 0.0044403076, -0.02670288, -0.030914307, 0.013442993, -0.0012235641, -0.025512695, 0.023010254, -0.00074863434, 0.005176544, 0.010940552, -0.05529785, -0.03265381, 0.03463745, -0.038024902, -0.0060768127, 0.009529114, -0.01285553, 0.016143799, 0.049438477, 0.017913818, 0.019760132, 0.0040016174, 0.013923645, 0.017059326, 0.014350891, -0.028701782, 0.010559082, 0.024719238, 0.031951904, -0.022872925, 0.0020389557, 0.057281494, -0.06365967, -0.02053833, 0.012718201, -0.03717041, -0.025985718, -0.008049011, 0.025527954, -0.021316528, -0.0043907166, 0.0038490295, -0.02079773, -0.0044403076, 0.0022220612, -0.013458252, 0.00598526, 0.04272461, -0.020339966, -0.05328369, 0.019454956, -0.039245605, -0.026611328, 0.0993042, 0.0079574585, 0.010421753, -0.0015096664, 0.029388428, 0.036834717, -0.04147339, 0.028442383, 0.014251709, -0.041015625, 0.01499939, 0.037078857, 0.030532837, -0.03024292, 0.007865906, 0.034942627, 0.03616333, -0.014205933, 0.06604004, 0.025924683, 0.0042266846, 0.038726807, 0.033050537, 0.044921875, -0.023040771, -0.008239746, -0.0023727417, -0.016311646, 0.02720642, -0.013114929, -0.020065308, 0.001584053, -0.024978638, 0.015052795, 0.034729004, 0.001458168, 0.002506256, 0.012161255, 0.009216309, -0.0028247833, -0.014190674, -0.010955811, -0.015068054, -0.02760315, -0.0019721985, -0.006778717, 0.033081055, 0.012786865, -0.05230713, -0.06359863, 0.01108551, -0.016738892, -0.03793335, -0.030914307, 0.07891846, -0.0050811768, 0.039978027, -0.027862549, 0.034729004, -0.059631348, -0.06762695, -0.026657104, -0.030166626, -0.07336426, 0.0048294067, -0.022598267, -0.052886963, -0.04714966, 0.060638428, -0.012741089, -0.059173584, -0.03466797, -0.015701294, -0.013725281, 0.07128906, -0.0061302185, -0.07019043, -0.027252197, -0.048980713, -0.028213501, 0.06439209, -0.0020198822, 0.0024337769, 0.021820068, 0.03604126, 0.026107788, 0.0020923615, -0.0151901245, 0.004135132, 0.039276123, 0.07183838, 0.021743774, 0.038116455, -0.03640747, 0.030944824, 0.047576904, -0.051483154, -0.015464783, 0.029632568, 0.023986816, -0.016479492, -0.024108887, -0.04034424, -0.019622803, -0.03274536, -0.011070251, -0.0184021, -0.034606934, 0.039276123, -0.1005249, 0.0181427, -0.0690918, 0.0046424866, 0.037139893, -0.0046424866, 0.021881104, 0.0115356445, 0.014427185, 0.0062026978, -0.014549255, 0.064331055, -0.0040016174, 0.02835083, -0.04309082, 0.046203613, -0.068847656, 0.041046143, 0.012802124, -0.06274414, -0.005302429, -0.021850586, 0.037322998, -0.0013284683, 0.023635864, -0.03567505, -0.001241684, -0.04360962, -0.029846191, 0.012184143, 0.031585693, 0.008270264, -0.0017547607, 0.01096344, 0.007133484, -0.06768799, -0.03060913, 0.012397766, 0.009628296, 0.010368347, -0.014060974, -0.013160706, -0.045135498, 0.03161621, -0.035583496, 0.0129470825, -0.0049209595, 0.07055664, 0.022109985, -0.006038666, 0.07128906, -0.020965576, 0.019866943, 0.07324219, -0.018585205, 0.004749298, -0.010253906, -0.04916382, 0.028900146, -0.035461426, -0.022567749, 0.040283203, 0.0064048767, 0.011413574, -0.0259552, -0.040405273, 0.08343506, 0.00844574, -0.0018234253, -0.0051612854, -0.009796143, 0.029632568, 0.00699234, 0.00919342, -0.033111572, -0.02406311, -0.022384644, -0.056884766, 0.075683594, 0.0463562, -0.021957397, 0.06088257, 0.09307861, -0.018188477, 0.0066337585, 0.027572632, -0.024673462, 0.028457642, -0.036590576, -0.043426514, 0.00390625, 0.021438599, -0.02810669, 0.010437012, 0.00724411, -0.08947754, 0.02607727, 0.06774902, -0.021514893, -0.030456543, -0.021835327, 0.0010328293, -0.008148193, 0.033966064, -0.012229919, 0.0012350082, -0.006389618, -0.037139893, -0.0149002075, -0.024291992, -0.0018911362, -0.002275467, -0.018981934, -0.00042676926, 0.001914978, 0.005657196, 0.011047363, 0.025878906, 0.020828247, 0.00077676773, -0.007247925, 0.0066833496, 0.021499634, -0.031036377, -0.0015439987, 0.050567627, 0.03161621, 0.016418457, -0.013214111, -0.02142334, -0.007637024, -0.0020389557, 0.015853882, -0.012611389, -0.05432129, 0.01751709, 0.056915283, 0.010955811, -0.038269043, -0.0054244995, -0.024795532, -0.040527344, 0.030670166, -0.06665039, 0.035614014, -0.016326904, -0.022216797, -0.05822754, -0.053344727, -0.02897644, 0.017654419, -0.025802612, 0.015823364, -0.0009174347, -0.02482605, 0.0053749084, -0.010368347, -0.025482178, 0.015510559, -0.0024852753, 0.010543823, 0.014129639, -0.022018433, 0.013763428, -0.026412964, -0.030059814, -0.031555176, 0.032104492, 0.023208618, -0.022567749, -0.017547607, 0.011764526, 0.0069999695, 0.043426514, 0.024673462, -0.026260376, 0.0028877258, -0.0129776, -0.011482239, -0.030273438, -0.009559631, 0.03463745, -0.010139465, 0.0073013306, 0.008033752, 0.06524658, -0.03265381, 0.033935547, -0.0030002594, 0.018051147, 0.0052375793, 0.0075302124, -0.14660645, -0.08288574, -0.01890564, -0.04748535, 0.025314331, -0.010391235, -0.030914307, 0.051849365, 0.07635498, 0.020004272, -0.039093018, -0.023910522, 0.0027427673, -0.014297485, 0.038330078, -0.029464722, -0.03060913, -0.028320312, 0.020355225, 0.019744873, -0.007843018, 0.015350342, -0.024124146, 0.017974854, 0.004924774, 0.010566711, 0.011291504, 0.02217102, 0.020950317, -0.015525818, 0.022277832, -0.01449585, -0.014923096, -0.024658203, -0.024841309, -0.009742737, -0.04812622, 0.025512695, 0.027450562, 0.014846802, 0.016311646, -0.0064086914, 0.014602661, 0.01449585, 0.0042915344, -0.010192871, 0.016479492, 0.024047852, -0.008422852, 0.005996704, 0.009048462, -0.01638794, -0.012016296, 0.003660202, -0.0009765625, -0.04660034, 0.028533936, 0.028549194, 0.009475708, -0.027389526, 0.019622803, 0.04043579, -0.019958496, -0.064331055, 0.029129028, 0.01828003, -0.041229248, 0.05505371, 0.013473511, 0.0067749023, 0.030029297, -0.0042877197, 0.0262146, -0.0022258759, -0.005470276, 0.05178833, 0.046020508, 0.004550934, -0.060058594, 0.032043457, -0.03173828, -0.06488037, 0.008102417, 0.019332886, 0.019073486, -0.01108551, 0.04296875, -0.049194336, 0.046875, -0.033081055, -0.024017334, 0.019638062, 0.05041504, -0.02357483, -0.006969452, 0.033294678, -0.016326904, -0.05230713, 0.0082092285, -0.043670654, 0.04220581, 0.0017642975, -0.00037932396, 0.0032234192, 0.028945923, -0.017059326, -0.0025501251, -0.014701843, 0.0035171509, -0.009178162, -0.010986328, -0.01586914, -0.001698494, -0.023773193, 0.015113831, 0.0004940033, 0.0052833557, -0.07269287, -0.011978149, 0.010185242, -0.013191223, 0.0019426346, 0.07086182, -0.007484436, -0.030517578, 0.020217896, -0.021148682, 0.018875122, -0.036071777, 0.002702713, -0.010635376, -0.010032654, -0.016693115, -0.028457642, 0.0013570786, 0.055267334, -0.037353516, -0.046844482, 0.0043258667, 0.04714966, 0.0076675415, 0.0054359436, 0.056030273, 0.034973145, -0.00090646744, 0.041656494, -0.007160187, -0.043395996, 0.040100098, 0.0043754578, -0.08380127, 0.020355225, -0.017944336, 0.022125244, 0.018127441, -0.046905518, -0.009086609, 0.027893066, -0.008239746, -0.017074585, 0.011558533, -0.02305603, 0.017044067, 0.0009384155, 0.00274086, -0.017959595, -0.0010690689, -0.021530151, -0.008613586, -0.008857727, -0.026748657, 0.004245758, 0.014724731, 0.008514404, -0.024108887, -0.013130188, 0.0015640259, 0.019042969, 0.05105591, 0.0090408325, -0.029006958, -0.0074691772, -0.012641907, 0.009925842, -0.0016727448, 0.01852417, 0.008712769, -0.027130127, 0.03869629, 0.014389038, 0.025482178, -0.061035156, -0.045135498, 0.02670288, 0.04824829, 0.028900146, 0.029129028, 0.04876709, -0.0051498413, -0.04611206, 0.008079529, 4.8995018e-05, -0.03604126, -0.04562378, -0.013114929, -0.042236328, 0.039001465, -0.016693115, 0.033477783, -0.042022705, 0.05899048, -0.012336731, 0.026397705, 0.0041503906, -0.033081055, 0.010269165, -0.018676758, 0.058929443, 0.0019321442, 0.014434814, 0.018600464, -0.019561768, -0.050445557, 0.021453857, 0.030914307, -0.029891968, 0.04525757, -0.024032593, -0.008872986, 0.009284973, -0.0046157837, -0.015808105, -0.049224854, -0.009803772, -0.056549072, -0.053985596, -0.044769287, -0.011985779, 0.03186035, -0.023284912, 0.0904541, -0.02810669, 0.014167786, 0.023361206, -0.015945435, 0.029586792, 0.019073486, -0.019119263, 0.016098022, 0.0063095093, -0.037322998, -0.026062012, 0.022277832, 0.01777649, 0.008422852, 0.014450073, -0.023925781, 0.013175964, 0.005264282, -0.018096924, -0.03918457, -0.056762695, 0.03878784, 0.04598999, -0.044128418, -0.015296936, -0.004550934, 0.03314209, 0.019042969, -0.014923096, 0.01209259, -0.045135498, 0.009422302, 0.025299072, 0.060638428, -0.0024795532, -0.010246277, -0.013137817, 0.005290985, 0.026763916, -0.023132324, 0.016540527, -0.003458023, -0.035247803, -0.036834717, 0.0054244995, -0.04321289, 0.01878357, -0.046417236, 0.021255493, 0.053497314, -0.0075416565, -0.0055274963, -0.023910522, 0.013664246, 0.016418457, 0.011207581, 0.042663574, 0.0033054352, -0.016281128, 0.016845703, -0.04324341, 0.04611206, -0.045043945, -0.024765015, 0.009468079, -0.014022827, -0.008834839, -0.026473999, -0.043884277, -0.016921997, 0.00045657158, -0.062408447, 0.027893066, -0.002067566, -0.010948181, 0.0038852692, 0.0050201416, 0.0032577515, -0.024032593, -0.009613037, 0.007083893, 0.023910522, -0.011299133, 0.06329346, -0.03604126, -0.047210693, -0.03515625, 0.029830933, -0.0657959, -0.027648926, 0.05407715, -0.035949707, -0.017562866, 0.0039901733, 0.027877808, 0.05065918, 0.041534424, -0.013076782, 0.013221741, -0.027770996, -0.017837524, 0.03677368, 0.010879517, -0.029144287, -0.0059051514, 0.015151978, 0.004016876, -3.2007694e-05, 0.03112793, -0.014335632, -0.06878662, -0.024551392, -0.025619507, 0.0033454895, -0.033081055, 0.006828308, 0.029907227, 0.032592773, 0.0051956177, 0.04248047, 0.034942627, -0.027893066, 0.029663086, -0.024002075, 0.03289795, -0.01360321, -0.027191162, -0.050445557, -0.014816284, -0.0022678375, -0.015075684, -0.0657959, 0.0128479, 0.021942139, -0.013374329, -0.014518738, 0.04837036, 0.019485474, -0.016784668, 0.010650635, -0.007789612, -0.03112793, 0.0057868958, 0.014984131, 0.019332886, -0.07293701, 0.043670654, -0.019760132, -0.008460999, 0.0018854141, -0.023925781, -0.013221741, -0.021728516, 0.00466156, 0.0028629303, -0.057647705, 0.04598999, 0.050079346, 0.02456665, -0.017684937, 0.015151978, -0.040893555, -0.026290894, -0.0024852753, 0.009231567, 0.014961243, -0.0023288727, -0.0038776398, -0.003578186, 0.025238037, -0.034118652, -0.06964111, -0.045318604, 0.015281677, -0.0057640076, 0.008010864, 0.041625977, -0.024749756, 0.017227173, 0.055267334, -0.00095176697, -0.015449524, 0.012367249, 0.06762695, 0.018356323, -0.00024557114]}, "B01DAOM5SW": {"id": "B01DAOM5SW", "original": "Brand: AmazonBasics\nName: Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set\nDescription: \nFeatures: Durable, charcoal grey finish patio heater with heat output of 46,000 BTU's\nHeater features a piezo ignition and safety auto shut-off tilt valve\nStandup patio heater cover protects against rain, snow and other outdoor elements\nUsing click-close straps, cover easily snaps around heater to secure the cover on windy days\nCover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater\n", "metadata": {"Name": "Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set", "Brand": "AmazonBasics", "Description": "", "Features": "Durable, charcoal grey finish patio heater with heat output of 46,000 BTU's\nHeater features a piezo ignition and safety auto shut-off tilt valve\nStandup patio heater cover protects against rain, snow and other outdoor elements\nUsing click-close straps, cover easily snaps around heater to secure the cover on windy days\nCover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.020584106, -0.0022773743, -0.04031372, -0.051116943, 0.010353088, -0.023345947, 0.008560181, 0.035217285, -0.066223145, 0.034820557, -0.0047454834, 0.028945923, -0.013000488, -0.011230469, 0.016464233, -0.029953003, 0.033325195, -0.016326904, 0.016464233, -0.013969421, 0.0052452087, 0.011123657, 0.002450943, 0.0927124, 0.0012655258, -0.028823853, 0.07897949, -0.006290436, 0.025115967, -0.012161255, 0.025939941, -0.002773285, 0.037597656, -0.0007696152, -0.018188477, -0.029022217, 0.014518738, -0.018661499, -0.017318726, 0.028961182, 0.04067993, -0.031585693, -0.03036499, -0.016799927, -0.022033691, -0.015960693, 0.039215088, -0.013381958, 0.0020370483, -0.0048828125, 0.014663696, 0.016601562, 0.034423828, -0.031402588, -0.015701294, 0.010635376, 0.041625977, -0.020980835, 0.02230835, -0.027191162, -0.028823853, 0.012168884, 0.032684326, -0.005241394, -0.016479492, 0.003435135, 0.07849121, 0.0036354065, 0.043762207, -0.03918457, -0.025894165, 0.061706543, -0.00819397, 0.030593872, -0.040100098, -0.04244995, 0.045532227, -0.011207581, 0.001294136, 0.026992798, 0.005405426, 0.0012149811, 0.02507019, -0.023406982, 0.0036849976, -0.021743774, -0.00957489, -0.015808105, -0.024627686, -0.025115967, -0.0119018555, -0.024353027, -0.033599854, 0.058929443, 0.0022640228, 0.006904602, -0.053710938, -0.05078125, 0.022705078, 0.0012388229, 0.042755127, -0.03112793, 0.010391235, -0.0037021637, -0.0068244934, 0.029586792, 0.0021781921, 0.0024471283, 0.015731812, 0.014404297, -0.025741577, 0.020141602, -0.010406494, -0.047332764, -0.00472641, -5.877018e-05, -0.048583984, 0.028823853, 0.038085938, -0.024536133, -0.042236328, -0.034362793, 0.019760132, 0.04147339, 0.047698975, 0.052642822, -0.010520935, 0.022323608, -0.026947021, 0.052459717, -0.008285522, -0.035461426, 0.0060920715, 0.08062744, 0.018844604, -0.015457153, 0.064086914, 0.010826111, 0.021606445, -0.0178833, 0.027175903, 0.013412476, 0.0003798008, -0.003917694, 0.009803772, 0.023406982, 0.022384644, 0.0021915436, -0.011306763, -0.029403687, -0.0099487305, 0.01171875, 0.043762207, 0.03881836, -0.05227661, 0.04135132, 0.04837036, -0.028442383, -0.07574463, -0.069885254, -0.021499634, -0.011726379, 0.00466156, -0.0054626465, -0.023223877, 0.024871826, 0.019119263, 0.0054092407, 0.017684937, 0.08111572, -0.023956299, -0.0029582977, 0.014877319, 0.02609253, -0.019226074, 0.001001358, -0.029876709, 0.074523926, 0.06665039, -0.12524414, -0.07342529, -0.08013916, 0.13513184, -0.03878784, 0.0027217865, -0.024047852, 0.020690918, -0.006412506, 0.0032672882, 0.0030002594, 0.011192322, 0.011116028, -0.00014972687, -0.020050049, 0.0064430237, -0.013069153, -0.059448242, 0.00035238266, -0.015090942, 0.010421753, 0.0036830902, 0.0121154785, 0.009178162, -0.0317688, 0.001543045, -0.014556885, 0.0124053955, 0.011329651, 0.0067367554, 0.04626465, 0.0020523071, 0.03201294, -0.0045928955, -0.06573486, -0.0001951456, 0.025939941, -0.004283905, -0.0019369125, -0.040649414, -0.0038318634, -0.023925781, -0.0009870529, -0.023529053, 0.040039062, 0.031280518, -0.035583496, 0.006706238, -0.026138306, 0.03894043, -0.006210327, 0.015357971, 0.0104904175, 0.043121338, 0.039916992, -0.0016679764, 0.0390625, 0.08062744, 0.033599854, -0.024780273, -0.019836426, -0.0025501251, -0.039031982, -0.019500732, 0.06011963, -0.036224365, -0.009346008, 0.012458801, 0.026901245, -0.016799927, 0.050872803, 0.046569824, 0.019744873, -0.014259338, -0.019058228, -0.030883789, 0.029434204, -0.012176514, -0.006591797, -0.0027389526, 0.0104599, 0.0039367676, 0.04638672, 0.009239197, 0.0045318604, 0.032104492, 0.008155823, 0.05581665, 0.050109863, 0.041931152, -0.021408081, -0.018493652, -0.0036582947, -0.01134491, 0.03567505, 0.009262085, -0.04119873, -0.019088745, 0.00041675568, -0.030975342, -0.0070228577, 0.01109314, 0.005996704, -0.024673462, -0.005382538, 0.04763794, 0.039215088, -0.0072517395, 0.0034370422, -0.0287323, 0.006969452, 0.029052734, -0.0010900497, -0.020339966, 0.010955811, -0.0025959015, -0.008598328, 0.047210693, -0.0019035339, 0.024642944, -0.009017944, -0.008758545, 0.031707764, -0.021026611, 0.0009317398, -0.0015583038, 0.0027885437, 0.004245758, -0.0075569153, 0.008049011, -0.011909485, -0.0008583069, 0.04763794, 0.021728516, -0.0003335476, 0.057922363, 0.022491455, 0.03665161, 0.043640137, 0.05847168, 0.010810852, -0.017440796, 0.031280518, -0.007965088, -0.012298584, 0.031082153, -0.00042915344, -0.025665283, -0.009140015, -0.0050239563, 0.009056091, 0.007320404, -0.024139404, -0.026153564, -0.036254883, 0.0019111633, 0.010978699, -0.009796143, 0.030181885, 0.006843567, 0.0026130676, 0.030700684, 0.032684326, 0.0035152435, -1.591444e-05, 0.015487671, 0.007835388, 0.00018179417, 0.027908325, -0.0680542, 0.015342712, -0.020370483, -0.042510986, -0.018966675, -0.058044434, -0.032348633, 0.06774902, 0.007335663, -0.053497314, 0.02444458, -0.06237793, -0.006603241, 0.02281189, -0.006538391, 0.026000977, -0.0037574768, -0.03604126, 0.013542175, 0.0064697266, -0.03567505, 0.013282776, 0.051971436, -0.013771057, -0.084350586, -0.035949707, -0.07354736, -0.0026817322, 0.009010315, -0.03704834, 0.0035037994, -0.007205963, 0.010765076, 0.0033187866, 0.020065308, -0.00042295456, -0.007843018, 0.0418396, 0.051940918, 0.030014038, -0.01247406, -0.030685425, -0.015548706, 0.030136108, -0.042510986, 0.008743286, 0.010726929, -0.00944519, 0.0005745888, -0.0037174225, -0.07501221, -0.01651001, -0.082214355, 0.012466431, 0.0035037994, -0.022949219, 0.0126953125, -0.070007324, -0.023468018, -0.05114746, 0.015991211, 0.052001953, -0.013839722, -0.024978638, -0.023284912, -0.03112793, -0.019363403, 0.020950317, 0.04159546, 0.006626129, 0.03555298, -0.05493164, -0.00217247, -0.024765015, 0.008972168, 0.0034675598, -0.036376953, -0.0038833618, -0.0020198822, 0.040283203, -0.028656006, 0.0048675537, 0.0016479492, -0.019897461, -0.0059509277, -0.017318726, -0.034851074, 0.0099487305, 0.014343262, 0.032714844, 0.022109985, -0.019332886, -0.021942139, -0.02557373, 0.029006958, 0.056640625, 0.016174316, 0.010040283, -0.03778076, -0.029647827, -0.00856781, -0.035888672, -0.016235352, 0.013954163, 0.032928467, 0.027282715, 0.008995056, 0.06329346, 0.021102905, 0.045196533, 0.0074005127, -0.000998497, -0.0068969727, -0.0362854, 0.051849365, 0.011558533, 0.018936157, -0.025787354, 0.029556274, 0.035095215, 0.023757935, -0.013412476, 0.027557373, -0.0024089813, -0.017486572, -0.013671875, 0.033477783, 0.017028809, -0.030151367, 0.00415802, -0.014045715, 0.026931763, -0.0546875, -0.004787445, -0.042297363, 0.081726074, 0.06817627, -0.031677246, 0.10101318, 0.06878662, -0.011642456, 0.05206299, 0.041259766, 0.054382324, -0.003271103, 0.105773926, 0.0024433136, -0.02684021, -0.0037002563, 0.03387451, -0.00504303, -0.019714355, -0.049804688, 0.0070114136, 0.021438599, -0.007537842, -0.060760498, 0.009216309, 0.050689697, -0.025741577, 0.002407074, -0.07305908, 0.025817871, -0.055999756, 0.026168823, 0.007396698, -0.020370483, -0.044799805, 0.029571533, -0.011932373, -0.03665161, 0.026763916, 0.04510498, 0.01524353, 0.005874634, 0.0058937073, 0.03781128, 0.005344391, -0.02406311, -0.013519287, 0.00315094, -0.003955841, -0.011932373, -0.015510559, 0.024780273, 0.045532227, -0.006828308, 0.028625488, -0.034362793, -0.0053138733, -0.022537231, -0.02508545, -0.010673523, 0.017868042, 0.021896362, 0.018707275, 0.018218994, -0.033569336, -0.022735596, -0.000849247, -0.024124146, 0.017807007, -0.052520752, -0.041381836, -0.06225586, -0.025817871, -0.0066375732, 0.008743286, -0.039886475, 0.011169434, -0.01285553, 0.0078125, 0.0060653687, -0.006866455, -0.043121338, 0.005794525, 0.011047363, -0.010559082, 0.042541504, -0.019866943, 0.027130127, -0.042297363, -0.018417358, -0.005168915, 0.085632324, 0.011688232, 0.0036411285, -0.038269043, 0.029418945, 0.0021648407, 0.035003662, 0.002878189, -0.06573486, 0.04434204, 0.04812622, 0.05899048, -0.095336914, 0.0039043427, 0.07330322, -0.060302734, -0.048706055, -0.03225708, 0.070129395, 0.011131287, -0.0055656433, 0.021835327, 0.0032749176, 0.01826477, -0.038970947, -0.056610107, 0.040863037, 0.0012960434, -0.060516357, 0.036895752, 0.0061073303, -0.01725769, 0.038909912, 0.07336426, -0.012237549, -0.021057129, -0.02432251, 0.013366699, -0.0054473877, 0.018539429, 0.020996094, -0.025985718, 0.0064735413, 0.017410278, -0.023498535, 0.02420044, 0.045440674, -0.005832672, 0.029647827, 0.02609253, 0.012641907, 0.0036067963, 0.0014743805, 0.0, -0.021484375, 0.0042495728, -0.006137848, 0.02166748, 0.0090408325, -0.012023926, -0.012954712, -0.015716553, 0.0049934387, 0.012413025, -0.01424408, -0.013290405, -0.024353027, -0.034851074, 0.019622803, 0.022247314, 0.012001038, -0.081848145, 0.01586914, -0.030975342, -0.038726807, 0.01701355, -0.04257202, 0.0011634827, -0.025360107, 0.010635376, -0.0019159317, 0.005264282, 0.01525116, 0.0015230179, -0.024353027, 0.04852295, -0.02458191, 0.0052986145, -0.04916382, 0.0007882118, 0.011817932, -0.018417358, 0.010787964, 0.0020942688, -0.0068893433, 0.048706055, -0.03277588, 0.03515625, 0.022140503, -0.0034389496, 0.027328491, 0.02166748, 0.04650879, 0.007286072, -0.022201538, 0.0008826256, -0.022949219, -0.008125305, 0.00630188, 0.0039253235, 0.006877899, -0.009895325, -0.013893127, 0.060577393, -0.017456055, -0.045532227, -0.00497818, 0.030380249, -0.013572693, 0.02772522, 0.0036296844, 0.011268616, -0.016677856, 9.864569e-05, -0.018417358, 0.01687622, -0.030654907, 0.00819397, 0.063964844, 0.004962921, -0.018630981, -0.020141602, 0.016937256, -0.0030841827, -0.078125, 0.0035305023, 0.0057792664, 0.005290985, 0.005088806, 0.008811951, 0.011367798, 0.015274048, -0.04284668, -0.02255249, -0.04119873, 0.009666443, -0.036132812, 0.05267334, -0.027893066, -0.007041931, 0.021026611, -0.03616333, 0.012039185, 0.010375977, -0.0038318634, -0.0074882507, 0.02432251, 0.05340576, 0.006916046, 0.00025582314, 0.06390381, -0.037841797, -0.011390686, -0.059936523, 0.020980835, 0.0054359436, -0.041870117, 0.07714844, 0.04321289, 0.008094788, 0.02583313, -0.027755737, -0.057800293, 0.020050049, 0.008529663, -0.09942627, 0.0096588135, -0.02722168, 0.021896362, -0.0131073, -0.018859863, -0.030807495, 0.027755737, -0.01524353, 0.018417358, -0.0184021, -0.027816772, -0.01612854, -0.041931152, 0.02053833, -0.013793945, -0.018325806, -0.015571594, -0.018310547, -0.060455322, -0.011253357, 0.017562866, 0.008834839, -0.002922058, 0.032440186, 0.0067710876, 0.036987305, -0.031921387, -0.0029582977, 0.024612427, -0.04296875, -0.032806396, -0.0052719116, 0.03479004, -0.013618469, -0.014099121, 0.0037384033, -0.023956299, 0.024597168, 0.05606079, 0.023651123, 0.00554657, 0.020431519, 0.0574646, -0.00012886524, 0.0041656494, -0.011756897, 0.030288696, 0.01210022, -0.036895752, -0.009803772, -0.020721436, -0.016342163, -0.014854431, -0.053527832, -0.04296875, -0.007980347, -0.013145447, 0.039978027, -0.02708435, 0.0146484375, 0.010551453, -0.009056091, 0.01499176, -0.022354126, -0.018051147, -0.023117065, -0.02003479, 0.010772705, 0.0051002502, 0.006164551, 0.016677856, -0.01889038, -0.012687683, 0.01512146, -0.0017700195, 0.012374878, -0.03050232, 0.022323608, -0.020339966, -0.02810669, 0.034729004, -0.008895874, -0.0032291412, 0.015151978, -0.018997192, -0.02230835, -0.0018825531, 0.04937744, 0.0036392212, 0.003452301, -0.011207581, 0.03161621, 0.020492554, -0.0010900497, -0.030776978, 0.0037212372, -0.015617371, -0.048461914, -0.0036125183, 0.011207581, -0.035217285, -0.013587952, 0.04776001, -0.01423645, -0.012077332, -0.0065689087, 0.039001465, 0.0011758804, 0.0031852722, -0.0289917, -0.0007443428, 0.040618896, -0.022323608, 0.00057411194, 0.004337311, 0.04058838, -0.0051994324, 0.0017604828, -0.045532227, 0.011695862, -0.033081055, 0.0035114288, 0.024017334, 0.026397705, -0.00374794, -0.004650116, -0.017745972, 0.02357483, -0.0006518364, 0.023971558, 0.01071167, 0.041625977, 0.057617188, 0.011009216, 0.052215576, -0.03451538, 0.009346008, 0.023010254, 0.017364502, 0.017745972, -0.009017944, -0.014076233, 0.011390686, -0.014976501, -0.004524231, 0.03213501, -0.04598999, 0.019729614, 0.022338867, -0.008003235, -0.037475586, 0.006099701, 0.00045704842, -0.048431396, 0.03665161, -0.06112671, -0.032714844, 0.013313293, 0.007598877, -0.016311646, 0.0011816025, -0.020645142, -0.013420105, -0.0016031265, -0.008804321, -0.0022735596, -0.0061302185, 0.015686035, -0.03591919, 0.0071907043, 0.014221191, 0.0256958, 0.015129089, 0.07067871, -0.025405884, -0.064086914, -0.043151855, 0.012786865, -0.054656982, -0.005580902, 0.03652954, -0.0440979, -0.027511597, -0.016098022, 0.06011963, 0.038391113, 0.062347412, -0.0064888, 0.07171631, -0.02760315, -0.031463623, 0.027313232, 0.048706055, -0.04067993, 0.009315491, -0.014945984, 0.013290405, 0.035461426, 0.04257202, 0.007911682, -0.08276367, -0.03225708, -0.07116699, 0.020721436, -0.024932861, -0.0041542053, -0.00090265274, -0.013679504, -0.05090332, 0.010482788, 0.020629883, 0.037719727, 0.032562256, 0.020889282, 0.03857422, -0.016113281, -0.048828125, -0.05050659, -0.016464233, 0.034240723, 0.019439697, -0.035186768, 0.027114868, 0.03164673, -0.029418945, 0.017242432, 0.025680542, 0.017974854, 0.036468506, -0.042877197, -0.023406982, 0.008834839, -0.036621094, 0.018814087, -0.003232956, 0.029083252, 0.029891968, 0.021850586, -0.035583496, -0.030166626, -0.01209259, 0.0014410019, -0.018341064, -0.029708862, -0.08514404, -0.081726074, 0.062561035, 0.058044434, -0.029876709, 0.026168823, 0.015838623, 0.029830933, -0.026809692, -0.00052690506, 0.011352539, 0.0054740906, -0.0046157837, -0.012229919, 0.011909485, 0.022399902, -0.017929077, -0.095947266, -0.062042236, 0.050048828, 0.0057144165, -0.019317627, 0.05331421, -0.035339355, 0.030654907, 0.02130127, -0.038208008, 0.03286743, -0.027053833, 0.024551392, -0.041625977, -0.018692017]}, "B01HQSUMII": {"id": "B01HQSUMII", "original": "Brand: ProCom\nName: ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black\nDescription: \nFeatures: TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft.\nDEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\nSAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected.\nDIMENSIONS: 25\u201d H x 33.5\u201d W x 13\u201d D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900\n", "metadata": {"Name": "ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black", "Brand": "ProCom", "Description": "", "Features": "TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft.\nDEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\nSAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected.\nDIMENSIONS: 25\u201d H x 33.5\u201d W x 13\u201d D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.024536133, -0.031951904, 0.018692017, -0.02142334, -0.03778076, -0.0134887695, 0.027526855, 0.005622864, -0.0071487427, 0.02015686, -0.019439697, 0.0028057098, 0.015174866, -0.021652222, 0.0033836365, -0.028121948, 0.012336731, 0.029388428, 0.021499634, -0.017196655, 0.00856781, -0.0026378632, -0.002248764, 0.048828125, -0.014442444, 0.034332275, -0.028579712, 0.020126343, -0.03643799, -0.0031795502, 0.002193451, 0.0206604, 0.055633545, 0.020736694, -0.08807373, -0.043518066, -0.03866577, -0.0012817383, -0.072631836, 0.035705566, -0.0036811829, 0.008590698, 0.0395813, -0.01084137, -0.0019168854, -0.04232788, 0.019485474, -0.04248047, 0.012901306, 0.054870605, 0.004573822, -0.023376465, 0.004550934, -0.06542969, -0.0054397583, -0.023803711, 0.0068473816, 0.026779175, 0.008338928, -0.035217285, -0.02279663, 0.011367798, 0.02923584, 0.027496338, -0.049346924, 0.027633667, 0.015777588, -0.014854431, 0.07232666, -0.029830933, -0.03894043, 0.04296875, 0.049865723, -0.022857666, -0.020690918, -0.028518677, 0.023757935, -0.011199951, 0.03366089, -0.040618896, 0.019012451, 0.01966858, 0.030029297, -0.021575928, 0.007255554, -0.014282227, -0.009597778, -0.010360718, -0.020812988, -0.02645874, -0.018432617, -0.041412354, -0.03274536, 0.014511108, 0.00054216385, -0.031982422, -0.022018433, -0.07556152, 0.037475586, -0.011352539, 0.023330688, -0.051208496, 0.013389587, 0.027679443, -0.0077781677, 0.04949951, -0.007160187, 0.018737793, 0.006526947, 0.010673523, -0.013618469, -0.04916382, -0.033081055, -0.056793213, 0.0099105835, 0.03643799, -0.048187256, 0.03137207, 0.024246216, -0.0018014908, -0.0317688, -0.021194458, 0.050689697, 0.013946533, -0.0055999756, 0.027709961, -0.0018138885, -0.04788208, -0.026916504, -0.0011329651, -0.0070114136, 0.00856781, 0.0141067505, 0.054382324, 0.009292603, 0.00065660477, -0.01626587, 0.051330566, 0.03878784, -0.04763794, 0.038116455, -0.00349617, 0.03668213, 0.043945312, -0.05041504, 0.015686035, 0.027572632, 0.008453369, -0.020828247, -0.06335449, -0.043182373, 0.020202637, 0.016281128, 0.018066406, -0.01574707, 0.034118652, -0.006717682, 0.015090942, -0.030975342, 0.005420685, 0.013870239, -0.03741455, -0.038757324, 0.03869629, -0.017837524, 0.058532715, 0.028060913, 0.0027770996, 0.0057868958, 0.01826477, -0.0211792, 0.0028305054, -0.004005432, -0.013290405, -0.012649536, -0.0010795593, -0.023590088, 0.04525757, 0.04824829, -0.04714966, -0.031341553, -0.043060303, 0.10534668, -0.025863647, -0.0063819885, -0.02230835, 0.005382538, -0.027511597, 0.0028305054, -0.005809784, 0.04421997, 0.040008545, 0.01626587, -0.010177612, 0.010139465, -0.06329346, -0.026565552, -0.027801514, -0.02027893, 0.033966064, 0.012550354, -0.018920898, 0.00869751, -0.008728027, -0.03390503, -0.0075950623, -0.017074585, 0.014160156, 0.010658264, 0.012702942, 0.00040626526, 0.009941101, 0.014572144, -0.060699463, -0.011512756, 0.01965332, -0.026153564, 0.03201294, 0.02861023, 0.020599365, 0.052642822, -0.019439697, 0.048034668, -0.023025513, 0.04611206, 0.0072364807, -0.024658203, -0.010971069, 0.05508423, -0.007472992, 0.033813477, 0.03555298, 0.02885437, 0.0060806274, -0.025054932, 0.052093506, 0.062194824, 0.04260254, -0.03677368, -0.017303467, 0.003604889, -0.05203247, -0.009597778, 0.07366943, -0.040130615, 0.012237549, 0.02305603, 0.031463623, -0.016647339, 0.035827637, 0.053771973, 0.017807007, -0.00012087822, 0.013000488, -0.008308411, 0.016662598, -0.030715942, -0.019012451, -0.010673523, 0.0067710876, 0.016342163, 0.068115234, 0.019958496, 0.035583496, 0.014945984, 0.002735138, 0.029800415, 0.02859497, -0.03878784, 0.011512756, 0.018951416, 0.016418457, -0.02204895, 0.0061798096, 0.014549255, 0.0055236816, -0.0345459, 0.022232056, -0.013206482, -0.006134033, 0.012435913, 0.00047445297, -0.028259277, -0.0031223297, 0.037017822, 0.008331299, 0.007633209, 0.05508423, -0.0015468597, 0.012466431, 0.054595947, -0.030044556, -0.032196045, 0.015670776, -0.016159058, -0.043701172, 0.11895752, -0.009941101, 0.024520874, -0.0072669983, 0.026885986, 0.03756714, -0.049194336, 0.012741089, 0.006717682, -0.022613525, 0.00223732, 0.01586914, 0.013137817, -0.0024528503, -0.030960083, 0.06365967, 0.016433716, -0.010818481, 0.01876831, 0.003868103, -0.017730713, 0.015991211, -0.0040626526, 0.012756348, -0.01713562, -0.008338928, -0.0071640015, -0.029037476, 0.0050239563, 0.0031375885, -0.032836914, 0.0031833649, -0.01777649, -0.0070266724, 0.021194458, -0.011955261, -0.013145447, 0.009231567, 0.014404297, 0.0075531006, 0.0017309189, 0.0015516281, -0.0030288696, -0.025466919, 0.006626129, 0.0104599, 1.9729137e-05, 0.006942749, -0.031188965, -0.021957397, -0.01184082, -0.00021910667, 0.00041913986, -0.0061302185, 0.024841309, -0.0057029724, 0.03390503, -0.012313843, 0.046875, -0.00077056885, -0.0713501, -0.040618896, 0.0047683716, -0.082336426, 0.005290985, -0.02456665, -0.046142578, -0.051605225, 0.06689453, -0.014427185, -0.0637207, -0.048217773, -0.00015699863, -0.0043678284, 0.037841797, 0.01335907, -0.08074951, -0.031982422, -0.041229248, 0.003955841, 0.040100098, -0.0004348755, 0.008483887, 0.022155762, 0.037200928, 0.03265381, 0.012336731, 0.015640259, -0.015541077, 0.047332764, 0.025405884, -0.0011787415, -0.018997192, -0.028930664, -0.0056266785, 0.041381836, -0.028259277, -0.018218994, 0.006164551, 0.010986328, -0.043640137, -0.012786865, -0.055358887, -0.00016665459, -0.037963867, 0.02204895, 0.0028362274, -0.010383606, 0.029586792, -0.11071777, 0.006084442, -0.055786133, 0.047210693, 0.018432617, 0.034057617, -0.026351929, 0.030715942, -0.03793335, -0.03213501, 0.02078247, 0.03277588, -0.007080078, -0.008110046, -0.0211792, 0.064086914, -0.10015869, 0.009414673, -0.010246277, -0.041137695, 0.025726318, -0.017044067, 0.038269043, -0.015136719, -0.005558014, -0.0032691956, -0.020629883, -0.0345459, 0.0070495605, 0.010246277, 0.05218506, 0.007408142, -0.05419922, 0.035064697, -0.011741638, -0.04083252, -0.04171753, 0.0026779175, 0.0022392273, -0.0073509216, -0.009925842, -0.015411377, -0.033477783, 0.02381897, -0.058807373, 0.006752014, -0.008468628, 0.062805176, 0.013473511, 0.0076141357, 0.089904785, 0.017456055, 0.044158936, 0.037872314, -0.09057617, -0.06781006, -0.05670166, -0.0025558472, 0.007068634, -0.011993408, -0.037597656, -0.008102417, 0.01423645, -0.0031089783, -0.022720337, -0.011802673, 0.081604004, -0.03237915, -0.022018433, -0.015342712, -0.051361084, 0.056488037, 0.046173096, 0.018157959, -0.051574707, -0.037384033, 0.00248909, -0.062316895, 0.06439209, 0.04360962, -0.01209259, 0.06524658, 0.030349731, -0.0019159317, -0.0037002563, 0.024047852, -0.043792725, -0.009765625, 0.021224976, -0.01878357, -0.0036334991, 0.0024166107, -0.04272461, -0.0059509277, -0.043151855, -0.03253174, 0.0011024475, 0.004207611, 0.011383057, -0.035736084, 0.003982544, 0.035583496, -0.021270752, 0.026748657, -0.050994873, 0.015853882, -0.039978027, -0.048553467, 0.0033931732, -0.03805542, -0.01007843, 0.013595581, 0.0024051666, -0.016586304, 0.005050659, -0.014350891, 0.03274536, -0.021331787, 0.033081055, 0.026168823, -0.020141602, -0.035247803, 0.032684326, -0.030471802, -0.015472412, 0.062042236, 0.020324707, 0.018707275, -3.528595e-05, -0.039031982, 0.016738892, -0.016189575, 0.04525757, 0.039520264, -0.064453125, 0.023498535, 0.039916992, -0.03289795, -0.043395996, 0.020446777, -0.03152466, -0.012062073, -0.0049972534, -0.07861328, 0.0067596436, -0.040252686, -0.030334473, -0.024932861, -0.04763794, -0.043792725, 0.0014038086, 0.008712769, -0.0013389587, 0.0016460419, -0.026794434, 0.002040863, -0.027191162, -0.028503418, 0.01979065, 0.03262329, 0.002298355, 0.0368042, -0.009811401, 0.033355713, -0.036102295, -0.032836914, -0.021209717, 0.06451416, -0.012451172, 0.018112183, -0.018356323, -0.011688232, 0.016983032, 0.017303467, 0.01612854, -0.013366699, 0.006214142, -0.006000519, 0.006832123, -0.0032024384, -0.012268066, -0.0079956055, -0.03955078, -0.012817383, 0.0065307617, 0.08508301, -0.032043457, 0.034301758, 0.005126953, -0.018203735, -0.009094238, -0.012992859, -0.09613037, -0.050964355, -0.01007843, -0.01864624, 0.0073051453, -0.0028133392, -0.010032654, -0.011802673, 0.058746338, 0.009414673, -0.009536743, -0.031677246, 0.029937744, -0.006023407, 0.0060806274, 0.020584106, -0.0513916, 0.024627686, 0.03375244, 0.0048980713, 0.041229248, 0.04864502, -0.0340271, 0.005973816, 0.011924744, -0.021194458, -0.011505127, -0.028274536, 0.0028533936, -0.021377563, 0.013633728, -0.01399231, -0.0014877319, 0.023773193, -0.0051841736, 0.012359619, -0.009757996, 0.04220581, 0.0053901672, 0.011047363, 0.0128479, -0.020141602, 0.010307312, -0.028274536, -0.002603531, -0.002462387, -0.010055542, 0.038024902, -0.035064697, -0.014289856, 0.030914307, -0.019943237, 0.0017728806, -0.0008854866, 0.016174316, 0.026489258, -0.03942871, 0.005153656, -0.0104599, -0.0029850006, 0.026687622, 0.025268555, -0.062805176, -0.060638428, -0.007965088, 0.07775879, -0.08850098, 0.063964844, -0.040283203, 0.029190063, 0.043395996, -0.017929077, 0.035064697, 0.015319824, -0.028182983, 0.025985718, 0.0027503967, 0.02545166, -0.056518555, 0.017578125, -0.019302368, -0.037322998, -0.036346436, 0.026153564, 0.032958984, 0.010269165, -0.012496948, -0.026000977, 0.037109375, -0.038757324, -0.013946533, -0.033966064, 0.046020508, -0.056671143, -0.023803711, -0.0048065186, -0.041534424, -0.03643799, -0.046142578, -0.014480591, 0.025848389, -0.023529053, -0.016082764, 0.011528015, 0.028518677, -0.005104065, 0.015388489, -0.019851685, 0.008384705, -0.039611816, 0.026397705, -0.03164673, 0.007419586, 0.000310421, 0.005672455, 0.008277893, 0.0065612793, 0.005847931, -0.02859497, -0.020950317, -0.029968262, -0.035858154, 0.04232788, 0.011924744, 0.018463135, 0.06335449, -0.0068244934, 0.0018177032, 0.024337769, -0.0013456345, 0.034088135, -0.0039863586, -0.0134887695, -0.021194458, -0.015960693, 0.0234375, -0.03164673, -0.04034424, 0.03942871, 0.021957397, 0.00053453445, -0.044525146, 0.070495605, 0.08251953, -0.009231567, 0.03164673, -0.009178162, -0.05331421, 0.012893677, -0.001244545, -0.07348633, -0.014389038, -0.030563354, -0.0033798218, 0.008384705, -0.048553467, -0.014297485, 0.0418396, 0.013679504, -0.032104492, 0.013366699, -0.032043457, 0.040100098, -0.010360718, 0.032226562, 0.026260376, -0.0058059692, -0.008369446, 0.028945923, -0.04269409, -0.005748749, -0.010986328, 0.011642456, -0.011940002, -0.01939392, -0.014015198, 0.00983429, 0.02532959, 0.044769287, -0.027252197, 0.002696991, 0.016662598, 0.0345459, -0.014503479, 0.06286621, -0.024978638, -0.01864624, -0.041290283, 0.0005402565, 0.039123535, 0.04699707, -0.018112183, 0.051879883, 0.0211792, 0.023406982, 0.04333496, 0.021240234, 0.050048828, 0.004421234, -0.031341553, 0.016571045, 0.008483887, -0.027740479, -0.008117676, -0.010574341, -0.05545044, -0.005214691, -0.028839111, 0.02168274, -0.0044784546, 0.036468506, -0.033294678, 0.020950317, 0.0014476776, -0.004398346, 0.044647217, -0.024291992, 0.005092621, -0.020217896, 0.03616333, 0.0017204285, 0.0084991455, 0.043273926, -0.026000977, 0.008773804, -0.0015449524, 0.057006836, -0.002855301, 0.008377075, 0.004676819, -0.023345947, 0.0050621033, -0.00141716, 0.012237549, -0.0070991516, -0.035339355, -0.026473999, -0.012771606, 0.031677246, -0.020965576, 0.0949707, -0.029449463, 0.029052734, -0.006832123, 0.003074646, -0.0028934479, -0.022232056, 0.041534424, 0.006980896, -0.022949219, -0.023651123, 0.0021343231, 0.029754639, 0.0021743774, -0.014625549, 0.015945435, -0.03326416, 0.0076141357, 0.020599365, 0.016555786, -0.04360962, -0.07562256, -0.04260254, 0.00712204, -0.029327393, -0.011459351, 0.0062408447, 0.030548096, -0.021453857, 0.0038795471, 0.027679443, -0.040527344, 0.028030396, 0.020950317, -0.026367188, -0.0032920837, 0.03036499, -0.0027580261, -0.002609253, 0.027633667, 0.008110046, 0.029296875, -0.034088135, 0.040527344, 0.019897461, 0.03894043, -0.030975342, 0.0064888, 0.033172607, 0.01411438, 0.02784729, 0.02746582, 0.0057907104, 0.01777649, -0.024520874, -0.022109985, 0.024383545, -0.021469116, 0.03756714, 0.00079631805, -0.0066947937, -0.02482605, 0.008010864, -0.019470215, -0.011985779, 0.044769287, -0.043548584, -0.05795288, 0.0010175705, -0.0077590942, -0.0004749298, 0.0006418228, -0.050323486, 0.013473511, -0.0035495758, -0.01751709, -0.015838623, -0.00064754486, 0.013023376, -0.040130615, -0.0037593842, 0.003124237, 0.022232056, -0.024124146, 0.030303955, -0.049743652, -0.029403687, -0.003124237, 0.04095459, -0.08905029, -0.06695557, 0.020080566, -0.05432129, -0.056640625, -0.015945435, 0.08459473, 0.018707275, 0.07891846, -0.0077056885, 0.03567505, -0.025039673, -0.01637268, -0.0022621155, -0.0001257658, -0.027938843, -0.0005903244, 0.017974854, 0.0019683838, 0.028442383, 0.009269714, 0.009674072, -0.06335449, 0.0035915375, 0.004512787, 0.009414673, 0.00045704842, -0.010383606, 0.02482605, 0.02368164, -0.026687622, -0.008476257, 0.017410278, 0.006378174, 0.031677246, -0.016983032, 0.07800293, 0.0048446655, -0.068359375, -0.059753418, -0.04135132, 0.013397217, -0.021438599, -0.06512451, 0.04055786, 0.033569336, -0.02508545, 0.003780365, 0.05734253, 0.016433716, -0.019302368, -0.025115967, -0.00058555603, -0.06262207, -0.018188477, -0.06137085, 0.0019741058, -0.079589844, 0.013305664, -0.022567749, 0.0044021606, -0.015533447, -0.036315918, 0.01979065, -0.034698486, -0.021148682, -0.0074920654, -0.00039935112, -0.017456055, 0.005218506, 0.003282547, 0.0009274483, 0.012420654, -0.00042033195, -0.05407715, -0.0044822693, 0.025375366, -0.002494812, 0.0046691895, -0.05001831, 0.02709961, 0.027114868, -0.008384705, -0.074035645, -0.046783447, 0.053741455, 0.01586914, -0.032470703, 0.047302246, -0.052581787, 0.022583008, -0.0048599243, -0.018035889, 0.019927979, -0.028503418, 0.02178955, -0.043914795, -0.0009021759]}, "B07S2KQ8PL": {"id": "B07S2KQ8PL", "original": "Brand: C-M Propane Fuel\nName: Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack\nDescription: Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.\nFeatures: \n", "metadata": {"Name": "Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack", "Brand": "C-M Propane Fuel", "Description": "Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022445679, -0.01725769, -0.020599365, -0.044708252, -0.022613525, 0.014221191, -0.031341553, 0.037475586, -0.05645752, 0.0019168854, 0.01133728, 0.012687683, -0.029785156, -0.045135498, 0.0385437, -0.04421997, -0.017959595, 0.029022217, -0.023544312, -0.033050537, 0.011779785, -0.038513184, -0.082458496, 0.05001831, -0.0013532639, -0.028244019, 0.06323242, -0.025741577, -0.008094788, -0.0102005005, 0.019195557, 0.023834229, 0.053344727, -0.042907715, 0.012817383, -0.03756714, 0.03164673, -0.043151855, -0.035491943, 0.01158905, -0.005710602, 0.015991211, 0.0021877289, -0.009513855, -0.039245605, -0.03881836, 0.0051231384, -0.0013494492, 0.011650085, -0.0057868958, 0.022064209, 0.010482788, 0.028366089, -0.024230957, -0.013519287, 0.022369385, 0.00995636, 0.040893555, 0.0052490234, -0.017822266, -0.018707275, 0.047729492, 0.011108398, 0.026809692, -0.053253174, 0.035736084, 0.09588623, -0.047973633, -0.02746582, -0.03970337, 0.015472412, 0.0038452148, 0.00046920776, 0.010902405, -0.022583008, -0.021362305, 0.014923096, -0.017196655, 0.014328003, 0.01991272, -0.0703125, -0.035125732, -0.03277588, -0.013999939, -0.0016365051, 0.03314209, -0.034240723, 0.0006670952, -0.042175293, 0.0058059692, -0.032104492, 0.03741455, -0.038146973, 0.005115509, -0.027618408, 0.010017395, 0.01259613, -0.040802002, 0.034484863, 0.00598526, -0.00605011, -0.0107803345, -0.017440796, 0.020187378, 0.01146698, 0.034576416, -0.001414299, 0.000121712685, 0.028213501, -0.0020198822, -0.009262085, 0.010566711, 0.00026535988, 0.00036120415, -0.021255493, 0.018814087, -0.021057129, 0.034057617, -0.012992859, 0.049316406, 0.013389587, 0.021438599, 0.028274536, -0.034362793, -0.006713867, -0.010406494, -0.010635376, -0.044036865, -0.046539307, 0.0657959, -0.051239014, -0.03125, 0.0814209, 0.070373535, 0.039520264, -0.046905518, 0.0006046295, -0.026153564, 0.0064888, 0.016830444, 0.03274536, -0.05545044, -0.026321411, 0.05279541, -0.007041931, 0.04269409, 0.03955078, -0.021896362, -0.026565552, -0.013465881, -0.030715942, -0.011360168, 0.06274414, -0.0019226074, -0.031036377, -0.027389526, 0.04800415, -0.04675293, -0.033966064, -0.084472656, -0.0022583008, -0.03543091, -0.011856079, 0.013198853, -0.013015747, 0.048095703, -0.0025539398, 0.0067481995, 0.004699707, -0.017593384, -0.032684326, 0.020584106, 0.0069084167, -0.008102417, 0.00749588, 0.0134887695, -0.01008606, 0.062194824, 0.061157227, -0.06750488, -0.039733887, -0.05291748, 0.11114502, -0.01637268, -0.0059509277, -0.03793335, 0.043762207, 0.0027942657, -0.0075683594, 0.016815186, 0.04901123, 0.02368164, -0.04486084, 0.000497818, -0.026260376, 0.0077552795, 0.0047187805, 0.049865723, -0.008773804, -0.02229309, 0.019317627, -0.020523071, 0.04626465, 0.0096206665, 0.06689453, -0.018585205, 0.011238098, -0.018875122, -0.012954712, 0.029449463, 0.0067367554, -0.028839111, 0.016921997, -0.038269043, -0.026885986, -0.018051147, -0.013458252, 0.005268097, 0.022827148, 0.0004479885, 0.041748047, 0.008384705, 0.03503418, 0.027740479, 0.014343262, -0.012161255, -0.009635925, -0.0019388199, 0.013168335, -0.00868988, 0.0073890686, 0.028411865, 0.047546387, 0.06536865, -0.0030879974, 0.0151901245, 0.057128906, 0.022003174, -0.0078086853, -0.019088745, 0.011619568, -0.013092041, -0.051879883, -0.009140015, -0.0057640076, 0.02671814, 0.029876709, -0.005683899, -0.010734558, -0.002527237, 0.0390625, 0.015388489, 0.040893555, 0.0713501, -0.017288208, 0.036499023, 0.003692627, 0.028686523, -0.054138184, 0.028121948, -0.0018177032, 0.036987305, -0.0068855286, 0.009590149, 0.00068616867, -0.016830444, 0.04006958, 0.02609253, 0.022064209, -0.031036377, -0.006454468, -0.0025291443, -0.0055236816, 0.0035705566, -0.0031166077, -0.019439697, -0.028900146, 0.033325195, -0.013145447, -0.032196045, 0.0090408325, -0.0010080338, -0.015579224, 0.0009379387, 0.03253174, -0.012542725, 0.0019435883, 0.031280518, -0.045898438, -0.027191162, 0.018218994, -0.027526855, -0.030563354, -0.021194458, -0.035888672, -0.032348633, 0.022750854, -0.020935059, 0.028640747, -0.0423584, 0.004711151, 0.055511475, -0.03805542, 0.03390503, -0.014465332, 0.016708374, -0.016021729, 0.022766113, 0.008583069, -0.04711914, 0.012672424, 0.0085372925, 0.026809692, 0.039916992, -0.005268097, -0.0029678345, -0.008216858, 0.058135986, 0.041259766, 0.028625488, -0.04196167, 0.032592773, 0.009414673, 0.008911133, 0.03515625, -0.016342163, -0.004585266, 0.0032253265, 0.022750854, 0.021362305, 0.015106201, 0.024887085, 0.01033783, 0.015556335, 0.0062217712, 0.0012960434, 0.008934021, 0.046417236, -0.0005569458, -0.046295166, 0.010429382, -0.088378906, -0.023773193, 0.022628784, -0.06121826, -0.0046157837, 0.057525635, 0.0044937134, 0.019363403, 0.013694763, 0.00031542778, -0.008285522, 0.032318115, 0.0069274902, 0.05154419, -0.031951904, -0.08483887, 0.009941101, 0.013160706, -0.06378174, -0.0001090765, -0.008293152, -0.0501709, -0.010002136, 0.07897949, -0.04333496, -0.046691895, -0.0395813, 0.006690979, 0.019714355, -0.025543213, 0.03656006, -0.032958984, -0.020462036, -0.011993408, 0.013168335, 0.06958008, -0.005695343, 0.00072956085, 0.031143188, -0.0061416626, 0.0070724487, -0.01889038, -0.014831543, 0.022003174, 0.029342651, 0.051361084, 0.022705078, 0.022232056, -0.015182495, -0.002445221, 0.001332283, -0.033691406, -0.0093688965, -0.0054092407, -0.010665894, 0.008560181, 0.003238678, -0.022323608, -0.029525757, -0.06463623, 0.029708862, 0.00080013275, -0.029037476, -0.0076446533, -0.048919678, -0.021606445, -0.052612305, -0.0004184246, 0.043304443, -0.023101807, 0.005405426, -0.04675293, 0.027252197, 0.020767212, -0.024795532, -0.0093688965, -0.0027694702, -0.015129089, 0.014717102, 0.041870117, -0.042755127, 0.013748169, 0.029144287, -0.031829834, -0.015365601, -0.0001758337, 0.03970337, -0.030776978, 0.02229309, 0.0024051666, -0.019088745, -0.044769287, -0.04425049, 0.015533447, 0.027160645, -0.010536194, -0.01838684, -0.024505615, 0.010475159, 0.007904053, -0.013038635, -0.02381897, 0.0025482178, -0.020141602, -0.0077323914, -0.012283325, 0.0063285828, 0.012626648, -0.011543274, 0.012214661, -0.0020999908, 0.033111572, 0.012634277, -0.019500732, 0.032806396, 0.006477356, 0.022735596, -0.014472961, -0.009300232, -0.02520752, -0.010032654, 0.039031982, -0.032073975, 0.008140564, -0.06427002, 0.030792236, 0.021453857, 0.03845215, -0.034942627, -0.015060425, 0.07885742, 0.024536133, -0.008026123, -0.016326904, -0.013420105, 0.037017822, 0.004737854, -0.017868042, -0.039398193, -0.07128906, 0.005317688, -0.15942383, 0.08972168, 0.056243896, -0.04763794, 0.10107422, 0.055877686, -0.0067634583, 0.026000977, 0.061645508, -0.00932312, 0.006210327, 0.052581787, -0.019424438, -0.025512695, -0.004005432, 0.019943237, 0.031921387, -0.011947632, 0.013626099, 0.016082764, 0.011817932, -0.022476196, -0.02722168, -0.011894226, 0.0045928955, -0.007160187, 0.007118225, -0.016967773, 0.0021381378, -0.0362854, 0.05444336, -0.008430481, 0.018035889, 0.034088135, 0.018692017, -0.033294678, 0.029129028, -0.003967285, 0.0056610107, -0.00034070015, 0.012275696, 0.016433716, 0.007637024, 0.008323669, -0.031677246, -0.013206482, -0.03390503, 0.00036978722, 0.027145386, 0.003604889, -0.040039062, -0.054779053, 0.06652832, 0.0124435425, 0.009094238, 0.013290405, -0.04373169, -0.083984375, 0.020248413, 0.029510498, 0.01083374, -0.043151855, -0.016159058, 0.009422302, -0.011077881, 0.015571594, -0.024765015, -0.010269165, -0.0095825195, 0.010063171, -0.05722046, -0.03363037, -0.027450562, -0.01751709, -0.016494751, 0.033355713, -0.012931824, -0.04248047, -0.0037460327, 0.00983429, -0.031707764, 0.012298584, -0.037506104, 0.02583313, -0.014045715, -0.036315918, 0.015411377, -0.030715942, 0.00472641, -0.018554688, 0.047668457, 0.02508545, -0.0015850067, -0.001917839, -0.02192688, 0.012840271, 0.014205933, 0.046020508, -0.021621704, 0.01625061, -0.023864746, 0.014953613, -0.02243042, -0.037841797, 0.0022220612, -0.032287598, -0.032928467, -0.028778076, 0.05014038, -0.020965576, 0.008842468, -0.00756073, 0.0047569275, 0.030960083, -0.00856781, -0.08081055, -0.046875, -0.019363403, -0.03515625, -0.023880005, -0.019439697, -0.012535095, 0.07421875, 0.03765869, 0.015853882, 0.022415161, -0.0032100677, -0.023727417, -0.0018892288, 0.04824829, -0.044799805, 0.010314941, -0.031829834, -0.02734375, -0.072387695, 0.09466553, 0.042022705, 0.0054969788, 0.010063171, -0.008392334, -0.0093307495, -0.04812622, -0.016601562, -0.008773804, 0.013557434, -0.0079422, -0.03427124, -0.01826477, -0.04046631, -0.0129776, 0.014320374, -0.045928955, 0.02130127, 0.03314209, -0.010795593, -0.013122559, -0.037017822, 0.010009766, 0.013900757, -0.0014066696, 0.0024337769, -0.0069122314, -0.00844574, -0.037902832, 0.003944397, 0.02999878, -0.030975342, -0.013824463, 0.015258789, 0.0050315857, -0.07293701, 0.03741455, 0.04156494, -0.0037250519, 0.010986328, 0.028839111, -0.0064201355, -0.0005059242, -0.023223877, 0.02468872, -0.028182983, -0.015068054, 0.013885498, -0.020462036, -0.017227173, 0.01084137, -0.0003976822, 0.009796143, -0.007293701, -0.067871094, 0.02128601, -0.008407593, 0.010948181, -0.03265381, 0.05014038, -0.015609741, -0.004310608, -0.06262207, 0.020095825, 0.002319336, -0.016586304, 0.010520935, -0.012496948, 0.07409668, -0.03262329, -0.030288696, 0.018997192, 0.0076141357, -0.033447266, 0.007041931, 0.01058197, 0.0003142357, -0.018081665, 0.011154175, -0.028808594, 0.013145447, 0.021911621, -0.006088257, 0.023620605, 0.006465912, -0.041992188, -0.004234314, -0.0047454834, 0.023635864, -0.008308411, -0.007621765, -0.007827759, -0.006652832, 0.0011386871, 0.031951904, -0.050842285, -0.0035495758, -0.042175293, -0.026062012, -0.027954102, 0.025512695, 0.019699097, 0.03161621, -0.014816284, -0.02456665, -0.00793457, 0.026504517, 0.04156494, -0.044769287, -0.050750732, -0.01966858, 0.010185242, 0.020843506, -0.027252197, -0.034729004, 0.05847168, -0.037597656, -0.03753662, -0.030776978, 0.06390381, -0.044281006, -0.030471802, 0.076660156, 0.027435303, 0.024154663, 0.008682251, -0.011924744, -0.014266968, -0.0074653625, 0.017623901, -0.0013961792, -0.016983032, -0.026504517, 0.017440796, 0.0030059814, 0.024383545, -0.0040740967, 0.039276123, -0.022842407, -0.005302429, -0.01626587, 0.01663208, -0.023086548, -0.021484375, 0.013122559, -0.006954193, -0.009475708, -0.011779785, 0.003929138, -0.060760498, -0.03050232, -0.011795044, 0.0074005127, 0.0031719208, -0.009017944, -0.014160156, 0.022354126, 0.022476196, 0.021942139, 0.024658203, -0.008033752, -0.023345947, 0.018753052, -0.00573349, 0.019821167, -0.06518555, 0.0047073364, -0.011428833, 0.0046424866, 0.019943237, 0.015182495, -0.04437256, -0.027160645, 0.021606445, 0.033996582, 0.008049011, -0.018707275, 0.0020561218, 0.032287598, 0.022445679, -0.009567261, 0.028366089, 0.0069999695, 0.0084991455, -0.059509277, -0.010345459, -0.0107421875, -0.0158844, 0.006198883, -0.05267334, 0.037841797, -0.048339844, 0.01374054, -0.010505676, -0.027282715, 0.041503906, -0.024612427, 0.008117676, -0.029968262, 0.004310608, 0.0048446655, -0.006160736, -0.011642456, -0.013175964, 0.02810669, 0.029434204, 0.0077171326, -0.025985718, 0.010734558, 0.027175903, -0.04397583, 0.0029411316, -0.02229309, -0.00674057, -0.02848816, -0.02609253, -0.019836426, -0.020202637, 0.039367676, 0.044403076, -0.00774765, -0.0013074875, 0.06536865, -0.003862381, 0.0069732666, -0.03665161, -0.024642944, 0.038360596, -0.011062622, 0.0010032654, -0.0011701584, -0.022155762, 0.059020996, 0.008644104, 0.008392334, 0.051513672, -0.022262573, -0.0016870499, -0.008354187, -0.0061836243, -0.041290283, -0.041748047, 0.020324707, 0.036987305, -0.03488159, -0.005645752, -0.010658264, 0.03314209, 0.01637268, -0.05178833, 0.0501709, -0.07647705, 0.07727051, 0.03086853, 0.040740967, -0.050872803, -0.030273438, -0.018356323, 0.006832123, -0.006477356, 0.03540039, 0.0022830963, -0.013900757, -0.0028762817, 0.021530151, 0.027801514, -0.017654419, 0.0070648193, -0.0087509155, -0.019180298, 0.0546875, -0.06958008, -0.017242432, 0.0021858215, -0.0052871704, 0.026473999, 0.008804321, -0.034118652, -0.030441284, -0.012306213, -0.007369995, -0.039031982, 0.04510498, -0.03717041, -0.022918701, -0.008300781, -0.011390686, 0.03665161, -0.03314209, -0.051452637, -0.038482666, -0.037994385, -0.03817749, 0.062438965, -0.009391785, -0.02658081, 0.008522034, 0.008483887, -0.027313232, -0.071899414, -0.017196655, -0.026321411, 0.013687134, -0.028961182, 0.05783081, -0.034606934, -0.004119873, -0.042907715, -0.016479492, -0.06945801, 9.536743e-05, -0.001824379, -0.003168106, 0.0043411255, -0.0076293945, 0.012184143, 0.046295166, 0.037017822, -0.0029945374, 0.018814087, -0.05770874, -0.048065186, 0.08062744, 0.02204895, -0.059326172, -0.010871887, 0.040161133, -0.015930176, -0.015571594, 0.02217102, -0.016571045, -0.09063721, -0.018676758, -0.01802063, -0.024917603, -0.024749756, -0.01927185, 0.013801575, -0.003982544, -0.035858154, -0.021499634, 0.03591919, 0.024871826, 0.05722046, -0.06149292, 0.014709473, -0.05456543, -0.06439209, -0.08355713, -0.029418945, 0.049957275, 0.067871094, -0.0062065125, -0.03253174, 0.037384033, -0.018188477, 0.049926758, 0.029968262, 0.0054130554, 0.020233154, -0.009101868, 0.019622803, -0.007987976, -0.018188477, 0.038146973, 0.0061912537, -0.020980835, 0.041809082, -0.018920898, 0.008575439, 0.052764893, -0.042907715, -0.0017709732, 0.013763428, 0.0056495667, -0.057556152, -0.030212402, 0.010360718, 0.02204895, -0.024963379, -0.0039596558, -0.017944336, 0.036224365, -0.0418396, 0.027145386, 0.021438599, 0.036102295, -0.0019302368, 0.015213013, 0.032043457, 0.052856445, -0.01902771, -0.0982666, -0.04937744, 0.004432678, 0.0030498505, -0.0071372986, 0.060394287, -0.02243042, 0.016052246, 0.021774292, -0.017715454, -0.023712158, 0.008895874, 0.054718018, -0.00028395653, 0.006034851]}, "B001H1HL76": {"id": "B001H1HL76", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone\nDescription: \nFeatures: Throw the ultimate s\u2019mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl!\n40,000 BTU heat output provides warmth and light\nNatural lava rock included to cover the stainless steel burner.\nProtective cover included to preserve the fire pit's integrity.\nConstructed of durable and lightweight Envirostone for outdoor use\n", "metadata": {"Name": "Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone", "Brand": "Bond Manufacturing", "Description": "", "Features": "Throw the ultimate s\u2019mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl!\n40,000 BTU heat output provides warmth and light\nNatural lava rock included to cover the stainless steel burner.\nProtective cover included to preserve the fire pit's integrity.\nConstructed of durable and lightweight Envirostone for outdoor use", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019744873, 0.012451172, -0.075927734, -0.044708252, 0.011512756, -0.0010890961, -0.013389587, 0.030776978, -0.080322266, 0.0028705597, -0.0098724365, 0.01449585, -0.034362793, -0.029251099, 0.041137695, -0.06695557, 0.01058197, 0.018508911, 0.012886047, -0.035583496, 0.02355957, -0.03479004, -0.0032310486, 0.08605957, 0.040985107, -0.026397705, 0.0385437, -0.015129089, 0.06021118, 0.022155762, 0.02130127, -0.04800415, 0.04916382, -0.025726318, 0.0042037964, -0.01852417, 0.039215088, -0.034118652, -0.04534912, 0.041107178, 0.023361206, -0.017852783, -0.049987793, -0.027130127, -0.052642822, -0.012680054, 0.018218994, 0.01776123, -0.0029945374, 0.02961731, -0.0032653809, -0.0031318665, -0.0011329651, 0.027557373, 0.0014533997, -0.025527954, -0.021514893, 0.012840271, -0.011184692, 0.026565552, 0.03363037, 0.055877686, 0.0010738373, 0.024810791, -0.028335571, 0.0090789795, 0.059814453, -0.011665344, 0.037231445, -0.030395508, -0.020629883, 0.043640137, 0.013557434, -0.04006958, 0.022384644, 0.021530151, -0.016159058, -0.022918701, 0.03186035, 0.0030918121, -0.0597229, 0.004901886, 0.015335083, -0.06036377, 0.010093689, -0.031311035, -0.030227661, 0.0030384064, 0.0104522705, -0.039764404, -0.017471313, -0.019714355, 0.026412964, 0.0054092407, -0.015571594, -0.03982544, -0.03793335, -0.099975586, 0.05029297, -0.011787415, 0.01953125, -0.02204895, -0.014411926, 0.027557373, 0.0055160522, 0.083618164, -0.022521973, 0.017349243, 0.018798828, -0.00091409683, 0.013015747, -0.028945923, -0.01979065, -0.028701782, -0.04071045, 0.009399414, -0.024337769, -0.03552246, 0.012916565, -0.033813477, 0.009887695, 0.0031375885, -0.0009241104, 0.001704216, 0.03161621, 0.01398468, -0.034820557, -0.0014266968, -0.01876831, 0.043518066, -0.013343811, -0.04562378, 0.05621338, 0.09106445, 0.02420044, -0.01574707, 0.023773193, -0.00881958, 0.020324707, -0.009963989, 0.012084961, 0.0103302, 0.034484863, -0.0075302124, -0.01979065, 0.051361084, 0.03201294, -0.018188477, -0.033172607, -0.039276123, -0.033691406, -0.0021018982, 0.02041626, 0.0074310303, 0.03277588, -0.025741577, 0.064819336, -0.04940796, -0.009590149, -0.047424316, 0.013153076, 0.004020691, -0.011024475, 0.0010223389, -0.024887085, 0.009567261, 0.026397705, -0.0019130707, 0.008720398, 0.07434082, -0.026245117, 0.03186035, -0.0011940002, 0.014213562, -0.0024929047, -0.024597168, -0.031311035, 0.09063721, 0.07733154, -0.12432861, -0.0579834, -0.060913086, 0.15026855, -0.035339355, -0.012641907, -0.002248764, 0.003370285, -0.027770996, 0.020553589, -0.019744873, 0.035125732, 0.027145386, 0.034973145, -0.014762878, 0.00013637543, -0.0024681091, -0.043670654, 0.016799927, -0.029006958, -0.009681702, -0.06652832, 0.03881836, -0.009773254, 0.06451416, 0.047943115, 0.038635254, -0.00090265274, 0.032806396, 0.0024585724, 0.02558899, 0.0096588135, 0.013786316, -0.02407837, -0.038604736, -0.021957397, -0.0048980713, 0.0022830963, -0.0037059784, -0.0050811768, -0.03237915, 0.026397705, 0.0071868896, 0.0033302307, 0.024810791, 0.014717102, -0.01651001, -0.037841797, -0.015731812, -0.00044989586, -0.009155273, -0.016738892, 0.059265137, 0.019897461, 0.021011353, -0.004436493, 0.048736572, 0.09429932, 0.050933838, -0.009971619, -0.03970337, 0.02734375, -0.0390625, -0.011375427, 0.021255493, -0.0025787354, 0.013069153, 0.039154053, -0.017913818, -0.00072431564, 0.06390381, -0.015365601, 0.005264282, 0.0021476746, -0.019042969, -0.027511597, 0.028198242, -0.032989502, -0.024642944, 0.018341064, -0.010787964, 0.00076293945, 0.0008158684, 0.0048294067, -0.009086609, 0.026367188, -0.022842407, 0.016311646, 0.005302429, -0.01461792, -0.021697998, 0.030319214, 0.013793945, -0.00013554096, -0.020950317, -0.0057754517, 0.009254456, -0.053710938, 0.02319336, 0.022705078, -0.024307251, -0.015403748, -0.030960083, -0.034332275, -0.011619568, 0.01940918, -0.00074481964, 0.022781372, -0.00881958, -0.011657715, 0.010803223, 0.013053894, 0.038604736, -0.011688232, 0.026611328, -0.0028305054, 0.00013625622, -0.040100098, -0.020721436, 0.048339844, -0.053100586, -0.012878418, 0.056152344, -0.032165527, 0.044403076, -4.839897e-05, 0.039093018, 0.006828308, 0.0065956116, 0.01651001, -0.023986816, 0.0077056885, 0.011436462, 0.029510498, 0.0116119385, 0.032440186, -0.002281189, -0.010009766, 0.041229248, -0.0034275055, -0.004383087, -0.0038776398, 0.042816162, -0.0496521, -0.010414124, 0.01550293, 0.027832031, -0.05319214, -0.015205383, -0.042938232, 0.01637268, 0.0074501038, -0.0060195923, 0.020355225, 0.031799316, -0.0042686462, -0.014671326, -0.012031555, 0.047851562, -0.007965088, -0.04220581, -0.02859497, -0.0079193115, 0.01184082, -0.008140564, -0.020385742, -0.024993896, 0.009155273, 0.010810852, 0.0063476562, -0.011817932, 0.016540527, -0.016540527, 0.006843567, 0.006401062, 0.011238098, -0.033081055, -0.00051164627, 0.010192871, -0.01725769, -0.03201294, -0.06304932, -0.032958984, -0.08514404, 0.01586914, 0.091918945, 0.005744934, -0.042236328, -0.010040283, -0.015090942, 0.006374359, 0.044403076, 0.0017585754, -0.040924072, -0.042907715, -0.0635376, -0.026306152, 0.078430176, 0.021118164, -0.057403564, 0.017242432, 0.05218506, 0.012069702, 0.0011854172, -0.020629883, 0.013092041, 0.012130737, 0.036376953, 0.03475952, 0.0068740845, -0.018844604, -0.011238098, 0.014213562, -0.045898438, -0.014297485, -0.00554657, 0.020477295, -0.008262634, -0.05218506, 0.009590149, -0.012161255, -0.07324219, -0.004310608, -0.015380859, -0.03555298, 0.020599365, -0.084228516, -0.01979065, -0.066101074, 0.01600647, 0.08227539, 0.008155823, -0.030639648, 0.0018720627, -0.013313293, -0.010131836, 0.025283813, 0.042755127, 0.010810852, 0.030258179, -0.051818848, -0.01889038, 0.01184082, 0.028060913, 0.009094238, -0.041503906, -0.023635864, 0.01537323, 0.027648926, 0.022659302, 0.011314392, -0.015197754, -0.008178711, -0.0017557144, 0.0061073303, 0.014320374, 0.062072754, -0.013618469, 0.044433594, -0.009643555, -0.017822266, -0.016174316, -0.004928589, 0.022155762, 0.043548584, 0.004070282, -0.0036296844, -0.010421753, -0.026947021, -0.027008057, -0.04196167, -0.017913818, 0.009773254, -0.0008211136, 0.018325806, 0.002916336, 0.032562256, 0.039489746, 0.0418396, 0.0602417, -0.011314392, -0.0031642914, -0.021499634, -0.0023517609, 0.03845215, 0.0026130676, -0.036743164, 0.08654785, -0.004016876, -0.011451721, 0.012466431, -0.02482605, 0.029083252, 0.036468506, 0.021484375, -0.01828003, 0.04345703, 0.015838623, -0.009384155, -0.04510498, -0.0011711121, -0.05114746, 0.0074157715, -0.07574463, 0.040527344, 0.04626465, -0.025222778, 0.06161499, 0.052490234, 0.0015077591, 0.06149292, 0.038208008, 0.014137268, -0.007171631, 0.0569458, -0.036315918, 0.0109939575, -0.0056266785, 0.0038585663, -0.0016098022, -0.04257202, -0.008178711, -0.00749588, 0.019424438, 0.010185242, -0.022842407, -0.0259552, 0.03744507, 0.01084137, 0.016525269, 0.020706177, 0.025466919, -0.012184143, -0.0129470825, 0.008850098, -0.042114258, 0.0006070137, -0.06616211, -0.023986816, -0.062438965, 0.031051636, 0.03488159, -0.020645142, 0.051452637, 0.028137207, -0.02168274, 0.013504028, 0.013618469, -0.034088135, -0.03829956, 0.04397583, -0.0005450249, 0.010101318, -0.020492554, -0.06011963, 0.054656982, -0.022201538, -0.032440186, 0.018814087, -0.035217285, -0.064331055, -0.005001068, 0.022903442, -0.00077199936, -0.03479004, 0.024276733, -0.03265381, 0.03024292, 0.0018520355, -0.030349731, -0.012451172, -0.01600647, 0.007686615, -0.06390381, -0.015396118, 0.0003631115, -0.04196167, -0.058380127, 0.016159058, 0.0049705505, -0.003753662, 0.024169922, 0.04269409, -0.05593872, -0.01424408, -0.03074646, 0.012458801, -0.030532837, -0.0592041, 0.054748535, -0.05996704, -0.00705719, -0.015655518, 0.08074951, 0.014892578, 0.033691406, -0.015350342, -0.010009766, 0.020370483, 0.013900757, -0.018203735, -0.044281006, -0.012916565, 0.027175903, -0.018157959, -0.032043457, -0.051574707, 0.0513916, -0.017242432, -0.016403198, -0.03829956, 0.04711914, -0.029891968, 0.012138367, -0.012039185, 0.030319214, 0.013000488, 0.019454956, -0.09289551, -0.06774902, 0.008781433, -0.0020580292, 0.006614685, -0.0051574707, 0.0063934326, 0.044311523, 0.047729492, 0.019500732, 0.036895752, -0.019760132, -0.029541016, 0.03955078, -0.036834717, 0.015625, 0.03817749, -0.009757996, 0.001750946, -0.07965088, 0.05026245, -0.00024271011, 0.0047721863, -0.007820129, -0.029373169, 0.0022602081, -0.06185913, 0.022720337, -0.0017261505, -0.040283203, -0.022644043, -0.020095825, -0.027832031, -0.034729004, -0.018661499, 0.015319824, -0.0446167, 0.028884888, 0.03527832, 0.008110046, -0.017150879, -0.032043457, 0.03149414, -0.0040740967, 0.02319336, -0.008712769, -0.01902771, 0.049194336, -0.0121154785, -0.020324707, 0.0070877075, -0.028869629, -0.029541016, 0.03213501, 0.014602661, 0.005996704, 0.021255493, -0.023254395, 0.033081055, 0.035369873, 0.02758789, -0.006351471, -0.00459671, 0.013557434, 0.030899048, -0.057525635, -0.014923096, -0.016952515, 0.016571045, 0.016326904, 0.033111572, -0.018035889, 0.0043258667, 0.02986145, -0.018722534, 0.033569336, 0.013832092, 0.036987305, -0.043395996, 0.048919678, -0.009284973, -0.007904053, -0.06060791, 0.00381279, 0.024993896, -0.032226562, 0.039154053, -0.036224365, 0.03149414, 0.006713867, -0.0014467239, -0.02684021, 0.035614014, -0.032562256, 0.013702393, -0.006275177, -0.020233154, -0.028808594, -0.052459717, -0.03668213, 0.002904892, -0.02330017, 0.0079574585, 0.03869629, -0.0074310303, -0.019180298, -0.03479004, -0.0013618469, 0.008605957, -0.041534424, -0.032104492, -0.0069770813, -0.00051546097, -0.021026611, 0.0034542084, -0.02305603, 0.009635925, -0.049041748, -0.051513672, -0.057281494, -0.0022296906, -0.0067634583, 0.059265137, -0.025436401, 0.001332283, 0.03265381, -0.0064964294, 0.012199402, 0.030410767, -0.04849243, 0.0062026978, 0.014808655, 0.013015747, -0.016967773, -0.0023078918, 0.056884766, -0.035614014, -0.02319336, -0.06347656, 0.02128601, -0.027694702, -0.016403198, 0.033111572, 0.028579712, 0.0066375732, 0.032348633, 0.019088745, -0.040527344, 0.02279663, 0.007083893, -0.08288574, -0.031341553, -0.03945923, -0.02168274, 0.014701843, -0.014656067, -0.027618408, 0.021911621, -0.0029754639, -0.0027389526, 0.019332886, -0.020584106, 0.003118515, -0.06488037, 0.003873825, -0.008926392, 0.040039062, -0.00207901, 0.0093307495, -0.008773804, 0.030670166, -0.010574341, 0.020370483, -0.006286621, -0.018554688, -0.013504028, 0.019104004, 0.02607727, 0.05419922, -0.018188477, -0.0022678375, -0.032592773, 0.048339844, 0.032470703, 0.027694702, -0.036499023, -0.04031372, -0.015899658, 0.028884888, 0.031311035, 0.022583008, 0.018432617, 0.016433716, 0.0015468597, -0.010932922, 0.02545166, 0.004627228, 0.013137817, -0.0039863586, -0.016677856, -0.0009522438, 0.0016498566, -0.026763916, -0.033569336, -0.02357483, -0.042633057, -0.0093307495, -0.017837524, 0.02709961, 0.020996094, -0.027191162, 0.034820557, 0.03543091, 0.010765076, 0.03213501, -0.0068588257, -0.03036499, -0.037872314, 0.021850586, 0.0015974045, 0.003534317, 0.033813477, -0.012161255, -0.015449524, 0.026809692, -0.024520874, 0.05215454, -0.008483887, 0.04321289, 0.0005121231, -0.060028076, 0.014144897, -0.013618469, 0.017166138, 0.015716553, 0.0178833, 0.038360596, 0.035583496, -0.020874023, 0.020858765, 0.010597229, 0.017562866, 0.00024843216, -0.035705566, -0.019332886, 0.013381958, -0.016281128, -0.033111572, 0.029586792, -0.006942749, -0.00038981438, -0.034698486, 0.018539429, 0.06427002, -0.010643005, 0.038024902, 0.0036964417, 0.0135269165, -0.06390381, 0.017318726, -0.018310547, 0.056762695, 0.055847168, -0.035369873, 0.0287323, -0.044281006, 0.00016283989, 0.042388916, -0.019210815, 0.01878357, 0.0104599, -0.027679443, -0.003900528, 0.014663696, -0.023086548, -0.023773193, -0.01360321, -0.013328552, 0.021636963, -0.004878998, 0.012001038, 0.023254395, -0.042877197, -0.06286621, -0.044128418, -0.0021247864, -0.027786255, -0.002588272, -0.031341553, -0.0051879883, 0.00091171265, -0.041381836, -0.017486572, -0.0030574799, -0.02746582, -0.0031929016, 0.028152466, -0.055419922, 0.024353027, -0.00957489, 0.027236938, -0.014755249, -0.00687027, -0.02116394, -0.0234375, 0.038604736, -0.021102905, -0.038208008, 0.03543091, 0.04257202, -0.010398865, 0.0033550262, -0.01360321, -0.004306793, 0.014778137, -0.026977539, -0.016845703, 0.01247406, 0.0051460266, -0.001115799, -0.015045166, 0.038269043, 0.017623901, 0.024108887, 0.06713867, -0.020233154, -0.071899414, -0.042419434, 0.00016582012, 0.0021476746, -0.005180359, 0.004814148, -0.016433716, -0.009010315, -0.016326904, 0.0065841675, -0.008087158, 0.042236328, -0.028747559, -0.028961182, 0.018676758, 0.0076293945, -0.012496948, -0.012939453, -0.028533936, -0.024169922, 0.0032691956, -0.015625, 0.028121948, 0.0079574585, -6.7174435e-05, -0.07543945, -0.021835327, -0.047851562, -0.001581192, 0.00075626373, -0.018875122, 0.0637207, 0.008598328, -0.036254883, 0.0770874, 0.046417236, 0.042114258, 0.017745972, 0.006210327, 0.0069122314, -0.0093307495, -0.019866943, 0.004890442, -0.009864807, -0.0011482239, 0.004020691, -0.029922485, -0.0057029724, 0.013832092, -0.012382507, 0.020553589, 0.036315918, 0.0066490173, 0.010520935, 0.0007638931, -0.01751709, -0.01689148, -0.023986816, -0.010437012, -0.010635376, -0.0023097992, -0.01361084, 0.046691895, -0.034606934, 0.0037441254, -0.010910034, 0.00374794, 0.009979248, -0.014480591, -0.079833984, -0.06311035, 0.045959473, 0.027679443, -0.024154663, 0.019378662, 0.021087646, 0.023803711, -0.029052734, 0.020019531, 0.012176514, 0.01586914, -0.030548096, 0.04748535, 0.016403198, 0.08453369, -0.024505615, -0.03967285, -0.0435791, 0.039611816, -0.009246826, 0.007030487, 0.042266846, -0.01638794, 0.015296936, 0.013343811, -0.00541687, -0.025817871, 0.01374054, 0.08459473, -0.008399963, 0.01725769]}, "B07FJQ3KNK": {"id": "B07FJQ3KNK", "original": "Brand: GasOne\nName: Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies\nDescription: The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.\nFeatures: \u2713 DUEL FUEL PORTABLE GAS STOVE \u2013 Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove\u2019s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED)\n\u2713 PREMIUM GOLD DESIGN \u2013 The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures.\n\u2713 SAFETY FEATURES \u2013 Gas One\u2019s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner.\n\u2713 HIGH HEAT OUTPUT \u2013 Gas One\u2019s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove\u2019s control knob.\n\u2713 AUTO PIEZO IGNITION \u2013 The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to \u201cspark\u201d an ignition with a click. Simple to use, and fitting for any and every outdoor setting.\n", "metadata": {"Name": "Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies", "Brand": "GasOne", "Description": "The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.", "Features": "\u2713 DUEL FUEL PORTABLE GAS STOVE \u2013 Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove\u2019s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED)\n\u2713 PREMIUM GOLD DESIGN \u2013 The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures.\n\u2713 SAFETY FEATURES \u2013 Gas One\u2019s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner.\n\u2713 HIGH HEAT OUTPUT \u2013 Gas One\u2019s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove\u2019s control knob.\n\u2713 AUTO PIEZO IGNITION \u2013 The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to \u201cspark\u201d an ignition with a click. Simple to use, and fitting for any and every outdoor setting.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03692627, -0.019256592, -0.022125244, -0.035461426, -0.014381409, 0.019638062, -0.029037476, 0.010864258, -0.027374268, -0.0029125214, -0.007396698, 0.022537231, -0.018585205, -0.04837036, 0.05166626, -0.02192688, -0.022232056, 0.025283813, -0.024154663, -0.053955078, 0.019256592, -0.07873535, -0.022415161, 0.06982422, 0.02848816, 0.011276245, -0.048217773, 0.021743774, 0.0019950867, 0.002407074, 0.020111084, 0.0059165955, 0.009414673, 0.03253174, -0.0440979, -0.0692749, -0.027191162, 0.0099487305, -0.047912598, 0.0357666, 0.008926392, -0.009796143, -0.019241333, 0.04168701, -0.034423828, 0.002483368, -0.014671326, -0.021972656, 0.04095459, 0.02319336, -0.021957397, 0.00019526482, -0.036010742, 0.011016846, 0.00084733963, 0.032958984, 0.026824951, -0.025039673, -0.004360199, -0.004776001, -0.007724762, 0.025878906, 0.011177063, 0.0033740997, -0.0440979, 0.033569336, 0.0011558533, -0.019561768, 0.04473877, -0.023590088, -0.02456665, 0.0002696514, 0.026123047, 0.009056091, -0.05065918, -0.008987427, 0.004650116, -0.018707275, 0.0473938, -0.010894775, 0.0028972626, -0.019439697, 0.021621704, -0.030395508, 0.022628784, -0.031677246, -0.012321472, 0.001200676, -0.035583496, -0.0051002502, -0.02293396, -0.05230713, -0.011795044, -0.005420685, -0.023162842, -0.0056495667, -0.054534912, -0.08294678, 0.033111572, 0.031082153, 0.022949219, -0.044525146, 0.04321289, -0.005306244, -0.018707275, 0.057434082, 0.024002075, 0.035827637, 0.0018148422, -0.0017499924, -0.0040359497, -0.02809143, -0.03475952, -0.008018494, -0.015510559, 0.08428955, -0.016143799, -0.009895325, -0.013534546, 0.035858154, -0.011413574, -0.026641846, 0.027359009, 0.00919342, 0.017303467, 0.0033931732, -0.04095459, -0.0021820068, -0.022583008, 0.040618896, -0.014556885, -0.009399414, -0.0061416626, 0.037139893, -0.018676758, -0.010475159, -0.007736206, 0.0034561157, 0.013511658, -0.05090332, 0.00983429, 0.018661499, 0.029693604, 0.008033752, 0.05368042, 0.012069702, 0.029525757, 0.01449585, 0.002506256, -0.015106201, 0.038604736, 0.015029907, 0.02708435, 0.0035476685, 0.0071754456, -0.02142334, 0.013015747, -0.013771057, 0.011680603, -0.027816772, 0.0058174133, -0.011070251, -0.00223732, 0.048583984, 0.0057678223, 0.021270752, 0.018234253, 0.0010557175, -0.005355835, 0.027862549, -0.025024414, 0.06335449, -0.02935791, -0.046813965, -0.014854431, -0.06097412, -0.032104492, 0.070373535, 0.033691406, -0.05657959, -0.027877808, -0.043670654, 0.09851074, -0.0059547424, -0.008888245, 0.0070991516, -0.013648987, -0.043395996, 0.030563354, -0.017608643, 0.016403198, 0.04135132, -0.032714844, -0.014167786, 0.01235199, -0.0035762787, -0.024276733, -0.002494812, 0.0005245209, -0.0119018555, -0.008735657, -0.002407074, -0.0070648193, 0.009216309, -0.020141602, -0.036102295, 0.0031375885, 0.019699097, 0.017974854, 0.01701355, 0.006134033, -0.000998497, 0.016174316, -0.066101074, -0.032318115, -0.0025558472, -0.0011854172, 0.052825928, 0.010498047, 0.020935059, 0.0519104, -0.05307007, 0.053131104, 0.048187256, 0.03010559, -0.019805908, -0.0014572144, -0.017852783, 0.017654419, 0.0069007874, -0.043182373, 0.01725769, 0.035003662, 0.030578613, -0.025680542, 0.0206604, 0.084228516, 0.05142212, -0.0021324158, -0.026504517, 0.019699097, -0.02670288, -0.024261475, -0.008399963, -0.028167725, -0.019866943, 0.030639648, -0.0121154785, -0.026489258, 0.025131226, 0.009162903, 0.037231445, -0.0004930496, 0.0033836365, -0.016845703, 0.03643799, -0.010810852, 0.0020446777, -0.0368042, 0.028930664, 0.008918762, 0.0552063, 0.026275635, 0.0135650635, 0.049072266, -0.023422241, 0.027832031, 0.0048980713, -0.015541077, 0.0038223267, 0.020095825, -0.018188477, -0.0014820099, 0.012489319, 0.032073975, 0.010620117, -0.03286743, 0.025772095, 0.009407043, 0.007461548, 0.0021743774, -0.038269043, 0.00774765, -0.00041913986, 0.06964111, -0.029205322, 0.01473999, -0.008323669, -0.00491333, -0.02659607, 0.029785156, -0.045166016, -0.032562256, -0.023223877, -0.033721924, -0.053863525, 0.084350586, 0.011199951, 0.008003235, -0.04699707, -0.021835327, -0.005180359, -0.08300781, 0.012458801, -0.001124382, 0.007549286, 0.009841919, 0.021438599, 0.0057640076, -0.039245605, 0.027114868, 0.010948181, 0.030639648, 0.025039673, 0.009780884, -0.015541077, -0.012413025, 0.03894043, 0.015159607, 0.04397583, -0.0044822693, -0.04309082, -0.021759033, -0.008224487, -0.027252197, 0.0024051666, 0.0045814514, 0.007926941, -0.03741455, 0.010269165, 0.028457642, -0.0053863525, 0.011657715, -0.005970001, 0.007106781, -0.0042648315, -0.0022449493, 0.018035889, 0.00072574615, -0.001537323, 0.0012369156, -0.010574341, 0.0046691895, -0.023483276, -0.013168335, -0.062805176, 0.001786232, -0.0035858154, -0.055603027, -0.01852417, 0.05090332, 0.0049591064, 0.030395508, -0.033111572, 0.060150146, -0.04425049, -0.07507324, -0.013671875, -0.00592041, -0.064331055, -0.021774292, -0.027175903, -0.07476807, -0.079711914, 0.07739258, 0.021209717, -0.09039307, -0.017868042, 0.009437561, 0.022125244, -0.0022354126, 0.0287323, -0.11114502, -0.00843811, -0.015106201, 0.03338623, 0.02116394, -0.021377563, 0.024673462, 0.02142334, 0.01260376, 0.034210205, -0.0077056885, 0.059143066, -0.007183075, 0.026184082, 0.013771057, 0.021072388, -0.0044136047, -0.031188965, 0.00541687, 0.039276123, -0.02305603, 0.0005340576, 0.047943115, 0.005378723, -0.055145264, -0.0047187805, -0.087768555, 0.010269165, -0.04901123, 0.021453857, -0.004333496, -0.0076904297, 0.009239197, -0.0657959, -0.0016078949, -0.052124023, 0.01663208, -0.0032234192, 0.00038933754, 0.013458252, -0.039154053, 0.027328491, -0.02508545, -0.02267456, 0.05895996, -0.018966675, 0.027511597, -0.022491455, 0.07159424, -0.0970459, 0.07122803, 0.049041748, -0.040100098, -0.006511688, -0.021865845, 0.00504303, 0.0027637482, 0.0440979, -0.013801575, 0.0074043274, -0.023101807, 0.0053215027, 0.0057792664, 0.044921875, 0.018051147, -0.021224976, 0.046447754, -0.023971558, -0.058502197, -0.026855469, -0.037200928, -0.011955261, -0.022125244, -0.021209717, -0.011726379, -0.049835205, -0.000344038, -0.053253174, 0.01637268, 0.020477295, 0.039154053, 0.012649536, 0.011177063, 0.048919678, 0.01197052, 0.015029907, 0.0052452087, -0.0069084167, -0.027954102, -0.018112183, 0.02822876, -0.033691406, -0.04046631, -0.0053482056, 0.060760498, 0.006298065, -0.0007534027, -0.026626587, -0.029922485, 0.036590576, -0.00011509657, -0.022872925, 0.008506775, -0.010215759, 0.025390625, 0.020843506, -0.0070724487, -0.04156494, -0.0637207, 0.008590698, -0.08502197, 0.04663086, 0.024749756, -0.02268982, 0.062561035, 0.05319214, -0.033721924, 0.03363037, 0.029296875, -0.002286911, -0.023544312, 0.051208496, -0.050811768, 0.008735657, 0.022766113, -0.024261475, 0.009391785, 0.018295288, -0.071899414, 0.017440796, -0.0047187805, -0.019592285, -0.05923462, 0.0112838745, 0.0054855347, -0.016616821, 0.013122559, -0.07745361, -0.014625549, -0.041107178, -0.0048065186, -0.009689331, -0.017791748, 0.001912117, -0.029327393, -0.017578125, -0.0231781, -0.001698494, -0.023712158, 0.0024814606, -0.017120361, 0.03744507, -0.0034008026, -0.002603531, -0.041625977, 0.02758789, -0.05557251, 0.003522873, 0.013931274, 0.045654297, -0.042938232, -0.054779053, 0.046661377, -0.023254395, -0.005771637, 0.06964111, 0.011436462, -0.10290527, 0.005634308, 0.04244995, -0.0031528473, -0.06542969, 0.0027828217, 0.0064735413, 0.03302002, 0.027511597, -0.031280518, 0.012573242, -0.018661499, -0.0059127808, -0.06768799, -0.034118652, -0.0070877075, 0.020996094, -0.003967285, 0.0048294067, -0.019363403, -0.0055274963, -0.012397766, 0.018417358, -0.03881836, 0.00982666, -0.04916382, 0.016525269, -0.0038070679, -0.025726318, 0.0011529922, -0.024169922, -0.008811951, -0.017211914, 0.033721924, 0.008026123, -0.0037002563, -0.019927979, -0.018249512, 0.019729614, 0.031402588, 0.06072998, -0.010864258, 0.00687027, -0.035858154, -0.005012512, -0.06982422, 0.018005371, 0.042816162, -0.008102417, -0.04611206, -0.014183044, 0.03717041, 0.0049858093, 0.030380249, -0.053741455, 0.007575989, 0.0033683777, 0.020355225, -0.07672119, -0.11364746, -0.0046539307, -0.03491211, 0.019989014, -0.0050849915, -0.012229919, 0.024765015, 0.076049805, 0.01512146, -0.0071868896, -0.010726929, 0.015548706, -0.0011777878, 0.028701782, -0.05606079, -0.021011353, -0.04751587, 0.03111267, -0.031982422, 0.038269043, 0.013771057, -0.007774353, -0.0050582886, -0.013465881, -0.017822266, -0.052124023, -0.008224487, -0.009941101, -0.022399902, -0.0463562, -0.03741455, 0.027557373, -0.029373169, 0.01411438, -0.015853882, 0.015052795, 0.011054993, -0.009353638, -0.026046753, -0.010917664, -0.006149292, -0.0016584396, -0.014465332, 0.030670166, -0.038208008, 0.011222839, 0.04748535, -0.007408142, -0.01612854, -0.013549805, -0.007820129, -0.0063323975, -0.028671265, -0.0037574768, -0.05545044, 0.0055656433, 0.045898438, -0.023925781, -0.026947021, -0.0047569275, 0.02130127, -0.03982544, -0.078063965, -0.0017757416, 0.007843018, -0.0390625, 0.012512207, 0.024108887, 0.028869629, 0.035614014, -0.0065460205, 0.018463135, 0.020339966, 0.016693115, 0.01109314, 0.00036978722, -0.00026726723, -0.05215454, 0.030548096, -0.011444092, -0.03894043, -0.03869629, 0.013702393, 0.040008545, -0.007659912, 0.052734375, -0.064208984, 0.047088623, -0.020874023, -0.01940918, 0.015304565, 0.036956787, 0.0017700195, -0.0031089783, 0.013648987, -0.026397705, -0.054840088, 0.002981186, -0.02218628, -0.04058838, 0.024963379, -0.03744507, -0.030410767, 0.008659363, 0.019195557, -0.0052871704, -0.01612854, 0.0029506683, -0.0552063, 0.0062942505, -0.032836914, -1.6570091e-05, -0.01576233, 0.022369385, 0.034240723, 0.016677856, -0.042175293, -0.07336426, -0.06890869, 0.00655365, -0.03567505, 0.043914795, 0.025253296, -0.048919678, 0.01373291, 0.03250122, 0.020935059, -0.028793335, 0.0060424805, 0.041015625, 0.018630981, 0.02407837, -0.05834961, -0.04837036, 0.017623901, -0.04385376, -0.031051636, 0.0340271, 0.01928711, -0.018096924, -0.024246216, 0.035888672, -0.013465881, 0.006542206, 0.016174316, 0.02104187, -0.017730713, 0.003873825, 0.017410278, -0.08892822, -0.036254883, -0.02381897, -0.0057411194, -0.03225708, 0.005832672, 0.015625, 0.037261963, 0.007598877, -0.004070282, -0.02468872, 0.0006842613, -0.002822876, -0.026504517, 0.012039185, -0.009307861, 0.0028572083, -0.008018494, 0.018844604, -0.046966553, -0.041168213, 0.012321472, 0.011505127, 0.0010910034, 0.021713257, -0.00052022934, -0.0043563843, -0.02810669, 0.028823853, 0.0061035156, -0.018615723, -0.016479492, 0.012168884, 0.01802063, 0.017242432, -0.025360107, -0.0041999817, -0.062408447, -0.0027542114, 0.016830444, 0.083740234, -0.032196045, 0.05606079, 0.00919342, 0.034484863, 0.01876831, -0.0024852753, 0.027709961, 0.0061912537, -0.030532837, 0.0040779114, 0.036193848, -0.026016235, -0.026229858, -0.034301758, -0.030441284, -0.017730713, -0.01651001, 0.033477783, -0.003894806, 0.0036125183, -0.016815186, 0.015731812, 0.005844116, -0.03692627, 0.038757324, 0.02330017, 0.07672119, 0.014762878, 0.030914307, 0.019592285, -0.04336548, -0.05105591, 0.015075684, 0.034179688, 0.0029563904, 0.013870239, -0.024627686, 0.064575195, 0.044677734, -0.107788086, -0.027694702, -0.026275635, 0.02935791, -0.0069236755, -0.037872314, -0.02973938, 0.037384033, -0.0019741058, -0.020965576, 0.032348633, 0.009742737, -0.018844604, 0.044006348, 0.029281616, -0.006652832, -0.012763977, 0.038391113, -0.015045166, 0.011405945, -0.021392822, -0.027755737, 0.04711914, 0.025115967, -0.0018968582, 0.0021400452, -0.0004401207, 0.00969696, 0.0069465637, -0.053771973, -0.04257202, -0.017669678, 0.038482666, 0.027954102, -0.015357971, -0.024612427, -0.015853882, 0.027877808, -0.0016546249, -0.034576416, 0.029800415, -0.083618164, 0.035247803, 0.03338623, 0.023040771, 0.01423645, -0.026275635, -0.019302368, -0.023757935, 0.019744873, -0.06317139, 0.018356323, -0.04421997, 0.008125305, -0.01096344, 0.03250122, -0.056762695, 0.011947632, -0.002664566, 0.017105103, 0.054351807, 0.023406982, -0.013168335, -0.0034942627, -0.027420044, -0.026855469, 0.004600525, -0.054718018, 0.024597168, 0.017837524, 0.0181427, -0.0067596436, -0.005748749, -0.021987915, 0.008651733, 0.048950195, 0.009391785, 0.034210205, -0.03036499, -0.02885437, -0.052246094, 0.0062408447, -0.037231445, 0.0178833, -0.018127441, -0.023910522, 0.0057144165, 0.011222839, 0.042022705, -0.07897949, 0.014465332, -0.040649414, 0.0022525787, -0.011604309, 0.02684021, -0.02709961, -0.03744507, -0.021057129, 0.033966064, -0.07623291, -0.05569458, 0.0032043457, 0.002254486, 0.015716553, -0.004337311, 0.0031032562, 0.031097412, 0.014221191, -0.017364502, 0.0076408386, -0.0368042, -0.03274536, 0.03010559, 0.000105559826, -0.00440979, -0.009155273, 0.036010742, 0.034820557, 0.0036773682, 0.0057792664, 0.0524292, -0.07775879, 0.011688232, -0.032989502, -0.0044784546, 0.0016307831, -0.006793976, 0.030883789, 0.014053345, -0.056884766, 0.022506714, -0.01159668, 0.04425049, 0.012069702, 0.021118164, 0.04876709, -0.0047073364, -0.01576233, -0.043670654, -0.030410767, 0.01461792, -0.005355835, -0.046539307, 0.020263672, -0.008857727, -0.024108887, 0.015335083, 0.022094727, -0.026168823, -0.0002720356, 0.011947632, -0.039123535, -0.013084412, -0.008903503, -0.016220093, -0.02027893, -0.009811401, 0.028747559, -0.037628174, 0.00957489, 0.0053520203, -0.022094727, -0.0067443848, -0.02494812, 0.023895264, -0.008834839, -0.0014629364, -0.011726379, 0.019699097, 0.0011463165, 0.00075149536, -0.0011472702, -0.00086927414, -0.02268982, 0.004611969, 0.014030457, 0.003440857, -0.018203735, 0.045166016, 0.012901306, 0.017578125, -0.028579712, -0.09057617, -0.06378174, 0.026031494, -0.0022830963, 0.008270264, 0.05206299, -0.0184021, 0.0121154785, 0.033203125, -0.00048661232, -0.030258179, 0.018463135, 0.031982422, 0.014732361, 0.013771057]}, "B088HCDXVP": {"id": "B088HCDXVP", "original": "Brand: Smaid\nName: Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill\uff0cEasy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black\nDescription: 1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG's non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.\nFeatures: 100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500\u2109, Keep your family safe while enjoy delicious grilling food.\nMULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need.\nNO MESS - With our grill mats, you won't have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze!\nEasy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don't waste your time scraping the \"crud\" off your grill - get back to enjoying the BBQ with your friends and family!\n", "metadata": {"Name": "Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill\uff0cEasy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black", "Brand": "Smaid", "Description": "1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG's non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.", "Features": "100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500\u2109, Keep your family safe while enjoy delicious grilling food.\nMULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need.\nNO MESS - With our grill mats, you won't have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze!\nEasy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don't waste your time scraping the \"crud\" off your grill - get back to enjoying the BBQ with your friends and family!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.022857666, 0.024978638, -0.04058838, -0.048309326, 0.018005371, -0.013954163, -0.025375366, 0.011795044, -0.04067993, 0.04449463, 0.003364563, 0.050567627, -0.004989624, -0.01802063, -0.00028061867, -0.009399414, 0.01399231, -0.037017822, -0.032165527, -0.030700684, -0.011749268, -0.0345459, 0.00819397, 0.0037841797, 0.042541504, -0.0034008026, -0.02532959, -0.0030021667, 0.013046265, -0.006515503, 0.021987915, 0.0076179504, 0.04916382, 0.030166626, -0.08325195, -0.005722046, -0.014732361, 0.005168915, -0.055145264, 0.052246094, 0.03527832, -0.018295288, -0.013679504, 0.016403198, -0.033081055, -0.017440796, 0.015853882, -0.021438599, -0.0014123917, 0.07122803, 0.015823364, 0.037475586, -0.0024108887, 0.06323242, 0.025054932, 0.017684937, -0.024978638, -0.00025868416, 0.02142334, 0.01461792, 0.0015125275, -0.013153076, 0.011245728, 0.0001450777, -0.03894043, 0.00086402893, 0.06506348, -0.017059326, -0.036590576, -0.05883789, 0.024276733, 0.015853882, 0.05316162, -0.032958984, -0.029510498, -0.034088135, 0.028427124, 0.015701294, 0.010658264, -0.03591919, -0.050933838, -0.034240723, 0.016479492, -0.0418396, -0.005970001, -0.015823364, -0.021560669, 0.0126571655, -0.0062675476, -0.05480957, -0.012214661, 0.012130737, -0.047790527, 0.022720337, -0.026031494, -0.021942139, -0.028366089, -0.023971558, 0.009552002, 0.021484375, 0.022338867, -0.030899048, 0.045684814, -0.023071289, -0.026321411, 0.032226562, 0.007232666, -0.015205383, -0.024429321, 0.010826111, -0.016845703, -0.024551392, -0.016738892, -0.027252197, -0.061676025, 0.022644043, -0.00027370453, -0.061645508, 0.009002686, -0.07122803, -0.052734375, -0.03201294, -0.006088257, 0.05645752, 0.041381836, 0.05331421, 0.008880615, 0.017456055, -0.044647217, 0.011856079, -0.0024871826, 0.012451172, 0.040008545, 0.0390625, -0.006313324, -0.006439209, -0.015930176, -0.0068244934, 0.026062012, 0.016784668, -0.018569946, -0.035949707, 0.05630493, 0.019836426, 0.009544373, 0.017562866, 0.025360107, 0.02357483, -0.0013237, -0.062683105, 0.03866577, -0.021987915, 0.033081055, 0.016448975, -0.05291748, 0.021087646, -0.032318115, -0.00080013275, -0.028442383, -0.008125305, -0.018447876, -0.023849487, 0.017562866, -0.024856567, -0.03375244, 0.027038574, -0.013031006, 0.0003194809, 0.029815674, 0.039093018, 0.05908203, -0.027877808, 0.011749268, -0.00504303, -0.017486572, -0.022094727, 0.01966858, 0.02267456, 0.07727051, -0.04916382, -0.04727173, -0.026428223, 0.13464355, -0.046936035, -0.010917664, -0.034210205, 0.024749756, 0.03503418, 0.019302368, 0.023376465, 0.010597229, -0.03652954, -0.03729248, -0.026947021, 0.021377563, 0.029815674, -0.0390625, 0.010063171, 0.0073928833, -0.029022217, -0.015289307, -0.012840271, -0.00047183037, 0.020812988, 0.032104492, -0.05480957, 0.018493652, -0.006538391, -0.006954193, 0.057678223, -0.0062942505, -0.008560181, 0.008239746, -0.02406311, 0.01789856, -0.016815186, 0.0103302, -0.011154175, 0.032318115, -0.026504517, 0.0670166, 0.0096588135, 0.029418945, 0.02998352, 0.027160645, 0.024765015, -0.0385437, 0.0014352798, 0.034240723, 0.022872925, -0.009902954, 0.023239136, 0.04095459, 0.02558899, -0.045806885, 0.015686035, 0.014526367, 0.06451416, -0.025222778, 0.0038928986, -0.010658264, -0.010879517, -0.082458496, -0.019317627, 0.011100769, -0.012016296, -0.032440186, 0.023330688, -0.026000977, -0.035461426, 0.02267456, -0.019256592, 0.05722046, 0.02923584, 0.008842468, 0.02532959, -0.05407715, -0.01991272, -0.036315918, 0.036224365, -0.013381958, 0.014328003, 0.05996704, -0.014854431, 0.04623413, -0.053710938, 0.029785156, 0.003358841, -0.018722534, -0.015991211, 0.01033783, -0.013435364, -0.008712769, 0.013725281, 0.029724121, 0.0005469322, -0.02330017, -0.0071907043, 0.008026123, 0.0051879883, 0.005809784, 0.019683838, 0.019134521, -0.0060920715, 0.031677246, -0.011550903, 0.011779785, -0.007461548, -0.043914795, -0.015396118, 0.02154541, 0.026824951, -0.02720642, 0.00957489, -0.036499023, -0.0020389557, -0.016494751, 0.042175293, -0.011489868, -0.0047836304, -0.014305115, 0.019897461, -0.016448975, -0.011817932, 0.010505676, 0.03036499, 0.0007510185, 0.014663696, 0.0104599, -0.009757996, 0.020690918, 0.020523071, 0.02494812, -0.028900146, 0.028198242, 0.0047187805, -0.013343811, 0.02708435, -0.000623703, 0.04699707, -0.016860962, 0.026931763, -0.025375366, 0.018722534, -0.00029921532, -0.00038576126, 0.009101868, -0.0073280334, 0.008308411, 0.0044822693, -0.014038086, -0.00010764599, -0.016708374, 0.013542175, -0.009628296, 0.0031089783, 0.0054130554, 0.010414124, 0.0309906, 0.011741638, 0.046783447, -0.0030441284, -0.015823364, -0.011932373, -0.061462402, -0.00076150894, 0.061553955, 0.010253906, -0.037322998, -0.0051612854, 0.037322998, -0.03756714, -0.009124756, -0.013534546, 0.01889038, 0.021499634, -0.015853882, -0.016036987, 0.030303955, -0.055633545, -0.015556335, 0.029190063, -0.029678345, 0.01953125, 0.012466431, -0.04437256, -0.004081726, 0.02861023, -0.0019111633, -0.009414673, 0.02420044, 0.020217896, -0.0635376, -0.033691406, -0.03048706, -0.0067596436, 0.020248413, -0.03781128, -0.00868988, 0.0016870499, -0.042297363, -0.0030670166, 0.0124053955, 0.03164673, 0.012313843, 0.00036144257, 0.016921997, 0.04675293, 0.0008749962, -0.0061187744, -0.010559082, 0.013877869, -0.037750244, -0.041656494, 0.0050315857, 0.026107788, 0.015914917, -0.06390381, 0.03515625, -0.036865234, -0.07312012, -0.01322937, -0.019104004, -0.019378662, -0.019927979, -0.027191162, -0.027435303, -0.053588867, 0.008270264, 0.0871582, -0.01008606, 0.0131073, -0.0008454323, 0.03201294, 0.0024776459, 0.0060539246, -0.0107803345, 0.0032310486, -0.043670654, -0.022949219, 0.031951904, -0.02355957, 0.01234436, 0.0065460205, -0.022323608, 0.0026226044, 0.0027828217, 0.039520264, -0.05230713, -0.024215698, -0.011672974, -0.049682617, -0.016693115, 0.0362854, -0.007434845, 0.046020508, 0.021469116, -0.04208374, 0.058685303, -0.042419434, -0.022628784, -0.008041382, -0.020843506, 0.0340271, -0.043701172, -0.006542206, -0.019683838, -0.041900635, -0.0041923523, -0.00434494, -0.021499634, 0.0039787292, 0.032318115, 0.028640747, -0.02015686, 0.045196533, 0.04046631, 0.042144775, -0.024246216, 0.00026655197, -0.0104599, -0.04171753, 0.07409668, -0.016586304, 0.012504578, -0.022583008, 0.060913086, -0.014816284, -0.017578125, 0.010147095, -0.030944824, 0.018127441, 0.03414917, -0.015197754, 0.02935791, -0.048736572, -0.011299133, 0.04611206, -0.05014038, -0.024230957, -0.057617188, -0.006286621, -0.06958008, 0.09161377, 0.03668213, -0.017501831, 0.08502197, 0.09503174, -0.0012073517, 0.006477356, 0.018600464, 0.006629944, 0.003156662, 0.04937744, 0.0056037903, -0.019439697, 0.008018494, -0.028076172, 0.026428223, 0.0017910004, -0.018615723, 0.022506714, -0.005554199, -0.038208008, 0.030685425, 0.014305115, -0.0014467239, 0.012794495, -0.013420105, 0.004875183, 0.01776123, -0.018585205, 0.030883789, -0.011398315, 0.0054130554, -0.01260376, 0.04458618, 0.0015707016, 0.0026226044, -0.020568848, 0.008407593, 0.016448975, 0.028579712, 0.027801514, 0.009590149, -0.022827148, 0.013053894, -0.012390137, -0.06298828, 0.02848816, 0.04650879, 0.0368042, 0.038360596, -0.061401367, 0.0025787354, -0.024841309, -0.0059013367, 0.046661377, -0.013504028, -0.08300781, -0.012664795, 0.0030345917, 0.0087890625, -0.048309326, 0.021316528, -0.05947876, 0.006313324, -0.017822266, -0.064819336, -0.0067253113, -0.03390503, -0.02267456, -0.030532837, 0.009246826, 0.026443481, -0.066101074, -0.047210693, -0.0234375, -0.005970001, 0.049804688, -0.005176544, 0.004432678, -0.03250122, 0.0058135986, 0.0154800415, -0.0032691956, 0.06286621, 0.007709503, 0.046051025, -0.01776123, -0.02609253, -0.023880005, 0.03149414, 0.012611389, 0.020507812, -0.0256958, 0.0010890961, 0.007850647, 0.01737976, 0.031951904, -0.0041542053, 0.015777588, -0.012176514, -0.010047913, -0.05517578, -0.009811401, 0.0463562, -0.04244995, -0.018066406, -0.023208618, 0.059173584, -0.02709961, -0.028839111, -0.07098389, 0.021194458, 0.03967285, -0.03692627, 0.008834839, -0.0016860962, 0.022003174, 0.026382446, -0.017593384, -0.013931274, -0.009033203, 0.028152466, -0.019897461, 0.018005371, -0.0056877136, -0.0010299683, -0.06640625, -0.014778137, -0.017852783, -0.02180481, 0.042938232, -0.051605225, -0.02947998, -0.028121948, 0.06311035, 0.077697754, -0.040039062, -0.015235901, 0.010879517, -0.05609131, -0.06591797, -0.010192871, -0.032836914, 0.0090789795, 0.004924774, -0.016815186, -0.010902405, -0.012527466, 0.0017271042, 0.0052871704, -0.011894226, 0.027435303, -0.019348145, 0.026290894, -0.0047302246, 0.011390686, 0.031143188, 0.0035572052, 0.031158447, 0.022720337, 0.001033783, -0.0072288513, -0.030792236, -0.014518738, -0.014671326, -0.007659912, -0.019546509, 0.068725586, 0.0023345947, 0.0025405884, -0.037353516, 0.012039185, -0.033172607, -0.01146698, 8.416176e-05, 0.029586792, -0.018127441, -0.0056419373, 0.06488037, -0.030303955, 0.017333984, 0.0073623657, -0.017547607, 0.008262634, 0.051971436, -0.055877686, 0.06573486, 0.04058838, -0.061309814, 0.025039673, -0.0065460205, 0.023452759, -0.024032593, 0.055358887, 0.01725769, 0.02027893, -0.08117676, 0.015136719, -0.04486084, 0.011398315, -0.045013428, 0.007247925, 0.039886475, -0.0008955002, -0.01121521, -0.0052261353, 0.011207581, -0.024475098, 0.020080566, -0.013389587, 0.010627747, -0.030273438, -0.011894226, 0.0040016174, -0.03112793, -0.009002686, -0.037200928, 0.021774292, 0.00021207333, -0.0149002075, -0.02204895, -0.030914307, -0.005973816, -0.010681152, -0.004638672, -0.027374268, 0.008331299, -0.021942139, 0.006175995, 0.018234253, 0.009414673, -0.024337769, -0.04034424, -0.032348633, 0.0077934265, -0.024169922, 0.044891357, -0.031677246, -0.0056495667, 0.00077676773, -0.041381836, 0.02166748, -0.025756836, -0.02243042, -0.02861023, -9.0777874e-05, -0.011199951, -0.037597656, -0.0569458, 0.03213501, -0.04876709, -0.036590576, -0.0024032593, 0.052520752, 0.00907135, -0.0070877075, 0.06842041, 0.03439331, 0.011856079, 0.030899048, -0.022369385, -0.006095886, -0.004196167, 0.015281677, -0.054382324, -0.022201538, 0.001996994, 0.026290894, -0.049743652, -0.021774292, -0.025894165, 0.033203125, -0.029373169, -0.025772095, -0.0335083, -0.02659607, 0.00642395, -0.0052108765, 0.014984131, -0.009048462, 0.0058555603, -0.031829834, 0.0051231384, -0.026260376, -0.025817871, 0.038970947, 0.039001465, 0.018127441, -0.05014038, 0.024612427, 0.07525635, -0.03866577, 0.07836914, -0.056274414, -0.020263672, 0.006412506, 0.068847656, 0.07318115, 0.040771484, 0.0073394775, -0.049743652, -0.019241333, 0.046661377, 0.035705566, 0.021652222, -0.05142212, -0.039001465, 0.046417236, 0.03286743, 0.04171753, 0.020019531, 0.035095215, 5.2928925e-05, -0.025161743, 0.010513306, 0.0713501, -0.012420654, -0.014076233, -0.01852417, -0.03390503, 0.013069153, -0.015731812, 0.010177612, -0.01939392, 0.037628174, -0.02355957, 0.018737793, -0.010536194, 0.017410278, 0.033935547, -0.023849487, -0.049865723, -0.013656616, 0.0040130615, -0.015991211, 0.0021972656, 0.04272461, -0.012664795, 0.0058517456, 0.007881165, 0.036193848, 0.0256958, 0.01586914, 0.033233643, -0.05218506, 0.035125732, 0.033050537, -0.007965088, 0.027145386, 0.006298065, -0.013824463, 0.017837524, 0.03552246, 0.003364563, 0.103027344, -0.050628662, -0.0006303787, -0.0519104, 0.01423645, -0.05215454, -0.027832031, 0.0058631897, 0.017547607, -0.013633728, 0.0010547638, 0.0015659332, 0.014442444, 0.052734375, -0.028549194, -0.016586304, 0.004917145, 0.020401001, 0.002943039, -0.026748657, -0.03567505, -0.026519775, 0.060760498, 0.03753662, -0.02734375, 0.0037460327, -0.008255005, 0.026657104, -0.010261536, -0.033843994, 0.023712158, -0.042663574, 0.031463623, 0.031463623, 0.02748108, -0.032928467, 0.017410278, -0.005794525, 0.016433716, 0.005126953, 0.0625, 0.043701172, 0.0680542, 0.028900146, 0.04522705, 0.050048828, -0.04776001, 0.015975952, 0.045715332, -0.0131073, 0.03741455, -0.0016098022, -0.004589081, -0.05178833, -0.03353882, -0.009780884, -0.05343628, -0.05206299, -0.008460999, 0.015029907, -0.032684326, -0.006641388, -0.028915405, 0.041229248, -0.0031337738, 0.0075798035, -0.050964355, 0.017501831, -0.03024292, -0.019226074, -0.013252258, -0.018722534, -0.041412354, 0.045837402, 0.004337311, -0.06378174, -0.052093506, 0.0129776, 0.025421143, -0.08428955, -0.025985718, -0.040100098, 0.061920166, -0.004096985, 0.046569824, -0.019165039, -0.056640625, -0.026687622, 0.027770996, -0.036315918, -0.015052795, -0.034240723, 0.03817749, 0.04046631, -0.002784729, -0.013923645, 0.034240723, -0.0025596619, -0.017669678, -0.0463562, -0.04711914, -0.011024475, 0.05657959, -0.017288208, -0.006500244, -0.051757812, 0.03604126, 0.01499176, 0.048614502, 0.022506714, -0.0055160522, -0.05822754, -0.019470215, -0.06262207, 0.039916992, -0.03491211, 0.017578125, 0.015716553, -0.00028038025, 0.0014600754, 0.05014038, 0.04434204, -0.027069092, 0.016906738, 0.058502197, -0.008636475, -0.025543213, -0.033721924, 0.030532837, -0.0068359375, 0.023162842, 0.045562744, 0.02130127, -0.05227661, -0.0016613007, -0.0033226013, 0.027938843, 0.0073242188, -0.052001953, -0.026641846, 0.015777588, -0.00033640862, -0.02331543, 0.02571106, 0.0015954971, -0.03564453, -0.005428314, -0.026672363, 0.05078125, -0.03768921, -0.006385803, -0.024093628, 0.021331787, 0.0050582886, -0.04232788, 0.012435913, -0.057159424, 0.030929565, 0.049041748, 0.013786316, 0.016067505, -0.014060974, -0.03363037, -0.011428833, 0.024169922, 0.0124053955, 0.036590576, -0.016998291, 0.03793335, 0.017501831, 0.007888794, -0.0073280334, -0.035095215, -0.02003479, 0.009094238, 0.023132324, -0.014266968, 0.07299805, -0.03756714, 0.02128601, -0.02609253, 0.013587952, -0.033203125, 0.009971619, 0.015853882, -0.010192871, 0.034973145]}, "B091YNGC2Y": {"id": "B091YNGC2Y", "original": "Brand: iClanda\nName: BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs\nDescription: \nFeatures: \ud83e\udd69Greatly Fits Various Grills\ud83c\udf56: 58\"L x 24\"W x 44\"H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing.\n\ud83e\udd69600D Super Heavy-Duty Materials\ud83c\udf56: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant.\n\ud83e\udd69Distinct Design Features\ud83c\udf56: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use.\n\ud83e\udd69Wind-Resistant gas grill covers\ud83c\udf56: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away.\n\ud83e\udd69Hassle-Free Cleaning\ud83c\udf56: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.\n", "metadata": {"Name": "BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs", "Brand": "iClanda", "Description": "", "Features": "\ud83e\udd69Greatly Fits Various Grills\ud83c\udf56: 58\"L x 24\"W x 44\"H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing.\n\ud83e\udd69600D Super Heavy-Duty Materials\ud83c\udf56: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant.\n\ud83e\udd69Distinct Design Features\ud83c\udf56: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use.\n\ud83e\udd69Wind-Resistant gas grill covers\ud83c\udf56: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away.\n\ud83e\udd69Hassle-Free Cleaning\ud83c\udf56: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.008735657, -0.0046958923, -0.038482666, -0.022033691, -0.021606445, 0.013046265, -0.030181885, 0.019744873, -0.037353516, 0.010612488, -0.008865356, 0.020492554, -0.013160706, -0.030914307, 0.032928467, -0.036315918, 0.011734009, 0.0012073517, -0.004169464, -0.024978638, -0.0055160522, -0.019348145, 0.0030937195, 0.04385376, 0.029937744, -0.032806396, 0.019729614, -0.030029297, 0.03186035, -0.0059928894, 0.020263672, -0.0090408325, 0.034820557, 0.017623901, -0.029067993, 0.010368347, -0.008110046, 0.001294136, 0.010154724, 0.0060195923, 0.022247314, -0.017471313, 0.0009713173, 0.018966675, 0.011138916, -0.042114258, 0.015434265, -0.06781006, 0.036376953, 0.026367188, 0.01626587, 0.034729004, 0.005710602, 0.037261963, -0.011932373, -0.005722046, -0.012565613, 0.0234375, 0.025939941, 0.00038290024, -0.017959595, 0.0018796921, 0.018005371, -0.0076293945, -0.02178955, -0.0047416687, 0.08062744, 0.0003798008, -0.061920166, -0.03768921, 0.040100098, 0.0028686523, 0.031173706, -0.007534027, -0.03390503, -0.03274536, -0.029708862, -0.027236938, 0.053344727, -0.008850098, -0.041656494, -0.059661865, 0.020095825, -0.01889038, 0.0064926147, 0.009231567, -0.017028809, 0.0031986237, 0.043701172, -0.00756073, 0.021255493, 0.01260376, -0.015266418, 0.076416016, 0.025436401, -0.030075073, -0.026672363, -0.014259338, 0.01600647, 0.00472641, 0.046203613, -0.031173706, 0.01991272, -0.008834839, -0.029586792, 0.06021118, -0.0146102905, 0.05508423, -0.0031108856, 0.0211792, 0.008255005, -0.113098145, -0.026351929, -0.049713135, -0.029174805, 0.047332764, -0.008110046, -0.03152466, 0.026565552, -0.038085938, -0.03149414, 0.0020198822, -0.021499634, 0.040130615, 0.0309906, 0.049346924, 0.033203125, 0.0034770966, -0.044647217, 0.009994507, -0.009994507, 0.005420685, 0.033111572, 0.07543945, 0.023620605, -0.0087509155, 0.04638672, -0.038726807, -0.0071754456, -0.004550934, -0.027450562, 0.030303955, 0.054260254, -0.04547119, -0.0004892349, 0.019989014, 0.025466919, 0.0008158684, -0.001335144, -0.03918457, 0.010284424, -0.019073486, 0.06732178, 0.0049858093, -0.12249756, -0.02067566, -0.0009050369, -0.035308838, -0.05822754, -0.09588623, -0.038208008, -0.015396118, 0.01474762, -0.027496338, -0.022903442, 0.021087646, 0.02142334, 0.0036888123, 0.023513794, 0.025894165, 0.019104004, -0.024261475, -0.0036182404, 0.0118637085, 0.0034103394, 0.015975952, 0.010185242, 0.059661865, 0.04837036, -0.09399414, -0.0647583, -0.06402588, 0.10272217, -0.037963867, 0.0034732819, -0.03253174, 0.00096559525, -0.044281006, 0.043426514, -0.00573349, 0.005996704, -0.0007882118, -0.030654907, 0.017456055, -0.015419006, 0.0068206787, -0.01625061, 0.025100708, -0.01777649, -0.0236969, -0.0070152283, 0.017532349, -0.0029945374, 0.015289307, 0.037597656, -0.0015029907, 0.009025574, 0.013015747, 0.03744507, 0.053100586, -0.019378662, 0.0046806335, 0.0077171326, -0.028671265, -0.016555786, -0.026779175, -0.006137848, 0.028015137, -0.015167236, 0.020645142, -0.0047340393, -0.0079956055, -0.0028953552, 0.042907715, -0.008659363, -0.033111572, -0.00078344345, -0.01146698, -0.0040397644, 0.012138367, -0.002840042, 0.0050582886, 0.08123779, 0.033813477, -0.030776978, 0.032836914, 0.034301758, -0.017578125, -0.03857422, 0.02180481, -0.00573349, -0.017349243, -0.055908203, 0.02128601, -0.03918457, -0.024368286, -0.016952515, 0.031219482, -0.015655518, 0.0027065277, 0.019195557, -0.0035762787, 0.020812988, -0.022125244, -0.017974854, 0.03756714, -0.037384033, -0.019470215, -0.00061273575, 0.041290283, -0.019058228, 0.0062294006, 0.04876709, -0.018035889, 0.010391235, 0.041503906, 0.04574585, 0.045715332, -0.0035190582, -0.002292633, -0.0068588257, 0.008308411, -0.011047363, 0.0007534027, 0.039245605, 0.0079422, 0.00340271, -0.018829346, -0.005554199, -0.003370285, 0.0041236877, 0.021026611, -0.004753113, -0.009094238, 0.00969696, -0.016082764, 0.007621765, -0.0070343018, -0.013870239, -0.0046920776, 0.031280518, 0.004432678, -0.033813477, 0.007499695, -0.0024585724, -0.017730713, -0.0027751923, 0.028869629, -0.004096985, -0.006755829, 0.012527466, 0.03845215, -0.023468018, -0.014022827, -0.002111435, 0.009475708, -0.020004272, 0.01675415, 0.018920898, -0.04663086, 0.047424316, 0.07897949, 0.027709961, -0.048675537, 0.0960083, 0.032287598, 0.029800415, 0.052764893, 0.06585693, 0.07080078, -0.023254395, -0.00793457, -0.019470215, -0.032958984, 0.0037174225, 0.01965332, -0.05126953, 0.005718231, -0.042663574, 0.009536743, -0.012664795, -0.047180176, -0.033081055, -0.0069351196, -0.012954712, 0.010612488, 0.013893127, -0.011497498, 0.019042969, 0.012748718, 0.049987793, -0.0050239563, -0.011550903, -0.0018568039, -0.04067993, -0.009147644, 0.059265137, -0.005279541, -0.035614014, 0.0099105835, 0.025390625, -0.040740967, -0.028625488, -0.047088623, -0.05670166, 0.038635254, 0.034088135, -0.097717285, -0.0368042, -0.09899902, -0.008323669, -0.007949829, -0.056518555, 0.010147095, 0.07366943, -0.03366089, -0.03302002, -0.013496399, 0.037750244, 0.016830444, 0.010375977, 0.028121948, -0.0025634766, -0.023483276, 0.0073127747, -0.039031982, -0.008743286, -0.044555664, -0.0018291473, -0.010429382, -0.03050232, -0.0074691772, -0.011383057, 0.018218994, 0.0009598732, 0.033843994, 0.04949951, 0.045013428, -0.0121154785, -0.037261963, -0.015075684, 0.062927246, 0.0013008118, -0.02305603, 0.01171875, 0.006793976, 0.016540527, 0.024215698, 0.0012931824, -0.03012085, -0.06262207, -0.0046157837, 0.013214111, -0.04144287, -0.027496338, -0.03756714, -0.061920166, -0.030212402, -0.0051345825, 0.082458496, -0.009414673, 0.024017334, -0.011512756, 0.029800415, 0.025527954, 0.0024929047, -0.02760315, 0.0033493042, -0.032562256, 0.01084137, 0.013038635, 0.011047363, -0.006980896, 0.012672424, -0.0038089752, 0.043762207, 0.007873535, 0.013000488, 0.00072717667, 0.0060577393, 0.025238037, -0.024719238, -0.0075416565, 0.011604309, -0.041381836, 0.031463623, 0.01828003, 0.0025234222, 0.03845215, -0.04751587, -0.0178833, -0.006793976, -0.034698486, 0.0054779053, -0.007896423, -0.033294678, -0.010238647, -0.037139893, -0.033172607, -0.0085372925, -0.0231781, 0.020751953, -0.014694214, 0.028137207, -0.01737976, 0.054718018, -0.004501343, 0.023773193, -0.034179688, -0.013252258, -0.024887085, -0.0335083, 0.06072998, -0.038391113, -0.036224365, 0.0005683899, 0.06262207, 0.006290436, -0.025909424, -0.0038032532, -0.024169922, 0.019302368, 0.022201538, -0.016845703, 0.009292603, -0.027267456, 0.008270264, 0.0064086914, -0.010375977, -0.030410767, -0.042541504, -0.005138397, -0.0947876, 0.08026123, 0.06951904, -0.025146484, 0.07849121, 0.07232666, -0.016601562, 0.06317139, 0.053710938, 0.02116394, 0.023727417, 0.051116943, -0.01889038, -0.0029525757, 0.009597778, -0.036621094, -0.0053367615, -0.01524353, -0.031341553, -0.017318726, -0.012802124, -0.015068054, -0.031982422, 0.025238037, 0.02923584, 0.021896362, -0.015090942, -0.029846191, 0.005256653, -0.035858154, -0.008575439, 0.026504517, -0.03555298, -0.0040283203, 0.007537842, 0.018829346, -0.03161621, -0.0138549805, -0.0011329651, -0.009483337, 0.022705078, 0.035095215, -0.003660202, -0.011299133, 0.002166748, -0.010604858, -0.026992798, -0.0154418945, 0.014076233, 0.0028209686, 0.012863159, 0.015731812, 0.014320374, 0.024276733, -0.007904053, 0.02999878, -0.0074806213, -0.07055664, 0.006729126, 0.05532837, 0.0036296844, -0.033081055, 0.0066604614, -0.052581787, -0.013648987, 0.00044584274, -0.054779053, -0.005695343, -0.012519836, 0.0061149597, -0.025466919, 0.0184021, 0.019638062, -0.06774902, -0.061706543, -0.0012168884, 0.003786087, 0.023864746, -0.004085541, 0.06341553, -0.03451538, -0.051452637, 0.004219055, 0.010307312, 0.040496826, 0.009269714, 0.034484863, -0.03842163, -0.0010356903, -0.024108887, 0.09112549, 0.0077400208, 0.0024757385, -0.04232788, 0.0007405281, -0.0052452087, 0.040618896, 0.06262207, 0.00995636, 0.03768921, -0.016662598, 0.02407837, -0.0647583, -0.037231445, 0.057250977, -0.04486084, -0.039733887, -0.06829834, 0.04638672, -0.00064849854, -0.038970947, -0.035858154, 0.043670654, 0.015388489, 0.001663208, -0.0022697449, 0.044311523, 0.030151367, -0.002204895, 0.00030493736, -0.011054993, -0.021072388, 0.0413208, 0.00033020973, -0.009735107, 0.004863739, 0.0047721863, 0.026748657, 0.0034332275, 0.036132812, -0.05859375, -0.005268097, -0.030593872, -0.018112183, -0.050354004, 0.08306885, 0.0069885254, -0.010292053, -0.005382538, -0.017913818, -0.005016327, -0.06335449, 0.0048294067, -0.050445557, -0.0154953, -0.005844116, -0.009056091, -0.0007762909, -0.0029010773, 0.0066871643, 0.026275635, -0.024642944, 0.029724121, -0.02684021, 0.03878784, -0.000541687, -0.007843018, 0.051849365, 0.01512146, -0.0057258606, 0.007965088, -0.032226562, -0.010299683, -0.04309082, -0.018417358, 0.02029419, -0.009460449, -0.026473999, 0.04638672, 0.01876831, -0.03125, 0.018432617, 0.028717041, 0.0022258759, -0.039855957, -0.003112793, -0.0015993118, -0.014762878, -0.028503418, 0.03366089, -0.012374878, 0.03387451, 0.045532227, -0.04800415, -0.035949707, 0.023925781, -0.06677246, 0.08203125, -0.014564514, -0.06719971, 0.04550171, -0.0016403198, 0.014503479, -0.005710602, 0.048431396, 0.0040626526, 0.00248909, -0.043670654, 0.00605011, -0.004135132, 0.03237915, -0.01876831, -0.011947632, 0.042541504, -0.020462036, -0.017837524, 0.01940918, 0.07598877, -0.013801575, 0.0063591003, 0.040496826, 0.019378662, -0.05795288, 0.033447266, -0.087402344, 0.015007019, -0.025009155, 0.050445557, 0.011756897, -0.010055542, -0.021514893, -0.06896973, -0.023040771, 0.02267456, -0.011657715, 0.014770508, 0.0030651093, 0.020126343, -0.0038032532, -0.018569946, 0.0017442703, 0.01676941, -0.03918457, -0.034362793, -0.03781128, 0.0076828003, -0.007610321, 0.04550171, -0.0044136047, -0.018463135, 0.0053977966, -0.0050468445, 0.02859497, -0.026763916, -0.01876831, 0.0090789795, -0.003786087, 0.00016582012, -0.029312134, 0.022201538, 0.035705566, -0.042785645, -0.025161743, -0.05670166, 0.017929077, -0.04260254, -0.034973145, 0.04373169, 0.031341553, 0.004798889, 0.023590088, 0.0075950623, -0.020004272, 0.02027893, 0.021224976, -0.08526611, -0.005214691, -0.0018482208, 0.014701843, -0.016448975, -0.010864258, -0.013824463, 0.048980713, -0.0043678284, -0.0004377365, -0.061920166, -0.020568848, -0.0052223206, -0.04458618, 0.018127441, -0.0385437, -0.001666069, -0.009765625, -0.034332275, -0.0635376, -0.011932373, 0.030212402, 0.027633667, 0.013801575, -0.021011353, 0.017578125, 0.0413208, -0.02861023, 0.05987549, -0.034576416, -0.024291992, 0.009468079, 0.06463623, 0.036071777, 0.027297974, -0.029312134, -0.037109375, -0.007587433, 0.00048065186, -0.003068924, 0.022003174, -0.033203125, -0.02166748, 0.018081665, 0.03805542, -0.014511108, -0.02217102, 0.0013113022, 0.0118637085, -0.032562256, -0.017059326, 0.0390625, -0.028762817, 0.004119873, -0.032806396, 0.015113831, 0.024261475, 0.011352539, 0.0039634705, 0.008964539, 0.04055786, -0.01612854, 0.036132812, 0.006954193, 0.021591187, 0.0042037964, -0.0047950745, -0.016281128, 0.02330017, 0.020187378, 0.0013666153, 0.012924194, -0.01058197, -0.010902405, 0.02142334, -0.009307861, 0.052581787, 0.018844604, 0.008674622, 0.021392822, -0.012931824, -0.0036468506, 0.031280518, 0.021621704, 0.015396118, -0.09436035, -0.04321289, -0.03387451, 0.020019531, 0.0052986145, 0.0803833, 0.004611969, 0.013076782, -0.013145447, -0.025772095, 0.029434204, -0.017471313, 0.016662598, 0.018539429, -0.0049438477, -0.011886597, -0.05770874, -0.010559082, 0.017349243, -0.03149414, -0.012809753, -0.003068924, 0.02571106, 0.010543823, 0.011665344, -0.030380249, -0.02658081, 0.008354187, 0.007675171, -0.011802673, -0.010635376, 0.0037651062, 0.01309967, 0.0038604736, -0.04711914, 0.03086853, -0.047821045, 0.046142578, 0.031707764, 0.020706177, -0.030776978, -0.022216797, -0.017913818, 0.0082092285, -0.008522034, 0.06616211, -0.009346008, 0.07696533, -0.015625, 0.034698486, 0.028121948, -0.027709961, 0.017669678, 0.011024475, -0.024459839, 0.020996094, -0.02192688, 0.02368164, 0.021484375, -0.040802002, -0.00076293945, 0.0027942657, 0.0028057098, 0.038970947, 0.0020523071, -0.018875122, -0.013648987, -0.014701843, 0.026992798, -0.014701843, 0.00047659874, -0.03768921, 0.0029506683, -0.035980225, -0.03289795, -0.027923584, -0.015777588, -0.06225586, 0.029769897, -0.022155762, -0.034088135, -0.011650085, -0.001414299, -0.0011196136, -0.06274414, -0.025390625, -0.008956909, 0.035888672, -0.004638672, 0.08911133, -0.05517578, -0.036132812, -0.02949524, 0.013328552, -0.04083252, -0.026657104, 0.018051147, 0.032714844, 0.06530762, 0.030517578, 0.050628662, 0.082092285, 0.025009155, 0.0048713684, -0.00016212463, -0.026657104, -0.051116943, 0.0491333, 0.008483887, -0.020996094, 0.018173218, 0.06341553, -0.012229919, 0.02166748, 0.019836426, -0.025314331, -0.041381836, -0.007282257, -0.022628784, -0.0005130768, -0.011352539, -0.011047363, 0.017700195, 0.0038642883, -0.026687622, 0.01701355, 0.028030396, -0.00094509125, 0.012329102, -0.0002361536, 0.028915405, 0.0005249977, 0.0007662773, -0.03302002, -0.010925293, 0.002779007, 0.036865234, 0.03189087, -0.008979797, 0.017486572, -0.0017881393, 0.011856079, -0.00774765, -0.02470398, -0.008018494, 0.02116394, -0.03616333, -0.023864746, -0.0075187683, -0.01373291, 0.0029125214, -0.03074646, 0.050964355, 0.075805664, -0.04727173, -0.007843018, 0.0126571655, -0.02218628, 0.033355713, -0.03793335, -0.04043579, -0.042266846, 0.00042414665, 0.03201294, -0.03265381, 0.026687622, -0.02166748, 0.005870819, -0.009178162, 0.028823853, 0.006591797, 0.037353516, -0.0038719177, 0.011268616, -0.00042796135, 0.06774902, -0.02746582, -0.037475586, -0.03945923, 0.02999878, 0.03475952, -0.0134887695, 0.06732178, -0.005104065, 0.019897461, 0.013710022, 0.008262634, -0.010787964, 0.015716553, 0.03137207, -0.0036697388, 0.022247314]}, "B07W64SGBK": {"id": "B07W64SGBK", "original": "Brand: DOZYANT\nName: DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color\nDescription: \nFeatures: For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need.\nThe Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "metadata": {"Name": "DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color", "Brand": "DOZYANT", "Description": "", "Features": "For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need.\nThe Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.015388489, 0.020263672, -0.033172607, -0.049194336, 0.014724731, -0.0066719055, -0.018493652, -0.012626648, 0.00053167343, 0.007457733, -0.007972717, 0.035949707, 0.017791748, -0.037017822, 0.014457703, -0.011512756, 0.0006504059, -0.037139893, -0.055541992, -0.0435791, -0.0018939972, -0.038238525, -0.044128418, 0.08673096, 0.03414917, -0.008636475, -0.019042969, 0.036346436, 0.01637268, 0.008865356, 0.017303467, -0.018417358, 0.018325806, 0.0032482147, -0.026000977, -0.050354004, -0.031280518, 0.00025701523, -0.032196045, 0.013961792, 0.0051994324, 0.0059051514, -0.007587433, -0.0075149536, -0.026382446, -0.038879395, 0.0009326935, -0.029144287, 0.012557983, 0.0075149536, 0.0029125214, -0.0028877258, 0.019714355, 0.023880005, -0.010795593, -0.0047073364, 9.328127e-05, -0.057006836, 0.007255554, 0.012680054, 0.016403198, 0.004497528, 0.011207581, -0.0014772415, -0.001750946, 0.014846802, 0.04827881, 0.0021533966, 0.047210693, -0.015434265, -0.03265381, 0.037994385, 0.023803711, -0.015045166, -0.04034424, -0.03378296, 0.03729248, -0.03805542, 0.010383606, -0.0051651, 0.015075684, -0.01574707, 0.016983032, 0.0057792664, -0.00674057, -0.002111435, -0.008476257, -0.017547607, -0.02810669, -0.03765869, -0.020309448, -0.014930725, -0.074157715, 0.0021305084, -0.004688263, -0.03100586, -0.049865723, -0.06738281, -0.0006966591, 0.023025513, 0.017623901, -0.037902832, 0.03488159, -0.013641357, 0.026977539, 0.04827881, -0.02003479, -0.010757446, 0.038513184, -0.003156662, -0.0017375946, 0.04107666, -0.003129959, -0.041900635, 0.0036411285, 0.043273926, 0.003873825, 0.01525116, 0.030914307, 0.0065727234, -0.02557373, -0.005630493, 0.004840851, -0.0035305023, -0.0033187866, -0.01108551, -0.014137268, 0.0064430237, -0.0519104, 0.02809143, -0.008148193, 0.0019283295, 0.028717041, 0.07543945, 0.007911682, -0.008720398, 0.03111267, 0.01953125, -0.0034122467, -0.001868248, 0.037139893, -0.026290894, -0.03479004, 0.028427124, -0.033599854, 0.028701782, 0.0010108948, -0.0026435852, 0.0057868958, -0.064453125, -0.023788452, -0.057373047, 0.023742676, 0.009101868, -0.020019531, 0.002866745, 0.00023341179, -0.016906738, 0.0079956055, -0.018875122, -0.020126343, -0.0018148422, 0.0071792603, -0.0057907104, -0.0071792603, 0.018295288, 0.0069885254, -0.004047394, 0.02507019, 0.026931763, 0.00844574, 0.029510498, 0.07067871, 0.013122559, -0.012336731, -0.023880005, -0.023742676, 0.055389404, 0.055786133, -0.12475586, -0.094177246, -0.068237305, 0.085632324, -0.039489746, 0.009025574, -0.007297516, 0.00969696, -0.031173706, -0.014328003, 0.010147095, 0.02319336, 0.05645752, 0.016174316, -0.04675293, 0.018508911, 0.0016183853, 0.0003912449, 0.01600647, -0.0022201538, -0.020706177, -0.056884766, 0.0037631989, -0.018615723, 0.04083252, 0.005821228, -0.021896362, -0.01751709, 0.009849548, -0.015602112, 0.03302002, 0.007843018, -0.024612427, 0.012245178, -0.03866577, 0.003753662, -0.0064086914, -0.01713562, -0.032318115, 0.008277893, -0.019866943, 0.041381836, 0.005558014, 0.013282776, 0.025390625, 0.018112183, -0.00894928, -0.013885498, -0.009841919, 0.014595032, 0.0003118515, 0.01474762, 0.041412354, 0.09631348, 0.056427002, -0.018951416, 0.04119873, 0.08929443, 0.054840088, -0.05206299, -0.020462036, 0.02255249, -0.0524292, -0.050109863, -0.017501831, -0.034057617, -0.072509766, -0.013671875, 0.018661499, -0.022979736, 0.039123535, 0.006099701, 0.019836426, 0.016159058, 0.018966675, -0.08148193, 0.051208496, -0.013442993, 0.03036499, -0.059173584, 0.0058250427, -0.004173279, -0.01235199, 0.0045661926, -0.013168335, 0.058166504, 0.018371582, 0.06640625, 0.036376953, -0.007003784, 0.008628845, -0.0073661804, -0.02331543, -0.0014343262, -0.024246216, -0.019012451, 0.040496826, -0.034454346, 0.030654907, 0.013038635, -0.007965088, 0.036712646, 0.007549286, 0.026977539, -0.0028457642, 0.06604004, 0.03488159, -0.003042221, -0.0030784607, -0.00080013275, 0.0079193115, 0.0063171387, 0.06262207, 0.004600525, 0.04498291, -0.03326416, 0.011192322, 0.09509277, -0.0058670044, 0.0046310425, 0.0073127747, 0.04449463, 0.049926758, -0.018569946, 0.0095825195, -0.0069274902, -0.035339355, -0.027496338, 0.013618469, -2.1874905e-05, -0.0057640076, -0.050109863, 0.039611816, 0.022140503, 0.021972656, 0.019470215, 0.00818634, 0.00094795227, 0.039245605, 0.04827881, 0.061309814, -0.027145386, -0.017349243, -0.013092041, -0.013008118, 0.0050964355, 0.012016296, -0.013702393, 0.018692017, -0.0045547485, 0.002046585, 0.004207611, -0.009735107, -0.009460449, -0.010574341, -0.0015630722, -0.00440979, 0.012084961, -0.012176514, -0.014045715, -0.055236816, 0.018356323, -0.080444336, 0.0046081543, 0.038146973, -0.043395996, -0.0028743744, 0.042663574, 0.010269165, 0.023071289, 0.028274536, -0.02331543, 0.0072631836, 0.017868042, 0.03756714, 0.039398193, -0.01889038, -0.032958984, 0.0071640015, 0.011871338, -0.05178833, 0.023483276, -0.027374268, -0.04333496, -0.025375366, 0.07128906, -0.021942139, -0.03994751, -0.052856445, 0.0070533752, 0.017211914, 0.033935547, -0.011985779, -0.05682373, -0.01386261, -0.01247406, -0.021133423, 0.032806396, -0.038513184, 0.030212402, 0.018493652, -0.009216309, 0.0058898926, -0.0115356445, -0.0012769699, -0.027770996, 0.02986145, 0.04815674, 0.023117065, 0.023483276, -0.03744507, 0.04574585, 0.07165527, -0.025253296, -0.0055389404, -0.0066604614, 0.0143966675, 0.011550903, -0.047698975, -0.010322571, -0.033813477, -0.03756714, -0.0034999847, -0.024139404, -0.00026655197, 0.017242432, -0.050872803, 0.008918762, -0.046875, 0.01689148, 0.05493164, -0.02142334, 0.023971558, -0.039764404, 0.028915405, -0.019546509, 0.024154663, 0.016204834, -0.0022411346, -0.008354187, 0.01121521, 0.047943115, -0.07946777, 0.04067993, 0.040252686, -0.014976501, -0.0054893494, -0.014678955, 0.0154953, -0.007865906, 0.010475159, -0.0055503845, -0.01725769, -0.04650879, -0.031951904, -0.0033054352, -0.026306152, 0.022064209, -0.02861023, 0.033416748, -0.008842468, -0.074035645, -0.020202637, -0.02973938, 0.041534424, -0.038146973, 0.011306763, -0.047027588, -0.09033203, -0.016998291, -0.059783936, 0.006046295, 0.020858765, 0.033721924, 0.015823364, 0.010169983, 0.040740967, 0.01802063, 0.054534912, -0.01838684, 0.011245728, 0.03387451, -0.021713257, -0.016342163, 0.025863647, -0.023483276, -0.034484863, 0.014312744, 0.009490967, -0.014427185, -0.01335144, -0.028076172, 0.0758667, -0.008590698, -0.017044067, 0.015510559, 0.019210815, 0.014251709, -0.021850586, 0.024398804, -0.017730713, -0.021377563, 0.0012636185, -0.1071167, 0.11273193, 0.04647827, -0.03515625, 0.055267334, 0.049926758, -0.013534546, 0.020828247, 0.040374756, -0.016998291, 0.027282715, 0.020584106, -0.023956299, -0.0058517456, 0.010726929, -0.00014579296, 0.010787964, 0.018569946, -0.080444336, 0.029174805, 0.021514893, -0.03387451, -2.1100044e-05, 0.013442993, 0.002035141, -0.010948181, 0.00021362305, -0.0087509155, -0.004585266, -0.040740967, 0.031463623, -0.015144348, -0.0019140244, 0.0362854, -0.017745972, -0.047058105, 0.017532349, 0.006450653, 0.009109497, -0.0073890686, 0.024978638, 0.042907715, -0.022827148, -0.0052948, -0.014091492, -0.022857666, -0.06903076, 0.0124053955, 0.045196533, 0.050872803, 0.014457703, -0.058044434, 0.011428833, 0.0037002563, -0.022247314, 0.041168213, 0.023117065, -0.045410156, -0.0018815994, 0.013504028, -0.002817154, -0.010383606, 0.0028038025, -0.06463623, -0.03326416, -0.031158447, -0.057556152, -0.021392822, 0.0009212494, 0.011108398, -0.010345459, -0.023925781, -0.052124023, -0.006916046, -0.027053833, 0.0020980835, 0.010437012, 0.010536194, 0.01864624, 0.00036144257, -0.05618286, 0.0059814453, -0.025360107, -0.023330688, 0.07562256, 0.0061836243, -0.04257202, -0.02368164, -0.0051879883, 0.023605347, 0.041046143, -0.01727295, -0.0031490326, -0.032104492, -0.018066406, 0.010292053, 0.046844482, 0.08227539, -0.011505127, 0.016784668, -0.046081543, 0.001250267, -0.044311523, 0.0023899078, 0.02015686, -0.00013911724, -0.051574707, -0.021362305, 0.050750732, -0.0032787323, 0.009742737, -0.053100586, 0.017456055, 0.018997192, -0.034210205, -0.05508423, -0.032165527, 0.006088257, 0.014953613, -0.024276733, 0.0027770996, -0.029144287, 0.02116394, -0.028030396, -0.018844604, 0.010726929, -0.016677856, -0.022705078, -0.01210022, 0.030288696, -0.014701843, 0.013206482, -0.010940552, -0.034088135, -0.06842041, 0.064453125, 0.072265625, -0.026550293, 0.0063591003, -0.0077590942, -0.041229248, -0.035339355, -0.007736206, 0.026763916, -0.022750854, -0.037475586, -0.041259766, 0.029525757, -0.025680542, 0.012413025, -0.0016803741, 0.0017442703, 0.021392822, -0.017440796, 0.0072631836, -0.0015525818, -0.024139404, -0.00030064583, -0.013587952, 0.006324768, -0.05255127, -0.004009247, 0.029342651, -0.02331543, -0.024169922, -0.012702942, -0.01260376, 0.003610611, -0.044677734, 0.0003912449, -0.036315918, 0.018417358, 0.042388916, 0.011505127, 0.013122559, 0.02494812, -0.032318115, -0.006313324, -0.010002136, -0.0053215027, -0.004547119, -0.016677856, -0.0087509155, -0.01159668, 0.0020275116, 0.067871094, -0.05960083, 0.06591797, 0.051818848, -0.029418945, 0.0149383545, 0.003955841, -0.005142212, -0.05895996, 0.10253906, -0.014724731, 0.006088257, -0.062927246, 0.0039024353, -0.02078247, 0.017333984, -0.012832642, -0.015274048, 0.017669678, -0.023498535, 0.0014266968, 0.029586792, 0.00422287, -0.051757812, -0.048980713, 0.03503418, -0.05429077, -0.035247803, 0.044891357, -0.03729248, 0.02470398, 0.0056266785, -0.012809753, 0.01638794, 0.009429932, -0.061279297, -0.03111267, -0.014640808, -0.004447937, 0.010070801, -0.023330688, -0.013504028, -0.0044441223, -0.03503418, 0.014442444, 0.014518738, 0.0068893433, -0.056396484, -0.029006958, -0.018798828, 0.033935547, 0.019058228, 0.032470703, -0.01197052, -0.01461792, 0.014663696, -0.010223389, 0.0044136047, -0.030441284, -0.026397705, -0.00630188, -0.0010766983, -0.0030956268, -0.007972717, 0.027511597, 0.015838623, -0.040130615, -0.011886597, -0.02758789, 0.04373169, -0.022521973, -0.07672119, 0.095336914, 0.04864502, 0.011505127, -0.002450943, -0.041015625, -0.04901123, 0.008987427, 0.0066452026, -0.072631836, -0.0385437, -0.03186035, -0.009101868, 0.013504028, -0.0005917549, -0.006965637, 0.04660034, 0.009414673, -0.040374756, -0.01864624, 0.0031089783, 0.01612854, -0.023925781, 0.006061554, 0.0077667236, 0.029296875, -0.0065345764, 0.027893066, -0.06567383, -0.025131226, -0.0062065125, 0.02468872, -0.0048599243, 0.017074585, -0.002149582, 0.03579712, -0.03463745, 0.017868042, -0.031158447, 0.04458618, 0.0019454956, 0.023483276, -0.021728516, 0.089782715, -0.02003479, -0.0071029663, -0.027511597, -0.016189575, -0.020996094, 0.04272461, -0.04168701, -0.009513855, -0.00078868866, 0.054473877, -0.021820068, -0.0052604675, 0.021820068, -0.007904053, -0.057434082, -0.033843994, -0.011688232, -0.04071045, -0.012268066, -0.047668457, -0.010322571, 0.0037841797, -0.010826111, 0.031585693, -0.044769287, 0.03994751, -0.040893555, 0.0074539185, -0.0062446594, -0.023513794, 0.02696228, -0.03918457, 0.016952515, -0.050109863, -0.003282547, -0.006690979, 0.0056877136, 0.0011224747, -0.0003027916, 0.020248413, -0.0059776306, 0.03173828, -0.0034332275, 0.0041542053, 0.041290283, -0.055267334, 0.0006418228, 0.018600464, -0.0034942627, -0.005722046, -0.004245758, -0.00818634, -0.009651184, 0.046051025, 0.027496338, 0.035736084, -0.009597778, 0.046661377, -0.027694702, -0.0042304993, -0.0138168335, -0.041625977, 0.039093018, 0.019058228, -0.007446289, -0.015167236, -0.05682373, -0.030029297, 0.04196167, 0.0029239655, -0.049194336, 0.0028095245, 0.043182373, 0.030822754, 0.037963867, -0.0141067505, -0.064819336, -0.040802002, -0.00623703, 0.008514404, 0.061676025, 0.026321411, 0.03945923, 0.030807495, 0.0050315857, 0.011833191, -0.034454346, 0.0101623535, 0.033355713, -0.0038032532, -0.06915283, -0.05545044, -0.014282227, -0.038208008, -0.007007599, 0.047058105, -0.031082153, 0.061706543, 0.03616333, 0.070129395, 0.078063965, 0.003293991, 0.043762207, 0.007987976, -0.0004017353, 0.042388916, 0.020202637, -0.02507019, -0.025558472, 0.008705139, 0.022491455, 0.0061683655, -0.0036792755, -0.03692627, -0.00945282, -0.0008454323, -0.0049972534, 0.019638062, 0.0072517395, -0.01890564, -0.024276733, -0.0131073, -0.023834229, -0.0095825195, -0.034240723, -0.051879883, -0.046722412, -0.04824829, 0.047698975, -0.020477295, -0.00982666, 0.01499939, -0.009994507, -0.013298035, -0.02947998, 0.019088745, 0.007911682, 0.03857422, -0.009361267, -0.0007481575, -0.010002136, -0.031219482, -0.017333984, 0.03652954, -0.026367188, -0.04147339, 0.025009155, 0.010169983, 0.026870728, 0.027664185, 0.062683105, 0.031585693, 0.026229858, -0.003276825, 0.0021209717, -0.004840851, -0.005695343, 0.015449524, 0.010643005, -0.023239136, -0.0184021, 0.0068626404, -0.0033721924, 0.018203735, 0.019760132, 0.007751465, -0.01550293, 0.015930176, -0.0033054352, -0.057006836, -0.009536743, -0.0015144348, 0.025497437, 0.013977051, -0.014259338, 0.031402588, 0.012840271, -0.020370483, 0.07171631, 0.017837524, -0.00299263, -0.035247803, -0.07159424, -0.057037354, -0.010314941, 0.039611816, -0.008529663, -0.07562256, 0.018417358, -0.025756836, -0.029785156, -0.019454956, 0.02684021, -0.008621216, 0.01373291, 0.05291748, -0.016052246, 0.017700195, -0.011688232, 0.005306244, -0.022583008, -0.04953003, 0.055541992, 0.012489319, -0.026123047, -0.015083313, -0.04916382, -0.0019111633, -0.0149002075, -0.066711426, -0.033477783, -0.06341553, 0.041503906, 0.026535034, 0.0022678375, -0.0033855438, 0.02456665, -0.02218628, -0.019561768, 0.0072250366, 0.012359619, 0.009185791, -0.0001257658, -0.014221191, -0.0040664673, 0.016433716, -0.011680603, -0.08459473, -0.0357666, 0.011924744, -0.0006046295, 0.0021209717, 0.018707275, -0.024414062, 0.0010251999, 0.019104004, 0.014701843, -0.027801514, 0.017974854, 0.013648987, 0.02381897, 0.017944336]}, "B07H5RJ8YJ": {"id": "B07H5RJ8YJ", "original": "Brand: Weber\nName: Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\niGrill 3 compatible, for perfectly grilled food (accessory sold separately)\n", "metadata": {"Name": "Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\niGrill 3 compatible, for perfectly grilled food (accessory sold separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.021499634, -0.004425049, -0.03475952, 0.023590088, -0.028671265, 0.0012998581, -0.008262634, -0.016357422, -0.021957397, 0.034484863, -0.005470276, 0.036132812, 0.011459351, -0.01940918, 0.014457703, 0.007537842, 0.03741455, -0.004211426, 0.017425537, -0.01940918, 0.022842407, -0.0077590942, 0.00818634, 0.07940674, 0.04852295, -0.06951904, 0.050201416, -0.009262085, 0.035461426, 0.011947632, 0.032165527, -0.010726929, 0.030670166, 0.02935791, -0.04574585, -0.003227234, 0.02128601, 0.004547119, -0.000685215, 0.009567261, 0.030792236, -0.0061836243, -0.030853271, -0.0012636185, -0.030685425, -0.06427002, 0.055358887, -0.015220642, 0.02268982, 0.05178833, -0.009185791, 0.001750946, -0.01852417, 0.03665161, -0.009147644, -0.028945923, -0.0020446777, -0.0051841736, 0.011779785, 0.00045132637, 0.009414673, 0.010314941, 0.016799927, 0.002166748, -0.027999878, 0.003894806, 0.0713501, -0.023590088, -0.007843018, -0.041290283, 0.034057617, 0.014625549, 0.028335571, -0.005504608, 0.0063972473, -0.01689148, -0.0070495605, -0.008430481, 0.038330078, 0.009460449, -0.005771637, -0.00073575974, -0.006790161, 0.0034561157, -0.0035953522, 0.011726379, -0.030136108, -0.017303467, -0.01586914, -0.03982544, -0.0068511963, -0.015045166, -0.054595947, 0.032989502, 0.005569458, -0.027908325, -0.025817871, -0.05831909, 0.068603516, 0.031677246, 0.029525757, -0.037200928, 0.026351929, -0.003419876, -0.011917114, 0.046691895, -0.022735596, 0.015823364, 0.008659363, 0.008621216, -0.010055542, -0.07055664, 0.0057792664, -0.046844482, -0.019210815, 0.032318115, 0.018005371, -0.007843018, 0.030273438, -0.033599854, -0.030532837, -0.007789612, 0.01725769, 0.010925293, 0.03918457, 0.039642334, 0.0007491112, -0.014694214, -0.0395813, 0.01272583, -0.040863037, 0.025726318, 0.075927734, 0.043518066, -0.002626419, -0.008796692, 0.021911621, 0.025482178, 0.026260376, -0.019058228, 0.004890442, -0.013343811, -0.0028972626, 0.020965576, 0.030822754, 0.024734497, 0.023284912, -0.001004219, 0.0026340485, -0.03878784, 0.031555176, -0.015716553, 0.043884277, 0.012275696, -0.037719727, 0.00655365, 0.018966675, -0.009849548, -0.0579834, -0.029205322, -0.0413208, -0.035003662, 0.015464783, 0.0004107952, -0.036621094, 0.07299805, 0.021072388, 0.017532349, 0.02027893, 0.0513916, -0.01914978, -0.03692627, 0.027801514, 0.016494751, -0.02130127, 0.024810791, -0.018249512, 0.032348633, 0.03842163, -0.027557373, -0.02670288, -0.046142578, 0.06945801, -0.013961792, -0.0014753342, 0.018188477, 0.037750244, 0.009391785, -0.025970459, 0.013130188, 0.07324219, 0.048095703, -0.038513184, 0.03829956, 0.017929077, -0.018554688, -0.076660156, -0.01826477, -0.018737793, -0.006591797, 0.022003174, -0.005203247, -0.005241394, -0.02558899, -0.019714355, -0.02267456, 0.0013723373, 0.017608643, 0.020843506, -0.0009794235, -0.025344849, -0.056793213, 0.053497314, -0.052886963, -0.03363037, 0.025787354, -0.03100586, -0.0016021729, 0.017578125, 0.011993408, 0.047973633, 0.020477295, 0.014373779, -0.0058631897, 0.028579712, 0.014526367, -0.013580322, 0.017196655, 0.058166504, 0.023361206, -0.0029411316, -0.036590576, 0.089416504, 0.08190918, -0.0077209473, 0.054229736, 0.09136963, 0.056732178, -0.035888672, -0.03225708, 0.009300232, -0.06329346, -0.06958008, -0.023910522, -0.043670654, 0.0002655983, 0.006336212, 0.00844574, -0.024856567, -0.0070495605, 0.04159546, 0.008934021, 0.043304443, 0.015258789, -0.0181427, 0.055603027, -0.0055656433, -0.012557983, 0.014907837, 0.014045715, 0.012825012, 0.05908203, 0.003200531, 0.024261475, 0.053955078, 0.016998291, 0.03930664, 0.023361206, -0.05230713, 0.02368164, 0.018981934, 0.009292603, -0.0071640015, -0.010055542, -0.011009216, 0.009162903, -0.025146484, 0.025390625, 0.009101868, -0.018539429, 0.016403198, 0.030441284, 0.015838623, -0.014167786, 0.03845215, 0.009017944, 0.0057792664, -0.03062439, -0.057861328, 0.0011806488, 0.040161133, -0.0390625, -0.03967285, -0.034973145, -0.017333984, -0.019058228, 0.08093262, -0.009155273, 0.0061950684, -0.022415161, 0.039886475, 0.02810669, -0.038391113, -0.001745224, -0.0036525726, -0.027664185, 0.019714355, -0.0043563843, -0.012878418, -0.042755127, 0.006088257, 0.02911377, 0.020111084, -0.01576233, 0.038330078, -0.010787964, 0.00969696, 0.041015625, 0.013145447, 0.016174316, -0.030181885, 0.012001038, -0.042816162, -0.04067993, 0.012672424, 0.042999268, -0.074279785, -0.0031661987, -0.0058059692, -0.013702393, -0.07220459, -0.054016113, -0.035614014, 0.016464233, -0.013069153, 0.006828308, 0.021728516, -0.02458191, 0.0043182373, -0.014045715, 0.05038452, 0.006084442, -0.015167236, -0.0032844543, -0.05029297, 0.007434845, 0.0044937134, 0.015556335, -0.017486572, -0.009735107, 0.012458801, -0.02709961, -0.013442993, -0.038909912, -0.009490967, -0.045440674, 0.0030059814, -0.0579834, -0.058746338, -0.08538818, 0.0036334991, 0.003540039, -0.049835205, -0.025909424, 0.040161133, -0.036743164, -0.010353088, -0.033721924, -0.041809082, 0.0027942657, 0.022491455, -0.00077962875, -0.05166626, -0.04144287, -0.058013916, 0.021728516, 0.038208008, -0.021911621, -0.015129089, 0.010223389, 0.0013046265, -0.00082302094, 0.00045681, -0.021194458, 0.005531311, 0.03527832, 0.043701172, 0.026351929, 0.016220093, -0.037322998, -0.0040740967, 0.04269409, -0.00041770935, -0.03527832, -0.017684937, 0.001783371, 0.023330688, 0.010353088, 0.028289795, -0.022491455, -0.044067383, 0.010147095, 0.021026611, -0.018981934, -0.034942627, -0.015411377, -0.04598999, -0.013977051, -0.010528564, 0.057769775, -0.017440796, -0.013168335, -0.017807007, 0.011787415, 0.01222229, 0.0009531975, 0.0036716461, -0.012397766, 0.004776001, -0.012046814, 0.0079422, -0.011009216, 0.020965576, 0.023376465, -0.025756836, 0.028656006, -0.035827637, 0.018295288, -0.030944824, 0.007335663, -0.015525818, -0.001698494, -0.008621216, 0.004184723, 0.0062065125, 0.06890869, 0.008399963, 0.031433105, 0.008117676, -0.025756836, -0.0121154785, 0.0024547577, 0.005306244, 0.05114746, 0.0008864403, -0.0016918182, -0.009742737, -0.04711914, 0.0072288513, -0.073791504, 0.0055160522, 0.0018014908, 0.03866577, 0.020431519, 0.0061073303, 0.084228516, 0.011604309, 0.05645752, 0.003522873, -0.026977539, -0.014221191, -0.05218506, 0.048187256, 0.011566162, 0.00018823147, -0.05441284, 0.10473633, 0.014701843, 0.004611969, 0.023040771, 0.012298584, -0.014724731, 0.0060157776, -0.015823364, -0.042266846, -0.03970337, 0.07495117, 0.0033397675, 0.034851074, -0.070129395, -0.0067634583, -0.029190063, -0.03564453, 0.08496094, 0.055236816, -0.021224976, 0.049194336, 0.09118652, -0.025772095, 0.041809082, 0.0435791, -0.011116028, -0.0053520203, 0.042297363, -0.06451416, 0.002948761, 0.013511658, -0.07397461, -0.00048446655, -0.0068473816, -0.051452637, 0.0020694733, 0.0019464493, -0.02418518, -0.04284668, 0.0033721924, 0.02331543, -0.0012731552, 0.008468628, -0.042541504, 0.014228821, -0.03778076, 0.016159058, 0.018447876, -0.033081055, -0.04269409, -0.012779236, -0.011192322, -0.06329346, 0.016204834, 0.028305054, -0.0021362305, 0.012672424, 0.032348633, -0.01008606, 0.009605408, -0.024810791, -0.03111267, -0.022140503, 0.019683838, 0.026046753, 0.00182724, 0.02204895, -0.010299683, 0.0141067505, 0.02230835, 0.0027809143, -0.012573242, -0.068359375, -0.015167236, -0.022460938, -0.007888794, 0.022567749, -0.02142334, -0.012420654, -0.046173096, -0.02444458, 0.007545471, -0.05569458, -0.0051345825, 0.00868988, 0.020858765, -0.047973633, 0.0109939575, -0.0155181885, -0.049438477, -0.06781006, 0.033477783, -0.026290894, -0.0051116943, -0.00868988, 0.02204895, -0.03427124, -0.0036811829, -0.04824829, -0.009025574, 0.042541504, 0.008712769, 0.054748535, -0.045654297, -0.006000519, -0.032592773, 0.06555176, 0.019134521, 0.030258179, -0.020645142, 0.0009636879, 0.008995056, 0.035247803, 0.018432617, 0.0069732666, 0.01953125, -0.005710602, -0.0036621094, -0.059051514, -0.030349731, 0.054473877, -0.01626587, -0.023620605, -0.022827148, 0.049591064, -0.022583008, -0.0039749146, -0.0178833, 0.016479492, 0.03643799, 0.019485474, -0.03665161, -0.0107040405, 0.008522034, 0.0023345947, 0.021896362, 0.010070801, 0.0037784576, -0.032806396, 0.024230957, -0.011917114, 0.034484863, -0.017501831, -0.017074585, 0.019500732, 0.024002075, -0.04083252, 0.0035629272, -0.048553467, 0.018569946, -0.04840088, 0.09338379, 0.04269409, 0.0028896332, 0.013648987, 0.021606445, -0.003004074, -0.070251465, -0.0034236908, -0.0043182373, -0.028564453, -0.011642456, -0.018829346, 0.008857727, 0.0037174225, -0.011199951, 0.002023697, 0.007663727, 0.025222778, -0.04019165, 0.008468628, -0.0076560974, 0.025436401, 0.02444458, -0.0031013489, 0.029937744, -0.0065612793, -0.0038204193, 0.016311646, -0.02381897, -0.016098022, -0.018722534, -0.011199951, -0.021331787, -0.003982544, 0.011123657, -0.0036907196, -0.001748085, 0.0045547485, 0.014320374, -0.026519775, -0.02432251, 0.032836914, -0.034973145, -0.046539307, 0.038635254, -0.055603027, 0.03845215, 0.00016331673, -0.03527832, -0.009605408, 0.024917603, -0.060272217, 0.051635742, 0.023452759, -0.057525635, 0.05026245, 0.012382507, -0.00064373016, -0.035858154, 0.099487305, -0.020111084, 0.023895264, -0.06048584, 0.0050697327, 0.028823853, 0.054351807, 0.023635864, -0.05038452, 0.031066895, -0.033966064, -0.025024414, 0.020980835, 0.05053711, 0.00097465515, 0.029449463, 0.020645142, 0.02243042, -0.05090332, 0.029449463, -0.0769043, -0.008987427, 0.03479004, 0.022033691, -0.018737793, -0.010070801, -0.017654419, -0.055267334, -0.023376465, 0.023544312, 0.017425537, 0.009674072, -0.002735138, -0.0019035339, 0.015304565, 0.007095337, -0.003583908, 0.0065841675, -0.031433105, -0.02029419, -0.025543213, -0.031204224, -0.046813965, 0.06903076, -0.00242424, -0.0078125, 0.020324707, 0.017990112, 0.007457733, 0.0309906, -0.028396606, 0.034851074, -0.012458801, -0.0050811768, -0.043518066, -0.02571106, 0.061401367, -0.058013916, -0.05911255, -0.010185242, 0.031066895, -0.011238098, -0.022079468, 0.05682373, 0.016433716, 0.0013866425, 0.02720642, -0.00737381, -0.060455322, 0.016601562, 0.008293152, -0.089904785, -0.03060913, -0.037109375, -0.009490967, 0.0090789795, -0.0073432922, -0.0124435425, 0.02696228, 0.015945435, 0.010803223, -0.028625488, -0.014297485, -0.008178711, -0.046295166, 0.0024280548, 0.010231018, 0.022567749, -0.0259552, -0.0029335022, -0.04675293, 0.015617371, 0.02519226, 0.035736084, 0.019607544, -0.00944519, 0.017028809, 0.045013428, -0.028625488, 0.05105591, -0.030059814, 0.002363205, 0.012123108, 0.04486084, 0.0015611649, 0.056488037, -0.01096344, -0.02079773, -0.034088135, 0.00793457, 0.03111267, 0.043060303, -0.03353882, 0.012306213, 0.028808594, 0.03643799, 0.042633057, 0.041870117, 0.037719727, 0.0041770935, 0.026687622, 0.007041931, -0.008888245, -0.023742676, -0.04067993, -0.05038452, -0.012878418, 0.03161621, -0.0044937134, 0.06359863, -0.051330566, 0.048675537, 0.02508545, -0.009902954, 0.018569946, 0.002401352, 0.004272461, 0.042785645, 0.000770092, 0.062561035, 0.017242432, -0.0028457642, 0.0017347336, -0.0135269165, 0.0011329651, 0.031677246, -0.012069702, 0.03010559, -0.042907715, 0.01965332, -0.01828003, -0.0206604, -0.0105896, 0.0011148453, 0.015266418, -0.005493164, -0.08288574, -0.024505615, -0.0032024384, -0.017974854, -0.007820129, 0.025604248, 0.035888672, -0.008964539, -0.0004515648, 0.018981934, -0.009681702, 0.006450653, -0.038757324, 0.03817749, 0.052246094, -0.014144897, -0.032989502, 0.057800293, 0.017990112, -0.013725281, 0.057037354, -0.030853271, 0.00034093857, -0.03326416, 0.03265381, -0.03543091, -0.054473877, -0.00043654442, 0.033477783, -0.037994385, -0.018035889, -0.0060691833, 0.008346558, 0.037231445, -0.044555664, 0.013725281, -0.024353027, 0.034240723, 0.044677734, 0.074279785, -0.06335449, -0.014381409, -0.01966858, 0.0020809174, -0.008377075, 0.084350586, -0.011688232, 0.003900528, 0.008300781, 0.05065918, 0.05770874, -0.013702393, 0.029190063, -0.010383606, -0.020812988, 0.03488159, -0.00029492378, -0.009284973, 0.005554199, 0.01625061, 0.015731812, 0.047729492, 0.039520264, 0.018066406, 0.055755615, -0.015777588, -0.024093628, -0.02798462, 0.041412354, -0.032348633, 0.07989502, -0.058685303, -0.017105103, -0.009429932, -0.018341064, -0.028549194, 0.017913818, -0.045532227, -0.006980896, -0.008621216, -0.04751587, -0.037384033, 0.015625, 0.04537964, -0.04940796, -0.008506775, -0.014060974, 0.036132812, 0.0068626404, 0.0074691772, 0.010650635, -0.037231445, -0.016937256, 0.03479004, -0.0076675415, -0.06402588, 0.0045547485, 0.003850937, 0.009735107, -0.0042762756, 0.027954102, 0.08105469, 0.020263672, 0.005584717, 0.009567261, 0.014007568, -0.04360962, 0.02809143, 0.00806427, -0.011917114, 0.038269043, 0.03387451, -0.003288269, 0.009185791, 0.021011353, 0.0149383545, -0.055419922, 0.0015287399, -0.03161621, -0.02053833, -0.00868988, -0.011543274, 0.013366699, 0.019866943, -0.028533936, 0.017044067, 0.02053833, -0.011787415, 0.009719849, -0.00434494, 0.065979004, -0.008102417, -0.02708435, -0.07745361, -0.030792236, 0.031219482, 0.03665161, -0.01386261, -0.0340271, -0.024887085, 0.0067329407, -0.027954102, -0.01966858, -0.0010118484, -0.009963989, -0.016159058, -0.026473999, -0.03515625, -0.0112838745, -0.026870728, -0.007083893, -0.017623901, 0.04486084, -0.0023059845, -0.01727295, -0.006126404, -0.026138306, -0.011009216, -0.0051727295, -0.021606445, -0.016921997, -0.021514893, 0.007972717, 0.0067977905, 0.001953125, 0.00061416626, 0.015007019, -0.0121154785, -0.03552246, 0.021118164, 0.03302002, 0.027313232, -0.055358887, 0.049682617, 0.038879395, 0.033599854, -0.0067634583, -0.0793457, -0.021835327, 0.03414917, -0.007888794, -0.0034503937, 0.034851074, -0.045318604, 0.017059326, 0.008781433, 0.007434845, 0.0029964447, -0.0010995865, -0.025146484, -0.023864746, 0.019454956]}, "B093BP356D": {"id": "B093BP356D", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze\nDescription: BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night\nFeatures: \u25b6MULTI-PROTECTION\u25c0 BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won\u2019t be affected by the windy weather\n\u25b6NICE AMBIANCE\u25c0 Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame\n\u25b6OPTIMIZED PRODUCT STRUCTURE\u25c0 Wheels are different from the usual smooth surface wheels, it uses gear design, won't out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater\n\u25b6REASONABLE AND HIGH-EFFICIENCY\u25c0 Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition\n\u25b6BLENDING OF CLASSICAL AND MODERN BEAUTY!\u25c0 Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night\n", "metadata": {"Name": "BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze", "Brand": "BALI OUTDOORS", "Description": "BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night", "Features": "\u25b6MULTI-PROTECTION\u25c0 BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won\u2019t be affected by the windy weather\n\u25b6NICE AMBIANCE\u25c0 Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame\n\u25b6OPTIMIZED PRODUCT STRUCTURE\u25c0 Wheels are different from the usual smooth surface wheels, it uses gear design, won't out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater\n\u25b6REASONABLE AND HIGH-EFFICIENCY\u25c0 Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition\n\u25b6BLENDING OF CLASSICAL AND MODERN BEAUTY!\u25c0 Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018936157, 0.021377563, -0.054534912, -0.047851562, 0.025009155, -0.0152282715, -0.0017156601, 0.01626587, -0.016784668, 0.007701874, -0.025360107, 0.0104522705, -0.012084961, -0.024536133, 0.014678955, -0.04534912, 0.008590698, 0.023590088, 0.0044174194, -0.01828003, 0.00014555454, -0.018081665, -0.024368286, 0.0446167, 0.024993896, -0.04058838, 0.05783081, 0.014907837, 0.04348755, 0.014884949, 0.03475952, -0.04345703, 0.022644043, 0.017913818, -0.02758789, -0.045440674, 0.010650635, -0.007648468, -0.010597229, 0.0038757324, 0.014556885, 0.0020637512, -0.033599854, -0.0014343262, -0.057647705, -0.006565094, -0.0037193298, 0.009803772, -0.0017957687, 0.028671265, 0.014137268, -0.01890564, 0.020706177, 0.021728516, -0.041107178, -0.039489746, -0.034088135, 0.032287598, 0.033813477, -0.02444458, -0.022628784, -0.025482178, 0.035614014, 0.0038967133, -0.043273926, 0.016967773, 0.049468994, -0.017150879, 0.05090332, -0.042510986, -0.018737793, 0.05239868, -0.0076904297, 0.0070991516, -0.016998291, 0.03137207, 0.02041626, 0.023849487, 0.008399963, 0.014228821, 0.011428833, 0.009140015, 0.0058403015, -0.043426514, 0.0028820038, -0.04434204, -0.011383057, 0.0064697266, -0.02255249, -0.035858154, -0.015899658, -0.0036792755, -0.05303955, 0.025375366, -0.0028572083, -0.019241333, -0.033447266, -0.10021973, 0.051116943, 0.023605347, 0.06506348, -0.06549072, 0.068359375, 0.007858276, -0.009750366, 0.048065186, 0.022415161, 0.030532837, 0.01576233, 0.0039596558, -0.010894775, -0.006664276, -0.019332886, -0.025985718, -0.044158936, 0.017166138, -0.015388489, -0.051696777, 0.0022945404, -0.055419922, -0.021713257, -0.025115967, 0.032928467, 0.046539307, 0.020492554, 0.030197144, -0.013961792, -0.0064849854, -0.038360596, 0.038726807, -0.008102417, 0.002319336, 0.0040283203, 0.06542969, -0.010177612, -0.021240234, 0.02041626, -0.0045166016, 0.012519836, -0.034423828, 0.0519104, -0.0017852783, -0.008399963, 0.01802063, 0.025878906, 0.03945923, 0.013038635, -0.026000977, 0.014289856, -0.0052757263, -0.015335083, -0.0146865845, 0.044769287, 0.015792847, -0.014198303, 0.008674622, 0.082336426, -0.04345703, -0.06762695, -0.06774902, -0.036834717, -0.006916046, 0.018615723, -0.026245117, -0.029464722, 0.031234741, 0.005012512, -4.6372414e-05, 0.014381409, 0.09777832, -0.019714355, -0.0021381378, -0.020401001, 0.021469116, -0.007575989, -0.014678955, -0.02444458, 0.06933594, 0.07055664, -0.11639404, -0.092163086, -0.069885254, 0.12420654, -0.060943604, -0.032806396, 0.019058228, 0.034118652, 0.058532715, -0.012802124, 0.016494751, 0.062408447, 0.00919342, -0.0046958923, -0.0027618408, -0.008872986, 0.022521973, -0.057891846, 0.054473877, -0.033569336, -0.018295288, -0.04168701, 0.019241333, -0.027908325, 0.009239197, 0.034362793, -0.00484848, 0.0024414062, 0.016159058, 0.029052734, 0.00818634, -0.0046157837, 0.014633179, -0.002445221, -0.071899414, -0.04598999, 0.029663086, -0.002571106, 0.005138397, -0.026412964, 0.012046814, -0.025054932, -0.023071289, -0.03704834, 0.023910522, 0.02281189, -0.028045654, -0.009994507, -0.025985718, 0.014831543, 0.0079193115, -0.0362854, 0.03161621, 0.005672455, 0.014564514, -0.028015137, 0.025024414, 0.03466797, 0.03765869, 0.0014572144, -0.018417358, -0.014976501, -0.024353027, -0.036315918, 0.070251465, -0.06640625, -0.034698486, 0.0032196045, 0.042907715, -0.032409668, 0.012870789, 0.02961731, 0.013717651, 0.0070152283, 0.010292053, -0.04724121, 0.028961182, -0.013900757, 0.003768921, -0.0020980835, 0.016418457, -0.0034103394, 0.041015625, 0.020614624, -0.014373779, 0.03314209, -0.018875122, 0.053771973, 0.04321289, 0.011520386, -0.048339844, 0.00067710876, 0.051605225, -0.004508972, 0.0038146973, -0.0049057007, -0.015701294, -0.02319336, 0.023239136, -0.023101807, -0.020141602, -0.0053215027, -0.01007843, -0.015235901, -0.004714966, 0.046691895, 0.038513184, 0.0021400452, -0.022720337, -0.05545044, 0.0044403076, 0.033081055, 0.004425049, -0.015419006, -0.015670776, -0.04977417, 0.011207581, -0.011077881, 0.03994751, 0.0050811768, -0.012641907, -0.03186035, 0.018005371, -0.01586914, 0.0046310425, -0.011581421, 0.029006958, 0.0028381348, -0.004547119, -0.0063285828, -0.018829346, -0.0050315857, 0.010063171, 0.025665283, -0.028945923, 0.050079346, 0.022506714, 0.011985779, 0.032287598, 0.078430176, 0.049438477, -0.07098389, 0.040863037, -0.031951904, 0.008483887, 0.03262329, 0.029846191, -0.021484375, -0.0017242432, 0.05078125, 0.00033950806, 0.03262329, 0.023544312, -0.013381958, -0.035827637, 0.015975952, -0.013397217, 0.008460999, 0.031951904, 0.015350342, 0.007083893, 0.048583984, 0.011734009, -0.0012845993, 0.007507324, -0.010803223, -0.01524353, 0.0020694733, 0.019577026, -0.012680054, -0.01727295, 0.007904053, -0.018966675, 0.021743774, 0.0107040405, 0.0074501038, 0.014091492, -0.025405884, -0.0073890686, -0.02027893, -0.049560547, -0.061950684, -0.0021343231, -0.061767578, 0.014190674, 0.07720947, -0.020568848, -0.028442383, -0.0021038055, -0.052093506, -0.026153564, 0.05178833, -0.042053223, -0.024337769, -0.031188965, -0.050231934, -0.0025863647, 0.017929077, -0.030975342, 0.033233643, 0.004940033, 0.029052734, 0.0082473755, 0.012313843, -0.024887085, 0.04248047, 0.013969421, 0.04626465, 0.039001465, 0.0345459, -0.01940918, 0.00095796585, -0.007019043, -0.0060577393, -0.01600647, 0.004119873, -0.005870819, 0.010482788, 0.0011892319, -0.030151367, -0.011268616, -0.08874512, 0.043701172, 0.03152466, -0.02671814, 0.008628845, -0.055755615, -0.038726807, -0.040039062, 0.004497528, 0.03778076, -0.0063552856, 0.019515991, -0.008178711, 0.019515991, -0.009208679, 0.0021266937, 0.05407715, -0.001616478, 0.03845215, -0.049865723, 0.00466156, -0.012809753, 0.024246216, 0.0054893494, -0.044433594, -0.039886475, 0.008781433, 0.027435303, 0.011268616, 0.080566406, -0.00447464, 0.0044288635, 0.0038452148, -0.004322052, -0.055145264, 0.00233078, 0.019241333, 0.01625061, 0.036895752, -0.04156494, -0.019302368, -0.03062439, 0.020507812, 0.0027885437, -0.0025100708, -0.0011920929, 0.0018157959, -0.0015144348, 0.016571045, -0.042022705, 0.00023126602, -0.0031108856, 0.07354736, 0.026977539, 0.012619019, 0.062469482, -0.009933472, 0.0138549805, 0.014793396, -0.004699707, -0.010803223, -0.022323608, 0.04159546, 0.0020809174, 0.042144775, -0.05508423, 0.028060913, 0.004398346, -0.011177063, 0.02229309, 0.0027198792, 0.010848999, 0.013023376, 0.024932861, 0.017654419, 0.019958496, 0.0135269165, 0.025054932, -0.07208252, -0.02067566, -0.029022217, -0.0066604614, -0.04095459, 0.070739746, 0.06604004, -0.024719238, 0.049835205, 0.043121338, -0.022644043, 0.07293701, 0.035858154, 0.033050537, -0.013153076, 0.091308594, -0.018447876, 0.009460449, -0.004371643, 0.010879517, 0.028900146, 0.005882263, -0.035491943, 0.01259613, 0.006061554, -0.043426514, -0.051940918, -5.6803226e-05, 0.00038957596, 0.0063056946, 0.029464722, -0.03479004, -0.020263672, -0.015411377, 0.015174866, 0.019454956, -0.031921387, -0.056640625, 0.008224487, -0.0012626648, -0.053588867, 0.021148682, 0.028320312, 0.012176514, 0.028366089, 0.013313293, 0.012428284, 0.021759033, -0.018661499, -0.01335907, -0.003929138, 0.0028953552, 0.0006570816, 0.0010175705, 0.0072784424, 0.010917664, 0.0070266724, 0.018798828, -0.021240234, 0.02116394, 0.005104065, -0.03515625, -0.007396698, 0.012886047, 0.01322937, 0.016235352, 0.008476257, -0.011741638, -0.014312744, -0.0076065063, 0.03225708, -0.010749817, -0.029876709, -0.00756073, -0.06738281, -0.029769897, -0.0132751465, 0.027191162, -0.03942871, 0.0073547363, -0.015457153, 0.00793457, 0.025375366, 0.001660347, -0.040008545, 0.00617218, -0.010749817, -0.0018625259, 0.015213013, -0.042175293, -0.005138397, -0.04147339, -0.04067993, 0.0019664764, 0.077941895, -0.01134491, 0.01838684, -0.026397705, 0.023162842, -0.002254486, 0.03024292, -0.014343262, -0.031173706, 0.030197144, 0.034301758, 0.031829834, -0.084350586, -0.004180908, 0.045837402, -0.022766113, -0.057922363, -0.040405273, 0.032806396, 0.020095825, -0.0039787292, 0.0041656494, 0.015670776, 0.0184021, 0.011131287, -0.064575195, -0.009994507, 0.008018494, -0.01751709, 0.02482605, 0.0009832382, -0.018432617, 0.019241333, 0.040985107, 0.014297485, -0.019317627, 0.0014448166, -0.024032593, 0.012283325, 0.008003235, -0.012916565, 0.036468506, -0.025848389, -0.03048706, -0.046691895, 0.0107803345, 0.06896973, 0.010894775, 0.04788208, 0.009399414, 0.016448975, 0.0262146, -0.013221741, 0.03729248, 0.0035037994, -0.0079574585, -0.048980713, -0.007003784, -0.032958984, -0.023529053, -0.027236938, -0.022659302, 0.0026721954, 0.020324707, -0.034729004, -0.0211792, -0.03527832, -0.040008545, 0.019012451, 0.009979248, -0.006000519, -0.037597656, 0.027420044, -0.016220093, -0.007144928, 0.014701843, -0.011184692, 0.0073280334, 0.011436462, 0.0013008118, -0.009559631, -0.052947998, 0.02116394, -0.019714355, -0.026062012, 0.030258179, -0.012802124, -0.006752014, -0.059448242, 0.014091492, 0.0030326843, -0.014053345, 0.015365601, 0.009056091, 0.01158905, 0.03543091, -0.007205963, 0.023254395, -0.0021533966, 0.007534027, 0.036499023, -0.0040283203, 0.020721436, -0.03768921, 0.015434265, -0.00056505203, -0.0047569275, -0.0619812, 0.009002686, 0.0038661957, 0.02998352, -0.02015686, -0.013710022, 0.03074646, -0.0068740845, -0.032684326, -0.017303467, 0.06854248, -0.054382324, -0.017929077, 0.022918701, 0.002822876, -0.05432129, -0.014968872, -0.007583618, -0.020233154, -0.0060310364, -0.028076172, 0.047943115, -0.008331299, -0.04159546, -0.030334473, 0.014816284, 0.014518738, -0.07501221, -0.009819031, -0.0009703636, -0.008079529, 0.0005078316, 0.023330688, 0.0357666, 0.02458191, -0.053710938, -0.0345459, -0.03253174, 0.014640808, -0.025924683, 0.060272217, -0.012161255, -0.00680542, 0.021560669, 0.0034427643, 0.020492554, -0.0038585663, -0.021530151, 0.0036468506, 0.015457153, 0.020248413, 0.005241394, -0.017059326, 0.090270996, -0.036712646, -0.052520752, -0.027297974, 0.06008911, 0.004459381, 0.026641846, 0.04336548, 0.016967773, 0.008270264, 0.04333496, -0.017028809, -0.06311035, -0.010536194, 0.004119873, -0.10992432, -0.01222229, -0.041046143, 0.03262329, -0.015090942, -0.00945282, -0.019363403, 0.0345459, -0.000105798244, -0.017410278, -0.038604736, -0.018692017, 0.008232117, -0.04159546, 0.018325806, -0.008674622, -0.020584106, -0.005970001, -0.022018433, -0.06732178, -0.008239746, -0.017105103, 0.018203735, 0.024215698, 0.009048462, -0.0063056946, 0.0044441223, -0.03112793, 0.01637268, 0.020614624, -0.056884766, -0.0209198, 0.01007843, 0.04196167, -0.020935059, -0.020751953, -0.010345459, -0.011253357, 0.04916382, 0.034729004, 0.017181396, -0.018798828, -0.016952515, 0.031677246, 0.018112183, 0.002632141, -0.022766113, 0.020736694, -0.009902954, -0.066101074, -0.008911133, -0.013389587, -0.028762817, -0.030014038, -0.012397766, -0.025283813, -0.0068092346, -0.0112838745, 0.021575928, 0.020904541, -0.01739502, 0.0033855438, -0.00484848, 0.0068969727, -0.013366699, -0.007785797, -0.006958008, 0.007835388, 0.016418457, 0.0065612793, -0.012825012, 0.007019043, 0.0012321472, 0.009460449, 0.040985107, 0.029373169, -0.016403198, -0.045532227, 0.024398804, 0.025375366, -0.08862305, 0.027755737, -0.010528564, -0.029205322, 0.0047798157, -0.046051025, -0.029037476, -0.01876831, 0.04650879, -0.025726318, 0.054656982, -0.02507019, 0.016647339, -0.0013113022, -0.009765625, 0.0047683716, -0.008552551, -0.02658081, 0.018005371, 0.017837524, -0.008293152, -0.049102783, 0.019515991, 0.03378296, 0.0015859604, 0.011306763, -0.012519836, 0.02507019, -0.0060577393, 0.024856567, -0.015014648, -0.06994629, 0.026367188, 0.049621582, -0.034179688, 0.058166504, 0.0072517395, 0.010536194, -0.01777649, -0.036865234, 0.003320694, -0.027236938, -0.013458252, 0.01675415, 0.013496399, -0.032714844, -0.042022705, -0.022216797, 0.00090551376, 0.0049705505, -0.004142761, 0.0035915375, -0.0041046143, 0.02670288, -0.021240234, 0.04486084, -0.0077667236, 0.016311646, -0.035003662, 0.021316528, -0.013679504, -0.012290955, -0.015579224, 0.014602661, 0.0024700165, 0.0058059692, 0.0345459, -0.0030670166, 0.011169434, -0.01197052, 0.009773254, -0.021606445, 0.021820068, -0.01965332, -0.036224365, -0.0018138885, -0.018066406, -0.02671814, 0.004589081, 0.016189575, 4.2378902e-05, 0.04425049, -0.02722168, -0.0496521, 0.020645142, -0.03527832, -0.014587402, -1.692772e-05, 0.0234375, -0.02432251, 0.010795593, 0.010475159, 0.047821045, 0.009613037, 0.068725586, -0.021362305, -0.050720215, -0.0463562, 0.016326904, -0.04574585, -0.0030460358, 0.018417358, -0.023147583, -0.009300232, -0.0076446533, 0.011238098, 0.053009033, 0.030944824, -0.014549255, 0.030807495, -0.0065231323, -0.01600647, 0.051116943, 0.031921387, -0.034820557, -0.011802673, -0.022613525, 0.009094238, 0.070251465, 0.047729492, 0.01121521, -0.07147217, -0.05633545, -0.109191895, 0.035980225, -0.041168213, -0.020126343, 0.031173706, -0.015670776, -0.050689697, 0.048614502, 0.043884277, 0.07495117, 0.01259613, -0.00674057, 0.04550171, -0.001953125, 0.008239746, -0.058746338, -0.0143966675, -0.0034809113, 0.019058228, -0.037261963, 0.010261536, 0.035614014, -0.020309448, 0.006790161, 0.028823853, 0.015083313, 0.036010742, -0.00028705597, 0.0072288513, 0.031341553, -0.02029419, 0.06323242, -0.03149414, 0.016601562, -0.012245178, 0.056518555, -0.03692627, 0.009140015, -0.025543213, 0.033843994, 0.017425537, -0.03414917, -0.06317139, -0.111083984, 0.080566406, 0.05996704, -0.018844604, 0.051971436, 0.02923584, -0.009857178, -0.036895752, 0.01625061, 0.023117065, 0.020446777, -0.030151367, 0.021820068, 0.021011353, 0.043640137, -0.013580322, -0.07171631, -0.057678223, 0.052764893, -0.0038223267, -0.01474762, 0.019317627, -0.031585693, 0.009498596, 0.008163452, -0.05734253, -0.038238525, -0.006248474, 0.059936523, -0.010749817, 0.015213013]}, "B003K6SI7S": {"id": "B003K6SI7S", "original": "Brand: Texsport\nName: Texsport Sportsmate Portable Propane Heater\nDescription: \nFeatures: Ideal for golf carts\nDurable stainless steel burner\nPressure regulator on/off control valve adjusts burners up to 3,000 BTUs\nIncludes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included)\nAuto shut off valve shuts off fuel if flame goes out\n", "metadata": {"Name": "Texsport Sportsmate Portable Propane Heater", "Brand": "Texsport", "Description": "", "Features": "Ideal for golf carts\nDurable stainless steel burner\nPressure regulator on/off control valve adjusts burners up to 3,000 BTUs\nIncludes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included)\nAuto shut off valve shuts off fuel if flame goes out", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0071411133, -0.0090789795, -0.015594482, -0.013114929, -0.022720337, -0.016326904, -0.030349731, -0.020248413, -0.0074157715, -0.013259888, 0.007217407, 0.014404297, -0.013748169, -0.05340576, 0.035461426, -0.017929077, 0.013587952, 0.00894928, -0.022735596, -0.03692627, -0.007209778, -0.021087646, -0.029312134, 0.11254883, -0.011116028, 0.043640137, -0.0093307495, -0.003929138, -0.0012016296, -0.0021343231, 0.015037537, 0.0019207001, 0.025436401, 0.0060577393, -0.022567749, -0.025039673, 0.003019333, -0.0013065338, -0.03201294, 0.016479492, -0.001326561, 0.023284912, -0.05429077, 0.0124435425, -0.06970215, -0.02809143, -0.0064353943, 0.01411438, 0.022109985, 0.002840042, -0.002073288, 0.0035152435, 0.0038852692, -0.033721924, -0.028121948, -0.026687622, 0.013969421, 0.025268555, 0.0033817291, -0.04260254, -0.029525757, 0.035736084, 0.020751953, 0.02810669, -0.0390625, 0.0025997162, 0.07220459, -0.021408081, 0.029785156, -0.060638428, -0.019973755, 0.039794922, 0.018371582, 0.03036499, -0.067993164, -0.022720337, 0.025344849, -0.012565613, 0.043640137, -0.015991211, 0.013168335, -0.03302002, 0.03604126, -0.009979248, 0.018066406, 0.0067253113, -0.006164551, 0.002544403, 0.012687683, -0.03591919, -0.0021133423, -0.017623901, -0.029632568, 0.042297363, -0.017807007, -0.022354126, -0.0129470825, -0.079711914, 0.04586792, -0.0062217712, 0.0340271, -0.047454834, 0.013839722, 0.00712204, -0.00046610832, 0.04876709, -0.008583069, -0.006866455, 0.00017404556, 0.0013074875, -0.019561768, -0.047302246, -0.014701843, 0.013458252, -0.049835205, 0.032440186, -0.024520874, 0.007888794, -0.012680054, 0.058776855, -0.0032691956, 0.0075035095, 0.02067566, -0.041229248, -0.011962891, -0.04788208, -0.04095459, 0.012748718, -0.025985718, 0.04083252, -0.037902832, -0.0059432983, 0.06793213, 0.062438965, 0.033325195, -0.024841309, 0.03945923, 0.011703491, 0.009468079, -0.029510498, -0.008514404, 0.012214661, 0.022125244, -0.02027893, -0.019592285, -0.0036563873, 0.0236969, 0.016860962, -0.023971558, -0.029724121, -0.0020561218, 0.018493652, -0.005996704, 0.03225708, -0.002626419, 0.027648926, -0.0046691895, 0.0044937134, -0.0039482117, -0.009681702, 0.03012085, -0.033813477, -0.058288574, 0.012023926, -0.056884766, 0.046142578, 0.045806885, -0.006614685, 0.026794434, 0.04901123, 0.034118652, 0.012275696, -0.0032463074, 0.010025024, 0.003566742, -0.028701782, -0.052368164, 0.07147217, 0.07385254, -0.14562988, -0.07867432, -0.068359375, 0.13439941, -0.036712646, 0.037506104, -0.061645508, 0.03866577, -0.023452759, -0.017715454, 0.021469116, 0.023239136, 0.019927979, 0.022598267, -0.06604004, -0.0028305054, 0.02279663, -0.018661499, 0.035949707, -0.014541626, 0.013320923, 0.01751709, 0.01361084, 0.018585205, 0.009880066, 0.06585693, -0.021453857, 0.02709961, 0.0061798096, -0.002122879, 0.040893555, 0.02041626, 0.0032024384, -0.01701355, -0.05130005, -0.004714966, -0.009170532, -0.006465912, -0.0101623535, 0.016113281, -0.019851685, 0.0064315796, 0.025604248, 0.0021839142, -0.018737793, -0.027694702, -0.043548584, -0.014152527, -0.009895325, -0.009521484, -0.038024902, 0.07550049, 0.05355835, 0.03253174, 0.03302002, -0.024963379, 0.022720337, 0.07092285, 0.061676025, -0.005458832, -0.016418457, -0.015075684, 0.005153656, -0.01108551, 0.06311035, -0.019927979, 0.024093628, 0.021881104, 0.01096344, -0.011856079, 0.012908936, 0.01751709, 0.0054855347, 0.050811768, 0.0154418945, -0.016571045, 0.029830933, -0.0154418945, -0.0004208088, -0.011177063, 0.017700195, -0.017822266, 0.043640137, 0.03567505, 0.011024475, 0.05682373, 0.042266846, 0.06048584, 0.054107666, -0.01890564, 0.030075073, 0.0025367737, -0.010650635, 0.0049972534, -0.011566162, 0.039154053, -0.019058228, -0.028717041, 0.015556335, 0.028503418, -0.006778717, -0.0057411194, -0.022491455, -0.0036563873, 0.0014715195, 0.021255493, 0.019439697, 0.029785156, 0.018081665, -0.011070251, -0.047698975, -0.003019333, -0.027114868, -0.07495117, 0.044433594, -0.0010166168, -0.06347656, 0.09259033, -0.014030457, 0.021743774, -0.03137207, -0.009864807, 0.027832031, -0.012207031, -0.017440796, -0.010169983, -0.0016698837, -0.022521973, 0.005382538, -0.013130188, 0.012268066, -0.0769043, -0.0020103455, 0.005832672, 0.021987915, -0.011375427, -0.014602661, -0.0067253113, 0.023727417, 0.0071792603, 0.019866943, -0.007255554, -0.013053894, -0.016738892, 0.003293991, -0.006793976, 0.00623703, 0.0035076141, -0.00030326843, -0.062561035, 0.004501343, -0.022109985, -0.047546387, -0.005771637, 0.050628662, -0.0032176971, 0.018661499, -0.00409317, 0.06640625, -0.009590149, -0.04260254, -0.0015497208, -0.033233643, -0.0024929047, 0.024993896, -0.050445557, -0.01247406, 0.022888184, 0.006942749, -0.028045654, 0.0026607513, 0.011558533, -0.01687622, 0.012687683, -0.008621216, 0.032592773, -0.039276123, -0.053222656, 0.0016708374, 0.016601562, -0.045898438, -0.004722595, -0.023742676, -0.046325684, -0.022277832, 0.053527832, -0.018585205, -0.038726807, -0.023529053, -0.037353516, 0.030349731, 0.0037078857, -0.0038146973, -0.036499023, -0.04006958, -0.053985596, 0.021942139, -0.0102005005, -0.053894043, 0.019256592, -0.0146102905, 0.011650085, 0.014213562, 0.011550903, 0.03152466, -0.007434845, 0.034301758, 0.04550171, 0.03353882, 0.0066452026, -0.03970337, 0.011581421, 0.045776367, -0.026412964, -0.005065918, -0.010032654, -0.0015220642, -0.03137207, -0.035369873, -0.029922485, 0.003364563, -0.014129639, 0.027770996, 0.008880615, -0.0039043427, -0.02519226, -0.034423828, -0.023040771, -0.024017334, -0.0021629333, 0.05303955, -0.029830933, -0.009994507, -0.043640137, 0.00655365, 0.007472992, 0.009819031, -0.01424408, -0.0054512024, -0.014015198, -0.004634857, 0.03555298, -0.04977417, 0.035980225, 0.05606079, -0.07067871, -0.014656067, -0.042877197, 0.053619385, -0.028427124, 0.030471802, -0.029220581, 0.003168106, -0.004398346, 0.022338867, 0.014793396, 0.07928467, 0.0023097992, -0.0064430237, 0.022705078, -0.0289917, 0.028015137, -0.004207611, 0.01574707, 0.03427124, 0.0012044907, 0.00086927414, -0.02003479, 0.041290283, 0.0124435425, -0.02684021, 0.031921387, -0.011398315, 0.049316406, 0.012321472, -0.008560181, 0.08276367, 0.023590088, 0.024917603, 0.05709839, -0.051086426, -0.08569336, -0.04397583, 0.050109863, -0.016204834, -0.012077332, -0.08111572, 0.046325684, 0.014076233, 0.013397217, -0.0181427, -0.034240723, 0.09637451, 0.0385437, -0.021316528, -0.0003964901, -0.024017334, 0.024734497, 0.019622803, -0.025421143, -0.032043457, -0.027648926, -0.0013246536, -0.04699707, 0.05911255, 0.05065918, -0.006614685, 0.028076172, 0.016204834, 0.008666992, 0.00774765, -0.0076141357, -0.0041885376, -0.007843018, 0.07348633, 0.004753113, 0.012924194, 0.014717102, -0.016113281, -0.021591187, -0.0019130707, -0.055023193, 0.010978699, -0.0009083748, -0.0008234978, -0.029342651, -0.009117126, 7.8201294e-05, -0.025283813, 0.023803711, -0.021881104, -0.02633667, -0.031204224, -0.04901123, 0.007598877, -0.03933716, 0.002626419, -0.03945923, -0.06506348, -0.026855469, 0.026000977, 0.039398193, 0.014190674, -0.0025081635, 0.010848999, 0.03439331, 0.0064849854, -0.03050232, -0.015930176, -0.022766113, 0.025131226, -0.0015707016, 0.009979248, -0.0033893585, -0.02218628, 0.032958984, -0.013191223, -0.014312744, -0.035095215, -0.0033016205, -0.01373291, 0.023864746, 0.0524292, -0.0053367615, 0.017364502, 0.0068511963, -0.056640625, -0.0072364807, -0.036254883, 0.02368164, -0.04827881, -0.0138168335, 0.008354187, -0.06011963, -0.056243896, -0.058135986, 0.050964355, -0.0066986084, 0.020050049, -0.009498596, -0.022384644, -0.0033187866, 0.021072388, -0.029449463, 0.007209778, -0.070129395, 0.008049011, 0.009124756, 0.004047394, 0.005329132, -0.011856079, 0.042419434, 0.017990112, 0.114746094, 0.024627686, 0.021484375, -0.07678223, -0.005844116, 0.0031490326, 0.018508911, 0.028656006, -0.0115737915, 0.036254883, 0.0047950745, 0.005493164, -0.062347412, 0.026626587, 0.041870117, -0.016830444, -0.047546387, -0.026107788, 0.036132812, 0.026031494, 0.017288208, -0.04034424, -0.010421753, 0.013336182, -0.003522873, -0.068237305, -0.06536865, 0.00026249886, -0.048919678, 0.009567261, -0.0035114288, -0.014541626, 0.068725586, 0.05480957, -0.025604248, 0.040100098, -0.020751953, 0.0024871826, -0.008918762, 0.018005371, -0.010848999, -0.011260986, -0.024673462, 0.0017023087, -0.017822266, 0.020462036, 0.023757935, -0.053894043, 0.0058631897, 0.01676941, -0.017562866, 0.015022278, -0.020996094, 0.0042381287, 0.019805908, 0.016586304, -0.031097412, -0.019622803, 0.00045847893, -0.022033691, -0.029891968, -0.025970459, 0.0030593872, 0.025115967, -0.0072746277, -0.016525269, 0.0074424744, -0.008087158, 0.019042969, 0.02293396, -0.0051231384, -0.050567627, 0.0390625, -0.015686035, -0.022216797, 0.023849487, 0.0012569427, 0.015579224, 0.028411865, 0.009674072, -0.05215454, -0.026184082, 0.052520752, -0.027435303, -0.015945435, 0.014122009, -0.014053345, -0.019683838, -0.053527832, -0.0206604, 0.0060195923, -0.025283813, -0.017181396, 0.0068893433, 0.055480957, 0.02670288, 0.007095337, -0.0004963875, 0.0063438416, -0.02998352, 0.0030593872, -0.004890442, 0.006542206, -0.00566864, 0.029632568, 0.0048217773, -0.012840271, -0.033721924, 0.013824463, 0.008575439, 0.006587982, 0.024505615, -0.02609253, 0.046020508, -0.023025513, -0.026916504, -0.0126571655, -0.0037326813, -0.03729248, -0.0076522827, -0.019805908, -0.024917603, -0.0018281937, -0.019714355, -0.032714844, -0.025283813, 0.006214142, -0.01725769, -0.004047394, -0.0054779053, 0.0019445419, -0.01701355, -0.011207581, 0.022720337, -0.039398193, 0.008201599, -0.009666443, -0.0010957718, 0.01966858, 0.006126404, -0.0052604675, -0.00374794, -0.027236938, -0.019897461, 0.016998291, 0.03314209, 0.0048980713, 0.020111084, -0.055236816, -0.027389526, -0.002105713, -0.015945435, -0.007133484, 0.0317688, -0.060424805, -0.015777588, 0.008880615, 0.018478394, -0.0025234222, 0.02583313, 0.084106445, -0.041503906, -0.0463562, -0.06137085, 0.05923462, -0.019073486, 0.009986877, 0.036987305, 0.014373779, 0.017074585, 0.02507019, 0.008148193, -0.021316528, 0.015274048, 0.01576233, -0.014862061, -0.032043457, -0.027679443, -0.014213562, 0.011146545, -0.003868103, -0.03302002, 0.042419434, -0.008552551, 0.0054473877, -0.05731201, -0.023925781, 0.0032348633, -0.04171753, -0.012321472, -0.059417725, 0.0070495605, -0.044433594, -0.01335144, -0.061035156, -0.07147217, 0.0051574707, 0.038269043, 0.047302246, -0.016845703, 0.008850098, -0.008407593, -0.023986816, 0.06726074, 0.03353882, -0.07489014, -0.03274536, 0.013633728, 0.06890869, -0.04699707, 0.00074481964, -0.0026397705, -0.011993408, 0.004749298, 0.031311035, 0.018157959, -0.04043579, -0.007160187, 0.036468506, 0.039276123, -0.022888184, 0.023925781, 0.031311035, 0.0006761551, -0.06762695, -0.0093688965, 0.024887085, -0.05441284, -0.006000519, -0.013412476, -0.010917664, 0.012397766, -0.027435303, 0.003736496, -0.028640747, 0.068115234, -0.026565552, 0.011932373, 0.005077362, -0.01158905, 0.011230469, -0.006160736, -0.010803223, -0.019378662, -0.033416748, 0.0019464493, -0.016067505, -0.03186035, 0.01675415, 0.038085938, 0.0014295578, -0.00178051, -0.020217896, 0.028182983, 0.021743774, -0.045898438, -0.021240234, -0.00093889236, 0.02482605, -0.00843811, -0.039215088, -0.023910522, -0.02330017, 0.022537231, 0.009284973, 0.024093628, 0.0012464523, 0.032440186, -0.010040283, 0.014541626, -0.023071289, -0.027572632, 0.035858154, -0.008079529, -0.0087509155, -0.006134033, -0.091308594, 0.017288208, 0.008705139, 0.0289917, 0.020477295, -0.034698486, 0.024978638, 0.018981934, -0.00920105, -0.039642334, -0.043701172, -0.00655365, 0.0077209473, -0.018859863, -0.011444092, 0.004966736, -0.019195557, 0.047851562, -0.05508423, 0.04058838, -0.036712646, 0.066345215, 0.022842407, 0.033843994, -0.051239014, 0.0013751984, -0.008811951, -0.0335083, 0.029327393, 0.030639648, -0.0013179779, -0.016571045, 0.008232117, -0.00014150143, 0.058135986, -0.008522034, 0.016082764, -0.014274597, 0.015548706, 0.0124435425, 0.00579834, -0.018356323, -0.011833191, 0.011360168, 0.003545761, 0.01008606, -0.016830444, -0.03982544, -0.006542206, 0.034301758, -0.031204224, 0.03286743, -0.045806885, -0.04309082, 0.038482666, -0.012565613, -0.0041885376, -0.022537231, -0.026428223, -0.039276123, -0.0036373138, -0.0463562, -0.0024337769, -0.02432251, -0.013916016, 0.026901245, -0.010055542, 0.017059326, -0.016586304, 0.01828003, 0.014312744, -0.0069389343, 0.0013341904, 0.04296875, -0.008674622, -0.041809082, -0.024490356, 0.0019073486, -0.022613525, -0.014579773, -0.006275177, -0.009765625, -0.015731812, -0.013442993, 0.038238525, 0.03668213, 0.043029785, 0.007537842, -0.028152466, -0.026748657, -0.005832672, 0.021072388, -0.007205963, -0.046203613, -0.0592041, 0.034454346, -0.0007157326, 0.06137085, -0.006454468, 0.021362305, -0.07067871, -0.020355225, -0.047058105, 0.0014820099, 0.004714966, -0.009819031, 0.04537964, 0.029006958, -0.04220581, 0.04840088, -0.0011386871, 0.0007162094, 0.042633057, 0.013473511, 0.061767578, -0.006515503, -0.057556152, -0.07470703, -0.02520752, 0.027069092, 0.038238525, -0.06640625, -0.018478394, 0.03387451, -0.03491211, 0.04547119, 0.057769775, -0.0023593903, 0.036010742, -0.024993896, 0.031433105, -0.002708435, -0.043670654, 0.02670288, -0.036712646, -0.005443573, 0.041015625, 0.010375977, -0.022613525, -0.0149002075, -0.029006958, -0.011146545, -0.015701294, -0.041778564, -0.018310547, -0.047210693, 0.02696228, 0.025512695, 0.006839752, 0.010101318, 0.019973755, -0.010108948, -0.03427124, 0.004055023, 0.025177002, -0.0020580292, -0.03137207, 0.068603516, 0.039794922, 0.02053833, -0.023132324, -0.07556152, -0.049041748, 0.02532959, -0.00029325485, 0.008575439, 0.04232788, -0.015426636, 0.010017395, 0.054534912, -0.01928711, -0.018737793, 0.021377563, 0.06274414, 0.024261475, -0.0010156631]}, "B097LDZ1W2": {"id": "B097LDZ1W2", "original": "Brand: BeadChica\nName: RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer\nDescription: RV Propane Tank Cover\nFeatures: \u3010 FITS TANK\u3011Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch.\n\u3010ZIPPER DESIGN\u3011zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal.\n\u3010CUSTOM YOUR TANK\u3011The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls.\n\u3010WITH ELASTIC BAND \u3011 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days.\n\u3010HIGH QUALITY\u3011Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.\n", "metadata": {"Name": "RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer", "Brand": "BeadChica", "Description": "RV Propane Tank Cover", "Features": "\u3010 FITS TANK\u3011Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch.\n\u3010ZIPPER DESIGN\u3011zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal.\n\u3010CUSTOM YOUR TANK\u3011The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls.\n\u3010WITH ELASTIC BAND \u3011 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days.\n\u3010HIGH QUALITY\u3011Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0013637543, -0.03173828, -0.028549194, -0.041229248, -0.015945435, -0.0017690659, -0.019577026, 0.03439331, -0.02708435, -0.01727295, -0.016937256, 0.0045051575, -0.06970215, -0.031951904, 0.023529053, -0.076293945, 0.02772522, -0.027420044, -0.015182495, -0.03729248, -0.012802124, -0.03161621, 0.034057617, 0.069885254, 0.025039673, -0.028244019, 0.032165527, -0.031143188, 0.02607727, -0.016983032, 0.02897644, 0.004512787, 0.021499634, -0.018936157, 0.041656494, 0.025970459, -0.0010614395, -0.0053520203, 0.0034923553, 0.00680542, -0.0128479, 0.008300781, 0.038757324, -0.029800415, 0.022155762, -0.051574707, 0.033203125, -0.04067993, 0.022994995, -0.0029525757, -0.023223877, 0.021835327, -0.015792847, -0.020095825, 0.0007958412, 0.011398315, 0.03515625, -0.04196167, 0.011886597, -0.029907227, -0.0027065277, 0.025299072, 0.037231445, 0.038482666, -0.053131104, 0.013252258, 0.05178833, -0.0345459, 0.032348633, -0.041381836, 0.004348755, 0.045684814, 0.03842163, -0.019104004, -0.047454834, 0.01826477, -0.010231018, -0.0007958412, 0.027450562, -0.031204224, -0.020492554, -0.072753906, 0.022598267, -0.023849487, 0.020309448, 0.021972656, -0.0049057007, 0.000521183, -0.013031006, -0.0012731552, -0.013290405, -0.0077590942, -0.009719849, 0.025161743, -0.02520752, 0.0011787415, -0.017852783, -0.04135132, 0.030670166, 0.018325806, 0.008468628, -0.04244995, 0.037628174, -0.014862061, 0.00687027, 0.016403198, -0.00015079975, 0.0033359528, 0.047851562, 0.018707275, -0.012908936, 0.06121826, 0.009147644, 0.0024147034, -0.018951416, -0.0023326874, -0.036010742, 0.039916992, 0.0068206787, 0.035186768, -0.03668213, -0.025177002, -0.027053833, 0.00047326088, 0.006290436, -0.013465881, -0.0140686035, 0.05508423, -0.066711426, 0.06866455, -0.015014648, -0.029281616, 0.016052246, 0.060394287, 0.015380859, -0.030899048, 0.037750244, -0.014282227, -0.02418518, 0.017700195, -0.037353516, 0.017807007, 0.047912598, -0.06262207, -0.078430176, 0.05316162, 0.027053833, -0.019515991, -0.04348755, -0.08270264, -0.044189453, -0.021255493, 0.036315918, 0.01436615, -0.053985596, 0.009017944, 0.0037708282, -0.00982666, -0.04598999, -0.049621582, -0.032989502, -0.027267456, -0.021011353, 0.0068359375, -0.02255249, 0.056274414, 0.028701782, 0.0033512115, 0.020401001, 0.054138184, 0.014083862, 0.036468506, 0.026229858, 0.025680542, 0.00047397614, -0.020614624, -0.01322937, 0.09033203, 0.050750732, -0.11395264, -0.07159424, -0.07720947, 0.111206055, -0.037994385, 0.0008277893, -0.03427124, -0.0016679764, -0.033294678, 0.03375244, 7.9512596e-05, 8.535385e-05, 0.011131287, -0.008880615, -0.021820068, 0.023849487, 0.0031414032, -0.0014181137, 0.009429932, 0.0017442703, -0.020446777, -0.00995636, 0.02128601, -0.0041046143, 0.011802673, 0.009895325, -0.020339966, 0.017852783, 0.010055542, -0.009353638, 0.025299072, 0.0047302246, 0.008148193, 0.0013418198, -0.03704834, 0.019424438, 0.014053345, 0.007896423, 0.025619507, -0.020629883, -0.007091522, 0.015182495, -0.030197144, 0.015686035, 0.06793213, -0.0014801025, -0.009391785, -0.017028809, -0.0022258759, 0.015289307, -0.01398468, 0.05053711, 0.036621094, 0.05105591, 0.030380249, -0.026535034, 0.007369995, 0.015472412, -0.03036499, -0.0028648376, 0.032043457, 0.0075645447, -0.033599854, -0.0129470825, 0.0357666, -0.021347046, -0.020721436, 0.010139465, 0.012275696, -0.009674072, 0.037750244, 0.08300781, -0.015296936, -0.009468079, -0.008895874, -0.008361816, 0.0004749298, -0.033477783, 0.00033521652, 0.0049057007, 0.014801025, -0.013092041, 0.042114258, 0.04333496, -0.002407074, -0.013534546, -0.021850586, 0.033203125, 0.035491943, 0.037261963, -0.040130615, -0.010681152, 0.0057296753, 0.003112793, -0.000828743, -0.05770874, -0.0012722015, -0.030441284, 0.032836914, 0.010169983, -0.015258789, 0.018478394, 0.012031555, -0.012237549, -0.0050621033, 0.05105591, 0.0005774498, -0.016830444, 0.0013189316, -0.026641846, 0.018951416, 0.04107666, 0.0050315857, 0.0016756058, -0.03543091, 0.0048599243, 0.0027694702, 0.059448242, -0.026351929, 0.051849365, -0.012130737, -0.013725281, 0.0579834, -0.01663208, 0.020462036, 0.0131073, -0.007686615, -0.004749298, 0.03640747, 0.030181885, -0.009483337, -0.015625, 0.0104904175, 0.006134033, -0.021484375, 0.038726807, 0.034332275, 0.0054893494, 0.023483276, 0.06829834, 0.07470703, -0.01210022, 0.036621094, -0.0037994385, 0.024871826, 0.044952393, -0.029891968, -0.0011930466, -0.002292633, -0.012954712, -0.026901245, 0.009780884, -0.049041748, -0.010467529, -0.0012989044, 0.006149292, -0.010627747, 0.015838623, 0.030853271, 0.0034618378, -0.02772522, 0.027114868, 0.005268097, 0.0033683777, 0.028015137, -0.032806396, -0.035614014, 0.044525146, -0.0055274963, -0.021713257, 0.008079529, 0.015296936, -0.022491455, -0.014122009, -0.047546387, -0.016159058, -0.009407043, -0.017166138, -0.046691895, 0.0030384064, -0.06817627, 0.022888184, -0.05126953, -0.047027588, -0.02331543, 0.07098389, -0.0099105835, -0.049835205, -0.05114746, 0.021820068, 0.023223877, -0.012466431, 0.022109985, -0.038146973, -0.020004272, 0.002696991, -0.00038719177, 0.016983032, -0.029296875, 0.004852295, -0.0050964355, 0.019012451, 0.019165039, -0.00030851364, 0.01927185, -0.018661499, 0.046051025, 0.078308105, 0.033599854, 0.030654907, -0.030075073, 0.026123047, 0.054382324, 0.007129669, -0.028640747, 0.00044059753, 0.009819031, -0.023849487, 0.02168274, -0.013900757, -0.01008606, -0.029220581, 0.0028152466, 0.0010175705, -0.018920898, -0.0039901733, -0.05670166, -0.015075684, -0.04107666, 0.03543091, 0.0008778572, -0.00028204918, 0.028396606, -0.011512756, 0.0121154785, -0.031463623, 0.010482788, 0.028640747, 0.013069153, -0.04119873, -0.0181427, 0.03427124, -0.02748108, 0.04071045, 0.037597656, -0.04043579, 0.012367249, -0.020385742, 0.014930725, -0.0017194748, 0.036743164, -0.017166138, 0.008872986, -0.01789856, -0.01007843, -0.0039634705, -0.0005865097, -0.0067977905, -0.046539307, -0.0010681152, -0.028579712, -0.022903442, -0.022460938, 0.043518066, 0.012718201, 0.00856781, -0.0022850037, -0.0028820038, 0.0046653748, 0.016662598, 0.009819031, 0.00043034554, 0.007194519, 0.019424438, -0.002620697, -0.031280518, -0.0055274963, -0.007297516, 0.026977539, -0.0025939941, 0.004047394, -0.0075302124, -0.015197754, 0.021743774, -0.015731812, -0.0021705627, -0.024917603, 0.038970947, -0.0015707016, 0.011360168, -0.011375427, -0.023986816, 0.040283203, -0.010894775, -0.020355225, 0.02079773, 0.0143966675, 0.006038666, -0.012763977, -0.010986328, -0.02609253, -0.049743652, 0.007762909, -0.069885254, 0.07507324, 0.040618896, -0.017410278, 0.0871582, 0.07910156, -0.014305115, 0.04348755, 0.04196167, 0.005256653, -0.00440979, 0.05731201, -0.039154053, 0.0068626404, 0.0032176971, -0.031280518, 0.017654419, 0.023666382, -0.026168823, -0.017211914, -0.008987427, -0.03010559, -0.02079773, -0.022827148, -0.007232666, -0.01121521, 0.008216858, -0.005580902, -0.013648987, -0.020263672, 0.020904541, 0.018081665, -0.006580353, 0.021469116, 0.013580322, 0.013282776, 0.010047913, -0.017318726, -0.010063171, 0.0065689087, 0.029708862, 0.046051025, -0.029464722, -0.021621704, 0.013641357, -0.013687134, -0.03024292, -0.0018262863, 0.004184723, 0.017120361, -0.011695862, -0.024856567, 0.043914795, 0.009796143, -0.009010315, 0.021026611, -0.011917114, -0.04916382, 0.00023126602, 0.06451416, 0.034088135, -0.016082764, 0.0019989014, -0.03302002, -0.024887085, -0.00038671494, -0.05731201, 0.0028762817, -0.018936157, -0.005065918, -0.08215332, -0.05609131, -0.02255249, 0.026519775, 0.0025138855, 0.0032691956, -0.027008057, -0.017578125, -0.010276794, 0.05545044, -0.047607422, -0.022369385, -0.022750854, 0.017578125, -0.015731812, -0.02684021, 0.041931152, -0.052825928, -0.013198853, -0.023773193, -0.0010652542, -0.008255005, 0.0034046173, 0.01084137, -0.0049095154, 0.0051612854, 0.020721436, 0.03237915, -0.02960205, 0.035369873, 0.013214111, 0.031234741, -0.07635498, 0.00082063675, 0.052581787, -0.022003174, -0.04534912, -0.020477295, 0.081848145, -0.013626099, -0.011741638, -0.007083893, 0.038482666, 0.0362854, -0.013130188, -0.07232666, -0.005832672, 0.009941101, -0.027664185, -0.029281616, -0.016357422, -0.014312744, 0.076049805, 0.011451721, -0.009719849, -0.0070610046, 0.008590698, 0.044006348, -0.030548096, 0.018737793, -0.027374268, -0.013198853, 0.009803772, 0.0064086914, -0.07171631, 0.08874512, 0.076293945, 0.022994995, 0.028015137, -0.00030326843, -0.0006170273, -0.052124023, -0.04324341, -0.039886475, 0.07598877, -0.0049324036, -0.032196045, 0.017105103, -0.01411438, 0.011039734, -0.015777588, -0.07470703, -0.020507812, 0.07543945, -0.009269714, -0.020584106, -0.040130615, 0.001537323, 0.042388916, -0.04119873, -0.02911377, -0.048583984, -0.0317688, -0.025817871, -0.006587982, 0.041290283, -0.030532837, 0.005142212, -0.012802124, 0.022064209, -0.07171631, 0.070007324, 0.047088623, 0.038208008, -0.034454346, 0.020446777, -0.013572693, -0.005470276, -0.031433105, 0.01259613, 0.0053482056, 0.004917145, 0.026397705, 0.029327393, -0.00087451935, 0.0088272095, 0.004512787, 0.024230957, -0.040161133, -0.00983429, -2.7418137e-05, 0.043914795, 0.01235199, -0.07940674, 0.055847168, -0.010971069, -0.05392456, -0.022094727, 0.024307251, -0.0098724365, -0.021560669, -0.034942627, 0.000538826, 0.018814087, -0.040496826, 0.023223877, -0.01159668, 0.08581543, -0.035125732, 0.018676758, 0.026901245, 0.01828003, -0.08154297, -0.008178711, -0.046173096, 0.03668213, -0.0058555603, 0.013160706, -0.006351471, 0.014587402, -0.004699707, -0.014862061, 0.0012979507, -0.003932953, -0.03527832, -0.016571045, 0.007297516, 0.011795044, -0.01272583, -0.009284973, -0.003944397, 0.010948181, -0.078430176, -0.02330017, 0.004211426, 0.017745972, 0.008972168, 0.062286377, -0.04360962, -0.06274414, -0.033416748, 0.0058021545, 0.024246216, -0.056884766, -0.06262207, -0.051757812, 0.022903442, 0.049743652, -0.013168335, 0.017990112, 0.026412964, -0.029556274, 0.006816864, -0.0491333, 0.034698486, -0.011444092, -0.028030396, 0.064819336, 0.07574463, -0.00737381, 0.02949524, -0.008666992, -0.03579712, 0.022720337, 0.007633209, -0.08935547, 0.015991211, -0.0109939575, 0.019699097, 0.0038204193, 0.0042152405, -0.050750732, 0.019424438, -0.039215088, 0.01361084, -0.052001953, -0.015434265, -0.018615723, -0.040618896, 0.0051193237, -0.028945923, 0.019638062, -0.027389526, 0.006164551, -0.03414917, -0.034179688, -0.0037212372, 0.013870239, 0.00073575974, 0.022903442, -0.0070533752, -0.0037155151, -0.020141602, 0.0036964417, 0.011207581, -0.03564453, 0.02218628, 0.020111084, 0.0031738281, 0.00061035156, -0.0061149597, -0.0026226044, 0.0007081032, -0.0007953644, 0.014465332, 0.0023956299, -0.05960083, -0.06121826, 0.07147217, 0.04763794, 0.0035095215, -0.028793335, 0.013389587, -0.006385803, -0.03768921, -0.021911621, -0.0105896, -0.023147583, 0.038635254, -0.03338623, 0.010902405, 0.0064888, -0.02609253, -0.0141067505, -0.047668457, 0.07476807, -0.029403687, 0.009643555, 0.015350342, 0.005420685, 0.0138168335, -0.01374054, -0.028823853, -0.022659302, -0.0069885254, 0.02949524, -0.041290283, -0.057495117, 0.022460938, 0.02645874, -0.022018433, 0.033233643, 0.009490967, 0.005065918, 0.0031909943, -0.040405273, 0.023010254, 0.0015602112, -0.013061523, 0.011329651, -0.03060913, -0.02104187, 0.018356323, 0.026031494, -0.005973816, 0.032714844, 0.0007266998, 0.02067566, -0.002090454, 0.005958557, -0.017944336, -0.030197144, 0.07336426, -0.016830444, -0.022094727, -0.006954193, -0.03692627, 0.009292603, 0.033966064, 0.002779007, 0.034118652, -0.036315918, 0.014884949, -0.006587982, -0.0024681091, -0.043548584, -0.018447876, 0.033294678, 0.01687622, -0.027542114, -0.035705566, -0.008735657, 0.0057029724, -0.007007599, -0.081970215, 0.049743652, -0.073913574, 0.049194336, 0.01725769, 0.025924683, -0.08148193, -0.016143799, -0.0072402954, -0.0012140274, -0.008628845, 0.09136963, 0.0149383545, 0.042419434, -0.012901306, 0.00022006035, 0.027908325, -0.011634827, 0.009429932, -0.014060974, 0.0025310516, -0.0032672882, -0.0075035095, -0.01802063, -0.033477783, 0.013671875, 0.019119263, -0.0053901672, -0.009246826, -0.016738892, -0.010322571, 0.015975952, -0.021850586, 0.0066070557, -0.0003004074, -0.034210205, -0.014633179, -0.0012617111, 0.006580353, -0.029281616, -0.023147583, -0.018692017, -0.029907227, -0.036834717, 0.05105591, -0.008911133, -0.02406311, -0.01134491, 0.02003479, -0.0007982254, -0.032928467, -0.03225708, 0.015342712, 0.021270752, -0.006099701, 0.028747559, 0.011222839, -0.040924072, -0.0552063, -0.004585266, 0.01235199, 0.02281189, -0.016204834, 0.010536194, 0.018539429, 0.004360199, 0.010726929, 0.074279785, 0.02128601, 0.0065994263, 0.019989014, -0.06088257, -0.018844604, 0.021697998, 0.00045251846, -0.03756714, -0.04083252, 0.04006958, -0.010734558, 0.00207901, 0.011489868, -0.0041618347, -0.045654297, 0.0039634705, -0.00037240982, -0.012420654, -0.0040397644, -0.0027313232, 0.020553589, 0.01285553, -0.009391785, -0.0066719055, 0.019180298, -0.032165527, 0.028015137, -0.04321289, 0.029006958, -0.012886047, -0.03125, -0.061462402, -0.020446777, 0.011314392, 0.02772522, -0.07684326, -0.013809204, 0.04019165, -0.012237549, -0.027359009, 0.027542114, 0.080444336, -0.00021505356, 0.01651001, -0.010520935, -0.029388428, -0.0069732666, 0.0055122375, 0.001496315, -0.070007324, 0.00011986494, 0.034118652, -0.03225708, -0.0127334595, -0.010696411, 0.003932953, -0.0135269165, -0.009559631, -0.08215332, -0.05621338, 0.050842285, 0.05206299, -0.033203125, -0.027297974, -0.0037937164, 0.038085938, 0.011390686, 0.008956909, -0.016494751, -0.0025424957, 0.012832642, 0.0418396, -0.015602112, 0.08270264, -0.037841797, -0.095947266, -0.054748535, 0.002008438, 0.00566864, 0.0040740967, 0.047088623, 0.0067443848, 0.0050811768, 0.052124023, -0.021255493, -0.027374268, 0.011581421, 0.064208984, 0.03955078, 0.0045394897]}, "B06Y5XFF6F": {"id": "B06Y5XFF6F", "original": "Brand: DOZYANT\nName: DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank\nDescription: \nFeatures: Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel\nCost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks.\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMulti-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "metadata": {"Name": "DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank", "Brand": "DOZYANT", "Description": "", "Features": "Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel\nCost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks.\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMulti-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018508911, 0.02494812, -0.02532959, -0.050994873, 0.030288696, -0.00033926964, -0.008071899, 0.0048103333, -0.024887085, 0.0038318634, 0.012130737, 0.035736084, -0.0181427, -0.037475586, 0.033294678, -0.018096924, 0.024337769, -0.0637207, -0.06390381, -0.05947876, -0.006134033, -0.04547119, -0.0056648254, 0.11755371, 0.021209717, -0.021636963, 0.03074646, -0.009307861, 0.020462036, -0.025024414, 0.021347046, 0.0098724365, 0.047790527, 0.0044784546, -0.0670166, -0.06793213, -0.05041504, -0.008560181, -0.0657959, 0.009727478, 0.03189087, -0.025802612, -0.004890442, 0.0047454834, -0.020874023, -0.017807007, 0.03262329, -0.01449585, 0.04510498, 0.020370483, -0.0004413128, -0.0021018982, 0.019805908, 0.008712769, -0.015090942, -0.011268616, 0.008529663, -0.076416016, 0.015945435, 0.011657715, 0.011756897, -0.015319824, 0.018966675, -0.007156372, -0.017669678, 0.009757996, 0.031280518, -0.008995056, 0.04421997, -0.04840088, -0.051696777, 0.04525757, 0.00068473816, 0.04034424, -0.0690918, -0.06774902, 0.067871094, -0.034698486, 0.0034294128, 0.026184082, 0.0034923553, -0.0068855286, 0.05166626, 0.004169464, -0.015472412, 0.008384705, -0.015945435, -0.010879517, -0.0017518997, -0.02848816, -0.020202637, 0.013343811, 0.009216309, -0.021316528, -0.05206299, -0.01828003, -0.042022705, -0.08148193, 0.008987427, 0.015914917, 0.015129089, -0.04006958, 0.03753662, -0.0027503967, 0.023803711, 0.023925781, -0.021392822, -0.015945435, 0.058166504, 0.016784668, 0.009918213, 0.07092285, 0.019592285, -0.006095886, -0.0020980835, 0.017669678, 0.017654419, 0.039520264, 0.014007568, 0.047088623, -0.008682251, -0.010932922, 0.01953125, -0.025375366, -0.015014648, -0.03643799, -0.028549194, 0.012397766, -0.034057617, -0.022506714, -0.0395813, 0.027786255, 0.048187256, 0.04849243, 0.0017881393, -0.001698494, 0.03262329, 0.04812622, 0.007083893, -3.0517578e-05, 0.011711121, -0.034484863, -0.0046424866, 0.023849487, 0.00042057037, 0.03665161, 0.005378723, 0.012229919, 0.014984131, -0.051696777, 0.020141602, -0.047424316, 0.036590576, -0.021774292, -0.027374268, -0.03829956, -0.030136108, -0.022079468, 0.01260376, -0.029815674, -0.020187378, -0.003982544, 0.014404297, -0.0011463165, 0.0030708313, 0.010391235, 0.017562866, -0.001950264, 0.025177002, 0.04046631, 0.01675415, 0.046173096, 0.051116943, 0.024368286, 0.0023517609, -0.023620605, -0.046020508, 0.10284424, 0.079956055, -0.1430664, -0.055999756, -0.06274414, 0.14660645, -0.023712158, 0.0385437, -0.06945801, 0.022735596, -0.09637451, -0.031036377, -0.00049209595, 0.041625977, 0.06842041, 0.028152466, -0.059631348, -0.0014410019, 0.011985779, 0.0065078735, 0.034576416, -0.0049476624, -0.008361816, -0.0592041, -0.0072517395, 0.028213501, 0.015853882, 0.018035889, -0.0072021484, -0.008575439, 0.019943237, 0.0021781921, 0.027114868, 0.008590698, -0.008880615, 0.008842468, -0.03451538, -0.018966675, 0.0068588257, -0.009933472, 0.019332886, 0.0063819885, -0.021728516, 0.04107666, -0.0096206665, 0.045043945, 0.0390625, 0.00036287308, 0.003293991, -0.03237915, -0.0076828003, -0.01084137, -0.008583069, 0.034729004, 0.057128906, 0.07147217, 0.026947021, -0.024810791, 0.033447266, 0.06097412, 0.032958984, -0.032073975, 0.010726929, 0.021102905, -0.038330078, 0.0038909912, 0.03491211, -0.0044822693, -0.04876709, -0.0041236877, 0.018066406, -0.016204834, 0.037017822, 0.030471802, 0.010253906, 0.012931824, 0.019958496, -0.06628418, 0.03729248, 0.034118652, 0.047912598, -0.015853882, -0.0013837814, -0.013946533, 0.022781372, -0.015129089, 0.008560181, 0.0021533966, 0.008598328, 0.035491943, 0.013664246, -0.005470276, -0.005420685, 0.009849548, -0.0037460327, -0.011955261, -0.037384033, -0.025939941, 0.00642395, -0.037597656, 0.04095459, 0.017425537, -0.020828247, 0.025558472, -0.018234253, 0.024856567, 0.0011911392, 0.052947998, 0.05670166, 0.025222778, 0.020141602, -0.039245605, -0.012168884, 0.0009279251, 0.061706543, 0.03564453, -0.0074768066, -0.004798889, 0.018203735, 0.071777344, 0.012649536, 0.019485474, -0.0026187897, 0.02986145, 0.044128418, -0.05319214, 0.03869629, -0.0072402954, 0.0067367554, -0.009841919, 0.012374878, 0.014625549, -0.005771637, -0.023330688, 0.010032654, 0.015579224, 0.047454834, 0.0021190643, -0.0021743774, 0.002248764, 0.03326416, 0.029510498, 0.025894165, -0.009887695, -0.007709503, 0.025726318, 0.0035076141, 0.023864746, -0.032714844, -0.0052986145, 0.021102905, 0.012634277, 0.005405426, -0.0082473755, -0.017608643, -0.02758789, -0.045837402, -0.0077552795, -0.013679504, 0.020263672, -0.0065994263, -0.009773254, -0.025360107, 0.035247803, -0.047576904, -0.0019569397, 0.020050049, 0.004322052, -0.039154053, 0.023757935, 0.002084732, -0.0049362183, 0.02268982, -0.022628784, -0.0073776245, 0.011543274, 0.010299683, 0.028182983, 0.009918213, -0.01852417, -0.012786865, 0.011230469, -0.055999756, 0.0109939575, -0.031204224, -0.061401367, 0.020187378, 0.070739746, -0.020751953, -0.013183594, -0.049835205, -0.0076179504, 0.015640259, 0.012306213, -0.01512146, -0.075683594, -0.009925842, -0.0026302338, 0.0051231384, 0.042419434, -0.023483276, 0.034210205, 0.02709961, 0.022140503, 0.038269043, -0.024353027, 0.016494751, -0.021865845, 0.057769775, 0.06713867, 0.012954712, 0.026901245, -0.060455322, 0.045684814, 0.086242676, 0.033111572, -0.011039734, -0.020431519, -0.0178833, 0.0061950684, -0.008232117, -0.021148682, -0.009269714, -0.021514893, -0.007850647, 0.014373779, -0.021560669, -0.0070533752, -0.03161621, -0.02166748, -0.02067566, 0.020492554, 0.035339355, -0.0073165894, 0.046081543, -0.006591797, 0.05029297, -0.034240723, 0.0064315796, -0.028686523, -0.008613586, -0.01889038, 0.025009155, 0.04559326, -0.07574463, 0.038604736, 0.06500244, -0.014480591, -0.019012451, 0.019256592, 0.028213501, -0.015342712, 0.005054474, 0.00083112717, -0.028503418, -0.07141113, -0.039733887, 0.0019330978, 0.0034618378, 0.02130127, -0.016082764, 0.02571106, 0.0066375732, -0.027420044, -0.024963379, -0.0040664673, 0.059631348, -0.03881836, 0.026733398, -0.05908203, -0.023269653, 0.0010528564, -0.0020999908, 0.008148193, -0.0007791519, 0.03265381, 0.0067825317, -0.018005371, 0.030914307, 0.0038108826, 0.017959595, -0.0335083, 0.04559326, 0.021621704, 0.003780365, 0.017578125, -0.023910522, 0.025222778, -0.064331055, 0.052124023, 0.020446777, 0.020050049, 0.0025691986, 0.026947021, 0.029067993, 0.015975952, -0.00932312, 0.03540039, 0.024673462, 0.0034637451, -0.018966675, -0.018859863, -0.013427734, -0.054992676, 0.021408081, -0.1184082, 0.05456543, 0.005680084, -0.018188477, 0.052734375, 0.038269043, -0.027664185, 0.02909851, -0.005847931, 0.024505615, -0.007965088, 0.052124023, -0.017913818, -0.00084877014, -0.005302429, -0.032989502, 0.012283325, -0.021774292, -7.289648e-05, 0.027709961, 0.076538086, -0.02418518, -0.014305115, 0.030960083, -0.0154953, -0.013793945, -0.026229858, -0.04208374, -0.047424316, -0.06329346, 0.037384033, 0.017501831, -0.007827759, 0.01335144, 0.011741638, -0.04510498, 0.020507812, 0.013618469, -0.0017328262, -0.008583069, 0.01776123, 0.027191162, 0.00491333, -0.031707764, 0.009941101, -0.006855011, -0.050689697, 0.0035972595, 0.0077438354, 0.033966064, -0.010643005, -0.04309082, 0.045684814, 0.009101868, -0.039245605, 0.053985596, 0.0031414032, -0.08758545, -0.008010864, 0.039764404, -0.0004553795, -0.019073486, -0.018600464, -0.045898438, -0.030517578, 0.008522034, -0.05267334, 0.0014295578, 0.024612427, 0.025939941, -0.035736084, -0.027328491, -0.049194336, 0.040130615, -0.03427124, 0.028045654, -0.0054016113, -0.0032291412, 0.01977539, 0.04876709, -0.04611206, -0.03164673, -0.016677856, -0.0045814514, 0.022842407, -0.009002686, 0.021469116, -0.05493164, 0.0027313232, -0.0054969788, 0.015449524, -0.016662598, 0.0158844, 0.010551453, 0.0030784607, 0.010681152, 0.027633667, 0.04623413, -0.011314392, 0.006290436, -0.022842407, -0.009269714, -0.07421875, 0.0002875328, 0.03302002, -0.049346924, -0.06201172, -0.016296387, 0.068725586, 0.020019531, 0.030548096, -0.066467285, -0.027297974, 0.03463745, -0.043548584, -0.05807495, -0.072753906, -0.019577026, -0.0090789795, -0.034057617, -0.012565613, -0.01979065, 0.07080078, -0.024169922, -0.016494751, -0.01600647, -0.017669678, -0.009147644, 0.007785797, 0.042541504, -0.041992188, 0.010917664, -0.037841797, -0.017410278, -0.06237793, 0.01638794, 0.022537231, -0.010360718, -0.006038666, -0.020462036, -0.019866943, -0.019378662, -0.040100098, -0.0017337799, 0.023971558, -0.011268616, -0.0287323, 0.011169434, -0.014862061, -0.007545471, -0.04043579, -0.02798462, -0.005466461, 0.029312134, -0.021469116, -0.035888672, -0.016296387, 0.0008482933, 0.021774292, 0.004234314, -0.057647705, -0.022338867, 0.036254883, 0.0037403107, -0.0025539398, -0.002035141, -0.02067566, -0.012390137, -0.0181427, 0.008934021, -0.046539307, 0.026306152, 0.06225586, -0.012886047, -0.014801025, 0.028884888, -0.017547607, 0.0054473877, -0.0236969, 0.008560181, 0.0184021, -0.01171875, -0.006454468, -0.013931274, 0.04208374, 0.021575928, -0.023330688, 0.025390625, -0.008728027, 0.0054626465, 0.016403198, 0.013847351, 0.010368347, -0.044525146, 0.07501221, -0.0030136108, -0.0030784607, -0.051116943, 0.0013504028, -0.03010559, 0.008590698, -0.0063209534, -0.016296387, 0.016021729, -0.017837524, 0.011070251, 0.012519836, 0.048217773, -0.024719238, -0.01058197, 0.022094727, -0.005142212, -0.035186768, 0.019470215, -0.024551392, 0.068115234, -0.013320923, -0.027832031, 0.00919342, 0.04434204, -0.033843994, 0.007423401, -0.019592285, -0.016281128, -0.011054993, -0.03253174, -0.023269653, -0.0047416687, -0.043823242, 0.019638062, 0.0004146099, -0.0010070801, -0.042053223, -0.022338867, -0.017547607, 0.029464722, 0.0075263977, 0.020050049, -0.03125, -0.02583313, -0.014175415, -0.020553589, 0.012008667, -0.0181427, -0.050689697, -0.038635254, -0.0024929047, -0.005531311, 0.009590149, 0.05441284, 0.020080566, -0.02003479, -0.004169464, -0.04916382, 0.07019043, -0.048858643, -0.055633545, 0.07647705, 0.05303955, 0.018295288, 0.0082473755, -0.03036499, -0.04660034, 0.016616821, 0.0042419434, 0.012428284, -0.06329346, -0.038360596, -0.015281677, 0.012466431, 0.040161133, 0.0012788773, 0.02507019, -0.01184082, 0.02166748, -0.012802124, 0.040283203, -0.042114258, -0.04095459, 0.0062217712, -0.015914917, 0.022201538, 0.009429932, 0.03265381, -0.060913086, -0.048706055, -0.0026874542, 0.024780273, 0.020065308, -0.000667572, 0.013298035, 0.052215576, -0.034210205, 0.0118637085, -0.00026011467, 0.0014104843, -0.006565094, 0.015930176, -0.005016327, 0.029953003, -0.024597168, 0.0049705505, -0.018569946, -0.037597656, 0.021987915, 0.022460938, -0.013374329, 0.04171753, 0.008636475, 0.027832031, -0.008590698, -0.024353027, 0.03479004, 0.0037612915, -0.056732178, -0.032073975, -0.00762558, -0.027633667, 0.0146865845, -0.028533936, 0.01739502, 0.011314392, -0.008918762, 0.018325806, 0.010124207, 0.04135132, -0.0026760101, 0.044647217, 0.008628845, -0.004398346, 0.019134521, 0.01612854, 0.045074463, 0.026321411, 0.031585693, 0.01486969, -0.0044822693, -0.050567627, 0.019592285, 0.02305603, -0.018127441, 0.028671265, -0.034362793, 0.0037708282, 0.03857422, -0.05328369, 0.0023059845, 0.03463745, 0.00774765, -0.0049095154, -0.0078125, 0.005340576, 0.0052337646, 0.008659363, 0.021865845, 0.041992188, 0.005428314, 0.024719238, -0.016723633, 0.01727295, -0.036010742, -0.033599854, 0.00843811, -0.011947632, 0.0038452148, 0.0064353943, -0.03933716, -0.035095215, 0.029434204, -0.022842407, -0.03665161, -0.0022830963, 0.032348633, 0.02128601, 0.005744934, -0.03652954, -0.03640747, 0.0041236877, -0.0069618225, -0.0046043396, 0.0035076141, -0.002790451, 0.03591919, 0.03253174, 0.008094788, 0.00025200844, -0.029846191, 0.0027503967, 0.025894165, 0.023742676, -0.061553955, -0.018188477, -0.011985779, 0.005214691, -0.016403198, 0.06365967, 0.0015439987, 0.03793335, 0.020629883, -0.005970001, 0.05316162, 0.002878189, 0.011352539, -0.036865234, 0.02420044, 0.024520874, 0.010559082, -0.005722046, -0.05117798, 0.0042915344, 0.018157959, -0.018493652, 0.021484375, 0.009521484, -0.0072746277, 0.0027065277, -0.017791748, 0.03451538, -0.00774765, -0.03643799, -0.031021118, -0.0015888214, 0.008308411, -0.012199402, -0.039520264, -0.055511475, -0.0413208, -0.033447266, 0.049438477, -0.015113831, -0.004611969, 0.0032157898, -0.01737976, 0.005897522, -0.01789856, 0.038726807, 0.019561768, 0.048187256, -0.021331787, -0.019943237, 0.012886047, -0.0073280334, -0.05001831, 0.011123657, -0.050994873, -0.013000488, 0.011657715, 0.035339355, 0.04989624, 0.014884949, 0.017227173, 0.011276245, 0.015319824, -0.008171082, 0.0041122437, -0.06756592, -0.03012085, 0.03277588, 0.01574707, -0.03463745, -0.03149414, 0.04336548, -0.011787415, 0.015823364, 0.016906738, -0.015716553, -0.017105103, -0.011329651, -0.011955261, -0.051849365, -0.009681702, -0.0129852295, 0.040008545, -0.012054443, -0.026641846, 0.043518066, 0.029724121, 0.011940002, 0.033569336, 0.020721436, -0.00409317, -0.014801025, -0.043670654, -0.01374054, -0.008460999, 0.02180481, -0.014633179, -0.076538086, -0.034851074, -0.004673004, -0.010971069, 0.004852295, 0.0692749, -0.022735596, -0.0019369125, 0.031234741, -0.0154800415, -0.005672455, -0.0035533905, -0.0041007996, -0.039855957, 0.0031814575, 0.042022705, -0.004501343, -0.013557434, -0.017608643, -0.032226562, -0.011489868, -0.035369873, -0.0309906, -0.032348633, -0.06890869, 0.062286377, 0.019897461, 0.005054474, 0.0007266998, 0.036834717, -0.015388489, -0.012290955, 0.032806396, 0.011962891, 0.05279541, 0.012893677, -0.030136108, 0.0018129349, -0.00058603287, -0.0029239655, -0.08251953, -0.023590088, 0.0054779053, 0.033294678, -0.01890564, 0.05114746, -0.038635254, -0.004043579, 0.045532227, -0.03277588, -0.03817749, 0.0107421875, 0.04547119, 0.02406311, 0.011222839]}, "B07FP4WHML": {"id": "B07FP4WHML", "original": "Brand: only fire\nName: Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch\nDescription: Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

      Steel construction with easy grip handles

      Black mesh pattern naturally creates 'x marks' in steak and other grilled foods

      Use as serving tray after grilling is done. Great camping accessory

      Creates perfect grill marks on food without any hassle.

      \nFeatures: 36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings\nSturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood\nIt is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate!\nSteel construction for warp resistance.\nCreate perfect grill marks in your food, making the BBQ more fun.\n", "metadata": {"Name": "Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch", "Brand": "only fire", "Description": "Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

      Steel construction with easy grip handles

      Black mesh pattern naturally creates 'x marks' in steak and other grilled foods

      Use as serving tray after grilling is done. Great camping accessory

      Creates perfect grill marks on food without any hassle.

      ", "Features": "36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings\nSturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood\nIt is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate!\nSteel construction for warp resistance.\nCreate perfect grill marks in your food, making the BBQ more fun.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0085372925, -0.006511688, -0.022949219, -0.0056991577, -0.008026123, -0.016159058, 0.0043907166, -0.01159668, -0.058135986, 0.01638794, 0.014984131, 0.026123047, -0.0032730103, -0.034423828, 0.029327393, -0.026321411, 0.0008597374, 0.0027751923, -0.036621094, -0.037963867, 0.004611969, -0.033843994, -0.04837036, 0.062164307, 0.028427124, -0.021606445, 0.012397766, -0.0048179626, 0.039611816, 0.026382446, 0.022705078, -0.03173828, 0.06518555, -0.016616821, -0.05102539, -0.042541504, -0.036834717, -0.019180298, -0.04699707, 0.024154663, 0.024749756, -0.015304565, -0.0076522827, 0.03277588, -0.038757324, -0.023864746, 0.013885498, -0.01625061, -0.001581192, -0.011985779, 0.015052795, 0.038085938, 0.022476196, 0.005420685, -0.012527466, 0.015655518, -0.0061454773, -0.021820068, 0.0010108948, -0.021377563, 0.015686035, 0.034820557, 0.023986816, 0.05407715, -0.008636475, 0.026626587, 0.09655762, -0.023925781, -0.020858765, -0.013267517, 0.043945312, 0.008132935, 0.044830322, -0.017868042, -0.017700195, -0.021591187, 0.013916016, -0.0032081604, 0.025375366, -0.022994995, -0.011795044, -0.03555298, 0.032348633, -0.04046631, 0.005466461, -0.03010559, -0.005168915, 0.0093307495, -0.0051078796, -0.028152466, -0.0088272095, 0.019882202, -0.042297363, 0.0055274963, -0.004650116, -0.030059814, -0.041900635, -0.08972168, 0.054870605, 0.014129639, 0.028823853, -0.032928467, -0.0045280457, 0.007904053, -0.031402588, 0.05215454, 0.039031982, 0.07299805, -0.007007599, -0.011985779, -0.008621216, -0.035614014, 0.020629883, -0.022613525, -0.01828003, 0.012840271, 0.006629944, 0.009429932, 0.009735107, 0.006576538, -0.03137207, -0.035217285, 0.016738892, 0.09124756, 0.016448975, 0.043518066, 0.0049324036, -0.01612854, -0.039215088, 0.01146698, -0.0071144104, 0.007904053, -0.0154800415, 0.003818512, -0.044128418, -0.0132751465, 0.023422241, 0.013008118, 0.015701294, 0.005130768, -0.046783447, 0.010421753, 0.07733154, -0.02708435, -0.045928955, 0.009780884, 0.026535034, 0.031463623, -0.027053833, -0.06829834, 0.01864624, 0.02330017, 0.038269043, 0.03866577, -0.048309326, -0.0059013367, 0.048828125, -0.03543091, -0.049468994, -0.0869751, 0.012145996, 0.009017944, 0.0027770996, -0.018157959, -0.02911377, -0.03366089, -0.033447266, -0.003030777, 0.008110046, -0.0031738281, 0.01210022, -0.033599854, -0.005104065, -0.015174866, 0.0015716553, 0.006412506, 0.0016813278, 0.047973633, 0.048034668, -0.06829834, -0.06585693, -0.051513672, 0.10101318, -0.058258057, -0.043395996, -0.010917664, 0.017715454, 0.033966064, 0.034973145, 0.0076179504, 0.045959473, -0.014511108, 0.0063476562, -0.032806396, 0.0040626526, 0.00087690353, -0.0010652542, 0.004535675, -0.00920105, 0.00024282932, 0.0059127808, -0.04095459, 0.04663086, -0.007534027, -0.02041626, -0.026626587, -0.019561768, 0.015380859, 0.010231018, 0.012817383, 0.033996582, 0.04031372, -0.040100098, -0.021133423, -0.045043945, -0.013801575, -0.016235352, 0.010971069, 0.021118164, 0.018249512, 0.044189453, -0.0031337738, 0.0128479, -0.020721436, 0.03665161, -0.010681152, -0.0036907196, -0.014144897, 0.05078125, 0.0024929047, -0.016921997, 0.029464722, 0.06365967, 0.039215088, -0.040130615, 0.042114258, 0.027420044, 0.061920166, -0.039123535, -0.008018494, 0.0063667297, -0.033721924, -0.053497314, 0.0040664673, 0.018234253, 0.006931305, -0.0032844543, 0.002943039, -0.023620605, 0.01777649, -0.0032196045, 0.03427124, 0.032287598, 0.053222656, -0.013183594, 0.026611328, -0.015899658, 0.033050537, -0.040130615, 0.013290405, -0.019729614, 0.06072998, 0.04550171, 0.013618469, -0.0070648193, -0.014259338, 0.020736694, 0.015312195, 0.017303467, -0.025268555, 0.0077667236, 0.015556335, -0.0028514862, -0.008895874, 0.036865234, 0.007583618, -0.050109863, 0.0057373047, 0.017425537, -0.019683838, 0.0011196136, 0.0023937225, 0.0102005005, 0.00340271, 0.036376953, -0.00422287, 0.014877319, 0.009132385, -0.028381348, -0.073791504, -0.003736496, -0.010566711, -0.04849243, 0.006175995, -0.017745972, -0.05545044, -0.021835327, 0.020614624, -0.005130768, 0.0045318604, -0.013420105, 0.041137695, 0.020370483, 0.0049743652, -0.032470703, 0.024276733, -0.018981934, -0.002368927, -0.022033691, -0.07757568, 0.05368042, 0.028076172, 0.044311523, 0.0028190613, 0.070251465, 0.040649414, 0.01939392, 0.073913574, 0.064575195, 0.044952393, -0.016586304, -0.005340576, -0.056365967, 0.0019054413, -0.013694763, 0.028518677, -0.018432617, -0.015052795, -0.014076233, 0.020751953, -0.014404297, 0.0059051514, 0.0016555786, 0.049560547, -0.011131287, 0.0023078918, 0.0016021729, 0.008407593, -0.001335144, -0.02041626, 0.022537231, -0.024536133, 0.0016756058, 0.005382538, -0.030212402, -0.03161621, 0.004558563, 0.019546509, -0.040130615, -0.009796143, 0.030136108, -0.023239136, 0.035064697, -0.02558899, 0.033233643, 0.011711121, -0.047607422, -0.0050735474, 0.0023899078, -0.06341553, -0.023788452, 0.012870789, -0.058013916, 0.021453857, 0.049102783, -0.020996094, -0.011062622, 0.0011777878, -0.0010280609, 0.021209717, 0.074523926, 0.0019140244, -0.09094238, -0.04034424, -0.058380127, -0.03326416, -0.002943039, -0.0440979, 0.028640747, -0.0036697388, -0.028717041, 0.039215088, -0.022262573, 0.08154297, 0.0501709, -0.017822266, 0.0067214966, 0.07385254, 0.020111084, 0.0028476715, 0.0030536652, 0.027740479, -0.068359375, -0.011741638, 0.026748657, 0.011787415, 0.02885437, -0.050354004, -0.03338623, -0.04901123, -0.1262207, 0.016113281, -0.023849487, -0.029342651, 0.029220581, -0.10058594, -0.025924683, -0.08654785, 0.00010615587, 0.0435791, -0.0105896, 0.00868988, -0.015808105, 0.008636475, 0.008163452, -0.019897461, 0.04296875, -0.00020325184, -0.0034618378, -0.043060303, 0.030670166, -0.0496521, 0.0056266785, -0.013175964, -0.06414795, -0.058258057, -0.010574341, 0.043518066, -0.052825928, 0.030807495, -0.022537231, -0.015174866, -0.017745972, -0.0034046173, -0.014442444, 0.0058670044, -0.008605957, -0.060028076, 0.027938843, -0.0368042, -0.06384277, -0.031799316, -0.039276123, -0.01977539, -0.0028915405, -0.03488159, -0.02355957, -0.057525635, -0.0067214966, -0.014137268, -0.0029621124, 0.021102905, 0.024276733, 0.011047363, -0.016357422, 0.026275635, 0.035064697, 0.045684814, 0.0036258698, -0.019332886, -0.020950317, -0.04534912, 0.040222168, 0.012184143, -0.013282776, -0.006755829, 0.050628662, -0.004676819, -0.019500732, 0.017074585, -0.02330017, 0.015434265, 0.028167725, 0.012687683, -0.0017910004, 0.011375427, -0.011390686, 0.01928711, -0.03692627, -0.0029773712, -0.016571045, -0.019134521, -0.050720215, 0.09082031, 0.06201172, -0.030166626, 0.05987549, 0.074401855, -0.009971619, 0.070495605, 0.024139404, 0.029541016, 0.0184021, 0.060546875, -0.026779175, 0.034606934, 0.02067566, -0.011421204, -0.00029087067, -0.01184082, -0.046142578, -0.007484436, -0.012031555, -0.02217102, 0.03338623, 0.005256653, -0.02923584, -0.012382507, 0.006565094, 0.026031494, -0.02142334, -0.012466431, 0.060516357, 0.010475159, -0.0043563843, 0.012077332, 0.0026340485, 0.012786865, -0.007701874, -0.0075645447, -0.0118255615, 0.0067481995, 0.032958984, 0.048706055, -0.05480957, -0.014854431, 0.017425537, 0.01209259, -0.040283203, 0.010475159, 0.043121338, 0.011505127, 0.045684814, -0.012031555, -0.003742218, 0.027999878, -0.015205383, 0.033935547, 0.009971619, -0.030273438, 0.0022830963, 0.022613525, 0.01939392, -0.009468079, 0.025741577, -0.0418396, 0.0055160522, -0.034851074, -0.021072388, -0.011329651, -0.046203613, -0.023590088, -0.06945801, -0.02268982, -0.0048713684, -0.011734009, -0.043792725, 0.020095825, -0.014213562, -0.02394104, -0.028930664, 0.026992798, -0.025604248, 0.007347107, 0.01852417, -0.008270264, 0.06384277, 0.033721924, 0.01486969, -0.033599854, -0.012252808, -0.018554688, 0.044525146, -0.014564514, 0.020950317, -0.024719238, -0.01838684, -0.007183075, 0.043518066, 0.02885437, -0.012588501, -0.01940918, -0.019836426, -0.05923462, -0.035125732, -0.038269043, 0.030593872, -0.05630493, -0.03665161, -0.026123047, 0.07867432, -0.020904541, -0.014434814, -0.021728516, 0.01638794, 0.008872986, 0.02734375, -0.014770508, 0.011154175, 0.02444458, -0.0096206665, -0.0058517456, 0.0003812313, -0.013557434, 0.033203125, 0.0066566467, 0.015457153, -0.0184021, 0.02407837, 0.020019531, -0.0413208, 0.038848877, -0.04031372, 0.003921509, -0.021087646, -0.040222168, -0.041900635, 0.075927734, 0.04147339, -0.04458618, -0.030303955, 0.009742737, -0.04763794, -0.07525635, -0.0028686523, -0.039031982, 0.024810791, -0.032165527, -0.03591919, 0.018844604, -0.033325195, 0.02130127, 0.019485474, 0.0066070557, 0.037078857, -0.03643799, 0.038879395, 0.029525757, 0.045562744, 0.07745361, 0.0042037964, -0.0061187744, -0.0023822784, 0.018875122, -0.017440796, -0.029052734, -0.009887695, 0.015838623, -0.021087646, -0.0043296814, 0.012557983, 0.015586853, -0.026550293, 0.032073975, 0.019744873, 0.009414673, -0.005508423, 0.010101318, 0.051116943, -0.00920105, -0.04244995, 0.05810547, -0.01777649, -0.0024528503, -0.011070251, -0.026641846, 0.016723633, 0.052215576, -0.044006348, 0.031082153, 0.039031982, -0.019332886, 0.039855957, -0.019226074, -0.02456665, -0.025024414, 0.03427124, 0.004009247, -0.011993408, -0.03137207, 0.0048713684, -0.0049705505, 0.04714966, -0.01991272, -0.01940918, 0.024780273, -0.024505615, -0.004676819, -0.014945984, 0.009170532, -0.01878357, 0.030288696, -0.023361206, 0.0018205643, -0.008766174, -0.026321411, -0.014930725, -0.0072288513, 0.00484848, -0.012710571, 0.035827637, 0.002664566, -0.03125, -0.02973938, -0.0072288513, 0.01687622, -0.01878357, 0.02293396, -0.036376953, -0.012123108, 0.0045204163, 0.056549072, -0.0076408386, 0.006034851, -0.053833008, -0.012702942, -0.015464783, -0.037017822, -0.021652222, 0.09539795, 0.017181396, -0.010276794, 0.026641846, 0.012512207, 0.014953613, 0.03677368, 0.001502037, 0.05319214, 0.020355225, 0.035125732, -0.02281189, -0.034454346, 0.03982544, -0.032165527, -0.030975342, -0.013114929, 0.05505371, 0.001332283, -0.0066986084, 0.053131104, 0.036712646, 0.0010890961, 0.031402588, -0.02331543, -0.054534912, -0.0059051514, -0.007843018, -0.02859497, 0.0042152405, -0.033416748, 0.046539307, 0.008407593, 0.0077705383, -0.038238525, 0.05960083, -0.016082764, -0.03793335, -0.051574707, -0.014717102, 0.01574707, 0.00077342987, 0.019577026, 0.012954712, 0.008110046, 0.0138168335, 0.060272217, -0.02017212, -0.014442444, 0.010131836, 0.062438965, 0.026184082, -0.015975952, 0.014389038, 0.014724731, -0.066345215, 0.08557129, -0.0060577393, -0.015853882, 0.0019025803, 0.029296875, 0.017715454, 0.0063209534, -0.011009216, -0.0018310547, -0.014045715, -0.013648987, 0.037994385, -0.0038032532, -0.0041770935, 0.0234375, 0.07043457, 0.0048675537, 0.05206299, 0.015594482, 0.016235352, -0.049346924, -0.035308838, 0.024841309, 0.010246277, -0.04815674, -0.032470703, -0.011772156, -0.013542175, 0.039733887, 0.0008816719, 0.033233643, 0.027511597, 0.046325684, -0.042816162, 0.03048706, 8.314848e-05, -0.0090408325, 0.024047852, 0.0018825531, 0.010749817, -0.011741638, 0.03414917, 0.0058174133, 2.4616718e-05, -0.0042419434, 0.00093126297, 0.029571533, -0.005622864, 0.039916992, 0.021270752, 0.00919342, 0.028259277, -0.04449463, 0.01776123, -0.04031372, -0.006023407, -0.006416321, -0.017562866, -0.00894928, 0.025970459, 0.027862549, -0.01625061, 0.022247314, -0.00806427, 0.0033245087, 0.018585205, 0.05758667, -0.037902832, -0.016647339, 0.03250122, 0.019638062, 0.02973938, -0.019622803, -0.0287323, 0.01676941, 0.058776855, -0.033050537, 0.024856567, 0.0043945312, -0.0002090931, -0.057556152, 0.008239746, -0.037475586, -0.020339966, 0.033599854, 0.005016327, -0.018447876, -0.002960205, 0.05029297, 0.027069092, 0.00831604, -0.026779175, 0.0284729, -0.04751587, 0.034454346, 0.03274536, 0.0015125275, 0.02279663, -0.040039062, -0.019989014, 0.014587402, -0.0072669983, -0.014968872, -0.0036945343, 0.027999878, 0.01928711, 0.018753052, 0.05718994, -0.013061523, 0.018829346, -0.0077934265, 0.01600647, 0.014564514, 0.01586914, 0.008743286, 0.021453857, -0.024627686, -0.00077342987, 0.02015686, -0.022476196, 0.022476196, 0.020492554, -0.008003235, -0.010848999, 0.031707764, 0.016723633, -0.019821167, -0.014846802, -0.008140564, -0.0008778572, -0.0006747246, 0.009254456, -0.047912598, -0.021255493, -0.034423828, 0.017440796, -0.031829834, -0.04006958, -0.034942627, -0.0020446777, 0.030761719, -0.04800415, -0.007881165, -0.0035877228, 0.055755615, 0.010597229, 0.021652222, -0.034118652, -0.04815674, -0.008674622, 0.05041504, -0.055908203, -0.06561279, -0.014007568, 0.030715942, 0.056030273, 0.008743286, -0.0069618225, 0.04437256, -0.0027580261, -0.02330017, -0.012771606, -0.03677368, -0.05078125, 0.10595703, -0.0007634163, 0.019470215, 0.009216309, 0.0413208, 0.021896362, 0.03692627, 0.029281616, 0.028411865, -0.07574463, -0.015533447, -0.05343628, 0.013534546, -0.022842407, 0.00919342, 0.012992859, 0.011497498, -0.012886047, -0.0039405823, 0.019332886, -0.015304565, 0.036865234, 0.024856567, -0.049041748, -0.023605347, -0.004550934, 0.04168701, 0.016906738, 0.002445221, -0.013092041, -0.024032593, -0.003206253, -0.023910522, -0.02645874, 0.001613617, 0.003112793, -0.05050659, -0.02809143, 0.010391235, 0.013328552, -0.019622803, 0.020050049, 0.008628845, -0.047821045, 0.00010019541, 0.014854431, 0.056121826, -0.045898438, -0.024871826, 0.008232117, -0.0016107559, 0.0056266785, -0.016540527, 0.031311035, -0.04373169, -0.00187397, 0.03439331, 0.015899658, -0.012817383, -0.028381348, -0.070373535, -0.03152466, 0.01991272, 0.0030593872, 0.024841309, 0.026672363, 0.036010742, 0.020507812, 0.016708374, -0.029815674, -0.04385376, -0.06402588, 0.02999878, -0.029190063, 0.004360199, 0.007583618, -0.024337769, 0.02079773, 0.03125, 0.014350891, -0.029556274, 0.007949829, 0.03753662, 0.022613525, 0.010108948]}, "B071NL9D7J": {"id": "B071NL9D7J", "original": "Brand: GasOne\nName: Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)\nDescription: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\nFeatures: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only\nCompatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P\nTo be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\n", "metadata": {"Name": "Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)", "Brand": "GasOne", "Description": "2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves", "Features": "2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only\nCompatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P\nTo be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0119018555, -0.03945923, -0.00010985136, -0.021652222, -0.032470703, -0.008766174, 0.0062332153, 0.01701355, -0.004890442, 0.015701294, 0.010498047, 0.020736694, -0.004890442, -0.045013428, 0.0049934387, -0.004447937, -0.0065193176, 0.041748047, 0.03225708, -0.035003662, 0.056121826, -0.032196045, -0.020492554, 0.087768555, 0.009559631, -0.008102417, -0.010879517, -0.008621216, -0.0005083084, -0.026992798, 0.021469116, 0.029266357, 0.051971436, 0.00749588, -0.082214355, -0.07434082, -0.034179688, -0.022201538, -0.08874512, 0.05340576, 0.01626587, -0.020187378, 0.016540527, 0.0012388229, -0.0007314682, -0.0043029785, 0.0076560974, -0.045410156, 0.011260986, 0.030822754, 0.015914917, -0.05368042, 0.0038700104, 0.013542175, -0.018630981, -0.017623901, 0.0110321045, 0.0043029785, 8.124113e-05, -0.050720215, -0.0021896362, 0.011009216, 0.03894043, 0.063964844, -0.028869629, 0.038146973, 0.024993896, -0.031341553, 0.008071899, -0.0335083, -0.021835327, -0.006690979, 0.03781128, -0.0076065063, -0.034179688, -0.014778137, 0.022323608, -0.007156372, 0.027297974, -0.020584106, 0.017868042, -0.039489746, 0.02911377, 0.03805542, -0.03643799, 0.01612854, -0.014259338, -0.016296387, -0.030136108, -0.01689148, -0.02394104, -0.016830444, -0.058135986, 0.03604126, -0.017074585, 0.010566711, -0.0023078918, -0.040924072, -0.0026397705, -0.01374054, 0.01574707, -0.041809082, 0.042144775, 0.0015687943, 0.02609253, 0.03286743, 0.01133728, 0.018096924, 0.043182373, -0.005531311, -0.014694214, 0.059509277, -0.043151855, -0.026657104, -0.014152527, 0.068115234, -0.003835678, -0.04650879, -0.008605957, -0.03878784, 0.014549255, 0.026107788, -0.018508911, -0.011581421, -0.00806427, -0.014350891, -0.028289795, 0.0070228577, -0.020614624, 0.0028362274, -0.021240234, 0.009132385, 0.052886963, 0.06402588, 0.010154724, -0.0011606216, 0.035980225, 0.0049819946, 0.032226562, -0.044128418, 0.038482666, -0.011627197, 0.00081825256, 0.041046143, 0.029083252, 0.013519287, 0.0032653809, 0.0077590942, 0.033569336, -0.017852783, 0.0038108826, 0.0027885437, 0.025344849, 0.01826477, 0.025802612, -0.0020179749, 0.03201294, 0.0005607605, 0.00919342, -0.014793396, -0.052337646, -0.015319824, 0.033996582, 0.016159058, 0.012931824, 0.041381836, 0.007381439, -0.0029067993, 0.0134887695, 0.059783936, -0.009536743, 0.025772095, -0.016723633, -0.0057754517, -0.000667572, -0.031799316, -0.059661865, 0.058898926, 0.049682617, -0.059692383, -0.024353027, -0.061065674, 0.078186035, -0.013320923, -0.001408577, 0.011543274, 0.00031852722, -0.034973145, -0.011924744, -0.024047852, 0.03112793, 0.07043457, 0.019958496, -0.00969696, 0.0032138824, -0.0020751953, -0.03466797, 0.021194458, -0.027114868, -0.03439331, -0.033477783, -0.009666443, -0.00016307831, 0.038757324, -0.019897461, -0.007987976, -0.014480591, 0.0023422241, -0.015327454, 0.0018920898, 0.0047340393, -0.03274536, 0.0025177002, -0.008979797, -0.012786865, -0.015090942, -0.026992798, -0.00082588196, 0.009010315, -0.01537323, 0.053771973, -0.036010742, 0.022247314, 0.048217773, -0.0029850006, -0.009796143, -0.02468872, -0.0041999817, -0.0395813, 0.004333496, -0.04989624, 0.047332764, 0.077941895, 0.078552246, -0.031402588, 0.028427124, 0.09442139, 0.10437012, -0.028182983, -0.04397583, 0.00033974648, -0.036010742, -0.012825012, 0.026855469, -0.052246094, -0.0129776, 0.0284729, 0.00025606155, -0.060394287, 0.027557373, 0.050933838, 0.04598999, -0.023132324, 0.042999268, -0.03677368, 0.0121536255, -0.030181885, 0.025894165, -0.025024414, 0.005718231, -0.01727295, 0.028060913, 0.057647705, -0.020858765, -0.0007157326, 0.011108398, 0.021316528, 0.012046814, -0.039794922, 0.01411438, 0.012542725, -0.003376007, -0.025497437, 0.020614624, 0.035308838, 0.015655518, -0.055755615, 0.010528564, -0.011680603, 0.019638062, -0.007358551, -0.017028809, 0.004798889, -0.005519867, 0.04058838, -0.021820068, 0.024002075, -0.00995636, -0.0070266724, -0.008125305, 0.02949524, -0.016815186, -0.001074791, -0.007843018, 0.0031051636, -0.038116455, 0.06222534, 0.016113281, 0.014801025, -0.03062439, -0.021987915, 0.022537231, -0.036468506, 0.008224487, 0.00024580956, 0.026107788, 0.018035889, 0.004714966, 0.009788513, -0.012672424, -0.014183044, -0.009735107, 0.019592285, 0.021377563, -0.004009247, -0.0067710876, -0.015014648, 0.024917603, 0.021209717, 0.022583008, 0.0070991516, -0.0057525635, -0.025939941, -0.026107788, -0.0008249283, -0.0018014908, -0.036102295, 0.0054397583, 0.020904541, -0.027435303, -0.04067993, -0.015533447, -0.037963867, -0.001411438, -0.005771637, -0.008575439, 0.0013580322, 0.0032997131, -0.008079529, -0.008590698, 0.013824463, -0.024658203, 0.01586914, -0.00040125847, -0.021408081, -0.051208496, 0.012374878, -0.009429932, -0.0099105835, 0.01725769, 0.023757935, -0.0093688965, 0.015335083, -0.004383087, 0.06994629, -0.038848877, -0.06451416, 0.038726807, 0.045318604, -0.03274536, -0.022140503, -0.017288208, -0.04812622, -0.03955078, 0.055480957, -0.013038635, -0.048187256, 0.0069122314, -0.0077323914, 0.011810303, 0.023956299, 0.004348755, -0.090270996, -0.017166138, -0.022872925, 0.012550354, 0.0035896301, -0.031402588, 0.0016584396, -0.00068187714, 0.022827148, 0.035888672, -0.022857666, 0.060394287, -0.033081055, 0.056732178, 0.04345703, 0.005340576, -0.024932861, -0.042938232, -0.009788513, 0.047668457, -0.022354126, -0.017532349, 0.01574707, 0.016937256, -0.0006875992, -0.03778076, 0.0052223206, -0.021133423, -0.04031372, -0.0018186569, -0.012214661, -0.020233154, 0.015022278, -0.07159424, 0.007736206, -0.033935547, 0.031341553, -0.00038218498, 0.024887085, 0.02015686, -0.003686905, 0.011894226, -0.021453857, -0.026260376, -0.0020866394, -0.0048675537, -0.037200928, 0.014198303, 0.07611084, -0.09197998, 0.058013916, 0.04788208, -0.03540039, 0.021224976, -0.0033855438, 0.005935669, 0.010345459, 0.016647339, -0.011604309, -0.003047943, -0.05618286, -0.021743774, 0.0095825195, 0.03555298, 0.024551392, -0.023147583, 0.028564453, -0.007335663, -0.039123535, 0.0006504059, -0.016860962, 0.007736206, -0.02078247, -0.023208618, 0.015258789, -0.028182983, 0.0066604614, -0.027618408, 0.0059013367, 0.015182495, 0.015113831, 0.008773804, -0.014015198, 0.041290283, 0.03375244, 0.015396118, -0.026885986, 0.0006070137, -0.019058228, -0.017822266, 0.027572632, -0.042297363, 0.0070381165, -0.042266846, 0.048339844, 0.010116577, 0.0152282715, -0.014732361, -0.0066604614, 0.018707275, -0.027862549, -0.017227173, 0.016235352, 0.015563965, 0.0056495667, -0.016799927, 0.028839111, -0.006839752, -0.058624268, 0.0067710876, -0.06506348, 0.03375244, 0.026550293, -0.012298584, 0.06512451, 0.040618896, -0.015838623, 0.004386902, 0.042236328, -0.02911377, -0.0158844, 0.026031494, -0.04034424, -0.016647339, -0.0035209656, 0.040161133, 0.02760315, 0.0041389465, -0.028717041, 0.0103302, 0.005340576, -0.00655365, -0.035491943, -0.0045394897, 0.012283325, -0.014778137, 0.021942139, -0.051757812, 0.013671875, -0.021255493, -0.05215454, 0.017578125, -0.03933716, -0.044128418, 0.0032844543, 0.0024929047, -0.020492554, -0.006427765, -0.027420044, -0.024719238, 0.014060974, 0.014183044, 0.007484436, -0.0033493042, 0.00025820732, 0.02947998, -0.06274414, 0.024291992, 0.035858154, 0.044158936, -0.005268097, -0.0625, 0.031982422, -0.028274536, -0.013412476, 0.08203125, 0.022125244, -0.105163574, -0.017807007, 0.029724121, 0.00440979, -0.05493164, -0.023284912, 0.009490967, -0.00881958, -0.021026611, -0.027954102, -0.04727173, 0.0023155212, 0.020858765, -0.03366089, -0.049865723, -0.042785645, 0.0037174225, 0.009475708, -0.018066406, -0.022781372, 0.03338623, -0.0056152344, 0.024551392, -0.050628662, 0.01461792, -0.066223145, 0.0072021484, 0.0099105835, -0.0024032593, -0.036224365, -0.018875122, -0.03149414, -0.009437561, 0.0435791, 0.008277893, -0.016830444, -0.0057411194, -0.021240234, 0.01777649, 0.029129028, 0.06021118, 0.008125305, 0.01525116, -0.046936035, 0.013961792, -0.087768555, 0.028671265, 0.062042236, -0.009849548, -0.058288574, -0.005680084, 0.049926758, 0.017425537, 0.006275177, -0.054016113, 0.03302002, 0.021621704, 0.008987427, -0.05432129, -0.06561279, 0.005218506, -0.05065918, 0.009208679, -0.002796173, -0.019821167, 0.014511108, 0.08709717, -0.004638672, -0.009979248, 0.013084412, 0.016738892, -0.015426636, 0.009307861, -0.02734375, 0.008666992, -0.026000977, -0.002620697, -0.016799927, 0.039489746, 0.020996094, -0.01637268, 0.012992859, -0.012023926, 0.0029277802, -0.0016298294, -0.0022907257, 0.01235199, -0.020553589, -0.027511597, -0.038208008, 0.047332764, -0.021652222, 0.012748718, -0.011695862, 0.012969971, 0.0032596588, -0.037597656, -0.01612854, -0.03439331, -0.019073486, -0.005748749, -0.014175415, 0.017364502, -0.046539307, 0.0054244995, 0.06225586, -9.685755e-05, -0.014839172, 0.0069770813, -0.025482178, -0.003168106, -0.0491333, -0.004096985, -0.011886597, 0.006374359, 0.019348145, -0.0062789917, -0.020187378, -0.02017212, 0.037109375, -0.05807495, -0.043823242, 0.02659607, 0.008651733, -0.016204834, 0.03137207, -0.0011711121, 0.0021743774, 0.01838684, -0.0069389343, 0.011520386, 0.0036907196, 0.0052719116, 0.008430481, 0.036834717, -0.007068634, -0.04360962, 0.080322266, -0.01158905, -0.03881836, -0.020202637, 0.017211914, 0.026351929, -0.024261475, 0.0029067993, -0.020004272, 0.0496521, -0.012008667, -0.015419006, 0.0016670227, 0.008415222, -0.020248413, -0.013832092, -0.009750366, -0.048583984, -0.022567749, 0.009941101, -0.04550171, -0.0026187897, 0.025680542, 0.000333786, 0.015701294, -0.0038928986, -0.032043457, -0.03314209, -0.016098022, -0.006893158, -0.03173828, 0.01259613, 0.016937256, 0.017425537, 0.01763916, -0.0103302, 0.015167236, 0.011444092, -0.03491211, -0.054473877, -0.05178833, 0.0035152435, -0.0209198, 0.04360962, 0.020248413, -0.05596924, 0.0075683594, 0.06982422, 0.01826477, 0.009590149, -0.040374756, 0.025024414, 0.005065918, 0.010093689, -0.034423828, -0.008773804, 0.05444336, -0.043670654, -0.043426514, -0.019973755, 0.029769897, -0.03552246, -0.066345215, 0.113342285, 0.056396484, 0.03225708, -0.0010671616, 0.010124207, -0.025177002, 0.01335907, -0.0046844482, -0.043884277, -0.04135132, -0.02268982, -0.033416748, 0.014167786, 0.009262085, -0.013015747, 0.030670166, -0.021987915, -0.010383606, -0.025268555, 0.007659912, -0.009262085, -0.033843994, 0.006942749, -0.0138168335, 0.0032176971, -0.021514893, 0.00028324127, -0.10272217, -0.07019043, 0.033966064, -0.01210022, -0.0027370453, 0.019302368, 0.008033752, -0.013916016, -0.008102417, 0.005367279, -0.014404297, 0.006385803, 0.0064697266, 0.032592773, -0.028945923, 0.07043457, -0.031173706, -0.0040664673, -0.049560547, 0.015388489, -0.021606445, 0.080444336, -0.06903076, -0.005470276, -0.031188965, 0.06854248, 0.0058937073, 0.026275635, 0.021331787, -0.023162842, -0.04547119, -0.006542206, -0.0019340515, -0.051361084, -0.020385742, -0.033081055, -0.009048462, -0.0010795593, -0.023269653, 0.035858154, -0.007801056, 0.010643005, -0.050720215, 0.025802612, -0.0035934448, -0.015052795, 0.06768799, 0.0040245056, 0.05456543, -0.030715942, 0.041931152, 0.0042877197, -0.016921997, -0.008857727, -0.0064888, 0.032073975, 0.014472961, 0.0005979538, -0.033935547, 0.01939392, 0.0137786865, -0.04736328, -0.015670776, 0.0053977966, 0.0046463013, -0.013328552, -0.10736084, -0.058563232, -0.00289917, -0.00031161308, -0.008651733, -0.009155273, 0.051971436, -0.0010557175, -0.009796143, 0.00017631054, -0.013679504, -0.037139893, 0.04006958, -0.021316528, -0.032989502, -0.015419006, -0.040496826, 0.04248047, 0.015716553, 0.011131287, 0.03918457, -0.0184021, 0.015289307, 0.0015792847, -0.038757324, -0.03527832, -0.06298828, -0.012588501, 0.038391113, -0.019927979, 0.018173218, -0.016998291, 0.02468872, 0.03543091, 0.00015616417, 0.045715332, -0.025527954, 0.07006836, 0.017913818, -0.0067596436, -0.024658203, -0.017120361, -0.021362305, -0.00067329407, -0.0038909912, 0.036193848, 0.0056877136, 0.03793335, 0.031097412, 0.017044067, 0.03817749, -0.035339355, 0.018569946, 0.018615723, 0.0029773712, 0.035614014, -0.032104492, -0.010124207, -0.034698486, -0.0154800415, -5.3226948e-05, -0.036102295, 0.0053253174, 0.037597656, -0.006614685, 0.009941101, -0.008674622, 0.007610321, -0.012634277, -0.004875183, -0.0077934265, 0.007926941, -0.020584106, -0.013290405, -0.004196167, -0.028625488, -0.013175964, -0.059173584, 0.010246277, -0.023452759, -0.011016846, -0.0128479, 0.00730896, 0.035003662, -0.032684326, 0.014793396, 0.0056915283, 0.03793335, -0.007850647, 0.017669678, -0.033416748, -0.049682617, -0.023452759, 0.05645752, -0.0970459, -0.087524414, -0.003967285, 0.016601562, 0.022918701, -0.00072813034, -0.008079529, 0.07513428, 0.0024433136, -0.009140015, -0.0041656494, -0.06604004, 0.010719299, 0.025405884, -0.011688232, 0.010520935, -0.0446167, 0.04284668, 0.027023315, 0.04348755, -0.00030708313, 0.042663574, -0.01448822, 0.050598145, 0.027755737, 0.0021476746, 0.007183075, -0.014022827, 0.03564453, 0.031677246, -0.018310547, 0.02015686, 0.003232956, -0.023330688, 0.026504517, 0.0076179504, 0.03427124, -0.005996704, -0.056030273, -0.021209717, -0.030563354, 0.013206482, 0.01133728, -0.019470215, -0.0005044937, -0.016830444, -0.019500732, -0.0096206665, 0.012641907, -0.00756073, -0.014472961, 0.01977539, 0.00554657, -0.029876709, 0.0009784698, -0.018310547, -0.028930664, -0.06488037, 0.12213135, -0.0037727356, -0.022399902, -0.0006685257, -0.036956787, -0.048614502, -0.0051231384, -0.06555176, 0.00015616417, -0.027908325, 0.029388428, 0.01423645, 0.041900635, 0.021850586, 0.020523071, -0.026260376, -0.023452759, 0.008613586, 0.030166626, 0.0017728806, -0.048858643, 0.03643799, 0.008796692, 0.04547119, -0.03149414, -0.028244019, -0.059265137, 0.029663086, 0.048065186, -0.015289307, 0.10101318, -0.018798828, 0.00374794, 0.036499023, -0.023529053, -0.049194336, 0.034118652, 0.10595703, 0.029174805, 0.018157959]}, "B07F8N2WQS": {"id": "B07F8N2WQS", "original": "Brand: Ruutcasy\nName: Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24''x13''x9''\nDescription: What\u2019s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

      Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

      Portable Camping Grill Details
      L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
      Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
      Weight:2.5Kg
      Material: Rolled and stainless steel

      Luxury Travel Grill
      Quickly assembled BBQ
      Lightweight fold design
      Ventilation holes and Drawer type dust box

      Travel Camping Barbecue Grill
      For picnics in the park
      For sociable hours during camping
      For the lunch break during hikes
      Great when you get the munchies at a festival
      \nFeatures: \u3010Brilliant Camping & Party BBQ Tool\u3011Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families.\n\u3010Lightweight & Portable\u3011Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up.\n\u3010Perfect For Outdoor\u3011This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It's perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group\n\u3010Best BBQ Grill For You\u3011The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact\n\u3010QUALITY GUARANTEE\u3011: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.\n", "metadata": {"Name": "Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24''x13''x9''", "Brand": "Ruutcasy", "Description": "What\u2019s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

      Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

      Portable Camping Grill Details
      L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
      Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
      Weight:2.5Kg
      Material: Rolled and stainless steel

      Luxury Travel Grill
      Quickly assembled BBQ
      Lightweight fold design
      Ventilation holes and Drawer type dust box

      Travel Camping Barbecue Grill
      For picnics in the park
      For sociable hours during camping
      For the lunch break during hikes
      Great when you get the munchies at a festival
      ", "Features": "\u3010Brilliant Camping & Party BBQ Tool\u3011Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families.\n\u3010Lightweight & Portable\u3011Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up.\n\u3010Perfect For Outdoor\u3011This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It's perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group\n\u3010Best BBQ Grill For You\u3011The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact\n\u3010QUALITY GUARANTEE\u3011: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012680054, 0.012550354, -0.009170532, 0.0016040802, 0.018295288, 0.00035429, 0.015686035, -0.019546509, -0.047851562, -0.01121521, -0.012191772, 0.03857422, -0.040893555, -0.032989502, 0.041015625, -0.053497314, 0.009010315, 0.019927979, 0.004837036, -0.031311035, -0.013931274, -0.02420044, -0.02508545, 0.09887695, 0.042633057, -0.008903503, -0.0309906, -0.012001038, 0.021957397, 0.015182495, 0.017684937, -0.0010652542, 0.020874023, 0.00756073, -0.0060691833, -0.0099487305, -0.0051231384, 0.0131073, 0.010169983, -0.00907135, 0.02458191, -0.021331787, -0.068725586, 0.019699097, -0.061798096, -0.015213013, 0.013076782, -0.0016317368, -0.006378174, -0.0004823208, 0.005104065, -0.021972656, 0.013755798, -0.04949951, -0.005710602, -0.0022354126, 0.009048462, -0.0045547485, 0.02520752, -0.023498535, -0.025436401, 0.0029468536, 0.029464722, 0.011482239, -0.04434204, -0.0184021, 0.041381836, -0.020553589, -0.033843994, -0.03652954, 0.054473877, 0.00819397, 0.005142212, -0.0005893707, -0.039978027, -0.068115234, 0.052001953, -0.047698975, -0.0070343018, 0.017364502, -0.0501709, -0.026794434, 0.004425049, -0.043518066, 0.0004968643, -0.004272461, -0.021194458, -0.004798889, -0.028656006, -0.006401062, -0.008102417, -0.01184845, -0.059326172, 0.05480957, 0.013313293, 0.019363403, -0.03125, -0.052337646, 0.052490234, 0.019592285, 0.024002075, -0.038726807, 0.01626587, -0.0033721924, -0.035888672, 0.029968262, 0.028121948, 0.035583496, -0.023269653, 0.008628845, -0.024047852, -0.06536865, 0.02015686, -0.016189575, 0.0066833496, -0.0028209686, -0.0075645447, 0.05621338, 0.007701874, 0.020019531, -0.04647827, -0.014083862, -0.008155823, 0.037200928, 0.04977417, 0.042388916, 0.02482605, 0.010604858, -0.07940674, 0.05731201, -0.027114868, 0.00894928, 0.054473877, 0.031433105, -0.019729614, -0.03778076, -0.005584717, -0.007297516, 0.0015659332, -0.00028681755, -0.033935547, 0.006248474, 0.061645508, -0.015014648, -0.020904541, -0.0026130676, 0.051727295, 0.041748047, -0.032470703, -0.05432129, 0.044799805, 0.02798462, 0.060028076, -0.007419586, -0.07220459, -0.036956787, -0.007007599, -0.037322998, -0.025802612, -0.074645996, -0.032409668, -0.014511108, 0.0368042, -0.026245117, -0.03805542, 0.021224976, 0.00078344345, -0.004207611, 0.02017212, 0.029876709, 0.0007839203, -0.0061073303, -0.0107040405, -0.0039138794, -0.00642395, 0.0035953522, 0.018859863, 0.043060303, 0.068603516, -0.088134766, -0.06707764, -0.052459717, 0.121398926, -0.04849243, -0.008239746, 0.0069351196, 0.00687027, -0.006542206, 0.0131073, 0.0030975342, 0.013877869, 0.030578613, -0.012001038, -0.009941101, -0.011108398, 0.053588867, -0.051940918, 0.04385376, -0.02381897, -0.030303955, -0.0024681091, 0.009628296, 0.0037784576, -0.010620117, 0.008674622, -0.002714157, 0.0007472038, 0.03717041, 0.032928467, 0.044647217, -0.00381279, 0.006088257, -0.011009216, -0.037200928, -0.029815674, -0.03050232, -0.017959595, 0.037597656, 0.012611389, 0.019439697, 0.011558533, -0.010360718, 0.008613586, -0.007865906, 0.040161133, -0.048980713, 0.0030708313, -0.039916992, 0.03665161, -0.010360718, -0.011009216, 0.03942871, 0.042388916, 0.044952393, -0.005432129, 0.04598999, 0.057769775, 0.047698975, -0.042022705, -0.011306763, 0.023254395, 0.015205383, -0.05368042, -0.023773193, 0.0670166, -0.054840088, -0.02947998, 0.026062012, -0.0132751465, 0.008911133, 0.026641846, -0.0030727386, 0.012138367, 0.00422287, -0.004878998, 0.015541077, -0.03805542, 0.02432251, -0.03225708, 0.028503418, -0.04296875, -0.019729614, 0.0501709, -0.029525757, 0.03756714, -0.037384033, 0.019042969, -0.008361816, -0.02911377, -0.0010375977, 0.02168274, -0.0014390945, 0.003419876, -0.0030117035, 0.045837402, -0.038848877, -0.024795532, 0.004459381, 0.019134521, -0.011695862, 0.016235352, 0.012489319, 0.042785645, 0.004142761, 0.017684937, -0.022903442, 0.021850586, 0.016571045, -0.06530762, -0.055847168, -0.011299133, 0.005680084, -0.027938843, -0.031402588, 0.0095825195, -0.023742676, 0.05154419, 0.059509277, 0.0012845993, -0.009613037, -0.035705566, 0.0038604736, -0.054840088, 0.014602661, -0.03515625, 0.0010061264, -0.032958984, -0.01739502, -0.019882202, -0.09075928, 0.052490234, 0.035003662, 0.040100098, -0.025131226, 0.06530762, 0.031188965, -0.0015411377, 0.05618286, 0.054992676, 0.0552063, -0.061523438, -0.060394287, -0.04562378, 0.0022945404, -0.02798462, 0.043640137, 0.005443573, 0.006046295, 0.012275696, 0.026107788, -0.0010032654, 0.03201294, 0.0019721985, 0.006832123, -0.015716553, -0.017288208, 0.0045547485, 0.0063285828, -0.0103302, -0.04373169, -0.0047721863, -0.025100708, 0.004398346, -7.0393085e-05, -0.013122559, -0.026260376, 0.010116577, 0.01121521, 0.025039673, 0.012817383, 0.008056641, -0.01977539, 0.031402588, -0.028656006, 0.012260437, 0.028442383, -0.04095459, -0.051849365, -0.016342163, -0.09063721, -0.025466919, -0.016998291, -0.06561279, -0.011871338, 0.047851562, -0.004711151, -0.006149292, -0.025924683, 0.0056152344, 0.0020503998, 0.026565552, 0.009857178, -0.029708862, -0.024871826, -0.009674072, -0.019607544, 0.018951416, -0.04135132, -0.020446777, -0.011627197, -0.032348633, 0.014801025, -0.0158844, 0.051086426, 0.02999878, -0.00061416626, 0.031463623, 0.07092285, 0.0119018555, -0.025604248, 0.0013341904, 0.050994873, -0.076538086, -0.0021915436, 0.026550293, 0.03201294, 0.009147644, -0.04071045, -0.055480957, -0.030059814, -0.080078125, 0.014823914, -0.007904053, -0.029037476, 0.003490448, -0.043792725, -0.010177612, -0.056365967, 0.0028591156, 0.019607544, -0.02142334, 0.017593384, -0.04864502, 0.029220581, -0.006755829, -0.031951904, 0.05130005, -0.009223938, 0.068237305, -0.06262207, -0.023361206, -0.017715454, 0.0103302, 0.01914978, -0.0211792, -0.013916016, -0.009628296, 0.0019054413, -0.0335083, 0.05291748, -0.013282776, -0.0063095093, 0.013053894, 0.024963379, -0.062316895, -0.023590088, -0.014533997, -0.0395813, 0.051635742, -0.06958008, -0.01953125, 0.009300232, -0.016586304, 0.026489258, 0.030044556, -0.058654785, -0.004371643, -0.06222534, -0.012535095, -0.03213501, -0.010093689, 0.02784729, 0.029815674, 0.028045654, 0.011795044, -0.013252258, 0.018341064, 0.024932861, 0.018920898, -0.03060913, -0.05508423, -0.037506104, 0.059448242, -0.02357483, 0.024002075, -0.04525757, 0.026229858, -0.027313232, -0.003332138, 0.034332275, -0.024383545, 0.0395813, 0.057647705, 0.012619019, 0.007041931, -0.023223877, 0.006755829, 0.024749756, -0.06274414, -0.041503906, -0.05529785, 0.0010948181, -0.089782715, 0.09692383, 0.038024902, -0.023742676, 0.08862305, 0.05718994, -0.029693604, 0.042633057, 0.026870728, 0.0071525574, -0.005706787, 0.057678223, -0.033477783, 0.0073394775, 0.017547607, -0.047180176, 0.020904541, 0.010238647, -0.06439209, 0.02003479, -0.00907135, -0.05038452, -0.022094727, -0.022247314, -0.00020170212, -0.028869629, 0.0016441345, 0.018035889, -0.027679443, -0.018676758, 0.032226562, 0.024932861, -0.029769897, 0.03503418, -0.015060425, -0.006542206, -0.0056915283, 0.0028152466, 0.020690918, 0.05883789, 0.0060577393, 0.021331787, -0.0071487427, -0.008674622, -0.012451172, 0.0069122314, -0.0099487305, -0.030181885, 0.01727295, 0.00856781, -0.016098022, 0.019638062, 0.010292053, 0.02381897, -0.034484863, 0.01109314, 0.012817383, -0.035491943, 0.016311646, 0.045410156, -0.013175964, 0.011817932, 0.016113281, -0.08190918, -0.030471802, -0.025024414, -0.029525757, 0.005458832, -0.023208618, -0.03704834, -0.056518555, -0.018951416, -0.0010280609, -0.036315918, -0.03640747, 0.02293396, -0.0011434555, -0.05734253, -0.03970337, 0.0101623535, 0.018051147, -0.031051636, 0.056732178, 0.021377563, 0.04586792, 0.017608643, 0.013793945, -0.01473999, -0.033416748, 0.005405426, 0.047576904, -0.03189087, 0.022567749, -0.03616333, -0.023269653, 0.0050201416, 0.033111572, 0.070495605, -0.034576416, 0.023376465, -0.02557373, 0.0049057007, -0.039215088, -0.017959595, 0.043151855, -0.02571106, -0.0068359375, -0.025787354, 0.026443481, -0.024124146, -0.0045814514, -0.06100464, 0.01398468, 0.0015907288, 0.029846191, 0.0020866394, -0.008277893, 0.018539429, 0.00043725967, 0.017074585, 0.00944519, -0.014816284, 0.027694702, 0.029144287, 0.028182983, 0.0073051453, -0.022109985, -0.028945923, -0.0034923553, 0.035736084, -0.03074646, -0.0050354004, -0.041778564, 0.0003736019, -0.043823242, 0.099243164, 0.07373047, -0.016983032, -0.011245728, 0.009681702, -0.035339355, -0.07196045, 0.034576416, -0.038757324, -0.017944336, -0.013145447, -0.006324768, -0.0070228577, -0.03262329, 0.001367569, -0.0065994263, -0.020309448, -0.0005283356, -0.00096178055, 0.005508423, -0.012580872, 0.0073776245, 0.041229248, 0.022583008, 0.015396118, 0.0072135925, -0.02609253, -0.011665344, -0.03781128, -0.01876831, -0.00029969215, -0.00018322468, -0.028930664, 0.007888794, 0.0019435883, -0.072753906, 0.054016113, 0.056915283, 0.007205963, -0.022277832, 0.02809143, 0.00856781, 0.004753113, -0.012611389, 0.06365967, -0.005050659, -0.0007534027, -0.024536133, -0.044128418, 0.025268555, 0.020889282, -0.044128418, 0.020645142, 0.0132751465, -0.030258179, 0.05303955, -0.011871338, -0.002363205, -0.037261963, 0.014587402, -0.0064888, -0.01914978, -0.026031494, -0.0008740425, 0.02027893, 0.049591064, 0.011177063, -0.0473938, 0.019241333, -0.008705139, 0.008720398, 0.035491943, 0.038208008, -0.001206398, -0.0023002625, 0.046081543, 0.0025634766, -0.040740967, 0.031173706, -0.013999939, -0.034576416, 0.011657715, -0.043548584, -0.013038635, 0.0064315796, -0.007904053, -0.016784668, -0.009941101, 0.014587402, -0.05078125, 0.011665344, -0.049041748, -0.004283905, -0.017333984, 0.04727173, -0.014953613, 0.016418457, -0.046813965, -0.04522705, -0.06124878, 0.03378296, 0.007820129, 0.02961731, -0.0129470825, -0.012008667, 0.021316528, -0.016677856, 0.012535095, 0.001868248, -0.002614975, 0.010879517, -0.0071983337, 0.006412506, -0.062805176, 0.00944519, 0.06652832, -0.05871582, -0.053100586, -0.012016296, 0.054473877, -0.006061554, 0.024612427, 0.040863037, -0.040008545, 0.016784668, 0.025939941, 0.0034484863, -0.01763916, -0.021377563, -0.0077400208, -0.038330078, 0.011070251, -0.02746582, 0.026947021, 0.016616821, 0.02178955, -0.008163452, 0.050567627, -0.021148682, -0.018722534, -0.044891357, 0.0074653625, -0.013595581, -0.037200928, 0.023025513, -0.016952515, -0.01889038, -0.009223938, -0.010879517, -0.0670166, -0.0008239746, 0.047058105, 0.03753662, 0.025054932, -0.029312134, 0.032104492, 0.05429077, -0.034240723, 0.07727051, -0.0048217773, -0.025421143, 0.0054130554, 0.0036945343, 0.021270752, -0.008666992, 0.014915466, 0.011787415, 0.005191803, -0.011161804, 0.064453125, -0.03555298, 0.03201294, 0.028259277, 0.064697266, 0.0007901192, 0.028457642, 0.015014648, 0.034973145, -0.0070266724, -0.026184082, 0.009811401, 0.0546875, -0.025512695, -0.0020198822, -0.025527954, 0.028366089, 0.013061523, 0.010902405, 0.00724411, 0.05267334, 0.00919342, -0.0035953522, 0.0012722015, 0.01373291, -0.0134887695, 0.019088745, -0.012741089, -0.01890564, 0.009941101, -0.025177002, -0.0002503395, -0.036315918, -0.011657715, 0.031555176, 0.035949707, -0.007888794, 0.03250122, -0.019042969, 0.022827148, 0.038726807, -0.057556152, -0.017456055, -0.016540527, 0.022262573, -0.013717651, -0.048828125, -0.032592773, -0.021865845, 0.048736572, 0.011192322, 0.083740234, -0.042236328, 0.027679443, -0.030715942, 0.015365601, -0.039489746, -0.011833191, -0.016067505, 0.023132324, -0.007129669, 0.0030937195, -0.0418396, -0.0121154785, 0.031829834, -0.025436401, -0.037078857, 0.00046396255, 0.030471802, 0.0017843246, -0.013710022, -0.029403687, -0.035583496, 0.04916382, 0.045440674, -0.032196045, 0.008132935, -0.016082764, -0.017471313, 0.039520264, -0.060791016, 0.03894043, 0.0037326813, 0.04425049, 0.020568848, 0.07928467, 0.0032176971, -0.036376953, -0.035217285, 0.030471802, -0.019226074, 0.028671265, -0.02758789, 0.012397766, -0.008285522, 0.016799927, 0.031829834, -0.027328491, 0.017547607, 0.021911621, -0.0017080307, -0.0069503784, 0.057556152, -0.01777649, -0.011375427, 0.0067825317, -0.012626648, 0.018814087, -0.0077438354, 0.003200531, -0.021713257, 0.0024776459, -0.0033988953, 0.0096206665, -0.01398468, -0.0073890686, 0.00390625, -0.016174316, -0.009857178, -0.015274048, -0.046173096, -0.0027179718, 0.007888794, -0.03475952, 0.022491455, 0.025619507, -0.026626587, -0.013916016, 0.004295349, 0.01789856, -0.03729248, 0.015655518, -0.00066041946, 0.03353882, 0.01550293, 0.0647583, -0.024368286, -0.05117798, -0.070373535, 0.0017700195, -0.027114868, -0.0127334595, -0.0028438568, 0.014854431, 0.03894043, 0.0049591064, 0.0039138794, 0.07763672, 0.0046691895, -0.0107421875, -0.011955261, -0.012054443, -0.05419922, 0.06768799, 0.03250122, -0.035980225, 0.03567505, 0.050872803, 0.0051574707, 0.049743652, 0.021133423, 0.008369446, -0.036895752, -0.027450562, -0.072509766, 0.0012750626, -0.02619934, 0.009925842, 0.00207901, 0.0023078918, -0.03149414, 0.028274536, 0.007133484, 0.021514893, 0.0141067505, 0.005382538, -0.011932373, -0.016586304, 0.022583008, 0.00818634, 0.00069761276, 0.0031833649, 0.027862549, -0.0051841736, -0.0049209595, 0.011650085, -0.002450943, -0.0025177002, 0.010635376, -0.0007238388, 0.0107040405, -0.005290985, 0.022079468, 0.0050697327, -0.004711151, 0.014930725, -0.046569824, -0.013198853, 0.015312195, 0.028305054, -0.015235901, 0.014221191, 0.0068092346, -0.008796692, 0.031158447, 0.046966553, -0.011917114, -0.034332275, 0.00040602684, 0.025802612, -0.0074653625, -0.013259888, -0.0030403137, -0.0178833, -0.017288208, -0.012428284, 0.0062675476, -0.034118652, 0.0013103485, 0.040100098, 0.008552551, 0.04574585, -0.00021827221, -0.047790527, -0.035827637, 0.02949524, -0.013519287, -0.013504028, 0.005962372, -0.021774292, 0.005306244, -0.0015029907, 0.018432617, -0.043762207, 0.021270752, 0.017654419, 0.012962341, 0.032836914]}, "B07RKYMBCN": {"id": "B07RKYMBCN", "original": "Brand: Kaluns\nName: Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories\nDescription: \"Easily Switch Wood Chips

      The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

      Premium Features

      Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

      Great Gift Idea

      Surprise your Friends and Family with a Kaluns\u00ae smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

      Warning:

      Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

      Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns\u2122 You made the right choice, don't hesitate, Click the 'Add to Cart' Button Now!

      \"\nFeatures: Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey\nDeluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust\u00a0 and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast.\nConvenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard.\nA New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.\n", "metadata": {"Name": "Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories", "Brand": "Kaluns", "Description": "\"Easily Switch Wood Chips

      The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

      Premium Features

      Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

      Great Gift Idea

      Surprise your Friends and Family with a Kaluns\u00ae smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

      Warning:

      Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

      Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns\u2122 You made the right choice, don't hesitate, Click the 'Add to Cart' Button Now!

      \"", "Features": "Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey\nDeluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust\u00a0 and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast.\nConvenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard.\nA New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021469116, 0.010429382, -0.011398315, -0.018569946, 0.00541687, -0.002588272, -0.01184082, -0.026138306, 0.002161026, 0.022369385, 0.013420105, 0.007446289, -0.0071525574, -0.031341553, -0.020446777, -0.004184723, 0.010116577, -0.00365448, 0.025741577, -0.0076446533, 0.014167786, -0.015068054, 0.02178955, 0.03643799, 0.06585693, -0.026000977, -0.017074585, 0.0067710876, 0.053863525, 0.029464722, 0.03540039, -0.045837402, 0.029190063, 0.044952393, -0.049041748, -0.013572693, -0.023101807, 0.014831543, -0.010276794, 0.031829834, -0.006275177, 0.025024414, -0.011222839, 0.022766113, -0.03378296, -0.023117065, -0.0030555725, -0.0076026917, -0.0040893555, -0.029830933, 0.014503479, 0.015174866, 0.025634766, -0.020812988, -0.008407593, 0.027572632, -0.041381836, 0.043426514, 0.022140503, 0.010604858, 0.0015764236, 0.020874023, -0.00054454803, 0.016784668, 0.011779785, -0.027175903, 0.10217285, -0.0025520325, -0.029876709, 0.017654419, 0.07122803, 0.017303467, 0.060638428, -0.039886475, 0.0044441223, -0.0069122314, -0.02696228, 0.0008649826, 0.032165527, -0.04611206, 0.013397217, -0.0008096695, 0.02279663, -0.039367676, 0.0039596558, -0.048583984, -0.004058838, 0.011749268, 0.010520935, 0.0024490356, 0.013877869, -0.03414917, -0.030960083, 0.07977295, 0.031921387, -0.028167725, -0.021881104, -0.04107666, 0.015777588, 0.026428223, -0.009933472, -0.01739502, 0.011520386, -0.013031006, -0.008628845, 0.085998535, 0.021377563, 0.0104522705, -0.011024475, -0.012641907, 0.008583069, -0.06225586, -0.0048217773, -0.056152344, -0.021865845, 0.02482605, 0.0056381226, -0.021484375, 0.03817749, -0.017089844, -0.03640747, -0.030166626, 0.015853882, -0.0057258606, 0.05822754, 0.038238525, 0.00018155575, 0.0056648254, -0.068725586, 0.038116455, -0.03643799, -0.017059326, 0.060394287, 0.06512451, 0.02885437, -0.04055786, 0.028961182, 0.002046585, 0.023147583, 0.008644104, 0.03604126, 0.001288414, 0.0335083, 0.034729004, -0.04345703, 0.01008606, 0.0446167, 0.014892578, -0.04864502, -0.049621582, -0.018676758, 0.044555664, 0.009307861, 0.0042495728, -0.024887085, -0.026306152, -0.022949219, -0.031402588, 0.020721436, -0.034820557, -0.008857727, -0.028961182, -0.005012512, 0.031707764, -0.01373291, 0.041778564, 0.05831909, 0.0053520203, 0.010765076, 0.015014648, -0.023040771, -0.012481689, -0.050354004, 0.008651733, 0.027282715, 0.03173828, -0.01713562, 0.06591797, 0.08673096, -0.099365234, -0.06994629, -0.046051025, 0.17993164, -0.06695557, -0.009513855, 0.026504517, 0.00078964233, -0.0082092285, -0.009483337, -0.0032100677, -0.0001257658, 0.045135498, -0.042510986, 0.0027370453, 0.0025806427, 0.070739746, -0.042388916, 0.029434204, -0.016586304, -0.04876709, -0.002954483, 0.0027694702, -0.007133484, -0.030471802, -0.007827759, -0.05493164, 0.0013723373, 0.030776978, 0.045166016, 0.05831909, 0.0028438568, 0.020431519, 0.0031547546, -0.074035645, -0.041534424, -0.0022010803, -0.009307861, 0.06488037, 0.0047187805, 0.022079468, -0.003583908, -0.042114258, 0.025177002, 0.016983032, 0.024902344, -0.013092041, -0.015945435, -0.009361267, 0.00036883354, -0.0017185211, -0.015594482, 0.041992188, 0.028640747, 0.024749756, -0.019760132, 0.045196533, 0.07684326, 0.06591797, -0.03265381, -0.034362793, -0.0045051575, -0.0059509277, -0.036987305, 0.005672455, -0.011802673, -0.012962341, 0.023590088, 0.0016546249, -0.033233643, -0.04534912, 0.043029785, -0.011383057, 0.044311523, -0.03012085, 0.01524353, 0.021621704, -0.023483276, 0.00029826164, -0.019836426, 0.04437256, -0.018966675, 0.04888916, 0.060699463, -0.009269714, 0.039276123, -0.035736084, 0.016693115, 0.0003669262, -0.001912117, -0.018615723, 0.005001068, -0.03363037, -0.0028800964, 0.041809082, 0.03729248, -0.0064888, -0.0385437, -0.008049011, 0.0028820038, 0.010726929, 0.009841919, 0.033416748, 0.029464722, -0.012664795, 0.025680542, 0.014282227, -0.0027885437, -0.01373291, -0.0791626, -0.054718018, -0.005176544, -0.0013008118, -0.044952393, -0.0055236816, 0.01222229, -0.022476196, 0.025848389, 0.033813477, 0.002002716, 0.0045051575, 0.009033203, 0.037963867, -0.035308838, 0.027542114, 0.0096206665, 0.019256592, -0.00016975403, 0.047546387, 0.035705566, -0.032470703, 0.02557373, 0.043548584, 0.04156494, -0.016052246, 0.067993164, 0.022949219, -0.009559631, 0.062347412, 0.023345947, 0.014045715, -0.029281616, -0.026306152, 0.008583069, 0.0019264221, 0.00032639503, 0.0007195473, 0.015022278, 0.008056641, -0.022613525, 0.01576233, 0.029937744, 0.010192871, -0.002811432, -0.015037537, 0.0025024414, 0.011817932, -0.000497818, 0.014839172, -0.0052871704, -0.05404663, -0.000705719, -0.025131226, -0.0018033981, -0.003572464, -0.0062332153, -0.012908936, 0.006374359, -0.005367279, 0.013435364, 0.014724731, -0.007701874, 0.0016260147, 0.0007596016, 0.047973633, -0.003900528, -0.0055885315, 0.008834839, -0.013664246, -0.021484375, -0.057495117, 0.0014410019, 0.012130737, -0.03375244, -0.05505371, 0.021560669, -0.029403687, -0.023498535, -0.02229309, -0.0009498596, 0.026672363, 0.012817383, -0.0041770935, 0.015670776, -0.013542175, -0.013664246, -0.015731812, 0.045776367, -0.0077323914, -0.05718994, -0.0007100105, 0.026687622, 0.047790527, -0.03387451, 0.04055786, 0.06390381, -0.011558533, -0.023712158, 0.05899048, -0.0006875992, -0.003168106, -0.01826477, 0.015686035, -0.07421875, -0.013008118, -0.005214691, -0.0082473755, 0.070617676, -0.033477783, -0.016555786, -0.047180176, -0.068603516, 0.004009247, -0.00756073, -0.039733887, 0.0015153885, -0.064331055, -0.04788208, -0.0357666, -0.0002412796, 0.041809082, -0.024810791, 0.02330017, -0.018081665, 0.021652222, 0.011741638, -0.023895264, 0.008338928, -0.019241333, 0.0030212402, -0.008956909, 0.0137786865, -0.025939941, 0.021270752, 0.037963867, -0.041656494, 0.0178833, -0.0032024384, 0.01763916, 0.012489319, 0.012763977, -0.003282547, -0.027053833, -0.014045715, -0.0073280334, -0.013053894, 0.033294678, 0.0003399849, 0.022979736, 0.015449524, -0.013748169, -0.022781372, -0.012619019, -0.07312012, 0.022659302, -0.009010315, -0.050048828, -0.040252686, -0.06008911, -0.055908203, 0.017196655, -0.018310547, 0.017059326, -0.044311523, 0.026107788, -0.009544373, 0.056732178, 0.0010738373, 0.03466797, 0.018112183, -0.008605957, -0.0059127808, -0.031280518, 0.029800415, 0.010818481, -0.011383057, -0.054901123, 0.05001831, -0.020141602, -0.017654419, -0.0027923584, -0.044830322, 0.07611084, 0.0019550323, 0.003993988, -0.01878357, -0.042144775, 0.045776367, 0.052337646, -0.0067329407, -0.040924072, -0.05392456, 0.0031871796, -0.06524658, 0.09466553, 0.059020996, -0.0132751465, 0.08874512, 0.08154297, -0.010437012, -0.0033035278, 0.012077332, 0.030471802, 0.008834839, 0.03933716, 0.023742676, -0.04522705, 0.0065231323, 0.008407593, 0.053619385, 0.025512695, -0.016983032, 0.02331543, -0.0073013306, -0.059051514, 0.015525818, 0.024368286, 0.036346436, 0.029006958, -0.0074539185, -0.022247314, 0.045776367, -0.029266357, -0.010765076, -0.00409317, -0.025268555, -0.00844574, 0.0046691895, 0.018249512, -0.03543091, -0.024414062, -0.004322052, 0.021865845, 0.017486572, 0.035736084, -0.0042304993, -0.011695862, -0.015525818, 0.009689331, -0.023544312, -0.00089883804, 0.05404663, 0.02748108, 0.06854248, 0.0034008026, -0.03579712, 0.0031318665, -0.00737381, -0.035369873, -0.019577026, -0.0043029785, 0.023117065, 0.03668213, -0.028289795, 0.012161255, -0.00969696, -0.034088135, 0.007255554, 0.013549805, 0.0074310303, -0.021148682, -0.0045318604, 0.009376526, -0.069885254, -0.02758789, 0.024749756, -0.08013916, -0.042633057, 0.0013370514, -0.015289307, -0.007347107, -0.035858154, -0.01171875, -0.01259613, 0.022018433, -0.035583496, 0.012908936, 0.028335571, 0.013504028, 0.0062065125, -0.02130127, -0.04763794, -0.015602112, 0.06072998, 0.0007352829, 0.009300232, -0.017623901, -0.047180176, -0.017654419, 0.028137207, 0.06707764, -0.003250122, 0.0041160583, -0.05029297, -0.09039307, -0.028671265, 0.000749588, 0.02217102, -0.006626129, -0.014839172, -0.020629883, 0.02444458, -0.00894165, -0.0004351139, -0.027191162, -0.016937256, -0.0044517517, 0.030929565, 0.03048706, 0.020233154, 0.0069465637, -0.031829834, 0.01876831, -0.0021743774, -0.021636963, 0.029785156, 0.042755127, -0.0028419495, -0.010299683, -0.027832031, -0.01701355, -0.0043640137, 0.037078857, -0.005420685, -0.01763916, -0.016311646, 0.009063721, -0.06036377, 0.08911133, 0.057159424, -0.023223877, -0.0056915283, 0.0026626587, -0.042297363, -0.028259277, -0.022491455, -0.009017944, 0.041381836, 0.0066833496, -0.035247803, -0.00075244904, -0.021560669, 0.0037288666, -0.0061416626, 0.021133423, 0.0440979, -0.040008545, -0.0066947937, -0.0003373623, 0.015808105, 0.034698486, 0.015541077, 0.022155762, 0.057495117, 0.006427765, -0.04901123, -0.0047836304, 0.021972656, -0.015396118, -0.0284729, -0.023910522, 0.026000977, -0.012397766, -0.036987305, -0.021652222, 0.028625488, -0.031921387, 0.0129852295, 0.026428223, 0.009056091, -0.008399963, -0.0035190582, 0.027572632, -0.010673523, -0.017440796, 0.02079773, -0.0007185936, -0.011184692, 0.002128601, -0.025115967, 0.01751709, -0.02218628, -0.052124023, 0.034088135, -0.027740479, 0.0037193298, 0.0028915405, 0.047454834, 0.012313843, 0.02168274, -0.07293701, -0.00012612343, -0.018295288, 0.023025513, 0.0016775131, -0.011260986, 0.051879883, -0.022247314, -0.02571106, 0.04876709, 0.02407837, 0.010955811, -0.003921509, 0.03845215, -0.046539307, -0.029266357, 0.03768921, -0.049224854, 0.03074646, 0.0062065125, 0.020217896, 0.017044067, 0.012359619, -0.017425537, -0.030670166, 0.0040016174, -0.0031490326, 0.010887146, -0.03363037, -0.023712158, -0.006034851, -0.035949707, 0.04852295, -0.043121338, -7.1525574e-05, 0.0018520355, -0.037597656, -0.062164307, -0.0057678223, -0.033111572, 0.019073486, -0.023895264, 0.06677246, 0.023757935, -0.022888184, 0.016845703, 0.036102295, -0.08093262, 0.011657715, 0.026489258, 0.036865234, -0.031402588, -0.01637268, 0.039489746, -0.037841797, -0.023498535, -0.026184082, 0.029205322, -0.023895264, -0.0023479462, 0.012893677, 0.0033607483, 0.0074768066, 0.026947021, -0.005443573, -0.013839722, 0.020370483, -0.0050201416, -0.035888672, 0.013320923, -0.030288696, 0.008811951, 0.021987915, 0.0059814453, 0.009918213, 0.045715332, -0.0060539246, -0.056274414, -0.033966064, -0.009208679, 0.0028476715, -0.061462402, 0.013336182, 0.015258789, 0.00018286705, 0.037994385, 0.0041656494, -0.072631836, 0.016647339, 0.05831909, 0.01676941, 0.024612427, -0.022109985, 0.035491943, 0.041778564, -0.033355713, 0.06958008, -0.0014753342, -0.022247314, -0.003107071, 0.03050232, 0.012054443, 0.03857422, -0.053894043, -0.0031642914, -0.0033569336, 0.012832642, 0.009117126, -0.023406982, 0.014816284, 0.000998497, -0.02482605, 0.010147095, 0.029891968, -0.0063438416, 0.0074386597, 0.013809204, 0.019866943, 0.005092621, 0.024719238, -0.017501831, -0.046722412, 0.0031929016, 0.0024967194, 0.07287598, 0.006504059, 0.02230835, 0.033569336, 0.04550171, -0.036743164, 0.021377563, -0.004295349, -0.006729126, 0.060913086, -0.030639648, 0.01033783, -0.025466919, 0.03137207, -0.0079422, -0.018493652, 0.034179688, -0.007987976, 0.015487671, 0.022583008, 0.028961182, 0.011070251, 0.020614624, 0.050964355, -0.06555176, 0.009277344, 0.025024414, 0.015464783, 0.010910034, -0.060760498, 5.364418e-05, 0.017944336, -0.02658081, -0.024627686, -0.0047073364, 0.05178833, -0.00592041, 0.02494812, -0.021133423, 0.008964539, -0.017944336, 0.03717041, 0.0020198822, 0.002708435, -0.005207062, -0.03869629, 0.04574585, 0.023117065, -0.016357422, 0.024795532, -0.0032138824, 0.00920105, 0.0043258667, 0.0028457642, -0.016098022, -0.039367676, 0.015930176, 0.020843506, 0.015319824, 0.039123535, 0.015159607, 0.033843994, 0.023803711, 0.0031147003, 0.03366089, 0.0013694763, 0.032440186, 0.03225708, 0.01285553, -0.027755737, -0.023529053, -0.016174316, -0.025512695, 0.025222778, 0.0031089783, -0.00016891956, 0.068725586, 0.0007209778, 0.022537231, 0.036254883, -0.013832092, 0.016220093, 0.04269409, -0.015670776, -0.054016113, -0.06652832, -0.018630981, -0.03942871, 0.0044555664, 0.013015747, -0.007724762, -0.033233643, 0.048217773, -0.01927185, 0.023864746, -0.0033931732, -0.04437256, -0.0066375732, -0.0023651123, 0.059814453, -0.024429321, 0.020553589, -0.034973145, -0.005634308, -0.029388428, -0.017669678, -0.057403564, 0.03326416, -0.026535034, -0.014640808, -0.021530151, -0.010131836, 0.015640259, -0.027709961, 0.034729004, 0.011260986, 0.05697632, 0.00077962875, 0.027114868, -0.011779785, -0.03894043, -0.058685303, 0.031341553, -0.088256836, -0.014328003, -0.034057617, 0.015213013, -0.011512756, -0.02758789, 0.025421143, 0.021484375, 0.02218628, -0.006023407, -0.041290283, -0.010185242, -0.021102905, 0.044311523, -0.009132385, -0.012458801, -0.008979797, 0.023727417, -0.007030487, 0.0947876, -0.0049743652, -0.019317627, -0.0035743713, -0.015151978, -0.045532227, 0.02557373, 0.0035209656, -0.028747559, 0.033294678, 0.004535675, -0.039764404, 0.026748657, 0.0047912598, -0.00070142746, 0.032348633, 0.0020923615, -0.009635925, -0.029815674, -0.032714844, 0.0001552105, 0.00712204, 0.017868042, 0.041992188, 0.03137207, 0.003753662, 0.03744507, -0.031402588, 0.03643799, 0.028823853, -0.031433105, -0.015853882, 0.00459671, -0.019454956, -0.03857422, 0.005191803, -0.017669678, -0.009963989, -0.044128418, 0.016098022, 0.044647217, -0.044158936, -0.010803223, -0.016616821, -0.003835678, 0.009803772, -0.015098572, 0.007881165, -0.018798828, -0.018661499, 0.03164673, 7.331371e-05, 0.038238525, -0.038879395, -0.043548584, -0.005466461, 0.018432617, 0.02418518, 0.018569946, -0.060028076, 0.04876709, -0.005191803, 0.043548584, -0.0020656586, -0.09063721, -0.062927246, 0.046081543, 0.017410278, -0.028457642, 0.028961182, 0.00055742264, 0.025009155, 0.015670776, 0.030639648, -0.027862549, 0.039276123, 0.06756592, 0.005908966, 0.046417236]}, "B00FLRBXEO": {"id": "B00FLRBXEO", "original": "Brand: Weber\nName: Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart\nDescription: \nFeatures: Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut\nGenuine Weber part for Genesis 300-series gas grills\nRegulates liquid propane flow for consistent, uniform heat distribution\n2-year limited warranty\n", "metadata": {"Name": "Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart", "Brand": "Weber", "Description": "", "Features": "Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut\nGenuine Weber part for Genesis 300-series gas grills\nRegulates liquid propane flow for consistent, uniform heat distribution\n2-year limited warranty", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.031829834, -0.034606934, -0.049560547, -0.0050811768, -0.04675293, -0.0070266724, -0.027770996, 0.033447266, -0.019927979, 0.06274414, -0.0010375977, 0.027252197, 0.046875, -0.016616821, -0.00062942505, 0.0056915283, 0.034057617, 0.023025513, 0.01979065, -0.008743286, -0.018478394, 0.031677246, -0.014015198, 0.07763672, 0.036132812, -0.054901123, 0.09222412, -0.018630981, 0.044311523, -0.0068359375, 0.037628174, -0.018356323, 0.045654297, 0.03213501, -0.07885742, -0.016067505, -0.004852295, -0.0063552856, -0.023956299, 0.023590088, 0.026947021, -0.01902771, -0.03363037, 0.02218628, -0.03845215, -0.03463745, 0.028411865, -0.014694214, 0.012382507, 0.08099365, 0.0028858185, 0.016159058, -0.015899658, -0.015357971, 0.005531311, -0.023727417, -0.03668213, 0.0035514832, 0.019546509, 0.019439697, 0.014427185, -0.026931763, 0.01234436, -0.015609741, -0.00062799454, 0.0047950745, 0.06866455, 0.0027561188, -0.012397766, -0.024093628, -0.0008196831, 0.010002136, 0.011108398, -0.0036125183, -0.030410767, -0.01914978, 0.00035619736, -0.04522705, 0.029251099, 0.010368347, 0.004753113, -0.044799805, 0.013832092, 0.03274536, -0.010284424, 0.035949707, -0.024932861, -0.018051147, -0.012504578, -0.026809692, -0.0051574707, -0.019927979, -0.04046631, 0.043823242, 0.011238098, -0.030517578, 0.009811401, -0.03717041, 0.011070251, -0.017837524, 0.032073975, -0.044525146, 0.030258179, 0.0061569214, 0.011062622, 0.06402588, -0.002401352, 0.02571106, 0.02633667, -0.0029716492, -0.00076818466, -0.012779236, 0.037078857, -0.023483276, -0.05529785, -0.012863159, 0.020462036, -0.030899048, 0.027023315, -0.05596924, -0.0055007935, 0.019760132, 0.06561279, -0.04031372, 0.027999878, 0.044403076, -0.018585205, -0.05319214, -0.030807495, -0.006034851, -0.02848816, 0.023590088, 0.08258057, 0.06524658, 0.023544312, -0.008399963, 0.031051636, 0.0066070557, 0.0052604675, 0.008705139, -0.0077781677, -0.020462036, 0.0079956055, -0.0016536713, -0.0066184998, -0.003894806, 0.021865845, 0.025924683, -0.003604889, -0.028579712, 0.010284424, 0.002035141, 0.0501709, 0.00390625, -0.05581665, 0.011314392, 0.0022468567, 0.0035800934, -0.04348755, -0.045410156, -0.029632568, -0.045440674, -0.020263672, -0.06817627, -0.0692749, 0.04522705, -0.014923096, 0.0040664673, 0.025222778, 0.08453369, -0.028808594, -0.03967285, 0.019622803, 0.013313293, -0.031158447, 0.019515991, -0.014923096, 0.012924194, 0.05911255, -0.066589355, -0.050109863, -0.045410156, 0.06890869, -0.015586853, 0.048187256, -0.015525818, 0.024597168, -0.04788208, -0.017868042, 0.00027012825, 0.002735138, 0.060058594, -0.00015199184, -0.003967285, -0.012290955, -0.0068206787, -0.039794922, 0.018295288, -0.020950317, -0.00021111965, 0.0036258698, -0.0037250519, 0.0023918152, -0.0011739731, 0.02986145, -0.02394104, 0.00881958, 0.0015573502, 0.02658081, 0.037017822, -0.013015747, -0.017288208, 0.002368927, -0.023422241, -0.026947021, -0.032684326, -0.030334473, -0.021347046, 0.00447464, -0.03643799, 0.033935547, 0.00907135, 0.007041931, 0.024475098, -0.0005044937, -0.002319336, -0.015792847, 0.0020771027, -0.0045433044, 0.010437012, -0.015159607, 0.0060768127, 0.08898926, 0.050231934, -0.029937744, 0.042175293, 0.056854248, 0.066223145, -0.055603027, -0.014381409, 0.018325806, -0.016311646, -0.041931152, -0.025054932, 0.019546509, -0.052368164, -0.021087646, -0.00041675568, -0.03756714, -0.010429382, 0.0597229, -0.0048294067, 0.012428284, 0.014862061, -0.04147339, 0.016586304, -0.031433105, -0.042022705, -0.029541016, 0.03378296, 0.010971069, 0.015022278, 0.014801025, -0.0057373047, 0.027313232, 0.045959473, 0.025894165, 0.024520874, -0.0423584, 0.041809082, 0.016860962, -0.0026054382, -0.019317627, -0.022918701, -0.0067977905, -0.047027588, -0.030593872, 0.03665161, -0.0056877136, -0.03253174, 0.006668091, 0.03137207, 0.03338623, -0.01826477, 0.01259613, 0.009552002, 0.017578125, -0.024291992, 0.006225586, -0.006378174, 0.04095459, -0.039794922, -0.058929443, 0.026824951, -0.008132935, -0.05316162, 0.06750488, 0.019683838, 0.00021851063, -0.012649536, 0.020019531, 0.032958984, -0.050476074, 0.015579224, 0.019683838, 8.690357e-05, 0.049804688, -0.02557373, -0.00094652176, 0.006855011, -0.013153076, 0.046844482, 0.016799927, -0.02645874, 0.039276123, 0.0062675476, 0.005207062, 0.01928711, 0.024856567, 0.038909912, -0.003768921, -0.004272461, -0.0077056885, -0.03729248, 0.0057029724, 0.012809753, -0.046203613, 0.002292633, -0.026184082, 0.019439697, -0.0703125, -0.03414917, -0.04171753, 0.04574585, -0.014419556, 0.039642334, -0.007801056, 1.0073185e-05, -0.02078247, -0.0418396, -0.022277832, -0.012962341, -0.0001424551, -0.005214691, -0.037628174, -0.013702393, -0.0067443848, 0.0105896, -0.003835678, -0.01020813, 0.0048942566, -0.014045715, -0.01335907, -0.021835327, 0.0010442734, -0.003856659, 0.0032844543, -0.036346436, -0.0029277802, -0.06530762, -0.020309448, 0.0031375885, -0.049743652, 0.0051078796, 0.037139893, -0.023513794, -0.018569946, 0.0041046143, -0.004840851, 0.008773804, 0.014678955, -0.012062073, -0.04888916, -0.015090942, -0.0069618225, 0.0033607483, 0.009063721, -0.031585693, -0.022903442, -0.0096588135, 0.00064468384, 0.004837036, -0.024520874, -0.0008687973, 0.0011453629, 0.055389404, 0.07458496, 0.05895996, -0.01222229, -0.063964844, -0.023773193, 0.05517578, -0.01159668, -0.02368164, 0.001209259, -0.021514893, 0.044952393, 0.043823242, -0.008781433, -0.036132812, -0.055236816, 0.002948761, -0.0016469955, -0.024261475, -0.0025959015, -0.052459717, -0.03060913, -0.052246094, 0.007896423, 0.076049805, -0.020690918, 0.009407043, -0.0021591187, -0.0090408325, -0.007106781, 0.028533936, -0.057281494, 0.0014696121, -0.043792725, 0.036987305, 0.04534912, -0.045043945, -0.02078247, 0.012817383, -0.017532349, 0.004711151, 0.011207581, 0.03186035, -0.018356323, 0.018814087, 8.8095665e-05, -0.013175964, -0.05050659, -0.02911377, 0.017822266, 0.055999756, 0.025222778, -0.001124382, 0.009994507, -0.00447464, -0.041748047, -0.01878357, -0.008995056, 0.0395813, 0.0037269592, -0.002193451, -0.029937744, -0.057556152, -0.039794922, -0.05343628, -0.0039863586, 0.010253906, 0.02330017, 0.03149414, 0.02659607, 0.099975586, 0.0065193176, 0.034454346, -0.00274086, 0.009315491, 0.0062828064, -0.027160645, 0.047027588, -0.0017662048, -0.012886047, -0.03805542, 0.06274414, 0.02545166, 0.02720642, -0.025436401, 0.012359619, 0.010818481, -0.030853271, -0.027526855, 0.011482239, 0.010093689, 0.010635376, -0.03326416, 0.05596924, -0.007320404, -0.01979065, 0.0010175705, -0.045562744, 0.048583984, 0.06124878, -0.030151367, 0.029510498, 0.011642456, -0.01701355, 0.05987549, 0.037353516, 0.017120361, 0.0065841675, 0.05126953, -0.030639648, 0.008880615, 0.01802063, -0.051208496, 0.020065308, 0.006614685, -0.05493164, 0.020126343, -0.0053100586, -0.036193848, -0.044677734, 0.009605408, 0.04260254, -0.0009803772, 0.026168823, -0.046722412, 0.039031982, -0.028442383, -0.024002075, -0.007904053, -0.039031982, -0.038208008, -0.033050537, -0.047088623, -0.055908203, 0.044555664, 0.012741089, 0.033355713, 0.00010454655, 0.043029785, -0.0001065135, -0.036712646, -0.008422852, -0.03173828, -0.00069999695, 0.024047852, 0.03048706, -0.03111267, 0.020874023, -0.004760742, 0.011245728, 0.021011353, -0.0054893494, 0.020431519, -0.066589355, -0.070617676, -0.03994751, -0.002828598, 0.03213501, -0.03366089, 0.00047969818, -0.039154053, -0.017074585, 0.0029773712, -0.024017334, -0.0017442703, 0.0026378632, 0.010536194, -0.017868042, 0.013343811, -0.014083862, -0.07159424, -0.06707764, 0.0072135925, 0.0025348663, 0.032714844, -0.0047950745, 0.02470398, -0.04437256, -0.007843018, -0.059509277, -0.016189575, 0.08886719, 0.05480957, 0.034606934, -0.02027893, -0.012748718, -0.015853882, 0.058685303, 0.00415802, 0.028778076, -0.0423584, -0.021865845, -0.018554688, 0.06524658, 0.10418701, -0.006477356, 0.049224854, -0.027954102, -0.0072784424, -0.0690918, -0.022994995, 0.043823242, -0.06976318, -0.0574646, -0.037719727, 0.062072754, 0.012001038, -0.0057258606, -0.010864258, 0.024917603, 0.002084732, 0.011894226, -0.03591919, 0.0048446655, 0.0062942505, 0.011352539, 0.004497528, -0.0019760132, 0.008987427, -0.00182724, 0.030197144, -0.010520935, 0.07861328, -0.018508911, -0.034423828, -0.011650085, 0.0056152344, -0.014572144, 0.0036792755, -0.034118652, 0.003917694, -0.039245605, 0.04525757, 0.0184021, -0.00039958954, 0.0038604736, 0.0010843277, -0.009231567, -0.044677734, 0.03375244, -0.06384277, -0.01979065, -0.002418518, -0.0099487305, -0.01701355, -0.02835083, -0.008285522, -0.0016269684, -0.027374268, -0.018966675, -0.022964478, 0.027923584, -0.040863037, 0.03378296, 0.06237793, 0.020263672, -0.011993408, -0.044830322, 0.02532959, -0.03125, -0.005634308, 0.0053253174, -0.02368164, -0.01625061, -0.010269165, -0.027359009, 0.013793945, -0.0005636215, 0.014038086, 0.023025513, 0.0068588257, -0.020584106, 0.008026123, 0.013450623, 0.00705719, -0.003545761, 0.066223145, -0.039215088, 0.032592773, 0.023880005, -0.05267334, -0.03213501, 0.060150146, -0.070495605, 0.06744385, 0.03149414, -0.06536865, -0.007144928, -0.009727478, -0.011123657, -0.026062012, 0.09088135, -0.006500244, 0.012046814, -0.05505371, 0.017166138, 0.049957275, 0.047180176, -0.008102417, -0.040161133, 0.023513794, -0.017669678, 0.005050659, 0.016952515, 0.02885437, 0.0043792725, 0.030792236, 0.0149383545, 0.010292053, -0.017837524, 0.019256592, -0.034332275, -0.0072746277, 0.056030273, -0.012702942, 0.0413208, -0.014602661, -0.06713867, -0.06640625, -0.034362793, 0.04449463, -0.002161026, -0.004169464, -0.014968872, 0.018112183, -0.0002913475, -0.033599854, 0.02720642, 0.018981934, -0.037139893, -0.027755737, -0.015640259, 0.017486572, -0.019104004, 0.04360962, -0.027862549, -0.016860962, 0.014297485, 0.004940033, 0.020706177, 0.022216797, -0.04421997, 0.001083374, -0.012939453, -0.0019626617, -0.021957397, -0.0050621033, 0.04458618, -0.03527832, -0.044036865, -0.013305664, 0.013977051, -0.026870728, -0.04989624, 0.036499023, 0.03668213, 0.0030288696, 0.020233154, -0.017501831, -0.041015625, 0.047943115, 0.020050049, -0.05834961, -0.080444336, -0.028625488, -0.068237305, 0.007347107, -0.023925781, -0.027526855, 0.03451538, 0.0031032562, 0.021774292, -0.042541504, -0.03475952, -0.0039253235, -0.028396606, 0.013465881, 0.018447876, 0.0058021545, 0.0033073425, 0.025283813, -0.055786133, -0.0034809113, 0.0368042, 0.03945923, 0.0011196136, 0.032806396, 0.024276733, 0.043121338, -0.08721924, 0.045806885, -0.0211792, 0.014831543, 0.0062446594, 0.05987549, -0.015823364, 0.093811035, -0.044281006, -0.02960205, -0.026000977, 0.02357483, 0.020690918, 0.0357666, -0.04525757, 0.0010719299, 0.030151367, 0.035705566, 0.006088257, 0.0019340515, 0.009300232, -0.012962341, -0.002401352, -0.0028972626, 0.005428314, -0.030914307, 0.010726929, -0.04840088, 0.004142761, -0.0048561096, -0.011375427, 0.021087646, -0.018157959, 0.02722168, -0.0063095093, 0.0073051453, 0.006099701, 0.006164551, 0.032318115, -0.004421234, -0.01965332, 0.022140503, 0.07940674, 0.019927979, -0.008918762, -0.008544922, -0.0069618225, 0.023010254, 0.017852783, 0.022735596, -0.005443573, 0.018173218, 0.0011920929, -0.04827881, 0.01789856, 0.00036287308, -0.0009841919, 0.012550354, -0.08306885, -0.030334473, -0.015625, 0.0041923523, 0.002445221, 0.056152344, 0.021469116, 0.011299133, -0.009109497, -0.019607544, 0.0010881424, -0.021026611, 0.0152282715, -0.0059394836, -0.013557434, 0.0041885376, -0.028656006, 0.015403748, 0.01576233, -0.029220581, 0.045166016, -0.048828125, 0.005760193, -0.024612427, 0.022720337, -0.03062439, -0.029754639, -0.002855301, 0.0016899109, -0.01424408, 0.0056495667, 0.020004272, 0.0006093979, -0.015991211, -0.0143585205, -0.0055618286, -0.013290405, -0.0061454773, 0.035369873, -0.0066986084, -0.052825928, -0.016433716, -0.016601562, -0.005104065, -0.002035141, 0.07928467, -0.014328003, 0.049926758, 0.022521973, 0.046569824, 0.06842041, 0.022079468, 0.01852417, -6.6399574e-05, -0.019165039, 0.009117126, -0.03503418, 0.008850098, 0.0128479, -0.02104187, 0.009742737, 0.022369385, -0.00032687187, 0.02973938, 0.018554688, -0.027313232, -0.012771606, -0.037384033, 0.046173096, -0.016220093, 0.023620605, -0.060424805, 0.004131317, -0.00970459, -0.013496399, -0.029571533, 0.0044288635, -0.013587952, 0.02406311, 0.017196655, -0.035949707, -0.022460938, 0.02015686, 0.014015198, -0.041168213, -0.016525269, 0.005378723, 0.025848389, -0.020050049, 0.033325195, -0.007972717, -0.019592285, -0.027633667, 0.007286072, -0.039520264, -0.01638794, -0.0099105835, 0.00089883804, 0.0095825195, 0.0032215118, 0.060577393, 0.078125, 0.030838013, 0.013442993, 0.0012264252, -0.0345459, -0.034454346, 0.046142578, 0.01133728, -0.009803772, -0.009254456, 0.050567627, 0.010696411, 0.008872986, 0.027297974, 0.013877869, -0.037902832, 0.013931274, -0.0027370453, -0.009025574, 0.020385742, -0.02255249, 0.02255249, 0.022399902, -0.03475952, -0.0032482147, -0.007335663, -0.027526855, 0.016464233, -0.013946533, 0.04248047, -0.01676941, -0.05496216, -0.041290283, -0.022750854, 0.0116119385, 0.09033203, 0.032836914, -0.029083252, 0.011207581, 0.009010315, -0.019470215, -0.04425049, 0.019424438, -0.016998291, 0.008094788, -0.021636963, -0.026794434, -0.0013008118, -0.013282776, -0.017089844, -0.004749298, 0.030883789, -0.0076026917, -0.013290405, -0.03451538, -0.010177612, -0.005558014, -0.03375244, -0.02545166, -0.011299133, 0.02835083, -0.0030460358, -0.015281677, 0.017028809, 0.0025291443, 0.02545166, 0.0016975403, -0.030181885, 0.045898438, 0.032684326, 0.054992676, -0.049743652, 0.05065918, 0.031341553, 0.04144287, 0.014335632, -0.055419922, -0.009033203, 0.027908325, -0.0009851456, -0.03186035, 0.020568848, -0.052459717, 0.0009441376, 0.012756348, -0.046173096, -0.050994873, 0.014282227, 0.05279541, -0.0066986084, 0.020584106]}, "B000BRJOV8": {"id": "B000BRJOV8", "original": "Brand: ADCO\nName: ADCO 2111 White RV Propane Tank Cover, Single 20\nDescription: \nFeatures: ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank )\nProtect propane bottles while in storage with this deluxe heavy-duty vinyl cover\nVelcro closure at top, elasticized bottom for a neat tailored fit\nSingle tank cover, fits 20 pounds ( 5 Gallon tank )\nPolar White\n", "metadata": {"Name": "ADCO 2111 White RV Propane Tank Cover, Single 20", "Brand": "ADCO", "Description": "", "Features": "ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank )\nProtect propane bottles while in storage with this deluxe heavy-duty vinyl cover\nVelcro closure at top, elasticized bottom for a neat tailored fit\nSingle tank cover, fits 20 pounds ( 5 Gallon tank )\nPolar White", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013511658, -0.014320374, -0.037872314, -0.07116699, -0.015411377, 0.011474609, -0.05947876, 0.04336548, -0.0395813, -0.040283203, -0.026824951, 0.00819397, -0.08325195, -0.046905518, 0.050445557, -0.07519531, 0.031677246, -0.015487671, -0.0017518997, -0.017349243, -0.009986877, -0.0017166138, 0.039123535, 0.00541687, 0.0075302124, -0.03829956, 0.020431519, -0.011787415, 0.00699234, -0.016693115, 0.013137817, 0.013877869, 0.032196045, -0.038269043, 0.036895752, -0.015960693, 0.0033855438, -0.01889038, -0.00881958, -0.020721436, 0.0027580261, 0.0024642944, 0.046875, 0.00340271, 0.0154800415, -0.051849365, 0.025619507, -0.055023193, 0.019989014, 0.009033203, -0.0068588257, -0.006134033, -0.0135650635, -0.03491211, -0.014724731, 0.01020813, 0.023376465, -0.06109619, 0.032073975, -0.038513184, -0.023330688, -0.024719238, 0.04425049, 0.012557983, -0.035247803, 0.01689148, 0.059539795, -0.021606445, -0.0012254715, -0.060821533, -0.0030403137, 0.027770996, 0.020767212, -0.015991211, -0.038391113, -0.014442444, 0.007255554, 0.0015268326, 0.018707275, 0.0013875961, 0.017791748, -0.026153564, 0.040252686, -0.00983429, 0.005428314, 0.0025043488, -0.00333786, -0.017730713, 0.0014362335, -0.015090942, -0.01966858, -0.0016040802, 0.020889282, 0.013122559, -0.034240723, -0.003200531, -0.009010315, -0.012001038, 0.066711426, 0.0090408325, 0.025527954, -0.049804688, 0.0107421875, -0.010055542, 0.004989624, 0.013717651, -0.014289856, 0.01651001, 0.042541504, 0.015098572, -0.021865845, 0.0491333, -0.013870239, 0.013587952, -0.039154053, -0.0063438416, -0.055358887, 0.033081055, -0.006313324, 0.034118652, -0.012397766, 0.0033721924, -0.015945435, -0.03778076, 0.009414673, -0.023468018, -0.03591919, 0.038391113, -0.024536133, 0.020431519, -0.035095215, -0.0005168915, 0.029296875, 0.04562378, 0.026565552, -0.007080078, 0.02772522, 0.026733398, -0.010429382, 0.01272583, -0.0068740845, -0.0057907104, 0.030334473, -0.0049476624, -0.073791504, 0.043395996, 0.029144287, -0.014968872, -0.040496826, -0.09790039, -0.035461426, 0.003944397, 0.04147339, 0.015281677, -0.03164673, 0.02279663, 0.01687622, -0.003238678, -0.056915283, -0.045166016, -0.002986908, -0.03414917, -0.0052337646, 0.057128906, -0.0026741028, 0.07696533, 0.013587952, -0.00957489, 0.019302368, 0.07800293, -0.023147583, 0.016143799, -0.004261017, 0.027740479, -0.014579773, -0.0143966675, 0.0015354156, 0.04626465, 0.06286621, -0.060272217, -0.062164307, -0.050201416, 0.12805176, -0.04675293, 0.013381958, -0.06402588, 0.01991272, -0.049987793, 0.019317627, -0.001830101, -0.00137043, 0.034057617, 0.026672363, -0.030761719, -0.011360168, 0.013710022, -0.018157959, 0.033325195, -0.02558899, -0.015052795, -0.020904541, 0.006603241, 0.017150879, 0.010734558, 0.036346436, -0.027313232, 0.02671814, 0.0015907288, -0.01121521, 0.0118255615, -0.011131287, -0.020874023, 0.014335632, -0.026947021, 0.028060913, 0.01725769, -0.020355225, 0.031402588, -0.03050232, -0.003736496, 0.0035190582, -0.030639648, 0.021621704, 0.05065918, -0.0041160583, -0.006679535, -0.020126343, -0.01890564, 0.0008382797, -0.03527832, 0.06359863, 0.06100464, 0.05203247, 0.011154175, -0.011451721, 0.043060303, 0.0625, -0.017578125, -0.02949524, 0.017074585, 0.012031555, -0.043670654, 0.02772522, 0.075805664, 0.002811432, -0.013267517, 0.013954163, 0.020843506, -0.059265137, -0.00015866756, 0.086120605, 0.002243042, -0.0020256042, 0.0055122375, -0.04940796, 0.027175903, -0.03378296, -0.020721436, -0.040405273, 0.049987793, 0.004508972, 0.039031982, 0.037994385, 0.005115509, 0.015380859, 0.018722534, 0.04916382, 0.048187256, -0.0028381348, 0.00111866, -0.0019464493, 0.01713562, -0.0079574585, 0.021759033, -0.03665161, 0.03112793, -0.030548096, 0.008460999, -0.0032176971, 0.0034503937, 0.04623413, 0.007904053, 0.021148682, 0.0029582977, 0.06222534, -0.0042495728, 0.0061912537, 0.02809143, -0.016601562, -0.006919861, 0.017471313, 0.0015630722, -0.0034770966, -0.023513794, 0.037353516, -0.024429321, 0.01763916, -0.013969421, 0.020645142, -0.014709473, 0.014335632, 0.053497314, 4.208088e-05, 0.0093688965, -0.000995636, 0.019134521, -0.013595581, 0.019348145, 0.015930176, -0.005180359, -0.016036987, -0.0035095215, 0.00868988, 0.02420044, -3.8802624e-05, 0.0066719055, 0.017944336, 0.030471802, 0.05368042, 0.03817749, -0.017745972, 0.022354126, 0.016494751, 0.005104065, 0.035247803, -0.01739502, -0.0019292831, -0.0005607605, -0.0073623657, 0.023147583, 0.02671814, -0.012924194, -0.012931824, -0.016113281, 0.010002136, 0.0054397583, 0.013587952, 0.03363037, 0.009971619, -0.041137695, 0.044006348, 0.013076782, -0.0071372986, 0.0418396, -0.008087158, -0.07080078, 0.058135986, -0.016906738, -0.013000488, 0.022003174, 0.013618469, -0.009796143, 0.022369385, 0.008094788, 0.020858765, 0.026138306, -0.033843994, -0.018798828, 0.020370483, -0.053741455, 0.025436401, -0.033416748, -0.037750244, 0.010269165, 0.055236816, -0.02671814, -0.00995636, -0.050811768, 0.022354126, 0.015823364, -0.038757324, 0.012565613, -0.09320068, 0.005279541, 0.034606934, 0.030197144, -0.017532349, -0.0413208, 0.028244019, -0.009254456, 0.014724731, 0.025222778, 0.00035977364, 0.045440674, -0.015312195, 0.034698486, 0.043151855, 0.064575195, -0.020996094, -0.034301758, -0.011772156, 0.061065674, -0.008216858, -0.008178711, -0.00034475327, 0.0012102127, -0.042022705, -0.002035141, -0.0541687, 0.0135650635, -0.08227539, -0.011795044, -0.0010824203, -0.045410156, 0.008422852, 0.0005311966, -0.050048828, -0.050048828, 0.029327393, -0.0045318604, -0.026733398, 0.021347046, -0.008262634, -0.007247925, -0.022766113, 0.0025081635, -0.018310547, -0.008674622, -0.025360107, 0.02670288, 0.03753662, -0.050964355, 0.02532959, 0.045562744, -0.04345703, 0.0012178421, -0.025543213, 0.024383545, -0.006046295, -0.00021243095, -0.038909912, -0.015808105, -0.052581787, -0.045318604, -0.015945435, 0.009757996, 0.035980225, -0.0062789917, 0.02418518, 0.0038375854, -0.024887085, -0.0017185211, 0.018112183, 0.023254395, -0.013450623, 0.008605957, 0.011772156, -0.016983032, 0.015914917, -0.005340576, -0.011604309, 0.02357483, -0.0055503845, 0.002691269, -0.039367676, -0.017364502, -0.018814087, 0.05026245, -0.007949829, 0.024230957, 0.039215088, -0.033721924, 0.012626648, 0.0231781, -0.026260376, -0.024139404, 0.041412354, -0.016784668, -0.02293396, 0.002878189, -0.042816162, 0.048553467, -0.007118225, -0.02267456, 0.0009937286, -0.012687683, 0.0059547424, 0.002609253, 0.02519226, -0.004421234, -0.07507324, 0.009086609, -0.071777344, 0.055480957, 0.06854248, -0.026321411, 0.10345459, 0.0637207, -0.0047302246, 0.017913818, 0.03842163, -0.012229919, 0.01914978, 0.013038635, -0.036834717, 0.00058841705, 0.00881958, -0.03894043, -0.014137268, -0.03845215, -0.0049591064, -0.0042762756, -0.013999939, -0.0062026978, -0.029678345, 0.013511658, 0.0045700073, -0.020385742, 0.00021982193, -0.036621094, -0.018188477, -0.039520264, 0.036743164, 0.025924683, -0.010627747, 0.032409668, 0.0049057007, 0.023895264, -0.0012655258, -0.016342163, -0.017852783, -0.033081055, 0.014144897, 0.037872314, -0.007949829, 0.004135132, -0.012710571, 0.012298584, -0.044525146, -0.00065898895, -0.009941101, 0.024032593, 0.021697998, -0.018127441, 0.038085938, 0.015274048, -0.014175415, 0.033325195, -0.008155823, -0.07128906, 0.011833191, 0.06958008, 0.02861023, -0.029907227, -0.015396118, -0.0032310486, -0.012565613, 0.007286072, -0.025299072, -0.012817383, -0.013938904, 0.0014286041, -0.04660034, -0.03387451, -0.03567505, 0.031021118, -0.015602112, 0.0070266724, -0.008102417, -0.016571045, 0.01058197, 0.079833984, -0.021438599, -0.07159424, -0.04550171, 0.029891968, -0.021972656, -0.025924683, 0.025558472, -0.04425049, -0.017120361, -0.0289917, 0.072387695, 0.049865723, 0.0033836365, -0.01335907, -0.032104492, -0.015640259, -0.009773254, 0.03262329, -0.033203125, 0.07098389, 0.011627197, 0.020126343, -0.07531738, 0.0011615753, 0.04586792, -0.058135986, -0.07513428, -0.043426514, 0.0574646, 0.028686523, -0.016601562, -0.024002075, 0.022628784, 0.04385376, 0.0025024414, -0.034088135, -0.013839722, 0.020736694, -0.007572174, -0.015640259, -0.0059051514, -0.01940918, 0.056488037, 0.0014715195, 0.0048713684, -0.008026123, 0.014732361, 0.03652954, -0.054351807, -0.009346008, -0.01725769, 0.010398865, -0.00655365, 0.007030487, -0.045928955, 0.041870117, 0.066467285, 0.03253174, 0.033599854, -0.002418518, 0.014930725, -0.021377563, -0.046081543, 0.0027332306, 0.03942871, -0.0009088516, -0.027038574, 0.011619568, -0.0017404556, -0.009132385, -0.025878906, -0.032684326, 0.0038661957, 0.069885254, -0.018066406, -0.016464233, -0.031463623, -0.002483368, 0.013931274, -0.0013751984, -0.030258179, -0.020477295, 0.02848816, -0.013771057, -0.025604248, 0.020019531, -0.03527832, -0.0019445419, -0.013557434, 0.011138916, -0.053955078, 0.078186035, 0.028579712, 0.0418396, -0.0013456345, 0.014930725, -0.030914307, -0.01461792, -0.025909424, -0.015792847, -0.011116028, 0.011329651, 0.07525635, 0.039733887, -0.025817871, 0.04864502, -0.022750854, 0.07543945, 0.007335663, -0.017288208, -0.021118164, 0.012046814, 0.0035057068, -0.06286621, 0.040649414, -0.0052986145, -0.041992188, -0.04284668, 0.017852783, -0.031219482, -0.022384644, -0.008926392, -0.006038666, 0.02758789, -0.044891357, 0.010726929, 0.015975952, 0.054656982, 0.0025024414, 0.020751953, 0.02960205, -0.021270752, -0.07562256, -0.015655518, -0.036315918, 0.015548706, -0.03363037, 0.0013990402, 0.02760315, 0.0057640076, -0.0075683594, -0.018829346, -0.035369873, -0.014411926, -0.02456665, -0.009559631, -0.001373291, 0.036743164, -0.026885986, -0.053344727, -0.02911377, -0.000109016895, -0.045959473, 0.009048462, 0.023635864, 0.00047302246, 0.0005044937, 0.05606079, -0.0637207, -0.06640625, -0.012229919, 0.035705566, 0.029373169, -0.007888794, -0.07470703, -0.039764404, 0.0115737915, 0.035614014, 0.02079773, 0.0015735626, 0.013061523, -0.011512756, 0.011581421, -0.07965088, -0.0005469322, -0.0075263977, -0.050354004, 0.07342529, 0.08441162, -0.01512146, 0.020492554, 0.0068092346, -0.037597656, 0.028121948, 0.021377563, -0.050445557, -0.053100586, -0.033447266, -0.021133423, -0.01751709, -0.012001038, -0.03326416, 0.038879395, -0.01209259, 0.012908936, -0.03616333, -0.030883789, -0.007598877, -0.023529053, 0.009269714, -0.021408081, 0.027038574, -0.0056152344, 0.027862549, -0.049957275, -0.062561035, -0.048461914, 0.011734009, 0.040893555, 0.039367676, 0.0027828217, 0.0041923523, -0.036193848, -0.013465881, 0.012176514, -0.033081055, 0.024887085, 0.034851074, 0.0016508102, -0.007827759, -0.06085205, -0.008651733, 0.004360199, -0.017852783, 0.027252197, -0.008262634, -0.07867432, -0.05807495, 0.07122803, 0.06488037, -0.03274536, -0.049438477, 0.0028972626, 0.015838623, -0.054718018, -0.043548584, -0.0010185242, -0.023773193, 0.04019165, -0.05014038, 0.046844482, 0.0036182404, -0.0068969727, -0.011985779, -0.00066185, 0.04788208, 0.0048561096, 0.0056877136, 0.019165039, -0.0049858093, 0.007671356, -0.0024471283, 0.004146576, 0.028762817, -0.014274597, 0.017318726, -0.04269409, -0.050598145, 0.030471802, 0.020568848, -0.047332764, 0.076416016, -0.03253174, -0.0048217773, 0.010948181, -0.039276123, 0.019042969, -0.03366089, -0.025634766, -0.022201538, -0.025680542, -0.010147095, -0.0043182373, 0.027832031, 0.00831604, 0.028381348, -0.0055999756, 0.027801514, -0.010345459, -0.01802063, -0.011413574, -0.03491211, 0.037994385, -0.029312134, -0.040130615, 0.010414124, -0.044189453, -0.011909485, 0.034118652, -0.009468079, 0.008071899, -0.022460938, 0.020843506, -0.010528564, 0.022537231, -0.03866577, -0.02192688, 0.0022354126, -0.014671326, -0.009780884, -0.0143585205, 0.008415222, 0.00749588, -0.021835327, -0.07354736, 0.028564453, -0.079956055, 0.042663574, 0.022140503, 0.02319336, -0.025817871, -0.006427765, -0.0060768127, 0.022903442, 0.011116028, 0.040649414, 0.032806396, 0.03564453, 0.0067253113, 0.0014390945, 0.026626587, -0.02545166, 0.015731812, 0.0030155182, 0.0038852692, -0.021392822, 0.014717102, -0.01096344, -0.030914307, -0.014442444, -0.0016393661, -0.012626648, -0.031677246, 0.00074100494, 0.019104004, 0.01977539, -0.0287323, 0.05117798, -0.010879517, -0.05758667, -0.025497437, 0.022338867, 0.01626587, -0.012336731, -0.017028809, -0.050109863, -0.049438477, -0.039245605, 0.048706055, -0.031036377, -0.015167236, -0.016586304, -0.0009050369, -0.0059394836, -0.03982544, -0.008003235, 0.010131836, 0.033966064, 0.00730896, 0.034729004, 0.01109314, -0.039276123, -0.07495117, -0.0018978119, -0.009002686, 0.018356323, -0.016448975, 0.0021591187, 0.009597778, 0.0012998581, 0.021881104, 0.022659302, 0.0368042, -0.0063591003, 0.057891846, -0.081848145, -0.032348633, 0.025848389, 0.015777588, -0.009391785, -0.032806396, 0.039276123, -0.014915466, -0.020828247, 0.01826477, -0.0008878708, 0.0003671646, 0.032287598, 0.03793335, -0.062805176, 0.02217102, -0.03616333, 0.039978027, 0.0110321045, -0.03616333, -0.040130615, 0.011795044, -0.0013189316, 0.023712158, -0.02520752, 0.031921387, -0.003921509, -0.044555664, -0.027755737, -0.017715454, 0.00011408329, 0.022949219, -0.034454346, -0.017822266, 0.012710571, -0.009361267, -0.028259277, -0.0007543564, 0.045043945, -0.0129852295, -0.012191772, 0.037597656, -0.019546509, -0.004562378, 0.00096035004, -0.04928589, -0.039031982, 0.029006958, 0.006412506, -0.019348145, -0.020004272, -0.020767212, -0.0025539398, -0.030685425, -0.027542114, -0.047790527, -0.036346436, 0.0023727417, 0.043914795, -0.01713562, -0.0031223297, -0.005748749, 0.02279663, -0.015731812, 0.011405945, 0.019332886, -0.004009247, -0.0044174194, 0.026290894, 0.002790451, 0.046569824, -0.023162842, -0.09161377, -0.052124023, 0.013496399, 0.0031490326, 0.002090454, 0.03717041, 0.00969696, 0.004398346, 0.042999268, -0.0012073517, -0.027191162, 0.022659302, 0.052764893, 0.027191162, 0.019210815]}, "B000WEMH32": {"id": "B000WEMH32", "original": "Brand: Weber\nName: Weber 7502 Hose and Regulator Kit (21-Inch),Assorted\nDescription: \nFeatures: Hose and regulator replacement kit for Weber propane grills\nProvides secure, airtight connection between grill and tank\nFits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold\nIncludes 21-inch QCC1 hose, regulator, and instruction sheet\nGenuine Weber replacement part\n", "metadata": {"Name": "Weber 7502 Hose and Regulator Kit (21-Inch),Assorted", "Brand": "Weber", "Description": "", "Features": "Hose and regulator replacement kit for Weber propane grills\nProvides secure, airtight connection between grill and tank\nFits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold\nIncludes 21-inch QCC1 hose, regulator, and instruction sheet\nGenuine Weber replacement part", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013534546, -0.012084961, -0.05429077, -0.046875, -0.025344849, -0.0010700226, -0.056396484, 0.029571533, -0.0035152435, 0.017700195, 0.025909424, 0.0048980713, 0.04559326, -0.04837036, 0.03869629, 0.012916565, 0.039886475, 0.025878906, 0.051971436, 0.0009870529, 0.0074501038, 0.042541504, 0.0036144257, 0.09454346, 0.03286743, -0.047943115, 0.062469482, 0.012573242, 0.020019531, 0.00055933, 0.04055786, -0.029266357, 0.04031372, 0.027496338, -0.044006348, -0.0001540184, -0.008056641, -0.0017194748, -0.018508911, 0.018951416, 0.023712158, -0.011070251, 0.008956909, 0.039123535, -0.003967285, -0.048217773, 0.051574707, -0.050750732, 0.007381439, 0.028137207, -0.0022602081, 0.004337311, -0.02822876, 0.003791809, -0.00831604, -0.025299072, -0.01576233, 0.013038635, 0.012298584, 0.025909424, 0.009239197, 0.010795593, -0.0019321442, -0.015655518, -0.040618896, -0.003900528, 0.08984375, -0.013259888, -0.023910522, -0.053955078, 0.0134887695, 0.030807495, -0.007347107, 0.0025291443, -0.020828247, 0.020568848, 0.008346558, 0.0018472672, 0.022338867, 0.030395508, 0.0028800964, -0.04171753, 0.025375366, 0.042510986, -0.023925781, 0.038757324, -0.026626587, -0.016860962, -0.054473877, -0.0054016113, -0.025985718, -0.026168823, -0.06048584, 0.04257202, 0.007972717, 0.014884949, -0.0077285767, -0.03086853, 0.015556335, -0.0037937164, 0.024993896, -0.03363037, 0.037475586, -2.0682812e-05, 0.00087213516, 0.041046143, 0.006755829, 0.034820557, 0.02897644, 0.012863159, -0.017715454, 0.041381836, 0.017868042, -0.031280518, -0.026168823, -0.006088257, -0.015914917, -0.003501892, 0.022216797, -0.055847168, 0.009086609, 0.021316528, 0.039031982, -0.03552246, 0.0146102905, 0.022125244, -0.022247314, -0.026931763, -0.0440979, -0.021636963, -0.029434204, 0.029174805, 0.059661865, 0.07519531, 0.036346436, -0.0052871704, 0.03753662, 0.008743286, 0.010314941, 0.008560181, -0.004196167, -0.036102295, -0.012969971, 0.016815186, 0.014831543, -0.013870239, 0.020324707, 0.023880005, 0.002292633, -0.017044067, 0.01676941, 0.010726929, 0.030593872, 0.010299683, -0.016296387, 0.016540527, 0.007850647, 0.0127334595, -0.016311646, -0.015098572, -0.03314209, -0.020385742, -0.007247925, -0.050048828, -0.047698975, 0.022247314, 0.005680084, 0.0056877136, 0.034973145, 0.062347412, -0.009933472, -0.037475586, 0.01083374, 0.039398193, -0.004058838, 0.03265381, -0.047302246, 0.022399902, 0.058044434, -0.07824707, -0.035614014, -0.046569824, 0.05114746, 0.01008606, 0.0289917, -0.018432617, 0.026641846, -0.032989502, -0.014175415, 0.001958847, 0.004257202, 0.04309082, 0.023849487, -0.0096588135, -0.00040721893, -0.004245758, -0.03744507, 0.02319336, -0.018203735, -0.021911621, -0.016784668, 0.025299072, -0.030700684, 0.024673462, 0.026611328, -0.021072388, 0.011360168, 0.001420021, 0.026031494, 0.030258179, -0.011665344, 0.0031795502, -0.007724762, -0.019546509, -0.011291504, 0.024230957, -0.027160645, -0.030975342, 0.0052337646, -0.009628296, 0.030593872, 0.02923584, -0.00217247, 0.01184082, 0.007904053, 0.034240723, -0.03363037, 0.01939392, -0.013679504, 0.02532959, -0.019088745, 0.019088745, 0.08544922, 0.08282471, -0.025772095, 0.03717041, 0.041900635, 0.06762695, -0.05255127, -0.030395508, -0.000641346, -0.057891846, -0.03491211, 0.030731201, -0.03286743, -0.009880066, 0.006187439, 0.016448975, -0.030441284, -0.028076172, 0.07611084, -0.020828247, 0.029434204, 0.012702942, -0.017120361, 0.017120361, -0.030319214, -0.008117676, -0.051483154, 0.034210205, -0.0018377304, 0.014167786, 0.018814087, -0.015945435, 0.026443481, 0.034088135, 0.033294678, 0.03250122, -0.02986145, 0.023956299, 0.005592346, 0.007637024, -0.012039185, -0.008865356, -0.0037765503, -0.013153076, -0.03062439, 0.018341064, -0.0059814453, -0.014213562, 0.02029419, 0.05050659, 0.019927979, -0.010871887, 0.0079422, 0.011566162, 0.0074806213, -0.0024147034, 0.017196655, -0.010147095, 0.023513794, -0.020324707, -0.032104492, 0.026412964, 0.009536743, -0.047424316, 0.040100098, 0.023132324, 0.0038070679, -0.014266968, -0.004055023, 0.021987915, -0.04663086, 0.023040771, 0.015960693, -0.0039100647, 0.061523438, -0.012939453, -0.0020885468, -0.00065279007, -0.031585693, 0.013221741, 0.0074157715, -0.03225708, 0.036590576, 0.006336212, 0.00016701221, 0.019683838, 0.012916565, 0.02798462, 0.0146102905, -0.0011911392, -0.019622803, -0.0064849854, -0.004470825, 0.012634277, -0.022247314, -0.012390137, -0.0057678223, -0.0001488924, -0.06890869, -0.050079346, -0.04675293, 0.03125, -0.012641907, 0.026229858, -0.0015821457, 0.018707275, -0.019424438, -0.055877686, -0.0013513565, -0.03717041, -0.007774353, 0.009391785, -0.05307007, -0.022262573, -0.003698349, 0.000111460686, 0.024856567, -0.011161804, 0.012825012, 0.0051231384, -0.0016965866, -0.03970337, 0.0045700073, -0.01158905, -0.024093628, -0.040771484, 0.0035648346, -0.07312012, -0.012786865, 0.004535675, -0.0362854, -0.0019550323, 0.011726379, -0.021362305, -0.008773804, 0.0074043274, -0.0051651, 0.005962372, -0.02128601, -0.014556885, -0.021438599, -0.004470825, 0.016662598, 0.01625061, 0.016464233, -0.036865234, -0.027954102, -0.0044174194, -0.014129639, 0.0012950897, -0.003332138, 0.02067566, -0.00036931038, 0.0637207, 0.08972168, 0.04067993, 0.016998291, -0.059387207, 0.013465881, 0.060913086, -0.026687622, -0.021392822, 0.021377563, -0.0038547516, 0.021118164, 0.005844116, -0.004890442, -0.037384033, -0.061645508, 0.020431519, 0.00869751, -0.030227661, -0.026062012, -0.06311035, -0.06665039, -0.03741455, 0.022735596, 0.07080078, -0.020523071, -0.009422302, -0.01386261, -0.00944519, -0.02394104, 0.036895752, -0.04058838, 0.0054397583, -0.07897949, 0.035217285, 0.054840088, -0.04537964, -0.009994507, 0.0135650635, -0.01776123, -0.0014657974, 0.0034828186, 0.018493652, 0.017211914, 0.031188965, -0.014129639, 0.011856079, -0.04626465, -0.041625977, 0.014289856, 0.031951904, 0.022994995, -0.005016327, 0.0035705566, 0.0019931793, -0.05419922, -0.027679443, -0.022506714, 0.0129470825, -0.0018777847, -0.016418457, -0.025405884, -0.054840088, -0.019638062, -0.04864502, -0.01725769, 0.009887695, 0.028274536, 0.027404785, 0.0051727295, 0.05923462, 0.043670654, 0.03881836, 0.025222778, 0.023025513, -0.013725281, -0.03805542, 0.061553955, 0.005306244, 0.013710022, -0.058807373, 0.018188477, 0.032043457, 0.049224854, -0.038146973, 0.013114929, 0.051361084, -0.0057144165, 0.0006079674, -0.017242432, 0.023162842, 0.014221191, -0.037078857, 0.059936523, 0.0037631989, -0.034240723, 0.010864258, -0.0736084, 0.037719727, 0.043914795, -0.030151367, 0.02017212, 0.017196655, -0.017303467, 0.040130615, 0.03982544, 0.003112793, 0.008575439, 0.032165527, -0.04321289, 0.00020945072, 0.017166138, -0.07086182, 0.012390137, 0.0071983337, -0.06121826, 0.014701843, 0.019577026, -0.039367676, -0.045806885, 0.00021862984, 0.055725098, -0.0033187866, 0.023757935, -0.044036865, 0.054473877, -0.018508911, -0.013420105, -0.004173279, -0.018753052, -0.027999878, 0.025161743, -0.010215759, -0.01802063, 0.0017299652, 0.017410278, 0.007858276, -0.015449524, 0.033966064, 0.016220093, 0.012748718, -0.05316162, -0.01222229, 0.0124053955, 0.05682373, 0.024230957, -0.031143188, 0.017288208, -0.0256958, 0.02166748, -0.008758545, 0.017608643, 0.015014648, -0.04852295, -0.0847168, -0.009689331, 0.014564514, 0.009086609, -0.052093506, -0.004180908, -0.057006836, -0.015808105, -0.04522705, -0.009002686, -0.056854248, 0.0041389465, 0.036254883, -0.03982544, 0.00031113625, -0.01878357, -0.006252289, -0.055419922, 0.0039634705, -0.017745972, 0.030822754, 0.009300232, -0.00598526, -0.05770874, 0.015930176, -0.08630371, -0.022613525, 0.074157715, 0.03591919, 0.013946533, -0.031433105, 0.00076913834, -0.013442993, 0.07519531, 0.010597229, 0.028686523, -0.04260254, -0.02116394, -0.0132751465, 0.026809692, 0.06567383, -0.015960693, 0.0670166, -0.010871887, 0.034332275, -0.066223145, -0.007671356, 0.07611084, -0.05355835, -0.0362854, -0.0005054474, 0.06427002, -0.006072998, -0.0016641617, 0.014785767, 0.031982422, -0.01689148, 0.009162903, -0.053588867, 0.025512695, 0.014266968, -0.010551453, -0.008071899, -0.004310608, -0.004047394, 0.020248413, 0.015075684, -0.007648468, 0.018875122, -0.017288208, 0.0028839111, -0.022338867, -0.0040512085, -0.000102221966, -0.0032672882, -0.011657715, 0.022567749, -0.07501221, 0.0524292, 0.04043579, 0.011070251, -0.003835678, -0.022384644, -0.019866943, -0.04748535, 0.016586304, -0.030578613, 0.0050315857, 0.005718231, -0.005584717, 0.015464783, 0.0015764236, -0.0013990402, -0.0060424805, 0.0064468384, -0.013046265, -0.033599854, 0.011749268, -0.038360596, 0.03378296, 0.06225586, 0.013252258, -0.026321411, -0.07867432, 0.01512146, 0.0036506653, -0.009971619, -0.016738892, -0.0036640167, -0.036315918, -0.018661499, -0.031829834, 0.026321411, 0.0018138885, 0.04397583, 0.010955811, 0.020248413, -0.012710571, 0.027618408, 0.011619568, 0.0154418945, 0.024032593, 0.07910156, -0.023376465, 0.014122009, 0.014846802, -0.031982422, -0.030929565, 0.04425049, -0.053131104, 0.04348755, 0.027069092, -0.066223145, 0.018753052, -0.008224487, -0.01398468, -0.03265381, 0.103515625, -0.004676819, 0.018936157, -0.06756592, 0.022659302, 0.02468872, 0.06585693, -0.017837524, -0.03945923, 0.013404846, -0.07092285, 0.0062179565, 0.016723633, 0.00060272217, -0.019302368, 0.022460938, 0.014633179, 0.024230957, 0.006439209, 0.047943115, -0.031677246, 0.0017118454, 0.045074463, -0.021331787, 0.053375244, -0.010276794, -0.066101074, -0.064697266, -0.017471313, 0.030395508, 0.027328491, -0.027130127, 0.005378723, 0.009498596, -0.001991272, -0.016189575, 0.024856567, 0.009498596, -0.036468506, -0.016052246, 0.011299133, 0.0007863045, -0.023239136, 0.057922363, -0.04043579, -0.022384644, 0.0069618225, 0.010368347, 0.027267456, -0.008155823, -0.04714966, -0.01234436, 0.00035381317, 0.021026611, 0.013702393, -0.032836914, 0.048553467, -0.016983032, -0.02671814, -0.07507324, 0.030899048, -0.030426025, -0.051635742, 0.058776855, 0.06866455, 0.0058174133, 0.019180298, -0.022766113, -0.040008545, 0.042785645, 0.024887085, -0.059051514, -0.072265625, -0.02218628, -0.049438477, -0.004550934, -0.035461426, -0.042175293, 0.022537231, -0.023895264, 0.004470825, -0.045074463, -0.038146973, -0.007980347, -0.024353027, 0.011940002, 0.008811951, 0.012489319, -0.002855301, 0.017547607, -0.08795166, -0.034362793, 0.025222778, 0.035339355, 0.009292603, 0.012702942, 0.017303467, 0.016555786, -0.0395813, 0.053619385, -0.011680603, -0.008804321, -0.002210617, 0.05532837, -0.007896423, 0.077819824, -0.05126953, -0.02557373, -0.015899658, 0.032440186, -0.012184143, 0.04446411, -0.034973145, -0.025161743, 0.0020160675, 0.03164673, -0.005405426, 0.015945435, 0.01108551, -0.016448975, -0.008781433, -0.0029773712, -0.0046195984, -0.039367676, 0.0011405945, -0.049224854, 0.010231018, 0.01940918, -0.010650635, 0.041534424, -0.03918457, 0.0546875, 0.0020999908, 0.005836487, 0.001080513, 0.011627197, 0.034057617, 0.00819397, -0.0064735413, 0.017227173, 0.026229858, 0.0063056946, -0.016815186, -0.017562866, 0.014984131, 0.024658203, 0.0088272095, 0.027740479, -0.021316528, -0.009338379, 0.0073890686, -0.01209259, 0.011009216, 0.017929077, -0.00920105, -0.011985779, -0.061767578, -0.004501343, -0.014732361, 0.0033340454, 0.011177063, 0.021377563, 0.012268066, 0.022277832, -0.029067993, 0.00592041, -0.061309814, -0.050689697, 0.056152344, -0.02973938, -0.03970337, 0.017822266, -0.07232666, 0.041809082, 0.014007568, -0.0037975311, 0.05303955, -0.02470398, 0.01096344, -0.0070533752, -0.006286621, -0.03543091, -0.053649902, -0.035461426, 0.022155762, -0.0060195923, 0.02041626, -0.006511688, -0.005138397, 0.000623703, -0.010215759, 0.0066108704, -0.00258255, 4.887581e-06, 0.016845703, -0.0006661415, -0.054718018, -0.005886078, -0.0090789795, -0.0026359558, 0.004573822, 0.088134766, -0.0036392212, 0.043701172, 0.011566162, 0.037963867, 0.056762695, 0.01777649, 0.03378296, -0.02407837, -0.019470215, 0.018325806, -0.032928467, 0.0035324097, 0.022323608, -0.026519775, -0.00630188, 0.024475098, -0.03353882, 0.025222778, 0.009552002, 0.0074005127, 0.002872467, -0.029724121, 0.03125, -0.01953125, 0.0056266785, -0.011924744, -0.026321411, -0.0129852295, -0.010131836, -0.0072021484, 0.008010864, -0.029922485, 0.01121521, 0.013755798, -0.020385742, 0.013435364, -0.0040779114, -0.011528015, -0.040771484, -0.010940552, 0.006778717, 0.015945435, -0.014251709, 0.0625, -0.041870117, -0.027252197, -0.025848389, -0.0020523071, -0.03567505, -0.013343811, -0.03729248, 0.023391724, 0.006427765, 0.013961792, 0.08312988, 0.075927734, 0.030471802, 0.021560669, 0.006462097, -0.07531738, -0.033294678, 0.0715332, 0.014945984, -0.0079422, -0.052490234, 0.042510986, 0.008796692, -0.030914307, 0.03970337, 0.006980896, -0.05807495, 0.0044784546, -0.0073547363, -0.01977539, -0.0020942688, -0.0012865067, 0.017181396, 0.041625977, -0.0032672882, -0.010055542, 0.0008010864, -0.05053711, 0.011764526, 0.0073242188, 0.042144775, -0.012512207, -0.04220581, -0.051208496, -0.023345947, 0.023361206, 0.06652832, 0.015045166, -0.0025348663, 0.040985107, -0.02520752, 0.02796936, -0.01625061, 0.013031006, -0.011627197, 0.030700684, -0.01676941, -0.020324707, 0.005176544, -0.018295288, -0.032226562, -0.023132324, 0.010726929, 0.008018494, -0.03314209, -0.051086426, -0.020446777, 0.00844574, -0.051727295, -0.076293945, -0.027313232, 0.00027608871, 0.013298035, -0.012420654, 0.0059928894, -0.01083374, 0.036468506, 0.015129089, -0.02508545, 0.033447266, 0.031188965, 0.022460938, -0.06707764, 0.056915283, 0.0155181885, 0.058013916, 0.0025596619, -0.057373047, -0.031982422, 0.027420044, 0.011207581, -0.027709961, 0.043945312, -0.054779053, 0.009994507, 0.026535034, -0.019378662, -0.046783447, 0.03314209, 0.057678223, 0.014968872, 0.030227661]}, "B00I8IY6I8": {"id": "B00I8IY6I8", "original": "Brand: Flame King\nName: Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant\nDescription: \nFeatures: Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical\nSafety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\n", "metadata": {"Name": "Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant", "Brand": "Flame King", "Description": "", "Features": "Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical\nSafety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01876831, 0.018157959, -0.045928955, -0.03652954, 0.011489868, -0.011398315, -0.0418396, -0.0066871643, -0.033813477, 0.018936157, -0.013908386, 0.035858154, -0.0078048706, -0.022262573, 0.032806396, -0.017913818, 0.036956787, -0.0053901672, 0.042297363, -0.004043579, 0.019821167, 0.012908936, 0.032287598, 0.08416748, 0.046844482, -0.016967773, -0.020721436, 0.017944336, 0.03225708, 0.03036499, 0.025543213, -0.040405273, 0.0725708, -0.04083252, -0.019760132, 0.005443573, 0.0046310425, -0.038604736, -0.06335449, 0.030944824, -0.020401001, 0.022232056, 0.028442383, -0.04321289, -0.012802124, -0.013710022, -0.026290894, -0.021194458, 0.02748108, -0.013412476, -0.0052337646, 0.011405945, 0.0043640137, 0.030227661, -0.007282257, 0.03717041, 0.045928955, -0.06555176, 0.010375977, 0.0012083054, 0.01260376, 0.03152466, 0.023361206, 0.0076141357, -0.05822754, 0.014015198, 0.0793457, -0.04031372, 0.033966064, -0.06188965, -0.01737976, 0.051483154, 0.00969696, 0.05316162, -0.0154418945, -0.05697632, 0.040283203, 0.01285553, 0.008300781, 0.04336548, 0.0059547424, -0.045440674, 0.04925537, 0.0071792603, -0.012237549, 0.015930176, -0.009231567, -0.0020446777, 0.011909485, -0.02406311, 0.004146576, 0.056640625, -0.0010242462, -0.0011405945, -0.03555298, -0.025817871, -0.04949951, -0.08746338, 0.05114746, 0.029449463, 0.021377563, -0.038330078, 0.051971436, -0.01071167, 0.010810852, 0.05847168, -0.0024986267, -0.032226562, 0.020339966, -0.009628296, 0.009895325, -0.0016403198, 0.01689148, -0.012825012, -0.0011739731, 0.022491455, -0.015541077, 0.033233643, 0.011352539, 0.035736084, 0.01638794, 0.01171875, 0.015541077, -0.017211914, 0.004634857, 0.0002462864, -0.02947998, -0.030838013, -0.023208618, 0.0099105835, -0.017730713, 0.00089645386, 0.03186035, 0.076049805, 0.02696228, -0.0031661987, -0.047790527, -0.006198883, 0.020202637, -0.033294678, -0.0014677048, 0.005302429, 0.056365967, 0.01386261, -0.030960083, 0.05267334, 0.01235199, -0.019927979, -0.0041122437, -0.05734253, -0.037017822, -0.032958984, 0.03543091, 0.0059661865, -0.022964478, -0.026641846, -0.0056610107, -0.011253357, -0.0064353943, -0.038482666, 0.008705139, -0.02658081, -0.0491333, -0.016845703, -0.023025513, 0.026138306, 0.0022220612, 0.010879517, 0.020233154, 0.05328369, 0.0051498413, 0.021759033, 0.018585205, 0.023406982, -0.004310608, -0.015823364, 0.031799316, 0.09375, 0.06335449, -0.11828613, -0.072143555, -0.07501221, 0.1665039, -0.080078125, 0.010566711, -0.04248047, 0.0076446533, -0.05606079, 0.013877869, 0.006515503, 0.014701843, 0.04800415, 0.0007381439, -0.03869629, -0.00491333, -0.006198883, -0.0031528473, 0.0016307831, -0.0065727234, -0.00434494, 0.026565552, 0.012878418, 0.010284424, 0.018844604, 0.04449463, -0.027008057, 0.012435913, -0.007446289, 0.039916992, 0.024215698, -0.00065898895, -0.011566162, -0.007713318, 0.015686035, -0.008781433, 0.025466919, -0.047546387, 0.009765625, 0.019332886, -0.007396698, 0.030227661, 0.002653122, 0.027130127, 0.0020370483, -0.030136108, 0.028152466, -0.051483154, 0.029373169, 0.005306244, -0.010650635, 0.08300781, 0.03729248, 0.09851074, 0.07574463, -0.020019531, 0.017288208, 0.029373169, 0.0052833557, -0.0287323, 0.021102905, -0.010620117, 0.005203247, -0.02104187, 0.059906006, -0.03729248, -0.042175293, 0.009231567, 0.030700684, -0.0057678223, -0.008598328, 0.07080078, -0.017288208, 0.015380859, 0.051330566, -0.0021438599, -0.0041389465, 0.0014810562, 0.023284912, -0.055541992, 0.037200928, -0.0143966675, 0.035949707, 0.024795532, 0.004928589, 0.068603516, -0.012771606, 0.06359863, 0.034423828, -0.018920898, 0.0016374588, -0.003835678, 0.0075531006, 0.007457733, -0.0036315918, -0.053985596, -0.01020813, -0.015312195, 0.03540039, -0.0036945343, -0.037384033, -0.012458801, -0.0423584, 0.052734375, 0.012313843, 0.04232788, 0.044067383, 0.061523438, -0.0059890747, -0.019500732, -0.024810791, -0.010223389, 0.04156494, 0.006088257, -0.005508423, 0.03781128, -0.0053901672, 0.027633667, -0.02394104, 0.036071777, -0.0446167, 0.020767212, 0.043548584, -0.045959473, 0.032287598, -0.0099487305, -0.039611816, -0.019866943, 0.05065918, 0.019042969, -0.051757812, 0.0050621033, 0.03955078, 0.038330078, 0.02041626, 0.02619934, 0.0026721954, 0.006175995, 0.052703857, 0.029830933, 0.028533936, -0.034362793, -0.0034637451, 0.010437012, 0.04397583, 0.019943237, -0.023376465, 0.060028076, 0.014915466, -0.010719299, 0.0022773743, 0.008041382, 0.0051994324, 0.022827148, 0.0064926147, -0.008895874, -0.025497437, -0.016586304, 0.07470703, -0.019866943, -0.06628418, -0.04547119, -0.0023727417, 0.011833191, 0.0011768341, -0.045440674, -0.047210693, 0.049438477, -0.013328552, -0.0008263588, 0.029571533, 0.006046295, 0.043914795, 0.011741638, 0.018661499, 0.003358841, 0.009429932, -0.026947021, -0.015350342, -0.023590088, -0.06161499, 0.0053100586, -0.041625977, -0.043670654, -0.014381409, 0.028945923, 0.023651123, -0.045959473, 0.006427765, 0.035186768, 0.0066947937, 0.015602112, 0.03793335, -0.101135254, -0.009895325, 0.016403198, -0.011581421, 0.036376953, -0.018371582, 0.023269653, 0.026504517, 0.027389526, 0.02809143, -0.047607422, 0.006214142, 0.015388489, 0.036010742, 0.017852783, 0.009017944, 0.011169434, -0.01776123, -0.006980896, 0.017913818, 0.007419586, -0.018692017, -0.04800415, -0.03591919, 0.016281128, 0.033416748, -0.00013113022, 0.0017614365, -0.100097656, 0.008865356, -0.017730713, -0.03338623, 0.006679535, -0.02418518, -0.043670654, -0.062042236, 0.017852783, 0.010185242, -0.010467529, 0.055358887, -0.013092041, 0.036102295, -0.02949524, -0.004470825, -0.0079422, -0.0027275085, -0.015945435, -0.0027751923, 0.04043579, -0.0435791, -0.0014629364, 0.017425537, -0.02116394, -0.006439209, -6.1035156e-05, 0.034118652, -0.018310547, 0.013458252, 0.0025024414, -0.035827637, -0.010070801, -0.015838623, -0.031707764, -0.020095825, -0.014526367, -0.026138306, 0.00472641, -0.02822876, -0.058013916, -0.018417358, 0.012168884, 0.0020637512, -0.020050049, 0.008277893, -0.00043702126, -0.03414917, 0.02557373, 0.011528015, -0.0028915405, 0.017242432, -0.015052795, -1.937151e-05, -0.041809082, -0.037597656, 0.01424408, 0.03656006, 0.018936157, 0.025772095, 0.0154800415, 0.001616478, -0.011016846, 0.011131287, -0.0024089813, -0.003479004, 0.0042877197, 0.0034332275, -0.0440979, 0.031051636, -0.00081443787, 0.0018224716, 0.0140686035, 0.012268066, -0.026565552, 0.04119873, 0.027359009, -0.025756836, 0.017471313, -0.00089263916, -0.057525635, 0.039398193, -0.054779053, 0.010353088, 0.019515991, -0.012077332, 0.039489746, -0.014808655, -0.015838623, 0.04147339, 0.03289795, 0.018920898, 0.026016235, 0.016098022, -0.026321411, -0.010787964, 0.010551453, -0.031234741, -0.017852783, -0.04827881, -0.0099487305, -0.005077362, 0.0033664703, 0.013961792, -0.015090942, -0.025985718, -0.024887085, -0.00491333, 0.029571533, 6.592274e-05, -0.023284912, -0.016235352, -0.012130737, 0.012542725, -0.033081055, -0.016082764, -0.021606445, -0.02154541, -0.03552246, 0.009597778, -0.01701355, -0.0084991455, -0.0015468597, 0.04989624, -0.010391235, 0.027359009, -0.050750732, 0.0053901672, -0.018722534, 0.005554199, 0.00762558, 0.010658264, 0.015182495, -0.007030487, 0.021972656, -0.005191803, 0.0060806274, 0.005256653, -0.05493164, -0.05718994, 0.0065689087, 0.023010254, 0.012435913, -0.033599854, -0.011962891, 0.00041389465, -0.016311646, -0.006603241, -0.023590088, -0.022338867, -0.014663696, 0.0047302246, -0.051361084, -0.03250122, -0.032440186, 0.012809753, -0.016052246, 0.018798828, -0.002254486, -0.040771484, 0.011039734, 0.022827148, -0.050109863, -0.0078086853, -0.070251465, 0.0041656494, -0.01486969, -0.022949219, 0.029449463, -0.028167725, -0.024978638, -0.036254883, 0.020812988, 0.007423401, -0.009307861, -0.0011854172, -0.0068969727, -0.01222229, 0.004299164, -0.0067749023, -0.0026988983, 0.032409668, 0.01121521, -0.032440186, -0.03173828, -0.023880005, 0.016189575, -0.0259552, -0.051727295, -0.038269043, 0.031677246, 0.002445221, 0.012580872, -0.0061302185, 0.003129959, 0.0079956055, 0.014640808, -0.06304932, -0.033935547, -0.0012407303, -0.027679443, -0.005844116, -0.009399414, -0.014198303, 0.02835083, 0.050811768, -0.012054443, 0.0070152283, -0.0032482147, -0.01751709, 0.009849548, -0.004005432, -0.031433105, 0.03149414, -0.01852417, -0.016967773, -0.0440979, 0.048706055, 0.06573486, -0.0002579689, 0.015312195, 0.020080566, -0.017471313, -0.047210693, -0.043182373, 0.01574707, 0.06451416, -0.015060425, -0.04611206, 0.0008568764, -0.032806396, -0.005744934, -0.012763977, -0.050598145, 0.002981186, 0.024536133, 0.0061073303, 0.0051612854, -0.0054855347, -0.0209198, 0.041381836, -0.004322052, -0.002796173, -0.072021484, 0.0064964294, -0.015670776, -0.025146484, 0.035308838, -0.029312134, -0.032592773, 0.01638794, 0.0028572083, -0.04623413, 0.030883789, 0.033050537, -0.029434204, -0.021621704, 0.059051514, -0.042907715, 0.037384033, 0.0077590942, 0.043121338, 0.000702858, 0.023284912, 0.022262573, 0.026367188, 0.015525818, 0.018066406, 0.029388428, -0.009605408, 0.00030303, -0.0345459, -0.0085372925, 0.004901886, 0.004875183, -0.03366089, 0.09289551, -0.0050354004, -0.004169464, -0.05633545, 0.0048179626, -0.032836914, -0.011108398, -0.040924072, 0.010505676, 0.0015983582, 0.0005774498, 0.04058838, 0.007358551, -0.024505615, -0.01890564, 0.02015686, -0.0021247864, -0.016036987, 0.0026130676, 0.009513855, -0.031555176, 0.06262207, 0.01260376, 0.015731812, 0.048858643, 0.024505615, -0.04849243, -0.030822754, -0.020858765, -0.0037193298, 0.011634827, -0.020858765, 0.010650635, 0.019241333, -0.0209198, -0.020080566, -0.02281189, -0.005760193, -0.039001465, -0.020843506, 0.006038666, 0.04510498, 0.03729248, 0.028213501, -0.041656494, -0.019302368, 0.012046814, 0.02619934, 0.03262329, -0.00048160553, -0.06213379, -0.013809204, -0.0013885498, -0.000644207, -0.0104904175, -0.0146102905, 0.035736084, -0.023452759, -0.020187378, -0.042907715, 0.055603027, 0.000426054, 0.004638672, 0.0871582, 0.023834229, 0.019577026, 0.036254883, -0.008384705, -0.03930664, -0.00048446655, 0.011184692, -0.047576904, -0.030944824, -0.035064697, 0.015586853, -0.027038574, -0.020874023, -0.030853271, 0.029968262, -0.02482605, -0.028549194, -0.02960205, -0.024154663, -0.00920105, -0.051696777, 0.00944519, -0.015419006, 0.011131287, 0.010383606, 0.010131836, -0.06573486, -0.029129028, 0.018600464, 0.012794495, 0.004814148, 0.049224854, 0.0077323914, 0.007987976, -0.05633545, -0.0073776245, 0.015533447, -0.02520752, 0.016082764, 0.010574341, -0.019073486, 0.033996582, -0.03640747, 0.006881714, 0.013114929, 0.01927185, 0.017181396, 0.0016727448, -0.032989502, -0.018188477, 0.0015544891, 0.0362854, -0.013534546, -0.05105591, -0.017364502, 0.011390686, -0.004524231, -0.02885437, -0.015174866, -0.014198303, -0.031982422, -0.009963989, -0.037872314, -0.0038166046, -0.012428284, 0.018188477, 0.018539429, 0.0047950745, -0.011764526, 0.0031738281, -0.0022449493, 0.009727478, 0.049072266, -0.036895752, -0.0014572144, -0.0070152283, 0.027954102, -0.004032135, 0.010353088, 0.0055351257, 0.005558014, 0.04208374, 0.029083252, -0.013496399, 0.021636963, -0.0070495605, 0.01890564, -0.004962921, -0.0037155151, -0.024154663, 0.014259338, -0.019439697, -0.011924744, -9.775162e-05, 0.019165039, 0.019989014, 0.012542725, -0.044952393, 0.014572144, 0.03451538, 0.0009112358, -0.02053833, -0.0029144287, -0.024032593, 0.024169922, -0.012336731, -0.00844574, 0.0065841675, -0.0038528442, 0.04360962, 0.00957489, 0.014724731, 0.00945282, -0.04421997, 0.016723633, 0.055633545, -0.019165039, -0.028121948, -0.052337646, 0.012435913, 0.028030396, -0.024124146, 0.0209198, 0.0012359619, 0.049865723, -0.011543274, -0.055603027, 0.030899048, -0.099487305, 0.013664246, 0.0065994263, 0.061950684, -0.10449219, -0.020263672, -0.00756073, -0.013160706, -0.017166138, 0.09033203, 0.013725281, -0.0007109642, 0.0033721924, 0.00447464, 0.05819702, 0.0010633469, 0.03225708, -0.032073975, 0.0042762756, 0.02532959, 0.012176514, 0.028198242, 0.008934021, -0.031341553, 0.005996704, -0.0071907043, 0.03781128, 0.017333984, -0.010284424, 0.00017082691, -0.0017280579, 0.0014944077, -0.009933472, -0.011154175, -0.0061531067, 0.006702423, 0.03074646, -0.060546875, -0.06585693, -0.010414124, -0.057006836, -0.070495605, 0.09814453, -0.023498535, -0.019638062, 0.008216858, -0.0055007935, -0.015037537, -0.039245605, -0.0015563965, 0.008804321, 0.05831909, 0.0006198883, 0.0340271, -0.011222839, -0.036621094, -0.07788086, 0.009780884, -0.0871582, -0.006614685, -0.04171753, 0.0035915375, -0.016738892, -0.02859497, 0.013160706, 0.005367279, 0.029266357, -0.001364708, 0.06500244, -0.073913574, -0.038330078, 0.05895996, 0.019927979, -0.0030345917, -0.01876831, 1.8298626e-05, -0.001832962, -0.011940002, 0.0340271, -0.012741089, -0.059448242, -0.0138168335, -0.0287323, -0.011520386, -0.02746582, 0.00045204163, 0.015342712, 0.0027637482, -0.036499023, 0.023132324, 0.013977051, 0.02986145, 0.035491943, 0.0029754639, 0.044891357, -0.008132935, -0.09210205, -0.066589355, -0.033569336, 0.040893555, 0.0054855347, -0.05407715, -0.0063056946, 0.0021839142, -0.020828247, -0.0068130493, 0.018920898, 0.007911682, -0.0043144226, -0.0011949539, 0.01864624, -0.01537323, -0.016937256, -0.014640808, -0.04699707, -0.010070801, 0.07867432, -0.014007568, -0.012039185, 0.016799927, -0.05496216, -0.027236938, -0.014945984, -0.054595947, -0.018692017, -0.035736084, -0.01651001, 0.024765015, -0.02319336, -0.012199402, -0.021347046, -0.011512756, 0.00166893, 0.03137207, 0.0026111603, 0.02961731, 0.0040359497, 0.06707764, 0.009010315, 0.035125732, -0.004711151, -0.12902832, -0.068115234, 0.026321411, -0.005443573, 0.0023956299, 0.01725769, -0.0028533936, 0.015563965, 0.031433105, -0.01776123, -0.017944336, 0.01247406, 0.034088135, 0.0074043274, 0.016937256]}, "B08C92F6KZ": {"id": "B08C92F6KZ", "original": "Brand: CitruSafe\nName: CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills\nDescription: Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill\u2019s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone\nFeatures: 1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner.\nFormulated to safely clean burnt food and grease off of BBQ grill cooking surfaces.\nWorks great on grill grates, smokers, ovens, microwaves, and more.\nPair with our Citrusafe BBQ Grill Scrubber for optimal results.\n", "metadata": {"Name": "CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills", "Brand": "CitruSafe", "Description": "Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill\u2019s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone", "Features": "1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner.\nFormulated to safely clean burnt food and grease off of BBQ grill cooking surfaces.\nWorks great on grill grates, smokers, ovens, microwaves, and more.\nPair with our Citrusafe BBQ Grill Scrubber for optimal results.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008666992, 0.03857422, -0.05114746, -0.00086450577, 0.04159546, -0.05557251, 0.023803711, -0.009918213, -0.014862061, 0.03878784, -0.0037784576, 0.056518555, 0.019332886, -0.008171082, 0.002363205, 0.0038547516, 0.007331848, -0.037872314, -0.010536194, -0.020828247, -0.005264282, -0.0015287399, -0.009536743, -0.04397583, 0.0043144226, -0.056793213, 0.07940674, -0.007888794, -0.010108948, -0.03555298, 0.02355957, 0.039855957, 0.014564514, 0.0126953125, -0.041534424, -0.095214844, -0.05392456, 0.021011353, -0.015602112, -0.015602112, 0.018920898, -0.020553589, -0.03274536, 0.017532349, -0.04437256, -0.02268982, 0.019042969, 0.0026721954, 0.0073928833, 0.023483276, 0.016159058, 0.017608643, 0.011940002, 0.029891968, -0.025466919, -0.028366089, -0.0026874542, 0.0053749084, 0.015411377, 0.006980896, -0.0073051453, 0.010017395, 0.014015198, -0.0017576218, -0.050964355, 0.013504028, 0.018615723, -0.023635864, -0.046539307, -0.060821533, 0.04486084, -0.012321472, 0.016830444, 0.025650024, -0.05581665, -0.08013916, 0.061798096, -0.03326416, -0.0021533966, 0.00818634, -0.0151901245, -0.023864746, 0.036743164, 0.0023651123, -0.04019165, 0.0078086853, -0.008430481, -0.0035762787, -0.00047039986, 0.0013942719, 0.0012969971, 0.010795593, -0.07183838, 0.07531738, 0.026168823, -0.0034275055, 0.014732361, -0.026870728, 0.030883789, -0.00089263916, 0.027694702, -0.047821045, 0.017288208, 0.022247314, -0.032165527, 0.033477783, 0.03050232, 0.024978638, -0.017181396, -0.00061511993, -0.022827148, -0.072509766, -0.039245605, -0.051483154, -0.023254395, 0.03353882, -0.016921997, -0.026565552, 0.021209717, -0.0569458, -0.04977417, -0.029327393, 0.0022602081, 0.047912598, 0.034118652, 0.022521973, 0.006465912, 0.0042266846, -0.060699463, -0.0020713806, 0.014167786, -0.018600464, 0.031463623, 0.099365234, 0.042419434, -0.005367279, 0.0018424988, 0.051116943, 0.017745972, -0.02166748, 0.073791504, -0.034454346, -0.026931763, 0.06329346, -0.00040578842, -0.0075645447, 0.022262573, 0.035217285, -0.012229919, -0.00024068356, 0.0037994385, 0.007534027, 0.076293945, -0.021896362, -0.05621338, -0.036834717, -0.024993896, -0.022979736, -0.028045654, -0.062347412, 0.019439697, -0.010047913, 0.012023926, 0.01626587, 0.03262329, -0.000934124, -0.02810669, 0.014015198, 0.014602661, -0.027297974, 0.020187378, 0.02218628, 0.009101868, -0.03048706, -0.0008840561, -0.008934021, -0.050567627, 0.02885437, 0.09442139, -0.10998535, -0.058288574, -0.031982422, 0.110839844, -0.018829346, -0.021133423, -0.032348633, 0.007019043, 0.03466797, 0.063964844, 0.012298584, -0.009902954, -0.057128906, -0.02760315, -0.011955261, 0.0016851425, 0.006465912, 0.009490967, 0.023727417, 0.017868042, -0.032318115, -0.016189575, -0.037017822, 0.020385742, -0.003868103, -0.048217773, -0.0034160614, -0.02760315, 0.022857666, 0.045684814, 0.04119873, -0.03074646, -0.019882202, 0.0057525635, 0.015914917, -0.011054993, -0.02798462, -0.038024902, -0.015640259, 0.031463623, -0.006362915, 0.059661865, 0.026321411, 0.04537964, -0.011260986, 0.011329651, -0.03555298, -0.022003174, -0.030319214, -0.010757446, -0.0070152283, -0.0138168335, 0.04638672, 0.04559326, 0.082458496, 0.007095337, 0.029312134, 0.071777344, 0.040802002, -0.018310547, -0.029144287, 0.024856567, -0.005050659, 0.0015821457, -9.2327595e-05, 0.04626465, 0.026901245, 0.030731201, -0.02758789, 0.02017212, 0.055755615, -0.018585205, 0.01927185, 0.025863647, -0.01927185, 0.0022964478, 0.05709839, -0.022949219, -0.014030457, -0.025894165, 0.004234314, 0.0077400208, -0.0007176399, -0.015640259, -0.00074100494, 0.042175293, -0.03225708, 0.04284668, 0.020996094, 0.013534546, -0.037902832, -0.004886627, -0.017837524, -0.0029907227, 0.03555298, 0.015289307, 0.008117676, -0.03729248, 0.0031414032, 0.018051147, 0.010498047, 0.006679535, 0.015136719, -0.010543823, -0.010124207, 0.038482666, -0.044555664, -0.011955261, 0.010543823, -0.01725769, -0.00381279, 0.025817871, 0.009849548, -0.024856567, 0.0024719238, -0.0030117035, -0.024093628, 0.04257202, 0.032318115, -0.0055389404, -0.00084114075, 0.0021686554, 0.025970459, -0.0059432983, -0.00907135, 0.0036640167, 0.020202637, -0.035980225, 0.0077209473, -0.0015640259, -0.01600647, -0.00032830238, 0.03527832, 0.030654907, -0.008430481, 0.015213013, -0.008415222, -0.0062408447, 0.023986816, -0.017196655, -0.023925781, -0.05996704, 0.052612305, -0.01838684, 0.009880066, 0.03579712, 0.011940002, -0.02406311, 0.004421234, -0.035736084, 0.046905518, 0.0463562, 0.050598145, 0.034088135, 0.03237915, 0.0058784485, 0.0029029846, -0.009979248, 0.09033203, 0.005214691, -0.03326416, 0.003326416, -0.07940674, -0.002817154, 0.022506714, -0.045013428, -0.018081665, -0.0058288574, 0.01638794, -0.023452759, -0.0178833, 0.033111572, -0.015159607, 0.006778717, -0.001203537, 0.018676758, 0.0026397705, -0.024002075, -0.013511658, -0.023757935, -0.07946777, 0.0026550293, -0.014533997, -0.042388916, -0.007583618, 0.028076172, -0.018936157, -0.021392822, 0.01007843, 0.033111572, 0.05444336, 0.04876709, 0.008369446, -0.037322998, -0.012321472, -0.012893677, -0.06390381, 0.037994385, -0.040374756, -0.024307251, 0.006904602, -0.03640747, 0.014305115, -0.030929565, 0.052093506, 0.018920898, 0.0076446533, 0.0023040771, 0.061584473, -0.024993896, -0.014808655, -0.035247803, 0.03805542, -0.038482666, -0.03616333, 0.012962341, 0.01751709, -0.010169983, -0.011268616, -0.008575439, -0.030181885, -0.10253906, -0.03186035, -0.004722595, -0.056396484, 0.0011482239, -0.06097412, -0.07104492, -0.046966553, 0.017700195, 0.036590576, -0.017700195, 0.024032593, -0.023925781, 0.019119263, -0.017410278, -0.005584717, 0.050628662, -0.0015792847, -0.011054993, -0.044799805, 0.015350342, 0.0009407997, -0.013809204, -0.016921997, -0.013252258, 0.047088623, -0.024780273, 0.00712204, -0.02935791, 0.03491211, 0.02053833, -0.009643555, 0.0029678345, 0.019500732, -0.02470398, 0.013305664, -0.011352539, -0.037200928, 0.027740479, -0.048431396, -0.014633179, 0.012527466, 0.006439209, -0.009284973, -0.0056762695, -0.03805542, 0.026412964, -0.004924774, -0.008781433, -0.04598999, -0.0110321045, 0.0072631836, 0.046020508, 0.0340271, 0.013084412, 0.058685303, -0.030853271, 0.031402588, -0.007457733, -0.013145447, -0.026138306, -0.05392456, 0.09320068, -0.028625488, 0.015220642, -0.04559326, 0.039733887, -0.0039749146, -0.017028809, 0.01966858, -0.004501343, 0.018661499, -0.014656067, -0.008125305, 0.009254456, 0.029708862, -0.013847351, -0.0010852814, -0.0070266724, 0.0209198, -0.017166138, -0.0037822723, -0.07684326, 0.117370605, 0.033569336, 0.0038070679, 0.062683105, 0.059143066, 0.010147095, 0.026351929, 0.055999756, -0.0026226044, 0.02243042, 0.03503418, -0.010856628, -0.018341064, 0.0003247261, 0.030273438, 0.045562744, -0.014129639, 0.010978699, 0.011764526, -0.045837402, -0.041015625, 0.020935059, 0.0501709, 0.03048706, -0.032684326, -0.04550171, 0.005279541, 0.007587433, -0.07220459, 0.02897644, -0.00012981892, 0.005619049, -0.0118637085, 0.037902832, -0.00217247, 0.00030565262, 5.1379204e-05, -0.036712646, 0.028411865, 0.020477295, 0.02772522, -0.04486084, -0.01739502, 0.02671814, 0.031402588, -0.03286743, 0.0032081604, 0.004589081, -0.011711121, 0.032470703, -0.004371643, 0.02104187, 0.026641846, -0.00920105, 0.021224976, 0.009254456, -0.007232666, -0.036987305, -0.0030498505, 0.04852295, 0.0032310486, -0.016235352, -0.018798828, -0.026947021, 0.007587433, -0.044006348, -0.00044894218, 0.001739502, 0.0056991577, -0.0031986237, -0.012962341, -0.0435791, 0.022277832, -0.021438599, 0.0110321045, -0.0040130615, -0.019592285, 0.009742737, -0.023590088, -0.021835327, 0.010513306, 0.025390625, -0.029830933, 0.09118652, 0.021942139, 0.024307251, -0.020355225, -0.027420044, -0.036254883, -0.005634308, 0.0005249977, -0.008728027, 0.0016059875, -0.042907715, -0.005657196, 0.019851685, 0.083984375, -0.004337311, 0.025497437, -0.057678223, -0.034851074, -0.021865845, -0.029006958, 0.040527344, -0.038238525, -0.014915466, -0.037078857, 0.04876709, -0.004837036, -0.0209198, -0.026412964, 0.02557373, 0.022140503, 0.008628845, -0.019882202, 0.013679504, 0.007270813, 0.02319336, -0.019104004, -0.010658264, -0.01725769, 0.0129470825, -0.001124382, 0.025161743, 0.0016851425, 0.007221222, -0.04458618, 0.015052795, 0.0020885468, -0.030014038, 0.045166016, -0.05807495, -0.011886597, -0.04373169, 0.0690918, 0.05407715, -0.0004386902, -0.00881958, -0.00075531006, -0.023345947, -0.06112671, -0.016662598, -0.005973816, 0.029647827, -0.0137786865, -0.029067993, 0.028427124, -0.029006958, 0.010749817, 0.01374054, 0.0064849854, 0.031341553, -0.035003662, 0.008529663, -0.01222229, 0.0053596497, 0.03793335, -0.019058228, 0.030136108, 0.018203735, 0.0051612854, 0.02381897, -0.03591919, -0.015655518, -0.0026302338, -0.003080368, -0.0036354065, 0.047790527, 0.009567261, -0.07800293, 0.0041542053, 0.04510498, -0.033996582, -0.015525818, 0.027328491, 0.03933716, 0.004924774, -0.01939392, 0.070617676, -0.027816772, -0.0048713684, -0.017166138, -0.012512207, -0.0032997131, 0.012886047, -0.047668457, 0.012229919, -0.0078125, -0.03652954, 0.0046806335, -0.042175293, 0.037597656, -0.02810669, 0.03540039, 0.014846802, 0.014404297, -0.109313965, -0.005592346, 0.018630981, 0.025344849, 0.02633667, -0.036224365, 0.035339355, 0.045898438, -0.029785156, 0.012832642, -0.016967773, -0.07800293, -0.025009155, 0.0068473816, -0.0017995834, 0.009338379, 0.023422241, -0.046539307, -0.019104004, 0.007713318, 0.006427765, -0.019165039, -0.018936157, 0.0082473755, -0.03930664, -0.0022678375, 0.035064697, 0.0053863525, -2.8371811e-05, -0.013313293, -0.017105103, 0.011367798, 0.03729248, -0.03744507, 0.006626129, -0.055023193, -0.025726318, -0.04574585, 0.04434204, 0.0395813, 0.03326416, -0.013702393, 0.012779236, -0.010772705, -0.047821045, 0.0061912537, -0.014007568, -0.016311646, 0.026794434, -0.00046801567, 0.017593384, -0.011619568, 0.017501831, 0.04171753, -0.03579712, -0.005996704, -0.08343506, 0.020309448, -0.01802063, -0.018127441, 0.058410645, -0.015411377, 0.014854431, 0.015419006, 0.007347107, -0.016464233, -0.007511139, 0.0019359589, 0.0038051605, -0.02243042, -0.023849487, 0.022613525, -0.0063323975, -0.043701172, -0.038085938, 0.0112838745, -0.043029785, -0.01675415, 0.007091522, -0.036193848, 0.008079529, 0.00042915344, 0.0096588135, 0.017456055, 0.013160706, -0.020263672, 0.048034668, -0.038024902, -0.02532959, 0.010520935, 0.024642944, 0.02041626, -0.015853882, 0.008087158, 0.06298828, -0.03439331, 0.05886841, -0.031951904, -0.018096924, -0.00289917, 0.037231445, 0.04940796, 0.01259613, 0.010505676, -0.03137207, -0.008773804, -0.002527237, -0.0022773743, 0.012229919, -0.05014038, -0.025604248, 0.036865234, 0.043914795, 0.008140564, 0.02532959, 0.0027923584, 0.002439499, 0.02532959, -0.003211975, -0.0056877136, -0.012718201, -0.012863159, -0.0053977966, 0.01802063, 0.032073975, 0.005760193, 0.014335632, 0.050811768, 0.016311646, -0.0031223297, 0.0021743774, 0.009361267, -0.0076904297, -0.008636475, -0.0011930466, -0.025970459, -0.0064582825, 0.010116577, -0.024139404, 0.011619568, -0.013664246, 0.010025024, 0.04559326, 0.016845703, -0.013336182, -0.011398315, -0.007972717, 0.018753052, -0.034240723, 0.014801025, 0.0034828186, -0.01600647, -0.016601562, -0.0017652512, -0.004085541, 0.036621094, 0.04510498, 0.0037708282, 0.026687622, -0.017333984, 0.004333496, -0.019119263, -0.0072669983, -0.020736694, -0.018859863, 0.0014390945, 0.012619019, 0.008682251, -0.011512756, -0.046661377, -0.011650085, 0.028152466, -0.018920898, -0.028274536, -0.0012741089, 0.031951904, 0.010360718, 0.039001465, -0.0062179565, -0.05331421, 0.023635864, 0.052368164, -0.010910034, 0.062164307, -0.008331299, 0.021255493, 0.0018930435, -0.032226562, 0.016433716, -0.03314209, 0.047912598, 0.03540039, 0.0082473755, 0.022949219, 0.008483887, -0.012542725, 0.028152466, 0.028625488, -0.015213013, 0.04034424, 0.017211914, -0.0058288574, 0.007648468, 0.05947876, -0.01197052, 0.013916016, -0.02810669, 0.009857178, -0.0011672974, -0.02279663, -0.023391724, -0.024261475, 0.0057640076, 0.021347046, -0.0016021729, -0.019683838, -0.031402588, 0.018981934, -0.0024719238, -0.0059394836, -0.02720642, 0.025482178, 0.007247925, 0.0317688, -0.0068893433, -0.0034046173, -0.04638672, -0.079956055, -0.0014848709, -0.050354004, -0.075927734, 0.09765625, 0.008415222, -0.0340271, -0.016906738, 0.00088071823, 0.03010559, -0.075805664, -0.04083252, -0.03643799, 0.022445679, -0.014328003, 0.056274414, -0.05142212, -0.029556274, -0.043762207, 0.023468018, -0.097595215, -0.0155181885, -0.03390503, 0.00749588, 0.0064926147, -0.004634857, 0.022369385, 0.10266113, 0.0048599243, 0.00044822693, 0.022964478, -0.015792847, -0.030517578, 0.047851562, 0.01184082, -0.01928711, 0.008277893, 0.0068473816, -0.004425049, 0.05380249, 0.00793457, 0.01751709, -0.050811768, -0.026611328, -0.06665039, 0.010429382, 0.016540527, -0.014907837, 0.020477295, 0.002023697, -0.033355713, -0.0030555725, 0.0026683807, -0.027282715, 0.048217773, 0.06774902, 0.016021729, -0.028778076, -0.075927734, -0.013534546, -0.019805908, 0.025558472, 0.029022217, 0.030212402, 0.023040771, -0.0002872944, -0.0067214966, 0.0060157776, -0.017227173, -0.023620605, 0.0104522705, -0.021774292, -0.005290985, -0.020233154, -0.022109985, -0.009719849, 0.0026187897, -0.032714844, 0.0023059845, 0.072021484, -0.043548584, 0.025482178, -0.013442993, 0.011833191, 0.06427002, -0.02708435, 0.0023994446, -0.043304443, -0.0033512115, -0.006942749, 0.009994507, -0.0050201416, 0.025436401, -0.012329102, -0.03390503, 0.02583313, 0.0038547516, 0.029403687, 0.015411377, 0.046905518, 0.02154541, 0.06738281, -0.06097412, -0.03668213, -0.0501709, 0.0037975311, -0.0096206665, 0.016845703, 0.049621582, -0.04598999, 0.019332886, -0.0065841675, 0.02456665, -0.02381897, 0.03552246, 0.038726807, -0.009399414, 0.029174805]}, "B089NMPKBV": {"id": "B089NMPKBV", "original": "Brand: Techwood\nName: Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.\nFeatures: [\u2668 LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it's space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It's compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it's a perfect size for camping.\n[\u2668 FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food.\n[\u2668 HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n[\u2668 APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n[\u2668 GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.\n", "metadata": {"Name": "Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W", "Brand": "Techwood", "Description": "Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.", "Features": "[\u2668 LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it's space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It's compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it's a perfect size for camping.\n[\u2668 FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food.\n[\u2668 HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n[\u2668 APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n[\u2668 GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.035827637, 0.019592285, -0.0057754517, -0.012496948, 0.015296936, -0.003293991, 0.02468872, -0.03111267, -0.03555298, 0.01499939, 0.013839722, 0.033355713, -0.016296387, -0.038909912, 0.01965332, -0.019989014, 0.007858276, 0.0073013306, 0.0026874542, -0.027160645, -0.002040863, -0.022384644, -0.008323669, 0.051330566, 0.046417236, -0.028396606, -0.012672424, 0.036895752, 0.026443481, 0.018951416, 0.024459839, -0.021362305, 0.01335144, 0.014533997, -0.032104492, -0.05340576, -0.0070152283, 0.011695862, -0.021896362, 0.02381897, 0.005466461, -2.9802322e-07, -0.07611084, 0.04486084, -0.043640137, -0.047454834, 0.0067634583, -0.028137207, 0.012863159, -0.03225708, 0.002866745, 0.0546875, 0.024993896, -0.045532227, -0.010749817, 0.014320374, 0.03152466, -0.0013999939, 0.010894775, -0.03741455, -0.03878784, 0.017868042, 0.018997192, 0.025894165, -0.029266357, -0.024383545, 0.056915283, 0.006340027, -0.032928467, -0.039276123, 0.038726807, 0.02758789, -0.0003848076, 0.014282227, -0.059692383, -0.033203125, 0.026748657, -0.048431396, 0.03463745, -0.0017938614, -0.02027893, 0.0042762756, 0.013259888, -0.10015869, 0.04647827, -0.07208252, -0.0056648254, 0.017990112, 0.002986908, -0.011497498, -0.010810852, -0.06890869, -0.024795532, 0.074645996, 0.023223877, -0.018920898, -0.011146545, -0.055480957, 0.03387451, 0.040130615, 0.012084961, -0.047088623, 0.03930664, -0.004272461, -0.027954102, 0.061401367, 0.015144348, 0.030822754, -0.0075149536, 0.015289307, 0.0058670044, -0.054626465, 0.012283325, -0.0037841797, -0.021759033, 0.005962372, 0.0029697418, 0.008560181, 0.009132385, 0.006958008, -0.021911621, -0.008453369, -0.0069236755, 0.043060303, 0.050476074, 0.042114258, 0.014312744, 0.0025482178, -0.0287323, 0.030090332, -0.029220581, 0.015113831, 0.061584473, 0.016784668, 6.502867e-05, -0.024871826, 0.009407043, -0.0048980713, 0.011138916, -0.023132324, -0.029083252, -0.005344391, 0.03552246, -0.01876831, -0.025558472, -0.021469116, 0.037750244, 0.04006958, -0.0413208, -0.055725098, 0.033111572, 0.021255493, 0.04623413, 0.0030269623, -0.020706177, -0.060058594, 0.0039482117, -0.04397583, 0.030944824, -0.062805176, -0.002702713, 0.016830444, 0.0098724365, -0.015655518, -0.016296387, -0.042541504, 0.018173218, 0.004600525, 0.024841309, 0.028640747, 0.04168701, -0.0068473816, -0.01525116, 0.00025463104, -9.739399e-05, -0.02809143, -0.012290955, 0.02116394, 0.08782959, -0.1307373, -0.1026001, -0.053649902, 0.10614014, -0.040496826, -0.044799805, 0.051452637, 0.010757446, 0.08654785, 0.018722534, 0.013137817, 0.023162842, -0.009353638, -0.030212402, 0.0010232925, 0.008804321, 0.037506104, -0.036315918, 0.036132812, -0.012565613, -0.048950195, 0.008468628, -0.030014038, 0.028366089, 0.006290436, -0.037353516, 0.021606445, -0.026916504, 0.013908386, 0.06573486, 0.017852783, -0.027160645, -0.0060272217, 0.017059326, -0.059783936, -0.055419922, -0.002521515, -0.004535675, 0.038848877, 0.029388428, 0.014343262, 0.02067566, -0.0073509216, 0.020126343, -0.0082473755, 0.010658264, 0.012832642, -0.021194458, 0.020050049, 0.02230835, 0.018066406, 0.019714355, 0.015625, 0.023040771, 0.03781128, -5.018711e-05, 0.037353516, 0.062072754, 0.040374756, -0.018341064, -0.033325195, 0.021713257, 0.0030918121, -0.021438599, -0.0009937286, 0.0016012192, -0.015991211, 0.0044822693, -0.0058059692, -0.010299683, 0.02217102, 0.0054473877, 0.003288269, 0.019989014, -0.0026454926, -0.025512695, 0.050628662, -0.029296875, 0.0053482056, -0.055847168, 0.060516357, -0.028533936, 0.0368042, 0.056488037, -0.011428833, 0.028503418, 0.0031814575, 0.052612305, 0.047424316, 0.0082473755, -0.017547607, -0.004463196, 0.02708435, -0.0059051514, 0.0029029846, 0.033599854, 0.011581421, -0.025848389, -0.0027866364, 0.0234375, -0.010635376, 0.016967773, 0.018829346, 0.010055542, -0.00045228004, 0.02545166, -0.023529053, 0.009063721, 0.027297974, -0.05090332, -0.06298828, -0.010360718, -0.019485474, -0.055664062, 0.000770092, -0.023864746, -0.04748535, 0.020141602, 0.032714844, -0.0051956177, -0.030563354, -0.041870117, 0.016052246, -0.045288086, -0.0015106201, -0.021820068, 0.03744507, -0.0075149536, -0.022003174, -0.029693604, -0.063964844, 0.012214661, -0.015808105, 0.037139893, -0.0078125, 0.03869629, 0.0011892319, 0.005558014, 0.04019165, 0.01828003, 0.024810791, 0.010620117, -0.024124146, -0.045776367, -0.038970947, -0.015312195, 0.030212402, -0.055664062, -0.017089844, -0.040283203, 0.034942627, 0.020507812, 0.0006403923, 0.0023937225, 0.020492554, 0.0026683807, 0.0021324158, 8.058548e-05, 0.048187256, -0.00079250336, -0.055511475, 0.009544373, 0.0027866364, 0.0071029663, 0.028915405, -0.046875, -0.026000977, 0.015899658, 0.00068616867, -0.0060043335, -0.034423828, 0.033172607, -0.019180298, 0.020492554, -0.0102005005, 0.003522873, -0.08093262, -0.032836914, -0.057281494, -0.10144043, -0.09411621, -0.0178833, -0.011810303, -0.055877686, -0.00793457, 0.03427124, 0.0023403168, -0.026306152, 0.008255005, -0.0027923584, 0.002538681, 0.04006958, 0.022521973, -0.049224854, -0.041778564, -0.034301758, -0.022018433, 0.031158447, -0.036499023, -0.0087890625, 0.005722046, -0.009994507, 0.00541687, 0.017959595, 0.007255554, 0.027023315, 0.014350891, 0.025756836, 0.07470703, -0.0023899078, -0.025405884, -0.0018644333, 0.06719971, 0.0010004044, -0.008682251, 0.0181427, 0.006526947, -0.0056762695, -0.004875183, -0.049438477, -0.010978699, -0.02696228, 0.0079193115, -0.020462036, -0.011520386, 0.010154724, -0.07421875, 0.011779785, -0.042053223, -0.011871338, 0.05505371, 0.009170532, -0.03829956, 0.021652222, -0.032165527, 0.037017822, -0.02722168, 0.0513916, -0.00308609, 0.0075187683, -0.051635742, 0.01979065, -0.019760132, 0.04321289, 0.016738892, -0.015625, 0.005622864, 0.013015747, 0.028259277, -0.014266968, 0.027160645, 0.0010080338, -0.024612427, 0.02243042, 0.0059165955, -0.031051636, 0.010925293, -0.009429932, -0.0010032654, 0.01676941, -0.04626465, -0.031951904, -0.0045394897, -0.014122009, -0.0050201416, -0.00995636, -0.027893066, 0.001077652, -0.051483154, 0.0055236816, -0.0418396, 0.0054626465, 0.013687134, 0.041748047, 0.023223877, 0.005508423, 0.026748657, 0.055877686, 0.06561279, 0.033203125, -0.05670166, -0.018875122, -0.065979004, 0.009750366, 0.03250122, 0.015670776, -0.026763916, 0.043518066, -0.004825592, -0.0014381409, 0.0075302124, -0.011550903, 0.011421204, 0.025360107, -0.018188477, -0.0013055801, -0.054901123, 0.01411438, 0.011795044, 0.014778137, -0.015777588, -0.0079193115, -0.015640259, -0.0619812, 0.087768555, 0.044158936, -0.013648987, 0.038330078, 0.034942627, -0.002948761, 0.061553955, 0.019882202, 0.01864624, 0.039642334, 0.048095703, -0.0044174194, 0.022628784, 0.020904541, -0.030136108, 0.017623901, -0.006072998, -0.0552063, 0.019424438, 0.002981186, -0.029815674, -0.01651001, 0.010482788, 0.007965088, -0.026824951, -0.0061531067, -0.029403687, -0.0022354126, -0.046081543, 0.05026245, 0.021469116, -0.013427734, 0.0340271, -0.03677368, 0.032470703, -0.03086853, -0.00831604, 0.035217285, 0.038238525, 0.033935547, 0.009490967, -0.013908386, 0.024459839, -0.016067505, -0.0067329407, -0.032470703, -0.023223877, 0.02178955, 0.014564514, 0.01651001, 0.027542114, 0.010345459, 0.021911621, -0.010940552, -0.038970947, -0.03982544, -0.026443481, 0.031021118, 0.037994385, -0.009887695, -0.011566162, 0.03488159, -0.064208984, 0.028457642, 0.0015916824, -0.03665161, -0.0012159348, -0.024414062, -0.017654419, -0.06072998, -0.041931152, 0.012397766, -0.007545471, -0.035827637, 0.013633728, -0.014907837, -0.02015686, -0.018325806, 0.024230957, -0.0206604, -0.026947021, 0.035827637, -0.004058838, 0.058013916, 0.022338867, -0.0060577393, -0.0038261414, -0.037322998, -0.02067566, -0.015083313, -0.024658203, -0.018356323, -0.030197144, -0.024749756, 0.0021247864, 0.00630188, 0.048553467, -0.010215759, 0.03164673, -0.01777649, 0.019317627, -0.016647339, -0.04824829, 0.060546875, -0.052734375, -0.00655365, -0.042175293, 0.03765869, -0.0234375, -0.013320923, -0.01838684, 0.015411377, -0.0040740967, 0.036621094, -0.047088623, -0.019561768, 0.0012292862, 0.0079956055, 0.0043029785, -0.0074920654, -0.02015686, 0.01852417, 0.005317688, 0.037506104, -0.04928589, -0.021453857, -0.031097412, 0.015213013, 0.033935547, -0.0129776, -0.010955811, -0.023803711, -0.008033752, -0.061798096, 0.079956055, 0.06561279, -0.011009216, 0.0057907104, -0.017837524, -0.024337769, -0.036590576, 0.0066337585, -0.00083065033, 0.019058228, 0.004295349, -0.015380859, -0.0065231323, -0.037017822, -0.009544373, -0.038909912, -0.0063552856, -0.014083862, -0.012489319, -0.0010976791, -0.03491211, 0.02330017, 0.0051078796, 0.007381439, 0.051239014, -0.0029678345, -0.038391113, 0.05935669, -0.008407593, -0.017456055, -0.012214661, 0.005268097, -0.011100769, 0.020309448, -0.010063171, -0.07598877, 0.025680542, 0.05508423, -0.0050964355, 0.011154175, 0.04788208, -0.023376465, -0.004901886, 5.0485134e-05, 0.023620605, -0.009757996, -0.038085938, 0.036102295, -0.02444458, -0.015731812, -0.006942749, -0.033172607, 0.036865234, -0.03540039, -0.057373047, 0.03225708, -0.0009279251, 0.011734009, -0.07171631, 0.028121948, -0.013946533, -0.027694702, -0.053466797, -0.017929077, -0.01776123, 0.044525146, 0.04827881, -0.046905518, 0.050354004, -0.009414673, -0.055267334, 0.020751953, 0.01058197, 0.0074539185, 0.028289795, -0.0029754639, -0.0046463013, -0.011688232, 0.002193451, -0.03314209, -0.026229858, -0.034301758, -0.013801575, -0.019561768, 0.012687683, 0.027069092, -0.009399414, 0.008262634, 0.028900146, 0.03338623, -0.008026123, 0.017608643, 0.009651184, 0.020309448, 0.014640808, 0.008705139, 0.03186035, -0.087524414, -0.06011963, -0.07067871, -0.008598328, -0.02041626, 0.08227539, -0.031433105, 0.02973938, 0.023544312, -0.028259277, 0.0152282715, 0.034362793, -0.0657959, -0.0049362183, -0.016601562, -0.0064735413, -0.031585693, -0.019851685, 0.044067383, -0.037475586, -0.044769287, -0.024337769, 0.043823242, 0.024780273, 0.04296875, 0.059692383, -0.017120361, 0.0132751465, 0.036224365, 0.018432617, -0.05621338, 0.04168701, 0.029342651, -0.081970215, -0.023956299, -0.017425537, -0.004337311, -0.007255554, -0.022994995, -0.03387451, 0.038757324, -0.013717651, -0.006778717, -0.040161133, -0.042144775, 0.00944519, -0.046020508, 0.0042686462, -0.0340271, -0.04827881, -0.01612854, -0.06384277, -0.021728516, 0.017410278, 0.048797607, 0.038085938, 0.038116455, -0.057769775, 0.042022705, 0.09289551, -0.039855957, 0.07501221, -0.023895264, -0.017089844, 0.007873535, 0.023406982, 0.026000977, 0.044067383, 0.016983032, -0.006336212, -0.021118164, -0.00045847893, 0.011810303, 0.012191772, -0.03753662, -0.0063438416, 0.024810791, 0.04296875, 0.0026741028, 0.0058288574, 0.027191162, 0.023635864, -0.011161804, -0.0064964294, 0.022964478, -0.026412964, -0.01586914, -0.029373169, 0.011314392, 0.022232056, -0.0029754639, 0.0206604, 0.01626587, 0.04385376, 0.003818512, -0.013153076, 0.016464233, -0.025512695, -0.014732361, 0.0013055801, -0.0042648315, 0.030059814, -0.011398315, -0.026000977, 0.032928467, 0.001496315, 0.00040650368, 0.029968262, 0.016448975, -0.0030879974, 0.013999939, 0.03427124, 0.007648468, -0.058502197, 0.028518677, 0.004196167, 0.015609741, 0.02935791, -0.017959595, -0.028152466, 0.017181396, 0.040985107, 0.012229919, 0.08013916, -0.02947998, 0.009262085, -0.021560669, -0.0018720627, -0.027008057, -0.011833191, -0.0026664734, 0.01197052, -0.0035438538, -0.0025959015, -0.002117157, 0.0030708313, 0.020492554, -0.043029785, -0.0031757355, -0.015274048, 0.012451172, -0.010696411, 0.031188965, -0.025558472, -0.014915466, 0.049041748, 0.03945923, -0.02330017, -0.0070343018, -0.016738892, -0.013587952, 0.027175903, -0.024108887, -0.0018815994, 0.027694702, 0.012138367, 0.02760315, 0.010368347, -0.0007171631, -0.03439331, -0.023147583, -0.017410278, -0.0022773743, -0.008583069, -0.02468872, -0.001042366, -0.0012750626, 0.01373291, 0.031158447, -0.04360962, 0.019577026, 0.013328552, -0.000644207, 0.04156494, -0.019683838, 0.0035247803, -0.03744507, 0.013053894, 0.013450623, 0.0008225441, 0.020584106, 0.025177002, 0.019088745, -0.037872314, -0.032226562, 0.015327454, 0.009208679, -0.01751709, -0.003168106, -0.042663574, 0.011985779, -0.018325806, -0.034454346, -0.028320312, -0.012825012, -0.039794922, 0.038146973, 0.014381409, -0.013397217, -0.008270264, -0.004146576, 0.051483154, -0.024139404, 0.01638794, 0.020889282, 0.0030136108, 0.020736694, 0.068603516, -0.036590576, -0.06994629, -0.04623413, 0.021911621, -0.053344727, -0.01058197, 0.005065918, 0.0025749207, 0.025177002, 0.012123108, 0.060913086, 0.016586304, 0.04699707, -0.008613586, 0.015533447, -0.031280518, -0.03842163, 0.07946777, 0.028839111, -0.038024902, -0.014045715, 0.0070877075, 0.008590698, 0.057250977, 0.023803711, 0.0058937073, -0.072021484, -0.025665283, -0.07434082, 0.027008057, -0.04257202, 0.0032958984, -0.0014972687, 0.0042495728, -0.032714844, 0.023376465, 0.015060425, 0.02645874, 0.015197754, -0.0007944107, 0.018692017, -0.02130127, -0.03010559, -0.006275177, -0.014564514, 0.013328552, -0.016525269, -0.044708252, 0.032836914, 0.03164673, -0.039978027, 0.0413208, 0.05819702, -0.0039253235, -0.011940002, -0.026260376, 0.0010538101, -0.040161133, -0.009063721, -0.040802002, -0.024215698, -0.022216797, 0.026382446, 0.035217285, -0.033416748, -0.02796936, 0.0065574646, -0.009002686, -0.0038871765, -0.032836914, 0.045013428, -0.045410156, -0.019866943, 0.044799805, 0.009155273, 0.02166748, -0.04559326, -0.0657959, -0.024871826, 0.0057525635, 0.010040283, 0.000114023685, -0.0065193176, 0.04675293, 0.012626648, 0.05593872, -0.055023193, -0.054382324, -0.05239868, 0.025115967, -0.017852783, 0.025115967, 0.04071045, -0.011428833, 0.03137207, 0.0011720657, 0.016479492, -0.0047836304, 0.004688263, 0.02708435, -0.006401062, 0.0047187805]}, "B001AUPQVM": {"id": "B001AUPQVM", "original": "Brand: Weed Dragon\nName: Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder recommended)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2,000-degrees F\nThe Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval.\nMade in the U.S.A.\n", "metadata": {"Name": "Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit", "Brand": "Weed Dragon", "Description": "", "Features": "Quickly hooks up to any refillable propane tank (20lb cylinder recommended)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2,000-degrees F\nThe Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval.\nMade in the U.S.A.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0064926147, -0.021194458, -0.010986328, -0.024642944, -0.01600647, 0.0017786026, -0.006603241, 0.009170532, 0.0070495605, 0.0029945374, 0.0056037903, -0.011070251, -0.032989502, -0.033203125, 0.00699234, -0.03074646, 0.040405273, 0.0016403198, 0.02911377, -0.01939392, -0.011024475, 0.016021729, 0.008331299, 0.06329346, 0.02633667, -0.017089844, 0.026657104, -0.004852295, 0.053131104, 0.02935791, 0.04248047, -0.04425049, 0.066101074, 0.0107040405, -0.0826416, -0.064086914, -0.00034236908, -0.024490356, -0.068725586, 0.048736572, 0.0042686462, 0.0129776, -0.038513184, -0.060394287, -0.017349243, -0.046905518, 0.0057296753, -0.0063972473, 0.041259766, 0.07965088, -0.011360168, 0.005607605, -0.036254883, 0.008148193, -0.0020656586, -0.005455017, 0.068359375, -0.06439209, 0.026473999, -0.059631348, -0.035888672, -0.0084991455, 0.061035156, 0.03665161, -0.048919678, 0.009933472, 0.05090332, -0.014907837, 0.01272583, -0.056854248, 0.0036678314, 0.021209717, -0.010009766, 0.015960693, 0.009025574, -0.045288086, 0.042785645, -0.020812988, -0.020126343, 0.06414795, -0.002538681, -0.005718231, -0.009109497, -0.012420654, 0.01574707, 0.0118637085, -0.027572632, -0.020019531, -0.013702393, 0.0012321472, -0.02128601, 0.0013113022, -0.01159668, 0.01058197, -0.01499176, -0.0067596436, -0.021820068, -0.06262207, 0.036315918, 0.0047340393, 0.02078247, -0.042297363, 0.020812988, 0.0011930466, -0.01449585, 0.042663574, 0.007980347, -0.0048179626, -0.0075950623, 0.002450943, -0.017501831, -0.014472961, 0.0023517609, 0.0029087067, -0.031097412, 0.01789856, -0.010292053, -0.0050239563, -0.009399414, 0.009376526, 0.026062012, 0.050933838, 0.026916504, -0.004180908, -0.02935791, 0.012191772, 0.008033752, -0.08642578, -0.022003174, -0.00157547, -0.01939392, 0.01763916, 0.05102539, 0.046081543, 0.003435135, -0.005016327, 0.03250122, -0.032958984, 0.0003221035, -0.016799927, 0.022445679, 0.0034008026, 0.007270813, -0.0052375793, -0.019882202, 0.029647827, 0.03265381, -0.008453369, -0.024398804, -0.05407715, -0.031158447, 0.015563965, 0.009811401, -0.010047913, 0.035064697, -0.050872803, 0.0034103394, -0.02017212, 0.04324341, -0.007205963, 0.054870605, -0.011138916, -0.06463623, 0.040161133, -0.0049209595, 0.0013561249, 0.022918701, 0.0027637482, 0.038208008, -0.0019798279, 0.010795593, -0.024154663, 0.036468506, 0.03338623, 0.006538391, 0.034484863, -0.00076532364, 0.087646484, 0.052978516, -0.12609863, -0.062408447, -0.04650879, 0.17321777, -0.055023193, 0.019821167, -0.04269409, 0.020080566, -0.032226562, -0.017456055, 0.022399902, 0.011024475, 0.028076172, -0.020507812, -0.020614624, -0.012321472, 0.0008702278, -0.022705078, 0.014801025, -0.017791748, 0.0041160583, 0.040039062, -0.01058197, 0.031036377, 0.0026054382, 0.009986877, 0.00073480606, 0.0038490295, -0.008018494, 0.018463135, 0.064453125, -0.008049011, 0.024246216, -0.0030136108, -0.021087646, 0.016937256, 0.02079773, -0.0184021, 0.044281006, 0.0236969, -0.0039482117, 0.036193848, -0.020858765, 0.048858643, 0.013305664, 0.0055770874, -0.00072050095, -0.024887085, 0.00017905235, -0.0023002625, 0.022232056, -0.012184143, -0.0050849915, 0.06915283, 0.09765625, -0.037628174, -0.0017442703, 0.018127441, 0.052581787, -0.012619019, -0.0022335052, 0.005016327, 0.011009216, -0.02078247, 0.036743164, -0.017990112, -0.0069465637, 0.01676941, 0.018508911, -0.014656067, -0.0025424957, 0.008682251, -0.015083313, 0.03265381, 0.010276794, 0.0015001297, 0.0131073, -0.03756714, -0.007297516, -0.007843018, -0.0038146973, 0.022384644, 0.030273438, -0.002090454, 0.01663208, 0.009544373, -0.03463745, 0.03503418, 0.022979736, 0.016357422, -0.055725098, 0.01777649, 0.046936035, -0.029693604, 0.004245758, 0.055908203, -0.040252686, -0.045410156, 0.020767212, -0.0032596588, -0.016296387, -0.0011043549, -0.008338928, -0.0012950897, -0.010574341, 0.036010742, 0.07470703, 0.011009216, -0.005191803, -0.05001831, -0.0501709, -0.015808105, 0.020965576, -0.033935547, -0.007949829, 0.02923584, -0.024658203, 0.025894165, 0.027862549, 0.010749817, -0.021820068, -0.0040626526, 0.01687622, -0.0736084, 0.019714355, 0.003271103, 0.04171753, 0.007457733, 0.014678955, 0.0020561218, -0.017959595, -0.009590149, -0.014633179, 0.010375977, 0.0082092285, 0.017333984, -0.026123047, 0.00843811, 0.013809204, 0.0012302399, 0.022766113, 0.020568848, 0.05279541, 0.006450653, -0.0060310364, 0.050750732, -0.033111572, -0.018966675, -0.012420654, -0.0579834, 0.02671814, 0.019744873, -0.018005371, 0.011230469, -0.0015382767, -0.001698494, -0.005126953, -0.0014734268, 0.046447754, -0.015853882, -0.060913086, -0.014335632, 0.0013570786, -0.0010566711, -0.0041542053, -0.02798462, -0.044006348, 0.064086914, -0.00058698654, 0.01512146, 0.026550293, 0.01499939, -0.011413574, 0.014602661, 0.004219055, 0.03149414, -0.06915283, -0.0501709, 0.014961243, -0.032836914, -0.054534912, 0.0069732666, -0.022705078, -0.024139404, 0.05709839, 0.031036377, -0.007408142, -0.016540527, 0.012794495, 0.03012085, 0.039093018, -0.017333984, 0.028869629, -0.01033783, -0.022445679, -0.00047516823, -0.021377563, 0.020065308, -0.018630981, 0.020095825, 0.014152527, 0.016098022, 0.022476196, -0.01940918, 0.0038776398, 0.00945282, 0.052459717, 0.052734375, 0.0053863525, 0.0065727234, -0.03970337, -0.0003080368, 0.028579712, -0.01890564, -0.016860962, -0.008850098, -0.010955811, 0.0021152496, -0.012298584, -0.019729614, -0.023483276, -0.15026855, 0.037200928, 0.0032367706, -0.024749756, -0.023223877, -0.05883789, -0.09527588, -0.066345215, 0.009895325, 0.067871094, -0.033081055, 0.019058228, -0.03286743, 0.026809692, -0.013473511, 0.024902344, 0.018035889, -0.009666443, 0.011222839, -0.0038928986, 0.032684326, -0.05255127, -0.0051498413, 0.018081665, -0.059753418, -0.009086609, -0.0395813, 0.048431396, -0.0519104, 0.028533936, -0.046142578, 0.0032463074, 0.010070801, 0.0025119781, -0.008430481, 0.027893066, -0.008110046, -0.020095825, 0.012748718, -0.029312134, -0.054779053, -0.041046143, 0.011009216, -0.0024738312, -0.009788513, 0.004333496, -0.018707275, -0.009552002, 0.005332947, -0.010635376, -0.019226074, 0.004211426, 0.03024292, 0.023071289, -0.005065918, 0.026657104, 0.039367676, 0.033691406, 0.043182373, -0.024993896, -0.04196167, -0.025741577, 0.007171631, 0.008460999, -0.007789612, -0.04095459, 0.03427124, 0.013961792, -0.0045433044, -0.0061836243, -0.0011920929, 0.05239868, 0.02519226, 0.0004684925, -0.022735596, 0.015167236, 0.0231781, -0.007980347, 0.017669678, -0.005378723, -0.043823242, 0.015579224, -0.038146973, 0.046020508, 0.03314209, -0.006793976, 0.047058105, 0.010932922, 0.0043678284, 0.037231445, 0.03363037, -0.013534546, -0.011817932, 0.062927246, -0.02532959, -0.001458168, 0.001791954, 0.04055786, 0.018432617, 0.00062179565, -0.031036377, 0.0019016266, 0.016159058, -0.04119873, -0.031051636, 0.0049362183, 0.0013437271, 0.0077209473, 0.029022217, -0.02848816, -0.0016336441, -0.021026611, -0.023422241, 0.020507812, -0.04220581, -0.011795044, -0.018051147, -0.047088623, -0.029556274, 0.022018433, 0.01727295, -0.012710571, -0.017105103, 0.025878906, 0.026306152, 0.020629883, -0.061462402, -0.018112183, -0.020523071, 0.02722168, 0.009346008, -0.006298065, 0.0008559227, -0.034423828, 0.03491211, 0.002708435, -0.00037670135, -0.0032958984, -0.012214661, -0.024230957, 0.01576233, 0.020324707, -0.006038666, -0.011764526, 0.021133423, -0.023422241, -0.03201294, -0.012084961, -0.024673462, 0.01449585, -0.030166626, -0.03390503, -0.041503906, -0.04321289, -0.04046631, 0.0012407303, -0.00023758411, 0.0038318634, -0.0005979538, -0.035461426, 0.010307312, 0.022918701, -0.047454834, -0.015014648, -0.07342529, 0.0044403076, 0.009742737, -0.013038635, -0.019012451, -0.024749756, -0.021896362, -0.03186035, 0.020812988, -0.0050811768, -0.005142212, 0.0008916855, -0.042633057, 0.0023880005, 0.0015230179, 0.035980225, -0.01600647, 0.0143585205, -0.05038452, -0.055358887, -0.029953003, -0.023010254, 0.019302368, -0.012550354, -0.03479004, -0.04748535, 0.01436615, 0.0052261353, 0.02798462, 0.011314392, 0.00995636, -0.028244019, 0.04663086, -0.09313965, -0.037384033, -0.00894928, 0.004486084, 0.034301758, 0.01689148, -0.0039482117, -0.04208374, 0.04849243, 0.025939941, -0.030899048, -0.0012226105, -0.008430481, -0.004928589, 0.019851685, -0.05355835, 0.01751709, -0.04550171, -0.011260986, -0.026046753, 0.027542114, -0.016220093, -0.022369385, -0.022415161, -0.0035114288, -0.021575928, -0.07458496, -0.0020523071, -0.05026245, 0.031677246, -0.008483887, -0.018630981, -0.005519867, -0.03253174, 0.00349617, -0.031173706, -0.013191223, -0.0024700165, 0.0024986267, -0.016784668, -0.021118164, 0.008407593, -0.014511108, 0.016311646, -0.02420044, -0.06304932, 0.017318726, -0.0158844, -0.014961243, -0.01586914, -0.013282776, -0.033569336, -0.04473877, -0.05230713, 0.00605011, -0.0032615662, 0.03604126, -0.005859375, 0.030075073, -0.048706055, 0.02822876, -0.017745972, 0.004901886, -0.014045715, 0.034179688, 0.00573349, 0.03262329, 0.0076179504, 0.01171875, 0.031585693, 0.048309326, 0.006412506, 0.012664795, 0.029846191, -0.02507019, 0.024215698, -0.0103302, 0.020751953, -0.05999756, 0.028900146, -0.017028809, -0.009567261, -0.07531738, 0.023361206, 0.036010742, -0.01121521, 0.0034694672, -0.023376465, 0.050689697, -0.04473877, -0.0061149597, 0.0073776245, 0.009353638, -0.0025405884, 0.028533936, 0.0030021667, 0.0043563843, -0.0045776367, 0.007358551, -0.024291992, 0.025787354, 0.0063209534, -0.0062332153, 0.04321289, 0.016143799, -0.02230835, -0.022094727, 0.035949707, -0.037353516, 0.00868988, -0.097961426, 0.107299805, 0.022949219, -0.028823853, -0.034454346, 0.005405426, 0.0021686554, -0.03805542, -0.0006709099, 0.0368042, 0.029022217, 0.008674622, 0.03274536, -0.022109985, -0.042266846, 0.009292603, -0.014640808, 0.024246216, -0.06994629, 0.016159058, -0.02609253, 0.0035705566, -0.0051002502, -0.0011978149, -0.029373169, 0.027816772, -0.023590088, -0.030578613, -0.044281006, 0.05029297, -0.0054244995, -0.012084961, 0.08483887, 0.011169434, 0.022476196, 0.010978699, -0.02116394, -0.030075073, -0.017303467, 0.0032367706, -0.030807495, -0.015594482, -0.024658203, 0.028244019, -0.0033187866, -0.014335632, -0.019088745, 0.02734375, -0.02507019, 0.0101623535, -0.026260376, -0.016906738, -0.021972656, -0.03100586, 0.013977051, -1.001358e-05, -0.01676941, -0.002439499, 0.00042533875, 0.009803772, 0.03111267, 0.0030403137, 0.012611389, 0.017044067, 0.012969971, 0.009262085, 0.020111084, -0.034729004, 0.011383057, 0.0022716522, -0.039276123, -0.009414673, 0.02243042, 0.015579224, 0.02204895, -0.014556885, -0.012321472, -0.0423584, -0.0018644333, -0.012359619, 0.056610107, -0.03050232, 0.019714355, 0.007205963, 0.024307251, -0.024169922, -0.044830322, 0.027282715, -0.021957397, -0.13317871, -0.033843994, -0.016921997, -0.061431885, 0.025756836, -0.00598526, -0.0206604, 0.0022640228, -0.046661377, -0.024749756, -0.017028809, 0.056030273, -0.012512207, 0.041290283, -0.0019407272, -0.000110030174, 0.054382324, -0.023651123, 0.056793213, 0.014350891, 0.04006958, 0.016342163, 0.006351471, -0.040985107, -0.00116539, 0.032592773, -0.013221741, 0.036071777, -0.038269043, -0.024627686, 0.011940002, -0.023727417, 0.023971558, 0.04373169, -0.03930664, -0.0070991516, -0.007820129, 0.022445679, 0.028533936, -0.021499634, -0.008293152, 0.028915405, 0.011054993, -0.007545471, 0.0066604614, -0.0062675476, -0.016143799, 0.0019073486, 0.0052986145, 0.00043606758, -0.0006957054, -0.012565613, -0.019454956, 0.040008545, 0.016708374, 0.020324707, 0.020126343, -0.0385437, 0.0074157715, 0.02355957, 0.06744385, -0.022750854, -0.03994751, -0.020980835, -0.008270264, -0.0032749176, 0.009590149, 0.027786255, 0.006942749, 0.03741455, -0.022644043, 0.007675171, -0.022781372, 0.04348755, 0.033447266, 0.020309448, -0.10736084, -0.04638672, -0.008476257, -0.038208008, -0.00497818, 0.06585693, -0.023544312, -0.027160645, -0.016342163, -0.016967773, 0.028625488, -0.013519287, 0.020523071, -0.035003662, 0.0077590942, 0.01977539, -0.0335083, 0.0069618225, 0.0046653748, -0.025726318, 0.01876831, 0.007820129, -0.011917114, 0.010261536, -0.023040771, 0.007183075, -0.026351929, 0.001832962, -0.07489014, -0.00096559525, 0.08227539, -0.055877686, -0.012237549, -0.017944336, -0.007156372, -0.0041542053, -0.020385742, -0.03262329, 0.030929565, -0.004219055, -0.0093688965, 0.026657104, -0.021881104, -0.0019454956, -0.060333252, 0.012779236, -0.017974854, 0.01977539, -0.019882202, 0.05758667, -0.034088135, -0.05441284, -0.061706543, 0.012145996, -0.09429932, -0.0042304993, -0.0011634827, -0.015007019, -0.021148682, -0.038116455, -0.0071411133, 0.0021896362, 0.030181885, -0.02798462, 0.06341553, -0.057128906, -0.027542114, 0.017990112, 0.02658081, -0.015777588, -0.03387451, -0.00020170212, -0.0036468506, 0.033996582, 0.024383545, -0.00869751, 0.009124756, -0.002046585, 0.010894775, -0.016967773, 0.023742676, -0.03086853, 0.010467529, 0.01146698, -0.056884766, -0.07800293, -0.01209259, 0.034851074, 0.040527344, -0.009635925, 0.032165527, -0.023635864, -0.06359863, -0.04647827, -0.016342163, 0.02897644, 0.017440796, -0.016677856, -0.009109497, 0.013450623, -0.0158844, 0.02520752, 0.03036499, -0.036865234, 0.010398865, -0.029922485, -0.018554688, -0.020187378, -0.026123047, -0.018951416, -0.0020503998, 0.018951416, 0.050842285, 7.790327e-05, -0.016921997, 0.00079488754, -0.0423584, -0.009422302, -0.008056641, -0.05807495, 0.0069351196, -0.049926758, 0.015098572, 0.03918457, 0.002149582, 0.03778076, -0.006011963, -0.050079346, 0.0070343018, -0.009635925, -0.016937256, -0.025878906, -0.013404846, 0.0027542114, -0.03878784, 0.08074951, 0.0036563873, -0.13671875, -0.058563232, 0.019256592, 0.015296936, -0.015220642, 0.030776978, -0.017868042, 0.028244019, 0.03491211, 0.07672119, 0.005744934, 0.027954102, 0.029434204, 0.030258179, 0.02003479]}, "B07Z4H47Z2": {"id": "B07Z4H47Z2", "original": "Brand: STYDDI\nName: STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More\nDescription: STYDDI let you eat like a king!

      The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

      If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

      The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

      This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


      Specification:
      Material: Rubber PVC + Brass
      Length: 4 feet / 48 Inch/122 cm
      Gauge reading: 0 \u2013 60 PSI (1- 400kpa)
      Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
      Fryer Accessory Type: High Pressure Regulator
      Outdoor Living Product Type: Fryer Accessory
      Inlet Pressure: 25-250PSIG
      Outlet Pressure: 0-30PSIG
      Certificate: CSA\nFeatures: ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners.\nBUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy.\nA MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8\"-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It\u2019s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nEXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.\n", "metadata": {"Name": "STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More", "Brand": "STYDDI", "Description": "STYDDI let you eat like a king!

      The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

      If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

      The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

      This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


      Specification:
      Material: Rubber PVC + Brass
      Length: 4 feet / 48 Inch/122 cm
      Gauge reading: 0 \u2013 60 PSI (1- 400kpa)
      Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
      Fryer Accessory Type: High Pressure Regulator
      Outdoor Living Product Type: Fryer Accessory
      Inlet Pressure: 25-250PSIG
      Outlet Pressure: 0-30PSIG
      Certificate: CSA", "Features": "ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners.\nBUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy.\nA MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8\"-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It\u2019s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nEXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.027359009, -0.044006348, -0.00258255, -0.04525757, -0.0362854, -0.008575439, -0.010795593, 0.025726318, -0.0046081543, -0.0054855347, -0.019302368, 0.0011291504, -0.0027446747, -0.030410767, 0.020599365, -0.027435303, 0.037872314, -0.016998291, 0.000467062, -0.0046463013, -0.01423645, 0.032104492, -0.006866455, 0.056396484, 0.036468506, -0.018630981, 0.021484375, 0.042053223, 0.008598328, 0.015571594, 0.031280518, -0.02722168, 0.034210205, 0.030227661, -0.048919678, -0.03289795, -0.0073661804, -0.004650116, -0.046447754, 0.04559326, -0.010879517, 0.016311646, 0.0037288666, 0.023345947, -0.01739502, -0.034973145, -0.013725281, -0.049865723, 0.016357422, 0.034484863, -0.010475159, 0.02243042, 0.0034122467, -0.03677368, -0.02267456, -0.056884766, -0.00970459, -0.011764526, 0.017990112, 0.02670288, -0.009941101, 0.010307312, 0.0064048767, -0.010627747, -0.004623413, 0.017654419, 0.061645508, -0.0154418945, 0.043762207, -0.008415222, -0.018188477, 0.032470703, 0.013145447, -0.014183044, -0.023330688, 0.0031738281, 0.023529053, -0.00046873093, 0.004776001, 0.00096702576, 0.017456055, -0.012321472, 0.019897461, -0.0052986145, 0.005706787, 0.01525116, -0.008651733, -0.025970459, -0.018844604, -0.009773254, -0.017868042, -0.009925842, -0.0073661804, 0.005012512, -0.025039673, -0.002916336, -0.0446167, -0.09674072, 0.038970947, 0.03201294, 0.05706787, -0.045043945, 0.062683105, 0.015350342, -0.0032730103, 0.08984375, 0.022872925, 0.028945923, 0.020980835, -0.018371582, 0.022903442, 0.015731812, 0.01878357, -0.02128601, -0.05090332, 0.021942139, 0.033691406, -0.041168213, 0.01852417, -0.026000977, 0.0021076202, 0.032073975, 0.024658203, -0.07220459, -0.022399902, -0.0152282715, -0.02128601, -0.04788208, -0.04244995, 0.023025513, 0.0010519028, 0.009284973, 0.031555176, 0.057128906, 0.0042304993, -0.013549805, 0.047668457, -0.00015199184, -0.013381958, 0.044708252, -0.011398315, -0.0317688, -0.005706787, -0.006401062, -0.04147339, 0.02508545, 0.0011024475, -0.00042581558, 0.03527832, -0.04534912, -0.048736572, -0.043395996, 0.042633057, 0.011566162, -0.050750732, 0.012542725, -0.0007419586, -0.009025574, -0.023147583, -0.04284668, 0.002521515, -0.023117065, -0.03314209, -0.017745972, -0.04168701, 0.037109375, 0.019439697, 0.013214111, 0.02784729, 0.054870605, 0.032409668, 0.041015625, 0.051452637, 0.02619934, -0.0037517548, -0.0074920654, -0.0368042, 0.07647705, 0.09490967, -0.17126465, -0.08795166, -0.06530762, 0.13061523, -0.042541504, 0.0071983337, -0.036621094, 0.019134521, -0.03781128, 0.0045318604, 0.008132935, 0.038330078, 0.021957397, -0.015129089, -0.008354187, -0.028533936, -0.00022780895, -0.02128601, 0.029159546, -0.029205322, 0.017578125, -0.091308594, -0.0038318634, 0.0045661926, 0.012794495, 0.0362854, -0.0113220215, -0.002439499, 0.030792236, 0.03604126, 0.024108887, -0.0068130493, -0.008148193, 0.016571045, -0.042419434, -0.06964111, -0.021865845, -0.006778717, 0.009765625, -0.017791748, -0.002620697, 0.017364502, -0.030899048, 0.0064048767, 0.049957275, 0.022949219, -0.027191162, 0.0013399124, -0.027313232, 0.034332275, -0.013763428, 0.018478394, 0.008628845, 0.070373535, 0.07080078, -0.0054893494, -0.008049011, 0.05706787, -0.036102295, 0.019180298, 0.018692017, 0.012008667, -0.022613525, -0.046417236, -0.03604126, -0.035949707, -0.052368164, 0.003490448, -0.03363037, -0.024047852, -0.030181885, -0.0058670044, -0.013336182, 0.05303955, 0.021713257, -0.022155762, 0.039123535, -0.030151367, 0.03781128, -0.03817749, 0.0037765503, -0.010383606, 0.024261475, 0.038146973, -0.020874023, 0.02458191, 0.0034599304, 0.026321411, 0.027832031, -0.028274536, 0.005722046, 0.011360168, 0.024932861, 0.012435913, -0.008651733, -0.05899048, -0.027542114, -0.018371582, 0.022232056, 0.010772705, -0.027236938, 0.0154953, 0.016525269, 0.042755127, -0.004714966, 0.05807495, 0.0036792755, 0.005180359, -0.02949524, 0.017654419, 0.016036987, 0.050567627, -0.0046539307, -0.0013685226, -0.008140564, 0.008682251, -0.013206482, 0.07519531, 0.025741577, 0.0076179504, -0.018981934, 0.03564453, 0.02897644, -0.06555176, 0.037109375, 0.013305664, -0.02911377, 0.006439209, 0.018447876, 0.008903503, 0.00027799606, -0.02381897, 0.04623413, 0.038269043, -0.042419434, 0.058898926, 0.02658081, -0.00043559074, 0.028579712, 0.030685425, 0.024642944, -0.041290283, 0.011001587, -0.0006175041, -0.006011963, 0.026809692, 0.007003784, -0.03945923, 0.014015198, -0.045196533, 0.030029297, 0.050598145, -0.0031223297, 0.00484848, -0.0075645447, 0.0033626556, 0.00881958, -0.0010852814, -0.029769897, -0.0390625, -0.07421875, -0.053466797, -0.0395813, 0.013031006, 0.003068924, -0.040649414, -0.059387207, 0.037750244, -0.00078725815, 0.008804321, -0.02671814, 0.041534424, -0.011474609, -0.013343811, -0.025543213, -0.00091314316, 0.01727295, 0.00049209595, -0.048431396, 0.008598328, -0.07348633, -0.025115967, -0.015556335, -0.07159424, -0.035125732, 0.07196045, -0.015106201, -0.039489746, -0.038391113, -0.0076408386, 0.0031337738, 0.04522705, 0.008155823, -0.041046143, -0.032165527, -0.044403076, -0.019821167, 0.021881104, -0.025848389, -0.0039711, 0.014091492, 0.0026474, 0.021514893, -0.0071754456, 0.034820557, 0.042816162, 0.010025024, 0.034240723, 0.044952393, 0.002796173, -0.01928711, -0.026107788, 0.009307861, -0.008338928, -0.015335083, 0.0068626404, 0.00774765, -0.0020198822, -0.007575989, -0.016403198, -0.017471313, 6.264448e-05, 0.003856659, -0.017288208, 0.0056419373, 0.003522873, -0.07299805, 0.008018494, -0.039398193, 0.02128601, 0.010665894, -0.025161743, 0.025497437, -0.018661499, -0.0023727417, -0.029678345, 0.0024089813, -0.029922485, 0.0043563843, -0.044830322, 0.0021572113, 0.057800293, -0.06439209, 0.02748108, 0.02708435, -0.008468628, -0.012954712, -0.005428314, 0.00623703, -0.010810852, 0.0020866394, -0.015357971, -0.031188965, -0.05480957, -0.010261536, 0.021377563, 0.051086426, 0.033813477, -0.02998352, 0.025146484, 0.0012178421, -0.08685303, -0.039733887, -0.052124023, 0.010673523, -0.014961243, -0.039276123, -0.04888916, -0.092285156, 0.0054740906, -0.042816162, 0.008682251, -0.011367798, 0.05911255, 0.023864746, -0.0004930496, 0.113464355, 0.045532227, 0.04498291, 0.005428314, -0.00059461594, -0.009597778, -0.027313232, 0.05014038, 0.0043296814, -0.04260254, -0.012435913, 0.014907837, 0.0010023117, -0.012619019, -0.026885986, -0.017745972, 0.07141113, -0.0061149597, -0.015296936, 0.02255249, 0.006664276, 0.005054474, -0.004863739, 0.015449524, -0.015808105, -0.012756348, 0.009613037, -0.061035156, 0.04232788, 0.045715332, -0.019927979, 0.0064201355, 0.0043907166, 0.004058838, -0.015899658, 0.04473877, -0.005355835, 0.022262573, 0.01158905, 0.023010254, -0.06161499, 0.003572464, -0.011940002, 0.0066452026, -0.0029258728, -0.02949524, 0.020858765, -0.027450562, -0.016571045, -0.012229919, 0.0029582977, -0.014373779, 0.011817932, 0.020889282, -0.044036865, -0.02218628, -0.013122559, -3.5762787e-06, 0.013717651, -0.024230957, 0.0071029663, -0.001534462, 0.00349617, -0.02381897, -0.0085372925, -0.004924774, 0.005317688, 0.00843811, 0.026412964, 0.014282227, -0.010215759, -0.0008916855, 0.012161255, -0.030441284, 0.025421143, 0.020599365, 0.022338867, -0.0037078857, -0.052520752, 0.03543091, -0.011764526, -0.013763428, 0.030441284, -0.0037345886, -0.06210327, -0.0093688965, -0.0020599365, -0.0059318542, -0.031829834, -0.0055351257, -0.053100586, -0.027145386, -0.005016327, -0.043060303, 0.0012159348, -0.0041275024, 0.0020523071, -0.02268982, -0.02330017, -0.015197754, -0.0039043427, -0.017654419, -0.023834229, -0.0021400452, 0.033721924, -0.0036582947, 0.017562866, -0.035369873, -0.0050201416, -0.0524292, 0.01247406, 0.032165527, 0.0010719299, 0.010673523, -0.012069702, -0.0007944107, 0.009048462, 0.03479004, -0.034729004, -0.014343262, -0.030731201, -0.0068893433, 0.020996094, 0.040893555, 0.08111572, -0.029968262, 0.014427185, -0.016998291, 0.03591919, -0.061340332, 0.028121948, 0.0026607513, -0.0061035156, -0.0413208, -6.9737434e-06, 0.061035156, -0.01826477, 0.016845703, 0.002948761, 0.02909851, 0.0033798218, -0.018447876, -0.11102295, -0.029846191, -0.002790451, -0.0022716522, 0.016845703, -0.016555786, 0.00069093704, 0.023132324, 0.05517578, 0.02973938, 0.011268616, -0.015594482, -0.012748718, 0.015853882, 0.027297974, -0.021865845, 0.0026073456, -0.025863647, -0.0035381317, -0.033172607, 0.017852783, 0.01133728, -0.015174866, -0.0052757263, -0.013061523, -0.009742737, -0.046173096, -0.050750732, 0.021759033, 0.07550049, 0.016448975, -0.044525146, 0.0025501251, -0.0026302338, -0.017745972, -0.01550293, 0.051208496, 0.024490356, -0.062561035, -0.008140564, -0.005874634, 0.0033721924, -0.0021648407, -0.0031738281, 0.03137207, -0.029693604, 0.031555176, 0.04574585, 0.002866745, -0.001080513, -0.03250122, -0.00095653534, -0.022949219, -0.0025100708, -0.0014705658, -0.011459351, -0.010406494, 0.013191223, -0.005836487, -0.027328491, 0.04046631, 0.0014600754, 0.0021629333, -0.0637207, 0.018203735, 0.044891357, -0.024749756, 0.07043457, -0.06939697, 0.029067993, 0.031585693, -0.026535034, 0.05480957, 0.0072364807, -0.030960083, -0.032440186, -0.01864624, -0.0032653809, 0.00046491623, 0.048431396, 0.021514893, 0.011878967, -0.06384277, 0.0023021698, -0.000998497, 0.029418945, 0.021591187, -0.047698975, 0.020355225, -0.026107788, -0.00868988, 0.038146973, 0.01713562, -0.010894775, 0.007949829, 0.028427124, -0.029205322, -0.03475952, 0.02041626, 0.010108948, 0.02142334, -0.013908386, -0.050354004, 0.048431396, 0.018371582, -0.053649902, -0.010543823, -0.023345947, 0.006603241, -0.012023926, -0.008972168, -0.0024871826, 0.00374794, 0.0070610046, 0.0020160675, 0.066711426, 0.015792847, -0.047180176, -0.026641846, 0.0009737015, 0.01864624, -0.015419006, 0.04647827, -0.013839722, -0.0647583, 0.0074882507, 0.016067505, 0.033294678, -0.039886475, -0.01852417, -0.025253296, -0.019256592, -0.02734375, -0.041107178, 0.021972656, 0.040863037, -0.05432129, -0.051940918, -0.008377075, 0.004184723, 0.022857666, -0.0154953, 0.054534912, 0.041992188, -0.015525818, 0.030075073, -0.00050878525, -0.014854431, 0.005630493, 0.0062217712, -0.058288574, -0.06072998, -0.018630981, -0.013504028, -0.02116394, -0.018066406, -0.019897461, 0.044769287, -0.018173218, -0.005706787, -0.044067383, -0.02557373, -0.012237549, -0.021911621, 0.01374054, -0.0028514862, 0.00957489, -0.036834717, -0.013519287, -0.09838867, -0.046844482, -0.010345459, 0.014076233, 0.018829346, 0.025558472, 0.0032024384, 0.01473999, -0.050201416, 0.00762558, 0.019760132, -0.041137695, -0.022598267, 0.0017538071, 0.01902771, 0.040405273, -0.027542114, 0.0019216537, -0.0067329407, 0.00079631805, -0.027755737, 0.027374268, -0.049438477, -0.056030273, 0.006587982, 0.06744385, 0.00705719, -0.0022068024, 0.008049011, -0.0036010742, -0.011756897, -0.01638794, -0.021011353, -0.021026611, -0.0025615692, -0.027572632, -0.054992676, -0.010871887, -0.02986145, -0.009529114, -0.033050537, 0.027038574, -0.02772522, 0.04083252, -0.0076446533, -0.01461792, -0.02218628, -0.026443481, 0.017456055, -0.00082731247, 0.023529053, -0.0043563843, 0.016296387, -0.018127441, -0.0034275055, 0.02986145, 0.0034656525, 0.017242432, -0.06542969, 0.014251709, -0.01096344, -0.012504578, -0.018615723, -0.02305603, 0.00049829483, -0.039764404, 0.018051147, 0.012817383, 0.006187439, 0.023422241, 0.021087646, 0.043701172, -0.02885437, 0.025756836, -0.0062828064, -0.015731812, -0.016586304, -0.0024528503, 0.018173218, -0.027435303, -0.025848389, 0.0072250366, -0.04675293, 0.01828003, 0.008811951, 0.0045547485, 0.02973938, -0.059570312, 0.023284912, 0.012992859, 0.021942139, -0.015563965, -0.021606445, 0.003271103, 0.01852417, 0.012374878, 0.042999268, -0.016067505, 0.016586304, 0.006134033, -0.0073661804, 0.03173828, -0.026611328, 0.041290283, 0.025985718, -0.043121338, -0.070373535, -0.030395508, -0.012519836, -0.024139404, 0.0013446808, 0.05529785, -0.014076233, 0.03668213, -0.0022563934, 0.0052604675, 0.073791504, 0.016464233, 0.030471802, -0.059448242, 0.017715454, 0.03753662, -0.011253357, -0.0024681091, -0.018615723, 0.002456665, 0.0025100708, 0.021102905, 0.0056533813, 0.02368164, -0.0184021, 0.0014686584, -0.016799927, -0.011184692, -0.007751465, 0.0054779053, 0.011985779, -0.032684326, 0.013496399, -0.034088135, -0.064819336, -0.010269165, -0.016906738, -0.04208374, 0.057037354, 0.026824951, 0.00016593933, 0.027893066, -0.0046691895, -0.020370483, -0.02885437, -0.005706787, 0.024978638, -0.021865845, -0.003042221, 0.023086548, 0.0023841858, -0.064208984, -0.0715332, 0.040222168, -0.0892334, -0.028121948, -0.01675415, 0.035858154, 0.058929443, 0.028915405, 0.027191162, 0.057495117, 9.6559525e-05, 0.011657715, -0.027801514, -0.02268982, -0.008926392, 0.036621094, 0.007987976, -0.026672363, -0.062316895, 1.7285347e-05, 0.018966675, 0.021148682, 0.035827637, 0.029281616, -0.013946533, 0.008529663, -0.019699097, -0.021774292, -0.024627686, -0.027023315, 0.032958984, 0.004348755, -0.019226074, 0.014472961, 0.04550171, 0.008407593, 0.01626587, -0.03579712, 0.026916504, -0.042999268, -0.062194824, -0.023727417, -0.023468018, 0.026794434, 0.03857422, -0.026031494, 0.036956787, 0.03955078, -0.026107788, -0.0013713837, 0.012710571, 0.031082153, 0.029449463, 0.023605347, 0.037200928, 0.026062012, -0.016357422, 0.0259552, -0.052703857, -0.030380249, 0.03237915, -0.025436401, -0.01576233, -0.013793945, -0.021072388, -0.015701294, -0.043701172, -0.009132385, -0.019714355, -0.02319336, 0.04925537, 0.021606445, 0.03817749, -0.019638062, 0.032073975, -0.007881165, -0.04763794, 0.015777588, 0.028060913, 0.02217102, -0.00970459, -0.021087646, 0.013008118, 0.059570312, 0.019500732, -0.07196045, -0.0501709, 0.05593872, 0.057891846, -0.054473877, 0.062286377, -0.019546509, 0.0072288513, 0.047088623, -0.039367676, -0.000749588, -0.015052795, 0.03338623, -0.004081726, -0.003042221]}, "B07DTNNJR9": {"id": "B07DTNNJR9", "original": "Brand: Good Life, Inc\nName: Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications\nDescription: Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

      The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

      Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

      The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

      Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

      All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

      The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

      We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It's the only product in it's class to offer such a guarantee!
      \nFeatures: MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps.\nBUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements.\nCUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres.\nEASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts.\nGUARANTEED We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It's the only product in its class to offer such a guarantee!\n", "metadata": {"Name": "Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications", "Brand": "Good Life, Inc", "Description": "Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

      The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

      Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

      The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

      Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

      All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

      The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

      We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It's the only product in it's class to offer such a guarantee!
      ", "Features": "MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps.\nBUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements.\nCUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres.\nEASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts.\nGUARANTEED We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It's the only product in its class to offer such a guarantee!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0020332336, -0.009223938, -0.0024795532, -0.018630981, -0.019454956, 0.004245758, -0.023422241, -0.015655518, -0.03540039, 0.012878418, -0.00047898293, -0.014373779, -0.03353882, -0.036010742, -0.0005440712, -0.05279541, 0.017166138, 0.040222168, 0.03491211, -0.008476257, -0.007068634, 0.012084961, -0.0044021606, 0.02746582, 0.017440796, -0.015975952, 0.03225708, -0.0138549805, 0.0039634705, -0.03152466, 0.0068588257, 0.0002975464, 0.05596924, -0.03491211, 0.0013074875, -0.014274597, 0.008811951, -0.041656494, -0.055419922, 0.031921387, 0.02861023, 0.008117676, 0.01725769, -0.009757996, -0.03488159, 0.034606934, -0.015609741, -0.010292053, 0.013961792, 0.015022278, 0.0075798035, 0.011421204, 0.0060043335, 0.036224365, -0.015563965, 0.003730774, -0.0031375885, -0.020614624, 0.021636963, 0.013656616, -0.008094788, -0.0058555603, 0.01134491, 0.0025863647, -0.033691406, 0.011482239, 0.02180481, -0.014457703, -0.008735657, -0.04360962, 0.011878967, -0.0067977905, 0.029006958, -0.054656982, -0.02861023, 0.017822266, -0.00919342, -0.011482239, 0.009567261, -0.025177002, 0.0012750626, -0.017089844, 0.043518066, -0.019317627, 0.021835327, 0.010528564, -0.027008057, -0.018966675, -0.003396988, -0.038208008, -0.012084961, 0.019897461, -0.0077400208, -0.03390503, -0.03564453, -0.03338623, -0.030761719, -0.070007324, 0.037902832, -0.024734497, 0.04748535, -0.04360962, 0.000849247, 0.0009098053, -0.028503418, 0.08129883, -0.010612488, 0.0052719116, -0.011245728, 0.006439209, 0.009712219, -0.061462402, 0.009056091, -0.02456665, -0.01096344, 0.033325195, -0.010536194, 0.010040283, 0.004135132, 0.03366089, 0.022964478, 0.0011987686, 0.07159424, 0.014854431, 0.00055933, 0.03918457, -0.06365967, -0.03942871, 0.019729614, 0.0104904175, 0.00035309792, 0.0098724365, -0.033996582, 0.009841919, -0.01826477, 0.0010375977, 0.02281189, 0.024993896, 0.0061798096, -0.0010242462, 0.0077705383, -0.004081726, 0.02330017, 0.00466156, 0.052612305, 0.0019779205, 0.013168335, 0.002445221, 0.038391113, 0.051361084, -0.03604126, 0.03274536, 0.021652222, 0.014846802, -0.028533936, -0.042816162, 0.011886597, -0.052124023, 0.0335083, -0.06591797, -0.007194519, -0.026809692, -0.0121536255, -0.03060913, -0.056640625, 0.020736694, 0.0020656586, -0.0051612854, -0.007873535, -0.028076172, 0.0043678284, 0.037872314, -0.0012607574, -0.01927185, -0.0018138885, -0.026260376, -0.032562256, 0.06573486, 0.075805664, -0.10638428, -0.068847656, -0.051940918, 0.12176514, -0.022109985, -0.014602661, -0.06222534, 0.0025177002, -0.041809082, 0.036224365, -0.014434814, 0.04699707, -0.016540527, -0.03753662, -5.0246716e-05, -0.0018424988, 0.01687622, -0.04147339, 0.009132385, -0.016830444, 0.0017223358, 0.012756348, 0.026473999, -0.018356323, 0.010223389, -0.018539429, -0.0010356903, -0.0048332214, 0.010002136, -0.006752014, 0.007843018, 0.0096206665, -0.009674072, -0.010955811, -0.00020766258, 0.00434494, 0.033599854, -0.02684021, -0.015396118, 0.028564453, -0.022537231, 0.045654297, 0.029937744, 0.029968262, -0.002243042, 0.015144348, 0.000790596, 0.00016272068, -0.008613586, 0.019073486, 0.016525269, -0.0023441315, -0.0024909973, 0.029037476, 0.0003900528, -0.009483337, 0.025970459, 0.09222412, -0.007507324, 0.010948181, 0.013664246, -0.015571594, -0.082458496, -0.06762695, 0.031982422, -0.07867432, -0.046875, 7.277727e-05, 0.05267334, -0.030197144, -0.030883789, 0.014976501, 0.006149292, 0.05291748, 0.070007324, 0.017089844, 0.026260376, -0.014381409, 0.006351471, 0.0030231476, -0.0047454834, 0.0010032654, 0.017120361, 0.017730713, -0.009162903, -0.025726318, -0.029754639, 0.013145447, 0.013656616, 0.050720215, -0.04486084, -0.008178711, -0.036132812, 0.004463196, 0.057647705, -0.012229919, 0.018096924, -0.02798462, -0.010795593, 0.0058288574, 0.023956299, 0.0013847351, 0.00068473816, -0.0014982224, -0.008514404, 0.024261475, -0.014060974, 0.007648468, -0.0050201416, 0.005218506, 0.019577026, 0.024032593, 0.047546387, 0.0050354004, 0.015357971, 0.02394104, 0.0029754639, 0.029846191, -0.0032863617, 0.02670288, -0.010795593, -0.046661377, 0.023529053, 0.017105103, -0.018417358, -0.013938904, 0.010391235, -0.013069153, -0.0033950806, -0.009552002, -0.035125732, 0.006931305, 0.016952515, 0.032470703, -0.0011968613, 0.0095825195, 0.0068473816, -0.025421143, 0.030654907, 0.012321472, 0.03463745, 0.008171082, 0.03024292, 0.019638062, -0.012359619, 0.033172607, -0.028427124, -0.040039062, -0.012138367, -0.07116699, -0.007980347, 0.036834717, -0.0039711, 0.024780273, 0.07232666, 0.008529663, -0.0013513565, 0.0066604614, 0.05441284, 0.008087158, -0.05029297, 0.02255249, -0.0013217926, -0.014854431, 0.05014038, -0.028015137, -0.013748169, 0.00491333, 0.01864624, -0.03942871, -0.036376953, 0.03729248, -0.025558472, 0.005718231, -0.0067977905, 0.031402588, -0.008995056, -0.020401001, -0.018035889, 0.0045394897, -0.054382324, -0.021255493, -0.017440796, -0.043426514, -0.012718201, 0.05508423, -0.007080078, -0.07080078, 0.01852417, -0.003047943, 0.030426025, 0.0071868896, 0.029296875, -0.07922363, -0.035095215, -0.057037354, 0.017456055, -0.011528015, -0.038482666, 0.032165527, 0.0040359497, -0.0065956116, -0.021377563, 0.024978638, -0.0035247803, 0.026763916, 0.045318604, 0.08947754, 0.053710938, 0.04660034, -0.03982544, 0.029876709, 0.04763794, -0.07128906, -0.020523071, 0.03842163, 0.027114868, -0.0033836365, -0.046447754, -0.038635254, -0.0340271, -0.031082153, -0.0025234222, -0.004032135, -0.03768921, -0.0154418945, -0.08795166, -0.037139893, -0.035369873, 0.03186035, -0.004486084, 0.01285553, -0.025787354, 0.009506226, -0.040252686, -0.015579224, 0.0014696121, 0.019805908, 0.0028305054, 0.029418945, -0.040527344, 0.014572144, -0.023147583, -0.006210327, 0.00957489, 0.01272583, 0.03186035, -0.01927185, -0.032928467, 0.028076172, 0.030639648, -0.0015745163, 0.01411438, -0.026947021, -0.028198242, -0.0496521, -0.024230957, 0.01977539, -0.025741577, 0.07739258, -0.026885986, -0.056488037, -0.035125732, -0.022140503, -0.008094788, 0.015975952, -0.022384644, -0.039886475, -0.052001953, -0.009300232, -0.061553955, -0.013473511, 0.025039673, 0.050872803, 0.028335571, 0.01727295, 0.015075684, 0.036895752, 0.018157959, 0.024032593, 0.039154053, 0.023986816, -0.004486084, 0.0071411133, 0.00051021576, -0.0032253265, -0.15026855, 0.11779785, -0.02822876, 0.009498596, 0.020187378, -0.058807373, 0.09429932, -0.031280518, -0.01876831, 0.025344849, 0.028900146, 0.025024414, -0.023513794, 0.022872925, -0.014709473, -0.018173218, -0.0073661804, -0.012268066, 0.043121338, 0.026260376, 0.014183044, 0.013015747, 0.038970947, -0.005012512, 0.0034618378, -0.02810669, -0.02671814, 0.00088596344, 0.013038635, -0.013626099, 0.03866577, 0.014122009, -0.016830444, 0.03173828, 0.009506226, -0.044006348, 0.03741455, -0.033111572, -0.033813477, -0.02268982, 0.010185242, -0.00044870377, -0.006919861, -0.0066108704, -0.032440186, 0.0178833, -0.03112793, 0.025375366, 0.012191772, -0.04083252, 0.000998497, -0.022583008, 0.031219482, -0.05255127, -0.019424438, 0.041168213, 0.04046631, 0.014434814, 0.031402588, 0.0055389404, 0.006729126, -0.0073242188, -0.026397705, -0.010925293, 0.02331543, 0.0024929047, 0.004425049, -0.0385437, -0.046783447, 0.06555176, -0.014816284, -0.021575928, 0.020874023, 0.022583008, -0.041748047, 0.006816864, -0.032196045, -0.035949707, -0.009666443, -0.004940033, -0.041015625, -0.051239014, -0.0060920715, -0.060943604, 0.021987915, -0.019592285, -0.026351929, -0.041229248, -0.052337646, -0.047058105, 0.02166748, -0.009254456, 0.0037956238, -0.0069389343, 0.021224976, -0.00010377169, 0.0066833496, -0.054534912, 0.022384644, -0.060028076, -0.0028057098, 0.026275635, -0.009292603, 0.036987305, -0.04586792, -0.02848816, -0.0435791, 0.044891357, 0.016342163, 0.005256653, 0.007896423, -0.02633667, 0.0001283884, 0.008651733, 0.055664062, -0.0025997162, 0.02557373, -0.026901245, -0.018218994, -0.018508911, -0.036315918, 0.046936035, -0.0064353943, -0.0040626526, -0.04815674, 0.016036987, -0.02961731, 0.011627197, -0.003396988, 0.012397766, -0.016235352, 0.032836914, -0.055267334, -0.020370483, -0.0026378632, 0.0016412735, 0.0058059692, 0.0059509277, -0.007484436, 0.0064048767, 0.0022144318, -0.0027923584, 0.018859863, -0.010871887, 0.0012235641, -0.011795044, -0.047851562, 0.0022525787, 0.019958496, -0.0024356842, 0.02243042, -0.044952393, 0.0132369995, 0.015602112, 0.033996582, 0.00818634, -0.010986328, 0.028015137, -0.0703125, -0.009117126, -0.00045108795, -0.01473999, 0.0184021, 0.0035266876, -0.0077400208, 0.02897644, 0.00040221214, -0.04144287, -0.0418396, -0.038024902, 0.026245117, 0.0031986237, -0.024047852, -0.013977051, -0.049865723, -0.029571533, 0.007575989, -0.04574585, 0.06732178, 0.032562256, -0.020812988, 0.0025310516, -0.02507019, -0.0027542114, -0.0008444786, 0.040374756, 0.009315491, -0.08129883, 0.043304443, 0.026824951, 0.03277588, 0.03414917, 0.05053711, -0.03704834, -0.043701172, -0.03604126, -0.03173828, 0.027130127, -0.07598877, -0.010055542, -0.019485474, -0.018310547, 0.015975952, -0.042114258, 0.017227173, -0.01789856, -0.046081543, -0.0033988953, -0.030273438, -0.00011301041, 0.009544373, 0.029220581, 0.009315491, 0.026321411, -0.06201172, 0.008972168, -0.009902954, -0.011978149, -0.00029706955, -0.0087509155, 0.060455322, -0.02633667, -0.041290283, -0.011795044, 0.066711426, -0.03829956, 0.023040771, 0.029205322, 0.06994629, -0.03579712, -0.0010738373, -0.038238525, 0.006942749, -0.016464233, -0.003982544, 0.029296875, -0.003276825, -0.044311523, -0.04638672, -0.026412964, -0.003610611, -0.030715942, -0.011009216, -0.015853882, 0.021087646, -0.032562256, -0.0152282715, -0.029891968, 0.009666443, -0.022842407, 0.006690979, -0.02659607, -0.014549255, -0.01789856, 0.047576904, -0.008453369, -0.0036754608, 0.025299072, -0.0028514862, 0.022094727, -0.03564453, -0.02835083, 0.010795593, 0.006263733, -0.0018129349, -0.00034832954, 0.027267456, 0.040252686, -0.01687622, -0.03643799, 0.01486969, 0.025634766, -0.00034165382, -0.026138306, 0.08190918, 0.042907715, 0.012008667, 0.015975952, 0.009094238, -0.040893555, 0.0043258667, 0.020980835, -0.075805664, -0.014579773, -0.030593872, 0.012527466, -0.024124146, -0.061340332, -0.028152466, 0.029937744, -0.021255493, 0.016189575, 0.0047302246, -0.04638672, -0.000105798244, -0.049316406, 0.025131226, 0.008895874, -0.019378662, 0.021774292, 0.0020503998, -0.06506348, 0.0069084167, -0.03353882, 0.018127441, 0.01737976, -0.0005469322, -0.02722168, -0.024841309, 0.022705078, 0.028396606, -0.03945923, 0.01133728, 0.0024356842, 0.06542969, 0.035308838, 0.059783936, -0.01197052, -0.035583496, -0.0007519722, 0.032958984, 0.031280518, 0.0024700165, -0.008590698, -0.031707764, 0.033416748, 0.017166138, 0.020095825, -0.014549255, -0.010902405, -0.02116394, 0.008262634, 0.010665894, 0.009162903, -0.009925842, -0.01914978, -0.015701294, -0.045318604, -0.013557434, -0.02319336, 0.013153076, -0.0104904175, -0.0009889603, -0.0076065063, 0.01826477, 0.0077438354, -0.02230835, -0.010246277, 0.013786316, 0.029754639, 0.016235352, -0.023666382, 0.022033691, -0.050476074, -0.034698486, 0.020385742, 0.030258179, 0.009773254, 0.021377563, -0.02557373, 0.009666443, 0.01889038, -0.012527466, -0.023468018, -0.011009216, 0.02897644, -0.021774292, -0.010253906, 0.021484375, 0.009361267, 0.013252258, -0.024871826, -0.00655365, 0.00053453445, 0.013809204, 0.011833191, -0.030349731, 0.0016288757, -0.006252289, 0.0069007874, -0.019866943, -0.013442993, -0.0048103333, -0.07763672, 0.00932312, 0.045410156, -0.020385742, 0.023727417, -0.00092983246, 0.0135269165, -0.060058594, 0.032165527, -0.0357666, -0.061553955, -0.05105591, 0.020462036, -0.0055274963, -0.0053520203, -0.02142334, 0.0030956268, 0.0068359375, -0.03466797, 0.05239868, -0.045562744, 0.06964111, 0.024353027, 0.016738892, -0.046295166, 0.017425537, 0.00065135956, 0.014083862, 0.0088272095, 0.070373535, 0.025650024, -0.01689148, -0.081604004, -0.024612427, -0.04043579, -0.039733887, -0.012763977, -0.01939392, -0.016174316, -0.032226562, -0.022888184, -0.0025520325, -0.0014686584, -0.010871887, 0.0016679764, 0.02281189, -0.010406494, 0.045318604, 0.03604126, 0.018920898, 0.008743286, -0.07659912, 0.0491333, 0.0055732727, 0.06591797, -0.022460938, 0.059295654, -0.03955078, -0.048339844, -0.07244873, -0.04269409, -0.041168213, 0.062042236, -0.021057129, -0.03604126, 0.014801025, -0.012626648, 0.010284424, -0.109680176, -0.0073127747, -0.06640625, 0.012229919, -0.02142334, 0.021575928, -0.028579712, -0.035064697, 0.026733398, 0.0435791, -0.017364502, -0.062438965, -0.015899658, 0.0140686035, 0.011993408, -0.011100769, 0.026657104, -0.03564453, 0.041931152, -0.021591187, 0.037872314, -0.004058838, 0.024475098, -0.07672119, -0.014144897, 0.014404297, -0.045654297, -0.035980225, -0.008468628, 0.022720337, -0.007522583, 0.029586792, -0.038085938, 0.010231018, -0.007434845, -0.0440979, -0.022750854, -0.01209259, 0.009895325, 0.019836426, -0.019851685, -0.0362854, 0.008033752, -0.012825012, 0.009498596, -0.045440674, -0.010864258, -0.039489746, 0.025741577, 0.010246277, -0.010772705, -0.001168251, -0.013496399, -0.033569336, 0.06323242, -0.00021016598, -0.03189087, -0.0030384064, -0.00093889236, -0.022155762, 0.019485474, -0.01802063, -0.012527466, 0.0340271, -0.016845703, 0.0076141357, -0.05783081, 0.10595703, -0.030532837, 0.03286743, -0.008529663, 0.020462036, -0.013336182, 0.020111084, 0.019378662, 0.053100586, -0.015792847, -0.0211792, -0.011306763, 0.015258789, -0.003921509, 0.03768921, -0.0009784698, -0.0068893433, -0.054870605, 0.012619019, 0.058166504, 0.031982422, -0.06762695, 0.055511475, 0.047912598, 0.013870239, -0.046325684, -0.06640625, -0.045837402, 0.013954163, 0.009300232, 0.016052246, 0.076416016, -0.010284424, 0.016906738, 0.017868042, -0.009788513, 0.007156372, -0.032348633, -0.033203125, -0.0055618286, -0.009498596]}, "B00IZCNOS0": {"id": "B00IZCNOS0", "original": "Brand: Flame King\nName: Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers\nDescription: \nFeatures: Allows removal of empty cylinder for refill without interrupting propane supply\nFor RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty\nPairs well with our 48 Inch Thermo Plastic Hose, item 100383-48.\nDouble stage design maintains constant gas pressure under changing demand and conditions\nInlets are 1/4\" SAE inverted flare and outlet is 3/8\" NPT female pipe thread. Regulator is factory set at 11wc (water column)\n", "metadata": {"Name": "Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers", "Brand": "Flame King", "Description": "", "Features": "Allows removal of empty cylinder for refill without interrupting propane supply\nFor RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty\nPairs well with our 48 Inch Thermo Plastic Hose, item 100383-48.\nDouble stage design maintains constant gas pressure under changing demand and conditions\nInlets are 1/4\" SAE inverted flare and outlet is 3/8\" NPT female pipe thread. Regulator is factory set at 11wc (water column)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029266357, -0.008834839, -0.01940918, -0.0008544922, -0.036193848, -0.0071487427, -0.051330566, -0.024093628, -0.047546387, 0.025253296, 0.0020751953, 0.047424316, 0.0059928894, -0.01878357, 0.05090332, -0.019210815, 0.02998352, 0.008972168, 0.03201294, 0.00819397, 0.010818481, 0.033691406, -0.012130737, 0.08880615, 0.017501831, -0.0096206665, 0.04525757, 0.008758545, 0.02897644, 0.019699097, 0.035614014, -0.03286743, 0.028900146, -0.015548706, -0.014312744, -0.012634277, -0.016204834, -0.0036697388, -0.029388428, 0.0158844, -0.0051841736, -0.008522034, -0.008758545, -0.03741455, -0.015533447, -0.019302368, -0.011016846, -0.031158447, 0.019897461, -0.012832642, -0.02178955, -0.0054016113, -0.014373779, 0.0043754578, -0.014465332, 0.014976501, 0.024261475, 0.016784668, 0.014328003, 0.012458801, -0.0077438354, 0.05078125, 0.005634308, -0.0067443848, -0.064819336, 0.002046585, 0.02720642, -0.026687622, 0.061706543, -0.047210693, -0.025787354, 0.066833496, 0.0049095154, 0.008766174, -0.013305664, 0.0096588135, -0.016601562, 0.0093307495, 0.046813965, 0.0012712479, 0.006706238, -0.03338623, 0.046569824, 0.007865906, -0.035339355, -0.010910034, -0.008148193, 0.008918762, -0.050354004, -0.02935791, -0.039245605, 0.020355225, -0.048858643, -0.025283813, -0.046661377, -0.0031757355, -0.0211792, -0.06524658, 0.06866455, 0.009353638, 0.03414917, -0.048187256, 0.015777588, -0.0011358261, 0.008300781, 0.08123779, 0.011955261, -0.0010442734, 0.013305664, -0.017562866, 0.011909485, -0.001871109, 0.040130615, 0.006790161, -0.030883789, -0.007484436, 0.0052452087, 0.028640747, 0.0067596436, 0.027526855, 0.018569946, 0.011253357, 0.039093018, -0.020477295, -0.004322052, -0.011009216, -0.052490234, -0.032165527, -0.008361816, 0.041168213, -0.025222778, -0.02758789, 0.016098022, 0.06970215, 0.03604126, -0.021987915, 0.0078125, -0.02545166, 0.01940918, -0.018325806, -0.019882202, -0.0032234192, 0.04171753, 0.011222839, -0.034942627, 0.027877808, 1.001358e-05, 0.0033817291, -0.0074310303, -0.03189087, -0.017990112, -0.04272461, -0.0038719177, 0.01121521, 0.023330688, -0.0042037964, -0.029418945, 0.0007252693, 0.048553467, 0.0049209595, -0.0128479, -0.04574585, -0.024810791, -0.017990112, -0.040039062, 0.056732178, -0.018218994, -0.0076942444, 0.02520752, 0.018615723, 0.015068054, 0.028656006, 0.036346436, 0.0040283203, -0.0069999695, -0.008605957, 0.010902405, 0.07067871, 0.053009033, -0.11022949, -0.056793213, -0.06689453, 0.13208008, -0.05984497, 0.0035419464, -0.010940552, -0.0017585754, -0.01737976, 0.018005371, 0.0031089783, -0.0049438477, 0.0317688, -0.02355957, -0.0069465637, 0.01121521, -0.015045166, 0.035369873, -0.0029411316, 0.017150879, -0.030166626, 0.005214691, 0.026275635, -0.017318726, 0.029541016, -0.0024375916, -0.011024475, -0.00026369095, 0.013336182, 0.037200928, 0.034454346, 0.0009188652, 0.012321472, -0.0087890625, -0.018936157, -0.011878967, 0.020217896, -0.024398804, 0.0034885406, 0.01687622, -0.006099701, 0.05517578, -0.004310608, 0.034576416, 0.008705139, 0.021575928, -0.017837524, -0.030471802, -0.019210815, 0.021148682, -0.016860962, 0.009559631, 0.052459717, 0.03781128, 0.040802002, -0.031585693, 0.01247406, 0.031982422, 0.025558472, -0.017700195, 0.012496948, 0.00023841858, -0.022583008, -0.023040771, 0.05633545, -0.045532227, -0.033172607, -0.0014915466, 0.022949219, -0.0016775131, 0.019805908, 0.08807373, -0.019256592, -0.0008068085, 0.031311035, 0.001332283, -0.017745972, -0.011909485, -0.00459671, -0.057373047, 0.028167725, -0.0024642944, 0.01399231, 0.012649536, -0.007858276, 0.08300781, -0.045562744, 0.035217285, -0.006668091, -0.032440186, -0.013519287, 0.026672363, 0.0043792725, -0.0037212372, 0.009933472, -0.04547119, -0.028686523, -0.0011920929, 0.030807495, -0.036468506, -0.019165039, -0.019439697, -0.027557373, 0.022598267, -0.00907135, 0.0597229, 0.045318604, 0.018676758, -0.039642334, -0.012413025, -0.021606445, 0.021087646, -0.01576233, -0.015472412, -0.011291504, 0.038391113, -0.035064697, 0.087402344, -0.040039062, 0.037353516, -0.024551392, 0.009429932, 0.05508423, -0.016525269, 0.021743774, 0.017807007, -0.01184082, 0.012771606, 0.0211792, 0.010749817, 0.007167816, -0.032684326, 0.03112793, 0.03338623, -0.029312134, 0.051116943, 0.018844604, -0.0041999817, 0.045654297, 0.037719727, 0.07244873, -0.0127334595, 0.016662598, -0.008117676, 0.017593384, 0.022460938, -0.024017334, 0.024887085, 0.0017757416, -0.035308838, -0.0013751984, 0.01525116, -0.004383087, 0.029342651, 0.05328369, 0.0039901733, -0.012176514, -0.020935059, 0.099365234, -0.010253906, -0.1071167, -0.055114746, -0.01890564, -0.0011491776, 0.041046143, -0.025054932, -0.034729004, 0.050354004, -0.0030117035, -0.025421143, 0.015525818, 0.016799927, -0.0040779114, 0.019683838, 0.009963989, 0.030212402, -0.02758789, -0.06149292, -0.0027236938, 0.008155823, -0.057250977, -0.02911377, -0.023529053, -0.07385254, -0.039611816, 0.053710938, 0.01449585, -0.06921387, -0.007637024, 0.022460938, -0.013404846, -0.019943237, -0.020477295, -0.0036258698, 0.013839722, 0.04043579, -0.0007491112, 0.027435303, -0.022827148, 0.06011963, 0.023147583, 0.010574341, 0.02708435, -0.032989502, 0.024108887, -0.0062294006, 0.04232788, 0.033477783, 0.014892578, 0.014060974, -0.020751953, 0.014053345, 0.040130615, -0.037506104, 0.0011320114, -0.008682251, -0.02482605, 0.0035972595, 0.02468872, -0.058502197, -0.0042037964, -0.089904785, 0.0060768127, -0.026473999, -0.024841309, 0.018066406, -0.09631348, -0.017074585, -0.07733154, 0.019989014, -0.008674622, -0.017807007, 0.013420105, -0.03253174, 0.0005841255, -0.024673462, -0.018035889, -0.03363037, -0.007843018, -0.035827637, 0.018539429, 0.06298828, -0.08319092, 0.017990112, 0.018722534, -0.059326172, -0.02557373, -0.018447876, 0.04888916, -0.0076179504, 0.047302246, -0.018600464, 0.0032444, 0.0028419495, -0.017990112, -0.039611816, 0.0029830933, -0.008903503, -0.0028266907, -0.008201599, -0.024932861, -0.085876465, -0.027328491, 0.0058937073, -0.023284912, 0.0152282715, -0.02960205, -0.012580872, -0.052459717, 0.004447937, -0.04348755, 0.0036334991, -0.00015866756, 0.0038776398, 0.016174316, -0.001914978, 0.091674805, 0.003616333, 0.041107178, 0.047332764, -0.034484863, -0.021591187, -0.017471313, 0.0010938644, 0.016403198, -0.019302368, 0.01675415, 0.0079574585, 0.015701294, 0.00067043304, -0.007888794, -0.015357971, 0.030258179, -0.015586853, -0.008972168, -0.011199951, 0.02848816, 0.016540527, 0.0016269684, 0.011955261, -0.019500732, -0.052825928, 0.02583313, -0.051361084, 0.027450562, 0.03125, -0.016403198, 0.053466797, 0.0042266846, 0.0015249252, 0.041412354, 0.06738281, -0.024230957, 0.026351929, 0.010513306, -0.0287323, -0.0095825195, 0.016464233, -0.057861328, -0.006072998, -0.012878418, -0.041168213, 0.01586914, 0.022583008, -0.0012454987, -0.034179688, -0.024108887, 0.001750946, -0.0070152283, 0.03555298, -0.018188477, -0.001865387, -0.007411957, -0.038146973, 0.0042419434, -0.02758789, -0.040008545, 0.005241394, 0.018630981, -0.055541992, -0.011695862, -0.020889282, -0.00831604, 0.029800415, 0.045715332, -0.050231934, 0.0011882782, 0.011360168, -0.0030384064, -0.0020771027, -0.010223389, 0.027511597, -0.0023155212, 0.004459381, 0.015388489, -0.009361267, 0.00031352043, -0.006713867, 0.024536133, -0.025924683, -0.08392334, -0.008224487, 0.03289795, 0.021331787, -0.040802002, -0.019317627, -0.036254883, -0.01663208, -0.0032291412, -0.036865234, -0.05065918, 0.018432617, 0.039642334, -0.064331055, -0.041778564, -0.050842285, 0.032348633, -0.01184082, 0.01977539, -0.010322571, -0.022445679, -0.010261536, 0.006942749, -0.040161133, 0.019042969, -0.043823242, 0.01574707, 0.009727478, -0.017059326, -0.0041885376, 0.00092840195, -0.025222778, -0.0046310425, 0.033325195, -0.01146698, -0.0020427704, -0.022949219, -0.019042969, -0.014328003, 0.01763916, 0.042053223, 0.03036499, 0.0435791, -0.012435913, -0.006427765, -0.048980713, 0.016738892, 0.016281128, -0.03100586, -0.036193848, -0.01512146, 0.035736084, 0.011756897, -0.0066337585, 0.011833191, 0.028549194, 0.019805908, 0.029785156, -0.07373047, -0.02331543, -0.003929138, -0.039489746, 0.007896423, -0.0046577454, -0.013786316, 0.015625, 0.056152344, -0.02658081, -0.014198303, -0.00055217743, 0.00983429, -0.0005493164, -0.011604309, -0.036712646, 0.019363403, -0.031799316, 0.009536743, -0.057922363, 0.021469116, 0.053833008, 0.021118164, 0.02128601, 0.00472641, -0.007797241, -0.02671814, -0.044281006, -0.008422852, 0.064208984, 0.0067481995, -0.04083252, -0.0006365776, -0.0036334991, -0.008720398, 0.0009889603, -0.040802002, 0.007205963, 0.020019531, 0.019958496, -0.010498047, 0.00016832352, 0.037200928, 0.01991272, -0.0012168884, -0.005279541, -0.041290283, -0.010360718, -0.027023315, -0.016418457, 0.01878357, -0.028289795, -0.02810669, -0.009895325, 0.018173218, 0.015838623, 0.039794922, -0.0048561096, 0.014923096, -0.034576416, 0.014884949, 0.02859497, -0.0046043396, -0.055419922, 0.025802612, 0.009963989, -0.0029201508, -0.010177612, 0.022613525, -0.0029182434, 0.02470398, 0.008216858, -0.015670776, 0.006866455, -0.0635376, -0.010864258, -0.0039901733, -0.008674622, -0.016540527, 0.10595703, 0.002298355, 0.011039734, -0.06518555, 0.010543823, -0.019699097, -0.020553589, 0.00630188, -0.012870789, 0.015640259, -0.012588501, 0.010383606, 0.0259552, -0.021621704, -0.042236328, -0.007648468, 0.0001450777, -0.05065918, -0.011695862, 0.015701294, -0.0013122559, 0.04260254, -0.009483337, -0.024932861, 0.05230713, 0.03488159, -0.034698486, 0.01537323, 0.007381439, 0.00598526, -0.01689148, -0.038024902, 0.020553589, 0.018569946, -0.013877869, -0.014160156, -0.012451172, 0.0129852295, -0.04296875, -0.025024414, -0.018188477, 0.010932922, -0.003955841, 0.06591797, -0.021408081, -0.029418945, 0.00447464, 0.01335907, 0.012931824, -0.009513855, -0.03466797, 0.012763977, 0.01979065, 0.03967285, -0.044281006, -0.014320374, 0.051086426, -0.050231934, -0.022064209, -0.017852783, 0.03265381, 0.03805542, 0.018844604, 0.09466553, 0.022338867, 0.012496948, 0.04940796, 0.0057296753, -0.044921875, 0.013160706, 0.005115509, -0.081970215, -0.03942871, -0.03152466, -0.011680603, -0.018875122, -0.046417236, -0.023010254, 0.042510986, 0.015144348, 0.031280518, -0.039733887, -0.072631836, -0.0029144287, -0.03845215, 0.014335632, 0.0009665489, 0.021194458, -0.009002686, 0.010543823, -0.08416748, -0.051635742, 0.012939453, 0.023742676, 0.045928955, 0.018249512, 0.010017395, 0.0056877136, -0.07745361, 0.027801514, -0.004863739, -0.017745972, 0.012397766, 0.028671265, -0.009613037, 0.03274536, -0.03857422, -0.0057411194, -0.021011353, 0.0440979, -0.014343262, 0.03265381, -0.07318115, -0.044403076, -0.0030403137, 0.056762695, -0.008094788, -0.025619507, 0.0006580353, -0.00541687, -0.02748108, -0.023803711, -0.017028809, -0.036834717, 0.014007568, -0.03201294, -0.049682617, -0.02268982, -0.034942627, 0.0073013306, -0.024780273, 0.022369385, -0.03753662, 0.029006958, -0.01586914, -0.008262634, 0.04284668, -0.025024414, 0.022369385, -0.012390137, 0.029541016, 0.008003235, -0.0015325546, -0.04663086, 0.014152527, 0.048553467, 0.038391113, -0.030532837, -0.022140503, 0.005016327, 0.008369446, -0.05328369, 0.024932861, -0.0184021, -0.014640808, -0.007835388, -0.044921875, -0.030899048, -0.007621765, 0.028930664, -0.0037250519, 0.007949829, 0.00025725365, 0.034057617, -0.008346558, -0.022232056, -0.025375366, -0.029312134, 0.0030612946, -0.0552063, -0.012107849, 0.03488159, -0.053619385, 0.08984375, 0.00039577484, 0.023742676, 0.066711426, -0.01550293, -0.028030396, 0.014450073, 0.018569946, -0.011672974, -0.070251465, -0.0259552, 0.040649414, -0.006214142, 0.052703857, -0.04019165, 0.019226074, -0.016983032, -0.0048103333, 0.016738892, -0.028244019, -0.013534546, 0.006008148, 0.0031433105, -0.06689453, -0.0138549805, -0.016174316, 0.0049476624, -0.013427734, 0.076416016, 0.013847351, 0.027694702, 0.01889038, -0.0024089813, 0.046875, -0.00055122375, 0.002166748, -0.01398468, 0.0058937073, 0.009094238, -0.027557373, -0.008277893, -0.02658081, -0.016860962, 0.012298584, -0.020721436, -0.01423645, -0.02458191, -0.000579834, 0.0029277802, 0.0032787323, -0.03112793, 0.0024166107, -0.012161255, 0.024047852, -0.0033798218, -0.012619019, -0.034118652, -0.037322998, -0.03982544, -0.043640137, -0.06359863, 0.036010742, -0.04849243, -0.037475586, 0.008590698, 0.017791748, -0.07366943, -0.03857422, -0.028930664, 0.013504028, 0.012123108, -0.0032081604, 0.0070877075, 0.017105103, -0.0463562, -0.05987549, 0.01802063, -0.046142578, -0.00466156, -0.04446411, 0.0062446594, -0.026885986, 0.0042495728, 0.112854004, 0.06524658, 0.043792725, 0.034332275, 0.0317688, -0.062072754, -0.010688782, 0.03652954, 0.012512207, -0.0368042, -0.051971436, 0.01991272, 0.0010786057, 0.036956787, -0.017471313, 0.032592773, -0.050354004, 0.02897644, -0.003818512, -0.016708374, 0.010108948, 0.0067367554, 0.00086832047, 0.015060425, -0.04473877, -0.02078247, -0.03878784, -0.006690979, 0.042755127, 0.03048706, 0.044311523, -0.0051651, -0.0637207, -0.06213379, -0.026565552, 0.02368164, 0.050201416, -0.02168274, -0.013549805, 0.018814087, -0.0016469955, 0.006210327, 0.0052375793, 0.015686035, -0.02015686, 0.023666382, 0.014656067, -0.030151367, -0.0030231476, -0.02507019, -0.05392456, -0.013801575, 0.057891846, 0.0009460449, -0.01737976, -0.012550354, -0.023712158, -0.019851685, -0.019485474, -0.02494812, -0.03314209, -0.013374329, 0.0093688965, 0.03314209, -0.00687027, -0.027755737, -0.0074386597, 0.020065308, -0.018051147, 0.016921997, 0.01777649, -0.0039024353, -0.030731201, 0.048431396, 0.0040664673, 0.09313965, 0.0051193237, -0.048736572, -0.049102783, 0.041259766, 0.0069274902, -0.021728516, 0.013542175, 0.0023059845, 0.009681702, 0.033569336, -0.050354004, -0.015991211, 0.0048561096, 0.040008545, -0.010017395, 0.006893158]}, "B081GNNVJK": {"id": "B081GNNVJK", "original": "Brand: Traeger\nName: Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub\nDescription: \nFeatures: Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper.\nCompatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice.\nEasy Storage: Each rub comes in a stackable aluminum tin container\nMade in the USA\n", "metadata": {"Name": "Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub", "Brand": "Traeger", "Description": "", "Features": "Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper.\nCompatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice.\nEasy Storage: Each rub comes in a stackable aluminum tin container\nMade in the USA", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.005908966, -0.0259552, -0.06463623, -0.04776001, -0.018173218, -0.040893555, -0.031585693, 0.05557251, -0.008110046, 0.0036258698, 0.011428833, 0.017959595, -0.04486084, -0.036132812, 0.00073862076, -0.029525757, 0.042755127, -0.058380127, -0.026687622, -0.028900146, -0.00019919872, 0.006839752, -0.0054893494, 0.08917236, 0.076416016, -0.060791016, 0.05899048, -0.0044937134, 0.07171631, 0.02003479, 0.04699707, -0.07147217, 0.035949707, 0.014205933, -0.051239014, -0.022705078, 0.00030493736, -0.013999939, -0.027877808, 0.020584106, 0.0068206787, -0.0015850067, 0.0736084, 0.035858154, -0.0068511963, 0.015365601, -0.0037250519, -0.025222778, 0.017044067, -0.03869629, 0.01939392, -0.0071029663, 0.04550171, -0.036010742, -0.038146973, -0.019134521, -0.003074646, 0.078430176, 0.011291504, -0.0010528564, -0.020828247, 0.05496216, 0.007713318, 0.0005645752, -0.0031013489, -0.021774292, 0.071777344, 0.0056495667, -0.020080566, -0.023391724, 0.03289795, 0.004890442, -0.009407043, -0.038726807, -0.03768921, 0.026977539, 0.016159058, -0.013916016, 0.005344391, -0.0058403015, -0.0031280518, -0.043121338, 0.035980225, -0.036590576, 0.0105896, -0.010414124, -0.0043754578, 0.001458168, -0.0024986267, -0.032806396, -0.0059890747, -0.044952393, -0.06665039, 0.051452637, 0.029647827, -0.04055786, -0.0072250366, -0.04751587, 0.026229858, -0.0064048767, 0.021881104, -0.026367188, -0.0018596649, 0.025299072, -0.032165527, 0.028961182, 0.028411865, 0.10406494, 0.041229248, 0.025344849, -0.01071167, 0.015701294, 0.0062179565, 0.012664795, -0.031082153, -0.017669678, -0.03866577, 0.010040283, -0.0017328262, 0.0023326874, 0.020080566, 0.05456543, -0.006843567, 0.01197052, 0.0015249252, 0.02609253, 0.010665894, -0.039886475, -0.055480957, 0.07836914, -0.008712769, -0.04031372, 0.0055656433, 0.032806396, -0.005077362, -0.03616333, -0.003490448, -0.009506226, -0.008972168, 0.02798462, -0.022628784, -0.00920105, 0.04269409, -0.01247406, 0.0046424866, 0.022659302, -0.0061035156, 0.012886047, 0.04534912, -0.01701355, -0.015586853, -0.01928711, 0.012496948, 0.012573242, -0.0004067421, 0.0036449432, -0.00043559074, -0.0061416626, -0.013755798, -0.020126343, 0.006149292, 0.00075006485, -0.008522034, 0.0038890839, -0.008468628, -0.0071411133, 0.01398468, 0.012611389, 0.018707275, 0.02949524, 0.015304565, -0.031402588, -0.049682617, 0.0041046143, 0.009895325, 0.026000977, 0.008399963, 0.028518677, 0.08734131, -0.13195801, -0.105651855, -0.053649902, 0.12670898, -0.07067871, -0.0039901733, -0.0039520264, 0.020019531, 0.032104492, -0.00945282, 0.00680542, 0.02848816, 0.031280518, -0.022964478, 0.009712219, 0.021743774, 0.009986877, -0.053466797, 0.0074043274, -0.010612488, -0.036224365, 0.03503418, -0.022903442, -0.003566742, -0.010726929, -0.011482239, -0.05581665, 0.00497818, -0.01675415, 0.03366089, 0.023773193, -0.014221191, 0.0036563873, 0.010734558, -0.057647705, -0.0362854, 0.018417358, -0.002904892, 0.0027503967, 0.02078247, -0.021850586, 0.024765015, 0.026535034, 0.007507324, -0.017211914, 0.05581665, 0.039916992, -0.022964478, 0.004901886, 0.021896362, 0.036224365, -0.06713867, 0.007980347, 0.054992676, 0.040985107, 0.0041885376, 0.058380127, 0.07336426, 0.00868988, -0.010505676, -0.014549255, 0.016448975, 2.7060509e-05, -0.0513916, -0.040771484, 0.07281494, 0.055847168, 0.020004272, -0.028198242, 0.007511139, 0.02760315, -0.003419876, 0.0043945312, 0.013198853, -0.007827759, -0.02217102, 0.023651123, 0.0053901672, -0.0119018555, -0.015899658, 0.028747559, -0.009498596, 0.0017633438, 0.0003709793, -0.0068740845, 0.060913086, -0.002960205, 0.052093506, 0.03668213, -0.025802612, 0.0042877197, 0.0104904175, -0.020431519, -0.0027923584, 0.012878418, 0.03201294, -0.011222839, -0.022644043, -0.015510559, 0.021835327, 0.007537842, -0.011016846, 0.028396606, 0.0385437, -0.013450623, 0.00070619583, -0.007472992, 0.026611328, -0.030761719, -0.067993164, -0.0519104, -0.011985779, 0.036956787, -0.03894043, 0.0051574707, 0.01763916, -0.008018494, 0.02973938, 0.058410645, -0.027648926, 0.011634827, -0.0050964355, 0.012901306, -0.010612488, -0.0073432922, -0.0017137527, -0.026550293, -0.021270752, 0.010803223, -0.007865906, -0.0368042, 0.0096206665, 0.044799805, 0.023712158, 0.0055770874, 0.02659607, -0.014816284, 0.0138549805, 0.035186768, -0.020843506, -0.054138184, -0.03274536, 0.0670166, -0.0009031296, 0.015975952, 0.042144775, -0.018630981, 0.012252808, 0.0018033981, -0.055877686, -0.010253906, -0.0063095093, -0.036834717, -0.011299133, 0.037261963, 0.0019607544, 0.008453369, 0.0002450943, -0.031280518, -0.015602112, 0.0022392273, 0.024993896, 0.0022029877, 0.021606445, -0.016296387, -0.011955261, 0.044036865, -0.013298035, 0.023590088, -0.03201294, 0.016571045, -0.02734375, -0.04373169, 0.004043579, -0.01071167, 0.03387451, -0.08111572, -0.0473938, 0.029220581, -0.02418518, -0.046813965, -0.027908325, -0.016998291, -0.0736084, -0.0024299622, 0.0703125, -0.014923096, -0.00087451935, -0.022918701, -0.0211792, 0.012771606, 0.03668213, -0.022659302, -0.008338928, -0.028045654, -0.04421997, -0.025405884, 0.0317688, -0.027328491, -0.018920898, -0.0054626465, -0.002910614, 0.019210815, -0.023635864, 0.009414673, 0.07354736, 0.006629944, 0.014785767, 0.064208984, 0.027832031, -0.001039505, -0.016098022, 0.013656616, 0.0010499954, -0.044647217, 0.012451172, 0.024902344, -0.016082764, -0.014793396, 0.015380859, -0.035064697, -0.013931274, -0.009399414, -0.011566162, -0.014732361, -0.0011425018, -0.078430176, -0.009414673, -0.034301758, 0.0082473755, 0.017120361, -0.0020885468, 0.05505371, -0.017929077, 0.053375244, -0.004535675, -0.021835327, 0.05987549, -0.0013313293, -0.018066406, -0.029922485, 0.045776367, -0.0496521, 0.04345703, 0.012802124, -0.020523071, 0.011299133, -0.008636475, 0.011253357, -0.016342163, 0.023971558, 0.0075035095, -0.014816284, -0.02558899, 0.022460938, 0.03793335, 0.107299805, -0.0043792725, -0.016983032, -0.0027370453, -0.0070114136, -0.0015201569, 0.008132935, 0.010627747, 0.028686523, -0.0063209534, -0.00010967255, -0.0049705505, -0.015014648, -0.031280518, -0.033935547, -0.017211914, 0.014152527, -0.017715454, 0.025100708, 0.0030174255, 0.058685303, -0.018035889, 0.0069007874, 0.016220093, 0.011367798, -0.018249512, -0.016815186, 0.051940918, -0.033050537, -0.0076904297, -0.053131104, 0.097839355, 0.008621216, 0.006919861, 0.011955261, -0.017730713, 0.028121948, 0.022750854, 0.010887146, -0.00034976006, -0.00017309189, 0.006690979, 0.03857422, -0.075805664, -0.018997192, -0.0022277832, -0.012359619, -0.008094788, 0.068725586, 0.06567383, -0.01676941, 0.024795532, 0.040802002, 0.013153076, -0.0036735535, -0.0006656647, -0.030914307, 0.013504028, -0.0029945374, -0.024780273, 0.002708435, 0.0056037903, -0.02947998, 0.015792847, -0.008857727, -0.03414917, 0.010131836, 0.025772095, -0.008850098, -0.009529114, 0.016693115, 0.036743164, -0.0061569214, -0.0012435913, -0.023239136, 0.062286377, -0.02558899, 0.017623901, 0.006877899, -0.009017944, -0.03894043, 0.051605225, 0.0047340393, -0.012535095, 0.00198555, -0.004901886, 0.013587952, -0.008560181, 0.010002136, 0.029251099, 0.010955811, -0.02734375, 0.033966064, -0.02319336, 0.028930664, 0.01889038, 0.009468079, 0.027893066, -0.032165527, 0.013694763, -0.021530151, -0.0047302246, 0.0021476746, 0.0023117065, -0.00274086, -0.014389038, -0.009544373, 0.011192322, 0.0110321045, 0.0074157715, -0.05859375, -0.043395996, -0.04336548, -8.535385e-05, -0.04815674, -0.03552246, -0.010826111, -0.08337402, -0.01335907, 0.009544373, -0.029052734, -0.052642822, 0.033233643, -0.02178955, -0.042663574, -0.0016288757, -0.010650635, -0.011039734, -0.01247406, 0.02998352, -0.025985718, 0.07867432, 0.017990112, 0.0140686035, -0.024627686, -0.031082153, -0.026931763, 0.042022705, -0.0104522705, 0.010520935, -0.025848389, -0.0317688, -0.019500732, 0.025680542, 0.077941895, -0.041290283, 0.03314209, -0.02482605, -0.052764893, -0.0047798157, -0.018188477, 0.020309448, -0.022735596, -0.017181396, -0.010444641, 0.015266418, -0.021087646, -0.02355957, -0.07019043, 0.018722534, 0.00381279, -0.0045433044, 0.031982422, 0.03289795, 0.031555176, -0.012580872, 0.010749817, 0.019744873, -0.01537323, -0.023468018, 0.035095215, -0.036376953, 0.011062622, -0.013473511, -0.050079346, 0.010627747, -0.0109939575, -0.005794525, 0.03274536, -0.03100586, -0.018737793, -0.05130005, 0.059936523, 0.016326904, 0.008392334, -0.007873535, 0.009552002, 0.004760742, -0.06732178, 0.010635376, -0.009384155, -0.006099701, -0.026412964, -0.015579224, 0.028671265, -0.019805908, 0.01159668, -0.0206604, 0.029663086, 0.022979736, -0.040863037, -0.0015306473, -0.008216858, 0.002117157, -0.005657196, 0.022018433, 0.0317688, 0.023529053, -0.041137695, 0.008491516, -0.011169434, -0.019699097, 0.00076913834, 0.00075006485, 0.009429932, 0.050598145, 0.00037169456, -0.077697754, -0.014129639, 0.040130615, -0.024780273, 0.012023926, 0.019546509, -0.009689331, -0.015792847, -0.01360321, 0.007820129, -0.014015198, -0.008476257, 0.01586914, -0.0064468384, -0.0071411133, 0.027572632, -0.03866577, 0.04547119, -0.014266968, -0.009216309, 0.064941406, -0.026535034, 0.022155762, -0.022537231, 0.008773804, 0.00088357925, 0.00920105, -0.061950684, 0.00062322617, 0.027557373, 0.048583984, -6.198883e-05, -0.028396606, 0.03894043, -0.011001587, -0.026168823, 0.016098022, 0.03353882, -0.031433105, -0.02168274, 0.020751953, -0.02897644, -0.008125305, 0.042175293, -0.056274414, -0.0067253113, -0.043914795, 0.036865234, -0.007980347, -0.013977051, 0.026473999, -0.031188965, -0.028015137, 0.03756714, -0.051330566, 0.053863525, -0.06542969, -0.020004272, 0.015731812, 0.046142578, -0.04333496, -0.010765076, -0.010185242, -0.022247314, -0.025161743, 0.008850098, -0.00032782555, 0.021026611, -0.03250122, -0.0059547424, 0.06561279, -0.0033035278, 0.026245117, 0.0635376, -0.022918701, -0.003271103, 0.001045227, -0.010421753, 0.01713562, -0.0029678345, 0.024276733, -0.014411926, -0.00035715103, -0.052978516, 0.008377075, 0.013664246, -0.037902832, 0.045654297, 0.0027980804, -0.005554199, 0.014587402, -0.033813477, -0.02897644, 0.043029785, 0.018493652, -0.027359009, 0.0064735413, -0.0047454834, 0.0046958923, 0.022445679, -0.034820557, 0.0051116943, 0.019699097, 0.03656006, 0.0390625, -0.023452759, -0.04827881, -0.016601562, -0.031951904, -0.0029792786, -0.030944824, 0.025436401, -0.04284668, 0.0016422272, -0.05783081, -0.030517578, 0.018569946, 0.013122559, 0.010543823, -0.040374756, 0.020599365, 0.039794922, 0.019180298, 0.067871094, -0.019607544, 0.015777588, 0.008468628, 0.036743164, -0.0041007996, 0.036865234, -0.05517578, -0.016479492, 0.039093018, 0.037628174, 0.061553955, -0.07720947, 0.059509277, -0.03149414, 0.025878906, -0.027175903, -0.0013513565, 0.020736694, -0.019836426, -0.018356323, 0.013977051, -0.0068740845, 0.0178833, -0.032806396, -0.03366089, -0.0009860992, 0.0057868958, 0.060699463, 0.015319824, -0.010093689, 0.030441284, 0.039916992, 0.021255493, 0.02418518, 0.016479492, 0.029830933, -0.018692017, -0.022949219, -0.06225586, 0.022720337, 0.051330566, -0.0018663406, 0.04345703, 0.033111572, -0.039733887, 0.0034732819, -0.004432678, 0.030914307, -0.010757446, 0.0024166107, 0.014053345, -0.012535095, -0.0039787292, -0.0036067963, 0.0011396408, -0.031707764, -0.014945984, -0.0073928833, 0.015487671, 0.026016235, 0.021194458, -0.01940918, 0.009086609, 0.021942139, -0.026275635, 0.027832031, -0.04940796, -0.037994385, 0.04083252, 0.0056762695, 0.0017166138, 0.00092840195, -0.026000977, -0.012825012, 0.02798462, -0.042236328, -0.014549255, -0.01512146, 0.019302368, -0.015327454, 0.009429932, -0.016815186, -0.037475586, -0.003200531, 0.018493652, 0.0019435883, 0.04559326, 0.018814087, 0.011062622, 0.01525116, -0.021697998, 0.022506714, -0.0027561188, 0.032470703, 0.04119873, 0.0039482117, -0.010505676, -0.018295288, -0.021209717, -0.024810791, 0.028427124, -0.014297485, 0.00091552734, 0.07055664, 0.06088257, 0.054016113, 0.09588623, 0.034240723, 0.028411865, -0.029296875, 0.012763977, -0.017730713, -0.011680603, -0.0029659271, 0.006832123, -0.047088623, -0.003780365, -0.015449524, -0.047302246, 0.012863159, 0.016082764, -0.029312134, -0.041290283, 0.00051116943, 0.03277588, -0.061462402, 0.022949219, -0.08154297, -0.04067993, -0.009689331, -0.02204895, -0.012374878, -0.021972656, -0.05606079, 0.02684021, -0.013969421, -0.042785645, -9.047985e-05, -0.004169464, 0.004573822, -0.08569336, -0.027923584, -0.043304443, 0.050842285, 0.010437012, 0.049041748, -0.018310547, -0.070495605, -0.056121826, 0.043762207, -0.061798096, -0.025436401, -0.004180908, 0.0003592968, 0.006439209, 0.000647068, 0.018249512, 0.11248779, 0.0024051666, 0.006034851, -0.031173706, -0.0020103455, -0.017074585, 0.04647827, 0.005706787, -0.030288696, -0.031402588, -0.0030460358, -0.026733398, 0.052459717, 0.0073280334, -0.04019165, -0.03253174, -0.0236969, -0.017440796, -0.0005760193, -0.0016078949, 0.012817383, -0.0055236816, 0.0067863464, -0.04147339, -0.024032593, -0.01486969, -0.011146545, 0.025787354, 0.039642334, -0.0012016296, -0.011260986, -0.047790527, 0.015792847, -0.010040283, -0.0030879974, 0.035308838, 0.0058403015, 0.02998352, 0.008392334, -0.0340271, -0.003768921, -0.020599365, 0.0141067505, 0.008766174, -0.0104599, -0.023956299, 0.0025482178, -0.010063171, 0.036132812, 0.0038394928, 0.01927185, 0.035186768, 0.04559326, -0.03881836, -0.0003619194, 0.0022716522, -0.020263672, 0.025558472, -0.0072898865, -0.021957397, -0.024780273, 0.022827148, 0.007972717, 0.021835327, 0.03387451, 0.019836426, -0.013442993, -0.036499023, 0.03515625, 0.03125, 0.028457642, -0.066833496, 0.093322754, 0.034729004, 0.085754395, 0.00894928, -0.06536865, -0.024276733, 0.03878784, 0.0016613007, -0.03378296, 0.032928467, -0.03781128, 0.026611328, 0.005794525, 0.0234375, 0.015388489, 0.0017795563, -0.021469116, -0.0256958, 0.0040626526]}, "B001DC5HAW": {"id": "B001DC5HAW", "original": "Brand: Stansport\nName: Stansport 3 Outlet Propane Distribution Post\nDescription: \nFeatures: Simple, versatile device lets you operate three propane devices from one bulk propane cylinder\nWorks with lanterns, stoves, heaters, and other propane appliances\nThree outlets, each with its own auto shut-off valve\nAdjustable base ensures stability on uneven terrain\n30-inch device weighs just two pounds, and packs easily\n", "metadata": {"Name": "Stansport 3 Outlet Propane Distribution Post", "Brand": "Stansport", "Description": "", "Features": "Simple, versatile device lets you operate three propane devices from one bulk propane cylinder\nWorks with lanterns, stoves, heaters, and other propane appliances\nThree outlets, each with its own auto shut-off valve\nAdjustable base ensures stability on uneven terrain\n30-inch device weighs just two pounds, and packs easily", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0077552795, 0.0027770996, -0.019104004, -0.022109985, -0.027374268, -0.0026855469, -0.059173584, -0.0104522705, 0.013206482, -0.013175964, -0.018508911, 0.0262146, -0.026016235, -0.034057617, 0.013046265, -0.007598877, 0.021972656, 0.007881165, -0.0061836243, -0.029373169, 0.013710022, -0.027648926, -0.0063209534, 0.1171875, 0.011116028, -0.008590698, 0.016983032, 0.018249512, -0.008964539, -0.011634827, 0.01083374, 0.014595032, 0.051879883, -0.033813477, 0.004837036, 0.001578331, 0.03918457, -0.041992188, -0.031082153, 0.011894226, -0.0075035095, 0.02168274, 0.03918457, -0.01158905, -0.016143799, -0.0109939575, -0.0076026917, -0.02482605, 0.022003174, 0.015594482, -0.014137268, 0.017562866, -0.013130188, -0.04498291, 0.0026474, 0.011962891, -0.0057640076, 0.016403198, -0.0018777847, -0.022537231, -0.0056266785, 0.037231445, 0.01776123, 0.03314209, -0.019592285, 0.0062675476, 0.08001709, -0.0124435425, 0.015258789, -0.017456055, 0.005622864, 0.042663574, 0.007801056, 0.011070251, -0.06506348, -0.03555298, 0.02394104, -0.04067993, 0.033233643, -0.015945435, 0.0017728806, 0.012367249, 0.019302368, -0.015914917, -0.007904053, -0.019851685, -0.015289307, -0.009712219, 0.020996094, -0.013298035, 0.010261536, -0.00894928, 0.024993896, 0.018173218, -0.022735596, -0.050994873, -0.012611389, -0.07128906, 0.023986816, -0.029144287, 0.041412354, -0.04647827, 0.0023384094, 0.028289795, 0.013053894, 0.025909424, 0.0155181885, -0.020019531, 0.02053833, -0.0038089752, -0.0236969, 0.03262329, -0.0035095215, 0.025253296, -0.038635254, -0.008476257, -0.055877686, 0.0040626526, -0.026565552, 0.039916992, -0.03491211, -0.013511658, 0.043121338, -0.013473511, 0.008331299, -0.0023841858, -0.0104904175, -0.020248413, 0.04458618, -0.026672363, -0.034423828, 0.044189453, 0.029067993, -0.009033203, 0.008888245, 0.008453369, 0.014633179, 0.020904541, 0.023468018, -0.019363403, 0.022994995, -0.007205963, 0.005531311, 0.03527832, -0.0017747879, 0.013664246, 0.020095825, -0.018051147, -0.008041382, 0.02482605, -0.041931152, -0.022232056, 9.8109245e-05, 0.032348633, -0.016281128, 0.020858765, 0.008392334, -0.012298584, -0.0060691833, -0.034301758, -0.0033092499, -0.031555176, -0.029220581, 0.003932953, -0.037200928, 0.037017822, 0.0390625, -0.00040125847, 0.023071289, 0.033569336, 0.019195557, 0.024475098, 0.018035889, 0.016311646, -0.0033454895, -0.0010547638, -0.047698975, 0.05960083, 0.038970947, -0.12420654, -0.055999756, -0.058441162, 0.08319092, -0.012687683, 0.0021629333, -0.043151855, 0.023117065, -0.012428284, 0.0034675598, 0.012756348, 0.039916992, 0.009544373, -0.01763916, -0.027496338, -0.009521484, 0.028701782, -0.013038635, 0.04824829, -0.013092041, -0.034851074, 0.019348145, -0.0022239685, 0.035247803, 0.014167786, 0.08178711, -0.0044822693, 0.023666382, -0.006298065, 0.013336182, 0.040161133, -0.010192871, -0.002336502, -0.005367279, -0.045196533, -0.008850098, -0.0011386871, -0.01965332, 0.0039901733, 0.008636475, -0.00011777878, 0.036712646, -0.014732361, 0.033935547, 0.03540039, -0.020095825, -0.024307251, -0.013305664, -0.0027923584, -0.008377075, -0.001996994, 0.023406982, 0.012542725, 0.0496521, 0.05117798, -0.020904541, 0.05203247, 0.09967041, 0.106933594, -0.03805542, -0.045959473, 0.013786316, -0.044708252, -0.03338623, 0.0016422272, -0.0129470825, -0.02305603, 0.008964539, -0.0065689087, 0.00050497055, 0.010360718, 0.048553467, -0.0074920654, 0.034851074, 0.029037476, -0.011886597, 0.023513794, -0.03414917, -7.4625015e-05, 0.013076782, 0.006893158, -0.008148193, 0.02885437, 0.040252686, -0.009124756, 0.045074463, 0.039001465, 0.061828613, 0.0619812, -0.01184082, 0.022583008, -0.019378662, 0.0007777214, -0.025848389, 0.017227173, -0.008071899, -0.016662598, -0.040924072, 0.036132812, -0.034606934, 0.0048980713, -0.0036582947, 0.0049705505, 0.0020980835, -0.024841309, 0.032287598, 0.038024902, 0.00041532516, -0.06732178, -0.020339966, 0.0018291473, 0.028579712, 0.01499176, -0.024261475, 0.025894165, -0.019897461, -0.020095825, 0.017456055, -0.05029297, 0.050231934, -0.06402588, 0.0012454987, 0.048431396, -0.04348755, 0.030639648, -0.00091934204, -0.016052246, -0.010749817, 0.02128601, -0.0084991455, 0.005836487, -0.08526611, -0.027801514, 0.022872925, 0.029907227, 0.009086609, 0.01979065, -0.0018796921, 0.045959473, 0.012489319, 0.0050315857, 0.028640747, -0.035888672, 0.045654297, -0.02696228, 0.010131836, -0.035858154, -0.01838684, 0.010185242, 0.0011901855, 0.0047302246, -0.0056114197, -0.0020561218, -0.0009636879, 0.017868042, -0.0030231476, 0.010047913, 0.021636963, 0.045410156, 0.009918213, -0.056243896, 0.0053863525, -0.0317688, -0.031829834, 0.013969421, -0.048736572, -0.015197754, 0.006565094, 0.009559631, -0.052764893, -0.031402588, 0.036193848, -0.01524353, -0.0073547363, -0.008781433, 0.035705566, -0.026000977, -0.026123047, 0.0082473755, 0.018051147, -0.034423828, 0.040527344, -0.01020813, -0.010559082, -0.05078125, 0.026535034, -0.027694702, -0.029708862, -0.053985596, -0.03564453, -0.007419586, -0.0017700195, -0.03579712, -0.01751709, -0.020568848, -0.018417358, 0.029922485, 0.0036468506, -0.04675293, 0.013198853, -0.010650635, -0.03387451, -0.028793335, 0.02468872, 0.0012359619, -0.03149414, 0.05166626, 0.048736572, -0.015586853, 0.017150879, -0.03050232, 0.0068511963, 0.01689148, -0.019134521, -0.0018911362, -0.014907837, -0.024887085, -0.0016918182, 0.02557373, -0.04525757, 0.016296387, -0.023269653, 0.026641846, -0.015541077, 0.012016296, -0.024093628, -0.029525757, -0.01928711, -0.050689697, 0.01309967, 0.053619385, -0.021865845, 0.0030727386, -0.03652954, 0.019638062, 0.0017795563, 0.0042686462, 0.016326904, -0.014945984, 0.005519867, -0.0112838745, 0.056365967, -0.11846924, 0.034179688, 0.021911621, -0.017837524, 0.017593384, -0.016433716, 0.018157959, -0.046081543, 0.019607544, 0.0076942444, -0.0043678284, -0.01159668, -0.010169983, -0.004699707, 0.022872925, -0.008132935, -0.009483337, 0.0048103333, -0.0138168335, -0.031829834, -0.015136719, -0.00064849854, 0.031280518, -0.021438599, 0.0121536255, -0.02923584, -0.028320312, -0.012763977, -0.019836426, 0.027999878, 0.0017728806, 0.051330566, 0.017150879, -0.002254486, 0.058410645, -0.015151978, 0.018051147, 0.021270752, -0.028549194, -0.051483154, -0.008171082, -0.00040078163, -0.01914978, 0.006061554, -0.060821533, -0.008781433, 0.020828247, 0.03640747, -0.027404785, -0.001452446, 0.09185791, 0.029785156, 0.012176514, -0.013008118, 0.001244545, 0.024627686, 0.019378662, -0.025115967, -0.031799316, -0.037506104, 0.003293991, -4.929304e-05, 0.04135132, 0.05569458, -0.010139465, 0.035125732, 0.0021038055, -0.0023593903, 0.035827637, 0.042022705, -0.01725769, 0.019119263, 0.04434204, -0.027069092, -0.007736206, 0.009628296, 0.02116394, -0.012145996, 0.005153656, -0.054901123, -0.003528595, 0.0055770874, -0.009529114, -0.024475098, 0.0074157715, 0.016906738, -0.028015137, 0.0077667236, -0.019058228, -0.016448975, -0.048706055, -0.05303955, 0.010681152, -0.036468506, 0.026748657, -0.028335571, -0.027450562, -0.021865845, -0.00011301041, 0.028961182, 0.029418945, -0.02003479, 0.01802063, 0.06945801, -0.021591187, -0.03189087, -0.0013084412, -0.04650879, 0.0010547638, 0.037078857, 0.03652954, 0.0131073, 0.0027370453, -0.006755829, 0.0033130646, 0.0020313263, 0.018936157, -0.021759033, -0.08782959, 0.009719849, 0.038024902, 0.0074043274, -0.052093506, -0.040374756, -0.016998291, -0.021530151, -0.008659363, 0.004764557, -0.079711914, 0.029220581, 0.050567627, -0.09387207, -0.018630981, -0.02998352, 0.017410278, -0.056549072, 0.037994385, -0.016296387, -0.032165527, -0.01965332, -0.053863525, -0.04626465, 0.061431885, -0.08526611, 0.0027179718, 0.052459717, 0.025909424, -0.028656006, -0.008331299, -0.004863739, 0.025238037, 0.040863037, -0.038909912, 0.0061569214, -0.044891357, -0.012321472, 0.01146698, 0.008354187, 0.036468506, 0.024459839, 0.022079468, -0.04763794, 0.007865906, -0.026046753, 0.0138168335, -0.021102905, -0.0010795593, -0.052215576, -0.03668213, 0.019805908, 0.021331787, 0.013534546, 0.016540527, -0.0004479885, 0.029815674, -0.021881104, -0.09741211, -0.013206482, -0.008087158, -0.059143066, 0.018341064, -0.005176544, -0.031173706, 0.061950684, 0.05947876, -0.025039673, 0.013038635, -0.04272461, -0.038146973, 0.0015611649, 0.031341553, -0.030593872, -0.0068130493, -0.06414795, 0.026763916, -0.04031372, 0.03390503, 0.056121826, -0.013137817, -0.005771637, 0.01663208, -0.028823853, -0.043151855, -0.043060303, 0.086364746, 0.026184082, 0.021835327, -0.05206299, -0.014213562, -0.015594482, -0.040405273, -0.019348145, -0.021499634, 0.003282547, -0.004924774, -0.002161026, -0.021560669, -0.0045776367, 0.0020065308, 0.0054473877, 0.02859497, -0.012077332, -0.047424316, 0.07299805, -0.017486572, -0.023452759, 0.012870789, 0.0038719177, 0.012939453, 0.032196045, 0.0049324036, -0.050048828, -0.010360718, 0.028411865, 0.006225586, -0.05090332, -0.0018129349, 0.030288696, -0.021560669, -0.064208984, 0.03225708, 0.024215698, 0.007698059, -0.032714844, 0.021759033, -0.0036563873, 0.037078857, -0.023605347, 0.015686035, 0.024932861, -0.028213501, 0.005317688, -0.009597778, -0.0016126633, 0.005794525, 0.038085938, 0.006401062, -0.00856781, -0.024551392, 0.020233154, 0.014320374, 0.0026988983, 0.04055786, -0.046539307, 0.051239014, -0.07733154, -0.031585693, 0.03363037, -0.049743652, -0.027893066, -0.02041626, 0.0025196075, -0.074401855, 0.0042877197, 0.024978638, -0.043884277, 0.029220581, 0.0028152466, -0.00042319298, 0.007232666, 0.016159058, -0.023147583, -0.016571045, -0.018356323, -0.016983032, -0.030380249, -0.014701843, -0.022537231, -0.022659302, -0.029846191, 0.016540527, -0.009719849, 0.0018033981, 0.0062561035, -0.0146102905, 0.003288269, -0.013877869, -0.023223877, 0.007205963, -0.012252808, 0.010215759, 0.028244019, -0.0038375854, 0.007827759, 0.013648987, -0.04046631, 0.009231567, -0.013114929, -0.02268982, -0.011657715, 0.0340271, -0.033691406, -0.010734558, 0.013313293, -0.008201599, 0.06274414, -0.010635376, 0.0006761551, 0.04421997, 0.06201172, -0.0039901733, 0.04638672, -0.009681702, -0.059326172, 0.035095215, 0.0077056885, -0.054229736, -0.04171753, -0.04071045, -0.020324707, 0.019836426, 0.021591187, -0.014678955, 0.05731201, -0.010894775, -0.068725586, -0.047790527, 0.015213013, 0.023117065, 0.0005130768, 0.01449585, -0.026153564, -0.026565552, -0.027938843, -0.018692017, -0.060150146, -0.054138184, -0.005428314, 0.04144287, 0.040740967, 0.009132385, 0.0016117096, 0.0029182434, -0.056884766, 0.044555664, 0.010093689, -0.055603027, -0.039276123, 0.068115234, 0.0690918, 0.0019054413, -0.054626465, -0.03970337, -0.028137207, 0.0146484375, 0.04296875, 0.047698975, -0.049072266, 0.0028858185, 0.03982544, 0.03439331, -0.03970337, 0.066467285, 0.044830322, 0.04220581, -0.05316162, -0.023162842, 0.027511597, -0.048858643, 0.0051231384, -0.050079346, -0.007472992, -0.0154800415, -0.042419434, 0.018844604, -0.06628418, 0.043884277, -0.031280518, -0.019210815, 0.000934124, 0.0038661957, 0.035858154, -0.017944336, -0.058776855, -0.02268982, -0.072143555, -0.03375244, 0.018539429, 0.014167786, 0.0050849915, 0.032196045, 0.012779236, 0.0020141602, -0.022476196, -0.029541016, -0.007663727, 0.023391724, -0.014846802, -0.013130188, 0.011474609, -0.034698486, -0.03515625, -0.021621704, 0.002784729, 0.010108948, -0.019592285, -0.008117676, 0.026550293, 0.0055618286, -0.009338379, -0.020935059, 0.0024967194, 0.00031781197, -0.022949219, 0.003648758, -0.004623413, -0.009124756, -0.043304443, 0.034576416, 0.016311646, 0.0016498566, 0.0357666, -0.034057617, 0.011505127, -0.027679443, 0.02015686, -0.032440186, -0.062927246, -0.08154297, -0.025344849, 0.022201538, 0.032104492, 0.010444641, -0.026306152, 0.0073013306, -0.05166626, 0.019226074, -0.005088806, -0.005630493, -0.0046310425, 0.0647583, -0.08099365, 0.03878784, 0.0057868958, 0.0071754456, 0.015716553, 0.10614014, 0.036224365, -0.0076408386, 0.0034008026, -0.0068855286, 0.02407837, 0.010932922, 0.0007715225, -0.04876709, -0.009681702, 0.010551453, 0.047027588, -0.010108948, 0.017669678, -0.0057525635, -0.015930176, 0.012123108, -0.03149414, -0.029067993, 0.028503418, 0.0050735474, -0.040802002, 0.018188477, 0.00233078, -0.0637207, 0.0016441345, -0.03781128, -0.005531311, -0.027404785, -0.06506348, -0.044036865, 0.0146484375, -0.05343628, -0.0027332306, 0.003074646, 0.0030097961, -0.0052490234, -0.012565613, 0.013656616, -0.008995056, 0.016082764, 0.03225708, 0.064697266, -0.0073547363, 0.03427124, 0.0015764236, -0.044158936, -0.010551453, 0.024841309, -0.030822754, -0.028793335, -0.030822754, 0.026123047, 0.017532349, -0.0028839111, 0.03414917, 0.045074463, 0.029769897, 0.008666992, 0.014389038, -0.045410156, -0.005306244, 0.0056381226, 0.008293152, -0.029159546, -0.0552063, 0.028213501, 0.026687622, 0.037109375, 0.008049011, 0.017745972, -0.079956055, -0.014015198, -0.051727295, 0.029129028, -0.03652954, 0.0009937286, -0.0070724487, 0.0004453659, -0.034454346, -0.019805908, 0.017440796, 0.0637207, 0.024902344, 0.01914978, 0.020874023, -0.031158447, -0.05441284, -0.04107666, -0.025527954, 0.04345703, 0.03793335, -0.028549194, 0.026138306, 5.3226948e-05, -0.023529053, -0.0009880066, -0.0006008148, 0.0012664795, 0.0041542053, -0.014572144, 0.045410156, -0.01133728, -0.024658203, 0.03173828, -0.049041748, -0.014320374, 0.03540039, -0.022994995, -0.005264282, -0.023651123, -0.032440186, 0.00082206726, -0.04360962, -0.05105591, -0.04425049, -0.024978638, 0.015609741, 0.019485474, -0.0011558533, -0.008468628, 0.030685425, 0.015464783, -0.01361084, 0.019836426, -0.0039863586, 0.04220581, -0.010093689, 0.042022705, 0.014785767, 0.049987793, -0.0013275146, -0.099609375, -0.0524292, 0.03845215, -0.0027999878, -0.017089844, 0.006034851, -0.005695343, 0.007534027, -0.0011119843, -0.054504395, -0.026351929, -0.009376526, 0.087646484, -0.038116455, 0.0019950867]}, "B01GE77QT0": {"id": "B01GE77QT0", "original": "Brand: ThermoPro\nName: ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer\nDescription: \nFeatures: Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself\nHassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition\nKitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature\nUSDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes\nDurable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit\n", "metadata": {"Name": "ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer", "Brand": "ThermoPro", "Description": "", "Features": "Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself\nHassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition\nKitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature\nUSDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes\nDurable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022079468, 0.0017614365, -0.0018234253, 0.026885986, -0.01725769, -0.026123047, 0.013809204, -0.03353882, 0.023101807, 0.03112793, 0.0010051727, 0.007575989, 0.061767578, -0.04763794, 0.025421143, 0.013244629, 0.011764526, -0.0013999939, 0.02520752, 0.0045280457, -0.015167236, 0.028152466, 0.0104522705, 0.004714966, 0.032684326, 0.031143188, 0.015144348, -0.007095337, 0.02810669, 0.00548172, 0.028030396, -0.04345703, 0.040252686, 0.032287598, -0.10003662, -0.014152527, -0.04559326, 0.009414673, -0.041748047, 0.005882263, 0.010017395, 0.005695343, 0.033599854, 0.04034424, -0.005054474, -0.049804688, 0.041412354, -0.020507812, -0.004940033, 0.043060303, 0.03753662, -0.014877319, 0.04058838, -0.011749268, 0.0030899048, 0.0037555695, 0.017929077, -0.021987915, 0.026016235, -0.0546875, -0.018493652, -0.0011920929, 0.042510986, 0.043701172, -0.013900757, 0.004714966, 0.07067871, -0.006603241, 0.0035057068, -0.040527344, 0.00043034554, 0.029815674, 0.020233154, -0.022415161, -0.005504608, -0.045562744, 0.0005326271, -0.038513184, 0.015579224, 0.018341064, 0.020645142, -0.04437256, 0.04095459, -0.020599365, 0.025283813, 0.018463135, -0.0005092621, -0.024108887, -0.036956787, -0.045532227, -0.03173828, -0.0043258667, -0.058776855, 0.020767212, -0.018951416, -0.0031051636, -0.0015592575, 0.009979248, -0.01991272, 0.00035953522, 0.012832642, -0.033355713, 0.0012998581, -0.0124053955, -0.022354126, 0.051452637, -0.0011301041, 0.025100708, 0.018096924, 0.015411377, 0.012138367, -0.020111084, -0.0052490234, -0.005432129, -0.046722412, 0.01789856, 0.0076293945, -0.07019043, -0.0032901764, -0.057922363, -0.032196045, -0.0127334595, 0.022537231, 0.032806396, 0.020904541, 0.027023315, 0.012535095, -0.017593384, -0.1027832, 0.05279541, -0.026901245, -0.024383545, 0.039276123, 0.04345703, 0.0074424744, -0.045318604, 0.03555298, -0.00022006035, 0.008918762, 0.005897522, -0.013557434, -0.027633667, -0.0016880035, -0.006252289, -0.044799805, -0.003665924, 0.031051636, 0.025283813, -0.049438477, -0.03744507, -0.009552002, 0.056121826, 0.022125244, -0.0104904175, -0.013397217, -0.015716553, -0.0395813, -0.010612488, 0.017227173, -0.011314392, -0.03677368, 0.005367279, 0.021697998, -0.005710602, 0.0044670105, -0.021438599, 0.028625488, -0.0031757355, 0.02432251, 0.010665894, 0.02305603, -0.004310608, 0.015838623, 0.028167725, 0.007511139, 0.024276733, 0.0058059692, 0.10089111, 0.075805664, -0.123413086, -0.07513428, -0.05480957, 0.17529297, -0.07879639, 1.0251999e-05, 0.009857178, -0.011886597, 0.025253296, 0.0284729, 0.014060974, -0.059783936, -0.008659363, -0.020492554, 0.031433105, 0.0009236336, 0.005264282, -0.036895752, 0.039489746, -0.0158844, -0.06335449, -0.06896973, 0.024291992, -0.033996582, 0.039733887, -0.026168823, 0.0077438354, -0.0026950836, 0.046813965, -0.020645142, -0.008460999, 0.012840271, -0.016403198, 0.014404297, -0.090148926, -0.033477783, 0.010681152, -0.035614014, -0.00299263, -0.014770508, 0.0036258698, 0.004650116, -0.020263672, 0.00044727325, 0.01977539, 0.042938232, -0.011474609, -0.018157959, 0.0025978088, 0.055877686, -0.0069236755, 0.02583313, 0.041015625, -0.0077819824, 0.023269653, 0.0018424988, 0.044158936, 0.08459473, 0.03314209, -0.0077781677, -0.03540039, 0.014984131, 0.003932953, -0.02557373, -0.016296387, 0.03213501, -0.019302368, 0.0074806213, -0.015533447, -0.0045776367, 0.029464722, 0.025299072, -0.01272583, 0.024551392, -0.0043907166, 0.006717682, 0.022338867, -0.021972656, 0.038635254, -0.038635254, 0.0075645447, -0.016311646, 0.03277588, 0.055511475, -0.017028809, 0.039245605, 0.006252289, 0.016815186, 0.009780884, -0.030654907, 0.0043258667, 0.009712219, -0.008415222, -0.018737793, -0.017929077, 0.016677856, -0.02532959, -0.052001953, 0.02835083, 0.02255249, -0.028869629, 0.0027236938, 0.03186035, 0.03201294, -0.0014295578, 0.014968872, -0.038879395, 0.016921997, 0.01763916, -0.031188965, -0.010215759, 0.030548096, -0.00762558, -0.019821167, -0.0013084412, 0.0017852783, -0.0071144104, 0.022033691, 0.030670166, 0.0031776428, -0.0109939575, 0.00081300735, 0.025939941, -0.0209198, -0.0055885315, -0.008628845, -0.0008778572, 0.013114929, 0.0017662048, -0.00793457, -0.046081543, 0.024139404, 0.02949524, 0.03250122, -0.06738281, 0.032318115, 0.040100098, -0.0090408325, 0.00069618225, -0.0065231323, 0.017166138, 0.0079193115, -0.0181427, -0.04296875, -0.0020828247, -0.010398865, 0.017410278, -0.008110046, -0.014549255, -0.0067863464, 0.01448822, 0.03338623, 0.015731812, 0.014717102, 0.0062446594, 0.0032291412, -0.003829956, -9.089708e-05, 0.0033416748, -0.023422241, -0.030288696, -0.016860962, 0.0073051453, 0.034057617, -0.013679504, -0.059539795, 0.0054893494, -0.0023670197, 0.0050964355, -0.009986877, -0.027175903, 0.028579712, -0.012054443, 0.011642456, 0.008743286, -0.0019264221, -0.029159546, -0.012298584, -0.021636963, -0.03753662, -0.065979004, -0.013214111, -0.0005874634, -0.05014038, 0.0012512207, 0.04876709, -0.024887085, -0.005012512, -0.0184021, 0.019317627, 0.03643799, 0.056274414, -0.0075149536, -0.00920105, -0.025299072, -0.030639648, -0.057769775, -0.01777649, -0.0390625, 0.019485474, -0.022979736, -0.006626129, 0.019973755, 0.047668457, 0.045715332, 0.0061950684, 0.04736328, 0.02230835, 0.03866577, -0.011810303, -0.034454346, 0.017654419, 0.08703613, 0.008590698, -0.035125732, -5.9902668e-05, 0.025543213, -0.013031006, -0.05105591, 0.015838623, -0.015655518, -0.06359863, -0.0027389526, -0.0259552, -0.015296936, 0.0143966675, -0.07763672, -0.004383087, -0.056762695, 0.0034389496, 0.048187256, -0.036132812, 0.007083893, -0.033172607, -0.00093460083, 0.010421753, -0.0033111572, 0.04159546, 0.0060577393, 0.019515991, -0.05114746, -0.0073928833, -0.002456665, 0.011009216, -0.005458832, -0.016311646, -0.008125305, -0.02810669, -0.0069999695, -0.0026855469, -0.0062789917, -0.045654297, -0.016204834, -0.007675171, -0.03086853, -0.016052246, 0.0016536713, -0.0021324158, -0.017242432, 0.0012741089, -0.012512207, -0.043884277, -0.015655518, -0.022827148, 0.0054626465, -0.02267456, -0.02166748, -0.0065193176, -0.058624268, 0.004371643, -0.08343506, -0.02017212, 0.0029964447, 0.05645752, 0.02784729, 0.021087646, 0.093322754, -0.040649414, 0.053863525, 0.045806885, -0.06384277, -0.011436462, -0.06402588, -0.0031223297, 0.048797607, -0.014091492, -0.007785797, 0.030303955, -0.006439209, -0.026260376, -0.0009279251, -0.03643799, 0.042144775, -0.03050232, -0.013839722, -0.029907227, 0.003774643, 0.041870117, 0.008934021, 0.047943115, -0.019500732, -0.039886475, 0.025802612, -0.07507324, 0.05419922, 0.0024738312, 0.004016876, 0.044067383, 0.032958984, 0.003129959, 0.01361084, 0.06774902, -0.015960693, 0.03314209, 0.000685215, -0.029281616, -0.037353516, -0.0016899109, 0.03781128, 0.032806396, 0.025497437, -0.034576416, 0.005970001, -0.0027885437, -0.005554199, -0.03955078, -0.0033283234, 0.019424438, 0.018066406, 0.010040283, -0.053100586, 0.043060303, -0.0178833, 0.009521484, -0.01184082, -0.009277344, -0.046966553, 0.04006958, -0.0056533813, -0.012786865, 0.00041913986, 0.004600525, 0.005962372, 0.004638672, 0.015563965, 0.0107040405, -0.0045166016, -0.020477295, 0.00087213516, 0.008155823, -0.005470276, 0.041503906, -0.0045280457, 0.013549805, 0.0019483566, -0.0073013306, 0.00522995, 0.003019333, 0.0063095093, 0.010543823, 0.00013518333, 0.017974854, -0.008575439, -0.022903442, -0.01689148, 0.048736572, -0.087890625, 0.028244019, -0.020095825, -0.078063965, -0.0007815361, -0.03729248, -0.025726318, -0.027526855, -0.015960693, 0.0035495758, -0.043640137, -0.020355225, 0.01461792, 0.013328552, -0.016159058, -0.0065727234, 0.018432617, -0.047851562, 0.007209778, -0.014053345, 0.003944397, 0.067993164, 0.023345947, 0.037963867, -0.042541504, -0.028518677, -0.03857422, 0.013214111, 0.010017395, 0.015029907, 0.023284912, -0.039764404, -0.021270752, 0.024780273, 0.09515381, 0.010215759, 0.017120361, -0.07507324, -0.06567383, -0.007881165, -0.013748169, 0.02406311, -0.012016296, -0.0045814514, -0.035247803, 0.013183594, -0.012184143, 0.03250122, 0.005130768, -0.005004883, -0.050354004, 0.0074806213, -0.043670654, 0.021575928, -0.010093689, -0.0070762634, 0.017211914, 0.0042495728, -0.023788452, 0.006603241, 0.023376465, -0.019485474, -0.018936157, 0.013214111, -0.024993896, -0.00037765503, -0.024337769, -0.014884949, 0.038513184, -0.03829956, 0.0036792755, 0.010848999, 0.017669678, 0.052490234, -0.025238037, 0.010719299, 0.014930725, -0.017730713, 0.026687622, 0.0029277802, -0.022445679, -0.022109985, -0.039916992, -0.029144287, 0.0057754517, -0.03387451, 0.0022449493, -0.015808105, 0.0007777214, 0.005382538, 0.00356102, -0.017044067, -0.017410278, -0.018356323, -0.014328003, 0.0063667297, 0.016418457, -0.0015821457, 0.010276794, -0.014480591, -0.020492554, -0.0031108856, -0.018463135, -0.026245117, 0.003932953, -0.03189087, -0.015914917, -0.039276123, -0.031951904, 0.021942139, -0.05883789, 0.012214661, 0.033569336, 0.0049209595, -0.023483276, -0.016235352, 0.0034236908, 0.0042533875, -0.045135498, 0.0836792, -0.012504578, 0.008590698, 0.018249512, -0.010154724, 0.048217773, -0.036010742, 0.008705139, 0.03869629, -0.010887146, 0.006629944, -0.023605347, -0.012123108, 0.003435135, -0.0071907043, -0.027999878, 0.015419006, 0.049621582, 0.022583008, 0.024749756, -0.049865723, 0.056396484, -0.008018494, -0.027572632, -0.019088745, 0.08013916, -0.058135986, -0.027313232, -0.006313324, -0.029815674, -0.04837036, -0.039398193, -0.017562866, -0.035858154, -0.05508423, -0.0055389404, 0.0062065125, -0.008850098, 0.033721924, -0.024551392, -0.012634277, 0.042419434, -0.03579712, 0.04360962, -0.026229858, -0.007183075, 0.013618469, 0.013046265, -0.036315918, -0.029296875, 0.037384033, -0.013305664, -0.001613617, -0.013557434, -0.027709961, -0.0066223145, -0.0019168854, -0.005268097, 0.052703857, 0.014915466, 0.019485474, 0.03994751, -0.0003926754, 0.009811401, -0.0057411194, 0.007183075, -0.021560669, 0.019927979, 0.047912598, -0.044830322, -0.04043579, -0.021087646, 0.03302002, 0.0079422, -0.033294678, 0.066467285, 0.016464233, 0.0044059753, 0.030899048, -0.015655518, -0.018341064, 0.045288086, 0.005794525, -0.023651123, -0.0037002563, -0.01197052, -0.03186035, 0.031951904, -0.0043144226, 0.0038528442, 0.017822266, 0.01234436, 0.04296875, -0.019836426, -0.023590088, -0.02305603, -0.018814087, 0.018615723, -0.010116577, -0.008781433, -0.02331543, -0.0087509155, -0.037109375, -0.017074585, 0.045013428, 0.042419434, 0.04095459, -0.023101807, 0.0435791, 0.115234375, -0.091674805, 0.04751587, 0.028381348, -0.03640747, -0.004573822, 0.006969452, 0.010246277, -0.017944336, -0.04827881, -0.00082063675, -0.01928711, 0.0335083, 0.022659302, 0.0206604, -0.044525146, -0.017242432, -0.0053215027, 0.035949707, 0.015327454, 0.027877808, 0.014160156, -0.0043411255, -0.022506714, -0.0039596558, -0.005428314, -0.033355713, -0.027145386, -0.03756714, 0.01285553, 0.022506714, -0.0029888153, 0.022521973, -0.015930176, 0.04171753, -0.026138306, 0.03427124, -0.008422852, 0.0032653809, 0.025314331, -0.012176514, -0.018432617, -0.030044556, -0.0045204163, 0.00080251694, -0.0010137558, 0.011947632, 0.0032424927, 0.02027893, 0.0041885376, 0.020584106, 0.026138306, 0.0019989014, 0.0061302185, -0.048187256, 0.03390503, -0.09436035, -0.033203125, -0.036590576, 0.0030078888, 0.027572632, 0.013282776, 0.012626648, 0.0015287399, 0.1171875, -0.060455322, 0.0030784607, 0.0013685226, 0.024414062, -0.024261475, 0.011566162, -0.008674622, 0.0037002563, 0.017852783, -0.007858276, -0.051879883, 0.021987915, 0.035003662, -0.012519836, 0.04840088, -0.019515991, 0.01386261, -0.020507812, -0.0044937134, -0.03378296, -0.047607422, 0.004108429, 0.0075531006, -0.008590698, 0.021392822, -0.0017251968, -0.0038089752, 0.010269165, -0.004108429, 0.02142334, 0.008811951, 0.048431396, 0.040130615, -0.023254395, -0.016571045, -0.08404541, -0.03353882, -0.026977539, -0.010467529, -0.025238037, -0.019180298, 0.07299805, 0.07330322, 0.0015621185, 0.05142212, -0.023788452, -0.0030136108, 0.03857422, 0.018920898, -0.024383545, 0.03390503, 0.011253357, -0.028137207, -0.016448975, -0.012062073, -0.0063934326, 0.04611206, 0.068115234, 0.013595581, -0.0036373138, -0.06866455, 0.06890869, -0.04397583, -0.06640625, 0.029937744, -0.050109863, -0.028656006, 0.0058403015, -0.0022296906, -0.04260254, -0.05218506, -0.03479004, 0.05441284, -0.04284668, -0.016677856, -0.009231567, -0.023757935, -0.00020551682, -0.04751587, -0.0047912598, 0.006916046, 0.033477783, -0.00042152405, 0.035095215, -0.03652954, -0.051635742, -0.047424316, 0.036376953, -0.08453369, -0.040283203, -0.018829346, -0.0040283203, -0.0126571655, -0.006828308, -0.0037078857, -0.017028809, 0.025222778, -0.018310547, -0.040008545, -0.0022144318, -0.026977539, 0.007282257, -0.024719238, -0.009315491, -0.002714157, 0.04446411, 0.014671326, 0.039031982, 0.0039787292, 0.033843994, -0.06970215, -0.0015554428, -0.038482666, 0.015960693, -0.002412796, -0.014892578, -0.027633667, -0.028579712, -0.048431396, -0.059143066, 0.012207031, 0.022598267, 0.01625061, 0.07434082, -0.008804321, 0.027267456, -0.022476196, 0.07891846, 0.004058838, -0.034973145, 0.0067253113, 0.029464722, 0.023773193, 0.022033691, -0.011459351, 0.0025978088, 0.0048065186, -0.0020160675, -0.028839111, 0.022109985, -0.001159668, -0.029418945, 0.027740479, 0.027359009, 0.00051641464, -0.03552246, 0.029937744, 0.03942871, -0.03729248, -0.018951416, -0.02041626, -0.0012683868, -0.004184723, -0.062164307, 0.024139404, -0.015686035, 0.009223938, 0.020401001, 0.02180481, -0.03010559, 0.0045394897, -0.028869629, -0.0149002075, -0.013092041, 0.024154663, -0.00365448, -0.043151855, -0.031463623, -0.014129639, 0.010681152, -0.007282257, -0.05456543, -0.07531738, 0.07531738, 0.024276733, -0.03604126, 0.028305054, 0.010047913, 0.0032653809, 0.022857666, 0.034576416, -0.04663086, 0.033843994, -0.013290405, 0.03677368, 0.024520874]}, "B00B58A0QU": {"id": "B00B58A0QU", "original": "Brand: Cuisinart\nName: Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14\", Red, 14.5\" x 14.5\" x 15\"\nDescription: \nFeatures: 150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\nDUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control.\nTHREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport.\nCOMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.\n", "metadata": {"Name": "Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14\", Red, 14.5\" x 14.5\" x 15\"", "Brand": "Cuisinart", "Description": "", "Features": "150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\nDUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control.\nTHREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport.\nCOMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.06311035, 0.019348145, -0.042755127, 0.017623901, -0.024932861, -0.0023117065, -0.057678223, -0.024353027, -0.029144287, 0.00056266785, -0.032684326, 0.038482666, -0.018737793, -0.02859497, 0.02999878, -0.037200928, 0.012481689, -8.589029e-05, -0.016708374, -0.019195557, -0.008506775, -0.010284424, -0.034362793, 0.07128906, 0.037841797, -0.0289917, -0.0025672913, -0.002910614, 0.03942871, 0.015426636, 0.029296875, -0.023727417, 0.040039062, -0.009246826, -0.032989502, -0.033721924, -0.028442383, -0.0064201355, -0.03390503, -0.00049448013, -0.0135650635, 0.008338928, 0.008491516, 0.01751709, -0.031188965, 0.0038642883, -0.014884949, -0.011985779, 0.027816772, -0.011726379, -0.00091552734, 0.038635254, 0.008338928, -0.014076233, -0.014129639, -0.02015686, -0.01638794, -0.00088119507, 0.027664185, -0.0105896, -0.011428833, -0.022735596, 0.02708435, -0.016616821, -0.025238037, 0.011016846, 0.08648682, -0.030029297, -0.05291748, -0.041748047, 0.035217285, 0.0014677048, 0.01322937, 0.005783081, -0.056274414, -0.037902832, 0.032226562, -0.038726807, 0.015151978, -0.002822876, -0.07678223, -0.041992188, -0.015174866, -0.045013428, -0.016571045, -0.013221741, -0.021820068, 0.015716553, 0.016357422, -0.043151855, 0.0019798279, -0.0020866394, -0.10406494, 0.07659912, 0.037109375, -0.021194458, -0.04498291, -0.06008911, 0.050079346, 0.011909485, 0.0597229, -0.044433594, 0.013786316, 0.005455017, -0.024337769, 0.0030822754, 0.002527237, 0.028793335, -0.008911133, 0.017120361, -0.030853271, -0.0736084, 0.0357666, -0.013031006, -0.01083374, -0.0158844, 0.010131836, 0.02079773, 0.0137786865, -0.0024471283, -0.043060303, -0.0066833496, -0.030685425, 0.04159546, 0.069885254, 0.088256836, 0.057037354, -0.010772705, -0.06890869, 0.04425049, -0.030593872, 0.010169983, 0.052124023, 0.022994995, -0.016983032, -0.034484863, 0.020355225, 0.012397766, 0.029754639, -0.015808105, 0.0038795471, -0.017791748, 0.01676941, 0.019638062, -0.03137207, -0.004360199, 0.030517578, 0.026382446, -0.03540039, -0.026550293, 0.015617371, 0.0078048706, 0.04373169, 0.033172607, -0.05645752, 0.009849548, 0.00598526, -0.022216797, -0.040740967, -0.06726074, 0.01637268, -0.012504578, 0.0076789856, -0.0107421875, -0.044311523, 0.005748749, -0.013267517, -0.0063667297, 0.00970459, 0.05014038, -0.0079956055, 0.00095415115, -0.034820557, 0.0057411194, 0.0044174194, 0.0048675537, 0.026290894, 0.013954163, 0.044647217, -0.032440186, -0.05239868, -0.05026245, 0.08453369, -0.04144287, -0.01374054, 0.0040779114, 0.010398865, 0.006263733, 0.011459351, 0.013832092, 0.006752014, 0.014160156, 0.006439209, -0.012840271, 0.0077171326, -0.018112183, -0.009902954, -0.00031375885, -0.0055274963, 0.0035953522, 0.035461426, 0.013755798, -0.007881165, -0.009033203, -0.045806885, -0.012458801, -0.0036525726, 0.0074653625, 0.011230469, 0.028442383, -0.013931274, -0.004852295, 0.012390137, -0.06439209, -0.020965576, 0.0069122314, -0.013824463, 0.02078247, -0.0036945343, -0.0029239655, 0.0129470825, -0.008552551, 0.011650085, 0.018798828, 0.0524292, 0.01146698, -0.0054969788, 0.002292633, 0.03741455, 0.025894165, -0.050201416, 0.019958496, 0.061065674, 0.045074463, -0.016662598, 0.0635376, 0.09063721, 0.05343628, -0.04611206, -0.016494751, 0.005443573, -0.0064582825, -0.022583008, 0.034729004, 0.028259277, 0.0029525757, 0.0041007996, 0.014389038, -0.029006958, 0.0236969, 0.03250122, 0.028152466, 0.010536194, 0.051818848, -0.018539429, 0.033935547, -0.0096206665, 0.046051025, -0.050323486, 0.02128601, -0.026062012, 0.024810791, 0.025039673, -0.0018606186, 0.0041275024, 0.005355835, 0.017242432, 0.024963379, -0.02468872, -0.0028362274, 0.021362305, 0.03479004, 0.002960205, -0.013404846, 0.016448975, -0.034454346, -0.04434204, 0.030807495, 0.019882202, -0.025314331, 0.014373779, -0.017440796, 0.015159607, -0.0035705566, 0.039154053, 0.0043907166, 0.01751709, 0.016021729, -0.08898926, -0.035003662, 0.001830101, 0.009643555, -0.019042969, -0.029129028, -0.0003631115, 0.005531311, 0.057373047, 0.06237793, -0.0029830933, -0.023086548, -0.0064315796, -0.0064468384, -0.078063965, 0.027542114, -0.03062439, -0.0041389465, -0.037628174, -0.006477356, -0.012214661, -0.03881836, 0.00774765, 0.03881836, 0.029220581, -0.027923584, 0.058044434, 0.010871887, 0.005256653, 0.0368042, -0.0051574707, -0.0019264221, -0.04562378, -0.025436401, -0.019821167, -0.022766113, -0.009963989, 0.016220093, -0.040374756, 0.00868988, -0.040985107, 0.012458801, 0.022323608, -0.017623901, -0.01121521, 0.011100769, 0.009208679, 0.0076675415, 0.0121154785, -0.0056381226, -0.004890442, -0.015396118, 0.010353088, -0.028259277, -0.003019333, -0.021133423, 0.053253174, -0.012428284, 0.0056762695, 0.03741455, -0.03439331, 0.035095215, -0.0423584, -0.064697266, 0.010604858, -0.04458618, -0.01927185, 0.0022945404, -0.025787354, -0.101257324, -0.06591797, -0.113220215, -0.019729614, -0.0027828217, -0.047302246, 0.0043525696, 0.03463745, -0.01576233, -0.03387451, 0.0050849915, -0.013320923, -0.011306763, 0.030380249, -0.0049972534, -0.015144348, -0.025741577, -0.022460938, -0.028121948, 0.038635254, -0.04168701, 0.022338867, 0.021148682, -0.04800415, 0.01083374, -0.040771484, 0.04425049, -0.004310608, 0.016174316, 0.04714966, 0.088134766, -0.010902405, -0.036743164, 0.0041885376, 0.08709717, -0.022125244, -0.018707275, -0.0104904175, 0.009727478, 0.012008667, -0.05670166, 0.009933472, -0.040252686, -0.050933838, -0.0038204193, -0.010597229, -0.019714355, -0.024383545, -0.05496216, -0.028625488, -0.03768921, 0.00617218, 0.084350586, -0.030807495, -0.017944336, -0.04385376, 0.0051002502, -0.003944397, 0.018798828, 0.015625, -0.00497818, 0.010978699, -0.02279663, 0.00050878525, -0.01461792, -0.00044250488, 0.013496399, -0.034088135, 0.014961243, -0.023239136, 0.020614624, -0.04724121, 0.025772095, 0.001909256, -0.014511108, -0.005832672, 0.007843018, -0.06060791, -0.040496826, -0.013206482, -0.06262207, 0.04611206, -0.055603027, -0.04156494, -0.00819397, -0.0011310577, 0.05593872, 0.0031738281, -0.0010194778, -0.036224365, -0.06347656, -0.027923584, -0.020202637, 0.0055351257, 0.012420654, -0.003168106, 0.018447876, 0.003408432, 0.051574707, 0.006008148, 0.011680603, 0.034179688, -0.038909912, -0.042053223, -0.019439697, 0.009986877, -0.024642944, -0.00831604, -0.034851074, 0.046325684, -0.014945984, -0.01675415, 0.025268555, -0.02230835, 0.016708374, 0.033721924, -0.0017166138, -0.022857666, -0.063964844, 0.02897644, 0.04901123, -0.019378662, -0.043518066, -0.062927246, 0.022857666, -0.13061523, 0.09423828, 0.01234436, -0.018508911, 0.06561279, 0.008804321, -0.004386902, 0.041656494, 0.0012836456, 0.026855469, 0.006980896, 0.078125, -0.003118515, 0.01890564, 0.019882202, -0.067993164, 0.014083862, 0.015853882, -0.07550049, 0.018249512, 0.009712219, -0.059631348, -0.009849548, 0.011024475, 0.02734375, -0.01576233, -0.01108551, -0.011756897, -0.0016469955, -0.039031982, 0.01033783, 0.029174805, -0.0284729, 0.0013475418, 0.0002360344, 0.008598328, -0.025817871, -0.0002539158, -0.0032749176, 0.022247314, -0.0072784424, 0.037750244, 0.0042381287, -0.0018558502, -0.024154663, -0.0028209686, -0.004398346, 0.008323669, -0.023345947, -0.0012903214, 0.010650635, 0.004283905, 0.021560669, -0.0072021484, -0.0047836304, -0.0066108704, -0.02053833, -0.036499023, 0.0211792, 0.02508545, -0.02268982, -0.026504517, 0.0013408661, -0.03652954, -0.013000488, 0.0011539459, -0.0234375, -0.011070251, -0.009170532, -0.0064735413, -0.07067871, -0.03048706, -0.0011854172, -0.010238647, -0.02470398, 0.024642944, -0.026611328, -0.04876709, -0.027130127, 0.026550293, -0.039916992, 0.0023841858, -0.009292603, -0.009979248, 0.05770874, 0.041931152, 0.030929565, -0.06237793, 0.016281128, 0.006729126, 0.08404541, 0.0014476776, 0.048706055, -0.009895325, -0.0033435822, -0.030303955, 0.076049805, 0.083740234, 0.013900757, 0.03515625, -0.040527344, -0.049591064, -0.040374756, -0.006011963, 0.064208984, -0.060577393, -0.0115356445, -0.021224976, 0.034820557, -0.009216309, 0.017166138, -0.041809082, -0.0014257431, -0.017120361, -0.0060424805, -0.025650024, -0.0074653625, 0.0073776245, -0.019119263, -0.019134521, 0.0023326874, -0.022155762, 0.0725708, -0.021255493, -0.00021958351, -0.027359009, -0.018737793, -0.044311523, 0.052886963, 0.024337769, -0.010635376, 0.017837524, -0.026626587, -0.02078247, -0.0385437, 0.053985596, 0.0491333, 0.0070152283, 0.009552002, 5.054474e-05, -0.0070152283, -0.051330566, -0.0064468384, 0.009681702, -0.01133728, -0.016082764, -0.029953003, 0.013893127, -0.035736084, -0.009689331, -0.01864624, -0.030700684, -0.017410278, -0.02482605, 0.029586792, -0.0051651, 0.05432129, 0.026184082, -0.016189575, 0.010299683, 0.014411926, -0.01285553, 0.029830933, -0.037994385, -0.001329422, 0.0138549805, 0.006111145, 0.013160706, -0.0035877228, -0.016220093, -0.06933594, -0.02861023, 0.06970215, -0.0413208, 0.00076055527, 0.0056533813, 0.034362793, 0.003982544, 0.006011963, 0.0871582, -0.04434204, 0.009651184, 0.018051147, -0.022964478, 0.015510559, 0.0262146, -0.034698486, 0.02848816, 0.0066566467, -0.020492554, 0.016586304, -0.005958557, 0.018661499, 0.014343262, -0.030288696, 0.011833191, -0.01260376, -0.016494751, -0.013824463, -0.0063705444, 0.037017822, 0.021881104, -0.029724121, 0.037628174, 0.04019165, -0.012664795, 0.041412354, 0.043823242, -0.010902405, -0.02357483, 0.046691895, -0.022003174, -0.042785645, 0.04006958, -0.02041626, 0.0044670105, -0.018569946, -0.0044822693, 0.0129776, 0.01713562, 0.0040130615, -0.009162903, 0.014297485, 0.0045776367, -0.01927185, -0.006828308, -0.026763916, -0.0087890625, -0.0099487305, 0.06311035, -0.010856628, 0.0033245087, -0.03149414, -0.0284729, -0.023971558, 0.003314972, -0.013023376, 0.053344727, -0.015579224, 0.01713562, -0.009407043, -0.037231445, 0.0178833, -0.029281616, -0.040222168, -0.0020008087, 0.01940918, 0.03225708, -0.04159546, 0.016555786, 0.050079346, -0.04397583, -0.016952515, -0.051208496, 0.05050659, -0.0069618225, -0.0020256042, 0.058258057, -0.015342712, 0.012580872, 0.03878784, 0.017105103, -0.032073975, -0.03668213, -0.0061912537, -0.046569824, -0.0064353943, -0.029296875, 0.040771484, -0.015945435, -0.0069999695, -0.007423401, 0.06878662, 0.021881104, -0.0259552, -0.034362793, -0.026473999, 0.011260986, -0.03942871, 0.0069885254, -0.023284912, 0.0044822693, -0.030014038, -0.0068893433, -0.04434204, 0.007484436, 0.06640625, 0.025482178, -0.003955841, -0.010192871, 0.026748657, 0.051696777, -0.011482239, 0.07165527, -0.037384033, -0.015731812, 0.026031494, 0.03945923, 0.025726318, 0.030151367, 0.038513184, -0.006790161, -0.0070610046, -0.006713867, 0.048309326, -0.011383057, -0.011543274, 0.021743774, 0.05807495, 0.024047852, 0.02130127, 0.016967773, 0.025741577, -0.0011205673, -0.032684326, 0.009552002, 0.05783081, -0.024673462, 0.02418518, -0.017425537, 0.028030396, 0.016571045, -0.008171082, 0.0076522827, 0.0030593872, 0.05682373, 0.00019705296, -0.022994995, 0.01612854, -0.0050354004, -0.0028800964, -0.02859497, -0.072265625, 0.005432129, 0.010505676, 0.028182983, -0.035491943, -0.036712646, 0.015312195, 0.016937256, -0.027145386, 0.04397583, -0.05026245, 0.009231567, 0.045898438, -0.05670166, 0.005004883, 0.036376953, 0.0030536652, -0.004211426, -0.06262207, -0.032043457, -0.024291992, 0.022750854, 0.012069702, 0.06365967, 0.0068855286, 0.015304565, -0.0035381317, 0.010536194, -0.02760315, -0.013076782, 0.027313232, 0.0005736351, 0.011131287, -0.00023400784, -0.027908325, -0.021469116, 0.052581787, -0.04321289, -0.020111084, -0.022369385, 0.028060913, -0.007820129, 0.049621582, -0.015396118, -0.037902832, 0.061645508, 0.043640137, -0.026611328, 0.03579712, 0.02130127, -0.0099487305, 0.027435303, -0.052124023, 0.046295166, -0.01461792, 0.089904785, 0.038604736, 0.002714157, -0.029708862, -0.020599365, 0.007698059, -0.021148682, 0.027801514, 0.0065345764, 0.014060974, 0.008956909, 0.010353088, 0.02482605, 0.048309326, -0.053619385, 0.022033691, 0.047424316, 0.0029716492, 0.038848877, 0.022872925, -0.02041626, -0.011749268, -0.004798889, -0.0058174133, 0.02470398, -0.021347046, 0.033843994, 0.016677856, 0.0050582886, -0.039978027, 0.03527832, -0.00059366226, -0.042785645, 0.023590088, -0.028549194, -0.010635376, -0.005970001, -0.02218628, -0.0034694672, 0.012168884, -0.022399902, 0.019332886, 0.033050537, -0.022705078, -0.023788452, 0.0007247925, 0.027526855, -0.04562378, 0.018188477, 0.0051612854, 0.022888184, 0.021255493, 0.034301758, 0.0011148453, -0.06185913, -0.049865723, 0.016479492, -0.0019607544, -0.04373169, -0.012573242, -0.009902954, -0.004940033, -0.020385742, 0.02305603, 0.036224365, 0.03768921, 0.0019893646, 0.039733887, -0.021331787, -0.054382324, 0.062683105, 0.042663574, -0.060577393, 0.042633057, 0.032104492, -0.002380371, 0.02130127, 0.025253296, -0.0055122375, -0.0541687, -0.019119263, -0.03616333, -0.0038261414, -0.013412476, -0.004299164, 0.0050468445, -0.01612854, -0.032073975, -0.017974854, 0.020629883, 0.012039185, 0.0001385212, -0.014083862, 0.026885986, -0.02810669, -0.029449463, -0.04309082, -0.023452759, 0.019927979, 0.014343262, 0.015930176, 0.01763916, -0.00055933, -0.043273926, 0.048614502, 0.0045280457, -0.066223145, -0.014579773, 0.01612854, 0.018966675, -0.0146102905, 0.015487671, 0.03427124, -0.036193848, -0.012428284, -0.012336731, 0.03048706, -0.026779175, -0.011177063, -0.008468628, 0.018585205, 0.0021781921, 0.0015544891, -0.02394104, -0.017242432, -0.01626587, 0.039154053, -0.018585205, 0.007217407, -0.04714966, 0.003129959, -0.038238525, 0.012466431, 0.021636963, 0.0067977905, -0.028671265, 0.0014677048, 0.024353027, 0.048828125, -0.020629883, -0.026260376, -0.032318115, 0.023284912, -0.016677856, -0.0065727234, 0.029418945, -0.058502197, 0.009521484, -0.019821167, -0.023880005, -0.059936523, 0.015258789, 0.032806396, -0.0053520203, 0.038909912]}, "B07KBYD4WZ": {"id": "B07KBYD4WZ", "original": "Brand: Homyl\nName: Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type\nDescription:

      Description:

      - Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
      - Allows you to quickly and easily check the amount of propane in the tank
      - Monitors fuel level without removing the tank.Easy to install
      - Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
      - Heavy duty 100% solid brass construction

      Specification:

      - Capacity: 80000-150000BTU/hour
      - Operating temperature: -40\u00b0C - + 55\u00b0C
      - Inlet: 25-250PSIG
      - Outlet: 2.5PSIG-20PSIG

      - Material: copper

      - Size: approx. 100*60mm/3.94*2.36inch

      Package Includes:

      1 Piece Propane Tank Adapter


      Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

      \nFeatures: Allows you to quickly and easily check the amount of propane in the tank\nPropane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\nMonitors fuel level without removing the tank.Easy to install\nHeavy duty 100% solid brass construction\n", "metadata": {"Name": "Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type", "Brand": "Homyl", "Description": "

      Description:

      - Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
      - Allows you to quickly and easily check the amount of propane in the tank
      - Monitors fuel level without removing the tank.Easy to install
      - Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
      - Heavy duty 100% solid brass construction

      Specification:

      - Capacity: 80000-150000BTU/hour
      - Operating temperature: -40\u00b0C - + 55\u00b0C
      - Inlet: 25-250PSIG
      - Outlet: 2.5PSIG-20PSIG

      - Material: copper

      - Size: approx. 100*60mm/3.94*2.36inch

      Package Includes:

      1 Piece Propane Tank Adapter


      Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

      ", "Features": "Allows you to quickly and easily check the amount of propane in the tank\nPropane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\nMonitors fuel level without removing the tank.Easy to install\nHeavy duty 100% solid brass construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0178833, 0.0054855347, -0.064208984, -0.0127334595, -0.0074501038, -0.021087646, -0.0055236816, 0.020553589, 0.021911621, 0.024353027, -0.01789856, -0.00017678738, 0.016235352, -0.033355713, 0.0096588135, -0.012298584, -0.008178711, 0.006008148, -0.026245117, -0.03125, -0.009292603, -0.045928955, -0.0096588135, 0.056365967, 0.011962891, -0.0006623268, 0.049316406, 0.0054779053, 0.021057129, -0.008041382, 0.021591187, -0.03488159, 0.03765869, 0.0048980713, -0.032806396, -0.028137207, 0.015533447, -0.028549194, -0.046417236, 0.02961731, 0.004989624, -0.010429382, -0.011375427, -0.0158844, -0.038879395, 0.00374794, -0.019485474, -0.013092041, -0.007484436, 0.011917114, 0.004550934, -0.027786255, 0.023971558, 0.0423584, -0.032348633, -0.06384277, 0.02116394, -0.061676025, -0.00012290478, -0.0046920776, 0.00894928, 0.010215759, 0.030563354, 0.023483276, -0.042114258, 0.020843506, 0.06341553, -0.010055542, 0.005634308, -0.06112671, -0.025344849, 0.035003662, 0.0023403168, -0.014167786, -0.047698975, -0.027282715, 0.015625, -0.059265137, 0.02444458, -0.00043940544, -0.02809143, -0.041931152, 0.017089844, 0.019592285, -0.022903442, 0.00078582764, -0.013374329, 0.003458023, -0.019760132, -0.055999756, -0.013557434, 0.04598999, -0.09069824, -0.0073013306, -0.022277832, -0.025604248, -0.022903442, -0.049346924, 0.01852417, 7.05719e-05, 0.024551392, -0.0385437, 0.033203125, 0.00062942505, 0.03466797, 0.047546387, -0.023803711, -0.040222168, 0.054107666, 0.0039787292, 0.0031051636, 0.07470703, -0.005947113, -0.027328491, -0.0072135925, 0.03744507, -0.0051879883, 0.021881104, 0.00037765503, 0.030899048, 0.00068569183, 0.01576233, 0.0073280334, -0.0335083, 0.015625, 0.0015115738, -0.015716553, -0.02998352, -0.0647583, 0.010643005, 0.0010671616, 0.0002913475, 0.014053345, 0.109436035, 0.017593384, 0.0024986267, 0.044036865, -0.023330688, 0.0043296814, 0.0025691986, 0.013938904, -0.012107849, -0.0037403107, 0.011383057, -0.020904541, 0.07043457, -0.0031414032, -0.018661499, 0.029464722, -0.061462402, -0.048797607, -0.04714966, 0.03768921, 0.011169434, -0.014533997, 0.0011672974, 0.0042304993, -0.018005371, 0.0021076202, -0.02418518, -0.033172607, -0.034118652, -0.014305115, 0.01083374, -0.00077581406, 0.054595947, 0.010734558, -0.00025725365, 0.019424438, 0.08227539, 0.018218994, 0.035461426, 0.025283813, -0.021987915, -0.02078247, -0.04550171, -0.07110596, 0.10070801, 0.0713501, -0.12670898, -0.038391113, -0.046203613, 0.10345459, 0.0060272217, 0.007358551, -0.047302246, 0.02468872, -0.027008057, -0.020126343, 0.014389038, 0.063964844, 0.040008545, 0.0066184998, -0.01234436, -0.015365601, 0.0028305054, -0.026885986, 0.025100708, -0.020568848, 0.0011749268, -0.04849243, -0.005455017, 0.038391113, 0.0024681091, 0.016830444, -0.0017757416, -0.008514404, 0.017410278, -0.010772705, 0.03253174, -0.007396698, -0.01687622, 0.016799927, -0.068237305, 0.005302429, 0.024902344, 0.02772522, 0.039123535, -0.009292603, 0.0054893494, 0.018997192, -0.030807495, 0.012382507, 0.084350586, -0.02067566, -0.0025520325, -0.023147583, -0.0040245056, -0.012145996, 0.0052375793, 0.024749756, 0.016815186, 0.066101074, 0.017547607, -0.028503418, 0.012672424, 0.06793213, -0.01285553, -0.023956299, 0.011940002, 0.009002686, -0.009765625, -0.038726807, 0.009117126, 0.012496948, -0.03488159, -0.008041382, 0.018844604, -0.010536194, 0.018295288, 0.034057617, 0.016967773, 0.019088745, 0.011604309, -0.0048980713, 0.005680084, -0.01638794, 0.041992188, -0.03692627, 0.013160706, -0.022506714, 0.030975342, 0.03164673, -0.011962891, 0.008117676, 0.011169434, 0.0317688, 0.038482666, -0.016830444, -0.005607605, 0.011734009, 0.031280518, -0.0038528442, -0.016906738, -0.049316406, -0.012832642, 0.0002937317, 0.025421143, -0.028671265, -0.03692627, 0.018875122, 0.01083374, -0.021972656, -0.0129470825, 0.048919678, 0.046539307, -0.016204834, 0.0075416565, -0.026367188, 0.0055999756, 0.041259766, -0.0067100525, -0.02418518, -0.0055999756, -0.0040245056, -0.021820068, 0.068481445, -0.034301758, 0.027999878, -0.023651123, 0.03567505, 0.062683105, -0.027053833, 0.017623901, 0.009468079, -0.03567505, -0.005355835, 0.019058228, 0.013519287, -0.008087158, -0.03353882, 0.03213501, 0.020111084, -0.01322937, 0.022949219, 0.014556885, -0.007045746, 0.02420044, 0.056793213, 0.070251465, -0.021606445, -0.02456665, -0.028076172, -0.02671814, -0.0038223267, 0.017684937, -0.035369873, -0.00034093857, 0.0060691833, 0.0023212433, -0.0055351257, -0.026550293, -0.028823853, -0.0037956238, 0.0059318542, 0.008346558, -0.0013990402, -0.002374649, -0.020202637, -0.053009033, -0.012573242, -0.0541687, 0.0048294067, 0.031311035, -0.05130005, -0.03265381, 0.044403076, -0.006263733, 0.025161743, 0.007881165, 0.030395508, 0.012069702, 0.02130127, 0.009346008, 0.02784729, -0.034698486, -0.019485474, 0.021194458, -0.0028896332, -0.04537964, 0.01713562, -0.040496826, -0.050231934, -0.012382507, 0.05105591, 0.0039863586, -0.022918701, -0.031555176, -0.033813477, 0.027145386, 0.0035076141, -0.015396118, -0.0803833, -0.03161621, -0.04647827, 0.024749756, 0.030700684, -0.0098724365, 0.032073975, 0.033416748, 0.04019165, 0.036834717, -0.016647339, 0.008270264, 0.0025367737, 0.061706543, 0.099243164, 0.03942871, 0.017501831, -0.06793213, 0.0055618286, 0.07659912, 0.0061454773, 0.0060920715, -0.008430481, -0.021835327, -0.032440186, -0.025177002, -0.08343506, 0.02243042, 0.002023697, -0.009857178, 0.0060195923, 0.00056934357, -0.004875183, -0.061340332, -0.014541626, -0.041107178, 0.000644207, 0.04333496, -0.03677368, 0.029830933, -0.03552246, 0.012268066, -0.0011663437, 0.0016031265, -0.04736328, -0.0096588135, -0.076416016, 0.06359863, 0.09680176, -0.08465576, 0.020690918, 0.05215454, -0.025421143, -0.015197754, 0.0035305023, 0.00774765, 0.014862061, 0.009712219, -0.020339966, -0.009124756, -0.043121338, -0.025146484, -0.00053691864, -0.008338928, 0.0053482056, -0.03253174, 0.025238037, -0.0087890625, -0.040008545, 0.009796143, -0.032928467, 0.045440674, -0.02571106, -0.0033187866, -0.026184082, -0.06890869, -0.015777588, -0.014968872, 4.9591064e-05, 0.010124207, 0.024291992, 0.018630981, -0.01322937, 0.052886963, 0.060424805, 0.05343628, -0.00016987324, 0.02609253, 0.020553589, -0.01146698, 0.0138168335, 0.0127334595, 0.03805542, -0.072265625, 0.0082473755, 0.012054443, 0.017410278, -0.014419556, 0.007949829, 0.06536865, 0.01876831, -0.009727478, 0.014167786, 0.011039734, 0.0032024384, -0.017944336, 0.023803711, 0.0007853508, -0.06982422, 0.027816772, -0.099731445, 0.049072266, -0.0025539398, -0.006965637, 0.05432129, 0.034851074, 0.0051460266, 0.04324341, 0.056030273, -0.0048179626, 0.004928589, 0.117614746, 0.0068588257, -0.007774353, -0.0038013458, -0.0014543533, 0.014808655, -0.018936157, 0.033233643, 0.022994995, -0.014961243, -0.0009598732, -0.0062294006, 0.034942627, -0.0076904297, -0.029891968, -0.019729614, -0.06286621, -0.006828308, -0.06628418, 0.026046753, 0.017623901, -0.024505615, -0.006954193, 0.017288208, -0.027313232, -0.01272583, 0.02041626, 0.014381409, -0.014602661, 0.05041504, 0.028213501, -0.019195557, -0.016174316, 0.03213501, -0.033416748, -0.031585693, 0.03314209, 0.028244019, 0.0121154785, 0.018676758, -0.046813965, 0.009811401, -0.015960693, -0.018630981, 0.02508545, -0.040405273, -0.07800293, -0.024917603, 0.010253906, 0.02267456, -0.018920898, 0.009506226, -0.031219482, -0.006385803, -0.0075035095, -0.033081055, -0.020248413, -0.023483276, 0.0072250366, -0.04171753, -0.044555664, -0.024902344, 0.016937256, 0.0035209656, -0.0074806213, -0.018707275, -0.008132935, 0.012870789, 0.03778076, -0.05770874, -0.012329102, -0.047576904, 0.00020635128, 0.028289795, -0.021408081, -0.02859497, -0.030715942, -0.016830444, -0.007797241, 0.009811401, -0.005619049, -0.028060913, 0.009674072, -0.0132369995, 0.009780884, 0.013633728, 0.046295166, -0.007507324, 0.0124435425, -0.02166748, 0.019622803, -0.09436035, 0.05834961, 0.012458801, 0.0068740845, -0.061676025, 0.00055217743, 0.034057617, 0.023269653, 0.020126343, -0.0046691895, -0.007511139, 0.011100769, -0.038604736, -0.08850098, -0.025482178, -0.01777649, -0.03125, 0.02218628, -0.0030212402, -0.006088257, 0.0034885406, 0.049621582, -0.0181427, 0.017028809, 0.012962341, -0.010353088, 0.0024318695, 0.016220093, -0.026016235, 0.027236938, -0.019821167, -0.056121826, -0.0473938, 0.04156494, 0.011497498, -0.010414124, -0.0023822784, -0.03387451, -0.007007599, -0.046020508, -0.02722168, 0.03881836, 0.038146973, -0.022125244, -0.060821533, 0.011421204, -0.049560547, 0.001958847, -0.007972717, -0.017486572, 0.004589081, -0.015144348, 0.0093688965, -0.029174805, 0.0013608932, 0.00048017502, 0.007381439, -0.0013217926, -0.07678223, 0.014450073, 0.012504578, -0.00035524368, -0.007827759, -0.031951904, -0.0073776245, -0.01335144, -0.021591187, -0.005355835, -0.015335083, 0.007843018, 0.026321411, 0.025787354, 0.011444092, 0.034210205, -0.015335083, -0.020751953, -0.022537231, -0.002254486, 0.035888672, -0.03643799, 0.008773804, -0.021713257, 0.03253174, 0.030075073, -0.022079468, 0.025238037, 0.0020751953, -0.00579834, 0.025268555, 0.022827148, 0.019454956, -0.050201416, 0.056518555, -0.013008118, -0.029388428, -0.025680542, 0.02078247, -0.011810303, 0.025726318, -0.01802063, -0.026062012, 0.0050582886, -0.03479004, 0.024368286, -0.017349243, 0.024963379, -0.03753662, 0.01713562, -0.0059127808, 0.002298355, -0.024871826, -0.028121948, 0.010475159, 0.040039062, -0.008705139, -0.05319214, 0.05581665, 0.03274536, -0.07366943, -0.010940552, -0.009346008, 0.039733887, -0.0018730164, -0.033691406, -0.034576416, -0.004764557, -0.020217896, 0.0211792, 0.010437012, 0.015701294, -0.049224854, -0.02859497, -0.013023376, 0.0102005005, -0.005771637, 0.053375244, -0.0362854, -0.037139893, 0.008529663, -0.0034484863, 0.0068511963, 0.021408081, -0.0541687, -0.018493652, -0.0009551048, 0.010757446, -0.0016021729, -0.013122559, 0.027755737, -0.027801514, -0.016082764, -0.056365967, 0.061157227, -0.026245117, -0.035736084, 0.06866455, 0.016662598, 0.03161621, 0.0079422, -0.014190674, -0.035858154, 0.0045776367, -0.010902405, -0.030166626, -0.052642822, -0.043182373, -0.038238525, 0.020309448, -0.014930725, -0.029907227, 0.035583496, -0.006401062, -0.003358841, -0.020553589, -0.016799927, 0.006126404, -0.064819336, 0.015792847, -0.01725769, -0.00077056885, 0.041534424, 0.022384644, -0.11218262, -0.047454834, 0.009506226, 0.017684937, 0.0011205673, 0.01322937, -0.012672424, 0.006843567, -0.024108887, 0.021087646, 0.029373169, -0.015327454, -0.030807495, 0.0061569214, -0.018859863, 0.05026245, -0.06976318, 0.008766174, -0.024261475, -0.00018596649, 0.0034294128, 0.04586792, -0.07104492, -0.02633667, 0.018493652, 0.060333252, -0.020111084, -0.0118255615, 0.016555786, -0.027191162, -0.056518555, -0.021316528, -0.004749298, -0.0413208, -0.025009155, -0.021957397, -0.020843506, 0.0061149597, -0.008102417, 0.019256592, 0.023880005, -0.00053167343, -0.002090454, 0.04663086, -0.012817383, 0.00032258034, 0.06359863, -0.03945923, 0.096069336, 0.0067977905, -0.0049934387, 0.020111084, 0.00082731247, -0.037872314, -0.016052246, 0.018234253, -0.03555298, 0.049560547, -0.014022827, 0.012863159, 0.009346008, -0.03451538, -0.01335907, -0.007663727, 0.034454346, -0.023269653, -0.01940918, -0.009887695, -0.011634827, 0.047088623, 0.011352539, 0.060791016, -0.025131226, 0.044403076, -0.017562866, -0.0030593872, -0.03086853, -0.03942871, 0.011428833, -0.014526367, 0.0049858093, 0.02331543, -0.029052734, 0.016067505, 0.029693604, -0.023925781, 0.019348145, -0.0017471313, 0.0068473816, -0.015258789, 0.052459717, -0.019042969, -0.009773254, -0.010131836, -0.022857666, 0.03060913, 0.050354004, 0.023086548, 0.035705566, -0.006290436, 0.015174866, 0.006641388, -0.011497498, -7.4863434e-05, 0.010429382, -0.01852417, -0.03845215, -0.031341553, -0.011436462, -0.014549255, 0.0013513565, 0.05343628, -0.0014390945, 0.06365967, -0.018218994, 0.0032444, 0.014389038, -0.02267456, 0.013381958, -0.002439499, -0.0021247864, 0.02027893, -0.012214661, -0.017089844, -0.032104492, 0.021072388, 0.016281128, 0.0033779144, 0.009048462, 0.01675415, -0.01890564, -0.0082473755, -0.023803711, 0.019607544, -0.021514893, -0.02268982, -0.010192871, -0.02998352, 0.012496948, -0.043701172, -0.058410645, -0.027313232, -0.028564453, -0.059936523, 0.053894043, 0.009803772, -0.001742363, 0.0075187683, -0.0084991455, 0.012321472, -0.025222778, 0.0055618286, 0.03643799, 0.030563354, -0.00415802, 0.019439697, -0.016983032, -0.033691406, -0.05404663, 0.027740479, -0.0836792, -0.032958984, -0.022567749, 0.0099487305, 0.009262085, -0.009033203, 0.035186768, 0.052520752, 0.0046463013, -0.009254456, -0.011207581, -0.027114868, 0.0038375854, 0.011497498, 0.00068092346, -0.02720642, -0.060028076, 0.014350891, -0.002275467, -0.0046691895, 0.021972656, -0.0149002075, -0.025421143, -0.005870819, -0.0013513565, -0.039916992, -0.027175903, 0.0011644363, 0.000117480755, -0.013847351, -0.03189087, -0.018508911, 0.009414673, 0.064208984, 0.03314209, -0.020736694, -0.025863647, -0.058258057, -0.04449463, 0.0008869171, -0.008392334, 0.03970337, 0.025360107, -0.05718994, -0.039489746, -0.0076904297, 0.0052375793, -0.012397766, 0.023086548, 0.005290985, -0.012237549, 0.016983032, -0.004508972, -0.013923645, -0.0021877289, -0.00080776215, -0.034210205, -0.045043945, 0.048187256, -0.0013141632, -0.018341064, -0.0049438477, -0.03753662, -0.008407593, -0.019577026, -0.05307007, -0.05178833, -0.03668213, 0.03692627, 0.03112793, -0.0047836304, 0.0060310364, 0.01737976, -0.0118637085, -0.021575928, 0.0146102905, 0.01789856, 0.032318115, -0.018829346, 8.666515e-05, 0.013084412, 0.011390686, -0.0050086975, -0.055480957, -0.059265137, 0.027496338, 0.023910522, -0.010307312, 0.07531738, -0.033416748, 0.0016202927, 0.036071777, -0.016784668, -0.06549072, 0.038879395, 0.06427002, 0.021377563, 0.022613525]}, "B0872C7BXM": {"id": "B0872C7BXM", "original": "Brand: Senvate\nName: Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches\nDescription: Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

      Features:
      Material: Heavy Duty 600D Oxford fabric and PVC cover.
      Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
      Durable, scratch resistant polyester with UV protection all year round.
      This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
      Keeps dust and dirt from the tank's exterior, cover up ugly propane tank eye sore.
      Easy to Clean: Low Circle Machine Wash & Handwash.

      100% Satisfaction Guaranteed:
      30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
      \nFeatures: PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nPROPANE TANK COVER DIMENSIONS: 7.5\" Diameter (top) x 12.6\" Diameter (bottom) x 23.6\" High, fits for most cylinder propane tank up to 20lb.\nFEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank.\nEASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage.\n100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.\n", "metadata": {"Name": "Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches", "Brand": "Senvate", "Description": "Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

      Features:
      Material: Heavy Duty 600D Oxford fabric and PVC cover.
      Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
      Durable, scratch resistant polyester with UV protection all year round.
      This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
      Keeps dust and dirt from the tank's exterior, cover up ugly propane tank eye sore.
      Easy to Clean: Low Circle Machine Wash & Handwash.

      100% Satisfaction Guaranteed:
      30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
      ", "Features": "PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nPROPANE TANK COVER DIMENSIONS: 7.5\" Diameter (top) x 12.6\" Diameter (bottom) x 23.6\" High, fits for most cylinder propane tank up to 20lb.\nFEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank.\nEASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage.\n100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.026031494, -0.01928711, -0.0028686523, -0.06665039, -0.013259888, 0.0055999756, -0.02267456, 0.033050537, -0.028427124, -0.021408081, -0.0034236908, 0.0014104843, -0.060333252, -0.035980225, 0.025344849, -0.055786133, 0.026260376, -0.023895264, -0.014572144, -0.025268555, -0.024597168, -0.012176514, 0.035705566, 0.04840088, 0.0069007874, -0.012245178, 0.051116943, -0.01626587, 0.018417358, -0.019805908, 0.017807007, -0.007045746, 0.034057617, 0.0076141357, -0.00945282, 0.041290283, 0.02659607, -0.0126953125, 0.00223732, 0.010261536, -0.019714355, 0.01247406, 0.06573486, -0.023910522, 0.017501831, -0.031341553, 0.01914978, -0.04888916, -0.0008239746, 0.034484863, 0.002128601, 0.024490356, 0.000916481, -0.020248413, 0.012016296, 0.009857178, 0.007484436, -0.030151367, 0.0016555786, 0.00015830994, 0.013809204, 0.024505615, 0.021377563, 0.025909424, -0.022506714, 0.019226074, 0.077819824, -0.023239136, -0.0056152344, -0.007858276, 0.010566711, 0.0061569214, 0.032348633, -0.003967285, -0.06188965, -0.010818481, -0.016952515, -0.020462036, 0.03994751, -0.030914307, -0.035980225, -0.0132369995, 0.056671143, -0.03466797, -0.02243042, -0.020462036, -0.021347046, 0.0045547485, 0.0030326843, -0.0038757324, 0.0037250519, 0.028182983, 0.009346008, 0.027496338, -0.01008606, -0.011619568, -0.025024414, -0.05215454, 0.032409668, 0.028961182, 0.018920898, -0.040527344, 0.061065674, -0.017074585, 0.009735107, 0.042510986, -0.014930725, 0.011100769, 0.034118652, 0.0029964447, -0.013473511, 0.004398346, -0.027755737, -0.039886475, -0.016342163, 0.042114258, -0.047912598, 0.013252258, 0.014282227, 0.023864746, -0.03970337, -0.027572632, -0.0124435425, -0.0413208, 0.044830322, 0.0012741089, -0.024154663, 0.055847168, -0.025360107, 0.02218628, -0.020690918, -0.028564453, 0.019226074, 0.07092285, 0.02482605, -0.017349243, 0.0552063, -0.013893127, -0.010787964, 0.019851685, -0.047607422, 0.0055122375, 0.062805176, -0.03869629, -0.050079346, 0.064575195, 0.026153564, -0.027999878, -0.034332275, -0.059753418, -0.04638672, -0.037963867, 0.04852295, -0.0003900528, -0.06719971, -0.0009822845, 0.0073776245, -0.021987915, -0.060821533, -0.062927246, -0.00028967857, -0.016174316, 0.002916336, 0.024169922, 0.0063056946, 0.036743164, -0.0093307495, -0.0021648407, 0.006454468, 0.060943604, -0.05307007, 0.037109375, 0.019256592, 0.025756836, -0.004135132, -0.008483887, -0.018463135, 0.07543945, 0.085876465, -0.10650635, -0.049591064, -0.045837402, 0.17041016, -0.0284729, 0.010406494, -0.062561035, 0.012641907, -0.049713135, 0.007423401, -0.00944519, 0.006351471, 0.029937744, -0.005065918, -0.032806396, 0.014129639, 0.0074920654, -0.05441284, -0.0017995834, -0.01423645, -0.003145218, -0.0012226105, 0.000834465, -0.0019283295, 0.009063721, 0.013748169, -0.042114258, 0.023010254, -0.017425537, -0.010406494, 0.014274597, 0.0049057007, -0.0022392273, 0.0027866364, -0.044311523, 0.0015592575, 0.05706787, 0.011039734, 0.027236938, -0.022033691, -0.025741577, 0.014625549, -0.024276733, 0.03265381, 0.08074951, -0.041412354, -0.026901245, -0.0039100647, -0.00705719, -0.025375366, -0.01687622, 0.059661865, 0.025985718, 0.07434082, 0.0418396, -0.024749756, 0.021560669, 0.021362305, -0.028564453, -0.018356323, 0.034301758, 0.00067186356, -0.056152344, -0.025299072, 0.057495117, -0.030899048, -0.037384033, -0.009132385, 0.04421997, -0.008926392, 0.0072250366, 0.093688965, -0.0072517395, -0.00044751167, -0.015396118, 0.002658844, -0.00052404404, -0.023117065, -0.00034236908, 0.0012578964, 0.021118164, -0.013710022, 0.047790527, 0.03970337, -0.0009851456, 0.0077285767, 0.014968872, 0.06976318, 0.068603516, 0.0033435822, -0.017471313, -0.0076828003, 0.056854248, 0.0047073364, 0.048339844, -0.03173828, -0.01096344, -0.008155823, 0.0044403076, -0.021484375, 0.012008667, 0.0050621033, 0.008842468, -0.007698059, -0.0022411346, 0.034057617, 0.0115356445, 0.0027313232, 0.0008058548, -0.020629883, 0.01512146, 0.038269043, 0.016342163, 0.004776001, -0.016906738, 0.031829834, -0.009864807, 0.0018901825, -0.050994873, 0.05593872, -0.028503418, 0.0017356873, 0.06738281, -0.011871338, 0.027359009, -0.024658203, 0.008735657, -0.02468872, 0.005504608, -0.010665894, -0.046325684, -0.007865906, -0.0002670288, 0.0017757416, 0.011764526, 0.015327454, 0.009727478, 0.0013933182, 0.03439331, 0.045532227, 0.039794922, 0.0052261353, 0.03390503, 0.0047798157, -0.0030078888, 0.027557373, -0.022827148, -0.040039062, -0.010658264, -0.030853271, 0.012527466, -0.006576538, -0.023452759, -0.0056495667, 0.018127441, -0.011642456, -0.0054779053, 0.0045776367, 0.052642822, 0.00868988, -0.017669678, 0.022003174, -0.00308609, 0.0011205673, 0.0067825317, -0.016448975, -0.051452637, 0.026245117, -0.00033307076, -0.021957397, -0.008369446, 0.03652954, -0.021133423, 0.009819031, -0.042022705, -0.017730713, 0.0390625, -0.016357422, -0.0569458, -0.011062622, -0.082214355, 0.0033416748, -0.024032593, -0.05630493, -0.040649414, 0.068115234, -0.011009216, -0.057678223, -0.04107666, 0.02748108, 0.028518677, 0.02041626, 0.010871887, -0.073913574, -0.026779175, -0.010276794, -0.019226074, -0.0005245209, -0.050750732, -0.0039138794, -0.011497498, -0.019683838, 0.020004272, -0.03161621, 0.05218506, -0.00051164627, 0.04510498, 0.07659912, 0.03475952, 0.0154418945, -0.038604736, 0.02027893, 0.053771973, -0.011207581, -0.0385437, 0.026153564, 0.017807007, -0.034576416, 0.042785645, -0.01689148, -0.012962341, -0.062072754, 0.010925293, -0.0025901794, -0.010154724, -0.01309967, -0.0619812, -0.035064697, -0.05142212, 0.015014648, 0.07330322, 0.001074791, 0.004497528, 0.010612488, 0.01373291, -0.0028953552, 0.008895874, -0.020568848, 0.002298355, -0.015319824, -0.004547119, 0.019592285, -0.017990112, 0.009391785, 0.041168213, -0.023239136, -0.038238525, 0.033050537, 0.025970459, -0.025680542, 0.029052734, -0.0032539368, -0.01890564, -0.03451538, -0.017837524, -0.015945435, 0.00028300285, 0.008842468, -0.026947021, 0.031051636, -0.02067566, -0.012756348, -0.011833191, 0.03768921, 0.018203735, 0.00068187714, 0.014335632, -0.012397766, 0.015464783, -0.0076904297, 0.019638062, -0.019515991, 0.015174866, 0.0030460358, 0.018417358, -0.02482605, 0.022018433, -0.018325806, 0.02041626, 0.004348755, 0.0028820038, 0.00054597855, 0.0052833557, 0.0029907227, -0.021331787, -0.011680603, -0.040283203, 0.0657959, -0.01424408, 0.0041770935, -0.015014648, -0.035125732, 0.052642822, 0.024429321, -0.048736572, 0.029449463, -0.00818634, -0.005176544, -0.051605225, 0.059448242, 0.0047912598, -0.061401367, 0.0060806274, -0.09515381, 0.06604004, 0.018112183, -0.0063934326, 0.07739258, 0.06512451, -0.0038928986, 0.052520752, 0.06161499, -0.0070343018, 0.011238098, 0.055145264, -0.03894043, -0.011108398, -0.0043792725, -0.04699707, 0.015914917, -0.011009216, 0.023071289, 0.0016288757, 0.028915405, -0.010314941, -0.029266357, 0.0032520294, 0.014579773, -0.017288208, -0.008453369, -0.010360718, -0.00440979, -0.041015625, 0.032592773, 0.006008148, -0.0013227463, 0.037353516, -0.004096985, 0.019012451, -0.0018892288, -0.017028809, -0.015205383, -0.009269714, 0.00034046173, 0.026977539, 0.018096924, -0.01663208, 0.0034809113, 0.026657104, -0.049865723, -0.011116028, 0.009674072, 0.04135132, -0.03186035, -0.034576416, 0.057128906, -0.0076904297, -0.008888245, 0.0128479, -0.041870117, -0.080444336, 0.012336731, 0.052124023, 0.018341064, -0.044006348, -0.008979797, -0.013214111, -0.055877686, 0.002981186, -0.016708374, 0.014778137, -0.04147339, -0.04660034, -0.045776367, 0.0021419525, -0.04510498, 0.051757812, -0.081726074, 0.047546387, 0.020935059, 0.002904892, -0.0076141357, 0.04196167, -0.044067383, -0.02229309, -0.023086548, 0.020828247, -0.0004105568, -0.025314331, 0.03665161, -0.045013428, -0.014274597, -0.021514893, 0.0015325546, -0.032440186, 0.011138916, -0.009269714, 0.0013246536, -0.0009918213, 0.015823364, 0.028503418, -0.034576416, 0.039764404, 0.013572693, 0.0019798279, -0.072021484, -0.00187397, 0.01713562, -0.057525635, -0.075683594, -0.04071045, 0.08404541, 0.019638062, -0.0058555603, -0.019332886, 0.035064697, 0.014793396, 0.022644043, -0.043060303, -0.017868042, 0.018539429, -0.0032348633, -0.015289307, -0.013412476, -0.0076179504, 0.049957275, 0.022521973, 0.026504517, -0.015045166, 0.0066871643, -0.007419586, -0.000626564, -0.01663208, -0.010353088, 0.01914978, -0.0138549805, -0.027404785, -0.066101074, 0.049987793, 0.045654297, 0.038146973, 0.011100769, -0.014419556, 0.0021362305, -0.06738281, -0.009246826, -0.04159546, 0.05102539, -0.0018844604, -0.03289795, -0.039642334, -0.052124023, -0.020477295, -0.021057129, -0.053466797, -0.012039185, 0.068481445, -0.01826477, -0.008636475, -0.03656006, -0.021347046, 0.032440186, -0.019943237, -0.027999878, -0.010597229, -0.019104004, -0.024307251, -0.00023424625, 0.023834229, -0.030273438, -0.009819031, 0.020751953, 0.026565552, -0.014953613, 0.045684814, 0.029022217, 0.041992188, 0.012290955, 0.037719727, -0.012023926, -0.012321472, 0.0032405853, 0.022766113, 0.015991211, -0.03817749, 0.018432617, 0.0385437, -0.016067505, 0.012496948, -0.013183594, 0.04031372, 3.9935112e-05, -0.039093018, 0.0048446655, 0.029541016, 0.010192871, -0.06982422, 0.06921387, -0.011268616, -0.033721924, -0.036346436, 0.020339966, -0.018692017, -0.037475586, -0.03387451, 0.00039744377, 0.037017822, -0.024917603, 0.008468628, -0.005504608, 0.057922363, -0.008178711, 0.017166138, 0.01927185, 0.0013999939, -0.06616211, -0.006198883, -0.04724121, 0.026184082, -0.025772095, 0.0035381317, -0.0011730194, 0.004283905, 0.0001513958, -0.03289795, 0.015083313, -0.038848877, -0.07336426, -0.030258179, 0.029632568, 0.03314209, -0.034332275, -0.020187378, -0.010627747, 0.01889038, -0.03881836, 0.009841919, -0.00026988983, -0.0005531311, -0.009422302, 0.043914795, -0.055633545, -0.04937744, -0.040527344, -0.00064086914, 0.003824234, -0.009490967, -0.07171631, -0.035369873, 0.005744934, 0.014251709, 0.010650635, 0.021697998, 0.021606445, -0.016052246, -0.010185242, -0.018951416, 0.04360962, -0.01776123, -0.023925781, 0.0579834, 0.02015686, 0.0044441223, 0.014450073, -0.0018033981, -0.040924072, 0.015838623, 0.0048103333, -0.051452637, -0.03390503, -0.021484375, 0.004600525, -0.025604248, -0.015792847, -0.0075569153, 0.042175293, -0.007980347, -0.008796692, -0.04296875, -0.021026611, -0.015029907, -0.037628174, 0.0096206665, -0.039886475, 0.008872986, -0.0032672882, 0.008132935, -0.039001465, -0.037261963, -0.005279541, 0.0058059692, 0.014129639, 0.028427124, 0.0003633499, -0.018707275, -0.016921997, -0.0011100769, 0.0015506744, -0.04260254, 0.0231781, 0.03552246, 0.01637268, 0.022705078, -0.022094727, -0.016418457, 0.021591187, -0.026306152, 0.020935059, -0.017181396, -0.047698975, -0.03982544, 0.045684814, 0.05001831, -0.0002632141, -0.039642334, 0.026290894, -0.002872467, -0.047973633, -0.020095825, 0.0051841736, -0.016433716, 0.0010604858, -0.015060425, 0.0077552795, 0.021133423, -0.016036987, 0.003074646, 0.006881714, 0.047302246, -0.023162842, 0.027435303, 0.01235199, -0.015686035, 0.0003709793, -0.0068969727, 0.017547607, 0.00018239021, 0.011802673, 0.018203735, -0.020950317, -0.03353882, 0.006175995, 0.018310547, -0.02947998, 0.046966553, 0.0045394897, 0.008659363, 0.033355713, -0.019821167, 0.001408577, 0.042907715, 0.031234741, 0.01512146, -0.0491333, -0.0031375885, -0.016799927, 0.017715454, 0.00459671, 0.04537964, 0.002313614, 0.020263672, -0.002067566, -0.01386261, -0.0065574646, -0.031677246, 0.04714966, -0.013206482, -0.020645142, -0.002117157, 0.0025501251, -0.011459351, 0.04071045, -0.017837524, -0.021591187, -0.026473999, 0.027328491, 0.00034952164, 0.0036773682, -0.044036865, -0.019439697, 0.0259552, 0.019134521, -0.022735596, -0.058685303, -0.022720337, 0.045135498, -0.0042152405, -0.041931152, 0.042114258, -0.07928467, 0.044677734, 0.024429321, 0.02671814, -0.05895996, -0.0087509155, -0.002632141, -0.013626099, 0.013092041, 0.04647827, 0.008018494, 0.045410156, -0.021942139, -0.04840088, 0.008163452, -0.030731201, -0.00038003922, -0.041656494, 0.023406982, 0.00093984604, -0.01360321, -0.0053596497, -0.059387207, 0.0113220215, 0.010978699, -0.023788452, -0.014884949, 0.024047852, -0.0018482208, 0.014640808, -0.024169922, 0.001288414, -0.013885498, -0.024032593, 0.012832642, -0.022781372, 0.027694702, -0.048980713, -0.074157715, -0.06561279, -0.0435791, -0.04788208, 0.060058594, -0.011764526, -0.015808105, -0.008163452, 0.013755798, 0.008232117, -0.037597656, -0.027023315, 0.004798889, 0.015296936, -0.014404297, 0.061798096, -0.020111084, -0.032318115, -0.053710938, -0.020828247, -0.028015137, 0.02029419, -0.06896973, 0.029968262, 0.0127334595, -0.010688782, 0.008255005, 0.03375244, 0.010101318, -0.008468628, 0.043823242, -0.041107178, -0.026931763, 0.017349243, 0.013076782, -0.020202637, -0.025375366, 0.01084137, 0.012336731, -0.015686035, 0.01802063, 0.007232666, -0.0501709, 0.017440796, -0.0041160583, 0.0073547363, 0.010726929, -0.024932861, 0.03286743, 0.01838684, -0.020126343, -0.014007568, 0.01424408, -0.02204895, 0.010978699, -0.0063972473, 0.0099487305, -0.016189575, -0.04107666, -0.008926392, -0.019866943, 0.01838684, 0.01499176, -0.045196533, -0.04840088, 0.010124207, 0.0031490326, -0.011985779, 0.026687622, 0.0022716522, 0.0059013367, -0.008666992, -0.0033054352, -0.028884888, -0.010055542, 0.0045318604, -0.0027618408, -0.02947998, -0.021728516, 0.03164673, -0.013084412, 0.0018854141, -0.014076233, 0.019958496, -0.0009870529, 0.0020656586, -0.08081055, -0.06512451, 0.05319214, 0.046936035, -0.025390625, -0.0026168823, 0.008323669, 0.033843994, -0.010375977, 0.015388489, 0.019256592, 0.004825592, -0.03112793, 0.03845215, 0.016525269, 0.050811768, -0.02407837, -0.10662842, -0.02720642, -0.008201599, 0.0074157715, -0.0068130493, 0.05947876, -0.049926758, 0.008041382, 0.02835083, -0.024658203, -0.04510498, 0.032287598, 0.089538574, 0.012336731, 0.023956299]}, "B07S8HQC5K": {"id": "B07S8HQC5K", "original": "Brand: eBasics\nName: Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading\nDescription: What is the purpose of these clips? How would one use them?
      Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
      How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

      Features:
      1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
      2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
      3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
      4. Smoker / Grill / Oven Safe and dish washer safe.

      Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
      Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
      compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
      compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
      compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
      Intelitopia Meat Thermometer
      compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
      compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
      \nFeatures: Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes\nUniversal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe\nEssential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer\nStainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading.\nSmoker / Grill / Oven Safe and dish washer safe. 2 Pack\n", "metadata": {"Name": "Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading", "Brand": "eBasics", "Description": "What is the purpose of these clips? How would one use them?
      Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
      How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

      Features:
      1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
      2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
      3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
      4. Smoker / Grill / Oven Safe and dish washer safe.

      Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
      Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
      compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
      compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
      compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
      Intelitopia Meat Thermometer
      compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
      compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
      ", "Features": "Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes\nUniversal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe\nEssential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer\nStainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading.\nSmoker / Grill / Oven Safe and dish washer safe. 2 Pack", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.007762909, 0.011962891, -0.0184021, 0.012802124, -0.009605408, -0.021911621, 0.022003174, -0.038726807, 0.023788452, 0.054107666, 0.008087158, -0.002840042, 0.06970215, -0.041137695, -0.008468628, 0.007686615, 0.03515625, -0.023345947, 0.047607422, 0.0063209534, 0.009468079, 0.03543091, 0.033966064, 0.018035889, 0.02180481, 0.04043579, 0.029571533, 0.022750854, -0.004962921, 0.014839172, 0.023956299, -0.042907715, 0.041381836, 0.030715942, -0.07196045, 0.01133728, -0.03186035, 0.01159668, -0.040527344, 0.03152466, 0.023742676, -0.028045654, -0.00013744831, 0.010787964, -0.0055351257, -0.044708252, 0.06542969, -0.033935547, -0.01737976, -0.0045166016, 0.03564453, -0.033996582, 0.048980713, 0.02998352, -0.038360596, -0.01751709, -0.017608643, -0.03652954, 0.020980835, 0.010803223, 0.018539429, -0.014251709, 0.019134521, 0.019454956, -0.028823853, -0.025238037, 0.113586426, -0.0029850006, -0.03237915, -0.047210693, 0.014808655, 0.03869629, -0.004421234, -0.011657715, -0.023727417, -0.053222656, 0.04815674, -0.037231445, -0.016357422, 0.018081665, -0.023635864, -0.028045654, 0.011352539, -0.02394104, -0.00856781, 0.0060653687, -0.013938904, -0.0066108704, -2.43783e-05, -0.032958984, -1.0669231e-05, -0.024261475, -0.036621094, 0.05432129, -0.0042419434, -0.016525269, -0.009475708, -0.050048828, 0.010688782, -0.012069702, 0.008453369, -0.021133423, -0.011138916, -0.003665924, -0.001619339, 0.058563232, -0.032928467, -0.021072388, 0.04034424, 0.020233154, 0.023284912, -0.045684814, -0.012901306, -0.026992798, -0.03475952, 0.021621704, 0.002193451, -0.034820557, 0.010734558, -0.045166016, -0.038604736, -0.025054932, 0.008605957, -0.0035896301, 0.052734375, 0.023651123, -0.003932953, 0.0105896, -0.09112549, 0.019577026, -0.020721436, -0.018432617, 0.022613525, 0.06994629, 0.020935059, -0.024673462, 0.009757996, -0.014945984, -0.006263733, -0.0004479885, 0.0012674332, -0.011627197, 0.00831604, 0.0037574768, -0.059417725, -0.018081665, 0.011405945, 0.060455322, -0.0055274963, -0.030212402, 0.012161255, 0.010322571, 0.059661865, -0.039215088, -0.03845215, -0.08270264, -0.010070801, -0.050231934, 0.0055007935, -0.07800293, -0.056518555, -0.015411377, 0.015563965, -0.025726318, -0.036193848, 0.022994995, 0.036102295, -0.0022678375, 0.018478394, -0.0024528503, 0.008041382, 0.003566742, 0.01763916, 0.0067749023, 0.019546509, 0.0146865845, 0.0012292862, 0.057647705, 0.059631348, -0.09051514, -0.06781006, -0.048431396, 0.118652344, -0.06536865, 0.0035800934, -0.013809204, 0.023483276, 0.031188965, -0.008346558, 0.035949707, -0.0011081696, -0.012229919, 0.008155823, 0.00157547, -0.020492554, 0.036712646, -0.06427002, 0.047729492, -0.020477295, -0.04345703, -0.061828613, -0.00868988, -0.020828247, 0.04058838, -0.008415222, -0.009002686, -0.0149383545, 0.015975952, 0.047821045, -0.014389038, -0.0047073364, -0.016799927, 0.028411865, -0.07476807, -0.07305908, 0.030059814, -0.006340027, -0.010017395, -0.023117065, -0.020126343, -0.012489319, -0.019378662, -0.0069999695, 0.04425049, 0.027114868, -0.042877197, -0.00070524216, -0.0026779175, 0.02709961, 0.002040863, -0.00046730042, 0.007183075, 0.01586914, 0.012962341, -0.023590088, 0.048583984, 0.081604004, 0.06323242, -0.015510559, -0.013130188, -3.540516e-05, -0.012001038, -0.052246094, 0.00050735474, 0.017501831, 0.015777588, -0.010276794, 0.008514404, -0.028549194, 0.00415802, 0.013626099, 0.02166748, 0.018737793, 0.015220642, -0.018310547, 0.020050049, -0.030715942, 0.03677368, -0.05947876, 0.034820557, -0.03866577, 0.01600647, 0.055145264, -0.027160645, 0.07397461, 0.0031337738, 0.055511475, 0.03439331, -0.046325684, 0.0029468536, 0.014724731, 0.026794434, -0.011947632, -0.022476196, -0.006225586, -0.03552246, -0.033233643, 0.03189087, -0.0014972687, -0.030212402, 0.035308838, 0.052978516, 0.028427124, -0.016113281, 0.03253174, 0.013679504, -0.014511108, 0.018341064, -0.038116455, -0.06726074, -0.01739502, -0.0057754517, -0.052337646, 0.008003235, 0.025177002, -0.041259766, 0.0413208, 0.038513184, 0.00028800964, -0.017410278, 0.019119263, 0.036132812, -0.047088623, 0.026138306, -0.024230957, -0.022476196, 0.0031280518, -0.012748718, -0.017456055, -0.07373047, 0.028015137, 0.052246094, 0.012130737, -0.039215088, 0.041412354, 0.020141602, -0.016586304, 0.018692017, -0.002779007, -0.0058021545, 0.014633179, -0.05899048, -0.049987793, -0.05166626, -0.04159546, 0.027999878, -0.05709839, -0.022354126, -0.006427765, 0.02923584, 0.022888184, 0.028549194, 0.005138397, -0.018798828, -0.006793976, -0.023147583, 0.0018863678, 0.011047363, -0.019439697, -0.0026130676, -0.027832031, -0.04196167, 0.0074005127, -0.042999268, -0.0501709, 0.028411865, 0.022003174, 0.026489258, -0.04611206, 0.010940552, 0.007835388, -0.046966553, 0.013153076, 0.014320374, -0.004497528, 0.04321289, -0.0017137527, -0.004386902, -0.007041931, -0.062194824, 0.019378662, 0.008087158, -0.019241333, -0.017349243, 0.029663086, -0.055999756, -0.0021533966, -0.021514893, 0.004005432, 0.04034424, 0.0345459, 0.0006403923, -0.010383606, -0.026672363, -0.02645874, -0.04019165, -0.0087509155, -0.052001953, 0.02772522, -0.009521484, -0.01626587, 0.013648987, 0.016799927, 0.055877686, 0.0020389557, 0.053619385, 0.053771973, 0.056549072, -0.020553589, -0.059783936, 0.0040664673, 0.089660645, -0.035491943, -0.035491943, -0.0030517578, 0.021972656, 0.007247925, -0.03286743, 0.01525116, -0.043304443, -0.058807373, -0.007698059, -0.048950195, -0.0029792786, 0.02494812, -0.0597229, 0.019210815, -0.060821533, 0.023971558, 0.028060913, -0.04159546, 0.009307861, -0.05050659, 0.018371582, -0.0021381378, -0.013252258, -0.02973938, -0.006752014, 0.0012083054, -0.011062622, -0.005050659, -0.0033569336, -0.006664276, 0.025161743, -0.006778717, 0.0047187805, -0.008506775, 0.017166138, -0.022521973, 0.0005059242, -0.010276794, -0.039855957, -0.024795532, -0.011627197, -0.05441284, -0.0044517517, 0.023834229, 0.022781372, 0.05441284, -0.026947021, -0.040985107, -0.0027713776, -0.020233154, -0.0004720688, -0.00084877014, -0.03100586, -0.0019397736, -0.035308838, -0.0027751923, -0.05215454, -0.01083374, 0.006855011, 0.035736084, 0.024353027, 0.0096206665, 0.07006836, 0.01939392, 0.050567627, -0.00068712234, -0.013557434, -0.0037670135, -0.03366089, 0.018737793, -5.7697296e-05, 0.0041885376, -0.06188965, 0.055999756, -0.026062012, -0.025299072, 0.015266418, -0.04699707, 0.060455322, -0.0061416626, -0.0003721714, -0.032714844, 0.020370483, 0.043273926, -0.00579834, 0.021881104, -0.027282715, 0.0067596436, 0.0042381287, -0.08306885, 0.050476074, 0.015419006, -0.001499176, -0.022735596, 0.04156494, 0.016998291, 0.021743774, 0.076416016, -0.015731812, 0.03817749, 0.02230835, -0.0065078735, -0.046875, 0.0032215118, 0.011001587, 0.010932922, -0.0034999847, -0.02609253, 0.00484848, 0.03778076, -0.0018205643, -0.033966064, -0.009506226, 0.05596924, -0.003189087, 0.032714844, -0.012207031, 0.016983032, -0.0135269165, -0.010009766, 0.0002462864, -0.008483887, -0.05480957, 0.023208618, -0.01939392, -0.022872925, 0.0103302, 0.0044517517, -0.018310547, 0.019821167, 0.01008606, 0.012680054, 0.019882202, -0.028930664, 0.024932861, -0.007446289, 0.014457703, 0.061676025, 0.029190063, 0.009208679, -0.053771973, -0.00073957443, -0.02796936, -0.018508911, 0.030807495, -0.010513306, -0.013069153, -0.024246216, -0.02532959, 0.02420044, -0.009353638, 0.05206299, -0.068725586, 0.02784729, -0.037231445, -0.024383545, -0.025512695, -0.05645752, -0.037200928, 0.0049057007, -0.01878357, -0.0032749176, -0.02268982, -0.0104904175, -0.0010385513, 0.0110321045, -0.0071754456, -0.033447266, 0.038757324, -0.04562378, 0.0053977966, 0.0017271042, 0.000667572, 0.07720947, 0.040222168, 0.04473877, -0.024459839, -0.015151978, -0.029083252, 0.029510498, -0.015640259, -0.007183075, -0.018463135, -0.021499634, 0.012542725, 0.02128601, 0.10211182, 0.00308609, 0.0128479, -0.07409668, 0.0062828064, -0.037261963, -0.0064353943, 0.039245605, -0.004714966, -0.020248413, -0.031677246, 0.018875122, 0.0014448166, 0.029769897, 0.021881104, -0.03338623, -0.03857422, 0.02420044, -0.022384644, 0.051483154, -0.01184082, -0.022964478, 0.012016296, 0.00522995, -0.008544922, 0.039123535, 0.05267334, -0.03881836, 0.02456665, -0.006378174, -0.037322998, 0.016616821, -0.0044555664, 0.0026111603, 0.025390625, -0.032165527, -0.02381897, -0.030349731, 0.02494812, 0.056518555, -0.002105713, 0.02949524, 0.017105103, 0.007801056, 0.0335083, -0.010986328, 0.039489746, 0.021972656, -0.019714355, -0.059509277, 0.006958008, -0.049468994, -0.0022716522, -0.029373169, -0.013404846, -0.010551453, -0.005657196, -0.006465912, -0.02720642, 0.020568848, 0.01285553, 0.003736496, 0.024154663, -0.0008177757, 0.009017944, 0.004722595, -0.018707275, 0.005809784, -0.015312195, -0.0115737915, -0.022827148, 0.01713562, 0.0014457703, 0.00043416023, -0.03643799, 0.022872925, -0.04827881, 0.016082764, 0.017227173, -0.0013370514, -0.032714844, -0.017547607, -0.004600525, -0.016983032, -0.047302246, 0.039031982, -0.008255005, 0.061035156, 0.0149383545, 0.0042037964, 0.037322998, -0.03866577, -0.005870819, 0.0395813, -0.011192322, 0.013702393, 0.010131836, 0.02243042, 0.021759033, 0.02015686, -0.038726807, -0.0038528442, 0.019317627, 0.054229736, -0.010986328, -0.04257202, 0.007156372, 0.0011949539, 0.008293152, 0.013336182, 0.05380249, -0.034332275, -0.0002593994, 0.018218994, -0.006504059, -0.04321289, -0.0025520325, -0.029800415, -0.043762207, -0.034240723, -0.013931274, 0.00041484833, -0.016067505, 0.005886078, -0.030700684, 0.0105896, 0.026901245, -0.018051147, -0.012176514, -0.018035889, -0.009727478, -0.009231567, 0.05606079, 0.0049819946, 0.0012512207, 0.0071372986, 0.020523071, 0.03817749, 0.006641388, -0.012542725, 0.021575928, -0.011459351, -0.008659363, 0.02104187, 0.013763428, 0.024337769, 0.010604858, -0.011375427, 0.009857178, 0.005886078, 0.01146698, -0.04916382, -0.0009899139, 0.066711426, -0.056640625, -0.045837402, -0.024475098, 0.055786133, -0.015289307, -0.034057617, 0.054901123, 0.0095825195, 0.016067505, 0.02923584, -0.021392822, -0.034057617, -0.0059928894, -0.010406494, -0.03845215, 0.014076233, -0.020492554, 0.016235352, 0.035339355, -0.04071045, -0.0028877258, 0.018661499, 0.007980347, 0.017318726, -0.058166504, -0.058685303, -0.023849487, -0.036102295, 0.0043907166, -0.022018433, 0.008781433, -0.0357666, -0.0053977966, -0.07928467, -0.036743164, 0.02319336, 0.041168213, 0.049682617, -0.021148682, 0.028030396, 0.06591797, -0.09033203, 0.072509766, 0.032104492, -0.056793213, -0.016677856, 0.007598877, 0.009025574, -0.0055274963, -0.023620605, 0.0051460266, -0.03152466, 0.030975342, 0.033294678, 0.027633667, -0.012214661, 0.017196655, 0.020263672, 0.024154663, 0.0062675476, -0.01979065, 0.020584106, -0.010688782, -0.06109619, -0.011741638, 0.015777588, -0.032409668, -0.033233643, -0.02708435, 0.031677246, 0.045074463, 0.0057678223, 0.019454956, 0.025253296, 0.04623413, -0.040863037, 0.041534424, -0.019363403, -0.0054244995, 0.041870117, -0.054107666, 0.00042510033, -0.048797607, 0.024475098, -0.0021133423, 0.0046195984, -0.00055885315, 0.005207062, 0.027648926, -0.013801575, 0.04751587, 0.00056648254, 0.032409668, 0.01234436, -0.052856445, 0.011009216, -0.029342651, 0.013999939, -0.009788513, 0.006839752, 0.020187378, 0.04537964, 0.018249512, -0.02418518, 0.10571289, -0.055786133, -0.0020446777, 0.0016546249, 0.041229248, -0.02142334, 0.0018634796, -0.0041122437, 0.032684326, 0.061676025, -0.0029239655, -0.025344849, 0.054656982, 0.018997192, -0.017791748, 0.017852783, 0.0023899078, -0.0016622543, -0.0061531067, 0.031463623, -0.01625061, -0.024398804, 0.053100586, 0.027511597, -0.009262085, 0.033691406, -0.009857178, -0.030334473, 0.01776123, 0.018463135, -0.0029087067, 0.05722046, -0.008293152, 0.025497437, -0.013534546, -0.029037476, -0.07055664, -0.03173828, -0.0024299622, -0.0041542053, 0.00217247, -0.0037193298, 0.10180664, 0.054138184, 0.013702393, 0.062683105, 0.0051002502, -0.006702423, 0.039215088, -0.003112793, -0.03060913, 0.03375244, -0.0058135986, -0.02067566, -0.0056037903, 0.009544373, -0.004840851, 0.006816864, -0.001709938, -0.0024909973, -0.027008057, -0.03933716, 0.03829956, -0.028839111, -0.026794434, 0.017105103, -0.05432129, -0.027145386, 0.0022792816, 0.034973145, 0.006465912, -0.018371582, -0.042877197, 0.03479004, -0.016052246, -0.0063285828, -0.025787354, -0.014808655, 0.023040771, -0.03842163, 0.025985718, 0.003753662, 0.05480957, -0.0027942657, 0.042175293, -0.029434204, -0.06378174, -0.041137695, 0.030349731, -0.054138184, -0.05117798, -0.0234375, 0.0040397644, 0.011512756, -0.0066337585, -0.01838684, 0.034729004, -0.011123657, -0.011199951, -0.0129776, -0.008644104, 0.0011758804, 0.024612427, -0.0031280518, 0.0030593872, -0.04849243, -0.014274597, 0.016281128, 0.0099105835, 0.023895264, -0.009521484, -0.05783081, 0.004962921, -0.026550293, 0.016525269, 0.019195557, -0.024658203, 0.008094788, -0.006416321, -0.055358887, -0.018066406, -0.019897461, -0.0020713806, 0.01234436, 0.06347656, -0.020217896, 0.012489319, -0.026000977, 0.08288574, -0.002313614, -0.014015198, 0.033050537, 0.0010356903, 0.003408432, 0.016403198, -0.02178955, 0.020370483, -0.010986328, -0.019500732, -0.013160706, 0.008987427, -0.033203125, -0.011619568, 0.0065727234, 0.010093689, -0.013999939, 0.010475159, 0.042663574, 0.009559631, -0.04547119, -0.050445557, 0.0034065247, -0.0035972595, -0.030349731, -0.028915405, 0.024810791, -0.0758667, 0.01146698, 0.039855957, 0.007331848, 0.0029964447, -0.010887146, -0.07525635, -0.014022827, -0.0035953522, 0.01878357, -0.010314941, -0.028915405, 0.011787415, 0.0013809204, 0.0105896, 0.025650024, -0.058013916, -0.046142578, 0.058776855, 0.024887085, -0.060760498, 0.029067993, -0.026809692, 0.007888794, 0.023391724, 0.005554199, -0.030059814, 0.023925781, -0.0011262894, 0.0052375793, 0.016983032]}, "B074GXFLX5": {"id": "B074GXFLX5", "original": "Brand: GasOne\nName: Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:\nDescription: \nFeatures: HIGH PRESSURE SINGLE PROPANE BURNER - Gas One\u2019s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control.\nNO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner!\nEASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1\u2019s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator!\nRUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One\u2019s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1\u2019s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU!\nSAFETY 1ST - Includes a Regulator with ensured quality control\n", "metadata": {"Name": "Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:", "Brand": "GasOne", "Description": "", "Features": "HIGH PRESSURE SINGLE PROPANE BURNER - Gas One\u2019s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control.\nNO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner!\nEASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1\u2019s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator!\nRUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One\u2019s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1\u2019s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU!\nSAFETY 1ST - Includes a Regulator with ensured quality control", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.028961182, -0.030258179, -0.024658203, -0.021255493, -0.03604126, 0.004600525, -0.019943237, 0.00907135, -0.022827148, 0.007030487, 0.00040340424, 0.01108551, 0.014411926, -0.048828125, 0.043762207, -0.01600647, 0.002729416, 0.036865234, 1.8656254e-05, -0.027313232, -0.004032135, -0.027008057, -0.033111572, 0.14929199, 0.022872925, 0.015083313, -0.028366089, 0.009933472, 0.0181427, 0.010429382, 0.029403687, -0.006641388, 0.03152466, -0.0181427, -0.028900146, -0.081970215, -0.03262329, -0.010757446, -0.061157227, 0.030197144, -0.017578125, 0.015029907, 0.00028967857, 0.03302002, -0.01902771, -0.04425049, 0.01121521, -0.030776978, 0.022705078, 0.002904892, 0.0062828064, -0.010154724, 0.0035095215, -0.015960693, -0.01763916, 0.011993408, -0.003648758, -0.034362793, -0.008163452, -0.0009851456, 0.0071983337, 0.0073013306, 0.024230957, 0.023544312, -0.07763672, 0.03503418, 0.012237549, -0.028015137, 0.033447266, -0.072509766, -0.038208008, 0.031829834, 0.02079773, 0.019515991, -0.06536865, -0.0026874542, 0.015716553, -0.012268066, 0.04949951, -0.026535034, 0.007675171, -0.019989014, 0.047698975, -0.0070495605, 0.004306793, -0.009017944, -0.0069885254, -0.0067977905, -0.03164673, -0.007221222, -0.026626587, -0.020904541, -0.02230835, 0.003921509, -0.017349243, 0.003452301, -0.032684326, -0.08483887, 0.060180664, 0.024963379, 0.030334473, -0.050994873, 0.032196045, 0.008255005, 0.00843811, 0.08581543, 0.018707275, 0.02973938, 0.038391113, -0.029541016, 0.016555786, 0.030944824, -0.040802002, -0.028839111, -0.00044465065, 0.05493164, -0.016403198, -0.00945282, -0.0014848709, -0.014602661, 0.0011224747, -0.0059776306, 0.039764404, -0.01473999, 0.004562378, -0.012054443, -0.033569336, -0.03137207, -0.021728516, 0.027542114, -0.031707764, -0.0051727295, 0.028793335, 0.05657959, 0.011154175, -0.018966675, 0.04446411, -0.022155762, 0.009613037, -0.028167725, 0.016662598, 0.013999939, 0.0048103333, 0.0049209595, -0.0060539246, 0.017730713, 0.042510986, 0.0029830933, -0.031951904, -0.039489746, -0.018157959, 0.035339355, 0.037750244, -8.815527e-05, -0.01008606, -0.024536133, -0.0042800903, -0.017089844, 0.016418457, -0.024368286, -0.022018433, -0.006916046, 0.0070877075, 0.021499634, 0.0023231506, 0.021026611, 0.029815674, -0.004009247, 0.004611969, 0.034851074, -0.039215088, 0.041107178, 0.002161026, -0.0134887695, -0.008590698, -0.013519287, -0.03111267, 0.048858643, 0.05026245, -0.074035645, -0.046905518, -0.04815674, 0.123291016, -0.034942627, -0.010818481, 0.014518738, -0.009284973, -0.037200928, 0.013290405, -0.013000488, 0.005016327, 0.046875, 0.00749588, -0.03475952, 0.028533936, 0.0038394928, -0.03656006, -0.0074043274, 0.0013952255, -0.016845703, -0.046447754, 0.015556335, 0.00073480606, 0.016952515, 0.009803772, -0.019882202, 0.007297516, 0.02204895, 0.032073975, 0.026901245, -0.009895325, -0.003326416, 0.027648926, -0.07196045, -0.042236328, 0.005355835, -0.0036449432, 0.0077781677, 0.02456665, -0.014373779, 0.06866455, -0.030136108, 0.05215454, 0.053649902, 0.044403076, -0.027801514, 0.005683899, -0.018295288, 0.028823853, 0.005607605, -0.057922363, 0.014564514, 0.045898438, 0.057739258, -0.005584717, 0.018157959, 0.093933105, 0.022766113, 0.0016460419, -0.016448975, 0.015098572, -0.046051025, -0.015083313, 0.008666992, -0.037078857, -0.03024292, 0.023406982, 0.006855011, -0.01939392, 0.028152466, 0.027023315, 0.03100586, 0.01133728, -0.017791748, 0.0009727478, 0.013877869, -0.04333496, -0.004760742, -0.017852783, 0.018569946, -0.007549286, 0.03112793, 0.05065918, -0.009056091, 0.018981934, 0.04345703, 0.02720642, 0.034606934, -0.027297974, 0.03967285, 0.019699097, -0.0098724365, -0.00024318695, 0.006263733, -0.015670776, 0.004940033, -0.03567505, 0.03201294, 0.012329102, -0.0026798248, 0.016693115, -0.020462036, 0.009933472, 0.0017213821, 0.04345703, -0.008918762, 0.018569946, 0.015586853, 0.0053482056, -0.01940918, 0.027236938, -0.0390625, -0.004447937, -0.025512695, -0.0009832382, -0.052856445, 0.05645752, -0.022842407, 0.033599854, -0.061798096, 0.041046143, 0.041778564, -0.09277344, 0.051605225, 0.0004386902, 0.024520874, 0.01890564, 0.011421204, 0.010765076, -0.022445679, 0.02607727, 0.0035362244, 0.02456665, 0.012893677, 0.009933472, -0.0048179626, -0.00944519, 0.03640747, 0.024841309, 0.07330322, -0.03010559, -0.037384033, 0.0070610046, -0.017471313, -0.00067281723, -0.005264282, -0.011955261, 0.021026611, 0.006072998, 0.029449463, 0.030517578, 0.025238037, 0.0066375732, -0.042022705, -0.0031375885, -0.01828003, -0.016586304, 0.04547119, -0.0078125, -0.047302246, -0.03286743, -0.025558472, 0.0019073486, -0.0040359497, -0.016448975, -0.066833496, 0.038909912, -0.0028972626, -0.06488037, -0.0010490417, 0.048461914, -0.0088272095, 0.010307312, -0.04840088, 0.019638062, -0.01826477, -0.038879395, -0.033355713, -0.02230835, -0.083496094, -0.015777588, -0.028930664, -0.0680542, -0.020935059, 0.074157715, 0.0025482178, -0.07989502, -0.011390686, -0.006137848, 0.01789856, 0.011222839, 0.01197052, -0.09289551, -0.0075302124, -0.023345947, 0.021438599, 0.04071045, -0.0037136078, 0.017974854, 0.031585693, 0.035095215, 0.0284729, -0.010574341, -0.00032806396, 0.024520874, 0.017196655, 0.031097412, 0.03164673, 0.008117676, -0.028625488, 0.004760742, 0.014442444, -0.023605347, -0.008453369, 0.035583496, 0.004508972, -0.0368042, -0.00076532364, -0.0519104, -0.009429932, -0.04006958, 0.004524231, -0.024337769, -0.002363205, -0.016311646, -0.057128906, 0.0053596497, -0.050750732, -0.008300781, 0.0262146, -0.013618469, 0.016998291, -0.034362793, 0.019439697, -0.006717682, -0.027511597, 0.030181885, -0.0033454895, -0.01991272, 0.0034370422, 0.057159424, -0.050445557, 0.050842285, 0.044525146, -0.05114746, 0.045928955, -0.025253296, 0.03086853, -0.01663208, 0.0022182465, 0.002544403, -0.020355225, -0.03567505, 0.013900757, 0.039733887, 0.049560547, 0.012283325, -0.04309082, 0.03277588, -0.024810791, -0.04800415, -0.027694702, -0.022399902, 0.012504578, -0.001039505, -0.025344849, -0.036895752, -0.058929443, -0.01512146, -0.061187744, 0.031433105, 0.016189575, 0.026000977, 0.015670776, 0.009353638, 0.07354736, 0.022506714, 0.030273438, -0.006626129, -0.018325806, -0.02027893, -0.011100769, 0.0073509216, -0.03488159, -0.04269409, 0.01701355, 0.027999878, 0.021987915, -0.016067505, -0.017807007, -0.0026626587, 0.032440186, -0.0037899017, -0.010894775, -0.003982544, -0.0033626556, 0.03302002, 0.022384644, 0.005443573, -0.03604126, -0.04522705, 0.0052223206, -0.029067993, 0.037017822, 0.04623413, -0.035064697, 0.064453125, 0.038970947, -0.0119018555, 0.0345459, 0.04397583, -0.0048675537, 0.021087646, 0.010368347, -0.030517578, 0.0003824234, 0.012413025, -0.0076789856, 0.028320312, 0.0070266724, -0.008659363, 0.01436615, -0.010398865, -0.03982544, -0.042907715, -0.0019550323, -0.0023708344, -0.0032539368, 0.009887695, -0.063964844, -0.022598267, -0.027755737, -0.03616333, 0.0052375793, -0.0335083, -0.0019168854, -0.039123535, 0.0069732666, -0.04940796, -0.0045051575, 0.012825012, 0.044921875, -0.020050049, 0.024032593, 0.017074585, -0.008842468, -0.036590576, 0.00091552734, -0.04058838, 0.029815674, 0.018127441, 0.04031372, 0.022369385, -0.02368164, 0.007797241, -0.043395996, -0.020950317, 0.06542969, 0.00081682205, -0.08996582, -0.016235352, 0.024230957, 0.021362305, -0.047973633, -0.0070228577, -0.022888184, -0.021453857, 0.009536743, -0.025375366, 0.036102295, -0.012275696, -0.019943237, -0.001953125, -0.03842163, -0.021759033, 0.020126343, 0.012763977, -0.017852783, -0.023803711, 0.017959595, -0.016937256, 0.048217773, -0.05596924, 0.0065307617, -0.06335449, 0.0012750626, 0.028427124, 0.01612854, -0.008033752, -0.013374329, -0.026000977, -0.0037593842, 0.055358887, -0.010902405, 0.022644043, -0.02166748, -0.010414124, 0.0066604614, 0.047668457, 0.051605225, -0.008087158, 0.016036987, -0.027770996, -0.014404297, -0.09436035, 0.03125, 0.022857666, -0.020736694, -0.081604004, -0.018554688, 0.08312988, 0.02355957, 0.031463623, 0.001914978, 0.03729248, -0.011619568, 0.035614014, -0.1194458, -0.091918945, -0.0072135925, -0.040740967, 0.029525757, 0.007167816, -0.013092041, 0.010154724, 0.08532715, 0.007007599, -0.009269714, 0.018814087, 0.06347656, -0.04550171, 0.0113220215, -0.06100464, -0.01184845, -0.03466797, 0.026473999, -0.025665283, 0.0028495789, -0.014625549, 0.017227173, -0.009132385, -0.0118637085, 0.00066137314, -0.044067383, -0.012374878, 0.028945923, -0.015548706, -0.04071045, -0.04058838, 0.03149414, -0.036376953, -0.0023994446, 0.008605957, -0.018066406, 0.0045547485, -0.0016317368, -0.0020256042, -0.029556274, -0.0079422, 0.051971436, 0.021194458, 0.0016345978, -0.04083252, -0.011360168, 0.04421997, -0.002937317, -0.0055389404, 0.020721436, 0.003414154, -0.0071105957, -0.045959473, -0.01777649, -0.059509277, -0.0047416687, 0.061584473, -0.042663574, -0.02772522, -0.0022716522, 0.025466919, -0.037139893, -0.054901123, 0.034729004, 0.0043411255, -0.005859375, 0.056884766, 0.018722534, -0.015357971, 0.031463623, -0.0069732666, 0.04623413, 0.0015230179, 0.0049362183, -0.021575928, -0.0025730133, 0.0024871826, -0.047180176, 0.046661377, 0.0001437664, -0.030380249, -0.033233643, 0.0035915375, -0.008377075, -0.025665283, 0.07165527, -0.061340332, 0.037139893, -0.011505127, -0.02458191, 0.011436462, 0.048065186, -0.0030174255, -0.0030536652, 0.006752014, -0.031341553, -0.051239014, -0.01776123, -0.020248413, -0.013809204, 0.0119018555, -0.03161621, -0.004638672, 0.0061798096, -0.014427185, -0.010421753, -0.02394104, 0.000351429, -0.036621094, 0.0051994324, -0.006980896, 0.015487671, -0.0041122437, -0.0061836243, 0.030960083, 0.0076942444, -0.030303955, -0.040649414, -0.020523071, 0.018447876, -0.009605408, 0.031555176, 0.0104904175, -0.013160706, 0.031951904, 0.03564453, 0.029785156, -0.014373779, -0.01676941, 0.02619934, 0.013206482, 0.006916046, -0.018310547, -0.019439697, 0.044525146, -0.030517578, -0.037200928, 0.015098572, 0.037475586, -0.00086688995, 0.0019054413, 0.061523438, 0.025894165, 0.012069702, 0.042663574, 0.014274597, -0.0236969, -0.0012016296, 0.009681702, -0.09484863, -0.06518555, -0.04168701, -0.027740479, -0.025314331, -0.01701355, -0.024795532, 0.03491211, -0.019821167, -0.003704071, -0.040283203, -0.030303955, -0.0032444, -0.05041504, 0.0044937134, -0.011238098, 0.009864807, 0.0016889572, 0.0013093948, -0.0418396, -0.0055885315, -0.022262573, 0.01902771, 0.038726807, 0.019226074, -0.0016822815, -0.026351929, -0.035949707, 0.041809082, 0.019714355, -0.032562256, -0.020233154, 0.005104065, 0.019012451, 0.0010566711, -0.023132324, 0.0064888, -0.0463562, 0.0027275085, 0.009986877, 0.0619812, -0.04473877, 0.03137207, 0.0061073303, 0.051116943, 0.015350342, -0.008338928, 0.01789856, 0.01626587, -0.013130188, -0.00894928, 0.03845215, -0.01737976, -0.016601562, -0.02734375, -0.060577393, -0.032348633, -0.023880005, 0.019104004, -0.0044555664, -0.011062622, -0.010917664, 0.0051460266, 0.0021858215, -0.028884888, 0.024734497, -0.012237549, 0.03201294, 0.0038852692, 0.03640747, 0.015281677, -0.018157959, -0.04449463, 0.004814148, 0.03970337, -0.012016296, 0.015655518, -0.04788208, 0.038024902, 0.053985596, -0.09210205, -0.025924683, 0.010269165, 0.016143799, -0.015808105, -0.033569336, -0.009025574, 0.010482788, -0.0005712509, -0.016616821, 0.016036987, 0.014297485, 0.00054883957, -0.025482178, 0.00793457, -0.026855469, -0.027786255, -0.024337769, 0.002462387, 0.013160706, 0.010398865, -0.043640137, 0.04623413, 0.024017334, 0.0181427, 0.02973938, -0.008178711, 0.013092041, 0.008224487, -0.031982422, -0.039794922, -0.044891357, 0.018478394, 0.025787354, -0.013336182, 0.027236938, 0.0050697327, 0.005115509, -0.0035572052, -0.028076172, 0.003370285, -0.02885437, -0.014205933, 0.0135650635, 0.0463562, -0.03881836, -0.02645874, -0.015823364, -0.019332886, 0.009002686, 0.0072402954, 0.012176514, 0.016601562, -0.0004453659, -0.015914917, 0.027038574, -0.05908203, 0.012481689, -0.0049819946, 0.017120361, 0.031982422, 0.0071983337, -0.0012397766, -0.023239136, -0.03375244, -0.0033054352, -0.023117065, -0.043060303, -0.0031909943, 0.008735657, -0.0065231323, -0.019500732, 0.011177063, -0.018936157, -0.012420654, 0.035888672, -0.033355713, 0.027145386, -0.031173706, -0.027633667, -0.038085938, -0.027954102, -0.040893555, 0.044036865, -0.015205383, -0.022521973, -0.0034255981, 0.009155273, 0.008003235, -0.059539795, -0.0046691895, -0.020507812, -0.0030555725, 0.013008118, 0.021606445, -0.025909424, -0.08270264, -0.017593384, 0.07220459, -0.08355713, -0.099487305, -0.015792847, 0.0095825195, 0.016082764, -0.0029525757, 0.012863159, 0.027236938, 0.019897461, -0.00919342, 0.01461792, -0.0317688, -0.012710571, 0.019973755, 0.015052795, -0.002193451, -0.030319214, 0.013694763, 0.031707764, 0.02494812, -0.026947021, 0.07397461, -0.09161377, 0.040008545, -0.020965576, 0.0027008057, -0.010986328, -0.010940552, 0.031051636, -0.0047569275, -0.045898438, 0.05105591, 0.019897461, 0.059661865, 0.0028438568, -0.008552551, 0.045074463, -0.02909851, -0.035949707, -0.048614502, -0.01940918, 0.02960205, 0.019180298, -0.022384644, -0.021743774, -0.0059051514, -8.457899e-05, -0.026016235, 0.0032615662, 0.0026721954, -0.013244629, 0.02116394, 0.02545166, -0.015655518, -0.0038661957, 0.0037670135, -0.054901123, -0.026992798, 0.022521973, -0.060516357, 0.0035572052, -0.025268555, -0.003250122, -0.008995056, -0.05279541, 0.055664062, -0.036132812, -0.02520752, 0.02204895, 0.039794922, -0.0016851425, 0.028549194, -0.0003607273, 0.008850098, -0.036071777, -0.014808655, 0.038116455, -0.017532349, -0.056274414, 0.0524292, 0.028915405, -0.024749756, -0.023361206, -0.07977295, -0.07080078, 0.029693604, 0.019958496, -0.0038852692, 0.035858154, 0.0051841736, 0.010726929, 0.02229309, -0.020553589, -0.03366089, 0.003271103, 0.031097412, 0.007160187, 0.010231018]}, "B08C9YPBV9": {"id": "B08C9YPBV9", "original": "Brand: VIVOHOME\nName: VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

      Features:
      -The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
      -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
      -The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
      -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
      -Great stove for camping; It will really simplify your canning process

      Product Specification:
      -Rated output: 54,000 total BTU/hr, for 18,000 BTU each
      -Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
      -Stove Height: 29\"

      Package Includes\uff1a
      -1*Triple burner stove
      -1*Extension hose & regulator
      -4*Detachable legs
      -1*Manual\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend\nTHREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove's body; It can also be used as a countertop stove without legs\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "metadata": {"Name": "VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout", "Brand": "VIVOHOME", "Description": "Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

      Features:
      -The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
      -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
      -The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
      -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
      -Great stove for camping; It will really simplify your canning process

      Product Specification:
      -Rated output: 54,000 total BTU/hr, for 18,000 BTU each
      -Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
      -Stove Height: 29\"

      Package Includes\uff1a
      -1*Triple burner stove
      -1*Extension hose & regulator
      -4*Detachable legs
      -1*Manual", "Features": "GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend\nTHREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove's body; It can also be used as a countertop stove without legs\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.04220581, -0.00907135, -0.014251709, -0.06317139, -0.0074691772, -0.020217896, -0.0118637085, 0.012290955, -0.011070251, 0.0146102905, -0.021652222, 0.03289795, -0.025344849, -0.017623901, -0.0039863586, -0.012573242, 0.02748108, -0.009063721, 0.004611969, 0.0016078949, 0.0063323975, 0.039031982, -0.050354004, 0.03225708, 0.032592773, -0.016113281, -0.083496094, 0.036315918, 0.0064430237, 0.014633179, 0.010726929, 0.014633179, 0.036193848, -0.013633728, -0.029312134, -0.059020996, -0.0340271, -0.015975952, -0.055419922, 0.024887085, 0.011672974, -0.019180298, 0.0045166016, -0.032836914, -0.0057792664, 0.010429382, 0.0027179718, -0.043884277, -0.0082473755, 0.03186035, -0.029037476, -0.012413025, -0.01689148, -0.017532349, 0.0076065063, 0.0014486313, 0.038909912, -0.010543823, 0.008392334, -0.04977417, -0.025680542, 0.014274597, 0.037902832, 0.05493164, -0.052520752, 0.035125732, 0.025970459, -0.01914978, 0.044006348, -0.07165527, -0.049926758, 0.046936035, 0.045898438, 0.034698486, -0.037231445, -0.07745361, 0.01499939, -0.02420044, 0.053527832, -0.02420044, -0.010467529, 0.018371582, -0.0077667236, -0.03591919, 0.021331787, -0.015594482, -0.013801575, -0.014732361, -0.025436401, -0.0044288635, -0.014266968, -0.044189453, -0.049835205, 0.05709839, 0.024276733, -0.0030651093, -0.0670166, -0.06762695, 0.029373169, 0.03024292, 0.023147583, -0.018508911, 0.030853271, 0.00031375885, -0.0058059692, 0.086242676, 0.020843506, 0.038726807, 0.016921997, -0.009727478, 0.024536133, -0.013824463, 0.0031337738, -0.030654907, 0.007827759, -0.024917603, -0.049468994, 0.03729248, 0.012176514, -0.018096924, -0.0034561157, -0.012374878, 0.0025520325, 0.012779236, 0.014282227, 0.020050049, -0.017166138, -0.010498047, -0.009971619, 0.025497437, -0.010505676, -0.006298065, -0.02407837, 0.06188965, 0.007686615, -0.013252258, 0.00920105, -0.0028591156, 0.008644104, -0.014816284, 0.010391235, -0.025558472, -0.009880066, 0.01663208, -0.022109985, 0.034362793, 0.04043579, -0.0013494492, -0.024169922, -0.076538086, -0.023727417, -0.005142212, -0.006275177, 0.029922485, 0.014663696, 0.0020103455, 0.028930664, -0.025894165, 0.028182983, -0.021057129, -0.0057029724, -0.019989014, -0.0010623932, 0.01361084, -0.016433716, 0.046447754, 0.016601562, -0.00049829483, 0.02154541, 0.06500244, -0.014801025, 0.023422241, 0.008285522, 0.032287598, -0.0010175705, -0.0055160522, -0.008857727, 0.05883789, 0.06185913, -0.1005249, -0.066101074, -0.051971436, 0.14868164, -0.056488037, -0.025817871, -0.023330688, 0.0035953522, -0.025222778, 0.02722168, -0.00027656555, 0.04916382, 0.014350891, -0.0053596497, -0.020095825, 0.016189575, -0.002538681, -0.053741455, 7.9870224e-05, -0.017608643, 0.006603241, -0.003566742, 0.027297974, -0.003583908, 0.02961731, -0.025390625, 0.0317688, -0.02230835, 0.021530151, 0.053710938, 0.026443481, -0.019378662, 0.0028896332, 0.019546509, -0.06384277, -0.040863037, 0.010597229, -0.004875183, 0.02848816, 0.008651733, 0.012252808, 0.036590576, -0.01373291, 0.046936035, 0.021881104, 0.011550903, -0.0062446594, -0.0152282715, -0.005367279, -0.022094727, 0.017181396, -0.046936035, 0.012680054, 0.059631348, 0.06237793, -0.03387451, 0.019470215, 0.04171753, 0.06237793, -0.029541016, -0.019073486, 0.011360168, -0.0073623657, -0.04034424, -0.023376465, -0.022644043, -0.03186035, 0.018478394, -0.011306763, -0.020645142, 0.02619934, -0.024353027, -0.0013046265, 0.024887085, -0.052734375, -0.04647827, 0.0368042, -0.036224365, -0.019226074, 0.027908325, -0.0059661865, 0.022598267, 0.058288574, 0.0060310364, 0.024841309, -0.01525116, 6.681681e-05, 0.012710571, 0.011024475, -0.009391785, -0.005279541, 0.02456665, 0.019592285, -0.018234253, 0.004470825, 0.01687622, -0.047180176, -0.014968872, 0.014839172, -0.03665161, -0.03451538, -0.0061149597, 0.026168823, 0.0129776, -0.009994507, 0.0014181137, -0.008415222, 0.012229919, -0.003396988, -0.02053833, 0.0037822723, 0.0368042, -0.013076782, -0.0423584, 0.01133728, -0.031982422, -0.031433105, 0.07714844, 0.0014533997, 0.014923096, -0.013572693, 0.008766174, 0.038757324, -0.0513916, 0.04144287, 0.013458252, -0.02520752, 0.0066604614, 0.033172607, 0.026473999, -0.019332886, -0.015319824, 0.025527954, 0.042022705, -0.01889038, 0.07946777, 0.025146484, 0.015472412, 0.0513916, 0.032928467, 0.023223877, -7.587671e-05, -0.006401062, -0.01449585, -0.013519287, 0.020126343, -0.008956909, -0.01876831, -0.01789856, -0.0009908676, 0.03491211, 0.0368042, 0.0345459, 0.021820068, 0.001493454, 0.0037174225, -0.0079574585, -0.008743286, -0.01424408, -0.016082764, -0.04260254, -0.01902771, -0.014091492, 0.023345947, -0.0033111572, -0.02659607, -0.06414795, 0.029190063, -0.010536194, -0.040924072, -0.01965332, 0.060913086, -0.015655518, 0.05203247, -0.041625977, 0.035827637, -0.05215454, -0.07739258, -0.03060913, -0.033233643, -0.08203125, -0.011405945, 0.005748749, -0.041137695, -0.03845215, 0.060913086, -0.031921387, -0.053985596, -0.031402588, -0.014183044, 0.0048217773, 0.04260254, -0.006351471, -0.06088257, -0.01890564, -0.030319214, 0.0050964355, 0.06359863, -0.0022697449, -0.0129852295, 0.026519775, 0.0362854, 0.038238525, -0.0061569214, -0.010345459, 0.029693604, 0.03286743, 0.05908203, 0.038482666, 0.029800415, -0.027694702, 0.009613037, 0.020141602, -0.026016235, -0.011054993, 0.022140503, 0.0034446716, -0.0057907104, -0.015731812, -0.05041504, -0.0093307495, -0.025024414, -0.0065193176, -0.024856567, -0.021148682, 0.017547607, -0.05883789, 0.013069153, -0.05810547, 0.00472641, 0.04876709, -0.014915466, 0.019561768, -0.0045394897, 0.02130127, -0.00033974648, 9.2327595e-05, 0.064331055, -0.0063209534, 0.03704834, -0.056030273, 0.04626465, -0.08526611, 0.046844482, 0.0127334595, -0.03579712, -0.004058838, -0.014701843, 0.020065308, -0.002609253, 0.027435303, -0.025909424, -0.0041275024, -0.025634766, -0.014205933, 0.008125305, 0.029373169, 0.010559082, -0.0065689087, 0.02204895, -0.0014896393, -0.06390381, -0.034942627, 0.016326904, 0.019104004, 0.0075912476, -0.012962341, -0.033081055, -0.052581787, 0.03186035, -0.034301758, -0.001991272, -0.008346558, 0.07305908, 0.026611328, -0.0023231506, 0.083984375, -0.018920898, 0.041015625, 0.07220459, -0.03186035, -0.013305664, -0.030288696, -0.012992859, 0.042510986, -0.023406982, -0.024475098, 0.03277588, 0.022018433, 0.009735107, -0.021209717, -0.014053345, 0.07928467, 0.012191772, -0.01928711, -0.0082473755, -0.03265381, 0.049987793, 0.014793396, 0.010261536, -0.056640625, -0.03805542, -0.022903442, -0.051361084, 0.078125, 0.04675293, -0.020843506, 0.08557129, 0.1060791, -0.011558533, 0.021820068, 0.03564453, -0.008110046, 0.034088135, -0.017959595, -0.04360962, -0.0025806427, 0.017150879, -0.02217102, 0.008712769, 0.007106781, -0.06726074, 0.021530151, 0.0758667, -0.025894165, -0.049438477, -0.004055023, 0.017181396, -0.009559631, 0.012199402, -0.051361084, 0.021850586, -0.031555176, -0.036712646, -0.004508972, -0.041259766, -0.032226562, -0.007926941, -0.040771484, -0.02758789, 0.01651001, 0.0012102127, -0.008735657, 0.012519836, 0.00623703, 0.034362793, 0.0039100647, -0.010513306, 0.038604736, -0.048828125, -0.010261536, 0.05166626, 0.06384277, 0.010253906, -0.021408081, -0.012184143, -0.0107421875, -0.017028809, 0.023620605, -0.018432617, -0.07513428, 0.022201538, 0.026245117, -0.018722534, -0.050994873, 0.0012226105, -0.027862549, -0.03427124, 0.009346008, -0.04727173, 0.034118652, -0.026824951, -0.03503418, -0.09100342, -0.017044067, -0.015319824, 0.0206604, -0.0647583, 0.043029785, -0.017913818, -0.039489746, 0.01335907, -0.015586853, -0.01209259, 0.0005364418, 0.014823914, 0.0128479, 0.0004851818, -0.053741455, 0.0104599, -0.028884888, -0.020446777, -0.019729614, 0.043151855, 0.009506226, -0.013336182, -0.02229309, 0.0019989014, -0.0031528473, 0.04083252, 0.029876709, -0.011550903, 0.034057617, -0.022125244, -0.01058197, -0.028289795, -0.027130127, 0.031066895, -0.014961243, -0.010604858, -0.04333496, 0.040893555, -0.016937256, 0.022994995, 0.013175964, 0.01209259, 0.018051147, 0.0030136108, -0.13220215, -0.06750488, -0.016662598, -0.05114746, 0.028396606, -0.021057129, -0.030181885, 0.06021118, 0.09008789, 0.021942139, -0.029724121, -0.017288208, 0.0059776306, -0.018569946, 0.040008545, -0.048309326, -0.016052246, -0.048980713, 0.012184143, -0.0001654625, 0.0053710938, 0.015274048, -0.02583313, 0.0011787415, 0.0079422, -0.011131287, -0.009742737, 0.012557983, 0.06829834, -0.04345703, 0.008918762, -0.024139404, -0.004623413, -0.027008057, -0.03164673, -0.015457153, -0.03289795, 0.02168274, 0.0061073303, 0.007926941, -0.0030899048, 0.012435913, 0.021148682, 0.031234741, 0.0022678375, -0.015258789, -0.008888245, 0.0234375, 0.002532959, -0.0040626526, -0.00015854836, -0.005836487, -0.0042304993, 0.027282715, -0.0038528442, -0.060058594, 0.014785767, 0.03488159, 0.0021381378, -0.018798828, 0.025344849, 0.033294678, -0.013847351, -0.048858643, 0.045135498, 0.0045318604, -0.030166626, 0.025634766, 0.0046310425, -0.03515625, 0.04309082, -0.04119873, 0.051971436, 0.025177002, -0.056121826, 0.043121338, 0.028030396, 0.0033435822, -0.03149414, 0.027786255, -0.026794434, -0.04058838, -0.007434845, 0.024108887, 0.041625977, -0.011047363, 0.053649902, -0.053710938, 0.057891846, -0.046936035, -0.029632568, 0.012458801, 0.06311035, -0.037231445, -0.01524353, 0.0362854, -0.0048942566, -0.050079346, -0.0003669262, -0.045288086, 0.045928955, -0.012710571, 0.005077362, 0.018218994, 0.022613525, -0.03161621, -0.013076782, -0.007980347, 0.011047363, -0.021896362, 0.004146576, -0.021148682, -0.016693115, -0.012466431, 0.041534424, -0.0039901733, 0.006996155, -0.05419922, -0.01576233, -0.00289917, 0.009033203, 0.002035141, 0.037719727, -0.0015211105, -0.009376526, 0.028198242, -0.015777588, 0.017349243, -0.027511597, -0.0010566711, -0.0012378693, -0.0039711, -0.0013303757, -0.017044067, 0.012138367, 0.043182373, -0.027755737, -0.031555176, 0.0015163422, 0.064819336, -0.009803772, -0.007865906, 0.05758667, 0.025039673, 0.010688782, 0.028579712, -0.008628845, -0.025680542, 0.025100708, 0.009010315, -0.046569824, 0.007083893, -0.020263672, 0.017471313, 0.009963989, -0.019134521, 0.00090408325, 0.04727173, 0.0014801025, -0.04650879, -0.016082764, -0.016418457, 0.022949219, 0.0049095154, 0.006111145, 0.0016870499, 0.0045928955, -0.020935059, 0.013122559, -0.0135650635, -0.020935059, -0.01828003, 0.016479492, 0.022506714, -0.019592285, -0.011528015, 0.010063171, -0.00034046173, 0.047729492, 0.00945282, -0.026504517, 0.0032157898, -0.0048675537, 0.009536743, -0.000936985, 0.013702393, 0.003982544, -0.017349243, 0.024902344, 0.011070251, 0.013381958, -0.05239868, -0.042816162, 0.008743286, 0.039031982, 0.007881165, 0.049804688, 0.06210327, 0.016448975, -0.046813965, -0.0069885254, -0.007507324, -0.04067993, -0.056640625, -0.016784668, -0.061157227, 0.030944824, -0.023925781, 0.040527344, -0.0501709, 0.038024902, 0.00043988228, 0.01436615, 0.008140564, -0.031951904, 0.0152282715, -0.025619507, 0.050720215, 0.0049743652, 0.029541016, 0.021224976, -0.00049066544, -0.038482666, 0.0009069443, 0.02822876, -0.018707275, 0.033416748, -0.036590576, 0.007698059, -0.0042266846, -0.0041160583, -0.01361084, -0.029663086, -0.003944397, -0.04446411, -0.028411865, -0.029373169, -0.0055236816, 0.024780273, -0.015335083, 0.08947754, -0.037902832, 0.01360321, 0.014892578, -0.011169434, 0.016784668, 0.02027893, -0.033996582, 0.010391235, 0.003194809, -0.016906738, -0.026779175, 0.015327454, 0.012237549, 0.0007815361, -0.0015449524, -0.021652222, 0.023956299, 0.018615723, -0.037261963, -0.042816162, -0.038757324, 0.026733398, 0.008972168, -0.032409668, -0.020843506, 0.010925293, 0.016220093, 0.028747559, -0.028015137, 0.02218628, -0.047454834, 0.036712646, 0.03314209, 0.052368164, -0.01966858, -0.0066184998, -0.010551453, 0.019302368, 0.010299683, 0.008674622, 0.016845703, -0.014076233, -0.033203125, -0.023330688, 0.011230469, -0.042633057, 0.029830933, -0.033325195, 0.013214111, 0.04446411, -0.008720398, -0.0063285828, -0.014076233, -0.011199951, 0.013908386, -0.008071899, 0.015975952, -0.020706177, 0.00969696, 0.004737854, -0.038970947, 0.024749756, -0.0181427, -0.016998291, 0.015312195, -0.01890564, -0.0079422, -0.02331543, -0.07519531, -0.018478394, 0.020446777, -0.053375244, 0.02444458, 0.03375244, -0.013069153, 0.0074691772, -0.00868988, 0.020706177, -0.045806885, 0.01701355, -0.01234436, 0.023345947, -0.010513306, 0.06915283, -0.05596924, -0.0569458, -0.033447266, 0.04547119, -0.115722656, -0.032470703, 0.026504517, -0.024307251, -0.017608643, -0.0058021545, 0.016113281, 0.05709839, 0.02796936, -0.012924194, -0.0045776367, -0.009567261, -0.015365601, 0.013328552, 0.0049705505, -0.02722168, 0.00045084953, 0.021438599, 0.00843811, 0.0029411316, 0.030700684, -0.02053833, -0.058685303, -0.022445679, -0.022003174, 0.0013341904, -0.02746582, 0.0042381287, 0.035736084, 0.03036499, -0.0034828186, 0.04925537, 0.022125244, -0.010620117, 0.0335083, -0.03567505, 0.020950317, -0.024810791, -0.014129639, -0.046295166, -0.003446579, -0.00056791306, -0.013847351, -0.037109375, 0.023422241, 0.004798889, -0.010116577, -0.0284729, 0.017654419, 0.006378174, -0.010070801, -0.015235901, -0.0021839142, -0.024658203, -0.0031795502, 0.009819031, -0.007987976, -0.01424408, 0.040527344, -0.003753662, -0.023269653, -0.016052246, -0.018661499, -0.013282776, -0.025848389, -0.0038547516, 0.00012493134, -0.07623291, 0.04144287, 0.04699707, 0.014450073, -0.023239136, 0.01020813, -0.043029785, -0.028274536, -0.003168106, 0.018035889, 0.015792847, -0.0099487305, 0.002248764, 0.002380371, -0.005760193, -0.032714844, -0.07824707, -0.048034668, 0.0057907104, -0.018005371, 0.017364502, 0.033599854, -0.028518677, 0.01953125, 0.04727173, 0.012916565, -0.008590698, 0.007587433, 0.035247803, 0.011802673, 0.005039215]}, "B00IZCNP5C": {"id": "B00IZCNP5C", "original": "Brand: Flame King\nName: Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black\nDescription: \nFeatures: Securely Holds Two 30 pounds Propane Tanks\nFast and Easy To Use\nBuilt From A Durable Powder Coated Steel\n", "metadata": {"Name": "Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black", "Brand": "Flame King", "Description": "", "Features": "Securely Holds Two 30 pounds Propane Tanks\nFast and Easy To Use\nBuilt From A Durable Powder Coated Steel", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0069122314, -0.013710022, -0.035705566, -0.008003235, -0.029129028, -0.021652222, -0.034240723, 0.0034065247, -0.03741455, -0.0075531006, -0.044403076, 0.06762695, -0.05114746, -0.012519836, 0.05105591, -0.023635864, 0.045806885, -0.014328003, 0.011054993, -0.0057907104, -0.0043182373, 0.02130127, 0.0049095154, 0.10217285, 0.04244995, -0.0435791, 0.027313232, 0.033966064, 0.020324707, 0.02281189, 0.04232788, -0.03250122, 0.044952393, -0.041503906, 0.016525269, -0.0023040771, -0.021209717, -0.015792847, -0.032318115, 0.013198853, -0.0121154785, 0.022949219, 0.03543091, -0.046966553, -0.006450653, -0.014564514, -0.008323669, -0.020141602, 0.033203125, -0.006549835, -0.014671326, 0.0012731552, -0.011978149, -0.0124435425, -0.011428833, 0.026611328, 0.015686035, -0.016174316, 0.0068130493, -0.016159058, -0.0035190582, 0.035949707, 0.031799316, 0.02331543, -0.063964844, 0.016311646, 0.0826416, -0.044311523, 0.04171753, -0.06213379, -0.020507812, 0.05947876, 0.015525818, 0.019760132, -0.028182983, -0.016021729, 0.009925842, 0.0059661865, 0.033691406, 0.005130768, -0.013137817, -0.04309082, 0.0104904175, -0.015777588, -0.032409668, -0.027389526, -0.0065727234, 0.005634308, -0.013442993, -0.004470825, -0.0107040405, 0.009605408, 0.005252838, -0.0014467239, -0.014915466, -0.029571533, -0.048309326, -0.07873535, 0.06695557, 0.02355957, 0.023712158, -0.034942627, 0.015327454, -0.00497818, 0.002840042, 0.06100464, 0.021438599, -0.018112183, 0.0055885315, -0.025390625, -0.008163452, 0.009498596, 0.057403564, 0.0075035095, -0.0056495667, -0.005683899, -0.0029315948, 0.05709839, 0.004016876, 0.037750244, -0.023864746, 0.005886078, 0.010566711, -0.0317688, 0.014472961, -0.017364502, -0.023590088, -0.0064468384, -0.009315491, 0.024337769, -0.009902954, -0.013496399, -0.002817154, 0.06500244, 0.015327454, -0.010551453, -0.019760132, -0.00016772747, -0.008018494, -0.017105103, -0.02368164, 0.011680603, 0.041534424, -0.016662598, -0.064575195, 0.0519104, -0.0013980865, -0.013656616, -0.012260437, -0.068725586, -0.040283203, -0.03869629, 0.011077881, 0.033813477, -0.0045394897, 0.011817932, 0.0015001297, -0.0032806396, 0.0055656433, -0.02293396, 0.015838623, -0.045928955, -0.05130005, -0.021652222, -0.062927246, 0.052642822, -0.0037670135, -0.0036125183, 0.021316528, 0.045562744, -0.014213562, -0.0010404587, 0.015945435, 0.024673462, -0.008460999, 0.0036067963, 0.008224487, 0.07946777, 0.0690918, -0.115112305, -0.07312012, -0.06561279, 0.15783691, -0.07098389, -0.013519287, -0.005630493, -0.006134033, -0.02708435, 0.028549194, -0.020706177, 0.03378296, 0.036254883, -0.012527466, -0.04638672, -0.0034770966, 0.011650085, -0.010650635, 0.012901306, -0.018112183, 0.002866745, 0.010551453, 0.0023841858, 0.038909912, 0.006454468, 0.028381348, 0.0032024384, 0.0076141357, 0.0005207062, -0.037902832, 0.01928711, 0.028213501, -0.0033550262, -0.019546509, -0.013175964, 0.026046753, 0.017562866, -0.064575195, 0.011962891, -0.0057029724, -0.017486572, 0.01927185, -0.023162842, 0.019515991, -0.0017127991, -0.015609741, -0.0023117065, -0.028717041, 0.0026741028, -0.008605957, -0.009567261, 0.02067566, 0.023391724, 0.0793457, 0.068847656, -0.016601562, 0.038238525, 0.038970947, 0.029754639, -0.03967285, 0.005332947, -0.0044021606, 0.0028018951, -0.020599365, 0.047668457, -0.008277893, -0.047821045, -0.0126571655, 0.03253174, -0.010910034, 0.010498047, 0.0949707, -0.021514893, -0.0048332214, 0.038848877, -0.01625061, -0.010818481, -0.024627686, 0.010948181, -0.036224365, 0.027954102, -0.008728027, 0.05883789, 0.054229736, 0.004611969, 0.06719971, -0.01638794, 0.05697632, 0.031097412, -0.012084961, 0.0098724365, -0.0042266846, -0.01927185, -0.010513306, -0.013504028, -0.016998291, 0.0006341934, -0.037322998, 0.02947998, -0.015159607, -0.016738892, -0.014373779, -0.048217773, 0.04937744, -0.004501343, 0.043304443, 0.020187378, 0.0619812, -0.017654419, -0.08111572, -0.010307312, 0.005329132, 0.036254883, -0.009597778, -0.023162842, 0.036956787, 0.019561768, 0.062683105, -0.009429932, 0.023147583, -0.007129669, -0.0022563934, 0.052093506, -0.009284973, 0.03338623, -0.00995636, 0.012756348, 0.002216339, -0.010848999, -0.0024585724, -0.0050354004, -0.0064888, 0.019897461, 0.026367188, -0.007858276, 0.025146484, 0.016601562, -0.0028896332, 0.036132812, 0.015609741, 0.030059814, 0.0052833557, 0.022537231, 0.024124146, 0.03555298, 0.032348633, -0.05657959, 0.041778564, 0.005367279, -0.020065308, -0.002275467, -0.005542755, 0.0020542145, 0.014373779, 0.047302246, -0.003829956, -0.008758545, -0.014282227, 0.022018433, -0.027313232, -0.052703857, -0.034851074, -0.009277344, 0.026245117, -0.0038547516, 0.014793396, -0.059387207, 0.038085938, -0.005458832, -0.0017499924, 0.045135498, -0.02645874, 0.005203247, -0.0051612854, 0.012641907, 0.023986816, -0.034362793, -0.038879395, -0.006690979, -0.0073280334, -0.06121826, -0.016189575, -0.04458618, -0.06933594, -0.008483887, 0.06768799, 0.011558533, -0.060272217, -0.015457153, 0.010314941, -0.0118637085, -0.03286743, -0.0023040771, -0.058502197, 0.004180908, 0.029251099, 0.035339355, 0.0028839111, -0.049957275, 0.04058838, -0.0005931854, 0.008285522, 0.015930176, -0.028320312, 0.023620605, 0.011260986, 0.050598145, 0.01878357, 0.019622803, -0.0104904175, -0.00806427, -0.018997192, 0.0132751465, -0.031158447, -0.018035889, -0.025985718, -0.022537231, 0.028503418, 0.0234375, -0.018997192, -0.011688232, -0.07946777, -0.002872467, -0.032287598, -0.04196167, 0.04498291, -0.06512451, 0.00083732605, -0.07745361, 0.03643799, -0.026519775, 0.0058517456, 0.020111084, 0.0019226074, -0.007205963, -0.027908325, -0.014701843, -0.029586792, -0.013320923, -0.0048980713, 0.022827148, 0.027267456, -0.057403564, -0.00023198128, 0.033447266, -0.060028076, -0.011642456, -0.018463135, 0.05581665, -0.026321411, 0.018997192, -0.027511597, -0.01689148, -0.005760193, -0.03640747, -0.048614502, -0.034423828, -0.007820129, -0.0058250427, 0.005996704, -0.0181427, -0.068725586, -0.024780273, 0.036499023, 0.014732361, 0.015403748, -0.0019569397, 0.0022277832, -0.046325684, 0.00037288666, -0.011482239, -0.003982544, 0.014076233, -0.02293396, -0.0085372925, -0.026672363, 0.0053253174, 0.0028953552, 0.04598999, 0.022537231, -0.005634308, 0.004638672, -0.014579773, -0.008041382, 0.012969971, -0.024749756, -0.004245758, 0.029953003, 0.01373291, -0.018417358, 0.007080078, -0.014183044, 0.02798462, 0.030075073, -0.003255844, 0.0055389404, 0.0345459, 0.014953613, -0.008644104, -0.009841919, -0.032592773, -0.062316895, 0.035247803, -0.078430176, 0.026977539, 0.042266846, -0.027938843, 0.06298828, 0.00083351135, 0.0039901733, 0.02418518, 0.026245117, 0.01977539, 0.016540527, 0.0047302246, -0.017227173, -0.012084961, -0.0010414124, -0.017059326, -0.01247406, -0.0385437, -0.026672363, 0.0022678375, 0.03994751, 0.00623703, -0.008598328, -0.028915405, 0.01058197, -0.016067505, 0.01725769, 0.037322998, 7.534027e-05, -0.005722046, -0.038726807, -0.005218506, -0.018753052, -0.027770996, -0.009376526, -0.011558533, -0.04244995, -3.0398369e-06, -0.011940002, 0.0077590942, 0.025161743, 0.046966553, -0.04031372, -0.011909485, 0.018417358, -0.009346008, -0.005645752, 0.025039673, 0.01675415, 0.013771057, 0.038085938, -0.014556885, -0.0031852722, -0.021697998, 0.016662598, 0.006252289, -0.061462402, -0.06347656, 0.00182724, 0.03933716, 0.019958496, -0.048858643, -0.028839111, -0.017852783, -0.043792725, -0.030212402, -0.05014038, -0.047912598, -0.01474762, 0.02406311, -0.06652832, -0.033081055, -0.04046631, 0.0046539307, -0.017196655, 0.020858765, -0.02368164, -0.0055351257, 0.005290985, 0.047698975, -0.04147339, -0.024642944, -0.054901123, 0.023529053, -0.03765869, -0.03024292, 0.048553467, -0.04711914, -0.028305054, -0.029830933, 0.012672424, 0.010223389, 0.00054836273, 0.0072402954, -0.008346558, -0.030426025, 0.027114868, -0.0030174255, -0.026367188, 0.024459839, 0.027374268, -0.06591797, -0.014144897, 0.0006670952, -0.011352539, -0.039031982, -0.05404663, -0.026443481, 0.030075073, 0.015594482, -0.0067634583, -0.023864746, 0.05126953, 0.023010254, 0.046051025, -0.07434082, -0.06567383, 0.008682251, -0.033233643, -0.02079773, -0.012512207, -0.017242432, 0.041625977, 0.015281677, -0.04397583, 0.014137268, -0.005470276, 0.019622803, -0.005065918, 0.0026512146, -0.033477783, 0.003665924, -0.024368286, 0.019851685, -0.055786133, 0.039367676, 0.047058105, -0.002199173, 0.0132369995, 0.014381409, -0.015792847, -0.03237915, -0.0446167, -0.021636963, 0.082092285, 0.020355225, -0.023025513, -0.015571594, 0.002117157, -0.011558533, -0.026626587, -0.05429077, -0.017089844, 0.049743652, -0.0054893494, -0.015357971, -0.024368286, -0.015342712, 0.019119263, -0.0016021729, 0.021743774, -0.071777344, -0.014289856, -0.052001953, -0.035339355, 0.02911377, -0.040130615, -0.0262146, 0.018676758, 0.0231781, -0.02859497, 0.05215454, 0.028289795, 0.0009365082, -0.037902832, 0.026687622, -0.014251709, 0.008865356, -0.024917603, 0.028640747, 0.017623901, 0.025314331, 0.010627747, -0.00027775764, 0.018859863, 0.003276825, 0.019546509, -0.029800415, -0.014144897, -0.048919678, -0.017715454, 0.02658081, 0.010871887, -0.04071045, 0.099121094, -0.0039749146, -0.014015198, -0.055877686, 0.011756897, -0.03201294, -0.031188965, -0.022491455, 0.0044174194, 0.007701874, 0.019378662, 0.0340271, 0.022354126, 0.024642944, -0.034179688, -0.012268066, 0.022735596, -0.027267456, -0.024627686, 0.012191772, -0.029174805, 0.044433594, -0.021331787, 0.021224976, 0.030838013, 0.026626587, 0.010894775, 0.006828308, -0.029342651, 0.014541626, -0.011047363, -0.017196655, 0.024475098, 0.03552246, -0.018920898, -0.06500244, -0.029373169, -0.0046463013, -0.027297974, -0.03527832, -0.0059814453, 0.03527832, 0.018249512, 0.026443481, -0.041503906, -0.03201294, 0.0065193176, 0.027648926, 0.020019531, 0.018371582, -0.06378174, 0.0038700104, 0.016098022, 0.02420044, -0.06201172, -0.0063209534, 0.024536133, -0.056152344, -0.006790161, -0.017868042, 0.057037354, -0.007457733, -0.0016555786, 0.09674072, 0.04196167, 0.02960205, 0.036834717, -2.2053719e-06, -0.03665161, 0.042236328, 0.018493652, -0.08746338, -0.017868042, -0.016998291, -0.024719238, -0.013679504, -0.005027771, -0.029586792, 0.02684021, -0.032714844, -0.021011353, -0.012023926, -0.018997192, -0.011131287, -0.040008545, 0.022872925, -0.019226074, -0.013511658, -0.0067863464, -0.028366089, -0.039245605, -0.014640808, 0.0053634644, 0.009025574, 0.0127334595, 0.029678345, -0.010177612, -0.018798828, -0.022827148, 0.016540527, -0.012290955, 0.0023708344, 0.027740479, 0.04244995, -0.015357971, 0.033050537, -0.031066895, -0.015808105, -0.016418457, 0.029037476, 0.030288696, 0.012680054, -0.06384277, -0.03869629, 0.03643799, 0.044677734, 0.012619019, -0.005004883, 0.016296387, 0.007549286, -0.016799927, -0.009086609, 0.019165039, -0.022659302, -0.0030975342, -0.029708862, -0.0047073364, 0.017669678, -0.011474609, 0.016784668, -0.013801575, 0.05883789, -0.027557373, 0.010475159, -0.003452301, 0.009986877, 0.020492554, -0.02015686, -0.029937744, -0.0064811707, -0.011734009, -0.0061950684, 0.0107421875, -0.020858765, 0.033813477, 0.05392456, 0.023132324, -0.025894165, 0.017425537, -0.00869751, -0.007286072, -0.021148682, 0.029083252, -0.020141602, -0.020202637, -0.0036239624, -0.030044556, -0.017852783, 0.023757935, 0.03149414, -0.030471802, -0.03744507, 0.01751709, 0.026046753, -0.01184082, -0.001499176, -0.006454468, -0.01727295, 0.011474609, 0.016433716, -0.0028896332, -0.011245728, -0.017456055, 0.060272217, 0.0044784546, 0.03060913, 0.036010742, -0.044677734, 0.010971069, 0.044067383, 0.0112838745, -0.014381409, -0.031051636, 0.01713562, 0.021438599, -0.0052261353, 0.03515625, -0.012619019, 0.020874023, -0.016479492, -0.030685425, 0.021438599, -0.04260254, -0.004173279, -0.00390625, 0.053527832, -0.072387695, -0.018951416, -0.0138168335, 0.0059051514, -0.015029907, 0.09814453, 0.00031542778, 0.021011353, 0.01689148, 0.02696228, 0.06390381, 0.0022640228, 0.026947021, -0.010536194, 0.0013208389, 0.01524353, -0.0143966675, -0.0042686462, -0.013633728, -0.027008057, 0.001947403, -0.022598267, -0.021652222, -0.011726379, 0.018615723, -0.025436401, -0.030761719, 0.00077724457, 0.0026111603, -0.031433105, 0.008094788, -0.033477783, 0.0031795502, -0.026412964, 0.0005931854, -0.014312744, -0.044952393, -0.033294678, 0.06726074, -0.021850586, -0.02809143, -0.0063209534, 0.0064697266, -0.0051116943, -0.05621338, -0.008529663, -0.00157547, 0.06512451, -0.006752014, 0.00920105, 0.011940002, -0.0368042, -0.058258057, 0.019821167, -0.051483154, -0.017868042, -0.046783447, 0.0061836243, -0.009796143, -0.0064735413, 0.046936035, 0.09161377, 0.009483337, 0.022064209, 0.035583496, -0.087646484, -0.02027893, 0.06488037, 0.0017442703, -0.019607544, -0.053131104, 0.020431519, 0.0021266937, -0.025741577, 0.030792236, 0.011703491, -0.0524292, 0.009017944, -0.016983032, -0.025360107, -0.009513855, -0.0022010803, 0.01689148, -0.010276794, -0.038604736, 0.012435913, 0.0043563843, 0.01499176, 0.02684021, 0.007987976, 0.04837036, 0.017105103, -0.07824707, -0.043395996, -0.03173828, 0.012245178, -0.009277344, -0.051208496, 0.016693115, -0.010597229, -0.019577026, -0.025924683, 0.01033783, -1.1920929e-07, -0.029067993, 0.023269653, 0.021469116, -0.024841309, 0.0023097992, -0.0070266724, -0.05569458, -0.025680542, 0.07342529, -0.03945923, 0.009246826, 0.009788513, -0.045440674, -0.033813477, -0.033966064, -0.019302368, -0.030319214, -0.050994873, 0.017425537, 0.04550171, -0.015686035, -0.008132935, -0.0062179565, -0.0005917549, 0.0015268326, 0.0395813, -0.0029964447, 0.015312195, -0.010612488, 0.09692383, -0.00084352493, 0.09197998, 0.004749298, -0.0960083, -0.04916382, 0.015167236, -0.025909424, -0.0051879883, -0.0037288666, -0.015960693, 0.012649536, 0.0077056885, -0.031341553, -0.03640747, 0.018875122, 0.061157227, -0.017105103, 0.03012085]}, "B07MV43X4C": {"id": "B07MV43X4C", "original": "Brand: Cedar Green\nName: Cedar Green 330SA Earth Anchor, Black\nDescription: \nFeatures: Each Package Includes 6 Earth Anchors\n30\" Length with 3\" Dia Helix Auger & 1\" Inside Ring\nHeavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding\nEasy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs\nIdeal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake\n", "metadata": {"Name": "Cedar Green 330SA Earth Anchor, Black", "Brand": "Cedar Green", "Description": "", "Features": "Each Package Includes 6 Earth Anchors\n30\" Length with 3\" Dia Helix Auger & 1\" Inside Ring\nHeavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding\nEasy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs\nIdeal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.031158447, -0.008773804, -0.023849487, 0.01991272, -0.0335083, -0.0033435822, -0.007434845, -0.0095825195, -0.041137695, 0.018325806, -0.028961182, 0.0066108704, -0.0109939575, -0.019332886, 0.014587402, -0.0513916, 0.029510498, -0.012779236, 0.032226562, -0.010398865, 0.031433105, 0.006855011, 0.015586853, 0.016677856, -0.005455017, 0.0053520203, 0.08911133, -0.025421143, 0.01576233, -0.015960693, 0.012367249, -0.005821228, 0.034088135, -0.011444092, -0.0009236336, -0.014778137, 0.016616821, -0.011917114, -0.017425537, 0.0048446655, 0.0446167, -0.011077881, -0.05606079, 0.013664246, -0.07861328, -0.030654907, 0.027160645, 0.022155762, -0.0007362366, -0.07342529, 0.008018494, 0.05899048, 0.0473938, -0.031707764, -0.002035141, 0.03439331, -0.036895752, 0.035186768, 0.0036144257, 0.06188965, 0.015335083, 0.021896362, -0.012062073, -0.021087646, -0.04144287, 0.008522034, 0.087402344, -0.009521484, -0.00806427, -0.06088257, -0.008308411, 0.039611816, 0.0019760132, 0.021514893, 0.008613586, -0.0009469986, -0.0026493073, 0.030639648, 0.014961243, 0.033203125, -0.011955261, -0.010368347, 0.0025482178, -0.043670654, 0.007320404, -0.01979065, -0.009918213, -0.0053863525, -0.005092621, -0.051330566, -0.012916565, 0.05456543, -0.0069007874, -0.04714966, -0.049621582, -0.043701172, 0.00242424, -0.0074424744, 0.0068206787, 0.008110046, -0.012611389, -0.01436615, 0.01512146, -0.0066947937, -0.023712158, -0.0051193237, 0.028549194, -0.0004029274, -0.03189087, 0.0021400452, -0.053741455, -0.027297974, 0.054351807, 0.01689148, -0.02078247, 0.0085372925, 0.027908325, 0.012260437, -0.0051574707, 0.04989624, -0.008277893, 4.5120716e-05, 0.02722168, 0.015449524, -0.002445221, 0.0013198853, -0.016098022, -0.015068054, 0.037231445, -0.0007195473, -0.03643799, 0.04058838, 0.0602417, -0.030761719, -0.024215698, -0.007286072, -0.009971619, -0.02267456, -0.018432617, 0.019866943, -0.020568848, -0.029541016, 0.010986328, -0.015235901, 0.002632141, 0.0026187897, 0.0010442734, 0.035125732, 0.020751953, 0.012031555, 0.005970001, -0.03125, 0.039367676, -0.019424438, 0.011497498, -0.11425781, 0.032714844, -0.06896973, 0.042755127, -0.07714844, -0.028427124, -0.011329651, -0.015823364, -0.028274536, -0.053863525, 0.016708374, 0.04888916, 0.007865906, -0.0027122498, 0.012664795, -0.0033740997, -0.012199402, -0.036987305, -0.020324707, 0.003944397, -0.0010890961, -0.019348145, 0.05041504, 0.066101074, -0.07006836, -0.056671143, -0.059539795, 0.098083496, -0.021331787, 0.021118164, -0.03366089, 0.06591797, 0.0065460205, -0.04711914, 0.03491211, 0.03277588, 0.05947876, -0.023345947, 0.008995056, 0.017501831, 0.00869751, -0.012832642, 0.020095825, 0.0063476562, -0.0473938, -0.038330078, -0.03652954, 0.013175964, -0.041992188, 0.04437256, -0.07501221, 0.034332275, 0.010528564, -0.04876709, 0.021896362, 0.028564453, -0.020492554, -0.012908936, -0.020706177, 0.012931824, 0.023239136, -0.042907715, -0.024536133, -0.014076233, 0.00029945374, 0.017684937, -0.008834839, 0.021011353, 0.0023231506, -0.0014019012, 0.0001462698, -0.009681702, 0.007987976, 0.002281189, 0.030395508, -0.028030396, -0.028945923, -0.03050232, -0.03656006, -0.026046753, 0.040771484, 0.015602112, 0.021820068, -0.021972656, -0.00137043, 0.03805542, -0.014846802, -0.05041504, -0.06161499, 0.014320374, -0.0054779053, 0.017929077, -0.041412354, -0.03387451, -0.009140015, 0.04937744, 0.019866943, 0.022613525, 0.00932312, -0.015296936, 0.020553589, -0.015556335, 0.032928467, 0.0143966675, 0.0038108826, -0.017364502, 0.03286743, 0.03881836, -0.0025749207, 0.04812622, -0.007030487, 0.053863525, 0.03942871, -0.032562256, -0.0017929077, 0.008773804, 0.034484863, -0.016555786, 0.020126343, 0.00086450577, -0.023452759, -0.0060806274, 0.00048565865, -0.03289795, -0.041259766, -0.0035324097, -0.014389038, 0.035888672, -0.010253906, 0.017532349, -0.014518738, 0.033691406, -0.0029582977, -0.035980225, -0.02670288, 0.010284424, -0.008712769, -0.028640747, -0.007572174, 0.019699097, -0.020309448, -0.06500244, 0.013076782, 0.03616333, -0.040283203, -0.044891357, 0.051208496, -0.020965576, 0.034454346, 0.0005302429, -0.050720215, -0.004043579, 0.00026869774, 0.004009247, -0.015449524, 0.012496948, 0.08666992, 0.010902405, 0.0016927719, 0.0055351257, 0.019134521, -0.009269714, 0.022338867, 0.05239868, 0.04626465, -0.03149414, -0.020721436, 0.009185791, -0.02482605, -0.002855301, 0.008422852, -0.023345947, 0.010139465, -0.015823364, -0.032440186, -0.03427124, -0.0569458, -0.031341553, 0.017059326, 0.004207611, 0.0055351257, 0.015823364, -0.025924683, -0.0025081635, 0.047576904, 0.06304932, -0.047851562, -0.01826477, -0.005126953, -0.051971436, 0.029067993, 0.00074243546, 0.024353027, -0.019699097, -0.017532349, 0.009590149, -0.030761719, 0.0010204315, 0.0061798096, 0.016235352, -0.04449463, -0.008285522, 0.002483368, -0.029067993, -0.052581787, 0.012008667, 0.0045547485, -0.018005371, 0.02407837, 0.01953125, -0.032409668, 0.00459671, -0.014122009, -0.013031006, -0.0087890625, 0.016418457, 0.00023162365, -0.054107666, -0.023071289, -0.014717102, 0.012168884, -0.0024223328, -0.038848877, 0.012306213, -0.0107040405, -0.0013370514, 0.010757446, 0.011230469, -0.0026512146, 0.034606934, 0.015586853, 0.03338623, 0.033111572, 0.018981934, 0.00019419193, 0.002494812, 0.0032291412, -0.08343506, -0.01826477, -0.0046195984, -0.00076675415, 0.02784729, 0.00010073185, -0.03994751, -0.037109375, -0.06604004, 0.0038909912, 0.023208618, -0.05709839, -0.004425049, -0.07293701, -0.052886963, -0.0309906, 0.0051078796, 0.06604004, -0.02720642, 0.05706787, -0.024963379, 0.034088135, -0.010375977, 0.0063438416, -0.03564453, -0.016174316, 0.026748657, 0.008422852, -0.01449585, -0.015655518, -0.004837036, 0.03652954, -0.042419434, 0.0007195473, -0.00737381, 0.05822754, -0.0008006096, -0.032928467, -0.027999878, -0.025970459, 0.008323669, -0.014190674, -0.072387695, -0.0033454895, -0.007549286, 0.0524292, 0.046203613, -0.041778564, 0.018585205, 0.047668457, 0.010002136, 0.07104492, 0.007259369, -0.008720398, 0.02607727, -0.024673462, -0.008468628, 0.051086426, -0.016235352, 0.020858765, 0.010368347, 0.008491516, -0.02267456, -0.047058105, 0.014282227, 0.011947632, 0.019683838, 0.025009155, 0.0074691772, -0.01399231, 0.022827148, 0.018112183, 0.061187744, -0.016448975, 0.025634766, 0.006198883, -0.0021247864, 0.03036499, 0.030975342, -0.05154419, -0.008705139, -0.0009188652, -0.018249512, 0.0039482117, 0.0064964294, 0.006816864, 0.014579773, 0.0044784546, 0.016220093, -0.030899048, -0.024597168, 0.1159668, 0.08502197, -0.029846191, 0.047027588, 0.066711426, -0.007381439, 0.0079422, -0.026611328, 0.026885986, 0.026428223, 0.01234436, 0.0056495667, -0.018218994, -0.024307251, 0.07293701, 0.03262329, 0.037506104, -0.03237915, -0.039154053, -0.011390686, -0.039520264, -0.016098022, 0.044189453, 0.04006958, 0.008094788, 0.0146865845, -0.068725586, 0.035614014, -0.033081055, 0.04348755, 0.041931152, -0.04058838, 0.0030841827, -0.06365967, 0.05090332, -0.07232666, -0.0045928955, -0.0051460266, -0.049316406, 0.057495117, 0.029724121, -0.011131287, -0.016281128, 0.055114746, -0.018112183, -0.064331055, -0.0129852295, 0.0022182465, 0.025360107, 0.02508545, 0.0052337646, 0.034973145, 0.035217285, -0.0058670044, 0.01676941, -0.066345215, -0.08428955, 0.0018787384, 0.040618896, 0.00078344345, -0.07348633, 0.02142334, 0.008598328, 0.015434265, 0.037963867, -0.107788086, 0.01928711, -0.02468872, 0.00047826767, -0.04296875, 0.019989014, 0.023071289, -0.061401367, -0.042053223, -0.0023040771, -0.02130127, 0.044891357, 0.002483368, 0.021408081, -0.020370483, -0.016845703, -0.023590088, 0.0037651062, 0.015975952, 0.009017944, -0.02998352, -0.033691406, -0.004016876, -0.0043525696, 0.013305664, 0.022323608, -0.0054397583, 0.02166748, -0.02331543, 0.017822266, 0.015930176, 0.054901123, 0.021209717, 0.025512695, -0.05117798, 0.037109375, -0.033325195, -0.01940918, 0.030410767, 0.003768921, -0.01423645, -0.039367676, 0.017166138, -0.01826477, -0.0016403198, -0.055389404, 0.04437256, -0.0030384064, 0.057525635, -0.045166016, -0.06604004, 0.028442383, -0.013938904, -0.037506104, 0.0074501038, -0.025299072, 0.05593872, -0.06311035, -0.05831909, 0.0019273758, 0.0030727386, -0.03225708, -0.010299683, 0.018066406, -0.010002136, 0.012298584, -0.032928467, -0.044067383, 0.0036773682, 0.0041656494, 0.023391724, 0.020431519, 0.033325195, 0.03137207, 0.024276733, -0.0024700165, 0.0007634163, 0.027236938, -0.016082764, 0.034942627, -0.019058228, -0.020126343, -0.016189575, -0.035614014, -0.055511475, -0.0657959, -0.049682617, 0.04144287, -0.03262329, -0.072265625, 0.010147095, 0.036499023, 0.001996994, 0.052947998, 0.054656982, -0.0022945404, -0.0062789917, -0.017196655, 0.0063591003, -0.018508911, -0.03277588, -0.0027580261, -0.0008649826, 0.021987915, 0.004589081, 0.027526855, -0.008544922, 0.053527832, -0.028396606, -0.018447876, -0.017822266, -0.012184143, -0.061309814, -0.0064315796, -0.05984497, 0.038970947, 0.0093688965, -0.021636963, 0.034942627, 0.046051025, -0.030197144, 0.022888184, 0.011352539, -0.023651123, 0.004432678, 0.00881958, 0.028427124, -0.042755127, 0.0064964294, -0.0021953583, -0.04598999, -0.030273438, 0.012290955, -0.024505615, -0.040039062, 0.014511108, -0.016525269, 0.05328369, -0.056732178, -0.030303955, 0.01586914, 0.042663574, -0.017700195, 0.0068244934, 0.02279663, -0.013824463, -0.046783447, 0.0049362183, 0.021850586, 0.04901123, -0.013282776, -0.034973145, 0.053710938, 0.018157959, -0.032836914, 0.026870728, -0.009513855, 0.01966858, -0.034240723, -0.026062012, 0.025650024, 0.034088135, -0.012367249, -0.053894043, -0.0053520203, 0.0073661804, -0.049102783, -0.0058517456, 0.011375427, 0.0146865845, 0.012023926, 0.062561035, -0.005558014, 0.062683105, 0.03555298, -0.030258179, 0.020126343, 0.025466919, -0.049682617, 0.037902832, 0.0038318634, -0.006828308, 0.031982422, 0.02859497, 0.016647339, -0.0014095306, -0.006340027, -0.008682251, 0.008781433, 0.01675415, -0.013412476, 0.032104492, 0.021392822, -0.020996094, 0.03668213, -0.00068473816, -0.027236938, 0.018249512, -0.0019359589, -0.048736572, 0.0015449524, -0.011810303, 0.0019550323, 0.008392334, -0.048309326, -0.02986145, 0.019714355, -0.0017948151, 0.023147583, -0.002752304, -0.051879883, 0.0054855347, -0.014808655, 0.0055618286, -0.015296936, 0.015327454, -0.008850098, 0.03579712, -0.02041626, -0.02368164, 0.031707764, 0.02571106, -0.007358551, -0.009498596, 0.013954163, 0.050811768, -0.025375366, 0.021453857, -0.015602112, -0.051361084, -0.0052719116, 0.04058838, 0.07312012, -0.014602661, 0.021194458, -0.025054932, -0.039215088, 0.02999878, 0.056549072, 0.033233643, -0.010871887, 0.02104187, 0.05166626, 0.0058135986, -0.0028629303, 0.0051498413, 0.024719238, 0.026107788, 0.0075302124, -0.0090408325, 0.009101868, -0.012535095, -0.038085938, -0.040405273, 0.019607544, 0.05670166, 0.026733398, 0.028533936, -0.009643555, 0.05596924, 0.0017385483, -0.009742737, 0.015426636, -0.007209778, -0.016860962, -0.02319336, -0.04232788, 0.020523071, -0.023101807, -0.017532349, -0.012008667, 0.011512756, 0.027236938, 0.025726318, -0.0025997162, 0.024780273, 0.00894928, -0.04827881, 0.016937256, 0.024475098, 0.008338928, 0.034851074, 0.00046277046, 0.00712204, -0.021865845, 0.019454956, 0.04623413, -0.03677368, 0.012016296, 0.001458168, 0.048583984, -0.013710022, 0.04800415, 0.015106201, 0.03567505, 0.0395813, -0.021743774, 0.022583008, 0.03540039, -0.035186768, 0.0030269623, 0.00365448, 0.021026611, -0.036621094, -0.027023315, -0.024307251, 0.02154541, 0.023117065, 0.027389526, -0.021209717, -0.012893677, -0.00094890594, -0.015525818, 0.00554657, -0.0027923584, 0.017425537, 0.011108398, -0.0019626617, -0.010147095, 0.017837524, -0.01398468, 0.03829956, 0.03967285, -0.020553589, -0.03555298, 0.009506226, -0.0027160645, 0.0016517639, 0.03024292, 0.02444458, 0.015327454, 0.035614014, -0.024139404, 0.030151367, 0.020980835, -0.009185791, 0.0038223267, -0.0020503998, -0.03363037, -0.017730713, -0.043426514, -0.01210022, -0.0045166016, 0.001540184, 0.025161743, 0.024917603, 0.032928467, 0.017913818, -0.024383545, 0.01675415, -0.010414124, -0.01675415, 0.011817932, -0.020751953, -0.01399231, -0.024978638, 0.013656616, -0.0041618347, 0.023071289, -0.010002136, 0.019165039, 0.004005432, 0.010124207, 0.035949707, -0.03277588, -0.02217102, -0.0011796951, 0.029953003, -0.034454346, 0.0057754517, 0.009689331, 0.062408447, -0.016784668, 0.015640259, 0.03491211, -0.026428223, -0.06390381, -0.009750366, -0.028533936, 0.03164673, -0.03286743, 0.030395508, 0.016799927, -0.013839722, -0.0057754517, 0.064331055, 0.0067253113, 0.017318726, 0.014312744, 0.04244995, 0.01586914, -0.052001953, 0.011528015, -0.033203125, 7.56979e-06, -0.031219482, -0.0052604675, 2.5451183e-05, 0.0013084412, -0.002456665, -0.044403076, 0.013664246, 0.008796692, -0.0041046143, 0.06591797, -0.03555298, 0.060333252, 0.059539795, -0.044525146, -0.009788513, -0.036376953, -0.06323242, -0.018341064, -0.023986816, -0.02128601, -0.011802673, 0.09674072, 0.0056114197, 0.026611328, -0.020324707, -0.0042266846, -0.02508545, 0.0026836395, 0.016357422, -0.007911682, -0.01727295, 0.021087646, -0.0011692047, -0.0040779114, 0.032196045, 0.01979065, 0.01739502, 0.021362305, 0.09051514, -0.0056610107, -0.032714844, -0.001868248, 0.035583496, -0.008270264, 0.03540039, -0.01651001, 0.00844574, 0.03591919, 0.053497314, -0.026000977, -0.12243652, 0.05050659, 0.076416016, -0.021499634, 0.027618408, -0.0056266785, -0.044769287, 0.0017690659, 0.022109985, 0.006290436, 0.014793396, -0.03265381, 0.046661377, -0.0036087036, 0.09118652, -0.006046295, -0.05935669, -0.04248047, 0.035339355, -0.019165039, 0.0010356903, -0.0009918213, -0.0031776428, 0.023773193, 0.052642822, 0.03668213, 0.010482788, 0.0038490295, 0.023803711, 0.01675415, -0.0065612793]}, "B004Q068YC": {"id": "B004Q068YC", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n4 Stainless steel burners\n48,800 BTU-per-hour input\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n", "metadata": {"Name": "Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n4 Stainless steel burners\n48,800 BTU-per-hour input\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0051841736, 0.005256653, -0.029388428, -0.002462387, -0.017959595, -0.017684937, -0.0155181885, -0.0066604614, -0.00793457, 0.006942749, -0.018692017, 0.021026611, -0.0029392242, -0.034698486, 0.035491943, -0.0074653625, 0.020492554, 0.014694214, 0.016143799, -0.015045166, 0.024719238, -0.0009202957, -0.023223877, 0.05419922, 0.037231445, 0.00056028366, -0.035247803, 0.007785797, 0.0131073, 0.0068206787, 0.02696228, -0.01184082, 0.022155762, 0.03643799, -0.020858765, -0.00016856194, -0.01109314, 0.013137817, -0.006565094, 0.015029907, 0.013771057, 0.004802704, -0.03375244, 0.020370483, -0.027420044, -0.05883789, 0.022125244, -0.027618408, 0.016220093, 0.0096588135, -0.0018110275, 0.025726318, 0.0074043274, -0.027435303, -0.022155762, -0.018676758, 0.015022278, -0.005821228, 0.008705139, -0.0057640076, 0.00073719025, 0.029388428, 0.017593384, -0.0009422302, -0.020355225, 0.0010232925, 0.10479736, -0.015319824, -0.037017822, -0.061553955, 0.03302002, 0.024902344, -0.018539429, 0.005428314, -0.01247406, -0.012924194, 0.013587952, -0.02532959, -0.0020008087, 0.0435791, -0.017547607, 0.03805542, 0.041229248, -0.026412964, -0.021316528, -0.019439697, -0.036376953, 0.0019664764, -0.033050537, 0.0077400208, -0.020599365, -0.013999939, -0.05807495, 0.061828613, 0.0069351196, 0.004737854, -0.02684021, -0.036071777, 0.0017461777, 0.01473999, -0.002506256, -0.0158844, 0.01828003, 0.0027542114, -0.0013628006, 0.09777832, 0.001750946, 0.09399414, 0.029006958, -0.014587402, 0.026916504, -0.04586792, -0.011260986, -0.036590576, -0.045898438, 0.044006348, 0.008872986, -0.03591919, 0.007835388, -0.01322937, -0.04949951, -0.022644043, 0.013381958, 0.010696411, 0.051605225, 0.04800415, 0.011390686, 0.0020332336, -0.054260254, 0.032562256, -0.016296387, -0.0010919571, 0.053253174, 0.05657959, 0.005180359, -0.015342712, 0.010002136, -0.019073486, 0.011940002, -0.005558014, -0.007171631, -0.022521973, 0.006164551, 0.0015449524, -0.009635925, 0.009170532, 0.0040130615, 0.018447876, 0.00365448, -0.04815674, 0.01965332, -0.028747559, 0.03277588, 0.0070343018, -0.04208374, -0.0116119385, -0.015792847, -0.020095825, -0.01739502, -0.028213501, -0.022567749, -0.038116455, -0.014022827, 0.008148193, -0.02709961, 0.06500244, 0.04650879, 0.014945984, 0.027053833, 0.056365967, 0.009437561, -0.061309814, 0.007820129, 0.028045654, -0.016967773, 0.03111267, -0.020141602, 0.019042969, 0.050201416, -0.049468994, -0.0385437, -0.03616333, 0.06970215, -0.019302368, -0.006996155, -0.008491516, 0.018005371, -0.012313843, 0.002960205, 0.01184082, 0.04031372, 0.021972656, 0.0039138794, 0.00021231174, 0.024505615, -0.009391785, -0.07067871, -0.013000488, -0.025146484, 0.0057258606, 0.008270264, 0.03515625, -0.023345947, -0.0065574646, -0.006565094, -0.020721436, 0.022018433, 0.02178955, 0.025497437, 0.013885498, -0.019973755, -0.0026054382, 0.0513916, -0.10095215, -0.026824951, 0.05331421, -0.007835388, 0.025741577, 0.024230957, 0.03173828, 0.031555176, 0.030441284, 0.022079468, -0.005130768, 0.0178833, 0.04034424, -0.036132812, 0.020004272, 0.026229858, 0.011444092, 0.022216797, 0.0024871826, 0.087646484, 0.075927734, -0.010971069, 0.05001831, 0.06414795, 0.084472656, -0.047180176, -0.031829834, 0.012626648, -0.07318115, -0.0368042, 0.014083862, -0.007221222, 0.033996582, 0.008262634, 0.0085372925, -0.018920898, 0.007926941, 0.03463745, -0.0018835068, 0.026565552, 0.009101868, -0.014671326, 0.03149414, -0.005809784, -0.013313293, 0.004016876, 0.033203125, -0.0059051514, 0.046447754, 0.010986328, 0.015586853, 0.043518066, -0.0031051636, 0.02116394, 0.0014705658, -0.04837036, 0.033203125, 0.031799316, -0.014953613, -0.008377075, 0.0055122375, -0.0146484375, -0.04812622, -0.018615723, 0.024963379, -0.0034160614, -0.028427124, 0.009979248, 0.0056495667, 0.033477783, -0.011619568, 0.02809143, 0.021270752, 0.022216797, -0.024490356, -0.0033245087, -0.041290283, 0.005962372, -0.025100708, -0.045166016, 0.03616333, -0.027755737, -0.047607422, 0.034057617, 0.014556885, 0.0051612854, -0.02746582, 0.015991211, 0.028533936, -0.047027588, 0.0115356445, 0.0032176971, -0.026550293, 0.0047798157, 0.039886475, 0.005706787, -0.023757935, -0.015052795, 0.014968872, 0.026657104, -0.030197144, 0.040008545, 0.0138549805, -0.0116119385, 0.028045654, 0.01373291, 0.025405884, -0.007320404, -0.0016374588, -0.048675537, -0.03555298, 0.007484436, 0.029296875, -0.0680542, -0.015342712, 0.027069092, -0.023757935, -0.057403564, -0.04763794, -0.053833008, -0.0129776, -0.014183044, 0.004589081, 0.010643005, 0.008773804, -0.009628296, -0.011047363, 0.027908325, -0.038604736, -0.003358841, -0.0076026917, -0.02885437, -0.0037593842, 4.5478344e-05, 0.003736496, 0.024719238, 0.010765076, -0.017456055, -0.011268616, -0.011199951, -0.04031372, -0.009529114, 0.0054893494, 0.006046295, -0.035614014, -2.7418137e-05, -0.06640625, -0.015197754, 0.0072250366, -0.030426025, -0.019210815, 0.0128479, -0.011772156, -0.022094727, -0.006099701, -0.021820068, 0.030838013, 0.05105591, 0.013366699, -0.038330078, -0.0491333, -0.07336426, -0.03225708, 0.034423828, -0.021606445, -0.042419434, 0.0072288513, -0.0074691772, -0.007183075, 0.009231567, -0.005329132, 0.04714966, 0.012542725, 0.042175293, 0.03173828, 0.020309448, -0.01550293, -0.016677856, -0.006668091, -0.027145386, -0.038146973, 0.043304443, 0.011512756, -0.00036287308, 0.039276123, -0.02696228, -0.019256592, -0.044799805, -0.0046691895, -0.009010315, -0.034210205, 0.0034599304, -0.06695557, -0.03656006, -0.042388916, 0.011993408, 0.065979004, -0.024429321, -0.028335571, -0.021606445, -0.019302368, -0.0026283264, 0.035858154, -0.00869751, -0.011108398, 0.006668091, -0.011260986, 0.0019683838, 0.00894928, 0.009925842, 0.031982422, -0.05706787, 0.039245605, -0.030700684, 0.030227661, -0.020553589, 0.055877686, 0.005290985, 0.0084991455, -0.022262573, -0.0069847107, 0.020736694, 0.06982422, 0.0049438477, 0.010169983, 0.008590698, -0.010925293, -0.032958984, -0.012420654, 0.019592285, 0.062927246, -0.0069007874, 0.0087890625, -0.026473999, -0.04876709, 0.01713562, -0.071777344, 0.021911621, -0.006416321, 0.06878662, 0.018417358, 0.0022010803, 0.08441162, 0.036865234, 0.03289795, 0.011329651, -0.0018949509, -0.011512756, -0.015838623, 0.006793976, -0.0075035095, 0.037322998, -0.046905518, 0.0058135986, 0.017227173, 0.003932953, 0.003578186, 0.030258179, 0.01979065, 0.043304443, -0.0033512115, -0.031280518, -0.022064209, 0.04550171, -0.004169464, 0.0017261505, -0.047912598, -0.029144287, -0.015777588, -0.109436035, 0.105163574, 0.09259033, -0.040863037, 0.07489014, 0.07470703, -0.004463196, 0.02708435, 0.0027179718, -0.017288208, 0.011711121, 0.010131836, -0.03164673, 0.021118164, 0.0067863464, -0.044128418, 0.004470825, -0.010383606, -0.041107178, 0.0069007874, 0.0022678375, -0.03036499, -0.016296387, 0.0413208, -0.007949829, -0.013412476, -0.0019550323, -0.02583313, -0.03050232, -0.045654297, 0.008018494, 0.016983032, -0.017440796, -0.01675415, 0.016677856, 0.041046143, -0.038269043, -0.0128479, -0.00434494, -0.008972168, -0.037963867, 0.041137695, 0.020721436, 0.033233643, -0.09899902, 0.02268982, -0.0513916, 0.017486572, 0.016860962, 0.0368042, 0.03137207, -0.02571106, 0.008415222, -0.018997192, -4.172325e-07, -0.020050049, -0.06121826, -0.029159546, 0.0014762878, 0.0028514862, 0.002380371, -0.016555786, 0.015548706, -0.033172607, 0.0074386597, 0.00029444695, -0.03173828, -0.020843506, 0.009559631, 0.023864746, -0.05508423, -0.0021400452, 0.013496399, -0.037322998, -0.04852295, -0.0006055832, -0.0395813, 0.04638672, 0.020736694, 0.025146484, -0.055603027, -0.0040740967, -0.031707764, -0.018844604, 0.06112671, 0.010391235, 0.019104004, -0.01953125, 0.006652832, -0.001083374, 0.10455322, 0.004299164, 0.025161743, -0.03982544, -0.0069389343, 0.008430481, 0.041259766, 0.043029785, -0.027877808, 0.013961792, -0.02178955, -0.009788513, -0.056427002, 0.0053596497, 0.04763794, -0.034088135, -0.018249512, 0.0065689087, 0.046295166, -0.015411377, 0.024536133, 0.002571106, 0.008056641, -0.012191772, 0.015945435, -0.07489014, -0.013999939, 0.004234314, -0.023727417, 0.03793335, 0.0014400482, -0.00945282, -0.027633667, 0.043121338, 0.016983032, -0.04058838, -0.0071792603, 0.037353516, 0.013008118, -0.0079574585, -0.0088272095, -0.0039253235, 0.009559631, 0.0052986145, -0.06149292, 0.10021973, 0.06970215, -0.004058838, 0.013420105, 0.039916992, -0.012252808, -0.052490234, 0.010055542, -0.0029315948, -0.041534424, -0.038482666, -0.023605347, 0.022262573, -0.02180481, 0.004878998, -0.00033044815, 0.050628662, 0.055999756, -0.07928467, 0.0022201538, 0.010292053, 0.048675537, 0.028839111, -0.01725769, 0.019119263, -0.012741089, 0.0004310608, 0.021697998, -0.03302002, -0.03149414, -0.015716553, -0.03945923, -0.0022888184, 0.0087509155, 0.01209259, -0.012207031, -0.012687683, -0.0020122528, -0.011779785, -0.033081055, 0.012535095, 0.030807495, -0.015586853, -0.028259277, 0.06109619, -0.015129089, 0.0072746277, 0.02998352, -0.016983032, -0.01398468, 0.033355713, -0.042114258, 0.057037354, 0.025146484, -0.06124878, 0.04147339, -0.016738892, -0.02658081, -0.02394104, 0.11053467, -0.008644104, 0.050201416, -0.07324219, 0.014671326, 0.056671143, 0.023117065, 0.03527832, -0.064697266, 0.030075073, -0.039611816, -0.006832123, 0.00070667267, 0.036499023, -0.0073432922, 0.020614624, 0.004047394, 0.001329422, -0.034973145, -0.005622864, -0.009552002, -0.012229919, 0.024291992, -0.04776001, -0.012306213, 0.0032787323, -0.0068359375, -0.026824951, 0.022338867, -0.0012187958, -0.0073242188, 0.009353638, 0.022598267, -0.014717102, 0.04208374, 0.052520752, 0.013702393, -0.0011663437, 0.004119873, -0.036499023, -0.032806396, -0.0107421875, -0.041931152, 0.026763916, -0.02659607, 0.0029067993, 0.046173096, -0.005695343, 0.018829346, 0.03414917, -0.03704834, -0.0053749084, 0.016220093, 0.04144287, -0.047943115, -0.047851562, 0.07763672, -0.056365967, -0.045715332, -0.04977417, 0.036468506, -0.0418396, -0.04373169, 0.038909912, 0.042297363, 0.001373291, 0.018615723, -0.0134887695, -0.06347656, 0.03515625, 0.020401001, -0.08428955, -0.031585693, -0.035980225, -0.013206482, 0.011795044, -0.014411926, -0.0011110306, 0.035064697, 0.01864624, -0.0047912598, -0.032073975, -0.020370483, -0.0033435822, -0.041107178, 0.010719299, -0.0051879883, -0.0042419434, -0.006122589, -0.0128479, -0.04144287, 0.0051956177, 0.07885742, 0.036712646, 0.0009198189, -0.011405945, 0.030731201, 0.06549072, -0.05596924, 0.066589355, -0.027557373, -0.0070495605, 0.02696228, 0.09674072, 0.016662598, 0.06866455, -0.072021484, -0.058624268, -0.021560669, 0.034088135, 0.038146973, 0.032958984, -0.008384705, 0.016143799, 0.013923645, 0.0028896332, 0.011749268, 0.0044136047, -0.0024662018, -0.015052795, -0.01751709, 0.0025787354, 0.016143799, -0.029373169, -0.058410645, -0.054138184, -0.0025939941, 0.03277588, 0.009666443, 0.050720215, -0.04385376, 0.039611816, 0.0048217773, 0.018676758, 0.0052719116, 0.013053894, -0.003572464, 0.015388489, -0.009208679, 0.03515625, 0.03112793, 0.008354187, -0.0020008087, 0.03668213, -0.029510498, 0.0069732666, 0.011543274, 0.050750732, -0.0043754578, -0.0047950745, 0.0076942444, -0.023406982, -0.0042648315, -0.048614502, -0.0050621033, -0.03475952, -0.0680542, -0.017608643, -0.021713257, -0.0027999878, 0.0011100769, 0.0007286072, 0.03543091, 0.012023926, 0.020599365, 0.01889038, -0.0048217773, 0.0093688965, 0.01763916, 0.010978699, 0.017700195, -0.024932861, -0.043548584, 0.026382446, 0.032958984, -0.0073165894, 0.04638672, -0.03768921, 0.013549805, -0.04537964, 0.040222168, -0.029220581, -0.0028038025, -0.0049057007, -0.026397705, 0.015472412, -0.012634277, 0.020690918, 0.031158447, 0.0004863739, -0.01965332, 0.027938843, -0.033966064, 0.01209259, 0.025360107, 0.030014038, -0.028839111, -0.0054779053, -0.0046958923, 0.00051927567, 0.01625061, 0.049560547, 0.0041503906, 0.009025574, 0.005962372, 0.01739502, 0.064453125, -0.0038375854, 0.030456543, -0.031143188, 0.007873535, 0.038848877, 0.061279297, -0.002571106, -0.016311646, -0.020477295, -0.01727295, 0.0021858215, -0.006580353, 0.02381897, 0.0074310303, -0.0031318665, -0.023986816, 0.0038070679, -0.00819397, -0.023773193, 0.025741577, -0.03652954, -0.02015686, -0.002204895, -0.016998291, -0.040527344, 0.0077285767, -0.060760498, -0.018325806, -0.009780884, -0.017547607, -0.018951416, 0.01902771, 0.045288086, -0.006816864, -0.021316528, 0.026992798, -0.020095825, -0.024917603, 0.030014038, -0.029067993, -0.018676758, -0.006542206, 0.022598267, -0.06915283, -0.03970337, -0.010650635, 0.016983032, 0.023651123, -0.015640259, -0.033416748, 0.07342529, -0.0040016174, -0.006969452, -0.01285553, -0.0020809174, -0.034332275, 0.01966858, 0.0013780594, -0.017730713, 0.008125305, 0.03314209, -0.0011768341, -0.017959595, 0.041229248, -0.00484848, -0.060455322, -0.007499695, -0.019454956, -0.040985107, -0.029067993, -0.017089844, 0.023742676, 0.016281128, -0.03564453, 0.005607605, 0.023086548, 0.0435791, 0.039398193, 0.036834717, 0.017913818, -0.037506104, -0.04458618, -0.059906006, -0.008483887, 0.051879883, 0.006626129, -0.0067214966, -0.01751709, 0.008926392, 0.0017700195, -0.023132324, 0.010429382, -0.013763428, -0.0034561157, 0.021896362, -0.05505371, -0.008010864, -0.0013208389, -0.013587952, 0.0016956329, -0.0031013489, -0.0076675415, 0.026107788, -0.03756714, -0.03845215, -0.0137786865, 0.01979065, -0.021591187, -0.016357422, -0.011390686, -0.024658203, 0.0068359375, 0.012939453, -0.0012741089, 0.022003174, 0.0008511543, -0.019378662, -0.014541626, 0.03262329, 0.004886627, 0.038757324, -0.049926758, 0.05102539, 0.0055999756, 0.051116943, -0.002861023, -0.09295654, -0.04611206, 0.03213501, 0.039367676, -0.01940918, 0.07531738, -0.05307007, 0.014541626, 0.0023784637, -0.020370483, -0.02571106, 0.017501831, 0.0234375, -0.029067993, 0.016342163]}, "B000EI759M": {"id": "B000EI759M", "original": "Brand: Texsport\nName: Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree\nDescription: Texsport Propane, Appliance Gas Hose 14229TEX\nFeatures: Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree\nSmooth fittings for easy bulk tank attachment\nNote: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY\n", "metadata": {"Name": "Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree", "Brand": "Texsport", "Description": "Texsport Propane, Appliance Gas Hose 14229TEX", "Features": "Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree\nSmooth fittings for easy bulk tank attachment\nNote: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.004234314, -0.035980225, -0.008796692, -0.021957397, -0.04925537, -0.002199173, -0.035003662, 0.019699097, -0.010559082, -0.015022278, 0.05404663, 0.019973755, -0.0463562, -0.059814453, 0.01953125, -0.01159668, 0.030014038, 0.0058174133, 0.0019931793, -0.028396606, 0.0027656555, -0.01763916, -0.0007829666, 0.112854004, -0.019332886, 0.043518066, 0.07385254, -0.0062217712, -0.005405426, -0.024368286, 0.007167816, 0.0064582825, 0.03540039, 0.0010175705, -0.028198242, -0.050994873, 0.0046806335, -0.017105103, -0.031677246, 0.00881958, -0.02142334, 0.021881104, 0.0039749146, 0.011131287, -0.03842163, -0.032073975, -0.025360107, -0.02960205, -0.019882202, 0.028396606, 0.0061454773, -0.008262634, -0.005607605, 0.024765015, 0.014129639, 0.007522583, 0.007041931, 0.025054932, -0.00038981438, -0.030670166, -0.00705719, 0.050598145, 0.010887146, 0.039733887, 0.004722595, -0.02027893, 0.06945801, 0.0016326904, -0.011009216, -0.021102905, 0.016983032, 0.021499634, 0.0051078796, 0.023544312, -0.0625, -0.031585693, 0.019378662, -0.03225708, 0.03302002, -0.0019950867, 0.060058594, 0.00031089783, 0.06890869, 0.033172607, -0.012870789, 0.030441284, -0.004234314, -0.023422241, 0.051849365, -0.030288696, 0.02407837, 0.020568848, 0.001543045, 0.028411865, -0.018753052, -0.046936035, -0.030914307, -0.083496094, 0.023071289, -0.009140015, 0.02772522, -0.04812622, 0.017486572, 0.015670776, 0.0056152344, 0.0435791, 0.01210022, 0.024414062, 0.02911377, 0.0052223206, -0.0032405853, 0.0005469322, 0.009597778, 0.043701172, -0.06213379, 0.0004079342, -0.02218628, -0.010437012, -0.032287598, 0.05279541, 0.0038986206, 0.012138367, 0.00894165, -0.024398804, -0.015151978, -0.02848816, -0.034576416, 0.014854431, 0.037719727, -0.01550293, -0.029541016, 0.040252686, 0.03894043, -0.0012569427, -0.0059280396, -0.006477356, 0.01890564, -0.016647339, -0.0032348633, -0.014671326, 0.02810669, 0.0059318542, 0.008392334, 0.02116394, -0.031158447, -0.010276794, 0.021469116, 0.022628784, -0.0059280396, 0.008293152, -0.023605347, 0.0065689087, 0.00034308434, 0.046966553, -0.015777588, 0.02267456, 0.042510986, -0.0076828003, -0.022445679, -0.050079346, -0.020202637, -0.038757324, 0.0034008026, -0.039794922, -0.06915283, 0.061828613, 2.8431416e-05, -0.0036525726, 0.016601562, 0.05783081, -0.007534027, 0.023147583, 0.010681152, 0.011108398, -0.01071167, -0.006538391, -0.07019043, 0.07562256, 0.06793213, -0.12988281, -0.062683105, -0.06878662, 0.11114502, -0.015182495, 0.013496399, -0.043640137, 0.03729248, -0.026062012, -0.010322571, 0.010665894, 0.034454346, 0.042053223, 0.008728027, -0.01474762, -0.033050537, 0.031829834, -0.036743164, 0.06762695, -0.029769897, -0.026550293, -0.023269653, -0.017349243, 0.023834229, 0.029754639, 0.08959961, -0.03363037, 0.027267456, -0.0055618286, 0.004886627, 0.024597168, 0.005844116, 0.023971558, -0.010383606, -0.08477783, -0.032348633, 0.017044067, -0.013397217, -0.028808594, 0.02909851, -0.026885986, 0.042297363, 0.032348633, 0.013938904, 0.0035896301, -0.0770874, -0.004863739, -0.03201294, 0.018234253, -0.059539795, -0.012451172, 0.07183838, 0.016860962, 0.038635254, 0.05847168, -0.009262085, 0.034576416, 0.08929443, 0.09716797, -0.020339966, -0.04336548, -0.00095129013, -0.016464233, -0.023208618, 0.048583984, -0.0035305023, -0.0024528503, 0.0028858185, 0.0075187683, -0.040161133, 0.03942871, 0.047210693, 0.037231445, -0.00023365021, 0.036102295, -0.04751587, 0.025024414, -0.015068054, 0.006298065, -0.018814087, 0.028182983, -0.018814087, 0.028381348, 0.031951904, -0.0069618225, 0.047210693, 0.039154053, 0.06317139, 0.06451416, -0.030029297, 0.025924683, 0.0052719116, 0.034973145, -0.014213562, -0.01574707, 0.012123108, -0.032196045, -0.04055786, 0.034088135, 0.0057640076, -0.022628784, -6.240606e-05, 0.008583069, 0.0029506683, -0.008232117, 0.010391235, 0.019927979, 0.01777649, -0.00066900253, 0.010505676, -0.03149414, 0.005039215, 0.011383057, -0.052001953, 0.058135986, 0.010574341, -0.03463745, 0.027877808, -0.00415802, 0.030410767, -0.025741577, -0.02027893, 0.04119873, -0.019256592, 0.0022583008, 0.011459351, -0.002796173, 0.022903442, 0.018539429, 0.007583618, 0.010910034, -0.046783447, 0.009529114, 0.033721924, 0.022918701, 0.03338623, 0.003452301, 0.023071289, 0.039276123, 0.008628845, -0.03918457, -0.0143585205, 0.019729614, 0.006626129, 0.0006299019, 0.021621704, -0.01121521, -0.0013380051, 0.004863739, -0.040802002, -0.017318726, -0.06439209, -0.046936035, -0.018585205, 0.07739258, -0.008132935, 0.020309448, 0.0054626465, 0.052612305, 0.006072998, -0.026031494, 0.011329651, -0.022766113, -0.024230957, -0.0068130493, -0.055786133, -0.014678955, 0.029571533, -0.007194519, 0.031799316, 0.013305664, -0.004322052, 0.007347107, -0.0049095154, -0.016906738, 0.02947998, -0.012313843, -0.017852783, -0.0025157928, 0.032409668, -0.040039062, -0.008598328, -0.007545471, -0.032073975, -0.0061035156, 0.035705566, -0.021392822, -0.021530151, -0.009475708, -0.009292603, -0.012374878, 0.025650024, -0.024917603, -0.049438477, -0.018417358, -0.012550354, 0.01247406, 0.0024547577, -0.042877197, 0.0047569275, -0.009880066, -0.0075035095, 0.02041626, 0.0074882507, 0.04837036, -0.009162903, 0.042907715, 0.064331055, 0.017700195, 0.020629883, -0.042114258, 0.011177063, 0.056274414, 0.016464233, 0.0051345825, -0.023529053, -0.034301758, 0.0031433105, -0.0006380081, -0.036102295, 0.007396698, -0.03189087, 0.012435913, -0.006893158, -0.00013649464, -0.0054779053, -0.02557373, -0.010986328, -0.043182373, 0.007045746, 0.03515625, -0.00051259995, -0.0019435883, -0.026657104, 0.02305603, -0.0038337708, -0.0067710876, 0.0070533752, 0.0037574768, -0.033203125, -0.0029182434, 0.0552063, -0.090026855, 0.022201538, 0.019683838, -0.028671265, -0.005455017, -0.013031006, 0.030044556, -0.01953125, 0.026245117, -0.012619019, -0.0074691772, -0.0019721985, -0.0038585663, -0.003698349, 0.068603516, -0.006706238, 0.018295288, -0.010688782, -0.012702942, 0.026611328, 0.005428314, -0.014915466, 0.035614014, -0.019515991, 0.001578331, -0.013198853, 0.022109985, 0.03237915, -0.012001038, 0.03427124, -0.0206604, 0.06274414, 0.008934021, -0.021972656, 0.07714844, 0.013648987, 0.018203735, 0.0037078857, -0.02645874, -0.06427002, -0.040039062, 0.049926758, -0.033569336, 0.020751953, -0.051605225, 0.022521973, 0.024887085, 0.033233643, -0.016830444, 0.014060974, 0.016448975, -0.0020542145, -0.019332886, 0.008155823, -0.0026474, 0.0013895035, -0.0047721863, 0.04006958, 0.013175964, -0.033996582, 0.009643555, -0.03866577, 0.04525757, 0.026672363, 0.0038013458, 0.0028419495, -0.00472641, -0.004337311, 0.043670654, -0.013542175, 0.0056152344, -0.0042037964, 0.062408447, -0.021820068, 0.040771484, 0.008255005, 0.018447876, -0.0068206787, 0.00040221214, -0.04626465, 0.0045547485, 0.007522583, -0.0021800995, -0.019897461, 0.01727295, -0.0028495789, -0.021453857, 0.00907135, -0.025177002, -0.027954102, -0.044128418, -0.023162842, 0.003583908, -0.035858154, -0.012199402, -0.016403198, -0.03842163, -0.024032593, 0.019882202, -0.0036411285, -0.0068969727, 0.011207581, 0.0058250427, 0.048797607, -0.0068893433, -0.009391785, 0.012519836, -0.04119873, 0.013916016, 0.006626129, 0.035186768, -0.0015869141, -0.024902344, 0.0184021, -0.018096924, -0.043395996, 0.020309448, 0.009765625, -0.028213501, -0.033966064, -0.0184021, 0.024215698, 0.04107666, -0.022094727, -0.022277832, -0.0037288666, 0.01499939, 0.014450073, -0.04949951, 0.021530151, 0.031204224, -0.0362854, -0.024887085, -0.055389404, 0.0670166, -0.018875122, 0.027359009, -0.0137786865, -0.010688782, -0.0039787292, -0.0016622543, -0.03375244, 0.014167786, -0.087768555, 0.0006766319, 0.0473938, 0.03488159, -0.034973145, -0.0050621033, 0.0074882507, 0.020309448, 0.066589355, -0.0057640076, -0.0121154785, -0.04248047, -0.013938904, 0.012969971, 0.014633179, 0.05178833, 0.030456543, 0.016479492, -0.062164307, -0.0038146973, -0.06573486, 0.027130127, 0.040222168, -0.011360168, -0.05014038, -0.031051636, 0.01965332, 0.025802612, 0.0001924038, -0.012565613, 0.016143799, 0.03744507, 0.016204834, -0.057891846, -0.027328491, 0.013069153, -0.019592285, 0.012535095, 0.0037059784, -0.011100769, 0.028717041, 0.011436462, -0.004714966, 0.022079468, 0.003818512, -0.02243042, -0.02456665, 0.01889038, -0.02796936, 0.017486572, -0.0491333, -0.0073280334, -0.013702393, 0.036468506, 0.025970459, -0.055999756, 0.01889038, 0.02267456, -0.011367798, 0.030883789, -0.021728516, 0.012451172, 0.01928711, 0.010879517, -0.032714844, -0.016525269, -0.000538826, -0.02104187, -0.057128906, -0.021118164, -0.0030727386, 0.012763977, -0.024459839, -0.020126343, 9.995699e-05, -0.043518066, 0.020721436, 0.012390137, -0.013580322, -0.04537964, 0.03326416, -0.01473999, -0.01713562, 0.010101318, -0.02178955, -0.013420105, 0.021743774, 0.011192322, 0.0034561157, 0.012512207, 0.004055023, 0.0079422, -0.026489258, -0.006111145, -0.0028324127, -0.012252808, -0.018997192, 0.02960205, -0.026794434, 0.036071777, -0.01448822, -0.00856781, 0.035064697, 0.016830444, -0.013717651, 0.003408432, 0.011405945, -0.08276367, 0.01737976, 0.010818481, 0.0043563843, -0.051849365, 0.07525635, -0.008514404, -0.017974854, -0.053497314, 0.01399231, -0.0016298294, -0.0054893494, -0.013824463, 0.002216339, 0.052703857, -0.048706055, -0.025146484, 0.022033691, -0.00072956085, -0.023712158, -0.025466919, 0.007820129, -0.043426514, 0.012420654, 0.010757446, -0.02357483, -0.00012516975, 0.0021972656, -0.027267456, 0.02748108, 0.0013313293, -0.038909912, -0.022842407, -0.03012085, 0.020339966, -0.003616333, 0.030059814, 0.0061798096, -0.013038635, 0.030227661, -0.0018577576, 0.0052223206, 0.010772705, -0.034179688, -0.022521973, -0.0042152405, 7.2300434e-05, -0.014175415, 0.036987305, -0.021102905, -0.023635864, -0.00043439865, 0.02027893, -0.007511139, 0.04751587, -0.07531738, 0.03173828, -0.01600647, -0.00081825256, -0.011436462, 0.039398193, 0.05065918, -0.042938232, -0.020263672, -0.07348633, 0.03161621, -0.019897461, -0.025299072, 0.0345459, 0.034454346, 0.003479004, 0.02394104, -0.010551453, -0.007423401, 0.016326904, 0.009857178, 0.01398468, -0.060424805, -0.017333984, -0.018447876, -0.006717682, 0.017974854, -0.035705566, 0.03692627, -0.0413208, -0.0592041, -0.023834229, 0.019241333, 0.01713562, -0.016189575, -0.006816864, -0.035858154, 0.00579834, -0.045715332, -0.014541626, -0.05239868, -0.054016113, -0.0018253326, 0.029144287, 0.064208984, 0.022781372, 0.021896362, 0.0115737915, -0.0803833, 0.015258789, 0.017654419, -0.052764893, -0.03427124, 0.036712646, 0.04623413, 0.026748657, -0.02748108, -0.015159607, -0.032928467, 0.03933716, 0.057891846, 0.032684326, -0.025131226, 0.0090789795, 0.039916992, 0.02432251, -0.022979736, 0.01651001, 0.027130127, 0.00019574165, -0.056121826, -0.026992798, -0.030807495, -0.050933838, 0.016464233, -0.03982544, 0.041870117, 0.04446411, -0.0069732666, 0.030166626, -0.047698975, 0.094177246, -0.040893555, 0.04486084, -0.00063610077, -0.023132324, 0.03100586, -0.020965576, 0.043121338, -0.02861023, -0.036071777, -0.04888916, 0.0058670044, 0.032348633, 0.037902832, 0.048858643, 0.036010742, -0.017181396, -0.028182983, 0.019226074, -0.008773804, -0.029159546, -0.013053894, 0.004398346, 0.022079468, -0.00014770031, -0.011367798, -0.038146973, -0.017196655, 0.07128906, -0.0045166016, 0.038238525, -0.026473999, 0.032196045, -0.021972656, -0.01914978, 0.02684021, -0.035186768, 0.037719727, 0.017044067, -0.021697998, -0.020141602, -0.05819702, 0.0067329407, 0.026672363, -0.00061511993, 0.023605347, -0.02961731, 0.025222778, -0.023376465, 0.028869629, -0.023468018, -0.06604004, -0.028045654, 0.024139404, -0.02545166, 0.008216858, 0.001452446, -0.003780365, 0.015457153, -0.022247314, 0.022766113, -0.023712158, 0.021514893, 0.008872986, 0.0005469322, -0.06970215, 0.009666443, -0.0032100677, -0.011711121, 0.016403198, 0.07159424, 0.01209259, 0.019302368, -0.019927979, 0.017852783, 0.054351807, 0.055419922, 0.022567749, -0.05267334, -0.018737793, -0.023712158, 0.0008869171, -0.012718201, -0.009895325, 0.0018796921, 0.0132369995, 0.0028495789, 0.02796936, -0.007419586, 0.009010315, 0.027435303, -0.028564453, 0.014305115, -0.003293991, -0.0546875, -0.0021820068, 0.012771606, 0.01473999, -0.015609741, -0.029190063, -0.030776978, -0.030075073, -0.020980835, 0.04284668, -4.184246e-05, 0.0256958, 0.014732361, -0.03387451, 0.0072402954, 0.020645142, 0.048828125, 0.051757812, 0.07910156, -0.030044556, 0.042236328, -0.01687622, -0.009391785, -0.0012197495, 0.0052108765, -0.02734375, -0.003332138, -0.03677368, 0.026107788, 0.013038635, -0.013473511, 0.0012998581, 0.05996704, 0.00894928, -0.0045928955, -0.034362793, -0.012786865, -0.0069122314, 0.03439331, -0.011138916, -0.00061893463, -0.041168213, 0.031311035, 0.0018148422, 0.085876465, -0.006412506, 0.028274536, -0.013000488, 0.006149292, -0.025360107, 0.007724762, -0.019119263, 0.0009813309, 0.022918701, 0.01197052, -0.03363037, 0.043914795, 0.021270752, 0.039276123, 0.04119873, -0.00566864, 0.05050659, -0.02645874, -0.09851074, -0.05343628, -0.042144775, 0.030059814, 0.008773804, -0.06689453, 0.011154175, 0.0040626526, -0.019821167, -0.00017118454, 0.028198242, 0.011138916, -0.0050735474, -0.01234436, 0.06124878, -0.024749756, -0.0041503906, 0.034057617, -0.033050537, -0.052520752, 0.04473877, -0.02684021, -0.0028381348, -0.018035889, -0.050048828, -0.002960205, -0.034118652, -0.082214355, -0.04425049, -0.048950195, 0.038757324, 0.029327393, 0.0054969788, 0.017791748, 0.027954102, 0.004447937, -0.01739502, 0.029281616, 0.0068740845, 0.044036865, -0.0062561035, 0.07501221, 0.0098724365, 0.06628418, -0.01524353, -0.06518555, -0.023880005, 0.022567749, 0.011383057, -0.0107040405, 0.042877197, -0.022766113, -0.004585266, 0.024841309, -0.060699463, -0.034973145, 0.009857178, 0.10845947, -0.0016050339, 0.005256653]}, "B00BWAPOB2": {"id": "B00BWAPOB2", "original": "Brand: Formosa Covers\nName: Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75\" Long\nDescription: Full weather protection for BBQ Grill up to 75\" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75\" Lx26\"Dx48\"H\nFeatures: WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won't act on the metal and tarnish it.\nOUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come.\nMADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking.\nUNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High\nSERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.\n", "metadata": {"Name": "Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75\" Long", "Brand": "Formosa Covers", "Description": "Full weather protection for BBQ Grill up to 75\" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75\" Lx26\"Dx48\"H", "Features": "WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won't act on the metal and tarnish it.\nOUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come.\nMADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking.\nUNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High\nSERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0039787292, -0.0023021698, -0.04537964, -0.043518066, -0.016830444, -0.00064992905, -0.029846191, 0.03591919, -0.044403076, -0.0074424744, -0.053222656, 0.017852783, -0.032165527, -0.01977539, 0.035827637, -0.06036377, 0.02116394, 0.011154175, 0.031097412, -0.0096206665, 0.008468628, 0.0040130615, 0.023391724, 0.034362793, 0.016616821, 0.031051636, 0.019241333, -0.022598267, 0.023086548, -0.0030822754, 0.019989014, -0.02848816, 0.03967285, 0.005832672, -0.040252686, -0.03010559, -0.022827148, -0.005027771, -0.04006958, 0.03475952, 0.0132751465, -0.01763916, 0.006904602, 0.058563232, -0.0020103455, -0.041900635, 0.0033340454, -0.079833984, 0.0045700073, -0.0061035156, 0.029876709, 0.019805908, 0.035186768, 0.0149383545, -0.007820129, 0.02192688, -0.035614014, 0.021057129, 0.032714844, -0.013259888, -0.00699234, -0.019363403, 0.026367188, 0.009231567, -0.034454346, -0.013969421, 0.029434204, -0.01158905, -0.038116455, -0.030578613, 0.042266846, 0.002817154, 0.03643799, -0.010719299, -0.051452637, -0.01914978, -0.010177612, -0.020965576, 0.044525146, -0.03213501, -0.02166748, -0.006679535, 0.046051025, -0.052368164, 0.019180298, -0.018325806, -0.021377563, 0.007003784, 0.020523071, -0.00868988, 0.011657715, 0.022033691, 0.002002716, 0.03111267, -0.009407043, -0.01108551, 0.015045166, 0.0018167496, 0.009124756, 0.0052452087, 0.019561768, -0.052246094, 0.052001953, -0.022003174, -0.030914307, 0.07495117, 0.010002136, 0.04559326, 0.0010194778, 0.0099105835, 0.019561768, -0.032165527, 0.0007042885, -0.025100708, -0.0335083, 0.020248413, 0.01789856, -0.014793396, -0.0010957718, -0.018005371, -0.05859375, -0.027297974, -0.023956299, 0.090148926, 0.015525818, 0.04547119, 0.0440979, 0.015419006, -0.031921387, 0.028747559, -0.021591187, -0.002840042, 0.034118652, 0.020370483, 0.0020771027, -0.032196045, 0.039733887, -0.0079193115, -0.014427185, 0.024520874, -0.025985718, -0.0077056885, 0.04171753, -0.044769287, -0.06329346, 0.013938904, 0.020233154, 0.012611389, -0.02986145, -0.06542969, -0.029968262, 0.0039405823, 0.05618286, 0.007762909, -0.08001709, 0.002374649, 0.012413025, -0.017440796, -0.07122803, -0.07183838, -0.031799316, -0.010887146, 0.0074043274, -0.031707764, -0.04586792, 0.02684021, 0.017959595, -0.0068588257, 0.0070877075, 0.056793213, -0.0154800415, -0.007774353, -0.06518555, -0.002954483, -0.017913818, -0.0033245087, -0.0039711, 0.06414795, 0.06652832, -0.119384766, -0.109802246, -0.079956055, 0.1484375, -0.088012695, 0.01852417, -0.052947998, 0.009819031, -0.013931274, 0.021606445, 0.024353027, -0.026611328, -0.0099487305, -0.032073975, -0.0045051575, -0.0340271, 0.036987305, -0.016418457, 0.052459717, -0.02418518, -0.016921997, -0.009155273, -0.017501831, 0.033599854, -0.027557373, 0.048431396, -0.034973145, 0.031219482, 0.016540527, 0.0002039671, 0.04574585, 0.0047569275, 0.029373169, -0.010787964, -0.059173584, -0.0017499924, 0.036499023, -0.009674072, 0.00248909, 0.002658844, 0.013023376, 0.039031982, -0.021972656, 0.034973145, 0.02911377, -0.011749268, 0.00844574, -0.017837524, 0.014030457, 0.013923645, 0.035858154, 0.016616821, -0.016296387, 0.07336426, 0.008102417, -0.030227661, 0.047821045, 0.048583984, 0.0029621124, -0.051574707, 0.022354126, 0.008575439, 0.012313843, -0.026657104, 0.025985718, 0.026306152, -0.014373779, -0.008934021, 0.0040397644, -0.029052734, 0.01789856, 0.03768921, 0.02293396, 0.007736206, -0.05001831, -0.02418518, 0.047088623, -0.042541504, -0.004573822, -0.004776001, -0.00045752525, 0.001996994, 0.015655518, 0.028701782, -0.009918213, 0.033935547, 0.003435135, 0.039733887, 0.023910522, -0.008522034, -0.00020456314, 0.007171631, -0.0048561096, -0.0050354004, 0.03262329, 0.004207611, 0.013771057, -0.006965637, -0.0022392273, -0.034942627, 0.006942749, 0.022491455, 0.042816162, -0.00044822693, -0.013374329, 0.022964478, -0.014038086, -0.009750366, -0.0010118484, -0.009735107, -0.03842163, -0.0057373047, 0.02532959, -0.023208618, 0.04196167, -0.002216339, -0.02128601, -0.008682251, 0.011444092, 0.0057525635, -0.012260437, -0.009811401, 0.026489258, -0.031921387, 0.0048179626, -0.0037784576, 0.019226074, 0.020874023, -0.016983032, -0.0020637512, -0.019805908, 0.012649536, 0.021759033, 0.01474762, -0.050933838, 0.08795166, 0.051361084, 0.041870117, 0.049682617, 0.08062744, 0.07904053, -0.020339966, 0.003660202, -0.052581787, -0.037384033, -0.00030303, 0.024627686, -0.07122803, 0.00028467178, -0.06964111, -0.020874023, 0.02558899, -0.048217773, 0.014099121, 0.014251709, 0.021224976, -0.011512756, -0.0057792664, 0.0012111664, 0.005908966, -0.015579224, 0.0075912476, -0.013580322, 0.0051078796, -0.015144348, -0.046173096, -0.028549194, 0.019638062, -0.0010519028, -0.045898438, -0.013153076, 0.04159546, -0.015388489, -9.5784664e-05, -0.05130005, -0.03390503, 0.06439209, -0.004886627, -0.1005249, -0.012039185, -0.098083496, -0.018112183, -0.03152466, -0.05770874, 0.018341064, 0.052368164, -0.012207031, -0.032928467, -0.0047912598, 0.05130005, 0.012390137, 0.053466797, 0.020019531, -0.05203247, -0.025756836, -0.013313293, -0.07055664, -0.0042533875, -0.06762695, 0.023651123, -0.015434265, -0.036132812, 0.009353638, -0.031921387, 0.03756714, -0.008102417, 0.020965576, 0.008285522, 0.04058838, -0.02230835, -0.016464233, 0.0005440712, 0.050842285, 0.0056266785, -0.03100586, -0.0023937225, 0.0149002075, -0.016815186, -0.005214691, 0.010131836, -0.023971558, -0.107910156, 0.003458023, -0.0026016235, -0.022567749, 0.008071899, -0.046325684, -0.023605347, -0.062072754, 0.023773193, 0.032409668, -0.026473999, 0.03427124, -0.017211914, 0.009552002, -0.010139465, 0.018096924, 0.030654907, -0.013450623, 0.01828003, -0.019058228, 0.008514404, -0.020324707, -0.008110046, -0.00068569183, -0.008308411, 0.03277588, -0.024246216, 0.0038166046, -0.017242432, -0.016525269, -0.030029297, -0.015235901, -0.024734497, -0.021652222, -0.018478394, 0.00869751, 0.02520752, 0.0020942688, 0.044769287, -0.02130127, -0.05517578, 0.009216309, 0.024612427, 0.00077676773, 0.02180481, -0.024108887, 0.022354126, -0.03866577, -0.022491455, 0.0013637543, -0.011161804, 0.034454346, 0.020202637, 0.018051147, -0.012145996, 0.010429382, 0.004875183, 0.04284668, -0.019989014, 0.012550354, 0.00058698654, -0.04547119, 0.089416504, -0.008972168, -0.028335571, -0.0051651, 0.03744507, -0.01612854, -0.05227661, 0.018173218, -0.054626465, 0.032226562, -0.020355225, -0.007217407, 0.008384705, 0.0033721924, -0.013824463, 0.021453857, -0.009529114, 0.012168884, -0.053833008, -0.0004093647, -0.060546875, 0.064697266, 0.048217773, -0.0103302, 0.06298828, 0.046691895, -0.014266968, 0.03857422, 0.01939392, -0.002752304, 0.017837524, 0.01626587, -0.026473999, 0.00289917, 0.019073486, -0.0043754578, -0.0135269165, -0.02279663, -0.059814453, 0.008361816, -0.0496521, 0.016479492, -0.023834229, 0.013412476, 0.027053833, -0.0440979, -0.002916336, -0.029815674, 0.0038452148, -0.0463562, 0.032592773, 0.03604126, -0.0385437, -0.0362854, 0.0029678345, 0.021347046, -0.051605225, -0.0071411133, -0.017608643, -0.06555176, 0.043121338, 0.027999878, -0.02230835, 0.015991211, 0.015487671, -0.00522995, -0.027008057, -0.0017271042, 0.006877899, -0.01335144, 0.024459839, 0.009155273, 0.008934021, 0.041107178, -0.010643005, 0.019210815, 0.011154175, -0.034942627, 0.0064430237, 0.009216309, -0.024032593, -0.011459351, 0.019607544, -0.03564453, 0.030853271, 0.02357483, -0.07409668, 0.020462036, -0.030838013, -0.010406494, -0.03086853, -0.01586914, -0.018722534, -0.025543213, -0.0440979, 0.015701294, 0.0056533813, -0.025909424, 0.02166748, 0.06414795, -0.06903076, -0.024353027, 0.0067710876, -0.011039734, 0.028045654, -0.010681152, 0.0138168335, -0.050842285, -0.0014257431, -0.025390625, 0.025634766, 0.012969971, -0.0008158684, 0.009101868, -0.020965576, -0.00052165985, -0.010948181, 0.028884888, 0.009605408, 0.055236816, -0.0071983337, 0.032348633, -0.05987549, -0.0018758774, 0.06500244, -0.03491211, -0.027450562, -0.051574707, 0.028335571, 0.0082473755, -0.04071045, -0.030303955, 0.029968262, 0.03945923, -0.0023021698, 0.019638062, 0.029327393, 0.024093628, -0.00048041344, -0.0335083, -0.010856628, -0.035736084, 0.028823853, -0.047576904, -0.03378296, -0.025283813, -0.0039978027, 0.02079773, 0.016067505, 0.014053345, -0.023544312, 0.0036315918, 0.0012617111, -0.003862381, -0.007949829, 0.06719971, 0.055633545, -0.01878357, -0.018997192, 0.0027313232, -0.024993896, -0.06707764, -0.004878998, -0.016494751, 0.00054359436, 0.008895874, -0.012252808, 0.008049011, 0.0034599304, 0.0006284714, 0.017608643, -0.040100098, 0.023208618, 0.01360321, 0.013023376, -0.033111572, -0.00969696, 0.08721924, -0.00047445297, 0.031402588, 0.041931152, -0.02192688, -0.027709961, -0.050201416, -0.012619019, 0.0025577545, -0.00042366982, -0.010643005, 0.032989502, -0.0045700073, -0.0056266785, -0.020477295, -0.002696991, 0.0030345917, -0.02355957, -0.004272461, 0.022598267, -0.004371643, -0.00932312, 0.0541687, -0.040405273, 0.019897461, 0.030822754, -0.027496338, -0.012512207, 0.014953613, -0.032836914, 0.030761719, 0.00081539154, -0.073913574, 0.0602417, 0.009780884, 0.041290283, -0.009689331, 0.03466797, 0.015075684, 0.022399902, -0.042816162, 0.003271103, -0.014091492, 0.037200928, -0.048217773, 0.0022182465, 0.03137207, -0.0076408386, -0.014625549, 0.032043457, 0.03640747, -0.0031166077, -0.0037136078, 0.02998352, -0.022247314, -0.014717102, 0.029205322, -0.035339355, -0.049041748, -0.027572632, 0.019638062, 0.037597656, -0.030838013, -0.01399231, -0.057800293, 0.023117065, 0.01713562, -0.027618408, 0.029067993, 0.043640137, 0.008224487, 0.04360962, 0.0119018555, 0.0005931854, 0.005695343, -0.049865723, -0.0012321472, -0.0046463013, 0.031829834, 0.0018758774, 0.047973633, -0.032348633, 0.03286743, 0.043762207, -0.062561035, -0.005168915, 0.040222168, -0.01737976, -0.014839172, -0.0020923615, -0.003074646, 0.0154800415, 0.03756714, 0.02670288, -0.027435303, -0.023162842, -0.0069885254, -0.01335144, 0.028900146, -0.036132812, 0.01461792, -0.011985779, -0.008010864, 0.024353027, -0.02394104, -0.022735596, 0.025299072, 0.014373779, -0.07763672, 0.02607727, 0.007858276, 0.020095825, -0.005191803, -0.027145386, -0.0023384094, 0.036895752, -0.0056648254, -0.009513855, -0.006164551, -0.031311035, -0.0015077591, -0.013175964, 0.023712158, 0.009544373, 0.014060974, -0.018615723, 0.0041046143, -0.021713257, 0.017349243, -0.011955261, 0.015014648, 0.017837524, 0.04095459, 0.004535675, 0.032073975, -0.06555176, -0.011642456, -0.0054130554, -0.045318604, -0.054748535, 0.009475708, 0.06021118, -0.022476196, 0.02558899, -0.009132385, 0.017745972, -0.03894043, 0.012687683, -0.0368042, -0.029800415, -0.050933838, 0.036071777, 0.031677246, -0.011383057, -0.013664246, -0.0037460327, -0.009346008, -0.018463135, -0.009757996, 0.0345459, -0.023834229, -0.00037503242, -0.010032654, 0.008430481, 0.021713257, 0.00642395, 0.0010299683, 0.025787354, 0.034576416, -0.015396118, 0.019073486, -0.003458023, -0.016204834, 0.014831543, -0.03036499, -0.0071258545, 0.0016202927, 0.023544312, 0.020507812, 0.008422852, -0.020111084, -0.039886475, 0.0032482147, -0.01701355, 0.05429077, 4.929304e-05, -0.016738892, -0.0126953125, 0.024505615, 0.03753662, 0.029006958, -0.015426636, 0.023086548, -0.037872314, -0.002084732, -0.021392822, 0.021530151, -0.0030899048, 0.13684082, -0.043792725, 0.006954193, -0.013122559, -0.030838013, 0.020751953, -0.03945923, 0.035217285, 0.021331787, 0.0009174347, -0.023834229, -0.01826477, -0.014678955, 0.026443481, -0.05630493, -0.037322998, 0.009277344, 0.021591187, 0.0024166107, 0.03378296, -0.026153564, 0.0040245056, 0.035827637, -0.0015630722, 0.0088272095, -0.026779175, -0.0209198, -0.0152282715, 0.017807007, -0.04156494, 0.02545166, -0.015602112, 0.059509277, 0.026245117, 0.017044067, -0.004749298, -0.046051025, -0.03540039, 0.015823364, -0.026107788, 0.01083374, 0.0005645752, 0.036468506, -0.00308609, 0.03036499, 0.035217285, -0.050720215, 0.025314331, 0.010063171, 0.0012140274, 0.07745361, -0.046447754, 0.011558533, 0.027618408, -0.030899048, 0.018325806, 0.02468872, -0.012382507, 0.018447876, 0.0024738312, -0.030166626, -0.034118652, 0.027816772, -0.009017944, -0.0067481995, 0.009925842, -0.056915283, -0.05154419, 0.0076408386, 0.0041503906, -0.031982422, 0.0060157776, -0.021987915, -0.02456665, -0.0005569458, -0.038726807, -0.034088135, 0.011161804, 0.01210022, -0.06756592, -0.033935547, -0.020050049, 0.03878784, 0.007255554, 0.07421875, -0.014457703, -0.06439209, -0.09088135, 0.0045051575, -0.04458618, 0.025344849, -0.008361816, -0.00818634, 0.002035141, 0.00054883957, 0.029251099, 0.04522705, 0.03387451, -0.0050582886, -0.008384705, -0.0340271, -0.039154053, 0.014633179, -0.0016765594, -0.0158844, 0.026046753, 0.07342529, -0.018249512, 0.066101074, 0.014350891, -0.026062012, -0.0032901764, -0.016571045, -0.033050537, -0.0010929108, 0.014533997, 0.009643555, 0.00039696693, 0.03378296, -0.024673462, -0.0015583038, -0.010398865, -0.04232788, 0.008369446, 0.010543823, 0.025421143, 0.0053215027, -0.0057411194, -0.023147583, -0.015716553, -0.007896423, 0.044006348, -0.010482788, -0.0071372986, 0.025650024, -0.01586914, 0.012794495, 0.004714966, 0.018295288, -0.028152466, 0.009727478, -0.0107421875, -0.037719727, 0.024215698, 0.009002686, 0.009750366, -0.0385437, 0.030471802, 0.06756592, -0.047851562, 0.026123047, -0.016326904, 0.00447464, 0.060699463, -0.025665283, -0.031051636, -0.01486969, 0.014793396, 0.023803711, -0.0006017685, 0.0026245117, -0.0051956177, 0.015289307, -0.0112838745, 0.028320312, 0.013580322, 0.032318115, -0.022491455, 0.012687683, -0.0034179688, 0.08270264, -0.050811768, -0.053771973, -0.0423584, -0.00497818, 0.015655518, 0.02520752, 0.07745361, -0.015167236, 0.0077323914, 0.017852783, -0.046325684, -0.036712646, 0.01914978, -0.023605347, 0.00040841103, 0.0262146]}, "B00N5CQ252": {"id": "B00N5CQ252", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote\nDescription: Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.\nFeatures: \n", "metadata": {"Name": "Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote", "Brand": "Peterson Real Fyre", "Description": "Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.016616821, -0.003627777, -0.07116699, -0.04135132, -0.006439209, -0.032684326, -0.0031871796, 0.03945923, -0.042816162, -0.005317688, -0.020599365, -0.024414062, -0.01763916, -0.033447266, 0.025848389, -0.06890869, 0.012306213, -0.012954712, -0.008033752, -0.023620605, 0.0016403198, -0.019805908, -0.008987427, 0.061279297, 0.067871094, 0.0013227463, 0.021347046, 0.03955078, 0.07556152, 0.04434204, 0.072143555, -0.10559082, 0.03640747, 0.0053520203, -0.038085938, -0.031021118, -0.025283813, 0.0020313263, -0.03237915, 0.029769897, -0.0088272095, 0.026916504, -0.012573242, -0.0022220612, -0.050628662, -0.02571106, -0.0020332336, 0.019592285, -0.0046920776, 0.038116455, -0.009712219, -0.03817749, -0.013755798, 0.04272461, -0.007987976, -0.029830933, -0.0019521713, 0.041015625, 7.212162e-06, 0.019561768, -0.002374649, 0.061035156, 0.0034866333, 0.028549194, -0.013725281, 0.009689331, -0.02305603, 0.005382538, 0.02658081, -0.023544312, -0.010475159, -0.0007367134, 0.028198242, -0.027755737, -0.027389526, 0.036102295, 0.00014281273, 0.0335083, 0.016311646, -0.020004272, 0.05847168, -0.001584053, 0.005104065, 0.02053833, 0.004951477, 0.028442383, -0.008361816, -0.029266357, -0.036712646, -0.064819336, -0.039245605, 0.011940002, -0.074157715, -0.008369446, -0.033447266, 0.0021419525, -0.026885986, -0.0206604, 0.02330017, -0.012565613, 0.046295166, -0.04071045, 0.007713318, 0.00737381, -0.02571106, 0.034484863, 0.04046631, 0.004436493, -0.017105103, -0.009689331, -0.012260437, 0.0076904297, 0.0140686035, -0.013092041, 0.0058250427, 0.014923096, -0.024902344, 0.019500732, 0.003063202, 0.008613586, -0.01058197, 0.02267456, -0.0051879883, 0.015426636, 0.029418945, 0.05368042, 0.034454346, -0.030273438, -0.07293701, 0.059265137, -0.009414673, -0.016204834, -0.010978699, 0.03677368, -0.009933472, -0.024276733, 0.012916565, 0.010009766, 0.001748085, -0.0059890747, 0.01902771, -0.0021743774, 0.024841309, -0.0013399124, -0.025131226, 0.041992188, 0.043823242, -0.030349731, -0.031280518, -0.04272461, -0.07244873, 0.022216797, 0.026809692, 2.4437904e-06, -0.020095825, -0.0078086853, 0.011222839, -0.03010559, 0.005443573, -0.026229858, -0.009681702, -0.025131226, -0.016418457, 0.07348633, 0.02897644, 0.035949707, 0.043884277, 0.024978638, 0.01838684, 0.08746338, -0.01083374, 0.011184692, -0.0032901764, -0.0031414032, -0.028686523, -0.015960693, 0.016921997, 0.021087646, 0.028640747, -0.07867432, -0.06933594, -0.036895752, 0.08947754, -0.043945312, -0.008796692, -0.003314972, -0.012908936, -0.008049011, 0.03451538, 0.0039367676, -0.017837524, 0.005104065, -0.029220581, -0.019866943, 0.0592041, 0.008468628, -0.05227661, -0.025375366, 0.028305054, -0.0015821457, -0.073791504, 0.0021247864, -0.018310547, 0.03439331, -0.003917694, -0.008743286, -0.0050315857, 0.030883789, -0.0028705597, 0.04675293, -0.0022010803, 0.015617371, 0.010848999, -0.04840088, 0.0077171326, 0.0005440712, -0.018722534, 0.068237305, 0.0062179565, 0.01889038, 0.031585693, -0.037963867, 0.037963867, 0.03262329, 0.019851685, -0.005622864, -0.020599365, -0.009971619, 0.047058105, 0.0054130554, 0.031311035, 0.007949829, 0.04763794, 0.040649414, -0.0011434555, 0.026229858, 0.03286743, -0.023086548, -0.010169983, 0.01121521, 0.021575928, -0.0149002075, -0.0005598068, 0.03225708, -0.009994507, 0.0050201416, 0.05407715, -0.022888184, -0.030151367, -0.004737854, 0.018066406, 0.018630981, 0.034210205, 0.045776367, -0.039855957, 0.045440674, 0.0043792725, 0.023422241, -0.037628174, 0.016571045, -0.009300232, 0.0635376, 0.022521973, 0.016921997, 0.048736572, -0.0070114136, 0.037475586, 0.020706177, -0.0026359558, -0.000834465, -0.0124053955, -0.030029297, 0.0045166016, 0.031433105, -0.032836914, 0.00031208992, -0.0026474, 0.016235352, -0.0027122498, 0.0072364807, -0.0055389404, 0.006137848, 0.022338867, -0.010726929, 0.044006348, -0.006134033, 0.012031555, -0.03527832, 0.017486572, 0.008407593, 0.04449463, -0.0009860992, -0.0068893433, 0.011116028, 0.00566864, -0.026626587, 0.023971558, -0.014846802, 0.038970947, -0.044677734, -0.010391235, 0.029067993, -0.048950195, 0.0070114136, -0.012542725, 0.01676941, 0.006465912, -0.022018433, -0.022613525, -0.06274414, 0.0082473755, -0.013389587, 0.004142761, -0.04550171, 0.0725708, 0.0019950867, 0.009788513, 0.008987427, 0.012016296, 0.04989624, 0.0368042, 0.031829834, -0.021118164, -0.006855011, 0.013580322, -0.021118164, -0.016021729, -0.024475098, 0.018936157, 0.00021541119, 0.028549194, 0.010971069, -0.021530151, -0.02255249, 0.018096924, 0.0033817291, 0.013244629, -0.013389587, -0.03161621, -0.05114746, -0.038879395, 0.0055885315, -0.0025615692, -0.04067993, -0.055633545, 0.002620697, 0.02923584, 0.012268066, 0.01574707, -0.009674072, 0.017562866, -0.025756836, 0.00415802, 0.022277832, 0.009353638, -0.026916504, 0.008232117, -0.012748718, -0.041870117, -0.04788208, -0.0098724365, -0.012672424, -0.029449463, -0.057556152, 0.04333496, -0.0059432983, -0.08782959, 0.009292603, 0.037750244, 0.02178955, 0.06274414, 0.03427124, -0.08062744, -0.022735596, -0.017044067, -0.035614014, 0.039642334, -0.023620605, 0.03881836, 0.027801514, -0.0013303757, 0.036193848, -0.010574341, 0.043151855, 0.025421143, 0.052856445, 0.04864502, -0.012023926, 0.0440979, -0.03479004, 0.026794434, 0.020614624, -0.0030021667, -0.0050697327, -0.0034122467, -0.014831543, 0.0057525635, -0.025894165, -0.05480957, 0.006160736, -0.038848877, 0.020355225, -0.022750854, -0.010292053, 0.0028648376, -0.11242676, -0.008613586, -0.051605225, 0.01864624, -0.0012102127, -0.01525116, -0.00034284592, 0.017700195, -0.041168213, -0.0030136108, 0.0034656525, 0.026931763, 0.0028495789, -0.011039734, -0.0048179626, 0.066345215, -0.0791626, 0.03894043, 0.0050735474, -0.03475952, -0.007091522, 0.0023651123, 0.03353882, -0.0013542175, 0.03363037, 0.014533997, 0.0007390976, -0.01902771, -0.009498596, -0.02670288, -0.011833191, -0.007507324, -0.009094238, 0.028198242, -0.036468506, -0.033599854, -0.020690918, 0.013137817, 0.043029785, 0.019836426, -0.0064086914, -0.031799316, -0.03894043, -0.011741638, -0.040863037, 0.013198853, 0.0037727356, 0.034942627, 0.016906738, 0.0074882507, 0.060028076, 0.018997192, 0.033416748, -0.012252808, -0.008850098, -0.012771606, -0.040252686, 0.058929443, -0.0055503845, -0.013832092, -0.017303467, 0.02142334, -0.0005788803, -0.034332275, 0.010368347, -0.020370483, 0.044769287, -0.033325195, 0.003665924, 0.004962921, -0.0052261353, 0.028839111, 0.033203125, -0.016098022, -0.02507019, -0.02545166, 0.0013208389, -0.037750244, 0.06921387, 0.040222168, -0.014823914, 0.057495117, 0.048614502, -0.03286743, 0.00655365, -0.01222229, 0.015022278, -0.055511475, 0.08166504, -0.026062012, 0.003540039, 0.025817871, -0.041015625, -0.032989502, -0.02128601, -0.10858154, 0.011268616, 7.277727e-05, 0.029968262, -0.048461914, 0.042633057, 0.010253906, 0.0011739731, 0.00907135, -0.109802246, 0.04537964, -0.043701172, 0.020721436, 0.010177612, -0.03050232, -0.03729248, 0.015716553, 0.044158936, -0.05050659, -0.016403198, 0.01184845, -0.015075684, 0.020553589, 0.054718018, -0.0063819885, 0.0037631989, -0.021453857, -0.04699707, -0.05770874, -0.011711121, 0.022262573, 0.04360962, 0.014022827, -0.007286072, 0.0112838745, 0.023086548, -0.008216858, -0.02192688, -0.031677246, -0.016174316, 0.008872986, -0.00466156, -0.03640747, -0.0068969727, -0.0028457642, -0.01838684, 0.010093689, 0.018508911, -0.032806396, -0.008728027, -0.004135132, 0.0021591187, -0.026016235, -0.033966064, -0.01826477, -0.030212402, -0.03604126, 0.017944336, 0.0047340393, -0.008003235, 0.02468872, 0.013717651, -0.06585693, 0.012359619, -0.043640137, -0.026168823, 0.060028076, 0.0048103333, 0.057250977, -0.027648926, -0.0069389343, -0.019622803, 0.08227539, -0.008125305, 0.023834229, -0.05102539, -0.019332886, 0.0063819885, 0.020202637, 0.025054932, 0.043884277, 0.007408142, -0.040863037, -0.015609741, 0.00025963783, -0.028320312, -0.006416321, -0.029388428, -0.02494812, -0.03604126, 0.037719727, -0.01878357, -0.00258255, 0.015899658, 0.0060310364, -0.030517578, 0.035614014, -0.04574585, 0.0024108887, -0.004173279, -0.019470215, 0.027450562, 0.006843567, -0.0022964478, -0.01209259, 0.06109619, -0.010101318, 0.016723633, -0.0048332214, -0.05307007, -0.014915466, 0.036499023, -0.038513184, 0.025650024, -0.04840088, -0.03842163, -0.009010315, 0.031341553, 0.009880066, -0.01725769, -0.0021572113, 0.022003174, 0.0054893494, -0.031341553, -0.022964478, 0.029815674, -0.004096985, -0.005672455, -0.029968262, 0.017364502, 0.0028133392, 0.0068359375, 0.019317627, 0.036499023, 0.078552246, -0.021133423, -0.007461548, 0.040618896, -0.042785645, -0.03515625, 0.031082153, 0.00957489, 0.008743286, -0.05279541, -0.026306152, -0.030822754, -0.025009155, 0.007858276, -0.031463623, -0.02557373, -0.015144348, 0.014404297, -0.01272583, 0.020523071, 0.026519775, 0.0019025803, -0.04458618, 0.04019165, 0.013061523, 0.01991272, -0.058166504, 0.035064697, 0.01940918, -0.004722595, 0.013923645, -0.014297485, 0.012260437, 0.04827881, -0.032409668, 0.025100708, 0.036132812, -0.055114746, 0.036193848, -0.0025691986, 0.023529053, -0.0045166016, 0.009963989, -0.0143585205, -0.023406982, -0.016067505, -0.009681702, 0.0013628006, -0.0053863525, 0.03845215, -0.021377563, 0.035125732, 0.040924072, -0.023147583, 0.014846802, 0.03933716, -0.07745361, -0.07861328, 0.04248047, -0.07366943, -0.05001831, 0.020629883, -0.0021324158, 0.009254456, -0.027679443, -0.021377563, 0.046081543, 0.00983429, -0.030395508, -0.01977539, -0.048706055, 0.048919678, -0.020629883, 0.0048599243, -0.059631348, 0.011550903, -0.004547119, -0.022384644, 0.040771484, 0.0062942505, -0.02998352, -0.017150879, 0.0132751465, -0.04586792, -0.05432129, 0.09112549, -0.029327393, -0.018341064, 0.002861023, -0.0013580322, 0.0035533905, -0.009605408, -0.043701172, -0.00944519, 0.024337769, 0.053100586, -6.914139e-06, 0.0008125305, 0.07336426, -0.034729004, -0.03756714, -0.03878784, 0.030044556, 0.018692017, -0.007904053, 0.0362854, 0.00087594986, 0.007949829, 0.016448975, -0.024307251, -0.08453369, 0.04650879, 0.015594482, -0.09674072, -0.045837402, -0.05105591, -0.02418518, 0.01902771, -0.0046424866, 0.014892578, 0.04397583, 0.010795593, -0.033447266, -0.026443481, -0.0063209534, 0.0048217773, -0.053466797, 0.0017471313, -0.017593384, 0.0004079342, 0.0013418198, -0.0127334595, -0.00472641, 0.021194458, -0.028213501, 0.023361206, 0.018112183, 0.021713257, 0.009780884, 0.031829834, -0.05117798, -0.0067825317, -0.011169434, -0.0026664734, -0.013717651, 0.022583008, 0.020339966, -0.006916046, -0.010154724, 0.003408432, -0.037322998, 0.06591797, 0.0385437, 0.04220581, -0.037384033, -0.019226074, 0.052581787, 0.02015686, 0.058807373, 0.0138168335, -0.0018882751, -0.03781128, -0.00056123734, 0.027999878, 0.016311646, -0.02279663, -0.046539307, 0.0016698837, -0.0519104, 0.023529053, -0.0063095093, 0.035064697, 0.018310547, 0.005718231, -0.008712769, 0.008934021, 0.012260437, -0.014839172, 0.047973633, -0.038635254, 0.042938232, -0.0096206665, 0.012420654, 0.0011873245, -0.018356323, -0.004333496, -0.036468506, 0.01689148, 0.014587402, 0.037322998, 0.013282776, 0.007003784, 0.030029297, -0.041015625, -0.0066871643, -0.060180664, 0.013389587, -0.023834229, -0.0692749, -0.023071289, -0.026245117, 0.01448822, -0.024780273, 0.08081055, -0.025924683, 0.013153076, 0.0033168793, -0.016082764, 0.0019435883, -0.016601562, -0.005962372, 0.012664795, 0.03253174, -0.009773254, -0.049041748, 0.03286743, 0.0124053955, 0.024536133, 0.045715332, -0.03265381, 0.010856628, 0.004589081, 0.0038070679, -0.04119873, -0.01600647, -0.011314392, -0.033691406, 0.01586914, 0.013069153, 0.047058105, 0.048736572, -0.030426025, -0.049957275, 0.012588501, -0.09051514, -0.0018444061, 0.028747559, 0.003698349, -0.026046753, 0.01486969, 0.00055122375, -0.009315491, 0.022232056, 0.012519836, 0.029388428, -0.007659912, -0.029785156, 0.02670288, 0.0036621094, -0.018554688, 0.026031494, -0.013771057, -0.026870728, 0.06311035, 0.033294678, -0.015602112, -0.0062026978, -0.021759033, -0.025878906, 0.009933472, -0.05899048, -0.0026550293, 0.020446777, 0.040740967, 0.019134521, -0.052642822, 0.0027065277, 0.010139465, 0.07556152, 0.010673523, -0.016983032, -0.008415222, 0.02357483, -0.02420044, -0.039367676, -0.03933716, 0.0259552, -0.025405884, -0.03894043, -0.025680542, 0.0055732727, -0.0003657341, -0.05065918, -0.01737976, 0.0038909912, 0.06100464, 0.0065231323, 0.0061454773, -0.006752014, -0.03111267, -0.020431519, 0.009887695, -0.011230469, -0.035980225, 0.020584106, -0.0064048767, 0.009689331, -0.0077781677, 0.0032367706, 0.054718018, 0.020889282, -0.014778137, -0.01461792, -0.0131073, -0.017196655, 0.052642822, 0.009254456, -0.054870605, -0.036468506, 0.020645142, -0.009674072, 0.016235352, 0.023117065, -0.0078125, -0.05307007, -0.0340271, -0.04937744, 0.000729084, 0.0067481995, -0.023239136, 0.046722412, 0.018661499, -0.027328491, 0.04135132, 0.024673462, -0.004901886, 0.03326416, -0.014328003, 0.01777649, -0.046020508, -0.055847168, -0.040405273, -0.03805542, 0.042022705, -0.032592773, -0.02017212, -0.037597656, -0.009124756, 0.014434814, -0.047027588, 0.016052246, -0.015174866, 0.044891357, 0.04675293, -0.033416748, 0.026519775, -0.023895264, -0.0059547424, -0.016311646, -0.0284729, 0.018722534, -0.03475952, -0.003124237, -0.006111145, -0.05368042, 0.018554688, -0.02822876, -0.059265137, -0.03286743, -0.016479492, 0.009941101, 0.04284668, -0.01701355, -0.0027542114, -0.008224487, 0.0030269623, -0.025619507, 0.005504608, 0.01977539, -0.004764557, -0.037872314, 0.02218628, 0.003955841, 0.03945923, -0.019088745, -0.09210205, -0.05630493, 0.033966064, 0.03439331, -0.025177002, 0.048431396, -0.0041656494, 0.013679504, 0.028076172, -0.0005259514, -0.020599365, -0.013801575, 0.08300781, 0.010101318, 0.00074768066]}, "B07QT8FLPW": {"id": "B07QT8FLPW", "original": "Brand: Miaowoof\nName: Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

      The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

      Make Grilling, Baking, Cooking Easier:
      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
      This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
      It will not retain or transfer tastes or odors between uses.

      Application:
      Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
      Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
      Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

      Tips for Maintaining:
      Store mats flat or rolled upin storage for small space. Don\u2019t fold it.

      Warning:
      Do not let grease accumulate due to risk of grease fire.
      Use mats at low-medium heat settings (300\u00b0F - 400\u00b0F).
      To avoid scratching, only use wood, plastic or silicone utensils.
      Do not use sharp stainless steel or metal tools to avoid scratching.
      Don\u2019t use scratch pad or abrasive brush while cleaning mats.

      Package Included:
      6 * Solid Grill Mats
      \nFeatures: 1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid\uff0c like pizza,squid,beef,eggs....\n2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.\n", "metadata": {"Name": "Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat", "Brand": "Miaowoof", "Description": "It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

      The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

      Make Grilling, Baking, Cooking Easier:
      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
      This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
      It will not retain or transfer tastes or odors between uses.

      Application:
      Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
      Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
      Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

      Tips for Maintaining:
      Store mats flat or rolled upin storage for small space. Don\u2019t fold it.

      Warning:
      Do not let grease accumulate due to risk of grease fire.
      Use mats at low-medium heat settings (300\u00b0F - 400\u00b0F).
      To avoid scratching, only use wood, plastic or silicone utensils.
      Do not use sharp stainless steel or metal tools to avoid scratching.
      Don\u2019t use scratch pad or abrasive brush while cleaning mats.

      Package Included:
      6 * Solid Grill Mats
      ", "Features": "1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid\uff0c like pizza,squid,beef,eggs....\n2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009147644, -0.0079193115, -0.005584717, -0.018707275, -0.015716553, -0.014335632, 0.0032958984, 0.003211975, -0.016342163, 0.06640625, -0.0015649796, 0.059051514, 0.010360718, -0.0027542114, -0.013290405, 0.0126953125, 0.019104004, -0.020980835, -0.0020980835, -0.03161621, -0.0055999756, -0.023803711, 0.018218994, 0.008163452, 0.008659363, -0.0181427, 0.01739502, -0.021072388, 0.0118637085, -0.024749756, 0.016830444, 0.009216309, 0.047973633, 0.016662598, -0.06585693, -0.0035324097, 0.017440796, -0.011146545, -0.020874023, 0.007587433, 0.011016846, -0.0025157928, 0.0032424927, 0.030532837, -0.036499023, -0.007522583, -0.007724762, -0.014335632, 0.014602661, 0.02041626, 0.016693115, 0.012763977, 0.025863647, -0.015045166, -0.0085372925, -0.0010528564, 0.010719299, 0.019973755, 0.015838623, 0.010910034, -0.010131836, 0.02809143, -8.21352e-05, -0.0001269579, -0.018661499, -0.0178833, 0.05496216, -0.016723633, -0.09277344, -0.03326416, 0.09008789, -0.016113281, 0.026809692, -0.014419556, -0.044830322, -0.030380249, 0.03717041, -0.03765869, -0.0031204224, 0.0010976791, -0.07165527, -0.00356102, 0.011627197, -0.037902832, -0.019165039, -0.03665161, -0.04626465, 0.018676758, -0.019134521, -0.02848816, -0.013130188, -0.0066490173, -0.07495117, 0.049957275, 0.015838623, -0.028656006, -0.00932312, -0.022994995, 0.016326904, 0.021774292, 0.040649414, -0.04711914, 0.031951904, 0.0057640076, -0.01486969, 0.0501709, 0.015991211, -0.013954163, -0.022827148, 0.0058670044, -0.0063591003, -0.016540527, 0.018692017, -0.027832031, -0.039123535, 0.02041626, 0.047607422, -0.035705566, 0.004802704, -0.027526855, -0.027999878, -0.008628845, 0.0141067505, 0.025970459, 0.050476074, 0.06707764, 0.0015363693, -0.017501831, -0.09295654, 0.036712646, -0.00016140938, -0.016906738, 0.025756836, 0.068847656, -0.0038070679, -0.017318726, -0.0023345947, 0.00491333, 0.008728027, 0.0060806274, 0.0015134811, -0.017181396, 0.053009033, -0.007083893, -0.008590698, 0.009101868, 0.03491211, 0.034942627, -0.049743652, -0.06524658, 0.051849365, -0.026031494, 0.040618896, 0.008575439, -0.046661377, 0.00074768066, -0.03439331, -0.0032100677, -0.03579712, -0.019454956, -0.0340271, 0.0066833496, 0.040405273, -0.022232056, 0.0013494492, -0.0032081604, -0.025436401, -0.003145218, 0.004299164, 0.011749268, -0.012130737, -0.007865906, -0.07678223, -0.023269653, -0.001373291, -0.00080156326, -0.0031433105, 0.066223145, 0.062347412, -0.08270264, -0.057800293, -0.0541687, 0.113220215, -0.040222168, -0.015701294, -0.026870728, 0.0127334595, 0.02960205, 0.02658081, 0.020462036, 0.0018424988, -0.03656006, -0.059448242, 0.02041626, 0.0010251999, 0.025634766, -0.046783447, 0.0076141357, -0.011795044, -0.028518677, -0.0072669983, 0.00349617, 0.013687134, 0.005504608, 0.04296875, -0.03387451, 0.02772522, 0.015487671, -0.030792236, 0.059326172, 0.028793335, 0.00623703, 0.00070667267, -0.030715942, 0.022155762, -0.03274536, 0.0211792, -0.021530151, 0.01637268, -0.03994751, 0.056427002, 0.032440186, 0.01676941, 0.052612305, 0.05029297, 0.017150879, -0.030532837, 0.0070343018, 0.04458618, 0.017822266, -0.028182983, 0.048461914, 0.048065186, 0.042938232, -0.043029785, 0.03302002, 0.030441284, 0.10083008, -0.03866577, -0.011482239, 0.00233078, -0.015960693, -0.053863525, -0.015258789, 0.013244629, -0.02027893, -0.0013332367, 0.01576233, -0.03765869, -0.0071983337, 0.031402588, 0.013282776, 0.041748047, 0.014465332, -0.022781372, 0.03817749, -0.08691406, -0.031036377, -0.031799316, 0.026138306, -0.016693115, -0.024597168, 0.06088257, -0.04269409, 0.029006958, -0.035003662, 0.0096206665, -0.0016155243, -0.031311035, -0.022109985, 0.029785156, 0.023529053, -0.008804321, 0.01210022, -0.0013170242, -0.019195557, -0.03994751, 0.011024475, 0.010635376, -0.018981934, 0.008079529, 0.023010254, 0.00995636, -0.009185791, 0.027160645, -0.02810669, 0.008049011, -0.009925842, -0.044128418, -0.011810303, 0.01739502, 0.030975342, -0.02154541, 0.007648468, 0.0045814514, 0.00061130524, -0.0028438568, 0.023971558, 0.007369995, 4.976988e-05, -0.00024366379, 0.050628662, -0.03074646, 0.032836914, -0.0005187988, 0.023117065, 0.011489868, -0.030441284, -0.029067993, -0.039916992, 0.017471313, 0.0032157898, 0.031311035, -0.010627747, 0.043945312, 0.005630493, 0.021270752, 0.035827637, 0.011154175, 0.012031555, -0.024154663, 0.03817749, -0.031051636, 0.0056915283, 0.022918701, 0.009590149, -0.017181396, -0.017471313, -0.016159058, 0.01751709, 0.042419434, 0.011817932, 0.006465912, -0.012565613, 0.011756897, -0.0048179626, -0.010025024, 0.07104492, 0.009353638, -0.013290405, 0.0005378723, -0.030197144, -0.0154800415, -0.026641846, -0.055145264, 0.009429932, 0.042510986, 0.009796143, -0.03137207, -0.012680054, 0.025375366, -0.046875, 0.0181427, 0.013137817, 0.0054512024, 0.0013189316, -0.01979065, 0.009513855, -0.013595581, -0.05178833, -0.008476257, 0.016708374, -0.024780273, 0.015975952, 0.009773254, -0.027694702, 0.020126343, -0.001958847, 0.013076782, 0.0005412102, 0.04724121, 0.0046806335, -0.08428955, -0.017364502, -0.0027809143, -0.023788452, 0.040740967, -0.023895264, -0.016433716, 0.0057144165, -0.019424438, -0.00093746185, 0.011192322, 0.007873535, 0.019973755, 0.012786865, -0.004119873, 0.050109863, -0.036224365, -0.012428284, -0.026428223, 0.044189453, -0.060302734, -0.03414917, -0.013420105, 0.019760132, 0.036132812, -0.05609131, 0.024230957, -0.068603516, -0.09576416, -0.026947021, 0.004425049, -0.05831909, 0.008583069, -0.093566895, -0.042816162, -0.03741455, 0.0037021637, 0.10424805, -0.025817871, -0.016311646, -0.00920105, 0.0023498535, 0.022567749, 0.018539429, 0.036987305, -0.011276245, -0.014320374, -0.0096588135, 0.040252686, -0.046325684, 0.06262207, 0.038024902, -0.012626648, -0.00907135, -0.0053596497, 0.02835083, -0.072021484, -0.035339355, -0.019378662, -0.061157227, -0.025772095, 0.029891968, -0.035369873, 0.03366089, 0.012924194, -0.050994873, 0.059143066, -0.05633545, -0.023605347, -0.005405426, 0.0015859604, 0.039398193, -0.019042969, -0.0026893616, -0.004524231, -0.042510986, -0.008346558, -0.02420044, -0.02861023, 0.01436615, 0.024414062, 0.0149383545, 0.0028648376, 0.037200928, 0.04055786, 0.048980713, 0.004711151, -0.0491333, -0.009986877, -0.06451416, 0.053131104, 0.013084412, 0.025390625, -0.04827881, 0.032409668, -0.0072402954, -0.017486572, 0.012969971, -0.0027484894, 0.043060303, 0.01461792, 0.0008716583, 0.012542725, 0.014556885, 0.008285522, 0.023712158, -0.048797607, -0.025177002, -0.06488037, 0.011962891, -0.076538086, 0.10101318, 0.022781372, -0.015289307, 0.09094238, 0.06933594, -0.0005273819, 0.061401367, 0.020584106, -0.0042915344, 0.011978149, 0.055999756, -0.019485474, 0.034423828, 0.005596161, -0.013206482, 0.005592346, -0.01637268, -0.046569824, 0.0146865845, 0.042175293, -0.019500732, -0.006137848, -0.000834465, -0.0048713684, 0.0051994324, -0.020217896, -0.036071777, 0.005935669, -0.024551392, 0.034057617, 0.011581421, -0.0075950623, -0.0154418945, 0.047424316, -0.01235199, 0.009475708, -0.0005788803, 0.032165527, -0.006729126, 0.042633057, 0.014282227, -0.005153656, 0.004940033, 4.5359135e-05, -0.008255005, -0.03945923, 0.010314941, 0.02520752, 0.031341553, 0.059265137, -0.012336731, -0.015541077, -0.019989014, -0.013092041, 0.032470703, 0.007083893, -0.041656494, -0.020874023, 0.0129776, 0.0018291473, -0.004486084, 0.02053833, -0.043762207, -0.015838623, 0.007232666, -0.051635742, 0.020202637, -0.019927979, -0.02960205, -0.006072998, 0.019058228, -0.014320374, -0.08642578, -0.050109863, 0.008049011, 0.00856781, 0.024673462, 0.0140686035, 0.03805542, -0.033691406, -0.023132324, 0.015571594, -0.0025501251, 0.022140503, -0.02154541, 0.033111572, -0.027252197, -0.025543213, -0.03756714, 0.0345459, 0.004951477, 0.0051078796, -0.03668213, -0.012748718, -0.0050849915, -0.0050582886, -0.0066337585, -0.017486572, 0.030090332, 0.012565613, -0.03152466, -0.041381836, -0.053222656, 0.07556152, -0.07385254, -0.013259888, -0.04977417, 0.061828613, -0.020477295, 0.020568848, -0.04724121, -0.0049705505, 0.009986877, -0.040527344, -0.03704834, -0.034301758, 0.0019254684, -0.015151978, -0.013053894, -0.009994507, -0.019882202, 0.051116943, -0.011955261, -0.019882202, -0.020431519, 0.003900528, -0.042907715, -0.01361084, -0.022109985, 0.018981934, 0.036712646, -0.017578125, -0.01651001, -0.0368042, 0.08190918, 0.057037354, -0.026000977, -0.0041046143, -0.012702942, -0.025634766, -0.052124023, 0.0057029724, -0.020812988, -0.025314331, -0.016845703, -0.011695862, -0.012420654, -0.014228821, -0.0027809143, 0.03012085, -0.0063667297, 0.032318115, -0.025466919, 0.0059776306, -0.030212402, -0.036834717, 0.025634766, 0.015808105, 0.029129028, 0.04925537, -0.010276794, -0.03161621, -0.03515625, 0.004634857, -0.0003247261, -0.013328552, -0.023010254, 0.025039673, -0.006980896, -0.055541992, -0.017059326, 0.043518066, -0.039245605, -0.00831604, 0.042633057, -0.023483276, 0.00680542, 0.0010128021, 0.03741455, -0.001294136, 0.0035991669, -0.0012559891, -0.01789856, 0.046783447, 0.05267334, -0.028823853, 0.019699097, 0.026657104, -0.016647339, 0.01007843, -0.016342163, 0.04547119, -0.013557434, 0.02519226, 0.02545166, 0.023376465, -0.08380127, 0.013511658, -0.02758789, 0.003068924, -0.025268555, 0.010665894, 0.048706055, 0.0041007996, -0.028701782, -0.01109314, -0.013755798, -0.049987793, -0.00022852421, -0.028244019, -0.003993988, 0.0013771057, -0.018539429, -0.01448822, -0.053894043, -0.004676819, -0.032714844, 0.014083862, -0.01008606, -0.016189575, -0.04800415, -0.028656006, 0.033203125, -0.018463135, 0.004348755, -0.038482666, -0.00082302094, -0.006439209, 0.014282227, -0.019973755, 0.005382538, -0.044311523, -0.005138397, -0.017745972, -0.020599365, -0.023284912, 0.07159424, -0.042663574, -0.008346558, 0.013656616, -0.029525757, 0.019256592, 0.008865356, -0.038635254, -0.013496399, 0.0178833, 0.02319336, -0.028121948, -0.030822754, 0.051208496, -0.044433594, -0.028411865, -0.010192871, 0.04574585, 0.0045928955, -0.01524353, 0.07727051, 0.05230713, 0.0051002502, 0.030334473, -0.021499634, -0.019607544, 0.026245117, 0.00969696, -0.039093018, -0.0042037964, -0.014663696, -0.006126404, 0.009147644, -0.03125, -0.011672974, 0.04434204, 0.005718231, -0.013641357, -0.03652954, -0.033203125, 0.011795044, 0.010856628, 0.012641907, -0.00019800663, -0.013412476, -0.037017822, -0.011894226, -0.017028809, -0.013465881, 0.0496521, 0.025741577, 0.022521973, -0.03475952, 0.023422241, 0.06274414, -0.026550293, 0.07116699, -0.033599854, -0.008262634, -0.0016965866, 0.03475952, 0.04534912, 0.042877197, 0.0053520203, -0.022598267, -0.004470825, 0.0019340515, 0.028579712, -0.009216309, -0.04171753, -0.026245117, 0.04849243, 0.037597656, 0.047424316, 0.032989502, 0.05368042, 0.020889282, -0.01828003, 0.013191223, 0.049194336, -0.012039185, -0.00049877167, 0.0014410019, -0.00081443787, 0.03652954, -0.0021877289, -0.009391785, 0.017364502, 0.050079346, -0.022735596, 0.002029419, -0.0066947937, 0.029708862, 0.016098022, -0.016418457, -0.08935547, -0.007675171, 0.0087509155, -0.019943237, 0.008087158, 0.014915466, 6.222725e-05, 0.029022217, 0.011749268, 0.022720337, 0.011222839, 0.024154663, 0.0033073425, -0.037261963, 0.030075073, 0.014640808, 0.0036087036, 0.036499023, -0.0068473816, -0.008384705, 0.016326904, 0.03869629, -0.01146698, 0.059936523, -0.034851074, 0.015960693, -0.027801514, 0.015197754, -0.05078125, -0.008605957, -0.017318726, 0.015823364, 0.012306213, 0.004863739, 0.0082092285, 0.03829956, 0.024902344, -0.036865234, 0.020095825, -0.011795044, 0.005519867, -0.008506775, 0.0090408325, -0.023284912, -0.03451538, 0.021331787, 0.03314209, -0.00073480606, 0.027618408, -0.02822876, 0.011833191, -0.008132935, -0.020980835, 0.00932312, 0.008590698, 0.0030097961, 0.03137207, 0.019683838, 0.01084137, 0.011688232, -0.019500732, 0.014411926, 0.0037288666, 0.0143966675, 0.0074539185, 0.040222168, 0.05392456, 0.027954102, 0.04812622, -0.043792725, 0.015625, 0.058654785, 0.012580872, 0.016845703, 0.0082473755, -0.0010004044, -0.040161133, -0.018112183, 0.010520935, -0.024780273, 0.0065956116, 0.02923584, 0.018005371, -0.016601562, -0.014266968, -0.029891968, 0.03564453, -0.028961182, 0.043029785, -0.05493164, -0.02053833, 0.0026893616, -0.0068130493, -0.014549255, -0.0105896, -0.05126953, 0.014923096, -0.0063095093, -0.041046143, -0.024032593, -0.015731812, 0.021652222, -0.09234619, -0.031188965, -0.03918457, 0.07171631, 0.0017995834, 0.08850098, -0.045562744, -0.05505371, -0.060668945, 0.010055542, -0.070129395, 0.005027771, -0.04940796, 0.018341064, 0.0032615662, -0.011665344, 0.024749756, 0.039520264, 0.0009765625, -0.0055503845, -0.01499176, -0.038269043, -0.036102295, 0.04559326, 0.008590698, -0.041748047, -0.0051193237, 0.03338623, 0.020462036, 0.045928955, 0.020431519, -0.019134521, -0.08068848, -0.02557373, -0.060058594, 0.046813965, -0.008323669, 0.024353027, 0.0033664703, 0.0078086853, -0.028717041, 0.034088135, -0.0002360344, 0.007686615, 0.02784729, 0.05496216, -0.02708435, -0.030899048, 0.014526367, 0.010879517, 0.007850647, 0.015823364, 0.031036377, 0.033691406, -0.06317139, -0.0030994415, 0.02029419, -0.0019683838, -0.0016813278, -0.0340271, 0.0064315796, 0.010192871, 0.006614685, -0.0057678223, -0.0054893494, 0.010940552, -0.022033691, -0.016281128, -0.029129028, 0.058288574, -0.042755127, -0.053375244, -5.3226948e-05, 0.022094727, -0.014915466, -0.02861023, 0.024414062, -0.07196045, 0.02684021, 0.046936035, 0.0072364807, 0.021987915, -0.02078247, -0.05923462, -0.028869629, -0.00033593178, 0.015701294, -0.0009202957, -0.00067567825, 0.016357422, 0.014167786, 0.031707764, -0.00040102005, -0.032470703, -0.042663574, 0.05279541, 0.037506104, -0.03250122, 0.07366943, -0.056518555, 0.03314209, -0.033203125, 0.046142578, -0.001285553, 0.012924194, 0.006790161, -0.02003479, 0.023223877]}, "B071749XB4": {"id": "B071749XB4", "original": "Brand: GasOne\nName: GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black\nDescription: \nFeatures: Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose\nUniversal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output)\nBrass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring\nHeat resistant - cast iron will not melt easily compared to aluminum construction\nTo be used with propane only\n", "metadata": {"Name": "GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black", "Brand": "GasOne", "Description": "", "Features": "Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose\nUniversal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output)\nBrass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring\nHeat resistant - cast iron will not melt easily compared to aluminum construction\nTo be used with propane only", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.050109863, -0.030685425, -0.012145996, 0.01864624, -0.06567383, 0.013946533, -0.04360962, -0.018341064, -0.014595032, 0.00919342, 0.024658203, -0.00504303, 0.037963867, -0.06817627, 0.04437256, -0.004425049, 0.017593384, 0.00957489, 0.0040397644, -0.03479004, -0.006515503, -0.03074646, 0.033477783, 0.10430908, 0.011634827, 0.0027332306, 0.037719727, -0.02116394, 0.030975342, 0.008850098, 0.038360596, -0.021209717, 0.028396606, 0.0011415482, -0.011711121, -0.016601562, -0.0101623535, -0.0031833649, -0.02468872, 0.018493652, -0.008178711, 0.01096344, 0.012428284, 0.032043457, -0.025024414, -0.017364502, -0.01158905, -0.020492554, -0.018447876, -0.005645752, 0.017196655, -0.029251099, 0.026473999, 0.0032749176, -0.019927979, -0.01638794, -0.0029621124, -0.005203247, 0.0005970001, -0.005264282, 0.011016846, 0.009109497, 0.021759033, 0.021469116, -0.036071777, 0.0340271, 0.048736572, -0.024810791, 0.012245178, -0.06222534, -0.035308838, 0.015701294, 0.0050849915, 0.0054016113, -0.084106445, 0.022750854, 0.027648926, -0.034088135, 0.027511597, -0.030258179, -0.016311646, -0.016052246, 0.013664246, -0.02722168, 0.0115737915, -0.009666443, 0.0011081696, -0.0030937195, 0.001502037, -0.0060653687, -0.0033817291, -0.01927185, -0.033569336, 0.058685303, 0.027191162, -0.027755737, -0.033569336, -0.05819702, 0.05203247, 0.045135498, 0.031204224, -0.05227661, 0.062164307, -0.013114929, 0.006679535, 0.06384277, 0.010253906, 0.05117798, 0.028442383, -0.013641357, 0.010116577, 0.0028877258, 0.016662598, -0.028335571, -0.03488159, 0.0423584, 0.02659607, -0.049865723, 0.011619568, -0.043823242, 0.03866577, 0.041503906, 0.050109863, -0.03387451, 0.0032653809, 0.007522583, -0.026809692, -0.055511475, -0.045166016, 0.045837402, -0.014328003, -0.032043457, 0.028945923, 0.091918945, 0.022033691, -0.018615723, 0.04763794, -0.0035514832, 0.033569336, -0.0262146, 0.016555786, 0.0036125183, 0.01272583, 0.0368042, -0.0010881424, -0.003993988, 0.011726379, 0.012664795, -0.0051651, -0.01928711, -0.018539429, 0.011062622, -0.005874634, 0.0041618347, 0.024108887, 0.007007599, 0.022094727, -0.014060974, 0.005012512, -0.008049011, -0.033996582, -0.025619507, -0.020629883, 0.00793457, -0.0030403137, 0.026397705, 0.052520752, 0.0075798035, -7.3194504e-05, -0.014221191, -0.033966064, 0.022125244, 0.017486572, -0.013786316, 0.0058174133, -0.001282692, -0.052124023, 0.059570312, 0.049316406, -0.089416504, -0.049682617, -0.049682617, 0.10949707, -0.02519226, -0.0054969788, 0.011665344, 0.0075569153, -0.039276123, 0.009979248, -0.017364502, 0.026184082, 0.044647217, 0.010406494, -0.045288086, -0.0076904297, 0.010360718, -0.008796692, 0.017791748, -0.014732361, 0.023406982, -0.028518677, -0.0027923584, 0.008979797, -0.0143585205, -0.045135498, -0.027313232, -0.010940552, 0.035888672, 0.032226562, 0.03152466, -0.013389587, -0.0010547638, 0.017196655, -0.04260254, -0.025222778, 0.025299072, -0.013717651, -0.020553589, 0.0009174347, -0.036315918, 0.045166016, -0.009307861, 0.02331543, 0.074279785, 0.042144775, 0.011207581, -0.01638794, 0.008995056, 0.03112793, 0.02722168, -0.056793213, 0.0049324036, 0.027160645, 0.05206299, -0.017593384, 0.028457642, 0.07598877, 0.052764893, -0.007762909, -0.024398804, 0.009017944, -0.033355713, 0.00047707558, 0.037109375, -0.0046463013, 0.022827148, 0.026412964, -0.0021133423, -0.038879395, 0.014183044, 0.054718018, 0.033966064, 0.004322052, -0.031402588, -0.013374329, 0.027236938, -0.017608643, 0.01713562, -0.024215698, -0.001449585, -0.009094238, 0.0017967224, 0.01600647, -0.020889282, -0.0010585785, 0.043792725, 0.017807007, 0.03527832, -0.03164673, 0.026992798, 0.022521973, 0.0037574768, -0.0078125, -0.0016431808, 0.0101623535, -0.0022296906, -0.02229309, 0.017181396, 0.013130188, -0.00068569183, 0.011199951, 0.0066986084, -0.007724762, -0.00920105, 0.035980225, -0.0006971359, 0.002281189, 0.0053749084, 0.0473938, 0.006000519, 0.041656494, -0.012138367, 0.011619568, 0.0073623657, 0.010437012, -0.042663574, 0.02986145, -0.04083252, 0.024047852, -0.05596924, 0.011802673, 0.038757324, -0.03778076, 0.0067825317, -0.010307312, -0.010826111, 0.011581421, 0.0010128021, -0.0025253296, -0.048797607, 0.029190063, 0.016296387, 0.019073486, 0.00712204, 0.043823242, 0.018539429, 0.02607727, 0.037628174, 0.07513428, 0.079956055, -0.008110046, 0.028717041, -0.025680542, -0.03540039, 0.0116119385, 0.020126343, -0.06903076, -0.010910034, -0.06121826, 0.018112183, 0.006298065, -0.026000977, -0.0017623901, -0.0055274963, -0.011291504, 0.0051651, -0.00762558, 0.026306152, -0.0050201416, -0.026885986, -0.0126953125, -0.0007133484, -0.002319336, -0.027832031, -0.020767212, 0.00018036366, 0.04309082, 0.016525269, -0.072631836, 0.015106201, 0.006134033, -0.046813965, 0.022628784, -0.0037231445, 0.028869629, 0.038269043, -0.038513184, -0.03591919, 0.00983429, -0.070007324, -0.019851685, -0.007259369, -0.02658081, -0.0010728836, 0.008476257, -0.0048294067, -0.03756714, 0.042633057, -0.018844604, 0.0141067505, -0.0050621033, -0.018081665, -0.05770874, -0.015411377, -0.02116394, 0.02368164, 0.06585693, 0.005344391, -0.009635925, 0.044891357, 0.05831909, 0.062805176, -0.038360596, 0.022659302, 0.023895264, 0.0473938, 0.059020996, -0.0023727417, 0.0256958, -0.038635254, 0.0035953522, 0.015640259, 0.0034446716, -0.03439331, 0.029266357, 0.007843018, -0.0068130493, 0.017913818, -0.003736496, -0.029037476, -0.04510498, 0.005138397, -0.022384644, -0.0016222, -0.013618469, -0.04171753, -0.008644104, -0.045043945, 0.002216339, 0.0076560974, 0.0032691956, 0.0036144257, -0.02583313, 0.008422852, -0.007820129, -0.030059814, -0.024765015, -0.017364502, -0.04244995, 0.04623413, 0.06237793, -0.064575195, 0.05307007, 0.070739746, -0.048187256, 0.074035645, -0.011711121, 0.048217773, 0.0065841675, -0.030715942, 0.013557434, -0.039276123, -0.029876709, 0.012680054, 0.029922485, 0.09020996, 0.0105896, -0.004283905, 0.020477295, -0.024353027, -0.012672424, 0.0012960434, -0.07293701, -0.018096924, -0.015930176, -0.052886963, 0.011367798, -0.041290283, -0.007873535, -0.04550171, 0.026657104, -9.274483e-05, -0.010749817, 0.010414124, -0.006931305, 0.12866211, 0.000726223, 0.03591919, -0.037322998, -0.0009841919, -0.0005121231, -0.021408081, 0.0357666, -0.021850586, -0.050933838, 0.023635864, 0.022003174, 0.009735107, -0.048736572, -0.0054016113, -0.019729614, 0.04751587, 0.009338379, -0.009346008, -0.010620117, 0.0030441284, 0.0063591003, 0.0025844574, 0.023468018, -0.002948761, -0.052947998, 0.011024475, -0.02279663, 0.040008545, 0.026245117, -0.02017212, 0.05053711, 0.031951904, 0.006881714, 0.013908386, 0.043151855, -0.006198883, 0.030593872, 0.0060577393, -0.019104004, -0.02267456, -0.010826111, 0.062042236, 0.006793976, -0.0154800415, 0.016082764, -0.016662598, -0.0015001297, -0.00072813034, -0.029968262, -0.0023422241, 0.023788452, -0.01361084, -0.0038719177, -0.031097412, 0.020935059, -0.032348633, -0.0513916, 0.01927185, -0.038970947, -0.011741638, -0.035095215, 0.036895752, -0.06439209, -0.005531311, 0.012969971, 0.027633667, 0.008735657, 0.009239197, -0.003704071, 0.0040130615, 0.006504059, 0.008262634, -0.040100098, 0.030838013, -0.012199402, 0.032409668, 0.031677246, -0.014831543, 0.023635864, -0.0519104, -0.015808105, 0.058013916, -0.00030303, -0.089538574, -0.01234436, 0.022384644, -0.0010633469, -0.047210693, 0.0056762695, 0.0035591125, 0.019104004, 0.022445679, -0.035186768, 0.013870239, -0.012832642, -0.012481689, 0.030181885, -0.022567749, -0.00869751, -0.012542725, 0.016448975, -0.042022705, -0.021942139, 0.06414795, -0.02142334, 0.057037354, -0.056610107, 0.005744934, -0.062683105, 0.005458832, 0.010498047, 0.01676941, 0.011795044, -0.044433594, -0.011726379, -0.020019531, 0.07476807, 0.02748108, 0.014205933, -0.0078048706, -0.0112838745, 0.0050315857, 0.040985107, 0.050933838, 0.0035438538, 0.044525146, -0.027526855, 0.015319824, -0.07861328, 0.032592773, 0.008766174, 0.0017442703, -0.064208984, -0.008338928, 0.05380249, 0.0110321045, 0.022003174, 0.019821167, 0.02494812, -0.02911377, 0.054504395, -0.0770874, -0.033721924, 0.0007748604, -0.037017822, -0.0036945343, 0.0010986328, -0.017684937, 0.036193848, 0.055358887, -0.008201599, -0.0011377335, 0.009567261, 0.04095459, -0.036834717, 0.0055351257, -0.040771484, -0.0027446747, -0.036254883, 0.017196655, -0.030944824, 0.03387451, -0.009086609, 0.007255554, -0.004699707, -0.020111084, -0.00015723705, -0.032226562, 0.0058021545, 0.019241333, -0.03149414, -0.059906006, -0.039154053, 0.050476074, -0.03579712, 0.019256592, 0.020065308, 0.009300232, 0.020187378, -0.02243042, -0.0032215118, -0.024932861, -0.03778076, 0.0076293945, 0.008331299, 0.01852417, -0.013786316, 0.019210815, 0.04888916, 0.021316528, 0.017532349, 0.010009766, -0.010055542, -0.0066108704, -0.030258179, 0.0009737015, -0.0074157715, -0.014404297, 0.029449463, -0.023864746, -0.038238525, -0.010910034, 0.03756714, -0.022323608, -0.059387207, 0.042510986, -0.024673462, 0.023406982, 0.050598145, 0.025405884, 0.019226074, 0.019760132, 0.013114929, 0.016311646, -0.033721924, 0.061065674, 0.005218506, 0.012435913, 0.00856781, -0.03866577, 0.054138184, -0.008605957, -0.022888184, -0.01209259, 0.012329102, 0.01473999, -0.028823853, 0.047698975, -0.050598145, 0.02949524, -0.035858154, 0.005306244, 0.018066406, 0.02180481, 0.01927185, 0.004924774, -0.0059127808, -0.039215088, -0.02607727, -0.017959595, -0.021316528, 0.0046081543, 0.002626419, -0.01676941, 0.023483276, -0.0003900528, -0.0036735535, -0.012084961, -0.016647339, 0.012573242, -0.05303955, 0.0066452026, -0.0129852295, 0.012718201, 0.007205963, -0.008361816, 0.05239868, 0.017150879, -0.059173584, -0.044769287, -0.018829346, 0.022018433, -0.01108551, 0.051513672, -0.008705139, -0.0021629333, 0.028656006, 0.02935791, 0.026931763, 0.0038375854, -0.049438477, 0.018920898, 0.010627747, 0.01461792, -0.02633667, -0.021591187, 0.07293701, -0.047332764, -0.058685303, 0.027648926, 0.024734497, 0.011657715, 0.022415161, 0.037322998, 0.026016235, 0.0042915344, 0.04888916, 0.030883789, -0.043395996, -0.008041382, -0.0011386871, -0.06982422, -0.042816162, -0.055755615, -0.011154175, 0.008338928, -0.024963379, 0.006504059, 0.035339355, 0.026428223, 0.0317688, -0.032928467, -0.047027588, -0.0084991455, -0.01751709, -0.018600464, -0.0066490173, 0.04067993, -0.029129028, 0.02607727, -0.040863037, -0.0423584, -0.05178833, 0.016921997, 0.045410156, 0.039489746, -0.018875122, -0.060394287, -0.033447266, 0.01966858, -0.02192688, 0.0034542084, 0.017486572, 0.04940796, 0.0026226044, 0.048858643, -0.057647705, -0.018447876, -0.058807373, 0.012611389, 0.0029411316, 0.078186035, -0.049926758, 0.02748108, 0.011627197, 0.054626465, -0.002363205, 0.0062294006, 0.0152282715, 0.013435364, -0.022247314, -0.00075387955, 0.03881836, -0.025497437, -0.031341553, -0.021331787, -0.07055664, -0.016571045, -0.030166626, 0.008163452, -0.0116119385, -0.0003042221, -0.014533997, -0.004764557, 0.008811951, -0.035369873, 0.0093307495, 0.015449524, 0.005783081, 0.0040893555, 0.041900635, 0.016784668, -0.018066406, -0.037017822, 0.008728027, 0.048797607, 0.0054397583, 0.0017271042, -0.05923462, 0.0390625, 0.033935547, -0.061706543, -0.021057129, 0.047668457, 0.022644043, -0.00060510635, -0.01727295, 0.009811401, 0.016815186, -0.0206604, 0.025177002, -0.028289795, 0.042907715, 0.014724731, -0.022323608, 0.0027866364, -0.01600647, -0.027175903, -0.008087158, -0.00010859966, 0.016113281, 0.0030059814, -0.03125, 0.042938232, 0.031555176, 0.022491455, 0.009262085, 0.023849487, 0.010902405, 0.0013237, -0.040374756, -0.03857422, -0.010749817, 0.020019531, -0.008392334, -0.0022716522, 0.0025520325, 0.03024292, 0.040222168, 0.0014123917, -0.0035438538, 0.02468872, -0.04724121, 0.030639648, 0.025985718, -0.004535675, 0.011993408, -0.02885437, -0.012229919, -0.016204834, 0.022888184, -0.025421143, 0.010749817, 0.08239746, -0.01309967, -0.077697754, 0.020019531, -0.035247803, -0.011291504, -0.057891846, 0.029846191, -0.019729614, -0.06100464, -0.010955811, -0.04660034, -0.05078125, 0.0012588501, -0.061401367, -0.0574646, -0.00029969215, 0.00076436996, -0.0064468384, -0.018035889, -0.014465332, -0.009559631, -0.024475098, 0.035369873, -0.045166016, 0.019989014, -0.025009155, 0.023849487, -0.02192688, -0.036071777, -0.029922485, 0.048034668, -0.010597229, -0.004924774, 0.004173279, -0.011299133, 0.00969696, -0.026947021, 0.0052871704, 0.0075149536, 0.0140686035, -0.006542206, -0.0128479, -0.024169922, -0.04284668, -0.0054893494, 0.060180664, -0.09918213, -0.09765625, -0.025619507, 0.009170532, -0.00048351288, -0.014076233, 0.021743774, 0.08117676, 0.004627228, 0.008529663, -0.023376465, -0.011779785, -0.005344391, 0.018295288, 0.0029201508, -0.005142212, -0.015403748, 0.028533936, 0.011802673, 0.042877197, 0.0018119812, 0.033447266, -0.026931763, 0.034057617, -0.00031018257, -0.018325806, 0.020019531, 0.0007004738, 0.024337769, 0.011390686, -0.056152344, 0.009277344, -0.031173706, 0.018295288, 0.0087890625, 0.034301758, 0.024139404, -0.008987427, -0.070739746, -0.013191223, -0.025497437, 0.01626587, 0.020339966, 0.0022087097, -0.048309326, -0.01928711, 0.020996094, -0.048217773, -0.020950317, -0.015945435, -0.0025177002, 0.0037879944, -0.0135269165, -0.0126953125, -0.010734558, 0.0053482056, -0.03161621, 0.013877869, 0.07244873, -0.018707275, -0.015213013, -0.03567505, -0.007270813, -0.030288696, -0.023025513, -0.0009355545, -0.0143966675, -0.028396606, 0.007972717, 0.033996582, -0.0115356445, 0.03652954, -0.017578125, 0.0026664734, -0.047576904, 0.014633179, 0.056610107, 0.012619019, -0.10021973, 0.07928467, 0.04901123, 0.03086853, -0.016723633, -0.05105591, -0.042816162, 0.009414673, 0.032989502, -0.00017273426, 0.059417725, -0.01146698, 0.018615723, 0.014671326, 0.0020980835, -0.025375366, 0.008140564, 0.08239746, 0.006095886, 0.014137268]}, "B01LVUYVPT": {"id": "B01LVUYVPT", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFL-SO24DT 30,000 BTU's 24\" Southern Oak Vent Free Gas Log Set\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with propane or natural Gas\nUp to 30,000 BTU's/hr. heats up to 1,000 sq. Ft\nNo electricity required allows for reliable back-up heating incase of an Emergency situation\nDual burner system provides two rows of flames for a more full looking fire\n6 hand painted concrete logs inspired by nature\n", "metadata": {"Name": "Pleasant Hearth VFL-SO24DT 30,000 BTU's 24\" Southern Oak Vent Free Gas Log Set", "Brand": "Pleasant Hearth", "Description": "", "Features": "Dual fuel technology allows the unit to be operated with propane or natural Gas\nUp to 30,000 BTU's/hr. heats up to 1,000 sq. Ft\nNo electricity required allows for reliable back-up heating incase of an Emergency situation\nDual burner system provides two rows of flames for a more full looking fire\n6 hand painted concrete logs inspired by nature", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03527832, -0.0010242462, -0.040527344, -0.05621338, 0.0011720657, -0.029937744, 0.009254456, 0.002368927, -0.052093506, 0.044036865, -0.02432251, 0.015838623, 0.0016527176, -0.004764557, -0.011543274, -0.04257202, 0.025405884, 0.029754639, 0.024337769, -0.03845215, 0.0055274963, -0.015808105, -0.006855011, 0.107177734, 0.05557251, -0.009857178, 0.0005464554, 0.017532349, 0.044525146, 0.021148682, 0.048614502, -0.052001953, 0.083496094, -0.038757324, -0.03591919, 0.020141602, 0.031829834, -0.057617188, -0.06237793, 0.06213379, -0.0045547485, 0.007545471, -0.022964478, -0.058013916, -0.03164673, -0.023925781, 0.0024223328, 0.0038719177, 0.010986328, 0.04623413, -0.014305115, -0.040283203, -0.028579712, 0.021209717, -0.012908936, -0.03741455, -0.013587952, 0.016983032, 0.006095886, -0.0099105835, -0.0060424805, 0.024398804, 0.02532959, 0.04473877, -0.034301758, 0.011230469, 0.066589355, 0.0046081543, 0.015510559, -0.057006836, -0.028915405, 0.03338623, 0.042938232, -0.036132812, -0.0071258545, 0.0007944107, -0.0074882507, -0.011779785, 0.019439697, -0.030349731, -0.03869629, -0.021072388, -0.021911621, -0.018981934, -0.0004580021, 0.009811401, -0.026138306, -0.0010557175, -0.040802002, -0.024841309, -0.027679443, -0.04586792, -0.021743774, 0.012046814, -0.006160736, -0.02508545, -0.048065186, -0.06915283, 0.04421997, -0.0016317368, 0.0002603531, -0.038482666, -0.010543823, 0.014411926, 0.0137786865, 0.060577393, -0.035858154, 0.013122559, 0.063964844, 0.012435913, 0.028533936, 0.01361084, -0.0009627342, -0.011810303, -0.018310547, 0.011672974, -0.033477783, 0.0076789856, 0.010177612, 0.018371582, -0.014633179, 0.010246277, 0.0057029724, 0.014259338, -0.0036792755, 0.009811401, -0.009902954, -0.006111145, -0.006000519, 0.005104065, -0.005744934, -0.017715454, -0.039031982, 0.029464722, -0.003490448, 0.011299133, 0.0055351257, -0.015151978, 0.016708374, -0.025421143, 0.010421753, -0.0043907166, 0.027450562, -0.017669678, -0.0070762634, 0.017913818, 0.02670288, 0.017990112, -0.032073975, -0.0395813, -0.00049734116, 0.0036716461, -0.0055007935, -0.0013456345, 0.013061523, -0.030288696, -0.045684814, 0.0012626648, 0.054626465, 0.01902771, 0.010643005, -0.028381348, -0.017959595, 0.041748047, -0.02722168, 0.053009033, 0.018096924, -0.0033664703, 0.029037476, 0.06359863, 0.0289917, -0.017730713, 0.04257202, 0.011398315, -0.018447876, -0.015472412, -0.01902771, 0.060058594, 0.052825928, -0.07055664, -0.058044434, -0.07434082, 0.11248779, -0.042510986, -0.0069389343, 0.002861023, 0.010910034, -0.014175415, 0.0030269623, 0.0050582886, 0.031280518, 0.04083252, -0.0038337708, -0.008300781, 0.018722534, -0.03414917, -0.071899414, -0.038970947, -0.023254395, 0.03152466, 0.006137848, -0.03616333, 0.05215454, -0.022888184, -0.019683838, 0.0034503937, -0.010192871, 0.02810669, 0.0046920776, 0.0014028549, -0.0041160583, -0.0127334595, 0.03616333, -0.066223145, -0.035583496, 0.0020008087, -0.012008667, 0.055145264, 0.017349243, -0.022323608, 0.029281616, -0.056518555, 0.05142212, 0.024993896, -0.00034999847, 0.006198883, -0.021530151, 0.009178162, -0.0014505386, 0.016738892, 0.01751709, 0.006324768, 0.022323608, 0.06286621, 0.035491943, 0.04626465, 0.08282471, 0.020904541, -0.0026550293, -0.03579712, 0.012748718, -0.036834717, -0.023071289, 0.041534424, -0.028396606, 0.0012845993, 0.031143188, -0.0006914139, -0.0020523071, 0.04699707, 0.0007491112, 0.015930176, 0.011749268, 0.027908325, -0.03842163, 0.026123047, -0.0262146, -0.02243042, 0.0057373047, -0.0036067963, 0.0054016113, 0.05581665, 0.01146698, 0.02960205, 0.03338623, 0.014289856, 0.059539795, 0.057769775, -0.011550903, -0.01928711, 0.0050697327, 0.040863037, 0.0015335083, -0.012519836, -0.01727295, 0.012413025, -0.02407837, 0.01927185, 0.016983032, -0.0184021, -0.025604248, -0.023925781, -0.012145996, -0.011962891, 0.031951904, 0.019577026, 0.016967773, -0.038635254, -0.037109375, -0.009857178, 0.027450562, -0.017044067, -0.042938232, -0.0025501251, 0.012237549, -0.020141602, 0.07092285, -0.06939697, 0.05621338, -0.055541992, 0.039855957, 0.060333252, -0.047027588, 0.030639648, 0.011634827, 0.00046801567, 0.016555786, 0.007858276, 0.014663696, -0.03781128, 0.024414062, 0.0395813, 0.012565613, 0.022781372, -0.0008277893, 0.006111145, -0.0049743652, 0.038970947, 0.05682373, 0.0791626, -0.015556335, 0.049987793, -0.01878357, 0.0025482178, 0.04611206, -0.013809204, -0.030090332, -0.009361267, -0.024276733, -0.0037574768, 0.021453857, -0.013427734, 0.0071907043, -0.017471313, 0.0027065277, -0.0009717941, -0.005924225, -0.0044822693, -0.038604736, -0.037750244, -0.050048828, -0.0006289482, 0.021087646, -0.03527832, -0.076049805, -0.013130188, 0.019805908, -0.0061035156, -0.06100464, -0.019302368, 0.056762695, -0.015457153, 0.019042969, -0.028518677, 0.03817749, -0.058654785, -0.05038452, -0.0070648193, -0.0002875328, -0.060394287, -0.02545166, -0.016708374, -0.05593872, -0.06500244, 0.043548584, -0.002363205, -0.06161499, -0.009780884, -0.043182373, -0.007129669, 0.08178711, -0.023483276, -0.059448242, -0.057525635, -0.09320068, -0.01889038, 0.0803833, 0.00774765, 2.270937e-05, 0.03744507, 0.038208008, 0.026855469, 0.007843018, -0.00730896, 0.024520874, 0.03439331, 0.06048584, 0.029937744, 0.027252197, -0.030151367, 0.014976501, 0.033294678, -0.047210693, -0.011398315, 0.025939941, 0.009216309, -0.03338623, -0.0064735413, -0.07287598, -0.0028686523, -0.056915283, 0.016052246, -0.016906738, -0.011817932, 0.008148193, -0.083618164, -0.015365601, -0.050201416, -0.0023612976, 0.06304932, -0.0011777878, -0.004432678, 0.015853882, -0.013145447, 0.003780365, 0.0018186569, 0.049041748, 0.006034851, 0.004196167, -0.037078857, 0.04827881, -0.07397461, 0.037139893, -0.001739502, -0.031173706, 0.0256958, -0.00038814545, 0.03967285, 0.022659302, 0.009407043, 0.013458252, -0.009292603, -0.018798828, -0.022003174, -0.00447464, 0.034332275, -0.012008667, 0.017044067, -0.014656067, 0.0044174194, -0.04663086, -0.01802063, 0.03894043, 0.01979065, 0.027297974, -0.0050468445, -0.009300232, -0.021240234, 0.0002989769, -0.01576233, -0.009483337, -0.003030777, 0.01612854, 0.016494751, -0.011749268, 0.015022278, 0.019256592, 0.045410156, 0.017425537, -0.05810547, -0.013122559, -0.046691895, -0.015319824, 0.017471313, 0.015289307, -0.05456543, 0.028427124, 0.021957397, 0.029388428, -0.012397766, 0.012260437, 0.05078125, -0.01423645, -0.021835327, 0.026916504, -6.9737434e-05, 0.0025615692, 0.013206482, -0.004798889, -0.011238098, -0.0076065063, -0.011444092, -0.072387695, 0.091918945, 0.0758667, -0.035125732, 0.057159424, 0.036987305, -0.012260437, -0.010322571, -0.00019824505, 0.008728027, -0.005466461, 0.01826477, -0.005256653, -0.008651733, -0.0030155182, -0.012489319, 0.0039405823, -0.018127441, -0.03161621, 0.0068740845, 0.037017822, 0.015594482, -0.062286377, 0.014778137, 0.051605225, 0.003452301, 0.02293396, -0.072265625, 0.052459717, -0.0284729, -0.025619507, 0.012077332, -0.03866577, 0.003900528, -0.044525146, 0.030578613, -0.067871094, -0.00018441677, -0.0045394897, -0.0011119843, 0.018859863, 0.06695557, -0.044891357, -0.015991211, 0.002708435, -0.02142334, -0.0033283234, -0.017227173, 0.03591919, 0.0069732666, -0.027374268, -0.0037460327, -0.0052261353, 0.017959595, -0.006877899, -0.016662598, -0.0524292, -0.050048828, 0.02381897, 0.000813961, -0.038208008, -0.054595947, -0.000934124, 0.005584717, -0.017486572, 0.016662598, -0.004787445, -0.0071105957, -0.020645142, -0.008926392, -0.054595947, -0.040130615, -0.035125732, -0.005458832, -0.020233154, 0.018920898, -0.0016412735, -0.029266357, -0.00422287, -0.015022278, -0.034301758, 0.02168274, 0.03491211, -0.004840851, 0.036071777, -0.014877319, -0.01876831, -0.04171753, -0.049102783, -0.029525757, -0.0154953, -0.007156372, -0.02619934, 0.021957397, -0.03488159, 0.012229919, -0.010513306, 0.013702393, -0.018173218, -0.02444458, -0.022598267, -0.07312012, -0.037597656, -0.012664795, 0.02798462, -0.050994873, -0.042663574, -0.027526855, 0.058563232, -0.0031280518, 0.049865723, 0.013847351, -0.013305664, -0.04144287, 0.032684326, -0.09802246, -0.039794922, -0.02305603, -0.033447266, 0.018371582, -0.00415802, -0.024734497, 0.070617676, 0.05429077, 0.014968872, -0.0134887695, -0.00043678284, -0.008224487, -0.022735596, -0.007633209, -0.009567261, 0.0057373047, -0.018676758, -0.0054893494, 0.026153564, -0.007068634, -0.020889282, -0.05444336, -0.0005302429, 0.017593384, 0.0138549805, 0.024093628, -0.0046920776, 0.0012311935, 0.021881104, 0.04446411, -0.001958847, -0.0149002075, 0.008506775, -0.03074646, -0.00047683716, -0.02734375, 0.050842285, -0.011360168, 0.017211914, 0.043029785, 0.0052337646, -0.033966064, 0.0015792847, 0.01335907, -0.022964478, -0.05441284, 0.08276367, -0.02015686, -0.024475098, 0.025177002, -0.039031982, -0.035858154, -0.06311035, -0.009216309, -0.025543213, 0.016906738, 0.018203735, -0.034179688, -0.0017719269, 0.04446411, -0.005138397, -0.0038795471, -0.02659607, 0.019165039, 0.0071907043, -0.044403076, 0.029006958, -0.029830933, 0.043914795, 0.030380249, -0.015930176, 0.0209198, -0.0051460266, -0.004486084, -0.0016145706, -0.00040984154, 0.030471802, -0.034057617, 0.03930664, 0.009254456, -0.01259613, -0.054626465, -0.0077171326, 0.0015659332, 0.0037059784, 0.033477783, -0.03302002, 0.048217773, 0.016311646, -0.037384033, 0.02746582, 0.04611206, -0.0032615662, -0.017730713, 0.050201416, -0.03753662, -0.04244995, 0.036254883, -0.034973145, 0.045166016, -0.013664246, 0.024276733, 0.024230957, 0.017303467, -0.029220581, -0.013328552, -0.032470703, 0.010437012, -0.0132369995, -0.0051460266, -0.003572464, 0.026321411, -0.013916016, -0.049316406, -0.006729126, -0.0019416809, -0.031951904, -0.028961182, -0.038391113, -0.008529663, -0.013412476, 0.051940918, -0.03024292, 0.021057129, 0.05706787, -0.014831543, 0.0039978027, 0.056274414, -0.04550171, 0.0011911392, 0.005870819, 0.009628296, 0.0014410019, -0.004638672, 0.03149414, -0.018234253, -0.014503479, -0.017486572, 0.03366089, -0.0076141357, -0.0079422, 0.07745361, 0.07525635, 0.0021915436, 0.03164673, 0.015106201, -0.04812622, 0.036987305, -0.008125305, -0.022735596, -0.044769287, -0.029663086, -0.026046753, 0.020629883, -0.050354004, -0.03543091, 0.020812988, -0.010185242, -0.004890442, -0.020874023, -0.056030273, 0.018493652, -0.059814453, 0.010368347, -0.0043678284, 0.012817383, 0.005695343, 0.0022449493, -0.029632568, 0.028259277, -0.0045280457, 0.02204895, 0.002462387, -0.020828247, -0.012138367, 0.01966858, 0.02015686, 0.044891357, 0.027130127, -0.055541992, -0.010116577, 0.022903442, 0.028442383, -0.0011491776, -0.011985779, -0.005458832, -0.027526855, -0.013000488, 0.014595032, 0.030227661, 0.00083494186, 0.02760315, 0.024505615, 0.0135269165, 0.031799316, 0.03817749, 0.046020508, 0.010696411, -0.012161255, 0.010437012, 0.022277832, -0.022659302, -0.02078247, -0.029205322, -0.04574585, 0.011650085, -0.027526855, 0.030471802, -0.032287598, 0.04348755, -0.0101623535, 0.015403748, 0.01689148, 0.006427765, 0.021896362, -0.0026054382, -0.017440796, 0.009895325, 0.013763428, -0.017837524, -0.005340576, 0.038604736, 0.009262085, 0.021362305, 0.012634277, 0.03515625, -0.034240723, 0.01940918, 0.037506104, -0.06604004, -0.02229309, -0.03302002, -0.0036563873, -0.043823242, -0.07434082, -0.036590576, -0.027923584, 0.021942139, -0.0090408325, 0.084350586, -0.0046653748, 0.011947632, 0.03152466, -0.013748169, 0.044067383, 0.004623413, 0.058044434, -0.004272461, 0.00018000603, -0.028640747, -0.049926758, 0.010437012, 0.023986816, 0.019058228, 0.04067993, -0.03201294, 0.013305664, -0.004146576, 0.025497437, -0.02243042, -0.038330078, -0.020141602, 0.005821228, 0.013938904, 0.012062073, -0.01737976, 0.0004940033, 0.025497437, -0.022277832, 0.026916504, -0.028015137, 0.03753662, 0.024475098, 0.028137207, -0.035095215, -0.0211792, -0.013008118, -0.010147095, 0.0099105835, 0.009597778, 0.016815186, -0.029525757, 0.009918213, -0.03164673, 0.02017212, -0.03555298, 0.0017118454, -0.03201294, 0.030136108, 0.037353516, 0.04559326, -0.012840271, 0.008934021, -0.008720398, -0.010536194, 0.025131226, -0.022323608, 0.02545166, -0.020385742, 0.006641388, -0.02104187, 0.00065135956, -0.020401001, -0.01965332, 0.010574341, -0.033325195, -0.034088135, 0.0030670166, -0.0026073456, -0.033233643, -0.024383545, -0.03564453, 0.011756897, -0.015434265, -0.020645142, -0.01448822, 0.010177612, 0.036895752, -0.029464722, -0.019348145, 0.016448975, -0.004802704, -0.02381897, 0.024124146, -0.025177002, -0.05596924, -0.0015201569, 0.050750732, -0.076171875, -0.04220581, -0.015045166, -0.029876709, -0.042266846, -0.03744507, -5.0723553e-05, 0.019119263, 0.033416748, -0.016540527, -0.0015764236, 0.0030555725, 0.010719299, -0.0004234314, 0.00023519993, -0.035095215, -0.03390503, -0.016845703, 0.012680054, 0.013793945, 0.004852295, 0.01991272, -0.0413208, 0.036193848, 0.026794434, -0.0046081543, -0.045288086, 0.014480591, 0.0096206665, 0.0013828278, -0.017852783, 0.047607422, 0.03894043, 0.025131226, 0.026443481, 0.018493652, 0.043121338, -0.021316528, -0.068847656, -0.06451416, -0.031341553, 0.050872803, -0.056152344, -0.055511475, 0.028030396, 0.0069274902, -0.020187378, -0.0118255615, 0.045288086, -0.0178833, 0.0038204193, 0.024520874, -0.0289917, -0.008514404, -0.011238098, -0.010093689, -0.020721436, 0.015159607, 0.04925537, -0.021575928, 0.0047035217, 0.015823364, -0.0592041, 0.0009160042, -0.0053138733, -0.038146973, -0.03024292, -0.046569824, 0.048736572, 0.035614014, 0.013710022, 0.041107178, 0.025726318, -0.01096344, -0.02848816, 0.0018701553, 0.015945435, -0.0004878044, 0.0047302246, -0.031158447, -0.001912117, 0.028244019, 0.01008606, -0.07952881, -0.03237915, 0.06518555, 0.01638794, -0.053771973, 0.034057617, -0.0690918, 0.020141602, 0.0031871796, -0.010910034, 0.0020923615, -0.008972168, 0.04144287, -0.027938843, -0.003967285]}, "B006WRLBNU": {"id": "B006WRLBNU", "original": "Brand: Weber\nName: Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7\" Long\nDescription: \nFeatures: Cordierite stone absorbs moisture for light and crispy thin crust pizza\nCarry rack makes transporting the pizza quick and easy\nFits into the Gourmet BBQ System cooking grate so that it stays in place while grilling\nEnjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings\n", "metadata": {"Name": "Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7\" Long", "Brand": "Weber", "Description": "", "Features": "Cordierite stone absorbs moisture for light and crispy thin crust pizza\nCarry rack makes transporting the pizza quick and easy\nFits into the Gourmet BBQ System cooking grate so that it stays in place while grilling\nEnjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022949219, -0.00061511993, -0.055786133, -0.021591187, -0.043701172, -0.01146698, -0.07055664, 0.0015115738, -0.008354187, 0.035339355, 0.008506775, -0.005897522, 0.03765869, -0.047668457, -0.0055236816, -0.004634857, 0.03466797, -0.014381409, 0.021133423, -0.017166138, 0.016937256, -0.0020923615, 0.0055732727, 0.07116699, 0.011932373, 0.015022278, 0.005832672, -0.0070152283, 0.021652222, 0.012138367, 0.012245178, -0.009796143, 0.032592773, 0.0071105957, -0.0309906, -0.032989502, -0.022918701, 0.008338928, -0.021865845, 0.01399231, 0.013809204, -0.0022640228, 0.028930664, 0.03414917, -0.0015830994, 0.00037407875, -0.0072784424, -0.05355835, 0.027877808, 0.008575439, -0.00818634, 0.008728027, -0.0011577606, -0.0010728836, -0.006668091, -0.0057792664, -0.023620605, 0.030380249, 0.021987915, 0.04623413, -0.012397766, 0.008430481, -0.011909485, -0.058532715, -0.0021381378, 0.016113281, 0.10223389, -0.014846802, -0.05947876, -0.04437256, 0.019699097, -0.0018644333, 0.031585693, -0.014419556, -0.009002686, -0.0038032532, 0.0076293945, -0.0096588135, 0.023880005, -0.0074424744, -0.03277588, -0.01739502, 0.03475952, -0.040893555, -0.02331543, -0.035308838, -0.022476196, 0.0032367706, 0.0546875, -0.010223389, 0.04208374, 0.010917664, -0.03829956, 0.0769043, 0.045898438, -0.06317139, -0.05218506, -0.08325195, 0.027328491, 0.036895752, 0.025634766, -0.031402588, 0.0473938, -0.0051345825, -0.022781372, 0.04043579, 0.009132385, 0.03866577, -0.0027122498, 0.019592285, 0.0008134842, -0.048675537, -0.0010375977, -0.0418396, 0.0119018555, 0.036315918, -0.0005583763, 0.030914307, 0.025894165, 0.013038635, -0.019302368, 0.022750854, -0.0007119179, -0.008483887, 0.053375244, 0.04699707, 0.011291504, -0.021621704, -0.07897949, 0.0048446655, 0.0259552, 0.022201538, 0.016693115, 0.05496216, -0.008918762, -0.00065755844, -0.02330017, -0.0062446594, 0.020751953, -0.020614624, -0.015930176, -0.0034809113, 0.07519531, 0.004650116, -0.023147583, -0.018936157, 0.01701355, 0.04071045, -0.0062675476, -0.030349731, 0.0129852295, 0.03024292, 0.060424805, 0.021484375, -0.0713501, 0.017410278, 0.02822876, -0.015182495, -0.080200195, -0.07232666, -0.0256958, -0.007911682, 0.0049095154, -0.022766113, -0.04611206, 0.00015437603, 0.01676941, 0.0012683868, 0.02204895, 0.03543091, 0.0025424957, -0.039764404, -0.018875122, 0.015403748, -0.0032424927, 0.025054932, 0.001200676, -0.03237915, 0.04699707, -0.034301758, -0.04840088, -0.019500732, 0.036376953, -0.008712769, -0.0072898865, 0.009140015, 0.00028061867, -0.0055122375, 0.02128601, 7.587671e-05, 0.02494812, 0.027526855, -0.060943604, 0.06762695, 0.0014257431, 0.008590698, -0.0234375, 0.030273438, -0.00073862076, -0.056610107, -0.02520752, 0.0029563904, 0.01953125, 0.019760132, 0.0037670135, 0.020523071, -0.010795593, 0.028442383, 0.016235352, 0.011871338, -0.0029125214, 0.009963989, -0.019470215, -0.037902832, -0.02772522, 0.042266846, -0.026565552, 0.021987915, 0.004207611, 0.020965576, -0.014190674, 0.014572144, -0.009780884, -0.009017944, 0.0178833, 0.038757324, -0.02142334, 0.034851074, 0.029220581, 0.050079346, -0.038085938, -0.036102295, 0.06304932, 0.040893555, -0.027923584, 0.05053711, 0.027160645, 0.067993164, -0.042144775, -0.010192871, -0.015106201, -0.044067383, -0.029708862, 0.07208252, -0.021148682, 0.016586304, -0.008613586, 0.054840088, -0.014846802, -0.0107421875, -0.0016384125, -0.012084961, 0.03427124, -0.04248047, -0.0287323, 0.04525757, 0.01436615, 0.020935059, -0.030654907, 0.00674057, 0.0002951622, 0.049316406, -0.007408142, 0.022323608, 0.022506714, 0.030471802, 0.029251099, 0.03225708, -0.043945312, 0.054534912, 0.01550293, -0.012481689, -0.0140686035, -0.026260376, 0.04135132, 0.028625488, -0.046569824, 0.017333984, 0.030715942, -0.01109314, 0.03253174, 0.041870117, 0.012748718, -0.002084732, 0.009811401, 0.0030326843, 0.0005645752, 0.025436401, -0.07067871, -0.060058594, -0.015609741, 0.019943237, -0.020523071, -0.015083313, 0.0119018555, -0.016494751, 0.06585693, 0.07611084, -0.02041626, 0.0050354004, -0.0072021484, 0.008903503, -0.071899414, 0.03262329, -0.028564453, 0.020828247, -0.008705139, -0.013183594, -0.024108887, -0.06640625, 0.029388428, -0.009017944, 0.029815674, -0.04788208, 0.07476807, 0.045776367, 0.019256592, 0.041107178, 0.013458252, -0.0027008057, -0.0024471283, -0.02331543, -0.008216858, -0.016235352, -0.016723633, 0.008598328, -0.025238037, -0.0010089874, -0.048309326, 0.0027885437, -0.037384033, -0.054229736, -0.040893555, 0.017791748, -0.012321472, 0.019744873, -0.0052604675, 0.03652954, -0.019744873, -0.03845215, -0.033081055, -0.02079773, 0.010681152, -0.030929565, -0.023880005, -0.014503479, -0.029159546, 0.025787354, -0.02619934, -0.02381897, 0.014671326, -0.04055786, -0.008010864, -0.0060539246, -0.0019702911, -0.020248413, 0.010505676, -0.009735107, -0.01802063, -0.044433594, -0.056640625, -0.012374878, -0.06781006, 0.018447876, 0.036376953, 0.0059661865, -0.041107178, 0.043792725, -0.028533936, -0.011924744, 0.028579712, -0.034729004, -0.029724121, -0.029968262, -0.03540039, 0.01210022, 0.015655518, -0.03326416, -0.019180298, -0.01020813, 0.011146545, 0.03768921, 0.00031638145, 0.042175293, 0.003967285, 0.04046631, 0.04837036, 0.06567383, -0.011367798, -0.037200928, -0.022155762, 0.05053711, -0.07910156, -0.0309906, 0.0033779144, 0.016998291, 0.0435791, -0.004337311, -0.010726929, -0.049102783, -0.091552734, -0.007980347, -0.02255249, -0.04425049, 0.008117676, -0.078430176, -0.04159546, -0.061950684, -0.003200531, 0.03668213, 0.0019931793, -0.013763428, 0.009666443, -0.016464233, 0.03112793, -0.021652222, 0.042053223, -0.009979248, 0.040405273, -0.044403076, -0.0056991577, -0.041259766, 0.0070266724, 0.019317627, -0.057891846, 0.011909485, -0.032318115, 0.044006348, -0.0035591125, 0.023986816, -0.023727417, 0.0020866394, -0.0054969788, 0.0004940033, -0.05606079, 0.0029392242, 0.0078086853, 0.0037822723, 0.053222656, -0.03225708, -0.02142334, -0.013671875, 0.01259613, 0.03062439, 0.0031337738, 0.010276794, -0.0124053955, -0.015602112, -0.042419434, -0.027252197, 0.02420044, -0.0008215904, 0.028305054, 0.021118164, 0.019973755, 0.07318115, 0.016555786, 0.031707764, 0.042144775, 0.02116394, 0.013412476, -0.017959595, 0.011619568, 0.013687134, 0.0012369156, -0.036346436, 0.06402588, -0.019866943, -0.028945923, 0.02255249, -0.02331543, 0.0079956055, 0.018615723, 0.005958557, -0.019622803, -0.009147644, 0.009292603, 0.03186035, -0.03515625, -0.017990112, -0.036071777, 0.0020580292, -0.07128906, 0.04534912, 0.038513184, -0.028717041, 0.035003662, 0.033691406, -0.0042266846, 0.03967285, -0.00027799606, 0.015777588, 0.012359619, 0.038238525, -0.002073288, 0.010574341, 0.025421143, -0.022827148, 0.036743164, 0.023330688, -0.07928467, 0.016036987, -0.022949219, -0.04916382, 0.022399902, 0.008934021, 0.013336182, -0.011405945, -0.0042800903, 0.023712158, 0.008552551, -0.021911621, -0.006504059, 0.027679443, -0.02748108, -0.013763428, 0.008865356, -0.00995636, -0.03652954, 0.0027065277, -0.008346558, 0.02748108, -0.02003479, 0.038330078, 0.005596161, 0.014930725, -0.04348755, 0.016738892, -0.026245117, 0.023132324, 0.012481689, 0.023162842, 0.022888184, -0.003250122, -0.010513306, -0.01663208, -0.0026931763, -0.018447876, -0.020126343, -0.013725281, -0.020965576, 0.022415161, 0.03262329, 0.0038051605, 0.025604248, -0.06390381, -0.012336731, -0.011894226, -0.033691406, -0.018600464, -0.020126343, -0.01586914, -0.032165527, 0.0024929047, 0.021911621, -0.06738281, -0.04208374, -0.0004029274, -0.022613525, 0.013221741, -0.0007724762, 0.0625, -0.029830933, -0.047851562, -0.04574585, -0.0082473755, 0.048828125, 0.04776001, 0.031677246, -0.05508423, -0.021499634, -0.024353027, 0.09588623, 0.021469116, 0.040222168, -0.008857727, -0.015617371, -0.009109497, 0.011177063, 0.035095215, -0.021026611, 0.029724121, -0.008773804, -0.036987305, -0.0119018555, -0.04547119, 0.06451416, -0.06567383, -0.008880615, -0.052856445, 0.0072021484, -0.012687683, -0.011917114, -0.034210205, 0.002023697, 0.0016088486, 0.0042915344, 0.0087890625, 0.03375244, 0.015258789, -0.002521515, 0.005054474, -0.006259918, -0.024246216, -0.019424438, 0.020141602, 0.0022830963, -0.023254395, -0.03616333, -0.04083252, 0.021621704, 0.03894043, -0.032165527, 0.0046463013, -0.05319214, 0.021392822, -0.09338379, 0.06762695, 0.0770874, 0.034698486, 0.011230469, -0.012069702, -0.0129470825, -0.034576416, -0.010322571, -0.004016876, 0.024139404, 0.003206253, -0.022598267, 0.02166748, 0.008636475, -0.0038871765, -0.013572693, -0.015342712, 0.02633667, 0.0021800995, 0.019317627, 0.021606445, 0.014755249, -0.027160645, -0.010971069, 0.039398193, -0.00017440319, -0.0023994446, -0.01234436, -0.039398193, -0.018920898, -0.038879395, -0.031921387, -0.02305603, 0.035491943, 0.024841309, 0.019226074, 0.005138397, -1.8775463e-05, -0.012191772, -0.041931152, 0.036895752, -0.022399902, 0.017440796, -0.0078086853, 0.038879395, -0.014175415, 0.020584106, 0.014198303, 0.005760193, 0.0023498535, 0.049346924, -0.047851562, 0.06542969, 0.015403748, -0.03262329, 0.010658264, -0.040618896, 0.0002772808, 0.050842285, 0.020858765, 0.02709961, 0.0423584, -0.036193848, -0.0043678284, 0.07763672, 0.07574463, -0.0029258728, -0.046661377, 0.03552246, 0.02331543, -0.010650635, 0.053466797, 0.056915283, -0.01637268, -0.02267456, 0.08117676, -0.019378662, -0.06524658, 0.072753906, -0.037872314, -0.007205963, -0.02861023, 0.005832672, -0.016555786, 0.0052337646, 0.019195557, -0.015823364, -0.028793335, 0.015617371, 0.03515625, -0.019485474, -0.009025574, 0.0048980713, -0.013145447, 0.0053977966, 0.029281616, -0.0023975372, 0.014343262, -0.03125, -0.022125244, 0.018692017, -0.033691406, 0.010566711, -0.017837524, 0.0075531006, -0.006511688, -0.022628784, 0.0029125214, 0.03302002, -0.038238525, 0.02281189, 0.010070801, 0.050201416, -0.04650879, 0.039611816, 0.06347656, -0.06530762, -0.011260986, -0.06677246, 0.025985718, -0.008285522, -0.002363205, 0.031677246, -0.0041046143, -0.00022614002, 0.024810791, 0.0065994263, 0.010322571, 0.053222656, 0.04171753, 0.012245178, -0.025543213, 0.017684937, 0.0011463165, -0.022247314, -0.0435791, -0.020324707, 0.050842285, 0.011146545, -0.053649902, -0.043121338, -0.05392456, 0.021209717, -0.023391724, 0.024246216, 0.0069885254, -0.020858765, -0.015258789, -0.0010843277, -0.066101074, -0.011642456, 0.010383606, 0.024978638, 0.05001831, -0.03466797, 0.043151855, 0.08544922, -0.029891968, 0.042816162, -0.06427002, 0.031463623, 0.0014019012, 0.072509766, 0.031463623, 0.035125732, -0.0075035095, -0.03048706, -0.010810852, 0.0030403137, 0.08001709, -0.019744873, 0.007396698, 0.039245605, 0.032409668, 0.0034008026, 0.002878189, 0.09338379, 0.02394104, -0.0011463165, 0.03704834, 0.02166748, 0.045928955, -0.03515625, -0.028961182, -0.029830933, -0.017974854, 0.012954712, 0.0017576218, 0.0368042, -0.020507812, 0.03363037, 0.025848389, 0.0027637482, 0.029403687, 0.028442383, -0.0038795471, 0.0034980774, -0.077697754, 0.042022705, -0.05404663, -0.0045166016, -0.015357971, 0.011802673, 0.019454956, 0.033050537, -0.022491455, 0.04852295, 0.016082764, 0.020217896, 0.0068130493, -0.023132324, 4.4882298e-05, -0.034210205, 0.013999939, -0.011833191, -0.023864746, 0.002462387, 0.044799805, 0.0020713806, -0.005695343, -0.007019043, 0.024459839, -0.015350342, 0.01512146, 0.02357483, -0.0019273758, 0.024139404, 0.013626099, 0.060577393, 0.034606934, -0.042755127, -0.010551453, -0.010353088, 0.032409668, -0.044769287, -0.025146484, 0.011985779, 0.01876831, -0.0063819885, 0.07623291, -0.022140503, -0.009811401, -0.020599365, -0.025939941, 0.039367676, 0.0071144104, 0.011421204, 0.024932861, -0.036865234, 0.00894165, -0.010429382, 0.005683899, -0.009941101, 0.024459839, -0.041748047, 0.010414124, -0.0066184998, -0.01713562, 0.020095825, 0.0016307831, 0.004055023, 0.021697998, -0.01725769, 0.019012451, -0.023391724, 0.04360962, -0.015129089, 0.005619049, -0.027038574, 0.027359009, 0.005207062, -0.017120361, 0.0050849915, 5.376339e-05, 0.00019717216, 0.009544373, 0.039154053, 0.017669678, 0.036193848, 0.02255249, 0.0061683655, -0.015701294, 0.0035114288, 0.027313232, -0.040771484, -0.009140015, -0.016860962, 0.0069122314, -0.0075531006, 0.04269409, 0.0047340393, 0.009773254, -0.016357422, 0.016281128, 0.02079773, -0.036468506, -0.026992798, -0.0034503937, 0.011436462, -0.050689697, 0.001958847, -0.007461548, 0.04812622, 0.010627747, 0.04473877, -0.006412506, -0.026992798, -0.03466797, 0.0018844604, -0.0059318542, -0.017730713, 0.0020332336, 0.008476257, 0.030136108, -0.0065689087, -0.03225708, 0.05984497, -0.0056495667, -0.025878906, -0.008369446, -0.007019043, -0.06762695, 0.109375, 0.028884888, -0.028121948, 0.050476074, 0.06561279, -0.009277344, 0.03390503, 0.019760132, -0.007858276, -0.08227539, -0.040802002, -0.072265625, -0.009300232, 0.02178955, -0.028320312, 0.02281189, 0.0041999817, -0.061431885, -0.013069153, 0.0027198792, 0.004245758, 0.016799927, 0.014045715, 0.007858276, 0.0056648254, -0.014389038, 0.0011749268, -0.0025310516, -0.015960693, 0.0074005127, 0.036132812, -0.00036859512, -0.008117676, 0.013809204, -0.025466919, -0.024215698, -0.021820068, -0.028747559, 0.044647217, -0.027557373, -0.013809204, 0.019577026, 0.01576233, -0.03225708, 0.009727478, -0.014411926, 0.062164307, -0.033721924, -0.014640808, -0.0062675476, 0.017807007, 0.019378662, -0.02897644, -0.009162903, -0.04156494, 0.021759033, 0.023803711, 0.011352539, -0.009185791, 0.009483337, -0.018371582, -0.0138168335, 0.027938843, 0.0075416565, 0.028808594, -0.004173279, 0.026535034, 0.008003235, 0.05053711, -0.022644043, -0.095825195, -0.060577393, 0.012931824, 0.009017944, -0.0033988953, 0.07647705, -0.019515991, 0.017150879, -0.014877319, 0.012268066, -0.029327393, 0.007411957, -0.004371643, 0.0031642914, 0.027755737]}, "B0753BKVJX": {"id": "B0753BKVJX", "original": "Brand: GOJOOASIS\nName: GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet\nDescription: Specifications:
      - Weight: 44lbs
      - Cover Color: Brown/Coffee
      - Frame Color: Black
      - Material: Metal, Polyester
      - Overall Dimensions: 98.4\"L x 59.1\"W x 106.3\"H

      Features:
      - Stylish double layered Fire-retardant canopy cover
      - Slanted roof to help keep clear of debris
      - 180GSM Polyester tent material and vented at top
      - Rust resistant powder coated steel frame
      - Come with hook on the middle top, put up fan, lights and so on
      - 2 iron meshes for grill accessories, beverages or food
      - Included 7 x Pegs
      - 1 Bottle opener attached to frame
      - Footprint size 8' x 5'
      - Designed specifically to house a barbecue
      - Assembly\u00a0required\u00a0comes\u00a0with\u00a0instructions\u00a0and\u00a0all\u00a0hardware\u00a0included

      Note:
      We do not recommend leaving set-up over several days, in adverse weather conditions.

      Descriptions:
      This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day.\u00a0The durable canopy protects you from harmful UV rays and has a stable iron frame.\u00a0There is one metal shelves on each side of the shelter to offer a handy place to set food and other items.\u00a0It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill.\u00a0Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.\nFeatures: Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide\nBBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDouble-tier top cover design not only looks good but is designed to make Good ventilating\nSafe flame-resistant top canopy with Water and UV resistant function for long lasting use\nGojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "metadata": {"Name": "GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet", "Brand": "GOJOOASIS", "Description": "Specifications:
      - Weight: 44lbs
      - Cover Color: Brown/Coffee
      - Frame Color: Black
      - Material: Metal, Polyester
      - Overall Dimensions: 98.4\"L x 59.1\"W x 106.3\"H

      Features:
      - Stylish double layered Fire-retardant canopy cover
      - Slanted roof to help keep clear of debris
      - 180GSM Polyester tent material and vented at top
      - Rust resistant powder coated steel frame
      - Come with hook on the middle top, put up fan, lights and so on
      - 2 iron meshes for grill accessories, beverages or food
      - Included 7 x Pegs
      - 1 Bottle opener attached to frame
      - Footprint size 8' x 5'
      - Designed specifically to house a barbecue
      - Assembly\u00a0required\u00a0comes\u00a0with\u00a0instructions\u00a0and\u00a0all\u00a0hardware\u00a0included

      Note:
      We do not recommend leaving set-up over several days, in adverse weather conditions.

      Descriptions:
      This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day.\u00a0The durable canopy protects you from harmful UV rays and has a stable iron frame.\u00a0There is one metal shelves on each side of the shelter to offer a handy place to set food and other items.\u00a0It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill.\u00a0Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.", "Features": "Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide\nBBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDouble-tier top cover design not only looks good but is designed to make Good ventilating\nSafe flame-resistant top canopy with Water and UV resistant function for long lasting use\nGojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04510498, -0.031463623, -0.032196045, -0.028396606, -0.033569336, 0.021377563, -0.024871826, 0.029434204, -0.052978516, 0.022628784, -0.007511139, 0.012626648, -0.022705078, -0.015625, 0.013008118, -0.057006836, 0.029647827, -0.04421997, -0.0076408386, -0.026809692, 0.009819031, -0.021636963, 0.026947021, 0.052459717, 0.0256958, -0.012588501, 0.014137268, -0.010681152, 0.0357666, 0.0181427, 0.017791748, -0.031066895, 0.051330566, -0.025054932, -0.011871338, 0.0047683716, -0.017837524, -0.010169983, -0.008140564, -0.005218506, 0.038970947, -0.01399231, -0.04647827, 0.0071411133, -0.038391113, -0.014419556, 0.004383087, -0.018844604, 0.02331543, -0.06542969, 0.0007829666, 0.041656494, 0.034210205, -0.06085205, -0.011695862, 0.029815674, 0.015357971, -0.030715942, 0.021408081, -0.0013103485, -0.013214111, 0.0042686462, 0.023345947, -0.0053710938, -0.037078857, 0.024642944, 0.03262329, -0.01449585, -0.015335083, -0.045532227, -0.0063285828, -0.00623703, 0.033081055, 0.007965088, -0.014381409, -0.10272217, 0.033966064, -0.06402588, 0.0067214966, 0.010368347, -0.00076532364, -0.023361206, 0.027145386, -0.020706177, 0.0028972626, -0.024841309, 0.006652832, 0.009880066, 0.040924072, -0.021759033, 0.018936157, 0.0011711121, -0.04067993, 0.05831909, 0.02897644, -0.054504395, -0.056274414, -0.034118652, 0.004310608, 0.012619019, -0.0052719116, -0.013580322, 0.0018167496, 0.0043144226, -0.033966064, 0.05215454, 0.028747559, 0.032409668, -0.017410278, 0.012886047, -0.0028362274, -0.038726807, 0.0062026978, -0.027053833, -0.04046631, 0.0036125183, 0.0178833, -0.014907837, 0.03036499, -0.056121826, -0.037719727, -0.018798828, -0.06414795, 0.08416748, 0.047424316, 0.054229736, 0.019622803, 0.055541992, -0.04373169, -0.00667572, -0.012428284, 0.007865906, 0.051483154, 0.056396484, 0.0010824203, 0.0033779144, 0.018798828, -0.021896362, 0.014579773, 0.020339966, -0.05328369, 0.009986877, 0.08935547, -0.03050232, -0.03201294, 0.046325684, 0.026000977, -0.004798889, -0.020462036, -0.103027344, 0.03488159, -0.006378174, 0.04232788, 0.017196655, -0.04824829, -0.03564453, 0.031311035, -0.053741455, -0.012832642, -0.07104492, -0.021957397, -0.02772522, -0.00035762787, -0.01965332, -0.03994751, 0.036590576, 0.015045166, -0.004447937, 0.0057754517, 0.007247925, -0.034301758, 0.022125244, 0.01499939, -0.00053167343, -0.0010547638, 0.017562866, -0.0010633469, 0.05810547, 0.08685303, -0.10192871, -0.08795166, -0.062072754, 0.1381836, -0.052978516, 0.004207611, -0.04321289, 0.020202637, -0.023208618, -0.009902954, 0.020828247, 0.056884766, 0.018661499, -0.035247803, -0.0109939575, -0.0076065063, 0.020767212, -0.010421753, 0.024810791, 0.001156807, -0.006549835, -0.07904053, -0.01486969, 0.018737793, 0.017211914, 0.020370483, -0.0041618347, -0.00868988, 0.04135132, 0.0073013306, 0.004627228, 0.01576233, 0.012588501, -0.027053833, -0.023010254, -0.03857422, -0.015335083, -0.031280518, 0.030960083, -0.0022945404, 0.045776367, 0.015388489, -0.030319214, 0.005542755, -0.0016374588, 0.0519104, 0.013877869, -0.019195557, -0.008354187, 0.04425049, 0.022140503, -0.04928589, 0.030380249, 0.028305054, -0.013137817, -0.004245758, 0.06286621, 0.09692383, 0.026260376, -0.04434204, -0.0090789795, 0.012466431, -0.035308838, -0.035308838, 0.02532959, 0.023925781, -0.032043457, -0.029449463, 0.03933716, -0.009384155, 0.0079422, -0.016555786, 0.016708374, 0.039855957, 0.017669678, -0.01701355, 0.04043579, -0.044189453, 0.021392822, -0.057373047, 0.023086548, -0.009719849, 0.028793335, 0.036132812, -0.0051231384, 0.08154297, -0.011772156, 0.06903076, 0.045715332, -0.013221741, -0.0082473755, 0.0021095276, 0.01637268, -0.01776123, 0.00035881996, 0.049072266, -0.060943604, -0.037078857, 0.010864258, -0.022613525, -0.02432251, 0.02809143, -0.00081157684, -0.018829346, -0.0017290115, 0.06414795, -0.00283432, -0.021148682, 0.0026779175, -0.014961243, -0.0036525726, -0.000872612, 0.032073975, 0.002450943, -0.023925781, 0.06384277, -0.0035114288, -0.00730896, -0.00028204918, 0.032989502, -0.040771484, -0.0395813, 0.031066895, -0.022445679, -0.005382538, -0.020843506, 0.020965576, -0.02720642, -0.021972656, -0.026412964, -0.06793213, 0.037322998, 0.016021729, 0.056915283, -0.034240723, 0.106933594, 0.05493164, 0.028701782, 0.09210205, 0.08526611, 0.06933594, -0.0027484894, -0.014198303, -0.029220581, -0.014862061, -0.0022964478, 0.0057640076, -0.020507812, -0.0046539307, -0.041412354, -0.015594482, 0.022598267, -0.035614014, -0.015205383, 0.013725281, 0.020065308, 0.0047721863, -0.0046043396, -0.00617218, 0.015304565, 0.0008096695, 0.03286743, 0.061950684, 0.014564514, -0.01197052, -0.02319336, -0.018692017, -0.008987427, -0.00052309036, 0.0154953, -0.009643555, 0.005710602, -0.020339966, -0.010223389, -0.009086609, -0.01234436, -0.033966064, 0.0059890747, -0.062438965, -0.07611084, -0.09289551, -0.023117065, -0.028762817, -0.06512451, -0.05142212, 0.03692627, 0.022521973, -0.05429077, -0.0064315796, 0.012504578, 0.048828125, 0.043060303, 0.017150879, -0.014762878, -0.02293396, -0.05886841, -0.042541504, 0.006565094, -0.031921387, -7.337332e-05, -0.006416321, 0.0009775162, 0.020996094, -0.0010690689, 0.027877808, 0.030731201, 0.025604248, 0.033721924, 0.053100586, -0.014556885, -0.03567505, -0.012542725, 0.04144287, -0.014183044, 0.010688782, 0.0061569214, 0.008239746, -0.0048065186, -0.007282257, -0.04309082, -0.02003479, -0.06774902, 0.004371643, 0.0015468597, -0.032470703, -0.0032176971, -0.055480957, -0.047332764, -0.0473938, -0.004459381, 0.050598145, -0.028320312, 0.02696228, -0.016448975, 0.021911621, 0.02104187, -0.010009766, 0.03540039, -0.0059394836, 0.01651001, -0.032989502, 0.0031604767, 0.003414154, 0.014228821, 0.005306244, -0.055603027, 0.045532227, -0.028778076, 0.044158936, -0.028839111, 0.01739502, -0.00749588, -0.019592285, 0.010391235, -0.007522583, -0.030563354, 0.009597778, -0.020004272, -0.014846802, -0.0059661865, -0.032318115, -0.016479492, 0.013519287, -0.021621704, -0.008132935, -0.015457153, -0.021347046, 0.022476196, -0.031799316, -0.011955261, 0.018127441, 0.021148682, 0.013114929, 0.033447266, 0.018630981, -0.007129669, 0.004901886, 0.05307007, 0.062042236, 0.028762817, -0.014518738, 0.00034046173, -0.04840088, 0.048675537, 0.04058838, -0.0055160522, -0.01524353, 0.03881836, 0.007106781, -0.0015935898, -0.0041046143, -0.041259766, 0.026290894, -0.012550354, -0.011169434, 0.0135269165, -0.009941101, -0.009994507, 0.0103302, 0.02659607, 0.012535095, -0.024261475, -0.0026302338, -0.047454834, 0.07891846, 0.04449463, -0.025299072, 0.057159424, 0.06378174, 0.0038967133, 0.03466797, 0.03201294, 0.008239746, 0.004627228, 0.077697754, 0.011054993, -0.013793945, 0.002193451, -0.0065727234, 0.024871826, -0.0017776489, 0.0036830902, -0.011642456, -0.03164673, -0.027786255, -0.01675415, 0.01727295, 0.017150879, -0.015617371, -0.005519867, 0.028533936, -0.03225708, -0.045806885, 0.005836487, 0.0041923523, -0.008666992, 0.01121521, 0.004306793, -0.007835388, -0.01285553, -0.013534546, -0.016403198, 0.007255554, -0.00434494, 0.041656494, -0.010246277, -0.006504059, -0.020874023, 0.009941101, -0.04736328, -0.021865845, 0.019989014, 0.018051147, -0.0030345917, -0.0061950684, 0.03604126, 0.03717041, -0.0012187958, -0.019515991, -0.04135132, -0.03060913, 0.00033974648, 0.017868042, 0.0087890625, -0.0029182434, 0.037902832, -0.06781006, 0.011222839, -0.014755249, -0.06085205, 0.006526947, -0.021331787, -0.003528595, -0.07788086, 0.0049743652, -0.00724411, -0.03048706, -0.079589844, 0.020217896, -0.013557434, -0.0034999847, -0.019363403, 0.03677368, -0.04046631, 0.00070142746, -0.003232956, 0.013671875, 0.014701843, -0.0036678314, -0.03012085, -0.036590576, -0.033691406, -0.014564514, -0.024108887, -0.040161133, -0.017089844, -0.00019299984, -0.035247803, 0.007347107, -0.009979248, 0.05847168, 0.011810303, 0.029190063, -0.040405273, 0.018203735, -0.035186768, -0.010429382, 0.01864624, -0.0011749268, -0.023727417, -0.024932861, 0.0385437, -0.021911621, -0.027770996, -0.07623291, 0.03378296, 0.047302246, 0.0030231476, 0.018844604, 0.008674622, 0.03427124, 0.0032215118, 0.0158844, 0.014183044, -0.027770996, -0.012168884, -0.022827148, 0.011993408, -0.0009384155, -0.04107666, 0.021011353, 0.0076026917, 0.019714355, -0.008102417, -0.025787354, -0.009117126, 0.06945801, -0.04788208, 0.04598999, 0.054138184, -0.0052452087, -0.00019490719, -0.021987915, -0.026184082, -0.04385376, 0.041137695, -0.064086914, -0.04849243, -0.028198242, 0.0015745163, -0.0038146973, -0.019302368, 0.005832672, -0.020812988, -0.038879395, 0.006565094, 0.013000488, 0.010719299, -0.027374268, 0.0008816719, 0.05050659, 0.00074338913, 0.030960083, 0.039123535, -0.010681152, -0.022521973, -0.051086426, -0.012611389, -0.020263672, -0.017700195, -0.017303467, 0.021118164, 0.0018367767, -0.0385437, 0.035736084, 0.017837524, 0.019500732, 0.0025081635, -0.0057907104, 0.0121154785, -0.021072388, -0.041625977, 0.002981186, -0.045837402, -0.0069770813, -0.031555176, -0.036987305, 0.009094238, 0.03173828, -0.04699707, 0.021057129, 0.0236969, -0.025924683, 0.11175537, -0.0005888939, 0.014724731, -0.026550293, -0.02029419, -0.021148682, -0.019210815, 0.0036506653, -0.0021381378, -0.011245728, 0.08203125, -0.011413574, -0.041503906, 0.023635864, -0.03894043, -0.01852417, 0.03024292, 0.05255127, -0.013336182, -0.008476257, 0.035614014, -0.018249512, -0.032318115, 0.029159546, -0.040405273, -0.037902832, -0.026779175, 0.008590698, 0.0075912476, -0.01687622, -0.008430481, -0.047546387, 0.0044441223, -0.008262634, -0.02218628, -0.03086853, 0.033569336, 0.0211792, -0.011177063, -0.0054473877, 0.022247314, 0.007007599, -0.047302246, -0.05166626, -0.034606934, 0.04876709, 0.008796692, 0.021072388, -0.02746582, -0.004989624, -0.02835083, -0.03201294, 0.005092621, -0.02330017, -0.04937744, 0.008804321, -0.0057296753, -0.0022735596, -0.028900146, 0.040405273, 0.053100586, -0.057373047, -0.038635254, -0.027648926, 0.009292603, 0.026779175, 0.02619934, -0.029159546, 0.030883789, -0.027130127, 0.048583984, -0.0035190582, -0.012329102, -0.028518677, 0.018722534, -0.09991455, 0.033996582, -0.004306793, 0.06585693, -0.03237915, 0.013259888, 0.005970001, 0.06011963, -0.0032100677, -0.03604126, -0.017959595, 0.013153076, -0.00045609474, -0.010108948, 0.023910522, -0.011230469, -0.010757446, -0.018722534, -0.011413574, -0.008384705, 0.037872314, 0.04083252, 0.032714844, 0.009353638, -0.023651123, 0.013328552, 0.039123535, -0.030883789, 0.06829834, -0.021881104, -0.037200928, -0.023834229, 0.02017212, 0.05911255, 0.020141602, 0.032104492, -0.011444092, -0.008110046, 0.009506226, 0.021316528, -0.009971619, -0.007472992, -0.009941101, 0.01789856, 0.018585205, -0.0066337585, -0.024963379, -0.031677246, -0.008422852, 0.0019798279, -0.010848999, 0.023010254, -0.011360168, -0.0011463165, 0.0010576248, -0.042907715, 0.014923096, -0.02960205, 0.0115356445, -0.01524353, 0.047851562, 0.0012950897, 0.012107849, 0.0131073, 0.009407043, 0.051361084, -0.0045280457, 0.016464233, 0.027801514, -0.031555176, -0.0012273788, -0.01637268, -0.024032593, 0.037994385, 0.04248047, 0.0029296875, 0.0127334595, -0.036468506, 0.0062789917, 0.010032654, -0.036590576, 0.02885437, 0.016967773, -0.020126343, -0.0020599365, -0.045043945, -0.0025310516, 0.011146545, -0.0044784546, -0.03463745, 0.083618164, -0.0021781921, -0.0073928833, -0.0009331703, 0.012359619, -0.02067566, -0.0024356842, -0.007835388, -0.0030288696, 0.020477295, -0.0039100647, -0.03894043, -0.03930664, 0.0178833, -0.040893555, -0.02772522, -0.041992188, 0.030075073, -0.008178711, -0.008987427, -0.04638672, -0.039215088, 0.01210022, 0.02293396, -0.026245117, -0.06512451, -0.020401001, 0.01600647, 0.009544373, -0.022918701, 0.0064735413, -0.0055999756, 0.018585205, 0.020950317, 0.009422302, 0.025009155, 0.0047416687, -0.025344849, 0.049346924, -0.013832092, 0.0048217773, 0.0113220215, 0.048065186, -0.02067566, 0.041900635, 0.026626587, -0.004211426, 0.013877869, 0.04244995, -0.041778564, -0.02835083, -0.008888245, -0.005332947, -0.008262634, -0.028335571, -0.0040512085, 0.0005173683, -0.03692627, -0.014137268, 0.017868042, -0.014587402, -0.036590576, 0.03149414, -0.045410156, -0.0149002075, 0.033325195, -0.018676758, 0.008384705, 0.008934021, 0.013214111, -0.028396606, -0.036193848, 0.021591187, 0.051605225, 0.019119263, -0.03427124, -0.012466431, 0.014732361, -0.0038375854, -0.07147217, -0.039489746, -0.012588501, 0.0016317368, -0.0024547577, 0.041259766, 0.0032653809, -0.04107666, -0.060028076, 0.0042152405, -0.020370483, 0.025054932, 0.009414673, 0.019882202, 0.038269043, -0.0010995865, 0.009674072, 0.055999756, 0.018508911, -0.008628845, 0.016281128, -0.011940002, -0.043823242, 0.053710938, 0.0129470825, -0.011390686, 0.01158905, 0.03036499, 0.010536194, 0.026321411, 0.028457642, -0.0012073517, -0.079833984, -0.019119263, -0.05215454, 0.015899658, -0.005332947, 0.02470398, -0.0107421875, 0.009048462, -0.025619507, -0.019821167, -0.005012512, -0.03970337, 0.040100098, 0.00894928, 0.026290894, 0.010063171, -0.031097412, -0.019348145, -0.010345459, -0.022888184, -0.013511658, -0.012382507, -0.023620605, -0.010047913, 0.004940033, -0.026260376, 0.014915466, -0.02571106, 0.00806427, -0.017211914, -0.016113281, -0.02734375, -0.01739502, -0.0065345764, -0.0013885498, -0.0059890747, -0.012626648, 0.0635376, -0.03286743, 0.009597778, 0.005619049, 0.015357971, 0.048461914, 0.013961792, -0.017059326, -0.045440674, -0.0067367554, 0.04360962, -0.016723633, 0.04510498, -0.03704834, -0.013618469, -0.014656067, 0.030548096, 0.02507019, 0.039611816, -0.031051636, 0.05593872, 0.029083252, 0.04888916, -0.038970947, -0.029403687, -0.042022705, 0.018875122, -0.0018100739, 0.02192688, 0.0390625, 0.010169983, 0.0024757385, 0.03161621, -0.029129028, -0.033721924, 0.03189087, 0.02128601, 0.016784668, 0.02909851]}, "B07RX4JN5Q": {"id": "B07RX4JN5Q", "original": "Brand: Dailyart\nName: Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black\nDescription: Worried about food falling through the grille?

      Prevent stains from besmirching your yard or deck?

      Hate cleaning grills full of grease?


      You will like Dailyart BBQ MAT- Making your BBQ more easily !

      - Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

      - The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

      - Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

      - The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

      - Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and\u00a0vegetables.

      - Easy to store:can be stored either flat or rolled up.

      Specifications:

      Thickness: 0.2mm
      Size:Large 44 x 30 CM Coverage area
      Material: PTFE glass fiber coating

      Package included:

      5 x BBQ Grill Mat
      1x Wish card
      \nFeatures: Non-stick design\uff1aGet more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor.\nHigh temperature resistance over 500 \u2109: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500\u2109 without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin.\nReusable\uff1aThe barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell.\nMultipurpose Barbecue Grill Mats\uff1aPerfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food.\nSafer and Healthier\uff1aWhen our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.\n", "metadata": {"Name": "Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black", "Brand": "Dailyart", "Description": "Worried about food falling through the grille?

      Prevent stains from besmirching your yard or deck?

      Hate cleaning grills full of grease?


      You will like Dailyart BBQ MAT- Making your BBQ more easily !

      - Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

      - The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

      - Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

      - The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

      - Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and\u00a0vegetables.

      - Easy to store:can be stored either flat or rolled up.

      Specifications:

      Thickness: 0.2mm
      Size:Large 44 x 30 CM Coverage area
      Material: PTFE glass fiber coating

      Package included:

      5 x BBQ Grill Mat
      1x Wish card
      ", "Features": "Non-stick design\uff1aGet more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor.\nHigh temperature resistance over 500 \u2109: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500\u2109 without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin.\nReusable\uff1aThe barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell.\nMultipurpose Barbecue Grill Mats\uff1aPerfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food.\nSafer and Healthier\uff1aWhen our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010444641, 0.021850586, -0.044830322, -0.036315918, 0.024368286, -0.010887146, 0.008682251, 0.014976501, -0.03753662, 0.030151367, -0.009429932, 0.032836914, 0.014350891, -0.012908936, 0.029342651, -0.020492554, 0.03933716, 0.0033683777, 0.017089844, -0.017288208, -0.011070251, -0.0046424866, 0.016967773, 0.04284668, 0.03616333, -0.017593384, -0.032287598, -0.012313843, 0.014892578, -0.005722046, 0.010803223, 0.0023670197, 0.037506104, 0.008934021, -0.031829834, 0.01134491, -0.018127441, 0.004333496, -0.027069092, 0.0096588135, 0.035217285, -0.008468628, -0.025253296, 0.0034503937, -0.03164673, -0.013832092, 0.0028266907, -0.030700684, 0.0140686035, 0.061676025, 0.018722534, 0.027313232, 0.00932312, 0.056488037, -0.0033454895, -0.0018367767, -0.007511139, 0.03062439, 0.0284729, 0.0065994263, -0.012321472, -0.0026416779, 0.004135132, -0.011817932, -0.021652222, 0.010131836, 0.035583496, -0.025375366, -0.036315918, -0.011001587, 0.045715332, -0.024536133, 0.037139893, -0.052856445, -0.028579712, -0.03074646, 0.00040841103, -0.054840088, -0.005420685, -0.020645142, -0.024902344, 0.014022827, 0.027618408, -0.069885254, 0.0158844, -0.05230713, -0.024856567, 0.008148193, -0.03640747, -0.027801514, -0.014808655, 0.012557983, -0.06213379, 0.004306793, 0.0002901554, -0.012718201, -0.031951904, -0.034820557, -0.002811432, 0.03149414, 0.007820129, -0.025344849, 0.04083252, -0.009361267, -0.02217102, 0.04827881, -0.012458801, -0.017684937, -0.008117676, 0.030059814, -0.011741638, -0.03781128, 0.010223389, -0.020706177, -0.03353882, 0.015182495, 0.017028809, -0.0289917, 0.022537231, -0.01751709, -0.047729492, -0.039276123, -0.022003174, 0.051361084, 0.085754395, 0.07342529, -0.011917114, 0.047973633, -0.035705566, 0.018081665, -0.028762817, 0.01260376, 0.040100098, 0.036956787, -0.0030555725, -0.012245178, 0.01424408, -0.0006599426, -0.006450653, -0.0070152283, -0.0061836243, 0.004508972, 0.03881836, -0.031433105, -0.013946533, 0.008636475, 0.049713135, 0.0440979, -0.042816162, -0.07836914, 0.050109863, 0.0042800903, 0.04598999, 0.017730713, -0.039733887, 0.023895264, 0.008590698, -0.0016298294, -0.06439209, -0.025787354, -0.008415222, -0.008018494, 0.011482239, -0.022720337, -0.028549194, 0.01473999, -0.035949707, -0.0021018982, 0.015235901, 0.07977295, 0.016342163, -0.042388916, -0.051452637, -0.011909485, -0.026672363, -0.01083374, 0.013435364, 0.05697632, 0.056274414, -0.07940674, -0.06628418, -0.06530762, 0.12164307, -0.06677246, -0.008583069, -0.0052986145, 0.009101868, 0.027450562, 0.018066406, 0.02017212, 0.0012569427, -0.013114929, -0.054473877, -0.0066184998, 0.013214111, 0.038726807, -0.03869629, 0.020065308, 0.009460449, -0.047668457, -0.053985596, -0.0073242188, 0.0007839203, 0.027496338, 0.02607727, -0.02619934, 0.0078125, 0.017837524, -0.020004272, 0.07086182, 0.008422852, 0.004207611, -0.013320923, 0.0105896, 0.033966064, -0.0619812, -0.014091492, -0.04486084, 0.010246277, -0.029785156, 0.05130005, 0.04458618, -0.0021133423, 0.037261963, 0.018310547, -0.00995636, -0.025466919, -0.011650085, -0.0050239563, 0.022277832, -0.06097412, 0.024368286, 0.0154953, -0.024261475, -0.03677368, 0.040649414, 0.0284729, 0.028182983, -0.03186035, 0.01386261, 0.019104004, -0.015579224, -0.038024902, 0.0060195923, 0.0055236816, -0.02772522, 0.010101318, 0.004348755, -0.055786133, -0.03640747, 0.02545166, 0.010406494, 0.033996582, -0.023635864, -0.014450073, 0.019760132, -0.07293701, -0.019821167, -0.048828125, 0.036193848, -0.0016489029, 0.023132324, 0.06719971, -0.014160156, 0.08062744, -0.024658203, 0.050109863, 0.023880005, -0.03463745, -0.005428314, 0.0072250366, 0.012954712, 0.00082302094, 0.010177612, 0.017410278, 0.0066719055, -0.023971558, -0.0020217896, 0.017623901, -0.00894165, 0.01939392, 0.0072784424, 0.011520386, -0.000114142895, 0.054260254, -0.026611328, -9.316206e-05, 0.0046920776, -0.035247803, -0.024612427, 0.013381958, 0.0011062622, -0.026382446, -0.008903503, -0.0009174347, -0.011802673, -0.04071045, 0.02784729, 0.0009775162, -0.00033283234, 0.01235199, 0.052246094, -0.017440796, 0.020004272, -0.005870819, 0.025543213, 0.0048217773, -0.001458168, -0.005180359, -0.03942871, 0.03173828, 0.019760132, 0.011154175, -0.045715332, 0.049621582, 0.015182495, 0.008918762, 0.017547607, 0.040740967, 0.050079346, -0.0067596436, 0.048828125, -0.042022705, 0.002954483, 0.016845703, 0.008422852, -0.007888794, -0.015304565, -0.018692017, 0.03414917, 0.039245605, 0.036987305, 0.033355713, 0.029891968, -0.0029182434, -0.009300232, -0.008453369, 0.047210693, 0.0052337646, -0.011383057, 0.021209717, -0.053710938, 0.0008120537, 0.007167816, -0.050109863, 0.021087646, 0.061035156, 0.012252808, -0.030899048, 0.012809753, 0.008163452, -0.04348755, 0.008155823, -0.02734375, -0.00093078613, 0.022506714, -0.023101807, -0.024810791, 0.004497528, -0.06347656, -0.0025901794, 0.01687622, -0.025939941, 0.007575989, 0.024963379, -0.033325195, 0.022567749, -0.02130127, 0.0032863617, 0.0038375854, 0.059020996, -0.004650116, -0.07904053, -0.035186768, -0.037506104, -0.039794922, 0.014579773, -0.03741455, 0.013160706, 0.003396988, -0.04168701, -0.03262329, 0.017532349, -0.00283432, 0.0027713776, 0.013969421, 0.023330688, 0.029785156, -0.0010137558, -0.017196655, 0.0093307495, 0.049987793, -0.041412354, -0.03074646, 0.0008764267, 0.021026611, 0.00088119507, -0.054016113, 0.012252808, -0.034179688, -0.056274414, -0.03656006, -0.0209198, -0.031585693, 0.0031089783, -0.033447266, -0.021347046, -0.051696777, 0.0049743652, 0.06933594, -0.023345947, 0.00029206276, 0.0013208389, -0.0024280548, 0.011451721, -0.0011320114, 0.012832642, -0.021530151, 0.008895874, -0.012069702, 0.019622803, -0.046142578, 0.020370483, 0.03717041, -0.03604126, -0.009994507, 0.0038452148, 0.037597656, -0.035614014, -0.028900146, -0.026382446, -0.053588867, -0.007106781, 0.028366089, -0.035461426, 0.022644043, -0.000279665, -0.049865723, 0.051361084, -0.04977417, -0.02935791, -0.008857727, 0.0018777847, 0.02557373, -0.0259552, -0.011413574, 0.0014696121, -0.025680542, -0.010650635, -0.015182495, -0.021011353, 0.023544312, 0.020248413, 0.018692017, 0.0017213821, -0.0054397583, 0.059692383, 0.07879639, -0.005344391, -0.02243042, -0.0029754639, -0.06262207, 0.057495117, 0.025100708, 0.009407043, -0.059783936, 0.085876465, -0.014533997, -0.0058059692, 0.014549255, -0.032592773, 0.027816772, 0.017303467, -0.019607544, 0.02645874, -0.031585693, 0.0044898987, 0.052764893, -0.05883789, -0.039245605, -0.07556152, 0.0021324158, -0.051483154, 0.057128906, 0.06304932, -0.034973145, 0.0814209, 0.06365967, -0.006095886, 0.04019165, -0.00018787384, -0.0048599243, 0.0060539246, 0.042175293, -0.020050049, 0.035614014, 0.006969452, -0.034729004, 0.014381409, -0.026443481, -0.006828308, 0.01991272, 0.007583618, -0.009315491, 0.04360962, 0.017852783, 0.0028305054, 0.0066337585, -0.015007019, -0.0058555603, 0.03604126, -0.029876709, 0.048797607, -0.0011911392, 0.014808655, -0.013572693, 0.06304932, 0.02394104, 0.014328003, -0.03363037, 0.0067367554, -0.005367279, 0.05682373, 0.041931152, -0.040008545, 0.007865906, 0.038909912, -0.015823364, -0.03933716, 0.026885986, 0.054748535, 0.018508911, 0.029678345, -0.030136108, -0.009559631, -0.03793335, -0.025466919, 0.016723633, -0.0021095276, -0.04437256, -0.010948181, 0.0149002075, 0.008125305, -0.0027885437, 0.05328369, -0.053222656, 0.040802002, 0.018615723, -0.066467285, 0.001490593, -0.020507812, -0.015319824, -0.04724121, 0.015586853, 0.008682251, -0.015716553, -0.070617676, 0.015258789, -0.013023376, 0.01889038, -0.017837524, 0.051818848, -0.053497314, -0.011024475, -0.005458832, 0.011711121, 0.02960205, 0.021148682, 0.053741455, -0.04272461, -0.016052246, -0.061401367, 0.0435791, 0.041381836, 0.006290436, -0.010345459, -0.008201599, 0.002199173, 0.027832031, 0.053100586, 0.0075187683, 0.037963867, -0.025253296, 0.012878418, -0.055114746, -0.027435303, 0.0713501, -0.06567383, -0.007965088, -0.019210815, 0.072265625, -0.022766113, -0.0051956177, -0.06921387, -0.0044784546, 0.033447266, -0.062164307, -0.0036334991, -0.017547607, 0.0134887695, 0.006778717, -0.020874023, -0.015136719, 0.00806427, 0.032196045, -0.015777588, -0.009941101, 0.014694214, 0.0017337799, -0.04824829, 0.002046585, -0.030151367, -0.015235901, 0.044921875, -0.0395813, -0.0075683594, -0.013717651, 0.059814453, 0.09234619, -0.03189087, 0.024673462, 0.0074272156, -0.021697998, 0.010108948, 0.018310547, -0.00051021576, -0.019363403, 0.010154724, -0.018493652, -0.023468018, -0.017028809, -0.020141602, -0.001045227, -0.03741455, 0.018127441, 0.026229858, 0.020889282, -0.019866943, -0.0003311634, 0.034973145, 0.011993408, 0.025665283, 0.031158447, -0.030807495, -0.0023422241, -0.045837402, -0.03894043, -0.016403198, -0.025009155, -0.019042969, 0.0546875, 0.012931824, -0.051818848, -0.017074585, 0.057403564, -0.0289917, 0.00036239624, 0.01789856, 0.005508423, 0.011199951, -0.016281128, 0.037994385, -0.05102539, 0.017715454, -0.001086235, -0.0446167, 0.016860962, 0.017852783, -0.04534912, 0.030059814, 0.0104599, -0.060821533, 0.03564453, 0.00497818, 0.027450562, -0.0463562, 0.06298828, -0.0009317398, 0.0066070557, -0.07336426, 0.003162384, -0.062927246, 0.0256958, -0.03604126, 0.009483337, 0.04714966, -0.018341064, -0.031402588, -0.021606445, 0.022109985, -0.046203613, 0.0033054352, -0.013244629, 0.012557983, -0.012161255, -0.0234375, 0.02305603, -0.052093506, -0.016845703, -0.035736084, 0.049987793, -0.007850647, -0.040283203, -0.037719727, -0.029418945, 0.00033068657, -0.03265381, -0.00504303, -0.028411865, 0.0024547577, -0.019561768, 0.0064811707, 0.022598267, 0.018325806, -0.058441162, -0.020507812, -0.016220093, -0.0062446594, -0.019683838, 0.06488037, -0.027328491, 0.00856781, 0.019470215, -0.032928467, 0.011100769, 0.0049324036, -0.030654907, 0.002822876, 0.008613586, 0.009407043, -0.002462387, -0.042053223, 0.050750732, -0.02671814, -0.028884888, -0.047058105, 0.03387451, 0.006713867, -0.006427765, 0.049987793, -0.031143188, 0.014305115, 0.01184845, -0.0027866364, -0.03753662, 0.028030396, 0.026504517, -0.04449463, -0.019805908, -0.01550293, -0.0070495605, -0.006652832, -0.03781128, -0.027755737, 0.057250977, -0.0014257431, -0.038238525, -0.010513306, -0.021240234, 0.027435303, 0.006614685, 0.021133423, 0.0007238388, 0.0020961761, -0.04864502, -0.0055236816, -0.040496826, -0.023117065, 0.037506104, 0.024398804, 0.011703491, -0.022232056, 0.02104187, 0.053619385, -0.037750244, 0.06756592, -0.03567505, -0.014381409, 0.0014810562, 0.033355713, 0.05114746, -0.0031719208, 0.007987976, -0.016952515, 0.008865356, -0.012809753, 0.00598526, -0.0008072853, -0.06390381, -0.05606079, 0.042877197, 0.058013916, 0.025909424, 0.007270813, 0.027359009, 0.020431519, -0.013084412, -0.0018758774, 0.045318604, -0.01637268, -0.01927185, -0.006652832, -0.020217896, 0.035980225, -0.015319824, 0.039611816, 0.028549194, 0.01424408, -0.028701782, 0.056518555, -0.010223389, 0.03955078, -0.010787964, -0.029083252, -0.06616211, -0.007980347, -0.018432617, -0.025787354, 0.019470215, 0.013908386, 0.006881714, 0.03262329, -0.016220093, 0.03152466, 0.03805542, 0.019134521, 0.018341064, -0.048614502, 0.04067993, 0.04812622, 0.0027980804, 0.042999268, -0.023468018, -0.011955261, 0.0037326813, 0.033477783, -0.004459381, 0.10015869, -0.039245605, 0.0090789795, -0.034179688, -0.019699097, -0.017288208, -0.024734497, -0.014656067, 0.011650085, -0.010658264, -0.0015325546, -0.025253296, -0.009391785, 0.040893555, -0.056427002, -0.027832031, 0.0116119385, 0.011375427, -0.01651001, 0.012313843, -0.030014038, -0.047454834, -0.01133728, 0.03970337, -0.017715454, 0.0027580261, -0.030441284, -0.0034065247, 0.0021419525, -0.024841309, 0.0023860931, -0.005317688, 0.0037059784, 0.0357666, 0.024917603, -0.019226074, 0.011642456, -0.008621216, 0.023162842, 0.014663696, 0.057525635, 0.04083252, 0.042755127, 0.036499023, 0.026672363, 0.042816162, -0.04168701, 0.013801575, 0.03378296, 0.002117157, -0.01071167, 0.004878998, 0.0037555695, -0.06677246, -0.010955811, 0.0011844635, -0.04977417, 0.0132751465, 0.021453857, 0.011726379, -0.017745972, -0.010551453, -0.037384033, 0.05810547, -0.013511658, -0.0029582977, -0.050109863, 0.009857178, -0.005580902, -0.0001899004, -0.021057129, 0.014633179, -0.026123047, 0.0024871826, 0.018081665, -0.041625977, -0.0395813, 0.006916046, 0.04067993, -0.07147217, -0.013656616, -0.027297974, 0.06964111, 0.011459351, 0.11834717, -0.055664062, -0.08001709, -0.04147339, 0.0052223206, -0.025787354, -0.0022602081, 0.00019967556, 0.013916016, 0.031036377, -0.004535675, -0.0149002075, 0.010917664, 0.012458801, -0.027557373, -0.01751709, -0.029769897, -0.045288086, 0.03414917, -0.008308411, -0.024108887, -0.003358841, 0.042388916, 0.026290894, 0.019607544, 0.031433105, -0.0043296814, -0.049224854, 0.00390625, -0.013702393, 0.03225708, -6.735325e-05, 0.0068092346, 0.016540527, 0.016220093, -0.034088135, 0.040985107, 0.009674072, 0.0087509155, 0.03186035, 0.05126953, -0.024230957, -0.031158447, 0.00043058395, 0.0014238358, -0.0068359375, 0.028671265, 0.06542969, 0.029571533, -0.03567505, 0.01209259, -0.010093689, 0.031036377, -0.0051994324, -0.040496826, -0.03375244, 0.0022468567, 0.013389587, -0.036193848, 0.022216797, 0.01461792, -0.02166748, -0.026535034, -0.014877319, 0.053588867, -0.028182983, 0.006603241, -0.017822266, 0.020690918, 0.03062439, -0.027938843, 0.00029063225, -0.06304932, -0.0059051514, 0.03479004, -0.002948761, 0.040405273, -0.006690979, -0.03439331, -0.013641357, 0.0046081543, 0.008964539, 0.005001068, 0.0076446533, 0.016479492, 0.0036354065, 0.023239136, -0.030212402, -0.05508423, -0.048309326, 0.025222778, -0.00028395653, 0.0077323914, 0.061340332, -0.036254883, 0.021087646, 0.006259918, 0.01737976, -0.022567749, 0.008522034, 0.015419006, 0.013130188, 0.022903442]}, "B002MEPTOE": {"id": "B002MEPTOE", "original": "Brand: Raypak\nName: Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.\nFeatures: 336,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "metadata": {"Name": "Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater", "Brand": "Raypak", "Description": "The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.", "Features": "336,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.017333984, 0.024291992, -0.05493164, -0.019485474, 0.023208618, -0.055633545, 0.026000977, 0.023101807, 0.0309906, -0.0070533752, -0.0132369995, -0.034332275, -0.010139465, -0.0602417, -0.0030441284, -0.03756714, -0.00071144104, -0.043029785, -0.024520874, -0.04324341, 0.004749298, -0.05227661, 0.022033691, 0.009140015, -0.023666382, 0.035705566, 0.06536865, -0.0075569153, -0.010375977, -0.01448822, 0.021255493, -0.020401001, 0.045806885, -0.010253906, -0.046539307, 0.0011234283, 0.021652222, -0.02796936, -0.041229248, 0.017745972, -0.008430481, 0.026290894, -0.0134887695, -0.032592773, -0.05343628, 0.01675415, -0.02947998, 0.010169983, 0.015396118, 0.019241333, -0.0014715195, -0.05050659, -0.0036449432, -0.022766113, -0.009490967, -0.004032135, -0.024475098, -0.0065574646, 0.012641907, -0.0357666, -0.017715454, -0.009689331, 0.0357666, 0.036102295, -0.059448242, 0.008476257, 0.046539307, -0.014175415, 0.04876709, -0.05633545, -0.02708435, 0.05923462, 0.013473511, -0.034484863, -0.052856445, 0.010726929, 0.014411926, -0.006362915, 0.014312744, -0.011817932, 0.015731812, -0.0057792664, 0.008239746, -0.013771057, 0.007419586, -0.0053253174, 0.0024414062, -0.0074272156, -0.008407593, -0.06173706, -0.004234314, 0.0011672974, -0.05105591, 0.00081300735, -0.008399963, -0.05014038, -0.060668945, -0.11328125, 0.051818848, 0.03451538, 0.040100098, -0.049468994, 0.052642822, 0.03314209, -0.022964478, 0.015075684, -0.013122559, 0.0014781952, 0.0042686462, 0.025314331, -0.014579773, -0.044952393, -0.05343628, -0.02406311, 0.0032806396, 0.043060303, -0.057891846, 0.0013446808, -0.006603241, -0.011802673, 0.0075912476, 0.008522034, 0.0062026978, -6.2584877e-06, 0.0038261414, 0.011352539, -0.015182495, -0.015144348, 0.010482788, 0.008880615, -0.03567505, -0.004386902, 0.07098389, 0.051239014, 0.031188965, 0.0009717941, 0.058929443, -0.03302002, 0.03781128, -0.027679443, 0.05883789, 0.021209717, 0.0062065125, 0.028564453, -0.015853882, 0.04562378, 0.031051636, -0.017303467, -0.014854431, -0.070617676, -0.04309082, 0.009643555, -0.0021858215, 0.014282227, 0.01058197, 0.03753662, -0.005886078, 0.022506714, -0.0019760132, 0.010528564, 0.030090332, -0.014091492, -0.05230713, 0.05218506, 0.018707275, -0.0031280518, 0.038513184, 0.020401001, 0.028121948, 0.08306885, -0.004940033, -0.009727478, 0.024307251, 0.003604889, -0.018432617, -0.0046043396, -0.042755127, 0.083984375, 0.08496094, -0.11608887, -0.07904053, -0.07501221, 0.15393066, -0.058807373, -0.006843567, -0.012550354, 0.0029850006, 0.021865845, 0.00919342, 0.027053833, -0.0061569214, 0.014343262, 0.039611816, -0.039093018, -0.007648468, -0.0121536255, -0.004257202, 0.022842407, -0.01499939, 0.0018453598, -0.024765015, 0.026382446, -0.027511597, 0.038116455, 0.03656006, 0.0058898926, 0.026626587, 0.0030174255, 0.021835327, 0.00447464, -0.016464233, -0.05041504, 0.02720642, -0.028320312, -0.019699097, 0.014633179, -0.023971558, 0.023483276, 0.00548172, -0.0070762634, -0.017959595, -0.051330566, 0.009536743, -0.0044403076, 0.04598999, -0.020462036, -0.0102005005, -0.013793945, 0.02748108, -0.012359619, 0.009468079, 0.040374756, 0.062683105, 0.0026988983, -0.036987305, 0.017303467, 0.036621094, 0.010414124, -0.020904541, 0.014930725, 0.006996155, -0.021865845, -0.028564453, 0.015602112, -0.064819336, -0.06628418, 0.0015745163, 0.012664795, 0.011177063, 0.036865234, 0.011360168, 0.00630188, 0.024139404, -0.028152466, 0.015914917, 0.017410278, -0.029190063, -0.04586792, -0.021514893, 0.020019531, 0.030654907, 0.027557373, -0.018325806, 0.017044067, 0.0368042, -0.02218628, 0.025375366, 0.0058898926, 0.006629944, -0.0158844, 0.0023880005, -0.030563354, -0.010025024, -0.016464233, 0.012329102, 0.038635254, -0.0423584, 0.014144897, 0.03753662, -0.008728027, -0.017349243, -0.008758545, -0.01953125, -0.0021820068, 0.0052261353, -0.05117798, 0.0018796921, -0.0002539158, -0.017456055, -0.006565094, 0.017593384, 0.009002686, -0.011619568, 0.012779236, -0.013420105, -0.009490967, 0.012580872, 0.037902832, 0.0073623657, -0.027175903, -0.03387451, 0.01210022, -0.029373169, -0.012069702, 0.001996994, -0.019989014, -0.009178162, 0.041168213, 0.011276245, -0.022460938, -0.05935669, -0.0074043274, 0.008720398, 0.025512695, -0.002735138, -0.024841309, 0.004863739, 0.01789856, -0.0075683594, 0.016296387, -0.019744873, -0.019744873, -0.00983429, 0.010696411, 0.002155304, 0.0026130676, 0.02268982, 0.0035190582, -0.033813477, 0.009025574, 0.046813965, -0.02420044, 0.018188477, -0.03857422, 0.0016126633, -0.013969421, 0.017333984, 0.024383545, 0.006626129, -0.042053223, 0.016296387, -0.036315918, -0.012756348, 0.017532349, -0.028442383, 0.012702942, 0.00957489, 0.01928711, -0.013771057, -0.008148193, 0.012458801, -0.03756714, -0.016418457, -0.023605347, 0.0034389496, -0.0038967133, -0.0015153885, -0.009513855, 0.019546509, -0.055511475, 0.017333984, -0.05682373, -0.051116943, -0.020645142, 0.06628418, 0.008460999, -0.05606079, -0.033050537, -0.07397461, -0.04751587, -0.014434814, -0.040985107, 0.0018434525, -0.03656006, -0.029953003, 0.051574707, 0.018585205, -0.03527832, 0.0008530617, -0.0050086975, 0.01927185, 0.0008845329, 0.021469116, -0.011352539, 0.035308838, 0.01033783, 0.014961243, 0.04458618, 0.0020828247, -0.013259888, -0.005153656, 0.028671265, -0.0071487427, 0.0014410019, -0.03842163, -0.042114258, -0.0024166107, 0.012832642, -0.06311035, 0.004245758, -0.088134766, 0.036987305, -0.011802673, -0.005542755, -0.008834839, -0.0758667, -0.011581421, -0.058288574, 0.0067749023, 0.06945801, -0.0072517395, -0.038757324, 0.00076818466, -0.04333496, 0.046691895, -0.008293152, 0.004108429, -0.006137848, -0.009613037, -0.0046844482, 0.02268982, -0.039276123, 0.025039673, 0.024017334, -0.032562256, -0.013687134, -0.016189575, 0.0335083, -0.040130615, 0.014961243, -0.015701294, -0.029266357, -0.027526855, -0.031585693, 0.0056037903, -0.014419556, -0.009864807, -0.023483276, -0.011306763, -0.00907135, -0.03253174, -0.007160187, 0.03665161, 0.03717041, -0.0138168335, 0.025741577, -0.017425537, -0.017608643, 0.018005371, -0.07269287, 0.03173828, 0.008476257, 0.02444458, 0.01121521, 0.002445221, 0.082336426, -0.028015137, 0.02368164, 0.0021572113, -0.011314392, -0.009605408, -0.033813477, 0.03555298, -0.0035076141, 0.030044556, -0.03741455, 0.04083252, 0.019500732, 0.007095337, 0.007297516, 0.015716553, -0.008255005, 0.029785156, -0.012893677, -0.009361267, -0.01121521, 0.019714355, 0.0050315857, -0.021316528, -0.026824951, -0.091796875, 0.040130615, -0.0647583, 0.009902954, 0.02470398, -0.020690918, 0.08129883, 0.01966858, -0.007144928, 0.06414795, 0.041503906, -0.0051727295, 0.026184082, 0.04385376, -0.029891968, 0.013397217, 0.0076560974, -0.051116943, -0.02394104, -0.0053749084, -0.048858643, 0.013633728, 0.02949524, 0.009857178, -0.082458496, 0.026641846, 0.05126953, -0.026901245, 0.0049705505, -0.072021484, -0.0047416687, -0.062438965, -0.0015935898, 0.014434814, -0.019439697, -0.010894775, -0.003917694, -0.020309448, -0.023010254, 0.011070251, 0.02407837, 0.01675415, -0.0010986328, 0.044281006, 0.0020370483, -0.0035514832, -0.05807495, -0.03186035, -0.010261536, -0.008140564, 0.0039863586, -0.017807007, 0.00907135, 0.017456055, 0.016998291, 0.038513184, 0.00995636, 0.0047340393, -0.03100586, -0.023132324, -0.0021247864, 0.018615723, 0.018112183, -0.019012451, 0.00919342, -0.0154418945, -0.04147339, -0.05404663, 0.0016183853, -0.033172607, -0.040405273, -0.007598877, -0.047851562, -0.06689453, 0.012306213, -0.007232666, 0.0569458, -0.02355957, -0.009185791, -0.026824951, 0.0048942566, 0.027420044, -0.07281494, 0.018814087, -0.07067871, -0.00088357925, 0.021270752, -0.00061416626, 0.04901123, 0.00096416473, -0.009849548, -0.009643555, 0.11047363, 0.009147644, 0.009887695, -0.07775879, -0.020050049, 0.026031494, -0.017730713, 0.006591797, -0.018920898, 0.02519226, 0.0037269592, 0.076293945, -0.044769287, 0.0076789856, 0.022644043, -0.005443573, -0.015701294, 0.0045928955, 0.0871582, -0.025680542, -0.0025119781, 0.006996155, -0.01133728, 0.004814148, -0.011878967, -0.055480957, -0.0012378693, -0.007659912, -0.016952515, 0.02935791, 0.007133484, -0.024307251, -0.0032844543, 0.050048828, 0.010154724, -0.018814087, -0.016815186, 0.0011539459, -0.004463196, -0.035705566, 0.030288696, 0.013717651, 0.010238647, 0.004055023, 0.004211426, 0.016586304, 0.051208496, -0.016189575, 0.026733398, 0.004890442, 0.0053253174, 0.008895874, -0.03591919, 0.013206482, 0.050872803, 0.014854431, -0.023468018, -0.0062789917, -0.011932373, -0.015281677, -0.035217285, -0.028869629, 0.00041890144, 0.004512787, 0.00032305717, 0.0056648254, 0.010574341, -0.022628784, -0.0010137558, 0.011657715, -0.025039673, -0.010398865, 0.038604736, -0.0075569153, -0.016433716, 0.0034561157, -0.026290894, -0.012390137, -0.006416321, -0.00034737587, 0.0059661865, -0.009223938, -0.027145386, -0.015701294, -0.01033783, 0.02053833, 0.006843567, -0.031280518, -0.08758545, -0.031311035, 0.0131073, -0.07067871, 0.010971069, 0.016113281, 0.03137207, 0.04852295, 0.0030441284, 0.011955261, 0.007129669, 0.030883789, 0.011001587, 0.008079529, 0.03781128, -0.04260254, 0.04437256, 0.007083893, -0.002691269, -0.07824707, 0.021347046, 0.021072388, -0.013687134, 0.015838623, -0.02281189, 0.06677246, -0.051208496, -0.044891357, 0.0017595291, 0.02633667, -0.016860962, -0.014266968, -0.009254456, -0.04925537, -0.029830933, -0.024276733, -0.0041923523, 0.036224365, -0.0020141602, -0.040802002, 0.0440979, 0.0076179504, -0.060424805, -0.020980835, -0.012008667, 0.054840088, -0.054870605, -0.0016202927, -0.021972656, -0.0056610107, -0.0026474, 0.021392822, 0.050476074, 0.023986816, -0.028884888, -0.019699097, 0.0043296814, -0.01259613, -0.042633057, 0.06896973, -0.043518066, -0.022918701, -0.011695862, -0.0022296906, 0.0021133423, 0.00087451935, -0.062469482, -0.028564453, -0.005970001, 0.0037231445, 0.048736572, -0.051208496, 0.036987305, -0.004589081, -0.031097412, -0.07495117, 0.02571106, -0.014717102, -0.044921875, 0.049591064, 0.019012451, -0.0011463165, 0.022369385, -0.017593384, -0.020217896, 0.0022563934, -0.0012788773, -0.06951904, -0.0020160675, -0.024169922, 0.0019626617, -0.00043606758, -0.009246826, -0.021118164, 0.02243042, -0.017456055, -0.006210327, -0.013710022, -0.014724731, 0.0013923645, -0.02520752, 0.023651123, -0.004245758, 0.0052337646, -0.0054473877, 0.0317688, -0.055267334, -0.05432129, -0.0035514832, 0.020599365, 0.014450073, -0.008590698, 0.010261536, 0.023590088, -0.022506714, 0.020248413, 0.004737854, -0.021835327, 0.039245605, 0.016448975, -0.01828003, 0.037017822, 0.0063171387, -0.010360718, -0.052337646, 0.054870605, -0.003435135, 0.07775879, -0.061950684, -0.019424438, 0.025161743, 0.031829834, 0.00038290024, -0.017074585, 0.033843994, 0.0032405853, -0.066833496, -0.01977539, -0.04333496, -0.040130615, -0.017288208, -0.02482605, -0.01638794, -0.00036144257, -0.031799316, 0.029006958, -0.025115967, 0.031707764, 0.018692017, -0.011650085, 0.0131073, 0.0030593872, 0.035339355, -0.0051651, -0.021087646, 0.024261475, -0.003019333, -0.02696228, 0.030212402, 0.005809784, -0.009841919, 0.022384644, 0.00881958, 0.019088745, -0.023910522, 0.0128479, 0.0010948181, -0.03479004, 0.00024104118, -0.037384033, 0.005027771, -0.017791748, 0.014442444, 0.025650024, 0.033691406, 0.002954483, -0.022033691, 0.08215332, -0.042999268, -0.0152282715, 0.010528564, 0.0119018555, -0.0009126663, 0.00058460236, 0.009483337, 0.0053138733, 0.026672363, -0.018051147, -0.064575195, -0.0036907196, 0.03933716, -0.0027713776, 0.03756714, -0.027267456, 0.027282715, -0.032196045, 0.0042762756, -0.026657104, -0.05178833, 0.022033691, 0.013633728, -0.021362305, 0.059143066, 0.052337646, 0.027114868, -0.004863739, -0.014312744, -0.016021729, -0.03475952, -0.014434814, 0.037506104, -0.0044174194, -0.06939697, -0.07849121, -0.027755737, -0.039916992, -0.016998291, 0.0098724365, -0.0062294006, 0.0131073, 0.0335083, 0.015579224, 0.06185913, -0.0026550293, 0.016326904, -0.00066041946, 0.014160156, 0.011398315, 0.0037975311, -0.0017614365, -0.022216797, -0.026657104, 0.022415161, -0.022155762, 0.0309906, -0.04522705, 0.009017944, 0.0435791, -0.023468018, 0.026977539, -0.036712646, -0.035095215, 0.0592041, 0.002729416, -0.025131226, -0.019760132, -0.029846191, -0.036224365, -0.024673462, -0.07476807, 0.0066947937, -0.042816162, -0.022720337, -0.010643005, -0.0008368492, 0.00447464, -0.007598877, -0.014961243, 0.0317688, -0.012512207, -0.0060577393, 0.06665039, -0.04345703, -0.023590088, -0.06616211, 0.0044403076, -0.079711914, -0.008125305, 0.018463135, -0.012001038, -0.0030174255, -0.0061416626, 0.01576233, 0.035095215, 0.048919678, -0.010429382, 0.0017700195, -0.007095337, -0.022232056, -0.0021591187, 0.0062446594, -0.05432129, -0.0158844, 0.0021915436, 0.007080078, 0.05960083, -0.0009379387, 0.0022258759, -0.08062744, -0.0037517548, -0.025619507, 0.03640747, -0.009590149, -0.009902954, 0.040740967, 0.0037937164, -0.022399902, 0.06390381, 0.023605347, 0.006526947, 0.0015907288, -0.03729248, 0.012168884, -0.018829346, 0.06201172, -0.013389587, -0.0013542175, -0.021499634, -0.0056915283, -0.012893677, 0.055358887, 0.0029964447, -0.03555298, 0.019470215, -0.0013418198, -0.02784729, 0.04864502, -0.022201538, -0.0060691833, 0.03543091, -0.075683594, -0.013130188, -0.032440186, -0.0016937256, -0.027389526, -0.021148682, -0.014816284, -0.012565613, -0.04525757, 0.042663574, -0.047576904, -0.03881836, -0.05947876, 0.0024909973, 0.008087158, 0.010627747, -0.0143585205, 0.0015239716, 0.008171082, 0.041412354, 0.0035533905, -0.00093460083, -0.0024604797, -0.011955261, -0.043304443, 0.041412354, -0.013809204, 0.04067993, -0.03326416, -0.059906006, -0.060516357, 0.049835205, -0.028503418, 0.001947403, 0.007713318, -0.017822266, 0.03527832, -0.031234741, 0.034606934, 0.043182373, -0.032440186, -0.032562256, -0.049987793, -0.00097227097]}, "B07CVNQKR6": {"id": "B07CVNQKR6", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Specifications:\nFeatures automatic shut off system for low oxygen\nEasy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\n", "metadata": {"Name": "Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater", "Brand": "Mr. Heater", "Description": "Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.", "Features": "Specifications:\nFeatures automatic shut off system for low oxygen\nEasy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.08013916, 0.0037651062, -0.017974854, -0.06774902, 0.032104492, -0.040740967, 0.02670288, -0.0027313232, -0.010978699, 0.010223389, -0.004131317, -0.017608643, 0.009262085, -0.037353516, 0.011581421, -0.03543091, -0.00045967102, 0.0012207031, -0.028579712, -0.04067993, 0.017745972, -0.036010742, -0.016052246, 0.091552734, -0.009117126, 0.043640137, 0.01209259, -0.0014390945, 0.0008535385, -0.0059051514, 0.010856628, -0.025009155, 0.03894043, -0.012924194, -0.0119018555, 0.022491455, 0.01776123, -0.017929077, -0.02418518, 0.027999878, -0.003194809, 0.02885437, -0.11224365, -0.01966858, -0.12445068, -0.033233643, -0.01676941, 0.0736084, 0.018737793, -0.037078857, -0.012794495, -0.006778717, 0.0052833557, -0.02998352, -0.028930664, -0.01486969, 0.013336182, -0.018112183, 0.00749588, -0.0107040405, 0.0040740967, 0.023834229, 0.011795044, 0.010017395, -0.09112549, -0.0042915344, 0.03805542, -0.039154053, 0.056732178, -0.07727051, -0.017974854, 0.0670166, 0.051635742, 0.032104492, -0.08526611, -0.03186035, 0.038116455, 0.01675415, 0.045562744, -0.045898438, 0.02079773, -0.017196655, -0.009437561, -0.019958496, 0.057800293, 0.025222778, -0.00089788437, -0.02458191, 0.005466461, -0.04437256, -0.011795044, -0.033996582, 0.0028858185, 0.02960205, -0.0473938, -0.0096206665, -0.030380249, -0.056549072, 0.0435791, 0.018249512, 0.0035934448, -0.022354126, -0.0031032562, 0.0019817352, -0.005065918, 0.0099105835, -0.016540527, -0.056854248, -0.011260986, 0.017089844, -0.031921387, -0.029296875, -0.011779785, -0.037261963, -0.021591187, 0.06021118, 0.005859375, -0.0051345825, 0.015220642, 0.011817932, -0.026443481, -0.007972717, -0.0020370483, -0.04626465, 0.0071411133, -0.045410156, -0.026382446, 0.03314209, -0.066467285, 0.05831909, -0.030960083, -0.034301758, 0.08660889, 0.10571289, 0.058746338, -0.02532959, 0.036224365, -0.0104599, -0.0015602112, -0.02178955, 0.0129776, -0.00015676022, -0.008850098, -0.03253174, -0.024841309, 0.0151901245, 0.012260437, 0.012588501, -0.0077819824, -0.027648926, -0.019058228, 0.011734009, 0.019195557, 0.010017395, 0.0063171387, 0.0072669983, 0.012832642, -0.016052246, -0.013641357, -0.0137786865, 0.0010490417, -0.03366089, -0.039123535, 0.0124053955, -0.02607727, 0.046142578, 0.036010742, -0.0033798218, 0.028060913, 0.020751953, 0.019943237, -0.0069274902, 0.03479004, -0.010795593, -0.0031967163, -0.006706238, -0.050445557, 0.097595215, 0.06530762, -0.1340332, -0.06768799, -0.06536865, 0.14099121, -0.030410767, 0.009292603, -0.03164673, 0.042053223, 0.018875122, -0.021011353, 0.022094727, 0.0069084167, 0.03125, 0.05029297, -0.071777344, 0.0052719116, 0.00573349, 0.0011301041, 0.014129639, -0.0004775524, 0.019226074, 0.03881836, 0.020614624, -0.0022964478, -0.039093018, 0.017074585, -0.027023315, 0.028915405, 0.0047073364, -0.002216339, 0.030517578, 0.030227661, -0.009902954, -0.01411438, -0.027038574, -0.007156372, -0.016479492, -0.030960083, 0.029876709, -0.0046539307, -0.0052986145, 0.007789612, -0.025985718, 0.027908325, -0.0234375, -0.008995056, -0.052825928, 0.001791954, -0.019073486, -0.004020691, -0.0053138733, 0.01109314, 0.015716553, 0.054016113, 0.057281494, -0.011779785, 0.018356323, 0.043182373, 0.026535034, -0.013397217, -0.0049705505, -0.004096985, 0.0031852722, -0.010299683, 0.039001465, -0.059143066, 0.00774765, 0.046569824, -0.010597229, -0.0284729, 0.023071289, 0.032928467, 0.042053223, 0.01638794, 0.06530762, -0.041809082, 0.03262329, -0.017044067, -0.023712158, -0.032287598, 0.028320312, -0.001660347, 0.010192871, 0.00024962425, -0.0087509155, 0.016403198, 0.052947998, 0.024154663, 0.030441284, -0.043701172, 0.046081543, 0.014259338, -0.0066184998, -0.0035877228, -0.008003235, 0.05718994, -0.013557434, 0.008865356, -0.00308609, -0.015113831, -0.02104187, -0.023010254, -0.028915405, 0.012489319, -0.007896423, 0.028396606, 0.03543091, 0.022567749, -0.024780273, -0.042053223, -0.0067481995, 0.03302002, -0.035369873, -0.052246094, -0.00055933, 0.0074310303, -0.034484863, 0.03540039, 0.011962891, 0.021774292, -0.018463135, -0.012451172, 0.040100098, -0.019638062, 0.016235352, 0.008422852, 0.014335632, -0.014060974, 0.015151978, 0.0018415451, 0.011604309, -0.07312012, -0.001285553, 0.019622803, 0.021972656, 0.002866745, -0.0021629333, -0.008407593, 0.036254883, 0.000603199, 0.0234375, -0.02508545, 0.0037136078, -0.05581665, 0.01235199, -0.0006785393, 0.02331543, -0.0008125305, -0.0045433044, -0.064697266, 0.026321411, 0.0501709, 0.037475586, 0.036895752, 0.070739746, 0.010215759, 0.019210815, -0.004627228, 0.02357483, -0.045562744, -0.07733154, -0.031280518, -0.029205322, 0.01499176, 0.026535034, -0.0317688, 0.0068473816, 0.046051025, 0.01335144, -0.03942871, 0.022476196, 0.0013723373, -0.03036499, 0.0067863464, -0.03894043, 0.032348633, 0.00409317, -0.035003662, -0.016311646, 0.03390503, -0.04751587, -0.0115737915, 0.0014076233, -0.031097412, -0.05718994, 0.035217285, -0.02720642, -0.018356323, -0.025756836, -0.05215454, 0.022064209, -0.0011768341, -0.0051879883, 0.0017108917, -0.040374756, -0.052581787, 0.0055999756, 0.021469116, -0.029937744, -0.0043640137, -0.0034656525, 0.02758789, 0.024032593, 0.00308609, 0.014450073, 0.016082764, 0.025482178, 0.013450623, 0.038269043, -0.021118164, -0.022354126, -0.0335083, 0.009162903, 0.00047254562, -0.014907837, 0.004623413, 0.007183075, -0.029846191, -0.008842468, -0.013442993, -0.01083374, -0.034332275, 0.030548096, 0.023269653, -0.0040016174, -0.026779175, 0.007888794, -0.026794434, -0.013214111, -0.0060043335, 0.066101074, -0.02720642, -0.022491455, -0.014877319, -0.014839172, 0.021530151, -0.009185791, -0.060028076, 3.2663345e-05, -0.007637024, 0.013626099, 0.013122559, -0.019882202, 0.01259613, 0.039520264, -0.03265381, -0.011405945, -0.03427124, 0.021270752, -0.022476196, 0.031799316, -0.014175415, 0.0073509216, -0.010917664, -0.0088272095, -0.030578613, 0.040496826, 0.0069122314, 0.011962891, 0.014953613, -0.026855469, 0.0053710938, -0.005718231, -0.0037059784, 0.041656494, -0.04360962, 0.03451538, -0.017410278, -0.0020828247, -0.041625977, -0.06085205, -0.009155273, 0.041778564, 0.04083252, 0.024291992, 0.03326416, 0.0289917, 0.035614014, 0.019866943, 0.005393982, -0.037750244, -0.0602417, -0.031036377, 0.023376465, -0.026626587, -0.004890442, -0.07513428, 0.07458496, -0.0067749023, 0.012779236, -0.005947113, -0.042053223, 0.059661865, 0.05734253, 0.011505127, -0.0027332306, -0.0027580261, 0.020217896, 0.021987915, -0.06994629, -0.028930664, -0.038238525, 0.013839722, -0.06335449, 0.04321289, 0.0043563843, 0.007827759, 0.02355957, 0.012756348, -0.014144897, 0.038330078, 0.010971069, 0.037506104, -0.010635376, 0.07727051, -0.008979797, -0.011604309, 0.0041618347, -0.013977051, 0.0028972626, -0.006954193, -0.05368042, 0.0018758774, -0.019561768, -0.031707764, -0.04324341, -0.006351471, 0.01737976, 0.00012910366, 0.0357666, -0.014862061, -0.013595581, -0.01763916, -0.0059051514, -0.00038313866, -0.01158905, -0.046569824, 0.0037555695, -0.028457642, -0.015975952, 0.014312744, 0.009857178, -0.0116119385, 0.023422241, 0.03173828, -0.0138549805, 0.013435364, -0.016555786, 0.0028934479, -0.023117065, -0.017730713, 0.035888672, 0.00022912025, -0.0012493134, 0.006225586, 0.0028305054, 0.04815674, -0.007045746, -0.0034770966, -0.00409317, -0.02961731, 0.008728027, 0.074157715, 0.01663208, -0.014541626, 0.01184082, -0.0025424957, -0.0059432983, -0.029968262, 0.017700195, -0.038879395, -0.015319824, 0.008934021, -0.07171631, -0.052001953, -0.029037476, 0.02015686, -0.026535034, 0.0158844, -9.179115e-05, 0.004673004, -0.015052795, 0.011810303, -0.04144287, 0.02078247, -0.041107178, 0.006351471, 0.028152466, 0.0036849976, 0.014389038, -0.028060913, 0.012870789, 0.003320694, 0.09259033, -0.0036621094, 0.028900146, -0.048461914, 1.0669231e-05, 0.019454956, 0.0075416565, 0.019302368, -0.015411377, 0.020599365, -0.004840851, 0.035614014, -0.03375244, -0.01889038, 0.009552002, -0.009902954, -0.061767578, -0.07336426, 0.012130737, 0.027633667, 0.009422302, -0.023254395, -0.012008667, 0.011108398, -0.014694214, -0.057891846, -0.03765869, -0.013954163, -0.043029785, 0.015686035, 0.0036258698, -0.004699707, 0.04156494, 0.093566895, 0.019104004, 0.014541626, -0.022354126, -0.036499023, 0.022735596, 0.02154541, -0.020828247, 0.017868042, -0.022949219, 0.0053977966, -0.031555176, 0.040130615, 0.075927734, -0.020507812, 0.030197144, 0.011436462, -0.013374329, 0.016494751, -0.00031614304, 0.017807007, -0.028182983, 0.010795593, -0.021759033, -0.022262573, -0.0149383545, -0.033996582, -0.036254883, -0.09490967, -0.022964478, 0.07397461, -0.0021514893, -0.026016235, -0.017990112, -0.03024292, -0.00970459, 0.015037537, -0.039001465, 0.00299263, 0.016220093, -0.011383057, -0.0138549805, -0.015670776, 0.013954163, 0.007419586, 0.060394287, 0.007659912, -0.03543091, -0.035308838, 0.022994995, -0.014427185, -0.000895977, 0.016647339, -0.009880066, -0.027023315, -0.057403564, -0.02178955, 0.002029419, -0.035064697, -0.05770874, 0.003955841, 0.05770874, 0.017944336, 0.02003479, -0.06137085, 0.0068244934, -0.00920105, 0.013893127, 0.0032997131, 0.011291504, -0.041229248, 0.012367249, -0.011260986, -0.037750244, -0.024627686, 0.029220581, -0.00806427, -0.066223145, 0.04333496, -0.022354126, 0.028121948, -0.040039062, -0.0011606216, 0.01309967, 0.032836914, -0.013702393, 0.004699707, 0.018112183, -0.016082764, -0.027404785, 0.015174866, -0.025161743, 0.0418396, -0.02949524, 0.018203735, 0.01600647, 0.024887085, 0.019622803, 0.025466919, 0.026260376, -0.00023949146, -0.04083252, -0.022018433, 0.021896362, 0.012969971, -0.010505676, 0.020446777, -0.0070495605, 0.0016813278, -0.01486969, -0.01828003, -0.006450653, 0.018844604, -0.011123657, 0.027191162, -0.035308838, -0.061706543, 0.018066406, 0.026367188, 0.024932861, 0.016525269, -0.034179688, -0.025894165, -0.006668091, -0.0038642883, -0.009727478, 0.048858643, 0.07507324, -0.041778564, -0.041046143, -0.038085938, 0.036590576, -0.032958984, -0.024490356, 0.07171631, 0.033172607, 0.018310547, 0.02041626, -0.00630188, -0.030273438, 0.012138367, -0.0050468445, 0.007255554, 0.035949707, -0.025970459, 0.029083252, 0.04043579, -0.0021438599, -0.007858276, 0.026351929, -0.00856781, 0.024520874, -0.013694763, -0.009010315, -0.021224976, -0.03050232, 0.015823364, -0.014762878, -0.033447266, -0.03756714, -0.047790527, -0.03656006, -0.0025939941, -0.016921997, 0.032348633, 0.036865234, 0.021957397, -0.005847931, -0.0012607574, -0.059936523, 0.034301758, 0.03894043, -0.06463623, -0.024215698, -0.020065308, 0.021713257, -0.04144287, 0.017684937, 0.020828247, -0.029296875, 0.019302368, 0.05731201, 0.00969696, -0.013832092, 0.012489319, 0.06719971, 0.014785767, 0.014526367, 0.0050354004, 0.071899414, 0.024902344, -0.06903076, -0.0055274963, -0.018127441, -0.03479004, 0.00868988, -0.01727295, -0.018753052, 0.00039958954, -0.020217896, 0.0038814545, -0.004081726, 0.030761719, -0.002374649, -0.0032234192, 0.00793457, -0.021743774, 0.01096344, -0.021560669, -0.009246826, -0.010467529, 0.025970459, 0.030090332, -0.0044021606, -0.06536865, -0.012458801, 0.02558899, -0.0024147034, 0.012062073, 0.011528015, 0.01676941, 0.028457642, -0.04486084, -0.010871887, -0.057159424, 0.022644043, -0.025344849, -0.031036377, -0.0047454834, -0.0052719116, 0.02180481, -0.012046814, 0.03289795, -0.008560181, 0.02420044, 0.0037403107, -0.04574585, 0.013069153, -0.017974854, -0.021575928, -0.029907227, -0.015312195, 0.008605957, -0.08026123, 0.010498047, 0.013137817, 0.029022217, 0.012245178, -0.015823364, 0.044128418, 0.034301758, -0.014442444, -0.033966064, -0.04458618, 0.007698059, -0.0069236755, 0.0011920929, 0.020843506, 0.021316528, 0.0052452087, 0.02671814, -0.020080566, 0.0063095093, -0.019317627, 0.017944336, 0.022079468, 0.0152282715, -0.062805176, -0.058258057, -0.030853271, -0.017745972, -0.016174316, 0.011131287, 0.0043945312, -0.048980713, 0.03704834, 0.04559326, 0.08081055, 0.010017395, 0.023132324, 0.010978699, 0.0060691833, 0.009002686, 0.01007843, -0.018051147, 0.0032863617, -0.0022449493, 0.01878357, 0.010505676, -0.016159058, -0.057434082, -0.0044822693, -0.009017944, -0.02330017, 0.016281128, -0.043823242, 0.0076522827, 0.04940796, -0.030380249, 0.0033454895, 0.01020813, 0.033477783, -0.055145264, -0.008384705, -0.027389526, -0.012809753, -0.02368164, -0.023529053, 0.002336502, 0.004131317, 0.019927979, -0.030166626, -0.0127334595, -0.0030212402, -0.013641357, 0.015029907, 0.024108887, 0.005554199, -0.06378174, -0.020477295, 0.01763916, 4.8041344e-05, -0.023086548, 0.017959595, -0.013343811, 0.001783371, 0.009643555, 0.05718994, -0.011497498, 0.056671143, -0.0017185211, 0.011711121, -0.047698975, -0.013877869, 0.051116943, 0.02027893, -0.06463623, -0.048553467, 0.019073486, 0.0034923553, 0.048919678, 0.020706177, 0.034484863, -0.034698486, -0.018173218, -0.051940918, -0.023269653, 0.018081665, -0.023132324, 0.055755615, 0.040893555, -0.008178711, 0.013618469, 0.030838013, -0.0625, 0.022109985, 0.012268066, 0.029251099, -0.0059814453, -0.018676758, -0.015258789, -0.0034561157, 0.0046539307, 0.046325684, -0.035308838, 0.0069770813, 0.02116394, -0.04397583, 0.0552063, 0.03778076, -0.0043029785, 0.030563354, -0.021865845, -0.008934021, -0.0004916191, -0.030670166, 0.006565094, -0.024002075, 0.029632568, 0.030944824, 0.0413208, -0.03717041, -0.012519836, -0.009841919, -0.010276794, 0.020767212, -0.007835388, -0.037231445, -0.048675537, 0.037628174, 0.02809143, 0.009895325, -0.012580872, 0.020828247, 0.008522034, -0.0473938, -0.004699707, 0.03302002, -0.028335571, -0.020401001, 0.003921509, 0.03540039, 0.009033203, -0.032196045, -0.092041016, -0.050994873, 0.026687622, 0.013908386, 0.013473511, 0.08190918, -0.0074386597, 0.027572632, 0.03704834, 0.0017004013, 0.01084137, -0.007724762, 0.03930664, -0.0038375854, -0.010238647]}, "B07QLDTY37": {"id": "B07QLDTY37", "original": "Brand: Cibicon\nName: Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)\nDescription:
      Flame Retardant and Absorbent Material

      The surface fabric of the Under Grill Mat is made of flame retardant material.

      but the backing material is not flame retardant material.

      This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

      from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

      Perfect Pretection

      The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

      surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

      BBQ mess.This strong material is made from 100% recycled plastic bottles.

      Easily Use

      The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

      Our material is environmentally safe. This product is safe for your entire family, including your pets.
      .

      If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

      100% NO HASSEL Lifetime Guarantee.
      \nFeatures: Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ\nPerfect Protection:This material is made of flame retardant material, It won't burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath.\nGood Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.\nEasily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size.\nSuggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.\n", "metadata": {"Name": "Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)", "Brand": "Cibicon", "Description": "
      Flame Retardant and Absorbent Material

      The surface fabric of the Under Grill Mat is made of flame retardant material.

      but the backing material is not flame retardant material.

      This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

      from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

      Perfect Pretection

      The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

      surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

      BBQ mess.This strong material is made from 100% recycled plastic bottles.

      Easily Use

      The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

      Our material is environmentally safe. This product is safe for your entire family, including your pets.
      .

      If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

      100% NO HASSEL Lifetime Guarantee.
      ", "Features": "Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ\nPerfect Protection:This material is made of flame retardant material, It won't burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath.\nGood Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.\nEasily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size.\nSuggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.036193848, 0.025344849, -0.043060303, -0.028778076, -0.013435364, -0.019134521, -0.043792725, 0.0018434525, -0.038269043, 0.009109497, -0.04949951, 0.059143066, 0.0040626526, -0.007587433, 0.050109863, -0.019470215, 0.0103302, 0.028579712, 0.06512451, -0.010177612, -0.0026950836, -0.012252808, 0.028762817, -0.00083112717, 0.0128479, -0.013664246, 0.07891846, -0.013771057, -0.0011825562, -0.026794434, 0.019851685, -0.0059013367, 0.029022217, 0.004146576, -0.03552246, -0.023361206, -0.04876709, 0.003068924, -0.008476257, -0.012413025, 0.0068244934, -0.015960693, -0.02003479, -0.015174866, -0.031463623, -0.027145386, 0.0018482208, -0.029434204, -0.0211792, 0.04748535, 0.027908325, 0.038879395, 0.023025513, 0.032958984, 0.00630188, 0.020263672, -0.033721924, 0.04095459, 0.042510986, 0.02357483, -0.016586304, -0.010597229, 0.02670288, -0.011940002, -0.029342651, -0.00447464, 0.068847656, -0.023971558, -0.04119873, -0.02217102, 0.053771973, -0.0055160522, 0.05065918, -0.03692627, -0.012580872, -0.049621582, 0.03050232, -0.003446579, -0.0021266937, -0.013374329, -0.0463562, 0.000667572, 0.021636963, -0.022949219, -0.0440979, -0.026321411, -0.03479004, 0.014907837, -0.034942627, -0.03918457, -0.010055542, -0.0039367676, -0.04559326, -0.0038928986, -0.024246216, -0.02217102, -0.012168884, -0.0057640076, 0.016357422, 0.023101807, 0.028518677, -0.04321289, 0.05557251, -0.037353516, -0.027069092, 0.014480591, -0.03137207, -0.01083374, -0.015365601, 0.045928955, -0.023254395, -0.06463623, -0.014274597, -0.04711914, -0.045898438, 0.012718201, -0.01826477, -0.046875, 0.030532837, -0.07232666, -0.03656006, -0.01852417, -0.020523071, 0.07495117, 0.04248047, 0.048980713, 0.035186768, 0.002986908, -0.05316162, 0.04498291, 0.0076560974, -0.0038032532, -0.025466919, 0.021270752, -0.018707275, -0.016143799, -0.020751953, -0.02078247, 0.020095825, 0.006755829, -0.013206482, -0.009460449, 0.046875, -0.006149292, -0.014144897, 0.03829956, 0.027709961, 0.009422302, -0.017486572, -0.07727051, 0.026046753, -0.038604736, 0.029953003, -0.019561768, -0.019989014, -0.041809082, -0.0075416565, -0.020401001, -0.0011768341, -0.03765869, 0.01737976, -0.0038642883, 0.011558533, 0.003967285, -0.003353119, 0.009864807, -0.037109375, 0.0064315796, 0.023483276, 0.039215088, 0.048217773, -0.014076233, -0.06463623, -0.014923096, -0.0068588257, -0.034362793, 0.009094238, 0.046417236, 0.08483887, -0.092163086, -0.09106445, -0.052001953, 0.14416504, -0.08239746, -0.009216309, -0.02116394, 0.01927185, 0.029251099, 0.03665161, 0.026153564, -0.029464722, -0.04019165, -0.045043945, -0.020736694, -0.008613586, 0.037261963, 0.009094238, 0.031341553, -0.00052547455, -0.01020813, 0.0017976761, 0.006385803, 0.01737976, -0.0021457672, 0.03173828, -0.0018806458, 0.010772705, 0.015930176, -0.024291992, 0.028701782, 0.0046920776, -0.0345459, -0.0037555695, 0.016189575, 0.009391785, -0.029800415, 0.005596161, -0.011077881, 0.034057617, -0.024795532, 0.061553955, 0.053466797, 0.036743164, 0.044006348, 0.013412476, -0.03074646, -0.0009660721, -0.0093307495, 0.05053711, -0.010360718, 0.045013428, 0.014930725, 0.014274597, 0.017044067, -0.01889038, 0.024749756, 0.045898438, 0.046875, -0.009239197, -0.0016803741, -0.0066566467, -0.004337311, -0.04309082, 0.03161621, -0.00970459, -0.03829956, -0.0113220215, 0.034606934, -0.01751709, 0.0013217926, 0.023452759, -0.0057640076, 0.027832031, 0.0067825317, -0.03982544, 0.03491211, -0.0770874, 0.008514404, -0.024902344, 0.0105896, -0.017044067, -0.0030403137, 0.054870605, -0.019561768, 0.064331055, -0.04244995, 0.06665039, 0.03302002, -0.005832672, -0.0335083, 0.0088272095, -0.011184692, -0.008422852, 0.030776978, 0.046661377, -0.02355957, -0.048065186, -0.009010315, 0.0056533813, 0.0116119385, 0.02557373, 0.028945923, -0.0033836365, -0.003730774, 0.039276123, -0.007858276, -0.0048713684, 0.021697998, -0.023742676, -0.0071105957, 0.014839172, 0.027328491, -0.014915466, 0.006336212, -0.007335663, -0.0206604, -0.020874023, 0.060302734, -0.0026340485, -0.0146865845, -0.02458191, 0.02319336, -0.05984497, 0.025726318, -0.01449585, 0.0211792, 0.014152527, -0.0022697449, -0.0072898865, -0.033721924, 0.030410767, 0.025436401, 0.01763916, -0.060913086, 0.052368164, 0.03201294, -0.023925781, 0.035583496, 0.037231445, 0.049560547, -0.04257202, -0.00063467026, -0.017593384, -0.00630188, 0.018218994, 0.0231781, -0.02835083, 0.002117157, -0.016693115, 0.005329132, 0.012664795, -0.018432617, 0.0022773743, 0.0017938614, -0.011138916, 0.00067281723, 0.0034236908, 0.010810852, 0.013412476, -0.039215088, 0.033599854, -0.01008606, 0.003944397, 0.0045051575, -0.058135986, 0.011764526, 0.003288269, 0.01864624, -0.012527466, -0.0040397644, 0.004432678, -0.026016235, -0.0085372925, -0.05267334, -0.010986328, 0.008544922, 0.004184723, -0.0014257431, 0.012741089, -0.049560547, -0.042755127, 0.012504578, -0.055999756, -0.0031719208, 0.032562256, -0.008804321, -0.011497498, 0.017578125, 0.016998291, 0.020492554, 0.027633667, 0.025497437, -0.055541992, -0.039398193, -0.032104492, -0.031188965, -0.012527466, -0.056671143, -0.017456055, -0.028076172, -0.052337646, -0.038909912, 0.034057617, -0.015640259, 0.04940796, 0.008010864, 0.022537231, 0.07141113, -0.012825012, -0.035003662, -0.038513184, 0.030654907, -0.056610107, -0.018737793, 0.016098022, 0.033233643, 0.019424438, -0.038238525, -0.012451172, -0.045166016, -0.06616211, 0.0034313202, -0.013664246, -0.027511597, -0.018203735, -0.017150879, -0.0234375, -0.039886475, 0.012786865, 0.07171631, -0.02998352, -0.008773804, -0.026779175, -0.0068626404, 0.008544922, 0.023727417, -0.012580872, -0.003074646, -0.003255844, -0.012908936, 0.018692017, -0.037506104, 0.013328552, 0.036834717, -0.036010742, -0.016830444, -0.020751953, 0.022827148, -0.0077171326, -0.03353882, -0.050598145, -0.039276123, -0.009750366, 0.053527832, -0.023330688, 0.05718994, 0.042785645, -0.017440796, 0.07910156, -0.05331421, 0.011192322, 0.026443481, 0.0069389343, 0.01876831, -0.0052223206, -0.021728516, 0.020370483, -0.016448975, -0.048950195, -0.0135269165, -0.022476196, 0.03050232, 0.0030269623, 0.035095215, 0.0058174133, 0.042297363, 0.017288208, 0.038146973, -0.012573242, -0.0010976791, -0.0104904175, -0.04385376, 0.07330322, -0.0016679764, 0.017196655, -0.060577393, 0.039031982, -0.022659302, -0.02911377, 0.03930664, -0.04171753, 0.038604736, 0.0018920898, -0.011962891, -0.0029335022, -0.01586914, 0.014053345, 0.016494751, 0.005191803, -0.021453857, -0.07104492, 0.024459839, -0.10211182, 0.07098389, 0.033081055, -0.02458191, 0.0892334, 0.0736084, -0.041412354, 0.01133728, 0.011878967, 0.012680054, 0.0014038086, 0.015930176, -0.022277832, -0.023971558, -0.00063610077, 0.011947632, 0.012191772, -0.031433105, -0.012260437, 0.006668091, 0.012939453, -0.0029354095, 0.0016422272, 0.016220093, 0.022033691, 0.005004883, -0.010299683, -0.0390625, 0.04498291, -0.047027588, -0.014556885, 0.014625549, -0.023071289, -0.007217407, 0.007972717, 0.013114929, -0.01524353, -0.01612854, -0.0016889572, 0.017227173, 0.041412354, 0.035583496, -0.02558899, -0.018707275, 0.018737793, -0.016677856, -0.05670166, -0.0028572083, 0.069885254, 0.054473877, 0.016036987, -0.031982422, -0.022247314, -0.022018433, -0.027008057, 0.03036499, -0.052581787, -0.08886719, -0.029449463, -0.0022087097, -0.0006132126, -0.019012451, 0.0040397644, -0.041381836, -0.033599854, 0.017074585, -0.048675537, 0.013191223, -0.008392334, -0.015991211, 0.015670776, 0.012557983, -0.021469116, -0.055236816, -0.030761719, 0.0044441223, -0.012550354, 0.02357483, -0.029586792, 0.052764893, -0.048431396, -0.001001358, -0.00283432, 0.029022217, -0.0036907196, -0.0045776367, -0.016647339, -0.010826111, -0.032043457, -0.028411865, 0.043914795, 0.020523071, -0.025115967, -0.020462036, 0.008834839, 0.005302429, 0.04522705, 0.09320068, 0.0023994446, 0.05142212, -0.025390625, 0.04650879, -0.044128418, -0.017944336, 0.05029297, -0.07507324, -0.021102905, -0.0038661957, 0.07446289, -0.018173218, -0.014259338, -0.06109619, 0.027175903, 0.019332886, -0.01637268, 0.007888794, 0.00422287, 0.02734375, -0.006626129, -0.000890255, -0.003227234, -0.020828247, 0.013648987, -0.004837036, 0.008613586, -0.016693115, 0.022827148, -0.01864624, -0.0033035278, -0.019836426, -0.03111267, 0.04547119, -0.039276123, -0.026123047, -0.012069702, 0.052764893, 0.033172607, -0.020751953, -0.008018494, 0.01386261, -0.017074585, -0.048797607, 0.010437012, -0.0072631836, -0.03262329, -0.005874634, -0.006164551, -0.01121521, -0.018753052, -0.0070877075, 0.0010576248, -0.010276794, 0.012039185, -0.014060974, 0.00071811676, -0.031097412, -0.023010254, 0.015113831, 0.028884888, 0.03781128, 0.059814453, -0.044769287, -0.024002075, -0.05050659, -0.03213501, -0.0051498413, -0.025741577, -0.02407837, 0.015350342, 0.019088745, -0.014640808, 0.005996704, 0.031341553, 0.0011091232, -0.028274536, 0.01751709, 0.020828247, -0.004173279, -0.04067993, 0.041900635, -0.04284668, 0.016204834, -0.03050232, -0.047088623, 0.0028457642, 0.020935059, -0.051361084, 0.019348145, 0.007286072, -0.040008545, -0.023956299, -0.024276733, -0.022781372, -0.02003479, 0.0927124, 0.0043678284, 0.008331299, -0.06903076, -0.00076436996, -0.044403076, 0.016433716, -0.068847656, 0.021408081, 0.009292603, 0.041992188, 0.020980835, -0.026046753, 0.03137207, -0.010444641, 0.026382446, -0.011375427, 0.008079529, -0.017074585, -0.018936157, -0.004840851, -0.0060157776, -0.055389404, -0.011787415, 0.044036865, -0.0039253235, -0.041046143, -0.037597656, 0.012077332, 0.0005440712, -0.020492554, -0.022598267, 0.012641907, -0.0005455017, -0.00390625, 0.022109985, 0.036499023, 0.017593384, -0.044921875, -0.052001953, -0.03994751, 0.014152527, -0.016921997, 0.053131104, -0.026443481, -0.035705566, -0.041625977, -0.0054855347, 0.016494751, -0.039123535, -0.030960083, -0.0049362183, -0.0004901886, -0.0020942688, -0.00844574, -0.015350342, 0.045959473, -0.033599854, -0.022415161, -0.032043457, 0.045806885, -0.023544312, -0.011650085, 0.08691406, 0.025756836, 0.0119018555, 0.02279663, 0.0010633469, 0.01701355, 0.028503418, 0.022201538, -0.015823364, -0.021911621, 0.009063721, 0.007534027, -0.043518066, -0.044708252, -0.028289795, 0.027862549, -0.016952515, -0.003955841, -0.0053749084, -0.043792725, -0.0010490417, 0.001996994, 0.034301758, 0.012214661, -0.017242432, 0.0019397736, 0.02809143, -0.07305908, -0.034210205, 0.05783081, 0.025985718, -0.01146698, -0.023284912, 0.02116394, 0.020233154, -0.017944336, 0.07220459, -0.016357422, -0.033172607, -0.006034851, 0.06561279, 0.059753418, 0.009597778, -0.029037476, -0.043548584, 0.01966858, -0.0030784607, 0.03366089, -0.01322937, -0.046051025, -0.03866577, 0.06488037, 0.045684814, 0.02078247, 0.0065193176, 0.02960205, -0.0024318695, 0.010925293, 0.0033187866, 0.010429382, -0.022155762, -0.0029201508, -0.066223145, -0.003993988, -0.001282692, -0.0036125183, 0.0076065063, -0.018981934, 0.026443481, -0.017974854, 0.026992798, -0.011459351, 0.03012085, -0.005958557, -0.06689453, -0.051696777, -0.031188965, 0.021087646, -0.0026817322, -0.0435791, -0.010345459, 0.017684937, 0.028778076, 0.023239136, 0.008102417, 0.0181427, 0.00036597252, -0.009735107, -0.025878906, 0.04034424, 0.04562378, -0.008110046, 0.036621094, -0.050964355, -0.021759033, 0.0132369995, 0.013000488, -0.039398193, 0.08135986, -0.025985718, -0.010543823, -0.024261475, -0.004886627, -0.016098022, -0.024414062, 0.015258789, 0.017532349, 0.015144348, -0.011383057, -0.016433716, 0.015075684, 0.038604736, -0.062286377, 0.025741577, -0.020401001, 0.009254456, -0.047607422, 0.02545166, -0.0033302307, -0.0340271, 0.03994751, 0.042633057, -0.005630493, 0.066467285, 0.011978149, 0.026031494, -0.0039253235, 0.0158844, 0.043884277, -0.0063209534, 0.031555176, 0.0231781, -0.006942749, 0.015541077, 0.028335571, -0.019470215, 0.05331421, 0.013221741, 0.039001465, 0.033843994, 0.03363037, 0.0073928833, 0.00048017502, 0.030685425, -0.018676758, 0.018600464, 0.008384705, -0.0013971329, 0.0031604767, 0.008377075, -0.009346008, -0.04244995, -0.02267456, -0.008026123, -0.04034424, -0.020614624, 0.013763428, 0.003578186, 0.026763916, -0.013519287, -0.0017023087, 0.002494812, -0.038848877, 0.034576416, -0.006111145, 0.006214142, -0.020431519, -0.00894165, -0.0418396, -0.003376007, -0.030822754, 0.0054893494, -0.0129852295, -0.051116943, -0.016067505, 0.023223877, 0.017700195, -0.08807373, -0.03552246, -0.026473999, 0.018325806, -0.008041382, 0.08062744, -0.015380859, -0.03552246, -0.055999756, 0.0069122314, -0.043304443, 0.005596161, -0.0021572113, 0.017059326, 0.004108429, 0.0037441254, 0.023666382, 0.041992188, 0.017211914, 0.0071792603, -0.015319824, -0.037261963, -0.036987305, 0.0657959, 0.014305115, -0.039520264, -0.015274048, 0.044708252, 0.02104187, 0.035064697, 0.03604126, -0.0024528503, -0.068847656, -0.028015137, -0.03842163, 0.048919678, -0.0073509216, -0.012893677, 0.040740967, -0.011451721, -0.049621582, 0.07043457, 0.021377563, 0.03010559, 0.02508545, -0.011169434, -0.019683838, -0.016708374, 0.012397766, -0.0068244934, 0.003643036, 0.003370285, 0.011146545, -0.0079574585, -0.050567627, 0.008171082, 0.008171082, 0.003921509, 0.030075073, -0.019424438, -0.029953003, 0.026489258, 0.012916565, -0.020187378, 0.017623901, 0.0003209114, -0.027130127, -0.039367676, -0.0015392303, 0.060577393, -0.047424316, -0.010765076, -0.006462097, 0.011886597, 0.026977539, -0.016479492, -0.008796692, -0.025009155, -0.00894165, 0.022827148, 0.009681702, 0.02796936, -0.017608643, -0.012023926, -0.010673523, 0.011520386, 0.013191223, 0.0058403015, -0.052459717, 0.060058594, 0.010383606, 0.060699463, -0.029052734, 0.031158447, -0.007572174, 0.0031471252, 0.021133423, 0.0019893646, 0.064697266, -0.031051636, 0.004760742, -0.016571045, -0.019607544, -0.045043945, 0.027877808, -0.0033912659, -0.01689148, 0.04458618]}, "B002MET2CO": {"id": "B002MET2CO", "original": "Brand: Raypak\nName: Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.\nFeatures: 406,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "metadata": {"Name": "Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater", "Brand": "Raypak", "Description": "The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.", "Features": "406,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018310547, 0.022567749, -0.057281494, -0.015655518, 0.024856567, -0.060424805, 0.027252197, 0.023254395, 0.035308838, -0.0073165894, -0.016677856, -0.033721924, -0.011276245, -0.057281494, -0.006839752, -0.0362854, -0.0011539459, -0.039093018, -0.020614624, -0.04248047, 0.007259369, -0.050628662, 0.021087646, 0.004009247, -0.020019531, 0.03390503, 0.06286621, -0.0093307495, -0.014343262, -0.022079468, 0.019943237, -0.0131073, 0.041748047, -0.0033664703, -0.044067383, -0.0037231445, 0.02268982, -0.024337769, -0.03778076, 0.018920898, -0.011672974, 0.029525757, -0.013969421, -0.027114868, -0.050567627, 0.010437012, -0.032958984, 0.006149292, 0.010887146, 0.023101807, -0.0011548996, -0.051239014, -0.0046958923, -0.025772095, -0.008460999, -0.0027008057, -0.032104492, -0.0064315796, 0.008605957, -0.027114868, -0.012229919, -0.006614685, 0.03302002, 0.034118652, -0.06561279, 0.0016584396, 0.042755127, -0.017578125, 0.05456543, -0.060638428, -0.02659607, 0.064697266, 0.013496399, -0.03427124, -0.05508423, 0.003162384, 0.022598267, -0.006122589, 0.012336731, -0.011192322, 0.02255249, -0.0050964355, 0.009712219, -0.006626129, 0.0033817291, -0.00592041, 0.0043640137, -0.0076446533, -0.011383057, -0.059020996, -0.0075531006, -0.005016327, -0.04714966, 0.00069761276, -0.009864807, -0.047668457, -0.062347412, -0.11785889, 0.05380249, 0.035095215, 0.042633057, -0.0501709, 0.05130005, 0.034698486, -0.017730713, 0.020080566, -0.018005371, -0.0017166138, 0.0073165894, 0.025405884, -0.01449585, -0.046142578, -0.0501709, -0.027282715, 0.009277344, 0.046936035, -0.052581787, 0.0042800903, -0.0061531067, -0.010383606, 0.014198303, 0.010536194, -6.3061714e-05, -0.00025892258, 0.0026435852, 0.010879517, -0.017181396, -0.013549805, 0.0007710457, 0.01020813, -0.032318115, -0.0029411316, 0.07055664, 0.053131104, 0.032440186, 0.0017385483, 0.06185913, -0.027648926, 0.03967285, -0.028564453, 0.057891846, 0.024734497, 0.008926392, 0.022842407, -0.006008148, 0.047576904, 0.030761719, -0.018844604, -0.01612854, -0.06866455, -0.04724121, 0.016174316, -0.00031495094, 0.015419006, 0.0060043335, 0.038635254, -0.005832672, 0.021987915, -0.006011963, 0.009178162, 0.032073975, -0.0060577393, -0.049865723, 0.048858643, 0.0158844, -0.011642456, 0.03857422, 0.019927979, 0.026443481, 0.082336426, -0.0015354156, -0.008987427, 0.019851685, 0.00687027, -0.015312195, -0.0073890686, -0.050933838, 0.08111572, 0.09259033, -0.1161499, -0.07519531, -0.07287598, 0.15283203, -0.0524292, -0.007408142, -0.0034294128, -0.004295349, 0.020843506, 0.016525269, 0.021713257, -0.014633179, 0.010528564, 0.039978027, -0.03540039, -0.007648468, -0.0044288635, -0.013221741, 0.029327393, -0.0184021, -0.008293152, -0.027679443, 0.028152466, -0.031951904, 0.032043457, 0.034057617, -0.0018939972, 0.032226562, 0.004020691, 0.025817871, 0.0063591003, -0.019104004, -0.05001831, 0.025405884, -0.025619507, -0.02217102, 0.010810852, -0.025939941, 0.028503418, 0.0090789795, 0.0018978119, -0.012420654, -0.051940918, 0.015556335, -0.012512207, 0.047088623, -0.028427124, -0.0011358261, -0.018463135, 0.031158447, -0.01373291, 0.009666443, 0.036224365, 0.068847656, 0.010604858, -0.03289795, 0.012916565, 0.039154053, 0.0033836365, -0.017349243, 0.01663208, 0.005634308, -0.029220581, -0.032928467, 0.012641907, -0.061798096, -0.06329346, -0.0016441345, 0.0155181885, 0.0138168335, 0.028121948, 0.011314392, 0.002910614, 0.033691406, -0.027633667, 0.023376465, 0.01612854, -0.023101807, -0.039642334, -0.026931763, 0.019088745, 0.029418945, 0.025283813, -0.01878357, 0.015449524, 0.034454346, -0.027542114, 0.021835327, 0.0033493042, 0.0041389465, -0.019760132, 0.0048332214, -0.026672363, -0.010406494, -0.010948181, 0.013336182, 0.033996582, -0.03845215, 0.0077323914, 0.03527832, -0.007095337, -0.020690918, -0.008239746, -0.018341064, -0.0018806458, 0.0021038055, -0.046661377, 0.003850937, -0.0079574585, -0.020980835, -0.0068092346, 0.01335144, 0.008201599, -0.0124053955, 0.012207031, -0.012054443, -0.009063721, 0.010612488, 0.037597656, 0.008644104, -0.033416748, -0.029785156, 0.010192871, -0.032348633, -0.011672974, 0.0010967255, -0.020706177, -0.006336212, 0.041503906, 0.012626648, -0.023956299, -0.059143066, -0.0053863525, 0.013519287, 0.02243042, -1.3113022e-05, -0.022827148, 0.006362915, 0.01876831, -0.004219055, 0.0127334595, -0.021133423, -0.018112183, -0.010101318, 0.009666443, 0.0036029816, 0.0030231476, 0.019683838, 0.00440979, -0.030471802, 0.0025348663, 0.04937744, -0.026748657, 0.020584106, -0.044128418, 0.0038700104, -0.020584106, 0.023742676, 0.020523071, 0.007369995, -0.03881836, 0.024887085, -0.041656494, -0.015701294, 0.017089844, -0.029418945, 0.013656616, 0.008010864, 0.018035889, -0.02355957, -0.00869751, 0.01537323, -0.03427124, -0.016723633, -0.024627686, 0.0077171326, -0.00712204, -0.0047569275, -0.016708374, 0.01852417, -0.060668945, 0.021591187, -0.049468994, -0.045928955, -0.01876831, 0.064453125, 0.0005440712, -0.042388916, -0.04257202, -0.07501221, -0.047180176, -0.007083893, -0.048675537, -0.002067566, -0.03656006, -0.02784729, 0.048828125, 0.020568848, -0.034240723, -0.0016708374, -0.0018644333, 0.022994995, 0.0028972626, 0.017303467, -0.0079956055, 0.030639648, 0.013305664, 0.013076782, 0.039489746, -0.0014457703, -0.0132751465, -0.006389618, 0.028579712, -0.010375977, 0.0021591187, -0.03652954, -0.035461426, -0.0104522705, 0.004009247, -0.06213379, 0.007270813, -0.087890625, 0.039093018, -0.008468628, -0.0054473877, -0.011856079, -0.07684326, -0.012863159, -0.057556152, 0.012084961, 0.07086182, -0.0025463104, -0.037628174, -0.0008354187, -0.036621094, 0.038757324, -0.0031909943, 0.0058059692, -0.011276245, 0.00024867058, 0.00053691864, 0.020095825, -0.03753662, 0.029205322, 0.032409668, -0.029342651, -0.0059318542, -0.012268066, 0.028121948, -0.031829834, 0.019836426, -0.012008667, -0.025985718, -0.026046753, -0.028869629, 0.0050201416, -0.007572174, -0.00687027, -0.02885437, -0.0058250427, -0.010643005, -0.039367676, -0.0033798218, 0.03338623, 0.04373169, -0.0116119385, 0.01939392, -0.021438599, -0.024749756, 0.020446777, -0.082336426, 0.03265381, 0.007511139, 0.036895752, 0.01109314, 0.009155273, 0.08392334, -0.029266357, 0.026870728, 0.0002270937, -0.009361267, -0.0023651123, -0.033355713, 0.035491943, 0.001159668, 0.033111572, -0.036834717, 0.035491943, 0.014671326, 0.0004746914, 0.010177612, 0.011871338, -0.005718231, 0.03161621, -0.010025024, -0.013343811, -0.008781433, 0.018798828, 0.0030231476, -0.020202637, -0.023849487, -0.09411621, 0.041290283, -0.072509766, 0.009407043, 0.021362305, -0.020248413, 0.079833984, 0.01991272, -0.011566162, 0.06500244, 0.04006958, -0.004047394, 0.021759033, 0.04446411, -0.035980225, 0.01751709, 0.007675171, -0.0552063, -0.024230957, -0.006778717, -0.049865723, 0.012779236, 0.02658081, 0.008644104, -0.08154297, 0.031799316, 0.05886841, -0.024093628, 0.005168915, -0.06335449, -0.00969696, -0.059906006, -0.0013027191, 0.01259613, -0.019729614, -0.009208679, -0.0038909912, -0.018997192, -0.020462036, 0.006942749, 0.021102905, 0.009925842, 0.0018196106, 0.041168213, 0.0054855347, -0.0024604797, -0.05303955, -0.025283813, -0.016845703, -0.010261536, 0.005302429, -0.012275696, 0.006416321, 0.0143966675, 0.020187378, 0.03704834, 0.011680603, 0.0020637512, -0.030395508, -0.024353027, -0.0018606186, 0.01727295, 0.01398468, -0.018218994, 0.0071525574, -0.013008118, -0.038024902, -0.05532837, -0.00067949295, -0.03829956, -0.04119873, -0.0037059784, -0.0413208, -0.06518555, 0.01461792, -0.0068244934, 0.061340332, -0.02961731, -0.008666992, -0.014228821, 0.0054130554, 0.028015137, -0.070495605, 0.020690918, -0.06640625, -0.002878189, 0.022659302, -0.0021324158, 0.061401367, 0.0057525635, -0.0011377335, -0.007369995, 0.10839844, -0.00035429, 0.008888245, -0.0847168, -0.023712158, 0.02998352, -0.019073486, 0.013511658, -0.018203735, 0.0209198, -0.002866745, 0.08239746, -0.04434204, 0.011169434, 0.025604248, 0.0026226044, -0.010643005, 0.0069999695, 0.07965088, -0.027832031, -0.002040863, 0.012283325, -0.017852783, 0.0026836395, -0.01890564, -0.05441284, 0.0049858093, -0.011604309, -0.01977539, 0.029312134, 0.0065078735, -0.023864746, 0.0003745556, 0.053100586, 0.00945282, -0.019439697, -0.016799927, 0.0023612976, 0.00014388561, -0.037506104, 0.02784729, 0.014564514, 0.010307312, 0.009796143, 0.0033950806, 0.021881104, 0.059509277, -0.016220093, 0.026855469, 0.0099105835, 0.0055770874, 0.0028648376, -0.038726807, 0.010528564, 0.047668457, 0.015068054, -0.01928711, 0.00034499168, -0.006477356, -0.012527466, -0.039733887, -0.024429321, -0.0015201569, 0.007575989, -0.005519867, -0.00016248226, 0.008575439, -0.024261475, -0.0040359497, 0.009986877, -0.031219482, -0.0060653687, 0.03945923, -0.0029296875, -0.016021729, 0.0035972595, -0.030944824, -0.0066986084, -0.012290955, 0.00068187714, 0.0029907227, -0.004814148, -0.028503418, -0.01449585, -0.010307312, 0.02279663, 0.008155823, -0.027938843, -0.08502197, -0.027618408, 0.016464233, -0.07397461, 0.01335907, 0.016494751, 0.030929565, 0.046081543, 0.0036029816, 0.014060974, 0.004753113, 0.02760315, 0.012756348, 0.008041382, 0.032318115, -0.05630493, 0.045135498, 0.004055023, -0.007896423, -0.07891846, 0.024002075, 0.0236969, -0.021987915, 0.025650024, -0.022445679, 0.06854248, -0.05581665, -0.043945312, -0.003824234, 0.022781372, -0.021194458, -0.015556335, -0.015205383, -0.048675537, -0.02859497, -0.026824951, -0.0029850006, 0.033447266, -0.002035141, -0.04660034, 0.043945312, 0.0059165955, -0.058624268, -0.022659302, -0.0017995834, 0.04849243, -0.056732178, -0.006793976, -0.020019531, -0.012908936, -0.0010929108, 0.034240723, 0.048706055, 0.029800415, -0.028549194, -0.028274536, -0.007965088, -0.011566162, -0.044952393, 0.06573486, -0.05166626, -0.024887085, -0.0072250366, 0.0018091202, 0.003993988, 0.007713318, -0.066711426, -0.032592773, -0.0018205643, 0.009269714, 0.043121338, -0.058135986, 0.04055786, -0.005306244, -0.03262329, -0.07672119, 0.026824951, -0.0135269165, -0.04067993, 0.051452637, 0.026382446, -0.0014429092, 0.023864746, -0.014633179, -0.014701843, -0.0012016296, 0.0018844604, -0.0690918, -0.004673004, -0.02293396, 0.007003784, -0.00920105, -0.010154724, -0.017089844, 0.024490356, -0.018310547, -0.006580353, -0.0072517395, -0.01197052, 0.00017809868, -0.021774292, 0.024047852, -0.0006933212, 0.0055618286, -0.009590149, 0.031707764, -0.054840088, -0.05987549, 0.0028648376, 0.020996094, 0.011764526, -0.0078125, 0.008796692, 0.021728516, -0.017990112, 0.020812988, 0.0066871643, -0.015525818, 0.03881836, 0.015129089, -0.024353027, 0.044128418, -0.00040578842, -0.009384155, -0.057403564, 0.05895996, -0.005695343, 0.08105469, -0.059631348, -0.019363403, 0.022201538, 0.031402588, 0.0013723373, -0.01889038, 0.032470703, -0.002828598, -0.0713501, -0.019973755, -0.04498291, -0.037902832, -0.011421204, -0.024368286, -0.017349243, -0.0029773712, -0.03378296, 0.023788452, -0.02923584, 0.03741455, 0.02255249, -0.011131287, 0.015007019, 0.00017035007, 0.029663086, -0.0073051453, -0.014717102, 0.026382446, -0.0071105957, -0.023971558, 0.022003174, -0.0019569397, -0.0007247925, 0.025939941, 0.008857727, 0.017807007, -0.021591187, 0.014801025, 0.00014233589, -0.030899048, -0.0070648193, -0.041503906, 0.008293152, -0.022338867, 0.01889038, 0.028015137, 0.029876709, 0.0053367615, -0.020370483, 0.07891846, -0.045959473, -0.013305664, 0.005077362, 0.008346558, 0.00013566017, 0.0031852722, 0.011047363, 0.008163452, 0.01953125, -0.020477295, -0.07147217, -0.0033626556, 0.035949707, -0.001704216, 0.03945923, -0.028030396, 0.026153564, -0.033081055, 0.0006637573, -0.022964478, -0.05319214, 0.022216797, 0.018218994, -0.024932861, 0.059265137, 0.048919678, 0.021713257, -0.005672455, -0.018127441, -0.013839722, -0.03793335, -0.013214111, 0.034179688, -0.0058021545, -0.062316895, -0.07269287, -0.028121948, -0.038024902, -0.01739502, 0.00674057, -0.0024852753, 0.007286072, 0.028900146, 0.020050049, 0.058166504, 0.0006155968, 0.019500732, 0.0036773682, 0.009674072, 0.007019043, 0.0055007935, -0.003107071, -0.02861023, -0.02583313, 0.016235352, -0.025039673, 0.027633667, -0.038330078, 0.0019836426, 0.037841797, -0.021438599, 0.023452759, -0.031463623, -0.027770996, 0.04248047, 0.00182724, -0.020828247, -0.022415161, -0.032196045, -0.04269409, -0.02684021, -0.07476807, 0.0032310486, -0.04385376, -0.021652222, -0.009567261, -0.0034313202, 0.016662598, -0.013908386, -0.011619568, 0.023101807, -0.0063705444, -0.008575439, 0.0619812, -0.0440979, -0.020935059, -0.06085205, 0.007511139, -0.0869751, -0.011154175, 0.009498596, -0.010757446, -0.00447464, -0.004371643, 0.01940918, 0.034240723, 0.04916382, -0.008087158, 0.008255005, -0.011642456, -0.0178833, -0.013130188, 0.0051231384, -0.053863525, -0.018341064, 0.00592041, 0.012809753, 0.05319214, 0.0015592575, 0.002254486, -0.078430176, 0.00081825256, -0.017807007, 0.03744507, -0.008117676, -0.014595032, 0.047088623, 0.002286911, -0.024902344, 0.061340332, 0.027053833, 0.0070724487, 0.0042419434, -0.02671814, 0.008377075, -0.023620605, 0.05618286, -0.010147095, -0.0012893677, -0.017166138, -0.004463196, -0.011230469, 0.05508423, 0.0068244934, -0.035125732, 0.016998291, 0.00050258636, -0.025787354, 0.042633057, -0.017929077, -0.01109314, 0.031707764, -0.068725586, -0.01889038, -0.033325195, -0.002128601, -0.024124146, -0.01966858, -0.01838684, -0.010910034, -0.044158936, 0.04107666, -0.047454834, -0.03845215, -0.06137085, -0.0026302338, 0.016113281, 0.011451721, -0.011772156, 0.0057754517, 0.01008606, 0.04348755, 0.005859375, -0.002702713, -0.0035591125, -0.016983032, -0.04537964, 0.040893555, -0.022094727, 0.04849243, -0.03692627, -0.053497314, -0.05911255, 0.046691895, -0.030883789, 0.0014677048, 0.012672424, -0.0134887695, 0.031585693, -0.035980225, 0.031951904, 0.043273926, -0.027236938, -0.030899048, -0.05456543, 0.00065374374]}, "B01LBW7S4Q": {"id": "B01LBW7S4Q", "original": "Brand: Weber\nName: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ\nDescription: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ\nFeatures: \n", "metadata": {"Name": "Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ", "Brand": "Weber", "Description": "Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0068893433, 0.0052986145, -0.06390381, -0.04547119, -0.0013723373, -0.023513794, -0.045928955, 0.022399902, -0.029205322, 0.023788452, 0.010978699, 0.020111084, -0.0033397675, -0.03149414, 0.010368347, -0.013221741, 0.021209717, -0.010314941, 0.0054397583, -0.017196655, 0.0035305023, 0.005897522, -0.012718201, 0.023986816, 0.052703857, -0.06774902, 0.019256592, -0.001912117, 0.03894043, 0.007545471, 0.0435791, -0.012214661, 0.036315918, 0.043548584, -0.06713867, 0.008125305, 0.018234253, 0.0011262894, -0.02357483, 0.034179688, 0.041137695, -0.025558472, 0.028961182, 0.04486084, 0.009735107, -0.038604736, 0.050476074, -0.05343628, 0.015899658, 0.0135269165, -0.019302368, -0.004837036, -0.023345947, -0.007827759, 0.0022296906, -0.023239136, 0.02053833, -0.0020599365, 0.043426514, 0.014808655, -0.03475952, -0.014953613, 0.01399231, -0.06286621, -0.00957489, -0.004962921, 0.06774902, 0.009742737, -0.0692749, -0.058013916, 0.03869629, -0.016204834, -0.022766113, 0.024963379, -0.0115356445, -0.018554688, 0.015594482, -0.02130127, 0.016403198, 0.05508423, -0.02178955, -0.009269714, 0.0048294067, -0.02168274, -0.012557983, -0.008255005, -0.021972656, 0.003768921, 0.0013036728, -0.017333984, -0.00472641, -0.045166016, -0.045196533, 0.07537842, 0.026489258, -0.018829346, -0.016311646, -0.012786865, 0.03253174, 0.03326416, -0.006755829, -0.019744873, 0.020584106, -0.018997192, -0.022781372, 0.011985779, 0.035980225, 0.04800415, 0.03302002, 0.012107849, -0.020751953, 0.059265137, 0.022232056, 0.020950317, -0.044799805, -0.029541016, -0.025421143, -0.006198883, 0.0005478859, -0.011650085, -0.023452759, 0.033294678, -0.025238037, 0.011955261, 0.006855011, 0.009475708, 0.020065308, -0.01689148, -0.077941895, -0.020507812, 0.019195557, 0.028640747, 0.0029525757, 0.04598999, -0.013687134, 0.014846802, -0.020507812, -0.011695862, 0.0016803741, -0.013710022, 0.0132751465, 0.006690979, 0.047912598, 0.002943039, 0.005554199, -0.025726318, -0.005634308, 0.03353882, 0.037261963, 0.047454834, -0.029418945, 0.011375427, 0.04812622, 0.0066184998, -0.08093262, 0.0063171387, -0.02784729, 0.00037622452, -0.045166016, -0.03744507, -0.0018110275, -0.025436401, -0.026748657, -0.005596161, -0.033721924, 0.021881104, 0.04156494, 0.008087158, 0.022033691, 0.044158936, 0.018493652, -0.04425049, -0.007797241, 0.013473511, -0.0027332306, 0.016708374, -0.02998352, -0.03237915, 0.07147217, -0.03942871, -0.0569458, -0.0368042, 0.030578613, -0.009819031, -0.020507812, -0.030334473, 0.0079193115, 0.02696228, 0.021224976, 0.010520935, 0.035491943, -0.016525269, -0.006084442, 0.027999878, 0.02494812, -0.018630981, -0.064208984, -0.004436493, -0.007637024, -0.043640137, 0.0018806458, -0.0023384094, -0.01373291, -0.0014181137, 0.013343811, -0.05557251, 0.020889282, -0.004711151, 0.03866577, 0.054748535, -0.0012550354, 0.049865723, -0.016571045, -0.062194824, -0.017211914, 0.008453369, -0.0031032562, 0.0025043488, 0.037384033, -0.05130005, 0.089904785, 0.014030457, 0.06237793, 0.03463745, -0.0028972626, -0.009429932, -0.032287598, 0.0030231476, -0.039031982, 0.01914978, -0.056671143, 0.042755127, 0.031463623, 0.0362854, -0.040649414, 0.035339355, 0.02166748, 0.07910156, -0.03363037, -0.011642456, 0.019561768, 0.007797241, -0.01133728, -0.010643005, 0.037872314, 0.017227173, 0.016998291, -0.027297974, 0.011291504, 0.005214691, 0.017211914, -0.015380859, 0.0154953, -0.04071045, 0.010635376, 0.02116394, -0.0317688, 0.0022525787, -0.04714966, 0.031051636, -0.011680603, 0.032196045, 0.03250122, 0.0028038025, 0.07281494, -0.009857178, 0.06161499, 0.04324341, -0.008361816, 0.0035381317, -0.007865906, -0.04437256, 0.006248474, 0.048217773, -0.025817871, -0.0079956055, -0.016845703, -0.012886047, 0.020080566, 0.014656067, -0.007118225, 0.02116394, -0.005168915, -0.01977539, 0.015266418, -0.05316162, -0.0014629364, -0.007659912, -0.018829346, 0.007843018, 0.04623413, 9.924173e-05, -0.029449463, 0.0038223267, 0.007865906, -0.025619507, 0.0491333, 0.08514404, -0.04208374, 0.034423828, 0.014572144, 0.01423645, -0.022201538, -0.0010738373, 0.0056533813, -0.01977539, 0.016601562, 0.008232117, 0.002658844, -0.047454834, 0.046203613, 0.055664062, 0.0284729, -0.066711426, 0.06628418, 0.024246216, 0.0013751984, 0.021987915, -0.023513794, -0.023712158, -0.002450943, 0.058929443, -0.0076522827, -0.0057258606, 0.031982422, -0.013320923, -0.034362793, -0.015792847, -0.00856781, 0.019866943, -0.072021484, -0.043304443, -0.05227661, 0.005104065, -0.03125, 0.017547607, 0.015151978, -0.006187439, -0.0124435425, -0.028884888, 0.012039185, -0.017669678, 0.0082473755, -0.0027198792, 0.011497498, 0.0022354126, 0.009117126, 0.0051078796, -0.0021247864, 0.05038452, -0.051757812, -0.016906738, -0.025634766, -0.0018224716, 0.009605408, -0.043029785, -0.0023174286, 0.008811951, -0.015098572, -0.045532227, -0.013069153, 0.017486572, -0.025360107, 0.0032424927, 0.018722534, -0.033813477, -0.009109497, 0.009979248, 0.021118164, 0.014503479, 0.01525116, 0.0025806427, -0.04425049, -0.014183044, -0.004234314, -0.006881714, 0.04498291, -0.036621094, -0.019241333, 0.008430481, -0.027648926, 0.0054130554, -0.0045204163, 0.028442383, 0.023422241, 0.0032253265, -0.016983032, 0.055999756, -0.0033340454, -0.010528564, -0.009048462, 0.05215454, -0.048950195, -0.03918457, 0.034179688, 0.025756836, 0.016357422, -0.0012693405, -0.012748718, -0.0541687, -0.023788452, 0.004398346, 0.022384644, -0.037719727, -0.00217247, -0.039367676, -0.04425049, -0.013885498, 0.007858276, 0.064575195, -0.0065307617, 0.02267456, -0.0124053955, 0.034057617, 0.005695343, -0.015686035, -0.011680603, -0.021194458, 0.017501831, 0.017501831, 0.023590088, -0.045074463, 0.006351471, 0.031829834, -0.05267334, 0.008354187, -0.03213501, 0.044311523, -0.046966553, 0.0284729, -0.019866943, -0.010772705, -0.01651001, -0.002368927, 0.035003662, 0.06542969, -0.013504028, -0.0038604736, -0.020111084, -0.008377075, -0.05734253, -0.029571533, 0.009666443, 0.052642822, -0.007118225, 0.021942139, -0.058380127, -0.049072266, 0.007663727, -0.0317688, 0.0036678314, -0.0012407303, 0.03765869, 0.013061523, -0.008422852, 0.061340332, 0.025726318, 0.023422241, 0.036132812, 0.018295288, -0.0115737915, -0.014442444, 0.02949524, -0.011489868, -0.005584717, -0.029678345, 0.0725708, 0.0048675537, 0.0231781, -0.012428284, -0.015991211, 0.009063721, 0.014663696, -0.006462097, -0.00035214424, 0.0262146, 0.008674622, 0.0012598038, -0.022491455, -0.010002136, -0.01838684, -0.011657715, -0.072021484, 0.073791504, 0.035583496, -0.0018777847, 0.025405884, 0.066101074, -0.022323608, 0.0076560974, 0.028015137, -0.005191803, 0.030212402, -0.011772156, -0.026031494, -0.013786316, 0.009887695, -0.040161133, 0.030563354, 0.0015411377, -0.057403564, 0.0076408386, 0.01676941, -0.050476074, -0.010009766, 0.033325195, 0.061645508, -0.026977539, -0.01727295, 0.005279541, 0.019638062, -0.05831909, 0.034576416, 0.010597229, -0.0001757145, -0.041137695, 0.069885254, 0.041168213, -0.032440186, -0.010864258, -0.01158905, -0.00737381, 0.0016469955, 0.03692627, 0.00548172, -0.013572693, -0.0015172958, -0.0027561188, -0.011764526, -0.005104065, -0.023132324, 0.010955811, 0.0073890686, 0.0093688965, 0.024520874, -0.0149002075, -0.0018196106, 0.0028533936, -0.019241333, 0.00051164627, -0.033966064, -0.024734497, 0.03741455, 0.023773193, 0.011962891, -0.058502197, 0.007835388, 0.010177612, -0.02885437, 0.0019130707, 0.0017614365, 0.0031929016, -0.062927246, -0.016189575, -0.0072021484, -0.051635742, -0.03253174, 0.025375366, -0.03982544, -0.03741455, 0.006752014, 0.0041389465, -0.06262207, 0.016479492, -0.03475952, -0.026733398, 0.071777344, 0.018585205, 0.017288208, -0.009727478, -0.0043411255, -0.023101807, 0.06707764, 0.019592285, -0.0028629303, -0.053375244, -0.046905518, -0.021774292, 0.020355225, 0.09710693, -0.0022239685, 0.0473938, -0.04232788, -0.02104187, -0.022735596, 0.009529114, 0.032043457, -0.025436401, -0.012878418, -0.023117065, 0.020889282, -0.0009570122, 0.03289795, -0.029281616, -0.028656006, -0.027008057, -0.017990112, -0.02180481, 0.0047836304, -0.012565613, 0.011962891, 0.0001193285, -0.0058059692, -0.0061569214, -0.045654297, 0.023071289, -0.0107803345, 0.0028076172, -0.008857727, 0.050750732, 0.0031986237, 0.0044021606, -0.028411865, -0.016159058, -0.0048942566, 0.02822876, -0.021270752, 0.030899048, 0.020431519, -0.018157959, 0.01260376, 0.016494751, 0.01991272, 0.0012559891, 0.0038700104, 0.027862549, 0.0077209473, 0.025054932, -0.014717102, 0.013015747, 0.013175964, -0.02079773, -0.0004107952, 0.07775879, 0.05432129, -0.0982666, -0.005191803, 0.006401062, 0.006580353, 0.0024986267, 0.012870789, 0.020858765, -0.018798828, -0.03253174, 0.018371582, -0.017044067, -0.024307251, -0.005378723, -0.017288208, -0.010978699, 0.009635925, 0.02067566, -0.04498291, 0.02305603, 0.03074646, -0.0020160675, -0.0033550262, 0.012069702, -0.018844604, 0.02180481, 0.022979736, 0.05050659, -0.05807495, 0.025909424, 0.013938904, -0.013839722, -0.009101868, 0.019058228, -0.015335083, 0.009605408, 0.0018310547, -0.07556152, 0.05807495, -0.025634766, -0.0056991577, -0.025863647, 0.06958008, -0.020828247, 0.03781128, -0.07098389, 0.017684937, 0.109802246, 0.055877686, -0.017105103, -0.046081543, 0.054229736, 0.012641907, -0.017807007, 0.016494751, 0.0067253113, -0.0030651093, 0.007091522, -0.007133484, -0.023635864, -0.0063285828, 0.0036010742, -0.025360107, 0.0181427, 0.013710022, -0.00027632713, 0.008583069, 0.0006170273, -0.031982422, -0.023956299, -0.015975952, 0.040283203, 0.015327454, 0.0043945312, 0.0055274963, 0.002910614, 0.004901886, 0.017868042, 0.012420654, -0.0043144226, -0.0020179749, -0.004497528, 0.025360107, 0.049987793, 0.010414124, -0.0020122528, 0.0053977966, 0.00806427, 0.03491211, 0.018005371, 0.04058838, 0.012199402, -0.025161743, 0.024383545, -0.013969421, 0.004047394, -0.024475098, -0.0037155151, 0.072753906, -0.033447266, -0.038146973, -0.088256836, 0.012573242, -0.012046814, -0.038513184, 0.049560547, -0.01701355, 0.0077171326, 0.0049819946, 0.003353119, -0.014297485, 0.020584106, 0.014846802, 0.033172607, -0.013404846, 0.01424408, 0.030731201, -0.0008215904, -0.023040771, -0.011550903, 0.039978027, -0.007369995, -0.0054244995, -0.021011353, -0.035827637, 0.00073480606, -0.024047852, 0.0119018555, 0.018325806, -0.008979797, -0.016021729, 0.002254486, -0.011062622, 0.04574585, 0.009002686, 0.04248047, 0.016525269, -0.023010254, 0.020996094, 0.066833496, -0.06137085, 0.08087158, -0.029922485, 0.013198853, -0.017715454, 0.088378906, 0.019958496, 0.04147339, -0.11682129, -0.05407715, 0.015327454, 0.009132385, 0.00012910366, -0.023803711, 0.031082153, -0.010231018, -0.015602112, -0.0040779114, 0.047454834, 0.032562256, 0.03378296, 0.00869751, 0.0022659302, 0.012207031, 0.0022068024, -0.01927185, -0.049926758, -0.005619049, -0.00016260147, 0.06304932, 0.0012969971, 0.024719238, -0.008346558, 0.068481445, 0.007701874, -0.007701874, 0.015686035, 0.0060272217, 0.0073165894, -0.012573242, -0.057647705, 0.018951416, -0.012184143, 0.010574341, -0.010498047, -0.04425049, 0.0006132126, 0.04437256, -0.023208618, 0.037506104, 0.0063476562, 0.0044059753, -0.019058228, -0.0043678284, 0.026977539, -0.0046195984, -0.0045166016, 0.010284424, -0.008216858, 0.012161255, 0.01763916, 0.0181427, 0.02658081, -0.0067481995, 0.019058228, 0.026565552, 0.04360962, -0.01889038, 0.03314209, 0.011978149, 0.03527832, 0.015945435, 0.0073432922, -0.040496826, -0.0014047623, 0.013137817, 0.039276123, -0.047821045, 0.024398804, -0.02355957, 0.007156372, -0.056427002, 0.064941406, -0.0009422302, -0.024765015, 0.014732361, 0.007534027, 0.0060539246, 0.06561279, 0.037628174, 0.025741577, 0.038360596, -0.0040359497, -0.002500534, -0.0039978027, 0.0014019012, 0.038391113, 0.056427002, -0.0095825195, 0.0069732666, -0.016555786, 0.01576233, 0.0044021606, 0.027038574, 0.011352539, 0.011138916, 0.036010742, 0.018295288, 0.06262207, 0.0018520355, 0.010536194, -0.016540527, 0.024871826, -0.011871338, -0.03366089, -0.027526855, -0.026657104, -0.02468872, 0.02645874, -0.015914917, -0.051849365, -0.057128906, 0.023635864, -0.000702858, -0.05117798, 0.035003662, -0.022247314, -0.044830322, 0.03781128, -0.036010742, -0.079956055, 0.011947632, 0.012428284, -0.0013160706, -0.0079956055, -0.04067993, -0.0023117065, -0.01159668, -0.042785645, -0.004081726, 0.0071525574, -0.02708435, -0.09124756, -0.046295166, -0.04586792, 0.00598526, 0.0011386871, 0.07952881, -0.04724121, -0.045684814, -0.0703125, 0.0061569214, -0.08886719, 0.0001269579, -0.022247314, 0.024642944, 0.025253296, -0.013801575, -0.012825012, 0.121032715, -0.018798828, -0.001613617, -0.014671326, -0.01638794, -0.0446167, 0.07220459, 0.011695862, -0.022247314, 0.014801025, 0.061065674, -0.009712219, 0.0574646, 0.011131287, -0.012794495, -0.06842041, -0.03970337, -0.071899414, 0.007259369, 0.0007200241, -0.01638794, 0.007522583, 0.0068588257, -0.05142212, -0.029006958, -0.0023422241, -0.0093307495, 0.05230713, 0.031951904, -0.034973145, -0.0446167, -0.005264282, -0.016036987, 0.021118164, 0.03463745, 0.04788208, 0.00894165, 0.014289856, 0.014503479, -0.008140564, 0.00033569336, -0.0017614365, 0.0061912537, -0.03552246, 0.009765625, -0.023483276, -0.04699707, 0.035491943, 0.00019204617, -0.0039711, -0.03491211, 0.05203247, 0.017623901, -0.024780273, -0.005683899, -0.022979736, -0.0070648193, 0.016220093, -0.036834717, -0.020141602, -0.035888672, 0.007850647, 0.043121338, -0.0055160522, -0.013473511, -0.00957489, 0.0018129349, 0.0015659332, 0.034973145, 0.007926941, 0.015274048, -0.035736084, 0.08050537, 0.011512756, 0.060424805, -0.04348755, -0.08508301, -0.06530762, 0.015914917, 0.04498291, -0.013305664, 0.10412598, -0.03756714, 0.028213501, 0.001917839, 0.032348633, 0.0013742447, 0.008857727, 0.03555298, -0.016937256, 0.007549286]}, "B08XYJ7YQV": {"id": "B08XYJ7YQV", "original": "Brand: Flame King\nName: Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "metadata": {"Name": "Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White", "Brand": "Flame King", "Description": "", "Features": "Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03488159, 0.011123657, -0.014060974, -0.04888916, 0.0053901672, -0.015655518, -0.038391113, -0.02319336, -0.053466797, -0.0018167496, -0.020080566, 0.033416748, -0.013328552, -0.019088745, 0.046905518, -0.045318604, 0.0317688, -0.015396118, 0.051635742, -0.003194809, 0.035827637, 0.008010864, 0.03152466, 0.066833496, 0.037506104, -0.031173706, 0.029403687, 0.013313293, 0.012718201, -0.0022087097, 0.019058228, 0.0024414062, 0.036499023, -0.004310608, -0.02545166, -0.018249512, -0.041748047, 0.011749268, -0.033355713, -0.001209259, -0.0011806488, -0.0060157776, 0.00881958, -0.03640747, -0.008270264, -0.0049476624, -0.028060913, -0.043518066, 0.011711121, 0.015960693, 0.017501831, -0.002943039, 0.013183594, 0.05203247, -0.0059013367, 0.03845215, 0.028503418, -0.045898438, 0.01209259, -0.025222778, 0.008323669, 0.03427124, 0.03439331, 0.03250122, -0.036102295, 0.0022277832, 0.09106445, -0.026031494, 0.020065308, -0.02671814, 0.0037002563, 0.04119873, 0.018493652, 0.02078247, -0.033111572, -0.02859497, 0.024673462, 0.00819397, 0.025985718, 0.000834465, 0.018936157, -0.023223877, 0.057159424, 0.010894775, -0.022827148, 0.025405884, -0.014411926, -0.009140015, -0.009849548, -0.025848389, -0.0071792603, 0.019058228, 0.0066833496, -0.019821167, -0.045837402, -0.034301758, -0.04699707, -0.05404663, 0.027709961, 0.038635254, 0.020477295, -0.042236328, 0.06964111, -0.023834229, 0.018753052, 0.06707764, -0.031280518, -0.029373169, 0.008544922, 0.007129669, 0.010169983, -0.038482666, 0.026626587, -0.031097412, -0.011772156, 0.03173828, 0.029876709, 0.007827759, 0.021636963, 0.020126343, 0.045654297, 0.030471802, 0.0023422241, -0.009162903, 0.013465881, -0.010658264, -0.06311035, -0.010269165, 0.012466431, 0.03793335, -0.025238037, -0.018234253, 0.003572464, 0.044891357, 0.011489868, -0.014808655, 0.007129669, 0.010948181, 0.028564453, -0.047729492, 0.020751953, 0.013916016, 0.025482178, 0.023849487, -0.049346924, 0.049438477, 0.004638672, -0.013999939, 0.00020384789, -0.040283203, -0.041168213, -0.0423584, 0.011375427, -0.013343811, -0.0024166107, -0.040985107, -0.029968262, -0.012161255, 0.025405884, -0.01864624, -0.001824379, -0.032958984, -0.04574585, -0.022644043, -0.029434204, 0.038635254, 0.011383057, 0.002166748, 0.019607544, 0.05105591, 0.0115356445, 0.028915405, -0.0030670166, 0.016601562, -0.0038223267, -0.020874023, 0.046813965, 0.101867676, 0.059387207, -0.13952637, -0.07745361, -0.080078125, 0.17956543, -0.08331299, 0.0003478527, -0.037628174, 0.024932861, -0.013748169, -0.0056114197, 0.021026611, 0.027709961, 0.025863647, -0.013496399, -0.033203125, -0.019805908, -0.008483887, 0.010604858, -0.0037708282, -0.0012216568, 0.0071029663, 0.035614014, 0.007835388, 0.01687622, 0.019485474, 0.033111572, -0.022720337, 0.016479492, -0.0053863525, 0.07470703, 0.053222656, -0.020126343, -0.020202637, 0.0054893494, -0.008117676, -0.024902344, -0.004005432, -0.033111572, 0.0041656494, 0.028030396, -0.019302368, 0.06756592, -0.0044021606, 0.056030273, 0.0103302, -0.012535095, -0.013595581, -0.0149383545, 0.0066223145, 0.03036499, -0.010643005, 0.089904785, 0.013771057, 0.05267334, 0.06689453, -0.011177063, 0.016296387, 0.031982422, -0.0049819946, -0.009963989, 0.019378662, -0.0014324188, -0.01663208, -0.029327393, 0.061462402, -0.036132812, -0.047180176, -0.008071899, 0.042022705, -0.0025367737, 0.0027484894, 0.052703857, -0.025024414, 0.012809753, -0.002046585, -0.0055274963, 0.016174316, -0.014892578, 0.0076065063, -0.05545044, 0.026367188, -0.019638062, -0.0028305054, 0.025787354, -0.0076904297, 0.09844971, -0.04107666, 0.05670166, 0.015365601, -0.009292603, -0.010345459, 0.013725281, -0.0317688, 0.0056915283, 0.026428223, -0.010734558, 0.01637268, -0.017333984, 0.010292053, -0.017318726, -0.0030651093, -0.00014817715, -0.031463623, 0.052490234, 0.0065078735, 0.06640625, 0.017868042, 0.049560547, -0.026168823, -0.021362305, -0.01965332, -0.00018835068, 0.0154418945, -0.014801025, 0.0023975372, 0.016616821, -0.008956909, 0.021896362, -0.007972717, 0.021377563, -0.02986145, 0.026184082, 0.046295166, -0.032714844, 0.030838013, -0.012771606, -0.019165039, -0.022125244, 0.025894165, 0.0034255981, -0.06896973, 0.010757446, 0.019897461, 0.020645142, 0.009811401, 0.01876831, 0.00894165, 0.010345459, 0.041015625, 0.06463623, 0.07513428, -0.034088135, 0.0071983337, 0.02166748, 0.011978149, 0.026733398, -0.024780273, 0.010635376, 0.018218994, -0.040252686, 0.0010871887, 0.0026893616, -0.016067505, 0.009124756, 0.0345459, 0.002248764, 0.00041246414, -0.015914917, 0.037109375, -0.027145386, -0.06695557, -0.040374756, -0.017318726, 0.0010995865, -0.009971619, -0.03579712, -0.029708862, 0.057373047, -0.0059165955, -0.054138184, 0.015289307, 0.01210022, 0.0037078857, 0.021987915, -0.0132369995, 0.021499634, -0.007904053, -0.05026245, -0.0046691895, 0.01878357, -0.058380127, 0.0033893585, -0.00982666, -0.034576416, -0.050567627, 0.018814087, -0.0040626526, -0.043060303, -0.0076179504, 0.058807373, 0.0116119385, 0.0060310364, 0.014205933, -0.072265625, 0.011444092, 0.04257202, -0.025787354, 0.058258057, -0.018463135, 0.008613586, 0.035827637, 0.013496399, 0.03616333, -0.03564453, 0.03274536, 0.01146698, 0.031829834, 0.017623901, 0.056732178, -0.027755737, -0.030349731, -0.0317688, 0.04083252, -0.006931305, 0.008857727, -0.025436401, -0.034484863, 0.020477295, 0.05404663, -0.057495117, 0.010276794, -0.060333252, 0.010108948, -0.01676941, -0.02192688, 0.0045318604, -0.021621704, -0.019210815, -0.04586792, 0.0074272156, -0.004436493, -0.03451538, 0.02017212, -0.036315918, 0.009017944, -0.0027866364, -0.035461426, -0.020553589, -0.005393982, -0.040161133, 0.041107178, 0.060668945, -0.061187744, 0.011459351, 0.033416748, -0.01676941, 0.0035133362, -0.0019254684, 0.024307251, 0.008666992, -0.020217896, -0.0041503906, -0.03643799, -0.0014810562, -0.00818634, -0.0473938, -0.026550293, -0.0071525574, -0.02909851, 0.023773193, -0.035980225, -0.035827637, -0.045288086, -0.037902832, -0.031799316, -0.0071487427, -0.029800415, -0.013664246, -0.016937256, -0.003004074, -0.01687622, -0.0026512146, 0.008682251, -0.02507019, 0.012107849, -0.019195557, 0.046051025, 0.0015668869, 0.050476074, -0.011360168, -0.009925842, 0.0037441254, -0.024490356, 0.0112838745, 0.013313293, -0.023162842, -0.003704071, 0.008934021, 0.0005016327, -0.018707275, 0.0070991516, -0.030929565, 0.025512695, 0.009048462, -0.006095886, -0.0040664673, -0.011672974, 0.009841919, 0.010955811, 0.016586304, -0.0056610107, -0.07751465, 0.031402588, -0.06427002, 0.012504578, 0.031799316, -0.018981934, 0.06378174, 0.020553589, -0.021911621, 0.023345947, 0.01966858, 0.011054993, 0.029312134, 0.009132385, -0.02319336, -0.0059051514, -0.0006699562, -0.007259369, -0.014198303, -0.07354736, 0.02116394, 0.0071105957, 0.006175995, 0.02935791, -0.00881958, -0.033477783, 0.0025672913, -0.0050239563, 0.03579712, 0.017623901, 0.007850647, -0.005897522, -0.013305664, 0.015640259, -0.041992188, -0.038391113, -0.023345947, 0.004638672, -0.068725586, 0.022644043, -0.007888794, -0.011077881, 0.019439697, 0.052886963, -0.032287598, 0.019470215, -0.0077705383, 0.001168251, -0.029830933, -0.033203125, 0.00032925606, 0.011100769, -0.033203125, 0.00036907196, 0.03793335, 0.012817383, 0.0072746277, 0.009208679, -0.04827881, -0.06311035, -0.0008773804, -0.0018463135, 0.0054512024, -0.044128418, -0.016677856, 0.0033550262, -0.027267456, -0.0015563965, -0.0029506683, -0.032440186, -0.009460449, 0.015777588, -0.004951477, -0.029373169, -0.056427002, 0.046813965, -0.0048713684, 0.006038666, 0.009750366, -0.018371582, -0.014266968, 0.030166626, -0.032836914, -0.0060157776, -0.029785156, 0.025543213, -0.024841309, -0.019622803, 0.035095215, -0.03729248, -0.038269043, -0.04840088, 0.036315918, 0.026901245, -0.01222229, -0.0038547516, -0.027664185, -0.01360321, -0.0073547363, 0.029312134, 0.004470825, 0.061340332, 0.006088257, 0.006378174, -0.05911255, 0.019378662, 0.004917145, -0.027954102, -0.061553955, -0.036224365, 0.0052871704, 0.04248047, -0.0033836365, -0.005458832, 0.0046310425, 0.017700195, 0.030761719, -0.04626465, -0.016220093, 0.00062942505, -0.023391724, 0.0019836426, -0.0046463013, -0.0010061264, -0.03137207, 0.051940918, -0.007167816, -0.0006656647, -0.007843018, 0.011207581, -0.0051994324, -0.008895874, -0.03265381, 0.0078125, -0.02545166, 0.021591187, -0.046569824, 0.049865723, 0.056610107, -0.007965088, 0.019638062, 0.005420685, -0.015113831, -0.018600464, -0.044830322, -0.007499695, 0.07385254, 0.0071640015, -0.03756714, -0.017715454, -0.039123535, -0.02696228, -0.012046814, -0.039794922, 0.005290985, 0.043701172, -0.0013694763, -0.0055351257, -0.017150879, 0.007801056, 0.014335632, 0.018630981, 0.042175293, -0.027557373, 0.013038635, -0.02079773, -0.009605408, 0.033233643, -0.030853271, -0.022506714, 0.012321472, 0.0029678345, -0.0060157776, 0.015388489, -0.0011224747, -0.007713318, 0.0209198, 0.06506348, 0.0028629303, 0.01940918, -0.0152282715, 0.034484863, 0.009780884, -0.02772522, -0.011360168, -0.021560669, -0.013961792, -0.004211426, -0.017715454, 0.011154175, -0.023208618, -0.022994995, -0.031280518, 0.013839722, -0.0002708435, -0.033569336, 0.0859375, 0.003288269, -0.025527954, -0.032562256, 0.011650085, -0.024871826, -0.021514893, -0.03201294, 0.012451172, 0.03503418, -0.006336212, 0.007019043, -0.0022850037, -0.026275635, -0.018341064, 0.029907227, -0.005973816, 0.0034980774, -0.004508972, 0.008682251, -0.02015686, 0.04537964, 0.008651733, -0.0062789917, 0.0546875, 0.020401001, -0.08337402, -0.031341553, -0.028900146, -0.02468872, 0.021347046, -0.012680054, 0.032806396, 0.034301758, -0.013244629, -0.028747559, 0.012451172, -0.003534317, -0.04043579, -0.034118652, 0.004245758, 0.042053223, 0.023345947, 0.03945923, -0.03164673, -0.045532227, 0.017150879, 0.023788452, 0.031158447, -0.03186035, -0.022979736, -0.011047363, -0.01448822, -0.020370483, -0.013343811, -0.04257202, 0.021408081, -0.023330688, -0.03366089, 0.005531311, 0.020080566, 0.0036258698, -0.023864746, 0.08465576, 0.02973938, 0.014694214, 0.021575928, -0.00592041, -0.03857422, 0.029708862, 0.013076782, -0.07043457, -0.044921875, -0.027786255, -0.01927185, -0.030822754, -0.03845215, 0.003698349, 0.04348755, 0.017105103, -0.031433105, -0.0015544891, -0.04559326, 0.017456055, -0.06463623, 0.012138367, -0.0154953, 0.028381348, 0.022445679, 0.010810852, -0.09875488, -0.024673462, 0.005142212, 0.020523071, 0.0124053955, 0.017929077, 0.0035114288, 0.013175964, -0.026885986, 0.025619507, -0.013648987, -0.0066490173, 0.021072388, 0.02218628, -0.01689148, 0.043518066, -0.023086548, -0.01676941, -0.012214661, 0.008895874, 0.017288208, 0.02734375, -0.06921387, -0.028533936, 0.030090332, 0.057739258, -0.025497437, -0.011405945, -0.001376152, -0.022644043, -0.023391724, -0.02229309, -0.023239136, -0.039398193, 0.0016012192, -0.023513794, -0.02949524, -0.010231018, -0.029464722, 0.017578125, -0.008003235, 0.016113281, -0.04473877, -0.010643005, -0.02027893, -0.007457733, 0.062561035, -0.049743652, -0.009262085, -0.036834717, 0.028549194, -0.015060425, 0.018371582, 0.033172607, 0.0049934387, 0.033325195, 0.053985596, -0.019012451, -0.007183075, 0.0053749084, 0.04248047, -0.041259766, -0.008132935, 0.0001142025, 0.020904541, -0.024902344, -0.011627197, 0.008346558, 0.019500732, 0.008163452, 0.0062828064, -0.016738892, 0.0077171326, 0.018432617, -0.003063202, -0.014785767, -0.010093689, -0.04144287, 0.01739502, -0.02557373, 0.006137848, 0.022094727, -0.022583008, 0.031173706, 0.002878189, -0.008720398, 0.0034656525, -0.038146973, 0.0070610046, 0.036621094, 0.013442993, -0.012878418, -0.055145264, -0.0012874603, 0.024307251, -0.0059013367, 0.054016113, 0.000746727, 0.054382324, -0.01876831, -0.025466919, 0.02758789, -0.08746338, 0.008430481, 0.002111435, 0.041931152, -0.101135254, -0.041381836, -0.008773804, -0.053100586, 0.00091362, 0.03778076, 0.0058631897, -0.010574341, -0.02470398, -0.005508423, 0.034118652, -0.007980347, 0.024963379, -0.032104492, -0.007736206, -0.0047340393, 0.0030097961, 0.018692017, 0.0025691986, -0.028808594, 0.026229858, -0.020324707, 0.030136108, -0.026779175, 0.008468628, -0.011138916, -0.008346558, -0.007583618, -0.023986816, -0.0012817383, 0.050689697, -0.011619568, 0.027297974, -0.043792725, -0.049102783, -0.040771484, -0.07678223, -0.052459717, 0.10784912, -0.04748535, -0.029281616, 0.0021533966, 0.0043029785, -0.03062439, -0.04196167, -0.01586914, 0.0015306473, 0.031707764, 0.007369995, 0.010406494, 0.017196655, -0.050872803, -0.086242676, 0.034210205, -0.086364746, 0.00042152405, -0.03579712, -0.017944336, -0.02949524, -0.023956299, 0.046966553, 0.027008057, 0.037750244, 0.0021209717, 0.05328369, -0.0869751, -0.009475708, 0.026657104, 0.0025463104, 0.016174316, -0.05822754, 0.0020771027, 0.026794434, -0.0066947937, 0.012466431, 0.023208618, -0.077819824, 0.04034424, 0.0005617142, 0.002532959, -0.0076789856, -0.0121154785, 0.017562866, 0.028396606, -0.029724121, 0.022369385, -0.001991272, -0.0063552856, 0.028259277, 0.012863159, 0.04425049, 0.002374649, -0.0791626, -0.052368164, -0.02645874, 0.029296875, 0.027267456, -0.038482666, -0.010429382, -0.030715942, -0.013343811, -0.025360107, -0.009849548, -0.0064315796, -0.0090789795, -0.019180298, 0.02507019, -0.018753052, -0.016021729, -0.0317688, -0.06628418, 0.026184082, 0.08319092, -0.04119873, 0.0033950806, -0.007331848, -0.045654297, -0.028518677, -0.041137695, -0.024917603, -0.03338623, -0.037322998, -0.008392334, 0.016784668, -0.013557434, -0.0032310486, -0.0062294006, -0.0033912659, 0.018173218, 0.013397217, 0.0025978088, 0.0062789917, -0.013381958, 0.074279785, -0.014297485, 0.049987793, -0.0013542175, -0.07800293, -0.04296875, 0.036224365, -0.019485474, -0.006679535, -0.0051078796, -0.009963989, 0.01574707, 0.035736084, -0.009208679, -0.005218506, 0.033721924, 0.058746338, -0.015823364, 0.034820557]}, "B07CB4CV56": {"id": "B07CB4CV56", "original": "Brand: Kbrotech\nName: Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass)\nDescription: \nFeatures: The LPG adapter has any camping propane small tank input and a lindal value output.\nThe LPG adapter simply threads into the camping propane canister and your stove or stove's input end threads onto the LPG adapter.\nConvert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder\nThe Lindal Value Output is Auo-closed when it is not connected to the stove\nHigh quality 100% solid brass construction makes it corrosion resistant\n", "metadata": {"Name": "Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass)", "Brand": "Kbrotech", "Description": "", "Features": "The LPG adapter has any camping propane small tank input and a lindal value output.\nThe LPG adapter simply threads into the camping propane canister and your stove or stove's input end threads onto the LPG adapter.\nConvert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder\nThe Lindal Value Output is Auo-closed when it is not connected to the stove\nHigh quality 100% solid brass construction makes it corrosion resistant", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035705566, -0.03829956, -0.048095703, -0.01802063, -0.052703857, -0.011802673, -0.031402588, 0.018218994, -0.0061454773, 0.02557373, 0.006324768, 0.009933472, -0.01828003, -0.028015137, -0.011238098, -0.020385742, 0.015174866, 0.010314941, -0.0065574646, -0.009597778, 0.00856781, -0.011024475, -0.03717041, 0.077941895, 0.021514893, 0.0043182373, -0.05130005, 0.021484375, -0.0034179688, 0.0099487305, 0.020431519, -0.0014743805, 0.039642334, -0.0057754517, -0.02960205, -0.026870728, -0.0010871887, -0.028533936, -0.044158936, 0.009399414, 0.048187256, -0.04144287, -0.035583496, -0.020584106, -0.036346436, 0.02255249, 0.013450623, -0.0099105835, 0.015991211, -0.004169464, -0.01725769, -0.0061569214, -0.001660347, -0.04421997, -0.017074585, -0.018203735, -0.022323608, -0.048736572, -0.013343811, 0.028747559, 0.051208496, 0.021057129, 0.022644043, 0.03866577, -0.023101807, 0.02029419, 0.018981934, -0.016708374, 0.023086548, -0.02003479, -0.024505615, -0.0031337738, 0.026290894, 0.019943237, -0.048217773, -0.062072754, 0.043945312, -0.033843994, 0.022155762, 0.0057754517, 0.009407043, -0.015670776, 0.017868042, -0.022125244, 0.011772156, -0.026184082, -0.007282257, -0.010246277, -0.010757446, -0.016143799, -0.026687622, 0.058532715, -0.0076141357, -0.03894043, -0.06311035, -0.0033512115, -0.041168213, -0.07891846, 0.029586792, 0.016784668, 0.03543091, -0.026123047, 0.021942139, 0.010681152, 0.023361206, 0.087524414, -0.010566711, -0.006374359, 0.036193848, -0.003232956, 0.028366089, 0.052215576, 0.006576538, -0.004676819, 0.0012836456, 0.008728027, -0.027236938, 0.06561279, 0.0042762756, 0.07885742, -0.049957275, -0.029800415, 0.008483887, -0.018127441, -0.013977051, -0.036499023, -0.004650116, 0.01676941, -0.047058105, 0.008926392, -0.016082764, 0.021652222, 0.04827881, 0.040161133, -0.017913818, -0.00504303, 0.025604248, 0.0069084167, 0.0070343018, 0.0078125, 0.020141602, -0.042144775, 0.0031490326, 0.023727417, -0.026519775, 0.03982544, 0.0101623535, -0.012702942, -0.010299683, -0.045654297, -0.018798828, -0.020050049, 0.013954163, 0.002784729, -0.009147644, -0.055541992, -0.006980896, -0.036193848, 0.064331055, -0.038269043, -0.041412354, -0.032318115, -0.021118164, -0.014091492, -0.045166016, 0.05142212, 0.040161133, 0.017623901, 0.0008254051, 0.035003662, -0.0073394775, 0.08648682, 0.022964478, -0.04348755, -0.0051879883, -0.07122803, -0.033477783, 0.05886841, 0.057678223, -0.064208984, -0.042419434, -0.050689697, 0.11785889, -0.030014038, 0.019317627, -0.038726807, 0.025772095, -0.027526855, -0.003540039, 0.007575989, 0.031433105, 0.021194458, 0.045166016, -0.03253174, -0.017150879, -0.001540184, -0.012397766, 0.037719727, -0.018478394, -0.009162903, 0.008308411, 0.0077400208, 0.045684814, -0.0029640198, 0.033569336, -0.0023822784, 0.00019001961, 0.01977539, 0.008529663, -0.0040893555, -0.024291992, -0.046661377, 0.025390625, -0.01222229, -0.030731201, -0.014221191, -0.0063438416, 0.05419922, -0.008895874, -0.0095825195, 0.023010254, -0.025848389, 0.028335571, 0.044799805, 0.0034694672, 0.0037651062, -0.021270752, -0.018707275, 0.025619507, -0.009559631, 0.020126343, 0.042053223, 0.03805542, 0.02558899, -0.047851562, 0.020004272, 0.05343628, 0.04397583, -0.009971619, -0.00894165, 0.0035266876, -0.0016489029, -0.033050537, 0.0076446533, 0.037719727, 0.016448975, 0.008277893, 0.007205963, 0.008529663, 0.05529785, 0.0014562607, 0.008918762, -0.0042152405, 0.0357666, -0.0110321045, 0.016082764, -0.03466797, -0.012664795, -0.015106201, 0.018814087, -0.00040578842, 0.016723633, 0.025985718, -0.016952515, 0.058502197, -0.019454956, 0.046051025, 0.025497437, -0.03768921, 0.0023899078, 0.019042969, 0.007949829, 0.0029125214, 0.015541077, -0.036499023, 0.0058631897, -0.016555786, 0.009712219, 0.024337769, 0.0046806335, 0.00018024445, -0.027496338, 0.01486969, 0.0024929047, 0.023162842, 0.017700195, 0.05722046, 0.042236328, -0.06439209, -0.040374756, 0.0012607574, -0.00034451485, -0.020050049, -0.013977051, 0.012939453, -0.026916504, 0.12042236, -0.0067481995, 0.016464233, 0.00023961067, 0.042877197, 0.039093018, -0.029586792, 0.028579712, -0.006008148, -0.016647339, -0.028396606, 0.044769287, 0.014556885, -0.052368164, -0.012649536, -0.00623703, 0.022720337, 0.045288086, 0.003232956, -0.0003926754, -0.0063819885, 0.045166016, 0.027496338, 0.02432251, -0.0018835068, 0.068359375, -0.023712158, 0.026367188, 0.0390625, -0.007209778, -0.010948181, -0.019500732, 0.06591797, 0.0059165955, 0.03765869, 0.06274414, 0.017364502, -0.0015792847, 0.014862061, -0.02418518, 0.02355957, -0.023498535, -0.02218628, -0.0552063, -0.008903503, -0.0013608932, -0.006000519, 0.014823914, -0.024093628, -0.039398193, 0.016204834, -0.023590088, -0.0017166138, 0.01574707, 0.008003235, 0.01184082, 0.0077819824, -0.03692627, 0.02468872, -0.05001831, -0.039123535, -0.022338867, -0.023956299, -0.07147217, 0.031311035, -0.018173218, -0.043701172, -0.040771484, 0.058776855, -0.010894775, -0.022720337, -0.06137085, -0.009765625, 0.029830933, -0.015914917, 0.006275177, -0.076416016, -0.023849487, -0.017990112, 0.0158844, 0.06982422, -0.018981934, 0.024993896, 0.026824951, 0.023376465, 0.044128418, -0.053985596, 0.0016126633, 0.012145996, 0.05014038, 0.08880615, 0.019180298, 0.044189453, -0.049316406, 0.02331543, 0.025604248, -0.01902771, -0.036499023, 0.00043296814, 0.016937256, -0.05227661, -0.032318115, -0.014732361, -0.004432678, -0.052459717, 0.0036449432, 0.003921509, -0.02444458, 0.014022827, -0.07507324, -0.038604736, -0.05758667, 0.034240723, 0.024032593, -0.009468079, 0.04815674, -0.013832092, 0.03161621, -0.046569824, 0.008926392, -0.03363037, -0.024963379, 0.027816772, 0.022613525, 0.04812622, -0.121032715, 0.031799316, 0.049194336, -0.00484848, -0.03050232, 0.012886047, 0.0024108887, -0.0027751923, 0.04272461, 0.01309967, 0.0015239716, -0.040771484, -0.035186768, -0.017700195, -0.043945312, 0.0010852814, -0.033050537, 0.02394104, -0.01927185, -0.062164307, -0.011421204, -0.0026798248, 0.023895264, -0.00040602684, 0.0005578995, -0.030395508, -0.047729492, 0.03729248, -0.021591187, 0.014450073, -0.013641357, 0.027740479, 0.0070610046, -0.02468872, 0.06964111, -0.010658264, 0.0035362244, -0.009712219, 0.035125732, 0.02708435, 0.021347046, -0.01423645, -0.025405884, 0.027297974, -0.064697266, 0.07287598, 0.016662598, 0.049102783, -0.016693115, 0.01423645, 0.0088272095, 0.020141602, -0.0018815994, -0.011054993, 0.025024414, 0.03640747, -0.030563354, 0.00086927414, -0.02897644, -0.10046387, 0.024002075, -0.0758667, 0.046691895, 0.027069092, -0.02255249, 0.10498047, 0.05343628, 0.0013542175, 0.01020813, -0.010467529, -0.011657715, 0.0061912537, 0.025375366, -0.019424438, 0.012237549, 0.0132751465, -0.03805542, 0.01247406, -0.0032958984, -0.036254883, 0.016220093, -0.02658081, -0.02720642, -0.027160645, -0.019577026, -0.024719238, -0.0039634705, 0.018859863, -0.0014047623, -0.028320312, -0.010299683, -0.019943237, 0.0011501312, -0.03265381, 0.008224487, -0.012863159, -0.020690918, -0.012580872, -0.006816864, 0.013916016, -0.02859497, 0.028793335, 0.032714844, -0.01512146, -0.008911133, -0.0009918213, -0.036468506, -0.039886475, 0.045410156, -0.0041656494, -0.0022583008, 0.0062179565, -0.05038452, 0.045318604, -0.018295288, -0.020019531, 0.072143555, -0.01499176, -0.09454346, -0.018951416, 0.018341064, 0.010673523, -0.04135132, -0.008506775, -0.0070152283, 0.0018558502, 0.008811951, -0.028182983, -0.02507019, -0.003107071, 0.016189575, -0.03475952, -0.020568848, -0.045288086, 0.044891357, -0.024658203, 0.002380371, -0.021209717, 0.031799316, -0.0121154785, 0.0030841827, -0.035217285, 0.0055160522, -0.05935669, 0.01713562, 0.0026760101, -0.009925842, -0.016601562, -0.031707764, -0.0056495667, 0.008804321, 0.034179688, -0.005207062, 0.006298065, -0.0055656433, -0.0007162094, 0.0047836304, 0.01977539, 0.049102783, 0.038970947, 0.03543091, -0.035186768, 0.024291992, -0.03189087, -0.0070152283, 0.009498596, -0.02407837, -0.051818848, -0.018341064, 0.046813965, -0.0048599243, 0.0060157776, -0.049682617, 0.012931824, 0.028701782, 0.0118637085, -0.058624268, -0.071899414, 0.0018663406, -0.018615723, 0.0026741028, -0.00340271, -0.003490448, 0.009735107, 0.031555176, -0.012458801, 0.01209259, 0.009689331, -0.004009247, -0.008102417, 0.03527832, -0.042510986, 0.009597778, -0.027038574, -0.02709961, -0.050109863, 0.06866455, 0.054138184, 0.0016098022, 0.009460449, -0.0013237, -0.015792847, -0.053833008, 0.024047852, 0.032104492, 0.004211426, 0.018218994, -0.020690918, 0.00044870377, -0.010299683, -0.015899658, -0.020523071, 0.0068244934, 0.00027775764, -0.0030918121, -0.019943237, -0.019897461, 0.0063819885, -0.0007362366, 0.029174805, -0.005634308, -0.023117065, 0.00044345856, 0.012062073, 0.008422852, 0.010147095, 0.015350342, -0.00491333, 0.009750366, 0.024139404, 0.0035858154, -0.034942627, 0.0059814453, 0.0075035095, 0.012130737, -0.023101807, 0.018630981, 0.008895874, -0.017364502, -0.054626465, -0.0079422, 0.0395813, -0.039215088, 0.008056641, 0.0040130615, 0.026153564, 0.034606934, -0.009757996, 0.016311646, 0.004878998, -0.00030708313, 0.06427002, 0.013549805, -0.0090408325, -0.050750732, 0.0680542, -0.01979065, -0.001004219, -0.02696228, 0.0027217865, 0.025985718, 0.04071045, 0.042388916, -0.044128418, 0.03778076, -0.009803772, -0.03692627, -0.0062713623, 0.016571045, -0.035705566, -0.010040283, -0.002943039, -0.019744873, -0.014282227, 0.002702713, 0.0038661957, -0.0028476715, -0.004196167, -0.026763916, 0.055267334, 0.007472992, -0.023727417, -0.0019216537, -0.008010864, 0.038482666, -0.007259369, -0.007019043, -0.018753052, -0.02305603, -0.0059509277, 0.04244995, 0.020568848, 0.017211914, -0.053588867, -0.043762207, -0.048217773, -0.0041618347, -0.025299072, 0.070007324, -0.023513794, 0.009094238, 0.03274536, -0.032592773, 0.011428833, 0.014434814, -0.040618896, -0.022903442, -0.019699097, -0.03161621, -0.028701782, -0.0018548965, 0.019760132, -0.038208008, -0.033569336, -0.021133423, 0.041137695, -0.028656006, -0.046722412, 0.04324341, 0.008003235, 0.0124435425, 0.005180359, -0.012130737, -0.028015137, -0.02861023, 0.0029888153, -0.04159546, -0.06323242, -0.034973145, -0.0005440712, -0.021484375, -0.008346558, -0.014633179, 0.024780273, 0.01411438, 0.06915283, -0.03036499, -0.0335083, -0.027389526, -0.025772095, -0.0053253174, -0.04562378, 0.018951416, -0.016326904, 0.040283203, -0.043914795, -0.07763672, -0.013282776, 0.005218506, 0.011245728, 0.038848877, -0.008506775, -0.019042969, -0.03125, -0.011795044, 0.007080078, -0.035614014, 0.0036087036, 0.05038452, 0.013809204, 0.03982544, -0.06707764, -0.024597168, -0.044433594, 0.018341064, 0.007091522, 0.060821533, -0.06329346, -0.0074653625, 0.016067505, 0.050598145, 0.016525269, 0.03955078, 0.020248413, -0.056854248, -0.06628418, 0.009422302, -0.013328552, -0.061767578, 0.011833191, -0.027160645, 0.010551453, -0.012680054, -0.01953125, -0.01134491, 0.03479004, -0.0023269653, -0.037261963, 0.03161621, -0.0025234222, -0.03567505, 0.025848389, 0.012435913, 0.07092285, -0.010749817, 0.05404663, 0.032104492, -0.038848877, -0.051818848, 0.011245728, 0.037628174, -0.007369995, 0.030685425, 0.002614975, 0.014381409, 0.011909485, -0.024505615, -0.024810791, -0.04119873, 0.041046143, -0.036743164, -0.057250977, -0.033111572, -0.022613525, 0.022705078, 0.022201538, 0.034606934, 0.010093689, 0.028533936, 0.010139465, -0.023284912, 0.0059814453, 0.0037956238, 0.014297485, -0.021896362, -0.034820557, -0.01133728, -0.026473999, 0.021133423, 0.014854431, -0.0043563843, 0.0018596649, -0.017181396, 0.020187378, 0.024139404, -0.023544312, -0.031707764, 0.025421143, 0.05621338, -0.005344391, 0.008483887, -0.01586914, 0.009124756, 0.056518555, 0.009086609, 0.022720337, 0.011856079, -0.031158447, -0.010223389, 0.003479004, -0.009628296, -0.025009155, -0.05697632, -0.021697998, 0.0065231323, -0.017578125, 0.03164673, 0.004917145, 0.0013380051, 0.038208008, 0.01109314, 0.015098572, -0.050354004, -0.0118255615, 0.03463745, 0.0032043457, 0.0068244934, -0.0052452087, -0.032958984, -0.032409668, 0.0028877258, 0.014839172, -0.023101807, -0.019363403, -0.05053711, 0.010002136, -0.006713867, -0.044006348, 0.0541687, -0.025665283, -0.033203125, 0.0048828125, -0.03289795, -0.012054443, -0.02319336, -0.040740967, -0.021255493, -0.018707275, -0.049621582, 0.045715332, -0.0074157715, -0.002325058, 0.019729614, -0.0038776398, -0.03250122, -0.030517578, 0.01928711, 0.0067329407, 0.058654785, -0.012634277, 0.015609741, -0.009757996, -0.0418396, -0.06866455, 0.02468872, -0.07122803, -0.022216797, 0.017669678, 0.0007157326, 0.008918762, 0.012924194, 0.048309326, 0.05807495, 0.02444458, -0.0010890961, 0.0107040405, -0.03427124, -0.01737976, 0.033050537, 0.0024738312, -0.020477295, -0.033447266, 0.023849487, -0.007980347, -0.02279663, 0.015037537, -0.0059013367, -0.0814209, -0.0060806274, 0.0058784485, -0.02848816, -0.015396118, -0.008117676, 0.02508545, -0.018554688, -0.042114258, 0.0056915283, 0.024139404, 0.03778076, 0.052734375, -0.019882202, 0.004749298, -0.022521973, -0.031143188, -0.03363037, -0.016983032, 0.02444458, 0.034698486, -0.032043457, -0.054504395, 0.020706177, -0.0022945404, 0.010856628, 0.043640137, -0.017303467, 0.015327454, 0.021865845, 0.010681152, 0.008979797, -0.023101807, 0.014450073, -0.056396484, -0.0005788803, -0.0055999756, 0.01739502, -0.01902771, 0.0015106201, -0.036102295, 0.028686523, 0.0039100647, -0.01727295, -0.04699707, -0.06591797, 0.041046143, 0.020080566, -0.0051956177, -0.01146698, 0.029388428, 0.0028190613, -0.03756714, 0.009689331, 0.024505615, 0.018859863, -0.0016765594, -0.007255554, 0.028167725, -0.019012451, -0.02418518, -0.07623291, -0.06378174, 0.021759033, 0.015045166, -0.00983429, 0.053009033, -0.03842163, 0.00053215027, 0.07196045, -0.048339844, -0.044769287, 0.033721924, 0.119506836, 0.020492554, 0.0132369995]}, "B07CNXY2XG": {"id": "B07CNXY2XG", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush \u2013 Gas Grill Cleaner - BBQ Brush\nDescription: Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included\nFeatures: Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nRestore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nCleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with\nThe extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before.\nQuarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.\n", "metadata": {"Name": "Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush \u2013 Gas Grill Cleaner - BBQ Brush", "Brand": "Drill Brush Power Scrubber by Useful Products", "Description": "Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included", "Features": "Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nRestore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nCleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with\nThe extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before.\nQuarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0132369995, 0.014480591, -0.047027588, -0.039520264, 0.01209259, -0.03704834, -0.009933472, 0.01133728, -0.030395508, 0.031311035, -0.0045547485, 0.031311035, 0.027191162, -0.024261475, 0.01158905, -0.007820129, 0.008758545, 0.02368164, 0.02204895, -0.02684021, 0.00484848, -0.006000519, -0.010467529, 0.01209259, 0.01838684, 0.010940552, 0.026809692, 0.020477295, 0.0023956299, 0.0059280396, 0.029556274, -0.04977417, 0.033721924, 0.024276733, -0.0395813, -0.037750244, -0.05795288, 0.020111084, -0.004550934, -0.02015686, 0.006008148, 0.0017137527, -0.028015137, 0.036987305, -0.037200928, -0.034606934, -0.0011129379, -0.020309448, 0.009231567, 0.030151367, 0.023757935, 0.017974854, 0.021835327, 0.008117676, -0.01864624, -0.008865356, -0.047821045, 0.027069092, 0.017562866, 0.05493164, 0.008804321, 0.009437561, -0.0050849915, -0.02456665, -0.04043579, -0.0055160522, 0.051452637, -0.02734375, -0.08276367, -0.041625977, 0.0881958, -0.040100098, 0.028884888, -0.017547607, -0.027816772, -0.032989502, 0.015205383, -0.025772095, 0.0055007935, 0.0070610046, 0.00095176697, -0.022232056, 0.013618469, -0.006668091, -0.0132751465, 0.006919861, -0.013214111, -0.0134887695, 0.0014219284, 0.0059280396, 0.00095129013, -0.03668213, -0.028381348, 0.059539795, 0.033416748, -0.034088135, -0.010658264, -0.060180664, 0.041503906, 0.020019531, 0.05230713, -0.06286621, 0.06695557, -0.0047035217, -0.018310547, -0.002325058, -0.005897522, 0.012397766, 0.01133728, 0.02998352, -0.023986816, -0.010177612, 0.010093689, -0.027557373, -0.05026245, 0.020904541, 0.03277588, -0.08099365, 0.013587952, -0.08947754, -0.032958984, -0.029815674, -0.018997192, 0.044952393, 0.051757812, 0.031829834, -0.012451172, 0.04663086, -0.037719727, -0.0033550262, 0.0009074211, 0.019470215, 0.035888672, 0.04498291, -0.00014197826, 0.0045204163, 0.0024356842, 0.007610321, 0.021514893, 0.004398346, 0.031280518, -0.0158844, 0.027832031, 0.031082153, 0.05456543, -0.013305664, 0.005695343, 0.041809082, 0.022720337, 0.022247314, 0.041503906, 0.018737793, 0.03942871, 0.016113281, -0.024810791, -0.006996155, 0.010765076, -0.014816284, -0.022354126, -0.06060791, 0.024658203, 0.009689331, 0.014480591, -0.0005888939, -0.0054779053, -0.023025513, -0.031799316, -0.0064201355, 0.004776001, -0.020431519, 0.023254395, -0.0028018951, -0.016616821, -0.033569336, -0.0033779144, -0.021347046, -0.022003174, 0.032196045, 0.060455322, -0.11352539, -0.075927734, -0.04925537, 0.070617676, -0.026550293, -0.020309448, -0.025390625, 0.010818481, -0.0019283295, 0.042633057, 0.0020751953, 0.02029419, -0.017532349, -0.025894165, 0.03491211, -0.0035247803, 0.04827881, -0.027252197, 0.06854248, -0.004688263, -0.10394287, 0.008544922, 0.012702942, -0.037322998, -0.0025997162, -0.05935669, -0.028182983, -0.011413574, 0.016311646, 0.011192322, 0.031799316, -0.004020691, 0.0030231476, 0.001285553, -0.035125732, -0.020767212, -0.02784729, -0.026748657, 0.0013580322, 0.0020370483, 0.021469116, 0.02609253, -0.0009703636, 0.00472641, 0.02166748, -0.025360107, 0.004245758, -0.032348633, 0.0143585205, -0.06390381, 0.020202637, -0.03277588, 0.032958984, 0.04397583, 0.083740234, -0.0047683716, 0.018707275, 0.033447266, 0.055786133, -0.000875473, -0.02293396, 0.006149292, 0.00944519, -0.022079468, 0.0065231323, 0.012451172, 0.008888245, 0.011138916, 0.00038552284, -0.028793335, 0.012184143, 0.010643005, 0.0027942657, 0.017120361, -0.018936157, -0.036468506, 0.046447754, -0.04888916, -0.035064697, -0.01146698, 0.017913818, 0.008049011, -0.039154053, -0.001241684, -0.019226074, 0.016494751, -0.014732361, 0.023208618, 0.0073547363, 0.005443573, -0.0036029816, -0.010284424, -0.055358887, 0.0043945312, 0.051330566, 0.025177002, 0.02166748, -0.00579834, -0.021530151, -0.005886078, 0.022949219, 0.02166748, 0.03894043, 0.066833496, -0.0035629272, -0.0005455017, 0.0015745163, 0.029418945, 0.022994995, -0.02746582, -0.037109375, 0.02079773, -0.018661499, -0.049865723, 0.00667572, -0.015052795, -0.040222168, 0.0017280579, 0.03225708, 0.013900757, -0.011833191, -0.005832672, 0.035095215, -0.041534424, 0.014427185, 0.008270264, 0.005355835, 0.0231781, -0.030273438, -0.013458252, 0.015220642, -0.022201538, 0.0473938, 0.051849365, -0.00046730042, 0.05316162, 0.014587402, 0.023223877, 0.046661377, 0.01852417, -0.006477356, -0.048980713, -0.025924683, -0.043151855, 0.0031719208, -0.024871826, 0.040771484, 0.00044441223, 0.0062561035, -0.06390381, 0.025482178, -0.008071899, -0.0028877258, -0.00472641, 0.012741089, -0.022842407, 0.009391785, -0.0070877075, 0.038909912, -0.013259888, -0.02986145, -0.027145386, -0.0670166, -0.0121154785, -0.032928467, -0.047943115, 0.015266418, 0.004928589, 0.013168335, -0.026748657, -0.0051498413, 0.012931824, -0.01878357, 0.02684021, 0.010848999, 0.023330688, -0.004043579, -0.03564453, -0.0096588135, -0.03543091, -0.076660156, -0.029159546, 0.008399963, -0.029830933, 0.05319214, 0.014831543, -0.029693604, 0.023010254, 0.0317688, 0.008705139, 0.031097412, -0.004005432, -0.008758545, 0.003768921, -0.0027542114, 0.01423645, -0.004589081, -0.011291504, -0.05050659, -0.021453857, -0.01928711, -0.013786316, 0.010101318, -0.0025177002, 0.035461426, 0.006038666, 0.00016474724, 0.01008606, 0.06414795, -0.01436615, -0.019012451, -0.013015747, 0.05102539, -0.038848877, -0.037902832, -0.026535034, 0.020980835, 0.00793457, -0.030731201, 0.0519104, -0.041137695, -0.15856934, 0.004627228, -0.0050621033, -0.04650879, 0.0049819946, -0.07556152, -0.07647705, -0.07757568, 0.006385803, 0.026107788, 0.016967773, 0.008506775, -0.010429382, 0.01739502, -0.005290985, -0.017074585, 0.04977417, -0.01171875, 0.0034294128, -0.02444458, -0.00415802, 0.03543091, 0.013267517, 0.027252197, -0.010536194, 0.0021476746, -0.015106201, -0.0027999878, -0.005180359, 0.046173096, -0.0019550323, -0.006038666, -0.0041656494, 0.0026493073, -0.05218506, -0.015792847, 0.008804321, -0.03942871, 0.059631348, -0.05227661, -0.02998352, -0.02027893, -0.034729004, 0.008872986, -0.020462036, -0.022628784, -0.02861023, -0.034210205, -0.009300232, -0.05279541, 0.0068740845, 0.007888794, 0.043670654, 0.022583008, 0.0059013367, 0.09094238, 0.029510498, 0.037902832, -0.021636963, 0.012924194, -0.013839722, -0.026504517, 0.06542969, -0.019180298, -0.0021190643, -0.061950684, 0.060577393, -0.040740967, -0.029541016, 0.032196045, -0.078063965, 0.05291748, 0.010940552, -0.018585205, 0.03274536, 0.008895874, -0.016921997, 0.016555786, -0.028167725, 0.001543045, -0.035186768, 0.008781433, -0.047607422, 0.09490967, 0.031173706, -0.0071411133, 0.05783081, 0.062561035, 0.0014753342, 0.013092041, 0.019439697, -0.0057144165, 0.0026226044, 0.04864502, -0.01776123, 0.004447937, 0.0041999817, -0.0031204224, 0.042663574, -0.0012254715, -0.023040771, 0.024490356, 0.026428223, -0.046173096, -0.00592041, 0.02520752, 0.031555176, -0.029449463, -0.028533936, -0.009437561, 0.0005683899, -0.05935669, -0.013763428, 0.0024223328, -0.0074539185, -0.02798462, 0.04598999, 0.00819397, -0.022033691, -0.00032901764, -0.04135132, -0.0048294067, -0.006752014, -0.0015077591, 0.044769287, 0.010429382, -0.026397705, 0.07904053, -0.010215759, 0.004146576, 0.0069847107, 0.015266418, -0.011390686, -0.022705078, 0.009414673, -0.026428223, 0.0044441223, 0.035186768, 0.04989624, -0.016937256, -0.013458252, -0.01361084, 0.0014667511, -0.021102905, 0.008529663, -0.034332275, -0.027359009, -0.022705078, -0.025497437, -0.0021705627, -0.017852783, -0.026489258, -0.014312744, -0.0053253174, -0.021606445, 0.0018949509, -0.030838013, 0.017532349, -0.00957489, -0.002981186, -0.009063721, 0.06652832, -0.046813965, -0.040008545, -0.021148682, -0.009483337, 0.06298828, 0.03942871, -0.029220581, 0.005104065, -0.020111084, -0.00932312, -0.0017633438, -0.052612305, -0.022888184, -0.026138306, -0.040985107, -0.006187439, -0.0013694763, 0.05810547, -0.024612427, 0.048706055, -0.020874023, 0.02911377, -0.07281494, -0.0368042, 0.06286621, -0.040649414, -0.04559326, -0.040161133, 0.08538818, -0.014083862, 0.011543274, -0.00843811, -0.010116577, 0.0034046173, 0.0031585693, -0.016952515, 0.01537323, 0.0007991791, 0.011688232, -0.0234375, -0.017288208, -0.02168274, 0.0552063, -0.0024433136, 0.052581787, -0.032684326, 0.008918762, 0.0008940697, 0.009979248, -0.021972656, 0.00082445145, 0.025665283, -0.0138168335, -0.023773193, -0.053863525, 0.08123779, 0.040374756, -0.03527832, -0.026123047, -0.00013136864, -0.050445557, -0.06463623, -0.038360596, 0.013916016, 0.04977417, 0.008552551, -0.033813477, 0.034942627, -0.007255554, 0.0048065186, 0.010597229, -0.002155304, 0.02557373, -0.020355225, 0.012863159, -0.017868042, -0.0031337738, 0.02798462, -0.014625549, -0.003238678, -0.05706787, 0.022720337, -0.00027155876, -0.021835327, -0.030670166, -0.030914307, 0.01789856, -0.020217896, 0.05014038, -0.0023403168, -0.06359863, -0.014297485, 0.07330322, -0.05734253, -0.016571045, 0.04751587, -0.016036987, -0.0010089874, -0.014694214, 0.039123535, 0.007030487, 0.003786087, -0.00018596649, -0.029449463, -0.015342712, -0.0025424957, -0.04144287, 0.019317627, -0.029754639, -0.03781128, -0.0060920715, -0.041229248, 0.038848877, 0.01084137, 0.016479492, 0.023986816, 0.032165527, -0.09283447, -0.010131836, -0.035491943, 0.05505371, 0.00031614304, -0.028762817, 0.01687622, -0.03314209, -0.016799927, 0.010147095, -0.015449524, -0.040496826, -0.0029850006, -0.016403198, -0.02696228, -0.0047721863, -0.017471313, -0.01727295, -0.012512207, -0.0073051453, -0.010017395, 0.037628174, -0.0079193115, -0.02798462, -0.04812622, 0.00089120865, 0.018066406, -0.02456665, 0.019317627, -0.010322571, -0.0008735657, 0.019622803, 0.02330017, 0.0037059784, 0.009925842, -0.03274536, -0.057556152, -0.05532837, -0.019683838, -0.028671265, 0.060150146, -0.0049438477, 0.010826111, 0.049804688, -0.025527954, 0.03942871, -0.0029335022, -0.0048217773, 0.005012512, 0.029785156, 0.053527832, -0.0463562, -0.025436401, 0.07196045, -0.056518555, -0.039916992, -0.027191162, 0.041809082, -0.030960083, -0.025314331, 0.045196533, -0.0099487305, 0.007499695, 0.009979248, -0.012878418, 0.0058174133, 0.045715332, 0.0021076202, 0.016433716, 0.008377075, 0.0044670105, 0.0016231537, 0.039154053, -0.021911621, -0.011703491, 0.037261963, -0.0037193298, -0.00032830238, -0.020187378, -0.028182983, 0.0028324127, -0.050109863, 0.01007843, -0.0060043335, -0.019744873, -0.0018024445, -0.031341553, -0.035858154, 0.021942139, 0.025726318, 0.033843994, 0.037597656, -0.07495117, 0.019622803, 0.06677246, -0.008895874, 0.12164307, -0.0061950684, -0.028915405, -0.010116577, 0.03744507, 0.039398193, 0.019424438, -0.0040245056, -0.028381348, -0.06488037, 0.044281006, 0.00491333, 0.07836914, -0.06262207, -0.0009355545, 0.03277588, 0.053833008, 0.008522034, -0.008087158, -0.003522873, 0.023223877, 0.021408081, 0.0005788803, 0.0011587143, -0.0072784424, -0.054656982, -0.01600647, -0.025924683, 0.008384705, 0.0055770874, 0.027496338, 0.02456665, -0.0023860931, -0.010917664, 0.024871826, 0.0025100708, 0.01979065, 0.018493652, -0.029632568, -0.025558472, -0.0008740425, -0.01399231, 0.00365448, 0.022827148, -0.038604736, 0.008399963, 0.035308838, -0.0155181885, 0.029144287, 0.003850937, -0.00844574, 0.028442383, -0.028320312, 0.014137268, 0.029525757, 0.0032997131, -0.00157547, 0.00079870224, 0.010292053, 0.009475708, 0.022949219, 0.018218994, 0.04437256, -0.02230835, 0.014053345, -0.0026836395, -0.009788513, 0.004322052, 0.023391724, -0.052337646, 0.03869629, 0.025177002, -0.030456543, -0.03878784, 0.0019388199, 0.03567505, -0.026168823, -0.026901245, 0.019973755, 0.023086548, -0.015258789, 0.005355835, -0.027069092, -0.033996582, 0.002872467, 0.006000519, 0.013648987, 0.028778076, 0.0024642944, -0.029434204, 0.020721436, -0.03930664, 0.021087646, 0.022201538, 0.043884277, 0.04055786, 0.018051147, -0.026809692, 0.0060195923, -0.0026721954, 0.008987427, 0.008522034, 0.04736328, 0.0018777847, 0.006290436, -0.05532837, 0.013549805, 0.08514404, 0.049804688, 0.037628174, -0.10058594, -0.004032135, -0.004055023, -0.037078857, -0.011428833, -0.032287598, -0.018371582, 0.0051841736, -0.006008148, -0.016174316, 0.02835083, 0.004573822, 0.017868042, 0.010566711, -0.048095703, 0.05319214, -0.0039024353, -0.009841919, 0.0046577454, -0.01914978, -0.0031528473, -0.010536194, -0.013031006, -0.015434265, -0.047332764, 0.029190063, -0.006439209, -0.023239136, -0.020614624, -0.0038261414, 0.04373169, -0.03225708, 0.0066070557, 0.0064048767, 0.031280518, 0.0022621155, 0.06274414, -0.020095825, -0.062072754, -0.06506348, 0.030151367, -0.097961426, -0.014625549, -0.04486084, 0.029876709, 0.014320374, 0.003786087, 0.05819702, 0.012008667, 0.023605347, 0.0074501038, -0.01940918, -0.007610321, -0.012825012, 0.02897644, -0.008277893, -0.0065307617, -0.013999939, -0.0042266846, -0.02760315, 0.084106445, -0.009811401, -0.043273926, 0.011222839, -0.013389587, -0.009887695, -0.014350891, -0.0058021545, 0.0027694702, 0.021530151, 0.024414062, -0.020462036, 0.032165527, -0.000975132, -0.0062561035, 0.023376465, 0.030471802, -0.0031471252, -0.013534546, -0.013114929, 0.01626587, -0.0061149597, -0.002008438, 0.04006958, 0.011482239, -0.0009918213, 0.021224976, -0.009086609, 0.01259613, 0.011985779, -0.014656067, 0.0021419525, 0.00044250488, -0.018432617, -0.018325806, 0.0027160645, 0.0027446747, -0.0070381165, -0.02444458, -0.0023002625, -0.010353088, -0.0067977905, -0.0005135536, -0.028442383, 0.016479492, -0.022125244, -0.011299133, -0.0032405853, -0.070251465, 0.05355835, 0.014907837, 0.015838623, -0.016281128, 0.036895752, -0.036895752, 0.024810791, 0.014732361, -0.014183044, -0.006038666, 0.00390625, 0.032165527, -0.044036865, 0.07556152, -0.0027885437, -0.07287598, -0.052368164, 0.037902832, 0.03262329, -0.025405884, 0.059906006, -0.025222778, 0.004432678, 0.041137695, 0.021194458, -0.031585693, 0.0390625, 0.018371582, 0.045928955, 0.024459839]}, "B00TZPETFI": {"id": "B00TZPETFI", "original": "Brand: DOZYANT\nName: DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type\nDescription: \nFeatures: Converts POL LP tank to Qcc1/Type1 hoses and regulators.\nThis adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place.\nProvides secure and airtight connection between propane tank and gas grill.\nHand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\n", "metadata": {"Name": "DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type", "Brand": "DOZYANT", "Description": "", "Features": "Converts POL LP tank to Qcc1/Type1 hoses and regulators.\nThis adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place.\nProvides secure and airtight connection between propane tank and gas grill.\nHand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.009788513, 0.015274048, -0.053619385, -0.027389526, 0.00207901, -0.024353027, -0.012771606, 0.010696411, -0.021072388, 0.03112793, -0.014549255, 0.05480957, -0.002998352, -0.017929077, 0.025466919, -0.012611389, 0.0024223328, -0.016296387, -0.043060303, -0.04486084, -0.018035889, -0.038360596, -0.017303467, 0.064453125, 0.019424438, -0.004524231, 0.031982422, 0.01914978, 0.01777649, -0.012145996, 0.029296875, -0.020004272, 0.029434204, 0.019500732, -0.041229248, -0.066223145, 0.0021324158, -0.0132751465, -0.050872803, 0.023025513, 0.0014915466, -0.0043907166, -0.018569946, -0.0059318542, -0.05218506, -0.004085541, -0.018569946, 0.0028495789, 0.0039711, -0.015777588, -0.0010070801, -0.03186035, 0.025543213, 0.013847351, -0.03152466, -0.019241333, -0.00774765, -0.057922363, 0.018508911, 0.019210815, 0.014183044, -0.014511108, 0.013893127, -0.013877869, -0.017150879, 0.018630981, 0.06890869, -0.0028705597, 3.5345554e-05, -0.037231445, -0.030700684, 0.038116455, -0.0009379387, -0.010803223, -0.04714966, -0.039031982, 0.032806396, -0.0619812, 0.012329102, 0.01121521, 0.01259613, -0.02923584, 0.058624268, 0.017059326, -0.010009766, 0.0064926147, -0.007537842, -0.0056114197, -0.016998291, -0.052764893, -0.019317627, 0.028076172, -0.06298828, -0.0043525696, -0.02986145, -0.014480591, -0.032318115, -0.070495605, 0.020019531, 0.027664185, 0.032165527, -0.04663086, 0.050964355, -0.0132369995, 0.024368286, 0.032562256, -0.013931274, -0.026748657, 0.055145264, 0.011817932, 0.010025024, 0.07531738, -0.008979797, -0.028839111, -0.005355835, 0.059936523, -0.0030937195, 0.017837524, 0.009819031, 0.035583496, -0.0019321442, 0.006668091, 0.021911621, -0.04852295, -0.0069274902, -0.026855469, -0.028518677, -0.009170532, -0.05065918, -0.013954163, -0.011871338, 0.015563965, 0.037109375, 0.09979248, 0.018829346, 0.005264282, 0.027893066, 0.024520874, 0.008018494, -0.0051651, 0.04663086, -0.015396118, -0.019821167, 0.034606934, -0.019256592, 0.032958984, -0.004875183, 0.007118225, 0.015022278, -0.052490234, 0.0007724762, -0.061340332, 0.047790527, 0.011154175, -0.020980835, 0.0053215027, -0.0036029816, -0.009742737, -0.016906738, -0.035827637, -0.033721924, -0.031280518, -0.009590149, 0.009384155, -0.0074501038, 0.057647705, 0.03677368, -0.0023002625, 0.0309906, 0.09118652, 0.00072193146, 0.012283325, 0.047210693, 0.023956299, -0.019454956, -0.021713257, -0.07171631, 0.07141113, 0.0769043, -0.117492676, -0.036956787, -0.048339844, 0.097473145, 0.009750366, 0.018325806, -0.027297974, 0.027832031, -0.033843994, -0.02973938, 0.008773804, 0.03540039, 0.06188965, 0.03149414, -0.05178833, -0.013343811, 0.008049011, 0.0032196045, 0.027023315, -0.007385254, 0.0039596558, -0.046142578, -0.0005879402, 0.017593384, 0.025680542, 0.010757446, 0.0053138733, -0.015396118, 0.013343811, -0.016647339, 0.021881104, 0.022659302, -0.007873535, -0.003566742, -0.05456543, -0.010848999, 0.014259338, -0.01285553, -0.0030937195, -0.002521515, -0.0062179565, 0.035583496, -0.0018777847, 0.021484375, 0.03451538, 0.006298065, -0.002401352, -0.02758789, -0.010368347, 0.0050354004, 0.0008459091, 0.026947021, 0.03652954, 0.06210327, 0.022857666, -0.01638794, 0.033081055, 0.06036377, 0.008476257, -0.043060303, 0.001739502, 0.0038642883, -0.017166138, -0.026779175, 0.020553589, 0.0006904602, -0.02420044, 0.0021572113, 0.017181396, -0.020721436, 0.019256592, 0.030548096, -0.00025701523, 0.023468018, 0.006881714, -0.04864502, 0.031036377, 0.015731812, 0.045562744, -0.039001465, 0.009971619, -0.014183044, 0.026565552, -0.0042381287, 0.0015678406, 0.018936157, 0.00566864, 0.030212402, 0.024612427, -0.011558533, -0.007774353, 0.015975952, 0.022262573, -0.010231018, -0.013771057, -0.0073013306, 0.011199951, -0.024856567, 0.020553589, 0.007118225, -0.018859863, 0.03668213, 0.03881836, 0.018325806, -0.008476257, 0.03640747, 0.051239014, -0.0062828064, 0.0043640137, -0.015159607, -0.016708374, 0.01727295, 0.026046753, -0.012077332, 0.031982422, -0.008514404, -0.014953613, 0.06982422, 0.009239197, 0.008399963, 0.025650024, 0.014373779, 0.053588867, -0.0012216568, 0.012702942, 0.025146484, -0.026687622, 0.018966675, 0.0044403076, 0.01725769, 0.031982422, -0.067871094, 0.041381836, 0.015670776, 0.0033493042, 0.028320312, 0.021133423, 0.015167236, 0.035217285, 0.060668945, 0.06451416, -0.018676758, -0.018859863, 0.007827759, -0.030029297, 0.011070251, -0.0019359589, -0.05532837, 0.019836426, 0.021575928, -0.0043029785, -0.012748718, -0.02798462, -0.03289795, -0.034973145, 0.00095939636, -0.0009737015, 0.011383057, -0.00043463707, -0.004764557, -0.050750732, 0.01838684, -0.060913086, 0.0076675415, 0.045440674, -0.013954163, -0.020339966, 0.045776367, 0.008087158, 0.022140503, 0.037384033, -0.0345459, 0.00034999847, 0.031982422, 0.027633667, 0.046447754, 0.017929077, -0.042907715, 0.018615723, 0.026931763, -0.039611816, 0.024795532, -0.020355225, -0.034301758, 0.02218628, 0.030456543, -0.012542725, -0.01108551, -0.019577026, 0.0055122375, 0.040008545, 0.0034389496, -0.010688782, -0.0635376, -0.0014839172, 0.005153656, 0.0068893433, 0.040771484, -0.015930176, 0.00907135, 0.022003174, 0.010299683, 0.018508911, -0.0055503845, -0.0096588135, -0.027877808, 0.03475952, 0.04458618, 0.009750366, 0.011070251, -0.04043579, 0.01953125, 0.06573486, -0.0066223145, 0.0022907257, -0.003967285, -0.009750366, -0.007724762, -0.01864624, -0.064331055, -0.00032567978, -0.015472412, -0.010139465, 0.028564453, -0.025299072, -0.011360168, -0.07489014, -0.029800415, -0.015068054, 0.028137207, 0.055389404, -0.025894165, 0.031051636, -0.0034656525, 0.013214111, -0.02960205, 0.02923584, -0.07055664, -0.0060806274, -0.03439331, 0.048706055, 0.05255127, -0.088256836, 0.009155273, 0.055145264, -0.026992798, -0.011474609, 0.02079773, 0.033416748, 0.021652222, 0.0234375, -0.0018663406, -0.0071258545, -0.05206299, -0.021575928, -0.008056641, 0.0027446747, 0.03503418, -0.022323608, 0.053375244, -0.011482239, -0.03475952, -0.0146102905, -0.027938843, 0.061767578, -0.023712158, 0.0013723373, -0.049621582, -0.055114746, -0.02293396, -0.019485474, -0.011978149, 0.006290436, 0.03543091, 0.026672363, -0.002298355, 0.0690918, 0.050476074, 0.04498291, -0.00045204163, 0.06210327, 0.038848877, -0.00093126297, 0.025161743, 0.02230835, 0.016693115, -0.046691895, 0.0008049011, 0.02027893, 0.0116119385, -0.013313293, 0.010108948, 0.06347656, 0.0090408325, -0.015586853, 0.017547607, 0.0082092285, 0.02267456, -0.025924683, 0.016357422, -0.026443481, -0.05480957, 0.027267456, -0.10168457, 0.074645996, 0.027648926, -0.019744873, 0.07476807, 0.033477783, -0.007270813, 0.06744385, 0.036376953, 0.015792847, 0.02746582, 0.06640625, 0.0011129379, 0.0041656494, -0.0027313232, 0.010787964, 0.0013875961, -0.021942139, 0.0012702942, 0.029129028, 0.050994873, 0.0003476143, -0.014945984, 0.036987305, -0.0048675537, -0.032196045, -0.018371582, -0.04034424, -0.030441284, -0.069885254, 0.03616333, 0.019454956, -0.015853882, 0.0025959015, 0.010971069, -0.028778076, -0.010383606, 0.016357422, -0.014099121, -0.030319214, 0.04345703, 0.035491943, -0.008712769, -0.030883789, 0.03173828, -0.015525818, -0.054595947, 0.006626129, 0.068359375, 0.038208008, 0.012275696, -0.044708252, -0.0041007996, 0.0019798279, -0.034301758, 0.028747559, -0.014579773, -0.06222534, -0.011184692, 0.010765076, 0.0049934387, -0.006462097, 0.0018081665, -0.06201172, -0.015266418, -0.027664185, -0.03363037, -0.019973755, -0.0079422, 0.010948181, 0.012466431, -0.007106781, -0.053863525, 0.03378296, -0.021392822, -0.000100553036, -0.004650116, 0.02659607, 0.01687622, 0.037750244, -0.059509277, -0.015037537, -0.05126953, -0.017120361, 0.054748535, 0.01285553, 0.027862549, -0.033050537, -0.0045204163, 0.0075149536, -4.87566e-05, -0.029220581, 0.0016698837, -0.0030136108, -0.023483276, 0.020492554, 0.0014562607, 0.048797607, -0.0005130768, 0.018432617, -0.03302002, 0.007911682, -0.07739258, 0.057678223, 0.0050315857, 0.008239746, -0.061676025, -0.004360199, 0.032989502, 0.019485474, 0.0061950684, -0.04559326, -0.004524231, 0.020645142, -0.013404846, -0.04827881, -0.03503418, -0.008483887, 0.0022411346, -0.0135269165, 0.0023384094, -0.0044059753, 0.014122009, -0.0051574707, -0.030273438, 0.010551453, 0.0063934326, -0.011161804, -0.00017595291, 0.015411377, -0.023620605, 0.024002075, -0.021255493, -0.047973633, -0.07507324, 0.048583984, -0.0052871704, -0.0051651, -0.010757446, -0.041931152, -0.017440796, -0.05215454, -0.013671875, 0.02810669, 0.0022449493, -0.022384644, -0.03994751, 0.00043034554, -0.029953003, -0.0071029663, -0.0054244995, -0.021270752, 0.0014657974, 0.0064048767, -0.003932953, -0.05065918, -0.014503479, 0.026412964, 0.011230469, 0.00014686584, -0.046325684, 0.004638672, -0.011482239, -0.025039673, -0.010879517, -0.022613525, -0.0048942566, -0.011779785, -0.0020771027, 0.02166748, -0.015396118, 0.037628174, 0.040374756, 0.036621094, 0.0044288635, 0.01361084, -0.020599365, -0.0047721863, -0.0015192032, 0.0055122375, 0.006679535, -0.0011634827, 0.014671326, -0.010787964, 0.011199951, 0.038604736, -0.037200928, 0.04901123, -0.0025672913, -0.018676758, 0.01939392, 0.0010280609, 0.028778076, -0.013877869, 0.09210205, 0.00242424, 0.030166626, -0.06945801, 0.0132369995, -0.015640259, 0.029754639, -0.02998352, -0.014892578, 0.011436462, -0.04397583, 0.019866943, 0.017807007, -0.029159546, -0.04055786, -0.02607727, -0.007129669, -0.055603027, 0.015403748, 0.026870728, -0.007156372, 0.013313293, -0.005760193, -0.059020996, 0.04864502, 0.015380859, -0.08428955, -0.036376953, -0.01940918, -0.0062179565, -0.009246826, -0.035095215, -0.013420105, 0.002380371, -0.03765869, 0.007095337, 0.019821167, 0.011146545, -0.057373047, -0.006252289, -0.00083875656, 0.030822754, 0.003686905, 0.044403076, -0.04977417, -0.024307251, -0.018936157, -0.030654907, 0.001335144, -0.012107849, -0.0690918, -0.03729248, -0.00052309036, 0.00894928, 0.017196655, 0.033447266, 0.011352539, -0.020217896, 0.00073194504, -0.05987549, 0.0748291, -0.056671143, -0.06793213, 0.05783081, 0.083862305, 0.014724731, 0.008644104, -0.04888916, -0.060821533, 0.03225708, -0.0035552979, -0.03857422, -0.046691895, -0.03741455, -0.04309082, 0.038024902, 0.006652832, -0.005580902, 0.02810669, 0.0035629272, 0.028625488, -0.027648926, 0.0050582886, -0.019958496, -0.037597656, 0.015327454, 0.012031555, 0.036376953, 0.013076782, 0.046142578, -0.11315918, -0.055389404, 0.00063085556, 0.03842163, 0.0023899078, -0.0070533752, -0.0014696121, 0.04550171, -0.027160645, 0.037475586, 0.008705139, 0.025161743, 0.0028457642, 0.011985779, -0.057373047, 0.06793213, -0.057495117, 0.014587402, -0.0256958, -0.020889282, 0.014457703, 0.036895752, -0.057434082, 0.0067253113, 0.013404846, 0.066345215, -0.020568848, 0.015335083, 0.031280518, 0.007320404, -0.027664185, -0.023162842, 0.031021118, -0.024169922, 0.012374878, -0.017456055, -0.001581192, -0.007297516, -0.017562866, 0.0027542114, 0.03363037, 0.010131836, 0.012207031, 0.045318604, -0.004501343, 0.0023078918, 0.036712646, -0.041656494, 0.06817627, 0.009147644, -0.0037822723, -0.007858276, 0.013175964, -0.016983032, 0.016815186, 0.025314331, -0.00024962425, 0.018432617, -0.016799927, 0.026901245, 0.01210022, -0.045654297, 0.009460449, 0.043518066, 0.028259277, 0.020751953, -0.039215088, -0.012962341, -0.011772156, 0.030715942, 0.014076233, 0.044891357, -0.0064926147, 0.04269409, -0.025268555, -0.019165039, -0.040130615, -0.03652954, 0.02192688, -0.02659607, -0.02557373, 0.016159058, -0.059051514, -0.0063819885, 0.04260254, -0.025848389, -0.01550293, 0.031341553, 0.023468018, 0.002866745, 0.020492554, -0.021575928, -0.03765869, -0.018218994, -0.01928711, 0.01727295, 0.06640625, 0.010925293, 0.029815674, 0.024307251, 0.015991211, -0.0069770813, -0.016555786, 0.00016891956, 0.021438599, -0.011940002, -0.064453125, -0.05444336, -0.025421143, -0.023086548, -0.027679443, 0.06817627, -0.03289795, 0.07867432, 0.0011167526, 0.011428833, 0.050964355, 0.02897644, 0.018585205, -0.046875, 0.0013608932, -0.012619019, -0.0015306473, -0.016738892, -0.040771484, 0.0053482056, 0.020446777, -0.0096206665, -0.0032958984, -0.006690979, -0.01676941, 0.008468628, 0.0050354004, -0.009788513, 0.0045318604, -0.0008816719, -0.019180298, 0.004009247, 0.0178833, -0.016555786, -0.011375427, -0.03375244, -0.05050659, -0.03656006, 0.05734253, -0.020492554, -0.00030493736, 0.0012979507, -0.017425537, 0.012954712, -0.005207062, 0.035461426, 0.044555664, 0.0385437, -0.0062065125, -0.0046844482, 0.006626129, -0.022064209, -0.03668213, 0.0256958, -0.044708252, -0.029968262, -0.024642944, 0.020767212, 0.020843506, 0.014663696, 0.062408447, 0.07977295, 0.008323669, 0.0149383545, -0.02519226, -0.025024414, 0.0011167526, -0.01209259, -0.0031738281, -0.03161621, -0.04550171, 0.027252197, 0.0024261475, 0.011947632, 0.029922485, -0.0079956055, 0.0049858093, -0.00033545494, 1.5199184e-05, -0.036590576, -0.014511108, -0.013519287, -0.0007200241, -0.018539429, -0.037200928, -0.027999878, -0.002521515, 0.02659607, 0.029541016, 0.019439697, 0.0010852814, -0.022079468, -0.043395996, -0.014030457, -0.0050621033, 0.030517578, 0.01776123, -0.060913086, -0.025436401, -0.017974854, -0.009239197, -0.008682251, 0.026367188, -0.0061416626, 0.010734558, 0.03942871, 0.0056991577, 0.018295288, -0.01096344, 0.0048446655, -0.06500244, -0.013977051, 0.053985596, 0.006034851, -0.014884949, 0.002494812, -0.05444336, -0.008308411, -0.010299683, -0.06726074, -0.021194458, -0.017990112, 0.045013428, 0.009536743, 0.020141602, -0.031433105, 0.039245605, 0.00044822693, -0.029724121, 0.037109375, 0.03152466, 0.05517578, -0.02772522, -0.003929138, 0.020339966, 0.015640259, 0.0040397644, -0.09259033, -0.042938232, 0.015167236, 0.036590576, -0.015586853, 0.050048828, -0.026657104, -0.006904602, 0.03552246, -0.041259766, -0.06378174, 0.029281616, 0.07531738, 0.023223877, 0.0259552]}, "B07FTK91YG": {"id": "B07FTK91YG", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump\nDescription: 1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
      2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
      3.Ignition is provided by 2 D cell batteries which means electricity isn\u2019t required to power the unit. (batteries not included\uff09
      4.The ideal low water pressure operating range for the Camplux BD158 is 2.8\uff5e110.0 PSI, work easily with great performance.
      5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
      6.The system also works with a 12 volt pump to get the desired pressure.
      7.The gas water heater can't be used for drinking water.
      8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

      Easy to Use
      1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
      2. Connect the gas cylinder with the supplied gas hose and regulator.
      3. Connect shower hose and shower head to the hot water outlet.
      4. Connect water hose to the water inlet.
      5. Insert 2 \"D\" cell batteries.
      6. Enjoy instant hot water!

      What's in the Box
      1 x Camplux pro portable hot water system
      1 x 1.2 GPM Water Pump
      1 x 3 setting ON/OFF shower head and pedestal
      1 x 5\"ft premium shower hose
      1 x 5\"ft CSA approval gas hose & regulator
      1 x Camplux 1.2 GPM Water Pump
      1 x garden hose: 1/2\" BSP Female x 3/4\" GHT Female
      1 x garden hose: 1/2\" BSP Female X 3/4\" GHT Male
      1 x gas inlet connector: 1/2\" BSP Female x 5/8\" NPT Inverted Flare Male
      1 x accessories package\uff08included water tape & screws \uff09
      1 x instruction manual

      Inquiry & aftersales service: support@camplux.com
      Service hotline: (1)844-538-7475\nFeatures: Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don't need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one.\n3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV's and Boats.\nCSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 \u00b0F.\nPower Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise.\nImportant Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "metadata": {"Name": "Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump", "Brand": "CAMPLUX ENJOY OUTDOOR LIFE", "Description": "1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
      2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
      3.Ignition is provided by 2 D cell batteries which means electricity isn\u2019t required to power the unit. (batteries not included\uff09
      4.The ideal low water pressure operating range for the Camplux BD158 is 2.8\uff5e110.0 PSI, work easily with great performance.
      5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
      6.The system also works with a 12 volt pump to get the desired pressure.
      7.The gas water heater can't be used for drinking water.
      8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

      Easy to Use
      1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
      2. Connect the gas cylinder with the supplied gas hose and regulator.
      3. Connect shower hose and shower head to the hot water outlet.
      4. Connect water hose to the water inlet.
      5. Insert 2 \"D\" cell batteries.
      6. Enjoy instant hot water!

      What's in the Box
      1 x Camplux pro portable hot water system 1 x 1.2 GPM Water Pump
      1 x 3 setting ON/OFF shower head and pedestal
      1 x 5\"ft premium shower hose
      1 x 5\"ft CSA approval gas hose & regulator
      1 x Camplux 1.2 GPM Water Pump
      1 x garden hose: 1/2\" BSP Female x 3/4\" GHT Female
      1 x garden hose: 1/2\" BSP Female X 3/4\" GHT Male
      1 x gas inlet connector: 1/2\" BSP Female x 5/8\" NPT Inverted Flare Male
      1 x accessories package\uff08included water tape & screws \uff09
      1 x instruction manual

      Inquiry & aftersales service: support@camplux.com
      Service hotline: (1)844-538-7475", "Features": "Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don't need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one.\n3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV's and Boats.\nCSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 \u00b0F.\nPower Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise.\nImportant Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0066719055, -0.013504028, -0.012878418, -0.00818634, -0.019226074, -0.0077667236, -0.0023593903, -0.003162384, -0.016098022, -0.0017156601, -0.026184082, 0.018554688, -0.027893066, -0.03704834, 0.02406311, -0.038482666, 0.021255493, 0.021240234, 0.00023138523, -0.025161743, -0.004283905, -0.0054473877, -0.04852295, 0.12585449, -0.00491333, 0.031082153, 0.019180298, 0.007873535, -0.019332886, -0.0055389404, 0.009918213, 0.0064849854, 0.046691895, -0.066833496, 0.056671143, -0.014389038, -0.020126343, -0.03451538, -0.017364502, -0.0149002075, 0.031555176, -0.040649414, -0.040618896, 0.009841919, -0.041778564, -0.007881165, 0.026000977, 0.012336731, 0.0184021, -0.012802124, 0.010772705, -0.00504303, 0.021987915, -0.0019416809, -0.005874634, 0.05303955, 0.019454956, -0.030014038, 0.021987915, -0.02758789, -0.014884949, -0.015686035, 0.028717041, -0.0013580322, -0.06915283, 0.0039749146, 0.017623901, -0.02178955, 0.015899658, -0.07141113, -0.016143799, 0.0234375, 0.011314392, -0.00093221664, -0.064086914, -0.017150879, 0.019561768, -0.037841797, 0.03237915, -0.016937256, -0.010864258, -0.059936523, 0.023345947, -0.005756378, 0.010108948, 0.0066986084, 0.0019664764, 0.00066280365, -0.042785645, -0.04171753, -0.03466797, -0.015838623, -0.064575195, -0.010696411, -0.019622803, 0.002796173, -0.050811768, -0.05630493, 0.03982544, 0.05001831, 0.025238037, -0.04006958, 0.04748535, -0.012962341, 0.0025939941, 0.06335449, 0.0046539307, 0.03543091, 0.03048706, 0.0077819824, 0.0032653809, 0.0054397583, -0.0035095215, -0.004688263, -0.02267456, 0.016326904, -0.0017709732, 0.005088806, 0.00995636, 0.013931274, -0.006439209, -0.005832672, 0.02986145, 0.0018281937, 0.014060974, 0.018203735, -0.015640259, -0.028549194, -0.0043525696, 0.041046143, -0.0345459, -0.0076065063, 0.080566406, 0.05718994, 0.017425537, -0.03253174, 0.016464233, -0.009498596, -0.013160706, -0.0073890686, 0.0113220215, 0.017120361, 0.031585693, -0.0078086853, -0.009536743, 0.009262085, 0.019302368, 0.014755249, -0.0045394897, -0.012435913, -0.0030155182, -0.010848999, 0.050750732, -0.010658264, -0.02947998, -0.02545166, 0.0066986084, -0.037475586, -0.017715454, -0.059570312, -0.03378296, -0.01184082, 0.0178833, -0.026275635, -0.012924194, 0.006996155, -0.0011262894, 0.011405945, 0.01625061, 0.041137695, 0.018203735, 0.030395508, 0.0055656433, 0.00548172, 0.012458801, -0.02017212, -0.030471802, 0.07867432, 0.06335449, -0.13500977, -0.054260254, -0.05621338, 0.12036133, -0.019866943, -0.005645752, -0.010284424, 0.0099487305, 0.026779175, 0.0067863464, 0.019058228, 0.013130188, -0.0009379387, -0.008232117, 0.0013837814, -0.0033550262, -0.007881165, -0.025894165, 0.005859375, -0.008529663, 3.772974e-05, -0.01449585, 0.013031006, 0.0039787292, -0.037841797, 0.040008545, -0.028701782, 0.016601562, 0.029266357, 0.038208008, -0.0052452087, -0.013511658, -0.042877197, 0.036865234, -0.0748291, -0.055023193, -0.0031661987, -0.025238037, 0.040863037, 0.0069389343, 0.008056641, 0.039733887, -0.062164307, 0.031341553, 0.0084991455, 0.021484375, -0.02558899, -0.012260437, -0.012229919, 0.0054969788, 0.0024642944, -0.029541016, 0.037017822, 0.015533447, 0.03829956, -0.016662598, 0.002614975, 0.038330078, 0.02720642, 0.0027046204, 0.0018692017, 0.0029144287, -0.004951477, -0.031066895, -0.01121521, -0.04675293, -0.018081665, 0.042175293, -0.022216797, -0.0015144348, 0.06506348, -0.0119018555, 0.019760132, -0.0056495667, 0.03225708, -0.007972717, 0.0058555603, -0.0048065186, 0.01676941, -0.036468506, 0.014472961, -0.008552551, 0.022903442, 0.014663696, 0.001373291, -0.010826111, 0.036834717, 0.021759033, 0.03390503, 0.0023174286, 0.0039978027, -0.00048971176, -0.028518677, -0.028320312, -0.019210815, 0.029785156, -0.014892578, -0.03955078, 0.02859497, -0.03930664, -0.015319824, -0.020385742, -0.026290894, 0.01398468, 0.003206253, 0.03366089, -0.0073013306, 0.02923584, -0.017532349, -0.01071167, -0.024093628, 0.033416748, -0.024215698, -0.036071777, 0.005508423, -0.02418518, -0.047790527, 0.035858154, 0.027618408, 0.02468872, -0.022079468, -0.010124207, 0.029571533, -0.06506348, 0.04626465, -0.0066184998, 0.019927979, -0.01928711, 0.022735596, 0.0032138824, 0.02255249, -0.06210327, 0.017837524, 0.02558899, -0.013916016, 0.032592773, 0.015174866, 0.0020656586, 0.024932861, 0.059692383, 0.096191406, -0.053894043, -0.015670776, 0.019882202, 0.018127441, 0.01751709, -0.020401001, 0.00970459, 0.016296387, -0.013031006, -0.010856628, 0.031204224, 0.0008196831, 0.015235901, 0.023452759, 0.015365601, -0.0033912659, 0.017623901, 0.024108887, 0.019958496, -0.024261475, 0.0385437, -0.0022697449, -0.023803711, 0.0076560974, -0.0602417, 0.007633209, 0.03857422, -0.009117126, -0.014251709, -0.0011301041, 0.014694214, -0.017349243, 0.03173828, -0.056427002, 0.038085938, -0.01776123, -0.07354736, -0.04244995, 0.017684937, -0.07141113, -0.0010948181, -0.053222656, -0.06695557, -0.07421875, 0.054992676, 0.022842407, -0.08276367, -0.023132324, -0.03933716, 0.0043907166, -0.0038757324, -0.013648987, -0.024505615, -0.021759033, -0.023864746, 0.025741577, 0.030380249, -0.01763916, 0.00762558, 0.023208618, 0.037506104, 0.059814453, -0.022323608, 0.030563354, 0.007865906, 0.05227661, 0.07495117, 0.010955811, 0.017089844, -0.049560547, 0.026107788, 0.022567749, -0.02684021, -0.0059127808, 0.021697998, -0.0077781677, 0.0042762756, 0.0027885437, -0.0418396, -0.021408081, -0.03552246, 0.0184021, -0.0032138824, -0.037078857, 0.014122009, -0.105529785, -0.006465912, -0.045562744, 0.020904541, 0.028427124, -0.031402588, 0.014564514, -0.031433105, -0.001996994, -0.016693115, 0.011070251, -0.019836426, -0.00919342, -0.03479004, 0.027832031, 0.040161133, -0.016036987, 0.014320374, 0.050109863, -0.038909912, -0.0034389496, -0.030334473, 0.016937256, -0.032928467, 0.07171631, -0.021453857, 0.017074585, -0.015075684, -0.022964478, -0.04623413, -0.012229919, -0.0077705383, -0.02885437, 0.022033691, -0.039398193, -0.038024902, 0.023757935, 0.0073280334, 0.00069379807, -0.030914307, -0.018737793, 0.05227661, -0.02128601, -0.0087890625, -0.034423828, -0.008605957, 0.0066986084, 0.057037354, 0.036590576, 0.010154724, 0.07550049, 0.015380859, 0.023040771, -0.016601562, -0.013084412, -0.03540039, -0.022323608, 0.0625, -0.032104492, -0.0006008148, -0.030517578, 0.013366699, 0.030227661, 0.032806396, -0.035858154, 0.020446777, 0.03186035, -0.0026302338, -0.017242432, -0.010246277, -0.02659607, 0.03527832, 0.013839722, 0.004825592, -0.03050232, -0.045898438, 0.023452759, -0.109558105, 0.026275635, 0.01939392, -0.02017212, 0.022583008, 0.0022010803, -0.0256958, 0.04043579, 0.057373047, 0.018325806, 0.0018386841, 0.04196167, -0.023513794, -0.027114868, 0.01576233, -0.01713562, 0.0039253235, -0.010513306, -0.026489258, 0.015167236, -0.028305054, -0.019866943, -0.0703125, 0.012504578, 0.014167786, 0.018585205, 0.004928589, -0.079833984, -0.0042304993, -0.04272461, 0.03164673, 0.013755798, -0.024627686, -0.003692627, 0.01524353, -0.037719727, -0.010375977, 0.0184021, -0.00085401535, -0.007850647, 0.020904541, 0.032958984, 0.010627747, -0.01675415, -0.004421234, -0.0015859604, 0.010978699, 0.023529053, 0.003824234, -0.028900146, 0.027069092, 0.018737793, 0.016464233, -0.011665344, 0.004802704, 0.044067383, 0.0084991455, -0.06970215, 0.0032138824, 0.04711914, 0.015312195, -0.04812622, 0.009155273, -0.016082764, -0.007610321, -0.017959595, -0.02734375, -0.005683899, -0.024047852, -0.0012588501, -0.042266846, -0.05340576, 0.006099701, 0.02357483, 0.035614014, -0.016708374, -0.026412964, 0.008216858, -0.013923645, -0.0010929108, -0.041015625, 0.018417358, -0.029174805, -0.000688076, 0.0335083, 0.016952515, -0.051116943, -0.012016296, -0.022949219, 0.022872925, 0.032287598, -0.034942627, 0.003320694, -0.02998352, -0.026168823, 0.01889038, 0.0022335052, 0.039154053, -0.02355957, 0.022277832, -0.023452759, 0.05886841, -0.05731201, -0.002445221, 0.029876709, -0.016693115, -0.055236816, -0.038085938, 0.06958008, 0.0036067963, -0.0076408386, 0.008628845, 0.039978027, 0.009246826, 0.048065186, -0.09954834, -0.049957275, 0.0058059692, -0.018615723, 0.008255005, 0.00541687, -0.026351929, 0.01727295, 0.03366089, -0.0044059753, 0.0138549805, -0.013999939, 0.0063552856, 0.003622055, 0.010856628, -0.032073975, -0.004589081, -0.030944824, 0.01776123, -0.029922485, 0.06317139, 0.064331055, 0.0010919571, 0.025787354, 0.016311646, -0.0005135536, -0.021697998, 0.014816284, -0.03302002, 0.007575989, 0.017807007, -0.011405945, -0.023208618, -0.02368164, -0.0146484375, -0.02897644, -0.0014019012, 0.003238678, -0.013031006, -0.019866943, -0.025787354, -0.02734375, -0.021606445, -0.00088882446, 0.012161255, 0.025985718, -0.043518066, 0.06890869, -0.033294678, -0.0077705383, 0.044708252, -0.009300232, 0.014511108, 0.006008148, -0.005619049, -0.08502197, 0.02368164, 0.028076172, -0.0051498413, 0.033721924, 0.004524231, -0.03933716, -0.04168701, -0.027633667, -0.03375244, -0.04373169, -0.014518738, -0.03100586, 0.025558472, -0.009033203, 0.024246216, 0.00793457, -0.005088806, 0.008926392, -0.023330688, 0.029190063, -0.005924225, -0.006996155, -0.0053482056, 0.038970947, -0.00014817715, 0.011169434, -0.036132812, 0.008743286, 0.010505676, 0.0040283203, 0.013412476, -0.0289917, 0.05947876, 0.0010299683, -0.03062439, 0.010299683, 0.07879639, -0.033966064, -0.0010099411, 0.041229248, 0.033843994, -0.052764893, 0.05126953, -0.018844604, 0.054382324, -0.012046814, -0.049957275, -0.0024375916, 0.0491333, -0.025161743, 0.012992859, -0.034576416, 0.014442444, -0.05203247, 0.0073547363, -0.037719727, 0.0018873215, -0.022766113, -0.0046577454, 0.0362854, 0.011833191, -0.07122803, -0.028900146, 0.012802124, 0.047851562, 0.020706177, 0.041046143, 0.010345459, -0.022201538, 0.01133728, -0.010307312, -0.011749268, 0.024902344, -0.012481689, 0.04486084, 0.01701355, 0.016723633, -0.021347046, -0.03729248, 0.036010742, -0.026290894, -0.028121948, -0.015419006, 0.049957275, -0.062164307, -0.035705566, 0.08959961, 0.057800293, 0.025177002, 0.018737793, 0.012420654, -0.05203247, 0.011405945, 0.016143799, -0.059295654, -0.040863037, -0.033050537, 0.0014762878, 0.004840851, 0.03930664, -0.018630981, 0.022842407, -0.024871826, 0.013420105, -0.004501343, 0.04107666, -0.041534424, -0.0040740967, 0.0112838745, -0.008491516, 0.0043678284, -0.04058838, 0.016647339, -0.05505371, -0.034210205, 0.0036373138, 0.022857666, 0.020339966, -0.014442444, 0.014205933, 0.017608643, -0.021728516, 0.0519104, -0.018966675, -0.004173279, 0.038116455, 0.03778076, 0.01348114, 0.019302368, 0.009223938, -0.021652222, -0.043121338, 0.058929443, 0.02015686, 0.057647705, -0.0552063, -0.024169922, 0.008613586, 0.036712646, -0.033325195, 0.04623413, 0.007572174, 0.0054969788, 0.00083351135, -0.0069732666, 0.04675293, -0.022277832, -0.02923584, 0.0023975372, -0.02645874, 0.0053138733, -0.018798828, 0.0071029663, 0.020462036, 0.022109985, -0.037750244, 0.013900757, -0.017715454, -0.016342163, 0.040649414, -0.03604126, 0.018966675, -0.05102539, 0.0033302307, -0.0020427704, -0.02015686, 0.0055007935, 0.022323608, 0.021728516, 0.015823364, 0.0181427, -0.013465881, 0.042510986, 0.022598267, -0.068359375, -0.006137848, -0.034179688, 0.0056877136, -0.016418457, 0.02015686, -0.011558533, 0.051940918, 0.03604126, -0.035491943, 0.030654907, -0.030731201, -0.00504303, -0.058776855, -0.0009012222, -0.031463623, -0.010383606, -0.06384277, 0.035247803, 0.014556885, 0.0036411285, -0.034240723, 0.029968262, 0.04800415, -0.003501892, 0.021438599, 0.0061531067, 0.016937256, -0.0105896, -0.021591187, -0.033111572, -0.057556152, 0.014274597, 0.05078125, -0.028030396, 0.0058670044, -0.043945312, 0.04916382, -0.023040771, 0.0048980713, 0.008621216, -0.04522705, -0.0010900497, 0.0184021, -0.013259888, -0.05795288, -0.013511658, -0.020980835, -0.0012426376, -0.0032176971, 0.026443481, 0.015808105, -0.0010185242, -0.018722534, 0.0035820007, 0.026245117, -0.04458618, 0.020370483, -0.010261536, 0.011665344, 0.022857666, -0.013656616, -0.01209259, -0.010871887, -0.029647827, 0.023986816, -0.023666382, -0.027038574, -0.08520508, -0.003686905, -0.001663208, 0.0069770813, -0.009979248, -0.008232117, 0.010971069, 0.0072364807, -0.009010315, 0.04208374, -0.06274414, -0.07208252, -0.006275177, -0.03866577, -0.05996704, 0.09039307, -0.0158844, 0.0061454773, 0.023666382, -0.02734375, -0.010139465, -0.01902771, 0.029418945, 0.029708862, 0.047668457, -0.02810669, 0.028015137, -0.032287598, -0.035064697, -0.03704834, 0.038146973, -0.10821533, -0.030517578, -0.02217102, 0.010643005, 0.011184692, -0.012359619, -0.019485474, 0.08013916, 0.004989624, -0.00037431717, 0.017486572, -0.045837402, -0.0026512146, 0.0039253235, 0.0070343018, -0.008010864, -0.029907227, 0.013366699, 0.0014696121, 0.041381836, -0.024246216, 0.008666992, -0.07244873, 0.0061950684, -0.036987305, 0.021575928, 0.0103302, -0.0027122498, 0.060638428, 0.014266968, -0.03744507, 0.09246826, 0.004798889, 0.0018796921, 0.010169983, -0.06762695, 0.023727417, -0.0084991455, -0.0017709732, -0.001490593, -0.013664246, -0.02709961, 0.0008249283, -0.036010742, -0.008529663, -6.467104e-05, -0.0017051697, -0.02432251, 0.015357971, -0.007972717, -0.007320404, -0.01651001, 0.01247406, -0.009208679, -0.017700195, -0.014045715, -0.059051514, 0.026870728, 0.015350342, -0.024337769, -0.00059223175, 0.0036525726, -0.0076522827, -0.00655365, -0.015449524, 0.03036499, -0.037231445, -0.049682617, 0.049621582, 0.024673462, 0.024932861, -0.034576416, 0.03491211, 0.0057754517, -0.04031372, -0.026031494, 0.030654907, -0.053497314, -0.053009033, 0.030258179, 0.0082473755, 0.08654785, -0.027572632, -0.04248047, -0.030075073, 0.01890564, 0.017181396, -0.0084991455, 0.038879395, -0.009941101, 0.002193451, 0.057281494, -0.027114868, -0.009773254, -0.014404297, 0.052337646, 0.013694763, -0.0060043335]}, "B07HDWFMMG": {"id": "B07HDWFMMG", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack)\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Easy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\nConnects directly into a 1 pound propane tank container for a 5.5 hour runtime\nFeatures automatic shut off system for low oxygen\n", "metadata": {"Name": "Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack)", "Brand": "Mr. Heater", "Description": "Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.", "Features": "Easy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\nConnects directly into a 1 pound propane tank container for a 5.5 hour runtime\nFeatures automatic shut off system for low oxygen", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.07702637, 0.005584717, -0.022903442, -0.061401367, 0.031921387, -0.04537964, 0.027511597, -0.005420685, -0.010818481, 0.004814148, -0.0045547485, -0.013023376, 0.0090408325, -0.038391113, 0.022323608, -0.032562256, -0.0042915344, 0.00466156, -0.031051636, -0.04586792, 0.019714355, -0.041503906, -0.019958496, 0.101257324, -0.009986877, 0.039611816, 0.018096924, 0.0013465881, -0.003479004, -0.009643555, 0.011665344, -0.021743774, 0.035858154, -0.008720398, -0.012168884, 0.023132324, 0.022827148, -0.015411377, -0.024475098, 0.032318115, -0.0027942657, 0.031219482, -0.10510254, -0.015380859, -0.11779785, -0.03237915, -0.012367249, 0.069885254, 0.018493652, -0.03555298, -0.012077332, -0.0056152344, 0.0047073364, -0.030044556, -0.025924683, -0.013580322, 0.010322571, -0.017333984, 0.0018062592, -0.0028648376, 0.008117676, 0.03152466, 0.0074157715, 0.0066986084, -0.085632324, -0.0023460388, 0.04019165, -0.038879395, 0.0569458, -0.07165527, -0.01914978, 0.06262207, 0.048583984, 0.036468506, -0.084472656, -0.0335083, 0.036956787, 0.01638794, 0.044281006, -0.042510986, 0.017105103, -0.023208618, -0.008613586, -0.021774292, 0.055664062, 0.024459839, -0.001748085, -0.023284912, 0.005996704, -0.04006958, -0.012336731, -0.03375244, 0.00680542, 0.033325195, -0.045837402, -0.0043678284, -0.028152466, -0.05432129, 0.048706055, 0.013031006, 0.006839752, -0.026306152, -0.0051727295, 0.0027046204, -0.0026378632, 0.008178711, -0.018112183, -0.0690918, -0.010398865, 0.016113281, -0.032196045, -0.022888184, -0.012687683, -0.040527344, -0.0140686035, 0.0635376, 0.007980347, 0.00011372566, 0.018447876, 0.019973755, -0.023849487, -0.0065994263, -0.0049095154, -0.046691895, 0.0069618225, -0.04638672, -0.027191162, 0.03466797, -0.064941406, 0.05432129, -0.03378296, -0.035308838, 0.08502197, 0.11010742, 0.06329346, -0.02558899, 0.042633057, -0.009147644, 8.4519386e-05, -0.019683838, 0.00674057, 0.0008635521, -0.007858276, -0.036224365, -0.02458191, 0.0143585205, 0.012588501, 0.012504578, -0.008163452, -0.025665283, -0.01727295, 0.008842468, 0.024658203, 0.0079193115, 0.0021209717, 0.0009007454, 0.012886047, -0.018707275, -0.00919342, -0.017837524, -0.0062828064, -0.034423828, -0.037139893, 0.0047302246, -0.031829834, 0.050231934, 0.03967285, -0.0019607544, 0.026031494, 0.01651001, 0.015991211, 0.0005273819, 0.031677246, -0.012077332, 0.0010881424, -0.008041382, -0.047668457, 0.09466553, 0.064453125, -0.13598633, -0.06866455, -0.06512451, 0.14489746, -0.034362793, 0.009300232, -0.032196045, 0.043060303, 0.017044067, -0.02406311, 0.020431519, 0.015914917, 0.034118652, 0.04849243, -0.07562256, 0.0038146973, 0.008087158, 0.0021038055, 0.019760132, 0.0013437271, 0.013961792, 0.037719727, 0.019332886, -0.0011978149, -0.036010742, 0.02305603, -0.030303955, 0.029846191, 0.0028076172, -0.006542206, 0.02885437, 0.028747559, -0.016204834, -0.010574341, -0.026321411, -0.0075416565, -0.017196655, -0.029296875, 0.030593872, -0.002073288, -0.0033340454, 0.0052757263, -0.02557373, 0.026428223, -0.024490356, -0.009407043, -0.046051025, 0.0017757416, -0.014175415, -0.0043525696, -0.000110566616, 0.011657715, 0.013023376, 0.05581665, 0.054748535, -0.0149002075, 0.0158844, 0.041931152, 0.025100708, -0.0101623535, -0.00333786, -0.0046844482, 0.004573822, -0.0042877197, 0.043792725, -0.057922363, 0.006160736, 0.046661377, -0.010238647, -0.02947998, 0.018051147, 0.03189087, 0.035064697, 0.01838684, 0.06719971, -0.042816162, 0.031036377, -0.02406311, -0.027404785, -0.031951904, 0.027801514, -0.0023155212, 0.007572174, 0.006275177, -0.010261536, 0.02420044, 0.05206299, 0.0289917, 0.033935547, -0.04232788, 0.04534912, 0.012786865, -0.0077705383, -0.00390625, -0.014526367, 0.0496521, -0.015945435, 0.009315491, 0.0011453629, -0.019226074, -0.027359009, -0.022277832, -0.0335083, 0.011940002, -0.007896423, 0.03378296, 0.044067383, 0.022720337, -0.02709961, -0.041412354, -0.008728027, 0.03161621, -0.039123535, -0.05380249, 0.0006980896, 0.006679535, -0.037750244, 0.041992188, 0.005393982, 0.02357483, -0.016921997, -0.0068893433, 0.0418396, -0.016403198, 0.0146102905, 0.0070724487, 0.017913818, -0.015625, 0.0181427, 0.0060920715, 0.0138549805, -0.06982422, 0.005458832, 0.018615723, 0.026397705, -0.0022125244, -0.007194519, -0.010375977, 0.033233643, 6.681681e-05, 0.025268555, -0.026412964, 0.009353638, -0.052215576, 0.012001038, 0.0023612976, 0.022460938, -0.0057640076, -0.0027313232, -0.06512451, 0.024841309, 0.05319214, 0.037017822, 0.039886475, 0.06842041, 0.010040283, 0.016708374, -0.0037288666, 0.026977539, -0.043060303, -0.08105469, -0.031158447, -0.028884888, 0.01197052, 0.030700684, -0.037109375, 0.010124207, 0.044036865, 0.011123657, -0.036956787, 0.022125244, 0.0004553795, -0.027450562, 0.009536743, -0.037506104, 0.033355713, 0.0047302246, -0.037994385, -0.011428833, 0.034454346, -0.046875, -0.0067481995, 0.0023117065, -0.028961182, -0.061401367, 0.029174805, -0.02331543, -0.020904541, -0.025817871, -0.05380249, 0.021347046, -0.00592041, -0.0040359497, -0.004463196, -0.040252686, -0.05014038, 0.012481689, 0.021255493, -0.034454346, -0.0057640076, -0.0063476562, 0.023880005, 0.022277832, 0.002943039, 0.014808655, 0.015113831, 0.02798462, 0.021255493, 0.040527344, -0.021499634, -0.027526855, -0.031433105, 0.013381958, -0.007068634, -0.012649536, 0.0013885498, 0.0067825317, -0.02670288, -0.015823364, -0.012619019, -0.011833191, -0.032196045, 0.03186035, 0.021499634, -0.002796173, -0.023330688, 0.006122589, -0.022232056, -0.0146102905, -0.0057144165, 0.07104492, -0.02658081, -0.020309448, -0.015853882, -0.012016296, 0.019882202, -0.0065078735, -0.055541992, -0.0014238358, -0.008743286, 0.015380859, 0.014663696, -0.014541626, 0.011154175, 0.040039062, -0.03475952, -0.010116577, -0.032409668, 0.0211792, -0.016143799, 0.03479004, -0.0116119385, 0.0072669983, -0.009971619, -0.012756348, -0.02507019, 0.035858154, 0.0013399124, 0.009162903, 0.0075683594, -0.022018433, 0.0034370422, -0.008018494, -0.004463196, 0.045410156, -0.044677734, 0.03665161, -0.023284912, -0.0071487427, -0.03527832, -0.057159424, -0.0037174225, 0.039093018, 0.0463562, 0.022140503, 0.02746582, 0.020828247, 0.038604736, 0.020477295, 0.0040664673, -0.037994385, -0.05923462, -0.029205322, 0.017791748, -0.026916504, -0.00944519, -0.0725708, 0.07531738, -0.005958557, 0.009460449, -0.004337311, -0.04272461, 0.06149292, 0.06185913, 0.011238098, -0.0036697388, -0.00459671, 0.021881104, 0.023223877, -0.066345215, -0.03289795, -0.034820557, 0.010375977, -0.06323242, 0.044525146, 0.0070877075, 0.0051994324, 0.022415161, 0.013473511, -0.01058197, 0.03878784, 0.010276794, 0.03829956, -0.011253357, 0.07824707, -0.0038089752, -0.010421753, 0.004573822, -0.010437012, 0.0034923553, -0.0034103394, -0.05267334, -0.00011640787, -0.020553589, -0.032226562, -0.041107178, -0.0066337585, 0.013160706, -0.0025901794, 0.035888672, -0.0119018555, -0.01977539, -0.015449524, -0.0107421875, -0.003255844, -0.009429932, -0.042541504, 0.0051078796, -0.030395508, -0.014167786, 0.012184143, 0.013328552, -0.01751709, 0.024169922, 0.028167725, -0.0115356445, 0.01448822, -0.013542175, -0.00090646744, -0.024337769, -0.010314941, 0.036010742, -0.00049495697, -0.00048303604, -0.0008792877, 0.009239197, 0.048217773, -0.0054130554, -0.004470825, -0.00015437603, -0.026000977, 0.012428284, 0.070129395, 0.012283325, -0.013969421, 0.010421753, -0.0055351257, -0.0046424866, -0.030075073, 0.016021729, -0.040222168, -0.010154724, 0.01424408, -0.06951904, -0.04827881, -0.026046753, 0.02243042, -0.02859497, 0.015716553, 0.0011882782, 0.002916336, -0.018112183, 0.012573242, -0.0435791, 0.023971558, -0.039611816, 0.006706238, 0.030319214, 0.009117126, 0.013298035, -0.02645874, 0.006877899, 0.003063202, 0.08306885, -0.007583618, 0.027252197, -0.044311523, -0.0016336441, 0.023757935, 0.005027771, 0.018173218, -0.014511108, 0.013450623, -0.007270813, 0.03768921, -0.035339355, -0.014129639, 0.01184082, -0.012649536, -0.059265137, -0.06713867, 0.012641907, 0.027404785, 0.00920105, -0.026031494, -0.012496948, 0.01574707, -0.019256592, -0.060394287, -0.042236328, -0.0118637085, -0.051361084, 0.014755249, 0.0010843277, -0.0048217773, 0.05368042, 0.093688965, 0.013450623, 0.012207031, -0.023605347, -0.039154053, 0.019866943, 0.021484375, -0.01763916, 0.013870239, -0.025680542, 0.011405945, -0.028274536, 0.038024902, 0.07409668, -0.02355957, 0.02848816, 0.019424438, -0.011642456, 0.012992859, -0.0023517609, 0.015640259, -0.022003174, 0.015106201, -0.020996094, -0.023254395, -0.01020813, -0.034820557, -0.041534424, -0.09326172, -0.025009155, 0.07751465, -0.0059890747, -0.029525757, -0.020828247, -0.035217285, -0.006591797, 0.015808105, -0.040527344, 0.0050621033, 0.011367798, -0.0076408386, -0.011268616, -0.017089844, 0.009849548, 0.010093689, 0.053131104, 0.008262634, -0.03955078, -0.023284912, 0.020843506, -0.008613586, -0.000910759, 0.019012451, -0.016067505, -0.025390625, -0.053375244, -0.027511597, 0.0036716461, -0.03643799, -0.049743652, 0.005077362, 0.06072998, 0.018188477, 0.023254395, -0.05947876, 0.011680603, -0.017211914, 0.017715454, 0.010383606, 0.012245178, -0.049621582, 0.013946533, -0.01524353, -0.04373169, -0.02494812, 0.027679443, -0.0126953125, -0.06506348, 0.041168213, -0.02154541, 0.02482605, -0.038146973, 0.00026226044, 0.0113220215, 0.043518066, -0.017791748, 0.0025138855, 0.021270752, -0.015541077, -0.033843994, 0.014671326, -0.022628784, 0.038970947, -0.032287598, 0.016235352, 0.012649536, 0.024169922, 0.021392822, 0.027236938, 0.024963379, 0.0057678223, -0.03111267, -0.021469116, 0.018814087, 0.007835388, -0.008720398, 0.027130127, -0.01260376, -0.00022363663, -0.016342163, -0.01927185, -0.010353088, 0.021453857, -0.007106781, 0.025054932, -0.036956787, -0.059326172, 0.026184082, 0.016708374, 0.023361206, 0.016662598, -0.026992798, -0.031982422, -0.007843018, -0.004322052, -0.010719299, 0.039215088, 0.07659912, -0.04309082, -0.04324341, -0.043823242, 0.032348633, -0.026443481, -0.026138306, 0.07562256, 0.035247803, 0.017990112, 0.019973755, -0.0072364807, -0.030792236, 0.0062828064, -0.007598877, 0.0015287399, 0.030151367, -0.028274536, 0.027542114, 0.038330078, 0.0020942688, -0.002840042, 0.025009155, -0.00944519, 0.022781372, -0.0090789795, -0.0030517578, -0.023239136, -0.036956787, 0.015083313, -0.017669678, -0.030166626, -0.036193848, -0.05154419, -0.039611816, -0.0023174286, -0.011833191, 0.037200928, 0.036102295, 0.014572144, -0.0054855347, 0.004886627, -0.06048584, 0.04269409, 0.043304443, -0.07043457, -0.030670166, -0.020568848, 0.028137207, -0.04663086, 0.011672974, 0.02029419, -0.024047852, 0.017822266, 0.057434082, 0.0063972473, -0.011558533, 0.007583618, 0.06842041, 0.013534546, 0.015304565, 0.0034999847, 0.07147217, 0.02734375, -0.07122803, -0.004333496, -0.012771606, -0.03463745, 0.009216309, -0.01737976, -0.01876831, -0.0055389404, -0.022735596, 0.001742363, -0.0005493164, 0.028747559, -0.003255844, 0.0005311966, 0.008842468, -0.022766113, 0.007904053, -0.021774292, -0.0069236755, -0.010536194, 0.027038574, 0.031311035, -0.00434494, -0.0690918, -0.00881958, 0.02708435, -0.0035858154, 0.011161804, 0.021026611, 0.014533997, 0.024658203, -0.04260254, -0.0026779175, -0.05203247, 0.021957397, -0.020111084, -0.032836914, -0.004486084, -0.008323669, 0.0206604, -0.01007843, 0.026565552, -0.0026168823, 0.026535034, 0.0022602081, -0.03805542, 0.008880615, -0.016235352, -0.025787354, -0.028640747, -0.010910034, 0.008171082, -0.07067871, 0.014915466, 0.012001038, 0.029144287, 0.0071868896, -0.015159607, 0.044677734, 0.041015625, -0.014053345, -0.032989502, -0.05090332, 0.0071487427, -0.0010061264, -0.0010108948, 0.022888184, 0.018936157, 0.0050621033, 0.030548096, -0.011924744, 0.0033950806, -0.012710571, 0.022109985, 0.022766113, 0.003118515, -0.06304932, -0.056610107, -0.031707764, -0.018081665, -0.014816284, 0.013618469, 0.0018987656, -0.048736572, 0.036376953, 0.041656494, 0.08343506, 0.00806427, 0.024856567, 0.00774765, 0.013191223, 0.011398315, 0.01146698, -0.01852417, 0.0011310577, 0.0019664764, 0.018005371, 0.013092041, -0.016036987, -0.058044434, -0.0058135986, -0.0015230179, -0.02130127, 0.020050049, -0.047912598, 0.008239746, 0.04537964, -0.024887085, 0.0002770424, 0.007698059, 0.029251099, -0.051849365, -0.013023376, -0.032043457, -0.0068473816, -0.025421143, -0.024032593, 0.004535675, 0.0042495728, 0.014022827, -0.03086853, -0.012496948, -0.00390625, -0.0134887695, 0.012771606, 0.02229309, 0.0054473877, -0.06329346, -0.023376465, 0.017562866, -0.00059986115, -0.022140503, 0.016021729, -0.011779785, 0.0026798248, 0.010772705, 0.061309814, -0.008155823, 0.05657959, 0.00088214874, 0.005558014, -0.04675293, -0.012336731, 0.045562744, 0.014953613, -0.06500244, -0.05392456, 0.020095825, 0.0024108887, 0.053588867, 0.013870239, 0.037353516, -0.036895752, -0.017700195, -0.055847168, -0.019302368, 0.02279663, -0.02619934, 0.059783936, 0.040374756, -0.0071487427, 0.015258789, 0.033935547, -0.066711426, 0.019088745, 0.009086609, 0.023651123, -0.005897522, -0.007129669, -0.018478394, -0.00026798248, 0.005886078, 0.044708252, -0.038208008, 0.013648987, 0.025970459, -0.04324341, 0.05419922, 0.04095459, -0.002149582, 0.027816772, -0.017242432, -0.008018494, -8.08835e-05, -0.028839111, 0.004825592, -0.02168274, 0.023147583, 0.031799316, 0.03125, -0.030426025, -0.008476257, -0.01399231, -0.010612488, 0.016433716, -0.007835388, -0.040802002, -0.05255127, 0.03994751, 0.030395508, 0.008079529, -0.013130188, 0.021392822, 0.010009766, -0.042816162, -0.004840851, 0.029205322, -0.02848816, -0.018081665, 0.0018310547, 0.031051636, 0.0019073486, -0.03265381, -0.099243164, -0.0546875, 0.032073975, 0.015823364, 0.010887146, 0.08270264, -0.013328552, 0.025863647, 0.037841797, -0.0051879883, 0.013404846, -0.011459351, 0.041656494, -0.0068969727, -0.010032654]}, "B00HJ6OPAO": {"id": "B00HJ6OPAO", "original": "Brand: Camco\nName: Camco 40547 Thumbscrew & Nut for 40543 Tank Cover\nDescription: \nFeatures: Replacement hardware for Camco propane tank lid assembly\nIncludes two nuts and bolts\nGenuine replacement parts\nSave time and money by replacing just the lid assembly hardware\nDurable and easy to use\n", "metadata": {"Name": "Camco 40547 Thumbscrew & Nut for 40543 Tank Cover", "Brand": "Camco", "Description": "", "Features": "Replacement hardware for Camco propane tank lid assembly\nIncludes two nuts and bolts\nGenuine replacement parts\nSave time and money by replacing just the lid assembly hardware\nDurable and easy to use", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.052124023, -0.043060303, -0.025558472, -0.0362854, -0.05609131, 0.034973145, -0.06628418, 0.053009033, 0.030014038, -0.015960693, 0.020065308, -0.01828003, -0.03564453, -0.038330078, -0.028366089, -0.016418457, 0.018798828, 0.027267456, 0.01928711, -0.020004272, -0.0015182495, -0.009765625, 0.011878967, 0.004135132, 0.013870239, -0.017471313, -0.0077209473, 0.02557373, 0.008651733, 0.008888245, 0.021987915, -0.013031006, 0.034942627, -0.0012207031, 0.0010967255, 0.06561279, 0.078063965, -0.02545166, -0.0051879883, 0.040130615, -0.007045746, 0.019165039, 0.03326416, 0.021347046, -0.01637268, -0.040100098, 0.0046920776, -0.03314209, 0.026229858, -0.021850586, -0.004196167, 0.028137207, -0.0011930466, -0.024169922, -0.020935059, 0.015396118, 0.004142761, 0.0031719208, 0.018371582, 0.025131226, 0.0034484863, 0.036071777, -0.004501343, -0.026641846, -0.015823364, 0.02708435, 0.077819824, -0.00774765, -0.006160736, -0.043884277, -0.021087646, 0.02267456, 0.0043144226, -0.035003662, -0.036987305, -0.010894775, 0.0025672913, -0.05822754, 0.01789856, -0.00051259995, -0.010719299, -0.00655365, 0.022537231, -0.000893116, -0.020645142, 0.013175964, -0.029830933, -0.012298584, -0.0062942505, 0.013038635, -0.008399963, -0.0134887695, -0.015258789, 0.064086914, 0.016830444, 0.009246826, -0.018859863, -0.0035076141, 0.018463135, 0.010978699, -0.033355713, -0.005302429, -0.024902344, -0.019866943, 0.024169922, 0.023849487, -0.022354126, -0.06512451, 0.015731812, 0.007610321, -0.036956787, 0.032989502, -0.03768921, -0.027954102, -0.0024719238, 0.03778076, -0.04550171, 0.033691406, -0.014732361, 0.02758789, -0.008544922, -0.004699707, -0.025466919, -0.02468872, 0.04208374, 0.0041885376, -0.03475952, 0.054901123, -0.024047852, 0.020874023, -0.023925781, 0.006149292, 0.061523438, 0.06011963, 0.03189087, -0.0049209595, 0.008377075, -0.036468506, -0.0015039444, 0.0055236816, 0.018173218, -0.027130127, 0.014465332, 0.0058517456, -0.0069351196, 0.02709961, 0.015235901, -0.012130737, -0.014915466, -0.0018892288, -0.056274414, -0.00075387955, 0.024047852, 0.027679443, 0.0025749207, 0.0065078735, 0.06628418, -0.027267456, -0.037017822, -0.07336426, -9.602308e-05, -0.054626465, -0.049346924, 0.059539795, 0.014762878, 0.09118652, 0.037078857, 0.0031166077, 0.010215759, 0.03515625, -0.007259369, -0.0209198, -0.059295654, -0.0077667236, -0.0071792603, -0.017089844, -0.027786255, 0.03552246, 0.0725708, -0.057861328, -0.047088623, -0.03817749, 0.1182251, -0.021102905, -0.029663086, -0.0066184998, 0.026504517, 0.037384033, -0.0077209473, -0.00749588, 0.05343628, 0.03125, -0.010101318, -0.0018424988, -0.0031852722, -0.0093688965, 0.008140564, 0.024139404, -0.009803772, -0.020828247, -0.020263672, 0.012428284, -0.01675415, 0.053588867, -0.003112793, -0.021514893, 0.0078048706, -0.015525818, -0.031829834, 0.013916016, 0.0014438629, -0.005142212, 0.005580902, -0.035095215, -0.00037193298, 0.011474609, -0.014762878, -0.013908386, -0.019134521, -0.0048942566, -0.0058670044, -0.008964539, -0.0049552917, 0.034576416, -0.031829834, 0.017501831, -0.038024902, 0.021972656, -0.050354004, 0.0096206665, 0.032806396, 0.011749268, 0.0020256042, 0.039764404, -0.011138916, 0.0070991516, 0.024047852, -0.011650085, 0.008415222, 0.012535095, 0.022445679, 0.01108551, -0.0062179565, 0.026062012, -0.010910034, -0.028839111, 0.017166138, -0.012702942, -0.03768921, 0.011749268, 0.09039307, -0.026885986, -0.0012168884, -0.022949219, -0.06097412, 0.021530151, -0.0501709, 0.026062012, -0.027755737, 0.01689148, -0.03277588, 0.008903503, 0.08404541, -0.037628174, 0.07550049, -0.014671326, 0.06359863, 0.037261963, -0.013000488, -0.022781372, 0.0057868958, 0.033721924, 0.0033473969, 0.04559326, 0.018692017, -0.021743774, -0.02696228, -0.026824951, 0.00060367584, 0.015083313, 0.023635864, -0.008354187, 0.038848877, -0.006248474, 0.0463562, -0.0021247864, 0.034942627, 0.023880005, -0.07086182, 0.039093018, 0.046081543, 0.030075073, 0.028625488, -0.04458618, 0.0060424805, 0.03262329, 0.0055503845, -0.01259613, 0.017501831, 0.013671875, -0.028015137, 0.0574646, 0.036193848, -0.014816284, 0.008163452, 0.0049552917, -0.020965576, 0.029708862, 0.03201294, -0.0033550262, -0.012420654, 0.03503418, 0.012687683, 0.062438965, 0.0028057098, -0.0060310364, 0.040283203, 0.04788208, 0.068725586, 0.02848816, -0.010902405, 0.068481445, -0.02268982, 0.019866943, 0.04977417, 0.004875183, -0.0019569397, 0.0016698837, -0.06384277, -0.030975342, 0.007724762, -0.0748291, -0.0031356812, 0.010803223, 0.0023002625, 0.0037155151, -0.0066375732, 0.019439697, -0.008049011, -0.03967285, 0.01210022, -0.014587402, 0.006965637, 0.023925781, -0.016052246, -0.026779175, 0.018066406, 0.00198555, 0.015930176, 0.02029419, -0.015365601, 0.0070343018, 0.0043792725, -0.0011415482, 0.035827637, -0.014053345, -0.04159546, 0.039642334, 0.05783081, -0.029586792, -0.02810669, -0.029327393, -0.04888916, 0.019638062, 0.024459839, 0.020996094, -0.03262329, 0.023284912, -0.0019683838, 0.0074920654, -0.027160645, 0.010169983, -0.072265625, -0.014137268, -0.0006222725, 0.029876709, 0.009880066, -0.042144775, 0.01878357, 0.0028305054, 0.020736694, 0.025527954, 0.004966736, 0.030532837, 0.015777588, 0.020446777, 0.03540039, 0.070129395, -0.0073623657, -0.038085938, -0.0036621094, 0.058410645, 0.011978149, -0.019927979, -0.03527832, -0.028518677, 0.02810669, 0.016693115, 0.0010709763, -0.008163452, -0.080200195, -0.0042381287, 0.0037498474, -0.037872314, 0.009246826, -0.024734497, -0.050079346, -0.041503906, 0.010520935, 0.017486572, -0.024520874, 0.020736694, -0.043395996, 0.025115967, -0.025268555, -0.0016851425, -0.014427185, -0.008010864, -0.05026245, 0.029556274, 0.073791504, -0.07165527, 0.0053253174, 0.020614624, -0.03869629, 0.031707764, 0.008796692, 0.043884277, 0.0063591003, -0.0079193115, 0.008972168, -0.023040771, -0.02128601, -0.037139893, -0.031585693, 0.007610321, -0.009239197, 0.010574341, -0.008338928, -0.008522034, -0.049713135, -0.012779236, 0.036071777, 0.042297363, 0.00932312, 0.0034770966, -0.026412964, -0.042877197, -0.0061531067, -0.004055023, 0.0012302399, -0.00409317, 0.0126571655, 0.024475098, -0.014427185, 0.08166504, 0.019180298, 0.021987915, 0.013801575, -0.014259338, -0.025161743, -0.017318726, -0.012840271, -0.01890564, 0.02368164, -0.046203613, 0.02798462, 0.016113281, 0.02619934, -0.016983032, 0.011077881, 0.013717651, 0.0079956055, 0.0037136078, -0.0004029274, 0.011909485, 0.003818512, -0.0042152405, 0.007926941, 0.010620117, -0.077819824, 0.020248413, -0.026672363, 0.060394287, 0.01802063, -0.008140564, 0.08831787, 0.048919678, 0.000623703, 0.03274536, 0.00730896, -0.0021705627, 0.0052833557, 0.03515625, -0.019577026, 0.019958496, 0.012214661, 0.0010204315, -0.016418457, -0.025802612, -0.047576904, 0.0035591125, 0.006225586, -0.0027198792, -0.019546509, 0.036102295, 0.03704834, -0.03778076, -0.0020866394, -0.016464233, -0.0146102905, -0.051513672, -0.019256592, 0.021942139, -0.03970337, 0.016693115, -0.055236816, -0.0068626404, -0.044708252, 0.0032405853, -0.03466797, -0.027160645, -0.0093307495, 0.018371582, 0.019973755, 0.018966675, -0.028671265, 0.06323242, -0.04473877, -0.029327393, 0.021392822, 0.021774292, 0.019714355, 0.007255554, 0.011199951, 0.042816162, 0.020462036, 0.01927185, -0.017318726, -0.08013916, 0.04119873, 0.046173096, -0.030471802, -0.08758545, -0.011520386, -0.030578613, -0.010368347, 0.020339966, 0.0032863617, -0.018844604, 0.006427765, 0.01876831, 0.0025043488, -0.029266357, -0.03692627, 0.026321411, 0.0013799667, -0.0049591064, -0.0005917549, 0.010688782, 0.009086609, 0.046081543, -0.05807495, -0.020462036, -0.06347656, 0.006095886, 0.00065374374, -0.0077705383, -0.00085258484, 0.0063934326, -0.0047569275, -0.0013570786, 0.040252686, -0.014595032, -0.016357422, -0.032165527, 0.0008420944, 0.02154541, 0.02861023, 0.061065674, 0.0019130707, 0.031097412, -0.03945923, 0.04916382, -0.015449524, -0.042053223, 0.023162842, -0.033935547, -0.033966064, -0.05218506, 0.012413025, -0.008636475, -0.018875122, -0.025390625, 0.033569336, 0.031188965, 0.018188477, -0.048706055, -0.035980225, 0.009132385, -0.064086914, -0.0073432922, -0.0050849915, -0.026504517, 0.070007324, 0.017074585, -0.047912598, -0.015258789, -0.023208618, 0.003929138, -0.032043457, 0.008636475, 0.018127441, -0.023605347, 0.007785797, 0.022994995, -0.091796875, 0.09539795, 0.060577393, 0.012969971, 0.021499634, -0.023468018, -0.006160736, -0.03881836, -0.077819824, 0.024658203, 0.04623413, 0.028549194, -0.039855957, 0.008369446, 0.027511597, -0.01727295, -0.06585693, 0.00076436996, -0.05496216, 0.05178833, -0.046142578, -0.070495605, -0.033447266, -0.035369873, 0.011276245, -0.03274536, -0.0446167, 0.01272583, -0.015541077, -0.022537231, -0.012039185, 0.002872467, -0.0435791, 0.0013360977, -0.035583496, 0.027420044, -0.0035648346, 0.057556152, 0.0023536682, 0.06262207, -0.02519226, 0.015701294, 0.014099121, 0.0061454773, -0.023147583, 0.049346924, -0.0013370514, 0.025680542, 0.044158936, 0.017089844, -0.042907715, -0.0053901672, -0.025344849, 0.057525635, -0.053894043, -0.015060425, 0.020065308, 0.03692627, 0.022521973, -0.03540039, 0.040039062, -0.0052490234, -0.02381897, -0.037200928, 0.018081665, 0.012832642, -0.0057296753, 0.007965088, -0.017211914, 0.038757324, -0.044830322, -0.011528015, -0.0044517517, -0.010101318, -0.04067993, 0.0030975342, -0.02558899, -0.028625488, 0.0022697449, -0.027191162, -0.032836914, 0.024169922, -0.012145996, -0.0030212402, 0.0034008026, 0.002658844, 0.00025749207, -0.019943237, -0.0078086853, 0.01776123, -0.013015747, -0.01576233, 0.052520752, 0.028457642, 0.017089844, -0.06402588, -0.023544312, 0.0049934387, -0.050628662, -0.025268555, -0.038269043, 0.0065612793, -0.0036792755, 0.056518555, -0.08276367, -0.04272461, 0.0009975433, -0.020553589, -0.001531601, 0.018051147, -0.0725708, -0.068603516, -0.0009741783, 0.0012378693, 0.004486084, 0.03302002, 0.020996094, -0.022918701, -0.021316528, -0.033355713, 0.0022201538, -0.025970459, -0.08795166, 0.056762695, 0.030700684, 0.00097608566, -0.008171082, -0.026046753, -0.026824951, 0.019683838, -0.0077400208, -0.06378174, 0.001004219, -0.0064430237, -0.0005598068, 0.002105713, -0.003955841, -0.011268616, 0.047210693, 0.006072998, -0.0013723373, -0.033233643, -0.01965332, -0.0018463135, -0.051452637, 0.0033473969, -0.041900635, 0.033203125, -0.0023155212, 0.008628845, -0.06689453, -0.07116699, 0.008079529, 0.012664795, 0.019119263, -0.018035889, 0.00995636, 0.008407593, -0.0045928955, 0.033966064, -0.004386902, -0.0065078735, 0.033416748, 0.026916504, -0.011169434, 0.03390503, -0.02949524, -0.0076789856, -0.024368286, 0.032928467, 0.040893555, 0.009712219, -0.04269409, -0.009147644, 0.013092041, 0.03768921, -0.010314941, -0.025268555, -0.033477783, -0.023483276, -0.011993408, -0.009178162, -0.00920105, -0.024398804, 0.041900635, -0.05783081, 0.027114868, -0.0013608932, -0.019332886, 0.007041931, -0.02911377, 0.052093506, -0.0058403015, 0.048095703, -0.0066871643, -0.0055007935, 0.00066661835, -0.034362793, 0.026031494, 0.015151978, 0.033325195, -0.0020828247, -0.0020523071, -0.0043945312, -0.0056915283, 0.018630981, -0.010871887, 0.04360962, 0.016326904, 0.039855957, -2.771616e-05, -0.07299805, 0.025497437, 0.020629883, 0.024734497, 0.034820557, 0.022247314, 0.030303955, 0.03286743, -0.014770508, 0.021148682, -0.069885254, 0.049072266, 0.02079773, -0.0069236755, -0.033477783, -0.00013840199, -0.031097412, 0.028198242, -0.028442383, -0.044433594, -0.012413025, -0.041503906, 0.06536865, 0.015777588, 0.0128479, 0.06008911, -0.025726318, -0.0036029816, -0.008865356, -0.018173218, -0.022964478, -0.004337311, 0.044769287, 0.0010671616, -0.0023021698, 0.021896362, 0.03616333, -0.013587952, 0.010437012, -0.024749756, 0.04083252, -0.01965332, 0.07678223, 0.030136108, -0.03677368, 0.019470215, -0.014305115, -0.017944336, 0.010574341, 0.019195557, -0.008636475, -0.01626587, 0.04168701, -0.010887146, 0.020507812, 0.06149292, -0.0028362274, 0.036376953, -0.036254883, 0.014930725, 0.007949829, -0.015777588, -0.009216309, -0.0077056885, -0.027191162, -0.0046424866, -0.011894226, -0.051757812, -0.013404846, 0.010902405, -0.0034236908, -0.0003247261, 0.015312195, 0.0039482117, 0.005241394, -0.024978638, 0.00970459, -0.048187256, -0.016021729, -0.034332275, 0.014450073, -0.009162903, -0.0546875, 0.008911133, -0.001991272, 0.0029850006, 0.013946533, -0.007911682, -0.033996582, 0.013549805, 0.013717651, 0.050109863, 0.011024475, -0.013435364, 0.00025367737, -0.0043296814, -0.026367188, -0.01928711, 0.022628784, -0.046966553, -0.031280518, -0.0059928894, -0.043395996, -0.058135986, -0.034606934, 0.037017822, 0.03491211, 0.04006958, -0.015304565, 0.030227661, -0.07519531, -0.026000977, 0.04916382, 0.014442444, 0.0022583008, -0.056365967, 0.024505615, 0.020263672, -0.006504059, 0.034484863, 0.008880615, -0.05935669, 0.011161804, -0.015655518, 0.0031166077, 0.0491333, -0.0390625, 0.048034668, 0.054260254, -0.034454346, -0.0713501, -0.02041626, -0.06890869, 0.024276733, -0.011276245, 0.066833496, 0.014259338, -0.054901123, -0.06756592, -0.02848816, -0.003458023, 0.032958984, -0.025863647, 0.015609741, 0.0038967133, -0.031799316, 0.0018224716, -0.00774765, 0.0068855286, -0.00034046173, 0.004169464, 0.0041503906, -0.0060806274, -0.01965332, -0.022003174, -0.04788208, -0.012275696, 0.018661499, 0.053649902, -0.05001831, -0.04360962, -0.0057640076, -0.0036468506, -0.024673462, -0.05871582, -0.021759033, -0.0546875, 0.021057129, 0.019546509, -0.00623703, -0.0008845329, 0.034454346, -0.0127334595, -0.026443481, 0.041137695, 0.012130737, 0.043518066, -0.010299683, 0.029190063, 0.023834229, 0.05657959, -0.002506256, -0.080200195, -0.03918457, 0.025726318, 0.016571045, -0.0056610107, 0.029815674, -0.009727478, 0.009178162, 0.012672424, -0.034362793, -0.010543823, -0.0013237, 0.10021973, -0.01826477, 0.006137848]}, "B07QRGWTMH": {"id": "B07QRGWTMH", "original": "Brand: LBLA\nName: LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers\nDescription: This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
      but also can promote kids hand-eye coordination, creative expression and imaginative skills.

      INTRODUCTION
      1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
      2.Turn on the switch of BBQ grill.
      3. Use the sauce bottle to absorb water and add water to the water injection area.
      4.Press the buttons, the BBQ grill will light up and emit smoke.

      Notice: BBQ Grill requires 3*1.5 V \u201dAA\u201d Batteries (Not Included)
      \u00a0 Not for children under 3 years.

      PRODUCT SIZE:\u00a047.2*34.5*24.5 CM
      PACKAGE WEIGHT:\u00a00.708 KG
      PACKAGE SIZE:\u00a024*24.5*12 CM
      \nFeatures: \u301019 Pieces Food Playset\u3011Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1\n\u3010Emulational Design\u3011Inject water into the grill, the bottom will feature as an electric \u201cburner\u201d, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls\n\u3010Safe for Kids\u3011Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt\n\u3010Convenient to Use\u3011This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n\u3010Need Batteries\u3011The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations\n", "metadata": {"Name": "LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers", "Brand": "LBLA", "Description": "This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
      but also can promote kids hand-eye coordination, creative expression and imaginative skills.

      INTRODUCTION
      1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
      2.Turn on the switch of BBQ grill.
      3. Use the sauce bottle to absorb water and add water to the water injection area.
      4.Press the buttons, the BBQ grill will light up and emit smoke.

      Notice: BBQ Grill requires 3*1.5 V \u201dAA\u201d Batteries (Not Included)
      \u00a0 Not for children under 3 years.

      PRODUCT SIZE:\u00a047.2*34.5*24.5 CM
      PACKAGE WEIGHT:\u00a00.708 KG
      PACKAGE SIZE:\u00a024*24.5*12 CM
      ", "Features": "\u301019 Pieces Food Playset\u3011Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1\n\u3010Emulational Design\u3011Inject water into the grill, the bottom will feature as an electric \u201cburner\u201d, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls\n\u3010Safe for Kids\u3011Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt\n\u3010Convenient to Use\u3011This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n\u3010Need Batteries\u3011The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0035190582, 0.0042648315, -0.040283203, -0.016906738, 0.0022029877, -0.009757996, 0.0078125, 0.0028591156, -0.080322266, -0.00390625, 0.015625, 0.0069236755, -0.023513794, -0.04144287, 0.061401367, -0.047302246, -0.0006046295, 0.009941101, -0.009262085, -0.029754639, -0.0059661865, -0.035827637, 0.0071525574, 0.035614014, 0.07885742, -0.034851074, -0.009223938, 0.011192322, 0.06137085, 0.028182983, 0.03074646, -0.06817627, 0.032714844, 0.025543213, -0.068115234, -0.064941406, -0.03918457, 0.0039520264, -0.02558899, -0.001373291, 0.026947021, -0.0058784485, -0.030776978, 0.0034179688, -0.034942627, -0.031143188, 0.00011372566, -0.01638794, -0.003643036, 0.032165527, 0.034973145, 0.037719727, 0.032958984, -0.0049591064, 0.015464783, 0.026992798, 0.002500534, 0.018997192, 0.01727295, 0.019363403, -0.024246216, 0.022644043, 0.018493652, -0.01725769, 0.015274048, -0.032470703, 0.021377563, 0.025878906, -0.043151855, -0.0002808571, 0.063964844, -0.008232117, 0.008804321, -0.02923584, -0.019851685, 0.018569946, -0.025360107, -0.007881165, 0.02330017, -0.007411957, -0.006996155, -0.0074768066, 0.02281189, -0.044158936, 0.023651123, -0.02229309, -0.007144928, -0.011123657, 0.015823364, -0.016036987, -0.007247925, 0.00025486946, -0.017196655, 0.052703857, -0.019851685, 0.00026774406, -0.012268066, 0.011764526, 0.0059394836, -0.016906738, 0.030303955, -0.03793335, -0.020874023, -0.003490448, 0.0012903214, 0.058044434, -0.0055274963, 0.0065994263, 0.0088272095, 0.011306763, -0.012008667, -0.02243042, 0.011657715, -0.04788208, -0.00032925606, 0.030303955, 0.0039634705, 0.025344849, 0.031143188, 0.0043525696, -0.06173706, -0.03866577, 0.0132369995, 0.030914307, 0.056152344, 0.05319214, 0.0052337646, 0.020614624, -0.082092285, 0.016159058, 0.0022792816, 0.011192322, 0.060302734, 0.07287598, 0.010017395, -0.014793396, 0.035705566, -0.028900146, 0.0041656494, 0.005004883, -0.010124207, 0.033599854, 0.05758667, -0.029434204, -0.009109497, 0.0011167526, 0.024307251, 0.025482178, -0.003107071, -0.060150146, 0.024963379, 0.009277344, 0.020645142, -0.012496948, -0.042907715, 0.016677856, -0.0574646, 0.011398315, -0.009407043, 0.01940918, -0.024307251, -0.004142761, 0.02218628, 0.02494812, 0.00095796585, 0.025634766, 0.023132324, 0.00082969666, 0.0057411194, 0.050567627, -0.0132751465, 0.013694763, -0.04168701, -0.031051636, -0.014129639, -0.016433716, -0.009757996, 0.049102783, 0.07434082, -0.09350586, -0.068603516, -0.041229248, 0.1239624, -0.04336548, 0.039886475, -0.07519531, -0.012512207, -0.049224854, 0.025772095, 0.02973938, -0.050628662, -0.019958496, -0.02027893, -0.015052795, 0.008842468, 0.020614624, 0.0008864403, 0.017028809, 0.006450653, -0.03781128, -0.048919678, -0.007671356, 0.0020141602, 0.011192322, -0.023330688, -0.0005106926, -0.005001068, 0.032409668, 0.018615723, 0.05343628, 0.008262634, 0.013320923, -0.03869629, 0.04034424, -0.0129852295, -0.040283203, -0.057861328, 0.03845215, -0.0022258759, 0.013000488, 0.03326416, -0.05215454, 0.03277588, 0.0003464222, 0.019821167, -0.018432617, -0.012268066, -0.019866943, 0.019332886, 0.016418457, -0.042541504, 0.020706177, 0.031402588, 0.05105591, -0.015205383, 0.027618408, 0.06210327, 0.04272461, 0.00032162666, -0.0070266724, 0.010765076, 0.024017334, -0.016235352, 0.006793976, 0.019546509, -0.047912598, 0.005329132, 0.0031661987, 0.015792847, 0.04071045, 0.013717651, 0.018249512, 0.016662598, 0.01902771, 0.018356323, 0.02508545, -0.062683105, -0.030593872, 0.018066406, -0.039642334, 0.029281616, -0.04522705, -0.00881958, -0.03149414, 0.027832031, -0.040008545, 0.019210815, 0.000910759, 0.020202637, -0.017044067, -0.013122559, -0.06311035, -0.000467062, 0.009300232, -0.04147339, 0.01876831, -0.023010254, 0.02142334, 0.009239197, -0.012626648, -0.0012769699, 0.012611389, 0.009468079, -0.0047798157, 0.031051636, -0.014251709, 0.017044067, 0.0034561157, -0.010002136, -0.027297974, 0.017120361, 0.006500244, -0.018478394, 0.00033164024, -0.024765015, -0.027023315, 0.024505615, 0.03173828, -0.007183075, -0.0070648193, 0.022155762, 0.04220581, -0.025238037, 0.012931824, 0.006290436, -0.0154800415, -0.042785645, 0.036224365, 0.035888672, -0.04006958, 0.039093018, 0.10028076, 0.044921875, 0.026275635, 0.07141113, 0.023544312, 0.027236938, 0.08001709, 0.05621338, 0.018707275, -0.02545166, 0.007133484, -0.04083252, -0.025939941, 0.006095886, 0.017196655, -0.045074463, -0.0028324127, -0.008110046, 0.01725769, 0.047821045, 0.028366089, 0.044555664, -0.013191223, -0.0008201599, -0.04434204, 0.0005431175, -0.0010433197, -0.0047035217, -0.034454346, -0.005832672, -0.017807007, 0.011528015, -0.007865906, -0.062805176, 0.04345703, 0.023086548, 0.025741577, -0.045074463, -0.0010852814, 0.007068634, -0.03164673, 0.0115737915, 0.0129776, 0.020477295, -0.030441284, -0.027282715, 0.01979065, -0.013534546, -0.031555176, -0.04788208, 0.005458832, -0.060028076, 0.032989502, 0.056121826, -0.030944824, -0.0025367737, 0.021911621, 0.013633728, 0.029907227, 0.01423645, 0.03314209, 0.0046691895, -0.046447754, -0.035247803, -0.039215088, 0.04449463, -0.020202637, -0.023880005, 0.02645874, -0.010650635, 0.027633667, -0.021820068, 0.052459717, 0.04888916, 0.0059814453, 0.015838623, 0.052978516, 0.001209259, -0.0056991577, -0.021713257, 0.02456665, -0.007255554, -0.0051727295, 0.012588501, -0.0009813309, -0.028808594, -0.0056762695, -0.06549072, -0.011856079, -0.034942627, 0.010971069, -0.023803711, 0.010749817, -0.018463135, -0.048828125, -0.010002136, -0.062561035, 0.011489868, 0.03036499, 0.0047836304, -0.011993408, 0.0038223267, -0.004558563, -0.015670776, -0.009140015, 0.04324341, -0.0020580292, -0.021484375, -0.026489258, 0.07849121, -0.083496094, 0.03817749, 0.003376007, -0.0038337708, 0.027679443, 0.00655365, -0.008323669, 0.009757996, 0.014457703, 0.0038070679, -0.02218628, -0.006465912, -0.032165527, -0.033813477, -0.027069092, -0.0262146, -0.019943237, -0.0066566467, -0.021011353, -0.008995056, -0.003709793, -0.03201294, 0.016036987, 0.0006132126, -0.042297363, -0.017318726, -0.027893066, -0.06506348, -0.03125, -0.033599854, 0.03768921, -0.029449463, 0.027282715, 0.017333984, 0.080566406, -0.0053215027, 0.043792725, 0.035339355, -0.030807495, -0.027938843, -0.04510498, 0.031051636, 0.017425537, 0.008049011, -0.015472412, 0.09472656, 0.008460999, 0.019134521, 0.0019798279, 0.016159058, -0.056396484, -0.0043144226, 0.018157959, -0.020614624, 0.024551392, 0.019546509, 0.011856079, -0.010635376, -0.026275635, -0.013839722, -0.010246277, -0.051727295, 0.07635498, 0.038116455, -0.0070114136, 0.025787354, 0.04937744, -0.025619507, 0.03668213, 0.013900757, 0.0014505386, 0.025024414, 0.007331848, -0.031402588, 0.019729614, 0.0028953552, -0.03527832, 0.054504395, 0.024307251, -0.03414917, 0.01777649, -0.03778076, -0.07922363, 0.028839111, -0.023651123, 0.0040359497, 0.00045204163, 0.019485474, 0.06689453, -0.0012693405, 0.025405884, 0.015548706, 0.013580322, -0.034057617, -0.030899048, -0.0033073425, -0.022659302, -0.031463623, 0.012542725, 0.019943237, -0.025543213, 0.034942627, 0.021881104, -0.0012559891, 0.010810852, 0.011474609, -0.016998291, 0.0061149597, 0.028015137, 0.037719727, -0.029083252, 0.00064229965, -0.028884888, 0.018920898, 0.0006251335, -0.025009155, 0.032073975, 0.054534912, -0.010620117, -0.009971619, -0.018692017, -0.014709473, 0.016983032, 0.020706177, -0.009750366, 0.028045654, 0.008255005, -0.04220581, -0.026504517, -0.017456055, 0.010375977, -0.033813477, 0.0004775524, 0.0072364807, -0.017349243, -0.043670654, 0.009941101, -0.00030755997, -0.04034424, -0.00680542, 0.0234375, -0.021896362, -0.0067749023, -0.03970337, 0.012580872, 0.0066452026, -0.0053138733, -0.018661499, -0.021652222, -0.048828125, -0.027648926, -0.005065918, -0.021209717, 0.0051879883, 0.0009737015, -0.0309906, 0.014709473, -0.0008921623, 0.06738281, 0.028289795, 0.052093506, -0.0602417, 0.02243042, -0.07067871, 0.00049209595, 0.047088623, -0.025253296, -0.044006348, -0.030029297, 0.032989502, 0.013771057, -0.008163452, 0.03878784, 0.018051147, -0.010917664, 0.022094727, -0.04559326, 0.04144287, -0.00061655045, -0.022384644, 0.0259552, -0.013046265, -0.012702942, 0.032043457, 0.06213379, 0.048736572, -0.039794922, -0.0597229, -0.09851074, 0.04043579, 0.078125, -0.04534912, -0.001912117, -0.07098389, -0.0006518364, -0.08117676, 0.09729004, 0.09246826, -0.011795044, 0.0056877136, -0.0017290115, -0.020050049, -0.026550293, 0.011886597, -0.057617188, -0.019714355, 0.014984131, 0.004272461, -0.020477295, 0.014717102, -0.0053215027, -0.056640625, -0.040771484, -0.04953003, 0.033233643, -0.008987427, -0.040039062, -0.0028648376, -0.014335632, -0.00447464, 0.05429077, 0.04071045, -0.0030078888, 0.028564453, -0.01940918, -0.009132385, -0.015792847, -0.020645142, 0.010185242, -0.016326904, 0.015098572, -0.025604248, -0.0032463074, 0.02293396, -0.013305664, 0.00944519, 0.035217285, -0.034210205, 0.015731812, 0.017623901, 0.034118652, -0.022491455, 0.0062828064, 0.022140503, -0.04574585, -0.029708862, 0.01586914, -0.055023193, 0.046661377, -0.007019043, -0.029144287, 0.018661499, -0.01689148, 0.010177612, 0.013687134, -0.02748108, 0.012283325, -0.014099121, 0.012062073, -0.0052719116, -0.049865723, 0.014419556, 0.032836914, -0.02645874, 0.0209198, 0.0028095245, -0.010978699, -0.0032958984, 0.025375366, -0.059631348, -0.024551392, 0.017593384, -0.02357483, -0.03805542, -0.003440857, -0.0020523071, -0.028762817, -0.02166748, -0.0385437, 0.046142578, -0.0018568039, -0.048675537, -0.037322998, -0.006965637, 0.03265381, 0.0055656433, 0.0007195473, -0.03314209, -0.016159058, 0.008583069, 0.0423584, -0.050598145, -0.012664795, 0.017440796, -0.02897644, -0.044158936, -0.011428833, -0.019485474, 0.011100769, -0.049682617, 0.03451538, 0.0058059692, -0.028579712, 0.011245728, 0.024169922, -0.08654785, -0.020599365, -0.0041236877, -0.0031356812, -0.0053138733, -0.017028809, 0.07220459, -0.040496826, -0.045898438, -0.056396484, 0.046539307, -0.036895752, -0.0014247894, 0.02142334, 0.031219482, 0.011276245, 0.021560669, 0.0005927086, -0.018295288, -0.007896423, 0.008781433, -0.08728027, 0.0028877258, -0.0015335083, 0.040222168, -0.029830933, -0.0071868896, -0.005168915, 0.043426514, 0.0027103424, 0.027191162, -0.03982544, -0.02973938, -0.016662598, -0.042419434, 0.025360107, 0.007762909, -0.0146865845, -0.0022258759, -0.022705078, -0.07434082, 0.02720642, 0.026794434, 0.035858154, 0.0021343231, -0.022583008, 0.0060157776, 0.022369385, -0.013198853, 0.08404541, -0.024536133, -0.03152466, -0.0013122559, 0.038848877, 0.051208496, -0.0033512115, 0.00605011, -0.02571106, -0.0075950623, 0.024978638, -0.0025691986, 0.0015001297, -0.031066895, -0.033996582, 0.007835388, 0.049865723, 0.015808105, 0.022720337, 0.04156494, 0.028457642, 0.00970459, -0.0128479, 0.0021324158, -0.016616821, -0.008987427, -0.013946533, 0.008399963, 0.008895874, -0.007171631, -0.0024299622, 0.050872803, 0.00680542, -0.028564453, 0.05697632, -0.015289307, 0.02658081, 0.0038146973, -0.031433105, -0.032989502, -0.02003479, -0.05606079, -0.01474762, 0.005744934, -0.024353027, 0.027313232, 0.038879395, -0.009849548, 0.0014371872, -0.0031776428, 0.0413208, 0.0036182404, -0.031463623, -0.018447876, -0.0184021, 0.041900635, -0.0015325546, 0.013381958, 0.008834839, 0.000957489, 0.057495117, 0.03125, 0.07495117, -0.04248047, 0.027069092, -0.017028809, 0.0020427704, 0.0025615692, -0.010520935, -0.0023288727, 0.056243896, 0.023757935, -0.02470398, -0.032714844, 0.009643555, 0.038482666, -0.048675537, 0.009765625, -0.020233154, 0.016479492, -0.040893555, 0.034332275, -0.0079422, -0.032470703, 0.00042438507, 0.029922485, 0.033813477, 0.090270996, 0.002155304, 0.026535034, 0.022399902, -0.032348633, 0.018463135, -0.030471802, 0.03152466, 0.039031982, 0.03479004, -0.04168701, 0.025817871, 0.0064888, -0.017837524, 0.045013428, 0.015007019, 0.037231445, -0.013916016, 0.05230713, 0.04083252, 0.03741455, -0.054260254, 0.01235199, 0.076660156, 0.0011701584, 0.006591797, 0.024887085, -0.0038585663, -0.04837036, 0.0027313232, -0.007949829, 0.0053634644, 0.0062026978, 0.060302734, 0.024673462, 0.03086853, 0.0037651062, -0.039001465, 0.0524292, -0.031799316, 0.0052452087, -0.003074646, -0.03488159, -0.00014472008, 0.044006348, 0.005252838, 0.012161255, -0.036254883, 0.004207611, 0.012252808, -0.01071167, -0.003692627, -0.02583313, 0.0008711815, -0.012046814, 0.012962341, 0.03881836, 0.05404663, 0.0010919571, 0.04248047, -0.006412506, -0.054473877, -0.078430176, 0.01436615, -0.056518555, 0.004825592, 0.02848816, 0.0060157776, 0.031829834, -0.005207062, -0.012268066, 0.05291748, 0.017456055, -0.0055656433, 0.0041236877, -0.009231567, -0.03656006, -0.0033779144, -0.016571045, -0.0049858093, 0.01928711, 0.046966553, -0.05267334, 0.08630371, 0.0011434555, -0.041534424, -0.03161621, -0.051727295, -0.064575195, -0.012306213, -0.007385254, -0.009376526, 0.018188477, 0.0014028549, -0.018737793, -0.003326416, 0.029312134, -0.0073661804, 0.0206604, 0.016052246, -0.021438599, -0.058929443, 0.004020691, -0.028945923, 0.0042495728, 0.041107178, -0.015625, -0.011810303, 0.029525757, -0.0073509216, -0.027328491, -0.011871338, 0.008163452, -0.025894165, 0.0021705627, -0.020767212, 0.030059814, -0.010101318, -0.020141602, -0.0033779144, -0.027557373, -0.018676758, 0.01701355, 0.053527832, -0.044647217, -0.01979065, -0.013282776, 0.010093689, 0.011810303, -0.062805176, -0.0056877136, -0.034210205, 0.015975952, 0.016586304, 0.011001587, -0.025039673, 0.014984131, -0.022338867, -0.022918701, 0.0072631836, 0.017211914, 0.015731812, -0.02192688, 0.03024292, 0.020004272, 0.03768921, -0.030838013, -0.015007019, -0.06488037, 0.048919678, 0.029724121, -0.010978699, 0.06500244, -0.020996094, 0.010719299, 0.023010254, -6.657839e-05, 0.017410278, -0.026138306, -0.037231445, -0.016967773, -0.014129639]}, "B08W4Y34SR": {"id": "B08W4Y34SR", "original": "Brand: Outsunny\nName: Outsunny 8'x5' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown\nDescription: Don't you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you'd like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

      Features:
      - The steel roof is UV ray and water fighting for outdoor use
      - Double roof has great air circulation and heat reduction
      - Two side shelves for placing food and drink
      - Including 8 ground stakes and 8 expansion screws for stable standing
      - Assembly required


      Specifications:
      - Color: Brown
      - Material: Aluminium, Steel
      - Overall Dimension: 8.4' L x 5.2' W x 8' H
      - Eave Height: 6.4'
      - Shelf Size: 58.25\" L x 8.75\" W x 0.75\" T
      - Shelf Height to the Ground: 3.3'
      - Support Pole Spacing: 7.1', 5.2'
      - Weight Capacity of Each Shelf: 55 lbs


      \nFeatures: IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party\nCONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks.\nGREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing\nSTRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come\nBBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4'L x 5.2'W x 8'H, Eaves Height: 6.4'\n", "metadata": {"Name": "Outsunny 8'x5' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown", "Brand": "Outsunny", "Description": "Don't you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you'd like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

      Features:
      - The steel roof is UV ray and water fighting for outdoor use
      - Double roof has great air circulation and heat reduction
      - Two side shelves for placing food and drink
      - Including 8 ground stakes and 8 expansion screws for stable standing
      - Assembly required


      Specifications:
      - Color: Brown
      - Material: Aluminium, Steel
      - Overall Dimension: 8.4' L x 5.2' W x 8' H
      - Eave Height: 6.4'
      - Shelf Size: 58.25\" L x 8.75\" W x 0.75\" T
      - Shelf Height to the Ground: 3.3'
      - Support Pole Spacing: 7.1', 5.2'
      - Weight Capacity of Each Shelf: 55 lbs


      ", "Features": "IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party\nCONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks.\nGREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing\nSTRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come\nBBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4'L x 5.2'W x 8'H, Eaves Height: 6.4'", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0317688, -0.02810669, -0.03845215, -0.045410156, -0.030944824, 0.00019180775, -0.027252197, 0.04449463, -0.04736328, 0.0028476715, -0.050354004, 0.049560547, -0.017868042, -0.0028743744, 0.044647217, -0.0552063, 0.044525146, -0.023208618, -0.00034427643, -0.023132324, 0.0041236877, 0.004333496, -0.0020713806, 0.081726074, 0.037506104, -0.014022827, 0.015525818, -0.0093307495, 0.043121338, 0.011817932, 0.01878357, -0.011795044, 0.024749756, -0.012008667, 0.020187378, -0.0725708, -0.044952393, 0.0047950745, 0.0023975372, -0.023864746, 0.0008382797, 0.018798828, -0.015052795, -0.011833191, -0.027572632, -0.019378662, -0.0037574768, -0.024139404, -0.0023880005, -0.052368164, -0.01448822, 0.03756714, 0.018692017, -0.05529785, 0.0025539398, 0.025756836, -0.0007004738, -0.0043411255, 0.049621582, 0.012756348, -0.03866577, -0.024002075, 0.026260376, -0.04849243, -0.039031982, -0.002368927, 0.03265381, -0.008506775, -0.004764557, -0.052368164, 0.0058555603, 0.0058288574, 0.0024986267, 0.01134491, -0.027572632, -0.038360596, 0.038208008, -0.012916565, -0.009483337, 0.011711121, -0.00868988, -0.027526855, -0.0016155243, -0.06817627, 0.04135132, -0.02909851, -0.0028934479, 0.0037288666, 0.008621216, -0.013557434, 0.0028686523, 0.0051345825, -0.04144287, 0.05203247, 0.009506226, -0.030776978, -0.04324341, -0.015319824, 0.040374756, 0.040527344, -0.017242432, -0.020599365, 0.0019741058, -0.0079193115, -0.005405426, 0.02885437, -0.01448822, -0.040008545, -0.017623901, 0.028305054, -0.033355713, -0.05239868, 0.016525269, -0.006996155, -0.05859375, -0.0017929077, 0.023345947, -0.026550293, 0.01776123, -0.008125305, -0.032806396, -0.009735107, -0.056427002, 0.07122803, 0.07293701, 0.069885254, 0.012611389, 0.059539795, -0.0513916, 0.022476196, -0.0025177002, 0.015640259, 0.012130737, 0.03048706, -0.01499939, -0.027435303, 0.008384705, -0.02935791, -0.0034103394, 0.024993896, -0.03817749, -0.012557983, 0.08081055, -0.02456665, -0.0050201416, 0.0035629272, 0.017578125, 0.04284668, -0.004508972, -0.029449463, 0.045043945, 0.013694763, 0.06719971, -0.013832092, -0.056365967, -0.045684814, 0.03237915, -0.05239868, -0.04220581, -0.09436035, -0.015487671, -0.0004785061, 0.025802612, -0.032928467, -0.037017822, 0.005645752, -0.022384644, -0.012710571, 0.019760132, 0.04586792, 0.0073280334, -0.014839172, -0.0014305115, 0.030059814, 0.007232666, 0.019592285, 0.0020809174, 0.032562256, 0.07208252, -0.07922363, -0.059173584, -0.04147339, 0.11566162, -0.031341553, 0.0025596619, -0.035003662, 0.011749268, -0.007369995, 0.00059604645, 0.020629883, 0.00027561188, 0.011917114, -0.011833191, -0.0054969788, 0.009346008, -0.003824234, -0.017745972, 0.00957489, -0.0061035156, -0.012580872, -0.06021118, 0.013626099, -0.014457703, 0.02331543, 0.028030396, -0.013175964, 0.0115356445, 0.0026760101, 0.015060425, 0.014816284, 0.004207611, -0.008918762, -0.03729248, 0.013702393, -0.017745972, -0.0138168335, -0.0026550293, 0.03074646, -0.0020256042, 0.022537231, 0.021957397, -0.014625549, 0.016784668, 0.03591919, 0.03845215, -0.030029297, 0.0003991127, -0.019439697, 0.029296875, 0.022079468, -0.04385376, 0.004146576, 0.00409317, 0.02154541, 0.008003235, 0.05645752, 0.0713501, 0.009552002, -0.009895325, -0.009246826, 0.02128601, -0.0017328262, -0.015220642, 0.025985718, 0.009979248, -0.063964844, -0.0050964355, 0.007789612, -0.038085938, -0.011253357, -0.0037899017, 0.010505676, 0.03286743, -0.004673004, -0.03845215, 0.039642334, -0.02268982, 0.027572632, -0.023651123, 0.034942627, -0.034210205, 0.041412354, 0.058929443, -0.014808655, 0.05441284, -0.035949707, 0.06274414, 0.043762207, 0.025894165, -0.039245605, -0.012962341, -0.00869751, -0.021911621, 0.0044898987, 0.020019531, -0.051849365, -0.015182495, 0.009727478, -0.04559326, -0.03314209, 0.025314331, 0.030593872, -0.0076675415, 0.0023994446, -0.00017035007, -0.018051147, -0.0057754517, 0.01953125, -0.08380127, -0.042785645, -0.007270813, 0.038024902, -0.019119263, -0.019317627, 0.0025920868, 0.0037059784, 0.008888245, 0.007095337, 0.044525146, -0.032684326, -0.019226074, 0.030090332, -0.048828125, 0.026504517, -0.022994995, 0.06378174, 0.014533997, -0.037963867, -0.009605408, -0.025894165, 0.049682617, 0.03994751, 0.043701172, -0.0473938, 0.12561035, 0.072631836, 0.0473938, 0.083740234, 0.09313965, 0.03994751, -0.022445679, 0.010665894, -0.004501343, -0.022766113, 0.016616821, -0.0027542114, -0.043945312, 8.8751316e-05, 0.03741455, -0.016479492, 0.008590698, -0.01083374, -0.034851074, -0.015296936, 0.008384705, -0.030151367, -0.0072402954, -0.021728516, -0.00072336197, -0.008605957, 0.040802002, 0.035064697, 0.012046814, -0.01675415, -0.056762695, -0.007888794, 0.005317688, 0.005672455, 0.009063721, 0.007335663, 0.008644104, -0.009498596, -0.029846191, -0.023361206, -0.026153564, -0.02545166, 0.014930725, -0.05859375, -0.057403564, -0.082092285, -0.008277893, -0.040374756, -0.07128906, -0.033569336, 0.041015625, 0.018463135, -0.06512451, 0.0044822693, -0.022964478, 0.0021972656, 0.046325684, -0.005428314, -0.030517578, -0.041137695, -0.06994629, -0.03262329, -0.035491943, -0.05142212, 0.001707077, -0.029464722, 0.0046958923, 0.022994995, 0.03314209, 0.07354736, 0.012916565, 0.05279541, 0.04257202, 0.03982544, 0.0042152405, -0.046844482, 0.008529663, 0.0770874, -0.0067329407, 0.0046539307, 0.017410278, -0.003616333, -0.023498535, 0.0039253235, -0.07611084, -0.017425537, -0.12890625, 0.011642456, -0.018081665, -0.030792236, 0.017578125, -0.053894043, -0.030975342, -0.07421875, 0.014656067, 0.046936035, -0.0017576218, 0.01600647, -0.01007843, 0.008041382, -0.010154724, -0.011039734, 0.056030273, 0.016464233, 0.040771484, -0.091796875, -0.023330688, 0.020202637, 0.010513306, -0.016616821, -0.06677246, -0.005794525, -0.012283325, 0.045440674, -0.026870728, 0.012016296, -0.01737976, -0.0357666, 0.02168274, 0.017745972, -0.046691895, -0.010299683, -0.018966675, -0.000626564, 0.020126343, -0.04748535, -0.030227661, -0.010726929, 0.015136719, 0.0037136078, -0.005554199, -0.009277344, 0.003238678, -0.022537231, 0.015930176, -0.010063171, 0.006385803, 0.009490967, 0.04837036, 0.015045166, -0.012245178, 0.015960693, 0.030715942, 0.0546875, 0.04840088, -0.002576828, 0.017822266, -0.04586792, 0.03744507, 0.04888916, -0.011100769, 0.0007147789, 0.027114868, -0.01828003, -0.013954163, 0.0010089874, -0.060455322, 0.017150879, -0.031021118, -0.010414124, 0.046417236, 0.016662598, -0.013122559, -0.008224487, 0.017990112, 0.015357971, -0.009719849, -0.011505127, -0.07318115, 0.099975586, 0.039916992, -0.028823853, 0.038238525, 0.073913574, -0.019958496, 0.04119873, 0.021835327, 0.016143799, 0.013366699, 0.033355713, -0.025726318, 0.0039749146, 0.005634308, -0.0010757446, 0.028839111, -0.0034999847, -0.020462036, 0.003900528, -0.013824463, -0.025665283, 0.007549286, -0.014144897, -0.019363403, 0.0009021759, 0.030044556, 0.016235352, -0.005470276, 0.006286621, 0.009689331, 0.00566864, -0.023956299, -0.043640137, 0.006828308, -0.029724121, -0.022018433, 0.018127441, 0.016143799, 0.028686523, 0.021591187, 0.051818848, -0.026870728, 0.01852417, -0.020263672, -0.013626099, -0.035705566, 0.015312195, 0.021453857, 0.02279663, 0.01727295, -0.014808655, 0.017547607, 0.0010080338, 0.0071983337, 0.003742218, -0.011772156, -0.04663086, -0.0019741058, 0.036895752, 0.02418518, -0.0317688, 0.022964478, -0.034423828, -0.041809082, -0.0041503906, -0.05340576, 0.023666382, -0.0473938, -0.043304443, -0.057128906, -0.0078048706, -0.029647827, -0.017822266, -0.09063721, 0.05117798, 0.00843811, -0.038909912, -0.042022705, 0.017410278, -0.041412354, 0.021636963, -0.006084442, 0.01184845, 0.049957275, 0.043701172, -0.01902771, -0.020370483, -0.027633667, -0.0068473816, -0.0039711, -0.023529053, -0.011512756, -0.006160736, -0.036590576, 0.00932312, 0.008857727, 0.06311035, -0.008049011, 0.028060913, -0.036895752, -0.00016117096, -0.037628174, 0.032989502, 0.013786316, -0.012825012, -0.005870819, 0.017318726, 0.01625061, -0.00749588, -0.0015459061, -0.06829834, 0.018478394, 0.006164551, 0.026123047, -0.018707275, -0.040039062, 0.01852417, -0.011955261, -0.0022735596, 0.0034313202, -0.016677856, 0.053894043, 0.012718201, 0.020401001, 0.020065308, -0.021713257, 0.026107788, -9.417534e-06, 0.017868042, -0.011955261, -0.015556335, -0.007484436, 0.009033203, -0.056732178, 0.10644531, 0.09564209, -0.014213562, 0.021087646, -0.00087690353, -0.029464722, -0.022750854, 0.0060806274, -0.023956299, -0.027709961, -0.024642944, -0.007347107, -0.011062622, -0.0141067505, -0.014099121, -0.0155181885, -0.032318115, -0.0010290146, 0.0019464493, 0.018554688, -0.034820557, -0.0057411194, 0.043273926, 0.025756836, 0.02168274, 0.06085205, -0.023254395, 0.0059928894, -0.01663208, 0.019104004, 0.019378662, 0.004558563, 0.006706238, 0.013046265, 0.0041122437, -0.026123047, -0.015541077, 0.03579712, 0.017593384, 0.0057678223, 0.017654419, 0.01096344, -0.010986328, -0.04284668, 0.007987976, -0.01134491, -0.013343811, 0.0031738281, -0.038482666, 0.0079956055, 0.026123047, -0.026931763, 0.028762817, 0.0070648193, 0.0073242188, 0.05206299, 0.0069389343, 0.00047135353, -0.02508545, 0.008216858, -0.01928711, -0.04071045, 0.004055023, 0.009147644, 0.001458168, 0.03781128, -0.047790527, -0.0009889603, 0.05218506, -0.017166138, -0.0345459, 0.03656006, 0.022323608, -0.025222778, -0.02128601, 0.040618896, -0.051239014, -0.028671265, 0.052825928, -0.033233643, -0.015571594, -0.028381348, -0.0063209534, 0.003042221, 0.0021400452, 0.0030174255, -0.031829834, -0.031402588, -0.03152466, -0.00579834, 0.005634308, 0.007820129, 0.010421753, 0.006679535, -0.006591797, -0.018615723, -0.0060691833, -0.061767578, -0.04852295, -0.028335571, 0.033050537, 0.028335571, 0.04284668, -0.006313324, 0.029174805, -0.000875473, -0.016693115, 0.015586853, -0.0030212402, -0.061157227, 0.018249512, 0.02645874, 0.04525757, -0.035705566, 0.016113281, 0.061584473, -0.044647217, -0.029022217, -0.0137786865, 0.02798462, -0.0030822754, 0.020309448, 0.022003174, 0.008903503, -0.0036029816, 0.034301758, 0.012496948, -0.02293396, -0.027130127, 0.0013875961, -0.042938232, 0.0010814667, -0.015945435, 0.035186768, -0.023635864, 0.01890564, -0.0046539307, 0.05783081, -0.0034713745, -0.009246826, -0.025924683, 0.008132935, -0.019256592, 0.009521484, 0.026794434, -0.010826111, -0.05999756, -0.029373169, -0.048950195, -0.019699097, 0.035095215, 0.0044517517, 0.038879395, 0.040161133, -0.0045928955, 0.015487671, 0.014625549, -0.045043945, 0.04598999, 0.0065612793, -0.03189087, -0.026000977, 0.010810852, 0.024490356, -0.01007843, -0.02027893, -0.0022621155, 0.013504028, 0.024597168, 0.019683838, -0.03375244, -0.03427124, -0.072509766, 0.035491943, 0.04611206, 0.0010871887, 0.011985779, 0.016601562, 0.026824951, 0.007926941, -0.00579834, 0.045196533, -0.0042495728, -0.022872925, -0.0146102905, -0.035583496, 0.014282227, -0.009918213, 0.021026611, 0.018569946, -0.0026626587, 0.013328552, -0.012496948, 0.013092041, 0.008575439, 0.0124053955, 0.0035686493, -0.052520752, 0.036621094, -0.06750488, -0.033935547, -0.002670288, 0.016952515, 0.045135498, 0.04107666, 0.0052871704, 0.0054969788, 0.0362854, 0.006126404, 0.021987915, -0.040130615, 0.0149002075, -0.021011353, 0.008804321, -0.0033721924, -0.056030273, -0.024490356, 0.0016431808, 0.0019626617, -0.021377563, 0.04928589, 0.007423401, -0.0062217712, 0.031463623, -0.004714966, -0.01739502, -0.0024719238, -0.015853882, -0.047973633, 0.0041275024, 0.0044822693, 0.03137207, -0.005634308, 0.02998352, -0.056610107, -0.015701294, -0.025466919, 0.024276733, -0.020080566, -0.013687134, -0.037353516, -0.01838684, 0.029190063, 0.038391113, -0.018661499, -0.034179688, -0.025756836, 0.011192322, -0.004425049, -0.053894043, 0.02861023, -0.04220581, 0.025939941, 0.013595581, 0.020324707, 0.027542114, 0.028808594, -0.008598328, 0.010635376, 0.02520752, -0.01776123, 0.0113220215, 0.019012451, 0.02394104, 0.04925537, 0.03942871, -0.045715332, 0.01876831, 0.052703857, -0.018173218, 0.017288208, -0.005405426, -0.0043640137, -0.015823364, -0.020996094, 0.0024681091, -0.0075798035, 0.0040512085, 0.01965332, -0.007282257, 0.014015198, -0.008956909, 0.011978149, -0.0041236877, -0.018844604, -0.01852417, 0.023239136, 0.049835205, -0.0032310486, 0.01940918, -0.040771484, -0.012191772, 0.006248474, 0.020095825, 0.0066604614, -0.01612854, -0.0158844, -0.009399414, 0.034454346, -0.03503418, -0.003917694, 0.015960693, 0.052520752, 0.02218628, 0.08618164, -0.012802124, -0.044647217, -0.064575195, -0.021636963, 0.001033783, 0.028503418, -0.002691269, -0.0022335052, 0.019989014, 0.009437561, 0.009124756, 0.049438477, 0.015563965, -0.0126571655, -0.010383606, -0.0051193237, -0.036834717, 0.08660889, 0.01486969, -0.028518677, 0.01259613, 0.0103302, 0.00793457, 0.028366089, 0.03652954, -0.012962341, -0.09454346, -0.04046631, -0.07434082, 0.027404785, 0.017700195, 0.010658264, 0.0021591187, 0.0057525635, -0.033325195, 0.002937317, -0.01864624, -0.024002075, 0.032196045, 0.020996094, 0.025680542, 0.012573242, -0.025375366, -0.027832031, -0.010818481, -0.020523071, -0.04244995, -0.050476074, 0.02571106, 0.011383057, -0.017913818, -0.017623901, 0.035614014, -0.0006227493, 0.025253296, -0.03213501, -0.0043792725, -0.018981934, -0.015792847, 0.014846802, 0.009757996, -0.030944824, 0.0031261444, 0.030670166, -0.039093018, -0.03540039, 0.0043678284, 0.0074539185, -0.012832642, -0.017944336, -0.047576904, -0.041412354, -0.0051841736, 0.05505371, -0.026687622, 0.036254883, -0.03829956, -0.00065660477, -0.014099121, 0.026855469, 0.0054512024, 0.029937744, -0.018630981, 0.05770874, 0.02746582, 0.053649902, -0.03024292, -0.050048828, -0.03945923, 0.017608643, -0.017715454, 0.02230835, 0.039764404, -0.016418457, 0.013366699, -0.023147583, -0.032592773, -0.04397583, 0.015716553, 0.019546509, -0.024002075, 0.045776367]}, "B085WSHG8H": {"id": "B085WSHG8H", "original": "Brand: Jeebel Camp\nName: Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output\nDescription: \nFeatures: \u3010Practicality\u3011Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical.\n\u3010Adjustable Control Valve\u3011On/off switch can adjust the gas refilling speed.\n\u3010Good Quality Materia\u3011Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting.\n\u3010Easy to use\u3011Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors.\n\u3010Include\u3011 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.\n", "metadata": {"Name": "Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output", "Brand": "Jeebel Camp", "Description": "", "Features": "\u3010Practicality\u3011Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical.\n\u3010Adjustable Control Valve\u3011On/off switch can adjust the gas refilling speed.\n\u3010Good Quality Materia\u3011Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting.\n\u3010Easy to use\u3011Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors.\n\u3010Include\u3011 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.005004883, -0.024597168, -0.041656494, -0.030960083, -0.0134887695, -0.024215698, 0.009864807, 0.041503906, -0.028900146, 0.03010559, 0.017807007, 0.0067634583, 0.012527466, -0.034332275, 0.016143799, -0.0046463013, -0.0063934326, 0.019073486, -0.005672455, -0.037231445, 0.009635925, -0.05038452, -0.015075684, 0.08087158, 0.00623703, -0.043701172, 0.049072266, 0.038146973, 0.010246277, -0.0002360344, 0.022033691, -0.025100708, 0.025802612, 0.006538391, -0.046905518, -0.056121826, -0.019882202, -0.014442444, -0.05657959, 0.02748108, 0.026824951, -0.029190063, -0.023422241, -0.0046844482, -0.045532227, -0.0073394775, 0.0037078857, -0.0107040405, -0.001750946, 0.014038086, 0.014533997, -0.020812988, 0.01360321, -0.03201294, -0.018615723, -0.0135269165, 0.017242432, -0.08203125, -0.012298584, 0.013023376, 0.045898438, 0.021713257, 0.017822266, 0.035369873, -0.009559631, -0.024475098, 0.014022827, -0.0016746521, 0.03567505, 0.0018386841, 0.0072517395, 0.0309906, 0.040100098, 0.011177063, -0.06829834, -0.062072754, 0.03289795, -0.031585693, 0.045562744, -0.03363037, -0.0028324127, -0.018600464, 0.002029419, 0.007019043, -0.040252686, -0.012184143, -0.0054740906, -0.020370483, -0.026733398, -0.037017822, -0.033935547, -0.004322052, -0.013969421, -0.04660034, -0.06011963, -0.018341064, -0.03479004, -0.084106445, 0.007572174, -0.005962372, 0.05142212, -0.043762207, 0.034851074, 0.018844604, 0.005153656, 0.041107178, 0.02923584, 0.01977539, 0.026290894, -0.012496948, -0.0017442703, 0.0803833, -0.034698486, 0.0039482117, 0.010383606, 0.023834229, -0.062927246, 0.06518555, -0.020462036, 0.061767578, -0.022003174, 0.0082473755, -0.05026245, 0.0211792, -0.04168701, -0.037750244, 0.035339355, 0.01977539, -0.021652222, 0.013954163, 0.011375427, -0.002937317, 0.01651001, 0.066589355, 0.0009455681, 0.0010623932, 0.019042969, 0.024841309, 0.016738892, -0.012161255, 0.0069389343, -0.024383545, 0.008125305, 0.005317688, -0.024169922, 0.0037250519, -0.010246277, 0.025848389, 0.046936035, -0.022216797, -0.0049972534, -0.015304565, 0.010948181, 0.0033168793, -0.016067505, -0.04019165, -0.015640259, -0.03677368, 0.06335449, -0.045959473, -0.050872803, -0.043151855, -0.0006084442, -0.0041923523, -0.007801056, 0.057250977, 0.009063721, 0.008895874, 0.014404297, 0.06402588, 0.021697998, 0.058441162, 0.026321411, -0.03414917, -0.02911377, -0.07495117, -0.034698486, 0.087524414, 0.08428955, -0.08935547, -0.052246094, -0.0635376, 0.16015625, -0.04925537, 0.0029563904, -0.03781128, 0.01966858, -0.023971558, -0.0007972717, 0.0056991577, 0.029464722, 0.012191772, -0.0018606186, 0.0026988983, -0.021347046, -0.0146865845, -0.021102905, 0.016281128, -0.023483276, 0.0071258545, -0.00422287, 0.016952515, 0.03363037, 0.013259888, 0.020446777, 0.012008667, -0.008758545, 0.02017212, 0.028244019, 0.011886597, -0.01828003, -0.033813477, 0.021453857, -0.017440796, -0.043395996, -0.015808105, 0.021942139, 0.05343628, -0.007575989, 0.0005135536, 0.035980225, -0.05734253, 0.0211792, 0.059783936, -0.016845703, 0.010192871, -0.03302002, -0.0001295805, -0.0013523102, -0.007736206, 0.033111572, 0.031707764, 0.040008545, 0.06088257, -0.048095703, -0.017791748, 0.005970001, 0.02178955, 0.008491516, 0.0149002075, 0.02268982, 0.010894775, -0.03933716, -0.020690918, 0.0049705505, -0.011665344, 0.010978699, -0.012107849, 0.0030822754, 0.023986816, 0.0022678375, 0.007698059, 0.032104492, 0.081726074, -0.0014047623, 0.01777649, -0.021392822, -0.00289917, -0.048065186, 0.028121948, 0.0037059784, 0.024414062, -0.0015239716, 0.011436462, 0.04006958, -0.0044288635, 0.039611816, 0.034057617, -0.026123047, 0.0035476685, 0.01651001, 0.0005340576, -0.01586914, -0.0075683594, -0.025466919, -0.01777649, -0.034362793, 0.020874023, -0.010803223, -0.019882202, -0.004058838, -0.02268982, 0.014961243, -0.0043182373, 0.033721924, -0.005004883, 0.044158936, 0.010978699, -0.04840088, -0.0206604, 0.024368286, -0.0064086914, -0.026992798, 0.008399963, -0.031677246, -0.015548706, 0.10534668, 0.0023021698, 0.029464722, -0.043640137, -0.014755249, 0.01826477, -0.054656982, 0.010848999, -0.010185242, -0.027816772, -0.037872314, 0.049102783, 0.015640259, -0.05810547, 0.0041999817, 0.013656616, 0.017181396, 0.03765869, -0.00762558, 0.0033817291, -0.007335663, 0.04208374, 0.04269409, 0.064208984, -0.008804321, -0.009056091, -0.014137268, 0.01889038, 0.009109497, -0.0051460266, 0.0004246235, -0.0033226013, 0.0057640076, -0.010528564, 0.04248047, 0.017074585, 0.011260986, 0.0047721863, 0.009780884, -0.024261475, 0.028121948, -0.004634857, -0.015625, -0.046875, -0.00806427, -0.050720215, -0.022109985, -0.00054979324, -0.04083252, -0.047973633, 0.04147339, -0.015602112, 0.0051116943, 0.007286072, 0.01939392, 0.0025100708, 0.0040512085, -0.026855469, 0.026931763, -0.055908203, -0.03970337, 0.0040512085, -0.010253906, -0.059387207, 0.032073975, -0.030273438, -0.043884277, -0.03366089, 0.045013428, 0.0027236938, -0.04675293, -0.029891968, 0.008155823, -0.003479004, -0.02229309, 0.02720642, -0.07232666, -0.018295288, -0.0052871704, 0.007041931, 0.06695557, -0.016189575, 0.0029640198, 0.025787354, -0.001241684, 0.034332275, -0.034606934, 0.024368286, -0.0038852692, 0.060150146, 0.08807373, 0.006767273, 0.044891357, -0.0440979, 0.03765869, 0.04812622, -0.023223877, -0.011276245, -0.024856567, -0.0015239716, -0.014411926, -0.035339355, -0.029067993, -0.0026798248, -0.009536743, 0.004878998, -0.0049209595, -0.016052246, -0.0065345764, -0.038208008, -0.019256592, -0.028320312, 0.018554688, 0.049438477, -0.029876709, 0.046783447, -0.05206299, 0.04928589, -0.021636963, -0.00023329258, -0.066345215, -0.014816284, -0.011795044, 0.030563354, 0.023376465, -0.07922363, -0.0073547363, 0.04824829, -0.008766174, -0.023910522, -0.0057258606, -0.021865845, 0.002658844, 0.03250122, -0.0026855469, 0.010978699, -0.046783447, -0.0440979, -0.00111866, -0.00023782253, 0.010658264, -0.018295288, 0.00024724007, 0.0071792603, -0.024627686, 0.0046310425, -0.034820557, 0.026535034, -0.0496521, -0.004852295, -0.011199951, -0.032440186, 0.011482239, -0.007797241, -0.019638062, 0.0024662018, 0.012710571, 0.012794495, -0.0098724365, 0.04006958, 0.014549255, 0.034698486, 0.0015659332, 0.0007801056, 0.008796692, -0.022369385, 0.014350891, -0.0012292862, 0.020385742, -0.034301758, 0.027404785, 0.029907227, 0.036224365, -0.031799316, 0.044006348, 0.011253357, 0.01222229, -0.01676941, 0.03012085, 0.0018148422, -0.004497528, -0.032806396, 0.0053520203, -0.003929138, -0.053375244, 0.012962341, -0.10620117, 0.056732178, 0.010139465, -0.020614624, 0.055511475, 0.048828125, 0.009918213, 0.033172607, 0.02986145, -0.030456543, -0.00068092346, 0.05279541, -0.029876709, 0.025878906, 0.007820129, -0.014846802, 0.037139893, 0.01914978, -0.042663574, 0.018463135, 0.005504608, -0.055267334, -0.04486084, -0.026138306, 0.010902405, 0.024124146, 0.0345459, -0.014549255, -0.00024342537, 0.0105896, -0.01121521, 0.045166016, -0.041656494, -0.009185791, -0.0015192032, 0.005756378, -0.035980225, -0.010597229, -0.00039672852, -0.04525757, 0.035705566, 0.013954163, 0.0029945374, -0.010032654, 0.0061683655, -0.010055542, -0.026947021, 0.052093506, 0.0037136078, 0.0034809113, -0.015350342, -0.06903076, 0.039367676, -0.021881104, -0.0236969, 0.09777832, -0.018920898, -0.12536621, -0.031173706, -0.00089263916, 0.019760132, -0.05645752, -0.037139893, 0.029632568, -0.008422852, 0.030685425, -0.0143966675, -0.023849487, 0.016403198, 0.032165527, -0.053588867, -0.019500732, -0.016693115, 0.0059318542, -0.024337769, 0.0124053955, -0.015823364, -0.016326904, -0.028182983, -1.8417835e-05, -0.036010742, 0.023803711, -0.033569336, 0.008514404, 0.02279663, 0.010795593, -0.034332275, -0.0015802383, -0.003955841, 0.016464233, 0.042266846, -0.016860962, -0.014053345, -0.02810669, -0.0016002655, 0.020828247, 0.0098724365, 0.044952393, 0.02053833, 0.04397583, -0.03173828, 0.043151855, -0.06677246, 0.022445679, 0.0048065186, -0.00831604, -0.076538086, -0.021987915, 0.021911621, 0.025146484, -0.020339966, -0.024871826, 0.053771973, 0.03414917, 0.02520752, -0.056549072, -0.029312134, 0.013839722, -0.016494751, 0.00944519, -0.001449585, -0.009544373, 0.023223877, 0.028396606, 0.005832672, -0.017318726, 0.006389618, -0.00970459, -0.018676758, 0.022491455, -0.040985107, 0.025405884, -0.050689697, 0.001124382, -0.026779175, 0.078430176, 0.04486084, -0.021148682, -0.00074100494, 0.006980896, -0.023162842, -0.058685303, -0.049194336, -0.00020432472, 0.0059165955, -0.026046753, -0.03111267, 0.026626587, 0.014442444, 0.0118255615, -0.029785156, -0.036254883, -0.0019931793, 0.04083252, -0.016098022, -0.0058250427, -0.012809753, 0.00051021576, 0.0020065308, -0.021652222, -0.04196167, 0.0113220215, 0.0029716492, -0.017974854, -0.0009613037, 0.02508545, 0.0037059784, 0.023361206, 0.0006580353, 0.0135650635, -0.0317688, 0.03201294, 0.022125244, 0.034240723, 0.006801605, 0.015426636, 0.0033740997, -0.033081055, -0.04168701, 0.0028629303, 0.023773193, -0.037963867, 0.0116119385, -0.0036468506, 0.011688232, 0.019119263, -0.008102417, 0.0061950684, 0.0009784698, -0.04537964, 0.052459717, 0.04071045, 0.017700195, -0.078552246, 0.107543945, -0.013404846, -0.0023384094, -0.05886841, -0.0038909912, 0.007369995, 0.035736084, 0.03564453, -0.03466797, 0.05496216, -0.014640808, -0.047790527, 0.007381439, 0.006603241, -0.031463623, -0.009597778, -0.008049011, -0.034484863, -0.010047913, -0.010375977, -0.0049362183, 0.017868042, 0.014694214, -0.047668457, 0.043823242, 0.016189575, -0.06298828, -0.007522583, -0.010955811, 0.024414062, 0.022216797, -0.020462036, -0.018722534, -0.01826477, -0.026290894, 0.037597656, 0.04776001, 0.017288208, -0.05279541, -0.030563354, -0.025146484, 0.03567505, -0.01184845, 0.045776367, -0.008377075, -0.029663086, 0.02684021, -0.00390625, 0.019470215, 0.0023784637, -0.024673462, -0.00484848, -0.03463745, -0.04449463, -0.029815674, 0.013206482, 0.026901245, -0.04385376, -0.04019165, -0.016479492, 0.012382507, -0.0066871643, -0.046905518, 0.07733154, -0.026657104, 0.028686523, -0.009468079, 0.00062036514, -0.01878357, -0.020935059, 0.011703491, -0.038482666, -0.061431885, -0.04046631, 0.005393982, -0.016342163, -0.01121521, 0.0036010742, 0.0259552, -0.0024528503, 0.014549255, -0.0138168335, -0.029144287, -0.0040283203, -0.039733887, -0.0045433044, -0.048309326, 0.027175903, -0.01626587, 0.025299072, -0.0690918, -0.07373047, -0.01083374, 0.010406494, 0.008956909, 0.029724121, 0.0038375854, 0.020736694, -0.05014038, -0.014038086, -0.004924774, -0.0011415482, -0.017730713, 0.01108551, -0.0034809113, -0.0011110306, -0.03186035, -0.0035800934, -0.044403076, 0.028671265, 0.021240234, 0.039855957, -0.05722046, -0.01309967, 0.021362305, 0.045806885, -0.0028381348, 0.06173706, 0.018112183, -0.0736084, -0.036346436, 0.0027198792, -0.017715454, -0.061035156, 0.023391724, -0.045318604, 0.041015625, -0.007621765, -0.0018081665, 0.011108398, 0.03668213, 0.009010315, -0.04046631, 0.018615723, -0.0011224747, -0.025314331, 0.050201416, 0.013633728, 0.06518555, -0.023498535, 0.05142212, 0.020690918, -0.009986877, -0.016403198, -0.0058174133, 0.011764526, 0.017547607, 0.017669678, 0.025421143, 0.0029525757, 0.008422852, -0.0006570816, -0.014198303, -0.055908203, 0.037322998, -0.028900146, -0.043182373, -0.0262146, -0.0009126663, 0.026611328, 0.004009247, 0.054504395, -0.017990112, 0.02368164, -0.032592773, -0.03665161, 0.00440979, -0.009315491, 0.0017776489, 0.02078247, -0.023971558, -0.009269714, -0.04067993, -0.015037537, 0.03375244, -0.012939453, -0.006755829, -0.02609253, 0.035980225, -0.009056091, -0.038085938, -0.02746582, -0.045562744, 0.03778076, 0.034576416, -0.01727295, 0.03186035, 0.01222229, 0.0736084, 0.012496948, 0.028274536, 0.011131287, -0.03564453, 0.0026893616, 0.015312195, -0.036621094, -0.04208374, -0.03845215, -0.017456055, 0.03366089, -0.03262329, 0.060546875, 0.020858765, 0.0046653748, -0.0022220612, 0.01991272, 0.027267456, -0.031280518, -0.0024108887, 0.014511108, -0.00233078, -0.0051841736, -0.00060510635, -0.02722168, -0.034820557, -0.0113220215, 0.007980347, -0.02532959, -0.006706238, -0.039154053, -0.010719299, -0.007850647, -0.038970947, 0.039886475, -0.024093628, -0.016677856, -0.0025730133, -0.041625977, 0.0018291473, -0.019821167, -0.031097412, -0.018585205, -0.053955078, -0.033294678, 0.08666992, -0.005214691, 0.00687027, 0.022583008, 0.0070495605, 0.012245178, -0.042175293, -0.0032310486, 0.003768921, 0.017288208, -0.013389587, 0.039520264, -0.027786255, -0.040985107, -0.05871582, 0.014541626, -0.052703857, -0.010856628, -0.007701874, 0.032226562, 0.03387451, 0.009490967, -0.011978149, 0.068603516, -0.0045547485, -0.0025939941, 0.002374649, -0.021408081, -0.012802124, 0.055664062, 0.008338928, -0.016296387, -0.017410278, 0.0034236908, -0.0070114136, 0.0047035217, 0.018447876, -0.026931763, -0.051574707, -0.006603241, 0.0104599, -0.014717102, -0.020065308, 0.00072336197, 0.02659607, -0.0055885315, -0.024124146, 0.006969452, 0.02796936, 0.00818634, 0.030212402, -0.014312744, -0.0128479, -0.02166748, -0.012382507, 0.0058937073, -0.01461792, 0.008895874, 0.042633057, -0.015419006, -0.045013428, 0.03463745, 0.011199951, -0.011779785, 0.026367188, 0.031707764, 0.023117065, 0.021469116, 0.031921387, -0.00907135, -0.019165039, 0.00023889542, -0.047790527, -0.074523926, 0.015914917, 0.007472992, -0.02508545, 0.009140015, -0.024124146, -0.00017809868, -0.004245758, -0.009750366, -0.04788208, -0.08294678, 0.04916382, 0.025787354, -0.018127441, 0.03692627, 0.01979065, -0.008987427, -0.00037169456, 0.01374054, -0.0015573502, 0.019485474, 0.004383087, 0.016815186, -0.008956909, -0.0012350082, -0.009513855, -0.041534424, -0.05014038, 0.025680542, 0.021697998, -0.029571533, 0.042297363, -0.027023315, -0.0036182404, 0.0317688, -0.037200928, -0.03982544, 0.0079422, 0.107543945, 0.008361816, 0.010093689]}, "B07N2MXJ64": {"id": "B07N2MXJ64", "original": "Brand: YRYM HT\nName: YRYM HT Copper Grill Mat Set of 5-13\"x15.75\"Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill\nDescription:

      It\u2019s 100% safe to use FREE from any harmful chemicals that might seep into your food.

      The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

      \u2605Cook without oil or fats more healthy

      *SGS approved
      *Foods retain more vitamins and minerals
      *Does NOT absorb odors or transfer flavors

      \u2605Make Grilling, Baking, Cooking Easier:
      *Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
      *This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
      *It will not retain or transfer tastes or odors between uses.

      \u2605Application:
      *Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
      *Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
      *Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

      \u2605Simple To Use:
      *Simply place this mat on the food grill , It never sticks!
      *They can also be cut to fit your particular grill or oven perfectly.

      \u2605CLEAN-UP IS A BREEZE!
      *Simply clean the mats with warm soapy water.
      *Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe\uff01

      \u2605Package Included:
      5 * Cooper Grill Mats
      1 * Oil Brush BBQ Liquid Pen

      \u2605GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
      Any questions you have, please don't hesitate to contact us

      Your Purchase Is Risk Free. ADD TO CART TODAY!
      \nFeatures: \u2665 Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves.\n\u2665 Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500\u00b0F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS.\n\u2665 Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package!\n\u2665 Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on!\n\u2665 Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.\n", "metadata": {"Name": "YRYM HT Copper Grill Mat Set of 5-13\"x15.75\"Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill", "Brand": "YRYM HT", "Description": "

      It\u2019s 100% safe to use FREE from any harmful chemicals that might seep into your food.

      The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

      \u2605Cook without oil or fats more healthy

      *SGS approved
      *Foods retain more vitamins and minerals
      *Does NOT absorb odors or transfer flavors

      \u2605Make Grilling, Baking, Cooking Easier:
      *Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
      *This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
      *It will not retain or transfer tastes or odors between uses.

      \u2605Application:
      *Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
      *Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
      *Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

      \u2605Simple To Use:
      *Simply place this mat on the food grill , It never sticks!
      *They can also be cut to fit your particular grill or oven perfectly.

      \u2605CLEAN-UP IS A BREEZE!
      *Simply clean the mats with warm soapy water.
      *Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe\uff01

      \u2605Package Included:
      5 * Cooper Grill Mats
      1 * Oil Brush BBQ Liquid Pen

      \u2605GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
      Any questions you have, please don't hesitate to contact us

      Your Purchase Is Risk Free. ADD TO CART TODAY!
      ", "Features": "\u2665 Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves.\n\u2665 Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500\u00b0F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS.\n\u2665 Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package!\n\u2665 Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on!\n\u2665 Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.021316528, 0.026794434, -0.036010742, -0.029006958, 0.018310547, -0.0052261353, -0.030853271, -0.012664795, -0.03086853, 0.049865723, 0.014389038, 0.04321289, 0.027893066, -0.018753052, 0.010894775, 0.013153076, 0.014404297, -0.019256592, 0.0075035095, -0.021224976, 0.010734558, -0.009803772, -0.0063285828, 0.0072669983, 0.04348755, -0.03677368, 0.005821228, -0.0082092285, 0.012313843, -0.031036377, 0.015945435, 0.016952515, 0.05935669, 0.015808105, -0.07330322, -0.035949707, -0.010314941, -0.020446777, -0.029571533, -0.0052833557, 0.011421204, -0.010223389, -0.016204834, 0.018203735, -0.017913818, -0.027893066, 0.0043678284, -0.03265381, 0.017715454, 0.029388428, 0.020339966, 0.029281616, 0.020706177, -0.0021591187, -0.00039482117, 0.017425537, -0.023040771, 0.030334473, 0.028366089, 0.028030396, -0.0071792603, 0.006416321, 0.0029067993, -0.020477295, 0.0015964508, 0.005596161, 0.04949951, -0.012420654, -0.057403564, 0.008766174, 0.06072998, -0.028564453, 0.034606934, -0.03604126, -0.038909912, -0.029922485, 0.048828125, -0.026290894, -0.010421753, -0.018936157, -0.07019043, -0.040863037, 0.034179688, -0.08135986, 0.01737976, -0.050933838, -0.030517578, 0.021728516, -0.043060303, -0.02633667, -0.024765015, 0.009796143, -0.09802246, 0.04171753, 0.01335144, -0.007499695, -0.06652832, -0.05090332, 0.006149292, 0.032196045, 0.021606445, -0.037902832, 0.044708252, -0.0110321045, -0.004714966, 0.04421997, -0.009712219, -0.010620117, -0.009124756, 0.013549805, -0.0016536713, -0.02394104, 0.048980713, -0.014152527, -0.02911377, 0.00092601776, 0.05303955, 0.0051231384, 0.020492554, -0.012420654, -0.047302246, -0.027435303, 0.028259277, 0.012916565, 0.07513428, 0.062072754, -0.008552551, -0.0129470825, -0.07269287, 0.041778564, -0.018920898, 0.0053367615, 0.04324341, 0.04449463, 0.00045871735, -0.02470398, -0.0054092407, 0.01626587, 0.014549255, 0.011947632, 0.0181427, -0.02658081, 0.029312134, 0.029464722, -0.0008659363, 0.0357666, 0.044525146, 0.013580322, -0.05203247, -0.08520508, 0.028137207, -0.017059326, 0.03451538, 0.026489258, -0.033966064, 0.024032593, -0.033599854, 0.009811401, -0.032409668, -0.016860962, -0.032470703, 0.0016727448, 0.028625488, -0.026275635, -0.004295349, 0.00289917, -0.013320923, 0.010101318, 0.013534546, 0.010643005, 0.0132369995, -0.03604126, -0.025939941, -0.034454346, -0.024169922, 0.010910034, 0.023361206, 0.05935669, 0.059509277, -0.091308594, -0.068115234, -0.053863525, 0.10070801, -0.043762207, -0.04043579, 0.014808655, 0.014160156, 0.07171631, 0.028640747, 0.0038051605, 0.026412964, -0.029571533, -0.034179688, -0.014221191, 0.02027893, 0.024261475, -0.06945801, -0.008178711, 0.00093507767, -0.025360107, -0.028396606, -0.021774292, 0.018753052, 0.025466919, 0.015037537, -0.04586792, 0.0011873245, 0.009010315, -0.025680542, 0.04373169, 0.028182983, -0.00078964233, -0.018249512, -0.015388489, -0.0011739731, -0.037322998, 0.012054443, -0.033966064, 0.0055351257, -0.01852417, 0.060180664, 0.026000977, -0.004295349, 0.050079346, 0.029922485, -0.013977051, -0.020950317, -0.007259369, 0.030639648, 0.010032654, -0.03652954, 0.04345703, 0.021560669, 0.0016698837, -0.048736572, 0.032592773, 0.037353516, 0.085754395, -0.03463745, -0.007896423, 0.0054092407, -0.0066452026, -0.055023193, -0.020080566, 0.020385742, -0.006336212, 0.0104904175, -0.0047416687, -0.018661499, -0.0071754456, 0.02633667, 0.021728516, 0.041534424, 0.017181396, 0.024429321, 0.031234741, -0.029525757, 0.037261963, -0.06951904, 0.023162842, -0.022491455, 0.013046265, 0.039154053, -0.015670776, 0.06274414, -0.04119873, 0.05267334, 0.036315918, -0.028945923, -0.037628174, 0.017349243, 0.048919678, -0.00945282, 0.04660034, 0.03894043, -0.005016327, -0.052368164, -0.003818512, 0.013961792, 0.016647339, 0.031188965, 0.024475098, 0.01676941, 0.0009851456, 0.040252686, -0.02029419, 0.013465881, 0.024551392, -0.03781128, -0.004890442, 0.019485474, 0.028625488, 0.00066661835, -0.018096924, 0.016708374, 0.0015621185, 0.016326904, 0.012741089, -0.00072050095, 0.011245728, 0.013916016, 0.0491333, -0.013549805, 0.0049705505, -0.012451172, -0.0034656525, -0.01751709, -0.006137848, -0.019592285, -0.028717041, -0.018218994, -0.004585266, 0.023101807, -0.009635925, 0.030654907, -0.0039100647, 0.007160187, 0.03366089, 0.014137268, 0.026794434, -0.030838013, 0.03363037, -0.040374756, 0.014984131, 0.0045204163, 0.0075569153, 0.00012660027, -0.0070266724, 0.0064468384, 0.03463745, 0.059051514, 0.04171753, 0.020126343, -0.007701874, 0.012138367, 0.014533997, -0.015449524, 0.023040771, -0.011260986, 0.007320404, -0.010002136, -0.059326172, 0.0017604828, -0.0579834, -0.07489014, 0.0345459, 0.049194336, 0.015991211, 0.011367798, -0.008361816, 0.0075035095, -0.027145386, 0.0073051453, -0.0073432922, 0.0071983337, -0.00010347366, -0.01777649, -0.010269165, 0.009719849, -0.06518555, -0.00881958, 0.026184082, -0.031402588, 0.009803772, 0.036834717, -0.038848877, 0.036315918, -0.023025513, 0.0069007874, -0.008621216, 0.030441284, 0.012519836, -0.030807495, -0.0284729, -0.01033783, -0.040740967, 0.013305664, -0.02848816, 0.013717651, 0.001709938, -0.017593384, -0.0061569214, 0.01739502, -0.00027251244, 0.0066070557, 0.01689148, 0.02709961, 0.06274414, -0.018875122, -0.030319214, -0.011619568, 0.051086426, -0.06604004, -0.024047852, -0.02331543, 0.030670166, 0.015167236, -0.07659912, 0.0423584, -0.04864502, -0.08526611, -0.02154541, -0.018371582, -0.033081055, -0.011795044, -0.022476196, -0.035186768, -0.053375244, -0.003894806, 0.09906006, -0.01826477, -0.020019531, -0.020202637, -0.0007915497, 0.014816284, 0.008361816, 0.009529114, -0.01109314, -0.014717102, 0.0037231445, 0.02949524, -0.047210693, 0.0390625, 0.0446167, -0.021194458, -0.014411926, 0.015426636, 0.026382446, -0.04699707, -0.021484375, -0.00091838837, -0.06903076, -0.040283203, 0.027145386, -0.016311646, 0.049987793, 0.022399902, -0.050231934, 0.061279297, -0.039276123, -0.010826111, -0.0134887695, -0.038085938, 0.030960083, -0.050201416, -0.0031337738, -0.011833191, -0.043792725, -0.04055786, -0.044830322, -0.027420044, 0.02986145, 0.03479004, 0.02848816, 0.02180481, 0.022583008, 0.00920105, 0.037872314, 0.01638794, -0.035491943, -0.023635864, -0.048797607, 0.06890869, -0.0045661926, 0.008613586, -0.031707764, 0.03363037, -0.011444092, -0.022094727, 0.013847351, -0.031311035, 0.033294678, 0.0076904297, 0.0068740845, -0.009262085, -0.013374329, 0.017242432, 0.052368164, -0.035003662, -0.03152466, -0.060058594, 0.011245728, -0.09295654, 0.059753418, 0.04525757, -0.03213501, 0.06689453, 0.049194336, 0.0009937286, 0.035858154, 0.0030441284, -0.003643036, 0.022750854, 0.0049362183, -0.019714355, 0.037750244, 0.0018205643, -0.019989014, 0.026763916, -0.0073890686, -0.0035438538, 0.010444641, -0.0003349781, -0.03765869, 0.052886963, 0.020645142, 0.003932953, 0.03567505, -0.028762817, -0.0037651062, 0.056762695, -0.020141602, 0.053833008, 0.0039482117, 0.0068511963, -0.016906738, 0.083862305, 0.0064353943, 0.022720337, -0.014320374, 0.02458191, 0.013038635, 0.021469116, 0.025436401, -0.004043579, -0.0126571655, 0.010391235, -0.017227173, -0.040802002, 0.018661499, 0.046417236, 0.0073013306, 0.05859375, -0.029342651, -0.013977051, -0.013145447, -0.011405945, 0.018325806, 0.0052871704, -0.04763794, -0.004173279, 0.009216309, -0.0048599243, -0.00655365, 0.03768921, -0.06915283, -0.0031471252, -0.018508911, -0.06011963, -0.010055542, -0.036590576, -0.025268555, -0.01184845, 0.009208679, -0.02142334, -0.040283203, -0.040283203, 0.0006351471, -0.0017490387, 0.019302368, -0.0043296814, 0.07092285, -0.049468994, -0.021377563, 0.016494751, -0.0020637512, 0.051605225, 0.016983032, 0.036956787, -0.02696228, -0.034698486, -0.05117798, 0.03378296, 0.021942139, -0.0008382797, -0.017120361, -0.0063591003, 0.012397766, 0.022415161, 0.02659607, -0.005344391, 0.029037476, -0.016311646, 0.0053749084, -0.027938843, -0.041992188, 0.060455322, -0.10229492, -0.011077881, -0.045318604, 0.03817749, -0.0016117096, -0.014694214, -0.040008545, 0.0024108887, 0.045959473, -0.040740967, -0.019302368, -0.008201599, 0.0027370453, 0.033477783, -0.039855957, -0.017745972, 0.0019683838, 0.043182373, -0.04623413, -0.009529114, 0.036987305, 0.0017642975, -0.040374756, 0.016494751, -0.029708862, 0.0048599243, 0.060638428, -0.02015686, -0.028411865, -0.0071983337, 0.07287598, 0.06842041, -0.041229248, -0.00018060207, 0.009063721, -0.035583496, -0.045776367, 0.0005993843, -0.0005736351, -0.006378174, -0.007434845, -0.027328491, -0.014862061, -0.04525757, 0.00598526, 0.0021305084, -0.01020813, 0.019897461, -0.014045715, 0.007255554, -0.031829834, -0.032043457, 0.012771606, 0.020401001, 0.040161133, 0.033203125, -0.021713257, 0.017974854, -0.0058250427, 0.0018835068, 0.007144928, -0.0037937164, -0.0034561157, 0.022445679, -0.013893127, -0.03970337, -0.04425049, 0.04055786, -0.027526855, -0.014015198, 0.04812622, 0.008018494, 0.020812988, 0.0010299683, 0.08068848, 0.0019435883, 0.02104187, -0.025390625, -0.023757935, 0.02659607, 0.045196533, -0.04437256, 0.051696777, 0.011749268, -0.021392822, 0.018737793, 0.00075149536, 0.003873825, -0.009895325, 0.048553467, 0.015625, 0.012329102, -0.053985596, 0.014053345, -0.086120605, 0.0070381165, -0.055419922, 0.025283813, 0.03677368, 0.012519836, -0.0045928955, -0.012954712, 0.024017334, -0.049438477, 0.0067481995, -0.006690979, 0.010726929, -0.024597168, -0.0047187805, 0.001613617, -0.033569336, -0.024551392, -0.029022217, 0.034179688, 0.008125305, -0.02861023, -0.036621094, -0.025299072, 0.02217102, -0.025543213, 0.009254456, -0.03164673, 0.0079574585, 0.004688263, 0.0066604614, -0.009552002, -0.006275177, -0.052642822, -0.008979797, -0.008964539, -0.0022087097, -0.012062073, 0.058685303, -0.009628296, 0.01499176, 0.016342163, -0.030334473, 0.009864807, 0.005508423, -0.030792236, 0.015686035, 0.008041382, -0.000518322, -0.033721924, -0.044799805, 0.012634277, -0.038024902, -0.01525116, -0.021026611, 0.055389404, 0.007904053, 0.0048942566, 0.070007324, 0.022079468, 0.015213013, 0.026412964, -0.00548172, -0.024520874, 0.038513184, 0.036132812, -0.037597656, 0.0074691772, 0.00046014786, 0.010192871, -0.02142334, -0.03274536, -0.019714355, 0.053985596, 0.00982666, -0.018981934, -0.026947021, -0.04058838, 0.018692017, 0.014137268, 0.015327454, 0.005332947, 0.0026168823, -0.049041748, 0.01033783, -0.048065186, -0.03540039, 0.04849243, 0.022644043, 0.0050811768, -0.043304443, 0.011940002, 0.04284668, 0.016799927, 0.08074951, -0.024765015, -0.012779236, 0.016738892, 0.057922363, 0.045959473, 0.03149414, -0.015213013, -0.026519775, 0.00434494, -0.0028953552, 0.0038757324, 0.007411957, -0.04159546, -0.042266846, 0.030578613, 0.036895752, 0.029891968, 0.018096924, 0.02973938, 0.04272461, 0.020431519, 0.001868248, 0.0597229, 0.007270813, -0.016159058, -0.008911133, -0.004890442, 0.035064697, -0.00075674057, 0.0070877075, 0.023788452, 0.041229248, -0.013702393, -0.00010550022, -0.01133728, 0.016647339, 0.019485474, -0.036743164, -0.051696777, -0.010681152, 0.026611328, -0.003063202, 0.022155762, 0.0046920776, -0.008407593, 0.027679443, -0.0032787323, 0.022766113, 0.025421143, 0.023864746, 0.008300781, -0.04284668, 0.040496826, 0.011398315, 0.001502037, 0.01448822, 0.0028152466, 0.009086609, 0.029846191, 0.027801514, -0.009346008, 0.062683105, -0.026428223, 0.00063848495, -0.06109619, 0.0132369995, -0.036621094, -0.021713257, 0.0034179688, 0.058807373, 0.0048980713, -0.018569946, -0.008903503, 0.023651123, 0.026657104, -0.037384033, 0.014320374, -0.016799927, 0.02545166, -0.012779236, 0.02798462, -0.015213013, -0.044555664, 0.026489258, 0.04095459, -0.012939453, 0.026748657, -0.036071777, 0.052124023, -0.0060768127, -0.014984131, 0.023483276, -0.036895752, -0.00056552887, 0.028244019, 0.05291748, -0.014533997, 0.004638672, -0.015609741, 0.0025939941, 0.009628296, 0.026992798, 0.013404846, 0.029586792, 0.03439331, 0.027420044, 0.05630493, -0.047210693, 0.027633667, 0.054016113, 0.0025024414, -0.011665344, -0.0030326843, -0.0053863525, -0.0413208, -0.012939453, 0.026641846, -0.039978027, 0.0184021, -0.013122559, 0.021560669, 0.0109939575, -0.009010315, -0.018997192, 0.018615723, -0.0129776, 0.03668213, -0.017700195, -0.00086069107, -0.0028419495, -0.030197144, -0.0031909943, -0.0015201569, -0.030319214, 0.039123535, 0.016998291, -0.03805542, -0.02229309, -0.018249512, 0.04953003, -0.08520508, -0.0037384033, -0.03656006, 0.07727051, -0.00749588, 0.095825195, -0.044769287, -0.07385254, -0.032226562, 0.034454346, -0.07269287, -0.0008921623, -0.0009860992, -0.013885498, -0.005203247, -0.024353027, -0.004737854, 0.010612488, 0.016189575, -0.030181885, -0.022644043, -0.03677368, -0.02973938, 0.082458496, -0.0017127991, -0.031707764, -0.012832642, 0.032470703, 0.023117065, 0.035247803, 0.03253174, -0.0057868958, -0.062561035, -0.0211792, -0.059631348, 0.038269043, -0.0059394836, 0.038146973, -0.011672974, 0.027374268, -0.016921997, 0.014099121, -0.029159546, -0.015991211, 0.047698975, 0.025665283, -0.012481689, -0.03086853, -0.027862549, -0.028549194, 0.0031547546, 0.021835327, 0.043151855, -0.005256653, -0.061523438, 0.007785797, -0.0043296814, 0.015716553, 0.009002686, -0.021240234, -0.0340271, 0.004524231, 0.0056991577, -0.04336548, 0.031082153, 0.03579712, -0.0016431808, -0.029846191, 0.0027751923, 0.04840088, -0.032562256, -0.02027893, -0.019821167, 0.0062332153, 0.002456665, -0.047790527, 0.012458801, -0.07574463, 0.025512695, 0.032287598, 0.011413574, 0.00051784515, -0.0041275024, -0.044036865, -0.0022392273, 0.008911133, 0.018600464, 0.007347107, -0.011146545, 0.022857666, -0.012466431, -0.00034809113, -0.013137817, -0.039398193, -0.028518677, 0.034576416, 0.014968872, -0.01071167, 0.049865723, -0.051116943, 0.025527954, -0.040771484, 0.029144287, -0.04019165, 0.030792236, -0.0053596497, 0.0049476624, 0.0368042]}, "B094HHS7Q4": {"id": "B094HHS7Q4", "original": "Brand: my aegean NATURAL\nName: My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ\nDescription:

      My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it\u2019s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

      The materials used in the manufacture of our product have been chosen with your health in mind. With it\u2019s high quality PTFE-Fiberglass material, it\u2019s long-lasting and suitable for reuse. It\u2019s thickness is 0.2 mm. This thickness is the most preferred.

      You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

      When using our product, we ask you to pay attention to just a few things:

      - Please do not put the grill mat directly on the fired charcoal.

      - Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

      - Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

      - Before cleaning, wait for it to cool down and first clean it with a dry cloth.

      - If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

      Thank you very much for choosing My Aegean grill mat.
      \u00a0

      \nFeatures: HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven.\nNON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories.\nREUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It\u2019s easy to clean and there is no need for a grill cleaning. Extends the life of your grill.\nMULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It\u2019s standard size is 15.75 x 13 inches, but you can cut it to any size you want.\nYOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.\n", "metadata": {"Name": "My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ", "Brand": "my aegean NATURAL", "Description": "

      My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it\u2019s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

      The materials used in the manufacture of our product have been chosen with your health in mind. With it\u2019s high quality PTFE-Fiberglass material, it\u2019s long-lasting and suitable for reuse. It\u2019s thickness is 0.2 mm. This thickness is the most preferred.

      You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

      When using our product, we ask you to pay attention to just a few things:

      - Please do not put the grill mat directly on the fired charcoal.

      - Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

      - Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

      - Before cleaning, wait for it to cool down and first clean it with a dry cloth.

      - If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

      Thank you very much for choosing My Aegean grill mat.
      \u00a0

      ", "Features": "HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven.\nNON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories.\nREUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It\u2019s easy to clean and there is no need for a grill cleaning. Extends the life of your grill.\nMULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It\u2019s standard size is 15.75 x 13 inches, but you can cut it to any size you want.\nYOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.027938843, 0.025802612, -0.036346436, -0.022399902, 0.023223877, -0.025665283, 0.013145447, -0.0055160522, -0.027297974, 0.01713562, -0.018692017, 0.02671814, -0.001373291, -0.015174866, 0.005794525, -0.014694214, 0.033325195, -0.021026611, -0.0028877258, -0.024658203, -0.02078247, -0.007583618, 0.017105103, 0.017303467, 0.034942627, -0.070007324, -0.014579773, -0.016433716, 0.014091492, -0.029953003, 0.017059326, 0.03753662, 0.028915405, 0.030227661, -0.045776367, -0.032684326, 0.016647339, -0.0079193115, -0.03173828, 0.033325195, -0.008262634, 0.012573242, -0.014724731, -0.009239197, -0.04901123, 0.0045928955, -0.02545166, -0.014274597, 0.0068969727, 0.0289917, 0.032409668, 0.034729004, 0.028778076, 0.03604126, 0.0023021698, 0.030014038, -0.027938843, 0.011947632, 0.033233643, 0.010688782, -0.009254456, -0.016021729, 0.010124207, 0.00020515919, -0.04272461, 0.025726318, 0.053375244, -0.026016235, -0.05657959, -0.049957275, 0.042999268, -0.010757446, 0.03024292, -0.031341553, -0.033294678, -0.048431396, 0.013023376, -0.048309326, 0.01020813, -0.004547119, -0.07470703, -0.020141602, -0.0034809113, -0.07678223, 0.0075645447, -0.05230713, -0.028717041, 0.03390503, -0.027297974, -0.028182983, -0.01727295, 0.034423828, -0.038269043, 0.005432129, -0.031555176, 0.004749298, -0.015274048, -0.06439209, 0.026107788, 0.012840271, 0.07598877, -0.068481445, 0.099975586, 0.0017471313, -0.015838623, 0.04977417, 0.011108398, -0.0075035095, -0.013282776, 0.002664566, -0.015930176, -0.0068130493, -0.02116394, -0.048980713, -0.041168213, 0.03564453, 0.018310547, -0.064941406, 0.02494812, -0.06762695, -0.022766113, -4.786253e-05, -0.025527954, 0.050354004, 0.023101807, 0.021743774, 0.014678955, 0.0059814453, -0.040771484, 0.047607422, -0.020370483, -0.0025177002, 0.02973938, 0.018997192, -0.01612854, -0.03845215, 0.012908936, 0.0067481995, 0.0025596619, 0.025726318, -0.019042969, -0.04019165, 0.041168213, -0.012863159, -0.0058898926, 0.0005750656, 0.039916992, 0.051757812, -0.02796936, -0.06842041, 0.07141113, -0.0031909943, 0.06542969, 0.015670776, -0.052734375, 0.01713562, 0.037261963, -0.020629883, -0.06677246, -0.043060303, -0.023330688, -0.026626587, 0.0014019012, -0.04675293, -0.05596924, 0.035369873, -0.025115967, -0.00026798248, 0.024124146, 0.042663574, 0.019256592, 0.004070282, -0.016143799, -0.0047912598, -0.013175964, -0.034484863, -0.031463623, 0.06616211, 0.06161499, -0.1385498, -0.082458496, -0.07421875, 0.08544922, -0.018585205, 0.011039734, -0.04748535, 0.020614624, 0.029418945, 0.017196655, 0.034362793, -0.029052734, -0.034942627, -0.021347046, -0.04006958, 0.033233643, 0.052093506, -0.058258057, 0.014793396, 0.011314392, -0.037384033, -0.0018100739, -0.002357483, 0.015151978, 0.009223938, 0.021194458, -0.015365601, 0.0035152435, 0.015472412, 0.0054626465, 0.035980225, -0.0027980804, -0.038238525, 0.021850586, -0.028060913, -0.028060913, -0.04525757, 0.00970459, -0.029815674, -0.0037670135, -0.010398865, 0.021118164, 0.010498047, -0.025634766, 0.055755615, 0.04257202, -0.018875122, -0.0056381226, -0.021652222, 0.031082153, 0.011299133, -0.03515625, 0.019485474, 0.07092285, 0.022277832, -0.027038574, 0.04788208, 0.050750732, 0.0143585205, -0.040496826, 0.0047836304, 0.004901886, -0.016052246, -0.048553467, 0.002254486, -0.0051727295, -0.017791748, 0.006248474, 0.008346558, -0.02204895, 0.0049591064, 0.0035381317, -0.0031909943, 0.03375244, -0.0051460266, -0.01399231, 0.035217285, -0.06512451, -0.0053634644, -0.047607422, 0.0071372986, 0.0027713776, 0.025543213, 0.03451538, -0.00680542, 0.03741455, 0.0039253235, 0.031951904, 0.027008057, -0.017578125, 0.021316528, 0.010604858, -0.029296875, 0.004432678, 0.024627686, 0.020233154, -0.022384644, -0.007095337, -0.008476257, 0.005378723, -0.010360718, 0.0119018555, 0.01399231, 0.030059814, -0.005832672, 0.05404663, -0.02998352, 0.004558563, -0.021942139, -0.029510498, -0.026504517, 0.02293396, 0.012168884, -0.0032157898, -0.010948181, 0.0030288696, -0.019927979, -0.04425049, 0.026290894, -0.0053749084, -0.00014042854, -0.038970947, 0.051452637, 0.012329102, -0.0032253265, -0.011917114, 0.014350891, -0.0061035156, -0.009819031, -0.022140503, -0.049316406, 0.022781372, 0.013366699, 0.04147339, -0.0435791, 0.07751465, 0.017990112, 0.019882202, 0.04937744, 0.042022705, 0.035949707, -0.04144287, 0.035186768, -0.038208008, 0.0005764961, 0.0135650635, 0.013298035, -0.030975342, -0.0024909973, 0.012939453, -0.0032539368, 0.020126343, -0.0015192032, 0.0074768066, -0.0033836365, 0.021011353, -0.029266357, 0.009399414, 0.03527832, 0.007972717, -0.040618896, 0.038330078, -0.044647217, -0.009315491, 0.030883789, -0.0637207, -0.0028419495, 0.033599854, 0.0062713623, -0.0033397675, -0.021347046, 0.027252197, -0.03086853, 0.018371582, 0.008140564, 0.013435364, 0.0031433105, -0.026748657, 0.011383057, 0.0021514893, -0.05670166, -0.023376465, 0.005050659, -0.052764893, 0.00945282, 0.05456543, -0.022613525, 0.0048217773, -0.01889038, 0.019622803, 0.017913818, 0.0074882507, 0.021408081, -0.04135132, -0.033477783, -0.018600464, -0.03564453, -2.2053719e-06, -0.03857422, -0.004711151, -0.008720398, -0.016784668, -0.006801605, 0.028335571, 0.024658203, 0.027542114, 0.009765625, 0.0065956116, 0.028518677, 0.017059326, -0.010437012, 0.006008148, 0.031280518, -0.076049805, -0.03656006, -0.016616821, 0.03677368, 0.019897461, -0.07824707, 0.0423584, -0.05407715, -0.05831909, -0.019348145, -0.017059326, -0.03643799, 0.01108551, -0.05923462, -0.007587433, -0.044647217, -0.0023612976, 0.04385376, -0.011558533, -0.000705719, 0.0075950623, -0.011672974, 0.013069153, -0.011222839, -0.008995056, -0.0027542114, -0.025985718, 0.00026893616, 0.011871338, 0.0038280487, 0.012435913, 0.024307251, -0.037902832, 0.0068855286, 0.019195557, 0.047302246, -0.028701782, -0.037109375, -0.0009241104, -0.0670166, -0.009002686, 0.024856567, -0.051452637, 0.04446411, 0.012619019, -0.00037169456, 0.052001953, -0.04159546, -0.021102905, 0.021087646, 0.0014505386, 0.022079468, -0.01651001, -0.029907227, 0.033843994, -0.02709961, 0.009208679, -0.025115967, -0.008964539, 0.015853882, 0.024765015, 0.0138168335, 0.0006623268, 0.015426636, 0.040802002, 0.066589355, 0.019744873, -0.0066375732, -0.0074386597, -0.059539795, 0.09790039, 0.010246277, 0.0028858185, -0.056243896, 0.05505371, -0.0309906, -0.038482666, 0.023361206, -0.047607422, 0.04272461, 0.009246826, 0.0011768341, 0.03387451, -0.00818634, -0.015060425, 0.04156494, -0.050231934, -0.013168335, -0.06317139, 0.0020771027, -0.068359375, 0.080566406, 0.04019165, -0.021331787, 0.07128906, 0.04901123, -0.005088806, 0.024307251, 0.0035705566, -0.005836487, -0.012290955, 0.046203613, -0.02960205, 0.012794495, 0.0029411316, -0.011100769, 0.0031833649, -0.0036239624, -0.051879883, -0.009338379, 0.013160706, -0.02029419, -0.0033779144, 0.030929565, -0.0023078918, 0.0155181885, -0.0034885406, -0.041503906, 0.010009766, -0.036010742, 0.039398193, 0.018966675, -0.014457703, -0.02406311, 0.06536865, 0.016326904, -0.00018560886, -0.018325806, 0.020599365, 0.025253296, 0.06427002, 0.03717041, -0.044403076, -0.012084961, 0.04827881, -0.021621704, -0.047424316, 0.0068855286, 0.044555664, 0.041778564, 0.02722168, -0.022460938, -0.010604858, -0.013999939, -0.025222778, 0.020019531, -0.023040771, -0.046203613, -0.026885986, 0.015113831, 0.019134521, -0.0020999908, 0.025802612, -0.04977417, -0.005630493, -0.0093307495, -0.05331421, -0.0027980804, -0.031219482, -0.03463745, -0.021881104, 0.004108429, -0.022369385, -0.046447754, -0.034576416, 0.0028705597, 0.0022716522, 0.023223877, 0.013221741, 0.037200928, -0.04711914, -0.015174866, -0.017990112, -0.0025100708, 0.023422241, -0.0059013367, 0.026245117, -0.04638672, -0.036315918, -0.039733887, 0.058929443, 0.028320312, 0.027694702, -0.008338928, -0.018035889, -0.008857727, 0.029678345, 0.037200928, 0.005695343, 0.03668213, -0.020523071, -0.018859863, -0.051116943, -0.014961243, 0.050994873, -0.06488037, -0.011245728, -0.0012140274, 0.08441162, -0.020111084, -0.024658203, -0.06427002, 0.025650024, 0.035461426, -0.024337769, -0.012107849, -0.0066375732, 0.024475098, 0.04888916, -0.044036865, -0.0066490173, -0.0071029663, 0.014205933, -0.064086914, 0.0060920715, 0.036987305, -0.013252258, -0.03704834, 0.0340271, 0.01826477, -0.013153076, 0.021026611, -0.03805542, -0.027389526, 0.0030994415, 0.028182983, 0.0725708, -0.036987305, 0.02961731, 0.03086853, 0.0060310364, 0.020935059, 0.010292053, -0.012367249, -0.024398804, -0.0010251999, -0.013587952, -0.014030457, -0.008018494, -0.008987427, -0.0005469322, 0.028396606, 0.030654907, -0.037963867, 0.01272583, -0.0061531067, 0.010169983, 0.029464722, 0.0069236755, 0.02709961, 0.010650635, -0.03591919, -0.0036563873, -0.04046631, -0.02960205, -0.005268097, -0.013580322, -0.026870728, 0.061706543, -0.006401062, -0.046966553, -0.013542175, 0.030807495, -0.030670166, -0.030670166, 0.02671814, 0.027191162, 0.0028839111, -0.03543091, 0.053833008, -0.01687622, -0.005844116, -0.005268097, 0.015808105, 0.0112838745, 0.042297363, -0.02355957, 0.032043457, 0.027282715, -0.048858643, 0.017318726, 0.01638794, 0.027893066, -0.042236328, 0.04373169, -0.0024528503, -0.030151367, -0.045562744, 0.008766174, -0.017349243, 0.054107666, -0.056365967, 0.0069732666, 0.039001465, -0.017730713, -0.012077332, 0.00831604, 0.04446411, -0.015419006, 0.014343262, 0.018325806, -0.0020713806, -0.047424316, 0.0056610107, -0.0037727356, -0.045715332, -0.04107666, -0.023498535, -0.0006389618, 6.443262e-05, 0.023986816, -0.023223877, -0.023239136, 0.014129639, -0.035705566, 0.005214691, -0.02998352, 0.0051460266, -0.013473511, 0.010353088, -0.0022239685, 0.0025691986, -0.05014038, 0.0010137558, 0.022415161, 0.002986908, 0.00034618378, 0.055419922, 0.0028133392, 0.023910522, 0.045837402, -0.01234436, 0.022155762, 0.014823914, -0.018417358, 0.01158905, 0.011329651, 0.034301758, -0.02305603, -0.030761719, 0.037231445, -0.037750244, -0.011375427, -0.041381836, 0.027420044, 0.01789856, -0.0004298687, 0.007797241, 0.017059326, -0.0051002502, 0.02609253, -0.0098724365, -0.041534424, 0.045288086, 0.020767212, -0.06713867, -0.031433105, -0.015541077, -0.02381897, -0.015853882, -0.03111267, -0.015533447, 0.050750732, -0.014228821, -0.05407715, -0.0039024353, -0.018615723, 0.018844604, 0.019470215, 0.010185242, 0.027694702, 0.02609253, -0.028518677, 0.05279541, -0.028076172, -0.01713562, 0.04034424, 0.017791748, -0.005847931, -0.024307251, 0.010223389, 0.04699707, -0.010406494, 0.05883789, -0.0129470825, -0.04586792, -0.014755249, 0.025482178, 0.074279785, -0.024276733, 0.02494812, -0.02835083, 0.020614624, 0.005794525, 0.00011366606, -0.03012085, -0.040893555, -0.089660645, 0.02973938, 0.052612305, 0.032073975, 0.012771606, 0.024353027, 0.024368286, 0.013008118, 0.014213562, 0.07183838, -0.0047798157, -0.00097608566, -0.033996582, 0.010406494, 0.026031494, -0.0032691956, 0.016601562, 0.011886597, 0.032196045, -0.036224365, 0.04989624, -0.010955811, 0.012702942, 0.003643036, -0.037139893, -0.0051651, -0.01109314, -0.007144928, -0.008377075, 0.004501343, 0.0016622543, 0.010749817, 0.026763916, -0.00033164024, 0.017486572, 0.014343262, 0.0357666, 0.009971619, -0.045532227, 0.035858154, 0.013931274, -0.0018444061, 0.023208618, 0.00030064583, 0.00030899048, -0.002462387, 0.050933838, -0.012313843, 0.06298828, -0.0463562, 0.014587402, -0.03161621, 0.030776978, -0.034240723, -0.026809692, 0.016235352, 0.04449463, 0.0027694702, -0.019302368, 0.009422302, 0.013648987, 0.039123535, -0.04812622, -0.005432129, -0.00087976456, 0.009162903, -0.027862549, -0.011123657, -0.034454346, -0.013595581, 0.049560547, 0.036132812, -0.027877808, -0.006416321, -0.007511139, 0.010231018, 0.019622803, -0.021331787, 0.02104187, -0.014328003, 0.03781128, 0.039154053, 0.011947632, 0.002067566, 0.014022827, -0.02078247, 0.045013428, -0.004623413, 0.041992188, 0.021453857, 0.02468872, 0.0037117004, 0.041015625, 0.040527344, -0.042022705, 0.029418945, 0.01878357, -0.005493164, 0.018630981, -0.03869629, -0.02128601, -0.04055786, 0.003742218, 0.034820557, -0.022109985, 0.0003349781, -0.033325195, 0.0019302368, -0.0034828186, -0.017669678, -0.006210327, 0.019058228, -0.015220642, 0.011100769, -0.027420044, 0.027252197, -0.012893677, -0.0063323975, -0.020599365, -0.014434814, -0.040802002, 0.030273438, -0.0052452087, -0.056243896, -0.04788208, 0.0121154785, 0.042877197, -0.062469482, -0.02810669, -0.018997192, 0.061035156, 0.012084961, 0.08544922, -0.048095703, -0.074523926, -0.056549072, 0.03250122, -0.08758545, -0.017227173, -0.028518677, 0.035461426, 0.033355713, -0.008392334, -0.015625, 0.07714844, -0.017410278, -0.007133484, -0.04727173, -0.046142578, -0.030838013, 0.07269287, 0.0005836487, -0.04248047, -0.029922485, 0.041778564, 0.018081665, 0.087524414, 0.025817871, -0.016189575, -0.036468506, -0.012214661, -0.048339844, 0.055419922, -0.02279663, 5.9843063e-05, 0.013046265, 0.01109314, -0.023025513, 0.02355957, 0.02468872, 0.0158844, 0.012374878, 0.037597656, 0.0033798218, -0.013397217, -0.0131073, 0.00078487396, -0.014831543, 0.00044202805, 0.059936523, 0.0078048706, -0.04232788, 0.007701874, -0.012779236, 0.028457642, 0.0181427, -0.025787354, -0.02029419, 0.0048599243, -0.0009255409, -0.016067505, 0.024017334, 0.046447754, 0.003250122, -0.016845703, -0.015838623, 0.032440186, -0.02406311, 0.0059127808, -0.030944824, 0.027923584, 0.007335663, -0.024459839, 0.034973145, -0.05166626, -0.005947113, 0.012077332, 0.016555786, 0.031173706, -0.008041382, -0.06555176, -0.017471313, 0.010925293, 0.00047898293, 0.012321472, 0.008010864, 0.023971558, 0.00365448, 0.022964478, -0.030975342, -0.046875, -0.056518555, 0.024536133, 0.006954193, 0.0032730103, 0.04953003, -0.019134521, 0.029907227, -0.011314392, 0.06542969, 0.012428284, -0.008277893, 0.011474609, -0.0049934387, 0.013023376]}, "B07YDCYCGD": {"id": "B07YDCYCGD", "original": "Brand: AugToy\nName: Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas\nDescription:

      \u261e The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

      \u261e All the food accessories add to the fun that kids has with this grill playset.

      \u261e With this play grill, your kids will enjoy a bbq party with his little friends.

      \u261e It is really a good Christmas gift for kids who love playing cooking game.\u00a0

      \nFeatures: \ud83c\udf57 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids.\n\ud83c\udf62 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun.\n\ud83c\udf3d Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid\u2019s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included.\n\ud83c\udf74 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty.\n\ud83c\udf7b Pretend Play Kitchen Fun for Kids\uff1aWith this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.\n", "metadata": {"Name": "Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas", "Brand": "AugToy", "Description": "

      \u261e The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

      \u261e All the food accessories add to the fun that kids has with this grill playset.

      \u261e With this play grill, your kids will enjoy a bbq party with his little friends.

      \u261e It is really a good Christmas gift for kids who love playing cooking game.\u00a0

      ", "Features": "\ud83c\udf57 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids.\n\ud83c\udf62 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun.\n\ud83c\udf3d Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid\u2019s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included.\n\ud83c\udf74 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty.\n\ud83c\udf7b Pretend Play Kitchen Fun for Kids\uff1aWith this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0050697327, 0.006099701, -0.027114868, -0.039245605, 0.0072288513, 0.00680542, -0.010124207, 0.0066223145, -0.085754395, 0.021255493, 0.009857178, 0.026367188, -0.00957489, -0.010803223, 0.033691406, -0.03677368, -0.0058784485, 0.0069732666, 0.0029830933, -0.028915405, 0.013046265, -0.037597656, 0.0071411133, -0.032684326, 0.07324219, -0.033966064, -0.020492554, 0.018173218, 0.064208984, 0.03213501, 0.031463623, -0.06726074, 0.03878784, 0.023880005, -0.083984375, -0.07232666, -0.035095215, 2.014637e-05, -0.059692383, 0.019897461, 0.024810791, -0.0053977966, -0.035491943, 0.007835388, -0.03652954, -0.033691406, 0.004524231, -0.022583008, -0.007888794, 0.034851074, 0.047546387, 0.008010864, 0.055603027, -0.020050049, -0.005344391, -0.013305664, 0.009407043, 0.040039062, 0.002922058, 0.00756073, -0.0132751465, 0.05419922, 0.0067329407, 0.007396698, 0.0024967194, -0.023468018, 0.06274414, 0.0069007874, -0.0423584, -0.003932953, 0.058410645, 0.009399414, 0.031097412, -0.008369446, -0.038360596, 0.011207581, -0.014564514, 0.0026283264, 0.04421997, -0.034606934, -0.01272583, 0.009689331, 0.0052223206, -0.026550293, -0.00032615662, -0.024658203, -0.010475159, -0.015098572, 0.020126343, -0.020950317, 0.0031108856, -0.01637268, -0.021057129, 0.064575195, -0.014030457, -0.00970459, -0.05142212, -0.009277344, -0.013244629, 0.013511658, 0.03277588, -0.02607727, 0.023727417, -0.027999878, -0.014060974, 0.026977539, 0.019714355, 0.0146865845, -0.018127441, 0.0052604675, -0.036621094, -0.00674057, 0.004711151, -0.03451538, -0.029769897, 0.03475952, 0.0032730103, -0.021728516, 0.026031494, -0.016159058, -0.04748535, -0.018249512, 0.002998352, 0.01776123, 0.060913086, 0.045318604, -0.0046653748, 0.021820068, -0.04925537, 0.03781128, -0.018798828, -0.019088745, 0.038482666, 0.0690918, 0.020019531, -0.028701782, 0.031158447, -0.01272583, 0.012832642, -0.0022506714, 0.020263672, 0.0146102905, 0.01802063, 0.0041999817, 0.0236969, 0.008377075, 0.018569946, 0.016342163, 0.015457153, -0.03286743, 0.040130615, -0.008995056, 0.0014324188, 0.013137817, -0.026763916, 0.033813477, -0.03970337, 0.01675415, -0.012771606, 0.017059326, 0.0072517395, -0.023544312, -0.025741577, 0.005630493, 0.011871338, 0.030029297, 0.0035057068, 0.019989014, -0.0035495758, 0.018554688, -0.04675293, 0.009033203, -0.052368164, -0.023162842, -0.005027771, -0.0038604736, -0.008277893, 0.04421997, 0.06756592, -0.08703613, -0.08148193, -0.061401367, 0.11376953, -0.05206299, 0.0435791, -0.047424316, -0.027877808, -0.08105469, 0.019760132, 0.015716553, -0.064697266, 0.02319336, -0.04119873, -0.0079193115, 0.032348633, 0.016815186, -0.012321472, 0.0033874512, 0.010894775, -0.0390625, -0.03375244, -0.030548096, 0.016433716, -0.00623703, -0.00315094, -0.034210205, 0.020339966, 0.02142334, 0.011451721, 0.035369873, 0.011650085, 0.015052795, -0.03970337, 0.036254883, -0.014381409, -0.018585205, -0.050567627, 0.037384033, -0.013084412, 0.033447266, 0.009559631, -0.029190063, 0.02619934, 0.008415222, 0.030593872, -0.00548172, -0.014450073, -0.012771606, 0.030578613, 0.019302368, -0.022323608, 0.006996155, 0.049468994, 0.06048584, -0.023010254, 0.024490356, 0.026473999, 0.024993896, -0.005584717, 0.0056533813, 0.006919861, 0.03265381, -0.027328491, 0.022491455, 0.016616821, -0.035308838, -0.004169464, 0.021911621, -0.001206398, 0.037384033, 0.022155762, 0.008590698, 0.013885498, 0.043273926, -0.0034236908, 0.030517578, -0.056732178, -0.02798462, 0.021697998, -0.043395996, 0.026641846, -0.04711914, -0.021820068, -0.022567749, 0.029266357, -0.036071777, 0.008476257, -0.0132369995, -0.016174316, -0.0053977966, 0.0093307495, -0.039031982, -0.004600525, -0.008300781, 0.009971619, 0.004688263, -0.026992798, 0.01210022, 0.029083252, -0.020980835, 0.021255493, 0.027938843, 0.02444458, -0.007587433, 0.031173706, 0.00037145615, 0.013305664, 0.013259888, 0.009567261, -0.017608643, 0.02067566, 0.002357483, -0.007129669, -0.010719299, 5.90086e-05, -0.02911377, 0.029693604, 0.033599854, -0.0017328262, -0.008995056, -0.014984131, 0.03173828, -0.036071777, 0.0178833, 0.012130737, -0.036499023, -0.016098022, 0.009666443, 0.00894165, -0.04437256, 0.030471802, 0.08129883, 0.040405273, 0.03704834, 0.07110596, 0.022262573, 0.04815674, 0.083618164, 0.0552063, -0.0074386597, -0.026855469, 0.010818481, -0.023269653, -0.030548096, 0.0053100586, 0.020523071, -0.055999756, 0.0049095154, -0.014518738, 0.006996155, 0.0099487305, 0.037902832, 0.053100586, 0.031433105, -0.015365601, -0.04547119, 0.009483337, -0.024642944, 0.002193451, 0.0035686493, 0.035827637, -0.011108398, 0.007194519, -0.023422241, -0.042236328, 0.0104522705, 0.04119873, 0.0098724365, 0.003709793, 0.010650635, -0.014022827, -0.024032593, -0.0029945374, 0.032287598, 0.00554657, 0.011947632, 0.0022697449, 0.025909424, -0.01146698, -0.026794434, -0.062194824, 0.008422852, -0.054870605, 0.008361816, 0.04623413, -0.01776123, -0.014045715, 0.025360107, 0.036224365, 0.0340271, 0.005832672, 0.04547119, -0.040985107, -0.03036499, -0.031677246, -0.02407837, 0.072143555, -0.020874023, 0.0015888214, 0.047058105, -0.0115356445, 0.025039673, -0.00035333633, 0.038391113, 0.070373535, 0.0030651093, 0.009773254, 0.06329346, -0.007926941, -0.0056266785, -0.031433105, 0.014884949, -0.032714844, -0.0027999878, 0.033050537, 0.009719849, -0.0049819946, -0.007583618, -0.066223145, -0.024673462, -0.027252197, 0.014305115, -0.037109375, 0.029220581, -0.019882202, -0.026885986, 0.0143585205, -0.06463623, 0.001288414, 0.043548584, -0.0010356903, -0.015609741, -0.0023384094, -0.011817932, -0.0069465637, -0.007160187, 0.029464722, 0.008453369, -0.03326416, -0.04171753, 0.06384277, -0.05029297, 0.032806396, 0.0010166168, -0.013015747, 0.050201416, -0.0027313232, 0.0018281937, 0.013710022, 0.007537842, 0.0127334595, -0.025909424, -0.025787354, -0.026275635, -0.023330688, -0.0046043396, 0.00422287, -0.023498535, 0.028442383, -0.01576233, -0.030303955, -0.0064926147, -0.03479004, 0.013397217, 0.00712204, -0.041229248, -0.01953125, -0.048797607, -0.076416016, -0.030807495, -0.046203613, 0.024536133, -0.053741455, 0.03149414, 0.016174316, 0.107788086, 0.017608643, 0.06329346, 0.04663086, -0.0423584, -0.0317688, -0.0647583, 0.033233643, 0.04449463, -0.0022125244, -0.03387451, 0.088134766, -0.008636475, 0.008735657, 0.013458252, -0.030349731, 0.008705139, 0.006755829, -0.0011110306, -0.014091492, -0.02041626, 0.014083862, 0.03149414, -0.0024929047, -0.04650879, -0.0054779053, -0.009719849, -0.03869629, 0.103759766, 0.04675293, -0.009681702, 0.04248047, 0.06518555, -0.03048706, 0.034240723, 0.022506714, -0.0062332153, 0.015930176, 0.019515991, -0.042510986, 0.008476257, 0.0016641617, -0.04852295, 0.03274536, 0.016540527, -0.046417236, 0.010284424, 0.0007019043, -0.053344727, 0.0072364807, 0.0104599, 0.02708435, 0.015464783, 0.019760132, 0.051330566, -0.006713867, 0.0025959015, 0.0026416779, 0.02633667, -0.044708252, -0.039123535, 0.00051403046, -0.008781433, -0.049804688, 0.016220093, 0.025146484, -0.030319214, 0.024917603, 0.01940918, 0.018722534, 0.014961243, -0.013015747, -0.023712158, 0.008117676, 0.014556885, 0.03781128, -0.010040283, 0.016662598, -0.012641907, -0.00674057, -0.011497498, -0.03878784, -0.015701294, 0.015853882, 0.029754639, -0.016113281, -0.015975952, -0.016921997, 0.05859375, 0.021072388, -0.06744385, -0.010032654, -0.022994995, -0.025527954, -0.018478394, -0.0121536255, -0.0128479, -0.040130615, 0.018615723, 0.0068206787, -0.030944824, -0.08538818, 0.023788452, 0.011749268, -0.02507019, -0.024597168, 0.023269653, -0.030227661, 0.004432678, -0.07562256, 0.00995636, 0.005393982, 0.01687622, -0.040222168, 0.0023002625, -0.06121826, -0.02406311, -0.008323669, -0.01763916, -0.016036987, -0.014167786, -0.038970947, 0.013496399, -0.00982666, 0.06088257, 0.046783447, 0.038146973, -0.0826416, -0.008125305, -0.058441162, -0.006717682, 0.023483276, -0.03302002, -0.037353516, -0.027664185, 0.035980225, 0.004928589, 0.0037765503, 0.038269043, 0.01663208, -0.02557373, 0.056365967, -0.048065186, 0.008979797, -0.007423401, 0.0128479, 0.0042686462, -0.0067367554, -0.018371582, 0.026397705, 0.013717651, 0.04714966, -0.031204224, -0.05126953, -0.09442139, 0.058135986, 0.05307007, -0.04724121, 0.013206482, -0.059936523, -0.005832672, -0.06738281, 0.09613037, 0.048858643, -0.053619385, -0.015617371, -0.0134887695, -0.040771484, -0.034210205, 0.04486084, -0.049682617, -0.051818848, 0.009986877, 0.010154724, -0.030273438, 0.005554199, -0.02142334, -0.048553467, 0.007019043, -0.021530151, -0.013557434, -0.008796692, -0.032165527, 0.0020046234, -0.009994507, 0.006439209, 0.030776978, 0.0035762787, -0.02178955, 0.010437012, -0.019454956, -0.030197144, -0.017028809, 0.014762878, 0.0077819824, 0.0340271, 0.017745972, -0.05996704, 0.00019419193, 0.04055786, 0.0035037994, 0.0058174133, 0.014877319, -0.04220581, 0.022537231, 0.007820129, 0.02267456, -0.043029785, 0.025558472, 0.0004720688, -0.029541016, -0.034362793, 0.036254883, -0.055755615, 0.04626465, 0.020614624, -0.055603027, 0.0063819885, -0.010955811, 0.00052022934, 0.015357971, -0.0035190582, 0.0066986084, -0.012130737, 0.0029621124, -0.0053634644, -0.027053833, 0.01625061, 0.015853882, -0.02734375, 0.042266846, -0.015235901, -0.026138306, -0.0026950836, 0.0395813, -0.061401367, -0.026138306, 0.026367188, -0.025512695, -0.044708252, 0.00969696, 0.003534317, -0.034423828, -0.023880005, -0.039489746, 0.032592773, -0.0054473877, -0.04168701, -0.031280518, -0.015106201, 0.035247803, 0.019058228, 0.0023899078, -0.024734497, -0.008491516, 0.0015687943, 0.015548706, -0.024047852, -0.006538391, 0.0059661865, -0.025634766, -0.021057129, -0.009147644, -0.02180481, 0.020324707, -0.038024902, 0.010528564, -0.0115356445, -0.016799927, 0.0036907196, 0.012001038, -0.07421875, -0.009155273, 0.0030231476, 0.0058631897, 0.02192688, -0.03366089, 0.115356445, -0.031402588, -0.07733154, -0.052459717, 0.06567383, -0.03048706, 0.0236969, 0.037841797, 0.0035915375, 0.024398804, 0.018569946, 0.02204895, -0.019424438, -0.00032281876, 0.0065460205, -0.066223145, 0.019943237, -0.0021705627, 0.051452637, -0.013618469, 0.004497528, 0.011802673, 0.037475586, 0.0034275055, -0.0023784637, -0.014190674, -0.010482788, -0.00434494, -0.061767578, 0.020568848, -0.018066406, -0.0050964355, 0.0052108765, -0.026763916, -0.07183838, 0.023727417, 0.010810852, 0.04458618, 0.015808105, 0.0011720657, 0.0049362183, 0.024932861, -0.053588867, 0.068603516, -0.009605408, -0.015007019, 0.002073288, 0.032928467, 0.028396606, 0.027664185, -0.014205933, -0.0126953125, -0.00049877167, -1.0311604e-05, 0.011474609, -0.008018494, -0.02633667, -0.026672363, 0.016952515, 0.039398193, 0.03225708, -0.0051651, 0.022521973, 0.008171082, 0.0062217712, 0.0022945404, -0.0011911392, -0.013427734, -0.018569946, -0.039093018, 0.0071487427, 0.022369385, -0.0017147064, 0.040008545, 0.013694763, 0.014320374, -0.04449463, 0.036895752, -0.0082092285, 0.0054740906, 0.025817871, -0.04663086, -0.035125732, -0.034484863, -0.062194824, -0.031097412, 0.01322937, -0.022125244, 0.022644043, 0.04711914, -0.015670776, 0.0014772415, 0.006965637, 0.031555176, -0.011253357, -0.025634766, -1.6629696e-05, -0.0088272095, 0.03012085, 0.008483887, 0.025741577, 0.027648926, 0.014640808, 0.034606934, 0.030319214, 0.06317139, -0.03918457, 0.032958984, -0.020812988, 0.0037250519, -0.025726318, -0.020721436, -0.0036716461, 0.016555786, 0.019302368, 0.0051994324, -0.04977417, -0.012237549, 0.04663086, -0.042938232, 0.011253357, -0.021560669, 0.031799316, -0.03994751, 0.05831909, -0.0090408325, -0.03488159, -0.0055122375, 0.01373291, 0.02520752, 0.05911255, -0.0033187866, 0.008529663, 0.019302368, -0.025283813, 0.016967773, -0.012031555, 0.03286743, 0.041259766, 0.008628845, -0.05117798, 0.027526855, 0.013214111, -0.023773193, 0.044891357, 0.030761719, 0.04232788, 0.0029735565, 0.033843994, 0.020324707, 0.0368042, -0.05029297, -0.0005683899, 0.056854248, 0.0010099411, -0.027038574, 0.0034885406, -0.009742737, -0.057006836, 0.02229309, 0.0037078857, 0.01360321, 0.017608643, 0.06335449, 0.017242432, 0.013397217, -0.010070801, -0.02029419, 0.040893555, -0.029678345, 0.009002686, -0.028671265, -0.0066566467, -0.0051460266, 0.020950317, -0.014884949, 0.016677856, -0.030944824, -0.012519836, 0.016113281, 0.015045166, 0.04336548, -0.033233643, 0.007129669, -0.0093307495, 0.017166138, 0.04473877, 0.03274536, 0.006477356, 0.055114746, -0.026794434, -0.072265625, -0.05154419, 0.025314331, -0.05154419, -0.015426636, 0.0206604, 0.0030593872, 0.03753662, -0.0022449493, 0.0026683807, 0.07434082, 0.012817383, -0.0032215118, -0.007534027, -0.016494751, -0.048614502, 0.02986145, -0.0044784546, -0.021591187, 0.023452759, 0.07098389, -0.032470703, 0.04824829, 0.014472961, -0.06329346, -0.026672363, -0.03829956, -0.026855469, 0.0078048706, 0.0011959076, -0.016845703, 0.014945984, 0.012626648, -0.026611328, -0.045288086, 0.008460999, -0.014892578, 0.0052948, 0.036499023, 0.021133423, -0.028152466, 0.0211792, -0.05441284, -0.011360168, 0.036468506, -0.031158447, -0.027770996, 0.0015535355, -0.02684021, -0.012634277, -0.02520752, 0.026779175, -0.035980225, 0.0026931763, -0.039611816, 0.019317627, -0.016983032, -0.011352539, 0.005783081, -0.028869629, 0.0008330345, 0.019546509, 0.041900635, -0.041625977, -0.03765869, -0.012161255, 0.011444092, -0.009277344, -0.0552063, 0.01574707, -0.024108887, 0.013969421, 0.0058174133, 0.024230957, -0.0236969, 0.022888184, -0.0287323, -0.008338928, 0.0041656494, 0.00068330765, 0.0029792786, -0.0137786865, 0.011672974, 0.0040283203, 0.03881836, -0.028015137, -0.03503418, -0.057922363, 0.03643799, 0.029891968, -0.007045746, 0.07788086, -0.039276123, 0.015327454, -0.035827637, -0.0010118484, -0.009239197, -0.0049705505, -0.055267334, -0.048309326, 0.017181396]}, "B095KPPWGG": {"id": "B095KPPWGG", "original": "Brand: Lamesa\nName: Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.\nFeatures: 7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills.\n100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill.\nResusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up.\nFood-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F.\nIf you are not happy with your new grill mats, please contact us for a refund or replacement.\n", "metadata": {"Name": "Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)", "Brand": "Lamesa", "Description": "It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.", "Features": "7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills.\n100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill.\nResusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up.\nFood-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F.\nIf you are not happy with your new grill mats, please contact us for a refund or replacement.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0072135925, 0.035247803, -0.06585693, -0.029190063, 0.02192688, -0.024414062, -0.029251099, 0.003490448, -0.031311035, 0.03466797, -0.017700195, 0.010223389, 0.009132385, -0.022506714, 0.017410278, -0.015586853, 0.017578125, 0.012283325, 0.0138168335, -0.025634766, -0.013427734, -0.028259277, 0.031433105, 0.059326172, 0.035614014, -0.02192688, -0.015838623, 0.021896362, 0.00932312, -0.008522034, 0.01953125, -0.016220093, 0.0362854, -0.00012421608, -0.055114746, -0.035308838, -0.0028095245, -0.005214691, -0.040649414, 0.025466919, -0.005886078, 0.0116119385, -0.02822876, 0.005542755, -0.040008545, -0.051818848, -0.0027580261, -0.017913818, 0.016693115, 0.038024902, 0.009315491, 0.008018494, 0.0027942657, 0.02128601, -0.012641907, -0.021270752, -0.002380371, 0.0050315857, 0.020339966, 0.0418396, 0.00015115738, 0.0018692017, -0.0015592575, -0.038330078, -0.00089788437, -0.00049734116, 0.045135498, 0.007888794, -0.045288086, -0.0031909943, 0.034088135, -0.016189575, 0.039855957, -0.014389038, -0.013336182, -0.04373169, -0.014328003, -0.026321411, 0.047546387, -0.007980347, -0.05065918, -0.0076179504, 0.038116455, -0.06677246, 0.018692017, -0.03074646, -0.021438599, 0.010215759, -0.01626587, -0.0015535355, -0.006980896, 0.03414917, -0.06896973, 0.0541687, 0.015609741, -0.01398468, 0.013839722, -0.03012085, 0.024002075, 0.0066452026, 0.022857666, -0.051605225, 0.036743164, 0.0068588257, -0.037109375, 0.017715454, 0.0059394836, -0.019866943, -0.042144775, 0.024734497, -0.03338623, -0.073913574, 0.003112793, -0.043670654, -0.032684326, 0.021347046, 0.01600647, -0.037109375, 0.024353027, -0.06149292, -0.037719727, -0.035247803, 0.020584106, 0.047424316, 0.023925781, 0.03286743, -0.010047913, 0.01159668, -0.070495605, 0.062805176, -0.00022232533, -0.015548706, 0.0021915436, 0.034606934, 0.00090789795, -0.027633667, -0.0025596619, -0.027709961, -0.0012302399, 0.006210327, 0.024749756, -0.0076408386, 0.049804688, -0.011230469, 0.0013713837, 0.0047416687, 0.042297363, 0.022277832, -0.028579712, -0.0637207, 0.01335907, 0.039276123, 0.05178833, -0.01234436, -0.05206299, -0.0068511963, -0.018875122, -0.005744934, -0.035888672, -0.031341553, -0.033843994, -0.008483887, 0.033050537, -0.005214691, 0.013938904, 0.016799927, -0.012062073, 0.012802124, 0.016616821, 0.070373535, 0.0039711, 0.0038375854, -0.06274414, -0.00856781, -0.00548172, -0.04034424, 0.0011100769, 0.070739746, 0.056915283, -0.097717285, -0.087524414, -0.066345215, 0.11706543, -0.05947876, -0.037109375, -0.038208008, -0.004169464, 0.02067566, 0.06939697, 0.016311646, -0.0047340393, -0.056549072, -0.02027893, -0.032226562, 0.036346436, 0.016113281, -0.05834961, -0.017959595, 0.005092621, 0.0008134842, -0.0048713684, -0.0038452148, 0.03262329, 0.041015625, 0.031677246, 0.0057907104, -0.0050315857, 0.0015707016, -0.020065308, 0.034362793, 0.020614624, 0.0009021759, -0.009407043, -0.0044441223, 0.016326904, -0.01940918, -0.013420105, -0.021743774, 0.009841919, -0.028747559, 0.049713135, 0.024230957, 0.019882202, 0.035125732, -0.010688782, -0.01625061, -0.017471313, -0.008300781, -0.010467529, 0.0025157928, 0.02330017, 0.026794434, 0.034118652, 0.02671814, -0.01448822, 0.033996582, 0.066101074, 0.02734375, -0.016937256, 0.00036406517, 0.015899658, -0.026321411, -0.024459839, 0.00085926056, 0.015327454, 0.00069618225, 0.012413025, -0.0022068024, 0.0016937256, 0.020462036, 0.025268555, -0.008369446, 0.04260254, 0.03100586, -0.007736206, 0.034729004, -0.070251465, -0.020614624, -0.03152466, 0.019744873, 0.00013577938, 0.0041122437, 0.04196167, -0.02130127, 0.044158936, -0.0040740967, 0.043029785, 0.020935059, -0.030044556, 0.01550293, -0.0002529621, -0.005252838, -0.016433716, -0.012466431, 0.028045654, 0.021224976, -0.04537964, 0.007080078, 0.021987915, -0.008712769, 0.027130127, -0.002155304, 0.012031555, 0.0015611649, 0.05621338, -0.057769775, 0.016921997, 0.036346436, -0.04055786, -0.031677246, 0.026443481, -0.011054993, -0.020385742, -0.013313293, -0.009841919, -0.031051636, -0.019195557, 0.035308838, -0.012893677, 0.010353088, -0.0024585724, 0.045410156, -0.0055503845, 0.011192322, -0.019607544, 0.014274597, -0.025878906, -0.0048599243, -0.02960205, -0.04650879, 0.028244019, 0.03604126, 0.02243042, -0.022521973, 0.04421997, 0.0065345764, 0.0006775856, 0.049835205, 0.026412964, 0.04046631, -0.0073547363, 0.05557251, -0.08166504, 0.02204895, 0.018463135, 0.039642334, -0.020599365, -0.028518677, -8.702278e-05, 0.032836914, 0.041870117, 0.035736084, 0.02330017, 0.0041885376, 0.0031147003, -0.0181427, 0.0023174286, 0.052246094, 0.02268982, -0.018737793, 0.027648926, -0.0035266876, -0.01737976, -0.0038166046, -0.09259033, 0.05206299, 0.06573486, 0.009513855, -0.021942139, 0.010643005, 0.013511658, -0.018066406, 0.016906738, -0.033447266, -0.010032654, -0.0005030632, -0.03527832, -0.021774292, -0.01687622, -0.06829834, -0.012908936, -0.009643555, -0.05255127, -0.043884277, 0.045196533, 0.00040006638, -0.04067993, -0.009590149, 0.037109375, 0.027114868, 0.05618286, 0.012161255, -0.03942871, -0.021148682, -0.0074768066, -0.061767578, 0.015510559, -0.032440186, -0.011291504, -0.010269165, -0.004009247, 0.007663727, 0.0082473755, 0.026672363, 0.0423584, 0.008026123, 0.0014400482, 0.08300781, -0.030059814, -0.029434204, -0.033813477, 0.05807495, -0.03656006, -0.01927185, -0.05203247, 0.009590149, 0.0053901672, -0.07208252, 0.015930176, -0.019012451, -0.08111572, 0.0040893555, -0.007019043, -0.02935791, -0.002840042, -0.0496521, -0.022399902, -0.05142212, 0.010948181, 0.10546875, -0.0335083, -0.016082764, -0.012290955, -0.0028896332, 0.0023155212, 0.040405273, 0.050689697, -0.0060043335, 0.011505127, -0.032287598, 0.038208008, -0.07116699, 0.0020885468, -0.012481689, -0.010848999, 0.0038700104, 0.013824463, 0.027359009, -0.042419434, -0.01260376, -0.0014600754, -0.043121338, -0.026885986, 0.020492554, -0.019088745, 0.020874023, 0.022827148, -0.041931152, 0.062438965, -0.03942871, -0.047607422, -0.008476257, -0.02609253, -0.008613586, -0.04171753, -0.018432617, 0.021972656, -0.03277588, -0.008277893, -0.030792236, -0.012557983, 0.019226074, 0.03753662, 0.017547607, 0.008041382, 0.024856567, 0.0033817291, 0.049560547, 0.028915405, 0.0043640137, -0.0118637085, -0.0703125, 0.11773682, 0.009010315, 0.016403198, -0.041900635, 0.056488037, -0.00983429, -0.0029716492, -0.008964539, -0.0003979206, 0.011665344, -0.005050659, -0.005531311, 0.030883789, 0.0031147003, 0.0013790131, 0.028747559, -0.04159546, -0.02116394, -0.08917236, 0.026824951, -0.084472656, 0.07147217, 0.025787354, -0.024734497, 0.09265137, 0.034423828, -0.0007367134, -0.004550934, 0.012619019, -0.002779007, 0.003025055, 0.016052246, -0.010757446, -0.016052246, 0.009429932, -0.052856445, 0.0052604675, -0.020080566, -0.020965576, 0.02381897, 0.024612427, -0.0029449463, 0.011802673, 0.0070724487, -0.0013904572, 0.014907837, 0.004463196, 0.00081062317, 0.0049476624, -0.013519287, 0.029571533, 0.026245117, -0.022567749, -0.035888672, 0.026748657, 0.0060920715, -0.03326416, -0.011100769, 0.0027198792, 0.0047798157, 0.04434204, 0.059326172, -0.05279541, -0.017333984, 0.0046806335, -0.03262329, -0.050964355, 0.015899658, 0.06274414, 0.025024414, 0.032318115, -0.03793335, -0.013656616, 0.002368927, -0.009674072, 0.031433105, -9.179115e-05, -0.03475952, -0.021774292, -0.0058784485, 0.012619019, -0.019256592, 0.0234375, -0.028305054, 0.014183044, 0.019760132, -0.05026245, -0.002702713, -0.01612854, -0.014434814, -0.014007568, 0.009986877, -0.023544312, -0.023330688, -0.03552246, -0.004711151, 0.0046806335, 0.04119873, -0.0110321045, 0.046813965, -0.04827881, -0.007621765, -0.024642944, 0.018585205, -0.0013399124, -0.017120361, 0.037200928, -0.028900146, -0.04147339, -0.03363037, 0.03387451, -0.0012760162, 0.017440796, -0.026473999, -0.038116455, 0.00061416626, 0.011688232, 0.052703857, -0.021850586, 0.032073975, -0.009780884, -0.0043525696, -0.06121826, -0.016738892, 0.066345215, -0.064331055, -0.025161743, -0.030303955, 0.05606079, -0.0041046143, -0.010536194, -0.06161499, 0.018203735, 0.019073486, -0.014770508, -0.002817154, -0.024902344, 0.017730713, 0.028762817, -0.009544373, -0.0046958923, -0.008415222, 0.034210205, -0.012527466, 0.013908386, -9.0539455e-05, 0.0015439987, -0.03857422, -0.011177063, -0.032958984, -0.015594482, 0.044708252, -0.04159546, 0.008804321, -0.020874023, 0.005493164, 0.002702713, -0.027557373, 0.00053834915, -0.03463745, -0.00015759468, 0.011421204, -0.03164673, -0.036865234, -0.0014600754, -0.00831604, -0.020126343, 0.0032024384, 0.0032215118, -0.0011138916, -0.00025129318, 0.016998291, -0.005207062, -0.046844482, -0.011123657, -0.047668457, 0.008811951, 0.044769287, 0.012748718, 0.025848389, 0.035186768, -0.0155181885, -0.0118637085, -0.03237915, -0.0078125, -0.0049057007, -0.020874023, -0.025253296, -0.027618408, -0.017364502, -0.029769897, -0.026763916, 0.036590576, -0.046325684, -0.048065186, 0.03289795, 0.00982666, 0.027191162, -0.0284729, 0.0619812, -0.016815186, 0.019866943, -0.032836914, 0.005607605, 0.008331299, 0.01600647, -0.027877808, -0.01398468, 0.015716553, -0.04324341, -0.01625061, 0.0009551048, 0.001789093, -0.026229858, 0.06378174, 0.0069999695, -0.00217247, -0.046661377, 0.00050640106, -0.040405273, 0.022018433, -0.044799805, 0.011352539, 0.03845215, 0.033599854, -0.020904541, -0.00051116943, -0.0022068024, -0.00881958, 0.013511658, -0.008926392, -0.008514404, 0.010391235, 0.013435364, -0.0010251999, -0.038970947, 0.004627228, -0.037902832, 0.0362854, -0.010414124, -0.050628662, -0.05328369, -0.022064209, 0.012840271, 0.0079193115, 0.009986877, -0.008583069, -0.008255005, -0.00064992905, 0.024414062, -0.00667572, -0.0047454834, -0.010574341, -0.025222778, -0.019454956, -0.009521484, -0.030334473, 0.038482666, -0.043914795, -0.012687683, 0.051635742, -0.00315094, 0.015823364, 0.04574585, -0.03225708, -0.022247314, -0.013427734, -0.019134521, 0.01109314, -0.04421997, 0.05441284, -0.030532837, -0.047790527, -0.028503418, 0.026260376, 0.02973938, 0.00995636, 0.07232666, 0.047607422, -0.009490967, 0.03643799, -0.006362915, -0.042663574, 0.04901123, 0.015136719, -0.07849121, 0.0039367676, -0.0061569214, 0.0051078796, -0.006412506, -0.055847168, 0.0009403229, 0.039245605, 0.023727417, -0.0006480217, -0.0143585205, -0.050201416, 0.024261475, -0.005771637, 0.013725281, 0.002943039, 0.0104904175, -0.027526855, 0.011688232, -0.045776367, -0.033172607, 0.04598999, 0.026016235, -0.0041999817, -0.024215698, 0.01991272, 0.05419922, -0.022033691, 0.068725586, -0.005832672, -0.064941406, 0.001619339, 0.048553467, 0.05227661, 0.00012600422, 0.0034675598, -0.034210205, 0.012283325, 0.034973145, 0.008377075, -0.01586914, -0.022460938, -0.06713867, 0.04135132, 0.019744873, 0.016143799, 0.023956299, 0.01448822, 0.0025081635, 0.012718201, 0.0037345886, 0.035491943, -0.007911682, -0.03100586, -0.005607605, 0.007865906, 0.034454346, 0.008728027, 0.011474609, 0.048950195, 0.016418457, 0.0064468384, 0.00868988, 0.012168884, 0.014175415, 0.029632568, -0.020141602, -0.0063819885, 0.0052452087, 0.006855011, -0.014862061, 0.000895977, 0.035949707, -0.005672455, 0.007896423, -0.003944397, 0.036621094, 0.003993988, 0.029525757, 0.04748535, -0.05392456, -0.008995056, -0.001912117, 0.021331787, -0.006538391, 0.012008667, 0.0008234978, 0.017425537, 0.051239014, -0.021636963, 0.09814453, -0.07080078, 0.0066375732, -0.02708435, 0.017044067, -0.02859497, -0.02406311, 0.007293701, 0.030288696, 0.01133728, -0.013442993, 0.024917603, 0.016159058, 0.051696777, -0.047210693, 0.0010070801, 0.004333496, 0.009735107, -0.031585693, -0.030929565, -0.040649414, -0.036468506, 0.028884888, 0.01876831, -0.024246216, -0.0107040405, 0.002506256, 0.0143966675, -0.01689148, -0.0446167, 0.014762878, -0.03024292, 0.022109985, 0.033233643, 0.012359619, 0.015808105, 0.023513794, -0.021194458, 0.036468506, 0.00466156, 0.02810669, 0.012069702, 0.028717041, 0.07574463, 0.04055786, 0.053009033, -0.043884277, 0.01776123, 0.059143066, -0.00035095215, 0.046295166, -0.010734558, -0.015319824, -0.0637207, -0.00843811, 0.011329651, -0.046081543, -0.020523071, -0.023162842, -0.0032291412, -0.015159607, -0.023117065, 0.009017944, 0.0009522438, -0.027160645, 0.0018129349, -0.040802002, 0.008529663, -0.01234436, -0.008346558, -0.018234253, -0.0062561035, -0.04336548, 0.018737793, 0.0063934326, -0.043823242, -0.016921997, 0.02331543, 0.010810852, -0.0993042, -0.05065918, -0.03643799, 0.028945923, 0.011886597, 0.07659912, -0.041900635, -0.056549072, -0.092163086, 0.009414673, -0.09100342, 0.017959595, -0.016967773, 0.012786865, 0.009674072, -0.016571045, -0.0011301041, 0.06518555, 0.0056419373, -0.0038776398, -0.016326904, -0.04083252, -0.027435303, 0.046203613, -0.00040197372, -0.036499023, -0.022247314, 0.038146973, 0.022232056, 0.03881836, 0.052886963, -0.014320374, -0.048065186, -0.02003479, -0.039489746, 0.051208496, -0.010169983, -0.013206482, 0.05239868, 0.012321472, -0.011169434, 0.049072266, 0.046569824, 0.0037269592, 0.037200928, 0.061523438, 0.00831604, -0.00085163116, -0.0149383545, -0.040985107, -0.005870819, 0.01423645, 0.080444336, 0.038330078, -0.036132812, 0.002565384, -0.004550934, 0.012916565, -0.021377563, -0.017425537, -0.0051193237, 0.01449585, 0.0043640137, 0.0025367737, 0.005771637, 0.023071289, -0.025619507, 0.0031700134, 0.02243042, -0.013130188, -0.0062675476, 0.005996704, -0.04449463, 0.0048294067, -0.0025043488, -0.029266357, 0.042663574, -0.057891846, -0.012741089, 0.037750244, 0.0066871643, 0.035339355, -0.020614624, -0.07501221, -0.013206482, 0.013038635, -0.001329422, 0.013710022, 0.009262085, -0.0019664764, -0.0013933182, 0.04434204, -0.018295288, -0.023422241, -0.03475952, 0.03012085, 0.03050232, -0.013458252, 0.058746338, -0.02708435, 0.030212402, -0.0050621033, 0.03717041, -0.0037212372, 0.01612854, 0.042938232, -0.0012130737, 0.020492554]}, "B08D8YH6W6": {"id": "B08D8YH6W6", "original": "Brand: WADEO\nName: WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nDescription: Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nFeatures: Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports.\n2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame.\nOur propane hose is 350PSI, High pressure resistance ensures your safety.\nEasy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill.\nOur products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc\n", "metadata": {"Name": "WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank", "Brand": "WADEO", "Description": "Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank", "Features": "Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports.\n2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame.\nOur propane hose is 350PSI, High pressure resistance ensures your safety.\nEasy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill.\nOur products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017166138, 0.008361816, -0.044036865, -0.024520874, -0.008224487, 0.0032634735, -0.021896362, 0.006000519, 0.020629883, 0.035247803, 0.007408142, 0.009391785, 0.05319214, -0.032714844, -0.0030288696, 0.010192871, 0.020523071, -0.0047302246, -0.0022201538, -0.010406494, 0.008163452, 0.006126404, -0.020858765, 0.113586426, 0.014083862, -0.030517578, 0.027877808, -0.024978638, 0.037963867, 0.0026664734, 0.018554688, -0.032806396, 0.054626465, 0.004085541, -0.05316162, 0.0069770813, -0.015686035, -0.01638794, -0.033966064, 0.015068054, 0.011749268, -0.009422302, -0.05102539, -0.056793213, -0.048095703, -0.026626587, 0.008590698, -0.0048713684, -0.003944397, 0.031555176, 0.019332886, -0.03475952, 0.014846802, 0.005458832, -0.0088272095, -0.0051841736, 0.025970459, -0.07647705, -0.006767273, 0.035003662, 0.032562256, 0.023284912, 0.010665894, 0.006214142, -0.007648468, 0.0077781677, 0.071899414, -0.0054244995, -0.0033912659, -0.01802063, 0.003616333, 0.018096924, 0.015312195, -0.012542725, -0.01235199, -0.031799316, 0.01979065, -0.02961731, -0.00031518936, 0.013435364, 0.048706055, -0.0072898865, 0.009483337, -0.0050697327, 0.016342163, -0.00033020973, 0.0096588135, -0.025512695, -0.026870728, -0.01687622, -0.029876709, -0.008544922, -0.02355957, -0.007068634, -0.020751953, -0.011741638, -0.042297363, -0.02909851, -0.0069885254, 0.026824951, 0.035736084, -0.033966064, 0.067993164, -0.023864746, 0.021072388, 0.0129470825, -0.018829346, -0.04397583, 0.008453369, 0.0049934387, -0.040283203, 0.015594482, 0.008575439, -0.03567505, -0.0076904297, 0.043395996, 0.022705078, 0.0040283203, 0.024917603, -0.008331299, -0.00082731247, 0.0044784546, -0.005596161, -0.01121521, 0.02394104, 0.020553589, -0.0041046143, 0.0021762848, -0.018585205, -0.01083374, -0.015357971, 0.017990112, 0.064453125, 0.068237305, 0.033935547, -0.00066804886, 0.018463135, -0.018035889, -0.004886627, 0.0131073, 0.009849548, -0.051727295, -0.023330688, 0.013290405, -0.014831543, 0.026397705, 0.023025513, 0.008255005, -0.02128601, -0.038513184, -0.029937744, 0.0129776, 0.034423828, -0.003332138, -0.035736084, -0.028793335, 0.005508423, -0.0340271, 0.022216797, -0.046783447, -0.036895752, -0.0062828064, 0.04425049, 0.020812988, 0.016326904, 0.007209778, -0.024795532, -0.0053749084, 0.028167725, 0.092163086, -0.01474762, 0.014694214, 0.03314209, 0.03756714, 7.420778e-05, -0.0012865067, -0.028869629, 0.057556152, 0.064086914, -0.094055176, -0.06585693, -0.0569458, 0.09063721, -0.031799316, 0.041290283, -0.06994629, 0.030426025, -0.039520264, -0.030899048, 0.02708435, -0.0043144226, 0.043151855, 0.010604858, -0.035705566, -0.00046873093, 0.0073394775, -0.00869751, 0.012527466, -0.016662598, 0.014656067, -0.036590576, 0.020843506, -0.047607422, 0.049560547, 0.023605347, -0.032348633, 0.019577026, -0.013710022, 0.004184723, 0.02659607, -0.010498047, -0.03994751, 0.008628845, 0.00819397, 0.006160736, -0.012756348, -0.024368286, -0.058929443, -0.01020813, -0.05545044, 0.030319214, 0.02859497, 0.003967285, 0.06665039, -0.025558472, -0.018966675, -0.00030589104, -0.0042686462, -0.01953125, -0.0069770813, 0.022567749, 0.025604248, 0.1038208, 0.05670166, -0.048034668, 0.008766174, 0.058135986, 0.055541992, -0.03652954, -0.0056533813, 0.018173218, -0.060943604, -0.034240723, 0.025726318, -0.031921387, -0.08581543, -0.03363037, 0.04537964, -0.037994385, 0.01486969, 0.07977295, 0.012237549, 0.0053977966, 0.039520264, -0.049438477, 0.031433105, -0.0079193115, 0.0050582886, -0.036956787, 0.02255249, -0.0014314651, -0.03050232, -0.007911682, -0.015335083, 0.013458252, 0.04852295, 0.04812622, 0.029571533, -0.01864624, 0.017532349, -0.0026855469, -0.0041618347, -0.00030493736, 0.0039634705, -0.0496521, 0.015296936, -0.010917664, 0.011909485, -0.014793396, -0.0077056885, 0.018325806, 0.0023002625, 0.017593384, -0.021957397, 0.028381348, 0.011543274, 0.014167786, 0.0012931824, -0.033203125, 0.032409668, 0.0184021, 0.059631348, 0.015640259, 0.010932922, -0.04006958, 0.033447266, 0.093811035, -0.0011644363, 0.016723633, 0.0025310516, 0.027511597, 0.047576904, -0.0009646416, -0.02458191, -0.0036010742, -0.021209717, -0.01600647, 0.0345459, 0.026565552, -0.01637268, -0.014465332, 0.05596924, 0.006965637, 0.03930664, -0.0075302124, -0.008796692, 0.014305115, 0.029586792, 0.06719971, 0.06817627, 0.0009121895, 0.007881165, -0.044189453, 0.0014715195, 0.0075263977, 0.004924774, -0.0011377335, -0.0035552979, -0.0127334595, 0.006576538, 0.026367188, -0.01890564, -0.008995056, -0.026473999, 0.008850098, -0.00022494793, 0.02571106, -0.0012636185, 0.005256653, -0.047729492, 0.050994873, -0.056915283, -0.0051612854, 0.06335449, -0.02331543, -0.0016441345, 0.015068054, 0.009468079, 0.026870728, 0.012756348, -0.012268066, -0.0017023087, 0.022323608, -0.022460938, 0.0340271, -0.025558472, -0.0748291, -0.0009212494, 0.033050537, -0.04727173, 0.014289856, -0.012107849, -0.019424438, -0.03692627, 0.061828613, -0.04034424, -0.06732178, -0.012397766, -0.02909851, -0.0016098022, -0.02432251, 0.0067863464, -0.047210693, -0.019683838, -0.035583496, 0.026779175, 0.022232056, -0.033813477, 0.035980225, 0.017318726, 0.00063991547, 0.01713562, -0.028701782, 0.021087646, -0.024139404, 0.03225708, 0.055145264, 0.05029297, 0.015098572, -0.041412354, 0.016799927, 0.07513428, -0.01146698, -0.025283813, -0.012535095, -0.0010023117, 0.016647339, -0.013809204, 0.0077209473, -0.03793335, -0.033721924, 0.011756897, -0.0010576248, 0.003955841, 0.026916504, -0.0637207, 0.008735657, -0.055114746, 0.03302002, 0.03729248, -0.018737793, 0.031051636, -0.019348145, 0.017715454, -0.035186768, 0.019744873, -0.0088272095, -0.005001068, -0.01335144, 0.024276733, 0.021240234, -0.034606934, 0.0057029724, 0.025009155, -0.014770508, -0.032989502, -0.009712219, 0.0016088486, -0.018997192, 0.022247314, -0.02128601, -0.010398865, -0.027877808, -0.053710938, -0.025390625, -0.024017334, -0.0017433167, -0.01763916, -0.012702942, -0.012527466, -0.05795288, -0.026290894, -0.044189453, 0.00071048737, -0.01838684, -0.017959595, -0.030258179, -0.07159424, -0.013633728, -0.03805542, -0.0036354065, 0.010360718, 0.013053894, 0.011520386, 0.0065460205, 0.061035156, 0.0076179504, 0.031066895, 0.007926941, 0.025756836, 0.0015888214, -0.019683838, 0.029815674, 0.010383606, -0.014198303, -0.035003662, 0.018920898, 0.015304565, -0.005130768, -0.015571594, 0.007610321, 0.027938843, -0.016906738, -0.027023315, 0.051086426, 0.024154663, -0.00819397, -0.035064697, 0.012084961, 0.0019950867, -0.054473877, 0.008964539, -0.07519531, 0.054351807, 0.012001038, -0.020523071, 0.042938232, 0.06414795, -0.009162903, 0.020828247, 0.07330322, -0.041931152, 0.009567261, 0.045776367, -0.05340576, 0.0019607544, 0.007118225, -0.025680542, 0.03378296, 0.029968262, -0.06463623, 0.011581421, -0.022323608, -0.048583984, -0.025527954, 0.017547607, -0.0056495667, -0.003025055, 0.006111145, -0.06744385, -0.014930725, -0.036315918, -0.0022296906, 0.0026760101, -0.013900757, -0.03491211, 0.017700195, -0.02810669, -0.018096924, 0.010253906, 0.01701355, -0.022018433, 0.010910034, 0.008636475, 0.035491943, 7.724762e-05, -0.026397705, -0.0012273788, -0.041015625, -0.0055732727, 0.042266846, 0.030258179, 0.008270264, -0.018005371, -0.010559082, 0.014373779, 0.0060577393, 0.052490234, 0.00466156, -0.066223145, -0.0073623657, -0.0087890625, 0.000910759, -0.0463562, 0.0053901672, -0.050445557, -0.01625061, -0.0082092285, -0.02229309, -0.003993988, -0.0017309189, 0.0009627342, -0.02255249, -0.048431396, -0.045684814, 0.018951416, -0.003200531, 0.0009841919, 0.0063934326, -0.012672424, -0.0018396378, 0.046020508, -0.054351807, -0.020355225, -0.0869751, 0.017578125, 0.00014173985, 0.005821228, -0.050109863, -0.018539429, 0.005996704, 0.008255005, 0.08428955, 0.024932861, -0.01965332, -0.03366089, -0.012290955, -0.008102417, 0.03894043, 0.057434082, -0.015853882, 0.02684021, -0.01399231, -0.0178833, -0.051879883, 0.0030822754, 0.03894043, -0.01184845, -0.0357666, 0.009033203, 0.055999756, -0.018051147, 0.0064048767, -0.03643799, 0.014038086, -0.008468628, -0.020507812, -0.023117065, -0.004261017, 0.017105103, 0.01486969, -0.024551392, -0.003730774, -0.013839722, 0.04800415, 0.0069007874, 0.029846191, 0.030395508, -0.010307312, -0.060150146, 0.00049209595, 0.03729248, -0.038146973, 0.04824829, -0.029891968, -0.064941406, -0.08660889, 0.08874512, 0.08709717, -0.009971619, 0.026123047, 9.518862e-05, -0.017669678, 0.0096588135, 0.0055236816, 0.009941101, -0.032196045, -0.048461914, -0.043182373, 0.029815674, -0.033843994, 0.0077209473, 0.014671326, 0.008460999, 0.009559631, -0.04156494, 0.013572693, -0.018661499, -0.02279663, 0.014343262, 0.031799316, -0.008964539, -0.060180664, 0.01184082, -0.008560181, 0.010757446, 0.0018062592, -0.015426636, -0.01727295, 0.010398865, -0.05895996, 0.005065918, -0.024917603, 0.03277588, 0.025619507, 0.029190063, 0.0053138733, 0.028305054, -0.022979736, 0.010253906, -0.012130737, 0.01071167, -0.030548096, 0.0018692017, 0.01852417, -0.03479004, -0.0047798157, 0.072509766, -0.03845215, 0.0524292, 0.05645752, -0.03048706, -0.0074653625, 0.008369446, -0.009414673, -0.0647583, 0.06414795, -0.012573242, -0.05053711, -0.022277832, -0.0074386597, 0.0018062592, 0.014015198, 0.013328552, -0.019210815, 0.041412354, -0.016418457, -0.027359009, 0.0063476562, 0.021575928, -0.043670654, -0.041992188, 0.017120361, -0.058258057, -0.06549072, -0.0047836304, -0.030883789, 0.004261017, 0.0075149536, -0.009292603, 0.06573486, -0.008522034, -0.06341553, -0.046173096, 0.00018429756, 0.013671875, -0.0073776245, -0.027252197, 0.014831543, 0.011054993, -0.006668091, -0.012939453, 0.011817932, 0.0004506111, -0.02432251, -0.01852417, -0.020889282, 0.028564453, 0.007835388, 0.021118164, -7.122755e-05, -0.02418518, 0.066833496, -0.025115967, -0.00082445145, 0.0003683567, 0.025115967, -0.005329132, -0.0007801056, 0.000151515, 0.010894775, 0.015357971, 0.03427124, -0.008544922, -0.019485474, -0.015335083, 0.004196167, -0.015617371, -0.06817627, 0.07141113, 0.036071777, 0.0061912537, 0.002588272, -0.01852417, -0.02458191, -0.02229309, -0.0019025803, -0.045715332, -0.064575195, -0.039611816, -0.017486572, -0.0093307495, 0.005859375, -0.0044670105, 0.022338867, -0.0004580021, 0.012908936, 0.004180908, 0.0051612854, -0.017089844, -0.038391113, 0.008422852, -0.0064353943, 0.0060806274, 0.000667572, 0.026931763, -0.037872314, -0.02482605, 0.03805542, 0.019470215, -0.004196167, -0.00035214424, 0.015098572, 0.064453125, -0.029067993, 0.04940796, -0.02192688, 0.00047397614, -0.023956299, 0.04244995, 0.013221741, 0.029907227, -0.033355713, -0.020690918, -0.023361206, 0.011505127, -0.008476257, 0.0390625, -0.052001953, -0.017471313, -0.005897522, 0.056274414, -0.018356323, -0.02835083, 0.000582695, -0.019241333, -0.073791504, -0.028640747, -0.006565094, -0.04751587, 0.02041626, -0.03982544, -0.006137848, -0.02583313, -0.025299072, 0.007827759, -0.014640808, 0.008758545, -0.032318115, 0.061340332, -0.014678955, 0.019088745, 0.04940796, -0.028671265, 0.028121948, -0.010231018, 0.0657959, 0.016357422, -0.0077590942, -0.033050537, -0.00932312, 0.022628784, -0.0075187683, 0.035949707, -0.03866577, -0.008171082, 0.016952515, -0.037597656, 0.00094747543, 0.009941101, -0.0018081665, -0.006843567, -0.0019607544, 0.0023918152, -0.020309448, 0.029266357, 0.03933716, 0.030700684, -0.0075187683, 0.041137695, -0.04663086, -0.046966553, 0.031677246, -0.064575195, 0.03982544, 0.03866577, -0.008171082, -0.016479492, -0.035369873, -0.010246277, 0.04486084, -0.016677856, -0.011917114, 0.009140015, 0.028213501, -0.008728027, 0.011352539, -0.04071045, -0.040283203, -0.03540039, -0.010375977, 0.00066804886, -0.001578331, 0.012359619, 0.027862549, 0.033203125, 0.0019836426, 0.028671265, -0.011314392, 0.05114746, 0.032196045, -0.044769287, -0.060455322, -0.030654907, -0.013175964, -0.03112793, 0.013771057, 0.054229736, -0.0026493073, 0.07330322, 0.010437012, 0.03845215, 0.062286377, -0.0007367134, 0.027023315, 0.00015747547, 0.0024967194, 0.03326416, -0.027923584, -0.014808655, -0.013748169, 0.010253906, 0.024139404, 0.015289307, 0.03062439, -0.005580902, -0.05871582, 0.017227173, -0.008087158, 0.04522705, -0.00982666, -0.022613525, -0.103759766, 0.01335144, -0.021896362, -0.033050537, -0.064208984, -0.056610107, -0.038757324, -0.070373535, 0.035736084, -0.019241333, -0.01247406, 0.0004696846, 0.008560181, -0.04788208, -0.022155762, -0.0079956055, 0.00932312, 0.02709961, -0.017959595, 0.010032654, -0.0132751465, -0.008430481, -0.021896362, 0.010482788, -0.028305054, -0.012840271, 0.014045715, -0.0066184998, -0.017044067, -0.002784729, 0.031829834, 0.0758667, 0.028930664, 0.007080078, 0.019927979, -0.020309448, -0.0110321045, 0.0127334595, 0.015625, -0.03225708, -0.02154541, 0.0037059784, -0.0013599396, 0.051361084, 0.011703491, -0.004295349, 0.023071289, 0.027267456, 0.015716553, -0.0015611649, -0.007068634, -0.007671356, 0.032409668, 0.019165039, -0.0061035156, -0.0035152435, 0.020019531, -0.03250122, 0.056854248, -0.0024547577, 0.030166626, -0.013046265, -0.08166504, -0.035461426, -0.028930664, 0.019851685, 0.027389526, -0.043792725, -0.033355713, 0.00944519, 0.006164551, -0.015853882, 0.015808105, 0.028182983, 0.017959595, 0.028182983, -0.017364502, -0.01576233, -0.022155762, -0.011390686, -0.003063202, -0.082214355, 0.06124878, -0.048431396, -0.0008673668, 0.0016822815, -0.05130005, -0.012069702, -0.035858154, -0.036468506, -0.04019165, -0.074035645, 0.055877686, 0.019836426, -0.004562378, 0.011665344, 0.031677246, -0.017471313, -0.0024528503, 0.031799316, 0.0050239563, 0.023391724, -0.020462036, 0.028381348, -0.01940918, 0.09240723, 0.0034980774, -0.062164307, -0.04864502, 0.040039062, -0.00061941147, -0.022109985, 0.009635925, -0.005065918, 0.0029010773, 0.03289795, -0.020736694, -0.039733887, 0.023498535, 0.078552246, 0.0121154785, 0.024108887]}, "B00YDST5EW": {"id": "B00YDST5EW", "original": "Brand: onlyfire\nName: onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others\nDescription: The onlyfire 14451 igniter fits Models of following BBQ gas grills:\u00a0

      Uniflame Part Numbers: 55-07-448;

      Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

      Amana Part Numbers: FCTG3007029;

      Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

      Suitable Models of BBQ gas grills:
      Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

      Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

      Exact-fit parts !Cooks better! Durable construction and Lasts longer!

      A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

      NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

      Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

      \nFeatures: 7/8\" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet \"AA\" Battery Push Button Ignitor (Battery not include)\nFits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP\nFits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650\nFits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603\nSuitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372\n", "metadata": {"Name": "onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others", "Brand": "onlyfire", "Description": "The onlyfire 14451 igniter fits Models of following BBQ gas grills:\u00a0

      Uniflame Part Numbers: 55-07-448;

      Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

      Amana Part Numbers: FCTG3007029;

      Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

      Suitable Models of BBQ gas grills:
      Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

      Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

      Exact-fit parts !Cooks better! Durable construction and Lasts longer!

      A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

      NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

      Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

      ", "Features": "7/8\" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet \"AA\" Battery Push Button Ignitor (Battery not include)\nFits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP\nFits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650\nFits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603\nSuitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013832092, -0.016235352, -0.005832672, -0.029251099, -0.02418518, 0.021514893, -0.036499023, 0.0025691986, -0.03237915, 0.025238037, 0.0012149811, 0.00548172, 0.018447876, -0.022766113, 0.017684937, -0.0209198, 0.026947021, -0.014198303, 0.012138367, -0.021621704, 0.023849487, 0.0006866455, -0.022384644, 0.08728027, 0.04537964, -0.033843994, 0.01084137, 0.003993988, 0.021331787, 0.008743286, 0.040374756, -0.017501831, 0.03881836, -0.010620117, -0.03842163, -0.04437256, -0.031311035, 0.005329132, -0.02508545, 0.0127334595, 0.030792236, -0.036743164, -0.0158844, 0.008560181, -0.013473511, -0.056121826, 0.04269409, -0.02861023, 0.010971069, 0.0048217773, 0.03894043, 0.01651001, 0.032104492, 0.037506104, -0.026947021, 0.014465332, 0.020568848, -0.014778137, 0.016998291, -2.3066998e-05, -0.0022392273, 0.018325806, 0.016464233, -0.0002901554, -0.034057617, -0.012397766, 0.055267334, 0.007648468, -0.025100708, -0.04171753, 0.042053223, 0.012756348, 0.018508911, -0.029708862, -0.04458618, -0.008476257, 0.028823853, -0.033172607, 0.020828247, -0.031982422, 0.028015137, -0.0440979, 0.02784729, -0.0055656433, 0.014717102, 0.011512756, 0.00031232834, -0.019897461, -0.0680542, -0.04031372, -0.037719727, -0.009994507, -0.09552002, 0.012550354, -0.00504303, 0.009819031, -0.0032978058, 0.0042686462, 0.028640747, -0.004333496, -0.001376152, -0.016418457, -0.034484863, -0.010864258, -0.0048332214, 0.07458496, 0.02015686, 0.04876709, -0.009986877, -0.012275696, 0.0020198822, -0.06744385, -0.008369446, -0.040771484, -0.010017395, 0.022537231, -0.013832092, -0.0030002594, 0.0035076141, -0.031921387, -0.008468628, -0.005680084, 0.0016098022, 0.032714844, -0.0047798157, -0.014930725, -0.012390137, 0.003293991, -0.0058174133, 0.03540039, -0.037322998, -0.00699234, 0.05895996, 0.04321289, 0.016677856, -0.022994995, 0.023147583, 0.022613525, 0.046295166, -0.022735596, 0.024398804, -0.01058197, 0.01612854, 0.04547119, 0.022415161, 0.023529053, 0.031341553, 0.01576233, -0.0076942444, -0.007835388, -0.0037136078, 0.018936157, 0.03439331, 0.03250122, -0.056152344, 0.014022827, 0.007286072, 0.0051460266, -0.04156494, -0.051361084, -0.010536194, -0.018569946, -0.017333984, 0.017990112, -0.0072631836, 0.038146973, 0.023788452, 0.010253906, 0.016021729, 0.015029907, -0.01361084, -0.025680542, 0.03149414, 0.0037765503, -0.017669678, 0.00630188, -0.0065956116, 0.06695557, 0.050720215, -0.07897949, -0.037841797, -0.04159546, 0.114746094, -0.035888672, -0.056640625, -0.016021729, 0.022979736, 0.06390381, 0.02571106, 0.012451172, 0.07183838, -0.01864624, 0.0016851425, -0.020751953, 0.01789856, -0.013748169, -0.040252686, -0.016784668, -0.013320923, 0.0010499954, -0.0059280396, 0.00554657, 0.018249512, -0.019210815, -0.068847656, 0.012207031, -0.03289795, 0.04638672, 0.022338867, 0.013786316, 0.012641907, 0.004890442, 7.659197e-05, -0.041137695, -0.05999756, -0.013664246, -0.012527466, 0.0072250366, -0.017288208, 0.016464233, 0.020553589, -0.049102783, -0.0020427704, 0.026672363, 0.029510498, -0.0113220215, -0.018630981, -0.02218628, 0.014572144, 0.008361816, -0.023757935, 0.03463745, 0.021972656, 0.04989624, -0.024917603, 0.035949707, 0.031677246, 0.08276367, -0.023742676, -0.026947021, 0.014427185, -0.052764893, -0.034484863, 0.01461792, -0.018722534, 0.0019235611, 0.017532349, -0.008079529, -0.023330688, 0.01235199, 0.0007901192, 0.03729248, 0.023880005, 0.050872803, -0.010475159, 0.03186035, -0.031921387, 0.04849243, -0.047546387, -0.0049934387, -0.00932312, 0.003932953, 0.03427124, -0.021209717, 0.034851074, 0.0067863464, 0.041870117, 0.03112793, -0.020614624, -0.023773193, 0.009674072, 0.02798462, 0.0015926361, 0.01210022, 0.036315918, 0.0073127747, -0.047424316, -0.00762558, 0.04827881, -0.00061273575, 0.0018606186, 0.01360321, 0.022903442, -0.009162903, 0.051239014, 0.022033691, -0.010284424, -0.032440186, -0.039031982, -0.025512695, 0.018859863, -0.009429932, -0.04373169, 0.012802124, -0.013420105, -0.02420044, -0.009490967, 0.002922058, 0.0051727295, -0.01965332, -0.01751709, 0.042236328, 0.010429382, -0.012016296, -0.014709473, 0.048309326, -0.01121521, -0.012283325, -0.011054993, -0.058746338, 0.04397583, 0.018875122, 0.043792725, 0.0284729, 0.040374756, -0.010604858, -0.00065612793, 0.06359863, -0.023132324, -0.039642334, -0.022491455, 0.00491333, -0.018447876, -0.008163452, 0.008094788, 0.007987976, -0.018737793, 0.005619049, -0.016082764, 0.00043296814, 0.016723633, -0.010887146, 0.0007557869, 0.019821167, 0.0007839203, -2.4974346e-05, -0.005016327, 0.03982544, -0.0107803345, -0.021133423, -0.016326904, -0.01675415, 0.0005617142, -0.02709961, -0.03302002, -0.029342651, 0.028396606, -0.0018939972, -0.027069092, -1.2457371e-05, 0.028503418, -0.019378662, 0.042144775, -0.006580353, 0.023757935, 0.013702393, -0.06341553, -0.038269043, -0.010856628, -0.086242676, -0.013641357, -0.009361267, -0.042541504, 0.049194336, 0.032836914, -0.031204224, -0.013122559, 0.027908325, -0.0014219284, 0.0037879944, 0.026611328, 0.004699707, -0.016647339, -0.020614624, -0.020111084, -0.030181885, 0.02949524, -0.043182373, 0.005317688, 0.014335632, -0.031082153, 0.013259888, -0.020095825, 0.055633545, 0.00084257126, 0.027114868, 0.01789856, 0.053009033, -0.013435364, -0.020736694, -0.015823364, 0.04574585, -0.03955078, -0.021865845, 0.014541626, 0.022735596, -0.00920105, -0.061798096, -0.002948761, -0.02532959, -0.059417725, -0.013175964, -0.034057617, -0.026275635, 0.009803772, -0.0960083, -0.0056114197, -0.06286621, 0.012260437, 0.013092041, -0.014274597, 0.01083374, -0.017684937, 0.002456665, -0.014076233, -0.026229858, -0.02267456, -0.0019350052, -0.045684814, 0.007408142, 0.027160645, -0.0012178421, -0.006591797, 0.016052246, -0.054229736, -0.049804688, 0.00111866, 0.036224365, -0.07159424, 0.04598999, -0.027893066, -0.0040626526, -0.023666382, -0.0074691772, -0.014183044, 0.017364502, -0.0010375977, -0.030929565, 0.018981934, -0.036376953, -0.05883789, -0.032226562, -0.02520752, 0.0016679764, -0.018814087, -0.021240234, -0.010055542, -0.05368042, -0.022918701, -0.03933716, 0.00063467026, 0.0017728806, 0.04547119, 0.03845215, 0.00037050247, 0.10925293, 0.007041931, 0.027832031, 0.021774292, -0.02571106, -0.029937744, -0.020706177, 0.016860962, -0.009536743, 0.0011167526, -0.029205322, 0.059051514, -0.006137848, -0.0076675415, 0.018829346, -0.02696228, 0.014160156, 0.04055786, -0.016616821, 0.005580902, -0.01828003, 0.017288208, -0.005771637, 0.008354187, -0.033599854, -0.027160645, -0.010948181, -0.009025574, 0.0713501, 0.043029785, -0.013893127, 0.0463562, 0.045837402, -0.01033783, 0.09863281, 0.05014038, 0.026382446, 6.6280365e-05, 0.08508301, -0.04373169, 0.033325195, 0.009895325, 0.0062828064, 0.006450653, -0.012397766, -0.034576416, -0.0006055832, -0.024383545, -0.0357666, -0.026504517, 0.025970459, 0.02255249, -0.023162842, -0.0023422241, -0.045074463, -0.005634308, -0.050323486, 0.010818481, -0.0028820038, -0.017242432, -0.017166138, 0.010650635, 0.0018224716, -0.021560669, -0.009132385, -0.0446167, 0.016067505, 0.029144287, 0.05819702, -0.06518555, -0.015823364, 0.019989014, 0.029846191, -0.0019683838, 0.02532959, 0.04473877, 0.007827759, 0.03604126, -0.0030517578, -0.03543091, -0.030899048, 0.0035972595, 0.037017822, 0.004928589, -0.057006836, 0.018951416, 0.045166016, 0.0077285767, -0.03314209, 0.0098724365, -0.044525146, 0.009773254, -0.050964355, 0.0017881393, -0.07116699, -0.017364502, 0.022521973, 0.014862061, -0.02456665, -0.030685425, 0.026351929, 0.012001038, -0.012466431, -0.0074806213, 0.003118515, -0.010116577, 0.004798889, -0.043304443, 0.02810669, -0.054779053, 0.008148193, -0.00015187263, -0.024291992, 0.049682617, -0.02670288, 0.000330925, -0.0019226074, 0.07733154, -0.04284668, 0.021240234, -0.060302734, -0.024353027, -0.011184692, 0.0132369995, 0.048858643, -0.006175995, 0.0368042, -0.027923584, -0.011367798, -0.055603027, -0.0039043427, 0.080566406, -0.045532227, -0.02645874, -0.03845215, 0.029083252, 0.011413574, -0.0010499954, -0.02798462, 0.028305054, -0.0090408325, 0.06738281, -0.037719727, -0.026138306, 0.0085372925, -0.040039062, 0.025314331, 0.0046653748, -0.007217407, 0.034576416, 0.05178833, 0.0041999817, -0.03225708, -0.012413025, -0.047576904, -0.0013637543, 0.039764404, -0.038330078, 0.007843018, -0.046813965, -0.0017681122, -0.07562256, 0.07672119, 0.015541077, -0.00315094, -0.020706177, -0.019348145, -0.024047852, -0.0770874, -0.020080566, -0.0107040405, 0.03717041, 0.012382507, -0.029159546, 0.01727295, -0.008377075, 0.010551453, -0.0058288574, 0.017990112, 0.0013551712, -0.052581787, 0.011314392, -0.015007019, 0.003501892, 0.010314941, -0.02003479, 0.01108551, -0.050994873, 0.037322998, 0.057922363, -0.012191772, -0.00017690659, -0.007083893, -0.022949219, -0.042419434, -0.006538391, -0.0010004044, 0.006580353, -0.0015153885, -0.0103302, -0.03503418, -0.019226074, -0.00037622452, 0.059692383, -0.030761719, -0.048095703, 0.06262207, -0.0068740845, -0.0129852295, -0.013916016, 0.02809143, 0.013549805, 0.015731812, -0.008636475, -0.0016508102, -0.017807007, 0.007434845, 0.0058288574, -0.009292603, -0.026504517, 0.03414917, 0.043670654, 0.0211792, -0.00095653534, -0.011062622, 0.00028204918, 0.016479492, 0.027877808, -0.0031433105, -0.012321472, 0.033691406, 0.028564453, 9.3102455e-05, 0.007369995, -0.01576233, -0.025802612, -0.009056091, -0.022979736, -0.05319214, -0.008705139, -0.006668091, -0.032562256, 0.021194458, 0.031234741, -0.0011444092, 0.050323486, 0.007858276, -0.070617676, -0.038482666, -0.01638794, 0.04159546, -0.008407593, -0.0042152405, 0.018722534, 0.02319336, 0.020355225, -0.01701355, -0.023086548, 0.002626419, -0.030288696, -0.01008606, -0.019561768, -0.007457733, -0.021316528, 0.0491333, 0.00069236755, -0.031402588, 0.011062622, 0.034057617, 0.025390625, 0.0155181885, -0.02885437, 0.04043579, 0.013710022, 0.033081055, -0.0056533813, -0.05142212, 0.07269287, -0.032348633, -0.037353516, -0.04019165, 0.04031372, -0.015151978, -0.051239014, 0.08666992, 0.028930664, 0.017211914, 0.011207581, -0.010314941, -0.066101074, -0.017486572, -0.020904541, -0.015289307, -0.057556152, -0.051452637, -0.013244629, 0.024551392, -0.0035095215, -0.024490356, 0.035858154, -0.025680542, -0.020889282, -0.031585693, -0.015594482, -0.0004374981, -0.06567383, 0.008338928, -0.0064430237, 0.022140503, 0.012763977, 0.029434204, -0.09057617, -0.039276123, 0.025939941, 0.0029735565, 0.023391724, -0.011657715, 0.02407837, 0.016967773, -0.018554688, 0.044006348, -0.0085372925, 0.003030777, 0.015060425, 0.02281189, -0.021438599, 0.042419434, -0.03286743, 0.0015497208, -0.058044434, 0.0018672943, 0.012489319, 0.062042236, -0.05770874, 0.0010290146, 0.035614014, 0.050354004, 0.03652954, 0.051239014, 0.042785645, -0.0013017654, -0.0046958923, 0.020370483, 0.045288086, -0.03616333, 0.033355713, 0.007736206, -0.00080156326, 0.023727417, -0.03149414, -0.012504578, 0.014457703, 0.059295654, -0.034454346, 0.04324341, -0.019180298, -0.02067566, 0.00982666, 0.0050582886, 0.03390503, 0.010353088, 0.053497314, 0.013336182, -0.008148193, 0.00081062317, -0.0138549805, 0.009994507, 0.00070905685, 0.0345459, 0.0027599335, 0.01689148, 0.057556152, -0.061645508, -0.0023097992, -0.017410278, 0.006580353, -0.017044067, -0.028244019, 0.014213562, 0.00724411, 0.0059013367, -0.0044021606, -0.010627747, 0.00712204, 0.023986816, 0.0035514832, 0.0030136108, -0.01033783, -0.034454346, 0.024154663, -0.011047363, 0.011390686, 0.0031776428, -0.073913574, 0.033813477, 0.028427124, -0.0126571655, 0.04852295, -0.0065689087, 0.0028800964, -0.040771484, 0.018493652, -0.0132751465, -0.033294678, 0.021011353, 0.025497437, 0.003019333, 0.072631836, 0.024459839, 0.032165527, -0.028121948, -0.024734497, 0.027709961, -0.050598145, 0.01953125, 0.024749756, -0.0010643005, -0.016036987, -0.04046631, -0.027359009, -0.012886047, 0.004917145, -0.013000488, -0.013267517, 0.027755737, 0.042541504, 0.023651123, 0.026168823, -0.035827637, -0.0049591064, 0.044403076, -0.009170532, 0.011268616, -0.00047588348, 0.015060425, -0.042388916, -0.033447266, -0.016525269, -0.030303955, -0.014839172, 0.064086914, 0.01991272, -0.021972656, -0.002544403, -0.033111572, 0.036590576, 0.0043258667, 0.022613525, -0.0362854, 0.029327393, -0.0050697327, 0.051239014, -0.027923584, -0.034820557, -0.03111267, 0.029418945, -0.052947998, -0.039276123, -0.028137207, 0.018081665, 0.040527344, -0.06359863, -0.025222778, 0.017700195, 0.0016698837, -0.011650085, 0.05117798, -0.05303955, -0.06781006, -0.044403076, 0.053833008, -0.11016846, -0.06945801, 0.038909912, 0.00011587143, 0.022705078, 0.0047721863, 0.020812988, 0.072631836, 0.026901245, -0.015319824, -0.0121154785, -0.043151855, -0.029815674, -0.011222839, -0.020553589, 0.0057678223, -0.005722046, 0.050842285, 0.021728516, 0.016906738, 0.014984131, 0.0024204254, -0.023635864, 0.02468872, 0.016647339, 0.017990112, -0.011268616, -0.017837524, 0.023406982, 0.021881104, -0.028884888, -0.04812622, 0.0031833649, 0.003479004, 0.03225708, 0.056732178, 0.016143799, -0.008781433, -0.04574585, -0.020431519, -0.015975952, 0.036102295, 0.044006348, -0.012008667, 0.009147644, 0.020233154, -0.026489258, 0.017181396, -0.0079422, -0.008911133, -0.0703125, 0.009475708, -0.020858765, -0.06201172, 0.03869629, -0.04800415, -0.053771973, 0.008277893, 0.08862305, 0.008842468, -0.016098022, -0.017242432, -0.009742737, -0.026153564, -0.007358551, -0.05380249, 0.012687683, -0.011505127, 0.00037693977, 0.014884949, 0.03262329, 0.0038032532, 0.00081014633, -0.033843994, -0.02897644, 0.020523071, 0.011123657, -0.0049972534, -0.037475586, 0.055755615, 0.017318726, 0.067993164, -0.017852783, -0.038208008, -0.06359863, 0.043182373, 0.056518555, -0.024719238, 0.09716797, -0.02279663, 0.010002136, 0.025909424, -0.026657104, -0.034606934, -0.009307861, 0.07702637, 0.005012512, 0.0047569275]}, "B08TBJCZCG": {"id": "B08TBJCZCG", "original": "Brand: Supsiah\nName: Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)\nDescription: \nFeatures: \ud835\udde9\ud835\uddf6\ud835\uddfb\ud835\ude01\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddd5\ud835\ude02\ud835\ude00\ud835\uddf6\ud835\uddfb\ud835\uddf2\ud835\ude00\ud835\ude00 \ud835\udde6\ud835\ude02\ud835\uddf6\ud835\ude01\ud835\uddf0\ud835\uddee\ud835\ude00\ud835\uddf2 \ud835\udde6\ud835\ude01\ud835\ude06\ud835\uddf9\ud835\uddf2: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life.\n\ud835\uddd9\ud835\uddff\ud835\uddf2\ud835\uddf2 \ud835\uddd4\ud835\ude00\ud835\ude00\ud835\uddf2\ud835\uddfa\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd5\ud835\uddd5\ud835\udde4 \ud835\uddda\ud835\uddff\ud835\uddf6\ud835\uddf9\ud835\uddf9 \ud835\uddda\ud835\uddff\ud835\uddee\ud835\ude01\ud835\uddf2: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use.\n\ud835\udde7\ud835\ude04\ud835\uddfc \ud835\uddd6\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddff\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddf6\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9 \ud835\uddd5\ud835\uddfc\ud835\ude05: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient.\n\ud835\uddd8\ud835\ude05\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\ude00\ud835\uddf6\ud835\ude01\ud835\uddf2 \ud835\uddd6\ud835\uddff\ud835\uddee\ud835\uddf3\ud835\ude01\ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\ude00\ud835\uddf5\ud835\uddf6\ud835\uddfd: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production.\n\ud835\uddd8\ud835\uddee\ud835\ude00\ud835\ude06 \ud835\ude01\ud835\uddfc \ud835\uddd4\ud835\uddf1\ud835\uddf1 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.\n", "metadata": {"Name": "Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)", "Brand": "Supsiah", "Description": "", "Features": "\ud835\udde9\ud835\uddf6\ud835\uddfb\ud835\ude01\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddd5\ud835\ude02\ud835\ude00\ud835\uddf6\ud835\uddfb\ud835\uddf2\ud835\ude00\ud835\ude00 \ud835\udde6\ud835\ude02\ud835\uddf6\ud835\ude01\ud835\uddf0\ud835\uddee\ud835\ude00\ud835\uddf2 \ud835\udde6\ud835\ude01\ud835\ude06\ud835\uddf9\ud835\uddf2: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life.\n\ud835\uddd9\ud835\uddff\ud835\uddf2\ud835\uddf2 \ud835\uddd4\ud835\ude00\ud835\ude00\ud835\uddf2\ud835\uddfa\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd5\ud835\uddd5\ud835\udde4 \ud835\uddda\ud835\uddff\ud835\uddf6\ud835\uddf9\ud835\uddf9 \ud835\uddda\ud835\uddff\ud835\uddee\ud835\ude01\ud835\uddf2: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use.\n\ud835\udde7\ud835\ude04\ud835\uddfc \ud835\uddd6\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddff\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddf6\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9 \ud835\uddd5\ud835\uddfc\ud835\ude05: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient.\n\ud835\uddd8\ud835\ude05\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\ude00\ud835\uddf6\ud835\ude01\ud835\uddf2 \ud835\uddd6\ud835\uddff\ud835\uddee\ud835\uddf3\ud835\ude01\ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\ude00\ud835\uddf5\ud835\uddf6\ud835\uddfd: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production.\n\ud835\uddd8\ud835\uddee\ud835\ude00\ud835\ude06 \ud835\ude01\ud835\uddfc \ud835\uddd4\ud835\uddf1\ud835\uddf1 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013938904, 0.013923645, -0.01689148, -0.021835327, 0.01586914, 0.012634277, -0.027420044, -0.021392822, -0.017028809, -0.010139465, -0.052581787, 0.03100586, -0.041290283, -0.025894165, 0.025115967, -0.052764893, -0.004650116, 0.047180176, 0.026153564, -0.006893158, 0.02670288, -0.008926392, -0.03845215, 0.055877686, 0.042175293, -0.0625, 0.015258789, 0.00016772747, 0.04562378, 0.019042969, 0.027511597, -0.030593872, 0.011138916, 0.018920898, -0.02444458, -0.005367279, 0.014442444, -0.002653122, -0.01977539, 0.020095825, 0.007095337, 0.007843018, -0.09265137, 0.05493164, -0.07751465, -0.043914795, 0.009033203, 0.00018465519, -0.01586914, -0.012626648, 0.033843994, 0.014472961, 0.04159546, -0.054718018, -0.0036773682, 0.0013284683, -0.0031929016, -0.020355225, 0.02331543, -0.012939453, -0.018875122, -0.007575989, 0.030944824, 0.0079574585, -0.024261475, -0.008979797, 0.0602417, -0.005027771, -0.07159424, -0.047546387, 0.04736328, 0.009925842, -0.0066986084, -0.012992859, -0.0055236816, -0.053344727, 0.025146484, -0.059661865, 0.011260986, 0.023208618, -0.07159424, -0.02178955, -0.0061531067, -0.050079346, 0.010826111, -0.0019073486, -0.0178833, -0.008766174, 0.006515503, -0.02381897, -0.01159668, -0.03289795, -0.018981934, 0.0690918, -0.0013637543, -0.004501343, -0.006210327, -0.02911377, -0.009559631, -0.025848389, 0.04031372, -0.026855469, -0.0017900467, -0.001657486, -0.005180359, 0.0552063, 0.012191772, 0.011184692, -0.0011796951, -0.010757446, -0.009384155, -0.047912598, 0.013893127, -0.022766113, -0.0017280579, 0.0019607544, -0.013916016, 0.030426025, 0.021087646, 0.018859863, -0.043670654, -0.02268982, 0.00573349, 0.028167725, 0.06390381, 0.051452637, 0.012664795, -0.004016876, -0.044433594, 0.035736084, -0.046844482, 0.012969971, 0.036468506, 0.023529053, 0.0020389557, -0.033294678, 0.013999939, -0.00065231323, -0.0135269165, 0.03515625, -0.021697998, -0.020767212, 0.00957489, -0.013793945, -0.005290985, 0.015777588, 0.023101807, 0.015945435, 0.0019683838, -0.05053711, 0.013633728, 0.015777588, 0.059539795, 0.007587433, -0.057556152, -0.016906738, 0.013725281, -0.039093018, -0.029586792, -0.061920166, 0.024307251, -0.02015686, -0.020858765, -0.011764526, -0.033813477, 0.013549805, -0.0121154785, -0.009117126, 0.021850586, 0.010803223, 0.023483276, 0.033050537, 0.03842163, -0.008964539, -0.010536194, -0.03237915, -0.008178711, 0.058135986, 0.066101074, -0.07989502, -0.055877686, -0.046875, 0.12408447, -0.039642334, -0.016220093, -0.010307312, 0.01826477, 0.025405884, 0.021438599, 0.020721436, -0.005592346, -0.010238647, -0.0104522705, -0.0053977966, 0.004547119, 0.036865234, -0.05029297, 0.041107178, -0.020904541, -0.041809082, 0.011253357, 0.017288208, -0.010543823, -0.016174316, -0.01411438, -0.01739502, 0.01524353, 0.020080566, 0.064086914, 0.03866577, -0.0037727356, 0.018051147, 0.0035972595, -0.103027344, -0.08380127, -0.031341553, 0.00068950653, 0.05783081, -0.014526367, 0.007369995, -2.5093555e-05, -0.044891357, 0.021148682, 0.031204224, 0.026916504, -0.017303467, -0.00548172, -0.008026123, 0.024002075, 0.014389038, -0.033935547, 0.018554688, 0.0690918, 0.023468018, -0.037353516, 0.04333496, 0.06112671, 0.025390625, -0.048187256, 0.0030612946, 0.01776123, -0.010765076, -0.04623413, -0.006210327, 0.051208496, -0.039886475, -0.033813477, 0.04159546, -0.0446167, -0.03918457, 0.032714844, 0.007160187, 0.047698975, 0.045013428, 0.00076818466, 0.012542725, -0.03643799, 0.014877319, -0.016616821, 0.020370483, -0.024108887, 0.037139893, 0.04272461, -0.019561768, 0.015556335, 0.0024814606, 0.029373169, 0.03488159, 0.001657486, 0.0017280579, -0.0052223206, -0.0057640076, -0.015205383, 0.0052337646, 0.066833496, -0.013069153, -0.03643799, -0.004749298, 0.022491455, 0.0010795593, -0.0025615692, -0.04248047, 0.043060303, -0.00045609474, 0.056488037, -0.026046753, 0.03555298, -0.0008559227, -0.02758789, -0.028320312, 0.009376526, -0.0042915344, -0.0046920776, -0.015319824, 0.01083374, -0.026367188, -0.022415161, 0.07141113, -0.0002629757, -0.028701782, -0.037231445, 0.014251709, -0.07891846, 0.032226562, -0.031280518, 0.01651001, -0.03390503, 0.011192322, -0.0007739067, -0.089538574, 0.074523926, 0.022369385, 0.04623413, -0.028640747, 0.06524658, 0.038024902, -0.0070152283, 0.040802002, 0.037322998, 0.015701294, -0.026824951, -0.08666992, 0.016174316, -0.014183044, -0.03665161, 0.010040283, 0.006515503, 0.024429321, 0.04724121, 0.007850647, -0.0118255615, 0.017471313, -0.02355957, -0.010375977, -0.00504303, -0.011871338, 0.009803772, 0.0062179565, 0.01335144, -0.03918457, 0.008041382, 0.0062675476, -0.005455017, -0.0068092346, 0.008728027, 0.011917114, -0.038085938, 0.032958984, 0.043884277, 0.012107849, -0.04711914, -0.0052452087, -0.00046491623, -0.010131836, 0.023086548, -0.03137207, -0.017105103, 0.0010795593, -0.0115737915, -0.05102539, -0.030975342, 0.0049057007, -0.051239014, -0.02218628, 0.027008057, 0.0044784546, -0.024627686, 0.011520386, -0.006248474, 0.012367249, -0.010803223, 0.023422241, -0.04852295, -0.025543213, 0.00089883804, 0.0024471283, 0.072021484, -0.02053833, -0.01979065, 0.028335571, -0.021896362, 0.021331787, -0.031280518, 0.028778076, 0.020446777, 0.02154541, 0.027832031, 0.021255493, 0.015960693, -0.011978149, 0.01260376, 0.011451721, -0.05545044, -0.014152527, 0.0061683655, -0.0028648376, 0.05493164, 0.003604889, -0.038513184, -0.04083252, -0.066345215, -0.010795593, -0.0015859604, -0.057495117, 0.0135650635, -0.05709839, -0.020263672, -0.049468994, -0.002571106, 0.045135498, -0.007820129, -0.0031528473, -0.023757935, 0.009513855, 0.009239197, -0.015602112, 0.041534424, -0.017196655, 0.04550171, -0.04095459, 0.0039138794, -0.021911621, -0.015403748, 0.007293701, -0.0435791, 0.03756714, -0.036132812, 0.030670166, -0.041748047, -0.008552551, -0.027450562, -0.014808655, 0.005683899, 0.016113281, -0.043884277, -0.015571594, -0.010147095, -0.046783447, 0.047546387, -0.056732178, -0.00029969215, 0.024047852, -0.03765869, 0.028762817, -0.018707275, -0.029388428, 0.0044288635, -0.06304932, -0.045715332, -0.009216309, -0.0019989014, 0.028167725, 0.008796692, 0.022567749, 0.009773254, 0.020080566, 0.021743774, 0.030914307, 0.022079468, -0.04837036, -0.04815674, -0.02571106, 0.016662598, -0.02947998, 0.01398468, -0.04107666, 0.01838684, -0.014450073, -0.030593872, 0.03062439, -0.01939392, 0.049316406, 0.019515991, 0.008201599, 0.006996155, -0.038604736, -0.02255249, 0.048614502, -0.044128418, -0.022506714, -0.06512451, -0.006214142, -0.05303955, 0.09674072, 0.056915283, -0.033966064, 0.118774414, 0.06762695, -0.0012645721, 0.0011844635, 0.03894043, 9.536743e-06, 0.019561768, 0.049682617, -0.0018110275, -0.027542114, 0.01991272, -0.04232788, 0.01864624, 0.036193848, -0.0791626, 0.012588501, -0.011016846, -0.054718018, -0.02027893, 0.028533936, 0.013938904, -0.027572632, 0.002817154, -0.007926941, -0.024230957, -0.049926758, 0.042785645, 0.02911377, -0.0049095154, 0.047698975, 0.004966736, 0.00705719, 0.0076789856, -0.016983032, 0.008613586, 0.04510498, 0.008308411, 0.04940796, -0.046051025, -0.010231018, -0.026748657, -0.021362305, -0.030731201, -0.021224976, -0.0028686523, 0.0015392303, -0.031311035, -0.018829346, 0.053253174, 0.011642456, -0.0064964294, -0.03289795, -0.010429382, 0.014564514, 0.025222778, 0.022476196, 0.004966736, 0.014907837, 0.028717041, -0.064941406, 0.033935547, -0.02911377, -0.043273926, -0.028625488, -0.015129089, 0.012435913, -0.077697754, -0.03302002, -0.017318726, -0.0079574585, -0.019897461, 0.01600647, -0.020385742, -0.048095703, -0.03439331, 0.014587402, -0.02029419, 0.010871887, 0.037139893, 0.016479492, 0.01977539, 0.0061531067, 0.0062408447, -0.029907227, -0.06915283, -0.011543274, -0.0031738281, -0.041229248, 0.031066895, 0.009635925, -0.020553589, 0.0052108765, -0.015686035, 0.011779785, -0.034698486, 0.025878906, -0.0038318634, -0.00097322464, -0.03942871, 0.004989624, 0.026016235, -0.027908325, -0.03744507, -0.012123108, 0.039916992, -0.00737381, -0.009414673, -0.017929077, 0.007873535, -0.0016269684, 0.0024681091, -0.015838623, 0.025421143, 0.009269714, -0.014930725, 0.017791748, 0.0011672974, -0.01008606, -0.006450653, 0.044525146, -0.018585205, -0.011962891, -0.030517578, -0.05026245, 0.01574707, 0.012939453, -0.013397217, 0.01701355, -0.025665283, 0.0059318542, -0.020812988, 0.05218506, 0.047668457, -0.0045318604, 0.0021953583, -0.005760193, -0.015617371, -0.06707764, 0.018005371, -0.011947632, -0.016571045, -0.038482666, -0.017929077, -0.009590149, -0.056732178, -0.004928589, -0.023513794, -0.014144897, -0.010368347, -0.016677856, 0.0037631989, -0.008728027, 0.046691895, 0.028213501, -0.007888794, 0.024215698, 0.006969452, -0.016311646, 0.035064697, -0.043518066, -0.023254395, 0.0105896, -0.02268982, -0.013847351, -0.012039185, -0.0034503937, -0.033966064, 0.0015668869, 0.039978027, -0.011833191, -0.014770508, 0.03479004, 0.035736084, 0.014122009, -0.025024414, 0.053894043, -0.0043029785, -0.025100708, 0.016845703, 0.014221191, 0.03857422, 0.025146484, -0.010635376, 0.0390625, -0.011306763, -0.0070495605, 0.04510498, -0.030975342, 0.00077199936, -0.02128601, 0.037902832, 0.008712769, 0.013542175, -0.06781006, -0.0016412735, 0.018112183, 0.024871826, 0.02178955, -0.039978027, 0.0541687, 0.04046631, -0.029434204, 0.032562256, 0.04248047, 0.002773285, -0.021530151, 0.04345703, -0.029724121, -0.04248047, 0.011169434, -0.016860962, -0.031051636, 0.011924744, -0.02519226, -0.011398315, -0.0003504753, -0.0034637451, -0.022598267, 0.017074585, -0.009590149, -0.088256836, 0.026977539, -0.017608643, 0.003955841, 0.008117676, 0.046936035, -0.050689697, -0.010665894, -0.033935547, -0.016433716, -0.01335907, 0.009841919, -0.0001039505, 0.02909851, -0.03277588, -0.0132369995, -0.007820129, -0.006504059, 0.008468628, 0.0060539246, -0.03930664, -0.007785797, 0.013931274, 0.029312134, -0.015327454, 0.0020275116, 0.05758667, -0.035339355, -0.035705566, -0.04260254, 0.03353882, -0.0146102905, 0.029418945, 0.028823853, -0.015258789, 0.019943237, 0.038482666, 0.04360962, -0.03869629, -0.011367798, -0.0058937073, -0.015533447, 0.019302368, -0.026611328, 0.039642334, 0.018981934, 0.02671814, -0.004497528, 0.04071045, -0.0048446655, 0.010787964, -0.008361816, 0.01411438, -0.023635864, -0.030090332, 0.008682251, -0.009025574, -0.0033988953, -0.024520874, -0.017913818, -0.043121338, -0.0013504028, 0.0859375, 0.034606934, 0.002855301, -0.052734375, 0.048095703, 0.097839355, -0.030014038, 0.09625244, 0.007701874, -0.0541687, -0.030899048, -0.0022830963, 0.046569824, -0.01939392, 0.008140564, 0.0011711121, 0.009033203, 0.042816162, 0.061035156, -0.03237915, 0.02571106, 0.0009589195, 0.02658081, -0.015930176, 0.039886475, -0.01474762, 0.033691406, 0.03704834, -0.013725281, -0.0036258698, 0.052337646, -0.0011701584, -0.013954163, -0.039733887, 0.01436615, 0.0027675629, -0.00019705296, 0.029388428, 0.014251709, 0.0121154785, -0.021102905, -0.049591064, 0.015335083, -0.032318115, 0.06304932, 0.021972656, -0.020202637, -0.009849548, -0.010894775, 0.0002603531, -0.023025513, 0.021942139, -0.008575439, 0.018676758, 0.0062675476, 0.03527832, -0.016952515, 0.004425049, 0.035980225, -0.055633545, -0.0012807846, 0.0012979507, 0.0037727356, -0.014915466, -0.05911255, -0.01991272, -0.033233643, 0.029388428, 0.03024292, 0.07104492, -0.002532959, 0.029891968, -0.006752014, 0.003692627, -0.030960083, -0.017288208, -0.015525818, -0.007637024, 0.027511597, 0.018676758, -0.013755798, -0.036987305, 0.058898926, -0.029342651, -0.024780273, -0.021606445, 0.042266846, -0.026809692, -0.0096206665, -0.020141602, -0.04663086, 0.027816772, 0.03378296, -0.017837524, 0.006958008, -0.018630981, -0.040618896, 0.0178833, -0.07965088, 0.041107178, -0.0087509155, 0.08123779, 0.03286743, 0.034118652, -0.045013428, -0.034484863, -0.02230835, 0.0020523071, -0.008155823, 0.06112671, -0.013389587, 0.04788208, -0.017456055, 0.016143799, 0.04449463, -0.0010519028, 0.026367188, -0.008270264, -0.014602661, -0.0053634644, 0.009361267, -0.023117065, -0.013504028, 0.021026611, 0.0262146, 0.015312195, 0.02508545, -0.043029785, 0.0066871643, -0.009353638, -0.029129028, 0.015930176, 0.012290955, -0.033569336, -0.014625549, -0.022750854, 0.00178051, -0.029922485, -0.059173584, -0.032440186, -0.011199951, -0.05999756, 0.033111572, 0.00067806244, -0.04058838, -0.041748047, 0.0124053955, 0.027435303, -0.052520752, -0.008636475, -0.013710022, 0.017440796, 0.0211792, 0.021026611, -0.0009636879, -0.072265625, -0.08508301, 0.03869629, -0.064941406, -0.025863647, 0.02330017, 0.0007715225, 0.03048706, 0.0026016235, 0.016357422, 0.09838867, 0.010032654, -0.0066566467, 0.02748108, -0.018630981, -0.011039734, 0.03555298, 0.019577026, -0.026641846, -0.023544312, -0.000992775, -0.0035629272, 0.0647583, -0.002046585, 0.027801514, -0.05203247, -0.03387451, -0.07696533, 0.014587402, -0.018737793, -0.0071487427, 0.018463135, -0.00014293194, -0.024093628, 0.011817932, 0.014228821, 0.023727417, 0.020141602, 0.017181396, -0.0002193451, -0.012008667, -0.05947876, 0.030258179, -0.014770508, 0.006378174, 0.031677246, -0.004924774, -0.0010948181, 0.02078247, -0.035247803, 0.040802002, 0.014793396, -0.01965332, -0.024856567, 0.0058517456, -0.0030956268, -0.014419556, 0.021514893, 0.030029297, -0.029464722, 0.016052246, -0.005619049, 0.040649414, -0.021743774, -0.0032596588, 0.011489868, 0.0074768066, 0.027114868, 0.03378296, -0.014976501, -0.044281006, 0.006515503, 0.022018433, -0.0068969727, 0.00749588, -0.0027828217, -0.019317627, -0.047790527, 0.0064086914, 0.028823853, -0.012176514, -0.03213501, 0.020950317, 0.02079773, 0.055114746, -0.012573242, -0.043060303, -0.04547119, 0.033355713, -0.0043258667, -0.018051147, 0.02180481, -0.02999878, 0.016067505, -0.008422852, -0.013076782, -0.016937256, 0.010414124, 0.06903076, -0.023147583, 0.023834229]}, "B01DVJ66H2": {"id": "B01DVJ66H2", "original": "Brand: Cooking Gift Set\nName: Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men\nDescription: Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
      This grill kit includes the ultimate bbq smoker accessories:
      1. All-Natural Cherry Wood Chips
      2. All Natural Apple Wood Chips
      3. All-Natural Hickory Wood Chips
      4. Universal Grill Scraper / Bottle Opener
      5. Specialty Grilling Thermometer
      6. Stainless Steel Grill Smoker Box
      7. Hickory Smoked Salt
      8. Instructions, Recipe Cards, Care Instructions
      When you grill over a base of our quality wood chips, you're kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
      Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
      Looking for a gift for men who everything?
      This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he'll love and his tastebuds will remember.\nFeatures: Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That's why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We're devoted to helping you get great results with the right tools and thorough instructions. And if you're ever stumped- we're available to help.\n100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don't settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips.\nTop-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything.\nThe Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They're unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything.\nAdd 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.\n", "metadata": {"Name": "Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men", "Brand": "Cooking Gift Set", "Description": "Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
      This grill kit includes the ultimate bbq smoker accessories:
      1. All-Natural Cherry Wood Chips
      2. All Natural Apple Wood Chips
      3. All-Natural Hickory Wood Chips
      4. Universal Grill Scraper / Bottle Opener
      5. Specialty Grilling Thermometer
      6. Stainless Steel Grill Smoker Box
      7. Hickory Smoked Salt
      8. Instructions, Recipe Cards, Care Instructions
      When you grill over a base of our quality wood chips, you're kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
      Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
      Looking for a gift for men who everything?
      This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he'll love and his tastebuds will remember.", "Features": "Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That's why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We're devoted to helping you get great results with the right tools and thorough instructions. And if you're ever stumped- we're available to help.\n100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don't settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips.\nTop-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything.\nThe Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They're unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything.\nAdd 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0033054352, 0.013931274, -0.02558899, -0.02192688, -0.0075302124, -0.011260986, -0.022445679, -0.01826477, -0.033416748, 0.012962341, 0.004673004, 0.026794434, -0.030273438, -0.036865234, -0.005554199, -0.04815674, 0.009513855, -0.01966858, -0.032928467, -0.035308838, -0.01638794, -0.023025513, -0.020965576, 0.07525635, 0.05645752, -0.025299072, 0.0069999695, 0.035827637, 0.03778076, 0.023162842, 0.040649414, -0.04736328, 0.047058105, 0.03677368, -0.08404541, -0.011039734, -0.007232666, -0.0013599396, -0.03111267, 0.024719238, -0.0073432922, 0.02168274, -0.045410156, -0.0054473877, -0.050598145, 0.028030396, -0.06689453, -0.001124382, -0.005607605, -0.00356102, 0.0038375854, 0.008140564, -0.002275467, -0.0309906, -0.0073013306, 0.01612854, -0.0021800995, 0.04547119, 0.04345703, -0.006969452, -0.050079346, 0.008895874, 0.015434265, -0.032196045, -0.015731812, -0.054504395, 0.032043457, 0.0070533752, -0.04953003, -0.041503906, 0.069885254, 0.02420044, 0.016403198, -0.027770996, -0.013175964, 0.00086545944, -0.010269165, -0.012390137, 0.014022827, -0.005508423, -0.001789093, 0.021224976, 0.008544922, -0.042175293, -0.006855011, -0.042236328, -0.024291992, 0.00623703, -0.03024292, 0.0048446655, -0.022079468, 0.024307251, -0.018035889, 0.017547607, -0.009536743, 0.018051147, -0.041137695, -0.010902405, 0.0009446144, 0.021102905, -0.00881958, -0.0077705383, 0.025436401, -0.022949219, -0.015022278, 0.027267456, -0.0075149536, -0.005809784, 0.008071899, 0.016540527, -0.026260376, 0.0063552856, -0.0016613007, -0.019699097, -0.0068969727, 0.021530151, -0.012825012, 0.029830933, 0.0066947937, 0.008666992, -0.016525269, -0.0028038025, 0.011016846, 0.019470215, 0.06298828, 0.06719971, 0.0069618225, -0.026794434, -0.015579224, 0.053100586, -0.023452759, -0.053344727, 0.0357666, 0.07495117, 0.042999268, -0.03765869, 0.0657959, 0.0051231384, -0.009017944, -0.008895874, 0.006164551, 0.020202637, -0.00074005127, -0.028808594, 0.03314209, -0.01687622, 0.040863037, 0.03564453, -0.014701843, 0.0037612915, 0.028564453, 0.05496216, 0.03616333, -0.01890564, -0.038635254, -0.027175903, -0.034942627, -0.010795593, -0.010375977, -0.02709961, -0.0010604858, -0.013748169, -0.020599365, 0.013404846, -0.0046577454, 0.02168274, 0.021194458, 0.011680603, 0.016998291, 0.021530151, 0.006752014, -0.035308838, 0.0009460449, -0.013496399, -0.01890564, 0.00945282, -0.020065308, 0.045074463, 0.055633545, -0.07556152, -0.058502197, -0.062408447, 0.097961426, -0.038482666, -0.0071105957, -0.0005502701, -0.010696411, 0.0067825317, 0.009178162, 0.010734558, -0.014022827, 0.011016846, -0.051208496, -0.002336502, 0.001912117, 0.04421997, -0.054107666, 0.023406982, -0.02029419, -0.00617218, 0.02494812, 0.006980896, 0.034942627, -0.015930176, 0.05105591, -0.009269714, 0.009628296, 0.01637268, 0.042510986, 0.028518677, 0.012039185, 0.019424438, -0.03250122, 0.023498535, -0.034210205, 0.0048294067, -0.0072250366, 0.031158447, -0.00390625, 0.022506714, 0.0046081543, -0.026565552, -0.0036811829, 0.0014019012, 0.039794922, -0.0069885254, -0.01424408, -0.015930176, 0.009277344, 0.014915466, -0.051239014, 0.023788452, 0.048950195, 0.062408447, -0.014762878, 0.041015625, 0.058135986, 0.057525635, -0.017181396, -0.02243042, 0.018737793, -0.0068588257, -0.019683838, 0.009986877, 0.051361084, 0.02571106, 0.008987427, 0.0022277832, -0.006549835, 0.013442993, 0.01184845, -0.023147583, 0.028167725, -0.05596924, 0.009094238, 0.01902771, -0.06982422, -0.015777588, 0.0026111603, 0.020568848, -0.020843506, -0.00013196468, 0.07019043, -0.0357666, 0.044677734, 0.00957489, 0.027069092, 0.017623901, -0.033569336, 0.036621094, 0.0138168335, -0.016723633, 0.004421234, 0.02482605, 0.06976318, -0.027175903, -0.01625061, -0.020019531, 0.011634827, 0.009651184, 0.020309448, 0.002313614, 0.026855469, 0.004951477, 0.035125732, 0.03878784, 0.03942871, 0.027648926, -0.054626465, -0.07531738, -0.0026836395, -0.025146484, -0.05065918, -0.023223877, 0.0028858185, -0.05380249, 0.017990112, 0.043823242, -0.01576233, -0.007850647, -0.040039062, 0.0181427, -0.028625488, 0.00907135, -0.010383606, 0.010009766, 0.025985718, -0.021347046, -0.010612488, -0.074157715, 0.08441162, 0.041778564, 0.036956787, 0.0012159348, 0.07299805, 0.012123108, 0.022125244, 0.06317139, 0.045532227, -0.00944519, -0.022415161, -0.0073890686, -4.053116e-05, -0.016220093, 0.01448822, 0.0009379387, -0.030685425, 0.0049438477, 0.007534027, 0.012588501, 0.030212402, 0.023101807, 0.009796143, 0.004550934, 0.013496399, -0.010971069, 0.0019798279, -0.022216797, -0.009803772, -0.026382446, -0.023986816, 0.02230835, -0.017028809, -0.049468994, -0.050445557, 0.0003812313, 0.055664062, 0.009384155, -0.03326416, -0.0025901794, 0.030899048, -0.04071045, 0.035888672, 0.038330078, 0.013977051, -0.06048584, -0.044952393, 0.023971558, -0.04864502, -0.057739258, -0.026138306, -0.01802063, -0.044952393, -0.0059318542, 0.018981934, 0.005138397, -0.02670288, 0.023284912, 0.016586304, 0.00598526, 0.036621094, -0.0007324219, -0.0073051453, -0.009346008, 0.002538681, -0.038604736, 0.059417725, -0.0011739731, -0.02330017, 0.030700684, 0.015670776, 0.04888916, -0.012283325, 0.046173096, 0.023452759, 0.017105103, 0.027008057, 0.046875, 0.0009031296, -0.024658203, -0.021118164, 0.025009155, -0.050750732, -0.004627228, -0.006855011, 0.010795593, 0.056274414, -0.085998535, 0.010314941, -0.052978516, -0.06774902, 0.026367188, -0.012069702, -0.02394104, 0.010871887, -0.0793457, -0.02268982, -0.049346924, 0.0044898987, 0.07537842, -0.014579773, 0.013786316, -0.009254456, 0.025680542, -0.0005078316, 0.010902405, 0.019546509, 0.0026168823, 0.0134887695, -0.04525757, 0.006286621, -0.022598267, 0.03137207, 0.017944336, -0.038116455, 0.026412964, -0.02468872, 0.017715454, 0.0070381165, 0.011184692, -0.016113281, -0.0026302338, -0.009414673, -0.023376465, -0.024551392, 0.008476257, -0.007446289, 0.0041160583, 0.0063056946, -0.009002686, -0.040863037, -0.059265137, -0.060302734, 0.030075073, -0.04446411, 0.0045776367, -0.078125, -0.04888916, -0.03262329, 0.02671814, -0.028884888, 0.019973755, 0.023529053, 0.03677368, -0.015174866, 0.049957275, 0.01399231, 0.044891357, 0.024047852, -0.019012451, -0.050079346, -0.066467285, 0.091308594, 0.005138397, -0.013320923, -0.06185913, 0.11743164, -0.016738892, 0.01826477, 0.0064926147, -0.04260254, 0.023498535, 0.005012512, 0.024154663, -0.014770508, -0.005077362, 0.00642395, 0.07507324, -0.070495605, -0.02822876, -0.035491943, -0.016052246, -0.014297485, 0.085754395, 0.03793335, -0.009529114, 0.05419922, 0.08868408, -0.027664185, 0.014328003, -0.0015945435, 0.045196533, 0.0010557175, 0.056915283, 0.0034542084, -0.008743286, -0.00034236908, 0.0006122589, 0.015022278, -0.004108429, -0.020965576, 0.017868042, 0.0035820007, -0.0132369995, -0.013900757, 0.03479004, 0.04675293, 0.0016851425, -0.0033073425, -0.049621582, 0.05630493, -0.05114746, -0.023422241, 6.312132e-05, -0.03164673, -0.015151978, 0.013626099, -0.010231018, -0.014694214, -0.00044107437, -0.0015172958, 0.0069999695, 0.005695343, 0.040496826, -0.014160156, -0.021728516, -0.004383087, -0.0013170242, -0.022964478, -0.015571594, 0.031341553, 0.019607544, -0.006916046, -0.009429932, 0.016357422, 0.029266357, -0.012199402, -0.03466797, 0.0012264252, 0.017562866, 0.019577026, -0.026672363, -0.05014038, 0.017745972, 0.010383606, -0.06359863, -0.008811951, -0.02973938, -0.015975952, -0.029449463, -0.015037537, 0.0071983337, -0.056640625, 0.019226074, 0.010932922, -0.057525635, -0.09429932, 0.031921387, -0.005908966, -0.00415802, -0.01473999, 0.011276245, -0.020736694, -0.0053482056, 0.010192871, 0.009101868, 0.047821045, -0.006515503, 0.0026721954, -0.04043579, -0.038330078, -0.026626587, 0.042175293, -0.006778717, 0.018630981, -0.015899658, -0.039886475, -0.018722534, 0.021820068, 0.06311035, 0.009376526, 0.043029785, -0.03387451, -0.04019165, 0.005077362, 0.009338379, -0.025268555, -0.013366699, -0.012809753, -0.024490356, 0.0065727234, -0.013305664, -0.011039734, -0.004295349, -0.0017242432, 0.0058670044, 0.001707077, -0.014915466, 0.037109375, 0.002603531, -0.026168823, 0.010688782, 0.0008368492, -0.013961792, 0.036834717, 0.042633057, 0.018432617, -0.035095215, -0.009773254, -0.011253357, 0.0078048706, 0.025634766, -0.03466797, 0.009132385, -0.027648926, -0.0040740967, -0.073913574, 0.06384277, 0.048065186, -0.027618408, 0.011711121, 0.0042266846, -0.024734497, -0.018875122, -0.010643005, -0.030715942, -0.010185242, -0.0009303093, -0.025039673, -0.020385742, -0.021255493, -0.011077881, 0.0025787354, 0.005104065, 0.01751709, -0.03652954, 0.038085938, 0.014167786, 0.02684021, 0.020187378, 0.016998291, 0.018737793, 0.02796936, 0.020599365, -0.012062073, 0.003982544, 0.032440186, -0.011154175, -0.022140503, -0.028198242, -0.030197144, -0.009132385, -0.07318115, 0.0082473755, 0.060394287, -0.044189453, 0.010360718, 0.053009033, -0.020645142, 0.023406982, -0.004371643, 0.032196045, -0.0076828003, -0.020751953, 0.0027637482, -0.048583984, -0.03805542, 0.02230835, -0.061431885, 0.03250122, 0.0018062592, -0.019989014, 0.058532715, -0.014633179, 0.04638672, 0.0107040405, -0.018478394, 0.006916046, -0.0038337708, -0.05105591, 0.0023269653, 0.04272461, 0.035949707, 0.025924683, -0.03390503, 0.05718994, 0.001917839, -0.020843506, 0.03491211, 0.04498291, -0.025390625, -0.0043678284, 0.0473938, -0.0073127747, -0.0042648315, 0.062347412, 0.039978027, -0.043060303, -0.036621094, -0.06591797, 0.050323486, 0.0024261475, -0.023040771, -0.016799927, -0.007980347, 0.026000977, -0.031829834, 0.008453369, -0.0519104, -0.0076942444, -0.02279663, 0.052856445, -0.05795288, -0.008842468, 0.019683838, -0.033355713, -0.06451416, -0.02848816, -0.039794922, 0.026367188, -0.020202637, 0.020095825, 0.010047913, 0.0018815994, 0.03048706, 0.024368286, -0.0637207, 0.0035648346, -0.0030841827, -0.008071899, -0.0007882118, -0.006580353, 0.045959473, -0.03024292, -0.02357483, -0.07165527, 0.06665039, 0.012138367, 0.0011472702, 0.087768555, -0.023132324, 0.03338623, 0.0048828125, -0.007926941, 0.02859497, 0.034820557, 0.016662598, 0.009353638, 0.028121948, 0.02798462, 0.038848877, -0.0047187805, -0.0067634583, -0.007911682, 0.057525635, 0.012290955, -0.04559326, -0.030014038, -0.024856567, 0.024047852, -0.028182983, 0.023635864, -0.008308411, -0.018920898, 0.0023593903, -0.022155762, 0.005809784, 0.028945923, 0.023391724, 0.03225708, 0.009727478, -0.036865234, 0.006198883, 0.015899658, -0.02420044, 0.10015869, 0.02432251, -0.019897461, -0.01838684, 0.006752014, 0.008308411, 0.033721924, -0.048980713, 0.010749817, 0.02784729, 0.018112183, 0.06518555, -0.059265137, 0.050689697, 0.0065994263, 0.020355225, -0.015716553, 0.024749756, 0.0016431808, 0.02645874, 0.03353882, 0.01159668, -0.0063934326, 0.004714966, -0.024047852, -0.045959473, -0.0038261414, -0.0037136078, 0.057403564, 0.0066566467, 0.0309906, 0.00982666, 0.034576416, -0.021499634, 0.061431885, -0.0046958923, 0.018081665, 0.002658844, -0.06994629, -0.009788513, -0.041748047, 0.008964539, 0.0011129379, -0.019042969, 0.01763916, -0.005935669, 0.00843811, 0.015396118, 0.026367188, 0.026443481, 0.0025310516, 0.05331421, -0.052734375, 0.009681702, -0.03717041, -0.0065193176, -0.024795532, -0.056152344, -0.014877319, -0.017868042, 0.018936157, -0.0037879944, 0.0063476562, 0.012542725, 0.02178955, 0.023269653, 0.012809753, -0.03100586, -0.029769897, 0.028533936, -0.045074463, -0.015670776, 0.016830444, -0.024230957, 0.011772156, 0.021896362, -0.00970459, -0.0005455017, -0.013069153, 0.016311646, 0.003967285, 0.021606445, -0.012290955, -0.015914917, 0.034057617, 0.0154418945, 0.009460449, 0.027542114, 0.004852295, 0.054016113, 0.044067383, 0.019638062, 0.015022278, -0.021209717, 0.056274414, 0.03741455, -0.02432251, -0.03189087, -0.044921875, -0.022567749, -0.019470215, -0.001121521, 0.028366089, -0.013877869, 0.018829346, -0.0060310364, 0.048736572, 0.056762695, 0.01737976, 0.0440979, -8.636713e-05, -0.03414917, -0.024261475, -0.043029785, 0.0019111633, -0.007171631, -0.018829346, 0.004901886, 0.017456055, -0.0064315796, 0.0463562, -0.006603241, -0.0038471222, -0.011329651, -0.027740479, 0.025421143, -0.01902771, 0.02708435, -0.0385437, -0.020080566, -0.020217896, 0.01713562, 0.016571045, -0.025924683, -0.04650879, 0.04055786, -0.020965576, -0.013267517, -0.010253906, -0.018356323, -0.003326416, -0.047698975, -0.0079422, 0.013557434, 0.070007324, -0.029067993, 0.014389038, -0.030960083, -0.033966064, -0.03741455, 0.02319336, -0.07885742, -0.023147583, -0.011688232, 0.027526855, 0.04058838, -0.010932922, 0.0038166046, 0.03149414, 0.009635925, -0.022842407, -0.0074386597, -0.002035141, -0.03286743, 0.05053711, 0.014221191, -0.016204834, 0.03036499, 0.022094727, 0.016296387, 0.05529785, 0.023132324, -0.021377563, -0.041503906, -0.018707275, -0.04537964, 0.0082092285, -0.015930176, -0.012420654, 0.011764526, 0.004776001, -0.03793335, 0.004032135, 0.011177063, -0.010406494, 0.029678345, 0.0181427, -0.0077285767, -0.040008545, -0.06829834, -0.003993988, -0.007572174, 0.03894043, 0.06719971, 0.04711914, 0.0060272217, 0.05090332, -0.035461426, 0.07019043, 0.014251709, -0.025848389, -0.03656006, -0.014274597, -0.0015306473, -0.051757812, 0.021942139, -0.014190674, -0.02168274, -0.03741455, 0.02330017, -0.0032958984, -0.01109314, -0.007850647, -0.036834717, 0.014289856, -0.013420105, -0.028823853, 0.012306213, -0.018005371, -0.01033783, 0.025131226, 0.0090408325, 0.012168884, -0.028503418, -0.040008545, -0.0066375732, -0.0051841736, 0.010101318, -0.016555786, -0.052947998, 0.03164673, -0.0013933182, 0.061340332, -0.034118652, -0.09283447, -0.066223145, 0.02758789, 0.047912598, 0.0050354004, 0.08282471, 0.0038967133, 0.01713562, 0.015167236, 0.022125244, -0.030014038, 0.033721924, 0.025558472, 0.013626099, 0.03173828]}, "B00008ZA09": {"id": "B00008ZA09", "original": "Brand: Bernzomatic\nName: Bernzomatic TS4000 Trigger Start Torch\nDescription: \nFeatures: TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings.\nDURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip.\nHIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance.\nSWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.\n", "metadata": {"Name": "Bernzomatic TS4000 Trigger Start Torch", "Brand": "Bernzomatic", "Description": "", "Features": "TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings.\nDURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip.\nHIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance.\nSWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013076782, -0.010169983, -0.01802063, -0.06951904, 0.0026340485, 0.016784668, -0.025604248, 0.01361084, -0.023269653, 0.023712158, 0.01979065, 0.01802063, 0.0025939941, -0.03326416, 0.0023498535, -0.0116119385, 0.034210205, -0.0012969971, 0.029434204, -0.0046157837, -0.025360107, 0.026535034, 0.017150879, 0.02166748, 0.0184021, 0.015838623, -0.049346924, -0.0070228577, 0.042785645, 0.032836914, 0.015220642, -0.033721924, -0.0040359497, 0.03665161, -0.01525116, -0.0032444, -0.00749588, 0.007461548, -0.027786255, 0.035705566, 0.017791748, -0.015563965, -0.026977539, 0.016143799, -0.030639648, -0.0335083, -0.0020923615, -0.029647827, 0.014511108, 0.01864624, 0.0062561035, 0.0012207031, -0.003250122, 0.012481689, 0.0066566467, 0.020721436, -0.015853882, -0.027069092, 0.022232056, 0.021209717, 0.019180298, -0.018722534, 0.0101623535, -0.014305115, -0.01423645, 0.01626587, 0.103515625, -0.016784668, 0.021087646, -0.026779175, -0.022323608, 0.040649414, 0.0020141602, -0.030197144, -0.0017375946, 0.0012044907, -0.014862061, -0.0032291412, 0.023880005, 0.0102005005, 0.011276245, -0.03503418, 0.005088806, -0.038391113, 0.049041748, -0.004245758, 0.0053863525, -0.01789856, -0.024459839, -0.008377075, -0.017501831, 0.015556335, -0.03375244, -0.007041931, -0.013160706, -0.025268555, -0.033081055, -0.07562256, 0.037200928, 0.0055160522, -0.0016155243, -0.02722168, 0.009742737, 0.015899658, 0.015380859, 0.044067383, -0.039001465, 0.024871826, 0.02368164, 0.017242432, -0.0002579689, -0.038848877, 0.016311646, 0.0064811707, -0.013198853, -0.027862549, -0.03152466, 0.02456665, -0.002538681, -0.034576416, 0.004764557, 0.0057525635, 0.042999268, 0.0026226044, 0.032348633, 0.054840088, -0.025512695, -0.048980713, -0.050354004, 0.0015239716, -0.030838013, 0.022857666, 0.03805542, 0.04458618, 0.004749298, -0.0036315918, -0.0043678284, 0.078186035, 0.01751709, -0.043182373, 0.07775879, 0.021636963, 0.005039215, 0.05142212, 0.0013904572, 0.012252808, 0.026611328, 0.019821167, -0.024169922, -0.028442383, 0.02407837, -0.016571045, 0.0042495728, 0.027648926, -0.017227173, 0.03213501, -0.00484848, -0.010650635, -0.0231781, -0.015899658, 0.009719849, -0.02027893, -0.030639648, -0.01159668, -0.043914795, 0.024215698, 0.04812622, -0.0065956116, 0.028579712, 0.03894043, 0.021362305, 0.014678955, 0.03579712, 0.038085938, 0.009468079, -0.004776001, 0.033050537, 0.037963867, 0.057281494, -0.05923462, -0.05114746, -0.03378296, 0.14892578, -0.056793213, -0.0065193176, -0.002861023, 0.018341064, 0.0037384033, 0.011978149, 0.009231567, -0.021499634, 0.029251099, 0.03050232, -0.011909485, 0.0011892319, -0.018829346, -0.0042533875, 0.007736206, -0.0058517456, -0.008529663, 0.07366943, 0.04309082, -0.012260437, 0.0057868958, -0.04925537, 0.014503479, -0.013145447, 0.013824463, 0.034973145, 0.039733887, -0.01751709, 0.0006875992, 0.0046806335, -0.04071045, -0.019470215, 0.040740967, -0.028152466, 0.023925781, -0.0012693405, 0.020492554, 0.003900528, -0.026489258, -0.003540039, 0.0079574585, 0.054626465, -0.062347412, 0.0068626404, -0.0625, 0.029693604, -0.0119018555, -0.03555298, 0.039520264, -0.002878189, 0.040924072, 0.009109497, 0.027297974, 0.06994629, 0.022781372, -0.007736206, -0.013305664, 0.0016117096, -0.028671265, -0.04534912, -0.013916016, 0.04623413, 0.052246094, 0.015281677, 0.0006046295, -0.020690918, 0.0052375793, 0.04449463, -0.014289856, 0.023254395, -0.028366089, -0.025024414, 0.037750244, 0.0121536255, 0.028579712, -0.026870728, 0.027328491, -0.019958496, 0.023757935, 0.0014753342, 0.0014295578, 0.057891846, 0.012275696, 0.066711426, 0.044433594, -0.030960083, -0.00983429, 0.0017738342, 0.025756836, -0.020828247, 0.0053482056, 0.05441284, -0.054656982, 0.0005264282, -0.002532959, -0.019500732, -0.02418518, -0.0014276505, -0.03540039, -0.022949219, -0.0016183853, 0.045196533, -0.05050659, 0.014808655, 0.0046310425, -0.028518677, -0.0836792, -0.024291992, -0.035125732, -0.05630493, 0.02331543, -0.0019235611, -0.07421875, 0.04776001, 0.020370483, -0.0025424957, -0.008590698, -0.009841919, 0.0340271, -0.006931305, -0.00868988, -0.0061950684, -0.00944519, 0.015037537, 0.0043144226, -0.0023479462, -0.028137207, -0.013923645, 0.016357422, 0.036590576, 0.039154053, 0.059539795, -0.009231567, 0.043151855, 0.05657959, 0.022720337, -0.013397217, -0.026809692, -0.02003479, 0.01940918, -0.002614975, 0.004711151, -0.0031909943, -0.011222839, 0.029556274, -0.06137085, -0.0062942505, 0.015701294, -0.034332275, 0.009979248, 0.02734375, 0.0014648438, 0.0008544922, 0.009391785, 0.068481445, 0.01108551, -0.03540039, 0.005039215, -0.024734497, -0.009277344, 0.0016794205, -0.020889282, 0.029312134, -0.018417358, -0.0024433136, -0.017318726, 0.039276123, -0.05154419, 0.008377075, 0.039123535, -0.0071525574, 0.060302734, 0.006931305, -0.058624268, 0.01763916, 0.058654785, -0.034118652, -0.029556274, -0.005218506, -0.038269043, 0.02394104, 0.044769287, -0.03668213, -0.012809753, 0.0018634796, 0.0357666, 0.02659607, 0.002538681, 0.023284912, -0.040740967, 0.0009493828, 0.02204895, -0.029937744, 0.05621338, -0.020477295, -0.024963379, 0.024383545, -0.02571106, -0.015403748, -0.008735657, -0.021697998, -0.009536743, 0.033721924, 0.0011873245, -0.070373535, 0.055023193, 0.0072364807, 0.041931152, -0.0064697266, -0.03463745, -0.027191162, 0.012878418, 0.0289917, -0.025527954, -0.012565613, -0.021347046, -0.024917603, -0.12561035, 0.008369446, 0.015930176, -0.049804688, -0.0035037994, -0.038146973, -0.080566406, -0.052490234, -0.0057678223, -0.011703491, 0.01234436, 0.0152282715, -0.0149383545, -0.015853882, 0.017288208, -0.052856445, 0.028961182, -0.0040626526, -0.0072898865, -0.0090408325, 0.03479004, -0.05999756, 0.033691406, 0.04321289, -0.05987549, -0.03173828, -0.00969696, 0.051483154, -0.006038666, 0.010665894, -0.03604126, -0.016326904, -0.029251099, 0.0107421875, -0.015174866, 0.070007324, 0.032073975, 0.021392822, 0.033355713, -0.021087646, 0.005683899, -0.041900635, -0.06088257, 0.05529785, -0.017456055, -0.010070801, -0.06689453, -0.032836914, -0.009941101, -0.0713501, -0.005596161, -0.008071899, 0.043151855, 0.023010254, 0.023162842, 0.10510254, 0.0017147064, 0.040863037, 0.03869629, -0.0022220612, -0.039001465, -0.038513184, 0.06286621, 0.019363403, -0.038604736, 0.0008196831, 0.020217896, -0.0068588257, -0.026504517, -0.015563965, -0.037750244, 0.06329346, 0.015365601, 0.011077881, -0.050720215, -0.025848389, 0.036010742, 0.035339355, -0.016799927, -0.030456543, -0.013633728, 0.00699234, -0.02772522, 0.023895264, 0.008636475, 0.009056091, -0.019805908, -0.007297516, -0.010292053, 0.045562744, 0.010307312, 0.008049011, -0.0034618378, 0.02885437, -0.038238525, 0.009925842, -0.010871887, 0.07745361, 0.01966858, 0.004142761, -0.04006958, -0.015533447, 0.020370483, -0.030380249, -0.03161621, 0.060668945, 0.05343628, -0.012794495, 0.031082153, -0.045776367, 0.011947632, -0.070251465, 0.01007843, -0.00031971931, -0.014335632, 0.02104187, -0.023529053, -0.012458801, -0.024993896, 0.0055885315, -0.038970947, -0.02784729, 0.0034160614, 0.008522034, 0.009635925, -0.007019043, 0.012786865, 0.058013916, -0.059692383, 0.039916992, 0.014701843, 0.0345459, -0.008728027, -0.06378174, 0.04244995, -0.0357666, -0.015716553, -0.010604858, -0.031433105, -0.031921387, 0.0072402954, -0.004951477, -0.013435364, -0.015022278, -0.0027484894, -0.008346558, 0.005168915, 0.02330017, -0.027557373, -0.022827148, 0.005443573, 0.012374878, 0.03463745, -0.027175903, -0.040771484, 0.027313232, 0.024459839, -0.011497498, -0.0021648407, -0.002943039, 0.04147339, 0.009017944, -0.036468506, -0.014442444, -0.08850098, -0.016860962, 0.015823364, -0.023117065, -0.01763916, -0.008415222, -0.0073928833, -0.009506226, 0.05557251, -0.0016918182, 0.0022201538, -0.03366089, -0.02645874, 0.0022563934, 0.006904602, 0.05630493, 0.01574707, 0.048431396, -0.034057617, 0.013519287, -0.027664185, -0.018753052, -0.008972168, -0.0051498413, -0.02897644, -0.04006958, 0.015838623, -0.00970459, 0.014289856, 0.012550354, 0.003112793, 0.022857666, -0.015930176, -0.10357666, -0.034210205, -0.015853882, -0.03375244, 0.00995636, 0.013938904, -0.004562378, 0.0046653748, 0.048950195, -0.043914795, 0.015914917, -0.005580902, -0.026382446, -0.011390686, -0.01966858, -0.021652222, 0.020889282, -0.037109375, 0.0059890747, -0.011650085, 0.010955811, -0.024505615, -0.018325806, -0.0013446808, -0.014297485, -0.008857727, -0.03189087, 0.027175903, 0.011161804, 0.010971069, 0.005207062, -0.022155762, -0.017410278, -0.035705566, -0.021575928, -0.036956787, -0.035705566, -0.02960205, 0.03036499, -0.021316528, -0.034210205, 0.00075006485, -0.021148682, -0.001663208, 0.029907227, -0.029953003, -0.0035953522, 0.034576416, -0.00071811676, -0.00944519, -0.03137207, -0.023925781, 0.0013065338, -0.040893555, -0.0014734268, 0.022857666, 0.0014429092, -0.030426025, 0.044036865, -0.046783447, 0.044921875, 8.392334e-05, 0.02053833, -0.017715454, 0.072265625, 0.0126571655, 0.025512695, 0.018508911, 0.027450562, 0.051605225, 0.024429321, 0.015914917, -0.007499695, -0.020431519, 0.05935669, -0.007030487, -0.0058937073, 0.0020866394, 0.022491455, 0.028625488, 0.0072021484, 0.0018196106, -0.0043754578, 0.026168823, 0.06640625, 0.025222778, 0.03253174, -0.054626465, 0.061706543, -0.047912598, -0.04144287, 0.025817871, -0.07354736, 0.0082473755, 0.039154053, -0.042114258, -0.036346436, 0.041137695, -0.013282776, -0.03463745, -0.013679504, 0.048828125, -0.027801514, -0.046844482, 0.008255005, 0.012245178, -0.008605957, 0.021224976, -0.0021629333, -0.06555176, -0.0040626526, 0.010681152, 0.040740967, -0.0041885376, -0.02897644, -0.014137268, -0.016220093, 0.03704834, -0.039733887, -0.013664246, 0.025512695, -0.027557373, -0.022338867, -0.027496338, -0.0063285828, 0.0024909973, -0.04751587, 0.009002686, -0.03466797, -0.028839111, -0.026748657, 0.01828003, 0.031036377, -0.0052871704, -0.04663086, 0.056365967, -0.03277588, -0.0418396, -0.027389526, 0.059783936, -0.016647339, 0.03579712, 0.013031006, -0.023223877, 0.014968872, 0.04260254, 0.04699707, -0.04699707, 0.000641346, 0.0069885254, -0.026184082, -0.058288574, -0.0368042, 0.009002686, -0.021896362, -0.07342529, -0.029769897, 0.025817871, -0.011810303, -0.013305664, -0.024459839, -0.08947754, 0.018295288, 0.0065345764, 0.016113281, 0.015777588, 0.01802063, -0.025619507, 0.042633057, -0.047851562, -0.048919678, -1.31726265e-05, 0.014862061, 0.03567505, -0.012031555, 0.012268066, 0.0357666, -0.00630188, 0.032409668, -0.010398865, 0.009056091, 0.012367249, 0.010665894, -0.0026416779, 0.038116455, -0.01637268, 0.0031929016, -0.05078125, -0.013389587, 0.039855957, 0.04434204, -0.00015437603, 0.09082031, 0.030319214, 0.012626648, 0.029190063, 0.035461426, 0.039855957, -0.02986145, -0.042541504, 0.024932861, 0.043304443, -0.030578613, -0.004096985, -0.0231781, -0.054504395, -0.022033691, -0.043670654, -0.016815186, -0.029312134, 0.013244629, 0.0022087097, -0.0016622543, 0.011665344, -0.019973755, 0.04711914, 0.0025539398, 0.025527954, 0.028793335, 0.00484848, -0.014762878, 0.028884888, -0.034179688, 0.013198853, 0.044311523, 0.0006093979, 0.01751709, -0.034851074, 0.017959595, 0.02607727, -0.023834229, -0.036315918, 0.0014867783, 0.036621094, -0.023254395, -0.015129089, 0.013977051, 0.0073051453, -0.005607605, 0.0023288727, 0.028915405, 0.0070762634, 0.010299683, 0.023727417, 0.008018494, 0.013244629, 0.016586304, -0.006061554, -0.012779236, 0.011253357, -0.01159668, -0.043060303, 0.06958008, -0.00049448013, 0.021606445, 0.07220459, -0.027542114, -0.0076141357, -0.020431519, 0.019439697, -0.02935791, -0.03112793, 0.008132935, 0.008995056, -0.012954712, 0.010093689, 0.020050049, 0.03579712, 0.034057617, -0.016799927, 0.028671265, -0.049743652, 0.053466797, 0.033325195, 0.03302002, -0.064941406, -0.032318115, -0.011871338, -0.049621582, 0.01802063, 0.0030765533, -0.006526947, -0.011650085, 0.044555664, -0.013763428, 0.04232788, -0.023803711, 0.0036315918, -0.009536743, 0.02760315, 0.040222168, -0.02558899, -0.0074539185, 0.0005083084, -0.040405273, -0.0067253113, -5.4061413e-05, -0.049957275, 0.015686035, 0.027877808, -0.02507019, -0.042022705, -0.00035381317, -0.007232666, -0.027786255, 0.05239868, -0.07141113, 0.0069618225, -0.023651123, 0.017333984, -0.027572632, -0.036224365, -0.050598145, 0.017700195, -0.04071045, -0.006652832, 0.032958984, 0.003932953, 0.033996582, -0.08331299, -0.020706177, -0.030059814, -0.0065574646, -0.039642334, 0.007827759, -0.029144287, 0.008666992, -0.042053223, 0.0019702911, -0.10345459, -0.000770092, 0.016723633, -0.0234375, -0.017349243, -0.012825012, 0.013420105, 0.01828003, 0.040100098, -0.01083374, 0.048828125, -0.03466797, -0.021850586, -0.0152282715, 0.010536194, -0.014091492, -0.03036499, 0.0052604675, -0.020233154, 0.032989502, 0.02053833, -0.021591187, -0.029937744, -0.00894928, -0.006187439, -0.027023315, 0.04559326, -0.021713257, 0.008049011, 0.001964569, -0.07244873, -0.091308594, -0.04055786, 0.016281128, 0.009140015, 0.01939392, 0.03253174, -0.011116028, -0.06628418, -0.014915466, -0.03186035, 0.0009965897, 0.053131104, -0.015655518, -0.03463745, 0.0121536255, -0.009048462, -0.0036010742, 0.017669678, 0.0011320114, -0.007095337, 0.044525146, -0.023986816, -0.014007568, 0.0007748604, -0.024230957, -0.009437561, -0.040100098, 0.03857422, 0.04156494, -0.030410767, -0.01751709, -0.031677246, -0.015220642, 0.011390686, -0.049316406, 0.008094788, -0.029434204, 0.021408081, 0.005859375, 0.021591187, -0.025878906, 0.023483276, -0.029510498, -0.022659302, 0.025268555, -0.0021686554, 0.017837524, -0.021881104, 0.06500244, 0.021850586, 0.07928467, 0.03100586, -0.047027588, -0.046661377, 0.07891846, 0.021652222, -0.051940918, 0.012130737, -0.02229309, 0.007019043, 0.057037354, -0.0037784576, 0.009208679, -0.008338928, 0.023498535, 0.03326416, -0.010360718]}, "B08M9HL7XW": {"id": "B08M9HL7XW", "original": "Brand: Lovely Snail\nName: Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic\nDescription: Features:
      Durable metal frame
      Thermometer on the lid
      Airflow control
      Coal grids for cooking chambers
      Attractive wood handles

      Grill material: metal
      Grill grid material: stainless steel
      Overall size: 16.5 x 11.8 x 14.6 inch
      Weight: 3.6 kg/7.9 lb
      Color: black/green
      Delivery contents: 1 x charcoal grill + 1 x instruction
      Please Note: Please assemble the grill by adults.

      \nFeatures: \u3010Outdoor BBQ Grill\u3011: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences.\n\u3010Versatile Charcoal Grill\u3011: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness.\n\u3010Healthy & Premium Quality\u3011: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy.\n\u3010Precise Cooking\u3011: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising.\n\u3010Easy to Assemble & Use\u3011: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.\n", "metadata": {"Name": "Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic", "Brand": "Lovely Snail", "Description": "Features:
      Durable metal frame
      Thermometer on the lid
      Airflow control
      Coal grids for cooking chambers
      Attractive wood handles

      Grill material: metal
      Grill grid material: stainless steel
      Overall size: 16.5 x 11.8 x 14.6 inch
      Weight: 3.6 kg/7.9 lb
      Color: black/green
      Delivery contents: 1 x charcoal grill + 1 x instruction
      Please Note: Please assemble the grill by adults.

      ", "Features": "\u3010Outdoor BBQ Grill\u3011: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences.\n\u3010Versatile Charcoal Grill\u3011: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness.\n\u3010Healthy & Premium Quality\u3011: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy.\n\u3010Precise Cooking\u3011: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising.\n\u3010Easy to Assemble & Use\u3011: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01626587, 0.0118255615, -0.02508545, 0.0052490234, 0.0057258606, 0.0077552795, 0.002937317, -0.020355225, -0.044647217, 0.011314392, -0.023376465, 0.03186035, -0.041107178, -0.010299683, 0.0061302185, -0.05392456, 0.0126953125, 0.0048179626, -0.007247925, -0.026535034, -0.006855011, -0.02229309, -0.019226074, 0.05392456, 0.07476807, -0.039245605, -0.01739502, 0.00051641464, 0.056732178, 0.028396606, 0.039154053, -0.034210205, 0.031341553, 0.017669678, -0.04650879, -0.058624268, 0.014968872, -0.022247314, -0.040283203, 0.031341553, -0.00027275085, 0.013801575, -0.10064697, -0.027908325, -0.0814209, -0.0152282715, -0.0154418945, 0.01939392, -0.010536194, -0.03945923, 0.011810303, 0.045074463, 0.030334473, -0.03756714, -0.007083893, 0.025436401, 0.023742676, -0.037841797, -0.0033950806, -0.0119018555, 0.00422287, 0.03387451, 0.022903442, 0.034088135, -0.02178955, -0.011131287, 0.021011353, 0.002023697, -0.054138184, -0.044128418, 0.049224854, -0.007499695, 0.006702423, 0.0044288635, -0.01737976, -0.044525146, 0.0024795532, -0.0496521, 0.024139404, 0.013244629, -0.025436401, -0.020050049, 0.0039634705, -0.026168823, -0.00409317, -0.011558533, -0.014343262, -0.00504303, -0.023376465, 0.019577026, -0.013343811, -0.029724121, -0.021347046, 0.048919678, 0.0209198, 0.009635925, -0.027923584, -0.047912598, 0.05340576, 0.02720642, 0.050933838, -0.042907715, 0.031921387, -0.00060272217, -0.033966064, 0.050933838, 0.036987305, 0.024002075, -0.030136108, -0.015037537, -0.02166748, -0.048828125, -0.0072288513, -0.016296387, -0.008804321, 0.024154663, -0.025253296, 0.036987305, 0.0028457642, 0.04135132, -0.04537964, -0.035614014, 0.0028972626, 0.07800293, 0.062683105, 0.07611084, 0.009880066, 0.02507019, -0.02659607, 0.027526855, -0.046905518, 0.0060577393, 0.07019043, 0.03656006, 0.010826111, -0.028137207, 0.022109985, -0.033355713, 0.0050239563, 0.010955811, -0.02444458, -0.033477783, 0.018127441, -0.027618408, 0.024719238, -0.013160706, 0.027038574, 0.035369873, -0.0033683777, 0.005130768, 0.01939392, 0.033813477, 0.055847168, -0.0021152496, -0.049835205, -0.026565552, -0.016647339, -0.026229858, -0.011817932, -0.06329346, -0.035461426, -0.004348755, 0.048583984, -0.053375244, -0.040008545, 0.0018348694, -0.033111572, -0.0026130676, 0.0029296875, 0.0013666153, -0.006038666, -0.0064315796, -0.042144775, -0.020996094, -0.0026416779, 0.0010881424, -0.0053100586, 0.04434204, 0.059539795, -0.11077881, -0.08166504, -0.06921387, 0.101867676, -0.043182373, -0.010025024, -0.037902832, 0.002105713, 0.0058250427, 0.05001831, 0.019104004, -0.0058898926, -0.038879395, -0.019210815, 0.008460999, -0.02381897, 0.018325806, -0.02204895, 0.0345459, -0.014038086, -0.0048561096, -0.03894043, -0.014122009, 0.023284912, -0.004623413, 0.018920898, -0.014457703, 0.00013029575, 0.02670288, 0.066223145, 0.020721436, -0.020690918, -0.0028247833, 0.012306213, -0.029937744, -0.050323486, 0.009231567, -0.0107040405, -0.013961792, -0.009048462, 0.00036001205, -0.007789612, 0.008773804, -0.025802612, 0.017700195, 0.012046814, -0.0059013367, -0.021591187, 0.0050239563, -0.003282547, 0.043792725, -0.072631836, -0.006816864, 0.026977539, 0.04144287, -0.00554657, 0.051513672, 0.06842041, 0.037109375, -0.027236938, -0.017807007, 0.017944336, 0.005355835, -0.06768799, -0.042755127, 0.02041626, -0.010528564, -0.003572464, -0.0085372925, -0.026626587, 0.0077667236, 0.009399414, 0.01802063, 0.012542725, 0.016738892, -0.024490356, 0.029953003, -0.040374756, 0.03375244, -0.021377563, 0.049682617, -0.050567627, 0.042907715, 0.103393555, -0.02571106, 0.013809204, -0.033935547, 0.010940552, -0.0052948, -0.0051460266, -0.023498535, 0.022918701, -0.002002716, -0.006450653, -0.008575439, 0.060760498, -0.029083252, -0.04208374, 0.0011434555, 0.04067993, -0.014335632, -0.009613037, -0.0044784546, 0.022537231, -0.005844116, 0.017532349, -0.015258789, 0.03152466, 0.01838684, -0.059753418, -0.025756836, -0.006477356, 0.022369385, -0.04006958, 0.004043579, 0.0079574585, 0.002960205, 0.078308105, 0.081604004, -0.020477295, 0.017715454, -0.035339355, 0.0010442734, -0.043029785, -0.0063095093, -0.013160706, -0.0056419373, -0.021957397, 0.005180359, -0.010261536, -0.08087158, 0.038238525, 0.03463745, 0.019836426, -0.018844604, 0.04321289, 0.011306763, 0.011528015, 0.039031982, 0.06149292, 0.066467285, -0.034942627, -0.0121154785, -0.0073394775, 0.0059432983, 0.011001587, 0.015281677, -0.0015516281, 0.006641388, -0.016860962, 0.008979797, 0.008110046, -0.009841919, 0.01928711, -0.009407043, -0.007118225, -0.0154418945, 0.002336502, 0.027572632, -0.006877899, -0.047607422, -0.019760132, -0.03567505, -0.017608643, -0.009231567, -0.039031982, -0.047821045, -0.0035438538, -0.0008020401, 0.03326416, -0.013824463, 0.026321411, 0.0021877289, 4.3451786e-05, -0.035064697, 0.0077667236, -0.020828247, -0.028625488, -0.016555786, -0.01600647, -0.0715332, -0.03463745, 0.01071167, -0.045806885, -0.00078964233, 0.028549194, -0.015205383, -0.011146545, 0.009590149, 0.006969452, 0.01146698, 0.021469116, 0.0054130554, -0.03225708, -0.016098022, -0.011711121, -0.023284912, 0.023025513, -0.032409668, -0.0018472672, -0.0046157837, -0.012687683, 0.012916565, -0.018661499, 0.019195557, 0.074523926, -0.014511108, 0.04373169, 0.056610107, 0.05581665, -0.01802063, 0.012840271, -0.0016489029, -0.039886475, -0.02520752, 0.018249512, 0.033172607, 0.008293152, -0.037231445, -0.004096985, -0.040374756, -0.058807373, 0.009857178, -0.0029506683, -0.024780273, 0.003004074, -0.0647583, -0.015281677, -0.04360962, 0.009674072, 0.050079346, -0.020370483, 0.025344849, -0.026397705, 0.038604736, -0.016342163, 0.012893677, 0.027023315, -0.017227173, 0.048858643, -0.021942139, -0.025924683, 0.014564514, -0.0064353943, 0.02557373, -0.0256958, 0.014785767, -0.002462387, 0.024505615, -0.01927185, 0.024810791, 0.0048828125, -0.015197754, 0.0022907257, -0.023742676, -0.04776001, -0.03567505, -0.0066604614, 0.0025119781, 0.0390625, -0.041046143, -0.030700684, 0.0003361702, -0.0047721863, 0.0038394928, 0.0057640076, -0.04397583, 0.0038337708, -0.034301758, -0.006614685, 0.01852417, -0.017578125, 0.019210815, 0.045074463, 0.025726318, -0.008346558, -0.014595032, 0.009307861, 0.024978638, 0.019180298, -0.0022411346, -0.0118255615, -0.02015686, 0.032440186, -0.01222229, 0.004917145, -0.027191162, 0.020431519, 0.00014185905, -0.002532959, 0.006465912, -0.007911682, 0.040374756, 0.005290985, 0.021438599, 0.0010871887, -0.006000519, -0.010025024, 0.07556152, -0.080444336, -0.021469116, -0.0871582, -0.0047798157, -0.12683105, 0.109313965, 0.04168701, -0.03048706, 0.11920166, 0.085632324, -0.03225708, 0.036468506, 0.00017380714, 0.029418945, 0.0046577454, 0.03768921, -0.027862549, 0.014541626, 0.017608643, -0.04660034, 0.027694702, 0.029052734, -0.066223145, 0.036895752, 0.028945923, -0.061065674, 0.027694702, 0.022033691, -0.016571045, -0.009460449, -0.006011963, 0.0007648468, -0.027664185, -0.03137207, 0.09588623, 0.025909424, -0.010154724, -0.007987976, -0.011566162, 0.030410767, -0.042266846, -0.002670288, 0.030517578, 0.030593872, 0.017868042, 0.026901245, -0.003206253, -0.039367676, 0.023849487, -0.026641846, -0.036956787, -0.0036640167, 0.038482666, 0.029632568, 0.011199951, -0.012580872, 0.0082473755, 0.017974854, -0.015609741, -0.021530151, 0.011550903, -0.0043411255, 0.037078857, 0.026916504, -0.03338623, 0.0054512024, 0.037384033, -0.07647705, 0.008575439, 0.0020961761, -0.040283203, 0.051483154, -0.03616333, -0.061157227, -0.04626465, -0.006538391, -0.0011062622, -0.06488037, -0.060058594, 0.019256592, 0.010002136, -0.018035889, 0.0072784424, 0.011604309, -0.03488159, -0.008125305, 0.01637268, -0.011894226, 0.022644043, -0.022415161, -0.008850098, -0.01550293, -0.034729004, -0.015625, 0.02456665, -0.009971619, -0.004058838, -0.02116394, -0.030975342, -0.013885498, 0.029205322, 0.06732178, -0.018585205, 0.052215576, -0.0211792, -0.01234436, -0.041870117, -0.032684326, 0.057250977, -0.07287598, -0.015411377, -0.028167725, 0.043914795, -0.008666992, 0.007129669, -0.046936035, -0.024215698, -0.01398468, 0.021530151, -0.005252838, -0.02468872, -0.006679535, 0.0037059784, 0.0027236938, -0.0034160614, -0.013008118, 0.03842163, 0.0029830933, 0.026550293, 0.007949829, -0.011688232, -0.016662598, 0.01789856, 0.015068054, -0.04006958, 0.0211792, -0.04837036, 0.0019550323, -0.03793335, 0.078063965, 0.057159424, -0.028320312, -0.02217102, 0.013587952, -0.038269043, -0.08477783, -0.028411865, -0.032196045, 0.039978027, -0.03173828, -0.033203125, 0.009101868, -0.028701782, 0.008590698, 0.0040664673, -0.030776978, 0.019622803, 0.017791748, 0.012779236, -0.00705719, 0.007843018, 0.05206299, -0.013267517, 0.027755737, -0.023880005, 0.02357483, 0.01927185, -0.015556335, 0.0054893494, -0.020217896, -0.0023822784, -0.017410278, 0.00869751, -0.013877869, -0.062286377, -0.00027036667, 0.0418396, -0.00932312, 0.019195557, 0.015853882, 0.019989014, -0.0063285828, -0.0046691895, 0.04928589, -0.0368042, -0.013458252, 0.035461426, -0.042663574, 0.0085372925, 0.01361084, -0.036895752, 0.02947998, -0.007686615, -0.03302002, 0.045013428, -0.0038909912, 0.038391113, -0.008010864, -0.024505615, 0.005268097, -0.019714355, -0.040618896, -0.020629883, -0.015701294, 0.051239014, 0.038391113, -0.040161133, 0.02619934, -0.0061836243, -0.025024414, 0.0061950684, 0.029815674, 0.0049552917, 0.04019165, 0.013252258, 0.04159546, -0.024856567, 0.0068893433, -0.027648926, -0.028335571, -0.026748657, -0.0047454834, -0.003047943, -0.012489319, -0.007549286, -0.02671814, -0.033111572, 0.02067566, -0.038513184, 0.038513184, -0.035186768, 0.004425049, 0.0024681091, 0.0022621155, -0.0043640137, 0.0062828064, -0.05404663, -0.0025596619, 0.0067329407, 0.0073165894, -0.0019950867, 0.04727173, -0.015991211, 0.021255493, 0.046020508, -0.018722534, 0.01159668, 0.02760315, -0.033721924, 0.0019302368, 0.023040771, 0.026916504, 0.015007019, -0.055877686, 0.019210815, -0.0037250519, -0.010871887, -0.033569336, 0.066101074, -0.008041382, 0.0069351196, 0.0859375, 0.0006246567, 0.022750854, 0.029800415, 0.005756378, -0.0413208, 0.00035834312, 0.006000519, -0.07183838, 0.004890442, -0.013267517, 0.037902832, -0.017318726, -0.0075683594, -0.047180176, 0.041015625, -0.037963867, 0.019699097, -0.03100586, -0.026412964, -0.010139465, -0.033569336, 0.014663696, -0.0051078796, 0.004169464, 0.007457733, 0.011016846, -0.084228516, -0.013053894, 0.020904541, 0.023406982, 0.025299072, -0.04321289, 0.012649536, 0.050872803, -0.008239746, 0.044433594, 0.0040245056, -0.051940918, -0.018112183, 0.009109497, 0.041290283, -0.021148682, 0.013084412, 0.0011968613, -0.0031051636, 0.012512207, 0.041168213, -0.024887085, 0.003358841, -0.0070648193, 0.040161133, 0.015975952, 0.013244629, 0.012489319, 0.014671326, -0.034973145, -0.041290283, 0.00484848, 0.0076065063, -0.040740967, -0.034088135, -0.023101807, 0.0055122375, 0.022659302, 0.01121521, 0.0049705505, 0.025009155, 0.00970459, -0.005832672, 0.010383606, 0.0066490173, 0.013473511, 0.06359863, -0.0037021637, -0.0069618225, 0.01473999, -0.049346924, -0.032318115, -0.062164307, 0.051239014, 0.049560547, 0.0335083, 0.026153564, 0.017410278, 0.019180298, 0.00039696693, 0.022216797, -0.03439331, 0.017150879, 0.008728027, 0.008003235, 0.017684937, -0.06854248, -0.021743774, 0.009597778, 0.007736206, -0.041015625, 0.0869751, -0.013832092, -0.013114929, -0.030838013, 0.005340576, -0.017745972, -0.026123047, 0.0143966675, 0.011161804, -0.026763916, -0.0025424957, 0.005836487, -0.0463562, 0.054595947, -0.06732178, -0.040496826, -0.046325684, 0.042938232, -0.023422241, -0.008506775, -0.026824951, 0.0064888, 0.06964111, -0.0026187897, -0.009063721, -0.028121948, 0.03314209, 0.002506256, 0.06121826, -0.012771606, 0.034942627, -0.006038666, 0.06976318, 0.043670654, 0.01965332, 0.0050354004, -0.036071777, -0.028396606, -0.0002629757, -0.0006995201, 0.016799927, -0.021453857, 0.047058105, 0.0234375, 0.02468872, 0.05419922, -0.02357483, 0.032806396, 0.012519836, 0.022705078, 0.015220642, -0.018463135, -0.016418457, -0.06414795, 0.011833191, 0.029891968, -0.01852417, 0.015258789, -0.016098022, -0.016464233, -0.0033664703, -0.010261536, 0.001950264, 0.012290955, -0.016311646, -0.021469116, -0.022369385, 0.032104492, -0.0054626465, -0.046783447, -0.02432251, 0.022476196, -0.012710571, 0.016571045, 0.043884277, -0.024475098, -0.010345459, 0.003320694, 0.0065574646, -0.04724121, 0.005355835, -0.01638794, 0.041809082, -0.011962891, 0.0569458, -0.03213501, -0.045806885, -0.047027588, 0.016983032, -0.051574707, 0.0066337585, 0.011749268, -0.020843506, -0.008132935, -0.0077781677, 0.033447266, 0.07531738, 0.032928467, -0.006149292, 0.021865845, -0.012954712, -0.011299133, -0.021728516, -0.004180908, -0.015930176, 0.00076532364, 0.005630493, -0.006832123, 0.030395508, 0.019485474, -0.035461426, -0.07672119, -0.032928467, -0.055236816, 0.027877808, -0.012260437, -0.013870239, 0.013923645, -0.014877319, -0.040924072, -0.0011053085, 0.011047363, 0.016845703, 0.0026378632, 0.009384155, 0.004371643, -0.024246216, -0.003982544, 0.0020370483, -0.004825592, 0.023162842, 0.016098022, -0.048736572, -0.016799927, -0.0067634583, -0.01751709, 0.005302429, 0.026992798, -0.02331543, -0.011627197, 0.046325684, -0.009254456, -0.0075149536, 0.017730713, 0.0146484375, -0.031829834, -0.027618408, -0.039215088, 0.066833496, -0.025543213, -0.0026111603, 0.0051994324, 0.029632568, 0.03149414, 0.031097412, 0.0073165894, -0.025283813, 0.034332275, 0.043304443, 0.026123047, -0.009811401, 0.004421234, -0.025787354, -0.007347107, 0.008666992, 0.0031471252, 0.015823364, 0.0023727417, -0.0027637482, 0.0013961792, 0.01524353, -0.018310547, -0.02861023, -0.060394287, 0.060058594, -0.011917114, -0.020111084, 0.016433716, -0.022033691, 0.019607544, 0.036499023, -0.044311523, 0.00982666, -0.012809753, 0.03616333, -0.019470215, -0.0015993118]}, "B01M133XUS": {"id": "B01M133XUS", "original": "Brand: BBQ Coverpro\nName: BBQ Coverpro Built-in Grill Cover up to 37\"\nDescription:

      BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


      \u203bVinyl cover for built-in 37-inch grill.
      \u203bProtects built-in grill from all weather conditions.
      \u203bHigh heat resistant cover, UV protection and resists cold cracking.
      \u203bSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down.
      \u203bHeavy Gauge 600 D polyester with PVC coated water repellent top.

      We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

      \nFeatures: Vinyl cover for built-in 37-inch grill\nProtects built-in grill from all weather conditions\nHigh heat resistant cover, UV protection and resists cold cracking\nSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down\nHeavy Gauge 600 D polyester with PVC coated water repellent top\n", "metadata": {"Name": "BBQ Coverpro Built-in Grill Cover up to 37\"", "Brand": "BBQ Coverpro", "Description": "

      BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


      \u203bVinyl cover for built-in 37-inch grill.
      \u203bProtects built-in grill from all weather conditions.
      \u203bHigh heat resistant cover, UV protection and resists cold cracking.
      \u203bSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down.
      \u203bHeavy Gauge 600 D polyester with PVC coated water repellent top.

      We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

      ", "Features": "Vinyl cover for built-in 37-inch grill\nProtects built-in grill from all weather conditions\nHigh heat resistant cover, UV protection and resists cold cracking\nSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down\nHeavy Gauge 600 D polyester with PVC coated water repellent top", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.026428223, -0.01890564, -0.0143966675, -0.023345947, -0.044189453, 0.016342163, -0.0345459, 0.013496399, -0.057769775, -0.02748108, -0.0011930466, 0.031082153, -0.04055786, -0.046722412, 0.07891846, -0.047302246, 0.023254395, 0.015731812, 0.035186768, -0.01576233, -0.015975952, -0.0009841919, 0.033599854, 0.04901123, 0.015319824, 0.0036296844, 0.05508423, -0.03274536, 0.05105591, 0.008728027, 0.018066406, -0.055908203, 0.035461426, 0.002527237, -0.0340271, -0.018203735, -0.009918213, -0.0028476715, -0.011154175, 0.000541687, -0.003162384, 0.0062026978, 0.005405426, 0.03970337, -0.020080566, -0.04019165, 0.01763916, -0.021728516, 0.0069389343, -0.0054016113, 0.026153564, 0.05706787, 0.041137695, -0.010910034, -0.00016403198, 0.019180298, -0.02482605, 0.038208008, 0.026947021, -0.033813477, -0.013298035, 0.017486572, 0.026245117, 0.042663574, -0.01612854, -0.019104004, 0.04159546, -0.025375366, -0.050354004, -0.022445679, 0.061340332, -0.0026683807, 0.03652954, -0.012214661, -0.028717041, -0.022094727, -0.009178162, -0.02772522, 0.025268555, -0.012748718, -0.018295288, -0.040100098, 0.08331299, -0.031433105, 0.0088272095, -0.0026245117, -0.026229858, 0.010246277, 0.030761719, -0.00059366226, 0.0068244934, 0.035827637, -0.032104492, 0.08770752, 0.017364502, 0.004055023, -0.016159058, 0.0028495789, -0.013755798, 0.009819031, 0.012016296, -0.02998352, 0.037597656, -0.026611328, -0.03149414, 0.049865723, -0.0023155212, 0.052490234, 0.0072364807, 0.032073975, 0.014778137, -0.068603516, -0.036468506, -0.057678223, -0.02532959, 0.021026611, -0.031555176, 0.0030326843, 0.03378296, -0.011154175, -0.025558472, -0.027679443, -0.011779785, 0.047210693, 0.05731201, 0.066833496, 0.012168884, 0.015670776, -0.058685303, 0.0149002075, 0.019760132, -0.0015583038, 0.018829346, 0.062347412, 0.016647339, -0.010467529, 0.037017822, -0.022064209, -0.03378296, 0.03048706, -0.042297363, 0.021774292, 0.049468994, -0.056762695, -0.025894165, 0.009475708, 0.026855469, 0.019515991, -0.01789856, -0.04159546, -0.008323669, 0.0009441376, 0.053344727, -0.0066566467, -0.04159546, -0.021621704, 0.020614624, -0.026290894, -0.039733887, -0.05697632, -0.028289795, -0.0056648254, 0.005001068, -0.03265381, -0.021835327, -0.0018854141, 0.01448822, 0.0090789795, 0.01474762, 0.06689453, 0.026870728, -0.015029907, -0.039031982, 0.0028324127, -0.018844604, -0.019119263, -0.028869629, 0.081848145, 0.07507324, -0.1116333, -0.068359375, -0.06341553, 0.14770508, -0.046569824, -0.0015096664, 0.0016222, -0.005683899, -0.020553589, 0.028137207, -0.0073013306, -0.01878357, 0.02281189, -0.039001465, 0.03463745, 0.0052223206, 0.0022449493, -0.0069236755, 0.033325195, -0.0014009476, -0.04925537, -0.06112671, 0.011154175, 0.001209259, 0.024520874, 0.007461548, -0.0020427704, 0.0014801025, 0.02772522, 0.0023155212, 0.0057373047, -0.0001052022, 0.0011587143, 0.0005970001, -0.056243896, -0.021118164, 0.021911621, -0.040924072, 0.00068473816, -0.009742737, 0.037963867, 0.00945282, -0.009109497, 0.012145996, 0.012268066, 0.023223877, -0.0011672974, -0.03491211, -0.004951477, -0.0045700073, 0.0005950928, -0.021133423, 0.0423584, 0.029388428, 0.024169922, -0.016815186, 0.03289795, 0.041229248, -0.003255844, -0.015609741, 0.012817383, -0.009635925, -0.010139465, -0.009727478, 0.08917236, 0.014144897, 0.013404846, -0.006008148, 0.051361084, -0.020004272, 0.012580872, -0.007587433, 0.02027893, 0.030029297, 0.00806427, -0.002861023, 0.0423584, -0.04159546, 0.0062179565, -0.042388916, 0.026062012, -0.01348114, 0.010696411, 0.06347656, -0.026504517, 0.031036377, 0.0033931732, 0.05380249, 0.052825928, 0.005290985, -0.02532959, -0.010810852, 0.024734497, -0.008682251, 0.017974854, -0.009384155, 0.01574707, -0.019302368, 0.0103302, -0.007881165, -0.009635925, 0.041870117, 0.016647339, 0.0010614395, -0.0027236938, 0.05053711, 0.0041999817, -0.0066070557, 0.033416748, 0.030014038, -0.031951904, -0.010215759, 0.0074272156, -0.003047943, 0.013290405, 0.03744507, -0.05227661, -0.015388489, 0.029663086, 0.0040512085, -0.0041389465, -0.008407593, 0.040924072, -0.017791748, 0.026245117, -0.016342163, 0.027114868, -0.011703491, -0.0046844482, 0.0027751923, -0.012557983, 0.022735596, 0.07092285, 0.024871826, -0.034606934, 0.06573486, 0.041046143, 0.03152466, 0.029769897, 0.057281494, 0.040985107, -0.041809082, -0.0009851456, -0.047973633, -0.011230469, 0.010551453, 0.047180176, -0.0413208, -0.00043201447, -0.04776001, -0.00037193298, 0.029632568, -0.051086426, -0.013206482, -0.052703857, 0.0034389496, -0.000893116, -0.019561768, 0.036621094, -0.0039978027, -0.050109863, -0.0022506714, -0.019943237, 0.009170532, 0.020721436, -0.07336426, 0.005065918, 0.0178833, 0.0131073, -0.070495605, -0.02192688, 0.03857422, -0.048095703, -0.01423645, -0.049743652, -0.046325684, 0.107055664, 0.01725769, -0.10864258, 0.009643555, -0.09918213, 0.014831543, -0.0016727448, -0.02885437, -0.014518738, 0.0289917, -0.03149414, -0.012298584, -0.022964478, 0.00491333, 0.016326904, 0.06085205, 0.0010614395, -0.034606934, -0.032348633, -0.044433594, -0.04220581, -0.025772095, -0.06011963, -0.018310547, -0.030822754, -0.033355713, -0.0015592575, 0.010383606, 0.049835205, -0.005836487, 0.045196533, 0.049194336, 0.08251953, -0.039855957, -0.05847168, -0.022201538, 0.103881836, 0.0019283295, -0.028274536, 0.0044403076, 0.013870239, -0.014175415, -0.032562256, -0.0018568039, -0.007030487, -0.062194824, -0.0068206787, -0.005432129, -0.023757935, -0.006576538, -0.054229736, -0.04168701, -0.04940796, -0.0077934265, 0.0390625, -0.038879395, -0.0046043396, -0.027572632, -0.026809692, 0.013267517, 0.0041160583, 0.022537231, -0.007888794, 0.022659302, -0.03591919, -0.002368927, 0.0069999695, -0.009689331, 0.009529114, -0.017745972, 0.035339355, -0.024627686, 0.019363403, -0.026016235, -0.019042969, -0.017730713, -0.028457642, -0.020507812, -0.017044067, -0.009208679, -0.0014638901, -0.0009570122, -0.029754639, 0.022750854, -0.027160645, 0.0077056885, 0.011756897, -0.032226562, 0.02468872, -0.0050697327, -0.041412354, 0.018081665, -0.014427185, -0.026519775, -0.030960083, -0.013679504, 0.033935547, 0.011512756, 0.01586914, 0.0055351257, 0.052825928, 0.0015478134, 0.043151855, -0.012916565, -0.004386902, -0.019424438, -0.047088623, 0.074645996, -0.008842468, -0.006778717, -0.022506714, 0.027374268, -0.0048980713, 0.0023841858, -0.017044067, -0.04449463, 0.05606079, -0.027709961, -0.002576828, 0.0035324097, -0.0066452026, -0.008140564, 0.023666382, 0.015388489, 0.018356323, -0.064575195, 0.026153564, -0.08135986, 0.05987549, 0.017944336, -0.0027065277, 0.06286621, 0.025512695, -0.01727295, 0.030349731, 0.017425537, 0.0021457672, 0.00491333, 0.032196045, -0.0317688, 0.00969696, 0.011672974, -0.023406982, 0.015197754, 0.005882263, -0.048858643, -0.016693115, -0.021362305, -0.035369873, 0.0034866333, 0.03704834, 0.023590088, -0.004890442, -0.00088071823, -0.044158936, 0.029174805, -0.042907715, 0.011222839, 0.029296875, -0.012649536, -0.024459839, 0.03881836, 0.04147339, -0.026306152, -0.018447876, 0.0098724365, 0.025146484, 0.024749756, 0.0126953125, -0.019622803, 0.008285522, -0.0118255615, 0.012794495, 0.0043792725, 0.0067596436, 0.005138397, -0.0053138733, 0.019958496, 0.017318726, -0.007255554, -0.003929138, 0.0044670105, 0.0031642914, -0.011009216, -0.028839111, -0.003736496, 0.041809082, 0.0030574799, -0.0047302246, 0.0018777847, -0.03665161, -0.024337769, -0.010307312, -0.05606079, -0.009864807, -0.023895264, 0.0009851456, -0.0345459, -0.047180176, -0.019165039, -0.020309448, -0.011077881, 0.005332947, -0.009376526, -0.0385437, -0.017730713, 0.05114746, -0.039764404, -0.030197144, -0.014694214, 0.0113220215, 0.024383545, 0.007598877, 0.031341553, -0.037963867, 0.009529114, -0.010063171, 0.074279785, -0.003932953, 0.034118652, -0.023635864, -0.024475098, -0.019332886, 0.053100586, 0.10876465, -0.027374268, 0.06402588, -0.021057129, 0.013305664, -0.05307007, -0.006263733, 0.038238525, -0.028579712, -0.033447266, -0.043701172, 0.03768921, 0.0012264252, -0.030212402, -0.0028858185, 0.05734253, 0.024917603, 0.028121948, -0.03704834, 0.020553589, 0.03463745, -0.0046043396, -0.004032135, 0.005039215, -0.017807007, 0.007926941, -0.02079773, -0.0017366409, -0.051971436, 0.023452759, 0.018157959, -0.02986145, -4.684925e-05, -0.0357666, 0.015640259, -0.029296875, -0.015457153, -0.038238525, 0.06530762, 0.07635498, -0.011161804, 0.01927185, 0.018203735, -0.013381958, -0.0155181885, -0.0070724487, 0.0128479, -0.0015296936, 0.0154418945, -0.018814087, 0.0040283203, 0.010353088, -0.0063476562, 0.00856781, -0.01436615, 0.004562378, -0.034210205, 0.029922485, -0.0418396, 0.031463623, 0.0713501, -7.164478e-05, 0.02230835, 0.04257202, -0.01158905, 0.0034160614, -0.040618896, -0.008903503, 0.015090942, -0.039031982, -0.013801575, -0.014724731, 0.030838013, 0.0096206665, 0.009407043, 0.011505127, 0.010856628, -0.026138306, -0.00037288666, 0.019058228, -0.015426636, -0.054229736, 0.019927979, -0.015052795, 0.0070610046, 0.062805176, -0.017028809, -0.028518677, 0.047668457, -0.051239014, 0.058776855, 0.025680542, -0.06719971, 0.006038666, -0.023452759, 0.004096985, -0.0065460205, 0.017425537, 0.018676758, 0.0026054382, -0.041290283, -0.020141602, -0.022994995, 0.050567627, -0.0016546249, -0.025512695, 0.036346436, 0.011634827, -0.030349731, -0.0021324158, -0.012176514, 0.0008196831, 0.027526855, -0.015007019, -0.005180359, 0.0010957718, 0.002412796, -0.030807495, -0.02619934, -0.022659302, 0.007865906, 0.02822876, -0.014930725, -0.014320374, -0.052642822, 0.010818481, -0.018173218, -0.036621094, 0.002714157, 0.013694763, 0.017715454, -0.0059928894, 0.0009508133, 0.006134033, -0.000834465, -0.034118652, -0.022003174, -0.006591797, 0.045074463, 0.010719299, 0.010597229, -0.024230957, 0.007423401, 0.020523071, -0.040100098, 0.015266418, -0.012817383, -0.015281677, -0.01499939, -0.007194519, -0.006034851, -0.01852417, 0.027862549, 0.027908325, -0.04727173, -0.020202637, -0.061309814, 0.023590088, -0.04046631, -0.045013428, 0.00013923645, 0.055786133, -0.016296387, 0.021621704, -0.029403687, -0.030853271, 0.038024902, 0.017410278, -0.06427002, 0.020431519, -0.0040359497, 0.024871826, 0.0031490326, 0.010856628, -0.002696991, 0.05065918, 0.021652222, 0.031402588, -0.038726807, -0.025848389, -0.018753052, -0.03314209, 0.032409668, -0.01222229, -0.032562256, 0.0064315796, -0.032073975, -0.045684814, 0.0022888184, 0.0119018555, 0.036376953, 0.020965576, 0.010543823, 0.022140503, 0.029846191, -0.0758667, 0.023025513, -0.018798828, -0.05001831, -0.021377563, 0.046966553, 0.07574463, 0.003250122, -0.011909485, -0.037872314, 0.020904541, 0.010124207, 0.048095703, -0.031799316, -0.027450562, -0.050689697, 0.06384277, 0.023880005, 0.0013122559, -0.057373047, -0.00033450127, 0.01247406, -0.034698486, -0.027709961, -0.0055503845, -0.0069351196, -0.006134033, -0.043548584, 0.010360718, 0.0016489029, 0.004283905, 0.006652832, -0.0052337646, 0.02319336, -0.0014410019, 0.02758789, -0.0016717911, 0.012557983, 0.011993408, -0.022872925, -0.02508545, 0.011383057, -0.011917114, -0.005153656, 0.005493164, -0.015853882, 0.0023059845, 0.023712158, 0.0007786751, 0.030639648, 0.0501709, 0.0158844, -0.009529114, -0.021591187, 0.046295166, 0.020828247, 0.005832672, 0.046051025, -0.056610107, -0.043304443, -0.02796936, 0.043914795, -0.018981934, 0.099121094, -0.045715332, 0.0256958, -0.006351471, -0.0045928955, -0.015853882, -0.020492554, 0.023117065, 0.011512756, -0.009605408, -0.007007599, -0.058624268, -0.020263672, 0.05041504, -0.037597656, 0.008239746, -0.017211914, 0.016830444, -0.05126953, 0.0043029785, -0.031799316, -0.025100708, 0.03326416, 0.005180359, -0.00605011, -0.0055503845, 0.017547607, -0.02758789, 0.0058555603, -0.050842285, 0.031173706, 0.012931824, 0.045776367, 0.028549194, -0.008232117, -0.052368164, 0.00724411, 0.0012054443, -0.043273926, 0.0231781, 0.018096924, 0.016296387, -0.011634827, 0.016799927, 0.014266968, 0.013755798, -0.05657959, 0.007297516, 0.035247803, -0.007987976, 0.021072388, -0.0103302, 0.006843567, -0.023208618, 0.0051651, 0.022521973, 0.00349617, 0.026809692, -0.0008983612, 0.01424408, -0.010307312, -0.016357422, -0.0038814545, -0.0119018555, 0.0075569153, 0.045196533, -0.023590088, 0.02116394, -0.016967773, -0.028259277, -0.062194824, -0.026046753, -0.026824951, 0.03857422, -0.01826477, -0.034484863, -0.01499939, 0.0008096695, 0.009963989, -0.038970947, -0.033599854, 0.014335632, 0.0061798096, -0.009887695, 0.07159424, -0.045562744, -0.054840088, -0.0637207, 0.023086548, -0.11883545, -0.010536194, -0.015579224, 0.013900757, 0.015510559, -0.010177612, 0.016067505, 0.05291748, 0.024002075, -0.004310608, -0.021347046, -0.033355713, -0.03866577, 0.04827881, -0.010017395, -0.001004219, -0.015701294, 0.051574707, 0.0017538071, 0.015472412, 0.037994385, -0.015853882, -0.020996094, -0.013717651, -0.016921997, -0.012023926, 0.03137207, -0.01184845, 0.024719238, 0.030014038, -0.036499023, -0.037384033, -0.016448975, -0.030166626, 0.010955811, 0.0020275116, 0.03475952, -0.005832672, -0.036346436, -0.01335144, -0.018585205, -0.002040863, 0.030166626, -0.010139465, 0.03277588, -0.000934124, -0.033172607, 0.004299164, -0.005996704, 0.0019321442, -0.021530151, -0.005180359, 0.007904053, -0.045074463, -0.00422287, -0.012962341, -0.025466919, -0.014343262, 0.028030396, 0.07244873, -0.046661377, -0.028121948, 0.014816284, -0.012535095, 0.026275635, -0.023513794, -0.011177063, -0.01902771, -0.009567261, 0.0039978027, -0.0012340546, -0.00037908554, 0.011222839, -0.011123657, -0.014785767, 0.026794434, 0.011474609, 0.008232117, -0.041412354, 0.055023193, -0.001750946, 0.107788086, -0.029647827, -0.064086914, -0.053222656, 0.030136108, 0.0031967163, 0.005924225, 0.02949524, -0.00016725063, 0.007156372, 0.028198242, -0.02015686, -0.031829834, 0.00844574, 0.044158936, 0.021057129, 0.0023403168]}, "B07N12VXHK": {"id": "B07N12VXHK", "original": "Brand: Simplistex\nName: Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills\nDescription: BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18\" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!\nFeatures: The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools.\nExtra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18\" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here!\nOur grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come.\nOur BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point!\n1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!\n", "metadata": {"Name": "Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills", "Brand": "Simplistex", "Description": "BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18\" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!", "Features": "The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools.\nExtra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18\" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here!\nOur grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come.\nOur BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point!\n1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013435364, 0.016143799, -0.06781006, -0.04425049, 0.0017156601, -0.010375977, -0.046417236, 0.008094788, -0.046020508, 0.02684021, 0.021331787, -0.00067710876, 0.0018148422, -0.029373169, -0.0074882507, -0.036315918, 0.02116394, -0.0016460419, 0.00466156, -0.032440186, -0.0048446655, -0.014640808, 0.010017395, 0.017929077, 0.05090332, -0.036315918, -0.014213562, 0.008239746, 0.039093018, 0.0053901672, 0.03768921, -0.014854431, 0.04119873, -0.004398346, -0.01360321, 0.019622803, -0.021118164, 0.016067505, 0.0017910004, -0.017150879, 0.023895264, -0.00579834, -0.06185913, 0.02684021, -0.03475952, -0.050811768, 0.015930176, -0.024673462, 0.017868042, 0.0385437, 0.028198242, 0.014175415, 0.031585693, 0.004951477, 0.0050201416, 0.019500732, -0.024414062, -0.011451721, 0.012466431, 0.022506714, 0.011154175, -0.0013284683, 0.003583908, -0.018081665, -0.011184692, -0.01663208, 0.031555176, -0.002166748, -0.058288574, -0.053771973, 0.031463623, -0.014289856, 0.042755127, -0.008796692, 0.013656616, -0.026489258, -0.032684326, -0.010902405, 0.041931152, -0.0021381378, -0.012832642, -0.0060310364, -0.06274414, -0.022369385, -0.004337311, -0.012397766, -0.018173218, -0.00034546852, -0.013687134, 0.0027313232, 0.0047454834, -0.028259277, -0.052642822, 0.060333252, 0.042388916, -0.009223938, -0.019699097, -0.041015625, 0.0036411285, -0.008483887, 0.03314209, -0.036193848, 0.036468506, 0.01374054, -0.026870728, -0.009391785, -0.0002579689, -0.024169922, -0.021514893, 0.031051636, -0.035888672, -0.026351929, 0.014732361, -0.030914307, -0.04949951, -0.020980835, -0.011657715, -0.025421143, 0.03652954, -0.06121826, -0.02268982, -0.00907135, -0.013145447, 0.033081055, 0.04840088, 0.04650879, 0.0059432983, 0.024459839, 0.006542206, -0.032196045, -0.050750732, 0.0070991516, 0.0579834, 0.04660034, 0.030517578, -0.013572693, 0.0041236877, -0.027038574, -0.0032787323, 0.03955078, -0.017608643, -0.036193848, 0.025543213, -0.0024414062, 0.025009155, 0.009963989, 0.024597168, 0.03100586, 0.009689331, -0.011444092, 0.036468506, -0.0078086853, 0.021850586, 0.01789856, -0.04849243, -0.0116119385, -0.012496948, -0.011749268, -0.018051147, -0.040740967, -0.0038452148, -0.029312134, 0.0096588135, -0.019454956, -0.05319214, 0.029403687, -0.027572632, -0.008171082, -0.005077362, 0.009605408, -0.04019165, 0.047088623, -0.034179688, -0.028762817, 0.0019226074, 0.0013790131, -0.040008545, 0.08880615, 0.04360962, -0.0769043, -0.052947998, -0.058502197, 0.10644531, -0.02923584, -0.01802063, -0.035247803, -0.0006246567, -0.03250122, 0.055999756, -0.0044822693, 0.01701355, -0.01979065, -0.0058288574, 0.019622803, 0.0082473755, 0.038238525, -0.032287598, 0.055114746, 0.009399414, -0.095947266, -0.01499176, 0.009918213, 0.007751465, -0.032928467, -0.010169983, -0.016113281, -0.012298584, 0.036468506, 0.00881958, 0.039886475, 0.0023708344, 0.004760742, -0.010932922, -0.02331543, -0.011512756, 0.012374878, 0.025009155, 0.026916504, 0.017913818, 0.0042304993, 0.042297363, -0.006931305, 0.026824951, 0.04244995, -0.0057754517, 0.01701355, -0.038909912, 0.013046265, -0.022659302, 0.020645142, -0.020004272, 0.019119263, 0.08123779, 0.07373047, -0.038238525, 0.02255249, 0.023864746, 0.06793213, -0.02519226, -0.0077171326, 0.010940552, 0.0028934479, -0.048583984, -0.0052986145, 0.031677246, 0.03237915, 0.010848999, -0.017303467, 0.020019531, 0.015174866, 0.035308838, -0.045013428, 0.030639648, 0.0012350082, 0.011024475, 0.015266418, -0.03817749, -0.012054443, -0.04736328, 0.007659912, 0.015777588, -0.01852417, -0.007396698, -0.019729614, 0.08648682, -0.039001465, 0.010070801, -0.010055542, -0.031707764, 0.024307251, 0.008880615, -0.07696533, -0.005039215, 0.024368286, 0.02130127, -0.04937744, -0.037750244, 0.014915466, -0.0028934479, -0.0024433136, 0.022079468, 0.037200928, 0.0703125, 0.002588272, -0.012542725, 0.006023407, 0.047546387, 0.022399902, -0.022415161, -0.0014791489, 0.024795532, -0.007484436, -0.010543823, -0.028121948, 0.018051147, -0.020202637, -0.004711151, 0.05014038, -0.012504578, 0.0048599243, 0.020050049, 0.027175903, -0.046142578, 0.02166748, 0.0050354004, 0.010688782, 0.012466431, 0.026428223, 0.020339966, -0.034423828, 0.040740967, 0.03375244, 0.035736084, 0.0062065125, 0.06695557, 0.013259888, 0.02204895, 0.06121826, 0.056152344, 0.0057907104, -0.039611816, -0.017349243, 0.009803772, -0.0017004013, 0.003364563, -0.003917694, 0.0053596497, 0.017807007, -9.3996525e-05, 0.01424408, 0.0005283356, -0.00541687, -0.009216309, 0.0027980804, -0.012481689, 0.015625, 0.004600525, -0.006668091, -0.01626587, -0.007331848, -0.008522034, -0.059326172, -0.0025520325, -0.044006348, 0.0068244934, 0.020812988, 0.03878784, 0.012588501, -0.03640747, 0.05053711, -0.04598999, -0.040649414, 0.03363037, 0.008872986, 0.015174866, -0.002380371, -0.048675537, 0.00491333, -0.018875122, -0.05355835, -0.032348633, 0.023025513, -0.018966675, 0.05340576, -0.000218153, -0.037628174, 0.035949707, 0.041748047, 0.026473999, 0.016281128, 0.044433594, -0.001619339, -0.034942627, 0.0019035339, 0.014076233, -0.023742676, -0.031433105, -0.06365967, 0.04510498, -0.012069702, -0.018325806, 0.021316528, 8.767843e-05, 0.06317139, 0.03564453, 0.00642395, 0.011077881, 0.07067871, -0.020751953, -0.02861023, -0.008514404, 0.041748047, -0.09051514, -0.018875122, -0.008987427, 0.0010232925, 0.06555176, -0.022506714, 0.0007829666, -0.04928589, -0.111083984, 0.017227173, 0.0048942566, -0.018753052, 0.012077332, -0.06036377, -0.027389526, -0.060913086, -0.008361816, 0.025039673, 0.011276245, 0.0060577393, -0.00066518784, 0.016204834, 0.017684937, -0.045562744, 0.0619812, -0.0031490326, 0.018692017, -0.030639648, 0.023071289, -0.007865906, 0.024520874, 0.02960205, 0.0025177002, -0.0032844543, 0.012298584, 0.005264282, -0.015090942, 0.0057525635, -0.0064315796, -0.02859497, 0.0069618225, 0.011001587, -0.06939697, -0.008605957, -0.011016846, -0.026260376, 0.04647827, -0.055908203, -0.0067443848, -0.005378723, -0.04598999, 0.019104004, -0.017456055, -0.022903442, -0.0335083, -0.014816284, 0.000151515, -0.013671875, -0.0065612793, 0.013313293, 0.0024814606, 0.024734497, -0.020050049, 0.051513672, 0.00082683563, 0.0262146, -0.0013713837, -0.007789612, -0.033966064, -0.03652954, 0.037353516, -0.010139465, 0.021224976, -0.07196045, 0.058166504, -0.005340576, 0.015357971, -0.0040016174, -0.018341064, 0.05621338, 0.012428284, -0.01071167, 0.03942871, -0.006324768, -0.01965332, 0.045013428, -0.056610107, -0.013114929, -0.07727051, -0.0011968613, -0.06652832, 0.07659912, 0.028884888, -0.010383606, 0.08746338, 0.091796875, -0.035125732, 0.032104492, 0.038482666, -0.008560181, 0.012428284, 0.024398804, -0.061828613, -0.006137848, -0.01675415, 0.04598999, 0.05532837, 0.017990112, -0.037597656, 0.012680054, 0.025558472, -0.061553955, -0.00033926964, 0.030731201, 0.019012451, -0.02748108, -0.03390503, -0.038757324, 0.028762817, -0.06719971, -0.008125305, 0.031066895, -0.0287323, -0.035888672, 0.021942139, 0.035980225, -0.05859375, -0.0067749023, 0.008453369, 0.013938904, -0.029144287, 0.02760315, 0.028564453, 0.004383087, -0.057128906, 0.0017852783, -0.029464722, 0.005657196, 0.04928589, 0.010787964, 0.03262329, -0.01209259, -0.0061073303, -0.008026123, -0.025344849, -0.0027313232, -0.010261536, -0.026046753, -0.010772705, -0.040100098, -0.044921875, -0.0031032562, -0.004524231, -0.005264282, 0.0010280609, 0.0031414032, 0.015357971, -0.038330078, -0.007144928, 0.008033752, -0.06652832, -0.004219055, 0.011482239, -0.049468994, -0.07836914, 0.03024292, 0.005470276, -0.023162842, -0.01977539, 0.029510498, -0.045410156, 0.022338867, -0.016586304, 0.008712769, 0.029525757, 0.0011148453, 0.03024292, -0.0038204193, -0.05581665, -0.012802124, 0.041046143, -0.0085372925, -0.0045318604, -0.028869629, -0.029876709, -0.0053520203, 0.016586304, 0.07696533, -0.006969452, 0.04699707, -0.029205322, 0.0015954971, -0.048706055, -0.0009379387, 0.025100708, -0.020767212, -0.033477783, -0.026123047, 0.055267334, -0.02166748, 0.0059394836, 0.002023697, -0.021865845, -0.011932373, 0.020385742, 0.013206482, 0.024017334, 0.0028457642, -0.052001953, -0.003932953, -0.0088272095, -0.012283325, 0.0871582, 0.02078247, -0.0011053085, -0.040527344, -0.042053223, -0.04284668, -0.017486572, 0.010765076, -0.00522995, 0.000117361546, -0.04824829, 0.03164673, -0.053527832, 0.09301758, 0.09307861, -0.030807495, 0.010093689, -0.009033203, -0.04827881, -0.010276794, -0.008308411, 0.012519836, 0.04046631, 0.003993988, -0.04171753, -0.023895264, -0.06323242, -0.023742676, -0.013900757, -0.0093688965, 0.0034122467, -0.0024223328, -0.008056641, -0.019378662, -0.0011110306, 0.007598877, -0.0062294006, 0.024368286, 0.017074585, -0.023498535, -0.00472641, -0.04559326, -0.023208618, -0.009101868, -0.013183594, -0.012252808, -0.0008363724, 0.005844116, -0.04031372, 0.019241333, 0.05303955, -0.0035934448, -0.0069847107, 0.04071045, -0.004825592, 0.005279541, -0.009063721, 0.04763794, -0.00831604, -0.0096588135, 0.04147339, -0.02381897, -0.04333496, 0.0011634827, -0.04849243, 0.052612305, -0.032470703, -0.030471802, 0.05795288, -0.023147583, 0.0158844, 0.007106781, -0.012321472, 0.013870239, 0.008979797, -0.04348755, -0.0012779236, 0.011405945, 0.037719727, 0.0026779175, -0.025939941, 0.04864502, 0.0027313232, -0.020706177, 0.03491211, 0.009117126, -0.033203125, -0.02848816, 0.018188477, -0.041992188, 0.0059280396, 0.029754639, -0.018203735, -0.047943115, -0.005970001, -0.024414062, 0.007965088, -0.017684937, -0.014289856, -0.0368042, -0.0023517609, -0.013465881, -0.024551392, 0.009284973, 0.0084991455, 0.00050258636, 0.014656067, 0.028900146, -0.0015382767, -0.013290405, 0.020584106, -0.014144897, 0.0019721985, 0.0056152344, -0.009773254, -0.003074646, 0.009880066, 0.027008057, 0.047546387, -0.018981934, 0.027389526, 0.010353088, -0.016601562, 0.022018433, -0.005104065, -0.01146698, 0.010177612, -0.04107666, 0.07080078, -0.013641357, -0.053619385, -0.026412964, 0.057159424, -0.055999756, -0.05230713, 0.1104126, 0.011428833, 0.045196533, -0.003232956, -0.021850586, -0.022018433, -0.0072135925, -0.0063591003, 0.0059013367, -0.004310608, -0.024871826, 0.016784668, 0.028320312, -0.019302368, -0.041778564, 0.034210205, -0.030975342, -0.014785767, -0.026016235, -0.04055786, 0.006259918, 0.0044517517, 0.023590088, 0.009124756, -0.031982422, -0.027130127, -0.02305603, -0.021102905, 0.032928467, 0.039245605, 0.046936035, 0.018096924, -0.04876709, 0.03451538, 0.060943604, -0.03479004, 0.08099365, -0.0013427734, -0.035491943, -0.023010254, -0.0038013458, 0.031311035, -0.005596161, 0.017105103, 0.010871887, -0.00566864, 0.037628174, 0.045318604, -0.0023479462, -0.011802673, -0.007369995, 0.032928467, 0.007572174, 0.028900146, -0.031280518, 0.0078125, 0.003238678, -0.038360596, 0.0040740967, 0.024475098, -0.0067443848, -0.037902832, -0.0020160675, -0.02418518, 0.040527344, -0.0028514862, 0.027633667, -0.021133423, 0.05090332, -0.038238525, 0.019226074, -0.014137268, 0.0090408325, 0.059020996, -0.030807495, -0.045135498, -0.057800293, 0.00039172173, -0.012557983, 0.011177063, 0.021316528, -0.021957397, 0.00831604, 0.013801575, 0.025985718, -0.027877808, -0.017028809, 0.047424316, 0.0009050369, -0.017623901, -0.007621765, 3.6358833e-05, -0.054992676, -0.02381897, 0.006690979, -0.00038790703, 0.0031013489, 0.01864624, 0.04525757, 0.0028820038, 0.025299072, 0.003648758, 0.017608643, -0.013542175, 0.007648468, -0.03579712, 0.03994751, 0.04776001, -0.010513306, -0.025848389, -0.0039100647, 0.050354004, -0.02268982, -0.0018367767, -0.030090332, 0.027923584, -0.02520752, -0.003835678, -0.02468872, -0.057373047, -0.008979797, 0.012413025, 0.015068054, 0.08337402, 0.05529785, -0.015434265, 0.010223389, -0.07116699, 0.033111572, -0.017471313, 0.03933716, 0.028320312, 0.051696777, -0.01889038, 0.008178711, -0.017105103, -0.0065231323, 0.017440796, 0.02381897, 0.019851685, 0.0008764267, -0.0038528442, 0.06298828, 0.07092285, 0.043884277, 0.038513184, 0.020629883, -0.043548584, -0.039764404, -0.044067383, -0.0036411285, 0.0014228821, -0.010848999, 0.0037231445, 0.029830933, -0.02709961, 0.03326416, 0.033233643, -0.0017461777, -0.027511597, -0.015449524, 0.028579712, -0.034240723, 0.030441284, -0.018753052, -0.011459351, 0.010322571, -0.01991272, -0.03164673, -0.018798828, -0.032928467, 0.0317688, 0.003042221, -0.032684326, -0.038024902, 0.005012512, -0.032562256, -0.028823853, -0.02130127, 0.0041160583, 0.05633545, 0.011001587, 0.09197998, -0.03866577, -0.06341553, -0.048553467, 0.024215698, -0.07562256, -0.0015125275, -0.05078125, 0.029510498, 0.0038757324, -0.012573242, 0.008720398, 0.078063965, -0.0059318542, 0.0054244995, -0.04309082, -0.04650879, -0.033477783, 0.05392456, -0.011833191, 0.020965576, -0.018798828, 0.05154419, -0.003730774, 0.03164673, 0.021697998, -0.051757812, -0.040527344, -0.023269653, -0.025970459, 0.0075416565, 0.016723633, -0.009483337, 0.019241333, 0.0046157837, -0.03564453, -0.011703491, -0.00017857552, -0.019073486, 0.03161621, 0.016860962, -0.00076150894, -0.008338928, -0.04095459, 0.010101318, -0.008865356, -0.0053634644, 0.05117798, 0.006652832, 0.00034236908, -0.0030212402, -0.03591919, 0.036071777, -0.0033817291, -0.02998352, 0.005168915, 0.0009188652, 0.024993896, -0.012931824, -0.010414124, 0.016403198, -0.015701294, -0.035736084, 0.046417236, -0.0007405281, -0.03253174, -0.04827881, -0.019241333, -0.023498535, -0.038360596, -0.033477783, 0.014976501, -0.07299805, 0.03756714, 0.026153564, 0.02015686, -0.01033783, 0.022125244, -0.038116455, -0.007091522, 0.007987976, 0.0074424744, -0.0038471222, -0.017913818, 0.04232788, -0.0021800995, 0.06451416, 0.0047836304, -0.04171753, -0.035064697, 0.0657959, -0.0014209747, -0.028305054, 0.01927185, -0.04248047, 0.015411377, 0.013114929, -0.024383545, -0.0043563843, 0.003704071, 0.013748169, -0.018341064, 0.009521484]}, "B00823W9B0": {"id": "B00823W9B0", "original": "Brand: Mr. Heater\nName: Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "metadata": {"Name": "Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)", "Brand": "Mr. Heater", "Description": "", "Features": "Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.029510498, -0.025634766, -0.022384644, -0.040100098, -0.0077781677, -0.026733398, -0.00024795532, 0.035247803, -0.07354736, 0.0017261505, 0.0017375946, 0.04144287, -0.007080078, -0.046417236, 0.06640625, -0.036102295, 0.008682251, 0.003692627, -0.037384033, -0.04626465, 0.019119263, -0.0335083, -0.033355713, 0.07342529, 0.024002075, -0.045959473, 0.018341064, -0.003742218, 0.009902954, -0.014221191, 0.019546509, 0.0024719238, 0.038208008, -0.02330017, -0.0005555153, -0.009010315, -0.022720337, -0.004611969, -0.027801514, 0.007621765, -0.0063095093, 0.022644043, -0.03540039, 0.017089844, -0.06591797, -0.050842285, 0.015945435, 0.034423828, 0.0259552, -0.020599365, 0.0023880005, -0.015365601, 0.030944824, -0.047973633, -0.04220581, -0.030090332, 0.066101074, -0.040924072, 0.023269653, -0.061645508, -0.042785645, 0.018600464, 0.05230713, 0.040405273, -0.059631348, 0.01940918, 0.0803833, -0.017913818, 0.005859375, -0.08416748, -0.03491211, 0.049743652, 0.032226562, 0.025344849, -0.05630493, -0.043029785, 0.013954163, -0.014823914, 0.04788208, -0.03503418, 0.010040283, -0.0055885315, -0.01727295, -0.026184082, 0.021697998, 0.0077705383, -0.005962372, -0.015037537, -0.037139893, -0.024047852, -0.038391113, -0.021011353, -0.009811401, -0.011299133, -0.034851074, -0.0059051514, -0.031921387, -0.044891357, 0.047943115, 0.017166138, -0.028259277, -0.006996155, -0.02734375, 0.0064315796, -0.009536743, 0.013282776, 0.037261963, -0.02218628, -0.009750366, -0.009353638, -0.033355713, 0.028411865, 0.028335571, -0.019042969, -0.03765869, 0.0010194778, -0.002943039, 0.0126953125, 0.013404846, 0.0037517548, -0.027328491, 0.011505127, 0.0099487305, -0.039764404, 0.019607544, -0.016418457, -0.015289307, 0.0032920837, -0.037139893, 0.057159424, -0.037475586, 0.0071792603, 0.032836914, 0.008285522, -0.024093628, -0.03933716, 0.018249512, 0.006088257, -0.008773804, -0.020812988, 0.0036735535, 0.0037441254, 0.0026054382, -0.021911621, -0.043060303, 0.021865845, 0.008216858, 0.007320404, -0.01322937, -0.028701782, -0.028823853, -0.022216797, 0.012992859, 0.015670776, 0.022140503, -0.0015192032, 0.02243042, -0.016677856, -0.0012817383, -0.021087646, -0.013023376, -0.031082153, -0.020202637, 0.0076560974, -0.037475586, 0.039978027, 0.03793335, 0.003030777, 0.020385742, 0.08105469, 0.0309906, -0.040863037, -0.0025310516, 0.025741577, -0.010887146, -0.00046277046, -0.034973145, 0.07897949, 0.05606079, -0.1138916, -0.07897949, -0.07409668, 0.13110352, -0.058258057, -0.023757935, -0.023864746, 0.03125, 0.023849487, 0.0027122498, 0.008720398, 0.04638672, 0.027008057, 0.031707764, -0.022888184, -0.006412506, -0.009262085, -0.03765869, 0.013999939, -0.023345947, 0.0033340454, 0.017791748, 0.009971619, 0.0059051514, -0.00655365, 0.028381348, -0.0023403168, 0.013542175, -0.005054474, -0.009559631, 0.014625549, 0.0014638901, -0.03668213, 0.010467529, -0.052642822, -0.022598267, -0.008979797, -0.033233643, 0.015533447, 0.008384705, -0.019165039, 0.023605347, 0.008018494, 0.016845703, -0.011436462, 0.0007843971, -0.02557373, 0.0004105568, -0.0118255615, 0.014205933, -9.840727e-05, 0.018096924, -8.165836e-06, 0.064941406, 0.07727051, 0.0061798096, 0.027954102, 0.07220459, 0.026779175, -0.018356323, -0.025482178, 0.00036787987, -0.03189087, -0.0059661865, 0.08453369, -0.050842285, 0.026977539, 0.039031982, 0.022705078, -0.02330017, 0.044403076, 0.030883789, 0.022537231, 0.0078125, 0.0024738312, -0.06341553, 0.019058228, -0.02961731, 0.028793335, -0.016448975, 0.02142334, -0.012359619, 0.08288574, 0.06036377, 0.004878998, 0.002199173, 0.03756714, 0.025817871, 0.043518066, -0.022216797, 0.021484375, 0.008666992, 0.006717682, 0.012420654, 0.038604736, 0.045776367, -0.013465881, 0.008102417, -0.03338623, 0.003332138, 0.013717651, 0.0036373138, -0.00995636, 0.008804321, -0.009559631, 0.040008545, 0.019058228, 0.007949829, -0.0047950745, -0.024536133, 0.01159668, 0.035186768, 0.006919861, -0.027755737, 0.003293991, 0.03805542, -0.020233154, -0.03326416, 0.0121154785, 0.012077332, 0.001748085, -0.037475586, 0.05166626, 0.0056533813, 0.0051498413, -0.005470276, 0.021072388, 0.014434814, -0.015838623, -0.0074539185, 0.008117676, -0.039642334, -0.0118255615, 0.012794495, -0.016326904, 0.027755737, 0.023498535, 0.0017385483, 0.026168823, 0.020431519, 0.03488159, -0.05633545, 0.021697998, -0.022857666, 0.014724731, 0.018814087, 0.009567261, -0.00025177002, 0.008872986, -0.03378296, -0.0044937134, -0.008476257, -0.05050659, -0.0423584, 0.035491943, 0.010910034, 0.03982544, 0.00046014786, 0.013298035, -0.020111084, -0.04031372, 0.006225586, -0.032470703, 0.0064201355, 0.020233154, -0.024459839, 0.008605957, 0.038269043, 0.02508545, -0.02670288, 0.01612854, -0.015098572, -0.032989502, -0.0062179565, -0.012229919, 0.033843994, -0.00024318695, -0.023651123, 0.0003964901, 0.046325684, -0.043548584, -0.023956299, -0.0022087097, -0.045928955, -0.010871887, 0.03591919, -0.01878357, -0.017410278, -0.02178955, -0.054534912, -0.006702423, 0.002161026, -0.0077209473, -0.04257202, -0.042175293, -0.052093506, 0.021972656, -0.03579712, -0.06573486, 0.05041504, -0.024627686, 0.022720337, 0.011383057, 0.015823364, 0.008354187, 0.020355225, 0.0013122559, -0.026031494, 0.018234253, -0.006389618, 0.013648987, -0.037261963, -0.030761719, 0.014671326, -0.01751709, 0.0031929016, -0.014099121, -0.02909851, 0.016082764, -0.031158447, 0.009849548, -0.050933838, 0.0074768066, 0.01235199, -0.053863525, 0.01826477, -0.04458618, -0.02293396, -0.026031494, 0.012573242, 0.029693604, -0.00299263, -0.01586914, 0.0027656555, -0.017471313, 0.0018053055, 0.006111145, 0.011314392, 0.003490448, -0.02229309, -0.01739502, 0.044677734, -0.039978027, 0.008598328, 0.009284973, -0.017730713, -0.0013904572, -0.017150879, 0.01411438, 0.021102905, 0.038757324, -0.005809784, 0.007423401, -0.027160645, -0.030288696, -0.021636963, 0.024765015, 0.01373291, 0.012779236, 0.024520874, -0.011978149, 0.001127243, -0.0028533936, 0.03186035, 0.039367676, -0.012229919, 0.04385376, -0.011993408, 0.012634277, -0.04220581, -0.055114746, 0.0028476715, 0.028457642, 0.0209198, 0.023605347, 0.016616821, 0.0395813, 0.018310547, 0.03994751, -0.0004582405, -0.017425537, 0.0057029724, -0.017868042, -0.026473999, 0.0129776, -0.0088272095, -0.051574707, 0.06732178, 0.001253128, -0.0076408386, 0.0124435425, -0.03640747, 0.032318115, 0.03717041, -0.019073486, 0.042755127, 0.00055122375, 0.012786865, 0.008049011, -0.043762207, -0.03741455, -0.031829834, 0.020950317, -0.0814209, 0.042510986, 0.031982422, -0.01776123, 0.015792847, -0.007835388, -0.024429321, 0.010177612, -0.018341064, 0.012435913, 0.016906738, -0.017715454, -0.021606445, -0.013549805, 0.01171875, -0.033294678, -0.016601562, -0.02986145, -0.055603027, 0.02407837, 0.016464233, 0.007385254, -0.04034424, -0.012207031, 0.042877197, 0.004180908, 0.025894165, -0.02368164, 0.04434204, -0.0037345886, 0.030319214, 0.003742218, -0.010505676, -0.036865234, 0.0390625, -0.048980713, -0.0023097992, 0.017303467, 0.012428284, 0.015350342, -0.0058898926, 0.009681702, 0.014457703, 0.0076293945, -0.02684021, 0.031433105, -0.0149383545, -0.01574707, 0.038513184, -0.0018138885, 0.017715454, 0.015914917, -0.0067596436, 0.034118652, -0.0041236877, 0.01234436, 0.0030593872, -0.034851074, -0.009414673, 0.03591919, 0.026168823, -0.026184082, -0.0140686035, -0.009529114, -0.022735596, -0.02947998, 0.004283905, -0.04373169, -0.0031604767, 0.013893127, -0.103271484, -0.039794922, -0.021072388, 0.012908936, -0.051818848, 0.023925781, -0.030029297, 0.015365601, -0.00014173985, 0.0075035095, -0.032318115, 0.012046814, -0.026489258, 0.018981934, 0.0031967163, -0.018814087, 0.06677246, -0.055267334, -0.007247925, -0.023406982, 0.006664276, -0.030410767, 0.043823242, 0.010307312, -0.021835327, -0.024169922, -0.004337311, 0.0041923523, -0.04837036, 0.044555664, 0.024139404, -0.0021800995, -0.014190674, -0.041015625, -0.012527466, -0.06274414, -0.057159424, -0.04083252, 0.061157227, 0.008483887, 0.00806427, -0.02760315, 0.01146698, 0.012931824, -0.04498291, -0.08081055, -0.03994751, -0.0065078735, -0.038330078, 0.017974854, -0.0039367676, -0.012870789, 0.014312744, 0.08898926, 0.036865234, 0.001332283, -0.0049095154, 0.011451721, -0.0018062592, 0.0129470825, -0.037963867, 0.0040245056, -0.037322998, -0.0056533813, -0.046081543, 0.028961182, 0.043029785, -0.02267456, 0.047821045, 0.03768921, 0.030349731, 0.04486084, -0.03189087, 0.02281189, 0.016662598, -0.012176514, -0.045318604, -0.011314392, -0.03353882, -0.017150879, -0.0006766319, -0.04849243, 0.033569336, 0.06335449, -0.008277893, 0.009963989, -0.050964355, -0.032989502, 0.0030517578, 0.0068130493, -0.022781372, -0.0063591003, 0.018585205, -0.01878357, -0.0063972473, 0.0002603531, 0.008613586, 0.00020754337, 0.051971436, 0.009559631, -0.04537964, -0.017364502, 0.05105591, -0.010345459, -0.038146973, 0.014953613, -0.011711121, -0.0024299622, -0.028549194, 0.013336182, 0.017028809, 0.02178955, -0.0043678284, -0.019012451, 0.029327393, 0.013725281, -0.0016803741, -0.020431519, -0.013122559, -0.03387451, 0.020950317, 0.0041999817, 0.01927185, -0.035736084, 0.03652954, -0.0059928894, -0.014305115, -0.055877686, 0.02267456, -0.013664246, -0.09118652, 0.039031982, -0.028259277, 0.014572144, -0.02999878, 0.030914307, 0.018630981, 0.0065345764, -0.00055646896, 0.021347046, 0.0022621155, -0.02482605, 0.016296387, 0.0184021, -0.054138184, 0.07879639, 0.021530151, 0.020568848, -0.011978149, 0.041931152, -0.01360321, 0.013252258, 0.008682251, -0.012374878, -0.05419922, 0.005622864, 0.051757812, 0.031585693, 0.009765625, -0.026245117, -0.008216858, -0.0023918152, -0.0034713745, -0.027572632, -0.009605408, 0.019577026, -0.011634827, 0.015487671, -0.024597168, -0.026794434, 0.0015983582, -0.01828003, -0.007331848, -0.0020580292, -0.03692627, -0.009475708, -0.002855301, 0.011779785, -0.018722534, 0.025421143, 0.054779053, -0.0385437, -0.028289795, -0.05029297, 0.06335449, -0.026428223, -0.034576416, 0.10083008, 0.09552002, 0.013900757, 0.03024292, -0.034301758, -0.026824951, 0.031219482, -0.003396988, -0.0284729, 0.029388428, -0.0048294067, 0.023803711, 0.01071167, 0.0014591217, -0.043395996, 0.004627228, -0.039978027, -0.0059318542, -0.0079422, -0.0045700073, -0.013031006, -0.04748535, 0.016296387, -0.022018433, -0.030273438, -0.007534027, -0.0680542, -0.011878967, 0.02217102, -0.02268982, 0.030090332, 0.053588867, 0.00083065033, -0.0044403076, -0.002161026, -0.034057617, 0.02835083, 0.024124146, -0.033966064, 0.017684937, 0.028717041, -0.0019721985, -0.013633728, -0.036987305, -0.0049438477, -0.02357483, 0.051086426, 0.0692749, 0.013504028, -0.0030021667, 0.0028533936, 0.07336426, -0.0008459091, 0.024215698, 0.032226562, 0.066833496, 0.0006752014, -0.082214355, 0.012191772, -0.019195557, -0.052886963, 0.044128418, -0.058013916, 0.011810303, -0.008766174, -0.0154953, 0.022857666, -0.035827637, 0.054901123, -0.021697998, 0.01889038, 0.0025615692, -0.009231567, -0.0095825195, -0.030639648, -0.01940918, -0.011917114, 0.06048584, 0.0069847107, 0.04333496, -0.05722046, -0.016082764, 0.03451538, 0.0011692047, -0.00080013275, -0.0098724365, 0.012580872, 0.03161621, -0.07458496, 0.013877869, -0.03753662, -0.021118164, -0.01838684, -0.04058838, -0.004558563, 0.0058403015, 0.009017944, -0.0031738281, 0.00945282, 0.011917114, 0.021499634, -0.06713867, 0.014442444, -0.051330566, -0.055877686, 0.00894928, -0.013290405, -0.023986816, 0.010513306, -0.07775879, 0.015281677, 0.045013428, 0.043823242, 0.048431396, -0.036071777, 0.04324341, -0.03074646, -0.011421204, -0.026000977, -0.05722046, 0.024963379, 0.023422241, -0.0262146, 0.03390503, 0.015945435, -0.002462387, 0.03390503, -0.05682373, 0.022628784, -0.03567505, 0.029403687, 0.022354126, 0.055145264, -0.061431885, -0.044189453, -0.009132385, 0.0004377365, 0.0023326874, 0.020431519, 0.012962341, 0.020706177, 0.042785645, 0.022277832, 0.055480957, 0.00071907043, 0.0021648407, 0.002626419, 0.0054626465, -0.0039787292, 0.009788513, -0.0357666, -0.00023782253, 0.014015198, 0.014801025, 0.026824951, -0.00932312, -0.04675293, -0.019363403, -0.020965576, -0.042053223, 0.032714844, -0.05014038, -0.007904053, 0.023727417, -0.05444336, -0.039123535, 0.015670776, 0.008781433, -0.016342163, -0.005054474, -0.018325806, 0.0048294067, 0.0010948181, -0.052642822, -0.025787354, 0.021972656, 0.047088623, -0.053588867, -0.010726929, -0.01777649, -0.017944336, 0.020126343, 0.0014333725, 0.020141602, -0.08282471, -0.064575195, 0.057647705, -0.07476807, -0.049224854, 0.034423828, -0.039489746, -0.037628174, -0.009063721, 0.04736328, 0.061645508, 0.05279541, 0.007850647, 0.024612427, -0.06774902, 0.00573349, 0.030273438, 0.016784668, -0.026565552, -0.070007324, 0.010375977, 0.015220642, 0.0007119179, 0.030426025, 0.03768921, -0.05493164, -0.0063171387, -0.046966553, -0.02670288, 0.02798462, -0.029769897, 0.043273926, 0.017791748, -0.03729248, 0.0013198853, 0.012832642, -0.030548096, 0.0008907318, 0.010276794, 0.04611206, 0.015090942, -0.058929443, -0.0013685226, -0.019866943, -0.0037937164, 0.084350586, -0.026641846, -0.01638794, 0.047424316, -0.026565552, 0.037963867, 0.0259552, 0.023468018, 0.005859375, 0.018554688, -0.012809753, 0.012619019, -0.016418457, 0.0036716461, -0.039978027, 0.037384033, 0.020736694, 0.036590576, -0.038146973, -0.045196533, -0.002149582, 0.004436493, -0.024520874, -0.039215088, -0.005821228, 0.015525818, 0.0368042, 0.03152466, 0.037841797, -0.042907715, 0.023223877, 0.031021118, -0.039398193, 0.015335083, 0.04083252, 0.005706787, -0.04067993, 0.027557373, 0.034301758, 0.008216858, -0.010276794, -0.06390381, -0.058044434, 0.049316406, 0.0022277832, -0.020935059, 0.02935791, -0.0028896332, 0.015365601, 0.036254883, -0.020568848, 0.001996994, -0.024459839, 0.06652832, -0.009918213, -0.015213013]}, "B000646U3Q": {"id": "B000646U3Q", "original": "Brand: Coleman\nName: Coleman 2000032171 Cooking Stoves Accessories & Parts\nDescription: \nFeatures: Replacement gas stove regulator for Coleman stoves with gas pressure issues\nMaintains steady propane gas pressure in Coleman stoves\nFits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves\nBrings new life to beloved Coleman stoves that require maintenance\nCheck user manual of your Coleman stove to confirm compatibility\n", "metadata": {"Name": "Coleman 2000032171 Cooking Stoves Accessories & Parts", "Brand": "Coleman", "Description": "", "Features": "Replacement gas stove regulator for Coleman stoves with gas pressure issues\nMaintains steady propane gas pressure in Coleman stoves\nFits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves\nBrings new life to beloved Coleman stoves that require maintenance\nCheck user manual of your Coleman stove to confirm compatibility", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.041748047, -0.038757324, 0.029388428, 0.023147583, -0.085998535, 0.02357483, -0.045043945, -0.019042969, -0.033111572, 0.008216858, 0.018722534, 0.011878967, 0.018096924, -0.0501709, 0.019348145, -0.006252289, 0.012893677, 0.022781372, 0.023788452, -0.021697998, 0.00333786, -0.010971069, 0.018936157, 0.06530762, 0.019104004, -0.0027160645, -0.022583008, 0.012237549, 0.010719299, 0.011940002, 0.024871826, -0.005718231, 0.02671814, 0.009231567, -0.009986877, -0.014549255, 0.024108887, -0.010513306, -0.017990112, 0.016708374, 0.01184082, 0.005970001, 0.07531738, -0.0036907196, 0.017303467, -0.03805542, 0.037017822, -0.035369873, 0.014030457, -0.02128601, 0.023727417, 0.01864624, 0.030761719, -0.04928589, -0.02330017, -0.02178955, 0.008285522, 0.010719299, 0.012741089, -0.034088135, -0.016326904, 0.01574707, 0.032989502, 0.018554688, -0.0063591003, 0.0135269165, 0.0748291, -0.000101447105, -0.030303955, -0.032348633, 0.006996155, 0.0025157928, -0.009414673, 0.013511658, -0.032318115, -0.025497437, 0.02305603, -0.018341064, 0.015686035, 0.024017334, -0.013458252, -0.016296387, 0.047729492, -0.021072388, -0.0009012222, -0.02154541, -0.010437012, -0.007129669, -0.04562378, -0.015045166, -0.023986816, 0.019241333, -0.103149414, 0.019836426, 0.011383057, -0.02104187, 0.017715454, 0.0010595322, 0.014511108, -0.029907227, 0.03060913, -0.04046631, 0.012145996, -0.0006380081, -0.009231567, 0.064941406, 0.047729492, 0.07751465, 0.014678955, -0.025817871, -0.0040016174, 0.015274048, 0.008407593, -0.027282715, -0.018661499, 0.014892578, -0.016738892, -0.0030345917, -0.004722595, -0.023391724, 0.0028438568, -0.0030384064, 0.042419434, -0.046722412, 0.028045654, -0.0033817291, -0.054229736, 0.0064315796, -0.019241333, 0.028808594, -0.060546875, 0.01259613, 0.082214355, 0.03503418, 0.014816284, -0.022354126, 0.023757935, -0.0007328987, 0.033599854, -0.028579712, 0.036254883, -0.004169464, 0.00020384789, 0.041992188, -0.004299164, 0.011878967, 0.02999878, 0.0022907257, -0.022384644, -0.02861023, 0.011352539, 0.0033931732, 0.02053833, 0.03314209, -0.010665894, 0.0181427, 0.008766174, -0.019958496, -0.0076789856, -0.036743164, -0.036132812, -0.029891968, -0.0040779114, -0.0015573502, 0.005470276, 0.04763794, 0.029754639, 0.017303467, 0.017059326, 0.06427002, -0.028839111, 0.01689148, 0.014259338, 0.02809143, -0.014030457, -0.013122559, -0.0070762634, 0.0021877289, 0.03213501, -0.038146973, -0.033843994, -0.039001465, 0.04055786, -0.016571045, 0.023666382, -0.047607422, 0.05496216, 0.017791748, -0.03744507, 0.02973938, 0.020584106, 0.022644043, -0.04638672, 0.0058403015, -0.0073242188, 0.00831604, 0.033569336, 0.032928467, 0.0053977966, -0.036224365, -0.0055732727, 0.034118652, -0.026000977, 0.029251099, 0.0074653625, -0.009613037, 0.009773254, 0.006324768, 0.053649902, 0.021255493, -0.018096924, 0.012550354, -0.00042152405, -0.03479004, -0.05316162, 0.016418457, 0.018600464, 0.004814148, 0.035614014, -0.010955811, 0.050689697, 0.014633179, 0.020065308, 0.024353027, 0.010635376, -0.0065078735, -0.009788513, -0.020309448, -0.02015686, 0.008552551, -0.0569458, 0.036193848, 0.040222168, 0.04711914, -0.010673523, 0.032592773, 0.06561279, 0.066467285, -0.032989502, -0.028381348, 0.014289856, -0.043151855, -0.012298584, 0.008216858, -0.033843994, 0.017852783, 0.043914795, -0.028961182, -0.03756714, 0.021850586, 0.04446411, 0.02848816, 0.012649536, 0.03881836, -0.028839111, 0.020828247, -0.0395813, 0.01789856, -0.021240234, 0.04019165, -0.037475586, 0.010185242, 0.07299805, -0.030426025, 0.001124382, 0.035980225, 0.004245758, 0.013587952, -0.05178833, 0.044067383, 0.02645874, 0.0018320084, -0.02305603, -0.0034885406, 0.035827637, 0.02758789, -0.054656982, 0.025299072, 0.00055122375, -0.012145996, 0.031341553, 0.036376953, 0.027420044, -0.000641346, 0.026000977, -0.003704071, 0.004272461, 0.039520264, 0.007446289, -4.3988228e-05, 0.04776001, -0.04397583, -0.00945282, -0.019256592, -0.0023212433, -0.0362854, 0.03277588, -0.0012340546, 0.022994995, -0.017150879, 0.013267517, 0.052001953, -0.024414062, 0.022201538, 0.006855011, 0.002532959, 0.023498535, 0.0027046204, 0.0007047653, 0.013755798, -0.07092285, -0.020324707, 0.020843506, 0.0113220215, 0.028839111, 0.0026988983, 0.004306793, 0.04901123, 0.008132935, -0.0018310547, -0.056732178, 0.024475098, 0.005077362, -0.00042152405, 0.041503906, 0.008369446, -0.015083313, 0.016571045, 0.0023517609, 0.007293701, -0.03967285, -0.0064888, -0.02986145, 0.018295288, -0.012306213, 0.006084442, 0.0003244877, 0.03387451, -0.0032176971, -0.038360596, -0.003604889, -0.017333984, -0.0008049011, 0.008300781, -0.06109619, -0.049102783, 0.03729248, -0.0037956238, -0.0105896, -0.004928589, 0.043426514, -0.000852108, 0.03152466, -0.016937256, 0.05319214, -0.019439697, -0.06524658, -0.033447266, 0.03378296, -0.07269287, -0.024841309, -0.018203735, -0.04208374, -0.029434204, 0.03994751, -0.0019044876, -0.04852295, 0.011444092, 0.019119263, 0.021469116, -0.017684937, 0.020874023, -0.026138306, -0.009803772, 0.002275467, 0.00047802925, 0.032592773, -0.010055542, 0.041534424, 0.030029297, 0.02305603, 0.023803711, 0.0104522705, 0.015510559, 0.013710022, 0.03768921, 0.037384033, 0.059265137, -0.029251099, -0.035217285, -0.02748108, 0.049865723, -0.047576904, -0.015037537, -0.0033454895, 0.017730713, 0.026794434, -0.037384033, 0.0064315796, -0.036621094, -0.05331421, -0.009033203, -0.017822266, -0.020507812, -0.005329132, -0.03451538, -0.01663208, -0.049713135, 0.021987915, 0.0031738281, 0.016021729, 0.0006752014, 0.00071287155, -0.004611969, 0.0056495667, -0.024841309, 0.0022506714, -0.0033893585, -0.026535034, 0.021713257, 0.06933594, -0.10900879, 0.041381836, 0.03982544, 0.004512787, 0.026672363, -0.011383057, -0.006996155, -0.016662598, 0.02142334, -0.0014343262, -0.010421753, -0.047668457, 0.009124756, 0.0140686035, 0.07513428, 0.028198242, -0.0368042, 0.039123535, -0.015281677, -0.039764404, -0.023880005, -0.034484863, 0.012580872, 0.008407593, -0.038513184, -0.031188965, -0.06738281, -0.035308838, -0.046325684, -0.0018939972, 0.019332886, -0.004634857, 0.032043457, 0.0077590942, 0.11541748, 0.042266846, 0.05090332, 0.004219055, 0.0020561218, 0.01612854, -0.019973755, 0.0039482117, 0.017425537, -0.026565552, -0.043670654, 0.019973755, 0.014945984, 0.018127441, -0.036468506, -0.015022278, 0.08001709, 0.02432251, -0.0014266968, -0.028137207, 0.0056381226, 0.03387451, -0.015975952, 0.0129852295, -0.026153564, -0.046691895, 0.009506226, -0.080078125, 0.06549072, 0.06970215, -0.031219482, 0.057403564, 0.000541687, 0.010726929, -0.0064697266, 0.055358887, -0.06304932, 0.030899048, -0.0073509216, -0.03427124, -0.023956299, -0.0045547485, 0.035858154, 0.015029907, -0.01864624, -0.0052261353, 0.017486572, 0.016693115, -0.007358551, -0.013504028, 0.015060425, 0.04321289, 0.00083875656, 0.014678955, -0.014511108, 0.029159546, -0.025497437, -0.018981934, -0.0031051636, -0.028320312, 0.045440674, -0.03668213, -0.025421143, -0.0028076172, 0.0042266846, -0.00434494, 0.0074768066, -0.011329651, 0.013298035, 0.041992188, -0.0005598068, -0.024353027, 0.029541016, -0.027633667, 0.03387451, 0.03829956, 0.033966064, 0.0014123917, -0.056610107, 0.0065956116, -0.036499023, -0.020446777, 0.05117798, 0.012893677, -0.0736084, 0.0030899048, 0.030303955, 0.00025987625, -0.041748047, -0.005443573, -0.011520386, 0.0090408325, 0.0035476685, -0.03778076, -0.03062439, -0.0124435425, 0.0038490295, -0.033416748, -0.035583496, -0.032836914, -0.008346558, -0.013618469, 0.0012054443, 0.0061912537, -0.009307861, 0.01007843, -0.009277344, -0.046051025, 0.007633209, -0.071899414, 0.0050239563, 0.04095459, 0.015167236, 0.02293396, -0.01776123, -0.0031223297, -0.009124756, 0.06665039, -0.0030136108, 0.025604248, -0.03338623, -0.035217285, 0.00207901, 0.016296387, 0.045959473, -0.024551392, 0.02709961, -0.029663086, 0.030654907, -0.04434204, -0.015808105, 0.028015137, -0.03314209, -0.042419434, -0.018478394, 0.04763794, -0.0135650635, 0.016113281, 0.02583313, 0.009773254, -0.002161026, 0.025512695, -0.087402344, -0.036621094, -0.0029239655, -0.040100098, 0.017120361, 0.0020103455, -0.007663727, 0.029037476, 0.07849121, -0.005844116, 0.029846191, 0.0093688965, 0.010429382, -0.048553467, 0.014968872, -0.028793335, 0.0007472038, -0.038024902, 0.018478394, -0.04788208, 0.033416748, -0.0131073, 0.010391235, -0.0023994446, -0.03540039, 0.003993988, -0.04055786, -0.011543274, 0.013580322, -0.014587402, 0.025512695, -0.023071289, -0.00623703, 0.01727295, -0.024108887, 0.012634277, 0.03744507, 0.020965576, -0.05508423, -0.011123657, -0.045959473, -0.017196655, 0.025222778, -0.005290985, 0.009902954, -0.017501831, 0.014007568, -0.016021729, -0.033416748, -0.01902771, -0.006752014, -0.0019207001, 0.0061073303, -0.0009384155, 0.008605957, -0.0149002075, -0.022781372, 0.025680542, -0.0345459, -0.032318115, 0.016830444, 0.02760315, -0.00053310394, -0.045928955, 0.05307007, -0.004547119, -0.005050659, 0.009689331, -0.013175964, -0.0035057068, 0.015090942, -0.025054932, 0.026565552, 0.0009126663, -0.032470703, 0.017868042, 0.033355713, -0.025939941, -0.017623901, 0.080200195, -0.019378662, -0.02243042, 0.0073013306, -0.004962921, 0.005340576, 0.02330017, 0.0211792, -0.03704834, 0.042022705, -0.02520752, -0.030822754, 0.01838684, -0.015731812, -0.004749298, 0.007457733, -0.0048599243, -0.04699707, -0.01638794, 0.00077199936, -0.005882263, -0.016098022, 0.017425537, -0.03555298, 0.035125732, -0.007858276, -0.03213501, -0.03564453, -0.025970459, 0.010543823, -0.0440979, 0.0093688965, -0.019454956, 0.032165527, 0.0008330345, -0.03250122, -0.0055999756, 0.0033874512, -0.008399963, -0.04196167, -0.049346924, 0.010467529, -0.02243042, 0.025482178, -0.0007081032, -0.0054779053, -0.0048980713, 0.021759033, 0.03111267, -0.04864502, -0.04458618, 0.013961792, 0.005153656, 0.02130127, -0.024017334, -0.006965637, 0.07293701, -0.056732178, -0.050598145, -0.045654297, 0.064941406, -0.018447876, 0.010650635, 0.050231934, 0.01625061, 0.025299072, 0.029144287, 0.0067634583, -0.041870117, 0.020904541, -0.0010480881, -0.05331421, -0.03768921, -0.029891968, -0.022491455, 0.022537231, -0.03857422, -0.011444092, 0.03262329, -0.0027599335, -0.010368347, -0.022964478, -0.049316406, 0.013687134, -0.0028038025, 0.009147644, -0.009757996, 0.019714355, -0.03387451, 0.026016235, -0.1270752, -0.11035156, -0.016998291, 0.028808594, 0.0317688, 0.0042800903, 0.012489319, 0.045013428, -0.048431396, 0.032196045, 0.00057935715, -0.0012989044, -0.037994385, 0.023284912, 0.0054473877, 0.03137207, -0.02923584, -0.0023670197, -0.025970459, -0.009407043, 0.00258255, 0.044403076, -0.06567383, -0.03173828, 0.054992676, 0.056549072, 0.008125305, 0.031219482, 0.032165527, 0.04663086, 0.022781372, -0.0019950867, 0.014640808, -0.0134887695, 0.016403198, -0.08972168, 0.0020275116, -0.015914917, -0.009819031, -0.0057144165, -0.06161499, 0.042541504, -0.06933594, 0.040130615, -0.022537231, -0.016555786, 0.043914795, -0.025314331, 0.05078125, -0.037963867, 0.006916046, 0.036895752, -0.081726074, 0.0024681091, 0.00080156326, 0.01966858, 0.02456665, 0.026138306, -0.0446167, 0.007232666, 0.026412964, -0.035736084, -0.021697998, 0.018096924, 0.006778717, -0.024246216, -0.03857422, -0.016143799, -0.0037631989, 0.017944336, 0.023635864, -0.0074310303, 0.026565552, 0.027267456, -0.08074951, -0.0057296753, -0.07324219, -0.085510254, 0.03186035, -0.009605408, -0.04156494, 0.03050232, -0.072753906, 0.05645752, 0.022445679, 0.027069092, 0.06237793, -0.02798462, 0.0090408325, -0.014587402, -0.040496826, -0.050720215, -0.064697266, 0.017608643, 0.027069092, -0.050048828, -0.017120361, 0.012634277, 0.01234436, 0.005405426, 0.0012950897, 0.014457703, -0.0047912598, 0.032073975, 0.009384155, 0.0073242188, -0.016555786, -0.04534912, -0.019760132, 0.006526947, -0.005569458, 0.015701294, -0.0034294128, 0.0463562, 0.01713562, -0.013282776, 0.026397705, -0.034454346, 0.0066337585, -0.018081665, 0.011482239, 0.044281006, -0.027435303, -0.0078125, -0.008087158, -0.01626587, 0.0017337799, 0.015457153, -0.014762878, 0.018417358, 0.016433716, -0.003025055, -0.014312744, 0.006122589, 0.020111084, -0.035064697, -0.00028967857, -0.016448975, -0.028167725, -0.0027389526, -0.0036773682, -0.003698349, -0.0049095154, -0.04284668, 0.021972656, -0.0020122528, 0.0019140244, 0.014213562, -0.015975952, -0.06365967, -0.008644104, 0.021240234, 0.018798828, 0.028182983, -0.004764557, 0.060546875, -0.04473877, -0.07574463, -0.031021118, 0.04067993, -0.06384277, -0.059539795, -0.038238525, -0.02809143, -0.05706787, -0.03363037, 0.0055770874, 0.06713867, 0.022476196, -0.0046806335, -0.0129470825, -0.026947021, -0.012107849, 0.030471802, 0.00945282, -0.023651123, -0.03286743, 0.024612427, 0.0073547363, -0.036895752, 0.046295166, -0.01701355, -0.064697266, -0.0016069412, 0.00248909, -0.025802612, 0.015838623, -0.009712219, -0.0022354126, 0.020004272, -0.01928711, -0.07946777, -0.028167725, -0.035461426, 0.049591064, -0.0234375, 0.05517578, -0.03930664, -0.09893799, -0.11730957, -0.03491211, 0.058685303, 0.04510498, 0.0076446533, 0.038909912, 0.030151367, -0.03555298, 0.040527344, 0.005432129, -0.0046577454, -0.02746582, 0.018081665, 0.016342163, -0.00869751, 0.020217896, 0.042907715, -0.024124146, -0.019836426, -0.004386902, -0.0028095245, 0.00856781, 0.014465332, -0.019210815, 0.010276794, -0.0057868958, 0.02999878, -0.03463745, 0.020568848, -0.020233154, 0.003118515, -0.008880615, 0.006893158, -0.0010652542, 0.02079773, -0.030151367, 0.018295288, 0.03286743, 0.012428284, -0.027282715, 0.037475586, 0.026428223, 0.016174316, 0.008407593, -0.047973633, -0.032318115, 0.039855957, 0.032196045, -0.028121948, 0.06213379, -0.04574585, 0.020843506, -0.0011491776, 0.002204895, -0.016998291, 0.010749817, 0.06750488, -0.022781372, 0.014907837]}, "B07Y8GZK6V": {"id": "B07Y8GZK6V", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers\nDescription:

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

      Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

      Specification:

      • Forge Type: Double Burner Forge
      • Burner: Double Burner
      • Burner Nozzle Material: SS-304
      • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
      • Forge Internal Dimension: 6.5\" (H) x 5.5\" (W) x 18\"(L)
      • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
      • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

      Connection Kit:

      • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
      • 5 ft. (2 Meter) gas hose pipe
      • 2 hose clamp

      Product user manual & assembly instruction provided with packing.

      \nFeatures: Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1\" thick high density ceramic fiber blanket\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\nReduce fuel consumption\nTwo Burners, Individually controlled with ball valves\n", "metadata": {"Name": "Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers", "Brand": "Simond Store", "Description": "

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

      Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

      Specification:

      • Forge Type: Double Burner Forge
      • Burner: Double Burner
      • Burner Nozzle Material: SS-304
      • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
      • Forge Internal Dimension: 6.5\" (H) x 5.5\" (W) x 18\"(L)
      • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
      • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

      Connection Kit:

      • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
      • 5 ft. (2 Meter) gas hose pipe
      • 2 hose clamp

      Product user manual & assembly instruction provided with packing.

      ", "Features": "Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1\" thick high density ceramic fiber blanket\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\nReduce fuel consumption\nTwo Burners, Individually controlled with ball valves", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015609741, -0.031951904, -0.0418396, -0.026245117, -0.037384033, -0.016677856, -0.004047394, 0.020858765, -0.041015625, 0.0040397644, 0.0340271, 0.030075073, 0.0027618408, -0.058654785, 0.039916992, -0.019256592, 0.020065308, 0.025604248, 0.011260986, -0.015426636, 0.0051574707, 0.00063848495, 0.0066375732, 0.047943115, 0.016189575, 0.022644043, 0.034088135, -0.022079468, 0.030288696, -0.0057525635, 0.023071289, -0.029067993, 0.06274414, -0.031204224, -0.024902344, -0.014213562, -0.008644104, -0.031188965, -0.055145264, 0.036468506, -0.012397766, 0.01309967, 0.007762909, 0.0072898865, -0.011413574, -0.035095215, 0.008453369, -0.04434204, 0.025726318, 0.020263672, 0.0029678345, -0.024169922, 0.0076141357, 0.007926941, -0.02178955, -0.029678345, 0.010269165, -0.039978027, -0.006126404, 0.03201294, 0.019241333, 0.010032654, 0.015556335, -0.018035889, -0.03186035, 0.017150879, 0.0637207, -0.02104187, 0.03857422, -0.03540039, -0.032958984, 0.03778076, 0.027328491, -0.021606445, -0.021209717, 0.011177063, -0.0060272217, -0.009811401, 0.039978027, -0.021652222, 0.0135650635, -0.00081825256, -0.0033473969, -0.016708374, 0.022369385, 0.01247406, -0.014221191, -0.011741638, -0.023269653, -0.021896362, -0.0052757263, 0.010101318, -0.033355713, -0.0008893013, -0.018600464, -0.020690918, -0.025146484, -0.083618164, 0.04284668, 0.03994751, 0.03439331, -0.05682373, 0.0848999, -0.0011587143, -0.0027637482, 0.05935669, -0.00073719025, 0.0513916, 0.040222168, -0.00037908554, 0.031555176, -0.023391724, -0.028823853, -0.068725586, -0.030258179, 0.061798096, 0.005355835, -0.033325195, 0.026672363, -0.047058105, -0.007511139, 0.0063056946, 0.010002136, 0.02178955, -0.02357483, 0.0049972534, 0.0013179779, -0.02571106, -0.05368042, 0.02456665, -0.014762878, -0.0066604614, 0.04006958, 0.06945801, 0.0076293945, -0.0041656494, -0.0007286072, 0.025314331, 0.0037212372, -0.009422302, 0.0005354881, 0.007724762, 0.048706055, -0.013442993, -0.01751709, 0.03869629, 0.009140015, -0.029632568, 0.0077209473, -0.014755249, -0.05810547, -0.04901123, 0.019180298, 0.015609741, -0.005104065, -0.0038814545, 0.00484848, -0.01461792, 0.008110046, -0.008323669, -0.015167236, -0.0012197495, -0.009521484, -0.031234741, -0.030273438, -0.0010604858, -0.00207901, 0.0075569153, 0.015113831, 0.045806885, -0.0055389404, 0.051971436, -0.0076293945, 0.014289856, 0.018112183, -0.019546509, 0.02078247, 0.05831909, 0.03314209, -0.11584473, -0.099731445, -0.0881958, 0.09442139, -0.08013916, 0.014793396, -0.032318115, 0.0017528534, -0.028198242, 0.0028305054, 0.011016846, 0.012252808, 0.009178162, 0.023239136, -0.04547119, 0.009597778, -0.0018072128, -0.012863159, 0.017791748, -0.009216309, -0.0010890961, 0.004863739, -0.008491516, -0.019851685, 0.014259338, -0.013893127, -0.042633057, -7.849932e-05, -0.0053482056, 0.014007568, 0.024917603, -0.01600647, -0.019439697, 0.015281677, -0.01512146, -0.019515991, -0.0026988983, 0.012001038, -0.005405426, 0.009773254, -0.009223938, 0.009178162, 0.017456055, -0.01335907, 0.014228821, 0.020004272, 0.030288696, -0.018005371, 0.013442993, -0.013511658, 0.025390625, -0.044647217, 0.014053345, 0.07470703, 0.057556152, -0.007675171, 0.03289795, 0.060638428, 0.0033683777, -0.019348145, -0.01373291, 0.008468628, -0.041534424, -0.030258179, 0.016204834, 0.004886627, 0.01108551, 0.006690979, 0.0046195984, -0.023620605, -9.62615e-05, 0.03201294, -0.00044989586, 0.03253174, 0.027664185, -0.015167236, 0.019241333, -0.015426636, -0.001247406, -0.011436462, 0.018005371, -0.017211914, 0.0024795532, 0.029769897, -0.0045433044, 0.029174805, 0.0051116943, 0.007507324, 0.022018433, -0.049438477, 0.030685425, 0.027389526, 0.004211426, 0.0038471222, -0.03741455, -0.023803711, 0.022491455, -0.02796936, 0.034362793, 0.0026111603, -0.025970459, 0.0035324097, 0.022872925, 0.029907227, -0.0050315857, 0.007335663, 0.01234436, 0.020858765, -0.0017433167, 0.027114868, 0.020843506, 0.045288086, -0.016036987, -0.02192688, 0.03845215, 0.012168884, -0.03643799, 0.04284668, -0.03643799, 0.037078857, -0.027160645, 0.037231445, 0.040008545, -0.042755127, 0.028869629, -0.010696411, -0.035064697, -0.0052986145, 0.014266968, 0.00032615662, -0.051361084, -0.01008606, 0.00818634, 0.021987915, -0.0033397675, 0.05316162, 0.009346008, 0.022644043, 0.04144287, 0.0368042, 0.050628662, -0.05709839, -0.0501709, 0.012023926, -0.0035686493, -0.012672424, 0.009048462, 0.0025863647, 0.029937744, -0.0030441284, 0.020751953, 0.0071411133, 0.025466919, -0.022018433, 0.00063848495, 0.004398346, 0.0124053955, -0.0031356812, 0.024307251, -0.01991272, -0.045959473, -0.027679443, -0.039642334, -0.0043754578, 0.016494751, -0.07727051, -0.03857422, 0.06732178, -0.02330017, -0.037384033, -0.0129776, 0.070251465, -0.0011768341, -0.006385803, -0.044311523, 0.016143799, 0.020080566, -0.0289917, -0.017471313, 0.02696228, -0.051330566, -0.007904053, -0.051605225, -0.054779053, -0.011299133, 0.040039062, 0.006668091, -0.035705566, -0.013023376, -0.0184021, 0.0020332336, 0.062347412, -0.007671356, -0.02142334, -0.047332764, -0.056152344, -0.051605225, 0.07098389, -0.0065078735, -0.022537231, 0.013946533, 0.024215698, 0.01876831, -0.05053711, -0.01008606, 0.021377563, 0.0074005127, 0.028121948, 0.012008667, 0.031402588, -0.0149383545, -0.0064353943, -0.010482788, -0.059051514, -0.04272461, 0.005504608, 0.014022827, -0.013168335, -0.008926392, -0.0027999878, -0.031433105, -0.06781006, 0.03656006, -0.0038108826, -0.0063056946, 0.0011949539, -0.07727051, -0.003921509, -0.057769775, 0.018371582, 0.03390503, 0.00056505203, 0.016494751, -0.017868042, 0.018463135, -0.0064468384, 0.004261017, 0.046173096, 0.001250267, -0.03475952, 0.002588272, 0.0836792, -0.091308594, 0.043823242, 0.027435303, -0.03967285, 0.0070495605, -0.03591919, 0.0031356812, 0.033691406, 0.047851562, -0.029174805, 0.018875122, -0.033416748, 0.027023315, 0.01852417, 0.03253174, 0.030029297, -0.053955078, 0.06500244, -0.041503906, -0.082458496, -0.026794434, 0.024673462, 0.007621765, 0.00093507767, 0.002603531, -0.0022792816, -0.04751587, 0.0067443848, -0.062683105, -0.014030457, -0.0020561218, 0.017578125, 0.025741577, -0.008003235, 0.08526611, 0.02178955, 0.030715942, -0.01322937, 0.0020828247, 0.034606934, -0.00029230118, -0.06567383, 0.008552551, -0.007751465, -0.059814453, 0.037597656, -0.0146484375, -0.006416321, 0.0076293945, -0.056549072, 0.10632324, 0.0057373047, 0.006767273, 0.0019416809, 0.035980225, 0.016784668, -0.0053100586, -0.03387451, -0.019226074, 0.016799927, -0.022201538, -0.0423584, 0.06732178, 0.040924072, -0.019012451, -0.009338379, 0.04031372, -0.0012874603, 0.023162842, 0.049804688, -0.0029582977, 0.025238037, 0.031799316, -0.00016462803, -0.012382507, 0.0033416748, -0.022537231, 0.045043945, 0.032409668, -0.049804688, 0.005290985, -0.006954193, -0.0637207, -0.020629883, -0.0056266785, -0.012184143, 0.009094238, 0.03036499, -0.01689148, -0.031463623, 0.008987427, -0.02619934, 0.005897522, -0.029296875, -0.010154724, 0.0008664131, 0.016952515, -0.031463623, -0.011550903, -0.006462097, 0.025817871, -0.02204895, 0.034942627, 0.022537231, -0.013076782, -0.029785156, 0.011169434, -0.037384033, 0.013130188, 0.02798462, 0.004573822, 0.0014429092, -0.026000977, 0.015579224, -0.0016012192, -0.0018529892, 0.013061523, 0.030090332, -0.039276123, 0.0031757355, 0.01725769, -0.04537964, -0.030670166, -0.00017797947, -0.059661865, -0.047027588, -0.019485474, -0.05505371, 0.003894806, -0.012031555, -0.006008148, -0.035461426, -0.055145264, 0.0017461777, -0.01902771, 0.0146865845, -0.03591919, -0.009246826, 0.024658203, -0.0058555603, 0.012329102, -0.07128906, 0.033325195, -0.09686279, -0.0065345764, 0.04446411, 0.028045654, 0.011650085, -0.02734375, -0.032104492, -0.023162842, 0.029129028, -0.021896362, 0.0018310547, -0.021972656, -0.013923645, 0.008407593, 0.028060913, 0.011230469, 0.031051636, -0.014732361, -0.027297974, -0.037963867, -0.04699707, 0.027572632, 0.01838684, 0.015113831, -0.032226562, 0.017501831, 0.043945312, -0.01134491, 0.041748047, 0.0006971359, 0.0043525696, -0.0126571655, -0.030410767, -0.10241699, -0.047088623, -0.008285522, -0.063964844, 0.015136719, -0.0011100769, -0.011413574, 0.09136963, 0.06695557, 0.010986328, -0.014312744, 0.0027866364, -0.004840851, -0.028839111, 0.006362915, -0.015472412, 0.01184082, -0.035125732, -0.0071372986, -2.5629997e-05, -0.0022850037, -0.03265381, -0.028656006, -0.013328552, -0.011268616, -0.0101623535, -0.036376953, -0.027511597, -0.00029420853, 0.008277893, 0.0005030632, -0.03793335, -0.0035820007, 0.00063705444, -0.008041382, -0.0016040802, 0.003250122, 0.028625488, -0.011764526, -0.000893116, -0.014663696, -0.021865845, -0.001909256, 0.017654419, -0.0032615662, 0.021224976, -0.0079956055, 0.00970459, -0.016937256, 0.015777588, 0.036224365, 0.0052757263, 0.005722046, -0.001534462, -0.0026626587, -0.0014381409, -0.020889282, 0.016448975, 0.013427734, -0.057403564, -0.014129639, 0.07659912, -0.02658081, -0.07080078, 0.056030273, 0.010292053, 0.013145447, 0.0016708374, 0.013832092, 0.055877686, 0.013153076, 0.01474762, -0.024505615, -0.006626129, 0.03564453, 0.013717651, -0.014411926, -0.0005598068, -0.026687622, 0.026184082, -0.0049324036, -0.0011882782, -0.047607422, 0.027740479, 0.007156372, -0.027404785, 0.0035438538, -0.011779785, 0.052337646, -0.012748718, -0.024459839, 0.0107421875, 0.037139893, -0.021118164, 0.037628174, 0.01727295, 0.032928467, -0.045898438, 0.021606445, -0.03164673, 0.022872925, 0.028457642, -0.019058228, 0.032470703, 0.016448975, -0.07635498, -0.04034424, -0.04977417, 0.018005371, -0.031219482, 0.022872925, -0.036956787, 0.0075569153, -0.005207062, -0.008804321, 0.049835205, 0.028289795, -0.0423584, -0.03201294, -0.014266968, -0.012664795, -0.032440186, 0.081604004, -0.029647827, -0.036132812, -0.021270752, 0.004764557, 0.010772705, -0.025817871, -0.046569824, -0.01802063, 0.00315094, 0.010215759, -0.01739502, -0.03567505, 0.08898926, -0.040771484, -0.057159424, -0.0231781, 0.022827148, -0.0135650635, -0.049713135, 0.051452637, 0.05493164, -0.005542755, 0.030929565, -0.039367676, -0.06427002, -0.0017766953, -0.015144348, -0.08312988, -0.014381409, -0.05319214, 0.010818481, 0.0079422, -0.026489258, -0.05429077, 0.02255249, -0.04650879, -0.03918457, -0.015594482, -0.020629883, 0.007007599, -0.023590088, 0.017944336, 0.0032653809, -0.0059928894, -0.011444092, -0.014305115, -0.035705566, 0.0052871704, -0.024154663, 0.022567749, 0.013633728, 0.0056915283, -0.011222839, -0.017211914, -0.002796173, 0.045196533, 0.01701355, -0.044799805, -0.0009469986, 0.026626587, 0.0067100525, 0.026016235, -0.017349243, 0.0049743652, 0.0004775524, -0.012512207, -0.020828247, 0.013015747, -0.020629883, -0.01461792, 0.015563965, 0.02935791, 0.03488159, 0.018249512, 0.03845215, 0.006603241, -0.021942139, 0.009567261, -0.013549805, -0.025741577, -0.026565552, -0.020996094, -0.09509277, -0.01739502, -0.05493164, 0.029693604, -0.080322266, 0.035095215, -0.05307007, 0.03062439, -0.0031166077, -0.011756897, 0.028808594, -0.05206299, 0.011779785, -0.054473877, 0.033325195, -0.0024776459, 0.036224365, -0.011100769, -0.03012085, 0.009597778, -0.029968262, 0.050872803, -0.0072669983, 0.0016469955, -0.032043457, -0.024276733, 0.045959473, -0.013893127, -0.019989014, 0.013534546, 0.026046753, 0.019744873, 0.054718018, -0.0035305023, 0.004348755, -0.009315491, -0.0019626617, -0.0012378693, -0.010322571, 0.0008983612, -0.007381439, -0.014030457, -0.015419006, -0.0017061234, 0.012588501, 0.005470276, 0.012084961, 0.027252197, 0.022201538, -0.019714355, 0.012069702, -0.033477783, 0.009216309, 0.0058021545, -0.01727295, -0.04751587, -0.08001709, -0.037994385, 0.03427124, -0.027648926, 0.01739502, -0.003414154, 0.04626465, -0.019729614, 0.0005683899, 0.021957397, -0.06427002, 0.008682251, 0.01802063, -0.005340576, -0.03955078, -0.0690918, -0.02809143, -0.024475098, 0.004184723, -0.015838623, -0.014526367, 0.04244995, 0.016921997, 0.021240234, 0.06359863, -0.012664795, 0.043548584, -0.021469116, 0.0075035095, 0.03616333, -0.020401001, -0.024795532, -0.050872803, 0.0067100525, 0.007698059, -0.007331848, 0.016021729, 0.0395813, 0.012237549, 0.018707275, -0.022338867, -0.020965576, -0.0075149536, -0.028579712, 0.05984497, -0.037200928, -0.007698059, -0.039001465, -0.042297363, -0.0073013306, -0.0152282715, -0.06903076, 0.040802002, 0.00037407875, -0.035125732, -0.006275177, 0.008628845, -0.033172607, -0.026168823, -0.02368164, 0.027557373, 0.023162842, 0.006958008, 0.022628784, 0.006072998, -0.08178711, -0.05203247, 0.047668457, -0.070495605, -0.04324341, 0.018676758, 0.010154724, 0.048065186, 0.004787445, -0.0023288727, 0.013786316, 0.024017334, -0.022460938, 0.0030384064, -0.041809082, -0.0025424957, 0.044158936, -0.0024814606, -0.019866943, -0.034362793, 0.02885437, 0.023483276, 0.008491516, 0.030761719, 0.038879395, -0.032104492, 0.03274536, -0.003868103, -0.021621704, -0.040649414, -0.0068588257, 0.03074646, 0.015281677, -0.037384033, 0.022628784, 0.038757324, 0.06323242, 0.040039062, 0.0027542114, 0.01689148, -0.02999878, -0.049041748, -0.074279785, -0.019577026, 0.048675537, 0.053253174, -0.03010559, 0.028900146, 0.012779236, -0.038085938, 0.021377563, 0.002817154, 0.02394104, -0.0020122528, 0.030426025, -0.013000488, 0.01663208, -0.010528564, 0.015304565, -0.022583008, -0.01940918, 0.020355225, 0.0088272095, -0.028747559, -0.036743164, -0.006198883, -0.0060653687, -0.028457642, -0.022338867, 0.003540039, -0.002861023, -0.010101318, 0.0158844, 0.012428284, -0.012878418, -0.008041382, -0.0236969, -0.024963379, 0.0037441254, 0.021011353, -0.019454956, -0.060516357, 0.04083252, 0.0015382767, 0.08416748, -0.038024902, -0.11920166, -0.057922363, 0.005970001, 0.0063667297, 0.0070991516, 0.060455322, 0.0015163422, 0.018951416, 0.035095215, -0.0256958, -0.011383057, -0.005970001, 0.069885254, 0.0056419373, -0.002653122]}, "B01GGDBLF2": {"id": "B01GGDBLF2", "original": "Brand: VORTEX (IN)DIRECT HEAT\nName: VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg\nDescription: Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8\" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA\nFeatures: \ud83d\udd25 \u3010MEDIUM SIZE\u3011 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more!\n\ud83d\udd25 \u3010VERSITILE\u3011 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared.\n\ud83d\udd25 \u3010EASY TO USE\u3011 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8\u201d tall\n\ud83d\udd25 \u3010AWARD WINNING\u3011 Makes awesome crispy chicken wings and seared steak!\n\ud83d\udd25 \u3010GENUINE\u3011 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.\n", "metadata": {"Name": "VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg", "Brand": "VORTEX (IN)DIRECT HEAT", "Description": "Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8\" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA", "Features": "\ud83d\udd25 \u3010MEDIUM SIZE\u3011 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more!\n\ud83d\udd25 \u3010VERSITILE\u3011 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared.\n\ud83d\udd25 \u3010EASY TO USE\u3011 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8\u201d tall\n\ud83d\udd25 \u3010AWARD WINNING\u3011 Makes awesome crispy chicken wings and seared steak!\n\ud83d\udd25 \u3010GENUINE\u3011 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018325806, 0.021148682, -0.030258179, -0.031234741, 0.025146484, -0.008575439, 0.0034828186, -0.0012893677, 0.02532959, 0.004425049, 0.0042915344, -0.016220093, 0.020248413, -0.042266846, 0.0009098053, -0.014259338, 0.018035889, 0.011375427, 0.05709839, -0.012825012, 0.019378662, 0.008781433, 0.037261963, -0.0141067505, 0.015129089, 0.026016235, -0.009925842, 0.0050697327, -0.0021629333, 0.002840042, 0.009361267, 0.008987427, 0.047668457, -0.008384705, -0.03652954, -0.03189087, -0.027893066, -0.0102005005, -0.043762207, 0.024383545, 0.035491943, -0.018615723, -0.04446411, 0.03918457, -0.043121338, -0.057495117, 0.03933716, -0.00029230118, 0.017944336, 0.0129852295, 0.004142761, 0.05279541, 0.018630981, 0.028793335, -0.017929077, -0.0012798309, -0.005054474, 0.012649536, 0.015808105, 0.038604736, 0.016326904, 0.022109985, -0.003829956, -0.009140015, -0.03540039, 0.024047852, 0.10925293, -0.026687622, -0.054382324, -0.06100464, 0.037506104, 0.0073013306, 0.023666382, 0.037506104, -0.03942871, -0.105163574, 0.037506104, -0.057525635, 0.018157959, 0.028427124, -0.0049362183, 0.03543091, 0.008079529, -0.017089844, 0.0034389496, 0.017410278, -0.030731201, -0.03060913, 0.005382538, -0.0072784424, -0.008872986, 0.012939453, -0.04748535, 0.051330566, -0.0034122467, -0.0077438354, -0.041503906, -0.035247803, 0.049591064, 0.062927246, 0.028259277, -0.02293396, 0.054473877, -0.03955078, -0.0058288574, 0.04837036, -0.027664185, 0.0491333, 0.03717041, 0.028137207, 0.021316528, -0.029388428, 0.025009155, -0.004558563, -0.029556274, -0.012741089, -0.005382538, 0.034088135, 0.014282227, 0.007484436, 0.011528015, 0.023162842, 0.023132324, 0.048675537, -0.0064468384, 0.04348755, 0.0132369995, -0.048339844, -0.03262329, 0.0077705383, -0.02619934, -0.0011806488, 0.06225586, 0.058044434, 0.022232056, -0.008598328, -0.004989624, -0.03363037, 0.0068969727, -0.030899048, 0.022994995, 0.013313293, 0.05218506, -0.0015354156, -0.060760498, 0.021469116, 0.014976501, 0.0050239563, -0.02986145, -0.08276367, -0.008346558, -0.018844604, 0.041900635, 0.00198555, -0.035461426, -0.010101318, 0.02330017, -0.022720337, -0.040283203, -0.054595947, -0.030319214, -0.014564514, 0.009223938, -0.047698975, -0.05316162, 0.020645142, -0.008872986, -0.0014429092, 0.029327393, 0.045166016, 0.019927979, -0.08392334, 0.0033740997, 0.011817932, -0.015571594, 0.04559326, 0.025375366, 0.07336426, 0.03967285, -0.040863037, -0.031677246, -0.047088623, 0.13208008, -0.04776001, -0.00034427643, 0.001958847, 0.008781433, -0.023956299, -0.0029354095, -0.0029716492, 0.03390503, 0.04824829, -0.0053977966, -0.011451721, -0.02911377, 0.020736694, 0.015777588, 0.05810547, -0.012031555, -0.028823853, 0.03677368, -0.0055770874, -0.020370483, -0.0073127747, -0.025802612, -0.026046753, 0.011749268, 0.0005068779, 0.007888794, 0.019866943, -0.01374054, -0.00063180923, 0.029769897, -0.086364746, -0.023986816, 0.04626465, -0.050750732, -0.014099121, 0.01259613, -0.012992859, 0.022857666, -0.016082764, 0.020004272, -0.019195557, 0.052947998, -0.035003662, 0.011070251, -0.022354126, 0.0713501, 0.023788452, -0.0541687, -0.010803223, 0.047027588, 0.064697266, 0.019378662, 0.05606079, 0.08892822, 0.03152466, -0.020248413, -0.027893066, 0.021270752, -0.01146698, -0.003458023, 0.029342651, 0.003572464, -0.0073547363, 0.017730713, -0.0029392242, -0.047027588, -0.040985107, 0.01651001, 0.021972656, 0.04510498, 0.01008606, -0.013656616, 0.03753662, 0.004299164, -0.016311646, -0.03817749, 0.029556274, 0.010292053, 0.041625977, -0.00033950806, 0.02973938, 0.042022705, -0.0029468536, 0.015144348, 0.010360718, -0.030639648, 0.01373291, 0.0053596497, -0.053985596, -0.016983032, 0.034179688, 0.06463623, -0.006259918, 0.0014820099, -0.02684021, -0.023040771, 0.0063705444, -0.015670776, -0.032318115, 0.031036377, 0.0015134811, 0.039001465, -0.018203735, 0.03665161, -0.0103302, -0.02130127, -0.00932312, 0.009529114, 0.032836914, -0.030059814, 0.038146973, 0.0057640076, -0.0075531006, 0.04522705, 0.058624268, -0.028182983, 0.015419006, -0.0010538101, 0.00548172, -0.022827148, -0.016693115, 6.771088e-05, -0.011016846, 0.00434494, 0.020080566, -0.0005698204, -0.04449463, 0.009422302, 0.0043296814, 0.016662598, -0.010116577, 0.06311035, 0.015342712, 0.03930664, 0.034851074, 0.07055664, 0.059020996, 0.011459351, 0.016342163, -0.043640137, -0.007896423, 0.010688782, 0.010757446, -0.03237915, -0.024719238, 0.03552246, 0.0012569427, 0.024032593, 0.012626648, -0.019500732, -0.026855469, 0.009742737, -0.019989014, -0.00052547455, -0.031799316, -0.0014009476, 0.031951904, 0.007068634, 0.01878357, 0.018295288, -0.06896973, -0.014816284, 0.009735107, 0.06970215, 0.015426636, -0.05895996, 0.047912598, -0.0069274902, -0.035614014, 0.012542725, -0.032470703, -0.013259888, -0.003993988, -0.018051147, -0.027770996, -0.02217102, -0.06335449, -0.0234375, 0.011299133, -0.051452637, 0.015457153, 0.060272217, -0.043273926, -0.008880615, -0.039123535, -0.016952515, -9.453297e-05, 0.034851074, -0.026031494, -0.060760498, -0.011894226, -0.014907837, -0.010955811, 0.056427002, -0.016479492, -0.0068359375, 0.024810791, -0.017501831, 0.023712158, -0.02986145, 0.026367188, 0.0042152405, 0.0005941391, 0.022109985, 0.02796936, -0.0020141602, -0.016220093, -0.011779785, 0.020629883, -0.058258057, -0.03805542, 0.019760132, 0.01109314, 0.022659302, 0.011383057, -0.00017690659, -0.03704834, -0.11315918, 0.010421753, 0.004951477, -0.042053223, 0.008338928, -0.079711914, -0.06524658, -0.059051514, 0.0034694672, 0.01676941, -0.007774353, -0.0016651154, -0.015777588, -0.00029730797, 0.010795593, -0.030807495, 0.029464722, 0.0013475418, 0.003868103, -0.043273926, 0.03048706, -0.03945923, 0.0076179504, 0.00048208237, -0.050811768, -0.0015935898, -0.039611816, 0.011856079, -7.516146e-05, 0.021820068, -0.05029297, 0.014038086, -0.008056641, 0.0058059692, -0.013374329, -0.013069153, -0.01210022, -0.026046753, 0.012779236, -0.034301758, -0.051574707, -0.022476196, -0.08190918, 0.025619507, -0.04119873, -0.035827637, -0.033996582, -0.08831787, 0.0113220215, -0.011367798, 0.0184021, -0.011054993, 0.021331787, 0.014228821, -0.021362305, 0.107543945, 0.0026054382, 0.03024292, -0.0034942627, 0.010360718, 0.0074005127, -0.011146545, 0.031982422, -0.0018882751, -0.010719299, -0.036499023, 0.028640747, 0.0030460358, 0.016464233, -0.0155181885, -0.032165527, 0.08868408, 0.0049095154, 0.01121521, 0.005317688, 0.015823364, 0.020462036, 0.03314209, -0.05441284, -0.03778076, -0.078552246, 0.017150879, -0.093933105, 0.064453125, 0.002336502, -0.004306793, 0.05505371, 0.04827881, -0.0096206665, 0.07299805, 0.019424438, 0.023803711, 0.023345947, 0.0152282715, -0.0124435425, 0.03302002, 0.016143799, -0.033416748, -0.006965637, -0.026901245, -0.045410156, 0.016571045, -0.005393982, -0.020706177, -0.0034446716, 0.031585693, 0.033691406, -0.009796143, -0.008018494, -0.021850586, 0.021438599, -0.039245605, 0.023269653, -0.02003479, 0.003692627, -0.0070228577, 0.020690918, -0.012588501, -0.0053138733, -0.008148193, 0.03475952, -0.0043411255, -0.00440979, 0.024627686, 0.018447876, 0.021102905, -0.052093506, -0.007949829, -0.007949829, -0.018493652, -0.005428314, -0.023834229, -0.030639648, 0.022384644, 0.045837402, 0.04046631, -0.0011816025, 0.023651123, -0.007926941, -0.03765869, -0.022155762, 0.010543823, 0.022644043, -0.019195557, -0.003019333, -0.04159546, -0.020767212, 0.012176514, -0.08319092, 0.010147095, 0.010551453, 0.009353638, -0.054748535, -0.020904541, 0.011695862, -0.095825195, -0.061279297, 0.019638062, 0.009269714, -0.011787415, 0.01109314, 0.005344391, -0.023498535, -0.020889282, -0.003665924, -0.0027484894, 0.054260254, -0.0078125, 0.03475952, -0.027709961, 0.0016756058, -0.03515625, 0.064331055, 0.02696228, 0.004009247, -0.032409668, -0.013618469, 0.008155823, 0.014709473, 0.038269043, -0.006996155, 0.018173218, -0.016403198, -0.00831604, -0.02394104, -0.040283203, 0.030410767, -0.036987305, -0.026519775, -0.059448242, 0.020584106, 0.004776001, 0.043884277, -0.033996582, -0.056854248, -0.052215576, -0.009567261, -0.0014066696, 0.0007100105, -0.018844604, -0.00028824806, 0.0041999817, -0.0013399124, 0.009727478, 0.0045433044, 0.035186768, -0.013427734, 0.03982544, -0.0070724487, -0.004611969, -0.02885437, -0.00724411, 0.0055389404, 0.0025520325, -0.018920898, 0.0042800903, -0.07543945, 0.06982422, 0.031829834, -0.015380859, -0.012229919, -0.0026683807, -0.028335571, -0.070251465, 0.024810791, -0.027801514, -0.008522034, -0.017562866, -0.023742676, 0.0018901825, -0.037628174, 0.0057525635, -0.011795044, 0.016815186, 0.02658081, -0.009223938, -0.015625, -0.012329102, -0.0061836243, 0.03152466, -0.002817154, 0.027496338, 0.0259552, -0.0049209595, 0.028244019, -0.029327393, -0.0071792603, 0.015167236, -0.0074768066, 0.015541077, 0.05456543, 0.020935059, 0.00869751, -0.06021118, 0.018508911, -0.030761719, -0.033294678, -0.006603241, 0.019958496, 0.011894226, -0.026824951, 0.075927734, -0.028625488, 0.038330078, 0.08532715, -0.028625488, 0.026046753, 0.00894165, -0.0026569366, 0.027954102, -0.0345459, -0.030151367, 0.020324707, -0.005382538, 0.057037354, -0.009124756, -0.030899048, 0.006877899, -0.026672363, -0.029632568, -0.004924774, 0.03253174, 0.05859375, 0.0024776459, -0.03149414, 0.038635254, 0.005832672, -0.019104004, -0.007282257, 0.036468506, -0.04437256, 0.020904541, 0.015602112, 0.023620605, -0.031951904, -0.00029325485, -0.047698975, 0.009361267, 0.0017089844, 0.028869629, 0.021560669, -0.0099487305, -0.03164673, -0.054351807, 0.013008118, 0.022888184, -0.049621582, -0.0013055801, -0.018447876, 0.002161026, -0.00381279, 0.005355835, 0.02494812, 0.005584717, -0.026779175, 0.012428284, 0.046020508, -0.008682251, -0.01121521, 0.05606079, -0.012191772, 0.008430481, 0.03579712, -0.0034599304, 0.030426025, -0.0017366409, -0.025238037, 0.0064315796, -0.012496948, -0.009414673, -0.04574585, 0.026184082, 0.07434082, -0.05593872, -0.066467285, -0.023605347, 0.044067383, -0.012992859, -0.052215576, 0.05947876, -0.021759033, 0.0184021, 0.0069351196, -0.032836914, -0.028839111, -0.00078725815, 0.008407593, -0.06213379, 0.013916016, -0.011528015, 0.028213501, 0.008979797, -0.058135986, -0.0015172958, 0.039031982, 0.0087890625, -0.012908936, 0.00894928, -0.042114258, 0.0015325546, -0.015586853, 0.002532959, -0.0019378662, 0.024215698, -0.012451172, 0.045837402, -0.0061416626, -0.01612854, -0.0005993843, 0.021484375, 0.04034424, -0.021820068, 0.035614014, 0.08538818, -0.042144775, 0.03201294, -0.012107849, -0.0008378029, 0.013877869, 0.041046143, -0.00019323826, 0.027252197, -0.07678223, -0.01953125, -0.022750854, 0.01727295, 0.035583496, -0.0069618225, 0.006450653, 0.008323669, 0.040222168, 0.006614685, 0.0057678223, 0.061676025, 0.036468506, -0.0021438599, -0.016433716, 0.015533447, 0.002439499, -0.04534912, -0.0072517395, -0.01235199, -0.015403748, 0.016860962, -0.012298584, 0.013725281, 0.00308609, 0.021942139, -0.015014648, 0.004005432, 0.0062217712, 0.018112183, 0.059326172, -0.019744873, -0.036376953, -0.0020980835, 0.051757812, 0.0211792, -0.009147644, -0.023712158, -0.019729614, 0.018676758, 0.0011701584, 0.033569336, 0.0071487427, 0.02822876, -0.013130188, -0.06665039, 0.049346924, -0.025924683, -0.016799927, 0.023925781, 0.0006656647, 0.024810791, 0.048828125, -0.019699097, -0.007598877, 0.032073975, 0.008018494, -0.010040283, 0.034942627, -0.009979248, 0.03704834, 0.01751709, 0.014083862, 0.026428223, 0.004886627, -0.030014038, -0.044525146, -0.0061683655, 0.02633667, -0.004650116, -0.011306763, -0.04043579, 0.030197144, 0.020828247, 0.047729492, -0.017913818, -0.037719727, -0.0016489029, 0.015716553, -0.0021476746, 0.038024902, 0.0054092407, 0.033081055, 0.036102295, -0.022384644, 0.018920898, -0.033569336, 0.04006958, 0.02734375, 0.032073975, -0.004310608, 0.018630981, -0.014709473, 0.012031555, 0.003227234, 0.0045547485, 0.0126571655, 0.001950264, 0.066711426, 0.02381897, 0.03237915, -0.022445679, -0.0027599335, 0.036834717, -0.008300781, 0.03845215, -0.0042877197, 0.016784668, -0.009811401, -0.046051025, 2.2530556e-05, -0.010551453, 0.0036144257, 0.028305054, -0.0005393028, 0.014320374, -0.031173706, 0.02935791, -0.0491333, -0.01687622, 0.044921875, -0.024841309, -0.009300232, -0.023361206, 0.007896423, -0.06567383, 0.019973755, -0.056396484, -0.048675537, -0.032684326, -0.03842163, -0.033996582, 0.012298584, 0.021972656, -0.01953125, -0.00724411, 0.019180298, 0.029891968, -0.0132369995, 0.031280518, -0.024978638, -0.025665283, -0.005607605, 0.021026611, -0.032989502, -0.053497314, 0.00894928, 0.0031700134, 0.02319336, -0.015350342, 0.0049819946, -0.0018815994, 0.022842407, -0.034362793, -0.012687683, -0.04257202, -0.017837524, 0.014839172, 0.0065689087, -0.034210205, -0.035980225, 0.043029785, -0.01826477, 0.09741211, -0.03265381, -0.0040779114, 0.0024204254, 0.017745972, -0.00504303, -0.0027637482, -0.030792236, 0.009857178, -0.0037193298, 0.0017623901, -0.035736084, -0.015960693, 0.008651733, 0.011070251, 0.005760193, 0.033050537, 0.001203537, -0.010375977, 0.008239746, -0.014160156, 0.00023078918, 0.011978149, 0.009712219, -0.034240723, -0.017044067, -0.003736496, -0.0038871765, -0.024795532, 0.018859863, -0.008026123, -0.03527832, 0.026901245, -0.046813965, -0.04147339, 0.022842407, -0.01890564, -0.002735138, 0.0046806335, 0.049041748, 0.04135132, -0.032440186, 0.0044898987, 0.0017404556, -0.013870239, 0.020828247, -0.035003662, -0.020324707, -0.023513794, 0.016174316, 0.031463623, -0.003004074, -0.00016927719, -0.0073051453, -0.005142212, -0.015464783, -0.0012798309, 0.00699234, -0.0140686035, -0.02017212, -0.005302429, -0.014091492, 0.06604004, -0.0031166077, -0.105041504, -0.07220459, 0.04724121, 0.034301758, -0.04147339, 0.053253174, -0.025817871, 0.023086548, 0.0390625, -0.037506104, 0.062347412, -0.045959473, 0.0005159378, -0.047851562, -0.026535034]}, "B07NVMY43D": {"id": "B07NVMY43D", "original": "Brand: MR. TORCH\nName: BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only)\nDescription: The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.\nFeatures: Upgraded Full Metal Cover Version, change old design's plastic knob to solid brass constructed knob.\nOur torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability.\nStrong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350\u2103, meets the most common needs for both professionals and DIY fans.\nSmart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane\nWith recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.\n", "metadata": {"Name": "BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only)", "Brand": "MR. TORCH", "Description": "The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.", "Features": "Upgraded Full Metal Cover Version, change old design's plastic knob to solid brass constructed knob.\nOur torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability.\nStrong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350\u2103, meets the most common needs for both professionals and DIY fans.\nSmart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane\nWith recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.028930664, -0.01789856, -0.0340271, -0.023483276, -0.018753052, 0.012252808, -0.004699707, 0.011108398, -0.028244019, 0.03189087, 0.005531311, 0.020751953, 0.0146102905, -0.025878906, 0.016983032, -0.024139404, 0.0011110306, 0.0033302307, -0.023223877, -0.030136108, 0.011680603, -0.02696228, -0.048065186, 0.009132385, 0.039978027, -0.04446411, -0.033294678, -0.007282257, 0.0206604, -0.010131836, 0.02645874, 0.024246216, 0.03918457, 0.011688232, -0.03756714, -0.00365448, 0.002401352, -0.015113831, -0.010269165, 0.010726929, 0.011520386, -0.0006842613, -0.08062744, 0.03414917, -0.07672119, -0.029846191, -0.024780273, -0.0017566681, -0.009437561, 0.031585693, 0.03149414, 0.007610321, 0.03125, 0.0060806274, -0.01914978, -0.03173828, 0.04473877, -0.060699463, -0.012275696, 0.035369873, 0.034118652, 0.04611206, -0.0035076141, 0.007183075, -0.023757935, 0.0044136047, 0.054107666, -0.015541077, 0.023086548, -0.0078048706, -0.0054855347, 0.032409668, 0.027648926, -0.005924225, -0.036499023, -0.03427124, 0.002462387, -0.03173828, 0.025909424, -9.5546246e-05, -0.0018281937, 0.0034255981, -0.034942627, -0.03378296, 0.048828125, 0.024993896, -0.024215698, -0.020095825, -0.027572632, -0.0023822784, -0.026123047, 0.0059127808, -0.009033203, -0.017501831, -0.03253174, -0.0009069443, -0.039215088, -0.0619812, 0.03591919, 0.048187256, -0.0011320114, -0.021072388, 0.02319336, -0.004722595, 0.0014047623, 0.068481445, -0.003036499, -0.01777649, -0.016586304, -0.0038471222, -0.00042247772, -0.039031982, 0.021118164, -0.06488037, -0.010810852, 0.03201294, 0.046722412, 0.0043525696, 0.04498291, -0.023788452, -0.012969971, -0.005897522, 0.038391113, -0.010368347, 0.030944824, 0.025375366, -0.025726318, -0.020965576, -0.024887085, 0.029312134, -0.03982544, -0.009399414, 0.05557251, 0.045166016, 0.018707275, -0.029922485, 0.03982544, 0.013710022, 0.020828247, -0.006866455, -0.01979065, -0.02330017, -0.00014686584, 0.0040283203, 0.012908936, 0.011184692, 0.011421204, 0.020004272, -0.004310608, -0.04598999, 0.047424316, -0.011558533, 0.016830444, 0.017456055, 0.019638062, -0.006706238, 0.031341553, -0.032287598, 0.0018415451, -0.024246216, 0.022033691, -0.025772095, -0.034301758, 0.027130127, -0.00844574, 0.03274536, 0.017669678, -0.00064754486, 0.018096924, -0.0061569214, 0.028671265, 0.04309082, 0.03616333, -0.0016899109, 0.015777588, -0.017166138, 0.043029785, 0.08111572, 0.050445557, -0.10736084, -0.06161499, -0.044403076, 0.17199707, -0.07598877, -0.039978027, -0.024139404, 0.02078247, 0.027954102, 0.03741455, 0.018234253, 0.032470703, -0.013435364, 0.03387451, -0.04626465, -0.040863037, -0.015449524, 0.0060577393, 0.0010929108, -0.019317627, 0.028839111, 0.020874023, 0.024124146, -0.014953613, 0.0028896332, -0.020385742, -0.010368347, 0.0017595291, 0.009544373, 0.013008118, 0.04269409, -0.0113220215, -0.03189087, 0.036468506, -0.041625977, -0.029876709, -0.04446411, -0.047973633, 0.0058059692, -0.0023479462, -0.0058135986, 0.019439697, -0.015350342, 0.027816772, 0.002588272, 0.025543213, -0.042785645, -0.00013899803, -0.031707764, 0.018051147, 4.5359135e-05, -0.027572632, 0.03366089, 0.06378174, 0.050964355, -0.011444092, 0.045959473, 0.08831787, 0.06402588, -0.026107788, -0.034118652, 0.024353027, -0.0184021, -0.022399902, 0.0020923615, 0.04699707, 0.047729492, 0.02633667, -0.0026397705, -0.06732178, 0.03466797, -0.014602661, 0.056610107, 0.00081157684, 0.0178833, -0.08673096, 0.072753906, -0.043518066, -0.030395508, 0.0039787292, -0.0011739731, 0.013473511, -0.002456665, 0.003107071, 0.0010623932, 0.025131226, -0.0042533875, 0.04486084, 0.04989624, -0.0040130615, -0.025497437, -0.00033068657, 0.022354126, -0.0004734993, 0.04598999, 0.040771484, -0.009033203, -0.023544312, -0.011459351, -0.013969421, 0.012191772, -0.032836914, -0.05230713, 0.015991211, 0.002981186, 0.054504395, 0.014060974, 0.04159546, -0.028945923, -0.019622803, -0.027755737, -0.0063591003, -0.0023517609, -0.02720642, 0.014228821, 0.011909485, -0.034454346, 0.032196045, -0.05899048, 0.03857422, -0.03692627, 0.05682373, 0.06829834, -0.043395996, 0.059661865, -0.021118164, -0.016403198, -0.047821045, 0.021224976, -0.011672974, -0.07910156, 0.006679535, 0.023391724, 0.026672363, 0.010368347, 0.026977539, -0.010398865, 0.010025024, 0.031829834, 0.0060691833, 0.031341553, -0.034851074, -0.007381439, -0.060668945, 0.04550171, -0.013908386, 0.030456543, 0.050811768, -0.0042648315, -0.03503418, 0.03277588, 0.015075684, 0.027999878, -0.0043029785, 0.031799316, -0.0035648346, 0.001964569, 0.0058250427, 0.048034668, -0.0026760101, -0.018310547, 0.015167236, 0.0062179565, -0.0093688965, -0.015083313, -0.009468079, -0.023391724, 0.044067383, 0.002450943, 0.02470398, 0.03201294, -0.01727295, -0.015159607, 0.005264282, -0.017349243, 0.03930664, -0.04159546, -0.03857422, 0.0135650635, 0.030593872, -0.03543091, -0.017654419, -0.0008292198, -0.039154053, 0.013870239, 0.037322998, -0.019424438, 0.014556885, -0.011108398, 0.036224365, 0.042877197, 0.023910522, 0.041992188, -0.01461792, -0.026535034, -0.005054474, -0.059448242, 0.072387695, -0.016784668, -0.021911621, 0.031433105, -0.03186035, 0.023834229, -0.04119873, 0.037353516, 0.009300232, 0.03527832, 0.02494812, 0.000685215, 0.004585266, -0.017486572, -0.030441284, -0.0019664764, 0.006046295, -0.041931152, 0.002090454, 0.016098022, 0.010658264, -0.016342163, 0.045562744, -0.04107666, -0.10430908, 0.008560181, 0.017211914, -0.030899048, -0.014778137, -0.014839172, -0.07244873, -0.039855957, 0.009841919, 0.0625, -0.04095459, 0.03074646, -0.012878418, 0.0077400208, -0.008468628, 0.030883789, 0.013725281, -0.010017395, -0.0027999878, 0.007434845, 0.0541687, -0.07696533, 0.022537231, 0.028640747, -0.014953613, -0.0690918, 0.010314941, 0.0013494492, -0.005947113, 0.040222168, -0.034057617, -0.0027198792, 0.0005617142, 0.012527466, -0.052703857, 0.024902344, 0.0010023117, -0.012809753, 0.03540039, -0.049835205, -0.023010254, -0.04006958, -0.06304932, -0.027557373, -0.048706055, -0.015487671, -0.016967773, -0.021911621, -0.008415222, -0.039215088, -0.016571045, 0.00806427, 0.015975952, 0.027999878, -0.0027751923, 0.080444336, -0.006248474, 0.043548584, 0.024887085, -0.008056641, 0.013801575, -0.03262329, 0.013160706, 0.04562378, -0.00674057, 0.0028209686, 0.03933716, 0.015670776, -0.014465332, -0.010971069, 0.0074806213, -0.010955811, 0.040924072, -0.00356102, -0.012817383, -0.009674072, 0.046447754, 0.002986908, -0.025421143, -0.055541992, -0.010910034, 0.00010830164, -0.036193848, 0.07348633, 0.020355225, 0.007446289, 0.014854431, 0.022521973, -0.032226562, 0.05142212, 0.033721924, 0.012062073, -0.007091522, 0.03289795, -0.046051025, 0.009651184, 0.013076782, 0.043884277, 0.017944336, -0.011756897, -0.055267334, -0.008224487, 0.03741455, -0.033325195, -0.014221191, 0.049468994, 0.015319824, 0.0030078888, -0.016235352, -0.010917664, -0.034240723, -0.050048828, 0.060668945, 0.02947998, -0.015960693, -0.0014705658, 0.02053833, -0.024597168, -7.748604e-07, 0.0074653625, -0.0385437, -0.0018815994, -0.0047340393, 0.03756714, 0.0015859604, -0.0026168823, -0.026519775, 0.022476196, -0.022949219, 0.030838013, 0.027694702, 0.0075149536, 0.0005545616, -0.04547119, 0.024169922, -0.0026416779, -0.020553589, 0.0096588135, -0.013153076, -0.068359375, 0.01739502, 0.06567383, -0.0049972534, -0.024902344, 0.014228821, -0.032958984, -0.016464233, -0.01423645, -0.014541626, 0.0073051453, -0.040008545, -0.035003662, -0.021759033, -0.024459839, -0.040039062, 0.045074463, -0.045135498, 0.00919342, -0.00491333, 0.008056641, 0.0015506744, 0.01399231, -0.02609253, -0.00059890747, -0.024719238, 0.0052108765, 0.012397766, -0.028640747, -0.03277588, -0.0036334991, -0.024673462, 0.014839172, 0.05142212, -0.061553955, 0.019638062, -0.055633545, -0.023040771, 0.0051727295, -0.004501343, 0.008094788, -0.03125, 0.047729492, 0.0340271, 0.027908325, -0.020889282, -0.048095703, -0.0098724365, -0.034576416, -0.055603027, -0.07714844, 0.020568848, 0.024780273, 0.036834717, -0.016174316, -0.02116394, -0.0022277832, -0.013137817, -0.064941406, -0.044433594, -0.013053894, -0.022476196, 0.018508911, 0.0058898926, -0.011169434, -6.979704e-05, 0.06512451, 0.021636963, -0.0026054382, 0.011741638, 0.021896362, -0.0017328262, 0.029342651, -0.032043457, 0.009468079, -0.015106201, -0.035736084, -0.011436462, 0.039764404, -0.011627197, -0.057617188, -0.042419434, 0.010269165, -0.041015625, -0.056243896, -0.010017395, 0.036346436, -0.00894165, -0.033691406, -0.03878784, 0.029556274, -0.027511597, 0.013031006, -0.011192322, -0.08807373, -0.03475952, 0.026992798, 0.021499634, -0.044891357, 0.025512695, 0.03643799, -0.0014829636, 0.03338623, -0.017654419, -0.037475586, 0.046020508, -0.019042969, -0.024780273, 0.0017528534, -0.0016069412, -0.027832031, 0.04083252, 0.003276825, -0.037475586, 0.026931763, 0.004425049, 0.019454956, -0.020584106, 0.0001116395, 0.011314392, -0.0049934387, -0.03164673, 0.031951904, -0.03704834, 0.018829346, 0.0033340454, 0.0063285828, 0.057769775, 0.03274536, 0.006767273, -0.028549194, 0.010848999, -0.0021648407, 0.0345459, 0.007949829, -0.021026611, -0.0501709, 0.06335449, -0.019638062, -0.018447876, -0.0259552, 0.025238037, 0.049346924, -0.01966858, 0.029663086, -0.033111572, 0.07055664, -0.071899414, -0.045440674, -0.0069847107, -0.044952393, -0.011116028, 0.04449463, -0.0463562, -0.0047912598, 0.023132324, -0.021881104, -0.044128418, 0.023101807, -0.01071167, 0.014801025, 0.0071640015, 0.018356323, 0.002450943, -0.01096344, -0.016204834, -0.0031204224, -0.0124053955, 0.022384644, 0.018829346, 0.009811401, 0.018432617, 0.0072288513, -0.0068130493, 0.021194458, -0.01612854, -0.03540039, -0.04449463, -0.00018966198, -0.02368164, 0.041809082, 0.00724411, 0.0065345764, 0.007843018, 0.0077285767, 0.041046143, -0.03729248, -0.027999878, 0.013374329, 0.014968872, 0.023925781, -0.0063056946, -0.028945923, 0.042816162, -0.02619934, -0.041931152, 0.0070877075, 0.054351807, -0.037506104, -0.020751953, 0.026260376, 0.01448822, 0.017227173, 0.019607544, -0.01158905, -0.03353882, -0.0027065277, -0.006137848, 0.0020599365, -0.005584717, -0.033111572, 0.036895752, -0.0057678223, -0.031463623, -0.01638794, 0.013313293, -0.02885437, 0.008377075, 0.019454956, -0.029174805, 0.00141716, -0.041534424, 0.014984131, 0.011962891, -0.010749817, 0.009277344, -0.010025024, -0.041137695, 0.018112183, -0.034851074, 0.0005970001, 0.034179688, -0.0064353943, -0.023162842, -0.07104492, 0.054595947, 0.025360107, -0.022201538, 0.0077819824, 0.008422852, 0.042816162, -0.014625549, 0.058166504, -0.043426514, -0.014595032, -0.03665161, -0.010269165, -0.003271103, 0.046966553, -0.02142334, 0.039367676, 0.006095886, 0.030853271, 0.0040740967, 0.01889038, 0.045135498, -0.01902771, -0.081726074, -0.0008845329, 0.015960693, -0.052612305, 0.03479004, -0.009536743, -0.060943604, -0.06744385, -0.059692383, -0.010467529, -0.005519867, -0.016494751, -0.017547607, 0.06530762, 0.0027103424, 0.024459839, 0.058288574, 0.008644104, 0.050567627, 0.012435913, 0.062561035, 0.010375977, 0.003862381, -0.037078857, -0.023483276, 0.026763916, 0.001619339, 0.025436401, -0.054107666, 0.009643555, 0.0423584, -0.039276123, -0.033996582, -0.01651001, 0.015060425, -0.04333496, -0.00020623207, 0.002670288, -0.0048675537, 0.034484863, 0.034729004, -0.001086235, 0.00012660027, 0.05029297, 0.00027942657, -0.0015563965, -0.009643555, -0.017959595, -0.02859497, -0.017791748, 0.00957489, 0.022872925, -0.030288696, 0.030517578, 0.0005283356, -0.0019931793, 0.015960693, -0.041290283, 0.018859863, 0.023406982, -0.019058228, -0.03778076, -0.010856628, 0.0030269623, -0.014770508, -0.0062828064, -0.030685425, 0.010505676, 0.032287598, -0.03161621, -0.032592773, -0.0020999908, -0.054229736, 0.012306213, 0.0368042, -0.028930664, -0.021362305, -0.060699463, -0.013679504, 0.0033435822, -0.016052246, 0.0041503906, 0.00039315224, 0.020370483, 0.057891846, 0.028671265, 0.07879639, 0.012519836, 0.021392822, 0.0076675415, 0.024536133, -0.0059165955, -0.013839722, -0.0014104843, 0.0023517609, -0.010795593, 0.009643555, 0.0056991577, -0.0002632141, -0.005924225, -0.030456543, -0.013442993, -0.036895752, 0.006855011, -0.04852295, 0.0077323914, 0.04019165, -0.06561279, -0.020584106, -0.032989502, -0.039886475, -0.015129089, -0.03366089, -0.059265137, 0.04373169, -0.0103302, -0.035888672, -0.011428833, 0.014328003, 0.027282715, -0.04650879, -0.011001587, -0.0063285828, -0.0010766983, -0.02470398, 0.03048706, -0.042114258, -0.015350342, -0.0390625, 0.013664246, -0.095947266, -0.012641907, 0.02470398, -0.021652222, -0.014198303, -0.008453369, 0.05847168, -0.030059814, 0.067993164, -0.024963379, 0.05255127, -0.03363037, -0.06323242, 0.062438965, 0.032348633, -0.026412964, 0.019363403, 0.014778137, 0.0048828125, 0.0030155182, 0.021728516, 0.0012149811, -0.061309814, 0.0048675537, -0.008552551, -0.009483337, 0.006626129, -0.008255005, 0.0395813, 0.029220581, -0.028182983, -0.024795532, 0.026550293, 0.006175995, 0.019592285, 0.017852783, 0.016403198, -0.00724411, -0.063964844, 0.03579712, -0.026168823, -0.005077362, 0.05166626, 0.033813477, -0.0061798096, 0.03375244, -0.018249512, 0.02861023, 0.010383606, -0.020446777, 0.022018433, -0.013793945, -0.015296936, -0.0014324188, -0.040771484, 0.008430481, -0.0015544891, -0.00034284592, -0.017242432, 0.008079529, 0.0011997223, 0.0023612976, -0.004901886, 0.019744873, -0.0012435913, 0.03781128, -0.010520935, -0.042663574, -0.0018730164, 0.018188477, -0.005924225, -0.003446579, -0.0064468384, -0.01247406, -0.03604126, 0.016326904, 0.033294678, 0.020095825, -0.018096924, 0.04534912, 0.026824951, 0.04446411, -0.0051116943, -0.08087158, -0.061035156, 0.038757324, -0.011947632, -0.005252838, -0.0065956116, 0.01309967, 0.020355225, 0.05722046, -0.0014886856, 0.019866943, 0.028656006, 0.08685303, -0.004589081, -0.0021820068]}, "B08124CP1Z": {"id": "B08124CP1Z", "original": "Brand: Mrinb-Sports\nName: Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting\nDescription: \nFeatures: \n", "metadata": {"Name": "Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting", "Brand": "Mrinb-Sports", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0033473969, -0.017654419, 0.017807007, 0.010902405, -0.03112793, 0.0088272095, 0.011306763, -0.013435364, -0.032928467, 0.0065078735, 0.028701782, 0.019638062, -0.011985779, -0.050231934, 0.025161743, -0.013252258, 0.012870789, -0.01008606, -0.009315491, -0.03463745, 0.023895264, -0.035491943, 0.003572464, 0.070007324, 0.008560181, 0.003993988, 0.0060577393, -0.024719238, -0.001709938, -0.017807007, 0.016311646, 0.02130127, 0.017868042, -0.015975952, 0.020080566, 0.040405273, 0.02835083, -0.025009155, 0.012771606, 0.004627228, 0.015777588, -0.0116119385, -0.013435364, -0.016220093, -0.05203247, -0.037384033, 0.050994873, 0.056243896, -0.009025574, -0.01739502, 0.0016212463, -0.020584106, 0.014213562, 0.0064582825, -0.00070142746, 0.020446777, 0.0006093979, 0.015808105, 0.0015525818, -0.032226562, -0.010726929, 0.027374268, 0.02720642, 0.044921875, -0.041259766, 0.038085938, 0.08190918, -0.020126343, 0.0158844, -0.053619385, -0.023529053, 0.02633667, 0.008369446, 0.03366089, -0.051971436, -0.042388916, 0.0657959, 0.018096924, 0.017410278, -0.00014436245, 0.014816284, -0.050750732, 0.008216858, -0.0074768066, 0.021469116, 0.017730713, 0.0016489029, -0.009048462, -0.033233643, -0.006011963, -0.021865845, -0.029190063, -0.04397583, 0.033813477, 0.0141067505, 0.0054092407, -0.04977417, -0.055267334, 0.020553589, -0.0049095154, 0.009101868, -0.0061531067, -0.03262329, 0.0072631836, -0.04006958, 0.04244995, 0.011444092, 0.0101623535, -0.020996094, 0.01663208, -0.011177063, -0.059265137, -0.033447266, 0.00094890594, -0.01576233, 0.009300232, -0.06695557, 0.021362305, -0.031585693, 0.012260437, 0.002603531, 0.0005645752, 0.055145264, -0.0064086914, -0.0013809204, -0.0033054352, -0.038024902, -0.03036499, -0.07623291, 0.0982666, 0.005004883, -0.03086853, 0.010398865, 0.058807373, -0.007167816, -0.035461426, 0.03503418, 0.046905518, 0.02180481, -0.053741455, 0.056427002, 0.0014753342, -0.0143966675, 0.041015625, 0.007972717, 0.013534546, 0.015090942, 0.004714966, 0.02494812, -0.011329651, -0.011642456, -0.019927979, 0.0067443848, 0.02029419, 0.0051002502, 0.007827759, 0.012748718, 0.0055770874, -0.008903503, -0.016464233, 0.022888184, -0.021347046, 0.01411438, 0.0021743774, -0.054473877, 0.039520264, -0.027404785, -0.009262085, 0.02154541, 0.009796143, 0.012023926, 0.028717041, -0.008659363, 0.00617218, 0.007461548, -0.02960205, -0.008361816, 0.11383057, 0.03302002, -0.107299805, -0.04724121, -0.06365967, 0.14587402, -0.046325684, -0.042175293, -0.007030487, 0.018676758, 0.01423645, 0.02973938, -0.006465912, 0.062347412, 0.017028809, 0.000330925, 0.02722168, -0.03527832, -0.026123047, -0.023010254, 0.035186768, -0.028320312, 0.00868988, -0.0024032593, 0.005428314, -0.006290436, 0.008071899, -0.005027771, -0.015548706, 0.007865906, -0.00029993057, -0.0026607513, 0.0033988953, 0.008155823, -0.020874023, 0.010887146, -0.080444336, -0.03036499, 0.013328552, 0.011833191, 0.05847168, 0.012588501, 0.03479004, 0.029006958, -0.022842407, 0.03515625, 0.017959595, 0.009422302, -0.033935547, 0.009498596, -0.026794434, -0.00012302399, 0.014122009, -0.039611816, 0.008895874, -0.010177612, 0.07147217, 0.0037269592, 0.006996155, 0.02418518, 0.042633057, 0.013191223, -0.032470703, 0.010856628, -0.014511108, -0.0036907196, 0.03250122, -0.01247406, 0.011741638, 0.045288086, -0.017944336, -0.00095176697, 0.06915283, 0.0009737015, 0.05517578, 0.0044898987, 0.035003662, -0.043029785, 0.039245605, -0.040893555, -0.021697998, 0.0036811829, 0.013786316, 0.0010023117, 0.03111267, 0.031707764, 0.0041160583, -0.008392334, 0.03152466, 0.03390503, 0.04373169, -0.017654419, 0.01826477, 0.0051574707, 0.024978638, -0.015899658, 0.034820557, 0.09490967, -0.038330078, -0.017456055, -0.027709961, -0.0026474, 0.012199402, -0.030303955, 0.014602661, -0.033233643, -0.019241333, -0.013427734, -0.03262329, -0.00014138222, -0.009841919, -0.05496216, -0.050598145, -0.00035500526, -0.012969971, -0.059631348, 0.027755737, -0.013916016, -0.037139893, 0.009140015, 0.0231781, 0.014831543, -0.013435364, -0.03692627, 0.035247803, -0.028167725, 0.010231018, 0.0043563843, -0.004722595, 0.00818634, -0.0066604614, -0.015052795, -0.0016422272, -0.07128906, -0.038482666, 0.028564453, -0.0038719177, 0.04776001, 0.016860962, 0.011291504, 0.028747559, 0.04449463, 0.03555298, -0.04046631, 0.06695557, 0.0029010773, 0.021713257, 0.03845215, -0.013244629, -0.015419006, 0.011245728, -0.02128601, -0.024276733, 0.014221191, -0.038391113, -0.010757446, 0.008705139, 0.015655518, 0.011428833, 0.013648987, -0.008255005, -0.005580902, -0.022262573, 0.0029678345, -0.03591919, -0.011116028, -0.014213562, -0.016677856, -0.044891357, -0.0026988983, 0.0013866425, -0.024429321, -0.01386261, 0.019744873, -0.0052452087, -0.019561768, -0.016082764, 0.0031356812, -0.0063591003, 0.008430481, -0.0017719269, 0.008415222, -0.02571106, 0.0029239655, -0.004009247, -0.029296875, -0.02998352, 0.009475708, -0.0013780594, -0.021026611, -0.012916565, 0.008636475, 0.042633057, 0.020004272, 0.009979248, -0.03918457, -0.021881104, -0.025985718, -0.020721436, -0.03616333, -0.07141113, 0.049957275, -0.03375244, 0.00043034554, 0.0003027916, 0.026412964, 0.03866577, 0.041015625, 0.0054512024, 0.022445679, 0.029022217, 0.048339844, 0.0038909912, 0.027526855, -0.009429932, -0.028900146, -0.014343262, -0.012268066, 0.0030593872, -0.02658081, -0.021636963, -0.016311646, 0.0022773743, -0.027496338, 0.017990112, 0.00012481213, -0.032226562, 0.004573822, -0.066467285, -0.009864807, -0.04269409, 0.023071289, 0.03314209, -0.016860962, -0.05545044, -0.022109985, -0.065979004, -0.026916504, 0.019989014, 0.0024089813, -0.0259552, 0.025787354, 0.012145996, 0.055725098, -0.10058594, 0.047698975, 0.054901123, -0.009529114, -0.010848999, -0.03186035, -0.024093628, -0.039489746, 0.09918213, 0.011917114, 0.038482666, -0.008491516, 0.010978699, -0.026870728, 0.04196167, -0.0014858246, -0.0049362183, 0.043304443, -0.0395813, -0.033966064, -0.027420044, 0.035247803, 0.015777588, 0.027450562, -0.005832672, -0.0231781, 0.012001038, -0.0032997131, -0.02722168, 0.008224487, 0.0044898987, 0.019424438, 0.011817932, 0.0012264252, 0.04647827, 0.033996582, 0.04071045, 0.0010681152, -0.010520935, -0.015342712, -0.039245605, 0.057800293, -0.006023407, -0.02772522, -0.033599854, 0.064331055, 0.016082764, 0.0060424805, -0.023239136, -0.016082764, 0.01159668, 0.028015137, -0.031234741, 0.045928955, -0.009231567, -0.010368347, -0.009391785, -0.014381409, -0.005306244, -0.028762817, -0.0036888123, -0.07141113, 0.05911255, 0.023910522, 0.008834839, 0.026550293, 0.038024902, -0.026779175, 0.04232788, 0.0048828125, 0.015579224, -0.0052871704, 0.02671814, -0.049682617, 0.018539429, 0.014389038, 0.02633667, 0.012886047, 0.009689331, -0.06976318, 0.024276733, 0.026016235, -0.022979736, -0.02470398, -0.037750244, 0.0011053085, 0.012008667, 0.01512146, -0.001625061, 0.0146484375, 0.019088745, -0.010696411, 0.009117126, -0.028579712, -0.025726318, 0.01651001, -0.02708435, -0.02331543, 0.005393982, 0.029769897, 0.014915466, -0.017318726, -0.0032024384, 0.048614502, 0.011520386, -0.03616333, 0.032562256, -0.029525757, 0.01184082, -9.9122524e-05, 0.013687134, -0.027053833, -0.023208618, 0.034576416, -0.01977539, -0.012008667, 0.05178833, -0.053955078, -0.08453369, -0.021759033, 0.008712769, 0.03366089, -0.04537964, -0.0019130707, -0.01776123, 0.011917114, 0.00062417984, -0.021408081, -0.04034424, -0.012176514, 0.015258789, -0.062683105, -0.010818481, -0.026397705, -0.022979736, -0.060668945, 0.043029785, -0.0010709763, -0.014945984, -0.020767212, -0.02078247, -0.002111435, 0.023986816, -0.06536865, 0.023727417, 0.016983032, 0.0074806213, 0.01663208, -0.044921875, -0.01360321, 0.022583008, 0.039520264, -0.03564453, 0.044403076, -0.030197144, -0.011695862, 0.0016202927, 0.02104187, 0.044067383, -0.0074386597, 0.025604248, -0.02947998, 0.0140686035, -0.016082764, -0.04324341, 0.019195557, -0.033477783, -0.034423828, -0.064941406, 0.03475952, -0.0014362335, -0.0035991669, -0.03515625, -0.0026340485, 0.0043945312, 0.005264282, -0.028152466, -0.022125244, -0.0041618347, -0.02029419, -0.004211426, -0.034057617, 0.0057144165, 0.038879395, 0.08239746, 0.064941406, -0.016906738, 0.0141067505, 0.00072193146, -0.010284424, -0.0045394897, -0.0064048767, 0.011062622, -0.01486969, -0.010765076, -0.064819336, 0.06439209, 0.015945435, -0.025665283, -0.017547607, -0.022781372, -0.028076172, -0.06451416, 0.017181396, -0.016204834, 0.009483337, 0.066345215, 0.007041931, -0.04953003, 0.02659607, -0.037994385, -0.021362305, -0.027923584, 0.0231781, 0.030685425, -0.013053894, -0.0075950623, -0.001250267, 0.0045661926, -0.013931274, 0.017837524, -0.001004219, -0.03375244, 0.032318115, -0.047058105, -0.031799316, 0.0074882507, 0.016067505, 0.018737793, 0.089538574, 0.0077438354, -0.07110596, 0.0059051514, 0.029708862, 0.017028809, -0.03741455, 0.0112838745, 0.040863037, -0.0015935898, -0.03189087, 0.08239746, 0.006450653, 0.013900757, -0.06665039, 0.0052108765, 0.025131226, 0.018692017, -0.018859863, -0.021636963, 0.0039367676, 0.026794434, 0.026565552, 0.029830933, 0.011459351, -0.072021484, 0.041168213, -0.026412964, -0.062561035, -0.012771606, 0.022842407, 0.016204834, -0.04727173, 0.04437256, -0.033050537, 0.056549072, -0.027359009, -0.02708435, 0.0020637512, 0.008026123, -0.01612854, 0.0025520325, 0.0019893646, -0.029968262, -0.017196655, -0.012039185, -0.05847168, 0.011489868, -0.018585205, 0.005218506, 0.012710571, 0.003156662, -0.00957489, -0.019515991, -0.01889038, 0.044281006, -0.018447876, 0.02885437, 0.017807007, 0.007358551, 0.04006958, -0.032043457, 0.009239197, 2.193451e-05, -0.023147583, -0.049743652, -0.015991211, 0.009063721, -0.01713562, 0.037017822, 0.004508972, -0.054260254, 0.021392822, 0.025115967, 0.016677856, 0.0054359436, -0.0014228821, 0.010475159, 0.005317688, 0.04788208, -0.026992798, 0.01612854, 0.082092285, -0.045013428, -0.042907715, -0.06616211, 0.03793335, 0.0027065277, -0.01638794, 0.043395996, -0.020095825, 0.0042762756, 0.019302368, -0.007423401, -0.03765869, 0.045837402, 0.023666382, -0.031188965, -0.026809692, -0.012458801, -0.017486572, 0.0062332153, 0.010688782, -0.060821533, 0.031677246, -0.08868408, -0.06347656, -0.018447876, 0.013374329, 0.008338928, -0.06573486, -0.008560181, -0.020401001, 0.014953613, -0.011062622, 0.0039749146, -0.086364746, -0.05908203, -0.015945435, 0.018432617, 0.03967285, 0.008628845, 0.0058898926, 0.027130127, -0.04598999, 0.020507812, 0.02583313, -0.04434204, 0.00018715858, 0.042053223, 0.01789856, -0.007987976, -0.045318604, -0.030258179, -0.03439331, 0.002040863, 0.041259766, 0.040374756, -0.027297974, 0.03125, 0.015380859, 0.025054932, -0.0027999878, 0.05960083, 0.014297485, -0.013343811, -0.03274536, 0.017593384, 0.047821045, -0.055725098, 0.0074539185, -0.03164673, 0.024276733, 0.0077934265, -0.0027179718, -0.006904602, 0.021713257, 0.028930664, -0.022750854, 0.020980835, -0.006248474, -0.022125244, 0.011161804, -0.051635742, 0.027404785, -0.021530151, 0.063964844, 0.052459717, -0.039764404, -0.08666992, 0.004711151, 0.023666382, -0.02897644, 0.0368042, 0.014335632, -0.0029735565, 0.0012559891, -0.028564453, 0.012535095, -0.04776001, 0.0038642883, -0.014198303, -0.026748657, -0.005554199, 0.024459839, 0.009742737, -0.0009675026, 0.008132935, 0.01146698, 0.018585205, -0.042297363, 0.004878998, -0.028289795, -0.027664185, -0.007873535, 0.013038635, -0.0105896, -0.003419876, -0.008583069, 0.06756592, 0.021759033, 0.0016222, 0.041107178, -0.018981934, -0.004310608, -0.019348145, -0.028137207, -0.022598267, -0.028518677, 0.05645752, 0.022033691, -0.026351929, 0.038879395, 0.032196045, 0.033477783, 0.047027588, -0.042999268, 0.02330017, -0.078125, 0.04486084, 0.019805908, 0.080566406, -0.0063476562, -0.036346436, -0.028930664, -0.0071258545, 0.003227234, -0.018966675, -0.02999878, -0.005001068, 0.020080566, 0.01008606, 0.016983032, -0.032806396, -0.0071907043, 0.031829834, -0.005645752, -0.007835388, -0.036956787, -0.016342163, -0.014923096, -0.03062439, 0.014907837, -0.013145447, -0.049468994, -0.028869629, 0.0017766953, 0.0007238388, -0.017059326, 0.010871887, 0.0138549805, -0.021102905, -0.036376953, -0.018478394, -0.061187744, 0.019760132, 0.03604126, 2.1457672e-06, -0.044708252, -0.026504517, 0.033111572, -0.043762207, -0.03942871, -0.026641846, 0.026901245, -0.0016450882, -0.041503906, 0.01007843, -0.0011415482, 0.034301758, 0.00038599968, 0.03982544, -0.03378296, -0.044036865, -0.034484863, 0.022216797, -0.077941895, -0.046722412, -0.0005927086, 0.0036830902, -0.005897522, -0.0023441315, 0.03353882, 0.034088135, 0.031951904, 0.0053863525, -0.03540039, 0.025253296, 0.01499176, -0.0035095215, -0.011016846, 0.0013084412, -0.01725769, -0.0015516281, 0.0015678406, -0.013038635, 0.04159546, 0.014389038, -0.113708496, -0.03894043, -0.057250977, -0.006958008, -0.004634857, -0.003358841, 0.021911621, 0.001461029, -0.05227661, 0.00025582314, -0.007648468, 0.044128418, 0.0034561157, 0.020553589, 0.009361267, -0.004512787, -0.018356323, -0.0001629591, -0.011230469, 0.009857178, 0.019363403, -0.053131104, 0.002401352, -0.0047035217, -0.023620605, -0.019866943, 0.003627777, 0.011169434, -0.0033092499, -0.0028533936, 0.02166748, -0.015098572, -0.009674072, -0.011566162, -0.03744507, -0.017913818, -0.0067100525, 0.04473877, -0.035125732, 0.006931305, -0.0014371872, 0.019424438, 0.029678345, -0.0076675415, -0.043792725, -0.008674622, 0.06329346, 0.0054969788, 0.04309082, -0.049041748, 0.076660156, 0.030334473, -0.06210327, 0.0024547577, 0.044830322, -0.006389618, -0.030883789, -0.0003144741, 0.038635254, -0.006515503, -0.020599365, -0.109558105, -0.05987549, 0.042388916, 0.0061187744, -0.016952515, 0.029296875, -0.024398804, -0.002128601, 0.034179688, -0.04699707, -0.038146973, 0.006832123, 0.016601562, 0.0035171509, 0.012245178]}, "B07P8BN5X1": {"id": "B07P8BN5X1", "original": "Brand: Cal Flame\nName: Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone\nDescription: \nFeatures: Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board\nLiquid propane ready, Natural gas conversion compatible by certified technician.\nSeamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge\nPatented cast stainless steel knobs, with independent burner ignition system\nHeavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design\n", "metadata": {"Name": "Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone", "Brand": "Cal Flame", "Description": "", "Features": "Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board\nLiquid propane ready, Natural gas conversion compatible by certified technician.\nSeamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge\nPatented cast stainless steel knobs, with independent burner ignition system\nHeavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.047973633, 0.0004005432, -0.06365967, -0.0032596588, -0.024887085, -0.006477356, -0.041290283, -0.0031375885, -0.032196045, 0.02041626, -0.04336548, 0.019042969, 0.0028018951, 0.0010442734, 0.015930176, -0.04547119, 0.022445679, 0.017227173, 0.030410767, -0.0066566467, -0.011367798, -0.0021324158, 0.02809143, 0.017089844, 0.038604736, 0.017150879, -0.039398193, 0.027252197, 0.034057617, 0.043426514, 0.03491211, -0.05596924, 0.034729004, 0.025299072, -0.06384277, -0.09057617, -0.02357483, 0.012229919, -0.037261963, 0.012504578, 0.026382446, -0.026550293, 0.006713867, -0.009841919, 0.014045715, -0.0340271, 0.04458618, -0.044433594, 0.00031733513, 0.0017127991, 0.005722046, -0.026473999, 0.031280518, -0.020111084, -0.019088745, 0.00083065033, -0.009117126, 0.008178711, 0.013061523, -0.019180298, -0.008560181, 0.011985779, 0.027160645, 0.015129089, -0.045776367, 0.0050354004, 0.059509277, -0.021118164, 0.0011415482, -0.061706543, 0.0023880005, 0.023254395, 0.0058059692, -0.038269043, -0.01209259, 0.06161499, -0.01108551, 0.0047340393, 0.026367188, -0.027450562, -0.0010433197, -0.0016050339, 0.035247803, -0.0703125, 0.054779053, -0.0034713745, -0.009529114, -0.013175964, -0.023605347, -0.061828613, -0.027175903, -0.014251709, -0.040985107, 0.012580872, -0.025131226, -0.013290405, -0.059783936, -0.066467285, 0.015686035, 0.01727295, 0.031707764, -0.028869629, 0.018127441, 0.00012123585, -0.00016713142, 0.101989746, -0.0037269592, 0.03793335, -0.002960205, -0.013626099, 0.024887085, -0.0546875, -0.005367279, -0.007701874, -0.045654297, -0.0030441284, -0.0132369995, -0.019241333, 0.016235352, -0.022140503, -0.018066406, -0.0010652542, -0.028503418, 0.019439697, 0.04058838, 0.039733887, -0.0010089874, 0.026275635, -0.026062012, -0.0021038055, -0.012069702, 0.02909851, 0.011497498, 0.022583008, -0.029586792, 0.002840042, -0.0028305054, -0.0064888, 0.011268616, -0.028198242, 0.029434204, 0.0018806458, 0.04095459, 0.017211914, -0.04623413, 0.042663574, 0.010063171, -0.0129852295, -0.003276825, -0.05203247, -0.025482178, -0.012046814, 0.013305664, 0.028961182, 0.013710022, 0.010826111, 0.055877686, -0.019134521, -0.034606934, -0.052001953, 0.037109375, -0.012184143, -0.021469116, -0.006778717, -0.06329346, 0.014167786, 0.0017490387, -0.009384155, 0.0068626404, 0.08709717, -0.003458023, 0.04196167, -0.0031490326, -0.0038337708, -0.017562866, -0.04473877, -0.0071868896, 0.046844482, 0.042419434, -0.06384277, -0.05154419, -0.070373535, 0.07824707, -0.036499023, -0.0018520355, -0.04348755, -0.00699234, -0.0016222, 0.042907715, 0.03186035, -0.03201294, -0.050445557, 0.001458168, -0.056030273, -0.014175415, 0.00096940994, 0.008872986, 0.018814087, -0.009841919, 0.015579224, -0.0025100708, 0.029937744, -0.035491943, 0.026367188, -0.0211792, -0.009895325, 0.0051574707, 0.010368347, 0.0345459, 0.01676941, -0.024658203, -0.0074806213, 0.024749756, -0.08581543, -0.048309326, 0.031982422, 0.014694214, 0.04940796, 0.0072784424, -0.012039185, 0.033843994, -0.017440796, 0.033355713, 0.042541504, -0.019134521, -0.0018968582, -0.01777649, 0.015716553, 0.0052223206, 0.010314941, 0.0340271, 0.004055023, 0.014602661, 0.028259277, 0.027816772, 0.06591797, 0.11291504, 0.029220581, -0.016906738, -0.044799805, 0.011924744, -0.015533447, -0.03466797, 0.02609253, 0.0143966675, 0.025939941, 0.012145996, 0.0032138824, -0.0026130676, 0.009254456, -0.042419434, -7.3969364e-05, 0.04989624, 0.014083862, -0.014984131, 0.032226562, -0.027236938, -0.0115737915, -0.014282227, 0.02696228, 0.00044488907, 0.06359863, 0.021194458, 0.0129776, 0.05456543, -0.016448975, 0.06384277, 0.04840088, 0.009292603, -0.03781128, 0.010070801, 0.042388916, 0.014404297, -0.001291275, 0.010917664, 0.004219055, -0.037902832, 0.005050659, 0.050628662, -0.016082764, 0.017471313, -0.015487671, -0.026245117, -0.0056037903, 0.055358887, 0.024383545, 0.0046958923, 0.032348633, -0.043426514, -0.020950317, 0.0047454834, -0.001203537, -0.01939392, -0.043151855, 0.016693115, 0.0034809113, 0.016540527, 0.042236328, 0.013900757, -0.0035858154, -0.025848389, 0.019989014, -0.035064697, -0.008712769, -0.0012569427, -0.0028743744, -0.015609741, 0.046417236, 0.025421143, -0.040893555, 0.0032157898, 0.029815674, 0.04522705, -0.013954163, 0.10809326, 0.037017822, 0.024887085, 0.0791626, 0.049591064, 0.0077209473, -0.05783081, 0.044311523, 0.01184082, -0.056152344, 0.03326416, 0.024536133, -0.091430664, 0.015808105, -0.035583496, 0.0015926361, -0.0010347366, -0.038330078, -0.017959595, 0.006980896, -0.0042800903, 0.012413025, 0.0020332336, 0.037261963, 0.0138549805, -0.017364502, 0.031463623, 0.060791016, 0.0017852783, 0.006084442, -0.025863647, -0.025268555, 0.006565094, -0.003068924, -0.00592041, 0.006904602, -0.0030555725, 0.01687622, -0.007461548, -0.012527466, -0.0025539398, -0.035980225, 0.004108429, -0.02142334, -0.045837402, -0.058685303, -0.02180481, -0.02267456, -0.048919678, 0.018814087, 0.04336548, -0.015701294, -0.03652954, 0.012626648, -0.008346558, 0.0023117065, 0.025421143, -0.0025157928, -0.030899048, -0.034301758, -0.050598145, -0.0127334595, 0.043151855, -0.034851074, 0.04949951, 0.045043945, -0.0054512024, 0.039489746, -0.018676758, 0.03503418, -0.012031555, 0.033966064, 0.00037837029, 0.024917603, -0.052947998, -0.01449585, -0.04824829, 0.045806885, -0.031799316, -0.021240234, 0.03656006, -0.008308411, 0.012672424, 0.04650879, -0.031829834, -0.02229309, -0.09838867, -0.015045166, -0.009880066, -0.048919678, 0.0028038025, -0.06951904, -0.064575195, -0.05731201, 0.008857727, 0.010612488, -0.0052375793, 0.022476196, -0.01309967, 0.020889282, -0.016571045, -0.01348114, 0.009605408, -0.011657715, 0.014053345, -0.025375366, 0.024383545, -0.047088623, 0.04763794, 0.02923584, -0.034729004, 0.008178711, -0.029510498, 0.03778076, -0.051696777, -0.01676941, -0.0079574585, -0.037841797, 0.021377563, 0.021728516, -0.0597229, 0.031173706, 0.010543823, 0.002204895, 0.05307007, -0.06274414, -0.033569336, -0.016586304, -0.054351807, 0.0012617111, -0.021087646, -0.033294678, -0.02268982, -0.04107666, 0.008651733, -0.030227661, 0.0024814606, 0.0124435425, 0.0067596436, 0.014152527, -0.0066375732, 0.04699707, 0.0062332153, 0.029205322, 0.039398193, -0.054260254, -0.045562744, -0.052490234, 0.026123047, 0.009277344, 0.0063323975, 0.0074882507, 0.007457733, -0.0030956268, -0.05215454, 0.01889038, 0.0005812645, 0.0023937225, 0.0016460419, 0.0059661865, -0.004322052, 0.01499939, -0.010719299, 0.012336731, -0.009529114, 0.017028809, -0.0027713776, -0.020050049, -0.06878662, 0.06994629, 0.057128906, -0.013519287, 0.016357422, 0.04675293, 0.024291992, 0.0209198, 0.04006958, -0.036712646, 0.010353088, 0.054473877, -0.014007568, -0.006362915, 0.006629944, 0.02708435, -0.004108429, -0.0040893555, -0.0770874, -0.0012216568, 0.019165039, 0.004459381, -0.021469116, 0.013420105, 0.021728516, -0.022750854, -0.0073547363, -0.028366089, 0.009162903, -0.04537964, 0.008262634, -0.00062036514, -0.022033691, -0.024719238, -0.0021343231, -0.053100586, -0.022994995, 0.033691406, -0.0042762756, -0.047088623, 0.05130005, 0.0019111633, -0.004798889, 0.008056641, 0.034240723, 0.005630493, -0.03137207, 0.029312134, -0.0039100647, 0.047454834, 0.030899048, -0.019744873, 0.0104522705, -0.050994873, -0.024642944, 0.022216797, -0.0178833, -0.037841797, -0.004383087, 0.023849487, 0.018341064, 0.0065078735, 0.0047721863, -0.00894928, 0.01171875, 0.017227173, -0.019958496, -0.009819031, -0.011688232, 0.00063848495, -0.08203125, -0.015556335, -0.028137207, 0.027236938, -0.057006836, 0.027359009, -0.017242432, 0.0012607574, 0.004096985, 0.0056381226, -0.06573486, 0.03149414, -0.030014038, -0.017150879, 0.045959473, -0.017028809, 0.0128479, -0.032165527, -0.04714966, -0.004962921, 0.07067871, 0.024261475, 0.027557373, -0.025390625, -0.024475098, 0.019836426, 0.020904541, 0.05026245, 0.021606445, 0.0037631989, -0.042297363, -0.011428833, -0.02720642, -0.0446167, 0.028182983, -0.048675537, -0.0284729, -0.043884277, 0.025222778, -0.0054016113, 0.024017334, 0.018234253, -0.01159668, -0.011558533, 0.018234253, -0.046813965, 0.0041999817, -0.005622864, -0.0284729, -0.0041389465, -0.012374878, -0.015075684, 0.06793213, 0.024902344, 0.007820129, -0.022369385, -0.015975952, 0.023147583, 0.037628174, 0.038360596, -0.06060791, 0.013542175, -0.055847168, 0.016967773, -0.04019165, 0.03387451, 0.055908203, 0.012298584, 0.03137207, 0.013961792, 0.010009766, 0.004753113, -0.0022449493, -0.011505127, -0.014770508, 0.008140564, -0.010215759, 0.0008735657, 0.019256592, -0.018920898, -0.0079193115, 0.014472961, 0.03805542, -0.03579712, -0.0042152405, 0.007801056, 0.013916016, 0.01789856, 0.0024871826, 0.039093018, 0.03552246, -0.060913086, 0.040740967, -0.022872925, -0.021621704, 0.012123108, -0.022262573, -0.06384277, -0.006324768, 0.0020656586, 0.023529053, -0.008522034, -0.016647339, -0.0340271, -0.02142334, -0.017623901, 0.012039185, -0.023635864, -0.03881836, 0.019210815, -0.05203247, 0.035858154, -0.010475159, 0.021408081, 0.009239197, 0.023544312, 0.001241684, -0.028213501, 0.024246216, -0.0690918, -0.017700195, -0.0284729, -0.015075684, 0.002073288, 0.029556274, 0.008926392, 0.008399963, -0.041625977, -0.012863159, -0.021850586, 0.043701172, 0.0061416626, -0.03253174, 0.027267456, -0.02357483, -0.020721436, 0.028823853, 0.03463745, -0.007949829, -0.030578613, 0.026031494, -0.041931152, -0.033203125, 0.011245728, 0.006969452, -0.014785767, -0.023986816, -0.032592773, 0.03353882, 0.005332947, 0.0007042885, -0.00016772747, -0.001739502, 0.005050659, -0.005001068, 0.005580902, 0.005290985, -0.008880615, 0.02204895, 0.023422241, -0.01876831, -0.0016431808, -0.004634857, -0.037963867, -0.05215454, -0.019973755, -0.033447266, 0.038848877, -0.007446289, 0.024932861, 0.038909912, -0.011276245, 0.020065308, -0.0011253357, -0.03488159, -0.0028972626, 0.0016326904, 0.010383606, -0.04638672, 0.013343811, 0.07525635, -0.07824707, -0.051940918, -0.073791504, 0.008926392, 0.00042152405, -0.007701874, 0.09991455, 0.03579712, 0.007980347, 0.03970337, 0.03652954, -0.07977295, -0.01600647, -0.006965637, -0.043182373, -0.038024902, -0.06390381, 0.012901306, 0.032287598, -0.09106445, -0.02279663, 0.028274536, 0.0052261353, -0.037384033, 0.005241394, -0.075927734, 0.04147339, -0.0546875, 0.009147644, -0.047851562, -0.007106781, 0.024017334, 0.003458023, -0.05303955, -0.04119873, 0.037384033, 0.039367676, 0.011451721, 0.0015621185, 0.0063056946, 0.015640259, -0.0357666, 0.055511475, -0.04650879, 0.003704071, -0.006752014, 0.06665039, 0.040252686, 0.024230957, -0.0007300377, -0.038360596, -0.002954483, 0.04333496, -0.00856781, 0.009757996, -0.0546875, -0.060638428, 0.01626587, 0.037109375, 0.020492554, 0.004776001, 0.04058838, 0.021575928, -0.049682617, -0.0053977966, 0.045196533, -0.027832031, -0.01902771, -0.02999878, 0.0023040771, 0.03164673, -0.0066833496, 0.021636963, -0.011238098, 0.05947876, -0.020065308, 0.002368927, -0.0013780594, -0.0013914108, -0.011444092, -0.037322998, -0.045715332, -0.0029468536, 0.00491333, -0.0054244995, -0.041870117, 0.028457642, 0.008255005, 0.022979736, 0.025421143, 0.016448975, -0.026641846, 0.005962372, 0.018478394, -0.02357483, -0.015609741, 0.0146865845, 0.022384644, -0.012031555, -0.016525269, -0.002779007, 0.025680542, 0.024642944, -0.032104492, 0.014892578, -0.002878189, -0.009902954, 0.04244995, -0.017791748, 0.02520752, 0.0005187988, 0.050109863, -0.020629883, -0.00541687, -0.0036678314, -0.02909851, 0.009178162, 0.040985107, -0.011154175, -0.03994751, -0.001253128, 0.03668213, 0.027709961, 0.039520264, -0.014297485, 0.009712219, 0.023513794, -0.0024776459, 0.01914978, 0.0093688965, 0.0129470825, -0.009742737, 0.012168884, -0.033447266, 0.025878906, -0.031707764, 0.043548584, 0.023986816, -0.027877808, 0.001996994, 0.02935791, -0.009033203, 0.042938232, 0.014770508, 0.017822266, 0.041900635, 0.010398865, 0.04269409, 0.012184143, 0.053344727, -0.014167786, -0.0011777878, 0.01965332, 0.0073509216, 0.0031738281, 0.0055999756, 0.008491516, -0.02633667, -0.017410278, -0.01725769, 0.0025100708, 0.01108551, 0.09777832, -0.006904602, 0.019714355, -0.033966064, 0.02684021, -0.025772095, -0.041412354, 0.030929565, -0.007648468, 0.048828125, -0.016693115, -0.0032749176, -0.035705566, -0.009338379, -0.003129959, 0.052734375, 0.028778076, -0.031280518, -0.010238647, 0.003353119, -0.01826477, -0.047729492, -0.0022735596, -0.008422852, 0.03869629, 0.0026836395, 0.03201294, 0.0021514893, -0.08001709, -0.07733154, 0.045684814, -0.103881836, 0.0051498413, 0.00020766258, 0.021743774, 0.018951416, -0.0003399849, 0.018814087, 0.08251953, 0.014167786, -0.0016613007, 0.034179688, -0.02822876, -0.024459839, 0.032348633, 0.00831604, -0.010520935, -0.008041382, -0.0019073486, -0.008224487, -0.0026721954, 0.043151855, -0.021072388, -0.09234619, -0.042755127, -0.05633545, 0.011116028, -0.020339966, -0.006652832, 0.00674057, -0.016998291, -0.05090332, 0.024749756, 0.020523071, 0.059295654, 0.03463745, -0.011070251, 0.033203125, -0.008522034, -0.050598145, -0.055847168, -0.027694702, 0.01499176, 0.019302368, -0.01776123, 0.051940918, -0.010307312, -0.042999268, -0.008140564, -0.020980835, -0.013557434, 0.010314941, 0.00047183037, -0.0027179718, -0.0046691895, -0.010223389, 0.015365601, -0.0017967224, 0.0018634796, 0.02935791, 0.018829346, -0.025238037, 0.0066986084, -0.013587952, -0.005329132, 0.015258789, -0.0048713684, -0.0019226074, -0.04953003, 0.032196045, 0.03933716, 0.0023441315, 0.015235901, -0.010185242, -0.017242432, -0.03463745, 0.009002686, 0.020263672, 0.012062073, -0.009346008, 0.043273926, 0.020584106, 0.06304932, -0.014152527, -0.027160645, -0.06274414, 0.047912598, -0.01701355, -0.0004196167, 0.02267456, -0.0068588257, 0.03652954, 0.009101868, -0.0028953552, 0.017745972, -0.01159668, 0.009765625, -0.030181885, 0.008331299]}, "B00GJEPTJS": {"id": "B00GJEPTJS", "original": "Brand: Char-Griller\nName: Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite\nDescription: \nFeatures: KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking\nLARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once\nBEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8\" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks\nEASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan\nDIMENSIONS - 31\u201dL x 45\u201dW x 47\u201dH, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin' Stone, both sold separately)\n", "metadata": {"Name": "Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite", "Brand": "Char-Griller", "Description": "", "Features": "KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking\nLARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once\nBEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8\" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks\nEASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan\nDIMENSIONS - 31\u201dL x 45\u201dW x 47\u201dH, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin' Stone, both sold separately)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.011894226, -0.0007429123, -0.010887146, 0.001789093, -0.01802063, 0.0049972534, -0.026062012, -0.01953125, -0.016494751, 0.013847351, -0.02772522, 0.04067993, 0.0071640015, -0.025787354, 0.017471313, -0.027114868, 0.004878998, 0.032684326, 0.004878998, -0.021118164, -0.0049705505, -0.011482239, 0.004524231, 0.034423828, 0.05557251, 0.0014286041, -0.0102005005, 0.02709961, 0.04006958, 0.038391113, 0.035308838, -0.058929443, 0.030395508, 0.030212402, -0.046783447, -0.009361267, -0.015686035, 0.017242432, -0.015426636, 0.009757996, 0.026412964, -0.013366699, -0.016204834, 0.022628784, -0.0284729, -0.0184021, -0.0033092499, -0.024139404, -0.0035133362, -0.0042800903, 0.013069153, 0.033294678, 0.026123047, -0.02458191, 0.0046463013, 0.013092041, 0.028656006, 0.00026488304, 0.035308838, -0.027816772, -0.03074646, 0.002122879, 0.020050049, -0.020736694, -0.057769775, 0.008682251, 0.11480713, -0.038879395, -0.047607422, -0.059509277, 0.03048706, 0.041625977, 0.03225708, -0.025405884, -0.03375244, -0.017456055, -0.00868988, -0.0491333, 0.048858643, -0.03527832, -0.019058228, -0.008758545, 0.023040771, -0.025482178, 0.00094795227, -0.013252258, -0.018798828, -0.004501343, 0.004798889, -0.030014038, -0.0027065277, -0.03729248, -0.044677734, 0.05923462, 0.014190674, -0.015731812, -0.04650879, -0.05343628, 0.030929565, 0.015235901, 0.030273438, -0.021591187, 0.0024356842, -0.0013856888, -0.031982422, 0.07171631, 0.016082764, 0.0028305054, -0.037841797, -0.006679535, -0.0016431808, -0.07891846, -0.003704071, -0.058563232, 0.0009822845, -0.0025291443, -0.020553589, 0.009857178, 0.03652954, -0.040740967, -0.030288696, -0.021850586, 0.0075302124, 0.075683594, 0.030456543, 0.053985596, -0.0018253326, 0.011817932, -0.03717041, 0.047027588, -0.043518066, -0.011184692, 0.059448242, 0.04309082, 0.014060974, -0.035614014, -0.04714966, 0.008338928, -0.0059890747, 0.015396118, -0.022491455, -0.03363037, 0.05987549, -0.0005812645, -0.033111572, 0.03466797, 0.009544373, 0.0048713684, -0.008506775, -0.09509277, 0.036346436, -0.040740967, 0.025466919, 0.012969971, -0.03894043, 0.011405945, -0.017410278, 0.0020370483, -0.029190063, -0.036956787, -0.02633667, -0.0031490326, -0.024520874, -0.03314209, -0.033477783, 0.00089883804, 0.04586792, 0.013465881, 0.014526367, 0.027511597, 0.000426054, -0.010902405, -0.0046157837, 0.0115356445, -0.008514404, 0.011802673, 0.017608643, 0.027618408, 0.04876709, -0.048431396, -0.06109619, -0.042907715, 0.105285645, -0.049957275, 0.016967773, 0.034576416, 0.010559082, 0.00932312, -0.016235352, 0.0068206787, -0.055847168, 0.07678223, -0.0018053055, -0.0051116943, 0.008850098, 0.012161255, 0.0036716461, 0.029556274, -0.0056648254, -0.056243896, 0.0063209534, 0.0047836304, -0.0082473755, 0.0066184998, -0.043395996, -0.011001587, -0.0072898865, 0.026107788, 0.02796936, 0.060333252, -0.0070228577, 0.053222656, -0.0061798096, -0.08203125, -0.009506226, 0.055023193, -0.010597229, -0.00016236305, -0.005012512, 0.012199402, 0.014152527, -0.02960205, 0.0029029846, 0.0034732819, 0.056488037, -0.0064888, -0.027801514, -0.014709473, 0.016571045, 0.008277893, -0.062927246, 0.041229248, 0.059814453, 0.05368042, 0.009269714, 0.062194824, 0.107177734, 0.018859863, -0.023773193, -0.032409668, 0.023147583, -0.019577026, -0.04421997, -0.019683838, 0.047821045, -0.013374329, 0.0015077591, -0.0009813309, -0.050354004, -0.033447266, 0.068481445, 0.0056037903, 0.027572632, 0.04937744, -0.020446777, 0.020309448, -0.028869629, 0.00724411, -0.05960083, 0.072387695, -0.029251099, 0.046295166, 0.06561279, -0.008460999, -0.010604858, 0.025543213, 0.011489868, 0.0335083, -0.016052246, -0.003211975, 0.010940552, 0.00774765, -0.00046539307, 0.011253357, 0.006111145, -0.019454956, -0.03274536, 0.013130188, -0.010360718, -0.02116394, 0.027420044, 0.008270264, 0.028701782, -0.0017995834, 0.062561035, 0.029296875, 0.01499939, 0.011367798, -0.06124878, -0.028823853, -0.003993988, 0.026351929, -0.022720337, 0.008728027, -0.016662598, 0.0047073364, 0.070007324, -0.00042939186, 0.019714355, -0.016311646, 0.011894226, 0.024841309, -0.024093628, -0.01586914, 0.0065612793, -0.0045814514, -0.001964569, 0.04800415, 0.031173706, -0.05831909, 0.057250977, 0.060394287, 0.056671143, 0.009391785, 0.06726074, 0.024124146, 0.012786865, 0.07537842, 0.042388916, 0.03314209, -0.034423828, -0.02432251, -0.044006348, 0.006385803, -0.02067566, 0.037384033, 0.00080156326, -0.008308411, -0.021316528, -0.028793335, 0.025390625, -0.041900635, -0.0030593872, -0.03527832, 0.015930176, -0.0010223389, 0.019577026, 0.02758789, 0.012870789, -0.046722412, 0.020492554, -0.021240234, -0.016311646, -0.0016641617, 0.023101807, -0.044067383, 0.025146484, 0.0058135986, 0.0032672882, 0.026031494, -0.011985779, -0.024230957, 0.03213501, -0.0134887695, 0.0087509155, 0.0014848709, -0.030853271, -0.008811951, -0.020843506, -0.06137085, -0.034179688, 0.018585205, -0.03756714, -0.024749756, 0.008407593, -0.014511108, -0.019378662, 0.015823364, 0.008758545, -0.02758789, 0.043670654, 0.01689148, -0.07879639, -0.022735596, -0.014343262, -0.012428284, 0.032196045, -0.036224365, 0.00944519, 0.011474609, -0.0026168823, 0.03189087, 0.009689331, 0.052642822, 0.0053863525, 0.011039734, 0.019180298, 0.04751587, -0.0007314682, -0.03125, 0.007133484, 0.059753418, -0.02017212, -0.01928711, 0.018081665, 0.0077171326, 0.017288208, 0.0031700134, -0.029144287, -0.03982544, -0.10046387, 0.009246826, 0.0005106926, -0.039245605, -0.017745972, -0.067871094, -0.06677246, -0.04046631, 0.010154724, 0.024795532, -0.024002075, -0.016342163, -0.014572144, -0.031921387, 0.01776123, -0.007724762, 0.006389618, -0.024902344, 0.046813965, -0.004623413, -0.019744873, -0.00182724, -0.0032672882, 0.025848389, -0.04547119, 0.013206482, -0.028961182, 0.04562378, -0.06762695, -0.021865845, -0.02645874, -0.03237915, 0.00554657, 0.034851074, -0.0046539307, 0.03427124, -0.03604126, -0.059509277, -0.0009627342, -0.04345703, -0.04626465, -0.023742676, -0.08190918, 0.014846802, -0.03149414, -0.02809143, -0.040405273, -0.06762695, 0.0054855347, -0.028076172, -0.0016403198, -0.0056114197, 0.040008545, 0.018325806, -0.010673523, 0.070495605, -0.021743774, 0.033996582, 0.00945282, -0.008010864, -0.01713562, -0.048950195, 0.050689697, 0.021072388, -0.03277588, 0.035247803, -0.0011320114, 0.022506714, -0.027755737, -0.0023040771, -0.0044136047, 0.018371582, -0.003282547, -0.039916992, -0.0021800995, -0.057769775, 0.02406311, 0.032196045, 0.0055656433, -0.044128418, -0.07788086, 0.021362305, -0.040100098, 0.10559082, 0.040496826, -0.018341064, 0.1315918, 0.062194824, -0.014060974, 0.03692627, 0.020477295, 0.03704834, 0.0015697479, 0.0637207, -0.0064964294, -0.012290955, 0.016464233, -0.021652222, 0.037139893, 0.04598999, -0.071777344, 0.010246277, -0.03552246, -0.059692383, 0.008666992, 0.05105591, 0.028396606, -0.014877319, -0.021759033, -0.015007019, -0.010696411, -0.06286621, -0.005596161, -0.018218994, -0.0107040405, 0.006538391, -0.0035209656, 0.03125, -0.025360107, -0.029022217, 0.02709961, 0.023849487, 0.016189575, 0.024261475, 0.0085372925, -0.011802673, 0.000101327896, -0.027633667, -0.0138168335, -0.037384033, 0.0067825317, 0.018478394, 0.0005669594, 0.024520874, -0.005065918, 0.007965088, -0.014198303, -0.012260437, -0.015380859, -0.024261475, 0.01864624, -0.006099701, -0.038513184, -0.026809692, -0.003129959, -0.037139893, 0.005180359, 0.007888794, -0.044891357, -0.009475708, 0.016357422, 0.025985718, -0.06463623, -0.0067710876, 0.013435364, -0.051452637, -0.044677734, 0.013786316, -0.029190063, -0.031829834, -0.018234253, 0.010154724, -0.021347046, 0.010284424, 0.009262085, 0.017745972, 0.027893066, 0.008773804, 0.055145264, -0.049713135, -0.01247406, -0.030960083, 0.0758667, 0.040893555, 0.0028800964, -0.0072288513, -0.025878906, -0.020401001, 0.017425537, 0.035949707, -0.013206482, 0.025054932, -0.025665283, -0.06689453, -0.052612305, -8.165836e-05, 0.021606445, -0.012298584, -0.05316162, -0.03253174, 0.060821533, -0.0075187683, -0.006690979, -0.023254395, 0.026809692, 0.011962891, 0.024719238, -0.029449463, 0.006286621, 0.01108551, -0.032104492, -0.0031223297, 0.004173279, -0.04156494, 0.064941406, 0.0071487427, 0.034210205, -0.068481445, -0.013450623, -0.04421997, -0.016159058, 0.011276245, -0.007762909, 0.0035705566, -0.020309448, -0.019515991, -0.050323486, 0.0769043, 0.028549194, -0.0011119843, -0.009208679, -0.020217896, -0.015457153, -0.07373047, -0.001033783, -0.008224487, 0.014091492, -0.013908386, -0.034118652, -0.0033226013, -0.048980713, -0.003622055, 0.00095129013, -0.016586304, 0.03149414, -0.018112183, 0.02508545, 0.009712219, 0.03250122, 0.04171753, 0.014511108, 0.02407837, 0.036376953, -0.025619507, -0.025390625, -0.024047852, -0.0082473755, -0.02041626, -0.0044059753, -0.009262085, 0.05130005, 0.005554199, -0.036743164, 0.0013990402, 0.009208679, -0.0072746277, -0.010681152, -0.0009832382, 0.025543213, -0.005584717, 0.015792847, 0.07531738, -0.021347046, 0.016159058, 0.013694763, -0.028289795, 0.014205933, 0.011993408, -0.029891968, 0.014732361, -0.014167786, -0.032714844, 0.03704834, -0.015289307, -0.0036792755, 0.010017395, 0.019561768, 0.001996994, 0.01486969, -0.022460938, -0.00034284592, 0.016204834, -0.0026817322, 0.033813477, -0.030090332, 0.053527832, -0.006336212, -0.010063171, -0.005584717, 0.040039062, -0.028839111, -0.0033302307, 0.0012140274, 0.017196655, -0.020553589, -0.012626648, -0.027435303, -0.012557983, -0.031051636, -0.0013875961, 0.004802704, -0.011505127, 0.015342712, -0.02407837, -0.0008234978, 0.0055618286, -0.031921387, -0.032104492, -0.03111267, 0.010902405, -0.044677734, 0.01436615, 0.0025177002, 0.0017137527, 0.0082092285, -0.023452759, -0.03250122, 0.00033783913, -0.03024292, 0.009925842, -0.012039185, 0.06149292, 0.027893066, -0.054016113, -0.002035141, 0.032928467, -0.03591919, 0.020263672, 0.008110046, 0.011405945, 0.0058059692, 0.012275696, 0.05783081, -0.02935791, -0.035369873, -0.06542969, 0.038513184, -0.024398804, -0.013298035, 0.032714844, -0.00062704086, 0.017486572, 0.0335083, 0.0049858093, -0.040924072, -0.020980835, -0.015335083, -0.07147217, 0.0006136894, -0.034820557, 0.030883789, -0.0034542084, -0.010391235, -0.008453369, 0.045715332, -0.0054512024, -0.054595947, -0.031982422, -0.02204895, 0.014823914, -0.045013428, 0.00907135, -0.009460449, 0.007457733, 0.007675171, 0.019348145, -0.052215576, -0.020751953, 0.023590088, 0.03112793, 0.03857422, -0.022399902, 0.02923584, 0.04360962, -0.033721924, 0.049438477, -0.02180481, -0.016860962, -0.010169983, 0.041229248, 0.022781372, 0.023529053, -0.01751709, -0.025772095, -0.02734375, 0.046936035, 0.038635254, -0.0059890747, -0.023880005, -0.01914978, 0.02067566, 0.029174805, 0.018325806, 0.038330078, 0.028366089, 0.00075769424, 0.0058250427, 0.012245178, 0.014053345, -0.025634766, -0.03967285, 0.004600525, -0.022338867, 0.039978027, -0.00894928, 0.0033226013, 0.0234375, 0.0473938, -0.027008057, -0.004886627, 0.00843811, -0.022872925, 0.011306763, -0.01663208, -0.04260254, -0.015045166, 0.0051994324, 0.021118164, -0.033966064, -0.04647827, -0.0064697266, 0.019363403, 0.0020771027, 0.01725769, -0.03363037, 0.015449524, 0.019332886, -0.07110596, 0.042419434, -0.009223938, -0.046142578, -0.0034103394, -0.0625, -0.0016145706, 0.010231018, -0.030944824, -0.008987427, 0.029022217, 0.036071777, -0.0054855347, 0.005203247, -0.021820068, 0.029220581, -0.01210022, 0.011024475, 0.033050537, -0.0047035217, -0.0178833, -0.052215576, -0.0028686523, 0.055786133, -0.022079468, 0.0012350082, 0.0027675629, 0.026550293, -0.039611816, -0.009597778, -0.018920898, -0.016784668, 0.017669678, -0.0012617111, 0.01625061, 0.04525757, 0.006000519, -0.02381897, 0.025314331, -0.04699707, 0.044952393, -0.0059394836, 0.075683594, 0.032562256, 0.02268982, -0.04144287, -0.018432617, -0.009223938, -0.0052757263, -0.002696991, 0.043914795, -0.0032634735, 0.06915283, 0.038085938, 0.037322998, 0.06976318, -0.03869629, 0.032104492, 0.027740479, 0.03189087, 0.015022278, -0.044311523, -0.032226562, -0.050476074, -0.016143799, -0.009338379, -0.018218994, -0.05883789, 0.0105896, 0.021438599, -0.0043258667, -0.036315918, 0.022033691, 0.015129089, -0.043060303, -0.012779236, -0.010101318, -0.018066406, -0.004840851, -0.035186768, -0.024917603, 0.0066566467, -0.03149414, 0.025009155, 0.01751709, -0.059173584, -0.064453125, 0.032196045, -0.00071811676, -0.054748535, -0.03427124, -0.0044059753, 0.009475708, 0.005962372, 0.03842163, -0.016448975, -0.053375244, -0.071899414, 0.025512695, -0.064819336, -0.01802063, -0.029266357, -0.0015001297, -0.005580902, -0.012313843, 0.035339355, 0.01789856, 0.025421143, -0.0029945374, 0.004837036, -0.017974854, -0.02267456, 0.00932312, -0.0025939941, -0.034973145, 0.007850647, 0.0340271, -0.013412476, 0.0070648193, 0.011299133, -0.06323242, -0.041992188, -0.013298035, 0.009315491, 0.021835327, -0.0038375854, -0.007080078, -0.016418457, -0.004760742, -0.042877197, -0.035064697, -0.0040397644, -0.016418457, 0.01574707, 0.04751587, 0.018295288, -0.011528015, -0.050872803, -0.027526855, -0.014251709, 0.033416748, 0.029037476, 0.054107666, 0.011199951, 0.016998291, -0.019927979, 0.016235352, -0.014587402, -0.02293396, -0.021850586, 0.014259338, 0.0060653687, -0.022415161, 0.020584106, 0.028656006, -0.021408081, 0.012481689, 0.045410156, 0.020431519, -0.029968262, -0.012496948, -0.035217285, -0.005493164, 0.0017004013, -0.044311523, -0.041259766, -0.006591797, 0.0037612915, 0.0075912476, -0.007827759, 0.0181427, 0.0010700226, 0.027694702, -0.010826111, -0.0135650635, 0.026260376, -0.027511597, -0.04071045, -0.03756714, -0.01776123, 0.011230469, 0.0028057098, -0.043914795, -0.041137695, 0.05203247, 0.026260376, -0.041015625, 0.049560547, -0.026931763, 0.010505676, 0.0146484375, 0.004184723, -0.012527466, 0.017211914, 0.038513184, -0.010429382, 0.018859863]}, "B08HPTJG1W": {"id": "B08HPTJG1W", "original": "Brand: Safe 'n Easy\nName: Safe 'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)\nDescription: Safe \u2018n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe \u2018n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe \u2018n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.\nFeatures: Professional Formula \u2013 Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food.\nSafe and Easy to Use. Spray On, Let Set. Rinse Off \u2013 Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly.\nPowerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting \u2013 Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily.\nMade In The USA \u2013 Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers.\nSatisfaction Guaranteed \u2013 Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you\u2019re not completely satisfied just contact us for a full refund.\n", "metadata": {"Name": "Safe 'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)", "Brand": "Safe 'n Easy", "Description": "Safe \u2018n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe \u2018n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe \u2018n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.", "Features": "Professional Formula \u2013 Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food.\nSafe and Easy to Use. Spray On, Let Set. Rinse Off \u2013 Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly.\nPowerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting \u2013 Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily.\nMade In The USA \u2013 Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers.\nSatisfaction Guaranteed \u2013 Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you\u2019re not completely satisfied just contact us for a full refund.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03265381, 0.03427124, -0.068481445, -0.08728027, 0.04714966, -0.030822754, -0.03253174, -0.00033807755, -0.03564453, 0.024398804, -0.011413574, 0.017715454, 0.010673523, -0.020980835, 0.020233154, -0.038146973, 0.015090942, -0.028778076, 0.0025367737, -0.01689148, -0.0090408325, -0.010635376, 0.03225708, -0.017837524, 0.044006348, -0.04324341, 0.032836914, -0.005870819, 0.01008606, -0.006565094, 0.028305054, 0.008415222, 0.013519287, 0.01247406, -0.013389587, -0.041870117, -0.021850586, 0.015686035, -0.0023517609, 0.0067367554, -0.018936157, 0.01713562, 0.030929565, -0.003929138, -0.027175903, -0.0031738281, -0.017150879, -0.01612854, -0.00687027, 0.006385803, 0.008720398, 0.009254456, 0.0058059692, -0.030212402, -0.0060539246, 0.0010166168, -0.010955811, -0.014129639, 0.016036987, 0.062316895, 0.018539429, 0.0010843277, -0.0008401871, -0.034057617, -0.026809692, -0.02734375, 0.012840271, -0.0026950836, -0.028762817, -0.027816772, 0.046051025, -0.004470825, 0.041015625, 0.0020065308, -0.051727295, -0.03933716, 0.037475586, -0.0016555786, 0.021759033, -0.020187378, -0.045837402, -0.044830322, -0.011627197, -0.019195557, 0.014480591, 0.022033691, -0.018218994, -0.016342163, -0.0011825562, -0.010795593, -0.0075035095, 0.0077934265, -0.021820068, 0.017562866, -0.018066406, -0.0158844, 0.02468872, 0.03036499, 0.031219482, 0.021957397, 0.026824951, -0.057922363, 0.050445557, -0.025177002, -0.026519775, 0.01914978, -0.0014724731, 0.023498535, -0.016189575, 0.02760315, -0.025314331, -0.08831787, 0.009056091, -0.03994751, -0.033477783, -0.0009851456, 0.008041382, -0.026565552, 0.038726807, -0.06201172, -0.028259277, 0.0020580292, -0.019134521, 0.030197144, 0.02684021, 0.017837524, 0.020339966, -0.013153076, -0.014282227, 0.028305054, -0.018920898, 0.010810852, 0.073913574, 0.026306152, -0.0006251335, -0.027832031, -0.020019531, -0.010681152, 0.019042969, -0.018875122, 0.03768921, -0.009735107, 0.028900146, 0.045410156, 0.03869629, 0.019424438, 0.021697998, 0.005077362, 0.014053345, -0.01158905, 0.016189575, 0.016464233, 0.04989624, -0.023666382, -0.06286621, -0.070373535, -0.02041626, -0.028915405, 0.03201294, -0.07208252, 0.016845703, 0.0048179626, -0.011184692, 0.0022640228, -0.0023422241, -0.0067100525, 0.009567261, 0.01878357, 0.014808655, -0.0070724487, 0.041412354, -0.01789856, -0.055999756, -0.011222839, 0.0071105957, -0.014022827, -0.039916992, 0.035980225, 0.08203125, -0.11645508, -0.07501221, -0.04321289, 0.09399414, -0.018798828, -0.0032024384, -0.03164673, -0.007381439, -0.03729248, 0.054229736, -0.003648758, -0.0060424805, -0.0056648254, 0.0040626526, 0.014518738, -0.006713867, 0.0006828308, -0.02330017, 0.036376953, -0.011665344, -0.053009033, -0.03237915, -0.007537842, -0.0029067993, -0.022460938, -0.029876709, -0.042907715, -0.0044136047, 0.03692627, -0.012382507, 0.034973145, 0.0023345947, -0.005218506, 0.0008406639, -0.0289917, 0.006629944, 0.008285522, -0.045837402, 0.028381348, 0.0044021606, 0.0034809113, 0.048553467, -0.019683838, 0.04977417, 0.008979797, 0.0024967194, -0.00039720535, -0.051605225, -0.013809204, -0.012702942, -0.021408081, 0.021530151, 0.08251953, 0.06414795, 0.06640625, -0.013328552, 0.022445679, 0.056152344, 0.041748047, 6.9737434e-06, -0.016586304, 0.00907135, 0.025360107, -0.033477783, 0.0036468506, 0.02659607, 0.0013532639, 0.008934021, 0.010681152, -0.004497528, 0.007247925, -0.027267456, 0.011268616, 0.04071045, 0.030014038, -0.0236969, 0.062164307, -0.054138184, 0.009536743, -0.025253296, 0.009468079, -0.013031006, -0.033111572, 0.04348755, -0.025482178, 0.039520264, -0.0390625, 0.041259766, 0.030044556, 0.00762558, -0.040161133, 0.0035896301, 0.0059280396, -0.0009689331, 0.029464722, -0.018859863, 0.016342163, -0.010421753, 0.0036373138, -0.022384644, 0.0062065125, -0.012954712, -0.013153076, 0.0362854, -0.0076560974, 0.0037460327, -0.009048462, 0.041534424, -0.024536133, -0.011161804, 0.015716553, 0.031982422, 0.030227661, -0.02532959, 0.026382446, -0.013145447, -0.006008148, 0.030441284, 0.038970947, -0.0058059692, -0.017547607, 0.019805908, 0.029785156, -0.033325195, 0.008369446, -0.011940002, 0.005054474, -0.025863647, 0.003540039, -0.0076942444, -0.007297516, -0.0009522438, 0.027862549, 0.023971558, -0.019638062, 0.031677246, 0.016815186, 0.0042533875, 0.028762817, 0.00957489, 0.016555786, -0.07946777, 0.07763672, -0.019943237, 0.035369873, 0.04876709, 0.018432617, -0.0070495605, -0.0055160522, 0.028015137, 0.0435791, 0.02909851, 0.08843994, 0.028289795, 0.032562256, -0.0030899048, -0.019042969, -0.0042915344, 0.00067806244, -0.013465881, -0.018676758, 0.0060043335, -0.026657104, -0.0022220612, -0.020019531, -0.044433594, 0.035003662, 0.026931763, 0.026901245, -0.0670166, -0.0055999756, 0.020217896, -0.056121826, -0.007980347, -0.021835327, -0.0010614395, 0.0060157776, 0.0047912598, -0.008255005, -0.0049095154, -0.050750732, -0.033111572, 0.017044067, -0.042541504, 0.018676758, 0.020736694, -0.034454346, 0.02243042, 0.0018424988, 0.020263672, 0.033599854, 0.014472961, 0.008399963, -0.04888916, -0.013755798, -0.02178955, -0.021621704, 0.029785156, -0.04638672, -0.003944397, 0.0015659332, -0.038391113, -0.0024337769, -0.04034424, -0.0071792603, 0.03704834, -0.00053834915, 0.017623901, 0.11755371, -0.03945923, -0.013122559, -0.04824829, 0.02734375, 0.007068634, -0.01739502, 0.014732361, -0.008972168, 0.027038574, 0.006072998, -0.027038574, -0.01838684, -0.113098145, 0.013420105, -0.0022621155, -0.050201416, 0.0026931763, -0.0625, -0.06665039, -0.055908203, 0.026260376, 0.047454834, -0.004085541, 0.02178955, -0.009933472, 0.026306152, -0.024230957, 0.008956909, 0.01876831, -0.011779785, -0.0062789917, -0.002363205, 0.021240234, 0.014892578, -0.010292053, 0.0014152527, -0.05822754, 0.004295349, -0.054840088, 0.03149414, -0.031951904, 0.030944824, -0.038116455, 0.0055160522, -0.018829346, 0.0154418945, -0.023361206, 0.0032405853, 0.013442993, -0.028579712, 0.05078125, -0.03982544, 0.0110321045, -0.025054932, -0.030685425, 0.012817383, -0.02935791, -0.023086548, -0.032928467, 0.003004074, -0.0062332153, -0.029083252, -0.030212402, -0.00642395, 0.050476074, 0.03591919, 0.00447464, 0.060760498, 0.026916504, 0.045135498, 0.008338928, -0.011657715, -0.015335083, -0.04119873, 0.067993164, -0.008117676, 0.005718231, -0.058135986, 0.043182373, -0.032226562, -0.034179688, 0.03302002, -0.056488037, 0.06756592, 0.017044067, -0.008544922, 0.027404785, -0.02760315, -0.006790161, 0.036987305, -0.056365967, -0.028839111, 0.009819031, -0.011039734, -0.047088623, 0.076538086, -0.0010681152, 0.00036907196, 0.009765625, 0.05340576, -0.005176544, -0.00087451935, 0.0044822693, 0.0021133423, 8.1300735e-05, 0.034088135, -0.008590698, 0.0011167526, -0.005302429, 0.049987793, 0.012794495, -0.019241333, -0.0005645752, 8.5771084e-05, 0.021347046, -0.004886627, -0.0037078857, 0.05557251, 0.033966064, -0.009689331, -0.03387451, -0.05078125, 0.030899048, -0.07080078, 0.012771606, -0.02230835, 0.008918762, -0.015419006, 0.027297974, 0.022323608, -0.012466431, -0.015823364, -0.01133728, -0.019699097, -0.011711121, 0.0231781, 0.022155762, 0.020935059, -0.045288086, 0.035705566, -0.044281006, -0.015060425, 0.022949219, 0.04144287, 0.019348145, -0.010345459, 0.0006122589, 0.0004992485, -0.016983032, 0.017288208, 0.00365448, -0.040008545, -0.01864624, -0.013679504, 0.0005745888, -0.005569458, 0.015167236, -0.056732178, -0.002155304, 0.00023281574, -0.06237793, 0.0062332153, -0.027511597, -0.015991211, 0.0115356445, -0.007003784, -0.0021743774, 0.00024414062, -0.010948181, -0.029846191, -0.0010070801, 0.03012085, -0.038085938, 0.05508423, -0.047851562, -0.0057258606, 0.029129028, 0.015853882, 0.035736084, 0.019088745, 0.04309082, -0.036834717, 0.00579834, -0.04348755, 0.044891357, 0.01826477, 0.020492554, -0.006793976, -0.03793335, 0.040161133, -0.0025749207, 0.07141113, 0.025146484, -0.0063667297, -0.08026123, 0.025238037, -0.017990112, -0.04534912, 0.060760498, -0.06689453, -0.014892578, -0.030151367, 0.030395508, -0.011627197, -0.026931763, -0.051574707, 0.033935547, 0.027145386, 0.019866943, 0.006954193, 0.012184143, 0.016708374, 0.014312744, 0.022766113, -0.00089359283, -0.022766113, -0.03768921, 0.014671326, 0.019104004, -0.016586304, -0.0074501038, -0.013519287, 0.009376526, 0.017990112, -0.018341064, 0.0102005005, -0.029708862, -0.0005955696, -0.034301758, 0.049194336, 0.07244873, -0.008293152, -0.005706787, 0.007232666, -0.035064697, -0.028015137, -0.055603027, 0.013504028, 0.0513916, -0.06939697, -0.051971436, 0.08453369, -0.054718018, 0.055145264, 0.0027370453, -0.008995056, 0.034973145, -0.034057617, 0.029663086, 0.0054779053, -0.010597229, 0.008529663, -0.015914917, 0.04446411, -0.0019350052, 0.0003478527, 0.0015821457, -0.022109985, -0.027572632, -0.04611206, 0.011161804, -0.0024223328, 0.044006348, 0.023071289, -0.06854248, 0.02204895, 0.07092285, -0.0028896332, 0.005874634, 0.038085938, -0.006679535, -0.021469116, -0.024978638, 0.016403198, -0.00030136108, -0.033599854, 0.04006958, -0.014953613, -0.0064048767, 0.033111572, -0.03366089, 0.04119873, 0.00076532364, -0.040985107, 0.020065308, -0.055511475, 0.03265381, -0.014228821, 0.016281128, 0.02079773, 0.034088135, -0.09661865, -0.027542114, -0.061706543, 0.107421875, -0.022369385, -0.027191162, -0.020584106, 0.0018281937, 0.009361267, 0.0011892319, -0.0010633469, -0.043273926, 0.023147583, -0.014320374, 0.0017204285, -0.032562256, -0.03062439, -0.04446411, 0.024749756, -0.0068359375, 0.002866745, 0.030838013, -0.0016326904, -0.064086914, -0.062927246, -0.011520386, 0.04763794, 0.021621704, -0.016647339, -0.017959595, -0.013092041, 0.006198883, 0.009231567, -0.049072266, -0.00016617775, 0.024002075, -0.025970459, -0.05441284, 0.00025224686, -0.020599365, -0.0062217712, -0.001288414, -0.010009766, -0.010322571, -0.050598145, -0.00034809113, -0.02760315, 0.0113220215, 0.014160156, 0.013031006, 0.03225708, -0.010559082, 0.005630493, 0.04989624, -0.035583496, -0.034301758, -0.00040268898, 0.058502197, -0.024841309, -0.008354187, 0.05908203, -0.015029907, 0.035858154, 0.0046424866, 9.602308e-05, 0.03543091, -0.00064849854, 0.011238098, 0.028656006, -0.022415161, -0.006134033, 0.009986877, -0.01727295, -0.06021118, -0.03643799, -0.000685215, -0.038238525, 0.0146865845, 0.01625061, -0.05142212, -0.005126953, -0.0121536255, 0.013977051, -0.010726929, -0.01586914, -0.030563354, -0.010559082, -0.01725769, -0.020385742, 0.03665161, 0.022018433, 0.013053894, -0.032806396, 0.024414062, 0.058776855, -0.014671326, 0.067993164, -0.016845703, -0.038513184, 0.018295288, 0.041748047, 0.029464722, 0.014152527, 0.008331299, -0.03778076, -0.030838013, 0.05682373, 0.005268097, 0.039916992, -0.05126953, -0.048187256, 0.0039367676, 0.051086426, -0.00069999695, 0.023849487, 0.021087646, -0.014839172, -0.036865234, -0.0012636185, 0.008369446, -0.036834717, -0.034729004, -0.004371643, -0.023284912, 0.023391724, 0.0017766953, 0.020889282, 0.044433594, 0.0038528442, -0.01890564, 0.0023460388, -0.0045433044, 0.022064209, 0.037902832, -0.050811768, -0.0647583, -0.03842163, 0.0154953, -0.0017261505, -0.046905518, 0.045776367, -0.007671356, 0.017547607, 0.03466797, 0.026977539, -0.04333496, -0.025772095, -0.012664795, 0.012435913, -0.0018091202, 0.0206604, -0.019058228, -0.023452759, -0.009361267, 0.0031280518, 0.04522705, 0.0043792725, -0.003004074, 0.02029419, 0.0037403107, 0.005168915, -0.016220093, -0.0026493073, -0.02381897, -0.019332886, -0.023712158, 0.024505615, 0.030151367, -0.008491516, -0.046295166, 0.021453857, 0.02293396, -0.019439697, 0.0012655258, 0.02180481, 0.0063095093, -0.009048462, 0.0013771057, -0.019897461, -0.05807495, 0.0024318695, 0.043304443, -0.020248413, 0.052581787, -0.022399902, -0.004310608, -0.021820068, -0.05291748, 0.033447266, -0.034454346, 0.03704834, 0.015823364, 0.008262634, -0.018478394, 0.0418396, 0.0005016327, 0.0032253265, 0.0309906, 0.02368164, 0.047607422, -0.003698349, -0.035217285, 0.0064086914, 0.03111267, -0.025619507, 0.013153076, -0.04083252, -0.016296387, 0.015945435, -0.009262085, 0.010177612, -0.018981934, -0.022827148, 0.0003402233, 0.012207031, -0.00434494, 0.064331055, 0.024841309, -0.008552551, -0.038604736, -0.0060577393, 0.033294678, -0.03741455, 0.02458191, -0.043426514, -0.01449585, -0.014724731, -0.022537231, -0.03781128, -0.055480957, -0.05596924, 0.056030273, -0.038360596, -0.030685425, -0.012428284, 0.0043792725, 0.008796692, -0.07122803, -0.025543213, -0.020614624, 0.028457642, -0.00018918514, 0.06237793, -0.043640137, -0.041381836, -0.08453369, 0.011016846, -0.12335205, -0.0055389404, -0.0082473755, -0.021621704, -0.029205322, -0.031829834, -0.0018997192, 0.09210205, 0.013900757, -0.005153656, 0.008544922, -0.039215088, -0.010322571, -0.0046806335, 0.006465912, -0.042633057, -0.03302002, 0.016830444, -0.0262146, 0.0423584, 0.0104904175, 0.0057678223, -0.01449585, -0.014480591, -0.03439331, -0.04083252, -0.00034618378, -0.015266418, 0.047088623, 0.0008559227, -0.034118652, 0.07507324, 0.018798828, 0.00016009808, 0.025314331, 0.043792725, 0.0024261475, -0.04168701, -0.034362793, -0.0390625, -0.018844604, 0.04269409, -0.018753052, -0.026306152, 0.01398468, -0.0023956299, -0.0146102905, 0.019607544, 0.039733887, -0.05053711, -0.0030212402, -0.0063171387, -0.013465881, -0.0107040405, -0.0005979538, 0.0005412102, -0.02180481, 0.0020313263, -0.010467529, 0.014343262, -0.018875122, 0.004714966, -0.0079193115, 0.015357971, 0.0029525757, 0.012168884, 0.021636963, -0.058441162, 0.03189087, 0.02130127, 0.013832092, -0.027526855, 0.018310547, -0.028823853, -0.03326416, 0.026794434, 0.011909485, 0.034057617, -0.019973755, 0.040618896, 0.01550293, 0.06573486, -0.035980225, -0.059692383, -0.07385254, 0.026123047, 0.036010742, -0.015029907, 0.07183838, 0.002357483, 0.013420105, -0.018341064, 0.016311646, -0.036376953, 0.015655518, 0.029266357, 0.0015354156, 0.027999878]}, "B07T6SH2Q3": {"id": "B07T6SH2Q3", "original": "Brand: TUYU\nName: RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)\nDescription: \nFeatures: FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer.\nHeavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions.\nCustom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover.\nConvenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank.\nGuarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.\n", "metadata": {"Name": "RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)", "Brand": "TUYU", "Description": "", "Features": "FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer.\nHeavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions.\nCustom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover.\nConvenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank.\nGuarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0001449585, -0.029281616, -0.027374268, -0.04147339, -0.018447876, -0.0032482147, -0.013847351, 0.035186768, -0.05633545, -0.024032593, -0.034973145, 0.017791748, -0.047454834, -0.032714844, 0.06378174, -0.074157715, 0.023422241, -0.0016269684, -0.0085372925, -0.04309082, -0.011772156, -0.04095459, 0.025924683, 0.08190918, 0.018692017, -0.034942627, 0.0007739067, -0.013580322, 0.007095337, -0.015296936, 0.021347046, 0.03250122, 0.030761719, -0.01399231, 0.027404785, 0.01020813, 0.010498047, -0.006427765, -0.0038604736, 0.01411438, -0.016906738, 0.005619049, 0.031982422, -0.006477356, 0.011581421, -0.05130005, 0.04421997, -0.037902832, 0.029434204, -0.006515503, -0.023086548, 0.010215759, -0.027755737, -0.024871826, -0.006122589, 0.021377563, 0.023040771, -0.04043579, 0.009010315, -0.020004272, 0.009269714, 0.017303467, 0.03353882, 0.041015625, -0.04724121, 0.016708374, 0.041778564, -0.030044556, 0.023345947, -0.021774292, 0.0010919571, 0.017944336, 0.038909912, -0.009353638, -0.054870605, -0.007904053, 0.0056152344, 0.0071640015, 0.020217896, -0.03338623, -0.006088257, -0.042541504, 0.037109375, -0.01878357, -0.0075035095, -0.0066070557, -0.0015687943, 0.006175995, -0.014137268, 0.0036830902, -0.016357422, -0.0152282715, -0.0032730103, 0.018112183, -0.023406982, -0.0082473755, -0.030563354, -0.033233643, 0.029251099, 0.024932861, 0.005886078, -0.030548096, 0.038848877, -0.017730713, -0.0011711121, 0.023849487, -0.0025024414, 0.010131836, 0.036071777, 0.012489319, -0.021560669, 0.035369873, -0.00080633163, -0.016311646, 0.0020217896, 0.024612427, -0.026000977, 0.04458618, 0.010513306, 0.021759033, -0.04168701, -0.024307251, -0.040100098, 0.0025596619, 0.017791748, -0.007347107, -0.014808655, 0.06890869, -0.051940918, 0.037261963, -0.009048462, -0.028213501, -0.0259552, 0.07299805, 0.019821167, -0.013038635, 0.034576416, -0.006996155, -0.00806427, 0.011741638, -0.03289795, 0.013389587, 0.043762207, -0.044647217, -0.064575195, 0.05496216, 0.020584106, -0.021697998, -0.022338867, -0.082458496, -0.036102295, -0.040740967, 0.04095459, 0.016616821, -0.044555664, 0.010772705, 0.016082764, -0.009757996, -0.046203613, -0.05279541, -0.032348633, -0.026290894, -0.027389526, 0.004135132, -0.014480591, 0.04586792, 0.029510498, 0.007713318, 0.0178833, 0.03503418, 0.020996094, 0.02659607, -0.00060510635, 0.006538391, 0.005393982, -0.037017822, -0.013534546, 0.09460449, 0.06817627, -0.1385498, -0.080444336, -0.07318115, 0.13085938, -0.041503906, -0.0040779114, -0.034057617, -0.009353638, -0.03149414, 0.046813965, 0.0025901794, -0.012008667, 0.004650116, 0.011062622, -0.035614014, 0.017959595, 0.014762878, -0.010238647, 0.018035889, -0.004333496, -0.024383545, -0.0025081635, 0.019332886, -0.014671326, 0.015350342, -0.0021095276, -0.019714355, 0.015007019, 0.008430481, -0.027923584, 0.025054932, 0.024795532, 0.015281677, -0.009902954, -0.043670654, 0.009300232, 0.009849548, -0.0035743713, 0.024307251, -0.0184021, 0.011184692, 0.015350342, -0.03778076, 0.0124053955, 0.05117798, -0.012504578, -0.0070114136, -0.021713257, 0.0015630722, 0.005306244, -0.017715454, 0.07525635, 0.039123535, 0.045410156, 0.013877869, -0.0368042, 0.024810791, 0.033477783, 0.00504303, -0.02229309, 0.025360107, 0.008377075, -0.017684937, -0.021743774, 0.01436615, -0.02720642, -0.049743652, 0.0015945435, 0.012825012, -0.017562866, 0.016296387, 0.07330322, -0.013290405, -0.0011672974, 0.006362915, -0.013702393, 0.0066223145, -0.03942871, 0.012802124, -0.003583908, 0.006816864, -0.009338379, 0.015777588, 0.03945923, -0.008155823, -0.0076560974, -0.022079468, 0.034698486, 0.02810669, 0.010261536, -0.034851074, 0.0004413128, 0.026046753, 0.0055160522, 0.024230957, -0.0657959, 0.014213562, -0.017623901, 0.016937256, -0.0046653748, 0.0017223358, -0.015220642, -0.006122589, 0.0072364807, -0.009803772, 0.043914795, 0.008148193, 0.011634827, -0.026794434, -0.011764526, 0.0021953583, 0.020431519, 0.021408081, 0.00031280518, -0.014022827, 0.05307007, -0.015182495, 0.04699707, -0.029663086, 0.045410156, -0.0143966675, -0.01096344, 0.054870605, -0.011482239, 0.015464783, 0.0038433075, 0.008102417, -0.001493454, 0.0077590942, 0.0017900467, -0.021530151, -0.0071029663, 0.005290985, 0.00042653084, -0.022781372, 0.04168701, 0.02861023, 0.0036830902, 0.024749756, 0.07116699, 0.07751465, 0.00090169907, 0.03137207, -0.0057907104, 0.01890564, 0.03475952, -0.030075073, -0.0010261536, -0.008857727, -0.037200928, -0.0066070557, 0.016693115, -0.045898438, -0.015777588, 0.010116577, 0.0095825195, 0.004261017, 0.0028190613, 0.040222168, 0.0025310516, -0.050476074, 0.01071167, 0.005710602, 0.008995056, 0.0345459, -0.04486084, -0.032318115, 0.056671143, -0.008201599, -0.026870728, 0.0037765503, 0.0395813, -0.020736694, -0.021697998, -0.037139893, -0.011650085, 0.010421753, -0.006866455, -0.03652954, 0.016983032, -0.06463623, 0.016708374, -0.06048584, -0.055023193, -0.033203125, 0.081848145, 0.0039367676, -0.07476807, -0.043426514, 0.04196167, 0.025009155, -0.0014696121, 0.027297974, -0.06137085, -0.014877319, 0.009979248, -0.0102005005, 0.018218994, -0.034484863, 0.021270752, 0.007144928, 0.0038414001, 0.009239197, 0.009544373, 0.035003662, -0.0058288574, 0.038482666, 0.08123779, 0.061767578, 0.008399963, -0.031555176, 0.017303467, 0.07287598, 0.0051498413, -0.012382507, -0.0070762634, -0.0022392273, -0.014572144, 0.028442383, -0.03805542, -0.010169983, -0.03994751, 0.008094788, 0.0116119385, -0.028945923, -0.0073547363, -0.05316162, -0.025802612, -0.03289795, 0.031036377, 0.017196655, -0.031799316, 0.023864746, -0.037322998, 0.017105103, -0.021606445, 0.016525269, 0.023925781, 0.0065574646, -0.031707764, -0.012435913, 0.03930664, -0.033935547, 0.037384033, 0.037200928, -0.033691406, -0.024398804, 0.01322937, 0.015144348, 0.007972717, 0.042785645, -0.01727295, -0.0025138855, -0.03933716, -0.023025513, -0.01890564, -0.014953613, 0.015464783, -0.043426514, 0.027801514, -0.023468018, -0.038269043, -0.010688782, 0.051574707, 0.014541626, 0.014549255, -0.008972168, -0.00043845177, 0.0030994415, -0.0018787384, 0.02017212, -0.00919342, 0.017913818, 0.0074157715, 0.0031433105, -0.0259552, -0.005207062, -0.0016183853, 0.034942627, -0.024124146, 0.014198303, 0.012756348, -0.014129639, 0.014045715, -0.017303467, -0.0044174194, -0.027053833, 0.048858643, 0.0006804466, 0.0067214966, -0.008033752, -0.016403198, 0.03062439, 0.011695862, -0.019638062, 0.017730713, 0.0012817383, -0.0047454834, -0.015533447, 0.0063095093, -0.019515991, -0.062683105, 0.0018434525, -0.1015625, 0.08703613, 0.049560547, -0.032562256, 0.10369873, 0.08728027, -0.013473511, 0.03375244, 0.048675537, -0.012374878, 0.019897461, 0.024642944, -0.037902832, 0.005050659, -0.0011730194, -0.053222656, 0.030792236, 0.016021729, 0.00033783913, 0.0052871704, -0.008956909, -0.025756836, -0.018753052, -0.013320923, -0.001033783, -0.0071525574, 0.01008606, -0.026519775, -0.012054443, -0.01864624, 0.001783371, 0.012901306, -0.012504578, 0.021499634, -0.0011510849, 0.0032043457, -0.0007634163, -0.016036987, -0.028198242, 0.0058517456, 0.023361206, 0.04647827, -0.028717041, -0.01600647, 0.007369995, 0.0059776306, -0.025253296, 0.00070905685, 0.011528015, 0.016311646, -0.0028324127, -0.028701782, 0.043548584, 0.00018751621, -0.006462097, 0.0004734993, -0.022247314, -0.040618896, 0.003168106, 0.08074951, 0.044647217, -0.0017557144, -0.02218628, -0.023971558, -0.051513672, 0.01209259, -0.06097412, 0.010108948, -0.012527466, -0.013664246, -0.07373047, -0.05166626, -0.02166748, 0.015014648, -0.011253357, -0.005317688, -0.013435364, 0.016204834, -0.016159058, 0.046417236, -0.041229248, -0.031234741, 0.006542206, 0.017990112, -0.009017944, -0.02609253, 0.029632568, -0.025665283, -0.024551392, -0.022735596, -0.0010089874, -0.03125, -0.0029277802, -0.006084442, -0.005104065, -0.004638672, 0.014724731, 0.021499634, -0.039978027, 0.048339844, 0.02331543, 0.024032593, -0.06774902, -0.004257202, 0.057128906, -0.032165527, -0.043426514, -0.024765015, 0.067993164, -0.002702713, -0.020080566, -0.017532349, 0.03765869, 0.025817871, 0.012397766, -0.04473877, 3.8802624e-05, 0.016235352, -0.043304443, -0.027664185, -0.011505127, -0.02810669, 0.085754395, 0.0036354065, -0.040222168, -0.00995636, 0.012138367, 0.054870605, -0.020309448, 0.026565552, -0.036865234, -0.015670776, 0.004432678, -0.007873535, -0.0791626, 0.08831787, 0.045654297, 0.0071258545, 0.012680054, -0.02293396, -0.009750366, -0.04055786, -0.037628174, -0.03955078, 0.06744385, -0.00093364716, -0.026885986, 0.026138306, -0.0057411194, 0.017288208, -0.015235901, -0.060516357, 0.003528595, 0.057281494, -0.0005631447, -0.006954193, -0.03262329, 0.00086307526, 0.027618408, -0.018218994, -0.011856079, -0.0262146, -0.014923096, -0.020996094, -0.0013370514, 0.034179688, -0.028259277, 0.005897522, 0.005622864, 0.016494751, -0.06500244, 0.057891846, 0.044677734, 0.04736328, -0.021224976, 0.0054779053, 0.0037212372, -0.015388489, -0.027267456, 0.026779175, 0.0046424866, -0.0019521713, 0.044158936, 0.022628784, -0.003288269, 0.013000488, -0.002954483, 0.02923584, -0.018173218, -0.058135986, -0.0012483597, 0.03491211, 0.030090332, -0.08111572, 0.045898438, -0.009796143, -0.056671143, -0.034729004, 0.014480591, -0.033477783, -0.011962891, -0.041870117, 0.0042037964, 0.019607544, -0.045410156, 0.014320374, 0.0029468536, 0.07293701, -0.023895264, 0.02720642, 0.02949524, 0.0084991455, -0.085876465, -0.002439499, -0.03567505, 0.0073509216, -0.013168335, -0.0025634766, -0.0019016266, 0.0049209595, -0.009239197, -0.02406311, 0.00680542, -0.015777588, -0.032165527, -0.03125, 0.0068473816, 0.016159058, -0.028869629, -0.002603531, -0.006958008, 0.014167786, -0.076538086, -0.028869629, -0.005619049, 0.022659302, 0.013221741, 0.057891846, -0.03265381, -0.045318604, -0.025390625, 0.013046265, 0.026641846, -0.058166504, -0.056274414, -0.039978027, 0.013046265, 0.022140503, 0.0006432533, 0.030288696, 0.01890564, -0.010826111, -0.003271103, -0.024093628, 0.017349243, -0.0062942505, -0.028518677, 0.055236816, 0.06286621, -0.009422302, 0.022644043, 0.002450943, -0.023635864, 0.011878967, 0.002817154, -0.093811035, -0.0014724731, -0.007156372, 0.01158905, -0.019866943, -0.008956909, -0.027542114, 0.032684326, -0.03744507, -0.0037174225, -0.028961182, 0.006839752, -0.017364502, -0.03567505, 0.016098022, -0.02748108, 0.00051164627, -0.030731201, -0.02458191, -0.06390381, -0.035095215, -0.013549805, 0.006690979, 0.0034866333, 0.007835388, -0.018753052, -0.017562866, 0.002090454, 0.02217102, 0.0023593903, -0.019897461, 0.025222778, 0.028396606, -0.0074424744, 0.006034851, -0.030059814, 0.00037908554, -2.7060509e-05, -0.007675171, 0.005432129, -0.006389618, -0.053741455, -0.070617676, 0.06756592, 0.04840088, 0.007843018, -0.039367676, 0.026016235, 0.014015198, -0.035888672, -0.021392822, 0.009689331, -0.018981934, 0.035705566, -0.041046143, 0.023239136, 0.008079529, -0.020553589, -0.014442444, -0.031311035, 0.06878662, -0.03970337, 0.030029297, 0.0063056946, -0.0069007874, 0.028396606, -0.013145447, 0.038208008, -0.017227173, -0.007686615, 0.018341064, -0.029266357, -0.060699463, 0.016738892, 0.022323608, -0.03451538, 0.030761719, 0.0135650635, -0.008087158, -0.01914978, -0.0206604, 0.048919678, -0.024017334, -0.039093018, 0.004070282, -0.04031372, -0.022201538, 0.00806427, 0.043121338, -0.012954712, 0.03640747, -0.010536194, 0.031097412, -0.012229919, -0.022079468, 0.0041542053, -0.035888672, 0.053466797, -0.00579834, -0.022216797, -0.009475708, -0.014831543, 0.020721436, 0.025009155, -0.0014886856, 0.024765015, -0.040374756, 0.012367249, 0.01902771, 0.0019083023, -0.03555298, -0.03753662, 0.019165039, 0.028167725, -0.03161621, -0.01651001, -0.02734375, 0.014350891, -0.008094788, -0.072387695, 0.04043579, -0.06878662, 0.032592773, 0.017028809, 0.050048828, -0.07006836, -0.0317688, -0.010971069, -0.0041770935, -0.006099701, 0.07208252, -0.0054626465, 0.059143066, -0.01878357, 0.003227234, 0.023086548, -0.02368164, 0.017105103, -0.0070266724, -0.007572174, 0.014274597, -0.010826111, -0.02418518, -0.027267456, 0.029403687, 0.026916504, 0.016174316, 0.004295349, -0.009597778, -0.0011320114, 0.014457703, -0.018035889, 0.008506775, -0.0038928986, -0.03277588, 0.00058221817, 0.0043792725, 0.019210815, -0.049713135, -0.052581787, -0.031463623, -0.04937744, -0.055236816, 0.061828613, -0.031143188, -0.04006958, -0.00982666, 0.025115967, -0.0079574585, -0.061035156, -0.032928467, -0.00504303, -0.0011911392, 0.0051078796, 0.045776367, -0.0025024414, -0.07281494, -0.07739258, 0.007789612, -0.023544312, 0.0008149147, -0.012580872, 0.011520386, 0.025558472, 0.00818634, 0.034698486, 0.06878662, 0.026351929, 0.008102417, 0.021072388, -0.06173706, -0.036956787, 0.05923462, 0.017150879, -0.044677734, -0.028533936, 0.030563354, -0.011260986, 0.0049819946, 0.005138397, 0.0026664734, -0.044158936, 0.0054397583, -0.017852783, -0.023864746, -0.009788513, -0.00014412403, 0.027908325, 0.03945923, -0.011924744, 0.012619019, 0.0059051514, -0.0032367706, 0.023620605, -0.006580353, 0.020736694, 0.007194519, -0.008033752, -0.052825928, -0.00932312, 0.000992775, -0.0063209534, -0.053375244, -0.021835327, 0.04083252, 0.0037956238, -0.036102295, 0.028167725, 0.06488037, -0.0030059814, 0.01197052, -0.010299683, -0.030136108, -0.0038051605, -0.015388489, -0.011116028, -0.06451416, 0.0053367615, 0.05581665, -0.042114258, -0.007331848, -0.0026474, -0.003929138, 0.0077438354, -0.0052337646, -0.07751465, -0.051208496, 0.042175293, 0.05859375, -0.03024292, -0.031707764, -0.009140015, 0.035491943, 0.0030555725, 0.00059461594, -0.009216309, -0.0021419525, 0.014549255, 0.011451721, -0.012649536, 0.06896973, -0.03475952, -0.07519531, -0.054870605, 0.008758545, 0.014892578, 0.00019788742, 0.042114258, 0.020446777, 0.0070266724, 0.0435791, -0.021240234, -0.046569824, 0.024276733, 0.05404663, 0.031829834, 0.021392822]}, "B07HJY1Z4B": {"id": "B07HJY1Z4B", "original": "Brand: Backyard BBQ Unlimited\nName: Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt\nDescription: \nFeatures: Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped\nOur sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You're Going To Want More. Great for the restaurant owner of grill master of the family.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "metadata": {"Name": "Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt", "Brand": "Backyard BBQ Unlimited", "Description": "", "Features": "Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped\nOur sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You're Going To Want More. Great for the restaurant owner of grill master of the family.\nLightweight, Classic fit, Double-needle sleeve and bottom hem", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.028411865, 0.031585693, -0.06976318, -0.020645142, 0.020965576, -0.030929565, 0.0135269165, -0.0068855286, -0.017089844, -0.0071411133, -0.015037537, 0.012466431, -0.055755615, -0.017425537, 0.0137786865, -0.07220459, 0.01953125, 0.04888916, 0.024475098, -0.010391235, 0.0065956116, 0.0054092407, -0.05114746, 0.032287598, 0.022399902, -0.0034561157, 0.072265625, -0.03692627, 0.02180481, -0.010803223, 0.030044556, -0.020492554, 0.031204224, -0.01927185, -0.010971069, -0.08300781, 0.002544403, -0.025558472, -0.039093018, 0.025909424, 0.0052337646, 0.006565094, -0.05215454, 0.018737793, -0.057495117, -0.04562378, 0.006576538, -0.00096035004, 0.008987427, 0.018127441, 0.038208008, -0.026870728, 0.013725281, 0.009277344, -0.011619568, 0.016021729, -0.021072388, 0.03363037, 0.023712158, 0.0016651154, -0.0181427, 0.021347046, 0.020401001, -0.00031161308, 0.0074157715, -0.015823364, 0.072387695, 0.023132324, -0.046844482, -0.03591919, 0.03869629, -0.0038013458, 0.014640808, -0.031555176, 0.002199173, 0.027908325, -0.008300781, 0.008682251, 0.018371582, 0.0052948, -0.021118164, -0.03729248, -0.01360321, 0.023986816, -0.044921875, 0.019363403, -0.012176514, -0.0045928955, -0.008331299, 0.012229919, -0.02961731, 0.040039062, -0.001159668, 0.036224365, -0.025512695, 0.022872925, -0.03262329, 0.0040512085, -0.028930664, 0.0066871643, -0.019073486, 0.008888245, -0.034729004, -0.00881958, 0.009613037, 0.04711914, -0.0033683777, 0.002735138, 0.02104187, -0.0042037964, 0.00019419193, -0.0113220215, 0.009529114, -0.007083893, -0.023086548, -0.013069153, -0.013999939, 0.0052108765, 0.010505676, -0.007106781, -0.016693115, 0.0099105835, 0.0009860992, 0.034851074, 0.029663086, 0.04168701, 0.01272583, -0.009376526, -0.04623413, 0.011398315, 0.0025100708, 0.0075302124, -0.020446777, 0.044281006, -0.024169922, -0.0067367554, 0.003030777, -0.020767212, -0.030715942, 0.007247925, -0.041259766, -0.010978699, 0.04486084, -0.068847656, -0.031555176, 0.017318726, 0.039794922, 0.0054092407, -0.033447266, -0.0692749, 0.01914978, -0.020629883, 0.034454346, 0.018798828, -0.03427124, -0.0206604, -0.011070251, -0.011192322, -0.0057792664, -0.022094727, -0.029327393, -0.014633179, 0.002527237, 0.003704071, 0.028793335, 0.0017194748, 0.027389526, 0.033203125, 0.012908936, 0.0066986084, -0.016326904, -0.009162903, 0.030441284, -0.0044517517, -0.020355225, 0.0034389496, 0.022399902, 0.049804688, 0.052978516, -0.06726074, -0.041748047, -0.050994873, 0.13195801, -0.059143066, 0.021469116, -0.040771484, 0.027618408, 0.0284729, -0.00063705444, 0.03186035, -0.020187378, -0.03463745, -0.014976501, 0.03250122, -0.0052452087, -0.0029411316, -0.05645752, 0.026855469, -0.034729004, -0.057128906, -0.014160156, 0.0008049011, 0.005870819, -0.023040771, -0.044891357, 0.015541077, -0.02330017, 0.05456543, 0.0236969, 0.01940918, -0.01335144, -0.026855469, 0.037200928, -0.08013916, -0.044555664, -0.023925781, -0.009063721, 0.008079529, 0.0073127747, 0.037597656, -0.006641388, 0.01876831, -0.024291992, -0.0046844482, 0.018356323, -0.018310547, -0.035125732, -0.0075645447, -0.032714844, 0.015808105, -0.07562256, 0.037261963, 0.03515625, 0.036315918, -0.025848389, 0.04953003, 0.029525757, 0.05407715, -0.01637268, -0.017654419, 0.006210327, -0.009284973, -0.025817871, 0.042175293, -0.021575928, 0.012527466, 0.024368286, 0.013015747, 0.0027275085, 0.0592041, 0.0061073303, 0.0025939941, -0.0039978027, -0.047058105, -0.014091492, 0.030639648, -0.04611206, 0.01675415, -0.0413208, 0.020202637, -0.012031555, 0.01360321, 0.053222656, -0.021316528, -0.001282692, -0.019561768, -0.0008292198, -0.023162842, -0.020126343, -0.010948181, 0.035217285, -0.02658081, -0.0022678375, 0.018829346, 0.023864746, -0.05923462, -0.009765625, 0.0012435913, -0.00187397, -0.0024166107, 0.00067281723, -0.027038574, 0.005870819, 0.0009484291, 0.041381836, 0.003818512, 0.038116455, 0.024047852, -0.04949951, -0.017929077, -0.002368927, 0.0345459, -0.026565552, 0.020019531, -0.011894226, -0.0009088516, -0.00381279, 0.0055122375, -0.0012083054, 0.004436493, -0.034240723, 0.04348755, 0.009147644, -0.012741089, 0.0005187988, -0.026290894, -0.02748108, 0.010154724, 0.0051956177, -0.016311646, -0.0037441254, 0.072509766, 0.034698486, -0.0073013306, 0.08465576, 0.031951904, 0.064697266, 0.05392456, 0.08502197, 0.014305115, 0.0014715195, 0.039916992, -0.036346436, -0.03427124, 0.01928711, 0.0066871643, -0.06695557, -0.011543274, -0.0007338524, -0.0051727295, 0.027008057, -0.013641357, -8.749962e-05, -0.048828125, 0.016098022, -0.008415222, -0.019195557, 0.024398804, -0.0061683655, -0.030548096, 0.00079774857, -0.0107421875, 0.02519226, -0.0032100677, -0.018676758, 0.012054443, 0.019958496, 0.018249512, 0.006832123, 0.020553589, -0.02772522, -0.031173706, 0.0046043396, 0.0030612946, 0.011436462, 0.002073288, -0.033966064, -0.026290894, -0.03387451, -0.06774902, -0.044006348, 0.039367676, -0.018920898, -0.016403198, -0.01902771, -0.030517578, -0.0028877258, 0.015686035, 0.031143188, 0.007843018, 0.009796143, 0.0256958, 0.010124207, -0.026443481, 0.011360168, -0.06665039, -0.01486969, -0.043884277, 0.027633667, -0.014968872, 0.0043182373, 0.01802063, 0.015571594, 0.0013885498, 0.032104492, 0.024002075, 0.032714844, 0.061645508, 7.408857e-05, -0.033477783, -0.015296936, 0.044769287, -0.02960205, -0.0067214966, 0.0137786865, 0.0061187744, 0.013633728, -0.000107586384, -0.0541687, -0.0206604, -0.026046753, 0.021408081, -0.00932312, -0.013931274, -0.015296936, -0.008491516, -0.020721436, -0.035491943, -0.017242432, 0.04058838, -0.008621216, 0.026687622, -0.03475952, 0.045928955, 0.00070619583, -0.035308838, 0.0423584, 0.014785767, -0.0052261353, -0.06732178, 0.014625549, -0.03930664, 0.0020198822, -0.026870728, -0.04574585, 0.008926392, -0.010864258, 0.057525635, -0.061706543, -0.018569946, -0.01259613, -0.057647705, -0.018081665, 0.010169983, -0.017333984, 0.032226562, 0.013595581, -0.019180298, 0.052642822, -0.050811768, 0.01007843, -0.024398804, -0.060180664, -0.0025482178, 0.0023937225, -0.039031982, -0.0446167, -0.02848816, -0.02355957, -0.06072998, -0.0041046143, 0.02166748, 0.036499023, 0.011528015, 0.008453369, 0.023025513, 0.021026611, 0.036010742, 0.021362305, 0.0071487427, -0.010368347, -0.03164673, 0.021728516, 0.010627747, 0.03955078, -0.09436035, 0.11199951, -0.019256592, 0.023254395, 0.02230835, -0.028274536, 0.0079422, -0.012748718, -0.011245728, 0.007297516, -0.014801025, 0.015365601, 0.026260376, -0.0041770935, -0.032348633, -0.026351929, 0.00077581406, -0.007698059, 0.04916382, 0.037902832, -1.2874603e-05, 0.044891357, 0.01763916, -0.016479492, 0.0028591156, 0.025741577, -0.05038452, 0.018463135, -0.03338623, -0.047698975, -0.026428223, 0.009559631, 0.01725769, 0.059051514, 0.03894043, -0.07525635, 0.03173828, 0.021194458, -0.0602417, 0.02130127, -0.016174316, 0.030166626, 0.035583496, 0.053375244, 0.036865234, 0.050811768, 0.039855957, 0.053527832, 0.0016717911, -0.009429932, -0.00472641, -0.0055618286, 0.015365601, -0.04043579, 0.0001282692, 0.020874023, 0.026107788, -0.005592346, 0.02154541, 0.030456543, -0.008117676, -0.025939941, -0.005130768, 0.012084961, 0.03692627, -0.016494751, -0.018920898, 0.012184143, 0.0060424805, 0.034820557, -0.0357666, -0.03793335, -0.033416748, -0.042022705, -0.023712158, 0.010795593, -0.02607727, -0.030075073, 0.023635864, 0.020126343, -0.049224854, -0.0016803741, 0.02017212, -0.042938232, 0.015274048, -0.02746582, -0.013053894, -0.07720947, 0.017349243, 0.017547607, -0.079956055, -0.101745605, 0.019439697, -0.013015747, 0.0018196106, -0.005130768, -0.022827148, -0.048797607, 0.027404785, -0.041412354, -0.024978638, 0.09869385, 0.03894043, 0.012550354, -0.018463135, -0.04562378, -0.020339966, 0.024551392, -0.0035476685, 0.008972168, -0.002811432, -0.026535034, 0.003025055, -0.01146698, 0.055145264, 0.00055360794, 0.06878662, -0.031799316, 0.00919342, -0.04272461, -0.018798828, 0.024917603, -0.087646484, -0.045898438, -0.022338867, 0.08074951, 0.003211975, -0.005558014, -0.033416748, -0.012435913, -0.0009994507, 0.009666443, 0.036865234, 0.07476807, 0.0047302246, -0.0078125, 0.013908386, 0.0046806335, -0.0025901794, 0.047729492, 0.048675537, -0.0002515316, 0.048950195, -0.051116943, -0.0496521, 0.026138306, 0.017059326, -0.004878998, -0.0040512085, -0.041137695, 0.043823242, -0.043762207, 0.07550049, 0.06713867, -0.011390686, 0.0042915344, 0.026168823, -0.020843506, -0.054901123, 0.030227661, -0.031158447, -0.036193848, -0.04159546, -0.020812988, -0.006614685, -0.0440979, -0.004261017, -0.0030994415, -0.022781372, 0.030563354, 0.009887695, 0.007461548, -0.022232056, -0.013687134, 0.061035156, 0.03427124, 0.044433594, 0.020568848, -0.022140503, 0.021057129, 0.011123657, 0.019104004, -0.0034484863, -0.032928467, -0.027160645, -0.003736496, 0.00091409683, -0.055664062, 0.004234314, 0.043701172, -0.05734253, 0.0021305084, 0.038330078, -0.025543213, 0.04336548, 0.03149414, 0.072143555, -0.07128906, 0.043273926, 0.054473877, -0.0030593872, -0.025161743, 0.0053710938, -0.016052246, 0.039123535, -0.0034389496, -0.08270264, 0.027542114, -0.01322937, 0.00793457, 0.014213562, 0.0055656433, 0.01171875, 0.0049934387, -0.034973145, 0.0007863045, -0.058044434, -0.00623703, -0.0060539246, -0.004535675, 0.03164673, -0.0051879883, -0.012573242, 0.010147095, 0.028305054, -0.042175293, -0.010414124, 0.014213562, -0.0075531006, -0.001578331, 0.020309448, -0.019622803, -0.004333496, 0.007820129, -0.026275635, -0.024108887, 0.016967773, -0.0053901672, -0.0042266846, -0.010299683, -0.0021781921, -0.033081055, -0.02305603, -0.022659302, -0.0040664673, -0.04260254, 0.009483337, -0.034362793, -0.015022278, -0.015960693, -0.0006709099, 0.02722168, -0.017044067, 0.001909256, 0.042114258, -0.017349243, 0.03741455, 0.026046753, 0.0061836243, 0.025100708, 0.04095459, -0.067871094, 0.021316528, -0.0126953125, -0.005378723, -0.039276123, -0.036071777, 0.046966553, -0.047180176, -0.041748047, -0.03665161, 0.009216309, 0.004283905, -0.013298035, 0.02394104, 0.032226562, -0.010917664, 0.01737976, -0.0016422272, -0.04055786, 0.019729614, 0.00064754486, -0.00085639954, -0.0037345886, -0.027496338, 0.002796173, 0.012634277, 0.05731201, 0.012397766, 0.045196533, -0.0061302185, -0.07122803, -0.023101807, 0.07055664, -0.0033550262, -0.01159668, 0.03173828, -0.011764526, -0.039916992, -0.01663208, -0.044891357, -0.057800293, 0.018096924, 0.06121826, 0.057739258, 0.023406982, -0.039520264, 0.02897644, 0.07385254, -0.079711914, 0.111083984, -0.025344849, 0.002626419, -0.005844116, 0.016464233, 0.016052246, 0.03189087, -0.0037651062, -0.00057315826, 0.025619507, 0.0071372986, 0.040985107, -0.04638672, 0.015960693, -0.011581421, 0.008842468, 0.0067749023, -0.002149582, 0.028808594, -0.008895874, -0.013153076, -0.015510559, -0.0015983582, 0.014503479, -0.035369873, -0.029388428, -0.022079468, 0.0038490295, 0.0016975403, -0.010108948, 0.0048103333, 0.04046631, -0.014472961, 0.014183044, 0.024353027, 0.0060577393, 0.011886597, -0.021026611, -0.05444336, -0.013122559, 0.012969971, 0.014625549, -0.020614624, -0.0021076202, -0.003818512, 0.033477783, 0.040130615, 0.011329651, 0.0013847351, -0.0069236755, 0.028640747, -0.008430481, -0.037719727, 0.027755737, -0.013427734, 0.016311646, 0.0141067505, -0.02319336, -0.025344849, -0.011985779, 0.049224854, -0.011856079, 0.08404541, -0.06298828, 0.015792847, -0.029388428, -0.016540527, -0.027130127, -0.02029419, 0.0113220215, -0.015068054, -0.022079468, 0.015594482, -0.059448242, 0.020996094, 0.04119873, 0.0013532639, 0.015457153, 0.008926392, 0.019348145, -0.021881104, 0.03527832, -0.017807007, -0.013893127, -0.011314392, -0.003025055, 0.013061523, 0.012954712, -0.009506226, -0.0007739067, 0.034179688, 0.008216858, 0.03201294, 0.019561768, 0.04220581, 0.03677368, -0.021820068, -0.010383606, 0.021514893, 0.0028629303, 0.043151855, 0.007156372, 0.041046143, 0.023727417, 0.041656494, -0.028701782, 0.001789093, 0.032318115, 0.028427124, 0.023788452, -0.072753906, 0.00274086, -0.022415161, -0.026306152, -0.015838623, -0.028381348, -0.0017490387, 0.017318726, 0.011962891, 0.014717102, 0.014755249, -0.0077934265, 0.005756378, -0.010612488, -0.005393982, -0.008895874, 0.0013027191, 0.005947113, -0.03552246, -0.04827881, 0.023773193, 0.032348633, -0.007507324, -0.0096588135, -0.042999268, -0.00623703, -0.020721436, -0.001742363, -0.019607544, -0.021316528, 0.03704834, 8.648634e-05, 0.011619568, 0.040527344, 0.033477783, -0.010498047, 0.061828613, -0.0005197525, -0.09838867, -0.07495117, 0.051757812, -0.07147217, 0.008293152, -0.008079529, 0.023254395, 0.032836914, -0.013511658, -0.020812988, 0.074157715, -0.0019254684, -0.0047721863, 0.01399231, -0.009391785, -0.025482178, 0.02859497, 0.026031494, -0.021102905, -0.015365601, 0.013786316, -0.013404846, 0.06036377, 0.029220581, -0.02720642, -0.00057411194, -0.021377563, -0.032714844, -0.021255493, -0.017822266, -0.011482239, 0.0023097992, -0.020050049, -0.04562378, -0.047576904, 0.016693115, 0.034179688, 0.0013284683, 0.032562256, -0.00076675415, -0.038238525, -0.0058059692, -0.0061302185, -0.0059127808, 0.02720642, 0.013969421, -0.02218628, 0.038146973, 0.028152466, -0.017044067, 0.0038890839, 0.029586792, -0.0002501011, -0.05645752, -0.003583908, 0.019348145, -0.07196045, 0.049224854, -0.010856628, -0.042785645, 0.008544922, -0.00409317, 0.09185791, -0.053253174, -0.01448822, -0.0013484955, 0.017181396, 0.051605225, -0.053100586, 0.010978699, -0.014785767, -0.024978638, 0.011955261, -0.00932312, 0.06088257, -0.023605347, -0.03086853, -0.040740967, 0.018249512, 0.017623901, 0.020324707, -0.017669678, 0.041900635, 0.021484375, 0.046295166, -0.03677368, -0.070251465, -0.056671143, 0.03326416, 0.0074882507, 0.004459381, 0.03527832, -0.004032135, 0.022491455, 0.008232117, 0.032836914, -0.018585205, 0.011581421, 0.029647827, 0.0029678345, 0.0096206665]}, "B08MQRP2DT": {"id": "B08MQRP2DT", "original": "Brand: Western Wood\nName: Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag\nDescription: Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.\nFeatures: Variety 6 Pack of Smoking Chips\nTry Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs.\nUse with gas grills, electric smokers, griddles, kettle grills and ceramic grills\n", "metadata": {"Name": "Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag", "Brand": "Western Wood", "Description": "Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.", "Features": "Variety 6 Pack of Smoking Chips\nTry Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs.\nUse with gas grills, electric smokers, griddles, kettle grills and ceramic grills", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.005153656, 0.008270264, -0.035186768, -0.0021915436, 0.0034008026, -0.029220581, -0.003774643, -0.020339966, -0.04675293, -0.011550903, -0.03050232, 0.024963379, -0.03845215, -0.031677246, 0.03225708, -0.06427002, 0.008552551, 0.0018482208, -0.0040740967, -0.034851074, -0.022766113, -0.022613525, 0.0056419373, 0.029663086, 0.019897461, 0.02508545, 0.024841309, 0.012992859, 0.045776367, 0.036224365, 0.02861023, -0.07745361, 0.027191162, 0.02519226, -0.042816162, 0.010238647, -0.0027179718, 0.011566162, -0.010147095, 0.011604309, -0.02432251, 0.03010559, 0.005630493, 0.0088272095, -0.034851074, 0.0064697266, -0.040649414, -0.0256958, 0.024551392, -0.0047454834, 0.015602112, 0.0090789795, 0.021865845, -0.0501709, -0.007659912, 0.024749756, -0.0021324158, 0.059661865, 0.02229309, -0.030960083, -0.035461426, 0.052124023, 0.0017299652, 0.023345947, -0.028289795, -0.0076789856, 0.082336426, -0.0007033348, -0.03439331, -0.054901123, 0.029205322, 0.014961243, -0.03717041, -0.028564453, -0.007381439, 0.053771973, -0.010772705, -0.015357971, 0.0039520264, 0.038635254, 0.03503418, 0.010757446, 0.037109375, 0.0015354156, -0.011871338, 0.005130768, -0.009712219, -0.017562866, 0.012557983, 0.004421234, -0.019699097, -0.006713867, 0.0102005005, 0.022613525, -0.018966675, -0.0035591125, -0.018081665, -0.02003479, 0.057373047, 0.041534424, 0.015510559, -0.04751587, 0.05142212, -0.021896362, -0.031402588, 0.048950195, 0.0362854, 0.017700195, -0.005367279, -0.0038814545, -0.01725769, 0.011047363, 0.021392822, -0.043823242, -0.026000977, 0.009178162, 0.02859497, -0.003446579, 0.043762207, -0.019882202, -0.020935059, 0.012992859, -0.010948181, 0.043395996, 0.031433105, 0.038330078, 0.020843506, -0.013320923, -0.09375, 0.07171631, 0.013961792, 0.0026416779, -0.0014133453, 0.020233154, -0.047912598, -0.020523071, 0.064086914, -0.005367279, -0.005908966, 0.024871826, -0.026748657, -0.012176514, 0.0134887695, -0.04449463, 0.024734497, -0.017181396, 0.030593872, 0.026687622, 7.9631805e-05, 0.03062439, -0.02658081, 0.071899414, 0.0692749, -0.028930664, -0.0463562, -0.061676025, 7.158518e-05, -0.046722412, 0.013145447, -0.064941406, -0.031341553, -0.008071899, -0.009269714, -0.006828308, -0.014083862, 0.018844604, 0.045684814, 0.008483887, 0.006954193, -0.013923645, 0.01637268, -0.018661499, -0.024276733, -0.025802612, 0.00059080124, 0.0064582825, 0.009407043, 0.026672363, 0.050201416, -0.093811035, -0.0736084, -0.051879883, 0.103149414, -0.044189453, 0.0058403015, -0.06842041, 0.027694702, -0.020767212, -0.0032081604, 0.029190063, 0.027008057, 0.024780273, -0.051208496, 0.033477783, -0.03656006, 0.00995636, -0.013282776, 0.038238525, -0.031341553, -0.018203735, -0.0090408325, 0.026397705, -0.0052871704, -0.026107788, 0.004360199, -0.009117126, 0.014328003, 0.03942871, 0.008300781, 0.036743164, 0.0017108917, 0.016464233, -0.02130127, -0.01789856, -0.022644043, -0.001821518, -0.024047852, 0.015686035, 0.011367798, 0.029678345, 0.0065345764, 0.006755829, -0.0069885254, -0.014579773, -0.0008363724, -0.017288208, -0.017196655, 0.00059080124, -0.028762817, 0.008773804, -0.005504608, 0.038513184, 0.03768921, 0.06726074, -0.002105713, 0.030334473, 0.048614502, 0.024902344, -0.0071105957, -0.022140503, 0.018249512, 0.0158844, -0.0041046143, 0.032348633, 0.009376526, 0.0038051605, 0.028167725, -0.014694214, -0.030227661, -0.007873535, -0.0021743774, 0.0036239624, 0.021835327, -0.026367188, -0.043426514, 0.052490234, -0.043823242, 0.02859497, -0.015945435, 0.023803711, -0.027328491, 0.057525635, 0.09564209, -0.010650635, 0.047821045, 0.0014076233, 0.055389404, 0.04324341, -0.018447876, 2.2768974e-05, 0.008995056, 0.025253296, -0.008201599, -0.013710022, 0.012680054, -0.0073661804, -0.03363037, 0.029525757, -0.00440979, -0.028869629, 0.025299072, 0.002828598, 0.0068626404, 0.008857727, 0.036102295, -0.010437012, 0.025665283, 0.04699707, -0.075805664, -0.055023193, -0.0038089752, -0.014305115, -0.041992188, -0.02822876, 0.008232117, -0.03756714, 0.051879883, 0.010635376, 0.018920898, -0.045440674, 0.0031356812, 0.0105896, -0.06567383, 0.03552246, -0.031677246, 0.056640625, 0.028808594, -0.05090332, -0.04083252, -0.06689453, 0.040863037, -0.02041626, 0.032958984, -0.004146576, 0.053253174, 0.027648926, 0.02861023, 0.050048828, 0.08514404, 0.08081055, -0.055755615, -0.015007019, -0.018493652, -0.026382446, -0.0030288696, 0.022262573, -0.046661377, 0.019622803, -0.038116455, 0.0071792603, 0.026229858, 0.014533997, -0.0024223328, -0.01423645, 0.013442993, -0.012306213, 0.014091492, -0.012710571, 4.839897e-05, -0.025924683, 0.018478394, 0.019104004, 0.0012426376, -0.03717041, -0.039276123, -0.0126953125, 0.016021729, -0.009056091, -0.037841797, -0.011955261, 0.019332886, -0.021026611, 0.0129470825, 0.0065307617, 0.045074463, -0.08319092, -0.058258057, 0.0345459, -0.012313843, -0.038513184, -0.017486572, -0.013771057, -0.051971436, -0.008842468, 0.043060303, -0.0022907257, 0.0025501251, -0.027267456, 0.02822876, -0.017303467, 0.042175293, -0.010047913, 0.008468628, -0.011398315, 0.012809753, -0.051818848, 0.043151855, -0.031143188, 0.024612427, 0.02999878, 0.0027046204, 0.036743164, -0.00066661835, 0.031097412, 0.014289856, 0.022644043, 0.02268982, 0.021865845, 0.0051651, -0.016448975, 0.0048599243, 0.042510986, -0.03363037, -0.020065308, -0.0079574585, 0.011909485, 0.0132751465, -0.046661377, 0.0067634583, -0.026641846, -0.09069824, 0.012420654, -0.028793335, -0.020553589, 0.031188965, -0.091674805, -0.014030457, -0.07312012, 0.01033783, -0.040252686, -0.010414124, 0.008644104, -0.018539429, -0.012832642, 0.013946533, -0.045532227, 0.033172607, -0.008636475, 0.01687622, -0.04776001, 0.031234741, -0.061828613, 0.05178833, 0.021392822, -0.060455322, 0.04244995, -0.040374756, 0.057434082, -0.0017957687, -0.029708862, -0.032684326, -0.024124146, -0.011512756, -0.037719727, 0.028274536, 0.0035381317, -0.041168213, -0.011657715, -0.04928589, 0.011779785, -0.05316162, -0.018157959, 0.023147583, 0.04019165, -0.0030822754, 0.009185791, -0.0435791, -0.03643799, 0.015991211, 0.012825012, -0.0016403198, -0.0014600754, 0.02848816, 0.023986816, -0.030517578, 0.017562866, -0.0012817383, 0.013137817, 0.007843018, 0.018432617, -0.010040283, -0.010116577, 0.040161133, -0.022628784, 0.008712769, -0.022781372, 0.08581543, 0.0056152344, -0.015945435, 0.039611816, -0.00017285347, -0.042266846, 0.017990112, -0.008644104, 0.0008687973, -0.047943115, 0.027191162, 0.056396484, -0.05105591, -0.059051514, -0.0151901245, -0.010192871, -0.028808594, 0.060424805, 0.04345703, -0.0018777847, 0.04446411, 0.034240723, -0.002243042, 0.060424805, 0.042510986, 0.02558899, 0.02494812, 0.046783447, -0.0030899048, -0.016174316, 0.018325806, -0.000436306, -0.018066406, 0.008956909, -0.07989502, 0.007419586, -0.043151855, 0.0042266846, -0.020629883, 0.0069122314, 0.04284668, -0.0022239685, -0.0154953, -0.04562378, 0.06945801, -0.037872314, 0.019454956, 0.0038719177, -0.02507019, 0.014701843, -0.017959595, -0.039520264, -0.009223938, 0.015571594, 0.025100708, 0.017425537, 0.03074646, 0.0074272156, -0.0023422241, -0.012992859, 0.016143799, -0.016235352, -0.022369385, -0.02772522, 0.014953613, 0.02293396, -0.009994507, 0.011894226, 0.024368286, 0.028411865, -0.009353638, 0.012779236, 0.010231018, -0.040252686, 0.038238525, 0.04623413, -0.023712158, -0.032684326, 0.02204895, -0.019760132, 0.007801056, 0.007522583, -0.020141602, 0.015701294, -0.019744873, -0.017211914, -0.05819702, -0.024963379, -0.022949219, -0.0158844, -0.049438477, 0.043640137, -0.0062179565, -0.04257202, -0.0076179504, 0.02923584, -0.011932373, -0.024795532, 0.008033752, 0.021057129, 0.03366089, 0.02243042, 0.016860962, -0.030731201, -0.016983032, -0.030548096, 0.059509277, 0.031158447, -0.015838623, -0.021865845, -0.086120605, -0.03366089, 0.0065078735, 0.09210205, -0.036132812, 0.048583984, -0.023742676, -0.074523926, -0.018798828, 0.006881714, 0.01826477, -0.050872803, -0.01939392, -0.0027580261, 0.036346436, 0.0012674332, 0.017318726, -0.05331421, 5.054474e-05, -0.010810852, -0.010971069, -0.018096924, -0.0138549805, 0.0008788109, -0.008003235, 0.026824951, 0.0058250427, -0.011482239, -0.021011353, 0.05569458, 0.025787354, 0.004890442, -0.024383545, -0.02255249, -0.004825592, 0.036865234, 0.0039520264, -0.03086853, -0.0068969727, 0.0012302399, -0.043518066, 0.07232666, 0.038482666, -0.00047516823, 0.0062332153, 0.0027866364, -0.007335663, -0.046051025, -0.007331848, 0.024932861, -0.034698486, 0.030654907, -0.01574707, -0.00055933, 0.033691406, -0.01940918, 0.015434265, 0.017501831, 0.041992188, -0.042419434, 0.015899658, -0.008743286, -0.011360168, 0.026184082, -0.011398315, -0.0043144226, 0.0010738373, 0.040527344, -0.005783081, -0.0072135925, 0.02848816, 6.508827e-05, -0.014480591, 0.0025978088, 0.0087890625, 0.0035896301, -0.0637207, 0.0058174133, 0.036346436, -0.008926392, 0.021331787, 0.036254883, -0.049865723, 0.0008687973, 0.021835327, 0.013542175, -0.015426636, -0.011062622, 0.066589355, -0.010169983, 0.011192322, 0.0033721924, -0.0005030632, 0.017837524, -0.028289795, -0.023910522, -0.009300232, -0.0065574646, 0.030029297, -0.011550903, -0.021911621, 0.0061149597, -0.034088135, -0.023651123, -0.007205963, 0.029312134, 0.044433594, -0.028274536, 0.004169464, 0.049957275, 0.032592773, -0.024307251, 0.031585693, -0.021148682, -0.024932861, -0.0060043335, 0.0020942688, -0.03564453, 0.0057411194, 0.03869629, -0.010093689, -0.053466797, -0.008758545, -0.01928711, 0.010505676, -0.01890564, -0.012771606, -0.031555176, -0.022445679, 0.018157959, -0.0016536713, 0.031433105, -0.024017334, -0.008476257, -0.007335663, 0.024093628, -0.068847656, -0.023742676, -0.009231567, -0.0009937286, -0.00579834, -0.015670776, 0.0074386597, 0.0234375, -0.014640808, 0.035736084, 0.019683838, -0.0635376, -0.001906395, -0.0026283264, -0.017471313, 0.0007200241, 0.004180908, 0.0036716461, 0.0028839111, 0.029632568, 0.035491943, -0.023208618, -0.031143188, 0.006175995, -0.0057907104, 0.047851562, 0.021774292, 0.042633057, -0.023376465, -0.009666443, 0.03552246, 0.013793945, 0.05130005, 0.091796875, 0.038482666, 0.044555664, 0.0006532669, 0.044921875, -0.018844604, -0.020446777, -0.012611389, 0.022521973, 0.036132812, 0.02178955, 0.013046265, -0.017059326, -0.016113281, -0.007633209, -0.034698486, 0.0005507469, -0.0020217896, 0.0024414062, 0.0059890747, 0.0035247803, 0.015365601, 0.0385437, 0.01789856, 0.026062012, 0.0340271, 0.006187439, 0.022018433, 0.049987793, -0.057800293, 0.025680542, -0.01763916, -0.00014662743, 0.0028896332, 0.035827637, 0.022583008, 0.011787415, -0.04135132, -0.01953125, 0.02760315, 0.0234375, 0.017150879, -0.053771973, 0.032318115, -0.023727417, -0.013870239, 0.011169434, 0.013389587, 0.024139404, 0.027816772, 0.0011434555, -0.041168213, -0.0124053955, 0.011016846, -0.045440674, -0.033081055, -0.014961243, 0.01586914, 0.043884277, 0.004142761, 0.01159668, 0.032165527, 0.017791748, -0.027572632, 0.051605225, 0.008804321, 0.026290894, 0.011756897, -0.0046958923, -0.044647217, 0.0025978088, 0.0047836304, -0.0074806213, -0.016052246, 0.046722412, -0.026809692, 0.0047569275, 0.017074585, 0.058654785, 0.019302368, 0.0049095154, 0.037902832, -0.041809082, 0.030059814, 0.011016846, -0.0051498413, 0.01675415, -0.021820068, 0.012001038, 0.010513306, 0.005756378, 0.015304565, 0.01448822, 0.024795532, 0.0050735474, 0.020507812, -0.013534546, 0.0118637085, -0.023254395, 0.036224365, -0.028686523, -0.014831543, -0.0015010834, -0.016433716, -0.0052833557, 0.019165039, -0.0044174194, -0.030059814, -0.02330017, 0.042053223, 0.007835388, 0.04397583, -0.016998291, -0.022460938, 0.0025749207, -0.0031871796, 0.021743774, 0.03729248, 0.025283813, 0.013671875, 0.029083252, -0.012298584, 0.056396484, -0.019073486, 0.10095215, 0.034454346, -0.009437561, -0.02357483, -0.035858154, -0.026290894, -0.024673462, 0.0069274902, -0.015914917, -0.022155762, -0.016052246, -0.01876831, -0.01322937, 0.021453857, -0.01789856, 0.018127441, -0.05847168, 0.010276794, 0.039916992, -0.02218628, -0.018096924, -0.02104187, 0.0038890839, 0.006263733, 0.034210205, 0.03768921, 0.08984375, -0.057556152, -0.004211426, -0.022262573, 0.03967285, 0.008522034, -0.02468872, -0.09844971, -0.015586853, -0.07574463, -0.0018434525, 0.013153076, -0.029922485, -0.013710022, -0.06829834, -0.014480591, -0.055633545, -0.040618896, -0.01852417, -0.0041007996, -0.022842407, -0.029342651, -0.02003479, -0.0034732819, 0.0368042, 0.013450623, 0.04244995, -0.01727295, -0.074645996, -0.097595215, 0.03717041, -0.109313965, -0.029144287, -0.014717102, -0.0014276505, 0.007331848, -0.0077323914, 0.03817749, -0.012886047, 0.039764404, -0.007671356, -0.04977417, 0.006702423, -0.01486969, -0.0006508827, -0.0029411316, -0.03152466, 0.0012903214, 0.039093018, -0.015625, 0.058685303, -0.0010557175, -0.020309448, -0.044006348, -0.022872925, -0.023895264, 0.0141067505, 0.005332947, 0.012062073, -0.00541687, 0.04019165, -0.010009766, -0.02418518, -0.009513855, -0.058624268, 0.039489746, -0.038146973, 0.013206482, -0.04925537, -0.060180664, -0.031982422, -0.024765015, 0.035980225, 0.06555176, 0.0072402954, 0.042053223, 0.041625977, -0.04034424, 0.0574646, 0.014289856, -0.023590088, -0.015625, -0.022003174, 0.0068893433, -0.05407715, -0.0029029846, -0.025817871, -0.016616821, -0.0009212494, 0.03439331, -0.020584106, -0.0021247864, -0.015655518, -0.029647827, -0.009674072, -0.037475586, -0.010215759, -0.037963867, -0.052978516, 0.011016846, 0.03704834, -0.022064209, 0.05441284, -0.030136108, -0.009811401, -0.010414124, -0.011627197, 0.009468079, -0.022491455, -0.0074043274, -0.01007843, -0.028900146, 0.056427002, -0.024658203, -0.08886719, -0.044433594, 0.019165039, 0.00762558, -0.0075187683, 0.050476074, -0.048187256, 4.0590763e-05, -0.012321472, -0.030288696, -0.0014095306, 0.0035362244, 0.034332275, -0.03768921, 0.012535095]}, "B08C9SNF7H": {"id": "B08C9SNF7H", "original": "Brand: Pinshion\nName: Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild\nDescription:

      Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

      Specification:

      Components: furnace body + bracket + carbon plate + grilled net + carbon net

      Baking tray size: 17 x 11.5 inch

      After installation of a single product size: 17 x 11.5 x 9.3 inch

      Colour: Black

      Material: iron + chrome grilled net

      Package included:

      1 x Folding BBQ Grill

      1 x Grilled net

      1 x Charcoal net

      Only the above package content, other products are not included.

      \nFeatures: \u3010Newest Design\u3011Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill.\n\u3010Easy to use & Fold\u3011There are bracelets on both sides of the grill for easy carrying the grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok.\n\u3010Outdoor BBQ Partner\u3011Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends.\n\u3010Safety & Healthy\u3011High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food).\n\u3010Suitable for Many Occasions\u3011Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\n", "metadata": {"Name": "Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild", "Brand": "Pinshion", "Description": "

      Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

      Specification:

      Components: furnace body + bracket + carbon plate + grilled net + carbon net

      Baking tray size: 17 x 11.5 inch

      After installation of a single product size: 17 x 11.5 x 9.3 inch

      Colour: Black

      Material: iron + chrome grilled net

      Package included:

      1 x Folding BBQ Grill

      1 x Grilled net

      1 x Charcoal net

      Only the above package content, other products are not included.

      ", "Features": "\u3010Newest Design\u3011Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill.\n\u3010Easy to use & Fold\u3011There are bracelets on both sides of the grill for easy carrying the grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok.\n\u3010Outdoor BBQ Partner\u3011Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends.\n\u3010Safety & Healthy\u3011High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food).\n\u3010Suitable for Many Occasions\u3011Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.027648926, 0.036834717, -0.032806396, 0.02444458, 0.02494812, -0.0069122314, 0.006340027, -0.04714966, -0.024597168, -0.004611969, -0.021408081, 0.028793335, -0.03894043, -0.017089844, 0.015899658, -0.04724121, 0.0047721863, 0.022399902, 0.0023422241, -0.01789856, 0.0031089783, -0.008666992, -0.047729492, 0.09991455, 0.03286743, -0.024658203, -0.0073165894, -0.0075187683, 0.016937256, -0.00198555, 0.020385742, 0.007881165, 0.0050811768, 0.035339355, -0.029632568, -0.017028809, -0.009918213, 0.02168274, 0.0028419495, 0.0030078888, 0.021835327, -0.012580872, -0.0579834, 0.042663574, -0.052520752, -0.034851074, 0.000954628, -0.0035495758, -0.01133728, -0.0078048706, 0.025970459, 0.015823364, 0.045837402, -0.005996704, -0.009597778, 0.0105896, -0.0066833496, -0.010429382, 0.03741455, -0.019454956, -0.017822266, -0.01966858, 0.032440186, 0.010353088, -0.037475586, -0.020904541, 0.040161133, 0.00012302399, -0.051696777, -0.05984497, 0.049468994, 0.016662598, 0.019195557, 0.008903503, -0.031219482, -0.059570312, 0.024368286, -0.02067566, 0.013656616, -8.535385e-05, -0.06463623, -0.021255493, -0.0032787323, -0.048309326, -0.025558472, -0.024047852, -0.032348633, 0.010826111, 0.005897522, 0.028518677, 0.001876831, -0.019104004, -0.025054932, 0.08251953, 0.02671814, 0.02180481, -0.048858643, -0.0703125, 0.023361206, 0.022537231, 0.04208374, -0.040252686, 0.06262207, -0.0042495728, -0.0501709, 0.03781128, 0.037017822, 0.018676758, -0.04598999, 0.00062036514, -0.020904541, -0.07269287, -0.008605957, -0.028167725, -0.01625061, 0.040649414, 0.001083374, 0.023452759, 0.017166138, 0.025405884, -0.042938232, -0.02180481, 0.0013961792, 0.053985596, 0.019561768, 0.031585693, 0.028396606, -0.00274086, -0.08728027, 0.057159424, -0.0435791, 0.016296387, 0.07623291, 0.033325195, -0.003232956, -0.041412354, -0.025314331, -0.013534546, 0.021347046, 0.009246826, -0.033294678, -0.020355225, 0.062927246, -0.005306244, 0.016082764, -0.0036334991, 0.038116455, 0.040924072, -0.0362854, -0.051879883, 0.062164307, 0.037719727, 0.063964844, -0.0029144287, -0.050933838, -0.024749756, -0.012535095, -0.026916504, -0.023895264, -0.062927246, -0.010002136, 0.00687027, 0.010498047, -0.03189087, -0.029830933, -0.00919342, 0.0001180172, -0.0002206564, 0.019989014, 0.021896362, -0.0059928894, -0.00522995, -0.0051460266, 0.010620117, 0.0021018982, 0.025512695, -0.008911133, 0.03488159, 0.0670166, -0.09069824, -0.07122803, -0.050720215, 0.14208984, -0.055389404, -0.0012607574, 0.007820129, 0.028320312, 0.02684021, -0.015701294, 0.01234436, 0.0054740906, 0.033325195, -0.03366089, -0.0051956177, 0.0013961792, 0.06048584, -0.05606079, 0.034240723, -0.0082473755, -0.028945923, -0.020767212, 0.028778076, 0.004169464, 0.024993896, 0.04711914, 0.009864807, 0.017349243, 0.019165039, 0.051879883, 0.031158447, -0.0069351196, 0.012588501, -0.015411377, -0.027633667, -0.04446411, 0.013298035, -0.030548096, 0.04937744, 0.0052986145, 0.034973145, 0.010604858, -0.0010623932, 0.035491943, -0.019622803, 0.04498291, -0.017593384, -0.011932373, -0.017410278, 0.04296875, 0.014839172, -0.027694702, 0.026519775, 0.0395813, 0.04598999, -0.022827148, 0.017593384, 0.045166016, 0.058929443, -0.017623901, -0.012367249, 0.03161621, 0.03277588, -0.015823364, -0.012252808, 0.03289795, -0.07739258, -0.0071983337, -0.0013856888, -0.01109314, 0.009117126, 0.0030708313, 0.0035877228, 0.026000977, -0.015899658, -0.010902405, 0.028823853, -0.029647827, 0.046081543, -0.06335449, 0.039978027, -0.032409668, 0.023483276, 0.049743652, -0.019210815, 0.031677246, -0.048614502, 0.009712219, -0.009262085, -0.017532349, -0.01701355, 0.024475098, -0.01373291, -0.0068473816, 0.007949829, 0.054351807, -0.023086548, -0.018722534, -0.0045814514, 0.02243042, -0.0054893494, 0.014587402, -0.008033752, 0.018295288, 0.008071899, 0.044555664, 0.018005371, 0.015136719, 0.019714355, -0.078125, -0.036102295, -0.011932373, 0.015899658, -0.017868042, -0.029785156, -0.0030441284, -0.0008254051, 0.012672424, 0.07672119, -0.0067596436, -0.010848999, -0.04425049, 0.0069351196, -0.05731201, 0.0031871796, -0.0072898865, 0.010643005, -0.0071372986, 0.0046577454, 0.004470825, -0.055603027, 0.031402588, 0.02230835, 0.034423828, -0.05340576, 0.057891846, 0.023391724, -0.01586914, 0.037261963, 0.046844482, 0.06842041, -0.07537842, -0.053497314, -0.021392822, 0.0047683716, -0.020858765, 0.03488159, 0.0026741028, 0.02243042, 0.00843811, 0.0063209534, -0.01348114, 0.0020198822, -0.010620117, 0.010566711, -0.018707275, -0.0007901192, 0.023254395, 0.013511658, 0.016983032, -0.026428223, 0.03741455, -0.0027694702, -0.0102005005, 0.013191223, -0.025146484, -0.021575928, 0.017593384, 0.0158844, -0.013053894, -0.008712769, 0.01146698, -0.033081055, 0.036102295, -0.025390625, -0.0061912537, -0.002210617, -0.039733887, -0.0340271, -0.041870117, -0.07434082, -0.019348145, -0.036193848, -0.054992676, 0.029785156, 0.021011353, 0.017700195, -0.007385254, 0.023666382, -0.01928711, 0.021514893, 0.006958008, 0.0062675476, -0.028396606, -0.037719727, -0.03250122, -0.01007843, 0.04928589, -0.015159607, -0.0146865845, 0.019012451, -0.0009803772, 0.03086853, -0.010978699, 0.030227661, 0.014228821, 0.03543091, 0.033599854, 0.029220581, 0.0063285828, -0.035125732, 0.005088806, 0.0435791, -0.06707764, -0.0181427, 0.0040626526, 0.03152466, -0.0009965897, -0.07385254, -0.007911682, -0.042114258, -0.05697632, 0.016036987, -0.015533447, -0.0048713684, 0.0039863586, -0.0619812, 0.0116119385, -0.065979004, 0.00047302246, 0.066101074, -0.022262573, 0.030822754, -0.017349243, 0.032073975, -0.005508423, 0.0017375946, 0.038208008, -0.014274597, 0.045684814, -0.038208008, -0.020492554, -0.019897461, -0.00042438507, 0.014389038, -0.027908325, 0.009407043, 0.00422287, 0.014823914, -0.011276245, 0.033843994, -0.0006093979, -0.013374329, 0.01184082, 0.02243042, -0.056854248, 0.011390686, -0.004589081, -0.042755127, 0.05142212, -0.05987549, -0.033203125, 0.011413574, -0.036956787, -0.0013456345, -0.028121948, -0.04458618, 0.01550293, -0.053619385, -0.012123108, -0.041412354, 0.010345459, 0.028656006, 0.0574646, 0.016647339, 0.012878418, 0.014732361, 0.00466156, 0.018096924, 0.043304443, -0.004634857, -0.040924072, -0.011306763, 0.04333496, -0.029632568, 0.020736694, -0.03543091, 0.022338867, -0.019134521, -0.018508911, 0.029083252, -0.025924683, 0.024871826, 0.05041504, 0.0124435425, 0.0071411133, 0.001871109, -0.0001270771, 0.014266968, -0.03894043, -0.019454956, -0.041870117, -0.0033912659, -0.064208984, 0.08099365, 0.056427002, -0.027038574, 0.07098389, 0.04714966, -0.01713562, 0.017150879, 0.019332886, 0.0048942566, 0.01776123, 0.04147339, -0.008758545, -0.020019531, 0.015090942, -0.0118255615, 0.010192871, 0.0073242188, -0.079833984, 0.0006494522, 0.024551392, -0.05239868, -0.019165039, -0.014923096, -0.009399414, -0.027755737, 0.002620697, -0.0048446655, -0.03250122, -0.02835083, 0.029083252, 0.040252686, -0.053771973, 0.033691406, -0.03302002, -0.010650635, -0.009010315, 0.006969452, 0.01474762, 0.048217773, 0.015960693, 0.026107788, 0.0010566711, -0.01789856, -0.0010442734, 0.0039024353, -0.019866943, -0.017547607, 0.020721436, 0.00035500526, -0.00065374374, 0.01776123, 0.010734558, 0.025909424, -0.047454834, -0.0042915344, 0.035003662, -0.032592773, 0.014945984, 0.037902832, -0.03314209, 0.028747559, 0.03387451, -0.08129883, 0.022583008, -0.026870728, -0.054534912, -0.010635376, -0.01889038, -0.0049552917, -0.045562744, -0.009628296, 0.0045318604, 0.022338867, -0.039031982, 0.025375366, 0.0024051666, -0.04852295, -0.043884277, 0.022964478, -0.029174805, 0.0034255981, -0.011871338, -0.0039596558, 0.055755615, 0.041534424, 0.0020809174, -0.03387451, -0.030975342, -0.0014476776, 0.046875, -0.036315918, 0.030197144, -0.026611328, -0.0039978027, 0.008430481, 0.028579712, 0.05392456, -0.015335083, -0.007659912, -0.040008545, -0.028900146, -0.036468506, -0.006286621, 0.024261475, -0.023483276, -0.013008118, -0.02935791, 0.03564453, -0.009963989, -0.014205933, -0.04525757, 0.0013895035, 0.027954102, -0.034576416, -0.02609253, -0.016601562, 0.008049011, -0.0050621033, 0.007896423, 0.007335663, -0.019500732, 0.03881836, 0.0030708313, 0.009925842, -0.0045051575, -0.01108551, -0.02848816, 0.02709961, 0.052886963, -0.04840088, 0.0010557175, -0.045318604, -0.012191772, -0.044708252, 0.07678223, 0.088256836, -0.010940552, -0.013198853, 0.022201538, -0.033935547, -0.055877686, 0.033996582, -0.0038814545, -0.028533936, -0.0018815994, -0.0025291443, -0.03378296, -0.031097412, -0.025634766, -0.025436401, -0.023376465, -0.015640259, 0.015960693, -0.011428833, -0.030548096, 0.005306244, 0.03353882, 0.017547607, 0.025909424, 0.0059509277, -0.0101623535, 0.015304565, -0.008216858, 0.0028038025, -0.004634857, -0.002298355, -0.036834717, -0.032928467, -0.031921387, -0.06402588, 0.006324768, 0.04006958, -0.021392822, -0.028579712, 0.018707275, 0.021484375, 0.008888245, -0.038269043, 0.04269409, -0.014419556, 0.002292633, -0.005683899, -0.034973145, 0.022583008, 0.023345947, -0.035705566, 0.026809692, 0.00187397, -0.025497437, 0.0435791, 0.015510559, 0.04727173, -0.027618408, 0.0042419434, 0.0009226799, -0.035736084, -0.04269409, -0.0057411194, -0.013183594, 0.032989502, -0.018920898, -0.013542175, 0.032989502, 0.019638062, -0.017333984, 0.013549805, 0.049041748, -0.052703857, -0.028396606, 0.049591064, -0.0021095276, -0.07116699, 0.033447266, -0.022781372, -0.025497437, -0.0026435852, -0.026794434, -0.021911621, 0.014282227, -0.00054073334, -0.014320374, -0.014907837, 0.021392822, -0.03326416, 0.0152282715, -0.02192688, -0.0015764236, 0.007144928, 0.02861023, -0.034210205, 0.0038585663, -0.056793213, -0.037384033, -0.045928955, 0.013153076, 0.0055160522, 0.048034668, -0.015174866, -0.01234436, 0.030792236, -0.03717041, -0.006454468, 0.057495117, -0.00039935112, 0.0061035156, 0.018096924, 0.038208008, -0.029632568, 0.0115356445, 0.064575195, -0.043792725, -0.03677368, -0.039855957, 0.07244873, 0.011955261, 0.029434204, 0.10211182, -0.013999939, 0.019500732, 0.025741577, 0.0071258545, -0.02961731, -0.0008749962, 0.002506256, -0.05999756, 0.004009247, -0.018173218, 0.016021729, 0.007762909, -0.0024204254, -0.017745972, 0.05392456, -0.0055236816, -0.021026611, -0.059783936, -0.023483276, 6.0915947e-05, -0.02142334, 0.018707275, 0.015220642, -0.009307861, -0.007858276, 0.0009622574, -0.057037354, 0.0052223206, 0.05355835, 0.042999268, 0.02027893, -0.0259552, 0.024414062, 0.039031982, -0.04727173, 0.07989502, -0.009048462, -0.035980225, -0.017196655, 0.0146102905, 0.047973633, -0.023498535, 0.019439697, 0.012367249, 0.0030765533, 0.018753052, 0.07714844, -0.039093018, 0.0027999878, 0.00504303, 0.08544922, -0.0006775856, 0.017440796, 0.038909912, 0.046447754, 0.00440979, -0.03945923, 0.0056877136, 0.06793213, -0.0317688, -0.0036773682, -0.014198303, 0.03817749, 0.032806396, 0.020095825, -0.015975952, 0.060028076, 0.01725769, -0.02116394, -0.009780884, 0.008361816, 0.0022583008, 0.019012451, -0.01007843, -0.043914795, -8.279085e-05, -0.023406982, 0.008934021, -0.03564453, -0.036895752, 0.019973755, 0.03878784, 0.012817383, 0.0026187897, -0.026901245, 0.01927185, 0.041412354, -0.08630371, 0.009429932, 0.013076782, -0.011199951, 0.0034313202, -0.06616211, -0.026733398, -0.045715332, 0.04788208, 0.023498535, 0.083496094, -0.030776978, 0.029266357, -0.013900757, -0.009300232, -0.022888184, -0.0018033981, -0.02696228, 0.0048446655, -0.0064964294, 0.0053749084, -0.027618408, -0.0013980865, 0.052612305, -0.015403748, -0.013381958, -0.00541687, 0.033721924, -0.020019531, 0.0038089752, -0.030929565, -0.060791016, 0.029190063, 0.0473938, -0.042541504, -0.018371582, -0.024337769, -0.012001038, 0.046844482, -0.04837036, 0.023345947, 0.011734009, 0.0335083, 0.023757935, 0.07824707, -0.022766113, -0.010002136, -0.01701355, 0.002254486, 0.0068588257, 0.035949707, 0.020736694, 0.0099487305, 0.04888916, 0.016555786, 0.052246094, -0.025177002, 0.02482605, 0.012046814, 0.018814087, 0.014419556, 0.029464722, -0.008728027, 0.0034179688, 0.005607605, -0.0063285828, 0.023361206, -0.00831604, 0.028579712, -0.025802612, 0.024841309, -0.015838623, 0.018661499, -0.0075645447, -0.031585693, -0.006385803, -0.0062713623, 0.00969696, -0.022064209, -0.047851562, -0.02911377, -0.0028705597, -0.047576904, 0.019332886, 0.0132751465, -0.039764404, -0.036193848, 0.0034275055, 0.008735657, -0.039886475, -0.0008482933, -0.011711121, 0.04638672, 0.0015306473, 0.06317139, -0.021743774, -0.0597229, -0.057739258, 0.018920898, -0.036346436, -0.016723633, 0.0073394775, 0.010444641, 0.019454956, 0.014122009, 0.041107178, 0.04269409, 0.028152466, -0.002603531, -0.047668457, 0.023071289, -0.030227661, 0.02230835, -0.00374794, -0.016738892, 0.037261963, 0.041503906, 0.019836426, 0.07122803, 0.0073509216, -0.008110046, -0.054870605, -0.026306152, -0.059661865, 0.054382324, -0.00036764145, -0.02230835, 0.019607544, -0.0050315857, -0.03479004, 0.008384705, 0.029190063, 0.0079193115, 0.027709961, 0.01322937, 0.021514893, 0.0064811707, -0.023895264, -0.027328491, -0.0070343018, -0.00031352043, 0.018661499, -0.0127334595, -0.04812622, 0.045959473, 0.004951477, 0.007129669, 0.053863525, -0.0010700226, 0.00869751, 0.0135269165, 0.03152466, -0.003921509, -0.0054855347, 0.011207581, -0.039093018, -0.05218506, -0.010383606, 0.038024902, -0.023223877, -0.009094238, -0.006313324, 0.010047913, 0.023406982, 0.006549835, -0.022750854, -0.035308838, 0.000975132, 0.023406982, -0.0022525787, 0.023468018, 0.0038871765, -0.009536743, -0.021697998, 0.0073509216, 0.011856079, 0.00945282, -0.016723633, 0.021881104, 0.015701294, 0.014564514, -0.0034446716, 0.0030727386, -0.04598999, 0.048614502, 0.005973816, -0.015029907, 0.0061416626, 0.003540039, 0.028778076, -0.015945435, -0.0010356903, -0.004459381, 0.011856079, 0.031158447, -0.018875122, 0.023361206]}, "B07477NMF4": {"id": "B07477NMF4", "original": "Brand: ThermoPro\nName: ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver\nDescription: \nFeatures: BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs\nDual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually\nLarge, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments\nHighly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within \u00b11.8\u00b0f (\u00b11\u00b0c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716\u00b0f and a wide temperature of 14\u02daf to 572\u02daf (-10\u02dac to 300\u02dac), cook anything in any grill setup\nEasy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill\n", "metadata": {"Name": "ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver", "Brand": "ThermoPro", "Description": "", "Features": "BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs\nDual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually\nLarge, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments\nHighly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within \u00b11.8\u00b0f (\u00b11\u00b0c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716\u00b0f and a wide temperature of 14\u02daf to 572\u02daf (-10\u02dac to 300\u02dac), cook anything in any grill setup\nEasy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015823364, -0.00037002563, -0.013160706, 0.026321411, -0.0063285828, -0.026245117, 0.03161621, -0.021499634, 0.026657104, 0.026641846, 0.009391785, -0.0051193237, 0.03933716, -0.05130005, 0.011695862, 0.000828743, 0.01171875, 0.014930725, 0.025970459, -0.00680542, -0.024246216, 0.022872925, 0.00021624565, 0.019744873, 0.029220581, 0.035980225, -0.00069475174, 0.025177002, 0.010696411, 0.01826477, 0.027053833, -0.043426514, 0.033935547, 0.027008057, -0.07183838, -0.020523071, -0.043060303, 0.012931824, -0.021392822, -0.0006146431, 0.019302368, -0.001247406, 0.027450562, 0.014053345, -0.009284973, -0.040649414, 0.043395996, -0.014678955, -0.0032615662, 0.028442383, 0.04598999, 0.006969452, 0.04458618, 0.014152527, -0.0036506653, 0.01625061, -0.031204224, 0.028198242, 0.036376953, -0.031982422, -0.02394104, -0.01423645, 0.031204224, 0.025146484, -0.012626648, 0.016143799, 0.052978516, -0.022460938, -0.00022828579, -0.01461792, 0.021896362, -0.006126404, 0.020462036, -0.04486084, -0.014083862, -0.031677246, 0.00063943863, -0.046966553, 0.013626099, -0.0058631897, -0.004966736, -0.03491211, 0.019714355, -0.037200928, 0.029922485, 0.0028972626, -0.017425537, -0.017532349, -0.02609253, -0.051940918, -0.022354126, 0.017150879, -0.06866455, 0.010925293, -0.011291504, -0.024841309, 0.01991272, 0.0057525635, 0.005168915, -0.02166748, 0.026565552, -0.0435791, -0.028198242, 0.0055351257, -0.008346558, 0.06829834, -0.0067710876, 0.018371582, 0.016998291, 0.015159607, 0.021591187, -0.03933716, -0.029846191, -0.024795532, -0.02607727, 0.029174805, -0.023132324, -0.04437256, 0.010696411, -0.051696777, -0.026489258, -0.010940552, 0.01889038, 0.035858154, 0.00856781, 0.01977539, 0.010238647, -0.01828003, -0.09362793, 0.042816162, -0.033721924, -0.025283813, 0.028549194, 0.046203613, 0.019805908, -0.04434204, 0.04135132, -0.010803223, 0.0040283203, 0.008705139, 0.0015115738, -0.02671814, -0.017456055, 0.011154175, -0.05441284, -0.008834839, 0.021362305, 0.032196045, -0.047973633, -0.04940796, 0.026306152, 0.015823364, 0.034210205, 0.0024108887, -0.041778564, 0.002998352, -0.027694702, -0.0012626648, -0.01902771, -0.029663086, -0.026168823, -0.0054626465, 0.007598877, -0.009216309, -0.0033855438, -0.0008702278, 0.0082092285, 0.0026359558, 0.018325806, 0.010887146, 0.015327454, -0.0013484955, -0.014053345, -0.0012588501, -0.0009784698, -0.0026454926, -0.020950317, 0.095703125, 0.062316895, -0.097473145, -0.06222534, -0.05609131, 0.14416504, -0.053771973, -0.016220093, 0.02885437, -0.02330017, 0.018676758, 0.04144287, 0.001326561, -0.04067993, -0.012298584, -0.030517578, 0.023864746, -0.0076065063, 0.0056266785, -0.02897644, 0.04067993, -0.01914978, -0.053649902, -0.046020508, 0.0107040405, -0.04824829, 0.03479004, -0.03878784, -0.009407043, -0.006614685, 0.029373169, -0.008216858, -0.0016508102, 0.01473999, 0.0068893433, 0.0154418945, -0.097717285, -0.03540039, 0.017654419, -0.040802002, -0.011306763, -0.014022827, 0.02557373, 0.0014333725, -0.0025463104, -0.0057258606, -0.0016098022, 0.058258057, -0.004169464, -0.024139404, 0.0004901886, 0.04800415, 0.011756897, -0.019348145, 0.03768921, 0.031082153, 0.0037765503, -0.01890564, 0.06359863, 0.08691406, 0.056243896, -0.037353516, -0.028427124, 0.010696411, 0.0058555603, -0.020446777, 0.01637268, 0.0143585205, 0.00040197372, 0.018814087, -0.0009098053, -0.023620605, -0.004749298, 0.025939941, 0.017288208, 0.045684814, 0.008628845, 0.00223732, 0.046142578, -0.006149292, 0.024368286, -0.041900635, 0.032165527, -0.020233154, 0.012451172, 0.027511597, -0.010917664, 0.039978027, -0.0029888153, 0.032073975, 0.018569946, -0.013122559, -0.012763977, 0.0024604797, -0.014038086, -0.01399231, -0.04006958, 0.0009832382, -0.031158447, -0.02305603, 0.030090332, 0.016799927, -0.04727173, 0.007850647, 0.030654907, 0.016860962, -0.0034008026, 0.021835327, -0.050476074, 0.0057144165, 0.016296387, -0.035736084, -0.03137207, 0.008300781, -0.00969696, -0.030532837, 0.0073928833, -0.0075569153, -0.018966675, 0.021011353, 0.019561768, 0.001613617, -0.021072388, 0.0022525787, 0.024398804, -0.036834717, 0.020050049, 0.0045166016, 0.0016365051, 0.02444458, 0.01713562, 0.0090789795, -0.052703857, 0.029052734, 0.023773193, 0.047729492, -0.05508423, 0.06488037, 0.05706787, 0.00756073, 0.022140503, 0.012527466, 0.023956299, -0.0155181885, -0.016326904, -0.05291748, 6.687641e-05, -0.016220093, 0.03793335, -0.0062332153, -0.012168884, -0.00459671, 0.034454346, 0.06451416, 0.038482666, 0.033203125, -0.03753662, -0.003124237, -0.017120361, -0.016464233, 0.03479004, -0.025878906, -0.03387451, -0.02960205, -0.0065231323, 0.031173706, -0.013885498, -0.06604004, 0.007911682, 0.011505127, 0.002538681, -0.021377563, -0.031021118, 0.05014038, -0.02670288, 0.0036067963, -0.01940918, -0.018066406, -0.011039734, -0.0041007996, -0.058258057, -0.03894043, -0.09100342, -0.015396118, 0.0038032532, -0.050109863, -0.022598267, 0.070251465, -0.03515625, -0.02722168, -0.03439331, 0.021636963, 0.030303955, 0.04486084, 0.0071754456, -0.021408081, -0.022537231, -0.036590576, -0.049591064, -0.018493652, -0.05392456, 0.014671326, -0.021774292, -0.01991272, 0.019348145, 0.02128601, 0.052978516, -0.00018048286, 0.03366089, 0.019058228, 0.06085205, -0.039031982, -0.030914307, -0.0024032593, 0.08868408, -0.0042495728, -0.031677246, -0.0018453598, 0.019699097, -0.024215698, -0.047546387, -0.009811401, -0.0066719055, -0.09539795, -0.005054474, -0.03363037, -0.01285553, 0.0039901733, -0.061279297, -0.020568848, -0.06964111, 0.00793457, 0.050628662, -0.019195557, 0.013557434, -0.04244995, 0.022216797, 0.010604858, -0.008476257, 0.034118652, -0.009803772, 0.024353027, -0.0362854, 0.0033683777, -0.029708862, 0.01576233, 0.011817932, 0.0028591156, 0.008300781, -0.005176544, -0.0024547577, 0.013298035, -0.04522705, -0.03543091, -0.042755127, -0.010856628, -0.019210815, 0.0103302, 0.04812622, -0.0068969727, 0.001241684, -0.009849548, -0.005836487, -0.06616211, -1.168251e-05, -0.029434204, 0.0063934326, -0.024124146, -0.019546509, 0.014038086, -0.08972168, -0.016586304, -0.10687256, -0.023162842, 0.009552002, 0.05496216, 0.036987305, 0.033050537, 0.10827637, -0.008422852, 0.05606079, 0.053894043, -0.053497314, -0.009727478, -0.059783936, -0.0019721985, 0.059753418, -0.0099487305, -0.035064697, 0.04309082, -0.016036987, -0.038635254, 0.013656616, -0.05480957, 0.06506348, -0.018920898, -0.023223877, -0.01878357, 0.011329651, 0.023727417, -0.014602661, 0.05731201, -0.00092697144, -0.050048828, 0.018005371, -0.066833496, 0.054107666, 0.0010681152, 0.0025043488, 0.04083252, 0.053894043, 0.0023231506, 0.036865234, 0.06161499, -0.00015175343, 0.031280518, 0.007911682, -0.022445679, -0.030166626, 0.0070762634, 0.019546509, 0.02809143, 0.016525269, -0.031677246, 0.017974854, 0.0059318542, 0.00013720989, -0.032440186, 0.0069389343, 0.04449463, 0.014915466, -0.004261017, -0.055480957, 0.064208984, -0.028015137, -0.012397766, -0.0076026917, -0.018753052, -0.04837036, 0.026473999, 0.010368347, -0.03387451, -0.007965088, 0.00881958, 0.017623901, -0.00029420853, 0.01637268, 0.0034484863, 0.008369446, -0.044830322, 0.0118637085, 0.0072402954, 0.002828598, 0.066589355, -0.013977051, 0.028915405, -0.0048561096, -0.024139404, 0.03274536, 0.0020179749, 0.023757935, -0.012893677, -0.011650085, -0.0020217896, -0.033355713, -0.0129852295, -0.025604248, 0.042816162, -0.045410156, 0.031280518, 0.0019454956, -0.06121826, -0.0062294006, -0.04498291, -0.015319824, -0.045074463, -0.020080566, 0.025314331, -0.038085938, -0.016983032, 0.004436493, -0.0057868958, -0.018463135, -0.0038719177, 0.024749756, -0.03543091, 0.009140015, 0.008811951, 0.001906395, 0.06124878, 0.009902954, 0.012741089, -0.039489746, -0.011230469, -0.02456665, 0.033721924, 0.01386261, -0.0039520264, 0.0052719116, -0.030090332, 0.0064888, 0.022857666, 0.08123779, 0.022247314, -0.0051574707, -0.077819824, -0.043762207, -0.020690918, -0.00021004677, 0.035247803, -0.01663208, 0.0017776489, -0.03930664, -0.0040512085, -3.8266182e-05, 0.026153564, 0.01878357, 0.0049934387, -0.036987305, 0.025146484, -0.05630493, 0.012870789, -0.005153656, 0.011047363, 0.009056091, -0.0025234222, -0.020568848, -0.013519287, 0.0067481995, -0.013687134, -0.024261475, 0.00036740303, -0.027282715, 0.00484848, 0.016220093, -0.021728516, 0.016662598, -0.040771484, 0.003698349, -0.006664276, 0.02267456, 0.051330566, -0.03189087, 0.017471313, 0.0119018555, -0.017105103, 0.028793335, -0.016708374, -0.04815674, -0.000118255615, -0.026168823, -0.029632568, 0.015113831, -0.013420105, 0.007221222, -0.0029087067, 0.012207031, 0.016784668, -0.009735107, -0.01398468, -0.01864624, -0.019470215, -0.0028438568, 0.0030670166, 0.0015792847, 0.00094747543, 0.0069885254, -0.02418518, -0.030944824, -0.003320694, -0.0090789795, -0.028961182, 0.007259369, -0.038879395, -0.013969421, -0.046783447, -0.024780273, 0.01209259, -0.03366089, -0.0005283356, 0.019866943, 0.002128601, -0.04788208, -0.029586792, -0.0060043335, 0.03186035, -0.04977417, 0.10241699, -0.00019335747, 0.002292633, 0.011123657, 0.0045051575, 0.03704834, -0.036315918, -0.031234741, 0.044647217, -0.014167786, 0.010269165, -0.008758545, -0.011192322, 0.005622864, 0.004016876, -0.03668213, 0.0009803772, 0.00843811, 0.024124146, 0.03048706, -0.04486084, 0.042022705, -0.019470215, -0.029647827, -0.012039185, 0.09082031, -0.062805176, -0.012924194, 0.005962372, -0.016036987, -0.05407715, -0.0184021, 0.015281677, -0.03479004, -0.052886963, -0.05340576, 0.024627686, -0.0021572113, 0.014663696, -0.014213562, -0.0018234253, 0.03074646, -0.054351807, 0.026489258, -0.026657104, -0.01008606, -0.004825592, 0.02279663, -0.032165527, -0.015586853, -0.009025574, -0.012481689, -0.021316528, -0.00015830994, -0.015541077, 0.018997192, -0.01876831, 0.007762909, 0.033081055, -0.0009918213, 0.017944336, 0.036102295, -0.023391724, 0.003227234, -0.012802124, -0.014923096, -0.012756348, 0.0043411255, 0.04421997, -0.03677368, -0.048095703, -0.03967285, 0.03137207, 0.010719299, -0.029342651, 0.04437256, -0.006134033, 0.0021400452, 0.025619507, -0.020950317, -0.042144775, 0.020095825, 0.0010976791, -0.052703857, -0.019729614, -0.03567505, -0.032043457, 0.028701782, -0.028808594, -0.006248474, 0.02319336, 0.01586914, 0.04425049, -0.038208008, -0.04888916, -0.01171875, -0.015205383, 0.024215698, 0.005054474, -0.00856781, -0.023345947, -0.008560181, -0.05065918, -0.01939392, 0.055908203, 0.02268982, 0.0058250427, -5.710125e-05, 0.03564453, 0.10534668, -0.0690918, 0.009559631, 0.010131836, -0.015296936, 0.006324768, 0.004184723, -0.0032463074, -0.014320374, -0.041656494, 0.0028896332, -0.018203735, 0.0126571655, 0.0073776245, 0.016326904, -0.044647217, -0.030456543, 0.01348114, 0.037750244, 0.011665344, 0.009254456, 0.021728516, 0.013633728, -0.023284912, -0.020843506, -0.028564453, -0.03186035, -0.026397705, -0.042297363, 0.018341064, 0.033966064, 0.007255554, 0.023727417, -0.0002539158, 0.046417236, -0.041931152, 0.038116455, -0.017211914, 0.0024299622, 0.035339355, -0.030700684, -0.0013618469, -0.046325684, 0.00036287308, -0.0009083748, 0.009094238, 0.018310547, -0.014793396, 0.014144897, 0.020202637, 0.014404297, 0.019729614, 0.02684021, -0.0038528442, -0.045776367, 0.03274536, -0.077819824, -0.0065727234, -0.01574707, -0.0025138855, 0.027511597, 0.02229309, 0.01713562, -0.016418457, 0.07531738, -0.042510986, 0.0044517517, -0.017684937, 0.02998352, -0.04309082, -0.0112838745, 0.006668091, 0.0051078796, 0.008712769, 0.0035572052, -0.062042236, 0.026748657, 0.027694702, -0.004219055, 0.054626465, -0.021514893, 0.011802673, -0.026916504, 0.004245758, -0.025299072, -0.032165527, 0.030426025, 0.01272583, -0.0068855286, 0.02571106, 0.010169983, -0.0071907043, 0.006500244, -0.016052246, 0.027435303, -0.005897522, 0.04321289, 0.0390625, -0.012176514, -0.03717041, -0.067993164, -0.018310547, -0.0395813, 0.0049438477, -0.023605347, -0.01838684, 0.09527588, 0.04925537, 0.012748718, 0.04812622, -0.015029907, 0.010612488, 0.033569336, 0.008148193, -0.023864746, 0.027404785, 0.014862061, -0.025466919, -0.009170532, -0.0033416748, -0.0061149597, 0.055145264, 0.052337646, 0.029403687, 0.006263733, -0.06427002, 0.05053711, -0.051208496, -0.06738281, 0.07989502, -0.05392456, -0.025924683, -0.009239197, -0.008560181, -0.021469116, -0.040649414, -0.04989624, 0.049560547, -0.031341553, -0.031280518, -0.003522873, -0.00894928, -0.024871826, -0.07232666, -0.015403748, -0.022705078, 0.027069092, 0.00497818, 0.048706055, -0.035064697, -0.045684814, -0.053619385, 0.035949707, -0.08276367, -0.025253296, -0.028717041, 0.01777649, 0.0046081543, 0.005794525, 0.010040283, 0.00919342, 0.014541626, -0.007904053, -0.017700195, -0.0014638901, -0.032836914, 0.02192688, -0.010917664, -0.008049011, 0.004512787, 0.028335571, 0.023742676, 0.06311035, 0.007820129, 0.030014038, -0.06726074, -0.004219055, -0.05053711, 0.02305603, 0.010917664, -0.012237549, -0.009605408, -0.016677856, -0.04864502, -0.068603516, -0.008415222, -0.00055646896, 0.02848816, 0.066345215, -0.01197052, 0.012611389, -0.03439331, 0.07269287, -0.001086235, -0.024902344, 0.002084732, 0.028945923, 0.032684326, 0.034301758, -0.019317627, 0.022064209, 0.020965576, -0.012168884, -0.016433716, 0.0141067505, 0.0064849854, -0.008575439, 0.01713562, 0.018325806, -0.019195557, -0.015625, 0.018920898, 0.041168213, -0.040100098, -0.012611389, -0.031951904, 0.014678955, 0.0020561218, -0.05682373, 0.030731201, -0.008460999, 0.002708435, 0.010612488, 0.021072388, -0.046905518, 0.003967285, -0.03286743, -0.01889038, -0.0027618408, 0.023452759, -0.008125305, -0.028930664, -0.014450073, -0.018188477, 0.03277588, -0.00044465065, -0.026611328, -0.057556152, 0.07702637, 0.022399902, -0.040130615, 0.030593872, 0.012550354, 0.01977539, -0.0003311634, 0.047210693, -0.00806427, 0.008117676, -0.00086402893, 0.004436493, 0.010513306]}, "B07QPQZ1B8": {"id": "B07QPQZ1B8", "original": "Brand: grilljoy\nName: grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men\nDescription:
      Why is this the best BBQ Grilling Tools Set for you?
      Quality, Durability, Design, Utility. You'll get 6 complete BBQ Accessories Kit.
      Why choose us?
      Grill better, faster, and with less effort
      Design
      Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you'll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
      Premium Quality
      Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
      Gift Ideas
      It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
      Note:
      1.Please keep sharp tools away from children to avoid hurting.
      2.We recommend cleaning all tools before and after use and dry them for better maintenance.
      3.Please store the tools set in a cool and dry place for save.\nFeatures: \u3010Complete Barbecue Accessories\u3011BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe.\n\u3010Premium Quality\u3011Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don't worry about rusting or cracking. You can't find a better barbecue tool set than this.\n\u3010Elegant Design\u3011As soon you remove these deluxe tools from the portable bag, you'll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm.\n\u3010Convenient Storage\u3011Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\n\u3010Satisfactory After-sales Service\u3011 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.\n", "metadata": {"Name": "grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men", "Brand": "grilljoy", "Description": "
      Why is this the best BBQ Grilling Tools Set for you?
      Quality, Durability, Design, Utility. You'll get 6 complete BBQ Accessories Kit.
      Why choose us?
      Grill better, faster, and with less effort
      Design
      Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you'll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
      Premium Quality
      Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
      Gift Ideas
      It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
      Note:
      1.Please keep sharp tools away from children to avoid hurting.
      2.We recommend cleaning all tools before and after use and dry them for better maintenance.
      3.Please store the tools set in a cool and dry place for save.", "Features": "\u3010Complete Barbecue Accessories\u3011BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe.\n\u3010Premium Quality\u3011Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don't worry about rusting or cracking. You can't find a better barbecue tool set than this.\n\u3010Elegant Design\u3011As soon you remove these deluxe tools from the portable bag, you'll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm.\n\u3010Convenient Storage\u3011Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\n\u3010Satisfactory After-sales Service\u3011 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.012840271, -0.0036354065, -0.04058838, -0.043884277, 0.008377075, -0.015670776, 0.0067329407, 0.018585205, -0.024017334, 0.04663086, 0.029724121, 0.00096940994, 0.02961731, -0.027893066, -0.021331787, -0.0049476624, 0.02960205, -0.0009965897, 0.013008118, -0.028915405, -0.012557983, -0.02444458, 0.029830933, 0.08001709, 0.06390381, -0.003856659, -0.010284424, -0.0013160706, 0.05078125, 0.016204834, 0.048339844, -0.036010742, 0.048217773, -0.014556885, -0.021224976, 0.004386902, 0.011756897, -0.014564514, -0.0079574585, 0.011459351, 8.422136e-05, 0.0066375732, -0.060150146, 0.03201294, -0.055999756, -0.019714355, -0.02859497, -0.014793396, 0.012794495, -0.0067443848, 0.039764404, 0.018630981, 0.035369873, 0.039001465, -0.016555786, 0.027770996, -0.01084137, -0.021209717, 0.015823364, 0.03378296, -0.00088071823, -0.020690918, 0.013328552, -0.021026611, -0.035827637, -0.042999268, 0.045654297, 0.0046920776, -0.06750488, -0.06451416, 0.059417725, 0.00049734116, 0.004497528, -0.033477783, 0.0002272129, -0.010971069, -0.02848816, -0.020050049, 0.0046920776, 0.021713257, -0.007160187, -0.0234375, 0.027404785, -0.01637268, 0.02015686, 0.012771606, -0.014076233, -0.007118225, 0.01586914, -0.004043579, 0.009597778, -0.02279663, -0.03753662, 0.07519531, 0.020584106, -0.0035820007, -0.041137695, -0.03125, 0.0057525635, 0.002571106, 0.039367676, -0.032470703, 0.023773193, -0.01008606, -0.029830933, 0.0073394775, -0.015686035, -0.006980896, -0.00083589554, 0.05126953, -0.0110321045, -0.033721924, 0.034362793, -0.011955261, -0.0026397705, -0.00048160553, 0.019638062, 0.015060425, 0.0046043396, -0.024642944, -0.024536133, -0.010253906, -0.001036644, 0.012245178, 0.03237915, 0.038848877, 0.0016365051, 0.004108429, -0.02355957, -0.015235901, -0.025527954, -0.00881958, 0.06402588, 0.07635498, 0.027374268, -0.019134521, 0.008148193, -0.043151855, -0.040527344, 0.011405945, 0.004924774, 0.006580353, 0.039733887, -0.030288696, 0.047943115, -0.011833191, 0.02885437, 0.045074463, 0.019500732, 0.02671814, 0.024993896, 0.03692627, 0.04208374, 0.003068924, -0.039520264, 0.0030021667, -0.002922058, -0.003250122, -0.031143188, -0.022033691, -0.019348145, -0.019256592, 0.0023078918, -0.049468994, -0.041809082, 0.02406311, 7.3611736e-05, -0.002046585, -0.00091457367, -0.0076560974, -0.00017082691, 0.03024292, -0.010635376, -0.036712646, 0.004798889, -0.017974854, -0.026138306, 0.06842041, 0.04360962, -0.09020996, -0.043518066, -0.06567383, 0.076416016, -0.02229309, 0.011306763, -0.059936523, 0.026870728, -0.002960205, 0.0023498535, 0.017547607, 0.024368286, -0.018066406, -0.048339844, 0.037017822, -0.005634308, 0.024307251, -0.033813477, 0.052246094, -0.00095939636, -0.07574463, 0.029434204, -0.012214661, -0.002008438, -0.023910522, -0.041931152, -0.026428223, -0.004371643, 0.003162384, 0.004436493, 0.048339844, 0.007457733, -0.006996155, -0.0069351196, -0.01902771, -0.011833191, -0.014877319, 0.0026054382, 8.749962e-05, 0.02558899, 0.007118225, 0.04537964, 0.008773804, 0.02545166, 0.028778076, 0.0057373047, 0.018203735, -0.029785156, 0.005962372, -0.026550293, 0.0368042, -0.047454834, 0.012130737, 0.09295654, 0.059936523, -0.044525146, 0.031463623, 0.03125, 0.054626465, -0.02909851, 0.0069236755, -0.0017566681, 0.016906738, -0.023117065, 0.02619934, 0.024261475, -0.0013275146, -0.0030937195, 0.015571594, -0.0068473816, 0.025756836, -0.003528595, 0.033691406, 0.008285522, -0.020080566, 0.005619049, 0.04055786, -0.07543945, -0.014297485, -0.036376953, 0.01525116, -0.0025138855, -0.049591064, 0.035949707, -0.05090332, 0.059570312, -0.01586914, 0.031234741, 0.0078086853, -0.0077171326, 0.009246826, -0.0062179565, -0.058563232, -0.024047852, 0.015319824, 0.062347412, -0.04812622, -0.035308838, 0.009605408, -0.019760132, -0.0057296753, -0.008216858, 0.008811951, 0.09838867, -0.0046806335, 0.024383545, 0.041900635, 0.06274414, -0.02508545, -0.01386261, -0.02861023, 0.007949829, 0.014541626, -0.015640259, -0.0017213821, 0.0368042, -0.031799316, 0.014778137, 0.03942871, -0.016052246, 0.008773804, 0.00983429, 0.022064209, -0.019699097, 0.0014314651, -0.013305664, -0.011024475, -0.006126404, -0.025375366, -0.008300781, -0.048217773, 0.04425049, 0.07476807, 0.044799805, 0.040496826, 0.04534912, 0.0057907104, 0.0020484924, 0.09375, 0.055358887, 0.016815186, -0.0033493042, -0.0287323, 0.009490967, 0.0038661957, -0.009681702, -0.010612488, 0.00831604, 0.006286621, -0.009727478, 0.026748657, 0.028076172, 0.043670654, 0.013328552, 0.012840271, -0.0040779114, -0.012916565, -0.008773804, -0.009628296, -0.027908325, -0.02192688, -0.028030396, -0.03717041, 0.013534546, -0.015197754, -0.03677368, 0.039367676, 0.013687134, 0.010391235, -0.03579712, 0.005809784, -0.0045661926, -0.04522705, 0.025756836, 0.009147644, 0.021621704, -0.008552551, -0.034820557, 0.0027713776, -0.020233154, -0.056427002, -0.0025539398, -0.009407043, -0.02041626, 0.06530762, 0.013633728, -0.018127441, 0.01234436, 0.040039062, 0.05508423, 0.008995056, 0.024841309, 0.024291992, -0.051513672, -0.0090789795, 0.028030396, -0.03692627, 0.017913818, -0.046813965, -0.008987427, 0.008865356, -0.04373169, 0.018981934, 0.0008716583, 0.062347412, -0.014442444, 0.03845215, 0.01902771, 0.011756897, -0.0055160522, -0.02053833, 0.009880066, 0.050750732, -0.04019165, -0.014030457, -0.024612427, 0.0018148422, 0.047790527, -0.03491211, 0.026824951, -0.047698975, -0.08721924, 0.016906738, -0.006122589, -0.030639648, -0.014915466, -0.05734253, -0.053863525, -0.054229736, -0.0052108765, 0.050323486, 0.016342163, 0.020309448, -0.018844604, 0.058166504, 0.012420654, -0.039154053, 0.04623413, -0.0047950745, -0.010627747, -0.05279541, 0.03161621, -0.014183044, 0.03692627, 0.026535034, -0.054595947, 0.018707275, 0.0058631897, 0.040740967, 0.022109985, 0.040496826, 0.00016891956, -0.0064697266, -0.013031006, -0.013320923, -0.06185913, -0.022964478, -0.0048103333, -0.039764404, 0.056152344, -0.037353516, -0.032318115, -0.027877808, -0.053527832, 0.032287598, -0.044158936, 0.006511688, -0.053649902, -0.030975342, -0.009277344, -0.032684326, -0.026947021, 0.027053833, 0.04168701, 0.030853271, 0.0015363693, 0.02331543, 0.034240723, 0.042022705, 0.013175964, -0.008934021, -0.03677368, -0.03677368, 0.06677246, -0.008880615, 0.022979736, -0.0602417, 0.078430176, -0.021514893, 0.019012451, -0.0030784607, -0.02468872, 0.03805542, 0.033294678, -0.009506226, 0.025939941, 0.005332947, -0.013214111, 0.009597778, -0.034606934, -0.009559631, -0.020263672, -0.022018433, -0.038635254, 0.07507324, 0.02078247, 0.0061569214, 0.024215698, 0.051940918, 0.008018494, 0.028717041, 0.0012454987, 8.2314014e-05, 0.020645142, 0.053466797, 0.0021324158, 0.021240234, 0.009033203, -0.00730896, 0.04309082, 0.019714355, -0.043884277, 0.025802612, 0.019454956, -0.060913086, -0.026870728, 0.058502197, 0.0423584, -0.020507812, -0.040008545, -0.064575195, 0.025726318, -0.08959961, -0.00053453445, 0.018127441, -0.024490356, -0.019851685, 0.034606934, 0.0077400208, -0.022064209, -0.007896423, 0.0138168335, 0.038970947, 0.0008749962, 0.037597656, 0.0008530617, -0.008514404, -0.04547119, 0.0031147003, -0.011886597, 0.023788452, 0.054016113, 0.0015516281, 0.052337646, 0.0061798096, -0.0039596558, 0.0038700104, -0.025482178, 0.0036449432, 0.009384155, -0.01878357, -0.014823914, -0.029830933, -0.024536133, 0.033233643, 0.013969421, -0.034301758, -0.030441284, -0.029907227, -0.008415222, -0.018814087, -0.0335083, -0.020874023, -0.06695557, -0.005844116, 0.0034217834, -0.077941895, -0.09124756, 0.04055786, 0.013061523, -0.025634766, 0.012168884, 0.031280518, -0.037139893, -0.026443481, -0.06756592, -0.0069847107, 0.034301758, 0.0065574646, -0.0070991516, -0.012817383, -0.011520386, -0.0018873215, 0.052978516, -0.012710571, -0.00466156, -0.039154053, -0.006259918, 0.0027160645, 0.025039673, 0.062408447, -0.0010023117, 0.0413208, -0.032592773, 0.010658264, -0.053527832, 0.0001899004, 0.040130615, -0.008422852, -0.02116394, -0.045806885, 0.03353882, -0.0071525574, -0.0002977848, -0.008255005, 0.0070533752, 0.008262634, -0.009963989, -0.037322998, 0.010627747, -0.0020484924, -0.06488037, 0.006263733, -0.0024585724, -0.019821167, 0.061553955, 0.024902344, -0.024261475, -0.031707764, -0.0014886856, -0.015655518, 0.011016846, -0.017349243, -0.028533936, 0.047424316, -0.037872314, -0.011123657, -0.0692749, 0.09472656, 0.08605957, -0.036468506, 0.0025157928, -0.0038814545, -0.03878784, -0.0033054352, 0.0018129349, -0.024490356, 8.332729e-05, -0.005748749, -0.026626587, 0.012145996, -0.029693604, -0.000500679, -0.033966064, -0.021499634, -0.012237549, -0.01739502, 0.017364502, -0.033233643, 0.013442993, 0.0003669262, 0.02003479, 0.025375366, -0.0064697266, -0.010604858, 0.003036499, -0.020385742, -0.011817932, -0.018463135, -0.0064468384, -0.036315918, 0.03152466, 0.0036678314, -0.10992432, 0.04269409, 0.06866455, -0.014442444, -0.016403198, 0.016555786, -0.035217285, 0.0014123917, -0.0010786057, 0.02734375, -0.021392822, 0.015396118, -0.002319336, -0.05206299, 0.0055351257, 0.007843018, -0.040985107, 0.033294678, -0.010871887, -0.049957275, 0.04776001, -0.032165527, -0.00028896332, 0.015449524, 0.036865234, 0.010002136, 0.04031372, -0.06524658, -0.0034255981, 0.028961182, 0.0713501, -0.0054969788, -0.02696228, 0.04827881, 0.016921997, -0.03753662, 0.022064209, 0.024002075, -0.026901245, -0.015960693, 0.0149383545, -0.021133423, -0.011642456, 0.011161804, 0.004638672, -0.032989502, -0.0018939972, -0.062438965, 0.018493652, 0.013412476, -0.0340271, -0.024475098, -0.034301758, -0.0017223358, 0.0012178421, -0.016571045, -0.029678345, 0.0066833496, -0.025161743, 0.006801605, 0.002336502, -3.0577183e-05, -0.013267517, -0.027008057, 7.688999e-05, -0.03274536, -0.0340271, 0.03744507, -0.027114868, -0.0018033981, 0.014472961, -0.017303467, 0.030395508, -0.0009870529, -0.033477783, -0.006549835, -0.010696411, -0.01134491, -0.025894165, 0.00868988, 0.06573486, -0.046813965, -0.03286743, -0.093566895, 0.02281189, 0.01033783, -0.0016765594, 0.03955078, -0.04095459, 0.0118637085, 0.008079529, 0.00026106834, -0.039886475, 0.022003174, 0.0066452026, -0.04660034, 0.004016876, -0.020553589, 0.009880066, 0.023345947, -0.011772156, -0.0070114136, 0.04244995, -0.012870789, -0.034942627, -0.05496216, -0.021240234, 0.0021686554, 0.009994507, 0.012664795, -0.009895325, -0.019836426, -0.03338623, -0.0073280334, -0.0056915283, 0.0045928955, 0.009109497, 0.044677734, 0.0109939575, -0.04031372, 0.0035057068, 0.02947998, -0.03591919, 0.08178711, -0.015197754, 0.00078105927, 0.0079574585, 0.002735138, 0.0051116943, 0.031097412, -0.019699097, 0.010688782, 0.0037975311, 0.006038666, 0.025238037, -0.019363403, 0.009056091, -0.009124756, 0.015357971, 0.023071289, 0.03677368, -0.028030396, 0.00680542, -0.0017995834, -0.01159668, -0.0038471222, -0.0069618225, -0.009269714, -0.037261963, -0.012817383, 0.0057754517, 0.0670166, 0.0025634766, 0.050720215, -0.009407043, 0.07989502, -0.015106201, 0.008354187, 0.00756073, 0.00548172, 0.02053833, -0.059020996, -0.031585693, -0.03652954, -7.56979e-05, 0.0014820099, 0.0031166077, 0.0069274902, -0.010398865, 0.01411438, 0.008621216, 0.028167725, -0.003856659, -0.004360199, 0.057922363, -0.028274536, -0.0064353943, 0.017654419, -0.0033569336, -0.018096924, 0.011665344, 0.0057525635, 0.011886597, 0.0335083, 0.008865356, 0.006969452, -0.01008606, 0.03540039, 0.018218994, 0.01210022, -0.033081055, -0.0014657974, -0.057037354, -0.010978699, 0.027511597, 0.0076065063, -0.035949707, -0.008453369, 0.023849487, -0.04031372, -0.04260254, 0.0113220215, 0.026275635, 0.014389038, -0.0015068054, -0.023742676, -0.01902771, 0.01777649, 0.02130127, 0.012161255, 0.04156494, 0.017196655, -0.039367676, -0.0028133392, -0.044281006, 0.008651733, 0.021484375, 0.013130188, 0.032073975, -0.0007953644, -0.059539795, -0.0256958, -0.019561768, -0.034606934, -0.004825592, 0.044311523, -0.014511108, 0.028427124, -0.013259888, 0.02178955, 0.043823242, 0.011520386, 0.022705078, -0.020187378, -0.0066490173, -0.010513306, -0.01335907, 0.012504578, -0.033447266, -0.020233154, 0.0041999817, -0.00699234, 0.001742363, 0.04458618, 0.018432617, -0.030471802, -0.018447876, -0.010276794, 0.0155181885, -0.005935669, 0.011306763, -0.04232788, -0.029220581, -0.024261475, -0.024673462, -0.017242432, -0.0211792, -0.056152344, 0.049682617, -0.0021953583, -0.015167236, -0.021697998, -0.020889282, 0.03616333, -0.047088623, 0.01259613, -0.0071792603, 0.08581543, -0.00592041, 0.08343506, -0.04498291, -0.05569458, -0.08270264, 0.011146545, -0.11682129, 4.8816204e-05, -0.024307251, 0.02458191, 0.02267456, -0.017562866, -0.019470215, 0.10028076, -0.010398865, 0.0064926147, -0.05480957, -0.036987305, -0.027816772, 0.04473877, -0.010902405, 0.01335144, -0.018417358, 0.055755615, 0.0018806458, 0.056274414, 0.006729126, -0.03643799, -0.034606934, -0.01197052, -0.03286743, 0.020401001, -0.01676941, 0.010398865, -0.008300781, 0.0036468506, -0.031677246, -0.041534424, 0.0036125183, -0.005367279, 0.005634308, 0.019897461, -0.006549835, -0.033050537, -0.00035095215, -0.006427765, -0.009017944, 0.021347046, 0.00869751, 0.020385742, 0.01184845, 0.012580872, -0.021881104, 0.025970459, 0.013977051, -0.05984497, -0.01550293, 0.0022277832, 0.028289795, -0.033843994, 0.00724411, -0.016235352, -0.039611816, -0.053741455, 0.053741455, 0.041625977, -0.028442383, -0.0065078735, -0.013069153, -0.008460999, 0.025024414, -0.028518677, 0.01890564, -0.06439209, 0.04547119, 0.03164673, 0.02507019, 0.020736694, 0.0044059753, -0.0418396, -0.008834839, 0.021484375, 0.0018177032, 0.008102417, -0.021148682, 0.042633057, 0.0013132095, 0.0748291, -0.019042969, -0.07702637, -0.059326172, 0.04248047, 0.021148682, -0.005794525, 0.046722412, -0.02204895, -0.0016765594, 0.04800415, -0.024734497, -0.021087646, 0.016815186, 0.06555176, 0.017745972, 0.013626099]}, "B071D1SYLY": {"id": "B071D1SYLY", "original": "Brand: SENMOD\nName: SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails\nDescription:

      The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4\" SAE inverted flare and the outlet is a 3/8\" NPT female pipe thread.

      • 262,500 BTU's Per Hour Capacity.\u00a0
      • Set at standard propane low pressure - 11\" Water Column.
      • Regulator body is 6 1/4\" Overall Height.
      • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
      • Adjustable gas pressure. Also has a pressure tap.\u00a0
      • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
      • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
      • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
      • Durable and easy to use.
      • Dual stage design maintains constant gas pressure under changing demand and conditions
      • 2 x 15\" Acme x 1/4\" Inverted flare pigtails are included.\u00a0
      \nFeatures: 262,500 BTU's Per Hour Capacity.\nSet at standard propane low pressure - 11\" Water Column.\nIf you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product.\nThe Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.\nMounting screws not included.\n", "metadata": {"Name": "SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails", "Brand": "SENMOD", "Description": "

      The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4\" SAE inverted flare and the outlet is a 3/8\" NPT female pipe thread.

      • 262,500 BTU's Per Hour Capacity.\u00a0
      • Set at standard propane low pressure - 11\" Water Column.
      • Regulator body is 6 1/4\" Overall Height.
      • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
      • Adjustable gas pressure. Also has a pressure tap.\u00a0
      • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
      • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
      • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
      • Durable and easy to use.
      • Dual stage design maintains constant gas pressure under changing demand and conditions
      • 2 x 15\" Acme x 1/4\" Inverted flare pigtails are included.\u00a0
      ", "Features": "262,500 BTU's Per Hour Capacity.\nSet at standard propane low pressure - 11\" Water Column.\nIf you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product.\nThe Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.\nMounting screws not included.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.019378662, -0.019729614, -0.012001038, -0.016235352, -0.02947998, -0.000664711, -0.005104065, 0.005138397, -0.020767212, -0.005672455, -0.008590698, 0.020950317, -0.04916382, -0.024017334, 0.0014381409, -0.052093506, 0.015075684, 0.03048706, 0.0061683655, -0.018600464, -0.0007891655, -0.010368347, -0.02798462, 0.068237305, 0.011680603, -0.006839752, 0.021835327, -0.0049209595, 0.020050049, -0.009460449, 0.024902344, -0.023269653, -0.00031924248, 0.023376465, 0.014480591, 0.0022354126, 0.022109985, 0.013084412, 0.018997192, 0.010246277, 0.007408142, -0.016204834, 0.016601562, -0.021087646, -0.025726318, 0.027435303, -0.029022217, -0.021026611, 0.026992798, 0.0040664673, -0.03375244, -0.008911133, -0.024215698, -0.025405884, -0.0095825195, -0.01890564, -0.015342712, -0.019165039, 0.018081665, 0.028137207, 0.016815186, 0.010108948, -0.0041007996, -0.012504578, -0.050354004, 0.039886475, 0.015548706, -0.0015172958, 0.055419922, -0.04232788, -0.05718994, 0.033477783, -0.0024852753, -0.0011405945, -0.047729492, 0.016067505, -0.02482605, -0.017288208, 0.04522705, -0.009468079, 0.01838684, 0.007534027, 0.035949707, 0.009361267, -0.030258179, -0.024139404, -0.0115356445, -0.007083893, -0.05505371, -0.006198883, -0.034454346, 0.012214661, -0.04232788, -0.010551453, -0.037506104, 0.015029907, 0.0037555695, -0.004749298, 0.04650879, 0.025817871, -0.013328552, -0.03552246, 0.007083893, -0.007209778, 0.011917114, 0.030395508, 0.004753113, -0.0025730133, 0.01802063, 0.005584717, -0.016601562, 0.038726807, 0.016433716, -0.0016412735, -0.0105896, -0.023071289, -0.030166626, 0.044891357, 0.0056381226, 0.023147583, -0.018997192, 0.007019043, 0.0041542053, -0.010314941, -0.005996704, -0.008277893, -0.014198303, -0.008239746, -0.040893555, 0.055145264, -0.02330017, -0.028778076, 0.011367798, 0.06402588, 0.016830444, -0.031051636, 0.024658203, -0.0023460388, 0.035888672, -0.010520935, -0.004562378, -0.009963989, 0.024215698, 0.017028809, -0.039520264, 0.041229248, 0.029327393, -0.01739502, -0.041748047, -0.056030273, -0.009880066, -0.035858154, 0.013923645, 0.002073288, 0.016555786, -0.011489868, -0.017425537, -0.007980347, 0.027954102, -0.0037059784, -0.018157959, -0.05508423, -0.020706177, -0.03100586, -0.059631348, 0.05682373, -0.021530151, -0.009803772, 0.024810791, 0.027404785, 0.037872314, 0.027297974, 0.036743164, 0.0129852295, 0.0024642944, -0.021484375, 0.02003479, 0.051635742, 0.048736572, -0.113586426, -0.06109619, -0.040802002, 0.12866211, -0.042541504, -0.011054993, -0.009689331, 0.00019526482, 0.00881958, 0.0023040771, 0.0034427643, -0.016281128, 0.021011353, -0.041015625, -0.0031414032, -0.018341064, -0.006931305, 0.024459839, 0.022369385, -0.0036563873, -0.015357971, 0.00095033646, 0.023498535, -0.0124053955, 0.012161255, -0.01448822, -0.008644104, 0.0006227493, 0.020324707, 0.040374756, 0.016021729, -0.011688232, -0.006336212, 0.006549835, -0.03692627, -0.03778076, 0.026306152, -0.015060425, 0.022872925, 0.0068626404, 0.011390686, 0.035339355, -0.024475098, 0.04937744, 0.025360107, 0.005077362, -0.029418945, -0.0049095154, -0.036834717, 0.029754639, -0.03012085, 0.05029297, 0.046661377, 0.012557983, 0.0115737915, -0.042236328, 0.008560181, 0.009269714, -0.005619049, -0.0063819885, 0.030914307, 0.017959595, -0.055847168, -0.016799927, 0.045410156, -0.019378662, -0.031188965, 0.0018596649, 0.026916504, -0.002729416, 0.0069007874, 0.08343506, -0.0093307495, 0.031677246, 0.007534027, -0.0010385513, 0.018493652, -0.020492554, 0.023834229, -0.06011963, 0.023971558, -0.008361816, -0.015098572, 0.015060425, -0.024719238, 0.080078125, -0.01574707, 0.04360962, 0.012397766, -0.031463623, 0.009429932, 0.0048942566, -0.0076446533, 0.0019073486, 0.006439209, -0.06945801, -0.02078247, -0.010917664, 0.030929565, -0.012557983, -0.02684021, -0.015991211, -0.004714966, -0.029251099, -0.009727478, 0.057861328, 0.031433105, -0.025375366, -0.042236328, -0.020812988, -0.004951477, 0.04864502, -0.03286743, -0.048828125, 0.004863739, -0.007320404, -0.036010742, 0.0847168, -0.04397583, 0.04232788, -0.022506714, 0.025878906, 0.056365967, -0.008125305, -0.002298355, 0.0082092285, -0.007949829, -0.005382538, 0.008766174, 0.0044555664, 0.021087646, -0.036865234, 0.03729248, 0.026550293, 0.0016469955, 0.017288208, 0.0007953644, -0.0143585205, 0.05038452, 0.020965576, 0.0847168, -0.017913818, 0.0069389343, 0.002073288, 0.020339966, 0.025787354, -0.017501831, 0.015029907, 0.0008802414, -0.02243042, -0.007007599, 0.033447266, -0.0107803345, 0.018051147, 0.02468872, 0.009361267, -0.006000519, -0.005104065, 0.07989502, 0.00907135, -0.05114746, -0.015563965, -0.033203125, -0.00831604, 0.027069092, -0.021987915, -0.06097412, 0.050689697, -0.0064964294, 0.024932861, -0.0014848709, 0.04260254, -0.0031852722, 0.0049057007, 0.00819397, 0.030532837, -0.03479004, -0.01953125, 0.015541077, 0.010360718, -0.042022705, -0.005405426, -0.05987549, -0.096191406, -0.07067871, 0.093933105, 0.022537231, -0.08282471, -0.057647705, 0.0034046173, 0.0049819946, -0.0026855469, -0.036193848, -0.01361084, 0.005847931, 0.012565613, 0.006801605, 0.027679443, -0.025283813, 0.039764404, 0.0075912476, 0.010643005, 0.018707275, -0.015930176, 0.0068206787, 0.004081726, 0.021697998, 0.062927246, 0.02029419, 0.03652954, -0.023849487, 0.03314209, 0.036254883, -0.026870728, 0.0034236908, 0.03048706, -0.010406494, -0.02217102, 0.03756714, -0.1026001, 0.008415222, -0.054595947, -0.008552551, -0.051513672, 0.008155823, 0.018753052, -0.10424805, 0.02734375, -0.0826416, 0.051605225, -0.00060272217, -0.0020637512, -0.014762878, -0.013183594, -0.02508545, -0.03845215, 0.01638794, -0.015419006, -0.007724762, -0.059387207, 0.02281189, 0.08795166, -0.10510254, 0.029541016, 0.02355957, -0.054992676, 0.0031833649, 0.024032593, 0.03579712, 0.013824463, 0.043914795, 0.012496948, -0.0046577454, -0.021514893, -0.02935791, -0.026107788, 0.0022716522, 0.0013418198, 0.00674057, 0.013244629, -0.013725281, -0.08215332, -0.03286743, 0.0075187683, 0.0049324036, 0.038970947, -0.029815674, -0.047088623, -0.06506348, -0.007255554, -0.049713135, 0.016098022, -0.0029449463, 0.039520264, 0.023773193, 0.006439209, 0.11755371, 0.011734009, 0.028442383, 0.01789856, -0.026641846, -0.017181396, -0.009185791, -0.014144897, -0.0020217896, -0.024932861, 0.0009584427, 0.0016670227, 0.0075569153, 0.029907227, -0.04046631, -0.032165527, 0.08538818, 0.015510559, -0.019973755, 0.011955261, -0.04244995, -0.0021743774, 0.011672974, 0.026641846, -0.01953125, -0.041748047, 0.018478394, -0.08496094, 0.0680542, 0.0070266724, -0.0072288513, 0.045318604, 0.0335083, 0.0049324036, 0.053131104, 0.04864502, 0.0014305115, 0.042114258, 0.026947021, 0.0036392212, -0.0077400208, 0.007713318, -0.07885742, 0.008018494, 0.004348755, -0.054901123, 0.000995636, -0.003616333, -0.025024414, -0.0036830902, 0.015930176, 0.0013618469, -0.009757996, 0.01235199, -0.041900635, 0.022491455, -0.0345459, -0.0017166138, 0.014228821, -0.02734375, -0.025772095, -0.013549805, 0.034362793, -0.05895996, -0.009864807, -0.023223877, -0.017562866, 0.03353882, 0.043670654, -0.020599365, -0.019195557, 0.03189087, 0.011421204, -0.062286377, -0.044433594, 0.03111267, 0.05908203, 0.0009570122, -0.0012273788, -0.00598526, 0.0015535355, -0.0017681122, 0.045288086, -0.0077056885, -0.07867432, -0.018157959, 0.04446411, 0.031097412, -0.055755615, -0.0018796921, -0.028213501, 0.0004749298, 0.0146102905, -0.025375366, -0.0004427433, -0.011184692, -0.0026817322, -0.06964111, -0.023422241, -0.012374878, 0.0035591125, -0.023788452, 0.0019817352, -0.02041626, -0.0044403076, -0.026779175, 0.004470825, -0.024414062, 0.009407043, -0.013214111, 0.011054993, 0.029296875, 0.007045746, -0.0008597374, -0.005493164, -0.021484375, -0.007385254, -0.020080566, -0.031799316, -0.009414673, -0.025970459, -0.024002075, 0.015899658, 0.0047836304, 0.049743652, 0.031799316, 0.020828247, -0.03817749, 0.03387451, -0.046905518, 0.012313843, 0.013267517, -0.02305603, -0.039794922, -0.007171631, 0.051513672, -0.0071487427, -0.014335632, 0.018722534, 0.02319336, 0.03086853, -0.005393982, -0.079711914, 0.00014352798, -0.0030498505, 0.004184723, 0.017868042, 0.0034618378, -0.02319336, 0.020004272, 0.0033931732, 0.02204895, -0.004486084, -0.009353638, 0.0045814514, -0.020629883, 0.001326561, -0.015289307, -0.0020637512, -0.023544312, 0.003692627, -0.02960205, 0.013259888, 0.05505371, -0.00020813942, 0.0014238358, 0.0013494492, -0.010620117, -0.035980225, -0.04736328, 0.02041626, 0.04800415, 0.0018558502, -0.045654297, 0.011932373, -0.0037288666, -0.013519287, -0.037384033, -0.03616333, -0.013313293, 0.03982544, 0.0028800964, -0.013618469, 0.0085372925, 0.039886475, 0.019485474, -0.0008416176, -0.04663086, 0.007068634, 0.0031738281, -0.007549286, -0.0053367615, -0.00944519, -0.009803772, 0.028427124, -0.025756836, 0.00894165, 0.007637024, 0.011390686, -0.014274597, 0.05126953, -0.0031661987, 0.0069389343, 0.019729614, -0.049072266, -0.0690918, -0.009971619, 0.0357666, -0.05618286, 0.012252808, 0.012832642, -0.0065078735, 0.033172607, -0.02746582, 0.027786255, 0.008575439, -0.00819397, -0.0035438538, -0.007911682, -0.010398865, -0.018615723, 0.060394287, 0.00027394295, -0.002128601, -0.029586792, 0.03591919, -0.012191772, -0.023864746, -0.015556335, -0.010559082, 0.047027588, -0.035064697, -0.015777588, 0.024032593, 0.015655518, -0.03475952, -0.007686615, 0.013893127, -0.043304443, -0.03515625, 0.018066406, 0.007843018, 0.07006836, 0.004295349, -0.075805664, 0.026535034, 0.06762695, -0.061706543, 0.03753662, 0.006916046, 0.024490356, 0.0019197464, -0.046569824, -0.008155823, 0.005367279, -0.031402588, 0.009124756, 0.002916336, 0.01713562, -0.036956787, -0.013084412, -0.020843506, -0.028549194, -0.037322998, 0.0513916, -0.022750854, 0.0049858093, 0.009498596, -0.021331787, 0.007686615, -0.008308411, -0.033996582, 0.0056381226, 0.00422287, 0.015083313, -0.020828247, -0.010803223, 0.03353882, -0.036956787, -0.041931152, 0.02027893, 0.055358887, 0.0022258759, 0.03048706, 0.061340332, 0.01260376, 0.019927979, 0.044952393, 0.01109314, -0.056427002, 0.038970947, 0.013763428, -0.05819702, -0.054656982, -0.032714844, -0.028457642, -0.0029335022, -0.060821533, 0.0026111603, 0.04849243, 0.05130005, 0.03591919, -0.04498291, -0.06793213, 0.00920105, -0.03955078, 0.027572632, -0.016052246, -0.01524353, 0.021270752, 0.0072669983, -0.09466553, -0.06994629, 0.012199402, 0.030715942, 0.013336182, -0.015510559, -0.007820129, 0.010787964, -0.0104904175, 0.054260254, -0.016143799, 0.0038757324, -0.020065308, 0.03366089, -0.0077667236, 0.067871094, -0.05239868, -0.011413574, -0.041534424, 0.03189087, -0.017196655, 0.067871094, -0.109558105, -0.051971436, 0.013298035, 0.08081055, -0.015220642, 0.002664566, 0.010856628, -0.0025978088, -0.012512207, -0.013877869, -0.0051727295, -0.03515625, 0.0057868958, -0.047943115, -0.03729248, -0.026626587, -0.016159058, -0.0040740967, -0.020431519, 0.016189575, -0.010444641, 0.026382446, -0.00051259995, -0.018035889, 0.022018433, -0.036346436, 0.031143188, -0.002735138, 0.012664795, 0.0047302246, -0.02571106, -0.027313232, 0.010650635, 0.025863647, -0.0046310425, 0.022583008, -0.008766174, 0.029815674, 0.0012845993, -0.052246094, 0.0024528503, -0.028213501, 0.0056762695, -0.012138367, 0.0074157715, 0.005001068, -0.0074005127, 0.04168701, 0.003276825, 0.03955078, -0.02319336, 0.041412354, 0.012275696, -0.017944336, 0.0005221367, -0.00983429, -0.017044067, -0.031036377, 0.011795044, 0.010253906, -0.007835388, 0.08917236, 0.0077667236, -0.011550903, 0.070617676, -0.00573349, -0.028427124, -0.011978149, 0.015716553, -0.026107788, -0.07092285, -0.032592773, 0.040924072, -0.0065231323, 0.004020691, -0.062164307, 0.0680542, -0.012207031, 0.019180298, -0.0011367798, -0.044830322, -0.0155181885, 0.026977539, -0.007698059, -0.021240234, 0.028045654, -0.009399414, -0.0019521713, 0.019241333, 0.039916992, 0.015975952, 0.033325195, 0.013618469, -0.015640259, 0.040771484, -0.013244629, 0.0067329407, -0.03189087, 0.032073975, 0.023361206, 0.0013494492, -0.014808655, -0.058380127, 0.012245178, -0.013259888, -0.01020813, -0.020309448, 0.02319336, -0.016448975, 0.031951904, 0.008201599, -0.027420044, -0.0022411346, -0.012062073, 0.006652832, 0.007320404, -0.032287598, -0.033172607, -0.07122803, -0.03982544, -0.031402588, -0.08203125, 0.028167725, -0.037231445, -0.043395996, -0.0017728806, 0.014816284, -0.042236328, -0.079956055, -0.03503418, -0.026809692, 0.009429932, -0.014518738, 0.037994385, 0.00242424, -0.013290405, -0.05303955, -0.02217102, -0.0028514862, 0.046783447, -0.02708435, 0.013023376, -0.0045204163, 0.0134887695, 0.0871582, 0.06555176, 0.034118652, 0.01651001, 0.029052734, -0.035858154, -0.023895264, 0.016113281, 0.009780884, -0.022994995, -0.02519226, 0.02243042, 0.0057640076, 0.054382324, -0.008346558, 0.020767212, -0.02027893, 0.014480591, -0.012771606, -0.0034103394, 0.017501831, -0.015975952, 0.027114868, 0.040008545, -0.03677368, -0.039855957, -0.018371582, -0.00022852421, 0.012886047, -0.039611816, 0.011230469, -0.023971558, 0.0062675476, -0.046936035, -0.012130737, 0.0043258667, 0.02178955, -0.048583984, -0.054229736, -0.0065078735, 0.016647339, -0.026473999, 0.010192871, 0.010307312, -0.016952515, 0.0082473755, 0.023620605, -0.035461426, -0.012756348, -0.044189453, -0.048980713, -0.047302246, 0.013122559, 0.025634766, -0.032989502, -0.036895752, 0.0040740967, -0.0016889572, -0.018249512, 0.0054359436, -0.021331787, -0.026397705, 0.015960693, 0.024032593, 0.012954712, -0.004470825, 0.0017251968, -0.007949829, -0.046417236, -0.011077881, 0.038360596, -0.04260254, -0.051605225, -0.004917145, 0.016845703, 0.053894043, -0.00699234, -0.033416748, -0.044158936, 0.025222778, -0.00046110153, -0.0140686035, 0.023635864, -0.02355957, 0.021743774, 0.031051636, -0.0118255615, -0.01285553, -0.010398865, 0.051635742, -0.008865356, 0.00289917]}, "B01LYJBJG2": {"id": "B01LYJBJG2", "original": "Brand: PMC Supplies LLC\nName: Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set\nDescription: This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

      Designed with a lid handle for easy lid removal.

      Made in the USA by PMC Supplies

      Dimensions: Outer: 4\" (101 mm) Diameter x 4\" (101 mm) Height, Inner: 1.7\" Diameter x 1.5\" Depth, and Wall Thickness: 1.15\" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

      Also Includes:

      (1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or \"slag\" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

      (1) Pair of 12-1/2\" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

      (2) Graphite Crucibles: 1.75\" Height x 1.5\" in Diameter; with a capacity of 5 ounces of gold.

      (1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

      Please contact us with any questions. Thanks for looking!\nFeatures: Made in the USA By PMC Supplies\nRequires 2 standard propane bottles and propane tips (not included)\nIncludes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups\nMelts 2 to 5 ounces of gold\nCan also be used with silver, copper, brass, aluminum, and other precious metals\n", "metadata": {"Name": "Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set", "Brand": "PMC Supplies LLC", "Description": "This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

      Designed with a lid handle for easy lid removal.

      Made in the USA by PMC Supplies

      Dimensions: Outer: 4\" (101 mm) Diameter x 4\" (101 mm) Height, Inner: 1.7\" Diameter x 1.5\" Depth, and Wall Thickness: 1.15\" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

      Also Includes:

      (1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or \"slag\" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

      (1) Pair of 12-1/2\" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

      (2) Graphite Crucibles: 1.75\" Height x 1.5\" in Diameter; with a capacity of 5 ounces of gold.

      (1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

      Please contact us with any questions. Thanks for looking!", "Features": "Made in the USA By PMC Supplies\nRequires 2 standard propane bottles and propane tips (not included)\nIncludes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups\nMelts 2 to 5 ounces of gold\nCan also be used with silver, copper, brass, aluminum, and other precious metals", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030349731, -0.006626129, -0.029830933, 0.0135269165, -0.031555176, -0.0062179565, -0.01108551, -0.01272583, 0.0015535355, 0.032958984, -0.0093688965, 0.044799805, 0.018295288, -0.0032234192, 0.004360199, 0.0011873245, 0.00969696, 0.026779175, 0.00932312, -0.01725769, -0.004852295, -0.027893066, 0.00315094, 0.03894043, 0.016174316, 0.013320923, -0.022705078, 0.028808594, -0.019638062, -0.00522995, 0.013320923, -0.0011749268, 0.034729004, 0.012664795, -0.023605347, 0.07763672, 0.027786255, -0.0073776245, 0.0023231506, 0.015991211, 0.041290283, -0.027999878, -0.002653122, 0.025756836, -0.044891357, 0.0101623535, 0.022277832, 0.016784668, 0.006023407, 0.057495117, -0.012016296, -0.011398315, -0.019973755, 0.031204224, 0.00843811, 0.0037937164, 0.004421234, -0.029083252, -0.0053710938, 0.017440796, 0.016860962, 0.025360107, 0.007007599, 0.010787964, -0.049194336, -0.033081055, -0.009735107, 0.009033203, 0.07525635, -0.048614502, -0.021453857, 0.07006836, 0.00440979, -0.049926758, -0.025115967, 0.0032043457, 0.010429382, -0.014953613, -0.014884949, 0.0021076202, -0.0054969788, 0.044708252, -0.034454346, -0.07122803, 0.024841309, -0.06335449, 0.0005607605, -0.00049591064, -0.02217102, 0.016586304, -0.013839722, -0.053100586, -0.018035889, 0.064819336, 0.012336731, 0.008621216, -0.010307312, -0.062194824, 0.026412964, -0.009216309, 0.049987793, -0.0602417, 0.04660034, 0.013267517, -0.0031700134, 0.0748291, 0.028121948, 0.04864502, 0.01928711, -0.021728516, 0.004524231, 0.015563965, -0.02330017, -0.07208252, 0.023864746, 0.03201294, -0.020996094, 0.039093018, 0.03765869, 0.0052375793, 0.0024871826, 0.0099487305, 0.0061416626, 0.023040771, -0.010414124, -0.0064964294, -0.028274536, -0.010665894, -0.04272461, 0.048736572, -0.033691406, -0.021911621, 0.047332764, 0.06524658, 0.01977539, -0.00894165, 0.03652954, 0.005607605, 0.025238037, -0.02758789, 0.039215088, -0.017456055, -0.01852417, 0.035583496, -0.03665161, -0.010772705, 0.004650116, 0.01751709, 0.017227173, -0.03186035, -0.02671814, 0.018249512, -0.005718231, -0.001209259, 0.057434082, -0.018722534, -0.01838684, -0.0037975311, 0.07531738, 0.0019292831, -0.029678345, -0.023910522, -0.010223389, 0.017288208, -0.011993408, 0.041381836, 0.032806396, 0.006855011, 0.009475708, 0.008415222, -0.001950264, 0.012161255, -0.015640259, -0.0069007874, 0.014533997, -0.00036478043, 0.0036678314, 0.064331055, 0.05895996, -0.09539795, -0.058929443, -0.053985596, 0.12408447, -0.051330566, -0.0068511963, -0.019470215, 0.009094238, -0.037841797, 0.017562866, -0.012214661, 0.052246094, 0.019989014, 0.04562378, -0.026000977, -0.025985718, -0.016021729, -0.0018959045, 0.030548096, -0.025634766, -0.009407043, 0.03942871, 0.0042877197, -0.0019102097, 0.00333786, -0.047576904, -0.02229309, -0.015625, 0.0070343018, 0.012458801, 0.007286072, -0.009567261, -0.002292633, -0.0011520386, -0.051605225, -0.027496338, 0.0029563904, -0.03265381, 0.04397583, 0.0004119873, 0.043182373, 0.0256958, -0.028045654, 0.033691406, -0.014015198, 0.028320312, 0.017288208, -0.016983032, 0.009086609, 0.035095215, 0.018051147, -0.019256592, -0.011047363, 0.03604126, 0.02381897, -0.02041626, 0.043426514, 0.07946777, 0.054718018, -0.012519836, -0.018234253, 0.007724762, 0.033843994, -0.024368286, -0.00030899048, 0.058776855, 0.03756714, 0.028747559, -0.008590698, -0.01335907, 0.05621338, -0.007019043, 0.020004272, -0.0038814545, 0.004310608, -0.04598999, 0.028778076, -0.041381836, -0.01914978, 0.006969452, 0.00030136108, 0.008773804, 0.05117798, 0.029891968, 0.021835327, 0.021942139, -0.0021972656, 0.009315491, 0.021057129, -0.027801514, 0.004798889, 0.026412964, -0.006641388, -0.0077590942, 0.028778076, 0.002855301, 0.01058197, -0.024398804, 0.016693115, -0.021636963, 0.022003174, 0.0067329407, -0.015899658, -0.014678955, -0.0017147064, 0.0463562, 0.041870117, 0.0059890747, 0.016601562, 0.014083862, 0.0074539185, 0.031280518, -0.008728027, -0.008888245, -0.004360199, 0.019805908, -0.028808594, 0.021911621, -0.041778564, 0.032470703, -0.048858643, 0.07501221, 0.061706543, -0.0814209, 0.078552246, -0.011054993, -0.0068855286, 0.0005874634, 0.024932861, 0.011741638, -0.039978027, -0.0070228577, 0.028396606, 0.03387451, 0.005126953, 0.014053345, -0.0107040405, 0.0048713684, 0.03488159, 0.00086832047, 0.004650116, -0.0007777214, 0.013465881, -0.045013428, 0.01071167, -0.00091695786, 0.010902405, 0.005344391, -0.009170532, 0.021255493, 0.03213501, 0.041503906, 0.06021118, -0.001953125, 0.008544922, 0.016723633, 0.028442383, 0.0011634827, -0.007888794, -0.01878357, -0.044799805, -0.046295166, -0.031143188, 0.0061187744, -0.029968262, 0.014701843, -0.054351807, -0.0029525757, 0.0032463074, -0.017654419, -0.00022494793, -0.0005764961, -0.011528015, -0.000688076, 0.010520935, 0.016921997, 0.01991272, -0.010932922, 0.029159546, 0.013427734, -0.03668213, -0.021835327, 0.0061035156, -0.050994873, -0.033477783, 0.051116943, -0.03086853, -0.018341064, -0.038024902, -0.020706177, -0.006752014, 0.083984375, -0.015792847, -0.08929443, -0.05026245, -0.056274414, -0.030975342, 0.09515381, -0.022979736, -0.019882202, 0.051635742, -0.027740479, 0.050079346, -0.09265137, 0.047027588, 0.0051879883, 0.022354126, 0.035095215, 0.01739502, 0.022018433, -0.028793335, -0.0028686523, 0.027679443, 0.018615723, -0.037384033, -0.017074585, -0.016494751, 0.035491943, -0.015838623, 0.04537964, -0.027694702, -0.0647583, 0.03338623, 0.017730713, -0.012290955, 0.022964478, -0.071899414, -0.008384705, -0.053009033, 0.032562256, 0.032470703, 0.03994751, -0.00044250488, 0.0107803345, 0.047973633, -0.033447266, -0.0027561188, 0.018585205, -0.004508972, 0.00021386147, -0.00894928, 0.05682373, -0.07104492, 0.03970337, 0.044281006, -0.038024902, 0.005718231, -0.0064315796, 0.024978638, -0.012626648, 0.03086853, -0.007980347, -0.0037460327, -0.023544312, -0.014228821, -0.043945312, 0.0026359558, 0.007858276, -0.031097412, 0.033355713, -0.033477783, -0.045532227, -0.032928467, 0.0022563934, 0.0052337646, -0.03274536, 0.019241333, -0.027114868, -0.0051727295, -0.014877319, 0.0045433044, -0.003250122, -0.00080633163, -0.024475098, 0.013221741, -0.024108887, 0.05899048, 0.007713318, 0.047973633, -0.028427124, 0.008216858, 0.017349243, -0.017700195, 0.011383057, -0.0065612793, -0.025115967, -0.014579773, 0.03677368, 0.009819031, 0.0025501251, -0.033996582, -0.01259613, 0.050750732, 0.026977539, 0.0033931732, 0.01197052, 0.023223877, 0.013832092, 0.025543213, -0.097473145, -0.044769287, -0.029403687, 0.012504578, -0.033996582, 0.058746338, 0.032318115, -0.011940002, 0.03643799, 0.03274536, -0.01689148, 0.02835083, -0.013908386, 0.004398346, -0.0025234222, 0.018203735, -0.024169922, 0.03970337, 0.008773804, 0.022521973, 0.030349731, 0.031799316, -0.03555298, 0.0044288635, -0.0024375916, -0.055633545, -0.028274536, 0.0075035095, 0.053375244, 0.015281677, -0.0062332153, -0.0071525574, 0.030960083, -0.027618408, 0.009765625, 0.008407593, -0.016067505, -0.025100708, 0.06225586, -0.044158936, 0.013305664, 0.0026569366, -0.019683838, -0.0039711, 0.003648758, 0.03024292, 0.014282227, 0.014389038, -0.026306152, 0.03050232, -0.02494812, 0.022628784, 0.024658203, -0.009849548, 0.027542114, -0.012031555, 0.0064048767, 0.015571594, -0.014030457, 0.0041923523, 0.014450073, -0.054840088, 0.023040771, 0.079833984, -0.0077781677, -0.018661499, 0.0075531006, -0.009971619, -0.0008945465, -0.0008740425, -0.026947021, -0.0043258667, -0.031707764, -0.005191803, -0.008651733, 0.007156372, -0.015037537, 0.016540527, -0.0524292, 0.0024204254, -0.0030879974, 0.032409668, 0.00069856644, 0.021240234, -0.045288086, 0.009552002, -0.059143066, 0.024093628, -0.0075912476, -0.022201538, -0.026916504, -0.019439697, 0.0029468536, 0.013015747, 0.01826477, -0.046783447, 0.027786255, -0.039245605, 0.013534546, -0.0069236755, 0.019836426, -0.0074920654, -0.016433716, 0.007904053, 0.020080566, -0.039916992, -0.036071777, 0.018478394, -0.0015611649, 0.01071167, -0.045318604, -0.022079468, 0.020812988, 0.013687134, 0.04019165, -0.02961731, -0.025970459, -0.008323669, -0.045959473, -0.06335449, -0.034973145, -0.012512207, 0.0025920868, -0.024993896, -0.01878357, -0.015960693, 0.10241699, -0.014205933, 0.0068092346, 0.027496338, -0.007904053, -0.0009880066, -0.011604309, -0.01537323, 0.034362793, -0.0090789795, 0.014892578, -0.015007019, -0.015823364, 0.05480957, 0.003194809, -0.04260254, -0.020446777, 0.01739502, -0.021728516, -0.05883789, -0.030639648, -0.029693604, 0.0014896393, -0.02230835, -0.0390625, 0.01977539, -0.0034637451, 0.012634277, -0.03652954, -0.021697998, 0.0039711, 0.018371582, -0.018341064, -0.026535034, -0.018829346, -0.037994385, -0.0047721863, 0.06341553, 0.03378296, -0.04534912, 0.060791016, -0.0012550354, -0.028167725, -0.0007109642, -0.01965332, -0.012718201, -0.02166748, 0.006401062, -0.04647827, 0.054595947, 0.039001465, 0.027038574, 0.015312195, 0.03353882, -0.029251099, 0.019210815, -0.004547119, 0.0067634583, -0.032714844, -0.014030457, 0.011962891, -0.01701355, 0.06536865, 0.028823853, 0.0042686462, -0.0036067963, -0.017181396, 0.042510986, 0.02192688, 0.0017843246, 0.017089844, -0.018157959, 0.007881165, -0.010856628, -0.02507019, -0.037902832, 0.014472961, -0.02267456, -0.023925781, 0.01737976, -0.035095215, 0.043395996, -0.017974854, -0.02420044, -0.011054993, 0.0385437, -0.050598145, 0.03781128, 0.011054993, 0.067871094, -0.039245605, 0.020965576, -0.020645142, 0.05331421, 0.014877319, -0.0066452026, 0.05291748, 0.017608643, -0.066467285, -0.010910034, -0.037322998, -0.003665924, -0.037902832, 0.0071258545, -0.027786255, -0.0057678223, -0.0101623535, 0.009086609, 0.057403564, 0.025985718, -0.06536865, -0.0062065125, 0.003768921, 0.01763916, -0.014572144, 0.053375244, -0.04812622, 0.0038032532, 0.01071167, -0.031402588, -0.0036773682, 0.01675415, -0.041137695, -0.026473999, 0.014144897, 0.034484863, -0.03378296, 0.006641388, 0.06951904, -0.039978027, -0.038970947, -0.06829834, 0.031951904, -0.0017690659, -0.026641846, 0.045532227, 0.0016384125, -0.0006890297, 0.008110046, -0.013519287, -0.019577026, 0.01108551, -0.0009918213, -0.04107666, 0.01991272, -0.027999878, 0.02583313, -0.0021438599, -0.0736084, -0.03048706, 0.022109985, 3.015995e-05, 0.01033783, -0.0127334595, -0.05895996, 0.022384644, -0.036590576, 0.010536194, -0.0030651093, -0.0043411255, 0.009635925, 0.0053596497, -0.027862549, -0.0024757385, 0.030029297, -0.012161255, -0.022598267, -0.006385803, -0.0126571655, -0.044769287, 0.07348633, 0.03692627, 0.010276794, -0.014877319, -0.0007843971, 0.03945923, -0.0027694702, 0.052703857, -0.0758667, -0.009727478, -0.023117065, -0.03086853, 0.076293945, 0.02180481, -0.027023315, 0.03845215, 0.08093262, 0.032806396, 0.041778564, -0.030776978, 0.032043457, -0.03930664, -0.085754395, 0.0011940002, 0.0029087067, -0.037963867, -0.017196655, -0.02810669, -0.06536865, -0.029266357, -0.02885437, 0.016601562, -0.017929077, -0.017974854, -0.056884766, 0.044799805, -0.020370483, 0.0057258606, 0.07342529, 0.0024089813, 0.02923584, -0.041107178, 0.044708252, 0.037872314, -0.04284668, -0.051513672, 0.000626564, 0.014038086, -0.017166138, 0.05014038, 0.0020256042, 0.010383606, 0.011001587, -0.06536865, 0.050720215, 0.00017786026, -0.03189087, 0.012168884, 0.08544922, 0.03050232, 0.061767578, 0.04800415, 0.043701172, -0.013046265, -0.046813965, 0.019958496, -0.02003479, -0.009048462, -0.003873825, -0.01524353, 0.019836426, 0.027191162, 0.0052261353, -0.015151978, 0.03186035, 0.024719238, 0.0077667236, -0.04360962, -0.039031982, -0.009979248, 0.0061035156, 0.034240723, 0.010261536, -0.02394104, -0.0061836243, -0.0017938614, -0.0073280334, 0.019760132, 0.017288208, 0.015312195, 0.050628662, -0.050354004, 0.0049705505, 0.0026454926, -0.061645508, -0.009742737, 0.022613525, -0.048919678, -0.017715454, -0.0017604828, -0.005214691, 0.022781372, 0.016983032, 0.0057258606, 0.028656006, 0.014350891, 0.047576904, 0.01134491, 0.05105591, -0.0014314651, 0.0039596558, 0.00046420097, 1.5497208e-06, 0.011276245, -0.009513855, -0.011497498, -0.023513794, -0.015281677, 0.0076942444, -0.015945435, -0.022354126, -0.024291992, 0.01108551, 0.030532837, -0.016311646, -0.034332275, 0.012863159, -0.031585693, 0.06555176, -0.031021118, -0.028533936, -0.02142334, -0.021484375, 0.0022659302, -0.0012187958, -0.06335449, 0.019622803, 0.0009737015, -0.027145386, 0.0017290115, -0.0063285828, -0.013145447, -0.08392334, 0.004459381, -0.03652954, 0.06921387, -0.027038574, 0.06750488, -0.03213501, -0.033294678, -0.056396484, -0.013977051, -0.063964844, 0.018539429, 0.00038790703, 0.012763977, 0.019958496, -0.019729614, 0.006664276, 0.018447876, 0.026306152, -0.026443481, 0.02166748, -0.018478394, -0.041381836, 0.053771973, 0.0062408447, -0.010040283, -0.005378723, 0.003665924, 0.01902771, -0.035064697, 0.07513428, -0.03488159, -0.07299805, -0.013954163, -0.012428284, 0.008216858, 0.0019626617, 0.00013267994, 0.034606934, 0.031555176, -0.021530151, 0.0005021095, -0.00017285347, -0.0054779053, 0.04699707, -0.01737976, -0.015388489, -0.028701782, -0.031341553, -0.03225708, -0.018127441, 0.016021729, 0.04522705, 0.026550293, -0.0015516281, 0.034362793, -0.016601562, 0.038909912, 0.026245117, -0.031036377, 0.03741455, 0.018508911, -0.0132369995, 0.038482666, -0.04840088, 0.016799927, -0.039398193, 0.012176514, 0.013381958, -0.030563354, -0.0067749023, -0.030319214, -0.03643799, 0.014472961, -0.051727295, -0.05630493, -0.015220642, -0.04498291, -0.03237915, 0.009590149, -0.023422241, 0.026260376, -0.024307251, -0.028076172, -0.04748535, -0.020706177, 0.028045654, -0.051635742, -0.036071777, -0.023452759, -0.010910034, 0.048095703, -0.030838013, -0.08850098, -0.033111572, 0.008636475, -0.011993408, 0.008796692, 0.046966553, -0.0335083, 0.011779785, 0.031311035, 0.015960693, -0.008178711, 0.022277832, 0.047302246, 0.010528564, 0.004463196]}, "B07F1QRTCK": {"id": "B07F1QRTCK", "original": "Brand: SHINESTAR\nName: SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack\nDescription: Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper's propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4\" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service\nFeatures: \u3010Standard Connector\u3011 5/16\" diameter LP hose, ACME nut x 1/4\" male NPT\n\u3010Application\u3011 Connect your camper's 1/4\" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4\" inverted flare)\n\u3010More Durable\u3011 Stainless braided hose effectively reduce damage caused by friction and animals\n\u3010CSA Certified\u3011 Excess flow safety and thermal shutoff\n\u3010Package Includes\u3011 2 \u00d7 RV pigtail hose, 1 year worry-free customer service\n", "metadata": {"Name": "SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack", "Brand": "SHINESTAR", "Description": "Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper's propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4\" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service", "Features": "\u3010Standard Connector\u3011 5/16\" diameter LP hose, ACME nut x 1/4\" male NPT\n\u3010Application\u3011 Connect your camper's 1/4\" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4\" inverted flare)\n\u3010More Durable\u3011 Stainless braided hose effectively reduce damage caused by friction and animals\n\u3010CSA Certified\u3011 Excess flow safety and thermal shutoff\n\u3010Package Includes\u3011 2 \u00d7 RV pigtail hose, 1 year worry-free customer service", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0003607273, 0.0019168854, -0.070739746, -0.053649902, 0.012565613, -0.033172607, -0.023529053, 0.027801514, -0.009986877, 0.011474609, -0.013450623, 0.009643555, -0.0070381165, -0.024124146, 0.0063438416, -0.049041748, 0.015541077, 0.03427124, 0.008880615, -0.01008606, 0.0079956055, 0.0061302185, -0.03375244, 0.07305908, 0.0018472672, 0.0096206665, 0.076293945, 0.0040397644, 0.017471313, 0.005710602, 0.02999878, -0.057556152, 0.024108887, -0.014083862, -0.013008118, -0.06665039, -0.014175415, -0.006549835, -0.024490356, -0.0035037994, 0.02330017, -0.016906738, -0.026321411, -0.018188477, -0.018585205, -0.041046143, 0.041778564, -0.028945923, 0.019439697, -0.035583496, -0.019714355, 0.05279541, -0.00016307831, -0.026611328, -0.0030441284, 0.0068473816, 0.005718231, -0.0076560974, -0.0019683838, 0.03378296, 0.008781433, 0.044799805, -0.008659363, -0.011726379, -0.024169922, -0.010726929, 0.058258057, -0.0146484375, 0.045166016, -0.008476257, -0.00223732, 0.05734253, -0.014289856, -0.005935669, -0.060272217, 0.05065918, 0.0037727356, -0.004142761, 0.014251709, -0.010917664, -0.02482605, -0.060150146, 0.010261536, 0.011726379, -0.012840271, 0.009002686, -0.02255249, 0.013511658, -0.033843994, -0.02192688, -0.02810669, 0.020996094, -0.014129639, -0.014274597, -0.054504395, 0.014572144, -0.0069503784, -0.05581665, 0.05783081, 0.013946533, 0.0289917, -0.048034668, 0.033172607, -0.0061531067, 0.038269043, 0.059417725, -0.0146484375, -0.042816162, 0.03793335, -0.007881165, -0.0059928894, 0.060577393, 0.017623901, -0.0074539185, -0.024734497, 0.0024681091, 0.007965088, -0.009109497, 4.941225e-05, -0.022109985, -0.009605408, -0.009132385, 0.031433105, -0.022872925, -0.021621704, -0.027282715, -0.021026611, -0.0042266846, -0.045562744, 0.011741638, -0.015304565, -0.0033111572, 0.07299805, 0.08660889, 0.030212402, -0.008018494, 0.027008057, 0.009986877, 0.015007019, -0.0027542114, -0.0026626587, -0.028930664, -0.010482788, 0.013755798, 0.008285522, 0.038360596, 0.02255249, -0.015167236, -0.010948181, -0.038085938, -0.012519836, -0.028335571, 0.015731812, 0.022521973, -0.03111267, -0.009513855, -0.010070801, -0.0082092285, 0.011024475, -0.036499023, -0.028182983, -0.04067993, -0.0059547424, -0.008888245, -0.035491943, 0.05508423, 0.0074272156, -0.0019073486, 0.025939941, 0.07647705, -0.008003235, -0.0013837814, 0.012512207, 0.0020065308, -0.025146484, -0.014823914, -0.028030396, 0.06738281, 0.078430176, -0.15661621, -0.072753906, -0.046813965, 0.15124512, -0.04348755, 0.010604858, -0.05050659, 0.011138916, -0.027374268, 0.008216858, 0.020477295, -0.015014648, 0.029586792, -0.015533447, -0.04067993, 0.057922363, 0.0146102905, -0.02746582, -0.021835327, 0.013671875, -0.010276794, -0.021316528, 0.025177002, -0.01449585, 0.025405884, 0.039642334, -0.007865906, 0.012062073, 0.011680603, 0.0039367676, 0.022201538, 0.007972717, -0.020309448, -0.0027675629, -0.015205383, -0.0039711, -0.011779785, 0.0052375793, -0.02520752, 0.0129470825, -0.045806885, 0.073791504, 0.012832642, 0.036590576, 0.052215576, -0.028076172, 0.017547607, -0.025253296, 0.027572632, -0.015457153, 0.012565613, 0.032318115, 0.022628784, 0.07659912, 0.027664185, -0.055358887, 0.03277588, 0.048858643, 0.075927734, -0.04562378, -0.0021915436, 0.024230957, -0.061645508, -0.034210205, 0.013282776, -0.017868042, -0.059295654, -0.011222839, 0.02067566, -0.010238647, 0.03390503, 0.055511475, -0.002796173, 0.0126571655, 0.025650024, -0.027923584, 0.009887695, 0.011795044, 0.0035953522, -0.054534912, 0.055389404, -0.008270264, 0.043273926, 0.0093307495, -0.0052719116, 0.045410156, -0.003019333, 0.039245605, 0.0048942566, -0.023040771, -0.009391785, 0.0071029663, 0.0093688965, -0.015594482, -0.02142334, -0.042144775, -0.0045661926, -0.045806885, 0.06347656, -0.028778076, -0.02961731, -0.0027236938, -0.016983032, 0.024795532, 0.0019464493, 0.035217285, 0.0335083, 0.037231445, 0.008598328, -0.00088596344, 0.0063056946, 0.059783936, -0.037506104, -0.028167725, 0.00667572, -0.047607422, -0.040740967, 0.023635864, -0.0118255615, 0.022415161, -0.0071792603, 0.007083893, 0.064208984, -0.0007596016, 0.01374054, 0.015045166, -0.04248047, 0.023406982, 0.011398315, -0.0066223145, -0.025009155, -0.038330078, 0.014129639, 0.015838623, 0.016098022, 0.009559631, 0.0027256012, 0.003376007, 0.04260254, 0.029327393, 0.06201172, -0.008506775, 0.052490234, 0.0008869171, 0.0087509155, 0.053649902, -0.017471313, -0.016159058, -0.0011672974, -0.034210205, 0.0035114288, 0.011528015, 0.0065612793, 0.028381348, 0.087890625, 0.01133728, 0.013534546, -0.0013103485, -0.004295349, -0.016296387, -0.011489868, 0.015235901, -0.0064582825, 0.018356323, -0.006351471, -0.05899048, -0.005634308, 0.044708252, 0.0028839111, -0.019012451, -0.019317627, 0.036590576, -0.029037476, 0.015068054, -0.011001587, 0.0059318542, 0.0027389526, -0.02078247, -0.022521973, 0.0013380051, -0.062164307, -0.005592346, -0.041168213, -0.0602417, -0.031585693, 0.066345215, -0.003818512, -0.058258057, -0.023834229, -0.011978149, -0.019729614, -0.017715454, -0.031829834, -0.029708862, 0.008087158, 0.03363037, 0.042785645, 0.04425049, -0.006336212, 0.016281128, 0.020767212, 0.0143966675, 0.0069618225, 0.012367249, 0.0016899109, -0.006187439, 0.044555664, 0.090270996, 0.021392822, 0.01235199, -0.048858643, -0.004005432, 0.03475952, 0.002811432, -0.02053833, -0.033203125, -0.011520386, 0.01071167, 0.0054740906, 0.010749817, -0.009124756, -0.073913574, 0.030014038, -0.0062408447, -0.019439697, 0.014312744, -0.10473633, -0.030776978, -0.06793213, 0.031677246, 0.00944519, -0.01309967, 0.021636963, -0.0289917, 0.008338928, -0.020767212, -0.0064735413, -0.04373169, 0.004432678, -0.038513184, 0.0078048706, 0.052886963, -0.07885742, 0.0154418945, 0.022033691, -0.05859375, -0.030593872, -0.0049972534, 0.033569336, -0.018753052, 0.06756592, -0.016494751, 0.020950317, -0.041534424, -0.0473938, -0.0073509216, -0.0141067505, 0.009605408, -0.025497437, 0.010688782, 0.0006828308, -0.056488037, -0.02909851, 0.012329102, 0.022613525, 0.015686035, -0.013305664, -0.049346924, -0.03744507, 0.005508423, -0.009101868, 0.016952515, 0.0064353943, 0.018676758, 0.01991272, -0.019073486, 0.04055786, 0.011924744, 0.027786255, 0.017623901, 0.01134491, -0.0051078796, -0.023712158, 0.03982544, 0.0030021667, 0.0126953125, -0.017562866, 0.010032654, 0.029342651, 0.03604126, -0.021514893, 0.013626099, 0.040039062, 0.016937256, -0.011940002, -0.015106201, -0.020401001, 0.025268555, -0.0049476624, 0.022125244, -0.018661499, -0.04812622, 0.023635864, -0.11517334, 0.08111572, 0.006778717, -0.010482788, 0.048339844, 0.010429382, 0.01625061, 0.055145264, 0.041992188, -0.0026931763, 0.03665161, 0.029510498, -0.00037145615, 0.0065994263, -0.0054626465, -0.056671143, 0.0418396, 0.023071289, -0.028274536, 0.006538391, -0.004295349, -0.06311035, -0.019073486, 0.032928467, 0.033050537, -0.010101318, -0.021484375, -0.030426025, 0.00067806244, -0.056884766, 0.021652222, 0.0206604, -0.010955811, -0.008384705, 0.03781128, -0.01386261, 0.0066947937, 0.0008249283, -0.024429321, -0.016586304, 0.0015048981, 0.05407715, -0.011222839, -0.007385254, -0.029037476, 0.011474609, -0.024627686, 0.0020542145, 0.0010099411, 0.021377563, -0.017669678, -0.026351929, 0.018035889, -0.030426025, -0.020050049, 0.029418945, 0.009407043, -0.032958984, -0.021469116, -0.008621216, 0.011917114, -0.00806427, -0.017501831, -0.047912598, -0.018798828, 0.0034809113, -0.017044067, 0.008811951, 0.010551453, 7.557869e-05, -0.0736084, -0.047546387, -0.037231445, 0.029678345, -0.014709473, 0.014434814, -0.005584717, -0.0042152405, -0.006149292, 0.037139893, -0.07269287, 0.0067481995, -0.05331421, -0.008323669, 0.036132812, 0.009750366, 0.01473999, -0.002708435, -0.016464233, 0.0059127808, 0.04385376, -0.019927979, 0.01927185, -0.056030273, -0.0118637085, -0.001619339, 0.02178955, 0.035217285, 0.0067214966, 0.035003662, -0.007835388, -0.01398468, -0.074645996, 0.039611816, 0.03289795, -0.03137207, -0.041534424, 0.0074539185, 0.06591797, 0.001748085, -0.019195557, 0.009902954, 0.04699707, 0.034423828, 0.009300232, -0.07470703, -0.0066871643, 0.008850098, -0.019851685, 0.013931274, 0.004917145, -0.012031555, 0.028289795, 0.034820557, 0.019088745, -0.016174316, 0.008216858, 0.021102905, -0.011604309, 0.0031967163, -0.043945312, 0.029052734, -0.032318115, -0.005191803, -0.07421875, 0.06365967, 0.036346436, 0.007068634, 0.014320374, -0.031585693, -0.018585205, -0.038604736, -0.011077881, -0.0040512085, 0.03878784, -0.0072135925, -0.031097412, 0.028305054, -0.022445679, -0.0006918907, -0.037872314, -0.025650024, -0.043426514, 0.010429382, -0.016952515, -0.080078125, -0.011360168, 0.024398804, 0.015594482, -0.030166626, -0.041412354, 0.009277344, 0.016403198, -0.017211914, 0.0043792725, 0.032836914, -0.022384644, 0.0087509155, -0.008277893, -0.0010585785, -0.018676758, 0.009109497, -0.0051460266, -0.0013179779, 0.0096588135, 0.021408081, 0.02015686, 0.00667572, -0.019058228, 0.03945923, -0.04510498, -0.018234253, -0.030517578, 0.017837524, 0.0014400482, 0.022979736, -0.019042969, -0.008102417, 0.02029419, -0.053527832, 0.02420044, -0.00021207333, -0.011665344, -0.032348633, 0.09362793, -0.011604309, 0.020324707, -0.062683105, 0.0066566467, -0.024261475, 0.0121536255, 0.035186768, -0.04046631, 0.015731812, -0.045166016, 0.0021858215, -0.0005836487, 0.000688076, -0.059295654, -0.007534027, 0.0020008087, -0.028717041, -0.023803711, 0.007751465, -0.013160706, 0.029891968, 0.014831543, -0.04055786, 0.034240723, 0.0234375, -0.048736572, -0.0034561157, 0.0004131794, -0.01423645, -0.028274536, -0.040039062, 0.035461426, 0.028762817, -0.02734375, -0.025909424, 0.013847351, 0.01828003, -0.042907715, -0.016921997, -0.029891968, -0.03289795, -0.045715332, 0.061584473, -0.015075684, -0.053894043, -0.016693115, 0.047973633, 0.031921387, -0.03353882, -0.051635742, -0.0023956299, -0.01146698, -0.01574707, 0.03604126, -0.039093018, 0.03729248, -0.0037555695, -0.030929565, -0.044677734, 0.023529053, -0.0017566681, -0.038085938, 0.10296631, 0.07458496, -0.0050964355, 0.027862549, -0.013656616, -0.043670654, 0.030914307, 0.0064430237, -0.047088623, -0.026382446, -0.026733398, -0.014083862, 0.022720337, -0.025924683, -0.031555176, 0.046783447, -0.009849548, -0.017059326, -0.04562378, -0.035827637, 0.014167786, -0.043640137, 0.0069007874, -0.012962341, -0.0014839172, -0.008346558, 0.00022852421, -0.036224365, -0.023544312, 0.0009813309, 0.01626587, 0.011749268, 0.027740479, 0.008544922, 0.03756714, -0.048675537, -0.0036907196, -1.4126301e-05, -0.015144348, 0.013931274, 0.027664185, -0.008903503, 0.048095703, -0.01713562, -0.0055503845, 0.015419006, 0.007347107, 0.003850937, -0.01689148, -0.03894043, -0.0670166, 0.02961731, 0.04248047, -0.006084442, 0.024963379, 0.011695862, -0.02468872, -0.0075035095, -0.013000488, -0.010543823, -0.04324341, -0.011421204, -0.026229858, -0.019958496, 0.02508545, -0.018463135, 0.039733887, -0.014350891, 0.024002075, -0.014335632, 0.02130127, -0.0012712479, -0.0067977905, 0.035003662, -0.042144775, 0.0046157837, -0.03237915, 0.0440979, 0.015571594, -0.0062446594, -0.03967285, -0.007446289, 0.031951904, 0.03225708, -0.020706177, 0.00349617, 0.008277893, 0.03842163, -0.04168701, -0.0016765594, 0.009140015, 0.012054443, -0.0070343018, -0.031280518, 0.00141716, -0.0004184246, 0.007144928, 0.001953125, 0.036499023, 0.00056791306, 0.024047852, 0.015235901, 0.016021729, -0.014274597, 0.0044403076, -0.022338867, -0.004638672, 0.025222778, 0.00049495697, 0.00066518784, 0.04244995, 0.028076172, -0.0017557144, 0.022094727, -0.019805908, 0.009483337, -0.0013027191, -0.019195557, -0.040618896, -0.030441284, -0.0009446144, 0.019882202, -0.017196655, -0.010803223, -0.021331787, 0.023986816, 0.0032997131, -0.0043907166, 0.014122009, -0.016098022, 0.01512146, 0.024536133, -0.006881714, -0.070129395, -0.028060913, -0.009361267, -0.021057129, -0.006538391, 0.05505371, 0.018753052, 0.027862549, 0.0077590942, -0.0102005005, 0.058013916, 0.026138306, 0.018005371, -0.062164307, 0.012214661, 0.029449463, -0.030090332, -0.020446777, -0.02355957, -0.0032348633, 0.027694702, -0.02079773, -0.024551392, -0.060455322, 0.017547607, 0.004310608, -0.027526855, -0.004558563, -0.0013999939, -0.03817749, 0.056640625, -0.032592773, 0.011543274, -0.04727173, -0.07110596, -0.02645874, -0.0149002075, -0.047576904, 0.06921387, 0.0033359528, -0.038909912, -0.012886047, 0.015640259, -0.013977051, -0.059051514, -0.024597168, -0.017471313, 0.023117065, -0.01109314, 0.037750244, -0.00070381165, -0.04095459, -0.046813965, 0.0055885315, -0.01637268, 0.021087646, -0.051513672, 0.042633057, 0.023452759, 0.0149002075, 0.081970215, 0.027786255, 0.042053223, 0.021621704, -0.02696228, -0.03970337, -0.0063934326, 0.037353516, -0.02192688, -0.011802673, -0.047668457, 0.02432251, -0.01158905, -0.013557434, 0.032196045, -0.009979248, -0.008384705, 0.01259613, 0.018676758, -0.036712646, -0.04373169, 0.04095459, -0.0038661957, 0.027664185, 0.01763916, 6.2942505e-05, 0.026107788, -0.047607422, 0.026107788, -0.020111084, 0.04006958, 0.0074768066, -0.01838684, -0.03866577, -0.0135650635, -0.0075683594, 0.0418396, -0.027069092, -0.040893555, 0.010551453, -0.0013246536, -0.013061523, 0.010566711, 0.02684021, 0.03353882, 0.024017334, 0.009124756, 0.010017395, -0.043395996, -0.005378723, -0.025924683, -0.04336548, -0.014137268, -0.040618896, 0.00459671, -0.02659607, -0.030441284, 0.023788452, -0.049713135, -0.008071899, -0.05267334, -0.059692383, 0.051605225, 0.042022705, -0.0034599304, 0.0054016113, 0.0077438354, 0.0035114288, -0.010055542, -0.0037651062, 0.0007472038, -0.036590576, -0.015579224, 0.029815674, -0.018997192, 0.082458496, -0.00995636, -0.07312012, -0.033599854, 0.01600647, -0.013221741, -0.00995636, 0.026123047, -0.026931763, -0.0037899017, 0.051971436, -0.053527832, -0.029418945, -0.009117126, 0.084106445, 0.006137848, -0.0030899048]}, "B07QYCHS2P": {"id": "B07QYCHS2P", "original": "Brand: Cook N Home\nName: Cook N Home Style 32cm Stovetop grill Korean BBQ, Black\nDescription: \nFeatures: Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight\nNonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free\nDie-cast aluminum is break resistant and does not warp;\nTraditional Korean BBQ style, product made in Korea\nWorks on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended\n", "metadata": {"Name": "Cook N Home Style 32cm Stovetop grill Korean BBQ, Black", "Brand": "Cook N Home", "Description": "", "Features": "Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight\nNonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free\nDie-cast aluminum is break resistant and does not warp;\nTraditional Korean BBQ style, product made in Korea\nWorks on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035949707, -0.019012451, -0.016296387, -0.02885437, -0.04220581, 0.016662598, -0.067993164, -0.004798889, -0.07623291, 0.0044517517, 0.020080566, 0.040527344, -0.01966858, -0.04067993, 0.052581787, -0.0152282715, 0.0184021, 0.002368927, -0.00071144104, -0.02432251, -0.012084961, -0.012413025, -0.0013113022, 0.009544373, 0.058654785, -0.014083862, -0.042266846, 0.017578125, 0.04067993, 0.027130127, 0.03564453, -0.04034424, 0.068847656, 0.00018203259, -0.076416016, -0.035736084, -0.028579712, -0.0018234253, -0.060638428, 0.021896362, 0.0026569366, 0.014778137, 0.010673523, 0.008010864, -0.026123047, -0.027114868, 0.014602661, -0.021774292, 0.0011825562, -0.0016288757, 0.0024280548, 0.016586304, 0.0048446655, -0.03540039, -0.014579773, -6.9618225e-05, 0.008590698, 0.085632324, 0.0345459, -0.053649902, -0.054473877, 0.0082092285, 0.026535034, 0.01448822, 0.0039138794, -0.015388489, 0.043304443, -0.021957397, -0.009300232, 0.02571106, 0.048736572, -0.0032310486, 0.041656494, -0.017959595, -0.025985718, -0.023635864, -0.012451172, -0.040374756, 0.03741455, -0.034973145, -0.048919678, -0.0060768127, 0.0056762695, -0.08880615, 0.030151367, -0.051635742, -0.014404297, 0.0018892288, -0.013381958, 0.0046081543, -0.0049591064, -0.017150879, -0.018966675, 0.044555664, 0.020050049, -0.01209259, -0.049865723, -0.080322266, 0.015106201, 0.04559326, -0.0017576218, -0.025497437, 0.04638672, -0.012077332, -0.016098022, 0.06744385, 0.017501831, 0.07312012, -0.003320694, -0.006713867, -0.0008916855, -0.062469482, -0.021011353, -0.044677734, -0.024627686, 0.035369873, -0.0262146, -0.006679535, 0.022323608, -0.0061187744, -0.05444336, -0.019592285, 0.018478394, 0.03036499, 0.037139893, 0.03591919, 0.0335083, -0.024642944, -0.026184082, 0.03744507, -0.041625977, 0.012374878, 0.0680542, 0.0096206665, 0.00012779236, -0.033172607, -0.016326904, -0.034484863, -0.0005850792, -0.009963989, 0.02545166, -0.0061035156, 0.039764404, 0.007965088, 0.0022678375, 0.017654419, 0.011100769, 0.0066947937, 0.0044174194, -0.040283203, 0.051452637, -0.06463623, 0.02709961, -0.0110321045, -0.00522995, 0.003534317, 0.015716553, 0.0010557175, -0.04522705, -0.009506226, -0.026733398, -0.0047836304, 0.0014925003, 0.0045928955, -0.013015747, 0.020645142, 0.056274414, 0.021713257, 0.023223877, -0.013931274, 0.012298584, -0.012359619, 0.0014162064, -0.023452759, -0.012512207, -0.007736206, -0.018234253, 0.04336548, 0.058776855, -0.017181396, -0.012191772, -0.02784729, 0.12805176, -0.023727417, -0.0317688, 0.014282227, 0.031204224, 0.033050537, 0.00010442734, 0.00920105, 0.03817749, 0.015281677, -0.03933716, -0.008872986, 0.009086609, 0.0132369995, -0.035491943, 0.0027008057, 0.0030555725, -0.02720642, -0.035308838, -0.011665344, 0.0236969, -0.007583618, -0.01928711, -0.004600525, -0.0036315918, 0.031982422, 0.00573349, 0.023498535, 0.018661499, 0.028259277, -0.027252197, -0.03237915, -0.0002477169, 0.020599365, -0.00010848045, 0.04135132, 0.03427124, 0.00041532516, 0.062927246, -0.019088745, 0.043029785, 0.012084961, 0.004245758, -0.0033016205, -0.03010559, 0.010665894, -0.0178833, 0.032592773, -0.043121338, 0.013893127, 0.03466797, 0.05645752, -0.011184692, 0.04537964, 0.07385254, 0.046813965, -0.026229858, -0.039123535, 0.012176514, 0.017486572, -0.0023975372, 0.009727478, 0.004760742, 0.008369446, 0.01687622, -0.014556885, -0.007663727, 0.014297485, -0.012191772, 0.016082764, 0.013053894, 0.004108429, -0.009994507, 0.051879883, -0.05645752, 0.0028495789, -0.029830933, 0.040039062, -0.016204834, 0.046447754, 0.06842041, -0.0050849915, 0.014533997, -0.021331787, 0.014526367, 0.011329651, -0.0501709, -0.021011353, 0.031707764, 0.083618164, 0.011550903, 0.009727478, 0.009727478, -0.03265381, -0.02670288, 0.011482239, 0.005592346, -0.015136719, 0.00995636, 0.012962341, 0.045562744, 0.005054474, 0.031799316, -0.022766113, 0.046783447, 0.021316528, -0.0063591003, 0.0075950623, 0.02609253, 0.01689148, -0.018844604, 0.009796143, -0.021621704, -0.019439697, 0.0385437, 0.057891846, -0.048309326, 0.017196655, -0.0014104843, 0.011375427, -0.00844574, -0.015205383, 0.012054443, -0.01259613, 0.012199402, 0.007003784, 0.0038280487, 0.0044403076, -0.018875122, 0.024902344, 0.032958984, -0.0006542206, 0.0657959, 0.019424438, 0.034454346, 0.078552246, 0.049316406, 0.03161621, -0.04272461, 0.07336426, 0.014457703, -0.0011482239, 0.06604004, -0.0032539368, -0.049865723, -0.0022335052, -0.048675537, 0.033355713, 0.06323242, 0.025924683, 0.042388916, 0.0035171509, 0.010391235, 0.008659363, -0.00010174513, -0.016433716, -0.009460449, 0.011871338, 0.029418945, 0.03543091, 0.0042304993, -0.02027893, -0.04119873, 0.017120361, -0.0012922287, 0.030273438, -0.07867432, -0.018585205, 0.014671326, -0.055358887, 0.022109985, -0.0079574585, 0.010185242, 0.028366089, -0.028121948, -0.038604736, -0.009529114, -0.07733154, -0.01083374, -0.0119018555, -0.031799316, 0.07269287, 0.04208374, -0.028518677, -0.0061531067, 0.024154663, 0.014450073, 5.108118e-05, 0.027633667, 0.00573349, -0.032165527, -0.022109985, -0.00982666, -0.026062012, 0.01727295, -0.04852295, 0.025634766, 0.010932922, -0.010894775, 0.017440796, -0.026290894, 0.020584106, 0.024810791, -0.005973816, -0.052886963, 0.032836914, -0.017410278, 0.020217896, -0.016052246, 0.017471313, -0.05227661, -0.0055656433, -0.018707275, 0.01058197, 0.007843018, -0.029434204, -0.014778137, -0.002456665, -0.07281494, 0.008033752, -0.01737976, -0.034362793, -0.010185242, -0.055847168, -0.026779175, -0.050964355, 0.016281128, 0.07977295, -0.024017334, 0.041503906, -0.016067505, 0.044677734, 0.0021266937, 0.0068893433, 0.045288086, -0.015487671, -0.011199951, -0.021377563, 0.054992676, -0.08111572, 0.035980225, 0.012527466, -0.05130005, 0.0184021, -0.020828247, 0.050872803, -0.008712769, -0.051818848, -0.042541504, -0.038879395, -0.011543274, 0.0009727478, -0.029693604, -0.005264282, -0.0030117035, -0.030715942, 0.040740967, -0.030929565, -0.02708435, -0.03729248, -0.055358887, -0.007701874, -0.0127334595, -0.024749756, -0.04083252, -0.045318604, -0.015808105, -0.013053894, -0.011749268, -0.010375977, 0.02859497, 0.022262573, -0.018234253, 0.08239746, -0.0138168335, 0.046081543, 0.031799316, -0.044830322, -0.03527832, -0.052642822, 0.0574646, 0.011123657, -0.025024414, 0.010421753, 0.006095886, 0.020141602, -0.033081055, 0.014312744, 0.0038719177, 0.023101807, 0.026565552, 0.016845703, -0.028167725, 0.0038433075, 0.017913818, 0.027236938, -0.042144775, -0.024932861, -0.018005371, -0.0028839111, -0.07305908, 0.059753418, 0.019897461, -0.022613525, 0.010223389, 0.018508911, 0.020584106, -0.0050735474, 0.0069351196, -0.036956787, 0.043395996, -0.04171753, -0.020645142, 0.008529663, 0.00705719, 0.0024433136, -0.011436462, 0.006210327, -0.060028076, -0.005695343, -0.010597229, 0.005203247, -0.016693115, 0.0047340393, 0.044006348, -0.021331787, -0.016067505, -0.0065727234, 0.038360596, -0.042816162, 0.005886078, -0.006023407, -0.014602661, 0.009765625, 0.006996155, 0.028793335, -0.01751709, -0.024414062, 0.009437561, 0.015235901, 0.04071045, 0.016784668, -0.022598267, -0.0035591125, 0.032073975, -0.0011100769, 0.006324768, -0.014305115, 0.035461426, 0.013076782, -0.00058460236, 0.012245178, -0.0043945312, 0.0033397675, 0.008224487, -0.008232117, -0.0079193115, -0.024475098, 0.0059509277, 0.0013723373, -0.018676758, -0.02330017, 0.01524353, -0.0569458, -0.011405945, -0.023391724, -0.053100586, -0.009803772, -0.0345459, -0.011802673, 0.016052246, -0.008117676, -0.056762695, 0.0031814575, -0.035980225, 0.0110321045, 0.018539429, -0.008682251, 0.0077438354, 0.030517578, -0.031097412, -0.024887085, -0.014274597, -0.0061073303, 0.053497314, 0.029327393, 0.011390686, -0.042144775, -0.0009665489, -0.02078247, 0.05343628, 0.01638794, -0.00010675192, -0.012283325, -0.016738892, -1.8715858e-05, 0.029464722, 0.019180298, -0.028549194, -0.009010315, -0.00995636, -0.045837402, -0.045654297, 0.0126571655, -0.003238678, -0.044403076, -0.0491333, -0.0048103333, 0.055419922, 0.002008438, -0.021072388, -0.013618469, 0.05819702, -0.005531311, 0.04711914, -0.055999756, 0.0079422, 0.02166748, -0.017425537, 0.0043563843, -0.0031909943, -0.017349243, 0.005241394, 0.010169983, -0.004673004, -0.018615723, 0.0018424988, 0.0061073303, 0.013648987, 0.00630188, -0.011260986, -0.0013980865, -0.0033893585, -0.018951416, -0.05734253, 0.04989624, 0.042633057, 0.0033950806, -0.002090454, -0.021484375, -0.02494812, -0.05065918, -0.018585205, 0.005405426, -0.0039405823, -0.036346436, -0.043182373, 0.009529114, -0.043701172, 9.340048e-05, 0.02355957, 0.006500244, 0.0501709, -0.037139893, 0.02017212, 0.0044136047, 0.0035953522, 0.0496521, 0.038391113, 0.031188965, 0.032592773, -0.027862549, -0.0050582886, 0.0059013367, 0.0021858215, -0.007686615, -0.012046814, -0.009941101, 0.015640259, -0.007949829, -0.0072250366, -0.06842041, 0.037628174, -0.049804688, -0.05999756, 0.013687134, 0.04385376, 0.024276733, -0.028869629, 0.082458496, -0.012016296, 0.015075684, 0.033050537, -0.019348145, -0.00056886673, 0.019454956, -0.039520264, 0.030654907, 0.009559631, -0.05041504, 0.019104004, -0.0017871857, -0.010116577, -0.056671143, 0.05078125, -0.009803772, -0.018493652, -0.03479004, 0.009712219, 0.0066566467, 0.031921387, 0.00756073, -0.03540039, 0.038757324, -0.023162842, -0.008880615, -0.012275696, 0.014778137, -0.02015686, 0.025222778, -0.018157959, 0.0028915405, -0.032104492, -0.023254395, -0.023788452, -0.0703125, -0.043670654, 0.0056610107, 0.02960205, -0.042633057, 0.00497818, -0.05883789, -0.042419434, 0.028411865, 0.008644104, 0.011520386, -0.03930664, -0.0035095215, -0.014480591, 0.004421234, -0.05831909, -0.004497528, -0.0050621033, -0.03387451, -0.05432129, -0.023162842, -0.02798462, 0.054138184, -0.022949219, 0.049438477, 0.024459839, -0.04876709, 0.016494751, 0.020263672, -0.045013428, 0.02558899, 0.042633057, 0.066223145, -0.035003662, 0.013916016, 0.082092285, -0.061950684, -0.029830933, -0.061950684, 0.054229736, 0.0015888214, 0.042419434, -0.0032539368, -0.01852417, 0.004383087, 0.039276123, 0.011009216, -0.017562866, -0.041931152, -0.01109314, -0.06542969, 0.029922485, -0.02053833, 0.057281494, -0.0073280334, -0.005466461, -0.0017709732, 0.036346436, 0.005874634, 0.0037212372, -0.017684937, -0.009254456, -0.00034689903, -0.009262085, 0.020889282, 0.009460449, -0.0035209656, -0.025802612, 0.0059890747, -0.04260254, -0.015472412, -0.00038027763, 0.025970459, 0.0014257431, -0.00068187714, -0.0048179626, -0.00015079975, -0.010765076, 0.057922363, -0.040740967, -0.000467062, -0.015533447, 0.010475159, 0.045318604, -0.026184082, 0.0541687, -0.011962891, -0.02583313, 0.032318115, 0.0034751892, 0.025039673, -0.05178833, -0.040924072, 0.011184692, 0.05847168, 0.012588501, 0.029129028, 0.030929565, 0.03201294, -0.0038547516, -0.0029907227, 0.009384155, -0.031143188, -0.05114746, -0.028274536, -0.029571533, 0.024261475, -0.009757996, 0.034576416, 0.015457153, 0.024734497, -0.012634277, 0.027038574, -0.0014877319, 0.010566711, 0.037017822, 0.0018424988, 0.03250122, 0.010856628, 0.06616211, 0.019165039, 0.0021038055, 0.035705566, -0.023788452, 0.019882202, 0.021713257, 0.019836426, 0.01663208, -0.0029659271, 0.01550293, -0.02330017, 0.03112793, -0.02029419, -0.011192322, 0.0053367615, -0.027816772, 0.012054443, 0.012672424, -0.004306793, -0.02394104, 0.05279541, -0.026138306, 0.0072898865, -0.042297363, 0.003528595, -0.004096985, -0.016647339, -0.036224365, 0.08459473, 0.028396606, -0.03277588, 0.013084412, 0.010009766, 0.034118652, -0.056274414, -0.0121154785, 0.0051994324, 0.02243042, -0.012619019, -0.009346008, -0.046813965, -0.050750732, 0.019439697, 0.023223877, -0.04360962, -0.016113281, 0.015289307, 0.030715942, 0.008262634, -0.013259888, 0.017059326, -0.030761719, 0.044952393, 0.02760315, -0.0049209595, -0.019058228, -0.035888672, -0.018341064, -0.015090942, 0.0027446747, 0.022460938, -0.011512756, 0.025665283, 0.008110046, 0.026306152, 0.019226074, -0.04953003, -0.0072898865, 0.043701172, -0.030548096, 0.010314941, -0.026794434, -0.017532349, -0.024627686, 0.005382538, 0.012428284, 0.0209198, 0.030685425, 0.036590576, 0.024276733, -0.032104492, -0.02722168, -0.01399231, 0.0007224083, -0.011726379, 0.051635742, -0.05117798, 0.031433105, -0.0041923523, 0.04071045, -0.02041626, -0.037322998, -0.011947632, 0.04727173, -0.017364502, -0.02909851, -0.018737793, 0.002702713, 0.010848999, -0.04647827, -0.008270264, 0.003944397, 0.05960083, 0.015098572, 0.0725708, -0.05026245, -0.064697266, -0.099365234, 0.035949707, -0.13928223, -0.024017334, -0.014602661, -0.03857422, -0.048034668, -0.030639648, 0.028808594, 0.07873535, 0.027511597, -0.010658264, 0.0032596588, -0.0073051453, -0.010398865, -0.009010315, -0.0044403076, -0.021957397, -0.016952515, 0.004837036, -0.003528595, 0.035736084, 0.035583496, -0.026351929, -0.074157715, -0.035827637, -0.061340332, 0.017684937, -0.02017212, 0.0074501038, -0.005947113, -0.009712219, -0.04815674, -0.017410278, -0.0046463013, 0.022262573, 0.043121338, 0.025756836, 0.054504395, -0.025436401, -0.10046387, -0.077941895, -0.042236328, 0.067993164, 0.015296936, -0.036834717, -0.00024068356, -0.026031494, -0.029586792, 0.010932922, 0.008033752, -0.02923584, -0.017532349, -0.018081665, -0.019378662, -0.02116394, 0.012634277, 0.00623703, -0.035339355, 0.055725098, 0.00881958, 0.03262329, -0.014785767, 0.010101318, -0.01448822, -0.0022201538, 0.02027893, 0.018554688, 0.0054359436, -0.01663208, 0.019638062, -0.004306793, 0.01878357, -0.010475159, 0.027526855, -0.020858765, -0.012229919, 0.020202637, 0.0101623535, 0.04260254, -0.008392334, 0.007293701, -0.0059890747, 0.00040841103, -0.000667572, -0.08099365, -0.047546387, 0.04248047, 0.0010004044, -0.0335083, 0.01727295, -0.033111572, 0.024841309, -0.00060510635, 0.013038635, -0.006855011, 0.020050049, 0.077697754, -0.016342163, 0.022918701]}, "B0039Z5NNM": {"id": "B0039Z5NNM", "original": "Brand: Music City Metals\nName: Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others\nDescription: \nFeatures: Listing is for 1 control knob.\n2.3125 inch dia. control knob\nFits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N\nFits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01\n", "metadata": {"Name": "Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others", "Brand": "Music City Metals", "Description": "", "Features": "Listing is for 1 control knob.\n2.3125 inch dia. control knob\nFits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N\nFits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.04827881, -0.029403687, -0.042938232, -0.022247314, -0.037353516, 0.0009813309, -0.053100586, 0.015464783, -0.025405884, 0.053649902, 0.011650085, -0.0066986084, 0.023040771, -0.019515991, -0.026290894, -0.021408081, 0.023910522, -0.004634857, 0.023651123, -0.0027942657, 0.023544312, 0.016189575, -0.0076522827, -0.0064315796, 0.037963867, 0.022216797, -0.0026569366, 0.0062026978, 0.035308838, 0.020095825, 0.036193848, -0.04562378, 0.029846191, -0.0064926147, -0.0014715195, -0.00969696, 0.055358887, -0.022628784, -0.023529053, 0.027114868, 0.040649414, -0.015426636, -0.046661377, 0.05001831, -0.0446167, -0.05770874, 0.070007324, -0.005268097, -0.012145996, -0.0010128021, -0.0090408325, 0.038269043, -0.004673004, 0.011291504, 0.0037593842, 0.035186768, -0.0010309219, 0.015525818, -0.0040283203, -0.009407043, 0.029266357, 0.045410156, 0.0072364807, 0.03326416, -0.0029697418, 0.00036478043, 0.082336426, 0.00434494, -0.01878357, -0.029052734, -0.007411957, 0.014472961, 0.023895264, -0.024353027, -0.003566742, 0.029144287, -0.008964539, 0.014602661, 0.026870728, -0.006011963, 0.0077056885, 0.005683899, 0.03729248, -0.05847168, 0.025604248, -0.029525757, -0.0032844543, -0.012809753, 0.005153656, 0.008956909, -0.0024261475, 0.022216797, -0.014953613, 0.06222534, -0.013252258, 0.018981934, 0.010482788, -0.030258179, 0.027679443, -0.0071487427, 0.018508911, -0.029693604, -0.0020942688, 0.015464783, -0.0067825317, 0.011329651, 0.019638062, 0.019577026, -0.0057907104, 0.00043296814, -0.034423828, -0.0019550323, -0.026504517, -0.04031372, -0.03756714, 0.004966736, -0.0357666, -0.01902771, 0.014770508, -0.042938232, -0.010940552, -0.019439697, 0.017730713, 0.039123535, 0.046051025, 0.033569336, -0.02973938, 0.026611328, -0.049713135, 0.050079346, -0.043304443, -0.02758789, 0.089904785, 0.091308594, 0.05203247, -0.037139893, 0.031341553, 0.029418945, 0.046295166, -0.017700195, 0.012573242, -0.019348145, 0.01927185, 0.017318726, 0.0032100677, -0.010177612, 0.012741089, 0.046173096, 4.6491623e-05, -0.020980835, 0.048187256, -0.0020980835, 0.014541626, 0.02418518, 0.044799805, 0.029830933, 0.0602417, 0.0014247894, -0.038208008, -0.008094788, -0.040039062, -0.045318604, -0.034576416, -0.013938904, -0.046081543, 0.06982422, 0.05532837, 0.0062332153, 0.004558563, 0.03112793, -0.016204834, -0.017242432, -0.041992188, -0.018417358, -0.005836487, 0.005218506, -0.005680084, 0.030166626, 0.04989624, -0.032196045, -0.036865234, -0.049346924, 0.10601807, -0.045532227, -0.031021118, 0.015571594, 0.0046691895, 0.034423828, 0.013908386, -0.0050621033, 0.04034424, 0.00048089027, -0.02633667, -0.005004883, 0.014335632, -0.019088745, -0.007904053, -0.0039138794, 0.008384705, -0.021316528, -0.008506775, 0.007659912, 0.00053834915, 0.015487671, 0.035980225, -0.030197144, 0.028808594, 0.010910034, -0.01574707, 0.0023651123, 0.008712769, 0.0038890839, 9.012222e-05, -0.0680542, -0.027267456, -0.001707077, -0.017700195, 0.006450653, -0.020690918, 0.021514893, -0.028015137, 0.009117126, -0.036895752, 0.0045547485, -0.013961792, -0.01348114, -0.021209717, 0.011383057, -0.010177612, 0.009689331, 0.02293396, 0.022323608, 0.0010929108, 0.04611206, -0.017166138, 0.03933716, 0.05532837, 0.048217773, -0.014343262, -0.027130127, 0.009025574, -0.010139465, -0.032318115, -0.013328552, 0.0154800415, 0.035491943, 0.025177002, -0.026245117, -0.028198242, 0.003211975, 0.051940918, 0.0025177002, 0.014518738, -0.009681702, 0.020462036, -0.004386902, -0.06915283, -0.008956909, -0.052856445, 0.007774353, -0.009132385, -0.045684814, 0.029800415, -0.04156494, 0.049804688, -0.022964478, 0.04876709, 0.035369873, 0.028121948, -0.03378296, -0.008880615, -0.053771973, -0.004085541, 0.029327393, -0.021011353, 0.0038471222, -0.017532349, 0.0046806335, -0.01058197, 0.0055160522, 0.005344391, -0.02357483, -0.040802002, 0.0027542114, 0.06726074, -0.0043945312, 0.008285522, 0.038513184, 0.016326904, -0.017944336, 0.0068092346, -0.007194519, -0.018310547, 0.004638672, 0.019058228, -0.038482666, 0.049316406, 0.07043457, -0.0231781, 0.018798828, -0.020004272, 0.004676819, -0.019073486, -0.016311646, 0.00031757355, -0.00021493435, 0.0027751923, -0.0054473877, -0.0061302185, -0.027313232, -0.027694702, 0.031433105, 0.025726318, -0.053955078, 0.050933838, 0.014480591, -0.021743774, 0.015670776, -0.009750366, 0.020462036, -0.014808655, 0.07800293, -0.06365967, -0.013626099, 0.042907715, 0.040771484, -0.06304932, -0.021240234, -0.019378662, 0.005458832, 0.0037155151, -0.0024490356, -0.018463135, -0.010505676, -6.908178e-05, -0.00422287, -0.0035095215, 0.03036499, -0.02633667, -0.030960083, -0.019378662, -0.036071777, -0.004852295, -0.02029419, -0.032989502, 0.024276733, 0.020553589, 0.020217896, -0.04598999, 0.021820068, -0.01121521, -0.04724121, -0.0012969971, 0.02973938, 0.0015573502, 0.07446289, 0.015174866, 0.0022602081, 0.030578613, -0.04727173, -0.06048584, 0.023712158, -0.03753662, 0.015060425, 0.0063552856, -0.0076446533, 0.0045776367, 0.039398193, 0.007686615, 0.010902405, -0.0043525696, 0.02255249, -0.017105103, -0.018829346, -0.0024089813, -0.015670776, 0.008392334, -0.060668945, 0.0154800415, -0.006225586, -0.031677246, 0.022628784, -0.00073194504, 0.052459717, 0.009773254, 0.042816162, 0.051239014, 0.049682617, -0.011779785, -0.042388916, -0.004337311, 0.054718018, -0.05795288, -0.03149414, 0.0012350082, 0.0034046173, 0.040008545, -0.012794495, -0.0032730103, -0.04776001, -0.08862305, 0.005279541, 0.0061912537, -0.04675293, -0.009712219, -0.042022705, -0.059173584, -0.043426514, 0.0015830994, 0.04736328, -0.018295288, 0.02394104, -0.028427124, 0.036224365, 0.0065345764, -0.022201538, -0.0032615662, -0.01586914, 0.009429932, -0.019973755, 0.023513794, -0.03656006, 0.018081665, 0.030395508, -0.019302368, -0.008636475, 0.012672424, 0.008491516, 0.012321472, 0.061950684, 0.010040283, 0.003786087, -0.03982544, -0.0013904572, -0.0023403168, 0.059906006, 0.030456543, -0.019439697, 0.045074463, -0.030548096, -0.07366943, -0.012107849, -0.035247803, -0.004558563, -0.013710022, -0.024932861, -0.00058317184, -0.09295654, -0.022872925, -0.045837402, -0.011856079, 0.0184021, 0.045837402, 0.034210205, 0.028411865, 0.062683105, 0.022064209, 0.012832642, 0.030883789, -0.010116577, -0.03918457, -0.022644043, 0.0335083, -0.020599365, -0.00844574, -0.037841797, 0.01979065, 0.00071907043, -0.030044556, 0.0057678223, -0.04324341, 0.055908203, -0.009643555, -0.009994507, -0.02067566, -0.022964478, 0.04058838, 0.0004811287, 0.037231445, -0.038970947, -0.021133423, -0.004535675, -0.1274414, 0.078308105, 0.036743164, -0.014823914, 0.026855469, 0.019897461, -0.01348114, 0.05316162, 0.04598999, -0.025009155, 0.024978638, -0.0022468567, -0.04473877, 0.011077881, 0.016143799, 0.012557983, 0.016143799, -0.012260437, -0.09100342, 0.039733887, 0.00749588, -0.009086609, -0.0035476685, 0.041809082, 0.03289795, 0.0029792786, -0.0055999756, -0.044281006, 0.03643799, -0.04257202, 0.06359863, 0.032592773, -0.016326904, -0.008285522, 0.0061035156, 0.05593872, -0.05569458, -0.013641357, -0.00043678284, -0.014839172, 0.004787445, 0.026626587, -0.0004439354, -0.013076782, -0.01158905, 0.0016775131, -0.015075684, -0.014892578, 0.030212402, 0.006351471, 0.07116699, 0.035095215, -0.03201294, 0.005821228, 0.0008535385, 0.029571533, -0.047973633, -0.07965088, 0.007858276, 0.02268982, 0.0012130737, -0.06561279, -0.008460999, -0.04046631, 0.001162529, 0.016677856, -0.046691895, -0.0055007935, 0.015670776, 0.0003311634, -0.014823914, 0.022888184, -0.033233643, -0.078552246, -0.107177734, 0.039794922, 0.027313232, 0.014221191, -0.026443481, -0.015594482, -0.023376465, 0.010528564, -0.088012695, -0.008834839, 0.08728027, 0.068359375, 0.026382446, -0.028961182, -0.010322571, -0.0013341904, 0.072509766, -0.005771637, 0.026916504, -0.036590576, -0.037078857, -0.024749756, 0.027694702, 0.08514404, 0.024215698, 0.06951904, -0.041534424, -0.026367188, -0.034301758, -0.011642456, 0.07281494, -0.06854248, 0.0019493103, -0.0028800964, 0.048614502, -0.009124756, 0.019973755, 0.01171875, -0.019561768, -0.040618896, 0.024673462, -0.00068712234, 0.043640137, 0.002609253, 0.0003836155, -0.021453857, -0.010284424, -0.015411377, 0.028747559, -0.014533997, -0.031707764, 0.018066406, -0.005012512, 0.014533997, -0.010238647, 0.007091522, -0.004257202, -0.0059928894, -0.00687027, 0.0051078796, -0.06390381, 0.08782959, 0.07055664, -0.01763916, -0.015617371, -0.003616333, -0.052978516, -0.054748535, 0.008804321, 0.0137786865, -0.003944397, -0.004722595, -0.020858765, 0.0044898987, -0.017456055, -0.011398315, 0.0045318604, 0.021697998, 0.02998352, -0.023284912, -0.005290985, -0.01864624, -0.017166138, 0.017211914, -0.029006958, 0.043823242, 0.0126571655, 0.030426025, 0.009773254, -0.033111572, -0.008605957, -0.033111572, -0.031143188, -0.036102295, -0.0074157715, 0.018966675, -0.015640259, 0.017318726, 0.031036377, -0.024993896, -0.011665344, 0.014602661, -0.008369446, 0.01689148, 0.0073509216, 0.05065918, -0.050445557, 0.023620605, 0.0064315796, -0.0023460388, -0.00023937225, 0.024856567, -0.036315918, 0.035980225, -0.0027313232, -0.017150879, 0.0013551712, -9.185076e-05, 0.022445679, -0.0066566467, 0.017227173, 0.013999939, 0.0023117065, -0.040649414, 0.007221222, 0.03439331, 0.037261963, 0.0032157898, -0.034240723, 0.06286621, -0.013877869, -0.04647827, 0.004142761, 0.012306213, -0.01838684, 0.020950317, 0.0012741089, -0.0041618347, -0.034606934, -0.004180908, -0.024932861, 0.0121154785, 0.00040864944, -0.004322052, 0.022949219, -0.003955841, -0.042816162, -0.034057617, -0.041259766, 0.021484375, -0.04333496, 0.021972656, -0.014350891, 0.014122009, 0.0035629272, -0.024520874, 0.035949707, 0.02268982, -0.06097412, -0.014785767, -0.00035429, -0.02558899, -0.046173096, 0.085754395, 0.018203735, 0.035888672, 0.04159546, -0.01576233, 0.04034424, 0.0059509277, -0.002571106, 0.021575928, 0.009597778, 0.0362854, 0.015899658, 0.0018959045, 0.06555176, -0.030715942, -0.03894043, -0.07080078, 0.025009155, 0.04220581, 0.018615723, 0.049713135, 0.023162842, -0.01638794, 0.04321289, -0.0047683716, -0.04815674, -0.01197052, -0.0028533936, -0.068481445, 0.003293991, -0.031463623, 0.031097412, -0.00737381, 0.016036987, -0.03225708, 0.03414917, -0.001953125, 0.020431519, -0.052124023, -0.009971619, -0.022720337, -0.014167786, 0.016967773, -0.007587433, 0.013725281, -0.0043182373, 0.039123535, -0.0692749, -0.026763916, -0.0003888607, 0.040771484, 0.0065460205, 0.014846802, -0.005241394, -0.0006175041, -0.057373047, 0.03427124, -0.0362854, 0.023651123, 0.008415222, 0.05895996, -0.0079574585, 0.06185913, -0.052093506, -0.023223877, -0.01889038, -0.004600525, 0.045043945, -0.0014419556, -0.049804688, -0.009628296, 0.0647583, 0.046051025, 0.013282776, -0.019470215, 0.021591187, -0.01007843, -0.038360596, 0.0037441254, -0.0017738342, -0.022979736, -0.023162842, -0.004055023, -0.03479004, -0.0026817322, -0.03439331, 0.020599365, 0.009506226, 0.014823914, -0.024154663, 0.050994873, -0.0064048767, 0.013221741, -0.009757996, -0.010543823, -0.0068206787, 0.014373779, 0.04397583, -0.025817871, 0.036315918, 0.024749756, -0.0008292198, 0.028671265, 0.041992188, -0.020706177, -0.03338623, 0.029724121, 0.019866943, -0.046295166, -0.0051231384, -0.025848389, 0.017837524, -0.025970459, -0.054016113, -0.023620605, 0.010002136, 0.030929565, -0.01335907, 0.046691895, -0.008857727, 0.00033593178, -0.017532349, 0.0057792664, -0.020080566, -0.03866577, 0.016937256, -0.0004143715, 0.018173218, 0.02394104, -0.032592773, 0.082092285, -0.008277893, -0.029403687, 0.018096924, 0.00945282, -0.012145996, 0.01902771, -0.0014247894, -0.027526855, -0.011688232, 0.028686523, 0.0026073456, 0.0028152466, 0.016082764, 0.028060913, 0.001865387, -0.023086548, 0.015151978, -0.006134033, 0.005088806, 0.028762817, 0.031982422, -0.064941406, -0.016571045, -0.021759033, -0.0057144165, -0.005203247, 0.01802063, -0.0029716492, 0.013298035, 0.019882202, -0.0023880005, 0.01939392, 0.034973145, -0.011749268, 0.01914978, 0.001124382, -0.014701843, 0.0007581711, -0.049316406, -0.011978149, -0.042022705, 0.016220093, 0.0128479, 0.0035972595, -0.001701355, 0.049804688, 0.019424438, 0.025466919, 0.025909424, -0.067993164, 0.058898926, -0.0040397644, 0.0340271, 0.012077332, -0.0022392273, -0.0063819885, -0.009895325, -0.034179688, 0.016204834, -0.032562256, 0.011520386, 0.0069465637, -0.00434494, 0.035858154, -0.019332886, -0.008293152, -0.04574585, 0.016098022, 0.00024461746, 0.027297974, -0.0057258606, 0.044158936, -0.0335083, -0.04434204, -0.07836914, 0.03466797, -0.115112305, -0.023330688, 0.010444641, -0.03704834, -0.023513794, -0.0146865845, 0.036376953, -0.035308838, 0.058563232, -0.022415161, -0.0340271, -0.04055786, -0.04345703, 0.08416748, -0.012329102, 0.022613525, -0.013557434, 0.0597229, -0.0033664703, 0.0039253235, 0.031555176, -0.018005371, -0.05343628, -0.007896423, -0.0154800415, 0.0101623535, 0.028137207, -0.008049011, -0.0072669983, 0.014633179, -0.059326172, -0.07147217, -0.025939941, 0.026947021, 0.027023315, 0.04776001, -0.007671356, -0.025512695, -0.027954102, -8.08239e-05, -0.01285553, 0.036376953, 0.03930664, 0.0075531006, 0.018005371, 0.03845215, -0.020767212, 0.010093689, 0.0040359497, 0.0055656433, 0.002571106, 0.019943237, -0.026809692, -0.0062179565, 0.009712219, 0.004398346, -0.016021729, 0.004699707, 0.032440186, -0.022094727, -0.0067634583, -0.015106201, -0.013130188, -0.012435913, -0.03692627, -0.010787964, -0.027862549, -0.024230957, 0.021942139, 0.008323669, 0.0006337166, 0.017105103, 0.00819397, 0.0015830994, -0.024780273, 0.011253357, 0.0079193115, 0.009338379, -0.0064468384, 0.054595947, 0.015449524, 0.06793213, -0.022994995, -0.02558899, -0.05178833, 0.03475952, 0.03439331, -0.00919342, 0.07299805, -0.0027484894, 0.014732361, 0.029174805, 0.021133423, -0.03829956, 0.032043457, 0.0072402954, 0.033813477, 0.01876831]}, "B07KX3FW9C": {"id": "B07KX3FW9C", "original": "Brand: Simond Store\nName: Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers\nDescription:

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600\u00b0F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Include Accessories with Identification

      • FORGE: Forge Body
      • PART-A: Single Burner
      • PART-B: Burner Air Chock Valve (1 Pcs)
      • PART-C: Gas Inlet pipe with valve
      • PART-D: 6.5' (2M) Gas Hose with clamps
      • PART-E: Refractory Fire Brick
      • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
      • PART-G: Teflon Tape
      • PART-H: Metal Holding Stand

      Specification

      • Material: 1/8\" Thick Structural Square Steel Pipe
      • Burner Nozzle Material : SS-304
      • Inside Floor : 1\" Thick Refractory Brick
      • Inside Insulation Material : 1\" Thick Refractory Ceramic Fiber 2600\u00b0F 8 pcf
      • Forge Internal Dimension : 2.75\" x 4\" x 10\"
      • Burner: Single Burner

      Note: User Manual, Assembly and Safety instructions are Included in the packing.

      \nFeatures: Single Burner Propane Forge Furnace with 2600 degree capacity\nlined by 1\" thick high density ceramic fiber blanket\nComparatively High Tensile Strength & Can withstand Direct Flame\nComes with stand\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "metadata": {"Name": "Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers", "Brand": "Simond Store", "Description": "

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600\u00b0F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Include Accessories with Identification

      • FORGE: Forge Body
      • PART-A: Single Burner
      • PART-B: Burner Air Chock Valve (1 Pcs)
      • PART-C: Gas Inlet pipe with valve
      • PART-D: 6.5' (2M) Gas Hose with clamps
      • PART-E: Refractory Fire Brick
      • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
      • PART-G: Teflon Tape
      • PART-H: Metal Holding Stand

      Specification

      • Material: 1/8\" Thick Structural Square Steel Pipe
      • Burner Nozzle Material : SS-304
      • Inside Floor : 1\" Thick Refractory Brick
      • Inside Insulation Material : 1\" Thick Refractory Ceramic Fiber 2600\u00b0F 8 pcf
      • Forge Internal Dimension : 2.75\" x 4\" x 10\"
      • Burner: Single Burner

      Note: User Manual, Assembly and Safety instructions are Included in the packing.

      ", "Features": "Single Burner Propane Forge Furnace with 2600 degree capacity\nlined by 1\" thick high density ceramic fiber blanket\nComparatively High Tensile Strength & Can withstand Direct Flame\nComes with stand\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0054397583, -0.023223877, -0.039916992, -0.05697632, -0.025009155, -0.0007300377, -0.030166626, 0.027282715, -0.016281128, 0.010658264, 0.020233154, 0.006500244, -0.0062942505, -0.046417236, 0.0119018555, -0.014411926, 0.009002686, 0.03503418, 0.01474762, -0.008384705, 0.00021076202, -0.0056037903, -0.016357422, 0.037963867, 0.013442993, 0.00085020065, 0.04623413, -0.008903503, 0.026290894, -0.002603531, 0.026992798, -0.031433105, 0.06817627, -0.040039062, -0.042785645, -0.010375977, 0.020202637, -0.041412354, -0.053588867, 0.042907715, -0.0051956177, 0.0041275024, -0.0004849434, 0.021347046, -0.014450073, -0.05831909, 0.029846191, -0.038635254, 0.02279663, 0.020477295, -0.0016727448, -0.04385376, 0.005809784, -0.0052948, -0.026290894, -0.04135132, 0.023147583, -0.038238525, 0.009254456, 0.025497437, -0.008743286, 0.010154724, 0.012550354, -0.041412354, -0.045898438, -0.009513855, 0.06222534, -0.01586914, 0.026290894, -0.051086426, -0.016052246, 0.059753418, 0.03881836, -0.023971558, -0.0011882782, -0.012397766, 0.005569458, 0.00907135, 0.023605347, -0.007549286, -0.0072784424, -0.01751709, -0.014411926, -0.0418396, 0.0309906, -0.006839752, -0.006137848, 0.002117157, -0.012748718, -0.006713867, -0.013198853, 0.014289856, -0.008079529, 0.0037670135, -0.015007019, -0.023208618, -0.021530151, -0.07092285, 0.06842041, 0.029373169, 0.061340332, -0.06427002, 0.070617676, -0.00093984604, -0.0074424744, 0.050933838, -0.003917694, 0.011360168, 0.0135650635, -0.008598328, 0.009979248, -0.040985107, -0.037139893, -0.042785645, -0.036315918, 0.039886475, -0.02986145, -0.02229309, 0.008979797, -0.027496338, 0.016281128, 0.029815674, -0.005016327, 0.0048713684, -0.016906738, -0.00843811, -0.0058670044, -0.008262634, -0.04425049, 0.012489319, -0.030838013, -0.0069847107, 0.054840088, 0.08319092, 0.023269653, 0.00046730042, 0.035095215, 0.012451172, 0.0017957687, -0.0070114136, 0.01058197, 0.017593384, 0.022857666, -0.009841919, -0.030410767, 0.018554688, 0.0017900467, -0.019088745, 0.0132751465, -0.009124756, -0.047027588, -0.048797607, 0.019348145, 0.01586914, 0.009223938, -0.021697998, 0.00982666, -0.017913818, 0.024291992, -0.0135650635, 0.0049591064, -0.004699707, -0.02394104, -0.034301758, -0.04736328, -0.006164551, -0.007827759, 0.0045776367, 0.0054893494, 0.03781128, -0.06390381, 0.05899048, 0.0181427, -0.006515503, 0.00077438354, -0.014953613, 0.018218994, 0.08074951, 0.028686523, -0.08459473, -0.08068848, -0.08441162, 0.109802246, -0.07348633, -0.0052261353, -0.024765015, 0.021972656, -0.024414062, -0.005508423, 0.005809784, 0.053222656, 0.03036499, 0.044189453, -0.033325195, 0.012306213, -0.0044136047, -0.041046143, 0.012680054, -0.019332886, -0.009681702, 0.01828003, -0.02911377, 0.019836426, -0.026824951, 0.033569336, -0.05911255, 0.015403748, -0.012481689, 0.011428833, 0.01689148, -0.019348145, -0.015548706, 0.014350891, -0.008331299, -0.019760132, 0.007347107, 0.00019180775, 0.007534027, 0.0050849915, -0.027038574, 0.026275635, 0.0023403168, 0.009460449, 0.0340271, 0.016799927, 0.029525757, -0.021850586, 0.016586304, -0.022094727, 0.027923584, -0.043121338, 0.016281128, 0.0703125, 0.04019165, -0.019592285, 0.032714844, 0.06085205, 0.020431519, -0.018463135, -0.005622864, -0.0042915344, -0.03186035, -0.052612305, -0.0004441738, 0.005996704, 0.026763916, 0.0008382797, 0.014854431, -0.039611816, 0.00233078, 0.023391724, 0.01676941, 0.03475952, 0.051483154, -0.030075073, 0.027633667, -0.0030078888, -0.0070495605, -0.03768921, 0.031585693, 0.0026493073, 0.0119018555, 0.0024700165, 0.0068130493, 0.029006958, 0.031311035, 0.02217102, 0.03994751, -0.04135132, 0.042022705, 0.012542725, 0.017089844, 0.0008955002, 0.0045928955, -0.043548584, 0.027282715, -0.0071983337, 0.016983032, -0.017852783, -0.007820129, 0.0016679764, -0.013587952, 0.047698975, 0.010017395, 0.020599365, 0.006340027, 0.04034424, 0.0043182373, 0.020736694, 0.009544373, 0.03744507, -0.029647827, -0.021148682, 0.019134521, 0.023483276, -0.043395996, 0.016036987, -0.01991272, 0.03475952, -0.03250122, 0.021957397, 0.045715332, -0.049713135, 0.044677734, -0.02456665, -0.03387451, -0.021820068, 0.022384644, -0.011817932, -0.08239746, 0.0057907104, 0.0044441223, 0.025939941, 0.0019321442, 0.054992676, -0.009063721, 0.030349731, 0.060699463, 0.03062439, 0.04360962, -0.043304443, -0.072387695, 0.014656067, -0.0064048767, -0.027114868, 0.0057640076, 0.0068206787, 0.03265381, 0.00015795231, 0.035003662, 0.0050354004, 0.034942627, -0.014007568, 0.031051636, 0.0019426346, 0.018356323, 0.0006656647, 0.034576416, -0.022888184, -0.050445557, -0.027862549, -0.04071045, -0.018692017, 0.0031604767, -0.054718018, -0.031280518, 0.035339355, -0.0072250366, -0.03656006, -0.013023376, 0.043670654, 0.0104599, 0.004550934, -0.041107178, 0.014839172, 0.06549072, -0.024841309, -0.013809204, 0.038879395, -0.054718018, -0.021774292, -0.025527954, -0.04397583, -0.0077400208, 0.025634766, -0.00040483475, -0.024353027, 0.015197754, -0.032714844, 0.019577026, 0.04724121, 0.006324768, -0.05899048, -0.053100586, -0.07476807, -0.02470398, 0.056762695, -0.014183044, -0.0135650635, 0.01499939, -0.0012159348, 0.018035889, -0.052337646, 0.013320923, 0.02470398, 0.018005371, 0.052703857, 0.047790527, 0.010574341, -0.023727417, -0.028900146, -0.0005607605, -0.077941895, -0.029159546, -0.017807007, 0.00020194054, -0.000995636, -0.042175293, -0.014328003, -0.023376465, -0.062164307, 0.035369873, 0.0075302124, -0.016296387, -0.013877869, -0.064819336, -0.027069092, -0.047607422, 0.0069465637, 0.009712219, -0.0071105957, 0.01675415, -0.03488159, 0.018035889, 0.004901886, -0.026672363, 0.03463745, -0.007545471, -0.028198242, -0.002981186, 0.06677246, -0.092163086, 0.04095459, 0.03817749, -0.04156494, -0.0027751923, -0.021270752, 0.025314331, 0.013511658, 0.031341553, -0.034057617, -0.0005159378, -0.034088135, -0.0026836395, -0.00598526, 0.0077323914, 0.024093628, -0.02784729, 0.050750732, -0.026260376, -0.061065674, -0.030593872, 0.014862061, 0.030212402, -0.003068924, 0.012481689, -0.028259277, -0.037353516, 0.0035705566, -0.052215576, -0.029006958, 0.0018844604, 0.031188965, 0.02798462, -0.0012607574, 0.08843994, 0.048431396, 0.03225708, -0.0051651, 0.029464722, 0.033843994, -0.008346558, -0.02255249, 0.018585205, -0.02394104, -0.025421143, 0.03378296, 0.0034427643, -0.0066184998, -0.010696411, -0.022994995, 0.0690918, 0.0059051514, 0.0041007996, 0.020599365, 0.027435303, -0.009269714, -0.0033874512, -0.023361206, 0.0010023117, -0.019805908, -0.00932312, -0.00831604, 0.053955078, 0.038482666, -0.015602112, 0.03479004, 0.0579834, -0.011116028, 0.015304565, 0.040496826, 0.0073051453, 0.003944397, 0.044830322, -0.012687683, -0.022949219, 0.00869751, -0.008712769, 0.04812622, 0.014526367, -0.044708252, 0.01449585, 0.008758545, -0.062469482, 0.0070495605, 0.0027275085, -0.011451721, 0.004711151, 0.008712769, -0.0074501038, -0.015464783, -0.001285553, -0.016647339, 0.007713318, -0.025726318, 0.0009021759, -0.01940918, 0.0036468506, -0.04220581, -0.010116577, -0.015472412, 0.0112838745, -0.012588501, 0.029647827, 0.024963379, -0.00844574, -0.02810669, 0.021530151, -0.050323486, 0.023651123, -0.012069702, 0.0062408447, -0.00075387955, -0.039398193, 0.06384277, 0.009315491, -0.017852783, 0.027786255, 0.024353027, -0.06695557, 0.0035438538, 0.03289795, -0.019638062, -0.027404785, 0.004386902, -0.04937744, -0.027999878, -0.022506714, 0.009155273, -0.013931274, -0.011543274, -0.011207581, -0.022567749, -0.024337769, 0.0066719055, -0.017242432, -0.0015125275, -0.032714844, -0.011199951, 0.022277832, 0.0011978149, 0.023864746, -0.05847168, 0.011894226, -0.08050537, -0.0032253265, 0.02218628, -0.0011768341, -0.024719238, -0.012664795, -0.026123047, -0.018585205, 0.04046631, -0.027557373, -0.024215698, -0.04006958, 0.02178955, 0.009155273, 0.05239868, 0.032714844, 0.030456543, 0.0062408447, -0.028198242, 0.0034770966, -0.036895752, 0.015022278, 0.02281189, 0.0065345764, -0.030715942, -0.0050239563, 0.022033691, -0.013267517, 0.047668457, -0.0074386597, -0.015151978, -0.01361084, -0.03668213, -0.0925293, -0.04953003, -0.01802063, -0.07659912, 0.019744873, 0.001004219, -0.010559082, 0.10998535, 0.07702637, -0.0033111572, -0.010025024, 0.0030765533, -0.02128601, -0.030471802, 0.030807495, -0.034484863, 0.016113281, -0.054870605, -0.01423645, -0.00548172, 0.009887695, -0.00030112267, -0.016143799, -0.009689331, 0.006713867, -0.017318726, -0.036254883, -0.014411926, -0.009162903, 0.006160736, 0.010787964, -0.026687622, 0.011985779, 0.028259277, -0.0011119843, 0.009231567, -0.009506226, 0.014907837, -0.016967773, 0.011108398, -0.02218628, -0.00970459, 0.014961243, 0.03668213, 0.0084991455, 0.012825012, -0.05380249, 0.026107788, -0.013900757, -0.012313843, 0.035247803, 0.018600464, -0.011222839, 0.008598328, -0.02545166, -0.027008057, -0.045654297, 0.031982422, -0.018295288, -0.053649902, -0.012557983, 0.050567627, -0.0033912659, -0.049713135, 0.05142212, -0.017929077, 0.022857666, -0.027648926, 0.026031494, 0.018066406, 0.040008545, -0.018493652, 0.008964539, 0.025024414, 0.025634766, -0.0027885437, -0.031097412, -0.00013434887, -0.014656067, 1.680851e-05, 0.012367249, -1.1920929e-06, -0.049591064, 0.016052246, 0.007785797, -0.02268982, -0.002588272, -0.012054443, 0.05429077, -0.005947113, -0.02015686, 0.027267456, 0.021240234, -0.009506226, 0.030654907, 0.014907837, 0.012626648, -0.029449463, 0.018676758, -0.035736084, 0.04937744, 0.0345459, -0.028335571, 0.035369873, 0.037139893, -0.09301758, -0.031555176, -0.042388916, 0.025009155, -0.026763916, 0.028640747, -0.027282715, 0.009979248, 0.0104599, -0.0024929047, 0.052947998, 0.030929565, -0.046203613, -0.023071289, -0.013023376, -0.0044174194, -0.030303955, 0.07409668, -0.047424316, -0.05154419, -0.027282715, -0.0016317368, -0.004173279, 0.013397217, -0.052886963, -0.016082764, 0.011772156, 0.010604858, -0.0073013306, -0.052825928, 0.0692749, -0.026977539, -0.041931152, -0.03704834, 0.03643799, -0.011329651, -0.029388428, 0.03665161, 0.031799316, -0.0019989014, 0.022918701, -0.03540039, -0.02406311, -0.001996994, 0.00016343594, -0.064453125, -0.02835083, -0.041534424, 0.012710571, -0.01235199, -0.03704834, -0.05203247, 0.037841797, -0.033355713, -0.06188965, -0.04348755, -0.030899048, 0.02458191, -0.026016235, 0.019470215, -0.010276794, -0.012588501, -0.017150879, -0.022659302, -0.05227661, -0.008728027, -0.041412354, 0.014198303, 0.044128418, 0.023147583, 0.0035533905, 0.0028209686, -0.023468018, -0.004245758, 0.022262573, -0.0340271, -0.014251709, 0.0011119843, 0.0073890686, 0.0038032532, -0.025314331, 0.019577026, -0.0034637451, -0.0077323914, -0.00819397, 0.0027637482, -0.0107421875, -0.019515991, 0.017547607, 0.021057129, 0.033233643, -0.0065231323, 0.024719238, -0.0039367676, -0.02482605, -0.0020542145, -0.022598267, -0.024719238, -0.04888916, -0.03704834, -0.09515381, -0.010955811, -0.03869629, 0.043395996, -0.06121826, 0.01234436, -0.033966064, 0.057525635, -0.0046958923, -0.002538681, 0.014556885, -0.045806885, 0.038726807, -0.022521973, 0.04849243, 0.0014715195, 0.01914978, -0.010536194, -0.024841309, 0.019348145, -0.012435913, 0.034606934, -0.054534912, 0.023712158, -0.042419434, -0.047546387, 0.044006348, -0.017349243, -0.02067566, 0.014846802, 0.0340271, 0.029724121, 0.055267334, 0.012580872, -0.019897461, 0.014434814, -0.026504517, -0.0037784576, 0.024917603, 0.0066337585, -0.0039100647, 0.013465881, -0.024139404, -0.017684937, 0.026428223, -0.0033111572, 0.0005559921, 0.008430481, 0.042541504, -0.028656006, -0.008842468, -0.010864258, 0.013877869, -0.0015068054, -0.0031147003, -0.04043579, -0.047210693, -0.014663696, 0.010398865, -0.012878418, 0.028274536, 0.032165527, 0.05038452, -0.021408081, -0.038909912, 0.021591187, -0.08459473, 0.027252197, 0.035705566, 0.0040359497, -0.036895752, -0.066711426, -0.034698486, -0.005428314, -0.005168915, -0.002500534, -0.01663208, 0.040527344, 0.03237915, 0.027053833, 0.061676025, -0.012382507, 0.044525146, -0.010032654, 0.008491516, 0.016952515, -0.02355957, -0.018310547, -0.029541016, 0.0014467239, 0.008857727, -0.006538391, 0.003129959, 0.014213562, 0.017700195, -0.0038146973, -0.028320312, 0.0022773743, 0.008224487, -0.032470703, 0.031921387, -0.05050659, 0.01071167, -0.040100098, -0.039886475, -0.02760315, -0.014297485, -0.057495117, 0.028411865, -0.0024852753, -0.03149414, -0.012268066, 0.005493164, -0.031143188, -0.045562744, 0.0018863678, 0.0058898926, 0.016326904, 0.0010814667, 0.030960083, -0.013664246, -0.05065918, -0.03829956, 0.0289917, -0.057891846, -0.049682617, -0.0037708282, 0.016860962, 0.029815674, -0.0059127808, -0.004032135, -0.012741089, 0.025054932, -0.02468872, 0.046203613, -0.049438477, -0.034301758, 0.054901123, 0.011100769, -0.0019197464, 0.0013074875, 0.031829834, 0.021102905, 0.027862549, 0.0345459, 0.032714844, -0.022827148, 0.030975342, -0.015655518, -0.0138168335, -0.03479004, -0.002193451, 0.030563354, 0.0054244995, -0.037506104, 0.002122879, 0.034362793, 0.064697266, 0.057647705, -0.003206253, -0.008987427, -0.041809082, -0.051483154, -0.053375244, -0.018432617, 0.046417236, 0.06976318, -0.030776978, 0.007850647, 0.024749756, -0.023498535, 0.0129852295, 0.0013160706, 0.039642334, 0.0068359375, 0.01612854, 0.024108887, 0.040924072, -0.0072364807, 0.059783936, -0.04916382, -0.010139465, 0.017852783, 0.013626099, -0.032714844, -0.034484863, -0.0042533875, -0.007419586, -0.022201538, -0.020751953, 0.015777588, 0.0017700195, -0.012687683, 0.014656067, 0.026321411, -0.005104065, -0.0037174225, -0.037719727, -0.03677368, 0.012702942, 0.047454834, -0.007904053, -0.107543945, 0.050079346, 0.021881104, 0.061523438, -0.030578613, -0.13378906, -0.053344727, -4.1544437e-05, -0.005744934, 0.01474762, 0.060516357, -0.018432617, 0.01247406, 0.036987305, -0.0015878677, -0.016860962, 0.012489319, 0.081726074, 0.00982666, 0.009986877]}, "B073XD9W9D": {"id": "B073XD9W9D", "original": "Brand: Cook Time\nName: BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches\nDescription:

      Color:Black + Copper

      Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy!\u00a0

      Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.\u00a0

      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.\u00a0

      With one of these mats down, you can prepare a full breakfast in a matter of minutes.\u00a0

      They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.\u00a0

      For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.\u00a0

      These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.\u00a0

      These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...\u00a0

      -Veggies

      -Shrimp\u00a0

      -Fish

      -Bacon\u00a0

      -Pizza\u00a0

      -Pancakes\u00a0

      BBQ Grill Mats Size: 15.75\" x 13\"

      Note: can not directly contact the fire source

      \nFeatures: 100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill.\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit!\nAPPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!\n", "metadata": {"Name": "BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches", "Brand": "Cook Time", "Description": "

      Color:Black + Copper

      Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy!\u00a0

      Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.\u00a0

      Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.\u00a0

      With one of these mats down, you can prepare a full breakfast in a matter of minutes.\u00a0

      They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.\u00a0

      For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.\u00a0

      These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.\u00a0

      These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...\u00a0

      -Veggies

      -Shrimp\u00a0

      -Fish

      -Bacon\u00a0

      -Pizza\u00a0

      -Pancakes\u00a0

      BBQ Grill Mats Size: 15.75\" x 13\"

      Note: can not directly contact the fire source

      ", "Features": "100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill.\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit!\nAPPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0011177063, 0.0064926147, -0.022720337, 0.0053253174, -0.03189087, -0.018310547, -0.013244629, -0.009124756, -0.029464722, 0.02293396, -0.0025234222, 0.027572632, -0.006839752, -0.015586853, 0.0075263977, -0.018936157, 0.0032405853, 0.00894928, -0.016311646, -0.02746582, 0.0014753342, -0.028564453, -0.017807007, 0.008674622, 0.04244995, -0.025878906, -0.039916992, -0.012619019, 0.022506714, -0.014587402, 0.015106201, 0.00308609, 0.034973145, 0.038726807, -0.07611084, -0.013633728, -0.011100769, 0.0076065063, -0.027114868, 0.01663208, 0.040100098, -0.027130127, 0.01133728, 0.005279541, -0.023025513, -0.015945435, 0.01676941, -0.02444458, 0.012702942, 0.044006348, 0.018844604, 0.03881836, 0.0057373047, 0.03125, -0.0028572083, -0.00089883804, 0.013053894, 0.048736572, 0.02961731, -0.04257202, -0.040252686, 0.019378662, 0.025665283, 0.03540039, -0.018325806, 0.0003836155, 0.072631836, -0.031234741, -0.048706055, -0.02128601, 0.052978516, 0.0057144165, 0.04309082, -0.029632568, -0.0413208, -0.045135498, 0.016693115, -0.031188965, 0.019744873, -0.031280518, -0.062683105, -0.0065612793, 0.03048706, -0.076660156, -0.009773254, -0.06970215, -0.033233643, 0.035949707, -0.015380859, -0.017181396, -0.014030457, 0.030258179, -0.050811768, 0.030136108, 6.967783e-05, -0.005882263, -0.048034668, -0.06036377, 0.0032043457, 0.0423584, 0.00541687, -0.024597168, 0.053497314, -0.0046157837, -0.0021133423, 0.07409668, -0.004470825, -0.013008118, -0.0066223145, -0.007858276, 0.0018882751, 0.004535675, 0.0066375732, -0.010513306, -0.046020508, -0.001739502, 0.011680603, -0.030517578, 0.010307312, -0.034210205, -0.05657959, -0.03878784, 0.003932953, 0.026321411, 0.07598877, 0.049682617, -0.0034599304, 0.024108887, -0.074401855, 0.023468018, -0.0049057007, -0.0027313232, 0.027877808, 0.062927246, -0.00040364265, -0.0014228821, 0.016479492, -0.021270752, -0.0059051514, 0.010932922, -0.015853882, -0.011405945, 0.039031982, -0.029968262, -0.029846191, 0.015457153, 0.032562256, 0.024871826, -0.04776001, -0.06939697, 0.017105103, -0.0135269165, 0.03591919, 0.018417358, -0.060546875, 0.008903503, -0.015449524, -0.0028457642, -0.03805542, -0.04272461, -0.03265381, -0.031555176, 0.0049095154, -0.04019165, -0.04095459, 0.05230713, -0.013557434, 0.004634857, 0.015205383, 0.004322052, 0.021865845, -0.038330078, -0.062927246, -0.019638062, -0.0011253357, -0.002008438, -0.02104187, 0.06359863, 0.06756592, -0.084106445, -0.05886841, -0.052459717, 0.10974121, -0.032348633, -0.024597168, -0.019241333, 0.027313232, 0.04272461, 0.017501831, 0.021942139, 0.019119263, -0.022460938, -0.04324341, 0.013313293, 0.037384033, 0.04800415, -0.07434082, 0.009544373, 0.0010700226, -0.058532715, -0.035186768, 0.003982544, -0.012382507, 0.027709961, 0.017227173, -0.020095825, 0.0040016174, 0.014556885, 0.008384705, 0.025390625, 0.0070114136, -0.004146576, -0.013397217, -0.001086235, -0.011505127, -0.028198242, 0.0076560974, -0.009414673, 0.023956299, -0.009094238, 0.07788086, 0.0039978027, 0.03161621, 0.04550171, 0.007396698, 0.01600647, -0.02961731, 0.007183075, 0.006336212, 0.042266846, -0.03086853, 0.0013914108, 0.024932861, 0.025390625, -0.035736084, 0.045532227, 0.032928467, 0.08276367, -0.03829956, -0.027999878, 0.0057296753, 0.012916565, -0.03262329, -0.013908386, 0.024215698, -0.032409668, 0.00032544136, -0.0050811768, 0.00068092346, 0.001750946, 0.02015686, -0.0014877319, 0.038269043, -0.0011463165, 0.010246277, 0.028930664, -0.0670166, 0.0099487305, -0.016326904, -0.0008649826, -0.008659363, 0.027145386, 0.06323242, -0.008491516, 0.04220581, -0.06390381, 0.019317627, -0.00983429, -0.010604858, -0.039031982, 0.02659607, 0.0028915405, -0.009262085, 0.018112183, 0.039855957, 0.010658264, -0.025238037, -0.0029563904, 0.017211914, 0.007881165, 0.032470703, 0.054595947, 0.022247314, 0.0026836395, 0.03439331, -0.037841797, -0.00630188, 0.018203735, -0.0154953, -0.023284912, 0.014968872, -0.024871826, -0.027664185, 0.002500534, 0.0027637482, -0.04815674, 0.009132385, 0.04269409, -0.0149002075, -0.009231567, -0.009147644, 0.028961182, -0.02734375, 0.010093689, 0.007572174, 0.0047836304, 0.018981934, 0.006652832, 0.0025024414, -0.040618896, 0.035186768, 0.024398804, 0.030197144, -0.023925781, 0.040161133, 0.006160736, 0.012413025, 0.038238525, 0.02973938, 0.040283203, -0.0056648254, 0.008644104, -0.0317688, -0.010505676, -0.0031147003, 0.0028705597, -0.023956299, -0.0061950684, 0.01739502, 0.01689148, 0.046905518, 0.0569458, 0.025100708, 0.020462036, 0.02079773, -0.011398315, -0.005344391, 0.03527832, -0.00793457, -0.0115737915, 6.3061714e-05, -0.049194336, -0.00068712234, -0.02746582, -0.049560547, 0.019683838, 0.052459717, 0.020370483, -0.056365967, -0.0026683807, 0.016159058, -0.066223145, 0.008148193, -0.0056381226, 0.0011930466, 0.008155823, -0.01927185, -0.0129852295, -0.003200531, -0.05407715, -0.0058517456, 0.014091492, -0.03466797, -0.011955261, 0.014961243, -0.028366089, 0.0014390945, -0.009918213, 0.015563965, 0.0043678284, 0.02079773, 0.0028152466, -0.043823242, -0.010795593, 0.001168251, -0.027542114, 0.018661499, -0.034820557, -0.0026187897, -0.004119873, -0.022445679, -0.0022850037, 0.00024557114, 0.013336182, 0.014053345, 0.028823853, 0.02961731, 0.06561279, -0.032287598, -0.03930664, -0.018341064, 0.076049805, -0.078430176, -0.040771484, -0.01600647, 0.03640747, 0.026657104, -0.06274414, 0.0413208, -0.04989624, -0.10229492, 0.0010967255, -0.0029659271, -0.02420044, -0.026977539, -0.021865845, -0.04660034, -0.059661865, 0.009773254, 0.09039307, -0.0209198, -0.0022640228, -0.014213562, 0.00548172, -0.003545761, 0.021377563, 0.033355713, -0.011390686, -0.030853271, -0.0051460266, 0.053497314, -0.06262207, 0.056152344, 0.029846191, -0.033233643, -0.023666382, 0.031036377, 0.04660034, -0.04852295, -0.017181396, -0.0053863525, -0.06109619, -0.03805542, 0.026748657, -0.0069122314, 0.05178833, 0.0287323, -0.042938232, 0.04852295, -0.03326416, -0.01448822, 0.0017414093, -0.03930664, 0.029708862, -0.040527344, -0.015533447, 0.00015866756, -0.037994385, 0.0038661957, -0.046020508, -0.022888184, 0.009979248, 0.022460938, 0.009124756, -0.0051002502, 0.04916382, 0.01890564, 0.056762695, 0.016616821, -0.012451172, -0.014282227, -0.0690918, 0.103271484, 0.019897461, -0.0029468536, -0.029205322, 0.062164307, -0.023971558, -0.017990112, 0.013717651, -0.03704834, 0.031280518, 0.017227173, 0.006023407, 0.010414124, 0.01625061, 0.006111145, 0.033233643, -0.05697632, -0.035583496, -0.06347656, -0.006832123, -0.037017822, 0.09265137, 0.052368164, -0.025222778, 0.09069824, 0.08795166, 0.0102005005, -0.0033607483, -0.018112183, -0.0050582886, -0.0009899139, 0.030807495, 0.005680084, 0.010055542, -6.514788e-05, -0.00029110909, 0.002986908, -0.009925842, -0.037750244, 0.0074539185, 0.03491211, -0.018707275, 0.013412476, 0.012290955, 0.029891968, 0.009857178, 0.007030487, -0.017990112, 0.039245605, -0.016723633, 0.04824829, 0.013244629, 0.010047913, -0.0070648193, 0.03805542, 0.025024414, -0.0047454834, -0.01524353, 0.011772156, 0.024307251, 0.02494812, 0.036865234, -0.017929077, -0.0052986145, -0.007686615, -0.013648987, -0.022476196, 0.0124435425, 0.04171753, 0.02229309, 0.031341553, -0.02545166, -0.018417358, -0.037322998, -0.019927979, 0.019485474, -0.0031318665, -0.047454834, -0.017196655, 0.004299164, -0.0013818741, -0.005180359, 0.042755127, -0.05355835, 0.02545166, -0.004749298, -0.0725708, 0.002199173, -0.032684326, -0.014472961, -0.04055786, 0.0034885406, -0.006504059, -0.010772705, -0.06109619, 0.022750854, -0.0041007996, -0.0059127808, -0.001244545, 0.043548584, -0.030471802, -0.034301758, -0.004096985, 0.0057411194, 0.032958984, 0.009498596, 0.028717041, -0.03955078, -0.019638062, -0.03778076, 0.05355835, 0.013381958, 0.013511658, -0.011772156, -0.024047852, -0.0066719055, 0.030181885, 0.0579834, -0.0062675476, 0.03363037, -0.017501831, -0.0033512115, -0.030532837, -0.018630981, 0.048828125, -0.045715332, -0.0090408325, -0.026535034, 0.03842163, -0.020645142, -0.024230957, -0.04663086, 0.011154175, 0.040618896, -0.034942627, -0.017196655, -0.0037021637, 0.016906738, -0.0012168884, -0.030059814, -0.012878418, -0.013938904, 0.048858643, -0.022460938, -0.032165527, 0.0075683594, -0.0029735565, -0.023925781, 0.0015220642, 0.01071167, -0.027114868, 0.030258179, -0.04348755, -0.008659363, -0.014144897, 0.044921875, 0.043060303, -0.05126953, -0.018218994, 0.010612488, -0.039520264, -0.03692627, -0.0178833, 0.007499695, 0.0039711, 0.01776123, -0.032928467, -0.008224487, -0.0034999847, -0.013748169, 0.015960693, 0.013916016, 0.018997192, -0.024276733, 0.026641846, -0.05316162, -0.0059432983, 0.07885742, 0.00409317, 0.03488159, 0.035949707, -0.0019893646, 0.018554688, -0.022964478, -0.010421753, -0.0024318695, -0.012138367, -0.027954102, 0.025268555, -0.00035524368, -0.02508545, -0.009262085, 0.031158447, -0.026397705, -0.01550293, 0.048095703, 0.0066108704, 0.013175964, -0.0056037903, 0.06774902, 0.006576538, 0.00566864, -0.030700684, -0.0289917, -0.02468872, 0.05618286, -0.07849121, 0.05227661, 0.037322998, -0.06793213, 0.020019531, -0.010772705, 0.027816772, -0.03363037, 0.035461426, 0.010131836, -0.0018911362, -0.07019043, 0.0008883476, -0.035949707, 0.028076172, -0.014129639, -0.0014333725, 0.05227661, -0.010391235, -0.039367676, -0.014266968, 0.010902405, -0.049987793, -0.000787735, -0.014450073, -0.0060043335, -0.003604889, -0.009300232, -0.012786865, -0.007335663, 0.0013589859, -0.027160645, 0.02670288, 0.027786255, -0.04473877, -0.023529053, -0.020874023, 0.022567749, -0.045928955, 0.011940002, -0.027420044, 0.009094238, 0.0109939575, 0.0032691956, -0.030014038, -0.008964539, -0.029647827, -0.017089844, -0.011482239, 0.014961243, 0.0048599243, 0.038116455, -0.02432251, 0.0124435425, 0.018249512, -0.018325806, 0.024551392, -0.0021266937, -0.047302246, -0.0028133392, 0.011146545, 0.01058197, -0.032714844, 0.0032997131, 0.0385437, -0.043914795, -0.019256592, -0.031143188, 0.059753418, 0.013748169, 0.0006837845, 0.08782959, 0.0015478134, 0.023376465, 0.01335144, 0.00093126297, -0.010383606, 0.0069503784, 0.006465912, -0.05618286, -0.0027770996, -0.009300232, 0.008758545, -0.014663696, -0.015182495, -0.020263672, 0.056854248, 0.0068626404, -0.031021118, -0.03540039, -0.021499634, 0.023742676, -0.009162903, 0.00052690506, 0.008369446, 0.009384155, -0.031433105, 0.010650635, -0.060943604, -0.017608643, 0.032073975, 0.032165527, 0.00945282, -0.029663086, 0.0154953, 0.035827637, -0.022033691, 0.07739258, -0.043151855, -0.0068092346, -0.0049209595, 0.055999756, 0.0501709, 0.02432251, -0.00248909, -0.031829834, 0.014839172, -0.012794495, 0.010627747, -0.027359009, -0.02557373, -0.03439331, 0.011886597, 0.043182373, 0.03012085, 0.007965088, 0.03543091, 0.033172607, -0.02456665, -0.0017747879, 0.04550171, -0.014312744, -0.023422241, -0.008758545, -0.016540527, 0.04586792, -0.003900528, 0.013259888, 0.0055999756, 0.040649414, -0.045959473, 0.036590576, -0.020965576, 0.020629883, 0.017684937, -0.051635742, -0.0317688, -0.04159546, 0.004611969, -0.00655365, 0.020462036, -0.016189575, -0.013626099, 0.03112793, -0.0029716492, 0.007297516, 0.046417236, 0.014526367, -0.0039138794, -0.032958984, 0.05606079, 0.0178833, -0.0026359558, 0.043426514, -0.044921875, -0.024505615, 0.0028858185, 0.038360596, -0.0018110275, 0.0770874, -0.029968262, 0.0151901245, -0.01159668, 0.016845703, -0.032287598, -0.016586304, 0.0073280334, 0.012359619, 0.0062675476, -0.013175964, 0.014801025, 0.022827148, 0.033721924, -0.05899048, 0.0019721985, -0.002380371, 0.013587952, -0.01763916, -0.020492554, -0.046417236, -0.037139893, 0.06213379, 0.054901123, -0.050048828, -0.031799316, -0.017593384, 0.033416748, 0.0027675629, -0.014945984, 0.0019073486, -0.012039185, 0.015022278, 0.03390503, 0.01637268, -0.020126343, 0.01486969, -0.01525116, 0.013427734, 0.012123108, 0.052642822, 0.018081665, 0.061767578, 0.06384277, 0.05340576, 0.051971436, -0.046020508, 0.01423645, 0.08380127, -0.0059928894, -0.0121536255, -0.0051841736, -0.02067566, -0.064819336, -0.00076818466, 0.022094727, -0.0385437, -0.009803772, -0.044006348, 0.029022217, -0.040527344, -0.020935059, -0.00409317, 0.04537964, -0.013999939, 0.015113831, -0.042755127, 0.015991211, -0.012535095, -0.0045166016, -0.011291504, -0.010757446, -0.027496338, 0.021820068, 0.013496399, -0.038391113, -0.037506104, -0.008659363, 0.049560547, -0.08483887, -0.011604309, -0.037261963, 0.07659912, -0.0014429092, 0.06677246, -0.024658203, -0.06958008, -0.02255249, 0.020050049, -0.015838623, -0.016052246, -0.020126343, 0.025634766, 0.021728516, -0.0032653809, -0.011062622, 0.04360962, -0.00182724, -0.014297485, -0.0463562, -0.05834961, -0.03604126, 0.02911377, -0.022232056, -0.03225708, -0.019088745, 0.07458496, 0.01902771, 0.024612427, 0.03918457, -0.0073280334, -0.07623291, -0.022094727, -0.057403564, 0.029083252, 0.013046265, 0.018234253, 0.008476257, 0.027191162, -0.007411957, 0.018127441, -0.009010315, -0.040771484, 0.02772522, 0.028427124, -0.0132751465, -0.031311035, 0.007194519, -0.003320694, 0.00028514862, 0.01852417, 0.047912598, 0.02015686, -0.035217285, -0.0036964417, -0.007194519, 0.029647827, 0.011886597, -0.046936035, -0.03878784, 0.018920898, -0.0035915375, -0.039916992, 0.024139404, 0.0134887695, -0.02758789, -0.030380249, -0.034484863, 0.026489258, -0.03048706, -0.038116455, -0.012519836, 0.02659607, -0.023727417, -0.04824829, 0.008399963, -0.050445557, 0.014625549, 0.026687622, 0.0060539246, 0.016860962, -0.004508972, -0.046325684, 0.01121521, 0.028167725, 0.0057868958, 0.025619507, -0.00605011, 0.025131226, -0.012771606, 0.019683838, -0.016235352, -0.037384033, -0.030029297, 0.018844604, 0.012664795, -0.0027484894, 0.05709839, -0.047424316, 0.036010742, -0.022399902, 0.049957275, -0.01171875, 0.01550293, 0.006427765, -0.011169434, 0.026321411]}, "B01FUSLMDK": {"id": "B01FUSLMDK", "original": "Brand: BBQ GALORE TURBO\nName: BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366\nDescription: BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.\nFeatures: \n", "metadata": {"Name": "BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366", "Brand": "BBQ GALORE TURBO", "Description": "BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.027252197, 0.0012769699, 0.022125244, -0.019180298, -0.008621216, 0.0036182404, 0.0073051453, -0.030273438, 0.013916016, 0.044891357, 0.042297363, -0.0087890625, 0.00749588, -0.030075073, -0.04397583, -0.008659363, 0.033172607, 0.0059013367, 0.03225708, -0.0070724487, -0.005153656, 0.02166748, 0.00340271, 0.044525146, 0.06652832, -0.017654419, 0.025726318, 0.016799927, 0.05529785, 0.031585693, 0.04498291, -0.073791504, 0.011177063, 0.05255127, -0.06726074, -0.039733887, -0.028579712, 0.022842407, -0.013076782, -0.013999939, 0.02746582, -0.012107849, -0.097351074, 0.021530151, -0.059265137, -0.031707764, 0.0040016174, 0.0046043396, 0.01638794, 0.03967285, 0.0020828247, 0.016235352, -0.021194458, 0.009307861, 0.0032596588, 0.0067825317, -0.01876831, 0.029083252, 0.005378723, 0.031829834, 0.037994385, 0.034362793, -0.010391235, -0.0014247894, -0.025283813, -0.029251099, 0.07733154, 0.0047798157, -0.028503418, -0.03363037, 0.011154175, 0.031204224, 0.019805908, -0.03173828, 0.0076141357, 0.007911682, -0.012664795, -0.0076789856, 0.021972656, 0.018508911, 0.0039100647, -0.018585205, 0.09979248, -0.05355835, 0.027496338, -0.032440186, -0.010787964, -0.0053100586, 0.0065460205, -0.011558533, -0.00655365, -0.058654785, -0.007156372, 0.07159424, 0.009391785, -0.009117126, 0.015258789, -0.01763916, 0.011543274, 0.010063171, 0.032348633, -0.04220581, 0.038635254, -0.0050849915, 0.0070152283, -0.0028648376, -0.017913818, -0.009124756, 0.019424438, 0.029571533, -0.025970459, 0.02355957, 0.0029411316, -0.046417236, -0.007419586, 0.039916992, 0.022415161, -0.0015821457, 0.028717041, -0.034057617, 0.019592285, 0.027236938, -0.013343811, -0.06665039, 0.051879883, 0.01373291, -0.032196045, 0.029510498, -0.03414917, 0.02670288, -0.025512695, 0.0051994324, 0.06695557, 0.051483154, 0.014007568, -0.018310547, 0.023849487, -0.028015137, -0.014755249, -0.0090789795, 0.021240234, 0.005455017, 0.02658081, -0.015014648, -0.008857727, 0.0077056885, 0.00737381, 0.02017212, 0.016174316, -0.038146973, -0.016983032, 0.02671814, 0.050323486, 0.0054092407, -0.028274536, -0.020309448, 0.04156494, -0.033996582, -0.017929077, -0.06100464, -0.04095459, -0.031585693, -0.019546509, -0.04360962, -0.07086182, 0.032958984, 0.036712646, 0.0071258545, 0.0072784424, 0.029891968, 0.0024204254, -0.02796936, -0.013092041, -0.034454346, -0.007972717, 0.0017538071, 0.0038471222, -0.0013179779, 0.083618164, -0.0647583, -0.05239868, -0.017196655, 0.09899902, -0.030441284, 0.013053894, -0.010185242, 0.017852783, 0.027664185, 0.0014877319, 0.015388489, -0.003955841, -0.0128479, 0.0234375, -0.01914978, 0.026046753, -0.016952515, -0.008834839, -0.0033473969, 0.009994507, -0.044128418, -0.0024318695, 0.0206604, -0.042022705, -0.008514404, -0.08062744, -0.023330688, -0.009010315, 0.036071777, 0.026504517, 0.056854248, 0.0046157837, 0.04776001, -0.0073432922, -0.07171631, -0.019454956, -0.019088745, -0.00894928, -0.0069847107, -0.020950317, 0.014381409, -0.019348145, -0.0059928894, -0.044403076, 0.0074272156, 0.006717682, -0.015075684, -0.016021729, -0.009254456, -0.013206482, 0.004272461, -0.011924744, 0.029968262, 0.04727173, 0.043670654, -0.045654297, 0.046661377, 0.060577393, 0.099365234, -0.035125732, -0.03189087, 0.015419006, -0.03756714, -0.022521973, 0.023025513, -0.046081543, -0.02760315, 0.0056381226, 0.0084991455, -0.051513672, -0.03515625, 0.06021118, 0.011680603, 0.018371582, 0.053771973, -0.012237549, 0.028274536, -0.025375366, 0.003730774, -0.04345703, 0.016723633, -0.0140686035, -0.05496216, 0.010566711, -0.04260254, 0.0748291, 0.008125305, 0.063964844, 0.045013428, -0.01235199, -0.011291504, -0.0075569153, -0.0011854172, -0.015174866, 0.030670166, 0.031707764, 0.005870819, -0.027297974, -0.0076293945, 0.0023994446, 0.02418518, -0.0048103333, 0.0049209595, 0.033721924, -0.012535095, 0.039611816, -0.01473999, 0.01675415, -0.038848877, 0.022338867, -0.011505127, 0.02116394, 0.0042495728, 0.0037994385, 0.016983032, -0.0057144165, -0.034729004, 0.045532227, 0.038391113, -0.01763916, 0.021026611, 0.0050468445, 0.029891968, 0.012680054, -0.026351929, -0.014656067, 0.00023937225, -0.021850586, 0.00028467178, 0.002696991, -0.058654785, 0.030654907, 0.07562256, 0.041412354, 0.043060303, 0.061431885, 0.010284424, 0.04260254, 0.07385254, 0.050964355, 0.007587433, -0.0059928894, 0.022354126, -0.059417725, -0.051116943, 0.007133484, 0.049957275, -0.09320068, -0.014007568, -0.023895264, 0.02571106, 0.0069122314, 0.018569946, -0.0050849915, -0.019210815, -0.0061912537, -0.0076065063, -0.008857727, 0.05050659, -0.027160645, -0.020690918, -0.032989502, -0.031982422, 0.0007944107, -0.04034424, 0.0063209534, -0.017822266, 0.01725769, 0.0040016174, 0.0021972656, 0.024154663, -0.01776123, -0.02470398, 0.0103302, -0.034210205, 0.013122559, 0.03439331, -0.01914978, -0.021636963, 0.02999878, -0.05819702, -0.031677246, -0.015197754, -0.049560547, 0.00680542, 0.022857666, 0.014129639, -0.022964478, 0.02708435, 0.017440796, 0.025619507, 0.012451172, 0.027359009, -0.042236328, -0.017959595, -0.01687622, -0.026870728, 0.04336548, -0.030319214, -0.023284912, 0.006511688, -0.008361816, 0.031402588, -0.020874023, 0.0574646, -0.018325806, 0.047058105, 0.02633667, 0.02355957, -0.0075950623, -0.029876709, 0.007865906, 0.059509277, -0.02784729, -0.028137207, -0.03793335, -0.0037841797, 0.044891357, 0.010765076, 0.020050049, -0.029327393, -0.07104492, 0.008773804, 0.013130188, -0.037750244, 0.004714966, -0.0345459, -0.026535034, -0.033843994, 0.0064086914, 0.03225708, -0.020874023, 0.007583618, -0.0070152283, -0.00712204, 0.0044670105, -0.016403198, -0.0064735413, 0.012321472, -0.050811768, -0.02407837, -0.009460449, 0.076538086, -0.008071899, 0.00040125847, -0.024398804, -0.017211914, 0.032073975, 0.026641846, 0.0056991577, 0.036010742, 0.00018203259, -0.011680603, -0.025375366, -0.0025806427, -0.018234253, 0.055480957, 0.01991272, 0.015655518, 0.033996582, -0.027420044, -0.06866455, -0.036834717, -0.010559082, -0.0041389465, -0.011528015, -0.011581421, -0.022155762, -0.05316162, -0.022994995, -0.004676819, 0.0027046204, -0.017242432, 0.019973755, 0.03326416, 0.0010442734, 0.12237549, 0.029769897, 0.026412964, 0.0047798157, -0.002746582, -0.04345703, -0.025390625, 0.04837036, -0.016021729, -0.0065193176, -0.03173828, 0.04586792, -0.0018730164, 0.0013685226, -0.017837524, -0.033813477, 0.033447266, 0.008201599, -0.0016918182, -0.0068893433, -0.018356323, 0.025222778, 0.027755737, -0.028396606, -0.05645752, -0.054992676, -0.004425049, -0.049194336, 0.03250122, -0.005207062, -0.015991211, 0.04840088, 0.05758667, -0.0068511963, 0.062927246, 0.047912598, -0.030410767, -0.0017366409, 0.053466797, -0.044189453, 0.009391785, 0.0072250366, -0.029159546, -0.014450073, -0.017684937, -0.05117798, 0.0030345917, 0.006904602, -0.0066223145, -0.01737976, 0.025604248, 0.0473938, -0.0030937195, -0.024291992, -0.021438599, 0.019180298, -0.053497314, -0.0104522705, 0.011146545, -0.0124053955, -0.023376465, 0.008491516, 0.0056419373, -0.03768921, 0.005432129, 0.015510559, -0.008506775, 0.040985107, 0.009170532, -0.008079529, -0.004135132, 0.02861023, -0.018661499, 0.009735107, 0.022109985, 0.054382324, -0.01574707, 0.070617676, 0.03515625, -0.053771973, -0.005836487, 0.0016374588, 0.017959595, -0.048339844, -0.051574707, -0.017471313, 0.036834717, 0.025344849, -0.038085938, 0.0037460327, -0.017211914, -0.027755737, -0.0030460358, -0.0045280457, -0.0070266724, -0.0055732727, -0.01084137, -0.0021018982, 0.005290985, -0.022415161, -0.00667572, -0.059814453, 0.024551392, 0.008865356, 0.0044174194, -0.024383545, 0.03414917, -0.04663086, 0.013137817, -0.028839111, 0.005531311, 0.020233154, 0.013061523, 0.044555664, -0.016036987, -0.040008545, -0.016052246, 0.081604004, -0.005886078, 0.006385803, -0.04852295, -0.025238037, -0.012184143, 0.02960205, 0.07055664, 0.0066184998, 0.052459717, -0.024429321, -0.0061035156, -0.030807495, -0.013420105, 0.038146973, -0.051971436, -0.022720337, -0.01058197, 0.044433594, -0.0155181885, 0.025756836, 0.028137207, -0.005870819, -0.036712646, 0.0076446533, -0.06390381, 0.008865356, -0.0054244995, -0.025161743, 0.009712219, 0.012138367, -0.021728516, -0.018539429, 0.0015287399, -0.038146973, -0.009979248, -0.012161255, -0.01625061, -0.01071167, -0.0058517456, -0.010498047, 0.017562866, -0.04623413, 0.045410156, -0.08026123, 0.09094238, 0.10772705, 0.0010328293, 0.029312134, -0.005420685, -0.030456543, -0.01424408, -0.014984131, 0.025894165, -0.0029506683, -0.03152466, -0.045684814, 0.027069092, -0.048309326, 0.0065994263, -0.0057373047, 0.029251099, 0.004524231, -0.042541504, -0.025039673, -0.04650879, -0.004962921, 0.053100586, -0.018859863, 0.018936157, -0.01524353, 0.034240723, 0.031402588, -0.022918701, 0.0033855438, -0.0031166077, -0.019973755, 0.0020141602, -3.6418438e-05, 0.012313843, -0.02331543, 0.0077552795, 0.037750244, -0.012054443, -0.007827759, 0.021133423, 0.0021419525, -0.019683838, -0.046722412, 0.0008234978, -0.032104492, -0.01914978, 0.05886841, 0.004173279, -0.015792847, -0.0040779114, -0.017227173, 0.035247803, -0.05230713, -0.0034561157, 0.033325195, -0.036254883, 0.024108887, -0.026504517, 0.014305115, 0.011955261, 0.023971558, -0.078186035, 0.0007123947, 0.018707275, 0.03161621, -0.008644104, -0.020690918, 0.03527832, -0.026062012, -0.010116577, 0.0048179626, -0.040008545, 0.017486572, 0.047729492, -0.038238525, 0.005970001, 0.026504517, -0.009689331, -0.017364502, -0.0039901733, 0.007785797, -0.015312195, -0.0033302307, 0.004501343, -0.01007843, -0.020065308, -0.010848999, 0.0061912537, -0.004825592, 0.026641846, -0.046966553, -0.029251099, 0.012802124, 0.064331055, 0.01927185, 0.0105896, -0.051361084, -0.02418518, -0.008132935, -0.0010623932, -0.0152282715, 0.057861328, -0.0037593842, 0.036346436, 0.024414062, -0.010574341, 0.019424438, 0.00046992302, -0.049713135, 0.022232056, 0.0031604767, 0.027923584, -0.018096924, 0.021316528, 0.069885254, -0.048828125, -0.041381836, -0.05419922, 0.012077332, 0.026000977, -0.011978149, 0.05984497, 0.008796692, 0.00040555, 0.029037476, 0.008163452, -0.022445679, -0.028930664, -0.004459381, -0.051452637, -0.040130615, -0.030258179, 0.02078247, -0.022521973, 0.012008667, 0.0060272217, 0.028121948, 0.018737793, 0.038269043, -0.012359619, 0.00548172, -0.029251099, -0.019088745, 0.02178955, -0.028564453, -0.021728516, -0.02633667, -0.039916992, -0.06304932, -0.016799927, 0.019561768, 0.016799927, 0.025878906, -0.011138916, 0.022644043, 0.009109497, -0.0019721985, 0.047302246, -0.0076942444, -0.02760315, 0.037231445, 0.05316162, -0.010696411, 0.0715332, -0.021331787, -0.028869629, -0.01939392, 0.002998352, 0.023223877, 0.021072388, -0.06311035, 0.0001654625, 0.03314209, 0.060546875, -0.014945984, 0.030395508, 0.004634857, -0.035247803, -0.014297485, 0.0054130554, -0.010803223, -0.05142212, -0.005683899, -0.014427185, 0.018920898, 0.0110321045, -0.003900528, -0.0002002716, 0.049835205, 0.011833191, -0.00026774406, 0.012664795, -0.0012359619, 0.008811951, 0.042022705, -0.0006380081, -0.006374359, 0.021102905, 0.03540039, 0.004989624, -0.041748047, -0.025360107, 0.0076675415, 0.041381836, 0.043884277, -0.009597778, -0.034057617, 0.05709839, 0.010299683, -0.059631348, -0.0027313232, 0.022384644, 0.024383545, 0.020126343, -0.04901123, -0.022857666, -0.011375427, 0.027267456, -0.005432129, 0.04724121, -0.005493164, 0.012001038, 0.032318115, -0.012870789, 0.020751953, 0.00066900253, 0.011016846, 0.009803772, 0.016830444, -0.0184021, -0.07244873, 0.021972656, 0.014877319, -0.018844604, 0.00046801567, 0.02684021, 0.0072517395, -0.005771637, 0.01259613, -0.022354126, -0.022369385, 0.030258179, 0.026290894, -0.0084991455, 0.018035889, 0.014152527, -0.031921387, 0.011383057, 0.0028686523, 0.02998352, 0.042114258, 0.057159424, 0.035064697, -0.071777344, -0.03805542, 0.0055618286, -0.006362915, -0.019195557, 0.0181427, 0.022323608, 0.008232117, 0.030288696, 0.032226562, 0.020523071, 0.05682373, 0.0030345917, 0.0116119385, -0.0078125, 0.018310547, 0.038146973, 0.00819397, 0.0047187805, -0.025299072, -0.025146484, -0.018707275, -0.013427734, -0.04284668, 0.047302246, 0.01499939, -0.02218628, -0.008392334, -0.03527832, 0.027923584, 0.016723633, 0.02368164, -0.04788208, 0.015556335, -0.013305664, 0.013572693, -0.0670166, 0.030654907, -0.046722412, -0.039093018, -0.009422302, 0.013404846, 0.045959473, -0.026763916, -0.02130127, -0.02520752, 0.010185242, 0.021026611, 0.017822266, -0.019805908, 0.059173584, -0.05609131, -0.02796936, -0.054229736, 0.023773193, -0.10638428, -0.0154953, -0.041992188, 0.0067710876, 0.00080013275, -0.022918701, -0.0013961792, 0.06274414, 0.010871887, -0.000916481, -0.014595032, -0.066711426, -0.029678345, 0.05142212, -0.008117676, -0.022720337, -0.02746582, 0.0546875, 0.015525818, 0.021896362, 0.0019798279, 0.017929077, -0.027389526, 0.046966553, 0.023223877, 0.011177063, -0.010444641, -0.0007224083, -0.0028800964, 0.013206482, -0.042877197, -0.045562744, -0.013618469, 0.00116539, 0.020828247, 0.01878357, 0.025848389, -0.0061454773, -0.058807373, -0.036865234, -0.029922485, 0.0077781677, 0.02243042, 0.013694763, 0.0048980713, 0.0060310364, 0.005004883, -0.03515625, -0.005302429, 0.003835678, 0.005180359, 0.029830933, -0.0592041, -0.015853882, -0.018981934, -0.051239014, -0.012565613, -0.020111084, 0.052856445, -0.0046577454, -0.016281128, 0.0030822754, -0.024139404, -0.008026123, 0.0032367706, -0.018295288, 0.008720398, -0.022888184, 0.00868988, -0.0018539429, 0.0065193176, 0.03817749, -0.0028743744, -0.03111267, -0.03036499, 0.03466797, 0.00030136108, 0.012779236, -0.028640747, 0.08685303, 0.028701782, 0.12548828, -0.0005879402, -0.035186768, -0.048309326, 0.05065918, 0.041503906, -0.037353516, 0.060760498, -0.010429382, 0.019210815, 0.026351929, -0.0028038025, 0.00592041, 0.015357971, 0.08325195, -0.00018751621, 0.015090942]}, "B001DC7FPM": {"id": "B001DC7FPM", "original": "Brand: Stansport\nName: Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black\nDescription: \nFeatures: Compatible with most standard 16.4 oz propane canisters\nWide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances\nSwivel extension feet for added stability - Feet fold away completely for storage\nMade of durable high impact plastic for reliability and lightness\nReplacement base for camping or hunting stoves and propane accessories\n", "metadata": {"Name": "Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black", "Brand": "Stansport", "Description": "", "Features": "Compatible with most standard 16.4 oz propane canisters\nWide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances\nSwivel extension feet for added stability - Feet fold away completely for storage\nMade of durable high impact plastic for reliability and lightness\nReplacement base for camping or hunting stoves and propane accessories", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.05984497, -0.023986816, -0.03164673, -0.025741577, -0.047607422, 0.017608643, -0.07659912, 0.016296387, -0.01940918, -0.021575928, -0.010108948, 0.03048706, -0.059783936, -0.049926758, 0.041809082, -0.04333496, 0.011062622, 0.015167236, -0.015335083, -0.02923584, 0.022842407, -0.035980225, -0.018951416, 0.105773926, 0.013259888, -0.0053710938, -0.0014877319, -0.008491516, -0.00079250336, -0.020584106, 0.012191772, 0.02973938, 0.03463745, -0.034729004, 0.030517578, -0.02204895, 0.038085938, -0.025344849, -0.029067993, 0.019119263, 0.022903442, 0.0003836155, 0.023605347, 0.009094238, -0.0067634583, -0.047668457, 0.0524292, -0.01737976, 0.031433105, 0.010856628, 0.0054779053, -0.011383057, -0.006011963, -0.034851074, -0.02722168, -0.016540527, -0.00970459, 0.02532959, -0.018478394, 0.0027275085, 0.00995636, 0.07867432, -0.0071105957, 0.040008545, -0.03366089, -0.0051879883, 0.07800293, -0.023422241, 0.030380249, -0.03237915, -0.0057868958, 0.06359863, 0.012161255, 0.042266846, -0.04840088, -0.042022705, 0.02583313, -0.010391235, 0.031341553, 0.017211914, -0.020889282, -0.004055023, 0.05142212, -0.03375244, -0.008880615, -0.026275635, -0.02067566, 0.013549805, -0.016311646, 0.0013227463, -0.013717651, -0.013442993, -0.0005645752, -0.0013189316, -0.01739502, -0.0022258759, -0.010261536, -0.05859375, 0.023376465, -0.010017395, 0.04119873, -0.051574707, 0.03475952, 0.013412476, 0.024154663, 0.051452637, -0.0076446533, -0.05267334, 0.0071792603, -0.004928589, -0.019042969, 0.0047035217, 0.0018424988, 0.014831543, -0.040618896, 0.008720398, -0.028808594, 0.010955811, -0.022750854, 0.051513672, -0.01499939, 0.0023288727, 0.00083112717, 0.015975952, -0.001458168, -0.0060768127, 0.0022678375, -0.0057640076, -0.029510498, 0.007671356, -0.03479004, 0.031280518, 0.04534912, 0.02053833, 0.011985779, -0.0152282715, -0.010971069, -0.03756714, -0.0010566711, -0.012084961, 0.014602661, 0.0048332214, 0.029876709, 0.0022010803, 0.0064353943, 0.0037136078, 0.0011777878, -0.0022201538, 0.023239136, -0.0058288574, 0.010406494, -0.041046143, 0.010536194, 0.048431396, -0.035461426, -0.0042419434, 0.040771484, -0.03414917, -0.010551453, -0.07196045, -0.018310547, -0.054595947, -0.034606934, 0.0008454323, -0.06506348, 0.08959961, 0.02822876, -0.011665344, 0.009841919, 0.0020751953, 0.0037841797, 0.038024902, 0.017105103, 0.007499695, 0.0023326874, -0.0029506683, -0.04840088, 0.09075928, 0.0690918, -0.10620117, -0.05947876, -0.055419922, 0.12963867, -0.032470703, 0.017868042, -0.015945435, 0.014801025, -0.023910522, -0.015533447, 0.0006699562, 0.0035438538, 0.029708862, 0.011528015, -0.04940796, -0.0029125214, 0.021560669, -0.027908325, 0.039520264, -0.020553589, -0.0152282715, 0.01838684, 0.010482788, 0.02041626, 0.0107040405, 0.0345459, -0.015464783, 0.01977539, 0.0037975311, -0.0340271, 0.027557373, 0.029510498, 0.03439331, -0.03378296, -0.024368286, -0.0135650635, -0.030334473, -0.029968262, -0.009613037, -0.0012254715, 0.015716553, 0.016143799, -0.012519836, -0.0049552917, 0.0066986084, 0.0079574585, -0.0028133392, -0.012802124, 0.0036773682, 0.0027065277, 0.008033752, -0.0046463013, 0.010543823, 0.036743164, 0.013542175, -0.018188477, 0.06768799, 0.08319092, 0.08154297, -0.04006958, -0.03552246, 0.018539429, -0.051635742, -0.012268066, 0.016342163, 0.0061454773, 0.03186035, 0.034057617, -0.0138549805, -0.022064209, 0.018829346, 0.06530762, 0.006389618, 0.010650635, 0.015106201, -0.023544312, 0.025863647, -0.0060272217, 0.044769287, -0.026351929, 0.020874023, -0.01928711, 0.049072266, 0.045532227, 0.0015058517, 0.01927185, 0.026153564, 0.044006348, 0.051086426, -0.03149414, 0.019958496, 0.001909256, 0.03945923, -0.027404785, -0.0044288635, 0.017547607, 0.008201599, -0.049346924, 0.033996582, -0.021881104, 0.00869751, 0.003545761, 0.010681152, -0.04800415, -0.010276794, 0.024246216, 0.02861023, -0.008552551, 0.0025405884, -0.0077667236, -0.028808594, 0.00762558, 0.011505127, -0.015731812, 0.013504028, -0.015045166, -0.024627686, 0.038085938, -0.006324768, 0.017608643, -0.009269714, -0.019226074, 0.026901245, 0.017593384, -0.018112183, -0.022247314, -0.0076141357, -0.03201294, 0.025878906, -0.011955261, -0.041168213, -0.033172607, 0.00907135, 0.033599854, 0.031188965, 0.02420044, 0.005054474, 0.0076293945, 0.04385376, 0.021087646, 0.012992859, -0.00020968914, -0.025360107, 0.038330078, -0.00793457, 0.0046043396, -0.01828003, -0.0013828278, 0.007701874, 0.021087646, -0.017181396, 0.0072364807, 0.017959595, -0.0025978088, 0.054534912, 0.012031555, -0.0030574799, 0.022613525, 0.02456665, 0.000102579594, -0.052947998, -0.009185791, 0.00058603287, -0.02458191, -0.013664246, -0.03338623, -0.034088135, 0.038085938, -0.016571045, -0.024719238, 0.010856628, 0.010047913, 0.01008606, 0.014976501, 0.008796692, 0.03692627, -0.010421753, -0.042785645, 0.0075798035, 0.026443481, -0.036071777, 0.046569824, -0.013694763, -0.0132369995, -0.010253906, 0.014518738, -0.021560669, -0.012435913, -0.040802002, -0.019348145, 0.035186768, 0.019210815, 0.009803772, -0.06549072, -0.030715942, -0.04345703, 0.0059394836, 0.032043457, -0.053741455, 0.035583496, 0.0149002075, -0.04196167, -0.004257202, -0.011489868, 0.016952515, -0.0050811768, 0.03579712, 0.05126953, 0.022888184, 0.025848389, -0.02507019, 0.0287323, 0.034423828, -0.014755249, -0.0090408325, -0.0184021, -0.022445679, 0.00050878525, 0.002023697, -0.02583313, 0.011383057, -0.056274414, 0.025299072, 0.011688232, -0.018188477, -0.0041618347, -0.057556152, -0.032714844, -0.03665161, 0.005821228, 0.010040283, -0.018508911, 0.004699707, -0.032806396, 0.013954163, 0.015525818, -0.031951904, -0.014228821, -0.02029419, 0.0067596436, -0.012451172, 0.04486084, -0.09539795, 0.036895752, 0.034942627, -0.02835083, 0.015701294, -0.023086548, 0.024734497, -0.03845215, 0.024856567, -0.00012731552, -0.010597229, -0.042541504, -0.05441284, 0.0016040802, 0.011550903, 0.013305664, 0.009597778, 0.010475159, -0.00056648254, 0.037109375, -0.017410278, -0.0019311905, 0.06695557, -0.02229309, 0.018035889, -0.05380249, 0.009147644, 0.0028247833, 0.04547119, -0.01612854, 0.00094509125, 0.02230835, 0.022109985, -0.03515625, 0.039154053, 0.018447876, 0.03189087, -0.013885498, -0.0030708313, -0.014572144, -0.029052734, 0.03125, -0.010482788, -0.020767212, -0.045288086, 0.009117126, 0.027755737, 0.025863647, -0.033447266, -0.008422852, 0.082092285, 0.029281616, 0.005012512, 0.023422241, -0.014129639, -0.013198853, 0.034362793, -0.043304443, -0.010192871, -0.059143066, 0.006904602, -0.080078125, 0.049102783, 0.054016113, -0.025375366, 0.061676025, 0.032226562, 0.0064697266, 0.009979248, 0.020950317, -0.017288208, 0.0072784424, 0.055786133, -0.006401062, -0.010475159, 0.008262634, 0.018753052, 0.010368347, 0.006778717, -0.031433105, -0.0029125214, -0.028274536, -0.020492554, -0.024169922, -0.0003271103, 0.011634827, -0.049835205, 0.019058228, 0.012741089, -0.062438965, -0.04449463, -0.03765869, -0.011543274, -0.0019874573, -0.0009622574, -0.00095176697, -0.0090408325, -0.02053833, -0.02243042, 0.012809753, 0.016906738, 0.0009469986, 0.037719727, 0.016723633, -0.011779785, -0.009635925, -0.013435364, -0.058410645, 0.040740967, -0.013832092, 0.044006348, 0.012619019, -0.05316162, 0.049102783, -0.039093018, 0.004119873, 0.01876831, -0.043518066, -0.07873535, 0.0135650635, 0.05847168, 0.030822754, -0.05618286, -0.014915466, -0.050842285, -0.013702393, -0.018676758, 0.008049011, -0.05307007, 0.008705139, 0.01991272, -0.039886475, -0.068725586, -0.06866455, 0.04751587, -0.0027675629, 0.020111084, 0.0029354095, -0.021743774, -0.006389618, -0.009643555, -0.045288086, 0.034423828, -0.038909912, 0.013137817, 0.02079773, -0.0018587112, 0.023986816, -0.038848877, -0.0034103394, -0.006187439, 0.0423584, 0.011077881, 0.0014190674, -0.022277832, -0.006008148, 0.010757446, -0.008491516, 0.030822754, 0.016479492, 0.039764404, -0.032165527, 0.035583496, -0.024032593, 0.0047569275, -0.026428223, 0.039215088, -0.05279541, -0.044555664, 0.0340271, -0.010261536, 0.012489319, -0.011856079, 0.015472412, 0.0060043335, 0.016693115, -0.05419922, 0.0032157898, -0.0009794235, -0.059417725, -0.015411377, -0.020217896, -0.033477783, 0.091796875, 0.0013914108, -0.017532349, -0.02293396, 0.010681152, -0.0038776398, -0.037322998, -0.019943237, -0.02961731, 0.028213501, -0.051940918, 0.009613037, -0.010635376, -0.0012369156, 0.029129028, 0.007911682, 0.0021209717, 0.009986877, -0.013336182, -0.026473999, -0.0051345825, 0.0037117004, 0.04852295, -0.0104522705, -0.045898438, -0.014755249, -0.044555664, -0.020126343, -0.029190063, -0.028579712, -0.016174316, 0.029724121, -0.010612488, -0.03213501, -0.020187378, -0.0004925728, 0.036895752, 0.009674072, 0.024276733, -0.07489014, 0.049743652, -0.015403748, -0.0044174194, 0.062164307, -0.025527954, -0.0051345825, 0.031143188, 0.027069092, -0.030029297, 0.031341553, 0.028839111, 0.02243042, -0.051879883, -0.013595581, 0.01763916, -0.02444458, -0.058410645, 0.017303467, 0.016571045, 0.01586914, -0.010665894, 0.05706787, 0.02885437, 0.033172607, 0.0099105835, -0.004211426, 0.015037537, -0.003276825, 0.027908325, -0.006816864, -0.003074646, 0.003358841, 0.03857422, 0.0031280518, 0.0073013306, -0.030456543, -0.0060920715, -0.030090332, 0.015975952, -0.0028629303, -0.00011086464, 0.036010742, -0.005886078, -0.015640259, 0.018127441, -0.00093364716, -0.03842163, -0.024307251, 0.00459671, -0.0619812, -0.011894226, 0.0033798218, -0.037872314, -0.02507019, 0.033996582, -0.02279663, -0.0077819824, -0.005847931, -0.015014648, -0.028305054, -0.015220642, -0.012924194, -0.022705078, 0.013412476, -0.012542725, -0.0055618286, -0.001584053, 0.0060043335, 0.002571106, -0.0023708344, -0.006378174, 0.00705719, 0.03591919, -0.008934021, -0.025299072, 0.014541626, -0.030456543, 0.0049324036, -0.0013017654, 0.0076408386, 0.01158905, 0.0072898865, -0.08770752, -0.012840271, -0.0053482056, 0.00049209595, -0.010551453, -0.006778717, 0.018798828, -0.020370483, -0.024734497, -0.022506714, 0.08734131, -0.027694702, 0.00082206726, 0.028717041, 0.046417236, 0.002281189, 0.044921875, -0.014984131, -0.026535034, 0.019378662, 0.015136719, -0.026351929, -0.044708252, -0.0362854, -0.011268616, 0.0076789856, 0.031921387, -0.04385376, 0.022583008, -0.03475952, -0.02381897, -0.0385437, 0.010643005, -0.017303467, 0.013038635, 0.0023937225, -0.055786133, -0.03503418, -0.05960083, -0.06161499, -0.022628784, -0.062438965, -0.029953003, 0.013877869, 0.025314331, 0.015930176, -0.010871887, -0.044403076, -0.010902405, 0.013938904, 0.012001038, -0.07336426, -0.011543274, 0.03643799, 0.06628418, -0.038085938, -0.0069274902, -0.009208679, -0.038909912, -0.01727295, 0.025146484, 0.057556152, -0.054229736, 0.03741455, 0.005130768, 0.04876709, -0.0036640167, 0.030563354, 0.015533447, 0.02041626, -0.0155181885, 0.0064201355, 0.0043525696, -0.028625488, -0.013282776, -0.030639648, 0.032348633, 0.038208008, -0.0051002502, 0.032409668, -0.025314331, 0.07281494, -0.010955811, -0.015609741, 0.01373291, 0.0025024414, 0.059020996, 0.013961792, -0.030288696, -0.0018262863, 0.024765015, 0.0062217712, -0.02255249, -0.021408081, 0.012359619, 0.046051025, 0.033966064, -0.006954193, -0.03515625, -0.0118255615, 0.02607727, -0.03390503, 0.006752014, 0.013763428, -0.009010315, -0.017990112, -0.013969421, -0.0052719116, 0.017654419, 0.025161743, -0.057861328, 0.019424438, -0.021148682, -0.0066223145, 0.002954483, -0.013313293, -0.022994995, -0.006336212, 0.012046814, -0.04147339, -0.026626587, 0.01008606, -0.04864502, 0.07043457, -0.016113281, 0.031402588, 0.026351929, -0.040496826, 0.010070801, 0.043121338, -0.033477783, -0.04800415, -0.04434204, 0.014602661, 0.024429321, -0.04031372, -0.039916992, 0.0074043274, 0.01335144, 0.02519226, -0.06604004, 0.049468994, -0.08135986, 0.06976318, 0.013084412, 0.044281006, -0.05822754, 0.009887695, -0.010116577, 0.022842407, 0.0022697449, 0.076171875, 0.030731201, -0.005329132, 0.014007568, -0.0079193115, 0.0340271, -0.018981934, 0.013900757, -0.027313232, 0.009353638, 0.023284912, 0.0027542114, -0.004310608, -0.015625, -0.013389587, -0.009773254, -0.022338867, -0.047851562, -0.002090454, -0.0014247894, 0.022384644, -0.024871826, 0.003993988, -0.011550903, -0.040496826, 0.0071144104, -0.01398468, -0.018585205, -0.027633667, -0.043914795, -0.031280518, 0.007297516, -0.05429077, -0.0036144257, -0.0023994446, -0.014877319, 0.01260376, 0.0063667297, -0.026275635, -0.032928467, -0.010116577, 0.006313324, 0.02178955, -0.019104004, 0.0067863464, 0.015716553, -0.023620605, -0.05734253, 0.014656067, -0.05105591, -0.026306152, -0.032470703, 0.0033779144, 0.0124435425, -0.015014648, 0.0040359497, 0.05340576, 0.017410278, -0.013977051, 0.00944519, -0.046569824, -0.012619019, 0.01626587, 0.0017757416, -0.00642395, -0.045166016, 0.033599854, 0.03491211, 0.018737793, -0.0014486313, 0.028427124, -0.105651855, 0.0041389465, -0.03475952, 0.062194824, -0.049316406, -0.00076055527, 0.0026340485, -0.007160187, -0.034057617, -0.03100586, 0.029144287, 0.072265625, 0.054718018, 0.012306213, 0.013824463, -0.018417358, -0.0715332, -0.049438477, -0.016189575, 0.026367188, 0.035339355, -0.044708252, -0.013870239, -0.000626564, -0.023757935, 0.006111145, 0.016021729, -0.0073242188, 0.035339355, 0.015792847, 0.0064315796, 0.033447266, -0.036987305, 0.025115967, -0.05886841, 0.008857727, 0.07550049, -0.01449585, -0.006164551, 0.012268066, -0.044403076, -0.017181396, -0.014541626, -0.032104492, -0.062469482, -0.05834961, 0.06222534, 0.030029297, 0.014282227, -0.01574707, 0.056793213, 0.01902771, -0.03829956, 0.021255493, 0.029403687, 0.031097412, -0.044128418, 0.06173706, 0.028335571, 0.08190918, -0.0075569153, -0.09637451, -0.072387695, 0.022842407, 0.031829834, -0.012382507, 0.046203613, -0.002105713, -0.0043144226, 0.012863159, -0.04888916, -0.06555176, 0.033081055, 0.113708496, -0.0028972626, 0.031173706]}, "B07FWVSNR9": {"id": "B07FWVSNR9", "original": "Brand: GRILLMATIC\nName: GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up\nDescription: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
      IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
      GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
      NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
      REUSABLE - Easy to clean. Dishwasher safe.
      HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.\nFeatures: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.\nIMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.\nGRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.\nNON-STICK - Teflon keeps grilled or baked food from sticking to the mat.\nREUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.\n", "metadata": {"Name": "GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up", "Brand": "GRILLMATIC", "Description": "MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
      IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
      GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
      NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
      REUSABLE - Easy to clean. Dishwasher safe.
      HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.", "Features": "MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.\nIMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.\nGRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.\nNON-STICK - Teflon keeps grilled or baked food from sticking to the mat.\nREUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.027877808, 0.0022468567, -0.014137268, -0.02798462, -0.010940552, -0.013763428, -0.025497437, -0.0039978027, -0.022537231, 0.016860962, -0.021102905, 0.03479004, 0.011779785, -0.0178833, 0.04107666, -0.013420105, 0.011955261, -0.010772705, 0.0023384094, -0.01777649, -0.005126953, -0.008232117, -0.005493164, 0.00075006485, 0.03225708, -0.013038635, 0.0029678345, -0.007369995, 0.008583069, -0.027664185, 0.009399414, 0.022903442, 0.03756714, 0.010734558, -0.04260254, -0.038208008, 0.011909485, -0.015731812, -0.030059814, 0.02973938, 0.015823364, -0.019699097, -0.022109985, 0.0038757324, -0.03668213, -0.0031223297, -0.010848999, -0.023239136, -0.024993896, 0.06890869, 0.024459839, 0.02432251, 0.021530151, 0.04473877, 0.0069236755, -0.01701355, -0.0065574646, -0.026779175, 0.03817749, 0.032043457, -0.00440979, -0.03302002, 0.019577026, -0.03338623, 4.3928623e-05, 0.021606445, 0.05670166, -0.017959595, -0.06311035, -0.015060425, 0.04144287, -0.037139893, 0.041992188, -0.046691895, -0.01838684, -0.019989014, 0.011894226, -0.034088135, 0.014961243, -0.038238525, -0.04269409, 0.0026855469, 0.047088623, -0.070495605, 0.013542175, -0.04397583, -0.016571045, 0.016464233, -0.036499023, -0.010185242, -0.024429321, 0.014503479, -0.072021484, 0.033691406, -0.0026931763, 0.01737976, -0.014419556, -0.0067863464, 0.004043579, 0.023513794, 0.02305603, -0.033996582, 0.06585693, -0.030410767, -0.024932861, 0.019424438, -0.013031006, 0.020629883, 0.00026369095, 0.042388916, -0.026748657, -0.05026245, 0.03515625, -0.009376526, -0.038909912, -0.002714157, 0.036102295, -0.048065186, 0.0074653625, -0.058746338, -0.04812622, -0.031982422, -0.004142761, 0.058746338, 0.058563232, 0.05822754, 0.007774353, 0.009918213, -0.072143555, 0.032318115, -0.01335907, 0.006679535, 0.02293396, 0.03842163, -0.013061523, -0.021270752, -0.0032901764, -0.0135650635, 0.020080566, -0.024139404, 0.030441284, 0.006149292, 0.04525757, 0.019104004, -0.021636963, 0.01739502, 0.038391113, 0.03265381, -0.033355713, -0.045776367, 0.011024475, 0.009231567, 0.047851562, 0.005104065, -0.032165527, 0.010749817, -0.0051879883, 0.0015029907, -0.050109863, -0.016601562, -0.011062622, -0.021347046, 0.03579712, -0.03390503, -0.027435303, 0.029769897, -0.059814453, -0.010223389, 0.016357422, 0.0021514893, -0.010566711, -0.012886047, -0.014427185, -0.010559082, -0.001461029, 0.0056495667, -0.019897461, 0.006664276, 0.08734131, -0.08746338, -0.06274414, -0.037994385, 0.122558594, -0.028076172, -0.03741455, 0.00032019615, 0.01802063, 0.047058105, 0.019729614, 0.012878418, 0.024841309, -0.016082764, 0.0037937164, -0.011177063, 0.046813965, 0.031433105, -0.10266113, -0.0036315918, -0.0066223145, -0.044708252, -0.019577026, -0.009300232, -0.004787445, 0.02696228, -0.019760132, -0.017822266, -0.0069732666, 0.0026664734, -0.017425537, 0.03265381, 0.022781372, -0.021316528, -0.01651001, -0.00012564659, 0.002023697, -0.023803711, -0.000702858, -0.044921875, 0.01084137, -0.0124053955, 0.05117798, 0.028244019, -0.007007599, 0.049194336, 0.0149383545, -0.017333984, -0.022735596, -0.016906738, -0.016403198, 0.017852783, -0.024490356, 0.037750244, 0.046173096, 0.028152466, -0.020523071, 0.036865234, 0.060760498, 0.030044556, -0.02973938, -0.0010461807, -0.004890442, -0.03125, -0.044036865, 0.01109314, 0.030517578, -0.032440186, -0.024765015, 0.041625977, -0.04336548, -0.021636963, 0.010101318, 0.030761719, 0.044647217, 0.02027893, -0.012283325, 0.045928955, -0.06542969, 0.00667572, -0.029144287, 0.016662598, -0.0073547363, 0.005630493, 0.052703857, -0.021575928, 0.020858765, -0.020004272, 0.04724121, 0.018325806, -0.009132385, -0.022918701, 0.0069999695, 0.0107040405, 0.010604858, 0.026046753, 0.0012903214, -0.030090332, -0.05303955, 0.0077171326, 0.041137695, 0.005302429, -0.0008406639, 0.009246826, -0.006061554, -0.0085372925, 0.023071289, -0.035217285, 0.0102005005, 0.0032806396, -0.0871582, -0.049743652, -0.006385803, 0.02809143, -0.03414917, -0.007785797, 0.010597229, -0.01084137, 0.0015029907, 0.026290894, 0.005508423, -0.016067505, -0.033233643, 0.027450562, -0.0413208, 0.022399902, -0.015312195, 0.014518738, -0.008575439, -0.008895874, -0.020553589, -0.05795288, 0.041168213, 0.037994385, 0.029067993, -0.039398193, 0.05618286, 0.020355225, -0.016830444, 0.03869629, 0.017807007, 0.028900146, -0.029083252, 0.032104492, -0.017822266, -0.0065689087, 0.018569946, 0.004508972, -0.028823853, -0.008575439, 0.022445679, 0.031082153, 0.031585693, 0.039642334, 0.009223938, -0.005126953, -0.0021781921, -0.012840271, -0.0067977905, 0.029937744, 0.005508423, 0.008575439, 0.010223389, -0.05847168, 0.00081682205, -0.04046631, -0.062683105, 0.038970947, 0.033477783, 0.025238037, -0.0362854, -0.007003784, 0.015594482, -0.041412354, 0.020629883, 0.008560181, 0.0064201355, -0.0021915436, -0.014533997, 0.027160645, -0.01121521, -0.03463745, 0.0016183853, 0.008384705, -0.030899048, -0.0075645447, 0.03677368, -0.033233643, 0.004322052, -0.039611816, 0.042022705, 0.02130127, 0.045074463, 0.007858276, -0.07965088, -0.019470215, 0.0020751953, -0.03945923, -0.019683838, -0.050476074, 0.013442993, -0.036224365, -0.030563354, -0.020263672, 0.0154953, -0.010139465, -0.00053453445, 0.023361206, 0.02381897, 0.04144287, -0.023880005, -0.040039062, -0.011077881, 0.0501709, -0.05432129, -0.027175903, -0.00504303, 0.019302368, 0.014541626, -0.047546387, 0.015991211, -0.043670654, -0.08276367, -0.0015220642, -0.004005432, -0.033935547, -0.01965332, -0.018447876, -0.049987793, -0.04260254, -0.00066518784, 0.0703125, -0.024734497, -0.037872314, -0.02281189, -0.026626587, 0.018096924, 0.00075387955, 0.029006958, 0.002866745, -0.0103302, -0.046936035, 0.022949219, -0.022735596, 0.021469116, 0.008125305, -0.021438599, -0.017425537, 0.020095825, 0.04257202, -0.059814453, -0.0014295578, -0.0072288513, -0.04989624, -0.035705566, 0.03189087, -0.024017334, 0.0592041, 0.031585693, -0.03793335, 0.07409668, -0.037200928, -0.018722534, -0.006378174, -0.028198242, 0.014228821, -0.03112793, -0.023773193, 0.00084114075, -0.038909912, -0.053466797, -0.033996582, -0.03250122, 0.038848877, 0.004398346, 0.020004272, 0.017547607, -0.016540527, 0.031280518, 0.05444336, 0.020111084, -0.010215759, -0.024902344, -0.055999756, 0.07879639, 0.0036621094, 0.0009522438, -0.04360962, 0.07989502, -0.027328491, -0.014831543, 0.007858276, -0.048858643, 0.03262329, 0.022598267, -0.016174316, 0.014053345, -0.04244995, 0.028915405, 0.051483154, -0.051330566, -0.07550049, -0.056152344, 0.011550903, -0.08062744, 0.094055176, 0.030441284, -0.01210022, 0.06591797, 0.06665039, -0.014297485, 0.016448975, -0.01637268, 0.023239136, 0.009002686, 0.0017318726, -0.014083862, 0.00793457, -0.0032215118, -0.009407043, 0.00087594986, -0.026123047, -0.027496338, 0.00674057, 0.021850586, -0.013092041, 0.021911621, 0.020339966, 0.008003235, 0.022399902, 0.011703491, -0.036376953, 0.050628662, -0.020324707, 0.045837402, -0.0060920715, 0.013015747, -0.025375366, 0.061645508, 0.008140564, 0.00054740906, -0.015838623, 0.005870819, 0.027633667, 0.024551392, 0.02949524, -0.015808105, 0.0001000762, 0.0020160675, 0.016235352, -0.04324341, 0.026779175, 0.05319214, 0.03591919, 0.05883789, -0.028076172, -0.03213501, -0.031463623, -0.020950317, 0.014144897, -0.04156494, -0.06329346, -0.01927185, 0.008880615, 0.017822266, -0.017501831, 0.038513184, -0.031433105, 0.006099701, -0.011077881, -0.030151367, -0.0079193115, -0.039886475, -0.028121948, -0.00010210276, 0.018295288, 0.007972717, -0.06866455, -0.053222656, -0.00274086, 0.005809784, 0.02748108, -0.006877899, 0.04736328, -0.04699707, -0.01713562, -0.0047683716, -0.002084732, 0.041229248, 0.01852417, 0.031280518, -0.041809082, -0.001253128, -0.038513184, 0.050323486, 0.03363037, 0.009124756, -0.0029201508, 0.0011959076, 0.016067505, 0.033050537, 0.055541992, 0.009979248, 0.013725281, -0.023529053, 0.02281189, -0.047332764, -0.025543213, 0.051330566, -0.08477783, -0.011360168, -0.013633728, 0.07421875, -0.013191223, -0.01600647, -0.078063965, 0.0073928833, 0.03201294, -0.04763794, 0.0022678375, 0.00068998337, 0.011047363, 0.014862061, -0.013175964, -0.0013151169, -0.013366699, -0.014076233, -0.022781372, -0.024917603, 0.019561768, -0.010673523, -0.03274536, 0.017028809, -0.029006958, -0.0057754517, 0.045135498, -0.028259277, -0.009750366, 0.0066337585, 0.03439331, 0.060943604, -0.04751587, 0.007358551, 0.020874023, -0.021362305, 0.010551453, -0.0014753342, -0.011917114, -0.006401062, -0.02381897, -0.030441284, 0.015220642, -0.024612427, 0.0078048706, 0.008163452, -0.010177612, 0.03050232, -0.0072631836, 0.020477295, -0.00598526, 0.0025596619, 0.045013428, 0.026901245, 0.02331543, 0.025741577, -0.026153564, -0.018066406, -0.027252197, -0.013687134, -0.00894928, -0.018417358, -0.0011768341, 0.034332275, 0.0077209473, -0.02558899, -0.01612854, 0.042663574, -0.011001587, -0.010047913, 0.01675415, 0.02835083, 0.0017652512, -0.009468079, 0.07659912, -0.022842407, 0.010231018, -0.015945435, -0.012496948, -0.017059326, 0.035247803, -0.049987793, 0.04309082, 0.02330017, -0.02670288, 0.009857178, 0.005886078, 0.022644043, -0.028915405, 0.038879395, 0.012939453, -0.0023212433, -0.05429077, -0.0042533875, -0.033691406, 0.036071777, -0.04324341, -0.0032405853, 0.030731201, 0.023605347, -0.01979065, -0.017288208, 0.025054932, -0.0385437, -0.0056533813, -0.011276245, -0.0055732727, -0.017837524, -0.014930725, -0.022476196, -0.01398468, -0.00869751, -0.0113220215, 0.01928711, 0.0050697327, -0.0259552, -0.026306152, -0.030334473, 0.030456543, -0.032318115, 0.0017690659, -0.059020996, 0.0024356842, -0.02067566, 0.024978638, -0.0099487305, 0.00029349327, -0.03704834, -0.010414124, -0.010948181, -0.003156662, -0.010787964, 0.034698486, -0.0052986145, -0.007610321, 0.025421143, -0.011680603, 0.012359619, -0.0072669983, -0.0029335022, 0.012252808, 0.012321472, 0.026290894, -0.030319214, -0.02519226, 0.0385437, -0.040863037, -0.015060425, -0.050750732, 0.0463562, -0.008682251, -0.013710022, 0.10058594, 0.01374054, 0.028457642, 0.005607605, 0.005420685, -0.023986816, 0.018966675, 0.00623703, -0.043701172, -0.004425049, -0.0072898865, 0.0049476624, 0.002216339, -0.03427124, -0.03353882, 0.023132324, -0.035980225, -0.02444458, -0.016601562, -0.02696228, 0.0090408325, 0.016586304, 0.028198242, 0.01550293, -0.0065994263, -0.023666382, 0.025283813, -0.03829956, -0.03286743, 0.06365967, 0.03729248, 0.00018393993, -0.031555176, 0.01512146, 0.034973145, -0.040283203, 0.08843994, -0.059387207, -0.027801514, -0.001543045, 0.08831787, 0.061309814, 0.03552246, -0.016601562, -0.06524658, 0.0021381378, -0.0010023117, 0.035308838, -0.011161804, -0.06359863, -0.056793213, 0.08935547, 0.05279541, 0.031433105, -0.013130188, 0.0035114288, -0.01828003, -0.0154418945, 0.014266968, 0.050231934, -0.010253906, -0.0055007935, -0.024093628, -0.013679504, 0.009231567, -0.013130188, 0.00075674057, 0.015510559, 0.015319824, -0.0034255981, 0.02809143, -0.0033245087, 0.037200928, 0.0030879974, -0.03387451, -0.06262207, -0.016677856, -0.004501343, -0.02696228, 0.009277344, 0.011436462, 0.017669678, 0.03414917, 0.005317688, 0.010063171, 0.012817383, 0.009719849, 0.031555176, -0.05166626, 0.015914917, 0.0181427, 0.0028419495, 0.0031337738, -0.0395813, -0.004337311, -0.0017032623, 0.006000519, 0.0025730133, 0.068481445, -0.007484436, 0.017242432, -0.03756714, 0.040802002, -0.06149292, -0.031982422, 0.008262634, 0.015335083, 0.0016260147, -0.0024547577, -0.0013551712, 0.0019416809, 0.064697266, -0.029037476, 0.017807007, -0.011375427, 0.018630981, -0.042053223, 0.013587952, -0.023742676, -0.05899048, 0.024810791, 0.047912598, -0.028198242, 0.033721924, -0.00017046928, 0.010192871, -0.0016222, -0.014671326, -0.007133484, 0.01676941, -0.024093628, 0.029281616, 0.03616333, 0.004421234, 0.004940033, -0.0129470825, 0.028396606, 0.009689331, 0.040161133, 0.010871887, 0.06359863, 0.050445557, 0.05508423, 0.053863525, -0.030136108, 0.021896362, 0.05999756, -0.013435364, 0.012168884, -0.049316406, -0.0054244995, -0.06512451, -0.0048561096, 0.03213501, -0.040008545, 0.0026397705, -0.019714355, 0.012207031, -0.023498535, -0.009979248, -0.03857422, 0.04727173, -0.0262146, 0.021224976, -0.059753418, 0.001581192, -0.017837524, -0.027526855, -0.029449463, -0.01826477, -0.04321289, 0.02835083, -0.007511139, -0.018463135, -0.002439499, -0.021759033, 0.033325195, -0.06237793, 0.009155273, -0.002855301, 0.0814209, -0.0048599243, 0.0619812, -0.05529785, -0.05480957, -0.03527832, 0.017913818, -0.06335449, -0.029800415, -0.011505127, 0.013412476, 0.02130127, -0.016082764, -0.04876709, 0.04473877, -0.015960693, -0.017471313, -0.036834717, -0.078552246, -0.03869629, 0.061767578, -0.0009918213, -0.0064926147, -0.042022705, 0.066833496, 0.013900757, 0.02268982, 0.02835083, -0.0036201477, -0.052886963, -0.008354187, -0.03829956, 0.011810303, 0.026153564, -0.01512146, 0.030899048, 0.0010890961, -0.039611816, -0.0020427704, 0.0011644363, -0.008712769, 0.032196045, 0.041259766, -0.015853882, -0.008560181, -0.018493652, -0.0012235641, -0.0023498535, 0.0016717911, 0.03652954, 0.022628784, -0.04425049, 0.040740967, 0.014961243, 0.028656006, 0.04260254, -0.023971558, -0.030014038, 0.017990112, 0.009155273, -0.031311035, 0.038208008, 0.03201294, -0.016082764, -0.045562744, 0.0040779114, 0.027786255, -0.023376465, 0.0051727295, -0.041992188, 0.012054443, 0.01953125, -0.046081543, 0.03137207, -0.06921387, 0.026290894, 0.033416748, 0.022628784, 0.024398804, 0.010818481, -0.0635376, -0.010406494, 0.029022217, 0.016494751, 0.025283813, -0.022247314, 0.05014038, 0.019866943, 0.026275635, -0.02142334, 0.0003170967, -0.030395508, 0.045684814, 0.007549286, -0.005756378, 0.04006958, -0.03555298, 0.00554657, 0.009971619, -0.007980347, -0.03527832, 0.039794922, 0.012748718, 0.00091362, 0.03466797]}, "B01IHHLB3W": {"id": "B01IHHLB3W", "original": "Brand: ThermoPro\nName: ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer\nDescription: \nFeatures: Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor\nAccurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to \u00b10.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on\nEasy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage\nSmart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included\nBacklight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\n", "metadata": {"Name": "ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer", "Brand": "ThermoPro", "Description": "", "Features": "Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor\nAccurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to \u00b10.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on\nEasy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage\nSmart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included\nBacklight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.036010742, 0.009056091, -0.011741638, 0.03640747, -0.019943237, -0.030151367, 0.007247925, -0.042236328, 0.04647827, 0.018539429, -0.014213562, 0.00907135, 0.022323608, -0.04360962, 0.011695862, 0.008430481, 0.022399902, 0.0051078796, 0.0440979, 0.006111145, -0.023452759, 0.04208374, 0.031402588, 0.01007843, 0.031921387, -0.0013551712, 0.0124053955, 0.010543823, 0.021865845, 0.018096924, 0.027740479, -0.035308838, 0.019546509, 0.037994385, -0.06982422, -0.019119263, -0.027999878, 0.019836426, -0.011299133, -0.013244629, 0.004348755, 0.005138397, -0.0005135536, 0.035369873, -0.027175903, -0.042266846, 0.02671814, 0.0019226074, -0.0061683655, 0.015930176, 0.036193848, -0.0035266876, 0.042663574, -0.0006017685, 0.007549286, 0.026000977, 0.004627228, 0.0010480881, 0.031402588, -0.06149292, -0.027435303, -0.0037708282, 0.041412354, 0.03866577, -0.022903442, -0.009513855, 0.05899048, -0.01134491, 0.03414917, -0.03652954, -0.00067806244, 0.04751587, -0.0063285828, -0.033355713, 0.0043640137, -0.017700195, 0.0017929077, -0.033813477, 0.008796692, 0.021636963, -0.02545166, -0.027770996, 0.009025574, -0.032958984, 0.027496338, 0.008300781, -0.017181396, -0.016555786, -0.025360107, -0.042144775, -0.030593872, 0.014526367, -0.025863647, -0.0105896, -0.025680542, -0.014846802, 0.0020523071, -0.0077400208, 0.0035877228, -0.0050086975, -0.0042648315, -0.02394104, -0.01461792, -0.008125305, -0.005542755, 0.06628418, -0.02078247, 0.008094788, 0.01828003, 0.020965576, 0.018829346, -0.049865723, -0.043792725, -0.038146973, -0.023635864, 0.051727295, -0.021331787, -0.03677368, 0.011329651, -0.01727295, -0.033233643, -0.013870239, 0.007801056, 0.033996582, 0.021270752, 0.015525818, 0.014572144, 0.0007548332, -0.058776855, 0.042419434, -0.026992798, -0.018463135, 0.014144897, 0.035308838, 0.00970459, -0.0340271, -0.0074768066, -0.012535095, 0.01096344, 0.0021762848, 0.017181396, -0.046417236, -0.0063056946, 0.031555176, -0.031799316, -0.0002539158, 0.015213013, 0.02961731, -0.024429321, -0.058624268, 0.024520874, 0.016082764, 0.03829956, -0.010391235, -0.029067993, -0.034729004, -0.03378296, -0.017700195, 0.0041007996, -0.025985718, -0.008956909, -0.0043144226, -0.0014476776, 0.016784668, 0.015617371, -0.011741638, 0.016784668, 0.0054130554, 0.0127334595, 0.008811951, 0.022232056, -0.012123108, -0.012840271, -0.001496315, 0.003955841, 0.0058784485, 0.0025691986, 0.079956055, 0.07897949, -0.09918213, -0.07092285, -0.06274414, 0.17004395, -0.08093262, 0.012649536, 0.0137786865, -0.02407837, 0.0023899078, 0.037719727, 0.015411377, -0.092285156, -8.004904e-05, -0.00843811, 0.0076828003, -0.016738892, -0.005012512, 0.0032653809, 0.041992188, -0.011070251, -0.03866577, -0.061401367, 0.025299072, -0.054718018, 0.051757812, -0.06488037, 0.017456055, -0.0110321045, 0.030960083, -0.020828247, -0.00466156, 0.015823364, -0.024978638, 0.00017428398, -0.052246094, -0.030853271, 0.013847351, -0.048828125, -0.022399902, -0.007827759, 0.031982422, 0.013435364, 0.002861023, 0.0036811829, -0.00081920624, 0.06451416, -0.017440796, -0.004901886, -0.00497818, 0.073791504, 0.010681152, 0.0063209534, 0.027450562, 0.030654907, 0.019683838, -0.019973755, 0.04208374, 0.072509766, 0.03869629, -0.016784668, -0.015357971, 0.0129470825, 0.008270264, -0.025497437, 0.014465332, 0.01576233, 0.003566742, 0.018096924, -0.008117676, -0.0050201416, 0.016937256, -0.0026359558, 0.007972717, 0.0423584, 0.023391724, 0.009750366, 0.040405273, -0.008033752, 0.05493164, -0.04925537, 0.02961731, -0.03375244, 0.03479004, 0.05480957, -0.0047721863, 0.026000977, -0.011932373, 0.00069618225, -0.008659363, -0.033355713, -0.0051002502, 0.019226074, 0.010276794, -0.0073051453, -0.020950317, -0.015586853, -0.045806885, -0.007858276, 0.017532349, 0.0019273758, -0.04660034, -0.004470825, 0.02670288, 0.012145996, -0.004196167, 0.008926392, -0.059906006, 0.0010814667, -0.0012044907, -0.014457703, -0.014343262, 0.012413025, -0.014274597, -0.010223389, -0.0032844543, 0.02468872, -0.02482605, 0.03366089, 0.0121154785, 0.018661499, -0.008262634, 0.023086548, 0.0385437, -0.027877808, 0.029022217, -0.0024337769, -0.04220581, -0.017562866, 0.032714844, 0.007621765, -0.05001831, 0.011428833, 0.05923462, 0.047332764, -0.057922363, 0.06536865, 0.04296875, 0.0090408325, 0.030151367, -0.0033874512, 0.006942749, -0.029693604, 0.0023937225, -0.05810547, -0.00030827522, -0.0067253113, 0.04336548, -0.03225708, -0.0085372925, 0.0007815361, 0.031951904, 0.039398193, 0.045440674, 0.028137207, -0.031707764, -0.008476257, -0.013999939, -0.00024187565, 0.010932922, -0.019958496, -0.016906738, -0.008781433, 0.012680054, 0.039276123, -0.010292053, -0.074523926, 0.037994385, 0.024993896, 0.012878418, -0.04019165, -0.015182495, 0.029556274, -0.037200928, -0.01637268, -0.0062789917, -0.023071289, 0.0028762817, 0.012634277, -0.011482239, -0.009994507, -0.056152344, -0.020324707, 0.0140686035, -0.032958984, 0.011024475, 0.04824829, -0.040130615, -0.02243042, 0.00079250336, 0.032592773, 0.04119873, 0.03845215, 0.010360718, -0.036254883, -0.01876831, -0.025436401, -0.046020508, -0.015289307, -0.040924072, 0.018692017, -0.02444458, 0.008384705, 0.017211914, 0.030303955, 0.017349243, -0.004119873, 0.031982422, -0.008010864, 0.026870728, -0.014892578, -0.020019531, 0.029968262, 0.089782715, 0.03387451, -0.02684021, 0.005214691, 0.010520935, -0.024093628, -0.022003174, -0.022018433, -0.0023040771, -0.08306885, -0.010559082, -0.02067566, -0.020050049, 0.0063171387, -0.051452637, -0.00920105, -0.048919678, 0.010910034, 0.04055786, -0.028686523, 0.014152527, -0.036010742, -0.0057258606, 0.0060195923, -0.00086927414, 0.025802612, -0.012817383, 0.033081055, -0.02861023, 0.009635925, -0.027282715, 0.03942871, 0.03253174, -0.007423401, -0.004611969, -0.012535095, -0.0067977905, 0.00082445145, -0.019195557, -0.027633667, -0.02331543, -0.022598267, -0.022857666, -0.0024986267, 0.03918457, 0.009155273, -0.00655365, 0.016143799, -0.011039734, -0.039276123, -0.0027656555, -0.010978699, 0.012992859, -0.0066490173, -0.013282776, 0.0008826256, -0.061462402, 0.012893677, -0.07110596, -0.010269165, 0.0047340393, 0.072509766, 0.026550293, 0.009880066, 0.08258057, -0.0362854, 0.055541992, 0.035583496, -0.029251099, 0.016967773, -0.058013916, 0.011528015, 0.06652832, -0.0137786865, -0.041168213, 0.044158936, -0.011627197, -0.029968262, 0.004634857, -0.042236328, 0.07141113, -0.032562256, -0.02470398, -0.020248413, 0.0007457733, 0.0289917, -0.012191772, 0.06793213, -0.0027828217, -0.049041748, 0.016967773, -0.046691895, 0.046325684, 0.0037231445, 0.007156372, 0.047180176, 0.046173096, 0.0045547485, 0.03527832, 0.058685303, -0.023025513, 0.031341553, -0.005748749, -0.034088135, -0.010314941, 0.0032367706, 0.016845703, 0.014053345, 0.01612854, -0.048217773, 0.004760742, 0.0059890747, 0.010505676, -0.05303955, 0.0044898987, 0.050476074, 0.02180481, 0.014526367, -0.07159424, 0.06359863, -0.020523071, -0.018722534, 0.0041923523, -0.03050232, -0.06518555, 0.028137207, -0.010627747, -0.035064697, -0.0007185936, 0.014129639, -0.0024986267, 0.0043411255, -0.0012693405, 0.029037476, 0.0067443848, -0.02645874, 0.012840271, -0.00096035004, 0.0003540516, 0.03479004, -0.021453857, 0.044830322, 0.01499176, -0.0053215027, 0.027297974, -0.00088071823, 0.003227234, 0.016067505, -0.00041651726, 0.020309448, -0.004585266, -0.03074646, 0.0016078949, 0.050354004, -0.07397461, 0.039978027, -0.017501831, -0.03540039, 0.0027313232, -0.052703857, -0.041656494, -0.042877197, -0.034820557, 0.0021343231, -0.039398193, -0.006679535, 0.01751709, 0.0084991455, -0.052886963, -0.004184723, 0.012496948, -0.047027588, 0.02848816, -0.007949829, 0.0077590942, 0.0335083, -0.009941101, 0.05819702, -0.044830322, 0.004295349, -0.031219482, 0.010803223, 9.11355e-05, 0.016448975, 0.0059661865, -0.03186035, 0.001619339, 0.024887085, 0.07086182, 0.0060691833, -0.008583069, -0.058013916, -0.04248047, -0.024765015, -0.015296936, 0.04547119, -0.024612427, -0.008399963, -0.048553467, 0.0028018951, -0.0045814514, 0.0026226044, -0.016052246, 0.01928711, -0.037750244, 0.019760132, -0.013137817, 0.0390625, 0.0077209473, -0.013046265, 0.030273438, 0.004371643, -0.006290436, -0.024810791, 0.072387695, -0.018371582, 0.0003900528, 0.022750854, -0.045440674, 0.005470276, -0.008491516, -0.0423584, 0.06323242, -0.06903076, -0.02645874, 0.007659912, 0.017822266, 0.05404663, -0.036224365, 0.0058403015, 0.020736694, -0.02255249, 0.026397705, -0.0138549805, -0.0069389343, -0.028289795, -0.040222168, -0.02947998, 0.006580353, -0.024673462, -0.004928589, -0.012199402, 0.016036987, 0.01184845, -0.0016088486, -0.03265381, -0.025039673, -0.0064430237, -0.00034236908, 0.025360107, 0.001996994, -0.0011997223, -0.003107071, 0.0002245903, -0.013442993, 0.004310608, -0.005432129, -0.024642944, 0.01474762, -0.026046753, -0.006965637, -0.04196167, -0.021148682, 0.013549805, -0.0390625, -0.0016326904, 0.015731812, 0.012016296, -0.027191162, -0.041656494, 0.009567261, 0.0057640076, -0.042663574, 0.107543945, -0.020080566, 0.008277893, 0.02758789, -0.010169983, 0.051605225, -0.011634827, -0.029769897, 0.02519226, -0.023086548, 0.004386902, -0.016098022, -0.015838623, 0.0051841736, -0.009391785, -0.034118652, 0.011619568, 0.027542114, 0.012535095, 0.02848816, -0.039367676, 0.06149292, -0.030639648, -0.0335083, -0.01222229, 0.079956055, -0.009170532, 0.02935791, -0.0045661926, 0.0152282715, -0.041656494, -0.028366089, -0.0070381165, -0.031051636, -0.05404663, -0.008956909, 0.02947998, -0.013076782, 0.02003479, -0.026031494, -0.011627197, 0.023971558, -0.07940674, 0.0635376, -0.045410156, -0.0071411133, 0.0082473755, 0.031463623, -0.044555664, -0.029724121, 0.010055542, -0.019256592, -0.008285522, 0.020614624, 0.0050697327, -0.005722046, -0.025863647, 0.02861023, 0.05456543, -0.028305054, 0.0158844, 0.024597168, -0.009597778, -0.01096344, 0.0034255981, 0.005077362, -0.02192688, -0.004951477, 0.043701172, -0.041534424, -0.03744507, -0.029830933, 0.045776367, -0.011474609, -0.027023315, 0.04449463, -0.0056419373, 0.011985779, 0.035217285, -0.01802063, -0.021484375, 0.01663208, 0.0045204163, -0.026000977, 0.0033283234, -0.022888184, -0.0129776, 0.024307251, -0.018981934, -0.006214142, 0.025924683, 0.009521484, 0.025115967, -0.043884277, -0.056915283, -0.0032424927, -0.03213501, 0.018096924, -0.010749817, -0.004348755, -0.039367676, -0.028808594, -0.06262207, -0.035369873, 0.039093018, 0.03149414, 0.037353516, -0.0030956268, 0.046661377, 0.10241699, -0.08532715, 0.021881104, 0.008796692, -0.041625977, 0.0067749023, 0.011543274, 0.021224976, -0.032470703, -0.015052795, -0.0036239624, -0.015258789, 0.034210205, 0.027374268, 0.0012025833, -0.042510986, -0.03768921, 0.009010315, 0.031707764, 0.006752014, 0.010818481, 0.017364502, 0.020355225, -0.04168701, -0.014450073, -0.00957489, -0.032470703, -0.050323486, -0.043395996, 0.0011177063, 0.0138168335, 0.010917664, 0.02053833, 0.02406311, 0.0062294006, -0.01763916, 0.022491455, -0.013557434, -0.0064849854, 0.038757324, -0.026031494, 0.017044067, -0.02619934, 0.00028300285, -0.0062828064, 0.010284424, 0.040527344, -0.004470825, 0.018676758, 0.009437561, 0.036712646, -0.008659363, 0.011955261, -0.022033691, -0.04135132, 0.04650879, -0.07232666, -0.027496338, -0.015090942, 0.022033691, 0.044433594, 0.052490234, -0.010978699, -0.015434265, 0.05987549, -0.032470703, -0.018798828, -0.011779785, 0.030853271, -0.044708252, -0.01158905, 0.006298065, -0.0027561188, 0.013702393, 0.0079193115, -0.03945923, 0.041290283, 0.01751709, 0.0054130554, 0.037597656, -0.010154724, 0.020248413, 0.0131073, 0.0018339157, -0.035827637, -0.031143188, 0.013313293, -0.008346558, -0.010940552, 0.010917664, 0.030685425, -0.018173218, 0.030349731, -0.013046265, 0.027160645, 0.0234375, 0.058807373, 0.038635254, 0.002544403, -0.016586304, -0.06555176, -0.018508911, -0.008010864, -0.00058078766, -0.019302368, 0.004135132, 0.09588623, 0.060668945, 0.010795593, 0.051940918, -0.0317688, 0.0045547485, 0.060516357, 0.021728516, -0.002614975, 0.05307007, 0.021469116, -0.04385376, -0.03314209, -0.015167236, -0.041992188, 0.052581787, 0.031951904, 0.004917145, -0.004108429, -0.05206299, 0.052581787, -0.050598145, -0.034606934, 0.04675293, -0.04498291, -0.024490356, 0.0029850006, 0.0009069443, -0.03488159, -0.055725098, -0.04525757, 0.05432129, -0.054138184, -0.020721436, -0.0024032593, -0.018035889, -0.018798828, -0.047943115, -0.0025596619, -0.0029335022, 0.0418396, 0.010124207, 0.050842285, -0.036315918, -0.080566406, -0.07348633, 0.050201416, -0.1126709, -0.04309082, -0.03591919, 0.002571106, -0.0078048706, -0.0029888153, 0.0067481995, -0.005218506, 0.021499634, -0.017333984, 9.5009804e-05, -0.015167236, -0.041870117, 0.04763794, 0.004432678, -0.007965088, 0.0033626556, 0.03677368, 0.026550293, 0.047058105, 0.018096924, 0.022888184, -0.07702637, -0.011230469, -0.038330078, 0.03173828, 0.011039734, -0.013290405, -0.014816284, -0.028625488, -0.04348755, -0.04812622, -0.0041122437, 0.0181427, 0.018112183, 0.061035156, -0.013542175, 0.027816772, -0.006000519, 0.075683594, 0.0038928986, -0.035858154, 0.03173828, 0.04046631, 0.005756378, 0.0076141357, -0.0015287399, -0.0032253265, -0.021347046, 0.0023612976, -0.01638794, 0.014373779, 0.0045204163, -0.008102417, 0.017440796, 0.030441284, -0.01737976, -0.019226074, 0.016326904, 0.041870117, -0.047729492, -0.036224365, -0.029144287, 0.01701355, -0.010314941, -0.09039307, 0.038238525, 0.0095825195, 0.0067481995, 0.015129089, 0.024963379, -0.018066406, 0.0003297329, -0.02633667, -0.009529114, -0.015174866, 0.013748169, -0.014793396, -0.004512787, -0.03857422, -0.02619934, -0.0026168823, 0.0021400452, -0.056671143, -0.06817627, 0.06726074, 0.011405945, -0.030700684, 0.005077362, 0.028778076, 0.003768921, 0.014389038, 0.023498535, -0.019577026, 0.0065460205, -0.056365967, -0.0024662018, 0.011054993]}, "B07X8ZN8MS": {"id": "B07X8ZN8MS", "original": "Brand: Anpro\nName: Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father's Day, Smoker, Camping, Kitchen,21 PCS-Standard\nDescription: Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard\nFeatures: DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again.\nPRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection.\nELEGANT DESIGN FOR GRILLING: You'll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend.\nPROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father\u2019s day grilling gifts for men, excellent gift for any camping lovers.\nHASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.\n", "metadata": {"Name": "Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father's Day, Smoker, Camping, Kitchen,21 PCS-Standard", "Brand": "Anpro", "Description": "Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard", "Features": "DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again.\nPRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection.\nELEGANT DESIGN FOR GRILLING: You'll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend.\nPROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father\u2019s day grilling gifts for men, excellent gift for any camping lovers.\nHASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.024856567, 0.0059814453, -0.05935669, -0.038024902, 0.012069702, 0.0029830933, -0.024230957, 0.030975342, 0.020614624, -0.0076446533, -0.0074539185, 0.029129028, 0.01889038, -0.045562744, 0.04486084, 0.004776001, -0.0028877258, 0.030181885, 0.011367798, -0.025497437, 0.013557434, -0.020721436, -0.006324768, 0.058654785, 0.08111572, -0.035308838, -0.010597229, 0.021453857, 0.0574646, 0.015930176, 0.040496826, -0.04876709, 0.0446167, -0.015777588, -0.023712158, 0.00881958, 0.008102417, -0.027877808, -0.02204895, 0.0095825195, 0.005016327, 0.00041270256, -0.02986145, 0.027313232, -0.035858154, -0.032958984, 0.01084137, -0.007045746, 0.02796936, 0.007335663, 0.01991272, 0.01663208, 0.027450562, -0.0041770935, -0.012893677, -0.0024166107, -0.023422241, 0.011505127, 0.022415161, 0.0043258667, -0.016418457, 0.0017518997, 0.0093688965, -0.013366699, -0.032440186, -0.039367676, 0.047607422, -0.00039482117, -0.043914795, -0.03829956, 0.050476074, 0.015296936, 0.03024292, 0.011955261, 0.026855469, -0.051208496, 0.025985718, 0.0099487305, 0.002937317, 0.03640747, -0.016830444, -0.023361206, -0.020767212, -0.047424316, -0.005290985, -0.05996704, -0.022384644, 0.029525757, -0.031280518, 0.004524231, -0.018295288, -0.014129639, -0.041412354, 0.034484863, 0.01902771, 0.0041122437, -0.048217773, -0.04260254, 0.0048217773, 0.015823364, 0.01184082, -0.010238647, 0.034057617, -0.0126571655, -0.039215088, 0.018081665, 0.0018472672, -0.011413574, -0.019821167, 0.02571106, -0.025466919, -0.015716553, 0.015701294, -0.033172607, 0.017562866, -0.010643005, -0.010673523, 0.03677368, 0.009635925, -0.01991272, -0.03479004, -0.018707275, 0.029220581, -0.0038757324, 0.04385376, 0.037597656, -0.0135650635, -0.015007019, -0.013900757, 0.03375244, -0.029129028, -0.042266846, 0.027175903, 0.06427002, 0.037384033, -0.04284668, 0.05984497, -0.00089120865, 0.0032253265, 0.020706177, 0.0026493073, -0.02909851, -0.03086853, 0.005432129, 0.035308838, -0.029968262, 0.020980835, 0.048095703, 0.02810669, 0.007457733, 0.043060303, 0.0065612793, 0.036254883, 0.009063721, -0.03994751, 0.010269165, -0.0070495605, 0.0022392273, -0.03878784, -0.02166748, -0.022155762, -0.029129028, -0.016357422, -0.026809692, -0.022583008, 0.016113281, 0.007019043, 0.008872986, 0.013244629, -0.012268066, 0.010414124, -0.010368347, 0.0075531006, -0.020996094, -0.006008148, 0.002998352, -0.03466797, 0.087524414, 0.054656982, -0.07348633, -0.028945923, -0.04751587, 0.13220215, -0.01525116, -0.0063056946, -0.024017334, 0.020370483, 0.007270813, 0.004219055, 0.009605408, 0.0093688965, 0.025390625, -0.06677246, 0.014289856, 0.019622803, 0.064331055, -0.027679443, 0.044830322, 0.020874023, -0.085632324, -0.013031006, -0.010734558, 0.010719299, 0.022369385, 0.0040512085, -0.018173218, -0.0032024384, 0.0064468384, -0.007171631, 0.008895874, 0.029449463, 0.027511597, -0.019180298, -0.0592041, -0.03543091, -0.0014896393, -0.01235199, 0.0046424866, 0.0039405823, 0.010368347, 0.03253174, -0.023544312, 0.026733398, 0.029830933, 0.040222168, 0.017471313, -0.04095459, -0.0079956055, -0.0039596558, 0.0057640076, -0.021026611, 0.057647705, 0.050598145, 0.027618408, -0.017593384, 0.062316895, 0.05633545, 0.070739746, -0.046813965, -0.029708862, -0.00894928, -0.013076782, -0.036865234, 0.009735107, 0.040252686, 0.03062439, 0.008491516, 0.018096924, -0.046295166, -0.019226074, -0.015007019, 0.028823853, 0.030258179, 0.032562256, -0.032958984, 0.041778564, -0.07458496, -0.04006958, -0.03112793, 0.037902832, -0.00081682205, -0.013465881, 0.043884277, -0.030929565, 0.057922363, 0.009277344, 0.022628784, 0.00843811, -0.06210327, 0.04019165, 0.012084961, -0.011802673, 0.0007095337, 0.024856567, -0.0146484375, -0.029052734, -0.022918701, 0.007911682, -0.0141067505, -0.012748718, 0.028305054, 0.042877197, 0.061950684, -0.0034370422, 0.028625488, -0.030334473, 0.026901245, 0.023513794, -0.05178833, -0.055511475, 0.015914917, -0.048980713, -0.020431519, -0.05407715, 0.015655518, -0.07128906, 0.004184723, 0.033691406, 0.0027694702, -0.018341064, -0.006996155, 0.024032593, -0.06536865, 0.033111572, -0.004802704, -0.018814087, -0.012710571, 0.016433716, -0.0011348724, -0.08312988, 0.04486084, 0.03253174, 0.032104492, 0.02998352, 0.03930664, -0.013748169, 0.008628845, 0.064453125, 0.015434265, 0.01676941, -0.01108551, -0.05999756, -0.019989014, -0.008544922, -0.027618408, 0.012863159, -0.002281189, -0.0052833557, -0.01713562, 0.004699707, 0.046844482, 0.017669678, 0.032409668, 0.0046577454, -0.0058288574, -0.012039185, 0.003255844, -0.012275696, -0.01071167, -0.035339355, -0.0063552856, 0.011985779, 0.014694214, -0.033172607, -0.070739746, 0.040161133, 0.03665161, 0.013977051, 0.006778717, 0.0073242188, -0.008407593, -0.007507324, 0.037506104, 0.028961182, 0.028305054, 0.007446289, -0.0519104, -0.007797241, 0.014282227, -0.051574707, -0.006290436, 0.028808594, -0.009986877, -0.009750366, 0.023910522, -0.04232788, 0.012527466, -0.013702393, 0.026733398, 0.01247406, -0.026031494, -0.0046043396, -0.030578613, 0.013519287, 0.039031982, 0.014038086, -0.0052833557, -0.051757812, -0.049438477, -0.024734497, -0.030532837, 0.009292603, 0.047790527, 0.08325195, 0.0077819824, 0.02067566, 0.023925781, 0.029388428, 0.012336731, -0.034240723, 0.021057129, 0.040893555, -0.054473877, -0.002363205, 0.0034122467, 0.027267456, 0.016418457, -0.08203125, 0.0058898926, -0.032104492, -0.066711426, -0.007835388, -0.028915405, -0.02267456, -0.017837524, -0.042510986, -0.04348755, -0.054473877, 0.0017347336, 0.062042236, -0.024124146, -0.002281189, -0.0440979, 0.010368347, -0.009231567, 3.606081e-05, 0.023239136, -0.0027198792, 0.026733398, -0.04537964, 0.011009216, -0.0043296814, 0.044769287, 0.040527344, -0.056793213, -0.030731201, 0.017822266, 0.044067383, 0.011001587, 0.016860962, -0.021392822, -0.029022217, -0.033050537, -0.034973145, -0.037017822, -0.005718231, 0.011222839, -0.035339355, 0.04208374, -0.015716553, 0.0076828003, 0.0017185211, -0.035736084, 0.009246826, -0.039855957, -0.0052871704, -0.00072193146, -0.0004863739, -0.05441284, -0.029312134, -0.01777649, 0.028137207, 0.01612854, 0.02468872, 0.012634277, 0.032104492, 0.029769897, 0.02394104, -0.00053071976, 0.03338623, -0.029647827, -0.031829834, 0.099243164, -0.009429932, 0.024795532, -0.07183838, 0.033294678, -0.020187378, -0.019546509, 0.013053894, -0.039001465, 0.0446167, -0.008918762, -1.4603138e-05, 0.009651184, -0.013763428, 0.0003569126, 0.042297363, -0.027633667, -0.005191803, -0.07775879, -0.0016584396, -0.05670166, 0.042999268, 0.018829346, 0.0008211136, 0.05822754, 0.061706543, -0.04598999, -0.020401001, 0.009979248, 0.013694763, -0.0072517395, 0.011779785, -0.036132812, -0.03286743, -0.001159668, 0.02519226, 0.027877808, 0.030471802, -0.07116699, 5.7041645e-05, 0.052612305, -0.048736572, 0.0016489029, 0.054748535, 0.027435303, 0.0047912598, -0.022979736, -0.03881836, 0.021636963, -0.05722046, -0.025665283, 0.022888184, -0.038269043, -0.037109375, 0.020309448, 0.023422241, -0.036834717, -0.022018433, -0.0074768066, -0.0017662048, 0.015716553, 0.060760498, -0.027801514, 0.0063285828, -0.044067383, -0.024749756, -0.015327454, 0.018630981, 0.022979736, 0.007801056, 0.0345459, -5.042553e-05, 0.004005432, -0.004096985, 0.0013685226, 0.0022506714, -0.0087509155, -0.028945923, -0.0059890747, 0.006538391, -0.039001465, -0.0023708344, 0.009994507, -0.03616333, -0.005001068, -0.0256958, -0.022232056, -0.055419922, -0.015777588, 0.016693115, -0.07727051, -0.020477295, -0.00016272068, -0.06274414, -0.06628418, 0.03086853, 0.0019550323, -0.02708435, 0.0029411316, 0.032714844, -0.059265137, 0.007194519, -0.0289917, -0.003622055, 0.027526855, 0.01058197, 0.018478394, -0.0068855286, -0.013168335, -0.018508911, 0.054748535, -0.0074043274, -0.00014686584, -0.04751587, -0.032592773, -0.013092041, 0.031280518, 0.09448242, 0.02607727, 0.054992676, -0.045440674, 0.005592346, -0.014633179, 0.03857422, -0.026367188, 0.0012321472, -0.013671875, 0.003566742, 0.037078857, -0.010421753, -0.010116577, -0.03869629, 0.020828247, -0.005214691, -0.0056877136, -0.01889038, -0.00157547, 0.01574707, -0.041534424, -0.013641357, -0.025939941, -0.02381897, 0.07330322, 0.053100586, 0.02760315, -0.037322998, -0.030471802, -0.021408081, 0.012825012, 0.00920105, -0.01902771, 0.007789612, -0.026397705, 0.015853882, -0.06500244, 0.08862305, 0.058624268, -0.050811768, -0.0058135986, -0.0138168335, -0.04559326, -0.00059986115, 0.008094788, -0.032440186, -0.021591187, 0.019348145, -0.013366699, -0.025375366, -0.0052261353, -0.023162842, -0.020996094, -0.016174316, 0.0013284683, -0.009757996, 0.013511658, -0.02407837, 0.020690918, 0.033294678, 0.015914917, 0.040374756, 0.026351929, 0.020019531, 0.020141602, 0.0010004044, 0.014457703, 0.0010604858, -0.03768921, -0.034423828, 0.022415161, 0.018051147, -0.0670166, 0.013580322, 0.040527344, -0.043548584, -0.016983032, 0.002670288, -0.015686035, 0.00819397, -0.033935547, 0.024475098, -0.04776001, 0.030441284, 0.030441284, -0.046844482, -0.0038719177, 0.026397705, -0.049926758, 0.056884766, -0.0015659332, -0.044036865, 0.04953003, -0.027359009, -0.02508545, -0.00040745735, 0.025619507, 0.0008406639, 0.00051498413, -0.017074585, -0.002527237, 0.040863037, 0.0141067505, 0.050231934, -0.045043945, 0.048553467, -0.010719299, -0.023406982, 0.027938843, 0.015464783, -0.020477295, -0.011711121, 0.01940918, -0.04498291, -0.019195557, 0.028030396, 0.021652222, -0.034301758, -0.02998352, -0.044708252, 0.04534912, -0.002620697, -0.014373779, -0.023956299, -0.009346008, 0.018478394, -0.0036640167, -0.02420044, -0.031402588, -0.000992775, -0.026123047, 0.017318726, -0.036468506, -0.011123657, -0.015716553, 0.0011758804, 0.009757996, -0.04827881, -0.04055786, 0.057434082, 0.0009069443, 0.022766113, -0.0014820099, 0.008865356, 0.020523071, -0.007972717, -0.06225586, 0.0087890625, -0.0063819885, 0.003189087, -0.010437012, 0.020187378, 0.040771484, -0.029067993, -0.020126343, -0.062805176, 0.039611816, -0.023620605, -0.016021729, 0.06225586, -0.0036334991, 0.01977539, -0.0019168854, 0.00762558, -0.03277588, 0.06439209, 0.018829346, -0.06359863, 0.019744873, 0.005771637, 0.010101318, 0.0020008087, 4.9233437e-05, -0.030029297, 0.027359009, -0.03277588, -0.009971619, -0.0256958, -0.028289795, 0.006198883, -0.027648926, 0.01586914, -0.019439697, -0.010505676, 0.0043907166, -0.00762558, -0.03237915, -0.0069618225, -0.0056915283, 0.04736328, 0.018310547, -0.031341553, 0.005302429, 0.056121826, -0.044067383, 0.07104492, 0.011940002, -0.028762817, -0.046051025, 0.027908325, 0.021331787, 0.025527954, -0.05178833, 0.0006494522, 0.0010128021, 0.0056037903, -0.0050468445, -0.0025463104, -0.006008148, -0.010528564, -0.010932922, 0.015434265, 0.027816772, -0.02784729, 0.020355225, 0.008293152, -0.037384033, -0.00472641, 0.02432251, -0.020126343, -0.010261536, -0.04486084, 0.05206299, 0.05606079, 0.0034732819, 0.024810791, -0.0043907166, 0.064697266, -0.021362305, -0.0011987686, 0.0010480881, -0.010643005, 0.04119873, -0.02178955, -0.019134521, -0.029922485, -0.030334473, 0.0024852753, -0.016220093, -0.023071289, -0.0042419434, 0.015777588, -0.025222778, 0.045288086, 0.0289917, -0.01789856, 0.02041626, -0.0065689087, 0.020080566, -0.010826111, -0.01612854, -0.007461548, -4.798174e-05, -0.0077171326, 0.019592285, 0.05303955, -0.0010766983, 0.019607544, -0.023468018, 0.026977539, -0.02557373, 0.0067214966, -0.054840088, -0.015029907, -0.035003662, -0.0052375793, -0.021774292, 0.01121521, -0.027633667, -0.02947998, 0.03652954, -0.055419922, -0.03036499, 0.015052795, 0.029754639, -0.010139465, 0.015930176, -0.03277588, -0.021972656, -0.007633209, -0.015365601, 0.010856628, 0.032104492, 0.037719727, -0.0018043518, 0.038238525, -0.022247314, 0.019943237, 0.011444092, 0.020431519, 0.023132324, 0.041534424, -0.04260254, -0.05102539, -0.020370483, -0.0317688, -0.0041542053, 0.02079773, -0.012420654, 0.047943115, -0.0046195984, 0.024032593, 0.059265137, 0.015640259, 0.036743164, -0.006980896, -0.01739502, -0.019973755, 0.024307251, 0.010955811, -0.03491211, -0.0007328987, 0.0004901886, -0.0050735474, 0.010070801, 0.0045204163, 0.019439697, -0.013168335, -0.027511597, 0.0077781677, -0.0057678223, -0.02104187, 0.016448975, -0.04815674, 0.008972168, -0.011291504, 0.0032577515, -0.0071868896, -0.012992859, -0.021728516, 0.042419434, 0.004016876, -0.020111084, -0.02142334, 0.0028057098, -0.0013093948, -0.04309082, -0.02243042, 0.008674622, 0.07196045, -0.005722046, 0.06982422, -0.04095459, -0.070617676, -0.055419922, 0.018936157, -0.085876465, -0.00021064281, -0.040802002, 0.027053833, 0.013710022, -0.012619019, 0.03427124, 0.11462402, -0.0072631836, 0.029449463, -6.0856342e-05, -0.06341553, -0.028823853, 0.048309326, -0.0008716583, 0.0008158684, -0.018569946, 0.03945923, 0.019836426, 0.035858154, 0.012138367, -0.02218628, -0.061523438, -0.011993408, -0.024810791, 0.044128418, 0.016342163, -0.0146865845, 0.011421204, 0.011932373, -0.031341553, -0.043121338, -0.015686035, -0.038330078, 0.0126953125, 0.029006958, 0.005634308, -0.0121154785, -0.027008057, 0.008132935, -0.0026054382, 0.01020813, 0.017959595, 0.011138916, 0.024490356, 0.006000519, -0.020401001, 0.012397766, -0.012168884, -0.012893677, -0.02444458, -0.010284424, 0.041748047, -0.05130005, 0.019241333, -0.008361816, -0.053955078, -0.03475952, -0.009384155, 0.0026836395, -0.016723633, -0.027572632, -0.010231018, 0.013717651, -0.019760132, 0.024108887, 0.045166016, -0.022155762, 0.004386902, 0.02154541, 0.026397705, -0.031341553, -0.0049552917, -0.03970337, -0.013244629, 0.008201599, 0.023971558, -0.024734497, -0.07141113, 0.048095703, 0.01360321, 0.062561035, -0.039855957, -0.08673096, -0.0597229, 0.032440186, 0.0015687943, 0.003414154, 0.043548584, -0.020004272, -0.002281189, 0.052825928, -0.048675537, -0.06549072, 0.06756592, 0.097717285, 0.016403198, 0.041046143]}, "B000HCR89W": {"id": "B000HCR89W", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Fits barbecue grills 64\"L x 30\"D x 48\"H\nWEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc)\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "metadata": {"Name": "Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover", "Brand": "Classic Accessories", "Description": "", "Features": "THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Fits barbecue grills 64\"L x 30\"D x 48\"H\nWEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc)\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.022460938, 0.003484726, -0.036895752, -0.012641907, -0.011375427, 0.005886078, -0.0064353943, 0.021499634, -0.034851074, 0.03265381, 0.036865234, 0.03753662, -0.0007777214, -0.03643799, 0.0022697449, 0.008659363, 0.014694214, 0.034301758, 0.011352539, -0.012313843, -0.0037250519, -0.0076065063, -0.0121154785, 0.08465576, 0.048339844, -0.029281616, 0.018814087, 0.011108398, 0.05001831, 0.019958496, 0.031021118, -0.03881836, 9.518862e-05, 0.034484863, -0.023071289, -0.008766174, -0.011817932, 0.015838623, 0.0042686462, 0.021881104, -0.011787415, 0.009231567, 0.011802673, -0.014808655, -0.0020561218, -0.044708252, 0.01235199, -0.042938232, 0.038269043, -0.007724762, 0.0010461807, 0.041168213, -0.00074243546, -0.029663086, 0.0003774166, 0.018997192, -0.021911621, -0.020309448, 0.029037476, 0.0078048706, 0.001200676, -0.015541077, 0.016571045, -0.017623901, 0.0128479, -0.032348633, 0.09161377, 0.016571045, -0.04321289, -0.00856781, 0.048736572, 0.026306152, 0.013641357, -0.03152466, -0.016052246, -0.03878784, 0.00028848648, -0.06286621, 0.015960693, 0.009544373, -0.039642334, -0.034210205, 0.06616211, -0.042907715, 0.025604248, -0.0015134811, -0.019973755, 0.006340027, 0.027679443, -0.0042419434, 0.012619019, -0.00315094, 0.02053833, 0.04638672, -0.00020754337, -0.033447266, -0.016830444, -0.004878998, 0.0062789917, -0.017745972, 0.026290894, -0.035461426, 0.02507019, -0.021911621, -0.025512695, 0.048797607, 0.006576538, 0.016952515, -0.009979248, 0.00844574, -0.0119018555, -0.02456665, -0.010925293, -0.041259766, -0.009223938, -0.0073051453, -0.027633667, -0.009262085, 0.018676758, -0.06573486, -0.01739502, -0.008506775, -0.0029125214, 0.028182983, 0.017349243, 0.012557983, -0.005645752, 0.010826111, -0.019439697, 0.032104492, -0.017822266, -0.010940552, 0.049438477, 0.04058838, 0.0058898926, -0.035003662, 0.036987305, -0.020004272, 0.023986816, -0.012199402, -0.006427765, 0.015289307, 0.034118652, -0.006275177, -0.011299133, -0.018234253, 0.018753052, 0.044555664, -0.006752014, -0.06945801, 0.052612305, -0.0016851425, 0.050354004, 0.00062417984, -0.070373535, -0.008834839, 0.002632141, -0.0075149536, -0.04751587, -0.061523438, -0.051727295, -0.030883789, -0.016448975, -0.045928955, -0.06689453, 0.051116943, 0.045532227, 0.010787964, 0.009086609, 0.036743164, -0.04034424, -0.01763916, 0.0039520264, 0.00046777725, -0.01209259, 0.007949829, -0.021240234, 0.057647705, 0.072265625, -0.07946777, -0.053863525, -0.051696777, 0.108947754, -0.03338623, 0.013679504, -0.018737793, 0.01309967, -0.005592346, 0.032287598, 0.0032367706, -0.016220093, -0.008293152, 0.007575989, 0.006942749, -0.031036377, -0.0077285767, 0.0051612854, 0.041870117, -0.01399231, -0.023773193, -0.0048179626, 0.0022583008, -0.011421204, 0.019485474, 0.0019254684, -0.0037879944, -0.0008869171, 0.014167786, -0.01927185, 0.011978149, 0.006706238, -0.0135269165, -0.004169464, -0.029266357, 0.0014648438, 0.0079422, 0.01979065, 0.03277588, 0.011741638, 0.020187378, 0.02607727, -0.009140015, 0.011642456, 0.023956299, 0.0056114197, -0.008171082, -0.0013418198, -0.0024261475, 0.012252808, 0.010574341, -0.001958847, -0.0020332336, 0.062805176, 0.008346558, -0.036499023, 0.041625977, 0.047607422, 0.01423645, -0.048614502, 0.012893677, 0.006828308, -0.022247314, -0.04043579, 0.010726929, -0.026443481, -0.0073013306, 0.0028266907, 0.0056152344, -0.026947021, -0.008911133, 0.0057868958, -0.010398865, 0.041534424, 0.03579712, -0.03717041, 0.05307007, -0.034423828, -0.025466919, -0.052886963, 0.03277588, -0.0065231323, 0.009178162, 0.019866943, 0.000936985, 0.04748535, 0.0143966675, 0.039611816, 0.020187378, -0.021850586, 0.011070251, -0.0068511963, -0.02722168, 0.010467529, 0.04473877, -0.0033073425, 0.007545471, -0.0039901733, -0.015655518, -0.0020103455, 0.020736694, 0.033966064, 0.06878662, 0.059936523, -0.012916565, 0.0069351196, -0.025482178, 0.017105103, -0.004463196, -0.048309326, -0.04699707, 0.0035133362, 0.0023727417, -0.02079773, -0.014633179, 0.033843994, -0.041137695, -0.012870789, 0.030334473, -0.005924225, -0.00054597855, -0.008644104, 0.027526855, -0.010292053, 0.0049057007, -0.010734558, 0.019897461, -0.024658203, 0.0064735413, 0.021911621, -0.026367188, 0.008270264, 0.0395813, 0.025390625, 0.029129028, 0.039123535, 0.015090942, 0.005458832, 0.068359375, 0.05090332, 0.04534912, -0.017990112, -0.014587402, -0.03074646, -0.03488159, -0.0061531067, 0.030899048, -0.05392456, 0.0051078796, -0.03994751, 0.014152527, -0.045806885, -0.047088623, -0.040283203, 0.0090789795, -0.016708374, 0.020568848, 0.011161804, -0.0057258606, 0.015670776, 0.03353882, 0.042999268, -0.005092621, -0.020233154, -0.03463745, -0.045074463, -0.02368164, 0.036743164, 0.003250122, -0.010543823, -0.0028133392, 0.031143188, -0.01789856, 0.0018148422, -0.03074646, -0.030273438, 0.056884766, 0.015777588, -0.04727173, -0.009895325, -0.06726074, -0.032684326, 0.0028247833, -0.056793213, 0.0128479, 0.04537964, -0.01864624, -0.024551392, 0.023147583, 0.015266418, 0.01876831, 0.05343628, -0.014526367, -0.017181396, -0.024520874, -0.025436401, -0.03842163, 0.009422302, -0.051727295, 0.0015563965, -0.0043144226, -0.04321289, -0.003686905, -0.008453369, 0.02078247, -0.0129776, 0.040100098, 0.0541687, 0.078308105, -0.008041382, -0.060791016, -0.0022735596, 0.0993042, -0.05267334, -0.039245605, -0.012924194, 0.02180481, 0.029830933, 0.006965637, 0.027450562, -0.041107178, -0.056854248, -0.018371582, -0.025375366, -0.01675415, -0.024673462, -0.02458191, -0.029571533, -0.052215576, 0.011932373, 0.056793213, -0.014801025, 0.0088272095, -0.008033752, 0.0056610107, 0.009002686, 0.005542755, -0.02659607, -0.009010315, -0.010437012, 0.0065689087, -0.009651184, 0.00031137466, -0.019104004, 0.009902954, -0.010795593, -0.0028629303, -0.015914917, 0.004737854, -0.03729248, -0.000875473, -0.014671326, -0.018630981, 0.017303467, -0.012268066, -0.06524658, -0.045013428, -0.013946533, -0.00894165, 0.016464233, -0.0513916, -0.05239868, 0.0068473816, -0.018112183, -0.017715454, -0.020111084, -0.009513855, 0.031280518, -0.05606079, -0.04336548, -0.064208984, -0.027008057, 0.032104492, 0.0077400208, 0.027496338, 0.020217896, 0.060058594, 0.003282547, 0.014335632, -0.044921875, 0.004928589, -0.041900635, -0.028274536, 0.06756592, -0.059387207, 0.007156372, -0.0546875, 0.05593872, -0.012207031, 0.018127441, -0.019561768, -0.039123535, 0.037261963, 0.010360718, 0.007797241, -0.019088745, 0.0058631897, 0.017944336, 0.012016296, 0.0017900467, -0.0044937134, -0.032196045, -0.01739502, -0.036621094, 0.07574463, 0.059539795, -0.011734009, 0.057495117, 0.08087158, -0.00062561035, 0.038635254, 0.06726074, -0.01852417, 0.031311035, 0.038330078, -0.023864746, -0.026473999, 0.022354126, -0.0099105835, -0.029037476, -0.045440674, -0.07696533, 0.000118374825, -0.009513855, 0.010177612, -0.01902771, 0.04425049, 0.046966553, -0.030059814, -0.046661377, -0.06427002, 0.038024902, -0.08331299, 0.07324219, -0.009803772, 0.010955811, 0.01928711, -0.012458801, 0.0126571655, -0.029418945, -0.0036029816, -0.027267456, -0.04345703, 0.048797607, 0.03753662, -0.04486084, 0.02709961, 0.0146484375, 0.0051193237, 0.021362305, 0.011604309, 0.048736572, -0.027954102, 0.0021209717, 0.005958557, -0.0072135925, 0.030593872, 0.012191772, 0.00907135, -0.04711914, -0.04660034, -0.012138367, 0.017547607, 0.0068588257, -0.048431396, 0.00037407875, -0.029220581, -0.01864624, 0.0038204193, -0.044036865, -0.0030536652, -0.017166138, -0.002035141, -0.05532837, -0.0037193298, 0.029647827, -0.08355713, -0.05090332, 0.023010254, -0.01184082, -0.030685425, -0.026107788, 0.040222168, -0.048553467, -0.0018930435, -0.027542114, -0.0016622543, 0.072265625, 0.05822754, 0.058410645, -0.02633667, -0.014808655, -0.031204224, 0.091796875, 0.038757324, -0.0013637543, -0.049713135, 0.009933472, -0.0011482239, 0.06536865, 0.09552002, -0.0004940033, 0.05166626, -0.023452759, 0.06365967, -0.036224365, -0.023284912, 0.033325195, -0.039794922, -0.039794922, -0.046844482, 0.031204224, -0.0099487305, -0.022872925, -0.035736084, 0.039215088, -0.0010137558, 0.02911377, 0.0060195923, 0.02607727, 0.029541016, -0.030685425, -0.0010566711, -0.0037269592, -0.01713562, 0.06994629, -0.0055389404, -0.02432251, 0.0010433197, -0.035705566, 0.003194809, 0.034118652, 0.046936035, 0.013458252, -0.03439331, -0.00050354004, 0.008056641, -0.093322754, 0.074279785, 0.024780273, 0.010314941, 0.014320374, -0.038726807, 0.0049972534, -0.03564453, -0.0038414001, -0.06304932, -0.024093628, 0.0014076233, 3.260374e-05, -0.004627228, 0.01940918, 0.002149582, -0.00642395, -0.010429382, 0.004322052, -0.0028934479, 0.005168915, -0.038269043, 0.002313614, 0.051361084, 0.0039863586, 0.03503418, 0.025894165, 0.00077962875, 0.026565552, -0.016464233, 0.00623703, -0.0037231445, -0.010269165, -0.025024414, -0.006603241, -0.0021457672, -0.016998291, 0.00894928, 0.02772522, -0.012176514, -0.008651733, 0.009117126, 0.0045700073, -0.0046539307, -0.043121338, -0.006538391, -0.047088623, -0.004940033, 0.008110046, -0.024108887, -0.04876709, 0.019470215, -0.066101074, 0.07324219, 0.004760742, -0.04360962, 0.046783447, -0.012641907, -0.012390137, 0.015945435, 0.039886475, 0.0036621094, 0.014541626, -0.031799316, 0.011001587, 0.019699097, 0.035858154, -0.02468872, -0.014381409, 0.03036499, -0.010391235, -0.005191803, 0.038757324, 0.032287598, -0.014862061, 0.010551453, 0.029342651, 0.006061554, -0.021148682, 0.05984497, -0.048858643, -0.052215576, 0.00944519, 0.01713562, 0.00459671, -0.027999878, -0.0022525787, -0.06793213, 0.0073280334, -0.009925842, 0.011703491, -0.036132812, 0.022888184, 0.0013723373, -0.0067977905, 0.0020828247, 0.03918457, 0.008865356, -0.029708862, -0.009643555, 0.008003235, 0.0149002075, -0.018814087, 0.03643799, -0.015419006, -0.008354187, -0.0234375, 0.018417358, 0.014572144, -0.0154800415, -0.06088257, 0.016540527, -0.002199173, 0.020980835, -0.0053253174, 0.072143555, 0.078125, -0.052703857, -0.027526855, -0.080322266, 0.0036716461, 0.014556885, -0.018875122, 0.04421997, 0.006336212, -0.0066184998, 0.025497437, -0.010101318, -0.016647339, 0.035003662, 0.027435303, -0.09240723, 0.016296387, 0.016082764, 0.03225708, -0.03567505, -0.013885498, -0.015159607, 0.036071777, -8.85129e-05, -0.008239746, -0.028182983, -0.0345459, -0.0020008087, -0.032470703, 0.018569946, 0.0017766953, 0.014930725, -0.003025055, 0.012283325, -0.06652832, -0.0017499924, 0.026229858, 0.026443481, 0.030380249, -0.012741089, 0.013809204, 0.031677246, -0.03756714, 0.051452637, -0.024108887, 0.0068588257, -0.009719849, 0.027755737, 0.019348145, 0.019210815, -0.015487671, -0.016159058, -0.03591919, 0.047790527, 0.034973145, 0.04385376, -0.04977417, -0.012008667, 0.028198242, 0.04034424, 0.022659302, 0.0057907104, 0.02230835, -0.003047943, -0.024414062, 0.006362915, 0.04937744, -0.025817871, 0.00680542, -0.024902344, -0.008544922, 0.014694214, -0.012382507, 0.011245728, -0.00233078, 0.032073975, 0.0005788803, 0.031677246, 0.013298035, 0.02218628, -0.027023315, -0.0063323975, -0.050445557, 0.029174805, -0.013053894, -0.008590698, -0.023330688, -0.04232788, 0.034301758, 0.046875, 0.014190674, -0.0022144318, 0.007904053, 0.0016717911, -0.03543091, -0.0037727356, 0.03579712, 0.058654785, -0.0013561249, 0.04107666, -0.08465576, -0.012504578, 0.0146484375, -0.030715942, -0.051605225, 0.083984375, 0.014656067, -0.032958984, -0.0011119843, -0.0154418945, -0.00044560432, -0.024993896, 0.007965088, 0.009788513, 0.0018920898, -0.0029468536, -0.073913574, -0.032806396, 0.040008545, -0.037139893, -0.0126571655, -0.0037288666, 0.037719727, -0.031677246, 0.011398315, -0.030212402, -0.023010254, 0.034729004, 0.014862061, -0.010787964, 0.017333984, 0.03555298, -0.00012648106, -0.0016498566, -0.0037651062, 0.03225708, 0.019088745, 0.046325684, 0.02935791, -0.040039062, -0.036224365, 0.016723633, -0.018707275, 0.031799316, -0.019851685, 0.10107422, 0.0010471344, 0.020263672, 0.013786316, 0.023284912, 0.059295654, -0.00016784668, 0.013114929, -0.016235352, -9.10759e-05, 0.017547607, -0.03717041, -0.0072364807, -0.0068206787, -0.0073547363, 0.021697998, -0.0003633499, 0.0073394775, -0.019012451, 0.02758789, -0.020355225, -0.03277588, 0.007457733, 0.022140503, -0.015388489, 0.012283325, -0.04220581, -0.00919342, -0.011116028, 0.0016756058, -0.04196167, -0.02029419, -0.070129395, -0.008781433, -0.06530762, -0.017593384, -0.024307251, 0.01121521, 0.048461914, -0.019454956, -0.02609253, 0.0181427, 0.021453857, 0.0049324036, 0.06506348, -0.031066895, -0.046325684, -0.0390625, 0.025604248, -0.0413208, -0.009941101, -0.016296387, -0.011871338, 0.010437012, 0.008140564, 0.020080566, 0.048553467, 0.029205322, -0.0041236877, -0.041046143, 0.0037002563, -0.056884766, 0.05657959, -0.0124053955, -0.00078582764, 0.064941406, 0.089660645, 0.0018920898, -0.0025367737, 0.0473938, -0.028060913, -0.036315918, -0.010848999, -0.00932312, 0.023666382, 0.022872925, -0.0021152496, 0.010673523, 0.024795532, -0.029815674, 0.016571045, -0.010223389, -0.042022705, 0.012756348, -0.023071289, 0.04598999, -0.0031852722, -0.047943115, -0.05291748, -0.028518677, 0.0051498413, 0.070617676, 0.0076141357, 0.012336731, 0.006263733, -0.027313232, 0.014755249, -0.029708862, 0.0039901733, -0.01876831, 7.43866e-05, -0.020828247, -0.029006958, 0.01751709, 0.003850937, -0.009300232, -0.012817383, 0.04220581, 0.044006348, -0.041046143, -0.00381279, -0.0075569153, -0.005672455, 0.028518677, -0.030395508, -0.026260376, -0.05368042, 0.005405426, 0.0051727295, -0.0068359375, 0.000890255, 0.015930176, -0.015975952, -0.020187378, 0.027282715, 0.0037441254, 0.030212402, 0.0057792664, 0.03604126, 0.011413574, 0.08929443, -0.023727417, -0.044036865, -0.046417236, 0.048187256, 0.0104599, -0.015304565, 0.051452637, -0.032806396, 0.013404846, -0.00015091896, -0.00076293945, -0.021942139, -0.009223938, 0.055725098, -0.0032958984, 0.011833191]}, "B07L9S7C1R": {"id": "B07L9S7C1R", "original": "Brand: Zerodis\nName: Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue\nDescription: Specifications:
      Condition: 100% Brand New
      Material: Plastic + Stainless Steel
      Main Color: Black
      Power Supply: 4 * AA Batteries (not included)
      Total Length: Approx. 26.5cm/10.43in
      Wind Tube Length: 5.9cm/2.32in
      Weight: Approx. 161g

      Package Included:
      1 * Handheld Electric BBQ Fan

      \nFeatures: \u3010Electrical Power\u3011 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows\n\u3010Quick Heat\u3011 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney\n\u3010Safety Use\u3011 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan\n\u3010Compact Size\u3011 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated\n\u3010Cooking Helper\u3011BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit\n", "metadata": {"Name": "Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue", "Brand": "Zerodis", "Description": "Specifications:
      Condition: 100% Brand New
      Material: Plastic + Stainless Steel
      Main Color: Black
      Power Supply: 4 * AA Batteries (not included)
      Total Length: Approx. 26.5cm/10.43in
      Wind Tube Length: 5.9cm/2.32in
      Weight: Approx. 161g

      Package Included:
      1 * Handheld Electric BBQ Fan

      ", "Features": "\u3010Electrical Power\u3011 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows\n\u3010Quick Heat\u3011 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney\n\u3010Safety Use\u3011 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan\n\u3010Compact Size\u3011 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated\n\u3010Cooking Helper\u3011BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.018218994, -0.006664276, -0.02809143, -0.040252686, 0.00831604, -0.02684021, 0.030715942, 0.017150879, -0.029037476, 0.040374756, -0.0068206787, 0.036834717, 0.016311646, -0.01184845, -0.0013828278, -0.0151901245, 0.007522583, 0.015823364, 0.018676758, -0.01133728, -0.011581421, 0.0026626587, -0.022338867, 0.06945801, 0.032836914, -0.0049819946, 0.05831909, -0.0004813671, 0.022491455, -0.0044937134, 0.029251099, -0.016433716, 0.022476196, 0.049102783, -0.08465576, -0.07006836, -0.04840088, 0.0211792, -0.036376953, 0.009056091, 0.014732361, 0.0014181137, -0.058044434, 0.04171753, -0.051879883, -0.05215454, 0.023880005, -0.008201599, -0.019714355, 0.03878784, 0.013313293, 0.017684937, 0.015052795, 0.020095825, 0.0004594326, -0.0051994324, 0.008262634, 0.02909851, 0.01940918, -0.049926758, -0.03475952, 0.008529663, 0.031585693, 0.03390503, -0.076293945, -0.0055236816, 0.033996582, -0.037109375, 0.03050232, -0.06829834, 0.014533997, 0.06964111, 0.015731812, 0.022583008, -0.037506104, -0.08026123, 0.056732178, -0.023452759, 0.008598328, 0.009864807, -0.0715332, -0.026916504, 0.03527832, -0.06414795, 0.0037078857, -0.03137207, -0.032348633, 0.016281128, -0.0044059753, -0.006389618, -0.007736206, -0.06555176, -0.0063095093, 0.074645996, 0.010513306, 0.0090408325, -0.013748169, -0.054748535, 0.04144287, 0.0035495758, 0.049591064, -0.03656006, -0.010353088, 0.008560181, -0.030578613, 0.05847168, 0.024429321, 0.046417236, -0.021530151, -0.0007824898, -0.014030457, -0.07434082, 0.0017662048, -0.023880005, -0.006412506, 0.025863647, 0.0040626526, 0.0079956055, 0.011047363, -0.014953613, -0.035186768, -0.017196655, 0.009422302, 0.03463745, 0.045318604, 0.055145264, 0.003408432, -0.0031547546, -0.00869751, 0.037902832, -0.03253174, 0.0066375732, 0.049835205, 0.00472641, -0.018463135, -0.034088135, 0.012886047, 0.008895874, 0.011474609, -0.008674622, -0.00121212, 0.026641846, 0.06097412, -0.00032377243, -0.012802124, -0.025924683, 0.029708862, 0.045288086, -0.021362305, -0.028839111, 0.01663208, 0.03579712, 0.066467285, -0.0076293945, -0.034729004, -0.044006348, -0.015159607, -0.026947021, 0.008323669, -0.049865723, -0.00016319752, 0.004749298, 0.00044679642, -0.031158447, -0.03741455, -0.018325806, 0.017913818, -0.006259918, 0.018234253, -0.023895264, 0.02319336, 0.003692627, -0.015304565, -0.022155762, -0.0010242462, -0.0118637085, 0.023330688, 0.07183838, 0.04763794, -0.080078125, -0.07751465, -0.07861328, 0.12585449, -0.07141113, -0.023788452, -0.012054443, 0.006526947, 0.0028095245, 0.017822266, 0.0026512146, 0.006351471, 0.010650635, -0.017364502, 0.025604248, -0.0013208389, 0.0019874573, -0.014221191, 0.03768921, -0.0070266724, -0.037231445, -0.023513794, -0.02128601, -0.030349731, -0.0004441738, -0.02709961, -0.05065918, -0.0020046234, 0.0034122467, 0.018707275, 0.029907227, 0.007499695, 0.013252258, -0.00881958, -0.042022705, -0.029251099, -0.019866943, -0.03353882, 0.030807495, 0.012962341, 0.019989014, 0.019699097, -0.021026611, 0.04083252, -0.012145996, 0.032104492, -0.0435791, -0.0011234283, -0.028839111, 0.038330078, -0.018249512, 0.028671265, 0.06097412, 0.009429932, 0.045288086, -0.0056991577, 0.025314331, 0.056610107, 0.058654785, -0.017608643, -0.02027893, 0.007987976, 0.00705719, -0.040924072, 0.015327454, -0.012908936, -0.021347046, -0.0016145706, 0.019500732, -0.010879517, 0.038757324, 0.010978699, 0.008003235, 0.002281189, 0.006954193, -0.01171875, 0.016555786, -0.016525269, -0.017913818, -0.022262573, 0.035980225, -0.020004272, -0.0256958, -0.0008945465, -0.022903442, 0.0022277832, -0.0021152496, 0.01626587, 0.010009766, -0.013381958, 0.0118255615, 0.018051147, -0.006340027, 0.0072135925, 0.012535095, 0.05050659, 0.0054740906, 0.00969696, -0.033111572, 0.024993896, -0.0015516281, 0.0093307495, 0.022155762, 0.021209717, -0.0019159317, 0.008964539, -0.049804688, 0.010848999, 0.010864258, -0.048217773, -0.0029067993, 0.018630981, 0.012809753, -0.02029419, -0.021377563, -0.0138168335, -0.0057754517, 0.017868042, 0.020050049, 0.017303467, -0.022033691, -0.041900635, 0.04006958, -0.025848389, 0.0026760101, -0.03112793, 0.03540039, -0.037719727, 0.011520386, -0.013000488, -0.0692749, 0.0046958923, -0.019714355, 0.026611328, -0.004333496, 0.032714844, 0.009735107, 0.006580353, 0.027557373, 0.01991272, 0.032226562, -0.025177002, -0.02619934, -0.012001038, -0.018310547, 0.004009247, 0.008552551, -0.028198242, 0.001581192, -0.025421143, 0.035247803, 0.030517578, 0.015716553, -0.00819397, 0.008460999, -0.0062713623, 0.006565094, 0.00044178963, 0.03942871, -0.0063323975, -0.037872314, -0.024765015, 0.025360107, 0.0051574707, -0.03945923, -0.031982422, -0.013839722, -0.024230957, 0.018722534, 0.022918701, -0.013763428, 0.014854431, 0.0018205643, 0.00907135, -0.012687683, -0.024627686, 0.02456665, -0.010269165, -0.062927246, -0.04348755, -0.09765625, -0.021774292, 0.010955811, -0.043029785, 0.011314392, 0.040924072, -0.021911621, -0.0036334991, 0.0028800964, 0.009132385, 0.022491455, 0.0050201416, 0.014411926, -0.039276123, -0.02168274, -0.0044059753, -0.007858276, 0.045806885, -0.024337769, -0.013153076, 0.0093688965, -0.015304565, 0.029144287, -0.028121948, 0.037078857, 0.043273926, 0.022735596, 0.04837036, 0.050872803, 0.017852783, -0.020019531, -0.007949829, 0.014350891, -0.049468994, -0.01739502, 0.025146484, 0.04196167, -0.01361084, -0.06567383, -0.021026611, -0.033355713, -0.06185913, 0.012062073, -0.018371582, -0.009567261, -0.024490356, -0.037841797, -0.02104187, -0.039886475, 0.006259918, 0.039978027, -0.0079193115, 0.0027179718, -0.010040283, 0.011451721, -0.00068569183, -0.01676941, 0.033935547, -0.023284912, 0.05645752, -0.0017528534, 0.0024337769, -0.04650879, 0.013725281, 0.033416748, -0.04586792, -0.010040283, -0.023712158, 0.020446777, -0.015113831, 0.028930664, -0.04849243, -0.008491516, 0.024154663, 0.0058250427, -0.062561035, -0.03845215, -0.014053345, -0.01687622, 0.051757812, -0.05331421, -0.01373291, -0.003250122, -0.033721924, -0.011657715, -0.0129776, -0.043273926, 0.0036010742, -0.038513184, -0.002161026, 0.001991272, -0.00573349, -0.0028419495, 0.01525116, 0.021209717, -0.0143966675, 0.06781006, 0.06976318, 0.05557251, -0.020217896, -0.022583008, -0.020217896, -0.04446411, 0.04714966, 0.00023019314, 0.0041160583, -0.046173096, 0.045837402, -0.005130768, -0.011039734, 0.020965576, -0.015602112, 0.036712646, 0.03515625, -0.013198853, 0.037078857, -0.027664185, -0.03152466, 0.035217285, -0.044128418, -0.008651733, -0.032928467, -0.013504028, -0.053863525, 0.12854004, 0.071777344, -0.033172607, 0.11279297, 0.07324219, 0.000603199, 0.041625977, -0.012367249, 0.015602112, 0.022827148, 0.04171753, 0.016799927, 0.024093628, 0.024459839, -0.01499939, 0.006549835, 0.03277588, -0.1071167, 0.009902954, -0.0020961761, -0.041625977, -0.005634308, -0.022918701, 0.0077552795, 0.0024223328, 0.0045547485, 0.0036888123, 0.013381958, -0.0058135986, 0.011550903, 0.017715454, -0.024475098, 0.019821167, -0.02418518, 0.0473938, -0.046966553, -0.014289856, -0.008918762, -0.010284424, 0.03817749, -0.0011348724, 0.016357422, -0.018692017, 0.04248047, 0.021240234, -0.013809204, -0.018447876, 0.029205322, -0.011123657, 0.014778137, 0.02180481, -0.0063171387, 0.030136108, -0.030349731, 0.0051994324, 0.028274536, -0.022598267, 0.012054443, 0.020019531, -0.015914917, 0.0073890686, 0.029907227, -0.047210693, 0.022064209, 0.010223389, -0.06414795, 0.021835327, -0.015670776, -0.012557983, -0.040618896, 0.014213562, 0.0058784485, -0.036987305, -0.07385254, 0.025985718, 0.014976501, -0.012878418, -0.024856567, 0.024215698, -0.008178711, -0.014770508, 0.030731201, 0.026870728, 0.01725769, -0.0071983337, -0.05065918, -0.013183594, -0.034423828, -0.020187378, 0.0026283264, -0.05102539, -0.011833191, -0.00869751, -0.02281189, 0.0023174286, 0.02255249, 0.04510498, -0.0034294128, 0.014961243, -0.037322998, -0.050354004, -0.03704834, -0.025543213, 0.01259613, -0.031677246, -0.0413208, -0.022994995, 0.09399414, -0.030273438, 0.008201599, 0.0048599243, 0.024734497, -0.020080566, 0.031829834, -0.054870605, -0.0154800415, 0.0074310303, -0.020065308, 0.011817932, -0.0044784546, -0.029296875, 0.0053215027, 0.029541016, 0.018722534, -0.07244873, -0.04788208, -0.04937744, 0.006099701, 0.029693604, -0.007598877, -0.021911621, -0.04171753, 0.05722046, -0.057434082, 0.10888672, 0.08728027, -0.0047035217, -0.010726929, 0.014556885, -0.047851562, -0.08685303, 0.022262573, 0.036010742, -0.0037002563, 0.020523071, -0.012924194, -0.0096588135, -0.021850586, -0.023010254, -0.02166748, -0.029907227, -0.012275696, 0.01638794, 0.0060157776, -0.013786316, 0.0006389618, -0.013000488, 0.019760132, 0.010169983, 0.039398193, 0.020812988, -0.024169922, -0.0039367676, 0.029418945, 0.0073547363, 0.0027256012, -0.017929077, 0.04660034, -0.0075416565, -0.086364746, -0.028884888, 0.0703125, -0.07098389, -0.0024433136, 0.05810547, 0.011039734, -0.012184143, -0.041046143, 0.022125244, 0.026565552, -0.05618286, -0.006252289, -0.022979736, 0.024032593, -0.0060691833, -0.0070343018, -0.010437012, -0.028640747, -0.005317688, 0.021759033, -0.01737976, 0.016937256, -0.011444092, -0.011192322, -0.0037975311, -0.017044067, -0.02558899, -0.020019531, -0.029022217, 0.03692627, 0.012718201, -0.029556274, 0.029785156, 0.005241394, -0.01727295, 0.011054993, 0.040283203, -0.01473999, 0.0027618408, 0.013542175, -0.005794525, -0.033233643, -0.0031986237, -0.014518738, -0.007358551, 0.0028705597, -0.015419006, 0.0016794205, 0.005935669, -0.014175415, -0.008323669, -0.003967285, 0.031555176, -0.004840851, 0.0040359497, -5.2273273e-05, 0.0036563873, -0.0005631447, 0.006427765, -0.0413208, 0.0051231384, -0.032165527, -0.01902771, -0.04788208, -0.025634766, -0.031921387, 0.056365967, 0.0016670227, -0.018493652, 0.0574646, 0.031585693, 0.019546509, 0.058258057, -0.010864258, 0.036102295, 0.008605957, 0.015792847, -0.038360596, -0.024932861, 0.07348633, -0.05203247, -0.06173706, 0.01184845, 0.06402588, 0.00043702126, 0.009391785, 0.04660034, -0.027145386, 0.011627197, 0.024963379, -0.005203247, -0.033477783, -0.0067443848, 0.0009460449, -0.083862305, 0.011100769, -0.022720337, 0.026229858, -0.0049858093, 0.017303467, -0.009902954, 0.044158936, -0.0098724365, 0.011047363, -0.024505615, -0.0029067993, -0.017623901, -0.044036865, 0.018432617, 0.015380859, -0.0037250519, -0.00356102, 0.003129959, -0.022766113, 0.033081055, 0.024749756, 0.053833008, 0.06781006, -0.023773193, 0.027114868, 0.053710938, -0.06518555, 0.08087158, -0.0038852692, -0.027709961, 0.02684021, 0.009628296, 0.007423401, -0.0073547363, 0.022659302, 0.0042495728, -0.011024475, 0.020401001, 0.023635864, 0.010871887, -0.004875183, 0.008834839, -0.003648758, 0.023757935, 0.029525757, 0.025650024, 0.024505615, -0.013580322, -0.020843506, 0.0062561035, 0.00274086, -0.03945923, -0.00053596497, -0.018371582, 0.0072135925, 0.0131073, -0.01739502, 0.0071754456, 0.027786255, 0.028533936, -0.03540039, 0.008117676, -0.0048103333, -0.037384033, 0.013999939, -0.022872925, 0.018310547, -0.012306213, -0.030639648, -0.005821228, -0.030578613, -0.027999878, 0.03878784, 0.04849243, -0.018417358, 0.030258179, -0.056488037, 0.004917145, 0.059692383, -0.06124878, -0.0012779236, 0.03326416, -0.0131073, -0.006629944, 0.00762558, -0.0029201508, 0.010177612, 0.05303955, 0.016403198, 0.0947876, -0.053833008, 0.017669678, 0.018630981, 0.010765076, -0.023651123, -7.456541e-05, -0.01424408, -0.00819397, 0.011962891, -0.0036792755, -0.030929565, -0.017364502, 0.024124146, -0.011436462, -0.019470215, -0.021453857, 0.03656006, 0.014465332, 0.024993896, -0.03463745, -0.043029785, -0.0012273788, 0.020935059, -0.022018433, -0.035186768, -0.018249512, -0.034484863, 0.03152466, -0.036193848, 0.0129852295, 0.030395508, 0.03125, 0.03540039, 0.022201538, -0.040100098, -0.017654419, -0.019470215, -0.012168884, 0.0031394958, 0.028335571, -0.012062073, 0.00045752525, 0.008766174, -0.017028809, 0.033294678, -0.039398193, 0.011367798, -0.018417358, 0.038879395, -0.0121536255, 0.014343262, -0.018981934, -0.042541504, -0.0026340485, -0.006362915, -0.007789612, -0.016784668, 0.010925293, 0.006790161, -0.035827637, -0.03390503, 0.03074646, -0.025543213, -0.010314941, 0.028671265, -0.067871094, 0.033721924, -0.024032593, -0.039794922, -0.00868988, -0.021087646, -0.031082153, 0.06921387, 0.00504303, -0.031677246, 0.00868988, -0.00031495094, 0.0006175041, -0.013725281, 0.00014555454, 0.029174805, -0.03024292, -0.01108551, 0.05770874, -0.046569824, -0.03744507, -0.04522705, 0.012466431, -0.07055664, -0.0055274963, -0.022888184, 0.0038757324, 0.017364502, 0.0061798096, 0.022460938, -0.009994507, 0.02835083, -0.010971069, -0.039794922, 0.0042762756, -0.025939941, 0.05557251, 0.012290955, -0.039642334, 0.0037555695, 0.025680542, 0.010375977, 0.052703857, 0.008178711, 0.024337769, -0.05831909, -0.0042304993, -0.044647217, 0.015914917, -0.017425537, 0.0029354095, -0.014602661, -0.004924774, -0.02494812, -0.035827637, -0.0107040405, -0.016342163, 0.0093307495, -0.004924774, 0.015426636, -0.028305054, 0.017303467, -0.021438599, 0.0012168884, 0.0146865845, 0.0006542206, -0.062805176, 0.020339966, 0.014427185, -0.03503418, 0.026733398, 0.047790527, 0.0008339882, 0.007549286, -0.0056877136, 0.0017719269, -0.0051460266, -0.017852783, -0.043060303, -0.05154419, 0.00806427, -0.00207901, 0.027923584, -0.025466919, -0.024429321, 0.0115737915, 0.0065307617, 0.0023288727, 0.024520874, 0.013282776, -0.038635254, 0.01360321, 0.020477295, 0.019073486, -0.0024166107, 0.013290405, -0.041931152, -0.039611816, 0.01739502, 0.012611389, 0.019012451, -0.032958984, 0.0513916, 0.03137207, 0.078125, -0.03842163, -0.14489746, -0.0836792, 0.026519775, -0.016036987, 0.011734009, 0.0046577454, 0.010726929, 0.014755249, 0.04360962, 0.014701843, -0.03543091, 0.009757996, 0.049346924, 0.04006958, 0.011039734]}, "B084JG7KBQ": {"id": "B084JG7KBQ", "original": "Brand: Outsunny\nName: Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard\nDescription: Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

      Features:
      - 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
      - PA coated polyester canopy top offers sunray and light rain protection
      - Side awning provides extra sun protection
      - Durable metal frame with extra supporting bars for added stability
      - Comes with stakes for the legs for added support
      - 2 platform shelves for grill accessories, beverages or food
      - 5 hookers for cooking tools
      - Easy to assemble
      NOTE: Not to be left up during adverse weather conditions.

      Specifications:
      - Color: Black, Grey
      - Materials: Steel, Polyester
      - Overall Dimension: 85.75\" L x 54.25\" W x 85\" H
      - Peak Height: 85\" H
      - Sidewall Height: 76\" H
      - Net Weight: 44 lbs


      \nFeatures: STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging.\nWEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions.\nSTORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools.\nSTURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station.\nOverall Dimension: 85.75\" L x 54.25\" W x 85\" H, Eaves Height: 85\" H, Side Awning Size:78.75\" L x 19.75\" W ,\n", "metadata": {"Name": "Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard", "Brand": "Outsunny", "Description": "Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

      Features:
      - 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
      - PA coated polyester canopy top offers sunray and light rain protection
      - Side awning provides extra sun protection
      - Durable metal frame with extra supporting bars for added stability
      - Comes with stakes for the legs for added support
      - 2 platform shelves for grill accessories, beverages or food
      - 5 hookers for cooking tools
      - Easy to assemble
      NOTE: Not to be left up during adverse weather conditions.

      Specifications:
      - Color: Black, Grey
      - Materials: Steel, Polyester
      - Overall Dimension: 85.75\" L x 54.25\" W x 85\" H
      - Peak Height: 85\" H
      - Sidewall Height: 76\" H
      - Net Weight: 44 lbs


      ", "Features": "STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging.\nWEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions.\nSTORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools.\nSTURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station.\nOverall Dimension: 85.75\" L x 54.25\" W x 85\" H, Eaves Height: 85\" H, Side Awning Size:78.75\" L x 19.75\" W ,", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018981934, -0.017837524, -0.030578613, -0.049682617, -0.014022827, 0.003993988, -0.03274536, 0.04043579, -0.052124023, -0.015823364, -0.035949707, 0.03387451, -0.032226562, -0.02734375, 0.060455322, -0.058776855, 0.027313232, -0.018203735, 0.004558563, -0.024932861, -0.0067100525, -0.009017944, 0.04043579, 0.07922363, 0.03652954, -0.014175415, 0.021148682, -0.023345947, 0.03857422, 0.0031356812, 0.013938904, -0.0021800995, 0.040985107, -0.029968262, -0.0076522827, -0.056854248, -0.043060303, -0.005393982, -0.019851685, -0.026855469, -0.0018377304, 0.028625488, -0.00080919266, 0.018417358, -0.037475586, -0.052612305, -0.0010662079, -0.027236938, 0.0014448166, -0.0025234222, 0.011802673, 0.044006348, 0.03640747, -0.04260254, 0.012367249, 0.038116455, 0.0050697327, 0.028884888, 0.05545044, -0.002840042, -0.043273926, -0.013793945, 0.03390503, -0.03668213, -0.008956909, -0.0032081604, 0.055236816, -0.0069847107, -0.009597778, -0.027404785, 0.018463135, -0.001036644, 0.002735138, 0.020996094, -0.021621704, -0.035125732, 0.032104492, -0.011741638, 0.0032176971, 0.025726318, -0.013015747, -0.045288086, 0.026290894, -0.053009033, 0.026626587, -0.017242432, -0.008460999, 0.012748718, 0.04156494, -0.0036125183, 0.013572693, -0.0043678284, 0.002105713, 0.06262207, 0.0053215027, -0.04135132, -0.057281494, -0.040863037, 0.03918457, 0.034118652, -0.016601562, -0.016326904, 0.002960205, -0.0033168793, -0.012397766, 0.031921387, 0.008544922, 0.010368347, -0.03378296, 0.011390686, -0.034057617, -0.06274414, 0.024932861, 0.0034255981, -0.07220459, -0.0036182404, 0.034973145, -0.058929443, 0.004169464, -0.040130615, -0.034820557, -0.008712769, -0.02949524, 0.036895752, 0.06335449, 0.057006836, 0.004184723, 0.045776367, -0.03201294, 0.009735107, -0.0070533752, 0.031311035, 0.008773804, -0.002105713, -0.027496338, -0.009429932, -0.002298355, -0.019424438, 0.0026340485, 0.038146973, -0.04611206, -0.033081055, 0.0748291, -0.018234253, -0.014259338, 0.029327393, 0.024642944, 0.025634766, -0.017578125, -0.0859375, 0.06124878, -0.018600464, 0.051208496, -0.010612488, -0.04067993, -0.050048828, 0.03149414, -0.04144287, -0.016204834, -0.07861328, -0.009559631, -0.00592041, 0.011116028, -0.009590149, -0.015823364, 0.02104187, -0.0023555756, -0.0041160583, 0.016738892, 0.040740967, -0.02180481, -0.025604248, -0.01828003, 0.020004272, -0.004463196, 0.033813477, -0.006538391, 0.05682373, 0.08691406, -0.10021973, -0.07446289, -0.05117798, 0.12432861, -0.034942627, -0.022857666, 0.00390625, 0.008460999, 0.025222778, 0.002565384, 0.010681152, 0.012672424, 0.0056419373, -0.030349731, -0.009132385, 0.008811951, -0.008285522, -0.010856628, 0.0025081635, 0.0052986145, 0.0054855347, -0.023468018, 0.0087509155, -0.004005432, -0.019073486, 0.046417236, -0.043823242, 0.037719727, 0.0075149536, -0.009590149, 0.017089844, 0.025024414, 0.007522583, -0.04284668, -0.0012245178, -0.010536194, -0.016845703, -0.010765076, 0.0206604, 0.0051727295, 0.025024414, 0.020874023, -0.0003848076, 0.016601562, 0.016021729, 0.019363403, -0.04269409, 0.014045715, -0.024414062, 0.023788452, 0.016601562, -0.024597168, 0.004486084, 0.014533997, 0.0038318634, -0.018966675, 0.05291748, 0.044281006, 0.02180481, -0.037017822, 0.006351471, 0.023147583, 0.011505127, -0.026290894, -0.004951477, 0.014389038, -0.08428955, -0.015991211, 0.0014657974, -0.03262329, -0.0075035095, 0.0368042, 0.007972717, 0.027633667, 0.013252258, -0.0184021, 0.033813477, -0.023712158, 0.013214111, -0.043701172, 0.03552246, -0.015701294, 0.042907715, 0.03982544, -0.0054244995, 0.055267334, -0.014122009, 0.07165527, 0.05758667, 0.0044441223, -0.024871826, -0.012512207, 0.0050315857, -0.021560669, -0.01902771, 0.041412354, -0.04272461, -0.029174805, 0.007820129, -0.025680542, -0.035949707, 0.037475586, 0.03955078, -0.0033817291, 0.002916336, -0.0058250427, -0.033691406, -0.0053634644, 0.044891357, -0.047943115, -0.022216797, -0.013473511, 0.045013428, 0.0021896362, -0.003047943, 0.026626587, 0.0073509216, -0.029373169, 0.021957397, 0.03552246, -0.03161621, -0.015045166, 0.029708862, -0.059051514, 0.047943115, -0.018829346, 0.044952393, 0.007080078, -0.029220581, -0.01499176, -0.023040771, 0.024597168, 0.040985107, 0.038757324, -0.03768921, 0.101501465, 0.053771973, 0.025543213, 0.066589355, 0.06878662, 0.044403076, -0.0057792664, 0.00010019541, -0.019180298, -0.021835327, 0.006126404, 0.012512207, -0.038085938, -0.0019283295, 0.0050964355, -0.012184143, -0.015014648, -0.019332886, -0.030380249, 0.02104187, -0.0050354004, -0.009590149, 0.005355835, -0.003894806, 0.01374054, -0.026809692, 0.032104492, 0.056610107, 0.00078344345, -0.00087690353, -0.0259552, 0.014526367, -0.021484375, 0.015853882, -0.009613037, 0.014862061, -0.020126343, -0.021560669, -0.046569824, -0.03555298, -0.03829956, -0.00881958, 0.023635864, -0.0836792, -0.04623413, -0.0914917, -0.019973755, -0.011886597, -0.06298828, -0.031921387, 0.024154663, 0.004951477, -0.027862549, -0.0129470825, -0.019882202, 0.0063972473, 0.046844482, -0.008087158, -0.032836914, -0.041748047, -0.06542969, -0.035095215, -0.03390503, -0.060913086, 0.009490967, -0.027435303, -0.023162842, -0.0028934479, 0.039855957, 0.05770874, 0.016845703, 0.035888672, 0.03010559, 0.034210205, 0.022277832, -0.031219482, 0.022567749, 0.055358887, -0.046447754, -0.00522995, 0.036499023, 0.015037537, -0.026275635, 0.008041382, -0.07489014, -0.029678345, -0.11743164, 0.01348114, -0.013679504, -0.02279663, -0.013641357, -0.03552246, -0.052764893, -0.06384277, 0.004207611, 0.04559326, -0.030792236, 0.016281128, -0.039520264, 0.005962372, 0.0048217773, -0.0055503845, 0.040283203, 0.011985779, 0.022644043, -0.06048584, -0.013191223, 0.02418518, -0.0033073425, -0.0077323914, -0.057006836, 0.003643036, 0.00035881996, 0.04837036, -0.014839172, -8.5413456e-05, -0.006706238, -0.0418396, 0.006286621, -0.0055732727, -0.053588867, -0.009422302, -0.010154724, 0.023086548, 0.018508911, -0.031951904, -0.010848999, -0.00182724, -0.011070251, 0.010765076, -0.008659363, -0.017303467, 0.012413025, -0.033355713, -0.0049972534, -0.022399902, -0.007522583, 0.016342163, 0.039520264, 0.018371582, 0.0048217773, 0.028244019, 0.009780884, 0.061035156, 0.044128418, -0.013549805, 0.019012451, -0.0635376, 0.052215576, 0.048461914, 0.008255005, -0.029312134, 0.05697632, -0.015411377, -0.00440979, 0.0124053955, -0.051208496, 0.0070114136, -0.040100098, -0.023086548, 0.044647217, 0.008613586, -0.009101868, -0.011108398, 0.03366089, 0.009185791, -0.03665161, 0.008865356, -0.04638672, 0.094177246, 0.041992188, -0.018692017, 0.06524658, 0.051879883, -0.023635864, 0.016647339, 0.034973145, -0.008483887, 0.00095129013, 0.049346924, -0.0362854, -0.020263672, -0.008506775, 0.032562256, 0.024002075, -0.023422241, 0.016693115, -0.019638062, -0.01828003, -0.011131287, -0.015640259, 0.0056266785, 0.015914917, 0.004398346, -0.002040863, -0.015304565, 0.012397766, -0.025726318, -0.004760742, 0.003774643, -0.032928467, -0.044158936, -0.0048828125, -0.016540527, -0.041107178, 0.014816284, 0.018585205, 0.006111145, 0.030975342, 0.033081055, -0.02355957, 0.034973145, -0.016784668, 0.0038547516, -0.03375244, 0.013015747, 0.048095703, 0.01902771, 0.03250122, -0.009086609, -0.009674072, 0.0032958984, 0.009902954, 0.0043525696, -0.025482178, -0.046875, -0.0064888, 0.029846191, 0.015556335, -0.030075073, 0.024642944, -0.05493164, -0.034851074, -0.026046753, -0.05215454, 0.0052871704, -0.04055786, -0.030410767, -0.057800293, -0.012702942, -0.030136108, -0.0052261353, -0.07751465, 0.05053711, -0.00086164474, -0.032104492, -0.024047852, 0.007423401, -0.054656982, 0.0259552, -0.042144775, 0.0020885468, 0.047790527, 0.0413208, -0.01979065, -0.0149383545, -0.049194336, -0.0113220215, 0.003156662, -0.00315094, -0.016098022, -0.006713867, -0.03161621, -0.0038986206, 0.013168335, 0.06616211, -0.03643799, 0.037231445, -0.0031089783, -0.008003235, -0.034729004, -0.0024375916, 0.028030396, -0.031341553, -0.008796692, -0.01109314, 0.012207031, -0.010543823, -0.004295349, -0.053344727, 0.026275635, 0.00014269352, 0.026138306, -0.0040397644, -0.007270813, 0.02709961, 0.0024700165, -0.010055542, 0.011489868, -0.01927185, 0.04550171, -0.025619507, 0.004119873, 0.023101807, -0.014343262, 0.031204224, -0.011650085, -0.0007724762, 0.0012626648, -0.02645874, 0.0011520386, 0.02923584, -0.04244995, 0.093688965, 0.09503174, -0.018951416, 0.027893066, 0.026138306, -0.014907837, -0.002248764, 0.021850586, -0.012550354, -0.023345947, -0.005508423, -0.013793945, -0.02659607, -0.024597168, -0.02645874, 0.0028820038, -0.042907715, -0.00086021423, 0.0013999939, 0.028656006, -0.04864502, -0.009895325, 0.08508301, 0.027420044, 0.003036499, 0.056732178, -0.01878357, -0.006778717, -0.023620605, 0.013320923, 0.02923584, 0.0026721954, -0.0015792847, 0.005016327, -0.003829956, -0.047302246, -0.025527954, 0.050872803, -0.0082473755, 0.013977051, 0.0053482056, 0.012908936, -0.032287598, -0.038116455, 0.0041656494, -0.009674072, -0.010887146, -0.0035858154, -0.030761719, 0.0019741058, 0.04248047, -0.03277588, 0.020385742, 0.025390625, 0.0014476776, 0.05645752, 0.0029125214, -0.0005373955, -0.030685425, 0.021514893, -0.008338928, -0.025466919, -0.013725281, -0.0048980713, -0.016143799, 0.053741455, -0.029434204, -0.0206604, 0.041503906, -0.02645874, -0.035339355, 0.05053711, 0.02734375, -0.008049011, -0.020843506, 0.050109863, -0.04925537, -0.04119873, 0.051208496, -0.028656006, -0.023880005, -0.014854431, -0.013427734, 0.0002808571, 0.0068359375, -0.005771637, -0.03387451, -0.0044288635, -0.046844482, 0.00013387203, -0.032226562, 0.046875, 0.017669678, 0.002231598, -0.012275696, -0.0206604, -0.0075035095, -0.077941895, -0.03277588, -0.01625061, 0.049346924, 0.039367676, 0.04373169, -0.020202637, 0.02885437, 0.005077362, -0.012535095, 0.01737976, 0.018615723, -0.06713867, 0.023132324, 0.02609253, 0.03237915, -0.025848389, 0.010810852, 0.049102783, -0.04623413, -0.03265381, -0.019439697, 0.020248413, -0.005870819, -0.007297516, -0.0054512024, 0.013153076, -0.016677856, 0.028518677, -0.008430481, -0.01234436, -0.027511597, 0.007896423, -0.080200195, 0.00034546852, -0.010505676, 0.037139893, -0.0473938, -0.010551453, -0.01586914, 0.06536865, 0.004802704, -0.002483368, -0.03616333, -0.024154663, 0.0010118484, 0.012062073, 0.038757324, 0.0024261475, -0.042053223, -0.014450073, -0.0093688965, -0.0357666, 0.01914978, 0.0058135986, 0.04269409, 0.054779053, 0.019012451, 0.025222778, 0.021240234, -0.07867432, 0.046447754, -0.019241333, -0.027496338, -0.030792236, 0.01171875, 0.03668213, -0.003227234, 0.02079773, -0.01058197, 0.02116394, -0.008071899, 0.029907227, -0.041229248, -0.0077323914, -0.040740967, 0.04916382, 0.032226562, 0.0075263977, -0.019882202, 0.0034656525, 0.0058403015, 0.0046043396, -0.015434265, 0.011116028, -0.013084412, -0.013694763, -0.019180298, -0.002166748, 0.033416748, -0.0061035156, 0.028503418, 0.0014686584, 0.032562256, 0.00844574, -0.01675415, 0.009010315, 0.0025081635, 0.014099121, -0.017196655, -0.056640625, 0.027053833, -0.06591797, -0.027313232, -0.0075683594, 0.01071167, 0.036956787, 0.026428223, -0.00058221817, 0.006401062, 0.038879395, -0.005290985, 0.025222778, -0.0184021, 0.013198853, 0.0015487671, 0.016494751, 0.003660202, -0.051483154, -0.03201294, 0.0007920265, 0.014793396, -0.029968262, 0.048858643, -0.001203537, -0.007232666, 0.0046463013, 0.021347046, -0.051483154, -0.029418945, 0.0032672882, -0.028915405, 0.009407043, 0.006668091, 0.009262085, -0.018066406, 0.03894043, -0.055419922, -0.0017910004, -0.040618896, 0.020492554, -0.0385437, -0.025909424, -0.048034668, -0.012130737, 0.041168213, 0.026184082, -0.030090332, -0.04421997, -0.00022828579, -0.0019836426, 0.0041122437, -0.055908203, 0.018615723, -0.0071487427, 0.020553589, 0.017547607, 0.02998352, 0.015022278, 0.02406311, -0.014808655, 0.023773193, 0.011520386, 0.0045051575, 0.002954483, -0.0028820038, 0.019119263, 0.039886475, 0.036712646, -0.027175903, 0.02015686, 0.033325195, -0.022354126, 0.014213562, -0.015045166, -0.002073288, -0.017990112, -0.027618408, -0.0039482117, -0.012275696, -0.008117676, 0.056396484, -0.011146545, -0.000344038, -0.014480591, 0.02645874, -0.025344849, 0.0061454773, -0.0020999908, 0.0036449432, 0.011871338, 0.0017786026, 0.009170532, -0.048095703, -0.008621216, -0.008384705, 0.0023593903, 0.0031871796, -0.024337769, -0.017044067, 0.018997192, 0.034576416, -0.03878784, -0.032165527, 0.013381958, 0.0037288666, 0.02557373, 0.071899414, -0.0006804466, -0.056671143, -0.079833984, 0.0005931854, -0.006652832, 0.011672974, -0.032043457, 0.030395508, 0.041503906, 0.017959595, 0.027954102, 0.0690918, 0.006958008, 0.0023097992, 0.002506256, 0.0066184998, -0.023834229, 0.065979004, 0.024658203, -0.038360596, 0.0001540184, -0.0066490173, 0.023788452, 0.006263733, 0.07287598, -0.0018758774, -0.100097656, -0.044708252, -0.072387695, 0.041992188, -0.005847931, 0.025024414, -0.027130127, -0.003791809, -0.019714355, -0.0037670135, -0.010765076, -0.026931763, 0.01902771, -0.0023670197, 0.0496521, 0.0002696514, -0.040100098, -0.052001953, -0.026351929, -0.0026721954, -0.027832031, -0.02331543, 0.034240723, -0.005809784, -0.03277588, -0.006877899, 0.018035889, -0.02456665, 0.012748718, -0.030456543, -0.010551453, -0.033447266, -0.00982666, -0.012550354, 0.0035743713, -0.017318726, 0.004131317, 0.025680542, -0.029785156, -0.016571045, -0.0032215118, 0.0045547485, 0.0003976822, -0.0014867783, -0.018539429, -0.020019531, -0.014427185, 0.04837036, -0.017959595, 0.028579712, -0.04309082, -0.01953125, 0.000117599964, 0.048187256, 0.011405945, 0.06365967, -0.044555664, 0.09307861, 0.03213501, 0.074523926, -0.025131226, -0.026367188, -0.016860962, 0.006298065, -0.030807495, 0.023727417, 0.03036499, -0.04336548, 0.022598267, 0.0014734268, -0.007534027, -0.02746582, 0.02746582, 0.017974854, -0.01626587, 0.041503906]}, "B00OV88E5A": {"id": "B00OV88E5A", "original": "Brand: Gas Light Pro\nName: Propane Tip for Gas Lantern 123SID\nDescription: Rosebud flame\nFeatures: Propane(LP) tip for gas lanterns.\n2 1/8\" tall\n1/8\" MNPT\nBrass components\nAdjustable air intake\n", "metadata": {"Name": "Propane Tip for Gas Lantern 123SID", "Brand": "Gas Light Pro", "Description": "Rosebud flame", "Features": "Propane(LP) tip for gas lanterns.\n2 1/8\" tall\n1/8\" MNPT\nBrass components\nAdjustable air intake", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035614014, -0.03479004, -0.01574707, 0.010292053, -0.053833008, -0.008018494, -0.0036506653, 0.016799927, -0.03274536, -0.0025806427, 0.0035991669, 0.036468506, 0.0027637482, -0.049041748, 0.062561035, 0.0016021729, 0.016784668, 0.019714355, -0.0008468628, -0.023880005, -0.012802124, -0.02128601, -0.01638794, 0.070007324, 0.016494751, -0.057617188, 0.05239868, -0.009796143, 0.04385376, -0.0002632141, 0.020629883, -0.016159058, 0.009223938, 0.04373169, -0.023422241, 0.020507812, 0.022659302, 0.015838623, 0.014076233, 0.011039734, -0.020095825, 0.03451538, -0.020202637, 0.018554688, -0.053375244, -0.01158905, -0.042053223, -0.015197754, 0.04611206, 0.001077652, -0.023483276, -0.027252197, -0.036254883, -0.025024414, -0.01020813, -0.008308411, 0.035980225, 0.0016937256, 0.021697998, -0.07623291, -0.04345703, 0.0096588135, 0.034332275, 0.031799316, 0.009887695, -0.0050964355, 0.02973938, 0.0066375732, 0.0546875, 0.010673523, -0.015113831, 0.030914307, 0.0049476624, -0.004058838, -0.04525757, -0.024124146, 0.049835205, -0.021621704, -0.003932953, -0.0036830902, 0.0019207001, -0.0031223297, -0.016860962, 0.014350891, -0.028244019, 0.0011234283, -0.013015747, -0.0126571655, -0.021865845, -0.032104492, -0.020904541, 0.026947021, -0.05569458, -0.0077209473, -0.029342651, -0.0039367676, -0.062805176, -0.095703125, 0.035003662, -0.01184082, 0.019195557, -0.020233154, -0.027038574, 0.025299072, -0.001572609, 0.053344727, 0.00047159195, -0.0021381378, -0.002937317, -0.00024819374, -0.0038585663, -0.05999756, 0.0096206665, -0.017471313, -0.019607544, -0.032440186, -0.04031372, 0.061279297, 0.027679443, 0.01739502, -0.014083862, 0.021743774, -0.0014476776, -0.026107788, -0.0031261444, -0.007827759, -0.005153656, -0.02041626, -0.031143188, 0.036956787, -0.011024475, -0.0037994385, -0.0036239624, 0.0357666, -0.004962921, -0.020751953, 0.0042266846, -0.0121536255, -0.0029888153, -0.037078857, 0.059692383, -0.0035209656, -0.007926941, 0.023040771, -0.011444092, 0.019607544, 0.0055503845, 0.001745224, 0.006706238, -0.011260986, -0.00409317, -0.035858154, 0.025558472, 0.0037517548, 0.0037956238, 0.01373291, -0.007549286, 0.0070991516, -0.021987915, -0.023803711, 0.020477295, -0.03137207, -0.027542114, -0.01725769, -0.06970215, 0.04840088, 0.024734497, -0.016998291, 0.016464233, 0.048217773, 0.010795593, -0.009597778, -0.014251709, 0.020446777, -0.00085926056, 0.004058838, 0.012565613, 0.074645996, 0.024642944, -0.05670166, -0.018051147, -0.043060303, 0.13378906, -0.040771484, -0.013282776, -0.009483337, 0.01763916, -0.011009216, 0.008918762, 0.0036678314, 0.029846191, 0.030181885, -0.049072266, -0.013320923, -0.012237549, 0.028427124, -0.02986145, 0.023773193, -0.017486572, 0.0012807846, -0.027908325, 0.042999268, -0.011764526, 0.04309082, 0.062683105, 0.007129669, 0.03326416, 0.012207031, 0.01184845, -0.010292053, -0.031066895, -0.027618408, 0.028152466, -0.04650879, -0.024475098, 0.030807495, -0.013198853, -0.0064582825, -0.010223389, -0.033355713, 0.02305603, -0.043121338, 0.02357483, 0.054840088, 0.00019598007, -0.008934021, 0.0015830994, 0.0077705383, 0.013366699, 0.009552002, 0.02078247, -0.012916565, 0.001947403, 0.06414795, 0.020370483, 0.027359009, 0.058166504, 0.012672424, 0.0066108704, -0.024749756, 0.020889282, -0.019119263, -0.017501831, 0.024871826, 0.02999878, 0.01335144, 0.009803772, 0.0052871704, 0.002275467, 0.019439697, 0.022888184, 0.008926392, 0.022827148, 0.07873535, 0.0026741028, 0.00504303, -0.0090408325, 0.012283325, -0.036468506, 0.04168701, -0.017807007, 0.042663574, 0.03048706, 0.0027675629, 0.013130188, 0.0032749176, 0.04888916, 0.047454834, -0.024307251, -0.03378296, 0.016403198, 0.06542969, -0.004245758, -0.009628296, 0.021087646, -0.014625549, -0.021347046, 0.023040771, -0.0048294067, -0.010765076, -0.007472992, 0.033081055, 0.046081543, -0.008743286, 0.0066604614, 0.0022850037, 0.017486572, -0.032318115, -0.027542114, -0.0037708282, 0.027664185, -0.0049552917, -0.022659302, -0.005908966, 0.014526367, -0.023864746, 0.004005432, -0.0135650635, 0.04937744, -0.028533936, -0.014030457, 0.04562378, -0.04675293, 0.05859375, -0.023895264, 0.011772156, -0.0135269165, -0.010246277, -0.004020691, -0.07055664, 0.0395813, 0.051116943, -0.0031471252, 0.007835388, -0.016479492, -0.02053833, -0.007461548, -0.0023651123, 0.0028915405, 0.033203125, 0.06213379, -0.02734375, -0.0082473755, -0.034118652, -0.016174316, -0.026611328, -0.023834229, -0.017486572, -0.014839172, 0.019882202, -0.011222839, -0.0015182495, -0.004020691, 0.013664246, -0.016952515, -0.003396988, 0.001540184, 0.06124878, 0.005393982, -0.044647217, -0.013961792, 0.04876709, -0.00029611588, -0.021118164, -0.09173584, 0.02079773, 0.02583313, -0.0104904175, -0.016723633, -0.010429382, 0.045562744, -0.006385803, -0.011764526, 0.012435913, 0.01234436, 0.014877319, -0.012252808, 0.0077323914, 0.01448822, -0.05517578, 0.0014324188, -0.030395508, -0.062469482, -0.060791016, 0.05899048, -0.00022780895, -0.06036377, -0.039916992, 0.011230469, 0.010978699, -0.013664246, -0.0019950867, -0.011054993, -0.0053596497, 0.0007715225, 0.011222839, 0.007972717, -0.04623413, 0.034362793, 0.011077881, -0.003320694, 0.02331543, -0.011520386, 0.03866577, 0.02015686, 0.017578125, 0.022155762, 0.011703491, 0.02784729, -0.007762909, 0.017486572, 0.032592773, -0.038513184, -0.020248413, 0.011985779, -0.011375427, 0.032440186, 0.05697632, -0.033477783, -0.033843994, -0.13500977, 0.047912598, 0.03503418, -0.042785645, -0.004550934, -0.050811768, -0.09246826, -0.04071045, 0.030090332, 0.0071144104, 0.027420044, 0.004924774, -0.0002975464, 0.020187378, -0.036499023, -0.008880615, -0.029052734, -0.014221191, 0.010864258, 0.0029621124, 0.023788452, -0.090148926, 0.037261963, 0.05291748, -0.033233643, 0.0019569397, -0.015151978, 0.016036987, -0.030517578, 0.08288574, 0.003742218, 0.009338379, -0.034118652, -0.030639648, -0.04550171, 0.019470215, 0.010246277, 0.030517578, 0.029586792, -0.022918701, -0.0440979, -0.042297363, 0.034851074, 0.012260437, 0.0016212463, 0.009986877, -0.037322998, -0.0110321045, -0.02519226, -0.029083252, 0.009757996, 0.004283905, -0.026153564, 0.020477295, -0.0017690659, 0.09020996, 0.055603027, 0.03564453, -0.0037231445, -0.048217773, -0.03475952, -0.048217773, 0.011932373, -0.012802124, -0.006580353, -0.0390625, 0.00047278404, 0.018615723, 0.04208374, -0.041381836, -0.0075263977, 0.09832764, -0.0018863678, -0.03677368, 0.009246826, -0.06072998, -0.0023727417, -0.0053138733, 0.06665039, 0.0032138824, -0.037322998, 0.017364502, -0.05984497, 0.07147217, 0.014984131, -0.003643036, 0.0390625, 0.0435791, -0.023529053, 0.036254883, 0.05444336, -0.014755249, 0.00504303, 0.044921875, -0.036376953, -0.012275696, 0.009963989, 0.012306213, 0.0131073, 0.023757935, -0.0690918, -0.0071029663, -0.017623901, -0.048034668, 0.015853882, -0.014472961, 0.008934021, 0.0126571655, 0.026351929, 0.016830444, 0.011489868, -0.016479492, 0.0039901733, 0.020050049, -0.019699097, 0.022659302, -0.013374329, -0.056793213, -0.0050735474, 0.028762817, -0.017715454, -0.038330078, 0.018966675, 0.03414917, 0.006248474, -0.012992859, 0.009239197, 0.004825592, -0.0129852295, 0.033233643, -0.0105896, 0.017700195, -0.039093018, -0.055541992, 0.052459717, -0.03793335, -0.014541626, 0.043762207, 0.0036811829, -0.070251465, -0.014297485, 0.0056266785, -0.01449585, -0.045928955, -0.054260254, 0.032165527, -0.062194824, 0.0039367676, 0.025100708, -0.04650879, 0.01966858, 0.020690918, -0.03302002, -0.018951416, -0.051330566, -0.018157959, -0.0345459, 0.028564453, -0.0013151169, -0.016906738, 0.003648758, -0.014144897, -0.03387451, 0.023590088, -0.062683105, 0.0034809113, 0.036254883, 0.0015354156, 0.011398315, -0.016036987, 0.013244629, 0.02079773, 0.05102539, -0.027954102, 0.020751953, -0.031097412, -0.01889038, -0.0020446777, 0.012367249, 0.044403076, 0.00077962875, 0.01939392, -0.035980225, -0.016357422, -0.016143799, -0.048950195, -0.010116577, -0.032592773, -0.061950684, -0.077819824, 0.04650879, 0.0060424805, 0.039245605, -0.0037727356, -0.003156662, 0.0019550323, -0.022079468, -0.09094238, -0.048950195, -0.01902771, 0.023071289, -0.018341064, 0.006160736, 0.0135650635, -0.007881165, -0.009147644, -0.010414124, 0.045898438, 0.03173828, 0.0158844, -0.032592773, -0.002872467, -0.03543091, 0.024551392, -0.016555786, -0.043518066, -0.037872314, 0.04812622, 0.014533997, -0.006958008, 0.008300781, 0.0069122314, -0.009300232, -0.026885986, 0.0018949509, -0.0008955002, 0.013092041, 0.03262329, -0.014526367, -0.024032593, 0.0017566681, -0.02949524, -0.005432129, 0.010627747, 0.03439331, 0.009796143, -0.027252197, -0.014411926, -0.01260376, -0.0026016235, -0.021194458, 0.043029785, 0.00894165, 0.0028934479, 0.035369873, -0.009231567, -0.0053482056, -0.01739502, 0.0012569427, -0.017608643, 0.04067993, 0.0032634735, -0.015975952, -0.011520386, -0.007472992, -0.006965637, -0.03778076, 0.019042969, 0.031707764, -0.04220581, -0.044952393, 0.044677734, 0.038482666, -0.023223877, 0.049804688, 0.013916016, 0.0028057098, 0.003932953, -0.003232956, 0.014045715, -0.04473877, -0.010467529, 0.023391724, 0.015808105, -0.022720337, -0.036224365, 0.08251953, -0.027297974, -0.011207581, -0.022369385, 0.006679535, 0.020599365, -0.024597168, 0.0011405945, -0.025558472, 0.036346436, -0.0149383545, -0.0015935898, 0.005722046, -0.021408081, -0.01322937, 0.013504028, -0.019012451, -0.034942627, 0.00072288513, -0.021530151, -0.057739258, 0.049804688, 0.025924683, 0.008735657, 0.017913818, 0.012390137, -0.06628418, -0.034454346, -0.022628784, 0.013954163, -0.026931763, -0.025222778, -0.009033203, 0.0149002075, -0.035949707, -0.034301758, -0.035125732, -0.0035820007, -0.050445557, -0.036712646, -0.021850586, 0.02734375, 0.016921997, 0.040008545, -0.04486084, -0.01876831, -0.012084961, 0.014160156, 0.007083893, 0.015045166, -0.078125, -0.006164551, -0.012954712, -0.0032844543, -0.027618408, 0.008514404, 0.03866577, -0.044006348, -0.035736084, -0.024261475, 0.046783447, -0.019454956, -0.0017204285, 0.027450562, 0.026687622, -0.004611969, 0.040893555, 0.010467529, -0.03756714, 0.033691406, 0.0021839142, -0.053863525, -0.01687622, -0.02772522, -0.016937256, 0.0090789795, -0.016052246, -0.04309082, 0.024017334, -0.018173218, 0.0113220215, -0.047790527, -0.033325195, -0.0075416565, -0.031677246, 0.007797241, -0.04397583, -0.0028762817, -0.018981934, 0.013519287, -0.030395508, -0.048980713, -0.031433105, 0.0053482056, 0.025619507, 0.021850586, 0.0132369995, 0.038330078, -0.04437256, -0.030700684, 0.006362915, 0.007698059, 0.008132935, 0.0036621094, -0.022232056, 0.0029354095, -0.033294678, 0.011306763, -0.034423828, 0.028762817, 0.026519775, 0.0362854, -0.025878906, 0.022781372, 0.002632141, 0.02482605, 0.040863037, 0.030532837, 0.039276123, -0.058013916, -0.0814209, 0.025299072, 0.02760315, -0.062316895, 0.031021118, -0.056243896, 0.019180298, 0.012565613, -0.013061523, 0.011138916, -0.022705078, 0.05618286, -0.01473999, 0.010314941, 0.008110046, -0.0044517517, 0.06149292, 0.0062332153, 0.0050621033, 0.019714355, 0.01625061, -0.02961731, 0.0051727295, 0.0031089783, 0.0079422, 0.044403076, 0.04876709, -0.012580872, -0.05886841, 0.03857422, 0.0256958, -0.06329346, -0.022659302, 0.038848877, 0.033111572, 0.002166748, -0.04800415, 0.0050354004, -0.02116394, -0.0014238358, 0.016418457, -0.0055999756, 0.025283813, 0.034088135, -0.054382324, 0.010147095, -0.04067993, -0.05822754, 0.035186768, 0.02305603, -0.0014181137, 0.009483337, -0.027496338, 0.060943604, 0.002828598, 0.025253296, 0.061767578, -0.064208984, 0.013397217, 0.008735657, 0.014160156, -0.019042969, -0.0357666, -0.0007867813, 0.017425537, -0.011131287, -0.0027923584, -0.020980835, 0.04824829, 0.025238037, -0.0051651, 0.019378662, -0.05343628, 0.012161255, 0.013458252, 0.033477783, -0.07928467, -0.043182373, -0.0072784424, -0.032470703, 0.008323669, 0.0413208, -0.0010108948, 0.070251465, 0.036224365, 0.014640808, 0.051696777, -0.008758545, -0.0009326935, -0.00012910366, 0.014633179, 0.007633209, 0.04055786, -0.016220093, -0.0024089813, 0.012016296, 0.006542206, 0.023468018, 0.02470398, 0.0017690659, 0.03201294, -0.016830444, -0.034454346, 0.0034561157, 0.006389618, -0.050445557, 0.041992188, -0.05807495, 0.016571045, -0.016586304, -0.030212402, -0.017623901, -0.030395508, -0.03640747, 0.057128906, 0.0044822693, 0.006690979, -0.0042648315, -0.015419006, 0.011550903, 0.011306763, 0.02760315, 0.049224854, 0.030151367, -0.022369385, 0.03353882, -0.032562256, 0.0061836243, -0.020645142, -0.0023384094, -0.05581665, -0.016418457, 0.017288208, -0.024993896, -0.014160156, -0.024978638, -0.017578125, 0.06921387, 0.03479004, -0.015129089, 0.07196045, -0.039764404, -0.030838013, 0.07849121, 0.04937744, -0.031463623, -0.030151367, -0.0362854, 0.011489868, 0.021453857, 0.0039367676, 0.010421753, -0.037384033, 0.03668213, 0.017166138, 0.009902954, -0.0018901825, -0.0074501038, 0.0023822784, -0.008796692, -0.07562256, -0.036834717, -0.010871887, 0.07562256, 0.048980713, -0.020523071, 0.026062012, -0.023773193, -0.042510986, -0.05102539, -0.023025513, 0.02230835, 0.06951904, -0.020507812, -0.022338867, 0.04425049, -0.019302368, 0.034576416, 0.028396606, 0.0090408325, 0.017333984, -0.039611816, 0.02999878, -0.027877808, -0.02859497, 0.01727295, -0.00907135, -0.031173706, -0.0062675476, 0.02217102, -0.014450073, 0.014587402, -0.053894043, 0.030456543, 0.009971619, -0.02709961, -0.033569336, -0.055541992, 0.02861023, 0.011749268, 0.0004210472, -0.0009560585, 0.05303955, -0.0016403198, -0.021331787, -0.0025672913, 0.009712219, -0.021392822, -0.027008057, 0.033935547, 0.0006518364, 0.10107422, -0.006603241, -0.07513428, -0.043670654, 0.03262329, 0.01675415, -0.022155762, 0.04663086, -0.022994995, 0.020812988, -0.004032135, -0.03302002, -0.0009455681, -0.010475159, 0.089904785, -0.044891357, 0.008575439]}, "B07MNH28TP": {"id": "B07MNH28TP", "original": "Brand: MASTERCANOPY\nName: MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown)\nDescription: \nFeatures: \u2705Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated.\n\u2705Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top.\n\u2705Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric.\n\u2705Rational Design: Two handy shelves for grill accessories, beverages and food. 8' x 5' shade provides enough space to set most kinds of grills. Perfect choice for BBQ.\n\u2705Free Gift: 2 LED Lights.\n", "metadata": {"Name": "MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown)", "Brand": "MASTERCANOPY", "Description": "", "Features": "\u2705Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated.\n\u2705Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top.\n\u2705Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric.\n\u2705Rational Design: Two handy shelves for grill accessories, beverages and food. 8' x 5' shade provides enough space to set most kinds of grills. Perfect choice for BBQ.\n\u2705Free Gift: 2 LED Lights.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.033355713, -0.03060913, -0.019744873, -0.02015686, -0.025802612, 0.006580353, 0.0060539246, 0.040039062, -0.0026798248, 0.022262573, -0.033111572, 0.0102005005, 0.014671326, -0.0076065063, -0.004501343, -0.022979736, 0.03756714, 0.0009822845, 0.030303955, -0.013893127, -0.0041656494, 0.00044679642, 0.021438599, 0.056793213, 0.060516357, -0.015716553, -0.01914978, -0.010299683, 0.056396484, 0.031021118, 0.029296875, -0.040283203, 0.026687622, -0.011383057, 0.0048561096, -0.046295166, -0.02078247, -0.0011949539, 0.0019159317, 0.0026855469, 0.0064582825, 0.01675415, -0.06378174, -0.043182373, -0.048583984, -0.041534424, -0.008354187, 0.012283325, 0.0011911392, -0.045196533, 0.014160156, 0.057037354, 0.049560547, -0.061340332, -0.013412476, 0.01171875, 0.017822266, -0.01663208, 0.043823242, -0.014755249, -0.04434204, -0.025131226, 0.03491211, -0.02508545, -0.027160645, 0.005214691, 0.044036865, 0.0056877136, -0.02633667, -0.04260254, 0.0041007996, -0.005584717, -0.002243042, 0.022201538, -0.028518677, -0.030715942, 0.017562866, -0.00920105, 0.01210022, 0.032836914, 0.005355835, -0.052490234, 0.0065574646, -0.026062012, 0.031204224, 0.019500732, 0.001543045, -0.0038261414, -0.02331543, 0.0010595322, -0.017181396, -0.0317688, -0.04598999, 0.07867432, 0.017150879, 0.0034275055, -0.05883789, -0.052520752, 0.046020508, 0.025039673, 0.00944519, -0.031402588, 0.0051727295, -0.0017251968, -0.01927185, 0.07122803, 0.012573242, -0.010101318, -0.040283203, 0.0070343018, -0.020706177, -0.08441162, 0.04296875, -0.0036621094, -0.046875, -0.0048103333, 0.04147339, -0.020095825, 0.009246826, -0.016799927, -0.049041748, -0.020339966, -0.03378296, 0.057373047, 0.043121338, 0.06536865, 0.0070610046, 0.037628174, -0.045837402, 0.005138397, 0.0045280457, 0.0024089813, 0.027908325, 0.044006348, -0.00095653534, -0.016067505, -0.019958496, -0.044036865, 0.005355835, 0.03149414, -0.025543213, -0.019943237, 0.09222412, 0.0032405853, -0.019485474, -0.0067214966, 0.008331299, 0.042053223, -0.007472992, -0.06713867, 0.06072998, 0.012870789, 0.024291992, 0.01763916, -0.031555176, -0.010307312, 0.030807495, -0.02720642, -0.01878357, -0.05709839, 0.004119873, -0.009315491, -0.009254456, -0.016693115, -0.024490356, -0.0066947937, -0.015014648, 0.0072669983, 0.01576233, 0.020004272, -0.002161026, 0.024490356, -3.7252903e-05, -0.00642395, -0.010406494, 0.004459381, 0.013877869, 0.04144287, 0.08068848, -0.08355713, -0.06463623, -0.054382324, 0.12445068, -0.051757812, 0.028030396, -0.025146484, 0.015579224, 0.006641388, -0.009010315, 0.027740479, -0.024673462, 0.023147583, 0.038513184, -0.07092285, 0.00806427, 0.024047852, -0.038269043, 0.012886047, -0.0256958, 0.02822876, -0.036254883, 0.018936157, -5.4121017e-05, 0.022460938, -0.0004887581, 0.021743774, -0.017425537, 0.015640259, 0.017440796, 0.022705078, 0.0069084167, 0.014770508, -0.051940918, 0.0077171326, -0.036071777, -0.017211914, -0.025558472, 0.009086609, 0.011917114, 0.019302368, 0.018737793, -0.0013046265, 0.00907135, 0.016479492, 0.04788208, -0.013504028, -0.00018799305, -0.020355225, 0.05203247, 0.015792847, -0.039794922, 0.020629883, 0.03918457, -0.0064353943, -0.017745972, 0.053619385, 0.057800293, 0.013076782, -0.04598999, 0.021942139, 0.015930176, -0.008377075, -0.033172607, 0.016433716, -0.0019989014, -0.06402588, -0.01184082, 0.0056495667, -0.044525146, -0.012123108, -0.013793945, -0.005886078, 0.034454346, -0.018630981, -0.0725708, 0.052764893, -0.029418945, 0.013687134, -0.07495117, 0.060150146, -0.011985779, 0.013374329, 0.032409668, -0.019836426, 0.039489746, -0.018600464, 0.046142578, 0.030471802, -0.017456055, -0.016921997, 0.013633728, 0.0052604675, -0.021697998, -0.016693115, 0.047943115, -0.070617676, -0.038726807, 0.018951416, -0.04852295, -0.03829956, 0.013801575, 0.030822754, -0.023223877, -0.009429932, -0.0037517548, -0.0044136047, -0.010093689, 0.028259277, -0.012237549, -0.020584106, -0.0007786751, 0.020690918, -0.015426636, 0.0184021, 0.022140503, -0.024597168, -0.032928467, -0.0070152283, 0.049743652, -0.04067993, -0.034210205, 0.034301758, -0.036468506, 0.021347046, -0.02494812, 0.06378174, 0.017730713, -0.05303955, -0.021499634, -0.0713501, 0.08483887, 0.030410767, 0.028808594, -0.04663086, 0.08459473, 0.03704834, 0.018173218, 0.054595947, 0.036224365, 0.04232788, -0.011741638, 0.008964539, -0.011062622, -0.023254395, 0.010932922, -0.0015106201, -0.009490967, -0.003211975, -0.027175903, 0.017654419, 0.009933472, 0.018829346, 0.0043144226, 0.030151367, -0.004119873, 0.0184021, -0.0071983337, -0.04208374, 0.0009021759, -9.3877316e-05, 0.03250122, 0.05239868, 0.0096588135, -0.027145386, -0.009407043, 0.0050811768, -0.011924744, 0.023239136, -0.026733398, 0.023742676, -0.025772095, -0.03086853, -0.0021648407, 0.0135269165, -0.03149414, -0.031707764, 0.0017051697, -0.048217773, -0.07507324, -0.07720947, -0.02961731, 0.004169464, -0.056610107, 0.013626099, 0.03942871, -0.026245117, -0.005832672, -0.0009899139, -0.011131287, 0.010169983, 0.02746582, -0.013687134, 0.010894775, -0.031143188, -0.044036865, -0.02822876, -0.020874023, -0.042663574, -0.031188965, -0.032440186, 0.010826111, 0.013244629, 0.030441284, 0.024276733, 0.04449463, 0.022415161, 0.03543091, 0.046661377, -0.0013875961, -0.024459839, -0.025634766, 0.019134521, -0.055877686, -0.017608643, 0.025558472, 0.025939941, 0.00017285347, 0.015151978, -0.033111572, -0.037078857, -0.14746094, 0.017410278, 0.004623413, -0.04058838, 0.013977051, -0.07788086, -0.07287598, -0.06829834, 0.008453369, 0.059295654, -0.024124146, 0.02217102, -0.010940552, 0.013969421, -0.007095337, 0.0053634644, 0.0034637451, 0.0013694763, 0.009597778, -0.030960083, -0.015617371, 0.013870239, -0.008049011, -0.013114929, -0.04638672, 0.0135650635, -0.035095215, 0.014762878, -0.0073509216, 0.036895752, -0.010437012, 0.00029706955, 0.0014266968, -0.026031494, -0.06451416, -0.047058105, 0.0024757385, 0.0034828186, 0.030517578, -0.03656006, -0.03543091, -0.016586304, -0.0149002075, 0.011459351, -0.035095215, 0.01953125, -0.017150879, -0.06768799, 0.0037021637, -0.0014619827, 0.00050640106, 0.018157959, 0.031402588, 0.016540527, -0.014022827, -0.008979797, 0.024932861, 0.044158936, 0.033843994, -0.029159546, 0.0035476685, -0.029830933, -0.026107788, 0.03817749, 0.017333984, 0.0025806427, 0.03237915, -0.01486969, 0.0062446594, 0.009880066, -0.04232788, -0.0041122437, -0.008010864, 0.0019445419, 0.007335663, 0.032043457, -0.0020923615, -0.00868988, 0.004081726, 0.02418518, -0.015090942, -0.00086688995, -0.0680542, 0.11975098, 0.057373047, -0.016174316, 0.055664062, 0.049865723, -0.03543091, 0.044677734, 0.03225708, 0.016220093, -0.0078125, 0.04748535, -0.0446167, -0.011817932, 0.019256592, 0.0002539158, 0.02508545, -0.014427185, -0.049926758, 0.014450073, -0.017288208, -0.008712769, -0.011528015, 0.008728027, 0.0015439987, -0.010627747, 0.0036754608, -0.0019702911, -0.016311646, -0.043701172, 0.03894043, 0.01979065, -0.0075912476, 0.002565384, 0.01158905, -0.030426025, -0.0018386841, 0.009155273, 0.0015048981, 0.012413025, 0.026229858, 0.054229736, -0.034698486, 0.0082092285, -0.00093746185, -0.015113831, -0.00018918514, -0.0056114197, 0.021850586, -0.019348145, 0.00242424, 0.01991272, 0.012611389, 0.034423828, -0.0077056885, -0.036315918, -0.029800415, -0.029327393, 0.014167786, 0.04937744, -0.01235199, -0.0066833496, 0.018539429, -0.0446167, 0.012519836, 0.0031795502, -0.054351807, -0.017089844, -0.012924194, -0.0038146973, -0.091674805, -0.027557373, -0.020202637, -0.058166504, -0.08074951, 0.029434204, -0.0047416687, 0.006504059, -0.040527344, 0.06628418, -0.05340576, 0.00027132034, 0.0042533875, 0.026611328, -0.0017967224, 0.00932312, 0.02204895, -0.03289795, -0.05581665, -0.030471802, -0.01121521, -0.031143188, 0.00043535233, 0.0033740997, -0.029922485, -0.007820129, 0.007820129, 0.03366089, 0.006793976, 0.01777649, -0.008850098, -0.008010864, -0.025497437, 0.028289795, 0.004096985, 0.008544922, 0.0074691772, 0.011978149, 0.012054443, -0.024414062, 0.004802704, -0.05670166, -0.0028533936, 0.006816864, -0.0075531006, 0.004901886, -0.008979797, 0.008491516, 0.009963989, -0.014656067, -0.0019245148, -0.01826477, 0.009384155, -0.0016736984, 0.02305603, 0.0032291412, -0.019729614, 0.03640747, -0.028320312, -0.0013523102, -0.015975952, -0.027130127, -0.007534027, 0.05307007, -0.024276733, 0.05606079, 0.09240723, -0.03555298, 0.027145386, 0.035461426, -0.012893677, 0.032104492, 0.003572464, -0.011642456, -0.032409668, -0.009292603, -0.017669678, -0.004085541, -0.015670776, -0.015853882, 5.6147575e-05, -0.06359863, 0.0012702942, 0.041870117, 0.0047912598, -0.059020996, -0.022338867, 0.08117676, -0.016448975, 0.03375244, 0.04147339, 0.02708435, -0.0034828186, -0.03967285, 0.0075912476, -0.0011587143, -0.026168823, -0.0050735474, 0.0075035095, 0.013160706, -0.023925781, 0.017868042, 0.029510498, 0.018005371, 0.015716553, 0.0004079342, 0.021392822, -0.030975342, -0.030944824, 0.023376465, -0.026443481, -0.02571106, 0.0063591003, -0.03918457, 0.008865356, 0.027694702, -0.02722168, 0.0051841736, 0.013053894, -0.038360596, 0.08258057, -0.004787445, 0.002822876, -0.0016927719, 0.03253174, -0.01033783, 0.0044670105, -0.016357422, -0.010215759, 0.011604309, 0.039642334, -0.0013332367, -0.024475098, 0.041870117, 0.0018854141, -0.024627686, 0.027191162, 0.02017212, -0.0030574799, 0.011650085, 0.023040771, -0.02381897, -0.032043457, 0.03125, -0.050750732, -0.02230835, 0.019699097, -0.013191223, -0.008682251, 0.0128479, -0.004261017, -0.034729004, 0.0017490387, -0.010124207, -0.020721436, -0.0041503906, 0.01953125, 0.01953125, 0.012962341, -0.025512695, -0.030715942, -0.001253128, -0.05203247, -0.027908325, -0.021759033, 0.023956299, 0.014877319, 0.039215088, -0.06616211, 0.044952393, -0.025772095, -0.01474762, 0.019821167, -0.00818634, -0.12841797, -0.022979736, 0.009094238, 0.023391724, 0.0022583008, 0.017456055, 0.06427002, -0.04168701, -0.03665161, -0.03225708, 0.041168213, -0.019104004, 0.00566864, 0.029220581, 0.08105469, -0.007904053, 0.047821045, -0.0129776, -0.039611816, -0.0058555603, 0.0052871704, -0.055603027, -0.012916565, -0.0146865845, 0.011253357, -0.011306763, -0.015716553, 0.029312134, 0.055725098, 0.036315918, -0.0034599304, -0.01852417, -0.019577026, -0.005405426, 0.011894226, 0.033203125, 0.02168274, -0.040802002, -0.0054855347, -0.015716553, 0.008338928, 0.062286377, 0.018249512, 0.038635254, 0.031021118, -0.008956909, 0.0070533752, 0.018600464, -0.058776855, 0.053222656, -0.010482788, -0.025466919, -0.0059890747, 0.051940918, 0.008415222, 0.05984497, -0.016998291, -0.018661499, -0.0006132126, 0.024841309, 0.039276123, -0.01058197, -0.005458832, -0.032836914, 0.031219482, 0.023483276, 0.035949707, 0.0042266846, 0.019638062, 0.025054932, -0.019958496, 0.017410278, 0.06774902, -0.010246277, -0.01838684, -0.011489868, -0.028671265, 0.004673004, -0.011695862, 0.029388428, 0.018066406, -0.012062073, 0.022583008, -0.0014591217, 0.014083862, 0.0087509155, 0.01550293, -0.024230957, -0.02532959, 0.041809082, -0.043823242, -0.013442993, -0.012435913, -0.035888672, 0.032348633, 0.04812622, -0.03289795, 0.021835327, -0.0020122528, 0.03555298, 0.046966553, -0.09429932, 0.02418518, -0.0010175705, -0.013748169, 0.0015954971, -0.056274414, -0.0030555725, 0.0002784729, -0.037963867, -0.016326904, 0.046691895, 0.024398804, 0.0011034012, 0.010231018, 0.011772156, -0.03378296, -0.029418945, 0.009140015, -0.046142578, 0.0015258789, 0.01638794, -0.051239014, -0.01838684, 0.0054740906, -0.040008545, 0.0037136078, -0.03314209, 0.02720642, -0.01727295, 0.030776978, -0.030548096, -0.03302002, 0.008712769, 0.021514893, -0.01739502, -0.018493652, -0.00642395, -0.0033855438, 0.004333496, -0.031585693, 0.007774353, -0.02293396, 0.008956909, 0.021652222, 0.015640259, 0.0071868896, 0.050964355, -0.0027580261, 0.008834839, 0.025222778, 0.023071289, 0.035858154, 0.045776367, 0.015426636, 0.056610107, 0.033111572, 0.012123108, 0.005054474, 0.055480957, -0.051361084, -0.030883789, -0.0102005005, -0.007965088, -0.00484848, -0.009468079, -0.009346008, 0.00894928, -0.017578125, 0.040893555, -0.012962341, 0.006187439, -0.02154541, 0.02243042, -0.0423584, -0.015571594, 0.023727417, -0.005554199, -0.027770996, 0.015686035, 0.013244629, -0.036102295, -0.010749817, -0.008850098, -0.0067481995, 0.0021648407, -0.032165527, -0.009521484, -0.0015296936, -3.6656857e-05, -0.06677246, -0.009475708, -0.016723633, 0.00970459, -0.003271103, 0.059661865, -0.006252289, -0.01927185, -0.07867432, -0.0011854172, -0.04849243, 0.018798828, 0.0040130615, 0.01979065, 0.034851074, 0.008178711, 0.030212402, 0.036895752, 0.017715454, -0.004070282, -0.005077362, -0.04827881, -0.05026245, 0.099121094, 0.025527954, -0.04144287, -0.007549286, 0.05709839, 0.017456055, -0.0033798218, 0.046295166, 0.0077400208, -0.11077881, -0.040283203, -0.058410645, 0.02494812, 0.0037517548, 0.019256592, -0.020965576, 0.0032806396, -0.035217285, -0.0035438538, -0.014823914, -0.0093688965, 0.027313232, 0.0014619827, 0.023132324, -0.00198555, -0.0647583, -0.03527832, -0.019424438, -0.00022470951, -0.0037670135, -0.0099487305, 0.015945435, 0.009666443, -0.025604248, -0.004764557, 0.012878418, -0.0020427704, 0.014961243, 0.0034046173, -0.025482178, -0.026123047, -0.010124207, -0.0038166046, 0.029205322, -0.037384033, 0.018997192, 0.04534912, -0.023773193, 0.009468079, -0.00932312, 0.015655518, 0.026977539, 0.0017566681, -0.007270813, -0.022918701, -0.015594482, 0.047729492, -0.00472641, 0.030975342, -0.050628662, -0.022369385, 0.0039024353, 0.037109375, 0.004180908, 0.034576416, -0.0002539158, 0.05911255, -0.0029354095, 0.08306885, -0.0309906, -0.030136108, -0.043426514, 0.024627686, -0.0052871704, 0.025344849, 0.04559326, -0.00045847893, 0.018417358, 0.029296875, -0.018463135, 0.0020618439, 0.0049209595, 0.044067383, -0.019134521, 0.012786865]}, "B01N8WLXO6": {"id": "B01N8WLXO6", "original": "Brand: Napoleon\nName: Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 304 stainless steel construction and chrome accents\nHeavy duty stainless steel \"Wave\" grill grates and dual level sear plates with internal halogen lights\n(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker\n18,000 BTU rear infrared burner and rotisserie kit included\n", "metadata": {"Name": "Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas", "Brand": "Napoleon", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 304 stainless steel construction and chrome accents\nHeavy duty stainless steel \"Wave\" grill grates and dual level sear plates with internal halogen lights\n(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker\n18,000 BTU rear infrared burner and rotisserie kit included", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0127334595, 0.0031738281, -0.021514893, 0.0446167, -0.02357483, -0.02229309, 0.0146102905, -0.0289917, -0.025131226, -0.017700195, -0.03363037, 0.02394104, -0.06512451, -0.029800415, 0.030075073, -0.05126953, 0.027816772, 0.00039863586, 0.00920105, -0.020812988, -0.012413025, -0.0057640076, 0.02720642, 0.07550049, 0.035980225, -0.020050049, 0.020324707, 0.0017127991, 0.05834961, 0.019729614, 0.02822876, -0.044769287, 0.030975342, 0.01777649, -0.0118637085, -0.0044670105, -0.01927185, 0.0013780594, -0.0029468536, 0.01574707, 0.009307861, 0.008766174, -0.041137695, -0.009613037, -0.055145264, -0.014633179, 0.015548706, 0.029449463, -0.005897522, -0.010116577, 0.038482666, -0.015350342, 0.05026245, 0.020553589, -0.034088135, -0.016479492, -0.037475586, 0.0021743774, 0.015853882, -0.0016403198, -0.005218506, -0.023498535, 0.030517578, 0.0102005005, -0.032806396, 0.015838623, 0.11047363, -0.027435303, -0.050476074, -0.0602417, 0.038330078, 0.003818512, -0.012023926, -0.016723633, -0.032470703, -0.010292053, 0.022872925, -0.02619934, 0.0019464493, -0.00070905685, 0.02670288, 0.020996094, 0.025924683, -0.007904053, -0.014808655, -0.0044898987, -0.01512146, -0.015174866, -0.037750244, -0.027908325, -0.024414062, -0.0067443848, -0.0814209, 0.050231934, 0.0042419434, 0.012229919, -0.037872314, -0.028930664, 0.032165527, 0.04925537, 0.018310547, -0.0390625, 0.05041504, -0.027832031, -0.015602112, 0.099975586, 0.017242432, 0.055999756, 0.002544403, -0.0022773743, 0.018661499, -0.05670166, 0.009460449, -0.0501709, -0.009292603, 0.028671265, 0.0023937225, -0.00484848, 0.019561768, -0.03173828, -0.03302002, -0.0019416809, 0.013626099, 0.0262146, 0.03427124, 0.06738281, 0.024108887, -0.027267456, -0.04977417, 0.053527832, -0.009605408, -0.015045166, 0.040771484, 0.056762695, 0.010093689, -0.025527954, 0.044677734, -0.0146865845, 0.01121521, -0.002483368, 0.033294678, -0.0027217865, 0.0055122375, 0.02029419, -0.03527832, -0.02130127, 0.01701355, 0.032440186, 0.00434494, -0.030517578, -0.01424408, 0.04663086, 0.041931152, 0.00020861626, -0.04019165, -0.0021266937, -0.04824829, 0.0031089783, -0.016525269, 0.0031089783, -0.03262329, -0.021850586, 0.0078125, -0.020401001, -0.026931763, 0.029464722, 0.035980225, 0.0129470825, 0.022964478, 0.020248413, -0.029388428, -0.024673462, 0.049346924, 0.008346558, -0.025268555, 0.03665161, 0.0053596497, 0.01902771, 0.04928589, -0.064697266, -0.06970215, -0.045166016, 0.096069336, -0.053588867, 0.017288208, -0.008483887, 0.00447464, 0.0056877136, 0.022094727, 0.026519775, -0.051330566, -0.002319336, -0.022033691, 0.0017490387, 0.020812988, -0.022018433, -0.028778076, -0.027038574, -0.016143799, 0.013496399, -0.012260437, 0.04058838, -0.023635864, 0.0135269165, -0.025665283, 0.007598877, 0.0007996559, 0.025604248, -0.0026836395, 0.022781372, -0.010887146, 0.010246277, 0.0155181885, -0.060913086, -0.015396118, 0.051635742, -0.047729492, 0.028213501, 0.0046424866, 0.05657959, 0.0074386597, 0.009017944, 0.011924744, -0.041748047, 0.00944519, -0.011131287, -0.006839752, 0.0019874573, 0.03488159, -0.0069007874, 0.033843994, -0.0030555725, 0.0579834, 0.07305908, 0.0028057098, 0.023635864, 0.029205322, -0.0004105568, -0.027435303, 0.0022735596, 0.008857727, -0.025802612, -0.019073486, 0.010787964, 0.024414062, 0.033843994, 0.025772095, -0.006084442, -0.031036377, -0.009101868, 0.0340271, 0.016738892, 0.026031494, 0.036621094, -0.007041931, 0.030960083, 0.033294678, 0.04824829, -0.012107849, 0.0121154785, -0.003326416, 0.10491943, 0.016662598, 0.044158936, 0.032714844, 0.012756348, 0.022369385, 0.033599854, -0.05947876, 0.023117065, 0.030151367, 0.045196533, -0.0011911392, 0.01574707, -0.02684021, -0.01084137, -0.04083252, 0.031341553, -0.0032463074, -0.008636475, 0.0158844, -0.05105591, 0.014175415, -0.0024280548, 0.08178711, 0.0011672974, 0.028076172, -0.0020637512, -0.060913086, -0.054229736, -0.0054969788, -0.009529114, -0.03353882, -0.0041770935, 0.023925781, -0.022384644, 0.014785767, 0.0014972687, 0.011230469, -0.0287323, 0.02229309, 0.040405273, -0.035461426, 0.011947632, 0.0016050339, -0.017715454, -0.008865356, 0.026687622, 0.0012149811, -0.0340271, 0.025436401, 0.06817627, 0.03488159, -0.002943039, 0.054107666, 0.019332886, 0.010566711, 0.050079346, 0.05154419, 0.026397705, -0.06109619, 0.010925293, -0.018508911, -0.033203125, 0.02130127, 0.025024414, -0.06585693, 0.009971619, -0.029266357, -0.0051460266, 0.015602112, -0.06149292, -0.025817871, -0.026321411, 0.0033435822, 0.007091522, 0.0024757385, 0.008094788, -0.012794495, -0.0703125, -0.007221222, -0.000385046, -0.0107421875, -0.001912117, -0.044708252, 0.017837524, 0.02973938, 0.012786865, -0.020812988, 0.00016891956, 0.0069732666, -0.041748047, -0.012428284, -0.038757324, -0.008308411, 0.015571594, -0.0021343231, -0.022781372, 0.0037155151, -0.06298828, 0.017211914, -0.029785156, -0.039520264, -0.029449463, 0.04272461, 0.006549835, -0.029449463, -0.024337769, -0.0098724365, 0.030288696, 0.01247406, 0.00617218, -0.035491943, -0.029220581, -0.034576416, 0.004108429, 0.027694702, -0.029174805, -0.00071144104, 0.006538391, 0.01890564, 0.024932861, 0.0047073364, -0.0013618469, 0.013954163, 0.0107803345, -0.020126343, -0.021347046, 0.02822876, -0.0029335022, 0.020263672, 0.013832092, -0.021514893, -0.023986816, 0.020523071, 0.014259338, -0.03086853, -0.0066223145, -0.042877197, -0.010261536, -0.049713135, 0.005844116, -0.0046806335, -0.022903442, 0.0039138794, -0.09436035, -0.03466797, -0.039916992, 0.01109314, 0.031433105, 0.0074005127, -0.043670654, -0.005279541, -0.050201416, -0.0038280487, 0.003730774, 0.018844604, 8.684397e-05, 0.019241333, -0.057739258, -0.0012578964, 0.007904053, 0.0028190613, 0.0027770996, -0.034484863, 0.03250122, -0.022842407, 0.015571594, 0.0014629364, 0.03036499, 0.014411926, -0.0048103333, 0.01838684, 0.041107178, -0.010848999, 0.05102539, -0.011039734, -0.025100708, 0.04425049, -0.051849365, -0.04522705, -0.012199402, 0.034729004, 0.02381897, -0.013679504, 0.018722534, 0.0071105957, -0.038116455, -0.010612488, -0.059417725, -0.0031356812, -0.007507324, 0.033325195, 0.025619507, 0.011177063, 0.12487793, 0.01838684, 0.027877808, 0.013442993, 0.03378296, -0.011100769, -0.038970947, 0.095703125, -0.00034499168, 0.03314209, -0.0061683655, -0.028076172, -0.0010957718, -0.0602417, 0.049041748, 0.019012451, -0.008972168, -0.0056419373, -0.01158905, -0.023834229, -0.016036987, 0.040374756, 0.0027751923, 0.009292603, -0.02279663, -0.06506348, 0.013542175, -0.06121826, 0.0848999, 0.06488037, -0.021881104, 0.10839844, 0.055389404, 0.026626587, 0.0690918, 0.049865723, 0.000849247, 0.018798828, 0.08319092, 0.010658264, 0.008544922, 0.018707275, -0.04421997, -0.008110046, -0.022567749, -0.019058228, 0.02130127, 0.00094652176, -0.0046081543, -0.023834229, 0.04107666, -0.012664795, -0.03488159, -0.013763428, -0.073913574, -0.023376465, -0.080078125, 0.009094238, 0.009056091, -0.031066895, -0.06555176, 0.027786255, -0.026016235, -0.052093506, 0.025253296, -0.028213501, -0.019165039, -0.0137786865, 0.030258179, 0.0039863586, 0.01828003, -0.05279541, 0.029312134, -0.0446167, 0.005317688, 0.02571106, 0.044036865, 0.00856781, -0.022460938, -0.0061149597, -0.023071289, -0.0036258698, 0.013374329, -0.016906738, -0.04776001, 0.0039405823, 0.028686523, 0.0049972534, -0.020477295, 0.005443573, -0.02178955, 0.0071640015, -0.0026073456, -0.035125732, -0.022644043, -0.0064697266, 0.0055503845, -0.020828247, -0.015838623, -0.0124435425, -0.058135986, -0.03387451, -0.01210022, 0.008216858, 0.038146973, 0.021499634, 0.011550903, -0.03314209, -0.017929077, -0.028411865, 0.006843567, 0.016311646, -0.017578125, 0.06732178, -0.066467285, -0.009689331, -0.027633667, 0.09820557, 0.008399963, 0.027053833, -0.00969696, -0.03668213, -0.019805908, 0.02911377, 0.0670166, -0.021621704, 0.046722412, -0.03414917, -0.027114868, -0.02166748, 0.0079574585, 0.031585693, -0.028167725, -0.008377075, 0.0025196075, 0.024520874, -0.019241333, 0.011314392, -0.0035514832, 0.003227234, -0.0027275085, -0.022613525, -0.060272217, 0.027389526, 0.009002686, 0.022354126, 0.025619507, 0.0010080338, -0.0052871704, -0.013389587, 0.0236969, 0.04800415, -0.015464783, -0.00036883354, -0.025314331, 0.013534546, 0.016784668, -0.02331543, 0.022857666, -0.012748718, -0.04446411, -0.03918457, 0.08898926, 0.031921387, 0.018234253, 0.013664246, 0.0024356842, 0.020462036, -0.072753906, -0.007904053, -0.06536865, -0.02760315, -0.05407715, -0.013748169, 0.029510498, -0.009178162, 0.024368286, -0.006690979, 0.023956299, 0.028259277, -0.039367676, -0.0005726814, -0.016113281, 0.008483887, 0.028137207, -0.0033302307, 0.0006108284, 0.0035533905, -0.0725708, 0.0423584, -0.053344727, -0.03552246, 0.037841797, -0.020523071, -0.03277588, 0.016830444, 0.000957489, -0.010299683, 0.015686035, 0.00035238266, 0.02079773, -0.03451538, -0.008346558, 0.03741455, -0.015007019, -0.053527832, 0.033081055, -0.024673462, 0.0105896, 0.020355225, -0.007255554, 0.047973633, 0.053497314, -0.026992798, 0.020446777, 0.035583496, -0.022338867, 0.026000977, -0.009239197, -0.0075302124, -0.06149292, 0.05380249, -0.015205383, -0.0020637512, -0.07232666, -0.0058517456, 0.016952515, 0.04937744, 0.010787964, -0.05429077, 0.018295288, -0.025100708, -0.0045204163, 0.007534027, 0.021087646, -0.0076828003, 0.0026130676, 0.0023880005, -0.029067993, -0.02142334, -0.016098022, -0.02734375, -0.018005371, -0.0018148422, -0.008277893, -6.425381e-05, 0.0009012222, -0.0006670952, -0.028533936, 0.013374329, 0.027557373, -0.03994751, 0.013496399, -0.0039749146, 0.0018920898, 0.020111084, 0.028045654, -0.008895874, -0.0042648315, -0.022842407, 0.00045275688, 0.015312195, -0.003610611, -0.008056641, 0.039123535, -0.01928711, 0.006515503, 0.00806427, -0.013946533, -0.00013160706, -0.0037212372, -0.04269409, -0.00793457, 0.0181427, 0.035614014, -0.024139404, -0.007820129, 0.056365967, -0.04727173, -0.012763977, -0.089538574, 0.0018043518, 0.00056123734, -0.05908203, 0.05606079, -0.009986877, -0.0010290146, 0.0029640198, -0.019012451, -0.053649902, 0.01663208, 0.0038070679, -0.091796875, -0.014465332, -0.02532959, -0.002357483, 0.014732361, -0.011909485, -0.014633179, 0.032409668, -0.023956299, -0.053771973, -0.0029735565, -0.0019521713, 0.012413025, 0.005207062, 0.012184143, -0.0056114197, 0.017547607, -0.03842163, 0.027999878, -0.03717041, -0.04840088, 0.034240723, 0.034240723, 0.013557434, -0.0048561096, 0.0007967949, 0.013183594, -0.046142578, 0.0637207, -0.010406494, 0.01423645, 0.017333984, 0.031951904, -0.021820068, 0.0736084, -0.07043457, -0.009399414, 0.004875183, -0.025482178, 0.025009155, -0.0045394897, -0.01084137, 0.007598877, 0.02154541, 0.026565552, 0.016784668, 0.02079773, 0.011024475, -0.03414917, -0.0317688, 0.00079107285, 0.007881165, -0.036346436, -0.044769287, -0.026168823, 0.0069770813, 0.03164673, 0.00081920624, 0.0016593933, 0.01537323, 0.022369385, 0.009544373, -0.00687027, 0.011657715, 0.009536743, 0.0107421875, -0.0005569458, -0.055267334, 0.02645874, -0.0029697418, -0.020690918, 0.01927185, 0.022628784, -0.003446579, 0.024505615, 0.028945923, 0.015411377, -0.036956787, 0.029830933, 0.008140564, -0.034179688, -0.014823914, 0.0033893585, 0.027679443, -0.0067214966, -0.03427124, -0.0030441284, -0.014015198, 0.009933472, 0.00868988, 0.0006518364, 0.030776978, 0.012290955, -0.043670654, -0.006832123, -0.03237915, -0.023544312, -0.03250122, 0.018661499, 0.018569946, 0.012420654, -0.006378174, 0.008583069, 0.047210693, -0.044067383, 0.032104492, -0.02053833, 0.016677856, -0.06677246, 0.038208008, -0.010902405, -0.020889282, -0.031555176, -0.0019207001, 0.047424316, 0.03729248, -0.031951904, 0.02772522, 0.0035572052, -0.026687622, 0.04144287, -0.031463623, 0.047943115, 0.031921387, -0.00020229816, -0.03994751, -0.013198853, -0.011054993, -0.018966675, 0.018997192, 0.01737976, -0.0017957687, 0.0076789856, -0.028411865, 0.021133423, 0.041046143, -0.016311646, 0.03164673, -0.0345459, 0.002653122, 0.036499023, 0.025222778, 0.0046043396, -0.012489319, -0.0028133392, 0.0058937073, 0.010826111, 0.049591064, 0.0463562, 0.01701355, 0.0072746277, 0.017364502, -0.07751465, 0.03668213, -0.0010929108, 0.046783447, -0.016860962, 0.01335907, -0.021438599, -0.03894043, -0.03753662, -0.019622803, -0.037902832, 0.04827881, 0.019622803, -0.029327393, -0.02243042, 0.002527237, 0.032958984, -0.048919678, -0.007598877, 0.006160736, 0.017028809, -0.010498047, 0.07824707, -0.06994629, -0.0725708, -0.05444336, 0.04776001, -0.14086914, -0.037902832, 0.015731812, -0.009132385, 0.00019919872, -0.033325195, -0.043273926, 0.047088623, 0.028884888, -0.026611328, 0.012374878, 0.003709793, -0.012290955, 0.013679504, 0.009597778, -0.020645142, -0.017410278, -0.0011100769, -0.010505676, 0.023147583, 0.0049438477, -0.0064849854, 0.00289917, 0.036956787, 0.04348755, -0.02255249, -0.023925781, -0.013542175, -0.017364502, -0.023239136, -0.064941406, -0.06555176, 4.965067e-05, 0.055511475, 0.016174316, 0.022949219, 0.04360962, -0.018508911, -0.06549072, -0.03491211, -0.035095215, 0.023254395, 0.021713257, 0.002840042, 0.0035419464, 0.011642456, -0.006816864, -0.0064735413, 0.008026123, -0.00046753883, -0.013977051, -0.009239197, -0.00756073, -0.020263672, 0.009735107, 0.018478394, -0.0143966675, -0.008117676, 0.019958496, 0.002313614, -0.0071029663, -0.009986877, -0.016098022, -0.0059776306, 0.0009469986, -0.004814148, 0.022644043, -0.022659302, 0.00554657, 0.011634827, 0.018493652, 0.021270752, 0.015022278, -0.05114746, -0.018203735, 0.013198853, 0.033691406, 0.018875122, -0.061950684, 0.043640137, 0.010055542, 0.019195557, -0.032043457, -0.07672119, -0.053131104, 0.02748108, 0.013290405, 0.006134033, 0.048950195, -0.0025959015, 0.006538391, -0.0039634705, -0.051239014, -0.019699097, 0.008415222, 0.023132324, -0.037628174, 0.01713562]}, "B08SVXLXZT": {"id": "B08SVXLXZT", "original": "Brand: SXTBWFY\nName: SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men\nDescription: Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
      Grilling in one of life\u2019s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone's inner grill master.
      Enjoy every BBQ party.

      Product details:
      Tools Material: Food-grade Stainless Steel
      Storage Case Material: Oxford Cloth
      Package size\uff1a15.8 \u00d7 5 \u00d7 2 inches
      Product weight: 2.2 pounds
      Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

      Warm Notice:
      Store your bbq tools properly and keep sharp or metal tools away from children.
      In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

      \nFeatures: \ud83c\udf56\u3010Valuable 23 Barbecue Accessories Set\u3011This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue.\n\ud83c\udf56\u3010Premium Stainless Steel Material\u3011Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob.\n\ud83c\udf56\u3010Intimate Design\u3011All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill.\n\ud83c\udf56\u3010Portable and Versatile\u3011The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father\u2019s day grilling gifts or special gift for your family and friend.\n\ud83c\udf56\u3010Hassle-free Customer Service\u3011We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!\n", "metadata": {"Name": "SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men", "Brand": "SXTBWFY", "Description": "Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
      Grilling in one of life\u2019s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone's inner grill master.
      Enjoy every BBQ party.

      Product details:
      Tools Material: Food-grade Stainless Steel
      Storage Case Material: Oxford Cloth
      Package size\uff1a15.8 \u00d7 5 \u00d7 2 inches
      Product weight: 2.2 pounds
      Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

      Warm Notice:
      Store your bbq tools properly and keep sharp or metal tools away from children.
      In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

      ", "Features": "\ud83c\udf56\u3010Valuable 23 Barbecue Accessories Set\u3011This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue.\n\ud83c\udf56\u3010Premium Stainless Steel Material\u3011Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob.\n\ud83c\udf56\u3010Intimate Design\u3011All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill.\n\ud83c\udf56\u3010Portable and Versatile\u3011The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father\u2019s day grilling gifts or special gift for your family and friend.\n\ud83c\udf56\u3010Hassle-free Customer Service\u3011We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012825012, 0.006916046, -0.048461914, -0.008178711, 0.0044174194, -0.006427765, 0.014465332, 0.009635925, -0.037872314, 0.016235352, 0.028671265, 0.0093688965, 0.0078125, -0.033477783, 0.026046753, -0.013824463, 0.004058838, 0.02470398, 0.011268616, -0.028259277, -0.0019445419, -0.024765015, -0.022262573, 0.06188965, 0.070617676, -0.04437256, -0.008613586, -0.0012044907, 0.05508423, 0.008529663, 0.048797607, -0.0063591003, 0.01977539, 0.02670288, -0.010475159, -0.007709503, -0.028717041, 0.012084961, 0.0056152344, 0.0014381409, 0.0027580261, -0.0011310577, -0.031555176, 0.009513855, -0.019256592, -0.036712646, 0.01878357, -0.035705566, 0.030029297, 0.012954712, 0.00491333, 0.00869751, 0.0002861023, -0.03326416, -0.015853882, -0.0032138824, -0.026565552, -0.011680603, 0.022659302, 0.019439697, -0.0010852814, -0.01838684, 0.012176514, -0.020507812, -0.024597168, -0.017974854, 0.07574463, 0.0037612915, -0.041534424, -0.041168213, 0.035064697, 0.0069732666, 0.0033130646, -0.0082092285, 0.010826111, -0.04598999, -0.011009216, -0.024627686, 0.009170532, 0.03894043, -0.03543091, -0.054229736, 0.016677856, -0.052612305, 0.01966858, -0.012992859, -0.016952515, 0.014564514, 0.012756348, -0.0047035217, 0.0025901794, -0.015052795, -0.01826477, 0.08465576, 0.013870239, 0.004776001, -0.018600464, -0.01651001, 0.0052871704, 0.014137268, 0.026870728, -0.019088745, 0.030761719, -0.021591187, -0.019699097, 0.027145386, -0.01197052, -0.0046195984, -0.014137268, 0.029693604, -0.031051636, -0.040130615, 0.018341064, -0.021972656, -0.0134887695, 0.035949707, 0.017852783, -0.0095825195, 0.0053749084, -0.02128601, -0.03894043, -0.022277832, 0.0016889572, -0.004814148, 0.061035156, 0.059387207, -0.0006041527, 0.013282776, -0.031341553, 0.025939941, -0.04638672, 0.010391235, 0.043426514, 0.023986816, 0.004966736, -0.031921387, 0.02822876, -0.029510498, -0.009025574, 0.020904541, -0.01878357, -0.008995056, 0.0077552795, -0.03753662, -0.009521484, -0.04449463, 0.026565552, 0.08087158, -0.016464233, -0.018157959, 0.0713501, 0.029693604, 0.04626465, 0.008277893, -0.064941406, -0.027633667, -0.0066566467, -0.028945923, -0.02255249, -0.071899414, -0.042877197, -0.02456665, 0.028274536, -0.0262146, -0.042022705, 0.039031982, -0.008239746, -0.017562866, 0.0030231476, 0.004508972, 0.004005432, 0.017333984, -0.017654419, -0.014518738, 0.008728027, -0.018844604, -0.008834839, 0.070129395, 0.05480957, -0.07965088, -0.047088623, -0.049804688, 0.107299805, -0.033477783, -0.00043797493, -0.027008057, 0.005153656, -0.00881958, 0.017684937, 0.004676819, -0.027191162, -0.0056114197, -0.07299805, 0.030075073, 0.011070251, 0.047729492, -0.030838013, 0.033813477, 0.012214661, -0.06665039, 0.012268066, -0.018325806, 0.03274536, -0.032409668, -0.011299133, -0.019332886, 0.00029087067, 0.013366699, -0.008911133, 0.009521484, 0.019042969, -0.008888245, -0.004585266, -0.042907715, -0.025558472, 0.015380859, 0.0017471313, 0.023773193, 0.00920105, -0.004108429, 0.03857422, -0.02633667, 0.028945923, 0.036987305, 0.01550293, 0.0011482239, -0.02166748, 0.0047721863, 0.023254395, 0.01939392, -0.023712158, -0.008125305, 0.04019165, 0.05239868, -0.03213501, 0.029159546, 0.031463623, 0.068115234, -0.026306152, -0.0093307495, 0.023788452, 0.023849487, -0.015335083, -0.011054993, 0.027740479, 0.00894165, 0.029205322, -0.028793335, -0.0041885376, 0.016342163, -0.015930176, 0.016540527, 0.034332275, 0.015312195, -0.020629883, 0.038208008, -0.08886719, -0.02053833, -0.04119873, 0.033355713, -0.016082764, -0.0060920715, 0.06915283, -0.03250122, 0.074035645, -0.013824463, 0.047302246, 0.023834229, -0.020767212, 0.012367249, -0.0023460388, -0.043060303, 0.013504028, 0.0065193176, -0.0010251999, -0.06817627, -0.018203735, 0.0043296814, 0.0064430237, -0.022354126, 0.023117065, 0.05834961, 0.07397461, -0.008430481, 0.016357422, 0.007537842, 0.026016235, 0.0002808571, -0.072143555, -0.05718994, -0.013519287, 0.012199402, -0.028533936, -0.033935547, 0.0049591064, -0.0317688, 0.024841309, 0.05822754, -0.0055122375, 0.0039596558, -0.0063056946, 0.02645874, -0.057525635, 0.039123535, -0.015426636, 0.002828598, -0.02760315, 0.011161804, 0.011520386, -0.06173706, 0.033355713, 0.040863037, 0.021133423, -0.009666443, 0.054351807, 0.017822266, 0.0064888, 0.060668945, 0.048614502, 0.03149414, -0.007987976, -0.02796936, -0.004753113, -0.00036907196, -0.005218506, 0.006755829, 0.006198883, 0.0014982224, -0.0038776398, 0.026641846, 0.03173828, 0.031311035, 0.010665894, 0.016921997, -0.0076408386, -0.0020885468, -0.014694214, -0.030822754, -0.03366089, 0.008735657, 0.0030612946, -0.049438477, 0.03677368, -0.018936157, -0.036956787, 0.005760193, 0.03427124, 0.011238098, 0.020141602, 0.011917114, -0.013214111, -0.022155762, 0.024475098, 0.0049057007, 0.0011768341, 0.026931763, -0.028686523, -0.0126571655, -0.022140503, -0.0602417, -0.017074585, 0.02255249, -0.022918701, 0.0181427, -0.0048713684, -0.014961243, 0.015434265, 0.03024292, 0.013748169, 0.01235199, 0.019515991, 0.034484863, -0.025924683, -0.03668213, -0.028686523, -0.026733398, 0.013633728, -0.04812622, -0.035217285, -0.012878418, -0.04989624, 0.012908936, -0.0013742447, 0.08325195, 0.012664795, 0.02961731, 0.015991211, 0.057250977, -0.011741638, -0.023483276, 0.0010967255, 0.057617188, -0.078308105, -0.012313843, -0.005874634, 0.015052795, 0.042877197, -0.0619812, 0.0077705383, -0.053253174, -0.05532837, 0.0135269165, -0.005657196, -0.026885986, 0.001502037, -0.072021484, -0.032806396, -0.0340271, -0.013366699, 0.027175903, -0.021453857, 0.020645142, -0.06384277, 0.03970337, 0.011917114, -0.05328369, 0.044952393, -0.012458801, 0.043640137, -0.057525635, 0.014961243, -0.05822754, 0.0368042, 0.0317688, -0.023345947, -0.0051345825, 0.04458618, 0.026443481, 0.022018433, 0.03161621, 0.021759033, -0.0287323, 0.0061302185, 0.00944519, -0.055999756, -0.021148682, 0.007171631, -0.026672363, 0.06451416, -0.05999756, 0.005027771, 0.02545166, -0.012062073, 0.037597656, -0.013015747, -0.018692017, 3.3974648e-06, -0.013160706, -0.01675415, -0.014465332, -0.023880005, 0.022079468, 0.0385437, 0.026550293, -0.006801605, 0.02305603, 0.052734375, 0.020553589, 0.036865234, -0.044799805, -0.06994629, -0.03265381, 0.023590088, -0.022018433, 0.035095215, -0.06921387, 0.031341553, -0.011276245, -0.0067100525, 0.016799927, -0.0069084167, 0.041046143, -0.007873535, 0.0017623901, 0.037719727, 0.019058228, -0.013496399, 0.037750244, -0.07165527, -0.014076233, -0.03451538, -0.023590088, -0.08251953, 0.073791504, 0.052886963, -0.024475098, 0.056854248, 0.06414795, -0.01777649, 0.010848999, 0.023864746, 0.006225586, 0.020858765, 0.027755737, -0.009757996, -0.010108948, 0.0014982224, 0.012626648, 0.03527832, 0.011108398, -0.028747559, 0.016906738, 0.038391113, -0.051940918, 0.0036201477, 0.03717041, 0.032409668, 0.025665283, 0.0057411194, -0.038208008, 0.03173828, -0.03036499, 0.034423828, 0.020095825, -0.015731812, 0.0018663406, -0.0007162094, -0.0041656494, -0.03744507, 0.0039405823, -0.022644043, 0.0079193115, 0.018859863, 0.022247314, 0.008033752, -0.014640808, 0.008140564, 0.027420044, -0.016159058, 0.012878418, 0.019104004, 0.0036125183, 0.009811401, -0.009231567, 0.035491943, 0.002319336, -0.026260376, -0.00010108948, -0.014732361, -0.041625977, 0.0018911362, 0.02670288, -0.026916504, 0.0039024353, 0.024932861, -0.046875, -0.0015306473, -0.022720337, -0.017959595, -0.016052246, -0.037017822, -0.02067566, -0.08203125, 0.0068206787, 0.025039673, -0.05758667, -0.088378906, 0.032318115, -0.015151978, -0.030792236, -0.021224976, 0.02381897, -0.041778564, -0.0009379387, -0.030822754, -0.010673523, 0.059295654, 0.035217285, -0.0129776, -0.00554657, -0.014839172, 0.019119263, 0.06347656, -0.033233643, 0.018127441, -0.07067871, -0.0031795502, -0.010025024, 0.04977417, 0.085998535, -0.0030021667, 0.062683105, -0.019439697, 0.011222839, -0.036621094, 0.017425537, 0.01689148, -0.06036377, -0.031341553, -0.024856567, 0.030960083, 0.008453369, 0.010246277, -0.028793335, 0.011230469, -0.0132369995, -0.0041007996, -0.028656006, -0.006706238, 0.020217896, -0.039245605, -0.0032672882, -0.016418457, -0.0033302307, 0.08215332, 0.026947021, 0.0003657341, -0.028869629, -0.021148682, -0.055847168, 0.026763916, 0.01525116, -0.04284668, 0.028640747, -0.06341553, 0.0045928955, -0.06921387, 0.11853027, 0.0748291, -0.03756714, 0.0041122437, -0.007774353, -0.043670654, -0.022628784, 0.0042800903, -0.0066452026, -0.015403748, 0.0007624626, -0.019119263, -0.008834839, -0.024673462, -0.0141067505, -0.02784729, 0.0020389557, -0.008079529, -0.01763916, 0.0042419434, -0.03366089, -0.0038585663, -0.010643005, 0.011383057, 0.017440796, -0.021469116, 0.0035762787, 0.024841309, -0.0031814575, 0.0018796921, -0.00078105927, -0.008628845, -0.03652954, 0.009780884, -0.011917114, -0.074157715, -0.0039863586, 0.09527588, -0.05709839, 0.006061554, 0.03213501, -0.033233643, 0.011306763, -0.0035419464, 0.0038108826, -0.016616821, -0.0069503784, -0.0028800964, -0.057525635, 0.024215698, 0.0059814453, -0.030731201, 0.035888672, -0.025405884, -0.00019288063, 0.033996582, -0.029968262, -0.0051651, 0.009994507, -0.012771606, 0.0008869171, 0.0041046143, -0.027420044, -0.011711121, 0.032806396, 0.052520752, -0.014884949, -0.027267456, 0.044403076, 0.017288208, -0.027679443, 0.01852417, 0.03503418, -0.053894043, -0.0036296844, 0.027877808, -0.0038909912, -0.0284729, 0.03656006, 0.015365601, -0.044128418, -0.038726807, -0.047576904, 0.032958984, 0.0006146431, -0.0088272095, -0.02885437, -0.005153656, -0.0044174194, 0.0015945435, -0.021713257, -0.020568848, -0.010910034, -0.01675415, 0.02772522, -0.004211426, -0.0032806396, -0.010063171, -0.032287598, -0.03048706, -0.015350342, -0.029754639, 0.033325195, -0.03149414, -0.0063667297, 0.012809753, -0.022399902, 0.02067566, -0.0009198189, -0.039398193, -0.022018433, 0.0028533936, 0.005016327, -0.039398193, -0.0022239685, 0.083984375, -0.055358887, -0.05505371, -0.050933838, 0.038909912, -0.0099105835, -0.0013275146, 0.0423584, -0.0033912659, 0.010047913, 0.017364502, 0.013496399, -0.029083252, 0.029968262, 0.013679504, -0.039123535, 0.018066406, 0.0027160645, 0.019180298, 0.0013284683, 0.023666382, -0.035858154, 0.05480957, -0.034118652, -0.027420044, -0.042938232, 1.8894672e-05, -0.009407043, -0.02279663, 0.01876831, -0.015586853, -0.024810791, -0.0231781, -0.04171753, -0.008018494, 0.051605225, -0.005065918, 0.0473938, 0.025527954, -0.042236328, 0.0076828003, 0.05709839, -0.045837402, 0.07757568, 0.010604858, -0.029403687, 0.0015859604, -0.00018453598, -0.008811951, 0.013542175, -0.02017212, 0.027770996, -0.012512207, -0.0039405823, 0.02432251, -0.0060310364, 0.013023376, 0.020141602, 0.029403687, 0.0047836304, 0.034332275, -0.020950317, 0.021072388, 0.0146484375, -0.0073394775, -0.0010576248, 0.036224365, 0.0009803772, -0.01864624, -0.02998352, 0.02420044, 0.053497314, 0.0008111, 0.01713562, 0.005466461, 0.0692749, -0.021606445, -0.0051574707, 0.007537842, 0.0021324158, 0.043029785, -0.03967285, -0.049438477, -0.022903442, 0.019195557, 0.0073509216, -0.012023926, -0.013397217, 0.0017366409, 0.020874023, 0.018310547, 0.011199951, -0.008605957, -0.0041656494, 0.035705566, -0.025497437, 0.001253128, 0.017562866, 0.008422852, -0.015403748, -0.021102905, -0.0059928894, 0.012031555, 0.030914307, 0.0020866394, 0.024169922, -0.004081726, 0.023757935, 0.017044067, -0.0044555664, -0.02784729, 0.013587952, -0.05480957, -0.010620117, 0.009757996, 0.0073509216, -0.002193451, -0.010414124, 0.039855957, -0.043029785, -0.04260254, -0.008087158, 0.025146484, -0.0072135925, 0.0017757416, -0.019500732, -0.004611969, 0.005619049, -0.0057029724, 0.038238525, 0.0657959, 0.02746582, -0.03527832, 0.051696777, -0.042877197, 0.004348755, 0.042785645, 0.037231445, 0.042388916, 0.020095825, -0.036987305, -0.028671265, -0.01687622, -0.0073623657, -0.0077056885, 0.055541992, -0.0058135986, 0.011039734, 0.000111460686, 0.07019043, 0.072021484, 0.0067749023, 0.0546875, 0.02305603, -0.029800415, 0.01058197, 0.0032157898, -0.0021343231, -0.03677368, 0.0055770874, 0.014915466, 0.0028247833, 0.018508911, 0.0049591064, -0.004169464, -0.026107788, -0.018951416, -0.011352539, 0.000869751, -0.0055732727, 0.007534027, -0.05960083, -0.025177002, -0.032592773, -0.025268555, -0.0068740845, -0.025497437, -0.07312012, 0.036193848, -0.032287598, -0.015075684, -0.0057525635, -0.011161804, 0.02128601, -0.06185913, -0.008659363, -0.008003235, 0.077697754, 0.0046424866, 0.0791626, -0.038909912, -0.061798096, -0.06719971, 0.00028967857, -0.059692383, 0.011116028, -0.021972656, 0.02545166, 0.017990112, -0.01423645, 0.008979797, 0.081726074, 0.004383087, 0.012023926, -0.04437256, -0.06072998, -0.03314209, 0.07293701, -0.005268097, -0.010169983, -0.050933838, 0.036468506, -0.00055217743, 0.054992676, 0.0026054382, -0.032470703, -0.077697754, -0.028030396, -0.05117798, 0.02545166, -0.013244629, -0.017852783, 0.001739502, -0.0010404587, -0.047302246, -0.053497314, 0.006504059, -0.00044679642, 0.0050964355, 0.03125, 0.00039052963, -0.027923584, -0.028442383, 0.016418457, -0.014320374, 0.030914307, 0.02645874, -0.0026130676, -0.01991272, 0.039398193, -0.00818634, 0.03488159, 0.049713135, -0.015113831, 0.006313324, -0.008300781, 0.02230835, -0.029922485, 0.004699707, 0.0073242188, -0.021209717, -0.030975342, 0.010665894, 0.018875122, -0.01890564, 0.0059013367, -0.02029419, 0.0016927719, 0.016448975, 0.0011444092, 0.0033187866, -0.07342529, 0.0026283264, 0.039764404, -0.0040359497, 0.031707764, -0.015365601, -0.04660034, -0.038238525, -0.0023479462, 0.009063721, -0.019470215, -0.02848816, 0.039855957, 0.0234375, 0.08355713, -0.013442993, -0.036987305, -0.0524292, 0.05303955, -0.0021076202, -0.0068206787, 0.01272583, -0.020874023, 0.02053833, 0.022216797, -0.010025024, -0.049835205, 0.020904541, 0.060668945, 0.024459839, 0.02659607]}, "B000NWAO74": {"id": "B000NWAO74", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72\"L x 30\"D x 51\"H\nWEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "metadata": {"Name": "Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover", "Brand": "Classic Accessories", "Description": "", "Features": "THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72\"L x 30\"D x 51\"H\nWEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.024917603, 0.0025787354, -0.029022217, -0.0060577393, -0.009315491, 0.008705139, -0.0039405823, 0.02079773, -0.019989014, 0.014717102, 0.0087890625, 0.012557983, -0.004600525, -0.04147339, 0.0028076172, -0.008880615, 0.01991272, 0.026901245, 0.0009918213, -0.016967773, -0.004497528, -0.012794495, -0.015182495, 0.082458496, 0.050750732, -0.03479004, 0.01171875, 0.0060920715, 0.0546875, 0.028442383, 0.03552246, -0.049804688, 0.008972168, 0.029586792, -0.020645142, -0.0067977905, -0.0006942749, 0.00504303, -0.0021514893, 0.02444458, -0.0011138916, 0.0050697327, 0.025802612, 0.018081665, -0.0010585785, -0.042144775, 0.022445679, -0.03677368, 0.0385437, -0.0008597374, 0.017974854, 0.05230713, 0.014167786, -0.027755737, -0.0007801056, 0.011924744, -0.013542175, -0.03640747, 0.019470215, 0.0029964447, 0.006401062, -0.0134887695, 0.022476196, -0.0053215027, 0.013046265, -0.027313232, 0.0947876, 0.010009766, -0.048583984, -0.004535675, 0.048736572, 0.01725769, -0.004219055, -0.012306213, -0.012908936, -0.043518066, 0.0047416687, -0.051818848, 0.009399414, 0.027374268, -0.04159546, -0.028335571, 0.078125, -0.0519104, 0.021194458, -0.014541626, -0.022644043, 0.008888245, 0.022064209, 0.0034236908, 0.0087890625, 0.005393982, 0.011459351, 0.0446167, 0.0034236908, -0.02835083, -0.014465332, -0.003944397, 0.003929138, -0.015213013, 0.028396606, -0.035858154, 0.025985718, -0.020339966, -0.01713562, 0.0491333, 0.018951416, 0.032989502, -0.0023918152, 1.603365e-05, -0.009971619, -0.012199402, -0.0060310364, -0.026443481, -0.019989014, 0.0021686554, -0.01360321, -0.014022827, 0.0074310303, -0.051818848, -0.019042969, -0.0052108765, -0.028823853, 0.046203613, 0.008628845, 0.017944336, 0.008377075, 0.024917603, -0.008796692, 0.03262329, -0.01259613, -0.017028809, 0.020950317, 0.03741455, 0.0070762634, -0.030288696, 0.034484863, -0.024978638, 0.010795593, -0.008804321, 0.010307312, 0.007724762, 0.012741089, -0.009849548, -0.025360107, -0.015777588, 0.022506714, 0.038635254, -0.018295288, -0.06304932, 0.035247803, 0.007209778, 0.04449463, 0.0058059692, -0.06854248, 0.0016727448, -0.015274048, -0.0039405823, -0.03439331, -0.047790527, -0.052337646, -0.037231445, -0.015129089, -0.050720215, -0.066345215, 0.059326172, 0.039154053, 0.008125305, 0.012901306, 0.047454834, -0.012573242, -0.020645142, -0.010116577, 0.01234436, -0.008239746, 0.0035762787, -0.028808594, 0.04269409, 0.08251953, -0.08465576, -0.06109619, -0.04824829, 0.11254883, -0.034973145, 0.017669678, -0.03857422, 0.014701843, -0.00806427, 0.033599854, 0.009292603, -0.0132369995, -0.023025513, 0.013999939, 0.019485474, -0.028564453, -0.019042969, 0.0014877319, 0.035461426, -0.016784668, -0.031051636, -0.01398468, 0.008575439, -0.010543823, 0.023361206, 0.020019531, 0.0002901554, 0.0028896332, 0.010871887, -0.03753662, 0.016296387, 0.017623901, 0.0071792603, -0.019714355, -0.041656494, 0.0053634644, 0.010070801, 0.008018494, 0.019073486, 0.01209259, 0.029953003, 0.03945923, -0.007068634, 0.0143966675, 0.017715454, 0.010749817, -0.0022888184, -0.011306763, 0.0046920776, 0.0029029846, 0.011001587, -0.007511139, 0.013084412, 0.05496216, 0.0037460327, -0.032043457, 0.038391113, 0.043395996, -0.00749588, -0.04373169, 0.023361206, 0.0044517517, -0.034423828, -0.034851074, 0.019378662, -0.026763916, -0.0017347336, 0.0022087097, 0.0101623535, -0.036956787, 0.0036678314, 0.013916016, -0.0047187805, 0.028152466, 0.023651123, -0.038024902, 0.04135132, -0.02381897, -0.013175964, -0.034942627, 0.032592773, -0.011642456, 0.026779175, 0.025939941, 0.006626129, 0.04638672, 0.0067214966, 0.042388916, 0.028259277, 0.0017776489, 0.0045394897, -0.016693115, -0.02708435, 0.008560181, 0.05218506, 0.00095796585, 0.019683838, -0.015045166, -0.019210815, 0.0047721863, 0.030075073, 0.050598145, 0.089416504, 0.06970215, -0.007648468, -0.001616478, -0.028900146, 0.012229919, 0.025482178, -0.03845215, -0.0579834, -0.009262085, 0.016586304, -0.02760315, 0.016052246, 0.025741577, -0.038269043, -0.010925293, 0.034729004, 0.00598526, -0.0042533875, -0.01209259, 0.027786255, -0.029037476, 0.01701355, -0.012863159, 0.006126404, -0.0119018555, -0.0012264252, 0.008964539, -0.035980225, 0.0053710938, 0.027633667, 0.021224976, 0.019592285, 0.046447754, 0.019058228, 0.013786316, 0.061767578, 0.049438477, 0.035125732, 0.0030670166, -0.0043525696, -0.039611816, -0.04208374, -0.0020446777, 0.023391724, -0.06573486, -0.0039978027, -0.049316406, 0.02520752, -0.04208374, -0.045043945, -0.04736328, 0.007167816, -0.019042969, 0.031707764, 0.009483337, -0.0039978027, 0.014350891, 0.019439697, 0.033172607, -0.012390137, -0.017044067, -0.030670166, -0.035308838, -0.02230835, 0.034698486, 0.008262634, -0.0063438416, 0.00072717667, 0.02029419, -0.02545166, -0.00617218, -0.037353516, -0.024017334, 0.04812622, 0.0103302, -0.055877686, -0.0029182434, -0.07165527, -0.025543213, 0.0018520355, -0.04711914, 0.0018386841, 0.03375244, -0.010322571, -0.036346436, 0.029052734, 0.004043579, 0.002981186, 0.04776001, -0.032043457, -0.0059776306, -0.01374054, -0.014381409, -0.021774292, 0.008598328, -0.052246094, 0.0039253235, -0.008659363, -0.043060303, -0.01361084, 0.0060653687, 0.016738892, 0.009025574, 0.023025513, 0.051361084, 0.08843994, -0.00010877848, -0.044311523, 0.005054474, 0.08416748, -0.066467285, -0.024932861, -0.008033752, 0.017318726, 0.0259552, -0.009651184, 0.0029315948, -0.04421997, -0.062194824, -0.012924194, -0.0079422, -0.027572632, -0.02468872, -0.041290283, -0.041625977, -0.045440674, 0.008705139, 0.052825928, -0.024795532, -0.00046682358, -0.020004272, -0.020233154, 0.014884949, 0.012901306, -0.032470703, -0.009552002, -0.011764526, 0.008087158, -0.0047950745, -0.005256653, -0.019348145, 0.009140015, -0.012161255, 0.008987427, -0.002779007, 0.016357422, -0.024902344, -0.002313614, -0.000385046, -0.02822876, 0.0030975342, -0.018493652, -0.064453125, -0.06756592, -0.008544922, -0.037628174, 0.029968262, -0.05255127, -0.037261963, -0.016586304, -0.009162903, -0.0017986298, -0.003528595, -0.0043411255, 0.00027823448, -0.04071045, -0.03640747, -0.061584473, -0.012374878, 0.03366089, 0.01828003, 0.022354126, 0.018936157, 0.05609131, 0.00016140938, 0.023986816, -0.020599365, 0.009216309, -0.03086853, -0.037322998, 0.072265625, -0.030410767, 0.017532349, -0.061523438, 0.045440674, -0.0126953125, 0.019500732, -0.017227173, -0.043273926, 0.040649414, 0.014762878, 0.004966736, -0.010726929, -0.007575989, 0.010047913, 0.009544373, -3.0875206e-05, -0.00060129166, -0.06304932, -0.0043296814, -0.01687622, 0.07720947, 0.05505371, -0.006958008, 0.0803833, 0.07385254, -0.00233078, 0.03137207, 0.06311035, -0.024246216, 0.025283813, 0.045532227, -0.02128601, -0.016448975, 0.022476196, -0.0005016327, -0.030410767, -0.057128906, -0.061523438, -0.0013418198, -0.009025574, 0.013824463, -0.021255493, 0.037109375, 0.05380249, -0.0340271, -0.04373169, -0.05529785, 0.04006958, -0.07373047, 0.037902832, -0.0049438477, 0.00020670891, 0.0024280548, 0.015991211, 0.02760315, -0.030441284, -0.012702942, -0.027023315, -0.04272461, 0.038848877, 0.04067993, -0.036071777, 0.020904541, 0.010040283, 0.009208679, 0.010169983, 0.008514404, 0.023208618, -0.025268555, 0.010559082, 0.008132935, 0.00052022934, 0.022033691, 0.01461792, 0.0042266846, -0.062042236, -0.058685303, -0.01285553, 0.0053749084, 0.0028743744, -0.057434082, 0.0006670952, -0.05407715, -0.022262573, -0.0018310547, -0.044189453, -0.0029125214, -0.003490448, -0.0052604675, -0.08013916, -0.014839172, 0.025238037, -0.06768799, -0.048614502, 0.024047852, -0.01689148, -0.027267456, -0.024459839, 0.03567505, -0.054138184, 0.0030345917, -0.044525146, 0.0021076202, 0.056365967, 0.052520752, 0.04559326, -0.022216797, -0.029144287, -0.022247314, 0.08404541, 0.028701782, 0.020980835, -0.039001465, -0.00056648254, -0.019577026, 0.05807495, 0.085632324, 0.00084733963, 0.07330322, -0.019989014, 0.045440674, -0.042938232, -0.016067505, 0.038757324, -0.032989502, -0.041992188, -0.041992188, 0.02809143, -0.0056915283, -0.028076172, -0.0413208, 0.051574707, 0.003501892, 0.03173828, -0.0009508133, 0.021987915, 0.034606934, -0.044647217, -0.0004644394, -0.003124237, -0.019454956, 0.0592041, -0.0019197464, -0.033294678, -0.02407837, -0.02684021, 0.022033691, 0.026153564, 0.027618408, 0.020904541, -0.0259552, 0.014823914, 0.0037212372, -0.080078125, 0.083496094, 0.04385376, 0.0023479462, 0.011764526, -0.02897644, -0.0048294067, -0.036346436, 0.011795044, -0.048034668, -0.027160645, 0.004436493, 0.002161026, -0.005870819, 0.016967773, -0.0015182495, -0.010513306, -0.0056762695, 0.0037212372, -0.01071167, 0.011451721, -0.029922485, 0.023132324, 0.055480957, 0.009216309, 0.01777649, 0.0052452087, -0.0074501038, 0.023162842, -0.018432617, 8.893013e-05, 0.010025024, -0.018737793, -0.00044250488, -0.03665161, -0.0072250366, -0.013023376, 0.0046157837, 0.020141602, -0.009216309, -0.007217407, 0.019546509, -0.006046295, -0.00018537045, -0.039855957, -0.0022525787, -0.04498291, -0.0030899048, 0.002336502, -0.016952515, -0.052886963, 0.024902344, -0.06329346, 0.06021118, 0.0034980774, -0.042541504, 0.046661377, -0.007663727, -0.008415222, 0.03692627, 0.045135498, 0.005004883, 0.0211792, -0.02293396, 0.0026397705, 0.0096206665, 0.0362854, -0.035705566, -0.010658264, 0.027282715, -0.0074272156, -0.00021183491, 0.03656006, 0.024215698, -0.015625, 0.004497528, 0.026260376, -0.004989624, -0.020126343, 0.041412354, -0.03729248, -0.053344727, 0.016052246, 0.0107421875, 0.0067634583, -0.028289795, -0.0020389557, -0.061950684, 0.027282715, -0.011505127, 0.008918762, -0.059265137, 0.026412964, 0.0030899048, -0.012359619, 0.013580322, 0.044128418, 0.0063438416, -0.015594482, 0.0052261353, 0.03488159, 0.026412964, -0.013725281, 0.023986816, -0.028656006, -0.02947998, -0.018936157, 0.017440796, 0.014198303, -0.006095886, -0.061340332, -0.0022468567, 0.0095825195, 0.03805542, 0.00043034554, 0.070495605, 0.07312012, -0.05065918, -0.017608643, -0.0848999, -0.00022280216, 0.0052986145, -0.041381836, 0.04421997, 0.03086853, -0.0138168335, 0.016616821, -0.01576233, -0.018066406, 0.052093506, 0.036834717, -0.08300781, 0.006752014, 0.025817871, 0.024505615, -0.039489746, -0.026229858, -0.012908936, 0.0317688, -0.00919342, -0.010543823, -0.02760315, -0.045410156, -0.0026397705, -0.04067993, 0.020263672, -0.0026397705, 0.015579224, 0.0028381348, 0.016189575, -0.084472656, -0.0059051514, 0.01876831, 0.029418945, 0.032165527, -0.017913818, 0.015716553, 0.041870117, -0.039489746, 0.06335449, -0.025985718, -0.013420105, -0.0045204163, 0.05026245, 0.022262573, 0.027130127, -0.021224976, -0.026306152, -0.028671265, 0.052734375, 0.031143188, 0.029022217, -0.0435791, -0.022445679, 0.028167725, 0.03274536, 0.030685425, -0.00274086, 0.010574341, -0.028121948, -0.037017822, 0.015029907, 0.030380249, -0.031021118, 0.012893677, -0.03237915, 0.0003118515, 0.0027542114, -0.012374878, 0.009780884, -0.0032253265, 0.023101807, -0.010032654, 0.012649536, 0.014312744, 0.01876831, -0.012069702, -0.0032196045, -0.07305908, 0.014389038, -0.022232056, -0.014801025, -0.02192688, -0.030853271, 0.03842163, 0.04849243, 0.00667572, 0.011917114, 0.00982666, -0.0028324127, -0.024932861, 0.0062026978, 0.029388428, 0.06427002, 0.0033226013, 0.03765869, -0.081604004, -0.0037155151, 0.013137817, -0.0446167, -0.04815674, 0.1048584, 0.011711121, -0.041870117, -0.0014543533, 0.012496948, -0.019104004, -0.035369873, 0.038513184, 0.021118164, 0.003282547, -0.011489868, -0.105529785, -0.05407715, 0.039642334, -0.039123535, -0.02545166, -0.0072402954, 0.045715332, -0.026412964, 0.019378662, -0.03024292, -0.025939941, 0.03189087, 0.017974854, -0.011184692, 0.018798828, 0.03463745, -0.0060272217, 0.010353088, -0.006778717, 0.025802612, 0.03201294, 0.036224365, 0.021820068, -0.032043457, -0.042388916, 0.017868042, -0.018341064, 0.036468506, -0.014274597, 0.09692383, 0.00554657, 0.014007568, 0.003774643, 0.01586914, 0.053222656, -0.005279541, 0.013679504, -0.028945923, 0.0048103333, 0.029129028, -0.025375366, -0.012161255, -0.02003479, -0.007083893, 0.017196655, -0.0047035217, 0.0008096695, -0.015174866, 0.02357483, -0.014564514, -0.02708435, 0.0016756058, 0.018981934, -0.016525269, 0.016052246, -0.04232788, -0.035308838, -0.012802124, -0.013946533, -0.022766113, -0.02017212, -0.07507324, 0.0033721924, -0.046661377, -0.01763916, -0.02104187, 0.013053894, 0.03729248, -0.009429932, -0.028289795, 0.034423828, 0.011306763, 0.016571045, 0.07006836, -0.037475586, -0.056274414, -0.044158936, 0.035614014, -0.053009033, -0.024246216, -0.024993896, 0.0069007874, 0.02330017, 0.008674622, 0.016616821, 0.047180176, 0.021911621, -0.0011472702, -0.03186035, -0.014411926, -0.05291748, 0.06109619, -0.00018119812, -0.00806427, 0.040161133, 0.08093262, 0.0051574707, 0.013122559, 0.054107666, -0.017654419, -0.030395508, -0.008529663, -0.01626587, 0.031555176, 0.008575439, 0.0036964417, 0.0053253174, 0.025741577, -0.01864624, 0.005554199, 0.006652832, -0.027633667, 0.016296387, -0.03643799, 0.039611816, -0.01676941, -0.05303955, -0.04763794, -0.026367188, 0.008392334, 0.06640625, 0.024719238, 0.0071029663, 0.0049095154, -0.023757935, 0.01876831, -0.032287598, -0.016571045, -0.026779175, 0.02230835, -0.008300781, -0.024963379, 0.028945923, 0.012588501, -0.023895264, -0.013381958, 0.030090332, 0.046417236, -0.043395996, -0.011764526, -0.008628845, -0.0015802383, 0.015792847, -0.04095459, -0.020889282, -0.046966553, 0.011924744, 0.012191772, -0.0036754608, -0.005340576, 0.017211914, -0.014808655, -0.013473511, 0.024368286, 0.006462097, 0.028198242, 0.0055160522, 0.03857422, 0.017333984, 0.056030273, -0.02558899, -0.056488037, -0.05166626, 0.03616333, 0.0037155151, -0.014465332, 0.056365967, -0.0335083, 0.011230469, 0.007698059, -0.01687622, -0.032226562, 0.0077056885, 0.0692749, -0.0007839203, 0.016174316]}, "B08BW61RDG": {"id": "B08BW61RDG", "original": "Brand: BBQ'n Grill\nName: BBQ'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil\u00a0Grills\nDescription: Now you can barbecue like you never have before with ease.\u00a0 This unique Barbecuing accessory makes rib booking virtually automatic.\u00a0 Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ\u2019n Grill rack, cover and then do nothing until they are ready to eat!\u00a0 This technique allows the meat to cook on both sides at the same time.\u00a0 Use on any covered charcoal grill of 19\u201d or more across and 17\u201d or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken\u00a0without\u00a0constant attention,\u00a0without\u00a0fussing,\u00a0without\u00a0turning, and\u00a0without\u00a0charring or burning.\u00a0 The BBQ\u2019n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food.\u00a0\nFeatures: Makes Barbecuing Ribs and Chicken Effortless\nWorks with Charcoal or Gas\nWorks with Round, Square or Rectangular Grills\nMade from Heavy Duty Plated Steel\n", "metadata": {"Name": "BBQ'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil\u00a0Grills", "Brand": "BBQ'n Grill", "Description": "Now you can barbecue like you never have before with ease.\u00a0 This unique Barbecuing accessory makes rib booking virtually automatic.\u00a0 Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ\u2019n Grill rack, cover and then do nothing until they are ready to eat!\u00a0 This technique allows the meat to cook on both sides at the same time.\u00a0 Use on any covered charcoal grill of 19\u201d or more across and 17\u201d or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken\u00a0without\u00a0constant attention,\u00a0without\u00a0fussing,\u00a0without\u00a0turning, and\u00a0without\u00a0charring or burning.\u00a0 The BBQ\u2019n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food.\u00a0", "Features": "Makes Barbecuing Ribs and Chicken Effortless\nWorks with Charcoal or Gas\nWorks with Round, Square or Rectangular Grills\nMade from Heavy Duty Plated Steel", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021118164, -0.0012149811, -0.008491516, 0.011703491, -0.017623901, -0.011566162, -0.009063721, -0.035827637, -0.022949219, -0.00095129013, -0.02986145, 0.015220642, -0.037994385, -0.017486572, 0.007724762, -0.049041748, 0.025131226, -0.021011353, -0.020065308, -0.04058838, 0.0028381348, -0.030410767, 0.0033054352, 0.085632324, 0.07702637, -0.009086609, 0.040161133, 0.010864258, 0.073791504, 0.026382446, 0.05215454, -0.082092285, 0.03945923, 0.028396606, -0.053497314, -0.018844604, -0.030563354, 0.010856628, -0.019744873, 0.021057129, 0.009635925, 0.0039405823, 0.010238647, -0.049926758, -0.013160706, 0.011390686, -0.010810852, -0.024490356, -0.002571106, -0.009437561, 0.012969971, 0.028945923, 0.018798828, 0.010734558, -0.014282227, -0.001499176, -0.006954193, 0.029296875, 0.027404785, -0.012390137, -0.026901245, 0.00022125244, 0.013893127, -0.015197754, -0.032165527, 0.0012950897, 0.0736084, -0.01626587, -0.051635742, -0.054016113, 0.038238525, 0.01322937, 0.028320312, -0.021850586, -0.009468079, 0.0030288696, -0.0012245178, 0.0042304993, 0.03375244, -0.0004887581, -0.052246094, -0.05960083, 0.010482788, -0.061279297, 0.029220581, -0.022888184, -0.009506226, 0.007698059, 0.003643036, -0.031677246, 0.0012302399, -0.00248909, -0.05429077, 0.060180664, 0.017364502, -0.019821167, -0.038726807, -0.03201294, 0.027938843, 0.038879395, 0.02659607, -0.034454346, 0.047210693, -0.021194458, 0.0035133362, 0.06384277, -0.027297974, 0.049926758, 0.020065308, 0.007293701, 0.014709473, -0.05215454, -0.03326416, -0.051574707, -0.012329102, 0.048797607, -0.01625061, -0.012191772, 0.004501343, -0.023025513, -0.02947998, 0.01663208, 0.0034885406, -0.005996704, 0.06640625, 0.06222534, 0.004585266, -0.012237549, -0.038482666, 0.028686523, -0.024856567, -0.012321472, 0.07727051, 0.07141113, 0.0236969, -0.018829346, 0.022003174, -0.018737793, -0.025970459, 0.020553589, -0.017425537, -0.015960693, 0.024810791, -0.03543091, -0.021987915, 0.00058698654, 0.031463623, 0.023208618, -0.048614502, -0.03805542, 0.008621216, 0.035003662, 0.053375244, 0.0010242462, -0.03024292, -0.020477295, 0.027923584, -0.02772522, -0.045440674, -0.04434204, 0.007675171, -0.017684937, 0.0055236816, -0.059509277, -0.06719971, 0.024719238, -0.03793335, -0.0048980713, 0.015914917, -0.03024292, 0.019958496, -0.011894226, -0.0035572052, -0.017791748, 0.0027370453, 0.0044136047, -0.0037555695, 0.07086182, 0.04360962, -0.041778564, -0.016708374, -0.030914307, 0.13354492, -0.026626587, -0.01574707, -0.025527954, 0.020431519, 0.042633057, 0.019943237, 0.027542114, 0.025604248, -0.045196533, -0.044189453, 0.0032157898, 0.026519775, 0.017333984, -0.048095703, 0.0013132095, 0.0052337646, -0.03152466, 0.01360321, -0.004131317, 0.02029419, -0.056121826, -0.033111572, -0.014816284, -0.011856079, 0.0385437, 0.01473999, 0.012229919, -0.0151901245, -0.007183075, 0.025558472, -0.06970215, -0.036468506, 0.0077552795, -0.02557373, 0.020217896, 0.016860962, 0.007972717, 0.016204834, 0.012557983, 0.004322052, -0.0234375, 0.0546875, 0.008026123, -0.04647827, -0.020431519, -0.008987427, 0.026916504, -0.114746094, 0.0637207, 0.049804688, 0.053955078, -0.017227173, 0.05581665, 0.105651855, 0.089660645, -0.030776978, -0.053863525, 0.0005059242, -0.026245117, -0.028121948, 0.014083862, -0.034240723, 0.016921997, 0.03286743, -0.007587433, -0.023925781, -0.019332886, 0.012527466, 0.012565613, 0.03881836, 0.017944336, -0.02116394, 0.03945923, -0.012466431, 0.01966858, -0.033569336, 0.019897461, -0.017486572, -0.0259552, 0.012161255, -0.030914307, 0.05621338, -0.026519775, 0.03390503, 0.010940552, -0.016845703, -0.01449585, 0.008087158, -0.02458191, 0.00044035912, 0.02128601, 1.5199184e-05, 0.0004506111, -0.031677246, 0.0045547485, 0.018463135, 0.009529114, -0.0020503998, 0.009635925, 0.032470703, -0.0090789795, 0.022277832, -0.018341064, 0.023071289, -0.020599365, -0.11016846, -0.06335449, -0.0030021667, 0.0054397583, -0.04800415, -0.019332886, -0.010421753, -0.011428833, 0.038238525, 0.037963867, -0.008087158, -0.008201599, -0.020599365, 0.013694763, -0.04925537, 0.008781433, 0.0027446747, -0.010726929, 0.002565384, 0.016586304, 0.0014247894, -0.068603516, 0.054473877, 0.055877686, 0.021759033, -0.016723633, 0.04119873, 0.016647339, 0.00014662743, 0.035827637, 0.04449463, 0.03152466, -0.021591187, 0.0063705444, -0.02684021, -0.0022602081, 0.007522583, 0.0098724365, -0.009246826, 0.00053167343, 0.00088357925, -0.010040283, -0.01374054, -0.025772095, -0.013290405, 0.011192322, -0.0007443428, -0.007965088, 0.0032138824, -0.03050232, -0.0030994415, 0.011833191, 0.028900146, -0.04824829, -0.0143585205, -0.031311035, -0.018051147, -0.013427734, 0.011314392, 0.018737793, -0.007835388, 0.014152527, -0.015853882, -0.032928467, 0.010948181, -0.0335083, -0.0073661804, -0.0039863586, -0.009780884, -0.049713135, -0.012207031, -0.07757568, -0.008171082, -0.022720337, -0.055267334, -0.03338623, 0.055664062, -0.013717651, -0.045654297, -0.023803711, -0.025772095, -0.02331543, 0.038391113, -0.03793335, -0.03704834, -0.022918701, -0.02130127, -0.008544922, 0.035888672, -0.03253174, -0.014129639, 0.0073051453, 0.006767273, 0.033599854, -0.054534912, -0.00023460388, 0.018508911, 0.03314209, 0.08868408, 0.055236816, 0.031799316, -0.048675537, 0.0051994324, 0.034698486, -0.04208374, -0.014816284, -0.0071868896, 0.01373291, 0.032684326, -0.025817871, 5.6743622e-05, -0.025314331, -0.059051514, -0.008621216, -0.02017212, -0.02633667, -0.0055656433, -0.06085205, -0.028305054, -0.049621582, -0.0043411255, 0.034454346, -0.017181396, -0.010169983, -0.032440186, -0.003835678, 0.011650085, -0.020629883, 0.017440796, -0.007358551, 0.024490356, -0.020614624, -0.002105713, 0.012748718, -0.0056266785, 0.013374329, -0.035858154, 0.010932922, 0.0070228577, 0.048583984, -0.0038223267, 0.010932922, -0.0064926147, -0.027191162, -0.018295288, 0.013450623, 0.0018186569, 0.030441284, -0.0004775524, -0.014595032, 0.03262329, -0.036743164, -0.030929565, -0.0021457672, -0.04525757, -0.0067367554, -0.011909485, -0.04272461, -0.008552551, -0.051574707, -0.038970947, -0.085876465, 0.0010347366, 0.013694763, 0.043182373, 0.025253296, 0.034240723, 0.09289551, 0.020553589, 0.038116455, 0.008468628, -0.003358841, 0.0026054382, -0.038238525, 0.042938232, 0.02507019, -0.007843018, -0.047943115, 0.05239868, 0.0034561157, -0.027435303, 0.03010559, -0.024902344, 0.041625977, 0.016311646, -0.010032654, 0.010063171, -0.034423828, 0.011123657, 0.015007019, -0.012710571, -0.031051636, -0.04071045, -0.0036506653, -0.04888916, 0.09509277, 0.020248413, -0.009185791, 0.07409668, 0.07281494, -0.0034179688, 0.026763916, -0.010894775, 0.0065689087, 0.0077209473, 0.0181427, -0.0064048767, 0.012390137, -0.00028276443, 0.014060974, 0.040863037, 0.041503906, -0.041168213, -0.0079193115, -0.010231018, -0.05758667, 0.015045166, 0.014228821, 0.0340271, -0.0046424866, 0.006336212, 0.011894226, 0.038269043, -0.01525116, 0.06890869, 0.028717041, -0.010391235, -0.021453857, 0.036956787, 0.021865845, -0.040649414, -0.0073661804, 0.011451721, 0.046569824, -0.013374329, 0.035186768, 0.00076532364, -0.0074005127, -0.013572693, 0.022857666, 0.016433716, 0.049835205, 0.027038574, -0.004447937, 0.013259888, -0.024902344, 0.0107421875, -0.029525757, -0.0084991455, 0.0007901192, -0.016021729, -0.030227661, -0.022750854, 0.01550293, 0.013839722, 0.0021705627, 0.033996582, -0.053741455, 0.0044288635, -0.027038574, -0.07171631, -0.021026611, -0.034088135, -0.005558014, -0.032409668, -0.018814087, -0.0009880066, -0.037994385, -0.018447876, -0.0073127747, -0.020996094, 0.011154175, -0.03189087, 0.027420044, -0.06008911, 0.034088135, -0.07006836, -0.010719299, 0.06365967, 0.04510498, 0.034301758, -0.040771484, -0.015670776, -0.028808594, 0.06591797, 0.009536743, 0.0099487305, -0.017471313, -0.03878784, -0.008659363, 0.029571533, 0.05178833, -0.015075684, 0.019973755, -0.028152466, -0.052825928, -0.016921997, -0.01927185, 0.018676758, -0.037628174, -0.011726379, -0.018814087, 0.034210205, -0.017807007, -0.008872986, -0.08129883, 0.011238098, 0.0019702911, -0.016082764, 0.016143799, 0.0045433044, 0.018875122, 0.0054473877, -0.008178711, -0.010513306, -0.018310547, 0.021499634, -0.011962891, 0.017440796, 0.0012054443, -0.0124053955, -0.04663086, 0.021453857, 0.02255249, -0.03326416, 0.023986816, -0.05496216, -0.0014772415, -0.10827637, 0.1081543, 0.07373047, -0.014656067, -0.0124053955, -0.00023794174, -0.050811768, -0.056152344, 0.0030708313, -0.0121154785, -0.012001038, 0.009902954, -0.011070251, 0.0034828186, -0.0037498474, -0.009414673, -0.00894165, -0.002204895, -0.00022029877, -0.04650879, 0.01789856, -0.033813477, 0.039733887, 0.047973633, 0.011940002, 0.022888184, 0.0018825531, 0.004009247, -0.039001465, -0.02281189, -0.008094788, -0.025894165, -0.010665894, -0.0046424866, 0.02659607, 0.008575439, -0.032989502, -0.027069092, 0.03768921, -0.025665283, -0.031280518, 0.00015556812, 0.019714355, -0.027389526, -0.026000977, 0.04940796, -0.0031528473, 0.020843506, 0.036102295, -0.030258179, 0.0024166107, 0.028121948, -0.050933838, 0.06756592, 0.012107849, -0.054779053, -0.0010442734, -0.01675415, 0.003824234, -0.011299133, 0.05810547, 0.010910034, 0.019226074, -0.060760498, 0.0047683716, 0.0143585205, 0.03729248, -2.9802322e-06, -0.028579712, 0.026062012, 0.0104522705, -0.017227173, 0.0013599396, 0.03161621, -0.031951904, 0.013908386, 0.020126343, 0.008560181, -0.0501709, 0.024963379, -0.013549805, -0.0025959015, -0.026519775, -0.015419006, 0.003353119, 0.0014123917, -0.006629944, -0.028076172, -0.006580353, 0.03262329, -0.008079529, 0.0024967194, -0.011489868, 0.0042762756, -0.0010232925, 0.012649536, -0.036346436, -0.004802704, 0.03555298, -0.011833191, -0.030715942, 0.024490356, -0.013633728, -0.014976501, 0.0037708282, 0.030792236, 0.055145264, 0.010559082, 0.033477783, 0.040374756, -0.03717041, 0.0256958, 0.017791748, 0.008323669, -0.036315918, -0.013587952, 0.041656494, -0.043792725, -0.021942139, -0.03466797, 0.020935059, -0.0063323975, -0.024871826, 0.045166016, -0.012062073, 0.014816284, 0.010475159, -0.0011425018, -0.0154953, 0.035614014, 0.008956909, -0.053527832, -0.0030021667, -0.0067863464, -0.012565613, 0.005378723, -0.02684021, -0.033172607, 0.028793335, -0.012512207, -0.016845703, -0.029785156, -0.03111267, 0.008239746, -0.03677368, 0.019851685, -0.020706177, 0.006942749, -0.021331787, -0.005634308, -0.092285156, -0.019989014, 0.02947998, 0.014472961, 0.029342651, -0.021560669, 0.026992798, 0.03829956, -0.010505676, 0.05517578, -0.024642944, 0.017654419, 0.009635925, 0.030654907, 0.006351471, 0.016555786, -0.018188477, -0.00078487396, 0.010551453, 0.051086426, 0.00932312, -0.020019531, 0.0035476685, -0.04736328, 0.018066406, 0.007083893, -0.010787964, 0.07342529, 0.024841309, -0.04940796, -0.02999878, 0.017150879, 0.0010318756, -0.06817627, -0.04071045, -0.0065727234, -0.0074005127, 0.03036499, 0.010322571, 0.013076782, 0.04171753, 0.015945435, -0.0052604675, 0.0046958923, 0.0056495667, 0.020126343, -0.020751953, -0.053253174, -0.06628418, -0.013877869, -0.0032024384, 0.009231567, -0.04840088, -0.017333984, 0.022872925, 0.042022705, 0.015640259, 0.008377075, -0.0099105835, 0.015731812, -0.0309906, -0.016815186, 0.0236969, -0.006713867, -3.7789345e-05, 0.0011720657, -0.09082031, -0.045135498, -0.02822876, 0.027282715, 0.0072364807, 0.05508423, 0.01058197, 0.019454956, 0.0068893433, 0.0005707741, 0.001906395, -0.00017940998, 0.028915405, 0.02720642, 0.006187439, -0.02482605, 0.0070762634, 0.0011634827, 0.030441284, -0.03918457, -0.008674622, -0.049743652, 0.019348145, -0.012168884, 0.021484375, -0.019058228, -0.030471802, 0.02935791, 0.024520874, -0.0030059814, 0.041809082, 0.03274536, -0.010955811, 0.026412964, -0.058654785, 0.025436401, -0.017318726, 0.04586792, 0.033569336, 0.037963867, -0.012588501, -0.0035991669, -0.008117676, 0.0006136894, 0.0032463074, 0.022720337, 0.01776123, -0.01209259, 0.0019893646, 0.06378174, 0.07714844, 0.012298584, 0.0574646, 0.0051574707, -0.012397766, -0.018310547, -0.032806396, -0.021957397, -0.025024414, -0.013809204, -0.0028018951, -0.0007457733, -0.044433594, 0.01852417, 0.05029297, -0.050079346, -0.04663086, 0.0015821457, 0.033081055, -0.03652954, 0.035980225, -0.094055176, -0.011062622, -0.0005426407, 0.018341064, 0.004070282, -0.016845703, -0.012588501, 0.041015625, 0.0259552, -0.038391113, -0.04446411, 0.0012340546, 0.00422287, -0.036376953, -0.0061912537, -0.01184845, 0.062469482, 0.0060157776, 0.05218506, -0.03125, -0.048553467, -0.018692017, 0.033721924, -0.03366089, -0.034179688, -0.011886597, 0.007286072, 0.010879517, -0.022399902, -0.00349617, 0.06512451, 0.010871887, -0.010803223, -0.031219482, -0.03253174, -0.013336182, 0.031311035, -0.009864807, -0.012420654, -0.039154053, 0.038085938, -0.004749298, 0.06298828, 0.018417358, 0.0032348633, -0.051513672, -0.02558899, -0.06719971, 0.0049209595, -0.0038585663, -0.019805908, 0.01802063, 0.005657196, -0.027160645, 0.0066375732, 0.019973755, -0.0048294067, 0.02720642, 0.030059814, -0.0016078949, -0.014038086, -0.028762817, -0.015525818, -0.014442444, 0.019805908, 0.018005371, -0.0035705566, 0.04714966, -0.008575439, -0.030441284, 0.0064926147, 0.006958008, -0.03125, -0.0045394897, -0.0061302185, -0.017578125, -0.032043457, -0.0054626465, -0.016708374, -0.01826477, -0.017974854, 0.041015625, 0.0670166, -0.035247803, 0.005619049, -0.013725281, -0.0013017654, 0.023620605, -0.03366089, 0.0007686615, -0.0025901794, -0.0025520325, 0.011833191, 0.009857178, -0.0020599365, -0.007297516, -0.012290955, 0.0006623268, 0.031433105, 0.018066406, 0.02885437, -0.06359863, 0.06439209, 0.0067825317, 0.052703857, -0.011192322, -0.08129883, -0.052093506, 0.035308838, 0.000103235245, -0.0017728806, 0.004070282, -0.009674072, 0.0016956329, -0.008148193, 0.0046463013, -0.054870605, 0.009651184, 0.035614014, 0.0038986206, 0.03640747]}, "B06ZY5W3R7": {"id": "B06ZY5W3R7", "original": "Brand: Unknown\nName: Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator\nDescription: \nFeatures: \n", "metadata": {"Name": "Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator", "Brand": "Unknown", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.057403564, -0.018463135, -0.04159546, 0.043182373, -0.04220581, -0.0055122375, -0.010055542, 7.003546e-05, 0.00089740753, -0.034454346, -2.4795532e-05, 0.014640808, -0.049804688, -0.05569458, 0.033111572, -0.035308838, 0.030883789, 0.03933716, 0.03326416, -0.021102905, -0.021713257, -0.009178162, -0.0018634796, 0.084350586, 0.054748535, -0.0028686523, -0.003616333, 0.01852417, 0.034454346, 0.036346436, 0.040222168, -0.060638428, -0.04660034, 0.020507812, 0.075683594, 0.025650024, 0.02973938, 0.022644043, 0.058288574, 0.0017681122, -0.005168915, 0.009246826, 0.033416748, -0.04623413, -0.03074646, -0.003288269, -0.003967285, 0.015289307, 0.05105591, 0.01020813, -0.026626587, 0.007129669, -0.022323608, -0.01725769, -0.0126953125, -0.020217896, 0.012260437, 0.014205933, 0.0042762756, 0.0055503845, -0.004463196, 0.05886841, 0.002532959, 0.009025574, -0.025848389, 0.02168274, 0.020690918, 0.0079422, 0.05316162, -0.052490234, -0.049346924, 0.0413208, 0.006832123, 0.04046631, -0.044525146, -0.03074646, -0.02178955, -0.019378662, 0.07220459, 0.002670288, -0.020996094, -0.003665924, 0.026794434, -0.001865387, -0.04800415, -0.03842163, -0.024597168, 0.010910034, -0.05819702, -0.02708435, -0.036956787, 0.024597168, -0.07849121, -0.032318115, -0.014320374, -0.008216858, 0.004798889, 0.029022217, 0.025436401, -0.0014381409, -0.0102005005, -0.015274048, -0.031555176, -0.014595032, -0.015579224, 0.016571045, 0.060302734, 0.046905518, -0.005264282, 0.00015354156, -0.03213501, 0.048339844, 0.016311646, 0.04437256, -0.028442383, -0.04827881, -0.041107178, 0.051727295, -0.020889282, 0.053466797, -0.0024852753, 0.0385437, 0.01802063, -0.023452759, -0.0050811768, 0.0025920868, -0.00869751, -0.03704834, 0.0013284683, 0.032684326, -0.039520264, -0.003293991, 0.025787354, 0.0017433167, 0.00053596497, -0.02935791, 0.028839111, 0.03527832, 0.020996094, -0.048797607, 0.0038604736, 0.014404297, 0.030563354, -0.0004272461, -0.012069702, 0.031921387, 0.012786865, 0.0046463013, -0.0014543533, -0.050720215, 0.008049011, -0.010513306, 0.0040779114, 0.010910034, 0.057403564, -0.0011301041, 0.035705566, -0.026550293, 0.021896362, -0.013687134, 0.0146865845, -0.041748047, -0.015136719, 0.007320404, -0.02633667, 0.070251465, -0.012710571, 0.0036716461, 0.026184082, 0.08282471, 0.005168915, 0.032989502, 0.025634766, 0.034088135, -0.0018491745, -0.02784729, -0.045837402, 0.026657104, 0.054138184, -0.07183838, -0.03265381, -0.030410767, 0.06524658, 0.0065841675, -0.010879517, -0.005065918, 0.025497437, 0.04043579, 0.010040283, 0.03366089, 0.01889038, -0.017211914, 0.0054740906, 0.0014133453, 0.007007599, -0.0151901245, 0.014175415, 0.02545166, 0.0020656586, -0.022140503, 0.020339966, 0.002752304, -0.027786255, -0.004585266, -0.0082473755, -0.036193848, 0.008529663, 0.015266418, 0.036499023, 0.0059318542, 0.002779007, 0.022445679, -0.02017212, -0.049194336, -0.06500244, 0.046081543, -0.016799927, 9.196997e-05, 0.010223389, 0.011627197, 0.033111572, -0.00087308884, 0.02229309, 0.015083313, -0.023880005, -0.0047340393, -0.018615723, -0.015838623, 0.008522034, -0.024902344, 0.083496094, 0.023498535, -0.012794495, 0.018508911, -0.035858154, -0.015312195, 0.007751465, 0.015411377, 0.016677856, 0.024353027, 0.008560181, -0.03781128, 0.009895325, 0.06945801, -0.024414062, 0.006958008, 0.019851685, 0.0044136047, 0.002544403, 0.052246094, 0.062164307, 0.014205933, 0.0014133453, 0.071777344, -0.058746338, 0.0317688, -0.011772156, 0.032684326, -0.025848389, 0.02381897, -0.019882202, 0.035980225, 0.017410278, -0.0036697388, 0.056488037, 0.033721924, 0.028442383, 0.024856567, -0.060943604, 0.056518555, 0.016159058, 0.0079574585, -0.016281128, 0.02142334, 0.029037476, -0.0022182465, -0.04006958, 0.013366699, 0.024902344, 0.017593384, -0.0006990433, -0.00039720535, -0.008880615, -0.007106781, 0.038330078, 0.02558899, 0.0013446808, -0.0026988983, -0.022872925, -0.043060303, -0.010383606, 0.0059051514, -0.033691406, 0.032928467, 0.05154419, -0.028656006, 0.03479004, -0.023010254, 0.040863037, -0.02961731, -0.015274048, 0.04611206, 0.0023384094, 0.0059165955, 0.03189087, -0.021652222, 0.04006958, 0.00390625, 0.010093689, 0.076660156, -0.09057617, 0.019363403, 0.007709503, 0.017242432, -0.011413574, -0.0096206665, -0.015716553, 0.024993896, 0.029907227, 0.086242676, -0.036499023, 0.025238037, 0.023864746, 0.03466797, 0.029754639, -0.029907227, 0.023422241, 0.025665283, -0.04397583, -0.005657196, 0.017593384, -0.041809082, 0.007118225, 0.010437012, 0.02027893, 0.010032654, 0.009025574, 0.054473877, 0.014877319, -0.015838623, 0.005382538, -0.019683838, -0.02230835, -0.010002136, -0.03543091, -0.05429077, 0.008384705, -0.0071258545, 0.0017795563, -0.03086853, 0.05493164, -0.006969452, 0.0015230179, -0.027862549, 0.033996582, -0.02746582, -0.039764404, -0.030883789, 0.0074806213, -0.060943604, 0.026229858, -0.0056266785, -0.025268555, -0.051940918, 0.004322052, 0.00049209595, -0.026779175, -0.028533936, 0.01890564, 0.022445679, -0.035461426, -0.0035419464, -0.024642944, 0.008483887, 0.04348755, 0.02293396, -0.009300232, -0.04675293, 0.035308838, -0.0075302124, -0.014640808, 0.0039787292, 0.0137786865, 0.039611816, -0.017303467, 0.036315918, 0.016647339, 0.0034370422, 0.010635376, -0.01424408, 0.01878357, 0.0423584, -0.0013074875, 0.001367569, 0.028244019, -0.02748108, -0.020141602, 0.054107666, -0.122680664, 0.005672455, -0.07183838, -0.0158844, -0.038635254, -0.0362854, 0.013473511, -0.09777832, -0.009674072, -0.080322266, 0.04638672, -0.045013428, -0.014778137, -0.023803711, -0.015136719, -0.06390381, -0.04220581, 0.010116577, 0.017150879, -0.013031006, -0.02571106, -0.00070381165, 0.06591797, -0.09832764, 0.013946533, 0.015281677, -0.04876709, -0.0073432922, -0.02935791, 0.014434814, 0.00027823448, 0.059661865, -0.027954102, 0.02708435, -0.023742676, -0.034576416, -0.0017633438, 0.01586914, -0.013267517, 0.0058631897, -0.027740479, -0.00466156, -0.044403076, -0.004524231, 0.032196045, 0.046203613, 0.05810547, -0.026687622, -0.03778076, -0.039794922, -0.027404785, -0.033294678, 0.008056641, 0.015304565, 0.003364563, 0.02116394, 0.0031776428, 0.058776855, 0.025299072, 0.047088623, 0.017303467, -0.025894165, -0.019927979, -0.02583313, 0.009757996, -0.005859375, -0.01525116, -0.0025997162, 0.0036373138, 0.025238037, 0.020263672, -0.0357666, 0.023376465, 0.040649414, -0.011390686, -0.0049362183, -0.003227234, -0.014572144, 0.008804321, 0.0068740845, 0.024612427, -0.009498596, -0.028686523, -0.005016327, -0.10003662, 0.045715332, 0.026290894, -0.015777588, 0.0026397705, 0.025894165, -0.030380249, 0.02458191, 0.02027893, -0.012283325, 0.012397766, -0.0041007996, -0.049926758, -0.008544922, 0.018814087, -0.077697754, -0.032928467, -0.014518738, -0.059051514, 0.003047943, -0.027450562, 0.0032043457, -0.027526855, -0.04360962, 0.0072250366, 0.019546509, 0.020965576, -0.019226074, 0.039154053, 0.0098724365, 0.030807495, 0.032592773, -0.023010254, -0.008911133, -0.012557983, -0.0126571655, -0.04763794, 0.012016296, -0.037322998, -0.044830322, 0.0018663406, 0.041534424, 0.010047913, -0.024230957, 0.0096206665, 0.026000977, -0.032409668, -0.0184021, 0.024642944, 0.03652954, 0.014030457, -0.01576233, 0.003686905, -0.014335632, -0.023254395, 0.021194458, -0.0049858093, -0.046966553, -0.025375366, 0.025299072, 0.031799316, -0.018859863, -0.00793457, -0.036071777, 0.009033203, -0.003189087, 0.015487671, -0.068481445, 0.02178955, 0.046661377, -0.052947998, -0.010047913, -0.01285553, 0.019973755, -0.028930664, 0.011161804, -0.036865234, 0.011039734, -0.014801025, 0.021453857, -0.026443481, -0.003753662, -0.024963379, 0.008972168, 0.028549194, 0.016952515, 0.0034732819, -0.0051345825, -0.010597229, -0.014968872, -0.03668213, -0.022216797, -0.032348633, -0.0030174255, -0.07318115, -0.002746582, -0.028640747, 0.060821533, 0.0036449432, 0.039001465, -0.044311523, 0.0013570786, -0.013755798, -0.0027332306, -0.0017175674, -0.031707764, -0.0262146, 0.0008687973, 0.03338623, -0.017440796, -0.008430481, -0.012390137, 0.0287323, 0.003501892, 0.022323608, -0.05734253, -0.009841919, -0.0014305115, 0.011009216, 0.004108429, 0.0057907104, -0.017822266, 0.00881958, -0.0028743744, -0.01322937, 0.01184845, -0.0074501038, 0.013694763, 0.0014076233, 0.03213501, -0.05328369, -0.0063552856, -0.034576416, 0.017547607, -0.05432129, 0.03326416, 0.070251465, 0.0014448166, 0.006668091, -0.001209259, -0.01033783, -0.014549255, -0.042297363, -0.0031013489, 0.010108948, 0.031219482, -0.020233154, -0.01109314, 0.03881836, -0.034301758, -0.00027441978, -0.029937744, 0.01776123, 0.018615723, 0.013267517, -0.0039787292, 0.00089120865, 0.03164673, 0.0317688, 0.0073661804, -0.01701355, -0.04953003, -0.039093018, -0.042114258, -0.03778076, -0.016143799, -0.013961792, 0.005180359, -0.019851685, 0.028686523, -0.0014314651, 0.044036865, 0.008781433, 0.045410156, -0.05783081, -0.010055542, 0.036895752, -0.035888672, -0.085632324, 0.026306152, 0.028579712, 0.0140686035, -0.013519287, 0.004398346, 0.02067566, 0.020492554, -0.015594482, 0.0018062592, -0.003929138, -0.006664276, -0.0071792603, -0.01777649, -0.007865906, -0.009269714, 0.039794922, 0.0039138794, 0.0018234253, -0.031143188, 0.008903503, -0.028869629, 0.025756836, 0.0012340546, -0.019607544, 0.02734375, -0.03717041, -0.013763428, 0.035491943, -0.018569946, -0.026367188, -0.01751709, 0.011238098, -0.039489746, 0.014640808, 0.041229248, -0.015556335, 0.042755127, 0.035125732, -0.06311035, 0.019363403, 0.030960083, -0.06817627, 0.009155273, -0.011268616, -0.0036392212, -0.015319824, 0.0029945374, 0.02696228, 0.006664276, 0.0010786057, -0.022399902, -0.018493652, -0.0068130493, -0.024490356, -0.030639648, -0.0076522827, 0.002298355, -0.024642944, 0.043548584, -0.031219482, 0.027160645, 0.027236938, -0.027496338, 0.008544922, 0.0033245087, -0.036590576, 0.000749588, 0.014350891, 0.04046631, -0.004917145, 0.023468018, 0.044769287, -0.03466797, -0.017562866, -0.019302368, 0.02722168, 0.013427734, 0.038848877, 0.036499023, 0.05090332, -0.012863159, 0.06585693, 0.015167236, -0.043029785, 0.017440796, 0.005458832, -0.06958008, 0.022201538, -0.016662598, 0.029067993, 0.0063705444, -0.04284668, -0.03274536, 0.03665161, 0.008216858, 0.013389587, -0.052825928, -0.07550049, 0.0071525574, -0.019180298, 0.00356102, -0.011016846, 0.03378296, -0.011909485, 0.06262207, -0.0892334, -0.12237549, -0.056243896, 0.03302002, 0.02557373, 0.008171082, -0.021636963, 0.017318726, -0.05053711, 0.016235352, 0.006614685, -0.009536743, 0.0078048706, 0.05947876, -0.0050468445, 0.023040771, -0.07354736, -0.015991211, -0.04940796, 0.034454346, -0.01675415, 0.06512451, -0.058532715, -0.010749817, -0.0054512024, 0.051208496, 0.02268982, 0.015945435, 0.026138306, -0.006580353, -0.030654907, 0.004119873, 0.013633728, -0.036102295, 0.036254883, -0.08483887, 0.022125244, -0.0075035095, -0.013671875, -0.019104004, -0.05343628, 0.06210327, -0.018920898, 0.012374878, -0.0018091202, 0.0028305054, 0.024520874, -0.009437561, -0.010391235, 0.006866455, 0.001458168, 0.0058059692, -0.061706543, -0.02558899, 0.004196167, 0.026367188, 0.011291504, 0.026367188, 0.010665894, -0.019607544, 0.036468506, -0.027893066, -0.015960693, -0.011169434, 0.0010004044, -0.03237915, 0.010147095, 0.026824951, 0.022537231, 0.0012798309, -0.006790161, 0.012664795, 0.016159058, 0.007205963, -0.016860962, 0.011375427, -0.053131104, -0.020324707, -0.0048980713, -0.037384033, -0.0061912537, 0.016616821, -0.03692627, 0.10345459, 0.01889038, 0.0103302, 0.08660889, 0.0027923584, -0.025894165, -0.019760132, 0.015686035, -0.0262146, -0.05230713, -0.0003244877, 0.014816284, -0.0050354004, 0.020385742, -0.016967773, -0.008811951, 0.018066406, 0.011436462, 0.02079773, 0.029830933, 0.0039100647, 0.007217407, 0.03250122, -0.004901886, -0.015060425, -0.015274048, 0.025558472, 0.00894165, 0.011238098, -0.0076065063, 0.035186768, 0.02458191, -0.045043945, 0.018966675, -0.034332275, -0.0181427, -0.012817383, 0.028747559, 0.009239197, -0.0032253265, -0.011947632, -0.03729248, -0.018920898, 0.0014791489, -0.012893677, -0.017868042, 0.008071899, -0.023513794, 0.04309082, 0.008033752, 0.0068740845, -0.024658203, -0.011886597, -0.0101623535, 0.027679443, -0.028533936, 0.010559082, 0.008934021, -0.047180176, -0.014892578, -0.021713257, 0.00017774105, -0.04446411, -0.006828308, 0.024505615, 0.01727295, -0.026779175, -0.017791748, -0.010467529, 0.035003662, -0.034606934, -0.023391724, 0.036621094, -0.005344391, -0.026824951, -0.06384277, -0.004589081, -0.032470703, 0.010131836, 0.020721436, -0.06298828, -0.06317139, -0.01776123, 0.049835205, 0.099609375, 0.046020508, 0.00592041, 0.0065994263, -0.053649902, -0.0051879883, 0.0047569275, -0.0046958923, -0.02432251, -0.05633545, 0.030227661, -0.028686523, 0.03555298, -0.02619934, 0.003479004, -0.046783447, 0.009239197, -0.007129669, -0.049987793, 0.047912598, -0.026916504, 0.02619934, 0.02041626, -0.050109863, -0.07989502, -0.050567627, -0.01776123, 0.035308838, 0.008003235, -0.0059661865, -0.03942871, -0.027069092, -0.07739258, -0.0066452026, 0.033691406, 0.04360962, 0.0007839203, -0.025909424, -0.0022068024, -0.0011434555, -0.036621094, -0.023910522, 0.006729126, -0.039001465, 0.03237915, 0.015853882, -0.014793396, 0.0046195984, -0.039123535, -0.09490967, 0.021484375, -0.008674622, 0.044555664, -0.051574707, -0.03326416, -0.004348755, 0.003232956, -0.004463196, -0.010803223, -0.013206482, -0.009056091, 0.025344849, 0.015388489, 0.013366699, -0.037322998, 0.013504028, 0.009864807, -0.014663696, 0.007598877, 0.01675415, -0.022476196, -0.04034424, 0.042144775, 0.0065078735, 0.045074463, 0.0040283203, -0.09161377, -0.059539795, 0.040496826, -0.0001578331, -0.028961182, 0.017410278, -0.020889282, 0.0107803345, 0.027664185, 0.0056915283, 0.003873825, -0.027008057, 0.0026130676, -0.013908386, -0.011604309]}, "B088P94WNH": {"id": "B088P94WNH", "original": "Brand: Mr. Heater\nName: Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack)\nDescription: Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You'll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you'll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.\nFeatures: Compact but powerful with 3800 BTU of heat\nIdeal for decks, patios, campsites, fishing, hunting, and emergency situations\nHeats any space of up to 100 square feet\nUses 1 pound disposable propane tank as fuel source\n45 degree heating angle helps direct radiant heat where you need it most\n", "metadata": {"Name": "Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack)", "Brand": "Mr. Heater", "Description": "Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You'll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you'll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.", "Features": "Compact but powerful with 3800 BTU of heat\nIdeal for decks, patios, campsites, fishing, hunting, and emergency situations\nHeats any space of up to 100 square feet\nUses 1 pound disposable propane tank as fuel source\n45 degree heating angle helps direct radiant heat where you need it most", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.044891357, -0.030792236, -0.014945984, -0.043182373, -0.02607727, -0.040985107, -0.01171875, -0.0010662079, -0.03540039, 0.0070533752, -0.0004761219, 0.019805908, 0.008522034, -0.03314209, 0.045562744, -0.03314209, 0.010055542, 0.01473999, -0.013648987, -0.019683838, 0.014305115, -0.012565613, -0.050872803, 0.07562256, 0.02104187, -0.035980225, 0.053863525, -0.021514893, 0.020431519, -0.018157959, 0.022109985, -0.0064582825, 0.029052734, -0.008987427, -0.022262573, -0.015945435, -0.008583069, -0.012245178, -0.04058838, 0.04071045, 0.033721924, -0.010818481, -0.05807495, 0.0095825195, -0.068237305, -0.033416748, 0.019378662, 0.019851685, 0.014831543, -0.044952393, -0.0070114136, 0.013961792, 0.015991211, -0.04788208, -0.023788452, 0.010002136, 0.032440186, -0.03164673, 0.007904053, -0.033325195, -0.008659363, 0.028060913, 0.044525146, 0.044403076, -0.068115234, 0.0037631989, 0.036987305, -0.012908936, 0.04949951, -0.084106445, -0.03970337, 0.06359863, 0.027069092, 0.029418945, -0.054595947, -0.05130005, 0.040039062, -0.0014848709, 0.010848999, 0.0010786057, -0.0066604614, -0.015960693, -0.015296936, -0.018432617, 0.030471802, 0.03616333, -0.023162842, -0.027130127, -0.027694702, -0.026519775, -0.0340271, -0.0029716492, -0.0017633438, -0.0054512024, -0.04425049, 0.008049011, -0.053466797, -0.059661865, 0.05126953, 0.02758789, 0.011177063, -0.023880005, 0.019256592, -0.00022506714, 0.0110321045, 0.04522705, -0.0047721863, -0.04888916, 0.00023019314, -0.001917839, -0.019989014, -0.012428284, -0.0110321045, -0.011154175, 0.016067505, 0.028152466, -0.03869629, 0.0357666, -0.014587402, 0.038330078, -0.021270752, -0.021911621, 0.05706787, -0.010101318, 0.015640259, 0.0009918213, -0.036895752, -0.012077332, -0.048095703, 0.05117798, -0.013458252, 0.002500534, 0.017913818, 0.04638672, -0.0047798157, -0.014884949, 0.02659607, -0.024765015, 0.0138168335, -0.037475586, 0.012008667, 0.009033203, 0.016281128, -0.011001587, 0.0030326843, 0.01423645, 0.0143966675, 0.018539429, 0.0093307495, -0.009963989, 0.015487671, -0.022857666, -0.001493454, 0.0026245117, 0.03277588, -0.03555298, 0.02015686, -0.041809082, 0.03970337, -0.027526855, -0.03265381, -0.018600464, -0.0004901886, 0.0047302246, -0.0049438477, 0.013404846, 0.032806396, 0.015434265, 0.012382507, 0.055114746, 0.04928589, 0.012863159, -0.019226074, 0.0049705505, 0.003068924, -0.027008057, -0.011413574, 0.1015625, 0.049438477, -0.12145996, -0.08905029, -0.09527588, 0.13635254, -0.06640625, -0.004611969, -0.034454346, 0.020431519, -0.023284912, 0.017120361, -0.005847931, 0.048828125, 0.018005371, 0.035705566, -0.046539307, -0.030685425, 0.009300232, -0.028244019, 0.035369873, -0.038269043, 0.003320694, -0.0019359589, 0.025939941, 0.010314941, -0.0028533936, 0.039520264, 0.0030727386, 0.005367279, -0.0056915283, 0.0075263977, 0.007003784, -0.005744934, -0.031982422, 0.03363037, -0.08215332, -0.037231445, -0.011207581, -0.04623413, 0.0066719055, -0.0038547516, -0.038604736, 0.031311035, -0.02166748, 0.04107666, 0.0062942505, 0.020446777, -0.03366089, -0.020126343, -0.027008057, -0.016662598, 0.005783081, -0.05343628, 0.034088135, 0.045410156, 0.07672119, 0.009681702, 0.020370483, 0.06964111, 0.05029297, -0.0004210472, -0.045013428, -0.009963989, -0.049102783, -0.05102539, 0.05102539, -0.07757568, 0.00466156, 0.039855957, 0.02330017, -0.009063721, 0.029190063, 0.007507324, -0.0013895035, 0.020309448, 0.017623901, -0.044647217, 0.03237915, 0.004837036, 0.014427185, -0.03540039, 0.033081055, -0.0107803345, 0.028686523, 0.015640259, -0.0061683655, 0.02130127, 0.0044937134, 0.038146973, 0.0385437, 0.006881714, -0.0072288513, -0.0059814453, -0.015151978, 0.003786087, -0.008399963, 0.0077323914, 0.002216339, -0.005382538, 0.004547119, -0.04055786, -0.019439697, -0.0067863464, -0.038909912, -0.0105896, 0.0027008057, 0.044158936, 0.028457642, 0.025314331, 0.01826477, -0.022109985, -0.0069618225, 0.023284912, -0.024398804, -0.051116943, 0.020095825, 0.0021514893, -0.03665161, 0.018447876, -0.02835083, 0.033355713, -0.03616333, 0.03894043, 0.057159424, -0.051971436, 0.05770874, -0.014556885, 0.031234741, -0.0132369995, 0.013969421, 0.0065727234, -0.036712646, 0.009170532, 0.016067505, 0.018630981, -0.031280518, 0.04660034, 0.009674072, 0.003112793, 0.030563354, 0.026794434, 0.05517578, -0.049102783, 0.007801056, -0.041046143, 0.029678345, 0.014732361, 0.020446777, 0.008514404, 0.0068626404, 0.0070533752, 0.018447876, 0.033050537, 0.011245728, 0.007572174, 0.012168884, -0.0050086975, 0.008270264, 0.011947632, 0.019424438, -0.015182495, -0.040161133, 0.017700195, -0.012619019, 0.00021469593, 0.04067993, -0.033569336, -0.009086609, 0.026916504, 0.014755249, -0.019210815, -0.006526947, 0.014862061, -0.03604126, 0.006713867, -0.02015686, 0.03668213, -0.006286621, -0.024642944, -0.024902344, 0.01979065, -0.050842285, -0.029464722, -0.00819397, -0.06097412, -0.036743164, 0.074157715, -0.015235901, -0.023605347, -0.043792725, -0.07336426, 0.0064888, 0.026016235, -0.011871338, -0.035888672, -0.0463562, -0.09063721, 0.015899658, 0.024169922, -0.038848877, 0.015602112, -0.003660202, 0.016494751, 0.007534027, 0.017028809, 0.003583908, 0.042266846, 0.014526367, 0.048431396, 0.048553467, 0.02330017, -0.026000977, -0.012229919, -0.0010681152, 0.0138549805, -0.0046806335, 0.022476196, 0.0077323914, -0.032104492, -0.039276123, -0.029937744, -0.008361816, 0.0015420914, 0.021270752, 0.016815186, -0.02458191, 0.027175903, -0.054504395, 0.013839722, -0.017745972, -0.0004837513, 0.06793213, -0.03112793, -0.032073975, -0.035705566, -0.013412476, 0.00466156, -0.0014886856, -0.007904053, -2.026558e-06, -0.012176514, -0.014961243, 0.031707764, -0.01878357, 0.029754639, 0.024917603, -0.04663086, -0.016937256, -0.03933716, 0.0115737915, -0.0016641617, 0.049560547, -0.021743774, 0.025115967, -0.017669678, -0.009101868, -0.036499023, 0.00059223175, 0.015136719, -0.0025806427, 0.03652954, -0.028244019, -0.02583313, -0.022033691, -0.014526367, 0.024963379, -0.0044670105, -0.00806427, -0.029632568, -0.03338623, -0.02067566, -0.0473938, -0.013374329, 0.017807007, 0.03878784, 0.030029297, 0.012565613, 0.030731201, 0.041870117, 0.03564453, 0.01058197, -0.018600464, 0.009567261, -0.012413025, -0.03677368, 0.013534546, 0.0070495605, -0.11303711, 0.12237549, -0.017364502, 0.007827759, 0.018295288, -0.043914795, 0.047607422, 0.038024902, -0.019714355, 0.021606445, 0.020812988, 0.037078857, -0.02130127, -0.032836914, -0.04333496, -0.04147339, 0.021026611, -0.10522461, 0.048980713, 0.015945435, -0.00881958, 0.02142334, -0.0049552917, -0.012771606, 0.039855957, 0.009315491, 0.013168335, 0.0034637451, 0.037078857, -0.020904541, 0.0024147034, 0.014541626, -0.02822876, 0.013542175, -0.002981186, -0.049957275, 0.0060424805, -0.0390625, -0.02079773, -0.014663696, -0.015686035, -0.021499634, 0.0072402954, 0.0013608932, -0.023635864, -0.010124207, -0.013374329, 0.033569336, 0.016494751, -0.005672455, -0.027420044, 0.055664062, -0.002790451, 0.011077881, -0.0030612946, 0.01940918, -0.0039138794, 0.011230469, 0.013404846, 0.013206482, 0.029052734, -0.039794922, 0.0146102905, -0.018966675, -0.012962341, 0.024612427, -0.014427185, -0.0044670105, 0.001906395, 0.018569946, 0.04626465, -0.02319336, 0.017944336, -0.002855301, -0.026885986, -0.010765076, 0.016845703, 0.025314331, -0.010597229, 0.011169434, -0.041137695, -0.0020694733, -0.036590576, -0.008003235, -0.059539795, 0.0028476715, 0.029907227, -0.058441162, -0.053649902, -0.055664062, 0.059661865, -0.03060913, 0.031158447, -0.002216339, -0.029754639, 0.010871887, 0.010238647, -0.04949951, 0.007598877, -0.040405273, 0.00041747093, 0.0027313232, -0.03366089, 0.003967285, -0.012580872, 0.01889038, 0.008399963, 0.040496826, -0.03100586, 0.006965637, -0.032928467, -0.005973816, 0.003967285, 0.005077362, 0.018692017, -0.030273438, 0.01524353, 0.00076532364, 0.011306763, -0.04147339, -0.02217102, 0.00541687, -0.0101623535, -0.07244873, -0.07232666, 0.03387451, 0.015586853, 0.020858765, 0.00982666, -0.018966675, 0.012527466, -0.035125732, -0.10046387, -0.030899048, -0.02470398, -0.034820557, 0.01889038, -0.0054473877, -0.026611328, 0.02960205, 0.07086182, 0.045715332, -0.03894043, -0.011512756, -0.045806885, 0.0010108948, 0.0007715225, -0.013687134, 0.026168823, -0.026641846, -0.016967773, -0.04159546, 0.043762207, 0.09564209, -0.014518738, 0.04284668, 0.02407837, 0.004901886, 0.031555176, -0.004470825, 0.041015625, -0.0134887695, 0.002544403, -0.02217102, 0.012832642, -0.017318726, -0.019104004, -0.010093689, -0.07336426, -0.0012989044, 0.042785645, 0.003616333, -0.018875122, -0.023269653, -0.023117065, 0.00970459, 0.016708374, -0.054382324, -0.029067993, 0.041168213, 0.0025730133, -0.027328491, -0.0068359375, -0.02003479, 0.01914978, 0.016433716, 0.014053345, -0.022232056, -0.008293152, 0.018356323, 0.006088257, 0.0072631836, 0.04498291, -0.021743774, -0.016189575, -0.06488037, -0.045959473, 0.036346436, -0.071899414, -0.012016296, -0.001786232, -0.008003235, 0.00970459, -0.003768921, -0.0024719238, -0.014030457, -0.0395813, 0.018753052, 0.027694702, 0.029541016, -0.0715332, 0.015914917, -0.0050086975, -0.03717041, -0.046203613, 0.018920898, -0.008728027, -0.08465576, 0.03982544, -0.023910522, 0.037200928, -0.03845215, -0.019439697, -0.005680084, 0.015472412, -0.027786255, 0.001496315, -0.00091457367, -0.03302002, -0.027832031, -0.016738892, -0.0013227463, 0.044799805, -0.017227173, -0.007926941, 0.0011806488, 0.03955078, 0.0042800903, 0.017120361, 0.02658081, -0.0017690659, 0.004245758, -0.005874634, 0.023910522, -0.012756348, 0.012886047, 0.06359863, 0.014022827, 0.008491516, -0.030731201, -0.05029297, -0.043273926, 0.026565552, -0.008392334, 0.027175903, -0.025283813, -0.08093262, 0.009338379, 0.018432617, -0.0015745163, 0.017959595, -0.017166138, -0.011054993, -0.007499695, -0.0029964447, 0.03353882, -0.010604858, 0.057891846, -0.010864258, -0.028686523, -0.037719727, 0.06652832, -0.024047852, -0.048431396, 0.087768555, 0.039398193, 0.02218628, 0.016281128, -0.037017822, -0.019515991, -0.0033950806, 0.0033912659, 0.02619934, -0.015151978, -0.01914978, 0.0473938, -0.027420044, 0.017044067, -0.008804321, 0.012023926, -0.038360596, 0.006729126, -0.004211426, 0.009269714, -0.025985718, -0.047302246, 0.02053833, -0.0068359375, -0.014984131, -0.0068511963, -0.046783447, -0.032348633, 0.020462036, -0.008102417, 0.020141602, 0.02078247, -0.0024299622, -0.009506226, -0.0048065186, -0.009094238, 0.034423828, 0.005317688, -0.023010254, -0.011138916, -0.004043579, 0.00982666, 0.016662598, 0.005004883, -0.0011911392, -0.0064353943, 0.006755829, 0.07501221, -0.018249512, 7.0631504e-05, 0.0090408325, 0.086242676, -0.00045585632, 0.020202637, -0.012039185, 0.014038086, -0.0287323, -0.05517578, 0.0042800903, -0.0053634644, -0.027069092, 0.013366699, -0.056365967, -0.014083862, -0.018356323, -0.02583313, 0.0340271, -0.03717041, 0.033172607, 0.009483337, -0.012802124, 0.013893127, -0.018554688, 0.008644104, -0.019699097, -0.030899048, -0.007965088, 0.030029297, 0.009994507, -0.014350891, -0.049560547, -0.010551453, 0.023406982, 0.016403198, -0.0007867813, 0.004333496, 0.014289856, 0.024383545, -0.06488037, 0.01537323, -0.042388916, -0.0023174286, -0.010574341, -0.00019323826, 0.015914917, 0.0011205673, 0.034606934, -0.0034980774, 0.065979004, -0.035705566, 0.02558899, -0.032440186, -0.019332886, -0.015434265, -0.038360596, -0.00013160706, -0.019714355, -0.016815186, 0.022521973, -0.05014038, 0.014221191, 0.01826477, 0.0024585724, 0.013313293, -0.030563354, 0.033447266, -0.008071899, -0.025665283, -0.026153564, -0.047729492, -0.0034255981, -0.0057296753, 0.010223389, 0.023986816, 0.009094238, -0.018447876, 0.025497437, -0.06878662, 0.0035076141, -0.017440796, -0.0018234253, 0.034362793, 0.039276123, -0.061828613, -0.023132324, -0.019592285, -0.011054993, 0.013328552, 0.030792236, 0.008605957, -0.004009247, 0.04449463, 0.015731812, 0.06567383, -0.0066452026, 0.0109939575, 0.0046157837, 0.0154418945, 0.00072288513, -0.0044059753, -0.013305664, 0.007507324, 0.0013656616, 0.017166138, 0.019577026, -0.013328552, -0.026763916, -0.012573242, -0.0053863525, -0.023330688, 0.00623703, -0.046905518, 0.009147644, 0.064086914, -0.04699707, -0.027297974, -0.0074005127, -0.024810791, -0.039611816, -0.026290894, -0.05493164, 0.013511658, -0.0073547363, -0.01953125, 0.003540039, 0.0128479, 0.05105591, -0.017669678, -0.012756348, 0.010498047, -0.042297363, -0.0064468384, 0.023757935, -0.024887085, -0.05630493, -0.012741089, 0.0340271, -0.064819336, -0.03074646, 0.016830444, -0.0044937134, -0.004169464, 0.008674622, 0.07659912, 0.0178833, 0.0496521, 0.010253906, 0.0014925003, -0.007423401, 0.010467529, -0.016525269, 0.010566711, -0.058807373, -0.041809082, -0.009544373, 0.00919342, 0.040985107, 0.0035381317, 0.034423828, -0.07330322, -0.013954163, -0.062347412, 0.0041618347, 0.020462036, -0.037353516, 0.07159424, 0.0104904175, -0.04208374, 0.046081543, 0.04815674, 0.010635376, -0.009109497, 0.015167236, 0.019104004, -0.023284912, -0.0031967163, -0.011482239, -0.0050201416, 0.02859497, 0.068847656, -0.025466919, -0.0010185242, 0.019363403, -0.028961182, 0.04135132, 0.030563354, -0.011886597, 0.02178955, -0.018661499, -0.01448822, 0.0018529892, -0.03555298, -0.025802612, -0.036071777, 0.037322998, 0.021331787, 0.00970459, -0.013183594, -0.0010910034, -0.035125732, 0.001241684, -0.010986328, -0.013763428, -0.0030937195, -0.02394104, 0.0033874512, 0.0357666, 0.014183044, -0.011688232, -0.020095825, -0.007446289, -0.042053223, -0.006958008, 0.027557373, -0.03466797, -0.011001587, -0.0074310303, 0.024017334, 0.005554199, -0.023269653, -0.109069824, -0.068359375, 0.059387207, 0.011703491, -0.009384155, 0.05621338, -0.02041626, 0.009063721, 0.058288574, -0.04788208, 0.021255493, -0.053009033, 0.015914917, -0.0023040771, -0.026916504]}, "B07NPYMSW8": {"id": "B07NPYMSW8", "original": "Brand: Hot Sox\nName: Hot Sox Boys' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth\nDescription: \nFeatures: 60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex\nImported\nPull On closure\nMachine Wash\nThese BBQ food socks are also available in men's and women's socks\n", "metadata": {"Name": "Hot Sox Boys' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth", "Brand": "Hot Sox", "Description": "", "Features": "60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex\nImported\nPull On closure\nMachine Wash\nThese BBQ food socks are also available in men's and women's socks", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0022907257, -0.017684937, -0.046417236, -0.03074646, 0.006904602, -0.027511597, 0.008361816, 0.03527832, -0.0151901245, -0.008979797, -0.012527466, 0.006916046, -0.028900146, -0.031921387, 0.014984131, -0.0340271, 0.0053482056, 0.0065078735, 0.024307251, -0.03564453, 0.028961182, -0.035827637, 0.015312195, 0.02758789, 0.020690918, 0.033233643, 0.056640625, -0.0014543533, 0.012207031, 0.0045547485, 0.023666382, -0.058746338, 0.06945801, -0.013679504, -0.039245605, -0.015838623, -0.022415161, -0.03390503, -0.075683594, 0.033081055, 0.0070991516, 0.009231567, 0.025604248, 0.006954193, -0.008163452, -0.019714355, -0.0079956055, -0.051574707, -0.032562256, -0.018920898, 0.04458618, 0.00308609, 0.0501709, -0.008003235, 0.0045051575, 0.055480957, -0.03161621, 0.03842163, 0.017852783, -0.006248474, -0.022994995, 0.009117126, 0.022888184, 0.008201599, -0.0045700073, -0.02116394, 0.044769287, 0.017730713, -0.035217285, -0.034851074, 0.026626587, 0.008544922, 0.0020713806, -0.01272583, -0.0050201416, 0.008628845, -0.018066406, -0.0018157959, 0.017944336, 0.021743774, -0.04776001, -0.041290283, -0.020401001, 0.02748108, -0.04925537, 0.028671265, -0.029296875, -0.0045814514, 0.041412354, -0.01725769, 0.021209717, -0.03010559, -0.022994995, 0.07775879, 0.041931152, -0.060821533, 0.0064468384, -0.01033783, 0.01285553, 0.0016698837, -0.0044937134, -0.023590088, -0.014526367, 0.014450073, 0.015655518, -0.002702713, -0.039154053, 0.0127334595, 0.06225586, 0.056030273, -0.0033035278, 0.023544312, 0.044189453, -0.00071668625, -0.018463135, -0.009719849, 0.0010566711, 0.045196533, 0.0087509155, 0.037109375, 0.0028648376, 0.044799805, 0.033233643, -0.03161621, -0.014266968, 0.011131287, -0.030822754, -0.028671265, -0.021881104, 0.046539307, 0.00071287155, 0.004261017, -0.009231567, 0.00054073334, -0.033813477, -0.017501831, 0.019104004, -0.029968262, -0.0023384094, -0.0076828003, 0.022644043, -0.028778076, 0.023895264, 0.007396698, 0.0077667236, 0.010719299, 0.0044517517, 0.009231567, 0.030670166, 0.0098724365, -0.013061523, -0.0015153885, 0.04699707, 0.020980835, -0.041137695, 0.047088623, 0.041290283, -0.0021572113, -0.093688965, -0.032684326, -0.011260986, -0.03289795, 0.026901245, 0.03564453, -0.013549805, 0.057281494, 0.0043144226, -0.02331543, -0.0005531311, -0.015655518, -0.014640808, 0.0051078796, -0.005859375, -0.04611206, -0.021377563, 0.014213562, -0.02835083, 0.0670166, 0.06341553, -0.0904541, -0.064941406, -0.07281494, 0.1204834, -0.03756714, 0.030075073, -0.06939697, -0.002866745, -0.04827881, 0.038513184, 0.013786316, -0.022064209, -0.02609253, -0.06866455, -0.010925293, -0.0039405823, 0.049316406, -0.021209717, 0.016189575, 0.0005469322, -0.011001587, -0.0154418945, 0.006755829, -0.0014162064, -0.016189575, 0.002790451, -0.01889038, 0.009086609, 0.023651123, 0.027893066, 0.048553467, 0.0013799667, 0.02696228, -0.036712646, -0.020233154, -0.019744873, -0.007003784, -0.041625977, 0.023742676, 0.010681152, 0.03704834, 0.005844116, 0.018829346, 0.010787964, -0.050750732, 0.010124207, -0.029174805, -0.022033691, -0.03363037, -0.020751953, -0.024917603, 0.005393982, 0.06463623, -0.02015686, 0.07421875, 0.0018081665, 0.029663086, 0.058380127, 0.07788086, 0.010055542, -0.04849243, 0.018310547, 0.011054993, -0.0060310364, 0.01386261, 0.042907715, 0.064086914, 0.03970337, -0.036254883, 0.0011224747, 0.034240723, 0.015075684, 0.0001963377, -0.010726929, 0.0149002075, 0.012184143, -0.012626648, -0.020568848, -0.028503418, 0.010604858, 0.02229309, 0.01411438, 0.08795166, 0.033477783, 0.025787354, 0.044708252, -0.0049057007, 0.009208679, -0.011169434, -0.041046143, 0.024978638, 0.022583008, -0.03161621, -0.0069999695, 0.021896362, 0.04220581, -0.008773804, -0.010108948, -0.017547607, 0.018997192, 0.0042686462, 0.0003452301, 0.0015716553, 0.014701843, 0.0060539246, 0.018081665, -0.0096588135, 0.024627686, 0.019363403, -0.049621582, -0.03302002, -0.0158844, 0.04547119, 0.00031542778, 0.0051574707, 0.018112183, 0.0098724365, 0.060516357, 0.05029297, -0.00069379807, 0.0138549805, -0.03024292, 0.0068588257, -0.019439697, -0.0103302, -0.00869751, 0.028076172, -0.028121948, 0.0033168793, 0.00036859512, -0.042510986, 0.020141602, 0.03201294, 0.039367676, 0.044891357, 0.028015137, 0.007358551, 0.029449463, 0.076293945, 0.035583496, -0.004600525, -0.059814453, 0.06719971, -0.01675415, -0.03302002, 0.05319214, 0.030014038, -0.09075928, 0.008651733, -0.041625977, -0.040618896, 0.008796692, -0.04827881, -0.017044067, 0.050628662, 0.021484375, -0.007221222, 0.0044288635, -0.012184143, -0.018371582, 0.017349243, -0.0011100769, -0.03326416, 0.015151978, -0.02507019, -0.04348755, -0.013763428, 0.030319214, -0.009811401, -0.048065186, 0.012008667, 0.027008057, -0.01838684, -0.031677246, -0.01826477, -0.002714157, 0.030685425, 0.01965332, 0.007144928, 0.04144287, -0.033996582, -0.025604248, -0.0038928986, -0.02960205, 0.017715454, 0.012321472, -0.015914917, -0.03643799, 0.056549072, -0.0062332153, 0.0054130554, 0.027130127, -0.024841309, 0.009460449, -0.015151978, -0.018844604, -0.024017334, -0.01197052, -0.022445679, 0.0104599, -0.027557373, 0.02998352, 0.0024795532, 0.043548584, -0.021118164, -0.006893158, 0.0012350082, -0.051086426, 0.05203247, -0.040100098, 0.0036373138, -0.018356323, 0.055725098, -0.07196045, -0.018997192, -0.014533997, 0.024932861, -0.016067505, -0.061157227, -0.0121154785, -0.025100708, -0.09350586, -0.007209778, -0.017669678, -0.027374268, -0.008544922, -0.00030732155, -0.039764404, -0.056915283, 0.020492554, 0.053863525, -0.057037354, 0.0055236816, -0.06878662, 0.010894775, -0.02722168, 0.030563354, 0.030639648, 0.022628784, -0.05706787, -0.005783081, 0.064453125, -0.022521973, 0.018585205, -0.013282776, -0.024383545, 0.047027588, -0.03274536, 0.020950317, -0.045288086, -0.014076233, 0.0032234192, -0.018859863, -0.018508911, -0.022232056, -0.025726318, 0.0040626526, -0.0022411346, 0.025650024, 0.008796692, -0.007205963, 0.011222839, -0.050598145, -0.061767578, 0.015281677, -0.01701355, -0.024230957, -0.060058594, -0.018325806, -0.008834839, -0.01576233, -0.026535034, 0.014251709, -0.018753052, 0.030883789, -0.009887695, 0.033843994, 0.01020813, 0.028015137, 0.040802002, -0.020690918, -0.017044067, -0.032928467, 0.002231598, -0.0013494492, 0.03201294, 9.2327595e-05, 0.044281006, -0.0047035217, -0.00447464, 0.031082153, 0.013267517, -0.042541504, 0.0211792, 0.015426636, 0.008956909, -0.016235352, -0.003660202, 0.03591919, -0.07110596, -0.030532837, -0.08001709, 0.016235352, -0.063964844, 0.03414917, 0.02897644, 8.404255e-05, 0.048461914, 0.02067566, -0.0006594658, -0.0028095245, 0.0126953125, -0.0048980713, 0.04345703, -0.051513672, -0.00022792816, -0.013542175, -0.014328003, 0.03366089, 0.030227661, 0.0057640076, -0.028793335, 0.0019102097, -0.022338867, -0.004257202, 0.02381897, 0.02619934, 0.024398804, 0.019546509, -0.023544312, -0.001074791, 0.04257202, -0.016296387, -0.022460938, -0.004096985, -0.011306763, 0.013519287, 0.012863159, 0.026412964, -0.007904053, -0.034088135, -0.010047913, -0.030136108, 0.04977417, 0.019088745, -0.03491211, 0.02154541, 0.019927979, 0.02420044, -0.017547607, 0.015464783, 0.011993408, 0.017166138, 0.04852295, 0.0029144287, -0.006095886, -0.0032749176, -0.01235199, -0.0049324036, 0.008422852, 0.001707077, -0.01739502, -0.022155762, -0.00043821335, 0.024383545, -0.01096344, -0.011314392, 0.0029659271, 0.030654907, -0.027435303, -0.033691406, 0.0184021, 0.029296875, -0.09301758, -0.01008606, 0.039733887, -0.024520874, -0.06640625, 0.021133423, -0.010360718, -0.02104187, 0.0067481995, 0.029876709, -0.05886841, 0.0010824203, -0.01953125, -0.02128601, 0.041870117, 0.019561768, 0.04257202, -0.0440979, -0.03955078, -0.03137207, 0.06896973, 0.025421143, -0.0070266724, -0.012809753, -0.05419922, -0.012466431, 0.009414673, 0.0859375, -0.0146102905, 0.060516357, -0.026046753, -0.007080078, -0.064453125, -0.011329651, 0.046447754, -0.048095703, -0.04940796, -0.012145996, 0.07434082, -0.008926392, -0.01977539, -0.05255127, 0.029891968, 0.036224365, -0.03363037, -0.0074043274, 0.028564453, 0.027450562, -0.024368286, 0.012435913, -0.0060768127, -0.031280518, -0.009269714, 0.047210693, 0.02609253, -0.034088135, -0.029769897, -0.034057617, 0.029663086, 0.01838684, -0.036102295, 0.01184082, -0.047302246, 0.0040664673, -0.10852051, 0.085510254, 0.04522705, 0.019882202, 0.00409317, -0.030075073, -0.006843567, -0.0473938, 0.032470703, -0.0079574585, -0.039154053, -0.0052490234, -0.018798828, -0.024749756, -0.023986816, -0.029541016, 0.021057129, -0.0052948, 0.03717041, -0.013038635, 0.0129776, 0.013755798, 0.0015068054, 0.05456543, 0.039764404, 0.027114868, 0.059143066, -0.090270996, -0.07122803, -0.046813965, -0.046722412, -0.018630981, -0.0022735596, -0.0005788803, 0.0030174255, -0.007118225, -0.055908203, 0.026184082, 0.029663086, -0.0061912537, 0.024520874, 0.022583008, -0.02041626, -0.015975952, 0.020523071, 0.032470703, -0.018829346, -0.0121536255, 0.017089844, 0.014022827, 0.05105591, 0.0020656586, 0.0101623535, -0.019577026, -0.0209198, -0.016921997, -0.044647217, 0.009346008, 0.049865723, -0.005596161, 0.0012674332, 0.013580322, -0.039764404, -0.02734375, -0.017425537, 0.0002720356, 0.06842041, 0.003873825, -0.022613525, 0.039093018, 0.017547607, -0.031829834, -0.001657486, 0.0038604736, -0.01322937, -0.012710571, -0.011894226, -0.040008545, -0.021575928, -0.03741455, 0.0073432922, -0.05419922, -0.02796936, -0.027633667, 0.039276123, -0.027557373, -0.007709503, -0.014228821, -0.05569458, 0.04663086, 0.047607422, 0.0340271, -0.019073486, -0.00315094, 0.016494751, 0.0038051605, -0.048034668, -0.010887146, 0.0019130707, 0.019836426, 0.021606445, 0.010307312, -0.0035877228, 0.013725281, -0.015090942, 0.0022239685, 0.016815186, -0.01474762, 0.009727478, 0.034301758, -0.022750854, 0.027496338, 0.020462036, 0.03982544, 0.011741638, 0.04006958, 0.024215698, -0.02571106, 0.017623901, -0.066101074, 0.033416748, 0.0124053955, 0.02104187, 0.04135132, -0.0047569275, 0.015991211, 0.03665161, 0.014755249, 0.05279541, 0.0335083, 0.028564453, 0.05154419, -0.046539307, 0.033813477, -0.012466431, -0.04034424, 0.026046753, -0.026916504, 0.026809692, -0.030166626, -0.0026454926, -0.037475586, 0.009063721, -0.021560669, -0.056640625, 0.025436401, -0.021499634, 0.0076904297, 0.028549194, 0.0034923553, -0.033935547, -0.012870789, -0.0052757263, 0.07824707, 0.074279785, -0.028701782, 0.011451721, 0.028533936, -0.100097656, 0.10430908, -0.021820068, 0.004840851, -0.005756378, 0.0017709732, 0.01134491, -0.021713257, 0.030960083, 0.006137848, 0.022903442, -0.064453125, 0.023956299, -0.0395813, 0.012466431, 0.013336182, 0.006526947, 0.02508545, 0.0010919571, -0.02418518, 0.0039138794, 0.017562866, -0.005016327, -0.0211792, -0.02142334, -0.024627686, -0.058685303, -0.029006958, 0.0035324097, 0.0016927719, 0.017211914, 0.0109939575, 0.04269409, -0.037719727, -0.019088745, 0.038848877, 0.007385254, 0.010345459, 0.0002951622, -0.041229248, -0.032226562, -0.0014419556, 0.026382446, -0.026473999, 0.009666443, 0.042541504, -0.0066375732, 0.026168823, 0.060913086, -0.015686035, 0.0368042, 0.017715454, 0.008453369, -0.023239136, 0.0069618225, 0.03643799, 0.047027588, 0.024017334, 0.0075683594, 0.030776978, 0.04714966, -0.027893066, -0.01058197, 0.026153564, 0.0070228577, -0.027297974, -0.0041618347, -0.015075684, 0.0082092285, -0.020263672, 0.010726929, 0.012870789, -0.002752304, -0.009651184, -0.046020508, -0.007686615, 0.062194824, -0.02281189, -0.015029907, 0.030731201, 0.020843506, -0.05630493, 0.01939392, -0.02432251, -0.019729614, -0.030654907, -0.016616821, 0.019729614, -0.024398804, -0.047851562, -0.008560181, 0.028762817, -0.012039185, 0.04034424, -0.008621216, 0.08770752, 0.027114868, -0.01436615, 0.01600647, 0.0077438354, -0.026443481, 0.04586792, 0.012008667, -0.019500732, 0.033294678, -0.008956909, 0.01625061, 0.048614502, 0.020736694, -0.046539307, 0.00086069107, 0.028137207, -0.0146102905, 0.030899048, -0.038360596, -0.010246277, -0.013168335, -0.015914917, 0.009628296, -0.008300781, 0.0036144257, 0.0066337585, -0.010246277, 0.01398468, -0.027954102, 0.053222656, -0.022613525, -0.031051636, -0.028396606, -0.009925842, -0.03265381, 0.007083893, -0.011764526, -0.021942139, -0.010559082, -0.015808105, 0.007041931, 0.01739502, -0.005252838, 0.019210815, -0.036224365, 0.011238098, -0.0046043396, 0.02949524, 0.03390503, 0.037719727, 0.015716553, 0.057861328, -0.0034503937, -0.05331421, -0.079589844, 0.011116028, -0.033081055, -0.0034370422, 0.054016113, -0.024414062, 0.020828247, -2.0802021e-05, 0.004749298, 0.07531738, 0.018707275, -0.010215759, 0.009132385, 0.0077209473, -0.010688782, -0.013290405, 0.0067634583, -0.019592285, 0.02558899, 0.025741577, -0.0026817322, 0.03414917, 0.00078487396, 0.010551453, -0.03491211, -0.0062217712, -0.023727417, -0.010391235, -0.03414917, -0.0038166046, 0.021987915, 0.01386261, -0.020751953, 0.00705719, 0.038269043, 0.01878357, 0.02557373, 0.012451172, 0.010543823, -0.018981934, -0.04849243, -0.012680054, -0.004055023, 0.012573242, 0.031082153, -0.004463196, 0.036865234, 0.01914978, -0.030960083, 0.034057617, 0.018447876, -0.024795532, -0.029281616, 0.00092840195, 0.00819397, -0.050231934, 0.035247803, 0.024734497, -0.022644043, -0.018814087, 0.081970215, -0.010620117, -0.024734497, -0.014640808, -0.048919678, -0.020065308, -0.022323608, -0.05581665, -0.06390381, -0.021835327, 0.013931274, 0.022994995, -0.0032672882, -0.008811951, -0.00083112717, 0.036010742, 0.0054626465, 0.014015198, -0.0045204163, 0.021469116, 0.03765869, 0.041656494, 0.012901306, 0.027816772, 0.0017938614, -0.050354004, -0.02571106, 0.049041748, 0.0040397644, -0.038482666, 0.033691406, -0.04119873, 0.00049829483, 0.029846191, -0.06903076, -0.010574341, -0.035888672, 0.006465912, -0.011161804, -0.016281128]}, "B0861XQ5M8": {"id": "B0861XQ5M8", "original": "Brand: BBQ Light\nName: LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ\nDescription: Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.\nFeatures: Let the barbecue in the night happier.\nTurns on and off manually or with tilt sensor activation.\nLED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours.\nResists heat and moisture damage with glass-reinforced nylon construction.\nFits current Spirit, Genesis, Genesis II and Summit Grills.\n", "metadata": {"Name": "LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ", "Brand": "BBQ Light", "Description": "Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.", "Features": "Let the barbecue in the night happier.\nTurns on and off manually or with tilt sensor activation.\nLED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours.\nResists heat and moisture damage with glass-reinforced nylon construction.\nFits current Spirit, Genesis, Genesis II and Summit Grills.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.019058228, -0.008735657, -0.00076818466, -0.007045746, -0.0075912476, -0.0026378632, 0.008491516, -0.0026817322, 0.012329102, 0.00043439865, 0.030471802, -0.026809692, -0.0049858093, -0.055786133, -0.0129852295, -0.013420105, 0.0140686035, -0.0059318542, 0.0009150505, -0.029037476, 0.010543823, -0.027404785, -0.018478394, 0.07745361, 0.08477783, -0.042236328, -0.00054883957, -0.022247314, 0.0715332, 0.031982422, 0.04345703, -0.05303955, 0.017120361, 0.02609253, -0.02760315, -0.041381836, -0.010879517, 0.0085372925, -0.014030457, 0.015975952, 0.018966675, 0.014091492, -0.024246216, 0.02609253, -0.02909851, -0.050231934, 0.01977539, -0.016921997, 0.010070801, 0.0034675598, 0.03555298, 0.03567505, 0.028518677, -0.015296936, -0.021148682, 0.009475708, 0.020736694, 0.04095459, 0.03768921, -0.050750732, -0.056884766, 0.007598877, 0.032348633, 0.0046958923, -0.018585205, -0.014694214, 0.07910156, -0.007850647, -0.03967285, -0.045654297, 0.043273926, 0.017288208, -0.0008916855, 0.011833191, -0.015945435, -0.03781128, -0.01260376, -0.062164307, 0.03253174, 0.041229248, -0.04168701, -0.032989502, 0.07281494, -0.008842468, -0.020767212, 0.0059280396, -0.03466797, 0.0026893616, -0.013092041, 0.00029158592, -0.007949829, 0.023635864, -0.03842163, 0.05404663, 0.006462097, -0.0069389343, 0.0013685226, -0.004962921, -0.006679535, -0.00907135, 0.014404297, -0.03048706, 0.003320694, -0.004436493, -0.035888672, 0.064941406, 0.012397766, 0.0054397583, -0.018005371, 0.008346558, 0.00082969666, -0.06530762, 0.0012874603, 0.009132385, -0.04675293, 0.015640259, -0.015335083, -0.018478394, -0.015975952, -0.0056762695, -0.0017938614, 0.01235199, 0.032806396, 0.0015850067, 0.061645508, 0.07232666, -0.024093628, -0.017623901, -0.013893127, -0.037231445, -0.017623901, 0.018295288, 0.064941406, 0.0713501, 0.03253174, 0.0066719055, -0.010093689, -0.0021648407, 0.0016040802, 0.0028705597, 0.02418518, -0.037597656, -0.0019111633, 0.037475586, -0.0054779053, -0.01222229, 0.008735657, 0.037963867, -0.0037879944, -0.048980713, 0.047698975, -0.018295288, 0.038482666, 0.006286621, -0.02760315, -0.018447876, 0.020812988, -0.029052734, -0.012527466, -0.054626465, 0.005428314, 0.008880615, 0.0057868958, -0.007499695, -0.027359009, -0.012641907, 0.0025348663, -0.0028896332, 0.01939392, -0.027023315, 0.010665894, -0.02293396, -0.015640259, -0.0045700073, 0.012931824, 0.03048706, -0.011520386, 0.032287598, 0.06274414, -0.04638672, -0.031951904, -0.0362854, 0.11621094, -0.018951416, 0.012062073, 0.019241333, -0.011810303, -0.00459671, 0.020263672, 0.0040740967, -0.0037879944, 0.013641357, -0.03805542, 0.016723633, -0.023422241, 0.021087646, -0.02583313, 0.042663574, -0.012054443, -0.048553467, 0.0020713806, 0.02128601, -0.018676758, 0.013969421, -0.050811768, 0.016418457, -0.017333984, 0.022720337, 0.027404785, 0.010879517, -0.01651001, -0.013938904, 0.017715454, -0.03894043, -0.021728516, 0.023971558, -0.021636963, 0.0019226074, 0.015098572, 0.030014038, 0.021499634, 0.020095825, -0.012184143, -0.026428223, 0.042510986, 0.027450562, -0.014877319, 0.013015747, 0.093811035, 0.017166138, 0.04067993, -0.007850647, 0.0758667, 0.034942627, -0.021240234, 0.052703857, 0.06304932, 0.03164673, -0.042266846, -0.007598877, 0.0070266724, -0.010475159, -0.0435791, 0.019607544, -0.008636475, 0.001991272, -0.00024819374, 0.003709793, -0.012420654, 0.017684937, 0.0053749084, 0.008514404, 0.034362793, 0.024017334, -0.0005698204, 0.039276123, -0.0033340454, 0.022888184, -0.0725708, 0.053100586, -0.023635864, 0.0059432983, 0.03366089, -0.019714355, 0.008041382, -0.013259888, -0.007850647, -0.017700195, -0.016540527, 0.0039138794, 0.020950317, -0.052520752, -0.01663208, -0.0335083, 0.030807495, -0.04827881, -0.042388916, 0.028930664, 0.007335663, -0.037628174, -0.018920898, -0.01234436, 0.027694702, -0.0032577515, 0.015945435, -0.016464233, 0.04055786, -0.033355713, -0.021438599, -0.02470398, 0.016540527, -0.02557373, -0.03564453, -0.009437561, 0.017532349, -0.039764404, -0.016601562, 0.007835388, 0.0034618378, -0.024734497, -0.043151855, 0.013206482, -0.022216797, -0.003540039, -0.0132369995, 0.015357971, -0.011665344, -0.024520874, -0.0066566467, -0.066101074, 0.055511475, 0.06402588, 0.0340271, -0.022781372, 0.083618164, 0.044830322, 0.028778076, 0.055389404, 0.0491333, 0.013580322, -0.040222168, -0.046936035, -0.01763916, -0.007423401, -0.013053894, 0.0101623535, -0.0067329407, 0.013290405, -0.041503906, 0.004146576, -0.005722046, -0.010650635, 0.0017690659, 0.0418396, -0.0045433044, -0.0018997192, 0.008918762, 0.01902771, 0.0067710876, 0.02507019, 0.039093018, 0.012420654, -0.00031542778, -0.03643799, -0.04208374, -0.00598526, -0.0056037903, 0.02041626, -0.052703857, -0.04135132, 0.03942871, -0.028747559, 0.0057525635, -0.013175964, -0.009284973, -0.014945984, -0.008132935, -0.033203125, -0.03451538, -0.07836914, -0.026428223, -0.02267456, -0.061645508, 0.010765076, 0.07287598, -0.017990112, -0.046875, -0.014221191, 0.04849243, 0.019302368, 0.006958008, -0.0054626465, 0.0126571655, 0.013595581, 0.03945923, -0.030761719, -0.018875122, -0.04232788, -0.0046806335, -0.024475098, 0.012619019, 0.0041275024, 0.014511108, -0.007030487, 0.047546387, 0.033813477, 0.06750488, 0.042053223, 0.03274536, -0.04458618, 0.007221222, 0.0418396, -0.027252197, -0.025375366, 0.0028877258, 0.0033473969, 0.010787964, 0.014457703, -0.021362305, -0.029190063, -0.14172363, 0.0036716461, -0.01159668, -0.037322998, -0.023910522, -0.029769897, -0.10650635, -0.05041504, 0.018157959, 0.068115234, -0.022583008, 0.002319336, 0.0051231384, 0.0012454987, -0.006931305, 0.011383057, 0.012138367, -0.021026611, 0.020111084, 0.0009045601, -0.0030517578, -0.026031494, 0.004142761, 0.020324707, -0.007205963, 0.03250122, -0.008705139, -0.0028533936, 0.02482605, 0.035583496, 0.012252808, -0.0032463074, -0.012283325, -0.0060691833, -0.025665283, 0.0076446533, 0.008010864, 0.003484726, 0.046569824, -0.0340271, -0.029190063, -0.005996704, -0.023620605, 0.0154800415, -0.018127441, -0.014472961, -0.00016510487, -0.06890869, -0.0072402954, -0.07897949, 0.019622803, -0.0047683716, 0.062561035, 0.022994995, 0.024261475, 0.12005615, 0.01751709, 0.051818848, 0.034210205, -0.04788208, -0.029342651, -0.057281494, 0.03326416, 0.030090332, 0.01737976, -0.035095215, 0.05593872, -0.014823914, 0.0060157776, 0.0024471283, -0.04458618, 0.02909851, 0.007610321, -0.00907135, -0.0055007935, -0.010116577, 0.01725769, -0.021713257, 0.032470703, -0.0021686554, -0.019897461, -0.010643005, -0.072265625, 0.09289551, 0.04446411, -0.017120361, 0.04135132, 0.061279297, -0.020309448, 0.048339844, 0.041748047, 0.0014209747, 0.017501831, 0.022445679, -0.04147339, 0.024154663, 0.020736694, -0.012992859, 0.038635254, 0.036102295, -0.05130005, 0.0037231445, -0.064941406, -0.06744385, -0.007873535, 0.038635254, 0.015563965, -0.02671814, -0.026000977, -0.015609741, -0.012550354, -0.050872803, 0.037200928, -0.0016107559, -0.0051193237, 0.011260986, 0.0025501251, -0.046539307, -0.0033912659, 0.0059280396, 0.030776978, 0.032836914, 0.014533997, 0.025909424, 0.0039978027, -0.006713867, -0.0107803345, -0.032318115, -0.000664711, 0.03250122, 0.01222229, 0.0084991455, 0.015808105, -0.0028438568, 0.01285553, -0.023666382, 0.0013446808, 0.035949707, -0.01259613, -0.036315918, -0.022903442, 0.0016431808, 0.022994995, -0.021240234, 0.029022217, -0.058532715, -0.005458832, -0.005504608, -0.06298828, 0.004589081, -0.029022217, -0.020568848, -0.05328369, -0.0079956055, 0.014564514, -0.017471313, -0.05508423, 0.0134887695, -0.0066108704, -0.0011749268, 0.01914978, 0.04425049, -0.05218506, -0.025482178, 0.02104187, -0.011795044, 0.06262207, 0.0075187683, 0.015899658, -0.02758789, 0.0042686462, -0.0075302124, 0.048675537, -0.025222778, 0.0103302, -0.030563354, 0.003129959, 0.009117126, 0.042419434, 0.04232788, 0.013183594, 0.0058555603, -0.030929565, 0.023773193, -0.011795044, -0.03173828, 0.035949707, -0.03579712, 0.0009045601, -0.046203613, -0.0040130615, -0.011741638, -0.008155823, -0.005077362, 0.039215088, -0.033355713, 0.052581787, -0.018936157, 0.034606934, 0.027175903, 0.013092041, -0.0031032562, 0.004776001, 0.0057258606, -0.031982422, -0.0058517456, -0.01737976, 0.038238525, 0.013549805, -0.04055786, 0.0034866333, 0.039215088, -0.06347656, 0.024291992, -0.056488037, -0.04953003, -0.06933594, 0.07543945, 0.08319092, 0.015045166, 0.032165527, 0.01008606, 0.004558563, -0.023239136, 0.020111084, 0.0024204254, -0.030975342, -0.02104187, -0.025802612, 0.0023651123, -0.035369873, -0.014297485, -0.01109314, -0.0065460205, 0.0057640076, -0.006580353, 0.013381958, -0.03277588, 0.028839111, 0.08392334, -0.002008438, 0.030059814, -0.030685425, -0.010795593, 0.007701874, -0.033477783, -0.047790527, -0.03640747, -0.009284973, 0.017852783, 0.027404785, 0.009651184, -0.046875, -0.024719238, 0.040924072, -0.013465881, -0.0119018555, 0.0072898865, 0.02520752, -0.039855957, -0.050994873, 0.0034561157, 0.006252289, -0.04034424, 0.050079346, -0.03768921, -0.026245117, 0.008331299, -0.043792725, 0.05722046, -0.022994995, -0.045532227, 0.05718994, -0.019760132, 0.0037631989, 0.0060272217, 0.04159546, -0.007671356, 0.034179688, -0.034606934, 0.002632141, 0.052093506, 0.068847656, 0.0016584396, -0.04699707, 0.045440674, -0.0010795593, -0.026397705, -0.021469116, 0.0022945404, -0.032409668, 0.021514893, -0.021881104, 0.0073661804, -0.0017347336, -0.008392334, -0.0070381165, -0.044708252, -0.007083893, -0.03555298, 0.03274536, -0.015487671, -0.022567749, -0.04727173, -0.0059661865, 0.025527954, 0.011436462, -0.024902344, -0.00033855438, 0.015213013, -0.0077323914, -0.0014533997, -0.019744873, -0.004016876, -0.006210327, -0.066223145, -0.058441162, 0.020614624, -0.015197754, 0.01828003, -0.05230713, 0.013961792, 0.015975952, -0.030639648, 0.01411438, 0.029067993, -0.06555176, -0.02330017, -0.00031161308, 0.010978699, -0.024414062, -0.033691406, 0.064819336, -0.043762207, -0.049438477, -0.04724121, 0.0395813, -0.018218994, -0.024841309, -0.017089844, -0.005821228, 0.0012969971, 0.016494751, -0.019561768, -0.058441162, -0.012969971, -0.007675171, -0.042114258, -0.02331543, -0.04727173, 0.005504608, 0.022781372, 0.012588501, -0.010757446, 0.049804688, -0.0057525635, -0.024475098, -0.021911621, -0.0025920868, -0.005695343, -0.03665161, 0.018447876, -0.0053977966, -0.006225586, -0.022399902, -0.010383606, -0.09429932, -0.015731812, 0.034973145, 0.042144775, 0.016952515, -0.0132369995, 0.021759033, 0.073791504, -0.057006836, 0.062316895, -0.049194336, 0.015594482, 0.0074653625, 0.061279297, 0.030776978, 0.029785156, -0.007221222, -0.028381348, -0.01158905, 0.018692017, 0.019546509, -0.0035152435, -0.025527954, -0.02532959, 0.028213501, 0.033721924, -0.027404785, 0.061706543, 0.033721924, 0.0070610046, -0.028549194, -0.0046081543, 0.0018825531, -0.047454834, -0.023605347, -0.011978149, 0.02204895, 0.042816162, 0.018600464, 0.013519287, 0.03845215, 0.048583984, 0.0019931793, -0.008522034, 0.012718201, -0.0005683899, 0.01524353, -0.015403748, -0.035461426, 0.024017334, -0.022750854, -0.004951477, 0.022994995, 0.007095337, 0.0033359528, 0.028793335, -0.00020217896, 0.03643799, -0.0135269165, 0.043884277, 0.007896423, -0.058776855, 0.014663696, -0.03427124, -0.003610611, 0.004940033, -0.042999268, -0.009780884, 0.019378662, 0.01374054, 0.010238647, 0.02508545, 0.0057258606, 0.0093307495, 0.009719849, 0.0070114136, -0.006439209, 0.0005092621, 0.013206482, 0.021057129, 0.018035889, -0.024978638, -0.085754395, 0.060455322, -0.030014038, 0.03829956, 0.05368042, -0.03314209, 0.0023441315, 0.025054932, 0.010643005, -0.031021118, -0.03024292, 0.037200928, 0.026535034, -0.031555176, -0.0034484863, 0.023590088, -0.0013875961, -0.017791748, -0.038726807, -0.008956909, -0.019058228, -0.008644104, 0.02267456, 0.016708374, -0.000115156174, -0.03314209, -0.016555786, 0.00058174133, -0.0053863525, 0.002117157, -0.0015640259, 0.042266846, 0.03567505, 0.016464233, 0.037994385, -0.0070724487, -0.0033035278, 0.0011901855, 0.0048294067, -0.025970459, -0.022766113, 0.006072998, 0.009208679, -0.032287598, 0.0031833649, 0.019760132, 0.0020656586, 0.041503906, 0.028915405, -0.011497498, -0.011856079, -0.015602112, 0.00907135, -0.020736694, 0.049194336, -0.04840088, -0.035125732, 0.0076942444, 0.027877808, -0.022949219, 0.011978149, -0.046569824, -0.023544312, -0.020263672, -0.028533936, -0.025924683, -0.019210815, 0.025344849, -0.055145264, 0.007980347, -0.014022827, 0.062194824, 0.0059051514, 0.060272217, -0.039123535, -0.045196533, -0.039123535, 0.033843994, -0.07141113, -0.026245117, -0.02204895, 0.010627747, 0.007221222, -0.0031795502, 0.01914978, 0.08935547, 0.008682251, 0.0029792786, -0.0049819946, -0.0087890625, -0.03970337, 0.05807495, 0.022460938, -0.01197052, 0.0037136078, 0.034942627, 0.0031700134, 0.060180664, 0.020462036, 0.0023479462, -0.05331421, -0.0149383545, -0.04043579, 0.011009216, -0.0046310425, -0.008468628, -0.024368286, -0.03074646, -0.078063965, -0.04714966, -0.005355835, 0.043670654, 0.00044679642, -0.014221191, 0.032440186, -0.030563354, -0.008979797, -0.07342529, -0.016204834, 0.033813477, 0.032440186, -0.014099121, -0.0072517395, 0.035308838, -0.00793457, 0.016433716, 0.035125732, 0.00037837029, -0.02305603, -0.015914917, -0.0016403198, -0.044952393, 0.017974854, -0.0056381226, -0.01096344, -0.010429382, 0.034332275, 0.07489014, -0.032470703, 0.014038086, -0.024871826, 0.0021152496, 0.034606934, -0.02557373, 0.012771606, -0.052856445, 0.016113281, 0.035339355, 0.0049858093, -0.0053215027, -0.0013933182, -0.03237915, -0.023422241, 0.019302368, 0.019424438, 0.015960693, -0.007686615, 0.036254883, 0.025054932, 0.05291748, -0.021331787, -0.084472656, -0.04940796, 0.032806396, -0.015037537, 0.0017881393, 0.020492554, -0.023040771, 0.020446777, 0.031021118, 0.0018348694, 0.0024147034, -0.0032539368, 0.0029277802, 0.010955811, 0.0056610107]}, "B07G8HFNWB": {"id": "B07G8HFNWB", "original": "Brand: Hot Sox\nName: Hot Sox Men's Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)\nDescription: \nFeatures: Barbecue in style with these bold men's crew socks!\n50% Cotton 25% Polyester 23% Nylon 2% Spandex\nFits men's shoe size 6 - 12.5\nMachine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron.\nOne pair pack\n", "metadata": {"Name": "Hot Sox Men's Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)", "Brand": "Hot Sox", "Description": "", "Features": "Barbecue in style with these bold men's crew socks!\n50% Cotton 25% Polyester 23% Nylon 2% Spandex\nFits men's shoe size 6 - 12.5\nMachine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron.\nOne pair pack", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.029067993, 0.017166138, -0.06774902, -0.040130615, 0.03869629, -0.02684021, 0.011566162, 0.007904053, -0.021240234, -0.0038013458, -0.019012451, 0.0037975311, -0.010925293, -0.03744507, 0.026901245, -0.03756714, 0.021896362, 0.011398315, 0.029006958, -0.034698486, 0.026870728, -0.02166748, 0.016616821, 0.05441284, 0.00932312, 0.034729004, 0.1038208, 0.0021533966, 0.011474609, -0.00055217743, 0.025787354, -0.066345215, 0.07318115, -0.03186035, -0.014350891, 0.021530151, 0.0033988953, -0.031219482, -0.034240723, 0.0036506653, 0.020751953, -0.003452301, 0.029144287, -0.006248474, 0.0076675415, -0.030456543, 0.021240234, -0.051086426, -0.019821167, -0.034057617, 0.012229919, 0.019577026, 0.027511597, -0.05819702, 0.011474609, 0.053253174, -0.039794922, 0.038238525, 0.024841309, 0.017578125, -0.01676941, -0.0020198822, 0.013557434, -0.011566162, -0.03125, -0.04437256, 0.049591064, 0.013954163, 0.0134887695, -0.02784729, 0.024520874, 0.0592041, -5.340576e-05, -0.009529114, 0.023483276, -0.017532349, -0.039031982, -0.02104187, 0.021316528, 0.035369873, -0.045196533, -0.054382324, 0.011001587, 0.038879395, -0.0574646, 0.040740967, -0.029525757, -0.006263733, 0.029342651, -0.019897461, 0.019851685, -0.019592285, -0.014846802, 0.06915283, 0.019866943, -0.046173096, -0.024551392, -0.047973633, 0.016326904, -0.023452759, 0.0046463013, -0.015525818, -0.042175293, 0.02607727, 0.011962891, -0.013938904, -0.05722046, -0.018447876, 0.074523926, 0.057525635, 0.006084442, 0.044647217, 0.052093506, -0.023147583, -0.015525818, -0.008392334, 0.027404785, 0.024658203, 0.020965576, -0.0029029846, 0.017807007, 0.045074463, 0.03918457, -0.024261475, -0.03765869, -0.004371643, -0.020706177, -0.053497314, -0.0031318665, 0.0146865845, -0.0107421875, 0.026382446, -0.0026340485, -0.019042969, -0.045288086, -0.0075950623, 0.029434204, -0.040222168, -0.0005059242, 0.0047416687, 0.0026226044, -0.020629883, 0.025100708, -0.0031337738, 0.026290894, 0.01727295, 0.0047569275, 0.0046424866, 0.027236938, 0.01763916, -0.01687622, -9.536743e-06, 0.052764893, 0.019165039, -0.054351807, 0.05407715, 0.042877197, 0.004436493, -0.11425781, -0.02822876, -0.043640137, -0.03012085, 0.037231445, 0.0060157776, -0.035247803, 0.057861328, 0.00920105, -0.026687622, 0.0052337646, 0.006954193, -0.0030651093, -0.0012207031, -0.003862381, -0.046081543, -0.024902344, -0.007633209, -0.040130615, 0.06365967, 0.048431396, -0.06677246, -0.032196045, -0.040130615, 0.1161499, -0.015838623, 0.02420044, -0.057647705, 0.0063095093, -0.034606934, 0.033966064, 0.014167786, -0.0003068447, -0.012863159, -0.055633545, -0.013793945, -0.027816772, 0.07269287, -0.023986816, 0.052368164, -0.017807007, -0.01725769, -0.0028419495, -0.0027313232, -0.0040664673, -0.019088745, -0.011871338, -0.030151367, 0.008346558, 0.027832031, 0.021743774, 0.041381836, 0.0008134842, 0.028778076, -0.018157959, -0.062194824, -0.027236938, 0.014961243, -0.028579712, -0.00060749054, 0.013404846, 0.029464722, 0.005317688, 0.027053833, -0.003929138, -0.040802002, 0.016677856, -0.042022705, -0.013748169, -0.041748047, -0.0075035095, -0.030685425, 0.001666069, 0.06188965, 0.018295288, 0.11004639, 0.020965576, 0.027008057, 0.059143066, 0.042510986, 0.010734558, -0.04336548, 0.02468872, 0.0047798157, 0.0028018951, 0.024215698, 0.037963867, 0.061798096, 0.057891846, -0.028274536, -0.007396698, 0.03765869, 0.01902771, 0.015388489, -0.0024642944, 0.030441284, -0.008682251, -0.00069379807, -0.05230713, -0.03756714, 0.016967773, 0.011871338, -0.003921509, 0.06945801, 0.07287598, 0.006000519, 0.0037651062, 0.011947632, -0.012420654, -0.008918762, -0.03604126, 0.021087646, 0.022994995, -0.024810791, -0.0032253265, 0.011581421, 0.026565552, -0.046081543, -0.01739502, -0.0018777847, 0.018325806, -0.019943237, -0.0073242188, 0.008644104, 0.015335083, -0.0012207031, -0.011306763, 0.002275467, 0.027740479, 0.011642456, -0.017105103, -0.034820557, -0.008911133, 0.03074646, 0.0026054382, 0.020095825, 0.039855957, -0.011817932, 0.06274414, 0.047821045, -0.020690918, 0.02911377, -0.014801025, 0.011802673, 0.0057525635, -0.02609253, -0.023483276, 0.02520752, -0.044677734, -0.0064926147, -0.003276825, -0.053771973, 0.03161621, 0.041809082, 0.032684326, 0.006793976, 0.023880005, -0.0027694702, 0.004600525, 0.05908203, 0.014984131, 0.03253174, -0.013931274, 0.044647217, -0.017791748, -0.016464233, 0.03173828, 0.015426636, -0.052490234, -0.0134887695, -0.03930664, -0.03289795, 0.03515625, -0.009513855, 0.0085372925, 0.051086426, 0.023086548, -0.009796143, 0.00447464, 0.026443481, -0.011505127, -0.024047852, -0.014389038, -0.038024902, -0.008514404, -0.017242432, -0.0440979, 0.014083862, 0.009902954, -0.0003476143, -0.029876709, 0.027679443, -0.000995636, -0.017181396, -0.032806396, -0.003791809, 0.007255554, 0.0027217865, 0.029174805, 0.0385437, 0.05090332, -0.021011353, -0.035461426, 0.0027427673, -0.028381348, 0.03173828, -0.0005159378, -0.0018148422, -0.013595581, 0.056610107, -0.014526367, -0.00724411, -0.001704216, -0.045013428, 0.028915405, -0.00094509125, 0.013366699, 0.005092621, -0.014770508, -0.015823364, 0.013244629, -0.01574707, 0.029022217, 0.023864746, 0.027542114, 0.007129669, -0.027740479, 0.0018501282, -0.044525146, 0.014015198, -0.02357483, 0.00995636, -0.009239197, 0.044647217, -0.073791504, -0.014183044, -0.0023517609, 0.009643555, 0.01259613, -0.057250977, -0.03250122, -0.043060303, -0.08874512, 0.004371643, 0.011116028, -0.037872314, -0.024856567, -0.008468628, -0.05908203, -0.03829956, 0.025283813, 0.08081055, -0.03970337, -0.023971558, -0.03729248, -0.014221191, -0.0101623535, 0.049987793, -0.002796173, 0.0056877136, -0.019805908, -0.009292603, 0.032104492, -0.033050537, 0.011657715, 0.009315491, -0.012290955, 0.02720642, -0.028564453, 0.013580322, -0.037200928, -0.03363037, -0.016326904, -0.028259277, 0.0063667297, -0.00945282, -0.02558899, 0.018478394, -0.033966064, 0.032287598, -0.017623901, -0.019241333, 0.053588867, -0.037139893, -0.04031372, 0.051239014, -0.023223877, 0.0055351257, -0.071777344, 0.027786255, -0.036315918, -0.004142761, -0.026046753, 0.015213013, -0.0104522705, 0.031921387, -0.0011386871, 0.05041504, 0.010185242, 0.01777649, 0.048065186, -0.0104599, -0.037475586, -0.017364502, 0.007686615, -0.012741089, 0.027389526, -0.026229858, 0.02571106, -0.01374054, 0.0073165894, 0.006378174, -0.017868042, 0.016433716, 0.048736572, 0.03338623, -0.010131836, -0.016571045, -0.017227173, 0.06124878, -0.10021973, -0.021194458, -0.08087158, 0.006767273, -0.044555664, 0.034484863, 0.02645874, 0.0008740425, 0.058441162, 0.045410156, 0.009719849, 0.023849487, 0.004924774, 0.014266968, 0.015899658, 0.028366089, 0.0115356445, 0.008468628, -0.016967773, 0.04837036, 0.011222839, -0.0032653809, -0.039489746, -0.008674622, -0.01763916, 0.0040779114, -0.007633209, 0.03137207, 0.024932861, -0.005130768, -0.019378662, -0.03591919, 0.0047073364, -0.046691895, -0.012687683, 0.0013875961, -0.0118637085, 0.0022945404, 0.009384155, 0.020965576, -0.002521515, -0.026931763, -0.0041160583, -0.032348633, 0.04434204, 0.02709961, -0.035095215, -0.004562378, 0.04269409, 6.8068504e-05, 0.030731201, -0.009239197, -0.0037384033, 0.0025558472, 0.01713562, 0.037322998, -0.016647339, -0.01737976, -0.025634766, -0.032287598, -0.038635254, 0.007160187, -0.037628174, -0.04522705, 0.0060806274, 0.03414917, -0.007648468, -0.023834229, 0.005809784, 0.03314209, -0.046020508, -0.028762817, 0.02078247, 0.03656006, -0.07055664, -0.03289795, 0.001964569, 0.021774292, -0.014945984, 0.01033783, -0.011795044, -0.038146973, -0.00038981438, 0.0473938, -0.05041504, -0.008369446, 0.033355713, -0.011146545, 0.030654907, 0.006816864, 0.0340271, -0.050201416, -0.010955811, -0.0335083, 0.079711914, 0.024276733, -0.010055542, -0.018539429, -0.023895264, -0.007019043, 0.046020508, 0.049224854, -0.016693115, 0.010383606, -0.02128601, -0.05606079, -0.07409668, 0.029571533, 0.03869629, -0.038879395, -0.034240723, 0.014503479, 0.07159424, 0.0067634583, -0.031799316, -0.026397705, 0.046325684, 0.025939941, -0.007129669, -0.01576233, 0.04269409, 0.023361206, -0.06097412, 0.024154663, 0.0038375854, -0.03933716, 0.006942749, 0.060699463, -0.01158905, -0.031280518, -0.01663208, -0.0013427734, 0.04019165, 0.046966553, -0.03729248, -0.007865906, -0.021499634, 0.0023078918, -0.10296631, 0.08917236, 0.015327454, 0.006378174, -0.00073957443, -0.025161743, -0.0018701553, -0.041992188, 0.010597229, 0.004043579, 0.0018386841, -0.029449463, -0.04272461, -0.0011148453, -0.05407715, -0.016738892, 0.008140564, 0.012321472, 0.031311035, -0.032684326, 0.013053894, 0.015007019, -0.0012111664, 0.010879517, 0.03366089, -0.008255005, 0.034210205, -0.061798096, -0.041107178, -0.037841797, -0.016494751, 0.016906738, 0.0026988983, -0.015640259, -0.005645752, -0.0059013367, -0.068237305, 0.02609253, 0.0357666, 0.0030174255, 0.012237549, 0.02720642, -0.031341553, -0.011642456, 0.0010547638, 0.014228821, -0.012046814, -0.016738892, 0.020095825, 0.010971069, 0.04559326, -0.014533997, 0.023117065, -0.027511597, -0.026382446, -0.03100586, -0.0340271, 0.017868042, 0.037506104, 0.0129852295, 0.0035324097, 0.017471313, -0.034729004, -0.017959595, -0.020828247, -0.01977539, 0.06488037, -0.0063209534, -0.010498047, 0.04232788, 0.0040626526, -0.039916992, 0.012466431, 0.026916504, -0.021057129, -0.016845703, 0.01473999, -0.040649414, -0.06335449, -0.023284912, 0.008659363, -0.045074463, -0.050872803, -0.026855469, 0.04248047, -0.029296875, 0.0132751465, -0.021133423, -0.050201416, 0.029800415, 0.022750854, -0.0032157898, -0.034973145, 0.00022530556, -0.026901245, -0.0029010773, -0.04446411, -0.007083893, 0.012237549, 0.021652222, 0.011398315, 0.003627777, -0.010009766, 0.0113220215, -0.008125305, -0.03363037, -0.027709961, 0.033111572, 0.012771606, 0.024383545, -0.05996704, 0.02835083, 0.005016327, 0.014877319, 0.00021207333, 0.03173828, 0.037322998, -0.031433105, -0.007297516, -0.043792725, 0.053710938, 0.00084781647, 0.011619568, 0.07092285, 0.002275467, 0.021453857, 0.034179688, 0.01309967, 0.054870605, 0.02998352, 0.03237915, 0.046539307, -0.046569824, 0.028457642, -0.017852783, -0.042785645, 0.04260254, -0.028198242, 0.011558533, -0.040893555, 0.010108948, -0.010986328, 0.039001465, -0.039367676, -0.005443573, 0.0236969, -0.011932373, -0.007598877, -0.027954102, -0.028198242, -0.0079574585, -0.0027675629, -0.030059814, 0.07989502, 0.055755615, -0.02532959, -0.0128479, -0.007129669, -0.08465576, 0.1126709, -0.016448975, -0.0043182373, -0.022628784, -0.0021915436, 0.03869629, -0.014831543, 0.023101807, 0.01626587, 0.028396606, -0.052246094, 0.0015192032, -0.037353516, 0.013572693, 0.0067977905, -0.01852417, 0.027862549, 0.018600464, -0.0017118454, 0.03262329, 0.026855469, -0.013969421, -0.01083374, 0.0181427, -0.025177002, -0.07910156, 3.784895e-05, -0.03967285, 0.016571045, 0.014511108, 0.019729614, 0.056427002, -0.042541504, -0.0028877258, 0.025405884, 0.02357483, 0.004207611, -0.0209198, -0.03515625, -0.04434204, 0.009399414, 0.07421875, 0.003856659, -0.016220093, 0.03414917, -0.011947632, 0.017211914, 0.0541687, 0.005405426, 0.011558533, 0.005340576, 0.004524231, -0.016281128, 0.0054016113, 0.064208984, 0.038238525, 0.034423828, -0.04562378, -0.010917664, 0.013557434, 0.0014505386, -0.0009675026, 0.03942871, 0.0137786865, -0.0014410019, -0.007888794, -0.008834839, -0.002943039, -0.0054397583, -0.0143585205, 0.01134491, -0.005432129, -0.0064582825, -0.008659363, -0.0027236938, 0.04977417, -0.050872803, -0.02809143, 0.045562744, 0.0023155212, -0.039215088, 0.01802063, -0.0340271, -0.014839172, 0.012077332, 0.0019817352, -0.0022830963, -0.0446167, -0.033081055, 0.018814087, -0.0034942627, -0.016601562, 0.036102295, -0.038635254, 0.066589355, 0.02734375, -0.0067825317, 0.037231445, -0.001250267, -0.020233154, 0.030029297, 0.01979065, -0.04598999, 0.026519775, 0.0021972656, 0.014724731, 0.027069092, 0.040527344, -0.01727295, 0.001042366, -0.008422852, 0.004131317, 0.020767212, -0.007320404, -0.00052928925, -0.008880615, -0.011634827, -4.464388e-05, -0.014755249, -0.01838684, 0.013412476, -0.027252197, -0.003709793, -0.033691406, 0.06048584, -0.027633667, -0.028671265, -0.026351929, -0.022842407, -0.0028839111, -0.0033721924, -0.002040863, -0.020629883, -0.027801514, -0.017745972, 0.041412354, 0.0043525696, -0.021240234, 0.014190674, -0.026763916, -0.043670654, -0.025939941, -9.018183e-05, 0.004085541, 0.05328369, 0.010826111, 0.03314209, 0.009048462, -0.048034668, -0.061401367, 0.026763916, -0.009155273, -0.025436401, -0.018173218, 0.005947113, 0.021957397, -0.009025574, 0.011833191, 0.042419434, 0.0048713684, -0.008796692, 0.008842468, 0.03945923, -0.013534546, -0.010986328, 0.0069236755, -0.008087158, 0.050994873, 0.02331543, -0.007171631, 0.05697632, 0.0017051697, -0.0020923615, -0.0023956299, -0.010063171, -0.026931763, -0.00737381, -0.018478394, -0.007511139, 0.0056877136, -0.0039749146, -0.04156494, -0.015335083, 0.021453857, 0.020568848, 0.01586914, -0.007434845, -0.0028896332, -0.024414062, -0.0022945404, -0.020126343, 0.0071029663, 0.008003235, 0.04937744, -0.005264282, 0.014694214, 0.02218628, -0.020095825, 0.027175903, 0.0059280396, -0.00970459, -0.03955078, -0.008049011, 0.0056419373, -0.072265625, 0.028701782, -0.014137268, -0.02658081, -0.041809082, 0.0748291, -0.025405884, -0.0061950684, 0.01953125, -0.06274414, -0.012557983, -0.011856079, -0.038024902, -0.09033203, -0.065979004, 0.012908936, 0.052001953, -0.048309326, 0.017059326, -0.0284729, 0.03543091, -0.011894226, 0.024353027, 0.00844574, 0.02861023, 0.0033683777, 0.04269409, 0.035125732, 0.0234375, -0.0154953, -0.047912598, -0.035705566, 0.048034668, 0.017562866, -0.031707764, 0.03842163, -0.025741577, -0.009010315, 0.01864624, -0.0748291, -0.009887695, -0.0357666, 0.046203613, -0.013519287, -0.0013475418]}, "B000DZKZLQ": {"id": "B000DZKZLQ", "original": "Brand: Mr. Heater\nName: Mr. Heater F273769 Portable Propane Table Top Regulator with a 1\"-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular\nDescription: \nFeatures: \n", "metadata": {"Name": "Mr. Heater F273769 Portable Propane Table Top Regulator with a 1\"-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular", "Brand": "Mr. Heater", "Description": "", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.000813961, -0.026550293, 0.002281189, -0.016159058, -0.043151855, 0.0038261414, -0.028045654, -0.0074920654, -0.048431396, 0.013298035, 0.049438477, 0.021652222, 0.016418457, -0.062347412, 0.05947876, -0.005847931, 0.0151901245, 0.0074882507, 0.0010223389, -0.014450073, 0.01109314, 0.009475708, -0.02885437, 0.045043945, 0.025436401, -0.01675415, 0.06359863, -0.016952515, 0.021606445, -0.01374054, 0.03189087, -0.014930725, 0.012130737, 0.004749298, 0.012016296, -0.022964478, -0.010223389, 0.009407043, -0.029724121, 0.020767212, 0.020751953, 0.0030326843, -0.017669678, 0.01776123, -0.057525635, -0.035614014, 0.018447876, 0.027038574, 0.028015137, -0.008544922, -0.020065308, 0.02911377, -0.008605957, -0.053985596, -0.01424408, -0.017089844, 0.054351807, -0.024017334, -0.0010471344, -0.025177002, -0.01826477, 0.05303955, 0.028320312, 0.010856628, -0.035827637, 0.028686523, 0.060577393, -0.013130188, 0.05822754, -0.054382324, -0.060058594, 0.047729492, 0.020614624, 0.030197144, -0.07098389, -0.027618408, 0.006023407, -0.006839752, 0.047210693, -0.01802063, -0.006717682, 0.001080513, -0.0014600754, -0.013626099, 0.022125244, 0.030792236, -0.01902771, -0.019744873, -0.04232788, -0.019943237, -0.034973145, 0.019744873, -0.038604736, -0.006099701, -0.037506104, 0.010345459, -0.010643005, -0.031799316, 0.03994751, -0.002752304, -0.011222839, -0.024154663, -0.035217285, 0.009391785, 0.010246277, 0.0069847107, 0.020324707, -0.0030918121, 0.013954163, -0.0015745163, -0.02798462, 0.060638428, -0.005264282, -0.013839722, -0.039215088, 0.022262573, -0.020202637, 0.00079488754, 0.0062828064, 0.032562256, -0.00831604, -0.0024662018, 0.046295166, -0.05480957, 0.029571533, -0.013595581, -0.043121338, -0.0031929016, -0.047821045, 0.07348633, -0.044677734, -0.016311646, 0.054351807, 0.04324341, 0.008460999, -0.040802002, 0.06378174, -0.018875122, 0.020004272, -0.023132324, 0.0078048706, -0.010848999, -0.01210022, 0.010261536, -0.02507019, 0.032440186, 0.023025513, -0.002910614, -0.013587952, -0.053955078, -0.019073486, -0.02381897, 0.002664566, 0.019882202, 0.044128418, -0.022949219, 0.025924683, -0.03491211, 0.031677246, -0.01940918, -0.017578125, -0.01701355, -0.01852417, -0.018753052, -0.02331543, 0.006713867, 0.042755127, 0.010620117, 0.02848816, 0.09136963, 0.011581421, -0.017654419, 0.039611816, 0.02947998, -0.014335632, -0.013465881, -0.041229248, 0.024154663, 0.049468994, -0.092285156, -0.07110596, -0.06048584, 0.054840088, -0.017700195, 0.0007452965, -0.054016113, 0.04611206, 0.011688232, -0.0066223145, 0.01890564, 0.050994873, 0.005554199, 0.02470398, -0.054779053, -0.0061454773, -0.01134491, -0.0102005005, -0.009422302, -0.008293152, 0.036743164, 0.0019779205, 0.041107178, -0.01133728, -0.020507812, 0.013885498, -0.0085372925, 0.017440796, 0.01953125, 0.048583984, 0.043823242, -0.025268555, -0.0034294128, 0.013641357, -0.074157715, -0.02859497, 0.035614014, 0.0051193237, 0.014335632, 0.017837524, -0.05722046, 0.042266846, 0.016921997, 0.046661377, 0.026138306, 0.024276733, -0.052124023, 0.0062332153, -0.02658081, 0.009780884, -0.009864807, -0.019699097, 0.035064697, 0.036987305, 0.049316406, -0.004585266, 0.0135269165, 0.058624268, 0.038726807, 0.00015068054, -0.016860962, 0.005935669, -0.042785645, -0.017425537, 0.037963867, -0.054626465, -0.0051460266, 0.025680542, -0.0057144165, -0.031829834, 0.042175293, 0.02293396, 0.02557373, 0.00015413761, 0.014373779, -0.085998535, 0.02973938, -0.022140503, 0.020339966, -0.03756714, 0.042388916, -0.02645874, 0.056152344, 0.05380249, -0.011146545, 0.009567261, 0.06463623, 0.023025513, 0.033813477, -0.037841797, 0.04647827, 0.005504608, -0.014839172, -0.008728027, 0.014732361, 0.054473877, -0.011444092, 0.003862381, 0.0016546249, -0.02432251, 0.005821228, 0.010902405, -0.013824463, 0.0010004044, -0.0071792603, 0.037750244, 0.017501831, -0.00084114075, 0.009025574, -0.009597778, 0.0032787323, 0.041046143, -0.018081665, -0.02381897, -0.0021953583, 0.028457642, -0.04034424, 0.0049819946, -0.028152466, 0.035491943, -0.041503906, 0.0071754456, 0.058532715, -0.036224365, 0.03466797, -0.007545471, 0.019088745, 0.008712769, -0.0051574707, -0.007095337, 0.00056648254, -0.05368042, -0.015571594, 0.011306763, -0.012687683, 0.02279663, 0.006549835, -0.010383606, 0.015838623, -0.016586304, 0.0065307617, -0.010169983, 0.0011119843, -0.009712219, -0.0022945404, 0.010253906, -0.0025138855, 0.002998352, 0.0022258759, -0.042144775, 0.036132812, 0.025390625, -0.005466461, -0.012191772, 0.03656006, 0.0040130615, 0.037963867, -0.015045166, 0.06518555, -0.040618896, -0.07318115, -0.065979004, -0.048797607, 0.0038032532, 0.011474609, -0.030273438, -0.001455307, 0.008003235, 0.024520874, -0.024490356, -0.0063285828, 0.0035305023, -0.021728516, 0.005420685, -0.012001038, 0.006149292, 0.023269653, -0.017730713, -0.02784729, 0.0049324036, -0.05429077, -0.018539429, -0.01209259, -0.0463562, -0.05230713, 0.031158447, 0.0033340454, -0.031707764, -0.03286743, -0.012741089, 0.01625061, 0.0030231476, -0.0016393661, -0.022964478, -0.032318115, -0.019104004, -0.011146545, 0.004749298, -0.037261963, 0.01689148, -0.002380371, 0.02394104, 0.013702393, 0.03186035, 0.032287598, 0.018478394, 0.0003888607, 0.014808655, 0.027679443, 0.021362305, 0.004940033, 0.00096559525, -0.016952515, -0.016052246, -0.016098022, -0.006450653, -0.00073099136, -0.025497437, -0.008300781, -0.010047913, -0.009674072, -0.030456543, 0.0024986267, 0.009033203, -0.04586792, 0.013793945, -0.064208984, -0.02468872, -0.034820557, 0.018035889, 0.046875, -0.023849487, -0.032318115, -0.016342163, -0.044799805, 0.0021381378, 0.01701355, -0.029510498, -0.0026550293, -0.08050537, 0.039276123, 0.08477783, -0.081970215, 0.032043457, 0.03463745, -0.028411865, -0.015129089, -0.01663208, 0.031829834, -0.028381348, 0.032348633, -0.01398468, -0.004486084, -0.014602661, -0.019515991, -0.036193848, 0.0031700134, 0.016555786, 0.008964539, 0.031311035, -0.03100586, -0.011924744, -0.00223732, -0.0047187805, 0.020904541, -0.018722534, 0.015602112, -0.011169434, -0.020004272, -0.04168701, -0.04248047, 0.004142761, 0.023666382, 0.010116577, 0.041656494, 0.008735657, 0.06210327, 0.018997192, 0.03314209, 0.0090408325, -0.03265381, -0.010177612, -0.016998291, -0.0065689087, -0.007297516, -0.025054932, -0.04373169, 0.034057617, 0.0079574585, 0.0024223328, -0.020889282, -0.041656494, 0.08050537, 0.031280518, -0.00045490265, 0.009841919, -0.0021076202, 0.023010254, 0.008712769, -0.022964478, -0.032226562, -0.023742676, 0.013008118, -0.07659912, 0.029663086, 0.011260986, 0.002439499, -0.0043411255, -0.012214661, -0.021896362, 0.00074005127, 0.026489258, 0.016143799, 0.018829346, 0.01234436, -0.006290436, -0.052886963, 0.0132751465, -0.017349243, -0.018615723, -0.024215698, -0.060791016, 0.003396988, -0.0005002022, -0.0075531006, -0.025405884, -0.033813477, 0.036315918, 0.03463745, 0.029541016, -0.007247925, 0.053894043, 0.015609741, 0.049316406, 0.02482605, 0.0005159378, -0.023910522, 0.040649414, 0.002248764, -0.00869751, -0.0012769699, -0.006839752, -0.013595581, 0.03845215, 0.027404785, -0.020248413, 0.0030708313, 0.0064582825, 0.013069153, -0.01725769, 0.0040740967, 0.0390625, 0.002439499, 0.019897461, 0.0050964355, -0.0060920715, 0.00073194504, 0.0033664703, 0.024536133, -0.0072631836, -0.066833496, 2.5987625e-05, 0.038330078, 0.01473999, -0.049743652, 0.022262573, -0.031555176, 0.022277832, -0.03237915, 0.009750366, -0.05065918, -0.002538681, 0.019866943, -0.074523926, -0.031555176, -0.05722046, 0.036499023, -0.08178711, 0.036895752, 0.0031375885, 0.010192871, 0.011749268, 0.029830933, -0.059295654, 0.0011453629, -0.0513916, -0.014152527, 0.042633057, 0.013252258, -0.0054893494, -0.028411865, -0.01133728, 0.01259613, 0.03616333, -0.016784668, 0.044433594, -0.0067214966, -0.02670288, -0.013320923, 0.011116028, 0.035339355, -0.030944824, 0.046051025, 0.0015792847, 0.0014696121, -0.03753662, -0.048736572, 0.0025615692, -0.08880615, -0.07043457, -0.04034424, 0.08276367, 0.022369385, 0.026428223, 0.01158905, -0.005138397, 0.0066986084, -0.038726807, -0.11920166, -0.053527832, -0.0236969, -0.016784668, 0.014007568, 0.011138916, -0.000890255, 0.017547607, 0.054351807, 0.030197144, 0.009796143, 0.0034751892, -0.010925293, -0.016494751, 0.0042800903, -0.026687622, 0.009651184, -0.044403076, 0.0023651123, -0.049865723, 0.027999878, 0.068725586, -0.0074386597, 0.042541504, 0.02015686, 0.0026226044, 0.040283203, -0.012771606, 0.059936523, 0.017578125, 0.0033550262, -0.041534424, -0.007801056, -0.03125, -0.030929565, 0.015777588, -0.035614014, 0.039611816, 0.033966064, 0.004924774, -0.00699234, -0.049194336, -0.013870239, -0.012962341, 0.0135269165, -0.042663574, -0.010665894, 0.035461426, -0.027770996, -0.029327393, -0.0107421875, 0.009262085, -0.015014648, 0.036224365, 0.007873535, -0.0071907043, -0.015533447, 0.025527954, -0.0078125, -0.02078247, 0.012771606, 0.0017299652, -0.00062322617, -0.017852783, 0.03302002, -0.0003376007, 0.006881714, -0.020065308, 0.0051231384, 0.010345459, 0.022064209, -0.0075416565, -0.0069236755, -0.0010948181, -0.040740967, 0.030914307, 0.0043525696, -0.00843811, -0.04171753, 0.054840088, -0.023239136, -0.0076828003, -0.038635254, 0.0030670166, -0.025863647, -0.048431396, 0.052124023, -0.032287598, 0.03378296, -0.014343262, -0.0057029724, 0.029708862, -0.02458191, -0.030929565, -0.015602112, -0.006664276, -0.05987549, 0.043273926, 0.048339844, -0.041809082, 0.051086426, 0.01737976, -0.009674072, -0.0052986145, 0.029800415, -0.0039711, 0.014625549, -0.0058937073, -0.009124756, -0.042755127, 0.008346558, 0.0317688, 0.020477295, 0.015075684, -0.017364502, 0.007865906, -0.00032138824, 0.002904892, -0.020904541, 0.0027999878, -0.0013046265, -0.03994751, 0.03918457, -0.02180481, -0.026367188, -0.016662598, -0.019744873, -0.01084137, 0.013900757, -0.04168701, 0.010635376, 0.0007390976, 0.017166138, 0.03250122, 0.004749298, 0.06616211, -0.017929077, -0.03250122, -0.057525635, 0.037139893, -0.0034275055, 0.0012130737, 0.03250122, 0.041778564, -0.00040125847, 0.041900635, -0.0027809143, -0.041778564, 0.029968262, -0.0015649796, -0.027114868, -0.011833191, -0.032318115, 0.0018482208, 0.022750854, -0.0023345947, -0.019042969, 0.020935059, -0.014579773, 0.002067566, -0.01550293, -0.015975952, -0.01525116, -0.026443481, 0.0053138733, -0.03050232, -0.027664185, -0.04650879, -0.050354004, -0.04660034, -0.033996582, -0.0141067505, 0.04534912, 0.04647827, 0.017044067, 6.622076e-05, 0.0045661926, -0.08203125, 0.039886475, 0.033111572, -0.024856567, 0.001458168, 0.016174316, -0.008872986, -0.008552551, -0.038848877, 0.001039505, -0.039764404, 0.036071777, 0.03894043, 0.05117798, -0.03137207, 0.020614624, 0.03173828, 0.024337769, 0.018936157, 0.013114929, 0.040527344, 0.007926941, -0.04232788, 2.2232533e-05, 0.012611389, -0.033355713, 0.039978027, -0.05291748, -0.026367188, -0.04586792, -0.041015625, 0.0028743744, -0.032836914, 0.018249512, -0.042633057, 0.022766113, -0.0076446533, 0.0052375793, 0.022506714, -0.019073486, -0.049682617, -0.030426025, 0.03640747, 0.030212402, -0.010543823, -0.061767578, -0.0050239563, 0.030197144, -0.011001587, 0.021316528, 0.0052261353, -0.0046424866, 0.023635864, -0.031204224, -0.0031814575, -0.0017690659, 0.021377563, -0.011108398, -0.045166016, 0.0028305054, 0.0026168823, -0.0124435425, -0.0071983337, 0.020401001, 0.022598267, 0.00945282, -0.06451416, 0.0060577393, -0.08581543, -0.080566406, 0.028930664, -0.052856445, -0.031951904, 0.039978027, -0.106933594, 0.027297974, 0.023925781, 0.03994751, 0.041809082, -0.008895874, 0.023971558, -0.013473511, -0.006389618, -0.0178833, -0.041137695, 0.017623901, -0.00605011, 0.009437561, 0.08001709, 0.054992676, -0.010353088, 0.024536133, -0.033691406, 0.010955811, -0.009773254, 0.0134887695, 0.019927979, 0.015068054, -0.051239014, -0.03805542, -0.01083374, -0.0064468384, 0.0019359589, 0.027313232, -0.00022232533, 0.03869629, 0.06945801, 0.015792847, 0.08709717, 0.016082764, 0.005783081, -0.023651123, 0.02935791, 0.010520935, 0.011047363, -0.022583008, 0.020828247, -0.007987976, 0.011642456, 0.023773193, -0.0546875, -0.057495117, -0.023223877, -0.01737976, -0.02583313, -0.011505127, -0.038146973, 0.005432129, 0.04147339, -0.05831909, -0.01777649, -0.00630188, 0.0064315796, -0.018325806, 0.0024356842, -0.03643799, 0.012496948, -0.0063476562, -0.031707764, -0.013969421, 0.01777649, 0.0087509155, -0.0074539185, -0.0236969, 0.032592773, -0.023620605, 0.0077285767, 0.03717041, -0.014785767, -0.06561279, -0.076049805, 0.026168823, -0.09564209, -0.018051147, 0.033935547, -0.020965576, -0.008087158, 0.0074043274, 0.06982422, 0.061706543, 0.058624268, 0.012580872, 0.017959595, -0.032043457, 0.012413025, -0.009674072, 0.01651001, -0.045898438, -0.06604004, 0.005683899, 0.017715454, 0.0014572144, 0.018966675, 0.047454834, -0.067993164, 0.0011129379, -0.02822876, -0.019332886, 0.027023315, -0.032714844, 0.040771484, 0.018371582, -0.03387451, -0.024505615, 0.0059547424, -0.03451538, 0.016036987, 0.0038414001, 0.015365601, -0.023452759, -0.0491333, -0.004055023, -0.008872986, 0.018112183, 0.08850098, -0.02268982, -0.0023174286, 0.034301758, -0.040649414, 0.06970215, 0.022201538, -0.018615723, -0.00012457371, 0.029220581, -0.007019043, 0.010925293, -0.0008869171, 0.025314331, -0.055786133, 0.042419434, 0.0015459061, 0.0057029724, -0.017959595, -0.0463562, -0.032196045, 0.02545166, -0.038208008, -0.047302246, -0.03010559, -0.00970459, 0.024612427, 0.036712646, 0.0052261353, -0.039215088, 0.01171875, 0.03338623, -0.0625, 0.014160156, 0.040618896, -0.0036125183, -0.05090332, 0.0592041, 0.06060791, 0.048431396, -0.0027160645, -0.07324219, -0.053588867, 0.039398193, 0.028717041, -0.016784668, 0.055999756, -0.023895264, 0.017974854, 0.034454346, -0.032043457, -0.0023288727, -0.019805908, 0.04498291, -0.013580322, -0.00818634]}, "B007M2FWEI": {"id": "B007M2FWEI", "original": "Brand: \nName: Camping Emergency Butane Heater Coherent Heat Source Survival Tools\nDescription: Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.\nFeatures: Use standard butane gas cartidge for portability\nCeramic burner\nPressure sensing safety shut off device\nGas consumption 100gm/hr\nCE certificate\n", "metadata": {"Name": "Camping Emergency Butane Heater Coherent Heat Source Survival Tools", "Brand": "", "Description": "Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.", "Features": "Use standard butane gas cartidge for portability\nCeramic burner\nPressure sensing safety shut off device\nGas consumption 100gm/hr\nCE certificate", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0335083, -0.028121948, -0.024337769, -0.004436493, -0.016784668, -0.0011405945, 0.01158905, 0.021972656, -0.014785767, 0.015602112, 0.03086853, -0.008590698, 0.039520264, -0.0513916, 0.018661499, -0.003271103, 0.022354126, -0.009727478, -0.004070282, -0.024719238, 0.021102905, -0.010658264, -0.014137268, 0.07269287, 0.0052337646, 0.00039339066, 0.027420044, -0.02116394, 0.008613586, -0.007106781, 0.018188477, -0.0096206665, 0.012023926, 0.018066406, -0.025115967, -0.029067993, -0.031707764, 0.012031555, -0.03353882, 0.015930176, -0.0016803741, -0.0021896362, -0.016235352, -0.025344849, -0.04269409, 0.008895874, -0.036315918, -0.008514404, 0.033813477, 0.0061149597, 0.02116394, -0.01940918, 0.032836914, 0.01322937, -0.03945923, -0.026489258, -0.0052223206, -0.012336731, 0.015235901, 0.008659363, 0.00023424625, -0.00283432, 0.030807495, 0.0038414001, -0.027893066, 0.043762207, 0.05380249, -0.011505127, -0.003440857, -0.022857666, -0.025405884, -0.014755249, 0.033721924, 0.010864258, -0.030227661, -0.0435791, 0.027648926, 0.009902954, 0.02998352, -0.001159668, -0.010986328, -0.0236969, 0.0010032654, -0.034820557, 0.013221741, -0.02368164, -0.015007019, 0.011917114, -0.008720398, 0.0024166107, -0.013313293, 0.011222839, -0.024429321, 0.02432251, -0.020874023, -0.013839722, -0.049346924, -0.057037354, 0.011520386, 0.033691406, -0.010726929, -0.006576538, 0.010238647, -0.016113281, -0.010505676, 0.056396484, -0.021057129, -0.010192871, 0.018310547, 0.018508911, 0.009605408, -0.030578613, -0.013687134, -0.052703857, 0.013717651, 0.061645508, -0.0107040405, 0.026977539, 0.016174316, 0.015205383, -0.02368164, 0.008163452, -0.001537323, -0.008125305, -0.012786865, -0.01676941, 0.0134887695, -0.012580872, -0.06112671, 0.030471802, -0.011634827, -0.0009531975, 0.03173828, 0.05581665, 0.005329132, -0.011558533, 0.035980225, 0.03164673, 0.03186035, -0.047729492, 0.060516357, 0.027877808, 0.004261017, 0.027450562, 0.0069465637, 0.020202637, 0.05895996, -0.0076141357, -0.0647583, -0.036743164, 0.009521484, 0.041992188, 0.034973145, 0.005710602, -0.031341553, -0.030578613, -0.014251709, -0.028335571, 0.023788452, -0.059417725, -0.009941101, -0.02180481, 0.0030441284, 0.0077667236, -0.01890564, 0.019485474, -0.0076560974, -0.002855301, 0.023666382, 0.017196655, 0.014892578, -0.0022773743, 0.018997192, 0.0026950836, -0.0075569153, 0.010398865, -0.0063476562, 0.062561035, 0.026931763, -0.076660156, -0.049468994, -0.07116699, 0.09588623, -0.027923584, -0.038848877, -0.031021118, 0.04333496, 0.019256592, 0.00031876564, 0.008850098, 0.08856201, 0.016616821, -0.012290955, -0.020217896, -0.04437256, 0.0063972473, 0.044036865, 0.043518066, -0.020507812, 0.005935669, -0.011924744, 0.013656616, -0.022491455, 0.014320374, -0.030303955, -0.011024475, -0.0073051453, 0.012054443, 0.031311035, 0.036499023, -0.008476257, -0.0062828064, 0.023284912, -0.077819824, -0.032928467, -0.020141602, -0.018310547, -0.034973145, 0.006526947, -0.03567505, 0.046142578, 0.013755798, 0.02230835, 0.040496826, 0.011199951, -0.037353516, 0.00049829483, -0.024002075, 0.029891968, -0.027877808, 0.030136108, 0.033111572, 0.04324341, 0.05810547, 0.0073127747, 0.03463745, 0.08319092, 0.020767212, -0.013145447, -0.019439697, 0.01512146, -0.02468872, 1.0967255e-05, 0.041503906, -0.00868988, 0.016662598, 0.037261963, -0.004032135, -0.014785767, 0.057922363, -0.0049934387, 0.024932861, 0.005748749, 0.017745972, -0.04598999, 0.03225708, -0.01777649, -0.010238647, 0.009132385, -0.0023403168, 0.002193451, -0.0064926147, -0.0010910034, -0.0059928894, 0.06335449, -0.058898926, 0.049621582, 0.013931274, 0.009925842, -0.036743164, 0.0044441223, -0.017623901, -0.008132935, -0.046875, 0.05126953, -0.023071289, -0.02885437, 0.016021729, 0.028305054, -0.04498291, -0.007972717, -0.018249512, 0.0019702911, 0.0063171387, 0.043914795, -0.0029716492, 0.01512146, -0.0007572174, -0.028640747, -0.034240723, 0.015037537, -0.019332886, -0.048858643, 0.028411865, -0.03994751, -0.048675537, 0.024276733, -0.004310608, 0.012573242, -0.033355713, -0.014060974, 0.023269653, -0.028289795, 0.0046691895, 0.014091492, 0.002943039, 0.009933472, 0.03439331, 0.016586304, -0.020385742, -0.021240234, -0.02532959, 0.012580872, -0.0090789795, 0.045166016, -0.00014662743, 0.025436401, 0.02279663, 0.03375244, 0.028366089, -0.011192322, 0.010307312, 0.0008716583, 0.011886597, 0.0115356445, -0.019821167, 0.006427765, 0.010856628, -0.06323242, 0.015220642, 0.061828613, -0.0003938675, 0.027450562, 0.002670288, 0.01763916, 0.0065345764, 0.020736694, -0.022521973, -0.0045280457, -0.009750366, 0.0345459, -0.056640625, -0.009239197, 0.008560181, -0.03390503, 0.0008010864, 0.001964569, 0.011421204, 0.01449585, -0.007247925, -0.0012025833, -0.018997192, 0.019180298, -0.025009155, 0.054016113, -0.02961731, -0.07537842, 0.0070648193, 0.046722412, -0.028839111, -0.03656006, -0.028930664, -0.077819824, 0.0040130615, 0.087768555, -0.010299683, -0.03149414, -0.029159546, -0.025314331, 0.0009407997, -0.009315491, -0.0014095306, -0.064086914, -0.005962372, -0.035217285, 0.040130615, -0.004966736, -0.041809082, 0.041015625, 0.010688782, 0.037597656, 0.03845215, -0.013557434, 0.024047852, 0.028030396, 0.03527832, 0.07171631, 0.03010559, 0.026000977, -0.033355713, 0.0154953, 0.015449524, -0.020904541, -0.0121536255, -0.023483276, -0.0035057068, -0.030838013, -0.00831604, -0.02885437, 0.004508972, -0.017364502, -0.010116577, -0.019119263, -0.029953003, 0.03970337, -0.14367676, 0.02067566, -0.059448242, 0.032806396, 0.02406311, -0.02255249, -0.0039482117, -0.02507019, -0.018066406, -0.029724121, 0.0209198, 0.022521973, -0.0284729, 0.033599854, 0.011642456, 0.056396484, -0.12084961, 0.03829956, 0.04144287, -0.014572144, 0.03616333, -0.031585693, -0.013404846, 0.04623413, 0.028427124, -0.0027618408, 0.023666382, -0.030700684, -0.018478394, 0.014511108, -0.013839722, -0.020263672, -0.070739746, 0.0061416626, -0.013839722, -0.04824829, -0.011077881, 0.044799805, 0.0013370514, 0.030090332, -0.012550354, -0.00081157684, -0.014572144, 0.032104492, -0.046905518, 0.014167786, -0.018157959, 0.036132812, 0.008300781, -0.024368286, 0.08459473, 4.0352345e-05, 0.010772705, 0.014526367, -0.022720337, -0.023208618, -0.0044517517, -0.0039749146, -0.026565552, 0.0067329407, -0.07550049, 0.06604004, 0.010536194, 0.012382507, -0.0019931793, -0.009521484, 0.040649414, 0.020095825, -0.006210327, 0.025115967, 0.016189575, 0.004714966, 0.0076522827, -0.058776855, -0.025680542, -0.036010742, 0.001830101, -0.0385437, 0.068725586, 0.020095825, 0.00026988983, 0.045898438, 0.047546387, -0.0056419373, 0.034973145, 0.020324707, 0.014183044, 0.021957397, 0.011428833, -0.010223389, -0.011909485, 0.0056877136, 0.007713318, 0.016464233, 0.0077934265, -0.06414795, 0.030532837, -0.0206604, -0.024780273, -0.06921387, 0.009353638, 0.03125, -0.027130127, 0.0024147034, -0.028762817, -0.033355713, -0.0413208, -0.081726074, 0.015625, -0.03756714, -0.0005788803, 0.022750854, -0.058380127, 0.007423401, 0.003604889, -0.0056152344, 0.010986328, -0.048553467, 0.0284729, 0.037963867, 0.0025997162, -0.07232666, 0.03363037, -0.03881836, -0.008613586, 0.009346008, 0.00793457, -0.030410767, -0.025985718, 0.053527832, 0.031982422, -0.0061416626, 0.051452637, 0.014633179, -0.062805176, 0.0009188652, 0.059753418, 0.019607544, -0.032287598, 0.0006790161, -0.035949707, -0.03515625, -0.017074585, -0.034179688, 0.006450653, -0.040802002, -0.024871826, -0.014259338, -0.035858154, -0.038208008, 0.024139404, 0.0031929016, -0.00023150444, 0.0017194748, -0.006175995, 0.030807495, -0.017700195, -0.034942627, 0.010513306, -0.01940918, -0.018310547, 0.02230835, -0.028900146, -0.031585693, -0.020706177, -0.010574341, 6.568432e-05, 0.03289795, 0.00085401535, -0.01537323, -0.022216797, -0.0016736984, -0.00022661686, 0.03778076, 0.046905518, 0.006866455, 0.03414917, -0.018463135, 0.03173828, -0.032684326, -0.030029297, 0.04763794, -0.03427124, -0.013442993, -0.02130127, 0.0413208, -0.0211792, 0.0065994263, -0.043762207, 0.020385742, 0.022918701, 0.007987976, -0.06488037, -0.064575195, 7.522106e-05, -0.02835083, 0.030654907, 0.0012645721, -0.0027637482, 0.046447754, 0.0769043, 0.018218994, 0.017440796, 0.0071105957, 0.0004734993, -0.0017223358, 0.037872314, -0.05557251, 0.00957489, -0.057128906, -0.026397705, -0.041168213, 0.029083252, 0.0020275116, -0.009628296, 0.003458023, -0.019348145, -0.003616333, -0.022994995, 0.0065994263, -0.007835388, 0.040985107, -0.0013656616, -0.04248047, -0.005126953, -0.04550171, -0.009407043, 0.010169983, -0.014411926, 0.059387207, 0.026123047, 0.010131836, 0.035125732, -0.037994385, -0.028244019, 0.008468628, -0.0018920898, -0.020690918, 0.00029611588, 0.01838684, -0.027328491, -0.013320923, 0.023773193, -0.010925293, -0.0017642975, 0.015281677, 0.016601562, -0.008888245, 0.010269165, 0.0002670288, 0.020599365, -0.0038871765, 0.012420654, 0.0018720627, -0.008857727, -0.03515625, 0.019210815, -0.012001038, 0.0026168823, 0.014465332, 0.037750244, 0.076293945, 0.004825592, 0.05407715, -0.05682373, -0.0070266724, 0.002855301, 0.049560547, 0.009841919, -0.0011739731, -0.035339355, 0.036224365, -0.028762817, -0.015914917, -0.0035152435, 0.013420105, 0.08355713, 0.031585693, -0.011627197, -0.029403687, 0.053833008, -0.0012245178, -0.016860962, -0.021530151, 0.0541687, -0.0395813, -0.008331299, 0.018127441, -0.014976501, -0.06262207, -0.009346008, -0.03656006, 0.0014047623, 0.004764557, -0.04107666, -0.0043945312, 0.028564453, -0.0178833, -0.01096344, -0.005088806, 0.03302002, -0.022491455, 0.022598267, -0.046447754, -0.019470215, 0.019805908, 0.041931152, 0.0051116943, 0.019561768, -0.030960083, -0.05291748, -0.0619812, -0.01411438, -0.04449463, 0.06225586, -0.00945282, -0.0121536255, -0.009712219, -0.0029678345, 0.014602661, -0.02809143, -0.03817749, -0.006084442, 5.5491924e-05, -0.00020480156, -0.0071258545, -0.04260254, 0.05178833, -0.02418518, -0.051208496, 0.0037212372, 0.0340271, -0.016403198, -0.045776367, 0.030822754, 0.017684937, 0.0004925728, 0.021499634, -0.026931763, -0.07446289, 0.016281128, 0.010955811, -0.10394287, -0.038116455, -0.054016113, -0.008460999, 0.011558533, 0.010681152, -0.033294678, 0.0496521, -0.004863739, 0.005493164, -0.06323242, -0.010421753, -0.009681702, -0.025344849, -0.0129776, -0.038208008, 0.014472961, -0.047332764, -0.0061836243, 0.013298035, -0.0056877136, -0.012527466, 0.039367676, 0.02935791, 0.0003540516, -0.0044784546, 0.007587433, -0.04232788, 0.06188965, 0.010696411, -0.052703857, -0.018432617, 0.049804688, 0.04171753, -0.00053167343, -0.03050232, -0.04244995, -0.03250122, -0.013671875, 0.0046806335, 0.040802002, -0.031463623, -0.00074481964, 0.039855957, 0.027770996, -0.00035977364, 0.012611389, 0.036590576, 0.0032539368, -0.051361084, -0.008453369, 0.031280518, -0.034179688, 0.012931824, -0.009597778, -0.022659302, 0.015823364, -0.04977417, 8.7976456e-05, -0.06439209, 0.099487305, -0.07910156, 0.046173096, -0.022140503, -0.02079773, 0.044036865, -0.06359863, 0.039886475, -0.06915283, 0.024520874, -0.0046043396, 0.015930176, 0.025314331, -0.011764526, 0.024673462, 0.0095825195, 0.040008545, 0.0087890625, 0.02470398, 0.009109497, -0.036743164, -0.00982666, -0.012680054, 0.031982422, -0.0005450249, 0.031707764, 0.018630981, 0.039367676, 0.021362305, 0.032348633, -0.004032135, -0.0047798157, 0.021362305, -0.003894806, -0.041503906, 0.027770996, -0.015205383, -0.03338623, 0.009185791, 0.004310608, -0.013114929, -0.028015137, 0.04876709, 0.0029354095, 0.00016069412, 0.030929565, -0.04421997, 0.0074920654, 0.012634277, -0.010658264, -0.039123535, -0.019927979, 0.016586304, 0.012283325, -0.00033903122, 0.0066108704, -0.008163452, 0.04360962, 0.022567749, -0.039367676, 0.011955261, -0.08917236, 0.014625549, 0.016204834, 0.068237305, -0.04827881, -0.083618164, -0.03491211, -0.04071045, -0.009140015, -0.0014190674, -0.03314209, 0.001127243, 0.015220642, -0.032989502, 0.010848999, -0.047576904, -0.007850647, -0.046936035, 0.02482605, 0.042510986, 0.012939453, -0.0017824173, 0.015525818, -0.019241333, 0.026138306, 0.009147644, 0.0043258667, -0.045135498, -0.0025806427, 0.009315491, -0.025497437, 0.028762817, -0.05114746, -0.015533447, 0.026733398, -0.0046463013, 0.012802124, -0.031188965, -0.049468994, -0.032226562, -0.029266357, -0.041931152, 0.049957275, -0.0025196075, -0.040100098, -0.020309448, 0.006954193, -0.010292053, -0.056610107, 0.00592041, -0.015159607, 0.06536865, -0.01109314, 0.00053834915, -0.014930725, -0.030471802, 0.015129089, 0.04071045, -0.02444458, -0.05999756, 0.0071640015, -0.017303467, -0.009536743, -0.017440796, 0.020401001, 0.08062744, 0.021392822, 3.129244e-05, 0.0154953, -0.003211975, 0.021774292, -0.020690918, -0.0025405884, -0.020431519, -0.04953003, -0.01864624, -0.011161804, 0.07019043, -0.020339966, 0.011947632, -0.049224854, 0.006259918, -0.01663208, -0.0005745888, -0.03363037, 0.0031852722, -0.006340027, -0.014839172, -0.059265137, -0.035003662, 0.018630981, 0.05029297, 0.027282715, 0.047607422, 0.040374756, 0.019683838, -0.0335083, -0.02357483, -0.021408081, 0.0009198189, 0.024291992, -0.041503906, -0.0017194748, 0.041381836, -0.012245178, 0.020721436, 0.037994385, 0.035247803, 0.006462097, 0.01991272, -0.0040245056, -0.007896423, -0.015403748, 0.0042304993, -0.02078247, -0.038848877, 0.0024147034, -0.0059928894, 0.00019919872, 0.015686035, -0.040252686, 0.021270752, -0.009117126, -0.0056381226, -0.037963867, -0.0112838745, 0.04611206, 0.012107849, 0.02029419, -0.052124023, 0.038208008, 0.03552246, -0.010040283, 0.01890564, 0.0030574799, 0.018798828, 0.01638794, -0.0006222725, -0.016586304, 0.0748291, -0.039733887, -0.11981201, -0.0625, 0.011360168, 0.01586914, 0.0006403923, 0.07501221, -0.024307251, 0.007587433, 0.05142212, -0.060333252, -0.0049819946, -0.04107666, 0.03668213, -0.0063552856, -0.01828003]}, "B07FLBPHCD": {"id": "B07FLBPHCD", "original": "Brand: Happy BBQ Apparel\nName: BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt\nDescription: \nFeatures: This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh!\nThis fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby!\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "metadata": {"Name": "BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt", "Brand": "Happy BBQ Apparel", "Description": "", "Features": "This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh!\nThis fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby!\nLightweight, Classic fit, Double-needle sleeve and bottom hem", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.019195557, 0.019561768, -0.08282471, -0.024993896, 0.006904602, -0.01979065, -0.0018396378, 0.011367798, -0.010276794, 0.013206482, -0.02909851, -0.002286911, 0.0010824203, -0.008766174, -0.0137786865, -0.044036865, 0.012199402, 0.03451538, 0.0019569397, -0.015319824, -0.007598877, 0.010322571, -0.059387207, 0.013015747, 0.023910522, 0.0234375, 0.076538086, 0.012748718, 0.04171753, 0.022842407, 0.037475586, -0.09460449, 0.02217102, 0.009414673, -0.020736694, -0.040649414, 0.0054244995, -0.006702423, -0.0135650635, 0.013931274, 0.016616821, -0.010009766, -0.05795288, 0.013908386, -0.05178833, -0.047424316, -0.0032978058, -0.016143799, 0.012588501, 0.03390503, 0.016937256, -0.008651733, -0.011924744, 0.03945923, 0.015205383, 0.012519836, 0.012397766, 0.011474609, 0.028015137, -0.036193848, -0.030166626, 0.006919861, 0.03604126, 0.011985779, -0.01638794, -0.016784668, 0.09185791, 0.017196655, -0.019638062, -0.0418396, 0.020629883, 0.032440186, 0.022018433, -0.003730774, 0.0027217865, -0.023010254, 0.00035238266, 0.008621216, 0.015838623, 0.010971069, -0.04248047, -0.0435791, -0.002904892, -0.017196655, -0.031463623, -0.01876831, -0.016098022, 0.014656067, -0.008674622, 0.023742676, -0.01828003, 0.03579712, -0.026565552, 0.05340576, 0.010948181, 0.012466431, -0.035949707, -0.041107178, -0.032348633, -0.039123535, 0.006767273, -0.0017471313, -0.052520752, 0.03427124, 0.005458832, 0.04837036, -0.0107421875, 0.041381836, 0.0524292, 0.0017223358, 0.01146698, 0.052124023, -0.011512756, -0.005973816, -0.031555176, 0.006412506, -0.022277832, -0.0050735474, 0.008110046, -0.0006313324, -0.029174805, -0.025497437, 0.037353516, 0.061828613, 0.05545044, 0.07324219, 0.015853882, -0.024307251, -0.04421997, 0.046203613, -0.017456055, -0.011695862, 0.014274597, 0.045166016, -0.002506256, -0.02418518, 0.034973145, -0.015258789, -0.028518677, 0.0054092407, -0.017059326, 0.005329132, 0.033172607, -0.05380249, 0.009086609, 0.015701294, 0.03253174, 0.020065308, -0.027572632, -0.055755615, 0.047424316, -0.0019292831, 0.03869629, 0.0049438477, -0.053710938, 0.007663727, -0.036956787, 0.010482788, -0.031204224, -0.012680054, -0.011230469, -0.024307251, -0.020492554, 0.036834717, 0.008766174, 0.042388916, 0.032318115, 0.01399231, 0.015220642, -0.0154800415, -0.008178711, -0.037841797, -0.008529663, 0.0004851818, -0.009124756, 0.036254883, -0.02583313, 0.03894043, 0.06317139, -0.06524658, -0.04135132, -0.057800293, 0.08911133, -0.025543213, -0.002008438, -0.038085938, 0.0119018555, 0.0017194748, 0.02470398, 0.015808105, 0.005126953, -0.02835083, -0.010772705, -0.0011758804, 0.00705719, 0.008781433, -0.05303955, 0.007965088, -0.024993896, -0.021652222, -0.0022068024, 0.013648987, -0.029464722, -0.034454346, -0.09942627, -0.009346008, -0.023513794, 0.059631348, 0.030349731, 0.009254456, -0.014343262, -0.0021629333, 0.01486969, -0.060180664, -0.05178833, 0.012779236, -0.019119263, -0.0060768127, 0.008071899, 0.021774292, 0.0033035278, 0.03024292, -0.015930176, 0.011993408, 0.015808105, -0.0038967133, -0.042877197, -0.01939392, -0.011947632, -0.0038204193, -0.0395813, 0.06964111, 0.024520874, 0.026947021, 0.00390625, 0.05340576, 0.066833496, -0.0107421875, -0.014320374, -0.0072021484, 0.00642395, -0.02017212, -0.0231781, 0.037902832, -0.0022583008, -0.018173218, 0.006008148, 0.028366089, -0.013999939, 0.04638672, 0.010284424, 0.015213013, 0.0070343018, 0.0045661926, -0.030380249, 0.024673462, -0.044158936, 0.0046195984, -0.04006958, 0.0446167, -0.03353882, -0.015716553, 0.06762695, -0.03161621, 0.037322998, -0.045562744, 0.015792847, -0.0017175674, -0.02192688, -0.029891968, 0.03186035, 0.022842407, -0.002729416, -0.02709961, 0.021850586, -0.021072388, -0.018600464, 0.0040779114, 0.031234741, -0.025558472, -0.008476257, 0.014923096, 0.030273438, -0.005844116, 0.0116119385, -0.012252808, 0.032958984, -0.015419006, -0.012748718, -0.05380249, -0.019424438, -0.0054512024, -0.02230835, 0.014892578, 0.02381897, -0.05404663, 0.021438599, 0.004272461, 0.006614685, -0.018753052, 0.015457153, 0.04953003, -0.028396606, 0.025680542, 0.01285553, 0.0037078857, -0.016281128, 0.016082764, 0.0256958, -0.02418518, 0.021820068, 0.072631836, 0.023010254, 0.040863037, 0.03463745, 0.009338379, 0.045135498, 0.062561035, 0.07098389, 0.013412476, -0.009277344, 0.024017334, -0.054504395, -0.017929077, 0.012908936, 0.017959595, -0.05404663, -0.0049705505, -0.011520386, 0.011802673, 0.06591797, 0.052001953, 0.039093018, -0.02267456, 0.005870819, -0.023117065, -0.011650085, 0.01890564, -0.015403748, -0.007511139, -0.009521484, -0.0035438538, 0.02507019, -0.029937744, -0.059936523, 0.039245605, 0.009857178, 0.015617371, 0.031982422, 0.009902954, -0.012542725, -0.017074585, -0.012779236, -0.01889038, 0.013885498, -0.028793335, -0.029022217, 0.0019702911, 0.0005030632, -0.049041748, -0.0541687, 0.014755249, -0.038085938, -0.018310547, 0.010894775, -0.020111084, -0.034729004, 0.033355713, 0.051879883, 0.008277893, -0.011116028, 0.013618469, 0.044952393, 0.00092077255, 0.044555664, -0.054626465, -0.042053223, -0.06768799, 0.047576904, -0.021011353, -0.012863159, 0.02519226, -0.006690979, 0.027572632, 0.026947021, 0.027191162, 0.06665039, 0.057250977, 0.011047363, -0.040618896, -0.01058197, 0.04815674, -0.029296875, -0.020370483, 0.021011353, 0.006801605, 0.01008606, 0.023986816, -0.04815674, -0.02709961, -0.032806396, 0.028549194, -0.00869751, 0.00843811, -0.027511597, 0.0023403168, -0.01184082, -0.03845215, -0.015617371, 0.04309082, -0.0055007935, -0.0020561218, -0.026351929, 0.022842407, 0.014930725, -0.039978027, 0.11450195, 0.00982666, -0.028396606, -0.06439209, 0.060394287, -0.05166626, 0.040924072, -0.01939392, -0.035369873, 0.035491943, -0.01725769, 0.01020813, -0.006801605, 0.028442383, 0.0018796921, -0.0006155968, -0.009315491, -0.0013036728, 0.009689331, -0.0003862381, -0.023284912, -0.05215454, -0.0028476715, -0.04220581, 0.019500732, -0.012512207, -0.031341553, -0.005821228, 0.010055542, -0.028457642, -0.014930725, 0.0068893433, -0.04486084, -0.059570312, -0.007347107, 0.026565552, 0.023712158, 0.017486572, 0.01965332, 0.046417236, 0.0121154785, 0.05206299, 0.045654297, -0.008293152, -0.01828003, -0.044036865, 0.03265381, 0.036468506, -0.007987976, -0.08728027, 0.07385254, -0.0184021, 0.013420105, 0.0037269592, -0.049438477, 0.08618164, -0.009422302, -0.006980896, 0.04006958, 0.000893116, -0.023086548, 0.029342651, -0.044891357, -0.022247314, -0.033081055, -0.0075187683, 0.0008149147, 0.044036865, 0.03994751, 0.0027542114, 0.053833008, 0.07147217, -0.0044784546, 0.010238647, -0.004447937, -0.045684814, -0.007205963, 0.015083313, -0.037384033, 0.0178833, 0.004463196, 0.025497437, 0.052642822, 0.023895264, -0.040924072, 0.014289856, -0.0013055801, -0.057373047, 0.014434814, 0.019821167, 0.04135132, -0.0037841797, 0.03878784, 0.026046753, 0.01890564, -0.004802704, 0.026473999, 0.0059280396, -0.009750366, 0.0025024414, -0.020004272, 0.015579224, -0.04284668, -0.004688263, 0.02885437, 0.020065308, 0.006576538, 0.024139404, 0.0135650635, -0.024536133, 0.012748718, -0.02545166, 0.009674072, 0.012214661, 0.018127441, 0.0131073, -0.011817932, -0.015670776, 0.01448822, -0.055389404, -0.04397583, -0.011680603, -0.021057129, -0.00022649765, -0.026367188, -0.031051636, -0.003124237, 0.035858154, 0.04324341, -0.07409668, -0.0014829636, -0.01777649, -0.04055786, -0.000415802, -0.033294678, -0.017410278, -0.078430176, -0.0022506714, 0.008331299, -0.030181885, -0.05630493, 0.02746582, -0.0118637085, -0.022766113, 0.007789612, -0.015182495, -0.068603516, 0.04144287, -0.060302734, -0.045074463, 0.10803223, 0.046295166, -0.02154541, -0.00178051, -0.043151855, -0.015136719, -0.010192871, -0.015510559, -0.008117676, 1.758337e-05, -0.034362793, -0.011817932, 0.0058937073, 0.047210693, -0.02708435, 0.04309082, -0.0042037964, 0.0069007874, -0.036834717, -0.022537231, 0.039123535, -0.0637207, -0.023223877, -0.020217896, 0.05316162, -0.02130127, -0.0395813, 0.0012435913, 0.04156494, 0.018997192, 0.05102539, -0.0040512085, 0.05215454, 0.019042969, -0.009010315, 0.009284973, 0.012336731, 0.0017328262, 0.0022449493, 0.015472412, -0.03656006, 0.02243042, -0.029174805, -0.044433594, 0.03338623, 0.044555664, -0.04788208, -0.0038070679, -0.0647583, 0.030227661, -0.061279297, 0.10205078, 0.101745605, -0.027069092, -0.01020813, 0.033111572, -0.03479004, -0.06518555, 0.02734375, -0.05480957, -0.016601562, -0.03781128, -0.022583008, -0.022903442, -0.05126953, -0.008834839, -0.023529053, -0.00919342, 0.015319824, 0.0043792725, -0.0007696152, -0.026016235, -0.016296387, 0.019577026, 0.031555176, 0.022918701, 0.00995636, 0.026824951, -0.012939453, 0.0141067505, 0.040618896, -0.015037537, 0.0013484955, -0.037109375, 0.027252197, -0.0026569366, -0.0949707, 5.286932e-05, 0.06524658, -0.04953003, 0.027557373, 0.039215088, -0.0602417, 0.017028809, 0.014640808, 0.005077362, -0.035827637, 0.0042877197, 0.026504517, 0.023834229, -0.02986145, 0.03878784, -0.027542114, 0.040802002, 0.01537323, -0.06756592, 0.032348633, -0.03805542, 0.01739502, -0.0033435822, -0.030670166, 0.006755829, -0.005569458, -0.043914795, -0.01586914, -0.05227661, 0.031799316, 0.0073432922, -0.020996094, 0.03387451, 0.00630188, -0.034057617, 0.015670776, 0.03781128, -0.07092285, -0.044036865, 0.027175903, -0.03869629, -0.0012626648, 0.013916016, -0.0064048767, -0.037353516, 0.001964569, -0.035247803, 0.0039901733, -0.018920898, -0.022750854, -0.037200928, -0.0118255615, 0.022247314, -0.036743164, -0.024414062, -0.008026123, 0.015357971, -0.023025513, -0.033935547, -0.036071777, -0.018569946, 0.03262329, -0.0069503784, 0.0184021, -0.0070228577, -0.013420105, 0.013244629, -0.0317688, 0.010978699, -0.025238037, 0.011711121, 0.023773193, 0.010848999, -0.103881836, -0.0008802414, -0.011253357, -0.009933472, -0.023773193, -0.03604126, 0.0335083, -0.037719727, -0.030334473, -0.06390381, 0.01878357, 0.015625, 0.029678345, 0.04763794, 0.028213501, -0.003189087, 0.035095215, 0.018325806, -0.024642944, 0.04034424, 0.0008497238, 0.014076233, -0.04257202, -0.009147644, -0.029373169, 0.0063591003, 0.023391724, -0.041992188, 0.012329102, -0.050964355, -0.053619385, -0.039245605, 0.02684021, -0.008705139, -0.03842163, 0.008979797, -0.025665283, -0.005630493, -0.013496399, -0.023239136, -0.060333252, 3.2782555e-06, 0.010810852, 0.04849243, 0.04977417, -0.0062561035, 0.022109985, 0.04196167, -0.08312988, 0.067871094, -0.001033783, -0.01966858, 0.005657196, 0.01979065, 0.002117157, 0.023529053, -0.013549805, 0.0013093948, 0.02204895, -0.0035152435, 0.010597229, -0.039276123, 0.022109985, -0.0072898865, -0.038391113, 0.008430481, 0.015701294, -0.007827759, 0.018707275, 0.026123047, -0.03857422, -0.013366699, 0.04534912, -0.0038986206, -0.014251709, -0.019744873, 0.0073394775, 0.021514893, -0.0085372925, 0.0011997223, 0.035705566, 0.009399414, -0.021362305, 0.044281006, -0.010475159, 0.019943237, 0.027496338, -0.03692627, 0.00019872189, 0.001291275, 0.012969971, -0.020584106, -0.001499176, 0.0009446144, 0.0206604, 0.03086853, 0.012878418, 0.00623703, 0.031463623, 0.0024223328, -0.008956909, -0.023147583, 0.02809143, 0.0024662018, 0.01626587, 0.016281128, -0.044036865, -0.022994995, -0.015991211, 0.03100586, 0.032409668, 0.02267456, 0.0043678284, 0.035827637, -0.008560181, -0.022750854, -0.013954163, -0.008255005, -0.004875183, -0.033050537, -0.03677368, 0.008010864, -0.085754395, 0.040496826, 0.012161255, 0.015991211, 0.03567505, -0.0026454926, 0.014038086, -0.012771606, -0.0067863464, -0.017196655, -0.04763794, 0.023071289, 0.029220581, -0.0093688965, 0.047027588, 0.0039100647, 0.01737976, -0.004234314, 0.009407043, 0.009384155, 0.017456055, 0.015022278, 0.032287598, -0.053131104, -0.00945282, -0.01235199, -0.017105103, 0.00063705444, 0.01209259, 0.024810791, -0.02571106, 0.053894043, 0.021408081, 0.035980225, 0.064331055, 0.013168335, 0.029846191, -0.038757324, 0.0058898926, -0.0018692017, -0.008674622, -0.004917145, -0.025344849, -0.021896362, -0.0013914108, -0.008857727, -0.019561768, 0.0038433075, -0.016357422, -0.0031356812, -0.02809143, 0.0034732819, 0.014434814, -0.021270752, 0.002861023, -0.05444336, -0.0034484863, -0.015991211, 0.0012874603, 0.027557373, -0.023788452, -0.023040771, 0.06262207, 0.014533997, -0.0011825562, -0.004257202, -0.022994995, -0.003326416, -0.05316162, -0.009475708, -0.006793976, 0.0602417, 0.004524231, 0.06939697, -0.008140564, -0.07080078, -0.07110596, 0.019241333, -0.022079468, -0.0018014908, 0.0008354187, -0.013404846, -0.004535675, -0.015945435, 0.005634308, 0.07244873, 0.01184082, 0.0049209595, -0.004940033, 0.00063323975, -0.017852783, 0.01763916, 0.00415802, -0.029876709, -0.008857727, 0.022827148, 0.0043296814, 0.004131317, 0.07873535, -0.046447754, -0.018157959, -0.058410645, -0.06585693, -0.005458832, 0.0062561035, -0.023529053, -0.0008459091, -0.009521484, -0.03967285, -0.07348633, -0.002702713, 0.0039749146, 0.035247803, 0.03933716, -0.03164673, -0.055389404, -0.022750854, -0.028915405, -0.005580902, 0.04937744, 0.035217285, -0.03274536, 0.03955078, 0.026519775, -0.029373169, 0.019958496, 0.027267456, 0.011001587, -0.041412354, 0.03164673, 0.0017719269, -0.056152344, 0.031188965, -0.033813477, -0.047058105, -0.027450562, -0.03363037, 0.042755127, -0.02029419, 0.0006246567, -0.0051727295, 0.025787354, 0.030654907, -0.02017212, 0.000890255, -0.008712769, -0.012954712, 0.014602661, 0.011116028, -0.008148193, -0.0019779205, -0.017700195, -0.020004272, 0.024749756, 0.003692627, 0.032714844, -0.013298035, 0.027038574, -0.0026550293, 0.070495605, -0.0031089783, -0.04586792, -0.03656006, 0.037384033, 0.018051147, -0.0058517456, 0.018005371, 0.011024475, 0.020858765, 0.01727295, 0.02255249, -0.009513855, 0.016464233, 0.0069503784, 0.0027942657, 0.0069122314]}, "B08JTM7VNS": {"id": "B08JTM7VNS", "original": "Brand: Hisencn\nName: Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12\" for 22.5'' Smokers, Performer Premium Grill\nDescription: \nFeatures: \u3010Compatibility\u3011Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate.\n\u3010Dimensions\u301114.5\" L (the handle part is included) x 12\" W x 1.5\" H.\n\u3010Material\u3011Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill.\n\u3010Features\u3011Seals the moisture and flavor of barbecue and retain the original flavor of barbecue.\n\u3010High-quality\u3011Provides exceptional heat retention and distributiensuring evenly cooked food.\n", "metadata": {"Name": "Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12\" for 22.5'' Smokers, Performer Premium Grill", "Brand": "Hisencn", "Description": "", "Features": "\u3010Compatibility\u3011Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate.\n\u3010Dimensions\u301114.5\" L (the handle part is included) x 12\" W x 1.5\" H.\n\u3010Material\u3011Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill.\n\u3010Features\u3011Seals the moisture and flavor of barbecue and retain the original flavor of barbecue.\n\u3010High-quality\u3011Provides exceptional heat retention and distributiensuring evenly cooked food.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.037200928, 0.022613525, -0.016555786, 0.018798828, -0.017166138, 0.015930176, -0.0067749023, -0.022872925, -0.044708252, 0.03564453, 0.03302002, -0.038330078, 0.048828125, -0.05947876, 0.018951416, -0.025604248, 0.02458191, -0.018157959, -0.006149292, -0.025543213, 0.01171875, 0.006706238, -0.014816284, 0.060394287, 0.031463623, -0.045654297, -0.0027999878, 0.012702942, 0.014297485, 0.012702942, 0.027832031, 0.001326561, 0.051361084, 0.008544922, -0.056488037, -0.02986145, -0.035095215, -0.008834839, -0.036376953, 0.020202637, 0.010787964, 0.0050354004, -0.025970459, 0.04095459, -0.029144287, -0.056396484, 0.028915405, -0.027511597, -0.006500244, 0.01727295, -0.0009889603, -0.0030670166, 0.00037956238, 0.00015950203, -0.005924225, 0.009651184, 0.0054855347, 0.006351471, 0.02923584, -0.005126953, -0.0023612976, -0.00554657, 0.0038604736, -0.002122879, -0.0077667236, 0.014930725, 0.1451416, -0.0110321045, -0.05392456, -0.05316162, 0.020309448, 0.017791748, 0.04776001, -0.01209259, -0.058929443, -0.047180176, 0.051879883, -0.020370483, 0.01737976, -0.033966064, -0.021209717, -0.0009822845, 0.051849365, -0.025497437, -0.029632568, -0.03189087, -0.024459839, -0.0060043335, 0.0039367676, -0.015449524, -0.0033359528, -0.031921387, -0.024108887, 0.03564453, 0.016326904, -0.01940918, -0.031829834, -0.10272217, 0.037475586, 8.189678e-05, 0.04901123, -0.041870117, 0.046325684, 0.005241394, -0.029937744, 0.08428955, 0.0046043396, 0.03665161, -0.0073280334, 0.00365448, 0.016174316, -0.045135498, 0.01424408, -0.04321289, -0.019622803, 0.038757324, 0.029418945, -0.010368347, 0.021072388, -0.013122559, 0.0042915344, 0.025375366, -0.027633667, 0.0713501, 0.012390137, 0.04727173, 0.02708435, -0.011138916, -0.08605957, 0.024291992, -0.021026611, 0.033111572, 0.09082031, 0.038482666, -0.0016117096, -0.017044067, 0.006088257, -0.00073337555, 0.017715454, -0.014663696, -0.017288208, -0.01663208, 0.05331421, -0.0035476685, -0.051727295, -0.009140015, 0.0087509155, 0.03491211, -0.012863159, -0.033050537, -0.01625061, 0.0069618225, 0.023330688, 0.03137207, -0.04852295, 0.028121948, -0.0034561157, -0.0033512115, -0.015670776, -0.03845215, -0.07055664, -0.019607544, 0.034576416, -0.008491516, -0.028213501, 0.028289795, 0.028961182, -0.007972717, 0.016693115, 0.0051116943, -0.028167725, -0.03881836, 0.0138168335, 0.001364708, -0.008865356, 0.05606079, -0.019134521, 0.036132812, 0.051239014, -0.076660156, -0.0519104, -0.051452637, 0.0847168, -0.012680054, -0.019836426, 0.012763977, 0.01309967, 0.012084961, -0.0025196075, 0.004890442, 0.042022705, 0.026885986, -0.04650879, 0.021148682, 0.027557373, 0.015563965, -0.03253174, 0.0033683777, 0.017105103, -0.055480957, 0.047576904, 0.0046195984, 0.017669678, -0.018630981, -0.0016288757, -0.027908325, 0.006122589, 0.020584106, 0.05029297, 0.03366089, -0.014892578, 0.011444092, -0.003982544, -0.04348755, -0.04067993, 0.009185791, -0.04043579, 0.015266418, -0.0023288727, 0.018798828, 0.042053223, -0.024032593, 0.024719238, 0.020111084, 0.023117065, 0.012397766, -0.011672974, 0.03164673, 0.03640747, 0.05014038, -0.019515991, -0.037872314, 0.073791504, 0.056121826, -0.02279663, 0.04724121, 0.08770752, 0.053253174, -0.03866577, -0.013710022, 0.0036010742, -0.01676941, -0.032562256, 0.018447876, -0.005886078, -0.009712219, 0.012908936, 0.005432129, -0.018798828, 0.007762909, -0.010879517, 0.03302002, 0.046875, -0.010292053, -0.022155762, 0.0803833, 0.0211792, 0.025482178, -0.06866455, 0.041900635, -0.0018053055, 0.040924072, -0.010108948, 0.010437012, 0.020309448, 0.007926941, 0.01953125, 0.025939941, -0.0128479, 0.0040397644, 0.0017290115, -0.017974854, 0.015182495, -0.015556335, -0.02015686, 0.0037670135, -0.0023651123, 0.00969696, 0.017440796, -0.0012454987, 0.020584106, 0.04650879, -0.031173706, -0.011428833, 0.010772705, -0.016921997, -0.020187378, 0.036956787, -0.012809753, -0.03665161, 0.017532349, -0.02520752, -0.012466431, -0.020019531, 0.038482666, -0.042663574, 0.06854248, 0.034118652, 0.006549835, -0.01499176, -0.014221191, 0.012374878, -0.06939697, 0.02897644, -0.02017212, -0.024673462, -0.023117065, 0.009033203, -0.019332886, -0.06774902, 0.0039787292, 0.0052719116, 0.042663574, 0.006626129, 0.076293945, 0.0284729, 0.028549194, 0.088134766, 0.044403076, 0.011497498, -0.04534912, 0.033172607, -0.05545044, -0.015975952, 0.004558563, 0.03579712, -0.06384277, -0.010787964, -0.027389526, 0.02166748, -0.023925781, -0.011375427, -0.007904053, 0.040496826, -0.02217102, -0.0025997162, -0.0041885376, 0.03112793, 0.0032539368, -0.009109497, -0.011474609, 0.016220093, 0.01121521, -0.05142212, -0.033111572, 0.0044136047, -0.028045654, 0.019470215, -0.013328552, -0.007270813, -0.0007343292, -0.03527832, 0.011764526, -0.0037059784, 0.007888794, 0.021560669, -0.010025024, -0.037475586, -0.008407593, -0.06512451, 0.0033740997, 0.02432251, -0.012710571, -0.024429321, -0.010986328, -0.01689148, 0.015289307, -0.011489868, -0.04699707, -0.019714355, 0.03729248, -0.040008545, -0.039916992, -0.029159546, -0.05215454, 0.01739502, 0.027114868, -0.03363037, -0.023529053, -0.006126404, -0.00048589706, 0.03555298, -0.046081543, 0.031188965, 0.02330017, 0.035247803, 0.04421997, 0.022109985, 0.010002136, -0.020446777, -0.0031776428, 0.032165527, -0.06335449, -0.01902771, 0.02571106, 0.042938232, -0.0037021637, -0.053131104, -0.008384705, -0.048095703, -0.047607422, -0.028182983, -0.02166748, -0.03439331, -0.010147095, -0.062438965, -0.048706055, -0.03363037, 0.0044898987, 0.023162842, -0.0013923645, 0.024154663, -0.010879517, 0.024871826, 0.00022482872, -0.022705078, -0.010299683, -0.0022525787, 0.005645752, 0.00077056885, 0.0012302399, -0.01966858, 0.03152466, 0.052642822, -0.033477783, 0.034210205, -0.060791016, 0.006629944, -0.01322937, 0.015792847, -0.03878784, 0.008834839, -0.017074585, -0.015945435, -0.035064697, 0.006752014, 0.0078048706, -0.0061302185, 0.033294678, -0.010047913, -0.047607422, -0.031799316, -0.04043579, -0.010787964, -0.017456055, -0.023590088, -0.026535034, -0.051727295, -0.039916992, -0.025604248, -0.01260376, 0.010520935, 0.029388428, 0.028152466, 0.016784668, 0.072509766, -0.035888672, 0.042144775, 0.04324341, 0.02029419, 0.004436493, -0.023590088, 0.077697754, 0.018966675, 0.04425049, -0.045776367, -0.024551392, -0.0051002502, -0.021194458, 0.017471313, -0.00349617, 0.036621094, 0.025527954, -0.0039138794, -0.010360718, -0.00018525124, 0.0055503845, -0.015464783, 0.010482788, -0.0030403137, -0.047851562, -0.0052490234, -0.0791626, 0.06021118, 0.036865234, -0.02432251, 0.052368164, 0.03994751, -0.02609253, 0.02229309, 0.0063972473, 0.020599365, 0.016921997, 0.01625061, -0.013496399, -0.013679504, 0.015640259, -0.027938843, 0.017868042, 9.49502e-05, -0.050842285, 0.0011358261, 0.017425537, -0.051483154, -0.0023918152, 0.026412964, 0.05203247, -0.027801514, -0.00699234, 0.004737854, 0.036590576, -0.04776001, -0.00018024445, 0.035003662, -0.03265381, -0.0023117065, 0.01663208, 0.035888672, -0.04135132, -0.018539429, 0.013122559, 0.06439209, -0.025497437, 0.051574707, -0.0032405853, -0.0011520386, -0.056488037, 0.0046463013, -0.012069702, -0.0066947937, -0.012992859, -0.0013456345, 0.043701172, 0.041290283, -0.000895977, 0.026779175, -0.0005502701, 0.0043907166, -0.02609253, -0.052368164, 0.00028419495, -0.005794525, -0.012550354, -0.029525757, 0.012634277, -0.058288574, -0.014030457, -0.0075569153, -0.04083252, -0.0074043274, -0.010261536, -0.018814087, -0.042510986, -0.0006508827, 0.014862061, -0.074645996, -0.044403076, 0.00333786, -0.014228821, 0.024246216, -0.007282257, -0.0030708313, -0.036254883, 0.0072135925, -0.010612488, -0.017105103, 0.062286377, 0.020980835, 0.046051025, -0.039154053, -0.007423401, -0.03503418, 0.072631836, 0.008270264, 0.023345947, -0.021636963, -0.050689697, 0.012718201, 0.0044517517, 0.052093506, -0.012290955, -0.0014410019, -0.025512695, -0.020767212, -0.0033569336, -0.010871887, 0.0037117004, -0.08129883, -0.019607544, -0.013702393, 0.0657959, -0.010284424, 0.018341064, -0.016616821, -0.0017719269, -0.033081055, -0.0048980713, -0.018569946, 0.014678955, -0.009140015, -0.01940918, 0.009063721, -0.0079422, -0.014442444, 0.014801025, 0.0060691833, -0.001496315, -0.024841309, -0.009155273, -0.030761719, -0.003660202, 0.006416321, -0.032318115, 0.018554688, -0.053527832, 0.022399902, -0.07702637, 0.07800293, 0.015144348, 0.015098572, -0.00067567825, -0.029541016, -0.0054512024, -0.064331055, 0.01689148, -0.055725098, 0.022872925, -0.035339355, -0.020462036, 0.01247406, -0.041656494, 0.025543213, -0.019226074, -0.009506226, 0.0041542053, -0.014778137, 0.01953125, -0.014831543, 0.04763794, 0.027023315, -0.023605347, 0.04989624, 0.011512756, 0.029266357, 0.0072631836, -0.034851074, -0.010139465, -0.047973633, -0.031402588, -0.01020813, 0.031585693, 0.0073394775, -0.037261963, 0.022949219, 0.014640808, -0.009178162, -0.028518677, 0.013771057, -0.0074424744, 0.03894043, 0.025146484, 0.07537842, -0.053344727, 0.037506104, 0.0770874, -0.03717041, 0.039123535, 0.05657959, -0.031311035, 0.064331055, 0.01638794, -0.024017334, 0.05596924, -0.006061554, 0.016799927, -0.0034008026, 0.042816162, -0.0043792725, 0.028945923, -0.03866577, 0.01524353, 0.029937744, 0.031280518, -0.020843506, -0.012825012, 0.037963867, -0.029937744, -0.007534027, 0.018951416, 0.052764893, -0.034118652, -0.015731812, 0.028320312, -0.00283432, -0.05307007, 0.026977539, -0.030166626, -0.029922485, -0.036468506, 0.0020332336, 0.035949707, -0.008613586, -0.015357971, -0.056793213, -0.021560669, -0.015731812, -0.047729492, 0.0104599, -0.042236328, 0.010772705, -0.01713562, 0.021987915, 0.05340576, 0.013046265, -0.030670166, -0.034301758, -0.03668213, 0.014724731, -0.040496826, 0.029083252, 0.010101318, 0.0062828064, 0.0068740845, 0.03137207, 0.03277588, -6.830692e-05, -0.02406311, 0.017486572, 0.002922058, 0.037017822, -0.011054993, 0.015365601, 0.08392334, -0.040893555, -0.041503906, -0.039886475, 0.032592773, 0.014762878, 0.0020637512, 0.062194824, 0.01373291, -0.0017871857, 0.034210205, 0.007396698, -0.039733887, 0.036621094, 0.00223732, -0.08532715, 0.017089844, -0.0038719177, 0.002735138, 0.011703491, -0.032287598, 0.0025577545, 0.05621338, 0.019973755, -0.007835388, -0.05038452, -0.04421997, 0.01159668, -0.029724121, 0.01737976, -0.010383606, 0.0036354065, 0.009880066, 0.050964355, -0.06124878, -0.03289795, -0.01109314, 0.025390625, 0.037841797, -0.019180298, 0.010391235, 0.049468994, -0.03491211, 0.04446411, -0.024749756, 0.0043907166, -0.009056091, 0.055511475, 0.004310608, 0.06518555, -0.06530762, -0.010398865, -0.015411377, 0.005580902, 0.021148682, 0.017669678, -0.030838013, 0.0032024384, 0.024017334, 0.043182373, -0.023849487, 0.020248413, -0.0044136047, -0.03173828, -0.03677368, 0.002084732, 0.0030097961, -0.053833008, -0.032440186, -0.02003479, -0.021209717, 0.039916992, -0.005142212, 0.014579773, 0.018157959, 0.041259766, -0.0030174255, 0.0068511963, 0.015159607, -0.02709961, 0.024108887, 0.014785767, 0.019515991, 0.025970459, 0.040161133, 0.025177002, -0.03668213, -0.03161621, 0.024154663, 0.044403076, 0.006969452, 0.020370483, -0.039123535, 0.03652954, -0.009757996, -0.035003662, 0.00819397, 0.01209259, 0.018463135, -0.0007095337, -0.041259766, 0.0048217773, 0.012321472, -0.004142761, -0.0074157715, 0.031585693, 0.01928711, 0.014816284, 0.003545761, 0.014251709, -0.00982666, -0.0041389465, 0.024856567, 0.016235352, 0.01134491, -0.014198303, -0.051940918, -0.02696228, 0.038513184, -0.017181396, -0.030258179, -0.0024433136, 0.039215088, 0.0098724365, 0.0143585205, -0.016586304, -0.016296387, 0.01979065, 0.023147583, 0.0030231476, 0.037719727, 0.008300781, 0.0015935898, 0.03765869, -0.0043792725, 0.046081543, -0.0131073, 0.084106445, 0.03857422, -0.018997192, 0.02848816, -0.019470215, -0.02470398, 0.013282776, -0.0018043518, -0.0050315857, 0.011932373, 0.022964478, 0.023223877, 0.04083252, 0.056243896, -0.016235352, 0.036468506, 0.0015668869, -0.013534546, 0.043273926, -0.020446777, -0.0064888, 0.009223938, -0.024673462, 0.00033140182, 0.016586304, -0.019989014, 0.019714355, 0.0158844, -0.024551392, -0.0015277863, -0.028030396, 0.05065918, -0.013114929, -0.011955261, -0.045288086, -0.002439499, -0.0045280457, -0.023468018, -0.039794922, 0.01777649, -0.038024902, -0.0039711, 0.01197052, -0.04473877, -0.012886047, -0.0038719177, -0.017425537, -0.051330566, -0.0039596558, 0.0059928894, 0.026641846, 0.0289917, 0.0803833, -0.03933716, -0.07659912, -0.0103302, 0.040039062, -0.023788452, -0.051940918, 0.012702942, 0.01008606, 0.032928467, 0.012886047, 0.0496521, 0.051635742, 0.018630981, -0.0052490234, 0.0075263977, -0.034179688, -0.038330078, 0.064697266, 0.0073051453, 0.0069351196, 0.011291504, 0.044433594, 0.016082764, 0.0027103424, 0.02619934, -0.0022449493, -0.085998535, -0.010620117, -0.044799805, 0.012954712, -0.04425049, 0.010192871, -0.009147644, -0.004688263, -0.0077056885, 0.01965332, 0.030761719, -0.033325195, 0.039886475, 0.010498047, 0.019256592, -0.049316406, -0.063964844, -0.0690918, -0.024887085, 0.06439209, 0.018478394, 0.047912598, 0.024551392, 0.027191162, -0.009025574, 0.0023021698, -0.014556885, 0.002046585, -0.0317688, 0.014076233, -0.0262146, -0.04144287, 0.024398804, -0.021911621, -0.014480591, 0.008224487, 0.026855469, 0.033935547, -0.027786255, -0.009384155, -0.012763977, 0.00039863586, 0.016693115, -0.04473877, -0.024368286, -0.0049095154, 0.0038547516, 0.0011339188, 0.013587952, -0.019042969, 0.017059326, 0.016571045, -0.024536133, 0.013587952, 0.01576233, 0.004169464, -0.0005145073, 0.010856628, 0.017105103, 0.024108887, -0.036987305, 0.011634827, -0.041046143, 0.03933716, -0.006187439, -0.005554199, 0.042510986, -0.027404785, 0.010948181, 0.036621094, -0.020996094, -0.031143188, 0.056396484, 0.057495117, 0.0074157715, 0.027023315]}, "B005MBHFJG": {"id": "B005MBHFJG", "original": "Brand: UCO\nName: UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50\nDescription: UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:\nFeatures: Burns up to 1 minute, 5X longer than regular matches\nContains 50 safety matches\nLonger length (3.75\") keeps fingers from getting burned\nCarbonized match stick for safer fire starting\nIdeal for campfires, fireplaces, stoves, BBQ's, lanterns, candles, and more\n", "metadata": {"Name": "UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50", "Brand": "UCO", "Description": "UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:", "Features": "Burns up to 1 minute, 5X longer than regular matches\nContains 50 safety matches\nLonger length (3.75\") keeps fingers from getting burned\nCarbonized match stick for safer fire starting\nIdeal for campfires, fireplaces, stoves, BBQ's, lanterns, candles, and more", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.018295288, 0.0024585724, 0.0032081604, -0.026306152, -0.027282715, 0.020462036, -0.022613525, -0.0021972656, -0.054840088, 0.03488159, 0.018661499, 0.013114929, 0.04864502, -0.052215576, 0.04385376, -0.004322052, 0.036071777, -0.008613586, 0.018447876, -0.024429321, 0.012359619, -0.004814148, 0.035003662, 0.081726074, 0.011314392, -0.04925537, 0.06488037, -0.003534317, 0.030441284, 0.010070801, 0.028381348, -0.035186768, 0.035614014, 0.043273926, -0.052368164, -0.004787445, 0.032287598, -0.02041626, -0.004623413, 0.019882202, 0.019729614, -0.019714355, -0.005065918, -0.023101807, -0.001502037, -0.01033783, 0.008255005, -0.044677734, -0.010887146, 0.031555176, 0.023544312, -0.030532837, 0.03060913, -0.028427124, 0.008308411, 0.00356102, 0.008018494, 0.017456055, 0.0051956177, -0.024246216, -0.021591187, 0.013290405, 0.017669678, 0.034088135, -0.046203613, -0.011695862, 0.089660645, -0.02116394, 0.0231781, -0.0637207, -0.008079529, 0.06378174, 0.013954163, -0.0029354095, -0.0060691833, 0.011192322, -0.0041236877, 0.007030487, 0.03274536, 0.009407043, -0.022201538, -0.0070228577, -0.025268555, -0.014274597, 0.010612488, 0.0051116943, -0.017852783, -0.010261536, -0.050476074, -0.014984131, -0.03326416, -0.0031776428, -0.08679199, 0.012535095, 0.008705139, 0.012199402, -0.032562256, -0.049041748, 0.012741089, 0.018539429, -0.017166138, -0.01210022, -0.000477314, 0.0065956116, -0.02357483, 0.08276367, 0.02949524, 0.0060157776, -0.018844604, -0.0158844, -0.006713867, -0.047729492, 0.028060913, -0.021774292, 0.020507812, -0.024505615, -0.006877899, 0.060668945, 0.028915405, 0.00081014633, -0.015975952, 0.0021209717, -0.005039215, 0.011878967, -0.0026416779, -0.009902954, 0.0055122375, -0.006515503, -0.016616821, 0.004840851, 0.0059432983, -0.010910034, -0.0036945343, 0.04333496, 0.0039901733, -0.0056381226, -0.02229309, -0.01247406, 0.012542725, 0.0014562607, 0.012718201, -0.066345215, -0.022903442, 0.039031982, -0.014076233, 0.02609253, 0.031082153, -0.0010118484, -0.020507812, -0.06970215, 0.022705078, -0.013420105, 0.032684326, 0.006378174, -0.04260254, -0.031234741, 0.0135650635, -0.02960205, 0.003479004, -0.05581665, -0.027038574, -0.040100098, 0.021057129, 0.00027418137, -0.031707764, 0.058013916, 0.019424438, -0.008613586, 0.02003479, 0.06262207, 0.022079468, -0.017623901, -0.026992798, -0.007850647, -0.0047187805, -0.016357422, -0.039398193, 0.07183838, 0.04071045, -0.060028076, -0.026473999, -0.04547119, 0.11651611, -0.022750854, 0.006706238, -0.023986816, -0.0032291412, -0.04324341, 0.024780273, -0.0035247803, 0.012290955, 0.03817749, -0.0138168335, 0.01927185, -0.041625977, -0.013259888, 0.041748047, 0.045288086, -0.014144897, 0.014984131, 0.009208679, -0.018508911, 0.035491943, -0.019683838, -0.027267456, 0.019546509, -0.027404785, 0.024658203, 0.0031166077, 0.028182983, -0.0030326843, -0.032562256, 0.018844604, -0.035614014, -0.0011405945, 0.01449585, 0.0007677078, -0.010246277, 0.024963379, -0.019821167, 0.048736572, 0.011169434, 0.04006958, 0.035736084, 0.020050049, -0.034576416, 0.0052757263, -0.015312195, 0.006767273, 0.0053710938, -0.028045654, 0.029083252, 0.033081055, 0.0770874, 0.014221191, 0.056365967, 0.09484863, 0.05291748, -0.014343262, -0.061706543, 0.041900635, -0.015899658, 0.0011434555, -0.0074157715, 0.010505676, -0.014259338, 0.026641846, -0.044555664, -0.05429077, -0.0146102905, 0.03967285, 0.02609253, 0.023986816, 0.031021118, -0.050109863, 0.030029297, -0.033996582, -0.00459671, -0.058288574, 0.019500732, 0.0033683777, -0.046203613, 0.014541626, -0.03616333, 0.0058555603, -0.018692017, 0.03149414, 0.01675415, 0.0184021, -0.02760315, 0.0070991516, -0.009361267, -0.030471802, -0.0072135925, 0.075683594, -0.025665283, -0.035308838, 0.0055389404, -0.03945923, -0.005531311, -0.0022010803, 0.016113281, -0.02130127, -0.007801056, 0.03048706, -0.055999756, -0.0049819946, -0.03152466, -0.013259888, -0.00630188, 0.028396606, -0.011421204, -0.03463745, 0.01676941, -0.029037476, -0.031433105, 0.0024490356, -0.022567749, 0.04425049, -0.036743164, -0.01876831, 0.057861328, -0.027938843, 0.033813477, 0.005332947, 0.024490356, 0.0435791, -0.008522034, 0.0058174133, -0.047821045, 0.04324341, 0.023742676, 0.023773193, 0.028808594, 0.053009033, 0.017303467, 0.058258057, 0.0592041, 0.08856201, 0.019882202, -0.033966064, 0.0068893433, 0.0005712509, 0.02041626, 0.011238098, 0.0015888214, 0.006538391, -0.0030784607, -0.039367676, 0.02748108, 0.061920166, 0.012748718, 0.029129028, -0.039611816, 0.008483887, -0.03265381, -0.0014533997, 0.024276733, -0.012672424, -0.025436401, -0.034179688, -0.030670166, 0.0020179749, -0.046905518, -0.0008625984, 0.009590149, -0.015914917, 0.014472961, -0.00074100494, 0.0024204254, -0.022613525, -0.029373169, 0.04067993, 0.023361206, 0.09893799, -0.05847168, -0.10491943, 0.04574585, 0.032836914, -0.039794922, -0.030059814, 0.0513916, -0.014038086, 0.03640747, -0.0071487427, -0.04260254, 0.023040771, 0.03463745, -0.019607544, -0.0017261505, 0.02607727, -0.01121521, -0.047210693, -0.020523071, -0.036865234, 0.021408081, -0.020553589, -0.03894043, 0.02532959, -0.012496948, -0.013168335, 0.009246826, 0.015563965, 0.037475586, 0.004776001, 0.02508545, 0.01473999, 0.03366089, -0.018615723, -0.030288696, -0.017669678, 0.048553467, -0.052886963, -0.014091492, 0.040740967, 0.005683899, 0.0039711, -0.009155273, -0.038269043, -0.03894043, -0.071777344, 0.048553467, 0.000992775, 0.004673004, -0.03439331, -0.015182495, -0.043914795, -0.031066895, 0.03768921, -0.0126953125, 0.008262634, -0.0026111603, 0.014228821, -0.027130127, -0.028579712, 0.0072288513, -0.010353088, -0.009513855, 0.00049066544, -0.012825012, 0.049560547, -0.08862305, 0.051818848, 0.039855957, -0.015991211, -0.03817749, 0.007888794, 0.005569458, -0.017196655, 0.0289917, 0.00642395, -0.025436401, 0.023101807, -0.01499176, -0.013221741, 0.004760742, -0.032318115, 0.0018796921, -0.015312195, -0.033416748, -0.007205963, -0.056030273, -0.072021484, 0.0041656494, -0.010169983, -0.03466797, -0.06549072, -0.011482239, -0.035491943, -0.0063056946, -0.016174316, 0.010749817, -0.03414917, 0.02758789, -0.00440979, 0.08581543, -0.028717041, 0.04763794, 0.05368042, -0.024337769, -0.011352539, -0.046691895, 0.03933716, 0.030960083, -0.05596924, -0.00932312, 0.05822754, -0.013168335, -0.04864502, 0.0013446808, -0.052490234, 0.062805176, -0.02998352, -0.03152466, 0.01838684, -0.0022640228, -0.003118515, -0.0058250427, 0.005706787, 0.0014543533, -0.054016113, 0.0066452026, -0.023208618, 0.059417725, 0.03164673, -0.0007920265, 0.06964111, 0.03591919, -0.03363037, 0.05215454, -0.03878784, 0.037384033, -0.009086609, 0.029678345, -0.012893677, 0.06185913, 0.013000488, -0.010383606, 0.012878418, -0.014701843, -0.034820557, 0.018371582, -0.013137817, 0.0021915436, -0.027236938, -0.005027771, 0.0060768127, -0.0008368492, 0.008010864, -0.020706177, -0.0062942505, -0.008872986, -0.061584473, -0.0031795502, -0.031188965, 0.0070495605, -0.012161255, -0.049835205, 0.0032634735, 0.014167786, 0.031677246, 0.00818634, 0.015220642, 0.0236969, 0.012367249, -0.014030457, -0.00472641, -0.026672363, -0.02305603, 0.0063323975, 0.01423645, -0.004814148, -0.013465881, -0.026397705, 0.0519104, 0.015731812, -0.01109314, 0.02456665, 0.030685425, 0.0047721863, -0.03326416, -0.051361084, 0.0027065277, 0.007461548, -0.0107803345, -0.02507019, -0.04067993, 0.008522034, -0.03414917, -0.008346558, -0.01739502, -0.02810669, -0.05496216, -0.043914795, -0.05130005, 0.05090332, -0.00705719, 0.045928955, -0.009651184, -0.055541992, 0.008392334, 0.048095703, -0.0027217865, -0.049591064, -0.008369446, 0.02671814, -0.009231567, -0.0146102905, -0.0107040405, 0.009689331, -0.029205322, -0.022659302, 0.05316162, 0.026275635, -0.030349731, -0.04321289, -0.019622803, 0.0022659302, 0.013206482, -0.035003662, -0.02015686, -0.020721436, -0.0011110306, -0.072753906, -0.026779175, -0.0993042, 0.054901123, -0.06921387, -0.029327393, -0.11730957, 0.032287598, 0.013183594, -0.004295349, -0.0029850006, 0.005332947, -0.0011548996, 0.011993408, -0.0059547424, 0.0234375, 0.0038337708, -0.044891357, -0.023101807, -0.025558472, -0.0069618225, 0.086120605, 0.045959473, -0.018798828, 0.030548096, 0.001332283, -1.591444e-05, 0.0037765503, 0.020431519, -0.022277832, 0.005607605, -0.027633667, -0.037231445, 0.05331421, 0.007820129, -0.02999878, -0.01878357, -0.011161804, 0.01537323, 0.016357422, -0.07080078, 0.012123108, 0.029815674, -0.017349243, 0.020843506, -0.017532349, 0.023040771, 0.023147583, -0.00035595894, 0.00090551376, -0.028457642, 0.015777588, 0.008888245, 0.021408081, -0.018814087, 0.018493652, 0.047821045, 0.005970001, 0.040893555, 0.016433716, -0.028961182, 0.04534912, 0.0038051605, 0.0013771057, -0.007736206, -0.011993408, -0.007881165, 0.054626465, 0.022262573, -0.0067710876, -0.014167786, 0.027069092, -0.013084412, -0.028839111, 0.020477295, -0.031311035, 0.0068092346, -0.025466919, 0.014251709, -0.014709473, 0.017547607, 0.03302002, -0.015686035, -0.012565613, 0.013389587, -0.044433594, 0.038238525, -0.033233643, -0.024017334, 0.013343811, -0.005039215, 0.010734558, -0.027404785, 0.0058174133, 0.0011539459, -0.052124023, -0.024154663, 0.005836487, 0.043823242, 0.04827881, 0.03277588, -0.048431396, 0.035858154, 0.01083374, -0.0074768066, -0.025024414, 0.02973938, 0.00021600723, 0.040496826, -0.010910034, 0.018844604, -0.024841309, -0.035217285, -0.004306793, -0.016036987, -0.021560669, -0.0090408325, 0.032470703, -0.006767273, -0.0071411133, -0.009010315, 0.0029468536, 0.013053894, -0.0440979, -0.06384277, -0.0135269165, 0.0051727295, -0.055725098, -6.425381e-05, -0.04940796, -0.009391785, -0.0071983337, -0.0569458, -0.084350586, -0.008666992, -0.019073486, 0.032928467, -0.01285553, -0.027069092, 0.03036499, -0.0075416565, 0.008842468, 0.003156662, -0.015548706, -0.0021877289, -0.012504578, -0.02583313, -0.007904053, -0.010185242, 0.0029144287, -0.018493652, -0.024932861, -0.0013685226, 0.017913818, 0.030212402, 0.010856628, -0.012207031, 0.020828247, -0.025985718, 0.047607422, -0.019973755, 0.0154953, -0.026351929, 0.019851685, 0.029296875, -0.076293945, -0.02947998, 0.03652954, -0.06689453, -0.06970215, -0.02796936, 0.022964478, -0.0015974045, -0.01474762, -0.022720337, -0.08148193, 0.026153564, -0.043182373, -0.0037574768, -0.023376465, 0.04660034, 0.007850647, 0.059448242, -0.013824463, -0.040924072, -0.053253174, 0.043426514, 0.042419434, -0.03488159, -0.0075263977, 0.015449524, -0.008811951, 0.06768799, 0.02192688, 0.0037441254, -0.01373291, -0.017486572, 0.010139465, -0.04083252, -0.029525757, 0.02444458, 0.0018863678, -0.022888184, 0.05307007, -0.039978027, 0.01802063, 0.021530151, 0.0116119385, -0.0022735596, 0.031188965, 0.037872314, 0.044830322, 0.038970947, -0.008476257, 0.006160736, 0.018157959, -0.023635864, 0.017715454, -0.007987976, 0.040802002, 0.03741455, -0.0016651154, -0.031082153, 0.027709961, 0.055114746, -0.012802124, 0.034332275, 0.0030002594, -0.042297363, -0.012390137, -0.020309448, 0.0284729, 0.008872986, 0.053466797, -0.011512756, 0.04269409, -0.049957275, -0.0028362274, 0.04547119, 0.013656616, -0.0013961792, -0.053833008, 0.019104004, -0.038330078, 0.0014877319, 0.011940002, -0.005218506, -0.013580322, 0.004737854, -0.010971069, 0.015670776, 0.027420044, -0.019042969, 0.00579834, -0.0058250427, 0.033813477, -0.012626648, 0.06185913, -0.021881104, 0.035491943, 0.017852783, 0.010566711, -0.0023403168, 0.019302368, -0.028656006, 0.01158905, 0.0803833, -0.00068330765, 0.009651184, 0.03527832, -0.0044403076, 0.0066833496, 0.00178051, 0.02734375, -0.023910522, 0.010986328, -0.001449585, -0.018539429, 0.021896362, 0.0023345947, 0.0118255615, 0.033447266, 0.0037155151, -0.051452637, 0.020263672, -0.061950684, 0.027862549, 0.024978638, 0.051635742, -0.012145996, 0.032470703, 0.002729416, 0.005493164, 0.040130615, 0.024414062, 0.043029785, 0.04916382, -0.0020313263, -0.020095825, 0.015533447, -0.06695557, -0.01676941, 0.021835327, 0.013809204, 0.03125, -0.017745972, -0.0048599243, -0.03253174, -0.0074882507, 0.0055770874, -0.0158844, -0.0007920265, 0.025802612, -0.053894043, 0.010070801, -0.0022411346, -0.03277588, -0.008850098, 0.012619019, -0.004638672, -0.02279663, 0.009773254, -0.029968262, -0.011047363, -0.0042533875, -0.07043457, -0.037597656, 0.09851074, -0.033111572, -0.055023193, -0.019241333, 0.018234253, 0.016967773, -0.07208252, -0.034851074, -0.028244019, 0.008659363, -0.0057792664, 0.021881104, -0.021118164, -0.025650024, -0.029403687, 0.03717041, -0.07348633, -0.03463745, 0.01020813, 0.033569336, 0.056243896, 0.029876709, 0.02861023, 0.037109375, 0.021209717, -0.011505127, -0.005706787, 0.01852417, -0.031433105, 0.03237915, 0.013092041, -0.017608643, 0.031585693, 0.022262573, -0.021331787, 0.007106781, 0.026855469, -0.029541016, -0.0446167, -0.01461792, -0.017318726, -0.023361206, 0.0039100647, -0.011222839, 0.023864746, 0.03793335, -0.04269409, -0.023986816, -0.0037765503, -0.01828003, 0.06561279, 0.010353088, -0.011543274, -0.027618408, -0.021530151, -0.016540527, -0.00066423416, 0.013023376, 0.018814087, -0.019973755, 0.0104904175, 0.019256592, -0.016708374, 0.035583496, 0.03164673, -0.028884888, 0.0059280396, 0.0010480881, 0.0079422, -0.026016235, -0.02796936, -0.024246216, -0.037963867, -0.01675415, -0.014503479, 0.03086853, -0.03427124, -0.020584106, -0.029067993, 0.030273438, -0.0061798096, -0.064086914, -0.006324768, -0.0446167, 0.03869629, 0.033416748, 0.010314941, -0.01586914, 0.019821167, -0.013069153, -0.036071777, 0.0015230179, 0.017333984, 0.0007853508, -0.028747559, 0.0151901245, 0.0068511963, 0.054260254, -0.012321472, -0.05706787, -0.04034424, 0.036193848, 0.025360107, -0.02607727, 0.05722046, -0.0042152405, 0.0046691895, -0.024932861, -0.06665039, -0.028503418, -0.018920898, 0.008399963, -0.05227661, 0.00447464]}, "B07FMQ3PS1": {"id": "B07FMQ3PS1", "original": "Brand: MVZAWINO\nName: Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12\" Stainless Steel\nDescription: For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
      Enjoy BBQ party with your families & friends.

      Features:
      Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
      Burns/Smokes for up to 5 hours.
      Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
      You can smoke anything from cheese to steaks!
      Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
      Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
      With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
      Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
      Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

      Specifications:
      Color: Silver
      Material: 304 stainless steel
      Style: Hexagon design
      Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01\"
      Brush length: 30.5 cm
      Brush hair length: 20 cm
      Hook length: 13 cm
      Hook opening diameter: 3 cm

      Package included:
      1 x Pellet Smoker Tube for Any Grill
      1 x Brush
      1 x Hook
      \nFeatures: FOR ANY TYPE SMOKER \u2013 This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more.\nUP TO 5+ HOURS BILLOWING SMOKE \u2013 Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours.\nSAFETY MATERIAL & REPEATEDLY USE \u2013 This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use.\nIMPROVED HEXAGON DESIGN \u2013 This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food.\nGREAT GIFT & FREE BONUS ITEMS \u2013 A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.\n", "metadata": {"Name": "Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12\" Stainless Steel", "Brand": "MVZAWINO", "Description": " For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
      Enjoy BBQ party with your families & friends.

      Features:
      Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
      Burns/Smokes for up to 5 hours.
      Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
      You can smoke anything from cheese to steaks!
      Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
      Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
      With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
      Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
      Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

      Specifications:
      Color: Silver
      Material: 304 stainless steel
      Style: Hexagon design
      Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01\"
      Brush length: 30.5 cm
      Brush hair length: 20 cm
      Hook length: 13 cm
      Hook opening diameter: 3 cm

      Package included:
      1 x Pellet Smoker Tube for Any Grill
      1 x Brush
      1 x Hook
      ", "Features": "FOR ANY TYPE SMOKER \u2013 This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more.\nUP TO 5+ HOURS BILLOWING SMOKE \u2013 Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours.\nSAFETY MATERIAL & REPEATEDLY USE \u2013 This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use.\nIMPROVED HEXAGON DESIGN \u2013 This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food.\nGREAT GIFT & FREE BONUS ITEMS \u2013 A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03189087, 0.024551392, -0.026443481, -0.047424316, 0.013519287, -0.006965637, 0.005367279, 0.0018444061, -0.0082092285, 0.04650879, 0.0040397644, 0.006664276, 0.0345459, -0.024002075, -0.0025959015, 0.007820129, -0.0028877258, 0.03161621, 0.016433716, -0.03262329, -0.0019216537, -0.03479004, -0.002298355, 0.013252258, 0.020904541, 0.022583008, 0.0048980713, 0.004650116, 0.025634766, 0.0057678223, 0.012199402, -0.045288086, 0.052368164, 0.012649536, -0.04309082, 0.039489746, 0.0068740845, -0.0051612854, 0.001247406, 0.019378662, 0.03086853, -0.01586914, -0.021026611, 0.016296387, -0.023452759, -0.04333496, 0.036895752, -0.017044067, 0.0015125275, -0.0031757355, 0.034942627, -0.037841797, 0.047180176, 0.010345459, -0.035247803, -0.0068893433, 0.00053215027, -0.010375977, 0.015686035, 0.054351807, -0.00028944016, 0.020965576, -0.0075569153, -0.03829956, -0.023727417, -0.0017585754, 0.08728027, -0.025161743, -0.046905518, -0.03378296, 0.057159424, 0.014511108, 0.027526855, -0.04623413, -0.019866943, -0.01335144, 0.014427185, -0.013442993, -0.009056091, -0.019226074, -0.021209717, -0.031921387, 0.011123657, -0.021820068, -0.0050735474, -0.025283813, -0.009803772, 0.007385254, 0.008087158, -0.005683899, -0.012397766, 0.019302368, 0.0043907166, -0.0022220612, -0.0418396, -0.016799927, 0.0063476562, -0.03930664, 0.048187256, 0.04425049, 0.038269043, -0.066223145, 0.08898926, -0.030044556, 0.004310608, 0.06311035, -0.0463562, -0.01739502, 0.015899658, 0.02293396, 0.015777588, -0.061340332, -0.0043182373, -0.029922485, -0.02645874, 0.037139893, 0.016647339, -0.007118225, 0.0061569214, 0.012084961, -0.039245605, -0.0101623535, 0.01689148, -0.0005760193, 0.027160645, 0.03842163, 0.008544922, -0.018005371, -0.047546387, 0.025878906, -0.03149414, -0.024490356, 0.06512451, 0.06359863, 0.034454346, -0.03857422, 0.0026016235, 0.015197754, 0.003660202, 0.014633179, -0.023757935, -0.02355957, 0.04547119, -0.017044067, -0.02067566, -0.006679535, 0.011207581, 0.033050537, 0.0075531006, 0.017059326, -0.02532959, 0.023101807, 0.028656006, 0.0033245087, -0.05166626, -0.018173218, -0.015327454, -0.01852417, -0.0011415482, -0.048675537, -0.0012369156, -0.027313232, -0.023910522, -0.02696228, -0.049957275, 0.031921387, 0.016784668, -0.006275177, 0.011245728, 0.025131226, -0.010177612, -0.0025577545, 0.023849487, -0.012565613, -0.011787415, 0.010696411, -0.0066871643, 0.107055664, 0.0690918, -0.10601807, -0.053009033, -0.057617188, 0.16125488, -0.048034668, -0.026885986, 0.021820068, 0.0046577454, -0.010673523, 0.014572144, -0.013145447, 0.03265381, 0.030685425, -0.0039043427, -0.0032978058, 0.004009247, 0.035369873, -0.036468506, 0.04849243, -0.021362305, -0.04019165, 0.008323669, -0.0029659271, -0.01914978, 0.0047454834, -0.044891357, 0.009902954, -0.03555298, 0.028564453, 0.03616333, 0.020019531, -0.0031147003, 0.01272583, 0.0017948151, -0.022583008, -0.035705566, 0.0062789917, -0.023010254, 0.03564453, 0.002067566, 0.037078857, 0.016433716, -0.03463745, 0.018188477, 0.0028762817, 0.030410767, -0.0010595322, -0.026351929, -0.0008149147, -0.008804321, 0.039031982, -0.05319214, 0.024780273, 0.08325195, 0.02822876, -0.039367676, 0.057800293, 0.07458496, 0.086120605, -0.05078125, -0.026824951, 0.024490356, -0.0057792664, -0.023834229, -0.010185242, -0.026321411, -0.034484863, 0.014297485, -0.015640259, -0.041748047, -0.03741455, 0.033172607, 0.020080566, 0.034576416, -0.004119873, -0.037017822, 0.045776367, -0.018218994, 0.047332764, -0.061462402, 0.011222839, -0.005870819, 0.01260376, 0.023895264, -0.0010271072, 0.018249512, 0.021850586, 0.030410767, 0.020874023, -0.049957275, 0.020080566, 0.030563354, 0.01651001, -0.01928711, 0.021987915, 0.052734375, -0.03817749, -0.0059814453, -0.0054244995, -0.02798462, -0.00749588, 0.0009803772, 0.017303467, 0.070739746, -0.011482239, 0.025360107, -0.019729614, 0.022705078, -0.017227173, -0.00484848, -0.04562378, 0.010597229, -0.007446289, -0.024215698, 0.010536194, -0.01890564, -0.044921875, 0.055480957, 0.05303955, -0.024169922, 0.007904053, -0.021621704, 0.0256958, -0.01637268, -0.006587982, -0.006702423, -0.021270752, 0.00011628866, 0.015052795, 0.0032520294, -0.074157715, 0.05657959, 0.068847656, 0.02746582, -0.018997192, 0.039520264, 0.030029297, -0.006286621, 0.047698975, 0.033447266, 0.06298828, -0.04486084, -0.009208679, -0.029418945, -0.017028809, -0.0096588135, 0.03869629, -0.03152466, 0.004875183, -0.04067993, 0.042938232, 0.012786865, 0.0052490234, 0.0071487427, -0.009689331, -0.017440796, 0.011878967, 0.010055542, 0.006214142, 0.0062942505, -0.016784668, 0.01675415, -0.03186035, -0.013183594, -0.02128601, -0.04550171, -0.0051116943, -0.0036697388, 0.004650116, -0.052581787, -0.008674622, 0.009147644, -0.0309906, 0.039886475, 0.007663727, 0.034942627, -0.016906738, -0.045074463, 0.010818481, 0.010429382, -0.051208496, -0.023498535, 0.028625488, -0.03338623, -0.0036811829, 0.023605347, -0.03930664, 0.027267456, -0.015914917, 0.029251099, 0.033447266, 0.00541687, 0.014404297, -0.0074005127, -0.01171875, 0.0046806335, -0.021820068, 0.0033893585, -0.025741577, 0.011169434, 0.0012960434, -0.0017175674, 0.0072517395, 0.004749298, -0.015640259, 0.020233154, 0.019836426, 0.01727295, 0.027938843, -0.0054244995, -0.005622864, -0.0036029816, 0.018692017, -0.024246216, -0.0413208, -0.046203613, 0.004245758, 0.04751587, -0.03503418, 0.06286621, -0.052215576, -0.07312012, -0.006801605, -0.011726379, -0.048919678, 0.0032577515, -0.11206055, -0.05203247, -0.04824829, 0.009170532, -0.0010643005, 0.017440796, 0.039001465, 0.004470825, 0.025634766, -0.00084495544, -0.04473877, -0.016052246, -0.016723633, -0.0059661865, -0.013687134, 0.004436493, -0.0079574585, 0.021972656, 0.04373169, -0.04815674, -0.025405884, -0.021240234, 0.019927979, -0.036865234, 0.0066871643, -0.045684814, -0.031311035, 0.0026798248, -0.025894165, -0.03289795, -0.017608643, -0.011749268, 0.0024280548, 0.009887695, -0.02281189, -0.0519104, -0.004886627, -0.061706543, 0.017440796, -0.012512207, -0.050964355, -0.014732361, -0.08337402, 0.023666382, -0.011604309, -0.010368347, -0.0014343262, 0.049804688, 0.018478394, -0.014053345, 0.08068848, 0.013534546, 0.05291748, 0.008094788, -0.020690918, 0.01612854, -0.044525146, 0.029708862, 0.03982544, -0.007762909, -0.025299072, 0.05154419, 0.00084638596, -0.001619339, 0.0029525757, -0.007331848, 0.031677246, 0.028442383, -0.011245728, 0.0010442734, -0.0099105835, 0.030410767, 0.026168823, -0.04055786, -0.049621582, -0.018814087, -0.0082473755, -0.05456543, 0.09350586, 0.053771973, -0.010063171, 0.05407715, 0.05432129, -0.024017334, 0.031402588, 0.0056381226, 0.008018494, -0.0016746521, 0.039642334, -0.017944336, -0.0033988953, 0.016647339, -0.07366943, 0.038726807, 0.013069153, -0.060424805, 0.047546387, 0.01285553, -0.05480957, 0.0017127991, 0.023605347, 0.039215088, -0.0040664673, -0.026229858, -0.020889282, 0.052825928, -0.046691895, 0.035827637, -0.0023212433, -0.014854431, -0.02444458, 0.02015686, -0.008010864, -0.031204224, 0.003967285, 0.025054932, -0.025817871, 0.011787415, 0.014724731, 0.041870117, 0.008422852, -0.014389038, 0.027496338, -0.014144897, 0.0022716522, 0.02494812, 0.021331787, -0.0064315796, -0.018447876, -0.0043411255, -0.021118164, -0.037719727, 0.0019741058, -0.004058838, -0.036010742, 0.0076789856, 0.011543274, -0.026855469, 0.018096924, 0.012542725, -0.054840088, 0.0034561157, -0.026260376, -0.04067993, -0.019012451, -0.0051651, 0.00071525574, -0.047027588, -0.012359619, -0.0055351257, -0.055847168, -0.049987793, 0.019607544, 0.022140503, -0.0053710938, 0.011489868, 0.066833496, -0.05596924, -0.01852417, -0.01713562, 0.00039601326, 0.055847168, 0.026260376, -0.024276733, -0.0058937073, -0.04095459, -0.00073194504, 0.050109863, 0.01826477, -0.006450653, -0.02748108, -0.020935059, 0.0054473877, 0.024719238, 0.08392334, 0.040039062, 0.027832031, -0.06976318, 0.0012607574, -0.0657959, -0.040893555, 0.049865723, -0.033233643, -0.04699707, -0.06628418, 0.059509277, -0.006717682, 0.008613586, -0.011924744, 0.00592041, 0.008857727, -0.0026397705, -0.027893066, -0.013160706, 0.00067806244, -0.029815674, 0.0052375793, -0.016586304, -0.01398468, 0.06964111, 0.07128906, 0.025482178, -0.008850098, 0.00447464, -0.015625, -0.03149414, -5.120039e-05, 0.0129776, 0.005596161, -0.018157959, -0.00037765503, -0.056915283, 0.05895996, 0.017044067, -0.021514893, -0.008979797, 0.009613037, -0.012275696, -0.04135132, -0.04525757, 0.02670288, 0.042388916, 0.00061893463, -0.040802002, 0.01209259, -0.015960693, -0.0062217712, -0.0050849915, -0.04248047, -0.00040578842, 0.018447876, 0.012062073, -0.0357666, -0.0011100769, 0.037597656, 0.020019531, 0.009384155, 0.001162529, 0.052520752, -0.007980347, 0.0022506714, 0.04660034, -0.011047363, 0.00010603666, -0.020446777, -0.006259918, -0.011871338, -0.09954834, 0.02619934, 0.06756592, -0.020019531, -0.029067993, 0.031143188, 0.02520752, 0.015701294, -0.015037537, 0.07885742, -0.014419556, 0.01171875, 0.044006348, -0.04473877, 0.005279541, 0.006412506, -0.019363403, -0.002855301, -0.017288208, -0.05899048, 0.0715332, 0.018753052, -0.008132935, -0.042388916, 0.066345215, -0.025253296, -0.019363403, -0.019515991, 0.0058631897, 0.0001219511, -0.010917664, 0.045684814, -0.03918457, 0.044433594, -0.025131226, -0.023452759, -0.0067749023, -0.00078725815, -0.0143585205, 0.0011548996, -0.024765015, -0.033813477, -0.016540527, -0.042999268, -0.054901123, -0.005558014, 0.0025520325, 0.021896362, 0.007583618, -0.014175415, -0.012939453, -0.046203613, -0.010856628, -0.0044441223, -0.03656006, -0.0015306473, -0.023132324, 0.009109497, -0.017852783, 0.019439697, 0.0034809113, -0.005672455, -0.0141067505, -0.0087890625, -0.0017852783, 0.012176514, -0.00844574, 0.016418457, -0.038909912, 0.004207611, 0.007858276, -0.029067993, 0.024642944, -0.0029354095, -0.025878906, -0.03894043, -0.011550903, -0.019104004, -0.018005371, -0.027526855, 0.03540039, -0.040130615, -0.051574707, -0.03842163, 0.009147644, 0.045806885, 0.033691406, 0.029464722, -0.03137207, -0.012397766, 0.03692627, 0.022628784, -0.028747559, 0.01373291, 0.008338928, -0.021102905, -0.036132812, -0.043151855, 0.00086069107, 0.011436462, -0.004764557, -0.03201294, 0.047302246, -0.0118255615, -0.03967285, -0.0826416, -0.04940796, 0.021057129, -0.0597229, 0.020751953, 0.027877808, 0.0046463013, 0.061553955, 0.03793335, -0.044891357, 0.02406311, -0.020904541, 0.03768921, 0.04168701, 0.0028533936, 0.0029945374, 0.016281128, -0.07788086, 0.041381836, -0.017318726, 0.000647068, 0.014022827, 0.044128418, -0.0030326843, 0.076538086, -0.066345215, -0.02645874, -0.009552002, 0.014465332, -0.0013780594, -0.00095415115, 0.015808105, -0.0057640076, -0.0063476562, 0.006565094, -0.010047913, -0.0065307617, 0.020858765, 0.005519867, -0.016525269, -0.011444092, 0.011276245, -0.028167725, -0.03161621, -0.016601562, -0.007709503, 0.059265137, 0.0056114197, 0.025177002, 0.033935547, 0.048431396, -0.05960083, 0.052459717, -0.010528564, -0.0030651093, 0.043701172, -0.044158936, 0.033966064, -0.032714844, 0.03024292, -0.016799927, 0.02494812, -0.0068740845, 0.018081665, 0.039123535, 0.014625549, 0.0070762634, -0.016357422, 0.005542755, 0.036590576, -0.03829956, -0.015602112, 0.0013685226, 0.021438599, -0.01399231, -0.048431396, -0.026992798, -0.02230835, 0.025466919, 0.022659302, 0.037475586, 0.012077332, 0.03262329, -0.0056915283, 0.0004041195, -0.0060272217, -0.003162384, -0.008148193, 0.042144775, 0.02532959, -0.025558472, -0.014541626, -0.023513794, 0.026046753, -0.08093262, -0.044555664, 0.0036964417, 0.01625061, 0.010391235, 0.057281494, -0.024734497, -0.012275696, 0.026321411, -0.0017271042, 0.007545471, 0.0044021606, 0.021652222, 0.037261963, -0.0007891655, -0.01626587, 0.03111267, -0.039031982, 0.059509277, 0.050964355, -0.011917114, -0.05682373, -0.028167725, -0.028244019, -0.034332275, 0.004096985, 0.033355713, -0.024353027, 0.012535095, 0.018875122, -0.01398468, 0.059936523, -0.007247925, 0.029541016, -0.029220581, 0.03781128, 0.003255844, -0.014083862, -0.021011353, -0.018692017, 0.009025574, 0.009735107, 0.018096924, -0.016983032, -0.021148682, -0.010810852, 0.012229919, -0.027236938, 0.018203735, 0.010131836, -0.04473877, -0.009552002, -0.0060806274, -0.020446777, -0.015510559, -0.009963989, -0.03744507, 0.0049438477, -0.08148193, -0.008224487, -0.039031982, -0.04119873, -0.03503418, 0.013626099, 0.022338867, -0.047454834, -0.021820068, 0.0021743774, 0.04852295, 0.0082092285, 0.050323486, 0.00035238266, -0.05230713, -0.06213379, 0.008125305, -0.0289917, 0.011856079, 0.0143966675, -0.016204834, -0.0035057068, -0.019012451, 0.004306793, 0.05545044, 0.028366089, -0.013755798, 0.0065612793, -0.008956909, -0.027740479, 0.01209259, 0.012687683, -0.024505615, 0.0035820007, 0.011268616, -0.034118652, 0.062164307, 0.024795532, -0.046539307, -0.0065612793, -0.025344849, -0.035736084, -0.038085938, 0.0069274902, 0.009819031, 0.006011963, -0.008056641, -0.0362854, 0.04119873, -0.01727295, 0.011909485, 0.011024475, 0.0115356445, 0.01171875, -0.0107421875, 0.010215759, -0.004699707, -0.003921509, 0.000436306, 0.022857666, 0.0132751465, 0.012359619, -0.019592285, -0.01486969, -0.013137817, -0.004650116, -0.016494751, -0.0040397644, 0.036865234, -0.011245728, -0.00015223026, 0.014701843, 0.05026245, 0.0022888184, -0.027160645, 0.027450562, 0.014808655, -0.021820068, 0.006706238, -0.0118255615, 0.0029392242, 0.0021915436, -0.007820129, 0.00983429, -0.061462402, 0.0158844, 0.01890564, 0.015129089, 0.0059051514, -0.0069770813, -0.054504395, -0.01121521, 0.011734009, 0.021697998, -0.010383606, -0.04650879, 0.032226562, -0.010940552, 0.06750488, 0.0035533905, -0.078125, -0.07159424, 0.07324219, 0.024719238, -0.037719727, 0.033721924, -0.0027751923, 0.013061523, 0.012054443, 0.04751587, -0.025924683, 0.04989624, 0.021133423, 0.00995636, 0.028961182]}, "B016HUP1LO": {"id": "B016HUP1LO", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with Propane or Natural Gas\nUp to 20,000 BTU's/hr heats up to 700 sq. ft.\nThermostat control knob automatically maintains your ideal heat level\nDual burner provides 2 rows of flames for a more full looking fire\nSeparately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution\n", "metadata": {"Name": "Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove", "Brand": "Pleasant Hearth", "Description": "", "Features": "Dual fuel technology allows the unit to be operated with Propane or Natural Gas\nUp to 20,000 BTU's/hr heats up to 700 sq. ft.\nThermostat control knob automatically maintains your ideal heat level\nDual burner provides 2 rows of flames for a more full looking fire\nSeparately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.046813965, 0.008071899, -0.034118652, -0.04776001, 0.016235352, -0.03286743, 0.020324707, -0.0013284683, -0.024673462, 0.034118652, -0.004558563, 0.009979248, 0.0107803345, -0.023117065, -0.0019102097, -0.021957397, 0.018753052, 0.011627197, 0.020141602, -0.033813477, 0.0126571655, -0.020996094, 0.0129470825, 0.06945801, 0.041870117, -0.03817749, -0.04107666, 0.015670776, 0.013381958, -0.003446579, 0.0289917, 0.017105103, 0.059173584, 0.0022697449, -0.060516357, 0.000518322, 0.003370285, -0.027282715, -0.055725098, 0.04434204, -0.0003221035, -0.0013484955, -0.032226562, -0.024002075, -0.030548096, -0.032348633, 0.004760742, -0.0049324036, 0.027389526, 0.037261963, -0.0088272095, -0.027770996, -0.021835327, 0.004886627, -0.021514893, -0.05029297, 0.014175415, -0.01071167, 0.013427734, -0.042877197, -0.01675415, 0.0058937073, 0.04840088, 0.050720215, -0.04257202, 0.021987915, 0.06732178, -0.00096416473, 0.06021118, -0.05505371, -0.052642822, 0.056274414, 0.04373169, -0.046081543, -0.007621765, -0.00039935112, -0.0070533752, -0.008117676, 0.020614624, -0.03756714, -0.05340576, -0.018218994, -0.03111267, -0.028579712, 0.011886597, 0.013702393, -0.025741577, -0.009941101, -0.030776978, 0.016281128, -0.023086548, -0.03555298, -0.013008118, 0.031707764, 0.015052795, -0.04168701, -0.042297363, -0.08117676, 0.055755615, 0.0129852295, 0.035247803, -0.06945801, 0.055664062, 0.002632141, 0.0004284382, 0.037322998, -0.031707764, 0.029541016, 0.064086914, 0.03262329, 0.030166626, 0.030273438, 0.004508972, -0.0018930435, -0.034576416, 0.008354187, -0.04006958, 0.00019431114, 0.005306244, 0.013710022, -0.01940918, -0.006500244, 0.046691895, -0.0031223297, -0.0084991455, 0.012893677, -0.014633179, -0.031707764, -0.010536194, -0.037841797, -0.02180481, 0.008506775, 0.0074424744, 0.043426514, 0.006755829, 0.0033302307, 0.008666992, 0.025634766, 0.0211792, -0.041809082, 0.009666443, 0.005458832, 0.031555176, -0.008834839, 0.00029230118, 0.002073288, 0.023468018, 0.030181885, -0.019958496, -0.023788452, -0.010925293, 0.0067977905, -0.020065308, 0.0040283203, 0.0345459, 0.0072746277, -0.055786133, 0.020736694, 0.03366089, 0.059020996, 0.016921997, -0.020584106, -0.0026359558, 0.010124207, -0.036193848, 0.034606934, -0.00018107891, -0.006855011, 0.022415161, 0.016281128, 0.019958496, 0.010032654, 0.037139893, 0.030883789, 0.008735657, 0.0025157928, -0.020843506, 0.041168213, 0.045074463, -0.08081055, -0.067871094, -0.07739258, 0.080444336, -0.038482666, -0.017654419, 0.018936157, 0.014274597, 0.00969696, -0.0054626465, 8.046627e-06, 0.035125732, 0.043060303, 0.03845215, -0.01928711, -0.018539429, -0.035217285, -0.04144287, -0.010803223, -0.0418396, 0.043273926, -0.0009899139, -0.029312134, 0.017089844, -0.008422852, -0.07879639, 0.0052948, -0.028366089, 0.025802612, 0.02406311, 0.008636475, -0.018920898, -0.028320312, 0.04397583, -0.04473877, -0.027450562, 0.0046577454, 0.012619019, 0.060913086, 0.020202637, -0.010299683, 0.03277588, -0.058410645, 0.05102539, 0.046417236, 0.019699097, 0.0013933182, -0.019577026, -0.001156807, 0.033966064, 0.00793457, 0.02619934, 0.009025574, 0.0017585754, 0.050720215, 0.028457642, 0.044555664, 0.06689453, 0.017913818, -0.003736496, -0.037597656, 0.009605408, -0.07196045, -0.030639648, 0.03982544, -0.027175903, 0.020980835, 0.03439331, 0.0073776245, 0.014465332, 0.07495117, -0.009353638, 0.020736694, 0.002128601, 0.035583496, -0.031097412, 0.026275635, -0.028366089, -0.02180481, 0.013092041, 0.006275177, -0.00048089027, 0.060516357, 0.015838623, 0.030288696, 0.016159058, 0.037109375, 0.06384277, 0.06149292, -0.022140503, -0.0118255615, 0.0023822784, 0.0637207, -0.0014925003, -0.01826477, 0.010559082, -0.007080078, -0.027618408, 0.016433716, 0.01373291, -0.021621704, -0.002576828, -0.016555786, -0.030471802, -0.00095796585, 0.04550171, 0.001045227, -0.00233078, -0.0021247864, -0.017837524, 0.018112183, 0.03817749, 0.008781433, -0.014411926, 0.008148193, 0.014770508, -0.008476257, 0.09301758, -0.055541992, 0.032043457, -0.029571533, 0.043823242, 0.05496216, -0.032592773, 0.0076675415, 0.007575989, -0.007987976, 0.015640259, 0.028274536, 0.017868042, -0.043548584, -0.005317688, -0.009391785, -0.002811432, 0.019256592, -0.022506714, -0.004776001, -0.017608643, 0.018798828, 0.03152466, 0.059906006, -0.0181427, 0.0395813, -0.03652954, 0.0060157776, 0.045959473, -0.0073890686, -0.019836426, -0.014976501, -0.03967285, -0.0060768127, 0.033355713, -0.03793335, -0.011627197, -0.043060303, 0.0068244934, 0.004135132, -0.0004711151, 0.019119263, -0.022949219, -0.035369873, -0.02330017, -0.023071289, 0.0066604614, -0.019256592, -0.045928955, -0.02079773, -0.020874023, -0.003162384, -0.038848877, -0.02067566, 0.03491211, -0.0062217712, 0.021408081, -0.030899048, 0.029876709, -0.035461426, -0.046966553, -0.022155762, -0.004753113, -0.0625, -0.010314941, -0.049957275, -0.07446289, -0.070617676, 0.07305908, 0.008285522, -0.085754395, -0.037200928, -0.043182373, -0.009414673, 0.069885254, -0.030532837, -0.029006958, -0.045135498, -0.08453369, -0.023880005, 0.07104492, 0.014175415, 0.014015198, 0.041931152, 0.072631836, 0.0385437, 0.01525116, -0.016174316, 0.013145447, 0.033691406, 0.05508423, 0.008071899, 0.03237915, -0.033996582, 0.02279663, 0.043029785, -0.045898438, -0.015266418, 0.018432617, 0.02709961, -0.03277588, -0.011383057, -0.04156494, -0.01600647, -0.054260254, -0.0038261414, -0.035583496, -0.0073661804, -0.0046958923, -0.06903076, -0.009056091, -0.053497314, 0.022232056, 0.035125732, 0.010360718, 0.0115356445, 0.022338867, -0.0055007935, -0.0259552, 0.006011963, 0.06100464, -0.004257202, 0.010734558, -0.039123535, 0.03338623, -0.051208496, 0.044311523, 0.011161804, -0.045318604, 0.022567749, -0.012245178, 0.04107666, 0.009529114, 0.008491516, -0.0028648376, -0.012191772, -0.02848816, -0.016738892, -0.0069389343, 0.01687622, -0.010955811, -0.0032444, -0.0012407303, -0.0047073364, -0.039154053, -0.041625977, 0.014915466, -0.010009766, 0.008560181, 0.0049705505, -0.01386261, -0.014541626, 0.031433105, -0.013946533, 0.020401001, -0.014511108, 0.055480957, 0.00982666, -0.019744873, 0.049835205, 0.010253906, 0.059814453, 0.031173706, -0.05368042, 0.008628845, -0.04888916, -0.019515991, 0.029403687, 0.0030326843, -0.058929443, 0.033599854, 0.0051231384, 0.016433716, -0.0051498413, -0.0069847107, 0.076049805, 0.0151901245, -0.017868042, 0.002407074, -0.03274536, 0.023895264, 0.031311035, -0.008171082, -0.04168701, -0.010025024, -0.000895977, -0.060791016, 0.073791504, 0.042144775, -0.021972656, 0.030075073, 0.014808655, -0.010169983, -0.005153656, 0.027786255, -0.007144928, 0.013916016, 0.013366699, -0.003692627, -0.03074646, 0.008399963, -0.046966553, -0.011955261, -0.013198853, -0.07281494, 0.020904541, 0.06774902, 0.017364502, -0.032958984, 0.0042800903, 0.020553589, 0.010520935, 0.031036377, -0.03543091, 0.028259277, -0.010116577, 0.0066070557, 0.008422852, -0.025650024, 0.008117676, -0.007949829, 0.040802002, -0.03930664, -0.006198883, 0.003490448, 0.006374359, -0.014816284, 0.04776001, -0.009544373, -0.003993988, -0.040039062, -0.009414673, -0.020324707, -0.029815674, 0.046539307, 0.027313232, -0.016540527, 0.007347107, -0.024795532, 0.008270264, -0.023223877, -0.026351929, -0.05456543, -0.022232056, -0.002702713, 0.01789856, 0.00011461973, -0.010292053, 3.671646e-05, -0.025756836, -0.028213501, -0.013076782, -0.02482605, -0.017822266, -0.024551392, -0.017990112, -0.029525757, -0.02381897, -0.054840088, 0.032226562, -0.023605347, 0.024841309, 0.0036029816, -0.020385742, 0.011184692, -0.0067253113, -0.047973633, 0.0068511963, 0.006214142, -0.0021972656, 0.031219482, -0.013183594, -0.015182495, -0.03692627, -0.039489746, -0.037200928, 0.007255554, 0.00060129166, -0.037384033, 0.012863159, -0.025665283, -0.009254456, 0.017669678, 0.029464722, -0.044708252, -0.0051460266, -0.0010824203, -0.07116699, -0.043701172, -0.016616821, 0.035705566, -0.054870605, -0.03591919, -0.007083893, 0.07055664, -0.0085372925, 0.049957275, 0.015327454, -0.017303467, -0.02267456, 0.009529114, -0.111572266, -0.060272217, -0.02468872, -0.03967285, 0.010437012, -0.0018043518, -0.024871826, 0.060821533, 0.048034668, -0.00090551376, -0.012962341, -0.008026123, 0.022979736, -0.015731812, -0.008514404, -0.006324768, -0.01134491, -0.014884949, 0.018173218, 0.00048184395, 0.020431519, 0.0211792, -0.024032593, 0.013946533, 0.00434494, 0.012229919, 0.014480591, -0.006298065, -0.011672974, 0.010658264, 0.05255127, 0.008888245, -0.025314331, 0.026443481, -0.029693604, 0.0019283295, -0.025421143, 0.048675537, 0.01335144, 0.0030517578, 0.029693604, -0.022720337, -0.029510498, -0.010276794, 0.017578125, -0.00983429, -0.024047852, 0.083496094, -0.020812988, -0.0047683716, 0.024871826, -0.023803711, -0.024765015, -0.049957275, -0.0053977966, -0.033447266, -0.00021278858, 0.018447876, -0.03253174, -0.014007568, 0.037872314, 0.022872925, -0.036346436, -0.033935547, 0.020523071, 0.0463562, -0.06903076, 0.03552246, -0.004047394, 0.0496521, 0.041229248, -0.00919342, 0.04244995, -0.0020198822, 0.05206299, 0.006526947, 0.01890564, 0.034576416, -0.03604126, 0.043945312, 0.004169464, -0.021377563, -0.04876709, -0.0104904175, 0.017150879, 0.03942871, 0.02748108, -0.043945312, 0.058288574, 0.017059326, -0.046844482, 0.009819031, 0.053985596, -0.009529114, -0.009124756, 0.030075073, -0.030212402, -0.03793335, 0.010414124, -0.037506104, 0.01448822, -0.02180481, 0.024032593, 0.014930725, 0.0110321045, -0.0046844482, -0.020446777, -0.010009766, -0.00096940994, -0.016036987, -0.016036987, -0.0028877258, 0.020599365, -0.017456055, -0.023529053, -0.008033752, 0.0075035095, -0.0023612976, -0.025482178, -0.04800415, -0.021896362, -0.030395508, 0.03564453, -0.0058631897, 0.026519775, 0.06463623, -0.017715454, 0.008071899, 0.043426514, -0.032104492, 0.017105103, 0.0025672913, 0.0027542114, 0.019882202, -0.023864746, 0.043792725, -0.010757446, -0.024871826, -0.009460449, 0.050567627, -0.02229309, 0.0033683777, 0.078552246, 0.085998535, 0.0030670166, 0.041870117, 0.021575928, -0.045318604, 0.013832092, -0.0036373138, -0.046569824, -0.045196533, -0.03149414, -0.0013561249, -0.0073928833, -0.054901123, -0.03086853, 0.005519867, -0.00907135, 0.012329102, -0.021957397, -0.054382324, 0.014228821, -0.05935669, -0.00094795227, -0.006690979, 0.022003174, 0.0107421875, 0.015167236, -0.05041504, 0.0049476624, -0.014144897, 0.01210022, 0.020492554, -0.019729614, -0.004798889, 0.005710602, 0.0335083, 0.038513184, 0.007068634, -0.030975342, -0.015151978, 0.030456543, 0.015701294, 0.021469116, -0.036895752, -0.022781372, -0.037139893, 0.017654419, 0.02293396, 0.036712646, -0.020385742, 0.0065689087, 0.033996582, 0.024414062, 0.023254395, 0.033203125, 0.0463562, -0.008811951, -0.033203125, 0.0062408447, -0.013328552, -0.042297363, -0.016464233, -0.020111084, -0.050598145, -0.004508972, -0.0340271, 0.038024902, -0.020477295, 0.033996582, -0.0032577515, 0.013252258, 0.016738892, -0.0016031265, 0.016433716, 0.014022827, -0.0078086853, 0.027420044, 0.0077934265, -0.0052108765, -0.018356323, 0.004886627, 0.009651184, 0.025894165, 0.00079631805, 0.031051636, -0.056396484, 0.000746727, 0.045410156, -0.046569824, -0.025650024, 0.008331299, -0.0039520264, -0.038024902, -0.05126953, -0.026489258, -0.024902344, 0.024353027, 0.015914917, 0.068481445, -0.005455017, 0.026290894, 0.019134521, 0.009925842, 0.016921997, -0.025802612, 0.07574463, 0.0011548996, 0.0009126663, -0.02796936, -0.05255127, -0.009506226, 0.03326416, 0.0049095154, 0.03390503, -0.043792725, 0.023635864, -0.015991211, 0.015472412, -0.04006958, -0.0871582, -0.044708252, 0.026046753, -0.011047363, 0.014144897, -0.023910522, -0.0056495667, 0.025421143, -0.017730713, 0.03652954, -0.00944519, 0.03466797, 0.019897461, 0.025039673, -0.029632568, 0.0043296814, -0.0098724365, -0.02268982, 0.019515991, 0.0045204163, 0.01890564, -0.0368042, 0.031311035, -0.044158936, 0.013092041, -0.05606079, -0.00749588, -0.014450073, 0.04257202, 0.042663574, 0.019638062, -0.014556885, 0.009223938, -0.014518738, -0.014137268, 0.022277832, -0.026046753, 0.026672363, -0.027694702, 0.025222778, -0.018737793, -0.001701355, -0.025817871, -0.026657104, 0.023239136, -0.030075073, -0.03555298, 0.010650635, 0.001616478, -0.020446777, -0.0068244934, -0.022460938, 0.0070228577, 0.005092621, -0.020584106, -0.028320312, 0.010360718, 0.05038452, -0.0104904175, -0.0033111572, 0.028167725, 0.019821167, -0.02243042, 0.031311035, -0.03866577, -0.038360596, -0.0029525757, 0.040985107, -0.074401855, -0.053894043, 0.028305054, -0.0541687, -0.055877686, -0.02432251, 0.0002746582, 0.048431396, 0.04437256, -0.018066406, 0.004421234, -0.011856079, 0.007030487, 0.007129669, -0.002040863, -0.028579712, -0.03793335, -0.0012159348, 0.0056114197, 0.032470703, -0.008453369, 0.020645142, -0.059661865, 0.026657104, 0.012901306, -0.0030288696, -0.021835327, -0.0006546974, 0.016708374, 0.01789856, -0.021087646, 0.0054893494, 0.02758789, -0.019973755, 0.025283813, 0.018310547, 0.051818848, -0.025497437, -0.101623535, -0.07104492, -0.03857422, 0.056884766, -0.03164673, -0.035461426, 0.04284668, 0.03466797, -0.03314209, 0.034362793, 0.056030273, -0.029663086, -0.016952515, 0.011978149, -0.051940918, -0.03161621, 0.002664566, -0.0066833496, 0.0107421875, 0.013214111, 0.027008057, -0.023651123, 0.00491333, -0.008522034, -0.056488037, 0.013160706, -0.039367676, -0.038116455, -0.0021381378, -0.044708252, 0.041229248, 0.016616821, 0.022705078, -0.0005054474, 0.043701172, -0.022003174, 0.0014038086, 0.011634827, 0.007534027, 0.020965576, 0.0067977905, -0.025543213, -0.0057373047, -0.019119263, 0.018661499, -0.049682617, -0.030532837, 0.070251465, 0.027374268, -0.062194824, 0.043914795, -0.08392334, 0.012374878, 0.018173218, -0.027770996, 0.0049972534, -0.025253296, 0.027755737, -0.0138168335, -0.015991211]}, "B07FQVDWZ4": {"id": "B07FQVDWZ4", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill\nDescription: The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer's request. Cordless Drill NOT included.\nFeatures: The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits.\nRestore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco\nThe Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush.\nCleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with.\nOur brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.\u201d\n", "metadata": {"Name": "The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill", "Brand": "Drill Brush Power Scrubber by Useful Products", "Description": "The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer's request. Cordless Drill NOT included.", "Features": "The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits.\nRestore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco\nThe Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush.\nCleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with.\nOur brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.\u201d", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0011920929, 0.00381279, -0.037994385, -0.039978027, -0.003921509, -0.02760315, -0.008544922, 0.023834229, -0.037506104, 0.048339844, 0.009315491, 0.045410156, 0.024795532, -0.024261475, 0.012794495, 0.009819031, 0.013656616, 0.0070152283, 0.026855469, -0.037139893, 0.014450073, -0.010185242, -0.006034851, 0.04244995, 0.019714355, 0.009231567, 0.03768921, 0.021118164, 0.009841919, -0.0053749084, 0.034576416, -0.039123535, 0.031585693, 0.034332275, -0.040771484, -0.040252686, -0.070007324, 0.032104492, -0.00035095215, -0.024978638, 0.011787415, -0.003332138, -0.03262329, 0.053009033, -0.0501709, -0.033355713, 0.01071167, -0.004207611, 0.0052490234, 0.028915405, 0.01574707, 0.015731812, 0.017211914, -0.0056991577, -0.013626099, 0.0052108765, -0.0491333, 0.020690918, 0.01399231, 0.07824707, 0.017501831, 0.002336502, -0.014060974, -0.0446167, -0.029129028, -0.025878906, 0.029678345, -0.020385742, -0.05734253, -0.009414673, 0.090026855, -0.023971558, 0.02406311, -0.012336731, -0.034179688, -0.037200928, 0.032958984, -0.020309448, 0.0028533936, 0.011016846, -0.0021877289, -0.024871826, 0.011688232, -0.004047394, -0.016220093, -0.0008983612, -0.016540527, -0.0064849854, -0.0008196831, 0.0010719299, 0.002204895, -0.050872803, -0.028778076, 0.05908203, 0.034332275, -0.02708435, -0.022445679, -0.06137085, 0.03994751, 0.031982422, 0.04876709, -0.064453125, 0.08276367, -0.019866943, -0.017028809, -0.00024604797, -0.0116119385, 0.018173218, 0.015037537, 0.03451538, -0.027893066, -0.023361206, 0.017822266, -0.008628845, -0.041290283, 0.004749298, 0.030761719, -0.08300781, -0.005558014, -0.09625244, -0.030349731, -0.025131226, -0.004299164, 0.03768921, 0.061431885, 0.03640747, -0.006996155, 0.029006958, -0.033172607, -0.020339966, -0.0038414001, 0.027069092, 0.02722168, 0.04586792, -0.008125305, 0.011985779, -0.021728516, -0.013084412, 0.021865845, 0.026184082, 0.023803711, -0.04345703, 0.023361206, 0.038330078, 0.037017822, -0.020858765, 0.015899658, 0.04019165, 0.015823364, 0.019317627, 0.013328552, 0.033203125, 0.034240723, 0.019348145, -0.02835083, -0.007083893, 0.005054474, -0.010177612, -0.01386261, -0.049987793, 0.031982422, 0.002023697, -0.0078125, 0.009262085, 0.0035572052, -0.016296387, -0.037628174, -0.0035381317, 0.013145447, -0.020950317, 0.029541016, 0.004459381, -0.0056533813, -0.009315491, 0.017196655, -0.018432617, -0.028213501, 0.047607422, 0.053588867, -0.11248779, -0.065979004, -0.05267334, 0.07458496, -0.017562866, -0.020553589, -0.019821167, 0.017028809, 0.0134887695, 0.03933716, 0.0071411133, 0.007972717, -0.025543213, -0.01096344, 0.01864624, -0.020553589, 0.048309326, -0.02696228, 0.073791504, -0.012512207, -0.08068848, 0.016448975, 0.017471313, -0.033172607, 0.003047943, -0.051696777, -0.016555786, -0.010108948, 0.0070648193, -0.005706787, 0.039398193, 0.011512756, 0.0126571655, -0.014373779, -0.028656006, -0.0042037964, -0.016555786, -0.037353516, 0.008300781, 0.0022392273, 0.007259369, 0.026123047, -0.019119263, 0.011672974, 0.023513794, -0.0047836304, 0.005332947, -0.019851685, 0.0038700104, -0.018859863, 0.028381348, -0.033935547, 0.024459839, 0.04071045, 0.05731201, -0.027664185, 0.024337769, 0.026992798, 0.074279785, -0.011512756, -0.016021729, 0.0071372986, 0.017089844, -0.013847351, 0.02267456, -0.008720398, 0.017837524, 0.030822754, 0.0016431808, -0.02796936, 0.0126953125, -0.0004799366, 0.0021419525, 0.007408142, -0.002828598, -0.050323486, 0.03717041, -0.046417236, -0.049041748, 0.0037345886, 0.011734009, 0.003490448, -0.041931152, -0.0012102127, -0.020904541, 0.018615723, -0.006549835, 0.03060913, 0.016021729, -0.003408432, 0.0008921623, 0.0009622574, -0.04071045, 0.0062675476, 0.051940918, 0.011474609, 0.03375244, -0.007713318, -0.024841309, -0.0035152435, 0.025680542, 0.01914978, 0.053375244, 0.07220459, -0.010650635, -0.0016775131, -0.00248909, 0.0262146, 0.008270264, -0.024414062, -0.027526855, 0.03704834, -0.0284729, -0.060150146, 0.005908966, -0.016845703, -0.05328369, 0.0003271103, 0.032409668, 0.010139465, -0.0013074875, -0.02142334, 0.036010742, -0.030807495, 0.011070251, 0.011779785, 0.013916016, 0.01991272, -0.029830933, -0.021377563, 0.012390137, -0.020965576, 0.03692627, 0.04257202, -0.0072898865, 0.05822754, 0.015014648, 0.01852417, 0.04083252, 0.021316528, 0.0014400482, -0.037353516, -0.01939392, -0.03289795, -0.008804321, -0.021240234, 0.03186035, -0.009963989, 0.0046844482, -0.0574646, 0.021240234, -0.00730896, -0.0033931732, 0.007167816, 0.027755737, -0.022918701, 0.005695343, -0.0129776, 0.016983032, -0.01398468, -0.01210022, -0.027175903, -0.03186035, 0.00016593933, -0.046936035, -0.043151855, 0.028656006, 0.014709473, 0.012901306, -0.047302246, 0.01184845, 0.0037345886, -0.026443481, 0.023605347, 0.0016365051, 0.02420044, -0.012084961, -0.04296875, -0.041168213, -0.035980225, -0.08905029, -0.03149414, 0.021331787, -0.029907227, 0.082092285, 0.02861023, -0.046936035, 0.040252686, 0.028915405, 0.0067443848, 0.017318726, 0.011039734, -0.018615723, -0.021148682, -4.9710274e-05, 0.009048462, -0.0018205643, 0.018432617, -0.04006958, -0.03137207, -0.0030345917, -0.0035190582, 0.018707275, -0.018463135, 0.025909424, 0.015419006, 0.006095886, 0.019821167, 0.062194824, -0.01737976, -0.016433716, -0.02053833, 0.044189453, -0.057434082, -0.031036377, -0.0236969, 0.031036377, 0.0039253235, -0.052612305, 0.03869629, -0.032165527, -0.13562012, 0.017074585, 0.0023937225, -0.035583496, 0.009506226, -0.07434082, -0.060699463, -0.07373047, 0.004749298, 0.04333496, 0.0099105835, 0.0014753342, -0.009132385, 0.017227173, 0.0018863678, -0.017791748, 0.03161621, -0.0051498413, -0.006000519, -0.021591187, -0.0036392212, 0.0385437, -0.0032024384, 0.0119018555, -0.027923584, 0.018081665, -0.03616333, 0.011810303, -0.02357483, 0.027236938, -0.020950317, -0.0008416176, -0.010772705, -0.019546509, -0.036987305, -0.034606934, -0.0067863464, -0.04888916, 0.037628174, -0.03805542, -0.025756836, -0.020339966, -0.041778564, 0.019500732, -0.0154800415, -0.017456055, -0.03161621, -0.041107178, -0.02468872, -0.035858154, -0.024215698, 0.011375427, 0.031921387, 0.030227661, 0.012573242, 0.09362793, 0.04800415, 0.034210205, -0.028213501, -0.005214691, -0.033416748, -0.023880005, 0.061340332, -0.026992798, -0.008636475, -0.05758667, 0.07366943, -0.037078857, -0.023757935, 0.030181885, -0.08111572, 0.051574707, -0.0038070679, -0.012191772, 0.023773193, 0.02319336, -0.007446289, 0.01651001, -0.02960205, 0.003686905, -0.034820557, 0.0038547516, -0.02923584, 0.1015625, 0.03930664, -0.008766174, 0.05697632, 0.06213379, 0.0052375793, 0.032928467, 0.021972656, 0.0074691772, 0.014472961, 0.057403564, -0.009757996, 0.011383057, 0.010261536, -0.00029182434, 0.032958984, -0.0040779114, -0.034973145, 0.01864624, 0.0067977905, -0.039642334, -0.0017080307, 0.019561768, 0.02507019, -0.022125244, -0.021621704, -0.016021729, 0.004295349, -0.052856445, 0.0022335052, 0.005672455, -0.012710571, -0.02394104, 0.05065918, 0.014167786, -0.015991211, 0.009506226, -0.039276123, -0.0044136047, 0.0060920715, 0.010375977, 0.023376465, 0.017150879, -0.016418457, 0.064331055, -0.0012874603, 0.007850647, 0.023651123, 0.00015175343, -0.0128479, -0.027069092, 0.008178711, -0.0158844, -0.0021457672, 0.027236938, 0.06719971, -0.012245178, -0.008079529, -0.019302368, -0.0054130554, -0.00031542778, 0.017120361, -0.04083252, -0.016998291, -0.032928467, -0.036254883, -0.010795593, -0.036743164, -0.031921387, -0.023330688, -0.0007972717, -0.013534546, -0.02748108, -0.045410156, 0.016738892, -0.009254456, 0.0024337769, -0.024734497, 0.072021484, -0.045959473, -0.029891968, -0.011680603, -0.008041382, 0.060272217, 0.03945923, -0.021530151, -0.01361084, -0.022583008, -0.02406311, 0.022262573, -0.021636963, -0.020767212, -0.017944336, -0.043426514, -0.007598877, -0.007575989, 0.04434204, -0.015098572, 0.052490234, -0.0119018555, 0.030166626, -0.07757568, -0.025421143, 0.044311523, -0.046417236, -0.05871582, -0.043548584, 0.09112549, -0.0013141632, 0.00491333, -0.0104904175, 0.0005121231, 0.0067253113, 0.009460449, -0.01612854, 0.011886597, 0.0076408386, -0.0069122314, -0.021133423, -0.017074585, -0.020050049, 0.06512451, 0.009963989, 0.05014038, -0.045440674, 0.015090942, 0.003686905, -0.0007376671, -0.0052490234, -0.001964569, 0.02142334, -0.010894775, -0.034851074, -0.05758667, 0.082458496, 0.016601562, -0.05505371, -0.032836914, -0.012451172, -0.05267334, -0.050048828, -0.036010742, 0.012008667, 0.031585693, 0.0057754517, -0.03604126, 0.02406311, -0.000436306, -0.0010089874, 0.016464233, -0.016571045, 0.013534546, -0.0035171509, 0.017120361, -0.020904541, -0.01828003, 0.030197144, -0.014961243, -0.004135132, -0.07055664, 0.014846802, 0.009544373, -0.022064209, -0.026901245, -0.017227173, -0.0049858093, -0.026031494, 0.032928467, 0.0068244934, -0.029296875, 0.005504608, 0.050964355, -0.04119873, -0.0079574585, 0.06945801, -0.039855957, 0.015258789, 0.019470215, 0.045959473, 0.0014038086, 0.0038089752, 0.03100586, -0.051818848, -0.016204834, -0.0031051636, -0.038879395, 0.016296387, -0.031311035, -0.03390503, -0.012184143, -0.04864502, 0.037902832, 0.011817932, 0.030303955, 0.030410767, 0.039611816, -0.09991455, -0.0067100525, -0.03829956, 0.048034668, -0.01725769, -0.008636475, 0.020339966, -0.03012085, -0.0096588135, 0.006839752, 0.0031013489, -0.03326416, -0.009788513, -0.01096344, -0.042816162, -0.0076675415, -0.012939453, -0.016693115, -0.022949219, -0.01878357, -0.011306763, 0.03390503, -0.008766174, -0.0184021, -0.041290283, 0.0129776, 0.02079773, -0.04095459, -0.0055236816, -0.006580353, 0.008132935, 0.00258255, 0.011360168, -0.0074501038, 0.014663696, -0.046142578, -0.045806885, -0.053375244, -0.02798462, -0.03253174, 0.07354736, 0.018707275, 0.0076293945, 0.06488037, -0.005290985, 0.05154419, -0.010414124, 0.013595581, 0.019500732, 0.030380249, 0.047729492, -0.038970947, -0.03036499, 0.058685303, -0.044555664, -0.021865845, -0.039398193, 0.052093506, -0.02633667, -0.037872314, 0.05065918, -0.017044067, 0.019332886, 0.0026397705, -0.025756836, -0.019317627, 0.046905518, -0.0022392273, 0.0028152466, -0.01210022, -0.015701294, -0.022079468, 0.055541992, -0.045013428, -0.009925842, 0.02017212, 0.0044403076, 0.040740967, -0.009262085, -0.048919678, -0.010101318, -0.04977417, 0.011856079, -0.0036697388, -0.031097412, 0.008514404, -0.020721436, -0.04244995, 0.024993896, 0.032165527, 0.036895752, 0.03048706, -0.08300781, 0.02168274, 0.07543945, -0.005832672, 0.11553955, 0.0023174286, -0.03314209, -0.010543823, 0.039276123, 0.037017822, 0.019515991, -0.032409668, -0.029342651, -0.051849365, 0.015052795, 0.016586304, 0.058746338, -0.05505371, 0.010253906, 0.023971558, 0.064331055, 0.009017944, -0.0014715195, 0.0013818741, 0.029281616, 0.02645874, -0.0010271072, -0.007820129, -0.011650085, -0.057281494, -0.0063285828, -0.034729004, 0.010757446, -0.00090265274, 0.042388916, 0.030670166, -0.0037574768, -0.014472961, 0.024765015, 0.008651733, 0.017166138, 0.0070610046, -0.015541077, -0.037109375, 0.001045227, -0.0076942444, 0.007205963, 0.0158844, -0.019515991, 0.012939453, 0.028747559, -0.029663086, 0.051239014, 0.00031113625, 0.001698494, 0.026412964, -0.03656006, 0.02368164, 0.038146973, -0.0039520264, 0.011711121, 0.0090789795, 0.013595581, 0.015541077, 0.03100586, 0.028884888, 0.046295166, -0.02407837, 0.020187378, 0.016921997, -0.0011405945, 0.0019292831, 0.03375244, -0.045684814, 0.029067993, 0.02708435, -0.02432251, -0.026489258, -0.004337311, 0.032318115, -0.038116455, -0.04257202, 0.02407837, 0.021057129, -0.0010843277, 0.012809753, -0.024154663, -0.025100708, 0.004524231, 0.005973816, 0.01852417, 0.026245117, 0.013168335, -0.02357483, 0.035308838, -0.04296875, 0.031463623, 0.010612488, 0.06402588, 0.04562378, 0.016998291, -0.018585205, 0.02243042, -0.008049011, -0.007873535, 0.015945435, 0.02734375, 0.0028686523, -0.023986816, -0.050476074, 0.019592285, 0.07836914, 0.045715332, 0.0390625, -0.07873535, -0.009414673, -0.0033092499, -0.028457642, -0.0050849915, -0.010009766, -0.015365601, 0.0010080338, 0.0143966675, -0.01398468, 0.038208008, 0.006542206, 0.0057640076, 0.001581192, -0.035583496, 0.046966553, -0.009498596, -0.014099121, -7.6413155e-05, 0.004447937, -0.0020561218, -0.006549835, -0.021636963, -0.0124053955, -0.030700684, 0.034301758, 0.00079250336, -0.04083252, -0.02444458, 0.009529114, 0.039154053, -0.038970947, -0.012191772, 0.006385803, 0.008453369, 0.005584717, 0.05029297, -0.01007843, -0.06329346, -0.06530762, 0.03186035, -0.09265137, -0.014801025, -0.026260376, 0.011207581, 0.01159668, 0.0024871826, 0.06097412, 0.014083862, 0.033325195, 0.0028514862, -0.022125244, 0.004688263, -0.024780273, 0.02268982, -0.0073280334, -0.0032920837, 0.011230469, 0.007396698, -0.02520752, 0.06890869, -0.005455017, -0.038238525, 0.010818481, -0.0026950836, 0.0028266907, -0.012428284, -0.0013437271, -0.008087158, 0.015792847, 0.023513794, -0.029159546, 0.025680542, 0.0025501251, -0.00333786, 0.02407837, 0.029205322, -0.023101807, -0.0128479, 0.011245728, 0.025024414, -0.0036125183, -0.001912117, 0.0496521, 0.0026721954, -0.0058784485, 0.010284424, -0.008796692, 0.0068626404, -0.002840042, -0.0029792786, -0.014160156, -0.015594482, -0.029937744, -0.035583496, 0.010864258, -0.014076233, 0.0021438599, -0.013328552, 0.0043411255, 0.0026397705, -0.012496948, -0.025680542, -0.01739502, 0.015357971, -0.029434204, -0.018417358, -0.0053596497, -0.06903076, 0.041900635, 0.0146102905, 0.006729126, -0.004722595, 0.018493652, -0.04333496, 0.009712219, 0.0059509277, -0.017059326, -0.006965637, 0.019088745, 0.022247314, -0.03074646, 0.0770874, 0.0129852295, -0.08319092, -0.053955078, 0.05218506, 0.045928955, -0.0413208, 0.057678223, -0.029769897, 0.0104904175, 0.012336731, 0.00982666, -0.038391113, 0.036071777, 0.009887695, 0.022598267, 0.030807495]}, "B081Q5YVT3": {"id": "B081Q5YVT3", "original": "Brand: Podoy\nName: Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder\nDescription:

      Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

      Waterproof: Made of waterproof material, you don't have to worry about getting wet even if it rains or snows.\u00a0

      Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

      Prevent your propane tank from experiencing premature fading and damage from the sun.

      The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

      \nFeatures: \u25b2PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb\n\u25b2HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on.\n\u25b2This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn't freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio.\n\u25b2Velcro closure at top, elasticized bottom for a neat, tailored fit.\n\u25b2If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you're not completely satisfied, you can ask for a replacement or full refund.\n", "metadata": {"Name": "Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder", "Brand": "Podoy", "Description": "

      Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

      Waterproof: Made of waterproof material, you don't have to worry about getting wet even if it rains or snows.\u00a0

      Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

      Prevent your propane tank from experiencing premature fading and damage from the sun.

      The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

      ", "Features": "\u25b2PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb\n\u25b2HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on.\n\u25b2This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn't freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio.\n\u25b2Velcro closure at top, elasticized bottom for a neat, tailored fit.\n\u25b2If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you're not completely satisfied, you can ask for a replacement or full refund.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.015197754, -0.0060424805, -0.03717041, -0.057159424, 0.005214691, -0.0023117065, -0.012123108, 0.022903442, -0.037017822, -0.0039749146, -0.05078125, 0.045043945, -0.054626465, -0.010864258, 0.041412354, -0.05883789, 0.013809204, -0.021591187, -0.032226562, -0.044708252, -0.016708374, -0.03765869, 0.0070495605, 0.057250977, 0.018981934, -0.020385742, 0.056854248, -0.021652222, 0.03466797, -0.018325806, 0.016235352, -0.011146545, 0.056732178, 0.004550934, -0.034729004, 0.03665161, 0.0036087036, -0.0046195984, -0.00062322617, 0.0028495789, -0.018447876, 0.021484375, 0.019104004, -0.04727173, 0.004611969, -0.061798096, 0.036193848, -0.02331543, 0.013305664, 0.04046631, 0.023590088, 0.032104492, 0.01499176, -0.014579773, 0.0037078857, 0.015792847, 0.028411865, -0.023361206, 0.018341064, 0.0025367737, -0.016586304, 0.011787415, 0.026062012, -0.008972168, -0.054016113, 0.027908325, 0.07122803, -0.04425049, -0.01235199, -0.02609253, 0.018356323, 0.0178833, 0.017089844, -0.0023708344, -0.03201294, -0.024551392, -0.008796692, -0.028244019, 0.029022217, 0.008804321, -0.03668213, -0.02432251, 0.027038574, -0.00031471252, -0.015434265, 0.014907837, -0.0231781, -0.0038223267, 0.0062789917, -0.026748657, 0.0017719269, 0.028274536, -0.002357483, -0.00074863434, -0.016677856, -0.031036377, -0.045837402, -0.054656982, 0.03579712, 0.050720215, -0.0044898987, -0.019348145, 0.038269043, -0.015945435, 0.0016918182, 0.058624268, 0.011192322, -0.019821167, 0.0099105835, -0.021087646, -0.0028152466, 0.018432617, -0.05368042, -0.046569824, 0.002439499, 0.039123535, -0.0524292, 0.017089844, 0.01626587, 0.004585266, -0.07354736, -0.05480957, 0.001414299, -0.023880005, 0.045166016, 0.0065460205, -0.012825012, 0.059020996, -0.037353516, 0.02935791, -0.0006685257, -0.014854431, -0.0154800415, 0.06500244, 0.018493652, -0.0071029663, 0.02229309, -0.018981934, -0.002231598, 0.0088272095, -0.03866577, 0.0070152283, 0.051239014, -0.039733887, -0.061279297, 0.025283813, 0.021560669, 0.010681152, -0.0055656433, -0.058654785, -0.026931763, -0.025604248, 0.041809082, 0.02798462, -0.039916992, 0.01158905, 0.043640137, -0.034423828, -0.047424316, -0.06866455, -0.009613037, -0.017974854, -0.0057296753, 0.030792236, 0.015991211, 0.032196045, 0.02178955, 0.012031555, 0.01574707, 0.08544922, -0.005645752, 0.03656006, 0.017440796, 0.017852783, -0.0028514862, -0.0284729, -0.013427734, 0.08514404, 0.10852051, -0.13085938, -0.08416748, -0.052886963, 0.19128418, -0.05078125, -0.011550903, -0.029266357, 0.006313324, -0.03475952, 0.020858765, -0.0095825195, 0.033294678, 0.029647827, 0.0033779144, -0.033996582, 0.0014276505, 0.024642944, -0.025619507, 0.041748047, -0.012145996, -0.039245605, -0.035003662, 0.0073776245, 0.017318726, -0.0021476746, 0.011199951, -0.007881165, 0.002231598, 0.037719727, -0.009147644, 0.025604248, 0.002632141, -0.02482605, 0.02178955, -0.0284729, 0.015167236, 0.016464233, 0.0015602112, 0.008369446, -0.0032291412, -0.023422241, 0.039733887, -0.021255493, 0.03048706, 0.04168701, -0.033050537, -0.018997192, -0.021636963, -0.0050354004, -0.035705566, -0.0050582886, 0.04800415, 0.030471802, 0.07476807, 0.026473999, -0.023391724, 0.027313232, 0.040252686, -0.047576904, -0.02861023, 0.047424316, 0.013221741, -0.02935791, -0.016723633, 0.03466797, -0.018539429, -0.060272217, -0.015533447, 0.03555298, -0.032714844, 0.017410278, 0.055023193, 0.0023345947, -0.00014472008, 0.0024967194, -0.044158936, 0.025375366, -0.012481689, 0.042510986, 0.016571045, 0.013748169, -0.008018494, 0.056121826, 0.04928589, -0.002779007, -0.0035953522, -0.0009279251, 0.040374756, 0.040618896, 0.009864807, -0.025680542, 0.0031032562, 0.053955078, 0.0076522827, 0.05392456, -0.051239014, 0.005207062, -0.016555786, 0.0010910034, -0.01134491, 0.003435135, 0.012268066, 0.030883789, 0.010269165, -0.007537842, 0.013496399, 0.004535675, 0.0107421875, -0.005706787, -0.03668213, -0.011688232, 0.011650085, 0.050628662, -0.008766174, 0.0047950745, 0.00894165, 0.006038666, 0.037109375, -0.007949829, 0.025939941, 0.0030822754, -0.012359619, 0.05496216, 0.007713318, -0.002161026, 0.004890442, -0.010437012, -0.012023926, 0.0096588135, 0.016998291, 0.0005803108, -0.033203125, 0.026779175, 0.019714355, -0.021865845, 0.040039062, 0.029251099, -0.009529114, 0.04598999, 0.06878662, 0.07293701, 0.0262146, -0.004310608, -0.017105103, -0.013328552, 0.005645752, -0.014533997, -0.017807007, -0.0056114197, -0.014038086, -0.018707275, 0.020858765, -0.048950195, -0.0132369995, -0.020721436, 0.025283813, -0.0074310303, 0.008163452, 0.025970459, 0.026153564, -0.0098724365, 0.043945312, -0.008277893, -0.011390686, 0.025238037, -0.028030396, -0.04663086, 0.038330078, -0.0033855438, -0.004234314, 0.012878418, 0.022140503, -0.0069122314, -0.027557373, -0.030273438, -0.026748657, 0.03881836, 0.0287323, -0.053741455, -0.0035533905, -0.081970215, -0.009246826, -0.04537964, -0.070495605, 0.016326904, 0.07067871, 0.00015091896, -0.057800293, -0.0025405884, 0.03439331, 0.01083374, 0.015525818, 0.019104004, -0.06549072, -0.010658264, 0.004436493, -0.004283905, 0.008682251, -0.038146973, 0.026290894, -0.004776001, -0.021362305, -0.007820129, -0.0022201538, -0.0015535355, -0.00010973215, 0.0385437, 0.055511475, 0.027191162, 0.0019893646, -0.031173706, 0.013572693, 0.054992676, 0.023406982, -0.021850586, -0.017211914, -0.016525269, 0.0014047623, 0.04260254, -0.0118255615, -0.013710022, -0.046966553, -0.009124756, 0.01134491, -0.035491943, -0.010124207, -0.031982422, -0.040740967, -0.03289795, 0.017333984, 0.06335449, -0.034210205, 0.011627197, -0.01058197, 0.00024306774, 0.0020980835, 0.019241333, -0.013198853, -0.00258255, -0.027862549, 0.0003681183, 0.022277832, 0.0040512085, 0.02368164, 0.034973145, -0.023361206, -0.040496826, 0.023101807, 0.025466919, 0.024993896, 0.0059127808, -0.03326416, -0.013969421, -0.042633057, -0.025604248, -0.024673462, -0.0021800995, 0.02784729, -0.029678345, 0.058898926, -0.01675415, -0.017318726, -0.005466461, -0.005443573, 0.0513916, -0.008056641, 0.003967285, -0.034118652, -0.04095459, -0.020095825, -0.0009484291, -0.025512695, 0.020568848, 0.0048675537, 0.017150879, -0.0066986084, -0.004184723, 0.008003235, 0.040008545, -0.0053710938, 0.011779785, -0.013168335, -0.021774292, 0.067993164, -0.0014925003, -0.026412964, -0.014518738, 0.029830933, 0.007080078, 0.00075149536, -0.02130127, -0.030395508, 0.052825928, 0.0042381287, -0.010726929, 0.02822876, 0.027954102, -0.017211914, -0.0035877228, -0.0206604, -0.016036987, -0.055664062, 0.0045776367, -0.11071777, 0.08905029, 0.039123535, -0.033843994, 0.090270996, 0.07495117, -0.01939392, 0.025665283, 0.028640747, -0.013519287, 0.011817932, 0.0206604, -0.043121338, 0.0028018951, 0.007843018, -0.072143555, 0.015975952, -0.026153564, 0.034118652, 0.013046265, -0.010787964, -0.0115356445, -0.056365967, -0.030044556, 0.014526367, -0.002565384, 0.0044403076, -0.022277832, -0.0149383545, -0.021392822, -0.009239197, 0.03616333, -0.03552246, -0.0031414032, -0.0066337585, -0.011192322, -0.024215698, 0.00074768066, -0.01285553, -0.03466797, 0.0053863525, 0.033996582, 0.019317627, 0.010566711, -0.030136108, 0.0071754456, -0.024139404, -0.012504578, 0.035217285, 0.033294678, -0.025939941, -0.025314331, 0.0340271, 0.009544373, -0.016601562, 0.013938904, -0.04147339, -0.072509766, 0.0056495667, 0.025436401, -0.0064735413, -0.018951416, -0.016998291, -0.024810791, -0.05819702, 0.007972717, -0.03289795, 0.0184021, -0.028015137, -0.03616333, -0.048339844, -0.018936157, -0.0491333, 3.2246113e-05, -0.056915283, 0.023651123, 0.017852783, -0.0032367706, -0.013313293, 0.09887695, -0.05859375, -0.041656494, -0.0099487305, 0.03050232, -0.029220581, -0.025009155, 0.028579712, -0.008003235, -0.012931824, -0.005809784, -0.0014839172, -0.062927246, 0.0018291473, -0.022064209, 0.008682251, -0.0048446655, 0.05001831, 0.04675293, -0.029129028, 0.05883789, 0.015113831, 0.030380249, -0.091918945, 0.031280518, 0.007160187, -0.033203125, -0.09240723, -0.022064209, 0.074523926, 0.028198242, -0.021377563, -0.012489319, 0.034088135, 0.044281006, -0.010932922, -0.044128418, -0.00045990944, 0.012756348, -0.0012149811, -0.017440796, -0.0071907043, -0.024169922, 0.03793335, -0.02067566, 0.0068740845, -0.016357422, -0.005317688, 0.0033607483, -0.009490967, 0.032073975, -0.035583496, -0.0030879974, -0.031066895, 0.0005917549, -0.101745605, 0.07977295, 0.05532837, -0.002527237, 0.0026130676, -0.04840088, -0.028533936, -0.030380249, -0.02168274, -0.05380249, 0.058410645, -0.010856628, -0.025390625, 0.014305115, -0.028564453, 0.008453369, -0.0181427, -0.041992188, -0.012466431, 0.03048706, -0.0009860992, -0.030334473, -0.040222168, 0.0062446594, 0.021224976, 0.0025806427, 0.0029678345, -0.028915405, 0.0055007935, -0.030471802, -0.005794525, 0.020385742, -0.02734375, -0.020996094, 0.0050354004, 0.0036373138, -0.037139893, 0.044403076, 0.02368164, 0.035491943, -0.011291504, 0.012275696, -0.04425049, -0.021224976, -0.003982544, 0.0040740967, -0.0051727295, 0.017150879, 0.022583008, -0.031341553, -0.0073928833, 0.027542114, -0.03326416, 0.02293396, 0.012123108, -0.053527832, 0.011810303, 0.025238037, -0.0015182495, -0.062316895, 0.059509277, -0.010368347, -0.03894043, -0.009666443, 0.0056266785, -0.027435303, 0.013305664, -0.0184021, -0.0124053955, 0.0101623535, -0.019836426, 0.01687622, 0.0132751465, 0.03366089, -0.001203537, 0.014541626, 0.0063667297, -0.009849548, -0.061279297, -0.025787354, -0.062347412, 0.02960205, -0.021011353, 0.03265381, -0.0075531006, -2.1755695e-05, 0.0020618439, -0.029846191, -0.0061569214, 0.0021362305, -0.02456665, -0.0074653625, 0.023422241, 0.025802612, 0.004802704, -0.02268982, 0.039794922, 0.039611816, -0.046051025, -0.01777649, -0.019973755, 0.04034424, -0.0068893433, 0.021118164, -0.047210693, -0.009628296, -0.036468506, 0.004837036, 0.039642334, -0.06719971, -0.08215332, -0.050628662, 0.0030670166, 0.012359619, 0.006652832, 0.010688782, 0.009094238, -0.014549255, -0.005554199, -0.040863037, 0.02178955, 0.007820129, -0.017562866, 0.04345703, 0.006587982, 0.0023097992, 0.02104187, 0.000770092, -0.06677246, 0.009002686, 0.0020332336, -0.080200195, -0.019195557, -0.045562744, 0.0146865845, -0.003211975, -0.01802063, -3.9935112e-05, 0.04916382, -0.010864258, -0.0309906, -0.0096206665, 0.0032234192, -0.0009150505, -0.025741577, 0.026473999, -0.02003479, 0.0009236336, -0.02067566, -0.020217896, -0.072631836, -0.038879395, 0.011833191, 0.014328003, -0.0077323914, 0.0037708282, -0.010597229, -0.0027217865, 0.012275696, 0.029876709, 0.033996582, -0.044128418, -0.0054130554, 0.008804321, 0.0087890625, 0.007118225, -0.053527832, 0.0023288727, 0.014678955, -0.018630981, 0.03390503, -0.038208008, -0.039367676, -0.04675293, 0.052520752, 0.04107666, 0.007881165, -0.032165527, 0.011062622, -0.005504608, -0.031677246, -0.015029907, 0.02468872, -0.015541077, 0.013290405, -0.041259766, 0.003458023, 0.016204834, -0.006427765, 0.021133423, -0.0005187988, 0.0446167, -0.009864807, 0.008270264, 0.0126571655, -0.02357483, 0.052246094, -0.020187378, 0.05038452, 0.002565384, -0.007949829, 0.0107421875, -0.0002732277, -0.046813965, 0.008895874, 0.026443481, -0.013656616, 0.023803711, 0.027328491, -0.009048462, -0.017745972, -0.008079529, 0.050048828, 0.003435135, -0.022659302, 0.022659302, -0.026412964, -0.014785767, -0.009391785, 0.055786133, -0.0044403076, 0.05105591, -0.038269043, 0.0335083, -0.026992798, 0.0024471283, -0.021209717, -0.024215698, 0.013847351, -0.0010662079, -0.0050811768, 0.005882263, -0.034820557, -0.0037002563, 0.028686523, -0.028686523, 0.028152466, -0.059417725, 0.017807007, -0.014122009, 0.0068893433, -0.03149414, -0.00856781, -0.0021152496, -0.019088745, 0.010414124, -0.009735107, -0.012634277, 0.051971436, 0.017578125, -0.034362793, -0.011230469, -0.041778564, -0.00032424927, 0.031829834, 0.03866577, -0.06744385, -0.0473938, -0.017227173, -0.007118225, -0.021484375, 0.06298828, -0.02281189, 0.048614502, -0.016967773, 0.008522034, 0.035064697, -0.0048942566, 0.022506714, -0.016921997, -0.00016736984, 0.029541016, 0.0077323914, -0.0036697388, -0.0051956177, -0.0119018555, 0.0013713837, 0.0017957687, -0.042541504, -0.016952515, 0.017227173, -0.026229858, -0.03439331, 0.0181427, 0.010658264, -0.027801514, -0.009292603, -0.052642822, 0.031982422, -0.03186035, -0.041046143, -0.06329346, -0.005634308, -0.037322998, 0.024414062, -0.02067566, -0.029403687, -0.0005912781, 0.014907837, -0.013183594, -0.05960083, -0.028396606, -0.0044059753, -0.0061836243, 0.0021362305, 0.047424316, -0.01360321, -0.062561035, -0.053497314, 0.012329102, -0.036315918, -0.0069389343, -0.048614502, -0.004623413, -0.013305664, -0.022399902, 0.013694763, 0.06451416, 0.012184143, -0.00050258636, 0.026184082, -0.046081543, -0.044921875, 0.05709839, 0.018157959, -0.024749756, -0.004589081, 0.030334473, 0.0051116943, -0.00041007996, 0.03463745, 0.009361267, -0.024230957, -0.0062065125, -0.039855957, -0.029586792, -0.014373779, -0.0053367615, 0.023376465, 0.016036987, -0.009918213, -0.011009216, 0.0345459, -0.0009937286, 0.020767212, -0.0010948181, 0.013015747, 0.011360168, -0.027954102, -0.00046896935, -0.013763428, -0.0031261444, 0.014221191, -0.016464233, -0.03137207, 0.0052719116, 0.009117126, -0.04272461, -0.00680542, 0.019256592, 0.0046424866, 0.017318726, -0.0040283203, -0.0146865845, -0.0044288635, -0.004043579, -0.025466919, -0.036102295, 0.01902771, 0.009811401, -0.0069084167, -0.0059661865, -0.020248413, -0.0009355545, -0.008979797, -0.010398865, -0.044189453, -0.05819702, 0.04058838, 0.03604126, -0.017303467, 0.0085372925, 0.0027389526, -0.009811401, -0.019958496, 0.030212402, -0.0010509491, 0.04257202, 0.0033607483, 0.026184082, 0.021331787, 0.068725586, -0.039794922, -0.06402588, -0.043518066, -0.011619568, 0.02571106, 0.010948181, 0.09057617, -0.009124756, 0.010467529, 0.0057296753, -0.024368286, -0.036499023, 0.038482666, 0.023529053, -0.008895874, 0.029891968]}, "B009H3QVOK": {"id": "B009H3QVOK", "original": "Brand: Fire Sense\nName: Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp\nDescription: \nFeatures: This outdoor patio heater is made using heavy duty commercial grade steel.\nThis small patio heater can be taken indoors easily due to its light weight.\nThe portable heater makes use of a standard 1 pound LPG propane tank.\nYou can turn on this patio heater in an instant with the push of a button.\nThis outdoor heater is perfect for your porch or any other outdoor venue.\n", "metadata": {"Name": "Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp", "Brand": "Fire Sense", "Description": "", "Features": "This outdoor patio heater is made using heavy duty commercial grade steel.\nThis small patio heater can be taken indoors easily due to its light weight.\nThe portable heater makes use of a standard 1 pound LPG propane tank.\nYou can turn on this patio heater in an instant with the push of a button.\nThis outdoor heater is perfect for your porch or any other outdoor venue.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.019454956, 0.003534317, -0.046691895, -0.022155762, 0.02041626, -0.03778076, 0.017028809, 0.0048713684, -0.026412964, 0.014801025, -0.014213562, 0.032287598, 0.01737976, -0.022521973, 0.04660034, -0.0234375, 0.026428223, -0.04751587, -0.026687622, -0.033447266, 0.009063721, -0.011131287, -0.008407593, 0.08831787, 0.028366089, 0.0070877075, 0.058532715, -0.025146484, 0.040771484, 0.0027484894, 0.0345459, -0.023880005, 0.048736572, -0.021057129, -0.038330078, -0.05014038, -0.028411865, -0.022949219, -0.060180664, 0.0022239685, 0.02532959, -0.021697998, -0.0859375, -0.006511688, -0.060760498, 0.0016469955, -0.009208679, 0.000603199, -0.02545166, -0.039093018, 0.010696411, -0.016418457, 0.039794922, -0.031341553, -0.031951904, -0.030044556, 0.0054855347, -0.0048942566, 0.010597229, -0.02999878, -0.018753052, 0.011413574, 0.030975342, 0.0090408325, -0.029907227, 0.016281128, 0.06896973, -0.0067443848, 0.066833496, -0.048980713, -0.04055786, 0.07342529, -0.00037407875, 0.015701294, -0.021575928, -0.040496826, 0.014808655, 0.0005145073, 0.016479492, 0.023040771, -0.023010254, -0.048065186, -0.03366089, -0.015342712, -0.0031814575, 0.017745972, -0.006866455, -0.0016040802, -0.03793335, -0.043670654, -0.018463135, -0.0039405823, -0.077819824, 0.046661377, -0.016220093, 0.016693115, -0.005405426, -0.040771484, 0.023651123, -0.015396118, 0.00047945976, -0.029373169, -0.02772522, 0.0112838745, -0.018218994, 0.07232666, 0.019989014, 0.005405426, -0.00623703, 0.009140015, -0.0032958984, -0.021820068, 0.011047363, 0.008148193, -0.042053223, 0.012809753, -0.018554688, -0.03466797, 0.001958847, -0.03451538, -0.0262146, -0.02166748, 0.017333984, 0.022384644, 0.02796936, 0.019546509, -0.0028896332, -0.010185242, -0.08215332, 0.042419434, -0.01663208, 0.008560181, 0.026000977, 0.046417236, -0.018478394, -0.018875122, 0.043945312, 0.040740967, 0.029571533, -0.0597229, 0.08319092, 0.03488159, -0.011367798, 0.052612305, 0.0010251999, 0.035949707, 0.00724411, -0.022232056, 0.018356323, -0.01084137, -0.050445557, -0.0109939575, 0.04522705, -0.008460999, -0.0048332214, -0.03050232, 0.046020508, -0.049041748, -0.016357422, -0.059661865, -0.016662598, -0.0079193115, -0.0012569427, 0.033966064, -0.013496399, 0.02230835, 0.0473938, 0.0015211105, 0.024429321, 0.07684326, 0.03414917, -0.019760132, -0.026672363, 0.024017334, 0.007499695, -0.014373779, -0.022857666, 0.055877686, 0.095947266, -0.15539551, -0.113586426, -0.072387695, 0.16796875, -0.0703125, -0.02468872, -0.022018433, 0.027832031, 0.0031929016, 0.0024223328, 0.00024008751, 0.06335449, 0.011955261, 0.006996155, -0.019927979, -0.012893677, -0.010444641, -0.020324707, 0.010429382, -0.020050049, 0.016021729, -0.025360107, 0.006855011, 0.01361084, -0.03878784, 0.005542755, -0.015777588, -0.005432129, 0.034057617, 0.028411865, 0.011352539, -0.020889282, -0.004547119, 0.027664185, -0.08630371, -0.026672363, 0.036895752, 0.004962921, 0.017837524, -0.010223389, 0.00076293945, -0.019088745, -0.0072135925, -0.019515991, 0.031219482, -0.00042247772, -0.0050697327, -0.029922485, 0.00409317, -0.00333786, -0.0054893494, 0.028518677, 0.039520264, 0.029144287, 0.08148193, 0.014427185, 0.028076172, 0.08831787, 0.06100464, 0.0067253113, -0.04321289, 0.0077209473, -0.021713257, -0.02772522, 0.037841797, -0.008476257, -0.012390137, 0.01524353, 0.015380859, -0.006462097, 0.017486572, 0.013206482, -0.004722595, 0.014717102, 0.007785797, -0.024154663, 0.025558472, -0.0016956329, 0.001584053, -0.004470825, 0.024154663, -0.0042495728, 0.049713135, 0.022125244, 0.0041503906, 0.050354004, -0.033477783, 0.0446167, 0.016860962, 0.013000488, -0.011230469, -6.514788e-05, -0.033721924, -0.0017404556, -0.0025997162, 0.018692017, -0.031341553, -0.01626587, 0.01637268, -0.0033721924, -0.031082153, -0.019927979, -0.021636963, -0.0524292, -0.008079529, 0.0463562, 0.023803711, -0.018753052, -0.033081055, -0.039489746, -0.002538681, 0.023956299, 0.009178162, -0.022628784, 0.010185242, -0.0024547577, -0.007965088, 0.004966736, -0.0023727417, 0.0115356445, -0.013023376, -0.013969421, 0.04269409, -0.010345459, 0.00617218, -0.01878357, -0.0058670044, -0.035827637, 0.012176514, 0.00032305717, -0.028778076, -0.008270264, 0.030944824, 0.01878357, -0.004470825, 0.023345947, 0.02748108, -0.0036411285, 0.016967773, 0.030441284, 0.036895752, -0.004207611, 0.007106781, 0.02104187, -0.0072784424, 0.019088745, -0.03012085, -0.014328003, -0.008300781, 0.0030879974, 0.019989014, 0.038085938, 0.0044288635, -0.010192871, -0.00491333, 0.002620697, -0.0082092285, 0.012229919, 0.021362305, 0.004016876, -0.004634857, 0.023849487, 0.0036697388, -0.0042762756, -0.019317627, 0.007686615, -0.018569946, -0.013214111, 0.027770996, -0.05307007, -0.019134521, 0.0052986145, -0.038909912, -0.011054993, -0.015037537, -0.00023269653, -0.0014734268, -0.007911682, -0.002784729, -0.00793457, -0.043426514, -0.021514893, -0.019378662, -0.049591064, 0.009346008, 0.05682373, -0.003944397, -0.019729614, -0.017410278, -0.010726929, 0.011062622, 0.011642456, 0.0057144165, -0.045562744, -0.039215088, -0.04537964, -0.010940552, 0.010719299, -0.03475952, 0.018005371, 0.009017944, 0.009063721, 0.03286743, -0.009628296, 0.033813477, 0.010391235, 0.025512695, 0.043273926, 0.013824463, 0.02545166, -0.0099105835, 0.013954163, 0.02116394, -0.031555176, 0.0032444, 0.0010251999, -0.0016813278, -0.039489746, -0.031082153, -0.06652832, 0.0063934326, -0.08441162, 0.021102905, 0.01852417, -0.040222168, 0.0076522827, -0.026748657, -0.03866577, -0.043273926, 0.013137817, 0.064697266, 0.013069153, -0.008270264, 0.0028438568, 0.0027332306, -0.0044517517, 0.010650635, 0.06173706, -0.012756348, 0.018035889, -0.02909851, 0.043121338, -0.0637207, 0.04171753, 0.015686035, -0.056152344, 0.013999939, -0.025680542, 0.024749756, 0.00680542, 0.042938232, -0.007537842, -0.004753113, -0.014511108, -0.034301758, -0.027893066, -0.02407837, 0.0075035095, 0.008964539, 0.013557434, -0.007446289, -0.06451416, -0.010787964, 0.02909851, -0.005645752, -0.01676941, 0.010627747, 0.0029335022, -0.027297974, 0.010818481, -0.05633545, 0.014015198, -0.0022678375, 0.05911255, 0.021102905, 0.007167816, 0.05065918, -0.0046653748, 0.038024902, 0.052703857, -0.033233643, -0.01763916, -0.033813477, 0.018478394, 0.036224365, 0.021865845, -0.07043457, 0.0725708, -0.0071258545, -0.0040779114, 0.015197754, -0.01373291, 0.007030487, 0.0005979538, -0.012924194, 0.007408142, 0.04522705, 0.015197754, -0.017913818, -0.0045928955, 0.013046265, -0.031234741, -0.0016651154, -0.07171631, 0.080078125, 0.055389404, -0.021621704, 0.0703125, 0.05480957, -0.017074585, 0.04458618, 0.05822754, 0.02456665, 0.003850937, 0.0647583, -0.026763916, -0.017364502, -0.005317688, 0.025009155, -0.006378174, -0.03152466, -0.0137786865, 0.00945282, 0.004447937, -0.015823364, -0.06488037, 0.008880615, -0.0390625, -0.030944824, 0.0021648407, -0.07537842, -0.047027588, -0.040039062, 0.0061454773, 0.015068054, -0.03781128, -0.033416748, -0.012184143, -0.010597229, -0.05834961, 0.014221191, 0.015281677, -0.0031490326, 0.0009803772, 0.005153656, 0.036254883, 0.03540039, -0.038208008, 0.0096588135, -0.01008606, 0.016052246, -0.011108398, -0.008354187, 0.0126571655, 0.0048561096, 0.03225708, 0.014213562, -0.018234253, 0.018096924, -0.014732361, -0.06707764, 0.0028381348, 0.015510559, 0.0014486313, -0.016525269, -0.0077590942, -0.0075531006, -0.0046463013, 0.005218506, 0.009223938, -0.0031929016, -0.014625549, -0.0076179504, -0.12536621, -0.0033054352, 0.019073486, 0.03277588, -0.08691406, 0.04953003, -0.023132324, -0.026321411, 0.038269043, 0.0016784668, -0.040008545, -0.009117126, 0.027114868, -0.007911682, -0.008758545, -0.08117676, -0.012313843, -0.048980713, -0.03579712, -0.00957489, 0.0005106926, -0.017486572, -0.013908386, 0.00819397, -0.007987976, -0.0022773743, 0.03265381, 0.024917603, -0.031707764, 0.017303467, 0.0070495605, -0.024475098, -0.06567383, 0.012458801, 0.0287323, -0.07348633, -0.048217773, -0.027023315, 0.036468506, 0.03086853, 0.016738892, -0.0046463013, -0.004043579, -0.013137817, 0.009437561, -0.06719971, -0.059387207, 0.00016248226, -0.01826477, 0.015579224, 0.003408432, -0.013908386, 0.03314209, 0.031921387, 0.0007100105, 0.0059432983, -0.010498047, -0.014457703, 0.005306244, 0.023391724, -0.032043457, 0.01701355, -0.03237915, -0.02949524, -0.040985107, 0.018707275, 0.01701355, 0.0085372925, 0.014976501, -0.0025043488, 0.009811401, -0.035461426, -0.00017166138, 0.0121154785, 0.005355835, 0.00017476082, -0.029891968, 0.00655365, -0.014297485, -0.014312744, -0.014656067, 0.0027065277, 0.027297974, 0.008522034, -0.011329651, 0.0041122437, -0.034210205, -0.044006348, 0.0012311935, 0.037139893, -0.0079574585, -0.04598999, 0.05630493, -0.017044067, -0.03137207, 0.004627228, -0.004184723, 0.01625061, 0.021728516, -0.00026917458, -0.05444336, -0.006919861, 0.036743164, 0.0024738312, -0.0034618378, 0.06707764, -0.03314209, 0.00365448, -0.03149414, -0.0061798096, 0.04574585, -0.046417236, 0.0087509155, -0.0026550293, 0.020523071, 0.027740479, -0.0010700226, 0.015197754, -0.008232117, -0.0009584427, 0.0099105835, -0.0067481995, 0.016204834, 0.009918213, 0.0019445419, 0.0038375854, 0.003648758, -0.039520264, 0.011528015, 0.006958008, -0.0070877075, -0.032684326, -0.017471313, 0.0362854, -0.006702423, -0.011146545, -0.008087158, 0.005680084, 0.0020332336, 0.03225708, -0.02027893, 0.008529663, 0.002840042, 0.0016927719, 0.008728027, 0.02633667, -0.021392822, -0.058654785, 0.029067993, 0.042297363, -0.024536133, 0.022094727, -0.013313293, 0.040252686, -0.036376953, 0.015312195, -0.028778076, -0.003129959, -0.0065612793, 0.031433105, 0.02357483, 0.009689331, -0.04763794, -0.04864502, -0.017150879, -0.0038795471, -0.028381348, 0.06707764, -0.025283813, -0.007209778, 0.026168823, -0.009590149, 0.011459351, 0.00705719, -0.02684021, -0.00014436245, -0.0031318665, 0.009246826, 0.014152527, -0.07501221, 0.059173584, -0.0284729, -0.039093018, -0.07556152, 0.068237305, -0.042022705, 0.0134887695, 0.035003662, 0.0030975342, 0.020263672, 0.022201538, 0.031555176, -0.05105591, -0.024246216, -0.0013151169, -0.041290283, -0.06915283, -0.05331421, 0.0061950684, -0.013305664, 0.038116455, 0.005584717, 0.051086426, 0.010848999, 0.010444641, -0.028961182, 0.028793335, -0.026184082, -0.030563354, 0.018432617, -0.021102905, -0.016586304, -0.014839172, -0.006690979, -0.030883789, -0.0128479, 0.009269714, 0.030456543, 0.019607544, -0.009803772, 0.0034370422, 0.03451538, -0.031982422, 0.047180176, 0.015182495, -0.025024414, 0.0036888123, 0.00017082691, 0.004295349, -0.017837524, -0.023803711, 0.015213013, -0.001698494, 0.007949829, 0.042541504, -0.002281189, -0.0072517395, 0.0008664131, 0.0234375, 0.0141067505, -0.022705078, 0.030334473, 0.014656067, -0.016921997, -0.032165527, -0.011985779, -0.038879395, -0.051727295, 0.0021343231, -0.028717041, -0.006416321, -0.0064468384, -0.016571045, 0.011329651, -0.0014734268, 0.02268982, 0.0031051636, 0.00048589706, 0.010017395, 0.008026123, 0.0058021545, -0.0076026917, -0.028427124, 0.015792847, 0.010818481, 0.015151978, 0.002729416, -0.0362854, 0.0037841797, 0.030319214, -0.007160187, 0.01576233, -0.040618896, 0.024139404, 0.02255249, -0.06756592, 0.01399231, -0.045440674, 0.0014944077, -0.030395508, 0.0054969788, 0.01222229, 0.026885986, 0.023834229, 0.003124237, 0.008354187, -0.014480591, 0.013786316, 0.012428284, 0.048919678, -0.0446167, -0.011833191, 0.030227661, -0.024810791, 0.0059280396, 0.0053749084, -0.0690918, 0.017837524, 0.03744507, 0.012359619, -0.0032844543, 0.027526855, 0.020935059, 0.008140564, -0.03152466, -0.01739502, 0.0015268326, 0.072509766, 0.013282776, -0.0016698837, 0.03515625, 0.05923462, 0.0037841797, 0.0007920265, -0.053466797, 0.020080566, -0.047088623, 0.014755249, 0.02281189, 0.008728027, -0.0035953522, -0.042816162, -0.024108887, -0.0059280396, 0.0016994476, -0.0035305023, -0.012290955, 0.03567505, 0.03744507, -0.019470215, 0.053863525, -0.0059432983, 0.007888794, -0.04019165, 0.04953003, 0.007873535, 0.0073776245, -0.0062332153, 0.03503418, -0.007095337, 0.008598328, 0.040740967, 0.007129669, -0.020874023, 0.0068740845, 0.031463623, -0.033966064, 0.026855469, -0.052612305, -0.04574585, 0.07702637, -0.043792725, -0.011894226, -0.00894928, -0.014221191, -0.017089844, 0.016494751, -0.036132812, 0.002029419, 0.01146698, 0.0009069443, 0.014671326, -0.03137207, -0.026229858, -0.008071899, 0.011253357, 0.035339355, 0.06188965, 0.011001587, 0.03591919, 0.005256653, -0.048919678, -0.088134766, 0.017089844, -0.05529785, -0.0021743774, 0.024215698, -0.008476257, 0.002439499, 0.011413574, 0.061065674, 0.0501709, 0.045013428, -0.0026168823, 0.0076408386, -0.030212402, -0.02520752, 0.030761719, 0.032684326, -0.056762695, -0.033721924, 0.000626564, -0.0107040405, 0.035705566, 0.024536133, -0.0045661926, -0.10882568, -0.06414795, -0.09625244, 0.006542206, -0.029907227, -0.0009889603, -0.000623703, -0.048065186, -0.07562256, 0.02279663, 0.006980896, 0.10571289, 0.031982422, 0.015090942, 0.014511108, -0.023040771, -0.046722412, -0.02067566, -0.012306213, 0.025161743, -0.0032653809, -0.0769043, -0.012306213, 0.037353516, -0.019348145, 0.025604248, 0.064819336, 0.01309967, 0.02645874, 0.0026893616, -0.020339966, 0.01586914, -0.023727417, 0.015472412, -0.022384644, 0.031402588, -0.0011291504, 0.034332275, -0.015304565, -7.3194504e-05, -0.0046081543, 0.009033203, -0.0006623268, -0.019699097, -0.0071258545, -0.05053711, 0.05142212, 0.037261963, 0.016448975, 0.0037212372, 0.0262146, -0.02178955, -0.036193848, -0.015235901, 0.018508911, -0.025619507, -0.019821167, -0.031051636, -0.007659912, 0.032836914, -0.0107040405, -0.04714966, -0.045318604, 0.03778076, -0.013557434, -0.0084991455, 0.02696228, -0.033081055, 0.023895264, 0.012649536, -0.030471802, 0.0102005005, -0.021377563, -0.00082302094, -0.026153564, -0.0049819946]}, "B07QYJKFQZ": {"id": "B07QYJKFQZ", "original": "Brand: thermomate\nName: Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White\nDescription: \ud83d\udce2 What are the benefits of using thermomate propane gas tankless water heater?

      \u2705 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It's ideal for RV' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

      \u2705 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

      \u2705 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77\u00b0F rise in temperature. This means that if your tap water is at 59\u00b0F, it will instantly deliver 1.32 gallons per minute of hot water at 113\u00b0F.

      \u2705 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 \"D\" cell batteries to ignite the electronic spark module.

      \u2705 5. It's designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance\uff0cyou can take it anywhere to get instant hot water.


      \ud83d\udcd6 Specifications

      Max. Flow Rate: 1.32GPM

      Related Gas Pressure: 0.4 PSI

      Power Rating: 34,000 BTU/Hr

      Activation Flow Rate: 0.44GPM

      Water Pressure: 2.5 PSI ~ 110 PSI

      Flue Type: LPG ( Liquid Propane Only )

      Power Source: 2 \"D\" Cell Batteries ( Not Included )

      Vent Pipe: No needed for outdoor use

      \nFeatures: [2.5 PSI Water Pressure Startup]\u00a0Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV's and Boats.\n[Instant Hot Water On Demand]\u00a0Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving,\u00a0saving up to 50% on water heating costs.\u00a0\n[Multi Safety Protection]\u00a0Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 \u00b0F.\n[Compact Exquisite Design]\u00a0Compact and space-saving design with minimal noise output which is portable for outdoors.\u00a0\u00a0A great\u00a0partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool.\n[Easy to Install]\u00a0Equipped with 1/2\" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it's the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).\n", "metadata": {"Name": "Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White", "Brand": "thermomate", "Description": "\ud83d\udce2 What are the benefits of using thermomate propane gas tankless water heater?

      \u2705 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It's ideal for RV' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

      \u2705 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

      \u2705 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77\u00b0F rise in temperature. This means that if your tap water is at 59\u00b0F, it will instantly deliver 1.32 gallons per minute of hot water at 113\u00b0F.

      \u2705 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 \"D\" cell batteries to ignite the electronic spark module.

      \u2705 5. It's designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance\uff0cyou can take it anywhere to get instant hot water.


      \ud83d\udcd6 Specifications

      Max. Flow Rate: 1.32GPM

      Related Gas Pressure: 0.4 PSI

      Power Rating: 34,000 BTU/Hr

      Activation Flow Rate: 0.44GPM

      Water Pressure: 2.5 PSI ~ 110 PSI

      Flue Type: LPG ( Liquid Propane Only )

      Power Source: 2 \"D\" Cell Batteries ( Not Included )

      Vent Pipe: No needed for outdoor use

      ", "Features": "[2.5 PSI Water Pressure Startup]\u00a0Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV's and Boats.\n[Instant Hot Water On Demand]\u00a0Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving,\u00a0saving up to 50% on water heating costs.\u00a0\n[Multi Safety Protection]\u00a0Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 \u00b0F.\n[Compact Exquisite Design]\u00a0Compact and space-saving design with minimal noise output which is portable for outdoors.\u00a0\u00a0A great\u00a0partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool.\n[Easy to Install]\u00a0Equipped with 1/2\" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it's the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021392822, 0.0033111572, 0.014877319, -0.015312195, -0.0016307831, -0.0022068024, 0.027526855, -0.01889038, -0.007843018, 0.008346558, -0.017410278, 0.02999878, 0.018508911, -0.050628662, 0.05014038, -0.02079773, 0.010734558, 0.023757935, 0.021972656, -0.024475098, -0.0019245148, -0.011260986, 0.0028858185, 0.09057617, -0.02319336, 0.015464783, 0.024307251, -0.02557373, -0.0068893433, -0.020828247, -0.0016374588, 0.017120361, 0.033111572, -0.050872803, 0.031921387, -0.0335083, -0.013717651, -0.016571045, -0.0044555664, -0.028656006, -0.019088745, 0.022262573, -0.036132812, 0.015602112, -0.04727173, -0.026367188, -0.024978638, -0.029785156, -0.010940552, -0.046783447, -0.00081920624, -0.009208679, 0.025405884, -0.0078125, -0.0031375885, 0.021362305, -0.0069770813, -0.05545044, 0.020431519, -0.046081543, -0.015075684, -0.033813477, 0.0574646, 0.036346436, -0.05126953, 0.0236969, 0.048034668, -0.019577026, 0.046447754, -0.036468506, -0.04763794, 0.027816772, 0.023117065, 0.030349731, -0.06384277, -0.033050537, 0.03479004, -0.0054473877, 0.06121826, -0.046173096, -0.03753662, -0.07885742, 0.017059326, -0.01586914, 0.018112183, 0.012878418, -0.003320694, 0.010902405, -0.05001831, -0.0647583, -0.02822876, -0.02734375, -0.06213379, -0.014587402, -0.024032593, -0.015151978, -0.031280518, -0.066467285, 0.04623413, 0.044433594, 0.0178833, -0.032318115, 0.035736084, -0.00724411, -0.019226074, 0.08331299, 0.0061416626, -0.006477356, -0.004966736, -0.0077552795, -0.008056641, -0.029373169, -0.009857178, -0.009933472, -0.02243042, 0.019683838, -0.026794434, -0.00085020065, 0.013664246, 0.021102905, 0.0017614365, 0.019897461, 0.024139404, -0.009216309, -0.0020599365, -0.0022201538, -0.004917145, -0.041290283, -0.019180298, 0.0357666, -0.027954102, -0.016326904, 0.029769897, 0.06311035, 0.02998352, -0.019256592, -0.026672363, -0.015777588, -0.0047302246, -0.013015747, -0.0052375793, 0.017425537, 0.04727173, 0.0087890625, -0.0019254684, 0.005306244, 0.023345947, 0.01637268, -0.01914978, -0.0011081696, -0.013160706, 0.024459839, 0.053619385, -0.022537231, -0.054473877, -0.034240723, -0.041046143, -0.019119263, -0.023132324, -0.03857422, -0.012741089, -0.020751953, -0.0016736984, 0.043762207, 0.001376152, 0.03842163, 0.018829346, 0.009376526, 0.022201538, 0.05441284, -0.008934021, 0.036987305, 0.0028362274, -0.00111866, -0.012390137, -0.010856628, -0.004081726, 0.071899414, 0.059936523, -0.12683105, -0.060424805, -0.046722412, 0.12200928, -0.037506104, -0.0095825195, 0.007789612, 0.0072135925, 0.018249512, 0.012763977, 0.015174866, -0.010444641, 0.02885437, 0.02015686, -0.0047798157, -0.0062065125, 0.0019683838, -0.055114746, 0.013084412, -0.018997192, -0.028533936, -0.019729614, -0.016235352, 0.015266418, 0.0073661804, -0.030456543, -0.0064201355, -0.019699097, 0.020889282, 0.025894165, -0.038330078, -0.00856781, -0.07165527, 0.057006836, -0.081848145, -0.049438477, 0.038146973, -0.03475952, 0.020141602, 0.011695862, -0.0015869141, 0.0418396, -0.05340576, 0.04168701, 0.0017337799, 0.017425537, -0.01838684, -0.0045394897, -0.0048217773, 0.032165527, -0.004928589, 0.03326416, 0.037475586, 0.012275696, 0.04248047, -0.017166138, 0.0075569153, 0.034576416, 0.026504517, 0.011329651, -0.003019333, 0.008255005, -0.022079468, -0.030563354, 0.004463196, -0.025268555, -0.01777649, 0.028305054, -0.0135650635, 0.009162903, 0.07293701, 0.031219482, 0.01739502, -0.00048184395, -0.012321472, -0.008934021, 0.027236938, 0.00274086, 0.0009784698, -0.06311035, 0.038482666, -0.007850647, 0.060821533, 0.021652222, 0.014183044, -7.3611736e-05, 0.032592773, 0.016342163, 0.030319214, -0.014228821, 0.02041626, 0.008964539, -0.007446289, 0.008407593, 0.005531311, -0.024551392, -0.018814087, 0.004459381, 0.007019043, -0.028869629, -0.027694702, -0.002603531, -0.018112183, 0.0009965897, 0.005065918, 0.04006958, 0.02909851, 0.018539429, 0.0057373047, -0.007965088, -0.0126953125, 0.053131104, -0.037750244, -0.048309326, -0.006919861, -0.011520386, -0.047180176, 0.06359863, -0.002193451, 0.02999878, -0.0067863464, 0.010520935, 0.04748535, -0.048065186, 0.043518066, -0.0070343018, -0.005744934, -0.018936157, 0.029327393, 0.0052375793, -0.012191772, -0.04800415, 0.008033752, 0.014762878, 0.031585693, 0.0030670166, -0.017669678, 0.009986877, 0.041809082, 0.05709839, 0.07965088, -0.028549194, -0.008125305, 0.00217247, -0.001405716, 0.0064582825, 0.003736496, -0.03515625, -0.0024662018, -0.012680054, -0.0075950623, 0.030029297, 0.016662598, -0.016159058, 0.037139893, 0.0184021, 0.017654419, -2.0980835e-05, 0.018798828, -0.0066223145, -0.07739258, -0.020263672, -0.014579773, 0.016738892, 0.049865723, -0.035827637, -0.026947021, 0.046691895, -0.0015077591, -0.023101807, 0.006175995, 0.036621094, -0.009635925, 0.05078125, -0.0061531067, 0.03503418, 0.014678955, -0.06036377, -0.015602112, 0.026123047, -0.06817627, 0.0234375, -0.05303955, -0.0519104, -0.07543945, 0.07043457, -0.002866745, -0.10522461, -0.036071777, -0.02432251, 0.004558563, 0.02671814, -0.016998291, -0.041290283, -0.021621704, -0.050354004, 0.011291504, 0.03274536, -0.027114868, 0.01473999, 0.00566864, 0.009346008, 0.01134491, -0.0074272156, -0.007003784, 0.040496826, 0.015930176, 0.03451538, 0.033843994, 0.035064697, -0.024475098, 0.03036499, 0.036590576, 0.047180176, -0.004634857, 0.021255493, -0.0087890625, -0.029586792, 0.04373169, -0.06304932, 0.01524353, -0.062805176, -0.00068998337, -0.019119263, -0.02998352, 0.04611206, -0.07446289, 0.034576416, -0.05065918, 0.018356323, 0.012802124, -0.016693115, 0.0034637451, -0.013206482, -0.0028705597, 0.0020179749, -0.02305603, -0.0105896, -0.01940918, -0.008644104, 0.02897644, 0.03579712, -0.036468506, 0.03829956, 0.05239868, -0.019363403, -0.022964478, -0.027908325, -0.008346558, -0.023391724, 0.045684814, -0.03414917, 0.008583069, -0.006664276, -0.012557983, -0.015808105, 0.014564514, -0.005256653, -0.022140503, 0.00819397, -0.016326904, -0.059326172, 0.008026123, 0.03543091, 0.004711151, 0.018051147, -0.0023784637, 0.027908325, -0.031585693, 0.03955078, -0.03262329, 0.005809784, -0.02293396, 0.060577393, 0.021011353, -0.02746582, 0.09307861, -0.00995636, 0.004333496, 0.042816162, -0.0078125, -0.025299072, -0.01939392, 0.013938904, -0.002658844, 0.005004883, -0.035461426, 0.042938232, 0.0070495605, 0.012016296, -0.008018494, 0.001540184, 0.028182983, 0.004142761, -0.007522583, -0.029006958, -0.006881714, 0.036987305, 0.017684937, 0.021362305, -0.03253174, -0.050933838, 0.039001465, -0.08276367, 0.014533997, 0.012573242, -0.011428833, 0.030776978, 0.014060974, 0.035095215, 0.044311523, 0.058410645, -0.035491943, 0.02973938, 0.045532227, -0.012901306, 0.013748169, -0.00068712234, -0.029907227, 0.008399963, -0.0027332306, -0.013023376, 0.002412796, 0.010231018, -0.032684326, -0.044799805, 0.045837402, -0.0068130493, 0.0047836304, -0.010482788, -0.09448242, -0.003955841, -0.053253174, 0.015419006, -0.013450623, -0.007896423, -0.009117126, 0.0026950836, -0.028076172, -0.019012451, 0.019378662, 0.015075684, 0.0046310425, 0.013633728, 0.0028438568, 0.037017822, -0.00894928, 0.00623703, 0.020996094, -0.019958496, 0.033081055, 0.033569336, 0.030853271, 0.014915466, -0.018554688, 0.0053977966, -0.034576416, 0.0062217712, 0.00024163723, -0.00983429, -0.0231781, 0.0046195984, 0.041656494, 0.018356323, -0.026779175, 0.029281616, -0.022857666, -0.005596161, 0.0053253174, -0.07849121, 0.04043579, -0.05090332, -0.02911377, 0.006324768, -0.058532715, -0.02519226, 0.027450562, 0.034301758, 0.0059318542, 0.011856079, -0.055267334, 0.00023448467, 0.007949829, -0.048736572, 0.026428223, -0.034454346, 0.02494812, -0.020202637, -0.04876709, -0.027328491, -0.038269043, -0.0054779053, 0.015281677, 0.0579834, -0.025177002, 0.024414062, -0.032714844, -0.004940033, 0.01008606, 0.027236938, -0.0026512146, -0.056365967, -0.0046653748, 0.0256958, 0.016616821, -0.061157227, 0.0012407303, 0.068115234, -0.052825928, -0.024032593, -0.017852783, 0.06500244, 0.0031642914, 0.0151901245, 0.019882202, 0.016998291, -0.0079422, 0.0025787354, -0.14648438, -0.06903076, -0.014175415, -0.02166748, 0.029693604, 0.0029640198, -0.02116394, 0.049804688, 0.047027588, -0.0021152496, 0.002363205, -0.021240234, -0.037322998, 0.002752304, 0.011543274, -0.024520874, 0.018188477, -0.05343628, 0.010749817, -0.055999756, 0.029937744, 0.028717041, -0.00043416023, 0.020065308, 0.0012512207, 0.0053710938, -0.009223938, -0.032043457, 0.0037174225, 0.018310547, -0.00011461973, -0.031951904, -0.0037136078, -0.019866943, -0.010612488, -0.031433105, 0.016815186, 0.009002686, -0.017868042, -0.032958984, -0.013847351, -0.007369995, -0.02722168, 0.008323669, 0.01991272, -0.020141602, -0.017593384, 0.052368164, -0.0020561218, 0.00044608116, -0.002166748, -0.037750244, 0.010551453, 0.010734558, 0.004016876, -0.046936035, 0.010955811, 0.031921387, -0.006011963, 0.019348145, -0.0044288635, 0.0029258728, -0.05001831, -0.018035889, -0.010871887, -0.0015478134, -0.03567505, 0.016342163, 0.030700684, 0.009063721, 0.023071289, -0.00021028519, 0.0045700073, 0.0055732727, -0.0041542053, 0.013687134, 0.0059509277, -0.0018892288, 0.0013532639, 0.01763916, 0.00058698654, -0.013290405, -0.008079529, 0.043640137, 0.029556274, -0.034820557, -0.031951904, -0.021621704, 0.06072998, -0.08581543, -0.018966675, -0.022613525, 0.0736084, -0.026229858, 0.032348633, 0.0036830902, 0.032684326, -0.04458618, -0.009941101, -0.032592773, 0.07232666, -0.029800415, -0.030914307, -0.00035309792, 0.029266357, -0.026992798, 0.01374054, 0.0131073, -0.00048446655, -0.09625244, -0.01651001, -0.0076942444, 0.023071289, -0.026290894, 0.007843018, 0.020599365, -0.0004925728, -0.055999756, -0.023727417, 0.051086426, 0.029800415, 0.01889038, 0.048095703, -0.0071640015, -0.049468994, 0.015052795, -0.027145386, -0.019042969, 0.009025574, 0.018539429, 0.017364502, -0.0058135986, -0.0047721863, -0.026794434, -0.058502197, 0.05432129, -0.040252686, -0.04171753, 0.0024528503, 0.05441284, -0.02243042, -0.04425049, 0.03475952, -0.013175964, 0.024887085, 0.008773804, -0.02267456, -0.028869629, -0.02760315, -0.0019264221, -0.02633667, -0.05822754, -0.060058594, -0.014961243, 0.0018529892, 0.024139404, -0.030654907, 0.026809692, -0.03945923, -0.025238037, -0.0027065277, 0.029525757, -0.025756836, -0.056854248, -0.0028858185, 0.0004901886, 0.05999756, 0.008728027, 0.049621582, -0.08459473, -0.0519104, 0.028244019, 0.024902344, 0.044281006, -0.042633057, 0.014411926, 0.044647217, -0.0048217773, 0.0725708, -0.0032043457, -0.021102905, 0.015533447, 0.054138184, 0.018432617, 0.0036125183, -0.032958984, -0.014373779, -0.038208008, -0.032928467, -0.01448822, 0.08306885, -0.06500244, 0.031707764, 0.019073486, 0.045532227, -0.007549286, -0.0012655258, 0.041015625, 0.014312744, -0.036346436, 0.0042037964, 0.052886963, -0.025299072, -0.00039935112, -0.021347046, -0.010009766, -0.002313614, -0.018157959, 0.034240723, -0.0014352798, 0.025924683, -0.025848389, -0.0020828247, -0.013771057, 0.0026416779, 0.064941406, -0.03475952, -0.002729416, -0.057647705, 0.0012130737, 0.014907837, -0.0289917, 6.556511e-06, 0.013397217, 0.02696228, -0.019058228, 0.057495117, 0.012413025, 0.028747559, -0.008178711, -0.04837036, 0.008735657, -0.03173828, 0.010467529, 0.018615723, -0.022201538, -0.002439499, 0.04763794, -0.004562378, -0.037628174, 0.06274414, -0.004016876, -0.022476196, -0.036621094, 0.024368286, -0.0357666, -0.021240234, 0.01374054, 0.034606934, 0.011245728, -0.006954193, -0.013046265, 0.014656067, 0.062316895, 0.0016145706, 0.016860962, 0.003873825, 0.010284424, -0.020248413, 0.011077881, -0.040740967, -0.041931152, 0.023544312, 0.018707275, -0.025161743, -0.035827637, -0.020645142, 0.009552002, -0.033935547, -0.06323242, 0.020812988, -0.064575195, 0.018051147, 0.025131226, 0.027282715, -0.024658203, -0.011985779, -0.0047073364, -0.008430481, 0.02406311, -0.0031089783, 0.019851685, -0.032287598, 0.0021915436, -0.02746582, 0.023651123, -0.033050537, 0.008811951, -0.006252289, 0.030654907, 0.034576416, -0.014266968, 0.0021018982, -0.060913086, -0.010612488, 0.013366699, -0.029556274, 0.023468018, -0.026260376, -0.015602112, 0.015266418, -0.015411377, 0.039794922, -0.03543091, -0.044952393, -0.026672363, -0.010437012, 0.022842407, -0.044036865, -0.05126953, -0.0061073303, -0.07299805, -0.08087158, 0.10107422, -0.054901123, -0.002714157, 0.025634766, -0.015457153, -0.03189087, -0.02519226, 0.008613586, 0.02848816, -0.0010995865, 0.0026111603, 0.044128418, -0.05279541, -0.03515625, -0.020111084, 0.013557434, -0.061645508, -0.04046631, -0.0095825195, -0.01096344, -0.018295288, -0.022003174, 0.022750854, 0.018920898, 0.030975342, -0.0006761551, 0.02494812, -0.014549255, -0.022903442, 0.030029297, 0.025802612, -0.03427124, -0.013153076, -0.0018262863, -0.002571106, 0.035308838, -0.014350891, -0.012825012, -0.040252686, 0.00049352646, -0.019454956, -0.0005350113, -0.02532959, 0.0099105835, 0.030639648, 0.020889282, -0.021469116, 0.08416748, 0.024856567, 0.007259369, 0.007980347, -0.031555176, -0.0052261353, -0.044677734, 0.027313232, -0.013130188, 0.012901306, 0.0079956055, 0.013725281, -0.027420044, -0.023147583, -0.007911682, 0.0020008087, -0.0076065063, -0.002565384, -0.016494751, -0.009590149, -0.02293396, -0.019470215, -0.0043296814, -0.014030457, 0.008811951, -0.0043792725, 0.029266357, -0.0015335083, 0.013084412, -0.02281189, -0.027053833, -0.009773254, 0.014274597, -0.03253174, -0.010131836, -0.027648926, -0.023864746, 0.024276733, 0.041046143, 0.010253906, -0.0055656433, 0.0013160706, -0.011482239, -0.020019531, -0.018936157, 0.0032157898, -0.032043457, 0.016494751, 0.008888245, 0.011787415, 0.03945923, -0.008460999, -0.038970947, -0.02748108, 0.048187256, -0.0024814606, -0.02746582, 0.016738892, -0.025299072, 0.0030269623, 0.00756073, -0.033294678, -0.022918701, -0.016174316, -0.031341553, -0.007820129, 0.009117126]}, "B0874MTD5B": {"id": "B0874MTD5B", "original": "Brand: Gaier\nName: Gaier Barbecue Grill 8'x 5'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard\nDescription: Product Dimensions:
      - Weight: 44.1lbs
      - Overall size: 98.4 x 59.1 x 106.3 inches
      - Material: Metal, Polyester
      - Cover Color: Brown/Coffee
      - Frame Color: Black\nFeatures: BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDurable steel frame with powder-coated finish is rust-resistant\nVented, double-tiered canopy offers smoke ventilation and stability against windy conditions\nShelves on both sides provide space for placing cutleries or grilling accessories\nGaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "metadata": {"Name": "Gaier Barbecue Grill 8'x 5'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard", "Brand": "Gaier", "Description": "Product Dimensions:
      - Weight: 44.1lbs
      - Overall size: 98.4 x 59.1 x 106.3 inches
      - Material: Metal, Polyester
      - Cover Color: Brown/Coffee
      - Frame Color: Black", "Features": "BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDurable steel frame with powder-coated finish is rust-resistant\nVented, double-tiered canopy offers smoke ventilation and stability against windy conditions\nShelves on both sides provide space for placing cutleries or grilling accessories\nGaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03945923, -0.01537323, -0.034210205, -0.0011577606, -0.01701355, -0.004085541, -0.015411377, 0.018188477, -0.03466797, 0.018920898, 0.012077332, 0.020401001, -0.017501831, -0.023223877, 0.016052246, -0.038757324, 0.046691895, -0.016036987, 0.033081055, -0.0062065125, 0.0034809113, 0.008255005, 0.029190063, 0.06781006, 0.0524292, -0.041778564, 0.03604126, -0.011474609, 0.04888916, 0.002866745, 0.03277588, -0.015686035, 0.030883789, -0.009918213, -0.0007915497, -0.0018386841, -0.0023441315, -0.006515503, -0.010536194, 0.008216858, 0.0071411133, 0.016571045, -0.04940796, -0.036224365, -0.05609131, -0.018859863, 0.0095825195, 0.010398865, -0.00081825256, -0.031707764, -0.0035037994, 0.016189575, 0.017532349, -0.047668457, -0.015220642, 0.0023403168, 0.025253296, -0.046783447, 0.02255249, -0.030395508, -0.011016846, -0.00566864, 0.03778076, 0.02217102, -0.06365967, 0.020339966, 0.052001953, -0.03677368, 0.005104065, -0.060180664, 0.009231567, 0.027877808, 0.0008945465, 0.0036239624, -0.023925781, -0.036712646, 0.038238525, -0.035003662, -0.013870239, 0.02998352, 0.02722168, -0.010017395, 0.029449463, -0.039520264, 0.03378296, -0.020126343, 0.009796143, -0.01651001, 0.012680054, -0.060516357, 0.0036773682, -0.0032634735, -0.073791504, 0.037994385, 0.017471313, -0.039001465, -0.049865723, -0.06591797, 0.0368042, 0.009231567, 0.0013999939, -0.01701355, -0.015060425, 0.024520874, -0.032348633, 0.022613525, 0.035308838, 0.021331787, -0.026809692, 0.00566864, -0.029129028, -0.047698975, -0.016540527, -0.005466461, -0.03274536, 0.0025024414, -0.021957397, -0.0010032654, 0.01701355, -0.0059165955, -0.042816162, -0.033325195, 0.010528564, 0.05319214, 0.05609131, 0.07147217, 0.016555786, 0.008102417, -0.02935791, 0.00818634, -0.029190063, 0.013381958, 0.029724121, 0.018600464, -0.0077819824, -0.014144897, -0.010040283, 0.0012435913, 0.0025310516, 0.035705566, -0.051239014, -0.018341064, 0.080566406, -0.019958496, -0.072387695, 0.010787964, 0.016113281, 0.027740479, -0.02166748, -0.08544922, 0.01751709, -0.0064735413, 0.06390381, 0.0047454834, -0.03930664, -0.02558899, 0.040039062, -0.056274414, -0.04989624, -0.07470703, 0.00038146973, -0.017715454, 0.0018997192, -0.009094238, -0.026000977, 0.026382446, -0.0024223328, -0.003168106, 0.021591187, 0.018173218, 0.00856781, -0.0002501011, -0.013572693, 0.0003528595, 0.0069732666, 0.02116394, -0.009742737, 0.061584473, 0.08392334, -0.09307861, -0.09362793, -0.07562256, 0.15014648, -0.060760498, 0.0020446777, -0.064819336, 0.037719727, -0.0087509155, 0.002336502, 0.025390625, 0.032196045, -0.0059890747, 0.009475708, -0.047698975, 0.022949219, -0.013015747, -0.011528015, -0.005531311, 0.008903503, 0.024108887, -0.038635254, -0.02192688, -0.0019006729, -0.005458832, 0.029388428, -0.051849365, 0.01965332, -0.0020179749, -0.029708862, 0.0068893433, 0.014801025, -9.691715e-05, -0.04055786, 0.02053833, -0.0051193237, 2.7239323e-05, -0.023590088, 0.008255005, 0.011802673, 0.03488159, 0.018692017, 0.018722534, -0.0030174255, -0.018234253, 0.07122803, 0.010559082, -0.0104599, -0.0073127747, 0.08123779, 0.009170532, -0.024856567, 0.031707764, 0.026504517, 0.036376953, 0.009376526, 0.051727295, 0.06762695, 0.01436615, -0.018325806, -0.013916016, 0.027023315, -0.007209778, -0.036376953, -0.016281128, 0.04510498, -0.07098389, -0.029785156, 0.0064964294, -0.0058670044, -0.004333496, -0.026138306, -0.016723633, 0.032684326, 0.016494751, -0.014144897, 0.023223877, -0.021713257, 0.033966064, -0.058288574, 0.033447266, -0.014884949, 0.005710602, 0.022109985, -0.017242432, 0.039031982, 0.02130127, 0.05517578, 0.04776001, -0.020950317, 0.015823364, 0.00020337105, 0.008911133, -0.012870789, -0.02041626, 0.013687134, -0.052124023, -0.04156494, 0.026870728, -0.010986328, -0.041931152, 0.012138367, 0.01914978, -0.029800415, -0.0051651, 0.029678345, -0.01802063, -0.025024414, 0.014778137, -0.033081055, -0.026687622, -0.026931763, 0.053741455, -0.0055999756, 0.0075149536, 0.030517578, 0.011001587, 0.018356323, 0.02041626, 0.023986816, -0.021224976, -0.015235901, 0.03237915, -0.01637268, 0.0016880035, -0.024902344, 0.04953003, -0.02078247, -0.040039062, -0.011177063, -0.031311035, 0.03930664, 0.060302734, 0.041778564, -0.008033752, 0.06774902, 0.032562256, 0.008148193, 0.07513428, 0.07849121, 0.07122803, 0.003408432, -0.018569946, -0.044158936, -0.024002075, -0.004043579, 0.017532349, -0.039215088, -0.0037345886, -0.041870117, -0.01386261, -0.005508423, -0.044311523, -0.015548706, 0.022460938, -0.0034217834, -0.0026550293, 0.0010147095, 0.022216797, 0.00541687, -0.01776123, 0.036712646, 0.047729492, 0.005996704, 0.007965088, -0.04486084, -0.012382507, 0.016067505, -0.0065574646, 0.025665283, 0.012565613, 0.0002142191, -0.02003479, -0.050445557, -0.0625, -0.015083313, -0.008659363, 0.023132324, -0.08300781, -0.025253296, -0.086242676, 0.00554657, -0.01725769, -0.054473877, -0.021392822, 0.018997192, -0.010734558, -0.010131836, -0.014137268, -0.021972656, 0.02178955, 0.03643799, 0.0040016174, -0.025894165, -0.029693604, -0.06439209, -0.021606445, -0.011878967, -0.04232788, 0.010177612, -0.01423645, 0.0014839172, 0.02456665, 0.0064086914, 0.030838013, 0.0025482178, 0.04159546, 0.04324341, 0.03475952, -0.0024909973, -0.030593872, 0.008773804, 0.05621338, -0.017074585, -0.0049552917, -0.0026779175, 0.014755249, -0.005783081, -0.032348633, -0.025238037, -0.020370483, -0.08416748, -0.0028209686, -0.015823364, -0.019134521, -0.01108551, -0.015701294, -0.04699707, -0.05923462, -0.0030708313, 0.055603027, -0.06866455, 0.007461548, -0.05303955, -0.025222778, 0.002998352, 0.014572144, 0.010978699, 0.011161804, 0.0037460327, -0.036193848, 0.0012979507, 0.0066986084, -0.015151978, -0.019348145, -0.06756592, 0.011314392, -0.023590088, 0.043029785, 0.008079529, 0.04159546, -0.025772095, 0.0053901672, 0.013763428, 0.003604889, -0.028244019, -0.016799927, -0.017211914, -0.026657104, 0.02470398, -0.047058105, -0.018615723, 0.005645752, -0.006416321, -0.011375427, -0.015419006, -0.016921997, 0.020553589, -0.030792236, -0.0013942719, 0.021392822, -0.0024986267, 0.0041542053, 0.03274536, 0.02558899, -0.027832031, -0.0033340454, 0.054595947, 0.048706055, 0.053527832, -0.018341064, -0.027496338, -0.049743652, 0.03881836, 0.0357666, 0.022964478, -0.048980713, 0.050048828, -0.013175964, 0.0031375885, 0.00705719, -0.02973938, 0.005958557, -0.016738892, -0.019348145, 0.02229309, 0.002702713, 0.014411926, -0.008674622, 0.015510559, -0.00048279762, -0.0030212402, -0.0096588135, -0.037750244, 0.09100342, 0.027572632, -0.011184692, 0.039398193, 0.05496216, -0.007369995, 0.043060303, 0.04437256, 0.03302002, 0.00217247, 0.081848145, 0.0047416687, -0.024108887, 0.0023517609, 0.020233154, 0.031036377, 0.012580872, -0.017532349, -0.006729126, -0.040161133, -0.037017822, -0.01789856, -0.017486572, -0.02229309, 0.007633209, 0.01651001, 0.0066375732, -0.016815186, -0.0047836304, -0.035736084, -0.002500534, -0.042510986, -0.01876831, -0.0385437, -0.028808594, -0.047576904, 0.016174316, 0.00049972534, 0.01020813, -0.0023498535, 0.026123047, 0.0058403015, 0.007637024, -0.018234253, -0.0022602081, -0.003572464, -0.00063085556, 0.019302368, 0.015701294, -0.00598526, -0.008148193, 0.0206604, -0.010574341, 0.010147095, -0.032989502, -0.08001709, -0.05569458, 0.023452759, 0.04171753, 0.00060272217, -0.037841797, 0.024642944, -0.014083862, 0.0178833, 0.009544373, -0.027908325, 0.0039253235, -0.01977539, -0.013999939, -0.06542969, -0.010864258, -0.0141067505, -0.056396484, -0.06665039, 0.039764404, -0.001627922, -0.022445679, -0.0021972656, 0.030227661, -0.08026123, 0.027694702, -0.03161621, -0.016830444, 0.043792725, 0.011558533, 0.023025513, -0.016738892, -0.034179688, -0.020385742, -0.003238678, -0.031951904, -0.01083374, -0.013839722, -0.03591919, -0.0042915344, 0.00944519, 0.06378174, 0.0019321442, 0.023880005, -0.031707764, -0.023849487, -0.024658203, -0.0082092285, 0.007801056, -0.026046753, -0.017730713, -0.012924194, 0.053710938, -0.023880005, -0.009277344, -0.061676025, 0.007926941, 0.028671265, -0.003414154, -0.0053596497, -0.008407593, 0.012962341, -0.015289307, -0.016555786, -0.0038528442, -0.030563354, 0.025665283, -0.030395508, -0.0027999878, -0.04058838, -0.030700684, -0.030639648, 0.036712646, 0.05319214, -0.03302002, -0.007858276, -0.037109375, 0.016677856, -0.07891846, 0.08886719, 0.063964844, -0.014656067, -0.0038452148, -0.022918701, -0.036071777, -0.035125732, 0.030807495, -0.06549072, -0.061157227, -0.026657104, 0.009773254, -0.0048179626, -0.0049552917, 0.00039672852, -0.01322937, -0.03302002, -0.0129852295, 0.008087158, 0.007457733, -0.038482666, 6.5505505e-05, 0.04916382, 0.020370483, 0.016052246, 0.023422241, 0.0062675476, -0.055480957, -0.026550293, -0.0023517609, -0.024551392, -0.009216309, 0.01335144, -0.011436462, -0.00995636, -0.08013916, 0.0066184998, 0.045654297, 0.005470276, -0.015853882, -0.007850647, 0.015686035, -0.024124146, -0.05807495, -0.0077552795, -0.047058105, 0.009475708, -0.009300232, -0.00541687, 0.04168701, 0.039367676, -0.0051651, 0.0058517456, 0.03201294, -0.021774292, 0.09051514, 0.0002875328, -0.006454468, -0.018188477, 0.015792847, -0.019729614, 0.0004723072, -0.003129959, 0.0062828064, -0.0047187805, 0.056671143, -0.0033988953, -0.035125732, 0.024887085, -0.05065918, -0.009803772, 0.047607422, 0.067993164, -0.016830444, -0.010093689, 0.06427002, 0.009689331, -0.04473877, 0.06137085, -0.052703857, -0.012062073, -0.0027885437, 0.013336182, -0.03744507, 0.006198883, 0.018081665, -0.02104187, -0.019683838, -0.049987793, -0.013069153, 0.006580353, -0.0023422241, -0.0018033981, -0.011520386, 0.021560669, -0.0050468445, 0.0051612854, -0.05557251, -0.045898438, -0.036743164, 0.056915283, 0.022201538, 0.019180298, -0.008613586, -0.02053833, -0.002445221, -0.0154418945, 0.010360718, -0.0076560974, -0.028305054, 0.014190674, 0.0051612854, 0.02722168, -0.03387451, -0.0016546249, 0.09051514, -0.061401367, -0.053100586, -0.033477783, 0.054992676, 0.02029419, 0.031311035, 0.02507019, 0.032958984, -0.01637268, 0.055511475, -0.025299072, -0.037231445, -0.024291992, 0.00945282, -0.10284424, 0.025985718, -0.010131836, 0.05596924, -0.034240723, 0.024795532, -0.0052375793, 0.047821045, 0.004966736, -0.0068588257, -0.034973145, 0.0036716461, -0.02357483, -0.007347107, 0.021820068, -0.00365448, -0.018600464, -0.011207581, 0.02003479, 0.026412964, 0.050842285, 0.027709961, 0.035583496, 0.027542114, -0.021240234, 0.016693115, 0.031707764, -0.048828125, 0.060821533, -0.021194458, -0.036010742, -0.015602112, 0.042114258, 0.06536865, 0.005367279, -0.012290955, -0.029525757, -0.020111084, 0.022888184, 0.056610107, -0.0066986084, -0.02279663, -0.010826111, 0.07208252, 0.020248413, -0.004962921, 0.015792847, -0.009651184, 0.00021100044, 0.010726929, -0.003572464, 0.00844574, -0.018829346, 0.002916336, -0.01713562, -0.023590088, 0.011192322, -0.030517578, 0.005191803, -0.012207031, 0.023101807, 0.00843811, 0.0008382797, 0.0101623535, 0.016281128, 0.037994385, -0.028335571, -0.052703857, 0.014038086, 0.0013866425, -0.0027980804, 0.006500244, -0.03149414, 0.015838623, 0.03918457, 0.015327454, -0.013839722, 0.00036978722, 0.011581421, -0.010910034, -0.046325684, 0.062286377, 0.013046265, -0.022979736, 0.020187378, -0.05557251, -0.024002075, 0.013244629, 0.0158844, -0.016357422, 0.027389526, 0.020767212, -0.013450623, 0.019134521, 0.012741089, -0.020370483, -0.008605957, 0.011039734, -0.025756836, 0.0206604, 0.0102005005, 0.00052547455, -0.021087646, 0.033081055, -0.06561279, -0.023666382, -0.008804321, 0.018569946, -0.02279663, 0.0066490173, -0.042053223, -0.024810791, 0.034698486, 0.019561768, -0.026855469, -0.031433105, 0.008636475, 0.026626587, -0.008621216, -0.017456055, 0.014877319, -0.027252197, 0.024505615, 0.016784668, -0.0030002594, -0.0026168823, 0.0044136047, -0.012809753, 0.031463623, -0.0006532669, 0.032165527, 0.013916016, 0.076171875, 0.0028266907, 0.025100708, 0.040649414, -0.020355225, 0.02154541, 0.03567505, -0.009590149, -0.056152344, -0.010871887, -0.00020647049, -0.004623413, -0.026657104, -0.0017786026, -0.014732361, -0.024765015, -0.0037517548, -0.008430481, 0.010444641, -0.025131226, 0.024627686, -0.013015747, -0.016143799, 0.0099105835, -0.013786316, 0.009155273, 0.0065574646, -0.014350891, -0.052978516, -0.021224976, -0.0035552979, 0.026931763, 0.0065345764, -0.039978027, -0.02130127, 0.022903442, -0.007003784, -0.058410645, -0.05215454, -0.013656616, -0.0087890625, -0.003873825, 0.042297363, 0.005542755, -0.03668213, -0.036468506, 0.0009646416, 0.019592285, 0.018798828, -0.020385742, 0.030548096, 0.04550171, 0.003288269, -0.018844604, 0.05621338, -0.0012655258, -0.0128479, -0.0048561096, -0.020614624, -0.010543823, 0.078186035, 0.01133728, -0.0036315918, -0.03152466, -0.0021095276, 0.008560181, 0.027694702, 0.040863037, 0.013153076, -0.0769043, -0.026367188, -0.07525635, 0.027770996, -0.013893127, 0.03967285, -0.02583313, -0.004146576, -0.0143585205, -0.030822754, 0.0047950745, -0.04953003, 0.022888184, -0.0012378693, 0.04449463, -0.011482239, -0.055236816, -0.050628662, -0.026321411, 0.0053634644, 0.03567505, 0.0006594658, -0.011169434, 0.00045990944, -0.014030457, -0.0072631836, -0.0036354065, -0.0004708767, -0.003080368, -0.008956909, -0.018432617, -0.03857422, 0.0074768066, -0.0059890747, 0.01083374, -0.041381836, 0.0010137558, 0.04309082, -0.017440796, 0.013458252, 0.0019798279, 0.009544373, 0.044647217, 0.04345703, -0.008743286, -0.047027588, 0.010948181, 0.03253174, 0.003211975, 0.02545166, -0.015304565, -0.02748108, -0.026748657, 0.009941101, 0.0037975311, 0.0028934479, -0.02079773, 0.058502197, 0.028778076, 0.092285156, -0.015220642, -0.055419922, -0.04949951, 0.04269409, 0.0077667236, -0.0074768066, 0.024032593, -0.0027446747, 0.0031261444, -0.0013961792, -0.0132751465, -0.048919678, 0.0234375, -0.0014266968, 0.013923645, 0.03060913]}, "B085J1RSWD": {"id": "B085J1RSWD", "original": "Brand: Dometic\nName: Dometic 50216 RV 2-Burner Propane Cooktop\nDescription: The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It\u2019s the ideal cooking companion, wherever you are!\nFeatures: \n", "metadata": {"Name": "Dometic 50216 RV 2-Burner Propane Cooktop", "Brand": "Dometic", "Description": "The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It\u2019s the ideal cooking companion, wherever you are!", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.013168335, 0.02067566, -0.038879395, -0.003850937, 0.002122879, -0.015335083, -0.039123535, -0.040252686, -0.01713562, -0.014343262, -0.02784729, 0.014678955, 0.0019779205, -0.034729004, 0.040771484, -0.039520264, 0.03475952, -0.0023231506, 0.010848999, -0.036590576, 0.017440796, -0.016799927, 0.018508911, 0.1352539, 0.011978149, -0.034729004, -0.01008606, -0.0067443848, 0.017684937, -0.002090454, 0.0034275055, 0.021713257, 0.004425049, 0.038269043, -0.016021729, -0.010124207, -0.009422302, 0.0128479, -0.006038666, 0.012329102, -0.031311035, 0.026168823, 0.019073486, 0.00043654442, -0.021026611, -0.06323242, -0.0020942688, -0.02810669, -0.014137268, -3.6478043e-05, -0.041778564, 0.060180664, -0.019927979, -0.024749756, 0.01020813, -0.0004684925, 0.053497314, -0.038726807, -0.0049972534, -0.007587433, -0.0022964478, 0.03488159, 0.028961182, -0.0051994324, -0.042755127, 0.0052948, 0.050079346, -0.021118164, 0.043548584, -0.052246094, -0.01309967, 0.066467285, 0.01737976, 0.021026611, -0.02999878, -0.005432129, -0.025619507, 0.00043559074, 0.072265625, -0.007408142, -0.025283813, -0.025924683, -0.005428314, -0.025909424, 0.0064697266, -0.0033397675, -0.0141067505, 0.0075950623, -0.022277832, 0.006504059, -0.021072388, 0.005340576, -0.042541504, 0.027923584, -0.0031337738, 0.013793945, -0.025558472, -0.028961182, 0.024841309, 0.017318726, 0.0012235641, -0.033447266, 0.007133484, -0.0073890686, -0.010009766, 0.040924072, 0.033599854, 0.010391235, -0.0005903244, -0.0070266724, -0.010238647, 0.017150879, -0.013366699, 0.021453857, -0.028640747, -0.015052795, -0.057739258, -0.0017251968, -0.01914978, -0.0069084167, -0.022842407, -0.015594482, 0.011199951, -0.01373291, -0.004360199, -0.019378662, -0.018966675, -0.014572144, -0.02758789, 0.011672974, -0.008300781, 0.015235901, 0.030075073, 0.03012085, -0.004047394, -0.011314392, 0.017791748, -0.01687622, -0.0050811768, 0.0070610046, 0.013511658, -0.036834717, 0.0013933182, 0.010101318, -0.015167236, 0.005153656, 0.027313232, 0.022537231, -0.026107788, -0.07849121, 0.04837036, -0.027633667, 0.011062622, -0.0012273788, -0.032073975, 0.012825012, -0.04309082, 0.014701843, -0.0026664734, 0.007827759, 0.010261536, -0.028671265, -0.014312744, 0.03314209, -0.046569824, 0.0814209, -0.0033798218, -0.0061836243, 0.016738892, 0.048858643, -0.01939392, 0.019165039, 0.049804688, 0.027297974, -0.018630981, 0.0061683655, -0.02104187, 0.032592773, 0.06561279, -0.080322266, -0.06088257, -0.024093628, 0.14550781, -0.043762207, -0.00046348572, -0.013549805, 0.0033359528, -0.004108429, 0.0069503784, 0.0017690659, 0.012756348, 0.030258179, 0.066101074, -0.011260986, 0.0068855286, -0.050598145, 0.012382507, 0.01751709, -0.018508911, -0.0134887695, -0.0064964294, 0.060699463, -0.04067993, 0.03366089, -0.03781128, 0.020568848, -0.010719299, 0.034301758, -0.015701294, -0.006626129, 0.0025291443, -0.028915405, 0.045806885, -0.06512451, -0.0138549805, 0.019134521, -0.03463745, 0.019927979, -0.01789856, 0.002822876, 0.017745972, -0.051818848, 0.034179688, 0.04849243, 0.049468994, -0.0013866425, -0.011367798, -0.0040779114, 0.055603027, 0.015731812, -0.016860962, -0.0065307617, 0.010848999, 0.03250122, -0.019470215, 0.036376953, 0.056610107, 0.06384277, 0.0018749237, -0.02482605, -0.0022468567, 0.016448975, -0.018295288, 0.034729004, 0.012565613, 0.007408142, 0.007270813, 0.020568848, -0.0048828125, 0.021850586, 0.018341064, 0.0021972656, 0.00333786, -0.034942627, 0.00079631805, 0.010292053, -0.019119263, -0.019439697, 0.013175964, 0.022613525, -0.0064735413, 0.05731201, 0.015975952, 0.014785767, 0.035491943, 0.014411926, 0.032073975, 0.028793335, -0.029663086, 0.010002136, 0.025756836, 0.027389526, -0.009284973, 0.0021820068, -0.0034923553, -0.03604126, -0.0052604675, 0.022094727, -0.0011606216, -0.03527832, -0.008651733, -0.042755127, -0.03753662, -0.013145447, 0.09277344, 0.01486969, -0.016204834, -0.038269043, -0.023071289, 0.03668213, 0.042663574, 0.025131226, -0.00049066544, 0.012481689, -0.053955078, 0.017242432, 0.046783447, -0.029083252, 0.023330688, -0.0059432983, 0.031143188, 0.058929443, -0.011978149, 0.010734558, -0.008872986, 0.028701782, 0.06384277, -0.023406982, -0.012054443, -0.010307312, 0.007549286, -0.02229309, 0.038848877, 0.010795593, 0.041778564, 0.0031051636, 0.01763916, 0.040863037, 0.0059547424, 0.0060920715, -0.028030396, 0.036010742, -0.008262634, -0.0009241104, 0.03463745, -0.0013809204, -0.03765869, -0.0077171326, 0.012001038, -0.009147644, 0.03564453, 0.0069007874, 0.013458252, -0.019195557, 0.0046691895, -0.0178833, 0.012046814, -0.014022827, -0.0073127747, -0.015319824, 0.0033226013, -0.012130737, -0.0002746582, -0.019500732, -0.04638672, -0.0099105835, 0.027023315, 0.013923645, -0.01209259, -0.018844604, 0.016281128, -0.02885437, -0.013801575, 0.018661499, 0.023864746, -0.07849121, -0.01499939, 0.0069389343, -0.03878784, -0.042053223, -0.0059394836, -0.033050537, -0.05508423, -0.03717041, 0.06329346, -0.005645752, -0.08746338, -0.0067100525, -0.008468628, 0.026687622, -0.011726379, 0.0062065125, -0.029312134, -0.024398804, -0.022415161, -0.0046806335, 0.07849121, 0.004322052, -0.0059318542, 0.027496338, 0.014381409, 0.032592773, -0.03439331, -0.00011742115, -0.032714844, 0.039733887, 0.0692749, 0.013084412, 0.04095459, -0.04272461, 0.054595947, 0.08294678, 0.010406494, -0.029251099, 0.0069847107, 0.014312744, -0.039855957, -0.009101868, -0.021728516, 0.009407043, -0.06365967, 0.018829346, 0.010284424, -0.025558472, 0.013626099, -0.072387695, -0.028930664, -0.051696777, 0.031707764, -0.011398315, 0.009880066, -0.013626099, -0.0519104, 0.02494812, -0.031921387, -0.023086548, 0.037200928, -0.011802673, 0.030349731, -0.06488037, 0.016159058, -0.07318115, 0.013877869, -0.0013914108, -0.056121826, 0.00094127655, -0.021255493, 0.033294678, -0.017150879, 0.036315918, -0.013542175, 0.0027065277, -0.042663574, -0.022079468, -0.002002716, 0.013031006, 0.007080078, -0.027526855, 0.012588501, -0.007820129, -0.05609131, 0.0004286766, 0.002696991, 0.04058838, 0.0030403137, -0.005428314, -0.020812988, -0.05706787, -0.021713257, 0.0006637573, -0.013427734, -0.01436615, -0.013771057, 0.035705566, -0.023269653, 0.11437988, 0.03829956, 0.05505371, 0.12310791, -0.022476196, -0.028717041, -0.048919678, 0.026107788, 0.06878662, -0.0060424805, -0.030548096, -0.008712769, 0.02217102, 0.008430481, -0.030181885, 0.0010719299, 0.07720947, 0.0635376, -0.018051147, -0.02609253, -0.028869629, 0.07098389, -0.019332886, 0.013931274, -0.066345215, -0.08068848, 0.020874023, -0.044677734, 0.07495117, 0.025039673, -0.024612427, 0.113464355, 0.042816162, -0.015380859, 0.038391113, 0.054779053, -0.011383057, 0.02406311, 0.0012111664, -0.03894043, -0.012367249, 0.008171082, 0.0059661865, -0.020126343, 0.008026123, -0.07080078, -0.005706787, 0.010040283, 0.012863159, -0.0435791, -0.034362793, 0.0028476715, -0.00466156, 0.0079574585, -0.04660034, 0.0037326813, -0.017028809, -0.019760132, 0.013023376, -0.038360596, -0.035980225, -0.022415161, -0.037200928, -0.062408447, 0.031677246, -0.009384155, 0.008804321, -0.00090789795, 0.04043579, 0.012001038, 0.026550293, -0.05230713, 0.02381897, -0.05545044, 0.03741455, 0.055755615, 0.01876831, 0.035614014, -0.039215088, -0.007434845, 0.009002686, 0.017181396, 0.0030212402, -0.019058228, -0.039276123, 0.0098724365, 0.011207581, 0.0065994263, -0.051513672, 0.00944519, -0.05758667, 0.01222229, -0.017089844, -0.068237305, -0.004989624, -0.007259369, 0.001373291, -0.06915283, -0.03152466, -0.027694702, 0.007598877, -0.004878998, 0.011207581, -0.027954102, 0.013771057, 0.021484375, 0.017440796, -0.033111572, -0.027740479, -0.07373047, -0.0029277802, 0.0047187805, 0.0021457672, 0.023330688, -0.015975952, -0.019577026, -0.010467529, 0.02947998, -0.025299072, -0.008575439, -0.0395813, -0.05545044, 0.015129089, -0.035705566, 0.04336548, -0.026855469, 0.037384033, -0.018554688, 0.010360718, -0.020874023, 0.013519287, 0.005458832, -0.020828247, -0.025466919, 0.009880066, 0.05307007, -0.022720337, 0.027023315, 0.0023078918, 0.016418457, -0.0021018982, 0.026687622, -0.11035156, -0.04949951, -0.018356323, -0.030792236, 0.018188477, 0.003238678, -0.023483276, -0.016830444, 0.05130005, -0.012138367, -0.016281128, -0.007980347, 0.006000519, 0.017318726, 0.002840042, -0.014251709, 0.018203735, -0.008331299, -0.016418457, -0.025527954, 0.066711426, 0.065979004, -0.018859863, 0.0063285828, 0.0109939575, -0.03149414, -0.043945312, -0.017425537, -0.0007109642, -0.021026611, -0.06060791, -0.042755127, 0.058807373, -0.032836914, 0.030929565, -0.012680054, -0.05883789, 0.016647339, 0.05239868, 0.020095825, -0.01852417, 0.0032730103, 0.02468872, 0.011978149, 0.03161621, 0.035247803, -0.02748108, 0.023483276, -0.028198242, -0.01979065, -0.0005927086, -0.013549805, 0.019470215, -0.06088257, 0.010017395, 0.021209717, 0.0063667297, 0.002752304, 0.056274414, 0.017959595, 0.026489258, 0.028884888, -0.018600464, -0.005443573, 0.058135986, -0.006134033, -0.028015137, 0.031173706, 0.04043579, 0.045166016, 0.051483154, 0.003364563, 0.010215759, 0.018249512, 0.028381348, 0.044799805, -0.012268066, 0.032043457, -0.022491455, 0.022659302, -0.0058403015, 0.008651733, -0.051879883, 0.03137207, 0.045898438, 0.03086853, -0.0105896, -0.027191162, 0.06695557, -0.038970947, -0.045318604, 0.008659363, 0.04244995, -0.045806885, -0.010299683, 0.013267517, -0.013252258, -0.061035156, -0.023132324, -0.054382324, 0.041625977, -0.007835388, -0.004142761, -0.032562256, 0.022445679, 0.010513306, 0.0028591156, -0.043792725, 0.012329102, 0.0017385483, 0.0054473877, 0.010848999, -0.004676819, 0.0036239624, -0.01939392, 0.0061950684, 0.014274597, -0.04949951, -0.024017334, 0.0045814514, 0.022476196, 0.010154724, 0.04168701, -0.026931763, 0.0018596649, 0.010627747, -0.025268555, 0.017669678, -0.023345947, -0.0395813, -0.02015686, 0.014198303, 0.037597656, -0.0028648376, -0.011932373, 0.016067505, -0.022842407, 0.00027656555, -0.046783447, 0.044189453, 0.030715942, 0.025634766, 0.024276733, -0.018753052, 0.0007119179, 0.041229248, -0.0012626648, -0.05014038, -0.02355957, -0.012641907, -0.11071777, 0.008041382, -0.036590576, 0.05279541, -0.029174805, -0.04421997, -0.032409668, 0.023544312, -0.014053345, 0.014862061, -0.008293152, -0.050598145, 0.0011425018, -0.0010404587, -0.0041046143, 0.018569946, 0.0036640167, -0.038330078, -0.028915405, -0.052886963, -0.017837524, 0.030181885, -0.0051231384, 0.0062065125, -0.027862549, 0.018737793, 0.002445221, 0.06097412, 0.030197144, -0.004512787, -0.018737793, -0.02809143, 0.03326416, 0.027893066, 0.005680084, -0.025985718, -0.010116577, -0.012901306, 0.049224854, 0.058380127, -0.018112183, -0.0423584, -0.0713501, 0.055267334, 0.041015625, 0.0025157928, 0.057678223, 0.07019043, 0.041290283, -0.051574707, -0.0013198853, 0.03414917, -0.04159546, -0.018478394, -0.022109985, -0.009429932, 0.020431519, -0.0065345764, 0.030670166, -0.002166748, 0.03050232, -0.035095215, 0.028823853, -0.0039100647, 0.0043258667, 0.02583313, -0.038024902, -0.015029907, -0.026046753, -0.025970459, 0.015411377, -0.010108948, -0.018554688, -0.013923645, 0.0029144287, -0.030014038, 0.048675537, -0.010070801, 0.021118164, 0.015426636, -0.029693604, -0.008758545, 0.00074768066, 0.020233154, -0.01260376, -0.015205383, 0.013961792, 0.01612854, -0.019363403, -0.00090408325, 0.05899048, 0.014442444, 0.0011138916, 0.0008254051, -0.0034828186, -0.025863647, -0.022903442, 0.02670288, -0.03314209, -0.011665344, 0.018997192, 0.016723633, 0.04034424, 0.04244995, -0.015914917, 0.0435791, -0.032592773, 0.011505127, -0.03237915, 0.030441284, -0.022537231, -0.03479004, 0.0010604858, 0.0022068024, 0.0015592575, 0.031051636, 0.0075683594, -0.014160156, -0.011688232, -0.0049438477, 0.008682251, 0.0052833557, -0.0007920265, 0.0032253265, -0.022232056, -0.015640259, -0.012573242, -0.0063552856, 0.019317627, -0.004337311, 0.005924225, 0.033966064, -0.057128906, 0.0071525574, -0.00459671, 0.022659302, -0.06652832, 3.6776066e-05, -0.0015764236, 0.0101623535, 0.061767578, 0.026519775, -0.010353088, 0.014953613, -0.03692627, -0.015167236, 0.007545471, -0.05810547, -0.0052108765, 0.028564453, -0.0118637085, -0.033111572, -0.013534546, 0.026885986, -0.024047852, 0.02508545, -0.048065186, -0.029891968, -0.019485474, -0.03744507, -0.008110046, -0.009262085, -0.07220459, 0.023010254, -0.012550354, 0.0029945374, 0.020889282, -0.01902771, -0.03552246, -0.023284912, 0.018157959, 0.020843506, -0.023895264, 0.0035152435, 0.056610107, -0.032348633, -0.06549072, -0.02670288, 0.03289795, -0.061431885, -0.048614502, -0.0014238358, 0.0095825195, 0.020553589, -0.0034809113, -0.0046653748, 0.003993988, 0.030258179, -0.027908325, -0.008636475, -0.026947021, -0.011291504, 0.017425537, -0.009132385, -0.016540527, -0.034973145, 0.033843994, 0.004875183, 0.0078086853, 0.03024292, -0.003604889, -0.030944824, -0.0034980774, 0.006072998, -0.0017623901, -0.020355225, -0.013404846, 0.021148682, 0.013664246, 0.00036859512, -0.046081543, 0.01663208, -0.019012451, 0.04840088, -0.014183044, 0.033203125, -0.021347046, -0.082336426, -0.052581787, -0.026489258, 0.01689148, 0.00050640106, -0.03253174, 0.048980713, 0.03262329, -0.042053223, 0.015357971, 0.02545166, 0.0042877197, 0.016845703, 0.02470398, -0.0058784485, -0.013343811, -0.038909912, -0.02003479, -0.016525269, -0.07885742, 0.010978699, -0.013420105, -0.0018081665, 0.0067214966, -0.037597656, 0.008964539, -0.0105896, 0.0039749146, -0.02470398, -0.0579834, 0.021270752, 0.05178833, -0.017562866, 0.005821228, -0.009689331, -0.013809204, -0.058563232, 0.005466461, 0.01890564, 0.016799927, -0.014343262, 0.009437561, 0.034484863, 0.024520874, 0.0035057068, -0.073913574, -0.018676758, 0.03173828, 0.004688263, -0.025222778, 0.0020637512, -0.04776001, 0.002626419, 0.029296875, -0.03967285, -0.029281616, -0.0016021729, -0.006187439, 0.0001348257, 0.007820129]}, "B077KRTY7C": {"id": "B077KRTY7C", "original": "Brand: Gimiton\nName: Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool\nDescription: \u25cfSpecification:
      Material: ABS plastic + Stainless Steel
      Color: black
      Length: 7inches(18cm)
      Width: 3inches(8cm)
      Weight: 4 OZ

      \u25cfFeatures:
      1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
      2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
      3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
      4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
      5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

      \u25cfNotes:
      1. Please allow slight color difference due to different monitor's brightness and contrast settings.
      2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
      3. Pls note that there's no battery included with the blower, you need to prepare it by yourself.
      \nFeatures: \u2605ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance.\n\u2605Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily.\n\u2605Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients.\n\u2605Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted.\n\u2605Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.\n", "metadata": {"Name": "Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool", "Brand": "Gimiton", "Description": "\u25cfSpecification:
      Material: ABS plastic + Stainless Steel
      Color: black
      Length: 7inches(18cm)
      Width: 3inches(8cm)
      Weight: 4 OZ

      \u25cfFeatures:
      1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
      2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
      3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
      4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
      5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

      \u25cfNotes:
      1. Please allow slight color difference due to different monitor's brightness and contrast settings.
      2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
      3. Pls note that there's no battery included with the blower, you need to prepare it by yourself.
      ", "Features": "\u2605ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance.\n\u2605Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily.\n\u2605Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients.\n\u2605Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted.\n\u2605Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008865356, 0.0024490356, -0.031311035, -0.05026245, 0.0019044876, -0.0024909973, -0.017822266, 0.016586304, -0.035369873, 0.023651123, -0.026229858, 0.04949951, 0.01234436, -0.006996155, 0.035614014, -0.02684021, 0.0002799034, 0.029769897, 0.017700195, -0.012008667, 0.021118164, -0.01638794, -0.03213501, 0.051696777, -0.008621216, 0.031799316, 0.05105591, -0.012397766, 0.00762558, -0.00390625, 0.016220093, -0.016021729, 0.041625977, 0.027770996, -0.08886719, -0.04019165, -0.03857422, -0.005004883, -0.054656982, 0.033233643, 0.020645142, -0.010307312, -0.055755615, 0.03982544, -0.051727295, -0.015548706, 0.008201599, -0.012214661, -0.037963867, 0.033233643, 0.004463196, 0.03274536, 0.000647068, 0.02293396, -0.0011301041, -0.029174805, 0.01259613, -0.008766174, 0.023223877, -0.024169922, -0.028945923, 0.015274048, 0.038330078, 0.020065308, -0.049346924, -0.008132935, 0.06604004, -0.0029525757, -0.017486572, -0.064331055, 0.008895874, 0.032836914, -0.020339966, 0.016815186, -0.072509766, -0.04067993, 0.045410156, -0.035186768, 0.0022010803, 0.0074272156, -0.062042236, -0.015403748, 0.0007534027, -0.051971436, 0.0077819824, -0.012573242, -0.028305054, 0.0037288666, -0.009246826, 0.0026416779, 0.0036773682, 0.004108429, -0.056243896, 0.055877686, 0.010749817, 0.0093688965, -0.010093689, -0.030578613, 0.030548096, 0.015090942, 0.05795288, -0.04663086, 0.04421997, -0.014381409, -0.012573242, 0.050323486, -0.0027275085, 0.013320923, -0.0049972534, 0.013771057, -0.0036315918, -0.052703857, 0.018356323, -0.009887695, -0.027877808, -0.0051651, 0.008308411, 0.022125244, 0.018569946, -0.008712769, -0.050842285, -0.028793335, 0.040863037, 0.014633179, 0.05117798, 0.06976318, 0.010322571, -0.033325195, -0.004360199, 0.023284912, -0.01663208, 0.020309448, 0.0016822815, 0.009162903, -0.01802063, -0.012878418, 0.022033691, -0.005619049, 0.026275635, -0.03829956, -0.01890564, 0.041381836, 0.070251465, 0.0015192032, 0.051452637, 0.016815186, 0.008163452, 0.018066406, 0.024337769, -0.019119263, 0.048461914, -0.025390625, 0.037139893, 0.0023880005, -0.0070610046, -0.005622864, -0.010154724, -0.012145996, -0.008682251, -0.026641846, -0.0259552, -0.0025634766, 0.02859497, -0.005973816, -0.013412476, 0.0062294006, 0.018371582, -0.010421753, 0.016159058, 0.0024929047, 0.0048294067, 0.02230835, 0.0084991455, -0.0284729, -0.012329102, -0.0178833, -0.0073242188, 0.07513428, 0.06347656, -0.113586426, -0.08862305, -0.06137085, 0.12670898, -0.066711426, 0.011299133, -0.047576904, -0.010505676, -0.052978516, 0.02180481, 0.0030708313, -0.0134887695, -0.007965088, -0.043121338, 0.01625061, -0.0023880005, 0.020874023, -0.01586914, 0.04296875, -0.005622864, -0.032409668, 0.02330017, -0.019012451, 0.010498047, -0.027709961, -0.019989014, -0.039642334, -0.0029468536, 0.015655518, 0.022033691, 0.01977539, -0.010406494, -0.040374756, 0.012741089, -0.035705566, -0.047851562, -0.032989502, -0.0028820038, 0.00995636, -0.0029754639, -0.0042686462, -0.011245728, 0.013000488, -0.006690979, 0.042236328, 0.022460938, 0.0015106201, -0.028121948, 0.0022659302, 0.017990112, 0.0119018555, -0.018997192, 0.043518066, 0.032836914, 0.045196533, -0.037261963, 0.022720337, 0.0385437, 0.050201416, -0.030899048, -0.009925842, 0.015991211, 0.024856567, -0.039367676, -0.015487671, 0.00844574, -0.013877869, 0.006385803, -0.008155823, -0.02619934, -0.0041618347, 0.0024299622, 0.013198853, 0.02796936, 0.004749298, -0.008964539, 0.030273438, -0.07647705, 0.011131287, 0.00390625, -0.017486572, -0.0023517609, -0.0038814545, 0.030639648, -0.018966675, 0.033050537, -0.03414917, 0.044006348, 0.030578613, 0.0042800903, -0.036315918, 0.020568848, 0.013938904, 0.00440979, 0.0059165955, 0.07537842, -0.019866943, 0.013130188, -0.036376953, 0.019378662, -0.00762558, -0.003156662, -0.0088272095, -0.02381897, -0.00031399727, 0.054229736, -0.015335083, -0.016525269, -0.007980347, -0.052459717, -0.027114868, -0.005683899, -0.00022220612, -0.031051636, -0.038909912, 0.03778076, -0.02444458, 0.0038795471, 0.005279541, 0.020492554, -0.03253174, -0.0038108826, 0.043823242, -0.038024902, 0.015083313, -0.044677734, -0.006412506, -0.02973938, -0.00894165, -0.026809692, -0.05441284, 0.0015506744, 0.0008940697, 0.041748047, 0.0045700073, 0.038360596, 0.029754639, -0.00046539307, 0.05291748, 0.0496521, 0.06530762, -0.036865234, -0.055541992, 0.0014104843, 0.0067596436, -0.0053863525, 0.009986877, 0.015777588, 0.013961792, -0.04156494, 0.030410767, 0.020706177, -0.0033740997, -0.0022735596, -0.0055770874, -0.0046844482, 0.00087451935, -0.014732361, 0.0670166, -0.015960693, -0.039398193, -0.056762695, -0.0047798157, -0.005897522, -0.061523438, -0.053344727, -0.004333496, 0.00434494, 0.0029239655, 0.0010766983, -0.019348145, 0.016159058, -0.0007534027, 0.03933716, 0.008178711, -0.0039100647, 0.010749817, -0.04031372, -0.05331421, -0.0541687, -0.09680176, -0.0022201538, -0.008644104, -0.05480957, -0.0014152527, 0.06573486, -0.014663696, -0.026382446, -0.011047363, 0.015350342, 0.034057617, -0.005153656, 0.029724121, -0.036315918, -0.01838684, -0.0035629272, -0.019363403, 0.045013428, -0.03829956, 0.0025997162, 0.012001038, -0.036590576, 0.009414673, -0.027832031, 0.01939392, 0.043395996, 0.018814087, 0.027145386, -0.0018644333, 0.042541504, -0.013122559, 0.022857666, -0.005466461, -0.015403748, -0.021743774, 0.022918701, 0.014923096, -0.0104599, -0.045715332, -0.016708374, -0.030197144, -0.10455322, -0.004501343, -0.012184143, -0.041137695, -0.026031494, -0.036315918, -0.06774902, -0.052246094, -0.005706787, 0.028762817, -0.011184692, 0.012924194, -0.025756836, 0.022415161, 0.018325806, -0.04534912, 0.015731812, -0.0158844, -0.0022697449, -0.0134887695, 0.0151901245, -0.0423584, 0.026000977, 0.032073975, -0.053955078, -0.014404297, -0.006164551, 0.010154724, 0.0014429092, 0.04336548, -0.019485474, -0.010932922, 0.01184082, -0.0045280457, -0.046844482, -0.012748718, 0.017486572, 0.027938843, 0.043762207, -0.039764404, -0.023162842, 0.0028419495, -0.046447754, -0.015235901, -0.022857666, -0.046020508, 0.010047913, -0.038269043, -0.017745972, -0.001947403, 0.015258789, 0.012992859, 0.0418396, 0.013557434, -0.006996155, 0.06866455, 0.052734375, 0.040405273, 0.015853882, -0.044006348, -0.059631348, -0.04675293, 0.041015625, -0.025787354, -0.004463196, -0.059539795, 0.043121338, -0.008110046, -0.02998352, 0.031982422, -0.014579773, 0.051513672, -0.01234436, -0.015281677, 0.027709961, -0.007751465, -0.0016069412, 0.059173584, -0.043121338, -0.03112793, -0.041046143, 0.006427765, -0.0758667, 0.0848999, 0.026168823, -0.021377563, 0.074523926, 0.05886841, -0.0031261444, 0.02255249, 0.023925781, 0.006801605, 0.011123657, 0.050567627, 0.009971619, -0.017837524, 0.004852295, 0.026168823, 0.04055786, 0.018341064, -0.06378174, 0.035125732, 0.03439331, -0.06561279, -0.007980347, -0.013031006, 0.027786255, 0.0037994385, -0.0137786865, 0.0015258789, 0.0056152344, -0.03012085, -0.03326416, 0.0068740845, -0.025360107, 0.005558014, -0.014778137, 0.027404785, -0.039611816, -0.018218994, -0.036132812, 0.012054443, -0.005039215, 0.01940918, 0.017837524, -0.021026611, -0.0046539307, 0.032592773, -0.017578125, -0.0059928894, 0.0071525574, 0.019104004, -0.019744873, -0.017822266, 0.016815186, -0.029678345, -0.035247803, 0.008338928, 0.021865845, -0.031585693, 0.013679504, 0.059661865, -0.0032367706, 0.022445679, 0.022323608, -0.0836792, 0.0026626587, -0.007965088, -0.07366943, 0.011039734, -0.022827148, -0.025772095, -0.04473877, 0.003112793, 0.0011692047, 0.0007534027, -0.055999756, 0.026473999, -0.005290985, -0.016357422, -0.011543274, 0.06341553, -0.04434204, -0.0066490173, 0.0013465881, 0.016860962, 0.012245178, -0.0070648193, -0.045806885, -0.032470703, -0.015563965, -0.019012451, 0.0075645447, 0.0049362183, -0.0138168335, 0.0047416687, -0.01285553, -0.0042381287, 0.049438477, 0.07183838, 0.017730713, 0.019058228, -0.04156494, -0.029174805, -0.030914307, -0.009490967, -0.011886597, -0.07861328, -0.04876709, -0.015296936, 0.05795288, 0.008613586, 0.009437561, -0.0026073456, 0.003364563, 0.0051956177, 0.018676758, -0.078552246, -0.04940796, -0.008590698, -0.05871582, -0.01285553, -0.010391235, -0.035125732, 0.06750488, 0.011169434, -0.024490356, -0.066589355, -0.024749756, -0.018203735, 0.01889038, 0.04071045, -0.023880005, -0.023040771, -0.04537964, 0.02243042, -0.060058594, 0.10644531, 0.0947876, -0.003932953, 0.008850098, 0.008308411, -0.03414917, -0.068847656, 0.044555664, 0.053131104, -0.038024902, 0.019851685, -0.0041923523, -0.008285522, -0.014045715, -0.013198853, -0.033691406, 0.004917145, 0.011543274, -0.00932312, -0.0070648193, -0.0070762634, 0.012268066, -0.003276825, 0.03375244, -0.012466431, -0.02192688, 0.00831604, -0.01612854, 0.0038547516, 0.027114868, -0.0027446747, 0.0031375885, -0.003211975, -0.01083374, -0.014350891, -0.072509766, -0.029067993, 0.058654785, -0.03186035, -0.035614014, 0.022903442, 0.010528564, -0.0065994263, -0.079589844, -0.010826111, -0.00061416626, -0.009727478, 0.016601562, -0.042388916, 0.022766113, -0.00084495544, -0.019546509, -0.019088745, -0.0206604, 0.007522583, 0.012031555, -0.0060043335, 0.019012451, -0.012176514, 0.012237549, 0.0018730164, -0.010726929, -0.05633545, 0.019454956, 0.008140564, 0.020843506, -0.0005788803, -0.040374756, 0.051849365, -0.057891846, -0.02557373, -0.0029411316, 0.020004272, -0.027297974, -0.0002706051, -0.00050354004, -0.005016327, -0.028121948, -0.018035889, -0.023498535, 0.007472992, -0.005908966, -0.021392822, -0.0020332336, 0.017974854, -0.016815186, 0.0020217896, -0.013023376, 0.008178711, -0.048919678, 0.01222229, -0.0019025803, 0.013656616, -0.007385254, -0.018569946, -0.01638794, 0.0031261444, -0.031219482, -0.057495117, -0.025527954, -0.005126953, -0.0085372925, 0.045654297, 0.024749756, 0.0018892288, 0.028945923, -0.013114929, -0.0033397675, 0.026641846, 0.021881104, 0.06347656, 0.01739502, 0.040618896, -0.046844482, -0.026687622, 0.07397461, -0.061187744, -0.056488037, -0.008934021, 0.05429077, -0.01084137, 0.016830444, 0.037231445, -0.037902832, 0.022644043, 0.0368042, 0.010643005, -0.0067253113, -0.018951416, 0.0035572052, -0.049102783, -0.0043563843, -0.02684021, 0.027175903, -0.012359619, 0.019744873, -0.017532349, 0.0385437, -0.030395508, -0.012550354, -0.036132812, -0.004371643, -0.011039734, -0.04043579, 0.0009737015, -0.010116577, 0.00617218, 0.0045318604, 0.020309448, 0.00730896, 0.028320312, -0.0030403137, 0.0390625, 0.050109863, 0.010253906, 0.005996704, 0.0059013367, -0.06903076, 0.050323486, -0.020477295, -0.010238647, -0.0009059906, 0.009147644, 0.023544312, -0.017486572, 0.014968872, 0.0039711, -0.002008438, -0.026550293, -0.016586304, 0.01348114, -0.031234741, 0.004131317, -0.014854431, 0.05340576, -0.046661377, 0.030838013, 0.008277893, -0.010925293, -0.025131226, -0.014343262, -0.0028190613, -0.056671143, -0.0052108765, -0.0019483566, 0.008018494, 0.031143188, -0.018661499, -0.012954712, 0.017913818, 0.036834717, -0.078063965, 0.0072631836, -0.017700195, -0.062927246, 0.02067566, -0.00038838387, 0.049835205, -0.041503906, -0.023391724, 0.006500244, -0.023742676, -0.055511475, 0.017730713, 0.040130615, -0.025100708, 0.026428223, -0.0395813, -0.0069465637, 0.062469482, -0.041412354, 0.0017309189, 0.044952393, -0.008720398, -0.017745972, -0.033935547, -0.0058784485, 0.011817932, 0.026657104, -0.02041626, 0.078552246, -0.030029297, -0.01260376, 0.05114746, 0.013282776, -0.015182495, 0.018936157, -0.017059326, -0.039794922, 0.017669678, 0.0026187897, -0.013534546, 0.010169983, 0.013450623, -0.012008667, -0.031585693, -0.012069702, 0.039367676, 0.04650879, -0.0012760162, -0.043945312, -0.05065918, 0.010368347, 0.025909424, -0.03414917, -0.024475098, 0.011077881, -0.004638672, 0.04562378, -0.010665894, -0.0018796921, 0.03894043, 0.015563965, 0.033843994, 0.013908386, -0.031341553, -0.0016241074, -0.018127441, 0.04421997, -0.017959595, 0.07598877, 0.017715454, -0.0032997131, -0.0058174133, -0.047210693, 0.023895264, -0.04458618, -0.00025129318, 7.790327e-05, 0.035583496, -0.03503418, 0.015808105, -0.027282715, -0.016677856, 0.00036883354, -0.013931274, 0.005542755, -0.03894043, 0.015457153, -0.023147583, -0.016693115, -0.03378296, 0.018585205, -0.028533936, -0.0024414062, 0.018966675, -0.068603516, 0.035217285, -0.044677734, -0.05368042, -0.021453857, -0.03036499, -0.04537964, 0.060638428, -0.008888245, -0.009986877, 0.008079529, -0.0021533966, 0.021591187, -0.050842285, -0.0073623657, 0.0022735596, -0.007698059, -0.0058021545, 0.03225708, -0.024139404, -0.06878662, -0.042388916, 0.039520264, -0.0647583, -0.042053223, 0.0017499924, -0.012290955, 0.002248764, -0.0013036728, 0.03048706, 0.014022827, 0.039367676, -0.0085372925, -0.016967773, 0.002986908, -0.04714966, 0.062469482, 0.005897522, -0.009643555, 0.032043457, 0.03387451, -0.026321411, 0.04031372, -0.003168106, -0.006801605, -0.05078125, -0.021636963, -0.04537964, -0.026123047, -0.0038013458, -0.0016231537, 0.006690979, 8.171797e-05, -0.03250122, -0.03164673, -0.0040626526, 0.001832962, 0.00617218, -0.009017944, 0.036468506, -0.0035820007, 0.008155823, -0.035858154, -0.0135650635, 0.010177612, 0.049346924, -0.023895264, -0.033111572, 0.015472412, -0.02508545, 0.019348145, 0.02558899, -0.025268555, 0.053588867, -0.024017334, 0.011390686, 0.030166626, -0.051849365, -0.001288414, -0.019851685, -0.010620117, 0.029190063, 0.022521973, -0.035186768, -0.03378296, -0.0025901794, -0.008171082, -0.009307861, -0.0082092285, 0.01083374, -0.07574463, 0.015541077, 0.038360596, 0.013092041, 0.008140564, 0.010154724, -0.06262207, -0.0317688, 0.0059394836, 0.005138397, -0.0034751892, -0.03302002, 0.07244873, 0.023086548, 0.07171631, -0.02619934, -0.06008911, -0.06738281, 0.04650879, -0.0071372986, -0.00069093704, 0.02104187, -0.016357422, 0.02519226, 0.0018386841, 0.0036201477, -0.024307251, 0.0022716522, 0.025527954, -0.0064849854, 0.01486969]}, "B07MJP4ZQV": {"id": "B07MJP4ZQV", "original": "Brand: homenote\nName: homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping\nDescription: HOMENOTE professional griddle tools set
      provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It's a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
      KEY FEATURES:
      - 2 Oversized griddle SPATULAS\uff0cgreat for flipping beef cubes, fried egg, rice, noodle and vegetables.
      - 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
      - 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
      - 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
      - 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
      - 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
      - Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
      - Stronger and thicker stainless steel making them Not easily damaged or broken.
      - Dishwasher safe. Easy clean with warm soapy water.
      - Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
      IDEAL GIFT CHOICE
      - Give him/her a surprise !

      Don\u2019t know how to choose a gift for Father's Day? A complete set of griddle tools will be the best gift for your father, It\u2019s time to upgrade your father\u2019s old barbecue tools !
      Its also the perfect gift choice for Christmas, friend\u2019s birthday, griddle, grill and camping lovers !

      Accessories Dimensions:
      2 Spatulas: 14.45 x 2.81 inches
      2 Flipper/Turners: 11.64 x 2.73 inches
      1 Chopper Scrapper: 6.64 x 4.69 inches
      2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
      1 Storage bag: 15.6 x 6.25 inches
      1 RECIPE: 7.03 x 5.47 inches
      \nFeatures: Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning)\nMultipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.\nMust Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag.\nPerfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers.\nEnjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals\n", "metadata": {"Name": "homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping", "Brand": "homenote", "Description": "HOMENOTE professional griddle tools set
      provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It's a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
      KEY FEATURES:
      - 2 Oversized griddle SPATULAS\uff0cgreat for flipping beef cubes, fried egg, rice, noodle and vegetables.
      - 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
      - 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
      - 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
      - 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
      - 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
      - Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
      - Stronger and thicker stainless steel making them Not easily damaged or broken.
      - Dishwasher safe. Easy clean with warm soapy water.
      - Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
      IDEAL GIFT CHOICE
      - Give him/her a surprise !

      Don\u2019t know how to choose a gift for Father's Day? A complete set of griddle tools will be the best gift for your father, It\u2019s time to upgrade your father\u2019s old barbecue tools !
      Its also the perfect gift choice for Christmas, friend\u2019s birthday, griddle, grill and camping lovers !

      Accessories Dimensions:
      2 Spatulas: 14.45 x 2.81 inches
      2 Flipper/Turners: 11.64 x 2.73 inches
      1 Chopper Scrapper: 6.64 x 4.69 inches
      2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
      1 Storage bag: 15.6 x 6.25 inches
      1 RECIPE: 7.03 x 5.47 inches
      ", "Features": "Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning)\nMultipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.\nMust Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag.\nPerfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers.\nEnjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0362854, -0.0036945343, -0.010139465, -0.014343262, -0.030044556, 0.016052246, -0.04763794, -0.01448822, -0.02381897, 0.018417358, -0.015838623, 0.007411957, -0.00016272068, -0.023635864, 0.022201538, -0.030166626, 0.03869629, -0.03427124, -0.009140015, -0.004146576, -0.028030396, 0.02809143, -0.0069465637, 0.031188965, 0.071899414, -0.07098389, -0.05267334, -0.0035800934, 0.048614502, 0.011077881, 0.048034668, 0.0029335022, 0.06695557, -0.032958984, -0.0236969, 0.013679504, 0.021133423, -0.044830322, -0.044158936, 0.044158936, 0.01826477, 0.0074310303, -0.07281494, 0.02029419, -0.07684326, -0.009963989, -0.030670166, 0.010566711, 0.0076026917, 0.059570312, 0.004047394, -0.020339966, -0.011764526, 0.023788452, 0.00038647652, -0.014564514, 0.038330078, -0.0017881393, 0.02671814, 0.0035419464, -0.027862549, 0.030380249, 0.002878189, -0.017990112, -0.01133728, -0.008003235, 0.043395996, 0.0102005005, 0.0051956177, -0.0390625, -0.0051651, -0.006401062, 0.010879517, -0.010093689, -0.010650635, -0.020095825, 0.00242424, 0.0012187958, 0.017227173, -0.012031555, -0.027877808, -0.007434845, 0.013763428, -0.078430176, 0.034332275, -0.04525757, -0.027374268, 0.019180298, 0.011886597, 0.0035915375, 0.010879517, -0.02545166, -0.03213501, 0.091552734, 0.0335083, 0.0006766319, -0.037872314, -0.047332764, -0.003036499, 0.006717682, -0.018875122, -0.011795044, 0.033172607, -0.010375977, -0.005756378, 0.050231934, -0.005592346, 0.031234741, 0.017822266, 0.026107788, 0.012420654, -0.04626465, 0.031402588, 0.0049858093, -0.027404785, -0.032836914, -0.006072998, -0.00032806396, -0.003753662, -0.05166626, -0.038208008, 0.012641907, -0.0077209473, -0.021774292, 0.015823364, -0.005306244, 0.01828003, -0.012741089, 0.03643799, -0.012794495, -0.04675293, -0.025024414, 0.05505371, 0.061920166, 0.050720215, -0.034851074, 0.025131226, 0.012908936, 0.0060310364, -0.0054779053, -0.0022964478, 0.007019043, 0.031341553, -0.011520386, -0.004207611, -0.010429382, 0.039489746, 0.040740967, -0.017623901, 0.024978638, -0.0059432983, 0.051971436, 0.038238525, 0.003419876, -0.028274536, -0.009880066, 0.015823364, -0.018478394, -0.03857422, -0.039855957, -0.026870728, -0.005393982, 0.018539429, -0.04864502, -0.051208496, 0.002357483, -0.0015172958, -0.00077295303, 0.0009379387, 0.03842163, 0.011192322, -0.036956787, -0.058532715, -0.035064697, -0.01689148, -0.010475159, -0.035003662, 0.040374756, 0.043182373, -0.0625, -0.028823853, -0.039520264, 0.054229736, 0.0007510185, -0.03112793, -0.0035915375, -0.00046157837, 0.032165527, 0.034851074, 0.009254456, 0.01499176, 0.0016918182, -0.041748047, 0.016921997, 0.011329651, 0.046722412, -0.049591064, 0.04067993, -0.015777588, -0.052520752, -0.03338623, 0.019897461, -0.013908386, -0.013900757, -0.0059165955, -0.024368286, -0.011833191, 0.036743164, 0.034301758, 0.024780273, 0.011100769, 0.013038635, -0.0042915344, -0.059326172, -0.054840088, 0.013305664, -0.011856079, 0.025039673, 0.006614685, 0.008399963, 0.05117798, -0.02494812, 0.037902832, 0.022140503, 0.011756897, 0.025817871, -0.034057617, 0.01222229, -0.0418396, 0.050628662, -0.064697266, 0.008872986, 0.05038452, 0.03845215, -0.04373169, 0.01864624, 0.024108887, 0.05014038, -0.02607727, -0.004058838, 0.0021648407, -0.008155823, -0.045135498, 0.019866943, 0.02558899, 0.027282715, 0.014167786, 0.020965576, -0.031143188, -0.008911133, 0.002029419, 0.004360199, 0.028411865, -0.0082092285, -0.018981934, 0.022369385, -0.10412598, -0.045715332, -0.021652222, 0.014289856, 0.0009384155, 0.0067749023, 0.06390381, -0.020736694, 0.05126953, 0.00020647049, 0.05041504, 0.027816772, -0.03265381, 0.012619019, 0.018310547, -0.0012321472, -0.0055656433, 0.010681152, 0.018188477, -0.027679443, -0.031311035, 0.005859375, -0.027053833, -0.009994507, 0.032592773, 0.039123535, 0.04650879, 0.0043258667, 0.036071777, -6.735325e-06, 0.018295288, 0.016342163, -0.026550293, 0.0075950623, 0.018814087, 0.013954163, 0.0099105835, -0.036895752, 0.03729248, -0.014152527, 0.021102905, 0.072631836, -0.02520752, 0.014984131, -0.026275635, 0.022247314, -0.03955078, 0.03878784, -0.02305603, 0.011955261, -0.01576233, -0.02458191, -0.02166748, -0.03503418, 0.014183044, 0.03286743, 0.02861023, 0.036346436, 0.023620605, -0.0059890747, 0.011024475, 0.056793213, 0.025558472, 0.004623413, 0.01977539, 0.00762558, 0.005344391, 0.0018920898, 0.004928589, -0.017654419, -0.01625061, -0.005405426, -0.030456543, 0.021377563, 0.004497528, -0.007610321, -0.013023376, 0.019073486, -0.0032100677, 0.0149383545, -0.009506226, -0.053527832, -0.019836426, -0.00869751, -0.03289795, -0.010978699, 0.008483887, -0.07312012, -0.029144287, 0.052124023, -0.005176544, 0.029190063, -0.068481445, -0.012939453, 0.0029277802, -0.05154419, 0.047729492, 0.021347046, 0.030838013, 0.0056877136, -0.047058105, 0.013755798, -0.017593384, -0.060577393, -0.017410278, -0.0047912598, -0.027511597, 0.007587433, 0.00724411, -0.012802124, 0.010017395, 0.010955811, 0.034454346, 0.018478394, 0.015312195, 0.023620605, -0.0736084, -0.020401001, -0.0104522705, -0.015274048, -0.014884949, -0.062438965, 0.006011963, -0.011177063, -0.041778564, 0.018936157, 0.023330688, 0.088134766, -0.006679535, 0.022613525, -0.019592285, 0.042907715, -0.033996582, -0.019378662, -0.015220642, 0.052734375, -0.057647705, -0.027114868, -0.027633667, 0.0042762756, 0.08453369, -0.03201294, 0.055786133, -0.04663086, -0.046539307, 0.017578125, -0.0076828003, -0.021118164, 0.0026493073, -0.04119873, -0.028015137, -0.033447266, 0.009056091, 0.09820557, -0.002450943, 0.015151978, -0.026351929, 0.05178833, 0.00071048737, -0.0067481995, 0.051086426, -0.017410278, 0.02029419, -0.01914978, 0.04888916, -0.07196045, 0.061584473, 0.044952393, -0.016815186, -0.038848877, 0.012191772, 0.008163452, -0.05026245, 0.009918213, -0.015686035, -0.05126953, 0.0030708313, -0.0032920837, -0.07092285, -0.006164551, 0.0016937256, 0.031555176, 0.039276123, -0.029220581, -0.0054397583, -0.038635254, -0.09765625, -0.00093078613, -0.053619385, -0.015808105, -0.045684814, -0.01436615, -0.020950317, 0.017822266, -0.046295166, 0.01890564, 0.012939453, 0.036193848, -0.008705139, -0.012123108, 0.00010317564, 0.04727173, 0.03753662, -0.016220093, -0.0181427, -0.05203247, 0.07330322, 0.021606445, -0.0066947937, -0.07904053, 0.09008789, -0.017349243, 0.011116028, -0.008407593, -0.038085938, 0.074157715, 0.01828003, -0.024032593, -0.00016093254, -0.018722534, 0.030548096, 0.0025348663, -0.005592346, -0.025878906, -0.06008911, 0.0074768066, -0.056640625, 0.06008911, 0.019760132, -0.013046265, 0.056640625, 0.0340271, -0.015060425, 0.036468506, -0.022964478, 0.0013227463, 0.0018119812, 0.011123657, -0.033935547, 0.039855957, -0.0012044907, 0.023651123, 0.027542114, -0.0049209595, -0.024398804, 0.016723633, 0.0032043457, -0.025848389, 0.035949707, 0.03286743, 0.0030498505, 0.02696228, 0.0066566467, -0.015380859, 0.0115737915, -0.035308838, -0.024093628, -0.00095939636, -0.03274536, -0.007347107, -0.009239197, -5.9485435e-05, -0.029907227, -0.00724411, -0.008285522, 0.044891357, -0.02355957, 0.026046753, 0.01777649, -0.0058555603, -0.053375244, 0.04333496, -0.041534424, 0.033325195, 0.032836914, 0.034698486, 0.06750488, -0.023025513, -0.017990112, -0.043640137, -0.030761719, 0.007183075, 0.016143799, -0.004283905, -0.01210022, -0.00881958, -0.01171875, 0.021759033, -0.005012512, -0.07116699, -0.02709961, -0.03390503, -0.014030457, -0.04547119, -0.013305664, -0.00843811, -0.056152344, 0.0039367676, 0.0041656494, -0.07122803, -0.07366943, 0.030792236, -0.02381897, -0.010406494, -0.009590149, -0.035186768, -0.019989014, 0.040252686, -0.051239014, 0.0043258667, 0.047302246, -0.016906738, -0.02154541, 0.004207611, -0.054901123, -0.017700195, 0.05923462, 0.0029201508, -0.012367249, -0.05279541, -0.0038318634, 0.032836914, 0.035369873, 0.049621582, 0.009635925, 0.012176514, -0.030944824, 0.031555176, -0.01928711, -0.0056381226, 0.0028457642, -0.035705566, -0.010147095, -0.021514893, 0.03439331, -0.012512207, 0.005596161, -0.027008057, 0.020721436, -0.016601562, 0.018157959, -0.028274536, 0.0019102097, 0.011962891, -0.051116943, 0.007873535, -0.012748718, -0.034179688, 0.036102295, 0.03955078, -0.018493652, -0.025665283, -0.011703491, -0.018295288, -0.011390686, -0.03036499, 0.0004169941, 0.030212402, -0.028900146, 0.014427185, -0.07067871, 0.06274414, 0.08050537, -0.02229309, 0.026290894, 0.001077652, -0.01436615, 0.033477783, 0.0032463074, -0.006729126, 0.032348633, 0.015625, -0.039398193, -0.013877869, -0.04248047, -0.015335083, -0.005264282, -0.023788452, 0.007843018, 0.003025055, 0.017105103, -0.01411438, 0.005393982, 0.020629883, 0.012451172, 0.02468872, 0.017044067, 0.011756897, -0.015655518, -0.019302368, 0.001376152, -0.008026123, -0.010795593, -0.016357422, 0.009544373, 0.00844574, -0.059417725, -0.0057792664, 0.042053223, -0.022964478, -0.026306152, 0.06378174, -0.07208252, 0.022613525, -0.0340271, -0.00365448, -0.0051994324, -1.513958e-05, 0.038360596, -0.043518066, -0.02293396, 0.005432129, -0.04864502, 0.057006836, -0.038391113, -0.03338623, 0.05368042, -0.021987915, 0.014434814, 0.004020691, 0.0093688965, 0.005748749, 0.0015096664, -0.04537964, -0.008049011, 0.031463623, 0.056915283, 0.01953125, -0.05545044, 0.032287598, -0.012298584, -0.009666443, 0.025634766, 0.02909851, -0.053619385, -0.011047363, 0.029312134, -0.029556274, -0.022964478, 0.04397583, 0.0231781, -0.026672363, -0.0115737915, -0.059814453, 0.041046143, 0.013549805, -0.019699097, -0.014579773, -0.015083313, -0.00029730797, -0.008163452, -0.062561035, -0.035858154, 0.013412476, -0.056274414, 0.024017334, 0.0006971359, -0.0026054382, -0.010536194, -0.011268616, -0.01625061, -0.04006958, -0.040252686, 0.04876709, -0.010536194, -0.005970001, 0.01965332, 0.011253357, 0.030303955, 0.0035762787, -0.037200928, -0.007068634, -0.0032043457, 0.027145386, -0.0005092621, -0.033569336, 0.08483887, -0.042907715, -0.05783081, -0.05380249, 0.059539795, 0.005657196, -0.011497498, 0.039489746, -0.05621338, 0.02748108, 0.0053215027, -0.022216797, -0.034088135, 0.016540527, 0.010635376, -0.060272217, 0.0124053955, -0.0022335052, 0.050994873, -0.01927185, -0.023147583, -0.019378662, 0.04083252, -0.012512207, -0.033996582, -0.041107178, -0.053894043, 0.018035889, 0.021728516, 0.008407593, -0.00749588, -0.008651733, -0.058532715, -0.007434845, 0.014167786, -0.01537323, -0.022140503, 0.043701172, 0.021636963, -0.028503418, 0.00038862228, 0.038146973, -0.036865234, 0.05126953, 0.01701355, -0.06225586, -0.018753052, 0.021408081, 0.031982422, 0.004058838, -0.011314392, -3.1590462e-06, -0.0038261414, 0.035827637, 0.019088745, -0.014854431, -0.029006958, -0.053833008, -0.0055236816, 0.0335083, 0.02607727, -0.0075798035, 0.027175903, 0.00033521652, -0.025146484, 0.011199951, 0.00027918816, -0.03250122, -0.028793335, -0.009208679, -0.008087158, 0.059143066, -0.0013217926, 0.019363403, -0.0023422241, 0.04397583, -0.027954102, 0.04586792, -0.016418457, -0.032165527, -0.008857727, -0.038604736, 0.021972656, -0.029144287, -0.021438599, -0.010002136, 0.0054893494, -0.050842285, 0.028686523, 0.045288086, -0.00970459, -0.0054397583, -0.0014686584, -0.006023407, 0.0463562, -0.012062073, -0.018951416, -0.007484436, 0.003036499, -0.039855957, -0.052947998, -0.017501831, 0.004085541, 0.004283905, -0.038330078, 0.058654785, -0.019744873, 0.0069274902, 0.0005631447, 0.019058228, -0.020599365, -0.024917603, -0.0059432983, 0.008148193, 0.018066406, 0.0030269623, -0.021224976, -0.036224365, 0.037994385, -0.050476074, -0.04257202, 0.0011110306, 0.042388916, -0.012496948, 0.010765076, -0.023284912, -0.036010742, 0.018249512, 0.005279541, -0.00034308434, 0.025909424, 0.028518677, 0.03994751, -0.0065994263, -0.015472412, -0.0020256042, -0.041259766, 0.011123657, 0.0357666, 0.0057907104, 0.001613617, 0.028945923, -0.014656067, 0.016448975, 0.007972717, 0.047790527, 0.029296875, 0.022659302, 0.008666992, 0.043182373, 0.07550049, 0.013847351, 0.04159546, 0.015357971, -0.009132385, -0.02456665, 0.00024104118, 0.0058403015, -0.015029907, -0.01914978, 0.023788452, 0.00029921532, 0.022766113, -0.0059509277, 0.0025577545, -0.0041122437, -0.029937744, -0.008102417, -0.002204895, -0.010292053, 0.023513794, -0.027069092, -0.0018053055, -0.018341064, -0.019119263, -0.010749817, -0.034576416, -0.054840088, 0.07269287, -0.0010519028, -0.004798889, 0.014801025, -0.01626587, 0.0033130646, -0.03942871, -0.009521484, 0.019836426, 0.02772522, 0.019989014, 0.052124023, -0.038879395, -0.04486084, -0.0635376, 0.019363403, -0.082336426, -0.040008545, -0.048950195, 0.037719727, 0.009559631, -0.025985718, -0.016143799, 0.0552063, -0.012336731, -0.011550903, -0.020507812, -0.024429321, -0.024642944, 0.079711914, 0.00044441223, -0.005844116, -0.0066375732, 0.027175903, -0.0011482239, 0.04663086, 0.018508911, -0.022445679, -0.030471802, -0.013092041, -0.02722168, 0.013046265, 0.01423645, -0.0004208088, 0.020370483, 0.017456055, -0.0368042, -0.017837524, -0.017807007, -0.04928589, 0.064086914, 0.01927185, -0.044067383, -0.055541992, -0.04083252, 0.012611389, 0.0050849915, 0.04107666, 0.049743652, 0.017852783, 0.008384705, 0.0309906, -0.029510498, 0.04699707, 0.026748657, -0.020965576, -0.010070801, -0.027786255, 0.0395813, -0.04119873, 0.004497528, 0.010543823, -0.02406311, -0.064208984, 0.00054979324, 0.014701843, -0.02684021, -0.01878357, -0.010681152, 0.01625061, -0.022094727, 0.008102417, 0.04586792, -0.04953003, 0.022583008, 0.032470703, 0.03704834, -0.0053138733, 0.011299133, -0.071777344, -0.008605957, -0.015342712, 0.023925781, -0.04748535, -0.06732178, 0.014419556, -0.016555786, 0.07556152, -0.024627686, -0.020248413, -0.042907715, 0.0362854, -0.00957489, 0.0015697479, 0.032958984, 0.0043411255, 0.013572693, 0.04586792, -0.0011558533, -0.030197144, 0.029556274, 0.022216797, 0.012672424, 0.012580872]}, "B086Z4BMB8": {"id": "B086Z4BMB8", "original": "Brand: DuroMax\nName: DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax\u2019s exclusive MX2 switch that harnesses the generator's full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet\n", "metadata": {"Name": "DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue", "Brand": "DuroMax", "Description": "", "Features": "All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax\u2019s exclusive MX2 switch that harnesses the generator's full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.003566742, -0.009750366, -0.029647827, -0.039916992, -0.006111145, -0.015823364, -0.010284424, 0.00080156326, -0.058258057, 0.002494812, -0.0014028549, 0.026901245, -0.01777649, -0.040008545, 0.03390503, -0.051635742, 0.002565384, 0.04949951, 0.025909424, -0.0011396408, 0.028656006, 0.021469116, -0.062072754, 0.095703125, 0.010154724, 0.020706177, 0.0390625, -0.026977539, 0.03277588, -0.014526367, 0.039489746, -0.024520874, 0.047332764, -0.019729614, -0.010810852, -0.017745972, -0.035949707, 0.0028057098, -0.039245605, 0.014976501, -0.03137207, 0.024230957, 0.037384033, -0.0152282715, -0.02166748, -0.044433594, 0.014305115, -0.012580872, -0.01876831, -0.006259918, -0.04421997, -0.0006799698, -0.024429321, 0.0011510849, 0.026489258, 0.020935059, -0.053527832, -0.004951477, 0.02168274, 0.025268555, 0.018341064, -0.03668213, 0.021987915, -0.019378662, -0.044921875, -0.035217285, 0.008911133, -0.00047683716, 0.05053711, -0.047790527, -0.022216797, 0.066833496, 0.010437012, -0.00091409683, -0.039093018, -0.01499176, 0.024093628, 0.0018987656, 0.023361206, -0.016555786, 0.020553589, -0.005645752, 0.027679443, 0.010620117, -0.015388489, -0.00070524216, -0.002046585, -0.012214661, 0.00522995, -0.026519775, -0.008728027, 0.0006518364, -0.010353088, 0.023803711, -0.03262329, -0.0062446594, 0.024276733, -0.036376953, 0.049926758, -0.0023784637, 0.047607422, -0.07849121, 0.038604736, 0.014526367, -0.007221222, -0.010925293, 0.004585266, -0.036956787, -0.0070648193, 0.013130188, -0.039398193, 0.018157959, 0.025543213, -0.02809143, -0.016677856, 0.010665894, -0.004878998, 0.030899048, 0.024215698, 0.014625549, 0.02281189, 0.033111572, 0.013977051, 0.0036945343, -0.004951477, 0.004348755, -0.0095825195, -0.05532837, 0.047973633, 0.022659302, -0.05795288, 0.0016469955, 0.026855469, 0.012435913, 0.016448975, -0.019104004, -0.032165527, 0.05340576, 0.013595581, -0.028274536, 0.019134521, -0.01449585, 0.021743774, 0.046813965, 0.00957489, -0.008522034, 0.025604248, 0.04598999, 0.0033340454, -0.03363037, 0.04168701, 0.011154175, -0.006164551, 0.03845215, 0.016174316, 0.009277344, -0.004863739, -0.000831604, 0.036499023, -0.0018253326, -0.0027275085, -0.025619507, 0.0073127747, -0.025558472, -0.04284668, 0.0096588135, -0.006816864, -0.012924194, 0.010643005, -0.0132369995, -0.013267517, 0.051513672, -0.0016021729, 0.0007042885, 0.028060913, -0.0158844, -0.031188965, 0.05441284, 0.025665283, -0.08947754, -0.06994629, -0.07043457, 0.033569336, 0.0013790131, -0.004989624, 0.008277893, -0.0082473755, -0.013572693, 0.018249512, -0.006980896, 0.017822266, 0.028701782, -0.005924225, -0.024032593, -0.0050315857, -0.0013122559, 0.020828247, 0.020690918, -0.0022735596, 0.014350891, -0.01335144, 0.03527832, 0.00409317, -0.002943039, -0.023544312, 0.0024700165, -0.005180359, 0.03668213, 0.005088806, 0.013961792, -0.0067214966, -0.011451721, 0.011940002, -0.06524658, -0.011199951, 0.032348633, -0.040863037, 0.05606079, 0.02949524, 0.02456665, 0.025634766, 0.0007677078, 0.047698975, -0.045166016, 0.039886475, 0.0065193176, -0.0287323, -0.003452301, 0.029251099, -0.004005432, -0.006816864, 0.05670166, 0.03375244, 0.021148682, -0.03564453, 0.048980713, 0.030853271, 0.046844482, -0.03353882, -0.010734558, 0.02015686, -0.024108887, -0.018615723, 0.0075302124, -0.014762878, 0.01537323, 0.026870728, 0.007217407, -0.017074585, 0.016921997, -0.031982422, -0.017578125, 0.03967285, 0.008613586, -0.03149414, 0.034179688, 0.0055732727, 0.030563354, -0.051757812, 0.024093628, -0.0032634735, 0.037231445, 0.00283432, 0.012397766, 0.0075302124, 0.008926392, 0.03656006, 0.03656006, -0.01335907, -0.0009021759, 0.018508911, 0.02810669, -0.010749817, -0.0005030632, 0.04559326, 0.015411377, -0.028549194, -0.007671356, 0.034118652, 0.017654419, -0.00032114983, -0.028182983, -0.025436401, -0.008415222, 0.052825928, 0.016143799, 0.017745972, 0.006340027, -0.026687622, -0.028717041, 0.013397217, -0.003967285, -0.035949707, -0.00774765, 0.013061523, -0.038970947, 0.011909485, -0.03640747, 0.03149414, -0.0602417, 0.033996582, 0.05545044, -0.07171631, 0.06921387, -0.018539429, 4.827976e-06, 0.008338928, -0.041992188, -0.037109375, -0.011932373, -0.04876709, 0.03074646, 0.03338623, -0.046203613, 0.047546387, 0.015113831, -0.020706177, 0.02607727, -0.005542755, 0.032958984, -0.049743652, 0.015411377, 0.014022827, 0.002691269, 0.03036499, 0.0013685226, -0.023925781, 0.017562866, -0.040283203, -0.006881714, -0.009483337, -0.024459839, -0.0055274963, 0.017471313, 0.006061554, -0.012237549, 0.0052375793, 0.039001465, 0.009498596, -0.0357666, 0.026306152, -0.022720337, -0.0009293556, 0.037475586, -0.026947021, -0.03414917, 0.07128906, -0.021972656, -0.020065308, 0.041229248, 0.0030403137, -0.008155823, 0.042999268, 0.02885437, 0.029205322, -0.070007324, -0.05529785, -0.015777588, -0.06100464, -0.059936523, -0.0074157715, -0.041778564, -0.06793213, -0.023803711, 0.054840088, -0.0015211105, 0.0023822784, -0.062561035, -0.015159607, 0.0032215118, 0.0085372925, 0.002811432, -0.045410156, -0.016174316, -0.029830933, 0.009963989, 0.024993896, -0.030914307, 0.07385254, 0.024017334, -0.0064697266, -0.0077056885, -0.026412964, -0.031829834, -0.030807495, 0.045715332, 0.023529053, 0.016082764, -0.0010261536, -0.031555176, 0.044189453, 0.066711426, -0.0109939575, -0.011619568, 0.03878784, 0.01574707, -0.040649414, -0.010574341, -0.06414795, -0.00894165, -0.06604004, 0.043670654, 0.0051116943, 0.0021095276, -0.028442383, -0.022491455, -0.042053223, -0.062438965, 0.007904053, 0.0057373047, -0.011878967, 0.00040245056, -0.021316528, -0.0066871643, 0.0006928444, -0.031051636, 0.012779236, -0.020050049, 0.01574707, 0.01940918, 0.0473938, -0.07067871, 0.039855957, 0.05670166, -0.031433105, 0.033813477, -0.02822876, 0.019424438, 0.003578186, 0.045196533, -0.011276245, 0.015380859, -0.0021953583, 0.031280518, 0.019744873, -0.002822876, -0.05407715, -0.1315918, -0.0016441345, -0.042236328, -0.05206299, 0.014968872, 0.021026611, 0.04046631, -0.008277893, -0.004386902, 0.0056114197, -0.053894043, 0.030807495, -0.037261963, 0.008148193, -0.019882202, 0.00032687187, -0.003944397, -0.01739502, 0.090270996, 0.04559326, 0.015045166, 0.016021729, 0.0024223328, -0.023483276, 0.0027065277, 0.005214691, -0.03970337, -0.01386261, -0.07861328, 0.029174805, -0.010421753, -0.036193848, 0.022720337, -0.03845215, 0.09698486, -0.0057907104, -0.033325195, 0.017745972, -0.056915283, 0.019744873, 0.025924683, -0.010955811, -0.049591064, -0.037994385, 0.013008118, -0.101135254, 0.021911621, 0.015701294, -0.0050315857, 0.022140503, 0.037506104, -0.007835388, 0.0592041, 0.013259888, 0.020553589, 0.020507812, 0.059936523, -0.019683838, 0.03274536, 0.025665283, -0.06994629, -0.053100586, -0.030639648, -0.06604004, -0.012840271, -0.009170532, 0.025253296, -0.06585693, 0.023773193, 0.025054932, -0.023971558, 0.01864624, -0.07409668, -0.015075684, -0.046447754, -0.036834717, 0.006668091, -0.02482605, 0.04147339, -0.028900146, 0.011878967, -0.008430481, -0.0032691956, -0.03970337, -0.016571045, -0.004333496, 0.036895752, -0.0053520203, -0.01689148, -0.0012331009, 0.0032367706, -0.032196045, -0.0030841827, 0.019760132, 0.052886963, 0.036376953, 0.0017852783, -0.00730896, -0.018218994, -0.016921997, -0.042907715, -0.03100586, -0.003326416, 0.03353882, 0.036621094, -0.04562378, -0.0032634735, 0.0061035156, -0.010848999, 0.027496338, 0.06286621, -0.0748291, 0.023208618, -0.0031394958, 0.009101868, -0.054870605, -0.0068473816, -0.00440979, 0.023910522, -0.02468872, 0.0033836365, -0.039031982, -0.0011014938, 0.021697998, -0.026138306, -0.01448822, 0.0077819824, 0.0657959, -0.02130127, 0.046142578, -0.03704834, 0.017333984, -0.035705566, -0.004383087, -0.010910034, 0.0020523071, -0.055267334, -0.001241684, -0.019714355, -0.04321289, 0.008590698, -0.02684021, 0.005771637, 0.0003991127, 0.015586853, -0.024139404, -0.006515503, -0.03213501, -0.011749268, 0.058044434, 0.0064201355, -0.0068473816, -0.01826477, 0.03878784, -0.03515625, 0.047576904, -0.017211914, 5.2571297e-05, -0.03265381, 0.003692627, -0.09814453, -0.06561279, -0.019866943, -0.0121536255, 0.010063171, 0.017196655, -0.016784668, 0.005924225, -0.011787415, -0.023651123, 0.0014352798, -0.02835083, -0.000770092, 0.003271103, 0.049102783, -0.017837524, -0.031463623, -0.027160645, 0.021636963, -0.03805542, 0.021438599, 0.06915283, 0.02999878, 0.033355713, 0.0057754517, -0.00054073334, -0.025527954, -0.025024414, 0.0005044937, -0.005241394, 0.008880615, -0.030731201, 0.0071907043, 0.0049209595, -0.0009202957, -0.036865234, -0.058380127, -0.04232788, 0.026626587, 0.00081443787, -0.0132751465, 0.020385742, 0.0034255981, -0.037475586, 0.008598328, -0.049957275, -0.0019302368, 0.047943115, -0.013267517, -0.012367249, -0.00484848, 0.004837036, 0.010902405, 0.009284973, 0.012016296, -0.064697266, 0.04284668, 0.012077332, 0.03881836, 0.007522583, 0.008346558, -0.01864624, -0.04864502, -0.055267334, -0.04562378, 0.013580322, -0.054870605, 0.021331787, 0.017852783, 0.014793396, 0.017791748, 0.014183044, -0.021224976, -0.013336182, 0.025314331, 0.05227661, 0.002872467, 0.01600647, 0.049804688, 0.034423828, 0.006565094, 0.039642334, -0.014556885, 0.03326416, 0.058380127, 0.040802002, -0.016815186, -0.023834229, 0.07458496, -0.032287598, -0.050628662, 0.001909256, 0.0064086914, -0.0056114197, 0.0075912476, -0.0026397705, -0.018188477, -0.015991211, 0.0031013489, -0.0013189316, 0.0056037903, -0.035949707, -0.022583008, 0.005695343, 0.029266357, -0.005718231, 0.021530151, -0.021774292, 0.04058838, 0.02796936, -0.008926392, -0.006717682, 0.022521973, 0.008110046, -0.007205963, -0.041290283, -0.002418518, -0.0368042, -0.020721436, -0.01335907, -0.017120361, -0.0055351257, 0.05239868, 0.021987915, 0.0028266907, 0.020248413, -0.023422241, -0.0052986145, -0.00046634674, 0.011878967, 0.03366089, -0.01234436, -0.042388916, 0.0105896, -0.040130615, -0.00060892105, -0.008804321, -0.034423828, 0.008705139, 0.050933838, -0.03829956, -0.027374268, 0.0016393661, 0.009300232, 0.011360168, 0.0023384094, -0.02015686, -0.05697632, 0.008110046, 0.010597229, -0.043701172, -0.041381836, -0.03503418, 0.010757446, -0.006088257, -0.041931152, -0.055877686, 0.012313843, -0.0033626556, 0.042938232, -0.054626465, -0.07128906, -0.0044288635, -0.043029785, -0.005466461, 0.007068634, 0.01939392, -0.010910034, 0.02394104, 0.00982666, 0.0284729, 0.013656616, 0.017990112, 0.030731201, -0.019683838, 0.025878906, 0.018096924, 0.0029354095, 0.041748047, 0.0013561249, -0.006412506, -0.014785767, -0.0043640137, -0.008575439, 0.033477783, 0.0074920654, 0.01020813, -0.03378296, 0.009429932, -0.02444458, 0.055511475, -0.050445557, -0.012557983, 0.0008530617, 0.038482666, 0.04043579, -0.0041503906, 0.020858765, -0.023880005, -0.029647827, 0.02017212, 0.022583008, -0.026885986, 0.0129470825, 0.003414154, -0.031829834, 0.0049705505, -0.033081055, -0.008346558, -0.004890442, 0.04837036, -0.016220093, -0.018737793, 0.016296387, -0.05227661, 0.040008545, 0.011268616, 0.026367188, 0.005268097, -0.019012451, -0.031829834, 0.018615723, 0.011604309, 0.031585693, 0.043518066, -0.0154953, 0.020736694, -0.04196167, -0.047698975, 0.048095703, 0.0037250519, -0.028015137, 0.010917664, -0.00073575974, -0.051879883, -0.022705078, 0.0082473755, -0.009162903, 0.0009441376, 0.016998291, 0.04611206, -0.00541687, 0.029342651, -0.055145264, -0.03265381, -0.033721924, -0.026794434, -0.024780273, -0.011451721, -0.0132369995, 0.022521973, 0.030960083, 0.06109619, 0.026123047, -0.018234253, 0.019317627, 0.03930664, -0.0059394836, -0.0033721924, 0.023406982, -0.021514893, -0.09020996, -0.04812622, 0.032684326, -0.016540527, 0.057128906, -0.027511597, -0.030532837, 0.040008545, -0.03451538, 0.023849487, 0.029876709, 0.061798096, 0.017440796, 0.0047836304, -0.030517578, -0.013587952, -0.019485474, 0.016693115, -0.024902344, 0.037139893, 0.0119018555, -0.045928955, -0.023071289, -0.02607727, 0.018341064, -0.040924072, 0.027420044, -0.036987305, 0.034179688, 0.05215454, -0.012664795, -0.0047035217, -0.013923645, 0.0048217773, 0.00012397766, 0.021438599, -0.026794434, 0.052886963, -0.001367569, 0.020233154, -0.06842041, 0.059906006, -0.025909424, -0.08880615, -0.014671326, -0.033935547, -0.058441162, -0.017196655, -0.05657959, -0.010009766, -0.04208374, -0.0657959, 0.03692627, -0.016220093, -0.02079773, -0.012123108, -0.0016584396, 0.013961792, -0.032928467, 0.0037612915, 0.0024108887, 0.033081055, -0.027832031, -0.010063171, -0.021438599, -0.041015625, -0.015960693, 0.042633057, -0.08898926, -0.041625977, 0.024017334, -0.014839172, 0.01373291, 0.024215698, 0.059448242, 0.07318115, 0.026351929, 0.008354187, 0.05999756, -0.031921387, -0.035308838, 0.014732361, 0.029052734, -0.036895752, 0.024932861, 0.028747559, -0.032287598, 0.015792847, 0.015472412, -0.026535034, 0.025970459, 0.021728516, 0.037902832, -0.057250977, -0.029342651, -0.00083065033, 0.02784729, -0.0031375885, -0.035583496, 0.01272583, 0.026397705, 0.040863037, 0.015975952, 0.0010194778, 0.05166626, -0.011741638, -0.032592773, -0.05493164, -0.040985107, 0.010498047, -0.005695343, -0.079589844, 0.008773804, -0.01965332, -0.033599854, 0.016525269, 0.045898438, -0.020050049, -0.02470398, 0.014694214, 0.004058838, -0.035095215, 0.013534546, -0.009506226, -0.026260376, -0.03677368, 0.01889038, -0.03982544, 0.0018444061, -0.008468628, -0.06335449, 0.020980835, -0.028625488, -0.047698975, 0.0050201416, 0.055236816, -0.030212402, 0.0039978027, 0.033081055, -0.018478394, -0.028244019, 0.0071372986, 0.0010700226, 0.0031967163, -0.015571594, 0.01889038, 0.01701355, -0.009002686, -0.015853882, 0.03540039, -0.050842285, -0.04260254, -0.048675537, 0.029632568, 0.018676758, -0.0021190643, 0.077941895, -0.0037384033, 0.016159058, -0.030853271, -0.044158936, -0.0024261475, -0.039916992, -0.024978638, -0.038970947, -0.0044670105]}, "B07RNX3G8J": {"id": "B07RNX3G8J", "original": "Brand: Renook\nName: RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch\nDescription:

      Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

      Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

      ATTENTION:


      1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

      2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

      3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


      Healthier

      Don't worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

      make food is very healthy and delicious.

      More Usages

      Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

      breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It's really amazing!

      Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart\uff01

      \nFeatures: 1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them.\n2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks.\n3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new.\n4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.\n", "metadata": {"Name": "RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch", "Brand": "Renook", "Description": "

      Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

      Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

      ATTENTION:


      1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

      2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

      3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


      Healthier

      Don't worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

      make food is very healthy and delicious.

      More Usages

      Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

      breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It's really amazing!

      Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart\uff01

      ", "Features": "1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them.\n2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks.\n3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new.\n4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.003414154, 0.04006958, -0.017028809, -0.013122559, 0.013725281, -4.2021275e-05, -0.01612854, -0.012680054, -0.020019531, 0.01638794, 0.019256592, 0.050476074, -0.011940002, -0.04284668, 0.02458191, 0.017532349, 0.026245117, -0.035125732, 0.003326416, -0.019897461, -0.013931274, -0.004432678, 0.03149414, 0.006706238, 0.030715942, 0.008132935, -0.033599854, -0.01499939, 0.032806396, -0.0030593872, 0.010734558, -0.0024814606, 0.042877197, 0.01335144, -0.056762695, -0.035461426, 0.0019931793, -0.012069702, -0.029815674, 0.017288208, 0.01966858, -0.015838623, -0.029373169, -0.050445557, -0.040252686, -0.020599365, 0.017288208, 0.0078125, -0.017288208, 0.045043945, 0.013427734, 0.036102295, 0.018814087, 0.01991272, 0.016220093, 0.009216309, -0.020248413, 0.034179688, 0.013435364, 0.015670776, -0.008575439, 0.016571045, 0.012168884, 0.005584717, -0.024353027, 0.0056648254, 0.045715332, -0.021377563, -0.061523438, -0.03353882, 0.05319214, -0.014785767, 0.032043457, -0.008010864, -0.034973145, -0.0552063, 0.055786133, -0.02128601, 0.003780365, -0.010810852, -0.040161133, -0.0052261353, 0.0473938, -0.060546875, 0.013931274, -0.024612427, -0.026260376, 0.006916046, -0.008178711, -0.032684326, 0.0068511963, 0.007041931, -0.068481445, 0.04446411, 0.011734009, -0.040008545, -0.040924072, -0.061187744, 0.026321411, 0.04840088, 0.026351929, -0.041107178, 0.07086182, -0.004184723, -0.017089844, 0.05142212, -0.010803223, -0.0070724487, -0.014671326, 0.01687622, -0.0031909943, -0.04034424, 0.007133484, -0.034301758, -0.02571106, 0.022247314, 0.014694214, -0.029083252, 0.0069847107, -0.05340576, -0.02798462, -0.032836914, 0.018203735, 0.038970947, 0.04458618, 0.050354004, -0.027069092, 0.011734009, -0.038848877, 0.050354004, -0.011016846, -0.008934021, 0.01939392, 0.031311035, -0.014816284, -0.030380249, -0.0060539246, 0.033172607, 0.016342163, 0.014183044, -0.030517578, -0.00059366226, 0.07543945, -0.024841309, -0.012802124, 0.041137695, 0.057739258, 0.010635376, -0.052612305, -0.097473145, 0.03338623, -0.00028157234, 0.03363037, 0.014328003, -0.034118652, 0.035064697, 0.0077590942, 0.007751465, -0.057159424, -0.010353088, 0.011802673, -0.00856781, -0.001004219, -0.031219482, -0.0289917, 0.0004272461, -0.03845215, 0.0018873215, 0.01878357, 0.022140503, 0.030654907, -0.0058174133, -0.022415161, -0.019195557, -0.017654419, -0.029632568, 0.019821167, 0.07458496, 0.050201416, -0.05227661, -0.051208496, -0.058807373, 0.11682129, -0.039978027, 0.011245728, -0.04345703, 0.02180481, 0.012199402, 0.00048398972, 0.028717041, -0.016662598, -0.025253296, -0.03845215, 0.00022757053, 0.008865356, 0.042510986, -0.07922363, 0.026977539, -0.019073486, -0.021072388, 0.0006418228, 0.014381409, -0.0132751465, 0.024108887, -0.00013256073, -0.009895325, -0.0020771027, 0.011512756, 0.008460999, 0.019561768, 0.021026611, -0.010620117, -0.024505615, -0.009735107, -0.014328003, 0.0072364807, 0.03475952, -0.014930725, 0.016235352, -0.042755127, 0.07086182, 0.044921875, 0.025802612, 0.08673096, 0.04083252, -0.010353088, -0.027694702, -0.018218994, -0.012054443, 0.012184143, -0.07696533, 0.061767578, 0.057769775, 0.022521973, -0.03152466, 0.057373047, 0.05218506, 0.08453369, -0.057281494, -0.013557434, 0.004501343, -0.036621094, -0.03829956, 0.016983032, 0.021514893, -0.03060913, -0.023071289, 0.038024902, -0.023132324, -0.043182373, 0.018600464, -0.016204834, 0.06213379, 0.0018644333, -0.0013895035, 0.04257202, -0.060424805, -0.010650635, -0.012062073, 0.004547119, -0.0038394928, 0.012481689, 0.033203125, -0.012214661, 0.057556152, -0.035980225, 0.054351807, 0.026016235, -0.011779785, -0.027496338, 0.0149002075, 0.0020046234, -0.01499176, 0.004005432, 0.014984131, 0.0064964294, -0.021072388, 0.011177063, 0.0006017685, -0.007648468, 0.030319214, 0.029830933, -0.009460449, -0.009239197, 0.044311523, -0.007610321, -0.010971069, 0.010856628, -0.028182983, -0.018798828, 0.03274536, -0.004623413, -0.0209198, -0.012466431, -0.010169983, -0.029190063, -0.005508423, 0.018630981, 0.010070801, -0.0107040405, -0.0063591003, 0.050048828, -0.036071777, 0.03427124, -0.0011005402, -0.023345947, 0.015075684, -0.01939392, -0.014564514, -0.03527832, 0.028244019, 0.058624268, 0.050842285, 0.0017700195, 0.07458496, 0.023513794, 0.008255005, 0.06781006, 0.03491211, 0.012390137, -0.017974854, 0.029037476, -0.020095825, -0.009414673, 0.012458801, 0.0064926147, -0.026260376, -0.012512207, 0.0048599243, 0.05090332, 0.022033691, 0.0513916, 0.025741577, -0.0058784485, -0.012260437, -0.02809143, -0.014411926, 0.06085205, 0.012535095, 0.010414124, -0.003250122, 0.008979797, 0.011146545, -0.044403076, -0.08117676, 0.018722534, 0.023849487, 0.015853882, 0.015075684, -0.03756714, 0.03643799, -0.028182983, 0.011909485, 0.009422302, -0.0046539307, -0.00983429, -0.009613037, -0.009216309, -0.027313232, -0.06298828, -0.017105103, 0.004524231, -0.056671143, -0.012756348, 0.0748291, -0.029190063, -0.024520874, -0.026626587, -0.0034999847, 0.0034751892, 0.045196533, 0.0079193115, -0.06756592, -0.03817749, -0.036834717, -0.020217896, 0.01335907, -0.038391113, -0.00045990944, -0.0038795471, -0.011650085, -0.002231598, 0.00087594986, -0.013267517, 0.019073486, 0.015258789, 0.04748535, 0.07702637, -0.0149383545, -0.037841797, -0.02142334, 0.04611206, -0.049316406, -0.030776978, -0.02407837, 0.021591187, 0.029647827, -0.037963867, 0.022476196, -0.038330078, -0.08087158, 0.0032310486, 0.0019054413, -0.033081055, -0.027786255, -0.041137695, -0.056610107, -0.042755127, 0.022354126, 0.09289551, 0.003665924, 0.0028152466, 0.0129470825, 0.02168274, -0.01373291, 0.032714844, 0.009223938, -0.011505127, -0.0030403137, 0.015731812, 0.03048706, -0.06213379, 0.031463623, 0.035369873, -0.06488037, -0.020263672, -0.0023593903, 0.06439209, -0.07220459, 0.018676758, -0.019714355, -0.03604126, 0.0046043396, 0.040740967, -0.017868042, 0.05117798, -0.0015306473, -0.03137207, 0.056640625, -0.040039062, -0.041503906, -0.038208008, -0.021392822, 0.012649536, -0.049194336, 0.0032043457, -0.010513306, -0.030303955, 0.0052948, -0.040802002, -0.027160645, 0.00623703, 0.03768921, 0.01852417, 0.0059394836, 0.061279297, 0.04989624, 0.04232788, 0.011497498, -0.019363403, -0.045776367, -0.04776001, 0.07928467, -0.005432129, 0.040039062, -0.048950195, 0.03463745, -0.021194458, -0.025970459, 0.030700684, -0.010864258, 0.019485474, 0.041107178, -0.018692017, 0.0038452148, 0.0020618439, 0.036987305, 0.009666443, -0.033355713, -0.056396484, -0.056274414, 0.0088272095, -0.04244995, 0.06695557, 0.05505371, -0.036376953, 0.08294678, 0.040283203, -0.026443481, 0.039794922, 0.01171875, 0.02482605, -0.0071372986, 0.0501709, -0.022994995, 0.007534027, 0.01083374, -0.014854431, 0.00919342, -0.007270813, -0.014846802, 0.0041046143, 0.003232956, -0.019119263, 0.0027828217, -0.0019245148, 0.004306793, 0.02558899, 0.0048942566, -0.01600647, 0.023849487, -0.015853882, 0.029953003, -0.004047394, 0.0002746582, -0.024734497, 0.06781006, -0.007095337, 0.010101318, 0.0030956268, 0.003080368, -0.00024557114, 0.0423584, 0.02960205, -0.020767212, 0.0134887695, 0.00233078, 0.009552002, -0.053375244, 0.0011005402, 0.050476074, 0.041259766, 0.021774292, -0.03857422, -0.018829346, -0.0070266724, -0.028549194, 0.021362305, -0.018447876, -0.054229736, -0.029632568, 0.00573349, 0.021621704, -0.00945282, 0.048034668, -0.039215088, 0.03967285, -0.0078125, -0.06378174, -0.010925293, -0.028305054, -0.01651001, -0.03439331, 0.028640747, -0.023452759, -0.03475952, -0.075805664, 0.02243042, -0.0039711, 0.0004916191, -0.019577026, 0.015144348, -0.039978027, 0.023666382, -0.0060157776, 0.013015747, 0.022872925, 0.007499695, 0.042419434, -0.029220581, -0.03765869, -0.03314209, 0.034118652, 0.0052223206, 0.0010509491, -0.0061302185, -0.0098724365, 0.027145386, -0.0044670105, 0.01802063, -0.008911133, -0.005970001, -0.033599854, -0.013023376, -0.0446167, -0.01927185, 0.027359009, -0.047088623, -0.03277588, -0.0259552, 0.079711914, -0.021850586, -0.0012722015, -0.05682373, -0.007648468, 0.02859497, -0.035949707, -0.004749298, -0.018127441, -0.0017461777, 0.024490356, 0.0022773743, -0.0004377365, -0.02319336, -0.0032176971, -0.011039734, 0.007549286, -0.007949829, -0.018249512, -0.05215454, 0.0317688, -0.02456665, 0.02116394, 0.028182983, -0.011100769, -0.008155823, 0.033172607, 0.029312134, 0.06665039, -0.02003479, 0.0065689087, 0.029754639, -0.023788452, -0.04385376, 0.003501892, -0.08465576, -0.0137786865, -0.017211914, -0.0069122314, -0.0068893433, -0.008056641, 0.012779236, 0.019088745, -0.007335663, 0.036743164, -0.0030288696, 0.011268616, 0.00082731247, 0.0069351196, 0.053894043, 0.01525116, 0.033172607, 0.03427124, -0.00945282, -0.03302002, -0.022628784, -0.020309448, -0.028076172, -0.0154800415, -0.041503906, 0.034057617, 3.9219856e-05, -0.027511597, -0.00356102, 0.03189087, -0.017150879, -0.022888184, 0.051483154, -0.0070724487, 0.012123108, -0.015106201, 0.0541687, 0.0051879883, 0.010856628, -0.024414062, -0.023620605, 0.006248474, 0.015182495, -0.057281494, 0.054260254, 0.0007133484, -0.04031372, -0.0060272217, 0.0033836365, 0.030380249, -0.029953003, 0.061645508, 0.005252838, -0.007587433, -0.056640625, 0.01687622, -0.0034942627, 0.009895325, -0.026260376, -0.007118225, 0.022109985, 0.007091522, 0.015487671, 0.015930176, 0.03161621, 0.010520935, 0.020370483, 0.010658264, -0.015777588, -0.042633057, 0.0048675537, 0.0075569153, -0.051239014, -0.021209717, -0.064331055, -0.008155823, 0.014663696, -0.01626587, -0.019348145, 0.013832092, -0.008560181, -0.045410156, -0.018569946, 0.002450943, -0.0004067421, -0.008964539, 0.03677368, -0.0056381226, 0.0035572052, -0.0158844, -0.008163452, -0.04260254, -0.027313232, -0.043884277, 0.039093018, -0.029464722, -0.020431519, -0.0034046173, -0.044952393, -0.00043439865, -0.021194458, -0.02734375, -0.014694214, 0.003862381, 0.00021255016, -0.023101807, 0.004825592, 0.010658264, -0.04373169, 0.0069007874, -0.049224854, 0.03387451, 0.021575928, -0.01889038, 0.03591919, 0.007827759, -0.002445221, 0.011123657, -0.023880005, -0.051483154, 0.03604126, 0.01777649, -0.028808594, -0.0054473877, -0.013412476, 9.953976e-06, 0.003768921, -0.047302246, -0.026916504, 0.029800415, -0.021621704, -0.015136719, -0.0053977966, -0.042663574, 0.012145996, 0.007045746, 0.020370483, 0.0001244545, -0.005466461, -0.012458801, 0.03274536, -0.06976318, -0.055541992, 0.0574646, 0.042907715, 0.001906395, -0.04837036, 0.017486572, 0.072143555, -0.009750366, 0.09289551, -0.032806396, -0.01965332, 0.009437561, 0.03665161, 0.036468506, 0.016983032, 0.0234375, -0.015197754, -0.0063552856, 0.02041626, 0.03338623, 0.010955811, -0.059265137, -0.05621338, 0.08331299, 0.051757812, 0.028030396, 0.03086853, 0.036132812, 0.0115737915, 0.009559631, 0.0017204285, 0.07006836, -0.012992859, -0.03503418, -0.02619934, 0.014831543, 0.04058838, 0.019729614, 0.010177612, 0.033325195, 0.030151367, -0.035186768, 0.051696777, -0.009544373, 0.0491333, 0.041046143, -0.0071487427, -0.04336548, 0.007041931, -0.026565552, -0.01184845, 0.0005674362, -0.002729416, 0.013534546, 0.03302002, 0.0014314651, 0.023910522, -0.01197052, 0.03967285, 0.021743774, -0.038269043, 0.007156372, 0.00712204, 0.012298584, 0.016860962, -0.035003662, -0.0065078735, 0.0024662018, 0.011459351, -0.0021762848, 0.062042236, -0.012504578, 0.0056762695, -0.027404785, -0.0044441223, -0.033172607, -0.010261536, -0.0041236877, 0.036712646, 0.012207031, -0.011024475, -0.0049324036, 0.022155762, 0.029296875, -0.062469482, 0.031707764, -0.008796692, -0.008178711, -0.041290283, 0.015396118, -0.03994751, -0.057861328, 0.007259369, 0.046813965, -0.038879395, 0.019042969, -0.0044670105, 0.020614624, 0.005584717, -0.0005531311, 0.0027256012, 0.007827759, -0.011917114, 0.02835083, 0.011955261, 0.00667572, 0.01058197, -0.013671875, 0.03164673, 0.011779785, 0.020568848, 0.025772095, 0.06933594, 0.030136108, 0.033966064, 0.051330566, -0.011169434, 0.012672424, 0.04055786, -0.0079574585, -0.021972656, 0.03289795, -0.0062713623, -0.03717041, -0.0027065277, 0.016098022, -0.027740479, 0.011558533, -0.018554688, 0.011306763, -0.0056266785, -0.026733398, -0.002336502, 0.019989014, -0.027862549, 0.023452759, -0.031463623, 0.032806396, -0.020141602, -0.0390625, -0.04257202, -0.034301758, -0.03640747, 0.05078125, 0.0009737015, -0.02859497, -0.021072388, 0.0038471222, 0.0368042, -0.045013428, -0.012863159, 0.0011587143, 0.036499023, 0.01058197, 0.07788086, -0.036254883, -0.060333252, -0.057617188, 0.019241333, -0.070495605, 0.010749817, -0.0115737915, 0.027038574, 0.046142578, -0.002374649, -0.0064048767, 0.035888672, 0.007133484, -0.019134521, -0.052947998, -0.06689453, -0.017425537, 0.009742737, -0.028640747, -0.03869629, -0.04925537, 0.07080078, 0.005393982, 0.010787964, 0.0357666, -0.025634766, -0.04119873, -0.0129470825, -0.024642944, -0.0019607544, -0.017333984, 0.011711121, -0.00831604, -7.4863434e-05, -0.02230835, 0.04296875, 0.0043640137, 0.004283905, 0.02078247, 0.043762207, 0.0035877228, -0.01134491, -0.04510498, 0.020553589, -0.020507812, 0.00050497055, 0.026107788, -0.027053833, -0.01399231, 0.020843506, -0.03062439, 0.037475586, 0.05279541, -0.013084412, -0.012184143, -0.028503418, -0.007911682, -0.043060303, 0.0143966675, -0.0049819946, 0.0057868958, -0.018844604, -0.020263672, 0.066589355, -0.044769287, 0.010673523, -0.028503418, 0.020553589, 0.037872314, -0.030822754, -0.004108429, -0.064575195, -0.004272461, 0.028549194, -0.01423645, -0.011421204, -0.019699097, -0.039123535, -0.03540039, -0.0013170242, 0.008132935, -0.0115737915, -0.014801025, 0.019165039, 0.016540527, 0.039916992, -0.035736084, -0.026611328, -0.037200928, 0.011833191, -0.0007266998, 0.011528015, 0.062072754, -0.03894043, 0.017913818, -0.023895264, -0.0027675629, -0.026519775, 0.021820068, 0.05529785, -0.011940002, 0.036102295]}, "B000NV6HOE": {"id": "B000NV6HOE", "original": "Brand: Traeger\nName: Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)\nDescription: \nFeatures: MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger\u2019s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts.\nNOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn\u2019t just happen, it\u2019s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills.\nTRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood's unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content\u2014the sweet spot\u2014to maintain a perfect burn-to-smoke ratio\nPAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood\nFEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag\n", "metadata": {"Name": "Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)", "Brand": "Traeger", "Description": "", "Features": "MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger\u2019s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts.\nNOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn\u2019t just happen, it\u2019s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills.\nTRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood's unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content\u2014the sweet spot\u2014to maintain a perfect burn-to-smoke ratio\nPAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood\nFEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.00069236755, -0.011474609, -0.0284729, -0.026794434, -0.023376465, -0.003332138, -0.007156372, 0.011405945, -0.009780884, -0.0017442703, 0.0066070557, 0.024810791, -0.04800415, -0.03125, 0.0053710938, -0.023666382, 0.010002136, -0.025131226, -0.043121338, -0.020874023, -0.006198883, -0.025634766, -0.028503418, 0.07421875, 0.04989624, -0.004837036, 0.017669678, -0.012565613, 0.062927246, 0.025527954, 0.0368042, -0.054107666, 0.05947876, -0.012542725, -0.048858643, 0.0048675537, -0.014503479, -0.024871826, -0.01890564, 0.010932922, 0.005859375, 0.0059547424, -0.046173096, 0.013656616, -0.06604004, -0.015792847, -0.0082092285, 0.045776367, 0.013328552, -0.012054443, 0.020507812, -0.024795532, 0.021392822, 0.029022217, -0.037719727, -0.018829346, -0.007835388, 0.015716553, 0.011360168, -0.00819397, 0.0012741089, 0.02998352, 0.0132369995, 0.011878967, -0.034698486, 0.00044465065, 0.022506714, -0.013038635, -0.01335144, -0.039367676, 0.03866577, 0.009849548, 0.032165527, -0.04626465, -0.039886475, -0.009162903, 0.010475159, -0.021133423, 0.025634766, -0.043823242, -0.012893677, -0.009124756, 0.035095215, -0.054138184, 0.0045318604, -0.03591919, -0.012306213, 0.0115356445, 0.014907837, -0.059417725, 0.0076675415, 0.031555176, -0.029510498, 0.0056991577, -0.027236938, -0.030059814, -0.012535095, -0.04660034, 0.045654297, 0.04510498, -0.019058228, -0.024673462, 0.03048706, -0.0079193115, -0.044647217, 0.046203613, 0.009750366, 0.0061302185, -0.015731812, 0.013504028, -0.007671356, -0.0657959, -0.0050964355, -0.024398804, -0.023834229, 0.015808105, -0.013954163, 0.0032520294, 0.017990112, -0.0025463104, 0.011894226, 0.015151978, 0.029571533, 0.027359009, 0.014846802, 0.03540039, -0.0034809113, -0.041748047, -0.024429321, 0.051513672, -0.049194336, -0.001203537, 0.05331421, -0.0009059906, -0.021118164, -0.039367676, 0.03945923, 0.030578613, 0.03878784, 0.0088272095, -0.051086426, -0.0056648254, 0.060333252, -0.03503418, -0.01991272, 0.015716553, 0.02027893, 0.011680603, 0.0030269623, -0.04360962, -0.009094238, 0.009170532, 0.056121826, -0.009971619, -0.06317139, -0.051574707, -0.01083374, -0.038116455, 0.0034065247, -0.07086182, -0.028686523, -0.013870239, -0.013206482, -0.006340027, -0.012756348, 0.015838623, 0.05050659, 0.0112838745, 0.023834229, 0.029769897, 0.002105713, -0.020477295, 0.003993988, 0.018966675, 0.013587952, 0.020126343, -0.022918701, 0.04385376, 0.08355713, -0.1262207, -0.07495117, -0.034606934, 0.14538574, -0.058624268, -0.011772156, -0.0074653625, 0.008529663, 0.026046753, 0.0017118454, 0.009468079, 0.040039062, 0.0032234192, -0.029205322, -0.031082153, -0.004535675, 0.0546875, -0.041809082, 0.03616333, -0.009506226, 0.016540527, 0.01701355, 0.013946533, 0.0093688965, -0.0047187805, -0.00073337555, 0.008903503, -0.008773804, 0.020080566, 0.024963379, 0.026626587, -0.0065345764, 0.014251709, 0.012428284, -0.076049805, -0.02079773, 0.027404785, -0.0056610107, -0.024963379, -0.01713562, -0.016662598, -0.023910522, 0.007724762, -0.037109375, 0.04058838, 0.030059814, -0.001739502, -0.013656616, 0.0014476776, 0.019332886, 0.012207031, -0.023956299, 0.03149414, 0.029953003, 0.029876709, 0.001291275, 0.04397583, 0.08123779, 0.036132812, -0.0039749146, -0.02619934, -0.00029468536, -0.0073547363, -0.028305054, -0.0044021606, 0.03414917, 0.033203125, 0.02029419, -0.009353638, -0.025848389, 0.009346008, -0.010276794, 0.041992188, 0.025314331, 0.019989014, -0.011909485, 0.033172607, -0.0064468384, -0.0023097992, -0.04473877, 0.04675293, -0.009857178, 0.092285156, 0.04446411, 0.022247314, 0.058563232, 0.020950317, 0.03866577, 0.020980835, -0.052764893, 0.04837036, 0.028549194, -0.011177063, -0.002527237, 0.021362305, 0.03564453, -0.038757324, -0.042633057, 0.0049591064, 0.01828003, 0.00071907043, -0.0030994415, -0.006187439, 0.009559631, 0.0076446533, -0.006542206, -0.048339844, 0.05596924, 0.04626465, -0.06414795, -0.077941895, -0.02204895, -0.0037994385, -0.02748108, -0.041107178, 0.06707764, -0.04534912, 0.044311523, 0.06173706, -0.0095825195, -0.007221222, -0.0287323, 0.004245758, -0.054595947, 0.0020980835, -0.02432251, 5.7041645e-05, -0.032409668, -0.0021820068, -0.022399902, -0.06591797, 0.0008125305, 0.020309448, 0.01675415, 0.02709961, 0.0132751465, -0.0072250366, -0.0049438477, 0.047973633, 0.025970459, 0.018005371, -0.04006958, 0.032196045, -0.058166504, 0.016281128, 0.0048217773, 0.030044556, -0.022521973, -0.013046265, -0.024871826, 0.014450073, 0.04196167, 0.017730713, 0.01965332, -0.0079956055, -0.0026187897, -0.013916016, 0.001876831, -0.013031006, -0.010765076, -0.020584106, 0.002828598, 0.0110321045, -0.019210815, -0.038146973, -0.01777649, -0.025390625, 0.04147339, -0.019226074, 0.0043678284, 0.019836426, 0.01209259, 0.005420685, 0.008224487, -0.02229309, 0.017654419, -0.08685303, -0.036865234, -0.008285522, -0.03753662, -0.05633545, -0.033721924, 0.0023975372, -0.061340332, -0.014770508, 0.06866455, -0.027267456, -0.022842407, -0.014305115, -0.003200531, 0.006248474, 0.06719971, -0.020935059, 0.009132385, -0.022872925, -0.041748047, -0.05307007, 0.0317688, -0.047058105, 0.0029754639, 0.013748169, -0.041625977, 0.006252289, -0.034210205, 0.0049362183, 0.028213501, 0.016952515, 0.029266357, 0.048675537, 0.0034770966, -0.014457703, -0.009674072, 0.017654419, -0.020370483, -0.03982544, -0.022964478, -0.005657196, 0.007698059, -0.025299072, 0.009361267, -0.02696228, -0.019836426, -0.02418518, -0.018692017, -0.028305054, 0.028442383, -0.08319092, -0.0041885376, -0.02748108, 0.024810791, 0.005580902, 0.021148682, 0.014579773, 0.041992188, -0.01776123, -0.0051841736, -0.011154175, 0.024032593, 0.0018692017, -0.019302368, -0.016357422, 0.033843994, -0.032806396, 0.025787354, 0.018630981, -0.039978027, -0.022903442, -0.015586853, 0.03842163, -0.029373169, 0.013458252, -0.033294678, -0.014282227, -0.012268066, -0.0054855347, 0.026443481, 0.028686523, -0.044677734, -0.022277832, -0.026611328, -0.006034851, -0.008399963, -0.019210815, -0.08013916, 0.0010681152, -0.013946533, -0.04876709, -0.033813477, -0.031051636, -0.0008735657, -0.01222229, -0.0054092407, -0.00015830994, 0.05987549, 0.02557373, -0.0026378632, 0.08642578, -0.02519226, 0.033294678, 0.03137207, 0.0066833496, -0.0020332336, -0.042663574, 0.048095703, 0.004760742, 0.016616821, -0.06604004, 0.09814453, -0.00756073, -0.0002465248, 0.034484863, -0.008094788, -0.012794495, 0.01663208, 0.01889038, -0.0010557175, 0.0035552979, 0.01675415, 0.05847168, -0.08734131, -0.03451538, -0.038848877, 0.011428833, -0.042419434, 0.06732178, 0.08215332, -0.030731201, 0.062927246, 0.025344849, -0.023468018, 0.02961731, 0.034820557, 0.029769897, -0.013305664, 0.056121826, -0.017166138, -0.016159058, 0.014160156, -0.017684937, 0.0017156601, -0.0062217712, -0.05102539, 0.005012512, 0.015533447, -0.0109939575, -0.010276794, 0.008888245, 0.09094238, 0.0008625984, 0.003063202, 0.016159058, 0.10284424, -0.01727295, 0.03616333, 0.008110046, -0.024383545, -0.033355713, 0.007850647, -0.032287598, -0.025848389, 0.032318115, -0.018234253, -0.021514893, 0.02784729, 0.01914978, -0.0104599, -0.017120361, 0.023529053, 0.014373779, -0.05807495, -0.010299683, 0.021499634, 0.0446167, 0.0072364807, -0.043640137, 0.016296387, 0.005470276, -0.004306793, -0.018508911, -0.01398468, -0.025054932, 0.033569336, 0.03050232, -0.032562256, -0.016113281, -0.009971619, -0.021484375, -0.032684326, -0.0048561096, -0.027038574, -0.019561768, -0.014335632, 0.0044288635, -0.05596924, -0.047821045, 0.010040283, -0.046325684, 0.006702423, -0.0048065186, -0.028717041, -0.008155823, 0.01486969, 0.0017318726, -0.021530151, -0.013824463, 0.01398468, -0.020706177, 0.07684326, 0.0071372986, 0.078186035, -0.03933716, -0.014450073, -0.049743652, 0.0770874, 0.011543274, 0.017669678, -0.043548584, -0.0033988953, 4.6789646e-05, 0.043121338, 0.06210327, 0.0055274963, 0.012016296, -0.029769897, -0.022399902, -0.017929077, -0.012420654, 0.021499634, -0.003780365, -0.017456055, -0.013748169, 0.022628784, -0.01259613, 0.0005555153, -0.025939941, 0.010734558, -0.0143966675, 0.026565552, -0.015365601, -0.006538391, 0.0052719116, 0.0025119781, 0.008758545, 0.008651733, -0.015197754, 0.0011816025, 0.021881104, 0.004398346, -0.0041236877, 0.0069236755, -0.05960083, -0.038513184, 0.0104599, 0.021102905, 0.016616821, -0.005306244, -0.04437256, -0.027679443, 0.07232666, 0.045898438, -0.010749817, 0.003358841, 0.03414917, -0.01474762, -0.039520264, -0.0149002075, 0.050964355, 0.041656494, 0.021194458, -0.03189087, 0.005874634, -0.028396606, -0.023254395, 0.01210022, 0.005947113, 0.025863647, -0.028076172, 0.026870728, 0.0069351196, 0.028244019, 0.05581665, 0.022476196, 0.01512146, -0.004699707, -0.015586853, 0.0070610046, 0.01637268, 0.00019717216, -0.016174316, -0.014511108, -0.011909485, 0.025924683, 0.01272583, -0.034698486, 0.00730896, 0.025146484, -0.0043525696, -0.0077667236, 0.04171753, 0.005050659, 0.00756073, -0.016448975, 0.037750244, -0.015510559, -0.010513306, 0.033935547, -0.01184845, -0.00033330917, -0.007217407, -0.012870789, -0.0076141357, -0.015434265, -0.029891968, 0.017196655, -0.0022792816, 0.014038086, -0.03930664, 0.02104187, -0.0013303757, -0.039031982, -0.046783447, -0.0021781921, 0.004470825, 0.05899048, 0.0033416748, -0.027114868, 0.02128601, -0.0058631897, 0.015350342, -0.023834229, 0.017684937, -0.036865234, 0.010215759, 0.009010315, 0.041229248, -0.0058937073, 0.010070801, -0.02911377, -0.05609131, -0.017791748, 0.005290985, 0.048950195, -0.03375244, -0.020050049, -0.073791504, 0.0037651062, 0.030029297, -0.034301758, 0.044555664, 0.007896423, -8.696318e-05, 0.032836914, 0.018798828, -0.007911682, 0.0019083023, -0.015899658, -0.015899658, -0.004673004, 0.0066375732, -0.0135650635, 0.030685425, -0.009231567, 0.004207611, 0.061187744, 0.014533997, 0.035369873, 0.030334473, -0.014343262, -0.006629944, -0.018615723, -0.031707764, 0.007396698, -0.0317688, 0.05996704, -0.020858765, -0.056518555, -0.023483276, -0.03302002, 0.070373535, -0.009857178, 0.014335632, -0.019454956, -0.025756836, 0.024856567, -0.030944824, -0.038513184, 0.022384644, 0.013259888, -0.02116394, -0.0025844574, -0.027908325, 0.01838684, 0.024612427, -0.05886841, 0.04522705, 0.036346436, 0.05517578, -0.032226562, -0.012359619, -0.049743652, 0.00881958, -0.058563232, -0.0010528564, 0.0008020401, -0.004802704, 0.025390625, 0.0019245148, 0.0025920868, 0.06085205, 0.04031372, -0.01776123, -0.019561768, -0.0039482117, 0.009178162, 0.039001465, 0.019866943, 0.0062942505, -0.015686035, 0.024765015, 0.018096924, 0.025344849, -0.015449524, 0.0075912476, -0.055480957, -0.004184723, -0.00085926056, 0.062927246, 0.03930664, -0.03149414, 0.0075683594, -0.05227661, 0.035949707, -0.011528015, 0.020904541, 0.0021362305, -0.0099487305, -0.034240723, -0.0087509155, -0.0047340393, -0.02355957, -0.03994751, -0.06518555, 0.0016241074, 0.0022583008, 0.061279297, 0.016052246, 0.04272461, 0.047973633, 0.02029419, -0.021209717, 0.004890442, 0.0076408386, -0.007850647, 0.03668213, -0.0023841858, 0.0023517609, 0.0052375793, -0.013793945, -0.044891357, 0.07885742, 0.0021152496, -0.007835388, 0.048828125, 0.00818634, -0.019104004, -0.024261475, 0.024505615, 0.011550903, -0.045074463, -0.013580322, -0.033569336, 0.012908936, -0.027359009, -0.025268555, -0.0029239655, 0.012649536, 0.018829346, -0.015777588, 0.043151855, -0.0099105835, 0.0058517456, -0.01158905, 0.025741577, -0.052978516, -0.03591919, 0.022506714, -0.0035934448, 0.019622803, 0.015411377, 0.0038452148, -0.052734375, 0.038024902, -0.070617676, -0.018829346, -0.037506104, 0.027938843, -0.027938843, 0.011932373, -0.030761719, 0.001449585, 0.008964539, -0.0146102905, 0.0079193115, -0.011016846, 0.016983032, -0.019088745, 0.017166138, -0.032836914, 0.040222168, 0.013793945, 0.08453369, 0.03756714, -0.031280518, -0.054229736, -0.03616333, -0.014434814, -0.04272461, 0.010658264, 0.0039863586, -0.006374359, 0.015777588, -0.021881104, 0.019714355, 0.04788208, -0.0041923523, 0.037597656, -0.02558899, -0.01197052, 0.013282776, -0.033966064, -0.012359619, -0.04095459, -0.007507324, 0.006252289, -0.017089844, -0.01247406, 0.041412354, -0.0050621033, 0.006629944, 0.008125305, -0.040496826, 0.05709839, -0.032684326, -0.026916504, -0.011169434, -0.0501709, -0.021942139, -0.017120361, -0.000664711, -0.015281677, -0.0541687, 0.034973145, -0.019943237, -0.05340576, -0.024765015, 0.027236938, 0.001490593, -0.06298828, -0.042755127, -0.02557373, 0.02053833, 0.0066490173, 0.02998352, 0.0016994476, -0.062561035, -0.076660156, 0.0345459, -0.046875, 0.008621216, 0.020355225, -0.008399963, 0.009017944, 0.0055007935, 0.018157959, 0.04296875, 0.024627686, -0.015052795, -0.014274597, -0.006454468, -0.0040779114, 0.029373169, 0.004600525, -0.03866577, -0.048828125, -0.028884888, -0.008560181, 0.056793213, 0.0020332336, -0.022277832, -0.035064697, 0.005088806, 0.0040359497, 0.024261475, -0.020935059, 0.008903503, 0.0040245056, 0.0038833618, -0.015655518, 0.022537231, 0.029434204, 0.0007586479, 0.033721924, 0.030670166, -0.019210815, -0.042114258, -0.025772095, -0.013252258, -0.0061950684, 0.046783447, 0.009208679, 0.054840088, 0.028320312, 0.04815674, -0.015930176, 0.008110046, 0.002532959, -0.0019512177, -0.009315491, -0.01713562, -0.032196045, -0.018966675, 0.0073051453, 0.012565613, -0.00011485815, 0.060546875, 0.043121338, 0.019332886, -0.032928467, -0.02848816, -0.0072135925, -0.0011844635, 0.0023536682, -0.02029419, -0.007724762, -0.07684326, 0.014854431, 0.030532837, -0.0061683655, 0.041015625, -0.011749268, -0.04751587, -0.04260254, 0.017196655, 0.017425537, 0.047180176, 0.003396988, 0.061431885, 0.047332764, 0.030151367, 0.00070238113, -0.11303711, -0.04928589, 0.041931152, 0.037109375, -0.038269043, 0.05734253, -0.043121338, 0.024276733, 0.003479004, 0.04360962, 0.008934021, 0.01058197, 0.06591797, 0.0077285767, 0.0071983337]}, "B0009PURJA": {"id": "B0009PURJA", "original": "Brand: Coleman\nName: Coleman Camp Oven\nDescription: \nFeatures: Portable camping oven lets you bake with confidence at the campsite\nFits on Coleman Propane and Liquid Fuel Camp Stoves\nAdjustable rack can be set at 3 heights for versatile baking\nEasy-Clean Aluminum Steel Construction Resists Scratches and Corrosion\nFolds flat for easy storage and carrying\n", "metadata": {"Name": "Coleman Camp Oven", "Brand": "Coleman", "Description": "", "Features": "Portable camping oven lets you bake with confidence at the campsite\nFits on Coleman Propane and Liquid Fuel Camp Stoves\nAdjustable rack can be set at 3 heights for versatile baking\nEasy-Clean Aluminum Steel Construction Resists Scratches and Corrosion\nFolds flat for easy storage and carrying", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.039611816, -0.0036411285, -0.02835083, 0.03842163, -0.02104187, -0.011726379, 0.004688263, -0.022857666, -0.03390503, 0.013427734, 0.02268982, 0.010055542, -0.016342163, -0.04800415, 0.014480591, -0.030960083, -0.004825592, 0.012870789, -0.036193848, -0.04449463, 0.004634857, -0.051239014, -0.045684814, 0.06567383, 0.034057617, 0.031158447, -0.020492554, -0.006134033, 0.015808105, 0.0043678284, 0.023529053, -0.011116028, 0.025802612, -0.026153564, 0.004032135, -0.041625977, 0.022247314, -0.025390625, -0.025405884, 0.0118637085, -0.0020980835, 0.0034713745, 0.044403076, 0.012863159, -0.021209717, -0.006401062, 0.02154541, -0.006134033, -0.010681152, -0.031921387, 0.004798889, 0.011016846, 0.036376953, -0.056243896, -0.004055023, 0.016586304, 0.015563965, 0.027130127, 0.017929077, -0.0574646, -0.041534424, 0.012481689, 0.04550171, 0.031463623, -0.017044067, 0.014915466, 0.060058594, -0.018936157, 0.00096797943, -0.022506714, 0.009651184, 0.010383606, 0.00068092346, 0.03100586, -0.06958008, -0.05709839, 0.030197144, -0.06744385, 0.033477783, -0.0013399124, -0.07458496, -0.0051879883, -0.025863647, -0.06750488, 0.009353638, -0.021820068, -0.021957397, 0.009765625, -0.00041294098, -0.009857178, -0.0011577606, 0.00274086, -0.055023193, 0.05303955, 0.022033691, -0.028625488, -0.017608643, -0.057678223, 0.027069092, -0.0058288574, 0.047821045, -0.03967285, -0.0031433105, 0.011604309, -0.022247314, 0.057891846, 0.05529785, 0.078308105, 0.009063721, -0.015777588, -0.00081157684, -0.0060920715, -0.0007791519, 0.026046753, -0.020706177, -0.021499634, -0.057495117, 0.035095215, -0.00919342, 0.029968262, -0.057281494, -0.041290283, 0.023391724, 0.04815674, 0.037994385, 0.034820557, 0.02154541, 0.0039749146, -0.034118652, 0.049041748, -0.049194336, -0.0003387928, 0.011314392, 0.014411926, -0.013183594, -0.036071777, -0.0030460358, 0.01612854, 0.0037212372, -0.022613525, 0.016067505, 0.005077362, 0.038726807, 0.010894775, -0.007118225, 0.011932373, 0.033966064, 0.021530151, -0.01285553, -0.046539307, 0.0076789856, 0.027694702, 0.005634308, 0.046936035, 0.03451538, 0.02017212, 0.06719971, -0.030929565, -0.012283325, -0.051483154, -0.019088745, -0.013023376, 0.0046310425, 0.0006198883, -0.0101623535, 0.014846802, 0.009605408, 0.0027389526, 0.020141602, 0.053863525, 0.0054512024, 0.025863647, 0.01802063, -0.00029301643, -0.012771606, -0.0418396, 0.0019569397, 0.035095215, 0.035369873, -0.034576416, -0.044799805, -0.058013916, 0.07647705, -0.034210205, -0.022125244, -0.011672974, 0.043304443, 0.035614014, -0.019332886, 0.007843018, 0.06713867, 0.025665283, -0.059814453, 0.03967285, -0.0045204163, 0.01550293, -0.0473938, 0.027404785, -0.016021729, -0.042236328, 0.0019302368, 0.024276733, 0.0005235672, 0.027877808, 0.014732361, -5.441904e-05, 0.0093307495, 0.0137786865, 0.05368042, 0.02355957, -0.024246216, -0.0070228577, 0.0154418945, -0.078430176, -0.04107666, 0.011009216, 0.01335907, 0.054473877, 0.020492554, 0.03765869, 0.02470398, -0.031677246, 0.0103302, -0.007865906, 0.028900146, -0.007411957, -0.027374268, 0.0016784668, 0.0010709763, 0.01309967, -0.06112671, 0.04473877, 0.027175903, 0.029647827, -0.014457703, 0.022521973, 0.05770874, 0.03024292, -0.004951477, -0.012123108, 0.0027503967, -0.014022827, -0.02859497, -0.0076065063, 0.053894043, 0.07745361, 0.035003662, -0.02116394, -0.02468872, 0.052520752, 0.009857178, 0.015144348, 0.012771606, 0.045166016, -0.06359863, 0.027709961, -0.0546875, -0.0102005005, 0.00945282, 0.03555298, -0.03164673, 0.07080078, 0.08831787, -0.0059928894, -0.015625, 0.011520386, 0.011703491, 0.016983032, -0.031082153, 0.0057868958, 0.022659302, 0.013931274, -0.005542755, 0.00995636, 0.07183838, 0.010108948, -0.034942627, -0.005958557, 0.02355957, 0.005279541, 0.02923584, 0.02659607, 0.04348755, 0.0032806396, 0.019989014, -0.016036987, 0.03265381, 0.047454834, -0.07293701, -0.058746338, -0.01586914, 0.004627228, -0.03338623, -0.015129089, -0.015174866, -0.024475098, 0.021575928, 0.006259918, 0.024475098, -0.040802002, -0.029296875, 0.02720642, -0.044067383, 0.012397766, -0.008094788, 0.019561768, -0.0044441223, -0.0046653748, -0.0062789917, -0.009735107, -0.039367676, -0.021148682, 0.036224365, 0.046722412, 0.05456543, 0.023788452, 0.0335083, 0.07751465, 0.07550049, 0.030822754, -0.048553467, -0.015792847, 0.009757996, 0.022201538, 0.009559631, -0.0069503784, 0.027664185, 0.014778137, 0.0014333725, 0.04260254, 0.008995056, 0.029296875, -0.0069885254, -0.009811401, -0.007911682, 0.01499939, 0.0015888214, 0.024429321, 0.0067100525, 0.006919861, 0.01146698, -0.030975342, -0.0020217896, -0.03137207, -0.038391113, -0.026809692, 0.0418396, 0.004814148, -0.05645752, 0.009307861, 0.025924683, -0.019439697, 0.03427124, -0.026779175, 0.021194458, -0.04333496, -0.07147217, -0.045288086, -0.04135132, -0.09503174, -0.014015198, -0.0149383545, -0.042510986, -0.008628845, 0.023269653, 0.009033203, -0.045318604, 0.0056610107, -0.03149414, 0.0075187683, -0.026992798, 0.0057411194, -0.035217285, -0.016860962, -0.022476196, 0.03427124, 0.054382324, -0.0051956177, 0.010398865, 0.024871826, 0.017745972, 0.02911377, -0.001405716, 0.0113220215, -0.018478394, 0.042633057, 0.008651733, 0.017578125, -0.010406494, -0.02243042, 0.01007843, 0.055847168, -0.010726929, -0.005332947, 0.0051345825, 0.0005950928, -0.013748169, -0.022644043, -0.040100098, -0.0131073, -0.10632324, 0.023788452, 0.004348755, -0.054779053, 0.020263672, -0.05923462, -0.026351929, -0.06915283, 0.02017212, 0.028137207, -0.021316528, -0.0007123947, -0.05166626, 0.01525116, -0.01663208, -0.0035133362, 0.06744385, -0.01751709, 0.0463562, -0.044799805, 0.025650024, -0.07922363, 0.037841797, 0.027572632, -0.028793335, 0.040618896, -0.042907715, 0.0030078888, -0.014175415, 0.042907715, -0.003124237, 0.013763428, -0.01272583, 0.011978149, -0.020339966, 0.027252197, 0.007709503, -0.037139893, 0.041412354, -0.040222168, -0.002494812, -0.02684021, -0.0072746277, 0.026306152, -0.0016641617, -0.010482788, -0.030166626, -0.020736694, -0.022445679, -0.020401001, 0.016983032, 0.00819397, 0.028442383, 0.011726379, -0.0072631836, 0.07543945, 0.038146973, 0.02822876, -0.0018568039, 0.0035381317, -0.0129852295, -0.017288208, 0.020690918, -0.020843506, -0.006511688, -0.04714966, 0.033294678, 0.012840271, 0.012268066, -0.024856567, -0.017669678, 0.068115234, 0.051971436, -0.01902771, -0.031311035, -0.052703857, 0.059753418, 0.020263672, -0.00084638596, -0.07342529, -0.04397583, 0.0034980774, -0.1262207, 0.0859375, 0.06347656, -0.031829834, 0.06402588, 0.025939941, 0.015159607, 0.021453857, 0.04031372, -0.026687622, 0.033721924, 0.0087509155, -0.02670288, 0.0049324036, -0.004108429, 0.03387451, 0.00856781, -0.011810303, -0.024429321, 0.0107803345, 0.0093307495, -0.017623901, -0.039764404, -0.00970459, 0.00065898895, -0.010276794, 0.019744873, -0.04373169, -0.013198853, -0.01701355, 0.021408081, -0.00082683563, -0.013153076, 0.027999878, -0.04840088, -0.04107666, -0.027526855, 0.011634827, -0.011238098, 0.025497437, -0.043060303, 0.016967773, 0.051605225, -0.0049362183, -0.06414795, 0.042144775, -0.013595581, 0.006713867, 0.007858276, 0.01525116, -0.018615723, -0.02027893, 0.036315918, -0.031036377, 0.0016002655, 0.035491943, -0.010810852, -0.079711914, 0.013450623, 0.060180664, 0.013893127, -0.054107666, 0.0061149597, -0.025024414, 0.0066719055, -0.0022182465, -0.0026569366, -0.008651733, -0.022567749, -0.017196655, -0.042877197, -0.016235352, -0.025650024, 0.012435913, -0.024047852, 0.02645874, -0.02835083, -0.02218628, -0.013801575, 0.027816772, -0.027160645, -0.0038471222, -0.031158447, 0.0287323, 1.8119812e-05, -0.0046539307, 0.00014579296, -0.026382446, -0.014823914, -0.0013256073, 0.00063943863, -0.029632568, 0.02519226, -0.014335632, -0.0463562, 0.0067863464, 0.0049362183, 0.07116699, -0.019500732, 0.023132324, -0.048919678, -0.004272461, -0.015686035, -0.040985107, 0.027786255, -0.033843994, -0.015098572, -0.04071045, 0.03817749, -0.026184082, -0.009490967, -0.0335083, 0.018157959, 0.016433716, 0.03286743, -0.041168213, -0.038024902, 0.011077881, -0.040924072, -0.0021343231, -0.010185242, -0.015556335, 0.079956055, 0.047058105, 0.017318726, -0.0040626526, -0.023345947, 0.0033130646, -0.021881104, 0.027862549, -0.038391113, -0.019577026, -0.04107666, 0.025344849, -0.063964844, 0.07897949, 0.011886597, -0.015602112, -0.012519836, -0.021408081, -0.014381409, -0.050689697, 0.019943237, -0.017578125, -0.03111267, 0.0027580261, -0.013442993, -0.017074585, -0.0019397736, -0.017333984, -0.015838623, 0.006248474, 0.021621704, -0.008010864, -0.020950317, -0.012481689, 0.009597778, 0.018310547, 0.0033054352, 0.04537964, 0.051971436, -0.027679443, 0.005607605, -0.030319214, -0.014694214, 0.00010508299, -0.0110321045, 1.7344952e-05, 0.006439209, 0.009140015, -0.061676025, 0.027572632, 0.044647217, 0.0061454773, -0.027770996, -0.0018863678, 0.04324341, -0.0065994263, -0.03152466, 0.06335449, -0.02470398, 0.025543213, 0.011383057, -0.002456665, 0.0035037994, 0.016540527, -0.010971069, 0.010238647, 0.0026836395, -0.03579712, 0.035614014, 0.009788513, -0.008010864, -0.027252197, 0.002937317, -0.017852783, -0.04724121, 0.0010814667, 0.0027427673, 0.036895752, 0.03729248, 0.042175293, -0.05557251, 0.061767578, -0.0076560974, -0.047912598, 0.024597168, -0.0021038055, 0.00023019314, -0.0151901245, 0.010932922, -0.050476074, -0.013214111, 0.0018310547, -0.03439331, 0.015594482, 0.049865723, -0.025466919, -0.009086609, 0.024978638, -0.026031494, -0.0038967133, -0.015144348, 0.016159058, -0.04269409, 0.040924072, -0.05557251, -0.024124146, 0.0076675415, 0.05822754, -0.033935547, -0.0018005371, -0.036346436, -0.04824829, -0.058135986, 0.009475708, -0.010299683, 0.038024902, 0.006462097, -0.005596161, 0.019470215, -0.0006198883, 0.01625061, -0.0014286041, -0.018707275, 0.011772156, 0.026153564, 0.04220581, -0.02532959, 0.004169464, 0.033447266, -0.03152466, -0.018539429, -0.039520264, 0.062072754, -0.030578613, 0.00091934204, 0.037109375, 0.010108948, 0.013069153, 0.033599854, 0.012016296, -0.018493652, 0.03729248, 0.016204834, -0.039489746, 0.050323486, -0.0014181137, 0.028121948, 0.023925781, -0.0017910004, -0.033416748, 0.041229248, -0.028533936, -0.018585205, -0.017456055, -0.018432617, 0.0015974045, -0.00013375282, -0.0073432922, -0.028457642, 0.024505615, -0.035461426, 0.043304443, -0.018859863, -0.049987793, 0.0041236877, 0.0206604, 0.050231934, -0.002603531, 0.026657104, 0.026062012, -0.03338623, 0.028640747, -0.013725281, -0.021148682, 0.013534546, 0.029769897, 0.02331543, -0.02532959, 0.018707275, -0.010932922, -0.036743164, -0.012527466, 0.031280518, 0.03668213, -0.048065186, 0.012191772, 0.05343628, 0.038269043, 0.04309082, 0.018966675, 0.029342651, 0.010917664, 0.0019168854, 0.022567749, 0.042663574, -0.018188477, 0.016052246, -0.05596924, 0.022232056, 0.019470215, 0.0019283295, 0.00048589706, -0.052520752, 0.08428955, -0.062164307, 0.0030670166, -0.016418457, -0.024475098, 0.062072754, -0.019821167, 0.020614624, -0.029083252, -0.0048294067, 0.0368042, -0.07409668, -0.0284729, 0.023391724, 0.02986145, 0.004142761, 0.027236938, -0.021911621, 0.026977539, 0.04699707, -0.05718994, -0.033050537, -0.02053833, 0.022323608, -0.03488159, -0.006587982, 0.01789856, 0.03692627, -0.0154800415, -0.0014152527, 0.04888916, -0.004383087, -0.008712769, -0.04208374, -0.00434494, -0.032104492, -0.042816162, 0.018936157, -0.005794525, -0.016708374, 0.012046814, 0.0046844482, 0.07318115, 0.03189087, 0.007610321, 0.031158447, -0.0090789795, 0.0009250641, 0.0006480217, -0.026046753, -0.04547119, -0.05517578, 0.04434204, 0.052093506, -0.05987549, -0.018859863, -0.004547119, 0.018951416, 0.0058021545, -0.06149292, 0.029373169, -0.05847168, 0.035980225, 0.022903442, 0.07623291, 0.017669678, -0.006023407, -0.011199951, 0.021148682, 0.01737976, -0.0056762695, -0.0001733303, -0.0037784576, 0.01953125, -0.009819031, 0.0069618225, -0.056671143, -0.016571045, 0.011184692, 0.003490448, 0.027374268, -0.00040316582, -0.023147583, -0.009391785, 0.006629944, 0.005756378, 0.022735596, -0.020599365, -0.02406311, -0.011260986, -0.011497498, -0.029769897, 0.044891357, -0.02407837, -0.019958496, -0.009353638, -0.030471802, -0.027404785, -0.0064468384, -0.0289917, -0.03250122, -0.00094795227, -0.047088623, 0.0012235641, -0.013015747, 0.01209259, 0.033203125, -0.019546509, -0.012451172, -0.027694702, 0.030685425, 0.0052871704, 0.031585693, 0.002204895, 0.06762695, -0.03314209, -0.059783936, -0.04949951, 0.0012044907, -0.043182373, -0.008544922, 0.014778137, -0.034729004, -0.036590576, -0.03186035, -0.03250122, 0.07147217, 0.026168823, -0.009681702, 0.01600647, -0.03277588, -0.021835327, 0.05227661, 0.013702393, -0.028305054, -0.018051147, 0.015029907, 0.0021839142, -0.0050697327, 0.036254883, 0.0078086853, -0.07373047, -0.024719238, -0.050445557, -0.031280518, 0.013580322, -0.010231018, 0.007041931, 0.020050049, -0.03741455, -0.044769287, -0.015777588, -0.00030136108, 0.019500732, 0.0048065186, 0.078552246, 0.020187378, -0.06958008, -0.059387207, -0.034484863, 0.0055885315, 0.03237915, -0.007583618, 0.008956909, 0.0395813, -0.027313232, 0.01890564, 0.017364502, 0.0051727295, 0.0027656555, 0.028518677, -0.0026607513, -0.007965088, 0.0032234192, 0.027679443, -0.011116028, -0.022583008, -0.019577026, 0.008911133, 0.0026836395, 0.024932861, -0.016555786, 0.013717651, 0.008514404, 0.044799805, 0.0054473877, -0.011238098, -0.0017433167, 0.005180359, 0.012039185, -0.005207062, 0.013618469, -0.026229858, -0.023757935, 0.029876709, 0.014709473, 0.029006958, 0.0039405823, 0.06149292, 0.037353516, 0.0028877258, -0.003835678, -0.08123779, -0.036346436, 0.012374878, 0.0022068024, -0.013748169, 0.027252197, -0.023666382, 0.025161743, 0.007610321, -0.018554688, -0.0065231323, -0.026885986, 0.01966858, -0.015899658, 0.0020961761]}, "B004C2OF62": {"id": "B004C2OF62", "original": "Brand: Weber\nName: WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001)\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n6 Stainless steel burners\n60,000 BTU-per-hour input\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n10,600 BTU-per hour input sear burner\n", "metadata": {"Name": "WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001)", "Brand": "Weber", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n6 Stainless steel burners\n60,000 BTU-per-hour input\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n10,600 BTU-per hour input sear burner", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.00010788441, -0.0008058548, -0.043670654, 0.014968872, -0.023910522, -0.036010742, -0.005996704, -0.0047798157, -0.021621704, -0.0059432983, 0.004299164, 0.0056037903, -0.030715942, -0.052581787, 0.039031982, -0.024459839, 0.027297974, 0.007534027, 0.02507019, -0.02458191, 0.03225708, -0.012306213, 0.000333786, 0.071899414, 0.024124146, -0.0005712509, -0.026489258, 0.011314392, 0.003873825, 0.008621216, 0.020248413, 0.00026202202, 0.03616333, 0.023239136, -0.016448975, 0.0099105835, 0.00021529198, 0.0021076202, -0.008125305, 0.016723633, 0.017547607, 0.0073432922, -0.008605957, 5.0604343e-05, -0.019424438, -0.043518066, 0.03414917, -0.012573242, 0.020599365, -0.009918213, -0.009124756, -0.002735138, -0.0037708282, -0.00699234, -0.02508545, -0.010803223, 0.009101868, 0.002521515, 0.0129776, -0.008407593, -0.010795593, 0.018692017, 0.01878357, -0.0065345764, -0.028808594, 0.02178955, 0.12084961, -0.025604248, -0.051330566, -0.07562256, 0.025283813, 0.010620117, -0.00793457, 0.011917114, -0.012626648, -0.0024356842, 0.014984131, -0.004009247, 0.008598328, 0.037139893, -0.023132324, 0.0029888153, 0.01914978, -0.014221191, -0.010810852, -0.0007715225, -0.02748108, 0.00042033195, -0.030838013, -0.0012140274, -0.01675415, 0.0004131794, -0.07696533, 0.05593872, 0.016723633, -0.014060974, -0.01322937, -0.013587952, 0.019485474, 0.027252197, 0.0060806274, -0.029083252, 0.03062439, -0.0043792725, -0.004753113, 0.10241699, 0.0016860962, 0.074157715, 0.021881104, -0.01423645, 0.023895264, -0.04269409, -0.025650024, -0.037261963, -0.047668457, 0.046417236, -0.00894928, -0.037902832, 0.005832672, -0.014801025, -0.053710938, -0.039215088, 0.027832031, 0.010635376, 0.056243896, 0.050231934, 0.0044288635, 0.007648468, -0.058135986, 0.03451538, -0.022766113, -0.0019779205, 0.064453125, 0.05505371, 0.01083374, -0.016571045, -0.0019006729, -0.022781372, 0.026901245, -0.0022792816, -0.015838623, -0.03213501, 0.015220642, 0.011444092, -0.0064086914, -8.612871e-05, 0.0211792, 0.028182983, -0.019134521, -0.045288086, 0.03817749, 0.0013360977, 0.037261963, -0.007865906, -0.037628174, -0.010505676, -0.025680542, -0.0107040405, -0.03060913, -0.012588501, -0.033233643, -0.03555298, -0.019592285, -0.005973816, -0.032592773, 0.060516357, 0.06982422, 0.01789856, 0.020355225, 0.042541504, -0.029708862, -0.05731201, 0.030471802, 0.0118637085, -0.028411865, 0.033691406, -0.01600647, 0.018005371, 0.051757812, -0.049713135, -0.039611816, -0.031677246, 0.07684326, -0.027252197, -0.005443573, 0.0009236336, 0.012481689, -0.014160156, 0.012634277, 0.006198883, 0.032562256, 0.015525818, -0.0005235672, -0.004184723, 0.043823242, -0.022567749, -0.055480957, -0.034301758, -0.0062294006, 0.0061569214, 0.004699707, 0.029296875, -0.010414124, -0.009643555, -0.010650635, -0.0029182434, 0.010665894, 0.027389526, 0.030426025, 0.0065727234, -0.025177002, -0.014152527, 0.047027588, -0.0791626, -0.030700684, 0.04248047, -0.021713257, 0.02104187, 0.007686615, 0.023284912, 0.026351929, 0.012107849, 0.010520935, 0.010017395, 0.015098572, 0.0368042, -0.031036377, 0.021514893, 0.029556274, 0.013420105, 0.024520874, 0.002658844, 0.08477783, 0.07940674, -0.007827759, 0.058166504, 0.060150146, 0.08129883, -0.05581665, -0.026550293, 0.009422302, -0.053009033, -0.04309082, 0.0058631897, -0.019348145, 0.032104492, 0.017669678, -0.0040016174, -0.0072669983, -0.011940002, 0.025009155, -0.00504303, 0.043823242, 0.006450653, 0.011688232, 0.03378296, -0.012718201, -0.0074691772, -0.016738892, 0.035949707, -0.0011148453, 0.034820557, 0.013267517, 0.012756348, 0.033691406, -0.0109939575, 0.017852783, 0.00422287, -0.03604126, 0.015380859, 0.02268982, -0.0184021, -0.0075798035, -0.0069770813, 0.004951477, -0.037231445, -0.03466797, 0.029327393, 0.012580872, -0.02696228, -0.0028495789, -0.007896423, 0.03152466, -0.009651184, 0.023727417, 0.022262573, 0.037139893, -0.0284729, -0.008659363, -0.037719727, 0.011199951, -0.01953125, -0.044921875, 0.025726318, 0.002506256, -0.040985107, 0.036010742, 0.01424408, -0.0028514862, -0.032073975, 0.012397766, 0.02053833, -0.055419922, 0.011421204, 0.014389038, -0.030090332, 0.0287323, 0.043029785, 0.016281128, -0.02180481, -0.0030536652, 0.026687622, 0.034484863, -0.033966064, 0.06732178, 0.02508545, -0.0015449524, 0.040740967, 0.012901306, 0.020721436, -0.00085783005, 0.0021820068, -0.04626465, -0.029327393, 0.005504608, 0.025604248, -0.054534912, -0.012794495, 0.040802002, -0.034210205, -0.059936523, -0.046875, -0.051849365, -0.0066108704, -0.014274597, -0.008644104, 0.013198853, 0.0066871643, -0.005443573, -0.008384705, 0.030654907, -0.030288696, -0.014961243, -0.025680542, -0.041900635, 0.0028820038, 0.02218628, 0.0029239655, 0.0155181885, 0.023269653, -0.020523071, -0.00944519, -0.02885437, -0.06304932, -0.008338928, -0.006061554, 0.00843811, -0.043792725, 0.017990112, -0.060546875, 0.006576538, -0.01234436, -0.03213501, -0.024810791, 0.020553589, -0.004207611, -0.020324707, -0.02078247, -0.026672363, 0.04626465, 0.0501709, 0.026153564, -0.033203125, -0.053894043, -0.085998535, -0.025634766, 0.035949707, -0.01574707, -0.049743652, 0.0043029785, 0.016418457, 0.0042762756, -0.008728027, -0.008918762, 0.033203125, 0.024780273, 0.03125, 0.032196045, 0.010894775, -0.029678345, -0.019683838, 0.01965332, -0.03186035, -0.04232788, 0.042541504, 0.019927979, -0.027832031, 0.022613525, -0.01977539, -0.013366699, -0.044036865, 0.0067710876, 0.0043754578, -0.039031982, 0.0034446716, -0.074645996, -0.03451538, -0.040863037, 0.0065689087, 0.066711426, -0.017578125, -0.032592773, -0.027801514, -0.0077056885, 0.00034236908, 0.024459839, 0.008003235, -0.015388489, 0.0035324097, -0.0107421875, 0.014793396, -0.0040626526, 0.013404846, 0.028366089, -0.05166626, 0.001584053, -0.038024902, 0.02078247, -0.025115967, 0.07434082, -0.0099105835, 0.019180298, -0.023757935, -0.0033512115, -0.0045166016, 0.07043457, 0.013679504, 0.018875122, 0.023208618, -0.015266418, -0.028869629, -0.0029277802, 0.025238037, 0.07171631, -0.0021190643, 0.013473511, -0.018997192, -0.04611206, 0.020080566, -0.052368164, 0.0016031265, -0.005470276, 0.06829834, 0.023468018, 0.0019416809, 0.07684326, 0.048187256, 0.03540039, 0.022583008, 0.004337311, -0.014717102, -0.026870728, 0.028915405, 0.004081726, 0.032318115, -0.03829956, 0.0024299622, 0.021072388, -0.014099121, 0.016082764, 0.036010742, 0.012763977, 0.0435791, 0.018173218, -0.036376953, 0.0005455017, 0.03616333, -0.00712204, -0.007247925, -0.03186035, -0.03277588, -0.014030457, -0.10266113, 0.11206055, 0.08337402, -0.03756714, 0.07348633, 0.07885742, 0.008216858, 0.012557983, 0.0028839111, -0.017990112, 0.023773193, 0.00022685528, -0.017028809, 0.005683899, 0.008872986, -0.051879883, -0.0040016174, -0.023345947, -0.056854248, 0.005176544, -0.0061912537, -0.03253174, -0.048950195, 0.017623901, 0.00541687, -0.04598999, 0.009757996, -0.027252197, -0.031204224, -0.05041504, 0.005290985, 0.012336731, -0.025863647, -0.04220581, 0.01977539, 0.0024166107, -0.049591064, 0.00447464, -0.015670776, 0.014602661, -0.045410156, 0.049682617, 0.01348114, 0.022872925, -0.10296631, 0.037475586, -0.036346436, 0.0368042, 0.03616333, 0.020858765, 0.05090332, -0.018463135, -0.020812988, -0.014663696, 0.018615723, 0.0005092621, -0.043029785, -0.026473999, 0.0019817352, 0.01158905, 0.016113281, -0.025802612, 0.017684937, -0.015159607, 0.009262085, -0.011138916, -0.04272461, -0.03579712, 0.0022182465, 0.028030396, -0.054382324, -0.0012865067, 0.0155181885, -0.034118652, -0.052001953, -0.0032749176, -0.030334473, 0.038757324, 0.020858765, 0.040618896, -0.04324341, -0.026046753, -0.033935547, -0.014007568, 0.049682617, 0.013504028, 0.023117065, -0.027618408, -0.003534317, -0.01826477, 0.10876465, 0.013084412, 0.019485474, -0.039093018, -0.021713257, 0.008895874, 0.011116028, 0.023986816, -0.015151978, 0.021514893, -0.02130127, -0.008773804, -0.062683105, 0.007598877, 0.0574646, -0.04058838, -0.025238037, 0.00774765, 0.05178833, -0.0146102905, 0.030181885, -0.009941101, -0.0141067505, -0.012893677, 0.01777649, -0.053649902, -0.025375366, 0.0010633469, -0.0028934479, 0.02798462, 0.0014467239, -0.0026416779, -0.036743164, 0.025878906, 0.021636963, -0.034118652, 0.004524231, 0.049804688, -0.014755249, -0.0066452026, -0.0047073364, -0.009208679, 0.0048713684, 0.014427185, -0.06048584, 0.10668945, 0.07696533, 0.006000519, 0.019607544, 0.031585693, -0.01449585, -0.06100464, 0.021133423, -0.026229858, -0.031341553, -0.033721924, -0.01449585, 0.024368286, -0.021957397, 0.008308411, 0.0015039444, 0.040283203, 0.05871582, -0.05606079, -0.003206253, 0.011779785, 0.01713562, 0.023651123, -0.007797241, 0.033111572, -0.002483368, -0.017181396, 0.029327393, -0.033081055, -0.033325195, -0.014694214, -0.03479004, -0.01701355, 0.0040016174, 0.004501343, -0.0025901794, -0.018463135, 0.004234314, -0.017791748, -0.028518677, 0.0044136047, 0.009132385, -0.0077552795, 0.00026464462, 0.066345215, -0.038116455, 0.0395813, 0.0060195923, -0.020950317, -0.018417358, 0.03604126, -0.0519104, 0.043182373, 0.036071777, -0.0592041, 0.041534424, -0.01927185, -0.026367188, -0.0061798096, 0.09527588, 0.0023994446, 0.061279297, -0.072509766, 0.007633209, 0.054840088, 0.04788208, 0.03366089, -0.07055664, 0.021865845, -0.040985107, -0.011138916, 0.00541687, 0.03945923, -0.022232056, 0.020080566, 0.0084991455, 0.015205383, -0.017074585, 0.020980835, -0.01423645, 0.00078725815, 0.041900635, -0.0345459, -0.0016059875, 0.0038700104, -0.01890564, -0.031799316, -0.010025024, 0.018081665, 0.009407043, 0.024139404, 0.0069389343, -0.0027561188, 0.035614014, 0.017578125, 0.0005350113, 0.003604889, -0.0044441223, -0.03503418, -0.051208496, -0.018463135, -0.045440674, 0.036865234, -0.01751709, -0.00024819374, 0.019012451, -0.0110321045, 0.0013313293, 0.025466919, -0.040771484, 0.0069122314, -0.0036315918, 0.00092077255, -0.045440674, -0.03933716, 0.07928467, -0.05581665, -0.060516357, -0.044525146, 0.02671814, -0.016235352, -0.039764404, 0.057159424, 0.018493652, 0.004890442, 0.019622803, -0.010848999, -0.07165527, 0.034210205, 0.014404297, -0.09429932, -0.013549805, -0.03137207, -0.000323534, 0.0236969, -0.009002686, -0.0151901245, 0.036895752, 0.008811951, 0.002105713, -0.04876709, -0.024627686, -0.0093307495, -0.03857422, 0.0134887695, 0.006416321, -0.0014982224, -0.011207581, -0.013389587, -0.054016113, 0.0067825317, 0.07312012, 0.036468506, 0.013046265, -0.012786865, 0.027648926, 0.06744385, -0.05758667, 0.077819824, -0.026428223, 0.0039596558, 0.008720398, 0.07727051, 0.011253357, 0.05718994, -0.065979004, -0.042907715, -0.021148682, 0.023880005, 0.024124146, 0.030166626, -0.0009150505, 0.015701294, -0.0023231506, 0.010070801, 0.024169922, 0.029922485, 0.013191223, -0.0109939575, -0.019165039, 0.007774353, 0.019485474, -0.036590576, -0.07330322, -0.037078857, -0.00041604042, 0.04812622, 0.014442444, 0.048614502, -0.01789856, 0.040985107, 0.011657715, -0.0019140244, 0.0050201416, 0.0116119385, 0.013145447, 0.010543823, -0.022277832, 0.035888672, 0.015899658, 0.0015850067, 0.00061893463, 0.05392456, -0.03451538, -0.0044517517, 0.015686035, 0.05960083, -0.023910522, -0.004398346, 0.006664276, -0.02532959, -0.0029964447, -0.014389038, -0.004634857, -0.025344849, -0.06768799, -0.020706177, -0.0057868958, -0.011329651, 0.005783081, 0.009788513, 0.045440674, -0.0046463013, 0.0076446533, 0.007358551, -0.013183594, -0.00028657913, 0.015960693, 0.0104599, 0.014320374, -0.020080566, -0.020889282, 0.046813965, 0.0317688, 0.00047159195, 0.03869629, -0.0107421875, 0.009468079, -0.029403687, 0.025497437, -0.022201538, 0.0012636185, 0.0019083023, -0.0211792, 0.022567749, 0.003627777, 0.016723633, 0.039794922, -0.005744934, -0.022720337, 0.02659607, -0.035217285, 0.008575439, 0.0181427, 0.025512695, -0.03302002, -0.020187378, -0.008605957, -0.0046958923, 0.0072746277, 0.04534912, -0.00048732758, -0.007499695, -0.00096797943, 0.028121948, 0.057281494, -0.009292603, 0.03186035, -0.015220642, -0.005153656, 0.028244019, 0.047454834, -0.003326416, 0.0033988953, -0.03100586, -0.01423645, 0.015396118, -0.0042266846, 0.022521973, 0.010002136, 0.0066833496, -0.013999939, -0.010765076, -0.014678955, -0.00969696, 0.04385376, -0.023956299, -0.02520752, -0.0042686462, -0.028640747, -0.03579712, 0.019515991, -0.06726074, -0.023269653, -0.00023376942, -0.029052734, -0.017562866, 0.017349243, 0.024291992, -0.021102905, -0.01953125, 0.02053833, -0.012641907, -0.015258789, 0.03894043, -0.039215088, -0.029541016, -0.014801025, 0.02658081, -0.07147217, -0.039611816, -0.01335144, 0.0066108704, 0.0057907104, -0.023788452, -0.02180481, 0.06359863, 0.0020217896, -0.01209259, -0.021743774, 0.005874634, -0.02848816, 0.027618408, -0.0048599243, 0.004360199, 0.013916016, 0.037322998, -0.0028457642, 0.0031337738, 0.041046143, -0.008460999, -0.04244995, -0.0059318542, -0.016189575, -0.028503418, -0.040374756, 0.0020637512, 0.007259369, 0.003189087, -0.03479004, 0.0051574707, 0.019989014, 0.0440979, 0.024612427, 0.02720642, 0.027679443, -0.03552246, -0.045043945, -0.068115234, -0.015525818, 0.055358887, 0.029846191, -0.020477295, -0.022109985, 0.003293991, 0.0008792877, -0.03363037, -0.0051498413, 0.012413025, -0.008476257, 0.01574707, -0.030059814, -0.008842468, -0.008651733, -0.011474609, -0.012329102, -0.011924744, 0.0022468567, 0.024749756, -0.028289795, -0.014266968, -0.013771057, 0.014228821, -0.011352539, -0.013771057, -0.015037537, -0.02885437, 0.014022827, 0.0158844, 0.0038318634, 0.020645142, 0.0049362183, -0.016357422, -0.027542114, 0.024215698, 0.022125244, 0.03253174, -0.058776855, 0.04257202, 0.013267517, 0.047698975, -0.008598328, -0.089660645, -0.05947876, 0.0491333, 0.046203613, -0.028686523, 0.08673096, -0.04272461, 0.0017442703, 0.024398804, -0.0084991455, -0.037963867, 0.017318726, 0.0015525818, 0.01007843, 0.0077209473]}, "B07JQBVK9K": {"id": "B07JQBVK9K", "original": "Brand: Techwood\nName: Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
      picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
      by Product Liability Insurance of United States.

      - 120V 60Hz 1600Watts

      - Product dimensions: 17.9 x 11 x 14.8 inches

      - Humanization Features,Rotatable Venting System,Let Safety Be With You
      Fully electric system, 1600W power operated and a variable temperature controller give you a
      happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
      happy hours come with safety assurance for you and your family, friends. and apartment
      approved,your landlord will love this grill just as much as you do.

      - Adjustable Temperature Control
      Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
      to get the best results on any kind of food.

      - 15+ servings,Easy To Use and Install and Maintain Tidy

      The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
      cookies, potatoes and many other delicious foods and complete meals.

      - Foldable warming grill : keep the food in temperature for good taste.

      \nFeatures: \ud83c\udf56\u3010 FAST-HEATING\u3011 Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere.\n\ud83c\udf56\u3010HIGH CAPACITY\u3011 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n\ud83c\udf56\u3010APARTMENT-APPROVED\u3011Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can\u2019t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n\ud83c\udf56\u3010TEMPERATURE CONTROL\u3011The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean\n\ud83c\udf56\u3010Get Yours Now, Risk-Free\u3011Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.\n", "metadata": {"Name": "Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W", "Brand": "Techwood", "Description": "Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
      picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
      by Product Liability Insurance of United States.

      - 120V 60Hz 1600Watts

      - Product dimensions: 17.9 x 11 x 14.8 inches

      - Humanization Features,Rotatable Venting System,Let Safety Be With You
      Fully electric system, 1600W power operated and a variable temperature controller give you a
      happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
      happy hours come with safety assurance for you and your family, friends. and apartment
      approved,your landlord will love this grill just as much as you do.

      - Adjustable Temperature Control
      Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
      to get the best results on any kind of food.

      - 15+ servings,Easy To Use and Install and Maintain Tidy

      The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
      cookies, potatoes and many other delicious foods and complete meals.

      - Foldable warming grill : keep the food in temperature for good taste.

      ", "Features": "\ud83c\udf56\u3010 FAST-HEATING\u3011 Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere.\n\ud83c\udf56\u3010HIGH CAPACITY\u3011 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n\ud83c\udf56\u3010APARTMENT-APPROVED\u3011Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can\u2019t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n\ud83c\udf56\u3010TEMPERATURE CONTROL\u3011The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean\n\ud83c\udf56\u3010Get Yours Now, Risk-Free\u3011Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.034332275, 0.026306152, -0.021881104, -0.004447937, 0.015052795, -0.013702393, 0.026550293, -0.03616333, -0.010643005, 0.00844574, 0.0036449432, 0.030288696, -0.005870819, -0.03857422, 0.02444458, -0.011581421, 0.02279663, 0.007080078, 0.020904541, -0.0037174225, -0.011779785, 0.0107040405, -0.008682251, 0.05026245, 0.03793335, -0.025253296, -0.020370483, 0.03378296, 0.017852783, 0.0071372986, 0.016555786, -0.008262634, -0.0006837845, 0.022109985, -0.030273438, -0.039520264, 0.0011329651, 0.015777588, -0.009284973, 0.016967773, 0.008155823, -0.008491516, -0.08288574, 0.026672363, -0.041290283, -0.05126953, 0.010009766, -0.024520874, 0.012802124, -0.01663208, 0.011497498, 0.052490234, 0.032989502, -0.044403076, -0.009155273, 0.005252838, 0.022262573, -0.0009675026, 0.011878967, -0.03866577, -0.035614014, 0.0066184998, 0.026306152, 0.0284729, -0.036834717, -0.0234375, 0.04647827, 0.0009264946, -0.024414062, -0.053588867, 0.03543091, 0.03375244, -0.013221741, 0.0064468384, -0.05026245, -0.030593872, 0.0317688, -0.04272461, 0.017166138, 0.0068626404, -0.026916504, 0.006210327, 0.012886047, -0.08703613, 0.030517578, -0.056396484, -0.017486572, 0.012702942, -0.002407074, 0.0072784424, -0.013084412, -0.07659912, -0.027832031, 0.08770752, 0.03439331, -0.003627777, -0.0104904175, -0.06021118, 0.034118652, 0.032318115, 0.014282227, -0.041809082, 0.025390625, 0.010269165, -0.025161743, 0.050720215, 0.0062065125, 0.019332886, -0.0031795502, 0.014976501, 0.0039978027, -0.04937744, 0.011474609, -0.015327454, -0.01537323, 0.0022087097, 0.002193451, 0.025238037, 0.010894775, 0.0074539185, -0.023010254, -0.0048713684, -0.00012934208, 0.030944824, 0.048675537, 0.03805542, 0.0098724365, -0.003194809, -0.031036377, 0.02229309, -0.035583496, 0.022323608, 0.083740234, 0.023284912, 0.011329651, -0.027832031, 0.0023345947, -0.014038086, 0.0053215027, 0.0045776367, -0.024459839, -0.012588501, 0.042907715, -0.01727295, -0.013664246, -0.03857422, 0.04083252, 0.046417236, -0.04046631, -0.05545044, 0.04852295, 0.034118652, 0.051971436, -0.015594482, -0.025634766, -0.052978516, -0.030166626, -0.027908325, 0.030334473, -0.037139893, -0.006046295, 0.027832031, 0.014022827, -0.018203735, -0.009124756, -0.047210693, 0.014053345, -0.0016851425, 0.03186035, 0.036376953, 0.055725098, -0.011329651, -0.007713318, 0.002954483, 0.00021719933, -0.027618408, -0.0044136047, 0.022842407, 0.07763672, -0.12182617, -0.10015869, -0.0579834, 0.10095215, -0.04196167, -0.03878784, 0.056732178, -0.007835388, 0.05316162, 0.014572144, 0.0024757385, 0.010093689, 0.021133423, -0.017623901, 0.006679535, -0.008293152, 0.03540039, -0.036376953, 0.047454834, -0.023162842, -0.047088623, 0.0031108856, -0.022399902, 0.022338867, 0.012161255, -0.028366089, 0.024795532, -0.028198242, 0.018295288, 0.058746338, 0.027694702, -0.027938843, -0.004928589, 0.01158905, -0.059326172, -0.056732178, -0.014801025, -0.018920898, 0.032928467, 0.017608643, 0.0078086853, 0.015327454, -0.007434845, 0.024215698, -0.00472641, 0.011405945, -0.017349243, -0.008514404, -0.00466156, 0.019943237, 0.0030212402, 0.021362305, 0.03189087, 0.033813477, 0.032073975, -0.0023555756, 0.040405273, 0.07733154, 0.04928589, -0.025039673, -0.032287598, 0.029754639, -0.007461548, -0.013320923, -0.006134033, 0.019760132, -0.031951904, 0.0058555603, -0.014923096, -0.0051345825, 0.005405426, 0.032989502, -0.0018062592, 0.035827637, 0.019363403, -0.0035800934, 0.039916992, -0.03555298, 0.004257202, -0.05545044, 0.050842285, -0.030822754, 0.0059394836, 0.051361084, -0.022125244, 0.032592773, 0.0020503998, 0.047607422, 0.047668457, -0.009063721, -0.01007843, 0.0011844635, 0.024307251, -0.012313843, -0.014717102, 0.01737976, -0.006942749, -0.030929565, 0.018478394, 0.015975952, -0.03955078, 0.013442993, 0.008850098, -0.011734009, 0.0012235641, 0.013328552, -0.051696777, 0.0053138733, 0.033843994, -0.06225586, -0.050354004, -0.012588501, -6.389618e-05, -0.04550171, 0.0118255615, -0.029968262, -0.033172607, 0.048706055, 0.039367676, 0.002248764, -0.026855469, -0.026321411, 0.014198303, -0.064575195, 0.012130737, -0.016815186, 0.034332275, -0.012283325, -0.0129776, -0.021026611, -0.06817627, 0.023529053, -0.0042762756, 0.04498291, -0.0040779114, 0.037078857, -0.009292603, 0.0064582825, 0.043884277, -0.000500679, 0.004261017, 0.017410278, -0.04724121, -0.05328369, -0.029388428, -0.03274536, 0.02986145, -0.037200928, -0.012435913, -0.042510986, 0.027664185, 0.052124023, 0.008338928, 0.021820068, 0.0016098022, 0.014419556, -0.0041046143, -0.007247925, 0.045684814, -0.007320404, -0.059783936, -0.012756348, -0.007904053, 0.0058937073, 0.006248474, -0.040924072, -0.028305054, 0.023651123, 0.009483337, 0.0063591003, -0.032073975, 0.023712158, -0.030334473, 0.01309967, -0.020324707, 0.0021877289, -0.087646484, -0.036621094, -0.043792725, -0.08721924, -0.08148193, -0.017532349, -0.009407043, -0.056732178, -0.015914917, 0.027374268, 0.007041931, -0.015235901, 0.0027332306, 0.0015888214, 0.0056877136, 0.04547119, 0.023605347, -0.054748535, -0.04458618, -0.037750244, -0.037506104, 0.04776001, -0.019805908, -0.026138306, 0.009284973, -0.0060577393, 0.008758545, 0.021469116, 0.004573822, 0.0054397583, 0.016296387, 0.02041626, 0.045684814, 0.011123657, -0.017608643, 0.020248413, 0.07165527, 0.014381409, -0.010795593, 0.020935059, 0.017990112, -0.0006389618, -0.0039520264, -0.03363037, -0.014343262, -0.037322998, 0.01638794, -0.021499634, 0.0035152435, 0.0014457703, -0.06689453, 0.012214661, -0.04348755, -0.008720398, 0.06994629, -0.004524231, -0.0154800415, 0.010986328, -0.01360321, 0.028015137, -0.008323669, 0.041778564, 0.0027637482, 0.014541626, -0.05947876, 0.00831604, -0.026992798, 0.03164673, 0.01133728, -0.018356323, 0.0070762634, 0.009590149, 0.02822876, -0.010635376, 0.020507812, -0.001004219, -0.024017334, 0.027328491, 0.01953125, -0.032348633, 0.026916504, -0.010215759, -0.0011854172, 0.015670776, -0.04876709, -0.031402588, -0.01386261, -0.041412354, 0.005470276, -0.024108887, -0.020004272, -0.008811951, -0.06274414, 0.006526947, -0.043670654, 0.005870819, 0.0178833, 0.04135132, 0.018295288, 0.010559082, 0.0077171326, 0.045959473, 0.05609131, 0.059143066, -0.07489014, -0.03756714, -0.053985596, -0.01902771, 0.030288696, 0.019058228, -0.031982422, 0.05291748, -0.009628296, -0.0029640198, 0.011497498, -0.016693115, 0.006790161, 0.028549194, -0.01953125, 0.0045700073, -0.053833008, 0.013008118, 0.005001068, 0.014411926, -0.02192688, -0.033569336, -0.0048217773, -0.063964844, 0.080078125, 0.030410767, -0.013717651, 0.06286621, 0.031463623, -0.007080078, 0.05432129, 0.020736694, 0.022476196, 0.032440186, 0.051635742, -0.0003027916, 0.017623901, 0.02204895, -0.039886475, 0.0027160645, -0.007282257, -0.061920166, 0.014419556, 0.010665894, -0.012481689, -0.017227173, -0.00349617, 0.0003273487, -0.014221191, -0.0037441254, -0.03250122, 0.0020446777, -0.033325195, 0.03137207, 0.021987915, -0.0209198, 0.01689148, -0.031158447, 0.034332275, -0.030426025, -0.008903503, 0.042022705, 0.042022705, 0.03479004, -0.0013856888, 0.0033779144, 0.013923645, -0.00957489, -0.01108551, -0.019256592, -0.026794434, 0.024337769, 0.0029029846, 0.018173218, 0.033294678, -0.0020713806, 0.027252197, -0.025604248, -0.050750732, -0.040771484, -0.014060974, 0.017349243, 0.009208679, -0.022415161, 0.0063095093, 0.046936035, -0.05734253, 0.03967285, 0.006122589, -0.03326416, 0.007827759, -0.031280518, -0.018157959, -0.06524658, -0.036895752, 0.00749588, -0.0046539307, -0.029663086, 0.01612854, -0.023284912, -0.03338623, -0.0178833, 0.020812988, -0.0236969, -0.023834229, 0.019424438, 0.0012197495, 0.056152344, 0.026428223, -0.007637024, -0.0033626556, -0.013076782, -0.010818481, -0.0021152496, -0.037597656, -0.008178711, -0.042053223, -0.023010254, 0.0051841736, 0.0058937073, 0.056427002, -0.0149002075, 0.024215698, -0.026641846, 0.010650635, -0.024276733, -0.037994385, 0.051513672, -0.040527344, -0.01133728, -0.04296875, 0.03491211, -0.020309448, -0.006767273, -0.024597168, 0.006198883, 0.0029258728, 0.026779175, -0.047698975, -0.033721924, -0.0068206787, 0.0046806335, 0.005039215, 0.0017929077, -0.023223877, 0.008010864, 0.009376526, 0.021118164, -0.05340576, -0.02748108, -0.052337646, 0.012214661, 0.042175293, -0.007068634, -0.011512756, -0.03225708, 0.006084442, -0.060913086, 0.07336426, 0.07952881, -0.018676758, 0.010063171, -0.00818634, -0.026290894, -0.016540527, -0.012001038, -0.0013580322, 0.011489868, -0.0010585785, -0.021148682, 0.003604889, -0.02961731, -0.0045204163, -0.047698975, -0.025238037, -0.019561768, 0.0011358261, -0.007331848, -0.046447754, 0.014892578, -0.01638794, 0.0013551712, 0.03503418, -0.014030457, -0.029922485, 0.040771484, -0.019866943, -0.023330688, -0.017181396, 0.0055351257, -0.009086609, -0.010894775, -0.025177002, -0.07470703, 0.00566864, 0.062927246, -0.032318115, 0.022384644, 0.058288574, -0.02406311, -0.0008172989, -0.0056037903, 0.0178833, -0.006149292, -0.04220581, 0.028411865, -0.045043945, -0.028945923, -0.013435364, -0.04736328, 0.05038452, -0.046722412, -0.064331055, 0.029968262, -0.0033607483, 0.011222839, -0.056549072, 0.023910522, -0.011772156, -0.020095825, -0.052459717, -0.017745972, -0.011627197, 0.04827881, 0.059936523, -0.056427002, 0.047180176, 0.0030536652, -0.058563232, 0.003440857, 0.014717102, -0.0042648315, 0.029815674, -0.007724762, 0.0036067963, -0.01789856, -0.0062675476, -0.02557373, -0.017929077, -0.02218628, -0.018722534, -0.014709473, 0.017410278, 0.009269714, -0.007896423, -0.0020446777, 0.046539307, 0.03289795, -0.008148193, -0.0033493042, 0.013877869, 0.012397766, 0.010505676, -0.013977051, 0.023223877, -0.068847656, -0.03475952, -0.055389404, 0.00017368793, -0.011070251, 0.06591797, -0.03265381, 0.032073975, 0.01751709, -0.017974854, 0.016952515, 0.036468506, -0.07183838, -0.005302429, -0.00881958, 0.0027427673, -0.022155762, -0.006877899, 0.052581787, -0.041625977, -0.04006958, -0.047332764, 0.060394287, 0.005420685, 0.050994873, 0.056518555, -0.012413025, 0.014694214, 0.0423584, 0.023361206, -0.03375244, 0.03010559, 0.024765015, -0.057281494, -0.01751709, -0.01928711, 0.0020751953, 0.0035991669, -0.013450623, -0.041137695, 0.038513184, -0.017501831, 0.0032978058, -0.044433594, -0.036895752, 0.0026836395, -0.046783447, 0.0066947937, -0.04034424, -0.058441162, 0.0023651123, -0.0670166, -0.024230957, 0.012359619, 0.057281494, 0.052734375, 0.040130615, -0.05645752, 0.04385376, 0.08984375, -0.05404663, 0.0904541, -0.020462036, -0.029647827, -0.0066375732, 0.025253296, 0.042785645, 0.025390625, 0.02909851, -0.010948181, -0.018692017, 0.0050315857, 0.014930725, -0.0020599365, -0.01739502, 0.0005393028, 0.022598267, 0.030700684, 0.0009794235, -0.0011425018, 0.021850586, 0.023529053, -0.020721436, -0.011764526, 0.02029419, -0.030044556, -0.008659363, -0.034942627, 0.024658203, 0.021362305, 0.011123657, 0.010284424, 0.03616333, 0.034118652, -0.008071899, -0.01625061, 0.013038635, -0.019989014, -0.0017089844, -0.004032135, -0.015159607, 0.015930176, -0.05041504, -0.035308838, 0.042022705, -0.005126953, 0.008911133, 0.03277588, 0.0025520325, -0.0020313263, -0.010551453, 0.03250122, 0.01675415, -0.06604004, 0.027832031, 0.0037078857, 0.006038666, 0.028884888, -0.025283813, -0.02758789, -0.0028076172, 0.04849243, 0.008033752, 0.083984375, -0.03955078, 0.016998291, -0.015029907, -0.0016374588, -0.027557373, -0.016616821, -0.0069236755, -0.007358551, -0.003458023, 0.0082473755, -0.011817932, 3.6239624e-05, 0.014213562, -0.05783081, -0.0069236755, -0.011161804, 0.010955811, -0.012245178, 0.018218994, -0.029418945, -0.010345459, 0.04711914, 0.0317688, -0.013023376, -0.013046265, -0.025787354, -0.01159668, 0.030014038, -0.0063705444, -0.018341064, 0.046844482, -0.011047363, 0.02961731, 0.015304565, -0.005619049, -0.02722168, -0.023376465, -0.009994507, 0.0006933212, -0.0013399124, -0.01020813, -0.021575928, 0.03729248, 0.022872925, 0.03869629, -0.03729248, 0.01802063, 0.032348633, 0.00983429, 0.038269043, 0.006591797, 0.007663727, -0.051330566, 0.0041160583, -0.0005803108, -0.016983032, 0.015563965, 0.032348633, 0.0034313202, -0.026107788, -0.028518677, 0.021469116, 0.008483887, -0.025634766, -0.0046958923, -0.045959473, -0.010658264, -0.013328552, -0.03010559, -0.01890564, -0.002122879, -0.036254883, 0.024597168, 0.020507812, -0.016433716, -0.009292603, -0.0103302, 0.045135498, -0.024642944, 0.02784729, 0.0116119385, 0.017318726, 0.020477295, 0.083862305, -0.038360596, -0.07977295, -0.048736572, 0.024383545, -0.052520752, -0.009429932, 0.0057678223, 0.0066719055, 0.022094727, 0.013763428, 0.062561035, -0.0025997162, 0.053344727, -0.01335144, 0.0074310303, -0.042999268, -0.034576416, 0.070617676, 0.01436615, -0.03161621, -0.025177002, 0.022277832, 0.015090942, 0.05444336, 0.028503418, 0.009933472, -0.06488037, -0.028793335, -0.070617676, 0.030456543, -0.028945923, -0.003545761, 0.0057678223, 0.006259918, -0.033721924, 0.0011672974, 0.02017212, 0.02192688, 0.03149414, 0.024124146, 0.023330688, 0.003648758, -0.029006958, -0.012001038, -0.010925293, 0.0005941391, -0.018554688, -0.060821533, 0.028884888, 0.027542114, -0.044158936, 0.050933838, 0.071899414, -0.0034484863, 0.010948181, -0.03463745, 0.004386902, -0.03024292, -0.030670166, -0.038635254, -0.012702942, -0.043029785, 0.030319214, 0.028564453, -0.03366089, -0.035125732, 0.0034599304, -0.012306213, -0.014984131, -0.043029785, 0.02609253, -0.038360596, -0.01689148, 0.04525757, 0.00548172, 0.01953125, -0.039123535, -0.05456543, -0.042907715, -0.009544373, 0.01474762, -0.022338867, -0.0076904297, 0.022140503, 0.02116394, 0.07067871, -0.045043945, -0.05303955, -0.044281006, 0.024002075, -0.0016784668, 0.024520874, 0.050811768, -0.020233154, 0.034423828, -0.0016317368, 0.016204834, 0.0076408386, -0.003501892, 0.013618469, -0.015159607, 0.0037403107]}, "B086Z452V9": {"id": "B086Z452V9", "original": "Brand: DuroMax\nName: DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "metadata": {"Name": "DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue", "Brand": "DuroMax", "Description": "", "Features": "All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.006034851, 0.0024089813, -0.025375366, -0.05105591, 0.006462097, -0.012260437, -0.014381409, -0.004055023, -0.04953003, 0.004737854, -0.002664566, 0.03387451, -0.0138549805, -0.030792236, 0.034118652, -0.043182373, -0.00283432, 0.033081055, 0.01725769, 2.3841858e-07, 0.018325806, 0.017440796, -0.04840088, 0.06530762, 0.008346558, 0.0063438416, 0.031204224, -0.023986816, 0.03338623, -0.013824463, 0.03805542, -0.016174316, 0.046875, -0.025878906, 0.0012979507, -0.020462036, -0.02243042, -0.0058135986, -0.033111572, 0.0061836243, -0.016677856, 0.015625, 0.031173706, 0.0054130554, -0.018676758, -0.038024902, 0.023605347, -0.0036621094, -0.0045433044, -0.0044136047, -0.050720215, 0.008163452, -0.038146973, 0.010520935, 0.018447876, 0.009338379, -0.0435791, -0.010818481, 0.01777649, 0.012107849, 0.020431519, -0.025375366, 0.03036499, -0.0017881393, -0.050323486, -0.0158844, 0.015113831, -0.018676758, 0.053497314, -0.039794922, -0.02218628, 0.056854248, 0.02192688, -0.0010910034, -0.02671814, -0.004673004, 0.014549255, 0.024291992, 0.024414062, -0.0060272217, -1.5735626e-05, -0.027114868, 0.0418396, 0.01626587, -0.025360107, 0.008773804, -0.009132385, -0.0025558472, -0.0021095276, -0.015304565, -0.0079193115, 0.015357971, -0.018341064, 0.013946533, -0.021774292, -0.012229919, 0.019058228, -0.04083252, 0.055877686, 0.008720398, 0.048187256, -0.08691406, 0.055145264, 0.013786316, -0.008872986, 0.005710602, 0.007671356, -0.013198853, 0.009498596, 0.013687134, -0.025482178, 0.015296936, -0.002571106, -0.014503479, -0.02796936, 0.030197144, -0.017150879, 0.012451172, 0.011962891, 0.03717041, 0.03918457, 0.038848877, 0.012969971, -0.007270813, 0.010719299, 0.016799927, -0.023757935, -0.056427002, 0.019836426, 0.011695862, -0.06555176, 0.02015686, 0.044433594, 0.00737381, 0.0027561188, -0.016357422, -0.009887695, 0.035186768, 0.009613037, -0.022567749, 0.031799316, -0.014381409, 0.010635376, 0.05307007, 0.024276733, 0.0011224747, 0.03652954, 0.034973145, 0.0026798248, -0.022659302, 0.03527832, 0.010871887, 0.0035476685, 0.030471802, 0.03189087, -0.0038967133, 0.01737976, -0.0073242188, 0.038604736, 0.003742218, -0.011260986, -0.020492554, 0.014640808, -0.029830933, -0.047576904, 0.01600647, -0.014343262, -0.020004272, 0.012176514, 0.0022964478, -0.009483337, 0.06530762, -0.0049743652, -0.008850098, 0.02357483, -0.035461426, -0.023422241, 0.046081543, 0.035308838, -0.08526611, -0.06451416, -0.057495117, 0.045806885, -0.006084442, -0.00207901, 0.010192871, 0.008369446, 0.009101868, 0.0029201508, 0.00248909, 0.026168823, 0.021270752, -0.014884949, -0.007858276, 0.0027389526, -0.011077881, 0.02003479, 0.010482788, -0.000890255, 0.0069618225, -0.02079773, 0.019332886, 0.008644104, -0.0039405823, -0.025436401, -0.014518738, -0.008010864, 0.030838013, -0.003534317, -0.0066871643, -0.0011529922, -0.028869629, 0.017028809, -0.04812622, -0.020263672, 0.028778076, -0.044555664, 0.047729492, 0.026870728, 0.034210205, 0.014961243, -0.00076532364, 0.037078857, -0.04486084, 0.046539307, 0.004638672, -0.027389526, -0.010864258, 0.03363037, -0.01550293, 0.005180359, 0.062438965, 0.011940002, 0.024719238, -0.034454346, 0.03475952, 0.02520752, 0.04159546, -0.026275635, -0.0121154785, 0.024307251, -0.03086853, -0.018508911, -0.004005432, -0.01222229, 0.007843018, 0.022003174, 0.0034942627, -0.015823364, 0.032196045, -0.01789856, -0.0039596558, 0.023971558, 0.03704834, -0.029724121, 0.023925781, -0.012542725, 0.030914307, -0.038970947, 0.016921997, -0.00081062317, 0.045440674, 0.019195557, 0.016143799, -0.011604309, 0.015640259, 0.040039062, 0.040924072, -0.014625549, -0.008422852, 0.01965332, 0.049072266, -0.0061302185, 0.017807007, 0.040649414, 0.023345947, -0.041168213, -0.010719299, 0.04486084, 0.025344849, 0.010215759, -0.031021118, -0.0050849915, -0.0021533966, 0.064575195, 0.004890442, 0.026611328, 0.019195557, -0.010826111, -0.036590576, 0.011528015, -0.017181396, -0.03845215, -0.0057411194, 0.015823364, -0.05331421, 0.029174805, -0.046722412, 0.033294678, -0.05178833, 0.040527344, 0.06335449, -0.062316895, 0.07183838, -0.008033752, -0.0044898987, 0.0006785393, -0.027786255, -0.02746582, -0.008018494, -0.04800415, 0.03164673, 0.02998352, -0.049957275, 0.047943115, 0.016677856, -0.018218994, 0.02041626, -0.00969696, 0.02734375, -0.059417725, 0.009666443, 0.011428833, -0.0013599396, 0.03250122, 0.002248764, -0.02079773, 0.016998291, -0.021270752, -0.00642395, -0.004749298, -0.022628784, -0.012565613, 0.023498535, 0.011405945, -0.008598328, -0.008758545, 0.058654785, 0.008522034, -0.03881836, 0.01626587, -0.036010742, -0.004211426, 0.032318115, -0.024520874, -0.021453857, 0.052337646, -0.01374054, -0.015975952, 0.03540039, 0.0015411377, -0.0047187805, 0.028808594, 0.0069274902, 0.02558899, -0.087768555, -0.05114746, -0.022918701, -0.070007324, -0.07220459, -0.008888245, -0.033294678, -0.08001709, -0.023239136, 0.06652832, -0.0050239563, -0.0020561218, -0.06842041, -0.021560669, -0.0033550262, 0.007820129, -0.009254456, -0.05227661, -0.01247406, -0.019348145, 0.012237549, 0.00699234, -0.03250122, 0.078430176, 0.021636963, -0.0040245056, -0.0042381287, -0.018066406, -0.020568848, -0.020614624, 0.039642334, 0.024642944, 0.017425537, 0.0070228577, -0.031921387, 0.030548096, 0.05908203, -0.010848999, -0.014884949, 0.03515625, 0.010482788, -0.039794922, -0.018356323, -0.059570312, -0.012741089, -0.075927734, 0.030548096, -0.011924744, 0.013702393, -0.040283203, -0.0028095245, -0.040374756, -0.06738281, 0.001865387, 0.026229858, 0.011314392, 0.007217407, -0.0052375793, 0.017654419, 0.010871887, -0.043914795, 0.014923096, -0.017471313, -0.0035800934, 0.01838684, 0.058502197, -0.07720947, 0.045532227, 0.050079346, -0.029754639, 0.03048706, -0.041625977, 0.0069999695, 0.008743286, 0.059539795, -0.020355225, 0.025283813, -0.0058250427, 0.027053833, 0.008049011, -0.0034694672, -0.037261963, -0.11743164, 0.0062294006, -0.04055786, -0.047943115, 0.014175415, 0.013557434, 0.0390625, -0.024871826, 0.007019043, 0.0012845993, -0.05050659, 0.013900757, -0.048431396, 0.017471313, -0.010139465, -0.006011963, -0.007835388, -0.008224487, 0.08105469, 0.024536133, 0.021011353, 0.01737976, -0.01625061, -0.03274536, -0.010520935, 0.02128601, -0.03778076, -0.011726379, -0.07141113, 0.031555176, -0.010238647, -0.021636963, 0.014465332, -0.034484863, 0.09039307, -0.016296387, -0.030029297, 0.021362305, -0.053863525, 0.0045318604, 0.03062439, -0.0043563843, -0.03540039, -0.049560547, 0.0102005005, -0.09051514, 0.032165527, 0.024169922, -0.008544922, 0.041381836, 0.044403076, -0.0128479, 0.07507324, 0.035125732, 0.01612854, -0.00045204163, 0.089782715, -0.04156494, 0.02798462, 0.024795532, -0.048309326, -0.032043457, -0.015571594, -0.058410645, 0.0012207031, -0.0016021729, 0.01473999, -0.07092285, 0.006374359, 0.022125244, -0.024032593, 0.035003662, -0.06842041, -0.014373779, -0.03353882, -0.02532959, -0.0017633438, -0.023132324, 0.03692627, -0.026535034, -0.0107803345, -0.006855011, 0.009590149, -0.028518677, 0.0031528473, -0.011405945, 0.023712158, 0.012397766, -0.028167725, -0.0017518997, 0.00063705444, -0.025772095, 0.0039367676, -0.0070533752, 0.030700684, 0.04248047, 0.011131287, 0.008758545, -0.02078247, -0.02960205, -0.042419434, -0.047546387, -0.0072631836, 0.017089844, 0.024993896, -0.02947998, 0.0048103333, -0.013923645, 0.00089883804, -0.003572464, 0.06628418, -0.09313965, 0.022216797, 0.0058517456, 0.012535095, -0.053009033, -0.017730713, -0.010932922, 0.007381439, -0.010284424, -0.0028038025, -0.031585693, -0.011001587, 0.019302368, -0.017852783, -0.023269653, 0.0064086914, 0.024246216, -0.0158844, 0.03503418, -0.035705566, -0.009101868, -0.027435303, -0.016143799, -0.02508545, 0.0005979538, -0.034576416, -0.014755249, -0.010139465, -0.05557251, 9.7334385e-05, -0.030059814, 0.012702942, 0.023605347, 0.026351929, -0.0345459, -0.019256592, -0.035247803, -0.00844574, 0.06744385, 0.006465912, -0.009063721, -0.016220093, 0.0440979, -0.029754639, 0.040374756, -0.0029773712, 0.0035305023, -0.0146865845, 0.0033073425, -0.121154785, -0.07910156, -0.015563965, 0.0059318542, 0.0028934479, 0.001906395, -0.0076828003, 0.02835083, 0.004535675, 0.01638794, 0.01777649, -0.029067993, 0.008644104, -0.0018081665, 0.05114746, -0.014183044, -0.04257202, -0.021560669, 0.014480591, -0.044158936, 0.014640808, 0.081726074, 0.036071777, 0.046051025, 0.0076828003, 0.013977051, -0.0062828064, -0.014404297, 0.015808105, 0.007774353, 0.018737793, -0.036193848, -0.005592346, -0.009391785, -0.0135650635, -0.036315918, -0.052764893, -0.033416748, 0.008262634, 0.011199951, 0.00497818, 0.043121338, 0.013946533, -0.027114868, -0.0020809174, -0.0546875, 0.009529114, 0.056884766, -0.0038070679, 0.003692627, 0.009216309, 0.0054244995, 0.025756836, 0.006164551, 0.019500732, -0.055999756, 0.034301758, 0.026687622, 0.049957275, -0.013511658, 0.017700195, -0.013206482, -0.05239868, -0.068725586, -0.047729492, 0.028625488, -0.05340576, 0.018127441, 0.015525818, 0.03451538, 0.022491455, 0.0181427, -0.022140503, -0.00016951561, 0.044555664, 0.039794922, -0.0017471313, 0.027832031, 0.04296875, 0.02166748, 0.00844574, 0.0309906, -0.034423828, 0.031021118, 0.031143188, 0.009925842, 0.0053901672, -0.020965576, 0.07348633, -0.0005226135, -0.047698975, 0.002910614, -0.011459351, -0.0046577454, 0.006629944, -0.0141067505, -0.025421143, 0.011413574, 0.0007586479, 0.012893677, 0.0052375793, -0.029434204, -0.03414917, 0.0087509155, 0.034973145, 0.0009651184, 0.0345459, -0.02079773, 0.03564453, 0.014251709, -0.031173706, 0.0029277802, 0.029174805, -0.0082092285, -0.02796936, -0.054840088, -0.0078048706, -0.03604126, 0.0006713867, -0.0034122467, -0.023712158, -0.003528595, 0.053833008, 0.013809204, 0.015449524, 0.01637268, -0.020904541, -0.004096985, -0.0065574646, -0.012046814, 0.027755737, 0.0049362183, -0.006477356, 0.0018625259, -0.026168823, 0.0053749084, -0.011734009, -0.026733398, 0.01574707, 0.042236328, -0.044921875, -0.026184082, 0.009391785, 0.010093689, 0.012962341, 0.0047073364, -0.004802704, -0.06210327, 0.006164551, 0.0056610107, -0.043426514, -0.042053223, -0.033813477, 0.0099105835, -0.0112838745, -0.050201416, -0.04675293, 0.0107803345, -0.0051574707, 0.044555664, -0.03189087, -0.06561279, -0.003332138, -0.043701172, -0.0025596619, 0.020324707, 0.024353027, 0.0073242188, 0.041046143, -0.00056505203, 0.0362854, 0.011131287, 0.013031006, 0.028518677, -0.01197052, 0.025344849, 0.022125244, -0.0047683716, 0.028884888, 0.0060653687, -0.020645142, -0.033813477, 0.0007958412, 0.002588272, 0.032836914, -0.011444092, 0.010917664, -0.030029297, 0.0030345917, -0.01802063, 0.05053711, -0.04248047, 0.0040283203, -0.010116577, 0.033355713, 0.046417236, -0.0051002502, 0.024871826, -0.026184082, -0.034210205, 0.0158844, 0.015129089, -0.02772522, 0.024032593, 0.009765625, -0.052337646, -0.0063095093, -0.050445557, -0.0019464493, -0.027145386, 0.0496521, -0.027816772, -0.019577026, 0.018997192, -0.05709839, 0.028961182, 0.01574707, 0.028442383, -0.002292633, -0.014297485, -0.035858154, 0.02029419, 0.0016422272, 0.02909851, 0.042541504, -0.013420105, 0.019424438, -0.050567627, -0.03427124, 0.049957275, -0.020050049, -0.011642456, -0.007068634, -0.01651001, -0.057159424, -0.034729004, 0.0112838745, -0.029006958, -0.018081665, 0.03591919, 0.06311035, 0.0053634644, 0.033172607, -0.04928589, -0.0044555664, -0.04724121, -0.021255493, -0.027130127, -0.014945984, 0.00042963028, 0.026153564, 0.020385742, 0.06591797, 0.025650024, -0.01737976, 0.02810669, 0.033081055, -0.010688782, -0.006980896, 0.038238525, -0.018630981, -0.07727051, -0.02281189, 0.037200928, -0.014862061, 0.05053711, -0.0072250366, -0.02619934, 0.051757812, -0.020385742, 0.017807007, 0.042388916, 0.054107666, 0.02017212, 0.015625, -0.056884766, -0.020462036, -0.020324707, -0.0005683899, -0.024856567, 0.046722412, 0.0054969788, -0.06274414, -0.015991211, -0.012229919, 0.029251099, -0.054626465, 0.034240723, -0.02571106, 0.025405884, 0.049957275, -0.01902771, -0.010231018, -0.0022392273, 0.007133484, 0.008338928, 0.02267456, -0.012763977, 0.039031982, 0.0063972473, 0.035461426, -0.070617676, 0.06390381, -0.036987305, -0.09124756, 0.0041656494, -0.020828247, -0.044433594, -0.016143799, -0.05404663, -0.02168274, -0.036071777, -0.058685303, 0.02949524, -0.016921997, -0.04095459, -0.032287598, 0.011756897, 0.003622055, -0.03729248, -0.013130188, -0.0028896332, 0.035186768, -0.019226074, 0.000992775, -0.014625549, -0.05529785, -0.028289795, 0.04598999, -0.1005249, -0.0413208, 0.03201294, -0.011184692, 0.016204834, 0.02116394, 0.050109863, 0.07714844, 0.024673462, 0.006034851, 0.060913086, -0.020080566, -0.048309326, 0.030426025, 0.03857422, -0.043273926, 0.04006958, 0.034240723, -0.037597656, 0.020126343, -0.00062561035, -0.020721436, -0.009017944, 0.009864807, 0.024276733, -0.047058105, -0.017303467, -0.002199173, 0.025650024, -0.0035533905, -0.03970337, 0.028015137, 0.018325806, 0.05166626, 0.0028152466, -0.010276794, 0.06640625, -0.0093688965, -0.05130005, -0.056488037, -0.049224854, 0.009399414, 0.010299683, -0.07366943, 0.006538391, -0.032440186, -0.036071777, 0.014350891, 0.027893066, -0.02658081, -0.02748108, 0.03111267, 0.007118225, -0.036193848, 0.010475159, -0.0060157776, -0.03225708, -0.04928589, 0.013916016, -0.03640747, -0.0015668869, -0.011383057, -0.055511475, 0.015975952, -0.026245117, -0.038604736, -0.010421753, 0.0625, -0.015457153, 0.0043754578, 0.031829834, -0.023773193, -0.017501831, 0.02810669, 0.011436462, -0.0029067993, -0.02520752, 0.011817932, 0.035217285, -0.009216309, -0.02973938, 0.01763916, -0.052764893, -0.04623413, -0.04812622, 0.020187378, 0.022705078, -0.0010251999, 0.07989502, -0.010734558, 0.009246826, -0.0014181137, -0.046295166, -0.0022888184, -0.030563354, -0.027877808, -0.023208618, -0.0060691833]}, "B00TG8GLCS": {"id": "B00TG8GLCS", "original": "Brand: Raypak\nName: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater\nDescription: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool's surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.\nFeatures: Cupro-nickel gas pool and spa heater\nPagoda design ensures heater stays active in harsh weather conditions\nMicroprocessor controlled thermostat\nDigital display\nOn-board self diagnostics\n", "metadata": {"Name": "Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater", "Brand": "Raypak", "Description": "Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool's surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.", "Features": "Cupro-nickel gas pool and spa heater\nPagoda design ensures heater stays active in harsh weather conditions\nMicroprocessor controlled thermostat\nDigital display\nOn-board self diagnostics", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.003282547, 0.0021419525, -0.042877197, -0.014770508, -0.015449524, -0.03753662, 0.0069122314, 0.021194458, 0.030731201, 0.017288208, -0.014053345, -0.02166748, 0.0066871643, -0.050872803, -0.020629883, -0.031433105, 0.010368347, -0.032562256, -0.004310608, -0.026992798, 0.00459671, -0.0357666, 0.03100586, 0.0062408447, -0.02482605, 0.030227661, 0.080444336, -0.019699097, -0.00982666, -0.020553589, 0.02432251, -0.013259888, 0.041625977, -0.0006403923, -0.038757324, 0.03390503, 0.0014677048, -0.001958847, -0.025421143, 0.015640259, -0.008621216, 0.024047852, -0.00920105, -0.05441284, -0.056610107, 0.018081665, -0.02281189, 0.027740479, 0.0023117065, 0.012161255, -0.0045280457, -0.059661865, -0.0052490234, -0.002779007, -0.00894165, -0.010429382, -0.048187256, 0.0045394897, 0.016601562, -0.011131287, -0.014556885, -0.01889038, 0.02722168, 0.017547607, -0.06829834, -0.0025672913, 0.07330322, -0.019546509, 0.032348633, -0.06640625, -0.011543274, 0.072265625, 0.0062332153, -0.032592773, -0.052124023, -0.008735657, 0.006679535, -0.035736084, 0.011207581, 0.002445221, 0.017456055, -0.003665924, 0.022872925, -0.012214661, 0.009155273, -0.0066337585, -0.00096035004, -0.005016327, -0.02230835, -0.068359375, -0.00957489, -0.01701355, -0.072265625, 0.010185242, 0.010368347, -0.057617188, -0.07299805, -0.11364746, 0.05014038, 0.04876709, 0.033233643, -0.04284668, 0.05871582, 0.015159607, -0.024398804, 0.020248413, -0.004825592, -0.0027675629, -0.017578125, 0.012512207, -0.02558899, -0.062316895, -0.07055664, -0.052978516, 0.016342163, 0.06567383, -0.052581787, -0.001947403, -0.0017528534, -0.034729004, 0.0064926147, 0.00969696, 0.021713257, 0.0015897751, 0.005870819, 0.011642456, -0.019973755, -0.019042969, -0.030593872, 0.032836914, -0.02468872, 0.0011806488, 0.07989502, 0.05307007, 0.014175415, -0.006526947, 0.051940918, -0.046691895, 0.04473877, -0.015289307, 0.08557129, -0.014251709, -0.016616821, 0.067993164, 0.009773254, 0.040100098, 0.033477783, -0.015960693, -0.01411438, -0.049102783, -0.045532227, 0.032226562, 0.0033435822, 0.021881104, 0.005329132, 0.05303955, -0.015205383, 0.029388428, -0.013389587, 0.014724731, 0.026504517, -0.006126404, -0.025543213, 0.034729004, 0.014411926, -0.003019333, 0.038208008, 0.009849548, 0.016952515, 0.06311035, -0.0010738373, 0.008842468, -0.0029945374, -0.0024337769, -0.00894928, -0.013504028, -0.050598145, 0.080200195, 0.088256836, -0.10638428, -0.061798096, -0.06549072, 0.1459961, -0.038726807, -0.014091492, -0.004425049, 0.010505676, 0.037628174, -0.003850937, 0.031021118, 0.009757996, 0.02330017, 0.030212402, -0.043273926, 0.010177612, -0.019119263, -0.005771637, 0.0012893677, -0.0052452087, 0.009918213, -0.04168701, 0.03439331, -0.02281189, 0.029281616, 0.025009155, 0.012649536, 0.016860962, 0.015701294, 0.007335663, 0.004234314, -0.009918213, -0.047546387, 0.016799927, -0.025527954, -0.026855469, -0.000995636, -0.022262573, 0.009941101, 0.013397217, 0.004634857, -0.0075035095, -0.034729004, 0.0053367615, -0.020004272, 0.034606934, -0.011108398, -0.014190674, -0.012901306, 0.03338623, -0.0053100586, 0.019699097, 0.019973755, 0.041137695, -0.005458832, -0.043273926, 0.009109497, 0.011894226, 0.028503418, -0.02520752, 0.019866943, 0.003753662, -0.04385376, -0.037261963, 0.018692017, -0.08416748, -0.060546875, -0.0039482117, 0.022369385, 0.0027008057, 0.029129028, -0.0070114136, 0.0055999756, 0.024963379, -0.020767212, 0.004211426, 0.023712158, -0.027954102, -0.018371582, 0.004470825, 0.001742363, 0.009002686, 0.0423584, 0.014129639, 0.012138367, 0.045684814, -0.0119018555, 0.018295288, -0.003282547, -0.029220581, 0.009841919, 0.017669678, -0.022521973, -0.019378662, -0.007171631, 0.01966858, 0.014678955, -0.0317688, 0.020553589, -0.0012741089, -0.01108551, -0.0067214966, 0.008911133, -0.013221741, -0.0064964294, 0.013427734, -0.04171753, -0.008216858, -0.009483337, 0.0046424866, 0.0025520325, 0.019607544, -0.001657486, -0.018875122, 0.021362305, -0.0047187805, -0.011444092, 0.0074386597, 0.02859497, 0.018203735, -0.03793335, -0.033721924, 0.013221741, -0.03869629, -0.003162384, 0.0010375977, -0.032073975, -0.023239136, 0.03173828, 0.001865387, -0.029541016, -0.05429077, -0.00919342, 0.01109314, 0.015205383, 0.00969696, -0.010536194, 0.00340271, 0.025665283, -0.0019168854, 0.020645142, -0.02017212, 0.0015172958, -0.0076446533, 0.003610611, 0.018463135, -0.002954483, 0.011383057, 0.00680542, -0.045684814, -0.0072364807, 0.05206299, -0.032287598, 0.02558899, -0.016403198, 0.01576233, -0.020248413, 0.0132751465, 0.018753052, 0.0060424805, -0.027694702, 0.0211792, -0.03765869, -0.017044067, -0.0020427704, -0.020980835, 0.014228821, 0.00092220306, 0.026824951, -0.041229248, -0.018676758, 0.011428833, -0.049316406, -0.03466797, -0.027267456, 0.004924774, 0.00038814545, 0.0029716492, 0.0038890839, 0.041107178, -0.037109375, 0.027038574, -0.044006348, -0.03488159, -0.021728516, 0.055358887, 0.0005722046, -0.04095459, -0.040374756, -0.072753906, -0.04486084, -0.0027866364, -0.048217773, -0.0049591064, -0.032684326, -0.027679443, 0.028457642, 0.016143799, -0.039611816, -0.0023918152, 0.0066108704, 0.016098022, 0.0064811707, 0.024093628, 0.010795593, 0.051727295, 0.0135650635, 0.005256653, 0.02973938, -0.0069999695, -0.012504578, -0.017593384, 0.01600647, 0.01058197, 0.001408577, -0.03817749, -0.040802002, 0.015579224, 0.007221222, -0.052368164, -0.00036644936, -0.055511475, 0.028015137, 0.00217247, -0.0060920715, -0.018997192, -0.08483887, -0.016403198, -0.040740967, 0.0065956116, 0.072387695, -0.012908936, -0.03894043, -0.016235352, -0.040740967, 0.033843994, -0.0019445419, -0.01737976, -0.008010864, -0.015609741, 0.014846802, 0.015304565, -0.026229858, -0.0016021729, 0.02319336, -0.0073890686, 0.016036987, -0.01927185, 0.0011196136, -0.027404785, 0.03842163, 0.0063591003, -0.013969421, -0.023010254, -0.016937256, -0.0025310516, 0.008872986, -0.011489868, -0.009849548, -0.009475708, -0.00944519, -0.004108429, 0.0032081604, 0.03970337, 0.034301758, -0.008049011, 0.007545471, -0.002620697, 0.011138916, 0.0024261475, -0.09008789, 0.024124146, 0.017822266, 0.018936157, 0.013626099, 0.012573242, 0.074279785, -0.029449463, 0.021255493, -0.0059928894, -0.011833191, -0.01474762, -0.033416748, 0.029006958, -0.02470398, 0.019683838, -0.029846191, 0.06689453, 0.004673004, -0.017852783, 0.02545166, -0.0020618439, -0.034057617, 0.01020813, -0.012504578, -0.01020813, -0.009384155, 0.025314331, -0.0034694672, 0.0014486313, -0.012336731, -0.112976074, 0.042785645, -0.029388428, 0.009246826, 0.013961792, -0.011833191, 0.09277344, 0.026733398, -0.014190674, 0.066467285, 0.034057617, -0.005771637, 0.021697998, 0.046173096, -0.02178955, 0.024414062, 0.00756073, -0.04309082, -0.036834717, -0.010948181, -0.068237305, 0.005645752, 0.01876831, 0.014602661, -0.07678223, 0.043060303, 0.03366089, -0.04031372, -0.010444641, -0.08856201, -0.019424438, -0.08117676, -0.019927979, 0.014480591, -0.03265381, -0.010650635, -0.01574707, -0.038970947, -0.028717041, 0.019622803, -0.00774765, -0.019699097, 0.012702942, 0.05947876, -0.022201538, 0.018661499, -0.066101074, -0.017532349, -0.0021896362, -0.011444092, -0.0010328293, -0.030517578, 0.028930664, 0.034973145, -0.0025405884, 0.030212402, 0.0071868896, -0.015037537, -0.014862061, -0.0021648407, 0.012207031, 0.009674072, 0.00017309189, -0.0061683655, 0.0055503845, -0.036895752, -0.056762695, -0.07293701, 0.010818481, -0.049835205, -0.034240723, -0.012588501, -0.034973145, -0.07879639, 0.0061149597, -0.030426025, 0.06213379, -0.034301758, -0.011054993, -0.027160645, 0.0042304993, 0.039093018, -0.06762695, 0.0051956177, -0.05807495, -0.0024528503, 0.027435303, 0.0074386597, 0.068847656, -0.0088272095, -0.006614685, -0.01727295, 0.107666016, -0.01474762, 0.013130188, -0.08746338, -0.007434845, 0.02810669, -0.008735657, 0.0038108826, -0.009101868, 0.03338623, 0.010269165, 0.07720947, -0.03237915, -0.0020980835, 0.033325195, 0.011222839, -0.008956909, -0.0037059784, 0.0725708, -0.036071777, -0.011665344, -0.0041007996, -0.006214142, 0.0012397766, -0.016098022, -0.01222229, 0.04272461, 0.005470276, -0.017608643, 0.026382446, 0.009506226, -0.020141602, -0.0068511963, 0.042388916, 0.007522583, -0.028640747, 0.004840851, 0.047332764, -0.011787415, -0.041625977, 0.023422241, -0.0014076233, 0.031433105, 0.010543823, -0.018096924, 0.035095215, 0.061584473, 0.016098022, 0.01953125, 0.011566162, 0.009719849, -0.033111572, -0.061828613, 0.0010166168, 0.051605225, 0.006664276, -0.026046753, 0.014350891, 0.016693115, -0.0062828064, -0.031341553, -0.04031372, -0.007446289, 0.02407837, -0.012969971, -0.0045661926, 0.00029444695, -0.018432617, -0.03074646, -0.009765625, -0.042663574, 0.0067749023, 0.07720947, -0.019714355, -0.0069885254, 0.03744507, -0.02432251, -0.027236938, 0.016586304, 0.00087451935, 0.014305115, -0.027374268, -0.021011353, -0.02885437, -0.02911377, 0.038024902, -0.0028934479, -0.01550293, -0.10345459, -0.03338623, 0.023925781, -0.07519531, 0.012710571, 0.009536743, 0.03878784, 0.04144287, -0.0066184998, 0.02027893, -0.0050582886, 0.041809082, -0.0026741028, 0.00017786026, 0.03475952, -0.043426514, 0.031341553, 0.014404297, -0.005016327, -0.07696533, 0.006832123, 0.0140686035, 0.00015699863, 0.050109863, -0.04144287, 0.06161499, -0.026000977, -0.05444336, -0.013557434, 0.025146484, -0.024002075, -0.021636963, -0.018493652, -0.053009033, -0.027160645, -0.03677368, -0.008293152, 0.026947021, 0.0016565323, -0.021697998, 0.05303955, -0.0006723404, -0.056243896, -0.027435303, -0.01777649, 0.053527832, -0.058380127, -0.004966736, -0.019332886, 0.009056091, -0.0005965233, -0.0021858215, 0.025405884, 0.021636963, -0.027038574, -0.017074585, -0.005153656, -0.024673462, -0.049041748, 0.07543945, -0.04034424, 0.0027008057, 0.013725281, -0.001739502, 0.0060768127, 0.02558899, -0.06512451, -0.015380859, -0.00062179565, -0.016464233, 0.040222168, -0.04660034, 0.037963867, -0.012046814, -0.0418396, -0.037994385, 0.036010742, -0.042541504, -0.050872803, 0.031921387, 0.007358551, 0.0070877075, 0.018051147, -0.019302368, -0.021972656, 0.00818634, -0.0041885376, -0.08288574, -0.0051231384, -0.015487671, -0.0059127808, -0.0015850067, -0.013450623, -0.014755249, 0.010391235, -0.020126343, 0.005718231, 0.010246277, -0.013183594, -0.0034389496, -0.031433105, 0.01777649, -0.01651001, 0.0024108887, -0.009552002, 0.0231781, -0.0713501, -0.0748291, -0.008613586, 0.027557373, -0.006542206, -0.0013828278, -0.009803772, 0.021148682, -0.011398315, 0.02810669, 0.0066947937, -0.043548584, 0.023910522, 0.014701843, 0.007987976, 0.031799316, 0.01739502, -0.009246826, -0.048583984, 0.04949951, 0.0090789795, 0.068725586, -0.033935547, 0.004085541, 0.017837524, 0.012641907, 0.0057296753, -0.033569336, 0.006084442, -0.0036811829, -0.04953003, -0.02571106, -0.035125732, -0.031829834, -0.014595032, -0.026260376, -0.020111084, -0.0079193115, -0.035003662, 0.02607727, -0.030700684, 0.030426025, 0.024353027, -0.016937256, 0.014701843, -0.004852295, 0.031021118, -0.012313843, -0.0071258545, 0.03515625, -0.00039482117, -0.025482178, 0.015029907, 0.014465332, -0.009140015, 0.027618408, 0.017700195, 0.0074157715, -0.035125732, 0.016983032, 0.0015439987, -0.032440186, -0.0026798248, -0.039367676, 0.0040626526, -0.022262573, 0.012542725, 0.019119263, 0.021362305, 0.0069618225, -0.01499939, 0.043182373, -0.023651123, -0.0020751953, -0.0053482056, 0.023406982, -0.010047913, -0.0028705597, 0.00045228004, 0.01423645, 0.034606934, -0.019210815, -0.029022217, 0.0031166077, 0.03286743, -0.033050537, 0.028060913, -0.026428223, 0.019515991, -0.039398193, 0.026229858, -0.023483276, -0.027801514, 0.037719727, -0.002023697, -0.01965332, 0.02166748, 0.042297363, 0.016036987, -0.017700195, -0.039215088, -0.019165039, -0.046447754, -0.022842407, 0.041656494, 0.028762817, -0.034332275, -0.08001709, -0.027572632, -0.034240723, -0.01197052, -0.018096924, -0.00548172, 0.017791748, 0.009902954, 0.013542175, 0.044769287, -0.014945984, 0.011726379, -0.0059509277, -0.0039596558, 0.026351929, 0.03778076, 0.005554199, -0.00013720989, -0.02810669, 0.013999939, -0.011680603, 0.022979736, -0.037139893, 0.0023384094, 0.03579712, -0.021774292, 0.011665344, -0.03237915, -0.03378296, 0.060150146, -0.004886627, -0.059295654, -0.023590088, -0.03970337, -0.009544373, -0.0211792, -0.088012695, 0.005897522, -0.03074646, -0.017028809, -0.027679443, 0.00084877014, 0.040374756, -0.019439697, -0.012214661, 0.028411865, 0.019439697, -0.027297974, 0.053375244, -0.04425049, -0.011604309, -0.058166504, -0.012451172, -0.06774902, -0.0046195984, 0.007663727, -0.02168274, -0.015029907, -0.013504028, 0.015777588, 0.043304443, 0.052520752, -0.010261536, 0.016845703, -0.0020198822, -0.034606934, -0.011360168, 0.01928711, -0.06439209, 0.0028648376, 0.009353638, 0.008338928, 0.052642822, 0.004463196, 0.005908966, -0.08074951, -0.0039482117, -0.024978638, 0.026290894, -0.014190674, 0.0064582825, 0.021896362, 0.003271103, -0.028137207, 0.035461426, 0.004508972, 0.01777649, 0.0042304993, -0.011543274, 0.029418945, -0.0211792, 0.043945312, -0.02532959, -0.0107040405, -0.015487671, -0.0062789917, -0.019485474, 0.03994751, 0.0026760101, -0.027709961, -0.0015420914, -0.011070251, -0.016479492, 0.039733887, -0.019424438, -0.0036964417, 0.011688232, -0.0602417, -0.017623901, -0.017990112, -0.018920898, -0.057739258, -0.008834839, -0.011993408, -0.011703491, -0.041046143, 0.056152344, -0.034576416, -0.023376465, -0.06866455, -0.007255554, 0.015655518, 0.01713562, -0.018722534, 0.017333984, 0.007411957, 0.04949951, 0.0014190674, -0.021530151, 0.00856781, -0.033416748, -0.03866577, 0.020553589, -0.022491455, 0.04510498, -0.04815674, -0.017181396, -0.06390381, 0.044158936, -0.0059661865, 0.0065612793, 0.04135132, -0.010902405, 0.036987305, -0.032440186, 0.023391724, 0.02708435, -0.018630981, -0.018325806, -0.053955078, 0.006614685]}, "B06Y5WZQJP": {"id": "B06Y5WZQJP", "original": "Brand: SMETA\nName: SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black\nDescription: General Introduction

      This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
      It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

      Specifications:
      Net Volume:2.1 cu ft
      Net Weight:48lb
      Temperature Range: 32\u2109~50\u2109
      Product dimension(W*D*H): 18*18.7*27.1 inch
      Power supply:AC 110V/DC 12V/Propane(gas/LPG)
      Rated Frequency:60HZ
      Input Power: AC 90W ;DC 90W
      Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
      This product come with connection cord,can directly connect the cigarette lighter of the car

      IMPORTANT THINGS TO KNOW:
      Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
      Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
      Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

      PLEASE NOTE:
      If you have any questions,please feel free to contact us,we will try our best to help you!
      NOTE:
      This product USES propane to generate electricity. The product itself does not contain gas.
      \nFeatures: 110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping\nDimensions 18*18.7*27.1 inches, campact size easy to carry on the way\nApproximate gas consumption per day: 0.4 lb\nTemperature range 32\u2109~50\u2109 without freezer\nReversible door. Advanced absorption cooling system, super quiet without noise.\n", "metadata": {"Name": "SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black", "Brand": "SMETA", "Description": "General Introduction

      This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
      It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

      Specifications:
      Net Volume:2.1 cu ft
      Net Weight:48lb
      Temperature Range: 32\u2109~50\u2109
      Product dimension(W*D*H): 18*18.7*27.1 inch
      Power supply:AC 110V/DC 12V/Propane(gas/LPG)
      Rated Frequency:60HZ
      Input Power: AC 90W ;DC 90W
      Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
      This product come with connection cord,can directly connect the cigarette lighter of the car

      IMPORTANT THINGS TO KNOW:
      Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
      Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
      Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

      PLEASE NOTE:
      If you have any questions,please feel free to contact us,we will try our best to help you!
      NOTE:
      This product USES propane to generate electricity. The product itself does not contain gas.
      ", "Features": "110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping\nDimensions 18*18.7*27.1 inches, campact size easy to carry on the way\nApproximate gas consumption per day: 0.4 lb\nTemperature range 32\u2109~50\u2109 without freezer\nReversible door. Advanced absorption cooling system, super quiet without noise.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0129776, 0.018936157, -0.039855957, -0.025054932, 0.036865234, -0.008773804, 0.0009756088, -0.02168274, 0.031143188, -0.0066833496, -0.015167236, -0.0368042, 0.0046081543, -0.028808594, -0.02003479, -0.03189087, -0.013847351, 0.01889038, 0.000726223, -0.01260376, -0.008911133, -0.011299133, -0.009246826, 0.025619507, 0.021118164, -0.034942627, 0.0072746277, 0.013397217, 0.029678345, 0.00868988, 0.0262146, 0.0027770996, 0.027130127, -0.039398193, 0.027114868, -0.018417358, -0.018981934, -0.012077332, -0.036865234, 0.002506256, 0.0019044876, -0.00522995, 0.0035972595, -0.0005083084, -0.012840271, -0.06347656, 0.04534912, -0.018737793, -0.017333984, 0.015838623, -0.0019874573, 0.025268555, 0.0063056946, 0.041625977, 0.029724121, 0.03543091, 0.0064468384, -0.016967773, 0.0115356445, -0.0029621124, 0.0025920868, -0.013595581, 0.035980225, 0.011268616, -0.052490234, 0.015312195, 0.05130005, -0.01576233, 0.07330322, -0.054107666, -0.044403076, 0.07299805, 0.021011353, -0.00573349, -0.052642822, -0.0023918152, 0.044799805, 0.026855469, 0.019210815, -0.026260376, -0.006904602, -0.0072135925, 0.01411438, -0.04724121, 0.0025539398, -0.023406982, -0.01713562, -0.0038414001, 0.0015087128, -0.009918213, -0.0027503967, -0.017120361, 0.0029735565, 0.021026611, -0.023925781, -0.028839111, 0.012084961, -0.022842407, 0.04675293, 0.0068969727, 0.03152466, -0.05960083, 0.037261963, -0.011375427, 0.009132385, 0.011199951, 0.016082764, 0.022857666, 0.030181885, 0.014419556, -0.022079468, 0.04397583, -0.031082153, 0.0031719208, -0.03488159, 0.029968262, -0.057922363, 0.00472641, -0.017990112, 0.02609253, -0.0035133362, -0.028289795, 0.039001465, -0.016143799, -0.010696411, -0.024902344, -0.046417236, 0.0048103333, -0.018218994, -0.0055351257, -0.018371582, 0.028579712, 0.019180298, 0.032440186, -0.009994507, 0.0017576218, 0.045654297, 0.014022827, 0.033447266, 0.0066223145, -0.019256592, -0.02381897, 0.014907837, 0.0042037964, -0.0064315796, 0.03604126, 0.0055122375, 0.0043907166, 0.030441284, -0.062072754, -0.007965088, -0.054840088, 0.054840088, -0.015899658, -0.068481445, -0.038116455, -0.03692627, -0.01953125, -0.008155823, -0.050048828, -0.059020996, -0.034301758, 0.017959595, 0.03112793, 0.013717651, 0.06842041, 0.027069092, 0.0033092499, 0.025512695, 0.077941895, 0.038208008, 0.007633209, 0.024475098, -0.0077056885, -0.023208618, -0.022979736, 0.0072631836, 0.032714844, 0.049957275, -0.071777344, -0.070617676, -0.04800415, 0.08898926, -0.04663086, 0.0028915405, -0.011169434, -0.0039901733, -0.024658203, 0.0154953, -0.007106781, 0.01777649, 0.015113831, -0.0004172325, -0.03213501, -9.316206e-05, -0.002506256, -0.036071777, -0.0062332153, -0.01864624, 0.012924194, 0.028762817, 0.00045681, -0.009864807, 0.009414673, -0.0046653748, -0.017456055, 0.0010223389, -0.005619049, -0.031021118, -0.005874634, 0.01626587, -0.035491943, 0.039611816, -0.064941406, -0.018569946, 0.026763916, -0.008079529, 0.06542969, 0.01499939, 0.06878662, -0.0041656494, -0.06677246, 0.024002075, -0.03744507, -0.010124207, 0.009223938, -0.041748047, 0.007843018, 0.0076522827, -0.0002708435, 0.03567505, 0.03656006, 0.025650024, 0.04837036, -0.04257202, -0.0006518364, 0.03933716, 0.06402588, 0.0018062592, -0.017211914, 0.017211914, -0.056427002, -0.024276733, 0.01586914, -0.03970337, -0.070495605, -0.016860962, 0.029922485, -0.0018444061, 0.017562866, 0.0473938, -0.019058228, 0.0087890625, 0.005847931, -0.013771057, -0.002336502, -0.01876831, -0.008987427, 0.0013904572, -0.0011558533, 0.0022773743, 0.034698486, 0.009773254, 0.008369446, 0.032470703, 0.007850647, 0.042114258, 0.042633057, -0.016433716, -0.003850937, 0.010108948, 0.011726379, -0.021835327, -0.0025901794, -0.018295288, 0.0093307495, -0.074279785, 0.04348755, 0.006969452, -0.013824463, -0.007133484, -0.01576233, 0.0385437, -0.011016846, 0.062194824, 0.06201172, 0.0287323, -0.04373169, -0.02507019, 0.01171875, 0.04876709, -0.016601562, 0.0061149597, -0.028915405, -0.041168213, -0.018478394, 0.03656006, 0.01309967, 0.006160736, -0.0063285828, -0.0065841675, 0.041534424, -0.021026611, 0.0019483566, 0.009117126, -0.0049209595, -0.04788208, 0.06774902, 0.032196045, 0.004421234, -0.06549072, -0.0018367767, 0.026733398, -0.0063056946, 0.036315918, 0.02305603, -0.0027923584, 0.05706787, 0.06567383, 0.085754395, -0.03137207, 0.0044555664, -0.007972717, 0.018447876, 0.020355225, -0.0070533752, 0.00945282, 0.0043258667, 0.032562256, -0.019561768, 0.064331055, 0.037475586, 0.03543091, 0.023544312, 0.023376465, -0.026351929, -0.0068893433, 0.072143555, -0.006855011, -0.04559326, -0.008308411, -0.061401367, -0.0075302124, 0.042236328, -0.04135132, -0.04928589, 0.05392456, -0.0046424866, -0.03277588, -0.019500732, 0.06530762, -0.03201294, 0.017105103, -0.023956299, 0.02279663, 0.008369446, -0.047698975, -0.026672363, 0.0055351257, -0.060546875, -0.03137207, -0.023452759, -0.07354736, -0.078308105, 0.06323242, 0.008483887, -0.061828613, -0.029083252, -0.0184021, -0.010261536, 0.010383606, 0.013725281, -0.066833496, -0.03793335, -0.03326416, 0.006904602, 0.019165039, -0.039611816, 0.03152466, 0.020767212, -0.02166748, 0.011123657, -0.0074920654, 0.030792236, -0.023910522, 0.032440186, 0.03479004, -6.4969063e-06, 0.04345703, -0.012306213, 0.060302734, 0.040863037, 0.009239197, -0.0044822693, 0.016296387, -0.022277832, -0.0038261414, 0.010307312, -0.06585693, -0.013755798, -0.03466797, 0.016204834, -0.028259277, 0.005455017, 0.0084991455, -0.044769287, 0.006542206, -0.04925537, 0.017120361, 0.05706787, 0.015914917, -0.018585205, -0.004131317, 0.009033203, -0.0025119781, -0.008079529, 0.02659607, -0.006198883, 0.006629944, -0.03488159, 0.021484375, -0.03677368, 0.038238525, 0.02758789, 0.004875183, 0.032196045, -0.0013561249, -0.02507019, 0.008033752, 0.037750244, 0.0019817352, -0.002090454, 0.012290955, -0.0005965233, -0.032073975, -0.011177063, -0.0146865845, -0.008300781, 0.020050049, -0.03314209, -0.052612305, -0.0050849915, 0.03161621, 0.019927979, 0.0010995865, 0.004486084, -0.008850098, -0.027786255, -0.02281189, -0.008728027, -0.015823364, 0.010765076, 0.013763428, 0.018859863, 0.0015296936, 0.03451538, -0.0033168793, 0.029556274, 0.029571533, -0.061279297, -0.03479004, -0.02267456, -0.016586304, -0.007320404, -0.0064888, -0.04699707, 0.05810547, 0.008712769, 0.017105103, -0.024993896, -0.034057617, 0.08343506, 0.0035057068, -0.014663696, 0.0040245056, -0.022506714, 0.0035743713, 0.016967773, -0.0011739731, -0.012649536, -0.022247314, -0.005256653, -0.07342529, 0.113098145, 0.045715332, -0.017654419, 0.081848145, 0.047424316, -0.008659363, 0.032196045, 0.07220459, -0.03591919, 0.018188477, 0.014846802, -0.0496521, -0.008399963, 0.015808105, -0.06359863, 0.021621704, 0.011016846, -0.009727478, 0.047424316, -0.020385742, -0.017364502, -0.033569336, -0.018081665, 0.0010728836, -0.009712219, 0.03488159, -0.03692627, -0.008399963, -0.026306152, -0.01953125, -0.008224487, -0.041748047, -0.029205322, -0.026992798, -0.04321289, -0.030059814, 0.019256592, 0.0033245087, 0.045440674, -0.02760315, 0.020065308, 0.055999756, -0.0287323, -0.016693115, 0.024124146, -0.037750244, 0.0009737015, 0.03640747, 0.010765076, 0.016326904, -0.013092041, 0.026931763, 0.006000519, -0.01411438, 0.0496521, 0.0066947937, -0.10107422, -0.011169434, 0.053527832, 0.02407837, -0.036315918, -0.029586792, -0.022598267, -0.03918457, 0.0047683716, -0.015472412, -0.009178162, 0.003648758, 0.004814148, -0.06933594, -0.034484863, -0.0069389343, 0.00053167343, -0.016403198, 0.0073165894, -0.02192688, -0.008010864, -0.023651123, -0.045013428, -0.015113831, 0.033721924, 0.0053634644, 0.026779175, 0.036865234, -0.017211914, 0.00434494, -0.041503906, -0.023788452, -0.002653122, -0.021530151, -0.04525757, 0.019744873, 0.008430481, -0.015655518, 0.017578125, 0.015716553, 0.0670166, 0.02508545, 0.0126953125, -0.06286621, 0.006034851, -0.03353882, 0.024551392, 0.0036830902, 0.039215088, -0.050354004, -0.039916992, -0.009735107, 0.010375977, 0.005973816, -0.03527832, 0.020645142, 0.015823364, -0.027664185, -0.085510254, -0.04373169, -0.0076026917, -0.008117676, 0.0066375732, -0.024642944, -0.017532349, 0.03479004, 0.04360962, 0.055511475, -0.015220642, 0.0013074875, -0.013801575, -0.034484863, 0.009880066, -0.04373169, 0.0101623535, -0.070007324, 0.023345947, -0.076293945, 0.057281494, 0.08319092, 0.04095459, 0.032470703, -0.0005979538, 0.0105896, -0.06213379, -0.053649902, 0.014190674, 0.01133728, -0.0018386841, -0.046966553, -0.0109939575, -0.003856659, -0.015319824, -0.05517578, -0.029006958, -0.029129028, 0.018249512, -0.028839111, -0.0423584, -0.02960205, -0.039642334, 0.01977539, -0.02178955, -0.03253174, -0.03250122, -0.002773285, -0.031036377, -0.0129776, 0.031555176, 0.014022827, 0.039855957, -0.05239868, -0.012863159, -0.034088135, -0.032287598, 0.02859497, 0.015022278, 0.00819397, -0.0026683807, 0.022735596, -0.051361084, -0.05218506, 0.016326904, -0.0015201569, -0.027282715, -0.00058984756, 0.013839722, -0.001707077, 0.03186035, -0.008354187, 0.024169922, -0.0043525696, -0.031036377, 0.02658081, -0.021987915, -0.0041885376, -0.025817871, 0.049224854, -0.00016701221, 0.006263733, -0.059448242, 0.036895752, 0.047973633, 0.014038086, -0.015335083, -0.02267456, 0.06100464, -0.03475952, -0.04284668, 0.019119263, 0.03677368, 0.00025439262, 0.051879883, 0.02482605, 0.030303955, -0.05731201, 0.02909851, -0.0015916824, 0.018569946, -0.04714966, -0.019104004, -0.012451172, 0.033325195, 0.038757324, 0.038146973, 0.00017547607, 0.002986908, -0.058044434, -0.04309082, -0.02935791, 0.021316528, -0.04006958, 0.0023994446, -0.06561279, -0.003353119, -0.01940918, -0.02859497, -0.027008057, 0.0138168335, 0.014762878, 0.018844604, -0.011619568, -0.046295166, -0.0090408325, 0.012481689, 0.022598267, -0.023635864, -0.031707764, -1.180172e-05, 0.00076055527, 0.001124382, -0.026367188, 0.0020771027, -0.003036499, -0.022262573, -0.011169434, -0.01838684, 0.050933838, -0.001247406, 0.021118164, 0.052703857, 0.030639648, 0.009132385, 0.041870117, 0.021011353, -0.021438599, 0.042144775, 0.010414124, -0.050598145, -0.029891968, -0.022262573, -0.01399231, -0.002023697, 0.0126571655, 0.0053596497, 0.03869629, -0.012832642, -0.00598526, -0.0030403137, 0.0126571655, -0.02508545, -0.028549194, 0.0070724487, 0.0046195984, -0.006126404, 0.0041770935, 0.0071029663, -0.03717041, -0.0018320084, -0.022369385, 0.03552246, 0.025421143, 0.012435913, 0.009376526, 0.004470825, -0.059631348, 0.027267456, -0.022109985, -0.031341553, -0.026000977, 0.042938232, 0.046295166, 0.049591064, -0.024490356, -0.035827637, -0.024993896, 0.028778076, 0.023132324, 0.003932953, -0.057525635, -0.04586792, 0.022018433, 0.044067383, 0.013496399, 0.06750488, 0.04736328, 0.005908966, -0.006362915, 0.018569946, 0.045654297, -0.035217285, 0.017471313, -0.033691406, -0.010559082, -0.0041542053, -0.025360107, -0.015533447, -0.024017334, 0.046417236, -0.022583008, 0.0038814545, -0.008163452, -0.04611206, 0.032165527, -0.055389404, 0.024047852, -0.026504517, 0.05105591, 0.0003581047, 0.0107803345, 0.051513672, -0.036315918, -0.013175964, 0.009567261, 0.046539307, 0.017089844, -0.03201294, 0.044067383, -0.016906738, -0.01828003, -0.012809753, 0.008880615, -0.035888672, 0.011001587, 0.02180481, 0.022766113, 0.007205963, -0.017700195, 0.09661865, -0.035339355, -0.0068206787, -0.012199402, -0.010398865, -0.014823914, 0.007637024, -0.012283325, 0.013282776, -0.0016098022, -0.010322571, 0.031066895, 0.045013428, 0.02368164, 0.005870819, 0.010856628, -0.024124146, 0.0184021, 0.01776123, -0.02078247, -0.035125732, -0.014801025, -0.017562866, -0.013381958, 0.022338867, -0.0064849854, -0.00019073486, 0.03805542, -0.019943237, 0.008140564, 0.0031833649, -0.030288696, -0.012641907, 0.029647827, -0.034118652, -0.060455322, -0.00061035156, -0.014289856, -0.0042152405, -0.005634308, 0.04284668, 0.010597229, -0.04284668, 0.012397766, 0.0038070679, 0.042419434, -0.042022705, 0.014320374, 0.009002686, 0.017623901, 0.02357483, 0.01626587, -0.024932861, 0.0027637482, -0.0012578964, 0.005935669, -0.005130768, -0.050567627, -0.08807373, -0.023834229, 0.006603241, -0.010108948, -0.024627686, -0.0068206787, 0.014968872, 0.02015686, -0.019073486, 0.02822876, -0.051971436, -0.074279785, -0.04727173, -0.027679443, -0.06982422, 0.07232666, -0.022979736, -0.024719238, 0.017623901, -0.012321472, -0.0032157898, -0.061035156, -0.0012969971, -0.021957397, 0.024734497, 0.0004017353, 0.045043945, 0.01335144, -0.06488037, -0.05517578, 0.01701355, -0.028533936, 0.008621216, -0.045806885, 0.028137207, 0.009391785, -0.0105896, 0.0006804466, 0.034484863, 0.005744934, -0.0082473755, 0.022750854, -0.05319214, -0.023529053, 0.076049805, 0.01763916, -0.006793976, -0.041625977, 0.013580322, 0.026031494, 0.08795166, -0.014968872, 0.0501709, -0.032196045, 0.009101868, -0.048187256, 0.016693115, -0.060516357, 0.026382446, -0.03050232, -0.0012292862, -0.015014648, -0.027770996, 0.006843567, 0.008125305, 0.01473999, -0.0057144165, 0.042785645, 0.0079956055, -0.03363037, -0.026306152, -0.025009155, -0.011558533, 0.036956787, -0.058685303, -0.038391113, -0.008422852, -0.002128601, -0.02835083, 0.0082092285, 0.021636963, 0.004776001, 0.013000488, 0.022094727, -0.0045280457, -0.0045166016, 0.005168915, -0.051757812, -0.003124237, 0.04611206, 0.0062561035, -0.023406982, -0.006881714, -0.0035858154, -0.027374268, -0.0064353943, 0.012878418, -0.038604736, 0.0063095093, -0.0008120537, 0.0026683807, 0.0007443428, 0.010032654, -0.0042877197, 0.01474762, 0.0016965866, -0.013191223, 0.004886627, -0.015556335, 0.0038852692, -0.0231781, -0.027633667, 0.015098572, -0.022628784, -0.13769531, -0.042419434, -0.008018494, 0.00415802, 1.6570091e-05, 0.028259277, -0.00756073, 0.007041931, 0.027069092, -0.032440186, -0.0033493042, -0.04006958, -0.05493164, -0.00957489, -0.017456055]}, "B001KLJX9M": {"id": "B001KLJX9M", "original": "Brand: Mr Heater\nName: Compact Radiant Propane Heater by Mr. Heater\nDescription: Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline\nFeatures: \n", "metadata": {"Name": "Compact Radiant Propane Heater by Mr. Heater", "Brand": "Mr Heater", "Description": "Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline", "Features": "", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.025756836, -0.029418945, -0.03692627, 0.009521484, -0.04763794, -0.022445679, -0.031677246, 0.020629883, -0.05834961, 0.025970459, 0.059020996, 0.011894226, 0.024734497, -0.061798096, 0.038024902, -0.006389618, 0.0068626404, 0.015716553, -0.016235352, -0.028625488, 0.011383057, -0.019729614, -0.03567505, 0.029327393, 0.04550171, -0.053833008, -0.005432129, -0.017501831, 0.037261963, -0.008079529, 0.033935547, 0.00096035004, 0.013473511, 0.011787415, 0.0010128021, 0.017089844, -0.0017375946, 0.004257202, 0.004573822, 0.008712769, 0.016693115, -0.0019302368, -0.026351929, -0.0345459, -0.041015625, -0.026794434, 0.0095825195, 0.01424408, 0.030395508, -0.03817749, 0.010513306, -0.00096559525, 0.028274536, -0.058532715, -0.034332275, 0.005176544, 0.03869629, -0.0029888153, 0.017929077, -0.05508423, -0.021881104, 0.015556335, 0.053710938, 0.04928589, -0.0703125, 0.019958496, 0.04751587, -0.028442383, 0.05758667, -0.09301758, -0.053710938, 0.07342529, 0.01499176, 0.020980835, -0.064575195, -0.026687622, 0.022979736, -0.0049095154, 0.029312134, -0.016784668, 0.024780273, 0.002216339, -0.027008057, 0.015731812, -0.010055542, 0.033721924, -0.019088745, -0.026229858, -0.0011463165, -0.029830933, -0.021148682, 0.0011081696, -0.004650116, -0.0028705597, -0.024047852, -0.031143188, -0.029052734, -0.022399902, 0.034698486, 0.022949219, -0.038604736, 0.00019955635, -0.02609253, -0.007232666, -0.0043945312, 0.035003662, 0.021072388, 0.0042648315, 0.006099701, -0.017166138, -0.016998291, 0.0126953125, -0.026504517, -0.00969696, 0.00066947937, 0.018478394, -0.06439209, 0.046295166, -0.015403748, 0.047912598, -0.012283325, 0.015098572, 0.06341553, -0.050964355, -0.0146484375, -0.025146484, -0.034240723, -0.033599854, -0.03756714, 0.0496521, -0.023239136, 0.008125305, 0.023635864, 0.03161621, -0.0033454895, -0.030136108, 0.04473877, 0.013389587, 0.015304565, -0.032562256, 0.036712646, -0.003627777, -0.021362305, 0.010116577, -0.015640259, 0.035614014, 0.014770508, -0.0011720657, -0.00982666, -0.022842407, -0.013473511, -0.028030396, -0.006465912, 0.016967773, 0.037017822, 0.007369995, 0.03564453, -0.025115967, -0.0015144348, -0.011955261, 0.012550354, -0.029312134, -0.021606445, 0.03488159, -0.00724411, 0.02772522, 0.040924072, 0.01033783, 0.010284424, 0.05895996, 0.026519775, -0.033935547, -0.024429321, -0.0043792725, -0.015113831, -0.009124756, -0.015823364, 0.023284912, 0.043640137, -0.0826416, -0.076293945, -0.05731201, 0.08227539, -0.036224365, -0.026885986, -0.060180664, 0.052368164, 0.012565613, 0.013092041, 0.015579224, 0.10015869, 0.007701874, 0.038085938, -0.02986145, -0.020767212, -0.0026187897, -0.025863647, 0.017715454, -0.042114258, 0.018051147, 0.021118164, 0.029464722, 0.0039482117, -0.011642456, -0.020370483, 0.011947632, -0.008934021, 0.012779236, 0.029281616, 0.032165527, -0.022506714, -0.011146545, 0.036590576, -0.11450195, -0.03579712, 0.009025574, -0.04458618, -0.020080566, -0.0002193451, -0.055877686, 0.038635254, 0.0143585205, 0.029129028, 0.014640808, -0.0284729, -0.031463623, -0.0067596436, -0.015525818, -0.026473999, -0.012229919, 0.019683838, 0.0129776, 0.025466919, 0.060272217, -0.0044441223, 0.018630981, 0.056671143, 0.04940796, -0.0010261536, -0.030715942, -0.00047945976, -0.06451416, -0.041137695, 0.055236816, -0.05114746, 0.064208984, 0.046173096, 0.0071105957, -0.012016296, 0.0574646, 0.010643005, 0.042663574, 0.018829346, 0.04031372, -0.059539795, 0.033935547, -0.016494751, -0.01524353, -0.008384705, 0.04360962, -0.013626099, 0.06768799, 0.038238525, 0.015213013, -0.020111084, 0.047851562, 0.034729004, 0.04550171, -0.008659363, 0.009819031, 0.002904892, 0.026885986, -0.008903503, -0.0008177757, 0.054107666, 0.010063171, -0.022018433, -0.0062446594, -0.02218628, 0.00079345703, 0.017166138, 0.0034770966, 0.009941101, -0.0020980835, 0.01399231, -5.310774e-05, 0.022537231, 0.034820557, -0.038391113, 0.0005879402, 0.015792847, 0.011207581, -0.03353882, 0.024307251, 0.023666382, -0.010940552, -0.016601562, -0.019836426, 0.02670288, -0.026351929, 0.00932312, 0.05178833, -0.003194809, 0.015075684, -0.0053253174, 0.015235901, -0.0038261414, 0.013587952, 0.01574707, 0.0006570816, -0.051086426, -0.004878998, -0.001704216, -0.007972717, 0.01838684, 0.004852295, 0.004009247, 0.022857666, 0.018676758, 0.03277588, -0.019470215, -0.002462387, -0.048675537, 0.009597778, 0.0016355515, 0.018676758, 0.006378174, 0.008628845, -0.047912598, 0.019424438, -0.005809784, -0.017578125, -0.0059394836, 0.052978516, -0.008201599, 0.025436401, 0.012367249, -0.0102005005, -0.014854431, -0.009963989, 0.034362793, -0.028762817, 0.010620117, 0.009925842, -0.026412964, -0.009346008, 0.020187378, 0.012535095, -0.04736328, 0.0079956055, 0.0058403015, -0.02104187, 0.018035889, -0.023086548, 0.030197144, 0.004310608, -0.050445557, -0.027175903, 0.02470398, -0.062408447, -0.021057129, 0.0024604797, -0.03475952, -0.009605408, 0.04812622, -0.024719238, -0.012817383, -0.024276733, -0.04623413, 0.022140503, -0.0024986267, -0.0003774166, -0.022949219, -0.038635254, -0.06756592, 0.013198853, 0.023513794, -0.04284668, 0.019897461, 0.008323669, 0.028900146, 0.030029297, 0.0055770874, 0.030654907, 0.026168823, 0.016586304, -0.006843567, 0.033355713, -0.005607605, -0.013717651, -0.032165527, 0.005718231, 0.007724762, -0.01864624, 0.016799927, 0.013046265, -0.028549194, 0.020736694, -0.027633667, -0.008415222, -0.014961243, 0.0090408325, 0.013694763, -0.03564453, 0.004196167, -0.020004272, -0.023223877, -0.0055351257, 0.018463135, 0.025817871, -0.02217102, -0.02520752, -0.017089844, -0.027618408, -0.002090454, 0.0036754608, -0.04345703, -0.01361084, -0.013221741, 0.028442383, 0.04473877, -0.043060303, 0.024536133, 0.044311523, -0.036956787, 0.009361267, -0.03894043, 0.0076942444, 0.011108398, 0.05883789, -0.00818634, 0.031051636, -0.05316162, -0.04724121, -0.006248474, 0.03591919, 0.024291992, 0.021743774, 0.017059326, 0.015617371, -0.0015258789, -0.034423828, -0.005218506, 0.01965332, 0.00592041, 0.006111145, -0.029296875, -0.008834839, -0.049682617, -0.0385437, 0.0069389343, 0.011459351, -0.005088806, 0.028961182, 0.0033397675, 0.07159424, 0.049468994, 0.033691406, 0.030563354, -0.026641846, -0.016235352, -0.014839172, -0.030670166, -8.016825e-05, -0.007156372, -0.077819824, 0.08428955, 0.009170532, -0.011482239, 0.01838684, -0.021438599, 0.037078857, 0.029434204, -0.020706177, 0.025039673, 0.02607727, 0.027664185, -0.023956299, -0.021453857, -0.031204224, -0.045074463, 0.022079468, -0.0703125, 0.015609741, -0.0069122314, 0.005947113, -0.0029315948, -0.022598267, -0.0034008026, 0.0049934387, -0.006248474, -0.0072021484, 0.011680603, 0.022018433, -0.017349243, -0.010917664, 0.019348145, -0.05822754, -0.0069847107, -0.020599365, -0.07244873, 0.025146484, 0.011711121, -0.0033016205, -0.017196655, -0.020141602, 0.034576416, 0.015548706, 0.012931824, 0.011138916, 0.050445557, 0.0044021606, 0.04449463, 0.031036377, -0.009109497, -0.016647339, 0.06311035, -0.02168274, 0.018814087, 0.008323669, -0.0043296814, -0.012008667, 0.0046577454, 0.03137207, -7.8976154e-05, 0.028121948, -0.049468994, 0.012359619, -0.015975952, -0.01777649, 0.02407837, 2.0861626e-06, 0.011199951, 0.01626587, -0.0040130615, 0.027069092, -0.01737976, 0.02760315, -0.010719299, -0.050323486, -0.01826477, 0.011238098, 0.019577026, -0.026428223, -0.0012874603, -0.022476196, -0.0087509155, -0.024291992, 0.007259369, -0.07287598, 0.018249512, 0.03970337, -0.0597229, -0.046905518, -0.06011963, 0.01852417, -0.028503418, 0.011566162, -0.011734009, 0.0033226013, 0.041381836, 0.009056091, -0.07562256, 0.012313843, -0.074523926, -0.013160706, 0.002401352, -0.025253296, 0.044281006, -0.03213501, 0.016860962, -0.018325806, 0.059631348, -0.0023918152, 0.0061683655, -0.03201294, -0.04232788, -0.014022827, 0.00843811, 0.05722046, -0.024414062, 0.05883789, -0.0131073, 0.02557373, -0.009536743, -0.0602417, 0.015327454, -0.052124023, -0.055755615, -0.059936523, 0.02519226, 0.0031108856, 0.0046539307, 0.004573822, 0.009674072, 0.022750854, -0.031158447, -0.082458496, -0.016342163, -0.011100769, -0.03753662, 0.030853271, -0.0034637451, -0.016845703, -0.007972717, 0.10180664, 0.0592041, -0.02418518, 0.012184143, 0.0061035156, -0.014846802, 0.015991211, -0.05117798, 0.020233154, -0.04574585, -0.018478394, -0.0625, 0.032592773, 0.0713501, 0.0058059692, 0.036315918, 0.019454956, 0.01966858, 0.030975342, -0.0154418945, 0.05407715, -0.017654419, -0.0014743805, -0.0362854, 0.00819397, -0.00793457, -0.019256592, -0.002670288, -0.04714966, 0.01789856, 0.025222778, 0.0158844, 0.013069153, -0.01663208, -0.047943115, 0.00019562244, 0.0023822784, -0.046173096, -0.024612427, 0.020828247, -0.026153564, -0.034332275, -0.0062408447, 0.0007338524, 0.029632568, 0.050079346, 0.024673462, -0.026290894, -0.016479492, 0.01687622, 0.0012989044, -0.029678345, 0.017608643, -0.01512146, -0.0038337708, -0.042541504, 0.0035133362, 0.012535095, 0.006542206, -0.034942627, 0.02861023, 0.0019626617, 0.02168274, -0.015701294, 0.007713318, 4.9054623e-05, -0.035888672, 0.035949707, 0.018814087, 0.007068634, -0.06311035, 0.032165527, -0.024810791, -0.040130615, -0.02067566, 0.01197052, 0.0062294006, -0.05404663, 0.026168823, -0.019714355, 0.032562256, -0.021057129, -0.003932953, 0.005722046, -0.041259766, -0.017959595, 0.0087509155, -0.01802063, -0.054504395, 0.024841309, 0.009002686, -0.060058594, 0.053375244, 0.028503418, 0.01928711, -0.021224976, 0.025497437, -0.015823364, -0.018005371, 0.0059547424, 0.007751465, -0.007751465, 0.013366699, 0.033447266, 0.0018835068, 0.034088135, 0.015960693, 0.0047798157, 0.0007853508, -0.0029945374, -0.05041504, -0.03262329, 0.028762817, -0.014533997, 0.015281677, -0.0025558472, -0.040618896, -0.00919342, -0.0076446533, -0.0016355515, -0.02267456, -0.018295288, 0.014518738, 0.0052719116, 0.029342651, 0.021011353, 0.04663086, 0.07720947, -0.02848816, -0.027679443, -0.05822754, 0.045684814, -0.008926392, -0.010032654, 0.060638428, 0.05596924, 0.0103302, 0.03527832, -0.015357971, -0.017608643, 0.037139893, 0.0032787323, 0.00043988228, 0.00945282, -0.008277893, 0.013374329, 0.0053749084, -0.006881714, -0.028427124, -0.0035648346, -0.05923462, -0.025497437, 0.0068206787, -0.0051460266, -0.0045547485, -0.05633545, 0.012359619, -0.010879517, -0.014343262, -0.0055503845, -0.04324341, -0.058288574, -0.0042915344, -0.016799927, 0.024887085, 0.013801575, -0.013305664, -0.017730713, -0.003206253, 0.011985779, 0.040283203, 0.013809204, -0.017440796, -0.0029716492, 0.04043579, 0.0025043488, 0.01096344, -0.052246094, -0.021133423, -0.054748535, 0.037261963, 0.07165527, 0.04055786, -0.02229309, 0.03201294, 0.076416016, 0.010231018, 0.041015625, 0.021743774, 0.037261963, -0.0040512085, -0.062561035, 0.015258789, 0.012008667, -0.039794922, 0.050750732, -0.041137695, -0.017318726, -0.004360199, -0.039886475, 0.014656067, -0.04776001, 0.061309814, 0.0035648346, -0.0045318604, 0.013198853, 0.0082092285, 0.006336212, -0.033599854, -0.05987549, -0.007888794, 0.0345459, 0.009971619, 0.015472412, -0.030212402, -0.034576416, 0.011940002, -0.0019741058, 0.022903442, 0.0019512177, -0.0054244995, 0.042419434, -0.03652954, -0.021896362, -0.021484375, 0.018341064, -0.02684021, -0.018875122, 0.008018494, -0.008430481, 0.024017334, 0.011077881, 0.020065308, -0.016540527, 0.030258179, -0.034973145, -0.016983032, -0.014259338, -0.06958008, 0.06124878, -0.011810303, -0.02305603, 0.0068206787, -0.07342529, 0.030838013, 0.02859497, 0.028564453, 0.05026245, -0.009216309, 0.023727417, -0.03945923, -0.0022220612, -0.027114868, -0.032958984, -0.0050964355, -0.023513794, 0.020751953, 0.03768921, 0.024871826, -0.0017108917, 0.04522705, -0.090026855, 0.017227173, -0.05731201, 0.029281616, 0.02861023, 0.10455322, -0.027450562, -0.029327393, -0.014801025, 0.005367279, 0.0014600754, 0.015258789, 0.0056991577, 0.00039887428, 0.053710938, 0.003238678, 0.0635376, -0.011993408, 0.0026454926, -0.00919342, 0.018356323, 0.021606445, -0.017288208, -0.028518677, 0.0052261353, -0.020553589, 0.011642456, 0.009811401, -0.041992188, -0.036132812, -0.012763977, 9.614229e-05, -0.03366089, 0.019638062, -0.037139893, -0.030059814, 0.037322998, -0.04248047, -0.046722412, 0.020904541, 0.034423828, -0.011123657, 0.013549805, -0.037628174, -0.022766113, -0.0026569366, -0.033721924, -0.01134491, 0.011695862, 0.024871826, -0.032562256, 0.0010213852, -0.009170532, 0.004673004, 0.0025691986, 0.0385437, -0.043914795, -0.04699707, -0.02255249, 0.044952393, -0.10992432, -0.040039062, 0.03338623, -0.043121338, -0.044891357, -0.020187378, 0.020446777, 0.07891846, 0.04168701, -0.0039367676, 0.016677856, -0.014572144, 0.011459351, -0.0027275085, 0.011230469, -0.043670654, -0.041412354, -0.0045204163, -0.0024375916, 0.056243896, 0.0045928955, 0.013160706, -0.018692017, 0.002626419, -0.02357483, -0.0068969727, 0.053009033, -0.040618896, 0.055908203, 0.022399902, -0.0552063, -0.01966858, -0.0071487427, -0.018554688, 0.017623901, 0.023132324, 0.0143966675, -0.0317688, -0.056121826, -0.024749756, -0.008735657, 0.049072266, 0.099609375, -0.0023288727, -0.0057868958, 0.038024902, -0.032470703, 0.039794922, 0.005378723, -0.0016937256, 0.019638062, -0.0007362366, 0.0098724365, 0.01927185, -0.030670166, 0.0037765503, -0.049346924, 0.03475952, 0.016021729, 0.019317627, -0.01763916, -0.01991272, -0.024520874, 0.0039901733, -0.008613586, -0.04144287, -0.011238098, 0.017166138, 0.015640259, 0.010986328, 0.019424438, -0.028030396, 0.020370483, 0.019180298, -0.020111084, 0.005657196, 0.028381348, -0.014350891, -0.06652832, 0.051727295, 0.02180481, 0.015579224, -0.0067481995, -0.09844971, -0.06744385, 0.05392456, 0.026809692, -0.026138306, 0.07342529, -0.032592773, 0.01914978, 0.041229248, -0.02722168, 0.022766113, -0.041870117, 0.054504395, -0.013366699, -0.025650024]}, "B07WF2X9LV": {"id": "B07WF2X9LV", "original": "Brand: BBQ Classic Parts\nName: BBQ Classic Parts 7\" Diameter Wheel and 5/16\" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1\nDescription: This is for a Single 7\" diameter black plastic wheel. Features a 5/16\" diameter axle hole, 1-3/4\" long axle hub and 1-7/8\" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.\nFeatures: High Quality that's made to last!!\n", "metadata": {"Name": "BBQ Classic Parts 7\" Diameter Wheel and 5/16\" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1", "Brand": "BBQ Classic Parts", "Description": "This is for a Single 7\" diameter black plastic wheel. Features a 5/16\" diameter axle hole, 1-3/4\" long axle hub and 1-7/8\" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.", "Features": "High Quality that's made to last!!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.029785156, 0.007045746, -0.0758667, -0.023284912, -0.005657196, -0.0007443428, -0.035583496, 0.02078247, -0.016021729, 0.025222778, -0.029800415, 0.0033683777, -0.018051147, -0.004219055, -0.010070801, -0.05154419, 0.015182495, 0.03552246, 0.045410156, -0.029571533, 0.02015686, -0.016143799, 0.016571045, 0.08770752, 0.053985596, 0.008102417, 0.027450562, 0.010734558, 0.042541504, 0.031585693, 0.03591919, -0.0703125, 0.050079346, 0.014328003, -0.045013428, 0.025436401, 0.00944519, -0.011169434, -0.019958496, 0.019195557, 0.013626099, -0.003189087, 0.0016956329, 0.0029277802, -0.029922485, -0.029083252, 0.0115356445, -0.010650635, 0.0013132095, -0.01927185, 0.02104187, 0.015853882, 0.0138168335, -0.0079422, -0.0126953125, 0.015716553, -0.019088745, 0.032470703, 0.023147583, 0.008842468, -0.011306763, 0.007160187, 0.015655518, -0.0060653687, -0.011222839, -0.010726929, 0.089782715, 0.0070266724, -0.032989502, -0.019607544, 0.033233643, 0.024154663, 0.03793335, -0.021591187, -0.01285553, -0.07269287, 0.041168213, -0.04953003, 0.010978699, 0.01473999, -0.047546387, -0.07702637, -0.04248047, 0.009033203, -0.006702423, 0.01890564, -0.009552002, 0.00058174133, -0.028869629, 0.011665344, -0.017745972, -0.021743774, -0.041992188, 0.062347412, 0.025253296, -0.00699234, 0.0070648193, -0.025344849, 0.04135132, 0.021469116, 0.01828003, -0.047973633, 0.05783081, -0.015991211, 0.016677856, 0.01789856, -0.0055503845, -0.0058784485, 0.017623901, 0.022659302, -0.026657104, 0.021743774, -0.013008118, -0.015914917, -0.05908203, -0.0037994385, -0.022109985, -0.016677856, 0.02279663, -0.017456055, 0.01676941, 0.0435791, 0.013328552, -0.027816772, 0.0014104843, 0.015419006, -0.027832031, -0.021957397, -0.064086914, 0.0039520264, -0.004173279, 0.0073165894, 0.02217102, 0.085510254, 0.018295288, 0.0036468506, 0.006515503, -0.053222656, -0.024734497, 0.0395813, -0.0063591003, -0.00919342, 0.049865723, -0.021194458, -0.017837524, -0.022750854, 0.0021266937, 0.043060303, 0.000770092, -0.0029792786, -0.0055160522, 0.01083374, 0.030273438, 0.033843994, -0.05557251, -0.0034866333, 0.003332138, -0.007129669, -0.007282257, -0.056121826, -0.030685425, -0.024353027, 0.026611328, -0.04046631, -0.065979004, 0.041900635, -0.020568848, -0.020111084, 0.0055618286, 0.007247925, 0.001909256, -0.051116943, -0.028259277, -0.022827148, 0.00042366982, 0.021408081, 0.009490967, 0.031158447, 0.031311035, -0.029922485, -0.0287323, -0.03265381, 0.07489014, -0.027908325, -0.0017986298, -0.0152282715, 0.028625488, 0.046966553, -0.001581192, 0.03414917, -0.0029506683, 0.0012054443, -0.031921387, 0.023986816, -0.043518066, -0.0010061264, 0.025970459, 0.059906006, -0.020324707, -0.029418945, 0.00042414665, 0.027008057, 0.007926941, -0.0059814453, -0.016540527, 0.028335571, -0.012229919, 0.04385376, -0.0031661987, 0.0206604, 0.0063095093, 0.0143966675, -0.021270752, -0.03274536, -0.020446777, -0.0050964355, -0.009651184, -0.023345947, -0.027832031, 0.009361267, -0.014350891, -0.0050735474, -0.04940796, 0.032836914, -0.018127441, 0.019317627, -0.02267456, 0.01234436, -0.00045466423, 0.023620605, 0.01272583, -0.009086609, 0.016448975, 0.04623413, -0.008621216, 0.042816162, 0.02911377, 0.054870605, -0.025863647, -0.022155762, 0.027374268, -0.011695862, -0.029632568, -0.028411865, 0.0105896, -0.046661377, -0.012268066, -0.008987427, -0.006263733, -0.026626587, 0.0569458, -0.027542114, 0.025344849, 0.018722534, 0.0019197464, 0.009506226, -0.03555298, -0.025665283, -0.054260254, 0.024032593, 0.0107040405, -0.009223938, 8.499622e-05, -0.016036987, 0.068481445, 0.013137817, 0.07299805, 0.053710938, -0.009971619, -0.0055274963, -0.009063721, 0.004776001, -0.0028381348, -0.0068244934, -0.013389587, 0.013702393, -0.0034751892, 0.0030078888, -0.0008702278, -0.0035381317, 0.019332886, 0.02053833, 0.030395508, -0.0053596497, 0.006336212, -0.000992775, 0.04147339, 0.042297363, 0.0040893555, -0.032440186, 0.0011587143, 0.0042037964, -0.020568848, 0.0473938, 0.009384155, -0.044708252, 0.03805542, 0.025970459, -0.009536743, -0.00067424774, -0.015670776, 0.022079468, -0.010643005, -0.010437012, -0.02029419, 0.001709938, -0.020599365, 0.002029419, -0.008300781, -0.061340332, 0.020858765, 0.046905518, 0.022628784, 0.0115737915, 0.043884277, 0.016555786, 0.02192688, 0.046691895, 0.030563354, 0.020401001, 0.019302368, -0.0129852295, -0.003742218, -0.052337646, -0.003124237, 0.0078086853, -0.0713501, -0.010803223, -0.020721436, 0.013870239, -0.014678955, -0.013641357, -0.037475586, 0.045410156, 0.0010070801, 0.014846802, -0.0010118484, 0.012863159, -0.005104065, 0.003545761, 0.0021953583, 0.021072388, -0.0064582825, -0.03652954, 0.0005264282, 0.04510498, 0.0042495728, 0.013336182, -0.033111572, 0.037597656, -0.03955078, -0.031021118, 0.04446411, 0.00073480606, 0.03036499, 0.04598999, -0.058044434, -0.020248413, 0.04333496, -0.050476074, -0.012008667, -0.010063171, -0.035095215, 0.017044067, 0.024902344, -0.024887085, -0.028366089, 0.024765015, -0.022598267, -0.023101807, 0.015083313, -0.026657104, -0.006214142, -0.0146102905, -0.016021729, -0.011383057, 0.084228516, -0.035949707, 0.018798828, 0.03552246, -0.037963867, 0.033294678, -0.05078125, 0.036315918, -0.031341553, 0.040161133, 0.045440674, 0.03540039, 0.015335083, -0.038085938, 0.014465332, 0.066467285, -0.081726074, -0.028427124, -0.023376465, 0.011131287, 0.045196533, -0.033111572, 0.016723633, -0.052703857, -0.08154297, 0.0011234283, 0.003944397, -0.038391113, 0.0007119179, -0.027145386, -0.05783081, -0.059173584, -0.01033783, -0.009674072, -0.008323669, 0.06121826, -0.06085205, 0.075805664, -0.003025055, -0.05569458, -0.01864624, 0.012954712, -0.062927246, 0.035064697, 0.036346436, -0.008674622, -0.024963379, -0.0022182465, -0.05505371, 0.0024108887, 0.023635864, 0.06756592, -0.018829346, 0.025527954, 0.0031814575, -0.030303955, 0.0034618378, -0.0158844, -0.06549072, -0.0036697388, -0.017532349, 0.0134887695, 0.003955841, -0.04550171, -0.05050659, -0.016418457, -0.022338867, 0.013046265, 0.006061554, -0.025787354, -0.024017334, -0.061676025, -0.009918213, 0.0064468384, 0.0029296875, -0.02583313, -0.008163452, 0.030715942, -0.022842407, 0.17138672, 0.04208374, 0.018585205, 0.033294678, 0.042022705, 0.0010185242, 0.01260376, 0.01235199, -0.011276245, 0.0043907166, -0.040161133, 0.07861328, -0.008178711, 0.01374054, -0.0008788109, -0.029281616, -5.865097e-05, 0.019836426, 0.0031604767, 0.012962341, -0.053466797, -0.0049705505, 0.02331543, -0.0055389404, -0.012054443, -0.051727295, 0.0015649796, 0.0027656555, 0.06088257, 0.030426025, -0.009895325, 0.066711426, 0.061645508, 0.0129470825, 0.057647705, 0.06365967, 0.00856781, 0.011367798, 0.0814209, 0.017044067, -0.024871826, 0.01576233, -0.023788452, 0.023025513, -0.005596161, -0.08068848, 0.018203735, -0.010665894, -0.06335449, -0.008636475, 0.01675415, 0.035125732, -0.008926392, -0.0015735626, -0.01612854, 0.016021729, -0.03564453, -0.023406982, -0.011657715, -0.0077323914, -0.04434204, 0.054840088, 0.022491455, -0.0259552, -0.016967773, 0.0040893555, 0.009529114, 0.06304932, 0.029632568, -0.039031982, -0.010803223, 0.064697266, -0.010070801, 0.025238037, 0.013259888, -0.020065308, -0.039215088, 0.015213013, 0.027893066, 0.035858154, 0.016082764, 0.009414673, 0.04257202, -0.04159546, -0.06329346, -0.033294678, -0.0020198822, 0.031707764, -0.05206299, 0.017593384, -0.04284668, -0.00819397, -0.02178955, -0.009590149, -0.03744507, -0.010574341, 0.006095886, -0.023880005, -0.03149414, -0.004180908, -0.047027588, -0.0010490417, 0.0029621124, 0.00283432, -0.022979736, -0.032806396, 0.02142334, -0.03567505, 0.0033664703, -0.0068130493, -0.00089883804, 0.052337646, 0.017929077, 0.076660156, -0.057495117, -0.026535034, -0.04168701, 0.06890869, 0.0098724365, 0.041381836, -0.03277588, -0.029632568, -0.013885498, 0.017623901, 0.06451416, -0.012496948, 0.066223145, -0.01133728, 0.020645142, -0.02116394, -0.0067367554, 0.011520386, -0.053253174, -0.0234375, -0.0070877075, 0.037322998, -0.008003235, -0.028076172, -0.012802124, 0.021408081, 0.0027122498, 0.030456543, 0.008766174, 0.036315918, 0.02809143, -0.060394287, -0.016937256, -0.015106201, -0.016052246, 0.09698486, 0.0009908676, -0.039093018, -0.026626587, -0.016616821, -0.01890564, 0.0038928986, 0.004901886, 0.0053901672, 0.0055274963, -0.007534027, -0.0026435852, -0.056884766, 0.07312012, 0.10949707, 0.01461792, 0.03173828, 0.01399231, -0.012016296, -0.0016965866, 0.0047340393, -0.020217896, 0.035186768, 0.0001219511, -0.025802612, 0.005493164, -0.031280518, 0.0042381287, 0.0068206787, -0.05545044, -0.012687683, 0.030517578, 0.017593384, -0.0496521, -0.014030457, 0.070739746, 0.016555786, 0.050567627, 0.051849365, -0.049072266, 0.02758789, -0.01727295, -0.0053215027, 0.00793457, -0.011619568, -0.0017852783, -0.008987427, -0.0065994263, -0.028503418, -0.0020484924, 0.015014648, -0.02130127, -0.062805176, 0.025283813, 0.005645752, 0.035369873, -0.020980835, 0.071777344, -0.023498535, 0.05218506, 0.0074882507, 0.035980225, -0.00054597855, 0.012817383, 0.0024375916, -0.014953613, -0.010803223, -0.0005970001, -0.024368286, -0.009468079, 0.035095215, 0.0060806274, 0.02911377, 0.027694702, 0.005882263, -0.047210693, -0.004875183, -0.026260376, 0.024368286, -0.0053710938, -0.008346558, 0.030380249, 3.105402e-05, -0.014709473, 0.0062065125, 0.005821228, 0.018203735, 0.04916382, -0.00356102, 0.025527954, 0.012702942, 0.017105103, 0.010948181, -0.019866943, -0.04006958, -0.037261963, 0.028259277, 0.013137817, 0.001663208, 0.0038261414, 0.0005903244, 0.017623901, 0.0015220642, -0.017745972, -0.0053482056, 0.005340576, -0.013999939, 0.0066566467, -0.00844574, -0.0070533752, -0.012741089, -0.02279663, -0.005493164, 0.019744873, -0.006538391, 0.012268066, -0.023727417, 0.028640747, 0.030395508, -0.007736206, 0.011955261, 0.033447266, -0.050811768, 0.010910034, 0.009597778, 0.04763794, -0.007850647, -0.0068244934, 0.10662842, -0.033447266, -0.043945312, -0.09088135, -0.03112793, 0.02708435, -0.039916992, -0.0073242188, 0.017211914, -0.02468872, 0.017501831, -0.027297974, -0.016921997, 0.029403687, 0.0052337646, -0.007385254, -0.03173828, -0.007797241, -0.011009216, -0.0026817322, -0.0015516281, -0.03149414, 0.044189453, 0.0033092499, 0.007358551, -0.08203125, -0.018676758, -0.0066375732, -0.0019397736, 0.018798828, -0.006401062, -0.0005145073, -0.013931274, 0.009643555, -0.057891846, -0.024612427, 0.029800415, 0.016693115, 0.037200928, -0.00969696, 0.020812988, 0.006122589, -0.048675537, 0.05871582, -0.044769287, -0.004322052, -0.004863739, 0.025039673, 0.04333496, 0.027816772, 0.043518066, -0.023223877, -0.008598328, 0.045318604, 0.050964355, -0.021896362, 0.0014877319, -0.02482605, 0.030914307, 0.01259613, 0.013717651, 0.02381897, 0.06286621, -0.0044288635, -0.05923462, -0.004245758, -0.017471313, -0.05279541, -0.035369873, -0.007911682, 0.0052948, 0.026641846, 0.011604309, 0.009841919, 0.060943604, 0.0024032593, 0.032196045, -0.017807007, 0.019943237, 0.0022888184, -0.022567749, 0.0003745556, -0.049621582, 0.060913086, 0.00027513504, -0.010932922, 0.009605408, -0.023086548, 0.011375427, 0.02999878, -0.02142334, 0.04006958, 0.029556274, 0.06561279, -0.0017471313, -0.064697266, 0.020401001, 0.009780884, 0.0357666, 0.042053223, -0.056793213, -0.021987915, 0.008125305, 0.0055618286, 0.0014257431, 0.03778076, 0.0033607483, -0.0019435883, 4.6670437e-05, -0.018966675, 0.017166138, 0.0002527237, 0.012084961, 0.013053894, 0.0032997131, -0.012771606, -0.040618896, -0.009674072, 0.035125732, -0.0289917, -0.008552551, -0.002527237, 0.02180481, -0.0020523071, 0.031707764, -0.023910522, -0.0079956055, 0.028915405, -0.0051994324, -0.0025119781, 0.010688782, 0.045288086, -0.003501892, 0.013374329, -0.047729492, 0.04827881, -0.028701782, 0.08605957, 0.039978027, -0.0028877258, 0.020355225, -0.00030589104, -0.029708862, 0.023086548, 0.004398346, 0.0011348724, 0.0027008057, 0.04397583, 0.052978516, 0.032989502, 0.059295654, -0.009895325, 0.018722534, -0.0030956268, 0.013847351, 0.03543091, -0.020401001, -0.009971619, -0.031433105, -0.013366699, -0.021133423, -0.00074625015, -0.04006958, 0.061462402, -0.007434845, -0.0335083, -0.013877869, 0.0036468506, 0.018722534, 0.005924225, -0.04751587, -0.023544312, -0.016494751, 0.0053215027, 0.011352539, -0.056427002, 0.013511658, -0.025558472, -0.03375244, -0.012359619, -0.010574341, 0.011451721, -0.01146698, -0.034973145, -0.003665924, -0.0057754517, 0.03479004, 0.05029297, 0.0015220642, 0.03387451, -0.019195557, -0.05581665, -0.056884766, 0.052612305, -0.06652832, -0.03729248, -0.00044822693, -0.022460938, -0.011428833, -0.017562866, 0.034057617, 0.049041748, 0.039642334, -0.008216858, -0.020889282, -0.048583984, -0.0064315796, 0.054534912, 0.0048294067, -0.004585266, -0.05847168, 0.019180298, -0.003364563, 0.008338928, 0.03744507, -0.0055274963, -0.013923645, -0.0012159348, 0.00035071373, -0.008216858, 0.0032749176, 0.0062332153, 0.013168335, 0.023757935, -0.01739502, 0.00868988, -0.0022850037, -0.033569336, 0.026382446, -0.011672974, 0.02268982, -0.017471313, -0.052001953, -0.051849365, -0.023788452, 0.029708862, 0.053894043, -0.029968262, -0.005710602, -0.006664276, -0.015274048, -0.017669678, -0.007080078, 0.010116577, -0.011886597, 0.009559631, -0.015472412, -0.019500732, 0.007335663, 0.007045746, -0.02810669, 0.03756714, 0.066711426, 0.021896362, -0.03652954, -0.03237915, -0.03390503, -0.008155823, -0.01713562, -0.08782959, -0.018692017, -0.048950195, 0.00051116943, 0.016845703, -0.007106781, 0.022415161, 0.00029230118, -0.020889282, 0.006591797, 0.0072021484, 0.0036258698, 0.00983429, -0.027297974, 0.04284668, -0.016159058, 0.06439209, -0.0033359528, -0.073791504, -0.047302246, 0.031219482, 0.013687134, -0.02130127, 0.037200928, -0.007904053, 0.005039215, 0.052581787, -0.045318604, -0.03717041, 0.0058250427, 0.069885254, 0.007751465, -0.005443573]}, "B07VZC21DG": {"id": "B07VZC21DG", "original": "Brand: yuxiangBBQ\nName: yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18\" W x 23\" H x 23\" D)\nDescription:

      18\"W by 23\"H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

      Introduction:

      18\"W x 23\"H x 23\"D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

      Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

      Why Choose Us?

      1.Carefully designed: Modern minimalist style and Light Luxury

      2.New Upgrade:Better, Prettier and More Handy

      3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

      We heartily provide customers the best products in the cheapest price.

      Package Contents:

      1 X Triple Drawer

      1 X Screwdriver

      3 X Handles

      1 X English manual

      \nFeatures: Product size: 18\" W x 23\"H x 23\" D. Cut hole size: 16\"Wx21\"Hx 23\". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently.\nOur outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance.\nFully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly.\nBox frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects.\nFast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible\n", "metadata": {"Name": "yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18\" W x 23\" H x 23\" D)", "Brand": "yuxiangBBQ", "Description": "

      18\"W by 23\"H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

      Introduction:

      18\"W x 23\"H x 23\"D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

      Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

      Why Choose Us?

      1.Carefully designed: Modern minimalist style and Light Luxury

      2.New Upgrade:Better, Prettier and More Handy

      3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

      We heartily provide customers the best products in the cheapest price.

      Package Contents:

      1 X Triple Drawer

      1 X Screwdriver

      3 X Handles

      1 X English manual

      ", "Features": "Product size: 18\" W x 23\"H x 23\" D. Cut hole size: 16\"Wx21\"Hx 23\". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently.\nOur outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance.\nFully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly.\nBox frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects.\nFast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0024528503, -0.0048561096, -0.018493652, -0.015823364, 0.00087594986, 0.01083374, 0.0124053955, -0.006668091, 0.019332886, 0.04373169, -0.026519775, -0.0021438599, 0.022018433, 0.01386261, -0.051849365, -0.042297363, 0.031158447, -0.032928467, 0.03225708, -0.0016212463, 0.025222778, 0.0113220215, 0.019729614, 0.013427734, 0.06652832, -0.062927246, -0.014671326, 0.02017212, 0.042388916, 0.013000488, 0.03652954, -0.045532227, 0.026733398, -0.0016460419, 0.022247314, -0.00932312, -0.010185242, 0.0050086975, 0.014709473, -0.017227173, 0.031341553, -0.021636963, -0.022338867, -0.012664795, -0.02619934, 0.016448975, 0.012290955, -0.020477295, -0.0052871704, 0.0059318542, 0.04763794, -0.010063171, 0.069885254, -0.008522034, -0.028137207, 0.0010881424, -0.020248413, -0.014381409, 0.025238037, -0.012519836, -0.008010864, -0.041046143, 0.03302002, 0.020950317, -0.038024902, 0.009529114, 0.047180176, 0.0049552917, -0.031341553, -0.08459473, 0.011459351, 0.016555786, 0.0016517639, -0.012130737, -0.007255554, -7.045269e-05, -0.012306213, -0.008674622, 0.019424438, 0.00027012825, 0.0017709732, -0.02999878, -0.0014238358, -0.04248047, 0.025894165, -0.007873535, -0.00034594536, -0.012680054, 0.027877808, -0.030151367, 0.03100586, -0.028259277, -0.049865723, 0.04864502, 0.04019165, -0.06048584, -0.047546387, -0.049743652, -0.011352539, 0.022659302, 0.023101807, -0.014717102, 0.036895752, -0.013450623, -0.004421234, 0.049560547, 0.010009766, -0.004753113, 0.012260437, 0.0138168335, -0.004722595, -0.034606934, -0.017822266, -0.029418945, -0.016311646, 0.024795532, -0.014755249, -0.021743774, 0.008049011, -0.05697632, -0.04901123, -0.013946533, -0.039367676, 0.0011796951, 0.047546387, 0.032714844, 0.008995056, 0.043670654, -0.0018548965, -0.0001513958, -0.027389526, 0.027709961, 0.028930664, -0.007835388, -0.037719727, -0.020645142, -0.018936157, -0.015640259, -0.001039505, 0.0017051697, 0.006801605, -0.024719238, 0.0038146973, 0.002363205, -0.058807373, 0.02279663, 0.0127334595, 0.011016846, -0.00970459, -0.023254395, -0.04257202, 0.022460938, 0.0519104, -0.0032310486, -0.06750488, -0.026504517, 0.03366089, -0.04925537, -0.051727295, -0.07501221, -0.03842163, 0.0126571655, 0.049591064, -0.07861328, -0.059906006, -0.033111572, -0.04537964, -0.0034732819, -0.0058670044, 0.040252686, -0.023483276, -0.0077438354, -0.0715332, -0.0055732727, 0.004508972, 0.0018281937, 0.029281616, 0.033569336, 0.018341064, -0.055145264, -0.06939697, -0.070129395, 0.045135498, -0.05621338, 0.019546509, -0.015686035, 0.015205383, 0.012245178, 0.0025520325, 0.013313293, -0.012954712, -0.0033493042, -0.02230835, -0.0029067993, 0.011360168, -0.003967285, -0.03567505, -0.000344038, -0.007083893, 0.004722595, -0.02482605, 0.007423401, 0.031051636, 0.04260254, 0.02734375, 0.04611206, -0.011741638, 0.017318726, 0.023010254, 0.0390625, -0.010345459, -0.005908966, 0.0033359528, -0.04244995, -0.023239136, -0.0035076141, -0.018356323, 0.07385254, -0.0013370514, 0.05908203, 0.0005803108, -0.01209259, 0.014884949, 7.599592e-05, 0.039215088, 0.026382446, -0.028549194, 0.0014820099, 0.030059814, 0.052520752, -0.08093262, -0.015403748, -0.018035889, 0.008079529, -0.028244019, 0.036254883, 0.024627686, 0.06530762, -0.006549835, -0.015014648, -0.0061073303, -0.01789856, -0.05126953, 0.009819031, -0.0036582947, -0.04425049, -0.018753052, 0.03439331, -0.024215698, 0.0047454834, -0.010894775, 0.02911377, 0.026672363, -0.022384644, -0.021377563, 0.043304443, -0.05947876, -0.0028419495, -0.0039043427, -0.023483276, -0.0033817291, 0.000100016594, 0.039123535, -0.015945435, 0.014434814, -0.034118652, 0.029907227, 0.025405884, 0.022079468, -0.034576416, 0.00919342, -0.0019416809, -0.0066566467, -0.012916565, -0.016326904, -0.045898438, -0.027877808, 0.037384033, -0.028198242, -0.0602417, -0.0075683594, -0.0017518997, -0.021331787, -0.0036716461, 0.024215698, -0.0053977966, 0.0033912659, 0.02230835, -0.02748108, -0.009529114, 0.0066871643, 0.05682373, 0.0020141602, -0.0084991455, -0.015167236, 0.00712204, -0.016693115, 0.07556152, -0.02331543, 0.007843018, -0.009407043, 0.020751953, -0.03918457, 0.0020866394, -0.0069274902, 0.033233643, -0.010391235, 0.029129028, 0.010070801, -0.039794922, 0.0014886856, -0.02659607, 0.04547119, -0.07751465, 0.09436035, 0.05343628, -0.007850647, 0.038391113, -0.0004992485, -0.013679504, -0.023086548, -0.032287598, 0.030807495, -0.04434204, -0.0017929077, -0.0040626526, -0.039764404, 0.016220093, 0.015266418, -0.0016565323, 0.01260376, 0.0124053955, 0.0021572113, 0.0073547363, 0.006248474, -0.010528564, -0.0103302, -0.014579773, -0.035614014, -0.017471313, -0.004573822, -0.050048828, 0.013076782, -0.0048675537, 0.0069007874, 0.0046043396, 0.0021152496, 0.020401001, -0.08312988, 0.007858276, 0.009971619, -0.049682617, 0.016464233, -0.044403076, 0.015159607, -0.013710022, -0.05432129, -0.02079773, 0.013580322, -0.053894043, -0.0073661804, -0.0046844482, -0.04647827, -0.023956299, 0.0541687, -0.0385437, -0.02229309, -0.0071983337, -0.00541687, -0.017089844, 0.025756836, 0.005092621, -0.0034313202, -0.03878784, -0.014442444, -0.03378296, 0.016448975, -0.02279663, 0.027282715, 0.005012512, 0.020309448, 0.022628784, -0.0012893677, 0.007675171, -0.01235199, 0.020004272, -0.03302002, 0.041656494, -0.039367676, -0.0061149597, -0.031982422, 0.05218506, -0.08483887, -0.016616821, 0.024383545, 0.024490356, -0.0033855438, -0.044403076, -0.042938232, -0.023757935, -0.024780273, 0.011962891, -0.006416321, -0.025619507, 0.0042800903, -0.05895996, -0.0033988953, -0.03286743, 0.005859375, 0.032348633, 0.033294678, 0.0027370453, 0.014884949, 0.0287323, 0.011428833, -0.044921875, 0.07080078, 0.02279663, 0.007507324, -0.07470703, 0.025375366, -0.017715454, 0.043518066, 0.017532349, -0.040924072, 0.027954102, -0.0013389587, 0.052520752, -0.044158936, -0.010406494, 0.012954712, -0.05493164, -0.0027694702, 0.0027675629, -0.06707764, -0.046844482, -0.005268097, -0.034088135, 0.05203247, -0.048614502, -0.022720337, 0.020050049, -0.026412964, 0.045410156, -0.009986877, -0.019897461, -0.0055885315, -0.05368042, -0.014770508, 0.016036987, -0.034698486, 0.022735596, 0.017532349, 0.024520874, -0.014328003, -0.027770996, -0.017669678, 0.01953125, 0.009689331, -0.031707764, -0.027832031, -0.026779175, 0.008224487, -0.015670776, 0.021606445, -0.027923584, -0.002363205, 0.015434265, -0.0026168823, -0.013786316, -0.006072998, 0.054473877, -0.012046814, 0.010253906, -0.013755798, 0.009117126, 0.062683105, 0.04135132, -0.045196533, -0.058013916, 0.012916565, -0.026107788, -0.064819336, 0.094055176, 0.064086914, -0.019210815, 0.026535034, 0.07086182, 0.00258255, 0.054901123, 0.01360321, -0.021453857, 0.036224365, 0.008773804, -0.03390503, 0.044708252, -0.008636475, 0.013618469, 0.04006958, 0.0047950745, -0.030685425, 0.011474609, 0.0927124, -0.03225708, -0.019577026, 0.01360321, 0.022354126, 0.004711151, 0.03640747, -0.0184021, 0.011367798, -0.018325806, -0.024765015, 0.031555176, -0.05380249, -0.014038086, 0.0040359497, 0.016143799, -0.03149414, 0.005077362, -0.021865845, -0.030319214, -0.015045166, 0.012016296, 0.05987549, 0.02658081, -0.043029785, 0.054992676, 0.002576828, 0.025817871, 0.027450562, 0.004333496, 0.048034668, -0.0028076172, -0.007835388, -0.023742676, 0.0017232895, 0.023620605, -0.011672974, -0.07788086, 0.0055007935, 0.019165039, -0.015991211, -0.045898438, -0.018722534, -0.024932861, -0.052124023, 0.00046920776, 0.031707764, -0.02330017, -0.006603241, -0.020111084, -0.11834717, -0.025421143, 0.024307251, -0.013671875, -0.053619385, 0.026260376, -0.03717041, -0.048553467, -0.0056877136, 0.04751587, -0.02305603, -0.023132324, -0.009941101, -0.0003402233, 0.038360596, 0.0006670952, 0.016571045, -0.034484863, -0.015464783, -0.012748718, 0.106933594, 0.013076782, 0.02796936, -0.03842163, -0.00793457, -0.0074806213, 0.049743652, 0.053009033, -0.050872803, 0.027572632, 8.678436e-05, -0.039276123, -0.014877319, -0.041259766, 0.02482605, -0.06048584, -0.0043029785, -0.04296875, 0.027618408, 0.0032958984, -0.0079574585, -0.02835083, 0.0040245056, 0.015838623, -0.009498596, -0.026885986, -0.009979248, 0.01852417, -0.042755127, 0.015357971, 0.007881165, -0.021194458, 0.045776367, 0.0362854, -0.050323486, -0.014083862, -0.042053223, -0.0071868896, 0.011009216, 0.027786255, -0.026855469, -0.023910522, -0.052124023, 0.047546387, -0.06451416, 0.05633545, 0.08917236, 0.0031375885, 0.02279663, -0.0005493164, -0.024627686, -0.0023860931, -0.042144775, 0.026351929, 0.034851074, -0.009422302, -0.039093018, 0.026382446, -0.009529114, 0.017410278, 0.01335907, -0.0098724365, 0.030914307, -0.000992775, 0.0049705505, -0.005332947, -0.017532349, 0.027435303, 0.013092041, -0.002357483, -0.0046081543, -0.029464722, 0.018432617, -0.026855469, -0.007850647, 0.036987305, -0.03704834, 0.005268097, -0.017288208, 0.004638672, -0.026550293, -0.034820557, 0.041534424, -0.04763794, -0.028213501, 0.021957397, 0.0039596558, -0.02230835, -0.0309906, 0.026885986, 0.013587952, 0.0017032623, 0.030792236, 0.0032196045, -0.022964478, 0.034362793, -0.025299072, 0.048309326, -0.002828598, -0.05618286, 0.0134887695, 0.00504303, 0.045135498, 0.0041122437, -0.04067993, 0.023727417, -0.034057617, -0.012756348, 0.013450623, 0.004699707, 0.003074646, -0.022872925, -0.00705719, 0.060638428, -0.015449524, -0.044921875, 0.041015625, 0.062438965, -0.030761719, -0.01576233, 0.0602417, 0.0009407997, -0.04925537, 0.055633545, -0.007408142, -0.05255127, -0.046295166, -0.008728027, 0.042877197, -0.021881104, -0.0010662079, -0.03656006, -0.011894226, -0.012458801, -0.02357483, -0.008605957, -0.0059280396, 0.007858276, -0.015090942, 0.0042381287, -0.015655518, -0.0029125214, -0.017929077, -0.009819031, 0.0008597374, 0.021484375, 0.019348145, 0.011779785, -0.006614685, -0.0016441345, 0.058044434, 0.0022068024, 0.03845215, 0.014205933, -0.00081920624, 0.0025787354, -0.013465881, -0.049621582, -0.029693604, 0.004055023, 0.011665344, -0.03050232, -0.028381348, 0.005718231, 0.072753906, -0.019958496, 0.0017271042, 0.060943604, 0.010620117, 0.02217102, 0.018112183, -0.01058197, -0.00079393387, 0.040161133, 0.010978699, -0.018539429, 0.00086688995, 0.0071792603, 0.010612488, -0.009689331, -0.017059326, 0.025482178, 0.061645508, 0.030883789, -0.042175293, -0.024658203, -0.018341064, 0.008621216, -0.057281494, 0.014137268, 0.013175964, -0.006713867, 0.011131287, -0.0077552795, -0.028549194, 0.075805664, 0.021636963, 0.047424316, 0.010025024, -0.025650024, 0.016403198, 0.028396606, -0.052703857, 0.079589844, -0.016662598, -0.031921387, 0.008415222, -0.018722534, 0.006790161, 0.029174805, 0.049713135, 0.030715942, -0.0019950867, 0.0027561188, 0.044952393, -0.029785156, -0.044952393, -0.054840088, 0.04837036, 0.04827881, 0.009796143, 0.010353088, 0.046020508, 0.016067505, -0.025909424, -0.0039253235, -0.013786316, -0.02432251, -0.006038666, -0.031463623, 0.021499634, 0.022506714, 0.0036754608, 0.0065956116, -0.011230469, 0.053894043, -0.04953003, 0.0140686035, -0.007610321, -0.01259613, 0.046203613, -0.038909912, -0.0033550262, -0.052337646, -0.0029087067, -0.014762878, -0.0008006096, 0.016189575, 0.013809204, 0.013305664, 0.009017944, 0.020874023, 0.07122803, 0.0082092285, -0.0055351257, -0.027862549, 0.04449463, -0.023880005, 0.0057868958, 0.011695862, -0.059326172, -0.036254883, -0.0037193298, 0.028564453, 0.0011119843, 0.036468506, 0.006000519, 0.018951416, 0.022628784, -0.005630493, 0.003868103, 0.016708374, -0.034484863, -0.0039634705, 0.011207581, 0.007827759, 0.021835327, 0.0018997192, 0.03717041, -0.045959473, -0.05291748, 0.010971069, 0.037750244, 0.016937256, 0.0057640076, -0.04168701, -0.023513794, 0.037841797, -0.00217247, -0.02355957, -0.027435303, 0.029296875, -0.014060974, 0.005012512, -0.029006958, 0.029785156, 0.001490593, 0.022384644, 0.016799927, 0.014572144, 0.0018835068, -0.0021247864, -0.0037765503, -0.0076942444, 0.032714844, -0.022918701, 0.03543091, 0.035369873, -0.018447876, 0.09020996, 0.06100464, -0.011802673, 0.05984497, 0.04800415, -0.04437256, 0.026916504, 0.00970459, 0.0041923523, 0.016067505, 0.012702942, 0.009628296, 0.04852295, 0.031433105, 0.03161621, 0.004966736, -0.024093628, -0.02394104, -0.0069885254, 0.015991211, -0.0029277802, -0.0043678284, -0.026153564, 0.027877808, -0.032226562, -0.046081543, -0.03729248, -0.009689331, -0.028366089, 0.04736328, 0.0090408325, -0.007987976, 0.01448822, -0.031677246, 0.013580322, -0.044525146, 0.013595581, 0.0043563843, 0.072753906, 0.016967773, 0.054534912, -0.02670288, -0.061584473, -0.08605957, 0.036499023, -0.117614746, -0.010948181, -0.017318726, 0.013679504, 0.0036010742, -0.014045715, 0.014427185, 0.05480957, 0.00459671, -0.008377075, 0.02746582, -0.0491333, -0.059295654, 0.08630371, 0.020324707, -0.001543045, 0.021759033, 0.035614014, 0.0042533875, 0.0037841797, 0.038970947, -0.023406982, -0.07409668, -0.022338867, -0.056030273, 0.023590088, -0.025787354, 0.010864258, 0.004878998, 0.012084961, -0.027008057, -0.005722046, 0.020858765, -0.017700195, 0.042175293, 0.043182373, -0.026306152, -0.015090942, -0.060913086, 0.04812622, -0.016906738, -0.0040130615, -0.008026123, -0.045074463, 0.038879395, 0.025985718, -0.037261963, 0.029342651, 0.051971436, -0.014808655, 0.0002708435, -0.0003695488, -0.02217102, -0.018234253, 0.019638062, 0.04714966, 0.01965332, -0.02458191, 0.037872314, 0.016571045, -0.022064209, -0.011779785, 0.004776001, -0.021820068, -0.0074768066, 0.004425049, -0.016906738, -0.038482666, -0.016433716, 0.026367188, -0.0065460205, 0.008178711, -0.021255493, -0.011932373, 0.01676941, 0.021743774, -0.0107803345, 0.027114868, -0.017242432, 0.053131104, -0.026321411, 0.07727051, -0.025558472, -0.05557251, -0.047668457, 0.027648926, -0.017700195, 0.002380371, 0.018157959, -0.011276245, 0.01953125, -0.009681702, 0.0057678223, -0.033477783, 0.015701294, 0.0015640259, -0.003967285, 0.02508545]}, "B0818XQ13S": {"id": "B0818XQ13S", "original": "Brand: BeebeeRun\nName: BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,\nDescription: \nFeatures: \ud83c\udf61\u301023 Pieces Food Playset\u3011BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1, \u00a0salt*1, pepper*1,BBQ grill*1\n\ud83c\udf62\u3010Play and Learn\u3011 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half\n\ud83c\udf61\u3010100% Safe\u3011All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers\u2019 hands\n\ud83c\udf62\u3010Gift For Ages 3 To Up\u3011The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun.\n\ud83c\udf61\u3010Convenient to Use\u3011Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n", "metadata": {"Name": "BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,", "Brand": "BeebeeRun", "Description": "", "Features": "\ud83c\udf61\u301023 Pieces Food Playset\u3011BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1, \u00a0salt*1, pepper*1,BBQ grill*1\n\ud83c\udf62\u3010Play and Learn\u3011 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half\n\ud83c\udf61\u3010100% Safe\u3011All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers\u2019 hands\n\ud83c\udf62\u3010Gift For Ages 3 To Up\u3011The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun.\n\ud83c\udf61\u3010Convenient to Use\u3011Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.030212402, -0.020263672, -0.027618408, -0.0055770874, -0.040985107, 0.002412796, -0.04156494, 0.008735657, -0.066467285, 0.0072135925, -0.022384644, 0.040252686, -0.02079773, -0.018081665, 0.046966553, -0.049926758, -0.016708374, 0.029312134, 0.018417358, -0.015335083, 0.019195557, -0.03250122, -0.0077323914, -0.00605011, 0.06161499, -0.04638672, 0.003921509, 0.025314331, 0.045562744, 0.022201538, 0.030914307, -0.051208496, 0.03250122, 0.01776123, -0.06225586, -0.053863525, -0.032806396, -0.009277344, -0.028869629, 0.00073099136, 0.01272583, 0.014465332, -0.018798828, 0.017822266, -0.044433594, -0.0059661865, -0.028427124, 0.001660347, 0.0047340393, 0.014854431, -0.00020825863, 0.042510986, -0.0010824203, -0.0035648346, 0.019363403, 0.006263733, -0.015037537, 0.0068092346, 0.025527954, -0.00024962425, -0.0075416565, 0.0014638901, 0.022323608, 0.008392334, -0.0051460266, -0.014312744, 0.06781006, -0.001414299, -0.060760498, 0.00793457, 0.08856201, -0.0008544922, 0.021911621, -0.042297363, -0.0055503845, 0.0035648346, -0.029052734, -0.016601562, 0.032073975, -0.0066871643, -0.02507019, -0.024627686, 0.024505615, -0.05847168, 0.0121154785, -0.03390503, -0.005783081, 0.01184082, -0.014457703, -0.0005145073, -0.009277344, -0.032592773, -0.020233154, 0.05178833, -0.008995056, 0.0046043396, -0.039642334, -0.032470703, 0.008781433, -0.0009036064, 0.003698349, -0.015396118, -0.015296936, 0.01109314, -0.017486572, 0.007965088, 0.0128479, 0.024658203, 0.0035648346, 0.020599365, -0.04031372, 0.0008215904, 0.02947998, -0.03781128, -0.013664246, 0.014625549, 0.01777649, 0.008918762, 0.03050232, -0.014152527, -0.029891968, -0.0115737915, -0.0011167526, 0.04446411, 0.056488037, 0.06750488, -0.0023651123, 0.013587952, -0.04928589, 0.008598328, -0.0072631836, 0.012817383, 0.03765869, 0.037384033, -0.0009946823, -0.01789856, 0.04852295, -0.058258057, -0.023727417, 0.020599365, 0.011421204, 0.02935791, 0.026977539, -0.0335083, 0.014549255, -0.01789856, 0.022064209, 0.02658081, 0.005718231, -0.0033493042, -0.00579834, 0.033721924, 0.021652222, -0.0063934326, -0.036956787, 0.0069465637, -0.043884277, 0.014122009, -0.012741089, 0.00010585785, -0.024017334, 0.0005083084, -0.004085541, -0.009819031, 0.0209198, -0.0087509155, 0.03918457, 0.021957397, 0.009361267, 0.04208374, -0.027572632, 0.006389618, -0.04949951, -0.03741455, -0.026748657, -0.012481689, -0.011100769, 0.031982422, 0.068237305, -0.08312988, -0.0982666, -0.07336426, 0.105163574, -0.06640625, 0.03125, -0.04598999, -0.017684937, -0.068359375, 0.02166748, 0.006088257, -0.029556274, 0.008758545, -0.05392456, -0.008346558, 0.019638062, 0.033599854, -0.008605957, 0.0039863586, 0.011184692, -0.028030396, -0.028717041, -0.020645142, 0.027832031, 0.0002644062, -0.013427734, -0.018188477, -0.005241394, 0.022583008, 0.016677856, 0.03201294, 0.017227173, -0.0018444061, -0.041625977, 0.054992676, -0.019927979, -0.04434204, -0.040161133, 0.056518555, -0.030181885, 0.03704834, -0.021331787, -0.046325684, 0.0050086975, 0.023880005, 0.03643799, -0.00440979, -0.02319336, -0.0104904175, 0.025009155, 0.016342163, -0.02734375, 0.031402588, 0.046295166, 0.052124023, -0.025115967, 0.022232056, 0.04043579, 0.031677246, -0.0112838745, 0.009239197, 0.008590698, 0.03338623, -0.03274536, -0.0059013367, 0.037200928, -0.041778564, -0.0033473969, 0.004711151, -0.007003784, 0.035461426, -0.0026817322, 0.04598999, 0.026901245, 0.024246216, -0.0031261444, 0.04724121, -0.07366943, -0.030380249, 0.008148193, -0.0009531975, 0.003293991, 5.3465366e-05, 0.047973633, -0.02645874, 0.062042236, -0.05255127, 0.03201294, 0.0050582886, -0.0072669983, -0.022537231, 0.009994507, -0.006454468, -0.0050697327, 0.019210815, -0.0050315857, -0.03250122, -0.033355713, 0.015174866, -0.00756073, -0.015220642, 0.024383545, 0.035308838, 0.031173706, 7.033348e-06, 0.013397217, -0.0034828186, 0.012588501, 0.0259552, -0.0121536255, -0.028762817, 0.022491455, -0.010650635, -0.029403687, -0.0035362244, -0.024093628, -0.036346436, 0.03793335, 0.053833008, 0.00083589554, -0.023864746, -0.0074005127, 0.017196655, -0.07019043, 0.022720337, 0.009185791, -0.0011701584, -0.0010881424, 0.014801025, 0.016799927, -0.044189453, 0.04031372, 0.05419922, 0.036834717, 0.0073242188, 0.08404541, 0.02658081, 0.040802002, 0.07171631, 0.045959473, -0.015106201, -0.062194824, 0.0129852295, -0.057647705, -0.006996155, 0.000834465, 0.050933838, -0.046295166, 0.0028972626, -0.029754639, -0.005554199, 0.044799805, -0.0012569427, 0.04574585, -0.005519867, 0.0025997162, -0.050964355, 0.008995056, -0.0047798157, -0.02003479, -0.026031494, 0.010070801, 0.01197052, 0.005695343, -0.013969421, -0.025009155, -0.0002593994, 0.021942139, 0.01763916, 0.0021743774, -0.0018835068, -0.0052223206, -0.032226562, 0.017227173, 0.025421143, 0.00724411, -0.023208618, -0.015991211, 0.02758789, -0.02204895, -0.029754639, -0.039215088, 0.0046844482, -0.04083252, 0.013664246, 0.03036499, -0.02708435, -0.0051651, 0.017105103, 0.02897644, 0.026809692, 0.014015198, 0.03527832, -0.016296387, -0.03933716, -0.024642944, -0.043182373, 0.07122803, -0.0141067505, -0.01876831, 0.03704834, -0.008995056, 0.027755737, -0.022888184, 0.022872925, 0.074157715, -0.0032672882, 0.029830933, 0.082092285, 0.012588501, -0.014877319, -0.01675415, 0.01802063, 0.006088257, -0.0008172989, -0.008529663, -0.011726379, 0.011741638, -0.04046631, -0.036987305, -0.023727417, -0.0026416779, 0.011627197, -0.017028809, 0.024871826, -0.019546509, -0.059631348, 0.009841919, -0.037963867, 0.025848389, 0.026641846, -0.00995636, 0.009353638, -0.021408081, 0.007083893, -0.02330017, 0.0061035156, 0.045776367, 0.00075531006, -0.00868988, -0.055725098, 0.062286377, -0.09362793, 0.06072998, 0.006706238, -0.014572144, 0.041168213, 0.008621216, 0.011917114, 0.020629883, 0.006462097, 0.009414673, -0.020141602, -0.0060653687, -0.0023708344, -0.0098724365, -0.009300232, -0.03326416, -0.050323486, 0.0007953644, -0.026168823, -0.015281677, 0.011428833, -0.009094238, 0.009063721, 0.0018720627, -0.043792725, -0.006652832, -0.018829346, -0.04711914, -0.016067505, -0.038116455, 0.034118652, 0.005542755, 0.028686523, 0.010772705, 0.04751587, 0.02835083, 0.029846191, 0.050354004, -0.03744507, -0.061798096, -0.047210693, 0.043670654, -0.0068626404, 0.034454346, -0.024917603, 0.047668457, -0.013687134, 0.019378662, 0.011199951, -0.002084732, -0.03164673, -0.016662598, 0.012084961, -0.028213501, 0.0076179504, 0.019699097, 0.037231445, -0.0138168335, -0.031829834, 0.008491516, -0.020126343, 0.0063819885, 0.10192871, 0.047210693, 0.00027441978, 0.028930664, 0.0635376, -0.031036377, 0.009178162, 0.032104492, -0.0021247864, 0.01902771, 0.01322937, -0.025405884, -0.023208618, 0.014122009, -0.0262146, 0.047607422, 0.035125732, -0.06512451, 0.025238037, -0.010467529, -0.052124023, -0.025665283, -0.005607605, 0.06500244, -0.006690979, 0.018737793, 0.02897644, 0.025756836, -0.0043258667, -0.02407837, 0.011253357, -0.04309082, -0.0368042, -0.015197754, 0.033569336, -0.056915283, -0.008987427, -0.008895874, -0.03881836, 0.01701355, 0.037231445, 0.013687134, -0.013442993, -0.007095337, -0.011680603, 0.015083313, 0.027999878, 0.006801605, -0.036193848, 0.008605957, -0.0018281937, 0.022018433, 0.020233154, -0.027145386, -0.0012979507, 0.038269043, -0.002960205, 0.010978699, -0.023483276, -0.06567383, 0.020874023, 0.0073776245, -0.051940918, -0.011932373, -0.019683838, -0.024658203, -0.035827637, -0.008354187, -0.0053138733, -0.053100586, -0.005683899, 0.021347046, -0.04888916, -0.054138184, 0.010620117, -0.0015687943, 0.0052986145, -0.022628784, 0.003484726, -0.029510498, 0.009284973, -0.073791504, -0.0025024414, 0.04925537, 0.04525757, -0.06390381, -0.008468628, -0.029800415, 0.018295288, 0.01638794, -0.030807495, 0.011367798, -0.025924683, -0.055847168, -0.0048217773, 0.003982544, 0.109375, 0.048614502, 0.05029297, -0.08502197, -0.013290405, -0.055664062, 0.0043144226, 0.003501892, -0.02520752, -0.050872803, -0.046661377, 0.020263672, 0.029769897, -0.0069274902, 0.010787964, 0.02204895, 0.009475708, 0.03744507, -0.07702637, -0.035827637, -0.0034294128, 0.011199951, -0.010696411, -0.00969696, -0.022094727, 0.030670166, 0.007926941, 0.026412964, -0.040039062, -0.03050232, -0.078552246, 0.0013694763, 0.044067383, -0.056152344, 0.014823914, -0.08081055, 0.008934021, -0.05227661, 0.09893799, 0.048858643, -0.068237305, -0.036193848, 0.012619019, -0.062561035, -0.029174805, 0.027755737, -0.043426514, -0.04434204, 0.0057296753, -0.00016224384, -0.01876831, 0.0070724487, -0.0068969727, -0.048095703, -0.012557983, -0.028961182, 0.012451172, -0.020568848, -0.033599854, -0.011489868, -0.0057144165, 0.027557373, 0.018615723, 0.012924194, -0.029510498, -0.006614685, -0.004108429, -0.008148193, -0.002046585, -0.009819031, 0.0029125214, -0.01360321, 0.014427185, -0.013504028, -0.0069007874, 0.025405884, -0.0013742447, -0.018753052, 0.014930725, -0.025482178, 0.008995056, -0.0034275055, 0.031463623, -0.031829834, 0.019210815, 0.017150879, -0.039093018, -0.006023407, 0.046203613, -0.06274414, 0.04788208, 0.030838013, -0.03677368, 0.06210327, 0.0029335022, 0.02017212, -0.014335632, -0.010192871, -0.006729126, -0.014976501, -0.00091171265, -0.0069007874, -0.034942627, 0.026916504, -0.0018720627, -0.008110046, 0.04562378, -0.008468628, -0.0317688, -0.017456055, 0.0040016174, -0.07092285, -0.036834717, 0.0036258698, -0.024490356, -0.0135650635, 0.0040245056, 0.012916565, -0.039886475, -0.04434204, -0.0368042, 0.058532715, -0.0107803345, -0.035064697, -0.038879395, -0.020767212, 0.006828308, -0.03756714, 0.01386261, -0.033355713, 0.00592041, -0.013938904, 0.010116577, -0.042419434, -0.009757996, -0.005138397, -0.04724121, -0.05480957, 0.0004143715, -0.021774292, 0.005657196, -0.045166016, 0.02519226, -0.015235901, -0.033843994, 0.010520935, 0.02835083, -0.070739746, 0.0026493073, 0.0053482056, 0.020950317, -0.02798462, 0.0016889572, 0.073791504, -0.054107666, -0.03591919, -0.04827881, 0.05065918, -0.032684326, -0.0033664703, 0.022537231, 0.011962891, 0.0024223328, 0.0152282715, -0.011520386, 0.026672363, 0.014083862, 0.021072388, -0.01838684, 0.03591919, 0.038238525, 0.04977417, -0.0256958, 0.034606934, 0.010810852, 0.0423584, 0.020217896, 0.014404297, -0.07122803, -0.0057907104, -0.026931763, -0.03857422, 0.011100769, -0.011413574, -0.00982666, -0.0029850006, -0.012992859, -0.021530151, 0.029647827, 0.01121521, 0.012886047, -0.005142212, -0.0008916855, 0.0059776306, 0.014320374, -0.018447876, 0.039764404, -0.012886047, -0.035614014, -0.013366699, 0.025680542, 0.037078857, -0.0012769699, 0.0036182404, -0.007003784, 0.013885498, -0.0027046204, 0.02482605, -0.03086853, 0.015296936, -0.01083374, 0.016601562, 0.01449585, -0.023040771, -0.044128418, 0.013328552, 0.03543091, -0.013442993, -0.049194336, -0.020965576, -0.00078582764, -0.022369385, -0.018096924, -0.00085783005, -0.0154418945, -0.010269165, -0.0033340454, 0.060333252, -0.03756714, -0.008033752, 0.050445557, 0.017669678, 0.033172607, -0.0178833, -0.015731812, -0.049560547, 0.015426636, -0.0473938, -0.00869751, 0.0041770935, -0.031951904, 0.025100708, 0.038757324, -0.000521183, -0.0030441284, 0.010688782, 0.028060913, -0.002149582, -0.011161804, -0.006286621, -0.01550293, 0.036865234, -0.0015239716, -0.045806885, -0.0119018555, -0.019958496, 0.03616333, 0.011016846, 0.06744385, -0.024169922, 0.029342651, -0.024291992, 0.013450623, -0.009002686, -0.026443481, 0.017730713, 0.05307007, 0.015556335, -0.014770508, -0.030563354, -0.017837524, 0.039733887, -0.068359375, -0.0023174286, -0.019302368, 0.016464233, -0.0463562, 0.028915405, -0.004989624, -0.031173706, 0.02557373, 0.045654297, 0.017715454, 0.042297363, -0.03869629, 0.0065460205, 0.028335571, -0.02998352, 0.010635376, -0.009391785, 0.03741455, 0.03479004, 0.004802704, -0.046966553, 0.047607422, -0.00969696, -0.010932922, 0.028060913, 0.035949707, 0.04562378, -0.015731812, 0.030792236, 0.045959473, 0.036132812, -0.055145264, 0.018249512, 0.08520508, -0.01979065, -0.025131226, -0.005306244, -0.021469116, -0.049926758, -0.0010871887, -0.016677856, -0.011634827, -0.0362854, 0.040618896, 0.00308609, -0.0013494492, -0.013320923, -0.036834717, 0.05645752, -0.039733887, -0.007411957, -0.04159546, -0.036499023, 0.003396988, 0.039764404, 0.0039901733, -0.020126343, -0.02331543, 0.015144348, 0.003206253, -0.024810791, -0.003944397, -0.02861023, 0.016052246, -0.06500244, 0.009925842, -0.021408081, 0.08215332, 0.022094727, 0.061309814, -0.028152466, -0.06933594, -0.08728027, 0.03363037, -0.095947266, -0.015541077, -0.0011930466, 0.032714844, 0.0435791, -0.002231598, 0.005718231, 0.04095459, 0.0008735657, -0.004676819, 0.0058250427, -0.03756714, -0.03704834, 0.04776001, 0.0038833618, -0.020629883, -0.005355835, 0.0569458, -0.01436615, 0.023651123, 0.02444458, -0.013175964, -0.072265625, -0.015792847, -0.0418396, -0.00017416477, 0.023757935, -0.02368164, 0.021453857, -0.002494812, -0.057769775, -0.02168274, -0.0037708282, -0.0010652542, 0.012916565, 0.06604004, 0.01133728, -0.009559631, 0.015975952, -0.032318115, -0.0029411316, 0.01979065, -0.009292603, 0.015052795, -0.0034122467, 0.0113220215, -0.004142761, -0.019104004, 0.011413574, -0.012535095, -0.001666069, -0.016616821, 0.032043457, -0.022033691, 0.002462387, 0.030899048, -0.015975952, -0.030059814, 0.010482788, 0.021881104, -0.030700684, -0.027709961, -0.021697998, 0.007980347, -0.01689148, -0.043792725, 0.009727478, -0.033081055, 0.00023818016, 0.027755737, 0.00843811, 0.02909851, -0.022613525, -0.039733887, -0.004337311, -0.013214111, 0.013153076, -0.016189575, -0.0184021, 0.015838623, -0.0022239685, 0.0440979, -0.005142212, -0.02355957, -0.057128906, 0.06726074, 0.038757324, -0.05218506, 0.08770752, -0.050628662, 0.008010864, -0.0135650635, -0.002254486, -0.0152282715, 0.027618408, -0.01965332, -0.024551392, 0.010543823]}, "B086Z49LJ5": {"id": "B086Z49LJ5", "original": "Brand: DuroMax\nName: DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "metadata": {"Name": "DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue", "Brand": "DuroMax", "Description": "", "Features": "All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0020065308, 0.0025520325, -0.023147583, -0.049713135, 0.0033683777, -0.0070495605, -0.023635864, -0.005432129, -0.05267334, 0.012962341, -0.005382538, 0.03387451, -0.0027313232, -0.025054932, 0.03274536, -0.041137695, -0.0045394897, 0.043151855, 0.017959595, -0.0037822723, 0.018173218, 0.011627197, -0.050628662, 0.073913574, 0.0069351196, 0.0067443848, 0.034301758, -0.015716553, 0.03125, -0.01576233, 0.03475952, -0.020126343, 0.03894043, -0.020233154, 0.005455017, -0.023345947, -0.027389526, 0.00025725365, -0.02848816, 0.008354187, -0.014434814, 0.012359619, 0.02355957, -0.009536743, -0.015487671, -0.0345459, 0.019882202, -0.011947632, -0.021072388, -0.006668091, -0.042785645, 0.008598328, -0.028686523, 0.003484726, 0.02734375, 0.022369385, -0.03375244, -0.015396118, 0.01991272, 0.014083862, 0.017028809, -0.020950317, 0.027664185, -0.0056152344, -0.042022705, -0.017410278, 0.01889038, -0.018630981, 0.062072754, -0.025848389, -0.016921997, 0.058532715, 0.016403198, 0.004135132, -0.018707275, -0.002418518, 0.010154724, 0.02760315, 0.025146484, 0.0041007996, 0.018569946, -0.015235901, 0.031707764, 0.0115737915, -0.014038086, 0.0018758774, -0.006038666, -0.007663727, -0.011413574, -0.0053138733, -0.012329102, 0.011734009, -0.013404846, -0.0033130646, -0.032196045, -0.012069702, 0.011482239, -0.05102539, 0.0713501, 0.0066452026, 0.05279541, -0.09057617, 0.042114258, 0.02166748, -0.0047416687, 0.011367798, 0.0013418198, -0.02760315, 0.008117676, 0.014579773, -0.018096924, 0.028320312, 0.012504578, -0.028747559, -0.026245117, 0.035461426, 0.012298584, 0.010696411, 0.01965332, 0.028152466, 0.03967285, 0.04232788, 0.018722534, 0.00087594986, 0.008522034, 0.021347046, -0.017684937, -0.06726074, 0.016937256, 0.018310547, -0.06506348, 0.017532349, 0.04586792, 0.0033493042, 0.0007967949, -0.02331543, -0.01020813, 0.03302002, 0.009086609, -0.030792236, 0.027389526, -0.00957489, 0.015686035, 0.045562744, 0.00040912628, -0.0061454773, 0.02659607, 0.0395813, 0.0065574646, -0.015655518, 0.023544312, 0.0039634705, 0.00033640862, 0.03692627, 0.024093628, -0.0049362183, 0.018585205, -0.009613037, 0.037384033, 0.00024318695, -0.0066108704, -0.015686035, 0.015960693, -0.025726318, -0.04425049, 0.013519287, -0.01209259, -0.020812988, 0.01763916, -0.0011644363, -0.002084732, 0.057617188, -0.003522873, 0.005760193, 0.026885986, -0.024108887, -0.024215698, 0.03845215, 0.043060303, -0.091674805, -0.0690918, -0.05126953, 0.039245605, -0.0051193237, -0.003358841, 0.009376526, 0.0066566467, 0.005847931, -0.0014791489, 0.0013818741, 0.027053833, 0.03338623, -0.029724121, 0.003993988, 0.004184723, -0.007041931, 0.010284424, 0.008216858, -0.0050849915, 0.006088257, -0.021087646, 0.0026454926, 0.003730774, -0.0019426346, -0.031158447, -0.028945923, -0.009262085, 0.019454956, 0.0010929108, -0.0082473755, -0.006134033, -0.044891357, 0.022125244, -0.03137207, -0.025390625, 0.015319824, -0.044158936, 0.053649902, 0.026824951, 0.03982544, 0.016052246, -0.002948761, 0.04034424, -0.044036865, 0.047180176, -0.009208679, -0.020324707, -0.017181396, 0.03567505, -0.02029419, 0.008956909, 0.06500244, -0.0014305115, 0.015548706, -0.02911377, 0.027801514, 0.024108887, 0.025894165, -0.013702393, -0.010131836, 0.02619934, -0.033203125, -0.009544373, 0.0017375946, -0.01348114, 0.001627922, 0.02583313, -0.00046420097, -0.015991211, 0.028549194, -0.020996094, -0.012397766, 0.029632568, 0.033843994, -0.03463745, 0.023849487, -0.006259918, 0.043182373, -0.04171753, 0.009689331, 0.004058838, 0.045715332, 0.010299683, 0.022338867, -0.013160706, 0.009986877, 0.04055786, 0.03390503, -0.008628845, -0.014152527, 0.020812988, 0.04660034, -0.011558533, 0.010871887, 0.038116455, 0.026687622, -0.044311523, -0.0050086975, 0.037628174, 0.018173218, 0.006340027, -0.039245605, -0.0131073, -0.00026464462, 0.060058594, 0.022567749, 0.032104492, 0.017547607, -0.014083862, -0.034698486, 0.017990112, -0.020843506, -0.046569824, -0.00038647652, 0.013259888, -0.05178833, 0.03353882, -0.03982544, 0.036010742, -0.056243896, 0.038726807, 0.056854248, -0.074279785, 0.076171875, -0.015686035, 0.005470276, -0.005607605, -0.031021118, -0.031463623, -0.012832642, -0.050109863, 0.024749756, 0.032806396, -0.04446411, 0.044433594, 0.021224976, -0.021148682, 0.02809143, 0.0020885468, 0.03491211, -0.056152344, 0.018737793, -0.008201599, -0.00062417984, 0.0345459, 0.014717102, -0.028076172, 0.011978149, -0.02041626, -0.010864258, -0.0039253235, -0.015296936, -0.0033988953, 0.025253296, 0.008155823, -0.01600647, -0.003818512, 0.054992676, 0.007171631, -0.0552063, 0.017196655, -0.031402588, -0.001209259, 0.04486084, -0.031402588, -0.018096924, 0.042785645, -0.012420654, -0.016647339, 0.020629883, 0.0073432922, -0.0065345764, 0.02784729, 0.0071144104, 0.023742676, -0.089538574, -0.04458618, -0.022201538, -0.06866455, -0.07006836, -0.01651001, -0.020355225, -0.078308105, -0.026351929, 0.07220459, -0.014167786, 0.0025424957, -0.07946777, -0.022949219, -0.013748169, 0.003982544, -0.018661499, -0.05987549, -0.0055351257, -0.012268066, 0.02331543, -0.0051574707, -0.04736328, 0.08441162, 0.01424408, -0.015159607, -0.003534317, -0.024291992, -0.014442444, -0.021209717, 0.03994751, 0.024734497, 0.02734375, -0.0032024384, -0.033081055, 0.025924683, 0.06524658, -0.0049743652, -0.008651733, 0.03036499, 0.012580872, -0.045837402, -0.019470215, -0.062286377, -0.010574341, -0.08312988, 0.036499023, -0.005218506, 0.010925293, -0.041229248, -0.014587402, -0.05126953, -0.06311035, 0.00060367584, 0.02305603, -0.0022697449, 0.005054474, -0.012550354, 0.008377075, 0.017211914, -0.039245605, 0.0067634583, -0.025390625, 0.012016296, 0.024627686, 0.055419922, -0.07836914, 0.03778076, 0.054992676, -0.034973145, 0.022750854, -0.055633545, -0.00032925606, 0.019546509, 0.054534912, -0.042755127, 0.036346436, -0.002866745, 0.027770996, 0.018829346, -0.0053901672, -0.033203125, -0.119506836, 0.008110046, -0.042785645, -0.045410156, 0.0066604614, 0.00881958, 0.03463745, -0.01953125, -0.0010471344, -0.0071640015, -0.054473877, 0.0049209595, -0.051361084, 0.023651123, 0.0010309219, -0.004463196, -0.007194519, -0.0007839203, 0.064575195, 0.020248413, 0.031463623, 0.028259277, -0.026611328, -0.033325195, -0.023895264, 0.03010559, -0.017410278, -0.007827759, -0.07098389, 0.03817749, 0.0022830963, -0.006954193, 0.00068855286, -0.021621704, 0.08093262, -0.018249512, -0.03665161, 0.034057617, -0.048553467, -0.0025081635, 0.02848816, -0.0042648315, -0.036621094, -0.036254883, 0.0031261444, -0.087890625, 0.033721924, 0.023254395, -0.005256653, 0.026824951, 0.040496826, -0.017593384, 0.09088135, 0.028045654, 0.011566162, -0.0013237, 0.091674805, -0.04550171, 0.046722412, 0.020477295, -0.046875, -0.026504517, -0.0155181885, -0.055419922, 0.0001809597, 0.014961243, 0.012138367, -0.08343506, 0.0076789856, 0.03189087, -0.023666382, 0.033294678, -0.074035645, -0.005870819, -0.03805542, -0.021026611, -0.0013170242, -0.026794434, 0.04763794, -0.043914795, -0.009437561, -0.009529114, 0.005332947, -0.020690918, 0.010520935, -0.0039520264, 0.01977539, 0.0038089752, -0.021087646, 0.0005764961, -0.002286911, -0.026138306, 0.0016441345, 0.009963989, 0.045135498, 0.032348633, 0.005130768, -0.008644104, -0.028930664, -0.025024414, -0.038635254, -0.046539307, -0.016204834, 0.01939392, 0.011276245, -0.04849243, 0.0016479492, -0.015258789, 0.000118494034, -0.014961243, 0.06088257, -0.09277344, 0.02458191, 0.0054016113, 0.007385254, -0.05444336, -0.024169922, -0.017608643, 0.0076408386, -0.0048294067, 0.00015771389, -0.026519775, -0.019348145, 0.01826477, -0.02255249, -0.023513794, 0.014266968, 0.03778076, -0.010986328, 0.035369873, -0.037139893, -0.009208679, -0.03012085, -0.022750854, -0.026992798, -0.00055742264, -0.039367676, -0.011581421, -0.0070152283, -0.046295166, 0.009086609, -0.016525269, 0.015060425, 0.025436401, 0.01309967, -0.035064697, -0.011054993, -0.04019165, -0.0052223206, 0.052490234, 0.0059776306, -0.018722534, -0.020614624, 0.04788208, -0.028930664, 0.03439331, -0.01373291, 0.009994507, -0.010375977, 0.008903503, -0.110839844, -0.083618164, -0.0115737915, -0.0039787292, 0.0025634766, -0.004169464, -0.0124435425, 0.022827148, 0.0059928894, 0.009895325, -0.0030612946, -0.030822754, 0.0042152405, -0.0020542145, 0.042907715, -0.011634827, -0.03894043, -0.021499634, 0.02708435, -0.059143066, 0.019348145, 0.074523926, 0.04171753, 0.04824829, 0.0025024414, 0.015113831, -0.0119018555, -0.028549194, 0.017944336, 0.010116577, 0.017105103, -0.033966064, 0.0025253296, 0.005378723, -0.009223938, -0.05001831, -0.043273926, -0.043670654, -0.006969452, 0.007511139, -0.011985779, 0.04901123, 0.0059661865, -0.031021118, -0.009902954, -0.06604004, 0.0067749023, 0.052642822, -0.021514893, -0.012718201, 0.0066108704, 0.004535675, 0.016448975, -0.011703491, 0.009552002, -0.062683105, 0.036590576, 0.029907227, 0.03753662, -0.0046806335, 0.0058403015, -0.0016355515, -0.050445557, -0.06829834, -0.046295166, 0.01235199, -0.050598145, 0.005142212, 0.0076408386, 0.031707764, 0.012939453, 0.017440796, -0.03225708, -0.0042304993, 0.032043457, 0.044769287, -0.006000519, 0.0048332214, 0.038146973, 0.046813965, -1.04904175e-05, 0.041168213, -0.03237915, 0.03262329, 0.04208374, 0.015914917, 0.00022816658, -0.020462036, 0.058135986, -0.005432129, -0.027236938, 0.007686615, -0.004108429, -0.00381279, 0.0103302, -0.009033203, -0.021865845, -0.0010070801, -0.0059127808, 0.018005371, 0.007648468, -0.022155762, -0.040985107, 0.004890442, 0.037261963, 0.009963989, 0.043273926, -0.015686035, 0.037475586, 0.019317627, -0.030853271, 0.010574341, 0.025985718, -0.0015525818, -0.023895264, -0.041168213, -0.005531311, -0.032562256, -0.004928589, -0.0049934387, -0.023223877, -0.0076141357, 0.047058105, 0.019134521, 0.009674072, 0.020004272, -0.017501831, -0.0051612854, -0.004550934, -0.0058403015, 0.025772095, 0.00023758411, -0.0109939575, 0.009803772, -0.02319336, 0.008117676, -0.015174866, -0.034576416, 0.011741638, 0.0413208, -0.035705566, -0.024627686, 0.023132324, 0.007633209, 0.013168335, 0.0014276505, -0.011329651, -0.061553955, 0.00031113625, 0.0038166046, -0.04019165, -0.046844482, -0.04309082, 0.0018758774, -0.001964569, -0.04119873, -0.033447266, 0.012306213, 0.00086402893, 0.044067383, -0.024337769, -0.059265137, -0.006210327, -0.0496521, -0.0017461777, 0.024810791, 0.020492554, 0.010505676, 0.034057617, -0.004787445, 0.047821045, -0.0076560974, 0.016021729, 0.03164673, -0.014541626, 0.01953125, 0.019363403, -0.002922058, 0.027420044, 0.009742737, -0.015945435, -0.02758789, -0.00094890594, -0.010154724, 0.037109375, -0.024993896, 0.011665344, -0.020217896, -0.0048942566, 0.00019860268, 0.037261963, -0.046936035, -0.0022716522, 0.0113220215, 0.042053223, 0.05508423, 0.013641357, 0.03302002, -0.031143188, -0.030563354, 0.019210815, 0.0031375885, -0.036376953, 0.03353882, 0.0021514893, -0.037017822, -0.006954193, -0.04876709, -0.010894775, -0.026367188, 0.05441284, -0.02293396, -0.006137848, 0.017745972, -0.051452637, 0.027694702, 0.0033817291, 0.038726807, 0.0005540848, -0.009803772, -0.030929565, 0.017059326, -0.007320404, 0.027954102, 0.04537964, -0.0060424805, 0.0036258698, -0.04449463, -0.031585693, 0.034851074, -0.010635376, -0.01499939, 0.0025920868, -0.0082092285, -0.048065186, -0.024963379, 0.011016846, -0.026245117, -0.013450623, 0.028335571, 0.05706787, 0.0060310364, 0.033416748, -0.04385376, -0.0008893013, -0.041900635, -0.011070251, -0.033081055, -0.0046043396, 8.559227e-05, 0.014976501, 0.010498047, 0.06384277, 0.02545166, -0.017654419, 0.029907227, 0.027252197, -0.010169983, -0.0056114197, 0.033569336, -0.015670776, -0.06738281, -0.017333984, 0.03366089, -0.0074386597, 0.049804688, -0.015075684, -0.028457642, 0.048706055, -0.020812988, 0.013305664, 0.042785645, 0.05029297, 0.021102905, 0.007003784, -0.05758667, -0.021911621, -0.017700195, 0.007587433, -0.030853271, 0.05227661, 0.010238647, -0.059631348, -0.0023555756, -0.021377563, 0.033081055, -0.045837402, 0.023971558, -0.0256958, 0.035003662, 0.045135498, -0.023468018, -0.013076782, 0.0038776398, 0.010360718, 0.015304565, 0.033050537, -0.013435364, 0.028762817, 0.0045776367, 0.033599854, -0.0713501, 0.0692749, -0.030151367, -0.09680176, -0.0040664673, -0.018325806, -0.050933838, -0.016281128, -0.049560547, -0.030639648, -0.038970947, -0.068481445, 0.01701355, -0.034301758, -0.04006958, -0.028289795, 0.014526367, 0.0044441223, -0.03488159, -0.020736694, 0.0064201355, 0.034851074, -0.014511108, 0.0030174255, -0.008369446, -0.062469482, -0.026641846, 0.045776367, -0.08276367, -0.03805542, 0.01826477, -0.008369446, 0.010803223, 0.010375977, 0.048187256, 0.07574463, 0.0184021, 0.0061950684, 0.049743652, -0.016845703, -0.046173096, 0.037506104, 0.037750244, -0.044555664, 0.036987305, 0.034240723, -0.033447266, 0.01499939, -0.0034446716, -0.012863159, -0.00730896, 0.018539429, 0.029815674, -0.053863525, -0.01979065, 0.00096035004, 0.023834229, -0.007423401, -0.04324341, 0.036743164, 0.018112183, 0.049072266, 0.0026474, -0.021575928, 0.06347656, -0.01134491, -0.05239868, -0.056427002, -0.046295166, 0.007835388, 0.018463135, -0.081726074, 0.0018606186, -0.02116394, -0.03277588, 0.023971558, 0.04058838, -0.021224976, -0.033233643, 0.056427002, -0.015525818, -0.03265381, 0.023590088, -0.0053215027, -0.026275635, -0.043395996, 0.030441284, -0.039978027, 0.0034484863, -0.0075187683, -0.057800293, 0.0068092346, -0.028869629, -0.032318115, -0.0101623535, 0.07019043, -0.02027893, 0.0034637451, 0.03366089, -0.030151367, -0.021469116, 0.030151367, 0.011604309, -0.008918762, -0.027191162, 0.0018634796, 0.033599854, -0.0027561188, -0.027160645, 0.021774292, -0.05038452, -0.045684814, -0.044769287, 0.022003174, 0.032104492, -0.005142212, 0.08355713, -0.013023376, 0.0077590942, -0.0065727234, -0.048034668, -0.00023174286, -0.039520264, -0.011177063, -0.027252197, -0.009651184]}, "B01MSYK6BU": {"id": "B01MSYK6BU", "original": "Brand: only fire\nName: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch\nDescription: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.\nFeatures: Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel.\nPerfect replacement part for charcoal or gas grill.\nUsed for picnic, camping, outdoor cooking, turn your fire pit into a grill.\nHinged center to fold in half makes it easy to add Charcoals, logs and clean embers.\nDouble-check the dimensions of your grills or fire pit before ordering.!\n", "metadata": {"Name": "Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch", "Brand": "only fire", "Description": "Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.", "Features": "Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel.\nPerfect replacement part for charcoal or gas grill.\nUsed for picnic, camping, outdoor cooking, turn your fire pit into a grill.\nHinged center to fold in half makes it easy to add Charcoals, logs and clean embers.\nDouble-check the dimensions of your grills or fire pit before ordering.!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.029830933, 0.011314392, -0.019012451, -0.03729248, 0.015060425, -0.023223877, 0.008277893, -0.0014209747, -0.016235352, 0.02178955, -0.0049743652, 0.02053833, -0.005645752, -0.02029419, 0.0023384094, -0.020217896, 0.0121536255, -0.0020885468, 0.0028743744, -0.031433105, 0.01234436, -0.016784668, -0.02079773, 0.061462402, 0.03765869, -0.044067383, -0.010154724, -0.0015573502, 0.03805542, 0.024749756, 0.022140503, -0.019897461, 0.0473938, -0.016647339, -0.021835327, -0.05065918, -0.018737793, -0.020233154, -0.051971436, 0.03491211, 0.029220581, -0.021347046, -0.02557373, 0.041870117, -0.045043945, -0.0362854, 0.011550903, -0.012054443, 0.015449524, 0.0068359375, 0.031829834, 0.020874023, 0.041290283, -0.009124756, -0.028137207, -0.008300781, 0.012504578, -0.019348145, 0.014007568, -0.040252686, -0.00705719, 0.01626587, 0.037231445, 0.04348755, -0.028961182, 0.006095886, 0.04937744, -0.015853882, -0.034118652, -0.057159424, 0.05596924, 0.004722595, 0.03982544, -0.00630188, -0.022445679, -0.030899048, 0.010345459, 0.0032463074, 0.030288696, -0.015670776, -0.013969421, -0.01876831, 0.01007843, -0.0385437, 0.0050201416, -0.040039062, -0.011604309, 0.00623703, -0.0014133453, -0.03451538, -0.00071430206, -0.003156662, -0.04724121, 0.031402588, -0.0022144318, -0.028945923, -0.04031372, -0.07745361, 0.05496216, 0.041778564, 0.040924072, -0.032196045, 0.043151855, -0.015640259, -0.01751709, 0.058685303, 0.0013227463, 0.059051514, -0.005962372, -0.0059318542, -0.0074920654, -0.06542969, 0.013412476, -0.017730713, -0.012886047, 0.042236328, 0.0033874512, 0.0234375, 0.0031757355, 0.04724121, -0.028808594, -0.017349243, -0.008552551, 0.042663574, 0.018981934, 0.022277832, -0.0020999908, 0.0029563904, -0.037017822, 0.01876831, -0.014289856, 0.02331543, 0.030380249, -0.0005674362, -0.03552246, -0.01146698, 0.013679504, 0.008918762, 0.028701782, 0.0067214966, -0.008758545, -0.0064086914, 0.027145386, 0.016159058, -0.03277588, 0.015045166, 0.040649414, 0.018829346, -0.031280518, -0.064453125, -0.013397217, 0.05441284, 0.05697632, 0.029388428, -0.076660156, 0.018539429, 0.016342163, -0.018035889, -0.058807373, -0.08099365, -0.0007686615, 0.009536743, -0.003419876, -0.022857666, -0.02998352, -0.026031494, -0.010070801, 0.0056419373, 0.011871338, 0.014099121, 0.007843018, 0.0054893494, -0.015304565, -0.00995636, 0.0029964447, -0.01991272, -0.003604889, 0.028152466, 0.062286377, -0.07965088, -0.076538086, -0.044708252, 0.11151123, -0.052764893, -0.016540527, -0.015197754, 0.011833191, 0.012123108, 0.024780273, 0.010848999, 0.016952515, -0.010177612, 0.0043144226, -0.049438477, -0.008224487, 0.03314209, -0.0048980713, 0.02192688, -0.005569458, 0.015991211, 0.0043258667, -0.034301758, 0.055511475, -0.0099487305, 0.014076233, 0.0071487427, -0.006839752, 0.021713257, 3.4987926e-05, 0.022537231, 0.026123047, 0.030380249, -0.028366089, -0.039367676, -0.039733887, -0.030853271, -0.024429321, 0.013748169, 0.008552551, -0.003578186, 0.034851074, -0.024978638, 0.019165039, 0.017303467, 0.039916992, -0.038513184, 0.0058670044, -0.033050537, 0.05065918, -0.0134887695, -0.021865845, 0.04031372, 0.08215332, 0.053985596, -0.03253174, 0.05126953, 0.04006958, 0.09588623, -0.054351807, -0.02331543, 0.0028705597, -0.002023697, -0.04852295, -0.002532959, 0.015220642, -0.019851685, -0.016204834, 0.0015220642, -0.018676758, 0.03213501, 0.005027771, 0.035369873, 0.023483276, 0.015449524, -0.014846802, 0.027770996, 0.0024032593, 0.026397705, -0.052520752, 0.023757935, -0.015510559, 0.019332886, 0.0057411194, 0.0028514862, -0.0067329407, -0.0013046265, 0.025650024, 0.019332886, -0.002035141, -0.015510559, 0.0021514893, 0.019317627, -0.014480591, -0.0044441223, 0.09576416, -0.022155762, -0.060791016, -0.001964569, 0.044677734, -0.014198303, -0.0034446716, 0.018554688, 0.037902832, -0.0069732666, 0.019973755, -0.007850647, 0.017288208, -0.02330017, -0.011665344, -0.027694702, 0.02218628, -0.00078582764, -0.027770996, -0.0006098747, -0.016403198, -0.02709961, 0.01171875, 0.06933594, -0.020492554, 0.014640808, -0.027297974, 0.02418518, 0.0018129349, -0.004676819, -0.036621094, 0.01360321, -0.036834717, -0.010513306, -0.033203125, -0.06359863, 0.01727295, 0.03527832, 0.0390625, -0.00680542, 0.05090332, 0.0132751465, 0.017959595, 0.054870605, 0.007320404, 0.0060768127, -0.026229858, -0.017852783, -0.026626587, 0.0049705505, -0.0073928833, 0.019821167, 0.007663727, -0.0027446747, 0.0026950836, 0.028625488, -0.03656006, 0.027770996, 0.0004351139, 0.06982422, -0.020141602, 0.008155823, -0.0039749146, 0.007671356, -0.006122589, -0.018981934, -0.00969696, 0.0021400452, 0.0003273487, -0.041107178, -0.034179688, -0.02130127, -0.00048422813, 0.014091492, -0.011222839, -0.0036239624, 0.013076782, -0.020462036, 0.01928711, -0.046203613, 0.016433716, -0.020263672, -0.04864502, -0.037841797, -0.009269714, -0.076660156, -0.026153564, 0.012817383, -0.05130005, 0.006427765, 0.034362793, -0.013847351, -0.0049819946, 0.008720398, 0.011459351, 0.04425049, 0.05496216, 0.035461426, -0.099853516, -0.040893555, -0.06585693, -0.03829956, 0.027679443, -0.039855957, -0.0037727356, 0.007030487, -0.01977539, 0.047332764, -0.029190063, 0.090270996, 0.029907227, -0.013542175, -0.004940033, 0.07727051, 0.004623413, -0.0023097992, -0.004085541, 0.04510498, -0.052520752, -0.02671814, -0.0020141602, 0.021362305, 0.021270752, -0.061553955, 0.011932373, -0.03753662, -0.07897949, -0.0124053955, -0.024414062, -0.025421143, 0.044921875, -0.105773926, 0.014945984, -0.06890869, 0.01020813, 0.005554199, -0.0008664131, 0.026931763, -0.02279663, 0.02798462, -0.007385254, -0.034851074, 0.018432617, 0.0073432922, 0.0062179565, -0.04156494, 0.014503479, -0.046447754, -0.017852783, -0.009254456, -0.038146973, -0.034606934, 0.009521484, 0.026031494, -0.04714966, 0.05923462, -0.0035190582, -0.008720398, -0.0390625, -0.022949219, 0.0017967224, 0.017562866, 0.011108398, -0.027938843, 0.02734375, -0.009567261, -0.032562256, -0.030807495, -0.06347656, 0.0017957687, -0.028335571, -0.021362305, -0.026947021, -0.051574707, -0.014945984, -0.007686615, -0.007461548, 0.021209717, 0.0385437, 0.02293396, -0.0052833557, 0.0076065063, 0.013748169, 0.04159546, 0.010726929, 0.004901886, -0.006855011, -0.030883789, 0.030548096, 0.0053520203, -0.013008118, 0.00044727325, 0.033233643, -0.010917664, -0.034362793, 0.03189087, -0.024627686, 0.011161804, 0.017349243, -0.00097465515, 0.03656006, 0.006034851, -0.041809082, 0.02708435, -0.049682617, 0.015914917, -0.018997192, -0.0184021, -0.08178711, 0.114990234, 0.080322266, -0.033813477, 0.080078125, 0.07659912, -0.00015282631, 0.040008545, 0.015487671, 0.012672424, 0.017700195, 0.051330566, -0.0065193176, 0.017944336, 0.027252197, -0.014663696, 0.0043678284, 0.0039482117, -0.101867676, 0.026977539, 0.001906395, -0.04144287, 0.023269653, 0.0061912537, -0.011001587, -0.007408142, -0.005432129, 0.01802063, -0.00793457, -0.016799927, 0.024612427, 0.044067383, -0.03164673, 0.0017490387, 0.031066895, 0.061950684, -0.024597168, -0.027359009, -0.01184845, 0.022369385, -0.009178162, 0.043640137, -0.007835388, -0.016036987, -0.017715454, 0.026809692, -0.015655518, 0.011169434, 0.059448242, -0.008361816, 0.054779053, 0.009407043, -0.020355225, 0.02998352, -0.033325195, 0.034973145, 0.040039062, -0.032806396, -0.00037646294, 0.042877197, 0.015510559, 0.006095886, 0.011505127, -0.05227661, -0.0038394928, -0.03579712, -0.002254486, -0.029022217, -0.021087646, -0.0071105957, -0.049804688, -0.019363403, 0.009681702, -0.009346008, -0.02104187, 0.0057144165, -0.028167725, -0.026153564, -0.007686615, 0.012954712, -0.017181396, -0.0048828125, 0.020233154, -0.009674072, 0.05239868, 0.014549255, 0.021270752, -0.028900146, -0.019851685, -0.012557983, 0.066467285, -0.02709961, 0.023712158, -0.049041748, -0.0132751465, -0.0063934326, 0.04284668, 0.020263672, -0.012046814, -0.015235901, -0.023223877, -0.05581665, -0.05532837, -0.007701874, 0.03616333, -0.030883789, -0.032226562, -0.019897461, 0.05255127, -0.005722046, -4.452467e-05, -0.014480591, 0.005683899, 0.0028476715, 0.011428833, -0.032562256, 0.000890255, 0.00687027, -0.012390137, 0.005180359, -0.003314972, -0.00566864, 0.018478394, 0.049713135, 0.014427185, -0.005355835, 0.005306244, -0.026153564, -0.010406494, 0.036102295, -0.029556274, 0.01309967, -0.030914307, -0.03427124, -0.07147217, 0.1217041, 0.07788086, -0.016174316, -0.0211792, 0.009017944, -0.049438477, -0.087768555, 0.019454956, -0.029251099, -0.0041923523, -0.017211914, -0.014427185, -0.00774765, -0.03656006, 0.0012397766, 0.029968262, 0.024368286, 0.034057617, -0.06097412, 0.03604126, 0.013900757, 0.03375244, 0.07336426, -0.00083351135, 0.008178711, 0.00063610077, 0.023345947, 0.0055236816, -0.021484375, -0.004184723, 0.0024738312, -0.012832642, -0.025848389, 0.012435913, 0.0077209473, -0.022155762, 0.037841797, 0.016052246, 0.00497818, -0.0052108765, 0.017120361, 0.047180176, -0.02407837, -0.026168823, 0.06335449, 0.012260437, -0.009880066, 0.010688782, -0.03793335, 0.02949524, 0.03744507, -0.03048706, 0.04309082, 0.012107849, -0.02482605, 0.022781372, -0.012481689, -0.0019664764, -0.0043678284, 0.019317627, 0.016830444, -0.009674072, -0.02897644, -0.016464233, -0.03604126, 0.044708252, -0.0025081635, -0.0044937134, 0.033966064, 0.008834839, -0.013130188, -0.0025558472, 0.022583008, -0.042755127, -0.0032253265, -0.010871887, -0.0155181885, -0.023406982, -0.024765015, -0.0140686035, -0.014328003, -0.011642456, -0.023208618, 0.0038967133, 0.0040779114, 0.00579834, -0.01600647, -0.011306763, -0.0060424805, -0.045074463, -0.0104522705, -0.0047302246, 0.014595032, -0.016616821, 0.006000519, -0.0062713623, 0.0020599365, -0.02545166, -0.023284912, -0.012794495, -0.0007958412, -0.018051147, 0.05230713, -0.013137817, -0.00076818466, 0.019989014, 0.0030345917, 0.0079956055, 0.045684814, -0.04232788, 0.030578613, 0.0034694672, 0.012435913, -0.011955261, -0.04989624, 0.06427002, -0.026992798, -0.04348755, -0.020874023, 0.057647705, 0.012367249, 0.005584717, 0.056488037, 0.036834717, 0.008224487, 0.049346924, -0.019073486, -0.05239868, -0.01889038, -0.012916565, -0.044158936, -0.0054092407, -0.035949707, 0.033935547, 0.018661499, 0.0059928894, -0.028579712, 0.0703125, -0.011688232, -0.06756592, -0.08087158, -0.016540527, 0.019515991, -0.035369873, 0.01864624, 0.00035500526, 0.001953125, 0.016082764, 0.027114868, -0.05996704, -0.0070381165, 0.028549194, 0.031829834, 0.031234741, -0.021026611, 0.027267456, 0.029876709, -0.042510986, 0.053863525, -0.027572632, 0.01436615, 0.0018730164, 0.048309326, 0.0143966675, 0.042144775, -0.014419556, -0.018981934, -0.026306152, 0.014579773, 0.042541504, 0.007911682, -0.013786316, 0.02229309, 0.059783936, 0.003534317, 0.03289795, 0.034240723, 0.038604736, -0.04788208, -0.05770874, 0.020141602, 0.018081665, -0.05078125, -0.008285522, -0.028945923, 0.005619049, 0.023086548, -0.0031013489, 0.014389038, 0.03540039, 0.02116394, -0.03857422, 0.043304443, -0.010536194, 0.009010315, 0.032226562, -0.010848999, 0.00013422966, -0.012138367, 0.0076065063, 0.02166748, -0.011367798, -0.028671265, -0.014602661, 0.02407837, -0.0037403107, 0.030685425, 0.023345947, 0.016464233, 0.01499939, -0.04837036, 0.026275635, -0.045806885, -0.01159668, -0.009933472, -0.049926758, -0.032806396, -0.0068855286, 0.047180176, -0.029937744, 0.046173096, -0.023040771, 0.016342163, 0.023849487, 0.04736328, -0.0552063, -0.0028629303, 0.014305115, -0.0054016113, 0.022644043, -0.0066566467, -0.057525635, -0.025802612, 0.037597656, -0.060058594, 0.003068924, 0.00015950203, 0.008857727, -0.055511475, -0.004306793, -0.041656494, -0.03552246, 0.005783081, 0.014556885, -0.016113281, -0.007663727, 0.010848999, 0.014266968, 0.00605011, -0.023483276, 0.0146484375, -0.021484375, 0.011566162, 0.020950317, 0.030685425, 0.02255249, -0.028396606, -0.022125244, 0.01751709, -0.007774353, -0.007217407, 0.010688782, 0.026168823, 0.037078857, 0.019805908, 0.058013916, -0.013595581, 0.0154418945, 0.004863739, 0.013343811, 0.014595032, 0.032043457, 0.031143188, 0.052856445, -0.057434082, -0.012008667, 0.014945984, -0.02911377, 0.012298584, 0.012924194, 6.657839e-05, 0.0027637482, 0.0044555664, 0.024932861, -0.008430481, -0.010681152, 0.0047302246, 0.017730713, -0.011520386, -0.002002716, -0.043151855, -0.007827759, -0.022277832, 0.02331543, -0.0007944107, -0.03817749, -0.042785645, 0.0063934326, 0.028427124, -0.037628174, -0.010643005, 0.0009860992, 0.048461914, 0.0060768127, 0.040374756, -0.021118164, -0.07519531, -0.0006661415, 0.06488037, -0.021957397, -0.05987549, -0.020248413, 0.010169983, 0.022460938, 0.0040397644, 0.011138916, 0.05114746, 0.012649536, -0.010643005, 0.0029850006, -0.035614014, -0.062164307, 0.09466553, 0.0069389343, -0.00333786, 0.040100098, 0.060638428, 0.024353027, 0.036071777, 0.027709961, 0.005218506, -0.07519531, -0.008964539, -0.031097412, 0.0395813, -0.0041046143, 0.016464233, -0.0006785393, -0.00037908554, -0.026855469, -0.0015888214, 0.008613586, -0.0054359436, 0.0491333, 0.054626465, -0.059448242, -0.042114258, -0.0051345825, 0.033050537, 0.022033691, 0.032073975, -0.020492554, -0.021316528, 0.018203735, -0.007911682, -0.030044556, 0.0015153885, 0.0075683594, -0.03414917, -0.0042152405, 0.018234253, -0.0184021, 0.0007519722, 0.00076293945, 0.010276794, -0.024871826, -0.0015640259, 0.04324341, 0.00026249886, -0.022949219, 0.005378723, -0.028930664, 1.9669533e-06, -0.0027580261, -0.037506104, 0.026733398, -0.038360596, -0.023712158, 0.02986145, 0.013092041, 0.002122879, -0.030059814, -0.06201172, -0.030685425, 0.032440186, -0.00762558, 0.013664246, 0.010673523, 0.08453369, 0.015007019, 0.059509277, -0.020980835, -0.06274414, -0.06427002, 0.02545166, -0.0047187805, 0.0020046234, 0.021133423, -0.015312195, 0.014678955, -0.0011062622, -0.00029063225, -0.05227661, 0.028076172, 0.072387695, 0.0039405823, 0.035369873]}, "B0787R3KFX": {"id": "B0787R3KFX", "original": "Brand: grilljoy\nName: grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men\nDescription:
      Upgrade your grilling today
      This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
      These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

      Handsome set makes a perfect gift.
      An inspired gift idea for your dad, groomsmen or anyone you like.It's an ideal gift for special occasions like gathering, Wedding, birthday, valentine's day, holiday, Christmas.
      Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

      Enjoy your amazing BBQ time
      Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

      All the features you need - None that you don't\u00a0
      1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
      2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
      3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
      4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
      5.Elongated handles keep your hands safe from the heat.
      6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
      7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
      8.dishwasher safe or cleaned quickly with warm water and soap.

      If you have interest,Just click \"add to cart\" to get this grill kit and enjoy your amazing BBQ time!\nFeatures: Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling.\nPremium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe.\nUser-friendly Design --- We design grilling tools from the user's perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns.\nConvenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\nSatisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.\n", "metadata": {"Name": "grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men", "Brand": "grilljoy", "Description": "
      Upgrade your grilling today
      This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
      These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

      Handsome set makes a perfect gift.
      An inspired gift idea for your dad, groomsmen or anyone you like.It's an ideal gift for special occasions like gathering, Wedding, birthday, valentine's day, holiday, Christmas.
      Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

      Enjoy your amazing BBQ time
      Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

      All the features you need - None that you don't\u00a0
      1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
      2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
      3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
      4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
      5.Elongated handles keep your hands safe from the heat.
      6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
      7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
      8.dishwasher safe or cleaned quickly with warm water and soap.

      If you have interest,Just click \"add to cart\" to get this grill kit and enjoy your amazing BBQ time!", "Features": "Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling.\nPremium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe.\nUser-friendly Design --- We design grilling tools from the user's perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns.\nConvenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\nSatisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.010498047, -0.009292603, -0.022888184, -0.05340576, -0.0071144104, -0.00018620491, -0.018157959, 0.023742676, -0.011459351, 0.020126343, 0.02053833, -0.005302429, -0.0073928833, -0.03579712, -0.0032920837, -0.022949219, 0.023635864, -0.027114868, -0.024551392, -0.04019165, -0.010253906, -0.033721924, 0.021575928, 0.081604004, 0.07946777, -0.0066604614, -0.03338623, 0.0049057007, 0.06085205, 0.027877808, 0.04953003, -0.056274414, 0.045562744, -0.0158844, -0.016418457, -0.0022201538, 0.0012788773, -0.018096924, -0.020217896, 0.029953003, 0.002653122, 0.009895325, -0.048675537, 0.030029297, -0.051727295, -0.04260254, 0.0026378632, -0.011062622, 0.03302002, 0.004562378, 0.015174866, 0.020324707, 0.012023926, 0.007457733, -0.027313232, 0.013160706, -0.010421753, -0.019317627, 0.026535034, 0.028808594, -0.011474609, -0.0345459, 0.017303467, -0.028182983, -0.017349243, -0.026641846, 0.05142212, -0.0143585205, -0.051605225, -0.04660034, 0.043792725, -0.01449585, 0.0018730164, -0.025466919, 0.0015087128, 0.008010864, -0.028656006, 0.0019874573, 0.0027751923, 0.018508911, -0.028167725, -0.023605347, 0.022277832, -0.053649902, 0.025314331, -0.013267517, -0.015686035, 0.007133484, -0.009353638, 0.009757996, -0.00047802925, -0.021224976, -0.033691406, 0.05911255, 0.017700195, -5.185604e-05, -0.04562378, -0.036621094, -0.009292603, 0.0095825195, 0.024932861, -0.026733398, 0.049468994, -0.008766174, -0.03817749, -0.0023021698, 0.007820129, 0.0181427, -0.0075149536, 0.04144287, -0.03262329, -0.018585205, 0.036132812, -0.014976501, -0.023544312, -0.004962921, 0.028305054, -0.014854431, 0.013839722, -0.036743164, -0.022018433, 0.003610611, -0.0096206665, 0.00071287155, 0.043548584, 0.05029297, 0.0038776398, -0.00061511993, -0.0077171326, -0.010246277, -0.032104492, -0.018432617, 0.0715332, 0.081970215, 0.03677368, -0.018218994, 0.0073547363, -0.00067710876, -0.03463745, 0.009498596, -0.010864258, -0.0078086853, 0.030563354, -0.025909424, 0.059417725, -0.01525116, 0.03540039, 0.052490234, 0.013214111, 0.022918701, 0.02748108, 0.050201416, 0.028060913, -0.0022277832, -0.0435791, 0.005809784, -0.009269714, 0.0039787292, -0.03289795, -0.013549805, -0.040985107, -0.022750854, 0.007659912, -0.06188965, -0.04888916, 0.031799316, -0.0072021484, -0.0067749023, 0.00844574, -0.0006890297, 0.0020370483, 0.016036987, 0.01701355, -0.021621704, -0.004878998, -0.0063819885, -0.016677856, 0.07116699, 0.043151855, -0.08129883, -0.0368042, -0.057159424, 0.0859375, -0.019210815, 0.004486084, -0.029891968, 0.026184082, -0.010414124, -0.0011062622, 0.011947632, 0.02670288, 0.013885498, -0.04159546, 0.013687134, 0.017303467, 0.024810791, -0.014266968, 0.029174805, 0.013587952, -0.05886841, 0.0014715195, 0.01234436, 0.0011148453, -0.012611389, -0.040039062, -0.01701355, -0.0058631897, 0.016586304, 0.009361267, 0.032043457, -0.005065918, -0.021987915, 0.01449585, -0.015113831, -0.010681152, 0.006954193, 0.008331299, 0.025787354, 0.007499695, 0.004962921, 0.040802002, -0.01423645, 0.028579712, 0.050964355, 0.03616333, 0.01751709, -0.025039673, -0.0049438477, -0.0035190582, 0.028198242, -0.046936035, 0.025939941, 0.11193848, 0.056030273, -0.0146102905, 0.046447754, 0.061035156, 0.006412506, -0.033081055, 0.0034885406, 0.009552002, -0.028961182, -0.021606445, 0.011772156, 0.027359009, 0.0082473755, 0.0026130676, -0.008270264, -0.014297485, 0.019180298, 0.0129470825, 0.028060913, 0.008720398, -0.009933472, -0.004425049, 0.032043457, -0.04360962, 0.024978638, -0.06628418, 0.022247314, -0.017852783, -0.0044670105, 0.049743652, -0.026168823, 0.06970215, -0.021347046, 0.045318604, 0.023956299, -0.019165039, 0.007358551, -0.0032691956, -0.02810669, -0.016174316, 0.018981934, 0.03451538, -0.07421875, -0.017669678, 0.015075684, -0.03253174, -0.012374878, 0.008338928, 0.00018894672, 0.07269287, -0.0028457642, 0.044891357, 0.017684937, 0.047943115, -0.014404297, -0.017318726, -0.027755737, 0.0041618347, 0.019805908, -0.010406494, -0.0018100739, 0.0231781, -0.024505615, 0.0060806274, 0.027389526, -0.008087158, 0.0057029724, 0.004512787, 0.033721924, -0.03793335, 0.017807007, -0.0022735596, 0.00034332275, 0.0030498505, -0.021820068, 0.002670288, -0.032196045, 0.044708252, 0.07067871, 0.031921387, 0.044799805, 0.040863037, 0.019943237, -0.001115799, 0.08117676, 0.047424316, 0.011161804, 0.008094788, -0.03741455, 0.0073051453, -0.01725769, -0.009590149, -0.006137848, -0.0121536255, 0.008766174, -0.022903442, 0.029922485, 0.049346924, 0.016098022, 0.0066719055, -0.008094788, -0.0039634705, -0.0016145706, -0.0078048706, -0.010559082, -0.030212402, -0.0115737915, -0.013366699, -0.0395813, 0.016555786, -0.017837524, -0.03643799, 0.015464783, 0.009613037, 0.008636475, -0.021759033, -0.012809753, 0.0121536255, -0.049560547, 0.014030457, -0.0021877289, 0.007785797, 0.002494812, -0.027282715, -0.0119018555, -0.020004272, -0.057556152, 0.01940918, -0.023834229, -0.014701843, 0.02670288, 0.010879517, -0.008636475, -0.011817932, 0.032318115, 0.03024292, 0.013114929, 0.0044517517, 0.018554688, -0.030975342, -0.020263672, 0.021133423, -0.030929565, 0.021591187, -0.03817749, 0.004257202, 0.00869751, -0.011253357, 0.032043457, 0.0060272217, 0.054748535, -0.023605347, 0.037719727, -0.013336182, 0.014823914, -0.020477295, -0.01725769, 0.0146865845, 0.060394287, -0.039245605, -0.0075149536, -0.0014925003, -0.0057296753, 0.06329346, -0.015640259, 0.010284424, -0.048614502, -0.061431885, -0.00258255, -0.026367188, -0.011962891, -0.025756836, -0.047180176, -0.039978027, -0.057891846, -0.013092041, 0.061706543, 0.015808105, 0.019012451, -0.0025596619, 0.04989624, 0.014274597, -0.03741455, 0.021530151, -0.0030403137, 0.0043945312, -0.048950195, -0.0036354065, 0.020965576, 0.021896362, 0.03277588, -0.053771973, -0.027404785, 0.0026016235, 0.032226562, -0.0034885406, 0.038330078, -0.022598267, -0.007701874, -0.00579834, 0.007205963, -0.05529785, -0.0009393692, 0.0078125, -0.03363037, 0.06573486, -0.047058105, -0.040527344, -0.03765869, -0.052001953, 0.02532959, -0.059814453, 0.025054932, -0.052246094, -0.025558472, -0.0046539307, -0.011413574, -0.023651123, 0.017364502, 0.037506104, 0.02760315, -0.009361267, 0.013679504, 0.006877899, 0.045196533, 0.02017212, -0.02947998, -0.029220581, -0.04849243, 0.0524292, 0.0029830933, 0.005004883, -0.05319214, 0.042144775, -0.00065374374, 0.025650024, -0.023895264, -0.014846802, 0.06561279, 0.056396484, 0.015914917, 0.0022335052, -0.0031642914, 0.00073194504, 0.03036499, -0.044647217, -0.019348145, -0.02998352, -0.011184692, -0.066833496, 0.066223145, 0.027297974, -0.005859375, 0.025558472, 0.0541687, -0.014198303, 0.01979065, 0.0007247925, 0.0013933182, -0.012588501, 0.05999756, -0.02835083, 0.0115737915, -0.0034694672, 0.0234375, 0.051635742, 0.026504517, -0.036224365, 0.008934021, 0.047088623, -0.07244873, -0.013641357, 0.06530762, 0.05126953, -0.007850647, -0.046325684, -0.040405273, 0.028259277, -0.08227539, 0.013679504, 0.018081665, -0.015113831, 0.0075302124, 0.01965332, 0.0047073364, -0.012062073, -0.003835678, 0.001830101, 0.031402588, -0.020584106, 0.04284668, 0.011108398, -0.014968872, -0.041931152, 0.0061950684, -0.013465881, 0.016143799, 0.031555176, -0.018859863, 0.03062439, -0.007835388, 0.016342163, 0.021362305, -0.033477783, -0.024810791, -0.03012085, -0.03250122, -0.005531311, -0.0024909973, -0.021728516, 0.02796936, -0.0047683716, -0.03881836, -0.025222778, 0.0008740425, -0.022720337, -0.03173828, 0.008850098, 0.02331543, -0.03729248, 0.011413574, -0.0079193115, -0.05444336, -0.093322754, 0.033294678, 0.014656067, -0.008651733, 0.02255249, 0.04888916, -0.039764404, -0.048187256, -0.04711914, -0.0042762756, 0.025009155, -0.009796143, -0.0022716522, -0.030975342, -0.021331787, -0.010925293, 0.050598145, -0.020965576, 0.009292603, -0.016708374, -0.025741577, -0.010467529, 0.01838684, 0.07757568, -0.010040283, 0.052520752, -0.017730713, -0.006877899, -0.04977417, 0.0034046173, 0.029388428, -0.032104492, -0.027236938, -0.030807495, 0.04006958, -0.008544922, 0.0028591156, -0.014579773, 0.014923096, 0.0032291412, -0.007801056, -0.04473877, 0.011016846, -0.00053834915, -0.062561035, 0.004348755, -0.015274048, -0.024414062, 0.07922363, 0.036132812, -0.011550903, -0.03062439, 0.00085926056, -0.016571045, -0.005302429, -0.021453857, -0.028396606, 0.04458618, -0.03692627, -0.0048980713, -0.06262207, 0.101135254, 0.08526611, -0.040100098, 0.012413025, -0.01739502, -0.03289795, 0.02192688, 0.00016009808, -0.009338379, 0.02784729, 0.007270813, -0.03466797, -0.00044965744, -0.045440674, -0.015670776, -0.02947998, -0.023254395, -0.014007568, 0.0029335022, 0.008178711, -0.032104492, -0.003004074, -0.0102005005, 0.029525757, 0.025039673, -0.020080566, -0.025650024, 0.008300781, -0.018478394, -0.017074585, -0.0103302, 0.0008945465, -0.054260254, 0.04348755, 0.013282776, -0.082336426, 0.039764404, 0.0670166, -0.00573349, -0.017486572, 0.012992859, -0.005672455, -0.023971558, -0.031219482, 0.00642395, 0.0079956055, -0.01499939, 0.003124237, -0.037902832, 0.019363403, 0.015594482, -0.033721924, 0.036895752, -0.004749298, -0.0074272156, 0.04748535, -0.014549255, 0.0052986145, -0.016815186, 0.021759033, 0.008102417, 0.01940918, -0.051452637, 0.00944519, 0.02609253, 0.035064697, 0.015586853, -0.03668213, 0.05819702, 0.01802063, -0.03225708, 0.024902344, 0.035614014, -0.032104492, -0.0135650635, 0.02178955, -0.013587952, -0.014457703, 0.024261475, 0.0012693405, -0.00869751, -0.022918701, -0.0496521, 0.023376465, 0.01612854, -0.024429321, -0.022323608, -0.0056648254, -0.024734497, -0.005012512, -0.040405273, -0.007106781, 0.0132751465, -0.034454346, 0.017822266, -0.019958496, 0.0027008057, -0.006313324, -0.023162842, -0.0011081696, -0.020645142, -0.025375366, 0.028411865, -0.024932861, 0.02267456, 0.006290436, -0.001291275, 0.037078857, 0.00016021729, -0.057556152, 0.0014038086, -0.006877899, 0.00042033195, -0.029525757, -0.0031909943, 0.080566406, -0.049560547, -0.051361084, -0.074035645, 0.038879395, -0.005203247, 0.0027866364, 0.04067993, -0.02835083, 0.018096924, 0.009544373, 0.0059814453, -0.05859375, 0.015289307, 0.011222839, -0.0395813, -0.021408081, -0.026290894, 0.0047950745, 0.012283325, -0.0076446533, -0.012039185, 0.03692627, -0.037628174, -0.045806885, -0.04525757, -0.0059661865, -0.0027618408, 0.012382507, 0.024993896, -0.016342163, -0.04437256, -0.02885437, -0.03378296, 0.0010843277, 0.011428833, 0.017944336, 0.04324341, 0.002571106, -0.042114258, 0.011940002, 0.03829956, -0.03213501, 0.087890625, -0.01789856, -0.0073547363, 0.018722534, 0.033294678, 0.010688782, 0.04345703, -0.036743164, -0.006839752, 0.0012655258, 0.0070762634, 0.04510498, -0.017700195, 0.014808655, 0.00030827522, 0.030532837, 0.016098022, 0.030670166, -0.056488037, -0.016311646, -0.010383606, -0.0059928894, -0.0026493073, -0.008735657, -0.0025539398, -0.0032348633, -0.014053345, 0.021560669, 0.046722412, -0.010284424, 0.028579712, -0.004890442, 0.08532715, -0.020477295, 0.014862061, 0.006641388, 0.0016212463, 0.014137268, -0.036712646, -0.042053223, -0.027557373, -0.0075416565, 0.017608643, -0.0137786865, -0.022491455, -0.0057640076, 0.016159058, -0.0063171387, 0.029281616, -0.013084412, -0.0025615692, 0.047180176, -0.020263672, -0.0038528442, -0.005256653, 0.0018091202, -0.03994751, -0.010276794, 0.0073242188, 6.556511e-05, 0.016281128, 0.01637268, 0.017227173, 0.0012788773, 0.034423828, 0.016784668, 0.025817871, -0.034576416, -0.0024700165, -0.043640137, -0.011360168, 0.038909912, 0.00674057, -0.033355713, 0.0033168793, 0.009124756, -0.033325195, -0.03302002, -0.002840042, 0.020431519, 0.020385742, 6.043911e-05, -0.036376953, -0.0019245148, 0.0055503845, -0.011581421, 0.029449463, 0.024612427, 0.027328491, -0.014877319, 0.014411926, -0.039123535, -0.0067863464, 0.011993408, -0.014953613, 0.027008057, 0.048339844, -0.02999878, -0.03149414, -0.0102005005, -0.023544312, 0.013175964, 0.019805908, -0.009277344, 0.06738281, -0.022460938, 0.044006348, 0.04852295, -0.017181396, 0.036621094, 0.0035076141, -0.02482605, 0.017532349, 0.0049438477, 0.016036987, -0.06365967, -0.023757935, 0.0069847107, -0.032958984, 0.02960205, 0.05819702, 0.012794495, -0.008415222, -0.026885986, -0.019256592, -0.011169434, -0.016616821, 0.051574707, -0.05041504, 0.011352539, -0.03817749, -0.04196167, -0.033477783, -0.03074646, -0.03945923, 0.06982422, 0.00573349, -0.012077332, -0.0209198, -0.025817871, 0.045288086, -0.057739258, 0.021011353, -0.008682251, 0.088134766, 0.0012588501, 0.057891846, -0.0423584, -0.043884277, -0.07409668, 0.011459351, -0.101867676, -0.031341553, -0.0022239685, 0.024658203, 0.026565552, -0.019226074, -0.043518066, 0.08673096, -0.01914978, -0.008506775, -0.061828613, -0.0385437, -0.037902832, 0.039276123, -0.01386261, 0.0017261505, -0.007549286, 0.08880615, -0.0061416626, 0.0053749084, 0.021881104, -0.045440674, -0.09295654, -0.03488159, -0.05178833, 0.005794525, 0.016021729, -0.0048599243, 0.012771606, -0.0074691772, -0.053649902, -0.065979004, -0.007926941, -0.0010919571, 0.02154541, 0.04360962, -0.0049438477, -0.029785156, -0.029205322, -0.018325806, -0.011100769, 0.034240723, 0.007858276, 0.015487671, 0.009735107, 0.019470215, -0.030227661, 0.04840088, 0.025650024, -0.07159424, -0.026657104, 0.009353638, 0.008674622, -0.04324341, 0.019180298, 0.000726223, -0.022018433, -0.03781128, 0.03768921, 0.05596924, -0.040924072, -0.028305054, -0.00687027, -0.008811951, 0.015113831, -0.038879395, 0.008659363, -0.056030273, 0.020874023, 0.05795288, 0.009391785, 0.01763916, -0.030029297, -0.037872314, -0.017333984, 0.04147339, 0.009094238, 0.031311035, -0.040374756, 0.056243896, 0.013549805, 0.095458984, -0.031234741, -0.06774902, -0.049835205, 0.038116455, 0.011306763, 0.0017318726, 0.047454834, -0.028427124, 0.00018930435, 0.037750244, -0.025131226, -0.040771484, 0.04067993, 0.08898926, 0.012268066, 0.025314331]}, "B082ZZDL3S": {"id": "B082ZZDL3S", "original": "Brand: HaSteeL\nName: HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women\nDescription: Professional Safety Quality for Years of Use!

      Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
      to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

      Complete 32PCS BBQ Grilling Tools Set:

      \ufe521 x Large 4-in-1 Spatula
      \ufe521 x Small Kitchen Tong
      \ufe521 x Large Power Tongs
      \ufe521 x Strong Grill Fork
      \ufe521 x Long Knife
      \ufe521 x Basting Brush
      \ufe521 x Digital Meat Thermometer
      \ufe521 x Meat Injector
      \ufe521 x Multi-purpose Scissor With Cover
      \ufe521 x Extra Cleaning Brush Head
      \ufe522 x Grill Cleaning Brushes
      \ufe522 x Grill Mats
      \ufe522 x Salt & Pepper Shakers
      \ufe526 x Kabob Skewers
      \ufe528 x Corn Holders
      \ufe521 x Cotton Case
      \ufe521 x Carrying Bag

      A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

      From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
      will be a sweet gift for men, women and any camping lovers no matter it's a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

      Using Tips:

      \u25cf Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
      \u25cf Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
      \u25cf The knife is extremely sharp so please keep it out of reach of children.
      \u25cf Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
      \u25cf Please store all grill accessories in cool & dry places.\nFeatures: COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools\nSUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break\nEASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly\nPORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean\nMAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women\n", "metadata": {"Name": "HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women", "Brand": "HaSteeL", "Description": "Professional Safety Quality for Years of Use!

      Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
      to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

      Complete 32PCS BBQ Grilling Tools Set:

      \ufe521 x Large 4-in-1 Spatula
      \ufe521 x Small Kitchen Tong
      \ufe521 x Large Power Tongs
      \ufe521 x Strong Grill Fork
      \ufe521 x Long Knife
      \ufe521 x Basting Brush
      \ufe521 x Digital Meat Thermometer
      \ufe521 x Meat Injector
      \ufe521 x Multi-purpose Scissor With Cover
      \ufe521 x Extra Cleaning Brush Head
      \ufe522 x Grill Cleaning Brushes
      \ufe522 x Grill Mats
      \ufe522 x Salt & Pepper Shakers
      \ufe526 x Kabob Skewers
      \ufe528 x Corn Holders
      \ufe521 x Cotton Case
      \ufe521 x Carrying Bag

      A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

      From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
      will be a sweet gift for men, women and any camping lovers no matter it's a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

      Using Tips:

      \u25cf Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
      \u25cf Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
      \u25cf The knife is extremely sharp so please keep it out of reach of children.
      \u25cf Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
      \u25cf Please store all grill accessories in cool & dry places.", "Features": "COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools\nSUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break\nEASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly\nPORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean\nMAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012886047, -0.0063705444, -0.05380249, -0.016067505, -0.01625061, 0.0011510849, -0.013298035, 0.00995636, -0.013198853, 0.017745972, 0.03878784, 0.010360718, 0.0067710876, -0.04425049, 0.010627747, -0.0068893433, 0.023620605, 0.035003662, 0.03387451, -0.016189575, -0.01499176, -0.003967285, 0.0063323975, 0.070617676, 0.067871094, -0.035369873, -0.017547607, 0.016082764, 0.04071045, 0.01763916, 0.036987305, -0.015350342, 0.047180176, -0.011634827, -0.034729004, -0.011306763, -0.047607422, 0.0017156601, -0.006000519, -0.007911682, 0.027328491, -0.017486572, -0.07659912, -0.0019397736, -0.062408447, -0.024276733, 0.003818512, 0.014175415, -0.00491333, 0.0016994476, 0.016311646, 0.05117798, 0.025131226, -0.022735596, -0.006046295, -0.0031719208, 0.0044136047, -0.009384155, 0.04006958, 0.015533447, -0.016555786, -0.006340027, 0.002149582, -0.03564453, -0.04736328, -0.009101868, 0.0440979, -0.0037784576, -0.07019043, -0.064819336, 0.05154419, 0.0024909973, 0.022521973, -0.002483368, 0.0413208, -0.04360962, -0.017242432, 0.00016081333, 0.030761719, 0.020523071, -0.045959473, -0.003227234, 0.01197052, -0.038146973, -0.0038719177, -0.01448822, -0.027053833, 0.008415222, 0.011940002, -0.024642944, 0.0026779175, -0.021347046, -0.049194336, 0.08691406, 0.017944336, -0.0059928894, -0.048950195, -0.050720215, 0.011680603, 0.0025959015, 0.0031661987, -0.005947113, -0.014091492, 0.0038700104, -0.045532227, 0.00869751, 0.016082764, -0.016296387, -0.03829956, 0.02079773, -0.054351807, -0.04196167, 0.014160156, 0.009140015, 0.007904053, 0.0073127747, -0.0234375, 0.029220581, -0.011581421, 0.0077667236, -0.032348633, 0.0063171387, 0.013900757, 0.0041007996, 0.019332886, 0.037719727, 0.0058517456, -0.030471802, -0.0040245056, 0.040130615, -0.0541687, -0.028778076, 0.037384033, 0.03475952, 0.028213501, -0.046783447, 0.02407837, -0.0018625259, -0.0035820007, 0.0079956055, -0.027191162, 0.005706787, 0.034088135, -0.030426025, 0.015014648, -0.017669678, 0.01637268, 0.057861328, 0.005657196, 0.019821167, 0.03152466, 0.020004272, 0.048919678, 0.0015001297, -0.05368042, -0.008583069, -0.0061683655, -0.012191772, -0.039764404, -0.039276123, -0.020828247, -0.016464233, 0.022216797, -0.008384705, -0.02760315, 0.031982422, -0.025314331, -0.0028762817, -0.0015659332, 0.006175995, -0.060333252, 0.010131836, -0.023208618, -0.02709961, -0.015975952, -0.0030784607, -0.013664246, 0.046966553, 0.06817627, -0.06591797, -0.0680542, -0.041870117, 0.117370605, -0.0390625, -0.012016296, -0.014221191, 0.002527237, -0.0064048767, 0.013549805, 0.0064735413, 0.019317627, 0.010597229, -0.07867432, -0.0071105957, -0.0026340485, 0.049865723, -0.032836914, 0.018859863, -0.0003077984, 0.004524231, 0.003440857, -0.025787354, 0.01184845, -0.021743774, -0.024810791, -0.022903442, -0.015411377, 0.011695862, 0.02935791, 0.009468079, 0.013824463, 0.008476257, -0.022506714, -0.020248413, -0.029556274, 0.014732361, -0.019607544, 0.02418518, 0.0063667297, 0.009384155, 0.034576416, -0.016433716, 0.022323608, 0.02671814, 0.009521484, 0.0019025803, -0.025558472, -0.0045318604, -0.0009455681, -0.00121212, -0.012077332, 0.012077332, 0.068481445, 0.047180176, -0.03857422, 0.04510498, 0.016723633, 0.03366089, -0.04699707, 0.010345459, 0.025894165, 0.013092041, -0.012687683, -0.010414124, 0.030517578, 0.023620605, 0.03857422, -0.041290283, -0.0032672882, 0.014892578, 0.036102295, 0.012069702, 0.027053833, 0.049468994, -0.0065727234, 0.026992798, -0.05206299, 0.022567749, -0.05331421, -0.00019168854, 0.0069351196, -0.001581192, 0.031234741, -0.02432251, 0.06750488, -0.017471313, 0.015029907, 0.004386902, -0.04144287, 0.028274536, 0.02166748, -0.0345459, -0.008506775, -0.04547119, 0.028045654, -0.036468506, -0.018997192, 0.013908386, -0.0023021698, -0.044281006, 0.0072631836, 0.045196533, 0.057037354, -0.0070648193, 0.0037250519, -0.028823853, 0.026016235, -0.004837036, -0.07098389, -0.06933594, 0.0030174255, -0.021072388, -0.045288086, -0.04095459, -0.0078125, -0.046295166, 0.015106201, 0.07727051, -0.03277588, 0.019897461, -0.022613525, 0.020996094, -0.02507019, 0.016403198, -0.016616821, 0.04260254, -0.010040283, -0.009597778, 0.0084991455, -0.051574707, 0.054138184, 0.04647827, 0.03930664, 0.031097412, 0.04559326, 0.02053833, 0.02154541, 0.0769043, 0.07305908, 0.03213501, -0.013473511, -0.039733887, 0.01260376, -0.017913818, -0.014945984, -0.00053977966, 0.0025424957, 0.011909485, -0.007030487, 0.013946533, 0.0234375, -0.0032310486, 0.018417358, -0.026412964, 0.0096206665, -0.022216797, -0.004497528, -0.056243896, -0.032470703, -0.016433716, -0.024047852, -0.027496338, 0.024230957, -0.032714844, -0.05239868, 0.022872925, 0.01083374, 0.013938904, 0.019042969, -0.010009766, 0.0012235641, -0.031982422, 0.04849243, -0.0012235641, 0.026000977, 0.0025787354, -0.05456543, -0.0038642883, -0.022613525, -0.072753906, -0.019821167, 0.01676941, -0.03213501, -0.0025196075, 0.01902771, -0.029876709, -0.008995056, 0.021118164, 0.034210205, 0.008407593, 0.011314392, 0.03378296, -0.023849487, -0.027389526, 0.0064086914, -0.025375366, -0.027862549, -0.056121826, 0.0016374588, -0.029144287, -0.015808105, 0.031280518, 0.0039901733, 0.06970215, 0.01928711, 0.013175964, 0.029159546, 0.07281494, 0.0040130615, -0.027755737, 0.018753052, 0.06347656, -0.09320068, -0.014953613, -0.033996582, 0.025939941, 0.02027893, -0.07067871, 0.014816284, -0.029418945, -0.059051514, -0.0045433044, 0.0099105835, -0.054504395, 0.02468872, -0.041412354, -0.013175964, -0.029510498, 0.0015287399, 0.05343628, -0.026245117, 0.011917114, -0.032165527, 0.034179688, -0.015327454, -0.014778137, 0.0050964355, -0.013954163, 0.04119873, -0.041503906, 0.006500244, -0.051818848, 0.013122559, 0.034301758, -0.026809692, 0.015312195, -0.009529114, -0.01374054, 0.023025513, 0.053894043, -0.01876831, 0.011482239, 0.00207901, 0.002538681, -0.044525146, -0.012001038, 0.0036754608, -0.019897461, 0.050811768, -0.037963867, -0.0053749084, 0.0020160675, -0.02861023, -0.0009212494, -0.027053833, -0.009666443, 0.0014343262, -0.015357971, -0.009460449, -0.01108551, -0.0129852295, 0.016998291, 0.03253174, 0.02166748, -0.0067367554, 0.008911133, 0.016647339, 0.04425049, 0.004585266, -0.020767212, -0.051086426, -0.056427002, 0.062927246, -0.012641907, 0.021316528, -0.059631348, 0.06958008, 0.008399963, 0.039215088, -0.016174316, 0.012779236, 0.023422241, 0.015327454, 0.01727295, -0.00074005127, 0.025970459, -0.018341064, 0.031311035, -0.060394287, 0.008010864, -0.06286621, -0.0046195984, -0.062347412, 0.06817627, 0.04196167, -0.028167725, 0.08215332, 0.06689453, -0.01966858, 0.02671814, 0.011123657, 0.027069092, 0.026443481, 0.013450623, -0.009803772, -0.0055351257, 0.0025348663, 0.007091522, 0.045715332, 0.0317688, -0.032958984, 0.015586853, 0.027526855, -0.045288086, -0.01424408, 0.04058838, 0.033050537, 0.0009880066, -0.010818481, -0.046722412, 0.044067383, -0.05911255, 0.0029754639, 0.003255844, -0.024047852, -0.006477356, 0.009994507, -0.0055389404, -0.028320312, -0.007926941, -0.00522995, 0.04949951, -0.020645142, 0.047546387, 0.025466919, -0.045654297, -0.01663208, 0.004306793, -0.04458618, 0.014839172, 0.034942627, 0.029968262, 0.048095703, -0.028808594, 0.017410278, -0.005203247, -0.01727295, 0.002368927, -0.028869629, -0.044891357, 0.0014896393, 0.017471313, -0.014839172, -0.01763916, 0.009681702, -0.037109375, -0.008049011, -0.008621216, 0.01687622, -0.018951416, -0.022064209, -0.020401001, -0.08270264, -0.021453857, 0.007698059, -0.083740234, -0.07519531, 0.029312134, -0.00945282, -0.051483154, -0.020629883, 0.029022217, -0.03390503, 0.015991211, -0.052886963, 0.004966736, 0.035949707, 0.01676941, -0.019683838, 0.021011353, -0.0357666, -0.008346558, 0.039489746, 0.0158844, -0.018920898, -0.05279541, 0.0015592575, 0.0099487305, 0.036010742, 0.06732178, 0.023925781, 0.06274414, -0.03314209, 0.055480957, -0.051849365, 0.01737976, 0.03479004, -0.034454346, -0.025863647, 0.0030555725, 0.03869629, -0.008636475, -0.0015039444, -0.04360962, 0.019714355, 0.010818481, 0.009719849, -0.008590698, -0.022567749, 0.01902771, -0.03186035, -0.0022029877, -0.016357422, -0.015792847, 0.09698486, 0.03475952, 0.027923584, -0.012237549, -0.024368286, -0.04336548, 0.029159546, -1.7225742e-05, -0.024841309, 0.022109985, -0.042755127, -0.0038013458, -0.050842285, 0.07165527, 0.075927734, -0.05883789, -0.024780273, -0.0026435852, -0.06530762, -0.019424438, -0.022735596, -0.057556152, 0.018249512, -0.013725281, -0.037750244, -0.025665283, -0.03729248, -0.018554688, -0.03363037, 0.008331299, -0.014572144, -0.011817932, -0.012413025, -0.043395996, 0.0073890686, 0.013557434, 0.02798462, 0.02571106, 0.0011043549, -0.007396698, 0.018371582, -0.0020179749, 0.011833191, -0.0018901825, 0.00056886673, -0.026748657, 0.006439209, -0.0058517456, -0.06939697, 0.01826477, 0.064208984, -0.012939453, -0.0206604, 0.037994385, -0.023208618, 0.02130127, -0.042053223, 0.013290405, -0.014419556, -0.010955811, -0.00217247, -0.05041504, -0.010307312, 0.010437012, -0.050811768, 0.054016113, -0.010543823, -0.025222778, 0.044952393, -0.008598328, -0.01374054, -0.010124207, 0.04763794, -0.012329102, -0.00012278557, -0.02949524, 0.0074310303, 0.017562866, 0.008102417, -0.00762558, -0.02607727, 0.05142212, 0.012672424, -0.0140686035, 0.03302002, 0.04360962, -0.022232056, -0.011169434, 0.042114258, -0.010444641, -0.03237915, 0.039764404, 0.011878967, -0.035064697, -0.032562256, -0.053985596, 0.030715942, 0.0032215118, -0.0209198, -0.016204834, -0.010498047, -0.025543213, 0.012962341, -0.01424408, -0.019363403, -0.015235901, -0.02217102, 0.04714966, 0.042114258, 0.0029888153, -0.011764526, -0.041168213, -0.0021038055, -0.0030536652, -0.03213501, 0.029678345, 0.0050468445, 0.0052261353, 0.025909424, 0.028625488, 0.04888916, -0.015090942, -0.04284668, 0.020599365, -0.00023055077, 0.005706787, -0.029556274, 0.040496826, 0.06097412, -0.04763794, -0.031707764, -0.012580872, 0.03540039, 0.00062561035, -0.0067977905, 0.057769775, -0.033355713, 0.034332275, 0.007865906, 0.014251709, -0.02885437, 0.022598267, 0.00674057, -0.018844604, 0.035369873, -0.0073051453, 0.03942871, 0.028015137, 0.016326904, -0.03048706, 0.041412354, -0.03479004, -0.009338379, 0.0002310276, 0.012168884, -0.011497498, -0.03540039, 0.01398468, -0.013031006, -0.0104904175, -0.0052261353, -0.006526947, -0.022079468, 0.018234253, 0.031433105, 0.04220581, -0.014022827, -0.037750244, 0.008522034, 0.05078125, -0.034210205, 0.08843994, 0.021636963, -0.02722168, -0.0072898865, 0.0011014938, 0.0014019012, 0.0054512024, -0.02508545, 0.023513794, -0.021026611, -0.0064048767, 0.056243896, -0.00907135, 0.008560181, 0.04586792, 0.042907715, 0.004055023, 0.004009247, -0.010139465, 0.015220642, -0.0012331009, -0.032684326, 0.002155304, 0.033477783, -0.03060913, -0.051208496, -0.028900146, -0.013656616, 0.052001953, -0.001786232, 0.05633545, -0.025985718, 0.066589355, -0.0039634705, 0.020050049, 0.009422302, 0.022979736, 0.03390503, -0.06439209, -0.0234375, -0.0289917, 0.029830933, 0.020355225, -0.017929077, -0.010055542, -0.015136719, 0.0075035095, 0.02243042, 0.0062789917, 0.040252686, -0.011688232, 0.01828003, 0.0031108856, -0.0013141632, -0.008659363, 0.01776123, -0.004611969, -0.017593384, -0.0033874512, 0.0073051453, 0.0340271, 0.016311646, 0.01826477, -0.015792847, 0.041290283, 0.027130127, 0.026123047, -0.014793396, 0.0069732666, -0.0063476562, 0.027954102, 0.026550293, -0.017333984, 0.016784668, 0.014801025, 0.0362854, -0.03881836, -0.020935059, 0.014053345, 0.008277893, -0.018859863, 0.015258789, -0.022460938, -0.012924194, 0.023071289, 0.0087509155, 0.009056091, 0.045532227, 0.019119263, 0.0178833, 0.035614014, -0.0063819885, 0.015731812, 0.008041382, 0.029449463, 0.03125, 0.010917664, -0.048736572, 0.0015964508, -0.0074310303, -0.030273438, 0.032043457, 0.015281677, 0.022247314, 0.041412354, -0.019683838, 0.040496826, 0.07116699, 0.023223877, 0.037872314, -0.008628845, -0.014633179, -0.036254883, -0.020095825, -0.009918213, -0.03152466, -0.0019407272, 0.007133484, 0.0070495605, -0.007358551, -0.004951477, 0.01473999, -0.029800415, -0.024963379, -0.00573349, 0.015075684, -0.023544312, -0.001707077, -0.058898926, 0.008728027, -0.019851685, 0.0019702911, 0.0030174255, 0.0041046143, -0.028121948, 0.03955078, 0.019638062, -0.019515991, 0.009529114, -0.008628845, 0.002216339, -0.08581543, -0.010879517, -0.035858154, 0.03186035, 0.0054893494, 0.058898926, -0.04248047, -0.041748047, -0.0435791, 0.0090408325, -0.070617676, 0.017562866, -0.024520874, 0.018875122, 0.031585693, -0.020767212, -0.043151855, 0.11920166, -0.020950317, 0.010047913, -0.058746338, -0.045776367, -0.029403687, 0.025268555, -0.017974854, -0.02722168, -0.021453857, 0.07446289, 0.027709961, 0.039245605, 0.034301758, -0.020507812, -0.057891846, -0.024276733, -0.044433594, 0.03930664, -0.00051546097, 0.009590149, 0.00069618225, 0.0026302338, -0.04864502, -0.028869629, -0.00095033646, 0.0069389343, 0.029632568, 0.04296875, -0.0087890625, -0.012298584, -0.009010315, -0.0067634583, -0.0018529892, 0.020263672, 0.050842285, -0.006702423, -0.0062446594, 0.013656616, -0.027435303, 0.045928955, 0.017745972, -0.022857666, -0.0052757263, 0.011703491, 0.006500244, -0.025344849, 0.00856781, -0.011268616, -0.028427124, -0.02810669, 0.03111267, 0.04638672, -0.039367676, -0.009490967, -0.0017929077, -0.0041618347, 0.024368286, -0.02407837, -0.008087158, -0.06329346, 0.014389038, 0.024612427, 0.015197754, 0.020965576, 0.017608643, -0.032196045, -0.030899048, -0.001750946, 0.0071372986, -0.029373169, -0.02104187, 0.027252197, 0.017456055, 0.08276367, -0.024520874, -0.089904785, -0.05557251, 0.027267456, -0.007045746, 0.0057411194, 0.03918457, -0.048980713, 0.0029563904, 0.0501709, -0.00818634, -0.06542969, 0.059387207, 0.088256836, 0.044921875, 0.034210205]}, "B07X2WCR21": {"id": "B07X2WCR21", "original": "Brand: i COVER\nName: iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo\nDescription: \nFeatures: \u3010Upgraded & Tear-Resistant Material\u3011iCOVER heavy duty waterproof grill cover measures: 60\"(width) x 22.5\"(depth) x 41\"(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill.\n\u3010UV Protective & Fade-Resistant\u3011The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability.\n\u3010Snug Fit & Stable\u3011These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season.\n\u3010Decent Protection\u3011The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off.\nAt Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.\n", "metadata": {"Name": "iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo", "Brand": "i COVER", "Description": "", "Features": "\u3010Upgraded & Tear-Resistant Material\u3011iCOVER heavy duty waterproof grill cover measures: 60\"(width) x 22.5\"(depth) x 41\"(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill.\n\u3010UV Protective & Fade-Resistant\u3011The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability.\n\u3010Snug Fit & Stable\u3011These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season.\n\u3010Decent Protection\u3011The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off.\nAt Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.006034851, -0.009231567, -0.060699463, -0.054779053, -0.010795593, -0.008125305, -0.037139893, 0.042297363, -0.060668945, -0.020004272, 0.007980347, 0.020111084, -0.03866577, -0.04824829, 0.059539795, -0.03967285, -0.011512756, 0.012573242, -0.004901886, -0.024139404, 0.0042495728, -0.029373169, -0.019805908, 0.015220642, 0.0035133362, 1.6629696e-05, 0.027297974, -0.001868248, 0.010154724, 0.0013551712, 0.016815186, -0.012382507, 0.029251099, 0.0068893433, -0.028015137, 0.009895325, -0.034057617, 0.020019531, -0.0013160706, -0.004497528, 0.016967773, -0.008964539, -7.158518e-05, 0.022399902, 0.018096924, -0.06530762, 0.04269409, -0.07550049, 0.02708435, -0.00015556812, 0.028289795, 0.021972656, 0.022994995, -0.0072402954, -0.0014257431, 0.032958984, -0.0022697449, 0.015640259, 0.037109375, 0.0063476562, -0.007881165, 0.00283432, 0.0044784546, -0.01763916, -0.021057129, 0.00774765, 0.10223389, -0.0035705566, -0.060028076, -0.056884766, 0.029571533, 0.01235199, 0.024169922, -0.034484863, -0.033843994, -0.0049552917, -0.0009813309, -0.02571106, 0.010894775, -0.014274597, -0.033325195, -0.056915283, 0.033599854, -0.008171082, -0.010429382, 0.015144348, -0.022094727, 0.0055007935, 0.031280518, -0.02381897, 0.015312195, 0.050567627, -0.0418396, 0.05279541, 0.0017204285, -0.026550293, -0.026351929, -0.0016002655, 0.0107803345, 0.029464722, 0.025146484, -0.046661377, 0.057556152, -0.03930664, -0.019943237, 0.07446289, 0.0042877197, 0.029220581, -0.002117157, -0.0061073303, 0.011245728, -0.060699463, -0.021209717, -0.035888672, -0.025390625, 0.043304443, 0.00283432, -0.02394104, 0.014030457, -0.0049552917, -0.03475952, 0.0009417534, -0.037506104, 0.05670166, 0.015403748, 0.01625061, 0.018417358, 0.031280518, -0.031341553, 0.004196167, -0.013793945, 0.008071899, 0.021865845, 0.06124878, 0.034088135, -0.007648468, 0.017837524, -0.045837402, -0.0036754608, 0.0020370483, -0.012687683, 0.03274536, 0.06726074, -0.030059814, -0.027282715, 0.025878906, 0.02029419, 0.014533997, -0.030776978, -0.047088623, 0.014442444, -0.027908325, 0.081848145, 0.005306244, -0.1104126, -0.028259277, 0.012962341, -0.032928467, -0.052520752, -0.1194458, -0.049468994, -0.018249512, 0.02696228, -0.028244019, -0.027191162, 0.042541504, 0.014213562, 0.012832642, 0.029342651, 0.01675415, 0.018234253, -0.037597656, -0.009613037, 0.021774292, -0.0056533813, 0.030471802, 0.017166138, 0.054260254, 0.066833496, -0.09814453, -0.07086182, -0.061584473, 0.15527344, -0.056762695, -0.0016622543, -0.0025901794, -0.021194458, -0.039978027, 0.052703857, -0.014007568, -0.024017334, -0.005897522, 0.005241394, 0.01398468, -0.022155762, -0.020767212, 0.020217896, 0.033843994, -0.010864258, -0.04260254, 0.010238647, 0.008110046, -0.010238647, 0.0039100647, 0.009757996, -0.013137817, 0.007904053, 0.008605957, 0.019699097, 0.041809082, -0.019180298, -0.019958496, 0.006072998, -0.042388916, -0.020431519, -0.029830933, -0.012176514, 0.032440186, 0.0029392242, -0.00034189224, 0.029449463, -0.004184723, 0.025787354, 0.026809692, 0.020202637, -0.036590576, 0.013374329, -0.01889038, 0.026306152, 0.011871338, -0.010429382, -0.0052375793, 0.047698975, 0.011329651, -0.020904541, 0.036376953, 0.04034424, -0.016723633, -0.038024902, 0.0151901245, 0.007106781, -0.0034160614, -0.026168823, 0.049041748, -0.02067566, -0.020507812, 0.00390625, 0.02128601, -0.019180298, -0.0025157928, 0.045562744, -0.0055656433, 0.0033035278, -0.035888672, -0.021011353, 0.040252686, -0.03378296, 0.025421143, -0.03994751, 0.023269653, -0.0071525574, 0.020828247, 0.053527832, -0.012702942, 0.017852783, -0.008743286, 0.033477783, 0.035949707, 0.009765625, -0.01826477, -0.013465881, 0.005241394, -0.010871887, 0.048034668, 0.021255493, -0.012969971, -0.039489746, 6.377697e-05, 0.026184082, 0.0069389343, 0.009307861, 0.02331543, 0.016967773, -0.0027599335, 0.004837036, -0.009483337, 0.022445679, 0.010047913, -0.017196655, -0.0037765503, 0.021972656, 0.011360168, -0.014274597, 0.0005187988, -0.0054969788, -0.0062332153, 0.002363205, 0.015960693, 0.007434845, -0.0056610107, -0.01171875, 0.03881836, 0.0026054382, -0.025299072, -0.013343811, 0.008239746, -0.02494812, 0.013771057, 0.0042152405, -0.05142212, 0.017944336, 0.050964355, 0.03765869, -0.02456665, 0.078430176, 0.027572632, 0.03277588, 0.07269287, 0.068115234, 0.059783936, -0.027709961, -0.010238647, -0.024871826, -0.021224976, -0.001452446, 0.01876831, -0.024856567, 0.010612488, -0.032043457, -0.019302368, -0.015777588, -0.07019043, -0.02809143, -0.019622803, -0.014656067, -0.01878357, 0.00039982796, 0.015525818, 0.015991211, 0.022857666, 0.03982544, -0.0037899017, -0.01499176, -0.0259552, -0.055908203, -0.010192871, 0.041625977, 0.00068473816, -0.052886963, -0.012542725, 0.041107178, -0.042785645, -0.029571533, -0.047302246, -0.039794922, 0.038146973, 0.028366089, -0.101745605, -0.023330688, -0.09777832, 0.010726929, 0.0032024384, -0.040618896, 0.005680084, 0.05239868, -0.055999756, -0.019897461, -0.01890564, 0.023651123, 0.021408081, 0.014633179, 0.010307312, -0.04827881, -0.017532349, -0.007633209, -0.014297485, -0.012420654, -0.048858643, 0.015823364, -0.0137786865, -0.033081055, -0.020401001, 0.0154953, 0.021942139, -0.0042381287, 0.02281189, 0.01486969, 0.042236328, -0.016952515, -0.02305603, -0.012954712, 0.05923462, 0.0066490173, -0.023010254, 0.019515991, 0.009048462, -0.004737854, 0.017486572, -0.018844604, -0.018234253, -0.08453369, 0.0056152344, -0.0020866394, -0.026733398, -0.01348114, -0.070373535, -0.031082153, -0.049957275, -0.00869751, 0.07623291, -0.04156494, 0.013679504, -0.04650879, 0.032562256, 0.014945984, -0.005077362, 0.0044517517, -0.005470276, -0.0084991455, -0.0023269653, 0.00856781, 0.0020198822, -0.020614624, 0.0074157715, 0.00066518784, 0.050323486, -0.0026493073, -0.0030670166, 0.006126404, -0.011749268, 0.011505127, -0.027938843, 0.011764526, 0.007633209, -0.06359863, -0.020553589, 0.00044870377, -0.0046691895, 0.042114258, -0.06451416, -0.0034332275, -0.015335083, -0.02078247, 0.011100769, 0.0036754608, -0.036468506, -0.003458023, -0.029830933, -0.039276123, -0.03161621, -0.015853882, 0.021133423, 0.010253906, 0.028305054, 0.0154800415, 0.080078125, -0.01158905, 0.029571533, -0.014007568, -0.0008172989, -0.030929565, -0.036071777, 0.08428955, -0.021896362, -0.044036865, 0.0055274963, 0.03564453, 0.0037784576, -0.01902771, -0.012260437, -0.031234741, 0.030838013, -0.013061523, -0.037872314, 0.030715942, -0.016601562, 0.005393982, -0.006061554, 0.02268982, -0.018218994, -0.031433105, -0.010101318, -0.07531738, 0.094177246, 0.03012085, 0.0040779114, 0.06573486, 0.06842041, -0.006275177, 0.04168701, 0.038085938, 0.008758545, 0.04559326, 0.028076172, 0.0034370422, -0.007217407, 0.0115737915, -0.021087646, -0.012123108, -0.013542175, -0.029052734, -0.026611328, -0.042816162, 0.0032405853, -0.033477783, 0.0021038055, 0.048583984, -0.009490967, -0.013008118, -0.016281128, 0.01537323, -0.039245605, 0.0357666, 0.005088806, -0.0146865845, -0.0076446533, 0.01134491, 0.030639648, -0.027359009, -0.019058228, -0.0022182465, 0.0017957687, 0.012634277, 0.019088745, 0.01499176, -0.011100769, -0.0009803772, 0.0036296844, -0.020629883, -0.04724121, 0.04397583, 0.021743774, -0.0030288696, 0.023345947, -0.017166138, 0.030227661, -0.006801605, 0.037506104, 0.02709961, -0.06896973, 0.037353516, 0.0491333, -0.035980225, -0.05166626, 0.009635925, -0.046875, -0.015357971, 0.00970459, -0.040527344, -0.0017337799, -0.016296387, -0.002462387, -0.0124053955, 0.021759033, 0.009437561, -0.03857422, -0.05392456, 0.0014896393, 8.863211e-05, 0.026046753, -0.03540039, 0.08251953, -0.056854248, -0.030441284, 0.0038928986, 0.023590088, 0.029190063, 0.030899048, 0.022491455, 0.0071907043, 0.0013570786, -0.013809204, 0.09259033, -0.008995056, -0.0055351257, -0.07501221, 0.020202637, 0.012374878, 0.02583313, 0.050750732, -0.01574707, 0.046691895, -0.0039405823, 0.06939697, -0.056488037, -0.04888916, 0.039520264, -0.046203613, -0.044891357, -0.056915283, 0.064331055, -0.016052246, -0.039978027, -0.027832031, 0.042266846, 0.021438599, 0.01399231, 0.023345947, 0.06713867, 0.029556274, -0.0044059753, -0.0034332275, -0.012504578, -0.013687134, 0.006504059, -0.009117126, -0.0019083023, -0.043884277, 0.0020694733, 0.0138549805, -7.56979e-06, 0.012336731, -0.03967285, 0.006664276, -0.0209198, -0.01576233, -0.053375244, 0.043029785, 0.028396606, 0.00844574, 0.0008940697, -0.016952515, 0.0073013306, -0.04815674, 0.023635864, -0.0736084, -0.023651123, -0.009315491, 0.0037460327, -0.012710571, -0.021347046, -0.008728027, 0.003545761, -0.015335083, -0.0012292862, 0.0031261444, 0.012626648, -0.033569336, -0.019302368, 0.0076408386, 0.035705566, 0.011314392, -0.00025057793, -0.055358887, -0.026519775, -0.033599854, -0.036132812, -0.007446289, -0.011779785, -0.044555664, 0.057250977, 0.023010254, -0.014503479, 0.026046753, 0.018157959, 0.013252258, -0.03378296, -0.0082473755, -0.0121536255, -0.020111084, -0.02859497, 0.008987427, -0.02810669, 0.0418396, 0.029220581, -0.02760315, -0.042938232, 0.024490356, -0.06878662, 0.08288574, -0.005241394, -0.0513916, 0.02684021, -0.013420105, 0.0030975342, -0.002626419, 0.020141602, 0.011009216, -0.0099105835, -0.04284668, 0.010948181, -0.018234253, 0.018157959, 0.0020771027, -0.029144287, 0.048736572, -0.035186768, -0.027130127, 0.004180908, 0.07470703, -0.04031372, 0.0017518997, 0.03527832, 0.026260376, -0.056884766, 0.016845703, -0.064331055, 0.0053100586, -0.015365601, 0.03540039, 0.012863159, 0.004875183, -0.025909424, -0.051513672, -0.022537231, -0.019958496, -0.010047913, -0.0024719238, 0.0057754517, 0.024047852, -0.023208618, -0.012031555, 0.008308411, 0.013969421, -0.009666443, -0.02859497, -0.034576416, 0.013267517, -0.018707275, 0.028320312, -0.0031852722, -0.011390686, 0.018554688, -0.017120361, 0.011238098, -0.008171082, -0.002380371, 0.014015198, -0.016693115, -0.0211792, -0.015777588, -0.0023937225, 0.020812988, -0.033691406, -0.0211792, -0.06390381, 0.011756897, -0.014846802, -0.03503418, 0.08557129, 0.053833008, -0.0016593933, 0.025726318, 0.0009651184, -0.045715332, 0.023086548, 0.02168274, -0.080322266, -0.0071907043, -0.016540527, 0.018203735, -0.0158844, -0.044555664, -0.0023918152, 0.0579834, 0.017440796, -0.021835327, -0.026901245, -0.043060303, 0.018966675, -0.036590576, 0.01777649, -0.03503418, -0.01965332, -0.023132324, -0.041503906, -0.06970215, -0.025054932, 0.017501831, 0.011978149, 0.020462036, -0.00027775764, 0.01751709, 0.04244995, -0.022003174, 0.024093628, -0.010375977, -0.021377563, 0.0027236938, 0.050872803, -0.0044288635, 0.052764893, -0.057495117, -0.022903442, -0.0005469322, 0.01210022, 0.029327393, -0.006717682, -0.028015137, -0.030273438, 0.064453125, 0.020980835, -0.025802612, 0.002916336, 0.012626648, 0.0206604, -0.027252197, -0.017669678, 0.020874023, -0.022277832, -0.0015773773, -0.023773193, 0.011604309, 0.020629883, 0.010307312, -0.0071487427, 0.01928711, 0.04220581, -0.017837524, 0.030883789, 0.009529114, 0.013328552, 0.03213501, -0.015281677, -0.01737976, 0.011039734, 0.016586304, -0.011207581, 0.009849548, -0.019500732, 0.0019931793, 0.03668213, 0.008338928, 0.012672424, 0.024627686, 0.015045166, -0.0071029663, -0.016159058, 0.023422241, -0.012870789, 0.0032844543, 0.005264282, -0.042297363, -0.0036239624, -0.010528564, 0.013870239, 0.0006914139, 0.0513916, -0.01890564, 0.014877319, 0.0020942688, -0.012268066, 0.03274536, -0.023834229, 0.040649414, 0.03475952, 0.011100769, -0.031280518, -0.039978027, -0.01222229, 0.04840088, -0.028884888, -0.0132369995, 0.010566711, 0.033081055, -0.007472992, -0.01361084, -0.02331543, -0.028457642, 0.018844604, -0.004135132, 0.0025119781, 0.028045654, 0.02859497, 0.024414062, 0.0055618286, -0.02168274, 0.03213501, -0.023223877, 0.059753418, 0.03857422, -0.009063721, -0.019256592, -0.014854431, -0.020996094, 0.007575989, 0.0027866364, 0.043670654, 1.2218952e-05, 0.028076172, 0.011817932, 0.023071289, 0.020050049, -0.030181885, 0.0034294128, 0.0064964294, -0.015602112, 0.011581421, -0.02748108, 0.006515503, -0.00409317, -0.0140686035, 0.012039185, 0.0010938644, -0.007888794, 0.012748718, 0.00178051, 0.026763916, -0.010597229, 0.0064697266, 0.015670776, -0.017807007, -0.016799927, 0.011878967, 0.025115967, -0.016113281, -0.0068092346, -0.06549072, -0.032165527, -0.05496216, 0.024963379, -0.060150146, -0.060577393, -0.03555298, 0.029571533, 0.0074043274, -0.07727051, -0.053497314, -0.016433716, 0.005001068, -0.0017318726, 0.09362793, -0.062164307, -0.044708252, -0.050994873, 0.01083374, -0.082092285, -0.022155762, 0.0010662079, 0.0039596558, 0.023925781, 0.014549255, 0.039611816, 0.074279785, 0.020996094, -0.0016145706, -0.0017843246, -0.0043907166, -0.04248047, 0.04925537, 0.005886078, -0.007549286, 0.025512695, 0.04559326, 0.005393982, 0.012580872, 0.0284729, -0.007083893, -0.066467285, -0.022583008, -0.033233643, 0.021636963, -0.007167816, -0.005130768, 0.014915466, 0.031280518, -0.013084412, -0.0057296753, 0.009170532, -0.026794434, 0.013160706, 0.027160645, 0.038909912, 0.02748108, -0.003156662, -0.020355225, -0.013038635, -0.025878906, 0.05706787, 0.03866577, -0.043701172, 0.01727295, 0.01436615, -0.016540527, -0.010643005, 0.011726379, 0.017089844, 0.019485474, -0.0357666, 0.0062179565, -0.021560669, -0.029800415, -0.013633728, 0.012207031, 0.054016113, 0.0625, -0.051971436, -0.026763916, 0.017349243, -0.030822754, 0.020004272, -0.030883789, -0.020462036, -0.055114746, 0.009651184, 0.049804688, -0.014335632, 0.041534424, -0.021865845, -0.005760193, -0.021072388, 0.009239197, 0.001584053, 0.01134491, 0.011367798, -0.01612854, 0.0015668869, 0.049560547, -0.008323669, -0.015991211, -0.032165527, 0.024978638, 0.042877197, -0.019454956, 0.072753906, -0.011550903, 0.016555786, 0.02494812, 0.002658844, -0.012893677, 0.004749298, 0.01625061, 0.0059432983, 0.012428284]}, "B07PZDVLW5": {"id": "B07PZDVLW5", "original": "Brand: Mr. Heater\nName: Mr. Heater MH18B Portable Propane Heater, Red\nDescription: \nFeatures: 4, 000, 9, 000, or 18, 000 BTU per hour\nHeats up to 450 sq. ft.\nHi-Med-Low heat settings\nAutomatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off\nTHE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .\n", "metadata": {"Name": "Mr. Heater MH18B Portable Propane Heater, Red", "Brand": "Mr. Heater", "Description": "", "Features": "4, 000, 9, 000, or 18, 000 BTU per hour\nHeats up to 450 sq. ft.\nHi-Med-Low heat settings\nAutomatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off\nTHE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.017623901, 0.008575439, -0.0129470825, -0.020767212, -0.0008006096, -0.02267456, -0.016174316, -0.02583313, -0.078552246, 0.012252808, 0.015396118, 0.030853271, 0.010902405, -0.059387207, 0.06628418, -0.033569336, 0.017364502, -0.016204834, -0.019454956, -0.026367188, 0.017486572, -0.014335632, -0.03060913, 0.09613037, 0.0046043396, -0.06384277, 0.024673462, 0.0037574768, 0.0012283325, -0.008224487, 0.025787354, 0.017929077, 0.028533936, 0.0077552795, -0.025238037, -0.017288208, -0.011528015, 0.0008120537, -0.021438599, 0.003162384, 0.020874023, -0.010643005, -0.018463135, -0.0015439987, -0.04147339, -0.027938843, 0.04144287, 0.02217102, 0.035095215, -0.04058838, -0.0028591156, -0.010421753, 0.026229858, -0.047668457, -0.041381836, -0.031143188, 0.052734375, -0.0013570786, 0.021759033, -0.07147217, -0.04248047, 0.023010254, 0.04876709, 0.01991272, -0.06640625, 0.0021133423, 0.03729248, -0.018081665, 0.028656006, -0.07611084, -0.018692017, 0.054504395, 0.019119263, 0.04849243, -0.07421875, -0.05633545, 0.055419922, -0.0069465637, 0.019165039, -0.0065193176, 0.029556274, 0.037841797, -0.011329651, 0.02178955, -0.010681152, 0.040008545, -0.017074585, -0.042114258, -0.019226074, -0.045043945, -0.024841309, -0.0037574768, -0.039031982, -0.0058898926, -0.031921387, -0.014251709, -0.059173584, -0.088134766, 0.051940918, 0.0052337646, -0.0023117065, -0.010154724, -0.03237915, 0.028518677, 0.00459671, 0.006965637, 0.0028324127, -0.020111084, 0.025238037, 0.008796692, -0.013343811, 0.04837036, 0.02458191, -0.014961243, -0.016342163, 0.004180908, 0.00031137466, 0.03982544, 0.0096206665, 0.03363037, -0.009986877, 0.005935669, 0.025161743, -0.032470703, 0.00011408329, -0.017471313, -0.017547607, -0.014862061, -0.035980225, 0.062683105, -0.030441284, -0.015853882, -0.011245728, 0.03543091, 0.0071258545, -0.027954102, 0.033355713, -0.02204895, 0.010620117, -0.012390137, -0.007888794, -0.027297974, -0.0236969, -0.00907135, -0.041229248, 0.0078125, 0.020004272, 0.027664185, -0.010292053, -0.058898926, 0.013519287, -0.004825592, 0.020309448, -0.00026011467, 0.007411957, -0.020126343, -0.00066947937, -0.027572632, 0.0013170242, -0.03366089, -0.0076179504, -0.020858765, -0.009727478, 0.016189575, -0.019622803, 0.027069092, 0.029510498, 0.005016327, 0.031280518, 0.06628418, 0.04736328, -0.02003479, 0.022567749, 0.04421997, 0.008651733, 0.0050964355, -0.00075626373, 0.07342529, 0.04611206, -0.087402344, -0.08416748, -0.072265625, 0.124816895, -0.06274414, -0.013519287, -0.055664062, 0.021972656, -0.01020813, 0.015449524, 0.01625061, 0.033355713, 0.017181396, 0.04812622, -0.056365967, 0.004676819, -0.016708374, -0.024337769, -0.005886078, -0.017196655, 0.017929077, 0.029922485, 0.0066223145, 0.014045715, -0.022201538, 0.033843994, -0.02078247, 0.023071289, -0.0019626617, 0.047332764, 0.015899658, -0.023712158, -0.029190063, 0.036621094, -0.081848145, -0.043548584, 0.012229919, -0.037353516, 0.034240723, 0.032592773, -0.021575928, 0.06317139, -0.013061523, 0.082458496, -0.0158844, 0.026382446, -0.008323669, -0.0033054352, -0.010559082, 0.033355713, 0.010566711, 0.008232117, 0.009605408, 0.08062744, 0.09991455, 0.028274536, 0.03024292, 0.08288574, 0.026626587, -0.014762878, -0.039520264, 0.0052337646, -0.03060913, 0.008506775, 0.07946777, -0.06262207, 0.014518738, 0.058624268, 0.009376526, -0.008628845, 0.023895264, 0.004951477, 0.00084495544, 0.028137207, 0.0043678284, -0.042907715, 0.03326416, -0.021957397, -0.024612427, -0.024368286, 0.03491211, 0.00724411, 0.033294678, -0.00013780594, 0.0104522705, 0.0064888, 0.054748535, 0.02229309, 0.031921387, -0.03250122, 0.032714844, 0.007873535, -0.005645752, 0.0019798279, -0.021118164, -0.004550934, -0.02130127, -0.014038086, 0.027450562, -0.00831604, -0.0357666, 0.019989014, -0.015602112, -0.02973938, -0.002275467, 0.059143066, 0.02835083, -0.019424438, 0.02798462, -0.016921997, 0.020080566, 0.033996582, -0.009490967, -0.03640747, 0.020324707, 0.0049934387, -0.028686523, 0.019058228, -0.026412964, 0.026031494, -0.040863037, 0.011390686, 0.0435791, -0.03616333, 0.02848816, -0.014839172, 0.019744873, -0.011878967, 0.015220642, 0.007881165, -0.030960083, -0.009536743, 0.007183075, 0.024597168, -0.026046753, 0.023544312, 0.019638062, -0.007247925, 0.02003479, 0.007675171, 0.02267456, -0.03918457, -0.016235352, -0.03918457, -0.0018930435, -0.0021076202, 0.018585205, -0.01890564, -0.0008354187, -0.02330017, -0.005378723, 0.025726318, -0.007068634, -0.009010315, 0.042907715, 0.019042969, 0.01776123, 0.004295349, 0.064331055, -0.010124207, -0.05102539, 0.00083065033, -0.005672455, 0.002357483, 0.037139893, -0.023483276, 0.013648987, 0.022399902, 0.02659607, -0.022033691, 0.0112838745, -0.003545761, -0.028778076, 0.0023403168, -0.017837524, 0.0013399124, 0.027404785, -0.0088272095, -0.047088623, 0.00655365, -0.06732178, -0.025009155, -0.00919342, -0.053588867, -0.039794922, 0.061309814, -0.012145996, -0.04824829, -0.040924072, -0.04953003, 0.011566162, 0.013641357, -0.01928711, -0.020706177, -0.0317688, -0.06274414, 0.007648468, 0.015136719, -0.037200928, 0.0368042, 0.00095129013, 0.021148682, 0.0017547607, 0.027297974, -0.0043258667, 0.018035889, 0.006164551, -0.0028514862, 0.032592773, -0.0010070801, 0.0087890625, -0.02407837, -0.010749817, 0.008529663, -0.0119018555, -0.0050811768, -0.009292603, -0.035949707, -0.007911682, -0.029266357, -0.008117676, -0.05493164, 0.029251099, 0.0048446655, -0.015914917, -0.015899658, -0.045928955, -0.04071045, -0.03857422, 0.016983032, 0.068847656, -0.029769897, -0.040771484, -0.028549194, -0.023468018, 0.0076942444, 0.02204895, -0.014984131, -0.016113281, -0.018356323, 0.022842407, 0.048217773, -0.05117798, 0.021575928, 0.0418396, -0.031921387, 0.049926758, -0.029037476, 0.023269653, 0.01600647, 0.012176514, -0.006198883, 0.0028572083, -0.022949219, -0.015571594, -0.013420105, 0.03265381, 0.008300781, 0.003501892, 0.025894165, -0.022079468, -0.0071105957, -0.012123108, 0.0021743774, 0.049102783, -0.027069092, 0.038238525, -0.033996582, -0.015357971, -0.00081157684, -0.051483154, -0.0015125275, 0.008270264, 0.036071777, 0.02848816, 0.0070648193, 0.06933594, 0.052734375, 0.014022827, 0.017196655, -0.03466797, -0.034088135, -0.0023231506, -0.032287598, -0.025344849, -0.012062073, -0.056030273, 0.043182373, -0.00030446053, -0.0009384155, 0.0007624626, -0.025680542, 0.046905518, 0.058380127, -0.020385742, 0.015640259, -0.034820557, 0.023101807, 0.0090789795, -0.027832031, -0.044433594, -0.049987793, 0.036468506, -0.090270996, 0.05203247, 0.011428833, -0.0027885437, 0.036254883, -0.017105103, -0.009407043, 0.007507324, 0.008712769, -0.003583908, 0.0072517395, 0.034362793, -0.00920105, -0.019546509, 0.02204895, -0.046722412, -0.030029297, -0.034820557, -0.07110596, 0.024002075, 0.0124435425, 0.021636963, -0.02998352, 0.0055503845, 0.049316406, 0.0046043396, 0.013191223, -0.02015686, 0.026992798, -0.030944824, 0.016525269, 0.025238037, -0.011009216, -0.032714844, 0.04360962, 0.0031089783, -0.013084412, 0.0011110306, 0.030944824, 0.031311035, -0.00014913082, 0.014076233, 0.0052871704, 0.024856567, -0.06567383, 0.007358551, -0.013160706, -0.026367188, 0.027404785, 0.016845703, -0.00065660477, 0.017349243, -0.015213013, 0.023513794, 0.00248909, 0.03768921, -0.031433105, -0.077941895, -0.0041542053, 0.04272461, 0.016281128, -0.05569458, -0.0003771782, -0.01247406, -0.009674072, -0.025970459, -0.012046814, -0.03817749, -0.006629944, 0.023117065, -0.09362793, -0.054534912, -0.048736572, 0.03149414, -0.04055786, 0.04043579, -0.010047913, -0.028442383, -0.008758545, 0.005542755, -0.020889282, 0.006137848, 0.013183594, 0.014846802, 0.01184082, -0.018844604, 0.03967285, -0.038330078, 0.015533447, -0.0010223389, 0.052581787, -0.02218628, 0.046875, -0.02268982, 0.000854969, -0.027801514, 0.0152282715, -0.021484375, -0.025894165, 0.027770996, 0.033416748, -0.033233643, -0.027038574, -0.036010742, 0.01386261, -0.04949951, -0.047698975, -0.031280518, 0.06933594, -0.010269165, 0.030670166, -0.018661499, -0.00957489, 0.015426636, -0.035949707, -0.113098145, -0.076660156, -0.019638062, -0.04611206, 0.022003174, 0.0058021545, -0.03729248, 0.008796692, 0.061279297, 0.049865723, -0.081848145, -0.01007843, -0.011306763, -0.00095272064, 0.0057868958, -0.029769897, 0.016220093, -0.022323608, -0.0074806213, -0.038909912, 0.020339966, 0.04208374, -0.032592773, 0.022003174, 0.017623901, 0.011276245, 0.030899048, 0.028366089, 0.012756348, -0.033813477, -0.01965332, -0.024291992, 0.010948181, -0.041870117, -0.009757996, -0.0034332275, -0.053863525, 0.02520752, 0.04510498, 0.006504059, -0.0031471252, -0.029586792, -0.023117065, 0.006576538, -0.0052719116, -0.043029785, -0.020370483, 0.016571045, -0.011024475, -0.022521973, -0.0041542053, 0.002872467, -0.005115509, 0.005832672, -0.012237549, -0.021224976, -0.024246216, 0.0025119781, -0.0075912476, -0.022018433, 0.0041542053, -0.0007266998, -0.011398315, -0.02229309, 0.025100708, -0.0014781952, 0.015113831, -0.015640259, 0.0008788109, 0.015686035, 0.018249512, -0.001964569, -0.018539429, -0.009597778, -0.015457153, 0.010261536, 0.023727417, -0.005367279, -0.036590576, 0.04055786, -0.018188477, -0.030426025, -0.024505615, 0.018127441, 0.0043296814, -0.072387695, 0.062561035, -0.040008545, 0.036376953, -0.043273926, -0.0021972656, 0.0041999817, 0.028076172, -0.023162842, 0.0026626587, 0.0022850037, -0.036956787, -0.037628174, -0.0012311935, -0.03277588, 0.0713501, 0.0028514862, -0.004749298, -0.015151978, 0.05545044, 0.015045166, 0.037322998, 0.0340271, -0.019882202, -0.04751587, -0.01977539, 0.037719727, 0.0014181137, 0.0006594658, 0.033569336, 0.02078247, 0.0070228577, -0.006248474, -0.036743164, -0.021957397, 0.018127441, -0.031341553, 0.024017334, -0.043395996, -0.048858643, 0.0031642914, -0.009750366, 0.0065612793, 0.006477356, -0.04977417, -0.041015625, 0.0016231537, 0.015167236, 0.022399902, 0.010871887, 0.043548584, -0.0107040405, -0.0127334595, -0.052642822, 0.044067383, 0.01789856, -0.0236969, 0.0715332, 0.07220459, -0.014350891, 0.04321289, -0.034606934, -0.026290894, -0.007408142, -0.0002593994, -0.015037537, -0.023773193, -0.032196045, 0.014915466, -0.011634827, -0.0030021667, -0.013473511, 0.023742676, -0.014389038, -0.0024642944, -0.008560181, -0.014175415, -0.011489868, -0.047790527, 0.010681152, -0.00843811, -0.023071289, -0.009460449, -0.04055786, -0.024612427, 0.025543213, -0.0099105835, 0.021148682, 0.034088135, 0.008491516, -0.0051460266, -0.0073242188, -0.0016365051, 0.022903442, 0.005054474, -0.018295288, 0.013381958, 0.019119263, 0.01020813, 0.0024223328, -0.008621216, -0.0018758774, -0.028137207, 0.031173706, 0.06060791, 0.02281189, -0.017852783, 0.009140015, 0.064453125, 0.010322571, -0.002960205, 0.01411438, 0.037872314, 0.00028848648, -0.062316895, -0.0129470825, -0.037963867, -0.05279541, 0.017440796, -0.031188965, -0.024169922, -0.023986816, -0.026947021, 0.030090332, -0.014678955, 0.028762817, -0.0052337646, 0.017593384, 0.007926941, 0.004840851, -0.008605957, -0.03543091, -0.041046143, -0.0027008057, 0.06762695, 0.01550293, 0.014854431, -0.019851685, -0.0390625, 0.014778137, 0.021209717, 0.012580872, -0.052490234, 0.011238098, 0.032562256, -0.06451416, 0.0014390945, -0.016235352, -0.009864807, -0.027420044, -0.010932922, 0.0015792847, 0.005317688, 0.025115967, -0.011184692, 0.04107666, -0.014259338, 0.012123108, -0.011886597, -0.020523071, -0.00081157684, -0.032989502, 0.020233154, -0.0006661415, 0.0011453629, -0.005264282, -0.09979248, 0.011985779, 0.016616821, 0.020614624, 0.040008545, -0.035888672, 0.029632568, 0.00051116943, 0.002916336, -0.024459839, -0.048309326, 0.010246277, -0.004245758, -0.007484436, 0.04296875, 0.043914795, -0.012016296, 0.01940918, -0.05380249, 0.011642456, -0.031051636, 0.02583313, 0.025314331, 0.019714355, -0.06921387, -0.045898438, -0.009971619, -0.020370483, -0.001950264, 0.02935791, 0.010948181, -0.02168274, 0.035827637, 0.010185242, 0.055236816, -0.0061302185, -0.0011672974, 0.0073776245, 0.022872925, 0.000192523, 0.043884277, -0.019485474, 0.026168823, -0.008934021, 0.008811951, 0.03942871, -0.0053253174, -0.028381348, -0.017333984, -0.0064735413, -0.046325684, 0.041046143, -0.051879883, -0.018508911, 0.041137695, -0.051971436, -0.038208008, -0.0023269653, -0.0055274963, -0.021087646, -0.026000977, -0.043701172, 0.022003174, -0.007041931, -0.035827637, -0.0016613007, 0.01977539, 0.025436401, -0.050964355, -0.017944336, -0.010498047, -0.038085938, 0.008323669, 0.008140564, 0.0010309219, -0.06384277, -0.033569336, 0.043548584, -0.068725586, -0.053863525, 0.036468506, -0.039489746, -0.022735596, -0.01234436, 0.053771973, 0.021621704, 0.068481445, -0.001414299, 0.02470398, -0.02798462, 0.0070610046, -0.009231567, 0.015007019, -0.05606079, -0.05050659, -0.012779236, 0.0003142357, 0.007381439, 0.031585693, 0.016357422, -0.052978516, -0.020126343, -0.031143188, -0.02142334, -0.013374329, -0.00844574, 0.04840088, 0.027069092, -0.014160156, 0.04055786, 0.04156494, -0.004737854, 0.010025024, 0.01828003, 0.03665161, 0.012428284, -0.05166626, -0.005493164, -0.011398315, -0.002954483, 0.0637207, -0.014373779, -0.011360168, 0.047027588, -0.03704834, 0.07885742, 0.057037354, -0.042114258, 0.032318115, 0.008522034, -0.025543213, 0.027114868, -0.023925781, 0.012535095, -0.034179688, 0.05871582, -0.004386902, 0.030166626, -0.035614014, -0.05114746, -0.01625061, 0.017150879, -0.03765869, -0.028015137, -0.031433105, -0.010101318, 0.024368286, 0.043914795, 0.0011386871, -0.023834229, -0.010803223, 0.035308838, -0.047088623, -0.012619019, 0.03353882, -0.023788452, -0.01802063, -0.01234436, 0.031051636, -0.0049476624, -0.018829346, -0.074523926, -0.041412354, 0.041259766, 0.013336182, -0.0118255615, 0.059051514, -0.028442383, 0.03552246, 0.024475098, 0.038909912, 0.031097412, -0.026367188, 0.045898438, -0.00077676773, -0.012481689]}, "B07BFBDP5B": {"id": "B07BFBDP5B", "original": "Brand: Outspark\nName: Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel\nDescription: Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.\nFeatures: BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal\nFit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles\nSize: 12\" diameter at the base, 8\" diameter at the top, 5\" tall\nPlease check size requirements before ordering\n", "metadata": {"Name": "Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel", "Brand": "Outspark", "Description": "Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.", "Features": "BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal\nFit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles\nSize: 12\" diameter at the base, 8\" diameter at the top, 5\" tall\nPlease check size requirements before ordering", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.002275467, 0.00040459633, -0.038757324, -0.011444092, -0.008979797, -0.020095825, 0.0035552979, 0.0032234192, -0.022628784, 0.03326416, 0.0013656616, -0.0149002075, 0.015167236, -0.036376953, -0.030792236, -0.041870117, 0.00033307076, 0.002319336, 0.025421143, -0.030776978, 0.03656006, -0.023071289, 0.011100769, 0.00024533272, 0.044830322, 0.00274086, 0.011779785, -0.005470276, 0.022369385, -0.0029010773, 0.028533936, 0.011833191, 0.05795288, -0.053527832, -0.0011110306, -0.04736328, -0.03149414, -0.026031494, -0.05303955, 0.004055023, 0.019058228, -0.0030212402, 0.009757996, 0.003622055, -0.00806427, -0.039367676, 0.014091492, -0.0362854, 0.021972656, -0.008865356, -0.016525269, 0.0552063, 0.005958557, -0.006214142, -0.00045132637, 0.03036499, 0.012145996, 0.021469116, 0.025283813, 0.005455017, -0.0046958923, 0.014770508, 0.011810303, -0.013504028, -0.048614502, 0.013786316, 0.0848999, -0.009101868, -0.045684814, -0.113464355, -0.0053863525, 0.03527832, -0.0022335052, -0.006134033, -0.030776978, -0.03994751, 0.0703125, -0.034942627, -0.040100098, 0.03640747, -0.00844574, -0.012779236, 0.038116455, -0.07330322, 0.04837036, -0.0079422, -0.02809143, -0.012420654, -0.022216797, 0.049316406, -0.0067596436, 0.025939941, -0.053985596, 0.07495117, 0.033599854, 0.009292603, -0.05529785, -0.04248047, 0.030578613, 0.048736572, 0.021759033, -0.033477783, 0.06652832, -0.034606934, -0.0037002563, 0.058746338, 0.0050201416, -0.0087509155, -0.021026611, 0.00044465065, -0.001865387, -0.045684814, 0.016967773, -0.032714844, -0.020309448, -0.006980896, -0.01360321, 0.015380859, 0.030883789, -0.029663086, 0.012557983, 0.022644043, 0.0018758774, 0.010116577, 0.038085938, 0.05331421, -0.005268097, -0.006931305, -0.11077881, 0.029769897, -0.025360107, 0.03024292, 0.072021484, 0.040740967, -0.004764557, -0.032440186, 0.010032654, -0.05001831, -0.0143966675, 0.03186035, -0.0061035156, -0.022750854, 0.064208984, 0.004989624, -0.0014181137, 0.03137207, 0.018066406, 0.009765625, 0.0047912598, -0.047180176, 0.018554688, -0.034484863, 0.03463745, 0.023330688, -0.031311035, -0.014083862, 0.007621765, -0.031158447, -0.00258255, -0.06591797, -0.05291748, -0.025756836, 0.013977051, -0.03451538, -0.05593872, 0.029449463, 0.040802002, -0.016601562, 0.026016235, 0.03173828, 0.033996582, -0.022628784, 0.040252686, -0.015899658, -0.019363403, 0.013839722, -0.0025539398, 0.028167725, 0.046173096, -0.05029297, -0.04547119, -0.038208008, 0.07574463, -0.004016876, 0.0043945312, -0.007633209, 0.025619507, 0.024795532, -0.0031719208, 0.022827148, 0.008544922, 0.016403198, -0.013084412, 0.006542206, 0.0072784424, 0.024734497, -0.026229858, 0.043029785, 0.003276825, -0.0647583, 0.020950317, 0.027664185, -0.006591797, -0.02746582, -0.022277832, 0.011444092, -0.0036888123, 0.037017822, 0.014701843, 0.03793335, -0.008552551, -0.012702942, -0.008644104, -0.026794434, -0.015701294, 0.0021896362, -0.015037537, -0.01411438, 0.00289917, -0.017456055, 0.016662598, 0.011169434, 0.010894775, 0.015457153, 0.049682617, -0.017944336, -0.0099487305, -0.0151901245, 0.04598999, 0.02319336, -0.026321411, -0.009590149, 0.022537231, 0.041107178, -0.016052246, 0.05947876, 0.06124878, 0.08392334, -0.029830933, -0.026947021, 0.013046265, -0.0018539429, -0.021972656, 0.018539429, 0.027908325, 0.020050049, 0.018600464, -0.020065308, -0.035369873, -0.060791016, 0.04446411, -0.012390137, 0.03881836, -0.0035591125, -0.0054359436, 0.018829346, 0.016708374, 0.009971619, -0.0070648193, 0.008636475, 0.005004883, -0.001086235, -0.027069092, 0.008659363, 0.02519226, -0.045562744, 0.01348114, -0.0060806274, -0.023147583, -0.023010254, 0.026916504, 0.005809784, -0.0056648254, 0.006412506, 0.0030288696, -0.059265137, -0.010696411, 0.006298065, -0.010894775, -0.027832031, 0.019241333, 0.017929077, 0.030899048, -0.008178711, 0.036987305, 0.020431519, 0.0069084167, 0.0063667297, -0.031051636, -0.044128418, -0.03564453, 0.027160645, -0.03778076, 0.045959473, -0.0005555153, -0.018478394, 0.033569336, 0.079711914, -0.009407043, 0.009674072, -0.02357483, 0.01235199, -0.042053223, 0.026779175, 0.01084137, -0.0060157776, 0.017211914, 0.01424408, -9.2446804e-05, 0.0020618439, -0.041381836, 0.010498047, 0.04751587, -0.011154175, 0.10070801, 0.05596924, 0.038909912, 0.07171631, 0.062408447, 0.0043563843, -0.046081543, 0.013839722, -0.022369385, -0.024963379, 0.008666992, 0.03817749, -0.056121826, 0.004173279, 0.08728027, -0.017501831, -0.057373047, -0.02798462, -0.07409668, -0.03982544, 0.0017662048, -0.004825592, 0.009773254, -0.019927979, 0.00094890594, 0.008903503, 0.026794434, 0.039916992, 0.011856079, -0.02861023, 0.00248909, -0.055999756, 0.017822266, -0.0076522827, 0.043304443, 0.031341553, -0.02027893, 0.0020866394, -0.0024757385, -0.02909851, 0.008003235, -0.012062073, -0.0039482117, 0.018600464, -0.0041503906, -0.037506104, 0.010169983, -0.028335571, -0.029891968, 0.050689697, 0.017593384, -0.013328552, -0.023239136, 0.03918457, -0.009750366, -0.0287323, 0.01725769, -0.012321472, -0.028823853, -0.022949219, -0.02760315, -0.015991211, 0.0013513565, -0.042907715, -0.024856567, -0.018554688, -0.015205383, 0.030685425, 0.002822876, 0.05810547, 0.031982422, 0.0031661987, 0.016189575, 0.06048584, 0.0107040405, -0.011764526, -0.015960693, 0.026947021, -0.0435791, -0.004966736, 0.020492554, 0.0060768127, 0.008842468, -0.02508545, -0.048034668, -0.028823853, -0.090270996, 0.025177002, -0.0063934326, -0.008575439, -0.011444092, -0.03390503, -0.034942627, -0.06536865, 0.022491455, 0.04928589, 0.012863159, -0.008361816, 0.034362793, -0.024017334, 0.0034503937, 0.004535675, -0.0029258728, -0.004447937, -0.015625, 0.0010948181, 0.04586792, -0.05203247, 0.02619934, 0.0440979, -0.097839355, -0.020355225, 0.0006070137, 0.079589844, 0.01071167, 0.031204224, -0.023147583, -0.005695343, 0.0002361536, -0.0135650635, -0.042114258, 0.0032234192, -0.001821518, 0.010887146, 0.020629883, -0.024398804, -0.017532349, 8.821487e-06, -0.08178711, 0.039154053, -0.060028076, -0.013534546, -0.013114929, -0.04360962, 0.03564453, 0.022949219, -0.00070381165, -0.016204834, 0.025344849, 0.009666443, -0.04168701, 0.073913574, -0.006538391, 0.034729004, 0.046417236, -0.007575989, -0.011871338, -0.030456543, 0.043426514, 0.026870728, -0.009483337, -0.0011196136, 0.026168823, 0.030319214, 0.013504028, -0.020233154, -0.012428284, 0.02268982, 0.004085541, -0.016799927, 0.017242432, -0.019897461, 0.030334473, 0.023834229, -0.018661499, -0.05709839, -0.026367188, 0.0009822845, -0.108947754, 0.08190918, 0.016860962, -0.017150879, 0.03604126, 0.049804688, -0.0107803345, 0.037200928, -0.006416321, -0.008033752, 0.039245605, -0.010749817, -0.029037476, 0.035003662, 0.017684937, -0.054138184, 0.00920105, -0.013694763, -0.05581665, 0.011703491, -0.034088135, -0.0289917, -0.0115356445, 0.03152466, 0.026245117, -0.009681702, -0.006538391, -0.026062012, 0.0019340515, -0.031280518, -0.013595581, -0.004787445, -0.040924072, -0.024902344, -0.027359009, -0.045135498, -0.045684814, 0.023895264, -0.0017051697, -0.012390137, -0.0036945343, 0.046295166, -0.020462036, 0.035827637, -0.06951904, 0.005428314, -0.022079468, 0.021347046, 0.009300232, -0.016464233, 0.030685425, 0.0041770935, 0.01751709, 0.008888245, -0.0036849976, 0.034973145, 0.0022068024, -0.05215454, -0.030197144, 0.009162903, 0.036254883, -0.026504517, -0.0074386597, -0.055419922, -0.013198853, -0.011650085, -0.04345703, -0.047058105, 0.020263672, 0.034118652, -0.05038452, -0.006214142, -0.005970001, -0.033569336, -0.05783081, 0.008514404, -0.017959595, 0.0050697327, -0.017303467, -0.006011963, -0.06524658, 0.03741455, -0.056396484, -0.0079422, 0.045837402, 0.02104187, 0.04623413, -0.020767212, -0.03878784, -0.023864746, 0.101257324, 0.04586792, 0.028411865, -0.03717041, -0.005142212, -0.005519867, 0.02128601, 0.02468872, -0.031982422, 0.041900635, 0.021820068, -0.028152466, -0.051483154, 0.016616821, 0.009307861, -0.032714844, -0.035247803, -0.004928589, 0.041870117, -0.0035533905, 0.0043029785, -0.003458023, -0.008705139, 0.00381279, 0.02482605, -0.03375244, -0.03515625, -0.0118255615, -0.007843018, 0.01626587, 0.012161255, -0.022033691, 0.012039185, 0.018539429, 0.020019531, 0.011398315, -0.04638672, 0.0032901764, 0.014274597, 0.04284668, -0.0231781, -0.044067383, -0.031433105, 0.05783081, -0.08782959, 0.11608887, 0.04168701, -0.020233154, -0.0057868958, -0.0018196106, -0.035186768, -0.070617676, 0.045440674, -0.026184082, 0.012542725, 0.0069236755, -0.019454956, -0.016784668, -0.030166626, -0.015563965, 0.0077285767, 0.0010871887, 0.01979065, -0.030548096, 0.008079529, -0.0002872944, -0.005203247, 0.0107803345, 0.045440674, -0.01737976, -0.011009216, -0.015144348, -0.053619385, -0.014266968, -0.0022735596, -0.017181396, -0.0021896362, -0.0040779114, 0.0385437, 0.023605347, -0.02520752, 0.0046539307, 0.029190063, 0.02444458, -0.015602112, -0.0033817291, 0.008613586, 0.0134887695, -0.010353088, 0.048034668, -0.05050659, 0.014564514, 0.052856445, -0.04437256, -0.00011020899, 0.0061798096, -0.017150879, 0.019592285, -0.0446167, -0.03567505, 0.039031982, -0.018096924, 0.0012435913, -0.0069503784, 0.008522034, -0.0069465637, 0.010803223, -0.030670166, 0.018188477, 0.06738281, 0.019973755, -0.01424408, -0.01361084, 0.050567627, 0.00793457, 0.0032539368, 0.024230957, 0.07702637, -0.031402588, 0.0049934387, 0.06518555, 0.027282715, -0.059509277, 0.050231934, 0.005908966, 0.021011353, -0.008003235, 0.00070762634, 0.05340576, 0.010276794, -0.037139893, -0.019760132, -0.01701355, -0.0005393028, -0.038269043, -0.0018854141, 0.0053596497, 0.02444458, -0.011772156, -0.0072517395, 0.011260986, -0.0005130768, -0.011581421, -0.045837402, -0.036468506, -0.0041885376, -0.026031494, 0.027130127, -0.021759033, -0.0033512115, 0.028320312, -0.035583496, 0.015823364, -0.008117676, -0.013328552, -0.018249512, 0.01725769, 0.046447754, -0.01626587, -0.02418518, 0.09106445, -0.036315918, -0.055999756, -0.06964111, 0.049560547, -0.055725098, -0.06762695, 0.05014038, 0.049621582, 0.007369995, -0.00034976006, -0.035491943, -0.032073975, 0.012710571, 0.00598526, -0.033966064, -0.0036506653, -0.022247314, 0.006137848, 0.0019216537, -0.012252808, 0.006790161, 0.046966553, 0.031066895, 0.020080566, -0.054473877, -0.042266846, -0.012176514, 0.0029335022, 0.017089844, -0.0014562607, 0.0020885468, -0.0018825531, 0.039886475, -0.026550293, -0.020751953, -0.01725769, 0.03060913, 0.05718994, -0.004425049, 0.03656006, 0.0625, -0.06744385, 0.019500732, -0.026733398, -0.03881836, 0.005382538, 0.05307007, 0.0284729, 0.019485474, -0.04119873, -0.0146102905, -0.032196045, 0.030212402, 0.029022217, 0.019226074, -0.035888672, -0.011421204, 0.037902832, 0.043945312, -0.020980835, 0.029541016, 0.019241333, -0.014350891, -0.02381897, -0.0033187866, 0.014228821, -0.042266846, -0.024749756, -0.035003662, -0.05166626, -0.009506226, -0.032928467, 0.02848816, -0.024368286, -0.0072669983, -0.02418518, -0.010696411, 0.0027980804, -0.008163452, 0.010932922, -0.011054993, -0.03439331, -0.000895977, -0.018005371, -0.02041626, 0.00258255, 0.015235901, 0.008010864, 0.01876831, 0.010322571, 0.026763916, 0.029083252, 0.014030457, -0.031051636, -0.016143799, 0.05001831, -0.05078125, -0.012680054, 0.003293991, -0.036621094, -0.003168106, 0.005722046, -0.010368347, 0.015686035, 0.01109314, 0.036010742, 0.011184692, 0.040008545, 0.030792236, 0.011688232, 0.0006952286, -0.02154541, 0.017059326, 0.042144775, -0.012016296, -0.027267456, 0.017318726, 0.020690918, -9.9122524e-05, 0.016326904, -0.05984497, 0.03414917, 0.024673462, 0.022750854, -0.024551392, 0.008560181, 0.036193848, 0.013442993, 0.00026535988, 0.020401001, -0.008621216, 0.0077171326, -0.001200676, 0.0034065247, 0.01071167, -0.004497528, 0.024871826, 0.0038089752, -0.02494812, -0.00043702126, 0.015960693, -0.011184692, -0.01272583, 0.018630981, -0.0033130646, -0.012260437, 0.008094788, 0.04333496, 0.01625061, 0.038360596, -0.03564453, -0.0023593903, 0.03353882, 0.0035991669, 0.007774353, -0.012077332, 9.340048e-05, 0.028503418, -0.050811768, -0.012611389, -0.003211975, -0.013801575, 0.008071899, -0.008674622, 0.018661499, -0.0008945465, -0.0022220612, -0.0052757263, -0.009780884, -0.003648758, 0.0138549805, -0.008354187, -0.006275177, 0.01802063, -0.037902832, -0.04550171, -0.027313232, 0.043548584, -0.034851074, -0.056274414, -0.023803711, 0.01586914, -0.018249512, -0.056274414, -0.016189575, -0.025772095, 0.04748535, 0.009483337, 0.027862549, 0.0041656494, -0.06976318, -0.045166016, 0.040374756, -0.06903076, -0.048309326, -0.0038719177, 0.004299164, 0.006362915, -0.011940002, -0.008911133, 0.055877686, -0.0003297329, -0.0056495667, -0.006626129, -0.053588867, -0.034423828, 0.0927124, 0.0072669983, -0.007904053, -0.025924683, 0.035827637, 0.012016296, 0.019500732, -0.002954483, 0.014770508, -0.08428955, 0.013694763, -0.023666382, 0.011940002, -0.013381958, -0.0028839111, 0.00843811, 0.015838623, -0.030929565, -0.015686035, 0.013183594, 0.0060539246, 0.02609253, 0.014213562, 0.004020691, -0.013053894, -0.01637268, -0.007461548, 0.00027942657, 0.008430481, -0.021377563, -0.027679443, 0.028869629, -0.014389038, -0.0143585205, -0.044067383, 0.007030487, 6.9737434e-05, 0.00013673306, 0.0129852295, -0.027389526, -0.029434204, -0.0037975311, -0.048461914, -0.038970947, -0.00027871132, 0.030654907, 0.036590576, -0.05255127, -0.07110596, -0.0063171387, 0.0022258759, -0.03503418, -0.08001709, -0.020751953, -0.0574646, -0.005016327, 0.030929565, -0.013420105, -0.00522995, -0.019927979, -0.02154541, -0.012123108, -0.004058838, 0.0052375793, 0.0010795593, -0.015914917, -0.0181427, -0.006916046, 0.028869629, -0.015197754, -0.074645996, -0.058532715, 0.0435791, 0.023040771, -0.024597168, 0.07556152, -0.044006348, 0.0071372986, 0.039642334, -0.012382507, -0.02418518, 0.022125244, 0.01940918, 0.00018584728, 0.007446289]}, "B08VWF26NT": {"id": "B08VWF26NT", "original": "Brand: Patelai\nName: 2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch\nDescription:
      Features:

      Extra long design:
      These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

      Stainless steel blade:
      Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won't stain the food residue, convenient to clean, reusable and durable for your long-term needs.

      Specification:
      Material: stainless steel, wood
      Size: approx. 20 inches in full length
      Color: as shown in pictures

      Package content:
      1 x Slotted spatula
      1 x Solid kitchen spatula

      Note:
      Pointed parts include, please use it carefully and keep away from kids.
      Manual measurement, please allow slight errors on size.
      The colors may exist slight difference due to different screens.\nFeatures: Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire\nThickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use\n4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge\nNice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more\nMultiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience\n", "metadata": {"Name": "2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch", "Brand": "Patelai", "Description": "
      Features:

      Extra long design:
      These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

      Stainless steel blade:
      Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won't stain the food residue, convenient to clean, reusable and durable for your long-term needs.

      Specification:
      Material: stainless steel, wood
      Size: approx. 20 inches in full length
      Color: as shown in pictures

      Package content:
      1 x Slotted spatula
      1 x Solid kitchen spatula

      Note:
      Pointed parts include, please use it carefully and keep away from kids.
      Manual measurement, please allow slight errors on size.
      The colors may exist slight difference due to different screens.", "Features": "Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire\nThickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use\n4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge\nNice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more\nMultiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.008972168, -0.002779007, 0.0058059692, 0.005558014, -0.022460938, -0.0028266907, 0.011405945, -0.026626587, -0.03967285, 0.024520874, -0.005519867, 0.025482178, -0.0051345825, -0.020111084, 0.007133484, -0.03668213, 0.0057907104, 0.02659607, 0.041412354, -0.00869751, 0.015396118, -0.018707275, 0.007118225, -0.018814087, 0.08728027, -0.049438477, -0.05255127, 0.0066375732, 0.068115234, 0.018218994, 0.044647217, -0.009933472, 0.039154053, -0.0024089813, -0.04626465, -0.038879395, -0.002588272, -0.0071792603, -0.029830933, 0.008293152, 0.020019531, -0.0024528503, -0.045135498, 0.0012264252, -0.051483154, -0.0071372986, -0.013755798, -0.0074806213, 0.036499023, 0.04373169, 0.02420044, -0.0053215027, 0.027435303, 0.019515991, -0.020721436, -0.031066895, 0.005016327, -0.029632568, 0.007835388, 0.04071045, 0.0036087036, 0.003900528, 0.0015535355, -0.024551392, -0.014945984, 0.007232666, 0.07574463, 0.01361084, -0.060180664, -0.06762695, 0.021850586, -0.011062622, 0.007587433, -0.016448975, -0.0032730103, -0.01802063, 0.029556274, -0.0048294067, -0.00484848, 0.0054969788, -0.037109375, -0.017990112, 0.0012083054, -0.078308105, 0.035827637, -0.042999268, -0.019378662, 0.019363403, 0.016647339, -0.031204224, 0.0026836395, -0.04776001, -0.021896362, 0.06976318, -0.0020694733, -0.010986328, -0.016555786, -0.022827148, -0.004207611, 0.04849243, 0.02859497, -0.04949951, 0.10247803, -0.03741455, -0.014961243, 0.017868042, 0.011566162, -0.01939392, -0.026794434, 0.012008667, -0.03225708, -0.026306152, 0.017425537, 0.003396988, -0.048217773, -0.016021729, 0.009933472, -0.04498291, -0.003080368, -0.053009033, -0.061340332, -0.027740479, 0.00178051, 0.027267456, 0.040130615, 0.04598999, 0.030258179, 0.005142212, 0.023895264, 0.011451721, -0.03677368, -0.017410278, 0.057250977, 0.04626465, 0.018508911, -0.031280518, 0.03564453, 0.012702942, 0.004673004, 0.03744507, -0.0446167, -0.02798462, 0.023132324, -0.03717041, 0.013473511, 0.0027389526, 0.029876709, 0.04437256, -0.018539429, -0.0345459, 0.04675293, 0.03012085, 0.05303955, -0.0022392273, -0.070617676, -0.024017334, -0.03173828, -0.012557983, -0.022109985, -0.04840088, -0.040618896, -0.014221191, 0.015792847, -0.053527832, -0.068847656, 0.033294678, 0.0005927086, -0.01020813, 0.007949829, 0.025299072, 0.001581192, 0.01638794, -0.009552002, -0.0069503784, -0.005996704, -0.020065308, -0.042236328, 0.025222778, 0.07574463, -0.091552734, -0.045776367, -0.025680542, 0.086120605, -0.010871887, -0.0025520325, -0.015106201, 0.011619568, 0.027511597, 0.025039673, 0.024780273, -0.011726379, -0.0043029785, -0.019851685, -0.00037169456, 0.009109497, 0.01777649, 0.010513306, 0.046203613, 0.010955811, -0.05014038, -0.0016860962, 0.0046806335, -0.007904053, -0.010612488, -0.03414917, -0.010688782, -0.012290955, 0.032562256, 0.0027561188, 0.042785645, 0.0137786865, -0.016036987, 0.0018644333, -0.029342651, -0.008216858, -0.02166748, -0.001168251, 0.016174316, 0.0044403076, 0.009223938, 0.024139404, 0.0042877197, 0.027297974, 0.009986877, 0.001996994, -0.0030460358, -0.019561768, 0.009895325, 0.009979248, 0.028533936, -0.040100098, -0.010093689, 0.072387695, 0.055541992, -0.028076172, 0.02116394, 0.007255554, 0.0335083, -0.019943237, 0.0030288696, 0.0099487305, -0.0068092346, -0.018539429, 0.01966858, 0.0067825317, -0.02861023, 0.0047073364, -0.0011253357, -0.024627686, -0.013580322, 0.023666382, -0.010787964, 0.023651123, -0.0065078735, -0.013618469, 0.016220093, -0.06738281, 0.009216309, -0.05923462, 0.037506104, -0.021438599, 0.03201294, 0.07922363, -0.015029907, 0.03137207, 0.008346558, 0.021469116, 0.025268555, -0.01133728, 0.017364502, -0.011962891, -0.05090332, -0.010765076, 0.0041236877, 0.048797607, -0.05886841, -0.011634827, 0.0052604675, -0.04232788, -0.028839111, -0.006198883, 0.03286743, 0.06088257, -0.016433716, 0.02583313, -0.007751465, 0.0102005005, -0.060821533, -0.01889038, -0.018554688, 0.017807007, 0.037109375, -0.012107849, 0.016403198, 0.0079574585, -0.014732361, 0.01007843, 0.1027832, -0.030212402, 0.0066223145, -0.025772095, 0.010246277, -0.07501221, 0.015388489, -0.025268555, 0.010566711, -0.024658203, 0.014884949, 0.005092621, -0.08227539, 0.048431396, 0.04421997, 0.026977539, 0.036956787, 0.044006348, 0.011726379, 0.023864746, 0.06695557, 0.057159424, 0.048553467, 0.0071372986, -0.008872986, -0.02772522, -0.011566162, -0.010101318, 0.014404297, -0.023284912, -0.0008544922, -0.03805542, 0.010253906, 0.04699707, 0.01020813, 0.05050659, 0.0073280334, 0.006378174, -0.02027893, 0.0055656433, -0.016281128, -0.0093307495, -0.005191803, -0.0044898987, -0.033447266, 0.012992859, -0.029632568, -0.0051651, 0.0013952255, 0.0028495789, 0.011299133, 0.007537842, -0.0043907166, -0.0041160583, -0.030349731, 0.0022354126, -0.021194458, 0.010879517, 0.02911377, -0.02003479, -0.012138367, 0.013435364, -0.06161499, 0.0025234222, -0.009864807, -0.026657104, 0.022842407, 0.020324707, -0.026504517, 0.016189575, -0.007904053, 0.020111084, 0.01007843, 0.031982422, 0.0032444, -0.024154663, -0.021881104, -0.0050964355, -0.04067993, 0.0008955002, -0.05218506, 0.0035972595, -0.012390137, -0.022918701, 0.020050049, 0.0045051575, 0.064819336, -0.019134521, 0.025543213, 0.0057792664, 0.035705566, -0.020126343, -0.0335083, 0.0020179749, 0.064697266, -0.033355713, -0.04537964, -0.016586304, 0.0026340485, 0.037322998, -0.004634857, 0.02381897, -0.035186768, -0.09326172, 0.007381439, -0.012687683, -0.010063171, -0.0030555725, -0.0019721985, -0.024459839, -0.05606079, 0.0030021667, 0.05645752, -0.002872467, 0.001789093, -0.013710022, 0.024002075, 0.010643005, -0.0287323, 0.042266846, -0.010940552, 0.0211792, -0.04626465, 0.005657196, -0.046081543, 0.029907227, 0.030288696, -0.0038375854, -0.050201416, 0.030212402, -0.008857727, 0.010093689, 0.03366089, -0.0005774498, -0.02897644, -0.009414673, -0.0074501038, -0.053344727, 0.0033721924, 0.0025730133, 0.024230957, 0.030258179, -0.02243042, 0.00308609, -0.0340271, -0.046966553, 0.013298035, -0.04751587, 0.00019669533, -0.013442993, -0.007637024, -0.021652222, -0.0059127808, -0.022781372, 0.0013856888, 0.031829834, 0.024124146, -0.009277344, 0.06384277, 0.027359009, 0.023986816, 0.026794434, -0.018676758, -0.04360962, -0.022613525, 0.031829834, -0.025817871, -0.013145447, -0.010887146, 0.015586853, 0.004032135, -0.006538391, -0.010414124, -0.016433716, 0.046295166, 0.019958496, -0.0046653748, 0.027359009, 0.013549805, 0.0016412735, 0.034820557, -0.072265625, -0.034973145, -0.036621094, -0.01576233, -0.07550049, 0.09881592, 0.046325684, -0.01953125, 0.066345215, 0.10064697, -0.019134521, 0.0071792603, -0.030166626, 0.005683899, 0.013168335, -0.0037593842, -0.023712158, 0.020843506, 0.015380859, -0.026855469, 0.050476074, 0.03036499, -0.071777344, 0.024780273, 0.0010528564, -0.07324219, 0.005744934, 0.0046539307, 0.022354126, -0.008087158, -0.009391785, 0.026901245, 0.009025574, -0.024536133, -0.025817871, 0.009437561, -0.03086853, -0.054504395, 0.04360962, -0.026931763, -0.030303955, 0.023513794, 0.006690979, 0.0032806396, -0.0066986084, 0.03378296, 0.007881165, 0.011795044, -0.047607422, 0.0107421875, -0.03982544, -0.008995056, 0.03112793, 0.032592773, 0.038269043, -0.0082092285, 0.0041999817, -0.0099487305, -0.026260376, 0.02268982, 0.018203735, -0.034210205, -0.00043821335, 0.011260986, -0.01638794, -0.0026855469, -0.0023326874, -0.05911255, -0.055419922, -0.02571106, -0.025054932, -0.01838684, -0.013832092, -0.01776123, -0.07385254, 0.018066406, 0.023895264, -0.062805176, -0.10083008, 0.031982422, 0.0025596619, -0.049743652, -0.0035247803, 0.02659607, -0.023849487, -0.013519287, -0.060302734, 0.0046463013, 0.060943604, 0.038482666, 0.00818634, -0.00028586388, -0.013122559, -0.018569946, 0.08795166, 0.020370483, -0.014190674, -0.052581787, -0.019073486, 0.002708435, 0.04446411, 0.07086182, -0.0033359528, 0.04425049, -0.012199402, -0.009056091, -0.055877686, 0.00605011, 0.05130005, -0.0574646, -0.030136108, -0.010536194, 0.064941406, 0.0038528442, 0.03439331, -0.04043579, -0.007881165, -0.020523071, -0.034301758, -0.020080566, 0.012023926, -0.002090454, -0.04196167, 0.021575928, -0.0013523102, -0.01739502, 0.021728516, 0.052124023, -0.015823364, -0.036010742, -0.0025920868, -0.014221191, 0.0014390945, 0.012191772, -0.020645142, 0.02406311, -0.035858154, -0.010650635, -0.03466797, 0.07159424, 0.08087158, -0.03668213, 0.0026798248, -0.0021362305, -0.032470703, -0.030761719, -0.015731812, 0.009567261, 0.022018433, -0.010154724, -0.033599854, 0.011489868, -0.02810669, 0.009208679, -0.012992859, -0.0034866333, 0.012130737, 0.017669678, -0.0076293945, -0.035339355, -0.012672424, 0.021560669, 0.0038261414, 0.061065674, 0.015556335, -0.0021095276, 0.040893555, -0.015342712, 0.008384705, -0.028030396, 0.0019245148, -0.021408081, 0.037078857, 0.012290955, -0.021865845, 0.008171082, 0.023757935, 0.0044059753, -0.016021729, 0.004081726, 0.020233154, -0.014709473, -0.020477295, 0.022018433, -0.034332275, 0.011230469, 0.03475952, -0.020507812, 0.035980225, 0.026290894, -0.017028809, 0.044006348, 0.0064582825, 0.015731812, 0.02848816, -0.0152282715, 0.0014486313, 0.005695343, 0.022140503, 0.028778076, 0.016403198, -0.038024902, 0.00831604, 0.033569336, 0.077697754, -0.0016098022, -0.028640747, 0.053710938, -0.009811401, -0.03778076, -0.004886627, 0.03253174, -0.057250977, -0.0035095215, 0.002729416, -0.0048561096, -0.045440674, -0.00030303, 0.022705078, -0.03149414, 0.0035934448, -0.06060791, 0.028839111, 0.011741638, -0.050811768, -0.013801575, 0.013328552, -0.028076172, -0.046905518, -0.044158936, 0.0017547607, 0.0118637085, -0.03768921, 0.010261536, 0.031585693, -0.0025501251, -0.027404785, -0.029876709, 0.020736694, 0.0044822693, -0.00844574, 0.044769287, -0.014427185, 0.03768921, 0.023742676, -0.021636963, 0.02357483, 0.004211426, -0.036712646, 0.012916565, -0.009223938, 0.005847931, -0.01574707, -0.0030727386, 0.056640625, -0.033599854, -0.03756714, -0.042785645, 0.016052246, 0.007270813, -0.0046653748, 0.013748169, -0.032592773, 0.005680084, 0.014221191, -0.006587982, -0.02331543, -0.0054016113, -0.008728027, -0.050842285, 0.019592285, -0.012802124, 0.036071777, -0.00283432, -0.020202637, -0.035217285, 0.017227173, -0.040496826, -0.0158844, -0.047821045, -0.039215088, -0.006816864, -0.011894226, -0.004047394, -0.021743774, 0.004814148, -0.04159546, -0.02015686, -0.01473999, -0.010498047, 0.006980896, 0.056488037, 0.026535034, -0.041290283, 0.025009155, 0.08673096, -0.05987549, 0.07800293, -0.039093018, -0.008430481, 0.020553589, 0.05053711, 0.0036468506, 0.04055786, -0.00894928, -0.026184082, -0.0032043457, -0.00655365, 0.048614502, -0.032958984, -0.020553589, -0.025115967, 0.03933716, 0.042633057, 0.03149414, -0.038635254, -0.012550354, -0.026931763, -0.007850647, -0.006587982, -0.034484863, -0.01876831, -0.023544312, -0.024261475, -0.007472992, 0.030471802, -0.023910522, 0.049224854, -0.0038166046, 0.035461426, -0.0005865097, -0.024429321, 0.016464233, 0.00995636, 0.013511658, -0.033355713, -0.06665039, -0.004108429, -0.009597778, 0.020233154, -0.03466797, -0.0045700073, -0.011047363, 0.014434814, 0.008888245, 0.02331543, -0.01235199, -0.01878357, 0.02507019, -0.00026917458, -0.0032253265, 0.021377563, 0.004180908, -0.019973755, -0.04663086, -0.011497498, -0.020111084, 0.023010254, 0.009819031, 0.010307312, 0.023971558, 0.029403687, 0.054748535, 0.0017814636, 0.023468018, 0.009162903, -0.006011963, -0.0021152496, 0.037750244, -0.012428284, -0.008758545, 0.005722046, 0.01828003, -0.056427002, -0.0047416687, -0.02859497, 0.020965576, -0.01876831, 0.025314331, -0.027664185, -0.003742218, 0.010528564, -0.010795593, 0.028045654, 0.032348633, 0.006248474, -0.0057411194, 0.029083252, 0.015083313, 0.026016235, 0.02935791, 0.022750854, 0.024429321, -0.024734497, -0.0127334595, -0.029281616, -0.020202637, -0.007209778, 0.00014817715, 0.023849487, -0.011604309, 0.07525635, 0.02949524, 0.061676025, 0.08526611, 0.0053367615, 0.039093018, 0.037384033, 0.0017757416, 0.002407074, -0.0033626556, 0.015548706, -0.028686523, -0.018157959, 0.010108948, 0.0110321045, 0.016311646, 0.05142212, 0.005317688, 0.022033691, -0.018569946, -0.025314331, -0.001964569, -0.008857727, 0.009384155, -0.0070877075, -0.03326416, -0.00217247, 0.033294678, -0.012199402, -0.031799316, -0.04309082, 0.028427124, -0.014968872, -0.033813477, -0.042907715, -0.002204895, 0.053100586, -0.040802002, -0.01689148, 0.013511658, 0.06982422, 0.02684021, 0.07147217, -0.026977539, -0.08306885, -0.08618164, 0.030151367, -0.07171631, -0.025985718, 0.012763977, 0.018692017, 0.050933838, 0.0040512085, -0.030639648, 0.060821533, -0.005760193, -0.010932922, -0.053894043, -0.03100586, -0.028717041, 0.04498291, -0.021255493, -0.013076782, -0.013725281, 0.06719971, -0.01625061, 0.011070251, 0.009773254, -0.037139893, -0.04547119, -0.0099487305, -0.022598267, 0.0013504028, -0.00932312, -0.028335571, 0.028656006, -0.00541687, -0.030639648, -0.049224854, 0.03173828, -0.0032043457, 0.030044556, 0.026367188, -0.038970947, -0.041107178, 0.0309906, 0.0038776398, 0.012435913, 0.017593384, -0.0063934326, 0.0063819885, 0.05545044, 0.01197052, -0.035308838, 0.017196655, 0.017227173, -0.04324341, -0.014778137, 0.0031929016, 0.046691895, -0.0357666, 0.0003733635, 0.00541687, -0.025619507, -0.10821533, 0.04135132, 0.02293396, -0.0362854, -0.029953003, -0.014709473, 0.0014886856, -0.010520935, -0.049438477, -0.0004067421, -0.086364746, 0.054382324, 0.048950195, 0.01335907, 0.007282257, 0.012901306, -0.05819702, 0.0013656616, 0.025527954, -0.011016846, 0.0072669983, -0.0032444, 0.04071045, -0.024337769, 0.09460449, 0.00818634, -0.03656006, -0.03253174, 0.042999268, 0.014175415, -0.03390503, 0.017410278, -0.0126571655, 0.012748718, 0.019989014, -0.0357666, -0.0009665489, -0.017349243, 0.075683594, -0.014343262, -0.0026378632]}, "B085NSXPG4": {"id": "B085NSXPG4", "original": "Brand: ThermoPro\nName: ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey\nDescription: \nFeatures: Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion\nTouch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions\nHighly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14\u02daf to 572\u02daf with the highest accuracy of \u00b11.8\u00b0f/1\u00b0c and fast read times of 1-2 seconds\n6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again\nEasy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole\n", "metadata": {"Name": "ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey", "Brand": "ThermoPro", "Description": "", "Features": "Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion\nTouch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions\nHighly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14\u02daf to 572\u02daf with the highest accuracy of \u00b11.8\u00b0f/1\u00b0c and fast read times of 1-2 seconds\n6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again\nEasy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0037002563, 0.009712219, -0.011444092, 0.006713867, 0.008773804, -0.026611328, 0.029846191, -0.025817871, 0.019378662, 0.037109375, 0.019577026, -0.00667572, 0.039916992, -0.051727295, 0.0076942444, 0.004787445, 0.013702393, 0.00793457, 0.024597168, -0.00011765957, -0.028549194, 0.01927185, 0.00983429, 0.011459351, 0.032440186, 0.02470398, 0.0055160522, 0.011123657, 0.021270752, 0.013725281, 0.021697998, -0.038330078, 0.025390625, 0.03125, -0.07354736, -0.0032844543, -0.031219482, 0.01247406, -0.018066406, -0.0005168915, 0.011047363, -0.0010871887, 0.07006836, 0.028198242, -0.002626419, -0.027297974, 0.02809143, -0.027801514, 0.0015497208, 0.0121154785, 0.04425049, -0.011734009, 0.046844482, 0.018966675, -0.009780884, 0.010917664, -0.0074768066, 0.027435303, 0.03262329, -0.03753662, -0.023330688, -0.0001732111, 0.02822876, 0.030792236, -0.008155823, -0.0008597374, 0.052825928, -0.012252808, -0.007331848, -0.013343811, 0.029708862, 0.0027275085, 0.02545166, -0.041015625, -0.0049324036, -0.03942871, -0.000975132, -0.041107178, 0.016357422, -0.011405945, -0.007286072, -0.033325195, 0.004535675, -0.03164673, 0.028549194, 0.006477356, -0.0067634583, -0.018493652, -0.026123047, -0.05114746, -0.027038574, -0.003194809, -0.065979004, 0.018737793, 0.0006046295, -0.03161621, -0.0012712479, -0.029373169, 0.0077285767, -0.02558899, 0.04324341, -0.038269043, -0.02670288, 0.011749268, -0.005680084, 0.07122803, -0.009010315, 0.026504517, 0.032440186, 0.01586914, 0.03010559, -0.027938843, -0.029190063, -0.022735596, -0.023773193, 0.043914795, -0.010803223, -0.05810547, 0.0022277832, -0.051513672, -0.033996582, -0.010978699, 0.019638062, 0.02279663, 0.0012254715, 0.0037612915, 0.0140686035, -0.01876831, -0.08282471, 0.060821533, -0.022109985, -0.024932861, 0.018157959, 0.04034424, 0.0121536255, -0.042999268, 0.015930176, -0.010536194, 0.0033168793, 0.013259888, 0.0073432922, -0.047912598, -0.03024292, 0.021652222, -0.029724121, 0.0030784607, 0.026153564, 0.025527954, -0.04711914, -0.047668457, 0.01763916, 0.018066406, 0.02494812, 0.0026474, -0.031036377, 0.0016870499, -0.019454956, -0.0063095093, -0.016113281, -0.020523071, -0.022064209, -0.0053634644, 0.009521484, -0.012542725, -0.010223389, -0.005493164, 0.007217407, -0.0005941391, 0.013175964, 0.0032672882, 0.0037574768, 0.01928711, 0.012252808, -0.0064888, -0.007270813, -0.006641388, -0.004196167, 0.07434082, 0.07751465, -0.08270264, -0.062164307, -0.04953003, 0.16357422, -0.066223145, -0.018951416, 0.029754639, -0.012634277, 0.03378296, 0.039245605, 0.014976501, -0.046905518, -0.0143585205, -0.035736084, 0.021392822, -0.007873535, 0.0055885315, -0.025985718, 0.039520264, -0.017044067, -0.05722046, -0.050445557, 0.010345459, -0.030029297, 0.021606445, -0.035888672, 0.002506256, -0.010322571, 0.036376953, -0.018508911, 0.008277893, 0.01977539, 0.011390686, 0.003730774, -0.087890625, -0.02394104, 0.018753052, -0.03894043, -0.03173828, -0.01914978, 0.020248413, 0.017807007, 0.00920105, -0.005432129, 0.02166748, 0.047058105, -0.002216339, -0.013053894, 0.00881958, 0.06713867, 0.02418518, -0.0010719299, 0.0062446594, 0.032989502, 0.023971558, -0.0064048767, 0.060394287, 0.07537842, 0.03466797, -0.039764404, -0.027755737, 0.014694214, 0.029067993, -0.024612427, -0.008651733, 0.03552246, -0.0042419434, 0.020568848, -0.013908386, -0.004585266, 0.0137786865, 0.009765625, 0.0032615662, 0.037841797, 0.0061798096, -0.005004883, 0.044891357, -0.018295288, 0.018829346, -0.05947876, 0.04083252, -0.011009216, 0.006603241, 0.02468872, -0.013313293, 0.048065186, 0.00045990944, 0.039978027, 0.029312134, -0.020095825, -0.008743286, 0.0027618408, -0.0035915375, -0.009170532, -0.03930664, -0.006549835, -0.018676758, -0.03112793, 0.029067993, 0.02670288, -0.044189453, 0.01626587, 0.032348633, 0.02859497, -0.002632141, 0.029678345, -0.041870117, 0.009521484, 0.012779236, -0.020553589, -0.021347046, 0.0053253174, 0.00045585632, -0.015930176, 0.0060806274, 0.009536743, -0.018692017, 0.0096588135, 0.02796936, -0.001405716, -0.013923645, 0.003288269, 0.03161621, -0.031051636, 0.022842407, -0.009674072, -0.015060425, 0.0007472038, 0.019424438, 0.0048446655, -0.07543945, 0.04171753, 0.042663574, 0.046569824, -0.038848877, 0.06945801, 0.05102539, 0.031707764, 0.03189087, 0.02420044, 1.6272068e-05, -0.03213501, 0.009185791, -0.051513672, -0.0052375793, 0.00014126301, 0.04437256, -0.02923584, -0.015022278, -0.027236938, 0.025375366, 0.08319092, 0.027511597, 0.042541504, -0.039855957, 0.0008468628, -0.018829346, -0.01927185, 0.03161621, -0.024902344, -0.02166748, -0.03050232, 0.00566864, 0.036224365, -0.026779175, -0.07116699, 0.022247314, 0.005455017, 0.0110321045, -0.01600647, -0.030899048, 0.037261963, -0.024398804, -0.0026435852, -0.016723633, -0.01838684, 0.0065460205, 0.0037517548, -0.05078125, -0.02394104, -0.07867432, -0.02519226, 0.012908936, -0.048828125, -0.022216797, 0.061584473, -0.034179688, -0.029800415, -0.017913818, 0.016586304, 0.03149414, 0.04660034, 0.016082764, -0.043182373, -0.030685425, -0.052246094, -0.045288086, -0.0184021, -0.05166626, 0.018341064, -0.018936157, -0.01322937, 0.025299072, 0.024551392, 0.056243896, 0.0031204224, 0.037139893, 0.011955261, 0.05230713, -0.03543091, -0.025115967, -0.00082445145, 0.083862305, -0.00080013275, -0.022903442, -0.0010309219, 0.019470215, -0.020065308, -0.05496216, -0.01159668, -0.008270264, -0.078552246, -0.015029907, -0.037994385, -0.015045166, 0.00970459, -0.062927246, -0.0046157837, -0.06726074, 0.0006170273, 0.060302734, -0.0149383545, 0.0014648438, -0.029556274, 0.014015198, 0.014389038, -0.0060157776, 0.032958984, -0.007232666, 0.01966858, -0.03994751, 0.014480591, -0.039978027, 0.016143799, -0.0013036728, -0.017303467, 0.03677368, -0.013221741, 0.012542725, 0.0037708282, -0.040161133, -0.02130127, -0.041870117, -0.009925842, -0.019851685, -0.005809784, 0.029754639, 0.0008621216, -0.0016851425, 0.0029525757, -0.013069153, -0.051452637, -0.005783081, -0.014122009, 0.013450623, -0.017807007, -0.0077552795, -0.0034255981, -0.06329346, -0.009605408, -0.093811035, -0.025268555, 0.008598328, 0.062927246, 0.035888672, 0.027755737, 0.0949707, -0.024658203, 0.04949951, 0.057556152, -0.06933594, -0.02709961, -0.058929443, -0.0017614365, 0.05239868, -0.007850647, -0.028915405, 0.043548584, -0.025527954, -0.040527344, 0.013404846, -0.0569458, 0.057281494, -0.007926941, -0.003686905, -0.03186035, 0.012771606, 0.023376465, -0.007282257, 0.05633545, 0.004486084, -0.04815674, 0.014503479, -0.056762695, 0.04650879, 0.004547119, -0.0001847744, 0.030578613, 0.043060303, -0.0011253357, 0.027008057, 0.06933594, -0.012641907, 0.030090332, 0.014144897, -0.03152466, -0.03768921, 0.011375427, -0.004901886, 0.033599854, 0.02267456, -0.031204224, 0.027175903, -0.0032405853, -0.00737381, -0.051452637, -0.0011787415, 0.03414917, 0.022277832, 0.01953125, -0.067871094, 0.04711914, -0.019729614, 0.0014123917, -0.0037174225, -0.018920898, -0.041534424, 0.014732361, -0.006099701, -0.029846191, 0.006427765, -0.0025615692, 0.018188477, 0.0031394958, 0.017578125, 0.0020446777, 0.013847351, -0.050201416, 0.017089844, 0.0065727234, -0.0027542114, 0.04925537, -0.0038032532, 0.00642395, -0.0141067505, 0.0035820007, 0.014427185, 0.00258255, 0.00894928, -0.012283325, -0.0044670105, 0.010520935, -0.042633057, -0.030426025, -0.015838623, 0.052856445, -0.07397461, 0.03152466, -0.0047950745, -0.06365967, 0.006187439, -0.04849243, -0.028686523, -0.04095459, -0.030258179, -0.0030879974, -0.035186768, -0.017929077, 0.01940918, 0.011909485, -0.041168213, -0.011962891, 0.027252197, -0.03591919, 0.0020771027, 0.00073719025, 0.00548172, 0.062286377, 0.0132751465, 0.019607544, -0.051361084, -0.010864258, -0.028793335, 0.037109375, 0.024841309, 0.0038852692, 0.006427765, -0.041503906, 0.00035762787, 0.026367188, 0.10247803, 0.02758789, 0.013671875, -0.08508301, -0.03656006, -0.019104004, -0.014854431, 0.04434204, -0.023590088, 0.00049877167, -0.047790527, 0.008705139, -0.003921509, 0.014076233, 0.008636475, 0.011779785, -0.03253174, 0.021652222, -0.051452637, 0.012573242, -0.0012569427, -0.00015115738, 0.0074310303, -0.004760742, -0.017150879, 0.0053138733, 0.020492554, -0.027008057, -0.010238647, -0.00655365, -0.04348755, 0.018173218, 0.010948181, -0.028381348, 0.033721924, -0.046783447, -0.009552002, -0.008392334, 0.02947998, 0.064575195, -0.035491943, 0.022628784, 0.008399963, -0.02394104, 0.03387451, -0.015388489, -0.008483887, -0.015945435, -0.016693115, -0.027328491, 0.02053833, -0.008583069, 0.0039482117, -0.016830444, -0.004032135, -0.0075263977, -0.008277893, -0.011978149, -0.036193848, -0.02142334, -0.01360321, 0.009880066, 0.01474762, -0.018295288, -0.0020771027, -0.0001552105, -0.013633728, -0.0070228577, -0.01763916, -0.026672363, 0.0005283356, -0.034057617, -0.015625, -0.027496338, -0.050994873, 0.008773804, -0.054016113, 0.000808239, 0.023864746, 5.38826e-05, -0.028152466, -0.021133423, 0.014152527, 0.017471313, -0.03970337, 0.097595215, -0.0012722015, -0.0010786057, 0.019897461, -0.0033893585, 0.061157227, -0.03604126, -0.02583313, 0.029907227, -0.012702942, 0.004146576, -0.0033893585, -0.012199402, 0.0030517578, -0.007091522, -0.020187378, 0.0011930466, 0.014472961, 0.021072388, 0.050933838, -0.068725586, 0.036590576, -0.03225708, -0.02507019, -0.004962921, 0.08673096, -0.06829834, -0.025009155, 0.018066406, -0.0234375, -0.061279297, -0.011123657, 0.0072669983, -0.04269409, -0.040740967, -0.042144775, 0.020629883, -0.0058898926, 0.0052986145, -0.026550293, -0.012123108, 0.03265381, -0.03591919, 0.02381897, -0.022460938, -0.006629944, -0.0019426346, 0.021133423, -0.03656006, -0.015670776, -0.0011034012, -0.009315491, -0.015655518, -0.0002837181, -0.013397217, 0.012130737, -0.020431519, -0.003118515, 0.046295166, 0.0016527176, 0.017150879, 0.048095703, -0.016235352, 0.0017490387, -0.01134491, -0.011764526, -0.033966064, -0.0040283203, 0.058685303, -0.054107666, -0.049102783, -0.052215576, 0.02418518, 0.005706787, -0.053710938, 0.034729004, -0.0007634163, -0.0034923553, 0.01838684, -0.040985107, -0.029266357, 0.021850586, 0.0028629303, -0.04724121, -0.016296387, -0.024734497, -0.03652954, 0.032104492, -0.02142334, -0.0082092285, 0.018478394, -0.0067481995, 0.021255493, -0.029968262, -0.03765869, -0.008232117, -0.011329651, 0.022232056, 0.0073890686, 0.0025959015, -0.027893066, -0.0058059692, -0.05807495, -0.016784668, 0.012252808, 0.016433716, 0.00969696, 0.0007610321, 0.026412964, 0.10064697, -0.062042236, -0.0051193237, 0.012542725, -0.014808655, 0.0060043335, -0.004951477, -0.003063202, -0.015914917, -0.043426514, 0.004623413, -0.017929077, 0.017074585, 0.004386902, 0.017456055, -0.044311523, -0.034729004, 0.0015850067, 0.034057617, 0.03753662, 0.006980896, 0.012275696, -0.0067367554, -0.018127441, -0.0006790161, -0.026992798, -0.02368164, -0.029464722, -0.047180176, 0.028411865, 0.038116455, 0.018478394, 0.01802063, 0.016616821, 0.03805542, -0.037963867, 0.036254883, -0.01689148, -0.008155823, 0.04324341, -0.040100098, 0.016830444, -0.047973633, 0.0058937073, 0.00091457367, 0.008628845, 0.039794922, -0.02204895, 0.004673004, 0.0102005005, 0.030349731, 0.0024280548, 0.018661499, 0.0009880066, -0.047607422, 0.0345459, -0.059539795, -0.005470276, -0.012741089, 0.0025787354, 0.026504517, 0.0178833, 0.016525269, -0.016677856, 0.07470703, -0.047668457, 0.0021858215, -0.0016956329, 0.022247314, -0.026916504, -0.0043182373, 0.006969452, -0.00504303, 0.012580872, -0.0022029877, -0.07141113, 0.038116455, 0.019378662, 0.00087690353, 0.052581787, -0.0059432983, 0.011367798, -0.016342163, 0.010169983, -0.016998291, -0.012901306, 0.027709961, -0.00073719025, 0.013977051, 0.03463745, 0.008934021, -0.0003399849, 0.017974854, -0.015930176, 0.02444458, -0.006225586, 0.041992188, 0.035247803, -0.007217407, -0.02633667, -0.057617188, -0.015380859, -0.03479004, 0.0073242188, -0.02192688, -0.02067566, 0.099243164, 0.0357666, -0.0031147003, 0.03387451, -0.01676941, -0.0031776428, 0.03262329, -0.0009646416, -0.03869629, 0.046966553, 0.01876831, -0.035095215, -0.00945282, -0.0073280334, -9.787083e-05, 0.0690918, 0.07043457, 0.013694763, -0.0012083054, -0.06378174, 0.05316162, -0.06188965, -0.047454834, 0.07836914, -0.059143066, -0.01574707, -0.004432678, -0.010818481, -0.033477783, -0.042907715, -0.041168213, 0.047210693, -0.023712158, -0.018417358, 0.003414154, -0.018661499, -0.0137786865, -0.066101074, -0.008354187, -0.016494751, 0.05090332, 0.0014247894, 0.042114258, -0.028717041, -0.061462402, -0.05630493, 0.046875, -0.090026855, -0.026000977, -0.03753662, 0.018234253, 0.006187439, -0.002363205, -0.0034503937, 0.023971558, -0.0004093647, -0.006626129, -0.011352539, -0.006801605, -0.024490356, 0.0047569275, -0.008636475, -0.008911133, -0.007789612, 0.02180481, 0.007724762, 0.06359863, -0.005973816, 0.0124435425, -0.07507324, -0.005897522, -0.043914795, 0.017791748, -0.003271103, -0.021621704, -0.010154724, -0.016677856, -0.04699707, -0.07836914, 0.002368927, 0.012893677, 0.027160645, 0.06518555, -0.019714355, 0.00705719, -0.045806885, 0.070739746, 0.002368927, -0.02053833, 0.021255493, 0.025512695, 0.028198242, 0.013763428, -0.015235901, 0.008110046, -0.0019836426, -0.009841919, -0.018051147, -0.00187397, 0.019821167, -0.011947632, 0.01499939, 0.039123535, -0.014671326, -0.020706177, 0.02230835, 0.043884277, -0.042907715, -0.014030457, -0.021469116, 0.01058197, 0.00046992302, -0.0597229, 0.030181885, 0.00067186356, 0.0011901855, 0.008338928, 0.014701843, -0.021194458, 0.0035095215, -0.025497437, -0.021774292, -0.014976501, 0.024795532, -0.016693115, -0.03656006, -0.02696228, -0.016540527, 0.021240234, -0.0023269653, -0.03845215, -0.06161499, 0.078430176, 0.035980225, -0.052215576, 0.04486084, -0.004547119, 0.018066406, -0.0025997162, 0.048583984, -0.0103302, -0.0077056885, -0.020355225, 0.008010864, 0.007659912]}, "B01HGFBNL6": {"id": "B01HGFBNL6", "original": "Brand: Homitt\nName: Homitt HT-GC01 Grill Cover, 58inch, Black\nDescription: \nFeatures: Dimensions: This Homitt bbq cover measures 58\"L x 24\"W x 48\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new\nFading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering\nHandles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing)\n", "metadata": {"Name": "Homitt HT-GC01 Grill Cover, 58inch, Black", "Brand": "Homitt", "Description": "", "Features": "Dimensions: This Homitt bbq cover measures 58\"L x 24\"W x 48\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new\nFading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering\nHandles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing)", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0022716522, -0.0046424866, -0.03488159, -0.025817871, -0.012130737, 0.005558014, -0.022415161, 0.017166138, 0.012916565, -0.022613525, -0.029586792, 0.015350342, 0.010261536, -0.030715942, 0.05078125, -0.024795532, 0.008148193, -0.002374649, 0.009841919, -0.011177063, -0.021850586, -0.008720398, 0.025756836, 0.0054855347, 0.006504059, -0.04107666, 0.033477783, -0.010223389, 0.024230957, 0.0082092285, 0.016799927, -0.005508423, 0.049102783, 0.00522995, -0.053833008, 0.044311523, -0.018920898, 0.0008444786, -0.009025574, 0.010322571, -0.014091492, 0.012672424, 0.0017337799, 0.015975952, -0.005264282, -0.05935669, 0.010398865, -0.05496216, 0.0105896, 0.014038086, 0.0024681091, 0.009605408, 0.0061569214, 0.05014038, -0.030212402, -0.027832031, -0.019561768, 0.008087158, 0.03201294, -0.013137817, -0.027389526, -0.007701874, 0.021469116, -0.017745972, 0.0016031265, -0.0015029907, 0.09265137, -0.002073288, -0.0435791, -0.025756836, 0.02420044, 0.007911682, 0.012161255, -0.026611328, -0.0435791, 0.010513306, 0.0015525818, -0.034606934, 0.027313232, -0.01777649, -0.028900146, -0.066101074, 0.017730713, -0.0009832382, -0.01889038, 0.00079870224, -0.0068244934, 0.012168884, 0.015525818, -0.030288696, 0.010612488, 0.05947876, -0.03616333, 0.019546509, -0.0011024475, -0.022994995, -0.024108887, -0.024124146, 0.018508911, -0.008422852, 0.03262329, -0.024887085, 0.0084991455, -0.013504028, -0.026885986, 0.030258179, 0.01878357, 0.035186768, -0.0031909943, -0.0009355545, -0.014350891, -0.04547119, 0.005996704, -0.036499023, -0.03274536, 0.0262146, 0.02017212, 0.004306793, 0.019744873, -0.0104522705, -0.058441162, -0.03656006, 0.013809204, 0.0413208, 0.042053223, 0.047576904, 0.014289856, 0.0079422, -0.033203125, 0.021148682, -0.015258789, 0.012771606, 0.014503479, 0.037200928, 0.0013055801, -0.008880615, 0.067871094, -0.06903076, -0.0048561096, 0.030410767, -0.0463562, 0.04925537, 0.07495117, -0.06945801, -0.04006958, 0.014427185, 0.00011360645, 0.021347046, -0.008056641, -0.06591797, 0.027038574, -0.04046631, 0.06542969, -0.005428314, -0.073791504, 0.014137268, 0.010826111, -0.0071983337, -0.07824707, -0.055877686, -0.048034668, -0.012825012, 0.019760132, -0.024505615, -0.035736084, 0.043640137, -0.0048561096, -0.0011463165, 0.030319214, 0.028930664, 0.02154541, -0.030776978, 0.008964539, -0.00040006638, -0.015945435, 0.011161804, -0.023910522, 0.04638672, 0.07623291, -0.1026001, -0.061340332, -0.048034668, 0.13208008, -0.026916504, 0.015266418, -0.030303955, 0.015792847, -0.013336182, 0.014801025, 0.01259613, 0.0073051453, 0.0078125, -0.025802612, 0.0020809174, -0.009986877, 0.01600647, -0.007347107, 0.04043579, -0.011428833, -0.045135498, -0.016143799, -0.037963867, 0.049926758, -0.022872925, 0.015426636, -0.027709961, -0.0007596016, 0.01676941, 0.023162842, 0.014877319, -0.020950317, 0.0022144318, 0.01537323, -0.05657959, -0.016983032, 0.04849243, 0.024261475, 0.00699234, -0.0023498535, 0.018127441, 0.008560181, -0.013717651, -0.01576233, 0.063964844, 0.03894043, 0.020462036, -0.016921997, 0.0070495605, 0.03918457, 0.046447754, -0.049041748, -0.018859863, 0.071777344, 0.038238525, -0.03729248, 0.041748047, 0.048919678, 0.024291992, -0.041107178, 0.006942749, 0.01676941, -0.028335571, -0.039367676, 0.026794434, 0.02760315, -0.0053863525, -0.0066223145, 0.02760315, 0.0036144257, 0.037353516, 0.03677368, 0.00060367584, -0.00028252602, 0.008735657, 0.0024318695, 0.00920105, -0.018814087, 0.008239746, -0.026809692, 0.04849243, -0.027816772, 0.019180298, 0.04937744, -0.018249512, 0.030227661, 0.016784668, 0.060272217, 0.053649902, 0.009780884, -0.021011353, -0.002117157, 0.0043754578, 0.0022068024, 0.015686035, -0.05368042, 0.020935059, -0.011962891, 0.016021729, -0.016738892, -0.017593384, 0.035125732, 0.038330078, -0.029663086, -0.0008597374, 0.027496338, 0.025726318, -0.015045166, 0.04611206, 0.006729126, -0.0030593872, 0.028198242, -0.025253296, 0.00667572, -0.044036865, 0.05355835, -0.047607422, 0.04119873, 0.0028705597, 0.0051841736, 0.013549805, 0.037261963, 0.053222656, -0.0124053955, 0.009002686, -0.026138306, 0.03829956, -0.04083252, 0.002035141, 0.0070648193, -0.038238525, 0.022735596, 0.038146973, 0.020507812, -0.016403198, 0.053833008, 0.009231567, 0.022857666, 0.05065918, 0.056274414, 0.054107666, -0.02003479, -0.011932373, -0.029953003, -0.030181885, -0.0016641617, 0.024963379, -0.034240723, 0.00068950653, -0.056884766, 0.014099121, -0.023101807, -0.032104492, -0.026245117, 0.044677734, -0.010238647, 0.024597168, -0.016204834, -0.016723633, -0.01763916, 0.0034694672, -0.005569458, -0.07336426, 0.0011825562, -0.03112793, -0.002067566, -0.05923462, 0.027496338, 0.0093688965, -0.03302002, 0.011100769, 0.01713562, -0.02671814, -0.023742676, -0.0513916, -0.03652954, 0.021728516, 0.008422852, -0.09020996, -0.013748169, -0.10583496, 0.008087158, -0.020065308, -0.0340271, 0.016998291, 0.023971558, -0.015594482, -0.036865234, 0.017028809, 0.01751709, 0.024383545, 0.005706787, 0.029769897, -0.015823364, -0.033447266, -0.030181885, -0.026031494, -0.0284729, -0.055664062, -0.03062439, -0.029006958, -0.033294678, -0.005241394, 0.008071899, 0.030929565, -0.0045776367, 0.027267456, 0.04559326, 0.056152344, 0.007286072, -0.035705566, 0.02267456, 0.09197998, 0.0074653625, -0.021713257, 0.009780884, 0.011314392, -0.003419876, -0.02268982, -0.0062942505, -0.03048706, -0.08135986, -0.0019483566, 0.004840851, -0.027877808, -0.044433594, -0.024673462, -0.072143555, -0.048217773, -0.017669678, 0.05834961, -0.013015747, -0.016204834, -0.049194336, 0.0051460266, 0.025756836, -0.01689148, 0.007331848, 0.0067443848, -0.034698486, -0.01007843, 0.011253357, 0.023529053, -0.0013589859, 0.0029678345, -0.009376526, 0.03540039, -0.012161255, 0.0019435883, -0.009475708, 0.0036830902, 0.008399963, -0.023803711, -0.013893127, 0.018096924, -0.007129669, 0.038391113, 0.01953125, -0.0075912476, 0.036499023, -0.03048706, -0.016220093, 0.009796143, -0.019195557, 0.036132812, 0.0013866425, -0.018539429, -0.008972168, -0.042114258, -0.038604736, 0.016571045, -0.003604889, 0.012832642, -0.0031394958, 0.040527344, -0.01574707, 0.07269287, 0.00541687, 0.020126343, 0.004501343, -0.034484863, -0.07354736, -0.047546387, 0.059051514, -0.041168213, -0.019256592, -0.02822876, 0.05923462, 0.009788513, -0.019805908, 0.00983429, -0.015716553, 0.0129776, -0.0023212433, 0.0073165894, -0.011184692, -0.0140686035, 0.008964539, 0.035705566, -0.014137268, -0.012748718, -0.0725708, 0.012870789, -0.05834961, 0.035095215, 0.02760315, -0.025466919, 0.060455322, 0.021972656, -0.022949219, 0.027160645, 0.050689697, 0.01751709, -0.0068588257, 0.08428955, -0.010253906, -0.01209259, 0.010940552, -0.046936035, 0.014320374, -0.019805908, -0.0013017654, -0.0042800903, -0.041809082, -0.008796692, 0.016937256, 0.04296875, 0.039886475, 0.005947113, -0.030136108, 0.016525269, 0.004043579, -0.033050537, -0.022872925, 0.01737976, -0.026382446, 0.03050232, 0.0022506714, -0.002325058, 0.00868988, -0.0211792, -0.007293701, -0.010520935, 0.015533447, 0.014015198, 0.0043678284, 0.012535095, -0.0046081543, 0.02078247, -0.017196655, -0.0044517517, -0.001452446, 0.021759033, 0.0008382797, 0.00044441223, 0.020553589, -0.0010690689, -0.001045227, -0.0098724365, -0.03579712, -0.04168701, -0.007797241, 0.031036377, 0.0074920654, -0.008743286, 0.0006246567, -0.04043579, -0.029769897, -0.0040779114, -0.06628418, -0.02368164, -0.018539429, 0.0052337646, -0.05529785, -0.010154724, 0.001958847, -0.034301758, -0.038238525, 0.0073280334, -0.018981934, -0.014045715, -0.02381897, 0.05239868, -0.06311035, -0.015205383, 0.019973755, -0.014350891, 0.10583496, 0.0680542, 0.002073288, -0.03503418, 0.006149292, -0.006679535, 0.09753418, 0.038513184, 0.023025513, -0.025039673, -0.0036449432, -0.0030155182, 0.03387451, 0.056121826, -0.012214661, 0.041870117, 0.00019812584, 0.023223877, -0.07714844, 0.0066337585, 0.048919678, -0.08917236, -0.05331421, -0.013153076, 0.081970215, 0.01953125, -0.039489746, -0.018798828, 0.06036377, 0.014198303, 0.029968262, -0.022537231, 0.029571533, 0.029174805, -0.041015625, -0.013374329, -0.006198883, -0.0231781, 0.038330078, -0.0018854141, -0.06225586, -0.010810852, -0.00062179565, 0.039031982, -0.006931305, 0.005832672, -0.037597656, -0.004459381, -0.01146698, 0.0029296875, -0.047088623, 0.06933594, 0.0793457, 0.04147339, 0.017120361, 0.0069999695, -0.0030136108, -0.080322266, -0.015258789, -0.04458618, 0.017730713, -0.024658203, -0.02760315, -0.011604309, -0.04135132, -0.004245758, -0.01084137, -0.048065186, -0.011985779, 0.015686035, 0.029052734, -0.008010864, 0.012718201, 0.006072998, 0.010101318, 0.001739502, -0.006752014, -0.024551392, -0.029418945, -0.03225708, -0.013641357, -0.011131287, -0.012557983, 0.002653122, -0.0046081543, 0.014213562, -0.009407043, 0.0069274902, 0.0074157715, 0.03756714, -0.027557373, -0.0028877258, -0.013404846, 0.00042414665, -0.01914978, 0.025482178, -0.041290283, 0.0519104, 0.052124023, -0.05267334, -0.013771057, 0.030014038, -0.054870605, 0.062438965, -0.0064735413, -0.029891968, 0.041534424, 0.020324707, -0.007411957, -0.011177063, 0.07312012, -0.013969421, 0.0025482178, -0.030441284, 0.010612488, -0.003376007, 0.044891357, -0.014724731, -0.033935547, -0.017242432, -0.030670166, 0.035736084, 0.015319824, 0.024810791, -0.009414673, 0.021255493, 0.012672424, 0.023406982, -0.033569336, 0.01763916, -0.035125732, 0.0047302246, -0.05429077, 0.03149414, 0.022262573, -0.006275177, 0.008575439, -0.030197144, -0.013343811, -0.013053894, -0.012306213, -0.0049324036, -0.0060424805, 0.008232117, -0.008811951, 0.0052223206, -0.007701874, 0.009994507, -0.033050537, -0.007785797, -0.010528564, -0.010360718, -0.028427124, 0.05947876, -0.004650116, 0.002204895, -0.019104004, -0.018463135, 0.006454468, -0.01651001, -0.037902832, 0.025650024, 0.0012598038, 0.011108398, -0.037750244, 0.0048942566, 0.06536865, -0.05697632, -0.029251099, -0.07043457, 0.02949524, -0.02067566, -0.008491516, 0.043762207, 0.040222168, 0.0013008118, 0.04156494, 0.007331848, -0.029953003, 0.03152466, 0.0154800415, -0.05923462, 0.015029907, -0.008811951, 0.011734009, -0.0058059692, -0.0069465637, -0.021942139, 0.0541687, 0.0042533875, -0.025741577, -0.047210693, -0.023986816, 0.013008118, -0.06213379, 0.016998291, -0.021011353, -0.0034923553, 0.012237549, -0.027999878, -0.056152344, 0.013641357, 0.0015134811, 0.031829834, 0.036224365, -0.02420044, 0.014633179, 0.038360596, -0.035949707, 0.056427002, -0.05126953, -0.0032978058, 0.008338928, 0.04647827, 0.020462036, 0.058410645, 0.011634827, -0.022766113, -0.018920898, 0.018585205, 0.029678345, 0.004776001, -0.029342651, -0.017349243, 0.035949707, 0.030792236, 0.010940552, 0.046539307, 0.032165527, 0.0054244995, 0.008140564, 0.004295349, -0.002960205, -0.030258179, -0.031311035, -0.042907715, 0.0079193115, 0.0287323, 0.024261475, 0.018112183, -0.0026168823, 0.028839111, -0.0047950745, 0.0013475418, 0.011741638, -0.02128601, 0.036590576, -0.0010738373, 0.02015686, 0.028335571, 0.0064811707, 0.01525116, -0.026809692, -0.008628845, -0.011360168, 0.008758545, -0.009376526, 0.048797607, -0.0028820038, 0.033569336, -0.0021266937, -0.045806885, 0.03765869, 0.03930664, 0.014060974, 0.040893555, -0.08959961, -0.044830322, -0.011314392, 0.025222778, -0.039794922, 0.075805664, -0.01146698, 0.00522995, -0.003932953, -0.016098022, 0.010932922, -0.038970947, 0.03756714, 0.01953125, 0.011413574, -0.006362915, -0.032043457, 0.0010547638, 0.031463623, -0.049865723, -0.03173828, 0.013717651, 0.02154541, 0.0024852753, 0.033203125, -0.015083313, 5.0902367e-05, 0.059295654, 0.022232056, 0.0032215118, 0.022766113, 0.0149002075, 0.015487671, 0.038208008, -0.022994995, 0.03314209, -0.021820068, 0.08111572, 0.041809082, 0.02746582, -0.031463623, -0.021865845, -0.01625061, 0.00070238113, 0.0015478134, 0.04260254, -0.004447937, 0.039154053, -0.025177002, 0.041931152, 0.022888184, -0.03866577, 0.024917603, 0.026763916, -0.031311035, 0.015090942, 0.0046653748, -0.0015068054, -0.00021207333, -0.0062332153, -0.01360321, 0.009681702, -0.024002075, 0.036346436, 0.00274086, -0.012420654, -0.022583008, -0.002521515, 0.011451721, -0.015022278, 0.025177002, -0.042297363, 0.0096206665, -0.024368286, -0.020004272, -0.034057617, -0.023345947, -0.035583496, 0.042297363, -0.018371582, -0.0072402954, 0.017623901, -0.008255005, -0.008888245, -0.047912598, -0.016311646, 0.0046310425, 0.009918213, -0.012580872, 0.046722412, -0.018844604, -0.0423584, -0.050872803, 0.022491455, -0.043701172, -0.020095825, -0.018356323, 0.016082764, 0.02255249, 0.009292603, 0.060638428, 0.036712646, 0.025375366, 0.00021147728, -0.0038814545, -0.006084442, -0.03881836, 0.055633545, 0.004940033, 0.002840042, 0.012893677, 0.03781128, -0.023330688, 0.052886963, 0.022094727, -0.028686523, -0.0124053955, -0.04043579, -0.043914795, -0.0046920776, 0.010948181, 0.024032593, -0.01234436, 0.023513794, -0.028686523, -0.03186035, -0.02230835, -0.015930176, 0.024032593, -0.0018291473, 0.038879395, -0.022827148, -0.082458496, -0.02128601, -0.03161621, 0.029174805, 0.02670288, 0.006362915, 0.010185242, 0.01701355, -0.023757935, 0.015419006, -0.008270264, -0.014633179, -0.010948181, 0.019546509, -0.00566864, -0.031280518, 0.0067749023, -0.0008893013, 0.005710602, -0.07879639, 0.06402588, 0.05496216, -0.044525146, -0.03488159, -0.008392334, -0.015075684, 0.0082092285, -0.07299805, -0.05392456, -0.0690918, 0.009902954, 0.041259766, -0.04901123, 0.019714355, -0.026550293, -0.008087158, 0.0006990433, 0.0178833, -0.0064964294, 0.019973755, 0.008300781, 0.0025081635, -0.00894928, 0.032714844, -0.020507812, -0.048431396, -0.040130615, 0.03225708, 0.015136719, -0.0028514862, 0.05911255, -0.0104599, 0.021560669, -0.03466797, 0.059661865, -0.055999756, 0.046447754, -0.011772156, 0.00058078766, 0.052612305]}, "B078964VVX": {"id": "B078964VVX", "original": "Brand: Westinghouse Outdoor Power Equipment\nName: Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant\nDescription: \nFeatures: 7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob\nIntuitive Control Panel Features Two GFCI 5\u201320R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety\nPlug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User\u2019s Manual To Get You Started Right Out of the Box (Minimal Assembly Required)\nPowered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter\n", "metadata": {"Name": "Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant", "Brand": "Westinghouse Outdoor Power Equipment", "Description": "", "Features": "7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob\nIntuitive Control Panel Features Two GFCI 5\u201320R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety\nPlug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User\u2019s Manual To Get You Started Right Out of the Box (Minimal Assembly Required)\nPowered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.00944519, 0.0024471283, -0.03250122, -0.022018433, 0.009735107, -0.018707275, 0.012619019, -0.0013685226, -0.049194336, -0.0020713806, -0.014228821, 0.03878784, -0.0067596436, -0.026107788, 0.06530762, -0.032684326, 0.011955261, 0.032592773, 0.026428223, -0.008842468, 0.012962341, 0.004673004, -0.03503418, 0.095703125, 0.012298584, -0.02255249, 0.034942627, -0.049743652, 0.025390625, -0.026992798, 0.032104492, 0.000582695, 0.023223877, -0.013885498, 0.001203537, -0.0713501, -0.020965576, -0.002380371, -0.043762207, 0.0098724365, -0.0028038025, -0.0027122498, 0.0010328293, -0.0026683807, -0.030059814, -0.028717041, 0.03744507, 0.008956909, -0.010475159, 0.03768921, -0.009361267, 0.017669678, -0.009086609, 0.0007715225, 0.017318726, -0.012374878, -0.035827637, -0.0010251999, 0.02420044, 0.0020160675, 0.00818634, -0.015319824, 0.015655518, 0.0026569366, -0.050842285, 0.013130188, 0.03567505, -0.010871887, 0.07312012, -0.022903442, -0.032592773, 0.048858643, 0.017837524, 0.014656067, 0.015380859, -0.016204834, 0.013664246, 0.034118652, 0.024215698, 0.03540039, 0.014549255, -0.005367279, -0.017562866, 0.020370483, -0.0135269165, 0.0067863464, -0.0042533875, -0.003484726, -0.049835205, -0.0068130493, -0.014831543, -0.048217773, -0.037139893, -0.005970001, 0.0035972595, -0.024627686, -0.064941406, -0.09057617, 0.05908203, 0.01852417, 0.049560547, -0.04751587, 0.054504395, 0.011894226, -0.03274536, 0.001991272, 0.0154800415, 0.045532227, -0.0016241074, 0.029144287, -0.029586792, -0.022033691, 0.035369873, 0.006706238, -0.042999268, 0.0024089813, 0.022659302, -0.0019664764, 0.0012626648, 0.03692627, 0.026016235, 0.02458191, 0.033721924, 0.028289795, 0.017166138, 0.05441284, -0.024230957, -0.05987549, -0.021438599, 0.025466919, -0.047607422, 0.029464722, 0.05319214, -0.0019454956, -0.02053833, -0.037597656, -0.0054016113, 0.013153076, -0.01424408, -0.0055885315, 0.00566864, -0.01159668, 0.009346008, -0.0011377335, -0.026031494, -0.017608643, 0.030944824, 0.048675537, -0.0038967133, -0.05117798, 0.019073486, 0.028839111, 0.0129852295, 0.014801025, 0.020706177, -0.06365967, 0.016845703, -0.050445557, 0.068481445, -0.035095215, -0.0087509155, -0.010955811, 0.016296387, -0.003074646, -0.021881104, 0.010063171, -0.017410278, -0.0030403137, 0.023925781, -0.009902954, -0.011512756, 0.055267334, 0.0017194748, 0.03756714, 0.029144287, 0.0022239685, -0.027038574, 0.046020508, 0.05444336, -0.06286621, -0.055389404, -0.0519104, 0.09112549, -0.024642944, 0.003835678, -0.040771484, 0.03125, -0.03869629, -0.00021159649, -0.004463196, 0.04840088, 0.034576416, -0.021011353, -0.0042381287, -0.0211792, 0.008560181, -0.04147339, 0.02432251, -0.029403687, 0.019378662, 0.011207581, -0.016799927, 0.007457733, 0.0012321472, -0.021881104, -0.01586914, -0.009002686, 0.013687134, 0.011054993, -0.031463623, -0.0018844604, -0.04421997, 0.025756836, -0.053466797, -0.038482666, 0.035614014, -0.022003174, 0.04849243, 0.016555786, 0.034851074, 0.032073975, -0.0065193176, 0.048614502, -0.015655518, 0.038604736, -0.0023670197, 0.00096321106, -0.009689331, 0.059448242, 0.012527466, 0.02166748, 0.010856628, 0.029571533, 0.05307007, -0.030960083, 0.010108948, 0.037078857, 0.06713867, -0.01713562, -0.008270264, 0.013648987, -0.08306885, -0.046051025, -0.013267517, -0.070617676, -0.038604736, 0.026977539, -0.019561768, -0.00026750565, -0.0031738281, 0.011894226, -0.03765869, 0.041931152, -0.027709961, -0.0035076141, 0.0209198, -0.010261536, -0.014137268, 0.021255493, 0.010070801, 0.0036621094, 0.028549194, -0.0017175674, 0.007873535, 0.016296387, 0.013671875, 0.04095459, 0.035095215, -0.042510986, -0.0043678284, 0.030090332, 0.06591797, 0.009841919, -0.0041542053, 0.039123535, -0.00868988, -0.025421143, -0.0051078796, 0.0385437, -8.237362e-05, 0.0079956055, 0.0027675629, -0.021087646, 0.0076179504, 0.03555298, 0.010032654, 0.011642456, 0.022384644, -0.048461914, -0.030090332, 0.018310547, -0.01826477, -0.032104492, 0.0071372986, -0.019073486, -0.029968262, 0.0050811768, -0.024261475, 0.029129028, -0.05606079, 0.0054512024, 0.03353882, -0.04812622, 0.021118164, -0.0053634644, -0.016662598, 0.0035552979, 0.0018424988, -0.019500732, -0.023254395, -0.049957275, -0.0006790161, 0.028869629, -0.005947113, 0.048675537, 0.03189087, 0.0084991455, 0.026901245, 0.036071777, -0.007293701, -0.03555298, -0.004463196, -0.0074653625, -0.0066833496, 0.012054443, -0.0003950596, -0.015472412, 0.001162529, -0.030288696, -0.021820068, -0.035461426, -0.059173584, -0.025787354, 0.04071045, -0.0031738281, 0.008216858, 0.009017944, -0.010604858, -0.0027046204, -0.040527344, 0.03125, 0.005973816, 0.023406982, 0.050445557, -0.049987793, 0.0023231506, 0.0023422241, 0.005794525, -0.014503479, -0.011291504, 0.03326416, 0.0059776306, 0.015296936, -0.017318726, 0.038513184, -0.08300781, -0.044403076, -0.037353516, -0.034606934, -0.0803833, -0.010803223, -0.024429321, -0.06463623, -0.03967285, 0.059539795, -0.008239746, -0.03338623, -0.037475586, -0.021743774, -0.02331543, -0.009155273, 0.00025129318, -0.019165039, -0.014205933, -0.012489319, 0.012145996, -0.017181396, -0.05291748, 0.04989624, -0.00023496151, -0.007411957, 0.0007972717, 0.014221191, 0.009742737, -0.02330017, 0.04949951, 0.037322998, 0.04083252, 0.011405945, -0.026367188, 0.037353516, 0.07489014, -0.004383087, -0.015159607, 0.046691895, 0.01878357, -0.05529785, -0.0002837181, -0.06781006, 0.0015573502, -0.041290283, 0.020050049, 0.0049438477, -0.008232117, -0.0065231323, -0.054656982, -0.0025787354, -0.047821045, 0.010635376, 0.03010559, -0.027389526, 0.040985107, -0.022781372, 0.005607605, -0.00881958, 0.004585266, 0.04284668, -0.0045394897, -0.02772522, -0.00024461746, 0.058013916, -0.0519104, 0.0317688, 0.024459839, -0.015945435, 0.017486572, 0.01802063, 0.017807007, 0.014671326, 0.055541992, 0.018539429, 0.00655365, -0.015159607, -0.024673462, -0.014892578, -0.024978638, -0.021377563, -0.060455322, 0.0038261414, -0.030075073, -0.02708435, 0.0032615662, -0.0012197495, 0.009254456, 0.007534027, -0.015380859, -0.0032539368, -0.022872925, 0.016555786, -0.019943237, 0.032226562, 0.00044894218, 0.068481445, 0.013969421, -0.018814087, 0.033233643, -0.0007891655, 0.02281189, 0.019729614, -0.03186035, -0.03427124, -0.016586304, 0.00068569183, -0.021820068, 0.005695343, -0.060913086, 0.0736084, 0.0010442734, 0.030471802, -0.007030487, -0.027023315, 0.029174805, -0.025848389, -0.012680054, 0.0095825195, -0.035308838, -0.012001038, 0.008682251, 0.044799805, 0.011795044, -0.04421997, -0.007896423, -0.09851074, 0.06652832, 0.06317139, -0.020843506, 0.07989502, 0.07183838, -0.02720642, 0.064941406, 0.011657715, 0.030792236, -0.028808594, 0.09753418, -0.050811768, 0.02760315, 0.0064582825, 0.0028591156, -0.03137207, -0.023391724, -0.06137085, -0.009513855, 0.02267456, 0.016021729, -0.06652832, 0.041534424, 0.0020942688, -0.000269413, 0.015106201, -0.14318848, -0.018585205, -0.04562378, -0.020339966, 0.0019989014, -0.028152466, 0.03012085, -0.057434082, -0.028167725, -0.036132812, 0.025482178, -0.0007247925, -0.0030555725, -0.0023880005, 0.018692017, 0.021896362, -0.029205322, -0.00011771917, -0.0045547485, -0.040283203, 0.008232117, 0.0211792, 0.018554688, 0.002861023, -0.012939453, 0.01486969, -0.0038528442, -0.0021381378, 0.008926392, 0.02859497, -0.00932312, 0.01927185, 0.028747559, -0.008003235, -0.018615723, -0.017410278, 0.01675415, -0.007637024, 0.03543091, -0.04034424, -0.0015277863, 0.008995056, 0.018203735, -0.06689453, -0.05480957, 0.0036582947, 0.013710022, 0.028411865, -0.0057640076, -0.04486084, -0.010169983, 0.018218994, -0.017288208, -0.026489258, 0.020599365, -0.00207901, -0.0072250366, 0.007820129, -0.02166748, -0.025497437, -0.03488159, -0.0038833618, -0.013893127, 0.041992188, 0.0051460266, 0.0018777847, -0.01727295, -0.035736084, 0.002319336, -0.01737976, 0.021728516, 0.0030574799, 0.019760132, -0.030349731, -0.0026454926, -0.026443481, 0.005710602, 0.031036377, -0.04019165, -0.007987976, -0.0074310303, 0.038085938, -0.015853882, 0.036315918, -0.0029239655, -0.004501343, -0.01360321, -0.033996582, -0.10595703, -0.07128906, -0.014961243, -0.0069732666, -0.034179688, -0.028015137, -0.024353027, 0.0657959, -0.021865845, 0.05227661, -0.081848145, -0.049468994, -0.02861023, 0.030670166, 0.041412354, 0.0024967194, -0.026489258, -0.015060425, 0.014556885, -0.035827637, 0.039489746, 0.078125, -0.026306152, 0.05178833, 0.02418518, 0.00063323975, 0.05368042, -0.007255554, 0.028259277, 0.013191223, 0.03491211, -0.024047852, 0.0019235611, 0.006385803, -0.018463135, -0.012817383, -0.051483154, -0.0075263977, 0.012702942, 0.008224487, -0.024932861, -0.020477295, 0.0121536255, 0.00756073, -0.027999878, -0.044647217, 0.006416321, 0.024429321, -0.0031719208, 0.010665894, 0.03842163, -0.011497498, 0.018615723, -0.0054016113, 0.0058555603, -0.06689453, 0.04043579, 0.039520264, 0.025939941, 0.026992798, 0.03289795, -0.0048942566, -0.047424316, -0.043151855, -0.026443481, 0.0158844, -0.08081055, 0.04940796, -0.010681152, 0.038269043, 0.03253174, 0.007358551, -0.0022182465, -0.004058838, 0.010505676, 0.032196045, -0.02230835, -0.013450623, -0.018295288, 0.03390503, -0.00440979, 0.0014915466, -0.04763794, 0.021957397, 0.03793335, -0.0017433167, 0.025421143, -0.018081665, 0.057373047, 0.013633728, -0.03253174, 0.009277344, -0.0062065125, 0.0025539398, 0.018447876, 7.8976154e-05, 0.0048332214, 0.009269714, 0.0028743744, -0.012008667, 0.040405273, -0.008140564, -0.024993896, 0.017852783, 0.039398193, -0.019851685, 0.021713257, 0.0026760101, -0.00472641, -0.011634827, -0.024505615, 0.035461426, 0.031341553, -0.0035247803, -0.028015137, -0.014816284, -0.0049972534, -0.03237915, -0.038879395, -0.017578125, -0.040008545, -0.03869629, 0.06970215, 0.004055023, -0.03945923, 0.039154053, -0.013755798, 0.006980896, -0.006210327, 0.022201538, 0.016113281, 0.0032978058, -0.013298035, -0.010787964, -0.030975342, 0.0057296753, -0.02293396, -0.02104187, -0.005683899, 0.030212402, -0.007217407, -0.02116394, 0.059539795, 0.049224854, -0.010536194, 0.024093628, -0.0052986145, -0.025741577, 0.022140503, 0.019943237, -0.0413208, -0.06561279, -0.025817871, -0.015220642, -0.022323608, -0.011123657, -0.03692627, 0.03439331, -0.006668091, 0.06329346, -0.032836914, -0.017578125, -0.023880005, -0.05657959, 0.00058078766, 0.04815674, 0.011459351, 0.022918701, 0.026779175, 0.0073165894, 0.07366943, -0.009277344, 0.019577026, 0.035125732, 0.011680603, -0.0048332214, 0.026504517, -0.044525146, 0.012290955, -0.0036506653, -0.028762817, -0.016586304, 0.040283203, 0.010108948, 0.028427124, -0.068481445, -0.020385742, -0.016693115, 0.009346008, -0.011520386, 0.043640137, -0.05203247, -0.011604309, -0.007949829, 0.032073975, 0.010406494, 0.026504517, 0.035095215, -0.02166748, -0.047576904, 0.007041931, 0.027175903, -0.034301758, 0.006641388, -0.015930176, -0.031463623, 0.016036987, -0.030181885, 0.0076560974, -0.0036678314, 0.022140503, 0.014808655, 0.0029697418, 0.021560669, -0.027420044, 0.0093688965, -0.0011968613, 0.05407715, 0.04071045, -0.061523438, -0.008514404, -0.013900757, -0.034973145, 0.019699097, 0.028076172, -0.02746582, 0.044677734, 0.006996155, -0.03286743, 0.0362854, 0.007575989, -0.017807007, -0.028717041, 0.02027893, -0.048553467, -0.04547119, -0.007904053, -0.013046265, -0.0067863464, 0.0023117065, 0.06732178, 0.004310608, 0.022598267, -0.04309082, -0.016815186, -0.027923584, -0.028549194, -0.014122009, -0.012374878, -0.03289795, 0.012939453, 0.013404846, 0.03933716, 0.009994507, -0.014671326, 0.027816772, -0.056427002, 0.014816284, 0.011779785, 0.056030273, -0.008918762, -0.03765869, 0.008354187, 0.033721924, 0.0018568039, 0.034820557, -0.021438599, -0.022079468, -0.0074882507, -0.01739502, 0.022399902, 0.02067566, 0.0013694763, 0.015144348, 0.014572144, -0.041046143, -0.013206482, -0.013038635, -0.008773804, 0.011367798, 0.03475952, 0.008338928, -0.041809082, -0.026489258, -0.025268555, 0.029678345, -0.0028686523, 0.0152282715, -0.064941406, 0.014038086, 0.039001465, 0.007621765, 0.0005750656, 0.013519287, 0.008255005, -0.0035152435, 0.04006958, 0.0015268326, 0.08026123, -0.021377563, 0.016052246, -0.019332886, 0.028793335, -0.019729614, -0.016418457, -0.043518066, -0.014190674, -0.035095215, -0.039764404, -0.091308594, -0.004333496, -0.015548706, -0.07733154, 0.050689697, -0.0076408386, 0.0009121895, 0.021072388, -0.020385742, -0.012413025, -0.014968872, 0.008331299, 0.011398315, 0.02482605, -0.0060157776, 0.05331421, -0.0143585205, -0.029724121, -0.07324219, -0.006690979, -0.06329346, 0.005870819, 0.014457703, -0.0064926147, 0.0011138916, 0.017074585, 0.05621338, 0.014701843, 0.043914795, 0.000344038, 0.0022830963, -0.024490356, -0.033813477, 0.043029785, 0.028198242, -0.060791016, -0.022140503, 0.013168335, -0.017700195, 0.026535034, -0.009391785, -0.026733398, -0.0713501, -0.005088806, 0.013648987, 0.0055274963, -0.008590698, -0.0154800415, 0.015899658, -0.011703491, -0.066711426, 0.004673004, 0.0019416809, 0.051635742, 0.006954193, -0.038970947, 0.054016113, -0.024169922, -0.023986816, -0.04840088, -0.031463623, 0.0051727295, -0.0043945312, -0.077819824, -0.035858154, 0.055236816, -0.0061035156, 0.014511108, 0.07080078, 0.0541687, -0.0206604, 0.05505371, -0.03643799, -0.032318115, 0.009689331, -0.025909424, 0.008491516, -0.06341553, 0.017974854, -0.043426514, 8.201599e-05, -0.01751709, -0.03463745, 0.011894226, -0.037628174, -0.002521515, -0.0059394836, 0.029785156, -0.019744873, -0.004360199, 0.02470398, -0.037384033, -0.0026569366, 0.013542175, 0.0010728836, 0.007575989, 0.0049934387, 0.0010814667, -0.022415161, 0.03414917, -0.01953125, 0.047302246, -0.050323486, -0.09039307, -0.06573486, 0.016204834, 0.013206482, 0.011856079, 0.06341553, -0.005809784, 0.012809753, 0.031921387, -0.019241333, -0.011016846, -0.019180298, -0.020629883, 0.009231567, -0.012878418]}, "B07Y8CCDBP": {"id": "B07Y8CCDBP", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door\nDescription:

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

      Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

      Specification:

      • Forge Type: Double Burner Forge With One Side Door
      • Burner: Double Burner
      • Burner Nozzle Material: SS-304
      • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
      • Forge Internal Dimension: 5.4\" (H) x 5.4\" (W) x 18\"(L)
      • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
      • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

      Connection Kit:

      • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
      • 5 ft. (2 Meter) gas hose pipe
      • 2 hose clamp

      Product user manual & assembly instruction provided with packing.

      \nFeatures: Double Burner Single Door Propane Forge Furnace with 2600 degree capacity\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nlined by 1\" thick high density ceramic fiber blanket\nReduce fuel consumption\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "metadata": {"Name": "Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door", "Brand": "Simond Store", "Description": "

      Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

      Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

      The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

      Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

      Specification:

      • Forge Type: Double Burner Forge With One Side Door
      • Burner: Double Burner
      • Burner Nozzle Material: SS-304
      • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
      • Forge Internal Dimension: 5.4\" (H) x 5.4\" (W) x 18\"(L)
      • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
      • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

      Connection Kit:

      • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
      • 5 ft. (2 Meter) gas hose pipe
      • 2 hose clamp

      Product user manual & assembly instruction provided with packing.

      ", "Features": "Double Burner Single Door Propane Forge Furnace with 2600 degree capacity\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nlined by 1\" thick high density ceramic fiber blanket\nReduce fuel consumption\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.009170532, -0.024551392, -0.048309326, -0.036346436, -0.028884888, -0.016998291, -0.0042762756, 0.027435303, -0.042999268, 0.004322052, 0.036010742, 0.033447266, 0.00041365623, -0.058532715, 0.044067383, -0.018417358, 0.019943237, 0.020843506, 0.0062828064, -0.01259613, 0.0016555786, 0.0003809929, -0.002855301, 0.04638672, 0.019424438, 0.017715454, 0.03112793, -0.021606445, 0.038391113, -0.0048713684, 0.021438599, -0.029815674, 0.059295654, -0.029708862, -0.028762817, -0.026046753, -0.011581421, -0.028076172, -0.051239014, 0.032043457, -0.006008148, 0.0065307617, 0.006313324, 0.0057754517, -0.008979797, -0.042633057, 0.019973755, -0.044067383, 0.023651123, 0.0138549805, -0.0017623901, -0.02420044, 0.011497498, -0.005290985, -0.023788452, -0.032196045, 0.0015640259, -0.03677368, -0.0044784546, 0.036376953, 0.022003174, 0.004486084, 0.013542175, -0.020965576, -0.029266357, 0.011161804, 0.05444336, -0.013076782, 0.0335083, -0.033294678, -0.030151367, 0.031036377, 0.025314331, -0.033813477, -0.027450562, 0.020996094, -0.004272461, -0.015167236, 0.037078857, -0.027297974, 0.0101623535, -0.0044174194, -0.0049095154, -0.02279663, 0.027679443, 0.005367279, -0.01071167, -0.0074043274, -0.021499634, -0.024154663, -0.0019302368, 0.006137848, -0.026565552, -0.0011453629, -0.02293396, -0.022750854, -0.025619507, -0.076660156, 0.04977417, 0.03933716, 0.038909912, -0.060791016, 0.083984375, -0.0060043335, -0.002193451, 0.068237305, 0.001080513, 0.049468994, 0.033966064, -0.0054092407, 0.031280518, -0.026519775, -0.027374268, -0.07092285, -0.02482605, 0.068481445, 0.01084137, -0.033599854, 0.02279663, -0.048614502, -0.019561768, 0.0028686523, 0.0016651154, 0.020126343, -0.025756836, -0.0020484924, 0.0078125, -0.017730713, -0.06060791, 0.02420044, -0.014892578, -0.0048103333, 0.046722412, 0.07269287, 0.009941101, -0.003944397, -0.0043945312, 0.025436401, 0.0056533813, -0.011421204, 0.003255844, 0.010520935, 0.05203247, -0.0066604614, -0.011062622, 0.043701172, 0.011444092, -0.033996582, 0.0039711, -0.019958496, -0.051513672, -0.046661377, 0.014007568, 0.021011353, -0.002286911, -0.008979797, 0.000106692314, -0.014129639, 0.019500732, -0.009414673, -0.015174866, -0.0082473755, -0.007133484, -0.022659302, -0.03515625, 0.011138916, -0.0050239563, 0.0032596588, 0.015686035, 0.04119873, 0.0016241074, 0.04711914, -0.003376007, 0.015312195, 0.01737976, -0.016998291, 0.018432617, 0.05883789, 0.031463623, -0.10601807, -0.088256836, -0.08093262, 0.08886719, -0.07293701, 0.009292603, -0.02418518, -0.0027942657, -0.027114868, 0.0043525696, 0.007980347, 0.018356323, 0.010520935, 0.018829346, -0.047607422, 0.0027999878, 0.0026187897, -0.01461792, 0.024871826, -0.013702393, 0.004306793, 0.0051879883, -0.012718201, -0.019378662, 0.0031108856, -0.015144348, -0.05117798, 0.002199173, -0.0021915436, 0.011489868, 0.019607544, -0.010345459, -0.019485474, 0.012336731, -0.017288208, -0.014404297, 0.00730896, 0.008346558, -0.000156641, 0.008201599, -0.008453369, 0.0023212433, 0.008422852, -0.021011353, -0.00018620491, 0.0209198, 0.031036377, -0.023666382, 0.011474609, -0.024612427, 0.027542114, -0.053344727, 0.020568848, 0.076293945, 0.061431885, -0.009117126, 0.032043457, 0.063964844, 0.013954163, -0.017730713, -0.018600464, 0.006248474, -0.04425049, -0.031097412, 0.021011353, -0.0056877136, 0.00894165, 0.0042152405, 0.010749817, -0.020584106, 0.009536743, 0.035583496, -0.0006828308, 0.026382446, 0.019226074, -0.02027893, 0.016494751, -0.012275696, -0.00680542, -0.018066406, 0.027145386, -0.016220093, 0.011917114, 0.030563354, -0.004306793, 0.034973145, -0.00061798096, 0.016418457, 0.02432251, -0.041900635, 0.021835327, 0.022354126, 0.002904892, 3.5226345e-05, -0.02998352, -0.00983429, 0.019012451, -0.030395508, 0.027175903, -0.0041656494, -0.01977539, -0.0009570122, 0.01687622, 0.03793335, -0.005142212, 0.0056037903, 0.02432251, 0.029251099, -0.009681702, 0.032684326, 0.028152466, 0.050598145, -0.016983032, -0.021560669, 0.04107666, 0.009147644, -0.036132812, 0.048339844, -0.045715332, 0.04232788, -0.032928467, 0.035217285, 0.040252686, -0.048187256, 0.035339355, -0.014572144, -0.0309906, -0.009719849, 0.013053894, 1.7881393e-06, -0.055023193, -0.0019931793, 0.009811401, 0.020736694, -0.000436306, 0.058746338, 0.013381958, 0.026824951, 0.046173096, 0.038909912, 0.042053223, -0.054473877, -0.038848877, 0.019699097, 0.0009946823, -0.0046310425, 0.0066566467, 0.003522873, 0.028961182, -0.0050315857, 0.024414062, 0.0062217712, 0.029281616, -0.017288208, 0.0126571655, -0.0025310516, 0.007534027, -0.0013303757, 0.028030396, -0.011924744, -0.045654297, -0.024520874, -0.030654907, -0.009399414, 0.013679504, -0.07873535, -0.033447266, 0.06781006, -0.024475098, -0.03942871, -0.009780884, 0.06567383, 0.0050582886, -4.61936e-05, -0.039855957, 0.018066406, 0.01966858, -0.036102295, -0.01637268, 0.024246216, -0.053100586, -0.002943039, -0.053619385, -0.0541687, -0.00881958, 0.04159546, 0.002603531, -0.036712646, -0.012374878, -0.019821167, 0.0026416779, 0.060760498, -0.01309967, -0.022003174, -0.04348755, -0.055480957, -0.045806885, 0.07116699, -0.0065956116, -0.0158844, 0.017410278, 0.023864746, 0.02810669, -0.060150146, -0.0026340485, 0.022842407, 0.0050849915, 0.03289795, 0.029373169, 0.029266357, -0.013542175, -0.011116028, -0.009002686, -0.05709839, -0.04623413, 0.006038666, 0.019866943, -0.020446777, -0.009185791, 0.003932953, -0.029220581, -0.0637207, 0.032836914, -0.008460999, -0.0022792816, 0.0072135925, -0.08288574, 0.0065345764, -0.06323242, 0.022323608, 0.038024902, 0.0062294006, 0.015571594, -0.012313843, 0.02810669, -0.0031795502, 0.0019950867, 0.047698975, -0.0014600754, -0.028533936, -0.0021095276, 0.08294678, -0.097351074, 0.047332764, 0.029953003, -0.029541016, 0.0061798096, -0.031158447, 0.0010614395, 0.024902344, 0.041992188, -0.023880005, 0.008140564, -0.022842407, 0.02508545, 0.0051574707, 0.01953125, 0.024978638, -0.053710938, 0.0635376, -0.045135498, -0.07751465, -0.027191162, 0.022750854, 0.012367249, -0.009002686, 0.009887695, -0.005332947, -0.04449463, 0.0047187805, -0.04824829, -0.011291504, -0.001083374, 0.016342163, 0.025894165, -0.011428833, 0.083984375, 0.029190063, 0.03161621, -0.0010480881, 5.0723553e-05, 0.025970459, -0.0035247803, -0.055847168, 0.009117126, -0.010734558, -0.05392456, 0.03326416, -0.011184692, -0.014503479, 0.014038086, -0.049957275, 0.10192871, 0.00869751, 0.010192871, 0.000117242336, 0.027160645, 0.021469116, 0.00029945374, -0.029556274, -0.02255249, 0.009521484, -0.018508911, -0.042816162, 0.06817627, 0.04119873, -0.016983032, -0.005115509, 0.036315918, -0.0017557144, 0.028030396, 0.048706055, 0.0018453598, 0.026397705, 0.03527832, 0.001209259, -0.015007019, 0.0011520386, -0.023468018, 0.049591064, 0.029205322, -0.038909912, 0.007659912, -0.0041618347, -0.07006836, -0.019882202, -0.0051956177, -0.013580322, 0.009651184, 0.030136108, -0.006996155, -0.04284668, 0.0074882507, -0.018676758, 0.0107040405, -0.025512695, -0.013725281, 0.012229919, 0.0040245056, -0.024307251, -0.0065078735, -0.0026741028, 0.028915405, -0.019866943, 0.031036377, 0.025863647, -0.007583618, -0.033172607, 0.020019531, -0.040283203, 0.018218994, 0.029556274, 0.0048561096, 0.0025539398, -0.03201294, 0.017089844, 0.0033130646, -0.0035152435, 0.017929077, 0.041168213, -0.033416748, 0.0063667297, 0.0206604, -0.04812622, -0.0236969, -0.0012779236, -0.05847168, -0.043060303, -0.016815186, -0.06756592, 0.0069122314, -0.014724731, -0.0062026978, -0.024749756, -0.04421997, 0.00047326088, -0.014846802, 0.0052375793, -0.036376953, -0.0049362183, 0.027679443, -0.0021476746, 0.016784668, -0.06616211, 0.020828247, -0.08746338, -0.0032367706, 0.04043579, 0.024414062, 0.0072669983, -0.030059814, -0.036376953, -0.020385742, 0.022888184, -0.020339966, -0.0009880066, -0.024520874, -0.013290405, 0.0054092407, 0.02217102, 0.010673523, 0.032043457, -0.0030670166, -0.020965576, -0.030029297, -0.042175293, 0.03717041, 0.012794495, 0.018859863, -0.03338623, 0.021881104, 0.0317688, -0.007293701, 0.044036865, 0.005832672, 0.007499695, -0.015625, -0.024093628, -0.10559082, -0.05102539, -0.01008606, -0.05947876, 0.0085372925, -0.0015010834, -0.014213562, 0.096191406, 0.05822754, 0.0047073364, -0.012245178, 0.002040863, 0.0015392303, -0.03302002, 0.010192871, -0.016540527, 0.011856079, -0.030715942, -0.0069618225, -0.00095939636, 0.0070724487, -0.029663086, -0.02482605, -0.008117676, -0.0070343018, -0.007461548, -0.03933716, -0.02545166, -0.006755829, 0.013397217, -0.0023880005, -0.038238525, -0.0024261475, -0.0033988953, -0.0049438477, -0.009490967, 0.008674622, 0.027801514, -0.009147644, -0.006526947, -0.022216797, -0.027740479, -0.006549835, 0.013763428, 0.0016555786, 0.022766113, -0.0060691833, 0.015335083, -0.018493652, 0.0134887695, 0.03274536, 0.0025539398, 0.008575439, 0.0018949509, 0.0022201538, -0.0022735596, -0.006210327, 0.0104599, 0.025238037, -0.050445557, -0.009246826, 0.07208252, -0.028137207, -0.06628418, 0.051849365, 0.013221741, 0.012367249, -0.0029754639, 0.020523071, 0.046051025, 0.01260376, 0.0121154785, -0.02267456, -0.006767273, 0.027297974, 0.02482605, -0.012481689, 0.0058517456, -0.02861023, 0.029449463, -0.0057525635, 0.0045166016, -0.053619385, 0.028564453, 0.012680054, -0.028961182, 0.012649536, -0.01939392, 0.05493164, -0.021377563, -0.030197144, 0.012023926, 0.03463745, -0.014587402, 0.045654297, 0.015975952, 0.033233643, -0.045135498, 0.021728516, -0.02949524, 0.022720337, 0.030303955, -0.019332886, 0.037109375, 0.01777649, -0.078186035, -0.040374756, -0.047210693, 0.013832092, -0.037872314, 0.025344849, -0.027999878, 0.005935669, 0.0009937286, -0.008483887, 0.052947998, 0.031341553, -0.042266846, -0.04385376, -0.029800415, -0.008842468, -0.035583496, 0.07940674, -0.029968262, -0.037506104, -0.020187378, -0.0027618408, 0.009742737, -0.030471802, -0.0413208, -0.019470215, -0.0003604889, 0.014251709, -0.022567749, -0.035949707, 0.08721924, -0.044769287, -0.059326172, -0.018844604, 0.031921387, -0.012039185, -0.039855957, 0.051116943, 0.056732178, -0.0045204163, 0.033813477, -0.034088135, -0.06689453, -0.0026111603, -0.01600647, -0.08392334, -0.01626587, -0.054138184, 0.008865356, 0.008293152, -0.014328003, -0.042999268, 0.030548096, -0.043395996, -0.048950195, -0.018661499, -0.008331299, 0.007663727, -0.022109985, 0.017089844, 0.0059890747, -0.0056495667, -0.009811401, -0.016586304, -0.03652954, 0.008972168, -0.02508545, 0.019348145, 0.011917114, 0.00067806244, -0.010566711, -0.008605957, 0.008399963, 0.037200928, 0.009147644, -0.042236328, 0.0049934387, 0.032958984, -0.0007414818, 0.036102295, -0.016845703, 0.0055389404, -0.0069847107, -0.0025749207, -0.010917664, 0.016586304, -0.025222778, -0.018249512, 0.016677856, 0.032592773, 0.040771484, 0.007972717, 0.0413208, 0.0058403015, -0.034973145, 0.010482788, -0.016647339, -0.027557373, -0.016052246, -0.024856567, -0.09429932, -0.021362305, -0.05871582, 0.020462036, -0.07946777, 0.037353516, -0.056884766, 0.033416748, -0.005847931, -0.013923645, 0.03111267, -0.049560547, 0.021453857, -0.057495117, 0.026565552, -0.0012788773, 0.045135498, -0.014984131, -0.035247803, 0.010551453, -0.028640747, 0.048187256, 0.0013885498, 0.002910614, -0.032165527, -0.025512695, 0.04748535, -0.001452446, -0.015449524, 0.022994995, 0.01940918, 0.017471313, 0.052337646, -0.0049476624, 0.0014190674, -0.011489868, 0.0037670135, 0.0033473969, -0.004310608, -0.0020122528, -0.0028572083, -0.0061035156, -0.018218994, 0.0012578964, 0.010848999, -0.00024342537, 0.003921509, 0.014343262, 0.025497437, -0.018875122, 0.0030403137, -0.030319214, 0.014717102, 0.00843811, -0.013412476, -0.04663086, -0.081604004, -0.031402588, 0.039733887, -0.03353882, 0.018341064, -0.0010490417, 0.045013428, -0.029449463, 0.0023479462, 0.01625061, -0.059326172, 0.0011730194, 0.014045715, -0.013954163, -0.040283203, -0.06512451, -0.025650024, -0.026245117, 0.0051193237, -0.0104904175, -0.01713562, 0.045959473, 0.025253296, 0.02418518, 0.06549072, -0.015914917, 0.04034424, -0.013336182, 0.010467529, 0.042144775, -0.022384644, -0.025924683, -0.047546387, 0.008674622, 0.009094238, -0.0012235641, 0.018753052, 0.03439331, 0.0109939575, 0.013870239, -0.02432251, -0.024658203, -0.0054092407, -0.026046753, 0.061950684, -0.04385376, -0.0030097961, -0.037628174, -0.03894043, -0.01247406, -0.01537323, -0.06719971, 0.039794922, 0.001115799, -0.033935547, -0.011245728, 0.0026226044, -0.028289795, -0.019165039, -0.015327454, 0.031173706, 0.03149414, 0.008705139, 0.02746582, -0.002298355, -0.085876465, -0.04574585, 0.0491333, -0.06750488, -0.048309326, 0.030197144, 0.0073242188, 0.04650879, 0.006385803, 0.0012292862, 0.017745972, 0.027694702, -0.021957397, 0.011314392, -0.043914795, -0.0027809143, 0.03778076, 0.002243042, -0.025314331, -0.037841797, 0.020935059, 0.019317627, 0.008026123, 0.029525757, 0.030593872, -0.03173828, 0.030059814, -0.004447937, -0.02142334, -0.029830933, -0.009384155, 0.03845215, 0.024017334, -0.03756714, 0.036224365, 0.02684021, 0.059417725, 0.044036865, 0.0018911362, 0.027114868, -0.022354126, -0.057250977, -0.08300781, -0.023513794, 0.04611206, 0.058898926, -0.021987915, 0.026153564, 0.020751953, -0.03604126, 0.021530151, 0.006126404, 0.023330688, 0.0020751953, 0.020355225, -0.012878418, 0.016647339, -0.016845703, 0.015686035, -0.023498535, -0.008239746, 0.02696228, 0.006046295, -0.028564453, -0.037963867, -0.012046814, -0.005290985, -0.030883789, -0.03704834, 0.0104904175, -0.0043678284, -0.014343262, 0.019332886, 0.011108398, -0.024917603, -0.01373291, -0.024093628, -0.027893066, -0.002418518, 0.014930725, -0.02760315, -0.051757812, 0.03366089, -0.002199173, 0.097595215, -0.039855957, -0.13049316, -0.05810547, 0.007572174, 0.011566162, 0.0046920776, 0.070129395, -0.0073928833, 0.016021729, 0.041259766, -0.02418518, -0.00969696, -0.0008678436, 0.06970215, 0.011779785, -0.002822876]}, "B093FC5SB6": {"id": "B093FC5SB6", "original": "Brand: Aliyoham\nName: Pellet Smoker Tube, Aliyoham 12'' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)\nDescription:

      With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

      You need our pellet smoker tube for sure!

      We have everything you need in one package.

      -1xPellet smoker tube

      -1xCleaning Brush\u00a0

      -1xSilicone Brush

      -3xS Shape Hooks

      It is also a fantastic gift, we have beautiful box as you can see in picture.

      If you have any question, message us any time!

      \nFeatures: Aliyoham 12'' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food.\nPut your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill.\nA smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more.\nPremium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it\u2019s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around.\nOur product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.\n", "metadata": {"Name": "Pellet Smoker Tube, Aliyoham 12'' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)", "Brand": "Aliyoham", "Description": "

      With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

      You need our pellet smoker tube for sure!

      We have everything you need in one package.

      -1xPellet smoker tube

      -1xCleaning Brush\u00a0

      -1xSilicone Brush

      -3xS Shape Hooks

      It is also a fantastic gift, we have beautiful box as you can see in picture.

      If you have any question, message us any time!

      ", "Features": "Aliyoham 12'' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food.\nPut your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill.\nA smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more.\nPremium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it\u2019s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around.\nOur product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.03277588, 0.031555176, -0.00869751, -0.04638672, 0.026779175, -0.009803772, 0.013656616, -0.017944336, -0.011779785, 0.046295166, -0.0059318542, 0.028961182, -0.016189575, -0.011726379, -0.019439697, 0.00033307076, 0.004459381, -0.0107040405, -0.012786865, -0.03579712, -0.0053901672, -0.036102295, -0.00819397, 0.022842407, 0.012954712, -0.0052757263, 0.06210327, 0.031158447, 0.028564453, 0.018417358, 0.02128601, -0.05130005, 0.06506348, -0.0012149811, -0.052642822, 0.00067329407, -0.01826477, -0.00012338161, -0.0043296814, -0.012641907, 0.005695343, 0.0050201416, -0.05218506, 0.029418945, -0.034698486, -0.042144775, 0.0054893494, -0.022735596, -0.0018997192, -0.029968262, 0.028778076, -0.012779236, 0.043640137, 0.012489319, -0.028289795, -0.02268982, 0.033416748, -0.021362305, 0.021865845, 0.013252258, -0.039001465, 0.02104187, 0.01473999, -0.041412354, -0.020904541, 0.007911682, 0.06500244, -0.010787964, -0.025497437, -0.03604126, 0.03778076, -0.0009636879, 0.026168823, -0.039031982, -0.0129852295, 0.0062179565, -0.024047852, -0.016784668, 0.03591919, -0.03390503, -0.025299072, 0.006832123, 0.021057129, -0.03466797, -0.01939392, -0.044403076, -0.015182495, 0.013175964, 0.025375366, -0.0025024414, 0.009101868, -0.0017213821, -0.013755798, 0.049804688, 0.0062789917, -0.037384033, -0.035888672, -0.041625977, 0.028701782, 0.05441284, 0.02406311, -0.049926758, 0.08557129, -0.021484375, -0.0158844, 0.050994873, -0.013442993, -0.029586792, -0.008636475, 0.014877319, 0.0017662048, -0.06311035, -0.03970337, -0.03503418, -0.03869629, 0.044525146, -0.01725769, -0.029266357, -0.0060806274, -0.016464233, -0.014091492, -0.008422852, 0.008857727, 0.0017681122, 0.0440979, 0.03475952, -0.014503479, -0.0029659271, -0.068847656, 0.030410767, -0.046813965, 2.1338463e-05, 0.046905518, 0.053649902, 0.013130188, -0.033325195, 0.03353882, 0.04336548, 0.016815186, 0.024627686, -0.016998291, -0.030929565, 0.01675415, -0.003736496, -0.0107040405, 0.050201416, 0.02281189, -0.02104187, 0.011260986, -0.02470398, -0.033081055, -0.030914307, 0.02973938, 0.008056641, -0.040893555, 0.0006108284, -0.020050049, -0.02104187, -0.01600647, -0.027008057, 0.0050964355, -0.031341553, -0.025146484, -0.022018433, -0.026504517, 0.035308838, 0.009552002, 0.015464783, 0.01701355, 0.025436401, 0.015174866, -0.002248764, 0.04055786, -0.01651001, -0.00844574, -0.008125305, -0.014480591, 0.12384033, 0.044799805, -0.08770752, -0.04348755, -0.06964111, 0.1385498, -0.05947876, -0.03555298, -0.0075149536, 0.018585205, 0.0038051605, 0.008644104, -0.00055360794, 0.08288574, -0.018447876, -0.020401001, -0.00014460087, 0.019760132, 0.026062012, -0.043701172, 0.026824951, -0.0042533875, -0.05783081, -0.0012998581, -0.011184692, 0.0052833557, -0.0025081635, -0.007434845, -0.008552551, -0.021713257, 0.0289917, 0.019607544, 0.004837036, 0.01852417, -0.0006418228, 0.0046691895, -0.043823242, -0.05026245, -0.00233078, -0.015975952, 0.04284668, -0.011711121, 0.055480957, -0.010414124, -0.047790527, -0.0051460266, 0.010116577, 0.033996582, -0.022735596, -0.019439697, -0.017471313, 0.008361816, -0.0072784424, -0.031799316, 0.059661865, 0.054779053, 0.043182373, -0.009292603, 0.033477783, 0.06738281, 0.06994629, -0.03579712, -0.021972656, 0.025741577, -0.014015198, -0.0067596436, -0.004135132, 0.02166748, -0.023635864, 0.0010700226, -0.004386902, -0.038757324, -0.037200928, 0.038360596, 0.029800415, 0.03543091, 0.0007586479, 0.0011615753, 0.022491455, -0.0026950836, 0.05770874, -0.067871094, 0.02822876, -0.030807495, 0.013626099, 0.03137207, -0.01197052, 0.0068206787, 0.0019302368, 0.02116394, 0.024765015, -0.028259277, 0.0042037964, 0.02468872, 0.023254395, -0.0074882507, 0.028167725, 0.037506104, -0.05795288, 0.0066223145, -0.012550354, -0.024841309, -0.015625, 0.034484863, 0.029006958, 0.06866455, -0.0017728806, 0.025024414, -0.028045654, 0.02949524, 0.039764404, 0.00010937452, -0.031921387, 0.01864624, -0.01524353, -0.01789856, -0.010147095, 0.03942871, -0.042755127, 0.084228516, 0.049987793, -0.0066986084, 3.9041042e-05, -0.036010742, 0.02293396, -0.026306152, -0.0259552, -0.014846802, 0.021881104, -0.02468872, 0.03387451, 0.010154724, -0.054016113, 0.016708374, 0.033569336, 0.04345703, 0.03527832, 0.032287598, 0.0048599243, -0.0051078796, 0.07928467, 0.03488159, 0.0032787323, -0.06640625, -0.0069389343, -0.03704834, -0.018325806, -0.002614975, 0.04272461, -0.048309326, 0.007724762, -0.0013046265, 0.05444336, 0.060028076, 0.03555298, -0.003622055, -0.03930664, 0.008918762, 0.016540527, -0.0041236877, 0.006958008, 0.0008459091, -0.013710022, 0.0038547516, -0.032928467, -0.0015935898, -0.007446289, -0.032714844, -0.0045051575, 0.014846802, -0.0038280487, -0.012809753, -0.0034713745, 0.005645752, -0.031173706, 0.042175293, 0.026733398, 0.03277588, -0.02583313, -0.052978516, 0.004901886, -0.0345459, -0.0657959, -0.034851074, 0.014755249, -0.0546875, -0.04083252, 0.01512146, -0.002275467, 0.011238098, -0.013496399, 0.035369873, 0.01209259, -0.0119018555, 0.027450562, -0.030532837, 0.01449585, 0.048431396, -0.0013484955, 0.032592773, -0.026321411, -0.022018433, 0.0055236816, -0.011665344, -0.005355835, 0.019744873, -0.0006995201, 0.022979736, 0.019592285, 0.04208374, 0.028305054, 0.0047569275, -0.019546509, -0.015731812, 0.007221222, -0.054840088, -0.02861023, -0.042999268, -0.0021190643, 0.001502037, -0.03451538, -0.009994507, -0.025909424, -0.037200928, -0.0037250519, 0.0075531006, -0.055023193, -0.0012578964, -0.080322266, -0.054473877, -0.025604248, -0.0068092346, 0.02760315, -0.016296387, 0.01689148, -0.020523071, 0.0062332153, 0.028869629, -0.030456543, -0.020492554, 0.0030097961, -0.039154053, -0.004299164, 0.025726318, -0.0032482147, 0.002790451, 0.016326904, 0.006626129, -0.0016756058, -0.017105103, -0.015365601, 0.0039634705, -0.0059661865, -0.028533936, -0.02255249, -0.020523071, -0.035949707, -0.04043579, 0.0335083, 0.016021729, 0.023605347, 0.034088135, -0.0024051666, -0.056884766, -0.040008545, -0.06842041, 0.012428284, 0.004940033, -0.057006836, -0.0513916, -0.0758667, -0.0020313263, -0.018035889, 0.0011262894, 0.010002136, 0.009628296, 0.015022278, -0.00061941147, 0.053710938, 0.008613586, 0.04043579, 0.036346436, -0.008605957, -0.0024147034, -0.041259766, 0.042816162, 0.014137268, 0.0034275055, -0.03225708, 0.060699463, -0.009498596, -0.0102005005, 0.006061554, -0.022857666, 0.024246216, -0.008674622, -0.014091492, 0.021118164, -0.001821518, 0.014480591, 0.029190063, -0.037994385, -0.038024902, -0.014076233, -0.006000519, -0.08514404, 0.10583496, 0.05130005, -0.008926392, 0.04550171, 0.038208008, -0.022903442, -0.018005371, -0.026000977, -0.0029506683, -0.01725769, 0.023483276, -0.021331787, 0.00073575974, 0.013969421, -0.030303955, 0.06274414, 0.03955078, -0.057800293, 0.050933838, -0.026901245, -0.09265137, -8.678436e-05, 0.024139404, 0.035461426, 0.008705139, -0.021957397, -0.044403076, 0.05368042, -0.049926758, -0.030090332, -0.010154724, -0.028579712, -0.046325684, -0.00053453445, -0.014320374, -0.0524292, 0.016952515, 0.02923584, 0.0078086853, 0.02798462, 0.017929077, -0.01727295, -0.002960205, 0.0016584396, -0.010932922, 0.0020217896, 0.011543274, 0.01133728, -0.012863159, -0.002784729, -0.019241333, 0.030532837, -0.013587952, -0.009963989, -0.004798889, -0.0023403168, -0.0060272217, 0.016815186, 0.004085541, -0.034179688, 0.0047721863, 0.009246826, -0.064819336, -0.03756714, -0.033813477, -0.07733154, -0.014785767, -0.0073776245, -0.0067329407, -0.036315918, -0.026550293, -0.021911621, -0.047607422, -0.03768921, -0.0026226044, 0.014251709, 0.015563965, 0.00024604797, 0.051513672, -0.05645752, 0.0033359528, 0.00605011, 0.007575989, 0.042999268, 0.006385803, -0.06488037, 0.014633179, -0.03744507, 0.0023174286, -0.0042648315, -0.025466919, -0.040008545, -0.030258179, -0.016403198, 0.008918762, 0.0234375, 0.061920166, 0.004699707, 0.012878418, -0.05859375, -0.009223938, -0.061920166, -0.023742676, 0.032318115, -0.041992188, -0.052978516, -0.04067993, 0.06774902, 0.0006227493, 0.011642456, -0.012573242, -0.01852417, -0.005039215, -0.02748108, -0.018035889, 0.014984131, -0.0049476624, -0.047973633, 0.014259338, -0.017852783, -0.011405945, 0.04763794, 0.07489014, 0.017044067, -0.038116455, -0.01423645, -0.056884766, 0.012924194, 0.022384644, 0.03286743, 0.019897461, -0.014770508, -0.026031494, -0.042510986, 0.04385376, 0.058258057, -0.016159058, -0.0031776428, 0.0028858185, -0.026412964, -0.035369873, -0.009719849, 0.02798462, 0.029464722, 0.033416748, -0.008659363, 0.014305115, 0.015991211, -0.001958847, -0.01889038, -0.0234375, 0.010383606, -0.009170532, 0.01423645, -0.012710571, 0.04135132, 0.034729004, -0.00060367584, 0.02394104, -0.002105713, 0.0077667236, 0.033843994, 0.0051574707, 0.017715454, 0.00056028366, -0.03768921, -0.030578613, -0.05819702, -0.027862549, -0.046203613, -0.010879517, 0.027557373, -0.06555176, -0.033172607, 0.020431519, -0.006538391, 0.016937256, -0.026275635, 0.03704834, -0.038330078, 0.044403076, 0.007987976, -0.027267456, 0.013511658, 0.016616821, -0.015960693, 0.0027065277, -0.002948761, -0.05831909, 0.0126571655, 0.035186768, 0.01802063, -0.036895752, 0.025909424, -0.0004246235, -0.05734253, -0.00856781, 0.005531311, -0.0158844, 0.00522995, 0.03555298, -0.04071045, 0.036987305, -0.0054092407, -0.019683838, -0.0016126633, 0.0053520203, -0.03100586, -0.020446777, -0.0063056946, -0.03869629, -0.007926941, -0.032684326, -0.039886475, -0.011985779, -0.01789856, -0.0011739731, 0.0043907166, -0.0026817322, -0.023162842, -0.036834717, -0.011268616, 0.032836914, 0.009292603, -0.01171875, -0.036254883, -0.020492554, -0.004722595, 0.059631348, -0.001786232, -0.012176514, 0.011116028, -0.0052986145, -0.00041866302, -0.0026378632, -0.03201294, 0.008705139, -0.010414124, 0.04547119, 0.039367676, -0.038879395, 0.026901245, 0.002790451, -0.024032593, -0.001865387, -0.021133423, -0.0423584, -0.029769897, -0.025970459, 0.034729004, -0.04788208, -0.042510986, -0.08117676, 0.0008740425, 0.02947998, 9.769201e-05, 0.032196045, -0.017028809, -0.00356102, 0.015060425, 0.01260376, -0.016540527, 0.033203125, 0.012451172, -0.016189575, -0.0008940697, -0.020324707, 0.007270813, 0.023391724, -0.023361206, -0.04348755, 0.03213501, -0.017501831, -0.035308838, -0.062408447, -0.05126953, 0.016067505, -0.06530762, 0.019515991, 0.026748657, -0.0043907166, 0.03967285, 0.023330688, -0.04837036, 0.04321289, 0.029937744, 0.030639648, 0.019210815, -0.009750366, 0.0038757324, 0.0005059242, -0.04800415, 0.065979004, -0.01399231, 0.011260986, 0.01675415, 0.030792236, 0.008094788, 0.045806885, -0.054779053, -0.0135650635, 0.020904541, 0.018203735, -0.009590149, -0.018966675, -0.009819031, -0.058288574, -0.0030384064, 0.037506104, 0.003036499, 0.030670166, 0.020523071, 0.008842468, 0.0026416779, -0.012680054, -0.024154663, -0.031799316, 0.012207031, -0.0138549805, 0.006450653, 0.028656006, -0.009262085, -0.0012845993, 0.035980225, 0.03665161, -0.050323486, 0.040924072, -0.016860962, -0.0073242188, 0.03250122, -0.053527832, 0.020965576, -0.028640747, 0.05847168, 0.0077781677, 0.020599365, -0.01486969, -0.01309967, 0.030273438, 0.0023155212, 0.033050537, 0.0024929047, 0.01737976, 0.04751587, -0.053253174, -0.011383057, -0.0007996559, 0.024963379, -0.0060195923, -0.034210205, -0.02305603, 0.0049057007, 0.03201294, -0.009246826, 0.02243042, 0.012702942, 0.0066947937, 0.0030784607, -0.018447876, 0.0050315857, -0.0079193115, 0.0036754608, 0.008293152, 0.011260986, -0.0055007935, -0.032104492, -0.011833191, 0.030654907, -0.045562744, -0.013221741, -0.005180359, 0.011817932, -0.023025513, 0.07006836, -0.009292603, -0.019897461, 0.029190063, 0.03201294, -0.010261536, -0.007827759, -0.005302429, 0.035339355, 0.013679504, -0.010879517, 0.030700684, -0.024597168, 0.034484863, 0.0317688, 0.02015686, -0.046844482, -0.034332275, -0.029541016, -0.02507019, 0.009254456, 0.042175293, -0.037353516, 0.028152466, -0.014884949, -0.034332275, 0.020767212, -0.025054932, 0.008491516, -0.012481689, 0.02255249, -0.0023899078, -0.037109375, -0.01651001, -0.037750244, -0.01084137, 0.0016345978, -0.0076522827, -0.035095215, 0.0340271, 0.0043640137, 0.040039062, -0.03390503, 0.011016846, -0.02494812, -0.04345703, 0.056732178, 0.0043678284, 0.009788513, -0.02861023, -0.048980713, -0.07556152, -0.030136108, -0.07342529, 0.020431519, -0.04284668, -0.031555176, -0.015487671, 0.0026683807, 0.031082153, -0.061462402, -0.020385742, -0.008979797, 0.039154053, 0.022918701, 0.079833984, -0.00982666, -0.086242676, -0.06414795, 0.029846191, -0.03741455, 0.016159058, 0.008781433, -0.024475098, -0.01007843, -0.0262146, 0.015930176, 0.01159668, 0.031982422, -0.0184021, 0.0005812645, -0.0017442703, -0.036712646, 0.04751587, 0.017913818, -0.035125732, 0.01576233, 0.004711151, -0.028793335, 0.06561279, 0.03250122, -0.03729248, -0.0058403015, -0.050231934, -0.06500244, -0.026794434, -0.018630981, -0.008003235, 0.014831543, -0.0014152527, -0.02935791, 0.028579712, 0.027175903, 0.022842407, 0.01928711, 0.029342651, -0.018707275, -0.035217285, 0.021911621, -0.016021729, 0.0037345886, 0.03353882, 0.04663086, 0.021911621, -0.012619019, 0.0027999878, 0.0027675629, -0.022644043, -0.007019043, -0.0059547424, 0.012901306, 0.020507812, -0.014717102, 0.020690918, -0.007537842, 0.044647217, -0.010246277, 0.007446289, 0.05307007, 0.008331299, -0.034179688, -0.01777649, -0.029052734, -0.017669678, -0.014930725, -0.042144775, -0.0009422302, -0.06726074, 0.061523438, 0.029281616, 0.0345459, 0.009300232, 0.0395813, -0.04055786, -0.0012540817, -0.009231567, 0.0044822693, -0.027526855, -0.010925293, 0.032165527, -0.026794434, 0.07281494, -0.021377563, -0.11669922, -0.07904053, 0.032714844, 0.049865723, -0.017959595, 0.07873535, -0.010444641, 0.008972168, -0.029067993, 0.007965088, -0.037322998, 0.03161621, 0.019485474, 0.0063323975, 0.022613525]}, "B08TMVDJ6W": {"id": "B08TMVDJ6W", "original": "Brand: Atatod\nName: Atatod 14\" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14\" W x 21\" H x 23\" D inch)\nDescription:

      Introduction:

      14\"inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

      Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

      Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

      Size:

      14\" W x 21\" H x 23\" D ( Product Size )

      12\" W x 19\" H (Cut-out )

      Package :

      1 X Stainless Triple Drawer

      1 X English manual

      \nFeatures: Outdoor Kitchen Triple Drawer;Overall Size:14\"W x 21\"H x 23\"D inch,Cut-Out Size:12\"W x 19\"H inch\nFully Enclosed Drawer Box \u2013 protects against the Weather\nHigh Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look\nDrawer Sizes are all 12 Inch Width by 4.5\" Top, 6.5\" Middle & 8\" Bottom\nBlend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components\n", "metadata": {"Name": "Atatod 14\" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14\" W x 21\" H x 23\" D inch)", "Brand": "Atatod", "Description": "

      Introduction:

      14\"inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

      Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

      Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

      Size:

      14\" W x 21\" H x 23\" D ( Product Size )

      12\" W x 19\" H (Cut-out )

      Package :

      1 X Stainless Triple Drawer

      1 X English manual

      ", "Features": "Outdoor Kitchen Triple Drawer;Overall Size:14\"W x 21\"H x 23\"D inch,Cut-Out Size:12\"W x 19\"H inch\nFully Enclosed Drawer Box \u2013 protects against the Weather\nHigh Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look\nDrawer Sizes are all 12 Inch Width by 4.5\" Top, 6.5\" Middle & 8\" Bottom\nBlend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0066986084, 0.016403198, -0.040008545, -0.00819397, -0.0046691895, -0.0033664703, -0.009498596, -0.03338623, 0.020751953, 0.020050049, -0.057861328, 0.019195557, -0.026367188, 0.015701294, -0.06335449, -0.055541992, 0.03567505, -0.010681152, 0.035827637, 0.0067253113, -0.011314392, 0.019729614, 0.030700684, 0.0044021606, 0.052703857, -0.05126953, -0.0071868896, -0.0009217262, 0.03729248, 0.013587952, 0.034210205, -0.028167725, 0.06829834, -0.047851562, -0.0028629303, -0.00894928, -9.3996525e-05, -0.028121948, -0.022750854, -0.0027561188, 0.015960693, -0.012817383, 0.010299683, 0.015556335, -0.05001831, 0.033325195, -0.007095337, 0.006828308, -0.020874023, 0.01612854, 0.03567505, -0.03050232, 0.05065918, -0.022155762, -0.017944336, -0.0022029877, -0.01423645, -0.043304443, 0.044555664, -0.036468506, -0.020996094, -0.062164307, 0.06518555, 0.016693115, -0.016983032, 0.027679443, 0.05303955, -0.009178162, -0.028518677, -0.049346924, 0.0050315857, -0.01197052, 0.020004272, -0.012245178, -0.030349731, -0.018722534, -0.00056409836, 0.0049972534, 0.024902344, -0.013046265, -0.017456055, -0.010017395, -0.029449463, -0.036743164, -0.006038666, -0.030914307, -0.014015198, -0.0011978149, 0.01626587, -0.005382538, 0.009971619, -0.019134521, -0.044525146, 0.055389404, 0.031707764, -0.02558899, -0.081604004, -0.043395996, 0.0014047623, 0.040283203, -0.0052490234, -0.020935059, 0.049957275, -0.03643799, -0.0074920654, 0.048950195, 0.02494812, 0.030654907, -0.00045132637, -0.0012464523, -0.012939453, -0.03753662, -0.0019426346, 0.004673004, -0.04345703, 0.0065231323, -0.014053345, -0.038330078, -0.008903503, -0.046539307, -0.0206604, 0.008041382, -0.03756714, 0.006526947, 0.036224365, 0.019439697, 0.0056037903, 0.028137207, -0.0075912476, 0.005168915, -0.030944824, 0.016983032, 0.0048599243, -0.017822266, -0.037872314, -0.014671326, -0.002998352, -0.017074585, 0.004535675, -0.015930176, -0.0085372925, -0.0126571655, 0.027709961, -0.008705139, -0.04586792, 0.027389526, -0.0035419464, 0.0053100586, 0.00020611286, -0.042022705, -0.010437012, -0.02029419, 0.047729492, 0.0042686462, -0.050872803, 0.011497498, 0.030899048, -0.030578613, -0.06750488, -0.0519104, -0.038726807, 0.020004272, 0.052215576, -0.09289551, -0.07122803, -0.048339844, -0.04989624, -0.0052986145, -0.00033640862, 0.02809143, -0.017471313, -0.026428223, -0.07977295, -0.01335907, -0.0024967194, 0.005596161, 0.018707275, 0.01436615, 0.013893127, -0.06665039, -0.086364746, -0.0748291, 0.031097412, -0.044769287, 0.017456055, -0.017791748, -0.005558014, -0.027938843, 0.0055236816, -0.010192871, 0.00052165985, 0.0058898926, 0.008918762, -0.0032672882, 0.013549805, -0.0035095215, -0.038024902, 0.011726379, -0.0071411133, -0.018478394, -0.047027588, 0.007850647, -0.0051574707, 0.033050537, -0.0034503937, 0.013511658, 0.001704216, 0.02029419, 0.0104522705, 0.016586304, -0.0027198792, 0.0005354881, 0.0029830933, -0.057250977, -0.021606445, 0.013336182, -0.032409668, 0.039978027, -0.017974854, 0.061828613, -0.021148682, -0.0070610046, -0.019134521, -0.010498047, 0.046173096, 0.005428314, -0.024887085, -0.006942749, 0.028686523, 0.025009155, -0.07501221, 0.018737793, 0.005470276, 0.037872314, -0.020004272, 0.035858154, 0.029312134, 0.08416748, -0.017105103, -0.023269653, 0.00579834, -0.0061569214, -0.009407043, 0.055847168, -0.004837036, -0.027801514, 0.0042304993, 0.027786255, -0.012290955, -0.010437012, 0.03540039, -0.0043754578, 0.016220093, -0.006515503, 0.0058403015, 0.009490967, -0.068847656, -0.011528015, -0.031066895, 0.010627747, -0.0087509155, 0.0056114197, 0.06652832, -0.023651123, 0.023132324, -0.019485474, 0.031982422, 0.020095825, 0.0038700104, -0.00082683563, 0.0087890625, 0.00573349, -0.0007777214, 0.007068634, -0.005142212, -0.025421143, -0.011764526, 0.019729614, -0.012313843, -0.041625977, -0.01689148, -0.014663696, 0.019515991, -0.014251709, 0.035125732, 0.007949829, 0.014152527, -0.04437256, -0.06829834, -0.012069702, -0.0011091232, 0.06878662, -0.0047340393, -0.02357483, 0.010253906, 0.02897644, 0.03024292, 0.07232666, -0.0079956055, 0.0035305023, -0.0043792725, 0.01676941, -0.050598145, 0.003944397, -0.007587433, 0.029830933, 0.017059326, -0.008621216, -0.008674622, -0.045135498, 0.025299072, -0.0073127747, 0.03778076, -0.062469482, 0.072509766, 0.029388428, -0.018310547, 0.042419434, -3.4570694e-05, 0.024902344, -0.043426514, -0.017211914, 0.0029449463, -0.033172607, 0.008590698, 0.019348145, -0.03768921, 0.009719849, 0.020690918, 0.020767212, 0.0052986145, 0.026290894, -0.013870239, -0.0019426346, 0.002067566, 0.005088806, -0.014663696, -0.007358551, -0.020263672, 0.0028152466, -0.002811432, 0.004535675, 0.00548172, -0.02784729, 0.03366089, -0.010025024, 0.013671875, 0.012237549, -0.041229248, 0.025161743, -0.020141602, -0.048614502, 0.029006958, -0.046203613, 0.02960205, -0.044555664, -0.0670166, -0.038513184, 0.0003118515, -0.07293701, -0.019760132, -0.007926941, -0.04248047, -0.019363403, 0.0154800415, -0.006866455, -0.028900146, 0.018508911, -0.017532349, -0.0056533813, 0.0259552, -0.015777588, -0.030212402, -0.028060913, -0.021316528, -0.011650085, -0.0011873245, -0.043029785, 0.030471802, -0.008544922, -0.004508972, 0.013298035, 0.011192322, 0.03387451, -0.0020313263, 0.036468506, 0.0022468567, 0.04373169, -0.021118164, -0.03314209, -0.01965332, 0.06854248, -0.07495117, -0.018493652, 0.03616333, 0.028625488, -0.031204224, -0.027618408, -0.046203613, -0.03111267, -0.049987793, 0.018234253, 0.0042686462, -0.02619934, -0.00071811676, -0.030807495, -0.013198853, -0.027770996, -0.0008468628, 0.013046265, -0.012145996, 0.016540527, -0.019210815, 0.02218628, -0.005607605, -0.03488159, 0.033081055, 0.010169983, 0.011474609, -0.05581665, 0.001958847, -0.04171753, 0.0002629757, -0.009414673, -0.019714355, 0.008399963, 0.01939392, 0.03881836, -0.032409668, 0.015571594, 0.030548096, -0.044647217, -0.016235352, 0.0045661926, -0.061431885, -0.028503418, 0.01033783, -0.030136108, 0.07244873, -0.05114746, -0.035980225, -0.031280518, -0.054107666, -0.002981186, -0.012367249, -0.022903442, -0.027770996, -0.04940796, -0.012672424, -0.0055122375, -0.021408081, 0.022460938, 0.003036499, 0.016174316, -0.01322937, 0.017044067, -0.014717102, 0.031402588, 0.06768799, -0.05203247, -0.04901123, -0.04953003, 0.031982422, 0.012741089, -0.04333496, 0.0025691986, 0.017578125, 0.014038086, -0.010520935, -0.019546509, -0.045837402, 0.08343506, 0.00033545494, 0.013748169, -0.015403748, 0.024612427, 0.043823242, 0.021026611, -0.04071045, -0.028045654, -0.048217773, 0.0012598038, -0.06463623, 0.08746338, 0.019958496, -0.0013237, 0.060638428, 0.06439209, -0.017486572, 0.05090332, 0.012916565, 0.007637024, 0.02671814, 0.027542114, -0.01701355, 0.013587952, 0.008377075, -0.0049362183, 0.04638672, 0.02848816, -0.05029297, -0.0048332214, 0.040496826, -0.04208374, -0.027816772, 0.04940796, -0.010940552, -0.0022335052, -0.002796173, -0.074523926, -0.019760132, -0.04763794, -0.020751953, 0.037963867, -0.044799805, -0.038330078, 0.04046631, 0.0064735413, -0.0077209473, 0.013076782, -0.025619507, -0.008552551, -0.026290894, 0.019012451, 0.064575195, 0.013824463, -0.053741455, 0.056152344, -0.02041626, 0.016952515, 0.025039673, 0.021438599, 0.022125244, -0.015731812, 0.00032830238, -0.02406311, -0.014259338, 0.020065308, -0.046844482, -0.07672119, -0.021057129, 0.0146484375, 0.006252289, -0.04107666, 0.00655365, -0.038146973, -0.049224854, -0.019363403, 0.0031337738, 0.0031356812, -0.0385437, -0.04135132, -0.12451172, -0.0019493103, 0.014297485, 0.0027828217, -0.08282471, 0.04675293, -0.040924072, -0.04916382, -0.02456665, 0.01574707, -0.028427124, 0.018112183, -0.013420105, -0.0008511543, 0.06854248, 0.018798828, 0.025161743, -0.042175293, 0.0034923553, 0.0033950806, 0.09289551, -0.011940002, 0.03314209, -0.03765869, -0.025924683, -0.0076408386, 0.02041626, 0.060333252, -0.015548706, 0.043823242, -0.013519287, -0.01727295, -0.025619507, -0.040222168, 0.059417725, -0.050476074, 0.011306763, -0.01737976, 0.04724121, -0.01600647, -0.00017762184, -0.018814087, 0.019012451, 0.018615723, -0.018508911, -0.039154053, 0.018493652, 0.013671875, -0.025970459, 0.00869751, -0.00283432, -0.018539429, 0.050994873, 0.03262329, 0.0004541874, -0.024749756, -0.0501709, -0.00598526, 0.01638794, 0.018692017, 0.007045746, -0.025863647, -0.02230835, 0.055633545, -0.06011963, 0.039794922, 0.105895996, 0.018051147, 0.035888672, 0.007068634, -0.01940918, 0.013008118, -0.040893555, 0.025939941, -0.010185242, -0.026916504, -0.041809082, 0.03237915, -0.0013856888, 0.012199402, 0.016998291, -0.0087509155, 0.025726318, -0.010498047, 0.002855301, -0.026855469, -0.019699097, 0.039794922, -0.0035037994, 0.018341064, 0.0031776428, -0.035980225, 0.07299805, -0.0146102905, -0.0072898865, 0.04574585, -0.0028915405, 0.044799805, 0.010192871, -0.015731812, -0.009216309, -0.057403564, -0.00045728683, -0.011878967, -0.028213501, 0.0234375, -0.011634827, -0.02394104, -0.0031280518, 0.033294678, 0.010246277, 0.01864624, 0.045135498, -0.0065460205, -0.021987915, 0.03286743, -0.0446167, 0.05596924, 0.005607605, -0.03552246, -0.0030498505, 0.014434814, 0.044158936, -0.0047416687, -0.016281128, 0.018920898, -0.03265381, -0.009994507, 0.015312195, 0.028182983, -0.007396698, -0.042175293, 0.0042686462, 0.056427002, 0.054992676, -0.0317688, 0.025650024, 0.05267334, -0.06213379, -0.035858154, 0.042114258, -0.0124435425, -0.027191162, 0.047332764, -0.016189575, -0.038726807, -0.053894043, 0.005683899, 0.04034424, -0.008651733, 0.0065078735, -0.043121338, -0.0038604736, 0.03375244, -0.0005235672, -0.032806396, -0.016571045, 0.005054474, -0.020492554, 0.01171875, -0.04626465, -0.010467529, -0.01852417, -0.03265381, -0.038146973, 0.0345459, 0.03225708, 0.0018501282, 0.0073776245, -0.0028648376, 0.03756714, 0.013572693, 0.053466797, -0.030151367, -0.005153656, 0.004802704, -0.0012645721, 0.0019760132, -0.020645142, -0.0016212463, 0.02267456, -0.034362793, -0.020019531, -0.06317139, 0.043548584, -0.013053894, 0.0009403229, 0.041229248, 0.05154419, 0.0009531975, 0.033294678, -0.0063323975, -0.036193848, 0.03778076, 0.010665894, -0.051116943, 0.001964569, -0.024139404, 0.0045394897, 0.008529663, -0.027618408, -0.025894165, 0.052856445, 0.0045814514, -0.034973145, -0.055145264, -0.024902344, 0.011154175, -0.021240234, 0.02508545, -0.0067710876, -0.024017334, 0.025024414, 0.025817871, -0.02255249, 0.021530151, 0.025299072, 0.053863525, 0.022842407, -0.018417358, 0.0015354156, 0.008132935, -0.03756714, 0.07598877, -0.014549255, -0.023544312, 0.01360321, 0.01689148, 0.02078247, 0.031585693, -0.00093603134, 0.0050086975, 0.010795593, -0.0051612854, 0.012168884, -0.027755737, -0.03933716, -0.048217773, 0.042633057, 0.03881836, 0.008140564, 0.014625549, 0.0385437, 0.011917114, -0.02168274, -0.006919861, -0.014877319, -0.03149414, -0.050933838, -0.016998291, 0.016448975, 0.056640625, 0.02507019, 0.027877808, -0.006412506, 0.06677246, -0.03616333, -0.004310608, -0.0023269653, -0.026641846, 0.0124435425, -0.0340271, -0.016174316, -0.039886475, -0.022506714, -0.00024557114, -0.011184692, -0.041168213, 0.033233643, 0.042541504, -0.008003235, 0.0017557144, 0.06274414, 0.009788513, -0.004383087, -0.0067863464, 0.002691269, -0.022079468, 0.034942627, 0.011138916, -0.039093018, -0.028778076, 0.0018854141, 0.03189087, -0.019760132, 0.0395813, -0.01197052, 0.013175964, 0.033691406, -0.0022411346, -0.0043525696, -0.01576233, 0.018966675, -0.04574585, -0.006652832, 0.020446777, -0.009796143, -0.022033691, 0.05407715, -0.04849243, -0.031951904, 0.012489319, 0.024765015, -0.030166626, 0.037628174, -0.010307312, 0.0045928955, 0.06524658, 0.009567261, 0.0019798279, 0.0035362244, 0.033813477, -0.009765625, 0.015007019, -0.029190063, 0.011207581, -0.0040283203, 0.0066833496, 0.033081055, 0.027923584, 0.018630981, 0.029403687, -0.00061416626, 0.012039185, 0.031311035, -0.014625549, 0.051239014, 0.011581421, 0.020523071, 0.06695557, 0.06726074, -0.031677246, 0.061431885, 0.04864502, -0.012130737, 0.026733398, 0.037994385, 0.0047302246, -0.014205933, 0.016830444, -0.0013208389, 0.030059814, 0.02709961, 0.045776367, -0.024673462, 0.025283813, -0.0104522705, -0.007575989, -0.034179688, 0.009849548, 0.017471313, 0.00033521652, 0.028808594, -0.032684326, -0.081726074, -0.043121338, 0.0042419434, -0.03152466, 0.053375244, 0.022033691, -0.017456055, -0.009681702, -0.015991211, 0.0090408325, -0.039642334, -0.0034942627, -0.0027122498, 0.05154419, 0.021499634, 0.06011963, -0.031707764, -0.06695557, -0.047454834, 0.036621094, -0.09552002, -0.028137207, -0.012954712, 0.013595581, 0.0113220215, 0.00957489, 0.057403564, 0.05154419, 0.020736694, 0.0038223267, -0.014831543, -0.049835205, -0.051086426, 0.08862305, 0.0055618286, -0.019119263, 0.00063323975, 0.061431885, -0.0062942505, 0.048736572, 0.018005371, -0.030960083, -0.059020996, -0.028503418, -0.04901123, 0.027801514, -0.036590576, 0.011039734, 0.0132751465, 0.030929565, 0.0044288635, -0.031799316, 0.036224365, -0.044952393, 0.01083374, 0.012535095, 0.014030457, -0.0028915405, -0.011672974, 0.006713867, -0.017913818, -0.026016235, 0.022705078, -0.04675293, 0.034942627, -0.0012292862, -0.03451538, 0.023513794, 0.008773804, -0.009269714, -0.021514893, -0.009475708, -0.010574341, -0.03604126, 0.031311035, 0.01826477, -0.00013124943, -0.017044067, 0.03778076, -0.00198555, -0.018920898, -0.02923584, -0.0068511963, -0.011871338, -0.027832031, -0.024963379, -0.024505615, -0.048034668, -0.017410278, 0.008728027, -0.011161804, 0.043121338, -0.015319824, -0.02609253, 0.017196655, 0.00079631805, -0.008575439, 0.005683899, 0.00064849854, 0.025299072, -0.017196655, 0.04916382, -0.020843506, -0.031951904, -0.044403076, 0.05999756, -0.00013911724, -0.014259338, 0.028823853, -0.0317688, 0.038208008, 0.014343262, 0.01776123, -0.0019378662, -0.009178162, 0.024536133, 0.01083374, 0.008987427]}, "B07J9HK1RB": {"id": "B07J9HK1RB", "original": "Brand: Think Gizmos\nName: Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+\nDescription: Fuel your child's imagination with one of the best interactive playset toys for toddlers you can buy\u2026. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child\u2019s concentration and fine hand skills. It's also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It's advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a \u2018ThinkGizmos\u2019 branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.\nFeatures: \ud83c\udf56 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ\u2019s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series.\n\ud83c\udf7d\ufe0f ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food.\n\ud83c\udf56 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food.\n\ud83c\udf7d\ufe0f LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6.\n\ud83c\udf56 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won\u2019t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.\n", "metadata": {"Name": "Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+", "Brand": "Think Gizmos", "Description": "Fuel your child's imagination with one of the best interactive playset toys for toddlers you can buy\u2026. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child\u2019s concentration and fine hand skills. It's also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It's advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a \u2018ThinkGizmos\u2019 branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.", "Features": "\ud83c\udf56 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ\u2019s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series.\n\ud83c\udf7d\ufe0f ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food.\n\ud83c\udf56 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food.\n\ud83c\udf7d\ufe0f LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6.\n\ud83c\udf56 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won\u2019t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.03982544, -0.020629883, -0.021713257, 0.014450073, -0.022659302, 0.006832123, -0.0052452087, -0.0001449585, -0.08380127, 0.010292053, -0.012825012, 0.018661499, -0.04788208, -0.0057868958, 0.018600464, -0.065979004, 0.010269165, 0.02619934, 0.028335571, -0.020599365, 0.010498047, -0.02017212, -0.0126953125, 0.03274536, 0.039093018, -0.005958557, -0.022567749, 0.022781372, 0.020904541, 0.017196655, 0.014526367, -0.0368042, 0.048797607, -0.0113220215, -0.057281494, -0.06567383, -0.009864807, -0.031799316, -0.050445557, 0.014770508, -0.00223732, 0.025405884, -0.00021028519, 0.02168274, -0.03729248, -0.024734497, -0.027252197, -0.022140503, -0.004173279, -0.014587402, 0.018081665, 0.04727173, 0.03100586, 0.0028038025, -0.0058784485, 0.018234253, -0.010368347, -0.004825592, 0.034973145, -0.005821228, -0.016937256, -0.011604309, 0.021316528, -0.00868988, 0.007949829, -0.03414917, 0.013427734, 0.02381897, -0.042022705, 0.016311646, 0.059509277, -0.024307251, 0.010925293, -0.04751587, -0.018203735, 0.03024292, -0.029190063, -0.028457642, 0.020874023, -0.021133423, -0.02784729, 0.0015993118, 0.016311646, -0.035339355, -0.0036754608, -0.01991272, -0.0158844, -0.00630188, -0.003704071, -0.0074157715, -0.0038852692, -0.0045700073, -0.046966553, 0.04522705, 0.018676758, -0.01991272, -0.025390625, -0.026428223, 0.0052490234, -0.017044067, 0.027740479, -0.028182983, 0.0039405823, 0.0054130554, -0.018707275, 0.06793213, 0.010948181, 0.008590698, -0.0010614395, 0.01386261, 0.010147095, 0.008590698, 0.02130127, -0.032958984, -0.022735596, 0.012908936, 0.01448822, 0.016708374, 0.020111084, 0.009262085, -0.037597656, -0.035247803, 0.047790527, 0.022079468, 0.0647583, 0.0635376, -0.030151367, 0.024612427, -0.06274414, 0.06817627, -0.0014791489, -0.02217102, -0.004585266, 0.050201416, 0.0025253296, -0.036224365, 0.02281189, -0.02758789, 0.010887146, 0.0054626465, -0.010948181, 0.018875122, 0.05529785, -0.03173828, 0.019226074, 0.014442444, 0.038513184, 0.002626419, -0.015586853, -0.035888672, 0.019882202, 0.010437012, -0.0010652542, 0.018371582, -0.032104492, 0.00944519, -0.05807495, 0.0024490356, -0.008277893, 0.0059776306, 0.008522034, -0.0006599426, 0.008255005, 0.033111572, 0.017501831, 0.015655518, 0.0049209595, 0.003320694, 0.0050086975, 0.024169922, -0.022613525, 0.0060043335, -0.023132324, -0.030029297, -0.019012451, -0.0062828064, 0.006855011, 0.051483154, 0.043151855, -0.083740234, -0.072387695, -0.06536865, 0.11077881, -0.05819702, 0.04067993, -0.096069336, -0.027877808, -0.08642578, 0.034362793, 0.023590088, -0.07281494, -0.004650116, -0.088378906, 0.011894226, 0.008735657, 0.033813477, 0.0014810562, 0.012077332, 0.008834839, -0.04675293, -0.023529053, -0.019256592, 0.003419876, -0.0090789795, -0.028579712, -0.025817871, 0.0006637573, 0.022979736, 0.031677246, 0.04244995, -0.011329651, -0.0040893555, -0.025543213, 0.043823242, -0.010818481, -0.011146545, -0.07293701, 0.033355713, -0.0076522827, 0.03439331, 0.032684326, -0.06903076, 0.04925537, 0.02281189, 0.04638672, 0.0020484924, 0.0016069412, -0.010360718, 0.040924072, 0.037322998, -0.038330078, -0.011894226, 0.018630981, 0.02696228, -0.025680542, 0.029052734, 0.06561279, 0.040527344, -0.0049972534, 0.00062179565, 0.018981934, 0.003129959, -0.015556335, 0.01525116, 0.0881958, -0.043060303, -0.028686523, 0.024368286, 0.011230469, 0.021209717, 0.020126343, 0.0039711, 0.02305603, 0.00504303, 0.02279663, 0.020065308, -0.0501709, -0.01828003, -0.003364563, -0.012527466, 0.013504028, -0.06842041, -0.014801025, -0.040649414, 0.023376465, -0.047943115, 0.018585205, 0.013069153, 0.033203125, -0.035186768, -0.012901306, -0.048858643, -0.009216309, 0.00093603134, 0.01828003, -0.0051727295, -0.02355957, -0.0018167496, -0.0042152405, -0.021270752, 0.020111084, 0.022842407, 0.0037136078, -0.00027227402, 0.037841797, -0.017623901, 0.00055265427, 0.01612854, 0.0021953583, -0.00081539154, 0.03869629, -0.03475952, -0.011291504, -0.030654907, 0.018920898, -0.038330078, 0.05178833, -0.00023591518, 0.023147583, -0.03149414, 0.006591797, 0.030288696, -0.057037354, 0.02671814, -0.012321472, -0.009346008, -0.03111267, -0.011444092, -0.024597168, -0.042266846, 0.0040283203, 0.06896973, 0.045013428, -0.013137817, 0.10748291, 0.039855957, 0.047943115, 0.068481445, 0.05230713, -0.0017137527, -0.043640137, -0.003862381, -0.06695557, -0.009727478, -0.002565384, 0.057037354, -0.061706543, 0.0054359436, -0.024169922, 0.006099701, 0.04675293, 0.018432617, 0.021759033, -0.0026950836, 0.005970001, -0.03591919, -9.715557e-05, 0.00843811, -0.0011405945, -0.031585693, 0.00024485588, -0.0039520264, 0.0012617111, -0.02168274, -0.053497314, 0.0037899017, 0.04751587, 0.01966858, 0.033203125, -0.0005836487, -0.0022296906, -0.026672363, 0.017166138, 0.04309082, 0.01209259, 0.012573242, 0.0002194643, 0.046051025, -0.016418457, -0.01348114, -0.07067871, 0.017059326, -0.054382324, 0.014190674, 0.034698486, -0.020812988, 0.00020384789, 0.037353516, 0.010124207, 0.017333984, 0.006214142, 0.04296875, -0.040008545, -0.038116455, -0.037200928, -0.0075187683, 0.057434082, -0.026473999, -0.009536743, 0.01687622, -0.014205933, 0.030517578, -0.03277588, 0.027374268, 0.058898926, 0.0017528534, -0.002155304, 0.051574707, -0.011009216, 0.005252838, -0.03930664, 0.0025901794, -0.026306152, 0.0053100586, 0.021484375, 0.015571594, -0.019241333, -0.017562866, -0.07208252, -0.028198242, -0.043395996, 0.0037555695, -0.02659607, 0.011131287, -0.025512695, 0.0014867783, -0.010948181, -0.05960083, 0.011543274, 0.02142334, 0.008888245, -0.015327454, 0.00017416477, -0.015930176, -0.019500732, -0.007045746, 0.045043945, 0.010231018, -0.045898438, -0.029266357, 0.08795166, -0.085998535, 0.032989502, -0.014305115, -0.07086182, -0.009269714, 0.0062217712, 0.0637207, -0.024154663, 0.0118255615, -0.014457703, -0.023223877, -0.0059165955, -0.0031375885, -0.020446777, -0.013755798, -0.010765076, -0.06317139, 0.028762817, -0.028930664, -0.041503906, -0.023086548, -0.0137786865, 0.0016307831, 0.0024604797, -0.0184021, -0.036712646, -0.039031982, -0.030960083, -0.0491333, -0.034240723, 0.021270752, -0.01663208, 0.02734375, 0.006919861, 0.10632324, 0.03829956, 0.03765869, 0.073913574, -0.052337646, -0.047821045, -0.04144287, -0.012840271, 0.015037537, -0.010948181, -0.031707764, 0.12817383, -0.00087213516, 0.0061798096, 0.01852417, -0.010787964, -0.036621094, 0.0033798218, 0.020080566, -0.00059223175, 0.011711121, -0.0010318756, 0.033294678, -0.009605408, -0.02305603, -0.034576416, 0.011886597, -0.0574646, 0.06933594, 0.022064209, -0.012626648, 0.034088135, 0.036102295, -0.00919342, 0.042022705, 0.047729492, -0.011772156, 0.040039062, 0.012992859, -0.030334473, 0.00025486946, -0.003709793, -0.012939453, 0.035308838, 0.019561768, -0.041931152, 0.017318726, 5.8948994e-05, -0.043548584, -0.007320404, 0.011985779, 0.0340271, 0.021133423, -0.0044555664, -0.010063171, 0.02949524, -0.00907135, -0.008384705, 0.012626648, -0.026153564, 0.005680084, -0.017974854, -0.01158905, -0.031707764, -0.017532349, -0.021026611, -0.03050232, 0.026245117, 0.036193848, -0.011642456, 0.001584053, -0.015472412, -0.0054359436, 0.0040779114, -0.015083313, 0.015899658, -0.019058228, -0.011222839, 0.018417358, 0.008155823, 0.020141602, -0.02053833, -0.046020508, 0.033355713, 0.045440674, 0.020568848, -0.0064735413, -0.05343628, 0.06298828, 0.0146865845, -0.03930664, 0.0013551712, -0.012878418, -0.06530762, -0.026168823, -0.007965088, 0.002696991, -0.040802002, -0.017623901, 0.005554199, -0.026367188, -0.052642822, 0.016189575, -0.012580872, -0.034942627, -0.021347046, 0.0473938, -0.035491943, -0.015281677, -0.04977417, 0.015792847, -0.008529663, 0.012428284, -0.031158447, -0.008850098, -0.025405884, -0.020065308, -0.011383057, -0.010032654, -0.0074501038, -0.018692017, -0.045532227, 0.009536743, -0.007549286, 0.0793457, 0.034454346, 0.029159546, -0.07409668, 0.0051460266, -0.066101074, -0.006164551, 0.037200928, -0.018432617, -0.04949951, -0.03466797, 0.04019165, 0.010169983, -0.013267517, -0.011253357, 0.0029010773, 0.0019741058, 0.011711121, -0.026275635, -0.008911133, 0.0040664673, 0.00016319752, 0.00026893616, -0.0055351257, -0.00069856644, 0.025619507, -0.00041127205, 0.009735107, -0.005771637, -0.07305908, -0.11584473, 0.03338623, 0.06719971, -0.04107666, -0.005317688, -0.08508301, 0.024887085, -0.04257202, 0.08984375, 0.07879639, -0.03366089, 0.004840851, 0.033172607, -0.016677856, -0.023391724, 0.02267456, 0.0020160675, -0.0552063, 0.0030403137, -0.01335907, -0.015823364, -0.013793945, -0.012168884, -0.03933716, -0.043945312, -0.025665283, 0.017028809, 0.004486084, -0.03149414, 0.00472641, 0.040374756, 0.026382446, 0.020446777, 0.021270752, -0.0385437, 0.006752014, -0.020706177, -0.02029419, 0.007247925, -0.012458801, 0.044769287, -0.02519226, 0.018722534, -0.020370483, -0.022018433, 0.031951904, 0.010978699, -0.010276794, 0.021118164, -0.023223877, 0.010017395, -0.0031223297, 0.032073975, -0.009338379, -0.002861023, 0.00057029724, -0.04397583, -0.025939941, 0.037719727, -0.058776855, 0.03704834, 0.020324707, -0.0501709, -0.006263733, -0.013885498, 0.016540527, -0.006713867, -0.021484375, 0.012687683, -0.013511658, -0.012756348, -0.0043029785, -0.01007843, -0.01210022, 0.011459351, -0.018341064, 0.050842285, 0.017471313, -0.01436615, 0.0011548996, 0.051971436, -0.036346436, 0.003955841, 0.035888672, 0.005252838, -0.050842285, 0.012275696, 0.020401001, -0.0385437, -0.0032997131, -0.04550171, 0.05731201, -0.0035438538, -0.03869629, -0.018508911, -0.021408081, 0.03933716, -0.017730713, 0.017715454, -0.012794495, 0.007030487, 0.010345459, -0.012084961, -0.016586304, 0.0009741783, -0.013710022, -0.032348633, -0.016326904, 0.003358841, -0.015899658, 0.027648926, -0.02861023, 0.01725769, 0.011680603, -0.020431519, 0.010940552, 0.009239197, -0.048553467, -0.0034770966, 0.0061569214, 0.0051231384, -0.01197052, -0.02218628, 0.06652832, -0.039642334, -0.057159424, -0.020629883, 0.0357666, -0.013252258, 0.0058784485, 0.029266357, 0.017547607, -0.010017395, 0.02178955, 0.0154953, -0.024032593, -0.02558899, -0.0023384094, -0.062683105, 0.02684021, -0.0149383545, 0.059906006, 0.003118515, 0.026473999, 0.03930664, 0.06591797, 0.018829346, -0.015571594, -0.028137207, 0.018096924, -0.0072898865, -0.061767578, 0.008728027, -0.038482666, -0.01309967, -0.011131287, -0.05987549, -0.026138306, 0.040222168, 0.022003174, 0.046447754, 0.01701355, -0.02557373, 0.01979065, 0.04159546, -0.03765869, 0.09637451, 0.0055618286, -0.039642334, -0.0053634644, 0.029586792, 0.042541504, -0.02722168, -0.02418518, -0.00774765, -0.0066375732, -0.013221741, 0.034332275, -0.014854431, -0.014480591, -0.007888794, 0.041778564, 0.035980225, 0.003353119, -0.034576416, 0.024780273, 0.053466797, 0.006931305, -0.019592285, 0.022628784, -0.0061302185, 0.0067749023, -0.02848816, -0.012420654, -0.023361206, -0.029968262, 0.00982666, 0.022994995, -0.008995056, -0.03793335, 0.025848389, -0.0072898865, 0.020217896, 0.046875, -0.016342163, -0.026260376, -0.01675415, -0.020553589, -0.039031982, 0.0034179688, 0.023757935, 0.028289795, 0.039733887, 0.0063171387, 0.0030002594, 0.0002734661, 0.037261963, 0.0121536255, -0.05822754, 0.017929077, -0.022750854, 0.018356323, 0.013389587, -0.006298065, 0.0065574646, 0.0018463135, 0.045898438, 0.02243042, 0.055786133, -0.030853271, 0.026062012, -0.0110321045, -0.008407593, 0.008598328, -0.045074463, 0.018508911, 0.036712646, 0.015235901, -0.01386261, -0.028015137, -0.0067367554, 0.034240723, -0.052612305, -0.009933472, -0.010276794, 0.021530151, -0.022537231, 0.030136108, -0.023345947, -0.024841309, 0.014907837, -0.009056091, 0.017486572, 0.0056495667, 0.017486572, -0.008392334, 0.045440674, -0.044799805, 0.013755798, -0.00018537045, 0.036132812, 0.026367188, 0.060821533, -0.06137085, 0.025848389, -0.014160156, 0.0073547363, 0.020309448, 0.06726074, 0.019866943, -0.026489258, 0.022705078, 0.029647827, 0.021240234, -0.034973145, 0.0068969727, 0.072753906, -0.028945923, -0.039916992, 0.005264282, -0.023132324, -0.07489014, 0.006099701, -0.01007843, -0.0023269653, -0.021255493, 0.0597229, -0.00041770935, -0.007156372, 0.002506256, -0.033691406, 0.047698975, -0.03265381, -0.032562256, -0.04864502, -0.035247803, -0.011947632, -0.009414673, 0.01473999, -0.008285522, -0.046539307, 0.019836426, 0.021072388, 0.004257202, 0.020080566, -0.032104492, 0.03149414, -0.009307861, 0.029418945, 0.043884277, 0.015823364, 0.0015497208, 0.10003662, -0.05911255, -0.043548584, -0.07550049, -0.017684937, -0.044006348, 0.014526367, 0.019744873, 0.009819031, 0.040618896, -0.0066337585, -0.0076789856, 0.06112671, 0.014503479, -0.0065689087, 0.010986328, -0.036132812, -0.02998352, 0.04360962, -0.002319336, -0.0030574799, -0.009765625, 0.027435303, -0.028045654, 0.0574646, -0.010627747, -0.035095215, -0.04949951, -0.025222778, -0.04437256, 0.0038814545, 0.002855301, -0.006462097, 0.0128479, -0.00078201294, -0.037322998, -0.02507019, 0.02079773, 0.006828308, 0.02507019, 0.030227661, 0.0132369995, -0.005104065, 0.003490448, -0.04510498, 0.0051612854, 0.018661499, -0.018356323, -0.02420044, 0.008911133, -0.0335083, -0.009986877, -0.03845215, -0.006511688, -0.038269043, 0.017410278, 0.0047302246, 0.017547607, 0.001964569, -0.013969421, 0.0362854, -0.01399231, -0.012336731, 0.029342651, 0.024337769, -0.038635254, -0.032470703, -0.018661499, 0.0034008026, -0.0126953125, -0.03793335, -0.0234375, -0.044952393, -0.0041618347, 0.024780273, -0.006336212, -0.0057868958, -0.0012435913, -0.008384705, -0.01285553, -0.020248413, 0.014526367, -0.019180298, -0.01008606, -0.009315491, -0.00091695786, 0.049682617, -0.016143799, -0.0127334595, -0.030181885, 0.029663086, 0.023529053, -0.0054969788, 0.055786133, -0.04006958, 0.00074863434, 0.022857666, 0.0056762695, -0.008178711, 0.004802704, -0.04638672, 0.0038070679, 0.004863739]}, "B081JMSBPF": {"id": "B081JMSBPF", "original": "Brand: A AIFAMY\nName: Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange\nDescription: FANTASTIC GIFT IDEAS for Father\u2019s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron\nFeatures: TOP PRANK GIFT -- the most lifelike body like human\u2019s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day\nJUST REAL -- a big belly apron with bushy hair, that\u2019s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun\nADJUSTABLE -- One size fits most; Size: Length is 29.5\" including neck strap 37\" approx, Width 26.3\"; give you a snug and comfortable feeling when wearing it\nMaterial:100% Polyester; machine washable\nPREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items\n", "metadata": {"Name": "Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange", "Brand": "A AIFAMY", "Description": "FANTASTIC GIFT IDEAS for Father\u2019s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron", "Features": "TOP PRANK GIFT -- the most lifelike body like human\u2019s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day\nJUST REAL -- a big belly apron with bushy hair, that\u2019s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun\nADJUSTABLE -- One size fits most; Size: Length is 29.5\" including neck strap 37\" approx, Width 26.3\"; give you a snug and comfortable feeling when wearing it\nMaterial:100% Polyester; machine washable\nPREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.012870789, -0.0072898865, -0.044647217, -0.002412796, -0.016967773, -0.015007019, 0.0050239563, 0.010421753, -0.022399902, 0.0041503906, 0.03778076, -0.008148193, -0.01473999, -0.045410156, 0.014556885, -0.025543213, -0.0010585785, -0.016555786, -0.028518677, -0.020095825, -0.031677246, -0.021575928, -0.009048462, -0.043792725, 0.05368042, -0.017547607, 0.06286621, 0.018966675, 0.043121338, 0.026367188, 0.037872314, -0.07220459, 0.051818848, 0.008476257, -0.07757568, -0.06427002, -0.03390503, -0.0104599, -0.047943115, 0.0032730103, -0.0129470825, 0.027145386, -0.0015945435, 0.004966736, -0.028961182, 0.0027580261, -0.056793213, -0.0491333, 0.05026245, 0.00016462803, 0.012069702, -0.00071144104, 0.005760193, 0.010887146, -0.03161621, -0.013847351, -0.024337769, 0.040008545, 0.024749756, 0.015213013, -0.024261475, 0.004196167, 0.00737381, -0.028259277, -0.015823364, -0.041381836, 0.039855957, 0.012069702, -0.0020961761, -0.015335083, 0.045928955, 0.036468506, -2.4855137e-05, -0.027404785, 9.816885e-05, 0.015960693, -0.008903503, -0.009712219, 0.006000519, 0.015716553, -0.06542969, -0.005683899, -0.021270752, -0.06652832, 0.013168335, -0.024810791, -0.032989502, 0.013702393, 0.020950317, 0.015037537, -0.0006198883, -0.027664185, 0.006099701, 0.08520508, 0.024642944, -0.008674622, -0.016052246, -0.0012369156, -0.029388428, -0.03390503, 0.014419556, -0.013809204, -0.026321411, 0.013076782, 0.014305115, 0.058685303, 0.0011701584, 0.015197754, 0.035125732, -0.0069503784, 0.0013961792, 0.020629883, -0.0012845993, -0.012680054, -0.0064086914, -0.0061302185, -0.035736084, 0.032989502, 0.014923096, 0.016647339, -0.02293396, 0.01222229, 0.03579712, -0.004020691, 0.013221741, 0.031585693, 0.0065460205, -0.036102295, -0.012580872, -0.020141602, -0.023040771, -0.009757996, 0.035064697, 0.06707764, 0.045684814, -0.009277344, -0.013397217, -0.07550049, -0.04574585, 0.019546509, -0.036468506, -0.022277832, 0.0418396, -0.062927246, -0.00017094612, 0.0009803772, 0.046905518, 0.030639648, -0.032104492, -0.068481445, 0.03857422, 0.02168274, 0.0037078857, 0.021133423, -0.007419586, 0.012809753, -0.011169434, 0.0076446533, -0.01309967, 0.0026168823, -0.01763916, -0.026031494, 0.005508423, -0.031158447, -0.015686035, 0.03515625, -0.027435303, 0.0040359497, 0.0013771057, 0.0057029724, -0.035736084, -0.017532349, -0.0075645447, -0.01663208, -0.023254395, 0.02267456, 0.0050086975, 0.030334473, 0.045135498, -0.07086182, -0.044311523, -0.056518555, 0.08312988, -0.029647827, 0.001285553, -0.035369873, 0.003917694, -0.009590149, 0.02104187, 0.006828308, 0.0062942505, -0.01638794, -0.07470703, 0.0124053955, 0.02319336, 0.042816162, -0.022018433, 0.012718201, 0.00472641, -0.048034668, 0.04296875, 0.01701355, -0.008110046, -0.028152466, -0.025680542, -0.00289917, 0.005542755, 0.02166748, 0.05883789, 0.03753662, -0.010826111, -0.0032672882, 0.0021362305, -0.0038223267, -0.051361084, -0.035827637, 0.0069618225, 0.024887085, 0.002779007, 0.029785156, 0.032562256, -0.037841797, 0.026977539, 0.035491943, 0.037628174, -0.020721436, -0.0062713623, -0.02104187, 0.030303955, 0.00409317, -0.0284729, 0.018051147, 0.041992188, 0.059661865, -0.019683838, 0.023986816, 0.020080566, 0.033416748, -0.024414062, 0.009674072, 0.02142334, 0.016082764, -0.01374054, 0.034057617, 0.039489746, -0.037475586, -0.002374649, 0.028152466, -0.043273926, -0.029220581, 0.033325195, 0.022384644, 0.01979065, -0.020446777, -0.0056381226, 0.027648926, -0.06921387, -0.0045394897, -0.043182373, 0.033203125, -0.0073547363, -0.004501343, 0.048736572, -0.03060913, -0.015602112, -0.01361084, -0.024871826, -0.01713562, -0.030426025, 0.0039978027, 0.041900635, 0.009552002, 0.0073776245, 0.009353638, 0.00020563602, 0.008529663, -0.008544922, -0.018569946, 0.034942627, 0.0036830902, 0.0062217712, 0.0057640076, -0.008148193, -0.0007863045, 0.038024902, -0.0234375, -0.0016260147, 0.009140015, -0.033691406, -0.0024929047, 0.020935059, 0.0149383545, 0.0064582825, -0.020935059, 0.007335663, -0.0011110306, 0.0013780594, -0.006679535, 0.021347046, -0.016052246, -0.013763428, 0.059387207, -0.0052337646, 0.0011930466, -0.009361267, -0.037597656, -0.024108887, 0.0015668869, -0.0062828064, -0.064208984, 0.042755127, 0.088378906, 0.05441284, 0.038604736, 0.07183838, 0.010025024, 0.033172607, 0.0793457, 0.037231445, -0.045654297, 0.007549286, 0.007709503, 0.0009498596, -0.003353119, 0.026504517, -0.01234436, -0.009292603, -0.0069885254, 0.04248047, -0.010917664, 0.0071868896, 0.012199402, 0.0002644062, -0.010955811, -0.0039901733, -0.038238525, -0.002084732, -0.0077667236, -0.0049438477, -0.01600647, -0.009361267, 0.037597656, 0.009208679, -0.02658081, -0.049682617, 0.012229919, 0.034179688, -0.0039787292, -0.0058059692, 0.010482788, 0.012138367, -0.02381897, -0.0019159317, 0.0067367554, 0.007255554, 0.025115967, -0.00076007843, -0.007133484, 0.0132369995, -0.05984497, -0.0019893646, -0.012069702, -0.029571533, -0.011909485, 0.029785156, -0.021530151, -0.040527344, -0.0019989014, 0.0184021, -0.0013961792, 0.0184021, -0.0016155243, -0.06286621, -0.0019416809, 0.02218628, 0.004501343, 0.006298065, -0.04284668, -0.040161133, -0.013923645, -0.023101807, 0.038970947, -0.030044556, 0.064086914, 0.01953125, 0.020477295, 0.00042700768, 0.047668457, 0.00032758713, -0.022018433, -0.0003399849, 0.05392456, -0.0049057007, -0.0056114197, -0.011672974, 0.00013816357, -0.011108398, -0.039367676, -0.02670288, -0.017181396, -0.046417236, 0.02142334, -3.3438206e-05, -0.037384033, -0.026809692, -0.01928711, -0.039886475, -0.03817749, 0.012390137, 0.080078125, -0.023635864, 0.0043945312, -0.033172607, 0.0067825317, -0.023498535, 0.031982422, 0.049835205, 0.012672424, -0.030822754, -0.02003479, 0.05441284, -0.037994385, 0.032073975, -0.0051651, -0.024093628, 0.027313232, 0.010467529, 0.04208374, -0.054016113, -0.02029419, 0.0055503845, -0.052490234, -0.0095825195, 0.0012655258, -0.045166016, -0.0014505386, 0.0045814514, -0.021835327, 0.045959473, -0.031143188, 0.021774292, 0.009109497, -0.040863037, 0.020477295, -0.02760315, -0.024291992, -0.0105896, -0.024841309, -0.055236816, -0.038909912, -0.02897644, 0.04046631, -0.022506714, 0.016281128, 0.008407593, 0.016113281, 0.010940552, 0.050567627, -0.0050964355, -0.011131287, -0.010803223, -0.057495117, 0.08465576, 0.029067993, -0.004547119, -0.068115234, 0.11022949, -0.003419876, 0.03111267, -0.0017852783, -0.026763916, 0.04650879, 0.008583069, -0.0058898926, 0.015510559, -0.03213501, 0.0009098053, 0.045776367, -0.0423584, -0.04171753, -0.017501831, -0.003786087, 0.011581421, 0.055725098, 0.009155273, 0.013092041, 0.009979248, 0.043945312, -0.010665894, -0.043548584, -0.048034668, -0.056121826, -0.007575989, -0.038970947, -0.036346436, 0.022094727, 0.0065956116, -0.011726379, 0.028686523, 0.022277832, -0.08050537, 0.02154541, 0.03869629, -0.031585693, -0.03967285, 0.050933838, 0.028808594, 0.013168335, 0.018661499, -0.06842041, -0.008583069, -0.03289795, 0.000156641, -0.010482788, -0.017074585, -0.0018901825, -0.019378662, 0.029403687, -0.046966553, -0.025726318, 0.018997192, 0.009109497, 0.04196167, 0.035217285, -0.015548706, -0.028396606, 0.034088135, -0.043701172, -0.035827637, 0.0018148422, 0.040618896, 0.035461426, 0.03363037, -0.013145447, -0.004558563, -0.015144348, -0.03466797, 0.02583313, 0.0024299622, -0.025024414, -0.028640747, -0.03262329, -0.0030765533, 0.017623901, 0.011924744, -0.06573486, -0.020355225, -0.017074585, -0.03189087, -0.023147583, 0.0040893555, 0.014190674, -0.08416748, 0.011749268, 0.034088135, -0.03189087, -0.07147217, 0.026062012, -0.006919861, -0.045135498, 0.04611206, 0.01965332, -0.035125732, -0.023880005, 0.0053710938, -0.021514893, 0.051116943, -0.018493652, -0.007675171, -0.00504303, -0.033477783, -0.028747559, 0.040527344, 0.025924683, -0.014411926, -0.022766113, -0.043945312, -0.0044822693, 0.008972168, 0.052001953, -0.017456055, 0.04623413, -0.015853882, -0.021270752, -0.047088623, -0.005874634, 0.015556335, -0.065979004, -0.038238525, -0.012611389, 0.054260254, 0.008155823, -0.051086426, -0.042510986, 0.052886963, 0.052978516, -0.011146545, -0.011291504, 0.016052246, 0.033599854, -0.030319214, 0.03375244, -0.004398346, -0.006916046, 0.023117065, 0.083862305, 0.005470276, 0.018798828, -0.06161499, -0.051605225, 0.052215576, 0.030380249, -0.027832031, -0.007865906, -0.055114746, 0.039031982, -0.0848999, 0.10437012, 0.06347656, -0.016357422, 0.010498047, -0.008392334, -0.019180298, -0.037200928, 0.03463745, -0.03074646, -0.0096206665, -0.007621765, -0.01361084, -0.032928467, -0.037841797, -0.016571045, -0.008460999, -0.0048179626, 0.019104004, -0.014083862, 0.014556885, -0.010971069, 0.0034313202, 0.027511597, 0.042510986, -0.0005021095, -0.006690979, 8.34465e-07, 0.0023479462, 0.016586304, 0.031463623, 0.004459381, -0.023071289, -0.00043010712, 0.008056641, -0.015083313, -0.046875, -0.038116455, 0.024795532, -0.06726074, -0.034576416, 0.017974854, 0.010574341, 0.007801056, -0.055145264, 0.037078857, -0.032348633, 0.018569946, 0.010231018, -0.0024337769, -0.028747559, 0.012542725, -0.043670654, 0.029693604, -0.0057754517, -0.044952393, 0.05291748, -0.023361206, 0.009780884, -0.020858765, -0.016494751, -0.0047836304, -0.017410278, -0.033172607, 0.001414299, 0.0062675476, -0.028259277, 0.03994751, -0.022003174, 0.031982422, 0.011940002, 0.0008678436, 0.014099121, 0.1083374, -0.064941406, -0.01675415, 0.062561035, 0.026550293, -0.053955078, 0.034454346, -0.016525269, 0.0143966675, 0.0067710876, -0.028076172, 0.024459839, 0.008674622, -0.05206299, -0.03894043, -0.016098022, 0.04119873, 0.019897461, -0.024963379, -0.014373779, -0.0034008026, -0.017730713, 0.017654419, -0.053253174, -0.00995636, 0.04147339, -0.03488159, -0.047210693, -0.03945923, -0.046905518, 0.0209198, -0.03744507, -0.0029830933, -0.027618408, 0.01399231, 0.021652222, -0.0030326843, -0.09661865, -0.001329422, -0.016830444, -0.01902771, -0.046081543, 0.009101868, 0.018127441, -0.05239868, -0.019348145, -0.08721924, 0.06964111, -0.008842468, 0.054138184, 0.01953125, -0.0042648315, 0.0019798279, 0.035827637, 0.0074005127, 0.016906738, 0.014556885, 0.014411926, -0.0069999695, 0.0236969, 0.012641907, 0.039733887, -0.012245178, 0.008987427, -0.058654785, 0.041503906, -0.07763672, -0.084106445, -0.013290405, 0.027542114, 0.016098022, 0.0016927719, 0.018920898, -0.0019683838, 0.0099105835, -0.021255493, 0.0043525696, -0.026397705, -0.005832672, 0.025924683, 0.04647827, 0.03665161, -0.04852295, 0.016815186, 0.044158936, -0.033966064, 0.10998535, -0.006061554, -0.05419922, -0.0024414062, 0.04260254, 0.048919678, 0.025436401, -0.016494751, -0.023132324, 0.01878357, -0.061798096, 0.01914978, -0.017700195, 0.002090454, 0.043029785, 0.0143966675, 0.025650024, -0.027267456, 0.024414062, 0.024780273, 0.022262573, -0.014549255, -0.019256592, 0.0026817322, -0.042633057, 0.0008430481, -0.06713867, 0.028289795, -0.017623901, 0.003742218, 0.021392822, 0.01084137, -0.007865906, -0.0066604614, 0.043823242, 0.003540039, 0.03427124, 0.01524353, -0.0076522827, -0.02734375, 0.008453369, 0.006690979, -0.012039185, 0.00033259392, -0.0020046234, 0.012077332, 0.020568848, -0.016555786, 0.039245605, 0.008857727, 0.014060974, 0.007286072, -0.026107788, 0.018051147, 0.013504028, 0.01675415, 0.0046463013, -0.017166138, -0.02406311, -0.014198303, 0.052886963, 0.01448822, 0.021652222, -0.014320374, 0.03717041, -0.033294678, 0.026550293, -0.060668945, -0.04232788, 0.016113281, -0.028747559, -0.025146484, 0.01159668, -0.061462402, -0.029174805, 0.03488159, -0.024963379, -0.01864624, -0.006263733, 0.042907715, -0.028305054, 0.008201599, -0.019683838, -0.041107178, -0.011405945, 0.023223877, 0.0005669594, 0.009246826, -0.02053833, 0.0043411255, 0.0059165955, -0.008407593, 0.012962341, 0.0016670227, 0.01335144, 0.023406982, -0.013404846, -0.018173218, -0.018630981, -0.0073623657, 0.0036468506, 0.016464233, 0.018508911, 0.0056114197, 0.04498291, 0.023345947, 0.05340576, 0.06512451, -0.0017786026, 0.029830933, 0.005256653, -0.010406494, -0.02923584, 0.0024299622, 0.0006957054, -0.040039062, -0.0082473755, 0.0056533813, 0.0027923584, 0.017822266, 0.044708252, 0.023773193, -0.01675415, -0.0357666, -0.0020942688, -0.011489868, -0.01953125, 0.049316406, -0.045806885, 0.026657104, -0.0368042, -0.021194458, -0.028137207, -0.0256958, -0.034332275, 0.030929565, -0.005077362, -0.01878357, -0.020599365, -0.014862061, 0.04550171, -0.06817627, -0.023223877, -0.015449524, 0.05038452, -0.010055542, 0.048553467, -0.02810669, -0.057617188, -0.025421143, 0.04171753, -0.057281494, -0.034576416, 0.0043640137, 0.045440674, 0.06390381, 0.015182495, -0.015853882, 0.028549194, 0.001950264, -0.019958496, 0.03527832, -0.000854969, -0.033691406, -0.02130127, 0.005367279, -0.025817871, 0.047943115, 0.020004272, 0.02420044, 0.016708374, 0.036712646, -0.019546509, -0.031341553, 0.0031719208, 0.0026435852, 0.008644104, -0.038024902, -0.023529053, 0.02571106, 0.01197052, -0.018707275, -0.010955811, 0.035308838, -0.008834839, 0.047821045, 0.04586792, -0.014427185, -0.022903442, -0.019561768, -0.016738892, 0.0087509155, 0.029907227, 0.06451416, -0.0021533966, -0.016479492, -0.00084400177, -0.014411926, 0.008453369, -0.00032687187, -0.0058021545, -0.03567505, -0.024520874, -0.005039215, -0.062347412, 0.024291992, -0.015335083, -0.011184692, -0.012420654, 0.035217285, 0.060546875, -0.048065186, -0.0013027191, -0.007217407, -0.006679535, 0.037902832, -0.025421143, 0.0003681183, 0.00020730495, -0.017730713, 0.022903442, -0.0009384155, -0.001036644, -0.043304443, -0.01977539, -0.0046577454, 0.0028533936, -0.00058603287, 0.009796143, -0.04724121, 0.04547119, 0.020690918, 0.011856079, -0.055023193, -0.10809326, -0.07208252, 0.026824951, 0.022506714, 0.014343262, 0.063964844, 0.01878357, 0.038757324, 0.0129776, 0.056793213, 0.020248413, 0.026748657, 0.014816284, -0.0093688965, 0.020843506]}, "B07F7LR53H": {"id": "B07F7LR53H", "original": "Brand: Exquisite\nName: Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round\nDescription: Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

      Colors:\u00a0Red, Blue, Black, Teal

      Sizes:\u00a084 inch. Round, 54 Inch. x 108 Inch. Rectangle\u00a0

      What you get:\u00a012 individually wrapped disposable tablecloths

      Uses:\u00a0These premium quality table covers are great for Bbq's, picnics, camping, outdoors\u00a0 \u00a0 \u00a0 \u00a0 events, parties, and any other gingham themed event

      \nFeatures: PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!!\nSPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!!\nHIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event.\nDISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it.\nSELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.\n", "metadata": {"Name": "Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round", "Brand": "Exquisite", "Description": "Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

      Colors:\u00a0Red, Blue, Black, Teal

      Sizes:\u00a084 inch. Round, 54 Inch. x 108 Inch. Rectangle\u00a0

      What you get:\u00a012 individually wrapped disposable tablecloths

      Uses:\u00a0These premium quality table covers are great for Bbq's, picnics, camping, outdoors\u00a0 \u00a0 \u00a0 \u00a0 events, parties, and any other gingham themed event

      ", "Features": "PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!!\nSPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!!\nHIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event.\nDISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it.\nSELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.026535034, 0.04953003, -0.05645752, -0.110961914, 0.042663574, 0.002790451, -0.0713501, 0.0032482147, -0.033294678, 0.018249512, -0.051818848, 0.021209717, -0.015655518, -0.012512207, 0.011268616, -0.06359863, -0.018096924, -0.012825012, 0.0005669594, -0.029159546, -0.010063171, -0.04510498, 0.039978027, -0.058410645, 0.023468018, 0.01953125, 0.014076233, -0.002817154, 0.036102295, 0.008270264, 0.022567749, -0.050720215, 0.021408081, 0.024749756, -0.01638794, -0.04724121, -0.020629883, 0.0072669983, -0.007167816, 0.020431519, 0.009971619, 0.0020561218, -0.0524292, -0.01651001, -0.070617676, 0.02029419, -0.041534424, 0.0008711815, 0.010597229, -0.019897461, 0.0104599, 0.0335083, 0.014198303, -0.00390625, -0.0001436472, 0.012611389, 0.015525818, -0.0047416687, 0.018035889, -0.03149414, -0.013313293, 0.014579773, 0.036010742, 0.046447754, -0.016220093, -0.032287598, 0.042633057, 0.00028967857, -0.02017212, -0.0035476685, 0.062561035, -0.010871887, -0.0014219284, -0.06500244, -0.021987915, 0.07519531, -0.002155304, 0.028030396, -0.0016937256, -0.015487671, -0.020935059, -0.013160706, 0.007911682, -0.046569824, -0.002445221, -0.031799316, -0.009422302, 0.00409317, 0.024475098, 0.0066490173, 0.013298035, 0.01436615, -0.0025081635, 0.05078125, -0.00945282, -0.023605347, -0.0038089752, -0.019821167, -0.008033752, 0.00017654896, 0.016342163, -0.027740479, 0.020339966, -0.0032520294, -0.005554199, -0.01727295, -0.049865723, -0.046020508, 0.025894165, 0.055541992, -0.030380249, 0.034118652, -0.011558533, -0.02319336, 0.00089788437, 0.027114868, -0.018325806, 0.017974854, -0.016464233, 0.0012149811, -0.010475159, 0.0289917, -0.055603027, 0.062805176, -0.01121521, 0.010543823, 0.027511597, 0.0066986084, -0.0030269623, 0.022125244, -0.023605347, -0.0031986237, 0.004524231, 0.017456055, 0.003326416, -0.010269165, 0.064331055, -0.025360107, -0.0023517609, -0.017105103, 0.03564453, 0.03314209, 0.0035247803, -0.015235901, -0.061950684, 0.006095886, 0.032562256, 0.010650635, -0.05731201, -0.052581787, -0.032043457, 0.017105103, 0.035339355, -0.0042037964, -0.040740967, -0.026382446, -0.04550171, -0.013000488, -0.0071487427, -0.03970337, -0.00409317, -0.005218506, 0.008926392, 0.0034313202, -0.019546509, -0.0030708313, 0.0019397736, 0.0001565218, 0.016601562, -0.008399963, 0.0016946793, -0.043304443, 0.02116394, -0.015144348, -0.012817383, 0.020721436, 0.03729248, -0.00349617, 0.060791016, -0.06384277, -0.07043457, -0.04031372, 0.10479736, -0.05569458, -0.017288208, -0.033996582, -0.01940918, 0.012336731, 0.061920166, 0.009353638, -0.036193848, -0.044189453, -0.018600464, 0.00447464, -0.01713562, -0.04260254, 0.02255249, 0.0021953583, -0.0022087097, 0.000330925, 0.006225586, 0.009437561, 0.0054397583, -0.016906738, 0.042541504, -0.03842163, 0.02217102, 0.019714355, 0.0061912537, 0.033966064, -0.00018930435, -0.016784668, -0.00894165, 0.010215759, 0.015777588, -0.0048561096, 0.0028419495, 0.054718018, 0.01361084, 0.023590088, 0.06750488, -0.016143799, 0.0597229, 0.022888184, -0.03567505, -0.023605347, -0.002090454, -0.00289917, 0.015151978, -0.0035629272, 0.07147217, 0.01259613, -0.0155181885, -0.002029419, -0.013160706, 0.032714844, 0.024993896, 0.009750366, -0.0149002075, 0.012168884, -0.0020580292, -0.0065574646, -0.044311523, -0.008903503, 0.023422241, -0.02293396, -0.011810303, 0.013092041, 0.007965088, 0.0042648315, 0.033355713, 0.00566864, 0.029785156, 0.0024337769, 0.03463745, 0.009849548, -0.06311035, 0.024902344, -0.019180298, 0.014518738, -0.02027893, 0.03479004, 0.08428955, -0.020751953, 0.020889282, -0.052459717, 0.020431519, -0.0009899139, 0.0041999817, -0.034088135, 0.02305603, 0.003955841, -0.010292053, 0.03579712, -0.0345459, -0.018829346, 0.006187439, 0.01197052, -0.04638672, -0.006706238, -0.008804321, 0.031082153, -0.048675537, -0.012939453, 0.0063285828, -0.010353088, -0.016143799, -0.008049011, -0.05368042, -0.017150879, 0.030151367, 0.02142334, 0.0046691895, -0.0368042, 0.018173218, -0.0018959045, 0.0032749176, 0.0473938, -0.007865906, 0.015144348, -0.038360596, 0.03778076, -0.022445679, 0.0070228577, -0.02003479, 0.029754639, -0.019699097, -0.010856628, -0.029251099, -0.029769897, -0.044647217, -0.013023376, 0.029342651, 0.017303467, 0.027297974, 0.007347107, -0.00084733963, 0.06060791, 0.013694763, -0.0001333952, -0.06689453, 0.059295654, -0.02645874, -0.00036859512, 0.051757812, 0.019851685, -0.04727173, 0.001750946, -0.08911133, 0.040740967, 0.09259033, 0.015007019, 0.03878784, -0.004924774, 0.0113220215, 0.011108398, -0.0040283203, 0.033813477, -0.0061073303, -0.00038051605, -0.005455017, 0.019592285, 0.0075187683, -0.0287323, -0.05831909, 0.046081543, 0.020843506, 0.020950317, 0.018814087, 0.006916046, -0.0003311634, -0.04095459, -0.030899048, -0.018157959, -0.012611389, 0.049957275, 0.019485474, -0.03060913, 0.0149383545, -0.056640625, -0.024795532, -0.0119018555, -0.03970337, -0.03793335, 0.010185242, -0.0017623901, -0.032287598, 0.016952515, 0.056365967, 0.03366089, 0.015419006, 0.01927185, -0.048736572, -0.010673523, 0.03237915, -0.032348633, -0.036987305, -0.033691406, 0.04257202, -0.014633179, 0.011192322, 0.013008118, 0.015449524, -0.0047912598, 0.029876709, -0.006713867, -0.019256592, 0.06640625, -0.0067596436, 0.009475708, -0.024536133, 0.017700195, -0.0045318604, -0.021728516, -0.06149292, 0.0005173683, -0.015312195, -0.03451538, 0.037109375, -0.001077652, -0.06500244, 0.0005917549, 0.01309967, -0.03012085, -0.024047852, -0.010772705, -0.035736084, -0.023529053, 0.0019006729, 0.06201172, -0.030838013, 0.021362305, -0.02519226, 0.022781372, 0.008720398, -0.0007638931, 0.018920898, -0.0046043396, -0.013442993, -0.009223938, 0.037384033, -0.022079468, 0.01550293, 0.030212402, -0.015213013, 0.023452759, -0.034301758, 0.0037250519, 0.010658264, 0.013954163, -0.020706177, -0.0004374981, -0.022888184, -0.0029640198, -0.05218506, -0.048309326, 0.03640747, -0.061645508, 0.09008789, -0.04837036, -0.024871826, 0.010131836, 0.009033203, 0.0023384094, 0.0061073303, -0.028045654, 0.0143585205, -0.029312134, -0.018859863, -0.018722534, -0.01499939, 0.027114868, -0.016159058, 0.018325806, -0.0020275116, -0.0044898987, 0.015808105, 0.020843506, -0.011665344, 0.002193451, -0.030944824, -0.023513794, 0.07702637, -0.026748657, 0.0289917, -0.026412964, 0.04034424, -0.0067443848, -0.01374054, 0.032562256, -0.008155823, 0.0017948151, 0.04864502, 0.0063819885, 0.011398315, 0.0063667297, -0.029922485, 0.026947021, -0.079589844, -0.0066375732, -0.037078857, 0.0013437271, 0.008140564, 0.08557129, 0.06561279, -0.0027675629, 0.074035645, 0.046539307, -0.002462387, 0.026184082, 0.044158936, 0.020477295, 0.011497498, 0.06173706, 0.016159058, -0.04171753, -0.0051879883, 0.037139893, 0.0113220215, 0.0037174225, -0.01133728, -0.010131836, -0.024139404, -0.016189575, -0.012840271, 0.025817871, 0.04647827, 0.034301758, 0.02520752, -0.026107788, 0.052215576, -0.0137786865, 0.008201599, -0.0060195923, -0.0031776428, 0.017929077, -0.030166626, 0.058013916, -0.042114258, -0.029876709, -0.0211792, 0.019195557, 0.040008545, 0.048736572, -0.027175903, -0.045440674, 0.03656006, 0.0024852753, -0.02355957, -0.02897644, 0.017959595, 0.026443481, -0.033355713, -0.006008148, 0.038360596, 0.021896362, -0.03741455, -0.0035305023, -0.018859863, -0.03933716, -0.02029419, -0.013145447, -0.011161804, 0.015945435, 0.026870728, -0.06945801, -0.015419006, -0.0056877136, -0.018981934, -0.015701294, -0.024047852, -0.013008118, -0.067993164, -0.04888916, -0.024093628, -0.014808655, -0.03878784, 0.03225708, -0.004463196, -0.054901123, -0.010673523, 0.035247803, -0.0309906, -0.022094727, -0.020523071, 0.01158905, 0.016296387, -0.0072517395, 0.045013428, -0.053985596, -0.03829956, -0.047821045, 0.042907715, 0.03942871, 0.014862061, 0.018203735, 0.028640747, 0.011428833, 0.015213013, 0.00060749054, -0.017410278, 0.043884277, 0.036346436, 0.037353516, -0.053222656, -0.012893677, 0.021514893, -0.045074463, -0.043273926, -0.041046143, 0.035614014, 0.0038757324, -0.02255249, -0.12658691, 0.037078857, 0.03616333, -0.051116943, 0.009902954, -0.02279663, 0.03387451, 0.0289917, -0.037841797, 0.0065574646, -0.016860962, 0.023513794, -0.057281494, -0.013748169, -0.0012464523, -0.024353027, -0.011184692, 0.022857666, 0.0019187927, 0.032104492, -0.0066947937, -0.005584717, 0.020431519, -0.047088623, 0.06402588, 0.014709473, -0.015098572, -0.013381958, -0.033111572, -0.024902344, -0.048553467, 0.010910034, 0.004020691, -0.017059326, -0.020523071, -0.01600647, -0.008773804, -0.052978516, -0.0022411346, 0.015586853, -0.051116943, 0.036224365, 0.008377075, 0.04034424, 0.008659363, -0.0019435883, 0.02230835, 0.01272583, 0.014122009, 0.03277588, 0.004306793, -0.04446411, -0.03390503, -0.001086235, 0.00472641, -0.011474609, 0.0023441315, -0.029159546, -0.006717682, -0.032196045, -0.014823914, 0.025253296, -0.0016975403, -0.005809784, 0.028121948, -0.0013303757, -0.008071899, -0.035583496, 0.007335663, -0.0060157776, -0.01826477, 0.038970947, -0.021499634, -0.030075073, 0.0496521, -0.04916382, 0.06744385, 0.041870117, -0.086120605, -0.003353119, 0.008583069, 0.005882263, -0.035125732, 0.016571045, 0.006149292, -0.042053223, -0.03189087, -0.0042266846, -0.022979736, 0.016586304, -0.023452759, 0.004180908, 0.047668457, 0.048980713, -0.044952393, 0.03074646, 0.036956787, -0.0637207, -0.03363037, 0.042510986, -0.011512756, -0.0289917, 0.053375244, 0.017486572, -0.02545166, -0.006126404, -0.057861328, 0.04058838, 0.009361267, -0.041107178, -0.02180481, 0.0103302, 0.007858276, -0.02911377, 0.023117065, 0.024841309, 0.005092621, 0.025360107, 0.018997192, 0.0013122559, -0.012145996, 0.033721924, -0.0004720688, 0.02532959, 0.0014181137, -0.028778076, 0.013900757, -0.03466797, -0.029754639, -0.02772522, -0.020217896, 0.011505127, -0.013656616, -0.02532959, -0.0041542053, -0.01713562, -0.020187378, 0.011146545, -0.0011119843, 0.041229248, -0.03744507, -0.028152466, -0.055145264, 0.01940918, 0.0018568039, -0.012374878, 0.042907715, -0.06744385, 0.01763916, -0.0034103394, -0.0010757446, 0.028823853, 0.060028076, 0.032562256, -0.00076055527, 0.023025513, 0.02406311, 0.00944519, -0.00137043, 0.0032997131, -0.0027236938, 0.013511658, -0.024673462, 0.020339966, 0.018493652, 0.020843506, -0.036071777, -0.00409317, 0.014060974, -0.029464722, 0.00087690353, -0.043060303, 0.00078201294, -0.039855957, -0.034820557, 0.0014734268, 0.0362854, 0.036468506, -0.016708374, 0.0138549805, 0.032196045, -0.056610107, 0.05633545, 0.00017035007, -0.030792236, 0.013839722, -0.001791954, 0.041809082, -0.021575928, 0.0440979, 0.009048462, 0.013549805, 0.019821167, 0.068115234, -0.024978638, -0.04034424, -0.052825928, 0.085876465, 0.050231934, -0.023742676, -0.011642456, 0.026931763, -0.0068206787, -0.06878662, -0.035217285, -0.004020691, -0.037628174, 0.02973938, -0.0008826256, -0.037475586, -0.043640137, -0.027648926, -0.016052246, 0.034973145, -0.026184082, -0.01260376, 0.051849365, -0.0036029816, 0.047454834, -0.028656006, -0.041290283, -0.073913574, -0.013160706, -0.061645508, -0.0076828003, -0.053863525, 0.017242432, 0.033203125, 0.03390503, 0.0021247864, 0.041290283, 0.022613525, -0.012054443, 0.02734375, -0.03152466, 0.029846191, 0.0069122314, -0.0033302307, 0.014083862, -0.017593384, -0.016494751, 0.022415161, 0.046783447, -0.06677246, 0.089904785, -0.07092285, -0.017166138, -0.008346558, 0.04788208, -0.075927734, -0.024047852, 0.038726807, -0.033203125, 0.019515991, 0.0013790131, -0.03503418, -0.05340576, 0.045776367, -0.026046753, -0.0463562, -0.0051574707, 0.053741455, 0.018478394, 0.005344391, -0.03010559, 0.00466156, 0.06488037, -0.008407593, -0.009208679, -0.02319336, 0.048675537, 0.03286743, 0.03918457, -0.0070648193, 0.013343811, -0.017944336, 0.03488159, 0.036315918, -0.002532959, -0.006542206, -0.006626129, -0.019897461, 0.0034751892, -0.0022182465, -0.00037765503, -0.0028686523, -0.0028686523, 0.00095558167, 0.04623413, 0.03793335, -0.019195557, 0.022064209, 0.03579712, -0.01727295, 0.00094509125, -0.008262634, 0.010070801, -0.010719299, -0.026397705, 0.013824463, -0.0043640137, -0.00894165, -0.010887146, -0.009414673, 0.0035037994, 0.0011110306, -0.014862061, 0.0013828278, -0.004169464, 0.008232117, -0.011390686, 0.044647217, -0.018157959, -0.015068054, -0.05065918, -0.019210815, -0.0074272156, 0.020629883, 0.0048599243, -0.026885986, 0.005268097, 0.0071640015, -0.008506775, -0.057647705, -0.032409668, 0.0019292831, -0.0020103455, 0.034179688, 0.08129883, 0.00093126297, -0.08178711, -0.09649658, 0.0017204285, -0.026641846, 0.013702393, -0.017807007, 0.012840271, 0.027175903, 0.01776123, 0.033294678, 0.046661377, 0.010681152, 0.009742737, 0.03845215, -0.05697632, -0.046173096, 0.030883789, 0.026000977, -0.044006348, -0.0013608932, 0.03353882, -0.033477783, 0.057373047, 0.008155823, -0.053649902, -0.051208496, -0.053588867, -0.060577393, -0.014083862, -0.002029419, -0.020706177, 0.005382538, 0.031341553, -0.027175903, -0.07733154, -0.005268097, -0.02305603, 0.024963379, 0.0035362244, 0.019744873, -0.0112838745, -0.0021820068, -0.028244019, -0.0013341904, 0.010765076, 0.061065674, 0.0008673668, -0.023376465, 0.030166626, 0.0021343231, 0.01525116, 0.022659302, 0.0012130737, 0.008255005, -0.014122009, 0.027923584, -0.011047363, -0.0052108765, 0.025802612, -0.02027893, -0.042663574, 0.006690979, 0.033111572, -0.02607727, -0.013900757, -0.02078247, 0.015464783, 0.0034427643, -0.037963867, -0.055114746, -0.047851562, 0.00434494, 0.032043457, -0.018569946, 0.012969971, -0.0020446777, 0.02130127, 0.011817932, 0.014526367, -0.020950317, 0.0058631897, 0.011199951, 0.037017822, -0.010307312, 0.08404541, 0.004547119, 0.016967773, -0.02255249, 0.040496826, 0.0259552, -0.029174805, 0.046936035, -0.017105103, -0.0037250519, 0.019760132, -0.07501221, -0.03665161, 0.023880005, 0.0015172958, 0.0037117004, 0.019378662]}, "B07FSVCSSL": {"id": "B07FSVCSSL", "original": "Brand: EG\nName: Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook\nDescription: \nFeatures: A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases.\nPORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks.\nVISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane.\nADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-).\nLIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.\n", "metadata": {"Name": "Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook", "Brand": "EG", "Description": "", "Features": "A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases.\nPORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks.\nVISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane.\nADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-).\nLIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.033721924, -0.005947113, -0.044647217, -0.0041160583, -0.027313232, 0.0014896393, -0.028839111, -0.003074646, -0.01184845, -4.3690205e-05, -0.057250977, 0.04171753, -0.016799927, -0.00157547, 0.020233154, -0.044708252, 0.0021266937, 0.02796936, 0.031341553, 0.0031528473, 0.023590088, 0.019866943, -0.008918762, 0.018951416, 0.0027561188, 0.04852295, 0.03778076, -0.0022621155, 0.00027799606, -0.003540039, 0.008857727, -0.02104187, 0.023483276, 0.06903076, -0.0836792, 0.025253296, -0.058166504, 0.04534912, -0.014076233, -0.011634827, 0.000954628, 0.020492554, 0.03945923, -0.006122589, -0.0051116943, -0.02709961, 0.0069885254, -0.0206604, -0.0030097961, 0.017700195, 0.02104187, -0.011444092, 0.0073432922, 0.0017490387, -0.013999939, -0.0069618225, 0.040740967, -0.046173096, 0.023986816, -0.041931152, -0.019439697, 0.004207611, 0.048919678, 0.020477295, -0.051483154, -0.0045433044, 0.041992188, -0.012542725, -0.008956909, -0.045898438, 0.014465332, 0.019424438, -0.004207611, -0.020507812, -0.01940918, 0.003124237, 0.0134887695, -0.0013980865, -0.0015821457, 0.006538391, 0.013175964, -0.015426636, -0.00349617, -0.031585693, 0.02368164, -0.0037441254, 0.0071487427, -0.013137817, -0.033294678, -0.046844482, -0.03289795, -0.0036144257, -0.059936523, -0.006439209, -0.019561768, -0.013633728, 0.011558533, 0.0357666, 0.011375427, 0.015396118, -0.028640747, -0.025405884, -0.016784668, -0.037384033, 0.0016698837, 0.064086914, -0.0032863617, -0.032318115, -0.006378174, -0.011764526, -0.0069770813, -0.027664185, -0.019836426, -0.049591064, -0.015205383, 0.093322754, 0.031051636, -0.0236969, 0.023071289, 0.009315491, -0.0090408325, 0.0033016205, 0.015426636, -0.048736572, 0.029830933, 0.006023407, -0.024307251, -0.01486969, 0.024246216, 0.03491211, -0.027557373, -0.00459671, 0.01449585, 0.009674072, -0.009521484, -0.02482605, 0.008651733, 0.019821167, 0.03390503, -0.043701172, 0.079589844, -0.03387451, -0.03829956, 0.11657715, -0.031799316, -0.029174805, 0.026123047, 0.04373169, -0.029281616, -0.018676758, 0.0020313263, 0.037506104, 0.043395996, -0.012954712, -0.07043457, -0.04763794, -0.046875, -0.018005371, 0.01777649, -0.055603027, -0.021011353, -0.015068054, -0.010131836, 0.04663086, 0.004837036, 0.03062439, 0.043914795, 0.00970459, 0.015327454, 0.04272461, -0.020996094, 0.01737976, 0.005897522, -0.004989624, 0.003288269, -0.013954163, 0.012199402, 0.070617676, 0.05368042, -0.10040283, -0.045715332, -0.053741455, 0.14575195, -0.04537964, -0.012451172, -0.008911133, 0.025802612, 0.01991272, -0.00983429, 0.010757446, 0.060913086, 0.006717682, -0.0099487305, -0.032318115, 0.0119018555, -0.015098572, -0.045074463, -0.029067993, -0.012359619, 0.018630981, -0.050048828, -0.0014562607, -0.016036987, 0.026977539, 0.05432129, -0.06262207, 0.019104004, -0.0070228577, 0.04006958, 0.02268982, -0.025512695, -0.027114868, 0.020858765, -0.025909424, -0.01411438, 0.0073394775, -0.024459839, 0.010398865, 0.00945282, 0.0032520294, 0.031402588, -0.0059890747, 0.01600647, 0.016967773, 0.019546509, -0.00762558, -0.0011491776, 0.018554688, 0.07775879, 0.024307251, 0.053253174, -0.030517578, 0.049987793, 0.042236328, 0.012054443, 0.04437256, 0.09423828, -0.034820557, -0.0032539368, -0.0042533875, 0.040283203, -0.01689148, -0.0029392242, -0.009994507, -0.011894226, -0.02166748, 0.043304443, -0.033966064, -0.019439697, 0.03668213, 0.014312744, 0.04071045, 0.019744873, 0.059509277, -0.016143799, 0.044036865, -0.016174316, 0.030334473, -0.0435791, 0.027618408, -0.022460938, -0.008392334, 0.031204224, -0.033355713, 0.0262146, -0.027359009, 0.03665161, 0.024429321, 0.014022827, -0.030578613, 0.003917694, -0.008117676, 0.0013217926, 0.010482788, -0.020996094, 0.04534912, -0.022750854, -0.0007405281, 0.020828247, 0.009986877, 0.008453369, 0.0016431808, 0.03668213, -0.0038452148, 0.043640137, 0.041290283, 0.023208618, -0.019012451, 0.020751953, 0.01360321, 0.019180298, -0.0019445419, -0.019104004, 0.019760132, 0.0079574585, -0.032318115, 0.029296875, -0.029922485, 0.027435303, -0.046844482, 0.003446579, 0.03439331, -0.046813965, 0.015068054, -0.007904053, -0.019226074, -0.03656006, 0.023483276, 0.008049011, -0.019454956, -0.036743164, -0.0008559227, 0.0027256012, -0.06915283, 0.046539307, 0.014381409, -0.008270264, -0.00995636, -0.016967773, 0.010169983, -0.011810303, -0.037353516, -0.010528564, 0.0024318695, -0.012260437, 0.0074043274, 0.0099105835, -0.0090408325, -0.034576416, 0.005832672, 0.0018253326, -0.014526367, -0.00756073, 0.04876709, 0.004928589, 0.008850098, 0.0075645447, 0.016448975, -0.0118637085, -0.03643799, -0.0007510185, 0.003818512, -0.0017242432, 0.0039405823, -0.0748291, 0.001373291, 0.016159058, 0.013153076, -0.043792725, -0.035705566, 0.06137085, -0.018081665, 0.012138367, -0.020446777, 0.030822754, -0.02192688, -0.054656982, -0.011222839, 0.0029087067, -0.07159424, 0.016830444, 7.2956085e-05, -0.03253174, -0.053131104, 0.043792725, -0.0256958, -0.035369873, -0.047668457, 0.046173096, 0.044433594, 0.0069351196, 0.023101807, -0.024658203, -0.011146545, 0.0039901733, -0.024963379, -0.020629883, -0.033172607, 0.02180481, -0.005455017, -0.002243042, 0.012680054, -0.009918213, 0.025680542, 0.032440186, 0.021728516, 0.06903076, 0.05718994, 0.021774292, -0.03717041, 0.011161804, 0.03237915, -0.01713562, -0.022766113, 0.028076172, -0.011245728, 0.0064201355, 0.049194336, -0.051849365, -0.03237915, -0.03793335, 0.013504028, -0.0035629272, -0.025741577, 0.0067481995, -0.032684326, -0.02330017, -0.0335083, -0.010536194, 0.10498047, -0.0013370514, -0.0014104843, 0.0039100647, 0.025314331, 0.039276123, -0.006504059, -0.0036945343, -0.017364502, 0.012886047, -0.006313324, 0.024398804, -0.026367188, 0.0077056885, 0.026794434, 0.036132812, -0.026306152, 0.0011529922, -0.05441284, 0.016082764, 0.06945801, 0.00035905838, 0.014945984, -0.023040771, 0.0050468445, -0.01335144, -0.006511688, 0.014030457, -0.04727173, 0.045410156, -0.037963867, -0.002199173, -0.0061454773, 0.02178955, 0.022277832, -0.013183594, -0.00031876564, -0.010543823, -0.0021800995, -0.023361206, -0.026504517, -0.002632141, -0.0033359528, -0.015625, 0.027069092, -0.013763428, 0.072265625, -0.006336212, 0.018600464, -0.0116119385, -0.013801575, 0.008468628, -0.002922058, -0.028244019, -0.018066406, -0.00063943863, -0.035247803, 0.042022705, -0.004020691, -0.01411438, 0.01374054, -0.00667572, 0.03289795, 0.018692017, -0.0418396, 0.0034675598, -0.02330017, 0.017654419, -0.037475586, 0.05529785, -0.01133728, 0.0143585205, -0.013000488, -0.046417236, 0.060333252, 0.048583984, -0.01361084, 0.017471313, 0.03250122, 0.0053749084, 0.00083208084, 0.034454346, -0.03100586, 0.013931274, 0.044281006, -0.027008057, -0.009155273, 0.0032539368, 0.020385742, -0.0028514862, -0.044433594, 0.0071792603, 0.007209778, 0.01826477, 0.0062561035, -0.043426514, 0.023132324, 0.005996704, 0.023132324, -0.0023593903, -0.109069824, 0.032165527, -0.0413208, -0.005126953, -0.012054443, -0.02204895, 0.0023765564, -0.0024871826, -0.046142578, -0.007095337, 0.018157959, -0.023803711, -0.010040283, 0.009460449, 0.03363037, -0.01109314, -0.008705139, -0.01184082, 0.020141602, 0.011329651, 0.016143799, -0.011787415, -0.0063934326, -0.0104904175, -0.018341064, 0.049468994, -0.02079773, -0.011161804, 0.04888916, -0.032196045, -0.06915283, -0.0105896, 0.023971558, 0.028457642, -0.043060303, -0.0151901245, -0.021728516, -0.0368042, -0.03186035, -0.035369873, -0.04675293, -0.0006542206, 0.009628296, -0.06329346, 0.0017280579, 0.009216309, -0.028747559, -0.051879883, 0.007381439, -0.026657104, -0.007949829, -0.0050735474, 0.012199402, 0.0084991455, -0.029769897, 0.04034424, 0.01689148, 0.0031223297, -0.047943115, -0.014663696, -0.026016235, 0.0017080307, -0.005569458, 0.00724411, -0.015060425, -0.009315491, -0.007160187, -0.028198242, 0.011543274, 0.043029785, 0.11816406, 0.033294678, 0.03881836, -0.08178711, 0.049072266, -0.07330322, -0.03213501, 0.056793213, -0.03201294, -0.058044434, -0.04724121, 0.07891846, 0.0016078949, 0.066467285, 0.0064315796, -0.04663086, -0.04046631, -0.032073975, -0.09643555, -0.032196045, -0.022827148, 0.020843506, 0.03744507, 0.0143966675, 0.015686035, -0.0036087036, 0.06512451, 0.029037476, 0.07800293, 0.026229858, -0.013130188, 0.0036125183, -0.015655518, -0.027328491, 0.05847168, -0.033172607, -0.04925537, -0.043426514, 0.075805664, 0.046661377, -0.009483337, 0.008422852, 0.008323669, -0.0074920654, -0.040893555, -0.043273926, 0.017913818, -0.0051116943, 0.00081062317, -0.029022217, -0.0010986328, 0.005783081, -0.011108398, -0.030517578, -0.013000488, -0.010696411, 0.00063610077, -0.0115356445, -0.009857178, -0.0019950867, -0.0146484375, -0.014877319, -0.0016736984, -0.030258179, 0.04135132, 0.03253174, 0.0022220612, 0.027450562, 0.0075950623, 0.005012512, -0.018859863, -0.021194458, -0.011398315, -0.12512207, 0.044677734, 0.05050659, 0.008720398, -0.014030457, 0.027404785, 0.01171875, -0.011619568, -0.026626587, 0.041381836, 0.0031757355, -0.011764526, -0.0059776306, -0.012748718, 0.010406494, 0.013320923, -0.009925842, -0.0033226013, -0.0072250366, -0.026672363, -0.015808105, 0.029067993, 0.009971619, -0.050872803, 0.044921875, -0.007209778, -0.048858643, -0.024398804, 0.001499176, 0.037078857, 0.0052871704, 0.003944397, -0.02709961, 0.05114746, -0.0038642883, -0.026138306, 0.00040841103, 0.038726807, -0.014274597, 0.033111572, 0.019836426, 0.041381836, -0.039123535, 0.020431519, -0.035339355, 0.008766174, 0.035186768, -0.044525146, -0.024887085, 0.023406982, -0.0206604, -0.004573822, 0.011695862, 0.018737793, -0.013572693, -0.008476257, -0.0021743774, -0.0055351257, 0.00491333, 0.042938232, -0.048339844, -0.010406494, -0.0016088486, -0.045135498, -0.076660156, -0.005584717, -0.03326416, 0.0146484375, -0.010101318, -0.03729248, 0.018814087, 0.017715454, 0.037231445, -0.022476196, -0.015220642, -0.012924194, 0.007911682, -0.008293152, -0.0121154785, -0.042541504, -0.0006008148, -0.0018596649, -0.028427124, 0.015350342, 0.04714966, -0.03869629, -0.024536133, 0.07019043, -0.014755249, 0.038330078, 0.008018494, 0.01486969, -0.0058555603, -0.014129639, 0.0011968613, -0.058776855, -0.0435791, -0.021881104, -0.016494751, -0.022155762, 0.014091492, 0.015235901, 0.031677246, 0.0034542084, -0.018325806, -0.0002939701, 0.009391785, -0.0065460205, -0.059265137, -0.0009059906, -0.020812988, 0.013671875, -0.014175415, -0.015197754, -0.07019043, -0.011108398, 0.011024475, 0.00038290024, -0.009246826, 0.017791748, 0.00969696, 0.012565613, -0.020935059, 0.003107071, -0.0015592575, -0.03753662, 0.00029039383, 0.025283813, 0.012809753, 0.033325195, -0.016525269, -0.008049011, -0.039215088, 0.012748718, -0.013313293, 0.06222534, -0.03213501, 0.005706787, 0.00021028519, 0.03491211, -0.0009198189, 0.00067186356, 0.017303467, -0.044128418, -0.059265137, -0.0012321472, -0.021316528, -0.04940796, -0.0020122528, -0.034362793, -0.016204834, 0.001537323, -0.022872925, 0.023208618, -0.01939392, 0.042266846, -0.026275635, 0.018722534, -0.008888245, -0.03817749, 0.03387451, -0.016921997, 0.0657959, -0.0041122437, 0.030410767, 0.0025043488, -0.02230835, -0.012771606, 0.0071258545, 0.019714355, 0.015029907, 0.025131226, -0.057891846, 0.035888672, 0.028244019, -0.075805664, -0.018310547, 0.00869751, 0.019515991, -0.021713257, 0.051605225, 0.038726807, 0.02368164, 0.0064811707, 0.048858643, 0.021560669, -0.024841309, 0.0317688, -0.051727295, 0.016571045, -0.038269043, -0.05102539, 0.035614014, 0.029403687, -0.002872467, 0.0017700195, -0.05871582, 0.030899048, 0.027786255, 0.0077400208, 0.036071777, -0.026855469, 0.0054092407, -0.032165527, 0.0007572174, -0.028808594, -0.042236328, -0.012939453, 0.010215759, -0.00084495544, 0.01828003, 0.0067443848, 0.017044067, 0.0231781, -0.018188477, 0.027816772, -0.009933472, 0.029663086, 0.016906738, 0.01864624, -0.07757568, -0.11224365, -0.016220093, -0.061340332, 0.006690979, 0.0023860931, -0.050109863, 0.092041016, -0.017089844, -0.017471313, 0.0071868896, -0.03845215, 0.008483887, -0.018417358, -0.001364708, 0.015029907, 0.013801575, 0.009429932, 0.021438599, -0.01763916, 0.011734009, 0.036865234, 0.039001465, 0.038391113, 0.026245117, 0.016357422, -0.02822876, 0.012313843, -0.018661499, -0.052520752, 0.07147217, -0.017181396, 0.024902344, -0.060699463, -0.09851074, -0.031555176, -0.028305054, -0.07385254, 0.07159424, -0.016082764, -0.022659302, -0.015396118, -0.0010309219, -0.019363403, -0.04638672, -0.00025129318, 0.0054512024, 0.024810791, -0.02897644, 0.007255554, -0.024780273, -0.0031166077, -0.0012273788, 0.027618408, -0.050445557, -0.03945923, -0.03286743, 0.013420105, 0.0010299683, -0.029586792, -0.025909424, 0.08947754, -0.012664795, -0.0047187805, 0.020812988, 0.027572632, 0.008506775, -0.035827637, 0.018798828, -0.042785645, -0.010353088, -0.029205322, -0.016677856, -0.019439697, 0.0066833496, 0.0076065063, -0.01675415, 0.032928467, 0.03074646, -0.07312012, -0.008102417, -0.012084961, 0.022277832, 0.011894226, -0.043426514, 0.012886047, -0.0018434525, 0.035217285, 0.036834717, 0.004966736, 0.020965576, -0.00057315826, -0.031433105, -0.038024902, -0.016967773, 0.0045433044, 0.03616333, -0.029342651, -0.024505615, 0.03363037, -0.016525269, 0.041900635, 0.038330078, -0.025146484, 0.0017127991, 0.026855469, -0.027664185, -0.018325806, -0.0061073303, -0.0070610046, -0.007293701, -0.022384644, 0.011459351, 0.0010118484, -0.024536133, -0.022201538, -0.013771057, 0.016616821, -0.030776978, -0.032440186, -0.0146102905, -0.010765076, -0.018859863, -0.009277344, 0.0023918152, -0.04159546, 0.013519287, 0.00049495697, -0.026611328, 0.008094788, 0.020446777, 0.017196655, -0.015686035, -0.00094366074, 0.012779236, 0.020126343, 0.019546509, -0.022201538, -0.020385742, 0.05331421, 0.019546509, -0.05331421, 0.02444458, -0.034362793, 0.0024204254, 0.07299805, -0.017852783, -0.02305603, 0.039764404, 0.037872314, 0.02822876, 0.0135269165]}, "B000FDKXN6": {"id": "B000FDKXN6", "original": "Brand: Volcano Grills\nName: Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)\nDescription: \nFeatures: 3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately)\nPortable: Collapses down to 5\", fits in carrying case for easy storage and transportation. Sets up in just seconds.\nVersatile: grill, Dutch oven, wok, bake, roast, fry, fire pit\nUse for camping, tailgating, RV's, emergency preparedness, survival, and prepping\nSafe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber\n", "metadata": {"Name": "Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)", "Brand": "Volcano Grills", "Description": "", "Features": "3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately)\nPortable: Collapses down to 5\", fits in carrying case for easy storage and transportation. Sets up in just seconds.\nVersatile: grill, Dutch oven, wok, bake, roast, fry, fire pit\nUse for camping, tailgating, RV's, emergency preparedness, survival, and prepping\nSafe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.02154541, 0.024597168, -0.0138168335, -0.042175293, 0.0211792, 0.010765076, -0.013183594, -0.027694702, 0.0058288574, 0.00016331673, -0.044158936, 0.033111572, -0.028015137, -0.009010315, 0.0048599243, -0.038330078, 0.021392822, -0.001326561, -0.0044441223, -0.021713257, -0.0021438599, -0.022003174, -0.023529053, 0.076049805, 0.046203613, -0.012306213, -0.0435791, -0.004676819, 0.034973145, 0.017150879, 0.020339966, -0.010322571, 0.024520874, -0.0007801056, -0.022537231, -0.05166626, 0.003206253, -0.015365601, -0.037872314, 0.019058228, 0.015731812, 0.000685215, -0.02619934, -0.018661499, -0.01524353, -0.037841797, 0.022491455, -0.037109375, 0.0032482147, 0.031143188, 0.002090454, 0.014640808, 0.004135132, -0.045562744, 0.011566162, 0.007282257, 0.018997192, 0.003528595, -0.0048294067, -0.01939392, -0.0056495667, 0.050933838, 0.02168274, 0.04449463, -0.041290283, 0.012832642, 0.094055176, -0.024902344, 0.008705139, -0.049072266, -0.004825592, 0.042236328, -0.013137817, 0.043701172, -0.03387451, -0.048034668, 0.014305115, -0.037597656, 0.031341553, 0.036865234, -0.0703125, -0.011497498, -0.006225586, -0.046295166, -0.013404846, -0.022857666, -0.038879395, 0.011871338, -0.03942871, -0.03378296, -0.02520752, -0.04309082, -0.07598877, 0.023834229, 0.024139404, -0.019958496, -0.040008545, -0.067993164, 0.031311035, 0.0069618225, 0.0256958, -0.028671265, 0.012886047, 0.010910034, -0.018127441, 0.08312988, 0.030776978, 0.03643799, 0.0064697266, -0.013191223, 0.009407043, -0.023925781, 0.008758545, -0.0026130676, -0.010559082, 0.007499695, -0.016189575, 0.03805542, 0.00047016144, 0.04623413, -0.04559326, -0.020141602, -0.008201599, 0.037872314, 0.0340271, 0.031585693, 0.01512146, 0.010307312, -0.07702637, 0.04824829, -0.008255005, 0.01878357, 0.015365601, 0.021194458, -0.030136108, -0.023620605, 0.025772095, -0.013870239, 0.013137817, -0.017684937, 0.004081726, -0.00020086765, 0.016326904, -0.004711151, -0.04248047, 0.0063705444, 0.034606934, 0.026153564, -0.03842163, -0.061431885, 0.037078857, -0.014663696, 0.0418396, 0.015617371, -0.012268066, -0.0011758804, 0.015670776, -0.029647827, -0.019195557, -0.05657959, -0.055145264, -0.026885986, 0.01826477, -0.028427124, -0.047668457, 0.045288086, 0.030059814, 0.0023975372, 0.009117126, 0.02053833, -0.0121536255, 0.021377563, 0.00014770031, -0.009170532, -0.008705139, -0.009429932, 0.00075626373, 0.04425049, 0.060638428, -0.076660156, -0.058929443, -0.05178833, 0.12475586, -0.05038452, -0.0024814606, 0.015533447, 0.008979797, -0.029876709, -0.012611389, -0.005832672, 0.03503418, 0.06097412, 0.002462387, 0.0395813, 0.009994507, 0.008613586, -0.06945801, 0.022903442, -0.024627686, -0.05154419, 0.0025196075, 0.03100586, -0.015716553, 0.010917664, -0.032806396, 0.019363403, -0.015838623, 0.038024902, 0.055603027, 0.044555664, -0.02760315, 0.016998291, -0.008644104, -0.036712646, -0.010719299, 0.029434204, -0.00983429, 0.026641846, 0.011207581, 0.019058228, 0.021408081, -0.013000488, 0.018844604, 0.0063705444, 0.025299072, -0.038879395, -0.0027751923, -0.025985718, 0.040924072, -0.019317627, 0.009590149, 0.038604736, 0.062805176, 0.033325195, -0.011047363, 0.05218506, 0.085998535, 0.05987549, -0.04559326, -0.024917603, 0.028869629, -0.008140564, -0.026138306, -0.020126343, 0.020339966, -0.01411438, 0.016296387, -0.025680542, -0.026672363, 0.0105896, -0.0012674332, 0.018432617, 0.02645874, 0.043823242, -0.052093506, 0.040924072, -0.036193848, 0.0014190674, -0.02645874, 0.040802002, -0.014526367, 0.066589355, 0.06402588, 0.006252289, -0.009056091, -0.003622055, 0.024795532, 0.027740479, 0.0016069412, -0.019042969, 0.014671326, 0.023040771, -0.019927979, 0.005935669, 0.058441162, -0.025131226, -0.029632568, 0.012817383, -0.02394104, -0.012557983, -0.004589081, -0.03491211, 0.0023498535, 0.001996994, 0.03970337, -0.0052108765, 0.035614014, 0.009346008, -0.07739258, -0.053863525, -0.02368164, 0.03265381, -0.023635864, -0.006713867, -0.0103302, -0.004699707, 0.021072388, 0.012992859, 0.02798462, -0.03768921, -0.030441284, 0.023071289, -0.06359863, 0.023788452, -0.00869751, 0.0115356445, -0.008911133, 0.01612854, 0.010215759, -0.08135986, 0.07141113, 0.008201599, 0.022216797, -0.030685425, 0.025848389, 0.0015506744, -0.00592041, 0.024169922, 0.019607544, 0.05041504, -0.009269714, -0.035095215, -0.01550293, 0.0070610046, -0.00466156, -0.008071899, 0.013633728, -0.0050849915, 0.018539429, 0.015625, -0.01876831, -0.0006480217, -0.020065308, -0.010116577, -0.011711121, -0.0020484924, -0.005596161, 0.058532715, -0.025390625, -0.06210327, -0.050109863, -0.025756836, -0.0010881424, -0.029388428, -0.013977051, -0.044311523, 0.020248413, -0.00047254562, -0.051483154, -0.0028190613, 0.028182983, -0.008331299, 0.025497437, -0.024261475, 0.03955078, -0.059631348, -0.07409668, -0.012649536, -0.024749756, -0.06866455, -0.04498291, -0.004837036, -0.072265625, -0.015090942, 0.06604004, 0.0060310364, -0.056915283, 0.0049743652, 0.00945282, 0.025039673, 0.007446289, 0.027801514, -0.040802002, -0.018447876, -0.016815186, 0.00012373924, 0.059265137, -0.0067367554, 0.001074791, 0.021118164, 0.017120361, 0.034454346, -0.029937744, 0.016937256, 0.02999878, 0.024505615, 0.008010864, 0.04598999, -0.012275696, -0.021881104, -0.0066986084, 0.029678345, -0.08496094, 0.0027275085, 0.007572174, 0.0015821457, 0.018157959, -0.018066406, -0.069885254, -0.028930664, -0.087524414, -0.005844116, -0.0119018555, -0.03677368, 0.007472992, -0.06414795, -0.025299072, -0.060791016, 0.011161804, 0.061584473, -0.03439331, 0.022567749, -0.029159546, 0.017852783, -0.013999939, 0.015556335, 0.02796936, -0.03125, 0.0715332, -0.030395508, -0.005886078, -0.06933594, 0.025238037, 0.03366089, -0.051483154, -0.019851685, -0.0113220215, 0.044647217, -0.037200928, 0.029815674, -0.013053894, -0.005470276, -0.0055999756, 0.014678955, 0.0031776428, 0.024551392, -0.014144897, -0.055664062, 0.027404785, -0.040374756, -0.044006348, -0.010246277, -0.002122879, 0.0056381226, 0.0049476624, -0.016586304, -0.0070114136, -0.038024902, 0.01222229, 0.0022659302, 0.012084961, 0.009773254, 0.072631836, 0.017471313, -0.014434814, -0.001534462, 0.008384705, 0.037597656, 0.028915405, -0.02897644, -0.038513184, -0.045043945, 0.0335083, 0.0015382767, -0.026321411, -0.015945435, 0.037231445, 0.009017944, -0.0005645752, -0.009384155, -0.01777649, 0.044403076, 0.019256592, 0.0023441315, -0.0012350082, -0.026382446, 0.030776978, 0.03564453, -0.03225708, -0.046844482, -0.086242676, 0.0028095245, -0.113708496, 0.10974121, 0.06439209, -0.026794434, 0.13244629, 0.06286621, -0.018676758, 0.050750732, 0.022323608, -0.011817932, -0.0051574707, 0.03878784, -0.045684814, 0.033081055, 0.014694214, -0.015235901, 0.01701355, 0.009757996, -0.05682373, 0.012992859, 0.014862061, -0.032592773, -0.00806427, -0.011543274, -0.022201538, 0.005329132, 0.008811951, 7.0393085e-05, -0.025741577, -0.013626099, 0.031311035, 0.017745972, -0.01675415, 0.034484863, -0.03366089, -0.014518738, -0.019638062, 0.0022888184, 0.004016876, 0.025756836, -0.014083862, 0.03753662, 0.0042686462, 0.0030441284, -0.05429077, 0.017501831, -0.001376152, 0.00066041946, 0.014778137, 0.016326904, 0.014892578, 0.0101623535, -0.0060920715, -0.0090408325, -0.0115737915, -0.024520874, -0.03930664, -0.03048706, 0.02998352, 0.03729248, -0.024398804, -0.025848389, 0.00035953522, -0.034484863, -0.0032844543, -0.008117676, -0.0077285767, -0.026870728, 0.0022068024, 0.01134491, -0.0496521, 0.0009994507, -0.018630981, -0.012786865, -0.06896973, 0.0357666, 0.0022296906, -0.028411865, 0.0012159348, 0.03250122, -0.014022827, -0.026657104, 0.01977539, 0.019821167, -0.005268097, -0.032073975, -0.005569458, -0.004558563, -0.036834717, 0.012542725, 0.04373169, -0.030151367, 0.0037727356, -0.04034424, -0.020523071, -0.02029419, 0.031463623, 0.048950195, -0.036895752, 0.030044556, -0.0109939575, -0.05142212, -0.04171753, -0.034973145, 0.053741455, -0.053497314, -0.03656006, -0.04647827, 0.040771484, -0.0011787415, 0.014190674, -0.019760132, 0.009681702, 0.0014362335, 0.0040664673, -0.061340332, -0.041534424, 0.0036640167, -0.054107666, 0.017028809, -0.008117676, -0.014755249, 0.061157227, 0.086242676, 0.00031757355, -0.0023555756, -0.014892578, -0.02331543, 0.0008945465, 0.042938232, -0.04586792, -0.0007033348, -0.049926758, 0.0005598068, -0.04336548, 0.054351807, 0.030914307, -0.0005517006, 0.009292603, 0.00059604645, -0.00018441677, -0.045440674, 0.0184021, 0.016220093, -0.0058403015, 0.007888794, -0.018493652, -0.035705566, -0.037902832, -0.035980225, -0.004749298, 0.025360107, 0.0362854, -0.028137207, -0.012954712, -0.014160156, -0.00063848495, 0.028549194, -0.017608643, 0.02394104, -0.0115737915, -0.036224365, 0.071899414, -0.026763916, -0.0385437, 0.007858276, -0.013267517, -0.025741577, -0.005317688, 0.0030269623, -0.050933838, 0.040405273, 0.035980225, 0.025924683, -0.006706238, 0.019973755, 0.028213501, 0.00036501884, -0.0055885315, 0.06311035, 0.0006957054, -0.0041770935, 0.008781433, 0.00028014183, 0.011238098, 0.03375244, -0.03048706, 0.027862549, 0.021896362, -0.035186768, 0.01727295, -0.030136108, 0.0039634705, -0.015792847, 0.011642456, 0.0072135925, -0.01171875, -0.04901123, 0.0039749146, 0.036895752, 0.054229736, 0.020843506, -0.055999756, 0.016189575, -0.0042533875, -0.0061035156, 0.007217407, -0.0006222725, -0.033691406, -0.012161255, 0.0004441738, -0.04257202, -0.01259613, -0.020111084, -0.042785645, 0.027038574, -0.0041389465, 0.01725769, 0.021377563, 0.013168335, -0.03466797, -0.022216797, 0.007789612, -0.00035834312, -0.021850586, -0.019470215, -0.0087890625, -0.020431519, -0.019134521, 0.046295166, 0.012992859, 0.016738892, -0.06793213, -0.0546875, -0.018661499, 0.03717041, 0.018829346, 0.058685303, -0.017715454, 0.017349243, 0.01512146, -0.022628784, 0.009262085, 0.0017461777, -0.04257202, 0.00034928322, 0.02760315, 0.04257202, -0.037078857, 0.0082473755, 0.028518677, -0.0390625, -0.013694763, -0.034820557, 0.07623291, -0.037261963, -0.020553589, 0.08465576, 0.0010175705, 0.036071777, 0.0056648254, -0.0058898926, -0.05709839, 0.009048462, 0.0181427, -0.095947266, -0.009941101, -0.03640747, 0.009544373, 0.008010864, 0.010948181, -0.005001068, 0.046875, -0.018295288, -0.041259766, -0.02909851, 0.007797241, -0.0025634766, -0.03744507, 0.01335907, -0.00010305643, 0.004524231, 0.0093307495, 0.017196655, -0.012550354, 0.015823364, 0.021728516, 0.011146545, 0.017501831, -0.047668457, 0.008148193, 0.03414917, 0.038513184, 0.065979004, -0.0022506714, -0.039031982, -0.008995056, 0.03805542, 0.044647217, -0.011665344, -0.04147339, -0.013572693, -0.0036449432, 0.00019729137, 0.020187378, -0.0010404587, -0.011276245, -0.002456665, 0.00434494, 0.019851685, 0.0043678284, 0.03488159, 0.036315918, 0.005897522, -0.038635254, -0.005432129, 0.01878357, -0.041748047, 0.024398804, -0.028717041, -0.001036644, -0.00566864, -0.017364502, -0.016448975, -0.010421753, 0.04714966, -0.02960205, 0.031829834, -0.0009255409, -0.0061073303, 0.056274414, -0.028289795, 0.03756714, -0.009109497, -0.05657959, -0.010185242, -0.019424438, -0.004722595, 0.014518738, 0.04071045, -0.0023345947, 0.028060913, -0.012634277, -0.0012216568, 0.017852783, -0.031555176, -0.0028381348, -0.032348633, 0.0034255981, -0.024398804, -0.05340576, -0.018295288, -0.017288208, 0.011955261, 0.00680542, 0.039520264, 0.006855011, 0.01739502, -0.020874023, 0.019989014, -0.05758667, -0.025634766, 0.014404297, -0.0053901672, -0.00957489, 0.009117126, -0.012435913, 0.014350891, 0.031082153, -0.03112793, 0.0058517456, -0.0178833, 0.01499939, -0.03010559, -0.0011377335, -0.02468872, -0.032196045, -0.0028495789, 0.0061798096, 0.0008087158, 0.011070251, -0.0063056946, 0.026916504, 0.029708862, -0.048858643, 0.042419434, -0.064941406, 0.06976318, 0.029830933, 0.041137695, -0.061706543, -0.035064697, -0.007926941, -0.011398315, -0.0043182373, 0.05142212, -0.0126571655, -0.02558899, 0.011672974, -0.020339966, 0.014884949, -0.057800293, 0.0025978088, -0.007282257, 0.01651001, 0.036010742, 0.034179688, -0.025604248, -0.0011959076, -0.018676758, -0.006160736, 0.0049552917, -0.036254883, -0.009429932, -0.0007214546, 0.031234741, -0.017028809, 0.009819031, -0.005443573, -0.035705566, 0.013442993, -0.009529114, 9.953976e-05, -0.005584717, -0.027893066, 0.0015687943, 0.018096924, -0.022781372, 0.018295288, 0.04019165, -0.02835083, -0.026229858, 0.010467529, 0.025039673, -0.042541504, -0.003545761, -0.00856781, 0.024612427, 0.0020523071, 0.048339844, -0.023635864, -0.05114746, -0.049621582, 0.023895264, -0.071899414, -0.02911377, 0.04159546, -0.0064430237, 0.022766113, -0.0031929016, -0.04345703, 0.07739258, 0.021026611, -0.02470398, 0.004211426, -0.007507324, -0.01398468, 0.04928589, 0.0234375, -0.037353516, -0.012504578, 0.004737854, 0.014930725, 0.033721924, 0.020446777, 0.0064697266, -0.075683594, -0.01574707, -0.036712646, 0.017181396, 0.00056648254, -0.0115737915, 0.025115967, 0.0012321472, -0.03842163, 0.012413025, 0.014801025, 0.019180298, 0.027557373, 0.025482178, 0.017608643, -0.01737976, -0.030258179, -0.0054855347, -0.0027828217, 0.024398804, 0.01210022, -0.0009551048, 0.012176514, 0.03326416, -0.02482605, 0.018234253, 0.027160645, -0.013587952, 0.01878357, 0.0063323975, 0.007484436, 0.0067329407, -0.007091522, 0.0513916, -0.014373779, 0.005264282, 0.0022678375, 0.00020718575, -0.0027313232, -0.0057868958, -0.038604736, 0.013916016, -0.013160706, -0.02420044, 0.016174316, -0.062286377, 0.003238678, 0.032196045, 0.013076782, 0.002588272, 0.0012083054, -0.04876709, -0.0016746521, 0.02508545, 0.016815186, 0.029067993, -0.03353882, 0.0869751, 0.022369385, 0.0135269165, -0.02822876, -0.09832764, -0.050079346, 0.015266418, -0.0014772415, 0.0009889603, 0.03277588, -0.021102905, 0.023605347, 0.020401001, 0.022354126, 0.016418457, -0.009307861, 0.05392456, 0.0011959076, -0.004928589]}, "B00LP57K7A": {"id": "B00LP57K7A", "original": "Brand: Napoleon\nName: Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n7 burner grill with up to 86,000 BTUs\nTotal cooking area: 1000 sq. In\nDual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off\n9.5 Mm stainless steel wave cooking grids\n", "metadata": {"Name": "Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel", "Brand": "Napoleon", "Description": "", "Features": "This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n7 burner grill with up to 86,000 BTUs\nTotal cooking area: 1000 sq. In\nDual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off\n9.5 Mm stainless steel wave cooking grids", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.0036067963, 0.013198853, -0.035583496, 0.024169922, -0.0019779205, -0.021865845, 0.00856781, -0.022155762, -0.013114929, -0.020629883, -0.048217773, 0.009765625, -0.030410767, -0.043914795, 0.04812622, -0.052246094, 0.015159607, 0.020126343, 0.016418457, -0.02607727, 0.003107071, -0.016937256, 0.014007568, 0.06414795, 0.033447266, -0.019882202, 0.0025939941, 0.01626587, 0.033172607, 0.022842407, 0.0236969, -0.033203125, 0.038909912, 0.009017944, -0.022140503, -0.011039734, -0.0069770813, -0.008850098, -0.010169983, 0.013801575, -0.006248474, 0.012039185, -0.014099121, 0.013870239, -0.03024292, -0.045318604, 0.021240234, -0.010108948, 0.011077881, -0.008483887, 0.028533936, -0.025100708, 0.03967285, 0.025680542, -0.044036865, -0.016311646, -0.03463745, -0.0074539185, 0.018569946, 0.014533997, 0.00032424927, -0.015609741, 0.020553589, -0.0069885254, -0.022216797, 0.008605957, 0.089538574, -0.01763916, -0.02281189, -0.055755615, 0.019470215, 0.01826477, -0.01676941, -0.0046195984, -0.026626587, -0.018325806, 0.024520874, -0.0345459, 0.0058937073, 0.015090942, 0.014526367, 0.013832092, 0.016952515, -0.01159668, -0.00415802, -0.0006747246, -0.013267517, -0.019363403, -0.028457642, -0.026824951, -0.020950317, -0.01499939, -0.087646484, 0.063964844, 0.017684937, 0.006313324, -0.06652832, -0.048706055, 0.040649414, 0.05279541, 0.003522873, -0.017822266, 0.040618896, -0.016830444, 0.0016927719, 0.10284424, 0.0016994476, 0.06713867, 0.031555176, 0.0010204315, 0.033294678, -0.08087158, -0.004371643, -0.049438477, -0.01083374, 0.02861023, -0.0070495605, -0.007888794, 0.014602661, -0.032073975, -0.03741455, 0.0011777878, 0.009025574, 0.021072388, 0.039123535, 0.053833008, 0.015274048, -0.024871826, -0.044647217, 0.044769287, -0.0069351196, -0.017364502, 0.013893127, 0.062561035, 0.0043144226, -0.015182495, 0.05307007, -0.009269714, 0.015541077, 0.010467529, 0.00095033646, -0.024276733, -0.0034008026, 0.017593384, -0.0073127747, -0.009750366, 0.024230957, 0.02305603, -0.002357483, -0.02784729, 0.0076179504, 0.037078857, 0.04336548, 0.0037899017, -0.041534424, 0.00843811, -0.042633057, 0.0040397644, -0.023544312, 0.0063552856, -0.05899048, -0.015129089, 0.03945923, -0.012939453, -0.02130127, 0.025863647, 0.036468506, 0.009796143, 0.024612427, 0.011650085, -0.013038635, -0.002658844, 0.056640625, 0.007293701, -0.014808655, 0.011512756, 0.010017395, 0.03036499, 0.051086426, -0.0725708, -0.07147217, -0.042663574, 0.10522461, -0.050476074, 0.0054473877, -0.016204834, 0.0012893677, -0.016998291, 0.033081055, 0.01626587, -0.021759033, 0.007511139, -0.027160645, 0.018920898, 0.015686035, -0.015945435, -0.015960693, -0.0028305054, -0.01209259, -0.015365601, -0.021408081, 0.038635254, -0.014060974, 0.010017395, -0.010627747, 0.01209259, 0.0009202957, 0.03527832, -0.00043725967, 0.021881104, -0.014877319, 0.016143799, 0.02658081, -0.085876465, -0.021972656, 0.04046631, -0.031051636, 0.023452759, 0.00541687, 0.04220581, 0.013046265, 0.011512756, 0.0019426346, -0.027511597, 0.0022201538, -0.0039100647, -0.02835083, 0.007381439, 0.014099121, -0.009506226, 0.02204895, 0.026626587, 0.04675293, 0.064331055, -0.0007710457, 0.02520752, 0.031311035, 0.03289795, -0.031677246, -0.009719849, 0.010925293, -0.033081055, -0.020233154, 0.0093688965, 0.01802063, 0.037841797, 0.021865845, -0.004283905, -0.039031982, -0.0015077591, 0.016525269, 0.030273438, 0.015853882, 0.0231781, -0.011482239, 0.03829956, 0.013572693, 0.022109985, 0.018829346, 0.0061035156, -0.0034770966, 0.09667969, 0.016983032, 0.039215088, 0.025650024, 0.021240234, 0.028259277, 0.039855957, -0.06945801, 0.023468018, 0.03289795, 0.07299805, -0.00687027, -0.010292053, -0.033813477, -0.009140015, -0.010955811, 0.033447266, -0.019546509, -0.03149414, 0.025161743, -0.046813965, -0.0052108765, -0.011482239, 0.08380127, -0.030654907, 0.016662598, 0.022018433, -0.04248047, -0.042419434, -0.0023231506, 0.0007548332, -0.028823853, 0.0063591003, 0.016189575, -0.025909424, 0.06762695, 0.019577026, 0.007419586, -0.022277832, 0.02709961, 0.021652222, -0.05331421, 0.020858765, 0.005340576, -0.005355835, 0.0003633499, 0.02748108, 0.0012273788, -0.015960693, -0.0021953583, 0.05041504, 0.035186768, -0.0068244934, 0.049468994, 0.010604858, 0.0069732666, 0.043792725, 0.049316406, 0.053863525, -0.054779053, 0.026657104, -0.050689697, -0.020492554, 0.02128601, 0.041748047, -0.061035156, -0.006668091, -0.024917603, -0.012619019, -0.0010919571, -0.07006836, -0.040863037, -0.024261475, 0.009101868, 0.0077209473, 0.0034675598, 0.034210205, -0.007045746, -0.07183838, -0.0025196075, -0.009254456, -0.0076179504, 0.02407837, -0.041992188, 0.038970947, -0.0066490173, 0.020828247, -0.030578613, -0.014556885, -0.001619339, -0.050079346, -0.015792847, -0.027786255, -0.0025138855, 0.042144775, -0.0062408447, -0.032989502, 0.019561768, -0.061798096, 0.0062789917, -0.00095415115, -0.026062012, -0.014411926, 0.04547119, -0.016967773, -0.02255249, -0.017578125, -0.0050315857, 0.040527344, 0.027633667, 0.008079529, -0.06304932, -0.02507019, -0.04638672, -0.004840851, 0.0065231323, -0.03643799, 0.032714844, 0.014518738, 0.005191803, 0.0017700195, 0.019943237, -0.0072631836, 0.013900757, 0.011955261, -0.0029888153, -0.003189087, 0.023483276, -0.010238647, 0.0052986145, 0.013839722, -0.030761719, -0.027435303, 0.004337311, 0.008422852, -0.030654907, -0.007671356, -0.02822876, -0.00057029724, -0.0357666, -0.006134033, 0.002040863, -0.028656006, 0.0050354004, -0.08929443, -0.03250122, -0.03439331, 0.0116119385, 0.02684021, -0.007827759, -0.05432129, -0.023986816, -0.07232666, 0.0018157959, 0.0067596436, 0.018997192, -0.0029830933, 0.031707764, -0.05618286, -0.00440979, 0.009094238, -0.00020110607, 0.004245758, -0.020599365, 0.036315918, -0.03842163, -0.0037651062, 0.0033931732, 0.044525146, -0.009208679, 0.00032520294, 0.009025574, 0.015449524, -0.003332138, 0.06768799, -0.019317627, -0.0047836304, 0.0052223206, -0.039398193, -0.044128418, -0.019104004, 0.027267456, 0.05090332, 0.0056610107, 0.008735657, -0.01751709, -0.047607422, 0.005382538, -0.048950195, 0.0062065125, -0.017623901, 0.03866577, 0.010566711, 0.0020503998, 0.092163086, 0.053344727, 0.050048828, 0.0024147034, 0.013961792, -0.005466461, -0.051635742, 0.083984375, 0.01763916, 0.039642334, -0.015777588, -0.019470215, 0.003200531, -0.041381836, 0.044830322, 0.023788452, -0.013542175, -0.017059326, -0.018981934, -0.009338379, -0.041809082, 0.02659607, 0.028900146, -0.0069618225, -0.032196045, -0.060791016, 0.017837524, -0.053131104, 0.07635498, 0.05581665, -0.015686035, 0.08441162, 0.038085938, 0.011497498, 0.048675537, 0.027664185, 0.010620117, -0.012130737, 0.08569336, -0.0069007874, 0.0005121231, 0.01348114, -0.04663086, -0.00084257126, -0.027328491, -0.028244019, 0.011207581, 0.007247925, -0.010437012, -0.020690918, 0.03970337, -0.015304565, -0.022140503, -0.008033752, -0.08111572, -0.020141602, -0.070129395, -0.006931305, 0.019699097, -0.03640747, -0.06878662, 0.028549194, -0.013046265, -0.056915283, 0.019607544, -0.01146698, 0.0022888184, -0.028533936, 0.03955078, 0.019332886, 0.026535034, -0.08190918, 0.032287598, -0.041870117, 0.012451172, 0.04232788, 0.046447754, 0.017959595, -0.017654419, -0.01777649, -0.019088745, -0.00011742115, 0.006225586, -0.027404785, -0.04876709, 0.0058555603, 0.037902832, 0.00017392635, -0.024017334, 0.0037231445, -0.021240234, 0.005710602, 0.0016794205, -0.059936523, -0.009971619, 0.0008239746, 0.008651733, -0.045013428, -0.033416748, -0.015792847, -0.047180176, -0.028808594, -0.009933472, -0.0050468445, 0.03149414, 0.006038666, 0.026992798, -0.04220581, -0.008117676, -0.035736084, 0.009643555, 0.0030078888, -0.021133423, 0.052825928, -0.058380127, -0.0010213852, -0.02029419, 0.14074707, 0.034606934, 0.023880005, -0.026260376, -0.04663086, -0.010505676, 0.009925842, 0.044891357, -0.009315491, 0.031799316, -0.03692627, -0.03677368, -0.03741455, 0.011947632, 0.039855957, -0.028152466, -0.0071258545, 0.0028629303, 0.03579712, -0.014579773, 0.020889282, -0.020706177, -0.010971069, -0.0071525574, -0.014297485, -0.046081543, 0.006008148, 0.0033550262, 0.0027256012, 0.023895264, 0.0027179718, -0.0143966675, -0.011962891, 0.012863159, 0.0519104, -0.04272461, -0.0023612976, 0.01701355, 0.009971619, 0.02583313, -0.015281677, -0.014427185, -0.004257202, -0.011993408, -0.049713135, 0.08972168, 0.045074463, 0.018417358, 0.019317627, 0.022125244, 0.020080566, -0.060028076, -0.010467529, -0.034118652, -0.030517578, -0.0413208, -0.026016235, 0.026733398, -0.013885498, 0.016723633, 0.00044035912, 0.0065956116, 0.032165527, -0.019561768, 0.0069885254, -0.013786316, 0.009513855, 0.038513184, -0.015289307, 0.00037503242, 0.018035889, -0.039733887, 0.04949951, -0.052124023, -0.021484375, 0.045043945, -0.030029297, -0.028945923, -0.0020427704, -0.0048561096, -0.01007843, 0.019470215, -0.0037269592, 0.020980835, -0.044891357, -0.002571106, 0.017868042, -0.0076942444, -0.062347412, 0.015388489, -0.026351929, 0.015586853, 0.026824951, -0.027313232, 0.046203613, 0.053222656, -0.020645142, 0.00020456314, 0.044952393, -0.0463562, 0.014183044, -0.008285522, -0.019363403, -0.030151367, 0.044830322, -0.003419876, -0.0013694763, -0.049072266, -0.0070114136, -0.0025863647, 0.038970947, 0.01637268, -0.04473877, 0.028869629, -0.03253174, -0.023330688, 0.0055122375, 0.0104599, -0.021606445, -0.01109314, -0.00042176247, -0.028213501, -0.0062217712, -0.0057029724, -0.008842468, -0.03729248, -0.00945282, -0.026641846, 0.01133728, -0.00035357475, 0.003435135, -0.026565552, 0.016815186, 0.015991211, -0.026107788, 0.0115356445, 0.012229919, -0.007091522, 0.026733398, 0.045562744, -0.02420044, -0.014968872, -0.008468628, 0.016113281, 0.032836914, -0.0107040405, -0.01184845, 0.028366089, -0.010520935, 0.017547607, 0.026443481, 0.00047445297, 0.013320923, 0.0103302, -0.055664062, 0.005847931, 0.03274536, 0.06378174, -0.0116119385, -0.025146484, 0.0647583, -0.03616333, -0.006954193, -0.08880615, 0.010627747, -0.04208374, -0.060760498, 0.01953125, 0.0014839172, -0.001452446, 0.007434845, -0.0072402954, -0.051330566, 0.045410156, 0.0099105835, -0.09075928, 0.0048332214, -0.0149002075, -0.018493652, 0.02468872, -0.0008444786, -0.022399902, 0.035888672, -0.02418518, -0.026412964, -0.032104492, -0.007297516, 0.0021533966, -0.006362915, 0.016723633, -0.0020694733, 0.012565613, -0.004917145, 0.042175293, -0.037078857, -0.042236328, 0.026351929, 0.026535034, 0.01210022, 0.0027122498, 0.001789093, 0.032836914, -0.04498291, 0.044555664, 0.0040626526, 0.0023708344, -0.004875183, 0.028533936, -0.0024089813, 0.051879883, -0.08294678, -0.013084412, -0.009742737, -0.008995056, 0.008293152, 0.010116577, 0.0018615723, 0.011695862, 0.01965332, 0.025497437, 0.033447266, 0.0074768066, 0.021972656, -0.017410278, -0.016143799, -0.0007195473, -0.012565613, -0.026382446, -0.05444336, -0.039855957, -0.0040397644, 0.034851074, -0.00018024445, 0.012321472, -0.02368164, 0.035888672, 0.018676758, 0.01272583, 0.0102005005, 0.0345459, 0.0016069412, -0.014457703, -0.0657959, 0.030059814, -0.011192322, -0.02192688, 0.007068634, 0.033050537, -0.0015869141, 0.01687622, 0.020065308, 0.016220093, -0.05697632, 0.044769287, 0.020339966, -0.0619812, -0.017089844, 0.011108398, 0.03643799, 0.0009365082, -0.050720215, -0.036743164, -0.0036811829, 0.029220581, 0.0015954971, -0.0065193176, 0.02619934, 0.01737976, -0.048095703, 0.009757996, -0.033569336, -0.026519775, -0.030731201, 0.016906738, 0.019927979, 0.0096588135, 0.0003912449, 0.0023651123, 0.064941406, -0.0501709, 0.027923584, -0.002216339, 0.013221741, -0.096069336, 0.021148682, -0.019485474, -0.01751709, -0.02645874, -0.012145996, 0.025161743, 0.0067443848, -0.028381348, 0.048736572, 0.0039749146, -0.012817383, 0.026870728, -0.034362793, 0.009468079, 0.022232056, 0.036987305, -0.034606934, -0.018234253, -0.006866455, -0.028686523, 0.028900146, 0.00021207333, 0.0053749084, 0.009803772, -0.033813477, 0.008888245, 0.037231445, -0.026443481, 0.031585693, -0.040527344, -0.0025348663, 0.058563232, 0.05065918, 0.014053345, 0.016204834, -0.012130737, 0.0037269592, 0.02722168, 0.055267334, 0.036499023, 0.022384644, -0.005367279, -0.0021648407, -0.0541687, 0.034118652, -0.012962341, 0.02897644, -0.027954102, 0.027755737, -0.024368286, -0.070495605, -0.028808594, -0.006793976, -0.038360596, 0.057434082, 0.038604736, -0.033050537, -0.027389526, 0.0024967194, 0.0016393661, -0.03213501, -0.014389038, 0.01927185, 0.036834717, -0.02619934, 0.06365967, -0.07635498, -0.046173096, -0.040802002, 0.050445557, -0.16564941, -0.040222168, 0.009597778, -0.014312744, -0.0025596619, -0.024765015, -0.023361206, 0.04272461, 0.028717041, -0.014389038, -0.0075302124, 0.0013628006, 0.00030469894, 0.016296387, 0.002161026, -0.029327393, -0.029830933, -0.0052223206, -0.017730713, 0.046936035, -0.012794495, 0.0013713837, -0.012489319, 0.02166748, 0.017669678, -0.014953613, -0.03164673, 0.016021729, -0.023925781, 0.010597229, -0.040130615, -0.051239014, -0.007019043, 0.026733398, 0.024108887, 0.003955841, 0.046295166, -0.022979736, -0.06695557, -0.055511475, -0.037353516, 0.039794922, 0.010009766, -0.025436401, -0.009056091, 0.017654419, -0.00021374226, -0.010971069, 0.014533997, 0.009666443, -0.005065918, 0.009819031, -0.0015668869, -0.016189575, -0.003736496, -0.00068712234, -0.015594482, -0.046295166, -0.008018494, -0.0033721924, 0.0030117035, -0.010223389, -0.021774292, 0.010894775, -0.014259338, 0.011070251, 0.0039596558, -0.00970459, -0.013885498, 0.0107040405, 0.008033752, 0.012031555, 9.0658665e-05, -0.02772522, -0.0104522705, 0.004180908, 0.030319214, 0.0068244934, -0.05718994, 0.02949524, -0.0055656433, 0.023544312, -0.04837036, -0.04800415, -0.053588867, 0.028564453, 0.010231018, 0.017532349, 0.06518555, -0.0021133423, -0.0019006729, 0.00074625015, -0.07525635, -0.04385376, 0.013389587, 0.027770996, -0.029251099, 0.01940918]}, "B07GC2F1YW": {"id": "B07GC2F1YW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "metadata": {"Name": "Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver", "Brand": "Z GRILLS", "Description": "", "Features": "ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.023162842, 0.015411377, -0.023086548, -0.01235199, 0.0047187805, -0.006034851, -0.007167816, -0.029830933, -0.0029964447, 0.003396988, -0.031921387, 0.028182983, 0.0059127808, -0.029022217, 0.035858154, -0.010421753, 0.0014295578, 0.037322998, 0.0052871704, -0.032165527, 0.009628296, -0.021652222, -0.032562256, 0.08300781, 0.048614502, -0.07098389, -0.020431519, 0.020858765, 0.025177002, 0.0033779144, 0.026107788, 0.01259613, 0.028808594, 0.023025513, -0.037597656, -0.022766113, 0.002571106, -0.0041007996, -0.0010852814, 0.0048332214, 0.025115967, -0.020385742, -0.07104492, -0.0181427, -0.051635742, -0.030563354, 0.027435303, 0.01499176, 0.006111145, -0.015808105, 0.0021018982, -0.0138168335, 0.016418457, -0.029190063, -0.022888184, -0.019210815, 0.014579773, 0.015640259, 0.0236969, -0.015396118, -0.022125244, 0.020141602, 0.0053977966, 0.013244629, -0.0040893555, 0.0076675415, 0.028045654, -0.008956909, 0.004425049, -0.0016794205, 0.0066223145, -0.00043296814, 0.0059547424, 0.0038909912, -0.04046631, -0.030670166, 0.04006958, -0.028701782, 0.0016613007, 0.024093628, 0.01638794, -0.011222839, 0.046539307, 0.0007839203, -0.017913818, -0.017028809, -0.013313293, -0.0040016174, 0.02532959, -0.040374756, 0.012062073, -0.018081665, -0.03729248, 0.061279297, -0.011390686, -0.013389587, -0.024932861, -0.042785645, 0.038604736, 0.051727295, 0.007873535, -0.040100098, 0.045135498, -0.0066833496, -0.046051025, 0.0026340485, 0.031311035, 0.030792236, -0.0066337585, 0.032348633, -0.027618408, -0.015106201, -0.039489746, -0.0423584, -0.014854431, 0.041259766, -0.030197144, 0.00016129017, 0.006969452, 0.022262573, 0.002445221, 0.018096924, 0.0026474, 0.015342712, 0.019058228, 0.035949707, -0.0028419495, -0.018707275, -0.062561035, 0.033843994, -0.029571533, -0.012268066, 0.062438965, 0.04345703, 0.008125305, -0.028518677, 0.0619812, 0.04232788, 0.014472961, 0.014015198, -0.031097412, -0.04156494, 0.020736694, -0.018173218, 0.0063552856, -0.017715454, 0.009277344, 0.04083252, -0.003929138, -0.01020813, 0.040222168, 0.0047416687, 0.050933838, -0.021591187, -0.046203613, -0.033966064, -0.04550171, -0.021911621, -0.0076828003, -0.03265381, -0.016342163, -0.01423645, -0.022125244, -0.033996582, -0.050842285, 0.021942139, 0.025054932, 0.019836426, 0.003025055, 0.025009155, -0.0039253235, 0.014518738, -0.00466156, 0.021514893, 0.022506714, 0.015419006, -0.025726318, 0.06311035, 0.05609131, -0.09844971, -0.055603027, -0.0423584, 0.12023926, -0.049713135, -0.00315094, -0.02961731, 0.019485474, 0.00579834, 0.0018367767, 0.010185242, 0.021408081, -0.0019044876, 0.013931274, -0.014099121, 0.006175995, 0.036102295, -0.052978516, 0.032196045, -0.023391724, -0.03756714, -0.016738892, -0.0031147003, -0.030975342, 0.010635376, -0.027679443, -0.016433716, -0.011375427, 0.020889282, 0.030853271, 0.03253174, -0.0015869141, 0.013725281, 0.0065193176, -0.04888916, -0.03756714, 0.0067214966, -0.028137207, 0.027038574, -0.008293152, 0.04208374, -0.031585693, -0.0077209473, -0.026885986, -0.014663696, 0.064819336, 0.0023212433, -0.004261017, -0.0068092346, 0.0769043, -0.0052490234, 0.0006389618, 0.017471313, 0.022827148, 0.011154175, -0.021408081, 0.043792725, 0.074401855, 0.04147339, -0.029953003, -0.01777649, 0.019744873, -0.052337646, -0.0046920776, 0.02494812, -0.0014810562, -0.0234375, 0.0068206787, 0.014160156, -0.018585205, -0.0017995834, -0.0209198, 0.018249512, 0.027252197, -4.941225e-05, 0.0045051575, 0.04019165, -0.017532349, 0.04446411, -0.013282776, 0.029510498, -0.025527954, 0.06304932, 0.05795288, -0.0099487305, 0.029159546, 0.032470703, 0.04647827, 0.046295166, -0.018997192, 0.01789856, -0.0038661957, 0.011230469, 0.0030403137, 0.005973816, 0.004020691, -0.036895752, 0.030853271, 0.0031986237, -0.038513184, -0.027511597, 0.025924683, -0.003435135, 0.015541077, 0.005958557, 0.022781372, -0.036132812, 0.04336548, 0.072509766, -0.07196045, -0.07196045, 0.0028972626, -0.03829956, -0.06762695, -0.013824463, -0.023849487, -0.04071045, 0.057678223, 0.04446411, -0.0015249252, -0.003358841, -0.03302002, 0.0073394775, -0.02268982, -0.023986816, 0.004611969, -0.0020217896, 0.022369385, 0.014526367, 0.014122009, -0.03793335, 0.027908325, 0.044830322, 0.033203125, -0.045715332, 0.07543945, 0.035339355, -0.006515503, 0.025909424, 0.015838623, 0.007545471, 0.007858276, -0.025924683, -0.087890625, -0.0074882507, -0.024307251, 0.04107666, -0.016326904, -0.028671265, -0.025482178, 0.028442383, 0.016342163, 0.012420654, 0.004798889, -0.002696991, -0.004032135, 0.0011100769, 0.00075626373, -0.0259552, -0.011039734, -0.044708252, 0.012191772, -0.004611969, 0.00843811, 0.0067863464, -0.03552246, -0.0060539246, 0.048309326, -0.010314941, -0.0034618378, 0.02407837, -0.00052404404, -0.010299683, 0.0017652512, -0.03842163, 0.017913818, -0.047821045, -0.02432251, -0.029846191, -0.021011353, -0.06311035, -0.03933716, 0.014480591, -0.048614502, -0.0007119179, 0.032836914, -0.0058937073, -0.00057935715, 0.006225586, -0.0062675476, 0.034729004, 0.047851562, -0.0064582825, -0.014083862, -0.022659302, -0.033050537, -0.039398193, 0.05303955, -0.029785156, -0.014099121, 0.021728516, -0.030563354, 0.00381279, -0.017547607, 0.0013237, 0.0042266846, 0.023010254, -0.008171082, 0.03414917, -0.032226562, -0.0184021, -0.031707764, 0.02520752, -0.01576233, -0.010688782, -0.018554688, -0.0073165894, -0.018249512, -0.03302002, -0.024383545, -0.009887695, -0.038604736, -0.014518738, -0.021743774, -0.042388916, 0.007144928, -0.08239746, -0.038269043, -0.043060303, 0.0024356842, 0.05117798, -0.029876709, -0.0032291412, -0.036834717, -0.004863739, -0.0014371872, 0.0043907166, -0.007255554, 0.0010128021, 0.0055389404, -0.04144287, 0.006828308, -0.027359009, -0.002822876, 0.0029640198, -0.041778564, -0.02507019, -0.040130615, 0.031341553, -0.021469116, 0.0047340393, -0.057495117, -0.012939453, 0.0149002075, -0.031585693, -0.049926758, -0.03652954, -0.013305664, -0.008659363, 0.025253296, -0.031951904, -0.07141113, -0.040527344, -0.06173706, 0.009727478, -0.009353638, -0.04147339, -0.061828613, -0.08972168, 0.03543091, -0.014526367, -0.005657196, -0.0119018555, 0.06390381, 0.02507019, -0.0067443848, 0.09259033, -0.00995636, 0.039398193, 0.06976318, -0.0060272217, 0.008575439, -0.037719727, 0.027130127, 0.046661377, -0.04220581, -0.03439331, 0.10418701, 0.006919861, 0.01361084, -0.02381897, -0.028717041, 0.03338623, 0.016204834, 0.010719299, -0.04864502, -0.035125732, 0.044311523, 0.024475098, 0.0040512085, -0.043182373, -0.01991272, 0.0021686554, -0.1026001, 0.0871582, 0.012390137, -0.010643005, 0.036224365, 0.06390381, -0.018859863, 0.04852295, 0.046569824, 0.024459839, -0.0053901672, 0.090026855, -0.020019531, -0.02444458, 0.02078247, -0.09503174, 0.0071487427, -0.0053482056, -0.030395508, 0.023864746, -0.00064611435, -0.025466919, -0.005218506, 0.008056641, 0.045410156, 0.022094727, 0.004814148, -0.034729004, 0.04421997, -0.019332886, 0.008926392, -0.0011291504, -0.031402588, -0.045562744, -0.020080566, -0.00094890594, -0.055603027, 0.013961792, 0.021820068, 0.018630981, 0.004764557, 0.01260376, 0.009788513, 0.012878418, -0.03074646, 0.010406494, 0.0030536652, -0.02784729, 0.009422302, -0.0026245117, 0.015777588, 0.03173828, 0.004184723, 0.0340271, -0.021408081, 0.01008606, 0.027755737, -0.024261475, 0.027740479, 0.018081665, -0.05697632, -0.007511139, 0.017929077, -0.054870605, -0.000702858, 0.0036087036, -0.06567383, 0.015617371, 0.004470825, 0.0013618469, -0.009925842, -0.017852783, -0.010765076, -0.058441162, -0.035583496, 0.013320923, 0.011016846, -0.01247406, -0.0140686035, 0.025863647, -0.013450623, -0.018508911, -0.010597229, 0.009086609, 0.052734375, 0.021316528, 0.0018892288, -0.02394104, -0.029281616, -0.037231445, 0.034942627, 0.0054473877, -0.0206604, -0.019577026, -0.053588867, -0.014541626, 0.0018835068, 0.042633057, 0.03060913, 0.017608643, -0.05343628, -0.038604736, -0.0034389496, -0.025619507, 0.0390625, -0.010932922, -0.004169464, -0.020721436, 0.0063552856, -0.02923584, 0.018508911, 0.0017871857, -0.0016651154, -0.013870239, 0.018035889, -0.049041748, -0.019805908, -0.0032901764, 0.018676758, -0.023605347, -0.010147095, -0.017593384, 0.038848877, -0.02281189, 0.030883789, 0.008079529, 0.0014276505, 0.019927979, -0.0045814514, 0.040252686, -0.009460449, -0.0049324036, 0.003753662, -0.029678345, -0.05239868, 0.054626465, 0.06323242, -0.004863739, -0.0074501038, -0.0015735626, -0.044799805, -0.05871582, -0.018966675, 0.051361084, 0.053588867, 0.043792725, -0.02507019, -0.00035643578, 0.0046539307, -0.034210205, -0.0031356812, 0.004928589, 0.010650635, -0.042785645, 0.034118652, -0.008651733, 0.036468506, 0.050750732, 0.00093364716, 0.009147644, -0.017089844, 0.04348755, -0.014526367, 0.003414154, 0.026123047, -0.03137207, -0.021575928, -0.03111267, -0.05078125, -0.018615723, -0.053222656, 0.01612854, 0.024841309, -0.023757935, -0.0060310364, 0.059661865, 0.02178955, 0.013343811, -0.024261475, 0.058624268, 0.010658264, -0.045684814, 0.012680054, -0.019195557, -0.027145386, 0.04324341, -0.05154419, 0.045013428, 0.015296936, -0.02670288, 0.010276794, -0.01966858, -0.01751709, -0.009742737, 0.03024292, 0.0020332336, -0.00983429, -0.03479004, -0.016067505, 0.0056648254, 0.06524658, 0.01852417, -0.03010559, 0.026885986, 0.008361816, -0.023376465, 0.040649414, -0.017715454, 0.008033752, -0.005596161, -0.000156641, -0.048858643, -0.02142334, 0.017349243, -0.029678345, -0.041534424, -0.017349243, -0.011924744, 0.022445679, -0.0085372925, 0.0014400482, -0.040527344, -0.015930176, 0.03277588, -0.0065727234, 0.00995636, -0.027236938, -0.0037403107, 0.0006971359, 0.010307312, -0.007221222, 0.002439499, -0.038635254, -0.020645142, -0.017562866, 0.0033550262, -0.007297516, 0.0501709, -0.03189087, 0.045043945, 0.03579712, 0.0031147003, 0.039123535, 0.027679443, -0.0803833, -0.013801575, -0.0011005402, 0.0056495667, -0.01524353, -0.022903442, 0.060150146, -0.03842163, -0.05117798, 0.003452301, -0.0033855438, 0.045837402, 0.023635864, 0.040252686, 0.027770996, -0.025772095, 0.052001953, 0.01134491, -0.045715332, 0.011177063, 0.022827148, -0.07116699, -0.044036865, -0.034118652, -0.00749588, -0.010795593, -0.03161621, -0.02180481, 0.05859375, 0.0103302, -0.034973145, -0.040100098, -0.046325684, 0.03857422, -0.06640625, 0.01486969, 0.0071525574, -0.011726379, 0.050323486, 0.017486572, -0.007820129, 0.048736572, 0.010513306, 0.011016846, 0.00390625, -0.003730774, -0.0012140274, 0.0362854, -0.023345947, 0.014251709, -0.01777649, -0.01374054, -7.331371e-05, 0.0463562, 0.035461426, 0.010620117, -0.044799805, -0.015197754, -0.012176514, 0.038024902, 0.030258179, -0.0078125, 0.011329651, -0.023986816, 0.017578125, 0.008796692, -0.008926392, 0.009315491, 0.02168274, -0.00957489, -0.052520752, -0.010002136, -0.05895996, -0.054779053, -0.021514893, -0.051696777, 0.024597168, 0.037872314, 0.012954712, 0.033111572, 0.021118164, 0.033721924, -0.009246826, 0.056030273, 0.0051574707, 0.012283325, 0.0056533813, -0.0045166016, 0.022079468, 0.029525757, -0.019866943, -0.0446167, 0.039520264, 0.03074646, -0.0063972473, 0.033233643, 0.022232056, 0.011703491, -0.019943237, 0.030838013, 0.034454346, -0.07385254, -0.026184082, -0.021499634, 0.030731201, -0.017562866, -0.07470703, -0.038604736, -0.031921387, 0.024627686, 0.0040245056, 0.042633057, 0.001042366, 0.026672363, 0.040527344, 0.010215759, 0.00756073, -0.010902405, 0.036895752, -0.007987976, 0.020248413, -0.01651001, -0.052764893, -0.019760132, 0.051574707, -0.05999756, -0.008125305, -0.002735138, 0.02746582, -0.037384033, 0.02079773, -0.021209717, -0.017852783, 0.026412964, -0.0021820068, -0.0038414001, -0.013931274, 0.032836914, 0.022720337, 0.019470215, -0.0007457733, 0.029037476, -0.0061302185, 0.06945801, 0.021087646, -0.024765015, -0.03463745, -0.01725769, -0.013031006, -0.03564453, 0.01890564, 0.04244995, -0.025604248, 0.072265625, 0.016952515, 0.043914795, 0.066833496, 0.004043579, 0.03366089, 0.0069999695, -0.0046463013, -0.0058135986, -0.0546875, -0.03048706, -0.04043579, 0.0085372925, 0.016296387, -0.013504028, -3.1650066e-05, 0.015960693, 0.0049324036, 0.059692383, -0.019989014, -0.005710602, 0.008605957, -0.064208984, 0.038024902, -0.005191803, -0.04647827, -0.004005432, -0.033172607, -0.05557251, 0.0026874542, -0.075805664, -0.020950317, -0.050048828, -0.038360596, -0.040161133, 0.0040512085, 0.009849548, -0.07550049, -0.023986816, -0.039001465, 0.06335449, 0.009277344, 0.030914307, -0.0028896332, -0.032592773, -0.05947876, 0.0053253174, -0.03201294, -0.015625, 0.009849548, -0.018844604, -0.007701874, -0.010047913, 0.026824951, -0.009902954, 0.043426514, -0.020370483, -0.035125732, 0.027145386, -0.008430481, 0.011245728, -0.006252289, -0.030807495, -0.0063323975, 1.1324883e-06, 0.008468628, 0.058502197, 0.01626587, -0.007347107, -0.06689453, -0.02255249, -0.052368164, 0.0317688, -0.013824463, -0.0008177757, 0.0077438354, 0.025299072, -0.018997192, -0.014640808, 0.017059326, -0.0074386597, 0.012634277, 0.027313232, 0.0061683655, -0.012199402, -0.03161621, 0.0036678314, -0.018920898, 0.010673523, 0.036743164, 0.023727417, 0.014266968, 0.034423828, -0.03552246, 0.040802002, 0.007949829, -0.020965576, -0.005836487, 0.007911682, -0.016159058, -0.029418945, -0.004966736, -0.015342712, -0.012481689, -0.012718201, 0.056549072, 0.015960693, -0.03475952, -0.0211792, -0.03491211, -0.009262085, -0.007965088, -0.07324219, -0.001156807, -0.015403748, -0.009666443, 0.02230835, -0.005088806, 0.03353882, -0.029800415, -0.018249512, -0.011260986, -0.008712769, 0.010276794, -0.01727295, -0.022338867, 0.04486084, -0.011131287, 0.04901123, -0.003929138, -0.10632324, -0.05529785, 0.022216797, 0.021118164, -0.010597229, 0.03829956, -0.0049934387, 0.031707764, 0.023727417, 0.0814209, -0.0046195984, 0.05621338, 0.04989624, 0.03086853, 0.032989502]}, "B08V521V9N": {"id": "B08V521V9N", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater\nDescription: \nFeatures: Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips.\nEasy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries.\n3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins.\nEnergy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour.\nImportant Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "metadata": {"Name": "Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater", "Brand": "CAMPLUX ENJOY OUTDOOR LIFE", "Description": "", "Features": "Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips.\nEasy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries.\n3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins.\nEnergy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour.\nImportant Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.0061836243, -0.013496399, -0.016952515, -0.0060310364, 0.001420021, -0.010681152, 0.04220581, 0.01928711, -0.04458618, -0.0041236877, -0.007247925, 0.025726318, -0.026306152, -0.040283203, 0.043762207, -0.04107666, 0.022415161, 0.021453857, -0.0064468384, -0.03781128, 0.0041046143, -0.02545166, -0.04107666, 0.13916016, -0.0036506653, 0.017807007, 0.021362305, -0.030319214, -0.009941101, -0.02331543, 0.0025577545, 0.032928467, 0.033111572, -0.055145264, 0.031311035, -0.04815674, -0.0048065186, -0.027191162, -0.024795532, -0.0016050339, 0.012062073, -0.011871338, -0.050109863, 0.031463623, -0.059570312, -0.020370483, 0.00856781, 0.004928589, 0.006336212, -0.023223877, -0.001537323, -0.03262329, 0.022369385, -0.033081055, -0.019348145, 0.019943237, 0.051208496, -0.053466797, 0.0072669983, -0.05090332, -0.01727295, 0.010665894, 0.045440674, 0.03488159, -0.07421875, -6.2942505e-05, 0.044555664, -0.019470215, 0.019195557, -0.07678223, -0.012809753, 0.048736572, 0.010795593, 0.032958984, -0.06604004, -0.038726807, 0.023651123, -0.026657104, 0.037353516, 0.002105713, -0.02545166, -0.04547119, 0.022827148, -0.023117065, 0.0043258667, -0.00831604, -0.010063171, 0.004787445, -0.039764404, -0.055877686, -0.03250122, -0.020736694, -0.06323242, -0.0036563873, -0.015853882, -0.0154953, -0.028198242, -0.04650879, 0.0413208, 0.040496826, 0.02758789, -0.04095459, 0.040283203, -0.019104004, -0.014274597, 0.07055664, 0.009170532, 0.00970459, 0.013442993, 9.9003315e-05, 0.00944519, 0.002166748, -0.0018138885, 0.022262573, -0.01713562, 0.020492554, -0.016494751, 0.011878967, -0.013343811, 0.03845215, -0.017807007, -0.016906738, 0.024612427, -0.006965637, 0.02116394, 0.007457733, -0.015686035, -0.0021781921, -0.024902344, 0.035339355, -0.039398193, 0.0041503906, 0.06500244, 0.066589355, 0.016952515, -0.016845703, 0.018997192, -0.0011444092, -0.008331299, -0.0126571655, 0.013847351, -0.0073890686, 0.01600647, -0.00090026855, -0.0034656525, 0.03137207, 0.026184082, -0.0020599365, -0.0135269165, -0.02281189, -0.02229309, 0.008026123, 0.048919678, -0.013160706, -0.046936035, -0.047912598, -0.011405945, -0.037078857, -0.001455307, -0.06652832, -0.040283203, -0.018478394, -0.004306793, 0.021331787, 0.016738892, 0.023361206, 0.048950195, 0.02029419, 0.017913818, 0.040649414, 0.005104065, 0.0335083, 0.003168106, 0.027175903, 0.025939941, -0.010482788, -0.01725769, 0.08880615, 0.06555176, -0.12512207, -0.066589355, -0.06536865, 0.13891602, -0.043395996, -0.005252838, -0.004463196, 0.0143966675, 0.011917114, -0.006263733, 0.012107849, 0.012550354, 0.021484375, 0.015510559, -0.017791748, 0.0016450882, 0.010948181, -0.049987793, 0.019241333, -0.023651123, -0.006340027, 0.0066223145, 0.012542725, -0.009811401, -0.018356323, 0.004951477, -0.027572632, 0.008132935, 0.019454956, 0.036315918, -0.023406982, -0.009613037, -0.038146973, 0.026733398, -0.07165527, -0.050720215, 0.020080566, -0.0340271, 0.04434204, 0.009239197, 0.02204895, 0.046051025, -0.048980713, 0.04837036, 0.00969696, 0.013763428, -0.023239136, -0.0178833, -0.018753052, 0.022064209, -0.022415161, 0.037506104, 0.043762207, 0.033233643, 0.07141113, -0.009292603, -0.008300781, 0.025512695, 0.00019335747, 0.017303467, -2.6583672e-05, 0.00730896, -0.0019893646, -0.03778076, 0.0018186569, -0.021560669, -0.009719849, 0.025970459, -0.0038375854, 0.0011892319, 0.07330322, 0.005821228, 0.030090332, -0.0010967255, 0.056640625, -0.02456665, 0.011672974, 0.0015630722, 0.0099105835, -0.020385742, 0.030822754, -0.008178711, 0.05014038, 0.0256958, 0.011619568, -0.029693604, 0.015975952, 0.017288208, 0.012756348, -0.0013971329, 0.014755249, 0.018951416, -0.0009994507, -0.014778137, -0.022537231, 0.026153564, -0.0128479, -0.022018433, 0.019882202, -0.022262573, -0.024795532, -0.032562256, -0.0463562, 0.012580872, 0.011940002, 0.03378296, 0.028640747, 0.04559326, -0.010215759, -0.029129028, -0.01977539, 0.022857666, -0.0034713745, -0.020568848, -0.011108398, -0.011817932, -0.028778076, 0.04751587, 0.028640747, 0.014099121, -0.009979248, -0.00053834915, 0.026306152, -0.06500244, 0.042236328, -0.014587402, 0.014564514, -0.04638672, 0.026260376, 0.00028014183, 0.012290955, -0.0635376, 0.02986145, 0.012321472, 0.007701874, 0.004673004, -0.002210617, -0.0014848709, 0.025619507, 0.066711426, 0.08300781, -0.066345215, -0.004398346, 0.02734375, 0.025283813, 0.027770996, -0.022262573, 0.014533997, 0.019622803, -0.024139404, -0.01335144, 0.01953125, -0.009460449, 0.010673523, 0.015991211, -0.0022563934, -0.016189575, 0.027908325, 0.028961182, 0.020004272, -0.03338623, 0.044036865, -0.008621216, -0.011459351, 0.044799805, -0.038116455, -0.0256958, 0.038391113, -0.0073242188, -0.0154418945, 0.00687027, 0.015419006, -0.019088745, 0.018218994, -0.032592773, 0.03237915, 0.006893158, -0.05795288, -0.036010742, 0.012664795, -0.076293945, 0.01600647, -0.050689697, -0.056610107, -0.056671143, 0.059417725, 0.011192322, -0.0592041, -0.044952393, -0.07873535, 0.010101318, -0.018936157, 0.0063438416, -0.04824829, -0.038482666, -0.08111572, 0.049835205, 0.026168823, -0.014305115, 0.052978516, 0.0289917, 0.054534912, 0.051086426, -0.0075263977, 0.0056610107, 0.030563354, 0.02293396, 0.039733887, 0.039489746, 0.028778076, -0.028442383, 0.03881836, 0.032287598, -0.025024414, -0.0010948181, 0.00274086, -0.01083374, 0.017501831, -0.00042796135, -0.036743164, -0.022750854, -0.043914795, 0.0287323, 0.019943237, -0.037017822, 0.0030899048, -0.07946777, -0.021820068, -0.037963867, 0.018478394, 0.008399963, -0.020065308, 0.004535675, -0.023239136, -0.016067505, -0.007686615, -0.0064430237, 0.01158905, -0.010345459, -0.02545166, 0.007972717, 0.038482666, -0.0022125244, 0.012435913, 0.039489746, -0.040405273, -0.0048217773, -0.028121948, 0.009109497, -0.031280518, 0.07885742, -0.014785767, 0.025741577, -0.0049858093, -0.03277588, -0.036956787, -0.032440186, -0.0028076172, -0.016098022, 0.018066406, -0.026641846, -0.019729614, 0.0079422, 0.034240723, 0.03475952, -0.02394104, 0.012046814, 0.01550293, -0.0078125, 0.014038086, -0.025314331, 0.006843567, -0.005870819, 0.040771484, 0.023025513, -0.01979065, 0.048797607, 0.024810791, 0.018661499, 0.018951416, -0.013748169, -0.04055786, -0.022720337, 0.01914978, -0.017730713, 0.027709961, -0.043060303, 0.03918457, 0.020385742, 0.014961243, 0.0067329407, 0.02758789, 0.0019083023, 0.020736694, -0.017715454, 0.007499695, -0.027786255, 0.027908325, 0.0066947937, -0.017166138, -0.032958984, -0.05404663, 0.022872925, -0.107543945, 0.02998352, 0.0340271, -0.02784729, 0.042907715, -0.0049858093, 0.0029830933, 0.028198242, 0.055999756, -0.023925781, 0.017211914, 0.025344849, -0.025894165, -0.0019760132, 0.004688263, -0.030563354, 0.00038552284, -0.005378723, -0.018173218, 0.013999939, -0.0010194778, -0.009353638, -0.09118652, -0.0015325546, -0.0032672882, -0.015609741, 0.012176514, -0.0690918, -0.038635254, -0.042633057, 0.030151367, 0.00028038025, -0.020065308, -0.016036987, -0.0044403076, -0.053649902, -0.016174316, 0.030776978, -0.009941101, 0.006580353, 0.008140564, 0.0075569153, 0.035583496, -0.012992859, -0.010696411, 0.02520752, -0.005996704, 0.013717651, 0.012046814, -0.007522583, 0.03781128, 0.024383545, 0.006549835, -0.0029315948, 0.013885498, 0.021987915, 0.009437561, -0.049560547, 0.016738892, 0.056915283, 0.004081726, -0.043304443, 0.0072021484, -0.013023376, -0.0317688, -0.030303955, -0.03125, -0.009788513, -0.04135132, -0.012565613, -0.06915283, -0.045806885, -0.0046081543, 0.044769287, 0.016616821, 0.012229919, -0.03062439, -0.04046631, -0.013465881, 0.030853271, -0.031921387, -0.016357422, -0.017044067, 0.012054443, 0.011619568, -0.00623703, -0.020553589, -0.028411865, -0.016204834, 0.018798828, 0.049072266, -0.03503418, 0.012168884, -0.0340271, -0.0016584396, -0.0036792755, 0.021408081, 0.021881104, -0.044158936, 0.027816772, 0.015571594, 0.008331299, -0.06225586, -0.015014648, 0.012321472, -0.0340271, -0.05960083, -0.03189087, 0.08892822, -0.0061683655, 0.008262634, 0.0015516281, 0.02619934, -0.0070610046, 0.021026611, -0.12194824, -0.06640625, 0.000813961, -0.034820557, 0.016784668, 0.0032806396, -0.021606445, 0.044555664, 0.0569458, -0.01626587, 0.016738892, -0.029800415, -0.020843506, 0.0037670135, 0.027648926, -0.03010559, -0.0037384033, -0.038726807, 0.03112793, -0.035186768, 0.058929443, 0.04336548, -0.0044555664, 0.020370483, 0.0063171387, -0.002336502, -0.03591919, 0.0049743652, -0.060150146, -0.0070991516, 0.011947632, -0.016418457, -0.04788208, -0.025161743, -0.0317688, -0.012039185, 0.005882263, 0.022033691, -0.0017261505, -0.029205322, -0.027053833, -0.05038452, -0.012794495, 0.013687134, 0.014030457, -0.0062828064, -0.035186768, 0.03994751, -0.0102005005, -0.0060920715, 0.015167236, -0.009231567, 0.015640259, 0.010902405, 0.0031051636, -0.07910156, 0.029632568, 0.043548584, 0.011878967, 0.034301758, 0.023040771, -0.04650879, -0.030181885, -0.0028247833, -0.014884949, -0.011260986, -0.038024902, 0.026046753, 0.036315918, -0.008010864, 0.0107421875, 0.0074768066, 0.01096344, -0.011978149, -0.022216797, 0.020187378, -0.006313324, -0.0028095245, -0.020507812, 0.008155823, -0.0032215118, -0.013557434, -0.022583008, 0.017440796, 0.026168823, 0.014968872, -0.0064201355, -0.029968262, 0.051757812, -0.022705078, -0.033203125, -0.018753052, 0.07763672, -0.03213501, 0.000787735, 0.019256592, 0.033050537, -0.055786133, 0.005004883, -0.044281006, 0.06536865, 0.004447937, -0.01687622, -0.0061073303, 0.04562378, -0.029449463, 0.0053253174, -0.0059661865, 0.0030670166, -0.04598999, -0.0026550293, -0.016601562, -0.0107421875, -0.02659607, 0.028366089, 0.023635864, 0.009613037, -0.08129883, -0.05105591, 0.0004901886, 0.07098389, 0.03881836, 0.041809082, 0.0065307617, -0.043395996, 0.017974854, -0.0070724487, -0.0060539246, 0.010688782, 0.0033359528, 0.024261475, 0.013282776, 0.008094788, -0.013824463, -0.019195557, 0.055114746, -0.02923584, -0.029266357, -0.029769897, 0.07196045, -0.034576416, -0.018508911, 0.0904541, 0.01802063, 0.03463745, 0.016052246, -0.020874023, -0.0335083, -0.0110321045, 0.0035209656, -0.05142212, -0.021987915, -0.03152466, 0.012496948, -0.005519867, 0.04296875, -0.021606445, 0.017105103, -0.03414917, 0.008010864, -0.007888794, 0.041900635, -0.035491943, -0.04562378, 0.011802673, -0.017700195, 0.012031555, -0.01828003, 0.011047363, -0.066833496, -0.0413208, 0.0034503937, 0.029449463, 0.032226562, -0.029174805, 0.017059326, 0.033843994, -0.02281189, 0.052947998, 0.009216309, -0.05001831, 0.016967773, 0.029632568, 0.029754639, -0.00051498413, 0.004085541, -0.014923096, -0.021087646, 0.0050239563, 0.0030708313, 0.048095703, -0.049560547, -0.010978699, 0.01828003, 0.044403076, -0.01259613, 0.016052246, 0.023071289, -0.0054626465, -0.027786255, -0.0019836426, 0.03112793, -0.0317688, -0.00308609, -0.026382446, -0.00064373016, -0.0068969727, -0.008598328, 0.006450653, 0.013076782, 0.029464722, -0.02583313, -0.021148682, -0.0041275024, -0.027191162, 0.028579712, -0.02973938, 0.0031719208, -0.045288086, -0.010002136, 0.014312744, -0.0362854, -0.012390137, 0.020980835, 0.030471802, -0.00061273575, 0.026443481, -0.011642456, 0.019744873, 0.0035991669, -0.05419922, -0.0005021095, -0.046081543, -0.002735138, -0.012542725, -0.010299683, -0.0118637085, 0.03668213, 0.018875122, -0.020828247, 0.07897949, -0.031463623, -0.013023376, -0.034179688, 0.011016846, -0.030914307, -0.011947632, -0.030578613, 0.016357422, 0.0077819824, -0.0047683716, -0.038238525, 0.013702393, 0.06689453, 0.009544373, 0.017959595, -0.009735107, 0.027709961, -0.011779785, -0.025756836, -0.045043945, -0.04837036, 0.04272461, 0.044708252, -0.046813965, -0.018585205, -0.024154663, 0.03152466, -0.014328003, -0.03970337, 0.02784729, -0.06921387, 0.02709961, 0.025497437, 0.025909424, -0.045806885, -0.03942871, -0.032196045, 0.0037879944, -0.014785767, 0.032043457, -0.016281128, -0.01033783, -0.0058403015, -0.01777649, 0.015533447, -0.049346924, 0.001868248, -0.014152527, 0.01939392, 0.03817749, -0.007068634, -0.01651001, -0.024230957, -0.0069885254, 0.0178833, -0.010284424, -0.007713318, -0.06173706, -0.012687683, 0.021987915, 0.0028800964, 0.028808594, -0.028305054, -0.02444458, -0.016342163, 0.0128479, -0.019943237, -0.035461426, -0.06008911, -0.005279541, -0.042510986, -0.06994629, 0.05508423, -0.020889282, -0.020568848, 0.004711151, 0.00060653687, -0.009780884, -0.0256958, 0.019210815, 0.011062622, 0.009239197, -0.00034189224, 0.030944824, -0.006008148, -0.05303955, -0.04333496, 0.026489258, -0.055877686, -0.020385742, -0.01713562, 0.006439209, -0.0029830933, -0.012329102, 0.00630188, 0.06842041, 0.014694214, 0.0069084167, 0.016174316, -0.040161133, -0.016555786, 0.011878967, 0.014038086, -0.021072388, -0.009712219, 0.032592773, -0.0006580353, 0.04043579, -0.0064582825, 0.00774765, -0.08996582, -0.016555786, -0.057006836, 0.012580872, -0.021102905, 0.015823364, 0.046569824, 0.01146698, -0.030960083, 0.10192871, 0.011543274, 0.0134887695, 0.0024547577, -0.04800415, 0.007835388, -0.014923096, 0.055145264, -0.021881104, 0.010826111, -0.018600464, 0.017807007, -0.03363037, -0.011726379, 0.015945435, -0.0056877136, 0.007293701, 0.029525757, -0.0146865845, 0.021347046, 0.0063667297, -0.002046585, 0.028457642, -0.02809143, 0.01436615, -0.044311523, 0.039489746, -0.010597229, -0.010887146, -0.0029792786, 0.002149582, -0.018966675, 0.007129669, -0.011421204, 0.013824463, -0.027359009, -0.05178833, 0.043823242, 0.026809692, 0.022094727, -0.012123108, 0.035858154, -0.0070381165, -0.027130127, -0.029571533, 0.0075912476, -0.054748535, -0.01461792, 0.009254456, -0.0039749146, 0.0770874, -0.01965332, -0.031463623, -0.026672363, 0.03552246, -0.012863159, -0.006855011, -0.00642395, -0.012306213, 0.00017440319, 0.06604004, -0.049102783, 0.0006155968, -0.02734375, 0.033325195, 0.014381409, -0.013122559]}, "B08BZ7FNRM": {"id": "B08BZ7FNRM", "original": "Brand: GloryShine\nName: GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)\nDescription: \nFeatures: Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table\nMade of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won't crack in the cold\nCome with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy\nCover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models.\nFits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.\n", "metadata": {"Name": "GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)", "Brand": "GloryShine", "Description": "", "Features": "Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table\nMade of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won't crack in the cold\nCome with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy\nCover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models.\nFits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.01953125, 0.016723633, -0.12988281, -0.04663086, 0.01638794, -0.034729004, -0.036102295, 0.050201416, -0.05105591, 0.042663574, -0.0128479, 0.044952393, -0.011245728, -0.017333984, 0.007545471, -0.027420044, 0.046569824, -0.012367249, 0.05987549, -0.016906738, -0.007347107, 0.016204834, 0.081848145, 0.055419922, -0.015945435, -0.018936157, 0.06011963, -0.0037155151, 0.006690979, -0.011932373, 0.0013418198, 0.008140564, 0.06286621, -0.0032138824, -0.04638672, -0.0032787323, -0.020004272, -0.0054397583, -0.040100098, 0.0128479, 0.02885437, -0.014564514, -0.034088135, -0.029296875, -0.017486572, -0.034698486, 0.020645142, -0.01499939, -0.015914917, -0.018218994, 0.013946533, 0.030960083, 0.025680542, -0.009300232, -0.010002136, 0.005722046, -0.026565552, 0.023468018, 0.018753052, -0.001461029, 0.0016365051, 0.016784668, 0.006931305, -0.003993988, -0.060424805, 0.020202637, 0.12805176, -0.01008606, 0.012878418, -0.083984375, -0.028381348, 0.075927734, 0.0262146, -0.00667572, -0.03942871, -0.010108948, 0.00015437603, -0.008903503, 0.022369385, 0.0035381317, -0.014152527, -0.056610107, 0.06329346, -0.018371582, -0.021194458, 0.0055122375, -0.0129852295, 0.011001587, 0.032043457, -0.076538086, 0.0013532639, 0.012550354, -0.04510498, 0.028900146, -0.014595032, -0.037231445, -0.05645752, -0.06890869, 0.048065186, 0.011161804, 0.029586792, -0.02268982, -0.032318115, 0.016296387, -0.013206482, 0.031982422, 0.020858765, 0.025970459, -0.004558563, 0.010940552, -0.017211914, -0.06335449, -0.016845703, -0.026626587, -0.0047416687, 0.01663208, -0.010391235, -0.009651184, 0.013374329, -0.046203613, -0.047180176, -0.03289795, -0.024047852, 0.026016235, 0.023590088, 0.006580353, -0.00026750565, 0.0496521, 0.007980347, 0.017929077, 0.009170532, -0.00015366077, -0.010177612, 0.03363037, 0.0045928955, 0.0018262863, 0.06390381, 0.010375977, 0.027709961, -0.031341553, 0.036621094, 0.025543213, 0.012512207, 0.00038409233, -0.0047340393, 0.02507019, 0.029205322, -0.015670776, -0.026306152, -0.036224365, -0.036956787, 0.0128479, 0.015792847, 0.014373779, -0.01751709, 0.0038394928, 0.02130127, -0.013938904, -0.033996582, -0.055267334, 0.025924683, 0.021606445, 0.0072517395, -0.017166138, -0.016967773, -0.043670654, -0.020553589, 0.0030651093, 0.0109939575, 0.055541992, -0.007247925, 0.03866577, -0.025314331, -0.0033359528, -0.021713257, -0.032165527, -0.0289917, 0.07684326, 0.061950684, -0.052734375, -0.032592773, -0.07281494, 0.14440918, -0.03640747, 0.012878418, -0.014755249, -0.025344849, -0.067871094, 0.062805176, -0.018218994, -0.027572632, -0.0067100525, 0.011947632, -0.034576416, -0.012176514, -0.010536194, 0.00029563904, 0.019577026, -0.017822266, 0.022857666, -0.019592285, 0.0041122437, 0.039764404, 0.0039405823, 0.044769287, 0.027328491, -0.005344391, 0.028930664, -0.015090942, 0.02142334, -0.0024757385, -0.013069153, -0.019866943, 0.025909424, 0.017044067, 0.0018415451, -0.04473877, -0.0076065063, -0.023010254, -0.0010118484, 0.008110046, 0.00049448013, 0.006916046, -0.011810303, -0.017669678, -0.040649414, -0.010528564, -0.023239136, 0.013153076, -0.03390503, 0.05429077, 0.053527832, 0.07928467, 0.050048828, -0.031143188, 0.03338623, 0.05783081, 0.042510986, -0.03994751, -0.004096985, 0.013092041, -0.03363037, -0.060791016, 0.02809143, -0.0040016174, 0.009887695, -0.0016489029, 0.036468506, 0.0028324127, 0.033966064, 0.016021729, -0.026031494, 0.0090789795, -0.001581192, -0.029144287, 0.035125732, -0.0071105957, 0.018341064, 0.017562866, 0.022857666, -0.012496948, 0.037841797, 0.03274536, 0.0013961792, 0.020401001, -0.042541504, 0.018966675, 0.008987427, 0.0013504028, -0.04348755, 0.022262573, 0.028030396, -0.018447876, 0.0021076202, 0.0025196075, 0.0058174133, -0.015464783, 0.022399902, -0.04989624, -0.02116394, 0.005634308, 0.039398193, -0.008850098, -0.010276794, -0.0067596436, 0.007045746, -0.0017213821, 0.017700195, -0.010482788, -0.0031528473, 0.026657104, 0.0158844, 0.012573242, 0.012825012, -0.020019531, 0.00074243546, -0.028839111, -0.004348755, 0.03060913, -0.005809784, -0.027252197, 0.04736328, 0.000682354, 0.022018433, -0.015640259, 0.040283203, -0.0056877136, -0.013015747, -0.0017442703, -0.016067505, -0.009307861, 0.0062675476, 0.026031494, -0.00029730797, 0.026290894, 0.003238678, -0.005393982, 0.04031372, 0.032562256, 0.027038574, 0.005783081, -0.013328552, -0.008140564, -0.04837036, -0.015655518, 0.008682251, -0.055023193, -0.0027179718, -0.05908203, 0.0034446716, 0.053344727, -0.035003662, -0.0029392242, -0.02230835, 0.0140686035, 0.0018119812, 0.0034160614, 0.010910034, -0.0021324158, -0.032470703, -0.028793335, 0.026687622, -0.024993896, -0.049926758, -0.08319092, -0.041870117, 0.05493164, -0.0061683655, -0.030715942, -0.012756348, 0.055664062, -0.01625061, -0.02482605, -0.043182373, -0.018432617, 0.019897461, -0.0014886856, -0.036895752, 0.014663696, -0.07543945, -0.03387451, 0.0026187897, -0.058746338, 0.03955078, 0.050689697, -0.034820557, 0.009223938, -0.013641357, 0.029220581, -0.0006046295, 0.05456543, -0.012252808, -0.055480957, -0.026046753, -0.014846802, -0.023925781, 0.010696411, -0.060943604, 0.04171753, 0.0010566711, -0.03390503, -0.0043029785, 0.005203247, 0.05517578, 0.008094788, 0.013076782, -0.0005097389, 0.035339355, -0.01751709, -0.015563965, -0.014343262, 0.04284668, -0.017623901, -0.032470703, -0.00982666, 0.002796173, -0.009475708, -0.011207581, 0.008476257, -0.02015686, -0.08795166, 0.010574341, 0.014633179, -0.020858765, -0.0044670105, -0.016113281, -0.035827637, -0.04425049, -0.0029296875, 0.042938232, -0.03086853, 0.012840271, -0.05316162, 0.008842468, 0.00017356873, -0.003583908, 0.002916336, -0.01966858, -0.031585693, 0.034088135, 0.041381836, -0.06707764, -0.011512756, 0.0013046265, -0.02230835, -0.017196655, -0.0024375916, 0.02796936, -0.025390625, 0.0034885406, -0.010520935, -0.02519226, -0.002193451, 0.008522034, -0.03286743, 0.01940918, -0.0024490356, -0.013648987, 0.012298584, -0.03503418, -0.014083862, -0.021881104, 0.0033740997, 0.013923645, 0.004055023, -0.015159607, -0.0078125, 0.007003784, -0.020324707, 0.031143188, -0.034973145, 0.016616821, -0.057159424, 0.022323608, -0.032470703, -0.0075187683, 0.00856781, 0.030059814, 0.0077590942, 0.0040626526, -0.021270752, -0.038879395, 0.03338623, -0.0088272095, 0.01586914, -0.019973755, 0.04446411, -0.0078048706, -0.015289307, 0.02192688, -0.014007568, -0.027770996, -0.015113831, -0.0067329407, 0.021575928, 0.03491211, -0.009155273, -0.00504303, -0.03656006, 0.0030918121, -0.04977417, -0.015686035, -0.049926758, 0.090270996, 0.06414795, -0.025177002, 0.09051514, 0.08538818, -0.00856781, 0.05316162, 0.055633545, 0.04763794, 0.021911621, 0.07196045, -0.007221222, -0.0028247833, 0.00029611588, 0.016113281, -0.0050811768, -0.042144775, 0.0026226044, -0.0075263977, 0.01171875, 0.011154175, -0.03265381, -0.019302368, 0.016586304, -0.043426514, -0.0035915375, -0.0063667297, -0.0075263977, -0.047790527, 0.031402588, 0.060150146, -0.03503418, -0.028701782, -0.021026611, 0.030731201, -0.052886963, 0.0057029724, 0.0062294006, -0.026306152, 0.02609253, 0.032196045, -0.006996155, 0.004886627, -0.020477295, -0.016845703, -0.0262146, 0.015007019, -0.021148682, -0.0042762756, -0.027114868, -0.03274536, 0.06793213, 0.040618896, -0.0010128021, -0.010910034, -0.031677246, -0.041992188, 0.013343811, 0.015556335, 0.007709503, -0.019226074, -0.021575928, -0.05859375, -0.06210327, -0.038330078, -0.0024871826, -0.040893555, -0.0025196075, -0.013969421, -0.08843994, -0.030944824, -0.014564514, 0.01084137, -0.041534424, 0.020523071, -0.019760132, -0.02659607, -0.0035762787, 0.04348755, -0.06817627, -0.002418518, -0.018600464, 0.0015201569, -0.018951416, -0.039642334, 0.0028839111, -0.025665283, -0.018569946, -0.021728516, 0.06524658, 0.0035820007, -0.0049858093, -0.03668213, 0.009147644, 0.0070343018, 0.018814087, -0.00983429, -0.0056266785, 0.009002686, -0.012054443, -0.005607605, -0.06518555, -0.013435364, 0.040771484, -0.058929443, -0.042388916, -0.042633057, 0.047332764, 0.02015686, -0.006061554, -0.026809692, -0.010246277, 0.043701172, -0.01953125, -0.0019388199, 0.001663208, 0.00015819073, -0.0149002075, -0.01966858, -0.013877869, -0.011123657, 0.058410645, -0.013618469, -0.003774643, -0.0063323975, -0.007259369, 0.07006836, -0.031311035, 0.029129028, -0.02748108, -0.04849243, 0.01374054, 0.047332764, -0.027404785, 0.044006348, 0.010917664, -0.0046691895, 0.0037078857, -0.0069007874, -0.007671356, -0.05029297, -0.016189575, -0.07141113, 0.025375366, 0.0079956055, -0.017547607, -0.031982422, -0.006427765, -0.008651733, 0.020812988, -0.010635376, 0.032989502, -0.002714157, 0.00015354156, -0.0019721985, -0.03668213, 0.009971619, 0.008338928, 0.01838684, 0.027908325, -0.043518066, -0.035247803, -0.042877197, -0.030227661, 0.008216858, -0.046142578, -0.03286743, -0.036132812, 0.036193848, -0.024353027, 0.0736084, 0.020874023, 0.04421997, -0.006652832, 0.038909912, -0.02029419, 0.0074424744, -0.019439697, 0.01828003, 0.018814087, -0.039367676, 0.006351471, -0.014183044, 0.007873535, -0.0014448166, -0.02458191, -0.0065078735, -0.018127441, -0.06738281, 0.040374756, 0.04135132, -0.0018587112, -0.022888184, 0.051330566, -0.014709473, -0.03466797, 0.017745972, -0.01914978, -0.021820068, 0.070739746, -0.051727295, 0.004562378, 0.036224365, 0.012191772, -0.028396606, 0.025802612, 0.040405273, -0.03640747, -0.041168213, 0.04421997, -0.032348633, -0.03479004, 0.02229309, -0.043060303, -0.0010404587, -0.02130127, 0.01373291, 0.045196533, -0.00868988, -0.047424316, -0.03668213, 0.020721436, -0.05569458, -0.037261963, -0.05886841, 0.023101807, 0.018615723, -0.03414917, -0.0046157837, 0.062561035, 0.020217896, -0.048828125, -0.048736572, -0.024902344, 0.021972656, -0.018615723, 0.04663086, -0.036621094, 0.002210617, -0.022949219, -0.009346008, 0.01802063, -0.012924194, -0.07019043, -0.023117065, -0.010398865, -0.024490356, -0.009292603, -0.01600647, 0.016021729, -0.032165527, -0.025009155, -0.041870117, -0.022109985, 0.048461914, -0.061950684, 0.10986328, -0.0021076202, -0.0063934326, 0.018676758, -0.025787354, -0.018875122, 0.009429932, 0.0118255615, -0.011039734, 2.938509e-05, -0.010261536, 0.031311035, -0.009773254, -0.034362793, -0.01121521, 0.054992676, -6.4730644e-05, -0.08135986, -0.015129089, -0.015357971, 0.036346436, -0.034057617, 0.008666992, -0.009124756, 0.0054473877, -0.029281616, -0.0049209595, 0.008300781, 0.0057868958, 0.025726318, 0.0047340393, -0.02015686, 0.009521484, 0.0057373047, 0.028015137, -0.0052108765, 0.0262146, -0.0017538071, -0.033081055, 0.008872986, 0.049194336, 0.03353882, 0.0048103333, -0.032287598, -0.02229309, -0.008132935, -0.0030937195, 0.042877197, -0.0056648254, 0.028717041, 0.03074646, 0.040863037, -0.015808105, 0.028884888, 0.026870728, 0.03186035, -0.034729004, -0.06890869, 0.018630981, 0.026885986, -0.0362854, -0.004272461, -0.02696228, -0.020401001, 0.009796143, -0.0052261353, 0.013114929, -0.029708862, 0.032684326, -0.012420654, 0.039642334, 0.013946533, 0.023803711, 0.017410278, -0.027557373, -0.027557373, 0.0039711, 0.02406311, 0.0048828125, -0.011528015, -0.027709961, 0.007671356, 0.05029297, 0.023651123, -0.011054993, 0.017318726, -0.004348755, 0.0036201477, -0.014945984, 0.02041626, -0.019943237, -0.012207031, -0.0026435852, -0.031463623, -0.008132935, -0.019134521, 0.021865845, -0.023101807, 0.082336426, -0.022705078, 0.02243042, 0.00017690659, 0.0049324036, -0.051574707, -0.026626587, 0.035736084, -0.036193848, -0.01474762, -0.003932953, -0.068603516, -0.00157547, 0.03387451, -0.0073127747, -0.0061531067, 0.01864624, 0.010116577, -0.012931824, 0.03012085, -0.026626587, 0.009353638, 0.028900146, -0.022506714, 0.010543823, -0.009475708, 0.036895752, 0.02848816, -0.01612854, -0.05126953, 0.036590576, -0.09466553, 0.05038452, 0.027145386, 0.010261536, -0.03591919, -0.011680603, -0.006919861, -0.0079422, 0.00762558, 0.024536133, 0.026687622, 0.00970459, 2.7358532e-05, -0.009407043, 0.010665894, -0.010292053, 0.0007557869, -0.006454468, 0.00051546097, -0.028305054, -0.032958984, -0.006801605, 0.031341553, -0.011108398, 0.008026123, 0.045135498, -0.029312134, 0.021148682, 0.002521515, 0.0048828125, -0.020858765, 0.009338379, -0.011169434, -0.001124382, 0.0048217773, 0.0036392212, 0.00029587746, -0.016540527, -0.04550171, -0.03778076, 0.02558899, -0.03704834, 0.0039138794, 0.026947021, -0.017547607, -0.028533936, 0.020904541, 0.053741455, -0.030929565, -0.039978027, 0.020828247, -0.023971558, 0.01763916, 0.07775879, -0.030075073, -0.041412354, -0.071899414, -0.001739502, -0.043426514, -0.0060806274, -0.04373169, 0.003627777, -0.015113831, -0.013946533, 0.032928467, 0.046936035, 0.01889038, 0.005176544, -0.005432129, -0.016616821, -0.0546875, 0.04864502, 0.008590698, -0.03591919, 0.04058838, 0.08453369, -0.014343262, 0.0309906, -0.025009155, -0.0026607513, -0.08300781, -0.007335663, -0.011634827, -0.0024356842, -0.008125305, 0.015464783, 0.01399231, 0.013473511, -0.027526855, 0.004421234, 0.014877319, -0.021270752, 0.047027588, 0.026046753, -0.0053253174, -0.025970459, -0.016616821, -0.01600647, -0.0026359558, 0.016983032, -0.0024032593, -0.04425049, 0.004928589, -0.008018494, -0.015991211, -0.0044898987, 0.00982666, -0.004257202, 0.010398865, 0.030090332, 0.029815674, 0.005279541, -0.015449524, 0.027008057, -0.039520264, -0.043273926, 0.01838684, 0.019638062, -0.028335571, -0.055786133, -0.009559631, 0.007587433, -0.034576416, -0.035064697, -0.036621094, -0.02722168, -0.013191223, 0.030853271, -0.028518677, 0.03074646, -0.04046631, 0.011421204, 0.035186768, 0.033966064, -0.023605347, 0.03945923, 0.009506226, -0.0012178421, -0.05117798, 0.061523438, -0.0368042, -0.032806396, -0.059265137, 0.053344727, -0.0054359436, -0.025680542, 0.062042236, -0.049224854, 0.007827759, 0.016098022, -0.05871582, -0.018814087, 0.024902344, 0.03753662, -0.012329102, 0.016204834]}, "B088B7KYC2": {"id": "B088B7KYC2", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n\u2605AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180\u00baf to 450\u00baf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!\u2605FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.\n", "metadata": {"Name": "Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze", "Brand": "Z GRILLS", "Description": "", "Features": "\u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n\u2605AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180\u00baf to 450\u00baf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!\u2605FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.024124146, 0.02319336, -0.028045654, -0.010932922, 0.009796143, -0.01966858, 0.0018587112, -0.034118652, 0.0025043488, 0.013374329, -0.028930664, 0.0052108765, 0.022766113, -0.028289795, 0.0110321045, -0.01247406, 0.01361084, -0.013458252, -0.012290955, -0.03274536, 0.0072364807, -0.024780273, -0.019805908, 0.072509766, 0.049102783, -0.04763794, -0.024673462, 0.03010559, 0.019180298, 0.013282776, 0.022766113, 0.0009899139, 0.04901123, 0.021942139, -0.06665039, -0.021408081, -0.0025672913, -0.0060920715, -0.023468018, 0.016082764, 0.04260254, -0.036315918, -0.0574646, -0.024642944, -0.032226562, -0.031402588, 0.05633545, 0.0039043427, 0.01071167, 0.026046753, 0.008171082, -0.029571533, -0.0021629333, 0.008903503, -0.0141067505, -0.01864624, 0.017868042, 0.008117676, 0.027694702, -0.018951416, -0.02885437, 0.012626648, 0.0047912598, 0.010192871, -0.019683838, 0.001996994, 0.021865845, -0.0052986145, 0.025436401, -0.013412476, -0.005935669, 0.01386261, 0.009773254, -0.011703491, -0.041412354, -0.0034275055, 0.021560669, -0.014694214, 0.010681152, 0.0018949509, 0.015991211, 0.009666443, 0.029922485, 0.0045776367, -0.021759033, -0.009750366, -0.015296936, -0.008628845, 0.019134521, -0.037231445, 0.007209778, -0.0056381226, -0.02897644, 0.055664062, -0.025558472, -0.020706177, -0.037750244, -0.031463623, 0.03173828, 0.058380127, -0.010620117, -0.034698486, 0.031463623, -0.018478394, -0.040802002, 0.021530151, 0.036132812, 0.022155762, -0.011001587, 0.016052246, -0.019760132, -0.026428223, -0.06530762, -0.048187256, -0.007522583, 0.057769775, -0.048034668, -0.015579224, -0.0058517456, -0.0073013306, 0.012329102, 0.031585693, -0.019378662, 0.025604248, 0.011459351, 0.03579712, -0.0001348257, -0.016418457, -0.053344727, 0.025253296, -0.030227661, -0.017440796, 0.066711426, 0.06439209, 0.023757935, -0.027145386, 0.05090332, 0.033416748, 0.006126404, 0.026763916, -0.054138184, -0.043395996, 0.029876709, -0.030593872, -0.0046653748, -0.026168823, 0.0063934326, 0.053710938, -0.011268616, 0.0012722015, 0.04269409, -0.0026359558, 0.05117798, -0.026153564, -0.063964844, -0.019058228, -0.066589355, -0.005142212, -0.027572632, -0.018447876, 0.008804321, -0.012817383, -0.03164673, -0.039031982, -0.054504395, 5.096197e-05, 0.015808105, 0.0146102905, 0.009063721, 0.033416748, -0.016906738, 0.019165039, -0.025909424, 0.01524353, 0.016860962, 0.004470825, -0.015487671, 0.06378174, 0.054351807, -0.09283447, -0.045837402, -0.034820557, 0.119384766, -0.046783447, -0.00283432, -0.03540039, -0.0018606186, -0.014823914, 0.017288208, 0.004600525, 0.0026664734, -0.007068634, -0.0036354065, -0.013633728, 0.018173218, 0.01902771, -0.049743652, 0.009399414, -0.010688782, -0.03765869, -0.009666443, 0.012542725, -0.03201294, 0.0006155968, -0.048339844, -0.007801056, -0.017333984, 0.03945923, 0.03918457, 0.0038414001, -0.006111145, -0.025115967, 0.024887085, -0.049835205, -0.055145264, 3.6597252e-05, -0.021499634, 0.008796692, 0.0027942657, 0.03781128, -0.021591187, 0.0033512115, -0.0309906, -0.013023376, 0.05206299, -0.020263672, 0.013702393, -0.012519836, 0.079589844, 0.00067186356, 0.018356323, 0.004699707, 0.016189575, 0.01991272, -0.0061531067, 0.028167725, 0.07141113, 0.028411865, -0.01991272, -0.02166748, 0.03677368, -0.056518555, 0.0053138733, 0.018981934, 0.00044894218, -0.0064811707, 0.018325806, 0.0024757385, -0.011161804, -0.0001347065, -0.032409668, 0.019470215, 0.033355713, -0.015686035, 0.008049011, 0.0501709, -0.01939392, 0.015296936, -0.01878357, 0.028076172, -0.006832123, 0.025772095, 0.015655518, -0.004623413, 0.022613525, 0.044799805, 0.050933838, 0.051757812, -0.026504517, 0.027008057, -0.0040626526, 0.01612854, -0.0047454834, -0.008621216, -0.020736694, -0.05255127, 0.027893066, 0.024520874, -0.043518066, -0.05114746, 0.0029449463, -0.0027656555, 0.013008118, -0.0007452965, -0.0025291443, -0.036132812, 0.04232788, 0.038208008, -0.08050537, -0.06011963, 0.0149383545, -0.036468506, -0.062927246, -0.022720337, -0.02217102, -0.025527954, 0.045043945, 0.052612305, -0.03201294, 0.008995056, -0.011108398, 0.007949829, -0.007965088, -0.032287598, 0.0022563934, 0.021377563, -0.004634857, 0.008415222, 0.0060043335, -0.02909851, 0.0059890747, 0.029464722, 0.036743164, -0.014862061, 0.05053711, 0.021957397, -0.007987976, 0.03741455, 0.009643555, 0.012054443, -0.0009088516, -0.021972656, -0.10491943, -0.012840271, -0.017745972, 0.052246094, -0.034454346, -0.0357666, -0.0152282715, 0.050598145, 0.023284912, 0.036834717, 0.017181396, 0.004261017, -0.015777588, -0.011123657, -0.00623703, -0.014030457, -0.014038086, -0.050994873, 0.008171082, -0.0178833, 0.008354187, 0.021514893, -0.043762207, 0.021453857, 0.058685303, 0.0013475418, -0.01121521, 0.018554688, 0.0023040771, -0.030548096, -0.0141067505, -0.029525757, -0.00064468384, -0.05505371, 0.0060424805, -0.030960083, -0.040039062, -0.07397461, -0.057281494, -0.0020065308, -0.061828613, -0.012451172, 0.04586792, 0.0019550323, -0.029403687, 0.016601562, -0.009208679, 0.034210205, 0.044158936, -0.025634766, 0.00957489, -0.015716553, -0.028533936, -0.03955078, 0.06591797, -0.0357666, -0.0031871796, 0.030731201, -0.029815674, 0.013374329, -0.020950317, 0.0077438354, -0.008659363, 0.029937744, -0.017349243, 0.0098724365, -0.026611328, -0.015129089, -0.02470398, 0.035491943, -0.015281677, -0.010009766, -0.0066223145, 0.0015516281, -0.041015625, -0.02722168, -0.039215088, -0.005958557, -0.050201416, -0.026016235, -0.035369873, -0.043304443, 0.0010881424, -0.0770874, -0.025360107, -0.04827881, 0.011779785, 0.091674805, -0.022399902, -0.007820129, -0.022247314, 0.0043525696, -0.0048446655, 0.020004272, 0.00207901, 0.0009045601, 0.008728027, -0.03967285, 0.011276245, -0.036468506, 0.02470398, 0.008758545, -0.03829956, -0.016113281, -0.03366089, 0.03074646, -0.048950195, 0.020431519, -0.037872314, -0.019302368, 0.008201599, -0.021987915, -0.038208008, -0.018920898, -0.004501343, 0.012313843, 0.025054932, -0.031204224, -0.095458984, -0.05392456, -0.054138184, -0.016296387, -0.014724731, -0.031311035, -0.05670166, -0.08850098, 0.014213562, -0.06866455, -0.0006580353, -0.009712219, 0.06878662, 0.035705566, 0.024291992, 0.140625, -0.0023822784, 0.039794922, 0.08135986, -0.024780273, -0.008872986, -0.04473877, 0.019165039, 0.055999756, -0.042541504, -0.037994385, 0.08709717, -0.0067481995, 0.0026874542, -0.014122009, -0.041381836, 0.06341553, 0.013160706, -0.0040283203, -0.028869629, -0.041381836, 0.045166016, 0.025405884, 0.0075531006, -0.045806885, -0.029403687, 0.012825012, -0.11248779, 0.07141113, 0.0070152283, -0.012077332, 0.03414917, 0.041656494, -0.018554688, 0.04083252, 0.043029785, 0.0178833, -0.008682251, 0.0791626, -0.023208618, -0.027069092, 0.016616821, -0.085510254, 0.0068969727, -0.025680542, -0.015853882, 0.02670288, 0.013938904, -0.008666992, -0.020477295, 0.01889038, 0.050689697, 0.01084137, -0.001824379, -0.02734375, 0.028747559, -0.034088135, -0.002243042, 0.0007662773, -0.026733398, -0.047027588, -0.010055542, 0.019088745, -0.062408447, 0.0041389465, 0.012863159, 0.014884949, -0.007133484, 0.035064697, 0.019317627, 0.010650635, -0.052764893, 0.010002136, -0.019210815, -0.03378296, 0.0446167, 0.003376007, 0.037994385, 0.036254883, -0.02130127, 0.05886841, -0.022521973, 0.020095825, 0.021591187, -0.02519226, -0.00082731247, 0.006385803, -0.018676758, 0.0053863525, 0.033325195, -0.070373535, -0.008911133, 0.01486969, -0.07513428, 0.046295166, -0.02633667, -0.046783447, -0.0006580353, -0.02671814, -0.01461792, -0.044647217, -0.010627747, -0.0048103333, 0.007904053, 0.011299133, -0.024856567, 0.030639648, -0.02772522, -0.009963989, -0.005180359, 0.010017395, 0.06072998, 0.028747559, 0.011489868, -0.015296936, -0.034851074, -0.029281616, 0.004322052, -0.020874023, -0.013404846, -0.034118652, -0.05142212, -0.013473511, 0.0044784546, 0.030944824, 0.014511108, 0.0178833, -0.0390625, -0.030059814, -0.020935059, -0.024032593, 0.057006836, -0.0057029724, 0.0017585754, -0.037750244, 0.0008921623, -0.020965576, 0.014961243, 0.003522873, 0.00086402893, -0.009475708, 0.0019254684, -0.04562378, 0.006164551, 0.004787445, 0.009811401, -0.0035095215, -0.0009775162, -0.023651123, 0.01878357, -0.013282776, 0.03652954, -0.01524353, -0.009727478, 0.007736206, 0.019577026, 0.045196533, -0.029968262, -0.0033435822, -0.017089844, -0.015556335, -0.054992676, 0.04611206, 0.04714966, -0.010528564, -0.0075416565, -0.010604858, -0.029968262, -0.04437256, -0.0037117004, 0.023498535, 0.0003516674, 0.00868988, -0.017227173, 0.005203247, 0.0020980835, -0.018844604, 0.00010442734, 0.019073486, 0.011039734, -0.049560547, 0.022140503, -0.012268066, 0.005542755, 0.02293396, 0.0058250427, 0.02684021, 0.014915466, 0.018356323, -0.017684937, -0.00017726421, 0.019989014, -0.02508545, -0.006137848, -0.02571106, -0.041656494, -0.036132812, -0.035736084, -0.019042969, 0.018417358, -0.022338867, -0.009857178, 0.044647217, 0.029022217, -0.009178162, -0.036102295, 0.037353516, -0.004753113, -0.033325195, 0.016021729, -0.008781433, 0.0012369156, 0.031951904, -0.040802002, 0.0501709, -0.0054359436, 0.0010948181, -0.015602112, -0.023925781, -0.0059394836, -0.0062179565, 0.012451172, 0.01739502, -0.01424408, -0.04260254, -0.010269165, -0.007133484, 0.043701172, 0.016799927, -0.028289795, 0.031280518, 0.008674622, -0.028961182, 0.034301758, -0.018585205, 0.006729126, 0.0059890747, -0.013191223, -0.04699707, -0.01663208, -0.004169464, -0.025909424, -0.05230713, -0.022827148, -0.03277588, -0.008430481, 0.0030117035, 0.025314331, -0.024917603, -0.033569336, 0.05026245, -0.005718231, 0.026779175, -0.037841797, 0.0063705444, 0.012451172, -0.011390686, -0.010055542, 0.006374359, -0.01259613, -0.029464722, -0.013122559, 0.0049362183, -0.014404297, 0.030914307, -0.04748535, 0.03842163, 0.046020508, -0.005874634, 0.038635254, 0.046142578, -0.08892822, -0.026870728, -0.009269714, -0.016296387, 0.0002465248, -0.025222778, 0.025650024, -0.02229309, -0.030151367, -0.013710022, 0.0067214966, 0.02532959, 0.01234436, 0.030349731, 0.04815674, -0.029037476, 0.049804688, 0.010009766, -0.057617188, 0.02027893, 0.028320312, -0.092285156, -0.058929443, -0.03479004, -0.009613037, -0.01889038, -0.04699707, -0.0060577393, 0.057861328, 0.031463623, -0.010917664, -0.04827881, -0.061431885, 0.038848877, -0.029907227, 0.021743774, 0.01499939, -0.02003479, 0.03677368, 0.029907227, -0.03817749, 0.007534027, 0.030456543, 0.007045746, -0.004299164, 0.008712769, 0.0010910034, 0.04397583, -0.0340271, -0.00025606155, -0.029434204, 0.011070251, 0.0026741028, 0.052337646, 0.02658081, 0.040222168, -0.04168701, -0.012924194, -0.00894928, 0.018127441, 0.006252289, 0.004890442, 0.006465912, -0.027069092, 0.025665283, 0.01802063, -0.0021381378, 0.01828003, 0.0423584, 0.002313614, -0.06384277, -0.0043907166, -0.04901123, -0.05810547, -0.012359619, -0.045806885, 0.016296387, 0.012054443, 0.0036315918, 0.01864624, 0.025985718, 0.016830444, -0.026657104, 0.048583984, 0.00031590462, -0.00040125847, 0.017120361, -0.022506714, 0.031219482, 0.0039367676, 0.0068130493, -0.029785156, 0.032287598, 0.0015964508, 0.0025482178, 0.03842163, 0.024765015, -0.0020256042, -0.012458801, 0.028701782, 0.034362793, -0.078552246, -0.019424438, -0.026763916, 0.021240234, -0.02041626, -0.038208008, -0.028411865, 0.00020551682, 0.027297974, 0.011528015, 0.07470703, -0.019012451, 0.014755249, 0.02935791, 0.0039405823, 0.020324707, -0.0041656494, 0.017791748, 0.012863159, 0.027511597, -0.017822266, -0.027282715, 0.0011615753, 0.025802612, -0.04058838, 0.014228821, -0.027328491, 0.020217896, -0.01939392, 0.025619507, -0.027618408, -0.02368164, 0.005138397, -0.003282547, -0.010635376, -0.03189087, 0.024932861, 0.039031982, 0.023345947, 0.006538391, 0.0067367554, -0.008674622, 0.039093018, 0.031799316, -0.019210815, -0.008331299, -0.016616821, -0.025222778, -0.018692017, 0.0032920837, 0.03375244, -0.031677246, 0.05593872, 0.039886475, 0.05859375, 0.068237305, 0.015151978, 0.02897644, 0.026168823, -0.01576233, -0.010932922, -0.053253174, -0.021331787, -0.025436401, -0.009063721, 0.004219055, -0.0013666153, -0.022247314, 0.04083252, 0.013671875, 0.05206299, -0.033172607, -0.0029449463, -0.011581421, -0.070007324, 0.062561035, -0.024261475, -0.058654785, -0.0025730133, -0.01360321, -0.042236328, -0.008392334, -0.077697754, -0.018798828, -0.05871582, -0.029785156, -0.019363403, -0.010765076, 0.010391235, -0.077941895, -0.014350891, -0.0385437, 0.061523438, 0.0137786865, 0.031707764, -0.006866455, -0.037322998, -0.06866455, 0.014503479, -0.042785645, -0.026504517, 0.0010967255, -0.009361267, -0.004547119, -0.0028591156, 0.030319214, -0.026321411, 0.04611206, -0.02180481, -0.0118255615, 0.03201294, -0.0209198, 0.0051193237, 0.0046958923, -0.045074463, 0.00522995, -0.009689331, 0.020111084, 0.05529785, 0.018676758, -0.0051651, -0.07342529, -0.015899658, -0.03955078, 0.05041504, -0.020263672, -0.0099105835, 0.01939392, 0.026138306, -0.024047852, -0.019439697, 0.023635864, 0.020309448, 0.01146698, 0.015686035, 0.0054359436, -0.018249512, -0.017089844, 0.011108398, -0.012390137, 0.0006966591, 0.013038635, 0.018310547, 0.025756836, 0.017822266, -0.023757935, 0.017715454, -0.0046844482, -0.029037476, 0.013191223, -0.0029563904, -0.0060424805, -0.0031108856, -0.025772095, -0.033569336, -0.029052734, -0.006324768, 0.040740967, 0.010269165, -0.031707764, -0.027740479, -0.022018433, -0.00894165, -0.030899048, -0.048858643, -0.0008921623, -0.01928711, -0.015991211, 0.027114868, 0.000497818, 0.037353516, -0.024429321, -0.015838623, -0.0036125183, -0.013938904, 0.004749298, -0.012718201, -0.0017614365, 0.03074646, -0.021728516, 0.030471802, -0.005218506, -0.103759766, -0.036315918, -0.0015497208, -0.0041275024, 0.005142212, 0.017318726, 0.0007376671, 0.039215088, 0.009147644, 0.09338379, 0.0009727478, 0.05142212, 0.019622803, 0.034484863, 0.030456543]}, "B00BM9RD4Y": {"id": "B00BM9RD4Y", "original": "Brand: Mary Lake-Thompson\nName: Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4\nDescription: These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you'll find they're made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What's more, they're dishwasher safe. Just be sure to keep them from the microwave or oven.\nFeatures: They look like paper plates but they're actually durable melamine\nPrinted with summer BBQ food designs by Mary Lake-Thompson\nSturdy weight with a smooth matte finish\nGreat for garden parties, picnics and kids; matching platter also available\n9\" in diameter; dishwasher-safe, no microwave or oven\n", "metadata": {"Name": "Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4", "Brand": "Mary Lake-Thompson", "Description": "These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you'll find they're made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What's more, they're dishwasher safe. Just be sure to keep them from the microwave or oven.", "Features": "They look like paper plates but they're actually durable melamine\nPrinted with summer BBQ food designs by Mary Lake-Thompson\nSturdy weight with a smooth matte finish\nGreat for garden parties, picnics and kids; matching platter also available\n9\" in diameter; dishwasher-safe, no microwave or oven", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.015068054, 0.020614624, -0.03955078, -0.027267456, -0.01600647, 0.0005145073, -0.04586792, -0.0044517517, -0.04763794, 0.015205383, 0.00554657, 0.0063438416, -0.015289307, -0.023498535, 0.015602112, -0.03277588, -0.014030457, 0.016159058, 0.012573242, -0.054748535, 0.016326904, -0.0869751, 0.057006836, -0.016952515, 0.052124023, 0.054870605, -0.066467285, -0.015304565, 0.032562256, 0.014083862, 0.02609253, -0.022567749, 0.005508423, 0.0032520294, -0.01737976, -0.05407715, -0.03466797, 0.008377075, 0.0065574646, -0.038513184, -0.007457733, 0.02267456, -0.028274536, -0.0006656647, -0.04638672, -0.009857178, -0.01966858, -0.009536743, 0.004878998, 0.032073975, 0.0025863647, -0.041870117, 0.014503479, -0.006263733, -0.011192322, -0.020187378, 0.0113220215, -0.009239197, 0.0069465637, 5.8412552e-05, 0.021194458, 0.04562378, 0.0073280334, 0.03930664, -0.036254883, -0.013893127, 0.018005371, -0.010108948, -0.030715942, -0.021606445, 0.062164307, 0.00082969666, 0.013824463, -0.041290283, 0.009857178, 0.03527832, -0.032684326, 0.0037384033, 0.015686035, -0.003288269, -0.030761719, -0.029632568, -0.016281128, -0.03756714, 0.012680054, 0.006767273, -0.025894165, -0.010757446, -0.0030937195, 0.016571045, 0.003522873, 0.0037555695, -0.014312744, 0.097717285, -0.00029349327, 0.0287323, 0.015617371, 0.0029830933, 0.032989502, 0.02557373, -0.00712204, -0.026504517, 0.012229919, -0.014335632, -0.03161621, 0.047943115, 0.04147339, 0.021575928, -0.024307251, 0.00055217743, -0.018051147, -0.028564453, -0.005382538, -0.040527344, -0.02456665, -0.0055122375, -0.037384033, -0.012641907, 0.010360718, -0.05102539, 0.014846802, 0.030410767, -0.05239868, 0.06518555, 0.040740967, 0.05871582, 0.0069999695, 0.015571594, -0.020370483, 0.05041504, -0.035827637, -0.00944519, 0.010368347, 0.020050049, 0.008140564, -0.033172607, 0.021118164, -0.027435303, -0.014526367, 0.008773804, 0.0037193298, 0.004425049, 0.04333496, -0.03729248, -0.04324341, 0.018692017, 0.021011353, 0.019866943, -0.03387451, -0.0758667, 0.036132812, -0.021469116, 0.033111572, -0.03213501, -0.007827759, -0.048187256, -0.016357422, -0.017929077, 0.006790161, -0.035980225, -0.028411865, -0.003364563, 0.02444458, -0.039978027, -0.020874023, 0.0020713806, -0.039154053, 0.01134491, 0.00605011, 0.053649902, -0.010276794, 0.047302246, -0.03439331, -0.032104492, -0.021850586, -0.06097412, 0.0016965866, 0.05178833, 0.054473877, -0.05203247, -0.05810547, -0.063964844, 0.110839844, -0.04248047, -0.032104492, 0.01335144, -0.022994995, 0.023101807, 0.066345215, -0.015571594, -0.016952515, -0.020874023, -0.019088745, -0.009544373, 0.00076293945, 0.012954712, -0.037872314, 0.01322937, -0.020706177, -0.0065078735, -0.064453125, -0.0021743774, -0.009559631, 0.032440186, -0.02003479, 0.001080513, -0.0068244934, 0.01600647, 0.031951904, 0.022262573, -0.010253906, -0.013313293, -0.01612854, 0.0031852722, -0.012741089, -0.0060577393, -0.039916992, 0.027862549, 0.018112183, 0.006214142, 0.032684326, -0.006538391, 0.035339355, -0.03527832, -0.0039405823, 0.007019043, -0.046813965, 0.010253906, -0.008110046, 0.013542175, 0.0008511543, 0.037994385, 0.0014371872, 0.01234436, -0.015548706, 0.025985718, 0.03277588, 0.019485474, -0.016311646, -0.008796692, 0.007270813, 0.0050964355, -0.039489746, -0.024230957, 0.031219482, -0.025268555, -0.003293991, 0.0021648407, -0.0018453598, 0.00017249584, 0.017059326, -0.020050049, 0.03778076, 0.0076560974, 0.01537323, 0.021957397, -0.03466797, 0.03439331, -0.049987793, 0.042297363, -0.044647217, 0.031311035, 0.077697754, -0.03994751, 0.0362854, -0.0072250366, 0.01612854, 0.018341064, -0.027145386, 0.011016846, 0.013420105, 0.0020332336, 0.02330017, -0.010787964, -0.042022705, -0.04031372, -0.020889282, 0.02709961, 0.033111572, -0.035705566, 0.0011510849, 0.01234436, -0.02053833, -0.019424438, 0.020996094, -0.04748535, -0.0071640015, -0.0066871643, -0.047576904, -0.06896973, -0.031555176, 0.03326416, -0.05432129, 0.032196045, 0.02281189, -0.022872925, 0.031555176, 0.06317139, -0.0026741028, -0.008682251, -0.04272461, -0.006664276, -0.048065186, -0.019897461, 0.013015747, 0.007926941, 0.013679504, 0.012527466, 0.003921509, -0.010917664, -0.0113220215, 0.025604248, 0.019607544, 0.0385437, 0.0149002075, 0.008483887, 0.017684937, 0.06903076, 0.05609131, 0.004383087, -0.04147339, 0.066223145, -0.028823853, -0.0048065186, 0.03555298, 0.022750854, -0.058380127, -0.011375427, -0.0713501, 0.05429077, 0.018112183, 6.735325e-05, -0.0071487427, 0.00573349, -0.0066490173, 0.032318115, -0.009498596, 0.039978027, -0.023727417, -0.04928589, -0.056854248, 0.0060157776, -0.010772705, -0.04937744, -0.062561035, 0.00095272064, 0.052124023, -0.00083971024, -0.01663208, 0.00869751, 0.025970459, -0.028274536, -0.02998352, 0.006225586, -0.015914917, -0.04373169, 0.032073975, 0.032470703, -0.015777588, -0.034118652, -0.027038574, -0.007572174, -0.045166016, -0.017822266, 0.026229858, -0.004257202, -0.03677368, 0.014350891, 0.022537231, 0.011070251, 0.082214355, 0.013801575, -0.056762695, -0.023361206, -0.011253357, -0.06585693, 0.004470825, -0.048309326, -0.024810791, -0.013519287, -0.009712219, 0.021087646, 0.0018806458, 0.036499023, 0.025848389, 0.022705078, -0.00554657, 0.06274414, -0.02079773, -0.013877869, -0.029800415, 0.032958984, 0.0067863464, -0.023498535, -0.031219482, -0.006126404, -0.008926392, 0.002450943, -0.0018386841, -0.004486084, -0.07141113, 0.018981934, 6.556511e-06, -0.040008545, 0.00061511993, -0.057403564, -0.028869629, -0.03765869, 0.00730896, 0.025924683, -0.04849243, 0.008880615, -0.07055664, 0.003955841, -0.0049476624, -0.0036315918, 0.05319214, 0.0010328293, -0.0021324158, -0.031677246, 0.050750732, -0.079589844, 0.047058105, 0.013214111, -0.056121826, 0.03164673, -8.833408e-05, 0.046813965, 0.015670776, -0.018600464, -0.007598877, -0.038116455, 0.013923645, 0.012886047, -0.061767578, -0.046295166, -0.0078125, -0.034729004, 0.06225586, -0.06109619, -0.0059432983, -0.013908386, -0.006011963, 0.02708435, -0.00983429, -0.0033454895, -0.024124146, -0.012771606, -0.060577393, 0.009101868, -0.026885986, 0.03189087, -0.026428223, 0.0151901245, 0.0025177002, 0.009719849, 0.019378662, 5.108118e-05, 0.009971619, 0.01121521, -0.025268555, -0.0049743652, 0.023895264, -0.04714966, 0.0076065063, -0.0262146, 0.11340332, 0.0009074211, 0.0073928833, 0.022262573, -0.011253357, -0.036376953, 0.060180664, 0.0362854, -0.010986328, 0.031066895, -0.024414062, 0.029937744, -0.11071777, -0.00046658516, -0.065979004, 0.01373291, -0.041046143, 0.028747559, 0.042419434, -0.030410767, 0.06555176, 0.024307251, -0.027450562, 0.028823853, 0.0031814575, 0.007129669, -0.00010955334, 0.017837524, -0.043670654, 0.01033783, 0.008331299, -0.036102295, -0.013183594, -0.009666443, -0.07739258, 0.0098724365, -0.02722168, -0.0041389465, 0.02998352, 0.0047416687, 0.017532349, 0.015167236, -0.0020542145, 0.031463623, 0.020523071, -0.008979797, -0.0014190674, -0.004360199, -0.019042969, -0.0030708313, -0.0032978058, 0.008087158, -0.02949524, -0.002714157, 0.049804688, -0.006603241, 0.060455322, 0.009376526, -0.022338867, 0.0070648193, 0.02545166, -0.026260376, -0.04171753, 0.009246826, 0.039245605, 0.030059814, 0.035308838, -0.008880615, -0.013221741, 0.000151515, -0.016326904, -0.0025119781, -0.04095459, -0.016967773, -0.018295288, -0.004951477, 0.010856628, 0.0101623535, -0.014030457, 0.016036987, 0.010040283, 0.025604248, 0.0158844, -0.023406982, 0.007095337, 0.02583313, -0.011924744, -0.0076141357, -0.020935059, -0.057617188, -0.0418396, 0.028030396, 0.028076172, -0.027313232, -0.02671814, 0.0034732819, 0.0044403076, -0.010345459, -0.0131073, 0.028274536, 0.025650024, 0.01751709, 0.05432129, -0.06945801, 0.0067863464, -0.04534912, 0.043151855, -0.01222229, 0.024917603, -0.019134521, -0.009002686, 0.021606445, 0.009094238, 0.015129089, 0.0065956116, -0.003030777, -0.020767212, -0.004348755, -0.03250122, 0.010871887, 0.03930664, 0.008422852, -0.0037651062, 0.0027275085, 0.018753052, -0.019866943, -0.0124435425, -0.10510254, 0.0056915283, 0.023849487, -0.0340271, 0.0029582977, -0.0519104, -0.00036239624, -0.003107071, -0.023590088, -0.01423645, -0.017654419, 0.06512451, -0.022872925, -0.03704834, 0.015899658, -0.021881104, -0.035369873, -0.031982422, -0.00074625015, 0.018432617, 0.002117157, -0.017044067, 0.022827148, -0.03439331, 0.07116699, 0.07171631, -0.017730713, -0.010597229, 0.012573242, -0.04309082, -0.050933838, -0.002067566, 0.006526947, -0.001250267, -0.011428833, -0.023971558, 0.008354187, -0.027175903, 0.008094788, -0.021652222, -0.030136108, 0.0031318665, 0.0112838745, -0.011253357, -0.029663086, 0.01612854, 0.03050232, 0.034942627, -0.0057144165, 0.012413025, -0.014251709, -0.0052871704, -0.01725769, 0.010673523, 0.015419006, -0.011245728, -0.003227234, 0.021621704, 0.014587402, 0.0075950623, -0.014297485, 0.0017385483, 0.013656616, 0.014259338, 0.056243896, -0.04534912, -0.014930725, -0.011558533, -0.0034255981, 0.00674057, -0.043884277, -0.012573242, 0.020446777, -0.030685425, 0.03414917, -0.032592773, 0.0075149536, 0.050079346, -0.10101318, 0.002620697, -0.003982544, 0.02381897, -0.055114746, 0.005744934, 0.009803772, -0.051757812, -0.046844482, -0.008399963, -0.06048584, 0.04864502, -0.029129028, -0.008598328, 0.013961792, -0.04989624, -0.01789856, 0.016204834, 0.024612427, -0.015625, 0.016723633, 0.02708435, -0.0048103333, -0.03933716, 0.01763916, -0.013771057, -0.016067505, 0.031402588, -0.035308838, -0.008232117, 0.013145447, -0.035369873, -0.024215698, 0.013877869, -0.023391724, -0.04660034, -0.00579834, 0.016708374, -0.0005888939, -0.009902954, 0.019927979, -0.0124435425, -0.0074157715, 0.023773193, -0.010398865, 0.0014295578, 0.01676941, -0.017318726, -0.0059547424, -0.023666382, -0.013511658, 0.003440857, -0.025848389, -0.0008854866, 0.01940918, -0.030883789, 0.010406494, 0.0029468536, 0.040130615, -0.002193451, 0.021972656, 0.11602783, -0.052581787, -0.053771973, -0.08911133, 0.08154297, -0.043273926, 0.016586304, 0.014251709, -0.003446579, 0.014595032, 0.02330017, 0.012382507, 0.004711151, 0.015930176, 0.021743774, -0.038879395, 0.008216858, 0.0074043274, 0.019058228, -0.022918701, 0.041992188, -0.017868042, 0.030227661, -0.038360596, -0.023590088, -0.0010251999, 0.03173828, -0.022140503, -0.04248047, 0.0069885254, -0.014801025, 0.0064353943, -0.007972717, -0.00095176697, -0.06329346, 0.0011959076, -0.009963989, 0.013435364, 0.012779236, -0.0011053085, 0.0035209656, 0.019210815, -0.01399231, 0.022064209, -0.052947998, -0.0077323914, 0.005821228, 0.049804688, 0.046417236, 0.010475159, 0.026489258, -0.025054932, 0.0031490326, 0.0036563873, 0.03375244, -0.017440796, -0.0024909973, -0.003730774, 0.048919678, 0.011131287, 0.019638062, -0.0158844, -0.0041999817, -0.032196045, 0.0005517006, -0.004600525, 0.0076141357, -0.020233154, -0.033966064, -0.025299072, -0.008705139, -0.0057144165, -0.0042800903, 0.030380249, 0.021255493, -0.011558533, -0.02267456, 0.018096924, -0.008964539, -0.011009216, -0.004650116, -0.011993408, -0.024459839, -0.0009737015, -0.095336914, -0.023361206, -0.02949524, 0.030090332, 0.029571533, 0.02670288, -0.03173828, 0.057037354, 0.015991211, 0.05053711, 0.013191223, -0.07659912, 0.034576416, 0.009346008, 0.031311035, 0.04699707, -0.0023059845, -0.004486084, 0.050964355, 0.03643799, -0.081726074, 0.11077881, -0.066711426, -0.046844482, -0.017074585, 0.042755127, -0.045776367, -0.024459839, 0.039489746, -0.0034809113, -0.0010061264, -0.012145996, 0.004184723, -0.0010347366, 0.012771606, -0.04385376, -0.02407837, -0.018661499, 0.032165527, 0.018005371, -0.002450943, -0.028717041, 0.03189087, 0.08148193, -0.01625061, 0.012565613, -0.036621094, 0.016983032, -0.012290955, -0.03387451, -0.038879395, 0.017593384, -0.024353027, -0.0011138916, 0.01083374, -0.0015363693, 0.023803711, 0.0335083, 0.003042221, -0.011306763, 0.05230713, -0.042663574, 0.056274414, -0.05618286, 0.029541016, 0.0077590942, 0.025863647, -0.048065186, -0.0011472702, 0.047790527, -0.009399414, 0.024337769, 0.035308838, 0.008834839, -0.0034561157, -0.0181427, 0.007270813, 0.008300781, -0.00028896332, -0.019256592, -0.018051147, -0.031982422, -0.01159668, -0.012374878, 0.044769287, 0.013427734, -0.076660156, -0.00894165, -0.016494751, -0.013801575, -0.014625549, -0.01449585, -0.043304443, -0.048858643, 0.056396484, -0.0103302, -0.009162903, 0.009498596, -0.021362305, -0.013496399, -0.018127441, 0.021484375, 0.015541077, 0.04937744, 0.014778137, 0.09362793, -0.009941101, -0.0390625, -0.11383057, -0.017929077, -0.06323242, 0.044158936, 0.035125732, -0.0040245056, 0.020431519, 0.0031394958, 0.011192322, 0.05996704, 0.024307251, -0.0178833, 0.0009841919, -0.07507324, -0.024734497, 0.040039062, -0.011314392, 0.0072288513, -0.03817749, 0.036071777, -0.022781372, 0.036193848, 0.010818481, -0.029296875, -0.06500244, -0.044952393, -0.053741455, 0.014404297, 0.0061569214, -0.032684326, 0.02696228, -0.0099105835, -0.033813477, 0.009155273, 0.024124146, 0.0046691895, 0.021697998, 0.05215454, -0.012397766, -0.021530151, 0.008865356, 0.004234314, -0.0038204193, 0.041778564, 0.008590698, 0.022109985, 0.037017822, -0.0041275024, -0.021560669, -0.014930725, -0.01789856, -0.031280518, -0.012763977, 0.001917839, 0.0020217896, -0.021057129, 0.024673462, 0.035461426, -0.010307312, -0.01713562, -0.033569336, 0.034973145, -0.0289917, -0.014091492, -0.0011415482, 0.03213501, -0.0015230179, 0.0017576218, 0.0121536255, -0.074279785, 0.020523071, 0.060699463, 0.0032997131, 0.018615723, -0.03164673, -0.038391113, -0.0069999695, -0.009857178, 0.004032135, -0.014793396, 0.045562744, -0.016540527, -0.011016846, 0.022415161, -0.047180176, -0.014503479, -0.059051514, 0.032440186, 0.008666992, 0.008491516, 0.053771973, -0.010421753, 0.020706177, -0.022354126, -0.05871582, 0.0023784637, -0.05126953, -0.030548096, -0.04083252, 0.009101868]}, "B00KUJCH66": {"id": "B00KUJCH66", "original": "Brand: Grillaholics\nName: Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty\nDescription:

      THE SECRET TO GRILLING LIKE A PRO

      Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

      THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

      • Set of two 15.75\" x 13\" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
      • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
      • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
      • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
      • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
      • Note:\nFeatures: [Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you'll ever need. NEVER buy another grill mat again.\n[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat.\n[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze.\n[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\n[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you\u2019ll get a product you love or we\u2019ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.\n", "metadata": {"Name": "Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty", "Brand": "Grillaholics", "Description": "

        THE SECRET TO GRILLING LIKE A PRO

        Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

        THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

        • Set of two 15.75\" x 13\" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
        • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
        • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
        • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
        • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
        • Note:", "Features": "[Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you'll ever need. NEVER buy another grill mat again.\n[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat.\n[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze.\n[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\n[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you\u2019ll get a product you love or we\u2019ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.021560669, 0.013290405, -0.007007599, -0.028244019, 0.000114142895, -0.0050354004, -0.009513855, -0.00944519, -0.03050232, 0.033050537, 0.0033092499, 0.03704834, -0.01965332, -0.017105103, 0.0057373047, -0.015068054, 0.02659607, -0.04269409, -0.027648926, -0.022384644, -0.013748169, -0.026763916, 0.016937256, 0.017425537, 0.0725708, 0.014289856, -0.0034599304, -0.007659912, 0.02633667, -0.010253906, 0.038482666, -0.032592773, 0.0463562, -0.0056762695, -0.032806396, -0.015930176, 0.030685425, -0.025985718, -0.041870117, 0.046081543, 0.04071045, -0.021606445, -0.019515991, -0.038208008, -0.027404785, 0.0075035095, 0.018234253, -0.0011014938, 0.004611969, 0.032684326, -0.00074338913, 0.0017681122, -0.0069236755, 0.054504395, -0.0055274963, 0.0016794205, -0.00089883804, -0.014259338, 0.023544312, 0.01399231, -0.0018291473, 0.010902405, 0.011734009, 0.0016832352, -0.025878906, 0.004798889, 0.036499023, -0.02432251, -0.054656982, -0.04837036, 0.040130615, -0.01625061, 0.045166016, -0.04727173, -0.019561768, -0.02482605, 0.008796692, -0.02494812, 0.008583069, -0.031433105, -0.062194824, -0.012901306, 0.022262573, -0.040802002, -0.0032348633, -0.017349243, -0.030044556, 0.016937256, -0.01751709, -0.01890564, -0.008621216, -0.008117676, -0.048583984, 0.059326172, 0.0031166077, -0.011871338, -0.04168701, -0.027999878, -0.016555786, 0.025863647, 0.021072388, -0.031433105, 0.06896973, -0.023513794, -0.016967773, 0.032440186, -0.01713562, -0.0024909973, 0.0023822784, 0.034179688, -0.006175995, -0.050354004, 0.005897522, -0.030151367, -0.04321289, -0.0031852722, 0.007369995, -0.023757935, 0.031158447, -0.04647827, -0.023345947, -0.018096924, -0.0357666, 0.049865723, 0.046691895, 0.05142212, 0.00856781, 0.03237915, -0.08135986, 0.016860962, 0.0005517006, -0.0057296753, 0.024856567, 0.0637207, 0.0058670044, -0.013771057, -0.0048065186, -0.04623413, -0.018463135, 0.012359619, 0.014198303, 0.014099121, 0.06530762, -0.014076233, -0.008049011, -0.0024223328, 0.03845215, 0.041503906, -0.028945923, -0.0317688, 0.03074646, 0.018081665, 0.058135986, 0.017471313, -0.059692383, 0.010955811, -0.004459381, -0.01626587, -0.050476074, -0.03677368, -0.019470215, -0.026306152, 0.024032593, -0.042938232, -0.061798096, 0.0413208, -0.04598999, -0.0096588135, 0.0073394775, -0.0024852753, 0.021759033, -0.016723633, -0.010124207, -0.007888794, -0.0036315918, -0.005996704, -0.002105713, 0.05935669, 0.03955078, -0.08459473, -0.045959473, -0.047332764, 0.109680176, -0.030334473, -0.0046958923, -0.039642334, 0.025787354, 0.05493164, 0.022003174, 0.040130615, -0.004627228, -0.050689697, -0.020507812, 0.015037537, 0.020309448, 0.015472412, -0.064697266, 0.017227173, -0.010955811, -0.039794922, -0.009338379, 0.006137848, -0.008621216, -0.0031661987, 0.010055542, -0.040161133, 0.012191772, 0.01966858, 0.019378662, 0.03942871, -0.012031555, -0.038848877, 0.020843506, -0.009185791, 0.0020217896, -0.0047416687, 0.009841919, -0.032073975, 0.025253296, -0.022735596, 0.061828613, 0.070007324, 0.022232056, 0.020812988, 0.03564453, -0.006275177, -0.0231781, -0.015991211, -0.010307312, 0.013267517, -0.06854248, 0.04397583, 0.044281006, 0.016647339, -0.028579712, 0.03250122, 0.055511475, 0.02268982, -0.023010254, 0.001657486, 0.0023117065, -0.05117798, -0.04623413, 0.00076913834, 0.016860962, 0.011024475, 0.0020217896, 0.010902405, -0.032196045, -0.026916504, 0.029571533, 0.0065460205, 0.04031372, 0.019973755, -0.008888245, 0.028259277, -0.050476074, 0.011802673, -0.030471802, 0.016403198, -0.009086609, 0.037475586, 0.061065674, -0.008682251, 0.04800415, -0.030517578, 0.036315918, 0.02658081, -0.0065727234, -0.01852417, 0.00064754486, -0.022415161, 0.0015459061, 0.04434204, 0.009635925, -0.011680603, -0.006462097, -0.011543274, -0.0021896362, 0.013252258, 0.016662598, 0.03164673, 0.003572464, -0.012611389, 0.03414917, 0.0013685226, -0.010040283, -0.011932373, -0.023620605, -0.012832642, 0.021820068, 0.0053482056, -0.023544312, 0.0022506714, 0.02243042, -0.020187378, -0.008605957, 0.0069007874, 0.0056114197, -0.0051956177, 0.016952515, 0.04837036, -0.018478394, 0.029388428, -0.011482239, 0.021209717, -0.004550934, -0.0090789795, -0.020004272, -0.048614502, 0.028442383, 0.0048561096, 0.031677246, 0.016204834, 0.040222168, 0.015449524, 0.0058898926, 0.061035156, 0.0335083, 0.01335907, -0.02305603, 0.031280518, 0.005657196, 0.015258789, 0.011016846, -0.0073127747, 0.00856781, 0.0032997131, 0.0105896, 0.015716553, 0.00844574, 0.008605957, -0.01676941, -0.0032901764, 0.0066871643, 0.0047569275, -0.011184692, 0.05709839, -0.0061950684, -0.0076141357, -0.0016975403, -0.044189453, -0.0015583038, -0.029312134, -0.07977295, 0.034332275, 0.046783447, 0.024490356, -0.015594482, -0.034210205, 0.033233643, -0.04626465, 0.0211792, 0.012710571, 0.008140564, -0.011459351, -0.019882202, -0.009567261, -0.03062439, -0.0690918, -0.023742676, 0.01838684, -0.04953003, 0.0023880005, 0.039733887, -0.02230835, -0.014587402, -0.0039596558, -0.02722168, -0.0027217865, 0.022491455, 0.0029411316, -0.05090332, -0.04699707, -0.055236816, -0.0029525757, 0.016845703, -0.025497437, -0.029754639, -0.016448975, -0.004032135, -0.0076065063, -0.0010757446, -0.028671265, -0.003419876, 0.022964478, 0.04067993, 0.07647705, -0.014022827, -0.04486084, -0.002155304, 0.06665039, -0.05001831, -0.030654907, -0.029464722, 0.018463135, 0.010475159, -0.07434082, 0.025131226, -0.034454346, -0.08111572, -0.014549255, 0.014419556, -0.05947876, -0.01864624, -0.06616211, -0.061309814, -0.037902832, -0.0126571655, 0.09472656, -0.011260986, -0.017990112, -0.027069092, 0.024124146, 0.021514893, 0.0013475418, 0.016830444, 0.00459671, -0.012763977, -0.035095215, 0.032470703, -0.0501709, 0.017837524, 0.009635925, -0.032226562, 0.0029830933, -0.0022182465, 0.037200928, -0.037475586, -0.01134491, -0.009391785, -0.038085938, -0.018859863, 0.013252258, -0.053985596, 0.05078125, 0.02696228, 0.0054244995, 0.06488037, -0.040039062, -0.055847168, -0.02027893, -0.022201538, 0.028564453, -0.025726318, -0.0008072853, -0.02078247, -0.060943604, -0.011924744, -0.026657104, -0.0099487305, 0.01335907, 0.03488159, 0.026489258, -0.0010242462, 0.04940796, 0.043273926, 0.054260254, 0.011245728, -0.00724411, -0.014007568, -0.051879883, 0.08508301, -0.00016319752, 0.0024967194, -0.04650879, 0.056610107, 0.000726223, 0.015731812, -0.016921997, -0.0070114136, 0.045043945, 0.033325195, -0.010856628, 0.025909424, -0.0390625, -0.01777649, 0.04559326, -0.04260254, -0.0259552, -0.05996704, 0.0019683838, -0.06317139, 0.07763672, 0.03527832, -0.015029907, 0.07556152, 0.06347656, 0.005958557, 0.02204895, 0.014694214, -0.016647339, 0.0010671616, 0.049713135, -0.016418457, 0.011116028, 0.0032539368, 0.0012540817, 0.02368164, 0.01108551, -0.007850647, -0.002828598, -0.0368042, -0.035247803, -0.011100769, 0.032836914, 0.0046958923, 0.031402588, -0.006580353, -0.045684814, 0.012969971, -0.031219482, 0.041656494, 0.023330688, -0.0039100647, -0.012367249, 0.060394287, 0.006866455, -0.00097227097, -0.013214111, 0.031204224, 0.03781128, 0.010543823, 0.030136108, -0.0034446716, -0.003698349, -0.016296387, 0.0041923523, -0.07696533, 0.030975342, 0.03463745, 0.049041748, 0.046844482, -0.06549072, -0.0009417534, -0.017349243, -0.011909485, 0.023803711, -0.014457703, -0.039031982, -0.015357971, -0.0052108765, 0.016708374, -0.022201538, 0.025848389, -0.041015625, 0.011131287, -0.016571045, -0.05593872, -0.02961731, -0.018707275, -0.004245758, -0.004749298, 0.0113220215, -0.005619049, -0.04397583, -0.06793213, 0.007858276, 0.0065994263, 0.029922485, -0.024261475, 0.029937744, -0.03555298, -0.0056610107, -0.02268982, -0.01235199, 0.05822754, 0.035308838, 0.05029297, -0.034118652, -0.02166748, -0.048706055, 0.029876709, 0.014923096, -0.006729126, -0.016494751, -0.0054740906, 0.0042495728, 0.031707764, 0.027511597, -0.015167236, 0.006298065, -0.01612854, -0.03982544, -0.057495117, -0.0007276535, 0.056365967, -0.06414795, -0.014152527, -0.012046814, 0.066345215, -0.004310608, 0.0062065125, -0.044799805, -0.0045394897, 0.024337769, -0.027557373, -0.019424438, -0.01360321, 0.00041413307, 0.009986877, -0.017684937, -0.006504059, -0.008850098, 0.035583496, -0.0065574646, -0.014266968, 0.005378723, 0.014587402, -0.03201294, 0.0061531067, -0.040924072, -0.019378662, 0.064208984, -0.037872314, -0.035980225, -0.0385437, 0.045532227, 0.06542969, -0.0044555664, 0.027450562, 0.012176514, -0.007583618, -0.01449585, 0.021255493, -0.035491943, -0.01486969, 0.028808594, -0.002407074, -0.032043457, -0.007801056, -0.02470398, 0.013191223, -0.024551392, 0.025970459, -0.0051231384, 0.026046753, -0.009605408, 0.015930176, 0.05319214, 0.008544922, 0.024139404, 0.025314331, -0.025299072, -0.013084412, -0.042663574, -0.026245117, 0.007408142, -0.025772095, -0.028167725, 0.038085938, 0.0020198822, -0.068603516, 0.042022705, 0.0496521, -0.00605011, -0.0059280396, 0.018203735, 0.01991272, -0.009689331, -0.008903503, 0.058807373, -0.007217407, 0.0048980713, -0.009979248, -0.035186768, 0.014579773, 0.017028809, -0.043060303, 0.038024902, -0.00466156, -0.043151855, -0.028945923, -0.012542725, 0.02798462, -0.025375366, 0.06112671, 0.034057617, 0.017425537, -0.09020996, 0.01436615, -0.022598267, 0.012550354, -0.038238525, 0.005027771, 0.038482666, 0.03189087, -0.007572174, -0.012702942, 0.03918457, -0.031341553, -0.0011396408, 0.010864258, -0.009925842, -0.059661865, -0.039001465, -0.015007019, -0.05947876, -0.0028839111, -0.016723633, 0.029891968, -0.024490356, -0.021560669, -0.05908203, -0.011947632, 0.010551453, 0.0015888214, -0.013626099, -0.015472412, -0.004917145, -0.01424408, 0.02394104, -0.01083374, 0.004043579, -0.012954712, 0.007534027, -0.014732361, 0.006504059, -0.020431519, 0.024429321, -0.03390503, -0.0071372986, 0.0015640259, -0.02458191, 0.0074920654, -0.030685425, -0.03265381, -0.015792847, 0.0025119781, 0.021377563, -0.033111572, -0.0440979, 0.039916992, -0.05014038, -0.02130127, -0.04196167, 0.04159546, -0.018234253, -0.025878906, 0.07208252, 0.051635742, 0.013999939, 0.022735596, -0.012168884, -0.041107178, 0.042388916, 0.020904541, -0.02911377, -0.033691406, -0.024276733, -0.010383606, -0.0012636185, -0.036376953, 0.005142212, 0.027328491, -0.016311646, -0.039886475, 0.0048675537, -0.026000977, 0.01146698, 0.023605347, 0.023864746, 0.014701843, 0.005016327, -0.021362305, 0.03463745, -0.052612305, -0.04586792, 0.05239868, 0.022964478, 0.0036354065, -0.05508423, 0.022720337, 0.058135986, 0.004047394, 0.0869751, -0.0051345825, -0.042419434, -0.0084991455, 0.05886841, 0.058624268, 0.04156494, -0.03274536, -0.03665161, 0.0026283264, 0.02180481, 0.027801514, -0.009719849, -0.043701172, -0.0692749, 0.07147217, 0.034729004, 0.012779236, 0.03375244, 0.025909424, 0.001745224, -0.0076675415, 0.006542206, 0.04473877, -0.027908325, -0.014335632, -0.036712646, -0.018676758, 0.029449463, 0.009635925, 0.0045700073, -0.019348145, 0.056121826, 0.016815186, -0.011779785, 0.01675415, 0.02330017, 0.013336182, -0.005458832, -0.07098389, 0.030761719, 0.011756897, 0.00491333, -0.020690918, -0.024658203, 0.005382538, 0.025283813, 0.0035552979, 0.016479492, 0.009117126, 0.0141067505, 0.03152466, -0.06689453, 0.056121826, 0.025772095, -0.036987305, 0.015335083, -0.041992188, -0.014625549, -0.0045661926, 0.031066895, -0.007911682, 0.060516357, -0.012123108, 0.012390137, -0.008995056, 0.046691895, -0.053619385, -0.010093689, 0.0020198822, 0.013671875, 0.017562866, -0.01020813, -0.011421204, 0.017318726, 0.03665161, -0.0047073364, 0.01927185, -0.013923645, 0.014045715, -0.015525818, 0.01663208, -0.025619507, -0.06970215, 0.016220093, 0.041931152, -0.034301758, 0.029434204, 0.0071525574, 0.011405945, 0.005004883, -0.029281616, 0.01663208, -0.017425537, 0.019195557, 0.036254883, 0.034851074, 0.011024475, 0.01789856, -0.017822266, 0.030807495, 0.007843018, 0.023880005, 0.035095215, 0.02859497, 0.056793213, 0.053955078, 0.06890869, -0.019195557, 0.02217102, 0.041748047, -0.011016846, -0.0021686554, -0.024383545, -0.0058631897, -0.033691406, -0.010047913, 0.01398468, -0.022872925, -0.005004883, -0.0066184998, 0.045074463, -0.0067710876, -0.026473999, -0.019485474, 0.042053223, -0.044403076, 0.04159546, -0.050567627, -0.01398468, 0.0018081665, -0.00617218, -0.020248413, -0.01486969, -0.023971558, 0.011512756, 0.0151901245, -0.050445557, -0.056518555, 0.020950317, 0.040008545, -0.07977295, -0.0390625, -0.02949524, 0.057373047, -0.0037651062, 0.03869629, -0.026611328, -0.05545044, -0.03277588, 0.027832031, -0.050994873, -0.0038795471, -0.027191162, 0.027709961, 0.024246216, -0.0036468506, 0.014831543, 0.079589844, -0.0007534027, 0.00019824505, -0.0625, -0.07147217, -0.019927979, 0.05633545, -0.021224976, -0.03503418, -0.05053711, 0.077697754, 0.029327393, 0.022537231, 0.034820557, -0.014434814, -0.053375244, 0.00044178963, -0.02444458, 0.03286743, 0.01637268, -0.011627197, 0.04434204, 0.01423645, -0.015823364, 0.043395996, 0.016113281, -0.033172607, 0.02255249, 0.011962891, -0.00818634, -0.032226562, -0.011909485, -0.010848999, -0.0066719055, 0.018722534, 0.05819702, 0.044799805, -0.03262329, 0.015220642, 0.003604889, 0.01914978, -0.009025574, -0.03111267, -0.02406311, 0.011459351, -0.018753052, -0.044281006, 0.021484375, -0.008880615, -0.018493652, -0.0231781, 0.0031642914, 0.045776367, -0.028045654, 0.0025959015, -0.033203125, 0.016433716, 0.01235199, -0.051635742, 0.030029297, -0.04458618, 0.007499695, 0.008956909, 0.038146973, 0.030761719, 0.027450562, -0.061279297, 0.010986328, 0.028396606, 0.0028438568, 0.022415161, -0.010322571, 0.030822754, -0.007881165, 0.020385742, -0.026031494, -0.071899414, -0.029647827, 0.010795593, 0.0034637451, -0.0047035217, 0.05319214, -0.046844482, 0.003768921, -0.026870728, -0.0231781, -0.044403076, 0.017868042, 0.016479492, -0.020858765, 0.034118652]}, "B06ZYM3MSW": {"id": "B06ZYM3MSW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "metadata": {"Name": "Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black", "Brand": "Z GRILLS", "Description": "", "Features": "ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.024551392, 0.009132385, -0.020645142, -0.016357422, -0.00077438354, -0.0046539307, -0.013496399, -0.024902344, -0.006626129, 0.0005044937, -0.03314209, 0.03277588, -0.0014486313, -0.027114868, 0.036987305, -0.015045166, 0.00012731552, 0.04144287, 0.008728027, -0.028762817, 0.00969696, -0.01902771, -0.034606934, 0.08312988, 0.04638672, -0.078186035, -0.017074585, 0.023895264, 0.022720337, 0.0006542206, 0.026260376, 0.017318726, 0.026931763, 0.020812988, -0.0340271, -0.023254395, 0.004032135, -0.0071105957, 0.0009012222, 0.003124237, 0.027374268, -0.021118164, -0.065979004, -0.019210815, -0.047607422, -0.029876709, 0.032348633, 0.015388489, 0.004058838, -0.010124207, 0.0027809143, -0.0131073, 0.017669678, -0.02394104, -0.02192688, -0.014122009, 0.008888245, 0.019332886, 0.023788452, -0.0107421875, -0.023239136, 0.020614624, 0.0019817352, 0.0070991516, -0.0013589859, 0.00881958, 0.026000977, -0.010925293, 0.0022392273, 0.0021190643, 0.011100769, -0.0025367737, 0.0067443848, 0.0034980774, -0.035461426, -0.03439331, 0.038848877, -0.030685425, 0.0023994446, 0.028717041, 0.016189575, -0.014175415, 0.052886963, 0.003452301, -0.023208618, -0.018692017, -0.011482239, -0.0018024445, 0.023513794, -0.040863037, 0.010551453, -0.019805908, -0.03967285, 0.058563232, -0.006816864, -0.015792847, -0.029830933, -0.04562378, 0.03866577, 0.054351807, 0.011978149, -0.037628174, 0.04849243, -0.008857727, -0.04626465, 0.0039711, 0.028335571, 0.026062012, -0.009025574, 0.031677246, -0.02809143, -0.01876831, -0.04058838, -0.051605225, -0.01361084, 0.043151855, -0.028961182, 0.003982544, 0.012710571, 0.017700195, -3.695488e-06, 0.007896423, 0.0059280396, 0.018157959, 0.023422241, 0.03765869, -0.0073013306, -0.01309967, -0.062042236, 0.03277588, -0.033477783, -0.00969696, 0.062194824, 0.037078857, 0.0027923584, -0.028900146, 0.05532837, 0.042999268, 0.012138367, 0.016677856, -0.03326416, -0.047088623, 0.022979736, -0.01838684, 0.008155823, -0.016494751, 0.009017944, 0.039215088, -0.0062713623, -0.014793396, 0.042907715, 0.0013179779, 0.041931152, -0.014892578, -0.042236328, -0.02796936, -0.04449463, -0.01928711, -0.004673004, -0.029647827, -0.015533447, -0.015090942, -0.02748108, -0.03744507, -0.054504395, 0.023010254, 0.024520874, 0.020523071, 0.0027656555, 0.01889038, -0.0006017685, 0.009841919, -0.0051651, 0.0231781, 0.024642944, 0.018249512, -0.023925781, 0.06317139, 0.059539795, -0.09484863, -0.05633545, -0.041107178, 0.12817383, -0.05029297, -0.00333786, -0.029678345, 0.024658203, 0.008033752, -0.0035438538, 0.008705139, 0.025512695, 0.0023841858, 0.016021729, -0.010223389, 0.0069503784, 0.03189087, -0.053253174, 0.028549194, -0.023956299, -0.03491211, -0.010925293, -0.0014657974, -0.029937744, 0.013511658, -0.028213501, -0.01449585, -0.010284424, 0.017593384, 0.030700684, 0.029785156, -0.0015716553, 0.017807007, 0.003929138, -0.047668457, -0.038024902, 0.0087509155, -0.031585693, 0.019836426, -0.0026836395, 0.042266846, -0.021575928, -0.007736206, -0.020767212, -0.016189575, 0.07098389, 0.0010271072, -0.00075626373, -0.007045746, 0.08203125, -0.008392334, 0.0004963875, 0.015296936, 0.024993896, 0.016067505, -0.026626587, 0.03894043, 0.06817627, 0.05279541, -0.030578613, -0.017929077, 0.02217102, -0.055145264, -0.006259918, 0.020507812, -0.007598877, -0.024642944, 0.00687027, 0.0119018555, -0.015350342, -0.0050735474, -0.015510559, 0.020217896, 0.02998352, 0.009483337, 0.0057373047, 0.041107178, -0.021697998, 0.03930664, -0.01374054, 0.034088135, -0.024841309, 0.0670166, 0.05883789, -0.006767273, 0.021057129, 0.039123535, 0.04486084, 0.048461914, -0.020614624, 0.023925781, -0.0028972626, 0.0132751465, 0.0001232624, 0.0046844482, 0.006313324, -0.030715942, 0.029754639, 0.002872467, -0.04144287, -0.02659607, 0.028579712, -0.0066108704, 0.016784668, 0.0065345764, 0.025238037, -0.038970947, 0.04458618, 0.07470703, -0.074401855, -0.062042236, 0.005580902, -0.035614014, -0.06707764, -0.015136719, -0.02331543, -0.03604126, 0.059936523, 0.04547119, -0.0029239655, -0.003894806, -0.031707764, 0.006122589, -0.023132324, -0.028961182, -0.00051164627, -0.001531601, 0.01802063, 0.012649536, 0.010360718, -0.041412354, 0.029510498, 0.041900635, 0.035247803, -0.04949951, 0.07720947, 0.03552246, -0.008331299, 0.02357483, 0.012786865, 0.005290985, 0.008934021, -0.03086853, -0.089416504, -0.006164551, -0.028427124, 0.041168213, -0.0126953125, -0.029769897, -0.025894165, 0.024673462, 0.012779236, 0.007419586, 0.0035190582, 0.0026016235, -0.006504059, 0.0025558472, 0.0017518997, -0.029464722, -0.009864807, -0.038360596, 0.014945984, -0.008613586, 0.012565613, 0.0034046173, -0.028900146, -0.004261017, 0.05102539, -0.009979248, -0.0008215904, 0.030700684, -0.0118637085, -0.010917664, 0.0037994385, -0.039276123, 0.017532349, -0.042785645, -0.027420044, -0.03555298, -0.019104004, -0.06774902, -0.03552246, 0.0146484375, -0.045196533, -0.0002770424, 0.029571533, -0.0065956116, -0.0018081665, 0.0053138733, -0.005935669, 0.03933716, 0.04144287, -0.006526947, -0.012283325, -0.02079773, -0.026809692, -0.035949707, 0.054382324, -0.028656006, -0.014320374, 0.024627686, -0.033203125, 0.008934021, -0.022857666, 0.0099105835, 0.004737854, 0.022720337, -0.0085372925, 0.033416748, -0.036712646, -0.015716553, -0.03488159, 0.024978638, -0.017211914, -0.008163452, -0.0178833, -0.006462097, -0.014343262, -0.037139893, -0.027328491, -0.013023376, -0.03866577, -0.009468079, -0.018371582, -0.04324341, 0.005027771, -0.07897949, -0.0395813, -0.043518066, -0.0011224747, 0.052124023, -0.034454346, 0.00070381165, -0.036987305, -0.002828598, 0.0031394958, 0.002822876, -0.0062217712, 0.0011024475, 0.004585266, -0.042541504, 0.0022907257, -0.0211792, -0.0008215904, 0.0068626404, -0.043304443, -0.025009155, -0.038513184, 0.032165527, -0.016647339, 0.009353638, -0.056549072, -0.01158905, 0.013343811, -0.032226562, -0.04977417, -0.03704834, -0.016204834, -0.012214661, 0.025314331, -0.033447266, -0.061431885, -0.03616333, -0.06713867, 0.014427185, -0.014930725, -0.038269043, -0.056854248, -0.09124756, 0.029586792, -0.01020813, -0.0043754578, -0.010528564, 0.05670166, 0.02520752, -0.005771637, 0.09411621, -0.0064201355, 0.04159546, 0.072143555, -0.0049362183, 0.0077934265, -0.03933716, 0.03149414, 0.04849243, -0.048095703, -0.033569336, 0.10699463, 0.008956909, 0.012054443, -0.023773193, -0.02760315, 0.031951904, 0.014884949, 0.008041382, -0.047973633, -0.0345459, 0.04888916, 0.023361206, 0.0020580292, -0.047210693, -0.02255249, 0.004714966, -0.10107422, 0.08404541, 0.01084137, -0.009674072, 0.0368042, 0.06359863, -0.020355225, 0.043548584, 0.041778564, 0.027893066, -0.0035419464, 0.08856201, -0.017120361, -0.023666382, 0.020233154, -0.093933105, 0.0059394836, -0.003004074, -0.02961731, 0.022964478, 0.002122879, -0.025039673, -8.3744526e-05, 0.004558563, 0.04147339, 0.024642944, 0.0056762695, -0.029190063, 0.041656494, -0.016525269, 0.0044174194, -0.0044937134, -0.02935791, -0.043762207, -0.019210815, -0.0079422, -0.05126953, 0.014808655, 0.02218628, 0.018005371, 0.0079193115, 0.013198853, 0.0056877136, 0.0063972473, -0.023361206, 0.0065231323, 0.0017728806, -0.02482605, 0.005886078, -0.0027160645, 0.018432617, 0.029388428, 0.009353638, 0.032165527, -0.017044067, 0.007659912, 0.024749756, -0.025146484, 0.028564453, 0.017990112, -0.05618286, -0.009994507, 0.020248413, -0.056884766, 0.0039367676, 0.0051498413, -0.066589355, 0.018737793, 0.0049858093, 0.0021018982, -0.015701294, -0.019958496, -0.012542725, -0.05316162, -0.033996582, 0.015655518, 0.008010864, -0.015975952, -0.0115737915, 0.029190063, -0.020065308, -0.015792847, -0.012275696, 0.0056037903, 0.05630493, 0.02330017, 0.011253357, -0.025894165, -0.03201294, -0.038360596, 0.0362854, 0.002603531, -0.021316528, -0.019638062, -0.05404663, -0.015533447, 0.0043754578, 0.044403076, 0.030334473, 0.018722534, -0.050445557, -0.038146973, -0.0052223206, -0.025756836, 0.04095459, -0.008880615, -0.00447464, -0.017730713, 0.010536194, -0.030258179, 0.017440796, 0.0016031265, 0.0015945435, -0.015342712, 0.022628784, -0.047302246, -0.017532349, -0.0019273758, 0.008758545, -0.023742676, -0.008888245, -0.019470215, 0.042755127, -0.022888184, 0.02406311, 0.004852295, 0.0044059753, 0.024932861, -0.006626129, 0.041046143, -0.0132751465, -0.00674057, 0.003566742, -0.030319214, -0.05923462, 0.060791016, 0.064575195, -0.004207611, -0.012557983, -0.0037193298, -0.05114746, -0.06359863, -0.020339966, 0.058685303, 0.0473938, 0.041534424, -0.026351929, 0.0008392334, 0.004878998, -0.03503418, -0.0030841827, -0.0004925728, 0.010597229, -0.038146973, 0.03387451, -0.011787415, 0.036499023, 0.053863525, 0.0016040802, 0.008544922, -0.015151978, 0.040924072, -0.017440796, 0.002292633, 0.025848389, -0.033050537, -0.019302368, -0.032287598, -0.054016113, -0.021835327, -0.05105591, 0.01335144, 0.02267456, -0.024017334, -0.012512207, 0.06036377, 0.024719238, 0.017349243, -0.022491455, 0.06555176, 0.01235199, -0.041809082, 0.01449585, -0.024765015, -0.034118652, 0.045684814, -0.057403564, 0.049865723, 0.017349243, -0.03262329, 0.011451721, -0.022079468, -0.022384644, -0.012367249, 0.027618408, 0.0014858246, -0.010559082, -0.03125, -0.017288208, -0.0009994507, 0.06573486, 0.010292053, -0.02355957, 0.02999878, 0.011024475, -0.024932861, 0.0390625, -0.009010315, 0.009765625, -0.0061950684, 0.0019569397, -0.04611206, -0.025268555, 0.019104004, -0.032928467, -0.041259766, -0.017059326, -0.008705139, 0.021118164, -0.012046814, 0.0014066696, -0.041870117, -0.013946533, 0.02885437, -0.009101868, 0.0079574585, -0.033294678, -0.005455017, -0.0044937134, 0.013977051, -0.010551453, 0.0016059875, -0.04043579, -0.019195557, -0.01399231, -0.0013694763, -0.005935669, 0.056030273, -0.03173828, 0.04598999, 0.032592773, 0.0020561218, 0.037597656, 0.025802612, -0.08276367, -0.010139465, 0.0041656494, 0.014602661, -0.016845703, -0.016189575, 0.06335449, -0.04156494, -0.048675537, 0.002840042, -0.0055007935, 0.044555664, 0.020980835, 0.04034424, 0.027130127, -0.026992798, 0.052612305, 0.010276794, -0.043884277, 0.011291504, 0.022964478, -0.066833496, -0.043182373, -0.03466797, -0.007850647, -0.007083893, -0.028793335, -0.018737793, 0.057250977, 0.011001587, -0.03475952, -0.033233643, -0.04171753, 0.037017822, -0.061035156, 0.01423645, 0.008377075, -0.0105896, 0.04574585, 0.015792847, -0.004737854, 0.047698975, 0.012001038, 0.013900757, 0.007926941, -0.005580902, -0.00010544062, 0.03366089, -0.024505615, 0.021469116, -0.021453857, -0.0067481995, 0.00096702576, 0.046020508, 0.03515625, 0.008262634, -0.042785645, -0.015960693, -0.014663696, 0.03845215, 0.034942627, -0.0060806274, 0.009986877, -0.022888184, 0.025512695, 0.010375977, -0.0020618439, 0.008430481, 0.017333984, -0.012687683, -0.04534912, -0.0049743652, -0.055389404, -0.05215454, -0.023406982, -0.049926758, 0.02658081, 0.040161133, 0.01159668, 0.038757324, 0.016723633, 0.039031982, -0.010261536, 0.05303955, 0.005844116, 0.00712204, 0.0026836395, -0.005115509, 0.023071289, 0.024734497, -0.020095825, -0.042144775, 0.037506104, 0.027709961, -0.0019025803, 0.03390503, 0.020126343, 0.0101623535, -0.023620605, 0.028686523, 0.037231445, -0.08190918, -0.01927185, -0.011672974, 0.0256958, -0.011878967, -0.07678223, -0.036590576, -0.033691406, 0.02067566, 0.0021400452, 0.04333496, 0.00025987625, 0.023971558, 0.042419434, 0.017120361, 0.005783081, -0.011749268, 0.039978027, -0.0064697266, 0.020309448, -0.017333984, -0.050231934, -0.022598267, 0.052001953, -0.059295654, -0.008926392, -0.0025806427, 0.028518677, -0.037872314, 0.01953125, -0.020858765, -0.015617371, 0.023254395, -0.0047836304, 0.0029582977, -0.013130188, 0.02659607, 0.025177002, 0.025558472, 0.00045371056, 0.026550293, -0.0071640015, 0.0690918, 0.022201538, -0.0234375, -0.039733887, -0.014160156, -0.011993408, -0.033843994, 0.016479492, 0.048675537, -0.024719238, 0.061279297, 0.017044067, 0.04336548, 0.06402588, 0.003124237, 0.033996582, 0.010398865, -0.006893158, -0.005176544, -0.06210327, -0.0309906, -0.041656494, 0.011230469, 0.015731812, -0.011787415, 0.0025520325, 0.019607544, 0.0032138824, 0.057006836, -0.017593384, -0.00932312, 0.013198853, -0.0625, 0.033996582, -0.004447937, -0.044158936, -0.0027809143, -0.031951904, -0.056915283, 0.0040779114, -0.06707764, -0.0184021, -0.043182373, -0.039398193, -0.042541504, 0.007091522, 0.015541077, -0.072265625, -0.023635864, -0.039123535, 0.0637207, 0.008232117, 0.032073975, -0.0031204224, -0.03274536, -0.05831909, 0.0054512024, -0.03250122, -0.016921997, 0.0112838745, -0.021057129, -0.008888245, -0.009841919, 0.027954102, -0.004169464, 0.041809082, -0.018310547, -0.030044556, 0.030532837, -0.009796143, 0.009101868, -0.0054893494, -0.026428223, -0.0029621124, -0.002609253, 0.008682251, 0.05493164, 0.017929077, -0.009979248, -0.06695557, -0.019897461, -0.048675537, 0.031311035, -0.017852783, 0.0008029938, 0.0056915283, 0.023498535, -0.015838623, -0.013397217, 0.021240234, -0.011566162, 0.014511108, 0.02720642, 0.0074653625, -0.010108948, -0.029251099, 0.0029182434, -0.01612854, 0.00969696, 0.030075073, 0.020904541, 0.019256592, 0.03363037, -0.036834717, 0.03994751, 0.00868988, -0.02268982, -0.00869751, 0.007835388, -0.016906738, -0.032043457, -0.0015916824, -0.0112838745, -0.008735657, -0.016540527, 0.046081543, 0.018173218, -0.032714844, -0.021270752, -0.03781128, -0.002691269, -0.008491516, -0.07525635, -0.00077342987, -0.017333984, -0.0038051605, 0.026245117, -0.0017623901, 0.039398193, -0.024597168, -0.019592285, -0.013427734, -0.0067634583, 0.01033783, -0.017745972, -0.023834229, 0.048187256, -0.00919342, 0.056671143, -0.0059776306, -0.10668945, -0.058807373, 0.024337769, 0.021697998, -0.009376526, 0.038635254, -0.0038986206, 0.030273438, 0.026931763, 0.08227539, -0.0074386597, 0.055603027, 0.049072266, 0.03451538, 0.032714844]}, "B07VW72J5D": {"id": "B07VW72J5D", "original": "Brand: Taimasi\nName: Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women\nDescription: \nFeatures: [Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily.\n[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears.\n[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use.\n[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below.\n[The Best Gift]: It is a great gift for any occasion, perfect for father\u2019s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!\n", "metadata": {"Name": "Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women", "Brand": "Taimasi", "Description": "", "Features": "[Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily.\n[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears.\n[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use.\n[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below.\n[The Best Gift]: It is a great gift for any occasion, perfect for father\u2019s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.035614014, 0.015075684, -0.07489014, -0.0060806274, -0.016326904, -0.024490356, -0.028900146, 0.00030970573, -0.011116028, 0.03262329, 0.02330017, 0.008468628, 0.01739502, -0.03665161, 0.006549835, -0.0061798096, 0.004184723, 0.034118652, 0.029449463, -0.027297974, -0.01008606, -0.015380859, 0.016983032, 0.05557251, 0.061035156, -0.051483154, -0.017059326, 0.017700195, 0.06317139, 0.024795532, 0.03274536, -0.03353882, 0.04208374, 0.017562866, -0.062164307, -0.01499939, -0.0038433075, -0.011039734, -0.015335083, -0.0062065125, 0.011039734, -0.004627228, -0.021636963, 0.012496948, -0.03265381, -0.024734497, 0.005176544, -0.03552246, 0.022094727, -0.011703491, 0.0052757263, 0.027954102, 0.0065345764, 0.028335571, -0.004135132, 0.017990112, -0.0104522705, -0.017120361, -0.0016975403, 0.040374756, 0.022216797, 0.022079468, 0.0035934448, -0.019165039, -0.0317688, 0.0098724365, 0.05429077, -0.010627747, -0.035339355, -0.047210693, 0.012763977, -0.009841919, 0.035186768, -0.008140564, -0.014923096, -0.058746338, -0.018569946, -0.040618896, 0.04095459, 0.0017433167, 0.0049362183, -0.00023007393, 0.03845215, -0.04940796, 0.02407837, -0.015487671, -0.02420044, -0.0062408447, -0.0027313232, -0.012245178, 0.01461792, -0.011077881, -0.047546387, 0.07470703, 0.021148682, -0.01687622, -0.034820557, -0.055664062, 0.013061523, -0.0017652512, 0.052001953, -0.030349731, 0.013916016, 0.0063972473, -0.029571533, 0.018157959, 0.0061950684, 0.006134033, -0.011146545, 0.016921997, -0.035858154, -0.040496826, 0.0035362244, -0.04888916, -0.0070610046, 0.032684326, 0.0012378693, -0.020217896, 0.02961731, -0.05404663, -0.04434204, -0.016159058, 0.030929565, 0.005065918, 0.044158936, 0.037872314, 0.010360718, -0.016921997, -0.03692627, 0.018325806, -0.021118164, 0.010116577, 0.04156494, 0.027145386, 0.012168884, -0.024215698, 0.011184692, -0.018920898, -0.007434845, 0.012710571, 0.004940033, -0.016723633, 0.011756897, -0.00050878525, -0.022735596, -0.055877686, 0.03390503, 0.0881958, -0.016235352, -0.030136108, 0.040405273, 0.054779053, 0.038635254, 0.010101318, -0.022109985, 0.00541687, 0.015335083, 0.0034770966, -0.042510986, -0.030715942, -0.027038574, 0.008460999, 0.017425537, -0.03564453, -0.034820557, -0.012718201, 0.006450653, -0.0018177032, 0.0020637512, -0.0010232925, -0.016967773, -0.016052246, -0.036865234, -0.056121826, -0.0152282715, 0.0015983582, -0.04046631, 0.06262207, 0.07385254, -0.10626221, -0.07055664, -0.048461914, 0.10266113, -0.031677246, 0.0049057007, -0.029205322, 0.006378174, -0.002986908, 0.022567749, 0.026443481, -0.043121338, 0.0006508827, -0.05303955, 0.001660347, 0.009536743, 0.030395508, -0.0017976761, 0.029693604, 0.022079468, -0.068237305, 0.020553589, -0.011260986, -0.01626587, -0.0046195984, -0.03366089, -0.033111572, -0.008491516, -0.0016832352, -0.023269653, 0.0013799667, 0.03314209, -0.016860962, -0.015525818, -0.020462036, -0.01663208, 0.01637268, -0.00045728683, -0.014945984, 0.010391235, 0.00017094612, 0.033355713, -0.010643005, 0.0154953, 0.045562744, 0.017456055, 0.026870728, -0.018493652, 0.015991211, 0.011856079, 0.033813477, -0.017349243, -0.00027561188, 0.04864502, -0.0027828217, -0.050964355, 0.05911255, 0.057373047, 0.07611084, -0.051239014, -0.010505676, 0.012161255, 0.0423584, -0.011703491, 0.003047943, 0.026733398, -0.012878418, 0.017807007, -0.020217896, -0.011672974, -0.018707275, 0.026306152, -0.0022945404, 0.036132812, -0.0096588135, 0.008277893, 0.026824951, -0.07897949, -0.017730713, -0.06689453, 0.019866943, 0.0038337708, 0.0048294067, 0.043029785, -0.020950317, 0.09484863, -0.00844574, 0.04345703, 0.02104187, -0.04714966, 0.03378296, 0.0009741783, -0.033813477, 0.003435135, 0.026016235, 0.0024471283, -0.03692627, -0.017440796, 0.003370285, -0.008758545, -0.020202637, 0.017120361, 0.009597778, 0.082092285, 0.000975132, 0.04812622, -0.03225708, 0.03866577, -0.012672424, -0.06732178, -0.045928955, -0.0014095306, -0.02079773, -0.04095459, -0.015289307, 0.0005879402, -0.042816162, 0.01864624, 0.08129883, -0.03363037, 0.016967773, -0.013801575, 0.0113220215, -0.04257202, 0.018081665, -0.02017212, -0.035125732, 0.0138549805, -0.014633179, -0.01751709, -0.06726074, 0.028884888, 0.043914795, 0.017288208, 0.024917603, 0.018341064, -0.0052490234, -0.0014972687, 0.0569458, 0.052215576, 0.045013428, -0.030227661, -0.0184021, -0.024139404, -0.0044174194, -0.0046310425, 0.026443481, -0.015312195, 0.0012617111, -0.037963867, 0.030776978, 0.00356102, 0.013313293, -0.0023517609, 0.0057373047, -0.011810303, 0.019104004, -0.0047416687, -0.023223877, -0.006626129, -0.0069503784, -0.012886047, -0.026504517, 0.0090408325, -0.039642334, -0.04345703, 0.030914307, 0.02709961, 0.018096924, 0.006008148, 0.016830444, -0.025466919, -0.01675415, 0.0501709, 0.016143799, 0.011253357, 0.04727173, -0.060058594, -0.0021247864, 0.001124382, -0.047576904, -0.015563965, 0.013435364, -0.017578125, 0.0014801025, 0.004425049, -0.02218628, -0.006832123, 0.039245605, 0.052856445, 0.0024433136, 0.027130127, 0.01965332, -0.06262207, 0.0050582886, 0.0262146, -0.015464783, 0.024810791, -0.04296875, -0.026046753, -0.016815186, -0.015563965, 0.017745972, -0.008178711, 0.035461426, 0.036132812, 0.022964478, 0.027893066, 0.07849121, -0.01776123, -0.036315918, -0.008399963, 0.061553955, -0.023773193, -0.009666443, -0.06738281, -0.009742737, 0.030914307, -0.023132324, 0.032684326, -0.016159058, -0.08050537, 0.017532349, -0.005569458, -0.019424438, -0.008155823, -0.025650024, -0.034057617, -0.044830322, 0.0018491745, 0.05218506, 0.017105103, 0.010261536, 0.009963989, 0.011795044, -0.0032958984, -0.012214661, 0.040924072, -0.010559082, 0.033569336, -0.027160645, 0.022033691, -0.04345703, 0.027862549, 0.024307251, -0.025253296, -0.032684326, -0.00037813187, 0.016098022, -0.03616333, 0.007785797, -0.025283813, -0.031951904, -0.0022830963, 0.002576828, -0.039855957, -0.01512146, -0.0009326935, -0.025924683, 0.042114258, -0.024780273, -0.0018320084, 0.014907837, -0.06640625, -0.014602661, -0.043640137, -0.025390625, 0.030151367, -0.03314209, -0.024612427, -0.02468872, -0.036834717, 0.023330688, 0.01828003, 0.029312134, -0.007843018, 0.016357422, 0.020889282, 0.029937744, -0.017501831, 0.018875122, -0.016952515, -0.028015137, 0.04660034, -0.02519226, 0.031677246, -0.06451416, 0.04324341, 0.009971619, 0.041778564, -0.041809082, -0.0030097961, 0.062042236, -0.0035858154, 0.007865906, 0.003929138, 0.028244019, 0.0010309219, 0.04800415, -0.06652832, -0.0236969, -0.029281616, -0.0010175705, -0.053619385, 0.07885742, 0.026275635, -0.0099487305, 0.029937744, 0.039978027, -0.023117065, 0.0052452087, 0.0024528503, 0.019638062, 0.013259888, 0.012268066, -0.013710022, -0.018859863, 0.003572464, -0.023910522, 0.025665283, 0.019851685, -0.0463562, 0.024230957, 0.060180664, -0.021026611, 0.00793457, 0.06173706, 0.010887146, 0.0078125, -0.016906738, -0.046936035, 0.0158844, -0.06222534, -0.0040283203, 0.02949524, -0.019851685, -0.018737793, 0.03491211, -0.00868988, -0.014099121, -0.00018501282, -0.006916046, -0.004333496, 0.04647827, 0.028945923, -0.024276733, -0.0038585663, 0.024047852, 0.008491516, -0.021560669, -0.009376526, 0.04776001, 0.006893158, 0.014694214, 0.007713318, 0.0038337708, 0.016448975, -0.010383606, 0.00047540665, -0.00047183037, -0.02154541, -0.022735596, -0.019073486, -0.02230835, 0.01309967, 0.014945984, -0.04360962, -0.029571533, -0.025024414, -0.013069153, -0.022979736, -0.047332764, -0.030075073, -0.08135986, 0.01689148, 0.045043945, -0.100097656, -0.08508301, 0.024749756, -0.011672974, -0.031234741, 0.0042152405, 0.055999756, -0.059295654, -0.00749588, -0.004650116, -0.0032978058, 0.047058105, 0.0016765594, 0.018569946, -0.025009155, -0.054229736, -0.024749756, 0.06732178, 0.010192871, -0.007209778, -0.035003662, -0.006679535, -9.4652176e-05, 0.022994995, 0.042114258, 0.0037441254, 0.04446411, -0.006778717, 0.020126343, -0.06298828, 0.008415222, 0.046417236, -0.05886841, -0.03668213, -0.034210205, 0.049316406, 0.012283325, -0.0054740906, 0.0019702911, 0.016952515, -0.0019054413, 0.004398346, -0.030166626, 0.015838623, 0.024902344, -0.035980225, -0.0076026917, -0.008338928, -0.00844574, 0.062164307, 0.01626587, -0.05368042, 0.007724762, -0.03805542, -0.036499023, 0.030517578, 0.013366699, -0.013710022, 0.016098022, -0.03289795, 0.008628845, -0.02973938, 0.06506348, 0.03086853, -0.050445557, -0.0099487305, -0.010559082, -0.02861023, -0.008255005, -0.013175964, 0.0053596497, 0.004825592, -0.020095825, -0.048065186, -0.008796692, -0.057434082, 0.0014848709, -0.014930725, -0.004173279, 0.019302368, -0.021453857, -0.012336731, -0.0368042, -0.0032844543, -0.0034694672, 0.031433105, 0.047576904, 0.043914795, -0.006225586, -0.019760132, -0.0003066063, 0.006122589, -0.03793335, -0.022384644, -0.025100708, -0.012504578, 0.00015068054, -0.032958984, -0.03112793, 0.064819336, -0.039276123, 0.007144928, 0.05227661, -0.01927185, 0.03729248, 0.001159668, 0.035980225, -0.021316528, -0.015014648, -0.010879517, -0.022201538, 0.020095825, 0.007270813, -0.012786865, 0.0126571655, -0.016418457, -0.030151367, 0.059295654, -0.03201294, 0.001613617, 0.02041626, 0.036376953, -0.0018157959, 0.044036865, -0.045684814, 0.017959595, 0.043426514, 0.028869629, -0.022109985, -0.028030396, 0.046905518, -0.037902832, -0.007167816, 0.022232056, 0.035583496, -0.022613525, -0.0129470825, 0.025817871, -0.025619507, -0.018814087, 0.03515625, 0.018600464, -0.030563354, 0.013679504, -0.048339844, 0.03579712, 0.0026454926, -0.048187256, -0.031921387, 0.012130737, 0.023040771, -0.021362305, -0.04269409, -0.027694702, -0.00018763542, -0.03186035, 0.030380249, 0.020874023, 0.009552002, 0.003232956, -0.015731812, -0.021728516, -0.04324341, -0.062316895, 0.053497314, 0.0039863586, 0.01071167, 0.010688782, 0.022125244, 0.037384033, -0.004585266, -0.030899048, 0.022888184, -0.007949829, -0.01878357, -0.021652222, 0.020568848, 0.054595947, -0.043151855, -0.029541016, -0.028060913, 0.016036987, -0.001282692, -0.03390503, 0.059539795, -0.0703125, 0.02708435, -0.009399414, 0.00017869473, -0.03112793, 0.01651001, -0.008392334, -0.053894043, 0.06414795, -0.0059318542, 0.043151855, 0.017868042, -0.008598328, -0.021148682, 0.052215576, -0.0037612915, -0.026870728, -0.040802002, -0.036254883, 0.0107040405, -0.005378723, 0.025726318, 0.027023315, -0.018814087, -0.015960693, -0.005874634, -0.014457703, 0.049926758, 0.03375244, 0.06628418, 0.020721436, -0.048461914, 0.018661499, 0.056427002, -0.043945312, 0.12286377, 0.0022640228, -0.027770996, 0.019943237, 0.026062012, 0.0124435425, -0.0013818741, -0.012809753, 0.011749268, -0.02355957, -0.0060768127, 0.03704834, 0.0104522705, -0.025054932, 0.010749817, 0.068603516, 0.025299072, 0.022628784, -0.021881104, 0.014099121, 0.019973755, -0.017120361, -0.0055656433, 0.031463623, -0.0040893555, -0.035308838, -0.027801514, 0.015296936, 0.030883789, 0.0046577454, 0.030776978, 0.008041382, 0.04156494, -0.013656616, -0.009849548, 0.006462097, -0.011436462, 0.049316406, -0.023605347, -0.027023315, -0.025024414, 0.04147339, 0.018081665, -0.01398468, -0.012374878, -0.0124435425, 0.007423401, -0.0024681091, 0.023101807, -0.014945984, -0.023910522, -0.022964478, 0.008712769, 0.03475952, -0.0022335052, -0.027313232, -0.002401352, 0.00025987625, 0.018417358, 0.016326904, 0.0038490295, 0.038970947, 0.03665161, -0.0021266937, 0.024368286, 0.0096206665, 0.043395996, -0.035491943, 0.007633209, -0.038391113, 0.03237915, 0.05734253, -0.009605408, -0.0069389343, -0.010101318, 0.03062439, -0.050842285, -0.030197144, -0.018203735, 0.023742676, 0.002632141, -0.0054512024, -0.022476196, -0.04638672, -0.01398468, 0.013191223, -0.0030078888, 0.038879395, 0.006225586, -0.0109939575, 0.013221741, -0.024978638, 0.006126404, 0.017410278, 0.031677246, 0.042022705, -0.0178833, -0.023422241, 0.0030078888, -0.021850586, 0.022781372, -4.220009e-05, 0.060943604, 0.015563965, 0.05908203, 0.0030727386, 0.06188965, 0.086364746, 0.014152527, 0.049621582, -0.0015554428, -0.020553589, 0.027694702, -0.01285553, 0.011955261, -0.009063721, -0.010787964, 0.015022278, 0.016403198, 0.023101807, 0.044830322, 0.033813477, -0.0061683655, -0.04196167, 0.0005683899, 0.028167725, -0.054748535, 0.011482239, -0.054229736, -0.016586304, -0.020309448, -0.0052757263, -0.01550293, -0.04449463, -0.06542969, 0.04537964, -0.05130005, -0.03378296, -0.026153564, 0.0078125, 0.030670166, -0.050048828, -0.016067505, 0.007648468, 0.04296875, 0.009376526, 0.08685303, -0.023742676, -0.07354736, -0.06378174, 0.018920898, -0.06365967, 0.011657715, -0.021102905, 0.02279663, 0.030761719, -0.0062408447, 0.015045166, 0.045562744, -0.0041160583, 0.00522995, -0.041748047, -0.017410278, -0.053527832, 0.04421997, -0.011871338, 0.008491516, 0.026657104, 0.06732178, -0.005252838, 0.053344727, -0.011802673, -0.014266968, -0.031677246, -0.011260986, -0.019241333, 0.011314392, 0.008293152, -0.00074386597, 0.0070762634, -0.0033035278, -0.042755127, -0.013877869, -0.0014896393, 0.004131317, 0.01751709, 0.045928955, -0.013938904, -0.021514893, 0.017120361, -0.0017623901, 0.0050086975, 0.028503418, 0.025390625, 0.014015198, 0.047576904, 0.014259338, -0.046051025, 0.040771484, -0.00047540665, -0.016784668, 0.018951416, -0.016662598, 0.032043457, -0.0069007874, -0.027633667, 0.03060913, -0.0051498413, -0.05404663, -0.0045318604, 0.033111572, -0.032562256, -0.023406982, -0.023666382, 0.022018433, 0.007972717, -0.036895752, 0.015716553, -0.09918213, 0.022979736, 0.018096924, 0.019134521, 0.0020313263, 0.018035889, -0.07220459, 0.009857178, 0.01222229, 0.0049705505, 0.0039978027, -0.01638794, 0.018600464, -0.010299683, 0.066223145, -0.006954193, -0.038024902, -0.042938232, 0.048431396, 0.014564514, -0.023452759, 0.033325195, -0.026535034, 4.4465065e-05, 0.033355713, 0.012550354, -0.045074463, 0.046691895, 0.09082031, 0.03955078, 0.0317688]}, "B081X7ZB4Q": {"id": "B081X7ZB4Q", "original": "Brand: Z GRILLS\nName: Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque.\n\u2605SEARING ENABLED: Temperature can goes as high as 1000\u2109. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode.\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n", "metadata": {"Name": "Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper", "Brand": "Z GRILLS", "Description": "", "Features": "\u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque.\n\u2605SEARING ENABLED: Temperature can goes as high as 1000\u2109. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode.\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.025115967, 0.025131226, -0.0115356445, -0.007247925, 0.017745972, -0.011291504, -0.0043640137, -0.043670654, -0.0022411346, 0.00434494, -0.027832031, 0.013542175, 0.0085372925, -0.030914307, 0.016357422, -0.0121154785, 0.011512756, 0.007507324, -0.009468079, -0.0289917, -0.0010175705, -0.015083313, -0.024642944, 0.082092285, 0.047546387, -0.05493164, -0.022994995, 0.037261963, 0.020599365, 0.020980835, 0.024887085, -0.008201599, 0.037628174, 0.027374268, -0.06262207, -0.0065841675, 0.014198303, -0.0028495789, -0.011405945, 0.015342712, 0.022003174, -0.01940918, -0.0647583, -0.0018453598, -0.038024902, -0.051940918, 0.03366089, -0.006023407, 0.011871338, -0.00027918816, -0.0030708313, -0.01637268, 0.00024330616, -0.018585205, -0.020629883, -0.030807495, 0.018600464, 0.03253174, 0.029373169, -0.027389526, -0.04019165, 0.015487671, 0.01033783, 0.008705139, -0.007820129, -0.006088257, 0.03744507, -0.0025424957, 0.012901306, -0.0005016327, 0.014442444, 0.016494751, 0.0013971329, -0.003063202, -0.04724121, -0.01474762, 0.018371582, -0.031677246, 0.010910034, 0.009895325, 0.014091492, -0.008972168, 0.044555664, 0.0027484894, -0.009788513, 0.0026721954, -0.013320923, -0.0078048706, 0.024398804, -0.044006348, 0.00573349, -0.002046585, -0.028945923, 0.03930664, -0.02520752, -0.028701782, -0.018569946, -0.03125, 0.04147339, 0.04248047, -0.008659363, -0.04071045, 0.023086548, -0.005844116, -0.038909912, 0.029800415, 0.02368164, 0.02998352, -0.0033168793, 0.025756836, -0.016220093, -0.03982544, -0.045288086, -0.039916992, -0.01600647, 0.049468994, -0.025634766, -0.011558533, 0.00049877167, 0.0073127747, 0.002067566, 0.0146865845, -0.011795044, 0.022842407, 0.003921509, 0.026565552, -0.0012359619, -0.015838623, -0.08129883, 0.029342651, -0.011985779, -0.010429382, 0.057800293, 0.06109619, 0.00737381, -0.026733398, 0.047180176, 0.026107788, -0.0020122528, 0.018707275, -0.048919678, -0.02659607, 0.029510498, -0.051452637, -0.005744934, -0.024017334, 0.015419006, 0.049743652, -0.014122009, -0.0075302124, 0.03277588, 0.005393982, 0.061431885, -0.0231781, -0.067993164, -0.02432251, -0.07165527, -0.006298065, -0.020050049, -0.02684021, 0.0078125, -0.010467529, -0.021499634, -0.030670166, -0.045135498, 0.01737976, 0.010681152, 0.014518738, 0.0053977966, 0.025054932, -0.014465332, 0.017028809, -0.035461426, 0.0049972534, 0.016204834, 0.0052871704, -0.022415161, 0.074279785, 0.0496521, -0.09240723, -0.034240723, -0.041900635, 0.106933594, -0.038604736, 0.00026082993, -0.03994751, 0.0074157715, 0.0047035217, 0.021347046, 0.017913818, -0.0032844543, -0.026107788, 0.003753662, -0.00018930435, 0.006767273, 0.01600647, -0.054260254, 0.020721436, -0.020126343, -0.038208008, -0.018569946, 0.014083862, -0.034606934, 0.0055503845, -0.030929565, -0.0054016113, -0.011413574, 0.039794922, 0.026657104, 0.020385742, 0.0024738312, -0.0026397705, 0.0178833, -0.062316895, -0.042633057, 0.00066041946, -0.012229919, 0.015586853, -0.0025749207, 0.038208008, -0.021240234, -0.007358551, -0.029724121, -0.016403198, 0.049987793, -0.013900757, 0.001001358, -0.010643005, 0.06951904, -0.0035190582, 0.024734497, 0.02557373, 0.024993896, 0.025863647, -0.005542755, 0.031143188, 0.068359375, 0.03616333, -0.021194458, -0.019088745, 0.023101807, -0.04232788, -0.013153076, 0.018096924, 0.006034851, 0.0005245209, 0.017486572, 0.0093307495, -0.020935059, 0.007835388, -0.032562256, 0.027816772, 0.028900146, -0.025222778, -0.009170532, 0.05706787, -0.025741577, 0.027435303, -0.0126571655, 0.021148682, -0.014549255, 0.04711914, 0.035003662, -0.0072517395, 0.03048706, 0.03552246, 0.056243896, 0.0541687, -0.013244629, 0.015777588, -0.011642456, 0.00056791306, -0.008422852, 0.0061836243, -0.008010864, -0.054626465, 0.0033035278, 0.02154541, -0.03475952, -0.04675293, 0.0037517548, -0.0051498413, 0.004787445, 0.004333496, 0.006790161, -0.02406311, 0.044799805, 0.057006836, -0.06549072, -0.05996704, 0.007106781, -0.033966064, -0.06744385, 0.004436493, -0.005607605, -0.031311035, 0.05429077, 0.050964355, -0.022583008, 0.0047950745, -0.026443481, 0.008903503, -0.017074585, -0.019256592, -0.0025615692, 0.016082764, -0.0061683655, 0.014472961, 0.00029611588, -0.042297363, 0.016723633, 0.03778076, 0.038269043, -0.04522705, 0.06945801, 0.030654907, -0.0069732666, 0.033477783, 0.01927185, 0.007575989, -0.0006837845, -0.01663208, -0.11206055, 0.0014820099, -0.019104004, 0.050689697, -0.017959595, -0.031707764, -0.0018806458, 0.061950684, 0.012237549, 0.05130005, 0.016616821, 0.0032424927, -0.019058228, -0.009674072, 0.0021038055, -0.003156662, -0.0076293945, -0.049224854, 0.0064735413, -0.016296387, 0.0030403137, 0.016952515, -0.033721924, -0.011398315, 0.052368164, -0.00484848, -0.0077590942, 0.020080566, 0.0053367615, -0.011444092, 0.0026893616, -0.036346436, 0.008911133, -0.060180664, -0.014839172, -0.018585205, -0.04095459, -0.070129395, -0.04434204, -0.005958557, -0.06756592, -0.0075912476, 0.058013916, 0.00036406517, -0.025177002, 0.0030784607, -0.0020809174, 0.008384705, 0.0519104, -0.030929565, -0.0014467239, -0.0075416565, 0.0012254715, -0.039398193, 0.055725098, -0.023101807, -0.008460999, 0.027313232, -0.018417358, 0.0063819885, -0.0068206787, -0.0052375793, -0.0043907166, 0.017547607, -0.016036987, 0.014190674, -0.019851685, -0.0104522705, -0.018753052, 0.025146484, -0.013412476, -0.018127441, 0.0009899139, 0.0020828247, -0.033477783, -0.015411377, -0.043884277, -0.018112183, -0.068237305, -0.021408081, -0.020095825, -0.05328369, 0.0050086975, -0.082092285, -0.04309082, -0.04272461, 0.018203735, 0.07519531, -0.0357666, 0.006916046, -0.027816772, 0.0022220612, -0.012626648, 0.026351929, 0.0037574768, -0.012275696, 0.005218506, -0.023910522, 0.023712158, -0.05493164, 0.029266357, 0.021118164, -0.035583496, -0.02217102, -0.032318115, 0.0231781, -0.039367676, 0.017501831, -0.043640137, -0.012023926, 0.014198303, -0.01890564, -0.04260254, -0.01890564, -0.011352539, 0.008598328, 0.024246216, -0.033813477, -0.07904053, -0.050231934, -0.0435791, -0.006263733, -0.00920105, -0.034484863, -0.054351807, -0.07519531, 0.020065308, -0.06982422, -0.0011329651, -0.01361084, 0.08319092, 0.030822754, 0.026306152, 0.13220215, -0.01436615, 0.037078857, 0.0770874, -0.02519226, -0.007297516, -0.039520264, 0.015731812, 0.043426514, -0.035125732, -0.030593872, 0.08984375, -0.014572144, -0.0054893494, -0.012031555, -0.051483154, 0.039520264, 0.0073127747, 0.012168884, -0.043304443, -0.019241333, 0.04522705, 0.027313232, -0.0028953552, -0.04425049, -0.03353882, 0.013793945, -0.09918213, 0.08520508, 0.008071899, -0.00566864, 0.0496521, 0.05633545, -0.015838623, 0.05340576, 0.050842285, 0.007286072, -0.0025863647, 0.07305908, -0.029953003, -0.018951416, 0.024398804, -0.07684326, -0.009407043, -0.02406311, -0.04269409, 0.025283813, 0.01966858, -0.0024337769, -0.009590149, 0.020996094, 0.037353516, 0.019363403, -0.0057868958, -0.052612305, 0.04119873, -0.04058838, 0.002002716, 0.012275696, -0.02949524, -0.03540039, -0.019805908, 0.0112838745, -0.05380249, 0.004470825, 0.02708435, 0.0068244934, 0.0053367615, 0.031707764, 0.006664276, 0.021560669, -0.053009033, 0.00037384033, -0.0074310303, -0.045166016, 0.038513184, 0.010368347, 0.020004272, 0.04168701, -0.022583008, 0.041381836, -0.020248413, 0.011123657, 0.027862549, -0.023498535, 0.0138168335, 0.0053710938, -0.039123535, -0.00187397, 0.028686523, -0.078552246, -0.0076026917, 0.006542206, -0.09136963, 0.044281006, -0.027404785, -0.044311523, 0.010513306, -0.010879517, -0.026992798, -0.047454834, -0.016220093, 0.0028820038, 0.0070877075, 0.020935059, -0.013031006, 0.027511597, -0.024963379, -0.0178833, -0.005886078, 0.003900528, 0.068725586, 0.026428223, 0.0015354156, -0.027633667, -0.02243042, -0.032806396, 0.007610321, -0.0041656494, -0.021057129, -0.017364502, -0.0335083, -0.009025574, 0.012161255, 0.025665283, 0.020095825, 0.000310421, -0.05026245, -0.040130615, -0.031280518, -0.021636963, 0.06149292, -0.01235199, -0.007827759, -0.0335083, 0.028503418, -0.019378662, 0.010643005, 0.0029850006, 0.012962341, -0.0010051727, 0.019439697, -0.06488037, -0.034332275, 0.002632141, 0.00422287, -0.0069465637, -0.005470276, -0.023666382, 0.03289795, -0.004261017, 0.035949707, -0.017547607, -0.0033740997, 0.0055503845, 0.007827759, 0.03817749, -0.009819031, -0.0026721954, -0.004634857, -0.027160645, -0.046905518, 0.034942627, 0.036346436, -0.0042152405, -0.00014185905, -0.014312744, -0.012382507, -0.038513184, 0.011962891, 0.018463135, 0.02558899, 0.020004272, -0.017822266, 0.00032830238, -0.022842407, -0.019927979, 0.005958557, 0.013427734, 0.021835327, -0.045715332, 0.025558472, -0.0017299652, 0.015571594, 0.039031982, 0.006126404, 0.0096588135, 0.008811951, 0.031799316, -0.019714355, -0.0032424927, 0.021209717, -0.015960693, -0.020141602, -0.033813477, -0.037322998, -0.02708435, -0.04623413, -0.005367279, 0.019882202, -0.029388428, 0.002445221, 0.04058838, 0.007774353, -0.006385803, -0.01777649, 0.033477783, -0.014450073, -0.027038574, 0.008323669, 0.002117157, -0.0049324036, 0.028900146, -0.028518677, 0.025482178, -0.0048980713, -0.0034046173, -0.009384155, -0.016937256, -0.014633179, 0.001241684, 0.026000977, 0.011619568, -0.016601562, -0.033721924, -0.006866455, 0.010902405, 0.044158936, 0.02178955, -0.032409668, 0.041229248, 0.012245178, -0.036346436, 0.028900146, -0.01158905, 0.0024433136, 0.013687134, -0.012107849, -0.015434265, -0.01184845, 0.0006594658, -0.03366089, -0.04623413, -0.009559631, -0.01802063, -0.0031318665, -0.0026397705, 0.014579773, -0.026916504, -0.028625488, 0.040252686, -0.0037403107, 0.017150879, -0.032592773, 0.000790596, 0.013954163, 0.0020923615, 0.0014419556, 0.007434845, -0.01612854, -0.014190674, -0.015670776, 0.0067634583, -0.02192688, 0.03137207, -0.0496521, 0.020751953, 0.028121948, -0.004211426, 0.027252197, 0.045013428, -0.08544922, -0.021148682, -0.01096344, -0.022201538, 0.01033783, -0.025787354, 0.024429321, -0.014770508, -0.037841797, -0.006298065, 0.0057792664, 0.02355957, 0.017242432, 0.027679443, 0.054779053, -0.032592773, 0.054656982, 0.012710571, -0.066589355, 0.008071899, 0.013427734, -0.093688965, -0.053100586, -0.04650879, -0.012207031, 0.002401352, -0.039489746, 0.0033550262, 0.05734253, 0.027679443, -0.0158844, -0.04534912, -0.053955078, 0.03439331, -0.049987793, 0.01763916, 0.007762909, -0.012893677, 0.03805542, 0.010543823, -0.03475952, 0.020614624, 0.017211914, 0.012557983, -0.015464783, 0.024291992, -0.0036582947, 0.030471802, -0.04837036, -0.006248474, -0.023757935, 0.0009613037, -0.0017852783, 0.041503906, 0.028579712, 0.025299072, -0.03375244, -0.00617218, -0.010475159, 0.0335083, 0.013999939, -0.0017938614, 0.0024871826, -0.041137695, 0.014923096, 0.018066406, -0.0045928955, 0.010322571, 0.02708435, -0.0073432922, -0.056121826, -0.010765076, -0.050476074, -0.06060791, -0.028549194, -0.04522705, 0.028961182, 0.036743164, 0.015853882, 0.030029297, 0.026351929, 0.031463623, -0.032196045, 0.052856445, -0.0008420944, -0.0079574585, 0.0066947937, -0.028900146, 0.04562378, 0.0011854172, 0.0141067505, -0.028045654, 0.03527832, 0.0064582825, -0.0053482056, 0.03274536, 0.021499634, 0.0053100586, -0.0069465637, 0.031951904, 0.026870728, -0.066467285, -0.01713562, -0.031921387, 0.026901245, -0.014053345, -0.046661377, -0.037506104, -0.0082092285, 0.039978027, 0.0009880066, 0.06188965, -0.020874023, 0.022613525, 0.029586792, 0.009208679, 0.0016860962, -0.009429932, 0.034606934, 0.0021514893, 0.015670776, -0.018096924, -0.03955078, 0.010047913, 0.025650024, -0.04852295, 0.022216797, -0.022705078, 0.016555786, -0.02758789, 0.024536133, -0.025894165, -0.034973145, 0.0044288635, 0.006614685, -0.018493652, -0.029571533, 0.027160645, 0.037017822, 0.025421143, 0.005207062, 0.0231781, -0.020553589, 0.06903076, 0.04095459, -0.032562256, -0.034576416, -0.03515625, -0.023239136, -0.038635254, 0.01247406, 0.01828003, -0.039978027, 0.05142212, 0.04437256, 0.035705566, 0.056427002, -0.0061569214, 0.02053833, 0.018051147, 0.006427765, -0.005214691, -0.059020996, -0.026229858, -0.03591919, 0.007511139, 0.007724762, 0.0036811829, -0.015640259, 0.05441284, 0.003850937, 0.058288574, -0.023895264, -0.00014650822, -0.0010766983, -0.066345215, 0.04107666, -0.00919342, -0.08081055, 0.0015239716, -0.0154953, -0.037139893, -0.011581421, -0.08935547, -0.029174805, -0.068115234, -0.041412354, -0.026184082, -0.0024585724, 0.0049209595, -0.07873535, -0.016098022, -0.0440979, 0.06359863, 0.0054626465, 0.036010742, -0.015113831, -0.03326416, -0.06738281, 0.014251709, -0.051513672, -0.029541016, -0.019195557, -0.009849548, -0.011482239, -0.012954712, 0.036834717, -0.04058838, 0.04360962, -0.018829346, -0.016052246, 0.03665161, -0.011703491, -0.0016880035, -0.0023460388, -0.035705566, 0.0044288635, -0.020370483, 0.005558014, 0.068725586, 0.0154953, -0.010314941, -0.073913574, -0.03692627, -0.062805176, 0.050567627, -0.014678955, -0.0035438538, 0.016143799, 0.022064209, -0.02583313, 0.008651733, 0.01776123, 0.020324707, 0.0019416809, -0.003435135, 0.019622803, -0.025299072, -0.030303955, -3.08156e-05, -0.02128601, 0.007045746, 0.020339966, 0.019638062, 0.012519836, 0.025161743, -0.033691406, 0.037200928, 0.008415222, -0.033172607, -2.670288e-05, 0.014152527, -0.018341064, 0.00026893616, -0.0084991455, -0.00970459, -0.02078247, 0.003709793, 0.048919678, 0.020385742, -0.033233643, -0.01739502, -0.02557373, -0.008552551, -0.016677856, -0.05706787, 0.011154175, -0.021316528, -0.016921997, 0.027420044, 0.0033893585, 0.02243042, -0.0340271, -0.024551392, -0.0022850037, -0.01398468, 0.004070282, -0.020904541, -0.0052948, 0.034240723, -0.017486572, 0.017715454, -0.0034999847, -0.10595703, -0.051727295, 0.017501831, 0.015563965, -0.011039734, 0.036834717, 0.0057754517, 0.03616333, 0.027908325, 0.09051514, 0.026855469, 0.050445557, 0.02633667, 0.025543213, 0.023605347]}, "B01HXQTNVK": {"id": "B01HXQTNVK", "original": "Brand: Aoocan\nName: Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty\nDescription:

          Each set has 5 of the highest quality grill mats that makes grilling anything easy!

          Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

          Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

          You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

          They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

          For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

          These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

          These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

          -Veggies
          -Shrimp
          -Fish
          -Bacon
          -Pizza
          -Pancakes
          -Eggs
          -Anything else you want to put on the grill!

          BBQ Grill Mats Size: 15.75\" x 13\"

          \nFeatures: A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue.\nEASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don't need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\nSECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better.\nMULTIPURPOSE--While you're baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS.\nBEST OF ALL - Best value in bbq grill accessories! If you're not completely satisfied, we'll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "metadata": {"Name": "Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty", "Brand": "Aoocan", "Description": "

          Each set has 5 of the highest quality grill mats that makes grilling anything easy!

          Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

          Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

          You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

          They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

          For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

          These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

          These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

          -Veggies
          -Shrimp
          -Fish
          -Bacon
          -Pizza
          -Pancakes
          -Eggs
          -Anything else you want to put on the grill!

          BBQ Grill Mats Size: 15.75\" x 13\"

          ", "Features": "A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue.\nEASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don't need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\nSECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better.\nMULTIPURPOSE--While you're baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS.\nBEST OF ALL - Best value in bbq grill accessories! If you're not completely satisfied, we'll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.017822266, 0.016464233, -0.026123047, -0.013679504, -0.000995636, 0.001627922, -0.0071907043, 0.006252289, -0.038116455, 0.03353882, -0.015327454, 0.025390625, 0.012138367, -0.013442993, 0.01725769, -0.019439697, 0.032409668, -0.032409668, -0.008430481, -0.028961182, -0.011528015, -0.015007019, 0.03286743, 0.028823853, 0.02973938, -0.016693115, -0.036499023, -0.006340027, 0.019302368, -0.020736694, 0.016418457, 0.016403198, 0.045135498, 0.0025482178, -0.04751587, -0.060272217, -0.029220581, -0.0060310364, -0.046661377, 0.002008438, 0.0413208, -0.017501831, 0.0017595291, 0.012802124, -0.027023315, 0.0158844, 0.00945282, -0.03100586, -0.009178162, 0.045410156, 0.026550293, 0.023788452, 0.029281616, 0.039123535, 0.01826477, 0.0154953, -0.010269165, 0.021560669, 0.035217285, -0.0178833, -0.027877808, -0.005077362, 0.023910522, 0.00086307526, -0.022949219, 0.005054474, 0.04345703, -0.027862549, -0.05368042, -0.010856628, 0.066467285, -0.028320312, 0.04949951, -0.014526367, -0.023513794, -0.05630493, 0.037902832, -0.004058838, 0.020492554, -0.017593384, -0.051116943, 0.0143966675, -0.01374054, -0.0579834, 0.0055618286, -0.038391113, -0.03353882, 0.009986877, -0.016311646, -0.04006958, -0.0015001297, 0.0066490173, -0.06970215, 0.05834961, 0.0063819885, -0.006526947, -0.034240723, -0.07879639, -0.0001244545, 0.008392334, 0.05407715, -0.04071045, 0.066345215, 0.011482239, -0.009559631, 0.060791016, -0.029724121, -0.01965332, -0.012451172, 0.012359619, 0.004901886, -0.064086914, -0.00932312, -0.046051025, -0.0289917, 0.012756348, -0.00983429, -0.023590088, 0.028884888, -0.040100098, -0.030776978, -0.009094238, -0.024642944, 0.019180298, 0.06097412, 0.04888916, 0.013908386, 0.02557373, -0.04385376, 0.05291748, -0.022857666, -0.026687622, 0.007881165, 0.04296875, 0.005706787, -0.037750244, 0.023590088, -0.016693115, -0.0020866394, -0.0005698204, 0.030700684, 0.019729614, 0.02482605, 0.0016994476, -0.02659607, -0.00969696, 0.04800415, 0.039123535, -0.047790527, -0.078063965, 0.044677734, 0.010978699, 0.04638672, 0.035217285, -0.018737793, 0.03189087, 0.023635864, -0.0028476715, -0.071899414, -0.024383545, -0.0079422, -0.014793396, 0.0110321045, -0.04168701, -0.027648926, 0.021118164, -0.02078247, -4.6789646e-05, 0.012802124, 0.029266357, -0.015991211, 0.0074157715, -0.009880066, -0.032440186, -0.023880005, -0.029907227, -0.0137786865, 0.0597229, 0.03756714, -0.06451416, -0.05090332, -0.052490234, 0.0869751, -0.021118164, -0.040008545, -0.005821228, 0.011947632, 0.04647827, 0.02720642, 0.020309448, 0.000682354, -0.019134521, -0.028686523, -0.015388489, 0.04168701, 0.04525757, -0.06567383, 0.0052375793, 0.009841919, -0.05429077, -0.0027866364, 0.0104522705, 0.015686035, 0.01335144, 0.031402588, -0.015625, 0.009208679, 0.023513794, 0.016860962, 0.058044434, 0.0014009476, -0.017211914, -0.0047950745, -0.03540039, -0.02067566, -0.047302246, 0.0047035217, -0.017074585, 0.015411377, -0.029891968, 0.036315918, 0.031311035, 0.0031833649, 0.05734253, 0.034973145, 0.0046424866, -0.023544312, 0.0028133392, 0.005542755, 0.03543091, -0.068481445, 0.035003662, 0.038482666, 0.008094788, -0.043823242, 0.03845215, 0.0015888214, 0.041046143, -0.05911255, 0.023025513, -0.0031528473, 0.007587433, -0.029190063, 0.022781372, 0.0110321045, -0.029678345, 0.005859375, 0.014602661, -0.04046631, -0.010856628, 0.039764404, 0.025680542, 0.031555176, 0.037231445, -0.013809204, 0.022491455, -0.085510254, -0.014022827, -0.040222168, 0.01586914, 0.0035362244, 0.0039253235, 0.0496521, -0.020523071, 0.036224365, -0.028717041, 0.030349731, 0.016021729, -0.017730713, -0.016540527, 0.0109939575, -0.018798828, -0.0069770813, 0.0035800934, 0.040649414, 0.025177002, -0.018356323, -0.011070251, 0.0014371872, -0.0062713623, 0.014434814, 0.02835083, 0.01461792, -0.0055999756, 0.047546387, -0.028457642, -0.012420654, -0.025146484, -0.035217285, -0.024139404, 0.022964478, -0.007675171, -0.029846191, -0.0009727478, 0.004650116, -0.030181885, -0.048187256, 0.033599854, 0.011672974, -0.020629883, -0.02229309, 0.042236328, -0.02998352, 0.013755798, 0.0060272217, 0.037506104, 0.023757935, -0.006088257, -0.005683899, -0.01209259, 0.040924072, 0.06500244, 0.038482666, -0.003993988, 0.056915283, 0.014480591, 0.010421753, 0.05368042, 0.021636963, 0.014526367, 0.017471313, 0.024841309, -0.027267456, 0.017822266, 0.009399414, -0.011642456, -0.010276794, -0.019165039, 0.03656006, 0.030029297, 0.03189087, 0.06439209, 0.021469116, 0.0037708282, -0.008560181, -0.0143585205, -0.004348755, 0.0018787384, 0.010803223, -0.0044555664, 0.011451721, -0.015808105, 0.012878418, -0.04296875, -0.028274536, 0.0184021, 0.03781128, 0.0146102905, -0.0059890747, 0.02217102, -0.028198242, -0.028793335, 0.026489258, 0.017486572, 0.014678955, 0.0143966675, -0.025527954, -0.008476257, -0.011985779, -0.057861328, 0.00422287, 0.0035209656, -0.034301758, -0.038970947, 0.024215698, -0.026443481, -0.0065345764, -0.019561768, 0.007965088, -0.002073288, 0.0037269592, 0.030776978, -0.017211914, -0.041229248, -0.021469116, -0.023651123, 0.0074539185, -0.054016113, 0.005973816, -0.008865356, -0.041931152, -0.008125305, 0.001291275, 0.0021514893, -0.005088806, 0.03781128, 0.020446777, 0.048461914, -0.044677734, -0.04083252, -0.0076522827, 0.076293945, -0.056152344, -0.034210205, -0.010772705, 0.040008545, -0.0006327629, -0.04638672, 0.022781372, -0.03677368, -0.06628418, -0.008018494, 0.0069770813, -0.043060303, -0.022201538, -0.02319336, -0.044403076, -0.037017822, -0.005607605, 0.113098145, -0.027297974, -0.013214111, -0.009796143, -0.013031006, 0.033691406, 0.012069702, 0.028366089, -0.0046920776, -0.004261017, -0.02078247, 0.024520874, -0.048583984, 0.033569336, 0.024215698, -0.032684326, -0.0038070679, 0.002023697, 0.039123535, -0.057525635, -0.032470703, -0.03112793, -0.060546875, -0.036071777, 0.05026245, -0.010192871, 0.05505371, 0.0435791, -0.0395813, 0.09881592, -0.03173828, -0.04043579, -0.0076789856, -0.03366089, 0.009346008, -0.04776001, -0.018051147, -0.00031733513, -0.043762207, -0.0340271, -0.012802124, -0.006713867, 0.029342651, 0.019424438, 0.01802063, -0.010574341, 0.0014696121, 0.03970337, 0.04333496, 0.04611206, 0.0056037903, -0.029281616, -0.06951904, 0.0982666, 0.016906738, -0.007007599, -0.023742676, 0.030807495, -0.0053749084, -0.025283813, 0.0059776306, -0.031829834, 0.051879883, -0.011207581, 0.013084412, -0.0061836243, -0.006755829, 0.02053833, 0.054840088, -0.027557373, -0.029190063, -0.040893555, -0.002986908, -0.061798096, 0.091674805, 0.04626465, -0.019058228, 0.07110596, 0.07232666, -3.4570694e-05, 0.027511597, 0.011177063, -0.005092621, 0.002313614, 0.045806885, -0.02557373, 0.015571594, -0.0052986145, -0.02394104, 0.03744507, -0.0037212372, 0.0025405884, 0.008888245, 0.052124023, -0.048553467, 0.02268982, 0.013130188, -0.0131073, 0.002588272, -0.014556885, -0.033966064, 0.029281616, -0.035949707, -0.011428833, 0.0069007874, -0.0138549805, 0.01146698, 0.023971558, 0.0038909912, 0.0030212402, -0.023208618, 0.030410767, 0.0390625, 0.04006958, 0.038909912, -0.018661499, -0.026992798, 0.0149383545, -0.03338623, -0.04034424, 0.012145996, 0.0770874, 0.02420044, 0.07745361, -0.010131836, -0.044433594, -0.00024139881, -0.009094238, 0.023239136, -0.006828308, -0.048095703, -0.030075073, 0.02029419, 0.014320374, -0.010032654, 0.035980225, -0.06677246, 0.01838684, 0.003786087, -0.07788086, 0.010658264, -0.011489868, -0.012374878, -0.052947998, -0.0032787323, -0.004425049, -0.036712646, -0.035369873, 0.016571045, -0.01424408, 0.00484848, -0.008934021, 0.032287598, -0.054260254, 0.016616821, -0.016921997, 0.017440796, 0.02243042, 0.011665344, 0.02166748, -0.043884277, -0.042022705, -0.053222656, 0.04336548, 0.01953125, 0.0055999756, -0.0065841675, -0.013641357, 0.0042800903, 0.0103302, 0.03488159, 0.019485474, 0.013198853, -0.039733887, -0.00970459, -0.04083252, 0.0008597374, 0.037719727, -0.07952881, -0.006996155, -0.013366699, 0.041992188, 0.006965637, -0.018173218, -0.08758545, 0.01612854, 0.060302734, -0.05029297, -0.030517578, -0.061706543, 0.02482605, 0.029174805, -0.016906738, -0.008712769, -0.010093689, 0.028213501, -0.018173218, 0.006702423, 0.02949524, -0.020507812, -0.05529785, 0.013183594, -0.01133728, 0.0012378693, 0.02961731, -0.043670654, -0.0064888, -0.030639648, 0.0619812, 0.053100586, -0.04498291, -0.0066566467, -0.0049057007, -0.03302002, -0.015098572, -0.0012769699, 0.022613525, -0.0184021, -0.0020942688, -0.02796936, -0.01927185, -0.007335663, -0.014953613, 0.023986816, -0.007843018, 0.029220581, -0.024139404, 0.020706177, -0.034606934, 0.0049858093, 0.06939697, 0.023803711, 0.02041626, 0.022888184, -0.039031982, -0.024307251, -0.034454346, -0.03933716, -0.026947021, -0.013008118, -0.02859497, -0.006866455, -0.018417358, -0.04333496, -0.00017511845, 0.045440674, -0.03451538, -0.013038635, 0.03869629, -0.0019721985, 0.012123108, 0.0039482117, 0.0541687, -0.013175964, 0.020843506, -0.0155181885, -0.01335907, 0.0005698204, 0.03515625, -0.046539307, 0.02973938, 0.015853882, -0.064453125, 0.03491211, 0.014266968, 0.0011529922, -0.04421997, 0.0826416, -0.008682251, -0.0034313202, -0.048675537, 0.02394104, -0.052612305, -0.018081665, -0.013931274, 0.00043010712, 0.054138184, -0.026641846, -0.02017212, 0.0066337585, 0.025817871, -0.025726318, -0.009429932, 0.0014381409, -0.029144287, -0.04345703, -0.017166138, -0.050109863, -0.007408142, -0.00092077255, 0.0019893646, -0.010292053, 0.0014791489, -0.02331543, -0.041503906, -0.043701172, 0.022613525, -0.010444641, 0.004558563, -0.02810669, 0.0033054352, -0.01940918, 0.0020980835, 0.019058228, 0.005882263, -0.0413208, -0.008674622, 0.0046195984, 0.01828003, -0.012954712, 0.050842285, -0.024276733, 0.0098724365, 0.0035076141, -0.05581665, 0.00541687, -0.012359619, -0.011688232, -0.00040888786, 0.01247406, 0.020996094, -0.00073957443, -0.0034370422, 0.032226562, -0.03778076, -0.006614685, -0.038238525, 0.047729492, -0.02633667, -0.011924744, 0.031402588, -0.0023918152, 0.008399963, 0.009391785, -0.0023765564, -0.047332764, 0.014511108, 0.004951477, -0.05014038, -0.016662598, -0.02659607, -0.0022563934, -0.006214142, -0.04360962, -0.016616821, 0.04940796, -0.0017147064, -0.07122803, -0.0023612976, -0.041229248, 0.03692627, -0.0044021606, 0.013923645, 0.017944336, 0.013183594, -0.009025574, 0.03668213, -0.051605225, -0.033966064, 0.06591797, 0.031341553, -0.0063705444, -0.033569336, 0.02041626, 0.020996094, -0.00522995, 0.08581543, -0.027328491, -0.025375366, -0.018829346, 0.045684814, 0.06774902, -0.0012235641, 0.02368164, -0.027404785, 0.014411926, 0.0019140244, 0.0047721863, -0.004184723, -0.06378174, -0.05734253, 0.030639648, 0.049438477, 0.029006958, 0.008613586, 0.01222229, 0.005264282, -0.006061554, 0.004917145, 0.043395996, -0.017044067, -0.021148682, -0.008049011, 0.0070610046, 0.064941406, -0.007904053, 0.007904053, 0.0129776, 0.06011963, -0.028030396, 0.06585693, -0.012573242, 0.03225708, -0.0024795532, -0.026306152, -0.03552246, -0.008171082, -0.023162842, -0.005508423, -0.012458801, -0.0032176971, 0.023330688, 0.027191162, -0.029342651, 0.046875, -0.01864624, 0.02684021, 0.0004901886, -0.046203613, 0.032562256, 0.03866577, -0.0077705383, 0.026184082, -0.042419434, -0.01537323, 0.0131073, 0.023117065, -0.0178833, 0.075683594, -0.017120361, -0.008087158, -0.021240234, 7.6413155e-05, -0.021316528, -0.023162842, 0.013389587, 0.031402588, 0.006717682, -0.015838623, 0.03591919, 0.030700684, 0.04699707, -0.07019043, -0.0016021729, 0.0012788773, -0.0017023087, -0.034301758, 0.020248413, -0.04135132, -0.058410645, -0.0069007874, 0.031173706, -0.017807007, 0.0060310364, -0.027328491, 0.015670776, 0.0138168335, -0.004825592, 0.014503479, 0.0062408447, 0.017074585, 0.028198242, 0.034088135, -0.02279663, 0.01914978, -0.013427734, 0.018569946, 0.020645142, 0.030578613, 0.034973145, 0.029891968, 0.05218506, 0.03491211, 0.048065186, -0.018569946, 0.018432617, 0.032928467, -0.0006723404, -0.018600464, -0.022094727, -0.0057868958, -0.048950195, -0.005142212, 0.021865845, -0.03656006, 0.00705719, 0.010292053, -0.0022659302, -0.014480591, -0.019515991, -0.007297516, 0.044189453, -0.030960083, -0.0067710876, -0.041809082, 0.019439697, 0.006187439, -0.0053253174, -0.021865845, -0.010284424, -0.017105103, 0.026000977, 0.019927979, -0.037231445, -0.021255493, -0.011749268, 0.009941101, -0.08050537, -0.013465881, -0.020858765, 0.072509766, 0.026184082, 0.08770752, -0.039611816, -0.09503174, -0.03753662, 0.048675537, -0.02696228, -0.053375244, -0.023513794, 0.028717041, 0.030670166, -0.0070495605, -0.0004069805, 0.020523071, -0.000895977, -0.014297485, 0.0026988983, -0.057373047, -0.03289795, 0.009613037, -0.0044403076, -0.049560547, -0.025939941, 0.050933838, 0.026947021, 0.022888184, 0.05255127, 0.009460449, -0.03338623, -0.02407837, -0.053009033, 0.019073486, 0.005088806, -0.0009059906, 0.03286743, 0.011123657, -0.021240234, 0.03378296, 0.016845703, -0.00057172775, 0.037261963, 0.029052734, 0.008506775, -0.0033893585, -0.0060920715, -0.023376465, -0.0050468445, 0.006664276, 0.045074463, 0.013793945, -0.044830322, 0.011184692, -0.014801025, 0.055633545, 0.03515625, -0.044281006, -0.007801056, 0.009056091, 0.0073013306, -0.0013227463, 0.00096940994, 0.03265381, -0.013549805, -0.019546509, -0.008407593, 0.04663086, -0.041900635, -0.012451172, -0.01889038, 0.016174316, 0.0104599, -0.039733887, -0.007534027, -0.077697754, 0.025527954, 0.02961731, 0.0035705566, 0.023330688, 0.005153656, -0.053497314, -0.0053710938, 0.02897644, 0.014122009, 0.03656006, -0.01725769, 0.04321289, 0.0049552917, 0.03237915, -0.022003174, -0.03918457, -0.040496826, 0.023986816, 0.010551453, 0.008842468, 0.045959473, -0.009628296, 0.02645874, -0.016662598, 0.040618896, -0.00819397, 0.031677246, 0.052490234, -0.013442993, 0.03390503]}, "B08DTXWRB5": {"id": "B08DTXWRB5", "original": "Brand: Traeger\nName: Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag\nDescription: \nFeatures: Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\nProduct 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef\nProduct 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers\nProduct 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ\nProduct 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\n", "metadata": {"Name": "Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag", "Brand": "Traeger", "Description": "", "Features": "Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\nProduct 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef\nProduct 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers\nProduct 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ\nProduct 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.013290405, -0.0033874512, -0.021133423, -0.0524292, -0.0039138794, -0.0005874634, -0.013084412, 0.015144348, -0.023956299, 0.004173279, 0.0059165955, 0.039001465, -0.03552246, -0.02633667, 0.0068969727, -0.01838684, 0.006717682, -0.0031738281, -0.036712646, -0.027694702, 0.006099701, -0.028793335, -0.04736328, 0.07366943, 0.06903076, -0.058746338, -0.0054740906, 0.00793457, 0.05859375, 0.012512207, 0.04095459, -0.010482788, 0.039398193, -0.002544403, -0.039733887, -0.012031555, 0.014076233, -0.02784729, -0.010215759, 0.008384705, 0.0037288666, 0.012077332, -0.046447754, 0.007572174, -0.06488037, -0.011558533, -0.0046157837, 0.053894043, 0.011962891, 0.022323608, 0.014549255, -0.048217773, 0.0181427, 0.0029678345, -0.042022705, -0.040649414, 0.0077323914, 0.020111084, 0.0141067505, -0.0017299652, -0.006038666, 0.033081055, 0.0042533875, -0.0059661865, -0.012016296, -0.016403198, 0.014099121, -0.0042800903, -0.023361206, -0.022003174, 0.04977417, 0.005256653, 0.02909851, -0.017410278, -0.041778564, -0.0039596558, 0.039611816, 0.01739502, 0.017044067, -0.02507019, 0.01474762, -0.03744507, 0.03857422, -0.05407715, 0.014411926, -0.045776367, 0.0015745163, 0.010635376, 0.03213501, -0.050476074, -0.00025248528, 0.036621094, -0.027709961, 0.019546509, -0.021316528, -0.03543091, -0.026428223, -0.019897461, 0.026535034, 0.06137085, -0.01914978, -0.017715454, 0.04171753, -0.019714355, -0.035308838, 0.051483154, 0.012580872, 0.016021729, -0.004890442, 0.010414124, -0.008682251, -0.052764893, -0.019805908, -0.025787354, -0.0110321045, 0.041107178, -0.016342163, 0.018081665, 0.017471313, 0.025115967, -0.0019216537, 0.010322571, 0.044525146, 0.013397217, 0.016143799, 0.037719727, 0.004585266, -0.046447754, -0.007286072, 0.026977539, -0.042144775, -0.0043792725, 0.05444336, -0.0009698868, -0.019897461, -0.026565552, 0.021942139, 0.060058594, 0.033172607, -0.0041923523, -0.058624268, 0.009002686, 0.07489014, -0.036956787, 0.013633728, 0.02432251, 0.017181396, 0.0045547485, 0.01991272, -0.028152466, -0.010734558, 0.00680542, 0.050750732, -0.008453369, -0.061584473, -0.046142578, -0.023880005, -0.03125, 0.0034885406, -0.06781006, -0.017868042, -0.032318115, -0.025909424, -0.006614685, -0.020324707, 0.024475098, 0.0501709, 0.015289307, 0.019485474, 0.019424438, -0.023468018, -0.018707275, -0.0019683838, 0.0059928894, 0.00856781, 0.022109985, 0.007484436, 0.04736328, 0.061187744, -0.116882324, -0.08135986, -0.052124023, 0.12878418, -0.057769775, -0.0032043457, -0.0039405823, 0.03643799, 0.035858154, -0.024383545, 0.020324707, 0.049224854, 0.02784729, -0.01449585, -0.031204224, 0.010871887, 0.044403076, -0.05255127, 0.018234253, -0.005935669, 0.015777588, 0.0085372925, -0.006477356, -0.0032520294, -0.00894165, -0.016098022, -0.01965332, -0.006652832, 0.011550903, 0.017456055, 0.03591919, -0.005722046, 0.008171082, 0.008621216, -0.066711426, -0.0066070557, 0.031707764, -0.004016876, -0.029205322, -0.0158844, -0.010848999, -0.016098022, 0.022750854, -0.05227661, 0.029388428, 0.023147583, 0.0023841858, -0.022888184, 0.008018494, 0.0107803345, 0.01638794, -0.029220581, 0.039215088, 0.04940796, 0.025115967, -0.00868988, 0.043701172, 0.07507324, 0.040405273, -0.016098022, -0.021850586, 0.015159607, -0.01398468, -0.007007599, -0.009689331, 0.035827637, 0.03869629, 0.037475586, -0.034118652, -0.024642944, 0.00687027, -0.019866943, 0.042907715, 0.038024902, 0.025726318, -0.008651733, 0.04510498, -0.002231598, 0.016967773, -0.024795532, 0.038146973, -0.029144287, 0.09655762, 0.064819336, 0.012886047, 0.036590576, 0.03463745, 0.04586792, 0.03845215, -0.033935547, 0.038848877, 0.019622803, 0.00020503998, 0.010551453, 0.031234741, 0.034088135, -0.010948181, -0.02798462, -0.009902954, 0.03060913, 0.018936157, -0.0021972656, 0.006416321, 0.034088135, -0.0030345917, -0.00067710876, -0.04650879, 0.048675537, 0.018508911, -0.08874512, -0.076049805, -0.034942627, 0.03048706, -0.018218994, -0.034179688, 0.038238525, -0.019241333, 0.04107666, 0.061309814, -0.011489868, -0.0104904175, -0.030395508, -0.0020599365, -0.055511475, 0.0073776245, -0.016662598, 0.0033721924, -0.047332764, 0.026794434, -0.011856079, -0.061553955, -0.012382507, 0.003791809, 0.032318115, 0.038513184, 0.03656006, 0.0028572083, 0.0062789917, 0.070251465, 0.037078857, 0.009994507, -0.049865723, 0.021606445, -0.052001953, 0.009223938, 0.0023326874, 0.03289795, -0.029281616, -0.0126953125, -0.011169434, 0.012306213, 0.026168823, 0.024627686, 0.027297974, 0.022903442, -0.0033779144, -0.020629883, 0.0016698837, -0.014793396, -0.021026611, -0.016830444, 0.00749588, 0.031433105, -0.0020828247, -0.03894043, -0.011352539, -0.028381348, 0.040496826, -0.015853882, 0.0077438354, 0.020935059, -0.002588272, -0.012786865, 0.017059326, -0.0026340485, 0.022613525, -0.078125, -0.04864502, -0.014335632, -0.0513916, -0.06695557, -0.016799927, 0.01713562, -0.045898438, -0.03982544, 0.048980713, -0.017303467, -0.006717682, -0.030578613, -0.005935669, 0.009941101, 0.042144775, 0.0026226044, -0.014709473, -0.032958984, -0.05480957, -0.036346436, 0.017211914, -0.028717041, -0.0063934326, 0.004951477, -0.0050468445, 0.015991211, -0.0143966675, 0.007820129, 0.040893555, 0.0061302185, 0.034423828, 0.064575195, 0.009162903, -0.017471313, 0.010658264, 0.033325195, -0.003080368, -0.027786255, -0.024337769, -0.010475159, 0.0050735474, -0.045196533, 0.008666992, -0.022369385, -0.0099105835, -0.011802673, -0.025222778, -0.022537231, 0.023132324, -0.09851074, 0.0077438354, -0.027450562, 0.018081665, 0.011688232, 0.010818481, 0.017868042, 0.035858154, -0.008811951, 0.0054397583, -0.021957397, 0.032409668, -0.0053367615, -0.008308411, -0.03250122, 0.020355225, -0.023147583, 0.032073975, 0.023956299, -0.036376953, -0.029296875, -0.031829834, 0.038360596, -0.06903076, 0.0034294128, -0.04675293, -0.02670288, -0.008895874, -0.01449585, -0.004951477, 0.011184692, -0.033996582, -0.005756378, -0.008132935, -0.012435913, -0.016021729, -0.04309082, -0.056549072, 0.0044059753, -0.020767212, -0.023147583, -0.05392456, -0.027999878, -0.0027217865, -0.027648926, 0.0054092407, 0.011329651, 0.051879883, 0.013191223, -0.00422287, 0.049743652, -0.0021438599, 0.032073975, 0.008239746, -0.0016183853, -0.023605347, -0.04498291, 0.07067871, -0.023651123, 0.011657715, -0.06604004, 0.09307861, -0.004119873, 0.010932922, 0.013381958, -0.011955261, -0.010345459, 0.033081055, 0.020889282, 0.0014839172, 0.0025424957, 0.013519287, 0.052978516, -0.09979248, -0.039093018, -0.018875122, -0.0055274963, -0.03765869, 0.0947876, 0.064453125, -0.017745972, 0.058624268, 0.050323486, -0.008361816, 0.027755737, 0.049346924, 0.0019035339, -0.012779236, 0.06088257, -0.033966064, -0.018692017, 0.008392334, -0.004589081, 0.011444092, 0.0009965897, -0.03363037, -0.0155181885, 0.020584106, -0.028167725, -0.015541077, 0.008331299, 0.06384277, 0.013252258, 0.0013751984, -0.0077285767, 0.08013916, -0.014755249, 0.03277588, 0.023101807, -0.032806396, -0.031707764, 0.0039863586, -0.021865845, -0.034362793, 0.03378296, -0.020477295, -0.00434494, 0.010505676, 0.035461426, -0.015289307, -0.022903442, 0.015464783, 0.0027275085, -0.05178833, 0.005012512, 0.022827148, 0.04446411, 0.022445679, -0.03475952, 0.012069702, -0.0069732666, -0.011299133, -0.031921387, -0.01777649, -0.019805908, 0.045684814, 0.029281616, -0.052703857, -0.012062073, -0.008956909, -0.026519775, -0.01838684, 0.0049934387, -0.0317688, -0.0418396, 0.007045746, 0.024368286, -0.040893555, -0.03665161, 0.0047950745, -0.04876709, -0.002943039, 0.007446289, -0.016616821, -0.032073975, 0.02557373, 0.009513855, -0.009307861, -0.03765869, 0.017196655, -0.023406982, 0.08068848, 0.00957489, 0.078308105, -0.03894043, -0.021957397, -0.0524292, 0.07159424, 0.021209717, 0.0069122314, -0.05001831, -0.0041236877, 0.0024795532, 0.05596924, 0.07751465, -0.0009841919, 0.0003950596, -0.045166016, -0.038848877, -0.015068054, -0.018692017, 0.021697998, -0.012077332, -0.02520752, -0.022750854, 0.025924683, -0.01322937, 0.013084412, -0.024795532, 0.011688232, -0.027023315, 0.010246277, -0.028244019, 0.005695343, -0.00035357475, 0.0010194778, -0.0035552979, 0.0023479462, -0.0060424805, 0.0010852814, 0.032928467, 0.007736206, 0.020324707, 0.0109939575, -0.04638672, -0.021713257, -0.024459839, 0.019088745, 0.033050537, -0.008773804, -0.029388428, -0.03201294, 0.062561035, 0.013282776, 0.0076904297, 0.0059394836, 0.029281616, 0.0070877075, -0.041046143, -0.0039634705, 0.025482178, 0.02760315, 0.023254395, -0.028259277, 0.0058250427, -0.016036987, -0.018173218, 0.017974854, 0.0126571655, 0.034332275, -0.043670654, 0.02822876, 0.016113281, 0.034576416, 0.04324341, -0.0013103485, 0.012336731, -0.012756348, -0.011779785, 0.027038574, -0.0041007996, -0.0119018555, -0.005432129, -0.023132324, 0.004508972, 0.009231567, 0.0076828003, -0.042907715, 0.005004883, 0.018234253, -0.0053520203, -0.014930725, 0.023345947, 0.0066947937, 0.0078125, -0.0046157837, 0.050476074, -0.027770996, 0.01033783, 0.010223389, -0.0112838745, 0.014518738, 0.0021209717, -0.011978149, 0.0051116943, 0.0010890961, -0.020904541, 0.018692017, 0.021438599, 0.0029182434, -0.038848877, 0.037078857, -0.0074806213, -0.043518066, -0.026428223, 0.0030975342, -0.0037250519, 0.029724121, 0.002998352, -0.013877869, 0.025009155, 0.005996704, 0.01689148, 0.0034675598, 0.011779785, 0.0029888153, 0.021087646, 0.007881165, 0.016357422, -0.009185791, 0.03186035, -0.057434082, -0.03930664, -0.032714844, 0.035125732, 0.03466797, -0.033081055, 0.0015249252, -0.07147217, 0.0052719116, 0.03665161, -0.027709961, 0.029129028, 0.0038070679, 0.00642395, 0.02696228, 0.016052246, -0.027496338, -0.0018014908, -0.011650085, -0.011070251, -0.029815674, -0.006816864, -0.020080566, 0.02998352, -0.016433716, 0.0066452026, 0.046203613, 0.0009784698, 0.032348633, 0.018936157, -0.02204895, -0.012329102, 0.004753113, 0.02760315, 0.0035686493, -0.022338867, 0.049346924, -0.012672424, -0.023040771, -0.03555298, -0.02230835, 0.057373047, 0.0231781, 0.009178162, -0.026123047, -0.014472961, 0.03451538, -0.0071258545, -0.03933716, 0.051635742, 0.021087646, -0.032348633, -0.036621094, -0.0309906, -0.02734375, 0.019622803, -0.07598877, 0.04147339, 0.021133423, 0.050628662, -0.02078247, 0.008758545, -0.06726074, 0.007858276, -0.05441284, 0.0037117004, 0.00084733963, -0.0037574768, 0.026275635, 0.009155273, -0.023208618, 0.028564453, 0.0463562, -0.019515991, -0.02796936, 0.013710022, 0.009857178, 0.017608643, 0.01197052, 0.01398468, -0.028717041, 0.018508911, 0.017318726, 0.029815674, 0.007205963, 0.018295288, -0.020568848, -0.013710022, 0.0030937195, 0.048736572, 0.03326416, -0.030914307, 0.002357483, -0.052490234, 0.045074463, -0.00039219856, 0.019500732, 0.016159058, 0.010009766, -0.023651123, -0.016738892, -0.0030212402, -0.01725769, -0.046051025, -0.07196045, 0.0057678223, -0.0026760101, 0.07739258, 0.011711121, 0.03189087, 0.044708252, 0.03933716, -0.006095886, 0.018356323, 0.010284424, 9.0420246e-05, 0.033813477, 0.0035324097, 0.018188477, 0.0078125, -0.029632568, -0.023712158, 0.0446167, -0.017440796, 0.005504608, 0.046844482, -0.0057754517, -0.007724762, -0.023712158, 0.0051460266, 0.026824951, -0.051818848, -0.0064735413, -0.02218628, 0.0061683655, -0.03164673, -0.047058105, -0.020523071, -0.02494812, 0.026245117, 0.01361084, 0.04043579, 0.0030231476, 0.02748108, -0.0047035217, 0.03793335, -0.04940796, -0.031341553, 0.02696228, -0.0029888153, 0.025787354, -0.0017776489, -0.030914307, -0.045043945, 0.03277588, -0.05697632, -0.005836487, -0.022613525, 0.018218994, -0.034179688, 0.01071167, -0.027267456, -0.0018262863, 0.014434814, -0.004096985, 0.012771606, 0.007820129, 0.010597229, -0.015625, 0.024002075, -0.0017337799, 0.03643799, 0.03213501, 0.08282471, 0.039733887, -0.0463562, -0.06951904, -0.029037476, -0.0071029663, -0.044952393, 0.02558899, 0.026062012, -0.008743286, 0.050720215, -0.017868042, 0.027877808, 0.043426514, -0.023223877, 0.038635254, -0.0178833, -0.010688782, 0.023147583, -0.03591919, -0.010177612, -0.04727173, -0.0035972595, 0.013900757, -0.027389526, 0.0022010803, 0.03692627, -0.002286911, 0.028335571, -0.0007662773, -0.029846191, 0.05215454, -0.049102783, -0.020614624, 0.0045547485, -0.059936523, -0.025680542, -0.04046631, -0.0138549805, -0.004600525, -0.07550049, 0.014762878, -0.019760132, -0.04296875, -0.012741089, 0.016098022, 0.01058197, -0.05810547, -0.024536133, -0.024093628, 0.018585205, 0.004966736, 0.025939941, 0.0072250366, -0.061523438, -0.078308105, 0.03375244, -0.037200928, -0.0065574646, 0.022720337, -0.01374054, 0.008262634, 0.0099105835, 0.010391235, 0.0077209473, 0.028930664, -0.01940918, -0.027328491, 0.010406494, -0.00079107285, 0.02746582, 0.013763428, -0.06488037, -0.042144775, -0.030075073, -0.02079773, 0.03729248, 0.014701843, -0.04046631, -0.025894165, -0.0016202927, 0.010444641, -0.00066137314, -0.003211975, 0.028869629, -0.00037002563, 0.011520386, -0.026412964, 0.043640137, 0.0014152527, -0.0012350082, 0.01096344, 0.0056114197, 0.015792847, -0.048339844, -0.04220581, -0.038085938, -0.021469116, 0.04815674, 0.02748108, 0.050354004, 0.053771973, 0.05316162, -0.031204224, 0.04232788, 0.0014467239, -0.022216797, -0.0015249252, 0.0067863464, -0.047302246, -0.008262634, 0.008956909, 0.013969421, 0.008171082, 0.032592773, 0.048797607, 0.009506226, -0.027816772, -0.021728516, -0.017227173, -0.0028896332, -0.0022792816, -0.025009155, -0.0043678284, -0.058624268, 0.014816284, 0.021240234, 0.010688782, 0.05429077, 0.0024700165, -0.038238525, -0.037139893, 0.00605011, 0.01979065, 0.011802673, -0.02293396, 0.056518555, 0.027832031, 0.045013428, -0.0017023087, -0.12426758, -0.05319214, 0.047454834, 0.04269409, -0.049346924, 0.08062744, -0.072753906, 0.014472961, 0.026016235, 0.028060913, 0.0024585724, 0.009269714, 0.057769775, 0.014656067, -0.00095558167]}, "B072KLKZD7": {"id": "B072KLKZD7", "original": "Brand: Slim Jim\nName: Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)\nDescription: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
          Fresh and original products directly from the manufacturer
          We provide excellent customer service. Your question will be answered in less than 12 hrs.
          Customer is our first priority\nFeatures: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )\n", "metadata": {"Name": "Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)", "Brand": "Slim Jim", "Description": "Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
          Fresh and original products directly from the manufacturer
          We provide excellent customer service. Your question will be answered in less than 12 hrs.
          Customer is our first priority", "Features": "Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [-0.045043945, -0.027572632, -0.0713501, -0.035186768, -0.009384155, -0.027832031, -0.024246216, 0.055877686, -0.075683594, 0.017868042, 0.014060974, 0.039276123, -0.00084114075, -0.046051025, 0.061065674, -0.014625549, 0.024917603, 0.0039043427, 0.013328552, -0.03439331, 0.021987915, -0.01777649, -0.007167816, 0.10101318, 0.05633545, -0.0033130646, 0.037719727, -0.033569336, 0.070495605, 0.026535034, 0.036071777, -0.062438965, 0.04168701, 0.0070991516, -0.027954102, -0.0042419434, -0.032714844, 0.012863159, -0.014289856, -0.010154724, 0.015151978, -0.008972168, 0.021011353, 0.008003235, -0.014251709, -0.003025055, -0.0007119179, -0.041107178, 0.0031757355, -0.053619385, 0.019119263, 0.050354004, 0.027832031, -0.032226562, -0.008880615, 0.032806396, 0.03314209, 0.004573822, 0.024139404, -0.0692749, -0.04748535, 0.0184021, 0.04171753, 0.04425049, -0.0023822784, -0.03643799, 0.038024902, 0.027938843, -0.016738892, -0.023361206, 0.009643555, 0.018157959, -0.022964478, -0.0016479492, 0.0019369125, 0.00566864, -0.016586304, -0.03753662, 0.0056037903, 0.05026245, -0.008277893, -0.052886963, 0.028625488, 0.0103302, -0.008483887, 0.034698486, -0.020355225, -0.0069465637, 0.046142578, 0.028762817, -0.0029067993, 0.079833984, 0.029724121, 0.061553955, -0.028717041, 0.012275696, 0.018936157, -0.009628296, 0.011756897, -0.052642822, -0.01486969, -0.010551453, -0.08911133, 0.024749756, -0.011001587, -0.018081665, 0.014755249, 0.051086426, 0.039154053, 0.029312134, -0.029891968, 0.081848145, 0.022216797, -0.007095337, -0.04260254, -0.01550293, -0.005619049, 0.022033691, 0.014137268, 0.016403198, 0.0012378693, 0.047912598, -0.04296875, 0.031982422, 0.00016438961, 0.03262329, 0.042266846, -0.023513794, -0.048217773, 0.05404663, -0.010009766, -0.009819031, 0.012756348, 0.03314209, -0.011802673, -0.011299133, -0.033325195, -0.041229248, -0.010406494, 0.015609741, -0.02885437, -0.03201294, 0.06329346, -0.01626587, -0.00068092346, -0.0002605915, 0.022994995, 0.037902832, 0.010719299, -0.0027046204, 0.002216339, -0.00065135956, 0.02279663, 0.012519836, -0.02835083, -0.027694702, 0.003955841, -0.03363037, 0.005970001, -0.050109863, -0.021575928, -0.042114258, -0.054992676, -0.007522583, -0.035614014, 0.0368042, 0.07299805, 0.008811951, 0.011276245, -0.0035896301, 0.0066452026, 0.0045204163, -0.033447266, 0.00039196014, 0.025939941, 0.010475159, -0.0335083, 0.05255127, 0.05657959, -0.10864258, -0.07861328, -0.08502197, 0.06933594, -0.02520752, -0.005458832, -0.026550293, 0.0060806274, -0.019943237, 0.0008559227, -0.004600525, 0.032409668, 0.024276733, 0.014129639, -0.009788513, -0.019760132, -0.017990112, -0.034301758, 0.013633728, -0.033691406, 0.021209717, 0.022598267, -0.011543274, 0.022964478, -0.031143188, 0.009986877, -0.03100586, 0.011360168, 0.0259552, -0.01008606, 0.030441284, 0.0038070679, -0.012611389, 0.001876831, -0.02659607, 0.010002136, 0.0069465637, -0.015602112, 0.03086853, 0.01436615, -0.0013027191, 0.0087890625, 0.00060749054, 0.01638794, 0.0056533813, 0.0062446594, 0.007194519, -0.041381836, 0.0007791519, -0.04510498, 0.016311646, -0.051727295, 0.052459717, 0.0814209, 0.05557251, -0.046295166, 0.04272461, 0.042755127, 0.09588623, -0.042785645, -0.015037537, 0.018112183, 0.00894165, 0.011955261, 0.0569458, 0.06665039, 0.042114258, 0.021575928, -0.009841919, -0.015174866, 0.018798828, 0.05834961, 0.00057315826, -0.0066223145, 0.005191803, 0.028045654, -0.02809143, -0.013259888, 0.021270752, -0.06359863, 0.056030273, -0.02973938, 0.044799805, 0.06286621, -0.007865906, 0.03881836, 0.0135269165, 0.031234741, 0.004272461, -0.030517578, 0.034362793, 0.00881958, -0.03829956, -0.0090408325, 0.0056419373, 0.009773254, -0.05404663, -0.027267456, 0.011650085, -0.007118225, -0.016525269, -0.011314392, -0.02015686, -0.006526947, 0.0013694763, 0.0116119385, -0.039245605, 0.024093628, 0.02017212, -0.026504517, 0.012939453, 0.027999878, 0.03466797, 0.0045814514, -0.0011377335, 0.017486572, 0.0018930435, 0.042785645, 0.02494812, 0.0032844543, 0.0023288727, 0.056549072, 0.038208008, -0.04916382, 0.034240723, -0.015838623, -0.012016296, -0.019104004, 0.025360107, 0.0027427673, -0.06100464, 0.008590698, 0.002084732, 0.02532959, -0.02116394, 0.0423584, 0.01876831, -0.00010919571, 0.02078247, -0.01083374, -0.02961731, -0.06604004, 0.015319824, 0.032470703, -0.015602112, 0.036590576, -0.008773804, -0.024627686, 0.030563354, -0.052215576, -0.03466797, 0.027191162, -0.021331787, 0.0070762634, 0.050598145, 0.02809143, 0.007896423, 0.010307312, 0.01486969, -0.0115356445, -0.057891846, -0.024963379, -0.0031032562, -0.006210327, -0.011131287, -0.016586304, -0.023849487, -0.0045661926, -0.0004878044, -0.021133423, -0.0030879974, 0.015052795, -0.010925293, -0.004470825, 0.04309082, 0.014984131, 0.0060920715, -0.00090265274, 0.030593872, 0.010269165, -0.022735596, 0.002817154, -0.0015258789, -0.028198242, 0.009262085, 0.020324707, -0.029769897, 0.004917145, -0.001458168, -0.0128479, 0.030349731, 0.046783447, 0.025115967, -0.013580322, -0.041046143, -0.07098389, -0.036132812, 0.020812988, -0.029891968, -0.001414299, -0.009490967, -0.003479004, -0.011405945, 0.031036377, 0.0049972534, 0.054107666, -0.0006465912, -0.01586914, 0.053985596, 0.016784668, 0.0052108765, -0.0030593872, 0.024261475, 0.019485474, -0.034576416, -0.033233643, -0.0063552856, 0.045013428, -0.007785797, 0.043670654, -0.031951904, -0.064819336, 0.006965637, -0.01499176, -0.01576233, -0.011199951, -0.044158936, -0.023254395, -0.05117798, 0.027404785, -0.037139893, 0.007205963, 0.021347046, -0.010620117, 0.022079468, -0.018081665, -0.033813477, 0.04360962, -0.003358841, 0.018920898, -0.0079574585, 0.035186768, -0.04849243, 0.046813965, 0.04296875, -0.051330566, 0.00995636, -0.044158936, 0.055267334, -0.062927246, -0.057678223, -0.04812622, -0.034973145, -0.048583984, -0.064331055, 0.047302246, 0.004787445, -0.025360107, -0.026138306, -0.024734497, 0.02192688, -0.054992676, -0.019439697, 0.023727417, 0.046051025, 0.017486572, 0.004047394, -0.042266846, -0.03744507, 0.02835083, 0.0039749146, -0.00045847893, 0.005279541, 0.015975952, -0.007007599, -0.027618408, -0.020431519, 0.0070495605, 0.016571045, 0.007965088, -0.0435791, -0.045440674, -0.0335083, 0.030212402, -0.030044556, 0.016693115, -0.034240723, 0.066833496, 0.004676819, 0.022125244, 0.009292603, 0.010902405, 0.017700195, 0.039642334, -0.004135132, 0.006427765, 0.0017166138, 0.007484436, -0.009002686, -0.022628784, -0.009300232, -0.018478394, 0.018859863, -0.06591797, 0.01991272, 0.006717682, -0.0040740967, -0.012237549, -0.010513306, 7.2181225e-05, 0.025268555, 0.017166138, 0.015556335, 0.030059814, 0.0058898926, -0.0025177002, -0.014778137, 0.004650116, -0.04864502, 0.033599854, 0.025894165, -0.07208252, 0.014823914, -0.014465332, -0.06347656, -0.0032844543, 0.008041382, 0.040802002, 0.015052795, 0.005695343, -0.006500244, 0.07751465, -0.01776123, 0.006034851, -0.0014619827, -0.013328552, -2.092123e-05, 0.008407593, 0.0062332153, -0.007858276, -0.013153076, 0.03048706, 0.034454346, 0.018035889, 0.035858154, -0.016311646, -0.03515625, 0.015716553, -0.04324341, 0.011749268, 0.00027012825, -0.01638794, -0.043121338, -0.018966675, 0.02053833, 0.05303955, 0.02230835, -0.022140503, 0.037322998, 0.02407837, -0.044647217, -0.015792847, 0.011619568, -0.0005812645, -0.0065193176, 0.008476257, -0.031433105, 0.016281128, 0.006839752, -0.03414917, -0.026733398, 0.0026721954, 0.020217896, -0.061157227, -0.0056495667, -0.009254456, -0.056671143, -0.06124878, 0.03253174, -0.0043792725, -0.02746582, -0.05633545, 0.010505676, -0.005329132, 0.03213501, -0.0051841736, 0.033966064, 0.017120361, 0.028060913, -0.009300232, -0.03353882, -0.022766113, 0.016174316, 0.10620117, -0.0015296936, 0.014961243, -0.05496216, -0.045715332, -0.010055542, 0.017089844, 0.085510254, -0.0014810562, 0.015975952, -0.064941406, -0.039611816, -0.044311523, -0.0028572083, -0.0021781921, -0.05883789, -0.074157715, -0.03845215, 0.054840088, 0.013977051, 0.016616821, -0.09283447, -0.016784668, 0.030761719, -0.046783447, -0.021911621, -0.060699463, 0.0037117004, -0.034729004, 0.026473999, 0.0051612854, 0.0006427765, -0.003578186, 0.08862305, -0.0023555756, 0.035095215, -0.038482666, -0.03616333, 0.019836426, 0.05441284, -0.02633667, -0.010231018, -0.03829956, 0.02357483, -0.03289795, 0.0657959, 0.027862549, -0.033721924, -0.024383545, 0.00283432, -0.021133423, -0.020339966, -0.014022827, 0.01940918, 0.008384705, 0.0015630722, -0.02494812, 0.04458618, -0.0052261353, 0.012680054, 0.018112183, 0.0017328262, 0.04562378, -0.031982422, 0.013442993, 0.0036792755, -0.0075798035, 0.037139893, 0.03491211, 0.003917694, 0.015037537, -0.038330078, 0.021133423, -0.024139404, -0.010284424, 0.03137207, -0.042999268, -0.017074585, -0.06021118, -0.00048542023, -0.0073928833, 0.039367676, 0.0013170242, 0.009544373, 0.022598267, 0.011299133, 0.009628296, -0.02319336, 0.021392822, 0.04473877, -0.023086548, -0.005428314, 0.012207031, -0.014595032, -0.0028438568, 0.0037899017, -0.02722168, 0.019241333, -0.021865845, -0.028533936, 0.047943115, 0.0017204285, 0.014678955, -0.0317688, 0.0141067505, -0.0054359436, -0.033172607, -0.020706177, -0.007896423, -0.053894043, 0.04168701, -0.0046691895, -0.021347046, 0.015396118, 0.022659302, 0.00843811, -0.004814148, 0.029708862, -0.033996582, 0.0044288635, -0.00623703, 0.018676758, 0.009483337, 0.005329132, -0.041015625, -0.014884949, 0.010185242, 0.0066375732, -0.03668213, -0.005870819, 0.035705566, 0.0041160583, -0.040222168, -0.01159668, 0.0055885315, 0.015960693, 0.026168823, 0.01084137, 0.0007586479, -0.02128601, -0.017089844, -0.007965088, 0.027297974, -0.004917145, 0.008087158, -0.016098022, -0.032104492, -0.00034499168, -0.02809143, 0.0027980804, 0.03036499, 0.0046195984, 0.019210815, 0.029525757, -0.06750488, -0.0005121231, 0.0024909973, 0.013519287, -0.0066871643, 0.02218628, 0.032409668, -0.025009155, -0.013961792, -0.054656982, 0.012428284, 0.01979065, 0.008514404, 0.0059432983, 0.065979004, -0.014350891, 0.044708252, -0.01802063, 0.01902771, -0.020492554, 0.003019333, 0.064453125, -0.026794434, -0.011276245, 0.039855957, -0.009735107, 0.020858765, 0.03765869, 0.043701172, 0.012550354, -0.014289856, -0.008880615, 0.022872925, -0.013336182, 0.0014429092, 0.027572632, -0.0015468597, -0.030212402, 0.0014886856, -0.005168915, 0.044830322, 0.029464722, -0.0015048981, 0.018936157, 0.036834717, 0.02267456, 0.013366699, 0.029312134, -0.061309814, 0.0010004044, -0.0020217896, -0.06008911, -0.008857727, 0.074401855, 0.06567383, 0.011054993, -0.0592041, -0.04522705, -0.0068130493, 0.02229309, 0.053253174, -0.011932373, -0.005607605, -0.005531311, 0.042907715, 0.0025596619, 0.0028095245, 0.019104004, 0.009498596, -0.01537323, -0.009757996, -0.01965332, -0.03918457, -0.04574585, -0.025604248, -0.027679443, 0.024871826, 0.002948761, 0.00023555756, 0.009567261, 0.048858643, -0.0034732819, 0.018325806, 0.0023517609, 0.018737793, -0.00041532516, 0.035858154, -0.004207611, -0.03277588, 0.036865234, 0.0050964355, 0.014762878, -0.017959595, 0.027175903, -0.046203613, 0.0011644363, 0.012077332, 0.049316406, -0.03717041, 0.0031852722, 0.01727295, -0.033111572, 0.00340271, 0.005832672, 0.0004618168, -0.0082092285, 0.018936157, 0.02104187, 0.025436401, -0.0033454895, 0.011817932, 0.013008118, 0.0064468384, -0.004558563, 0.04196167, 0.04019165, -0.0101623535, 0.01071167, -0.012428284, 0.023361206, 0.05682373, -0.016647339, -0.027435303, 0.04928589, 0.003376007, 0.030960083, 0.0418396, -0.036071777, 0.020690918, 0.012069702, 0.0107040405, -0.021820068, -0.026031494, 0.037719727, 0.020889282, -0.0038223267, 0.026992798, -0.0033302307, -0.010444641, 0.040802002, -0.031463623, 0.03186035, 0.00819397, 0.04119873, 0.016708374, 0.031463623, -0.020233154, 0.061462402, 0.0040397644, 0.019042969, 0.03555298, 0.023040771, 0.055633545, -0.031799316, 0.055511475, 0.018173218, 0.011383057, -0.0602417, -0.022537231, 0.054351807, 0.006095886, 0.008781433, -0.008880615, -0.016479492, -0.045776367, -0.010040283, 0.01574707, -0.04486084, -0.019363403, -0.014122009, -0.016571045, 0.01461792, -0.015975952, 0.017105103, -0.018508911, -0.024124146, 0.0017271042, -0.021713257, -0.019363403, 0.0051498413, 0.016143799, -0.025680542, -0.041656494, -0.031829834, 0.034179688, -0.013305664, -0.040802002, -0.017730713, -0.0056419373, -0.024887085, -0.03564453, 0.0067710876, -0.014373779, 0.06707764, 0.027282715, 0.06329346, -0.001660347, -0.08062744, -0.12963867, 0.0024604797, -0.074157715, 0.0039978027, -0.004299164, 0.012084961, 0.030578613, -0.0043029785, -0.024810791, 0.0345459, 0.0067367554, -0.023712158, -0.051940918, -0.014595032, 0.0129852295, -0.011657715, -0.026229858, 0.0055274963, -0.05090332, 0.024429321, -0.023620605, 0.03918457, 0.002937317, -0.021240234, -0.01222229, -0.021774292, -0.023605347, -0.030288696, 0.03668213, 0.0038471222, 0.016143799, 0.0446167, -0.027297974, -0.0051841736, -0.022598267, -0.06036377, 0.04727173, 0.013572693, -0.014198303, -0.022781372, -0.029312134, 0.010505676, 0.0040283203, 0.003610611, 0.08905029, 0.055511475, -0.0082092285, 0.030807495, -0.010147095, 0.028961182, 0.0017585754, -0.026153564, -0.015731812, 0.0028038025, -0.04937744, -0.03970337, 0.0042037964, -0.045806885, -0.0037250519, 0.015640259, 0.025970459, 0.015205383, -0.040985107, -0.045532227, -0.011642456, -0.010894775, -0.026260376, -0.025146484, -0.030441284, -0.038146973, 0.0025253296, 0.045959473, -0.0066566467, -0.005870819, -0.037322998, 0.0048065186, -0.05328369, 0.021347046, 0.04232788, 0.0236969, -0.0262146, 0.047180176, 0.045318604, 0.04031372, -0.032592773, -0.028579712, -0.031585693, 0.0075569153, 0.01499939, 0.0039405823, 0.10211182, -0.065979004, 0.01663208, 0.020431519, 0.022521973, -0.005970001, 0.009185791, 0.017852783, 0.011520386, 0.013702393]}, "B07748V3PL": {"id": "B07748V3PL", "original": "Brand: Fasmov\nName: Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios\nDescription: This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you're getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nFeatures: Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills.\nGrill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls.\nReusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season.\nEasy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nProtect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It's a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.\n", "metadata": {"Name": "Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios", "Brand": "Fasmov", "Description": "This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you're getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.", "Features": "Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills.\nGrill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls.\nReusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season.\nEasy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nProtect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It's a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.", "Link": "https://www.napoleon.com/en/us/grills/view-all"}, "embedding": [0.006942749, 0.020004272, -0.05014038, -0.04067993, 0.0077056885, -0.019454956, -0.014526367, 0.015838623, -0.04815674, 0.0055732727, -0.060821533, 0.045196533, -0.015823364, 0.008911133, 0.03250122, -0.056915283, 0.018737793, 0.014518738, 0.041625977, -0.015670776, -0.006767273, -0.016998291, 0.02947998, 0.0035438538, 0.024017334, -0.03274536, 0.06072998, -0.0051498413, 0.015602112, -0.016311646, 0.023376465, -0.03225708, 0.038391113, -0.017608643, -0.0079422, -0.008544922, -0.021148682, -0.013938904, -0.002664566, -0.0046958923, 0.021957397, -0.019317627, -0.0019350052, -0.00497818, -0.03540039, 0.008453369, -0.012031555, -0.015083313, 0.026397705, 0.034973145, 0.006816864, 0.030014038, -0.0012111664, 0.05706787, -0.010131836, 0.0035572052, -0.024932861, 0.003709793, 0.024490356, 0.03616333, -0.0024585724, -0.0052490234, 0.0039100647, -0.031311035, -0.04949951, 0.010932922, 0.025344849, -0.017593384, -0.024017334, -0.047821045, 0.015571594, -0.011985779, 0.042236328, -0.043823242, -0.007232666, -0.042663574, 0.03302002, -0.02458191, -0.012207031, -0.0058135986, -0.07501221, -0.022232056, 0.026229858, -0.04309082, -0.015312195, -0.010368347, -0.03933716, 0.021759033, -0.0178833, -0.026382446, -0.0070266724, 0.008460999, -0.054351807, 0.0158844, -0.0134887695, -0.024307251, -0.03439331, -0.018661499, -0.010314941, 0.013534546, 0.028121948, -0.039154053, 0.051361084, -0.017486572, -0.027404785, 0.02607727, -0.0016307831, -0.035339355, -0.035461426, 0.032592773, -0.035125732, -0.051513672, 0.0009880066, -0.026489258, -0.05731201, 0.017944336, 0.015914917, -0.073913574, 0.011054993, -0.08508301, -0.032958984, -0.0121536255, -0.028335571, 0.03326416, 0.09350586, 0.05834961, -0.013084412, 0.0395813, -0.042114258, 0.03744507, -0.0048980713, -0.013473511, -0.004837036, 0.03866577, -0.0037670135, -0.03665161, -0.024780273, 0.030929565, 0.0129470825, 0.030563354, -0.02420044, -0.04473877, 0.028366089, 0.00075674057, -0.036895752, 0.061767578, 0.03427124, -0.014564514, -0.039093018, -0.06298828, -0.008178711, -0.02947998, 0.038360596, -0.018539429, -0.014045715, -0.018371582, 0.003068924, -0.020233154, -0.02810669, -0.027679443, 0.031082153, 0.008560181, -0.005054474, -0.027923584, -0.030929565, -0.023223877, -0.05404663, 0.010047913, 0.027420044, 0.025756836, 0.026565552, -0.002248764, -0.02381897, -0.009681702, -0.0070114136, -0.025802612, 0.04812622, 0.030227661, 0.070495605, -0.08691406, -0.10601807, -0.05239868, 0.14428711, -0.08465576, 0.02293396, -0.0317688, 0.011726379, -0.019851685, 0.008338928, 0.01965332, -0.014854431, 0.0036754608, -0.05999756, 0.018051147, -0.03277588, 0.040618896, -0.03036499, 0.04248047, -0.023101807, -0.025360107, -0.032318115, -0.0032901764, 0.036193848, 0.01979065, 0.096069336, -0.012420654, 0.032806396, 0.0035133362, -0.008422852, 0.048919678, 0.0050354004, -0.007713318, -0.012268066, -0.017578125, -0.006126404, -0.028747559, 0.011886597, -0.022888184, 0.018722534, -0.021942139, 0.042297363, 0.053222656, -0.0020809174, 0.019866943, -0.0043640137, -0.047790527, -0.017562866, -0.034729004, -0.006641388, -0.022659302, 0.042022705, 0.05203247, 0.042877197, 0.022628784, -0.01991272, 0.03253174, 0.0357666, 0.004447937, -0.010246277, 0.01902771, -0.0043792725, -0.00793457, -0.038330078, 0.06286621, 0.014961243, -0.022033691, -0.010856628, 0.052825928, -0.048431396, -0.033721924, 0.028518677, 0.0012779236, 0.04168701, -0.03579712, -0.03201294, 0.046875, -0.045928955, 0.014770508, 0.0019950867, -0.010536194, -0.012771606, 0.00074768066, 0.04272461, -0.021438599, 0.062469482, -0.036224365, 0.048797607, 0.018539429, -0.01725769, -0.02180481, 0.01739502, 0.0046081543, -0.013084412, 0.060455322, 0.017990112, -0.0124053955, -0.042755127, -0.013801575, -0.013839722, 0.025543213, 0.012260437, 0.011398315, 0.002998352, -0.011009216, 0.033050537, -0.010894775, 0.0052986145, -0.0028457642, -0.044677734, -0.03793335, -0.009094238, 0.046203613, -0.012924194, 0.003540039, 0.0340271, -0.0072135925, -0.03488159, 0.03842163, 0.0006637573, -0.007686615, -0.027404785, 0.029678345, -0.021575928, 0.0068511963, -0.018707275, 0.011924744, -0.022598267, -0.009239197, -0.0102005005, -0.022384644, 0.011642456, 0.038208008, 0.038391113, -0.032226562, 0.044921875, 0.016693115, -0.02168274, 0.05303955, 0.011734009, 0.041503906, -0.022018433, -0.024291992, -0.010643005, -0.0064849854, -0.007499695, 0.011116028, -0.016464233, 0.00308609, 0.020706177, -0.019805908, 0.028366089, -0.006549835, -0.019760132, 0.0046157837, 0.02015686, 0.011062622, -0.008857727, 0.01939392, 0.011734009, -0.031280518, 0.020874023, 0.00022935867, 0.015808105, 0.0017852783, -0.054748535, 0.016921997, -0.017105103, 0.02583313, -0.018615723, -0.040100098, 0.04107666, -0.041046143, 0.008491516, -0.03463745, -0.0021152496, -0.012336731, -0.016662598, -0.013519287, 0.0070343018, -0.05847168, -0.014640808, -0.025665283, -0.04748535, 0.0010604858, 0.024276733, 0.011512756, 0.004020691, -0.012046814, 0.014762878, -0.0035934448, 0.04937744, 0.023529053, -0.05429077, -0.031311035, -0.038879395, -0.04043579, 0.00024747849, -0.052124023, -0.006298065, -0.019454956, -0.046051025, -0.045898438, 0.034240723, -0.024932861, 0.031219482, 0.009101868, 0.03112793, 0.068115234, -0.03466797, -0.038726807, -0.03479004, 0.038116455, -0.06896973, -0.0018863678, 0.012237549, 0.0037288666, 0.035186768, -0.00907135, -0.060333252, -0.03125, -0.09173584, -0.008659363, -0.011352539, -0.037322998, 0.0029563904, -0.023727417, -0.024032593, -0.049072266, 0.015510559, 0.05606079, -0.045928955, 0.012634277, -0.023010254, -0.0005464554, -0.020965576, 0.023590088, 0.010810852, -0.006996155, -0.0009365082, -0.008552551, 0.02949524, -0.05105591, -0.0064582825, -0.0009217262, -0.014533997, 0.008407593, -0.0146102905, 0.03125, -0.047973633, -0.064453125, -0.041748047, -0.041870117, -0.013069153, 0.042022705, -0.012962341, 0.05441284, 0.030395508, -0.042999268, 0.06341553, -0.047851562, 0.012641907, 0.009994507, -0.008270264, 0.013969421, -0.018814087, -0.013343811, 0.00831604, -0.009864807, -0.028884888, 0.013450623, 0.0016860962, 0.015037537, -0.00831604, 0.025039673, -0.010444641, 0.026779175, 0.014694214, 0.04876709, -0.040771484, 0.03805542, 0.0037269592, -0.037017822, 0.09033203, 0.0074005127, 0.017074585, -0.047332764, 0.022567749, -0.024719238, -0.020492554, 0.011177063, -0.044036865, 0.046539307, 0.027709961, -0.025909424, 0.021408081, -0.038269043, 0.016616821, 0.042633057, -0.049743652, -0.06185913, -0.06536865, -0.0012369156, -0.11779785, 0.071777344, 0.036834717, -0.031707764, 0.08392334, 0.08068848, -0.023910522, 0.01965332, 0.013305664, 0.0013904572, 0.027313232, 0.010932922, -0.021697998, -0.012702942, -0.0031166077, -0.0030002594, 0.0077285767, -0.050750732, 0.0032444, 0.0066452026, 0.019042969, 0.010627747, 0.017578125, 0.020370483, -0.011398315, 0.0073547363, 0.010017395, -0.032836914, 0.012207031, -0.033416748, 0.008407593, 0.0052337646, -0.01676941, -0.025848389, 0.032165527, -0.015205383, -0.01751709, -0.010826111, -0.0041999817, -0.0042419434, 0.051727295, 0.03591919, -0.039886475, 0.0039405823, 0.016677856, -0.0031280518, -0.021865845, -0.0049095154, 0.015335083, 0.0390625, 0.020187378, 0.010040283, -0.015136719, -0.03717041, -0.0060424805, 0.01977539, -0.017181396, -0.040130615, -0.0119018555, 0.02619934, 0.032440186, -0.00023329258, 0.009971619, -0.04852295, -0.0031642914, 0.034301758, -0.066833496, 0.012748718, 0.0036907196, -0.0025043488, -0.028076172, -0.00548172, -0.01876831, -0.07531738, -0.04269409, 0.004558563, -0.00415802, 0.021911621, -0.017105103, 0.016036987, -0.04827881, 0.014511108, 0.02758789, 0.02180481, -0.0071105957, -0.027679443, -0.00047969818, -0.024749756, -0.03491211, -0.035705566, 0.036895752, -0.0015468597, -0.0015859604, -0.017654419, -0.021057129, 0.012626648, 0.02532959, 0.095825195, 0.0096206665, 0.037475586, -0.04449463, 0.020980835, -0.04525757, -0.017166138, 0.04525757, -0.08544922, -0.022018433, -0.028778076, 0.062194824, -0.005847931, -0.0023002625, -0.04626465, -0.0018453598, 0.0075149536, -0.045196533, 0.020462036, 0.016479492, 0.015098572, -0.008163452, -0.0149002075, -0.006855011, -0.021377563, 0.0014238358, -0.008110046, -0.0049324036, -0.009017944, 0.0032424927, -0.033416748, 0.013534546, -0.02027893, -0.015136719, 0.050079346, -0.018753052, -0.02835083, -0.028671265, 0.023910522, 0.035583496, -0.021743774, -0.00096178055, -0.00033473969, -0.017044067, -0.005050659, -0.008163452, -0.0154800415, 0.017196655, 0.030197144, -0.0073432922, -0.039001465, 0.009124756, -0.041534424, 0.02670288, -0.010253906, 0.016174316, -0.020187378, 0.006664276, -0.044769287, -0.041992188, 0.06744385, 0.010505676, 0.04296875, 0.036193848, -0.055145264, 0.013076782, -0.04232788, -0.030944824, -0.0071640015, -0.019882202, -0.012435913, 0.007320404, 0.013130188, -0.0001206398, -0.006866455, 0.010536194, 0.019577026, -0.010688782, 0.021240234, -0.0046844482, -0.00038075447, -0.017333984, 0.037872314, -0.008163452, 0.010246277, -0.015167236, -0.031433105, 0.0035247803, 0.019348145, -0.042510986, 0.01626587, -0.0002732277, -0.039611816, -0.0014257431, -0.0132751465, 0.02659607, -0.015914917, 0.038269043, 0.009223938, -0.00356102, -0.055023193, -0.008865356, -0.053497314, 0.046569824, -0.038879395, 0.0014295578, 0.01965332, 0.026443481, -0.013381958, 0.0015449524, 0.036254883, -0.015655518, 0.023712158, 0.005897522, 0.012962341, -0.036224365, -0.002248764, 0.0031356812, -0.027374268, -0.023971558, -0.042236328, 0.03111267, -0.0071258545, -0.0362854, -0.030975342, 0.010574341, -0.006511688, -0.030349731, -0.034576416, -0.0119018555, -0.003545761, -0.038513184, 0.014213562, 0.02760315, 0.015075684, -0.04083252, -0.044158936, -0.03845215, 0.028717041, -0.015731812, 0.03274536, -0.018005371, -0.022033691, -0.01802063, 0.00919342, 0.013191223, -0.0066719055, -0.032470703, -0.014427185, -0.017669678, -0.034606934, 0.010406494, -0.022583008, 0.020233154, -0.010803223, -0.031799316, -0.016937256, 0.03010559, -0.0076522827, -0.038391113, 0.06088257, -0.030929565, 0.025177002, 0.00029730797, -0.017578125, -0.031982422, 0.03540039, 0.019088745, -0.04776001, -0.005493164, -0.006378174, 0.019180298, -0.011802673, -0.05307007, 0.0022888184, 0.03189087, 0.020523071, 0.011230469, -0.006427765, -0.064697266, 0.013130188, 0.003835678, 0.020874023, -0.008529663, -0.016952515, -0.029663086, -0.006340027, -0.02583313, -0.013458252, 0.0524292, 0.01725769, -0.0037956238, -0.048858643, 0.020385742, 0.032043457, 0.012649536, 0.086364746, -0.019607544, -0.029449463, -0.030014038, 0.05316162, 0.0925293, -0.009407043, -0.009063721, -0.040252686, 0.01335907, 0.00090408325, 0.037017822, -0.009941101, -0.064575195, -0.072021484, 0.10760498, 0.05026245, 0.017227173, 0.05078125, 0.012306213, -0.017044067, 0.0068588257, 0.021316528, 0.045318604, -0.029312134, 0.018234253, -0.049865723, 0.009735107, 0.0014266968, -0.016281128, 0.011703491, -0.03781128, 0.027770996, 0.009757996, 0.01360321, -0.0028457642, 0.039520264, 0.016815186, -0.048095703, -0.07019043, 0.0004169941, 0.001821518, -0.010253906, -0.044158936, -0.008377075, 0.031829834, 0.032592773, 0.047668457, -0.026626587, 0.009811401, -0.008934021, -0.02305603, -0.026916504, 0.054107666, 0.009223938, -0.04055786, 0.027526855, -0.043029785, -0.03894043, -0.010818481, 0.049438477, -0.011772156, 0.06021118, -0.03387451, 0.026321411, -0.0259552, -0.0060310364, -0.03289795, -0.008148193, -0.0084991455, 0.0028800964, 0.0064582825, -0.0025024414, -0.047027588, 0.0020046234, 0.05517578, -0.062683105, 0.020614624, 0.02268982, -0.0016469955, -0.07183838, 0.043060303, -0.0072898865, -0.026397705, 0.031341553, 0.02670288, 0.0022239685, 0.04776001, -0.0034599304, 0.035461426, -0.031280518, 0.0019512177, 0.023742676, -0.035186768, 0.00035452843, 0.012619019, -0.00541687, 0.017654419, 0.025283813, -0.0025482178, 0.003929138, 0.030883789, -0.007904053, 0.01776123, 0.066711426, 0.01940918, 0.004211426, 0.03326416, -0.030334473, 0.011924744, -0.005706787, 0.008857727, 0.005832672, -0.013908386, -0.012817383, -0.033233643, -0.005558014, 0.017852783, -0.0115356445, -0.005882263, -0.010604858, 0.016571045, -0.0077819824, -0.038208008, 0.017990112, -0.004180908, -0.043640137, 0.045135498, -0.045013428, -0.003955841, -0.029342651, -0.052490234, -0.040802002, 0.011749268, -0.022003174, 0.010299683, 0.017196655, -0.041137695, -0.012763977, -0.0045814514, -0.026809692, -0.07867432, -0.00844574, -0.029159546, 0.047332764, -0.00806427, 0.0574646, -0.0016002655, -0.036193848, -0.078063965, 0.005340576, -0.05368042, 0.028137207, -0.029006958, 0.023040771, 0.019104004, -0.00374794, 0.026062012, 0.00642395, 0.01663208, -0.010101318, -0.016342163, -0.0418396, -0.03540039, 0.047668457, 0.009300232, -0.04888916, -0.011993408, 0.062194824, 0.0031871796, 0.053741455, 0.033843994, -0.01979065, -0.02394104, -0.030685425, -0.05130005, 0.033691406, -0.0019378662, -0.01512146, 0.038604736, 0.001912117, -0.02722168, 0.048919678, 0.03488159, -0.0178833, 0.025878906, 0.017944336, -0.027359009, -0.03338623, 0.012557983, -0.0023727417, 0.0014505386, 0.020950317, 0.019180298, -0.019378662, -0.052886963, -0.011878967, 0.007610321, -0.0072517395, 0.018844604, -0.035827637, -0.026229858, 0.011039734, 0.024795532, -0.02027893, 0.026229858, 0.022399902, -0.03125, -0.032592773, 0.00038647652, 0.06439209, -0.037872314, -0.0143585205, 0.0033035278, 0.006248474, 0.029342651, 0.0006637573, -0.004142761, -0.054626465, 2.6464462e-05, 0.041412354, -0.0013694763, 0.056640625, -0.019561768, -0.03967285, -0.0010681152, 0.03466797, 0.020065308, 0.030380249, -0.035339355, 0.03326416, 0.0067481995, 0.04119873, -0.016784668, -0.006778717, -0.020935059, 0.011634827, 0.015991211, -0.00349617, 0.040222168, 0.0034008026, 0.009895325, -0.030853271, -0.040374756, -0.039093018, 0.008522034, -0.012420654, -0.043823242, 0.03390503]}, "B08V4RVHJ6": {"id": "B08V4RVHJ6", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux 2.64 GPM Propane Gas Water Heater, Outdoor Camping Tankless Water Heater with Digital Display, White\nDescription:

          Features

          1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

          2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

          3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

          4.Turn the ignition on with 2 \"D\" batteries whenever electricity is not accessible!

          5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

          6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

          7.The system also works great on modified water systems with a 12 volt water pump.

          8.The gas water heater can't be used for drinking water.

          Warm Remind:\u00a0 Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

          Easy to Use

          Get the instant portable gas hot water system that's easy to set up and use!

          1. Install the gas water heater on the wall.

          2. Connect the gas cylinder with the supplied gas hose and regulator.

          3. Connect shower hose and shower head to the hot water outlet.

          4. Connect water hose to the water inlet.

          5. Insert 2 size \"D\" batteries.

          6. Enjoy instant hot water!

          What's in the Box

          1 x Camplux 10L tankless water heater

          1 x 5\"ft 3 setting ON/OFF shower head and pedestal

          1 x 5\"ft CSA approval gas hose & regulator

          Features

          1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

          2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

          3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

          4.Turn the ignition on with 2 \"D\" batteries whenever electricity is not accessible!

          5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

          6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

          7.The system also works great on modified water systems with a 12 volt water pump.

          8.The gas water heater can't be used for drinking water.

          Warm Remind:\u00a0 Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

          Easy to Use

          Get the instant portable gas hot water system that's easy to set up and use!

          1. Install the gas water heater on the wall.

          2. Connect the gas cylinder with the supplied gas hose and regulator.

          3. Connect shower hose and shower head to the hot water outlet.

          4. Connect water hose to the water inlet.

          5. Insert 2 size \"D\" batteries.

          6. Enjoy instant hot water!

          What's in the Box

          1 x Camplux 10L tankless water heater

          1 x 5\"ft 3 setting ON/OFF shower head and pedestal

          1 x 5\"ft CSA approval gas hose & regulator

          limit: + texts = [doc["original"] for doc in documents[i:]] + else: + texts = [doc["original"] for doc in documents[i : i + batch_size]] + + response = co.embed( + texts, + model=os.environ["PINECONE_COHERE_EMBED_MODEL"], + input_type="search_document", + ) + + for e, _ in enumerate(response.embeddings): + embedded_docs[documents[i + e]["id"]] = { + **documents[i + e], + "embedding": response.embeddings[e], + } + + with open("./dev/bbq_embeddings.json", "w") as json_file: + json.dump(embedded_docs, json_file) diff --git a/pinecone/dev/load_data.py b/pinecone/dev/load_data.py new file mode 100644 index 000000000..822c68a6e --- /dev/null +++ b/pinecone/dev/load_data.py @@ -0,0 +1,50 @@ +import json +import os + +import pinecone +from dotenv import load_dotenv + +load_dotenv() +INDEX_NAME = os.environ["PINECONE_INDEX"] + +if __name__ == "__main__": + pinecone.init( + api_key=os.environ["PINECONE_API_KEY"], + environment=os.environ["PINECONE_ENVIRONMENT"], + ) + + if INDEX_NAME not in pinecone.list_indexes(): + print("Creating index") + pinecone.create_index( + INDEX_NAME, + dimension=1024, + metric="cosine", + pods=1, + replicas=1, + pod_type="p1", + ) + + index = pinecone.Index(INDEX_NAME) + + bbq_embeddings = json.load(open("./dev/bbq_embeddings.json", "r")) + docs = list(bbq_embeddings.values()) + batch_size = 50 + limit = len(docs) + + for i in range(0, limit, batch_size): + records = [] + # The last batch may be smaller than the batch size, so we need to handle that + if i + batch_size > limit: + records = [ + (doc["id"], doc["embedding"], doc["metadata"]) for doc in docs[i:] + ] + else: + records = [ + (doc["id"], doc["embedding"], doc["metadata"]) + for doc in docs[i : i + batch_size] + ] + + print(f"Upserting {len(records)} records") + index.upsert(records) + + print("Finished loading data") diff --git a/pinecone/poetry.lock b/pinecone/poetry.lock new file mode 100644 index 000000000..ab10e3fe1 --- /dev/null +++ b/pinecone/poetry.lock @@ -0,0 +1,1381 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "backoff" +version = "2.2.1" +description = "Function decoration for backoff and retry" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, + {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, +] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "cohere" +version = "4.34" +description = "" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "cohere-4.34-py3-none-any.whl", hash = "sha256:1003b27f1eefe83be9d9c4b76fbd0949bdb4bd30aaaebb53534d77291da5f02d"}, + {file = "cohere-4.34.tar.gz", hash = "sha256:597bb4ea490a8873ba8166b1bd491380595f4bc22b9e1ff8b3bbe3a4e6fd74bb"}, +] + +[package.dependencies] +aiohttp = ">=3.0,<4.0" +backoff = ">=2.0,<3.0" +fastavro = {version = "1.8.2", markers = "python_version >= \"3.8\""} +importlib_metadata = ">=6.0,<7.0" +requests = ">=2.25.0,<3.0.0" +urllib3 = ">=1.26,<3" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "dnspython" +version = "2.4.2" +description = "DNS toolkit" +optional = false +python-versions = ">=3.8,<4.0" +files = [ + {file = "dnspython-2.4.2-py3-none-any.whl", hash = "sha256:57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8"}, + {file = "dnspython-2.4.2.tar.gz", hash = "sha256:8dcfae8c7460a2f84b4072e26f1c9f4101ca20c071649cb7c34e8b6a93d58984"}, +] + +[package.extras] +dnssec = ["cryptography (>=2.6,<42.0)"] +doh = ["h2 (>=4.1.0)", "httpcore (>=0.17.3)", "httpx (>=0.24.1)"] +doq = ["aioquic (>=0.9.20)"] +idna = ["idna (>=2.1,<4.0)"] +trio = ["trio (>=0.14,<0.23)"] +wmi = ["wmi (>=1.5.1,<2.0.0)"] + +[[package]] +name = "fastavro" +version = "1.8.2" +description = "Fast read/write of AVRO files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fastavro-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:0e08964b2e9a455d831f2557402a683d4c4d45206f2ab9ade7c69d3dc14e0e58"}, + {file = "fastavro-1.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:401a70b1e5c7161420c6019e0c8afa88f7c8a373468591f5ec37639a903c2509"}, + {file = "fastavro-1.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef1ed3eaa4240c05698d02d8d0c010b9a03780eda37b492da6cd4c9d37e04ec"}, + {file = "fastavro-1.8.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:543185a672ff6306beb329b57a7b8a3a2dd1eb21a5ccc530150623d58d48bb98"}, + {file = "fastavro-1.8.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ffbf8bae1edb50fe7beeffc3afa8e684686550c2e5d31bf01c25cfa213f581e1"}, + {file = "fastavro-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:bb545eb9d876bc7b785e27e98e7720ada7eee7d7a1729798d2ed51517f13500a"}, + {file = "fastavro-1.8.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2b837d3038c651046252bc92c1b9899bf21c7927a148a1ff89599c36c2a331ca"}, + {file = "fastavro-1.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3510e96c0a47e4e914bd1a29c954eb662bfa24849ad92e597cb97cc79f21af7"}, + {file = "fastavro-1.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ccc0e74f2c2ab357f39bb73d67fcdb6dc10e23fdbbd399326139f72ec0fb99a3"}, + {file = "fastavro-1.8.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:add51c70d0ab1175601c75cd687bbe9d16ae312cd8899b907aafe0d79ee2bc1d"}, + {file = "fastavro-1.8.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d9e2662f57e6453e9a2c9fb4f54b2a9e62e3e46f5a412ac00558112336d23883"}, + {file = "fastavro-1.8.2-cp311-cp311-win_amd64.whl", hash = "sha256:fea75cf53a93c56dd56e68abce8d314ef877b27451c870cd7ede7582d34c08a7"}, + {file = "fastavro-1.8.2-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:f489020bb8664c2737c03457ad5dbd490579ddab6f0a7b5c17fecfe982715a89"}, + {file = "fastavro-1.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a547625c138efd5e61300119241041906ee8cb426fc7aa789900f87af7ed330d"}, + {file = "fastavro-1.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:53beb458f30c9ad4aa7bff4a42243ff990ffb713b6ce0cd9b360cbc3d648fe52"}, + {file = "fastavro-1.8.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7b1b2cbd2dd851452306beed0ab9bdaeeab1cc8ad46f84b47cd81eeaff6dd6b8"}, + {file = "fastavro-1.8.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d29e9baee0b2f37ecd09bde3b487cf900431fd548c85be3e4fe1b9a0b2a917f1"}, + {file = "fastavro-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:66e132c710663230292bc63e2cb79cf95b16ccb94a5fc99bb63694b24e312fc5"}, + {file = "fastavro-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:38aca63ce604039bcdf2edd14912d00287bdbf8b76f9aa42b28e6ca0bf950092"}, + {file = "fastavro-1.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9787835f6449ee94713e7993a700432fce3763024791ffa8a58dc91ef9d1f950"}, + {file = "fastavro-1.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:536cb448bc83811056be02749fd9df37a69621678f02597d272970a769e9b40c"}, + {file = "fastavro-1.8.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e9d5027cf7d9968f8f819958b41bfedb933323ea6d6a0485eefacaa1afd91f54"}, + {file = "fastavro-1.8.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:792adfc0c80c7f1109e0ab4b0decef20691fdf0a45091d397a0563872eb56d42"}, + {file = "fastavro-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:650b22766259f7dd7519dfa4e4658f0e233c319efa130b9cf0c36a500e09cc57"}, + {file = "fastavro-1.8.2.tar.gz", hash = "sha256:ab9d9226d4b66b6b3d0661a57cd45259b0868fed1c0cd4fac95249b9e0973320"}, +] + +[package.extras] +codecs = ["lz4", "python-snappy", "zstandard"] +lz4 = ["lz4"] +snappy = ["python-snappy"] +zstandard = ["zstandard"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "importlib-metadata" +version = "6.8.0" +description = "Read metadata from Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, +] + +[package.dependencies] +zipp = ">=0.5" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +perf = ["ipython"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.2" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.2-py3-none-any.whl", hash = "sha256:eee9e502c788e89cb166d4d37f43084e3b64ab405c795c03d343a4dbc2c810fc"}, + {file = "jsonschema-4.19.2.tar.gz", hash = "sha256:c9ff4d7447eed9592c23a12ccee508baf0dd0d59650615e847feb6cdca74f392"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "loguru" +version = "0.7.2" +description = "Python logging made (stupidly) simple" +optional = false +python-versions = ">=3.5" +files = [ + {file = "loguru-0.7.2-py3-none-any.whl", hash = "sha256:003d71e3d3ed35f0f8984898359d65b79e5b21943f78af86aa5491210429b8eb"}, + {file = "loguru-0.7.2.tar.gz", hash = "sha256:e671a53522515f34fd406340ee968cb9ecafbc4b36c679da03c18fd8d0bd51ac"}, +] + +[package.dependencies] +colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""} +win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""} + +[package.extras] +dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.2.2)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.4.1)", "mypy (==v1.5.1)", "pre-commit (==3.4.0)", "pytest (==6.1.2)", "pytest (==7.4.0)", "pytest-cov (==2.12.1)", "pytest-cov (==4.1.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.0.0)", "sphinx-autobuild (==2021.3.14)", "sphinx-rtd-theme (==1.3.0)", "tox (==3.27.1)", "tox (==4.11.0)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "numpy" +version = "1.26.2" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.26.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3703fc9258a4a122d17043e57b35e5ef1c5a5837c3db8be396c82e04c1cf9b0f"}, + {file = "numpy-1.26.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cc392fdcbd21d4be6ae1bb4475a03ce3b025cd49a9be5345d76d7585aea69440"}, + {file = "numpy-1.26.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36340109af8da8805d8851ef1d74761b3b88e81a9bd80b290bbfed61bd2b4f75"}, + {file = "numpy-1.26.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc008217145b3d77abd3e4d5ef586e3bdfba8fe17940769f8aa09b99e856c00"}, + {file = "numpy-1.26.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3ced40d4e9e18242f70dd02d739e44698df3dcb010d31f495ff00a31ef6014fe"}, + {file = "numpy-1.26.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b272d4cecc32c9e19911891446b72e986157e6a1809b7b56518b4f3755267523"}, + {file = "numpy-1.26.2-cp310-cp310-win32.whl", hash = "sha256:22f8fc02fdbc829e7a8c578dd8d2e15a9074b630d4da29cda483337e300e3ee9"}, + {file = "numpy-1.26.2-cp310-cp310-win_amd64.whl", hash = "sha256:26c9d33f8e8b846d5a65dd068c14e04018d05533b348d9eaeef6c1bd787f9919"}, + {file = "numpy-1.26.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b96e7b9c624ef3ae2ae0e04fa9b460f6b9f17ad8b4bec6d7756510f1f6c0c841"}, + {file = "numpy-1.26.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:aa18428111fb9a591d7a9cc1b48150097ba6a7e8299fb56bdf574df650e7d1f1"}, + {file = "numpy-1.26.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06fa1ed84aa60ea6ef9f91ba57b5ed963c3729534e6e54055fc151fad0423f0a"}, + {file = "numpy-1.26.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96ca5482c3dbdd051bcd1fce8034603d6ebfc125a7bd59f55b40d8f5d246832b"}, + {file = "numpy-1.26.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:854ab91a2906ef29dc3925a064fcd365c7b4da743f84b123002f6139bcb3f8a7"}, + {file = "numpy-1.26.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f43740ab089277d403aa07567be138fc2a89d4d9892d113b76153e0e412409f8"}, + {file = "numpy-1.26.2-cp311-cp311-win32.whl", hash = "sha256:a2bbc29fcb1771cd7b7425f98b05307776a6baf43035d3b80c4b0f29e9545186"}, + {file = "numpy-1.26.2-cp311-cp311-win_amd64.whl", hash = "sha256:2b3fca8a5b00184828d12b073af4d0fc5fdd94b1632c2477526f6bd7842d700d"}, + {file = "numpy-1.26.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a4cd6ed4a339c21f1d1b0fdf13426cb3b284555c27ac2f156dfdaaa7e16bfab0"}, + {file = "numpy-1.26.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5d5244aabd6ed7f312268b9247be47343a654ebea52a60f002dc70c769048e75"}, + {file = "numpy-1.26.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a3cdb4d9c70e6b8c0814239ead47da00934666f668426fc6e94cce869e13fd7"}, + {file = "numpy-1.26.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa317b2325f7aa0a9471663e6093c210cb2ae9c0ad824732b307d2c51983d5b6"}, + {file = "numpy-1.26.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:174a8880739c16c925799c018f3f55b8130c1f7c8e75ab0a6fa9d41cab092fd6"}, + {file = "numpy-1.26.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f79b231bf5c16b1f39c7f4875e1ded36abee1591e98742b05d8a0fb55d8a3eec"}, + {file = "numpy-1.26.2-cp312-cp312-win32.whl", hash = "sha256:4a06263321dfd3598cacb252f51e521a8cb4b6df471bb12a7ee5cbab20ea9167"}, + {file = "numpy-1.26.2-cp312-cp312-win_amd64.whl", hash = "sha256:b04f5dc6b3efdaab541f7857351aac359e6ae3c126e2edb376929bd3b7f92d7e"}, + {file = "numpy-1.26.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4eb8df4bf8d3d90d091e0146f6c28492b0be84da3e409ebef54349f71ed271ef"}, + {file = "numpy-1.26.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1a13860fdcd95de7cf58bd6f8bc5a5ef81c0b0625eb2c9a783948847abbef2c2"}, + {file = "numpy-1.26.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64308ebc366a8ed63fd0bf426b6a9468060962f1a4339ab1074c228fa6ade8e3"}, + {file = "numpy-1.26.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baf8aab04a2c0e859da118f0b38617e5ee65d75b83795055fb66c0d5e9e9b818"}, + {file = "numpy-1.26.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d73a3abcac238250091b11caef9ad12413dab01669511779bc9b29261dd50210"}, + {file = "numpy-1.26.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b361d369fc7e5e1714cf827b731ca32bff8d411212fccd29ad98ad622449cc36"}, + {file = "numpy-1.26.2-cp39-cp39-win32.whl", hash = "sha256:bd3f0091e845164a20bd5a326860c840fe2af79fa12e0469a12768a3ec578d80"}, + {file = "numpy-1.26.2-cp39-cp39-win_amd64.whl", hash = "sha256:2beef57fb031dcc0dc8fa4fe297a742027b954949cabb52a2a376c144e5e6060"}, + {file = "numpy-1.26.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1cc3d5029a30fb5f06704ad6b23b35e11309491c999838c31f124fee32107c79"}, + {file = "numpy-1.26.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94cc3c222bb9fb5a12e334d0479b97bb2df446fbe622b470928f5284ffca3f8d"}, + {file = "numpy-1.26.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe6b44fb8fcdf7eda4ef4461b97b3f63c466b27ab151bec2366db8b197387841"}, + {file = "numpy-1.26.2.tar.gz", hash = "sha256:f65738447676ab5777f11e6bbbdb8ce11b785e105f690bc45966574816b6d3ea"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "pinecone-client" +version = "2.2.4" +description = "Pinecone client and SDK" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pinecone-client-2.2.4.tar.gz", hash = "sha256:2c1cc1d6648b2be66e944db2ffa59166a37b9164d1135ad525d9cd8b1e298168"}, + {file = "pinecone_client-2.2.4-py3-none-any.whl", hash = "sha256:5bf496c01c2f82f4e5c2dc977cc5062ecd7168b8ed90743b09afcc8c7eb242ec"}, +] + +[package.dependencies] +dnspython = ">=2.0.0" +loguru = ">=0.5.0" +numpy = ">=1.22.0" +python-dateutil = ">=2.5.3" +pyyaml = ">=5.4" +requests = ">=2.19.0" +tqdm = ">=4.64.1" +typing-extensions = ">=3.7.4" +urllib3 = ">=1.21.1" + +[package.extras] +grpc = ["googleapis-common-protos (>=1.53.0)", "grpc-gateway-protoc-gen-openapiv2 (==0.1.0)", "grpcio (>=1.44.0)", "lz4 (>=3.1.3)", "protobuf (>=3.20.0,<3.21.0)"] + +[[package]] +name = "platformdirs" +version = "4.0.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-4.0.0-py3-none-any.whl", hash = "sha256:118c954d7e949b35437270383a3f2531e99dd93cf7ce4dc8340d3356d30f173b"}, + {file = "platformdirs-4.0.0.tar.gz", hash = "sha256:cb633b2bcf10c51af60beb0ab06d2f1d69064b43abf4c185ca6b28865f3f9731"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.12.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46"}, + {file = "rpds_py-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e"}, + {file = "rpds_py-0.12.0-cp310-none-win32.whl", hash = "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29"}, + {file = "rpds_py-0.12.0-cp310-none-win_amd64.whl", hash = "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c"}, + {file = "rpds_py-0.12.0-cp311-none-win32.whl", hash = "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10"}, + {file = "rpds_py-0.12.0-cp311-none-win_amd64.whl", hash = "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b"}, + {file = "rpds_py-0.12.0-cp312-none-win32.whl", hash = "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978"}, + {file = "rpds_py-0.12.0-cp312-none-win_amd64.whl", hash = "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c"}, + {file = "rpds_py-0.12.0-cp38-none-win32.whl", hash = "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595"}, + {file = "rpds_py-0.12.0-cp38-none-win_amd64.whl", hash = "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0"}, + {file = "rpds_py-0.12.0-cp39-none-win32.whl", hash = "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31"}, + {file = "rpds_py-0.12.0-cp39-none-win_amd64.whl", hash = "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4"}, + {file = "rpds_py-0.12.0.tar.gz", hash = "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tqdm" +version = "4.66.1" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.1-py3-none-any.whl", hash = "sha256:d302b3c5b53d47bce91fea46679d9c3c6508cf6332229aa1e7d8653723793386"}, + {file = "tqdm-4.66.1.tar.gz", hash = "sha256:d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2dcb69c7"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "urllib3" +version = "2.1.0" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.1.0-py3-none-any.whl", hash = "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3"}, + {file = "urllib3-2.1.0.tar.gz", hash = "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "win32-setctime" +version = "1.1.0" +description = "A small Python utility to set file creation time on Windows" +optional = false +python-versions = ">=3.5" +files = [ + {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, + {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, +] + +[package.extras] +dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[[package]] +name = "zipp" +version = "3.17.0" +description = "Backport of pathlib-compatible object wrapper for zip files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "f2effd78649864e8418f376033eea58e2f16a7c5785d87ddc2706de32120e9b5" diff --git a/pinecone/provider/__init__.py b/pinecone/provider/__init__.py new file mode 100644 index 000000000..f509f4c3d --- /dev/null +++ b/pinecone/provider/__init__.py @@ -0,0 +1,30 @@ +import logging +import os + +import connexion +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message): + self.message = message + + def __str__(self): + return self.message + + +def create_app(): + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + + return flask_app diff --git a/pinecone/provider/app.py b/pinecone/provider/app.py new file mode 100644 index 000000000..fbff1da09 --- /dev/null +++ b/pinecone/provider/app.py @@ -0,0 +1,29 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Pinecone config error: {error}") + abort(502, f"Pinecone config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/pinecone/provider/client.py b/pinecone/provider/client.py new file mode 100644 index 000000000..5178055fe --- /dev/null +++ b/pinecone/provider/client.py @@ -0,0 +1,42 @@ +import logging + +import cohere +import pinecone + +logger = logging.getLogger(__name__) + +cohere_client = None +pinecone_client = None + + +class PineconeClient: + def __init__(self, api_key, environment, index): + self.client = pinecone.init(api_key=api_key, environment=environment) + self.index = pinecone.Index(index) + + def query(self, query, top_k=100, include_metadata=True): + return self.index.query(query, top_k=top_k, include_metadata=include_metadata) + + +class CohereClient: + def __init__(self, cohere_api_key): + self.client = cohere.Client(cohere_api_key) + + def get_embeddings(self, query, model, input_type="search_query"): + return self.client.embed([query], model=model, input_type=input_type).embeddings + + +def get_pinecone_client(api_key, environment, index): + global pinecone_client + if not pinecone_client: + pinecone_client = PineconeClient(api_key, environment, index) + + return pinecone_client + + +def get_cohere_client(api_key): + global cohere_client + if not cohere_client: + cohere_client = CohereClient(api_key) + + return cohere_client diff --git a/pinecone/provider/provider.py b/pinecone/provider/provider.py new file mode 100644 index 000000000..e9575b8af --- /dev/null +++ b/pinecone/provider/provider.py @@ -0,0 +1,65 @@ +import logging + +from flask import current_app as app + +from .client import get_cohere_client, get_pinecone_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings={}): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + assert (api_key := app.config.get("API_KEY")), "PINECONE_API_KEY must be set" + assert ( + environment := app.config.get("ENVIRONMENT") + ), "PINECONE_ENVIRONMENT must be set" + assert (index := app.config.get("INDEX")), "PINECONE_INDEX must be set" + assert ( + cohere_api_key := app.config.get("COHERE_API_KEY") + ), "PINECONE_COHERE_API_KEY must be set" + assert ( + cohere_embed_model := app.config.get("COHERE_EMBED_MODEL") + ), "PINECONE_COHERE_EMBED_MODEL must be set" + + cohere_client = get_cohere_client(cohere_api_key) + xq = cohere_client.get_embeddings(query, cohere_embed_model) + + pinecone_client = get_pinecone_client(api_key, environment, index) + + search_limit = app.config.get("SEARCH_LIMIT", 100) + pinecone_results = pinecone_client.query(xq, search_limit) + + results = [ + {"id": match["id"], **match["metadata"]} + for match in pinecone_results["matches"] + ] + + mapping = app.config.get("FIELDS_MAPPING", {}) + return serialize_results(results, mapping) diff --git a/pinecone/pyproject.toml b/pinecone/pyproject.toml new file mode 100644 index 000000000..0c9c8b6b9 --- /dev/null +++ b/pinecone/pyproject.toml @@ -0,0 +1,21 @@ +[tool.poetry] +name = "pinecone-search" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +pinecone-client = "^2.2.4" +python-dotenv = "^1.0.0" +black = "^23.11.0" +cohere = "^4.34" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/postgres/.env-template b/postgres/.env-template new file mode 100644 index 000000000..45a7ed47c --- /dev/null +++ b/postgres/.env-template @@ -0,0 +1,5 @@ +POSTGRES_DSN=postgresql://postgres:password@localhost:5432/bbq_db +POSTGRES_TABLE_NAME=bbq +POSTGRES_FTS_COLUMN=search_vector +POSTGRES_FTS_LANG=english +POSTGRES_CONNECTOR_API_KEY= diff --git a/postgres/README.md b/postgres/README.md new file mode 100644 index 000000000..0a1df1648 --- /dev/null +++ b/postgres/README.md @@ -0,0 +1,52 @@ +# Postgres Quick Start Connector + +This package is a utility for connecting Cohere to a postgres database. It supports PostgreSQL server versions 7.4 and above. + +## Limitations + +Currently this connector is configured to only search within a single table of your PostgreSQL cluster, using a single column for full-text search. This column should be indexed to speed up query times. + +## Configuration + +To protect this connector from abuse, the `POSTGRES_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Start your Postgres server and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +After running the `data-loader`, the postgres instance will continue to run in the background. If you need to start it again later, postgres can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/postgres/dev/load_data.py b/postgres/dev/load_data.py new file mode 100644 index 000000000..1e5395d67 --- /dev/null +++ b/postgres/dev/load_data.py @@ -0,0 +1,82 @@ +import csv + +import psycopg2 + +# PG_HOST = "pg" +# PG_PORT = "5432" +# PG_DATABASE = "bbq_db" +# PG_USER = "postgres" +# PG_PASS = "password" +PG_DSN = "postgresql://postgres:password@pg:5432/bbq_db" + + +def create_bbq_table(): + conn = psycopg2.connect(PG_DSN) + cursor = conn.cursor() + + drop_table_query = """ + DROP TABLE IF EXISTS bbq + """ + cursor.execute(drop_table_query) + conn.commit() + + create_table_query = """ + CREATE TABLE bbq ( + id SERIAL PRIMARY KEY, + a_id VARCHAR, + brand VARCHAR, + color VARCHAR, + country VARCHAR, + description VARCHAR, + features TEXT, + name VARCHAR, + search_vector TSVECTOR GENERATED ALWAYS AS ( + to_tsvector('english', brand || ' ' || color || ' ' || description || ' ' || features || ' ' || a_id || ' ' || name) + ) STORED + ) + """ + cursor.execute(create_table_query) + conn.commit() + + create_index_query = """ + CREATE INDEX idx_bbq_search_vector ON bbq USING gin(search_vector) + """ + cursor.execute(create_index_query) + conn.commit() + + cursor.close() + conn.close() + + +def load_data(): + conn = psycopg2.connect(PG_DSN) + cursor = conn.cursor() + + with open("/bbq.csv", "r") as csv_file: + reader = csv.DictReader(csv_file) + for row in reader: + insert_query = """ + INSERT INTO bbq (a_id, brand, color, country, description, features, name) + VALUES (%s, %s, %s, %s, %s, %s, %s) + """ + cursor.execute( + insert_query, + ( + row["ID"], + row["Brand"], + row["Color"], + row["Country"], + row["Description"], + row["Features"], + row["Name"], + ), + ) + conn.commit() + + cursor.close() + conn.close() + + +if __name__ == "__main__": + create_bbq_table() + load_data() diff --git a/postgres/docker-compose.yml b/postgres/docker-compose.yml new file mode 100644 index 000000000..0c8e9c0b1 --- /dev/null +++ b/postgres/docker-compose.yml @@ -0,0 +1,41 @@ +version: "3.8" +services: + postgres: + image: postgres:15.3 + container_name: postgres + restart: unless-stopped + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: password + POSTGRES_DB: bbq_db + ports: + - 5432:5432 + volumes: + - ./dev/data:/var/lib/postgresql/data + command: ["postgres", "-c", "shared_preload_libraries=pg_trgm"] + healthcheck: + test: ["CMD-SHELL", "pg_isready", "-d", "bbq_db", "-u", "postgres"] + interval: 10s + timeout: 5s + retries: 5 + networks: + - pg-network + + data-loader: + image: python:3.9 + container_name: data-loader + depends_on: + postgres: + condition: service_healthy + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/load_data.py + command: sh -c "pip install psycopg2 && python /load_data.py" + profiles: + - tools + networks: + - pg-network + +networks: + pg-network: + driver: bridge diff --git a/postgres/poetry.lock b/postgres/poetry.lock new file mode 100644 index 000000000..cf6221308 --- /dev/null +++ b/postgres/poetry.lock @@ -0,0 +1,585 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "psycopg2" +version = "2.9.6" +description = "psycopg2 - Python-PostgreSQL Database Adapter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "psycopg2-2.9.6-cp310-cp310-win32.whl", hash = "sha256:f7a7a5ee78ba7dc74265ba69e010ae89dae635eea0e97b055fb641a01a31d2b1"}, + {file = "psycopg2-2.9.6-cp310-cp310-win_amd64.whl", hash = "sha256:f75001a1cbbe523e00b0ef896a5a1ada2da93ccd752b7636db5a99bc57c44494"}, + {file = "psycopg2-2.9.6-cp311-cp311-win32.whl", hash = "sha256:53f4ad0a3988f983e9b49a5d9765d663bbe84f508ed655affdb810af9d0972ad"}, + {file = "psycopg2-2.9.6-cp311-cp311-win_amd64.whl", hash = "sha256:b81fcb9ecfc584f661b71c889edeae70bae30d3ef74fa0ca388ecda50b1222b7"}, + {file = "psycopg2-2.9.6-cp36-cp36m-win32.whl", hash = "sha256:11aca705ec888e4f4cea97289a0bf0f22a067a32614f6ef64fcf7b8bfbc53744"}, + {file = "psycopg2-2.9.6-cp36-cp36m-win_amd64.whl", hash = "sha256:36c941a767341d11549c0fbdbb2bf5be2eda4caf87f65dfcd7d146828bd27f39"}, + {file = "psycopg2-2.9.6-cp37-cp37m-win32.whl", hash = "sha256:869776630c04f335d4124f120b7fb377fe44b0a7645ab3c34b4ba42516951889"}, + {file = "psycopg2-2.9.6-cp37-cp37m-win_amd64.whl", hash = "sha256:a8ad4a47f42aa6aec8d061fdae21eaed8d864d4bb0f0cade5ad32ca16fcd6258"}, + {file = "psycopg2-2.9.6-cp38-cp38-win32.whl", hash = "sha256:2362ee4d07ac85ff0ad93e22c693d0f37ff63e28f0615a16b6635a645f4b9214"}, + {file = "psycopg2-2.9.6-cp38-cp38-win_amd64.whl", hash = "sha256:d24ead3716a7d093b90b27b3d73459fe8cd90fd7065cf43b3c40966221d8c394"}, + {file = "psycopg2-2.9.6-cp39-cp39-win32.whl", hash = "sha256:1861a53a6a0fd248e42ea37c957d36950da00266378746588eab4f4b5649e95f"}, + {file = "psycopg2-2.9.6-cp39-cp39-win_amd64.whl", hash = "sha256:ded2faa2e6dfb430af7713d87ab4abbfc764d8d7fb73eafe96a24155f906ebf5"}, + {file = "psycopg2-2.9.6.tar.gz", hash = "sha256:f15158418fd826831b28585e2ab48ed8df2d0d98f502a2b4fe619e7d5ca29011"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "7583ae10f3065cf14e86ab9b82d567b1a840e2cc2a41ffe7ef662a3f124419c5" diff --git a/postgres/provider/__init__.py b/postgres/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/postgres/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/postgres/provider/app.py b/postgres/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/postgres/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/postgres/provider/provider.py b/postgres/provider/provider.py new file mode 100644 index 000000000..c79cc967a --- /dev/null +++ b/postgres/provider/provider.py @@ -0,0 +1,30 @@ +import logging + +import psycopg2 +import psycopg2.extras +from flask import current_app as app + +logger = logging.getLogger(__name__) +pg_connection = None + + +def search(query): + global pg_connection + + if pg_connection is None: + pg_connection = psycopg2.connect(app.config["DSN"]) + + cursor = pg_connection.cursor(cursor_factory=psycopg2.extras.RealDictCursor) + + search_query = ( + "SELECT * " + f'FROM {app.config["TABLE_NAME"]} ' + f'WHERE {app.config["FTS_COLUMN"]} @@ to_tsquery(\'{app.config["FTS_LANG"]}\', %s)' + ) + + query_and = query.replace(" ", " & ") + cursor.execute(search_query, (query_and,)) + response = cursor.fetchall() + cursor.close() + + return response diff --git a/postgres/pyproject.toml b/postgres/pyproject.toml new file mode 100644 index 000000000..80a8e3d36 --- /dev/null +++ b/postgres/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "postgres" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +psycopg2 = "^2.9.6" +gunicorn = "^20.1.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/qdrant/.env-template b/qdrant/.env-template new file mode 100644 index 000000000..dc07703d5 --- /dev/null +++ b/qdrant/.env-template @@ -0,0 +1,6 @@ +QDRANT_CLUSTER_HOST=localhost +QDRANT_CLUSTER_PORT=6333 +QDRANT_COLLECTION=bbq +QDRANT_COHERE_APIKEY= +QDRANT_COHERE_EMBED_MODEL=embed-english-light-v2.0 +QDRANT_CONNECTOR_API_KEY= diff --git a/qdrant/README.md b/qdrant/README.md new file mode 100644 index 000000000..9bd811869 --- /dev/null +++ b/qdrant/README.md @@ -0,0 +1,56 @@ +# Qdrant Quick Start Connector + +Connects Cohere to a Qdrant database. + +It relies on the `qdrant-client` package for managing establishing the connection and performing vector searches. This implementation also uses Cohere's +embedding API to generate search vectors. + +## Limitations + +The Qdrant connector performs a vector search of the DB by embedding the search query with Cohere's embedding API. + +## Configuration + +This connector requires that an environment variables `QDRANT_COHERE_APIKEY` and `QDRANT_CONNECTOR_API_KEY` be set in order to run. This environment variable can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the other environment variable that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Start the test Qdrant cluster and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +After running the `data-loader`, the Qdrant container will continue to run in the background. If you need to start it again later, the Qdrant can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Finally, start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/qdrant/dev/bbq_embeddings.json b/qdrant/dev/bbq_embeddings.json new file mode 100644 index 000000000..ec01f5e0a --- /dev/null +++ b/qdrant/dev/bbq_embeddings.json @@ -0,0 +1 @@ +{"B08Z7K4VZ9": {"id": "B08Z7K4VZ9", "original": "Brand: Royal Gourmet\nName: Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver\nDescription: \nFeatures: High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance.\nSpacious Cooking Area: Consists of primary cooking area \u2013 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space \u2013 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering.\nSear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups.\nGreat Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time.\nHassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.\n", "embedding": [-1.4560547, 0.49072266, 1.4677734, 0.38012695, 0.048339844, 1.8447266, 0.61621094, -1.40625, -1.2666016, 1.0966797, 1.3369141, -1.1396484, -0.24719238, -2.6347656, 0.77978516, -0.06112671, 0.97314453, 0.7861328, 1.1435547, -0.39819336, 0.6015625, 1.5009766, 3.5410156, 0.16186523, 0.28051758, 2.1074219, 2.7382812, -3.9375, -0.071899414, -0.7714844, 2.7636719, 0.1809082, 0.3383789, 2.0058594, -3.1191406, -1.8769531, -2.0683594, 0.42578125, -2.7832031, 1.1279297, 0.7519531, -1.4482422, 0.54003906, 1.4824219, -3.0820312, -0.32421875, -0.13122559, -0.023834229, -2.0390625, 0.028366089, 0.7949219, 1.2373047, -1.1464844, 0.7470703, -0.39233398, 2.0097656, 1.9140625, -1.0664062, 0.9814453, 0.113708496, 3.2695312, -0.6274414, -2.5585938, -0.58203125, -1.1308594, -0.99853516, -0.24169922, 0.15808105, 0.14672852, -0.8432617, 2.2050781, -0.5449219, -1.0019531, 0.68652344, -0.29736328, -1.0068359, -1.5986328, 2.5976562, 0.79296875, -0.16418457, -3.0625, 1.9433594, 1.0605469, -2.59375, -0.5756836, 0.95410156, -0.24780273, -1.4238281, 1.3857422, 1.2958984, -0.00983429, 2.8183594, -3.1835938, -3.6542969, 2.5703125, -1.5888672, 2.0351562, 1.7324219, 0.21740723, 1.1015625, -0.34960938, -1.3945312, -2.6582031, -1.0107422, -0.56689453, -2.3203125, 1.3642578, 0.6118164, -3.7304688, -2.0644531, -1.75, 0.7661133, 1.1542969, -0.31518555, 0.99316406, -0.022247314, -0.2298584, 3.2109375, 1.5566406, 0.6357422, 2.0878906, -0.9399414, 1.2773438, -1.5117188, 0.042388916, 1.3417969, -1.5, 2.640625, 6.21875, -2.3691406, -1.3769531, -1.8994141, 2.6152344, -0.8305664, -0.5488281, -1.8271484, -2.203125, -0.98535156, -3.5097656, 0.56152344, -2.3066406, 1.5634766, 1.3779297, -0.11004639, -3.1074219, -0.44750977, -0.5307617, 0.91064453, -0.28222656, -0.6411133, -0.58154297, -1.4453125, 2.1835938, -3.3496094, 1.9169922, -1.2363281, -0.7963867, -1.5341797, 3.2753906, 0.9194336, 1.1328125, -2.3359375, -0.7089844, 1.9082031, -1.5058594, -0.55566406, -1.1318359, 3.0800781, 0.82714844, 1.1298828, 0.27783203, -1.4707031, 0.2770996, -0.28100586, 0.28149414, -1.1806641, -0.9838867, 2.0585938, 1.2363281, -0.49414062, -1.4101562, -3.8632812, -0.46923828, 1.0615234, 1.3613281, -1.0048828, 1.3613281, 1.3085938, 1.0751953, -1.0693359, 1.0683594, -0.060699463, 0.72314453, 0.43115234, -0.39868164, -0.41015625, -0.8935547, -1.3935547, -0.6591797, -0.03149414, -0.1538086, -0.17248535, -0.053344727, 1.1513672, -3.1621094, -4.6054688, -0.13232422, -3.984375, 1.5439453, 0.9370117, 2.3691406, -2.2304688, 0.18664551, -1.6640625, -0.035095215, -2.3671875, 2.2675781, -1.171875, 2.1972656, 1.7880859, -0.3112793, 0.52685547, 1.6787109, 1.0712891, 1.0078125, 0.9277344, 0.20874023, 1.6347656, -2.0253906, -0.99609375, 2.4257812, -0.064697266, 0.15148926, 1.34375, -1.0185547, 1.6992188, -1.2451172, -1.9306641, -0.35986328, -0.48486328, -0.52685547, -1.2294922, -0.64404297, -1.2304688, 0.5019531, 0.78125, -1.8076172, 1.9746094, 0.7758789, 0.91259766, -0.40454102, 1.5341797, 0.6044922, 0.09112549, -0.30297852, -0.33666992, -1.2314453, 0.7324219, -0.97265625, -2.2890625, 2.4179688, -1.1865234, -0.75390625, -0.58935547, 0.0848999, -2.2695312, 3.1796875, 1.0644531, -2.171875, -1.5205078, -0.28759766, -0.69384766, 2.1542969, -1.2519531, 0.9658203, 2.6445312, -1.3476562, 3.4589844, -1.6210938, 1.4677734, -0.096069336, -1.6523438, 1.8359375, -2.3164062, -0.22424316, 0.8461914, 1.1757812, -0.77734375, 0.050811768, 0.66845703, 4.0742188, -0.98095703, -3.2695312, 2.578125, -1.1347656, -1.7099609, 2.4726562, -0.7348633, 0.09710693, 0.6015625, 1.8789062, 0.07171631, 1.7841797, 0.19335938, -1.3916016, -1.96875, 0.50683594, -1.3154297, -1.4580078, 0.7783203, 0.07196045, -0.96972656, -2.1191406, 0.43823242, -1.6289062, -0.66503906, 3.234375, -2.3984375, 1.1943359, 0.5522461, 1.6552734, 1.4960938, -1.6582031, -1.5800781, -0.13562012, 0.47045898, -1.7070312, -0.61376953, -0.00894165, 0.122802734, 0.19396973, -0.4248047, -0.5527344, -1.4345703, -2.609375, -0.5263672, -4.1289062, -2.5097656, -0.5317383, -2.0039062, -1.1757812, 0.71435547, -3.5, -0.43701172, -0.31958008, -4.1367188, -1.640625, -2.140625, -1.2177734, 0.03643799, 0.27124023, 0.10180664, 0.082214355, -2.6992188, 0.49047852, -1.2773438, -1.2675781, 0.5205078, 0.30371094, -0.59375, -0.30371094, -1.4501953, -0.72314453, 1.9824219, 0.8286133, -1.140625, -1.3154297, -3.2519531, 0.61816406, -1.9316406, 0.11706543, -1.0195312, 1.4003906, -2.5878906, -1.5078125, -0.8105469, -0.5996094, 3.5820312, -0.3388672, 1.7617188, 0.35546875, 1.328125, 1.1708984, 0.4958496, -2.0019531, -1.0410156, 1.3193359, -3.3378906, -3.2597656, -3.234375, 0.41235352, -0.46069336, -0.18933105, -0.4272461, 2.5214844, -1.2304688, 0.89941406, -0.9003906, -0.8720703, 0.45336914, 1.4765625, -0.73291016, -1.0058594, -2.2617188, -0.7734375, -0.9682617, -0.69628906, 0.09442139, 2.6855469, -1.8271484, 1.3730469, 0.74316406, -0.060638428, 0.6748047, -1.1972656, -1.6777344, 3.6132812, 0.8144531, -1.9980469, 2.7617188, -1.4130859, -3.1445312, -0.9082031, 0.19335938, 2.5332031, 1.5078125, 3.046875, 0.99853516, 1.6962891, 0.62060547, 1.9570312, 0.84228516, -0.0625, -0.5722656, 2.8320312, -0.9326172, -2.3652344, 0.9609375, 2.6992188, -1.5068359, -1.2294922, 2.8691406, 1.7724609, 3.6367188, 1.6318359, 0.9897461, 0.49047852, -1.3613281, 2.2792969, 1.5654297, 0.7548828, -0.01789856, -1.0839844, 1.0927734, -2.2226562, 1.1738281, 2.6015625, -0.3244629, 2.265625, 1.2119141, 0.23168945, -0.44848633, 0.28076172, 1.6142578, 2.6757812, 0.85595703, 1.7177734, -0.27001953, -0.1149292, -0.2310791, -1.3652344, 0.34521484, -2.9980469, -0.06359863, 1.7529297, -0.46850586, 1.09375, 0.8129883, 1.0263672, 0.35327148, 0.14624023, 0.01651001, -1.5742188, -0.2052002, 1.2226562, 0.15979004, 0.421875, -2.203125, 1.2939453, -1.4111328, -1.1337891, 0.02532959, 3.7578125, -2.2324219, -0.9741211, 2.1796875, -0.12817383, -1.0263672, 1.5058594, 0.35009766, -1.5517578, 1.1816406, -2.4863281, 0.82177734, 0.24816895, -1.5537109, -0.010726929, -1.1318359, -0.027755737, 0.35058594, 0.96875, 0.26513672, 1.7304688, -0.9169922, 0.027069092, -3.9082031, 0.08154297, -0.077819824, -1.6210938, -0.8652344, 2.5390625, 0.9321289, 1.1474609, -1.2431641, 3.1386719, -0.070739746, -0.69140625, 1.7353516, -3.7753906, -2.015625, -3.7832031, -4.1835938, 0.65771484, -1.2167969, -1.6269531, 1.8681641, 0.5629883, -0.14160156, 1.4980469, -0.3100586, -1.4150391, -0.81591797, -1.3408203, -0.25805664, -0.3659668, -0.9682617, 0.6176758, -0.14648438, -1.8222656, -2.7246094, -0.30371094, 0.0149002075, 1.5, 1.9013672, -2.6757812, 1.9628906, -2.5117188, 0.14428711, -0.47631836, -1.5195312, 1.9599609, -1.8037109, -0.11999512, -2.9414062, 1.3203125, 0.38452148, -0.6411133, 1.8769531, 1.5859375, 0.09802246, -2.7714844, -1.9541016, 1.3613281, 3.6855469, -0.5830078, -1.953125, -1.6865234, 1.2011719, 0.21289062, -2.15625, -0.09173584, -1.5546875, -1.3427734, -0.55126953, 3.0917969, 1.6806641, 1.4072266, 1.0136719, -2.1484375, -0.32617188, 0.20788574, -1.8095703, -1.6777344, -1.0927734, 0.6958008, 0.24255371, -0.85791016, -1.5234375, -0.19104004, -1.8710938, -0.33398438, -3.0214844, 2.9082031, 2.3417969, 0.93115234, 2.4394531, -1.3984375, 0.21557617, 0.4819336, 0.32202148, -1.1474609, 1.5107422, 0.9423828, -0.53759766, 1.3339844, -0.0602417, -2.0332031, 0.2220459, 2.4140625, -1.7265625, -0.11456299, -0.11114502, 0.47973633, -0.5493164, -0.08251953, 2.0273438, -0.82470703, 2.9726562, -0.13183594, -0.5234375, 0.70703125, 0.26904297, -1.6240234, 0.7675781, -0.074401855, 0.0647583, 0.013809204, 1.6816406, 1.4775391, -0.37719727, -0.080322266, -1.265625, 2.9550781, 0.16369629, 0.8833008, -0.5991211, 1.5683594, -0.23486328, -1.9804688, 1.4990234, 2.7480469, -0.37304688, 3.5976562, 1.8818359, -2.8710938, 1.7324219, 0.37304688, -2.2246094, -0.1472168, 0.60302734, 0.58203125, 0.6567383, 0.7138672, -2.9589844, -1.2685547, 1.7353516, -0.58154297, 0.6621094, -0.14660645, -1.9882812, 0.7182617, -0.5415039, -0.19226074, -0.84765625, 0.9550781, -1.5566406, 0.19580078, 0.55859375, -1.1630859, 0.8847656, 2.21875, -0.30395508, -1.4814453, 3.4589844, -0.09991455, 1.7128906, -0.19604492, -0.07952881, -2.1132812, -0.05606079, 4.0859375, 0.6503906, 1.8916016, 1.0908203, 1.4433594, -2.2753906, 0.8623047, -2.5332031, 4.1328125, -1.0546875, -1.0488281, 2.96875, -4.375, 0.5317383, -2.1425781, 1.9316406, -0.71484375, 1.6259766, 2.0761719, -0.4633789, 0.8046875, 1.0283203, -2.2871094, -3.5058594, -1.6181641, 1.1533203, 0.22814941, -0.3059082, 0.97265625, -1.6445312, 1.0322266, 0.7841797, -0.6826172, -3.0644531, -0.014419556, -0.6503906, -1.2587891, -2.046875, 0.4404297, -0.23425293, 2.3730469, 0.63183594, -0.19384766, 1.2578125, -3.9199219, -0.71728516, 0.3425293, -1.2402344, 0.37451172, 2.8242188, 0.4921875, 0.31640625, -0.03866577, -0.10925293, -2.1191406, 1.9345703, -1.5234375, -0.10437012, 1.1884766, -0.91064453, 0.013206482, -1.2607422, -1.3740234, 0.05718994, -0.6176758, 0.8178711, 1.9052734, -0.39233398, -0.08258057, 1.7783203, -0.75341797, -1.578125, 0.50390625, -0.3461914, -0.21191406, 1.3300781, -1.7724609, -0.9238281, -1.5234375, -1.8251953, -0.87353516, -2.5683594, 0.63671875, -1.4990234, 0.6713867, 1.0410156, -0.20361328, 0.26245117, 0.62841797, -0.9902344, -0.10394287, 0.46923828, -1.1308594, 2.8085938, 1.9765625, -1.5166016, -0.17163086, -1.0439453, 0.82714844, 2.5351562, 0.89941406, -0.45751953, 0.17126465, 1.0693359, -0.1538086, -0.7319336, 0.51416016, 1.5175781, -0.61035156, -1.6757812, 1.6728516, 3.9902344, 0.31396484, 1.3164062, 0.6152344, 0.74609375, 0.31298828, 5.1171875, -0.4260254, -1.8554688, 1.3359375, -2.7050781, 1.9160156, 0.70751953, -0.97998047, -0.21972656, -1.6005859, -1.9277344, -2.2167969, 0.019088745, -2.6347656, 1.4912109, 2.0488281, -1.3320312, -0.52685547, 1.6201172, 0.9194336, 1.1152344, 2.3691406, 0.8955078, 0.1907959, 1.2285156, -0.87890625, -0.6621094, 1.1914062, -2.1015625, 1.9345703, 2.84375, -1.3740234, -1.3535156, 3.4707031, 0.02029419, 1.5751953, 1.9560547, 0.38598633, 1.4042969, 2.1308594, 2.9902344, 0.28930664, 1.6416016, 0.7026367, -0.95703125, 1.2607422, 1.3896484, 3.0039062, 0.3395996, -0.032348633, 2.1035156, -0.9370117, -1.6513672, 1.0751953, 0.6953125, 0.99609375, -2.2851562, 1.6445312, 0.040985107, 0.9482422, -1.7695312, -1.1357422, -0.47998047, -1.2675781, -0.94091797, 0.75878906, 3.6308594, -1.6494141, 1.0410156, -0.58740234, -0.7026367, 2.0351562, -4.4179688, 1.7705078, 2.0898438, 0.0725708, 0.8232422, -0.02015686, 0.77197266, 0.39672852, 0.6425781, 1.3212891, 1.1484375, 1.3427734, 0.6430664, -1.8125, 0.92626953, 0.60302734, 3.0214844, -0.080444336, -0.061431885, 3.71875, -2.7285156, -2.5546875, -4.2226562, 4.1328125, 2.1875, 0.38378906, 2.1191406, -1.7128906, 3.0527344, -0.08648682, 0.33081055, -1.7324219, 0.93847656, 0.84814453, -2.5351562, -2.0332031, 1.703125, -0.17834473, 2.1738281, 1.3974609, -1.0351562, 1.2080078, 0.15136719, 0.6430664, 2.1542969, 2.6074219, -0.15686035, 0.64208984, 0.2631836, 1.546875, -0.29370117, -1.3359375, -3.4941406, 2.8671875, 1.0292969, -0.31884766, 0.65478516, -0.25024414, -0.7050781, -0.6088867, 0.10144043, 0.62939453, -2.8886719, -1.6933594, 0.33569336, 0.2841797, -1.2890625, -0.40942383, 2.7597656, 1.0107422, -2.03125, 0.16223145, 1.7275391, -1.6083984, 1.4863281, 0.67578125, 0.1821289, 0.49121094, -1.3662109, 0.80615234, 0.44677734, -1.8681641, 0.097717285, -0.09088135, 1.9199219, -2.1347656, 0.06756592, 0.27319336, 0.012321472, -0.008682251, 0.8178711, -1.2148438, -0.06439209, 3.4179688, -0.8173828, 0.33520508, 3.0019531, -0.41186523, 0.58154297, -2.9570312, -2.3984375, -0.21850586, -0.67626953, 0.28344727, 1.4648438, 2.9472656, 2.8964844, 0.2758789, -1.7451172, -3.78125, 0.3149414, -1.0224609, 1.0537109, -0.9873047, -0.59277344, 0.44848633, 1.7333984, 1.3398438, -0.053497314, -2.8085938, 0.32666016, -1.6845703, 0.08654785, 0.18591309, 2.2226562, -0.46606445, 1.265625, 0.29736328, 2.125, 1.0498047, -1.046875, 1.0527344, 3.1503906, 0.021911621, -1.7353516, 2.96875, -0.73876953, 0.16772461, 0.8144531, 0.1739502, 1.7392578, 0.6459961, 1.6386719, -0.05807495, -3.6972656]}, "B08588PLK8": {"id": "B08588PLK8", "original": "Brand: NOMADIQ\nName: NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel\nDescription: Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

          Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
          Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
          Grilling Surface: 226.3 square inches
          Total BTU: 9,200
          Gas Type: Propane\nFeatures: \u2705 TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual\n\u2705 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant.\n\u2705 ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners.\n\u2705 OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required!\n\u2705 SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.\n", "embedding": [-1.5078125, 1.9589844, 0.81347656, 2.5058594, -0.8251953, 0.9140625, 0.14538574, -0.38989258, -1.3027344, 2.6679688, 0.51220703, -0.47265625, 1.3105469, -2.6464844, 0.6176758, 1.3671875, 2.3359375, 1.1757812, 1.6552734, 0.9189453, 3.2578125, -0.70751953, 0.83447266, -1.3798828, 1.6484375, 0.7104492, 4.0234375, -2.6796875, -0.75146484, -1.8789062, 1.5136719, 0.16796875, -0.71240234, 1.6347656, -1.7060547, -1.2939453, -3.0625, 0.9785156, -1.0712891, -1.4306641, -0.7871094, -0.9399414, 3.0292969, -0.9848633, -2.7910156, -0.21264648, 0.04284668, 2.4082031, 0.5239258, -0.89697266, 1.2207031, -0.9482422, 0.84716797, 1.1582031, -1.4238281, -0.087768555, 0.5336914, -3.421875, 0.8955078, 0.54785156, 1.5576172, -0.5776367, -1.5419922, 0.002948761, -1.3095703, -1.4169922, -0.009231567, -0.68896484, 1.0263672, -1.875, 3.5800781, 0.8779297, -0.71484375, 0.64208984, -0.032226562, -0.27661133, -1.7900391, 0.56103516, 2.5058594, 1.0615234, -1.3398438, 2.4921875, 1.796875, -1.4189453, 1.0234375, 2.0429688, -1.0283203, -0.9404297, 2.0839844, 2.4824219, -1.6259766, 1.8623047, -0.75, -3.7949219, 0.89160156, -0.29956055, -0.29882812, 1.1621094, -0.3972168, 1.8789062, -0.5180664, 0.20300293, -0.54833984, -0.37573242, -1.9355469, -1.5820312, 0.94091797, 0.33813477, -2.0839844, 2.0136719, -0.8232422, -0.42163086, 2.2734375, -0.05908203, 0.5996094, -0.6508789, -0.25732422, 1.3330078, 3.0585938, 1.6220703, 5.390625, 0.6743164, 0.93115234, -0.9868164, 0.6972656, 0.038146973, -1.609375, 2.0410156, 4.1757812, 0.9169922, -0.2697754, 0.96777344, 1.6601562, -0.78564453, -2.2304688, -2.71875, -0.063964844, -3.3691406, -4.5273438, 0.7661133, -2.4707031, -0.78515625, 2.5117188, -1.1162109, -3.8164062, -0.77246094, -0.59228516, 1.6972656, 1.2978516, -1.6035156, -0.40527344, -1.4072266, 0.171875, -0.6958008, 1.6953125, -1.6777344, -1.9970703, -0.5571289, 3.546875, 1.3212891, 2.4648438, -2.1503906, -2.2988281, 0.47802734, 1.8642578, -2.6074219, 0.30419922, 2.6816406, 1.0947266, 0.7036133, 0.2980957, -2.9101562, 1.1640625, 0.08074951, 1.5859375, -2.7207031, -0.37670898, 1.609375, 2.0234375, -2.0429688, -2.7519531, -3.0585938, 1.546875, 0.04827881, 1.3417969, -1.8818359, -0.5058594, 0.9536133, 0.5073242, -1.8974609, -0.016296387, 0.60546875, -0.2668457, 1.2714844, -0.5410156, -1.0527344, -1.5507812, -1.1132812, 0.9760742, 1.7685547, -1.0615234, -0.026504517, -1.5878906, -0.13830566, -2.1464844, -2.7851562, -1.5195312, -1.2539062, 0.33325195, 2.2480469, 1.1894531, -0.65185547, 2.1191406, 0.81347656, 0.41430664, -0.5546875, 1.9287109, 2.1464844, 1.7773438, 2.0585938, -0.0982666, -1.4833984, 0.8535156, 2.5507812, 1.5390625, 2.15625, -0.79345703, -1.1376953, -1.6884766, -1.5292969, 3.4765625, 0.1616211, -0.171875, 0.5834961, -1.4667969, 3.1914062, 1.2070312, -0.578125, -1.3144531, 0.78466797, -1.2890625, -1.8349609, -1.765625, -2.3945312, -2.609375, -1.0966797, -2.0214844, 1.7060547, 3.1367188, 1.390625, -1.4726562, -0.10675049, -0.2626953, -0.2824707, -0.16503906, 1.0009766, 0.52783203, 2.0644531, -1.3095703, -2.1445312, 1.3427734, 1.8398438, 1.2617188, 0.91552734, 1.5341797, -0.9038086, 2.859375, 0.16796875, -2.6738281, -0.26293945, 1.9257812, 1.4453125, 0.6796875, 0.7397461, -0.35229492, -0.9970703, -0.4116211, 1.7822266, -0.3786621, 2.5976562, 1.3027344, -0.63964844, 0.45263672, -3.5039062, -1.7783203, -0.79248047, 0.6977539, -0.08996582, 0.7763672, 1.6201172, 2.9394531, 0.9423828, -2.9648438, 2.65625, -1.3671875, 0.70410156, 2.6132812, -0.3251953, 0.4182129, 0.38720703, 0.6816406, 0.59472656, -2.6757812, 1.8144531, -0.7192383, -1.2929688, -0.9003906, -2.6640625, 2.0136719, -0.5126953, -0.92822266, 0.5649414, -0.8520508, 1.9931641, -0.90478516, -0.4206543, 1.46875, -1.8515625, -0.25952148, 3.1757812, 0.44140625, -0.94433594, -1.5039062, -2.5898438, -0.94140625, 0.58154297, -0.78759766, 0.20483398, -0.0024642944, -0.43823242, 1.0341797, -0.47021484, 1.9394531, -3.21875, -1.7539062, -1.5771484, -2.6542969, -2.1289062, 1.6289062, -2.3574219, -1.4150391, 1.4248047, -1.5195312, 0.30371094, -0.3791504, -2.0820312, -0.7739258, 0.69677734, -0.72265625, 0.028701782, 0.25854492, 0.1586914, 2.0546875, -4.890625, -1.0537109, 1.2080078, -0.32739258, 0.7006836, -2.1230469, 1.6357422, -1.7070312, -0.5834961, 0.3791504, 0.4411621, 0.18933105, -1.8554688, 0.42822266, -4, -0.047424316, -2.0761719, 0.3388672, -0.5654297, -0.19042969, -3.6640625, -1.7001953, 0.3166504, -1.3447266, 3.5410156, -1.1494141, 0.5175781, -0.35986328, -0.5600586, 0.88916016, 0.23059082, -3.8105469, -3.6835938, 0.008773804, -2.28125, -2.15625, -3.0625, -0.57373047, 0.9277344, -0.67333984, -0.32861328, 0.8173828, -2.5039062, 2.296875, -1.7890625, 0.16479492, -0.042053223, 1.3652344, 0.9638672, -2.1328125, -1.9150391, -1.0820312, -0.7939453, -0.40551758, -0.81152344, 1.2373047, -0.85595703, 0.9848633, 0.66503906, 0.30371094, -1.0126953, -0.5263672, -4.8125, 1.9375, -0.7001953, -1.8662109, 1.6494141, -0.12561035, -0.60253906, -3.921875, -0.8852539, 3.4511719, 1.2226562, 2.4960938, -0.17858887, 0.36572266, 1.9462891, 1.0136719, -0.24108887, -0.49414062, -0.08081055, 2.5175781, -4.0820312, -0.36206055, 0.044952393, 3.1855469, -2.0273438, -0.38110352, 1.1914062, 0.16186523, 2.3769531, -0.10443115, 0.9458008, 0.32885742, -0.08807373, 0.18798828, 0.8457031, -0.73779297, 0.43554688, 0.42382812, -0.6176758, -1.1396484, 1.609375, -0.5073242, 0.51708984, 1.6142578, 2.7890625, 0.32202148, -3.265625, 0.8691406, -0.45214844, 0.5239258, -0.62109375, 3.90625, -0.7739258, -0.47998047, -0.5546875, -0.67578125, 0.9589844, 0.1373291, -0.8691406, 2.3457031, 2.7109375, 0.08508301, -0.4741211, 1.4550781, 0.21826172, 0.059936523, 1.4082031, -0.84375, -1.1123047, 1.1796875, -2.9199219, -2.359375, -1.3964844, 1.7753906, -0.94677734, -1.9970703, 1.0517578, 1.5380859, -2.359375, -1.8066406, -1.1894531, 0.30322266, -1.3623047, 3.3085938, -0.08807373, -2.4785156, 0.3955078, 0.5410156, 0.4958496, 2.984375, 0.16992188, -0.5913086, -0.6459961, 0.39624023, -1.2939453, 0.67529297, 1.9394531, 0.7988281, -2.6679688, -0.24133301, -3.0058594, 1.4121094, -1.1503906, -0.29223633, 0.7709961, 0.93847656, 1.9794922, 1.9951172, -1.6484375, 4.5742188, -0.03881836, 0.40966797, 0.40698242, -3.2519531, -0.77734375, -3.6425781, -4.8242188, 3.4394531, -1.0703125, 0.86328125, 2.1621094, -0.55371094, -0.6743164, 0.45239258, 0.7290039, -1.7646484, -1.6621094, -2.2734375, 1.3369141, -2.5175781, 1.1972656, 1.9765625, 0.30273438, -3.1621094, -0.64501953, -0.88378906, 0.31933594, 1.8798828, 1.3398438, -0.42358398, 0.5136719, -2.1835938, 0.5332031, -2.1171875, 0.12426758, 0.890625, -1.3212891, -0.28442383, -2.3457031, 1.6806641, 0.041534424, -1.1337891, 0.31103516, -0.27490234, 1.0097656, -2.0175781, 0.036376953, 1.5039062, 2.8867188, -1.0214844, -2.171875, -2.1113281, -0.1373291, -1.6074219, -0.5029297, -0.099487305, -0.92041016, -3.5585938, 1.28125, 0.9370117, 2.5820312, 3.2871094, -0.48535156, -2.0253906, -0.12060547, -0.29956055, -3.4375, -1.6152344, 0.40795898, -0.71240234, -0.6147461, -1.4648438, -1.6132812, 0.90234375, -1.1923828, -0.66259766, -0.9838867, 1.7275391, 2.3046875, 1.9091797, 2.3515625, 0.19689941, 0.54003906, 2.6933594, -0.9506836, -0.28515625, 1.4394531, -0.5449219, 0.33325195, 1.9453125, 1.1660156, -1.7900391, 1.1728516, 1.5019531, -1.9482422, -0.5551758, -0.26098633, 1.8789062, -2.0917969, -2.359375, -0.52001953, -1.484375, 2.7207031, -2.7890625, 1.6738281, 0.21850586, 0.42504883, -1.3222656, 0.8598633, 1.7021484, 1.9267578, 0.5678711, 0.65478516, 2, -0.8979492, -0.040527344, -0.016174316, 2.8476562, -2.6503906, -0.45703125, 0.56347656, 0.2232666, -0.45385742, -0.07501221, 2.2675781, 1.9658203, -0.13269043, 1.6855469, -0.26953125, -1.8496094, 2.0253906, 0.6689453, -1.3710938, -0.009300232, -0.10095215, -1.140625, 0.82421875, 0.16796875, -3.5996094, -0.50683594, 0.53027344, -1.2304688, 1.2158203, -0.61376953, -1.2001953, -0.11853027, -2.6191406, -1.8759766, -0.8720703, -2.671875, 0.1907959, -2.2832031, -0.2668457, 0.60009766, 2.015625, 1.9726562, -1.7216797, 0.39648438, 2.3867188, 0.36328125, 0.82177734, -0.5595703, -2.8984375, -2.4648438, 0.12670898, 1.7744141, 2.5742188, 2.2265625, -0.13464355, -0.09509277, -2.3046875, -0.8725586, -1.8222656, 2.484375, -1.3310547, -0.5864258, 2.2324219, -0.7314453, 0.28808594, -1.8310547, 1.1835938, 0.29077148, 3.8496094, 2.125, -0.35888672, -1.9033203, -1.453125, -2.7734375, -5.4296875, -0.8154297, 1.8232422, -0.46240234, 0.3203125, 1.1191406, -1.2744141, -1.3828125, -0.47460938, 0.12756348, -1.3417969, -1.0175781, -0.22473145, -1.1582031, -1.1484375, 0.82666016, -1.203125, 0.7885742, 2.5292969, 1.1816406, -0.84472656, -3.1777344, -0.30249023, 1.15625, 0.77978516, -1.3876953, 0.9667969, -1.0664062, -1.703125, 1.0146484, 1.5166016, -2.0410156, 3.3457031, -3.4296875, 0.69628906, -0.38183594, -0.671875, 1.6064453, -0.6435547, -1.0322266, 0.8461914, -2.1679688, 4.2695312, -0.6699219, 0.5883789, 0.75634766, 1.7226562, -1.0351562, 0.3659668, 1.0810547, -1.2402344, 2.0273438, 1.8642578, 0.08709717, -0.5654297, -1.2216797, -2.7890625, 1.1894531, -2.4667969, -0.11114502, -1.6728516, 1.1445312, -0.21459961, 2.1484375, 0.67285156, 0.123168945, -0.29614258, -1.0205078, 1.6972656, 1.6845703, 2.2070312, 2.5605469, -3.0722656, -3.484375, -2.2070312, 1.7744141, -0.34838867, 0.14074707, 0.1973877, -0.18127441, -0.10662842, 0.6455078, -1.2998047, 2.6152344, 3.7636719, 0.9345703, -1.4882812, -0.5126953, 1.8476562, -1.5234375, 0.96533203, 1.3857422, 2.7109375, 0.64453125, 3.609375, -1.2617188, -0.82128906, 0.83935547, 0.24731445, 2.7304688, -2.3808594, -1.9775391, 0.025894165, -1.8505859, -1.2490234, -1.4111328, -1.1044922, -2.0800781, 2.8457031, 1.0292969, -0.5253906, 1.1806641, 3.3925781, -0.06506348, 0.51220703, 1.6494141, 2.3105469, -0.09991455, 1.5380859, -1.5869141, 1.484375, 0.014022827, -0.74560547, 2.2246094, 2.7246094, 0.49243164, -0.42944336, 4.1367188, 2.4199219, 2.1855469, -0.7480469, 2.0917969, 2.8496094, 0.69921875, 2.4082031, 0.6953125, 0.77246094, 2.3496094, -2.6230469, 0.11981201, 3.1347656, 1.6357422, -0.45581055, -2.2363281, 2.4550781, 0.38842773, -1.2519531, -0.9760742, -0.17565918, 0.9399414, -3.703125, 1.4111328, -0.34692383, -0.027374268, -2.3183594, 0.78466797, -1.6699219, -0.35766602, 0.19641113, 0.117492676, 1.9101562, -1.4677734, -0.06518555, 0.5073242, 0.40185547, 2.9023438, -2.859375, 0.31835938, -0.375, -1.5087891, -0.6801758, 2.4296875, 2.4179688, 1.4423828, -0.6611328, 2.1738281, 1.5361328, 0.7441406, 2.9882812, 1.0078125, 0.8588867, -1.1992188, 2.4042969, 1.2080078, -1.4169922, 0.93310547, -1.1083984, -2.6347656, -3.2402344, 1.3964844, 1.5546875, 0.7890625, 0.21923828, -2.8222656, 1.2744141, 0.29370117, 0.7001953, -1.3525391, 0.9169922, -1.7226562, -3.140625, -0.56347656, 1.0087891, 0.49731445, 3.0917969, 1.7832031, -3.6074219, 2.0703125, 2.4179688, 1.3222656, -0.39697266, 0.42895508, -0.87890625, 1.5546875, -1.8369141, 1.9023438, 0.99902344, -1.3964844, -0.36157227, 2.0839844, 1.3378906, 0.35888672, -0.29418945, -0.46044922, -0.22814941, -0.5239258, -0.21008301, -0.24353027, 0.8964844, 0.13842773, -1.0849609, 0.59814453, -1.2392578, 0.04626465, -0.13598633, 2.7246094, -2.5234375, 0.15246582, -0.12536621, -0.17919922, 0.57958984, 0.18164062, -1.3193359, 0.70703125, 0.074645996, 1.0019531, -0.21777344, 0.23120117, -0.08544922, -1.1503906, 1.3496094, 0.017501831, 0.75439453, -1.3740234, -0.12719727, 0.95947266, 1.2392578, -0.15588379, -2.3554688, 1.7294922, -1.2109375, 1.6679688, 4.4453125, 0.06347656, -0.56640625, -1.9140625, -0.5644531, 0.87353516, -1.65625, -0.68066406, -0.69433594, 5.2460938, 1.1132812, 0.11212158, -2.1796875, -3.3574219, -0.2644043, -1.1503906, 2.0332031, -1.3769531, -1.4521484, 1.7958984, 0.33422852, 1.9804688, 0.09661865, -0.85058594, 0.079711914, 2.3867188, 1.6894531, 0.6386719, 0.4885254, 2.2597656, -0.8574219, 0.024978638, 1.4179688, 2.6269531, 0.84277344, 2.09375, 0.08251953, -0.22424316, -3.1894531, -0.47338867, -3.4824219, 1.5839844, 2.4003906, 0.015060425, 2.6367188, -0.38500977, 0.13684082, -1.8496094, -1.7080078]}, "B082HG76CB": {"id": "B082HG76CB", "original": "Brand: MASTER COOK\nName: MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves\nDescription: Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean\nFeatures: \u2764 STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob\n\u2764 FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving\n\u2764 PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming\n\u2764 ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill\n\u2764 MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking\n", "embedding": [-3.5859375, 1.6328125, 1.3515625, 1.5429688, -0.6899414, 1.1533203, 1.1767578, -0.58251953, 0.16125488, 1.0722656, 0.8852539, -1.1513672, 0.86035156, -2.1289062, 1.8134766, 0.59277344, 0.5444336, 0.47729492, 1.8486328, 1.8974609, 1.1357422, -0.4970703, 0.9321289, -1.0458984, 0.90527344, 0.24047852, 1.3779297, -4.71875, 0.2097168, -1.3730469, 2.328125, -0.51708984, -0.49804688, 2.4628906, -3.8613281, -1.1796875, -2.5097656, 1.7304688, -3.046875, 0.045074463, -0.23730469, -1.6650391, 2.5800781, 0.024673462, -1.8779297, 0.5546875, -0.46826172, 1.3173828, -1.5927734, -1.6601562, 1.1054688, 1.953125, 1.0224609, 0.7963867, -0.7495117, 0.47460938, 1.2265625, -1.3466797, 1.7607422, 0.30639648, 1.8076172, -0.98291016, -2.4296875, 0.3293457, -1.9130859, -1.1708984, -0.1217041, 1.0595703, -0.8779297, 0.22790527, 2.0664062, -0.32373047, -1.4003906, 0.008804321, 0.35009766, -2.2832031, -2.2324219, 1.0019531, 1.2929688, 0.02267456, -1.875, 2.3515625, 1.4716797, -1.4785156, -0.5361328, 1.3447266, -1.1865234, -0.953125, 1.0673828, 1.4833984, -0.9638672, 2.2949219, -2.5097656, -1.4394531, 2.7832031, -1.8515625, 0.70214844, 0.578125, 0.53125, 1.3115234, -0.23718262, 0.43896484, -2.3320312, 0.91748047, -2.6835938, -1.4003906, 1.4072266, 0.52197266, -2.8066406, 0.29345703, -0.80126953, 0.55126953, 1.2666016, -0.83447266, 0.74902344, 0.7426758, -1.0839844, 2.5527344, 3.9433594, 2.7089844, 3.7597656, 0.24047852, 0.01033783, -0.8588867, -0.49194336, 1.6953125, -1.5292969, 3.6582031, 4.2148438, -3.0820312, -0.09844971, -3.046875, 2.0058594, 0.8041992, -1.3261719, -1.9707031, -2.4667969, -0.01838684, -5.359375, 1.6650391, -2.15625, 1.3164062, 1.5136719, -0.8652344, -4.0195312, -0.51123047, -0.7573242, 0.8979492, -0.51171875, -1.46875, -0.4958496, -1.7001953, 0.20178223, -2.0820312, 1.625, -2.046875, 0.13317871, -2.1230469, 5.21875, 1.2695312, 0.92333984, -3.2441406, -2.0917969, 1.2314453, 1.4208984, -2.6445312, -1.4287109, 2.6933594, -0.068359375, 1.4257812, -0.43969727, -2.1230469, 0.38012695, 0.33520508, 1.4238281, -1.0830078, 0.2211914, 2.9414062, -0.28735352, -1.1494141, -0.91259766, -2.7363281, 0.63916016, 1.8808594, -0.98828125, -1.4941406, -0.34838867, 0.640625, 0.27197266, -1.0429688, 0.010063171, 0.64208984, 0.21447754, 0.77001953, -1.2451172, -0.9682617, -2.7011719, -1.1318359, -0.50146484, -0.2397461, -0.69189453, -0.97509766, 0.026535034, 0.016235352, -2.2109375, -2.6699219, -0.2944336, -2.0507812, 1.0498047, 1.9121094, 1.0595703, -2.9941406, 1.4863281, -1.8466797, 0.57958984, -1.7236328, 2.25, 1.5009766, 1.1884766, 3.4785156, -0.110839844, -0.78466797, -0.28881836, 2.4277344, -0.66015625, 2.7597656, 1.5429688, 0.29589844, -1.1474609, -0.4206543, 2.0058594, -0.23181152, 0.2006836, 0.37768555, -1.1855469, 1.8398438, 0.8823242, -2.6621094, -0.18530273, -0.23510742, 1.4023438, -2.0332031, -1.3808594, -2.3652344, -0.5214844, 0.11920166, -1.1962891, 1.4785156, 2.5292969, 1.03125, -0.19299316, 0.06274414, -0.28979492, -0.5209961, -0.42285156, 0.63720703, 0.22277832, 0.75390625, -2.5214844, -2.2265625, -0.55322266, 0.93847656, 0.19689941, 0.71191406, 1.8017578, -1.59375, 3.9003906, -0.11608887, -3.4121094, -1.9511719, 1.9121094, 0.10461426, 0.9350586, 0.3100586, 1.8515625, 0.68066406, -1.3642578, 2.9746094, 0.9199219, 1.1923828, 0.0016860962, -1.015625, 2.3789062, -2.3847656, -0.63720703, 1.3759766, 1.2392578, 1.1298828, 0.44458008, 0.77001953, 5.6132812, 0.17565918, -3.1171875, 2.6230469, -1.0830078, 1.3427734, 0.8383789, -0.67822266, -1.4296875, -0.7207031, 1.3769531, 1.4824219, 0.103393555, 2.1445312, -1.6943359, -1.4541016, 0.34716797, -1.1621094, -1.0644531, 0.09918213, -1.4326172, -0.32250977, -2.5488281, 1.0107422, -0.1772461, -1.140625, 3.0351562, -1.9472656, 0.3786621, 0.6796875, 1.1728516, 2.0449219, 0.06854248, -1.6074219, 0.50097656, 0.76123047, 0.5214844, -0.035308838, 0.43041992, -0.79345703, 1.0625, -1.7675781, 2.8535156, -2.2695312, -3.9589844, -0.7001953, -3.1503906, -2.8027344, -0.7626953, -0.7060547, -0.7705078, 0.7792969, -2.7441406, 0.6191406, -0.78759766, -2.765625, -1.5253906, -0.088256836, -1.1328125, 0.6791992, 0.24633789, -0.006134033, -0.76904297, -1.5498047, 0.75390625, 1.234375, -0.8383789, 0.9477539, 0.07293701, -0.48828125, -1.0644531, 0.4921875, -0.02746582, 0.11627197, 0.8779297, -0.9057617, 0.59472656, -4.0859375, -0.9682617, -3.0039062, -0.25927734, -0.68359375, 0.6088867, -2.265625, -1.2177734, -1.2246094, -1.5556641, 3.4355469, -0.5546875, 0.5395508, -0.671875, -0.7910156, 1.6591797, -1.2841797, -2.3144531, -1.8134766, 1.8203125, -1.7324219, -0.29736328, -1.5986328, 0.20141602, -0.8833008, 0.33740234, -1.3017578, 1.9482422, -3.7460938, 1.6298828, -2.0195312, -1.0136719, -0.6586914, 2.8496094, -0.040039062, -1.7929688, -2.59375, -0.6118164, -1.2128906, -1.1083984, -0.7631836, 1.5634766, -1.1230469, 0.44189453, 2.7910156, -1.4179688, 1.421875, -1.703125, -2.6953125, 2.3339844, 1.1708984, -2.8183594, 2.5917969, -0.8544922, -2.4570312, -2.1953125, -1.6142578, 3.0917969, 0.45410156, 2.328125, -0.4555664, 0.8208008, 1.0976562, -0.4416504, -0.06378174, -1.7617188, 0.24890137, 2.8339844, -2.7519531, -1.1103516, 1.7548828, 3.5449219, -1.9472656, -1.1796875, 2.4199219, 2.5976562, 1.4042969, 2.9316406, 2.2109375, 1.5429688, -1.5605469, 2.4667969, 1.3535156, 0.99121094, 0.012557983, -1.2333984, -0.47607422, -0.37182617, 2.7285156, 2.015625, 0.5698242, 2.5996094, 1.4902344, 0.25268555, -3.0996094, 0.9692383, 0.21594238, 2.6464844, 1.2832031, 2.6835938, -1.2392578, -0.1640625, -0.26782227, -0.35839844, 0.3708496, -2.4550781, -0.2397461, 0.8984375, -0.9291992, -0.29638672, 0.042266846, -0.39672852, 0.81103516, -1.6650391, 0.8979492, -1.0576172, -0.60791016, 1.0664062, -0.2770996, -0.10321045, -0.8623047, 1.5810547, -0.69677734, -2.2949219, 0.98291016, 3.34375, 0.55322266, -1.8828125, -0.87353516, 1.0732422, -2.3789062, 3.4003906, -0.7524414, -2.2109375, 0.8955078, -1.4775391, 2.0292969, 1.0283203, -1.7324219, -0.76708984, 1.234375, 0.35668945, -0.37451172, 0.67089844, 2.4238281, 0.69433594, -2.9042969, 0.19250488, -3.8535156, 0.89208984, 0.54003906, -1.4951172, -0.9794922, 3.3300781, 1.703125, 2.4902344, -1.7607422, 3.7851562, -0.27172852, -2.2949219, 1.0214844, -3.5644531, 0.05014038, -3.3886719, -3.8671875, 1.3525391, -0.71240234, -1.0849609, 1.7929688, 0.4555664, 0.11932373, 1.828125, 0.58740234, -4.7734375, -1.5761719, -1.4150391, 0.32177734, -1.9775391, -1.1025391, 0.8383789, 1.7519531, -0.7685547, -1.9980469, 0.09362793, -0.54589844, 2.0976562, 1.7128906, -2.0800781, 1.4443359, -1.7451172, 0.5620117, -0.04724121, -0.2927246, 0.85498047, -1.5029297, 0.41918945, -3.140625, 1.8193359, 1.2070312, -1.1513672, 0.72753906, 1.4765625, -0.10284424, -1.265625, 0.9458008, 1.5908203, 3.1171875, -0.85595703, -2.3671875, -1.0712891, 0.37719727, 1.4101562, -0.5097656, -0.78759766, -1.0136719, -2.3691406, 1.7617188, 1.0771484, 1.2558594, 1.8574219, -0.14807129, -2.125, -0.039978027, 1.9970703, -2.3847656, -0.59228516, 0.0869751, -1.1074219, -1.4794922, 0.16467285, -1.7666016, 1.2646484, -3.2285156, -0.4477539, -3.1699219, 3.8378906, 1.1669922, 2.1621094, 3.0878906, -0.5854492, -1.5166016, 0.05053711, -1.2109375, -0.26611328, 1.3525391, -0.37939453, 0.8208008, 1.5039062, -0.24707031, -1.7617188, -0.98095703, 2.8339844, -2.984375, -1.0498047, -1.2080078, 0.7861328, -0.5366211, -1.2939453, 1.5039062, -1.3203125, 3.7890625, -0.22851562, 0.3894043, 1.2285156, -0.6035156, -1.8232422, 0.35961914, -0.31396484, -0.2770996, 1.6572266, 2.4648438, 1.9511719, -1.7792969, -0.06518555, -0.57958984, 2.1699219, -0.52978516, -0.21484375, -0.01902771, 0.22351074, -1.6572266, -1.5927734, 0.25732422, 2.4199219, -0.5673828, 3.7539062, 1.6015625, -1.1015625, 3.3828125, -0.0158844, -1.3242188, -0.6645508, 0.3791504, -0.42358398, 1.6201172, -0.3244629, -3.7851562, -0.60498047, 2.6464844, -1.6083984, 1.2402344, -0.45361328, -1.6601562, -0.010429382, -3.3300781, -0.81347656, 0.25170898, -0.48779297, 0.0011291504, -0.6557617, 0.86083984, -1.5039062, 1.9394531, 3.359375, -0.98828125, -2.2890625, 2.984375, -0.107421875, 2.2753906, -0.51416016, -1.4248047, -2.7773438, 1.0820312, 3.9023438, 1.0107422, 1.5146484, 1.0078125, 1.1201172, -3.0292969, -0.0021572113, -0.1538086, 3.9003906, -1.2226562, -0.0124435425, 2.6699219, -2.0625, 0.5805664, -3.1054688, 1.9179688, -1.1992188, 3.3085938, 1.7607422, 0.9013672, -0.9770508, 0.26586914, -0.73291016, -4.875, -1.0869141, 1.8662109, 0.2939453, -0.47509766, 0.90234375, -1.4150391, 0.39331055, 1.4492188, 0.5214844, -2.6328125, -0.025360107, -0.6074219, -1.3183594, -1.3105469, 1.4863281, -0.7963867, 0.2277832, 0.43603516, 0.15075684, -0.44189453, -4.9140625, -1.7177734, 1.1337891, -2.6230469, 0.15612793, 0.5161133, -1.0166016, -0.16772461, 2.4980469, -0.17077637, -1.78125, 2.1152344, -1.2861328, -0.24279785, 1.0849609, -0.15014648, 0.08392334, -0.78808594, -0.3881836, 0.35986328, -0.5878906, 0.3293457, -0.2084961, -0.036102295, -0.37573242, 1.5820312, -0.31884766, -0.33740234, -0.21032715, 0.27392578, 1.5341797, 1.3632812, -1.2021484, -0.77441406, -1.9248047, -2.2402344, -0.40576172, -1.5908203, 0.033416748, -1.3457031, 1.2978516, 1.6298828, 0.33374023, -0.6455078, 0.984375, -0.0256958, -0.98291016, 0.43310547, -1.59375, 1.0644531, 0.2064209, -1.0058594, -1.96875, -1.0419922, 1.2216797, 0.5576172, 1.4667969, -1.4003906, 0.29125977, -1.0068359, 1.7128906, 1.1357422, 0.13342285, 3.6972656, 0.70947266, -1.3710938, 1.2636719, 2.4824219, 0.64404297, 0.103881836, 0.59228516, 0.40844727, -0.060424805, 4.9804688, -0.19104004, -2.4199219, 1.7246094, -2.5136719, 0.22937012, -0.6425781, -1.2402344, 0.8208008, -3.1445312, -1.2324219, -3.7675781, -2.015625, -3.8789062, 2.5214844, 0.7084961, -0.46655273, -0.46533203, 3.0566406, 0.7373047, 1.6357422, 2.5683594, 1.3378906, 0.93066406, 1.3691406, -0.6333008, -0.8095703, 2.015625, -3.3476562, 1.9472656, 1.0458984, -0.7109375, -0.515625, 3.1582031, 1.9941406, 2.6503906, 1.0615234, 0.9580078, 3.5820312, 1.4921875, 3.7441406, 0.68896484, 1.1435547, 2.5234375, 0.06933594, 0.4868164, 3.109375, 2.3613281, 0.3581543, -0.37524414, 2.8574219, -1.9599609, -1.1318359, -0.90234375, -0.07672119, -0.6098633, -1.4453125, 1.9003906, -0.20178223, 0.47143555, -2.0175781, -1.078125, -1.1689453, -0.46240234, -1.0615234, 0.35351562, 1.1230469, -2.2089844, 0.110839844, -0.86083984, -0.42211914, 2.3671875, -2.7460938, 2.0390625, -0.3762207, -0.64453125, 0.3635254, 0.7583008, 0.14990234, 0.31958008, -0.011001587, 1.4794922, 1.2871094, 1.9013672, 0.7084961, -0.8208008, 1.4912109, -0.30078125, 2.4238281, -0.28222656, -1.4892578, 1.1494141, -1.7910156, -2.6445312, -3.6503906, 2.2949219, 1.4179688, 0.7993164, 1.0322266, -2.5859375, 1.3095703, -0.25195312, 2.2128906, -3.0566406, 0.9667969, -0.47387695, -4.171875, -0.85791016, 0.6381836, 0.39624023, 2.6152344, 1.3183594, -1.1708984, 2.5996094, 1.5576172, 1.9560547, 1.6269531, 1.0878906, 0.28833008, 1.28125, -0.46948242, 2.9433594, 1.3183594, -0.8251953, -0.012649536, 1.9296875, 0.45361328, 0.035003662, 0.88671875, -1.8457031, -0.39892578, -1.1210938, -1.9326172, -0.49731445, -1.8017578, -1.4091797, -0.25976562, 0.72216797, -1.0839844, -1.3017578, 1.2373047, 1.2519531, -1.1279297, 1.3017578, 1.5517578, -0.6479492, 1.8691406, -0.06921387, -1.1005859, 0.69140625, -0.17321777, 1.4189453, 0.008743286, -1.4365234, 0.20214844, -0.72265625, 2.0566406, 0.39453125, -0.2919922, 0.32666016, -0.5371094, -1.0449219, 0.62597656, -0.015853882, -0.7026367, 1.6308594, -0.4802246, -0.32617188, 2.2011719, -0.6230469, -0.49438477, -2.5058594, -2.4492188, 0.09008789, -1.0683594, -1.0800781, 1.0078125, 4.5625, 1.046875, 1.578125, -0.61376953, -4.5507812, -0.9057617, 0.29003906, 2.8378906, -1.7119141, -1.2216797, 0.6743164, 1.3984375, 1.6914062, -1.3173828, -1.84375, -1.0244141, -0.4411621, 0.12188721, 0.28271484, 2.5410156, 1.5292969, 0.6723633, 0.29882812, 0.95751953, 1.5605469, -1.1787109, 1.1855469, 1.3554688, 0.08770752, -2.9785156, 1.8378906, 0.1932373, 0.3635254, -0.375, 0.32348633, 2.0078125, 0.12524414, -0.28759766, -1.7353516, -1.9648438]}, "B07P8RTTWP": {"id": "B07P8RTTWP", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black\nDescription: \nFeatures: 443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether.\n39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push.\nSide burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience.\nGlossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look.\nGrease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.\n", "embedding": [-1.9707031, -0.060272217, 1.2421875, 0.8051758, -0.91796875, 2.0703125, 1.4296875, -0.5288086, -0.19787598, 0.6040039, 1.4882812, -0.26782227, 0.60546875, -2.7949219, 1.7470703, 0.7363281, -0.0814209, 1.3925781, 0.7753906, 0.38745117, -0.23181152, 0.6020508, 2.3398438, -0.7011719, 0.6010742, 1.9052734, 3.0039062, -4.7929688, -0.22998047, -0.8823242, 2.4296875, 0.1965332, 0.038848877, 2.9453125, -3.2363281, -0.9169922, -1.6884766, 0.84277344, -2.0859375, 1.5087891, -0.10809326, -1.5830078, 0.5102539, 1.4228516, -2.4980469, -0.33374023, 0.21655273, 0.875, -1.2958984, 0.24035645, 0.8828125, 1.9736328, -0.7504883, 0.5263672, -0.054656982, 1.9082031, 1.3974609, -1.8222656, 1.4179688, 0.30810547, 2.8066406, -0.25073242, -2.578125, 0.68359375, -0.45703125, -0.9067383, -0.28637695, 0.34936523, -0.72265625, -1.3339844, 2.4355469, 0.52734375, -0.3479004, 0.30639648, -0.27490234, -0.23632812, -2.1074219, 1.7773438, 1.9208984, -0.32592773, -2.4257812, 1.5751953, 0.8417969, -1.6757812, -0.78564453, 0.40722656, -1.3710938, -0.48413086, 1.2392578, 1.0732422, -0.11816406, 2.3144531, -2.3554688, -4.0664062, 2.2949219, -0.5888672, 1.0224609, 1.7490234, 0.5722656, 0.6826172, 0.5, -1.4892578, -1.5019531, -0.6635742, -1.2880859, -1.1992188, 0.86376953, 1.4746094, -2.1445312, -0.4116211, -1.1923828, 0.7475586, 2.1640625, -0.8076172, 0.52197266, 0.8574219, -1.0253906, 1.8535156, 1.8173828, 0.4560547, 2.921875, -0.8125, 1.5039062, -1.9824219, 0.14733887, 1.1523438, -1.6601562, 1.2412109, 5.2421875, -2.5800781, -0.49658203, -2.6640625, 2.8496094, -0.10913086, -1.8945312, -1.8251953, -1.7128906, -0.68896484, -2.6328125, 0.26953125, -2.2851562, 0.39111328, 2.4707031, -1.4169922, -3.0605469, -0.4387207, -0.36279297, 2.1445312, -0.76904297, -1.234375, 0.23583984, -1.4765625, 1.5283203, -2.5722656, 1.6220703, -1.7001953, -0.33544922, -1.6669922, 3.859375, 0.20349121, 0.90234375, -3.1054688, -1.5390625, 0.5419922, -0.28735352, -0.6777344, -1.0390625, 2.5605469, 1.8554688, 2.4648438, 0.008033752, -0.9477539, -0.8959961, -0.47631836, 0.5239258, -0.45361328, -1.1103516, 2.0058594, 1.2480469, -0.43969727, -1.2128906, -1.8974609, 0.01586914, 1.4248047, 0.9501953, -1.1767578, -0.30029297, 0.39453125, 1.0546875, -0.68359375, 0.8129883, 0.52783203, 0.20141602, 0.8574219, -1.5488281, -0.5083008, -0.54589844, -1.1035156, -0.6611328, 0.55078125, -0.86035156, -0.3864746, 0.14855957, 0.9057617, -3.4140625, -3.4003906, 0.72265625, -2.6914062, 1.4365234, 1.7109375, 1.7294922, -2.5742188, 0.5991211, -0.77246094, 0.67285156, -2.3242188, 2.3945312, 0.011413574, 1.8076172, 2.6347656, 0.5239258, 0.1907959, 0.39233398, 1.3916016, 0.03326416, 1.4824219, 0.60595703, 1.2626953, -2.2910156, -0.33422852, 2.3359375, -0.2788086, -0.3618164, 0.6826172, -1.5351562, 0.9873047, -0.4650879, -2.3671875, -0.91503906, -0.09063721, -0.37304688, -1.8925781, -0.40185547, -1.2998047, -0.5644531, 1.6425781, -1.1835938, 1.5244141, 2.1347656, 0.32373047, 0.12322998, 1.3457031, 0.9633789, 0.07336426, -0.56152344, -0.72558594, -0.57666016, 1.1396484, -1.4306641, -1.8662109, 1.7851562, -0.07574463, -0.15283203, -0.82714844, 1.3037109, -2.0371094, 2.1777344, 1.1445312, -2.484375, -1.3369141, 0.09680176, 0.05960083, 2.1386719, -0.51220703, 1.6699219, 1.8916016, -1.3320312, 2.7460938, -1.875, 0.44384766, 0.2944336, -1.1142578, 1.0214844, -1.9716797, -0.35327148, 0.97314453, 0.5810547, -1.3945312, -0.1352539, 1.5976562, 4.90625, -1.1162109, -2.1171875, 3.2421875, -1.5605469, -0.80908203, 0.86279297, -0.61816406, -1.6962891, 0.36376953, 1.6347656, 0.71728516, 1.1074219, 0.41992188, -0.20812988, -2.4179688, 0.66796875, -2.1328125, -0.51953125, -0.1439209, -0.3659668, -1.8076172, -2.0058594, -0.15893555, -0.93408203, -1.5419922, 2.0429688, -2.8808594, 1.7363281, 0.020889282, 1.609375, 1.6601562, 0.016830444, -1.8398438, -0.78466797, 1.2089844, -0.8051758, 0.2541504, -0.08862305, 0.13879395, -0.5522461, -0.76171875, -0.057800293, -1.4794922, -3.25, -0.76123047, -2.9101562, -2.2792969, -0.09893799, -2.0566406, -1.0078125, 0.51953125, -2.0800781, -0.21105957, 0.24389648, -3.8769531, -1.1650391, -1.4306641, -2.2929688, 0.8051758, -0.6635742, 0.1583252, -0.44360352, -2.0332031, 0.6347656, -0.11895752, -0.49902344, 0.7607422, 0.3100586, -0.7651367, -1.1962891, -1.6171875, -0.50390625, 0.1953125, 0.9321289, -0.9560547, 0.5161133, -3.1757812, 0.2902832, -1.5449219, -0.27929688, -1.2861328, 0.24133301, -2.6582031, -0.89404297, -0.6826172, -1.0546875, 4.2539062, -0.7685547, 0.42407227, -0.2902832, 0.27954102, 2.4335938, -1.5878906, -2.1230469, -1.6542969, 0.8613281, -3.0253906, -2.9960938, -1.9345703, 0.08691406, 0.022964478, 1.359375, -1.140625, 2.875, -0.6147461, 1.6337891, -1.0644531, -0.89941406, 0.07531738, 0.82373047, 0.1895752, -0.95654297, -1.5478516, -0.87939453, -0.5083008, -1.4179688, 0.66259766, 1.8105469, -0.58203125, 1.0498047, 0.87841797, -0.73779297, 0.24255371, -0.43408203, -2.4863281, 3.4765625, 0.8964844, -2.2421875, 2.5976562, -0.7578125, -2.9550781, -0.91845703, -0.13220215, 3.3789062, 1.9853516, 2.9980469, 0.6245117, 1.5976562, 0.29101562, 1.1572266, -0.4338379, -0.7104492, -0.59033203, 3.2070312, -2.2148438, -2.3242188, 1.0927734, 1.671875, -1.6142578, -1.3457031, 2.1894531, 1.1337891, 2.7226562, 1.1455078, 2.0605469, 1.6142578, -1.3701172, 1.3837891, 0.7441406, -0.8300781, -0.38330078, -1.3623047, 0.77001953, -0.5019531, 1.6738281, 2.0859375, -0.09112549, 2.5546875, 0.99560547, 0.2849121, -1.4208984, 0.76708984, 0.9243164, 3.7558594, 1.3095703, 1.4697266, 0.16003418, 0.3083496, 1.1552734, -0.60498047, -0.078186035, -3.9277344, 0.08154297, 1.1660156, -0.98876953, -0.61816406, 1.3320312, 0.73828125, 0.6274414, -0.57373047, 0.5366211, -1.4150391, -0.25195312, 0.8955078, -0.6582031, -0.9477539, -1.8925781, 1.2509766, -0.86816406, -1.7587891, 0.52441406, 2.7539062, -1.2070312, -1.9746094, 1.3613281, 0.4326172, -1.2626953, 2.7988281, -0.23852539, -1.0947266, 0.89941406, -1.6503906, 1.2705078, 0.76123047, -1.0947266, -0.7338867, -0.9140625, -0.8613281, 0.28442383, 0.12512207, 2.09375, 1.8115234, -1.6230469, 0.19152832, -4.40625, 0.84033203, 0.48339844, -1.6103516, -0.6430664, 2.6230469, 0.7739258, 1.5351562, -2.3222656, 3.5410156, 0.1116333, -0.56103516, 1.9892578, -3.5429688, -1.9042969, -4.2734375, -3.390625, 0.6245117, -1.2255859, -1.0244141, 1.9628906, 0.99609375, -0.1295166, 1.7978516, 0.6694336, -2.1210938, -1.5039062, -2.0039062, 0.5571289, -1.3505859, -1.140625, 0.68652344, 0.023422241, -2.3652344, -1.8818359, -0.36132812, 0.03289795, 2.0136719, 1.9980469, -2.4609375, 1.4775391, -2.5, 0.28393555, 0.10046387, -1.1572266, 1.1904297, -1.0947266, 0.5073242, -2.8828125, 1.6962891, 1.3261719, -0.6347656, 1.7412109, 1.9492188, -0.15454102, -2.0332031, -0.12402344, 1.2773438, 4.1601562, -0.62109375, -2.4023438, -2.078125, 0.3635254, 0.35595703, -1.5615234, -0.95214844, -1.5537109, -1.2636719, -0.32470703, 2.3144531, 1.6943359, 0.9614258, 1.0986328, -2.3222656, 0.56884766, 0.38134766, -0.91748047, -1.3369141, -0.8339844, 0.19396973, 0.26342773, -0.61083984, -1.2675781, 0.75341797, -2.25, -0.24621582, -2.0898438, 3.109375, 2.78125, 0.5864258, 2.7324219, -1.2773438, -0.3618164, -0.11193848, -0.63623047, -0.061676025, 1.3134766, 0.39013672, 0.32641602, 1.9023438, 0.18188477, -1.6767578, -0.47485352, 1.3867188, -1.7294922, -0.03967285, 0.084228516, 0.92578125, -0.15209961, -0.16467285, 2.1542969, -1.2089844, 2.9414062, -0.8359375, -0.005378723, 0.51953125, 0.18591309, -1.6044922, 0.9614258, 0.1998291, 0.87597656, 0.82470703, 1.2412109, 2.1113281, -1.7197266, 0.7885742, -1.3125, 1.7285156, -1.1601562, 1.2841797, -0.008377075, 0.8828125, -0.8276367, -1.2333984, 0.83496094, 2.2675781, -0.8457031, 4.3203125, 1.8759766, -1.9394531, 1.5751953, 1.0595703, -1.921875, 0.41381836, -0.0748291, 0.0049858093, 1.7099609, 1.3085938, -3.609375, -1.3173828, 2.5039062, -1.1621094, 1.0527344, -0.6665039, -1.2744141, 0.6767578, -1.4228516, -0.3696289, -1.1425781, 0.7519531, 0.25195312, -0.33129883, 1.1669922, -1.6513672, 0.7944336, 2.2324219, -0.15161133, -1.6582031, 2.5957031, -0.99316406, 1.9384766, 0.32495117, 0.20739746, -1.9619141, -0.30126953, 3.6933594, 0.39746094, 1.5625, 0.76904297, 0.6953125, -3.3242188, -0.22314453, -2.1484375, 3.1972656, -0.93652344, 0.11779785, 3.6679688, -3.5175781, 1.2480469, -1.7607422, 0.7548828, -0.72753906, 2.2441406, 1.2998047, -0.45874023, -0.8022461, 1.1152344, -1.7353516, -3.0546875, -1.7167969, 1.1542969, -0.3635254, -0.45141602, 0.47827148, -1.0546875, -0.004470825, 0.5625, -0.42407227, -1.8886719, -0.20678711, -1.9394531, -0.4572754, -1.4111328, 0.60595703, -0.5932617, 2.0117188, -0.27026367, 1.2841797, 1.0283203, -3.65625, -2.625, 1.859375, -2.2539062, 0.75683594, 2.6191406, 0.43920898, 0.26391602, 0.4736328, -0.5102539, -2.1835938, 2.3417969, -1.6503906, -0.33251953, 0.5175781, -0.58251953, 0.6899414, -0.6274414, -1.2109375, 0.2524414, -0.5253906, 0.7089844, 0.73291016, -0.1796875, -0.30029297, 2.0039062, -0.62060547, -1.5800781, 0.83935547, 0.8823242, -0.09112549, 1.6962891, -2.234375, -0.15673828, -2.0996094, -2.5996094, -1.1367188, -1.9423828, 0.25634766, 0.07989502, 0.9194336, 1.5, -1.0419922, 0.038970947, 1.1513672, -0.056243896, -1.0625, 0.25195312, -1.5527344, 1.7802734, 1.2851562, -1.6279297, -0.8588867, -1.0107422, 1.0019531, 1.5429688, 1.8017578, -1.171875, 0.27368164, 0.061676025, -1.0292969, -0.09832764, 0.059020996, 1.7695312, 0.048553467, -0.8066406, 2.0546875, 3.6679688, 0.57910156, -0.17004395, 1.6201172, 0.7084961, -0.15820312, 5.2890625, -0.91796875, -1.7236328, 1.0029297, -2.3320312, 2.0644531, 0.3869629, -1.2900391, 0.96240234, -1.2333984, -2.0292969, -2.9296875, -0.8803711, -2.0703125, 1.0800781, 1.6630859, -1.1103516, -0.8305664, 2.5957031, 1.3769531, 1.3632812, 2.1582031, 0.39697266, -0.77001953, 0.75683594, -0.4892578, -0.5878906, 1.3925781, -2.2324219, 2.1582031, 1.2695312, -1.2304688, -1.5400391, 3.2109375, -0.86621094, 2.8164062, 2.7304688, 1.0488281, 1.2617188, 1.8417969, 2.6640625, 0.12866211, 1.1699219, 0.9458008, -0.7602539, 2.6972656, 2.0449219, 2.9414062, 0.03213501, -0.2775879, 1.8847656, -0.81591797, -2.4921875, 1.1152344, 0.3071289, 0.7133789, -1.5839844, 1.265625, 0.4699707, 1.2763672, -1.5283203, 0.79833984, -0.51904297, -1.8105469, -0.8642578, 0.73046875, 2.8359375, -1.9130859, 0.48486328, -0.27905273, 0.41430664, 1.9736328, -4.0625, 1.1181641, 2.1035156, -0.8925781, 0.18066406, 0.9638672, 0.81347656, -0.44604492, 0.6401367, 1.1455078, 1.1875, 0.21679688, 0.27807617, -0.1920166, 0.44628906, 0.24157715, 2.9238281, -0.71435547, -0.8041992, 2.7167969, -1.7744141, -2.3417969, -4.640625, 3.640625, 1.5478516, 1.6230469, 2.3203125, -1.1181641, 1.8974609, 0.89404297, 0.8564453, -2.1054688, 0.515625, 0.13928223, -2.1191406, -1.9414062, 1.3818359, -0.17797852, 2.4101562, 1.8720703, -0.74316406, 1.6953125, 0.5571289, 0.70166016, 1.4501953, 2.1621094, -0.41796875, 0.9165039, -0.22058105, 2.4140625, -0.23864746, -2.1425781, -2.0097656, 2.2480469, 1.4892578, -0.27563477, 0.46435547, -0.6357422, -1.7382812, -0.6147461, 0.07220459, 0.12365723, -2.9980469, -2.109375, 0.42700195, -0.08929443, -1.4355469, -1.9716797, 1.7617188, 1.1230469, -0.6928711, 0.20483398, 3.1347656, -0.13647461, 1.6708984, 0.92285156, -0.117004395, 0.029663086, -1.4296875, 0.4399414, 0.26831055, -2.1796875, 0.31201172, 1.0517578, 1.6357422, -0.7392578, -0.41870117, 0.47192383, -0.0914917, -0.06793213, 1.2216797, -1.125, -0.9770508, 1.6357422, -1.0898438, -1.1279297, 2.3808594, 0.08123779, -0.022857666, -2.1992188, -2.6738281, -0.8076172, 0.5229492, -0.40307617, 0.8852539, 3.6503906, 1.9550781, 1.2167969, -1.5214844, -4.2070312, -0.3395996, -0.41870117, 1.7431641, -2.2949219, -0.039398193, 0.8027344, 1.2539062, 2.2402344, -0.5258789, -2.5273438, -0.78027344, -2.6894531, 0.5185547, -0.049926758, 2.5273438, -1.6083984, 0.78125, -0.1550293, 1.1474609, 2.2480469, -0.77490234, 1.3466797, 2.8691406, 0.4794922, -1.6904297, 2.3984375, 0.25097656, -0.1373291, 0.2775879, -0.09161377, 0.80078125, 0.54345703, 0.72998047, -1.1171875, -3.4394531]}, "B08XTGT9J1": {"id": "B08XTGT9J1", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver\nDescription: \nFeatures: Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time.\nHigh Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat.\nSear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces.\nHassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\nDurable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.\n", "embedding": [-1.2695312, 0.8803711, 0.91064453, -0.09881592, 0.059814453, 1.9287109, 1.4433594, -1.4628906, -0.89208984, 1.1572266, 1.1542969, -0.6855469, 0.55126953, -3.2246094, 0.7631836, 0.9458008, 0.8574219, 0.63916016, 1.5830078, 0.12109375, 0.053894043, 1.2949219, 3.3261719, -0.72021484, -0.23132324, 1.5048828, 2.5878906, -4.7851562, -0.24902344, -1.3925781, 2.875, 0.34179688, -0.18164062, 1.5097656, -3.5390625, -0.8300781, -1.6689453, 0.88671875, -3.0703125, 1.53125, 0.34960938, -1.8623047, 1.2705078, 0.98535156, -2.3710938, 0.4194336, -0.08190918, -0.19140625, -1.8535156, -1.0136719, 1.2421875, 1.4824219, -0.53125, -0.13220215, -0.52001953, 1.8037109, 1.1728516, -1.2412109, 1.5683594, -0.21655273, 2.9414062, 0.026031494, -1.7822266, -0.12030029, -0.35791016, -0.9970703, -0.49438477, 0.2310791, -0.4736328, -1.0410156, 2.2910156, 0.19226074, -1.6025391, 0.25317383, -0.028564453, -1.4296875, -2.5800781, 2.4121094, 1.0068359, -0.58935547, -2.8378906, 2.2109375, 1.6474609, -1.6142578, -0.52490234, 1.6376953, -1.1357422, -1.2724609, 1.9257812, 0.86621094, 0.37158203, 3.3203125, -3.0410156, -3.4589844, 2.7832031, -1.7480469, 1.9482422, 1.6259766, -0.016784668, 0.8286133, 0.18579102, -1.1748047, -2.4492188, -1.8242188, -0.5566406, -1.421875, 1.4433594, 0.22631836, -2.8222656, -0.86376953, -1.8759766, 1.3408203, 1.7929688, -0.8144531, 0.63183594, 0.7050781, 0.12683105, 2.4121094, 1.7148438, 0.26708984, 2.3417969, -0.32666016, 1.8486328, -1.9804688, 0.5888672, 0.45532227, -1.5976562, 2.1777344, 4.4570312, -2.25, -1.4921875, -2.5722656, 2.0117188, -0.4194336, -0.95410156, -1.6298828, -2.2597656, -0.7963867, -3.1484375, 0.6381836, -2.2382812, 0.83935547, 2.5800781, -0.08026123, -3.2128906, -0.082458496, -0.73779297, 1.3583984, -0.26635742, -1.1328125, 0.46118164, -1.7880859, 1.1513672, -2.6816406, 1.9570312, -1.3837891, -0.20117188, -1.609375, 4.3359375, 0.099853516, 0.5175781, -3.0136719, -1.0380859, 1.0878906, -1.2529297, -0.8173828, -0.87597656, 2.8769531, 1.2148438, 1.6269531, -0.04348755, -1.3701172, 0.061157227, -0.5390625, 0.61376953, -1.2734375, -1.0253906, 1.5800781, 0.3383789, -0.35473633, -1.6552734, -2.5097656, 0.32226562, 0.8964844, 1.1279297, -1.6240234, 0.5493164, 0.5883789, 0.7128906, -0.77978516, 0.4819336, -0.29101562, 0.0056152344, 0.11260986, -1.6474609, -0.30371094, -0.7265625, -1.3300781, -0.30444336, 0.8100586, -1.0126953, -0.012924194, -0.38842773, 0.87597656, -3.015625, -4.0625, -0.40429688, -2.2753906, 1.6054688, 1.1367188, 1.8427734, -1.7880859, 0.5161133, -0.93115234, 0.61816406, -1.0732422, 2.2109375, -0.042938232, 1.3496094, 2.9785156, -0.030532837, -0.2322998, 1.7207031, 2.0507812, -0.2442627, 1.8271484, 0.38085938, 1.4316406, -1.4160156, -1.3935547, 2.1367188, -0.16235352, 0.70654297, 1.5292969, -0.9824219, 2.1035156, -0.72802734, -1.890625, -0.44311523, -0.33813477, 0.08428955, -1.8369141, -0.9658203, -2.1425781, -0.15563965, 1.3222656, -1.4365234, 1.8876953, 1.6894531, 0.79345703, -0.7949219, 0.31762695, 0.78564453, 0.23376465, -0.20483398, -0.1262207, -0.97314453, 1.2910156, -1.5898438, -2.5234375, 2.0449219, -0.20227051, -0.04977417, -1.0380859, 0.5698242, -1.7607422, 2.5664062, 0.9658203, -3.0800781, -1.5429688, -0.021652222, -0.42651367, 2.0703125, -1.4794922, 0.85302734, 1.640625, -1.2939453, 3.1308594, -0.82177734, 0.9238281, 0.6586914, -0.8359375, 2.0820312, -2.4238281, -0.6723633, 0.5307617, 2.3535156, -1.1181641, -0.11187744, 1.1337891, 4.421875, -1.1611328, -3.21875, 2.6191406, -1.4755859, -0.7182617, 2.1386719, -1.1689453, -0.3737793, 0.35375977, 1.828125, -0.38500977, 1.8769531, 0.6303711, -0.7734375, -1.9287109, 0.95996094, -1.9423828, -0.67285156, 0.31103516, 0.30200195, -1.1542969, -2.2519531, -0.5883789, -0.86376953, -1.5693359, 2.8710938, -3.3398438, 1.9746094, 0.5678711, 1.9365234, 1.3417969, -1.0986328, -1.3056641, -0.8466797, 0.6455078, -1.1083984, -0.28588867, -0.060546875, -0.36108398, 0.2319336, -0.88916016, 0.37597656, -2.0917969, -2.7246094, -0.66503906, -2.9042969, -2.1191406, -0.6875, -3.1132812, -1.265625, 0.74560547, -2.7539062, 0.41601562, -0.47973633, -4.9179688, -0.96533203, -1.1445312, -1.6464844, 0.21020508, -0.12487793, 0.16333008, -1.3330078, -2.5527344, 0.5161133, -0.6948242, -0.5185547, 1.1992188, 1.3486328, -0.9482422, -0.7319336, -0.92822266, -0.84375, 0.7006836, 1.0927734, -1.7705078, -0.5864258, -3.5703125, 0.30981445, -2.7832031, 0.28466797, 0.21325684, 1.0664062, -2.4765625, -1.4199219, -0.67089844, -1.5205078, 3.5625, -0.08581543, 0.6801758, 0.10522461, 0.22851562, 1.3232422, -0.0231781, -2.734375, -0.6699219, 0.22314453, -2.7109375, -3.0585938, -2.0898438, 0.47998047, -0.31201172, 0.3581543, -0.8027344, 3.1132812, -1.9892578, 1.2529297, -1.5341797, -0.7260742, 0.3022461, 1.7851562, -0.31347656, -0.35107422, -2.4160156, -0.6743164, -0.8647461, -0.76904297, 0.14685059, 2.6992188, -1.0683594, 1.2734375, 0.30859375, -0.61816406, 0.9140625, -0.9165039, -2.1679688, 3.7285156, 2.125, -2.3144531, 3.2421875, -1.8554688, -2.9414062, -1.6416016, -0.42895508, 2.6914062, 1.6875, 2.8457031, 0.31323242, 1.5517578, 0.3996582, 1.6201172, 0.18774414, -0.89941406, -0.8925781, 2.5761719, -1.4814453, -2.5742188, 0.8388672, 2.6542969, -2.2050781, -0.8618164, 2.8359375, 2.3222656, 3.7226562, 1.5605469, 1.8095703, 1.8017578, -0.69873047, 1.5537109, 1.0058594, 1.0439453, 0.20227051, -0.6958008, 0.7602539, -0.8276367, 1.2451172, 1.9335938, -0.24633789, 2.4941406, 1.8242188, 0.88964844, -1.2783203, 0.5527344, 1.4677734, 2.6074219, 0.5415039, 1.5986328, -0.53759766, 1.2607422, -0.1340332, -1.1962891, 0.13183594, -2.3085938, -0.12176514, 1.7578125, 0.18676758, 0.74658203, 1.7382812, 1.140625, 0.68896484, -0.103637695, 0.22387695, -1.2890625, 0.14929199, 0.3173828, -0.24499512, -0.19299316, -2.0488281, 1.2216797, -0.9506836, -2.5820312, 0.029037476, 3.1601562, -0.8823242, -2.0019531, 1.9042969, 0.24938965, -0.98291016, 2.3984375, 0.5058594, -1.1474609, 0.1965332, -1.671875, 1.3134766, 0.30371094, -0.9609375, -1.4111328, -1.0507812, -0.20690918, 0.79589844, 0.15905762, 1.5800781, 2.234375, -2.5, 0.082336426, -4.1875, 0.052978516, 0.6542969, -1.8945312, -0.87890625, 2.1308594, 0.77001953, 1.5283203, -1.328125, 3.6601562, 0.43115234, -0.54541016, 1.6660156, -2.6308594, -1.4931641, -4.2265625, -4.0585938, 0.83935547, -1.1621094, -1.9423828, 1.5429688, 0.46411133, -0.81347656, 2.03125, -0.47265625, -1.6601562, -1.0439453, -1.4775391, 0.019989014, -1.1074219, -0.6274414, 0.86816406, -0.2746582, -2.5195312, -3.0507812, -0.7026367, 0.39282227, 1.9775391, 2.2285156, -3.6679688, 1.9853516, -1.9375, 0.38061523, 0.071899414, -0.76904297, 1.8271484, -1.6259766, 0.25683594, -3.2011719, 0.9926758, 0.96533203, -0.20263672, 2.6933594, 2.1699219, 0.5839844, -2.4042969, -0.5292969, 1.1230469, 4.0546875, -0.75390625, -2.8378906, -2.0214844, 1.4912109, -0.09631348, -1.2841797, -1.09375, -1.5224609, -1.3261719, -0.83447266, 2.9335938, 2.0703125, 1.3769531, 0.38916016, -2.859375, -0.8408203, 0.22998047, -2.4785156, -1.4931641, -1.3144531, 1.5078125, -0.5234375, -1.2802734, -1.2822266, -0.5864258, -1.6064453, -0.32910156, -2.4453125, 3.6738281, 3.2539062, 1.2148438, 2.6621094, -0.9370117, -0.07269287, 0.96240234, 0.2836914, -1.5351562, 1.1601562, 0.40893555, 0.31884766, 2.0273438, 0.54345703, -1.7646484, -0.74121094, 2.1933594, -2.6914062, -0.67626953, -0.53564453, 0.4814453, -0.12634277, -1.078125, 2.109375, -0.75439453, 2.8027344, -0.53759766, -0.62109375, -0.3071289, -0.02330017, -1.5595703, 0.42016602, 0.20898438, 0.6791992, 0.46142578, 2.0742188, 2.2460938, -1.6269531, 0.20898438, -1.484375, 2.1523438, -0.35229492, 0.46044922, -1.0585938, 0.81884766, 0.5917969, -1.3984375, 1.4287109, 2.0332031, -0.0748291, 3.6269531, 1.8300781, -2.65625, 1.4980469, 0.5493164, -2.0390625, -0.5546875, 1.7148438, -0.3474121, 1.0634766, 0.9453125, -4.2773438, -0.96728516, 2.2382812, -1.0947266, 1.4433594, -0.26513672, -1.7529297, 1.5380859, -0.5024414, -1.2578125, -0.6118164, 1.1210938, -0.28759766, 0.2919922, 0.27001953, -2.21875, 0.8955078, 2.2753906, -0.49658203, -1.7724609, 3.2246094, -0.33984375, 1.9189453, -0.7788086, 0.56347656, -2.15625, 0.34765625, 3.2890625, 1.2861328, 1.9228516, 0.46972656, 1.1181641, -2.3691406, -0.00894928, -2.2832031, 4.234375, -1.8242188, -0.3503418, 3.4667969, -2.8554688, 1.2568359, -3.234375, 0.33569336, -0.45092773, 2.0429688, 1.5351562, -0.27929688, -0.35009766, 0.86376953, -1.5839844, -3.6796875, -1.671875, 1.5927734, 0.5366211, 0.038635254, 0.86083984, -1.3828125, 0.4050293, 0.3005371, 0.004524231, -1.9257812, -0.41577148, -1.4931641, -0.9213867, -1.0839844, 0.9916992, -0.61035156, 0.9326172, -0.06414795, 0.8955078, 1.2861328, -3.9902344, -2.2441406, 1.0859375, -1.7724609, 0.76904297, 2.7792969, 0.7050781, 0.077697754, 0.5541992, 0.1104126, -2.1523438, 2.0292969, -1.7265625, 0.15991211, 1.1552734, -0.40673828, 0.90185547, -0.8041992, -1.4560547, 0.14086914, -1.9863281, 0.60595703, 1.4277344, 0.39819336, -0.59375, 1.5039062, -0.31347656, -1.5859375, 0.5253906, -0.27929688, 0.9350586, 1.8535156, -2.1328125, -0.53808594, -1.7880859, -1.6523438, -0.5644531, -2.8066406, 0.30297852, -0.61572266, 0.62597656, 0.9814453, -0.33007812, 0.41455078, 0.47631836, -0.71728516, -0.72558594, 0.41430664, -1.6582031, 2.3007812, 2.0449219, -1.7421875, -0.49951172, -1.2207031, 0.4711914, 2.0722656, 1.1699219, -0.27026367, -0.20117188, 0.5527344, -0.33496094, -0.18273926, 0.6826172, 2.1660156, 0.25, -2.1621094, 1.7929688, 4.1289062, 0.7348633, -0.036743164, 0.94091797, 0.5541992, 1.2744141, 5.203125, -0.17028809, -1.9189453, 1.3916016, -2.0136719, 1.8017578, -0.25146484, -1.8398438, 0.7944336, -1.6992188, -1.9716797, -3.1894531, -1.2539062, -2.5097656, 1.5654297, 1.7158203, -0.6401367, -0.45898438, 2.6855469, 0.49926758, 1.7011719, 1.9970703, 0.93408203, 0.38842773, 0.6411133, -1.1933594, 0.009475708, 1.7587891, -2.5605469, 2.3886719, 1.4121094, -0.8046875, -1.2998047, 3.5878906, 0.46826172, 2.1835938, 1.5917969, 0.89501953, 1.3701172, 1.890625, 3.6601562, 0.16479492, 1.4873047, 1.3740234, -1.0898438, 2.3359375, 2.6601562, 3.7832031, -0.19226074, -0.14880371, 2.4394531, -1.046875, -1.7294922, 0.78027344, -0.14941406, 1.7148438, -2.0585938, 1.8798828, -0.0037841797, 0.50390625, -1.8193359, -0.21130371, -0.033996582, -1.5488281, -1.7089844, 0.7661133, 2.4863281, -0.5800781, 0.74316406, -0.14099121, 0.057769775, 1.8564453, -3.8320312, 2.015625, 1.3886719, -0.4182129, 0.24707031, 1.1162109, 1.3398438, 0.27416992, 0.90966797, 2.296875, 1.1435547, 1.4130859, 0.5493164, -0.7885742, 0.52246094, 0.32177734, 3.1855469, -0.5136719, -1.0097656, 2.5878906, -1.9306641, -2.0644531, -4.71875, 3.7050781, 2.3886719, 0.7207031, 2.09375, -1.2451172, 2.1582031, -0.6069336, 1.2001953, -2.0898438, 0.56933594, 0.047668457, -3.1601562, -1.4375, 0.42456055, -0.030273438, 1.4570312, 2.2226562, -1.0888672, 2.0625, 0.5151367, 0.96240234, 2.0761719, 1.5634766, -0.53564453, 0.6977539, -0.7216797, 1.8994141, 0.0340271, -2.2226562, -2.2128906, 2.3457031, 0.9873047, -0.12225342, 0.59716797, -0.19799805, -1.1962891, -1.6259766, -0.7207031, -0.1829834, -2.9355469, -2.3242188, 0.22741699, -0.7138672, -1.6542969, -2.2304688, 2.0058594, 1.0947266, -1.0566406, -0.46850586, 3.0273438, -0.6972656, 1.6181641, 0.47338867, 0.38134766, 0.26757812, -1.4267578, 0.9033203, 0.5800781, -1.6347656, 0.08178711, 0.5996094, 1.1904297, -1.0429688, -0.51660156, -1.0595703, -0.42163086, 0.57128906, 1.4833984, -0.9355469, -0.4326172, 2.4726562, -0.91845703, -0.34106445, 3.1035156, 0.113098145, -0.43188477, -1.9453125, -2.5605469, 0.31811523, -0.5473633, -0.6035156, 1.0009766, 4.2890625, 2.4863281, 0.39941406, -2.1621094, -3.3691406, 0.103637695, -1.3300781, 0.9873047, -1.4775391, -0.2980957, 0.17919922, 0.7705078, 2.1445312, -0.093444824, -2.125, 0.32202148, -1.3876953, 0.40795898, 0.082336426, 2.9238281, -0.8334961, 1.1533203, 0.25952148, 2.4785156, 2.6796875, -0.99902344, 1.2529297, 2.3925781, 0.08514404, -2.8320312, 1.8193359, -0.033813477, 0.35058594, 0.41015625, 0.81591797, 1.4082031, 0.5908203, 1.5576172, -1.0722656, -3.5976562]}, "B091F5ND56": {"id": "B091F5ND56", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "embedding": [-0.6616211, 0.35717773, 0.9189453, 0.17211914, 0.6542969, 2.0742188, 0.70703125, -1.3212891, -1.2890625, 0.23461914, 0.6850586, -0.056488037, 0.6323242, -3.7949219, 0.25830078, 0.4501953, 0.4729004, 0.109558105, 1.6386719, -0.18408203, -0.14538574, 1.9453125, 2.9609375, 0.82373047, -0.2890625, 1.3886719, 3.5957031, -3.1210938, -0.3737793, -1.2832031, 3.4726562, 0.5283203, -0.6826172, 1.1416016, -3.5722656, -0.94433594, -1.6875, 0.7470703, -1.6640625, 1.5761719, 0.6801758, -1.9853516, 0.4987793, 1.4462891, -2.578125, 0.1307373, -0.4255371, 0.31835938, -1.7324219, -1.1162109, 0.9970703, 1.2548828, -0.7392578, 0.13085938, -1.0273438, 1.9169922, 1.3505859, -2.03125, 1.1132812, 0.5, 2.7558594, -0.120910645, -1.8320312, -0.51464844, -0.8466797, -0.99560547, 0.7006836, 0.29516602, -0.4831543, -2.0410156, 1.8095703, 0.4855957, -1.6757812, 0.17651367, 0.20031738, -0.69140625, -2.1054688, 1.7021484, 1.6162109, -1.0576172, -1.5175781, 2.0078125, 1.2314453, -2.1542969, -0.011650085, 1.0380859, -0.75146484, 0.2722168, 2.359375, 1.4326172, 0.43554688, 2.5664062, -3.2734375, -4.1054688, 2.8710938, -1.8095703, 0.023132324, 0.90625, 0.25512695, 1.8896484, 1.2832031, -1.4072266, -2.0957031, -1.3330078, 0.6274414, -1.2099609, 1.2402344, 0.29370117, -2.2734375, -1.5371094, -2.5449219, 0.5361328, 0.8256836, -0.36035156, -0.17687988, 0.53222656, 0.10675049, 1.7294922, 1.4638672, -0.38134766, 1.6044922, -0.5234375, 1.4179688, -1.1933594, 0.4482422, 0.47460938, -1.1826172, 2.015625, 4.0742188, -1.3300781, -2.3984375, -2.0273438, 2.0566406, -0.45043945, -0.8071289, -1.65625, -2.4902344, -1.3027344, -3.5566406, 0.47583008, -2.1347656, 0.9614258, 2.4160156, 0.034118652, -3.0625, 0.60253906, -0.21948242, 1.4130859, -0.67822266, -0.005756378, 1.6894531, -1.9550781, 0.5205078, -3.2265625, 1.6484375, -0.91796875, -0.083496094, -1.8271484, 2.796875, 0.23803711, 1.1494141, -3.140625, -1.5732422, 0.9746094, -0.44604492, -1.0175781, -1.3017578, 2.4570312, 1.1855469, 1.5224609, 1.1064453, -1.5800781, 0.5229492, -0.08337402, 0.28979492, -1.7519531, -1.1992188, 2.234375, 0.89208984, -0.18762207, -1.4892578, -2.8554688, -0.20288086, 0.9404297, 1.1992188, -1.4287109, 0.8027344, 0.4189453, 0.5888672, -0.3293457, 1.3701172, -0.5708008, -0.1730957, 0.66308594, -0.8183594, -0.65771484, -0.21728516, -0.4416504, -1.4169922, 0.5175781, -1.3417969, 0.3840332, -0.22766113, 0.92871094, -3.3183594, -3.734375, -0.5732422, -1.2988281, 2.0273438, 2.015625, 1.5625, -1.7841797, 0.41748047, -0.92041016, 0.9663086, -1.5673828, 1.8945312, -0.2208252, 1.0429688, 2.2636719, 0.4892578, 0.7207031, 0.46606445, 2.1269531, 0.14758301, 2.3320312, -0.5908203, 1.9863281, -1.7041016, -1.4863281, 2.515625, 0.23400879, 0.08276367, 0.51220703, -1.1259766, 1.9482422, -0.5527344, -1.5449219, -1.1650391, -0.06732178, -0.13867188, -2.2304688, -1.2705078, -1.5058594, 0.19506836, 1.1640625, -2.1308594, 1.7695312, 1.6142578, 0.9614258, -1.4199219, 0.9086914, 1.7949219, 0.7944336, 0.11590576, 0.32617188, -1.1972656, 1.5146484, -2.0605469, -0.98876953, 1.3417969, 0.04989624, -1.6230469, -0.9248047, 0.35766602, -1.5683594, 2.6914062, 0.74902344, -2.2910156, -2.0996094, -1.0771484, -0.62841797, 1.9853516, -0.41259766, 0.8149414, 1.0517578, -1.4736328, 2.2050781, -1.4960938, 0.51904297, 0.9277344, -0.5673828, 2.3339844, -1.625, -0.70751953, -0.39257812, 1.8232422, -1.4121094, 1.1708984, 1.8613281, 4.4609375, -1.4863281, -3.2167969, 3.2089844, -1.1933594, -1.3261719, 0.8959961, -0.79785156, -0.19604492, -0.33618164, 1.9492188, 0.28149414, 1.3203125, 0.5410156, -0.65966797, -1.3408203, 0.11279297, -1.3232422, -0.94189453, 0.026000977, -0.124816895, -1.3818359, -1.8417969, 0.43798828, -1.0126953, -2.1914062, 1.8144531, -2.3222656, 2.1152344, 0.609375, 1.5419922, 1.7978516, -1.0839844, -1.8066406, -0.9272461, -0.13684082, -1.21875, -1.0136719, 0.44018555, -0.7836914, 0.15551758, -0.037231445, 0.6855469, -1.5595703, -2.6269531, -0.3708496, -2.53125, -1.2373047, -0.60839844, -2.4941406, -1.7753906, -0.08746338, -2.6777344, 0.49731445, -0.32910156, -4.4296875, -1.5419922, -0.75390625, -0.57421875, 1.0888672, -0.07739258, -0.111694336, 0.44482422, -3.796875, 0.16967773, 0.015731812, -0.6279297, 0.42773438, -0.9628906, -1.0322266, 0.12194824, -0.57128906, -0.9086914, 0.20593262, 1.2138672, -0.2854004, -0.71972656, -3.4882812, 0.5761719, -2.2109375, 1.3164062, 0.014091492, 1.0546875, -2.265625, -0.5385742, 0.16491699, -1.9804688, 4.2851562, -0.7138672, 1.7587891, -0.41333008, 0.15112305, 1.1582031, -0.057525635, -2.2753906, -1.7353516, -0.49023438, -3.0585938, -3.4941406, -2.0722656, 0.02960205, -0.49169922, -0.08984375, -0.91503906, 2.4277344, -1.8183594, 1.6416016, -1.40625, -2.328125, 0.89501953, 1.2294922, -0.076416016, 0.62353516, -1.1230469, -1.140625, -1.4228516, -0.8354492, 0.6645508, 3.3515625, -0.26757812, 2.2636719, -0.2220459, -0.7246094, -0.31201172, -0.46826172, -2.9394531, 3.2441406, 2.4648438, -2.6757812, 2.3964844, -0.9760742, -2.4003906, -1.234375, 0.26367188, 2.7285156, 1.9521484, 2.9160156, 0.47705078, 1.9521484, 1.4150391, 3.0410156, 0.6904297, -0.2800293, -0.55566406, 2.0996094, -1.4277344, -3.2109375, 0.4855957, 1.8037109, -1.3798828, -1.6162109, 1.1503906, 1.9628906, 3.9902344, 1.5800781, 1.7675781, 1.4648438, -1.09375, 1.4160156, 0.69921875, 0.5683594, -0.85791016, -0.43310547, 1.3144531, -0.23999023, 0.4104004, 2.921875, 0.13000488, 2.1210938, -0.3100586, 0.9633789, -1.0097656, 1.1542969, 1.3603516, 2.5351562, 0.15490723, 0.57666016, -0.08709717, 1.5361328, 1.2587891, -0.7944336, 0.0418396, -3.1660156, 0.26708984, 1.53125, 0.37573242, 0.39770508, 1.2011719, 0.93066406, 0.91748047, 0.32006836, -0.53808594, -1.5683594, 0.06359863, -0.1986084, -0.3322754, -1.1640625, -2.5585938, 2.5214844, -0.5078125, -2.2167969, 0.2746582, 2.8359375, -1.1767578, -1.1162109, 2.2597656, 0.39208984, -1.1738281, 1.5917969, 0.87353516, -0.80810547, 1.2265625, -1.5371094, 0.46801758, 1.0888672, -0.6621094, -0.40185547, -1.9736328, 0.50097656, 0.30664062, 0.45507812, 1.6708984, 1.2480469, -1.5908203, -0.13305664, -2.9667969, -0.05795288, -0.033203125, -1.7480469, -0.5288086, 1.6855469, 0.34448242, 0.92041016, -1.8242188, 4.6601562, 0.56591797, -1.3046875, 1.8974609, -2.7382812, -2.5214844, -4.3242188, -3.5390625, 0.79296875, -0.7915039, -1.5195312, 1.8417969, 0.62646484, -0.24633789, 2.5722656, 0.2824707, -1.8017578, -0.7871094, -0.69140625, 0.5649414, 0.08514404, -0.90527344, 1.6787109, -1.0986328, -2.796875, -2.4648438, -0.2770996, -0.13684082, 1.7734375, 1.96875, -2.5351562, 2.0585938, -1.9453125, 0.84228516, -0.58691406, -1.1015625, 0.8881836, -1.53125, 0.44335938, -2.8339844, 1.9150391, 1.3613281, -1.3417969, 0.9008789, 0.5883789, 0.79541016, -2.6210938, -0.58203125, 0.57373047, 3.7167969, -0.43945312, -2.7167969, -1.8925781, 0.3383789, 0.006500244, -1.3613281, -0.44311523, -0.5292969, -1.9628906, 0.5942383, 2.4023438, 1.0693359, 1.7646484, 0.6665039, -3.7792969, -1.4267578, 0.5229492, -1.4550781, -1.3789062, -1.6855469, 1.1005859, -0.030197144, -1.1552734, -1.0986328, 0.3293457, -2.3847656, -0.50878906, -2.3222656, 3.6972656, 2.421875, 0.69140625, 3.1464844, -1.1767578, -0.075805664, 0.89208984, 0.111328125, -1.3173828, 1.5205078, 0.023498535, 0.56884766, 1.4609375, -0.15673828, -1.875, -0.4296875, 1.8017578, -1.5117188, 0.22521973, -0.5444336, 0.17529297, -0.6899414, -0.66259766, 2.9628906, -0.26635742, 2.1542969, -0.6557617, 0.14001465, 0.14294434, 0.10772705, -1.3847656, 1.3046875, -0.45043945, 1.5234375, -0.88623047, 1.7392578, 1.4580078, -1.9716797, -0.8222656, -0.7871094, 1.2294922, -0.1821289, 0.70214844, -0.3239746, 0.23254395, 0.25683594, -1.9736328, 1.9550781, 2.3808594, 0.19506836, 3.5273438, 0.828125, -2.046875, 2.0644531, -0.5385742, -1.7480469, 0.4597168, 1.2041016, -0.15991211, 0.6386719, 0.82666016, -3.6523438, -1.1796875, 2.640625, -0.68359375, 0.9501953, -0.35498047, -1.6640625, 1.1044922, -0.5576172, -0.7836914, 0.33154297, 0.49145508, -0.39575195, -0.8466797, 0.40966797, -2.3085938, 1.2646484, 2.03125, 0.042022705, -2.28125, 3.0664062, -0.96875, 1.0009766, -0.8413086, 0.55908203, -2.4414062, -0.07507324, 3.4726562, 1.34375, 1.7949219, 0.96728516, 0.96728516, -2.9726562, 0.5332031, -2.5, 3.8222656, -2.4472656, -0.4387207, 2.7460938, -2.6132812, 1.9570312, -2.1152344, 0.31518555, -0.8222656, 2.3339844, 1.78125, -0.069885254, 0.22473145, 1.0322266, -1.4541016, -3.5449219, -2.3535156, 0.93847656, -0.10211182, -0.69384766, 1.3261719, -1.6767578, 0.9116211, 0.921875, -0.051574707, -1.6992188, -0.29492188, -1.7109375, -1.4765625, -1.5205078, 0.02218628, -1.53125, 0.85839844, -0.4519043, 0.14550781, 0.9873047, -3.6660156, -1.7734375, 1.6455078, -2.0214844, 1.0947266, 2.7597656, 0.4638672, -0.40429688, 0.15185547, -0.27563477, -1.0146484, 1.5175781, -1.6445312, 0.8364258, 1.0351562, -0.68652344, 1.4785156, -1.2900391, -1.2929688, 0.049468994, -1.2451172, 0.9614258, 0.6953125, 0.50439453, 0.35180664, 0.9116211, -1.1738281, -2.5234375, 0.59033203, -0.11645508, 0.71484375, 1.5517578, -2.0195312, -0.98291016, -1.9746094, -2.453125, -1.1640625, -2.6835938, 0.4880371, -0.56347656, 0.38916016, 0.45239258, -0.7182617, 0.39794922, 0.048461914, 1.0927734, -0.66796875, 0.15722656, -1.5703125, 2.3320312, 1.7392578, -2.7382812, -0.13537598, -0.6958008, 1.1318359, 2.1210938, 1.2412109, 0.04928589, -1.171875, -0.48779297, -0.38134766, -0.28320312, 0.66308594, 2.3847656, -0.8364258, -0.32006836, 1.0761719, 2.7578125, 1.3808594, 0.14746094, 1.5546875, 0.94921875, 0.44482422, 4.484375, -1.2441406, -2.2910156, 1.2646484, -2.2519531, 2.8398438, 0.54296875, -2.4589844, 1.6044922, -1.3388672, -1.7470703, -2.3027344, -0.6772461, -3.0507812, 1.8720703, 1.6669922, -0.053985596, -1.1494141, 2.9550781, 1.0986328, 1.6162109, 1.234375, 0.04486084, 0.23474121, 0.2565918, -0.6958008, -0.53808594, 1.4785156, -1.7294922, 2.2128906, 1.7832031, 0.021362305, -0.85791016, 3.4023438, 1.140625, 2.2226562, 1.84375, 1.3955078, 2.2695312, 2.6542969, 2.6816406, 0.5522461, 1.4238281, 0.89501953, -1.0800781, 2.7871094, 2.21875, 3.6191406, -0.5307617, -0.6196289, 2.96875, -0.09802246, -1.03125, 0.21936035, 0.49023438, 0.51464844, -1.1640625, 1.1816406, 0.6821289, 0.6508789, -1.9765625, 0.3605957, -0.61328125, -0.9375, -1.4443359, 0.69873047, 3.0566406, -0.3413086, 0.26245117, -0.59765625, -0.42773438, 2.3105469, -3.7148438, 1.0351562, 1.9082031, 0.07244873, 0.19433594, 1.3886719, 1.2304688, 0.2084961, 1.1152344, 1.4775391, 0.51904297, 0.828125, 1.1796875, -1.1298828, 0.9189453, 0.3708496, 3.1132812, -1.3457031, 0.15917969, 2.2753906, -1.0810547, -2.1035156, -4.6757812, 2.9882812, 1.5800781, 1.3427734, 1.8271484, -1.6787109, 1.9980469, 0.20178223, 1.1982422, -1.9316406, 0.8510742, -0.38842773, -1.9296875, -2.0488281, 0.8227539, 0.6665039, 1.7392578, 1.4003906, -1.5654297, 1.7675781, -0.16308594, 0.8535156, 2.3398438, 1.6728516, -0.23498535, 0.17358398, -0.27978516, 2.0273438, 0.2052002, -1.2539062, -0.59716797, 1.5507812, 1.1601562, -0.74902344, -0.030853271, 0.046936035, -1.7558594, -0.4189453, -0.8378906, -0.7631836, -2.3710938, -2.3007812, 0.6689453, 0.4050293, -2.4101562, -1.7529297, 0.81347656, 0.41064453, -0.30615234, -0.38720703, 2.2148438, -1.1552734, 1.6699219, 1.4648438, -0.099731445, 0.84277344, -2.2460938, 1.1230469, 1.6542969, -2.1210938, -0.04574585, 0.47924805, -0.3618164, -1.3925781, 0.080078125, -0.12927246, -0.53027344, 0.82373047, 1.4111328, -0.6801758, -1.7041016, 1.2949219, -1.5449219, 0.5541992, 3.0351562, 0.037322998, -0.21276855, -2.5546875, -1.8916016, -0.75878906, -0.039489746, 0.20349121, 1.5068359, 3.5390625, 2.5410156, -0.027786255, -1.7871094, -2.8203125, 1.3193359, -0.7993164, 1.4111328, -1.5400391, -0.14807129, 0.25585938, 0.6533203, 2.9765625, -0.33007812, -2.140625, -0.38208008, -2.1796875, 0.36767578, -0.13098145, 2.0722656, -0.33276367, 1.3417969, 0.39257812, 1.6425781, 2.1660156, -0.2397461, 1.4794922, 2.6679688, 0.29418945, -1.9257812, 2.6738281, -0.93896484, 0.8989258, -0.24182129, 0.6123047, 0.72509766, 1.3417969, 1.7548828, -0.55078125, -2.6757812]}, "B091F4D7FF": {"id": "B091F4D7FF", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver\nDescription: \nFeatures: High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time.\nSufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "embedding": [-2.0605469, 0.33813477, 1.53125, -0.19689941, -0.058807373, 1.6708984, 1.0566406, -1.0546875, -1.3388672, 0.55126953, 1.3681641, -1.1933594, 0.46264648, -2.3886719, 0.25268555, -0.39746094, 0.44702148, 0.3701172, 0.85498047, 0.46923828, 0.18139648, 1.5136719, 3.4921875, 0.119140625, 0.36767578, 1.6005859, 2.4628906, -4.0117188, -0.13427734, -0.61083984, 2.9433594, 0.28515625, 0.0121154785, 1.7070312, -2.9257812, -1.7832031, -1.7050781, 0.35766602, -3.1113281, 0.26831055, 0.7919922, -1.5927734, 1.3955078, 0.7973633, -2.4550781, 0.6435547, 0.3383789, 0.019088745, -2.3300781, -0.22167969, 1.3125, 0.9902344, 0.23583984, 0.48657227, -0.9008789, 1.8652344, 1.390625, -1.5410156, 1.2421875, 0.45581055, 2.5820312, -0.0076026917, -2.0410156, -0.086242676, -0.50634766, -1.2695312, 0.76416016, 0.041046143, -0.43823242, -1.0058594, 1.3310547, -0.53515625, -1.4072266, 0.5336914, -0.4831543, -1.9619141, -1.7226562, 1.8789062, 0.7421875, -0.1661377, -3.1132812, 2.1484375, 1.2451172, -2.0507812, -0.93359375, 0.8803711, -0.8745117, -1.0605469, 1.5048828, 0.90185547, 0.06329346, 2.0703125, -3.2578125, -3.9433594, 3.0234375, -1.5634766, 1.0058594, 1.2890625, 0.2944336, 2.1386719, -0.4868164, -1.2802734, -2.7460938, -1.4570312, -0.5317383, -2.3710938, 1.4257812, -0.118652344, -3.3515625, -1.2539062, -1.3134766, 0.75439453, 1.0625, -0.70654297, 1.0761719, 0.20080566, -0.3408203, 2.1660156, 2.0214844, 0.2980957, 1.8847656, -0.28808594, 1.8408203, -1.5810547, 0.74560547, 1.0585938, -2.0605469, 2.3242188, 5.3632812, -2.171875, -1.8886719, -2.625, 1.8935547, -0.88134766, -0.6928711, -2.3496094, -2.7128906, 0.12561035, -3.6074219, 0.75878906, -2.3066406, 1.1933594, 1.9443359, 0.30859375, -2.6425781, -0.0496521, -0.67041016, 1.0234375, -0.088134766, -1.0175781, 0.24157715, -1.7119141, 0.8984375, -3.4023438, 2.0761719, -1.2539062, -0.29174805, -1.8935547, 3.9238281, 0.67529297, 1.0537109, -3.3222656, -0.7705078, 1.4814453, -0.95751953, -0.9067383, -0.9707031, 3.8066406, 0.8623047, 1.7363281, -0.12487793, -1.7275391, 0.16918945, -0.82714844, 0.43725586, -0.5341797, -1.1630859, 2.3652344, 0.86816406, -0.7290039, -1.9755859, -2.9335938, 0.17541504, 0.2939453, 1.1914062, -1.4853516, 1.2333984, 1.2373047, 1.2636719, -1.0097656, 0.07702637, 0.29907227, -0.120910645, 0.33740234, -0.46850586, -0.38500977, -0.67089844, -1.4863281, -0.7216797, 0.011985779, -0.30664062, 0.045410156, -0.052001953, 1.3710938, -3.4785156, -3.390625, -0.3334961, -3.1503906, 1.9521484, 1.6064453, 1.9345703, -1.6708984, -0.19824219, -1.7197266, -0.15979004, -1.9824219, 2.2597656, -0.45703125, 1.9228516, 2.4960938, -0.6796875, 0.55371094, 1.0429688, 2.1738281, 1.0537109, 1.2353516, 0.6508789, 1.1816406, -1.4599609, -1.0449219, 2.1269531, 0.021636963, 0.68066406, 1.7783203, -1.1376953, 2.2539062, -0.7128906, -2.359375, -0.5493164, -0.2442627, 0.64453125, -1.9003906, -0.85253906, -1.5136719, -0.33618164, 0.94677734, -1.7880859, 2.3261719, 1.7529297, 1.0361328, -0.27172852, 1.4638672, 0.86816406, 0.22949219, -0.19384766, -0.32250977, -1.0732422, 0.44970703, -1.2324219, -1.4462891, 1.9277344, -0.59814453, -0.46240234, -0.77246094, -0.3095703, -1.9150391, 2.921875, 0.8647461, -2.3398438, -1.7832031, -0.07928467, -0.93115234, 2.3691406, -1.3085938, 1.1005859, 2.3417969, -1.6982422, 2.6035156, -1.3525391, 0.8671875, 0.5214844, -1.0117188, 1.7001953, -1.9423828, -0.17456055, 0.6953125, 1.8427734, -0.96533203, 0.5097656, 1.1201172, 4.2148438, -0.88671875, -3.265625, 2.3691406, -1.8867188, -1.3388672, 1.9179688, -0.7363281, 0.1328125, 0.0127334595, 1.4775391, 0.42260742, 1.5166016, 0.10870361, -1.1962891, -1.3310547, 0.62646484, -1.4394531, -0.9746094, 0.2932129, 0.67285156, -0.6635742, -2.6191406, -0.02909851, -1.5068359, -1.0507812, 3.0449219, -2.2480469, 1.625, 1.5253906, 1.6425781, 1.1445312, -1.7636719, -1.8046875, 0.1303711, -0.0070495605, -1.4501953, -0.3449707, -0.17456055, 0.13098145, -0.39624023, -0.546875, -0.19750977, -2.0957031, -2.4140625, -0.25097656, -3.2050781, -1.4941406, -1.1474609, -2.6269531, -1.2587891, 0.2680664, -3.609375, -0.41918945, -0.5888672, -4.0117188, -0.99365234, -1.8798828, -0.93359375, 1.0175781, 0.6513672, -0.055541992, 0.033996582, -3.2148438, 0.38720703, -1.1777344, -0.27319336, 0.9057617, 1.1865234, -0.5932617, -0.16418457, -1.5449219, -0.31591797, 1.2607422, 0.70996094, -1.3144531, -1.2988281, -3.8417969, 0.52490234, -1.5087891, 0.3527832, -0.48779297, 1.8291016, -2.171875, -1.4140625, -1.1201172, -1.0800781, 3.46875, -0.51904297, 1.2939453, 0.5175781, 0.70703125, 1.6660156, -0.25268555, -1.7460938, -1.2636719, 1.0761719, -2.9277344, -3.1035156, -2.6972656, 0.50439453, -0.328125, -0.07006836, -0.8125, 2.1035156, -1.2529297, 1.1708984, -1.7294922, -2.3242188, 0.45776367, 1.5380859, -0.44311523, -1.0576172, -2.0839844, -1.2744141, -0.87646484, -1.0126953, 0.37231445, 2.7929688, -1.546875, 1.2421875, 0.8901367, 0.011199951, 0.32250977, -1.3037109, -1.5996094, 4.03125, 0.63378906, -1.8037109, 2.1796875, -1.5566406, -3.1171875, -1.2773438, 0.31860352, 2.5527344, 0.7001953, 2.7988281, 0.5546875, 2.3867188, 0.9345703, 2.0175781, 1.3642578, -0.82714844, -0.62939453, 3.1171875, -0.16699219, -2.4042969, 0.28051758, 2.0820312, -1.5830078, -1.2216797, 2.5410156, 1.5634766, 3.1503906, 1.9443359, 1.4179688, 0.94433594, -1.28125, 1.8261719, 1.8095703, 1.2919922, -0.19519043, -0.97558594, 0.63623047, -1.2216797, 1.0917969, 2.890625, 0.20373535, 2.3046875, 0.4597168, 0.60498047, -1.1611328, 1.1152344, 1.8525391, 2.65625, 0.61328125, 1.9667969, -0.26586914, -0.09387207, -0.16333008, -1.7470703, 0.06781006, -2.3261719, 0.15637207, 1.8652344, -0.43188477, 1.1738281, 0.99121094, 1.0644531, 0.09857178, -0.072631836, 0.48242188, -0.97802734, 0.15307617, 1.0195312, 0.47753906, 0.6376953, -2.2792969, 2.2617188, -0.8828125, -1.1298828, 0.07800293, 2.8535156, -1.234375, -1.8847656, 1.4101562, 0.15844727, -1.2333984, 2.3457031, 1.0585938, -1.6289062, 0.7207031, -2.3222656, 1.0175781, -0.3684082, -1.0429688, -0.1451416, -1.1445312, -0.4873047, -0.04135132, 1.4306641, 1.4589844, 2.109375, -1.0283203, 0.40429688, -3.6035156, 0.52197266, 0.3022461, -1.9667969, -1.9492188, 1.9882812, 0.44799805, 0.8696289, -1.8144531, 3.484375, -0.3552246, -0.90478516, 1.7949219, -3.0332031, -1.6767578, -4.1640625, -3.8261719, 1.1865234, -1.5175781, -2.1484375, 1.625, -0.037200928, -0.79003906, 1.7226562, -0.051940918, -1.2753906, -0.6074219, -0.7338867, -0.6196289, -0.012260437, -1.2519531, 1.2861328, -0.21911621, -1.8261719, -2.1621094, 0.1665039, 0.10827637, 1.3203125, 1.5820312, -2.6269531, 2.1582031, -2.8320312, 0.45092773, 0.22351074, -1.9033203, 1.2792969, -2.25, 0.22766113, -3.8984375, 1.5332031, 1.1123047, -1.3457031, 1.3447266, 1.8134766, 0.56347656, -2.2734375, -1.8330078, 0.9682617, 4.4375, -0.6845703, -2.1992188, -2.3457031, 1.390625, -0.3425293, -2.2167969, 0.10675049, -1.5722656, -1.7226562, 0.1027832, 2.484375, 1.6855469, 1.2597656, 0.8564453, -1.9130859, -1.3535156, 0.5625, -1.6386719, -1.8037109, -1.1425781, 0.8017578, 0.26123047, -1.1181641, -1.3330078, -0.30688477, -1.6728516, 1.0488281, -2.5839844, 3.5742188, 1.9443359, 1.5390625, 2.9980469, -1.3837891, 0.2590332, 0.67822266, 0.3330078, -1.5302734, 2.0351562, -0.0006685257, -0.24401855, 1.6650391, 0.45166016, -1.5185547, -0.14892578, 2.4375, -1.4716797, -0.30297852, -0.49047852, 0.2998047, -0.43554688, 0.031219482, 1.9033203, -0.052612305, 2.7539062, -0.2878418, -0.76904297, 0.06329346, 0.9458008, -1.4052734, 0.70166016, -0.01373291, -0.54248047, -0.33862305, 1.3994141, 1.2626953, -0.69873047, 0.5810547, -0.77685547, 2.6582031, 0.36816406, 0.4831543, -0.8886719, 0.96240234, -0.026824951, -2.2871094, 1.5986328, 2.671875, 0.071899414, 3.4980469, 1.7421875, -2.2285156, 2.2128906, -0.30810547, -3.0527344, -0.77783203, 0.92041016, 0.5551758, 0.64990234, 1.5126953, -3.0644531, -1.1962891, 1.9755859, -0.82666016, 0.7368164, 0.29907227, -2.5234375, 0.97802734, -1.1503906, -0.31640625, -0.42578125, 0.99609375, -1.0722656, -0.19921875, 0.63720703, -1.0039062, 0.92626953, 1.7216797, -0.17358398, -2.3457031, 3.6914062, -0.33740234, 1.609375, -0.44018555, 0.6694336, -2.3300781, 0.2763672, 4.3515625, 1, 2.2480469, 0.87353516, 1.8955078, -2.4238281, 0.9453125, -2.6191406, 4.375, -1.7294922, -0.8911133, 3.1445312, -4.0664062, 0.25585938, -2.2089844, 1.1943359, -0.40283203, 1.4042969, 1.4355469, -0.6855469, 0.32958984, 1.1123047, -1.8427734, -3.7050781, -2.0585938, 1.0429688, 0.17346191, -0.9707031, 1.0517578, -1.3652344, 1.2373047, 0.31298828, -0.044403076, -2.9140625, 0.3642578, -1.1738281, -1.3193359, -1.9257812, 0.3347168, -0.5004883, 1.1064453, -0.11968994, -0.060546875, 0.77490234, -4.0234375, -1.2861328, 1.453125, -1.2060547, 1.0175781, 2.4316406, -0.13867188, 0.17944336, 0.61328125, -0.3774414, -1.6494141, 1.0029297, -1.4414062, 0.37597656, 0.953125, -0.0121536255, -0.012016296, -0.9301758, -1.3300781, -0.09454346, -0.76416016, 0.36816406, 1.4414062, -0.37402344, 0.20800781, 0.8076172, -0.28076172, -1.7539062, 0.39282227, -0.58496094, -0.020111084, 1.4804688, -1.4785156, -1.1435547, -1.96875, -2.2363281, -0.66552734, -2.6191406, 0.7182617, -1.4130859, 1.1972656, 1.4160156, -0.31811523, 0.8540039, 0.27441406, -0.05819702, -0.1977539, 0.5654297, -1.1376953, 2.859375, 1.0849609, -1.2333984, -0.48364258, -1.1494141, 0.71728516, 2.0253906, 1.0761719, -0.89990234, 0.22033691, 0.30297852, 0.0038604736, -0.37890625, 0.640625, 1.6259766, -0.8432617, -1.6025391, 1.2919922, 4.1484375, 1.0791016, 0.9458008, 0.74853516, 0.4663086, 0.7705078, 4.8164062, -0.039031982, -1.5136719, 1.5576172, -2.3007812, 1.9931641, 0.3322754, -0.83203125, 0.22619629, -1.3779297, -1.8242188, -1.3935547, -0.3869629, -2.5273438, 1.2617188, 2.5292969, -1.2695312, -0.4831543, 2.0175781, 0.98535156, 1.7685547, 2.4453125, 0.69384766, 0.13391113, 1.8769531, -1.1308594, -0.12976074, 1.2089844, -1.9013672, 1.3681641, 2.2050781, -0.89746094, -1.5869141, 3.3417969, 0.054718018, 2.2480469, 1.6396484, 0.40234375, 1.9013672, 2.421875, 3.2070312, 0.16125488, 1.015625, 0.066589355, -0.72314453, 1.3046875, 1.7998047, 3.2460938, -0.42700195, 0.62353516, 2.1757812, -1.3183594, -0.9555664, 0.6567383, 0.47216797, 1.2285156, -2.0371094, 1.8095703, 0.20019531, 0.75878906, -1.2753906, -0.609375, -0.44799805, -1.2265625, -1.0341797, 0.75390625, 2.8066406, -1.3740234, 0.8203125, -0.90185547, -0.20910645, 2.0820312, -2.5351562, 0.9711914, 1.2753906, 0.12200928, 0.6977539, 1.2138672, 1.6416016, 0.4152832, 0.23486328, 1.4736328, 0.7895508, 1.2626953, 1.1191406, -1.25, 1.4501953, 0.12841797, 2.9433594, -1.3115234, 0.44677734, 3.3007812, -2.484375, -2.3125, -4.125, 3.0351562, 2.796875, 0.6357422, 2.8144531, -1.4804688, 3.4589844, -0.30249023, 0.5649414, -2.0039062, 0.76953125, -0.5522461, -1.6621094, -1.5214844, 0.73535156, -0.17822266, 2.2539062, 2.046875, -0.8535156, 0.7841797, 0.37304688, 0.56347656, 2.53125, 2.3417969, 0.012954712, 1.5097656, 0.3696289, 1.7490234, 0.39770508, -1.2255859, -2.7988281, 2.1308594, 0.86328125, -0.57714844, 0.66308594, -0.15917969, -0.8466797, -0.86572266, -0.6533203, 0.44702148, -2.4746094, -2.3554688, -0.21459961, -0.2980957, -1.5048828, -1.3242188, 2.6386719, 0.15026855, -1.2783203, -0.23278809, 1.6582031, -2.0761719, 1.5732422, 0.98046875, 0.9580078, 0.4909668, -1.390625, 0.8964844, 0.88378906, -1.7685547, 0.14355469, -0.40600586, 1.9931641, -1.9707031, -0.065979004, -0.09637451, 0.43066406, 0.6972656, 0.74121094, -0.90722656, -0.61083984, 2.5097656, -0.8173828, -0.071777344, 2.8613281, -0.34106445, 0.46313477, -2.6582031, -3.0019531, -0.46923828, -0.45776367, -0.6010742, 0.8383789, 2.7304688, 3.2070312, -0.09259033, -2.0761719, -4.09375, -0.3515625, -0.9321289, 0.55615234, -1.0859375, -0.43603516, 0.56591797, 1.0341797, 2.4238281, -0.07281494, -2.3027344, -0.25146484, -0.8623047, -0.3022461, -0.59375, 2.75, -0.6225586, 1.96875, -0.29516602, 1.6669922, 1.4921875, -0.98779297, 1.2441406, 3.109375, 0.19384766, -2.5761719, 2.8339844, -0.99365234, 0.23791504, 0.0129776, 1.1777344, 1.5449219, 0.7050781, 1.5957031, -0.7753906, -2.6621094]}, "B091F4VJLR": {"id": "B091F4VJLR", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee\nDescription: \nFeatures: Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously.\nStrong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output.\nRotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts.\nPrecise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge.\nHassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.\n", "embedding": [-0.73046875, 0.36889648, 0.97998047, 0.15563965, 0.45166016, 2.0039062, 0.70214844, -1.2207031, -1.2763672, 0.20812988, 0.8383789, -0.17297363, 0.6875, -3.7539062, 0.40429688, 0.1986084, 0.39892578, -0.14013672, 1.6357422, -0.1607666, -0.08105469, 1.8691406, 2.8945312, 0.75341797, -0.3647461, 1.5742188, 3.5585938, -3.0976562, -0.34887695, -1.1767578, 3.5273438, 0.42700195, -0.5839844, 1.1757812, -3.5292969, -1.0302734, -1.6904297, 0.87597656, -1.6044922, 1.6171875, 0.8652344, -1.8779297, 0.34570312, 1.4404297, -2.5898438, 0.061340332, -0.25439453, 0.51220703, -1.59375, -0.9555664, 0.99316406, 1.1552734, -0.77685547, 0.18078613, -1.1347656, 2.0234375, 1.4130859, -2.0410156, 1.0791016, 0.39111328, 2.7363281, -0.021728516, -2.0214844, -0.51171875, -0.8881836, -0.96777344, 0.82714844, 0.421875, -0.30810547, -2.0332031, 1.6894531, 0.4501953, -1.5107422, 0.036895752, 0.15161133, -0.63378906, -1.9804688, 1.6923828, 1.5771484, -1.0751953, -1.6269531, 1.84375, 1.2958984, -2.1484375, -0.008682251, 0.9428711, -0.8149414, 0.24072266, 2.4589844, 1.4453125, 0.35327148, 2.5527344, -3.2402344, -4.140625, 2.7578125, -1.7441406, 0.07897949, 0.8833008, 0.3371582, 1.8154297, 1.109375, -1.4023438, -2.0351562, -1.3291016, 0.6147461, -1.3525391, 1.0537109, 0.24865723, -2.3125, -1.5419922, -2.4765625, 0.49951172, 0.6977539, -0.39624023, -0.08898926, 0.4716797, -0.0053901672, 1.7304688, 1.5205078, -0.48876953, 1.7900391, -0.625, 1.5009766, -1.2412109, 0.50927734, 0.5888672, -1.1347656, 2.015625, 4.09375, -1.453125, -2.3710938, -2.2265625, 2.171875, -0.5527344, -0.88916016, -1.6269531, -2.5078125, -1.1484375, -3.7089844, 0.33007812, -2.0839844, 0.8256836, 2.3925781, 0.14160156, -2.9902344, 0.53808594, 0.05441284, 1.5429688, -0.6875, -0.04168701, 1.6923828, -2.0429688, 0.56347656, -3.1757812, 1.5820312, -1.0654297, -0.22509766, -1.8544922, 2.8476562, 0.15673828, 1.0761719, -3.2539062, -1.5009766, 1.0947266, -0.61083984, -0.87890625, -1.3222656, 2.6289062, 1.0673828, 1.5390625, 1.0800781, -1.4892578, 0.5473633, 0.030807495, 0.34033203, -1.6621094, -1.0009766, 2.3222656, 0.8305664, -0.22338867, -1.4267578, -2.796875, -0.21875, 0.9589844, 1.2080078, -1.3857422, 0.88183594, 0.5834961, 0.47314453, -0.22692871, 1.3164062, -0.6352539, -0.08685303, 0.60302734, -0.6772461, -0.5439453, -0.015975952, -0.54296875, -1.6054688, 0.45117188, -1.1582031, 0.45947266, -0.20605469, 0.84228516, -3.3476562, -3.796875, -0.4182129, -1.3564453, 1.8613281, 1.9580078, 1.6044922, -1.8671875, 0.31762695, -0.98339844, 0.8676758, -1.4707031, 1.6953125, -0.24584961, 1.0722656, 2.2265625, 0.38232422, 0.75683594, 0.59228516, 2.0800781, 0.14123535, 2.2148438, -0.68603516, 2.0957031, -1.6796875, -1.5966797, 2.5078125, 0.17895508, -0.06439209, 0.5258789, -1.0566406, 1.8945312, -0.55078125, -1.5371094, -1.0341797, -0.24157715, -0.1743164, -1.8798828, -1.1455078, -1.5878906, 0.15209961, 1.2236328, -2.09375, 2.03125, 1.5654297, 1.1845703, -1.3837891, 0.8378906, 1.7578125, 0.7475586, 0.09094238, 0.4020996, -1.0048828, 1.6230469, -1.9326172, -0.94433594, 1.2451172, -0.24072266, -1.6728516, -0.859375, 0.26831055, -1.4482422, 2.7988281, 0.6035156, -2.2695312, -2.078125, -1.0644531, -0.6611328, 1.9111328, -0.2697754, 0.7709961, 1.2246094, -1.3691406, 2.0136719, -1.6474609, 0.41479492, 0.765625, -0.48242188, 2.1679688, -1.6533203, -0.85839844, -0.30517578, 1.5761719, -1.3808594, 1.1669922, 1.9970703, 4.4023438, -1.4306641, -3.2597656, 3.2890625, -1.1572266, -1.2246094, 0.7446289, -0.62890625, -0.25073242, -0.31591797, 1.8007812, 0.390625, 1.2275391, 0.4567871, -0.5996094, -1.2695312, 0.14587402, -1.0341797, -0.8696289, 0.0637207, 0.0146484375, -1.4296875, -1.8544922, 0.58251953, -1.2265625, -2.2910156, 1.9433594, -2.2597656, 2.2070312, 0.5756836, 1.5371094, 1.8974609, -1.0986328, -1.7666016, -0.8691406, -0.09906006, -1.2294922, -1.0595703, 0.3869629, -0.78808594, 0.31884766, -0.11627197, 0.6616211, -1.5048828, -2.5644531, -0.4128418, -2.3554688, -1.421875, -0.47143555, -2.3183594, -1.8154297, -0.044921875, -2.703125, 0.3972168, -0.48779297, -4.5546875, -1.6044922, -0.9086914, -0.64746094, 1.171875, -0.06298828, -0.11187744, 0.54541016, -3.8359375, -0.0519104, -0.12005615, -0.55615234, 0.4807129, -0.7871094, -1.0546875, 0.047332764, -0.7758789, -0.9375, 0.33081055, 1.1982422, -0.1116333, -0.76953125, -3.3417969, 0.5361328, -2.2597656, 1.3857422, 0.053253174, 0.98828125, -2.1972656, -0.70458984, 0.08679199, -2.0136719, 4.3203125, -0.69433594, 1.7167969, -0.57128906, 0.2286377, 1.2402344, -0.13415527, -2.2832031, -1.8486328, -0.51123047, -2.984375, -3.3476562, -1.96875, 0.06567383, -0.45581055, -0.07354736, -0.9628906, 2.4140625, -1.8320312, 1.5917969, -1.3867188, -2.4003906, 0.92041016, 1.171875, -0.16040039, 0.66308594, -1.0029297, -1.0791016, -1.4072266, -0.9033203, 0.60058594, 3.3710938, -0.2614746, 2.2949219, -0.0869751, -0.6694336, -0.28271484, -0.4892578, -3.046875, 3.2890625, 2.4921875, -2.7050781, 2.3027344, -0.95996094, -2.6230469, -1.3730469, 0.45654297, 2.640625, 1.9853516, 2.9492188, 0.68359375, 2.1816406, 1.4111328, 3.0683594, 0.58154297, -0.4716797, -0.59814453, 2.203125, -1.4521484, -3.2890625, 0.68603516, 1.8388672, -1.4472656, -1.5195312, 1.0507812, 1.9882812, 3.8007812, 1.4511719, 1.8662109, 1.2939453, -1.1699219, 1.4726562, 0.80126953, 0.46655273, -0.96972656, -0.43896484, 1.2324219, -0.125, 0.5263672, 2.9785156, 0.14526367, 2.1289062, -0.2467041, 0.91796875, -0.7680664, 1.078125, 1.3886719, 2.4082031, -0.00082683563, 0.5805664, -0.034454346, 1.5488281, 1.1503906, -0.7783203, 0.01828003, -3.2148438, 0.15893555, 1.5761719, 0.3894043, 0.46606445, 1.3554688, 0.8256836, 0.93847656, 0.33496094, -0.60839844, -1.5205078, -0.007545471, -0.16015625, -0.24975586, -1.2470703, -2.6601562, 2.5410156, -0.5888672, -2.2226562, 0.21655273, 2.9042969, -1.0673828, -0.99609375, 2.03125, 0.46606445, -1.3623047, 1.4511719, 0.9916992, -1.0097656, 1.1005859, -1.5605469, 0.5678711, 1.0800781, -0.6166992, -0.49780273, -1.9033203, 0.47875977, 0.22558594, 0.42407227, 1.7128906, 1.2548828, -1.5908203, -0.11206055, -2.8769531, -0.0574646, 0.02734375, -1.9111328, -0.5258789, 1.6455078, 0.33032227, 0.8510742, -1.8320312, 4.5703125, 0.5336914, -1.2363281, 1.8261719, -2.8339844, -2.4160156, -4.3242188, -3.4375, 0.7607422, -0.70996094, -1.4550781, 1.9853516, 0.55078125, -0.2697754, 2.4746094, 0.099487305, -1.9296875, -0.8095703, -0.75390625, 0.6743164, 0.04901123, -0.7871094, 1.8095703, -1.0478516, -2.8808594, -2.4980469, -0.23583984, -0.025924683, 1.8105469, 1.9394531, -2.5722656, 2.1601562, -1.8574219, 0.84228516, -0.45874023, -1.1269531, 0.9716797, -1.6875, 0.63623047, -2.7460938, 1.8066406, 1.2138672, -1.3769531, 0.8989258, 0.70703125, 0.8022461, -2.6875, -0.56152344, 0.57714844, 3.5273438, -0.30371094, -2.5898438, -1.9111328, 0.23498535, -0.036468506, -1.3046875, -0.37402344, -0.5864258, -1.9912109, 0.5390625, 2.4101562, 1.2216797, 1.9521484, 0.68408203, -3.8339844, -1.4707031, 0.36010742, -1.4541016, -1.3642578, -1.6298828, 1.1640625, -0.01739502, -0.99121094, -0.9790039, 0.115600586, -2.2285156, -0.40429688, -2.3183594, 3.5507812, 2.5097656, 0.6542969, 3.0078125, -1.2041016, -0.21386719, 0.69140625, 0.15466309, -1.3115234, 1.4746094, -0.12036133, 0.62597656, 1.3173828, -0.2980957, -1.8388672, -0.42138672, 1.7548828, -1.6220703, 0.2800293, -0.5961914, 0.022201538, -0.7915039, -0.9145508, 2.8730469, -0.17993164, 2.1855469, -0.67871094, -0.02557373, -0.018478394, 0.17053223, -1.4960938, 1.1845703, -0.49780273, 1.7294922, -0.8051758, 1.7978516, 1.5683594, -1.9970703, -0.6669922, -0.6845703, 1.2587891, -0.08685303, 0.75683594, -0.35205078, 0.35888672, 0.29101562, -1.9394531, 2.0839844, 2.1640625, 0.16308594, 3.6582031, 1.0195312, -2.046875, 1.9599609, -0.7050781, -1.7236328, 0.33154297, 1.2724609, -0.1505127, 0.79541016, 0.7885742, -3.5351562, -1.3144531, 2.609375, -0.7260742, 0.93310547, -0.26953125, -1.5917969, 1.0361328, -0.66796875, -0.8535156, 0.48999023, 0.4802246, -0.31445312, -1.0078125, 0.3696289, -2.3203125, 1.2294922, 2.1328125, 0.06945801, -2.2695312, 3.1425781, -1, 0.98339844, -0.8305664, 0.53027344, -2.4472656, -0.011306763, 3.6601562, 1.2578125, 1.9238281, 0.8720703, 1.2060547, -3.015625, 0.52734375, -2.3476562, 3.7597656, -2.3222656, -0.484375, 2.8710938, -2.671875, 1.7109375, -2.1992188, 0.24865723, -0.90478516, 2.3398438, 1.7861328, 0.074157715, 0.18811035, 1.0224609, -1.4082031, -3.4589844, -2.3105469, 1.0449219, -0.20239258, -0.8823242, 1.4707031, -1.5185547, 0.9477539, 0.92089844, -0.16699219, -1.7324219, -0.3947754, -1.5712891, -1.4248047, -1.6738281, 0.10809326, -1.4580078, 0.93847656, -0.23535156, 0.10864258, 0.9663086, -3.6640625, -1.5507812, 1.6396484, -1.9746094, 1.0419922, 2.8964844, 0.60253906, -0.33447266, 0.15844727, -0.3425293, -1.1181641, 1.5361328, -1.5517578, 0.671875, 1.0087891, -0.72558594, 1.3642578, -1.1875, -1.1542969, 0.049438477, -1.1845703, 0.8540039, 0.79833984, 0.49072266, 0.48657227, 0.92089844, -0.9941406, -2.5664062, 0.50341797, -0.024490356, 0.6303711, 1.6416016, -2.046875, -0.9790039, -1.9111328, -2.5429688, -1.1806641, -2.5898438, 0.54541016, -0.5175781, 0.6538086, 0.49951172, -0.4753418, 0.45117188, -0.027252197, 1.1679688, -0.5756836, 0.08886719, -1.5888672, 2.2246094, 1.4980469, -2.765625, -0.13537598, -0.6118164, 1.2353516, 2.265625, 1.3330078, -0.05102539, -1.0458984, -0.48510742, -0.26367188, -0.27807617, 0.6479492, 2.2304688, -0.9448242, -0.29956055, 1.25, 2.7460938, 1.3525391, 0.0758667, 1.5791016, 0.8979492, 0.31713867, 4.4023438, -1.2519531, -2.1171875, 1.3515625, -2.2402344, 2.6855469, 0.3244629, -2.3476562, 1.4511719, -1.2451172, -1.7324219, -2.28125, -0.6298828, -3.0742188, 1.8417969, 1.6503906, -0.057617188, -1.0751953, 2.7734375, 1.0400391, 1.6132812, 1.3955078, 0.17883301, 0.009994507, 0.3076172, -0.84375, -0.46679688, 1.5449219, -1.5673828, 2.2617188, 1.9316406, -0.06677246, -0.9658203, 3.4257812, 1.1015625, 2.2285156, 1.9228516, 1.2919922, 2.2675781, 2.640625, 2.75, 0.6459961, 1.4765625, 0.92333984, -0.97998047, 2.7792969, 2.3574219, 3.5585938, -0.4230957, -0.4724121, 3.0410156, -0.064819336, -1.1035156, 0.40673828, 0.59814453, 0.52246094, -1.2890625, 1.1962891, 0.4880371, 0.6147461, -1.8837891, 0.45458984, -0.5629883, -0.92626953, -1.2988281, 0.5761719, 3.1074219, -0.46875, 0.33520508, -0.4519043, -0.4572754, 2.3652344, -3.8183594, 0.74609375, 1.8378906, -0.09246826, 0.16577148, 1.4619141, 1.1201172, 0.096191406, 1.1083984, 1.4453125, 0.57177734, 0.76416016, 1.0859375, -1.3300781, 0.89208984, 0.37719727, 3.140625, -1.2792969, 0.07385254, 2.3222656, -1.2792969, -2.0058594, -4.4296875, 2.890625, 1.5683594, 1.3730469, 1.7099609, -1.6708984, 1.9169922, 0.20568848, 1.2705078, -1.9179688, 0.8256836, -0.34326172, -2.1308594, -2.1367188, 0.8227539, 0.50634766, 1.8779297, 1.2705078, -1.5263672, 1.6787109, -0.2722168, 0.96728516, 2.3535156, 1.6542969, -0.26000977, 0.21582031, -0.3239746, 2.0605469, 0.18688965, -1.2324219, -0.6142578, 1.5058594, 1.1738281, -0.6821289, -0.10028076, 0.08093262, -1.9082031, -0.33520508, -0.7495117, -0.86035156, -2.5078125, -2.2304688, 0.67871094, 0.39794922, -2.3144531, -1.6796875, 0.85546875, 0.07678223, -0.42260742, -0.51220703, 2.1425781, -1.0449219, 1.6591797, 1.3632812, -0.2286377, 0.8964844, -2.3164062, 1.2275391, 1.6337891, -2.1621094, -0.0129852295, 0.4765625, -0.21594238, -1.2919922, 0.0071144104, 0.001625061, -0.53759766, 0.71777344, 1.3232422, -0.6533203, -1.5683594, 1.2167969, -1.5507812, 0.6430664, 2.8847656, 0.060638428, -0.41333008, -2.6992188, -2.078125, -0.81689453, -0.14196777, 0.27172852, 1.4511719, 3.5175781, 2.546875, 0.072021484, -1.8203125, -2.7460938, 1.4130859, -0.8027344, 1.3554688, -1.5234375, -0.16503906, 0.30737305, 0.7373047, 2.9785156, -0.37695312, -2.109375, -0.33007812, -2.0625, 0.56640625, -0.119018555, 2.1015625, -0.3190918, 1.2792969, 0.36865234, 1.6816406, 2.1269531, -0.33081055, 1.3251953, 2.609375, 0.17407227, -2.0371094, 2.8085938, -0.9711914, 1.0146484, -0.099121094, 0.45385742, 0.7402344, 1.3623047, 1.7519531, -0.546875, -2.7226562]}, "B08YLPZZ65": {"id": "B08YLPZZ65", "original": "Brand: Bunker Up Fishin\nName: Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue\nDescription: Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2\" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!\nFeatures: Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking\nElectric Start - Simply push a button to start the burner on this mini travel smoker grill\nConverts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use\nBuilt in Thermometer - Barbeque to perfection with the easy to read temperature gauge\nFast and quick set up - Very simple to install and remove - makes the perfect boat accessories\n", "embedding": [-3.3945312, 3.0507812, 1.8037109, 2.125, 1.4082031, 1.0576172, 1.9619141, -1.3271484, -0.1586914, 2.125, 0.2626953, -0.30322266, 0.9848633, -3.1035156, -0.26171875, 1.1464844, 1.4423828, -0.0051002502, 1.7236328, 0.3942871, 2.4980469, 1.6982422, 2.0175781, -0.5126953, 1.2080078, -0.7084961, 1.9824219, -0.17993164, 0.71972656, -0.24194336, 2.5878906, 0.09069824, 0.16394043, 1.6972656, -3.3496094, -1.1884766, -1.9306641, 1.5371094, 0.39672852, -0.8642578, -0.8051758, -0.74853516, 3.0605469, -0.19042969, -2.9863281, -0.0044136047, -1.1425781, 2.5410156, -1.3867188, -0.96240234, 2.0527344, 2.3398438, -0.07397461, 1.7236328, -2.4316406, -0.8442383, -0.5029297, -3.9238281, 0.7001953, -1.3017578, 2.2109375, -0.028213501, -0.8486328, 1.3369141, 0.9277344, -0.49121094, -1.0771484, -0.17041016, -0.84472656, 0.8129883, 1.8339844, 0.5517578, -1.0478516, 0.20739746, -0.61865234, -0.09875488, -2.5292969, 2.3046875, -0.053863525, -0.38452148, -3.6035156, 2.2402344, -0.8027344, -0.96777344, 0.16394043, 0.7104492, -4.1992188, -0.4074707, 4.1835938, 0.6279297, -1.5029297, 2.5039062, -2.2226562, -3.6582031, 0.8808594, -0.33081055, 1.6015625, -0.7421875, 0.3486328, 2.6835938, 0.02067566, 2.6425781, -2.4765625, -0.7446289, -0.65966797, -1.4052734, 0.38256836, 0.3815918, -2.5507812, 0.46289062, -1.09375, 0.7714844, 1.3896484, 0.91845703, 0.69677734, 0.50634766, -0.79003906, 1.6904297, 2.6191406, 2.1269531, 5.6640625, -0.25317383, 1.1601562, -0.24865723, 0.58447266, 0.08526611, 0.35229492, 1.1992188, 3.3632812, -1.3398438, -0.082336426, -2.2402344, 1.5195312, -0.032928467, -1.8896484, -2.6035156, -0.42016602, -3.0078125, -4.0703125, 0.85546875, -1.2998047, 2.1132812, 2.0683594, -0.10418701, -3.984375, -0.9794922, -0.8413086, -0.097473145, 0.57421875, -2.484375, 1.2470703, -1.4404297, 1.0019531, -0.7626953, 2.4179688, 0.6152344, -0.30932617, 0.06286621, 2.7421875, 0.30419922, 1.3447266, -3.4570312, -0.9111328, 0.6875, 0.5996094, -2.4296875, -1.5751953, 2.3652344, 0.17858887, 0.030914307, 1.7275391, -1.8818359, 2.2246094, -0.4963379, 1.5380859, -0.52978516, -0.40405273, 4.0195312, 0.86328125, -1.4101562, -0.8129883, -4.6015625, 0.73876953, 0.671875, 1.4609375, -0.49536133, -0.4580078, 0.6118164, 0.04486084, -2.5488281, -0.27539062, 2.2050781, -0.3203125, 1.1679688, 1.8056641, -2.9042969, -2.6445312, -0.15209961, 1.5390625, 1.9628906, -1.3964844, 0.14355469, -1.0800781, 0.46435547, -2.0292969, -4.4882812, -1.0898438, 0.5097656, 0.04345703, 2.0195312, -0.7182617, -1.1054688, 2.7324219, 0.11743164, -0.41601562, -2.4921875, 1.7568359, 0.41601562, 2.8632812, 2.4277344, -0.79541016, -1.1357422, 0.6948242, 2.1035156, 1.3876953, 1.5146484, -1.0634766, -0.73046875, -1.1484375, 0.53466797, 2.0371094, -1.1259766, 0.7836914, 0.21081543, -0.32885742, 2.6191406, 1.1357422, -2.1953125, -0.46948242, 0.46972656, 0.017684937, -2.0058594, -2.6601562, -2.03125, -0.59765625, -0.15466309, -2.5761719, 1.0400391, 1.8779297, -0.4802246, -0.98095703, 0.8178711, -0.8510742, 0.8520508, -1.6630859, 1.5771484, -1.2050781, 0.06100464, -2.8164062, -2.4355469, 1.6210938, 1.5683594, -0.7685547, 0.9736328, 1.390625, -0.22143555, 2.2714844, 0.76953125, -4.1796875, -1.5488281, 2.2265625, 2.1308594, 1.5791016, 0.5288086, 2.0625, 0.21459961, -2.6679688, 2.5625, 0.71240234, 1.8144531, -0.62353516, -0.05126953, 2.6894531, -2.3632812, -2.0820312, 0.20019531, 1.5087891, -2.2382812, 1.4208984, 0.6142578, 4.1523438, 0.71533203, -1.8876953, 2.9042969, -1.2490234, 0.08898926, 1.5419922, -1.4121094, 2.4863281, 0.7675781, 1.7109375, 1.625, -1.4824219, 1.9804688, -0.5830078, -0.86572266, -1.6025391, -2.9550781, -0.100097656, 2.0214844, -0.92578125, 0.18286133, -0.5258789, 1.5214844, -1.734375, -1.84375, 0.8808594, -0.66259766, 1.0839844, 2.546875, -0.5239258, -0.6982422, -0.2680664, -3.046875, -0.44702148, 0.8276367, 0.6401367, -1.3574219, 1.6552734, -0.80371094, -1.0214844, -0.62597656, 1.2607422, -1.5595703, -1.4746094, -1.9785156, -2.9785156, -1.7851562, -0.9038086, -0.5053711, -1.5068359, 0.5698242, -1.734375, 1.6171875, -0.2866211, -3.3808594, -0.3005371, 2.046875, 0.11315918, 0.95654297, 0.08734131, 0.34960938, 1.0820312, -3.7441406, 0.265625, 1.7587891, 1.1054688, 1.0986328, -0.59716797, 0.63134766, -2.1445312, 0.26489258, 0.75341797, 1.5273438, 1.0126953, -1.4228516, 1.1767578, -3.6542969, 1.0205078, -1.2128906, -0.1586914, -1.8447266, 0.7089844, -1.0517578, -1.9736328, -0.7441406, -2.0898438, 2.6328125, -0.6201172, 0.48706055, -1.9287109, 1.3779297, -0.020324707, -0.20446777, -4.0234375, -0.26489258, 1.1464844, 0.060760498, 0.17456055, -3.6210938, -0.10534668, -0.375, -0.97509766, -0.36572266, 1.6845703, -2.4648438, 2.1679688, -0.45947266, 0.4675293, 0.008880615, 0.16992188, -0.22741699, -0.7553711, -0.69921875, -0.3112793, -0.5239258, 0.6225586, -1.6767578, 1.7646484, -2.1757812, -0.045074463, 0.0025348663, 1.0615234, 0.4934082, -1.8486328, -2.6875, 1.9775391, -1.0458984, -2.0703125, 2.0664062, -0.08685303, -0.22729492, -3.3339844, -1.9804688, 2.5761719, 0.8066406, 2.1914062, -0.87109375, -0.9790039, 0.9160156, 0.9873047, 0.34936523, -0.25390625, 0.03994751, 3.3789062, -3.5957031, -0.9716797, -0.4267578, 3.9257812, -0.99853516, 1.1425781, 1.5761719, 1.3964844, 1.1582031, 0.5136719, 0.6665039, -0.74365234, -2.1914062, 0.29882812, 0.85253906, 1.0693359, 0.47045898, -1.2871094, -0.6640625, -0.65283203, 0.35107422, -0.9160156, 0.69677734, 1.890625, 2.3359375, -1.1953125, -1.2558594, 1.8496094, -0.30932617, 0.49731445, -0.19458008, 2.6464844, -0.087524414, -1.1982422, -0.4099121, 0.33007812, 1.0126953, -1.4570312, -0.05218506, 1.5185547, 1.6074219, 0.0362854, -1.7070312, 0.2919922, -0.9057617, -1.5556641, 0.8442383, -0.9824219, -1.4697266, 1.9970703, -1.3056641, -2.0429688, -1.2675781, 0.36083984, -2.1601562, -2.1425781, -0.20324707, 1.0166016, -1.7021484, -1.8144531, -1.9892578, -2.3613281, -0.6088867, 3.734375, -0.46850586, -0.4794922, 1.0605469, 0.52978516, 1.8476562, 0.87841797, -0.17810059, -1.2714844, -0.025634766, -0.40795898, -0.75390625, 0.6972656, 1.1259766, -0.42260742, -2.6835938, -0.08203125, -1.3828125, 2.40625, 0.05618286, -1.3154297, -0.30517578, 2.96875, 1.6787109, 1.4589844, -1.0449219, 2.8183594, -1.4394531, -0.56933594, 1.8945312, -2.8652344, -1.3271484, -3.5976562, -3.5449219, 1.4433594, -2.3203125, -1.2226562, 1.7304688, 1.5947266, -0.7885742, 0.7973633, -0.091674805, -1.4931641, -1.0107422, -1.5712891, 1.1748047, -1.6162109, 0.75, 2.3144531, 1.890625, -1.3662109, -2.1914062, -0.52978516, 0.33911133, 1.3681641, 1.5380859, 0.19787598, 1.6064453, -2.5722656, -0.95703125, 0.42236328, -1.0390625, 0.76660156, -2.0039062, -1.1279297, -0.8857422, 1.7832031, 1.1269531, 0.11999512, -1.5595703, 0.46557617, 0.6020508, -0.17980957, -1.2900391, 0.03744507, 2.6308594, -1.0595703, -2.7929688, -2.3925781, -1.6708984, -0.4128418, 1.0800781, -0.20117188, 0.7807617, -3.6953125, 0.6254883, 0.62402344, 1.2773438, 1.3095703, 0.18640137, -1.0498047, -0.64404297, -1.0478516, -1.4208984, -2.3847656, -0.044708252, 0.45751953, -1.0800781, -0.16442871, -2.2089844, -0.09136963, -0.5415039, -3.8769531, -1.2060547, 3.4003906, 1.1826172, 2.390625, 4.8945312, 1.1308594, -1.2460938, 2.6425781, -0.39697266, -2.2929688, 1.9179688, -2.15625, -1.7958984, 1.6337891, 1.5078125, -1.8837891, -0.7084961, 0.111083984, -1.5869141, -0.2631836, -0.23828125, 1.9892578, -2.8886719, -0.12988281, 1.0957031, -1.3496094, 2.4609375, -1.8339844, 0.055419922, -0.2939453, 1.2578125, -0.77685547, 1.4101562, -0.056427002, 0.7182617, 0.8486328, 1.9277344, -0.37817383, 0.2944336, -0.18005371, -0.63671875, 0.46191406, -2.7421875, 0.35913086, -1.6923828, -0.8432617, -0.72509766, -0.53222656, 1.2724609, 4.8710938, 0.36279297, 2.2558594, -0.50634766, -1.5302734, 0.74121094, 0.38916016, -3.6230469, 0.082336426, 0.62841797, -2.5605469, 0.62060547, -1.5390625, -2.4160156, 0.12420654, 1.9238281, -1.1162109, 0.5678711, -0.6948242, -0.24890137, 2.2558594, -2.828125, -0.7758789, -0.7138672, -1.7890625, 1.5722656, -1.9228516, -0.41357422, 0.78466797, 1.0917969, 1.6318359, -1.0117188, -0.5439453, 2.328125, 0.12902832, 0.76708984, 1.8378906, 0.76953125, -2.5058594, -0.29907227, 2.0605469, 1.9511719, 1.9326172, 1.0029297, 1.0644531, -0.7919922, -0.30932617, -2.390625, 2.7324219, -1.3349609, -0.062683105, 2.6601562, -0.67089844, 0.64697266, -2.6679688, 0.3388672, -0.14050293, 1.5800781, 2.1660156, -1.0517578, -0.021255493, -0.34838867, -3.2363281, -4.7851562, 0.09753418, 0.71191406, -0.20605469, 0.52783203, 2.3359375, -1.4179688, -1.2392578, -0.11785889, 0.8886719, -1.3759766, 1.5341797, -0.44506836, -0.9008789, -1.515625, 1.0087891, -0.22009277, 0.6611328, 0.95996094, 1.2363281, -0.005264282, -3.3867188, -0.640625, 0.7158203, -1.1181641, -1.5605469, 1.4892578, -0.73291016, -0.0284729, 0.051940918, 1.9853516, -1.8173828, 2.4101562, -2.7558594, 0.012626648, 0.42016602, 0.30566406, 0.14709473, -0.4658203, -2.1542969, 1.1933594, -2.609375, 1.0654297, -1.5263672, 0.024154663, -0.14880371, 1.5839844, -0.2998047, -1.8076172, 0.4584961, -0.5029297, 2.7519531, -0.5600586, -1.6376953, -0.44140625, -2.4511719, -3.6601562, -0.3786621, -3.3320312, 0.05255127, -3.1054688, -0.2993164, 1.8671875, 1.0205078, 1.3457031, 0.98535156, 0.74853516, -0.5566406, 0.124816895, -0.9277344, 1.0234375, -0.17663574, -0.6503906, -2.4980469, -1.7089844, -0.085754395, -0.87158203, -0.46435547, 1.1035156, 0.97021484, -2.1953125, 1.2167969, -1.1181641, 3.5449219, 2.1542969, 0.14294434, -1.8369141, -0.61328125, 1.6621094, -1.4462891, 2.0683594, 0.6660156, 1.0009766, -0.08648682, 3.8261719, -1.9013672, -1.2587891, 1.2666016, -0.23754883, 1.1279297, -0.80078125, -2.1640625, 1.0673828, -2.1835938, -0.4489746, -2.2519531, -1.4580078, -1.9472656, 2.0800781, -0.3864746, -0.9946289, -0.9394531, 2.8085938, -0.15454102, 0.047729492, 1.09375, 0.9394531, 0.2709961, 1.0009766, -0.42358398, 0.2006836, 1.0527344, -1.0263672, 0.79785156, 1.1337891, 0.7998047, -1.3828125, 4.4179688, 1.0224609, 1.9570312, 0.06726074, 3.3476562, 3.7949219, 1.2285156, 4.5585938, -0.52783203, 1.1884766, 3.6835938, -1.2871094, -0.6333008, 2.3320312, 1.0761719, -1.2421875, -0.9633789, 0.5493164, 0.39404297, -0.42358398, 0.08013916, 1.8056641, 1.4277344, -3.6132812, 4.1015625, 0.9550781, 0.9658203, -1.4550781, -0.011985779, -2.3066406, 0.0064315796, -1.2607422, 1.3789062, 1.2265625, -1.0087891, 0.5004883, -1.0595703, 0.5317383, 0.12536621, -2.7792969, 1.8574219, 0.2548828, 0.20922852, -1.4238281, 2.078125, 0.9980469, -0.0024871826, -0.15490723, 2.2929688, 1.5068359, -1.3417969, 1.9052734, -1.3554688, 1.2304688, -0.54003906, 2.9628906, 1.5722656, -1.6845703, 1.3535156, -0.72558594, -1.3134766, -2.1171875, 2.7421875, 1.1884766, 0.5786133, 0.6479492, -3.4941406, 2.3417969, -0.77490234, 2.9550781, -0.94189453, 1.4511719, -2.0253906, -3.0058594, -2.7421875, -0.091796875, 0.5878906, 2.515625, 1.1972656, -2.4277344, 3.2265625, 1.2216797, 2.1464844, 0.65283203, 1.4628906, -0.15563965, 1.5996094, 1.5419922, 2.5585938, 0.76953125, -1.9824219, -2.0332031, 3.2148438, 0.43115234, 0.7558594, -0.37304688, -1.1464844, 2.0019531, 0.9379883, 0.06021118, 0.3581543, -1.515625, -1.640625, -0.44873047, 0.3256836, -0.63134766, -0.23168945, -0.3137207, 2.2792969, 0.058624268, 2.9570312, 0.4753418, -0.77246094, 3.3691406, 0.7241211, -0.48950195, -1.3261719, 0.3786621, -0.16992188, -1.6884766, 0.47631836, 0.14660645, 0.41601562, 1.8251953, -2.09375, 0.72314453, -2.3867188, 1.5292969, -0.32006836, -1.3095703, -0.27734375, -0.47998047, 2.2363281, 0.47192383, 1.1484375, 4.2109375, -1.3027344, -1.8291016, -2.3320312, -1.7382812, 2.4199219, -1.3779297, -0.21362305, -0.13830566, 3.9335938, 1.2519531, -1.2255859, -2.4179688, -3.0371094, 1.4931641, -2.2539062, 2.9628906, 0.5888672, -1.9628906, 1.5634766, -1.2226562, 1.7587891, -1.0449219, -0.6088867, 0.8017578, 0.83935547, 0.4482422, 0.04168701, 0.8100586, 2.1308594, 1.5390625, -0.89990234, 3.6445312, 1.1230469, 2.6640625, 1.7929688, 2.1660156, 0.6669922, -1.7089844, 0.43920898, -1.2353516, 1.5214844, 1.5009766, 0.33740234, 2.6953125, 1.0576172, -0.41918945, -1.6259766, -2.5761719]}, "B071NWQ8Q9": {"id": "B071NWQ8Q9", "original": "Brand: MASTER COOK\nName: MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel\nDescription: \nFeatures: \u25ba36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner\n\u25baThis propane gas grill has integrated piezo ignition system ensures quick and reliable startups\n\u25ba400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack\n\u25baStylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control\n\u25baStable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want\n", "embedding": [-2.34375, 0.22619629, 2.1679688, 1.4697266, 0.16809082, 1.3818359, 1.0029297, -0.4645996, -0.50683594, 2.171875, 1.5996094, -0.74658203, 0.8515625, -1.125, 0.5517578, 0.053894043, 0.94384766, 0.640625, 1.3076172, 1.203125, 0.7192383, -0.58984375, 1.3583984, -1.4804688, 0.9638672, 1.2275391, 2.8457031, -4.0195312, -0.34106445, -1.2353516, 1.4511719, -0.33642578, -0.7338867, 1.4882812, -3.2480469, 0.28710938, -2.3203125, 1.3115234, -3.7128906, -0.3876953, 0.36791992, -0.97021484, 1.7626953, 0.034942627, -3, -0.10101318, 0.090270996, 1.3007812, -2.0449219, -0.6855469, 0.95751953, 2.6289062, 1.5439453, 0.9453125, -0.55126953, 1.0146484, 1.0634766, -1.1494141, 1.5322266, 0.045440674, 2.6640625, -0.06921387, -1.8027344, -0.8466797, -1.8056641, 0.39379883, 0.058410645, 0.8588867, -0.5625, 0.30249023, 1.7197266, -0.7246094, -1.1542969, 0.10882568, -0.25830078, -2.7910156, -2.7910156, 1.7802734, 0.8120117, -0.6845703, -1.3818359, 2.0644531, 1.1318359, -2.4453125, 0.36083984, 0.3173828, -0.6479492, -2.3378906, 1.109375, 1.1435547, -1.3164062, 2.5644531, -2.0039062, -2.3535156, 2.5664062, -1.3505859, -0.41235352, 1.0400391, 0.52978516, 1.7695312, -0.06945801, 1.2207031, -2.0507812, -0.23669434, -2.2988281, -1.9150391, 0.097595215, 1.0957031, -3.5292969, -0.5209961, -1.6845703, -1.46875, 0.53808594, 0.10784912, 1.1259766, 2.5996094, -0.39086914, 1.203125, 2.8203125, 1.7470703, 2.8574219, -0.32836914, -0.5776367, -0.18518066, -0.02708435, 2.7714844, -1.1318359, 4.1601562, 4.234375, -2.3847656, -0.35180664, -2.2675781, 3.4433594, 0.33032227, -0.8935547, -2.4296875, -3.3359375, -0.48120117, -4.765625, 1.7216797, -2.3242188, 1.4199219, 1.4257812, -0.7324219, -3.0136719, -1.3505859, -0.31298828, -0.38500977, -0.5991211, -2.1757812, -0.089660645, -2.0390625, 1.4023438, -1.9306641, 2.2949219, -1.6054688, -0.005016327, -2.71875, 4.875, 1.8095703, 0.8222656, -3.59375, -1.0439453, 2.1875, 0.038391113, -2.0136719, -1.4960938, 3.9140625, 0.18798828, 0.8354492, -0.13879395, -1.7470703, 0.2166748, -0.7753906, 0.42163086, 0.23132324, 0.37573242, 3.71875, 0.5751953, -0.6015625, -1.8115234, -3.7890625, 0.8408203, 0.9296875, 0.38354492, -2.1191406, 0.51416016, 0.21862793, 0.47265625, -1.1445312, -0.30371094, 0.8574219, 0.13464355, 0.88427734, -0.40551758, -0.008758545, -1.7851562, -1.3652344, -0.08453369, -0.9213867, -0.92822266, 0.43286133, -0.37670898, 0.33618164, -3.1015625, -3.3828125, 0.63134766, -2.6308594, 1.4375, 3.1308594, 1.5224609, -2.1367188, 1.2490234, -1.9414062, 0.89501953, -2.6445312, 1.1523438, 1.0976562, 2.2363281, 2.671875, 0.23486328, -0.8027344, 1.3867188, 1.7470703, -0.9223633, 2.1738281, 1.3486328, 0.46313477, -1.2822266, -1.3457031, 2.0976562, -0.06939697, -0.17163086, 0.28759766, -0.9628906, 2.4550781, 0.38671875, -2.6113281, -0.61035156, -0.12322998, 1.6806641, -2.6894531, -1.5869141, -1.4501953, 0.41015625, 0.7211914, -1.8896484, 1.6728516, 2.7949219, 1.6689453, -0.27563477, 1.2109375, 0.23828125, 0.96435547, -1.2626953, 0.93408203, -0.12780762, 0.22814941, -2.3085938, -2.2304688, 0.55908203, 0.20275879, 0.4453125, -0.11853027, -0.30126953, -0.5126953, 3.8203125, 0.24768066, -2.2734375, -2.7636719, 1.9462891, -0.2109375, 2.2304688, -0.25927734, 1.4160156, 2.1738281, -1.2636719, 2.9121094, 0.013191223, 1.1826172, 0.60791016, -0.06939697, 2.2246094, -2.7167969, -0.5473633, 1.2519531, 0.6899414, 0.52734375, 0.6435547, 0.7285156, 4.8320312, 0.109436035, -3.4121094, 3.3613281, -1.6708984, -0.3984375, 0.36889648, 0.28466797, -1.0273438, -0.5786133, 2.0644531, 2.6484375, 0.04446411, 2.1113281, -1.4541016, -1.4072266, -0.14709473, -0.5932617, -0.0881958, -0.38745117, 0.6713867, -0.1899414, -2.3671875, 0.31860352, -1.0029297, -0.7011719, 3.6621094, -1.96875, 0.5683594, 0.6948242, 1.0605469, 1.0585938, 0.3466797, -1.4570312, 1.5820312, 0.0501709, 0.5786133, 0.17346191, 0.36157227, -0.13696289, -0.69189453, -0.64208984, 0.8901367, -1.0136719, -3.0136719, -0.01776123, -2.46875, -2.8144531, 0.7661133, -0.43823242, -0.8676758, 0.52441406, -3.7265625, 0.15991211, -0.94189453, -2.4296875, -2.5234375, -0.6479492, -0.8027344, 0.011650085, 0.28271484, 0.66308594, -0.8095703, -3.8632812, 0.9863281, 1.0195312, -1.8125, 0.45092773, 0.30419922, -0.07220459, -0.46240234, -0.8808594, 0.4584961, 0.7597656, 1.2255859, 0.5517578, 0.44311523, -4.046875, -0.6870117, -3.3886719, 0.3671875, -0.85498047, 0.23242188, -1.6396484, -1.4052734, -0.8989258, -0.421875, 3.4121094, -0.45385742, 0.09887695, 1.0400391, 0.4321289, 1.6884766, -1.4287109, -2.4042969, -0.79248047, 1.3837891, -1.5253906, -1.6787109, -2.0273438, 1.2392578, -1.7128906, 1.3916016, -1.984375, 1.1230469, -2.8066406, 1.2626953, -1.7333984, -1.0722656, -0.37646484, 1.7929688, -0.22058105, -1.3955078, -2.2753906, -0.97998047, -1.6005859, -0.4716797, -1.1191406, 1.2226562, -1.9091797, 0.99853516, 2.2519531, -0.390625, 1.0039062, -2.078125, -2.6914062, 2.4023438, 0.05886841, -2.21875, 0.8935547, -1.3271484, -3, -1.5849609, -1.1083984, 2.4042969, 0.15356445, 2.6484375, 0.03967285, 0.5239258, 1.2792969, 1.0556641, 2.1972656, -1.734375, -0.8901367, 2.0664062, -2.2675781, -1.5273438, 0.59033203, 2.7207031, -0.7548828, -1.7246094, 1.7617188, 1.3134766, 1.1738281, 1.7851562, 0.8598633, 0.2565918, -1.1582031, 2.6640625, 1.8027344, 0.9628906, 0.9628906, -1.0117188, 0.35205078, -0.03265381, 2.0058594, 2.2011719, 0.39916992, 2.1152344, 0.8798828, 1.3583984, -2.4570312, 1.1533203, 0.40551758, 2.5117188, 0.28735352, 1.9150391, -0.87841797, 0.2541504, -0.1303711, -0.8076172, -0.34375, -1.4101562, 0.21691895, 0.84521484, 0.16101074, 0.73779297, 0.62939453, 0.41381836, 0.6870117, -1.4326172, 1.1748047, -0.27026367, -1.0576172, 0.42407227, -0.31958008, -0.34472656, -2.1953125, 1.7431641, -0.13464355, -0.16516113, 1.2148438, 3.2324219, 0.06488037, -1.9277344, 0.15026855, 1.0664062, -1.4873047, 1.9462891, -0.07183838, -2.1640625, 1.4912109, -2.21875, 0.5551758, 0.6254883, -2.1640625, 0.5395508, 0.28857422, 0.6220703, -1.3837891, 0.8520508, 2.5800781, 1.1474609, -2.5722656, 0.54541016, -5.1210938, 0.62353516, -0.8041992, -1.8193359, -1.7304688, 2.5117188, 0.9326172, 2.2519531, -1.0566406, 3.7617188, -1.0830078, -2.3398438, 1.2451172, -3.8359375, -0.5942383, -3.0566406, -3.9570312, 1.4775391, -1.2050781, -1.2373047, 1.5410156, -0.08520508, 0.203125, 1.8193359, 0.043914795, -3.5703125, -2.7734375, -0.8510742, 0.37890625, -1.5683594, -2.2109375, 1.2646484, 0.7006836, -1.2939453, -0.7285156, 0.85302734, 0.15246582, 2.4453125, 1.0996094, -3.1816406, 1.3398438, -2.3691406, 0.62646484, -0.53125, -1.3291016, 1.4521484, -1.2294922, -0.031143188, -3.0253906, 0.80126953, 2.4140625, -2.1269531, 0.47583008, -0.31152344, 0.4885254, -1.5195312, 0.08404541, 1.3623047, 2.3164062, 0.035339355, -2.6621094, -1.0625, 0.49536133, -0.089538574, -0.3322754, -0.30932617, -0.43823242, -2.6738281, 0.21472168, 1.6835938, 1.4404297, 2.0019531, 0.20825195, -1.4414062, -1.1201172, 0.75146484, -1.5429688, -1.0605469, 0.6064453, -0.49975586, -1.5771484, -0.6118164, -1.2724609, 0.13806152, -3.0136719, -0.5366211, -3.7363281, 3.0253906, 2.2519531, 1.7841797, 3.1621094, -1.5185547, -2.4785156, 0.3720703, -1.1054688, -0.5126953, 1.7285156, -0.37573242, 0.7260742, 0.12182617, 0.10449219, -1.6962891, -1.4257812, 2.8457031, -2.7011719, -1.421875, -0.5410156, -0.3935547, -1.3378906, -0.47583008, 0.9267578, -0.62646484, 3.3574219, -0.8876953, -0.5053711, 0.6010742, 0.00894165, -0.9814453, 0.86279297, -0.7685547, -0.55029297, 0.62841797, 2.7167969, 2.0371094, -0.74560547, -0.95654297, -0.5097656, 2.7636719, 1.8652344, 0.89208984, -0.97021484, -0.26660156, -1.4101562, -2.4082031, -0.12231445, 2.5390625, -0.030090332, 4.1835938, 1.6064453, -2.0117188, 1.6181641, -0.5078125, -2.8613281, -0.9902344, 0.44848633, 1.8320312, 1.4599609, -0.7919922, -3.8867188, -1.9873047, 2.0019531, -1.4326172, 2.2246094, 0.29467773, -1.5839844, -0.25756836, -3.2929688, -0.63427734, -0.019104004, -0.41381836, -0.91552734, -1.0878906, 1.0400391, -1.1708984, 0.8720703, 3.28125, -0.32983398, -3.0136719, 3.8457031, -0.52001953, 1.7060547, -0.68408203, -0.23120117, -1.4199219, 0.9379883, 4, 2.0117188, 1.3193359, 2.3886719, 2.5195312, -2.59375, 1.8466797, -0.7832031, 3.9746094, -1.6777344, -0.8017578, 3.8574219, -2.734375, 0.4958496, -3.2695312, 2.2578125, -1.9960938, 1.9101562, 2.3457031, 0.15808105, -1.0283203, 0.53125, -1.2646484, -3.8730469, -1.4013672, 0.6621094, 1.3125, -1.6210938, 0.73291016, -1.6503906, 2.1621094, 0.48339844, -0.0619812, -2.9804688, 0.6142578, -0.765625, -1.5214844, -0.8300781, 0.94189453, -0.48828125, 0.08178711, 1.2695312, -0.5214844, -0.8486328, -3.8886719, -1.8603516, 2.296875, -1.4619141, 0.07611084, 1.3583984, -0.20654297, 0.20715332, 1.171875, -0.36254883, -2.5332031, 1.9248047, -1.0761719, -0.21484375, 1.9697266, 0.5419922, 0.26904297, -0.9609375, -2.1269531, -0.25024414, 0.0579834, -0.36621094, 0.18432617, -1.0556641, -0.5732422, 0.15808105, -0.5541992, -0.9916992, 0.61279297, 0.28442383, 0.96533203, 1.1787109, -1.0576172, -0.36791992, -1.2958984, -1.5478516, -0.5600586, -1.8867188, 0.35961914, -1.4521484, 1.828125, 1.5742188, -0.05050659, -0.7426758, 1.2060547, 0.61083984, 0.8203125, 0.59765625, -1.5634766, 1.8095703, 1.625, -0.43579102, -1.4804688, -1.0351562, 1.7851562, 0.6411133, 2.4492188, -1.8193359, 0.24963379, -1.609375, 1.7177734, 0.56103516, 1.4462891, 2.2675781, 0.47802734, -0.7285156, 1.2119141, 2.4746094, 0.5957031, 0.8989258, 0.5307617, 0.10394287, 0.041534424, 6.1289062, 1.4042969, -1.4091797, 1.2587891, -2.1445312, 0.06341553, -0.3803711, -0.24560547, 0.88427734, -3.78125, -1.5400391, -2.6074219, -1.9316406, -3.4570312, 1.6630859, 1.4775391, -1.2451172, -0.8232422, 2.0761719, 0.28295898, 2.3242188, 2.8046875, 0.69873047, 0.9375, 1.1943359, -0.39916992, -1.6601562, 0.98095703, -2.6738281, 2.4511719, 1.0087891, -0.68603516, -1.2167969, 3.3945312, 1.7714844, 2.9570312, 1.9228516, 0.47729492, 2.6523438, 2.7226562, 3.125, 1.0263672, 1.7685547, 2.3769531, 0.021499634, -0.10394287, 1.8759766, 1.8964844, -1.1796875, 0.28295898, 1.8847656, -0.6796875, -0.87939453, -0.5463867, 1.2802734, 0.41015625, -2.1054688, 2.1386719, -0.57910156, 1.6396484, -1.4814453, -1.9150391, -1.9384766, -0.2602539, -0.36206055, -0.02394104, 1.8789062, -1.9882812, 0.39770508, -0.4873047, 0.2290039, 1.2509766, -2.8164062, 0.43139648, 0.06933594, 0.0069351196, -0.054595947, 0.35961914, 0.48999023, -0.734375, 0.41015625, 0.77783203, 1.1845703, 1.4238281, 0.97216797, -1.3916016, 0.35717773, -0.16906738, 1.8867188, -1, -0.41430664, 1.5966797, -2.4746094, -2.3613281, -3.5019531, 2.4101562, 3.1191406, 1.8037109, 0.85498047, -1.2392578, 2.1738281, -0.7817383, 1.9501953, -2.5644531, 1.7460938, 0.31762695, -2.2324219, -0.46972656, 1.4091797, -0.2607422, 3.1503906, 1.7148438, -1.9443359, 2.8710938, 1.7685547, 1.5585938, 2.2363281, 1.3867188, 0.24401855, 1.0039062, 0.011009216, 2.0917969, 2.0761719, -0.3388672, -1.2646484, 3.0292969, 1.4306641, 0.3947754, 0.064208984, -1.2802734, -0.58935547, -0.69189453, -0.49047852, -1.4111328, -2.0136719, -1.7255859, -1.4160156, 0.28808594, -0.8364258, -1.828125, 2.0566406, 0.54589844, -1.6533203, 1.1494141, 0.6425781, -0.828125, 2.0019531, -0.5961914, -0.86279297, 1.4257812, -1.3417969, 1.2177734, -0.3725586, -1.1894531, 1.0810547, 0.026947021, 1.8125, -1.3447266, -1.328125, -0.26782227, 1.0517578, -0.55908203, -0.07318115, 1.0273438, -0.68408203, 2.9257812, -1.5244141, 0.24304199, 0.7128906, -1.4931641, -0.50097656, -2.5390625, -2.6054688, -0.79248047, 0.91845703, -2.1191406, 1.9785156, 3.28125, 1.9716797, 0.55029297, -1.8154297, -3.5058594, -0.7207031, -1.0849609, 2.8710938, 0.4658203, -0.30078125, 0.90283203, 0.2697754, 1.6337891, -1.2509766, -2.7265625, -0.8544922, -1.0458984, -0.09338379, 0.4794922, 2.9257812, 0.89990234, 1.1542969, 0.5004883, 1.9033203, 2.0957031, -1.9150391, 0.5864258, 0.9995117, -0.5175781, -2.2285156, 1.9189453, -0.5522461, 0.38305664, 0.8046875, 0.65625, 2.0820312, 0.38110352, 0.23815918, -2.9609375, -2.2988281]}, "B091TKS5XG": {"id": "B091TKS5XG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver\nDescription: \nFeatures: High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power.\nSufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time.\nBurners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes.\nFast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface.\nMess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It\u2019s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.\n", "embedding": [-2.1210938, 0.9291992, 1.7460938, -0.009239197, 0.75439453, 1.5917969, 0.9970703, -1.5800781, -0.8935547, 0.9169922, 0.8833008, -0.23583984, 0.7895508, -2.4257812, 0.016098022, 0.36987305, 0.6328125, 0.53466797, 1.2851562, 0.79296875, -0.005844116, 0.60791016, 3.578125, -0.27319336, 0.2697754, 1.1171875, 1.9648438, -4.3789062, -0.41210938, -1.1904297, 3.25, 0.41137695, -0.56689453, 1.828125, -3.9277344, -0.47705078, -1.3134766, 0.7319336, -3.0175781, 0.75927734, 0.7685547, -1.5742188, 1.4599609, 0.74658203, -2.7109375, 0.95166016, 0.3708496, 0.7158203, -2.3164062, -0.8574219, 1.2148438, 1.5185547, -0.13745117, 0.35473633, -0.34277344, 1.5224609, 1.1035156, -1.5673828, 1.6152344, -0.06549072, 2.9316406, -0.34228516, -1.9697266, 0.20666504, -0.15600586, -0.50341797, 0.38354492, 1.0625, -1.2626953, -0.8779297, 1.2363281, -0.6274414, -2.1464844, 0.70947266, -0.578125, -1.9306641, -2.6953125, 2.0878906, 0.73291016, -0.42163086, -3.2304688, 2.4511719, 1.5097656, -1.5117188, -0.6772461, 1.2167969, -0.6464844, -1.4570312, 1.1728516, 0.9975586, 0.9086914, 2.4375, -2.9472656, -3.1425781, 2.4804688, -1.9101562, 1.2392578, 1.0166016, 0.40771484, 1.4462891, -0.12658691, -0.98583984, -2.0878906, -1.2080078, -0.12939453, -2.0917969, 1.7480469, -0.2524414, -3.0136719, -0.3725586, -1.515625, 1.2910156, 0.94091797, -1.0966797, 1.0263672, 0.65283203, -0.09490967, 1.8876953, 2.1972656, 0.40820312, 2.6074219, 0.6245117, 2.1835938, -2.1835938, 0.19116211, 1.1767578, -1.8535156, 2.5644531, 5.0820312, -2.28125, -1.3417969, -3.0527344, 2.234375, -0.05142212, -0.7919922, -2.0820312, -2.9472656, -0.33813477, -3.7128906, 1.2851562, -2.9785156, 1.390625, 2.3984375, -0.40844727, -2.4277344, -0.07104492, -1.0966797, 0.97021484, -0.40576172, -1.0664062, 0.5805664, -1.9667969, 1.0078125, -3.0429688, 2.2910156, -1.7841797, -0.00039434433, -1.6826172, 4.3359375, 0.5595703, 0.056274414, -3.5703125, -0.7714844, 0.7783203, -1.0712891, -0.8666992, -1.3505859, 3.4550781, 0.99853516, 1.5458984, 0.24816895, -1.234375, 0.5649414, -0.61376953, 0.6020508, -1.1152344, -1.2568359, 2.6425781, 0.6323242, -0.2121582, -1.3798828, -3.0195312, 0.53808594, 0.89208984, 0.7426758, -1.4355469, 0.7939453, 0.6801758, 1.1201172, -1.1923828, -0.23327637, 0.13647461, 0.1772461, 0.047943115, -0.734375, 0.028167725, -0.9013672, -1.0810547, -1.2568359, 0.42944336, -0.59277344, -0.3095703, -0.32299805, 1.0556641, -3.1367188, -3.8164062, -0.7636719, -3.1367188, 1.5234375, 1.4443359, 2.0605469, -2.0371094, 0.44750977, -1.1738281, 0.69970703, -1.5849609, 2.5039062, 0.08770752, 1.4951172, 2.6699219, 0.19274902, -0.07336426, 1.4394531, 1.609375, 0.32592773, 1.7177734, 0.33984375, 1.0458984, -0.76953125, -1.3896484, 2.2421875, -0.36987305, 0.47583008, 1.4355469, -1.5429688, 2.3925781, -0.76953125, -2.9140625, -0.52783203, -0.031555176, 0.9692383, -2.4511719, -0.9785156, -2.1425781, -0.27246094, 1.3652344, -1.4238281, 2.2792969, 1.8339844, 0.6801758, -0.59716797, 0.95751953, 0.95166016, 0.22595215, -0.32348633, 0.09100342, -0.6982422, 0.6958008, -1.5898438, -2.3125, 1.6289062, -0.2524414, -0.71728516, -1.2890625, 0.7553711, -1.7177734, 2.7480469, 0.7426758, -2.8417969, -1.7236328, -0.47680664, -0.7216797, 2.4121094, -1.9492188, 1.3847656, 2.2089844, -1.8535156, 2.9824219, -1.0341797, 1.2382812, 0.5048828, -1.5078125, 2.7910156, -2.4941406, 0.09893799, 0.49682617, 2.1152344, -0.9189453, 0.63671875, 1.0595703, 4.265625, -1.4541016, -3.4160156, 2.8515625, -1.7519531, -1.5732422, 1.8095703, -0.6401367, -0.53222656, -0.03515625, 1.6044922, 0.17272949, 1.8173828, 0.5644531, -0.97021484, -1.2158203, 0.5786133, -2.3828125, -0.91015625, 0.56933594, 0.21081543, -1.2773438, -2.2910156, -0.5136719, -1.0175781, -1.6259766, 3.1171875, -2.5371094, 2.0917969, 0.8413086, 1.7001953, 1.1044922, -1.6279297, -1.7382812, 0.014465332, 0.25878906, -1.4863281, -0.5751953, -0.5913086, 0.13598633, 0.03277588, -1.0849609, -0.093933105, -2.3847656, -2.5253906, -0.71484375, -3.2167969, -1.7802734, -0.9848633, -2.6523438, -0.94970703, 0.22436523, -3.6601562, 0.09680176, -0.59716797, -4.078125, -0.66845703, -0.8925781, -1.1992188, 1.1484375, -0.034454346, 0.096191406, -0.47631836, -3.3242188, 0.41455078, -0.49804688, 0.27734375, 1.4638672, 1.4248047, -0.8129883, -0.7919922, -0.22790527, -0.6542969, 0.83984375, 1.0566406, -0.8461914, -0.9086914, -3.8828125, 0.2220459, -2.3125, 0.40014648, -0.054718018, 1.2880859, -2.4941406, -1.2177734, -0.72558594, -1.4755859, 4.0273438, -0.41455078, 1.0214844, 0.13623047, 0.38793945, 1.1347656, -0.6279297, -2.1347656, -0.8330078, 0.7548828, -1.7636719, -2.7988281, -1.7207031, 0.8598633, -0.24804688, 0.25463867, -0.75146484, 2.5351562, -0.9824219, 1.1650391, -1.7558594, -1.375, 0.19299316, 1.8847656, -0.24133301, -1.1650391, -2.4628906, -1.4628906, -0.5341797, -0.49682617, -0.5136719, 2.8144531, -1.2255859, 1.2207031, 0.67333984, -0.075927734, 0.71533203, -1.5693359, -2.1601562, 3.7988281, 1.5058594, -2.578125, 2.3632812, -1.6953125, -2.3183594, -1.6787109, -0.10736084, 2.2851562, 0.9921875, 3.2128906, 0.13806152, 1.6826172, 0.75, 2.3242188, 1.5058594, -1.1132812, -1.359375, 2.8652344, -0.72802734, -2.4707031, 0.61376953, 2.4023438, -2.4394531, -1.1660156, 2.4707031, 2.4511719, 2.421875, 1.9511719, 1.7890625, 1.6621094, -1.0761719, 1.8173828, 1.1992188, 1.7021484, -0.28393555, -1.0800781, 0.86376953, -1.2939453, 1.0683594, 1.9208984, -0.19995117, 1.859375, 0.7919922, 0.083618164, -2.2246094, 0.609375, 1.6640625, 2.3730469, 0.9663086, 1.4033203, -0.39916992, 0.42773438, -0.34692383, -1.8300781, -0.118774414, -2.671875, 0.05053711, 1.5107422, -0.10656738, 1.2763672, 1.2050781, 0.8017578, 0.15039062, -0.39404297, 0.37451172, -1.2128906, 0.29467773, 0.40649414, -0.6118164, -0.23498535, -1.2392578, 1.6044922, -0.78222656, -1.8408203, 0.3400879, 3.3789062, -1.2236328, -1.5224609, 1.6943359, 0.5698242, -0.8129883, 2.6679688, 0.5625, -1.4199219, 0.67089844, -2.1679688, 1.3359375, 0.5058594, -0.7138672, -0.63916016, -0.8232422, -0.6586914, 0.17297363, 0.2956543, 1.9082031, 2.0742188, -1.2382812, 0.089538574, -4.1445312, 0.42041016, 0.8310547, -1.8896484, -1.2617188, 1.7539062, 0.734375, 1.6005859, -1.6972656, 2.9335938, 0.46289062, -0.40356445, 1.7333984, -2.9960938, -1.3574219, -4.078125, -3.3652344, 0.90625, -0.9433594, -1.6953125, 1.0537109, 0.17297363, -1.1083984, 2.2363281, -0.048553467, -1.9023438, -0.25390625, -1.3017578, -0.51416016, -0.5175781, -0.9501953, 0.63916016, 0.3190918, -1.2802734, -2.9238281, -0.19750977, 0.34936523, 2.015625, 1.5, -3.2011719, 2.3867188, -2.4628906, 0.46264648, 0.036132812, -1.4287109, 1.3007812, -1.9970703, 0.57470703, -3.4003906, 1.5234375, 1.1074219, -0.73046875, 1.8994141, 1.7871094, 0.7001953, -2.3339844, -1.4423828, 1.0458984, 3.9121094, -0.7832031, -3.0117188, -1.4931641, 1.9921875, -0.09643555, -1.6025391, -0.5395508, -1.9443359, -1.8583984, -0.81152344, 2.3242188, 1.7851562, 1.1748047, 0.37841797, -2.5195312, -1.2851562, 0.6323242, -2.0527344, -1.4716797, -1.4560547, 0.92529297, 0.14611816, -1.2929688, -1.578125, 0.39575195, -1.9941406, -0.21032715, -3.0058594, 3.8203125, 2.59375, 1.3876953, 3.5292969, -1.1523438, 0.37451172, 1.0878906, 0.19238281, -1.7099609, 1.8173828, 0.25219727, 0.4104004, 1.5429688, 0.671875, -1.5585938, -0.5576172, 2.0859375, -2.2675781, -1.0791016, 0.035461426, 0.7426758, -0.08618164, -0.9243164, 2.7539062, -0.8618164, 2.6074219, -0.7495117, -0.73291016, -0.083984375, -0.22399902, -2.1425781, 0.8613281, -0.5073242, 0.17797852, 0.08294678, 1.6923828, 1.984375, -1.2763672, -0.26904297, -1.3017578, 2.2089844, 0.066589355, 0.4248047, -1.4414062, 0.9003906, -0.17150879, -1.5566406, 1.0371094, 2.5742188, -0.023635864, 3.3730469, 1.7158203, -2.2578125, 1.7587891, -0.4165039, -2.5449219, -0.328125, 0.9511719, -0.04333496, 0.85546875, 1.3671875, -3.4550781, -1.1376953, 2.2167969, -0.984375, 1.1347656, -0.06854248, -1.8710938, 1.1826172, -1.3203125, -0.6689453, 0.17529297, 1.3642578, -0.38598633, -0.5678711, 0.81640625, -1.3154297, 0.64941406, 2.4160156, -0.08392334, -2.3242188, 3.3085938, 0.05496216, 1.5878906, -0.49853516, 1.0800781, -2.0605469, 0.90625, 3.8808594, 0.8598633, 2.5234375, 0.79589844, 1.9023438, -2.7578125, 0.8129883, -2.0078125, 4.515625, -1.3662109, -0.22375488, 3.5019531, -3.0683594, 0.98828125, -2.8789062, 0.97314453, -0.40820312, 1.6005859, 1.28125, -1.1044922, -0.21435547, 0.70654297, -1.6279297, -3.1855469, -1.1201172, 1.3671875, 0.2524414, -0.77246094, 0.92529297, -1.7314453, 0.8203125, 0.8305664, -0.33666992, -2.2070312, -0.7792969, -1.2167969, -0.90771484, -1.2070312, 0.5932617, -1.0292969, 1.1083984, -0.3642578, 0.40966797, 0.5732422, -4.5742188, -2.3574219, 2.0820312, -1.8212891, 0.9165039, 2.3496094, 0.11743164, -0.13757324, 0.63378906, -0.44311523, -1.6259766, 1.0800781, -1.7021484, 0.36791992, 1.1171875, -0.04699707, 1.0507812, -0.8227539, -1.1230469, 0.19128418, -1.9619141, 0.49609375, 1.3398438, 0.49169922, 0.13256836, 1.4160156, 0.02949524, -2.0351562, 0.8256836, -0.4423828, 1.2480469, 1.6123047, -1.7998047, -0.09503174, -1.8486328, -1.9033203, -0.31811523, -2.5839844, 0.65185547, -0.3864746, 0.38916016, 0.6875, -0.2841797, 0.5888672, 0.07513428, -0.11248779, -0.75097656, 0.4165039, -1.4453125, 2.2382812, 1.7460938, -1.640625, -0.44921875, -0.8779297, 0.6894531, 1.1376953, 1.7382812, -1.0263672, -0.041931152, -0.15856934, 0.30444336, -0.34277344, 0.6064453, 2.5683594, -0.2746582, -1.8486328, 1.7841797, 4.125, 1.3574219, 0.20825195, 1.203125, -0.07537842, 0.8203125, 5.421875, -0.1529541, -1.2353516, 1.3867188, -1.8388672, 1.7792969, 0.06512451, -1.015625, 0.52783203, -1.7998047, -1.9003906, -2.9375, -1.2978516, -2.7539062, 1.7568359, 1.7050781, -0.4716797, -0.2368164, 2.5078125, 0.91015625, 1.7646484, 2.0429688, 0.24707031, 0.42236328, 1.2304688, -1.2685547, -0.36499023, 1.7431641, -2.7871094, 1.9667969, 0.89501953, -1.0263672, -1.7070312, 3.3125, -0.019317627, 2.28125, 1.5507812, 0.96191406, 1.2529297, 2.4570312, 3.71875, 0.18981934, 1.0302734, 1.0488281, -0.72021484, 1.5878906, 2.3710938, 3.3574219, -0.63916016, 0.4519043, 2.2070312, -1.0078125, -1.4345703, 0.47192383, -0.06921387, 1.1855469, -2.5429688, 1.5263672, 0.4736328, 1.6386719, -1.7597656, -1.046875, -0.10418701, -1.5029297, -1.5800781, 0.2631836, 2.921875, -1.0566406, 0.51708984, -1.0839844, 0.14672852, 1.6289062, -2.8945312, 1.8232422, 1.0273438, -0.35620117, -0.2064209, 0.90771484, 1.7646484, 0.15454102, 0.5258789, 2.0136719, 1.0166016, 1.3544922, 0.45654297, -0.6347656, 0.9770508, 0.33764648, 3.2871094, -0.70751953, -0.43798828, 2.3007812, -2.3867188, -2.0410156, -4.1640625, 2.8808594, 3.0097656, 1.2275391, 2.3300781, -1.8339844, 2.5, 0.10003662, 1.2128906, -2.0683594, 0.46972656, 0.08917236, -2.125, -1.0058594, 0.85253906, 0.24157715, 2.1328125, 2.5058594, -1.4208984, 1.2412109, 0.66308594, 0.10595703, 2.3359375, 1.375, -0.99853516, 0.9873047, 0.50634766, 1.40625, 0.045532227, -2.0839844, -1.7558594, 1.5175781, 0.91503906, -0.16271973, 0.53027344, -0.55371094, -1.0654297, -0.9970703, -0.765625, -0.10235596, -2.8476562, -2.5703125, 0.36010742, -0.3779297, -1.5273438, -1.9511719, 2.6933594, -0.1616211, -1.2021484, -0.28271484, 1.8232422, -1.1162109, 1.9160156, 0.69873047, 0.42578125, 0.81152344, -1.9560547, 1.3173828, 0.6201172, -1.5302734, 0.5473633, 0.4128418, 1.6611328, -1.3759766, -0.02748108, -0.18774414, 0.6645508, 1.0009766, 0.98095703, -0.73339844, -0.5786133, 2.1972656, -0.7836914, -0.48535156, 2.5410156, -0.07965088, -0.33911133, -2.1367188, -3.0097656, 0.09820557, 0.14709473, -1.0449219, 0.9272461, 3.28125, 3.4863281, 0.23046875, -1.9355469, -2.9765625, -0.0020370483, -0.7944336, 0.93603516, -1.2382812, -0.64990234, 0.23278809, 0.328125, 1.9980469, -0.11743164, -2.5175781, -0.44555664, -1.0546875, -0.30297852, -0.68408203, 2.3535156, -0.43847656, 1.2011719, -0.38891602, 2.2929688, 2.5683594, -0.91308594, 1.1230469, 2.8046875, 0.63720703, -2.4882812, 2.5722656, -0.4711914, 0.16479492, 0.13647461, 1.0136719, 1.6943359, 0.31958008, 1.2792969, -0.95654297, -3.1582031]}, "B000W8JNLC": {"id": "B000W8JNLC", "original": "Brand: XtremepowerUS\nName: XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator\nDescription: Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24\"(L) x 14\"(W) x 5\"(H) Package Contents: Propane Stove Regulator Hose\nFeatures: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on\nDurable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting\nPortable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors\nSafe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage\nPowerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.\n", "embedding": [-2.2558594, 2.1464844, 1.6113281, 0.7285156, -0.9560547, 1.4082031, 1.6669922, -2.0234375, -2.0996094, 1.3544922, -0.18811035, 0.021484375, 0.73339844, -2.9140625, -0.4555664, 0.8808594, -0.82373047, 0.06896973, -0.34155273, 1.84375, 1.859375, 0.5522461, 2.8105469, -1.2851562, -0.1340332, -0.5756836, 2.8164062, -2.8945312, -0.5996094, -1.5449219, 2.21875, 0.07867432, -0.68408203, 2.4082031, -3.4628906, -0.080444336, -0.95996094, 0.08215332, -3.921875, -0.7558594, -1.0449219, -0.6958008, 3.3886719, -0.8647461, -2.2050781, -0.8696289, 0.53222656, 0.22717285, -1.2060547, 0.1340332, 0.45288086, 0.07366943, -0.55566406, 1.5097656, -2.0019531, -0.56933594, -0.24145508, -1.5361328, 2.46875, 0.72509766, 2.8886719, 0.8828125, -2.6992188, 1.4697266, -0.39746094, 0.39990234, 1.2910156, -0.6923828, -0.89501953, 0.18334961, 2.4121094, 0.27148438, 0.2614746, 0.2824707, -0.0017738342, -0.17700195, -3.5488281, 1.1162109, 3.71875, -0.10559082, -2.265625, 2.6210938, 1.4013672, -0.12683105, 0.69384766, 1.4931641, -1.1660156, -0.70458984, 2.3613281, 1.3017578, -2.609375, 3.0371094, -1.8134766, -4.25, 1.8544922, -0.50634766, 1.6474609, 0.86328125, -0.5566406, 1.1914062, -0.67285156, 0.41552734, -1.2880859, 0.36865234, -2.0234375, -0.39624023, 2.0644531, 2.3867188, -3.078125, 1.8339844, -2.4609375, -0.39379883, 0.70458984, -0.09844971, 0.7973633, -1.0732422, -1.3662109, 0.04510498, 4.546875, 0.38745117, 4.65625, -0.50634766, 1.6572266, -1.1035156, 0.42333984, 2.296875, -0.6870117, 0.7963867, 2.5957031, -0.41748047, -1.2949219, -1.3789062, 1.015625, -0.4326172, -1.1279297, -1.7421875, -1.2792969, -3.1503906, -4.375, -0.43823242, -3.15625, 0.83935547, 1.4824219, -0.69433594, -4.1445312, -0.6875, -0.24255371, 1.8027344, 1.4335938, -1.6542969, -0.20947266, -1.5517578, 0.28808594, -2.4941406, 2.8632812, 0.49316406, -0.7504883, -1.5195312, 3.21875, 0.88134766, 0.2746582, -2.3378906, -3.0429688, 2.3964844, 0.31176758, -2.9023438, 0.15820312, 1.4511719, -1.3964844, 0.8847656, 0.05871582, -2.8417969, 0.13842773, 0.19567871, 1.2236328, -0.8198242, -1.4501953, 2.2480469, 0.73876953, -1.4755859, -2.7441406, -2.4375, 1.3828125, 1.1162109, 0.39941406, -0.56152344, 0.70654297, -0.30126953, -0.3269043, -2.3867188, -0.81591797, 1.1191406, -0.88378906, 0.050476074, 0.5317383, -1.8935547, -1.7753906, -2.4394531, 0.88671875, 1.7675781, -1.2548828, -0.8901367, -0.71875, 1.5908203, -2.4238281, -0.9428711, 0.77783203, -0.28588867, 1.9150391, 2.5644531, 0.21240234, -0.64990234, 2.6835938, 0.078186035, -0.5078125, -1.7402344, 2.53125, 1.5429688, 1.4199219, 1.8544922, 0.09661865, -1.5546875, 0.84033203, 2.3359375, 0.48901367, 2.6914062, 0.21264648, -1.0136719, -2.4589844, -1.3291016, 2.4902344, 1.2001953, -0.73828125, 1.2929688, -0.7001953, 2.9023438, 1.7529297, -0.6616211, -0.019241333, 0.080200195, 0.7211914, -1.7949219, -0.3474121, 0.0035324097, -2.0820312, 0.27929688, 0.46264648, 0.80615234, 3.1347656, 1.0429688, 0.07574463, 0.14562988, 0.37670898, -0.74658203, -0.7060547, -0.41625977, 0.73291016, -0.0077209473, -1.9023438, -1.8525391, 1.9453125, 1.8056641, 0.22595215, 1.6162109, 0.32617188, -0.22875977, 4.0820312, 0.57128906, -2.6054688, 0.3112793, 0.69970703, 1.7763672, 2.5039062, 0.07385254, 2.4296875, -1.3291016, -1.1386719, 2.3457031, 0.40893555, 1.9160156, 1.0712891, -3.7050781, 2.3496094, -2.1757812, 0.58251953, -0.014373779, 3.2792969, -0.1751709, -0.23071289, -0.06121826, 6.0664062, -0.48510742, -2.0957031, 2.1425781, -1.6972656, 0.63720703, 0.44677734, 0.52734375, 1.5693359, -0.23327637, 2.2460938, -0.4482422, -1.1953125, 1.9121094, -1.5595703, -0.36499023, 0.6425781, -2.4277344, -0.17260742, 1.3369141, -0.10180664, -1.6621094, -1.4228516, 1.2978516, -2.0566406, -1.1630859, 1.9628906, -2.8300781, 1.3925781, 2.7089844, 0.1854248, 0.71875, -0.4086914, -2.0820312, 0.33081055, 0.7890625, -0.14685059, 2.2832031, 1.3466797, -0.7416992, -1.0830078, -2.1699219, 0.64697266, -2.15625, -1.5683594, -0.17541504, -0.8222656, -2.4609375, 0.8461914, -1.7480469, -0.65527344, 0.7128906, -2.2207031, 1.0507812, -0.10406494, -2.5878906, -0.265625, 0.49316406, -0.8100586, -0.9824219, 0.9394531, 2.0449219, -0.35961914, -2.3125, -0.47338867, -0.5078125, -0.05291748, 0.2277832, -1.6679688, 1.1103516, -0.58691406, 0.9291992, -0.119628906, 0.02659607, -0.048736572, -3.2480469, 1.3515625, -4.6015625, -0.19299316, -0.52490234, 0.8725586, -0.45336914, -0.05899048, -1.6923828, -0.875, -0.121032715, -1.1943359, 3.4433594, -1.4355469, 1.3583984, -1.6962891, -1.5253906, -1.0048828, -1.8144531, -2.8457031, -0.32592773, -1.2626953, -2.2265625, -0.8652344, -3.5390625, 0.44628906, -0.82373047, -0.32641602, -0.7114258, 0.60546875, -1.3251953, 0.97216797, -0.578125, -0.7480469, 0.35107422, -1.4462891, -0.8857422, -2.5292969, -1.2763672, 0.08917236, -1.1376953, 0.06072998, 0.9614258, 0.19958496, 0.50097656, 0.20056152, 2.1113281, 1.0400391, -0.31079102, 0.4711914, -3.8984375, 2.2285156, 1.4033203, -0.83984375, 1.3457031, -0.9707031, -0.46020508, -2.2207031, -2.2011719, 2.8046875, 1.3027344, 2.5839844, -0.3725586, -0.63427734, 1.5800781, 1.5683594, -1.2880859, -2.0253906, -0.53222656, 4.6640625, -3.9101562, -1.2871094, 1.8154297, 2.7851562, -2.3984375, 0.013420105, 0.7832031, 1.2646484, 2.4296875, 1.5117188, 0.19848633, -0.8515625, 0.07086182, -0.28466797, 2.7675781, 0.19909668, 0.35864258, -0.45092773, -0.029510498, -0.24035645, 0.36914062, 0.28320312, 1.0576172, 1.9980469, 2.3984375, 1.3789062, -2.5957031, 0.42382812, -0.2998047, 1.3154297, 0.7216797, 2.5917969, -0.15161133, -1.4248047, -1.9824219, 0.013381958, 1.4775391, -0.5541992, 0.4567871, 0.45166016, 1.8837891, 0.5444336, 0.30639648, -0.53027344, 0.43017578, -1.15625, 2.1054688, 0.6850586, -0.66503906, 1.3652344, -0.8120117, -0.78515625, -2.3945312, 1.4335938, -1.1953125, -1.8330078, 0.7636719, -0.20507812, -3, -2.1445312, -1.2958984, -0.2890625, -1.125, 4.9179688, 1.0810547, -1.4726562, -0.24584961, -1.0371094, -0.3322754, 2.9921875, -1.2539062, -0.41479492, -0.8496094, -0.61865234, -0.25195312, 0.15258789, 1.1298828, 0.7944336, -0.94921875, -0.18945312, -3.0488281, -1.1943359, 0.32226562, -1.8759766, 0.50927734, 1.6494141, 0.08325195, 1.6445312, -0.9482422, 4.2617188, -2.3574219, -2.0644531, 1.5488281, -3.0898438, -0.97216797, -3.5175781, -3.6445312, 1.9833984, -1.2148438, 0.037841797, 3.03125, -0.43432617, -0.6191406, 1.0214844, 0.74609375, -1.8837891, -1.5595703, -0.9863281, 1.5878906, -2.765625, 0.45532227, 1.5615234, 0.92626953, -1.5390625, -0.82958984, 0.44335938, -0.31811523, 1.0273438, 1.078125, -2.5175781, 1.4101562, -0.7626953, 0.8071289, -0.70654297, -0.82470703, 1.1611328, -1.5449219, -0.43164062, -1.4384766, 1.2705078, 1.6210938, 0.32226562, 0.08117676, 3.5898438, 1.0859375, -0.58251953, -0.5019531, 2.1386719, 2.8339844, 0.11151123, -1.9169922, -1.2792969, -0.66748047, -1.7998047, 0.3095703, 0.15710449, -0.90283203, -1.9746094, 1.8583984, 0.69189453, 1.3066406, 1.9941406, 0.6899414, -1.8232422, 0.5239258, 0.9453125, -3.4492188, -1.4345703, -0.9213867, -0.12597656, -1.7304688, 0.39916992, -0.8935547, -0.6899414, -1.1767578, -1.4238281, -1.375, 2.3769531, 1.2900391, 1.0673828, 1.8710938, -0.57421875, -2.1445312, 0.90527344, -0.5551758, -1.4111328, 1.8378906, -0.5209961, -0.19946289, 2.4238281, 1.1455078, -0.46801758, -1.0810547, 1.1904297, -1.9492188, -0.84228516, 0.036499023, 2.0664062, -1.0195312, -2.0703125, 1.5839844, -0.27734375, 1.984375, -1.1884766, 0.23583984, 0.9711914, 0.28759766, -2.15625, -0.6850586, 0.45507812, 1.4121094, 0.42626953, 0.9760742, 0.70751953, 0.17150879, 1.6074219, 0.9008789, 2.8398438, -0.16333008, 0.16784668, -0.105041504, -0.028259277, -1.1533203, -0.90478516, 0.89208984, 1.6308594, 1.0234375, 3.5117188, 0.70996094, -1.1865234, 2.1738281, 0.09460449, -2.0683594, -1.3789062, 0.088012695, -0.9458008, 2.1269531, 0.026489258, -2.5996094, 0.32983398, 2.5175781, -0.5385742, 0.9682617, -0.5620117, -1.2617188, 0.26611328, -3.6660156, -0.99365234, -1.3808594, -1.5458984, 1.7636719, -2.4765625, 0.9165039, 0.21057129, 2.296875, 2.4609375, -0.99902344, -0.1887207, 1.7265625, -0.3696289, 1.0673828, -0.5517578, -1.0996094, -3.78125, 1.0029297, 1.6396484, 0.77197266, 1.7617188, 1.4648438, -0.3010254, -0.99853516, -1.5126953, -1.5488281, 1.7558594, -1.8427734, 0.074157715, 2.15625, -0.14465332, 1.2001953, -0.71533203, -1.7548828, -1.390625, 2.5019531, 1.0039062, 0.1763916, -0.68652344, -0.4506836, -2.4042969, -6.3203125, -0.9550781, 1.1503906, -0.18432617, -0.8066406, 0.019348145, -1.0888672, -0.33789062, 0.50146484, 0.6972656, -2.453125, 0.6953125, 0.6220703, 1.2060547, -1.5195312, 0.3046875, 0.6386719, 2.3730469, 1.4199219, 0.052856445, 0.35229492, -1.2597656, -1.9882812, 1.4257812, -2.2421875, 0.9526367, 0.62158203, -0.79833984, 0.03189087, 1.9970703, -1.1171875, -1.265625, 2.3769531, -2.2246094, 0.17468262, -0.3334961, -1.59375, 1.4726562, 1.0976562, -0.49975586, 1.2167969, -0.75634766, -0.10430908, 0.29858398, 1.7226562, 0.06414795, 1.9179688, -0.16186523, -1.5615234, 0.8408203, 0.06933594, 0.9838867, 2.046875, -0.00056934357, -1.7080078, -3.0253906, -3.3144531, 0.62841797, -0.93408203, -0.0018987656, -1.6474609, 1.4326172, 0.2265625, 0.5551758, -0.13562012, 0.20837402, 0.062927246, 0.28173828, 1.078125, -0.96777344, 3.5488281, 0.5107422, -1.4150391, -3.8613281, -2.5546875, 0.81884766, -0.60498047, 1.0693359, -1.2089844, 0.26635742, -0.76416016, 1.1074219, -0.3125, 2.7773438, 2.4101562, 1.2880859, -1.1904297, 0.92529297, 1.9716797, -0.48632812, 0.23083496, 0.19018555, -0.78564453, -0.20788574, 2.9707031, 1.5947266, -0.3503418, 1.6748047, -0.24389648, 2.0449219, -0.18566895, -2.4550781, 1.5214844, -2.1132812, -1.2539062, -2.2792969, -2.0136719, -1.5634766, 1.9111328, 1.7011719, 0.1776123, -0.16381836, 2.9101562, -0.3190918, 0.33813477, 1.9580078, 1.0546875, -0.099121094, 1.6201172, -0.6513672, -0.08117676, 1.9580078, -2.125, 0.79785156, 1.4160156, -0.032989502, 0.059020996, 2.7070312, 1.4238281, 2.7460938, 1.4833984, 1.9433594, 2.6171875, 1.5664062, 3.7128906, -0.0013942719, 2.6015625, 2.3164062, 0.023086548, -0.34643555, 2.0371094, 1.3271484, -1.4375, -1.3896484, 1.3515625, -0.48754883, -1.4414062, -1.1992188, -0.039215088, 0.7631836, -3.4257812, 1.4082031, 0.23876953, 0.80371094, -0.5727539, 0.9140625, -1.3398438, -0.5810547, 0.5083008, 0.5751953, -1.453125, -0.8125, -0.11553955, -1.0478516, 0.21655273, 0.9453125, -3.2128906, 0.33813477, -1.5410156, -1.9785156, 0.15576172, 2.4179688, -0.15209961, 1.2910156, 0.30126953, 2.0566406, 0.52197266, -0.44750977, 2.2519531, -1.7685547, 0.98876953, -1.1123047, 3.1699219, 0.55078125, -1.1035156, 2.0859375, -2.0546875, -2.3554688, -4.03125, 2.7128906, 0.109375, 0.60302734, 1.2509766, -1.9912109, 2.8359375, 0.58740234, 1.6894531, -2.6152344, 1.6982422, -0.45629883, -1.6796875, -0.6279297, 0.7714844, 0.140625, 3.6015625, 1.9814453, -1.2519531, 1.1044922, -0.16259766, 0.4267578, -0.7714844, 0.8730469, -0.14331055, 0.50439453, -0.9868164, 2.6308594, 2.2128906, -2.4082031, -0.71435547, 3.2480469, 1.46875, 1.2822266, -0.9189453, -1.6816406, 1.4824219, -0.016693115, -0.48510742, -0.32910156, -0.2878418, -1.4902344, -1.03125, -0.35864258, -1.2822266, -2.7148438, 0.31347656, 1.4580078, -1.7910156, 1.3115234, 1.9052734, -0.4428711, 0.66845703, -0.13171387, -1.0205078, -0.14111328, -0.9848633, 1.1396484, -3.1464844, -1.9736328, -0.11364746, 0.60791016, 1.6357422, -0.75878906, -0.4975586, -0.17016602, -0.3791504, -0.11230469, 1.5869141, -0.55859375, 0.80371094, 0.85009766, -0.2529297, -0.19421387, 3.3359375, -0.20227051, 0.07598877, -1.4472656, -3.0722656, -0.7636719, -1.1044922, -1.3076172, 1.6542969, 3.0175781, 1.3310547, 0.9355469, -2.7382812, -2.5996094, -1.3408203, -0.50146484, 1.6005859, 0.21826172, -0.73339844, 0.97265625, 1.0556641, 2.8398438, -1.1816406, -0.32055664, -0.6328125, 1.2207031, 0.39135742, 0.96533203, 2.0253906, 0.73828125, 0.6230469, -0.89160156, 3.3398438, 1.8564453, 0.16674805, 1.7001953, 1.1308594, 0.5336914, -2.7011719, 0.56591797, -2.203125, 0.23425293, 1.0664062, -1.4072266, 2.9257812, 2.65625, -1.0878906, -2.8691406, -1.984375]}, "B00004TBJ4": {"id": "B00004TBJ4", "original": "Brand: Char-Broil\nName: Char- Broil Standard Portable Liquid Propane Gas Grill\nDescription: \nFeatures: Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don't have to wait for the grill to cool down to move it\nCook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that's easy to clean and dishwasher safe\n11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders\nQuality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill\nGreat for grilling and indirect cooking at low temperatures - just close the lid and you'll get even heat and low flare-ups\n", "embedding": [-1.6708984, 1.2753906, 2.4179688, 1.0146484, -1.2871094, -0.6376953, 1.8535156, -0.8911133, -1.109375, 1.4248047, 0.39501953, -2.296875, 1.9384766, -3.015625, -0.17053223, 0.12298584, 1.5732422, 1.6318359, 3.1230469, 0.3635254, -0.5107422, 1.4404297, 1.4960938, 0.05758667, 0.4663086, 0.27929688, 2.890625, -1.6142578, 0.24353027, -2.2382812, 1.8583984, -0.93408203, -0.6611328, 1.4003906, -2.4101562, -1.4853516, -2.1308594, 1.8955078, -2.5800781, 0.032043457, 0.023010254, -0.8041992, 2.421875, -0.8227539, -1.8564453, -0.8623047, -0.4428711, 0.7397461, 0.91259766, -0.44067383, 2.0371094, 1.0371094, 0.69140625, 0.9580078, -2.0664062, 1.3330078, 0.71875, -1.6914062, 0.73779297, -0.36645508, 2.4882812, 0.64501953, -1.4853516, 0.25683594, -1.9384766, -0.05731201, 0.06512451, -0.54833984, 0.19396973, -1.0859375, 2.3378906, -0.39575195, -2.0371094, 0.08392334, 0.77197266, 1.0751953, -1.2539062, 1.9130859, 0.6123047, 0.05319214, -1.2832031, 3.6582031, 0.06378174, -1.6523438, 0.05883789, 0.12451172, -0.84375, -1.3105469, 2.1328125, 1.1816406, -0.07946777, 2.7988281, -0.64501953, -3.0820312, 2.3945312, -0.85302734, 2.1699219, -0.048034668, 0.016174316, 1.6728516, -0.71240234, -0.4880371, -2.5097656, -2.46875, -2.8867188, -1.6191406, 1.1083984, 0.56640625, -2.0996094, 1.7363281, -1.5214844, -0.5527344, 2.4238281, 1.3183594, 0.42871094, -0.73828125, 0.059753418, 4.6015625, 1.3544922, 1.2832031, 4.34375, -0.6567383, 1.4794922, -0.83203125, -0.25976562, 0.46240234, -0.7988281, 1.625, 4.8710938, -0.8251953, -0.6713867, -1.2441406, 2.5683594, 1.1123047, -1.9677734, -1.7001953, -1.3417969, -2.1191406, -4.1171875, 1.7880859, -2.4316406, 1.0634766, 0.9501953, -0.12988281, -2.7324219, -0.8666992, 0.55810547, 2.0566406, -0.01902771, -2.1835938, 1.1337891, -2.1132812, 0.43896484, -1.9453125, 1.0263672, 0.77441406, -2.0097656, -1.1835938, 3.703125, 1.3818359, 2.0253906, -1.5351562, -1.0234375, 2.1386719, 1.3720703, -0.89941406, 0.35424805, 1.2714844, -0.36523438, 1.4208984, 0.48242188, -3.0566406, -0.5551758, 1.7978516, 1.2568359, -1.9453125, -0.27783203, 2.6191406, 0.22827148, -0.65722656, -0.72021484, -2.7675781, 1.1484375, 0.6040039, 0.055633545, -1.1572266, -0.24084473, 1.0644531, -0.29882812, -1.5693359, 1.1308594, -0.9321289, -0.40014648, -0.06896973, -0.09484863, -0.9458008, -1.0732422, -0.85058594, 0.49853516, 1.1650391, -1.7333984, -0.0826416, -0.11755371, -0.20874023, -2.4648438, -3.0058594, 0.74658203, -1.7226562, 0.04663086, 0.62402344, 0.41503906, -1.6796875, 1.1640625, -0.37768555, -0.11004639, -1.8642578, 1.5390625, 0.085876465, 2.5546875, 1.8505859, 1.046875, -0.9189453, -0.5415039, 2.2070312, -0.14025879, 2.7167969, -0.18127441, 0.8779297, -1.3447266, -1.2421875, 2.6796875, 0.7270508, 0.24951172, -0.17810059, -0.48901367, 1.5966797, -0.6635742, 0.70458984, -1.1308594, 0.31713867, -1.3349609, -0.7324219, -0.23596191, -2.6660156, 0.114868164, 0.35742188, -1.8515625, 3.2421875, 1.8583984, -0.25927734, -0.35009766, 0.32592773, 0.55615234, 1.3740234, -0.27807617, 1.3808594, -0.1083374, 1.3222656, -2.3515625, -1.5898438, 0.22167969, 1.6171875, 0.15136719, -0.6044922, 1.0341797, -1.6416016, 2.53125, 2.0859375, -1.2734375, -0.91015625, 0.7011719, 1.9609375, 0.0736084, -1.1572266, 1.3349609, 0.6118164, 0.12042236, 3.75, 0.70654297, 0.24121094, 1.125, 0.20837402, 2.0214844, -1.4248047, -1.8847656, 1.0058594, 1.7177734, -1.1933594, 0.010299683, 0.2854004, 4.3828125, 0.6357422, -2.609375, 2.8046875, -1.2714844, 1.1689453, 2.1132812, 0.05996704, -0.117248535, 0.6274414, 3.4355469, 0.7348633, -0.296875, 1.0898438, -2.7324219, -2.453125, 0.51953125, -1.0849609, -0.7446289, 1.2255859, 0.1427002, 0.45898438, -1.6142578, 1.0751953, -2.6816406, -1.6220703, 1.46875, -2.7304688, -0.15405273, 1.7880859, 0.95703125, 0.9057617, 0.06719971, -2.4003906, -0.41259766, 1.7294922, -0.89697266, 0.71240234, 0.47558594, -0.5698242, -0.5678711, 0.4807129, 0.640625, -1.125, -3.1679688, -1.3134766, -1.8710938, -3.6171875, 1.4833984, -1.3427734, -1.9814453, 1.8378906, -1.8398438, 0.77734375, -0.07281494, -3.6679688, -0.4609375, -0.078063965, -0.74609375, -1.6972656, 0.10040283, 0.30493164, 0.23132324, -4.3515625, -0.6044922, -0.2590332, 0.37158203, -1.2519531, -0.9482422, -1.2832031, 0.42626953, -1.0068359, -1.0009766, 1.8691406, 0.70947266, -2.140625, -0.49365234, -2.4433594, 2.2363281, -2.9375, 0.091552734, -1.6083984, 0.96875, -3.8613281, -2.171875, -0.14282227, -1.5664062, 3.4375, -0.9477539, 0.9584961, 0.4255371, -0.40551758, 0.30664062, 0.1496582, -3.6269531, -0.79052734, -0.3696289, -1.2568359, -2.7011719, -3.4746094, -0.4572754, 0.74365234, -1.0908203, -0.6582031, 0.28442383, -3.7285156, 2.2597656, -2.8632812, -0.39746094, -1.5966797, 1.8056641, -0.45581055, -1.2763672, -1.0351562, -0.13891602, -1.4414062, -1.2265625, -0.9428711, 1.0429688, -0.9760742, 1.2128906, 1.9921875, 0.43676758, 1.1416016, -1.2070312, -4.4882812, 3.3867188, 1.1806641, -2.4355469, 3.0078125, -0.093933105, -1.9541016, -3.6386719, -0.7792969, 2.5878906, 1.9404297, 3.75, 1.9550781, -0.5620117, 3.1308594, 0.8105469, -0.52490234, -0.98095703, 0.13903809, 2.3066406, -2.6972656, -1.8994141, 0.16784668, 3.8183594, -1.5, -1.0498047, 4.09375, 0.69189453, 2.8417969, 2.0039062, 1.0371094, 0.7260742, -0.41674805, 2.4804688, 1.2177734, 1.0078125, 0.17956543, 0.0042152405, -0.82421875, 0.48095703, 1.0341797, 0.9042969, 0.031799316, 1.8271484, 2.0136719, 0.30664062, -1.6748047, 1.1142578, -0.41601562, 0.22790527, -0.14355469, 1.1328125, -1.6835938, 0.13684082, -1.1123047, 0.019943237, 0.3881836, 0.046783447, -1.7177734, 1.8203125, 0.5317383, 0.11279297, 0.067993164, 0.95996094, 0.093933105, -0.21643066, -0.85791016, -1.0410156, -0.24438477, -0.25048828, -1.9501953, -0.21020508, -0.5078125, 1.2558594, -1.8017578, -2.1132812, 0.74658203, 2.1113281, 0.020507812, -1.3271484, 0.8417969, 0.5786133, -1.109375, 2.8632812, 1.5976562, -2.2929688, 1.9091797, -1.1552734, 0.62890625, 1.5107422, -2.2011719, -0.953125, -2.0820312, 0.7573242, -0.13452148, 1.7060547, 1.7988281, 0.46435547, -2.6835938, -0.038085938, -3.9726562, 0.013137817, -1.1289062, -1.5947266, -2.1640625, 3.3378906, 2.0585938, 0.6948242, -0.96533203, 2.59375, 0.32250977, -1.0849609, 1.3847656, -2.6484375, -1.3447266, -3.6191406, -5.0234375, 1.0771484, 0.16455078, -1.0175781, 2.6933594, -0.8417969, -0.57421875, 1.3916016, 0.8457031, -0.7529297, -0.5703125, -1.7949219, -0.13354492, 0.045715332, 1.0136719, 2.2480469, 1.8310547, -2.1445312, -2.5820312, -1.4033203, -0.796875, 2.0957031, 3.1855469, -1.6425781, 1.53125, -2.5390625, 0.9428711, -1.9160156, -1.2255859, 1.1689453, -1.2480469, -1.1328125, -2.7128906, 0.34472656, 0.79052734, 0.032470703, 1.9072266, 1.7753906, 0.59716797, 0.41845703, -1.0683594, 1.9208984, 2.4277344, -0.17004395, -3.0742188, -2.7929688, -0.97265625, -1.1074219, -0.28588867, 0.29370117, -1.3808594, -1.9121094, 1.8652344, -0.064819336, 0.6591797, 2.2304688, 0.85009766, -2.1816406, -0.5361328, -0.3227539, -1.6259766, -1.7470703, -0.5986328, -0.5185547, -0.25024414, -0.6557617, -2.6054688, -0.124572754, -1.5732422, -0.81396484, -2.171875, 3.3105469, 2.9648438, 2.0019531, 2.3496094, -1.1816406, 0.3474121, -0.48706055, -0.97802734, -1.3310547, 1.2285156, 0.28051758, 1.5205078, 0.8769531, 0.75634766, -2.6386719, -0.296875, 1.2792969, -3.3457031, -1.8378906, -2.5683594, 1.3701172, -2.5371094, 0.36865234, -0.3635254, -1.7734375, 3.6679688, -0.74609375, -0.48291016, 0.6220703, 1.0029297, 0.08001709, 0.07965088, 0.7807617, 1.2041016, 0.7470703, 0.6176758, 0.08673096, -1.1113281, -0.55908203, -1.0615234, 2.390625, -0.7104492, 0.4921875, -0.28930664, 0.30639648, -1.7509766, -0.6401367, 0.6254883, 3.2285156, 0.36401367, 2.8554688, 1.1728516, -2.3691406, 1.6660156, 1.7578125, -3.0371094, -1.0419922, -0.93359375, -1.8935547, 1.0546875, -1.0097656, -4.9101562, 0.4272461, 1.5185547, 0.007499695, 1.0078125, -0.52246094, -0.6123047, -0.1048584, -1.8828125, -0.9199219, -0.6533203, -1.1308594, 0.29370117, -0.031707764, -0.38134766, -0.88720703, 0.9584961, 2.9257812, -0.29541016, -0.056732178, 1.5546875, -1.0078125, 0.98291016, -0.22131348, -1.5634766, -2.8457031, -0.2763672, 1.3574219, 1.1972656, 2.4394531, 0.76708984, 1.1923828, -2.8730469, -0.80029297, -1.9873047, 2.9648438, -2.0234375, -0.859375, 1.5175781, -2.2265625, 0.9838867, -2.9785156, 0.23254395, 0.06185913, 2.4199219, 1.9550781, -0.44091797, -1.0488281, -0.11828613, -2.9316406, -5.7617188, -2.8125, -0.52197266, 0.72558594, 1.0634766, 1.6767578, -1.0722656, 0.8574219, -0.11932373, 0.10308838, -1.1992188, 1.3378906, -1.1552734, -0.6479492, -0.43725586, -0.14208984, -1.3476562, 1.4472656, 0.52001953, 1.8779297, 1.2841797, -2.5507812, -1.0957031, 0.9067383, -3.0136719, -0.105651855, 0.875, -0.13745117, -0.85253906, 0.088378906, 0.5073242, -1.6738281, 3.1796875, -0.48583984, 0.19067383, 1.1425781, -0.43164062, -0.6855469, -0.25561523, -2.4121094, 0.6875, -0.6904297, 1.6142578, 0.1854248, -0.19934082, 0.054229736, 1.6210938, -1.3847656, 0.15808105, 1.2871094, 0.9267578, 1.3261719, 1.9052734, -1.4238281, 0.5361328, -2.171875, -3.0351562, 0.17346191, -2.3769531, -0.6166992, -2.5019531, 0.3803711, 0.8935547, -0.40527344, 0.9033203, 0.2902832, 0.28198242, -0.8017578, 0.7167969, -0.94384766, 2.6230469, 2.6757812, -1.6416016, -2.5820312, 0.36865234, 0.7446289, 1.9921875, 0.24816895, -0.7338867, 1.0273438, -0.9995117, 0.27661133, -0.52246094, 3.1582031, 1.3730469, -0.8432617, -0.6821289, 1.1171875, 3.5488281, -0.54248047, 0.51660156, 0.71484375, 1.8251953, -0.17114258, 3.6308594, 0.36108398, -1.8642578, 0.48876953, -2.3867188, 1.2822266, 0.022338867, -1.9511719, -0.07165527, -2.640625, -1.9541016, -1.0771484, -0.5527344, -2.7011719, 1.1621094, 1.1376953, -2.0820312, 2.1289062, 3.2988281, -1.9023438, 2.2792969, 1.6884766, 2.1699219, 0.18847656, 1.5664062, -1.2431641, 0.4260254, 0.5283203, -3.7089844, 1.2753906, -0.02217102, -0.57666016, -0.63964844, 2.8261719, 1.7285156, 2.7167969, 1.7392578, 2.546875, 3.6992188, 1.8291016, 3.5019531, -0.6069336, 1.8261719, 2.6757812, -1.7998047, 1.6181641, 3.0136719, 1.3398438, -0.6040039, -1.2265625, 2.203125, -0.6611328, -1.9101562, -0.7763672, 0.7661133, 1.4863281, -4.2617188, 1.7744141, 0.7138672, 0.37158203, -1.9580078, 0.8017578, -0.3479004, -0.97265625, -1.3398438, 0.09661865, 2.7558594, 0.15698242, 0.84765625, -0.3671875, 1.1796875, 1.5488281, -3.0976562, 0.69921875, 0.6020508, -0.81396484, 0.4177246, -0.21691895, 0.81103516, 1.4716797, 0.77783203, 0.59765625, 1.4892578, -0.3022461, 2.875, -1.5097656, 0.57470703, 0.6201172, 1.2255859, -0.9291992, -2.4765625, 1.0625, -0.83154297, -2.6679688, -2.8417969, 1.1396484, 1.4853516, 2.671875, 0.30151367, 0.21740723, 2.984375, -0.24047852, 2.0761719, -1.8691406, 0.93896484, -1.0185547, -4.1992188, -2.4492188, -0.6743164, -0.3791504, 3.578125, 0.6357422, -1.0703125, 1.8896484, 0.44873047, 1.7822266, 1.1650391, 1.6240234, 0.27490234, 0.97558594, 0.48876953, 2.3300781, -0.014595032, -0.2536621, -1.3916016, 2.2363281, 0.88671875, 0.15820312, 0.95458984, -1.3808594, 1.3779297, -0.42895508, -0.3552246, -0.26245117, -0.9926758, -2.0273438, -0.15258789, 0.921875, -1.2753906, -1.4306641, 0.8979492, 1.5302734, -1.9365234, 0.9272461, 1.8408203, 0.50634766, 1.5966797, 0.19665527, -1.4824219, -0.80078125, -0.42163086, 1.7080078, -0.03665161, -0.25805664, -1.3232422, -0.765625, 1.1005859, 0.68310547, -0.040130615, -0.52978516, -1.0146484, 0.43310547, 0.72216797, -1.3515625, -0.9008789, 1.1171875, -0.031555176, -1.0498047, 1.5839844, 0.50927734, -0.055755615, -1.8115234, -0.36791992, -0.7553711, -0.35131836, -0.76220703, 1.5, 3.1054688, 1.9443359, 0.21887207, -1.1679688, -2.5214844, -1.3408203, -2.0019531, 1.4931641, 0.58691406, -0.85546875, 1.2636719, -0.70458984, 2.5664062, 0.13000488, -0.80908203, 1.9433594, 0.828125, 1.7255859, 1.7753906, 0.31176758, 1.3554688, 0.4741211, -0.10632324, 2.0117188, 2.1015625, 1.1123047, 1.078125, 0.29956055, 0.99609375, -0.68066406, 0.019424438, -1.2285156, 0.20410156, 0.42871094, 2.4433594, 2.1132812, 0.29492188, 0.34155273, -1.6533203, -2.796875]}, "B07GJQRH3K": {"id": "B07GJQRH3K", "original": "Brand: Boshen\nName: Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ\nDescription: NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

          Why choose it?

          This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

          The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

          The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

          Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

          Specifications:

          Material: Cast Iron
          Color: Black
          Energy Type: LPG
          Size(Lx Wx H): 9.45\" x 9.45\" x 4.72\"
          Weight: 4.19 lbs
          Load-bearing: 22 lbs

          Package included:

          1 x Single Burner Camp Stove (regulator not include)
          1 X Screw (for oxygen control valve)
          2 x Screw (for gas pipe, the pipe is not included )
          2 x Screw (for gas valve)
          4 x Screw

          Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
          2. Gas line and regulator Not Included.\nFeatures: Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included\nCompact and portable design: size(Lx Wx H): 9.45\" x 9.45\" x 4.72\", easy to install and use, good for small cooking\nSafety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions\nFlame adjustable, 4 detachable legs, save space, convenient to carry and transport\nPackage List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.\n", "embedding": [-1.8212891, 1.7783203, 1.8095703, 1.2382812, -1.1669922, 1.359375, 2.0390625, -2.2363281, -2.3574219, 2.3574219, 0.671875, -0.7944336, 0.87939453, -3.3769531, 0.039855957, 0.32617188, -0.99316406, 0.29589844, -0.6796875, 1.296875, 3.2089844, 0.0803833, 0.83447266, -1.1015625, 0.81884766, 0.34204102, 4.046875, -2.8398438, 0.37329102, -3.1367188, 1.9785156, 0.56103516, 0.10119629, 2.0761719, -3.9238281, -0.64746094, -1.3115234, 1.2001953, -3.0859375, 0.22875977, -0.057403564, -0.65185547, 3.0117188, -0.0124053955, -2.4257812, 0.93603516, 0.5234375, 0.89746094, -0.087768555, 0.69091797, 0.28076172, 1.0449219, 0.41503906, 1.6933594, -1.9990234, -0.18457031, 0.4128418, -1.5449219, 1.0449219, -0.94140625, 2.3496094, 1.2568359, -2.0566406, 1.4082031, 0.058441162, -0.5004883, 0.7089844, -2.0039062, -1.7763672, 0.56933594, 2.1171875, -1.0224609, -0.48413086, -0.15734863, 1.9199219, -0.6035156, -2.7324219, 1.4335938, 3.7558594, -0.06463623, -2.7011719, 3.0488281, 1.2246094, 1.0234375, -1.0234375, 0.50878906, -1.8525391, -0.11230469, 2.0605469, 0.8886719, -1.3564453, 2.6523438, -2.1210938, -4.2890625, 2.1542969, -0.6689453, 1.2832031, -0.9277344, -0.16088867, 1.7685547, 0.20935059, 0.70458984, -1.6005859, -0.5541992, -1.8828125, -0.77978516, 3.1503906, 2.1855469, -1.4248047, 1.0332031, -3.09375, 0.35107422, 0.74658203, 1.0166016, 0.7631836, 0.54248047, -1.6074219, 1.3876953, 3.7265625, -0.31030273, 5.2617188, -0.3930664, -0.1463623, -2.5214844, 1.2001953, 2.2460938, -0.93652344, 0.6357422, 2.3847656, -1.6806641, -1.0654297, -1.5751953, 0.9423828, -0.69433594, -1.3886719, -1.4150391, -1.7402344, -1.6005859, -4.8007812, 0.68603516, -3.2753906, 2, 1.5830078, -1.2568359, -3.7929688, -0.074035645, 0.14282227, 2.203125, 0.5, -1.1367188, -1.0302734, -1.15625, -0.6855469, -0.96972656, 2.3027344, 1.0683594, -1.2558594, -1.3896484, 3.0117188, 0.51416016, 0.1730957, -2.7148438, -1.625, 2.5585938, -0.74902344, -1.6445312, -0.19934082, 1.3125, -1.2246094, 1.9013672, 1.3554688, -2.6269531, 0.47680664, 0.49072266, 0.5620117, -1.0234375, -2.2363281, 3.1445312, 0.7260742, -1.3251953, -1.7675781, -3.6640625, 3.5234375, 1.9179688, -0.068725586, -2.34375, -0.013702393, 0.5703125, -0.83203125, -0.8569336, -1.5253906, 0.59716797, 1.4775391, -0.099243164, 0.36743164, -0.81396484, 0.60839844, -1.8759766, -0.5698242, 1.0322266, -1.9511719, -0.82421875, -0.50146484, 1.3876953, -3.9140625, -1.6162109, 0.16748047, -0.04953003, 2.5566406, 1.9443359, 0.56933594, -0.042663574, 1.9462891, -0.29858398, -0.60253906, -1.1914062, 2.7226562, 0.3791504, 1.7060547, 2.3515625, 0.21911621, -1.7021484, 1.1816406, 1.5966797, 1.1455078, 3.1660156, 0.68066406, -0.15258789, -0.30493164, -0.7597656, 3.3105469, 0.39941406, -0.95214844, 0.9482422, -1.1210938, 3.8964844, 0.65234375, -0.7373047, 0.8984375, -1.7822266, -0.27514648, -2.1113281, -0.7089844, -0.35229492, -2.1777344, -1.2246094, 0.25512695, 0.7998047, 3.2910156, -0.37353516, -1.0224609, 0.7319336, 0.48266602, 0.7158203, -1.2119141, 0.19836426, -0.03213501, -0.84814453, -2.3203125, -1.1855469, 1.5019531, 2.5371094, -1.0322266, 1.1005859, 1.2597656, -1.8476562, 2.1425781, 1.0126953, -3.0058594, 1.5175781, 1.2089844, 1.0048828, 3.5488281, -0.9033203, 1.4785156, -1.6318359, -1.1884766, 2.6523438, 1.3300781, 1.9570312, -1.4169922, -2.2773438, 2.6308594, -3.484375, -0.85253906, 0.08050537, 2.4414062, -0.37695312, -0.64697266, 0.09338379, 6.953125, -1.8007812, -2.25, 2.6777344, -2.4414062, 0.066833496, 0.4765625, 0.2788086, 0.99560547, 0.40014648, 1.2421875, 0.93310547, -0.10784912, 1.8916016, -2.65625, -1.6152344, 0.38354492, -3.265625, -1.0068359, -0.083496094, -0.51416016, 0.27514648, -1.7929688, 1.2246094, -2.8046875, -1.1289062, 0.8955078, -2.1914062, 1.0673828, 0.6538086, 0.11206055, 0.33398438, -1.2255859, -2.4707031, 1.0283203, 1.0917969, 0.60302734, 2.3261719, 0.8466797, -1.1923828, -1.7138672, -2.0957031, 1.0917969, -1.3798828, -2.3652344, -1.6767578, -0.14733887, -1.9609375, 1.7744141, -1.3251953, 0.22961426, 2.2207031, -3.8964844, 0.80126953, -1.1123047, -3.6015625, -0.47827148, 0.009941101, -0.6767578, -0.6489258, 1.5439453, 2.1660156, -0.98876953, -4.59375, -2.921875, 0.05001831, 0.609375, -0.7758789, -0.32250977, 1.4091797, -0.3540039, 1.7529297, -0.37817383, 0.6425781, 0.34057617, -1.4160156, 0.6660156, -3.703125, 0.6855469, -0.42504883, 0.30297852, -0.9453125, 0.1239624, -2.0097656, -0.11340332, -0.44213867, -1.1650391, 4.8945312, -1.0722656, 2.109375, -2.2050781, -0.85791016, -0.85058594, -1.4667969, -2.515625, -1.1347656, -0.57373047, -1.2734375, -0.3527832, -4.4921875, -0.03253174, -1.4140625, -0.45751953, -1.9238281, 1.2958984, -2.0332031, 0.8417969, -1.7431641, -0.33032227, -0.4814453, 0.05670166, 0.7001953, -0.5307617, -2.0546875, -1.3398438, -0.13085938, 1.6474609, 2.3984375, 1.2412109, -0.11254883, -0.07751465, 1.8193359, 0.7963867, 0.21838379, 0.64453125, -4.015625, 2.484375, 1.6289062, -1.1943359, 0.96777344, -1.1552734, 0.9790039, -2.3085938, -0.9477539, 2.4277344, -0.2919922, 3.4003906, -0.17102051, -1.5917969, 1.1777344, 2.9296875, -1.3408203, -1.9902344, 0.8510742, 2.8496094, -3.8183594, -1.609375, 1.1875, 2.4902344, -2.1503906, 0.51953125, 1.0488281, 3.3125, 1.5996094, 0.90625, 0.9345703, -0.7373047, -0.48461914, -0.033416748, 2.7304688, 1.1972656, -1.0546875, 0.15332031, 0.59033203, -0.67529297, 1.4892578, 0.6816406, 1.4130859, 1.0302734, 3.1738281, 2.9589844, -2.1152344, 0.46362305, -1.2871094, 0.7265625, -0.84716797, 3.6875, -0.46484375, -0.69433594, -0.97509766, -1.375, 2.0234375, -1.5185547, -0.72753906, 0.6821289, -0.23217773, 0.15100098, -0.49902344, -0.21923828, -1.9648438, -1.4072266, 0.6557617, 0.15710449, -1.5849609, 1.1894531, -1.3662109, 0.2376709, -2.1464844, 0.86279297, -1.7001953, -2.4921875, 0.92822266, -0.23144531, -1.2392578, -2.2753906, -1.3935547, -0.105773926, -1.0126953, 3.9511719, -0.48706055, -2.1796875, -0.40576172, -1.6630859, 0.070129395, 1.9453125, -0.103637695, -1.3037109, -2.0683594, -0.1673584, -0.4423828, 0.9663086, 1.1035156, 1.15625, -1.4892578, 1.2089844, -2.8027344, -1.9365234, 0.47680664, -2.5566406, -0.8222656, 1.7392578, 0.23596191, 0.9741211, -1.0488281, 3.75, -2.9824219, -2.2558594, 1.3974609, -2.96875, 0.6635742, -2.1855469, -3.2988281, 1.4736328, -0.018051147, 0.46728516, 1.7246094, 0.83447266, -0.88916016, 1.0117188, 0.76904297, -2.7714844, -1.0839844, -0.8183594, 2.3203125, -1.9462891, 0.011024475, 1.4716797, 1.9990234, -1.2060547, -2.328125, 0.6928711, -1.6787109, -0.3088379, 1.140625, -3.1777344, 0.47827148, -0.13049316, -0.12249756, -0.044006348, -1.0253906, 0.9399414, -0.1829834, 0.18310547, 0.1161499, 1.6347656, 1.9404297, 0.9399414, 0.5048828, 2.5273438, 1.5429688, 0.06439209, -0.6147461, 0.92529297, 2.2636719, -0.1315918, -1.6328125, -1.0703125, -0.05819702, -1.5087891, -0.71484375, 0.8232422, -0.16784668, -2.3398438, 2.1796875, 0.74072266, 2.1972656, 2.5957031, 0.60791016, -0.48095703, 0.5307617, -0.12384033, -2.0976562, -2.4296875, 1.1044922, 0.20031738, -1.1494141, 1.8115234, -1.6484375, 1.0605469, -1.6455078, -0.87353516, -2.2714844, 3.1386719, 2.34375, 1.5244141, 2.8632812, -1.6748047, -2.8925781, 0.33398438, -1.7412109, -1.3486328, 1.4023438, -0.4025879, -0.7758789, 2.5820312, 0.9223633, -0.7338867, -1.5742188, 2.3164062, -1.9453125, -1.5712891, -1.2744141, 1.0859375, -1.7070312, -1.0654297, 0.4086914, -0.20861816, 1.2548828, -0.06781006, -1.3886719, 0.5673828, 1.015625, -1.8466797, -2.5800781, -0.018676758, -1.1982422, 0.27783203, 1.2822266, 1.1123047, -0.025238037, 1.3359375, 0.39770508, 3.4257812, -0.67089844, 0.4724121, -1.0488281, -0.11621094, -0.56347656, -0.9633789, 0.8310547, 2.390625, 0.81591797, 3.0996094, 0.74609375, 0.013946533, 2.6933594, 1.6826172, -0.39746094, 0.16625977, 0.20947266, -1.4248047, 1.171875, 0.2980957, -4.109375, 0.20837402, 3.2929688, -0.19299316, 1.9804688, -0.91259766, -0.016281128, -0.38354492, -1.8603516, 0.060638428, -1.5478516, -0.46606445, 0.9892578, -0.4807129, 0.31420898, -0.41577148, 2.359375, 3.4941406, 0.46118164, -0.0077590942, 3.4941406, -0.3828125, 0.76123047, -0.32739258, -1.3789062, -2.6503906, 0.5810547, 2.3261719, 0.81933594, 2.40625, -0.50390625, 1.2285156, -1.3994141, -0.6020508, -0.7416992, 1.0556641, -2.7070312, -0.5605469, 1.3867188, 0.5708008, 0.82373047, -1.2646484, -0.3857422, -1.7265625, 2.3261719, 0.48413086, -0.07006836, -1.7226562, -0.2163086, -1.9453125, -4.6601562, -0.46044922, 0.54785156, 0.86328125, -0.1920166, -0.018737793, -0.6738281, -0.8330078, 0.86621094, 0.5649414, -1.484375, 1.5595703, 0.35766602, 0.1953125, -2.2285156, -0.040039062, 0.036224365, 0.7792969, 1.1416016, 0.5913086, 0.27294922, -2.2851562, -1.0507812, 1.1679688, -1.6318359, 0.14404297, -1.28125, -0.115112305, 0.48120117, 2.3085938, 0.06677246, -1.4130859, 2.1660156, -1.0712891, 0.91796875, -0.12207031, -1.4550781, 2.3789062, 0.34985352, -1.4619141, 0.9921875, -1.6308594, -1.265625, -1.0087891, 0.36572266, 0.91015625, 1.7441406, 0.014251709, -1.125, 1.6132812, -0.016906738, 1.8720703, 1.9394531, -0.080322266, -1.9765625, -2.3730469, -2.2421875, -0.4296875, -0.31201172, -0.8105469, -1.9306641, 1.5068359, 1.5175781, 0.4428711, 0.04144287, 0.009994507, -0.9838867, -0.21105957, 1.9443359, -0.3635254, 3.4335938, 0.15734863, 0.0022277832, -3.9316406, -3.1054688, 0.48486328, -0.13171387, 0.8720703, -1.8193359, 0.1665039, -1.5830078, -0.26586914, 0.3540039, 1.8662109, 3.4433594, 0.8720703, -1.390625, 2.5429688, 2.2480469, -0.3071289, 0.70751953, 0.06524658, 1.5439453, -0.9370117, 3.453125, 1.4980469, -0.18151855, 3.0429688, -1.4052734, 1.7988281, -0.7368164, -1.4580078, 0.29003906, -1.4892578, -1.6552734, -2.8300781, -1.4824219, -2.7167969, 2.0800781, 0.49194336, 0.01977539, -0.25561523, 2.9179688, -1.4980469, 1.2480469, 2.9179688, 2.3789062, -0.21606445, 1.0849609, -0.25756836, 0.116882324, 2.390625, -1.6308594, 0.50097656, 1.5244141, -0.32202148, 0.1282959, 1.4228516, 2.15625, 3.0917969, 1.7089844, 1.0224609, 1.6621094, 2.390625, 3.5449219, -0.88964844, 1.3085938, 3.046875, 0.1237793, -1.2197266, 1.9482422, -1.0673828, -1.1630859, -0.28466797, -0.0715332, -1.4707031, -1.8759766, -0.79248047, -0.609375, 1.3066406, -4.2382812, 2.5351562, -0.44140625, 2.15625, 0.054260254, 1.3037109, -0.10345459, -0.29125977, -0.859375, -1.0595703, -0.78222656, -0.43847656, -0.46044922, -1.1523438, 1.6074219, 1.1953125, -3.5292969, 1.1171875, -1.7802734, -1.9980469, -0.25708008, 1.1259766, 1.2382812, 1.5458984, 0.29223633, 4.3164062, 1.7666016, -0.9716797, 1.46875, -0.6064453, 0.03970337, 0.609375, 2.7617188, 0.703125, -0.25170898, 1.5800781, -1.7714844, -3.5292969, -2.0898438, 2.7285156, 1.4394531, 1.1376953, 2.1191406, -0.46044922, 1.7304688, 0.05618286, 2.9550781, -1.7988281, 2.359375, 1.2138672, -2.3339844, -2.359375, 0.3955078, 0.4440918, 2.1855469, 1.1240234, -2.0195312, 0.74902344, 0.18139648, 1.0410156, 0.93359375, -0.8227539, 0.05999756, 0.92285156, -0.90625, 2.8027344, 0.25878906, -1.5869141, 0.56689453, 3.5761719, 2.7246094, 0.4675293, 0.43530273, -1.9453125, 1.5654297, -0.8520508, -0.12408447, -0.028839111, -0.13122559, -2.3867188, -1.34375, 0.28198242, -1.5166016, -1.1171875, 1.9882812, -0.39282227, -0.30322266, 1.2998047, 1.7626953, -1.3486328, -0.11541748, 0.87353516, -0.51171875, 0.082336426, -1.0107422, 0.76708984, -1.625, -1.3369141, 0.055877686, 0.1430664, 3.4140625, -0.7685547, 2.0917969, -1.7197266, 0.48535156, 0.93896484, 0.3527832, -2.125, -0.47265625, 0.9868164, 0.33032227, -1.4775391, 2.8691406, -0.5107422, -0.73046875, 0.6948242, -2.234375, -0.6123047, -0.9355469, -0.83740234, -0.20666504, 3.3632812, 0.5029297, 0.07128906, -2.1269531, -4.3789062, -1.8251953, -1.3886719, 0.5673828, 0.7626953, -2.0976562, 0.19152832, -0.22363281, 2.7792969, -0.59521484, -0.6484375, -0.35986328, 1.0917969, 0.28735352, -0.3557129, 1.2128906, -0.25, 1.1806641, -1.09375, 3.7636719, 1.5625, -0.004337311, 1.6767578, -0.9790039, 1.5419922, -2.875, 0.36108398, -1.5410156, 0.60839844, 0.9501953, -1.2089844, 1.5908203, 0.5102539, -0.58154297, -2.9160156, -1.8085938]}, "B01KJGBC6A": {"id": "B01KJGBC6A", "original": "Brand: Char-Broil\nName: Char-Broil Portable 240 Liquid Propane Gas Grill\nDescription: \nFeatures: 240 Square inch cooking area and built to travel\nSturdy legs for stability on a Table or the ground, carrying handles for easy transport\nLid-mounted temperature gauge, painted porcelain body\nFor use with 1Lb propane tanks, (Sold Separately)\n", "embedding": [-1.9863281, 0.92529297, 2.7792969, 0.46166992, -1.9755859, -0.61279297, 1.4931641, -0.6772461, -1.4658203, 2.2988281, 0.89697266, -1.109375, 1.4130859, -3.4667969, 0.6357422, 0.23376465, 1.5253906, 1.9296875, 2.7128906, -0.38598633, 0.3408203, 1.3330078, 0.13830566, -0.48388672, 0.48535156, 0.05215454, 3.7734375, -1.9921875, -0.2409668, -1.9443359, 1.3603516, -0.69873047, -0.009269714, 1.8525391, -1.4091797, -2.9414062, -2.2519531, 1.9453125, -2.7363281, 0.36938477, -0.6743164, -0.21533203, 1.9853516, -0.050445557, -1.8554688, -1.2304688, 0.64160156, 0.40820312, 0.4284668, -0.5253906, 2.7109375, 0.7163086, -0.23156738, 0.89404297, -1.9560547, 1.2050781, 0.95458984, -0.9892578, 0.9584961, -0.047454834, 1.3076172, 0.14819336, -1.8613281, 0.7080078, -1.7998047, 1.6552734, -1.2460938, -0.4428711, -0.25073242, -0.58496094, 2.0234375, -0.083984375, -1.3779297, 0.2322998, 1.2402344, -0.09875488, -2.5214844, 1.0019531, 0.49316406, -0.0140686035, -1.7666016, 2.7480469, -0.92041016, -1.6611328, -0.036895752, -0.7207031, -0.53515625, -1.0107422, 1.2783203, 1.0869141, -0.47509766, 2.1503906, -0.27783203, -3.5957031, 0.8666992, -1.1914062, 1.3466797, 0.98583984, -0.037750244, 1.6855469, -0.27270508, -0.953125, -1.7939453, -1.9619141, -2.6738281, -1.3378906, 0.71484375, 0.4819336, -2.0625, 2.3496094, -1.4072266, -1.4912109, 1.9550781, 1.1064453, -0.124694824, 0.6479492, -0.35864258, 3.7167969, 1.5351562, 1.6220703, 4.5078125, -0.03314209, 1.2548828, -0.8823242, 0.093444824, 0.12805176, -0.45263672, 2.0488281, 4.0742188, -1.7392578, -0.36889648, -0.89404297, 3.2792969, -0.12286377, -2.7792969, -1.9609375, -1.3056641, -1.7636719, -4.0273438, 0.43554688, -2.3828125, 1.0048828, 0.6254883, 0.2298584, -2.2851562, -1.6230469, 0.51123047, 2.1972656, -0.4633789, -2.4511719, 0.23364258, -2.7695312, 0.3737793, -1.046875, 0.4658203, 1.2861328, -1.9472656, -1.8837891, 3.2402344, 1.8916016, 2.03125, -1.2910156, -0.5253906, 0.8720703, 1.7285156, -0.40576172, 0.9916992, 0.6816406, -1.1025391, 0.80810547, 0.32348633, -1.3310547, -0.515625, 1.2978516, 1.5117188, -1.9658203, -0.45141602, 2.8730469, 1.1132812, -1.2919922, -0.53222656, -2.5136719, 0.84033203, -0.25463867, 0.4182129, -1.0703125, -1.0703125, 0.71728516, -0.054534912, -0.36645508, 1.4755859, -0.18884277, -0.85302734, -0.25952148, 0.52685547, -1.171875, -1.6025391, -1.2070312, 0.9873047, 1.6474609, -1.4863281, 0.51708984, -0.43969727, -0.027297974, -2.0234375, -2.5625, 0.87353516, -1.3857422, 0.3876953, 0.87890625, 0.16174316, -1.4667969, 1.9619141, -0.4104004, 0.4658203, -2.6660156, 2.3144531, 0.5698242, 2.5117188, 1.9589844, 0.73046875, -0.85595703, -0.87890625, 1.6064453, -0.13146973, 2.0097656, 0.39013672, 0.45410156, -1.6464844, -0.8569336, 3.40625, 0.86279297, -0.07757568, 0.36621094, -0.16430664, 1.2675781, -0.43676758, 0.19482422, -1.1152344, 1.0605469, -0.53759766, -0.6166992, 0.8930664, -2.2773438, 0.2824707, 0.12561035, -1.4003906, 2.7421875, 1.8466797, 0.79052734, -0.9863281, 0.38598633, 0.00037789345, 1.53125, 0.2512207, 1.9785156, -0.27368164, 1.4794922, -1.0869141, -2, -0.25927734, 1.3828125, 0.5336914, -0.6176758, 1.1943359, -1.5058594, 3.1621094, 1.8525391, -1.5449219, -0.9404297, 0.034088135, 2.2011719, 0.2939453, -0.52978516, 1.7919922, 0.9707031, -1.1035156, 3.1835938, 0.53222656, 1.3427734, 1.1894531, -0.44799805, 2.2109375, -1.8632812, -1.0976562, 0.7006836, 1.2402344, -0.90527344, -0.40551758, 1.5410156, 4.3007812, 0.4736328, -2.2871094, 3.8886719, -0.7836914, -0.07537842, 2.1210938, 0.41333008, -0.93652344, 0.68359375, 3.140625, 0.3918457, -0.43041992, 2.0878906, -1.2792969, -1.7392578, -0.3557129, -1.9199219, -0.7573242, 1.0195312, -0.3461914, -0.32202148, -1.2128906, 0.9082031, -2.6933594, -1.53125, 1.796875, -2.7910156, 0.48120117, 1.6103516, 0.22399902, 0.16137695, 0.3203125, -2.5878906, -0.8334961, 1.6992188, -1.8447266, 1.1591797, -0.057006836, -0.23925781, -1.1425781, -0.0020122528, 0.28833008, -1.8994141, -2.5585938, -0.9111328, -1.9755859, -4.3085938, 2.1289062, -1.3964844, -2.4707031, 1.7910156, -1.4453125, 1.0830078, -0.3942871, -3.5546875, 0.4099121, 0.54541016, -0.66064453, -1.8251953, 0.67285156, 1.0410156, 0.11785889, -4.8398438, -0.11853027, -0.4272461, -0.7192383, -0.4387207, -2.7109375, -0.91845703, 0.8100586, -1.2802734, -1.0195312, 0.33129883, 0.030166626, -2.1113281, 0.77001953, -3.0625, 1.7119141, -1.6582031, 0.07763672, -1.2353516, 0.67871094, -3.6015625, -2.7617188, 0.3466797, -1.5185547, 4.03125, -0.4819336, 0.7636719, 0.66748047, -0.5805664, 0.6386719, -1.5644531, -3.515625, -0.058410645, -0.5292969, -1.2939453, -2.6699219, -3.4453125, 0.17578125, -0.12451172, 0.14404297, -0.09387207, -0.7788086, -2.3320312, 0.9638672, -2.3652344, -0.79833984, -1.8408203, 1.1230469, -1.1337891, -0.19799805, -0.4194336, -0.44018555, -1.3154297, -0.8569336, -2.5371094, 1.3115234, -0.46533203, 1.9248047, 1.7529297, -0.14575195, 1.9746094, -1.3701172, -3.7285156, 3.4902344, 0.8666992, -1.1943359, 1.9130859, -0.5053711, -3.0898438, -2.9804688, -0.68310547, 2.7011719, 2.203125, 4.953125, 1.6689453, -0.62060547, 2.0625, 0.8676758, -0.46728516, -0.9448242, 0.19311523, 3.2226562, -1.8417969, -1.1035156, -0.16040039, 2.640625, -1.9384766, -1.8007812, 2.6425781, 1.0732422, 2.0605469, 1.9658203, 0.93603516, 0.09899902, -0.50439453, 2.4023438, 2.1210938, 1.3300781, -0.15698242, 0.14489746, -0.49316406, 1.3535156, 0.8510742, 0.85791016, -0.34179688, 1.2285156, 1.0986328, 0.36547852, -3.0820312, 1.2568359, -0.7573242, 0.14782715, 0.29882812, 1.2705078, -0.8208008, 0.44458008, -0.7915039, -0.79541016, 0.2734375, 0.5214844, -0.94873047, 1.5576172, 0.7709961, -0.3918457, 0.7158203, 0.70214844, -0.2758789, -0.7294922, -0.6796875, -0.9926758, 0.099853516, 0.31030273, -3.0644531, 0.24938965, -0.8901367, 1.9443359, -1.4990234, -1.6699219, 0.9892578, 2.5292969, 0.09814453, -2.0507812, 1.1289062, -0.1751709, -0.5541992, 3.4707031, 2.0058594, -2.4355469, 1.8164062, 0.35009766, 0.2512207, 1.3964844, -1.8173828, -1.1269531, -1.6132812, 0.5883789, 0.095947266, 1.3564453, 2.3613281, 1.0595703, -2.7695312, -0.2841797, -3.0722656, -0.4633789, -0.22680664, -2.1367188, -2.0292969, 3.1328125, 1.1855469, 1.9921875, -0.4189453, 2.7617188, -0.734375, -0.6254883, 2.0429688, -1.9160156, -0.5551758, -2.9355469, -5.0195312, 1.5253906, -0.07751465, -1.4121094, 3.0957031, -1.1230469, -0.78027344, 1.2783203, 1.3095703, -2.2382812, -1.2158203, -1.4716797, -0.109558105, -0.7583008, 1.3339844, 2.4746094, 1.9296875, -2.8125, -1.5556641, -0.53027344, -0.19787598, 1.5126953, 1.7451172, -2.0371094, 0.8232422, -3.328125, 1.4960938, -2.2929688, -1.0185547, 1.8203125, -0.9711914, -0.5996094, -2.9140625, 0.49243164, 1.5771484, -0.41674805, 2.4550781, 2.3144531, 0.9736328, -0.08666992, -1.1367188, 1.4501953, 1.9580078, -0.032592773, -2.2890625, -2.9765625, -1.5722656, -1.2265625, 0.051727295, 0.5732422, -1.0742188, -1.8837891, 1.2568359, -0.32006836, 0.50634766, 2.078125, 0.921875, -1.4082031, 0.35595703, 0.20654297, -0.93652344, -1.4794922, -0.8666992, 0.6044922, -0.9165039, -0.4814453, -1.9560547, -0.5649414, -1.0742188, -0.6953125, -2.8847656, 2.3847656, 2.0761719, 1.8027344, 2.5820312, -1.484375, -0.19348145, -0.90966797, -0.46533203, -0.4716797, 1.3369141, 0.18078613, 1.5996094, 0.69140625, 1.2382812, -2.9746094, -0.1697998, 0.5698242, -2.3515625, -1.6689453, -1.3828125, 0.37646484, -2.2734375, -0.5600586, -0.5463867, -1.1923828, 3.2050781, -0.7705078, -0.81933594, -0.6899414, 1.1210938, -0.8125, 0.69628906, -0.044830322, 0.6230469, 0.68847656, 0.4819336, -0.59228516, -0.21276855, 0.17749023, -1.4355469, 2.6875, -0.8540039, 0.0513916, 0.2854004, -0.3227539, -1.5703125, -0.7919922, 1.0458984, 3.3828125, 0.7270508, 3.1289062, 1.0888672, -1.9755859, 2.7578125, 2.1679688, -2.2871094, -0.32250977, -2.109375, -1.2167969, 1.3173828, -1.0048828, -5.1640625, 0.32006836, 2.3085938, 0.19226074, 1.2080078, -0.17810059, -0.42211914, -1.0039062, -2.9121094, -1.2177734, -0.7753906, -1.2431641, 0.08111572, 0.23364258, -0.35546875, -1.2958984, 1.21875, 2.9902344, -0.4873047, -0.32910156, 1.7773438, -0.9711914, 0.5991211, -0.3232422, -1.140625, -2.7734375, -1.2285156, 2.4179688, 0.5366211, 1.6464844, 0.6767578, 2.0273438, -3.3886719, -0.7626953, -2.0214844, 2.2441406, -2.3261719, 0.22143555, 1.5546875, -1.4101562, 0.6542969, -2.4414062, 0.3413086, -0.35083008, 1.8134766, 1.3828125, 0.23999023, -0.8095703, -0.5517578, -2.7753906, -4.6523438, -2.7988281, -0.7890625, 1.2070312, 0.78759766, 1.2548828, -1.9609375, 0.7211914, -0.46875, 0.031433105, -0.5654297, 0.5864258, -2.1074219, -0.71972656, 0.5683594, -0.7792969, -0.96240234, 2.234375, 0.32861328, 0.89404297, 0.23754883, -1.8564453, -1.6064453, 0.78759766, -2.3242188, 0.61279297, 0.43798828, 0.578125, 0.32202148, -0.1328125, 1.4355469, -2.2207031, 3.0761719, -0.7426758, 0.81933594, 0.7558594, -0.9316406, -0.20288086, -0.4008789, -2.3808594, 0.46264648, -0.3630371, 2.9121094, 0.76708984, -1.0605469, -0.20251465, 1.0820312, -0.70458984, 0.06591797, 2.8066406, 0.89160156, 2.4238281, 1.6914062, -1.1445312, 0.3383789, -1.8105469, -2.2460938, 0.78466797, -1.4921875, -0.67578125, -1.59375, 0.48828125, 1.4287109, 0.4230957, 0.15039062, 0.3479004, 0.73291016, -0.5180664, 0.49316406, -1.0810547, 3.2539062, 3.1152344, -0.73095703, -2.8808594, -0.55322266, 1.5673828, 2.2246094, 0.75927734, -1.8525391, 0.04876709, -2.3457031, 0.27319336, -0.7626953, 2.7773438, 0.75634766, 0.35791016, -0.21777344, 1.8105469, 2.6738281, -0.059539795, -0.12207031, -0.052612305, 3.0605469, -0.4404297, 3.0410156, 1.3662109, -2.4316406, 0.4597168, -2.109375, 1.8203125, -0.20593262, -0.9746094, 0.6640625, -2.1289062, -1.5234375, -1.1445312, -0.5229492, -2.4785156, 1.5703125, 1.4160156, -2.3730469, 1.7333984, 2.3691406, -2.2890625, 2.1015625, 2.03125, 1.2949219, -0.7324219, 0.9682617, -1.0751953, 0.51904297, 1.0742188, -3.1269531, 1.8701172, -0.036102295, -0.9042969, -0.3630371, 2.7070312, 0.63964844, 2.8417969, 2.875, 3.0488281, 3.5820312, 1.2246094, 3.3222656, -0.64208984, 1.6611328, 2.8007812, -1.9580078, 1.4238281, 2.8730469, 1.2998047, -0.96533203, -2.109375, 1.4394531, -0.49438477, -1.4248047, -1.1171875, 1.3544922, 2.0664062, -4.2851562, 1.6689453, 0.8691406, 0.9135742, -1.7353516, 2.0175781, -0.32836914, -0.8041992, -0.6850586, -0.10003662, 2.0957031, -0.62841797, 1.0400391, 0.49145508, 0.47143555, 0.4008789, -2.8789062, -0.16564941, 0.050323486, -2.4648438, -0.9399414, -0.5854492, 0.7294922, 1.1728516, 0.29663086, 0.6640625, 1.7470703, -0.34106445, 2.2226562, -0.2849121, 0.6098633, -0.5239258, 1.0048828, -0.5996094, -2.6035156, 0.62109375, -1.6728516, -1.7050781, -2.4511719, 0.671875, 0.9428711, 2.3886719, -0.38256836, 0.51953125, 2.6289062, 1.3134766, 1.9091797, -1.5585938, 0.4777832, -0.77783203, -2.6308594, -1.4716797, -0.97265625, 0.2076416, 3.671875, 0.5625, -0.29907227, 2.0566406, 0.5126953, 1.8798828, 0.9135742, 0.24035645, 0.84033203, 1.4335938, 0.62060547, 2.3808594, -0.44580078, 0.008110046, -1.0703125, 2.3691406, 1.8554688, -0.21801758, 0.51464844, -2.1816406, 1.453125, 0.17871094, -0.2052002, -0.9350586, -2.0859375, -1.1289062, 0.5908203, 0.9399414, -0.7558594, -1.59375, 0.9057617, 1.21875, -2.0390625, 1.7744141, 1.4980469, -0.041290283, 2.015625, 0.17675781, -0.98779297, -0.8457031, 0.26342773, 1.0771484, -0.53125, 0.040802002, -1.09375, 0.20043945, 1.0488281, 0.28955078, -0.3762207, -0.22753906, -1.4169922, 0.02520752, 1.1240234, -1.4423828, -1.0332031, 0.5151367, -0.7919922, -0.9375, 1.8007812, -0.13781738, 0.06939697, -1.6474609, -0.38598633, -0.8847656, 0.21899414, -1.4716797, 1.6269531, 3.5664062, 1.1640625, 0.08886719, -1.7246094, -3.2558594, -1.6201172, -1.3408203, 1.359375, 0.6064453, -1.1445312, 1.109375, -1.5117188, 2.5039062, 0.056274414, -1.1923828, 1.9970703, 0.021560669, 1.3691406, 1.6582031, 0.9086914, 1.2871094, 1.1484375, 0.52001953, 2.2050781, 2.5058594, 1.4423828, 0.3544922, 0.41235352, 0.8461914, -1.2597656, -0.38598633, -0.89697266, -0.099487305, 0.29101562, 2.2421875, 2.3867188, 0.89990234, 0.44360352, -2.203125, -2.6894531]}, "B07BLHCHX6": {"id": "B07BLHCHX6", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Arrives fully assembled\nPUSH-BUTTON IGNITION: For matchless lighting\n", "embedding": [-1.8671875, 0.3671875, 0.7236328, 0.921875, -1.1699219, -0.14099121, 1.2392578, -0.3659668, -1.4609375, 1.3554688, 0.6635742, -1.3212891, 0.78808594, -3.2792969, -0.19506836, 0.057739258, 1.2451172, 1.9355469, -0.54589844, -0.55615234, 1.8720703, -0.6870117, 0.9975586, -0.62353516, 0.0071029663, 0.41210938, 4.2890625, -4.6875, 0.25683594, -0.52197266, 1.4560547, 0.14038086, -0.33544922, 3, -1.8574219, -1.3134766, -2.7988281, 1.7216797, -2.7285156, 0.32299805, -0.8144531, -0.31762695, 1.7490234, 0.7573242, -0.51660156, -0.33276367, 1.9316406, 0.6274414, -0.4819336, -0.74658203, 1.2128906, 1.2373047, 0.30615234, -0.35546875, -0.6538086, 0.3474121, 0.02003479, -0.36621094, 0.7597656, 0.05316162, 2.09375, -0.54052734, -2.5351562, 0.90185547, -1.2832031, 0.4453125, 0.5678711, 0.2277832, 0.17602539, -0.98828125, 4, 0.107666016, -2.1699219, -0.5366211, -0.14929199, -0.8989258, -3.4863281, 0.02444458, 0.48095703, -0.97753906, -0.88720703, 1.5712891, 0.20532227, -2.0058594, -0.51171875, 0.9189453, -1.3671875, -0.67285156, 1.9511719, 1.5048828, -0.8383789, 1.1035156, -2.6230469, -4.171875, 0.4633789, -0.122680664, 0.5966797, 1.0458984, -0.11273193, 0.5292969, -1.2773438, -0.079833984, -1.9423828, -0.3857422, -3.4492188, -0.44384766, 2.5039062, -0.76416016, -2.2246094, 2.6191406, -2.4257812, -2.2558594, 3.1992188, 1.2714844, 0.31567383, 0.08465576, -0.1348877, 1.8603516, 2.5507812, 1.4072266, 4.2148438, -0.92529297, 2.1933594, -0.9433594, -0.87841797, 1.2470703, 0.3491211, 0.9819336, 3.671875, -0.45703125, -0.093322754, 0.31958008, 3.2480469, -0.20117188, -3.5488281, -1.9892578, -1.5107422, -1.3798828, -3.5429688, -0.7265625, -0.7324219, 0.04321289, 3.2558594, 0.0023384094, -4.3007812, -1.0429688, -0.78759766, 1.4394531, -0.4807129, -0.9926758, -0.23950195, -1.2646484, -0.25927734, -0.04876709, 1.9482422, -0.3527832, -1.34375, -0.8286133, 4.3398438, 0.37597656, 1.2832031, -1.0419922, -1.7177734, 0.38476562, 2.4101562, 0.13635254, -0.8129883, 1.4667969, -0.101745605, 1.6318359, 0.2010498, -2.2480469, 1.0136719, 0.41235352, 1.6611328, -0.93115234, 0.0736084, 2.6464844, 1.0253906, 0.1784668, -1.2529297, -1.75, 0.4897461, -0.059814453, 0.18383789, -1.7949219, -1.15625, -0.005405426, 0.23791504, -1.8144531, 1.4628906, -0.49194336, 0.6489258, 1.046875, -1.2607422, -0.38427734, -0.66064453, -0.41015625, 1.4287109, 1.4140625, 0.20275879, 0.079589844, -0.2434082, 0.82714844, -1.7792969, -3.1542969, -0.49267578, -2.3613281, 1.125, 0.8911133, 1.7070312, -0.19116211, 2.0859375, -1.1679688, -0.74560547, -2.6113281, 1.4326172, 0.39892578, 1.8779297, 2.4609375, 1.0214844, -0.78564453, -0.5888672, 1.0224609, -0.42016602, 2.1875, 0.38989258, 0.24450684, -0.95214844, -1.125, 2.7578125, 2.3808594, -1.8261719, 0.07409668, 0.6538086, 1.9970703, -0.007835388, -1.1318359, -0.4423828, 0.32128906, -0.4819336, 1.3779297, 0.02432251, -2.0859375, 0.19067383, -0.24743652, -2.3164062, 2.6542969, 2.0839844, 0.8339844, -0.041107178, 0.80078125, -0.625, 2.6503906, -0.5625, 2.28125, -0.58251953, 1.2177734, -1.3574219, -2.5859375, 0.29296875, 2.015625, -0.8725586, -0.020614624, 0.6455078, -0.18530273, 2.4296875, 1.1474609, -2.1835938, -0.25830078, 1.7333984, 0.8105469, 0.26953125, 1.7460938, 1.7294922, -1.6777344, -0.296875, 2.1601562, 0.6357422, 2.5703125, 0.018630981, 0.10028076, 1.9970703, -2.4980469, -2.2207031, 0.48657227, 0.17626953, 0.082092285, -1.4189453, 1.7792969, 3.2597656, 0.5864258, -2.2207031, 4.1679688, -3.171875, 0.87060547, 0.7446289, -0.21069336, -1.4511719, 0.3137207, 2.7519531, 0.8022461, -0.76171875, 2.1621094, -3.8867188, -0.21582031, -0.6401367, -3.6074219, 0.9453125, -0.3894043, -0.6777344, -1.6806641, -2.0625, 0.58740234, -1.2246094, -0.93115234, 1.1835938, -2.4824219, 0.85058594, 2.6386719, -0.12768555, 0.9350586, 0.16894531, -1.3212891, 0.2763672, -0.43017578, -1.7626953, 1.3603516, 1.1142578, -0.9199219, -0.039367676, -0.26904297, 1.6787109, -2.1347656, -3.4570312, -0.6616211, -0.45776367, -3.4414062, 2.0742188, 0.05984497, -1.8837891, 1.0908203, -1.5146484, 2.3066406, -2.3261719, -2.3125, 1.1748047, 1.234375, -0.73828125, -0.8359375, -0.19445801, 0.6748047, 0.51953125, -3.3554688, -0.33251953, 0.17077637, 0.22131348, -0.70703125, 0.35473633, -0.07904053, 0.11218262, 0.10614014, -0.6464844, 0.8408203, -0.81640625, -2.1972656, 0.7558594, -3.2832031, 0.55371094, -3.3359375, -0.296875, 0.30810547, 0.022979736, -3.3378906, -1.234375, 2.0097656, 0.58740234, 5.3828125, -0.49316406, 1.28125, 0.3515625, -1.375, 0.8745117, -1.2783203, -2.9375, -0.70996094, 1.21875, -0.05090332, -3.0898438, -2.5507812, -0.94140625, 0.02267456, 0.19348145, -0.14331055, 0.7573242, -0.63916016, 1.1738281, -2.0429688, 0.6777344, -0.018829346, 1.9033203, -0.52685547, -1.0585938, -1.3466797, 0.107421875, -1.1855469, 0.012924194, -1.3642578, 0.6557617, 0.1743164, 1.0126953, 1.25, -0.22888184, 1.5117188, -0.49072266, -4.0703125, 3.1914062, 0.5708008, -1.5078125, 2.6699219, -2.125, -2.328125, -4.4492188, -1.0556641, 1.4648438, 2.7636719, 2.4257812, -0.5683594, -0.5913086, 1.2119141, 0.6557617, -1.3007812, 0.58203125, -1.0605469, 4.0351562, -1.7646484, -2.4902344, 1.0859375, 1.8837891, -2.921875, -2.8710938, 1.2871094, 0.703125, 1.2001953, 3.7480469, 1.5859375, 0.113586426, -0.042236328, 1.03125, 2.0117188, -0.5385742, -0.9008789, 1.3310547, -1.09375, 1.5693359, 2.0429688, 0.21411133, 0.3762207, 0.7241211, 0.8222656, 2.4296875, -1.0644531, 1.5371094, 0.7314453, 0.6113281, 2.4375, 2.7324219, -1.3994141, 0.20373535, -0.11407471, -0.99560547, 0.8120117, -0.23022461, -0.014389038, 2.9199219, 0.98535156, -0.84472656, -0.01512146, 0.00096416473, 1.6679688, -0.7050781, 0.0026874542, -1.4667969, -0.5136719, 0.43164062, -2.7851562, -2.1367188, -1.9189453, 2.7167969, -0.7607422, -2.421875, 1.4482422, 3.8496094, 0.003604889, -3.0546875, -2.1972656, 0.71728516, 0.038146973, 2.6777344, 1.0517578, -0.85058594, 1.1083984, 0.105041504, 1.1982422, 2.0585938, -1.1074219, -0.97802734, -2.2539062, -1.3232422, 0.1394043, 0.54052734, 1.1425781, 0.3894043, -2.5292969, 0.77978516, -3.5097656, 0.8925781, 0.77441406, -2.5039062, -0.8022461, 3.5175781, 0.42944336, 0.90771484, -1.0087891, 2.8867188, -1.6171875, -0.04849243, 0.68603516, -0.6513672, -0.99121094, -2.4023438, -2.4335938, 1.3251953, -1.5732422, -0.6147461, 2.453125, -0.4326172, 0.0793457, 0.66748047, 0.6254883, -1.4726562, -2.5195312, -2.4257812, -0.7294922, -1.9111328, -0.04498291, 0.12719727, -0.5102539, -2.3125, -2.5371094, -1.90625, 0.62597656, 1.5078125, 2.1894531, -1.5332031, 0.24511719, -1.8603516, 1.3574219, -0.21020508, -1.0332031, 0.105407715, 0.25683594, 0.1875, -4.59375, 0.7607422, 1.7167969, -0.13085938, 2.9589844, 1.6425781, -0.3034668, -2.3476562, 1.7382812, 1.7324219, 0.60791016, 0.38183594, -1.6767578, 0.22668457, -1.6298828, -2.0820312, -0.36694336, 0.008384705, -0.058807373, -1.7001953, 0.7597656, 1.1914062, 2.3300781, 1.8359375, 0.30517578, -1.7148438, 1.3789062, 0.7109375, -2.3574219, -2.2753906, -1.0615234, -0.4794922, -1.9179688, 0.7783203, -1.4384766, -1.6894531, 0.054138184, -1.296875, -2.6699219, 1.8339844, 1.9609375, 2.1640625, 2, 1.0283203, -0.3642578, 0.87841797, -0.6064453, -0.58496094, 0.5292969, -0.41064453, 0.6738281, 0.72314453, 1.7207031, -1.3789062, -1.4511719, 0.54541016, -3.234375, -0.84716797, -1.390625, 0.096191406, -2.03125, 0.33935547, -0.45751953, -0.9814453, 2.4863281, -1.7167969, 0.8803711, 0.32177734, 0.8046875, 0.2512207, -0.016433716, -0.04953003, 0.7602539, 1.4189453, 0.10455322, -0.00667572, -1.2880859, 0.6586914, -1.1123047, 1.4501953, -1.6728516, -0.3088379, 1.6640625, -1.2871094, -1.5566406, -0.99365234, 1.1787109, 1.921875, 1.0957031, 3.046875, 1.0771484, -1.4365234, 1.0498047, 1.2714844, -1.1035156, 0.61621094, -0.2849121, 0.6948242, 1.1699219, -1.5332031, -3.5878906, -0.171875, 2.0429688, 0.2758789, 0.67529297, 0.2277832, 0.47802734, -1.0644531, -3.6464844, -0.77441406, -0.021820068, -1.1181641, 0.26342773, -2.2050781, -0.24987793, -1.7568359, 1.9023438, 3.1367188, -0.46142578, -1.1210938, 1.8066406, -1.1308594, 0.65185547, -1.9873047, -0.5415039, -3.25, -1.3085938, 1.921875, 0.1538086, 0.34179688, 0.2602539, 1.4589844, -1.3662109, -0.29614258, -2.2597656, 1.9990234, -2.1347656, -1.015625, 1.1699219, -1.2324219, 0.24645996, -2.203125, 0.6245117, -0.20092773, 2.6777344, 0.7324219, -0.86865234, -0.6225586, 1.4716797, -2.171875, -3.9101562, -2.0722656, -0.6791992, 0.42529297, 0.028182983, 2.65625, -2.2441406, -1.1191406, -0.71435547, -0.50146484, -0.7294922, 0.019180298, -0.91308594, -1.0634766, 0.4638672, 0.3984375, -0.32202148, 0.9169922, 1.6035156, 1.7929688, 0.063964844, -3.7324219, -2.328125, 0.56152344, -1.15625, 1.0546875, 1.1845703, -0.20446777, -0.8442383, -0.81591797, 1.796875, -0.014137268, 2.828125, -0.3022461, -1.0390625, 1.1357422, -1.1630859, -0.37402344, 0.045410156, -1.9384766, 0.83740234, -1.0009766, 2.3730469, 0.35913086, 0.79785156, -1.3017578, 1.3779297, 0.99609375, -0.037384033, 1.4423828, -0.13146973, 2.3085938, 1.0712891, -0.05819702, -0.8569336, -0.9941406, -2.3300781, -0.10559082, -1.4667969, -1.0869141, -2.1113281, 2.0449219, 1.9394531, 2.6191406, 0.41796875, 1.84375, 1.3378906, -0.45996094, 0.8300781, -0.39746094, 3.0351562, 3.3652344, 0.054840088, -1.9082031, -0.30078125, -0.035217285, -0.24890137, 1.8779297, -1.1445312, -0.890625, -2.1601562, -0.67285156, -1.3388672, 2.140625, 1.6074219, 1.7070312, -1.1289062, 2.6015625, 3.8203125, -0.69189453, -0.48266602, 0.19396973, 2.4433594, -1.6103516, 3.4277344, -0.06317139, -2.1640625, 1.4267578, -2.0292969, 1.9482422, -0.7841797, -0.23486328, 0.64160156, -0.97216797, -0.50146484, -2.0507812, -1.0996094, -2.4453125, 2.2265625, 0.4404297, -1.7392578, 1.4794922, 2.0488281, -1.2490234, 1.4101562, 2.0839844, 1.1640625, -0.8730469, 0.8466797, -0.6660156, -0.66503906, 0.8647461, -2.9648438, 4.9570312, -0.4091797, -0.51464844, 0.15844727, 3.1132812, 0.56347656, 3.5429688, 2.8203125, 2.2324219, 3.3242188, 1.1484375, 3.3613281, 0.9794922, -0.4609375, -0.28588867, -1.1640625, 0.17993164, 3.3691406, 1.84375, 0.34985352, -1.9355469, 1.2050781, -1.2285156, -0.5058594, -1.1220703, 0.77441406, 0.5913086, -3.6289062, 2.7324219, 1.4667969, 2.0292969, -1.5166016, 0.29418945, 0.7885742, 0.27514648, -0.71533203, 0.16772461, 1.4746094, -2.0957031, 1.1054688, -0.75878906, 0.21984863, 2.4941406, -2.1679688, -0.9296875, -1.4404297, -1.3798828, -1.0019531, -1.1582031, 1.4306641, 0.13671875, 1.0507812, 1.2958984, 1.5214844, -0.5395508, 0.5385742, 0.06137085, 1.2412109, 1.2167969, 2.8925781, -0.6425781, -1.2060547, 0.7949219, -1.0654297, -1.8056641, -4.1992188, 1.7626953, 0.30126953, 1.0771484, 1.5439453, -2.3535156, 1.75, 1.3544922, 1.9726562, -1.6337891, 2.1113281, -0.7114258, -1.9394531, -1.9853516, -0.10424805, 1.7246094, 2.7285156, 1.4179688, -0.9135742, 1.5966797, 0.44726562, 2.3574219, -0.89160156, 0.23901367, 1.4462891, 1.7304688, -1.9990234, 1.1318359, -0.29467773, 1.3193359, -0.07922363, 1.0410156, 2.7167969, -0.6689453, -0.5336914, -1.4121094, 0.6948242, -0.18835449, -1.7509766, -0.8491211, -1.1259766, -1.5537109, 2.0253906, 1.0400391, -0.60546875, -0.8144531, 1.6855469, 2.9921875, -2.28125, 1.9824219, 1.9394531, 0.88378906, 2.1308594, -2.1367188, -1.2431641, -1.2138672, 0.6225586, 0.85302734, 0.25219727, -1.1884766, 1.2509766, 0.734375, -0.83740234, -0.43530273, 0.38134766, -0.75439453, -0.2746582, -1.8798828, 1.5146484, -0.66796875, -1.1347656, 0.10888672, 0.21472168, 0.9453125, 1.578125, -1.1308594, -0.5966797, -0.7788086, -2.3710938, -0.4230957, -2.6035156, -0.062469482, 0.3942871, 3.9707031, 1.0888672, 1.5976562, -3.1914062, -2.5488281, -1.9042969, -0.57177734, 3.1386719, 1.5126953, -1.5332031, 0.5620117, 0.22668457, 1.8251953, -1.6582031, -0.9511719, 0.13049316, -1.3789062, -0.16967773, 0.16088867, 0.31176758, 1.1054688, -1.0087891, 0.15942383, 1.6982422, 1.7890625, 2.1640625, 1.4189453, -1.2646484, -0.05581665, -1.8349609, 0.60253906, 0.33032227, -1.5009766, -1.4892578, 1.3740234, 2.78125, 1.7060547, -0.118774414, -2.2890625, -1.6679688]}, "B01BW4K0LG": {"id": "B01BW4K0LG", "original": "Brand: MARTIN\nName: MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan\nDescription: Compatible with both high and low pressure lines \u2013 ideal for trailers \u2013 this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That\u2019s why we created the\u00a0MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat \u2013 or vegetable \u2013 you\u2019re grilling which means you\u2019ll be able to get that delicious \u201cseared on the outside, juicy on the inside\u201d performance\u00a0every time. Thanks to the closing lid you\u2019ll find it\u2019s much easier to get evenly-cooked food and keep the bugs away while you\u2019re cooking.\u00a0

          Product details:

          • Adjustable cooking temperature
          • Large porcelain cooking grid
          • Piezo igniter
          • Heat indicator
          • Folding support legs
          • Brushed stainless steel cover
          • Grease pan
          • Certified for USA and CANADA
          Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.\nFeatures: U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go\nFOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute\nADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking\nGREASE PAN - Quick clean grease tray keeps your grilling area clean\n354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source\n", "embedding": [-0.93408203, 1.1259766, 0.78222656, 2.0097656, -0.45288086, 2.5214844, 2.171875, -0.17980957, 0.07006836, 2.3964844, 0.051940918, -0.3413086, 0.18493652, -2.0507812, 1.6806641, 1.0185547, 1.4072266, 0.7285156, 1.4101562, 2.5136719, 1.6953125, 0.9345703, 0.5498047, -0.38232422, 0.43359375, 0.67578125, 2.9492188, -2.0683594, -0.1730957, -2.0410156, 1.4228516, 0.24780273, -0.15576172, 1.6230469, -2.3398438, -1.2587891, -2.0625, 1.9716797, -1.7470703, -0.9189453, -0.9423828, -0.8642578, 3.2636719, -0.22888184, -2.5566406, -1.3623047, -0.5996094, 1.7226562, -0.5761719, -2.2539062, 2.046875, 1.1914062, 0.7607422, 1.4726562, -1.0341797, 0.60546875, 0.41967773, -1.765625, 1.5371094, -0.01121521, 1.1972656, 0.11444092, -1.6855469, 0.94189453, -2.0644531, -0.62353516, -0.6689453, -0.32373047, 0.43920898, -1.0419922, 2.8105469, 0.26245117, -0.8544922, 0.33691406, 0.25097656, -2.1796875, -1.1386719, 1.2128906, 0.90283203, 1.0703125, -1.28125, 2.4667969, 0.81884766, -1.2041016, 0.041107178, 0.01272583, -0.9375, 0.9370117, 1.8076172, 2.3027344, -0.46264648, 4.2382812, -3.3378906, -3.9394531, 2.8164062, -1.1669922, 1.265625, 1.4433594, 0.27929688, 3.1328125, -0.68652344, 1.3359375, -2.1777344, 1.0585938, -3.0019531, -1.0400391, 1.9941406, 0.22131348, -1.4296875, 0.29101562, -1.8730469, 0.52001953, 1.1630859, 0.20983887, 2.0058594, -0.76953125, -0.3076172, 1.7080078, 3.4003906, 2.9042969, 3.9648438, 0.53564453, 1.7880859, -0.8071289, 0.06549072, 0.4399414, -2.1796875, 1.296875, 4.5078125, -2.0332031, -1.3017578, -1.8359375, 1.6630859, -0.5727539, -1.6445312, -3.1640625, -0.5102539, -3.0195312, -4.2070312, 0.2220459, -2.0644531, 0.9682617, 1.3554688, -0.8276367, -3.2167969, 0.3076172, -1.2070312, 1.1181641, -1.2861328, -2.34375, 1.6806641, -2.0253906, 0.53808594, -0.9296875, 1.5361328, -0.78564453, -0.5878906, 0.09234619, 3.3886719, -0.71777344, 2.8125, -2.1679688, -1.8027344, 1.7480469, 1.4541016, -3.3574219, -0.8647461, 2.7949219, -0.6855469, 2.5703125, 0.8071289, -2.1269531, 0.072753906, 0.101867676, 1.0722656, -1.75, -0.17687988, 1.8769531, 1.8037109, -1.7666016, -1.2392578, -3.9003906, -0.3256836, -0.28466797, -0.1161499, -0.10827637, -0.10626221, 0.0032520294, 0.050964355, -1.453125, -1.7519531, 2.5449219, 0.4206543, 0.39135742, 0.0418396, -2.5136719, -1.7675781, -1.7275391, -0.028915405, -0.23925781, -0.77490234, -0.8564453, -1.0917969, 0.17468262, -1.6689453, -3.0039062, -0.4802246, -0.39697266, 0.5498047, 2.4707031, -0.23547363, -1.8173828, 2.5292969, -0.66259766, -0.7246094, -1.6533203, 1.3505859, 1.3095703, 0.72314453, 2.1777344, -2.0332031, -0.12561035, 1.3759766, 3.7480469, 0.22216797, 2.0175781, 0.9472656, -0.4230957, -3.5175781, -1.609375, 2.3476562, -0.48535156, -0.91503906, -0.5307617, -0.27807617, 2.6347656, 0.2331543, -0.4296875, 0.8647461, 0.45703125, -0.7470703, -2.3085938, -1.1132812, -2.5664062, -0.9326172, 1.4345703, -1.8935547, 0.6533203, 0.98339844, -0.21313477, -0.55126953, 0.18554688, 0.9116211, 0.4177246, -0.5371094, 0.9921875, -0.28173828, 1.7236328, -3.328125, -1.7353516, 0.6879883, 1.1152344, -0.76708984, 0.81152344, 1.8779297, -1.5136719, 3.5332031, -0.796875, -2.3027344, -0.059020996, 3.4335938, 0.10900879, 0.7294922, -0.6274414, 1.4941406, -1.4335938, -1.2089844, 2.5742188, 1.3046875, -0.19140625, 0.37548828, 1.2470703, 0.17260742, -2.8554688, -1.7910156, 0.7792969, 1.3203125, -0.14318848, 0.8051758, -0.33203125, 4.265625, 0.8935547, -2.3808594, 3.4003906, -0.68359375, 1.2578125, 2.0214844, -0.6826172, 1.4931641, -1.1640625, 1.6767578, 2.8632812, -0.54003906, 2.171875, 0.076171875, -1.2177734, -0.18310547, -2.5390625, -0.10583496, 0.17614746, -0.5673828, 0.43164062, -1.359375, 1.7177734, -1.5683594, -1.8339844, 0.76416016, -2.2871094, -0.1899414, 0.9946289, 1.5302734, 1.5888672, -0.52441406, -2.0136719, 0.98876953, 0.80908203, 0.3972168, 1.4365234, 0.30444336, -0.3232422, -0.25170898, -1.8691406, 2.4433594, -2.4433594, -4.3007812, -0.5102539, -3.3476562, -2.5683594, 0.6958008, -1.4951172, -2.4824219, 1.6259766, -1.9541016, -1.3896484, -2.2148438, -2.1210938, -1.5517578, 1.0742188, -0.7265625, -0.6166992, 0.9716797, 0.8491211, 0.4260254, -3.0039062, 0.009384155, -0.3852539, -0.46362305, 0.47143555, 0.04800415, 0.5361328, -1.9951172, 0.60595703, -0.66845703, -0.1373291, -0.11053467, -1.0927734, -0.58154297, -3.1542969, -0.16711426, -2.484375, -0.87646484, -0.9765625, -0.7158203, -1.5898438, 0.72998047, -1.5732422, -0.81689453, 3.4882812, -1.1142578, 1.5009766, -2.2050781, 0.04837036, 0.36108398, -0.21484375, -1.8740234, -2.1171875, 0.062561035, -1.4101562, -2.4414062, -1.3701172, -0.5234375, 0.50683594, 0.071777344, -1.5458984, 1.1767578, -2.5605469, 1.2294922, -2.0761719, 1.0849609, 0.12646484, 1.9589844, 0.4711914, -1.9208984, -1.8740234, -1.3476562, -1.4121094, -0.60009766, -0.35546875, 1.3496094, -1.3984375, 1.4160156, 1.4101562, -0.16516113, 1.1757812, -0.21533203, -2.3457031, -0.37280273, -0.37109375, -2.3261719, 1.0097656, -0.07849121, -0.9819336, -3.5839844, -0.80615234, 3.1835938, 0.76904297, 2.3632812, -0.06793213, -0.046661377, 0.84716797, 0.05758667, -0.19836426, -1.1738281, 0.15161133, 2.3496094, -2.0253906, -1.2119141, 1.4365234, 1.2861328, -1.4716797, -0.74658203, 3.2675781, 2.078125, 1.0488281, 1.2958984, 3.1757812, 0.53759766, -0.70751953, 2.9609375, 1.6503906, 1.3203125, -0.5292969, 0.1665039, 0.65771484, -0.037841797, 2.5078125, 0.40527344, 0.43920898, 1.6630859, 2.0644531, 0.6113281, -3.9355469, 1.9550781, -1.1582031, 0.5517578, -0.056365967, 2.75, -0.9667969, 0.18103027, 0.22741699, -0.55908203, 1.1142578, -1.140625, -1.4248047, 1.6650391, 1.4404297, -0.068847656, -0.8017578, -1.1591797, -1.5693359, -1.6298828, 0.10333252, 0.31469727, -0.9033203, 0.8574219, -1.9511719, -1.6308594, 1.3154297, 1.0644531, -1.1386719, -2.8671875, 0.90966797, 1.9560547, -1.1240234, -2.3515625, 1.1601562, -0.10839844, -0.5175781, 4.328125, 0.671875, -1.4384766, 0.77197266, -0.5996094, 0.7207031, 2.2519531, -0.5205078, -0.6791992, -1.5966797, 0.45410156, -0.24951172, -0.8183594, 1.0673828, 0.75634766, -3.1113281, -0.20922852, -2.7792969, 1.1669922, -0.9941406, 0.29101562, 0.30126953, 0.92041016, 1.7851562, 2.3164062, -1.6494141, 3.6953125, -0.44140625, -1.59375, 1.1376953, -3.3984375, -0.06921387, -3.2441406, -3.7460938, 1.2490234, -0.4182129, 0.48779297, 1.7763672, 0.8208008, 0.90527344, 1.3115234, -0.39501953, -3.4199219, -1.0087891, -1.2880859, 1.1484375, -1.9833984, -0.3322754, 1.4326172, 1.7226562, -0.8334961, -1.3369141, -1.1269531, 0.8354492, 2.0839844, 1.5996094, -1.9892578, 2.0683594, -2.1699219, -0.8911133, -0.014060974, -1.3056641, 0.09851074, -0.9790039, -0.21679688, -1.5917969, 2.1289062, 0.28320312, -0.97802734, -0.19140625, 0.5878906, 0.8779297, -0.8642578, -0.16894531, 2.6074219, 3.5234375, -0.6801758, -2.0351562, -1.9667969, -0.7783203, -0.37329102, -0.4946289, -0.70751953, -0.84716797, -2.6367188, 1.3730469, -0.02482605, 1.0507812, 0.26123047, -0.115722656, -1.0966797, -1.2011719, 1.1259766, -2.9003906, -1.2216797, -1.1679688, -0.38378906, -1.3173828, -1.0175781, -2.7871094, 1.0029297, -2.8535156, -1.7773438, -3.0058594, 3.7441406, 0.3791504, 1.84375, 2.0839844, -0.61816406, -0.23535156, 1.2841797, -1.9423828, -1.7226562, 0.021957397, 0.26489258, 0.6635742, 1.8876953, 2.9824219, -0.8144531, -0.3215332, 1.9667969, -2.3789062, -1.4326172, -1.0224609, 1.984375, -3.3417969, -1.2949219, -1.3720703, -1.2089844, 2.1894531, -0.9296875, 2.2519531, 0.76464844, 1.1367188, -1.2646484, 0.10821533, 0.8022461, 0.7583008, 0.9345703, 2.1777344, 1.8378906, -1.0390625, 0.6147461, -0.3815918, 1.6337891, -2.2148438, 0.7192383, -1.1171875, -0.24938965, -1.4267578, -2.4570312, 1.1279297, 3.0449219, -0.6230469, 2.0195312, -1.3798828, -2.5527344, 1.8144531, 1.3330078, -1.8349609, 0.6894531, 0.018737793, -1.4833984, 0.8574219, -0.1854248, -2.71875, 0.29907227, 1.3779297, -0.40649414, 0.35083008, 0.27416992, 0.3479004, 1.0449219, -2.0761719, -1.6074219, 1.1123047, -1.0185547, -0.05670166, -1.2509766, 0.11029053, -0.29492188, 1.4892578, 1.3896484, -1.1347656, -1.9208984, 3.6484375, -0.031280518, 1.4052734, 0.60546875, -1.1416016, -2.2480469, 0.5605469, 2.5761719, 0.27490234, 1.3066406, -0.43530273, 0.5727539, -2.9179688, -1.2246094, -2.6953125, 1.3955078, -0.5415039, 0.48217773, 2.2714844, -1.7431641, 2.3300781, -1.4208984, 1.0605469, -0.80615234, 2.0371094, 1.1328125, 0.24169922, -0.98876953, -0.60839844, -1.9433594, -4.6992188, -2.296875, 1.5498047, -0.11437988, 0.07885742, 0.82421875, -2.0839844, -0.23706055, -0.15478516, 0.7426758, -1.9189453, 0.24328613, -0.62353516, -1.7744141, -1.3662109, 0.8955078, -0.4333496, 0.23266602, 1.4257812, 0.6591797, -0.82958984, -3.4804688, -1.2871094, 0.40771484, -1.4257812, -1.8564453, 0.3671875, -0.58251953, -1.1445312, 0.9165039, 2.2402344, -2.0058594, 3.1035156, -2.4453125, -0.43188477, 1.2373047, 0.2722168, 0.23120117, -0.14575195, -2.4609375, 1.8251953, -1.6025391, 0.25610352, -0.07928467, -0.091918945, -1.3164062, 2.5136719, -0.60058594, -0.4033203, 0.42578125, -0.11437988, 3.7070312, 1.4814453, -0.7011719, -1.4755859, -2.78125, -3.9570312, 0.107543945, -1.8056641, 0.46923828, -3.4707031, 0.26708984, 2.1367188, 0.1340332, 0.17858887, 0.9370117, 0.8076172, -0.5913086, 1.0546875, -1.9365234, 2.09375, 1.5703125, -0.46118164, -1.140625, -1.0146484, 1.9921875, -0.69873047, 1.0898438, 0.22253418, -0.16088867, -1.2626953, -0.03050232, -0.5131836, 1.8291016, 2.953125, -0.0491333, -1.8183594, 1.1533203, 1.8603516, -0.5805664, 1.7558594, 1.2080078, 1.078125, -0.45239258, 3.8710938, 0.40161133, -2.6679688, 2.4589844, -1.6816406, 1.8242188, -1.484375, -2.0820312, 0.80126953, -1.9101562, 0.12792969, -1.9599609, -0.8222656, -3.3730469, 2.9667969, 1.0917969, -0.43041992, 0.9082031, 3.8261719, -0.15563965, 1.2783203, 3.4882812, 0.09454346, 0.03164673, 2.2792969, -1.5117188, 0.42016602, 1.7080078, -2.8632812, 1.3652344, 1.7724609, -0.38110352, -1.1923828, 2.9355469, 1.2236328, 2.5273438, 0.6972656, 1.9628906, 3.5976562, 0.9316406, 2.8964844, -0.066101074, 1.0585938, 3.03125, 0.6923828, 0.3618164, 1.5292969, 1.6367188, -0.31762695, -0.71435547, 2.0371094, 0.20056152, -2.9746094, -1.0341797, 0.8227539, -0.87939453, -4.7851562, 2.9023438, -0.8930664, 0.10290527, -2.1425781, -0.63916016, -2.2285156, -0.58984375, -1.4345703, 0.45898438, 3.2578125, -0.7294922, 0.35205078, 1.4072266, 0.1237793, 1.1904297, -2.1425781, 1.7041016, 0.50341797, -0.5722656, -0.3095703, 1.7675781, 1.6376953, 2.3398438, 0.54052734, 0.77246094, 1.5488281, -0.42456055, 0.84033203, -0.85058594, 1.0712891, -0.04260254, 3.5527344, 0.14953613, -0.68603516, 1.3925781, -1.4541016, -1.9101562, -2.7285156, 1.8388672, 1.3496094, 1.0966797, 0.8769531, -2.6855469, 0.44482422, -0.22814941, 0.60839844, -2.046875, 1.5742188, 0.6699219, -2.7421875, -2.3027344, 0.51220703, 0.57128906, 2.8613281, 0.87939453, -2.0273438, 2.3242188, 1.6220703, 2.3535156, 1.390625, 0.2998047, -0.2084961, 1.2001953, -2.390625, 2.1699219, 2.796875, -0.8510742, -1.3457031, 1.7246094, 2.5175781, 0.9013672, 0.18395996, 0.4423828, -0.8925781, 0.15356445, -1.1318359, -1.6601562, -1.0498047, -1.5947266, -1.7607422, 0.9916992, -0.8955078, -2.2773438, 0.85595703, 2.21875, -1.9960938, 2.1035156, -0.05886841, -1.1992188, 1.8291016, -0.26245117, -0.79248047, 0.5834961, 0.55078125, 1.25, -1.5800781, -0.28564453, -0.19812012, -0.27929688, 2.0234375, 0.078063965, 0.99560547, 0.6640625, -0.36743164, -0.07336426, 2.0253906, -0.83154297, -1.7587891, 2.0683594, -0.37573242, 1.6171875, 3.0039062, -1.0800781, -0.5595703, -1.484375, -1.1425781, 0.2944336, -2.4355469, -0.3425293, 1.2197266, 4.6757812, 1.3691406, 1.1425781, -2.078125, -2.7597656, 1.7929688, -0.39575195, 3.7207031, -1.3115234, -1.2363281, 1.6796875, -0.3293457, 2.2675781, 0.95703125, -1.3193359, 0.4597168, 1.0019531, 1.0058594, -0.4091797, 2.0703125, 3.0839844, -0.42114258, 0.7817383, 1.9521484, 1.9863281, -1.7128906, 1.765625, 1.28125, 1.2070312, -2.6074219, 1.3046875, -0.6616211, 0.75097656, 0.6489258, 0.79248047, 2.3984375, 0.6323242, 0.6347656, -1.5771484, -1.4072266]}, "B07XVBJT3R": {"id": "B07XVBJT3R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L90000 40\" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface.\nComponent package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack.\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nPackage Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "embedding": [0.5151367, 0.016189575, 0.8881836, -0.58740234, -0.77734375, 0.35009766, 1.8925781, -1.7607422, -0.5708008, 1.8574219, -0.63671875, 0.16662598, -1.2226562, -2.8300781, 0.57470703, -1.6064453, -0.57714844, 2.5683594, 1.09375, -2.4140625, -0.7910156, 0.07897949, 3.21875, -0.15075684, 0.008270264, 0.50097656, 3.7714844, -3.8535156, -0.3395996, 1.2509766, 1.6943359, 1.3173828, -0.71728516, 1.5458984, -3.2265625, -1.8818359, -0.7294922, 0.9941406, -2.7832031, 0.19555664, -0.13891602, -0.5913086, 1.5869141, -0.25024414, -1.5361328, -0.9404297, -0.33422852, 0.8696289, -2.1933594, -1.2460938, 2.0996094, 1.0117188, -0.34057617, 0.24328613, -1.8417969, 2.765625, 1.3583984, -0.2680664, 1.9560547, 0.23840332, 1.4794922, 1.3251953, -0.5986328, -0.7475586, -1.1337891, -1.03125, -0.9736328, -1.5732422, 1.0585938, -0.57421875, 3.9511719, 1.0263672, -1.6757812, -1.9765625, 1.0771484, -0.47680664, -2.796875, 2.0117188, 0.71875, -0.035827637, 0.20422363, 4.3398438, 2.1972656, -2.703125, -0.49365234, 1.3193359, -1.984375, -0.3869629, 2.6289062, -0.7988281, 0.55566406, 2.4589844, -2.1542969, -4.0273438, 2.7070312, -0.16833496, 0.037841797, 1.3369141, -0.36035156, 1.0712891, -0.5083008, 0.8623047, -1.53125, -0.83984375, -0.28271484, -2.4414062, 0.6333008, 0.2220459, -3.0898438, -0.08703613, -2.4179688, -1.2382812, 1.9199219, 1.1660156, 1.5839844, 2.1328125, -0.2175293, 1.6191406, 0.5957031, -0.0033016205, 2.9277344, -1.3925781, 0.44848633, -0.8876953, 0.09057617, -0.6245117, -1.9199219, 2.6464844, 4.1445312, -0.9848633, -1.3876953, 0.037994385, 1.4833984, -0.80810547, -0.9042969, -1.0898438, -1.8076172, -0.8618164, -2.7832031, 1.2568359, 0.5058594, 1.4277344, 1.9003906, -1.1142578, -4.7382812, -1.2060547, -1.2783203, 0.97509766, 1.2607422, -2.7519531, -0.05355835, -2.03125, 0.7402344, -2.3867188, 1.2851562, 0.2553711, -2.546875, -0.7270508, 2.0527344, 0.4765625, -0.93066406, -1.8486328, -0.8828125, 0.69873047, -1.2480469, -1.2392578, 0.097839355, 0.5991211, 1.015625, 1.2294922, -0.19445801, -1.7939453, 0.38232422, -0.19897461, 0.4387207, -1.1582031, -1.2861328, 0.50439453, -0.09631348, -0.88916016, -0.9291992, -3.0996094, -1.0078125, 0.45922852, -0.012290955, -1.1191406, 2.6347656, -1.4521484, 1.3613281, -0.7211914, 1.3476562, -1.2890625, -0.375, -0.13867188, -0.30908203, -1.4863281, -0.3527832, -0.08673096, 2.9589844, -0.8261719, -0.3684082, -0.37963867, -0.28295898, 0.43969727, -2.8007812, -3.0292969, -2.9433594, -2.265625, 1.7412109, 1.65625, 1.6220703, -1.3632812, 1.9853516, -1.1494141, -0.71240234, -4.2890625, 0.25976562, -0.7871094, 1.5390625, 1.7392578, 0.12878418, -0.8598633, -1.5244141, 3.0390625, -0.53271484, 0.96484375, 0.31762695, 0.35766602, -2.8027344, 0.19628906, 2.1210938, 0.3269043, 0.9213867, 0.10760498, -0.6074219, 0.025283813, 0.6220703, -1.8300781, -0.34887695, 0.029937744, 0.05331421, 0.5756836, -0.68896484, -0.5449219, -0.5004883, 0.12988281, -0.7480469, 3.8613281, 2.0058594, 0.30517578, 0.024124146, -1.7958984, -0.13317871, 1.6523438, -1.1171875, 1.8076172, -0.9819336, 1.15625, -1.0791016, 1.3369141, 1.7880859, -0.7348633, 2.1074219, -0.18457031, 0.03225708, -1.5898438, 2.6464844, 0.7133789, -1.5771484, -2.5761719, -0.8876953, 0.25585938, 1.5556641, -0.6347656, 1.6533203, 1.2539062, -0.31469727, 1.7783203, -0.2163086, 2.5234375, 0.1998291, 0.8208008, 1.3828125, -2.9277344, 0.034118652, 0.29663086, -0.021514893, -1.1640625, -1.2695312, 1.9716797, 4.5742188, -0.6743164, -3.1582031, 2.0332031, -1.4658203, 0.4387207, 0.9165039, -1.671875, 0.9482422, 1.6826172, 1.5537109, -1.2480469, 1.8388672, 1.6416016, -0.3408203, -0.24768066, -0.41015625, -1.8271484, 0.18615723, 2.1640625, 0.44018555, -0.7993164, -0.48486328, 1.9794922, -2.2011719, -1.0400391, 3.5703125, -3.3398438, 1.6269531, 0.6591797, 1.6162109, 1.7958984, -0.90771484, -2.0800781, -1.4658203, -0.6953125, -1.1132812, 0.6567383, -1.2978516, -1.5117188, 0.72998047, -0.10479736, 0.84814453, 0.66845703, -1.0546875, -0.20715332, -0.3227539, -1.2080078, 0.15234375, -0.9243164, -0.59716797, 1.9619141, -1.4638672, 0.12683105, -0.9038086, -3.3710938, -2.234375, -1.0478516, 1.4404297, 2.9804688, -0.13183594, -0.54296875, -0.31396484, -5.1210938, 0.08203125, -1.8222656, 0.5805664, -0.49609375, -1.5537109, -1.8525391, 1.4716797, -0.51660156, -0.52734375, 1.8544922, 0.72265625, -1.1845703, 1.1259766, -3.0625, 0.32470703, -4.6640625, 0.41992188, 0.8354492, 2.3886719, -2.1113281, -1.7050781, -1.7890625, -1.3027344, 3.2578125, 0.3479004, 1.7148438, 0.5126953, 0.020584106, 2.2246094, -1.0351562, -2.1386719, 0.095336914, 0.14611816, -1.2636719, -1.1210938, -3.5664062, 1.8525391, -2.7480469, -0.44482422, -1.8525391, 1.8037109, -2.1347656, 2.4414062, -2.0800781, 0.21264648, 1.5996094, 0.7451172, -1.5751953, -0.33911133, -1.9150391, 0.09313965, -1.8007812, 0.296875, -1.421875, 1.8027344, -1.3251953, -0.9555664, -0.1217041, 0.18811035, -0.10321045, -0.75927734, -3.7949219, 4.3789062, 0.6879883, -1.4736328, 2.1074219, -0.96533203, -1.4267578, -3.5390625, 0.9379883, 1.921875, 2.1894531, 1.8691406, -0.45361328, 0.99072266, 1.0566406, -0.80859375, 0.6567383, 1.5302734, 1.0009766, 2.4550781, -0.94140625, -1.0078125, -0.5048828, 3.1289062, -3.3300781, -0.5449219, 2.4355469, 0.61328125, 2.796875, 2.1113281, 3.3164062, 0.36914062, -1.3388672, 1.421875, -1.0410156, 1.1660156, -0.35424805, -0.20825195, 0.19506836, -1.2929688, 1.1464844, 2.7910156, 0.6333008, 0.5991211, 2.875, 2.078125, -0.17199707, 0.47558594, -1.0058594, 1.015625, -2.7734375, 1.7333984, -1.3486328, 1.0126953, -0.38476562, -0.94628906, -1.3632812, -1.0175781, -0.64453125, 2.546875, 0.39624023, 1.4072266, 0.83154297, 0.6635742, 0.91845703, -0.9116211, -0.45507812, -1.6865234, -1.3886719, -0.058166504, -0.61083984, -1.59375, -1.1464844, 1.7451172, -0.17871094, -1.3427734, -0.8178711, 3.8554688, 0.27490234, -2.125, 2.1875, -1.2353516, -0.6010742, 3.3691406, -0.81396484, -1.2480469, 0.95996094, -0.71484375, 2.5507812, 0.43774414, -1.4902344, -0.3774414, -3.1386719, 0.8364258, 0.5727539, 0.15698242, 1.1416016, -0.4633789, -0.87060547, 1.0068359, -1.4394531, -0.055267334, -0.89990234, -1.3271484, -2.3730469, 0.5214844, 0.29663086, 2.7167969, 0.82910156, 3.1386719, -1.3398438, 0.2980957, 1.3378906, -2.7832031, 0.55126953, -2.8496094, -2.9316406, 0.84375, -0.9580078, -2.1464844, 3.78125, -1.765625, 0.32861328, 1.8427734, 0.018493652, -1.4609375, -1.1787109, -0.8779297, 0.6933594, -1.2685547, 1.2802734, -1.3300781, 1.7050781, 0.15234375, -1.1669922, -0.84277344, -0.6147461, 0.47216797, 1.5996094, -2.8945312, 1.5976562, -2.1542969, -0.028884888, -1.2568359, -1.171875, 1.2841797, -0.3713379, 0.6635742, -2.1386719, 1.1923828, 0.42626953, -0.92626953, 2.2734375, 1.0791016, -0.77490234, -1.1142578, -1.2597656, 1.2880859, 2.8398438, 1.5546875, -1.5244141, -2.7480469, 0.95996094, 0.5048828, -0.26513672, -0.22851562, -0.8745117, -1.2177734, -0.3762207, 1.6806641, 0.5566406, 1.5449219, 0.14831543, -1.2431641, -0.5415039, 1.7099609, -1.8720703, -1.9033203, -0.041931152, -0.14160156, -1.6660156, 2.2832031, -0.53125, 0.265625, 1.3222656, 0.5629883, -2.1679688, 1.0859375, 1.6367188, 1.4179688, 2.0839844, 0.65625, 0.38867188, 1.0478516, -0.5566406, -1.1083984, 1.2460938, -0.7963867, 0.64697266, -0.3779297, 0.06213379, -2.8144531, -0.81152344, 0.890625, -2.3886719, 0.32641602, -0.71777344, 0.29614258, -1.3291016, -1.1337891, 0.26342773, -1.2138672, 1.2021484, -1.8837891, 0.28955078, 0.7597656, 0.9658203, 0.49389648, 1.3828125, -0.7973633, 0.28466797, -0.2919922, 0.8520508, 1.2255859, -0.85498047, 0.8408203, -1.6669922, 0.8691406, -1.1650391, -0.9042969, 0.22009277, 0.030319214, -0.8408203, -1.8378906, 2.6308594, 1.1083984, -0.02218628, 2.2226562, 1.234375, -0.6269531, 0.27124023, -0.04724121, -3.1757812, -0.12384033, 0.4802246, 0.7026367, 1.890625, 1.0888672, -3.6210938, 0.04046631, 1.9960938, -0.2479248, 1.6191406, 1.8320312, -0.6171875, -0.6430664, -2.4375, -1.3984375, -1.6611328, -1.0068359, 0.79003906, -0.059570312, -0.78222656, -1.484375, 0.7084961, 1.9707031, -1.2714844, -0.8544922, 1.1259766, -0.3269043, 0.6142578, -1.6660156, -0.6220703, -1.1972656, 0.33447266, 2.6367188, 1.7617188, 0.7480469, 0.22937012, 1.6748047, -2.4003906, 0.3803711, -2.2441406, 3.1269531, -1.3037109, -0.90234375, 2.0546875, -3.3925781, 0.8574219, -3.1699219, 0.05480957, -0.3815918, 2.9472656, 0.96972656, -0.24316406, -1.5410156, 1.4570312, -0.9145508, -3.8144531, -2.5, -1.2041016, 2.3066406, -2.0566406, 0.9296875, -2.2304688, 1.5996094, -0.6489258, 0.17749023, -1.2548828, 0.4934082, -2.8808594, -1.1953125, -1.3535156, 0.1430664, -0.18029785, 0.5541992, 0.7294922, -0.1427002, 2.1777344, -3.4101562, -0.45507812, 0.36791992, -0.19799805, -0.27319336, 2.6445312, 2.1503906, 0.4248047, 0.27001953, 1.0869141, -3.5820312, 1.5292969, -1.1230469, -0.27734375, 2.2519531, -1.0849609, -0.8803711, 1.1845703, -3.3339844, 0.24523926, -0.34936523, 1.4296875, -0.51220703, -1.3720703, 0.03591919, 0.64160156, 0.15795898, -0.43701172, 2.0234375, 1.5498047, 0.6933594, 1.8808594, -0.87841797, -1.3242188, -1.3574219, -1.8154297, 0.8203125, -3.7539062, 0.28344727, -0.90771484, 0.9555664, 1.5722656, 0.1829834, 0.47583008, 2.0175781, 0.025650024, 0.3515625, 1.6552734, -0.97509766, 3.921875, 2.7714844, -0.6567383, -0.30322266, -1.8925781, 0.5361328, 3.4824219, 0.59228516, -0.032958984, 0.37597656, -1.0039062, -1.0742188, -0.8701172, 2.2128906, 0.32885742, 1.3183594, -1.8623047, -0.110839844, 3.8808594, -0.16381836, 2.0273438, -0.2854004, 2.0507812, -1.8427734, 4.2382812, 0.53466797, -3.1679688, 1.5830078, -0.17163086, 0.984375, -0.13867188, -2.3789062, -0.2861328, -0.10144043, -0.6376953, -1.1708984, -0.059539795, -2.2460938, 0.39868164, 0.86083984, -0.69091797, -1.1953125, 1.4306641, -0.09063721, 3.1074219, 1.2734375, 0.32080078, 0.7939453, -0.070129395, 0.24682617, -0.035064697, 0.81396484, -1.4931641, 2.0195312, 0.25634766, -0.17358398, -1.2587891, 3.3847656, 2.6347656, 2.0058594, 0.5053711, 0.8881836, 1.3134766, 2.40625, 0.5996094, -0.54003906, 2.4003906, -0.31958008, 0.1451416, 1.0449219, 1.9716797, 2.9082031, 0.65234375, -0.9663086, 2.234375, -1.3427734, -0.8828125, -0.59375, -0.6069336, 1.90625, -1.4785156, 2.0175781, 1.4326172, -0.9482422, -0.7739258, -0.81640625, -0.5488281, -0.90722656, 1.8710938, 1.8427734, -0.16174316, 2.2636719, 2.2929688, -1.1689453, 0.03161621, 0.60009766, -1.9550781, -2.1542969, 0.6738281, -1.0234375, -1.3681641, 0.31420898, 1.0898438, 0.69921875, 0.92871094, 0.7988281, 2.8730469, 1.9208984, 0.7602539, -1.4501953, -0.06896973, -0.1463623, 4.8984375, 0.010757446, 1.0400391, 1.1318359, 0.25878906, -3.1992188, -2.8027344, 3.4335938, 0.4777832, 2.5195312, 0.65527344, -2.2421875, 2.5898438, -1.359375, 2.0703125, -2.4960938, 1.7207031, -0.921875, -1.1083984, -0.84716797, 0.04699707, 3.4863281, 0.3256836, -0.49365234, -0.4934082, 0.45385742, -0.057647705, 2.453125, 1.03125, 3.5273438, 2.4804688, 1.6699219, -0.12915039, 2.0078125, 0.01889038, -0.04537964, -2.3320312, 2.0507812, 1.4599609, 0.30126953, 0.8354492, -0.7397461, 0.9868164, 0.051940918, 0.28344727, -0.953125, -1.3984375, -1.6806641, 0.32983398, -0.0927124, -1.2314453, -0.96875, 1.7685547, 1.1416016, -0.23522949, 0.17382812, 1.6337891, 0.098083496, 3.2050781, -0.90625, -1.2324219, -0.8833008, -0.515625, -0.9086914, 0.36279297, -2.0449219, -0.49902344, 1.8222656, -1.0019531, -1.9755859, 0.024978638, -1.6191406, -1.2197266, 0.5644531, 0.4963379, -1.2363281, -0.5541992, 3.8105469, 1.9160156, -0.5854492, 2.9707031, -0.16772461, 0.37841797, -1.9511719, -0.4909668, -2.1347656, -0.96875, -0.61865234, 1.7246094, 3.4003906, 2.4960938, -0.671875, -1.7666016, -2.7285156, -1.6240234, -2.890625, 2.546875, -1.1796875, -0.49291992, 0.3955078, -2.578125, -0.6845703, -1.5634766, -2.4628906, 0.7597656, 0.71240234, 0.4272461, 0.41577148, -0.0574646, 0.9868164, -0.5253906, 2.0292969, 1.4501953, 2.3515625, 1.2441406, 1.0595703, 0.95751953, -0.3696289, -1.6269531, -1.0947266, 0.19958496, -0.1920166, -0.859375, 0.28515625, 0.32373047, 0.93603516, 0.59521484, -0.038116455, -1.1552734]}, "B07BLH19MX": {"id": "B07BLH19MX", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black\nDescription: \nFeatures: GRILLING POWER: Up to 20,000 total BTUs\n3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control\nLARGE GRILLING AREA: 285 sq. inches\nEASY SETUP: Sturdy quick-fold legs and wheels\nTHERMOMETER: Integrated design for accurate temperature monitoring\n", "embedding": [-3.1855469, 0.1126709, 0.90283203, 1.7304688, -1.3955078, -0.4519043, 1.171875, -0.26611328, -1.4130859, 1.3164062, -0.011413574, -1.3916016, 0.019165039, -2.9609375, -0.70166016, -0.24035645, 0.55029297, 2.1972656, -0.49291992, -0.46166992, 1.8007812, -1.34375, 0.9892578, -0.7363281, -0.17028809, -0.07836914, 3.8398438, -5.3085938, -0.089416504, -0.3112793, 1.6865234, -0.012145996, -0.8569336, 2.2402344, -2.1503906, -1.171875, -3.1445312, 1.328125, -3.2539062, -0.16345215, -0.97509766, 0.13256836, 2.0019531, 0.7397461, 0.2388916, -0.0132369995, 2.0371094, 1.0302734, -0.40307617, -1.3046875, 1.2382812, 1.5771484, -0.46313477, -0.14807129, -0.5097656, 0.38183594, 0.5126953, -0.2536621, 0.87402344, -0.19995117, 2.0097656, -0.18017578, -2.2519531, 0.9916992, -1.1162109, -0.32250977, 0.32739258, 0.5839844, -0.41064453, 0.015586853, 3.6015625, 0.5053711, -2.0566406, -1.1015625, 0.43652344, -0.59277344, -2.5527344, -0.9111328, 1.4189453, -1.0458984, -1.9580078, 2.3457031, 0.22741699, -0.9916992, -0.9213867, 0.6040039, 0.10870361, -0.2163086, 1.3701172, 1.5507812, 0.31982422, 1.3476562, -2.3574219, -2.9824219, 0.9975586, -0.2861328, 1.0810547, 0.8339844, -0.47143555, 0.3088379, -1.5371094, 0.83691406, -2.7949219, -0.10656738, -4.0117188, -0.8051758, 3.328125, -0.6489258, -2.0722656, 2.8828125, -2.4472656, -1.4853516, 2.4921875, 1.3378906, 0.25219727, 0.10131836, -0.8071289, 2.4121094, 2.6210938, 2.796875, 4.5351562, 0.04006958, 2.8730469, -0.7207031, -1.2050781, 1.8251953, 0.4892578, 0.38867188, 3.9804688, 0.07055664, -0.83154297, 0.21008301, 3.21875, -0.30273438, -2.6328125, -2.7148438, -1.7587891, -1.046875, -3.6972656, -1.0898438, -1.0341797, 0.061279297, 3.3027344, 0.22290039, -4.828125, -0.6948242, 0.00869751, 1.203125, -0.5625, -1.0126953, 0.6303711, -1.9072266, -0.5078125, -0.26171875, 1.7880859, -0.546875, -0.6621094, -0.51171875, 4.09375, 0.13256836, 1.0917969, -0.81591797, -1.7519531, 0.13928223, 2.0761719, 0.19335938, -0.82373047, 0.89990234, -0.51416016, 1.2753906, 1.0673828, -3.3300781, 1.2119141, 0.6064453, 2.1074219, -1.3271484, 0.028381348, 1.9521484, 0.27734375, 0.8359375, -1.7236328, -1.2763672, 0.20129395, 0.3034668, 0.094177246, -1.8574219, -0.5722656, 0.43237305, 0.82128906, -0.8696289, 0.7607422, 0.22717285, 0.6928711, -0.14660645, -1.453125, -0.95703125, -0.32763672, -1.4462891, 1.0039062, 1.1269531, 0.15734863, -0.4296875, 0.84277344, 0.46850586, -2.2617188, -3.3457031, -1.1298828, -2.3476562, 0.62158203, 1.7236328, 2.1230469, 0.19104004, 0.9555664, -1.7714844, -0.9511719, -2.5410156, 1.8046875, 0.90527344, 1.7949219, 1.9794922, 1.015625, -0.93115234, -1.0878906, 0.4794922, -0.9902344, 2.0585938, 0.85839844, -0.16784668, -0.7993164, -0.8261719, 2.4921875, 1.8769531, -0.83447266, 0.54589844, 0.203125, 1.2324219, 0.09387207, -1.0625, -0.91748047, 0.8886719, -0.56884766, 0.8305664, -0.76123047, -2.2089844, -0.2512207, 0.0513916, -1.0292969, 2.25, 2.0273438, 0.56591797, 0.1875, 1.4257812, -0.57128906, 1.5742188, -0.24804688, 1.1630859, -0.56152344, 0.23791504, -1.6992188, -2.953125, 0.4958496, 2.2285156, -0.3425293, 0.52734375, 0.8100586, 0.0143966675, 2.4414062, 1.8408203, -2.0039062, -0.6386719, 1.7392578, 0.4946289, -0.01084137, 2.2910156, 1.5380859, -1.1162109, 0.31030273, 2.2675781, 0.5395508, 2.109375, 1.2285156, 0.6230469, 0.9404297, -2.4902344, -2.3691406, 0.81689453, 0.44262695, -0.03225708, -0.9501953, 1.9902344, 3.9667969, -0.3310547, -2.2890625, 3.2480469, -2.4101562, 1.7568359, 2.3847656, 0.1887207, -1.140625, 0.0056419373, 2.9980469, 0.07556152, -1.46875, 0.7890625, -3.2675781, -0.16638184, 0.17321777, -3.2851562, 0.80615234, -0.74902344, 0.15258789, -0.2590332, -2.2148438, 0.95214844, -0.15917969, -1.1123047, 1.609375, -1.7900391, 1.8076172, 2.5351562, 0.0048599243, 1.3847656, 0.84228516, -2.140625, 0.4831543, -0.31103516, -1.2890625, 1.0957031, 0.47045898, -0.31079102, 0.46313477, -0.74560547, 2.7949219, -1.8925781, -3.3789062, -0.6850586, 0.022338867, -3.703125, 1.6201172, 0.1743164, -1.9179688, 1.3535156, -1.1474609, 2.671875, -2.1445312, -2.1191406, 0.8652344, 0.97021484, 0.20422363, 0.09503174, 0.26611328, 0.6772461, 0.30981445, -2.375, 0.115112305, -0.29296875, -0.12261963, -0.46362305, 0.29589844, -0.9267578, -0.49023438, -0.13879395, -0.86035156, 0.9682617, -0.22644043, -2.0664062, 1.5068359, -3.4257812, 0.49316406, -3.8886719, -0.60498047, 0.27270508, -0.14111328, -3.1640625, -1.78125, 1.3486328, -0.053131104, 4.484375, -1.0341797, 0.31396484, -0.4501953, -1.0761719, 1.3789062, -0.6386719, -2.4550781, -1.5097656, 0.7939453, -0.43188477, -2.7519531, -2.7402344, -1.5605469, 0.23706055, 0.6088867, -0.42114258, 0.47705078, -1.5957031, 1.6230469, -3.1171875, 0.26416016, -0.6489258, 1.4667969, -1.1484375, -0.1451416, -2.0429688, 0.06750488, -0.65283203, -0.030334473, -1.0283203, 0.05432129, 0.3623047, 0.70410156, 0.13916016, -0.30004883, 2.1992188, -1.3544922, -4.5742188, 2.1113281, 1.5195312, -1.328125, 3.0566406, -2.2929688, -2.796875, -4.28125, -2.2265625, 2.3242188, 1.5253906, 1.8574219, -1.8076172, -1.1318359, 1.5595703, -0.059295654, -1.203125, 0.61865234, -1.8691406, 4.0234375, -2.0292969, -2.9746094, 1.0966797, 2.6171875, -3.8125, -2.0410156, 1.84375, 0.88671875, 1.1796875, 4.1679688, 0.85498047, 0.55126953, -0.21044922, 1.5693359, 2.5234375, -0.19152832, -2.0800781, -0.29516602, -0.5966797, 1.5917969, 1.8417969, 0.19995117, 0.640625, 1.609375, -0.012390137, 2.1796875, -1.8154297, 0.75439453, 0.16564941, 0.32836914, 1.7558594, 2.8046875, -0.55078125, 0.43847656, -0.8535156, -0.41870117, 1.2412109, -0.7451172, -0.4008789, 2.2988281, 0.73046875, -0.41723633, 0.7001953, -0.28979492, 1.1777344, -0.66748047, 1.0244141, -1.3349609, -0.29541016, 1.5908203, -3.1503906, -2.1601562, -2.1484375, 3.1425781, -1.7861328, -2.4121094, 1.9619141, 4.0820312, -0.87158203, -2.8066406, -2, 0.14892578, -0.048675537, 2.578125, 1.09375, -1.3691406, 0.40185547, 0.08734131, 1.4287109, 1.8701172, -0.47705078, -1.3525391, -1.09375, 6.9737434e-05, -0.1697998, 0.23364258, 0.7915039, 0.48486328, -2.2363281, 1.0244141, -3.8496094, 1.8173828, 0.37353516, -1.8378906, -0.45092773, 3.5351562, 0.50390625, 0.8828125, -0.067871094, 3.8457031, -1.390625, 0.34936523, 1.0722656, -1.1503906, 0.34350586, -2.5878906, -2.5898438, 0.7573242, -2.546875, -0.6430664, 2.4414062, -0.3359375, 0.20397949, -0.1081543, 1.2880859, -2.09375, -2.6171875, -2.8613281, -1.0595703, -2.0761719, 0.07800293, 0.8769531, -0.04196167, -2.5625, -2.7382812, -2.2636719, 0.22827148, 1.8085938, 2.4453125, -1.7050781, 0.54003906, -0.9511719, 1.1572266, 0.5576172, -0.24072266, 1.0673828, -0.26049805, 0.56396484, -4.3515625, 0.3256836, 2.4023438, 0.27490234, 2.5332031, 0.57373047, 0.57910156, -2.4550781, 1.7001953, 1.8320312, 0.53515625, 0.25732422, -1.1445312, -0.20471191, -0.8417969, -0.49414062, -0.58203125, -0.065979004, 0.066711426, -1.8876953, 1.8662109, 1.0869141, 2.7148438, 0.0044555664, -0.39892578, -2.4414062, 1.4111328, 0.46655273, -2.34375, -2.3691406, -0.80078125, -0.4963379, -1.6806641, 0.28979492, -1.65625, -1.6015625, -0.38134766, -1.0751953, -2.8046875, 2.5878906, 1.1689453, 2.71875, 1.234375, 1.7226562, -0.5761719, 0.49291992, -1.1591797, -1.7939453, 0.55859375, -0.6567383, -0.09313965, 0.77685547, 2.078125, -2.1152344, -1.7207031, 0.6171875, -3.0800781, -1.3320312, -2.0761719, 0.47973633, -2.8515625, 0.19702148, 1.2919922, -0.20861816, 3.2148438, -1.4228516, 0.79589844, 1.5419922, 0.13879395, -0.11541748, -0.035217285, -0.38427734, 1.4111328, 2.0058594, 0.79248047, -0.27294922, -1.2226562, 0.082458496, -1.4638672, 1.8046875, -2.0351562, -0.12030029, 2.3886719, -0.8208008, -1.6621094, -1.0224609, 0.6977539, 1.2304688, 0.7319336, 3.3398438, 1.0771484, -1.3369141, 0.00067424774, 0.33447266, -1.4990234, 0.45288086, -0.2836914, 0.2956543, 2.1933594, -0.74902344, -3.8339844, 0.13220215, 2.4003906, 0.07067871, 1.0556641, 0.74658203, -0.20251465, -0.8120117, -3.0527344, -0.71728516, 0.24255371, -0.57128906, 1.2607422, -1.8964844, -0.22619629, -1.9931641, 1.625, 2.7714844, -0.54541016, -1.0390625, 2.0683594, -2.0625, 0.4650879, -1.7861328, -1.4111328, -3.3222656, -1.3320312, 2.1816406, 0.6269531, 0.8671875, 0.5410156, 1.3759766, -2.1132812, -0.6899414, -2.4589844, 2.4882812, -1.9257812, -1.6582031, 0.6352539, -1.6357422, 0.5058594, -1.5859375, 0.07733154, -0.79003906, 2.7421875, 1.2792969, -0.45776367, -0.8486328, 1.2011719, -2.1679688, -3.3515625, -1.5693359, -0.13427734, 0.06213379, -0.27734375, 3.3652344, -1.9785156, -1.375, -0.20874023, -1.6621094, -1.0361328, -0.4963379, -0.52246094, -0.9086914, -0.22338867, 1.03125, -0.4033203, 1.5488281, 1.6621094, 2.2519531, -0.2220459, -3.6386719, -2.5507812, 1.2392578, -0.77197266, 1.1806641, 0.51123047, 0.12512207, -1.1152344, -1.0878906, 0.9355469, -0.74365234, 2.7695312, -1.2832031, -0.46655273, 1.5166016, -1.6630859, -0.61621094, 1.0449219, -2.1113281, 1.3544922, -0.64501953, 2.796875, 0.65966797, -0.2993164, -1.5, 1.9111328, 0.52441406, 0.20996094, 1.3408203, -0.81152344, 2.859375, 0.65283203, -0.4501953, -1.6357422, -1.4716797, -2.65625, 0.5048828, -1.7519531, -1.1914062, -2.3671875, 2.7246094, 1.0087891, 1.7666016, 0.35766602, 0.97509766, 0.7138672, -0.99902344, 1.0517578, -0.11029053, 3.2753906, 2.5195312, 0.23803711, -2.6328125, -0.16247559, -0.63378906, 0.42236328, 1.8896484, -0.83691406, -1.0751953, -1.4394531, -0.15881348, -0.5332031, 2.6699219, 1.5703125, 1.9228516, -1.1523438, 1.9501953, 4.3710938, -0.19555664, -0.54833984, 0.56591797, 2.6347656, -1.8388672, 2.8183594, 0.10046387, -2.9589844, 1.6347656, -1.8818359, 1.3574219, -1.1259766, -0.63378906, 0.4699707, -1.390625, -1.4306641, -1.9892578, -1.0410156, -2.2929688, 2.9101562, 0.017684937, -2.046875, 1.2099609, 2.0605469, -1.1025391, 2.0527344, 1.8759766, 0.59277344, -0.14807129, 1.4628906, -0.18139648, -1.2626953, 1.2792969, -3.0332031, 3.9355469, -0.16772461, -0.37353516, 0.6435547, 2.8183594, 0.42358398, 4.5351562, 2.4472656, 2.1425781, 3.4023438, 0.7788086, 3.8378906, 0.39501953, -0.09515381, -0.23217773, -0.8198242, 0.60253906, 3.1621094, 2.4296875, -0.2121582, -1.4472656, 0.23986816, -0.72753906, -1.0869141, -1.53125, 0.97558594, 0.3010254, -3.9433594, 1.8652344, 1.6611328, 0.56884766, -1.6044922, 0.30615234, 0.8378906, 0.3623047, -1.5322266, 0.34155273, 1.7568359, -1.453125, -0.016525269, -2.046875, -0.11138916, 2.3554688, -1.453125, -0.8720703, -1.1074219, -1.4853516, -1.3085938, -0.27612305, 1.4394531, 0.5810547, 1.0859375, 1.6582031, 0.1381836, -0.1862793, -0.17163086, -0.5527344, -0.034362793, 1.5263672, 2.8476562, -0.06311035, -1.1943359, 1.6445312, -1.2275391, -1.6943359, -4.03125, 1.6484375, 0.14135742, 1.5595703, 1.6611328, -2.0898438, 1.3574219, 1.3964844, 2.2363281, -1.3740234, 1.6513672, -1.6669922, -1.1982422, -0.92871094, 0.84814453, 1.5068359, 2.9003906, 1.6445312, -1.484375, 1.6904297, 0.22473145, 2.3984375, -1.0507812, 0.10290527, 1.2753906, 1.8603516, -1.140625, 2.2109375, 0.3461914, 1.5322266, -0.4855957, 1.5419922, 2.4667969, -0.78222656, -0.86621094, -1.2929688, 0.8154297, -0.038879395, -0.4333496, -0.72265625, -2.3828125, -1.2919922, 1.28125, 0.16174316, -0.5957031, -0.9355469, 1.2607422, 2.4882812, -2.1542969, 1.3955078, 2.3945312, 1.5585938, 2.53125, -1.421875, -1.7431641, -1.4677734, 0.1262207, 1.2939453, 0.6328125, -1.7158203, 0.94628906, 1.2861328, -0.13317871, -0.48364258, 0.68115234, -1.171875, -0.3474121, -2.1914062, 1.8916016, -0.50097656, -1.0058594, 0.24841309, 0.049468994, 0.27294922, 1.9902344, -0.67578125, -0.3190918, -0.95410156, -2.1230469, 0.26123047, -2.4785156, -0.17810059, 0.8149414, 4.0195312, 1.1269531, 1.7607422, -1.890625, -2.0839844, -2.4648438, 0.028778076, 3.3613281, 0.1751709, -1.6699219, 0.296875, -0.017684937, 1.1171875, -1.0742188, -0.44018555, -0.074279785, -0.76416016, -0.14904785, 0.27612305, 0.72753906, 1.5664062, -0.51708984, -0.14221191, 1.9179688, 1.6972656, 2.7421875, 1.2148438, -1.6025391, 0.6484375, -2.4335938, 0.31762695, 0.8774414, -1.4072266, -1.8535156, 2.1972656, 3.0996094, 1.6035156, -0.50878906, -1.8847656, -1.8056641]}, "B01HITNEEE": {"id": "B01HITNEEE", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black\nDescription: \nFeatures: 360 square inches of cooking space over porcelain-coated grates. Convectional cooking system\n170 square inch porcelain-coated swing-a-way rack for warming\nThree stainless steel in-line burners for cooking performance\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\n", "embedding": [-2.1464844, 0.7714844, 1.6972656, 0.12438965, -0.36572266, 0.49902344, 0.40625, -1.1816406, 0.6821289, 1.375, 1.0097656, -0.32055664, 1.40625, -2.1328125, 1.390625, 0.63134766, 0.4633789, 1.4111328, 0.8828125, 0.28710938, 0.3942871, 1.5722656, 1.1542969, -1.2470703, 0.04837036, 1.2412109, 3.4589844, -3.1816406, 0.40185547, -0.96435547, 2.2636719, 0.20458984, 0.6113281, 2.4824219, -2.9863281, -1.4990234, -1.3447266, 1.1738281, -1.7958984, 1.5107422, -0.051116943, -0.6621094, 2.0703125, 0.41674805, -2.5683594, 0.18115234, 0.56933594, 1.2490234, -1.78125, -0.10748291, 2.1230469, 1.3984375, -0.27246094, 0.52734375, -0.7631836, 2.9726562, 1.2646484, -0.84228516, 1.4560547, 1.0458984, 1.3046875, 0.13146973, -2.4746094, 0.33813477, -3.2949219, 0.3671875, 0.0072021484, 0.46435547, -0.734375, -0.032989502, 1.8876953, -0.2932129, -1.6025391, 0.44677734, 1.0810547, -0.09838867, -2.5078125, 1.8496094, 0.88964844, -0.50439453, -1.4755859, 1.9492188, 0.7939453, -1.09375, 0.36816406, -0.9042969, -0.27514648, -2.2890625, 1.4257812, 0.28173828, 0.47851562, 1.7558594, -1.34375, -3.8320312, 2.4082031, -1.1132812, 0.8383789, 0.11975098, -0.47265625, 1.4550781, -0.46264648, -0.046691895, -1.5048828, 0.06567383, -3.3125, -0.90771484, 0.7705078, 0.76464844, -2.9902344, 0.76708984, -1.6201172, 0.90234375, 1.5322266, 1.1816406, 1.9199219, 1.4316406, 0.4243164, 1.8085938, 1.0019531, 0.3869629, 3.4160156, 0.34106445, 0.6010742, -0.61376953, -0.77490234, 0.101745605, -0.83251953, 2.0410156, 4.9140625, -2.3027344, -0.9423828, -1.1728516, 2.578125, -0.7421875, -2.4414062, -1.3300781, -1.4814453, -0.9086914, -3.6425781, 0.44311523, -2.0527344, 0.8544922, 0.57373047, -0.6459961, -3.0820312, -1.3652344, 0.75439453, 2.0371094, 0.08074951, -1.5625, 0.17980957, -2.7246094, -0.017700195, -1.4833984, 0.5463867, -0.3605957, -1.546875, -1.96875, 3.2753906, -0.06311035, 0.0070610046, -2.9921875, -0.57958984, 1.4433594, 0.10333252, 0.34375, -0.40307617, 0.49951172, 0.87158203, 0.9321289, 0.27490234, -1.0742188, 0.8823242, -0.5317383, 0.2783203, -0.43652344, -0.69384766, 1.7568359, 0.42236328, -0.18017578, -1.1601562, -2.2871094, 0.4560547, 0.26342773, 0.5991211, -1.5058594, 0.75927734, 0.92822266, 0.85009766, -0.5366211, 0.6582031, 0.40625, 0.42504883, 1.65625, -0.8334961, -1.4658203, -0.11871338, -0.09246826, 0.31958008, 0.4814453, -1.3486328, 0.16113281, 0.19580078, -0.052215576, -1.9550781, -3.984375, 0.22753906, -1.7207031, 2.1523438, 1.8242188, 1.8583984, -1.609375, 0.9980469, -1.1298828, 1.1289062, -2.78125, 1.4160156, -0.87646484, 2.6171875, 1.6220703, -0.43652344, 0.17480469, 0.39575195, -0.029052734, -0.14025879, 1.4609375, 0.83447266, 1.15625, -2.3105469, -1.0947266, 1.5107422, 0.34448242, 0.55078125, 0.40771484, 0.17834473, 1.3193359, 0.57421875, -1.1992188, -0.32910156, -1.0009766, -1.2001953, 0.49951172, -0.9067383, -2.2890625, 1.1542969, 1.5957031, -2.7050781, 2.4003906, 1.8261719, 1.3203125, -1.2578125, -1.1523438, 0.08502197, 0.01260376, -0.9003906, 0.7080078, -1.015625, 1.0322266, -0.5703125, -1.765625, 0.1875, -0.1071167, -0.1920166, -0.105285645, 1.4316406, -1.4111328, 2.5058594, 1.6347656, -1.3417969, -1.2695312, 1.1132812, 0.48217773, 1.7324219, -0.77685547, 1.7646484, 1.7998047, -0.70947266, 3.8984375, -0.56396484, 1.4453125, 1.9101562, -0.28588867, 2.0390625, -2.140625, -0.76904297, 1.0898438, 0.6176758, -1.4882812, -0.22790527, 0.59765625, 5.4804688, -1.1738281, -2.046875, 3.5800781, -0.7050781, -0.1472168, 1.4726562, -0.85302734, -2.0546875, 0.6352539, 3.3398438, 0.26757812, 0.9580078, 1.1650391, -1.9873047, -0.84521484, 0.8696289, -0.78271484, -1.6044922, 0.57470703, -0.30737305, -0.7236328, -1.2685547, -0.07696533, -1.8349609, -0.40722656, 2.8789062, -1.6201172, 1.5, -0.24902344, 1.9404297, 1.1132812, -0.1751709, -2.3535156, -1.0839844, 1.1171875, -2.015625, 0.17785645, 0.07446289, -0.61621094, -0.54248047, -0.7421875, 0.2722168, -1.4082031, -2.5410156, -0.85595703, -1.9648438, -3.0371094, 0.12310791, -1.9941406, -0.68310547, 1.1669922, -2.6035156, 0.6035156, -1.2441406, -3.4941406, -1.0390625, -1.6142578, -0.90478516, -0.3395996, 0.60058594, 0.33081055, -0.55908203, -4.90625, 0.21984863, 0.5649414, -0.16540527, -0.16320801, -2.0097656, -0.9042969, 0.9213867, -0.35839844, -1.3291016, 0.6503906, 1.0078125, -1.9873047, -0.33691406, -2.6132812, 0.58203125, -2.7226562, -0.0927124, -1.4003906, 1.1376953, -3.9746094, -1.3935547, -1.3398438, -2.0078125, 5.421875, 0.25170898, 0.5253906, 1.40625, 0.06088257, 1.6875, -0.27954102, -2.9003906, -0.6113281, 0.36254883, -0.8803711, -3.3828125, -3.1210938, 0.5805664, -1.1308594, -0.28125, -1.4394531, 0.47583008, -0.9560547, 0.97021484, -2.7402344, -1.34375, -0.5229492, 0.15441895, -0.023269653, 0.5180664, -1.4003906, -0.4375, -2.1484375, -0.6772461, -0.46118164, 2.1835938, -0.43408203, 2.359375, 1.7998047, -1.0205078, 0.99072266, -1.2753906, -3.3339844, 3.3554688, 1.0644531, -1.9140625, 1.390625, 0.10424805, -3.0878906, -1.8847656, -0.98339844, 2.9824219, 2.0878906, 3.0039062, 1.2304688, 0.3828125, 1.3330078, 1.7099609, 0.8540039, -0.8071289, -0.15490723, 3.0039062, -1.9287109, -2.2734375, 0.37451172, 2.5214844, -2.0839844, -2.2558594, 3.1308594, 0.2775879, 1.7421875, 2.28125, 1.2900391, 0.13330078, -1.9140625, 3.4492188, 1.3125, -0.06518555, 0.3166504, 0.19848633, 0.16833496, 0.36499023, 0.28808594, 1.5810547, -0.6152344, 2.109375, 1.1279297, 0.1430664, -2.0683594, 0.58935547, -0.72558594, 0.11682129, -0.57470703, 1.3486328, 0.26586914, 0.9916992, 0.39697266, -1.4052734, 0.7324219, -1.6630859, -1.1162109, 1.7490234, -0.025939941, -0.042755127, 1.390625, 0.9428711, 1.3330078, 0.42797852, -0.34545898, -1.7636719, 0.03463745, 0.4104004, -0.4411621, -1.6455078, -1.2167969, 0.75341797, -2.1738281, -2.6328125, 0.49023438, 3.7304688, -1.5908203, -0.9794922, 2.2519531, 2, -0.33911133, 1.6162109, 0.43945312, -1.9365234, 2.2285156, -1.3007812, 0.045135498, -0.35375977, -1.1533203, -0.15881348, -1.4208984, 0.23132324, -0.35961914, 1.7558594, 0.8227539, 1.1464844, -2.5253906, 0.10882568, -2.4609375, -0.21508789, -0.06903076, -2.5292969, -0.9580078, 3.0742188, 0.5883789, 1.6201172, -0.71728516, 3.7578125, -0.5932617, -1.3183594, 2.515625, -2.1621094, 0.2939453, -2.8203125, -4.0898438, 1.6396484, -0.23156738, -1.1123047, 2.578125, 0.61328125, -1.1083984, 2.5703125, 0.03942871, -2.9960938, -1.1152344, -1.4628906, -0.29418945, -0.79003906, -1.4472656, 0.6640625, 0.4892578, -2.7304688, -1.671875, -0.19506836, -0.3803711, 1.3388672, 1.9697266, -1.7666016, 0.17749023, -1.7783203, 1.203125, -0.7885742, -0.5942383, 0.49291992, -1.1601562, -0.08099365, -3.3046875, 1.3691406, 1.7246094, -0.8227539, 2.2734375, 2.1855469, 0.625, -1.2792969, -0.8989258, 1.5039062, 3.0195312, 0.28808594, -3.0722656, -3.0664062, 0.32983398, -1.1308594, -0.77783203, 0.21911621, -1.3730469, -1.8105469, -1.25, 1.6054688, 0.72802734, 1.5390625, -0.19824219, -2.2285156, -0.46679688, -0.113708496, -0.75146484, -0.27490234, -0.3642578, 0.18737793, 0.3425293, 0.68652344, -2.8417969, 1.9423828, -1.7636719, -0.35888672, -2.171875, 3.4863281, 1.2675781, 2.1796875, 3.0605469, -0.6508789, -0.23120117, -0.61083984, -0.8383789, -0.50683594, 1.5986328, -0.96533203, 1.5839844, -0.49072266, -0.17626953, -2.7324219, -0.14501953, 0.9868164, -1.8271484, -0.3527832, -1.5673828, -0.3659668, -1.6113281, -0.77783203, 1.6552734, -1.15625, 2.8515625, -1.0683594, -0.33666992, 0.13903809, 1.6494141, -0.40893555, 0.26464844, -0.71972656, 0.7114258, 0.7294922, 1.0019531, 0.20910645, -1.3242188, 0.4465332, -1.7177734, 1.5292969, 0.21435547, 0.44311523, 1.0820312, 0.1418457, -0.71435547, -2.2324219, 2.2617188, 3.6425781, -0.26757812, 4.3828125, 1.8359375, -3.4765625, 2.8769531, 0.70410156, -3.7246094, -1.0830078, -0.5605469, 0.3852539, 1.2119141, -0.4963379, -5.2070312, 0.037139893, 2.1347656, -0.765625, 0.8989258, 0.8754883, -1.8857422, -0.86376953, -2.4003906, -0.61035156, -1.2080078, -0.16137695, -0.33911133, 0.013687134, -0.26708984, -2.6777344, 1.3369141, 3.7734375, -0.9326172, -1.2441406, 2.2421875, -0.5996094, 1.0400391, -0.21691895, -1.5400391, -1.0986328, 0.4267578, 3.1035156, 0.27294922, 2.3027344, 0.32055664, 2.4960938, -3.1835938, 0.14086914, -0.84228516, 4.2304688, -1.8535156, 0.44262695, 1.5966797, -3.234375, 1.2617188, -2.375, 1.0703125, 0.39379883, 3.34375, 1.6083984, 0.40771484, -0.64208984, 0.34106445, -1.4296875, -3.8242188, -1.3896484, 0.18481445, 0.09539795, 1.0439453, 1.1464844, -1.0517578, 1.75, 0.2956543, -0.9536133, -1.2763672, -0.14880371, -1.6738281, -0.88916016, -0.9814453, 0.39697266, -0.5107422, 0.72509766, 1.3789062, 0.022003174, 0.7495117, -2.5449219, -0.78125, 2.1816406, -2.3925781, 1.2753906, 2.5527344, 0.55566406, 1.1503906, 0.984375, 1.4023438, -1.5292969, 3.3125, -0.921875, 0.31933594, 0.44311523, 0.015174866, 0.105529785, -0.88378906, -0.9794922, -0.3527832, -0.09039307, 2.0078125, 0.95410156, -0.43310547, -0.703125, 0.2614746, -1.0527344, -0.7939453, 0.9291992, 1.0253906, 2.1621094, 0.97753906, -3.1992188, 0.12310791, -0.6166992, -1.5341797, -0.3918457, -2.5351562, -0.6713867, -1.3740234, -0.35302734, 1.1044922, -0.8676758, 0.19689941, 0.6279297, 0.16723633, -0.47314453, -0.8515625, -2.2363281, 3.1386719, 2.2519531, 0.07397461, -0.8588867, -0.14990234, 1.6357422, 2.34375, 0.89697266, -1.7490234, 0.5019531, -1.9179688, 0.41601562, 0.43139648, 0.70458984, 1.3710938, -0.5126953, -1.1982422, -0.093933105, 3.3046875, 0.9194336, 0.5131836, 1.3310547, 1.4619141, -1.1933594, 4.1054688, 1.0585938, -2.6757812, 2.6464844, -2.4941406, 1.3398438, -0.08343506, -0.73095703, 0.8339844, -2.0410156, -2.15625, -2.4140625, -1.015625, -2.4023438, 2.5117188, 0.3544922, -2.7382812, 0.3623047, 0.5932617, -1.1523438, 2.7773438, 1.046875, 1.2558594, 0.04058838, -0.2697754, -1.0957031, -0.30737305, 1.5488281, -3.7910156, 1.4550781, 0.8071289, -1.5888672, -0.11010742, 3.1621094, 1.71875, 2.1230469, 2.4453125, 1.671875, 2.8574219, 2.0214844, 1.8535156, -0.19726562, 2.4121094, 2.2421875, -1.9794922, 1.4326172, 1.9511719, 2.3203125, 0.83154297, -1.6279297, 3.0351562, -1.0361328, -2.3144531, -0.059570312, 0.13586426, 0.37158203, -2.5019531, 1.6494141, 1.3769531, -0.46948242, -2.0429688, -0.9375, -0.89208984, -0.53125, -0.8334961, -0.5336914, 3.6757812, -0.9033203, 0.52490234, -0.3076172, 1.640625, 0.93310547, -3.7539062, 0.43676758, 2.2519531, -1.2216797, -0.13781738, -0.85839844, 0.6401367, 0.3984375, 0.69140625, 1.4824219, 2.0019531, 1.7509766, 0.5600586, -0.74853516, -0.33422852, -0.33251953, 1.5517578, -1.046875, -2.4238281, 1.0585938, -2.2128906, -3.0742188, -4.09375, 2.2246094, 0.9663086, 2.3144531, 1.65625, -1.5966797, 2.8847656, 0.7915039, 1.4833984, -2.3007812, -0.17297363, -0.36401367, -3.8652344, -2.390625, -0.28100586, 0.05630493, 2.7382812, 0.7548828, -1.4785156, 1.2177734, 0.80859375, 2.7324219, 1.3300781, 1.4101562, 0.54052734, 0.8305664, -0.19360352, 2.0039062, -0.7866211, -0.39697266, -0.87109375, 1.3847656, 1.5234375, -0.33813477, 1.0244141, -1.8447266, -0.33544922, -0.33276367, -0.21069336, -0.16760254, -2.5253906, -1.6611328, 0.1965332, 0.2446289, -1.2900391, -1.1445312, 2.8222656, 0.4013672, -0.921875, 0.5205078, 2.0117188, -0.81103516, 2.0117188, 1.6523438, -0.14953613, 1.1230469, -0.83691406, 1.1435547, 0.11853027, -1.484375, 0.3125, 1.6142578, 0.5917969, 0.54248047, -0.14709473, -0.0021896362, -1.4746094, -0.027328491, 0.025802612, -1.84375, -1.5058594, 2.03125, -0.27490234, -0.020401001, 2.3164062, -0.66748047, 0.3466797, -2.7871094, -0.032592773, -0.86816406, -0.91503906, -0.49389648, 1.7861328, 3.28125, 1.0615234, 0.23083496, 0.20751953, -2.9042969, -1.5947266, -1.6503906, 2.0839844, -0.6010742, -0.3642578, 0.81396484, 0.21435547, 1.8261719, -1.5595703, -2.0800781, 0.5839844, -2.3632812, 1.7138672, 0.25317383, 1.2568359, 1.4453125, 1.4335938, 0.9711914, 0.3083496, 1.7949219, 0.58691406, 0.96435547, 2.5214844, 1.2460938, -1.2773438, 1.2705078, -0.5551758, 0.8676758, 0.042022705, 0.35595703, 1.1474609, 0.6088867, 0.5878906, -1.2402344, -3.6933594]}, "B07BLHC2G2": {"id": "B07BLHC2G2", "original": "Brand: Coleman\nName: Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red\nDescription: \nFeatures: COOKING POWER: Up to 11,000 total BTUs\n2 ADJUSTABLE BURNERS: For better temperature control\nLARGE GRILLING AREA: 225 sq. in.\nEASY SETUP: Sturdy quick-fold legs and wheels\nPUSH-BUTTON IGNITION: For matchless lighting\n", "embedding": [-1.5185547, 0.24108887, 1.3115234, 1.265625, -1.2734375, -0.55908203, 1.1201172, -0.68359375, -1.4189453, 1.3066406, -0.07293701, -0.6435547, 0.7050781, -3.7109375, -0.40600586, 0.43432617, 0.99316406, 2.0449219, -0.3461914, -0.29467773, 2.0957031, -0.3425293, 1.3886719, -0.5239258, -0.116882324, 0.09954834, 4.0820312, -4.6171875, -0.44311523, -0.5283203, 1.8945312, -0.14477539, -0.32080078, 2.2382812, -2.3769531, -1.3652344, -2.8007812, 1.6142578, -2.2910156, 0.13000488, -1.3046875, -0.5942383, 1.3984375, 0.6538086, -0.75634766, -0.37231445, 1.9345703, 0.95654297, -0.39697266, -1.3798828, 1.9287109, 0.9350586, -0.19042969, -0.3125, -0.36987305, 0.6796875, 0.85546875, -0.64941406, 0.9838867, 0.18017578, 1.7226562, -0.62109375, -2.171875, 0.8432617, -1.125, -0.000957489, 0.5214844, -0.0038814545, 0.32592773, -1.1591797, 3.7519531, 0.2211914, -2.7304688, -0.41845703, 0.017852783, -0.32250977, -3.2109375, 0.046173096, 0.60058594, -1.2753906, -1.1796875, 1.8085938, 0.5473633, -1.1552734, -0.67333984, 0.6977539, -1.2832031, -1.0683594, 1.8369141, 1.4082031, -0.50878906, 1.6396484, -2.2441406, -4.1523438, 0.65625, -0.4892578, 0.68603516, 0.8222656, -0.38305664, 0.6591797, -0.99072266, 0.13696289, -2.0507812, -1.0224609, -3.125, -0.60546875, 2.5742188, -0.22302246, -1.9951172, 2.8964844, -2.5976562, -1.9375, 2.5605469, 1.4287109, 0.43530273, 0.12854004, -0.6088867, 1.9248047, 2.8164062, 1.8701172, 4.2929688, -0.36816406, 2.4941406, -0.6147461, -1.3183594, 1.7822266, 0.6899414, 1.4296875, 3.4882812, -0.69677734, -0.031204224, 0.43310547, 2.7441406, -0.12200928, -2.953125, -2.359375, -1.5537109, -1.1982422, -3.7285156, -0.48632812, -0.9057617, -0.10632324, 3.1035156, 0.26342773, -4.4765625, -0.35913086, -1.3466797, 1.0820312, -0.52246094, -0.9707031, 0.44726562, -1.5419922, -0.39575195, -0.055480957, 1.8876953, 0.33813477, -1.1845703, -1.3671875, 4.3320312, 0.12792969, 1.0888672, -1.0234375, -1.5185547, 0.24658203, 2.3671875, -0.103393555, -0.6298828, 0.94628906, -0.70654297, 1.4863281, 0.35913086, -3.1269531, 1.0634766, 1.0546875, 2.140625, -1.8310547, -0.3942871, 2.8300781, 0.06298828, -0.13513184, -1.8652344, -1.6923828, 0.75683594, 0.23840332, 0.55615234, -0.7011719, -0.5834961, -0.62060547, 0.6040039, -1.0009766, 1.6494141, -0.27612305, 0.23120117, 0.38256836, -1.2128906, -0.6845703, -0.70996094, -0.67871094, 1.6445312, 1.6669922, -0.25219727, 0.61865234, 0.07696533, 1.2939453, -1.4863281, -2.5957031, -0.9863281, -2.2695312, 0.37426758, 0.88378906, 2.7402344, 0.026809692, 2.1699219, -1.7060547, -1.0957031, -3.0566406, 1.3515625, 0.16455078, 2.234375, 2.7714844, 0.8876953, -0.74853516, -1.2275391, 0.8198242, -0.6196289, 2.0625, 0.10614014, 0.27246094, -0.80371094, -0.62109375, 2.7011719, 2.2636719, -1.8408203, -0.05227661, 0.53759766, 2.0195312, -0.13635254, -1.3037109, -1.1689453, 0.33007812, -0.9609375, 1.2832031, -0.19250488, -1.8759766, -0.09124756, -0.6425781, -1.3984375, 2.5585938, 2.3535156, 0.4194336, 0.044799805, 0.6801758, -1.0683594, 2.5253906, -0.12963867, 2.0722656, -0.6347656, 0.7109375, -1.6679688, -2.2167969, 0.53808594, 1.7880859, -0.84228516, 0.03390503, 0.53564453, -0.23718262, 2.4746094, 1.6328125, -2.1347656, -0.8613281, 1.2490234, 0.30981445, 0.8486328, 1.9804688, 1.7226562, -1.2294922, -0.33569336, 2.1699219, 0.7192383, 2.4746094, 0.90185547, 0.3232422, 1.7050781, -2.2753906, -2.359375, 0.77246094, 0.10418701, -0.2019043, -1.109375, 1.1201172, 3.7382812, 0.42260742, -2.4355469, 3.9707031, -2.9199219, 1.2646484, 0.8774414, 0.17358398, -1.0507812, -0.22058105, 2.59375, 0.18640137, -1.1347656, 2.3769531, -4.015625, -0.59277344, -0.5996094, -3.234375, 1.1230469, -0.46289062, 0.03274536, -1.2177734, -2.2773438, 0.8154297, -0.92871094, -0.89208984, 1.6523438, -2.2753906, 0.67626953, 2.9238281, 0.15844727, 0.5151367, 0.9091797, -0.88964844, -0.60791016, -0.38110352, -1.9794922, 1.2216797, 1.0429688, -0.56103516, 0.23010254, -0.46118164, 1.9189453, -1.7626953, -3.3085938, -0.36938477, 0.049102783, -3.5605469, 2.0136719, 0.16711426, -2.2109375, 1.1152344, -1.1210938, 2.7050781, -2.2265625, -2.75, 0.43286133, 0.3857422, 0.33447266, -0.36767578, 0.39453125, 0.79345703, 0.38378906, -3.6445312, -0.21679688, -0.14624023, -0.21057129, -0.40478516, -0.13635254, -1.2197266, 0.36376953, 0.15966797, -0.51953125, 0.51708984, -0.6376953, -2.6328125, 0.27270508, -3.0546875, 0.5395508, -3.5292969, -0.24560547, 0.5620117, 0.58251953, -3.0800781, -1.3974609, 2.1464844, 0.5151367, 5.7695312, -0.6538086, 1.1474609, 0.14465332, -0.7426758, 1.3095703, -1.1357422, -2.6445312, -0.6254883, 0.76904297, 0.12011719, -2.5546875, -3.2050781, -0.9716797, -0.060272217, 0.09222412, -0.26586914, 0.28808594, -1.6826172, 0.9995117, -1.8525391, 0.32373047, 0.22875977, 1.1259766, -1.0205078, -0.67871094, -1.4248047, -0.43408203, -1.1484375, 0.09698486, -1.1289062, 0.36767578, 0.49853516, 0.39575195, 1.1806641, -0.14782715, 1.5927734, -0.5703125, -4.4765625, 2.8671875, 1.5322266, -0.6777344, 2.5195312, -2.0605469, -2.6054688, -4.5234375, -1.4296875, 1.9658203, 2.2519531, 2.2441406, -0.5136719, -0.6738281, 1.0703125, 1.4169922, -1.0966797, 0.48461914, -1.1689453, 4.2304688, -1.4580078, -2.6757812, 0.84228516, 2.3027344, -3.8164062, -2.609375, 0.98583984, 0.5517578, 1.9511719, 3.4726562, 1.5634766, 0.04272461, -0.48779297, 1.1152344, 2.4746094, -0.11218262, -1.0888672, 0.8129883, -0.6972656, 1.9433594, 1.7636719, 0.37719727, 0.15246582, 0.9970703, 0.67333984, 2.5449219, -0.8227539, 1.1914062, 0.31152344, 0.12658691, 2.2734375, 2.5683594, -0.83691406, -0.30981445, 0.21386719, -0.62597656, 1.0664062, -0.096069336, -0.33129883, 2.8398438, 0.69677734, -0.5361328, 0.14160156, 0.071777344, 1.3652344, -0.80322266, -0.25268555, -1.5039062, -0.20776367, 0.58984375, -3.0761719, -2.0664062, -2.390625, 2.5859375, -0.62890625, -2.5996094, 1.4003906, 4.0585938, -0.88378906, -2.6035156, -1.765625, 0.98339844, 0.43432617, 2.0878906, 1.3798828, -1.4326172, 1.2509766, -0.24780273, 1.7460938, 2.3828125, -1.0253906, -1.0107422, -1.5195312, -1.0869141, -0.41870117, 0.41064453, 1.8115234, 0.47851562, -2.5175781, 1.1123047, -3.6992188, 1.0673828, 0.49682617, -1.6220703, -1.171875, 3.1660156, 0.0871582, 0.63427734, -0.40185547, 3.625, -1.0419922, -0.1586914, 1.4423828, -0.41088867, -0.5131836, -2.6347656, -2.6621094, 1.3984375, -0.8046875, -0.76464844, 2.8203125, -0.78271484, -0.36547852, 1.2744141, 0.67285156, -1.4902344, -2.6621094, -1.8183594, -0.7236328, -1.3886719, 0.5283203, 0.8876953, -0.114990234, -2.2988281, -1.9326172, -1.8935547, 0.18334961, 1.4892578, 2.6230469, -1.703125, 0.28637695, -1.5244141, 1.0732422, -0.08105469, -1.2988281, 0.86376953, 0.61865234, 0.24316406, -3.6933594, 0.5888672, 2.1074219, -0.103393555, 2.4296875, 1.5585938, 0.07055664, -2.1894531, 1.9091797, 1.5634766, 0.6713867, 0.18713379, -1.1308594, -0.32104492, -1.6123047, -2.0410156, 0.5234375, -0.03656006, -0.34106445, -1.7167969, 1.6972656, 1.0888672, 2.515625, 1.6835938, -0.060150146, -1.9902344, 1.375, 0.53564453, -2.8691406, -1.8066406, -1.4609375, -0.5629883, -1.546875, 0.7182617, -1.1142578, -1.6699219, -0.09094238, -1.4052734, -2.8164062, 1.765625, 1.1621094, 1.9042969, 1.8876953, 1.2441406, -0.06286621, 0.15368652, -0.55371094, -0.63720703, -0.34155273, -0.7163086, 0.5419922, 0.29541016, 2.3535156, -1.1894531, -1.7402344, 0.8432617, -3.2382812, -0.9814453, -1.9150391, 0.4111328, -2.4628906, 0.37573242, 0.045196533, -0.7084961, 1.9892578, -1.4658203, 0.64453125, 0.5053711, 0.45410156, 0.36743164, 0.52490234, -0.09063721, 1.3710938, 1.8251953, -0.14013672, -0.57177734, -1.3945312, 0.30908203, -1.3828125, 1.7597656, -1.7724609, -0.34838867, 2.234375, -1.7705078, -1.5595703, -0.50927734, 0.39086914, 1.6845703, 1.2890625, 3.0898438, 1.4326172, -1.2275391, 1.2333984, 0.73291016, -0.30322266, 1.0742188, -0.60791016, -0.08868408, 1.4472656, -1.7802734, -3.9355469, -0.24145508, 1.5732422, 0.029724121, 0.67041016, 0.01953125, 0.07342529, -1.1455078, -3.0839844, -0.37158203, 0.35351562, -1.7998047, 0.9472656, -2.0292969, -0.29223633, -2.1855469, 1.6484375, 2.1855469, -0.6826172, -1.0537109, 1.5830078, -1.4169922, 0.6738281, -1.4667969, -1.1142578, -3.5566406, -0.97265625, 1.2929688, 0.31152344, 0.40893555, 0.62353516, 0.8574219, -1.7900391, -0.24645996, -1.8925781, 2.2480469, -2.7382812, -0.81884766, 1.1464844, -1.7363281, 0.67041016, -1.9501953, 0.22766113, -0.26098633, 3.1503906, 0.9238281, -0.6513672, -1.0585938, 1.421875, -2.5078125, -3.1035156, -1.5908203, -0.38208008, 0.07055664, -0.030441284, 2.2636719, -2.4433594, -0.6904297, -0.00015556812, -0.38500977, -0.48339844, -0.37426758, -0.8613281, -0.7192383, 0.24780273, 0.40405273, -0.49975586, 1.4033203, 1.5292969, 1.859375, -0.26708984, -2.9316406, -2.7792969, 0.39648438, -1.890625, 1.0830078, 1.625, 0.014839172, -0.7036133, -0.74609375, 1.2529297, -0.5078125, 2.1328125, -0.8515625, -0.2824707, 1.4082031, -1.0546875, -0.41430664, 0.4375, -2.0214844, 0.64501953, -1.7011719, 2.6894531, 0.43432617, 0.6323242, -1.3984375, 1.5449219, 0.87646484, -0.29711914, 1.9951172, -0.63378906, 2.4863281, 0.79589844, -0.26586914, -0.91259766, -1.0673828, -2.6542969, 0.29418945, -1.4765625, -0.97998047, -1.9169922, 2.3632812, 0.78125, 2.5351562, 0.11633301, 1.1767578, 0.9970703, -0.6972656, 1.1513672, -0.20446777, 3.3242188, 3.0585938, 0.19055176, -2.0273438, -0.10510254, 0.13769531, 0.26611328, 1.7841797, -0.81884766, -0.91845703, -1.9599609, -0.15441895, -1.5322266, 2.1699219, 2.0253906, 1.609375, -0.64941406, 2.7304688, 3.5800781, -0.8310547, -0.8129883, 0.21862793, 2.8007812, -1.7226562, 2.7148438, -0.024429321, -2.3398438, 1.4277344, -2.0273438, 1.6103516, -0.6323242, -0.00982666, 1.3271484, -1.5820312, -0.94970703, -1.8994141, -0.31347656, -2.5566406, 2.0292969, 0.5415039, -2.2441406, 1.6523438, 1.9121094, -1.3359375, 1.6777344, 1.9482422, 1.3320312, -0.52001953, 0.8828125, -0.45092773, -0.71875, 1.8027344, -3.1601562, 4.296875, -0.22338867, -0.27246094, 0.7163086, 2.8007812, -0.5776367, 3.5214844, 2.484375, 2.3691406, 3.6074219, 1.7197266, 3.0117188, 0.7207031, 0.06781006, -0.22460938, -1.4238281, -0.022979736, 3.5664062, 1.9902344, 0.32617188, -1.8349609, 0.67822266, -0.76416016, -0.29370117, -1.1289062, 0.5864258, 0.19604492, -3.8808594, 2.3769531, 1.9853516, 1.9091797, -1.7607422, 0.67285156, 0.5053711, 0.030334473, -1.2675781, 0.47387695, 1.8857422, -1.5664062, 0.6826172, -1.0615234, -0.67529297, 2.1855469, -1.8974609, -0.46240234, -0.88427734, -1.3984375, -1.1757812, -1.1992188, 1.1328125, -0.07623291, 0.7939453, 1.1152344, 0.9165039, -0.41674805, -0.06188965, -0.19006348, 0.82714844, 1.3232422, 2.2050781, -0.52734375, -1.0947266, 0.5654297, -1.265625, -1.3095703, -3.5878906, 1.5703125, 0.32128906, 1.0585938, 1.8095703, -2.5800781, 1.4521484, 1.0761719, 1.6044922, -1.4726562, 2.6835938, -0.6220703, -1.7011719, -1.4472656, -0.26660156, 1.7646484, 2.6152344, 1.3671875, -0.8227539, 1.9140625, -0.20349121, 2.2519531, -1.0878906, 0.9477539, 1.0585938, 1.9775391, -1.578125, 1.7304688, -0.9272461, 1.1210938, -0.50927734, 1.0390625, 3.1230469, -0.68603516, -0.35302734, -1.2539062, 0.8457031, -0.058563232, -1.0234375, -1.5224609, -1.3076172, -1.3496094, 1.7402344, 0.5053711, -0.7915039, -0.28051758, 0.73339844, 3.3378906, -1.6787109, 1.8251953, 1.8203125, 1.2724609, 1.8222656, -2.2773438, -1.5478516, -1.4052734, 0.44018555, 1.3642578, 0.016860962, -1.1367188, 0.8725586, 0.98876953, -1.1210938, -0.11242676, 0.39282227, -0.6640625, -0.49047852, -1.8574219, 0.8022461, -0.72314453, -0.5810547, 0.7036133, 0.07928467, 1.0546875, 1.7890625, -1.0703125, -0.6220703, -0.57177734, -2.1855469, -0.53564453, -2.234375, 0.16784668, 1.7050781, 3.9355469, 1.0585938, 1.2460938, -3.1328125, -2.0683594, -2.3066406, -0.9067383, 2.84375, 1.3232422, -2.2382812, -0.2980957, 0.6435547, 1.6865234, -0.77978516, -0.69140625, 0.06530762, -1.25, 0.33984375, 0.14099121, 0.42626953, 1.3457031, -0.98876953, 0.06903076, 2.0859375, 1.3466797, 2.0371094, 1.1289062, -1.2685547, 0.26489258, -2.1699219, 0.4086914, 0.055145264, -1.046875, -2.1132812, 1.515625, 2.6738281, 1.6689453, -0.090148926, -2.1894531, -2.0097656]}, "B07NR9G7BC": {"id": "B07NR9G7BC", "original": "Brand: Masterbuilt\nName: Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel\nDescription: \nFeatures: 288 sq. inches of total cooking surface\n10,000 BTU stainless steel \"U\" shaped burner for maximum heat distribution\nFolding legs and locking lid make moving grill easy\nChrome-coated warming rack_Stainless steel construction and cooking grates\nPush-button ignition lights burner quickly and easily\n", "embedding": [-3.1503906, 1.1494141, 2.7265625, 0.29882812, -1.3515625, -0.21276855, 0.6738281, 0.6044922, -1.6572266, 2.3359375, 1.3535156, -1.4033203, 0.016555786, -0.91503906, 1.1396484, 0.53271484, 1.3876953, 0.77197266, 2.7207031, 0.35620117, -0.02645874, 0.099243164, 0.5678711, -2.2734375, 0.92871094, 0.26879883, 4.1992188, -4.8476562, -0.62646484, -1.8603516, 1.0507812, 0.74072266, 0.91796875, 1.7421875, -1.9003906, 0.010154724, -3.6191406, 0.6767578, -4.59375, -0.0061035156, -0.17236328, -1.1455078, 1.7626953, 0.5336914, -2.6582031, 0.46533203, 0.37963867, 1.8447266, -2.2851562, -0.9814453, 1.6132812, 2.1953125, 0.24938965, 0.89746094, -0.7163086, 1.1191406, -0.4177246, -1.8310547, 1.0419922, -1.2617188, 2.0390625, -1.4716797, -0.828125, -0.73046875, -1.0195312, 1.2158203, -0.23498535, -0.20654297, 0.38720703, 0.35083008, 0.10723877, -0.8769531, -0.5126953, -0.94384766, 0.17919922, -2.3457031, -3.7871094, 0.18066406, 0.76123047, -1.9775391, -1.7001953, 2.6796875, 0.4855957, -1.3007812, -0.22021484, -0.0009069443, 0.07336426, -1.1806641, 2.0546875, 1.4101562, -0.5371094, 1.1445312, -2.4160156, -3.3125, 1.9345703, 0.1381836, -0.19763184, 1.2197266, 0.4724121, 1.6523438, -0.3828125, 1.6904297, -1.7050781, 0.093444824, -1.9013672, -0.9902344, 0.6254883, 0.8105469, -2.8828125, 0.21191406, -1.8828125, 0.6381836, 0.77490234, -0.7089844, 0.5644531, 1.9013672, 0.35083008, 1.1582031, 1.8535156, 2.859375, 3.5742188, -1.03125, -0.40698242, 0.0625, -0.59375, 2.1542969, -0.5986328, 3.0175781, 4.5859375, -1.9111328, 0.81396484, -1.7246094, 2.1191406, 0.6669922, -1.1328125, -1.6386719, -1.6298828, -0.56689453, -3.3222656, 0.37304688, -0.8955078, 2.0761719, 0.60546875, -1.2265625, -2.9804688, -1.7851562, 1.4990234, -0.28857422, -1.7617188, -0.5078125, 0.32470703, -1.5927734, 1.1894531, -0.43896484, 0.88427734, -1.1123047, -0.78808594, -0.38745117, 3.4609375, 2.3613281, 1.8945312, -1.1660156, -2.1484375, 0.7558594, -0.37597656, -1.7148438, -0.8798828, 2.0820312, 0.029724121, 1.6923828, -0.51708984, -1.7158203, 0.4753418, -1.0585938, 1.09375, 0.45898438, 0.41992188, 3.4355469, -0.30004883, -1.1210938, 0.86621094, -3.0019531, 0.44726562, 1.71875, 0.9550781, -3.8515625, 0.22973633, 0.07366943, 1.5585938, -1.3359375, 0.111328125, 1.7314453, 0.97802734, 0.52978516, 0.43847656, -0.6567383, -1.9296875, -3.8105469, 1.9091797, -0.5107422, -1.2158203, -0.35131836, 0.10321045, -1.0039062, -1.2246094, -2.8457031, -1.6210938, -1.59375, 1.4804688, 2.7753906, 0.88623047, -2.2734375, 0.72558594, -2.1542969, 0.8823242, -3.2675781, 0.22595215, 0.88378906, 1.4648438, 2.7441406, -0.9848633, -0.9213867, 0.7163086, 2.109375, 0.13330078, 1.5498047, 0.6533203, 1.0195312, -1.3662109, -1.1904297, 2.2109375, 1.3847656, 0.30273438, 1.6845703, -0.8256836, 2.1074219, 2.9277344, -1.8203125, -0.52783203, -0.6323242, 1.2949219, -0.37719727, 0.5683594, -2.6523438, 0.11804199, -0.1126709, -2.7207031, 0.69677734, 1.5488281, 0.26660156, -1.3271484, 0.6738281, 0.5205078, 1.1308594, -1.9228516, 1.4814453, -0.79541016, -1.0976562, -1.0810547, -3.5644531, 1.2177734, 0.13305664, -0.7705078, 0.26538086, 0.19702148, -0.79296875, 5.1367188, 1.4853516, -2.703125, -1.3339844, 2.125, 0.44995117, 1.9648438, -0.69140625, 1.8535156, 1.8779297, -2.0800781, 3.2109375, 1.1796875, 0.90625, 0.0021476746, 0.13659668, 2.7558594, -2.9257812, -1.3300781, 0.11968994, 1.59375, 0.5444336, -2.0097656, 0.8198242, 4.7460938, 1.3603516, -0.75390625, 3.2890625, -1.6972656, 0.64501953, 2.6132812, -1.34375, 0.5449219, -0.9033203, 1.5039062, 1.7460938, 0.5800781, 0.24401855, -1.7011719, -1.6367188, 0.25195312, -0.65234375, 0.30664062, 1.1044922, 0.3762207, -1.2128906, -2.6953125, 0.9892578, -1.4824219, -0.54345703, 2.0683594, -3.3027344, 1.4941406, 0.46777344, 0.7949219, 1.0654297, -0.85546875, -0.9082031, 1.2138672, -0.1661377, 1.5283203, 1.8710938, 1.3867188, -1.2070312, -0.17089844, -0.22497559, 1.0947266, -1.1044922, -2.3300781, 0.17077637, -3.2070312, -3.1855469, 1.2148438, 0.3864746, 1.2001953, 1.8378906, -3.5976562, 0.14562988, -1.1630859, -3.2246094, -0.9482422, 0.12939453, -0.46801758, -1.1484375, -0.36791992, 1.1757812, -0.21838379, -4.6679688, 0.59228516, 0.7895508, -0.2915039, 0.5932617, 1.3164062, -0.38745117, -0.4638672, -0.4501953, 0.34814453, 0.8251953, 1.0029297, -1.3037109, 0.6694336, -3.3476562, -0.46533203, -2.5449219, -0.69384766, -1.0332031, -0.24255371, -1.15625, -2.3613281, -1.2753906, 0.38476562, 3.2382812, 0.36279297, 1.3212891, -0.26464844, 0.4892578, 2.3632812, -0.75439453, -2.203125, -0.8154297, 1.4228516, -1.8515625, -1.2949219, -2.6328125, 0.7807617, -0.73583984, 0.59765625, -1.1445312, 1.5791016, -2.1015625, 1.2431641, -1.9414062, -0.38085938, -0.4921875, 1.1220703, 0.2467041, -0.6455078, -2.4707031, 0.44335938, -1.3027344, -1.1748047, 1.0908203, 1.4902344, 0.20275879, 1.5009766, 0.43164062, -1.3447266, 0.98828125, -2.0898438, -2.8632812, 3.5019531, -0.23059082, -1.8808594, 0.80859375, -1.5224609, -2.2851562, -1.6279297, -1.7587891, 3.4570312, -0.3881836, 2.625, -0.2006836, 0.2475586, 0.33666992, -0.7285156, -0.08026123, -1.1044922, -1.1503906, 1.6484375, -1.8203125, -2.2773438, 1.1669922, 3.0878906, -2.2011719, -0.6899414, 2.6816406, -0.12902832, 0.5029297, 1.3398438, 0.4934082, -0.017791748, -0.60498047, 4.3242188, 1.2529297, -0.97314453, 1.1083984, -1.3349609, 0.9033203, 0.59228516, 2.046875, 2.9296875, 0.8183594, 2.578125, 0.10626221, 1.4052734, -2.671875, 0.30615234, 0.34936523, 1.7246094, 0.9892578, 2.234375, -1.7626953, -0.033111572, -0.328125, 0.6611328, 0.1899414, -2.1679688, -0.47753906, 2.1035156, -0.5288086, 0.23535156, -0.22265625, 1.0361328, 0.5541992, -1.1826172, 1.2138672, -1.2714844, -1.9775391, 1.8359375, -0.4560547, 0.041412354, -2.2421875, 1.4453125, -0.3935547, -0.20861816, 0.4560547, 2.7773438, 0.32177734, -2.1933594, 0.025344849, -0.7583008, -0.34155273, 0.7753906, -0.5209961, -1.9326172, 0.61328125, -1.0351562, 1.2236328, 0.55859375, -0.8725586, 0.8535156, -0.13024902, 0.12658691, -1.0634766, 0.72802734, 1.0849609, -0.050201416, -2.6015625, 0.37353516, -3.8671875, 0.49365234, 1.0126953, -2.203125, -0.5620117, 2.1210938, 0.39160156, 1.9902344, -1.0410156, 2.4492188, -0.8066406, -1.4189453, 1.1162109, -3.2050781, -1.0566406, -3.9824219, -2.5332031, 0.2836914, -2.7675781, -0.51220703, 1.4189453, -0.23339844, 0.19152832, 1.0185547, -0.38183594, -3.1367188, -1.2871094, -1.0527344, -0.3540039, -2.9726562, -1.1445312, -0.31567383, 1.4599609, -1.8261719, -1.2958984, 1.1689453, 1.5585938, 2.9375, 1.0097656, -2.6894531, 1.1875, -0.8901367, 0.59277344, -0.87060547, -0.57714844, 3.1875, -0.77246094, -0.11853027, -3.1347656, 2.1132812, 0.5605469, -1.1835938, 0.46899414, 1.8076172, -0.7167969, -2.2070312, 0.38500977, 0.9091797, 2.0898438, -1.5703125, -2.1679688, -1.1972656, 0.08984375, 0.48779297, 0.1619873, 0.2709961, 0.09643555, -2.3066406, 0.06854248, 1.2646484, 1.2099609, 2.6191406, 0.3725586, -0.6489258, -0.14819336, -0.0635376, -2.0898438, -2.0996094, 0.2783203, -0.41259766, -1.875, 0.54296875, -1.3076172, 0.05999756, -3.2109375, -0.89941406, -2.2421875, 2.9394531, 2.3691406, 2.4003906, 3.5273438, -0.6777344, -1.8515625, 1.5136719, -0.6982422, -1.2001953, 1.8076172, 0.052886963, -0.19152832, 2.4414062, 1.0888672, -2.8300781, 0.27661133, 1.9462891, -2.1757812, -1.0683594, -1.2480469, 0.64453125, -0.46899414, -1.0615234, 1.2910156, -1.6210938, 2.0195312, -0.29101562, -0.5488281, -0.99609375, 0.5917969, -0.023635864, -0.7050781, -0.2854004, -2.2402344, 2.9375, 1.5576172, 1.1308594, -1.5439453, 0.3383789, 0.11047363, 1.7060547, -1.3134766, 0.6738281, -0.44067383, 1.3183594, -1.0097656, -1.3984375, 0.15515137, 1.5634766, -0.5307617, 4.875, 1.9101562, -0.9199219, 2.8105469, 1.1171875, -3.9375, 0.10601807, 0.55566406, 0.6425781, 2.2871094, 0.69921875, -2.3339844, -1.3320312, 2.9570312, -0.6113281, 0.3935547, -0.31396484, -0.953125, 0.17675781, -3.9394531, -0.72558594, -0.7207031, 0.0635376, -1.5751953, -1.5654297, -0.13598633, -0.3347168, 2.4453125, 3.0996094, -1.1748047, -1.8378906, 3.0429688, -0.6123047, -0.21362305, -0.10546875, 1.125, -1.8535156, 0.0597229, 3.3515625, 2.1757812, 1.6923828, 0.9448242, 0.35913086, -0.671875, 2.2675781, -1.4833984, 4.4140625, -1.3808594, -1.4785156, 2.6621094, -1.6533203, -0.3173828, -3.0292969, -0.030883789, -2.8027344, 1.0595703, 2.703125, -0.1730957, -0.6245117, 0.5214844, -0.96728516, -3.3105469, -0.7583008, -0.23400879, 0.5258789, 0.72998047, 1.4804688, -2.0078125, 0.10491943, 0.8300781, -0.28808594, -1.1923828, 0.6689453, -0.24291992, -1.2783203, 0.8095703, 0.2705078, -0.86376953, -0.57910156, 1.9316406, 1.0253906, -0.7817383, -3.4902344, -2.4257812, 0.90625, -0.64697266, 0.82177734, 1.6210938, 0.7885742, 0.61621094, 1.5839844, 0.796875, -1.6699219, 2.3242188, -0.42114258, -1.1962891, 2.2792969, -0.46289062, -0.68359375, 0.008232117, -2.2617188, 0.61621094, -1.4296875, -0.17126465, 0.43725586, -0.23291016, -1.4228516, -0.42041016, -0.2878418, -0.17871094, -0.052734375, 0.5957031, 0.70996094, 1.7021484, -0.016189575, -0.43725586, -2.3769531, -2.4804688, -0.05883789, -2.6523438, -1.0507812, -1.6210938, 0.22058105, 2.8105469, -0.5131836, -0.37524414, 2.3710938, 0.6899414, -0.94140625, 0.7988281, -1.6035156, 2.6875, 2.4667969, -0.76416016, 0.27978516, -1.4335938, -0.5644531, 0.7495117, 1.6328125, -1.5166016, 0.33007812, -1.8349609, 0.6176758, 0.5722656, 1.7236328, 1.4990234, -0.29614258, -1.0625, 1.5009766, 2.9179688, -1.0214844, 1.9609375, 0.19567871, 2.3671875, -0.17785645, 5.8867188, 0.10040283, -1.0498047, 1.8095703, -2.4316406, 0.4416504, -1.0322266, -1.3535156, 0.70458984, -2.953125, -1.8535156, -1.8613281, -1.8076172, -3.1933594, 0.46801758, 1.6064453, -0.63427734, -0.19067383, 1.4248047, -0.3317871, 2.6582031, 2.484375, 1.0263672, 1.0244141, 2.3183594, -0.104003906, -0.84765625, 1.0439453, -2.4179688, 2.6796875, 0.7260742, -0.5830078, -1.8867188, 1.4599609, 0.5488281, 2.3984375, 2.7519531, 0.44677734, 2.7246094, 0.5205078, 2.8457031, 0.27490234, 1.3515625, 3.6328125, -0.1550293, 0.017242432, 2.0019531, 1.4960938, -0.08203125, -1.5537109, 0.5810547, -1.8613281, -1.0908203, -1.7285156, -0.4387207, 1.5820312, -1.4765625, 0.7368164, -0.42529297, 2.109375, -1.2460938, -0.8232422, -1.2070312, -0.31225586, 0.33691406, -0.12243652, 2.5976562, -1.0185547, 1.5273438, -0.14221191, -0.47753906, 1.4570312, -2.2988281, 0.61816406, 0.11541748, -0.6074219, -0.7216797, 0.08306885, 0.67041016, -0.65771484, 0.076538086, 0.10015869, 2.0390625, 0.3173828, -1.1601562, -1.7636719, -0.72314453, 1.9541016, 1.6337891, -0.00063467026, -0.035095215, 0.10687256, 0.4206543, -1.4785156, -2.984375, 2.6542969, 0.74853516, 1.4765625, 0.58203125, -2.296875, 1.9462891, -0.5566406, 1.3349609, -1.2128906, 0.103271484, -0.8989258, -2.8554688, 0.06008911, 1.4287109, 0.17700195, 2.3867188, 0.86816406, -0.68066406, 3.2226562, 0.8935547, 1.2861328, 1.1689453, 2.0058594, 0.7836914, 1.71875, -0.93896484, 2.1679688, 0.18811035, -0.89501953, -0.92578125, 2.5019531, 2.234375, 0.0045700073, 1.2158203, -2.2988281, 0.21557617, 0.5566406, -0.8149414, 0.0803833, -1.4277344, -0.8666992, -0.79003906, 0.47094727, -1.2021484, -2.7148438, 3.3046875, 1.1933594, 1.1064453, 1.6787109, 0.6225586, -0.83251953, 2.3632812, -0.66503906, -0.2244873, -0.32177734, 0.35913086, 0.20996094, -0.1751709, -2.5625, -0.17895508, 2.1171875, 1.59375, -0.99072266, -1.5126953, -1.6503906, 0.7885742, -1.2138672, 0.6933594, 0.27416992, -1.3896484, 1.7851562, 0.12194824, 0.048675537, 0.8198242, -0.5239258, 0.19543457, -2.4570312, -1.7822266, -0.11657715, 0.48779297, -0.46240234, 0.6489258, 1.9404297, 0.2902832, -0.24255371, -1.0058594, -3.5527344, -1.1523438, -1.4462891, 3.8730469, -0.018325806, -1.7333984, -0.70996094, 1.3974609, 2.0898438, -0.9536133, -1.0302734, -0.26757812, -1.5351562, -0.082092285, 0.5942383, 0.3852539, 0.96484375, 1.4960938, 0.19873047, 2.0214844, -0.92578125, -0.6123047, 2.1894531, 2.984375, -0.32177734, -3.2265625, 0.58691406, 0.13134766, 0.0051574707, -1.2373047, 0.5385742, 1.4863281, 1.4345703, -1.0449219, -2.3515625, -1.0214844]}, "B07JZV24HV": {"id": "B07JZV24HV", "original": "Brand: Char-Broil\nName: Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Power Source: Propane/ liquid petroleum gas. The propane tank is not included.\nExclusive Stainless Steel finish for increased style and durability\nReliable electric ignition to fire up your grill and 10, 000 BTU side burner\nPorcelain-coated grease pan is durable and can be removed for easy cleaning\nStainless Steel burners emit flame from the top to allow for even cooking\n", "embedding": [-2.3535156, 0.5961914, 2.1308594, 1.0507812, -0.0049858093, -1.4404297, 1.0341797, -1.5595703, 0.7636719, 0.8852539, 2.0820312, -1.4150391, 2.0371094, -2.4726562, 0.048675537, 0.013160706, 1.3398438, 1.2919922, 1.3837891, 0.0056991577, -0.44702148, 0.80078125, 1.0957031, -0.7397461, 0.16821289, 1.5458984, 3.2949219, -2.3632812, 0.27124023, -3.0605469, 1.5683594, -0.73339844, 0.028656006, 1.3994141, -2.9160156, -1.6328125, -1.4658203, 2.1875, -3.8769531, 0.9716797, -0.30615234, 0.13952637, 1.6552734, -0.030776978, -2.4296875, 0.013938904, -0.16821289, 1.0839844, -1.6845703, -1.4169922, 1.4902344, 2.0878906, -0.6621094, 0.58935547, -1.9111328, 1.6044922, 0.29516602, -0.46044922, 1.1435547, -1.2207031, 2.5332031, 0.44848633, -2.4335938, -0.5932617, -2.0761719, 1.2207031, -0.11437988, 0.7265625, -0.67626953, 0.9589844, 2.6386719, -0.21643066, -0.5058594, 0.23071289, 0.6586914, -1.0117188, -3.4980469, 2.546875, 0.16333008, -0.6479492, -1.2392578, 2.0019531, -0.2211914, -2.3007812, -0.14685059, 0.16003418, -0.095703125, -1.3613281, 1.7392578, 0.77734375, -0.7470703, 2.2148438, -0.1665039, -2.1914062, 1.765625, -0.2401123, 0.87158203, -0.2680664, 0.33618164, 1.6748047, -1.3349609, -0.7871094, -1.6757812, -1.015625, -3.0839844, -1.1464844, 1.4814453, 0.49365234, -3.5117188, 0.5258789, -1.7666016, 0.08001709, 1.4599609, 1.1738281, 0.7451172, 1.4384766, 0.17089844, 3.1367188, 0.85009766, 0.33544922, 5.078125, -0.5102539, 1.0615234, -1.0253906, -0.4958496, 1.453125, -1.3398438, 1.4716797, 5.390625, -1.9277344, 0.8984375, -1.4003906, 3.1835938, -0.09124756, -2.0078125, -1.640625, -2.4804688, -1.5009766, -3.7832031, 1.1630859, -2.2480469, 2.0429688, -0.52246094, -0.3227539, -3.25, 0.6035156, 0.7709961, 1.3681641, 0.4333496, -2.6855469, 1.0957031, -2.7128906, 1.2558594, -1.6132812, 2.0996094, 0.3869629, -2.3984375, -2.2089844, 4.3046875, 0.67089844, 1.0947266, -1.6699219, -0.5371094, 2.6601562, -0.6230469, -0.34887695, -0.97314453, 0.57421875, -0.77978516, 0.79541016, -0.09979248, -1.4990234, -0.98535156, 0.29101562, 0.7207031, -0.5546875, 0.3232422, 3.2265625, -0.3486328, -0.6958008, 0.26220703, -3.7460938, 0.8833008, 0.30810547, 0.52734375, -1.7431641, 1.2529297, 0.98535156, 0.020828247, -0.24584961, 0.73095703, 0.07751465, -0.18762207, -0.19946289, 0.44091797, -1.4755859, -1.0283203, 0.18933105, 0.92529297, -0.40844727, -1.0410156, -0.30273438, 0.30517578, 0.59814453, -1.4238281, -2.9335938, 0.13635254, -2.4140625, 0.3244629, 0.73583984, 1.8095703, -2.0625, 0.51171875, -1.4716797, 0.65771484, -3.0097656, 1.0019531, -0.73535156, 2.0410156, 2.6640625, 1.1103516, -0.7363281, 0.48510742, 0.52685547, -0.15222168, 1.8408203, -0.1381836, 0.99853516, -1.1357422, -1.7744141, 2.4199219, 0.09588623, -0.3876953, 0.019119263, -0.24816895, 1.2880859, 0.5761719, -0.29248047, -0.68847656, -0.7104492, 0.2467041, -0.4255371, 0.21118164, -2.59375, 1.4072266, 1.5732422, -1.1416016, 1.8046875, 1.6064453, 0.71777344, 1.1542969, -0.19311523, 0.7548828, 1.7763672, -1.4472656, 1.3847656, -0.79345703, 1.0126953, -1.2285156, -2.0390625, 1.671875, 1.8222656, 0.091552734, -1.3525391, 0.6508789, -1.0253906, 2.9980469, 2.2226562, -1.8369141, -1.7197266, -0.3334961, 1.0673828, 0.8779297, -2.6191406, 1.3056641, 2.8554688, -0.062561035, 4.1289062, 0.99121094, 1.5429688, 0.77734375, -1.1396484, 3.2949219, -2.7617188, -0.77246094, 1.1054688, 2.4648438, -1.0732422, -0.7265625, 0.52490234, 5.46875, -0.9145508, -1.8740234, 2.8105469, -0.6826172, 0.49487305, 1.1484375, 0.49536133, -1.4707031, 0.62109375, 2.90625, 0.5131836, 0.8339844, 1.8027344, -1.1972656, -1.3183594, 0.4802246, -0.8769531, -0.82910156, 2.0078125, -0.04776001, -0.023376465, -1.3828125, -0.019989014, -2.75, -1.7675781, 2.5605469, -2.3222656, 1.0224609, -0.00078582764, 1.1923828, 1.3164062, 0.13513184, -1.6445312, -1.0527344, 1.2587891, -1.0546875, 0.11090088, -0.40820312, 0.13110352, -0.40649414, -0.67089844, -0.18725586, -1.3886719, -2.5859375, 0.25073242, -2.5273438, -4.4179688, 0.8652344, -1.3164062, -1.3085938, 1.8974609, -2.1914062, 0.77001953, -1.1308594, -2.2675781, -1.3310547, -0.054595947, -0.76416016, -1.4414062, 0.70410156, 0.9692383, -0.3466797, -3.609375, -0.2770996, -0.44799805, -0.54296875, -0.7792969, -1.2041016, -1.8388672, 0.8588867, -0.121520996, -1.2460938, 1.5283203, 1.4179688, -1.3808594, -0.18811035, -1.8896484, 1.9501953, -3.3339844, 1.6650391, -1.1015625, 1.4716797, -3.40625, -2.6347656, -1.3300781, -0.113098145, 2.828125, -0.019119263, 1.2460938, 0.8598633, -0.36669922, 0.68408203, -1.0390625, -2.9042969, 0.5292969, 1.078125, -0.77978516, -1.7587891, -3.0351562, 1.0849609, -0.8588867, 0.31079102, -0.17077637, 0.37890625, -2.5957031, 0.8227539, -1.7167969, -0.35595703, -1.2685547, 0.98339844, -0.23706055, -0.9667969, -1.3261719, 0.8334961, -1.1181641, -0.9272461, -1.328125, 0.70751953, -1.4013672, 1.7597656, 1.7050781, -0.11883545, 1.8408203, -1.7421875, -3.2089844, 2.8261719, 0.5756836, -3.0488281, 2.6738281, -1.6445312, -1.3984375, -2.5078125, -1.3798828, 2.6308594, 2.9003906, 3.9179688, 0.77001953, 0.08355713, 2.4609375, 0.15966797, 0.52734375, -1.8476562, -1.0693359, 2.0996094, -2.0585938, -2.5878906, 0.33325195, 3.2578125, -2.5175781, -1.3007812, 3.0351562, 0.8227539, 1.7099609, 2.9023438, -0.69921875, -0.5234375, -0.9277344, 2.5527344, 1.1015625, 1.5058594, 0.84228516, -0.8486328, 0.59228516, 0.76416016, 0.8457031, 1.6923828, -0.77246094, 1.1035156, 1.3769531, 1.4082031, -2.3339844, -0.5214844, -0.93847656, -0.8823242, 0.36865234, 2.1738281, -1.6181641, 0.9667969, -1.1542969, -0.2602539, -0.3635254, -1.0927734, -1.0595703, 1.8583984, -0.48364258, 0.3569336, -0.43920898, -0.053649902, 0.68066406, -1.7304688, 0.6430664, -1.0703125, 0.17016602, 0.5488281, -0.18566895, 0.5625, -0.70947266, 0.8925781, -2.2617188, -2.1015625, -0.43481445, 2.9238281, -0.033599854, -1.6962891, 1.3886719, 0.9770508, -1.1542969, 2.078125, 0.76123047, -2.2460938, 2.5371094, -0.86328125, 0.90771484, 0.13293457, -2.6523438, 0.03604126, -1.0380859, 0.96435547, -1.0732422, 0.91845703, 1.3222656, -0.007160187, -3.0566406, -0.019851685, -3.7441406, -0.5024414, -1.0107422, -1.5683594, -3.6152344, 2.1367188, 1.7988281, 1.3359375, -0.31420898, 2.453125, -0.13537598, -0.3984375, 1.6767578, -3.3300781, -0.91064453, -3.3867188, -3.3769531, 1.0292969, 0.578125, -0.9277344, 2.2792969, -0.62158203, -1.2841797, 2.546875, 0.34960938, -2.8613281, -0.48779297, -0.82910156, -0.09283447, 0.73535156, -0.3713379, 2.6171875, 1.3193359, -1.2304688, -3.0449219, -0.16271973, -0.43115234, 0.9902344, 2.6347656, -2.0195312, 1.2744141, -1.7607422, 0.38745117, -0.88623047, -2.0664062, 0.27563477, -0.4567871, 0.12359619, -3.1015625, 0.7167969, 2.3222656, 0.39819336, 2.1679688, 1.875, 1.3007812, 0.36743164, -1.2587891, 0.6640625, 1.4443359, 0.70996094, -3.4394531, -2.0234375, -0.33032227, 0.84033203, -0.22741699, 1.6074219, -0.7128906, -1.6044922, 0.20910645, 0.34716797, 0.46533203, 2.7128906, 0.0069770813, -2.171875, -0.8515625, -0.060638428, -1.578125, -0.9819336, -0.17419434, 1.5859375, -0.3310547, -0.049041748, -2.0449219, 0.42016602, -0.98779297, -1.1201172, -4.1523438, 2.6113281, 3.9433594, 1.9394531, 2.7734375, -1.6757812, -0.15258789, -1.0605469, -0.3671875, -0.96533203, 0.99560547, -0.41430664, -0.10021973, -0.16503906, 0.75878906, -2.5097656, -1.8066406, 1.4931641, -2.3515625, -1.6416016, -2.1660156, 0.79345703, -2.1542969, -0.67041016, 1.0322266, -1.078125, 3.2480469, 0.32592773, -1.1650391, 0.041625977, 0.47485352, -0.3786621, -0.41918945, -1.2636719, 1.9550781, 1.3115234, 2.0605469, 1.8339844, -0.7524414, -0.4338379, -1.7705078, 2.5839844, 0.8930664, 0.9995117, 0.44995117, 0.7866211, -1.2841797, -0.8305664, 1.2275391, 4.1054688, 0.8232422, 3.5644531, 2.0898438, -2.9804688, 1.8710938, 0.49194336, -3.7128906, -0.41601562, -1.1513672, -1.2734375, 1.3808594, -1.0800781, -4.4375, -0.57470703, 2.0664062, -0.41723633, 1.0615234, -1.1611328, -0.6508789, -0.67333984, -2.0488281, -1.0478516, -0.92626953, 0.58691406, -0.38134766, 1.3583984, -0.02331543, -1.6230469, -0.11633301, 3.0820312, -0.29101562, -0.07904053, 1.7646484, -0.32006836, 1.2792969, -0.828125, -0.6201172, -1.6953125, 0.44750977, 2.2324219, -0.7807617, 2.8847656, 0.5498047, 2.4824219, -2.46875, 0.26416016, -1.1386719, 3.5097656, -2.1015625, -0.7495117, 1.6787109, -3.3046875, 1.0839844, -2.9335938, 0.74902344, 0.18041992, 1.5576172, 1.4365234, -1.0615234, -1.3017578, -0.36816406, -2.03125, -5.125, -1.8535156, 0.2454834, 1.6484375, 0.6586914, 1.2294922, -0.5839844, 1.4785156, -0.6508789, 0.101867676, -1.2763672, 0.76660156, -1.0322266, -0.06732178, -0.3544922, 0.37524414, -1.2451172, 1.2558594, 0.67871094, 1.4140625, 1.7197266, -2.2734375, -2.015625, 0.578125, -2.4375, 0.73535156, 0.9921875, 0.65234375, -0.7558594, 0.65527344, 0.6508789, -2.484375, 1.9892578, 0.48950195, 0.140625, 2.2734375, -0.85546875, -1.0419922, 0.70751953, -1.9658203, -0.09820557, -0.45410156, 0.31445312, 0.36889648, -0.5683594, 0.18823242, 0.47875977, 0.049560547, -0.44848633, 1.4238281, 0.38745117, 1.6132812, 1.2685547, -1.71875, 0.11340332, -2.3984375, -1.921875, 0.3774414, -2.0410156, 0.3527832, -2.0234375, 0.92089844, 0.5488281, 0.1116333, 0.5463867, -0.46044922, -0.59228516, -0.50878906, 1.1191406, -1.2324219, 3.9394531, 3.6074219, -1.5966797, -2.1308594, 0.111328125, 1.4775391, 1.9716797, 0.65478516, -1.0595703, 0.6958008, -0.052124023, 1.2041016, 0.16699219, 2.140625, 0.9404297, 0.43188477, -1.0419922, 1.2080078, 3.3359375, 0.1574707, 0.019165039, 0.98339844, 0.5888672, -0.18579102, 3.7148438, 0.9868164, -3.4082031, 1.7294922, -2.0898438, -0.7265625, 1.4746094, -0.93359375, -0.92578125, -3.0449219, -2.0644531, -1.8037109, -0.8261719, -2.7128906, 0.96484375, 1.5117188, -1.6552734, 1.2451172, 1.0693359, -2.2148438, 2.4492188, 2.3046875, 2.0097656, -0.82128906, -0.01586914, 0.4104004, -0.020248413, 1.9082031, -4.4609375, 1.4960938, -0.42626953, -0.4362793, -0.61328125, 2.7402344, 0.43139648, 1.7304688, 1.5888672, 2.0214844, 3.2792969, 2.0664062, 3.5117188, -0.10345459, 2.3359375, 1.8466797, -0.7104492, 0.2409668, 2.2441406, 1.6289062, 0.2993164, -1.0136719, 1.8300781, -0.9609375, -2.2714844, -0.6767578, 1.3769531, 0.91259766, -3.4023438, 2.1523438, 0.32421875, -0.34643555, -2.1171875, -1.1210938, -0.4716797, -2, -0.015403748, -0.31396484, 3.8554688, -0.46923828, 1.6679688, 0.09106445, 0.6591797, 1.4833984, -4.6367188, 0.5708008, 0.06744385, -0.25830078, 0.203125, -2.3164062, -0.039123535, 0.7192383, 0.7163086, 0.39501953, 1.7568359, 0.44604492, 0.7861328, -2.9824219, 0.030166626, 0.99902344, 2.5410156, -0.3166504, -1.7021484, 1.6757812, -2.140625, -2.1152344, -3.3222656, 2.9765625, 1.6328125, 3.3378906, 0.92333984, 0.28100586, 2.7148438, -1.4326172, 1.9814453, -2.1503906, 0.76123047, 0.4963379, -3.5898438, -0.5283203, 0.20568848, -0.52978516, 3.1933594, -0.011833191, -1.5234375, 2.2929688, -0.5957031, 1.5292969, 1.2597656, 1.0185547, 1.2050781, 0.27612305, 0.78466797, 2.5410156, -0.8642578, -0.49243164, -0.71728516, 1.8515625, 0.89160156, 0.45385742, 0.9433594, -1.7705078, 1.1806641, -1.1171875, 0.87841797, 0.29907227, -2.0878906, -2.1367188, -0.9145508, 0.5180664, -0.42333984, -1.7685547, 2.78125, 0.8510742, -1.2412109, 0.6933594, 1.6767578, -1.0361328, 2.46875, 0.16577148, -0.71484375, -0.42797852, 0.058685303, 1.1591797, 0.47143555, -0.7607422, 0.24731445, 0.6176758, 0.69970703, -0.1772461, -0.12841797, 0.54833984, -1.234375, 0.14294434, 0.82373047, -0.89697266, -1.1865234, 2.2148438, -0.19311523, -1.9775391, 1.7675781, -0.20874023, 0.8261719, -2.9316406, -2.0410156, -1.4755859, 0.40185547, -1.2041016, 0.31860352, 1.9462891, 0.15490723, 0.7680664, 0.18896484, -3.8007812, -0.4086914, -2.3046875, 1.3056641, 0.2861328, -1.2460938, 0.7089844, -0.5048828, 1.9746094, -0.55810547, -1.5996094, 1.4228516, 0.5751953, 0.11413574, 0.24475098, 2.0292969, -0.43164062, 1.7324219, -0.105041504, 2.6816406, 1.7207031, -0.19799805, 0.17272949, 1.5283203, 0.08013916, -1.0507812, -0.022598267, 0.12927246, -0.4699707, 0.4638672, 1.2861328, 1.8134766, 0.34716797, -0.12145996, -1.4951172, -3.46875]}, "B00BFPMLI8": {"id": "B00BFPMLI8", "original": "Brand: Char-Broil\nName: Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill\nDescription: \nFeatures: Road worthy and built to travel easy\nCast aluminum firebox and lid with dual stainless steel latches and temp gauge\nHigh-impact frame with legs and carry handles\nNo flare-up TRU-Infrared cooking system\n200 square inch stainless steel grilling grate\n", "embedding": [-2.3691406, 0.43920898, 1.8222656, -0.052093506, -1.3867188, -0.69677734, 0.8198242, -1.65625, -1.1328125, 1.078125, 1.3847656, -1.4404297, 1.0136719, -2.9003906, 0.14941406, 0.072265625, 1.6240234, 0.7338867, 2.7519531, -0.1282959, -0.42797852, 2.2402344, 1.0527344, -0.19970703, 0.021469116, -0.35009766, 3.7929688, -2.1582031, -0.13024902, -3.0332031, 2.2558594, 0.6347656, 0.7001953, 1.8515625, -1.1933594, -2.28125, -3.0839844, 1.9316406, -2.2871094, -0.26000977, -1.1279297, -0.17541504, 1.59375, -1.234375, -2.6308594, -0.85058594, 0.7895508, 0.8598633, -1.5253906, -1.2402344, 1.4726562, 0.53515625, -0.52490234, 0.79345703, -1.5859375, 1.5175781, 0.6640625, -0.6113281, 0.6123047, -0.96875, 1.0458984, -0.81396484, -1.9267578, -0.16333008, -1.2998047, 0.54052734, -0.17443848, 1.109375, 0.54541016, -1.4755859, 2.5429688, -0.0008702278, -1.2783203, -0.09338379, 1.0947266, 0.13208008, -2.2558594, 0.7446289, 0.55078125, 0.09051514, -0.9013672, 3.4941406, -0.7060547, -1.5478516, 1.2753906, 0.18969727, -0.5776367, -1.0751953, 2.9296875, 1.6865234, -0.44433594, 2.9082031, -0.8666992, -3.0488281, 0.6777344, -0.29541016, 1.8125, 1.3925781, -1.1914062, 1.9091797, 0.59228516, -1.2490234, -0.9423828, -0.69384766, -2.8007812, -1.0478516, 0.5180664, -0.6699219, -1.4677734, 1.9560547, -2.8007812, -0.5058594, 1.0439453, 1.2724609, 0.18920898, -1.0566406, -0.49658203, 3.4296875, 0.86865234, 2.359375, 3.796875, -0.020401001, 0.43603516, -1.1806641, -0.6479492, -0.25073242, 0.49658203, 0.70703125, 3.9296875, -0.5205078, -0.21911621, -0.017410278, 2.7636719, 1.0771484, -2.5957031, -2.4179688, -2.515625, -3, -3.2753906, -0.87841797, -2.7871094, 0.17651367, 1.1005859, 0.5341797, -2.3457031, -1.1123047, 0.6489258, 3.1660156, 0.48461914, -1.8339844, 0.04232788, -3.0761719, 1.0976562, -1.4619141, 1.9589844, 1.3808594, -2.5566406, -1.1298828, 2.8066406, 1.5341797, 2.2988281, -0.62646484, -0.80029297, 0.82177734, 1.3183594, -1.4277344, -0.9301758, 1.0703125, -1.6328125, 1.0683594, 0.2019043, -2.4121094, -0.7792969, 0.3400879, 0.91503906, -2.4140625, 0.18762207, 1.7509766, 0.6748047, -0.42871094, -0.5263672, -0.9638672, 0.04977417, 1.8203125, 0.13745117, -1.4511719, -1.4853516, 0.99316406, -0.7988281, -1.6074219, 3.2070312, -0.5732422, -1.2578125, 0.09265137, 0.33789062, -0.9008789, -2.0585938, -0.33618164, 1.0927734, -1.1503906, -1.3935547, -0.06970215, -1.3398438, 0.30688477, -1.8310547, -4.109375, -1.2470703, -1.4453125, 0.16027832, 1.625, 0.49926758, -1.4931641, 1.3535156, -0.25195312, -0.44799805, -2.2851562, 1.1396484, 1.2207031, 2.2207031, 0.57910156, -0.24401855, -0.484375, -0.38989258, 3.1855469, -0.9824219, 2.7070312, -0.6879883, 0.07727051, -1.3505859, -1.9169922, 2.9511719, 1.0703125, -0.5258789, -0.83154297, 0.061431885, 2.6269531, -0.18066406, 0.65234375, -1.8300781, 0.93896484, -1.0771484, -0.13598633, 0.44018555, -1.1855469, -0.15002441, 0.5419922, -1.5556641, 3.0292969, 1.3583984, 0.36206055, 0.5991211, 1.0458984, 1.3261719, 2.3085938, 1.3095703, 2.3671875, -1.4248047, 1.9033203, -2.5058594, -2.3867188, 0.75634766, 1.7578125, 0.60302734, 0.5620117, -0.012535095, -0.6879883, 2.9941406, 2.5058594, -1.1396484, -0.61865234, 0.47998047, 1.8164062, -0.22827148, -0.11529541, 2.7050781, 1.6914062, -0.8334961, 2.2480469, 0.3371582, 1.6318359, 1.1289062, -0.29418945, 2.1640625, -1.9472656, -1.5556641, 0.038635254, 0.44458008, -0.6982422, -0.55078125, 1.7646484, 3.7558594, 0.68652344, -2.9316406, 4.3164062, -1.6660156, 0.9091797, 2.2441406, 0.7451172, -0.35766602, 0.6669922, 3.4179688, 1.4375, 0.09375, 2.9257812, -0.88183594, -0.65771484, 1.5273438, -2.578125, -0.3947754, 2.6269531, -0.05682373, -0.040924072, -1.6464844, 0.08660889, -2.4746094, -2.1464844, 1.8857422, -2.4824219, 0.88183594, 2.1855469, 0.09661865, 0.45581055, -0.4025879, -1.5214844, -1.4199219, 1.7089844, -0.29223633, -0.16723633, 1.2998047, -0.21838379, -2.1386719, 0.59277344, 0.2244873, -0.97558594, -1.1152344, -1.0644531, -2.0371094, -4.0273438, 1.9560547, -0.63427734, -3.0566406, 2.125, -0.6748047, 0.20129395, -0.7963867, -4.1367188, 0.3479004, 0.89746094, -1.1171875, -2.1503906, 0.18823242, 0.4572754, 0.40600586, -4.09375, 0.33203125, -0.9604492, -0.39672852, -0.80371094, -3.5273438, -0.44628906, 1.4296875, -0.48754883, -1.4970703, 1.5654297, 0.32470703, -1.5029297, 0.18713379, -1.7431641, 0.5493164, -2.9121094, 0.3305664, -1.7246094, 0.45166016, -3.1308594, -2.5253906, 0.9638672, -0.24658203, 2.4082031, 0.05722046, 1.0087891, 0.6386719, -1.4296875, 0.7866211, -0.91259766, -3.2558594, -1.4296875, -0.050964355, -1.4580078, -4.2109375, -3.5546875, -0.73779297, 0.4609375, -0.023269653, 0.88720703, 0.17443848, -1.9033203, 2.0683594, -2.4042969, -0.99658203, -0.12878418, 0.61572266, 0.0104522705, 0.3930664, -0.25048828, -0.94628906, -1.75, -1.4521484, -1.2431641, 0.546875, -0.072265625, 1.2353516, 0.9863281, -0.46191406, 1.2099609, -0.35131836, -3.1328125, 1.6464844, 0.24047852, -1.1015625, 2.3574219, 0.2854004, -1.6191406, -3.125, 0.1796875, 3.2207031, 2.7519531, 3.5410156, 2.0136719, -0.3696289, 2.578125, 1.6181641, -1.5615234, -0.56347656, -0.004852295, 2.40625, -2.1582031, -1.6210938, -0.51464844, 2.1542969, -2.1679688, -1.7626953, 3.3398438, 0.4255371, 2.1503906, 1.3935547, -0.40307617, -0.26245117, -0.043151855, 2.2480469, 0.6401367, 0.13793945, -0.17163086, -1.0605469, -0.9926758, 1.4375, 1.5146484, 1.5498047, -0.2668457, 2.2304688, 1.3027344, -0.38305664, -0.39916992, 0.58447266, -0.3166504, 0.5805664, -0.109436035, 1.2011719, -0.6142578, 0.42163086, -0.66259766, -0.19909668, 1.6552734, 0.6645508, -1.2441406, 1.4755859, 1.5126953, -0.062683105, 0.38354492, -0.053710938, 0.5185547, 0.029769897, 0.3076172, -1.6425781, -1.6914062, -0.4321289, -2.4179688, -1.3076172, -3.0117188, 2.2871094, -1.6035156, -1.5283203, 0.45776367, 2.4316406, 0.23815918, -1.4941406, 0.9760742, 0.7001953, -0.99853516, 1.8134766, 1.7568359, -1.6630859, 2.9511719, 0.60595703, 0.85302734, 1.3339844, -0.17272949, -1.0732422, -1.1777344, 0.46166992, -0.08532715, 0.64404297, 1.5234375, -0.38110352, -1.2441406, 0.13122559, -2.8554688, -1.1015625, 0.27661133, -1.5283203, -1.6347656, 2.9882812, 1.6796875, 1.4384766, -1.7998047, 2.9667969, -0.13989258, -0.36865234, 1.5039062, -2.6835938, -2.5, -2.6992188, -4.2148438, 1.0224609, -0.91796875, -0.13134766, 3.5214844, -1.1621094, -0.7216797, 1.9472656, -0.5029297, -1.0234375, -2.4902344, -2.1230469, -0.30444336, 0.04019165, -0.08166504, 2.453125, -0.021224976, -2.0507812, -2.1972656, -0.99072266, 1.0517578, 1.6816406, 2.4609375, -1.6220703, 0.47924805, -3.421875, 1.1464844, -1.4824219, -0.9916992, 1.3837891, -0.38452148, -0.68652344, -2.609375, -0.18981934, 0.39941406, -0.5048828, 1.5, 2.4199219, -0.04397583, 0.6567383, 0.37182617, 1.1132812, 0.80859375, 0.22521973, -3.4394531, -2.1113281, -1.3134766, -1, 0.5205078, 0.6435547, -0.3095703, -0.7446289, 1.7470703, -1.1621094, 0.5415039, 3.0273438, 2.4296875, -2.5117188, -0.4477539, -0.51953125, -1.7148438, -1.1835938, -1.1933594, 1.9580078, -0.17114258, -1.4130859, -1.0849609, -0.22692871, -2.0332031, -1.7841797, -1.8818359, 2.1503906, 2.7109375, 1.4785156, 2.6132812, -1.71875, 0.21496582, 0.06262207, 0.22058105, -0.74072266, 0.70996094, -0.95166016, 2.0253906, 2.0175781, 0.37426758, -2.1074219, -0.47216797, 0.2524414, -2.3632812, -1.6865234, -2.5039062, 1.0595703, -2.9453125, -1.3623047, 0.8144531, -1.1152344, 4.1367188, -0.77734375, -0.39160156, -1.2910156, 0.20019531, -0.7348633, -0.29858398, 0.1953125, 1.0566406, 0.44995117, 1.0722656, 0.24536133, -0.61376953, -0.00022292137, -1.4023438, 2.8476562, 0.021331787, -0.14550781, 0.52001953, 0.18786621, -1.7802734, -0.671875, 1.1083984, 3.2792969, 0.60498047, 2.0742188, 0.23120117, -1.3095703, 1.0634766, 1.5107422, -3.4042969, -0.95654297, -1.6689453, -1.1796875, 1.1982422, -1.3779297, -4.1679688, -0.5683594, 1.4052734, -0.014480591, 0.72265625, -1.2050781, 0.09338379, -0.0071868896, -2.921875, -0.2590332, -0.50097656, -1.1630859, -0.5708008, -0.32958984, -0.1796875, -0.9091797, 2.0371094, 1.9277344, -1.2958984, 0.42456055, 0.43554688, -0.7998047, 0.78466797, -1.0478516, 0.08081055, -3.7207031, -1.7666016, 2.2617188, 0.765625, 0.9135742, 0.11608887, -0.022476196, -2.6132812, 0.35961914, -2.8554688, 2.0410156, -1.8720703, -0.39135742, 1.9726562, -2.3496094, -0.50390625, -2.4570312, -0.39404297, 0.07702637, 3.2578125, 2.0546875, 0.63623047, 1.1357422, -0.3449707, -2.6308594, -5.4257812, -2.0878906, -0.00064754486, 1.7949219, 0.32250977, 2.4257812, -1.6552734, -1.1201172, -0.33276367, 0.63916016, -0.71240234, -0.19067383, -0.16894531, -0.049713135, 0.6303711, -1.625, -0.88134766, 2.1054688, 1.8398438, 0.94628906, 1.15625, -1.3291016, -1.3671875, 0.39746094, -2.6679688, 0.8989258, 1.7060547, 0.9692383, -0.5527344, -0.11999512, 0.8286133, -1.5527344, 3.3046875, -0.48901367, 0.7294922, 1.3115234, -1.0966797, 0.6176758, -0.66259766, -1.4521484, 0.9716797, -0.98291016, 2.2675781, 1.1103516, -0.21655273, -0.37695312, 0.35180664, -1.5175781, -1.1660156, 0.7001953, 1.2021484, 1.6347656, 0.20544434, -1.5390625, 0.6801758, -2.3320312, -3.609375, 0.37573242, -2.1894531, 0.24291992, -2.4960938, 1.3125, 1.2275391, 1.5449219, 0.16772461, 0.61376953, 0.6826172, -2.1171875, 0.84375, 0.75341797, 3.2617188, 4.4414062, -1.3613281, -1.9072266, -0.0135650635, 0.15759277, 1.3769531, 0.29101562, -0.9057617, 0.6064453, -1.7216797, -0.5151367, -0.8105469, 2.7617188, 0.66259766, -0.24523926, -0.29467773, 1.4277344, 2.9941406, -0.37597656, -0.02128601, 0.37963867, 3.1328125, 0.40356445, 2.9042969, -0.9692383, -2.375, 1.1191406, -0.89746094, 1.0664062, 0.75927734, -2.0605469, -0.06567383, -1.8339844, -0.6772461, -1.2080078, -0.57177734, -1.8955078, 2.1992188, 0.90234375, -0.8876953, 1.5126953, 2.0058594, -0.50634766, 2.5429688, 2.4980469, 2.4355469, 0.5576172, 0.5361328, -0.78125, 0.42993164, 0.17016602, -3.0839844, 2.671875, -0.6040039, -0.4477539, -0.28051758, 3.5292969, -0.8432617, 2.8144531, 2.6816406, 2.3242188, 2.3808594, 1.3691406, 2.6191406, 1.0664062, 2.1582031, 3.0644531, -2.1933594, 1.6796875, 3.1054688, 2.1542969, 0.26879883, -1.6064453, 2.6972656, 0.11328125, -2.2929688, -0.79541016, 0.15698242, 0.63964844, -3.2558594, 2.2617188, 1.3789062, 0.70703125, -2.4179688, 1.7246094, -0.36450195, -0.7451172, -1.0664062, 0.9213867, 2.8964844, -0.8300781, 1.3662109, 0.40161133, -0.6533203, 1.6621094, -3.703125, -0.69970703, 1.6875, -1.1035156, -0.2902832, -0.6323242, 0.9633789, 0.8959961, 0.7651367, 0.6791992, 2.2207031, 0.8227539, 0.9980469, -0.13476562, 0.28857422, -0.082458496, 1.5205078, -1.7392578, -1.7226562, 0.47827148, -1.265625, -2.2011719, -2.9023438, 2.1972656, 0.007537842, 2.0742188, 0.9033203, -0.056549072, 3.4296875, 0.12347412, 2.2285156, -1.1074219, 1.4785156, -1.6113281, -2.4570312, -1.1132812, -0.3474121, 1.0820312, 4.21875, 1.3759766, -0.035186768, 2.7851562, 0.34448242, 2.7460938, -0.41259766, 1.5068359, 0.19958496, 0.25268555, 0.19348145, 1.3408203, -0.5522461, -1.3994141, -0.9326172, 1.6259766, 0.8540039, -0.61816406, 0.9116211, -2.2773438, 0.76953125, -0.9379883, 0.08483887, 0.22180176, -1.9433594, -1.5693359, 0.084106445, -0.6376953, -0.2705078, 0.24963379, 0.7416992, 2.9375, -0.3149414, 0.58203125, 0.5546875, 0.113342285, 2.9785156, -0.019592285, -1.7597656, -0.8022461, 0.79052734, 0.38012695, -1.0283203, -1.0371094, -0.019821167, 0.57958984, -1.1464844, -0.16308594, -1.0234375, 0.8613281, -0.41088867, -0.33129883, 1.9921875, -0.67626953, -0.35131836, 0.4897461, -0.67041016, 0.2763672, 2.3105469, -0.48510742, 1.1708984, -3.2089844, -1.4404297, -1.3544922, -0.08441162, -0.79833984, -0.48120117, 3.0957031, 0.8574219, 0.7519531, -1.3642578, -3.9101562, -1.1347656, -0.071777344, 1.9990234, 0.29223633, -1.2246094, 0.6123047, -1.0029297, 3.140625, -1.1074219, -0.79003906, 0.89746094, 0.42211914, 0.359375, 1.2089844, 0.9692383, 0.20568848, 0.44970703, 0.13098145, 2.3417969, 0.7080078, 0.59472656, 1.5322266, -0.6376953, -0.71191406, -1.9404297, -0.6401367, -1.7402344, 1.0458984, 0.6411133, 0.04321289, 2.6308594, 1.9677734, -0.018218994, -1.5410156, -2.9628906]}, "B01ENX3VX2": {"id": "B01ENX3VX2", "original": "Brand: Royal Gourmet\nName: Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black\nDescription: \nFeatures: Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast\n316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6\u2019\u2019 L x 13.4\u2019\u2019 W and 3.5 mm thickness. 15 patties can be cooked altogether at once\nPiezo Ignition: Durable stainless steel control panel with piezo ignition system\nOil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use\nPerfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors\n", "embedding": [-1.1201172, 0.20751953, 0.74853516, 1.2929688, -1.4726562, 2.1425781, 1.5175781, 0.046844482, -1.6162109, 0.7578125, 1.5683594, -0.0067214966, 1.1425781, -2.078125, 1.734375, 0.78222656, 0.55322266, 0.9350586, 0.6616211, 0.6611328, 0.8696289, 1.5917969, 2.5429688, -0.59472656, 0.109191895, 1.3193359, 2.5996094, -4.1015625, -0.13012695, -0.9741211, 2.6191406, -0.5527344, 1.2480469, 1.9921875, -2.5253906, -0.48266602, -1.4667969, 0.9316406, -1.7910156, 0.20800781, 0.06793213, -1.2763672, 2.21875, -0.28100586, -2.7832031, -1.3603516, 0.3203125, 0.71777344, -0.42871094, -0.66796875, 1.9423828, 0.24206543, -0.5908203, 0.42626953, -1.0244141, 1.9589844, 1.6103516, -1.7675781, 1.4892578, -0.24401855, 3.0585938, 0.5151367, -2.6777344, -0.17480469, -0.76464844, -1.578125, -0.28173828, 0.66064453, 0.57910156, -2.1503906, 2.3398438, 0.5678711, -0.19702148, 0.084106445, 0.0927124, 0.17626953, -1.609375, 1.6494141, 2.6601562, 0.8286133, -2.4140625, 1.9121094, 0.6855469, -1.6044922, 0.5004883, 0.042633057, -1.6933594, -1.0605469, 1.5244141, 1.0107422, -0.25170898, 2.4746094, -3.0332031, -4.3359375, 3.4042969, 0.056732178, 0.87841797, 1.7324219, 0.7763672, 1.6279297, 0.5805664, -0.56396484, -1.1005859, -1.0830078, -1.7255859, -1.1210938, 1.3027344, 0.31298828, -2.7558594, -0.4416504, -1.2392578, 0.25976562, 2.5664062, -0.39013672, 0.3569336, -0.40356445, -1.0009766, 2.7636719, 2.2480469, 0.22875977, 2.5292969, -1.3544922, 1.8154297, -1.0429688, 0.12420654, 0.046966553, -1.4951172, 1.7128906, 5.3125, -1.7324219, -0.7109375, -1.0859375, 2.3652344, -0.1977539, -3.1542969, -2.6542969, -1.0517578, -1.3339844, -2.5292969, -0.5864258, -1.6816406, 0.9238281, 2.5957031, -0.4453125, -2.96875, -0.16748047, -0.09954834, 1.2392578, -0.328125, -0.82421875, 0.19042969, -1.3994141, 0.48168945, -2.2988281, 1.09375, -1.3134766, -1.2070312, -0.099853516, 4.453125, 0.5239258, 1.2285156, -2.546875, -1.2324219, 1.0126953, 0.3244629, -0.7919922, -0.4807129, 3.2636719, 1.28125, 2.2304688, -0.671875, -1.8388672, -0.94384766, -0.10858154, -0.025024414, -1.5761719, -0.8388672, 1.1826172, 0.8510742, -1.6660156, -1.1318359, -2.6308594, -0.27148438, 0.6044922, 1.2958984, -1.8535156, -0.69189453, 0.011802673, 0.25268555, -1.8955078, 0.86035156, -0.2010498, 0.41308594, 1.3955078, -0.33740234, -1.0751953, -0.5917969, -2.0429688, -0.46191406, 0.52246094, 0.13745117, -0.2290039, 0.3930664, 0.17651367, -2.5117188, -3.4570312, 0.1541748, -3.2011719, 1.2226562, 1.4609375, 0.8066406, -2.8085938, 0.81396484, -0.7475586, 0.24865723, -1.9931641, 1.0361328, -0.36499023, 1.6640625, 2.1640625, -0.5336914, 0.13977051, 0.8066406, 2.2929688, 0.101989746, 1.6103516, 0.15063477, 0.57128906, -2.1152344, -0.38842773, 2.2578125, 0.23620605, -1.0419922, 0.3190918, -0.41796875, 0.8808594, -0.8100586, -2.3847656, -0.24804688, -0.55859375, -1.4716797, -0.8535156, -0.47485352, -1.265625, -0.6171875, 1.3984375, -1.5322266, 1.5175781, 1.1748047, 0.50927734, -0.8491211, 0.2705078, 0.87890625, 0.38012695, -0.89160156, -0.4736328, -0.38745117, 1.3300781, -0.9428711, -1.984375, 1.8964844, 0.55371094, -0.16186523, -1.4306641, 0.73828125, -1.4072266, 3.2070312, 1.6679688, -1.6699219, -0.03024292, 0.67871094, 0.43774414, 2.0097656, 0.32226562, 1.1884766, 0.8178711, -2.0214844, 2.7265625, -1.1328125, 1.9804688, 0.43310547, -1.1269531, 0.4741211, -2.1796875, -0.9536133, 0.49389648, 1.2431641, -0.6376953, 0.84521484, 1.2080078, 4.6875, -0.66552734, -2.4648438, 3.1953125, -2.2890625, 1.3349609, 0.8588867, -0.66259766, -0.8300781, 0.07305908, 0.7397461, 1.5693359, 0.42749023, -0.015258789, -1.0908203, -2.5058594, -0.084228516, -1.3144531, -0.65283203, 0.35302734, -0.36914062, -1.1806641, -1.7089844, 0.7573242, -1.2060547, -1.0585938, 1.1767578, -2.9609375, 1.5771484, 0.3491211, 1.5166016, 1.8554688, -0.5073242, -1.2324219, -1.0390625, 0.27148438, -0.6899414, 0.24584961, 1.1484375, -0.5078125, -0.063964844, -0.37719727, 0.38916016, -1.5146484, -2.9003906, -0.087402344, -2.6953125, -3.8476562, 0.7402344, -2.4980469, -1.015625, 1.3095703, -1.46875, 0.64453125, 0.45629883, -4.2109375, -1.4511719, -1.2460938, -3.0625, -0.2097168, -0.18969727, 0.2512207, -0.17272949, -2.9023438, 0.18652344, -0.3149414, 0.06604004, 0.24291992, 0.07086182, -0.8383789, -1.015625, -2.0175781, -0.42260742, 0.7133789, 0.27807617, -1.8828125, -0.24389648, -2.1191406, -0.08111572, -1.4648438, -0.5517578, -1.2041016, 0.14050293, -1.8037109, -0.19763184, -0.08685303, -0.62109375, 3.8359375, -0.83691406, 0.50439453, -0.32128906, 0.77490234, 1.9365234, -0.101745605, -3.046875, -1.671875, 0.07678223, -3.6621094, -4.3320312, -2.8652344, -0.6269531, 0.6977539, 1.1220703, -1.2070312, 2.2460938, -2.1601562, 2.0351562, -2.4042969, -0.44995117, 0.032287598, 0.69384766, -0.26782227, -1.2910156, -0.45874023, -0.2578125, -0.9536133, -1.5927734, 1.1484375, 1.3505859, 0.25146484, 1.1054688, 0.8364258, -1.0458984, -0.5078125, 0.31396484, -2.8242188, 2.1601562, 0.20666504, -1.9853516, 3.203125, -0.4716797, -2.46875, -2.2792969, -1.0800781, 3.1992188, 1.1503906, 2.5058594, 1.2265625, 0.76464844, 0.40551758, 1.3828125, -1.0742188, -1.09375, -0.70214844, 3.5390625, -1.953125, -1.5683594, 1.6103516, 2.2597656, -1.3212891, -0.16992188, 2.9179688, 0.6977539, 2.4511719, 1.234375, 3.1035156, 0.11364746, -0.6542969, 0.26391602, 1.8300781, -0.96533203, 0.20910645, -1.0634766, -0.6274414, -0.6425781, 2.1933594, 0.79785156, 0.12017822, 2.5371094, 1.2226562, 0.80371094, -1.6220703, 1.3339844, 0.56103516, 2.4042969, 1.7666016, 1.9462891, 0.13830566, 0.06817627, 0.22875977, -0.28100586, 0.5629883, -2.4746094, 1.140625, 1.6894531, 0.064331055, -0.5810547, 0.66796875, 1.0126953, -0.097351074, 0.095947266, 0.79785156, -1.9482422, -0.53759766, 1.1933594, -1.2666016, -1.0341797, -1.9443359, 0.9741211, -1.9677734, -1.5039062, 1.9345703, 2.9199219, -1.9726562, -1.9521484, 1.1904297, 0.19897461, -1.5390625, 2.0957031, -0.34472656, -1.1542969, 0.3713379, -1.203125, 1.1416016, 0.038269043, -1.3984375, 0.20629883, -0.9091797, -1.6523438, -0.8222656, 0.7114258, 1.3222656, 0.96240234, -1.4462891, 0.6347656, -3.7988281, 1.2412109, 0.11444092, -1.4287109, -0.52685547, 2.5175781, 1.0595703, 1.6103516, -2.3222656, 3.546875, 0.41137695, -0.578125, 2.078125, -3.5820312, -2.4199219, -3.8085938, -3.2441406, 1.4267578, -0.25146484, -0.66503906, 2.4707031, 0.5776367, -0.3894043, 1.9960938, -0.24560547, -1.6259766, -1.5400391, -1.7939453, 0.20568848, -3.0800781, -0.93310547, 1.2333984, -0.034942627, -2.4023438, -0.6767578, -0.6225586, 0.56689453, 1.4082031, 2.6621094, -2.78125, 0.88964844, -1.9638672, -0.014297485, 0.48706055, -1.0371094, 1.6943359, -0.51464844, -0.51171875, -2.9570312, 1.0087891, 0.35498047, -0.3293457, 1.0273438, 2.1757812, 0.40844727, -2.0253906, 0.17041016, 2.4453125, 3.7988281, -0.2734375, -2.109375, -2.5898438, 0.68115234, -0.12683105, -1.0205078, -0.3930664, -1.6728516, -1.2832031, 0.5957031, 2.5332031, 1.2695312, 1.1396484, 2.0019531, -0.8071289, 0.08148193, 0.31225586, -2.0097656, -0.38378906, -0.7426758, 0.2052002, 0.22290039, -1.7285156, -1.34375, 0.22741699, -2.5253906, -0.08282471, -0.5678711, 3.9277344, 2.2265625, 0.6489258, 2.5703125, -0.7636719, -0.4892578, 0.38110352, -0.64941406, -0.91748047, 1.0478516, -0.015365601, 1.7412109, 2.421875, 0.5517578, -1.5673828, 1.1865234, 1.1162109, -2.3242188, -0.5205078, -0.4255371, 1.21875, -0.8125, -0.64453125, 1.2392578, -1.0107422, 3.2714844, -0.72216797, 0.5629883, 0.53125, 0.6538086, -1.1074219, -0.703125, 0.27392578, 0.63964844, 0.8203125, 0.7036133, 1.9921875, -1.9550781, 0.8730469, -0.44262695, 2.4726562, -0.4987793, 1.0214844, 0.37304688, 0.44580078, -0.5493164, -0.89746094, 0.5288086, 2.2207031, 0.28955078, 4.4140625, 1.0048828, -1.9423828, 2.2402344, 1.5, -1.3642578, -1.0517578, 0.11608887, -0.60546875, 0.8823242, 0.7416992, -3.0390625, -0.1472168, 1.9316406, -1.4248047, 0.7705078, -0.5317383, -0.25317383, -0.6796875, -1.1904297, -1.1806641, -0.20043945, -0.21582031, -0.041748047, 0.16186523, 0.05871582, -0.029403687, 2.265625, 1.9609375, 0.08648682, -0.8100586, 2.8886719, -1.6044922, 1.9570312, 0.028533936, -0.02027893, -3.6191406, -0.06921387, 3.9140625, 0.6376953, 1.2675781, 0.55859375, 0.022750854, -3.015625, -0.40039062, -2.6796875, 2.6464844, -1.2373047, -0.3959961, 2.4335938, -3.7558594, 0.17529297, -1.7646484, -0.8051758, -0.99365234, 2.9121094, 1.8466797, -0.8876953, -0.97314453, 1.3095703, -1.3515625, -4.5820312, -2.0351562, 1.1933594, -0.3630371, 0.75439453, 1.3183594, -1.6943359, -0.015342712, -0.14331055, -0.3881836, -2.3125, 0.17028809, -1.4677734, -0.2861328, -2.0214844, 0.4897461, -0.24438477, 1.5332031, 1.1523438, 0.6123047, 1.1865234, -2.3105469, -1.6855469, 2.2558594, -1.703125, 0.38427734, 2.453125, -0.08111572, -0.20922852, 1.3798828, 0.9194336, -2.5, 2.53125, -1.4521484, -0.36987305, -0.21875, -1.0898438, 0.5942383, -0.6899414, -0.92578125, 1.1982422, -0.45996094, 1.6279297, 1.21875, -0.7495117, -0.86279297, 1.5849609, -0.94628906, -1.3115234, 0.06298828, 0.33129883, -0.27148438, 0.39208984, -1.9970703, -1.4404297, -1.046875, -2.0722656, -1.1728516, -0.9794922, 0.08660889, -0.47387695, 0.5800781, 2.3847656, -0.93115234, -0.09472656, 0.4699707, -0.83496094, -0.6323242, 1.0234375, -1.4404297, 2.0644531, 2.03125, -1.4111328, -0.4506836, -1.2021484, 0.8041992, 1.4072266, 0.6323242, -0.11669922, 0.085876465, -0.7260742, -1.484375, 0.5625, 0.62402344, 2.8242188, -0.33251953, -1.109375, 1.1445312, 2.9511719, -0.5917969, 1.0800781, 1.3964844, 1.1103516, -0.9394531, 5, -1.2587891, -2.578125, 0.6225586, -2.8613281, 2.7558594, 0.26342773, -1.4462891, 0.03527832, -0.21325684, -1.9990234, -1.8134766, -0.25390625, -2.0585938, 0.6953125, 1.9443359, -1.0166016, 0.35205078, 1.9951172, 0.99365234, 1.2822266, 2.3613281, 1.3193359, -1.0087891, 1.6357422, -0.48413086, 0.36206055, 1.1337891, -3.15625, 2.7792969, 2.5253906, -1.9248047, -1.4228516, 3.8007812, -1.3779297, 3.2246094, 2.0507812, 0.6738281, 2.2519531, 1.5429688, 2.8222656, 0.4819336, 0.68603516, 1.5439453, -0.061645508, 3.0234375, 1.4716797, 2.2636719, 0.57910156, -1.15625, 1.5712891, -0.06573486, -2.1796875, 0.47973633, 0.8413086, 1.5595703, -3.03125, 1.9726562, 0.5859375, 1.1337891, -1.6416016, 0.25439453, -1.2890625, -1.2558594, -1.2070312, 0.9980469, 3.3847656, -1.6142578, 0.103881836, 0.70703125, 0.5751953, 2.1425781, -3.6601562, 1.1767578, 1.9443359, -0.8041992, 0.9091797, 0.7583008, -0.2890625, 0.5605469, 1.1835938, 0.83935547, 1.4189453, 0.30786133, 0.1977539, -0.65234375, 0.80029297, 0.6791992, 2.4003906, -0.12347412, -1.0224609, 2.7480469, -2.0429688, -2.4941406, -4.3632812, 3.9140625, 1.96875, 1.2929688, 1.5957031, -1.2626953, 2.3398438, 0.1743164, -0.018417358, -2.6367188, 1.0644531, -1.2919922, -2.6640625, -2.0351562, 1.1513672, 0.105529785, 3.0507812, 0.94970703, 0.066467285, 1.921875, 0.76416016, 1.1171875, 0.4345703, 1.5292969, 0.33789062, 0.8359375, -1.3339844, 1.546875, -0.33935547, -2.3046875, -1.7148438, 2.1601562, 2.4472656, 0.11621094, 0.42919922, -0.2692871, -1.0830078, -1.2392578, 0.21569824, 0.53564453, -1.7714844, -2.1113281, -0.28442383, -0.65478516, -1.1884766, -1.5332031, 1.984375, 1.0361328, -1.3105469, -0.0713501, 1.8271484, -0.24304199, 2.3105469, 1.4287109, 0.22338867, -0.53222656, -1.4384766, 0.17236328, 0.021224976, -1.4707031, 0.9975586, 0.40185547, 1.4316406, -0.7402344, -0.30078125, -0.4477539, -0.24841309, 0.3479004, 1.2060547, -1.8515625, -1.0742188, 1.2402344, -0.5673828, -0.43237305, 3.9277344, -0.83203125, 0.6821289, -2.2480469, -1.9462891, -1.1826172, -2.171875, 0.65625, 0.7661133, 3.1269531, 2.0957031, 1.2353516, -0.6074219, -4.0195312, -0.7963867, -1.2021484, 1.5898438, -0.5288086, -0.6796875, 0.83740234, 1.4003906, 1.8105469, 0.4892578, -1.6962891, 0.75634766, -2.1679688, 0.81396484, 0.03012085, 2.8554688, 0.18591309, 0.6508789, -0.027801514, 1.4892578, 0.7866211, -0.94970703, 2.171875, 2.2480469, -0.61328125, -1.9511719, 2.0546875, -1.3671875, 0.04046631, 0.013031006, -0.09802246, 1.3359375, 0.79248047, 1.8095703, -0.6479492, -3.3125]}, "B06XY4SHXG": {"id": "B06XY4SHXG", "original": "Brand: Royal Gourmet\nName: Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel\nDescription: \nFeatures: 5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor\nPorcelain-enameled cooking grates and warming rack offer a total of 797\u00a0square inches\u00a0cooking area,\u00a0which is consisted of\u00a0a\u00a0primary cooking area\u00a0of 598\u00a0square Inches and a secondary cooking area of 199\u00a0square inches\nHeavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement\nElectronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space\nRemovable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters\n", "embedding": [-1.5166016, 0.31445312, 1.2324219, 1.328125, -0.15075684, 1.1962891, 0.41918945, -0.55615234, -1.2802734, 0.81396484, 1.6914062, -1.7128906, -0.25830078, -2.4863281, 1.1630859, -0.62402344, 0.58740234, 1.1123047, 0.72802734, 0.4177246, 0.13793945, 0.9433594, 3.2285156, 1.1181641, 0.3635254, 1.4169922, 2.7480469, -3.5878906, 0.7553711, -0.9550781, 2.484375, -0.099243164, 1.1777344, 2.4648438, -2.7519531, -1.2197266, -2.453125, 0.6347656, -2.4003906, 0.57714844, 0.32055664, -1.2646484, 0.5966797, 1.0566406, -3.0898438, -0.6425781, 0.3305664, -0.24523926, -2.7207031, 0.9511719, 0.88964844, 1.5107422, -0.7548828, 1.2929688, -1.2001953, 1.8574219, 2.0742188, -1.2236328, 0.8696289, -0.20239258, 2.9179688, -1.2539062, -2.46875, -1.1513672, -1.3046875, -0.83447266, 0.15625, 0.76904297, -0.06713867, -0.52783203, 1.8037109, -0.6381836, -0.2709961, 0.43066406, -0.75927734, -1.1484375, -1.8691406, 2.4140625, 0.87353516, 0.65771484, -2.59375, 1.4042969, 0.88378906, -3.0292969, -0.49243164, 0.74121094, 0.109191895, -1.0019531, -0.0070877075, 1.7167969, -0.08282471, 2.5117188, -2.7988281, -3.2207031, 2.5117188, -0.8286133, 0.82128906, 1.6181641, 1.2441406, 1.9589844, 0.92285156, -1.5214844, -2.3203125, -0.6777344, -0.122558594, -2.1445312, 0.43701172, 0.7260742, -4.0625, -2.0195312, -2.1757812, 0.28710938, 0.9633789, -0.17272949, 0.030014038, 0.5888672, -0.4338379, 3.0820312, 1.1630859, 0.7583008, 1.8652344, -1.5, 0.009857178, -1.453125, 0.44458008, 1.7539062, -1.7441406, 2.8886719, 6.7617188, -2.5019531, -0.70947266, -2.3769531, 1.8964844, -0.46557617, -1.5283203, -1.6914062, -1.8212891, -0.80371094, -2.9160156, 0.030792236, -2.7871094, 1.8984375, 1.4482422, -0.106933594, -2.5820312, -0.39526367, -0.24072266, 1.0419922, -0.7241211, -1.1660156, -0.9189453, -2.0410156, 2.453125, -3.2636719, 2.6328125, -1.8242188, -0.2614746, -1.6123047, 3.1503906, 1.1640625, 1.6806641, -2.7304688, -1.4912109, 1.9716797, -1.8447266, -0.29418945, -1.2119141, 2.7578125, 1.8515625, 1.1152344, 0.12335205, -0.46557617, 0.5917969, 0.23657227, -0.32543945, -0.7084961, -0.08081055, 2.5039062, 1.6796875, -0.46142578, -1.3046875, -3.8964844, -0.6533203, 0.96777344, 0.66845703, -1.8115234, 1.4902344, 0.7685547, 0.27563477, -0.7817383, 1.125, -0.75390625, 0.60253906, 0.4880371, -0.16674805, -1.1152344, -0.7817383, -1.3642578, -1.0273438, -0.5522461, -0.31958008, -0.06958008, 0.1508789, 0.10266113, -3.34375, -4.1835938, -0.51904297, -3.8964844, 1.3662109, 1.8935547, 2.234375, -1.3828125, -0.010375977, -2.9882812, 0.26245117, -2.8574219, 1.8710938, -0.88427734, 2.546875, 1.6552734, -0.51660156, 0.7910156, 1.5185547, 0.5493164, 0.7133789, 1.0039062, 0.5102539, 1.2646484, -1.3554688, -1.4931641, 2.0996094, -0.64453125, 0.10760498, 1.4404297, -1.0859375, 1.6367188, -1.0097656, -2.2695312, -0.6513672, -0.6796875, -0.17443848, -1.4755859, -0.7529297, -0.5161133, 0.07489014, 0.3725586, -1.7128906, 1.1425781, 1.7070312, 0.46435547, -0.67578125, 1.8876953, 1.2265625, 0.5493164, -0.014343262, 0.3413086, -1.0908203, 0.7919922, -0.45825195, -2.6035156, 1.9228516, -1.4248047, -0.68652344, -1.8056641, -0.4169922, -1.5410156, 3.375, 0.37109375, -2.6660156, -1.4638672, 0.1204834, -0.24230957, 3.0761719, -0.82666016, 1.4179688, 2.8554688, -2.40625, 2.5703125, -1.9267578, 1.6660156, 0.6245117, -1.2685547, 2.2246094, -3.2011719, -0.48706055, 0.8183594, 0.98583984, -0.8833008, 0.48266602, 1.4941406, 5.0390625, -1.5615234, -3.765625, 3.6269531, -1.7998047, -2.1738281, 2.5019531, -0.40576172, -0.48168945, -0.38305664, 1.4902344, 0.6635742, 2.0820312, 0.47680664, -1.2822266, -2.2363281, 0.06652832, -0.64160156, -1.5205078, -0.36157227, -0.97265625, -1.4130859, -2.9121094, 0.7338867, -1.7978516, 0.04598999, 4.1015625, -2.4472656, 1.3007812, 0.00856781, 1.0839844, 1.3398438, -1.5664062, -1.5078125, 0.7680664, -0.23254395, -1.2402344, -1.2626953, 0.44506836, 0.52783203, 0.029190063, -0.23254395, 0.20568848, -1.4287109, -2.875, -0.081604004, -4.1015625, -2.4257812, -0.46118164, -1.2539062, -0.7182617, -0.4013672, -4.1171875, -0.15808105, -0.19384766, -3.375, -1.4023438, -1.4228516, -1.1376953, 0.26293945, -0.26733398, 0.5439453, 0.41015625, -2.46875, 0.41479492, 0.24682617, -0.9194336, 1.1132812, -0.112854004, -0.6269531, -0.3395996, -1.3398438, -0.5253906, 2.1914062, 0.7397461, -0.8300781, -0.37451172, -3.3261719, 0.8613281, -1.7617188, -0.12573242, -1.5966797, 1.5410156, -2.1699219, -1.7294922, -0.48828125, -0.9423828, 3.3027344, 0.18347168, 1.3623047, 0.39648438, 1.0830078, 1.4091797, -0.45336914, -1.4746094, -1.9091797, 2.046875, -3.5566406, -4.1640625, -3, 1.4394531, -0.87109375, 0.19433594, -0.7910156, 2.7675781, -1.6005859, 1.1484375, -1.2890625, -0.71240234, 0.52441406, 1.2880859, 0.088256836, 0.4506836, -1.6767578, -1.0976562, -1.2773438, -1.453125, 1.0166016, 2.5722656, -1.5742188, 0.84521484, 0.9111328, -0.17346191, -0.09564209, -0.6894531, -2.1914062, 3.1074219, 1.3828125, -1.9755859, 2.5683594, -0.6010742, -3.0351562, -0.6401367, 0.23364258, 2.5390625, 1.0732422, 2.5234375, 0.7939453, 1.7246094, 2.2578125, 2.4765625, 0.31079102, 0.14196777, -0.45361328, 1.8828125, -0.98095703, -1.9609375, 0.71875, 2.6269531, -1.0908203, -1.4746094, 2.7167969, 0.9013672, 3.6738281, 1.8769531, 1.0087891, 0.061340332, -1.3037109, 2.5234375, 1.9472656, -0.22973633, -0.3400879, -1.4394531, 0.90771484, -1.8232422, 0.9135742, 2.8027344, 0.48950195, 2.3085938, 0.83203125, 0.66259766, -0.21606445, 0.8876953, 1.6513672, 2.9277344, 0.43603516, 2.0859375, -0.39672852, 0.10083008, -0.8232422, -0.66259766, -0.38232422, -3.4804688, 0.6904297, 1.6933594, -1.1425781, 0.6591797, 0.76464844, 1.0537109, 0.7470703, -0.46923828, 0.15856934, -2.2558594, -0.9355469, 0.5083008, 0.6303711, -0.08215332, -3.0527344, 2.2714844, -1.5654297, -0.43725586, 0.2479248, 3.3574219, -2.2851562, -0.87597656, 1.6982422, -0.8496094, -1.5537109, 1.4833984, 0.27172852, -1.9980469, 2.0332031, -2.390625, 1.0917969, 1.0615234, -1.0791016, 0.64404297, -0.6591797, -0.12200928, -0.30541992, 0.95654297, 0.5932617, 1.2265625, -0.4309082, 0.42041016, -3.9316406, 0.8305664, -0.05480957, -1.8378906, -0.67333984, 2.15625, 0.3840332, 2.1386719, -1.9375, 3.0820312, -0.6660156, -0.7783203, 1.2421875, -4.453125, -2.5546875, -3.6445312, -3.84375, 0.59765625, -1.2255859, -1.4697266, 2.1132812, 0.38085938, -0.6513672, 1.1591797, -0.33984375, -1.9580078, -0.99365234, -1.2529297, -0.4177246, -1.1191406, -1.3867188, 0.15148926, -0.70654297, -1.6669922, -1.4345703, 0.27490234, 0.061035156, 1.9335938, 1.9492188, -2.7167969, 1.9589844, -2.1386719, 0.53808594, -0.63964844, -1.0166016, 2.8144531, -1.8818359, -0.3034668, -2.9960938, 2.2363281, 0.4567871, -1.1015625, 1.7763672, 1.6542969, 0.05529785, -3.6171875, -0.9355469, 1.0234375, 3.6503906, -0.53759766, -2.3691406, -1.5917969, 0.7651367, -0.048217773, -2.5664062, 0.47973633, -2.3671875, -1.2060547, -0.8535156, 3.0644531, 1.1679688, 1.9794922, 0.45629883, -1.3105469, -1.0898438, 0.8208008, -1.9296875, -1.7353516, -1.1347656, 0.32836914, 0.16955566, -1.9130859, -1.6757812, -0.87597656, -2.6269531, 0.10760498, -2.6542969, 3.9960938, 2.3164062, 0.6796875, 2.5429688, -1.6855469, 0.8051758, 0.33447266, -0.32910156, -0.29956055, 1.5058594, 1.2128906, -0.5830078, 0.93408203, 0.17260742, -2.2265625, 0.13085938, 2.4707031, -1.9785156, -0.101135254, 0.13330078, 0.6098633, -0.64990234, -0.5942383, 2.6972656, -1.0898438, 3.2285156, -0.50927734, -0.27954102, -0.43554688, 0.8076172, -0.99658203, 0.6855469, -0.5522461, -0.3935547, 1.0097656, 1.6943359, 1.5751953, 0.012718201, 0.10510254, -0.8847656, 2.8320312, 0.4399414, 0.57910156, -0.060058594, 1.3554688, -0.0949707, -1.4521484, 0.38012695, 2.8378906, -0.014701843, 4.28125, 1.9072266, -3.2851562, 1.4199219, -0.10217285, -2.0566406, -0.36132812, 0.9428711, 0.79296875, 1.2246094, 0.39086914, -2.953125, -2.5996094, 1.2851562, -0.7626953, 0.8129883, -0.5126953, -1.8183594, 1.0400391, -0.2578125, -0.3005371, 0.12451172, 0.4963379, -1.2539062, 0.03704834, 0.97216797, -1.6425781, 1.0722656, 2.0332031, -0.06829834, -2.4257812, 2.8632812, 0.011566162, 1.7568359, 0.06341553, -0.17651367, -2.03125, 0.33544922, 4.5742188, 0.54345703, 1.6269531, 1.1533203, 2.1777344, -2.3789062, 1.9521484, -2.3691406, 4.5820312, -1.5478516, -1.3125, 2.5195312, -3.8398438, 0.24487305, -2.1367188, 2.0996094, -1.1816406, 1.5439453, 2.6171875, -0.09814453, -0.73339844, 0.6118164, -1.4755859, -3.9003906, -1.5019531, 0.73095703, 0.2944336, -0.3869629, 0.5991211, -2.453125, 1.6894531, 0.8173828, -0.95996094, -3.1425781, 0.12927246, -0.25830078, -1.5820312, -1.9169922, 1.0976562, -0.22644043, 2.7890625, 1.0595703, -0.75927734, 0.0914917, -4.109375, -1.7148438, 1.5986328, -1.4697266, 0.89746094, 2.4921875, 0.48291016, 0.96435547, 0.59521484, -0.8925781, -2.0078125, 1.7753906, -1.8583984, -0.20410156, 0.82958984, -0.65234375, 0.5522461, -0.65185547, -1.7119141, 0.5410156, 0.21691895, 0.7109375, 0.53222656, 0.65234375, -0.24072266, 1.3369141, -0.49731445, -1.1835938, 0.07141113, -0.2854004, -0.71435547, 1.1494141, -1.2324219, -0.8955078, -1.3408203, -1.5908203, -1.2851562, -2.6679688, 0.19274902, -0.9145508, 0.9692383, 1.2148438, -0.078063965, -1.0732422, 0.5307617, -0.32006836, 0.09576416, 0.32910156, -2.0878906, 1.9970703, 1.3779297, -1.7373047, -0.2010498, -0.2290039, 0.9370117, 1.5722656, 0.58496094, -0.10821533, 0.4580078, -0.09777832, 0.60302734, -0.058654785, 0.7885742, 1.8369141, -0.71484375, -1.0146484, 1.4824219, 4.59375, 0.51123047, 1.7236328, 1.0058594, -0.06866455, 0.38208008, 4.9648438, -1.625, -2.3164062, 1.4316406, -2.7480469, 1.1630859, 0.3942871, -1.0039062, 0.27661133, -2.015625, -2.1015625, -2.1894531, 0.18310547, -3.2753906, 1.2919922, 1.9013672, -1.6611328, -0.90966797, 2.3457031, 0.91015625, 0.8959961, 2.375, 0.46362305, -0.23901367, 1.4130859, -1.1748047, 0.013160706, 0.9003906, -1.9873047, 2.1777344, 3.40625, -0.8125, -1.2021484, 4.4726562, -0.22741699, 1.7460938, 2.5917969, 0.15197754, 1.2158203, 2.140625, 3.2011719, 0.78515625, 0.30371094, 1.0478516, -0.7949219, 1.3447266, 1.4794922, 3.0488281, 0.41455078, 0.30932617, 2.1777344, -0.6894531, -1.9384766, 0.66015625, 1.0478516, -0.12597656, -1.1777344, 1.6171875, 0.30810547, 1.7246094, -1.1552734, -0.51171875, -1.6181641, -1.9580078, -0.30444336, 0.7783203, 3.125, -1.7138672, 1.0292969, 0.13146973, -0.50634766, 1.6455078, -3.8261719, 1.6435547, 1.8017578, -0.117614746, 1.3457031, 0.9111328, 0.83984375, -0.4182129, 0.33325195, 1.5917969, 1.1708984, 1.2939453, 0.6958008, -1.9785156, 1.7646484, 0.7133789, 2.6757812, 0.10021973, 0.14208984, 3.8808594, -1.6757812, -1.8164062, -4.2617188, 4.5234375, 1.1191406, 0.8354492, 1.9443359, -1.9765625, 2.3261719, 0.18408203, -0.026107788, -2.4335938, 0.8095703, 0.2836914, -2.6953125, -2.2167969, 2.4179688, 0.19970703, 2.6660156, 1.8828125, -0.7973633, 1.7402344, 0.4802246, 0.47607422, 1.859375, 2.28125, -0.3972168, 1.1777344, 0.20629883, 2.953125, -0.7651367, -1.1054688, -3.0039062, 3.78125, 1.2802734, -1.1054688, 0.7402344, -0.37280273, -0.70654297, -0.46069336, 0.09283447, 0.41430664, -2.984375, -1.9990234, 0.06329346, 0.4169922, -1.2802734, -0.18908691, 2.703125, -0.38964844, -1.8642578, 0.026382446, 1.7167969, -1.8154297, 1.8388672, 0.75878906, 0.42700195, 0.7421875, -1.4892578, 1.7060547, 0.10675049, -3.1503906, 0.7871094, -0.11236572, 1.7138672, -2.1582031, 0.28759766, 0.6411133, 0.6352539, -0.35205078, 0.69189453, -1.2294922, -0.67041016, 2.4921875, -0.35058594, 0.50390625, 2.9316406, -0.43041992, 0.59277344, -2.9042969, -2.6914062, -0.09075928, -0.2446289, -0.15332031, 1.2324219, 2.03125, 2.4160156, 0.95410156, -0.84472656, -3.78125, 0.6118164, -1.2714844, 1.1445312, -0.5854492, -0.42822266, 0.73291016, 1.8007812, 1.9765625, -0.23327637, -3.1914062, -0.3955078, -1.8154297, -0.25952148, 0.28442383, 2.6953125, -0.5546875, 0.9892578, 0.31860352, 2.078125, 1.3876953, -1.2558594, 1.0136719, 2.8808594, -0.67333984, -2.2636719, 3.1679688, -1.2392578, 0.47705078, 0.93847656, 0.32592773, 1.5800781, 0.22021484, 1.3867188, -0.5449219, -3.921875]}, "B01FTD8JB4": {"id": "B01FTD8JB4", "original": "Brand: Royal Gourmet\nName: Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22'' L, Black\nDescription: \nFeatures: SPACIOUS COOKING SURFACE: 22.4\" L x 21.7\" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly.\nPOWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total.\nQUICK START-UP: Electronic ignition system offers a reliable spark at every simple push.\nNO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup.\nEASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.\n", "embedding": [-1.2900391, -1.1894531, -0.12573242, 2.2363281, -0.6723633, 1.9482422, 0.5078125, -0.54785156, -1.7783203, 0.9394531, 1.4345703, 0.79785156, 0.34838867, -1.4677734, 0.6464844, 1.2949219, 1.1757812, 0.56347656, 0.77001953, -0.43139648, 0.08691406, 0.91015625, 2.7929688, -0.47998047, -1, 2.0859375, 3.6816406, -3.984375, 0.33984375, -0.6308594, 3.0234375, -0.24230957, 0.9526367, 1.8505859, -2.1816406, -0.7631836, -1.7636719, 1.3798828, -2.3574219, 1.1464844, 0.24169922, -0.41479492, 1.1582031, 0.6982422, -2.71875, -1.1191406, 1.1884766, 0.49169922, -2.3554688, 0.30493164, 2.203125, 0.6513672, -0.4267578, 0.5649414, -0.9267578, 2.2265625, 1.4746094, -0.17407227, -0.3503418, -0.3347168, 3.2597656, 0.2536621, -2.5878906, -0.2529297, -0.18481445, -0.9838867, 0.0048561096, 0.8129883, -0.13769531, -2.9257812, 2.2714844, -0.8510742, -0.91503906, 0.023849487, -0.0018262863, -0.69677734, -1.7695312, 0.8276367, 1.9423828, 0.41552734, -0.9926758, 1.9130859, 0.74853516, -2.5332031, 0.68359375, 0.4868164, -0.5341797, -0.95654297, 1.3076172, 0.77246094, 0.5493164, 1.2128906, -2.9355469, -3.9238281, 1.7177734, -0.6635742, 1.7197266, 1.7304688, -0.98779297, 1.6943359, 0.4465332, -1.6972656, -1.7685547, -0.92285156, -2.0546875, -1.296875, 1.8779297, -0.52978516, -2.484375, -1.3525391, -1.8710938, -0.11584473, 2.1894531, -0.14794922, 0.7739258, -0.73095703, 0.10308838, 3.0488281, 1.2919922, 0.28466797, 1.4960938, -1.140625, 1.4931641, -1.0888672, -0.23059082, -0.20959473, -0.3310547, 1.2675781, 5.2265625, -2.5097656, -0.5126953, -1.7636719, 4.0546875, -0.04220581, -1.8388672, -2.6328125, -1.625, -0.27783203, -2.6738281, -0.06262207, -1.8642578, 0.53271484, 1.6103516, -0.6166992, -3.2988281, -0.35229492, 0.3251953, 0.5683594, 0.0041542053, -0.20959473, -0.09649658, -1.4882812, 1.5634766, -2.7363281, 1.3134766, -1.796875, -1.0742188, -0.7402344, 4.2539062, -0.029586792, 0.578125, -2.8183594, -0.7739258, -0.08709717, -1.4335938, 1.2285156, -1.4384766, 3.8222656, 1.2373047, 1.6953125, -0.6855469, 0.6352539, -0.18371582, -0.6640625, 0.20825195, -0.7910156, -1.3310547, 0.8173828, 1.4111328, -1.6142578, -2.0507812, -4.0273438, -0.9741211, 0.3540039, 1.265625, -1.0351562, -0.15405273, -0.2121582, 1.6298828, -0.7133789, 0.2578125, -0.42895508, 1.3388672, 0.8027344, -0.0211792, -0.75341797, -1.5283203, -2.0507812, -0.07739258, 0.80029297, 0.06585693, 0.11010742, 0.07489014, 0.03213501, -2.4941406, -3.4042969, -0.124816895, -2.5683594, 1.6298828, 1.5966797, 1.1865234, -3.21875, 1.1357422, -1.4052734, -0.083984375, -1.9560547, 2.1894531, 0.20666504, 1.9882812, 2.2480469, -1.3818359, -0.21362305, 1.1367188, 1.9707031, 0.10040283, 0.9692383, 0.7128906, 1.2070312, -2.9179688, -0.7758789, 1.5908203, 0.3857422, -0.42382812, 0.91748047, -0.88916016, 1.1962891, -0.72021484, -1.1699219, -0.16699219, -0.8120117, 0.3959961, -0.59033203, 0.31176758, -0.2668457, 0.006752014, 2.9355469, -2.2226562, 1.8349609, 1.0615234, 0.15563965, -0.081848145, 1.9257812, 1.5224609, 0.2154541, -1.2294922, 0.4182129, -1.0722656, 0.45141602, -1.0410156, -3.4179688, 1.8857422, -0.27392578, -0.83691406, -1.7470703, 1.1884766, -1.4960938, 2.4511719, 0.9140625, -1.6074219, -1.1943359, -0.1459961, -0.4025879, 2.3867188, -0.009315491, 1.1201172, 1.2929688, -1.4667969, 3.5371094, -1.0097656, 1.1425781, 0.68896484, -1.7822266, 1.5546875, -1.3037109, -0.3630371, 1.5361328, 1.5136719, -0.39086914, -0.2902832, 1.5761719, 4.8359375, -0.4873047, -3.0488281, 3.5019531, -2.0058594, -0.39233398, 2.1699219, -0.9379883, -1.6035156, 0.47485352, 1.6298828, 0.48266602, 1.3388672, 0.010498047, -1.3232422, -2.3339844, -0.21411133, -0.68603516, -1.8701172, 1.6972656, 0.54296875, -1.6464844, -1.9697266, 0.73779297, -1.5957031, -0.43139648, 1.8789062, -2.4101562, 2.6582031, 0.026016235, 1.9921875, 1.4550781, -0.26391602, -0.49267578, -1.0361328, -0.19262695, -0.72998047, 0.41796875, 1.3740234, -0.484375, -0.4243164, 0.41333008, -0.3503418, -1.0068359, -2.9101562, 0.50390625, -2.6972656, -4.2617188, 0.7792969, -2.0195312, -0.83691406, 0.79833984, -1.640625, 0.5214844, 0.14990234, -3.9511719, -1.8173828, -1.9550781, -2.3164062, -0.52441406, -0.36669922, -1.2255859, -0.6723633, -2.609375, -0.5703125, -1.2578125, -0.95410156, 0.2956543, -0.1529541, -1.140625, -1.0302734, -2.2558594, -0.81933594, 0.33813477, -0.028533936, -0.20861816, -0.3244629, -2.5839844, 0.48266602, -1.0449219, -0.94677734, -1.4189453, 0.015365601, -2.0371094, -0.34838867, -0.63134766, -1.1132812, 3.9492188, -1.3105469, 1.4277344, -0.029373169, 1.3642578, 1.8740234, -0.71484375, -1.5703125, -1.1738281, 1.9384766, -3.0351562, -4.3320312, -1.3027344, -1.4619141, 1.0498047, 0.41552734, -1.5185547, 1.5341797, -0.6616211, 1.9677734, -2.4609375, -1.1630859, 1.0634766, 1.796875, -0.9501953, -1.3535156, 0.06488037, -0.88427734, -0.6328125, -1.5263672, 0.49829102, 2.03125, -0.32104492, 1.4619141, -0.48046875, -1.1962891, -0.084350586, -0.64990234, -2.6171875, 3.0664062, -0.98095703, -2.9277344, 4.3242188, 0.47729492, -2.3730469, -2.6933594, -1.0976562, 2.9277344, 1.0498047, 2.6113281, 0.81640625, 1.1220703, 1.6132812, 2.3808594, 0.0036830902, -0.92529297, -1.2548828, 2.1777344, -0.375, -2.7851562, -0.0012626648, 1.1650391, -1.4970703, -0.49194336, 2.7792969, 0.41552734, 3.5351562, 1.4990234, 1.7460938, 0.23937988, -1.7021484, 1.4960938, 1.0693359, -1.1152344, 1.4716797, -0.546875, 1.109375, 0.04638672, 1.6943359, 1.5869141, -0.22387695, 2.390625, -0.04232788, 0.9140625, -1.3447266, 1.5517578, 1.0429688, 2.4140625, 1.8261719, 1.7636719, 0.09552002, 0.79833984, 0.5126953, 0.40625, 0.2775879, -2.2011719, -0.12976074, 2.2167969, 0.6557617, -0.015083313, 0.27197266, 1.0029297, 0.7080078, 0.94677734, 1.2382812, -2.1640625, -1.3671875, -0.04852295, 0.17749023, -0.4321289, -2.8027344, 2.5351562, -2.3671875, -1.3789062, 0.5571289, 3.2207031, -1.9814453, -1.4970703, 2.4355469, 0.4621582, -1.0947266, 1.8925781, 1.0693359, -1.8193359, 0.8149414, -0.85498047, 0.9975586, -0.61083984, -0.5859375, 0.037475586, -0.99072266, 0.026870728, -0.74658203, 0.6665039, 1.1953125, 0.47705078, -0.68896484, -1.1279297, -3.4414062, 0.7319336, 0.32250977, -1.4824219, -1.0009766, 2.6894531, 1.0458984, 0.5888672, -0.8198242, 3.1113281, -0.5961914, -0.9243164, 1.1884766, -3.0605469, -2.3183594, -4.0742188, -3.03125, -0.14208984, -1.0380859, -1.0800781, 2.4238281, 0.10205078, 0.1394043, 2.5253906, -0.5541992, -1.4121094, -0.15148926, -1.4013672, 0.18432617, -1.4892578, -0.72998047, -0.3540039, -0.18249512, -1.9970703, -0.6538086, 0.72558594, -0.24987793, 1.1513672, 1.9345703, -4.0507812, 0.39624023, -3.1777344, 0.57714844, 0.4873047, -0.20043945, 1.5693359, -0.69970703, -0.117248535, -3.3007812, 0.7861328, -0.1274414, -0.49072266, 1.2792969, 1.0234375, 0.34204102, -2.4316406, -0.4321289, 1.140625, 3.6601562, -0.08917236, -1.7451172, -2.5332031, 2.0019531, -0.3076172, -1.34375, -1.3847656, -1.75, -0.39770508, -1.8300781, 2.2128906, 0.9951172, 1.7490234, 2.3417969, -1.2724609, -0.67041016, 0.09277344, -1.6875, -1.5722656, -0.111694336, 0.7182617, -0.06695557, -1.9970703, -1.7597656, -0.0037975311, -2.7773438, -0.48095703, -2.1132812, 4.0742188, 1.7099609, 0.28735352, 2.3242188, -1.5732422, -0.14245605, 0.6503906, -0.6308594, -2.3886719, 0.7426758, -0.35302734, 1.0673828, 1.984375, 0.7832031, -1.3300781, 0.6796875, 1.3349609, -2.7792969, 0.05871582, -1.0410156, 0.35546875, -1.3642578, -0.44482422, 2.3222656, -0.29956055, 2.9765625, -0.7661133, -0.63134766, 0.6821289, 1.1523438, -1.2216797, 0.70751953, 0.66259766, 0.31518555, 0.95458984, 1.2861328, 1.7470703, -2.3535156, 0.578125, -0.5913086, 2.25, -0.25439453, 1.2412109, -0.64160156, 1.1972656, -0.45385742, -1.2666016, 0.8808594, 1.6738281, -0.07287598, 3.3652344, 1.2041016, -3, 1.7207031, -0.21008301, -2.8730469, -0.9243164, 0.85791016, 0.20947266, 0.19543457, 1.6660156, -2.8378906, -0.8989258, 1.3457031, -1.3300781, 0.9223633, 0.8256836, -0.6567383, -0.3059082, -0.20361328, -1.6054688, -0.73583984, 0.38256836, -1.0761719, 0.076049805, 0.33764648, -0.37963867, 1.1826172, 1.9384766, -0.35131836, -3.0898438, 2.75, -0.8588867, 1.4882812, 0.09442139, 0.6694336, -2.4863281, -0.50683594, 3.7636719, 0.02973938, 1.0585938, 1.2373047, 0.19250488, -2.8691406, 1.9003906, -2.6308594, 3.03125, -0.6411133, -1.7177734, 2.5722656, -4.0429688, -0.79345703, -2.8808594, 0.7402344, -0.9794922, 2.5097656, 2.3320312, -0.03930664, -0.39086914, 2.3769531, -1.5634766, -3.96875, -1.4775391, 1.0146484, 0.5776367, -0.7319336, 0.96728516, -1.7617188, 0.44311523, 0.12402344, -1.9238281, -2.453125, -0.014152527, -1.5429688, -0.9350586, -1.9511719, 0.41748047, 0.4375, 1.8125, 1.6826172, 0.56591797, 1.1074219, -2.5917969, -1.8681641, 1.4345703, -1.3193359, 0.92626953, 2.9121094, 0.109436035, 0.12805176, -0.23083496, -0.15563965, -1.6728516, 2.2480469, -2.4589844, -0.09918213, 0.3779297, -0.60058594, 0.44970703, -0.68896484, -1.4091797, 1.0185547, -0.42260742, 1.0595703, 2.0625, -0.61621094, -0.72265625, 1.7285156, -1.0966797, -1.8369141, -0.8745117, 0.36328125, -0.36547852, 0.4501953, -2.7421875, 1.3232422, -1.8652344, -1.4775391, -0.33813477, -2.3007812, 1.1240234, -0.21154785, 0.6513672, 2.8144531, -0.23400879, -0.11279297, 0.5932617, -0.7558594, 0.6953125, 0.25195312, -1.6328125, 2.1386719, 1.6298828, -1.1738281, 0.101257324, 0.2709961, 0.8535156, 1.6464844, 1.8613281, -0.30859375, -0.51171875, 0.029876709, -0.5986328, -0.22888184, 0.40649414, 2.7441406, -0.7714844, -1.0566406, 0.6269531, 3.6855469, -0.26000977, 1.2382812, 1.5527344, 0.5942383, -0.67333984, 6.3554688, -0.55029297, -2.7304688, 0.6591797, -2.8144531, 2.265625, 0.44970703, -0.3330078, -0.6748047, 0.13659668, -1.6279297, -2.2128906, -0.5839844, -2.6054688, 1.0126953, 1.7363281, -1.4306641, -0.44213867, 1.2929688, 1.7392578, 2.5234375, 2.5136719, 1.1806641, 0.09307861, 1.7900391, -0.9370117, -0.09442139, 0.5834961, -1.9658203, 2.2304688, 2.4101562, -0.89501953, -2.0019531, 1.5380859, -1.4697266, 2.7519531, 2.4628906, 0.5390625, 1.7392578, 1.6914062, 2.4941406, 0.69970703, 0.77197266, 0.48413086, 0.19909668, 1.6259766, 1.5693359, 3.1621094, 0.7089844, -1.1591797, 1.2255859, -1.2773438, -2.4296875, 1.5097656, 0.3486328, 1.7158203, -3.2226562, 1.8242188, 0.7192383, 1.0048828, -1.828125, -1.1308594, 0.5727539, -1.0996094, -0.30444336, 1.7304688, 4.1640625, -0.14428711, 0.88183594, 0.73876953, -0.9008789, 2.96875, -2.9726562, 0.8203125, 2.4511719, -0.8198242, 1.4121094, 0.74316406, -0.101379395, 0.1105957, 1.4511719, -0.033050537, 0.4482422, 0.3251953, -0.46435547, -1.2539062, 1.03125, 0.7788086, 2.0390625, 0.14367676, -1.3105469, 2.9707031, -2.7851562, -1.6728516, -2.7070312, 4.1132812, 2.5527344, 0.72998047, 1.9892578, -1.4667969, 2.2539062, 1.1308594, 0.22717285, -3.2597656, 1.1660156, -1.4492188, -1.7685547, -0.9868164, 1.4589844, 0.29614258, 1.9902344, 1.3681641, -0.8330078, 2.8007812, -0.084106445, 0.9638672, 1.3974609, 2.3496094, -0.3996582, 0.1953125, -0.5527344, 0.9013672, -0.9326172, -3.2363281, -2.4765625, 2.359375, 0.9638672, -0.5756836, 0.9765625, -0.6982422, -1.5488281, -1.5771484, 0.6738281, 0.8642578, -2.6992188, -1.5888672, 0.6855469, -0.33569336, -1.0097656, -2.1308594, 2.6738281, 0.87109375, -1.4560547, -0.8510742, 2.3808594, -0.10205078, 3.0742188, 0.43725586, 0.3112793, -0.08081055, -1.6425781, -0.17919922, 0.47338867, -2.40625, 0.9370117, 1.3710938, 1.5292969, -1.4951172, -0.79785156, -0.89697266, 0.6328125, 1.234375, 0.94091797, -1.5410156, -1.1279297, 2.078125, -0.95654297, -0.24133301, 3.2226562, -1.2802734, 1.1201172, -2.8535156, -2.1953125, -0.5048828, -0.4321289, -0.013442993, 1.2236328, 3.2285156, 3.8691406, 0.80371094, -0.92529297, -2.6054688, -0.26171875, -1.6181641, 1.4160156, -1.3466797, 0.12792969, 0.3618164, 1.8710938, 2.5527344, -1.0283203, -1.9472656, 1.3232422, -1.7304688, 0.6333008, 0.6850586, 2.9804688, -0.16345215, 0.16491699, 0.24487305, 1.1699219, 1.1591797, -1.2089844, 1.0302734, 3.0644531, -0.39135742, -3.0957031, 3.1484375, -1.1269531, 0.13195801, 0.3857422, 0.60058594, 2.0175781, 1.2470703, 1.7070312, -0.14282227, -2.4355469]}, "B08689LFJ9": {"id": "B08689LFJ9", "original": "Brand: Grand patio\nName: Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle\nDescription: Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

          Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

          Note:
          The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
          Glass stones shown in photos are decoration only, and are NOT included.
          Batteries: 1 AA battery required (NOT included).

          Dimensions: 43.3\" (L) x 29.1\" (W) x 24.2\" (H)
          Package Includes:
          1 x 43 inch gas fire pit table
          1 x Hose regulator valve set (assembled)
          1 x Hardware and tools
          1 x Assembly & user manual

          Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.\nFeatures: Ambience: 18\" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires.\nMaterials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included.\nFeatures: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included).\nDual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off.\nDimensions & Packing Included:Overall Table Size :43.3\" (L) x 29.1\" (W) x 24.2\" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.\n", "embedding": [-1.1494141, 0.35131836, 1.1884766, -1.5527344, 1.890625, 1.4580078, 0.9897461, -2.2460938, -0.4489746, 3.3710938, -0.17199707, 0.71484375, 0.5703125, -4.1953125, 2.5839844, -0.12585449, -0.002456665, 1.0410156, 2.6503906, -1.921875, 2.6992188, -0.34057617, 0.87841797, 0.07116699, 0.3774414, -1.0820312, 2.6445312, -3.40625, -0.10583496, -0.12145996, 1.1269531, 0.91845703, -0.6088867, 1.4960938, -1.8818359, -1.8447266, -1.1357422, 2.0195312, -2.4882812, 0.6401367, -1.7558594, -2.3203125, 3.4453125, 1.3554688, -1.5556641, 0.8701172, 1.5644531, 0.20043945, 0.5419922, -1.4003906, 0.83154297, 1.2646484, 1.7714844, 0.20214844, -2.7851562, 2.0878906, -0.61621094, -2.796875, 2.3632812, 0.97802734, 1.8837891, -1.7021484, -1.0537109, 2.515625, -1.3935547, 1.7363281, -0.6357422, 0.69677734, -0.23132324, 0.8046875, 1.7333984, 0.3552246, -0.78027344, 0.45922852, 1.1523438, -0.78271484, -2.7148438, 1.6279297, 2.796875, -1.6005859, 0.6323242, 2.2792969, 1.1855469, -2.1640625, -0.22619629, -0.57958984, -1.8798828, -0.30688477, 1.0478516, 2.4882812, -1.1689453, 3.8105469, -1.6660156, -3.0488281, 1.1933594, -1.2695312, 0.67578125, 1.4814453, -0.6791992, 1.2304688, 1.7724609, -0.13122559, -1.4716797, -0.52783203, -2.0273438, -0.6616211, 1.4023438, 0.2286377, -1.1005859, 0.52490234, -1.09375, 0.8359375, 2.1738281, -1.8242188, -1.2089844, 2.2773438, 0.39916992, 3.3320312, 3.0820312, -0.14343262, 4.7421875, 0.2866211, 1.0097656, -1.0400391, 0.66552734, -0.12756348, -1.3857422, 2.7070312, 0.9013672, -1.2861328, 0.6479492, -2.953125, 0.6376953, 2.2363281, -2.828125, 0.017059326, -1.6425781, -1.3759766, -5.0898438, 0.10235596, -2.0175781, 1.1494141, 1.6328125, 0.7651367, -4.0195312, -0.88378906, -0.7133789, 2.34375, -0.38012695, -2.0800781, 1.1054688, -0.65283203, 0.57666016, -2.8125, 0.03591919, -2.3789062, 1.8369141, -2.4589844, 3.4179688, 0.48364258, 1.9716797, -2.1035156, -0.85595703, 1.7255859, 0.44482422, 0.11199951, 2.3417969, 0.49853516, 1.7548828, 1.9794922, -0.24914551, -0.54541016, 0.11651611, 1.0507812, 0.045074463, 1.1875, -0.48388672, 2.296875, 2.7617188, 0.7636719, -0.50097656, -1.0898438, -0.19274902, 1.0898438, -0.2006836, -2.7890625, -2.0820312, -2.7617188, 0.29882812, -1.1162109, -1.3525391, -0.9580078, -2.6132812, -1.1513672, -1.2099609, -2.3613281, -3.5898438, -1.2509766, 1.2753906, 0.41918945, -1.0322266, 1.2558594, -1.9404297, 0.15466309, -3.9921875, -1.9326172, -0.51660156, 1.7998047, 1.3808594, 1.21875, 0.26293945, -1.2949219, 1.1650391, -0.08947754, 0.3059082, -0.49780273, 2.1757812, 1.0058594, 1.4511719, 2.8847656, -0.03845215, -0.2310791, 0.63623047, 3.6464844, 0.65283203, 2.1699219, 0.7788086, 1.0058594, -2.2695312, -2.7851562, 2.5195312, -0.6713867, 0.81640625, 1.6259766, -1.3388672, 2.6523438, 0.6791992, -1.6533203, 1.6025391, -0.4494629, -0.12225342, -2.3339844, 0.33813477, 0.015945435, -0.1817627, 1.5078125, -1.9628906, 1.2685547, 1.7978516, -0.14318848, -1.5146484, -0.36010742, 1.8554688, 0.20129395, -0.76123047, 0.2397461, -0.6225586, 0.7416992, 0.83447266, -3.0585938, 0.8754883, 1.2949219, 0.5522461, -0.8022461, -0.33618164, -2.9394531, 2.4511719, -1.0419922, -4.7890625, 0.12445068, -0.2944336, 0.6352539, 2.3242188, 0.32641602, 0.66552734, -0.6777344, -1.4394531, 2.4394531, -0.66796875, 2.2011719, -1.0859375, 0.1116333, 3.109375, -1.2636719, -0.20263672, -0.5703125, 1.2919922, 0.19421387, -0.32421875, 2.2207031, 3.3144531, 0.001083374, -2.1503906, 1.3886719, -0.55126953, -0.20874023, 0.8613281, -0.66748047, 0.12231445, -0.7885742, 0.3395996, 2.0664062, 0.2854004, 2.4472656, -2.828125, -0.58251953, 0.023666382, -2.5273438, 0.90478516, 0.29956055, -0.7158203, -2.0566406, -1.0585938, 0.9375, -1.7753906, -2.25, 2.7949219, -2.84375, 2.3886719, 1.5634766, 0.20483398, 1.0234375, -2.8085938, -1.3320312, -0.23791504, 1.0175781, -1.6679688, 0.053527832, 0.1842041, -0.78027344, -0.15466309, -1.6748047, 1.9404297, -3.40625, -2.1386719, -1.9052734, -2.2421875, -0.50439453, -1.9814453, -1.9013672, -0.3786621, 0.03262329, -2.0488281, 0.27807617, -1.8115234, -0.79541016, 1.1728516, 2.3457031, -3.7832031, 0.25708008, 0.17260742, 2.7011719, -0.18847656, -1.8867188, 0.8125, 1.3183594, 1.1611328, 1.4414062, 0.7832031, -0.7368164, -1.7607422, 1.4765625, 1.1025391, -2.1425781, 1.234375, -2.9902344, -0.35229492, -3.796875, 1.0742188, -0.69433594, -0.45581055, -0.26904297, 1.0488281, -2, -0.41137695, 0.8457031, -2.2070312, 3.7167969, 1.7382812, 1.3085938, -0.16882324, -0.7636719, 2.2265625, -1.4296875, -3.3339844, -0.052581787, 0.07006836, -0.9165039, -2.4570312, -1.4248047, -0.059417725, -1.9863281, -0.59228516, 0.27172852, -0.15979004, -0.11315918, 0.53515625, -2.5839844, -0.3154297, -2.5175781, 1.9238281, 1.2041016, -0.09020996, -1.6289062, -2.0488281, -1.1708984, -1.1416016, -0.082458496, 3.1035156, -0.90966797, 1.8466797, 1.4619141, -1.5048828, 0.7080078, -0.20385742, -4.84375, 2.2578125, 3.2675781, 0.80078125, 0.86572266, -2.5546875, -1.2333984, -1.4667969, 0.57128906, 2.0605469, 1.5820312, 0.92578125, 0.07879639, 2.0019531, 0.9741211, -0.57958984, -0.9169922, 0.117492676, -0.68896484, 2.6464844, -2.3027344, -0.22436523, 0.3071289, 3.5546875, -2.9257812, -1.3544922, 1.484375, -0.6640625, 1.2080078, 0.002368927, 0.6455078, 0.88134766, 0.11193848, 2.2402344, 0.6191406, 2.5664062, 0.51904297, -0.3605957, 1.5537109, 2.3789062, 2.734375, 1.5244141, 1.1230469, 1.3173828, 2.0878906, 1.3037109, -2.5917969, 0.7470703, 1.6660156, 1.7460938, 0.57177734, 1.3779297, -1.9589844, -0.34204102, 0.8408203, -0.012878418, 0.5410156, -2.4824219, 1.2382812, 0.8857422, 1.4228516, -1.5566406, -0.9375, 1.0175781, 1.5224609, -2.90625, 1.0712891, 0.3088379, -0.028121948, -0.8491211, -2.1523438, 0.5307617, -0.73583984, 3.84375, 0.20837402, -3.5332031, 0.82714844, 2.1582031, -0.07354736, -2.0449219, 0.4638672, -2.140625, -2.5234375, 5.6679688, 0.21228027, -1.3330078, 0.17785645, -2.1015625, 1.8339844, 1.0292969, -0.119018555, 0.34448242, 1.0117188, -0.7470703, -1.9755859, 0.4807129, 1.1230469, 1.5791016, -2.7753906, 0.71777344, -0.49169922, -0.70751953, 2.578125, -2.3046875, -1.3017578, 2.4433594, -0.4050293, 0.6689453, -1.1484375, 2.0820312, -0.7314453, -0.8198242, 2.1738281, -0.42211914, -1.4433594, -2.2246094, -4.0585938, 0.37280273, -2.890625, -1.4785156, 1.4960938, -0.46166992, 0.07684326, 0.6660156, -2.3632812, -3.2773438, -1.4833984, -1.7060547, 0.009056091, -4.5546875, -1.1933594, 0.14978027, -0.30859375, -0.88427734, -1.5263672, 0.2208252, 2.9726562, 1, 1.6640625, -0.52685547, 1.5390625, -2.7265625, 0.32202148, 0.69140625, 0.9692383, -1.4765625, -1.890625, 0.8574219, -2.8007812, 1.8720703, 1.6552734, -1.5302734, 2.0449219, 2.3007812, -0.4716797, -0.81689453, 1.3427734, 0.057647705, 4.8203125, -1.0849609, -3.296875, -0.5625, 0.095581055, -0.10089111, -0.81396484, -2.2050781, 0.37353516, -1.8251953, -1.1621094, 0.019897461, 2.7851562, 0.7373047, 0.7714844, -3.7382812, -0.2208252, -0.2998047, -1.6621094, -1.296875, -1.0273438, -0.25341797, -1.0136719, -1.1757812, -2.0839844, -0.6196289, -2.4199219, -1.0351562, -1.3544922, 4.0976562, 2.5273438, 2.8847656, 3.9296875, -1.4189453, 0.03302002, 1.8613281, -1.3662109, 0.6123047, 2.5429688, 0.69384766, -0.15722656, 2.125, -0.36743164, -1.7070312, -0.8149414, 2.2675781, -2.8222656, -0.9145508, 0.53564453, -1.4287109, -0.12561035, -1.1220703, -1.8535156, -1.6259766, 1.2958984, -2.4511719, -0.546875, -2.0019531, -0.546875, -1.2148438, 0.6430664, 0.3232422, 0.04348755, 1.4121094, 1.9287109, -0.1373291, 0.91845703, 3.0078125, -0.10656738, 2.7851562, -2.5371094, -1.1601562, -0.82470703, 0.17663574, -1.7744141, -1.65625, 0.2705078, 2.0585938, -1.8652344, 2.5019531, 0.9609375, -3.0957031, 3.8046875, 0.72216797, -1.5849609, -0.41088867, 0.5209961, 0.5209961, 1.3291016, 0.089416504, -3.3203125, 0.21484375, 1.4931641, -0.18725586, 2.0273438, 1.0136719, -1.5986328, 0.34350586, -2.2753906, -0.796875, -0.1842041, -1.1318359, -1.6826172, -1.5908203, -0.08569336, -3.5546875, 0.8461914, 2.2109375, -2.078125, -1.9238281, 2.6152344, 2.0175781, -0.71777344, -0.43896484, 0.99316406, -1.5302734, 1.0419922, 0.24230957, 0.78125, 0.9135742, -1.6455078, 0.9248047, -2.2714844, -0.23876953, -2.0917969, 3.9453125, -1.8623047, 0.10644531, 4.0234375, 0.81640625, 2.6386719, -3.8046875, 0.79833984, -0.078430176, 1.2529297, -0.4868164, 0.20727539, -0.7348633, -1.2636719, -1.9033203, -1.8828125, -0.23657227, -0.4946289, -3.2089844, -0.0725708, -1.2314453, -0.010627747, -0.12646484, 0.85253906, -0.6098633, -1.6875, -0.82421875, -1.2910156, -0.28100586, -0.8745117, 0.86328125, 1.03125, 0.8808594, -1.0332031, -0.5258789, -0.5600586, -3.4375, -0.88916016, 2.5664062, -1.34375, 2.0585938, 1.8320312, -1.6738281, 1.5507812, 2.1269531, 0.12731934, -0.5571289, 1.5234375, -0.8852539, -0.20544434, 2.9433594, -1.7685547, 2.4433594, 0.69970703, -0.6953125, 1.6191406, -1.9970703, 0.43188477, -0.99853516, 1.8408203, -0.5527344, 0.48876953, 0.17602539, -0.86279297, -0.16809082, 0.15307617, 3.1640625, 2.4472656, -2.4414062, -0.7602539, -1.5146484, -0.78271484, -2.0175781, -2.3652344, -1.15625, -1.2861328, -0.6538086, 1.6894531, 0.7993164, 0.34423828, 1.9169922, 0.44677734, -2.7109375, 0.5551758, -1.4140625, 2.2695312, 0.81591797, -1.7802734, -1.8984375, -3.359375, -0.61376953, 1.9628906, 0.66748047, -1.1318359, 0.27368164, -3.0136719, 1.9023438, -0.13354492, 1.1396484, 2.1445312, 1.5966797, -1.1884766, 0.65625, 1.4716797, 0.46411133, 1.4091797, -0.52685547, 1.78125, -0.22692871, 2.3828125, 1.7607422, -1.8496094, 0.65185547, -1.3525391, 1.0625, -1.0126953, -1.1044922, 2.0371094, -2.5488281, -1.6972656, -2.8535156, -0.47851562, -4.171875, 0.80615234, 1.6679688, 0.88671875, -0.7524414, -0.21936035, 0.13952637, 1.3154297, 1.1494141, -0.8017578, 0.12902832, -0.8178711, -1.0966797, 0.98535156, 1.8789062, 0.06011963, 1.6044922, -0.265625, -0.39868164, -1.3300781, 2.2246094, -0.6225586, -0.63671875, 1.8271484, 1.3154297, 2.2324219, 1.2236328, 3.6328125, -0.5332031, 1.7480469, 1.8291016, -1.1796875, -0.32055664, 1.6162109, 3.9082031, 0.9296875, 0.7988281, 0.85546875, 2.3300781, -1.5400391, -1.1875, 0.21679688, 0.28979492, -1.859375, 1.5039062, -1.0722656, 3.0917969, -1.7412109, 0.48217773, -0.77197266, 0.6689453, -0.6855469, -1.1845703, 2.3027344, -0.5205078, -1.1513672, 0.5908203, 0.9926758, 0.59033203, -3.203125, 2.6015625, -0.6665039, -2.2773438, -0.46826172, 3.6152344, 1.1298828, 0.8857422, -0.28686523, 2.3300781, 1.2617188, 1.9150391, 2.3417969, -0.5175781, 0.11968994, 1.5527344, 1.9833984, 1.1523438, -2.03125, -1.8222656, 1.1542969, -1.2578125, -3.4472656, 0.87939453, 1.3466797, 1.0283203, 1.1660156, -1.3359375, 0.9736328, 1.9990234, 1.1025391, -2.0917969, -0.97216797, -0.9975586, -2.3535156, -0.15722656, 0.9345703, -1.6796875, 2.7363281, 2.2050781, 0.42504883, 2.9628906, 2.5410156, 0.5878906, 0.86865234, 0.5722656, -2.2324219, 0.35498047, -1.6181641, 1.4013672, 1.0234375, 0.38598633, 1.8222656, 1.2490234, 2.203125, -0.66845703, 0.3708496, -2.8007812, -1.4804688, -0.2998047, -1.6552734, 0.62353516, -1.1806641, -1.6953125, 1.65625, 1.5361328, -0.20166016, -3.2597656, 1.6074219, 0.71777344, -2.09375, -0.12084961, 0.93359375, -0.83740234, 2.1035156, -1.3037109, -0.37353516, 0.8334961, -0.51171875, 2.6757812, -0.9013672, -1.2177734, -1.1845703, -0.08154297, -0.3371582, 0.03756714, -1.3193359, 0.16674805, 0.12017822, 0.47802734, 4.3085938, -1.4746094, 0.30029297, -1.46875, 0.34472656, 0.44580078, 2.3515625, -1.1015625, -1.7021484, -1.21875, -4.5820312, 0.8930664, 0.086364746, -1.9765625, -0.19189453, 6.140625, 3.8261719, 0.27441406, -1.0195312, -4.0351562, -0.48486328, 0.76660156, 2.8632812, -0.5, -0.26123047, -0.37963867, 1.6191406, 4.9179688, 0.040802002, -0.64501953, -1.1435547, -1.0761719, 1.3261719, -0.5878906, 1.8408203, 1.2021484, 1.0419922, 0.6254883, 1.6611328, 2.5898438, 0.20788574, 1.1201172, 3.2070312, -0.20983887, -2.8066406, 1.4238281, -1.3525391, 0.007534027, 1.7871094, 1.5771484, 1.0058594, -1.3525391, -0.21362305, -4.234375, -0.70410156]}, "B0098HR1FI": {"id": "B0098HR1FI", "original": "Brand: Weber\nName: Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual\nGrill dimensions: Lid Open - 63\"H x 52\"W x 32\"D. Lid Closed - 45.5\"H x 52\"W x 24\"D. Grilling area dimensions: 529 square inches\nPropane gas grill works with Standard 20 lb LP tank (sold separately).\nOther specifications: BTU-Per-Hour Input \u2013 32,000. Stainless Steel Burners \u2013 3. Side tables \u2013 2 (Stationary) Swivel Casters \u2013 2\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\n", "embedding": [-1.9931641, 0.89404297, 1.8681641, -0.9667969, -1.7871094, 0.9848633, -0.75927734, -0.40551758, 2.09375, 1.0253906, 3.3496094, 0.82421875, 0.89160156, -4.6054688, 0.6660156, 1.0585938, 2.4628906, 2.0644531, 0.6904297, 0.14086914, 0.70458984, 0.19311523, 1.4697266, -1.4414062, 1.5087891, 1.1591797, 3.2617188, -5.1015625, 0.10992432, -2.3867188, 1.2128906, 1.4179688, 0.4074707, 2.2265625, -3.65625, -1.8066406, -3.0761719, 1.2070312, -2.78125, 0.5732422, -0.18408203, -1.2783203, 1.4404297, -0.68652344, -1.2070312, 0.6308594, 0.74853516, 0.9379883, -0.7373047, -1.0400391, 2.3183594, 1.765625, -0.57470703, 0.8491211, -1.6796875, 1.6855469, 1.1425781, -1.7900391, 1.3466797, -0.11846924, 2.6503906, -0.22070312, -2.8417969, -1.4707031, -1.3066406, -0.2211914, 0.55078125, 0.16015625, -0.42041016, -0.1776123, 3.3886719, -1.1738281, -0.65478516, 1.3779297, 1.1455078, -1.9228516, -2.015625, 2.7148438, 0.30004883, -1.2080078, -1.0263672, 2.6386719, 1.8691406, -2.1542969, -0.17199707, 0.9160156, 1.3759766, -1.4814453, 1.4511719, 1.0673828, -0.77197266, 1.4931641, -2.4355469, -3.4453125, 1.9023438, -0.030334473, 2.2949219, 0.8432617, -0.76464844, 0.8930664, -1.7587891, 1.6875, -1.3662109, -1.1689453, -2.3027344, -1.0058594, 0.7050781, 0.18615723, -2.5195312, -0.49194336, -0.8251953, 0.022903442, 0.8120117, 1.0419922, 0.3239746, 1.921875, 0.14733887, 2.6542969, 0.07922363, 0.8510742, 3.6035156, -1.3388672, 0.21984863, 0.11773682, -2.0234375, -0.6503906, -0.0574646, 2.4824219, 2.3984375, -1.7382812, -1.2226562, -0.32299805, 3.7480469, -0.18322754, -0.4243164, -1.3027344, -0.78515625, -1.2548828, -3.3339844, -0.54785156, -1.0673828, -0.19873047, 1.7275391, -1.9892578, -4.0625, 0.15576172, 0.421875, -0.15856934, 0.8183594, -1.0253906, -0.79541016, -0.96972656, -2.4863281, -2.1132812, 1.6132812, 1.0039062, -0.18652344, 0.43676758, 3.2558594, 2.9316406, 2.3261719, -0.8486328, -2.4199219, -0.54248047, 1.0927734, 0.48999023, 1.6337891, 0.43286133, -1.0927734, 0.7368164, 0.61328125, -0.19714355, -0.14611816, 1.3427734, 1.4111328, -1.734375, -0.71435547, 1.4785156, -0.15100098, -0.79052734, -1.6757812, -1.2001953, -0.27856445, -0.5991211, 0.16040039, -0.6904297, -0.54785156, 0.13061523, 1.0498047, -1.5136719, 1.0253906, -0.30908203, 0.6069336, 0.39160156, 1.5673828, -2.125, -1.4804688, -2.0175781, 1.2734375, 0.6411133, -0.78564453, -1.4882812, 0.9980469, 1.3925781, -1.0625, -1.9472656, -0.1138916, -2.7910156, 0.3918457, 1.1689453, 1.4931641, -1.5341797, 1.3427734, -0.7895508, 1.4882812, -1.2636719, 2.7070312, 1.2519531, 1.328125, 1.5458984, -0.22216797, -0.36816406, 0.4440918, 2.5, 1.4296875, 0.17541504, 0.51464844, 1.1835938, -3.3261719, -0.8413086, 3.140625, 0.17944336, -0.23449707, 0.8149414, 0.44995117, 2.6582031, 0.17504883, 0.20751953, -0.61328125, 0.3564453, 0.76660156, 1.21875, -2.953125, -1.2910156, -0.115356445, -1.7900391, -1.4541016, 1.8095703, 1.3173828, 0.49047852, 1.4912109, 1.1191406, 1.0957031, 2.4082031, -0.4020996, 1.1259766, -1.3085938, 2.4160156, 0.69628906, -1.2158203, 0.9819336, 0.6484375, 0.05432129, 0.4243164, 1.4960938, -1.1582031, 0.9267578, 2.4160156, -1.7011719, -0.9790039, 1.1054688, 0.07299805, 0.17944336, -1.0556641, 2.5429688, 1.1337891, -1.6416016, 2.6308594, 1.1259766, 0.58984375, 0.44873047, -2.2519531, 1.5380859, -4.1132812, 0.10028076, 0.004169464, 1.2265625, -2.3300781, -2.453125, 0.8300781, 4.2578125, -0.8388672, -1.9931641, 2.8144531, -2.0058594, 0.86816406, 2.3457031, 0.55322266, -0.9145508, 1.8554688, 3.015625, 0.42260742, 1.1259766, 1.5546875, 0.009231567, -1.3085938, 0.94189453, -3.5605469, -0.41137695, 1.21875, -1.0380859, -0.9213867, -1.1083984, 1.296875, -1.9697266, -2.390625, 2.3496094, -2.7148438, -0.69091797, -0.72509766, 2.5410156, 0.25854492, -0.62939453, -0.15454102, -0.61621094, -0.39257812, -1.0019531, 1.8662109, 0.0051498413, -1.3945312, -0.7446289, 0.42651367, 0.014801025, -2.4414062, -2.0585938, -1.2773438, -2.5859375, -2.3984375, 2.5800781, -2.1875, -0.12976074, 1.0546875, -2.8574219, 0.06201172, 0.7089844, -2.84375, -0.14099121, -0.048858643, -0.6142578, -1.046875, 1.0771484, 1.3222656, -1.6044922, -2.5332031, -0.17907715, 0.5444336, 1.5566406, 0.47753906, -1.4287109, -0.33642578, 1.25, 0.49560547, -0.69970703, 1.40625, 1.7949219, -1.8994141, 0.9663086, -3.6933594, -1.4775391, -2.5957031, 0.68115234, -0.5649414, 1.3183594, -3.1503906, -2.3222656, -1.7832031, -0.2232666, 5.421875, -0.3869629, 1.4697266, -0.01928711, 0.13085938, 0.8378906, -2.2734375, -1.8515625, 0.81933594, 1.2529297, -2.1738281, -1.3115234, -3.1953125, -0.6582031, -3.0742188, -0.54052734, 0.42138672, -0.90234375, -0.9453125, -0.34326172, -1.8056641, -1.4550781, -0.9995117, 0.29125977, -0.024139404, -1.4072266, -1.8730469, -1.0839844, -1.5341797, -0.34228516, -1.9677734, 1.0605469, -0.54833984, 0.63671875, 1.3847656, -0.0024967194, 0.94628906, -1.7421875, -3.4980469, 3.6992188, 0.65185547, -3.5175781, 1.2304688, -2.6972656, -1.8535156, -1.2851562, -0.19628906, 2.1445312, 2.4257812, 1.8583984, 1.2480469, 1.8173828, -0.7915039, -2.1054688, 0.88671875, -1.3496094, 1.4785156, 4.5390625, -2.7480469, -0.6767578, 0.94970703, 0.79248047, -2.5507812, -1.1953125, 2.34375, 2.5410156, 2.2714844, 1.7207031, 1.9804688, -1.5087891, -1.6123047, 2.0214844, 1.3134766, -1.390625, 0.46289062, 0.3552246, 1.0263672, -1.3525391, 1.6113281, 1.640625, 0.4177246, 2.3828125, 1.7714844, 0.26245117, -1.1796875, -0.014450073, 0.078308105, 1.5751953, -0.92041016, 1.3691406, -0.2553711, 0.02571106, -0.98828125, -0.39916992, -0.46264648, -0.22485352, -1.578125, 3.1542969, 0.02508545, -1.0498047, 0.45166016, 1.4287109, 1.9248047, -0.5722656, -0.3161621, -1.6181641, -1.1054688, 1.9033203, -1.9580078, 0.87646484, -1.7949219, 0.9902344, -0.18566895, -1.6484375, 1.6279297, 3.4941406, -2.5566406, -1.2939453, 1.3476562, -1.2636719, -0.23010254, 2.3144531, 1.2685547, -0.8203125, 1.6015625, -2.3046875, 1.0478516, 0.53125, -1.1005859, -1.3496094, -0.4741211, 2.0449219, 0.29370117, 1.3740234, 2.1660156, -0.101257324, -3.4042969, 0.1965332, -3.1171875, -1.3837891, 1.03125, -2.5585938, -0.80566406, 2.9980469, 0.33544922, 0.6845703, 0.69433594, 2.9003906, -1.515625, 0.43676758, 2.0898438, -2.4824219, 0.6118164, -4.1445312, -3.5722656, 0.87060547, -1.5439453, 0.36279297, 1.40625, 0.24938965, 0.29736328, 3.5371094, 1.9091797, -2.5078125, -1.2490234, -0.51464844, 0.265625, -0.6386719, 0.1472168, 0.093688965, -0.5629883, -2.9277344, -2.8671875, -0.17492676, 0.57666016, 1.4511719, 2.2519531, -3.4765625, 0.07446289, -1.6865234, -2.0234375, -2.1914062, -0.3317871, 1.3232422, -1.2089844, 0.24621582, -3.5, 1.5371094, 1.8349609, -0.99316406, 1.7832031, 2.7597656, 0.22619629, -2.4082031, 2.0371094, 0.36816406, 2.640625, -1.2792969, -2.7070312, -0.1315918, -0.13586426, -0.57714844, -0.89990234, 0.43725586, 1.7412109, -0.9741211, 2.4238281, 1.5830078, 0.43310547, 0.47827148, 0.33007812, -2.8359375, 1.0957031, -1.1601562, -1.2773438, -1.6074219, -1.109375, 0.37573242, -1.1826172, 0.5078125, -3.125, 1.4765625, -1.3144531, 0.640625, -3.9628906, 3.4492188, 2.8007812, 3.6875, 2.4238281, -1.1796875, 0.117492676, -0.48901367, -0.10681152, -1.359375, 1.0849609, 0.24108887, -0.34448242, 2.6152344, 1.0039062, -2.2519531, -0.32763672, 0.43017578, -2.1542969, -0.8129883, -2.5644531, -1.1621094, -1.5175781, 0.14941406, 0.10650635, -0.21887207, 2.6953125, -0.59716797, -0.32592773, -0.22424316, 1.3105469, -1.3916016, 0.020080566, 0.96240234, 0.22937012, -0.44604492, 0.9614258, 0.6640625, 0.048828125, 0.9790039, -1.8066406, 1.8173828, 0.030136108, -0.0970459, 2.0195312, -0.39453125, -0.6748047, -0.82421875, 1.234375, 2.5625, 1.1552734, 2.6699219, 0.58984375, -2.2753906, 2.0625, 1.5273438, -3.6816406, 0.98535156, 0.9848633, 1.3457031, 2.5058594, 0.3359375, -3.8085938, 0.5107422, 0.75439453, -0.3564453, 0.031463623, -1.5498047, -0.8076172, 2.1230469, -1.5273438, -0.40478516, -0.46484375, -0.5595703, 0.9067383, 3.046875, 0.12200928, -1.1816406, 1.734375, 3.2539062, -1.3876953, -1.7539062, 0.6870117, -1.2851562, 1.0820312, -3.1210938, 0.5283203, -2.0566406, -0.20898438, 2.4511719, 1.4970703, 1.0527344, 0.44140625, 2.1171875, -2.6308594, -1.0498047, -2.2695312, 1.7587891, -2.109375, -0.00081920624, 1.0810547, -2.4609375, 0.58740234, -2.3808594, -1.3623047, -0.20947266, 2.2792969, 1.2363281, 0.060638428, -1.3085938, 1.3388672, -1.2568359, -3.5722656, -1.6972656, -0.40234375, 0.27319336, 1.0195312, 2.0429688, -0.6088867, 1.8183594, -0.10662842, 1.0751953, -1.4853516, 1.2548828, -0.6845703, -0.27661133, 0.19763184, -0.92578125, -1.6054688, -0.4338379, 0.7763672, 1.1650391, 1.0888672, -2.9042969, -1.2822266, 0.22155762, -1.5, 0.5107422, 2.0058594, 1.6240234, 0.31640625, 0.122924805, 1.6347656, -2.140625, 1.9277344, -2.5488281, -1.3955078, 0.8378906, -0.9667969, 0.97509766, -0.8989258, -1.7324219, 0.42504883, 0.84277344, 2.0761719, 1.1201172, -0.63671875, -1.3964844, 0.46264648, -1.0791016, -1.5976562, 0.3918457, -0.05923462, 0.70214844, 1.3652344, -1.7460938, -0.9238281, -0.44604492, -1.8056641, 1.2080078, -2.4335938, -0.6098633, -1.3222656, 0.69628906, 0.89941406, -0.21862793, -0.9135742, 3.171875, -1.0214844, -1.9667969, 1.2626953, -0.4309082, 4.1328125, 3.1582031, 0.4338379, -1.2519531, -1.7392578, 0.73291016, 3.0878906, -0.022750854, -1.2753906, 0.9482422, -0.5253906, 0.3322754, -0.2866211, 2.0644531, 1.8720703, -0.09814453, -0.62841797, 1.5703125, 2.9824219, -0.8901367, 1.0546875, 0.97021484, 2.2773438, 0.4638672, 3.0664062, 0.8305664, -3.2304688, 1.6943359, -2.0136719, 2.1113281, -1.0722656, -1.3154297, -0.6225586, -0.7421875, -2.0996094, -2.2070312, -2.1367188, -2.6328125, 1.6054688, 1.6181641, -2.5078125, -1.1748047, 0.8261719, -0.4362793, 3.6191406, 0.6640625, 1.40625, -1.6416016, -0.87353516, -0.45410156, 0.10882568, 0.7426758, -4.3710938, 1.9140625, 1.5742188, -0.5229492, -1.9882812, 1.6669922, 2.2402344, 1.8408203, -0.15795898, 2.4902344, 2.9238281, 1.59375, 2.4121094, 0.15283203, 2.6699219, 1.4707031, -1.0644531, 1.0644531, 1.5722656, -0.45532227, 0.6972656, -1.6464844, 1.9443359, -1.7060547, -1.7089844, -0.7446289, -0.73095703, 1.5664062, -1.9697266, 0.5415039, 0.9199219, 2.4980469, -1.1699219, -0.7758789, -0.46899414, -1.2080078, 1.1757812, -0.20056152, 1.7197266, 1.1171875, 0.20605469, -1.8994141, -0.2927246, 2.2109375, -4.2109375, 1.0615234, -0.45898438, -1.4394531, -1.2470703, -2.2011719, 2.5429688, 1.3007812, -0.32861328, 0.010643005, 4.515625, -0.3239746, 1.4042969, -2.0546875, -0.6635742, -1.1630859, 2.4511719, 0.5444336, -1.6347656, 0.22717285, -1.1337891, -4.0859375, -3.5097656, 3.5917969, 2.1679688, 0.70166016, 0.84765625, -1.28125, 3.5429688, 0.87353516, 2.2265625, -0.3005371, -1.0283203, -1.0380859, -3.3867188, 0.9316406, 0.09326172, -0.5761719, 1.4521484, -0.05670166, 1.4863281, 0.8208008, 1.5605469, 1.2470703, -0.030838013, 1.6953125, 3.203125, 1.1357422, -1.2509766, 0.60058594, -1.2587891, -1.7607422, -2.4453125, 3.1367188, 1.6181641, 0.51171875, -0.35717773, -1.1689453, 0.030792236, -1.828125, -0.16894531, -0.3166504, -2.2148438, -0.71972656, 1.3730469, 1.8173828, -1.8837891, 0.73876953, 1.9091797, 1.6152344, -1.6191406, 2.2207031, 3.1738281, -0.76660156, 0.6982422, 0.6010742, 0.46826172, 0.5732422, 0.6274414, 0.7001953, -0.7685547, -0.43066406, 0.6826172, 1.6123047, 0.8100586, -0.18041992, 0.3154297, -0.7944336, -1.4511719, -0.5332031, 0.24829102, 0.8286133, -1.7285156, 2.8222656, 0.21960449, -1.7246094, 0.96777344, -0.6308594, 0.98535156, -2.2441406, -2.2871094, -1.2568359, -0.81152344, -1.0332031, 1.9892578, 4.421875, 0.43359375, 0.18286133, -2.0332031, -4.0859375, -0.7402344, -2.8867188, 2.8066406, -1.1035156, -2.1132812, -0.6123047, -0.08404541, 2.5058594, -1.4091797, -0.012710571, -0.5463867, -2.1777344, 1.2724609, -0.2475586, 1.3222656, -0.09442139, 0.16503906, 2.4941406, 2.3359375, 1.6279297, 1.2539062, -0.64208984, 2.1171875, -0.75878906, -2.4960938, -1.2568359, 0.45263672, -0.7011719, 0.021514893, 0.21533203, 2.1210938, 1.2021484, -1.0429688, 0.044433594, -3.0644531]}, "B00RFXS1Z6": {"id": "B00RFXS1Z6", "original": "Brand: Weber\nName: Weber 51010001 Q1200 Liquid Propane Grill, Black\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nDimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\nEasy-start electronic ignition and infinite control burner valve settings\nCare instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)\n", "embedding": [-0.21276855, 0.3413086, 1.5683594, 0.021453857, -2.4355469, 0.6977539, -0.29467773, -0.5307617, 0.22436523, 1.8300781, 2.3378906, -0.25219727, -0.5966797, -3.5195312, 0.7949219, 0.23596191, 2.2949219, 1.0224609, 0.13989258, -0.015068054, 1.0478516, 1.0341797, 1.1601562, -1.5410156, 2.0507812, 1.5166016, 4.7148438, -5.1757812, -1.1738281, -1.8134766, 0.27246094, 1.8173828, 1.359375, 1.875, -3.1582031, -1.1630859, -3.1738281, 1.6259766, -2.21875, 0.44555664, -0.7788086, -2.2714844, 1.4189453, 0.017944336, -2.2011719, 1.40625, 1.4785156, 0.13232422, -0.7080078, -0.24194336, 2.2578125, 1.0712891, -0.58203125, 0.734375, -0.51660156, 2.3867188, -0.18322754, -1.8535156, 1.0234375, -0.43115234, 2.2070312, 0.40844727, -2.8261719, -0.5288086, -1.2861328, -0.07757568, -0.81591797, -0.8857422, 1.4804688, -0.30151367, 3.4316406, -1.9003906, -0.8730469, 0.19995117, 1.8183594, -1.390625, -2.1953125, 2.3066406, 0.83935547, -0.7182617, -0.5473633, 2.3027344, 1.0410156, -2.2773438, 0.047302246, 0.42211914, 0.11834717, -2.28125, 3.0175781, 2.1699219, -0.12670898, 1.5009766, -2.6230469, -4.6757812, 1.7050781, 0.054504395, 1.0498047, 1.1181641, 0.5776367, 0.9838867, -1.5517578, 1.0703125, -1.6337891, -1.4179688, -2.671875, -1.1337891, 0.9121094, 0.06921387, -3.9355469, -0.88916016, -1.1103516, 0.6298828, 0.76171875, 1.2294922, 1.15625, 0.9658203, 0.03564453, 2.2636719, 0.9746094, -0.24047852, 2.5410156, -1.9189453, 0.43896484, -1.6591797, -1.2089844, 0.003698349, -0.62890625, 0.2631836, 2.828125, -2.3417969, -0.5253906, 0.3034668, 3.8007812, 0.51953125, -0.80810547, -0.51220703, -1.2578125, -0.47729492, -1.7949219, -0.9770508, -1.7666016, 0.8544922, 1.1328125, -0.9199219, -4.0898438, -0.86376953, 0.7036133, 1.0976562, 0.31030273, -1.9228516, 0.057678223, -1.2666016, -0.79052734, -1.0488281, 1.4453125, 0.8955078, -1.8623047, -0.27148438, 3.4667969, 2.8203125, 1.3867188, -0.19140625, -0.32080078, 0.4152832, 0.02468872, 0.49609375, 1.8085938, 1.9199219, -0.63134766, 1.2705078, -1.1064453, -1.3828125, -0.52490234, 0.5786133, 0.9345703, -1.5517578, -0.32666016, 2.0488281, -0.49145508, -0.7451172, -1.4648438, -2.6425781, -0.13024902, -0.74853516, 0.56152344, -1.0107422, -0.38085938, -0.9145508, 1.1826172, -1.6855469, 0.24597168, 0.2998047, 2.1464844, -0.49609375, 0.5151367, -1.0566406, -0.34643555, -2.0878906, 1.2216797, -0.12359619, -1.0087891, -1.7382812, 1.0927734, 0.71191406, 0.047790527, -2.3847656, -0.2142334, -2.6894531, 1.0537109, 1.1328125, 1.8037109, -1.9931641, 0.66796875, -0.75, 0.52197266, -1.9316406, 1.4023438, -0.25097656, 0.5605469, 2.5917969, -2.0175781, -0.23522949, 1.0195312, 1.3603516, 0.9296875, -0.50634766, 0.24768066, 0.6845703, -3.4433594, -1.0107422, 3.2929688, 0.7680664, -1.1865234, 0.17272949, 0.5341797, 2.921875, 0.96435547, -0.4399414, 0.34448242, -0.73876953, 0.18066406, 0.9472656, -2.296875, -1.2851562, -0.030395508, -0.16271973, -2.2265625, 1.9433594, 0.91552734, 0.1697998, -0.080200195, -0.39038086, 0.2939453, 1.2148438, -1.3457031, 0.7104492, -1.8867188, 1.7861328, 0.15600586, -2.7832031, 1.5839844, -0.008644104, 0.2631836, -0.07385254, 0.86083984, -1.1865234, 2.5195312, 1.7714844, -1.6416016, -0.9213867, 0.7441406, 0.33911133, 0.03881836, -0.9868164, 1.4375, 1.8974609, -2.3320312, 3.0253906, 0.32250977, 0.6821289, 0.3869629, -1.171875, 1.609375, -3.6484375, -0.25024414, 0.16394043, 0.21728516, -1.2763672, -2.5605469, 0.15405273, 3.3027344, -0.2607422, -1.9785156, 2.9726562, -2.4570312, 1.1201172, 1.6835938, -0.34301758, -0.30004883, 0.5517578, 1.8779297, 0.10510254, 0.53808594, 1.5957031, 0.16577148, -2.3320312, 0.023880005, -4.2929688, 1.1064453, 1.6113281, 0.08947754, -0.921875, -1.6132812, 1.5351562, -3.0527344, -1.59375, 1.9716797, -4.375, 0.015602112, -1.3984375, 2.1367188, 0.2565918, -0.97314453, -0.6279297, -1.3652344, -0.25610352, -0.7739258, 0.8828125, 0.4897461, -2.2265625, -1.0009766, -1.265625, -0.48779297, -1.6337891, -1.4160156, -1.7148438, -1.7792969, -2.7871094, 1.9355469, -1.3359375, 0.047698975, 2.3554688, -2.8320312, -0.21838379, 0.040618896, -3.109375, -0.27734375, -1.5087891, -1.0087891, -1.1542969, 1.2011719, 0.9716797, -1.53125, -4.3085938, 0.6357422, -0.3269043, 0.47607422, -0.9194336, -0.77685547, 0.060668945, 0.87353516, 0.048706055, -0.67822266, 0.68847656, 1.6884766, -1.7822266, 0.55126953, -2.0429688, 0.70214844, -1.890625, 0.7607422, 0.7729492, 0.7416992, -3.1230469, -1.9960938, -0.43847656, -0.20666504, 3.6816406, 0.08929443, 1.2988281, 0.4116211, 0.8510742, 1.4326172, 0.1105957, -2.0527344, 1.0332031, 1.1923828, -1.8457031, -1.7431641, -3.4882812, -1.0117188, -2.8046875, -0.24597168, 0.4404297, -0.060394287, -1.9414062, -0.4489746, -0.6254883, -0.40405273, 0.119140625, 0.32836914, -0.14294434, -1.5214844, -2.7617188, -1.1113281, -1.5859375, 0.06707764, -1.4882812, 1.6894531, -0.15393066, 1.2333984, 2.5195312, -0.6875, 2.1289062, -0.55029297, -4.1328125, 3.8652344, -0.3059082, -2.7207031, 1.09375, -2.7753906, -2.1679688, -1.7275391, 0.22888184, 2.2265625, 2.3398438, 2.7109375, 2.2617188, 1.5380859, -0.11462402, -1.3164062, -0.12768555, -1.3652344, 1.1513672, 3.0273438, -2.6894531, -2.1269531, 1.0947266, 1.1503906, -3.5722656, -0.7993164, 2.5917969, 1.6376953, 1.4042969, 1.7597656, 1.3144531, -0.7631836, -0.83447266, 1.1337891, 1.9111328, -1.171875, 0.83691406, -0.12756348, 0.36914062, -0.46801758, 1.3466797, 2.7871094, 1.3583984, 1.3935547, 3.2324219, 1.0791016, -0.31420898, -0.31958008, 0.5385742, 1.6240234, 0.4560547, 1.7792969, -1.2451172, 0.17089844, -0.5966797, -1.3525391, 0.45458984, -0.49291992, -0.7104492, 3.6542969, 0.37646484, -0.7729492, 1.0947266, 1.9492188, 1.1240234, -0.82421875, -0.47729492, -1.0878906, -0.14538574, 2.4589844, -0.62939453, 0.73291016, -1.6289062, 1.09375, -0.0035190582, -1.9091797, 0.02079773, 2.890625, -1.4638672, -1.4003906, 0.059295654, -1.2666016, 0.33935547, 1.7509766, 0.66308594, -0.9003906, 0.5966797, -2.3066406, 0.91845703, -0.38623047, -1.0810547, -0.97558594, -1.6689453, -0.017440796, 0.5957031, 2.0292969, 2.0234375, -0.016967773, -2.1875, 0.4946289, -3.6933594, -1.9707031, 0.9082031, -2.4726562, -0.5957031, 1.3740234, -0.011985779, 1.3476562, 0.28198242, 2.0214844, -1.5039062, 0.82714844, 1.5585938, -2.6113281, -0.4543457, -2.9667969, -3.9042969, -0.15246582, -0.6489258, 0.33398438, 1.5683594, -0.25219727, 0.2939453, 2.8027344, 0.7402344, -1.5087891, -0.9746094, -1.2587891, 0.8828125, -1.2431641, 1.1337891, 0.80908203, -0.43164062, -1.8886719, -1.5771484, 0.27490234, 0.4658203, 1.2861328, 1.5810547, -3.4628906, 0.1850586, -1.1660156, -0.5332031, -0.26904297, -0.6279297, 1.4941406, 1.1162109, -0.1998291, -2.0976562, 1.8291016, 0.11981201, 0.5517578, 2.6289062, 2.5839844, -0.3515625, -3.2890625, 0.3017578, 1.1162109, 2.9824219, -0.20300293, -1.7207031, -0.1237793, 0.72802734, -1.0761719, -0.008880615, 0.4284668, 0.7167969, -1.2109375, 0.83935547, 0.89746094, 0.8833008, 1.6318359, 1.3613281, -1.8515625, 0.22509766, -0.008766174, -2.4101562, -1.9912109, 0.3203125, 1.0810547, -1.3291016, 0.84277344, -2.0566406, 0.25219727, -0.5292969, -0.5571289, -3.9296875, 3.2636719, 4.109375, 2.1875, 2.5585938, -0.8354492, 1.1230469, -0.20837402, -0.2614746, 0.34692383, 0.18017578, -0.50878906, 0.17114258, 3.0449219, 1.5390625, -0.83935547, 0.36547852, 1.4638672, -1.3759766, 0.13220215, -1.8300781, 1.0214844, -0.75683594, 0.13903809, 0.66503906, -0.5541992, 1.6835938, -0.4404297, -0.40600586, -0.60791016, 0.52783203, -1.5859375, -0.36157227, 0.28198242, -0.020141602, 0.078063965, 0.71533203, 1.8330078, -0.77246094, -0.005619049, -0.5673828, 1.1503906, -1.7207031, 0.09692383, -0.4326172, 0.7338867, -1.1171875, -0.2770996, 2.1484375, 2.1152344, 1.2646484, 3.1855469, 2.390625, -1.7402344, 1.5566406, 1.8515625, -2.15625, 1.6816406, 1.0371094, -0.6640625, 2.2089844, 0.36035156, -3.8339844, -0.57373047, 1.3535156, 0.63964844, 1.0683594, -1.5957031, -0.20788574, 1.5449219, -1.5605469, -0.625, -0.6557617, -1.0771484, 0.53222656, 0.60498047, 0.09613037, -1.2236328, 1.625, 2.3515625, -1.0595703, -1.9433594, 1.1542969, -1.2783203, 0.18701172, -1.0527344, -1.5634766, -1.4775391, -0.6982422, 2.9160156, 1.0458984, 1.5263672, 0.5463867, 1.6259766, -1.1591797, -0.31713867, -1.0712891, 2.0859375, -2.7207031, -0.42895508, 1.65625, -3.7265625, -0.066345215, -2.0664062, -1.0185547, -0.08856201, 1.1787109, 1.3564453, -0.6225586, -0.5341797, 1.0546875, -1.6933594, -4.0703125, -0.8300781, -0.37719727, 0.4873047, 1.1748047, 1.0439453, -0.609375, 1.1289062, -1.0917969, -0.25219727, -0.92041016, 0.0018024445, -0.96435547, -0.21508789, -0.10998535, 0.3840332, -0.9003906, 0.61621094, 0.1459961, 1.3134766, 0.7915039, -1.4160156, -0.11804199, 0.057891846, -0.59814453, -0.0027313232, 2.703125, 1.6035156, 0.011543274, 1.2861328, 1.5712891, -3.3339844, 2.9375, -1.7949219, -2.2070312, 1.0419922, -0.47338867, 0.35327148, -0.27905273, -0.6542969, 0.20349121, -0.29589844, 1.5996094, 1.2763672, -0.8671875, -0.7841797, -0.084472656, 0.21228027, -0.055877686, 1.3027344, 0.67822266, 0.49047852, 1.6660156, -1.1054688, -1.1689453, -1.3183594, -2.609375, 0.41723633, -1.3515625, -0.8833008, -2.1230469, 0.8930664, 1.7246094, 0.7416992, -0.7441406, 2.7949219, -0.8305664, 0.06304932, 1.6308594, 0.3996582, 5.2695312, 3.6582031, -1.2763672, -0.24963379, -1.3691406, 0.5004883, 2.0332031, -0.03515625, -1.0214844, -0.25170898, -0.97802734, -0.21386719, 0.15991211, 1.2109375, 0.81103516, 0.42285156, 0.0418396, 1.2958984, 3.5703125, -2.1035156, 2.3652344, 0.6333008, 1.0585938, -0.85595703, 4.3398438, 1.0976562, -2.7558594, 1.6445312, -2.1621094, 2.2363281, -1.2392578, -1.015625, -1.1279297, -0.34838867, -1.4609375, -1.2285156, -1.0849609, -2.7050781, 1.5390625, 1.7080078, -1.7431641, -0.57958984, 1.0458984, -0.5336914, 2.4316406, 2.0019531, 2.3125, -1.2929688, 0.24987793, 0.25097656, 0.7548828, 1.6669922, -3.7324219, 1.8017578, 0.98535156, -1.3730469, -1.6289062, 1.1816406, 0.3203125, 2.1582031, -0.15515137, 2.5820312, 1.9365234, 1.6826172, 2.7773438, 0.89941406, 3.9277344, 1.1787109, -0.5229492, 0.6899414, 1.2617188, 0.08605957, 1.15625, -2.5273438, 1.3222656, -0.90234375, -0.91308594, -0.11431885, -0.45410156, 1.4189453, -2.0078125, 0.73583984, 0.13061523, 2.5273438, -0.3647461, -1.0839844, -0.082336426, 0.5419922, -0.095214844, -0.7211914, 2.6132812, 1.1708984, 0.0960083, -0.4428711, 0.06866455, 0.70166016, -4.4453125, 1.1328125, 0.9760742, -1.1757812, 0.71191406, -1.8583984, 1.9970703, 0.4350586, -0.4038086, 0.5644531, 3.9414062, 0.98876953, 1.1943359, -1.4091797, -0.55126953, 1.2724609, 3.7636719, -0.000104248524, 0.037384033, 0.33911133, -0.5283203, -4.1367188, -4.4140625, 3.3652344, 1.9775391, 0.79785156, 0.46557617, -0.4440918, 4.1601562, -1.2441406, 0.8095703, -0.765625, 0.7011719, -0.021911621, -3.5898438, 0.87060547, 0.4350586, -0.94677734, 1.4179688, 0.062805176, 0.5395508, 0.96972656, 1.4091797, 1.1064453, 0.14733887, 1.1708984, 2.4785156, 1.5439453, -2.5292969, 2.140625, 0.11175537, -1.4882812, -1.6015625, 2.5917969, 1.5732422, 0.17956543, 0.38476562, -1.4091797, 0.32592773, -1.7919922, -0.0947876, -0.039398193, -2.4648438, -0.17163086, 1.0917969, 0.7050781, -0.7998047, -0.037261963, 3.0820312, 1.5566406, 0.1538086, 0.80078125, 2.7480469, -1.3242188, 1.4482422, -0.81689453, 0.8466797, -0.3046875, 1.7060547, -0.3552246, -0.35546875, -0.91015625, 1.2158203, 2.0996094, 0.6118164, -1.0058594, -0.37646484, -1.2441406, -1.0253906, -0.6010742, 0.28271484, -0.029190063, -2.1074219, 2.6191406, -0.55810547, -1.3935547, 1.0966797, 0.34301758, 0.04776001, -2.2070312, -2.5371094, -1.3222656, -0.67333984, -1.1191406, 1.6738281, 3.9492188, -0.42236328, -0.033569336, -1.7558594, -3.5507812, -1.6376953, -3.0429688, 2.1601562, -1.0224609, -1.6132812, -1.5292969, 0.36547852, 1.5908203, -0.98095703, -0.4729004, 0.13635254, -1.9882812, 0.9741211, -0.6274414, 0.05581665, -1.0917969, -0.17053223, 1.1162109, 2.8652344, 0.92285156, 0.5415039, 0.032318115, 2.6582031, -0.31030273, -2.2207031, -0.6899414, 0.86816406, 0.8017578, -0.5288086, 0.3569336, 2.2304688, 0.010719299, -0.9008789, -0.6176758, -3]}, "B07P7M1NH8": {"id": "B07P7M1NH8", "original": "Brand: Megamaster\nName: Megamaster 820-0065C Propane Gas Grill, Red + Black\nDescription: \nFeatures: Assembly required (Easy!)\nFoldable legs and soft handles\nDurable high-grade stainless steel main burner\nStrong steel frame with a heat-resistant coating finish\nA cooking power of 11,000 total BTU's with even and consistent heat\n", "embedding": [-0.61035156, -0.119506836, 2.2539062, 0.51123047, -1.1572266, 0.4519043, -0.4572754, -0.050231934, -0.14819336, 1.7587891, 0.73535156, 0.36010742, -0.66552734, -1.6054688, 1.2958984, 1.1591797, 1.3857422, 0.79345703, 2.0214844, 0.40478516, 0.9042969, 0.16882324, 0.35107422, -1.6279297, 2.0195312, -0.3137207, 3.8378906, -3.2617188, -0.2746582, -0.68115234, 0.46166992, 0.46142578, 0.18713379, 1.7910156, -1.7382812, -0.32763672, -3.2597656, 1.0839844, -3.0039062, 1.4345703, 0.6699219, -1.0771484, 1.0371094, -0.33862305, -2.1816406, -1.3466797, 0.875, 0.4609375, -2.0410156, -3.890625, 0.7475586, 2.1796875, -0.5527344, -0.33251953, -0.8647461, 0.38964844, 0.4326172, -0.9008789, 1.3691406, -0.016098022, 1.4394531, -1.9335938, -0.66796875, -0.96972656, -2.015625, -0.35083008, -0.066589355, -0.98583984, -0.18261719, -1.5078125, 1.1816406, 0.42456055, -2.9199219, 0.48120117, -0.11303711, -1.2929688, -3.7148438, 1.0195312, -0.3479004, -0.87890625, -1.0341797, 3.4414062, 1.0400391, -0.95458984, 0.09442139, -0.3112793, -0.20410156, -1.2558594, 1.1855469, 1.0585938, -1.8164062, 0.86621094, -1.7871094, -4.921875, 3.5117188, 0.44921875, 0.9428711, 0.51220703, 1.3925781, 1.9892578, -0.32641602, 1.3583984, -0.8779297, -0.058776855, -2.1289062, -1.40625, 0.16345215, 1.3037109, -4.2070312, 1.6806641, -1.5263672, -0.5048828, 0.47729492, 0.42163086, -0.22973633, 0.8178711, 1.9179688, 1.7421875, 2.9863281, 2.3125, 3.3027344, -1.0048828, 2.015625, 1.0019531, -0.6904297, -0.17797852, -0.44555664, 2.890625, 4.1367188, -2.4335938, 1.5517578, -0.72021484, 2.0195312, 1.2744141, -0.7060547, -2.7167969, -1.5810547, -1.2119141, -3.5761719, 0.5571289, -0.70458984, 2.3242188, 1.3730469, -0.6035156, -5.1289062, -1.3583984, -0.7963867, -0.32055664, -1.0556641, -1.1503906, 0.27783203, -1.4892578, -1.6220703, 0.3239746, 0.8652344, -0.5942383, -1.3662109, -1.1845703, 2.7714844, 1.390625, 1.9628906, 0.23461914, -2.6132812, -0.023361206, 0.24084473, -1.4111328, -0.23803711, 1.3662109, -0.64404297, 0.65771484, -0.27270508, -1.6503906, 0.86035156, -1.3935547, 0.22790527, -0.09814453, 0.1932373, 3.7539062, -0.94433594, -1.75, -1.2880859, -2.6816406, -0.09613037, -0.68603516, 0.7504883, -1.3496094, 0.43798828, -1.0908203, 1.6972656, 0.0035133362, -0.56152344, 1.2929688, -0.45874023, 1.3398438, 0.038909912, -2.4804688, -2.6757812, -1.1289062, 2.453125, -0.11187744, -1.7734375, 0.5649414, -0.22387695, 0.671875, -1.0224609, -2.6757812, -0.06964111, -0.32470703, 1.2587891, 1.5791016, 1.4726562, -1.8583984, 1.2958984, -1.46875, -0.61816406, -2.7324219, 0.5625, 0.097351074, 1.6621094, 3.6054688, -0.27197266, 1.0908203, 0.6386719, 1.0947266, 0.15991211, 1.2832031, 0.87402344, 2.1523438, -3.6875, -2.8203125, 2.0214844, 1.7265625, -0.11431885, -0.73828125, 0.27075195, 2.1796875, 0.5620117, 0.3034668, -0.92626953, -0.34814453, 0.30151367, 0.45996094, -0.73828125, -2.5742188, 0.49291992, -0.31274414, -1.9482422, 2.0058594, 0.14416504, 1.9765625, 0.20214844, 2.1953125, 0.44848633, 1.6806641, -0.34106445, 2.2265625, -0.57958984, 0.009033203, -0.26489258, -1.9013672, 0.92333984, -0.24975586, -0.95214844, 0.042999268, 1.8642578, -0.9472656, 4.625, 0.3330078, -1.6132812, -1.9355469, 3.4492188, 1.2089844, 1.3417969, 0.47216797, 2.3359375, 2.5253906, -1.3398438, 3.203125, 1.6748047, -0.6147461, 0.32788086, -0.2565918, 2.0703125, -2.2128906, 0.69433594, -1.0166016, 2.2578125, 0.7001953, -1.2158203, 1.4335938, 3.6679688, 1.3388672, -1.8945312, 2.4804688, -1.4267578, 1.6367188, 2.5214844, -0.20715332, 0.58740234, -0.6801758, 2.4785156, 1.4179688, -0.35424805, 1.2050781, -0.1661377, -2.0722656, 0.07104492, -0.12573242, 0.06945801, 1.8916016, 1.2148438, -0.5527344, -1.6201172, 0.28173828, -1.3613281, -0.40063477, 2.1699219, -2.3222656, 0.47583008, 1.5986328, 2.9746094, 1.7822266, 1.3916016, -0.6850586, 1.7636719, 0.3623047, -0.58251953, 1.3916016, 2.0507812, -0.6376953, 1.4775391, -0.049804688, 0.61572266, -1.4033203, -1.6914062, 0.9248047, -1.6201172, -2.6953125, 0.9536133, -0.40966797, 0.8486328, 0.6767578, -2.234375, 1.3642578, -0.27124023, -2.078125, -2.5566406, -0.12524414, 1.0820312, -1.0302734, -0.039398193, 1.0888672, -0.41625977, -5.2460938, -1.0800781, 2.3300781, -0.66308594, 2.4316406, -0.63183594, -0.2364502, 1.1855469, -0.5913086, 0.5498047, -0.53759766, 1.2216797, -2.6894531, 0.7294922, -2.9667969, 0.3762207, -2.3847656, 0.050842285, -0.75390625, 0.765625, -1.7851562, -1.9042969, -0.70458984, 0.2866211, 4.15625, -0.5004883, 1.2363281, 0.2010498, 0.6689453, 2.3125, -1.5, -2.4355469, -0.25512695, 1.9238281, -1.1396484, -1.0654297, -2.0390625, 0.66748047, -0.56347656, 0.5229492, 0.045562744, 1.2783203, -2.2207031, 2.2441406, -1.15625, -0.7963867, -0.46069336, 0.0513916, 0.21228027, -1.6865234, 0.19335938, -0.7758789, -1.2216797, -2.3535156, -0.034454346, 1.1416016, -0.42285156, 0.984375, 0.54052734, -1.0976562, 1.4736328, -0.92285156, -3.5449219, 4.0195312, -1.1347656, -1.7822266, 0.107177734, -0.7714844, -3.1582031, -1.8691406, -2.0097656, 3.1035156, 0.6166992, 2.1875, 0.78027344, -0.5024414, 0.76123047, -0.5732422, 0.9291992, -0.8588867, -0.29345703, 3.2148438, -0.59277344, -2.3222656, 0.41845703, 2.1757812, -3.5742188, -2.765625, 2.5175781, 0.43945312, 2.1816406, 1.3427734, 0.70166016, -0.5288086, -0.10461426, 3.3203125, 0.08929443, 0.37451172, 0.42944336, -0.72509766, 0.5395508, 1.0625, 1.8144531, 2.5371094, 0.36523438, 2.1035156, -0.5786133, 0.8041992, -2.0039062, -0.6225586, -0.49414062, 0.8300781, 0.50439453, 1.0224609, -0.82421875, 0.4267578, 0.4230957, 0.44189453, -0.05706787, -1.7666016, 0.5488281, 1.5908203, -0.8125, 0.39672852, -1.0214844, 0.5463867, 1.0820312, -1.1484375, 0.59716797, -2.4082031, -1.2636719, 1.5087891, 0.54248047, -1.2548828, -2.1074219, 1.484375, 0.47729492, -0.62402344, -0.21899414, 2.3808594, 0.61376953, -1.3525391, -0.2619629, -0.39379883, -2.296875, 0.9169922, -0.24414062, -0.9506836, 2.2988281, -1.8134766, 1.1328125, 2.2695312, -0.9941406, -0.057617188, -0.5229492, -0.33276367, 0.1932373, 0.54296875, 1.9179688, 0.28393555, -1.9042969, -0.1862793, -3.265625, 1.0537109, 0.7373047, -2.1738281, -1.2783203, 1.1513672, -0.38891602, 1.8828125, -0.5957031, 2.7753906, -0.48901367, -0.50878906, 1.1474609, -2.8183594, -1.4179688, -3.2597656, -2.5234375, 0.9970703, -2.171875, -0.12841797, 2.7851562, -0.69921875, 0.73876953, 2.2636719, 0.8417969, -3.2441406, -2.1582031, 0.08117676, -0.13415527, -0.40698242, -0.75097656, -0.11651611, 0.9477539, -2.1171875, 1.3544922, 0.77783203, -0.7675781, 2.2558594, 0.44750977, -0.97558594, 0.16552734, -0.6665039, 0.5859375, -1.1796875, -0.92041016, 0.30541992, -0.94873047, -0.45874023, -2.7363281, 2.0761719, 0.79785156, -0.79345703, 0.48413086, 1.703125, -0.40673828, -2.4960938, 0.4987793, -0.17285156, 0.41992188, -1.3828125, -2.3085938, -1.2890625, -0.9042969, -0.44750977, 0.39624023, 0.9321289, -0.61572266, -1.6044922, 0.8095703, 0.6347656, 1.2392578, 2.0019531, -0.22314453, -1.8925781, 0.13562012, 0.6660156, -2.6796875, -0.5727539, 0.1015625, -0.2775879, -0.63134766, -0.41845703, -1.125, -0.4675293, -1.2392578, -0.45703125, -2.2792969, 1.9980469, 2.0449219, 1.9824219, 4.0585938, 0.09887695, -0.71777344, -0.9692383, -1.0341797, -0.53759766, 0.8696289, -0.24645996, 0.66015625, -0.05239868, 2.0117188, -2.6210938, -0.6982422, 2.3496094, -2.7597656, -0.5883789, -1.4667969, 1.0722656, -0.921875, -0.27172852, 0.00082731247, -0.54589844, 2.2695312, -0.53222656, 0.9560547, 0.3293457, 1.1298828, 0.12030029, 0.9633789, -0.16235352, -1.8671875, 2.8457031, -0.14038086, 0.9794922, -0.42016602, 0.17260742, 0.69189453, 1.7382812, -0.5395508, 0.5263672, 0.41333008, -1.3554688, -1.8730469, -1.9804688, -0.43603516, 1.3632812, 0.61621094, 1.9179688, 1.3916016, -0.6586914, 2.5449219, 1.2275391, -2.2636719, 0.24853516, -1.5351562, 0.3425293, 1.2431641, -0.1899414, -2.203125, -1.2460938, 1.7089844, -0.4243164, 0.56152344, 0.07733154, -1.7265625, -0.55322266, -2.2109375, -0.5708008, 0.11804199, -1.4296875, -0.81396484, -1.4873047, 0.45141602, -1.2910156, 1.3447266, 4.1015625, -0.46166992, -1.7578125, 2.1035156, -1.0703125, 1.3222656, -0.11578369, -0.7163086, -2.5449219, 1.0332031, 2.7402344, 1.3427734, -0.52197266, 1.796875, 0.57958984, -2.8691406, 1.5703125, -1.0507812, 2, -2.3046875, -2.9179688, 1.5517578, -2.0976562, 1.1982422, -1.9648438, 0.60253906, -1.5546875, 2.1582031, 3.1796875, 0.058410645, -2.4101562, 1.9326172, -2.3359375, -3.6855469, -2.453125, -0.31591797, 1.9091797, -0.5053711, 1.8671875, -1.3105469, 2.4960938, 1.1240234, 0.62841797, 0.059051514, 0.8442383, -0.76464844, -0.07373047, -1.1689453, -0.65234375, -0.71484375, -0.9189453, 1.9921875, 0.5214844, 0.33935547, -2.6621094, -3.6269531, 1.2480469, -0.5341797, -0.31079102, 1.8769531, 1.1367188, -0.29858398, 1.5078125, 0.8574219, -1.9013672, 0.5883789, -2.2871094, -1.0751953, 1.8369141, 0.4104004, -0.19848633, 0.14978027, -1.8203125, -0.20483398, -1.2021484, 1.7207031, -0.14379883, -0.72998047, -1.9804688, 0.05923462, -0.8027344, -0.005203247, -0.17114258, -0.8696289, 1.6943359, 1.4833984, -0.6694336, 0.099609375, -1.3769531, -3.09375, 0.359375, -2.3320312, -0.22009277, -0.26416016, 0.5839844, 0.46240234, 0.64746094, 0.9970703, 0.8198242, 2.0800781, -0.3256836, -0.2685547, -1.5371094, 1.6943359, 2.8261719, -0.23144531, -1.9208984, -2.5605469, -0.609375, 2.1308594, 1.2207031, -1.1210938, -0.1607666, -2.234375, -0.54833984, -0.6479492, 1.78125, 1.8554688, -0.5317383, -2.2949219, 1.7900391, 2.9511719, -1.3701172, 1.9941406, 1.2636719, 2.1210938, -1.6777344, 3.0761719, 0.35302734, -1.4082031, 1.6660156, -0.86083984, 0.13061523, -0.7685547, -0.9301758, 0.3347168, -1.9384766, -1.7207031, -0.67285156, -0.5678711, -3.6933594, 1.0761719, 1.9980469, -1.9453125, -0.049438477, 1.2871094, -1.7705078, 3.3945312, 2.3359375, 1.5195312, 0.25561523, 1.0019531, -1.3046875, -1.1064453, 1.0703125, -3.3007812, 2.671875, 0.37329102, -1, -0.26879883, 2.5078125, 1.1113281, 1.3037109, 2.1347656, 1.9511719, 3.6699219, 0.22167969, 1.3408203, 1.1835938, 1.3408203, 2.7949219, -0.07147217, 0.8666992, 0.6870117, 1.0537109, 1.5195312, -0.97216797, 1.2832031, -0.9604492, -1.0742188, -1.1103516, -0.30786133, 0.121520996, -1.0986328, 0.03945923, 0.02230835, 0.8544922, -2.1210938, -0.28710938, -1.5615234, -0.6152344, -1.796875, 0.27685547, 2.2578125, 0.29711914, -0.5126953, -0.7504883, -2.3710938, 0.67041016, -1.8779297, 1.3486328, 0.17651367, 0.47875977, -0.5439453, -0.9550781, -0.11517334, 0.012130737, 0.4165039, -0.11669922, 0.07489014, 0.7573242, -0.5048828, -1.4082031, 0.8417969, 0.18798828, 0.9111328, -0.033081055, -0.85595703, 2.6816406, -0.70654297, -1.0605469, -2.9785156, 1.8974609, 1.7236328, 0.3540039, 1.421875, -1.5673828, 1.4189453, -0.79052734, 1.15625, -2.6054688, 0.66748047, -0.65722656, -2.5566406, 0.875, 1.4414062, 1.3212891, 2.4316406, -0.019561768, -0.64160156, 1.0009766, 1.3847656, 1.5400391, 0.69921875, 1.1611328, 1.6826172, 2.2363281, -1.6650391, 2.265625, -0.46142578, -0.52978516, -3.7148438, 2.6699219, 3.046875, 1.03125, 0.7163086, -1.1064453, 0.06951904, 0.39379883, -0.89208984, -1.2949219, -2.4785156, 0.12414551, -0.9038086, 0.62646484, -0.3955078, -2.609375, 1.7666016, 1.6386719, -0.42456055, 0.40893555, 0.24267578, -0.85498047, 1.3427734, -0.93652344, -1.1357422, -0.61328125, -0.31396484, 1.0537109, 0.16027832, -1.3759766, 1.5351562, 1.4433594, 0.8666992, -1.5283203, -0.57128906, 0.011985779, 0.54003906, -0.99902344, 0.9814453, -0.45703125, -2.3554688, 2.125, 0.78515625, -0.05831909, 1.7636719, -0.36645508, 0.22644043, -0.8652344, -1.0087891, 0.15234375, 0.32104492, -0.2211914, 1.7529297, 1.9423828, 0.37353516, -0.19445801, -1.7880859, -2.9277344, -1.4824219, -1.9892578, 3.7539062, -0.11895752, -1.5820312, -1.015625, 1.8378906, 3.2539062, -1.5175781, -1.0625, -0.29345703, -1.4960938, 0.13696289, 0.97802734, 0.7246094, 1.5175781, 1.1523438, 0.14208984, 2.3417969, 1.0400391, 0.43188477, 1.2509766, 2.9667969, 0.31054688, -2.2421875, 0.18286133, -0.7001953, -0.52734375, -0.77490234, -0.28930664, 2.109375, 0.7661133, -1.1503906, -1.7324219, -1.0214844]}, "B01ENV3UDA": {"id": "B01ENV3UDA", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black\nDescription: \nFeatures: Combination of gas grill and griddle with two individual cooking zones | Easy assembly required\nProduct dimensions \u2013 66.1\" L x 21.8\" W x 43.7\" H | Clearance space around product \u2013 36\u201d | Product weight \u2013 103.6 lbs. | Cooking area (Two) \u2013 292 sq. inches each | Gas tank size \u2013 20 lb. | Burners output (4) \u2013 12,000 BTU each\nAutomatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel\nTwo fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach\nWith fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup\n", "embedding": [-2.4296875, 0.7675781, 0.87109375, -0.33691406, 0.15356445, 1.4101562, 1.7402344, -0.19372559, -2.5761719, 0.97216797, 1.1962891, -0.20947266, 1.3378906, -2.7890625, 1.6533203, -0.0463562, 0.6484375, 0.7998047, 1.6337891, -0.4013672, 1.9501953, 0.37573242, 3.0117188, -0.029312134, 0.8227539, 1.4267578, 3.6464844, -4.4570312, 0.5258789, -0.7792969, 2.6621094, -0.17651367, 1.640625, 1.4550781, -2.1816406, -1.8193359, -1.3085938, 1.7226562, -1.8710938, 0.41748047, 0.3852539, -1.6582031, 2.9550781, 0.40771484, -3.0390625, -1.3447266, 0.12646484, 1.2988281, -0.9824219, -0.28564453, 2.0917969, 1.1826172, 0.35253906, 0.65185547, -1.6582031, 1.3886719, 2.4453125, -2.1074219, 1.1435547, -0.1239624, 2.7402344, 0.27197266, -1.8408203, 0.039886475, -0.81152344, -1.2578125, 0.05419922, 0.9711914, -1.125, -2.9863281, 2.2675781, 0.76708984, -1.5654297, 0.63183594, 0.12213135, -0.6425781, -1.9746094, 1.9277344, 1.5507812, 0.5258789, -3.1914062, 2.2539062, 0.8066406, -2.0898438, 0.3474121, -0.3149414, -0.22167969, -0.9482422, 1.2851562, 1.671875, -0.23181152, 2.8496094, -2.5703125, -3.9238281, 1.8212891, -0.23303223, 1.1982422, 1.5068359, 0.3244629, 2.2597656, -0.32641602, -0.765625, -0.8491211, -1.3632812, -0.74365234, -2.6503906, 1.5224609, -0.1842041, -2.5820312, -0.25097656, -2.4824219, 0.106933594, 1.8867188, -0.89453125, 0.0131073, 1.1503906, -0.52734375, 3.4804688, 2.1191406, 0.53759766, 3.6660156, -0.17822266, 2.0664062, -0.47924805, 0.95654297, -0.006008148, -1.6015625, 2.8691406, 5.7460938, -2.0605469, -1.5292969, -0.7861328, 2.6894531, -0.5341797, -2.1425781, -3.0507812, -0.61279297, -1.9267578, -3.9199219, 0.5439453, -2.2753906, 1.2080078, 2.5917969, -0.076660156, -2.8808594, -0.8256836, -0.8754883, 1.6835938, -1.0810547, -0.4453125, 0.12243652, -1.4863281, 1.1943359, -2.4082031, 2.375, -2.7480469, -1.1181641, -0.024795532, 3.4628906, 1.2519531, 2.7285156, -3.0429688, -1.6542969, 0.24621582, 0.17150879, 0.1796875, 0.17675781, 3.5664062, 1.2880859, 1.5146484, 1.421875, -0.8925781, -0.6064453, -0.25097656, -0.013648987, -0.9638672, -1.0488281, 1.71875, 0.97509766, -0.27734375, -1.0537109, -2.7539062, -0.7260742, 0.53759766, 2.0058594, -2.2226562, -0.42773438, 0.36157227, -0.4177246, -0.3569336, 0.21875, -1.4179688, -1.078125, 1.2529297, -0.12054443, -0.8964844, -2.21875, -0.7626953, -0.48217773, 1.7431641, -0.8979492, -0.10229492, -0.3569336, 0.2919922, -3.484375, -3.9316406, 0.41455078, -3.0507812, -0.015350342, 0.52490234, 0.17578125, -1.0146484, 0.47021484, -1.0878906, 0.91845703, -1.6269531, 1.328125, 0.8276367, 2.2519531, 1.2900391, -0.5566406, -0.39916992, 0.83154297, 1.78125, 0.7402344, 1.8886719, -0.75634766, 1.5273438, -1.7753906, -1.265625, 2.2167969, -0.9506836, 1.5800781, 1.7753906, -2.1914062, 0.9951172, -0.5517578, -0.7597656, -0.65185547, 0.57421875, 0.57177734, -1.0908203, -0.60009766, -1.2548828, -0.27490234, 1.4345703, -1.015625, 1.7246094, -0.15942383, 1.1787109, -2.2441406, 1.3007812, 0.66845703, 0.15722656, -0.21899414, 1.1455078, -0.04067993, 1.3603516, -0.80371094, -2.2753906, 0.49536133, 0.5336914, -0.60009766, -0.8696289, 1.3837891, -1.9052734, 1.9375, 0.091308594, -1.7373047, -0.3227539, 0.6772461, 0.28759766, 2.2441406, -0.70214844, 1.4296875, 1.0332031, -1.9902344, 1.9550781, -1.7275391, 2.1738281, 0.54785156, -1.3974609, 0.33789062, -2.1230469, 0.09338379, 0.3137207, 1.4179688, 0.1574707, 1.3359375, 1.6757812, 3.7910156, -0.94921875, -2.6386719, 2.9023438, -1.9814453, 0.359375, 2.2617188, -1.4091797, -0.10699463, 0.44067383, 0.18884277, 0.6699219, 1.0898438, 1.2285156, -1.3007812, -1.1728516, -1.7021484, -1.7431641, -0.32226562, 0.9975586, -0.9194336, 0.015853882, -0.93847656, -0.828125, -0.3071289, -1.5722656, 2.4628906, -2.0644531, 1.8691406, 0.90185547, 1.2314453, 0.20581055, -1.1152344, -2.9101562, -0.095214844, -0.81884766, -0.0030441284, 0.051086426, 0.85009766, -0.12609863, 1.3144531, 0.5839844, 0.55810547, -2.5019531, -3.4082031, 0.5385742, -3.9453125, -3.2070312, 2.0136719, -1.4541016, -0.609375, -0.09680176, -2.2753906, 0.38110352, 0.40356445, -4.2734375, -0.8173828, 0.87841797, -2.4882812, -0.33862305, -0.46923828, -0.7270508, 0.703125, -3.1777344, -0.24084473, 0.5751953, 0.38427734, 1.4755859, 0.2939453, -1.4013672, -1.5449219, -1.5390625, -1.0546875, 0.49389648, -0.11175537, -2.203125, -0.7426758, -3.6308594, 0.4296875, -1.2832031, -0.9272461, -0.4194336, 0.12365723, -2.0605469, -1.9482422, -0.7504883, -1.2714844, 3.7285156, -1.9208984, 0.82373047, 1.1269531, 0.59033203, 1.4082031, -1.2373047, -2.5058594, -2.9042969, 1.0048828, -2.6191406, -3.453125, -1.6308594, -0.28173828, 0.86816406, 1.9746094, -1.4296875, 3.4609375, -2.2109375, 2.6171875, -3.09375, -0.5097656, -1.5820312, 1.6103516, -0.057495117, -0.57910156, -0.97216797, -1.0791016, -0.40356445, -2.109375, -0.7324219, 2.3105469, -1.0976562, 1.5166016, -0.42114258, -0.54345703, -0.021636963, -0.14245605, -2.3320312, 3.2324219, 0.31079102, -2.4707031, 3.2421875, -1.1269531, -2.1894531, -2.828125, -0.61328125, 3.5488281, 0.56396484, 3.0761719, -0.098083496, 0.71777344, 1.7910156, 2.3886719, -1.2890625, 0.040649414, -1.2832031, 2.6386719, -1.78125, -1.0039062, 1.2675781, 1.1865234, -1.8300781, -0.61865234, 2.5214844, 1.3222656, 1.8193359, -0.47216797, 2.2226562, 0.36083984, -0.82177734, 1.3847656, 1.7158203, 0.30126953, 0.95410156, -0.6298828, 0.08013916, -0.9267578, 1.8613281, 0.7578125, -0.5161133, 3.1386719, 0.37060547, 0.8520508, -1.8164062, 1.5390625, 0.5024414, 1.9462891, 0.8334961, 1.9345703, -0.81396484, 0.7167969, 0.65283203, -1.7099609, -0.52441406, -2.7695312, 0.9160156, 1.703125, 0.14404297, 0.72216797, 0.6064453, 0.42114258, 0.59033203, 0.5214844, 1.3310547, -2.5605469, -0.7607422, 0.72509766, -2.0273438, -0.78759766, -2.5703125, 2.6875, -2.4003906, -0.4025879, 1.9912109, 2.96875, -1.2988281, -0.5498047, 1.9199219, -0.16845703, -1.5888672, 2.1484375, 0.0018444061, -1.484375, 1.4775391, -0.7817383, 0.55371094, -0.17700195, 0.4555664, -0.25683594, -0.18383789, -0.21154785, -1.6357422, -0.9399414, 0.81591797, 1.0039062, -2.7128906, 0.13171387, -2.8046875, 0.76660156, -0.0670166, -2.171875, -1.0683594, 0.83496094, 0.9238281, 1.2148438, -3.2128906, 3.6015625, -0.34960938, -0.34423828, 2.0371094, -4.3554688, -2.0507812, -3.9570312, -3.3457031, 1.1103516, -0.8671875, -0.8022461, 2.4394531, 0.11981201, -0.35009766, 2.1289062, -0.48535156, -1.6875, -0.09454346, -1.5371094, -0.6098633, -3.2148438, -0.046783447, 0.9169922, 0.42529297, -1.3388672, -1.9296875, 0.68115234, 1.5146484, 2.671875, 1.9980469, -3.6445312, 1.0664062, -2.5429688, -0.51708984, -0.39672852, -0.43725586, 1.7724609, -1.6425781, -0.04434204, -3.390625, 2.359375, 0.73291016, -0.5439453, 0.38183594, 0.77001953, 0.49609375, -1.8886719, -0.08618164, 1.2255859, 3.3769531, -0.6567383, -3.0546875, -2.7324219, 0.88671875, 0.27441406, -1.0507812, -0.9165039, -1.1660156, -1.2167969, -0.15014648, 2.2148438, 1.4111328, 1.2451172, 1.1542969, -1.0175781, 0.4790039, -0.99072266, -1.7685547, -1.7001953, -1.2978516, 1.0292969, 0.4074707, -2.5273438, -1.9228516, 0.13903809, -3.9570312, -0.6533203, -1.1884766, 3.6074219, 1.6503906, 0.86279297, 3.5371094, -1.2451172, 0.07775879, 1.3818359, -0.7626953, -3.0976562, 2.9785156, -0.025924683, -0.30981445, 1.9199219, 0.19189453, -2.8671875, 1.5097656, 1.7412109, -2.2285156, -1.4853516, 0.014312744, 1.3056641, -0.98779297, -1.5244141, 1.3007812, -0.44018555, 3.0195312, -0.6201172, 0.9321289, -0.26782227, 0.27368164, -1.5097656, 0.3684082, -0.26391602, 0.3491211, 0.46606445, 1.1181641, 1.0810547, -1.4658203, 0.5493164, -1.2636719, 3.0214844, 0.09429932, 0.44726562, 0.7529297, 0.7324219, -0.089416504, -1.2451172, 0.81152344, 2.8164062, -0.23388672, 2.9550781, -0.096191406, -2.1230469, 2.296875, 0.28100586, -2.1542969, -2.5644531, 0.38085938, 0.016235352, 0.15002441, -0.121276855, -3.4355469, 0.06793213, 2.0214844, -1.1865234, 0.4736328, 0.6689453, -0.5527344, 0.123046875, -0.94433594, 0.31420898, -0.22521973, -0.7626953, -0.5209961, 0.5498047, 1.3603516, -0.6254883, 1.3085938, 1.2490234, -0.29833984, -0.7573242, 2.1660156, -0.8574219, 1.4257812, 0.4958496, 0.7163086, -2.7851562, 0.19921875, 3.3261719, 1.2314453, 1.7548828, 0.6376953, 1.4042969, -2.2441406, 0.21801758, -3.0683594, 2.828125, -1.7275391, -0.73291016, 3.0839844, -2.3125, -0.5830078, -2.2597656, 0.8823242, 0.21203613, 2.7324219, 2.7734375, 0.18005371, -0.64404297, 0.4663086, -1.4003906, -3.8964844, -1.3662109, 0.88964844, -0.07373047, -0.4892578, 1.3554688, -2.6152344, 0.1138916, -1.0820312, -0.51660156, -2.4179688, -0.65771484, -1.7265625, -1.3212891, -1.2978516, 0.8466797, 0.25732422, 1.3847656, 1.0361328, 0.30688477, 0.61376953, -4.0507812, -0.41503906, 1.9160156, 0.17651367, 0.30249023, 1.2822266, -1.2490234, -0.36889648, -0.85791016, 0.1640625, -2.7070312, 3.0332031, -2.2363281, 0.3330078, 0.072631836, -0.91064453, 1.2998047, -0.4074707, -2.0214844, 0.4387207, -0.8876953, 3.1601562, 1.2167969, -0.97998047, -0.81933594, 1.5449219, -0.72558594, -2.0527344, 0.6459961, -0.7421875, 0.5683594, 1.2626953, -2.7128906, -0.5234375, -1.1152344, -1.2548828, -0.7207031, -1.6435547, 0.1730957, 0.4177246, -0.65625, 1.1943359, -1.4130859, -0.16589355, -0.09832764, -1.2109375, 0.0099487305, 0.5415039, -1.5, 1.7832031, 1.5351562, -1.0429688, -0.4724121, -0.8120117, 0.56884766, 1.9052734, 0.6660156, 0.3930664, -0.31982422, -1.0859375, 0.4038086, -0.8354492, 0.5439453, 1.9726562, -0.23522949, -0.66552734, 1.53125, 3.3242188, 0.94189453, 1.4755859, 1.2519531, 1.078125, -0.9355469, 5.1640625, -1.1162109, -2.4570312, 0.49023438, -1.8632812, 3.3417969, -0.9741211, -0.84521484, -0.4765625, -0.4013672, -1.5263672, -2.953125, -0.5385742, -1.9746094, 2.0546875, 1.6210938, -0.61865234, 0.13720703, 1.1777344, 0.7729492, 0.15026855, 1.3925781, 0.47265625, -0.83203125, 1.8212891, -1.1474609, 0.9995117, 0.23913574, -0.24194336, 1.5625, 3.1015625, -0.38476562, -1.9257812, 3.1015625, -0.7246094, 2.7050781, 2.5800781, 0.13330078, 3.5976562, 1.0068359, 2.8515625, 0.7363281, -0.032073975, 1.6757812, -0.33618164, 1.6884766, 2.234375, 3.5488281, -0.56884766, -0.6611328, 1.0839844, 0.7348633, -1.9306641, 0.20361328, 0.89990234, 1.7070312, -1.8457031, 2.25, 1.0458984, 1.1855469, -1.6015625, 0.041931152, -1.2099609, -1.8330078, 0.36938477, 0.5292969, 3.4570312, -1.0048828, -1.0185547, -0.49389648, 0.15551758, 2.2734375, -3.3066406, 1.046875, 1.2910156, -0.025405884, -0.17736816, 2.3691406, 0.8339844, 0.40893555, 1.6318359, 1.2050781, 1.3232422, 0.50927734, 0.19519043, -0.9482422, 1.1855469, 0.7553711, 2.4570312, 0.24169922, -1.2636719, 3.0839844, -0.96533203, -0.75878906, -3.7285156, 2.9394531, 2.859375, 1.0302734, 1.3242188, -1.6044922, 2.0117188, 2.2226562, 0.19946289, -2.7363281, -1.2011719, -1.2441406, -2.6894531, -1.1318359, 0.21374512, -0.16467285, 3.1894531, 2.7539062, -0.7739258, 2.9960938, 1.3710938, 0.74072266, 0.7758789, 1.0507812, -1.3417969, 1.1386719, -0.23364258, 0.4169922, -0.14123535, -1.8535156, -1.2773438, 1.3779297, 2.0683594, -1.4013672, 0.65722656, 0.016464233, -1.4677734, -0.49658203, -0.09112549, 0.0019664764, -2.53125, -1.0888672, -0.24133301, -0.48876953, -1.4462891, -3.1933594, 1.2949219, 0.7163086, -1.3798828, -0.02557373, 0.88427734, 0.18151855, 2.6933594, 0.48876953, 0.6489258, 0.84521484, -1.7246094, 0.9477539, -0.16540527, -1.0751953, 1.2431641, -0.9272461, 1.1103516, -1.6044922, -0.2524414, -1.5009766, 0.0126571655, 0.30395508, 1.2851562, -1.7607422, -1.1855469, 0.75341797, -0.27416992, 1.0361328, 4.3945312, -0.8222656, 0.24829102, -2.8554688, -2.28125, 0.53271484, -0.63671875, -0.29174805, -0.8276367, 4.0390625, 3.1503906, 0.72753906, -1.9521484, -3.078125, 0.030273438, -1.0439453, 2.2871094, -0.32543945, 0.007335663, 0.084106445, 1.6669922, 2.7792969, 0.5209961, -0.7348633, 0.87841797, -0.7138672, 0.33740234, 0.30639648, 2.2070312, 0.8876953, 0.4477539, 0.6796875, 0.86816406, 3.0214844, 0.98095703, 1.5322266, 3.1015625, -1.8173828, -2.7265625, 2.2167969, -1.7519531, 0.28442383, 1.5, 0.04611206, 2.4082031, 0.83740234, 2.6601562, -1.3730469, -2.7734375]}, "B07G6Z2MLN": {"id": "B07G6Z2MLN", "original": "Brand: Wadoy\nName: Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter\nDescription: COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
          PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy\nFeatures: WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank\nGREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances\nMAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install\nEASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening.\nPACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge\n", "embedding": [-1.7080078, 1.5957031, 1.7050781, 1.4316406, 0.68652344, 0.42114258, 1.9384766, -0.99316406, 2.4003906, 1.1894531, 2.3007812, -0.18322754, 2.1230469, -3.1738281, 2.4921875, 0.9013672, 0.6040039, -0.5058594, 1.0009766, 1.2041016, 2.8515625, 1.1953125, 1.8994141, -0.42626953, 2.1132812, -0.44433594, 2.9609375, -1.6113281, -0.98095703, -0.7192383, 1.8554688, -0.5288086, 0.8671875, 0.99658203, -1.7255859, -0.82421875, 0.21081543, -0.057678223, -2.8242188, -0.41845703, -2.6699219, 0.99902344, 0.52685547, 0.87060547, -2.3671875, -1.8398438, 0.34326172, 1.0976562, 0.86328125, -1.671875, -0.07910156, 2.3476562, -1.4433594, 1.4951172, -2.0546875, 1.4785156, -0.23840332, -2.7617188, 0.38842773, 1.9755859, 1.0449219, -0.42626953, -2.0566406, 0.6044922, 0.08013916, 0.25683594, -1.0839844, 0.47827148, 1.6220703, 1.4433594, 0.734375, -0.14794922, 1.203125, -1.1191406, -0.9814453, 1.3212891, -1.9873047, 1.6132812, 2.4804688, 0.84472656, -0.88720703, -0.2722168, -0.5683594, -2.2167969, -0.5839844, 0.20837402, -0.4663086, 1.6425781, 0.23034668, 1.2548828, -1.7597656, 1.7314453, -3.5175781, -3.9863281, -0.39916992, 0.6621094, -0.6328125, 0.49560547, 1.7802734, 1.5537109, -0.3959961, 0.4284668, 0.6323242, 2.1484375, -1.9492188, -0.7104492, 0.35913086, 0.35791016, -3.4824219, -0.1965332, 0.88964844, 0.22143555, 1.3457031, -2.1054688, -0.5883789, -1.0742188, 0.22290039, -2.0566406, 2.6621094, 2.1464844, 3.8320312, -0.55126953, 1.1044922, -0.0075798035, -0.42919922, 0.59814453, 1.0117188, 0.95410156, 3.7910156, -0.57714844, 1.2080078, 0.6958008, 2.5742188, -0.44506836, 0.45776367, -1.3339844, -1.1679688, -3.4003906, -1.7636719, -0.44018555, -3.0195312, 0.3605957, 1.0800781, 1.0878906, -2.2792969, 0.1920166, -1.3789062, 0.7963867, 0.82666016, -1.5400391, 2.3808594, -2.7539062, -0.30200195, -0.0063934326, 1.0839844, 3.0898438, -1.6787109, -2.3085938, 3.5546875, 1.3417969, 0.49243164, -2.0332031, -1.9658203, 0.859375, 1.1259766, -0.67578125, -0.6142578, -0.22570801, 0.19128418, 1.5380859, 0.8955078, -1.6542969, 2.4375, -0.25390625, 1.6445312, -1.7910156, -0.02835083, 3.0839844, 2.6152344, -0.13952637, -3.0332031, -2.1523438, -1.5263672, -1.1386719, 1.8330078, -0.8310547, -2.265625, -0.2130127, 1.1005859, -2.9511719, -1.5693359, 2.8144531, 0.8886719, 0.15026855, 0.32641602, -2.0273438, -4.2382812, -1.1972656, -0.9086914, 1.1826172, 0.7192383, -2.265625, 0.94140625, -0.6040039, -0.578125, -1.1474609, 1.328125, -2.2695312, 0.43408203, 0.05419922, -0.40161133, -0.22827148, 2.6738281, -0.46899414, -0.035980225, -1.7285156, 0.23925781, 1.8525391, 1.0703125, 1.6386719, -0.11743164, 1.0986328, 1.1142578, 1.6552734, 2.4335938, 0.6640625, 0.015007019, 0.03778076, -0.75878906, -0.03982544, 2.9433594, 0.50634766, -0.8486328, -0.5019531, -1.1142578, 2.2890625, 1.0615234, -2.2851562, 0.54589844, -0.50341797, -1.5400391, -1.3759766, -0.6269531, -0.546875, -0.1574707, -1.2890625, -2.3183594, 0.6972656, 2.09375, -2.0820312, 0.98339844, -0.39501953, -1.3828125, -2.3632812, -2.6855469, -0.3623047, 0.32592773, 1.2470703, -0.6845703, -3.0566406, 3.375, 0.3635254, -1.3203125, 0.7524414, 1.2392578, 1.7724609, 1.0136719, 1.3339844, -2.3730469, 0.43554688, 1.0800781, 1.8447266, 0.80078125, -0.51416016, 1.6474609, 3.5429688, -0.43725586, 3.2285156, -0.39453125, -0.7441406, 2.0097656, 0.07788086, 0.2602539, -2.6171875, 0.6533203, 1.5791016, 0.54345703, 0.11816406, -1.5703125, 0.87158203, 3.2207031, -3.1601562, -3.4765625, 3.7011719, 1.6533203, 1.6923828, 1.5976562, -1.2734375, -0.7470703, 1.0664062, -0.24194336, 2.2753906, -2.421875, -0.22399902, 2.6894531, -0.17333984, -0.94189453, -2.0761719, 1.2822266, 0.89746094, -1.4345703, 0.39208984, -2.7246094, 0.5722656, -0.38549805, -2.3222656, 2.1796875, -3.2949219, -1.2724609, 1.9453125, 0.34423828, 1.0742188, 2.2441406, -1.2685547, 0.54003906, 1.7470703, -1.203125, -1.4091797, -0.47973633, 2.234375, 1.8662109, -0.7207031, 0.5800781, -2.4296875, -0.3864746, 0.7216797, -2.6875, -4.2148438, 0.37695312, -1.5185547, -1.1015625, -0.7783203, 0.10217285, 3.3496094, 0.9003906, -0.6279297, -0.5131836, 0.9897461, -0.48168945, -2.4902344, 0.048828125, 2.6875, -0.07458496, -3.640625, -0.16101074, 0.5415039, -0.234375, 2.8339844, -2.7304688, -0.043884277, -1.0263672, -0.7661133, 0.7246094, 0.5708008, -0.75146484, -1.4355469, 1.3837891, -2.5234375, 0.81103516, -1.1054688, 1.9033203, -0.9121094, 1.0683594, -2.8085938, 0.13842773, -0.044158936, -1.0546875, 4.1601562, -0.45239258, 2.2714844, -1.7890625, 1.3291016, -0.58740234, -0.46289062, -1.9785156, -1.4853516, -0.81591797, 0.5185547, -0.1977539, -2.9804688, 0.2553711, -2.2734375, 0.88183594, -0.6191406, -0.5209961, -1.3720703, -0.65234375, 0.8666992, 1.3564453, -0.39257812, 3.2304688, -0.6586914, -1.1757812, -1.3525391, 1.1679688, -0.36889648, -2.03125, -1.0566406, 1.0566406, -0.25683594, -0.26733398, -0.26733398, 1.6279297, 1.5703125, -1.1064453, -3.2832031, 1.4414062, 2.8652344, 0.5566406, 0.9863281, -0.62060547, -0.93408203, -0.9375, 0.0836792, 4.0078125, 3.1777344, 3.2363281, -1.1826172, 2.2695312, -1.8164062, 0.41845703, -0.14526367, -0.7006836, -0.4140625, 2.84375, -3.6464844, -3.0097656, -0.7753906, 1.1845703, -2.1914062, 1.4375, 0.33276367, 0.75634766, 2.5644531, 1.3652344, -1.1542969, -0.78808594, -1.1542969, 1.6142578, -0.6357422, -0.53564453, 0.21398926, -0.73291016, -0.113464355, -2.4101562, -1.4921875, 1.1044922, 1.2529297, -0.13378906, 0.21105957, 1.1113281, -1.4501953, 0.59228516, -0.7163086, 0.6274414, 1.6357422, -0.052215576, 0.03933716, 0.58251953, 0.115356445, 2.0332031, 1.1220703, -3.1738281, -1.1201172, 0.83691406, 3.5625, -1.1611328, -0.18188477, -1.1728516, -0.020568848, -0.4326172, -0.1616211, -0.00064086914, 0.75146484, 2.0449219, -1.9375, -0.5654297, -1.4111328, 0.6484375, -1.2607422, 0.8339844, 0.20214844, -0.61035156, -2.1933594, -1.5595703, -0.9711914, -0.7963867, -2.046875, 1.9355469, 1.1318359, -0.77783203, -0.5888672, -0.27001953, 2.3144531, 1.3984375, -2.4199219, -0.5288086, -2.0546875, -0.83935547, -0.63720703, -0.012931824, 1.96875, 2.5195312, -2.125, 0.24743652, -0.6748047, 1.4199219, -0.0050811768, 0.5292969, -2.0097656, -0.93066406, 1.2041016, 1.5917969, -0.035186768, 2.8867188, -0.6777344, 0.6401367, 1.0849609, -2.0957031, -0.103393555, -0.5654297, -5.6796875, 1.9677734, -2.4042969, -0.042144775, 1.7197266, 2.0097656, -1.4882812, 0.49145508, 0.96240234, -1.9140625, -0.9902344, -1.9199219, 1.7285156, -3.2519531, 0.36035156, 3.2714844, 1.5419922, -0.70654297, -2.0195312, -1.4658203, -0.47436523, 0.1619873, 0.32910156, 0.8808594, 2.0742188, -2.1640625, -1.5126953, -1.4833984, 0.4729004, -0.039978027, 0.45703125, -1.7470703, -1.4794922, 2.515625, 0.62646484, 0.66308594, -1.3544922, 2.8007812, 2.9960938, -0.072143555, -0.28588867, -0.3256836, 3.6210938, -0.5678711, -1.4755859, -0.39160156, -0.9980469, -0.31933594, -0.4494629, 0.86083984, -0.08862305, -1.4042969, 1.4072266, 0.16809082, 2.375, 0.7050781, -1.2724609, -3.4667969, 0.56591797, 0.7211914, 0.15771484, -0.8955078, -1.3632812, -0.50146484, 0.1772461, -0.5083008, -1.3369141, -0.9379883, 0.39404297, -0.17041016, -3.8183594, 2.3789062, 2.2695312, 1.4248047, 0.54589844, -1.5878906, -0.43823242, 0.2763672, 0.1583252, 0.4482422, -0.39135742, -0.055786133, 0.5566406, 0.6020508, 3.1367188, -0.6113281, -0.8989258, 0.26757812, 0.017929077, 1.1494141, -0.3046875, 1.1347656, -0.76220703, -1.34375, -0.24511719, -0.70458984, 2.8535156, -3.1582031, 1.2333984, 3.3691406, 0.7685547, -3.6425781, 0.23583984, 2.0839844, 2.1074219, -0.3815918, -0.34399414, 1.1074219, 0.8847656, 0.5024414, 0.4736328, 0.5317383, -1.8046875, 0.5571289, -0.26953125, 1.8378906, -1.1953125, -0.06451416, 2.09375, 1.2246094, 1.1767578, 0.16760254, 1.5507812, -1.2949219, 1.1171875, 1.5126953, -0.33935547, -0.9291992, 0.72998047, -0.6645508, 2.4824219, -2.1640625, -0.76708984, -0.36523438, 2.8417969, 0.5395508, 2.5644531, 1.4121094, 1.2548828, -0.06311035, -4.34375, -1.8613281, -0.32861328, 0.10864258, 1.6455078, -0.07897949, 0.21459961, -0.47216797, 1.1914062, 2.59375, -0.037078857, 1.3056641, -1.2041016, -0.14746094, -1.1865234, 0.9506836, -1.2265625, -3.2207031, -0.98583984, -0.2364502, 2.7949219, -0.9995117, 2.6660156, 1.34375, -1.2080078, -2.296875, -1.5380859, 2.0957031, -1.9326172, 0.50390625, 1.921875, 2.7246094, -0.7421875, -0.2800293, 0.2524414, -1.4101562, 0.37353516, 2.7988281, -1.5478516, -0.93115234, 0.24121094, -1.8740234, -4.2539062, -0.9277344, 2.375, 0.60009766, 0.4814453, -1.4726562, -0.69091797, 0.05758667, -1.4990234, -1.2636719, -2.7226562, 2.7011719, -1.3242188, -0.2244873, 0.89501953, 1.1992188, -0.3154297, -0.3659668, -1.1972656, 0.49438477, -2.0625, -2.3007812, -1.4863281, -1.4785156, -2.0214844, -1.3544922, 1.2636719, -0.29663086, 0.25561523, 0.2512207, 1.9414062, -1.6835938, 2.1054688, -1.3349609, 0.21496582, 1.9277344, -1.4355469, 1.7519531, 0.045715332, -0.70458984, 0.08721924, 1.9804688, 1.625, -1.9140625, -0.51953125, 0.6870117, -0.56640625, -0.7236328, -1.8554688, -0.062042236, 0.11639404, 3.6210938, 0.5761719, -1.0742188, 0.003522873, -2.6953125, -2.7246094, 0.6152344, -1.9716797, 0.23449707, -1.0478516, 1.0654297, 0.98583984, -0.85009766, 0.20678711, 0.02017212, -1.1337891, -2.5488281, 0.2253418, -1.0527344, 1.7089844, 0.6201172, -1.7011719, -3.3417969, -1.390625, 1.7236328, 1.5244141, -0.5361328, 0.5151367, 0.07940674, -0.6586914, 1.0332031, -0.6904297, 2.0625, 0.15026855, 0.45532227, 0.087646484, -0.94628906, 1.2001953, -3.1054688, -0.31591797, 1.6933594, -0.4362793, -0.96240234, 1.8076172, 1.2177734, -2.015625, 0.07574463, -1.0458984, 0.25463867, -1.3349609, -0.70458984, 0.021850586, -2.4667969, 0.9682617, 0.484375, -2.4804688, -1.171875, 3.5214844, -0.07727051, 0.33544922, 1.4931641, 1.8007812, -0.33422852, -1.21875, 2.2695312, -0.7705078, -1.3642578, -1.7519531, -1.7626953, 0.50634766, 1.7431641, -1.4111328, 0.13183594, 2.2109375, 3.4160156, 0.94189453, 0.30981445, 0.1842041, 2.6289062, 1.0478516, 2.5957031, 3.8222656, 0.49609375, 2.734375, 1.9121094, 1.7695312, 3.6542969, -1.1298828, 1.1269531, 0.14660645, 1.3525391, 1.5576172, -2.5175781, -0.02947998, -0.066711426, 1.6914062, 0.33251953, 0.11364746, 2.8339844, -3.0839844, -0.007698059, -1.2226562, 0.61816406, -4.8125, 1.015625, -1.40625, 0.71191406, -1.9794922, 1.0224609, 0.7548828, 0.31079102, 0.013252258, 0.9863281, 1.3212891, 1.3925781, -2.0625, -1.6308594, -2.2011719, -1.2998047, -0.48095703, 1.5478516, 1.9023438, 0.29638672, 1.1337891, 0.96777344, -1.0029297, -0.5097656, 2.1074219, -2.0761719, 0.46948242, -1.4462891, 1.0869141, 2.203125, -0.9326172, 2.7011719, -0.6113281, -0.3251953, -3.1875, 1.109375, -0.42407227, 0.70458984, -0.041015625, -4.8359375, 0.4519043, -1.1591797, 1.8447266, -3.1582031, 0.28076172, 0.1463623, -3.5664062, 2.1015625, 0.5239258, -2.4824219, 2.09375, 0.63623047, -1.9814453, -0.6669922, 1.734375, 0.8432617, 1.2294922, 0.08666992, -0.8955078, -0.20837402, -1.1767578, 3.2441406, -2.0488281, -2.140625, -1.5175781, 1.6269531, -0.4958496, 1.2275391, -0.95751953, -0.7578125, 1.0097656, 0.39794922, 0.98046875, 0.13354492, -2.1230469, 0.44995117, -0.22070312, -0.11645508, -0.101623535, 1.4550781, -0.44018555, 0.92529297, -1.2011719, -1.1064453, -0.6347656, -0.37109375, 2.4609375, 0.57470703, -0.6845703, -0.6357422, 0.94140625, 1.5791016, -1.9804688, 0.78515625, 0.04751587, -0.051513672, -0.7089844, -2.2304688, 0.15917969, 1.0859375, 0.609375, -0.75634766, -0.20739746, 0.2578125, -1.2304688, -0.97021484, -3.5527344, 2.2636719, 2.5078125, 0.96484375, 0.88134766, -0.6142578, -0.3713379, 1.5966797, -0.2775879, 0.99853516, 1.0039062, 1.5019531, 1.0839844, 0.67578125, -0.72998047, -2.1875, -0.7548828, -3.8398438, 0.4296875, 1.8759766, -1.7236328, 1.6240234, 0.1998291, 1.5917969, -1.2109375, -0.7558594, -0.11975098, -2.0117188, 1.3730469, -2.6953125, 1.265625, 0.6870117, 0.9819336, 1.1533203, 1.9755859, 1.9023438, -1.2373047, -1.1357422, 2.203125, -1.0273438, -1.171875, -0.9272461, 0.35058594, -1.3583984, -0.12988281, 2.3574219, 3.390625, 0.05102539, -1.6679688, -1.5507812, -0.8671875]}, "B01HID4Y7Q": {"id": "B01HID4Y7Q", "original": "Brand: Char-Broil\nName: Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: 2-burner, 24,000-BTU Cabinet Gas Grill\n300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates\nStainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional\nElectronic ignition for fast and reliable startups. Metal side shelves fold down when not in use.\nConvenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.\n", "embedding": [-3.2773438, 1.3652344, 2.21875, 1.5761719, 0.2668457, -1.2050781, 0.58496094, -1.3789062, -0.54003906, 1.7890625, 1.9003906, -1.5009766, 1.5029297, -2.28125, 0.93652344, -0.039764404, 1.7861328, 1.984375, 1.6972656, 0.23352051, -0.0713501, 1.3564453, 0.8959961, 0.8105469, 0.07885742, 1.046875, 3.2929688, -2.1542969, 0.41381836, -2.2265625, 1.9208984, -0.37329102, 0.0008125305, 2.0214844, -2.7519531, -1.6171875, -1.9785156, 1.1523438, -2.9121094, -0.0647583, -0.28149414, -0.73779297, 2.0371094, 0.5102539, -2.5332031, -0.07305908, -0.4970703, 0.20153809, -1.1015625, -0.28466797, 1.5761719, 1.6083984, 0.27856445, 1.6113281, -1.8730469, 1.8447266, 1.0039062, -0.91015625, 1.0859375, -0.92626953, 2.6992188, 0.05340576, -2.0722656, -0.42773438, -2.4863281, 0.8598633, 0.5517578, 1.2070312, 0.2467041, 0.5439453, 1.7021484, -1.0625, -1.3945312, 0.5097656, 1.0664062, -0.44702148, -2.5429688, 2.0429688, 1.2568359, -0.056640625, -1.9003906, 2.421875, 0.27807617, -3.0078125, 0.19702148, 0.02330017, 0.4309082, -1.2705078, 0.19934082, 1.7558594, -0.6298828, 2.2050781, -0.7529297, -2.4023438, 2.0605469, -0.88964844, 0.8076172, 0.3486328, -0.055267334, 2.2363281, -0.9824219, -0.43774414, -2.2421875, -1.0419922, -3.0195312, -1.9550781, 0.14782715, 0.29638672, -3.0078125, 0.5239258, -2.1289062, -0.6098633, 0.79003906, 1.0126953, 0.6464844, 1.5058594, 0.022918701, 3.6953125, 1.2441406, 1.7890625, 3.7011719, -0.22802734, 0.26489258, -0.9604492, -0.023162842, 0.9091797, -0.8676758, 2.5195312, 5.4960938, -1.9384766, -0.13220215, -2.6308594, 3.1777344, 0.59814453, -1.7080078, -1.9462891, -2.6289062, -1.0908203, -4.515625, 1.0986328, -2.875, 1.5859375, 0.116760254, 0.04638672, -2.5175781, -1.3613281, 0.12548828, 2.0273438, -0.28588867, -3.5722656, 0.55810547, -2.8574219, 0.95410156, -1.4287109, 1.5976562, 0.33520508, -1.5410156, -2.1269531, 3.171875, 0.6772461, 0.43164062, -2.1015625, -0.2467041, 2.46875, -0.20324707, 0.13586426, -1.2978516, 1.7050781, -0.61572266, 0.86279297, 0.088134766, -2.1054688, 0.24401855, 1.1601562, 0.33764648, -1.390625, -0.014312744, 3.6777344, 1.4882812, -0.33618164, -0.37524414, -3.828125, -0.23791504, 0.8408203, 0.20874023, -0.63378906, 0.4794922, 1.0634766, -0.22497559, -1.1152344, 1.6552734, -0.35888672, -0.16125488, 0.10546875, 0.94433594, -0.89746094, -2.1074219, 0.008804321, -0.72265625, 0.07910156, 0.25463867, 0.122802734, 0.18981934, 0.87646484, -2.5058594, -2.9746094, 0.47924805, -2.3808594, 0.9746094, 1.5302734, 2.2089844, -1.3876953, 1.4179688, -2.375, 0.5151367, -2.2929688, 1.8359375, -0.7207031, 2.40625, 1.7998047, 0.49926758, -0.83203125, 0.117492676, 0.9614258, 0.18566895, 1.5039062, 0.4946289, 0.7114258, -0.76904297, -1.4853516, 2.0449219, -0.31323242, 0.6142578, 0.014450073, -0.29858398, 1.6523438, -0.105285645, -2.2636719, -1.0195312, -0.60839844, 0.75634766, -0.9926758, -0.15588379, -1.4248047, 1.5244141, 0.9614258, -2.1269531, 2.453125, 1.9707031, 1.1962891, -0.10809326, 0.054901123, 0.875, 1.9814453, -0.640625, 1.6083984, -0.5996094, 1.0449219, -0.78271484, -3.2460938, 0.8828125, 0.19812012, 0.20959473, -1.1728516, -0.53125, -0.6010742, 3.0058594, 1.6152344, -1.7832031, -1.5644531, 0.26904297, 1.0683594, 2.0097656, -1.8007812, 1.6201172, 2.3339844, -0.39941406, 3.3828125, 0.058624268, 1.1816406, 0.8901367, -0.60839844, 3.6640625, -2.9160156, -0.5805664, 1.1962891, 0.9057617, -0.4086914, -0.19018555, 1.1464844, 4.7929688, -0.15966797, -4.0507812, 4.6132812, -0.85839844, -1.1376953, 1.2011719, 0.60253906, -1.1767578, 0.61572266, 3.5703125, 1.3125, 0.9736328, 2.1640625, -2.6816406, -1.4511719, 0.2841797, -1.2236328, -1.6826172, 1.2089844, -0.34399414, -0.16149902, -2.2890625, 1.0078125, -3.2597656, -0.65771484, 4.0546875, -1.9638672, 0.8984375, 0.25463867, 0.5830078, 0.52441406, -1.2226562, -2.0273438, -0.5283203, 0.6508789, -0.82177734, -0.5991211, 0.036712646, -0.039398193, -0.44360352, -0.23083496, 0.7348633, -1.765625, -2.109375, -0.66748047, -2.1796875, -3.9355469, -0.16503906, -0.20690918, -0.42333984, 1.125, -3.8339844, 0.6923828, -0.6333008, -3.3769531, -1.5556641, 0.48217773, -0.44360352, -0.6088867, 0.5341797, 0.5991211, -0.27026367, -3.7832031, -0.06915283, 0.85009766, -0.4255371, -0.4543457, -2.1367188, -0.37573242, 0.57373047, -0.06524658, -1.0410156, 2.3339844, 1.0742188, 0.15234375, 0.07739258, -2.75, 1.140625, -3.4863281, 0.90771484, -1.3466797, 1.5703125, -3.0878906, -2.4609375, -0.37817383, -1.4609375, 3.3828125, 0.22106934, 1.3994141, 1.0966797, -0.74365234, 0.6870117, -0.93652344, -3.2695312, -0.7114258, 1.0361328, -0.93115234, -3.21875, -3.4804688, 1.3916016, -1.0751953, -0.24511719, -0.6928711, 0.019073486, -2.2460938, 0.32617188, -1.6259766, -1.0742188, -0.53564453, 1.5361328, -0.44433594, -0.8251953, -1.7431641, 0.28149414, -1.5947266, -0.04547119, -0.83251953, 1.7832031, -1.2861328, 1.5234375, 1.6005859, -0.13549805, 1.3613281, -2.1894531, -3.6171875, 3.0078125, 1.4042969, -1.5175781, 1.7851562, -1.0566406, -2.6972656, -2.1855469, -0.13537598, 2.3066406, 2.4628906, 2.7675781, 0.9765625, -0.7285156, 3.0585938, 1.4101562, 0.2388916, -0.7998047, -0.14990234, 2.7128906, -2.28125, -1.9873047, 0.50927734, 3.7949219, -2.2578125, -2.09375, 2.7265625, -0.11419678, 2.9023438, 3.0292969, 0.026565552, -0.018463135, -1.3583984, 3.1523438, 2.0410156, 0.7944336, -0.62158203, -1.203125, 0.19348145, -0.40014648, 0.83496094, 2.0644531, -0.39404297, 1.0673828, 1.5273438, 0.80566406, -2.5488281, 0.5019531, -0.37353516, -0.03466797, -0.91064453, 1.59375, -1.2773438, 0.98828125, -2.4726562, -0.7939453, -0.5307617, -1.2255859, -0.49487305, 2.8222656, 0.25952148, 0.47631836, 0.31640625, -0.08831787, 0.85302734, -1.2978516, -0.08068848, -1.4462891, 0.060180664, -0.12133789, -0.5834961, 0.17651367, -1.4580078, 1.8007812, -2.0019531, -0.7011719, 0.21862793, 3.671875, -0.48364258, -1.6171875, 0.5751953, 0.47802734, -1.6992188, 2.90625, 0.86279297, -2.5429688, 2.8945312, -1.0361328, 0.53222656, 1.0185547, -2.8066406, -0.006248474, -0.84716797, 1.2138672, -0.44360352, 1.3583984, 1.3261719, 0.03955078, -1.8710938, 0.81347656, -3.5703125, -0.32885742, -0.48828125, -1.8505859, -3.078125, 2.8632812, 1.3554688, 1.6035156, -0.5776367, 2.8925781, -0.7236328, -0.9951172, 1.4013672, -3.78125, -1.2519531, -2.2167969, -4.40625, 1.0625, 0.05670166, -1.140625, 2.4863281, 0.18554688, -1.4589844, 1.3320312, -0.45141602, -3.6601562, -0.36523438, -0.7324219, -0.71777344, -0.2319336, -0.35742188, 1.7880859, 0.6894531, -2.3261719, -1.6494141, -0.3972168, 0.094177246, 1.2333984, 3.2949219, -2.3789062, 1.7324219, -2.5292969, 0.5649414, -2.1484375, -1.5673828, 1.9023438, -1.0214844, -0.0758667, -3.2109375, -0.064941406, 1.2919922, -1.1044922, 1.7402344, 2.0117188, 0.5786133, -0.9453125, -0.62060547, 1.5244141, 1.5419922, 0.24072266, -3.5195312, -1.6962891, -0.28393555, 0.28881836, -1.0751953, 1.1152344, -0.60253906, -2.1269531, 0.51660156, 1.0419922, -0.21911621, 2.5371094, -0.14404297, -1.8388672, -1.421875, 0.7836914, -1.0966797, -1.6318359, -0.17480469, 0.5053711, -0.20263672, -0.64941406, -2.3671875, 0.39868164, -1.9267578, -1.3417969, -4.0429688, 3.140625, 2.1875, 2.1191406, 2.3574219, -1.3925781, 0.71240234, -0.78271484, -1.1220703, -0.38232422, 1.6904297, -0.29467773, 0.68115234, -0.08404541, 0.30322266, -2.6113281, -1.3388672, 1.4091797, -3.0292969, -0.99365234, -1.5947266, 0.1652832, -1.7998047, -1.1689453, 1.5478516, -0.70996094, 2.8613281, -0.76904297, -1.2207031, -0.875, 1.4228516, -0.5546875, 1.6386719, -1.1738281, 0.78808594, 0.8544922, 1.8203125, 0.52783203, -0.2614746, -0.5336914, -1.8505859, 2.5976562, 1.0048828, 0.04623413, 0.3244629, 0.6401367, -0.9765625, -1.2890625, 0.7026367, 4.8945312, -0.11505127, 3.8808594, 1.1669922, -2.8691406, 1.7255859, 0.12841797, -3.9355469, -0.31079102, -0.8120117, -0.12548828, 1.6376953, -0.62353516, -4.7617188, -0.76953125, 1.0419922, -0.084228516, 0.5419922, -0.7753906, -1, 0.6171875, -2.5273438, -1.0273438, 0.24121094, 0.29174805, -1.4169922, 0.77197266, 0.4645996, -2.0253906, 0.38989258, 3.1308594, -0.62841797, -1.9648438, 2.2988281, 0.0055732727, 1.3125, -1.3662109, -1.1279297, -1.7119141, 0.07556152, 2.8867188, 0.41845703, 2.3320312, 0.92822266, 2.0410156, -2.34375, 0.5620117, -0.78271484, 3.7871094, -2.3925781, -0.6923828, 1.7431641, -1.8964844, 0.41381836, -2.9140625, 1.1669922, -0.86621094, 2.5898438, 2.1015625, 0.5708008, -1.0507812, 0.099609375, -1.4404297, -5.5625, -1.1640625, -0.16955566, 0.4880371, 0.43530273, 1.2626953, -2.2246094, 2.7402344, 0.46533203, -1.0527344, -1.75, -0.049438477, -0.7680664, -1.4736328, -0.005508423, -1.3349609, -0.5917969, 1.9404297, 1.140625, -0.029632568, 0.45947266, -2.890625, -1.5537109, 1.7353516, -2.1464844, 1.5380859, 0.9868164, 0.40722656, 1.0830078, 1.1806641, 0.058898926, -2.4082031, 1.5351562, -0.38842773, 0.21057129, 1.5830078, -0.08331299, -0.88964844, -0.23901367, -1.9082031, -0.10601807, -0.07128906, 0.7504883, 0.05505371, -0.31323242, 0.12915039, 0.72314453, -0.31420898, -0.6201172, 0.78515625, 1.1318359, 1.6035156, 0.38891602, -0.8618164, 0.32641602, -2.3261719, -1.6328125, 0.44995117, -3.1660156, -0.1661377, -2.1328125, 0.38256836, 1.015625, -0.024551392, -0.3095703, 0.31958008, -0.124816895, -0.44995117, 0.89453125, -1.3652344, 2.7265625, 2.171875, -0.70214844, -1.4140625, 0.37060547, 1.3837891, 1.2216797, 1.2236328, -1.1777344, 0.9633789, -1.7509766, 1.6289062, 0.16918945, 2.5566406, 1.6171875, -0.67822266, -1.3818359, 1.0957031, 3.9453125, 0.5185547, 1.0732422, 0.35595703, 0.8071289, -0.33544922, 3.7714844, 0.34692383, -2.6777344, 1.3027344, -2.6777344, 0.39135742, -0.08325195, -0.7939453, 0.75146484, -3.1992188, -2.5742188, -1.6816406, -0.8691406, -2.7363281, 2.6953125, 2.0019531, -1.9960938, 0.83496094, 1.9765625, -1.46875, 2.4140625, 2.4414062, 1.9355469, -0.65234375, 0.60546875, -0.98095703, -0.21166992, 0.49487305, -3.7773438, 0.55908203, 1.0976562, 0.7158203, -0.6826172, 3.5957031, 1.1787109, 1.6591797, 2.4453125, 1.2138672, 3.0410156, 2.0566406, 3.0488281, -0.5727539, 0.7446289, 1.7587891, -0.1850586, -0.21496582, 2.1816406, 1.8417969, -0.2841797, -1.0009766, 2.2441406, -1.1757812, -1.6328125, -0.20874023, 1.2402344, 0.6723633, -3.53125, 2.0195312, -0.2680664, 1.0341797, -1.3378906, -0.96875, -0.42211914, -1.7060547, -0.09399414, -0.32885742, 3.3574219, -0.6484375, 1.3740234, 0.31689453, -0.09979248, 1.6357422, -4.1445312, 0.5209961, 0.14013672, -0.7871094, 0.022766113, -1.2578125, 1.4912109, 0.19958496, 0.4399414, 0.5966797, 1.0810547, 0.9291992, 1.5029297, -2.8925781, 0.7705078, 0.26513672, 2.3066406, -0.66552734, -0.75439453, 1.1484375, -1.8623047, -2.75, -2.7851562, 2.328125, 1.0566406, 2.9746094, 0.04006958, -0.32617188, 2.9628906, -0.005264282, 2.7304688, -1.9169922, 1.1611328, -0.070495605, -4.1445312, -1.0507812, 0.54589844, -0.64746094, 3.5644531, 1.1933594, -1.2373047, 2.1269531, 0.63964844, 1.7529297, 1.2626953, 0.7128906, 0.26098633, 1.1162109, 1.4492188, 1.9355469, -0.7128906, -0.31884766, -1.6767578, 2.9003906, 0.42285156, -1.3847656, 1.5859375, -1.4951172, 1.2138672, -0.7885742, 0.50097656, -0.056243896, -2.9003906, -1.3427734, 0.50634766, 1.7587891, -0.9165039, -0.49780273, 2.1875, 0.4411621, -2.7421875, 0.32885742, 1.3242188, -1.2255859, 2.609375, 1.1064453, -0.21960449, 0.9160156, 0.01322937, 1.6298828, -0.115478516, -1.7910156, 0.0006623268, 0.484375, 0.6269531, -0.5541992, -0.69189453, 0.49829102, -0.3955078, 0.090270996, 0.7763672, -0.21606445, -1.0742188, 1.59375, -0.63134766, -0.5239258, 1.7324219, -0.9370117, 0.43139648, -3.3769531, -1.4042969, -1.6259766, 1.0283203, -0.9790039, 1.6445312, 2.7617188, 1.5585938, 0.8930664, -0.22949219, -2.6757812, -0.38232422, -1.3818359, 1.9589844, 0.99365234, -0.60253906, 1.1757812, -1.4189453, 2.0273438, -1.1582031, -2.3691406, 1.0546875, 0.13867188, 0.26782227, 0.23535156, 0.83691406, 0.6113281, 1.4082031, 0.13891602, 2.7011719, 1.65625, 0.026062012, 0.07495117, 1.3554688, 0.50146484, -0.95703125, 1.5322266, -0.7705078, 0.80029297, 1.4091797, 1.7226562, 1.8964844, -0.068359375, 0.5996094, -1.6171875, -3.8945312]}, "B01HITNEEY": {"id": "B01HITNEEY", "original": "Brand: AMERICAN GOURMET\nName: American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black\nDescription: \nFeatures: 280 square inches of cooking space over porcelain-coated grates\nTwo stainless steel in-line burners for cooking performance;Assembly Required\nPorcelain-coated steel lid and firebox stand up to weather and the elements\nMetal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space\nPiezo ignition system for fast and reliable startups. Cooking System: Convectional\n", "embedding": [-1.359375, 1.0292969, 1.7050781, 0.2668457, 0.34033203, 1.5146484, 0.63183594, -1.078125, 0.52783203, 1.09375, 1.6025391, 1.1572266, 0.9785156, -1.4023438, 0.90234375, 0.9794922, 0.81591797, 1.125, 0.5698242, 0.9746094, -0.011886597, -0.0013217926, 1.1152344, -1.5341797, 0.84765625, 1.3515625, 3.8261719, -3.6621094, -0.1005249, -0.89990234, 1.6748047, 0.6850586, 0.26171875, 2.0175781, -2.4609375, -0.9941406, -0.58935547, 0.54052734, -2.1972656, 1.6396484, -0.25097656, -0.6586914, 2.3066406, 0.28198242, -1.8808594, 0.27197266, 0.81689453, 1.4619141, -2.0078125, 0.15234375, 2.2246094, 1.4580078, -0.2680664, 0.49682617, -0.23291016, 2.1308594, 1.1484375, -0.51953125, 1.5693359, 1.5722656, 1.7617188, 0.39770508, -2.4316406, -0.38305664, -1.4003906, 0.014656067, 0.08203125, -0.58203125, -0.6015625, -0.3076172, 2.2128906, -0.31835938, -1.1894531, 0.7675781, 0.18310547, -0.73828125, -2.765625, 1.8164062, 0.82421875, -1.1767578, -1.6875, 1.7568359, 0.8647461, -1.3740234, 0.5151367, -0.043029785, 0.29785156, -1.9677734, 1.1972656, 0.26708984, -0.58984375, 1.1005859, -1.7607422, -4.2929688, 1.6875, -0.004638672, 1.1337891, 1.8496094, 0.15063477, 1.5146484, -1.0947266, 0.06173706, -0.84814453, 0.15673828, -2.359375, -1.1865234, 1.1962891, 0.86572266, -3.4628906, -0.04928589, -1.0332031, 0.8564453, 1.5927734, 0.48168945, 2.0625, 0.6791992, 1.2216797, 0.7216797, 1.6552734, 0.61083984, 2.6992188, 0.29296875, 0.2854004, -0.21081543, -0.7426758, 0.011657715, -0.75683594, 2.3496094, 4.8085938, -2.5664062, -0.8691406, -0.41455078, 2.7207031, -1.1044922, -1.3105469, -1.9638672, -1.1621094, -1.5478516, -3.0332031, 0.05218506, -2.0625, 0.15002441, 1.0820312, -0.859375, -4.015625, -0.8666992, 1.0976562, 1.0986328, 0.24206543, -1.7880859, 0.6694336, -2.3964844, 1.0058594, -1.1220703, 1.3105469, -0.60253906, -0.81640625, -1.7099609, 3.4492188, 0.3166504, 0.13769531, -2.6835938, -0.43017578, 0.54833984, 0.15710449, -0.36791992, -0.15185547, 1.5361328, -0.103149414, 0.37304688, -0.30688477, -1.0371094, 0.67333984, -0.6020508, -0.25024414, -0.10668945, -0.38671875, 0.95947266, 0.18603516, -0.578125, -2.5742188, -1.3623047, 0.58154297, -0.22094727, 0.6557617, -1.1162109, 0.14501953, 0.80615234, 1.3779297, 0.0715332, -0.55078125, 1.1533203, 0.21765137, 1.4609375, -0.84375, -1.4960938, -0.1427002, -0.28881836, 0.9536133, 0.7685547, -0.9785156, 0.36572266, -0.59277344, 0.5625, -1.8632812, -3.4863281, -0.011077881, -1.4199219, 2.4042969, 2.1054688, 2.53125, -1.4804688, 1.5498047, -1.5, 0.8823242, -2.265625, 1.6123047, -0.87158203, 2.0957031, 1.3291016, -0.39672852, -0.18591309, 1.2128906, 0.84375, 0.06262207, 0.92089844, 1.3759766, 0.9296875, -3.4648438, -0.7446289, 0.7578125, 0.70214844, 0.4321289, 0.76660156, -0.04876709, 0.90722656, 0.2166748, -1.0283203, -0.33203125, -0.5629883, -0.38061523, 0.10595703, -1.1835938, -1.9833984, 0.59033203, 1.9208984, -3.2382812, 2.0234375, 0.83251953, 0.9428711, -0.9580078, -0.051452637, 1.0175781, 0.3959961, -1.3203125, 0.98046875, -0.9970703, 1.2529297, -0.44018555, -1.8525391, 1.6699219, 0.26000977, 0.16027832, 0.31030273, 2.1210938, -0.80029297, 2.3339844, 0.5629883, -1.1210938, -1.4199219, 1.3867188, -0.035705566, 1.9003906, -0.8491211, 1.8730469, 1.2773438, -1.7617188, 3.53125, -0.16674805, 1.5625, 1.5253906, -0.5253906, 1.4150391, -2.703125, -0.09350586, 1.2373047, 1.0351562, -0.9277344, -0.7392578, 0.8105469, 4.8828125, -1.1044922, -1.9902344, 3.3730469, -0.33740234, -0.68066406, 1.8388672, -1.3837891, -2.0253906, 1.1552734, 2.6269531, 0.17602539, 0.68310547, 1.1308594, -0.58740234, -1.3251953, 0.3630371, -0.7084961, -0.2763672, -0.11218262, 0.045318604, 0.10180664, -1.3554688, -0.3737793, -1.8554688, -0.85058594, 1.7646484, -1.6367188, 1.4365234, -0.37402344, 1.6494141, 1.2333984, -0.11871338, -2.1777344, -1.0683594, 0.74121094, -0.9350586, 0.8510742, 0.06402588, -0.7807617, -0.6303711, -0.50927734, -0.026168823, -2.0664062, -2.0800781, -0.060394287, -2.3671875, -2.5253906, 1.0019531, -2.5078125, -0.33789062, 1.3828125, -2.9863281, 0.47143555, -1.6669922, -3.1386719, -1.1621094, -1.6533203, -1.1601562, -0.28857422, 0.93115234, 0.8808594, -0.29345703, -4.5742188, 0.22277832, -0.07458496, 0.01914978, 0.4633789, -1.0253906, -1.0302734, 0.2836914, -0.18017578, -0.6376953, -0.35302734, 0.7451172, -1.3740234, 0.19335938, -3.671875, 0.04196167, -2.8378906, 0.31420898, -1.1337891, 1.609375, -3.3886719, -1.0341797, -2.1347656, -1.7841797, 5.171875, -0.37890625, -0.22827148, 1.1611328, -0.93310547, 1.4375, -1.0224609, -2.546875, -1.3066406, 1.2177734, -0.9970703, -2.8613281, -2.7988281, 0.5620117, -0.9951172, -0.2121582, -1.5224609, 0.7285156, -1.0625, 0.68408203, -2.4902344, -1.0029297, 0.0927124, 0.1361084, 0.20153809, -0.7734375, -1.765625, -0.29711914, -2.0214844, -0.51464844, -1.0107422, 2.4335938, -0.5732422, 1.7626953, 1.8417969, -0.35131836, 0.6225586, -0.9838867, -3.4160156, 2.5664062, 0.54589844, -2.2324219, 1.2246094, -0.39404297, -2.6347656, -2.4453125, -0.9663086, 3.3144531, 2.2382812, 2.375, 0.5151367, 0.8261719, 0.85546875, 0.75439453, 0.9458008, -0.93847656, -0.5551758, 3.5644531, -1.6884766, -1.5556641, 0.35131836, 1.7919922, -2.8242188, -2.1796875, 2.8085938, 0.34692383, 2.3222656, 1.9326172, 1.7675781, 0.25195312, -1.6523438, 2.6035156, 0.5600586, -0.72998047, 0.54345703, 0.28588867, 0.6557617, -0.9526367, 0.37109375, 1.4980469, -0.13195801, 2.5527344, 0.51220703, 0.46069336, -1.9697266, 0.5410156, -1.1123047, 0.5253906, -1.0224609, 1.8710938, 0.13647461, 1.0732422, 0.38305664, -1.3623047, 0.6015625, -1.5556641, -0.54541016, 1.8710938, 1.2753906, 0.18127441, 1.0205078, 1.1962891, 1.3701172, 0.025802612, 0.21472168, -1.1103516, -0.25097656, 0.9277344, -0.47314453, -1.2783203, -1.5126953, 0.7807617, -1.8339844, -2.8613281, 0.18469238, 4.2773438, -2.2988281, -0.84472656, 1.8759766, 1.3154297, 0.25878906, 1.9775391, 0.56396484, -1.1640625, 1.6777344, -0.8486328, 0.1854248, -0.066711426, -0.08679199, 0.08465576, -1.3339844, 0.84277344, 0.005622864, 0.8564453, 1.3164062, 0.64160156, -3.1523438, -0.007850647, -2.6542969, 0.31298828, 0.39892578, -2.3105469, -1.4726562, 2.2636719, 0.055847168, 2.0800781, 0.21081543, 4.28125, -1.1660156, -1.7890625, 2.3476562, -2.0878906, 0.10809326, -2.6230469, -3.921875, 1.0761719, -1.5126953, -1.046875, 3.4414062, 0.095336914, -0.24267578, 2.2324219, 0.4182129, -3.2402344, -1.7519531, -1.3212891, -0.29663086, -0.99902344, -2.6230469, -6.610155e-05, 0.022338867, -2.6328125, -1.3251953, 0.21362305, 0.053253174, 1.1796875, 1.3125, -2.8945312, -0.10357666, -1.0136719, 0.87597656, 0.20800781, -0.8618164, 1.2021484, -1.6582031, -0.01008606, -3.4453125, 0.9140625, 1.796875, -1.5751953, 2.2539062, 1.5595703, 0.43139648, -1.8857422, -0.20935059, 0.88134766, 3.296875, 0.05218506, -2.4375, -2.359375, 0.9970703, -0.7211914, -0.7207031, -1.0390625, -0.48266602, -1.8007812, -1.4560547, 2.4550781, 1.2783203, 1.203125, -0.08312988, -2.4414062, -0.10632324, -0.43164062, -1.8173828, -1.1210938, -0.64746094, 0.66796875, 0.40283203, 0.61083984, -2.4472656, 1.7958984, -1.3154297, 0.27075195, -2.1582031, 3.515625, 1.0273438, 2.5332031, 2.4589844, 0.11279297, -0.28710938, 0.13366699, -0.7402344, -0.6894531, 0.859375, -0.9086914, 0.9560547, -0.3725586, 0.4741211, -2.2597656, -0.10876465, 1.0878906, -1.953125, 0.39135742, -0.99609375, -0.46142578, -1.2363281, -1.0673828, 1.1328125, -0.6064453, 2.4257812, -1.4833984, -0.58203125, -0.08215332, 1.1210938, -0.31323242, 0.5913086, -0.6542969, -0.13293457, 0.9868164, 1.4121094, 0.63134766, -0.7480469, 0.7988281, -1.6660156, 1.5683594, -0.3918457, 0.9941406, 1.2490234, 0.0791626, -0.06060791, -1.8046875, 2.0273438, 3.4765625, 0.25268555, 3.6328125, 0.9941406, -3.5449219, 2.1328125, 0.9848633, -3.8496094, -1.5009766, 0.0871582, 2.0175781, 0.6015625, -0.42504883, -4.53125, 0.33081055, 1.4082031, -0.9980469, 1.3417969, 1.2373047, -1.5673828, -1.1367188, -2.7890625, -1.3681641, -1.0673828, -0.040771484, -1.3769531, -0.4765625, -0.11553955, -2.1621094, 1.0664062, 3.3027344, -0.34570312, -1.2304688, 1.9345703, -1.0810547, 2.1308594, -1.0683594, -0.9926758, -1.3349609, 0.7182617, 3.4375, 0.7294922, 1.0859375, 0.25927734, 2.3535156, -3.2890625, 0.69921875, -1.1289062, 3.59375, -1.3339844, -0.20263672, 1.4560547, -2.8066406, 0.6699219, -2.5332031, 0.8466797, -0.17932129, 4.1484375, 1.7470703, 0.38110352, -1.2373047, 0.4711914, -1.4482422, -4.3554688, -1.3916016, 0.34570312, 0.38671875, 1.0761719, 0.41845703, -1.2382812, 2.2636719, 0.083740234, -0.42016602, -0.80615234, 0.14440918, -1.4970703, -1.7851562, -1.4023438, 0.25854492, -0.5473633, -0.033233643, 2.0878906, -0.4399414, 0.11981201, -2.4941406, -1.3730469, 1.6875, -0.3125, 0.47558594, 3.0585938, 0.16125488, 0.35351562, 0.27075195, 1.7119141, -2.8984375, 2.3867188, -1.9511719, -0.16113281, 0.7421875, -0.21069336, -0.38867188, -0.078063965, -0.7841797, 0.28637695, 0.08203125, 2.0175781, 1.1162109, -0.92285156, -1.4013672, 0.4489746, -0.7885742, -0.58740234, 1.15625, 0.61621094, 1.7275391, 1.4189453, -3.5742188, -0.5444336, -0.14685059, -1.6513672, 0.11932373, -2.5976562, 0.2626953, -1.0332031, 0.24902344, 1.3447266, 0.15710449, -0.07220459, 1.2714844, -0.44458008, -0.5654297, 0.39819336, -1.7802734, 3.3847656, 3.2011719, 0.7055664, -0.75146484, -1.4199219, 1.5478516, 1.859375, 1.3623047, -1.3603516, -0.4963379, -0.9526367, 0.84375, -0.25952148, 0.13110352, 1.921875, 0.48535156, -1.7324219, -0.7216797, 3.3945312, 0.43847656, 0.63134766, 1.3457031, 1, -0.96728516, 4.7578125, 0.53125, -2.0683594, 2.3125, -0.8334961, 2.1601562, -0.84716797, -0.14709473, -0.29296875, -1.8359375, -1.7070312, -2.2714844, -1.4033203, -1.7373047, 2.7246094, 1.0800781, -2.3945312, 0.31518555, 0.6821289, -0.6298828, 2.6054688, 1.1826172, 0.5576172, -0.0045814514, -0.087768555, -0.70214844, -1.0986328, 0.78125, -3.390625, 1.359375, 1.5566406, -1.4658203, -1.2617188, 3.2246094, 2.0761719, 3.0546875, 1.4150391, 1.4951172, 2.40625, 1.5888672, 1.8417969, 0.7158203, 1.6464844, 1.2880859, -1.5087891, 1.2470703, 1.8203125, 2.2636719, 1.1347656, -1.4726562, 1.8798828, -1.7089844, -2.4355469, 0.12335205, 0.019332886, 0.6694336, -2.5742188, 1.7373047, 1.2021484, -0.19311523, -1.1806641, -1.5791016, -0.7973633, -0.71191406, -0.025787354, -0.4482422, 3.5664062, -0.33422852, 0.328125, -0.27075195, 0.5703125, 1.4882812, -3.2382812, -0.20666504, 1.5595703, -1.4736328, -0.14257812, -0.036071777, 1.3242188, 0.46850586, 1.3027344, 1.4394531, 2.0703125, 2.0195312, 0.25610352, -0.47607422, -0.2788086, -0.6323242, 2.6679688, -0.27905273, -1.8261719, 1.6337891, -1.7626953, -3.21875, -4.7148438, 1.8867188, 0.6044922, 1.8398438, 2.1347656, -2.1269531, 1.9013672, 0.33251953, 0.49902344, -2.8027344, 0.46972656, -0.18945312, -3.4355469, -1.1611328, 0.5234375, 0.3178711, 2.2636719, 1.0078125, -1.8447266, 1.4599609, 1.2207031, 1.8007812, 0.20251465, 1.1914062, 1.4248047, 1.5566406, -0.88964844, 2.2304688, -0.041290283, -1.2373047, -1.7773438, 1.4716797, 1.5166016, -0.9868164, 0.5541992, -1.3613281, -0.007621765, -0.35498047, 0.25927734, -0.2286377, -2.6191406, -1.1416016, 0.17492676, 0.46923828, -1.3378906, -1.7607422, 3.4609375, 1.1767578, -1.6240234, -0.3046875, 2.6132812, 0.047088623, 2.1699219, 0.05508423, 0.2109375, 0.2454834, -0.6899414, 1.2226562, 0.10247803, -1.5283203, 0.34399414, 2.4277344, 0.4506836, -0.48168945, -0.40014648, -0.7060547, -1.2548828, 0.14733887, -0.11834717, -1.0263672, -2.015625, 2.7558594, -0.5996094, 0.68652344, 2.5722656, -1.8017578, 0.17126465, -2.5253906, -0.6459961, 0.07861328, -0.76123047, -0.8154297, 1.5527344, 4.140625, 0.83984375, 0.2265625, -0.85595703, -2.6953125, -1.0371094, -2.1914062, 2.2636719, -2.1054688, -0.13244629, -0.3359375, 0.50390625, 1.6552734, -2.015625, -2.0703125, 0.4255371, -1.9072266, 1.2001953, -0.4189453, 2.1914062, 1.4111328, 0.43554688, 1.0527344, 0.33813477, 2.0449219, -0.3630371, 0.58935547, 3.3613281, 0.024108887, -1.9492188, 1.6074219, 0.06402588, 0.3388672, 0.7426758, 0.48779297, 1.3925781, 1.0439453, 0.55615234, -1.0185547, -3.1699219]}, "B07B8SPXTG": {"id": "B07B8SPXTG", "original": "Brand: Blaze\nName: Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP\nDescription: Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...\nFeatures: Blaze Grills offers a best-in-class Lifetime warranty\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef\nFull-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\nCast stainless steel Linear Burners for durability and longevity\n", "embedding": [-1.6269531, 1.3056641, 2.1679688, -0.9223633, 0.45629883, -0.2763672, 0.9501953, -0.4855957, -1.0664062, 2.5605469, 0.1373291, -1.7910156, 1.5751953, -3.2050781, -1.5634766, -0.1850586, 0.85498047, 0.57421875, 2.2597656, 0.00894928, 0.8095703, 0.73339844, 0.95654297, -0.7895508, 1.0214844, -0.26879883, 2.9472656, -3.625, -1.0605469, -1.5488281, 2.0898438, -0.6791992, -1.3193359, 1.1914062, -4.078125, -0.8745117, 0.5073242, 1.2568359, -2.1015625, -1.6162109, -1.0126953, -1.3945312, 2.3925781, 1.2070312, -2.2226562, -0.2866211, -0.22619629, 1.2353516, -2.0761719, -1.0458984, 1.3984375, 1.4648438, 0.6386719, 0.1361084, -0.91064453, 0.7167969, 0.92822266, -0.7753906, 1.5351562, 0.2944336, 3.5371094, 1.453125, -2.9804688, 0.10070801, -2.0917969, -0.68603516, 1.3105469, -0.38623047, 0.27978516, -0.17736816, 1.8125, 0.5888672, -0.8769531, 0.9477539, -0.4345703, -0.49804688, -3.1015625, 2.1484375, 1.3212891, -0.32666016, -0.8925781, 4.0625, 0.5517578, -1.7861328, -0.0592041, 0.75634766, -0.9482422, 0.08215332, 2.1074219, 0.055725098, -0.9477539, 0.8959961, 0.46191406, -2.8476562, 3.0214844, -2.5039062, 2.2402344, 0.46118164, -0.62890625, 1.5976562, -1.6533203, 0.50097656, -0.83203125, 0.08239746, -2.5273438, -1.3994141, 2.5332031, 1.6894531, -1.4794922, 0.7626953, -2.5410156, -0.45825195, 2.4023438, 0.46850586, 1.3242188, 0.67333984, 0.35009766, 1.5419922, 1.4697266, 2.0332031, 2.0253906, -0.921875, -0.20117188, -1.921875, 1.0419922, 0.20996094, -0.2956543, 1.3486328, 3.6972656, -1.0742188, -1.1992188, -0.55810547, 3.8574219, -0.36083984, -0.71777344, -2.2167969, -2.140625, -0.8256836, -3.5253906, -0.92626953, -1.3798828, 1.4199219, 2.2988281, -0.29833984, -2.9316406, -0.81347656, -0.3083496, 0.828125, -0.23583984, -1.6894531, 1.4804688, -0.7319336, -0.107910156, -3.9296875, 1.6621094, -0.7988281, -0.9350586, -2.1621094, 3.6054688, 0.7133789, -0.73095703, -2.1914062, -0.39208984, 2.0449219, -2.03125, -2.6152344, -0.07006836, 2.3515625, 0.23522949, 1.5205078, 0.11383057, -2.1835938, 0.84277344, -0.375, 1.9863281, -2.1113281, -1.9951172, 1.6025391, -0.1348877, 0.54345703, -1.3974609, -1.1171875, 0.7426758, 0.37329102, -0.014579773, -0.20812988, -0.07366943, 0.7338867, 1.6015625, -1.9619141, -0.41259766, 2.4277344, -0.5566406, 0.69921875, -0.6064453, 1.0673828, -1.71875, 0.2956543, 1.4375, -1.2089844, 0.085754395, -1.7578125, 0.79833984, 0.31079102, -2.046875, -3.0800781, -1.4355469, -1.546875, 0.12695312, 2.0273438, 1.2568359, -1.6992188, 2.9492188, -0.4987793, 1.1464844, -1.3769531, 0.4790039, 1.5917969, 1.9863281, 0.9868164, 0.81640625, -1.7246094, 0.5473633, 4.8789062, -0.18859863, 0.20861816, 1.0478516, -0.24487305, -2.5800781, -1.3789062, 1.3681641, 1.6855469, 0.7651367, -1.0498047, -1.6464844, 2.7128906, 1.3261719, -0.33618164, 0.28222656, 0.22717285, 2.2539062, -0.64160156, -2.3027344, -1.7382812, -0.52978516, 0.061340332, -1.8251953, 1.9941406, 0.83496094, 0.2705078, 0.74658203, -0.74658203, 3.1367188, 2.1523438, 0.06933594, -1.0771484, 1.4140625, 1.4042969, -1.7363281, -1.8183594, 1.9375, 0.38720703, -1.1171875, 0.105651855, -0.8754883, -0.65527344, 1.7919922, 1.6337891, -1.3925781, -0.7036133, -1.0400391, -0.19543457, 1.3564453, -0.22839355, 0.72802734, 3.0800781, -1.0654297, 1.8652344, -0.33813477, 2.3535156, 0.92041016, 0.064819336, 2.3417969, -2.6347656, -1.1083984, 0.46679688, 1.0703125, -1.3554688, -0.55810547, -0.42626953, 4.5820312, 0.6176758, -3.5332031, 2.8105469, -2.2304688, 0.07220459, -0.61083984, 0.005428314, 0.90771484, 0.89746094, 1.7480469, 1.0107422, -0.107299805, 0.9399414, -0.2626953, 0.73876953, 0.8833008, -1.8974609, 0.009124756, 1.5976562, 0.38452148, 0.0949707, -2.2636719, -1.140625, -0.58154297, -1.5410156, 3.7167969, -2.2949219, 2.1425781, 1.734375, 1.0615234, 2.109375, -0.23852539, -1.2246094, -0.9091797, 0.93896484, -0.51904297, 0.020568848, -0.3684082, -0.4975586, -2.5976562, -1.234375, -0.13916016, -1.7880859, -0.19995117, -1.7226562, -0.9785156, -2.8378906, -0.64697266, -3.5429688, -0.8613281, 0.29223633, -2.1386719, 0.33374023, -1.8183594, -3.9765625, -0.9291992, -1.3017578, -1.1816406, 1.25, -0.2697754, 0.47753906, 0.070739746, -2.71875, 1.0576172, -1.6269531, 1.0029297, 0.63427734, -0.8935547, -0.3828125, -1.3125, -0.4519043, -0.9707031, 0.8310547, 1.15625, -0.2368164, -0.4621582, -4.1757812, -1.1757812, -2.0097656, 1.3466797, -1.5048828, 0.93066406, -2.3964844, -1.3212891, -1.8662109, -0.17260742, 1.9609375, -1.0800781, 0.24633789, -0.49560547, -0.78271484, 0.921875, 0.2824707, -2.3710938, -0.39819336, -0.30786133, -1.4140625, -3.1445312, -2.7402344, 0.09112549, 0.11456299, 0.76904297, -1.5839844, 0.050567627, -0.57128906, 1.9951172, -2.1171875, -1.546875, 0.0018815994, -0.05053711, -0.6972656, -1.4755859, -2.2246094, -1.3291016, -1.5615234, -1.8046875, -0.80078125, 1.3095703, -0.09301758, 1.3076172, 1.7470703, 0.48779297, 0.6074219, -0.71533203, -3.6328125, 1.2490234, 0.5444336, -2.8847656, 1.7734375, -0.2783203, -0.9042969, -1.6494141, -0.9765625, 3.3359375, 2.3535156, 1.1289062, -0.7114258, -1.3798828, 2.5800781, -0.8017578, -0.090270996, -0.08166504, -1.0273438, 3.9257812, -2.9355469, -2.4238281, -1.4560547, 2.7753906, -2.0449219, -2.2695312, 3.9101562, 0.7426758, 0.047454834, 1.5117188, 3.5859375, 0.43798828, -1.3027344, 0.4946289, 0.050720215, 0.66845703, 1.3925781, -2.2675781, 0.47680664, -0.15563965, 0.44140625, 2.3242188, 0.62841797, 0.7675781, 3.3847656, 0.7739258, -0.3059082, 0.5888672, -0.01600647, 2.7207031, 1.5048828, 2.3222656, -1.0283203, -0.32055664, -0.50634766, -0.38793945, 0.7446289, -0.0031929016, -0.9663086, 1.5068359, 1.9238281, 0.24804688, 1.484375, 2.0136719, 0.578125, -0.87109375, 2.2246094, -1.7929688, -0.3034668, 0.9370117, 0.5932617, -0.89453125, -3.8945312, 0.48583984, -0.76416016, -1.3125, -0.04272461, 1.5595703, 2.1777344, -2.4257812, 1.5058594, 2.4140625, -0.5395508, 2.5195312, 0.21350098, -0.0023403168, 0.62109375, -1.3955078, 1.9394531, -1.0478516, -1.7441406, 0.28222656, -1.8076172, 1.5429688, -1.3447266, 1.2236328, 2.3183594, -1.3408203, 0.9453125, 0.2578125, -2.6425781, -0.018554688, -0.31860352, -2.4570312, -3.4765625, 1.7480469, 0.24768066, 1.8417969, -0.5161133, 2.6425781, 0.6855469, -1.3652344, 2.8320312, -3.5371094, -1.1650391, -2.6308594, -4.7773438, 2.1210938, -0.91503906, -1.6376953, 1.8378906, 0.11224365, -0.54541016, 0.41967773, -0.46948242, -3.28125, -1.6679688, -0.4584961, -1.0771484, 0.7675781, -1.5537109, 2.53125, 0.8286133, -2.0859375, -3.3984375, -0.28710938, -0.67578125, 0.890625, 2.46875, -2.1875, 0.89404297, -1.9580078, -0.43798828, -0.7167969, -1.5908203, 0.6645508, -2.5117188, -0.3083496, -3.7714844, 0.07446289, 2.9140625, -0.15820312, 2.125, -0.46777344, 1.0410156, 0.7089844, -0.7866211, 2.6367188, 3.4648438, 0.97753906, -3.5117188, -1.5742188, 2.3554688, 1.8359375, -1.3017578, -0.52490234, 0.023925781, -2.296875, 2.7675781, -0.28295898, 0.85546875, 1.3681641, 0.421875, -4.203125, -1.1005859, 0.07495117, -1.8417969, -1.3779297, 0.5390625, -0.26660156, 0.9472656, 2.1660156, -1.4824219, -0.20141602, -1.5400391, 0.2607422, -3.7792969, 0.53808594, 2.2773438, 2.4648438, 2.4199219, -0.11657715, -1.9550781, 0.8364258, -0.42211914, -1.4970703, 1.2460938, -3.21875, -0.16467285, 2.5332031, 1.4892578, -0.38305664, -1.3691406, 0.8774414, -3.2226562, -0.8754883, -0.26831055, -1.8310547, -2.2734375, 0.40234375, 1.7402344, -0.51220703, 2.984375, -2.953125, -2.4238281, 0.5292969, 1.0751953, 0.17907715, 0.14685059, -0.26904297, 0.46313477, 0.35864258, 3.6757812, 1.9462891, -0.5625, -0.30029297, -1.1259766, 2.125, -0.30541992, 0.8120117, -1.9082031, -0.23913574, -0.79541016, -1.4804688, 2.0878906, 2.4882812, 1.6074219, 1.7988281, 0.61376953, -2.2871094, 2.1113281, 0.52001953, -4.65625, -1.2519531, 0.7866211, -1.4501953, 0.52441406, 0.8901367, -3.828125, -1.0859375, 3.5644531, -0.9506836, 1.1611328, 1.8916016, -2.0507812, -0.4260254, -0.92285156, -0.31860352, -0.6074219, -0.50439453, -0.6040039, -0.35791016, 0.31274414, -1.8388672, 1.4296875, 2.53125, -1.1884766, -2.6152344, 1.3828125, -0.77490234, 0.5366211, -0.31225586, 0.6152344, -1.2988281, -0.6826172, 1.1523438, 0.025680542, 2.3046875, 1.3847656, 2.8984375, -3.9648438, 0.8544922, -2.0917969, 2.7832031, -2.8847656, -0.21716309, 2.2148438, -1.3857422, -1.3046875, -2.8535156, 0.1083374, -1.2880859, 1.0703125, 1.7431641, -0.8457031, -2.0117188, 1.7607422, -2.9394531, -5.453125, -1.8164062, 0.62939453, -0.11450195, 0.16552734, -0.08935547, -1.3857422, -0.018005371, 1.4501953, -1.7763672, -0.57421875, -0.1940918, -2.1601562, -0.78125, -1.2177734, 1.2792969, 0.46362305, -0.5517578, 1.7890625, -1.2490234, 1.9306641, -3.9296875, -0.9589844, 2.6289062, -1.8154297, 0.42333984, 1.5078125, -0.9916992, 0.5258789, 1.9199219, -0.6044922, -2.1347656, 1.7265625, -1.3837891, 0.71435547, 0.4296875, -1.2744141, 0.028121948, -0.32177734, 0.8935547, -0.2902832, -0.38916016, -2.0175781, 0.8666992, -0.2878418, -0.96875, 0.7285156, -0.1418457, -2.1679688, 1.8671875, 0.8798828, 0.9272461, -0.16503906, -1.0292969, -0.09429932, -2.1992188, -3.2519531, 0.69091797, -2.4101562, 0.8652344, -0.07067871, 2.3222656, 1.2597656, 0.5029297, 1.4589844, 0.43823242, 0.07421875, -1.6796875, 0.026870728, 0.10180664, 3.7734375, 2.9257812, -2.7070312, -0.7138672, -2.1914062, 1.7646484, 0.49902344, 0.0012512207, -1.5859375, -0.31811523, -1.9414062, 0.42236328, 0.27441406, 2.0957031, 1.8134766, -0.30541992, -1.2578125, 1.6992188, 2.5292969, 0.091552734, 1.9775391, 0.0925293, 0.47338867, 0.1953125, 3.8789062, -0.6855469, -2.5742188, 1.0576172, -1.0566406, 1.2851562, 1.3818359, -1.7275391, -0.4621582, -2.0585938, -0.3671875, 0.18884277, -1.4521484, -2.2558594, 3.1777344, 1.4277344, 0.46533203, -0.95214844, 2.6660156, -0.2487793, 3.2714844, 0.44921875, 0.3461914, 0.88427734, 0.33251953, 1.0517578, -0.93603516, 1.3115234, -2.7714844, -0.08355713, -0.5595703, -0.65283203, -1.0644531, 2.8730469, 1.9423828, 2.796875, -0.9189453, 2.0546875, 1.6953125, 2.1074219, 2.1679688, -0.41723633, 1.703125, -0.07873535, -0.8408203, 0.9902344, 1.7197266, 2.8769531, 0.31396484, -0.92285156, 2.1894531, -1.3359375, -1.3447266, 0.47705078, 1.1835938, 2.0585938, -3.6328125, 2.4726562, -0.55810547, 0.80810547, -1.9970703, -0.95214844, 0.055023193, -0.58935547, -1.4882812, 2.8300781, 3.2070312, -0.32299805, 1.6689453, -0.7597656, -0.54541016, 0.85058594, -3.1894531, -1.5546875, 0.3527832, -0.6352539, -1.3173828, 0.066711426, 2.1074219, 1.1826172, 0.3581543, 0.5605469, 2.3769531, 1.9394531, 1.4433594, -0.68359375, -0.30297852, -1.0166016, 3.8144531, -2.2753906, -1.8183594, 1.4121094, -1.1044922, -4.2382812, -4.0078125, 2.4570312, 0.75341797, 2.2558594, 1.4189453, -1.4912109, 2.5214844, -0.34399414, 2.1347656, -1.8105469, 1.6826172, -0.7705078, 0.8647461, -0.6645508, 1.4707031, 1.8261719, 1.5849609, 1.3964844, -2.1386719, 1.1962891, -0.5727539, 2.0683594, -0.38891602, 0.2154541, 2.5488281, 0.113708496, 0.27392578, 1.7753906, 2.0058594, -0.68847656, -0.9916992, 2.1367188, 1.6582031, 0.9067383, 0.7890625, -0.07244873, 1.0546875, -1.3173828, -0.30737305, -0.0869751, -1.4228516, -1.9580078, -0.63964844, -0.08880615, -1.5449219, -1.8056641, 0.41137695, 2.0644531, 0.46362305, 0.41064453, 2.0058594, -0.8461914, 2.8457031, 2.2167969, 0.46044922, -0.35668945, 0.09234619, 0.17077637, 1.3632812, -2.0371094, 1.5068359, 1.7685547, 1.1552734, -1.7832031, 0.24279785, -0.7988281, 1.3632812, 0.84228516, 1.09375, -0.5024414, 1.4677734, 2.2441406, 0.09613037, -0.29370117, 1.9003906, -0.2878418, 1.1005859, -1.1083984, 0.16333008, -1.6533203, 0.8769531, -2.1464844, 1.3222656, 2.5566406, 2.25, -0.12976074, -1.6806641, -2.5644531, -0.9091797, 0.41552734, 0.5229492, -1.6933594, -0.08325195, 0.14111328, -1.9501953, 2.1191406, -1.7607422, 0.75, 1.2451172, -0.9321289, 0.86328125, 1.7421875, 2.6347656, -1.0029297, 0.2253418, 0.76123047, 0.6166992, 1.3554688, 0.36254883, 1.6416016, 1.5800781, 1.2197266, -2.7304688, 0.8901367, -2.1074219, 2.4667969, 0.7885742, 1.2685547, 0.16357422, 1.4013672, -0.099243164, -1.8251953, -0.5834961]}, "B00DYN0438": {"id": "B00DYN0438", "original": "Brand: Blackstone\nName: Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36\u201d Outdoor Griddle Station with Side Shelf, 36 Inch, Black\nDescription: \nFeatures: Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain.\nReplace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nRestaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nControllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf\nDurability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze\n", "embedding": [-1.2001953, 1.6621094, -0.19067383, 0.2548828, 0.32592773, -0.85253906, 1.4140625, -0.32299805, -2.1855469, 1.5917969, 0.21569824, -0.37719727, 0.22241211, -1.3935547, -0.13256836, -0.24267578, -0.2319336, 0.26879883, 0.16552734, 1.0742188, 2.6445312, 1.0029297, 1.3154297, -1.8730469, 1.0292969, 0.5131836, 3.1191406, -4.9492188, 1, -1.1337891, 1.8710938, -0.12902832, 0.5800781, 1.0966797, -3.9648438, -2.0644531, -0.79003906, 2.7988281, -2.4863281, 0.8647461, 0.45922852, -0.2841797, 3.1269531, 0.55859375, -2.9785156, 0.54589844, 0.53564453, 0.2548828, -2.4960938, -1.3466797, 0.4501953, 3.1933594, 1.0800781, 0.09063721, -1.7246094, 1.7011719, 1.2919922, -1.7578125, 1.625, -0.50390625, 2.4921875, 0.7963867, -2.7597656, 0.40722656, -1.5917969, -1.1689453, 1.4677734, 0.41870117, 0.6977539, -1.1298828, -0.21325684, -0.15405273, -1.5253906, 0.11834717, 1.3886719, -2.1894531, -2.3300781, 2.203125, 0.65771484, -0.3930664, -2.1738281, 2.4824219, 1.0439453, -3.6445312, -0.51953125, 0.9550781, -0.091308594, 0.03277588, 1.6523438, 0.06652832, -1.3359375, 2.2148438, -2.6640625, -3.1523438, 1.5820312, -1.2607422, 0.79296875, 0.19946289, -1.8583984, 2.3125, -1.4248047, -0.12030029, -2.359375, 1.2109375, -3.2578125, -0.66064453, 3.484375, 1.2392578, -3.0449219, 1.125, -2.3125, 0.2590332, 2.6542969, 0.19165039, 2.3710938, 0.8720703, 0.7792969, 1.1064453, 1.2148438, 1.0175781, 3.3261719, -0.62939453, 0.6616211, 0.10595703, -0.48510742, 0.92578125, -1.2509766, 0.8696289, 4.015625, -2.4355469, -0.10534668, -3.3046875, 3.2539062, -1.1396484, -2.6875, -1.6591797, -0.39013672, -0.5390625, -3.7890625, 0.8642578, -1.0058594, 1.8310547, 1.4746094, -1.7617188, -4.5585938, -0.70166016, 0.17126465, 1.3046875, -0.010810852, -2.4160156, -0.5102539, -2.5683594, -0.39575195, -1.7109375, 2.1835938, -2.2421875, -0.83984375, -1.9941406, 4.296875, -0.81103516, 0.2668457, -1.8701172, -0.87060547, 1.5898438, 1.3974609, 0.012161255, 0.2770996, 1.9462891, -0.2998047, 2.7929688, 0.25146484, -2.5878906, -0.98046875, 0.014770508, 1.9013672, -1.2626953, -1.1826172, 2.3945312, -0.5024414, -0.78515625, -1.0878906, -3.1171875, 1.1386719, -0.71728516, -0.3798828, -2.2910156, 1.7587891, 1.2607422, 0.609375, -1.1054688, 0.017547607, -0.2927246, -0.068237305, 0.12902832, 0.1463623, -1.8730469, 0.66796875, 0.18127441, 2.1289062, -0.52197266, -0.18859863, -1.6621094, 1.1171875, 1.3730469, -2.9648438, -2.4570312, 1.1621094, -2.4023438, 2.8300781, 0.50439453, 1.0078125, -1.3759766, 1.1103516, -1.1865234, 0.15893555, -1.8583984, 1.0585938, 0.0184021, 1.3515625, 1.9775391, 1.0234375, -2.2363281, -1.7373047, 1.0986328, 0.9375, 3.2910156, 1.3212891, 0.74560547, -2.0761719, -0.3334961, 2.1738281, 0.8613281, -0.6767578, 1.3271484, -0.7373047, 3.3886719, 0.81640625, -1.3847656, -0.28344727, -0.35083008, 1.2841797, -1.2626953, -0.48339844, -1.0273438, -1.390625, 1.4960938, -1.6269531, 2.0605469, 0.3684082, 0.25073242, -2.3457031, -0.27783203, 1.8183594, 1.3652344, -0.49243164, -0.6777344, -0.79833984, -0.051940918, -2.5605469, -1.7558594, -0.296875, 1.5332031, -0.7602539, 1.546875, 1.4052734, -0.93066406, 1.0566406, 1.8701172, -2.4960938, -0.3503418, 2.1835938, 0.43725586, 2.2480469, -0.32226562, -0.13708496, 1.1298828, -1.2011719, 2.7578125, 0.052459717, 0.6923828, -0.42651367, -1.2792969, 1.5771484, -2.7617188, -0.23828125, 0.90527344, -0.030303955, 1.4238281, 0.28027344, 0.5097656, 5.0898438, -1.7285156, -2.5761719, 3.3769531, -0.80908203, 0.87939453, 1.2421875, -1.3798828, -0.22229004, 1.4443359, 2.21875, 1.2919922, 0.49560547, 1.4765625, -2.1777344, -0.79003906, 0.24536133, -3.1347656, -1.5175781, 2.0136719, 0.63623047, -0.25146484, 0.04574585, 1.1513672, -0.28735352, -0.8989258, 0.6772461, -1.5039062, 1.9873047, 2.6035156, 3.3398438, 2.046875, -1.0058594, -2.0839844, -0.7597656, -0.7836914, -0.3322754, 1.7148438, -0.021987915, -1.8544922, -0.84228516, 0.23181152, 0.06021118, -1.0039062, -3.8984375, -1.3408203, -0.65283203, -1.6220703, -0.3317871, -2.6933594, -1.8378906, 1.2539062, -1.609375, 0.94384766, -1.1308594, -2.2636719, -0.9765625, -0.3798828, -0.796875, -0.9448242, 1.2158203, -0.75, -1.6777344, -2.0273438, -0.60791016, -0.79589844, 1.1464844, -1.6386719, -0.72509766, 1.0888672, -1.5751953, 0.78027344, -0.33325195, 0.8955078, 0.47583008, -0.7998047, -0.17810059, -3.0390625, 0.83251953, -1.6992188, -0.5131836, -1.9472656, -0.46679688, -2.5136719, -1.2490234, -0.78759766, -0.9121094, 3.140625, -1.3300781, 0.66845703, -0.85058594, 0.30664062, 0.5463867, -0.32055664, -2.1855469, -0.34204102, -0.047607422, -1.3574219, -2.6914062, -3.4648438, 0.20861816, -0.5942383, -0.17993164, -1.8007812, 1.8212891, -1.9101562, 0.83935547, -1.1425781, 0.20202637, 0.6689453, 0.34375, 0.09063721, -2.6074219, -2.5976562, -0.14916992, 0.56689453, -1.6982422, 1.1679688, 1.3535156, -1.2636719, -0.12512207, 2.1816406, -0.55810547, -0.4477539, -1.1630859, -3.2890625, 2.0546875, 0.5629883, -4.2890625, 3.8828125, -1.7910156, -0.9716797, -2.0839844, -0.69384766, 3.4648438, 1.2353516, 0.9238281, -0.20166016, -0.82666016, 1.6777344, 0.27685547, -0.091918945, -1.4023438, -0.43554688, 2.3027344, -1.0761719, -1.9345703, 0.6333008, 2.0898438, -1.8964844, -0.7729492, 1.7314453, 0.61621094, 1.3154297, 2.796875, 2.3261719, -0.6044922, -1.9179688, -1.2324219, 0.7817383, 0.63623047, -0.059173584, -1.0820312, 0.9604492, -1.2089844, 1.9492188, 0.6899414, -0.10308838, 1.9150391, 2.0585938, 2.1933594, -2.2226562, -0.60058594, -1.0058594, 1.0839844, 2.3417969, 2.2148438, -0.546875, 0.14196777, -0.08428955, -0.23583984, 2.3789062, -1.7441406, -0.09857178, 3.2792969, -1.2978516, 0.014778137, -0.1821289, 0.42382812, -0.5126953, -0.5654297, 0.42041016, -0.8310547, -0.64941406, 0.7783203, 0.29736328, -1.4003906, -2.6777344, 0.8857422, -2.6992188, -2.4921875, 0.77490234, 2.2890625, -0.49609375, -1.6845703, -0.30810547, -0.07745361, -0.6245117, 2.8183594, 0.23620605, -1.7216797, 0.21081543, -1.7060547, 1.2412109, -1.0966797, -0.5151367, 0.45947266, -0.25952148, 0.53027344, -1.3652344, -0.19360352, -0.31274414, -0.17480469, -1.2324219, -0.9121094, -2.5683594, -0.15100098, -1.2275391, -0.97509766, -2.0351562, 2.7929688, 1.3691406, 1.1298828, -0.6542969, 2.2421875, -0.13891602, -0.93652344, 1.2763672, -5.0039062, -0.63720703, -2.0058594, -3.5683594, 0.91259766, -0.39379883, -0.25512695, 1.3457031, 1.0009766, -0.3154297, 1.9267578, 0.73828125, -5.4335938, 1.4775391, -1.0449219, -0.8911133, -1.7587891, -1.2568359, 0.6586914, -0.12585449, -1.359375, -1.1826172, 1.2919922, -0.3034668, 0.7753906, 1.1464844, -2.1210938, 0.38745117, 0.14123535, -1.1015625, -0.49365234, -0.04638672, 0.32763672, -1.0283203, 0.12670898, -1.1699219, 0.65527344, -0.25268555, 1.2431641, 1.234375, 0.10308838, -0.25976562, -2.265625, -0.32861328, -0.16687012, 2.0585938, 0.38720703, -0.8935547, -0.42382812, 2.1757812, 2.0722656, -1.7158203, 0.07330322, 0.6323242, -2.078125, -0.8178711, 1.1445312, 1.1201172, 2.1171875, 0.5830078, -1.84375, -0.081726074, 1.03125, -1.8681641, -1.8085938, 1.5458984, 0.12133789, -1.7587891, 0.060302734, -2.78125, 0.39501953, -1.3457031, 0.16894531, -1.5693359, 4.8515625, 2.1933594, 2.5078125, 3.0019531, 0.20239258, -1.4560547, 1.8583984, -0.91503906, -2.3554688, 2.8203125, 0.39233398, -1.3535156, 2.9785156, 0.53515625, -1.4638672, -0.12976074, 3.0410156, -1.4560547, -0.49414062, -1.0517578, 0.021835327, -2.3925781, 0.81103516, 0.5263672, -0.22509766, 1.0566406, -0.0016288757, -0.33276367, 1.6992188, 1.5087891, -0.61621094, 0.89941406, 0.11651611, 0.1529541, 1.5234375, 0.6982422, 2.296875, -1.7607422, 0.7416992, 0.34985352, 2.078125, 0.030258179, -0.20996094, -0.35229492, 0.4013672, -1.3896484, -0.6694336, 2.046875, 3.7871094, 0.5263672, 1.7246094, 0.9321289, -3.0976562, 1.6425781, -0.3618164, -3.1972656, -2.296875, 0.8125, -0.34375, 0.94189453, 1.1435547, -3.4746094, 0.60302734, 3.1113281, -2.0078125, 0.5566406, 1.171875, -0.6977539, 0.83496094, -1.9697266, 0.31396484, -0.4165039, 1.0546875, -0.8310547, 0.375, 0.7885742, -0.7236328, 1.1132812, 2.7636719, -0.16149902, -0.10638428, 1.8642578, -0.73046875, 1.7148438, -0.43066406, -0.24389648, -2.0898438, 0.99121094, 2.5078125, 0.75634766, 2.0195312, 0.09313965, -0.07989502, -2.2441406, -0.49243164, -0.8803711, 3.25, 0.18286133, -1.4492188, 0.63134766, -1.6123047, -0.29638672, -1.9970703, 1.0087891, 0.43066406, 1.0595703, 0.85546875, -0.40478516, 1.2412109, 0.6279297, -1.3007812, -5.3867188, -0.43798828, 0.5541992, -0.3623047, -0.1427002, 0.25927734, 0.38354492, 0.9321289, 1.3964844, -0.8232422, -2.0449219, -0.18908691, 0.02520752, -0.74658203, -1.3945312, -0.49169922, 0.43798828, 0.29663086, 1.2197266, -0.25048828, 1.4433594, -2.3320312, 0.26782227, 1.9902344, -1.3955078, 0.098083496, 1.5488281, 0.76660156, -0.2919922, 2.5878906, 0.39160156, -2.2871094, 2.4316406, -5.0429688, -0.44921875, 0.10662842, -1.4707031, -2.0410156, -0.10949707, -0.25512695, 1.3896484, -1.3222656, -1.1513672, -0.3857422, -0.9863281, -0.76123047, 2.6523438, -1.5322266, -1.3173828, 1.5888672, -0.23291016, 0.7685547, 0.0949707, -1.0546875, 0.3461914, -2.7617188, -1.9970703, 0.8261719, -1.5849609, 0.3408203, -2.7402344, 0.51220703, 2.0527344, 0.49731445, -0.7397461, 1.9892578, -0.83251953, -1.7646484, 0.15307617, -1.3847656, 2.5585938, 0.66845703, -0.8129883, -1.0712891, -1.8964844, 0.5078125, -0.31640625, 0.9189453, -1.1826172, -0.46191406, 0.6088867, 1.9912109, -0.70654297, 2.2636719, 3.3261719, 0.75878906, -1.5, 0.048431396, 1.7539062, -0.053009033, 3.1542969, 2.421875, 0.99560547, -1.0898438, 4.6523438, 0.95751953, -3.8359375, 2.2890625, -1.9628906, 1.9892578, 0.65966797, -0.85546875, 0.5078125, -1.9580078, -0.8330078, -1.8769531, -1.7382812, -3.5507812, 1.6630859, 1.2568359, -2.3085938, 0.23059082, 1.3759766, 0.40893555, 2.1816406, 2.6367188, 1.0410156, -0.28222656, 0.30566406, -1.1748047, -0.10632324, 1.1542969, -2.0351562, 0.39257812, 1.1123047, -0.5444336, -2.6308594, 0.8876953, 1.0283203, 2.8359375, -1.2724609, -0.045715332, 3.6289062, 1.1191406, 3.0996094, -0.44726562, 0.6279297, 1.2011719, 1.7373047, -1.2060547, 1.4248047, 3.2734375, -1.1650391, -1.7617188, 1.9726562, -1.0039062, -1.4960938, -0.49365234, 0.1451416, 2.1308594, -4.453125, 3.09375, 0.42626953, 0.6245117, -0.7832031, -2.8886719, -0.5751953, -1.7353516, 0.9614258, 1.2998047, 2.1699219, -0.29248047, 1.4667969, -1.5869141, -0.047058105, 1.3535156, -3.34375, 0.09429932, 0.6542969, -0.88134766, 0.13647461, 0.07775879, 2.4433594, 1.1123047, 1.2207031, 1.3037109, 2.4277344, -0.9111328, 1.9492188, -1.1210938, -0.6484375, 0.95751953, 3.3847656, 0.6245117, -0.75146484, 2.421875, -0.19091797, -2.7714844, -3.3925781, 3.2265625, 2.8496094, 1.6621094, 0.96533203, -0.7910156, 2.3476562, 0.51171875, 2.7871094, -3.0839844, 2.5234375, -0.91259766, -2.3164062, -1.109375, -0.22802734, 0.26171875, 1.3134766, 0.03781128, -0.97314453, 2.7148438, 0.7709961, 1.7285156, 1.4082031, -0.0049438477, 1.4833984, -1.0322266, -0.1451416, 1.7773438, 0.16479492, -0.72998047, -0.9638672, 1.0224609, 2.6210938, 1.140625, 1.0439453, -0.49414062, -0.83251953, -0.50634766, -1.5439453, 0.95410156, -0.2442627, -0.9160156, 1.5771484, 0.06341553, -0.11218262, -2.875, 2.4121094, 0.41992188, -0.08178711, -0.95410156, 1.3369141, 0.54248047, 1.9433594, 1.2236328, 0.59814453, 0.7451172, -0.6694336, 0.21069336, 0.81640625, -1.203125, 0.014533997, 1.2177734, 0.13562012, -0.72558594, 0.36010742, -2.5585938, 1.1132812, -1.3046875, 1.2294922, -2.4277344, -0.34960938, 1.8769531, -0.36987305, 0.50439453, 2.8613281, -0.07342529, -0.21154785, -1.4345703, -0.9091797, -0.82958984, -1.5126953, -0.6489258, 0.4650879, 3.921875, 2.3808594, 0.5756836, -1.7890625, -2.1152344, -0.5102539, -0.2602539, 2.6445312, -0.5527344, -0.9863281, -0.44067383, 1.2607422, 1.875, -1.8339844, 0.4729004, -0.11810303, -0.3701172, 1.015625, 0.7319336, 1.9150391, -0.088378906, -0.68847656, -0.53759766, 2.4550781, 2.2949219, 0.6098633, 2.0078125, 1.7578125, -1.6259766, -2.7324219, 0.8540039, -0.000151515, 0.25878906, -1.3398438, 0.64697266, 1.0751953, 1.9541016, 1.0292969, -1.4638672, -1.0957031]}, "B01N1G04RL": {"id": "B01N1G04RL", "original": "Brand: Royal Gourmet\nName: Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black\nDescription: \nFeatures: Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs.\nPortable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts.\nAutomatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel.\nNo Fussy Cleanup: Removable oil management system facilitates easy cleanup.\nAmple Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms\u2019 reach.\n", "embedding": [-1.6806641, 0.17565918, 0.8076172, 0.50878906, -0.48388672, 1.2714844, 1.3134766, -0.53027344, -1.9248047, 0.9902344, 1.2490234, -0.81396484, 1.3232422, -1.8330078, 0.81396484, -0.32543945, 0.28955078, 0.69677734, 1.1396484, 0.072265625, 2.2050781, 0.4284668, 3.1582031, -0.061523438, 0.23730469, 1.8037109, 3.5859375, -4.4492188, 0.38134766, -0.7973633, 2.2246094, -0.515625, 1.5712891, 1.4570312, -2.765625, -1.4501953, -1.78125, 1.4833984, -1.8974609, 0.17333984, 0.6323242, -1.5908203, 2.4238281, 0.6333008, -2.9121094, -1.1894531, 0.60009766, 0.9379883, -1.7871094, 0.021713257, 1.7177734, 1.6425781, 0.26391602, 0.6699219, -0.9838867, 2.3476562, 1.5957031, -1.8388672, 1.2460938, -0.265625, 3.296875, 0.5698242, -2.2363281, -0.31274414, -0.94628906, -1.3974609, 0.44018555, 1.2412109, -1.0732422, -2.5039062, 2.1152344, 0.34472656, -1.1855469, 1.0302734, -0.007621765, -0.5991211, -2.0742188, 2.1132812, 1.2802734, 0.22814941, -2.6953125, 2.2949219, 1.1210938, -2.5507812, -0.07293701, -0.45751953, 0.30200195, -1.3134766, 1.1308594, 1.0664062, 0.035369873, 2.6132812, -2.7265625, -4.1992188, 1.9941406, -0.7866211, 1.5126953, 1.8886719, 0.26123047, 2.1992188, -0.015838623, -0.26098633, -0.68115234, -1.7861328, -1.3574219, -2.046875, 1.6923828, -0.061798096, -2.890625, 0.3540039, -2.4980469, -0.30078125, 2.1992188, -0.09893799, 0.5878906, 0.4140625, -0.54589844, 3.0234375, 1.3457031, -0.1430664, 2.5527344, -0.6381836, 1.8779297, -1.2285156, 1.0751953, 0.83251953, -1.7880859, 2.4082031, 5.9609375, -1.9140625, -1.4394531, -0.26708984, 2.7519531, -0.71435547, -1.5761719, -3.1386719, -1.1992188, -1.703125, -2.9453125, 0.6933594, -1.8398438, 0.8803711, 2.8789062, -0.8432617, -2.9609375, -1.0175781, -0.7182617, 1.2929688, -0.71435547, -0.8535156, 0.5136719, -2.0527344, 0.9995117, -2.734375, 2.5195312, -2.3222656, -1.3623047, 0.1953125, 3.5429688, 0.5566406, 2.2441406, -2.7792969, -1.6865234, 0.57128906, -0.10095215, 0.13781738, -0.09051514, 3.6738281, 0.89160156, 1.2060547, 0.34814453, -1.2568359, -0.65478516, -0.9716797, 0.29956055, -1.3769531, -0.5600586, 1.4238281, 0.09246826, -0.40307617, -1.796875, -2.7011719, -0.5620117, 0.7763672, 1.4794922, -1.3417969, 0.047180176, 0.31811523, 0.3486328, -1.2988281, -0.4399414, -1.1699219, -0.51953125, 0.4440918, -0.1796875, -0.9394531, -1.2666016, -0.5058594, -0.6933594, 1.1748047, -0.48388672, -0.22473145, 0.018875122, -0.009773254, -3.2089844, -3.90625, 0.43701172, -3.1796875, 1.2568359, 1.0126953, 0.94970703, -0.92578125, 1.1337891, -1.0205078, 0.48120117, -1.4306641, 0.60546875, 0.5551758, 2.2753906, 1.1572266, -0.29907227, -0.81689453, 0.80126953, 1.9824219, 0.17687988, 1.5146484, 0.04336548, 1.5566406, -1.7294922, -2.6484375, 2.6171875, -0.47460938, 0.44702148, 1.46875, -1.8037109, 1.1132812, -0.7158203, -0.91064453, -0.796875, -0.21594238, 0.28466797, -0.984375, -0.1697998, -1.2910156, -0.546875, 1.3398438, -1.2080078, 2.4160156, 0.5522461, 0.953125, -1.6689453, 1.1865234, 1.3896484, 0.0236969, -1.2373047, 0.051330566, -0.5102539, 0.7739258, -1.5566406, -1.8759766, 1.5058594, 0.50439453, -0.5522461, -1.0761719, 0.69384766, -1.7060547, 1.8027344, 0.3239746, -1.3837891, -0.22668457, 1.0654297, -0.064086914, 2.5117188, -0.06665039, 2.0292969, 0.8564453, -1.5371094, 2.34375, -1.6953125, 1.9902344, 1.0839844, -1.0722656, 0.8754883, -2.4296875, -0.85302734, 0.6333008, 1.46875, -0.27172852, 1.3681641, 1.1513672, 3.9667969, -1.9189453, -3.7988281, 3.5097656, -2.1308594, 0.3605957, 2.453125, -1.125, -0.82373047, 0.46533203, 0.37353516, 1.0664062, 0.6381836, 1.3457031, -1.8085938, -1.7548828, -0.35009766, -1.2675781, -1.3310547, 0.89990234, 0.011505127, -0.9199219, -1.5576172, -0.27148438, -0.22351074, -1.5332031, 2.2480469, -1.7060547, 2.2382812, 0.39257812, 1.6630859, 0.43579102, -0.68652344, -1.8476562, -0.2680664, -0.8979492, -0.53271484, 0.018936157, 0.15075684, -0.08215332, 0.85302734, 0.49438477, -0.046539307, -2.1289062, -2.9980469, 0.49829102, -2.953125, -3.2890625, 1.7011719, -2.1035156, -0.5473633, 0.28735352, -2.3945312, 0.09552002, 0.16308594, -3.8925781, -1.7431641, -0.22790527, -2.9433594, -0.58935547, -0.24450684, -0.90234375, 0.0024337769, -3.3632812, -0.19152832, 0.40527344, -0.12548828, 1.2050781, 0.4038086, -1.3632812, -1.4306641, -1.7832031, -0.94873047, 0.83203125, -0.16235352, -2.0234375, -0.60302734, -3.0390625, 0.9345703, -1.6865234, -0.7548828, -0.48120117, 0.29858398, -2.3808594, -1.6269531, 0.074157715, -0.66552734, 3.0976562, -1.1708984, 0.47338867, 1.4775391, 0.7270508, 0.8598633, -0.35351562, -1.8125, -2.1503906, 0.68603516, -3.0429688, -3.8808594, -1.4140625, 0.0042381287, 0.67041016, 1.3603516, -1.0517578, 2.4648438, -1.9023438, 2.5625, -2.1992188, -0.28466797, -0.2956543, 1.6650391, -0.1262207, -0.7871094, -0.5444336, -1.34375, -0.6386719, -1.8046875, -0.39233398, 1.703125, -0.8305664, 1.6533203, -0.006542206, -0.13085938, -0.5805664, 0.15551758, -2.5097656, 3.3125, -0.0038547516, -2.4375, 2.796875, -0.51171875, -2.3496094, -3.1894531, -0.6489258, 3.2050781, 0.24609375, 3.4667969, 0.41503906, 0.15478516, 2.0898438, 2.84375, -0.75, -0.17822266, -1.6474609, 2.3613281, -1.1083984, -1.6328125, 0.9199219, 0.6923828, -2.296875, 0.0009908676, 3.0117188, 1.0654297, 2.5078125, 0.61035156, 1.9375, 0.28881836, -0.9433594, 1.0839844, 2.5625, -0.14868164, 0.31298828, -0.6772461, 0.35253906, -0.6352539, 1.3300781, 1.1376953, -0.20471191, 2.9707031, 0.92822266, 0.8676758, -1.6367188, 1.2919922, 0.43579102, 2.0410156, 0.9223633, 1.7783203, -0.113342285, 0.9272461, 0.20922852, -1.0234375, 0.22229004, -2.1386719, 0.88671875, 1.6289062, 0.28271484, 0.2479248, 0.7988281, 0.3125, 0.24084473, 0.96240234, 1.4404297, -2.828125, 0.019927979, 0.5800781, -1.3935547, -0.7651367, -2.4394531, 1.5351562, -1.9873047, -0.68310547, 1.9189453, 2.8339844, -2.0292969, -0.62060547, 2.109375, 0.45092773, -0.96972656, 1.6210938, 0.50341797, -1.1582031, 1.2080078, -1.8623047, 0.68896484, -0.6401367, 0.2763672, -0.11981201, -0.39257812, -0.10882568, -1.2333984, -0.2854004, 0.87402344, 1.0917969, -2.0917969, 0.37817383, -3.7871094, 0.75634766, -0.76416016, -1.6865234, -0.6645508, 1.6845703, 1.0625, 0.84472656, -3.0019531, 3.4335938, -0.30981445, -0.45483398, 1.7402344, -3.9140625, -1.9482422, -3.9023438, -3.2246094, 1.0625, -0.4411621, -0.5966797, 2.4277344, 0.19628906, -0.16296387, 1.8144531, -0.3798828, -1.5048828, 0.022872925, -1.3349609, 0.018966675, -2.4902344, -0.3642578, 0.69677734, 0.41577148, -1.7441406, -1.8652344, 0.5390625, 0.49072266, 2.0507812, 1.7939453, -3.84375, 0.5908203, -1.9560547, -0.46411133, 0.18408203, -1.2294922, 1.8388672, -1.0908203, -0.30249023, -2.7910156, 1.7109375, 0.7270508, -0.13806152, 0.58984375, 0.9682617, 0.8833008, -2.1347656, -0.13305664, 1.4931641, 2.9433594, -0.48657227, -3.15625, -2.2246094, 0.80810547, 0.41479492, -1.484375, -0.022094727, -1.7958984, -1.0058594, 0.38427734, 2.7167969, 1.4462891, 1.5253906, 1.7939453, -0.69384766, -0.08514404, -0.7211914, -2.3261719, -1.5634766, -0.8911133, 1.4423828, 0.23327637, -2.3984375, -1.9375, 0.14697266, -2.7578125, 0.10015869, -2.046875, 3.7910156, 2.1796875, 0.4650879, 3.2011719, -1.4287109, 0.30566406, 0.41967773, -0.63623047, -2.7773438, 1.9111328, 0.19128418, 0.67529297, 1.9208984, 0.6777344, -2.2207031, 1.5849609, 1.2773438, -2.453125, -0.69921875, -0.44726562, 1.4882812, -1.5175781, -0.8598633, 1.8457031, -0.058013916, 3.5917969, -0.82714844, 0.38964844, 0.5205078, 0.5708008, -0.7988281, -0.19140625, -0.2401123, -0.23474121, 0.6435547, 1.4609375, 1.1572266, -1.4570312, -0.043151855, -1.0986328, 2.9296875, 0.28833008, 0.5698242, -0.103637695, 1.3339844, -0.3774414, -1.3837891, 1.2158203, 2.2519531, -0.26049805, 3.5214844, 0.36010742, -2.3867188, 1.1708984, -0.7128906, -2.2050781, -2.4082031, 0.19812012, -0.09631348, 0.796875, 0.8432617, -2.9863281, -0.7080078, 1.9423828, -1.1513672, 0.30200195, 0.70654297, -0.4260254, -0.45922852, -0.66259766, -0.22216797, 0.21362305, -0.042999268, -0.042022705, 0.8925781, 1.1503906, -0.75341797, 1.1240234, 1.9882812, 0.6020508, -1.0009766, 1.9746094, -1.6367188, 2.3886719, -0.22814941, 0.37670898, -2.8046875, 1.0322266, 3.5546875, 0.9042969, 1.6757812, 1.4541016, 0.984375, -2.7382812, -0.25439453, -2.8300781, 3.4121094, -1.2646484, -0.38671875, 2.90625, -3.1699219, -0.6621094, -2.5117188, 0.40600586, 0.030853271, 2.0507812, 2.5195312, -0.32202148, -0.58740234, 1.0986328, -1.7392578, -4.2421875, -1.6220703, 1.1982422, 0.7260742, -0.062683105, 0.93896484, -2.5195312, 0.44799805, -0.9199219, -0.6479492, -2.3457031, 0.015686035, -1.3261719, -1.046875, -1.5361328, 1.1240234, -0.13500977, 1.7587891, 1.5742188, 0.31079102, 0.98046875, -3.4238281, -0.92578125, 2.0761719, -0.2133789, 0.15942383, 2.5546875, -0.9379883, -0.5800781, 0.21459961, -0.10308838, -2.8515625, 2.5507812, -2.1445312, -0.08850098, 0.2244873, -0.6352539, 0.8251953, -0.020767212, -1.7275391, 0.80126953, -0.9116211, 2.2890625, 1.5869141, -0.70458984, -0.58935547, 1.9765625, -0.5722656, -1.6865234, 0.62939453, 0.07867432, -0.058654785, 0.36035156, -2.4550781, -0.6430664, -1.6972656, -1.4394531, -0.070251465, -1.4355469, 0.9223633, 0.36010742, 0.29492188, 1.6044922, -0.7109375, -0.02418518, -0.23083496, -1.2763672, 0.6176758, 1.1210938, -1.4453125, 2.2226562, 1.7558594, -0.9980469, -0.23486328, -0.3359375, 0.515625, 1.5654297, 1.0703125, 0.96875, -0.5541992, 0.10192871, -0.18457031, -0.61376953, 0.6015625, 2.1425781, -0.80859375, -0.58935547, 1.9833984, 3.2753906, 0.35327148, 1.0683594, 1.4560547, 0.76660156, -1.2236328, 5.234375, -1.0654297, -2.4824219, 0.53564453, -2.0566406, 2.6191406, -0.5473633, -0.7324219, -0.5136719, -0.734375, -1.3496094, -2.3222656, -0.5761719, -2.2148438, 1.4931641, 1.3349609, -0.7817383, -0.27954102, 1.7998047, 1.4248047, 0.46826172, 1.9267578, 0.28149414, -1.4609375, 1.8476562, -0.74658203, 0.23327637, 0.053588867, -2.046875, 2.1464844, 2.6699219, -0.5073242, -1.4130859, 3.2226562, -0.92578125, 3.0136719, 2.0019531, 0.076660156, 2.90625, 1.4326172, 2.6425781, 1.3457031, 0.38964844, 1.6376953, -0.2355957, 1.9765625, 2.0878906, 2.5917969, -0.40551758, -1.0078125, 1.1630859, -0.1541748, -2.2324219, 0.21264648, 1.3017578, 1.0078125, -2.9746094, 1.9453125, 1.0146484, 0.27026367, -1.8769531, -0.39868164, -1.1269531, -1.8388672, -0.3786621, 0.26831055, 3.4453125, -0.74658203, -0.9868164, -0.51953125, -0.4831543, 2.1289062, -3.3105469, 1.3828125, 1.9501953, 0.37817383, 0.5722656, 1.2089844, 0.7426758, 0.9116211, 0.90234375, 1.0253906, 1.5390625, -0.11029053, -0.39501953, -1.8681641, 1.0439453, 0.45654297, 3.1992188, -0.15686035, -1.2617188, 3.1992188, -1.6337891, -1.0751953, -3.8710938, 3.5332031, 3.3417969, 1.0117188, 1.3994141, -1.5595703, 2.5859375, 1.3232422, 0.6586914, -3.0761719, 0.1607666, -0.76416016, -2.7128906, -1.3369141, 1.0039062, -0.17077637, 2.5878906, 2.0351562, -0.9663086, 2.9550781, 0.27001953, 0.78271484, 1.140625, 1.5712891, -0.44555664, 0.46948242, -0.3232422, 0.33374023, 0.1887207, -1.8359375, -1.7626953, 1.7509766, 2.2480469, -0.25317383, 0.80322266, 0.7573242, -0.49121094, -1.5117188, 0.27075195, -0.3347168, -2.6484375, -1.4287109, -0.68408203, -0.91552734, -1.0732422, -2.5, 1.7861328, 0.28271484, -1.3564453, -0.80566406, 0.8691406, 0.35375977, 2.4492188, 0.9916992, 0.90722656, 0.06463623, -1.7626953, 1.2607422, 0.26367188, -1.4472656, 1.1748047, -0.4880371, 0.67626953, -1.3359375, -0.49023438, -1.4912109, 0.33496094, 0.8208008, 1.2021484, -2.0585938, -0.7133789, 1.5351562, -0.7392578, 0.32299805, 3.2753906, -0.9121094, 0.37768555, -2.3925781, -1.8017578, -0.00035500526, -0.6328125, -0.07824707, -0.11291504, 3.0117188, 2.9707031, 0.58740234, -2.0996094, -2.7558594, 0.2524414, -1.5009766, 1.4589844, -0.13562012, 0.35107422, -0.01612854, 0.6176758, 2.1445312, 0.42871094, -1.2226562, 0.94970703, -1.3251953, 0.29223633, 0.12365723, 2.6875, 0.30932617, 0.46533203, -0.15466309, 0.7319336, 1.9873047, 0.3630371, 1.6972656, 2.8789062, -1.1240234, -2.1933594, 2.0917969, -1.4619141, 0.41333008, 0.75, -0.20227051, 2.296875, 1.2822266, 2.0820312, -0.47509766, -2.859375]}, "B00FGEINVI": {"id": "B00FGEINVI", "original": "Brand: Weber\nName: Weber 57060001 Q3200 Liquid Propane Grill,White\nDescription: \nFeatures: Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nGrill-Out handle light. Battery type: AAA\nEasy-start electronic ignition and infinite control burner valve settings\nOperates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75\n", "embedding": [-0.3605957, 0.23010254, 1.6972656, -0.26660156, -1.75, 0.6166992, 0.34375, -0.47045898, -0.38012695, 1.3974609, 2.6171875, 0.16247559, 0.1149292, -3.1972656, 0.98046875, 0.49853516, 2.21875, 1.3457031, 0.6557617, -0.026351929, 1.0576172, 0.578125, 1.9863281, -2.375, 1.8359375, 1.6308594, 5.2148438, -5.09375, -0.93896484, -2.0820312, 0.6694336, 0.39135742, 0.26000977, 0.54248047, -2.7753906, -0.7036133, -4.0820312, 1.5234375, -2.5234375, 1.09375, -0.5029297, -2.3066406, 0.95654297, 0.18066406, -1.3066406, 0.9980469, 0.6591797, -0.71777344, -0.6464844, 0.04425049, 2.4902344, 1.0654297, 0.34960938, 1.0771484, -0.24902344, 2.3476562, 0.014167786, -1.3525391, 1.6318359, -0.120666504, 2.4902344, -1, -2.953125, -0.90478516, -1.1240234, -0.45458984, -1.1308594, -0.5908203, 1.625, 0.20861816, 4.3867188, -1.8789062, -1.3779297, 0.5307617, 1.2734375, -1.3115234, -1.59375, 3.0039062, 1.7089844, -0.5493164, -1.4775391, 2.2285156, 0.85302734, -1.8623047, 0.046020508, 1.0683594, -0.0062446594, -2.9082031, 2.3203125, 2.2382812, 0.06304932, 1.4443359, -2.4667969, -3.46875, 1.3847656, -0.61035156, 0.8491211, 0.92285156, -0.117004395, 0.79296875, -1.5449219, 1.0537109, -1.375, -2.2871094, -3.3203125, -0.3474121, 1.3837891, 0.2434082, -2.859375, -0.67626953, -0.9194336, 0.7084961, 1.4082031, 1.9882812, 1.3115234, 1.4589844, 0.83154297, 2.7558594, 1.2646484, 1.6181641, 2.7890625, -1.6738281, 0.32641602, -0.6699219, -1.4619141, 0.16723633, -0.56933594, 0.5908203, 2.8574219, -1.7070312, -0.9399414, 0.48339844, 4.515625, 0.1508789, -0.31176758, -0.69970703, -1.1181641, -0.67089844, -2.6230469, -1.1259766, -0.27197266, 0.16137695, 1.2373047, -0.80615234, -4.125, -1.1474609, 0.6015625, 0.7626953, -0.100097656, -0.6958008, -0.21325684, -1.9589844, -0.96533203, -0.046875, 0.5004883, 0.3984375, -1.6943359, 0.8979492, 3.4550781, 1.4130859, 1.4707031, -0.578125, -0.80566406, -0.0904541, 0.3293457, 0.91015625, 1.9726562, 1.6826172, 0.11077881, 1.5380859, -0.24780273, -1.0830078, -0.48901367, 0.073913574, 1.1113281, -1.28125, -0.21875, 1.4667969, -0.5258789, -1.0009766, -1.0439453, -1.6240234, -0.11657715, -0.68847656, 0.4814453, -0.16589355, -0.78808594, -1.5712891, 1.28125, -2.1992188, 0.8022461, -0.296875, 1.3603516, -0.91845703, 0.064208984, -0.96533203, -1.0859375, -2.2246094, 0.83251953, -0.55566406, -0.46826172, -1.7578125, 1.4003906, 0.7211914, 0.02204895, -2.5898438, -0.9682617, -2.4199219, 1.8525391, 0.69091797, 1.7929688, -1.5068359, 1.8720703, -1.2744141, 0.18786621, -2.5292969, 2.9179688, -0.08526611, 0.23742676, 2.3183594, -2.0273438, 0.023620605, -0.15270996, 2.2597656, 0.33618164, -0.095947266, 0.8959961, -0.20336914, -3.1601562, -0.60253906, 3.5332031, -0.08441162, -0.26489258, -0.26049805, 0.22705078, 2.2148438, 1.21875, -0.5136719, -0.04373169, -0.80078125, 0.119140625, 0.78125, -1.2841797, -1.4853516, 0.21704102, 0.43847656, -3.2539062, 1.7177734, 0.8388672, 0.2421875, 1.0185547, -0.8364258, 0.8022461, 1.0068359, -0.8779297, 0.60302734, -2.4804688, 1.03125, -0.80029297, -3.3378906, 1.7607422, 0.7368164, -0.097961426, -0.10040283, 1.2685547, -1.9667969, 2.7773438, 2.7382812, -1.4550781, -1.0283203, 0.5341797, 0.48168945, 0.4025879, -0.55810547, 1.2119141, 1.5107422, -1.6591797, 1.7568359, -0.2763672, 1.0615234, 0.63378906, -0.6245117, 1.0996094, -2.5390625, -1.7470703, 1.0537109, 0.53515625, -1.0898438, -2.578125, 0.26416016, 3.1523438, -0.22314453, -2.8828125, 3.4628906, -2.4511719, 1.40625, 2.1308594, -1.1972656, -1.3496094, 0.9658203, 2.6191406, 0.5517578, 1.0039062, 0.99121094, -0.47192383, -0.9477539, 0.48950195, -3.8730469, 0.9057617, 1.5673828, -1.0273438, -1.1777344, -1.8515625, 2.1308594, -2.7382812, -1.5263672, 1.859375, -3.734375, 1.6572266, -1.7333984, 1.6679688, 0.4140625, -1.6767578, -0.19995117, -1.8623047, -0.64746094, -1.0283203, 0.70947266, 0.011726379, -2.96875, -1.0390625, -0.7324219, -0.19665527, -1.8242188, -1.5068359, -1.8652344, -0.953125, -2.5644531, 1.5898438, -1.3349609, -0.41333008, 2.2363281, -2.8476562, 0.9399414, 0.7919922, -3.3339844, -1.1464844, -1.4697266, -1.4628906, -0.9189453, 0.953125, 0.6982422, -1.3994141, -3.0546875, 1.1738281, 0.68603516, 0.9199219, -0.64160156, -1.2197266, -0.5703125, 0.55029297, -0.7392578, -0.7871094, 0.94628906, 1.5195312, -0.32421875, 1.2353516, -2.2382812, 0.6279297, -2.3515625, 1.0849609, 0.15917969, 1.4863281, -3.2207031, -1.7226562, -0.9663086, -0.27197266, 3.5761719, 0.7607422, 1.6074219, 0.6298828, 0.21105957, 1.3427734, -0.37939453, -1.6923828, 0.77978516, 0.4794922, -1.6826172, -0.7524414, -2.8144531, -1.1865234, -2.8203125, 0.6323242, 0.8647461, -0.2524414, -0.8017578, -0.48950195, -1.8535156, -0.026367188, -0.5126953, 0.3984375, -0.6928711, -1.4511719, -3.5683594, -0.38378906, -1.2910156, 1.3232422, -1.1835938, 1.9287109, 0.8720703, 1.3496094, 1.8496094, -0.6064453, 0.8798828, -1.4414062, -4.2265625, 4.0820312, 1.4091797, -2.3359375, 0.99121094, -2.671875, -2.5214844, -1.5078125, -0.78271484, 2.7128906, 2.9667969, 2.0546875, 0.89990234, 1.4599609, -0.8203125, -0.95654297, -0.47827148, -1.6816406, 0.18041992, 2.4433594, -3.78125, -1.9443359, 0.5854492, 1.1015625, -2.5878906, -1.3642578, 2.3535156, 2.0253906, 1.8984375, 2.6210938, 2.2148438, -0.24731445, -0.2709961, 0.46923828, 1.6923828, -0.921875, -0.23303223, -0.7441406, 0.9248047, -0.38085938, 1.3457031, 1.6425781, 0.14782715, 1.5322266, 2.7089844, 1.5087891, -0.31225586, -0.57958984, -0.46362305, 0.34277344, 0.122924805, 1.9013672, -0.9667969, 0.69091797, -0.9584961, -0.8911133, -0.3864746, -0.31176758, -1.5400391, 2.1054688, 1.5185547, -0.5390625, 1.5478516, 1.7177734, 1.5078125, 0.30029297, 0.038848877, -1.2138672, -0.66015625, 2.1855469, -0.44921875, 0.40356445, -1.2207031, 0.50390625, -1.0927734, -2.6328125, 0.65625, 3.5878906, -1.609375, -1.5839844, 0.48608398, -0.76953125, -0.6567383, 1.1279297, -0.3630371, -0.30664062, 0.19445801, -1.4287109, 1.3916016, -0.6743164, -1.359375, -1.5126953, -0.86279297, 0.7524414, 0.36010742, 2.0117188, 1.9316406, 0.87402344, -2.8300781, 0.097351074, -3.578125, -1.9453125, 1.1503906, -2.1914062, -0.7475586, 2.2539062, 0.4555664, 1.8701172, 0.17468262, 2.5390625, -1.4814453, 0.9272461, 1.6826172, -2.2929688, -0.21313477, -4.0742188, -3.3554688, 0.12731934, -1.3378906, -0.5078125, 1.5742188, 0.3942871, 0.16955566, 1.8564453, 0.81933594, -1.8232422, -0.88378906, -1.9482422, 0.1895752, -0.18444824, 1.9189453, 0.3388672, -0.9667969, -2.3105469, -2.2753906, 0.2019043, -0.12805176, 0.7714844, 1.6210938, -3.1035156, -0.14343262, -2.1289062, -1.0195312, -1.5791016, 0.24609375, 1.0732422, 1.3535156, 0.070617676, -1.7060547, 1.4511719, 1.2900391, 0.24401855, 3.2714844, 1.9609375, -0.4423828, -3.5722656, 0.33374023, 2.3085938, 3.1367188, -0.52734375, -2.1367188, -0.21411133, 1.1455078, -0.93408203, 0.11621094, -0.010757446, 0.9458008, -0.8466797, 1.0917969, 1.5019531, 1.2333984, 0.84033203, -0.109069824, -2.8964844, 0.61328125, -0.38598633, -2.1660156, -1.8710938, 0.37280273, 1.2402344, -1.6337891, -0.039276123, -1.4580078, 0.6425781, -1.2871094, -0.69140625, -3.5175781, 4.0625, 4.4101562, 1.9277344, 2.5761719, -1.2841797, 0.9873047, -0.76464844, -0.8857422, 0.022415161, 0.5263672, -0.53466797, -0.22314453, 2.7441406, 1.2412109, -1.8457031, -0.79296875, 0.59814453, -2.0761719, 0.24780273, -2.2988281, 0.76123047, -1.1132812, -0.08654785, 0.96191406, -0.7133789, 2.7773438, -0.10064697, -0.06463623, -0.24438477, 0.5024414, -1.3916016, -0.18066406, -0.4584961, 0.4296875, 0.6464844, 1.2041016, 1.3183594, -0.8935547, -0.16003418, -0.45483398, 0.5205078, -1.6328125, 0.3046875, 0.46142578, 0.7211914, -0.29858398, -1.4492188, 1.453125, 1.0722656, 1.59375, 2.6152344, 2.2148438, -1.4072266, 2.03125, 1.1494141, -1.9619141, 2.0742188, 0.6923828, -1.4179688, 3.0761719, 0.43896484, -4.359375, -0.10650635, 1.1220703, -0.17675781, 0.7158203, -1.2392578, -1.4287109, 1.4326172, -1.7373047, -0.30151367, -0.2277832, -0.47143555, 1.2998047, 0.8076172, 0.57177734, -1.640625, 1.3876953, 2.375, -1.0341797, -1.3642578, 0.9638672, -1.4941406, 0.42700195, -0.5551758, -1.0869141, -2.0136719, -1.0039062, 3.0214844, 1.0302734, 1.5097656, 0.8051758, 1.4794922, -0.77001953, -0.6401367, -1.5302734, 2.78125, -2.2578125, -0.89453125, 0.62646484, -4.0820312, -0.41625977, -2.4824219, -1.1074219, -0.42456055, 1.0341797, 2.2109375, 0.48095703, 0.17810059, 1.2998047, -1.5019531, -3.640625, -0.39526367, 0.09375, -0.19567871, 0.67089844, 1.6337891, -1.2900391, 0.45483398, -0.43237305, -0.31347656, -0.97558594, 0.34765625, -1.3271484, 0.13977051, 0.4177246, 0.47583008, -1.6650391, 1.2070312, 0.8989258, 1.9189453, 0.53125, -1.7558594, -0.08673096, -0.014030457, -1.5097656, -0.23803711, 3.0097656, 2.140625, -0.90185547, 1.1240234, 1.8271484, -2.984375, 3.046875, -1.7246094, -1.2783203, 1.375, -0.5410156, 0.31396484, -1.0800781, -0.6791992, -0.2915039, -0.29223633, 2.3847656, 1.6962891, -1.3828125, -1.5107422, -0.25634766, -0.093322754, -0.23925781, 0.4494629, 0.58251953, 0.19958496, 1.6542969, -1.8427734, -1.15625, -1.6787109, -2.7851562, 0.70751953, -2.4160156, -0.8457031, -1.2871094, 0.21166992, 1.7509766, 0.82421875, -1.1679688, 1.7578125, -1.2626953, -1.7480469, 0.89990234, 0.020599365, 4.6210938, 3.8339844, -1.2353516, -0.24230957, -2.6289062, 0.81152344, 1.4189453, 0.57177734, -0.62646484, -0.0019397736, -0.30859375, -0.041046143, 0.2130127, 1.4082031, 1.5664062, 0.62353516, 0.05871582, 1.2353516, 3.2714844, -1.7402344, 1.4462891, 0.82958984, 1.4472656, 0.012428284, 4.0117188, 0.13562012, -2.7109375, 1.4462891, -2.9746094, 2.1386719, -0.96875, -2.0683594, 0.25756836, -1.171875, -2.0332031, -2.4472656, -1.2636719, -1.46875, 1.9980469, 1.4052734, -1.9423828, -1.0302734, 1.8076172, 0.08581543, 2.6601562, 1.1904297, 2.3652344, -1.8916016, 0.014724731, 0.76660156, -0.012580872, 2.5214844, -3.9257812, 2.3691406, 0.83691406, -0.765625, -2.3203125, 1.8701172, 0.68066406, 1.9238281, -0.007457733, 1.1972656, 2.7832031, 1.4355469, 1.8681641, 1.3251953, 2.34375, 1.6474609, -0.48535156, 1.6611328, 1.6230469, 0.6801758, 0.72216797, -1.6347656, 1.6933594, -0.9345703, -0.5942383, 1.0195312, -0.6425781, 1.1435547, -1.4414062, 0.34350586, 0.49072266, 1.4335938, -1.0058594, -0.6308594, 0.78222656, 0.13964844, 0.5800781, -0.38256836, 2.8007812, 0.87597656, 1.3105469, -0.3552246, -0.103515625, 1.7373047, -4.2421875, 1.4384766, 0.6821289, -0.6538086, -1.3691406, -2.4726562, 1.6035156, 0.10083008, -0.97753906, 0.16821289, 3.6035156, 0.27514648, 0.86035156, -1.6923828, -1.6640625, 0.12646484, 3.6328125, -0.018554688, 0.6098633, 0.34106445, -0.21276855, -4.078125, -3.6894531, 3.3222656, 1.9394531, 0.7832031, 0.2241211, -0.890625, 3.2558594, -0.7963867, 0.23059082, -1.2480469, 0.61035156, -0.7529297, -3.8964844, 0.62646484, 0.30004883, 0.1574707, 0.8520508, 0.43603516, 0.88964844, 1.5527344, 1.2587891, 1.8964844, 0.70214844, 0.7402344, 1.9042969, 1.0585938, -1.5126953, 1.6210938, 0.24731445, -1.6396484, -0.9301758, 2.5234375, 0.859375, -0.74560547, -0.049926758, -1.2802734, 0.0435791, -1.7275391, -0.049987793, 0.9692383, -2.7265625, -0.5551758, 0.9638672, 1.0341797, -1.4765625, -0.22692871, 3.2089844, 2.7714844, -0.3972168, 0.6665039, 2.5664062, 0.20727539, 1.7900391, -0.37158203, 1.1542969, -0.5283203, 1.6943359, 0.74853516, 0.39282227, -0.5625, 0.55566406, 1.2158203, 0.6279297, -0.59375, -0.4020996, -1.4785156, -1.1494141, -0.96435547, 0.54345703, -0.23388672, -1.390625, 2.6914062, -0.99121094, -1.2519531, 1.8779297, -0.02961731, -0.3112793, -2.8359375, -1.8720703, -1.3066406, -0.68066406, -0.46826172, 2.8457031, 3.703125, -0.64453125, -0.08868408, -1.9150391, -2.3417969, -1.7832031, -2.4121094, 2.640625, -1.2509766, -1.6132812, -1.4619141, 0.1541748, 0.88623047, -1.2373047, -0.20324707, 0.055877686, -2.2265625, 1.2890625, 0.45703125, 0.94140625, -0.69677734, -0.30078125, 1.9433594, 2.0039062, 0.33813477, 1.0380859, 0.61621094, 2.6582031, 0.4975586, -1.8808594, 0.46533203, 0.8569336, -0.2709961, -1.3945312, 1.5888672, 2.1699219, -0.46606445, -0.5205078, 0.4338379, -3.4414062]}, "B07PJS4B4X": {"id": "B07PJS4B4X", "original": "Brand: Napoleon\nName: Napoleon TQ285XBL1 Propane Gas Grill, Blue\nDescription: \nFeatures: Blue portable grill with scissor cart\nMaterial Type: Cast Iron\n", "embedding": [-1.0361328, 0.04724121, 3.0742188, 0.45654297, 1.0791016, -1.3427734, 0.6464844, -1.1582031, 1.1103516, 1.0771484, 2.4140625, 0.5605469, -1.3378906, -1.1533203, 0.60009766, 0.17553711, 2.0273438, 1.9287109, 0.40551758, -1.0654297, 1.7558594, 0.66796875, 1.9267578, -1.9296875, 1.0585938, 1.0429688, 6.15625, -2.6269531, 1.703125, -3.1191406, 0.93066406, 0.09698486, 0.46118164, 0.20166016, -2.5546875, -0.7836914, 0.22631836, 1.7285156, -3.1914062, 1.453125, -0.7841797, -0.86572266, 2.3808594, 1.5449219, -2.0449219, -0.5336914, -1.4443359, 0.39526367, -1.5449219, -3.1015625, 0.81640625, 1.6679688, 0.26635742, -0.14208984, -1.6298828, 1.1552734, 0.23840332, -0.68310547, -0.052581787, -0.69970703, 1.6298828, 0.46606445, -0.8066406, 0.66259766, -1.4628906, 2.46875, -0.5, -0.30126953, -0.51660156, -0.122802734, 1.8720703, 0.61376953, -2.3027344, -0.27246094, -0.9975586, -3.1191406, -3.5722656, 0.8071289, -0.20251465, -0.029251099, -0.17529297, 1.5048828, 1.5087891, -2.2832031, -0.7910156, 0.56103516, -0.5991211, -1.3066406, 0.23205566, -0.1550293, -1.4648438, 0.5883789, -1.2695312, -4.6054688, 2.2890625, -0.5722656, -1.0273438, 1.4541016, -0.41430664, 0.9140625, 0.17016602, -0.9375, -0.44433594, -0.5498047, -1.3671875, -0.40234375, 2.9765625, 1.3212891, -3.0332031, 1.2753906, -2.3242188, -0.37597656, 1.1386719, 0.33984375, 0.56152344, 0.9316406, 1.4736328, 1.890625, -0.30566406, 0.43798828, 3.8867188, -1.8535156, -0.76904297, 0.28198242, -1.0371094, 0.60058594, -1.6132812, 1.5947266, 5.0039062, -0.059020996, 1.7578125, 1.6171875, 1.9101562, -0.2631836, -2.0664062, -2.4570312, -0.88623047, -2.15625, -3.046875, -0.3076172, -1.515625, 0.41186523, 0.20483398, -1.2988281, -3.5820312, -0.91748047, -0.7910156, -0.36767578, -0.6503906, -1.0419922, -1.1738281, -1.546875, -0.85595703, 0.77197266, 1.1445312, -1.2441406, -1.5273438, -1.171875, 2.2949219, 1.6650391, 2.625, -0.19641113, -2.1191406, 1.6660156, -0.22937012, -2.2207031, -1.2431641, 1.4492188, 0.17993164, 2.3222656, -1.1503906, -2.4472656, -0.88964844, -0.20581055, 0.20507812, 0.20117188, -1.0009766, 1.3955078, -0.19384766, -0.4326172, 0.14904785, -1.5869141, 0.76220703, -0.7192383, 0.7089844, -1.5087891, -0.94873047, -1.8867188, 0.7138672, -1.3984375, 1.3935547, 1.4443359, -0.9921875, 1.7138672, -1.1201172, -1.6875, -1.5341797, -0.20983887, 1.3085938, 0.13110352, -1.6689453, 0.061065674, -0.40551758, 0.17041016, -1.5419922, -2.8671875, -2.9550781, -0.31103516, 0.76123047, 1.6992188, 2.9707031, -1.3164062, 1.4238281, -0.68310547, 1.3320312, -2.9824219, 2.5195312, -0.7626953, 0.6777344, 2.2539062, -0.43139648, -0.17797852, -0.8925781, 3.0136719, -0.15686035, 2.0351562, 0.8652344, 1.5126953, -2.7324219, -0.8046875, 1.6757812, 0.57128906, -0.46313477, 0.35131836, 0.5961914, 0.8901367, 1.0058594, -0.484375, -1.8417969, 0.18371582, -0.55078125, -1.4619141, -1.1132812, -1.5625, 0.84765625, -0.043029785, -1.6552734, 0.5253906, 1.6826172, 1.5117188, -0.31445312, 1.7958984, 0.9838867, 1.2675781, -1.5380859, 2.6796875, -0.19567871, 0.5600586, -1.3828125, -3.4394531, 2.3554688, 1.765625, -0.28149414, -0.14953613, 1.8154297, -0.94970703, 3.7929688, 0.7260742, -1.9160156, -0.8613281, 0.8911133, -0.42529297, 1.8945312, 1.3320312, 0.9277344, 0.070739746, -1.6982422, 3.125, 0.59033203, 2.0429688, -0.05041504, 0.87060547, 3.0839844, -2.6386719, -1.7207031, -1.3076172, -0.33129883, -0.03552246, -1.9287109, 1.2509766, 4.3828125, -0.7988281, -0.83251953, 3.5039062, -0.5288086, 1.2949219, 2.7441406, -1.1464844, -1.6269531, -1.421875, 3.2285156, 0.92822266, 1.7773438, 1.703125, -1.1386719, -1.1787109, -0.015136719, -3.484375, -0.5307617, -1.6445312, -1.671875, 0.8598633, -0.60253906, 1.9111328, -0.5, -0.14208984, -2.5527344, -3.0800781, 2.2480469, -0.9194336, 1.9785156, 1.5576172, 0.8671875, 0.73339844, 0.26000977, 0.93896484, -1.9267578, 3.46875, 0.5180664, -0.99609375, 0.37451172, 0.6230469, 0.92626953, -2.0566406, -2.6308594, 1.9082031, -2.7597656, -1.1982422, 0.06378174, -1.3408203, 0.3076172, 1.6494141, -3.2832031, 2.7851562, -1.1201172, -3.46875, -0.06414795, 1.5791016, -1.0039062, -0.9169922, 0.29003906, 0.22009277, -0.060455322, -3.8261719, -0.29296875, 0.13513184, -1.34375, 2.0429688, -2.0058594, 1.1201172, 0.11956787, 0.5415039, -0.7285156, -2.40625, 0.019104004, -1.6601562, 1.3076172, -1.4238281, 0.6796875, -3.4785156, 0.4230957, -0.8232422, 1.2333984, -3.3046875, -1.7607422, -2.1503906, 0.140625, 2.9199219, 0.61279297, 0.63916016, 1.1201172, -2.5078125, 2.1914062, -1.3251953, -1.5224609, -0.35668945, 1.2119141, -0.1430664, -1.5068359, -3.21875, 0.16882324, -1.3427734, 0.9140625, 0.22729492, 1.9833984, -2.9394531, 2.3789062, -3.0429688, 0.9145508, -2.2441406, 0.49169922, -0.24829102, -0.3791504, -0.45776367, -0.53222656, 0.6176758, -0.03640747, 0.0390625, 1.8720703, 0.52734375, 0.7163086, 1.3447266, 0.546875, 1.4570312, 0.77685547, -4.1132812, 0.42944336, -0.4675293, -2.0292969, 0.51660156, -2.7675781, -0.36621094, -1.9355469, -0.99560547, 3.2675781, 2.2011719, 2.5136719, 0.9291992, -0.6850586, 0.5444336, -0.32080078, -0.9199219, -0.43286133, 1.0478516, 1.8867188, -0.8100586, -1.0849609, -0.6542969, 1.7900391, -1.9619141, -2.0859375, 0.6113281, 0.6479492, 0.92089844, 2.0800781, -1.5605469, 0.028884888, 0.60253906, 2.171875, 0.5859375, -1.3037109, -0.53222656, 0.9091797, -0.39453125, 0.90722656, 1.6435547, 1.4355469, -0.7114258, 1.796875, -0.35717773, 1.2167969, -3.5878906, -0.13781738, -0.8208008, 1.8525391, 0.61279297, 1.9316406, -0.9746094, 2.0234375, -0.17773438, -0.28051758, 1.7880859, -2.1367188, 1.1875, 1.5458984, -0.36865234, -0.89697266, -0.6176758, 0.89697266, 1.2451172, -0.73583984, 1.6816406, -0.5776367, -0.82177734, 0.08996582, -0.11602783, -1.6474609, -2.0488281, 2.4121094, -0.7734375, -2.15625, 0.39135742, 1.9482422, -0.01398468, -1.8212891, 0.27416992, 0.39453125, -0.029220581, 1.7060547, -0.52734375, -0.78125, 2.8027344, -0.3395996, 0.56347656, -0.003967285, -3.0585938, 0.5776367, -0.56347656, -0.47680664, 1.0927734, 0.68896484, 0.25097656, 2.0410156, -3.2714844, 0.6958008, -2.3476562, -0.41235352, 0.30517578, -1.0380859, -1.1298828, 0.43676758, 0.29296875, 2.5917969, -0.77001953, 3.2617188, -1.0126953, -1.9394531, 1.0615234, -2.3476562, 0.2211914, -2.40625, -2.1210938, 1.0703125, -1.0009766, -0.18188477, 1.8505859, 0.9589844, 0.24731445, 3.1523438, 1.3320312, -3.2675781, -0.1697998, -1.421875, 0.18737793, 0.04849243, -1.8125, 0.8300781, -0.37451172, -2.3652344, -0.8598633, 0.56591797, -0.31201172, -0.059539795, 1.7607422, -2.9160156, -0.044128418, -0.36499023, 1.5498047, 0.43701172, -0.081726074, 0.6347656, 0.1619873, -0.9140625, -1.8564453, 1.9404297, 2.4414062, 0.6904297, 1.7255859, 0.5986328, 0.6616211, 0.10253906, 0.75927734, -1.2451172, 3.2871094, -0.2607422, -2.4140625, -0.80810547, -0.43066406, -0.15551758, -1.6328125, 1.9404297, -0.07086182, -1.7724609, 0.36499023, 1.4980469, 0.4633789, 0.91308594, -0.09460449, -2.5742188, -0.18591309, 2.3300781, -2.5996094, 0.119384766, 0.35473633, 0.1517334, -0.16699219, 0.12866211, -1.3896484, 0.062561035, -1.4589844, -1.3974609, -1.2011719, 3.3046875, 1.6552734, 1.7119141, 1.5078125, -1.4072266, 0.30664062, -1.2128906, 0.6669922, 0.8881836, 1.109375, -1.0019531, -1.5380859, -0.26489258, 2.5332031, -2.5214844, -1.9648438, 2.0058594, -1.8671875, -1.078125, -1.2675781, 1.03125, -1.8339844, -0.96435547, -0.49804688, -0.6977539, 2.3105469, -0.9794922, -1.0751953, 1.0371094, 0.26391602, 0.21020508, -0.052124023, -0.8955078, 0.67871094, 2.2304688, 1.2685547, 0.56689453, -0.8300781, 0.49389648, -0.3388672, 0.97265625, -0.8613281, -0.68896484, 0.4560547, -0.7866211, -0.85058594, -3.0292969, 1.4375, 2.7109375, 1.5361328, 3.0058594, 0.031707764, -2.46875, 2.1660156, 0.07562256, -1.9267578, 0.48046875, -0.6401367, -0.045440674, 1.2402344, -0.6069336, -3.984375, 0.053863525, 1.7382812, -1.1513672, 0.8466797, 1.2880859, -0.92822266, -2.2949219, -2.3710938, -0.4597168, -0.1751709, -0.0670166, -0.44848633, 1.3945312, 1.4775391, -1.2861328, -0.8569336, 4.3125, -1.3212891, 0.57128906, 1.4472656, -0.09753418, 1.3886719, 0.4177246, -1.0419922, -0.45776367, -0.55029297, 2.375, 1.8662109, 1.4082031, 0.4951172, 0.21533203, -2.3984375, 0.57373047, -0.9160156, 2.2675781, -2.0546875, -1.4267578, 1.0888672, -0.046783447, 1.7480469, -0.64160156, 1.3632812, 0.45043945, 1.8125, 2.6152344, -0.10015869, -1.7177734, -0.48657227, -2.7617188, -3.5429688, -2.5410156, 1.2197266, 3.2460938, 1.1660156, -0.19628906, -1.9492188, 0.24279785, -0.28173828, 0.1895752, -1.1787109, -1.1298828, 0.08502197, -0.37451172, 0.9345703, -0.2746582, -1.4296875, 0.44091797, 0.8046875, -0.17419434, 1.5361328, -2.0507812, -4.2617188, 1.3798828, -1.4960938, -0.90625, 1.0039062, -0.6875, -1.4951172, 1.8203125, 2.015625, -1.2978516, 1.8632812, -0.8618164, 0.16027832, 2.4140625, -0.036499023, 0.18334961, 0.058532715, -1.6269531, 0.7573242, -1.9570312, 3.4453125, -0.7402344, -1.2285156, 0.71972656, 1.390625, -0.7480469, 0.30859375, 0.8178711, -0.53759766, 1.7099609, 0.37451172, -0.47216797, -1.4804688, -1.6298828, -2.5761719, 0.58935547, -1.5380859, 0.22180176, -1.8720703, 0.19128418, 1.1318359, -0.09063721, 0.13476562, 1.6191406, 2.0605469, -1.1308594, 1.8398438, -1.3027344, 1.9150391, 3.2890625, -1.2998047, -2.7714844, -2.4472656, -1.4970703, 1.6191406, -0.7788086, -0.41992188, -2.9140625, -0.5786133, -0.48632812, -0.023345947, 0.7216797, 2.5175781, 1.2382812, -0.48999023, 1.6132812, 2.4765625, -0.4987793, 2.2695312, -0.21850586, 4, -1.234375, 2.8867188, -0.49316406, -2.5175781, 2.6738281, -1.8613281, 0.9770508, 1.5078125, -1.9160156, 0.20751953, -2.0117188, -0.48242188, -2.8945312, -1.6416016, -2.2128906, 0.9345703, -0.03326416, -0.29052734, 0.7841797, 2.3164062, -0.4165039, 0.9321289, 1.7119141, 0.9785156, 0.6640625, 0.79052734, 1.0820312, 0.61816406, 1.5019531, -2.7753906, 3.3535156, -0.057128906, 1.0107422, 0.11907959, 0.8359375, 1.9648438, 2.2011719, 0.62939453, 1.4619141, 4.7617188, 2.2988281, 1.53125, -0.003440857, 1.0214844, 2.7070312, -0.7026367, 0.8979492, 0.9238281, 1.4101562, -0.16345215, -0.32177734, 0.9458008, 1.1513672, -1.1708984, -2.7148438, 0.045166016, -0.20593262, -0.11102295, 2.0195312, 0.046020508, 0.73339844, -2.1347656, -0.0390625, -1.6542969, 0.21777344, 0.59814453, -0.9970703, 2.140625, 0.2915039, 1.4833984, 0.71728516, -1.046875, 1.7304688, -3.25, -0.21875, -1.1630859, -0.6508789, -0.62646484, -3.1640625, 0.80566406, -0.005859375, 0.7060547, 0.82714844, 1.5195312, 1.0585938, -0.047027588, -1.9326172, 0.7285156, 1.0576172, 1.2548828, -1.5458984, 0.21875, 3.0019531, 0.08654785, 0.061035156, -4.609375, 2.3789062, -0.006095886, 1.4726562, 3.1425781, -1.3466797, 1.7070312, 1.0966797, 1.515625, -2.1699219, 2.5605469, 0.87890625, -3.2050781, 0.67041016, 0.5600586, 0.6298828, 2.4960938, 0.6972656, -1.4033203, 3.0175781, -0.9794922, 3.5527344, 0.0715332, 1.3398438, 1.796875, -0.024841309, -2.0214844, 2.4667969, -0.4387207, -0.19555664, 0.1586914, 3.4902344, 2.2402344, -0.24047852, 1.6328125, -0.13000488, 0.7397461, -0.039733887, -1.1230469, -0.10687256, -0.20825195, 0.054107666, -0.45581055, 1.7255859, -0.8833008, -1.6279297, 1.8974609, 1.7011719, -1.6230469, 0.26293945, 2.8085938, -1.3173828, 2.4179688, -0.8642578, -0.9169922, -1.0605469, 0.29003906, 1.0888672, 0.4560547, -1.0947266, 0.29296875, 0.5878906, -0.4206543, -1.2158203, 0.7753906, 0.005065918, -0.46142578, -1.546875, 1.0136719, -2.6015625, -3.0390625, 1.5595703, -0.13513184, -0.48364258, 0.31933594, -0.083984375, -1.3642578, -2.0097656, 0.22009277, 0.15478516, -0.4169922, -1.1855469, -1.1875, 3.2617188, -0.2878418, 1.0410156, -2.3339844, -5.0820312, -0.47338867, -2.0800781, 3.765625, -0.19335938, -1.5644531, -0.8071289, -0.0657959, 2.5117188, -2.4335938, -1.5576172, 0.21740723, -0.7578125, -0.3256836, -0.7055664, 1.4365234, 1.5371094, -0.66503906, 0.14648438, 1.25, -0.012138367, 2.3320312, 0.8833008, 1.4716797, -0.024841309, -1.7099609, 0.62060547, -1.9833984, 0.13378906, -1.4980469, -0.101379395, 0.84472656, 1.1455078, 0.87646484, -0.9433594, -1.8261719]}, "B087HNGXRB": {"id": "B087HNGXRB", "original": "Brand: Megamaster\nName: Megamaster 720-0988EA Propane Gas Grill, Black/Silver\nDescription: \nFeatures: Assembly required\nDurable high-grade stainless steel main burner\nStainless steel control panel with two large easy to transport wheels\nHeavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area\nA cooking power of 30,000 total BTU's with strong, even and consistent heat\n", "embedding": [-0.72509766, -0.5239258, 1.5273438, 0.22802734, -1.4443359, 1.3095703, -0.26123047, 0.7480469, 0.026687622, 1.8789062, 0.74853516, -0.06329346, -0.4543457, -1.3554688, 1.2324219, 1.5517578, 1.1523438, 0.11859131, 1.8867188, 1.2509766, 0.5415039, 0.2166748, 0.22851562, -1.875, 2.0410156, -0.108947754, 3.9121094, -3.3613281, 0.12524414, -0.3149414, 0.7993164, -0.19189453, 0.2993164, 1.8554688, -1.9658203, -0.7807617, -3.7792969, 1.5859375, -3.3535156, 1.4892578, 0.71484375, -0.89404297, 1.2373047, -0.3544922, -1.59375, -0.87890625, 0.99853516, 0.26611328, -2.2050781, -3.7128906, 1.0419922, 1.9755859, -0.6665039, 0.056365967, -0.72314453, -0.19677734, 1.1796875, -0.54833984, 1.1386719, 0.45239258, 2.0742188, -1.9951172, -1.2158203, -1.1044922, -1.7382812, 0.41308594, 0.13208008, -0.9448242, -0.14868164, -1.5585938, 1.3710938, 0.41577148, -2.2089844, 0.88720703, -0.4880371, -2.0019531, -2.7578125, 0.6894531, -0.048828125, -0.6855469, -1.6943359, 2.6308594, 0.5864258, -1.1826172, 0.36328125, -0.26782227, -0.17773438, -1.4267578, 0.6147461, 0.61083984, -2.0546875, 0.7114258, -2.3105469, -4.6210938, 3.9472656, 1.0185547, 0.33276367, 0.44702148, 1.5195312, 2.1699219, -0.3161621, 0.8930664, -1.5820312, 0.5029297, -3.2167969, -1.2646484, 0.61572266, 0.8120117, -4.09375, 0.9589844, -0.890625, -0.050933838, 0.4873047, 0.27807617, -0.37036133, 0.44433594, 2.4960938, 1.2001953, 2.8300781, 2.7519531, 3.1796875, -0.68310547, 1.7138672, 1.0888672, -1.1650391, -0.35717773, -0.8461914, 3.3183594, 4.4101562, -3.1191406, 0.671875, -1.3398438, 2.3300781, 1.2021484, -0.37695312, -2.890625, -1.6162109, -1.0341797, -3.1308594, -0.12683105, -1.2841797, 2.3613281, 0.57373047, -0.8828125, -4.8007812, -1.2216797, -0.39135742, -0.6665039, -0.93603516, -0.4404297, -0.25805664, -1.4726562, -1.3330078, 0.17126465, 0.7260742, -1.6005859, -1.1494141, -0.42700195, 2.8046875, 1.3583984, 2.1933594, -0.016357422, -3.3183594, 0.05380249, 0.73583984, -1.2177734, -0.6875, 1.3251953, 0.59521484, 0.88623047, -0.16259766, -1.0869141, 1.1425781, -0.9975586, 0.4411621, 1.0019531, -0.04751587, 3.265625, -0.81591797, -2.9472656, -0.46557617, -2.3496094, -0.41210938, -0.69140625, 0.04296875, -2.1894531, 0.50634766, -0.8925781, 1.8896484, -0.64990234, -0.9926758, 1.8710938, 0.21289062, 1.0458984, -0.078430176, -2.3027344, -3.0839844, -1.8837891, 2.3535156, -0.7363281, -1.1435547, 0.72998047, -0.23425293, 0.13244629, -1.2314453, -3.3183594, -0.4831543, -1.0888672, 1.7080078, 1.1748047, 1.9404297, -2.5332031, 1.234375, -2.3457031, -0.8461914, -2.2089844, 1.1533203, 1.2021484, 1.8310547, 3.4628906, -0.32983398, 1.2558594, 0.70703125, 1.2285156, -0.035491943, 1.5185547, 1.2333984, 1.7529297, -3.3203125, -3.1484375, 2.4101562, 1.4091797, -0.14343262, -0.42797852, 0.7207031, 1.7724609, 1.2578125, 0.29760742, -0.5107422, -0.2775879, 0.19372559, 0.5488281, -0.3395996, -3.09375, 0.28588867, 0.22473145, -2.6699219, 1.828125, 1.3515625, 2.1464844, 0.020736694, 1.8876953, 0.15002441, 1.671875, -0.71435547, 1.2099609, -1.1972656, 1.0351562, -0.050567627, -2.6464844, 1.3115234, -0.36254883, -0.77685547, -0.45239258, 2.6875, -1.0683594, 4.6796875, 0.5708008, -2.21875, -1.7587891, 3.4550781, 0.6069336, 0.78466797, 0.74658203, 2.5527344, 2.1582031, -0.84033203, 4.2890625, 1.2060547, 0.035186768, 0.5439453, -0.74072266, 1.2949219, -1.5654297, 0.51904297, -0.28393555, 2.4179688, 0.99658203, -1.5810547, 1.7578125, 3.5332031, 0.90234375, -2.4609375, 2.8925781, -1.5478516, 1.1796875, 2.9589844, -0.7680664, 0.33862305, -0.17871094, 2.1386719, 1.359375, 0.024551392, 0.7290039, 0.025619507, -1.5087891, 0.079711914, -0.10662842, -0.6586914, 1.5849609, 0.29418945, -0.5776367, -1.5517578, 0.5913086, -1.5419922, 0.2697754, 2.3535156, -1.9892578, 1.4013672, 1.0302734, 2.890625, 1.5390625, 0.7832031, -0.68603516, 1.7373047, 0.53271484, -0.98095703, 0.93359375, 1.2958984, -0.7675781, 0.67041016, 0.20422363, 0.29077148, -0.9838867, -2.9238281, 0.6352539, -2.5234375, -2.5136719, 1.3271484, -0.7055664, 0.8989258, 1.0048828, -2.5253906, 1.0683594, -0.6401367, -2.6308594, -2.5390625, -0.54833984, 0.6196289, -1.5556641, 0.18896484, 0.8964844, 0.3371582, -4.4648438, -1.1240234, 2.15625, -0.6977539, 2.3886719, -0.48364258, 0.26879883, 0.68310547, -1.3359375, -0.043945312, -0.76904297, 0.8359375, -2.4042969, 1.1416016, -3.5253906, 0.4650879, -2.4707031, 0.02406311, -1.5351562, 0.78515625, -2.0429688, -1.8486328, -0.84033203, -0.17321777, 4.6054688, -0.7602539, 1.7626953, -0.07763672, 0.9086914, 2.0332031, -2.0488281, -1.5791016, -1.1210938, 2.0820312, -1.8935547, -0.8598633, -1.3740234, 1.0839844, -1.0126953, 0.90625, -0.40600586, 0.9008789, -2.0019531, 2.1679688, -1.4648438, -0.0859375, -0.20751953, 0.18835449, 0.02558899, -1.6054688, -0.41601562, -0.055145264, -0.7890625, -2.3339844, 0.6508789, 1.4179688, -0.77490234, 0.91015625, 0.3010254, -1.2392578, 1.3085938, -0.8105469, -3.0957031, 4.078125, -1.5419922, -2.2871094, 1.5351562, 0.32348633, -3.5957031, -2.1699219, -2.3730469, 3.3515625, 1.2158203, 2.265625, 0.1772461, 0.16833496, 0.92822266, -1.0576172, 1.7578125, -1.4091797, -0.9589844, 3.4453125, -0.45043945, -2.203125, 0.20361328, 2.0683594, -3.5371094, -2.6152344, 2.7324219, 1.0771484, 2.3417969, 2.3847656, 0.72509766, -0.26293945, -0.7558594, 3.3828125, 0.7084961, -0.19384766, 0.6225586, -0.5415039, 1.5517578, 1.0488281, 1.4619141, 2.515625, 0.2220459, 1.9013672, -0.52490234, 0.5722656, -2.140625, -0.38671875, -0.5283203, 0.2902832, 0.052856445, 1.3837891, -0.3112793, 1.0830078, 0.58447266, 0.17773438, -0.59277344, -1.8935547, 0.15441895, 1.4296875, 0.06317139, 0.5463867, -0.8647461, 0.039978027, 0.93310547, -0.8442383, 0.18322754, -2.9980469, -1.2744141, 1.8369141, 1.4140625, -1.1240234, -1.390625, 1.453125, 0.028244019, -0.9086914, -0.11541748, 2.0097656, 0.7182617, -2.1699219, -0.46313477, -0.60595703, -1.6357422, 1.0117188, -0.1796875, -1.1865234, 1.8056641, -0.87939453, 1.3095703, 1.9599609, -1.0917969, 0.51123047, -0.46850586, 0.18127441, -0.08538818, 0.7871094, 1.6953125, 0.8598633, -2.1503906, -0.29711914, -3.0390625, 0.87060547, 0.40356445, -2.1054688, -0.4963379, 1.3203125, 0.49389648, 2.7675781, -1.3144531, 2.6523438, -0.64990234, -0.65722656, 0.5551758, -3.1660156, -1.4169922, -4.0195312, -2.5507812, 1.1005859, -3.015625, -0.33520508, 2.2324219, 0.059051514, 0.8886719, 1.2822266, 1.1513672, -3.6582031, -2.09375, 0.14282227, -0.01007843, -0.2890625, -1.1474609, 0.072509766, 0.8041992, -2.2246094, 1.1455078, 0.85791016, -0.45092773, 1.8583984, -0.053710938, -0.62353516, 0.7260742, -1.28125, 0.14941406, -0.58740234, -0.7421875, 0.080566406, -1.4570312, -0.28271484, -3.3046875, 2.2871094, 0.7524414, -0.8911133, 0.57910156, 2.0703125, -0.6357422, -2.5996094, 0.39233398, 0.5605469, 0.14733887, -0.85546875, -2.5800781, -1.2011719, -0.5571289, 0.0027561188, 0.07409668, 1.1777344, -1.2685547, -1.8369141, 0.17834473, 0.8491211, 0.6616211, 1.1679688, 0.022598267, -1.7626953, -0.2944336, 0.52490234, -2.8496094, -1.2695312, -0.36743164, -0.3557129, -0.89501953, -0.46875, -1.4326172, -0.46020508, -1.9970703, -0.18322754, -3.1035156, 1.9658203, 2.1660156, 1.8486328, 4.0390625, -0.037109375, -1.1152344, -1.5654297, -0.18615723, -0.21984863, 1.5185547, 0.34155273, 0.6196289, -0.2590332, 1.8427734, -3.0683594, -0.6538086, 2.2285156, -2.9394531, -0.22229004, -1.3945312, 1.1650391, -0.82373047, -1.0029297, 0.20214844, -0.14916992, 2.4804688, -0.56884766, 1.6298828, 0.050445557, 0.73828125, -0.6699219, 1.5283203, -0.13537598, -1.8212891, 3.0019531, 0.44140625, 1.4765625, -0.92529297, 0.21350098, 1.0576172, 1.0800781, -0.9692383, 0.703125, 0.25805664, -0.18981934, -1.75, -1.7734375, 0.23498535, 1.7646484, 0.62158203, 2.5703125, 1.6748047, -0.9199219, 2.7050781, 0.7524414, -2.1640625, 0.031082153, -1.3583984, 0.50146484, 0.9003906, 0.3359375, -2.2265625, -1.3359375, 2.1601562, -0.35351562, 0.54248047, 0.005279541, -1.6337891, -1.2099609, -2.859375, -0.67822266, 0.4501953, -0.9472656, -0.24304199, -1.1591797, -0.12054443, -0.93115234, 1.9570312, 3.7578125, -1.6679688, -2.0722656, 2.7265625, -0.58740234, 1.5107422, -0.16223145, -0.03955078, -1.8867188, 0.94921875, 2.7636719, 1.2509766, 0.37670898, 1.8720703, 0.22302246, -3.3457031, 2.1445312, -0.86328125, 2.0546875, -1.7763672, -2.4121094, 0.9472656, -2.6777344, 0.9897461, -1.9335938, 1.5400391, -1.5195312, 2.4667969, 2.6425781, 0.125, -0.81591797, 1.7568359, -1.5654297, -3.7402344, -3.0214844, -0.29858398, 1.7646484, -0.022537231, 1.8271484, -1.7216797, 2.0371094, 1.4169922, 0.39282227, -0.27490234, 0.80078125, -0.8227539, -0.25024414, -1.1943359, -0.19299316, -1.015625, -0.54248047, 1.8583984, 0.7729492, 0.5932617, -2.9453125, -3.4453125, 0.65771484, -0.53271484, -0.43481445, 1.9404297, 1.4248047, -0.66015625, 1.1816406, 1.3505859, -1.7490234, 1.4208984, -1.5556641, -1.0371094, 1.4375, 1.2666016, -0.23571777, 0.24365234, -2.1269531, 0.16210938, -0.8803711, 1.9912109, -0.056549072, -0.37182617, -2.3730469, 0.3876953, -0.9038086, 0.20373535, -0.56103516, -0.13647461, 2.3222656, 1.7373047, -1.0810547, -0.29711914, -1.3310547, -3.6347656, 0.52734375, -2.3105469, 0.1607666, -0.41870117, 0.91552734, 0.37304688, 1.1298828, 0.76220703, 0.5546875, 1.8916016, -0.1661377, -0.7963867, -1.2724609, 1.6875, 2.4511719, -0.17321777, -2.2617188, -2.1484375, 0.3996582, 2.1464844, 1.6845703, -1.0546875, -0.61865234, -1.4521484, -0.7011719, 0.2421875, 1.1542969, 1.5361328, -0.6616211, -2.4277344, 1.1982422, 3.0527344, -0.31152344, 2.2773438, 0.7807617, 2.0136719, -2.2363281, 3.6777344, 0.13549805, -0.93310547, 2.6796875, -1.46875, 0.76416016, -0.69921875, -1.6318359, 0.15112305, -1.7158203, -1.5029297, -0.9526367, -0.8886719, -4.2773438, 1.5400391, 1.3984375, -1.8193359, -0.24353027, 1.1816406, -1.0849609, 3.4199219, 3.1796875, 1.0888672, 0.49609375, 1.6259766, -1.2119141, -1.1298828, 0.24450684, -3.1269531, 2.3027344, 0.40405273, -1.4804688, -1.0419922, 2.53125, 1.1962891, 1.671875, 1.5078125, 1.6572266, 2.7636719, -0.29663086, 1.1572266, 1.6367188, 1.1962891, 2.7480469, -0.16088867, 1.0136719, 0.6557617, 0.7753906, 1.3984375, -0.7915039, 1.3857422, -1.3867188, -1.9462891, -0.5859375, 0.35180664, 0.004611969, -0.98779297, 0.2697754, 0.045898438, 0.56396484, -2.5566406, -0.5551758, -1.0458984, -0.8417969, -1.4716797, 0.5317383, 1.9716797, 0.42285156, 0.036468506, -0.5258789, -2.3945312, 0.8823242, -1.7236328, 0.75146484, -0.16027832, 0.43823242, -0.8305664, -0.8984375, 0.110839844, -0.45385742, -0.16809082, 0.32006836, 0.85791016, 0.062286377, -0.8105469, -1.6884766, 0.31762695, -0.39916992, 1.7734375, -0.21105957, -0.34399414, 3.3515625, -0.921875, -0.94677734, -3.1777344, 1.6142578, 1.6640625, -0.16027832, 1.8642578, -1.4296875, 1.5166016, -0.57910156, 0.3395996, -2.8984375, 0.36694336, 0.051483154, -1.7109375, 0.44726562, 1.6845703, 1.2216797, 2.5800781, -0.04244995, -0.79248047, 0.7949219, 1.3779297, 1.6474609, 1.1708984, 1.0527344, 1.7900391, 2.2578125, -1.4990234, 1.9580078, 0.7363281, -0.9819336, -3.4707031, 2.2675781, 3.1875, 0.6738281, 0.5307617, -1.8427734, -0.26098633, -0.1373291, -1.1220703, -1.0595703, -2.5371094, 0.10455322, -0.74853516, 0.97802734, -0.40942383, -2.4101562, 2.421875, 1.0908203, -0.72216797, 0.93603516, 0.6875, -0.67578125, 1.8554688, -0.120910645, -0.92626953, -0.019943237, -0.10284424, 0.4621582, 0.35742188, -1.8242188, 1.6044922, 1.3115234, 1.3271484, -2.1386719, -0.76416016, 0.5708008, 0.19934082, -1.0458984, 1.5966797, 0.28393555, -2.3652344, 2.5039062, 0.54003906, -0.30566406, 1.6210938, -0.08770752, 0.48754883, -1.7216797, -0.5854492, -0.43286133, 0.16357422, -0.13623047, 2.0917969, 1.5615234, 0.8120117, 0.060760498, -2.2597656, -2.5195312, -1.5458984, -2.0449219, 4.2929688, -0.7133789, -1.0615234, -0.95947266, 1.1972656, 2.9785156, -1.7773438, -0.97021484, -0.39160156, -1.1650391, 0.6254883, 1.3164062, 0.7807617, 1.6337891, 0.97216797, 0.77001953, 1.6103516, 0.77978516, -0.09649658, 1.3320312, 2.6386719, 0.6303711, -2.2949219, 0.37182617, -0.4716797, -0.82373047, -0.67041016, -0.28710938, 2.5175781, 0.7192383, -1.2490234, -1.1650391, -0.8588867]}, "B00FDOON9C": {"id": "B00FDOON9C", "original": "Brand: Weber\nName: Weber 54060001 Q2200 Liquid Propane Grill , Gray\nDescription: \nFeatures: Total cooking area = 280 Square Inches\nStainless steel burner puts out 12,000 BTU-per-hour\nPorcelain-enameled, cast iron cooking grates\nElectronic ignition with built in thermometer\nTwo folding work tables\n", "embedding": [-0.9628906, 0.15979004, 2.2382812, -0.47265625, -1.4248047, 0.7060547, -0.07116699, -0.8720703, -0.7519531, 2.2128906, 2.7792969, 0.67626953, -0.44335938, -2.7050781, 0.5751953, 0.020141602, 2.4414062, 0.36206055, 0.78027344, 0.50390625, 0.29858398, 0.70166016, 1.3818359, -2.4785156, 2.0644531, 1.1953125, 4.9101562, -4.8671875, -0.61572266, -1.7138672, 0.8701172, 1.1953125, 0.9238281, 0.49853516, -2.7207031, -0.78222656, -3.3984375, 1.4404297, -1.8496094, 0.99609375, -0.29833984, -2.8378906, 1.578125, 0.66308594, -1.7373047, 0.62597656, 0.76464844, -0.55859375, -1.5048828, 0.034851074, 3.1132812, 0.7573242, 0.20080566, 0.91308594, -0.48583984, 1.8496094, -0.31640625, -1.8515625, 1.1396484, 0.7480469, 2.1347656, -0.9448242, -2.5019531, -0.61376953, -0.8798828, 0.086242676, -0.3623047, -0.92822266, 1.84375, -0.0037555695, 3.5410156, -2.8515625, -1.7607422, 0.7915039, 1.46875, -1.9033203, -1.3349609, 1.9023438, 1.6230469, -0.6323242, -1.3476562, 2.2832031, 0.43237305, -2.1992188, -0.21228027, 0.7626953, -0.30615234, -3.3730469, 2.4628906, 1.9775391, 0.18847656, 1.0019531, -2.4199219, -4.1757812, 1.9238281, -0.6586914, 0.80322266, 1.3701172, -0.30688477, 0.60302734, -1.4775391, 1.1933594, -1.0507812, -1.4521484, -3.2597656, -0.59765625, 0.9628906, -0.21374512, -2.4882812, -0.640625, -1.0849609, 0.12176514, 1.5625, 1.7958984, 0.57373047, 1.9287109, 0.42333984, 2.7128906, 1.4101562, 1.3525391, 2.4277344, -1.3691406, -0.1003418, -0.52490234, -0.92333984, 0.45654297, -0.8623047, 1.2509766, 3.0683594, -2.9628906, -0.5175781, 0.0107421875, 4.375, 0.74853516, -0.5258789, -1.1708984, -2.0136719, -0.042816162, -2.5566406, -0.32910156, -0.8173828, 0.28320312, 0.6894531, -0.44018555, -3.2460938, -1.2792969, 0.76708984, 1.515625, -0.034423828, -1.5683594, -0.36083984, -1.1464844, -1.0058594, 0.18188477, 1.234375, -0.21166992, -1.3271484, 0.41137695, 3.3457031, 1.4941406, 1.9238281, -0.86865234, -1.0185547, -0.1772461, 0.9375, 0.42236328, 1.4550781, 2.4960938, -0.07476807, 2.2226562, -0.17907715, -0.7363281, -1.1396484, 0.18408203, 0.7988281, -1.171875, 0.17260742, 1.5087891, 0.7480469, -0.66748047, -0.44580078, -2.1582031, 0.15222168, -0.44970703, -0.28833008, -0.77197266, -0.71728516, -0.7451172, 2.3632812, -1.9228516, 0.35180664, 0.35205078, 1.0390625, -0.5229492, 0.39941406, -0.5751953, -2.0058594, -2.3183594, 1.0019531, -0.032043457, -0.43310547, -0.18737793, 1.1435547, 0.41137695, 0.19396973, -2.3828125, -0.5913086, -1.5556641, 2.5078125, 1.4111328, 2.0507812, -1.7675781, 1.4667969, -0.7011719, -0.024765015, -2.1855469, 2.1503906, 0.7861328, 0.5463867, 2.375, -2.296875, -0.32739258, 0.67871094, 2.0019531, 0.13671875, -0.00045108795, 0.46289062, 0.17687988, -2.8613281, -0.37597656, 3.8300781, -0.2088623, 0.015945435, 0.06008911, 0.07513428, 2.0429688, 1.2490234, -1.0498047, -0.44067383, 0.008514404, 0.40429688, 0.6645508, -0.9951172, -1.5195312, 0.29101562, 0.19311523, -2.6210938, 2.0117188, 1.3671875, 0.3642578, -0.26879883, -0.05899048, 0.8071289, 1.2060547, -0.8339844, 1.203125, -2.2851562, 1.1796875, -0.49951172, -3.6640625, 1.4443359, 0.086364746, -0.19030762, -0.030761719, 1.2197266, -1.0332031, 2.9589844, 2.1855469, -1.7646484, -0.99365234, 0.48217773, 0.19372559, 0.2734375, -0.8925781, 1.7226562, 0.8227539, -1.8769531, 2.5683594, -0.011314392, 0.14404297, 0.27026367, -0.5253906, 0.87402344, -2.6640625, -1.3271484, 0.99072266, 0.9042969, -0.86376953, -2.0449219, 0.033294678, 3.0917969, -0.12487793, -2.7207031, 3.9375, -2.0996094, 0.37231445, 1.8193359, -0.48291016, -1.1474609, 1.2373047, 2.4453125, 0.9301758, 1.0058594, 0.90185547, -0.51171875, -1.3984375, 0.59277344, -2.7929688, 1.1650391, 1.2939453, -0.6357422, -0.98095703, -2.21875, 1.7558594, -2.5, -1.5722656, 1.8623047, -4.1601562, 0.8569336, -0.84277344, 1.4560547, -0.10638428, -1.7734375, -0.09967041, -1.6191406, 0.35107422, -0.40820312, 1.2001953, 0.6176758, -2.2441406, -1.1865234, -0.13928223, -0.49047852, -1.4189453, -1.5390625, -1.0166016, -1.5615234, -3.0527344, 1.6552734, -1.0605469, -0.3076172, 1.8085938, -2.9882812, 0.3984375, 0.103271484, -3.4199219, -0.7114258, -0.95947266, -1.8164062, -1.5371094, 0.85302734, 0.80126953, -1.3847656, -4.2929688, 0.18811035, 0.5991211, 0.40112305, -0.8071289, -1.0625, -0.70751953, 0.5600586, -0.61621094, -0.60595703, -0.16833496, 0.6640625, -1.0234375, 1.3779297, -1.5683594, 0.92871094, -2.1835938, 0.6464844, 0.5449219, 0.5073242, -3.0566406, -2.2597656, -0.73095703, -0.54345703, 4.0351562, 0.6508789, 1.3164062, 0.6035156, 0.89501953, 0.796875, -0.45361328, -1.6191406, 0.35205078, 0.88671875, -1.5751953, -1.5400391, -2.1953125, -1.2011719, -2.1621094, 0.064208984, 0.6328125, -0.3828125, -0.8071289, -0.83935547, -1.5878906, -1.2099609, -0.8798828, 0.2199707, -1.0175781, -0.94628906, -2.6894531, -0.87109375, -1.3974609, 1.2070312, -1.0908203, 2.3945312, 0.6660156, 1.9033203, 2.3613281, -0.9238281, 1.265625, -1.5888672, -3.8046875, 3.5566406, 0.22351074, -1.4814453, 0.79589844, -2.6210938, -2.9609375, -1.4277344, -0.16992188, 3.0253906, 2.8925781, 1.8105469, 1.4208984, 0.8720703, 0.21435547, -0.9160156, -0.59472656, -1.3681641, 0.41015625, 2.8085938, -2.9707031, -1.8339844, 0.010482788, 1.2890625, -2.7460938, -1.1542969, 2.4042969, 1.7441406, 1.7685547, 2.0957031, 1.6962891, 0.0005097389, -0.74121094, 1.1005859, 2.0761719, -0.9453125, 0.009635925, 0.022750854, 1.4316406, -0.19665527, 1.59375, 2.5625, 0.20471191, 1.9902344, 2.1210938, 2.0898438, -1.0537109, -0.48168945, -0.064697266, 0.65722656, 0.7866211, 1.4960938, -0.83251953, 0.4008789, -0.6386719, -1.7646484, -0.3215332, 0.1381836, -1.6279297, 2.5292969, 1.1787109, -0.8022461, 0.96191406, 1.3183594, 1.4707031, 0.32885742, 0.028747559, -0.5864258, -0.43164062, 2.0214844, -0.8613281, -0.09197998, -1.5351562, 0.9301758, -0.75878906, -2.1386719, 0.7285156, 3.7128906, -1.6279297, -1.4121094, 0.82177734, -1.6962891, -0.02406311, 0.69921875, 0.5332031, -0.8339844, -0.38598633, -1.2529297, 1.15625, 0.2775879, -0.9614258, -1.0400391, -0.6118164, 0.5864258, -0.05343628, 1.9619141, 1.84375, 0.69433594, -2.3085938, 0.3684082, -3.9082031, -1.7529297, 2.1210938, -2.3320312, -0.58691406, 1.8955078, -0.18249512, 1.2236328, -0.36645508, 2.4472656, -1.9970703, 0.43481445, 1.5693359, -2.5703125, -0.81347656, -3.96875, -3.4941406, -0.039611816, -1.4277344, -0.3630371, 1.4931641, 0.24194336, -0.21972656, 2.2539062, 0.97802734, -2.0078125, -1.2802734, -1.6787109, 0.3647461, -1.3486328, 1.3388672, 1.0654297, -0.42163086, -2.2519531, -1.1533203, 0.8510742, 0.40405273, 1.7480469, 1.2275391, -3.4335938, -0.37817383, -2.1835938, -0.034576416, -1.1806641, 0.15930176, 1.5322266, 0.48608398, 0.33276367, -1.7832031, 1.0888672, 0.6953125, -0.6386719, 3.2851562, 2.4492188, -1.09375, -3.6582031, 0.6933594, 1.6884766, 3.3261719, -0.8535156, -2.3632812, -0.3857422, 0.4477539, -1.1601562, 0.18041992, 0.2133789, 0.71777344, -0.7470703, 1.1230469, 1.7548828, 1.4667969, 0.82421875, 0.49560547, -3.0371094, 0.88134766, -0.42651367, -2.453125, -2.1425781, -0.13781738, 1.3564453, -1.15625, -0.33496094, -1.7705078, 0.72998047, -0.6196289, -0.8354492, -3.1230469, 4.0859375, 4.3984375, 2.0136719, 3.4746094, -1.1523438, 0.8520508, -0.28515625, -0.6948242, 0.18859863, 0.5444336, -0.26098633, -0.061706543, 3.2871094, 1.4560547, -2.1601562, -0.3984375, 0.92871094, -2.3710938, -0.05279541, -2.5195312, 0.69677734, -0.8647461, -0.3671875, 0.8574219, -0.9785156, 1.9638672, -0.42456055, -0.6928711, -0.25, 0.65722656, -0.7011719, 0.7050781, 0.14489746, -0.19030762, 0.22827148, 0.890625, 1.1630859, -1.0400391, 0.0758667, -0.29833984, 1.0654297, -0.79052734, 0.115112305, 0.19519043, 0.67626953, -1.1542969, -1.5605469, 1.3789062, 1.6347656, 1.1533203, 3.703125, 2.3125, -1.8935547, 1.9589844, 1.0351562, -2.5371094, 1.7060547, 0.57958984, -0.9682617, 1.6894531, 0.48413086, -4.0117188, -0.02217102, 1.15625, -0.047973633, 1.2519531, -1.1191406, -0.61083984, 1.2167969, -1.6279297, -0.28686523, -0.21875, -1.2695312, 1.1953125, 0.1661377, 0.44970703, -2.3476562, 1.6025391, 2.2460938, -1.5703125, -1.7441406, 1.2402344, -1.7724609, 0.18200684, -0.5390625, -0.4177246, -2.3105469, -1.3417969, 2.5019531, 1.1230469, 0.3527832, 0.5029297, 1.2470703, -1.1474609, 0.31298828, -1.5273438, 2.8339844, -2.3203125, -0.44213867, 1.0058594, -3.2695312, -1.1386719, -2.1035156, -0.52246094, -0.8720703, 0.9272461, 2.53125, 0.5395508, -0.037017822, 1.0185547, -1.3857422, -3.4179688, -0.0034427643, 0.27441406, 0.23657227, 0.9116211, 0.9135742, -2.0996094, 0.9975586, -0.31518555, -0.7446289, -0.64160156, 0.017227173, -1.6181641, -0.7426758, 0.6977539, 0.2512207, -1.0615234, 0.77490234, 0.41918945, 1.5185547, -0.4169922, -1.1005859, -0.86572266, -0.030059814, -0.94677734, -0.07293701, 2.2753906, 2.2792969, -0.1796875, 1.3056641, 2.0351562, -2.4667969, 2.7421875, -1.5917969, -1.0205078, 1.2148438, -0.4897461, 0.39794922, -0.4025879, -0.78466797, 0.08929443, -1.2412109, 1.1435547, 2.3398438, -1.3916016, -1.5791016, -0.009101868, -0.7163086, -0.7495117, 0.37768555, 0.48779297, 0.8598633, 1.5585938, -1.4023438, -0.60791016, -1.4091797, -2.8261719, 1.3222656, -2.515625, -1.3193359, -1.4707031, 0.58691406, 2.3066406, 1.1289062, -0.7241211, 2.2988281, 0.41210938, -1.1210938, 1.4482422, -0.14123535, 4.1914062, 3.9042969, -1.1181641, -0.49951172, -2.1035156, 0.5263672, 2.0996094, 0.69091797, -1.9365234, -0.5473633, -0.76416016, -0.06402588, 0.39038086, 0.71972656, 1.1650391, 0.82421875, 0.8901367, 2.1035156, 3.3066406, -1.9892578, 2.0644531, 0.77490234, 1.8935547, -0.50390625, 4.6015625, 0.061309814, -2.8789062, 1.6484375, -2.5585938, 2.0117188, -0.9580078, -1.1142578, -0.24621582, -1.1289062, -1.9697266, -2.2851562, -1.4833984, -1.4775391, 2.2089844, 2.5800781, -1.6816406, -1.2255859, 2.2070312, -0.37280273, 2.109375, 1.3720703, 1.8369141, -1.5898438, 0.20825195, -0.46826172, 0.21362305, 1.8779297, -3.7460938, 2.8300781, 1.1972656, -0.6845703, -2.2207031, 1.1865234, 0.45166016, 2.4648438, 0.52001953, 1.9150391, 2.8242188, 1.3583984, 2.3320312, 1.2080078, 2.6894531, 1.2060547, -1.6015625, 0.39624023, 1.5332031, 0.83251953, 0.6196289, -0.65478516, 1.9208984, -0.5913086, -0.3869629, 0.3474121, -0.58691406, 1.2177734, -2.5546875, 0.6953125, 0.63134766, 2.28125, -0.46435547, -0.77441406, 0.31103516, 1.140625, 0.265625, -0.67578125, 1.7148438, 1.2539062, 1.9443359, -0.32885742, -0.65283203, 1.6552734, -4.2070312, 1.3935547, 0.54052734, -0.86865234, -1.5410156, -1.4453125, 0.92871094, 0.117492676, -0.30688477, 0.030410767, 3.4492188, 0.9897461, 1.4267578, -1.1972656, -1.5175781, 0.30371094, 2.1972656, -0.29638672, 0.22290039, 0.25512695, -0.46679688, -3.46875, -3.8164062, 3.3867188, 2.1171875, 1.4501953, 0.3474121, -1.2060547, 3.7246094, -0.14562988, 0.48266602, -1.4287109, -0.2783203, -0.4501953, -3.7539062, 1.015625, 0.13830566, -0.35131836, 1.7529297, -0.19189453, 0.46313477, 1.4648438, 0.7817383, 1.2646484, 0.96191406, 0.2446289, 1.6064453, 0.5913086, -1.8574219, 2.0039062, -0.546875, -1.3535156, -1.90625, 2.3574219, 1.2734375, -0.22521973, 0.19519043, -1.3154297, -0.33129883, -1.6005859, -0.18579102, 0.6826172, -2.8105469, -0.39746094, 1.4414062, 1.3486328, -1.6025391, -1.1269531, 2.5703125, 1.7070312, -0.48608398, 1.3701172, 3.1054688, -0.29858398, 2.0546875, -0.39868164, 1.8105469, -0.16467285, 1.4560547, 1.0849609, 0.09857178, -1.4121094, 0.34228516, 1.4755859, 0.16687012, -0.77978516, -0.7128906, -1.2246094, -1.1933594, -0.5761719, 0.7705078, -0.43188477, -1.6074219, 1.6230469, -1.5449219, -1.2792969, 1.9316406, -0.11669922, -0.044677734, -2.609375, -1.7519531, -1.5351562, 0.17114258, -1.1328125, 2.8164062, 4.2421875, -0.2619629, -0.3449707, -2.1464844, -3.0976562, -1.9414062, -2.2617188, 1.9052734, -0.8598633, -1.1416016, -1.0820312, 0.046966553, 1.7802734, -1.1259766, -0.68896484, 0.3828125, -2.4980469, 0.8852539, -0.5419922, 0.22509766, -0.67871094, 0.0038204193, 1.4980469, 2.2421875, 1.03125, 0.9121094, 0.21716309, 2.7695312, 0.3425293, -2.2773438, 0.09503174, 0.81347656, 0.016738892, -0.92333984, 1.2617188, 1.8574219, -0.19165039, -0.82910156, -0.5029297, -2.625]}, "B077JTCMKQ": {"id": "B077JTCMKQ", "original": "Brand: Weber\nName: Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates\n529 Square inches of cooking space over three burners. Left Table down width - 42 inches\n30, 000 BTU-per-hour input main burners with fuel gauge\nOpen cart design with six tool hooks and two large wheels.Built-in lid thermometer\n", "embedding": [-1.8876953, 0.3227539, 1.7109375, -1.046875, -1.1689453, 1.0146484, -0.18188477, -1.0273438, 0.6948242, 1.5976562, 2.8554688, 0.71728516, 0.796875, -3.7246094, 0.3371582, 0.59277344, 2.125, 0.49072266, -0.21459961, 0.54052734, 0.76171875, 0.059753418, 2.6464844, -1.6337891, 1.65625, 0.9511719, 4.1992188, -4.9101562, 0.18554688, -1.8623047, 1.6601562, 0.74658203, 0.9848633, 1.9140625, -3.796875, -0.83984375, -2.9960938, 1.4599609, -2.546875, 1.1113281, -0.06506348, -1.6972656, 0.72753906, -0.7060547, -1.78125, 0.58935547, 1.3076172, 0.7192383, -1.5, -0.21594238, 2.4257812, 1.3398438, -0.67626953, 0.9404297, -0.9970703, 2.3671875, -0.23181152, -1.3105469, 2.5429688, 0.1496582, 2.7617188, -0.41381836, -2.8027344, -1.7763672, -1.3017578, 0.27246094, 0.75097656, 0.51904297, -0.16894531, -0.38012695, 3.8691406, -1.8398438, -1.6826172, 1.3691406, 1.1416016, -2.2890625, -2.4941406, 2.7929688, 0.8911133, -1.4765625, -1.96875, 2.0332031, 0.8730469, -1.6376953, 0.015052795, 0.62158203, 0.3798828, -2.1289062, 2.2988281, 1.1777344, -0.48828125, 1.1816406, -1.5927734, -4.265625, 2.34375, -0.052947998, 1.7333984, 1.0605469, -0.07232666, 1.1279297, -1.3017578, 1.3681641, -0.8691406, -1.2070312, -2.4589844, -0.15270996, 1.9755859, 0.56884766, -2.578125, -0.60546875, -1.4462891, -0.55566406, 0.65771484, 1.53125, 0.81640625, 2.2851562, 0.5019531, 2.0253906, 0.7841797, 0.29516602, 3.109375, -0.9609375, 0.22521973, -0.44970703, -1.9892578, 0.07885742, 0.0015926361, 1.5478516, 3.8007812, -2.5292969, -1.0917969, 0.8432617, 3.609375, 0.19665527, -1.2402344, -1.4716797, -1.7851562, -1.0019531, -2.6816406, -0.57910156, -0.66015625, 0.60595703, 1.5322266, -1.3710938, -2.8457031, -0.21520996, 0.58154297, -0.17370605, 0.7138672, -1.1015625, -0.60253906, -1.5576172, -1.9052734, -1.5107422, 1.8769531, 0.051483154, -0.4260254, 0.24645996, 3.40625, 2.1484375, 1.5888672, -1.4072266, -2.1699219, -0.61572266, -0.2130127, 0.99609375, 1.5205078, 1.8105469, -0.42700195, 1.4785156, -0.1751709, 0.45239258, -0.09741211, -0.4501953, 0.74853516, -0.9897461, -0.40405273, 2.2011719, -0.20617676, -0.16442871, -0.5810547, -1.40625, -0.78271484, -0.22180176, 0.5996094, -0.98876953, -0.099487305, 0.036132812, 1.9941406, -1.6728516, 0.4736328, 0.07305908, 0.8491211, 0.09881592, 1.4042969, -1.1748047, -1.3154297, -2.2949219, 1.2304688, -0.34326172, -0.9633789, -0.8310547, 0.6538086, 0.27661133, -0.9926758, -3.078125, -0.45239258, -1.8759766, 1.4082031, 1.8662109, 1.9257812, -1.6210938, 1.0048828, -0.8769531, 1.328125, -2.3847656, 2.2539062, 0.81884766, 1.4404297, 1.6738281, -1.0371094, -0.33740234, 1.0107422, 2.5234375, 0.32299805, 0.15576172, 0.2866211, 0.40551758, -2.9238281, -0.72021484, 3.2480469, -0.10217285, -0.55029297, 0.14709473, 0.7290039, 3.2089844, 1.5458984, -0.46240234, -1.1640625, -0.62597656, 0.46728516, 0.9355469, -2.1015625, -0.86816406, -0.095703125, -0.26953125, -1.6875, 2.1621094, 0.9213867, 0.49902344, 1.5947266, 0.32177734, 1.6132812, 1.953125, -1.0244141, 0.7973633, -2.0625, 1.9140625, 0.062683105, -1.7158203, 1.9921875, 0.28271484, 0.3815918, -0.013511658, 0.6113281, -1.3017578, 1.9589844, 2.7851562, -0.9711914, -0.7475586, 0.5883789, 0.41552734, 0.61572266, -0.5, 2.1953125, 1.5654297, -1.5087891, 2.6601562, 0.12854004, 1.0117188, 0.27514648, -0.5214844, 1.3642578, -2.8632812, -0.107299805, 0.15576172, 0.95410156, -2.0292969, -2.140625, -0.22009277, 4.53125, -1.1923828, -2.8671875, 2.9082031, -2.6445312, 0.115722656, 1.8007812, 0.3857422, -0.7011719, 1.5595703, 3.0039062, 0.44921875, 1.5400391, 1.4482422, -0.36083984, -1.0761719, 1.4238281, -2.53125, 0.22912598, 1.2294922, -0.48413086, -0.7553711, -1.2373047, 1.0615234, -2.5488281, -2.0546875, 2.1386719, -2.4375, 0.91064453, -0.7661133, 2.0390625, -0.43481445, -0.81640625, 0.44970703, -1.4941406, 0.030548096, -1.9091797, 1.2236328, 0.31323242, -1.8066406, -1.4160156, 0.22912598, -1.6015625, -1.8837891, -1.4570312, -1.7421875, -1.2226562, -3.7011719, 2.5097656, -2.1894531, -0.640625, 1.1699219, -2.3398438, -0.49291992, 0.3256836, -3.0097656, -0.49121094, -0.67871094, -1.1396484, -1.5009766, 0.86816406, 0.6176758, -1.578125, -3.7324219, 0.0023612976, 0.45288086, 0.89746094, -0.10015869, -2.1269531, 0.2512207, 1.0673828, -0.2956543, -0.46875, 1.0732422, 1.4677734, -0.9897461, 1.2509766, -3.3496094, -1.2216797, -2.4726562, 0.5029297, 0.29345703, 0.9609375, -3.4355469, -1.8994141, -1.9326172, 0.2331543, 4.4296875, 0.44482422, 1.3320312, 0.9375, 0.88183594, 1.1630859, -1.8554688, -1.7685547, 0.9746094, 1.1103516, -1.2929688, -1.5361328, -1.1464844, -0.12011719, -2.7949219, 0.048217773, 0.27563477, -0.2536621, -0.35375977, -0.055389404, -2.2714844, -1.84375, -1.1142578, 0.11212158, 0.023147583, -1.2783203, -2.0039062, -0.8808594, -1.1865234, 0.074157715, -1.5458984, 1.3486328, -0.018447876, 1.3398438, 1.8769531, -0.27514648, 1.3271484, -0.9916992, -3.140625, 3.1738281, -0.31518555, -3.3417969, 1.6269531, -2.4296875, -2.3222656, -1.5566406, -0.1784668, 2.0292969, 2.3105469, 1.4970703, 0.5917969, 2.1875, -0.7128906, -1.2939453, 0.40063477, -1.1171875, 0.42211914, 3.4726562, -2.7226562, -1.7460938, 0.30639648, 0.62353516, -2.5449219, -1.21875, 1.703125, 2.0644531, 1.4814453, 1.3486328, 1.3388672, -0.96191406, -1.7451172, 1.3740234, 1.59375, -1.1660156, 0.6166992, -0.010383606, 1.9443359, -0.40844727, 0.94091797, 1.7861328, 0.68603516, 2.5292969, 2.2871094, 1.53125, -1.2226562, 0.32543945, 0.01914978, 1.0898438, -0.46948242, 1.5214844, -0.6347656, -0.08660889, -0.8803711, -1.1201172, -0.6689453, -0.9165039, -1.7177734, 2.7265625, 0.8613281, -0.5566406, 0.6455078, 1.1943359, 1.234375, 0.08544922, 1.0517578, -1.8847656, -1.375, 1.7421875, -0.5048828, -0.15112305, -1.6044922, 0.7006836, 0.31054688, -1.5761719, 0.6669922, 3.7285156, -1.59375, -1.5517578, 1.1259766, -0.30688477, -0.012451172, 0.9194336, 0.5541992, -0.38891602, 1.3027344, -2.2734375, 0.7919922, -0.31933594, -0.609375, -0.8017578, -0.20349121, 0.83203125, 0.42773438, 1.6357422, 1.1728516, -0.9692383, -2.5039062, 0.24108887, -3.9023438, -1.546875, 1.3710938, -2.6464844, -0.7910156, 2.5039062, 0.38452148, 0.65527344, -0.5136719, 2.890625, -1.578125, 0.60839844, 2.4609375, -2.7773438, -0.48657227, -4.2421875, -3.1347656, 0.6459961, -1.0849609, 0.067871094, 1.6240234, 0.32055664, 0.63623047, 3.5136719, 0.78125, -2.765625, -1.6318359, -0.5625, -0.33081055, -0.7133789, -0.26708984, 0.546875, -1.1767578, -2.5097656, -2.4121094, 0.29711914, 1.1230469, 1.2236328, 1.5439453, -2.9199219, -0.10406494, -1.9462891, -1.3007812, -1.8457031, -0.5336914, 1.3847656, -0.28125, 0.6088867, -2.4628906, 0.7792969, 1.0224609, -0.9140625, 1.9941406, 1.9179688, -0.35913086, -2.3144531, 1.46875, 0.6010742, 2.7929688, -0.37768555, -3.1933594, -0.6669922, 0.8666992, -0.28442383, -0.60009766, 0.6586914, 1.0107422, -0.70654297, 1.0517578, 1.6230469, 0.7548828, 0.49731445, 0.85791016, -3.0605469, 0.27441406, -0.8100586, -0.84228516, -1.96875, -0.59716797, 1.0332031, -1.1591797, 0.87109375, -1.8251953, 1.4453125, -0.9980469, 0.18859863, -3.6835938, 3.4375, 3.3515625, 2.5488281, 3.2460938, -1.6953125, -0.24047852, -0.3359375, -0.01651001, -1.1220703, 1.1308594, -0.2446289, -0.6357422, 2.4980469, 0.54052734, -2.0058594, -0.84472656, 0.5317383, -2.0429688, -0.23425293, -2.2109375, -0.9428711, -1.4443359, -0.10986328, 1.0185547, -0.5205078, 2.6289062, -1.2089844, -0.31958008, -0.23828125, 1.46875, -0.5751953, -0.671875, -0.43139648, 0.24865723, 0.42089844, 0.93847656, 0.64208984, -1.0517578, 0.45141602, -1.7207031, 1.0771484, 0.17114258, 1.1845703, 1.0146484, -0.30810547, -1.0253906, -1.3515625, 1.6308594, 2.2363281, 1.5537109, 3.671875, 0.8642578, -2.3886719, 1.7607422, 0.90966797, -3.546875, 1.6064453, 1.3076172, 0.18322754, 1.5488281, 0.7973633, -4.1679688, -0.73876953, 1.9814453, -0.5488281, 0.5097656, -1.7998047, 0.122558594, 1.8525391, -1.6220703, -0.20666504, -0.088134766, -0.6010742, 1.0654297, 1.9238281, 0.29418945, -1.71875, 1.3320312, 2.4375, -1.5722656, -1.5761719, 1.0888672, -1.8398438, 1.1464844, -1.7734375, 0.11578369, -2.1523438, -0.38989258, 3.3164062, 1.1142578, 1.0097656, 0.27148438, 1.953125, -2.0566406, 0.42944336, -2.4296875, 2.6191406, -1.765625, -0.1328125, 1.0400391, -3.2441406, 0.35253906, -1.8476562, -0.7739258, -0.57421875, 1.5332031, 1.1904297, 0.5336914, -0.99365234, 1.5439453, -1.0488281, -3.1035156, -1.0751953, -0.39916992, 0.10253906, 0.8491211, 1.5888672, -0.8984375, 1.6582031, 0.008308411, 0.36083984, -0.6645508, 0.66796875, -1.375, -0.03857422, -0.14050293, -0.32006836, -1.40625, 0.7739258, 0.87597656, 0.828125, 0.62890625, -1.6738281, -0.8310547, 0.56640625, -1.3037109, 0.37231445, 2.3066406, 1.9833984, 0.039642334, 0.9267578, 1.5517578, -2.875, 2.3105469, -1.9160156, -1.5283203, 1.0146484, -1.1435547, 1.8398438, -0.9243164, -1.2490234, -0.027999878, -0.1381836, 1.1630859, 1.3505859, -1.5605469, -0.8251953, 0.20410156, -0.56591797, -2.3964844, 0.4453125, 0.27368164, 0.8720703, 0.5214844, -1.5751953, -0.21350098, -0.5625, -2.25, 0.82421875, -2.5019531, -0.57421875, -0.95996094, 0.85302734, 1.4746094, 0.17663574, -0.5673828, 1.5, -0.44018555, -1.8408203, 0.7104492, -0.39282227, 4.5117188, 4.65625, -0.5473633, -0.92333984, -2.25, 0.51953125, 2.4101562, 0.90234375, -1.6005859, 0.44018555, -1.1689453, -0.11364746, -0.24951172, 1.3681641, 1.6123047, 0.12719727, 0.015541077, 1.7041016, 3.0117188, -1.4091797, 1.6210938, 0.9301758, 2.2246094, 0.2529297, 4.5429688, 0.46362305, -2.9375, 1.5683594, -2.3125, 1.6435547, -0.008308411, -1.1357422, 0.29248047, -0.24951172, -1.640625, -2.28125, -1.2695312, -2.0820312, 1.3173828, 1.8095703, -1.8779297, -1.2705078, 0.3605957, -0.4189453, 3.7558594, 1.1142578, 1.7373047, -1.8369141, -0.55078125, -0.22363281, 0.10882568, 0.16442871, -3.1640625, 2.4765625, 0.92529297, -1.5888672, -1.9287109, 1.8574219, 0.43847656, 2.2929688, 0.10211182, 1.9345703, 2.1367188, 2.5664062, 2.2363281, 1.3447266, 2.9667969, 1.0537109, -1.4052734, 0.61865234, 1.4326172, 0.7426758, 0.5683594, -1.2324219, 2.15625, -0.58984375, -1.25, -0.17651367, 0.058288574, 1.6767578, -1.8759766, 1.2109375, 1.5107422, 2.8144531, -1.4941406, -1.6142578, -0.06298828, -0.7529297, 0.8730469, -0.5229492, 1.9511719, 1.3652344, -0.18273926, -1.2841797, -0.7578125, 1.2519531, -4.6640625, 0.68603516, 1.3945312, -0.93652344, -1.265625, -1.5898438, 1.859375, 0.49804688, 0.13769531, -0.14111328, 3.9179688, 0.10235596, 0.92285156, -2.3417969, -1.8310547, -0.17419434, 2.6523438, -0.13964844, -0.71972656, 0.59375, -1.5136719, -3.9375, -3.2714844, 3.9394531, 3.0839844, 1.5683594, 1.4599609, -0.40942383, 3.5605469, 0.0026931763, 1.4511719, -0.35375977, -0.8696289, -0.20751953, -2.5605469, 0.113342285, -0.0075149536, -0.2467041, 1.4941406, 0.2758789, 1.0712891, 1.6259766, 0.9013672, 1.0449219, 0.7211914, 1.1152344, 2.3984375, -0.3137207, -1.2138672, 0.28515625, -1.4970703, -2.0996094, -2.328125, 2.8984375, 1.8505859, 0.09063721, 0.15930176, -0.9511719, -0.46435547, -1.9628906, 0.24560547, 0.26391602, -2.703125, -1.0273438, 0.2154541, 1.1318359, -1.4804688, -0.4567871, 2.0605469, 1.3125, -0.29418945, 1.7587891, 2.9667969, -0.36108398, 1.6347656, 0.7602539, 0.79541016, 0.075683594, 0.41430664, 0.1239624, -0.21020508, -1.2587891, 1.6298828, 1.7431641, -0.038024902, -1.0712891, -0.14489746, -1.5302734, -0.4555664, -0.24353027, 1.0625, 0.22583008, -1.125, 2.0722656, -0.30297852, -1.7705078, 1.6894531, -0.8017578, 0.7392578, -2.3867188, -2.2148438, -1.5253906, 0.16015625, -0.9848633, 0.9848633, 3.6171875, 0.6508789, -0.034942627, -2.1230469, -3.3496094, -1.0322266, -2.5898438, 2.2460938, -1.1103516, -1.6494141, -0.96191406, -0.625, 2.2363281, -1.3251953, -0.014709473, -0.4794922, -3.046875, 1.0869141, -0.26660156, 1.5253906, -0.77978516, 0.013046265, 1.7919922, 2.6132812, 1.5292969, 1.03125, 0.36914062, 3.1796875, -0.3515625, -2.2734375, -0.5644531, -0.20056152, 0.12182617, -0.18469238, 0.0848999, 1.6679688, 0.55322266, -0.53222656, 0.39892578, -2.7207031]}, "B004H4WWA6": {"id": "B004H4WWA6", "original": "Brand: Cuisinart\nName: Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red\nDescription: \nFeatures: Portable gas grill with 145-square-inch grilling area and foldaway legs\nCooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish\nPowerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate\nAluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure\nPronounced briefcase-style carrying handle; weighs 13.5 pounds\n", "embedding": [-1.8027344, 1.8535156, 3.0800781, 0.11444092, -0.92578125, -0.6279297, 1.4628906, -1.2226562, -1.0712891, 2.1601562, 1.2958984, -0.44140625, 0.81396484, -0.54345703, 1.4902344, -0.953125, 1.6181641, 0.78271484, 0.41552734, 0.28198242, 1.1435547, 0.7265625, 1.5957031, -0.89453125, 0.4638672, 0.57666016, 4.5859375, -2.9335938, 0.16442871, -2.7539062, 2.171875, -0.6826172, -0.11651611, 0.9160156, -1.5947266, -1.6152344, -0.91259766, 1.1855469, -1.7402344, 0.2800293, 0.3166504, -0.6958008, 1.6962891, -0.8466797, -2.859375, -0.3034668, 0.6855469, 2.4960938, -0.41455078, -0.5839844, 2.1835938, 0.12805176, -0.23999023, -0.20605469, -0.35913086, 1.6816406, -0.37036133, -1.7353516, -0.062316895, -0.08874512, 1.6611328, -0.92333984, -1.3496094, 0.12609863, -1.3662109, -2.4335938, -0.57177734, -0.046844482, 0.6425781, 0.7602539, 2.3242188, 0.37670898, -0.6245117, -0.008033752, -1.1464844, -0.95996094, -2.3710938, 2.5117188, 0.3852539, 0.44604492, -1.1621094, 2.3300781, 1.3720703, -2.3066406, -0.44433594, 0.3684082, -0.123168945, -1.3945312, 1.4609375, 1.9941406, -0.8720703, 3.5351562, -2.5292969, -3.4609375, 1.8232422, -0.12792969, -0.12249756, 1.7939453, 0.62060547, 1.9765625, 0.3725586, -0.68066406, -0.9765625, -0.921875, -0.97265625, -0.69091797, 1.3632812, 0.4428711, -3.5742188, 2.1679688, -1.3935547, -0.75439453, 0.8754883, 0.8442383, 0.41259766, -0.7758789, 0.27172852, 2.1445312, 1.5273438, 0.9892578, 4.4375, -0.50927734, 0.6464844, 0.13513184, -0.72802734, 0.6328125, -1.4902344, 2.7265625, 4.6875, -1.0849609, -1.1503906, 1.2470703, 1.8818359, 0.43432617, -2.4042969, -3.2480469, -0.9926758, -2.953125, -2.78125, 1.5664062, -2.2246094, 0.7861328, 1.5390625, -0.56347656, -3.8085938, -1.2949219, -0.14587402, 1.6152344, 0.24572754, -1.4042969, 1.0458984, -1.1933594, -0.49047852, -0.63378906, 2.3515625, -1.6289062, -1.6435547, -1.4306641, 3.0625, 0.4831543, 3.8691406, -2.3378906, -2.0429688, 0.6020508, 1.4501953, -0.91259766, 0.40649414, 2.6992188, -0.984375, 0.45996094, -0.26000977, -2.1835938, 0.58935547, 0.9863281, 0.51220703, -1.6113281, -0.053009033, 2.0859375, 1.5615234, -1.3564453, -0.47875977, -3.15625, 0.5957031, 1.2646484, 0.8701172, -1.5947266, 0.19995117, -0.4428711, -1.2558594, -2.3398438, 1.6660156, -0.609375, -1.1474609, -0.5415039, 0.8520508, -0.97753906, -0.8378906, -0.796875, 0.059326172, 0.29296875, -0.5566406, 1.1132812, -0.76171875, 0.8173828, -2.5449219, -3.4375, -0.23510742, -1.2910156, 0.7939453, 2.953125, 1.8056641, -1.2851562, 1.9873047, -1.0566406, 0.22241211, -2.1679688, 1.703125, -0.421875, 1.2958984, 1.5800781, -0.65527344, -0.7553711, -0.1418457, 2.4101562, 0.73046875, 1.2285156, 0.0035495758, 0.35791016, -0.73779297, -1.2949219, 3.1367188, -0.47143555, -0.95654297, -0.06149292, 0.07928467, 2.4335938, -0.7817383, 0.24914551, -2.0214844, 0.5332031, -0.61279297, 0.21606445, -1.1298828, -1.3515625, -0.8305664, 0.3779297, -3.0742188, 3.1230469, 2.4628906, 0.72216797, -1.109375, 0.7807617, -0.25439453, 1.4746094, -0.48046875, 1.6796875, -0.26293945, 1.2919922, -0.9033203, -2.6152344, 0.5961914, 1.0126953, 0.44213867, 1.0175781, 1.1835938, -0.8540039, 3.5058594, -0.31518555, -1.3535156, -0.9628906, 1.5664062, 0.63427734, 0.8286133, 0.62402344, 1.3427734, -0.2709961, -1.1494141, 1.9003906, -0.77685547, 1.3730469, 0.6508789, -0.86816406, 1.6162109, -2.3671875, -0.92822266, -0.19506836, 0.9790039, -0.24291992, 0.8779297, 1.1787109, 4.5976562, -0.6660156, -2.5351562, 4.4921875, -1.1074219, -0.024749756, 1.0009766, -0.44921875, -0.85302734, -0.51660156, 2.5898438, 0.37109375, -0.46411133, 2.2617188, -1.2607422, -1.3779297, 0.024124146, -1.4765625, -0.47021484, -0.15856934, -0.69091797, -0.02960205, -2.0820312, 2.0410156, -0.30200195, -1.5117188, -0.42651367, -1.8896484, 1.2529297, 1.0185547, 1.9003906, 1.6601562, -0.8105469, -0.67578125, -0.6723633, 1.2539062, -1.0253906, 0.63916016, 0.7675781, -1.9277344, -0.15612793, 1.0449219, 2.0117188, -3.1386719, -3.3125, -0.48828125, -1.4482422, -3.4023438, 1.2470703, -0.9663086, -1.5390625, 0.6328125, -1.1259766, -0.51708984, -1.2001953, -1.9511719, -0.86865234, 0.8144531, -1.7089844, -1.4628906, -0.15283203, -0.08502197, -0.40454102, -4.703125, 0.3461914, 0.8364258, 0.7324219, 0.47460938, -1.09375, -0.9692383, 0.021087646, -0.041656494, -0.16784668, 0.9033203, -0.2043457, -3.1679688, 0.3071289, -2.1757812, 0.2746582, -2.9492188, -1.0439453, 0.19152832, 0.5913086, -3.5878906, -0.45874023, -0.08129883, -0.38842773, 3.8515625, -1.1376953, 1.4853516, 1.5146484, 0.8774414, 1.4472656, -1.5996094, -2.9941406, -1.453125, 0.5991211, -0.38671875, -2.5136719, -2.5566406, -0.57373047, -0.609375, -0.14172363, -0.84521484, 0.7602539, -2.2949219, 2.0839844, -2.7480469, -0.5600586, -0.8569336, 0.46972656, 0.21533203, -0.81152344, -1.7763672, -0.4387207, -1.6689453, 0.8774414, -0.50927734, 0.89746094, 0.081726074, 1.2783203, 0.35131836, 0.047210693, -0.43701172, -0.31347656, -4.0664062, 1.7929688, -0.16430664, -1.1523438, 1.0966797, -0.37963867, -2.1796875, -2.71875, 0.22143555, 2.34375, 1.8818359, 2.453125, 1.4404297, 0.09680176, 0.80126953, 1.6933594, 0.09265137, 0.093322754, -0.28295898, 3.1835938, -1.9345703, -1.0332031, 0.6323242, 2.7792969, -2.0117188, -1.4804688, 2.3691406, 1.1679688, 1.3798828, 1.2714844, 2.3320312, 0.015312195, -1.1962891, 1.8183594, 1.3066406, 0.87939453, -1.7275391, 0.48510742, -0.62597656, -0.34472656, 2.6523438, -0.40478516, 0.39990234, 2.3457031, 1.0908203, 0.7871094, -1.9492188, 0.7885742, -0.56884766, 0.19580078, -0.029663086, 2.0527344, -0.94189453, -0.37060547, 0.5258789, -1.7060547, -0.47607422, -1.2802734, -0.33081055, 1.65625, 0.2890625, 0.26708984, -0.56396484, 0.7109375, 2.1738281, 0.046142578, 0.18920898, 0.6538086, 0.01864624, 0.8925781, -2.4433594, -2.1445312, -0.9892578, 1.421875, -1.1191406, -2.5507812, 1.6064453, 1.7333984, -1.5185547, -2.0683594, 0.6743164, -0.37475586, -1.2587891, 1.1923828, 0.10412598, -1.7695312, 3.0800781, 0.1508789, 0.37109375, 1.6982422, -0.7265625, -0.4650879, -0.59033203, -0.5595703, 0.3930664, 0.5395508, 0.734375, 0.2692871, -3.8261719, 0.67578125, -2.9824219, -0.29663086, -0.6713867, -1.0927734, -0.8676758, 1.2177734, 1.4775391, 2.3632812, -0.9946289, 2.4628906, -0.5, -1.1083984, 1.0732422, -2.8691406, -0.90234375, -3.5351562, -3.8261719, 1.2148438, -0.8300781, -0.6845703, 3.2988281, -0.07244873, 0.7055664, 3.0136719, -0.29589844, -2.6601562, -2.4277344, -2.25, 0.3701172, -2.0429688, 0.24121094, 0.58154297, -0.27612305, -1.4003906, -1.3574219, -0.1373291, 0.18518066, 1.3134766, 2.3203125, -2.4199219, 1.5029297, -1.6210938, 0.06732178, -0.87353516, 0.046661377, 1.6669922, -1.2148438, -0.10443115, -1.6503906, 0.98828125, 1.2451172, -1.3242188, 0.8725586, 1.9169922, 0.64160156, -1.5585938, 1.3535156, 1.453125, 2.4941406, -0.07788086, -2.4082031, -2.2363281, 0.29516602, -0.053222656, 0.7973633, -0.5522461, -0.73828125, -2.1503906, -0.078125, 1.6972656, 2.0175781, 0.9736328, -0.4111328, -2.0195312, -0.27612305, -0.16955566, -2.5996094, -0.91796875, -1.0566406, 1.0703125, 0.37329102, -1.0595703, -1.5683594, -0.32348633, -0.7480469, -0.92578125, -0.8413086, 3.9453125, 0.4814453, 1.7197266, 2.5859375, -0.3215332, -0.16503906, 1.3398438, 0.13391113, 0.42285156, 1.0214844, 0.025558472, 1.5507812, 0.8017578, 0.7807617, -2.3417969, 0.13623047, 1.09375, -2.0097656, -0.04046631, -2.1796875, 0.8754883, -1.2285156, -1.4375, 0.4946289, -1.1738281, 3.0800781, -0.7133789, -1.2294922, -0.7675781, 0.18005371, -1.0693359, -0.06298828, -0.50390625, 0.9091797, 0.65771484, 0.18640137, 0.9692383, -0.87890625, -0.19177246, -0.5419922, 1.8964844, -0.48364258, 0.35961914, -0.15222168, -1.2998047, -2.4355469, -2.0664062, 0.6855469, 2.390625, -0.25439453, 3.5, 0.16918945, -1.2353516, 1.8496094, 0.72314453, -1.4775391, -1.3505859, -0.28271484, 0.7128906, 0.92822266, -0.70410156, -3.6074219, -0.3774414, -0.120788574, -1.8310547, 0.9946289, 0.0009994507, -0.049468994, -1.5039062, -1.4091797, -1.6865234, -0.59716797, -2.0273438, -1.4755859, -2.0410156, -0.12011719, -1.1298828, 0.4567871, 3.4765625, 0.46704102, 0.12902832, 2.1992188, -0.68652344, 1.7011719, -0.8466797, 0.32299805, -2.5585938, 1, 2.7070312, 1.1572266, 1.0009766, 0.016571045, 0.54052734, -1.5595703, 0.57421875, -2.6953125, 2.9570312, -1.5185547, -0.5600586, 0.5366211, -0.9145508, 1.2929688, -2.9765625, 0.027420044, 0.65722656, 3.2324219, 2.390625, -0.47998047, -2.4082031, -0.4597168, -1.8837891, -3.6054688, -1.0351562, 0.017349243, 0.8769531, -0.2854004, 1.8427734, -0.5878906, 0.020874023, 0.44140625, 0.50341797, -1.5712891, -0.31713867, -1.0400391, -2.0332031, 0.050964355, 0.017669678, -1.3671875, 1.8496094, 2.1640625, -0.15844727, 0.039093018, -1.9199219, -2.0996094, 1.3564453, -2.8378906, -1.1552734, 3.03125, -0.7294922, -0.34545898, -0.64501953, 2.328125, -2.3183594, 1.6513672, -1.0712891, -1.3808594, 0.6591797, -0.08892822, 1.5917969, -0.84228516, -2.2753906, 1.0097656, -1.46875, 3.4589844, 0.72509766, 0.34277344, -0.5595703, 1.8378906, 0.44067383, -0.34033203, 1.2724609, 0.2927246, 0.8769531, 1.8916016, -2.6601562, -0.1204834, -0.7910156, -1.6601562, 0.17895508, -1.1162109, 0.17199707, -0.8383789, 0.73535156, 0.69970703, 0.070373535, -0.97265625, 0.091796875, 1.0332031, -0.18945312, 1.6044922, -1.2207031, 1.8222656, 3.2675781, -0.7109375, -2.1269531, -2.9023438, 1.3466797, 1.1601562, 0.5571289, -0.55322266, -2.0371094, -1.0947266, 0.30371094, -1.2919922, 1.3671875, 2.6171875, -0.7060547, -0.5126953, 1.4746094, 2.8339844, -0.70166016, 0.29858398, 1.9472656, 1.9853516, -1.3476562, 4.4179688, -0.77490234, -1.5527344, 1.3164062, -1.3193359, 1.9873047, -1.2109375, -0.54296875, 0.4831543, -1.7480469, 0.011520386, -2.6660156, -1.9130859, -3.0625, 1.5810547, 1.0185547, -1.1533203, 0.32226562, 3.4863281, 0.034698486, 1.6162109, 1.5029297, 0.28149414, -0.0597229, 1.7246094, -1.0771484, -0.5810547, 1.3349609, -2.8398438, 2.9707031, 2.3828125, -0.92089844, -1.1259766, 4.3945312, 1.5458984, 2.71875, 2.4882812, 1.4287109, 2.703125, 1.3876953, 3.6621094, 0.7861328, 1.9199219, 2.34375, -0.064819336, 0.8989258, 3.8847656, 1.7734375, -0.08660889, -1.5195312, 2.1757812, 0.6689453, -2.2324219, -1.515625, 1.0927734, 0.55078125, -3.1582031, 1.8369141, 1.0488281, 1.2353516, -2.8730469, 0.2770996, -0.54833984, 0.06762695, -0.1694336, -0.7265625, 1.4316406, -1.0097656, 0.053955078, -1.4033203, 0.7558594, 0.6269531, -2.2460938, 0.96728516, 0.45263672, -1.7246094, -1.6464844, -0.53808594, 0.87353516, 0.52246094, 0.69091797, 1.4287109, 2.7890625, 1.4589844, 2.2441406, -1.0087891, 1.7060547, -0.21008301, 2.5664062, -0.010498047, -0.21020508, 1.5634766, -1.9707031, -1.0722656, -2.4082031, 1.3125, 1.2558594, 1.2246094, 0.80029297, -1.4003906, 1.4208984, 1.8769531, 1.4755859, -0.9394531, 2.1386719, -1.0888672, -4.0703125, -1.5683594, -0.19213867, -0.038757324, 3.1679688, 1.0605469, -0.8803711, 3.46875, 1.1132812, 2.7402344, 0.64501953, 0.45385742, 0.953125, 2.3496094, -1.5273438, 0.1817627, -0.9638672, 0.0635376, -0.016052246, 2.7617188, 2.3847656, -0.45703125, 0.18615723, -0.8227539, -0.83740234, 0.5073242, -0.27026367, -0.5786133, -1.6699219, -1.4306641, 0.15710449, 1.9365234, -1.0888672, -1.1230469, 2.4785156, 0.4440918, -1.8896484, 0.6220703, 0.09320068, 0.23327637, 2.3027344, -1.1396484, 0.023590088, -0.9838867, -1.4296875, 1.2744141, 0.09710693, -1.6210938, 0.27026367, -0.48046875, 0.49829102, -0.74853516, -0.50439453, 0.51416016, -0.9291992, 0.2253418, 0.36401367, -2.6796875, -1.8310547, 0.39038086, -0.640625, -0.0077705383, 2.5683594, -0.9145508, 0.22265625, -3.2128906, -1.3398438, 0.6225586, -1.7724609, -0.24658203, 0.765625, 4.1445312, 1.1171875, 1.2666016, -2.96875, -2.9628906, -0.24255371, -0.88671875, 3.2148438, 0.18481445, -1.0546875, 1.1318359, 0.6982422, 1.6767578, -1.03125, -0.54003906, 0.1953125, -0.5878906, 0.66845703, -1.1748047, 1.2226562, 1.8164062, -0.2578125, 0.59521484, 2.0332031, 0.8779297, 0.3527832, 1.6904297, 1.9277344, -0.19812012, -1.9511719, 2.0976562, -1.1640625, 0.2788086, 0.76416016, -1.1044922, 2.3242188, 0.8066406, 0.3876953, -1.3476562, -3.3515625]}, "B00FDOON9W": {"id": "B00FDOON9W", "original": "Brand: Weber\nName: Weber 53060001 Q2000 Liquid Propane Grill,White\nDescription: \nFeatures: One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D\nPush-button ignition and infinite control burner valve settings\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)\n", "embedding": [-0.41601562, 0.59277344, 1.6972656, -0.29467773, -1.8564453, 0.49902344, -0.2956543, -0.9506836, -0.35205078, 1.3359375, 2.9863281, 0.12420654, -0.13439941, -3.5703125, 1.0566406, 0.46240234, 2.7363281, 1.7177734, 0.8442383, -0.14196777, 0.8515625, 0.7373047, 1.3447266, -1.8798828, 1.9472656, 1.6113281, 5.0078125, -5.3789062, -0.9770508, -2.28125, 0.1484375, 0.9560547, 0.13696289, 0.81884766, -2.9667969, -0.12585449, -3.8398438, 1.3300781, -2.7714844, 1.0371094, -0.4008789, -1.9306641, 0.7158203, 0.10028076, -1.3994141, 0.78027344, 0.83935547, -1.2558594, -0.37036133, -0.41967773, 2.7578125, 0.9824219, -0.007499695, 0.87841797, -0.39819336, 1.8574219, -0.3161621, -1.3056641, 1.0722656, -0.40942383, 2.6933594, -0.56884766, -2.9648438, -0.5571289, -0.93115234, -0.21008301, -1.1552734, -0.8623047, 1.7265625, 0.4567871, 4.1132812, -1.9345703, -1.3720703, 0.48217773, 1.3388672, -1.1191406, -1.9892578, 3.2910156, 1.5488281, -0.8208008, -0.9135742, 2.6777344, 0.89501953, -2.140625, 0.10961914, 0.58251953, 0.4428711, -2.1953125, 2.0625, 2.0917969, 0.25463867, 1.3544922, -2.2734375, -4.0117188, 1.3408203, -0.28442383, 1.3925781, 1.0830078, 0.115356445, 0.7158203, -1.3212891, 1.1728516, -1.3564453, -1.9892578, -2.7539062, -0.5986328, 1.1318359, 0.10986328, -3.1660156, -0.87646484, -1.4638672, 0.78515625, 1.3652344, 1.4990234, 1.4697266, 1.109375, 0.79052734, 2.8769531, 0.7421875, 0.8955078, 2.8164062, -1.6943359, 0.29833984, -1.1513672, -0.9560547, 0.5336914, -1.1943359, 0.76660156, 2.7480469, -1.7148438, -1.0234375, 0.21875, 4.140625, 0.70751953, 0.24267578, -0.70996094, -1.2773438, -0.7397461, -1.8398438, -1.0390625, -1.0898438, 0.49487305, 0.81347656, -0.7138672, -4.3242188, -1.3125, 0.37524414, 1.1103516, -0.31762695, -2.0351562, 0.056518555, -1.5361328, -0.89208984, 0.049682617, 1.3046875, 0.49682617, -1.5068359, 0.4387207, 3.625, 1.8261719, 1.5869141, -0.16235352, -0.6196289, 0.64941406, 0.047210693, 0.8251953, 1.8183594, 1.6689453, -0.10900879, 1.7021484, -0.43164062, -0.7602539, -0.26098633, 0.8066406, 1.328125, -1.3378906, -0.14672852, 1.8183594, -0.4831543, -0.4711914, -1.578125, -1.9492188, -0.30615234, -0.8017578, 0.68408203, -0.50146484, -0.62158203, -1.4091797, 1.7597656, -1.8974609, 0.7524414, -0.046020508, 1.4267578, -0.6538086, 0.1977539, -0.6269531, -1.3007812, -2.0742188, 1.0625, -0.09197998, -0.64941406, -1.4697266, 0.9160156, 0.79785156, -0.13500977, -2.359375, -0.30493164, -2.1542969, 2.03125, 1.1669922, 1.9667969, -1.609375, 1.6357422, -1.3544922, 0.06616211, -2.4589844, 2.4570312, -0.028503418, 0.059417725, 2.2167969, -1.7988281, -0.04812622, 0.045440674, 2.1347656, 0.8955078, -0.093688965, 0.99658203, 0.19689941, -3.2558594, -0.5917969, 3.203125, 0.6074219, -0.41503906, -0.3876953, 0.68115234, 2.4589844, 1.2089844, -0.99365234, -0.10015869, -0.6123047, 0.85839844, 0.9873047, -1.9238281, -1.8544922, 0.4091797, 0.38427734, -2.9863281, 2.09375, 0.6816406, 0.22460938, 0.29345703, -0.042388916, 0.75439453, 1.1181641, -0.8051758, 0.9399414, -1.9052734, 1.2929688, 0.17858887, -3.375, 2.1035156, 0.4963379, -0.20812988, -0.65185547, 1.2128906, -1.4169922, 2.4589844, 2.0976562, -1.6875, -0.89404297, 0.33642578, 0.6850586, 0.28466797, -0.84472656, 0.9267578, 1.5751953, -1.9941406, 1.9433594, 0.12988281, 0.82666016, 0.9453125, -0.94970703, 1.6386719, -2.9042969, -1.3535156, 0.8598633, 1.0439453, -1.0332031, -2.9882812, 0.14172363, 3.3046875, 0.33520508, -2.6582031, 3.0761719, -2.4140625, 0.796875, 2.2265625, -1.1191406, -1.0927734, 0.8691406, 2.3339844, 0.2286377, 0.6904297, 0.95458984, -0.29003906, -1.8349609, 0.8198242, -3.9238281, 1.2207031, 1.8974609, -0.67041016, -1.2421875, -2.2597656, 1.6416016, -2.9765625, -1.6171875, 1.7705078, -4.0273438, 1.515625, -1.6601562, 2.0429688, 0.43920898, -1.2675781, -0.390625, -1.6679688, 0.030166626, -1.2158203, 1.0527344, 0.5488281, -2.3730469, -0.9663086, -0.94433594, 0.22814941, -1.9814453, -1.6523438, -1.8720703, -0.77001953, -2.6230469, 1.5039062, -1.1757812, -0.4074707, 2.4199219, -3.3066406, 0.90722656, 1.1113281, -3.3691406, -0.79003906, -1.5419922, -1.3125, -1.1142578, 0.6591797, 1.1494141, -2.2460938, -3.9042969, 0.59277344, 0.13806152, 0.44384766, -0.8339844, -0.87353516, -0.39648438, 0.73876953, -0.8730469, -0.65478516, 0.78466797, 1.3164062, -0.60058594, 1.6738281, -1.9365234, 0.17321777, -2.1621094, 0.7583008, -0.07562256, 1.3203125, -3.3515625, -1.8339844, -0.44384766, -0.95996094, 3.9082031, 0.6074219, 1.7255859, 0.49780273, 0.71533203, 1.1611328, -0.6333008, -1.765625, 1.6416016, 0.81152344, -1.8251953, -1.4257812, -2.9238281, -1.0410156, -2.7714844, 0.49853516, 0.44702148, -0.20495605, -0.90185547, -0.8120117, -1.2060547, -0.8334961, -0.13574219, 0.16772461, -0.9477539, -1.7285156, -2.8027344, -0.62841797, -1.4716797, 1.2636719, -1.1035156, 1.5478516, 0.7939453, 1.6210938, 2.21875, -0.5332031, 1.1796875, -1.25, -4.46875, 4.2148438, 0.7368164, -2.6445312, 1.3740234, -2.6640625, -2.4804688, -1.6425781, -0.33007812, 2.1113281, 3.0410156, 2.0957031, 1.7714844, 1.5224609, -0.52490234, -1.3623047, -0.097473145, -1.1767578, 0.7138672, 2.2519531, -3.125, -2.2089844, 0.7470703, 1.8046875, -3.1523438, -1.4189453, 2.34375, 1.8681641, 2.2363281, 2.7695312, 1.5996094, -0.40795898, -0.20092773, 1.2021484, 1.4228516, -0.7314453, -0.07879639, -0.14025879, 1.4375, -0.22314453, 1.3095703, 2.3242188, 0.8046875, 1.6552734, 3.1601562, 1.9179688, -0.7001953, -0.46655273, -0.21594238, 1.3466797, 0.13623047, 1.8466797, -0.8588867, 0.64501953, -0.8857422, -1.1464844, -0.10668945, -0.42041016, -1.2119141, 2.7988281, 0.84375, -0.7495117, 1.4160156, 2.0429688, 1.2148438, -0.06939697, 0.18981934, -0.8515625, -0.35791016, 2.3945312, -0.38085938, 0.38720703, -1.1484375, 1.0527344, -0.85058594, -2.09375, 0.0657959, 2.8945312, -1.9931641, -1.8925781, 0.22558594, -1.3945312, -0.49902344, 1.9599609, 0.42163086, -0.59375, -0.02558899, -2.0957031, 1.3544922, -0.24389648, -1.2421875, -0.85302734, -1.3173828, 1.0478516, 0.79589844, 2.2167969, 2.2890625, 0.7114258, -3.1132812, -0.06530762, -3.609375, -2.0546875, 1.2636719, -2.1679688, -0.6508789, 1.7421875, 0.18896484, 1.5703125, 0.44140625, 2.4628906, -1.4023438, 0.5595703, 1.3789062, -1.9345703, -0.5878906, -3.6269531, -4.0273438, 0.14941406, -1.7753906, -0.28881836, 1.3320312, 0.062927246, 0.22973633, 1.7998047, 0.84277344, -1.7138672, -0.7753906, -2.0644531, 0.37280273, -0.81591797, 1.8466797, 0.26464844, -0.7998047, -2.2011719, -2.2089844, 0.45996094, -0.2376709, 0.6977539, 1.9248047, -4.0273438, -0.021331787, -1.9765625, -0.69091797, -1.4794922, 0.20532227, 1.6386719, 1.2167969, -0.22216797, -2.0625, 1.6142578, 1.3417969, 0.11505127, 2.796875, 2.1308594, 0.03744507, -3.8066406, 0.19970703, 1.8955078, 2.9023438, -0.60595703, -1.625, -0.71972656, 1.1845703, -1.1728516, 0.50927734, -0.0869751, 1.0751953, -1.2353516, 0.7583008, 1.7294922, 1.6289062, 0.69091797, 0.2553711, -2.6113281, 0.6660156, -0.24206543, -2.4492188, -2.0996094, 0.38549805, 1.09375, -1.9765625, -0.11053467, -1.8330078, 0.3623047, -1.0136719, -0.89941406, -3.6152344, 3.4667969, 4.3007812, 1.9853516, 2.6523438, -1.1787109, 0.73291016, -0.8535156, -0.47387695, 0.45166016, 0.06451416, -0.8383789, -0.05947876, 2.7363281, 1.0996094, -1.5917969, -0.2919922, 1.0888672, -1.7460938, 0.20373535, -2.4824219, 0.65625, -0.7705078, -0.02218628, 0.4946289, -0.6855469, 2.2167969, -0.3894043, -0.22717285, -0.57373047, 0.7939453, -1.5126953, 0.24450684, 0.29003906, 0.1517334, 0.1373291, 0.921875, 0.98095703, -0.55078125, -0.19396973, -0.84716797, 0.5810547, -1.3261719, 0.08459473, -0.1217041, 0.82714844, -0.5493164, -0.9370117, 1.4267578, 1.5224609, 1.2011719, 2.828125, 2.28125, -1.7568359, 1.4804688, 1.4648438, -1.8144531, 1.8095703, 1.1699219, -1.1240234, 2.8769531, 0.50146484, -4.0429688, -0.4650879, 1.125, 0.028823853, 0.9560547, -1.1748047, -1.1162109, 1.4560547, -1.9101562, -1.0019531, -0.11407471, -0.9199219, 0.73095703, 0.5102539, -0.0546875, -1.2041016, 1.2919922, 2.7773438, -1.2988281, -1.6542969, 0.60595703, -1.3105469, 0.16906738, -1.0605469, -1.3632812, -1.8925781, -0.9716797, 2.6816406, 0.87402344, 1.2373047, 0.46118164, 1.890625, -0.8857422, 0.036010742, -1.3271484, 2.0546875, -2.5, -0.9526367, 1.0126953, -3.9023438, -0.17663574, -2.2910156, -0.75341797, -0.5805664, 1.4101562, 1.7783203, 0.65283203, 0.26220703, 1.6875, -2.2089844, -3.7890625, -0.89160156, -0.1619873, 0.37646484, 0.6660156, 1.4833984, -1.0068359, 0.84375, -0.7402344, -0.025436401, -1.0244141, 0.36694336, -0.9746094, -0.16992188, 0.3388672, 0.18395996, -1.3808594, 0.296875, 1.1474609, 1.7685547, 0.27148438, -1.3583984, -0.60839844, -0.051971436, -0.5810547, -0.27612305, 2.5996094, 1.9931641, -0.7167969, 0.44189453, 1.7392578, -3.7011719, 2.8144531, -2.0664062, -1.7109375, 1.0009766, -0.6152344, 0.52441406, -1.0576172, -0.76220703, 0.36938477, 0.109802246, 2.1191406, 1.40625, -0.79833984, -1.3574219, -0.7236328, 0.8457031, -0.07647705, 0.35424805, 0.8442383, 0.36791992, 2.5761719, -1.9912109, -1.015625, -1.8066406, -2.4023438, 0.8696289, -2.3847656, -1.2011719, -1.3886719, 0.36450195, 1.4882812, 0.5878906, -1.0224609, 2.0996094, -0.9213867, -1.2148438, 1.2011719, -0.51904297, 4.921875, 3.8691406, -1.4033203, -0.59033203, -1.8466797, 0.9506836, 1.5703125, 0.31835938, -0.39990234, -0.5761719, -0.116882324, -0.48168945, -0.001364708, 1.7255859, 1.2080078, 1.1005859, -0.08679199, 1.7294922, 3.4785156, -1.671875, 1.8007812, 0.6484375, 1.5058594, -0.2668457, 3.8574219, 0.80566406, -2.6523438, 1.2441406, -2.6523438, 1.9511719, -1.0654297, -1.4599609, -0.35302734, -0.7626953, -1.5546875, -2.2167969, -1.6220703, -1.6660156, 2, 1.4365234, -2.4199219, -0.83447266, 1.4199219, -0.10119629, 2.6269531, 1.9365234, 2.4824219, -1.6337891, 0.58984375, 0.43188477, 0.10357666, 2.3984375, -4.2929688, 1.9648438, 1.1503906, -0.5991211, -2.3984375, 1.4726562, 1.0019531, 2.5605469, 0.57177734, 2.3203125, 2.1679688, 1.8466797, 2.15625, 1.140625, 3.0175781, 1.3759766, -1.0136719, 1.6181641, 1.765625, 0.5732422, 0.87353516, -2.0898438, 1.2890625, -0.93310547, -0.77490234, 0.10736084, -0.6464844, 0.9121094, -1.5634766, 0.34301758, 0.08947754, 1.6552734, -0.72998047, -0.5996094, 0.74072266, 0.61083984, 0.24157715, -0.90722656, 2.7753906, 1.5195312, 0.7426758, -0.18493652, -0.46899414, 1.3847656, -4.3242188, 1.4589844, 0.33935547, -1.4238281, -0.73828125, -2.5546875, 2.0351562, 0.17224121, -0.49267578, -0.04345703, 3.6894531, 0.9873047, 0.8652344, -1.5849609, -0.76904297, 0.47314453, 3.6035156, -0.17529297, 0.46069336, 0.12756348, 0.2854004, -4.3242188, -3.9375, 2.9667969, 1.9941406, 0.9526367, -0.121032715, -0.7548828, 3.4472656, -0.69384766, 0.12683105, -1.2216797, 0.7373047, -0.61572266, -3.9863281, 0.8574219, 0.037109375, -0.39257812, 1.2216797, 0.3701172, 0.9350586, 1.4306641, 1.3125, 1.4199219, 0.8515625, 0.77490234, 2.1210938, 1.265625, -2.0722656, 2.2910156, -0.1517334, -1.5859375, -1.1523438, 2.6210938, 1.2080078, -0.3996582, 0.27172852, -1.1308594, 0.1574707, -1.5302734, 0.12420654, -0.13195801, -2.21875, -0.36132812, 1.0859375, 1.2578125, -1.3867188, -0.66015625, 2.9921875, 2.2167969, -0.81884766, 0.5541992, 2.8613281, -0.44189453, 1.25, -1.0419922, 0.8613281, -0.2763672, 1.3896484, 0.6230469, 0.18847656, -1.2294922, 0.6982422, 1.6914062, 0.32836914, -0.83691406, -0.21130371, -1.5712891, -1.3691406, -0.80029297, 0.69091797, 0.5131836, -1.6962891, 3.125, -0.9970703, -0.87841797, 1.7519531, -0.24926758, -0.41552734, -2.2109375, -2.0273438, -1.1152344, 0.04647827, -0.9272461, 2.6757812, 3.9414062, -0.38867188, -0.0026187897, -1.8398438, -2.9453125, -1.6552734, -2.8125, 2.4863281, -1.0107422, -1.6181641, -1.3310547, 0.0259552, 1.25, -1.0341797, -0.026794434, 0.2685547, -1.8681641, 1.0253906, 0.27246094, 0.2927246, -0.9897461, -0.21350098, 1.7890625, 2.9902344, 0.62939453, 0.7597656, 0.23791504, 2.8847656, 0.16235352, -2.2539062, 0.24731445, 0.8647461, -0.4272461, -1.421875, 0.9760742, 2.4277344, -0.33618164, -0.59375, -0.05810547, -3.2265625]}, "B083QN4Z6H": {"id": "B083QN4Z6H", "original": "Brand: Generep\nName: Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack\nDescription: \nFeatures: Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding.\nThis propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter.\nHigh-quality brass construction gas gauge meter, you'll never have to worry about leaks or running out of propane again.\nMonitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nComing With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.\n", "embedding": [-1.9990234, 1.9482422, 1.9238281, 1.7734375, 0.42871094, 0.36767578, 1.1679688, -1.9824219, 2.8535156, 0.1829834, 1.4580078, -0.1315918, 1.9853516, -1.1015625, 1.6171875, 0.9555664, 0.85253906, 1.5146484, 0.43017578, 2.2617188, 1.6386719, 0.5751953, 1.9267578, -0.81347656, 2.0839844, 0.25512695, 2.7265625, -3.0820312, 0.07476807, -0.5654297, 2.3007812, -0.5161133, 0.46655273, 0.8535156, -1.6660156, -1.7324219, -0.26049805, -0.98535156, -3.703125, -0.84033203, -1.6113281, 0.9770508, 1.4335938, 0.0041007996, -1.0078125, -0.99072266, -0.1965332, 0.3305664, -1.0214844, -0.63671875, 1.1621094, 2.5488281, -1.0185547, -0.3071289, 0.33081055, 0.69140625, 1.6591797, -0.76464844, 1.1396484, 2.1660156, 1.3173828, -0.78027344, -2.3964844, -0.42919922, -0.15710449, -0.0960083, 0.050994873, -0.7651367, 1.2255859, 2.1386719, 2.2792969, 0.54785156, 0.72265625, -1.2070312, -1.4628906, -0.19116211, -0.2253418, 0.671875, 1.6005859, 1.3251953, -1.6728516, -0.03778076, 0.21313477, -2.4375, -0.025817871, -0.30419922, -0.4091797, 0.9091797, 0.5810547, 0.45898438, -1.0263672, 2.328125, -2.7890625, -3.2636719, 1.8027344, -0.27783203, -0.47583008, 0.1459961, 1.40625, 2.3789062, -1.2695312, -0.6845703, -0.8339844, 1.8740234, -3.2285156, -0.8720703, 0.7919922, 0.9711914, -3.1542969, 0.43847656, 1.0498047, -0.20629883, 1.6455078, -0.72753906, -0.4243164, -0.7397461, 0.24121094, -1.5712891, 2.7597656, 2.4335938, 3.8242188, -0.8808594, 0.47338867, 0.6923828, -0.6948242, 0.8989258, 0.75878906, 0.79833984, 3.6621094, 0.07183838, 1.7285156, 0.09716797, 1.2587891, -0.8017578, -1.1494141, -1.0605469, -1.6621094, -3.9316406, -2.1054688, -1.3564453, -3.6542969, 0.4399414, -0.73046875, 0.7597656, -2.9121094, 1.2695312, -2.7285156, 1.8603516, 1.9199219, -0.59277344, 3.7851562, -2.1171875, -0.84814453, 1.1640625, 1.65625, 2.3515625, -1.2900391, -2.7441406, 3.9648438, 2.2109375, 1.0078125, -1.6767578, -1.8173828, 0.07751465, 0.75878906, -0.6430664, -0.94970703, 0.7290039, 0.19970703, 0.7524414, 0.72216797, -1.6181641, 0.4951172, -0.06518555, 0.515625, -2.4199219, 0.94091797, 3.2070312, 2.4277344, -1.0644531, -2.7285156, -2.0097656, -1.0634766, -3.484375, 2.0234375, 0.38842773, -1.3085938, -0.6352539, 1.2783203, -2.0175781, -2.2792969, 1.6689453, -0.4716797, 1.3779297, -0.58251953, -3.1347656, -4.265625, -1.5380859, -0.36035156, 1.2392578, -0.7553711, -1.1503906, 1.2050781, 0.045166016, -0.36987305, -2.8398438, 2.3984375, -1.7265625, 0.9663086, 0.92089844, 0.7871094, -1.5351562, 3.3945312, -0.20166016, 0.50634766, -2.5507812, 0.4963379, 1.9619141, 0.39941406, 1.9785156, -0.55810547, -0.38623047, 2.3808594, 0.8720703, 0.97509766, 1.2851562, 0.42114258, 0.17358398, -2.7382812, -1.1787109, 2.9199219, 0.39916992, -1.0830078, -1.7802734, 0.43432617, 2.6875, 0.0084991455, -1.3564453, 0.26489258, -0.12408447, -0.73828125, -1.6416016, -1.8691406, -2.9589844, -0.47094727, -0.70654297, -0.94140625, 0.7324219, 2.0332031, -1.7373047, 1.7724609, -0.5854492, -1.6728516, -1.2460938, -2.7949219, 1.5898438, 1.1123047, 2.1308594, -0.55078125, -2.1699219, 2.4707031, 1.4619141, -0.6538086, -0.13659668, -0.28637695, 0.5283203, 0.6958008, 0.45776367, -1.1552734, 0.3371582, 1.5527344, 0.69189453, -0.1081543, -0.28857422, 3.5429688, 1.6796875, -1.4765625, 3.7949219, 0.042175293, 0.06161499, 1.4052734, -1.0488281, 1.2675781, -3.3476562, 1.46875, 1.5195312, 0.9550781, -0.21569824, -2.3300781, 1.2851562, 4.3359375, -2.1601562, -2.3632812, 2.9492188, 1.4003906, -0.18310547, 1.6210938, -0.5385742, -1.4853516, -0.83691406, 1.0195312, 1.2451172, -1.5234375, 0.40527344, 2.7324219, 0.15551758, 0.1270752, -0.0670166, 0.31860352, 0.41625977, -1.2822266, 1.3955078, -2.7792969, 1.5839844, -0.15466309, -0.78466797, 2.8769531, -3.5390625, -0.041534424, 2.2109375, 1.3808594, 3.3945312, 0.6196289, -1.7021484, 0.15893555, 2.7011719, -1.9550781, -0.4658203, -0.6088867, 2.1210938, 2.421875, -0.6308594, 0.68896484, -0.41455078, -1.7460938, 0.9736328, -2.7382812, -3.3183594, -0.7915039, -1.7841797, -1.7011719, 0.6279297, -1.2285156, 3.2402344, -0.24121094, 1.2021484, 0.35864258, 0.4152832, 0.12548828, -2.8886719, 0.59765625, 3.2871094, -0.8544922, -2.3828125, 0.38061523, -0.19067383, -0.45239258, 1.7939453, -1.0498047, 0.90185547, -1.6826172, 1.4736328, 1.2646484, 1.1455078, -0.9873047, -1.5761719, 1.9394531, -2.9121094, 0.04220581, -3.2558594, 1.9414062, -1.1455078, 0.85058594, -2.8261719, -1.4931641, 0.3466797, -0.9716797, 3.0371094, -0.013893127, 1.7646484, -2.2265625, 1.1210938, 0.87939453, -0.9379883, -2.6542969, -0.69970703, 0.3708496, 0.21557617, -2.109375, -2.7636719, 0.38720703, -0.0390625, 0.6333008, 0.6464844, -0.80810547, -2.2167969, 0.63378906, -0.5463867, 0.30395508, 0.0064201355, 2.0234375, -0.121520996, -1.5351562, -0.8876953, 0.38208008, -0.8027344, -2.4980469, -2.2617188, 1.5751953, 0.70166016, -0.08782959, -0.31811523, 1.4023438, 2.2324219, -1.34375, -3.3515625, 0.9692383, 2.1328125, -0.31591797, 2.2050781, -1.5136719, -1.2548828, -1.6142578, -0.52734375, 4.03125, 2.4101562, 1.7978516, -1.3066406, 0.75341797, 0.03527832, 0.23486328, -0.34228516, -1.21875, -0.6123047, 2.0136719, -2.0664062, -2.4980469, -0.9970703, 2.1757812, -2.2226562, -1.8496094, 1.6787109, 1.3691406, 2.9921875, -0.0826416, -1.0224609, 0.9746094, -1.0625, 1.7744141, -0.040802002, -0.86572266, -0.39233398, -0.84228516, 0.3972168, -3.3613281, -0.84814453, 1.8417969, 0.06359863, 0.61083984, 0.30419922, 0.6323242, -0.9785156, -0.09240723, -0.042419434, 0.53515625, -0.1763916, 0.92529297, -0.3293457, 0.5908203, 0.5180664, 0.6821289, 2.5996094, -2.1953125, -1.2197266, 0.6972656, 1.6171875, -1.4433594, -0.43017578, -2.0195312, 0.70654297, 0.6479492, -0.77734375, 0.24194336, 1.1230469, 1.1806641, -0.7607422, -1.2861328, -2.0273438, 0.41674805, -1.5888672, -0.63623047, 0.2454834, 0.39111328, -2.625, -2.4921875, 0.6040039, -0.80322266, -1.9833984, 1.1279297, 0.7338867, -0.03387451, -0.23913574, -0.8120117, 1.2177734, 1.6357422, -0.89453125, -1.0546875, -1.5849609, -1.7412109, -0.38232422, 0.30419922, 1.65625, -0.20056152, -2.7929688, -0.12121582, -2.7480469, 1.8710938, 0.6821289, 0.87597656, -2.1152344, 0.76464844, 1.0683594, 2.6875, -0.5449219, 1.9580078, 0.69384766, 0.21435547, 0.94970703, -2.4960938, -0.64404297, -1.2861328, -5.0117188, 1.9638672, -2.0117188, -0.22570801, 1.1689453, 0.9614258, -0.15112305, 1.1279297, 1.5576172, -3.5, -2.0605469, -0.5498047, 1.9570312, -1.4296875, -0.96240234, 1.8691406, 1.9775391, -0.15332031, -2.3769531, -1.8994141, -1.8701172, -1.1933594, 0.1850586, 2.0644531, 1.3154297, 0.59814453, 0.3034668, -1.0683594, -0.26464844, -0.6791992, -0.6352539, -1.5205078, -2.9199219, 2.4257812, 1.1269531, 0.28442383, -1.5039062, 3.2597656, 3.0722656, -0.8574219, 0.47631836, -1.7861328, 2.2792969, -0.0859375, -0.26586914, -0.17370605, -1.3828125, 1.2207031, -0.5751953, -0.8930664, -1.3447266, -1.2236328, 0.49072266, 0.69628906, 1.9492188, -0.14587402, -0.74560547, -2.1933594, 0.6645508, 2.6035156, -1.1230469, 0.36669922, -1.6904297, -0.8935547, -0.75, -0.82958984, -1.6728516, -0.6220703, -0.06137085, -0.84228516, -5.2578125, 2.9960938, 2.4960938, 1.0224609, 0.9272461, -0.08288574, 0.11462402, 1.2832031, 1.7382812, -0.9038086, 0.19824219, -0.2980957, 0.123168945, -0.8959961, 2.2773438, -1.2099609, -1.3623047, 2.1035156, -0.8310547, 0.32592773, 0.16796875, 0.2998047, -2.0976562, -0.14953613, -1.2705078, -0.54248047, 3.2207031, -1.4179688, 0.075805664, 1.9326172, 0.44311523, -1.1767578, 1.0976562, 1.59375, 3.140625, 0.24377441, 0.42871094, 0.95166016, 0.6142578, 1.2753906, -0.6035156, 0.055267334, -1.1435547, 0.92871094, -0.005584717, 0.55810547, -1.9199219, 0.4699707, 1.1933594, 2.6582031, 0.40039062, 1.7050781, 1.4335938, -1.4453125, 2.2402344, 1.59375, -0.6347656, -1.2880859, 0.24853516, -0.0063819885, 1.1386719, -0.87060547, -1.7001953, -0.4855957, 1.2705078, 0.66064453, 2.9980469, 1.8125, -0.7192383, -2.0449219, -2.5859375, -2.9726562, -0.3544922, -0.9667969, 0.7133789, -0.018630981, -0.49121094, -1.2441406, 0.7866211, 1.0400391, 0.19018555, 0.52734375, 0.3154297, -0.26391602, 0.56591797, -0.5024414, 0.44091797, -1.9902344, 0.4465332, 0.7446289, 1.4257812, -0.9116211, 1.4453125, 2.6035156, -1.6230469, -2.484375, -0.48413086, 2.1835938, -0.6767578, -1.6845703, 1.9667969, 1.5820312, 0.49658203, -0.32299805, 0.2770996, -1.5205078, 0.5361328, 3.6230469, 0.9555664, -1.6523438, 0.60498047, -1.3720703, -4.890625, -0.50878906, 1.5380859, 0.56103516, 0.6308594, -1.4589844, -0.5131836, 0.8486328, -1.15625, -0.9370117, -2.7070312, 2.9121094, -1.7275391, -0.74560547, -1.2978516, 1.1171875, -0.73583984, -1.2001953, -1.1328125, 1.0742188, -2.0332031, -2.9121094, -3.0097656, -1.0410156, -1.5390625, -1.1962891, 0.14294434, -0.61865234, 0.9267578, 1.2890625, 1.6298828, -1.3857422, 1.4833984, -0.63671875, -0.28979492, 2.0371094, -0.4519043, 0.7260742, 2.9414062, -0.024414062, 1.3076172, 2.8125, 1.7314453, -2.2265625, -0.87939453, 0.37451172, 0.74365234, -0.66064453, -1.1650391, -0.1829834, -0.9423828, 2.9492188, -0.097595215, -0.69873047, -1.4873047, -2.3886719, -3.2246094, -0.13574219, -1.3945312, 0.8149414, -1.0234375, 1.0341797, 1.7021484, -0.31860352, 0.1373291, -0.19042969, -0.46289062, -1.7285156, 1.3398438, -0.875, 1.7792969, 0.6689453, -1.4589844, -3.3613281, -2.3476562, 1.2255859, 1.7773438, -0.9326172, 0.71777344, 0.0871582, -0.62402344, 1.7666016, -0.47216797, 2.1171875, -0.32910156, 0.14196777, -1.9394531, 0.47338867, 2.4746094, -0.84765625, 0.43115234, 1.0537109, -1.3603516, -0.30322266, 2.4863281, 0.7573242, -1.9082031, 1.3701172, -3.4453125, -0.24536133, -1.0566406, -0.9926758, 0.96972656, -3.2871094, 0.0758667, -0.3630371, -2.3046875, -1.9199219, 2.2988281, -0.10675049, -1.0996094, -0.28930664, 2.6894531, -0.96533203, -0.6411133, 2.0703125, 0.38793945, -2.3710938, -2.03125, -1.2763672, 1.1171875, 2.3769531, -3.5019531, 0.2619629, 2.4316406, 2.3457031, -0.2084961, 1.3261719, -0.79003906, 2.7148438, 0.59277344, 2.3984375, 4.6484375, 0.484375, 1.4326172, 1.2148438, 0.8618164, 4.0820312, -1.7304688, 1.6416016, 0.90722656, 0.61816406, 0.7192383, -1.8408203, -0.2849121, -1.9970703, 0.3540039, 0.32373047, -0.93115234, 1.4746094, -2.5488281, 0.040222168, -0.5102539, -0.07922363, -3.2480469, 0.07220459, -0.671875, 0.49951172, -2.6484375, 1.8271484, 1.6728516, 0.061157227, 0.6958008, 0.31982422, -0.21594238, 2.2617188, -1.7070312, -1.2080078, -1.2431641, -1.1914062, -0.046936035, 3.0566406, 0.047210693, 0.21447754, 0.47558594, 0.7753906, -1.9853516, 0.29589844, 1.3203125, -1.5175781, 0.7373047, -0.5229492, 1.6728516, 1.0683594, -0.5878906, 3.7480469, -0.1459961, 0.07385254, -3.3554688, 2.7480469, -1.3720703, 1.2099609, -1.0488281, -5.2460938, 1.1220703, -2.2460938, 1.4335938, -2.2226562, 1.4355469, -1.1103516, -1.5, 1.6855469, 0.92041016, -1.9013672, 1.8779297, 1.4306641, -2.7148438, 0.28100586, 2.3359375, 1.2558594, -0.61572266, 0.6323242, -0.15368652, 0.73095703, -1.7705078, 2.4492188, -1.4414062, -0.640625, -2.2929688, 1.3525391, 0.23474121, 0.49023438, -1.6660156, 0.025177002, 0.29882812, 1.0712891, 0.09729004, 1.1660156, -2.3847656, 1.3339844, 0.7944336, 0.025405884, 0.96875, 0.9458008, 0.76708984, 2.0234375, -2.4414062, -1.8642578, 0.49829102, -0.86621094, 1.2548828, 0.7636719, -1.8857422, -1.8134766, 0.0056152344, 1.2783203, -1.7138672, 1.3173828, 0.15185547, 1.3017578, -0.8261719, -2.4355469, -0.13378906, 2.1875, -0.18493652, -0.23388672, -1.1435547, -1.2275391, -0.32641602, -0.91015625, -2.0195312, 1.5, 2.9277344, -0.4309082, 0.33691406, -0.59228516, -0.6386719, 2.8710938, -1.6923828, 0.76953125, 0.66796875, 1.6894531, 1.4394531, 1.3310547, 0.17260742, -1.9277344, -1.4453125, -3.1972656, 1.6064453, 0.7661133, -0.25073242, 0.8720703, 1.6533203, 2.1972656, -0.6357422, -0.56884766, 0.6166992, -1.4472656, 0.83251953, -2.9609375, 1.4023438, 1.1435547, 0.4020996, 0.95410156, 2.2285156, 1.2167969, -1.6650391, 0.26513672, 2.4140625, -1.0332031, -0.49267578, 0.07086182, -0.203125, -0.3232422, 0.36206055, 3.2421875, 3.3125, 0.04006958, -0.9121094, 0.3125, -0.7661133]}, "B07YBLSF7M": {"id": "B07YBLSF7M", "original": "Brand: Monument Grills\nName: Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer\nDescription: Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.\nFeatures: \u2605STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance\n\u2605STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking\n\u2605LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space\n\u2605TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation\n\u2605BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.\n", "embedding": [-3.109375, 0.7290039, 1.0839844, 1.3134766, -0.58740234, 0.96240234, 0.11462402, -0.6982422, -0.17468262, 1.4658203, -0.5751953, -1.1972656, -1.4804688, -2.3730469, -0.11004639, 1.6201172, 0.70166016, 0.94189453, 1.3779297, 1.0400391, 0.5888672, 0.033050537, 1.2412109, -1.6220703, 0.88623047, 0.18444824, 2.9511719, -4.046875, 0.9560547, -0.94189453, 3.0527344, 0.43969727, 0.17919922, 1.3876953, -2.3964844, -1.3105469, -3.1855469, 0.59765625, -2.203125, -0.7211914, 0.390625, -0.44799805, 2.6640625, -0.54248047, -2.0292969, -0.088134766, 0.87890625, 0.9848633, -1.4599609, -1.9160156, 3.4042969, 1.0410156, 0.8798828, 0.7348633, -0.38671875, 0.82714844, 2.6230469, -0.29858398, 1.5410156, 0.69628906, 1.3642578, -0.9291992, -2.2753906, 0.24157715, 0.08251953, -1.5712891, 0.013877869, -0.40722656, 0.5683594, -1.8574219, 2.7441406, 0.07232666, -0.32641602, 2.046875, 1.7958984, -2.2363281, -1.7978516, 1.4179688, -1.2363281, -1.6621094, -1.578125, 4.2734375, 0.9370117, -0.046417236, 0.37719727, 1.4375, -1.0517578, -0.30273438, 1.4472656, 0.93603516, -1.2900391, 2.5351562, -2.1132812, -2.6171875, 1.7880859, -1.0751953, 1.6347656, 0.6152344, -1.1796875, 0.55126953, -0.71435547, 1.5292969, -2.5527344, 0.34570312, -3.1015625, -2.125, 1.9912109, -0.64404297, -0.94091797, 0.039367676, -0.6245117, -1.4765625, 1.3798828, 0.69091797, 1.1962891, -0.41625977, -0.009605408, 2.3339844, 1.9628906, 2.3925781, 3.34375, 1.2431641, 0.7167969, 0.21032715, -0.75634766, -0.7504883, -1.3320312, 3.4414062, 3.9277344, -2.9316406, -0.22473145, -1.5302734, 3.3183594, -0.099243164, -2.5917969, -2.0800781, -0.36157227, -1.453125, -4.4648438, 0.46533203, -1.0849609, 2.1953125, 1.8125, -0.28320312, -4.0390625, -0.9160156, -1.5498047, 1.2207031, -0.25805664, -0.23937988, 0.36279297, -1.6806641, -0.2697754, -1.0400391, 2.2089844, -1.8925781, -0.23156738, 0.18261719, 4.765625, 1.6464844, 2.8691406, -2.0410156, -1.2509766, 0.0791626, 2.0585938, -2.671875, -1.7001953, 2.5195312, 0.96484375, 1.6201172, 0.2253418, 0.55126953, 0.9785156, 0.31176758, 2.0097656, -1.4423828, -1.1005859, 2.3203125, -0.017105103, -1.9404297, -1.2177734, -3.6679688, 0.80810547, -0.9667969, 0.20495605, -2.6484375, -0.28100586, 0.15600586, -0.5522461, -0.55810547, -0.40551758, 1.6621094, -0.4741211, 1.7333984, 0.20922852, -1.5322266, -3.1464844, -2.4511719, 0.58154297, 0.28979492, -0.6816406, -0.7294922, -1.9306641, -0.22558594, -1.3789062, -3.125, -0.63623047, -1.0966797, 0.57958984, 0.6455078, 1.2246094, -1.5771484, 1.3710938, -0.87939453, 0.16564941, 0.031311035, 2.640625, 0.59716797, 1.4931641, 2.1816406, -0.78808594, -0.8808594, 0.17565918, 3.1582031, 0.5361328, 2.3808594, -0.47192383, -0.70751953, -1.6914062, -1.6611328, 2.1757812, -0.51416016, -0.032073975, 0.40844727, 0.5083008, 3.5917969, -0.030471802, -0.3166504, -0.91748047, -0.3708496, -0.68896484, 0.66308594, -0.26489258, -2.9589844, -1.2910156, -0.7915039, -2.4160156, 2.21875, 1.6699219, 0.8598633, -1.4414062, -0.19165039, 0.81884766, 1.3896484, -0.86376953, 0.87646484, 0.80615234, 1.9658203, -1.2382812, -2.7851562, 0.30395508, 1.2988281, -0.4116211, 0.00065374374, 1.9794922, -1.1982422, 2.8222656, 0.062683105, -2.90625, -0.8364258, 2.8925781, -0.89453125, 0.012771606, -0.022079468, 2.0722656, 0.49609375, 0.26489258, 3.4589844, 2.0722656, 0.93652344, 0.6074219, 0.28222656, 1.4228516, -3.0664062, -2.0820312, 0.62060547, 0.4008789, -0.3317871, 0.092285156, 1.5605469, 3.5195312, 2.2167969, -2.9589844, 2.7363281, -2.8222656, 0.52197266, 1.2470703, -2.7851562, -0.359375, 0.5229492, 1.4384766, 0.9277344, -0.31176758, 1.9003906, -1.8427734, -0.70458984, -0.028045654, -1.8203125, -0.58154297, 0.36816406, -1.4355469, -0.6972656, -1.5195312, 1.1855469, -0.8881836, -0.5058594, 3.2167969, -3.4394531, 0.91796875, 1.890625, 2.8398438, 0.85009766, -0.122558594, -2.0195312, 1.5087891, -0.3876953, 0.28881836, 1.3095703, 1.0351562, -1.1357422, 2.7109375, 0.28637695, 2.3105469, -2.3691406, -2.8945312, -0.9399414, -4.0703125, -2.5546875, 1.1582031, -0.6010742, -0.54248047, 1.1982422, -2.2910156, -1.296875, -2.4550781, -1.4443359, 0.20715332, -0.20275879, -0.90966797, -1.4882812, -0.3569336, -0.18664551, 0.8520508, -3.7402344, -0.45483398, 0.5048828, -0.12524414, 0.9951172, -0.070739746, -0.53564453, -2.359375, 0.7895508, 0.48754883, 1.1621094, 1.4833984, -0.66845703, -0.5209961, -3.2597656, -1.0771484, -2.640625, -0.76708984, -2.9941406, -1.0908203, -2.3300781, -2.7578125, -1.0742188, -0.10101318, 2.7441406, -1.1396484, 1.8027344, 0.073791504, -0.2607422, 1.2617188, -0.28344727, -2.09375, -1.6181641, 1.7871094, -2.3457031, -4.546875, -2.84375, -1.203125, 1.0888672, -0.20690918, -0.14978027, 0.4267578, -1.9345703, 2.3535156, -2.5898438, -0.38623047, -0.46533203, 1.5234375, 0.007019043, -0.93652344, -1.9707031, -0.47094727, 0.9638672, -0.8041992, -1.4511719, 0.4807129, -0.5683594, 1.7519531, 0.13500977, 0.61328125, 0.68896484, -0.9980469, -3.9550781, 1.7548828, 0.59814453, -2.9160156, 3.8027344, -1.0898438, -2.3339844, -4.5, -1.8652344, 2.015625, -0.6586914, 1.6572266, -1.1103516, -0.06726074, 2.3515625, -0.022613525, 0.7480469, 0.12060547, -0.7475586, 1.5458984, -3.0566406, -1.0615234, 1.0947266, 2.5253906, -1.3046875, -0.8125, 3.0078125, 1.9785156, 0.81152344, 1.3095703, 1.7949219, -0.19543457, -0.8745117, 3.0683594, 1.8486328, 0.09295654, 0.4272461, -0.91259766, 0.9707031, 0.58935547, 1.5166016, -0.25097656, -0.11846924, 2.4414062, 0.5805664, -0.6147461, -3.0351562, 0.27416992, 0.5102539, 1.2265625, 1.0615234, 2.5957031, -1.9931641, -0.45361328, -0.09625244, 0.8823242, 1.2646484, -0.010902405, -1.1796875, 1.5136719, 0.6147461, 1.4492188, -0.0017547607, 0.48120117, 0.17993164, -0.16101074, 0.64208984, -1.6943359, -1.390625, 1.4775391, -0.027450562, -2.0644531, -0.6171875, 1.5361328, -0.68847656, -1.4335938, -0.16564941, 2.53125, 0.33862305, -2.5429688, 0.7114258, -1.2998047, -0.6816406, 3.9902344, 0.23120117, -1.0527344, 0.6748047, -1.7138672, 1.890625, 2.0507812, -0.55615234, -1.8339844, -0.88720703, -0.045654297, -0.6645508, 0.51171875, 1.6630859, -0.18908691, -1.2255859, 0.08074951, -2.5996094, 0.3840332, 0.41455078, -1.2753906, -0.6118164, 2.453125, 1.9511719, 0.03540039, -1.7695312, 3.4394531, -0.3305664, -0.45385742, 1.5517578, -2.7480469, -0.6274414, -4.8476562, -2.7402344, 1.8876953, -3.2792969, -0.09448242, 1.6123047, 0.1282959, -0.78808594, 0.6621094, 0.37719727, -3.0546875, 0.09472656, -1.8017578, 0.11151123, -2.5859375, -1.2900391, 0.7128906, 2.3652344, -1.2832031, -1.6328125, -0.6118164, 1.5400391, 2.6992188, 1.171875, -1.0888672, 0.9160156, -2.90625, -0.53808594, -1.8173828, -0.054229736, 0.72509766, -1.0029297, -0.15185547, -2.6445312, 2.1308594, 0.08807373, -0.5673828, 1.4345703, 0.81689453, -0.49194336, -0.44970703, 1.1796875, 0.6982422, 1.8876953, -0.84277344, -2.2246094, -1.1806641, -0.041381836, 0.52490234, -0.76464844, -0.19250488, -1.1992188, -3.4140625, 0.08203125, -0.83496094, 1.2783203, 0.7832031, -1.9052734, -1.8876953, 0.4194336, 0.13183594, -3.7792969, -2.1464844, -0.97265625, -2.2578125, -1.4873047, 0.39770508, -2.8066406, 0.89404297, -3.4941406, 0.57470703, -2.6210938, 3.7167969, 1.1982422, 3.2070312, 3.4863281, -0.39135742, -1.3105469, 2.5253906, -1.5976562, -1.8496094, 1.6386719, -0.9082031, 0.18969727, 2.2988281, 0.5419922, -2.3613281, 0.93359375, 2.7949219, -1.6943359, -3.1171875, -0.10455322, 0.38989258, -2.8964844, -0.8310547, -0.087524414, -1.8388672, 2.5234375, -1.9130859, 2.0195312, -1.3261719, 0.15515137, -0.28759766, 0.71728516, -0.3623047, -0.18383789, 2.7832031, 1.3144531, 2.0195312, -1.8505859, 0.49316406, -1.4892578, 2.4453125, -0.62939453, 1.0175781, 0.9038086, -0.8833008, -1.8007812, -1.2548828, 1.9921875, 3.9589844, -1.3535156, 1.5673828, -0.4716797, -3.1582031, 1.7470703, 1.3662109, -3.6328125, -0.15454102, 0.49780273, 0.41357422, 1.5107422, -0.0881958, -2.4980469, 0.46948242, 1.6035156, -2.2851562, 0.98828125, -0.12176514, -1.2177734, 0.7832031, -1.5820312, -1.3095703, 0.2265625, -2.2597656, 0.31347656, -1.7099609, -0.09918213, -1.3818359, 2.3847656, 1.6113281, -1.3476562, 0.13903809, 2.9492188, 0.20483398, 1.3671875, 0.7519531, -0.39160156, -1.1416016, -1.2978516, 0.3684082, 1.8789062, 0.5019531, 0.7709961, 2.9433594, -1.6386719, -0.5991211, -2.4492188, 4.3554688, -0.58251953, -0.2919922, 1.0195312, -0.6381836, 0.8071289, -1.9794922, 0.36767578, 0.47045898, 3.0175781, 2.8964844, 0.328125, 0.52783203, -0.06109619, -1.1835938, -3.7460938, -0.3552246, -0.3786621, -0.28320312, 0.50927734, 2.5566406, -1.515625, -0.93359375, 1.515625, 0.37890625, -1.2158203, 0.53515625, 0.3256836, 0.5288086, -1.6162109, 1.2041016, 0.4555664, 0.08026123, 2.9238281, 1.3017578, 0.16418457, -4.5351562, -1.921875, 1.0068359, -0.028945923, -1.2919922, -0.46704102, 0.091552734, -1.0966797, 1.5146484, 0.45336914, -0.25195312, 2.6855469, -2.4492188, 0.1538086, 1.4453125, 0.07141113, 1.9921875, -0.8808594, -1.7333984, 2.5585938, -1.0136719, 1.3164062, -0.19641113, -1.0390625, -2.4453125, 2.3144531, -0.0044021606, -0.5957031, 0.6245117, -1.6943359, 3.0292969, 1.8681641, 0.5698242, 0.44189453, -0.54541016, -3.7929688, 1.2587891, -3.21875, -0.3215332, -1.9101562, 0.60058594, 2.0332031, 0.77978516, 0.1541748, 0.85595703, 0.41235352, -0.15686035, 0.84375, -0.048858643, 0.8964844, 1.5771484, -1.6035156, -1.4306641, -1.1494141, 0.58251953, 1.4453125, 0.82470703, -0.90234375, 0.20910645, -1.3583984, -0.09460449, 0.4038086, 2.3242188, 0.9223633, -1.5917969, -2.4316406, 1.7929688, 4.5039062, -0.9526367, 3.1835938, 1.2763672, 2.6152344, -0.6713867, 3.4355469, 2.0371094, -1.1611328, 0.56103516, -1.5351562, 0.23620605, -2.171875, -0.55859375, -1.0996094, -1.6982422, -1.8515625, -2.4511719, -1.2861328, -2.7324219, 1.9707031, 1.0361328, -0.2709961, 2.2285156, 3.1347656, 0.12866211, 1.8837891, 1.8125, 1.4423828, 0.3840332, 0.91064453, -2.328125, 0.54541016, 0.7314453, -3.0410156, 1.5927734, 1.6367188, -0.003786087, -1.7128906, 2.8242188, 1.1123047, 2.7734375, 0.31152344, 1.2744141, 1.890625, -0.15136719, 2.4472656, 0.4621582, 0.6088867, 1.6748047, -1.5419922, 0.01335907, 1.3154297, 2.3671875, 0.3112793, -0.5625, 1.5380859, -0.05065918, -2.3164062, -2.3105469, -0.8330078, 1.4375, -2.6699219, 2.1894531, 1.4511719, 0.66748047, -0.9135742, -0.32617188, -2.1621094, -0.12060547, -0.86816406, 0.19152832, 2.8769531, -1.4287109, -0.14331055, 0.6074219, -1.4619141, 1.9892578, -3.265625, 1.3476562, 0.47094727, -1.7880859, -1.0332031, 2.5722656, 2.5039062, 1.2460938, 0.97314453, 0.6791992, 1.7832031, 0.5083008, 0.62939453, 0.0055618286, 1.0791016, 0.4794922, 3.0800781, -0.46826172, -2.4804688, 1.2841797, -1.1943359, -2.4042969, -0.92578125, 2.6445312, 0.5449219, 0.33203125, 0.82128906, -3.3789062, 0.43701172, 0.24389648, 1.3359375, -3.7167969, -0.6147461, -0.42944336, -1.7578125, -1.4521484, 0.1003418, 0.74609375, 1.2236328, 2.078125, -0.93066406, 1.2480469, 2.0097656, 1.9091797, 1.5878906, 1.1650391, -0.7866211, 2.0546875, -1.1904297, 2.171875, 0.30932617, -1.6621094, -3.1425781, 2.0292969, 1.3007812, 0.24267578, -0.14929199, -1.4638672, -1.4902344, -1.3554688, -2.4609375, -1.171875, -0.20825195, 0.7265625, 0.13427734, 0.6425781, -0.9248047, 0.8413086, 0.67333984, 3.0566406, -0.6821289, 1.0087891, 0.4567871, 0.36523438, 1.8652344, 0.85009766, -1.4746094, 1.3984375, -0.1472168, 2.0566406, -0.1328125, -1.5517578, 0.011192322, 0.23339844, 1.3603516, -0.40942383, -0.27954102, -0.7963867, 0.97265625, -1.0341797, 1.1894531, -1.0351562, -0.5253906, 1.1005859, -0.20495605, 1.0537109, 4.0625, 1.1171875, -0.7421875, -2.0585938, -0.79541016, 0.9550781, -1.5898438, -0.58691406, -0.39819336, 4.7617188, 2.6523438, -0.3244629, -2.5214844, -2.6328125, -0.63134766, -1.1767578, 2.4941406, -1.1591797, -1.0800781, 0.5332031, 0.14758301, 2.0019531, -0.05227661, -0.2939453, -0.56152344, -0.024673462, 0.71484375, 0.8066406, 1.4404297, 2.3007812, 0.23144531, 0.6176758, 0.96728516, 2.0605469, 1.2626953, 2.1035156, 2.4921875, 0.084228516, -2.9160156, -0.24621582, -1.4882812, -0.56396484, 1.2138672, 0.34692383, 2.3535156, -0.034423828, 0.36499023, -1.8320312, -1.7021484]}, "B07H636NBH": {"id": "B07H636NBH", "original": "Brand: Weber\nName: Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit\nEquipped with the powerful Gs4 high performance grilling system\nUse the side burner to Simmer BBQ sauce or saut\u00e9 veggies; Infinite control burner valves\nSear station creates an intense heat zone to quickly add sear marks on meat\nDimensions: Lid Open 62\"H x 59\"W x 31\"D || Lid Closed 47\"H x 59\"W x 29\"D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches\n", "embedding": [-1.5537109, 0.023132324, 1.7548828, -1.1171875, -1.25, 1.0595703, -0.49389648, -1.1757812, 0.6152344, 1.359375, 2.2753906, -0.87402344, 1.6083984, -2.8554688, 0.68847656, 0.32763672, 1.8271484, 1.65625, -0.68408203, -0.21972656, 1.4765625, 0.15222168, 0.67822266, -1.90625, 1.3740234, 1.7158203, 4.8125, -6.40625, -0.81347656, -0.6069336, 2.0039062, 0.62890625, 1.2978516, 2.4355469, -3.0742188, -1.3984375, -2.5683594, 1.2490234, -2.671875, 1.0380859, -0.12731934, -1.2841797, 1.4091797, -0.2475586, -1.6689453, 0.90625, 0.56347656, -0.1616211, -1.6416016, 0.08685303, 4.1601562, 1.3486328, 0.18286133, 0.65283203, -0.5019531, 2.6738281, -0.5805664, -1.2363281, 2.421875, 0.3359375, 2.375, -0.47973633, -2.6816406, -1.5263672, -1.4033203, -0.30004883, -0.074401855, -0.059509277, 0.9770508, -0.29614258, 3.6445312, -0.7319336, -1.3271484, 0.28442383, 0.85791016, -2.0996094, -2.3398438, 1.1533203, 0.47607422, -1.8408203, -1.7646484, 2.203125, 1.4609375, -3.2402344, -0.7348633, -0.15490723, 1.15625, -2.2558594, 2.0175781, 1.5244141, -0.6586914, 0.94921875, -1.3535156, -4.1210938, 2.0527344, -0.93359375, 1.7333984, 1.5810547, -0.14782715, 1.6689453, -1.0976562, 1.0214844, -1.5029297, -1.3076172, -4.15625, -1.3925781, 1.4667969, 0.0078048706, -2.1289062, -1.0205078, -1.7519531, -0.19152832, 1.7373047, 2.1171875, 1.1328125, 1.7568359, -0.070495605, 1.9443359, 0.5732422, 0.50146484, 3.2246094, -1.6386719, 0.86865234, -0.6972656, -0.95947266, -1.1533203, -0.22180176, 0.5341797, 3.9863281, -1.8730469, -0.33569336, 1.5234375, 4.3828125, 0.0848999, -0.90625, -1.1884766, -1.0439453, -1.1240234, -3, -0.040802002, -0.31982422, 0.29418945, 1.8242188, -1.2412109, -3.3496094, 0.21789551, 0.030944824, 0.2722168, 0.07470703, -1.8847656, 0.041656494, -0.98779297, -0.7138672, -1.1494141, 1.6162109, 0.9301758, -1.7314453, 0.22924805, 3.0507812, 1.9970703, 1.1523438, -1.3554688, -0.54833984, -0.640625, 0.046081543, 1.2998047, 1.3046875, 1.9931641, -0.4584961, 1.3916016, 0.94384766, -1.5908203, -0.92333984, -0.55908203, 2.1894531, -1.8408203, -0.5126953, 0.9458008, -0.453125, 0.58984375, -1.8417969, -1.2675781, 0.030914307, -1.1298828, 0.60595703, -0.875, -0.7158203, -0.06915283, 2.2167969, -0.64990234, 0.20227051, -0.75683594, 0.58447266, 0.2401123, -0.20861816, -1.8964844, -0.8618164, -1.0048828, 2.1738281, -0.89208984, -1.3242188, -0.7890625, 0.95214844, 1.46875, -1.0927734, -2.453125, -0.42895508, -2.3574219, 1.4111328, 2.109375, 1.5273438, -1.1337891, 0.98339844, -1.34375, -0.35888672, -1.7666016, 2.453125, 0.9926758, 1.3691406, 0.91259766, -0.5864258, -1.3564453, 0.36523438, 1.8847656, 0.7392578, 0.79589844, 0.95214844, -0.9614258, -3.8554688, -0.6791992, 2.4726562, 0.06945801, 0.4645996, 0.67822266, 0.9111328, 2.9726562, 0.6977539, -0.66796875, 0.1385498, 0.5415039, -0.4399414, -0.16101074, -2.3183594, -1.8095703, -0.19885254, 0.7480469, -1.6015625, 2.8085938, 0.28564453, 0.94384766, 1.3554688, -1.0380859, 1.3417969, 1.2939453, -0.57910156, 0.60595703, -1.0761719, 1.7216797, 0.5131836, -2.4589844, 1.4550781, 0.96728516, 0.50146484, 0.67285156, 0.9458008, -1.5576172, 1.6552734, 2.9472656, -1.1630859, -1.7929688, 0.4482422, 0.6074219, 0.48632812, -0.31713867, 2.3554688, 2.4121094, -1.3007812, 2.7734375, 0.053771973, 0.79003906, -0.7368164, -0.89208984, 0.87646484, -3.2890625, -0.09631348, 0.5541992, 1.2646484, -1.0771484, -2.2695312, -0.07928467, 4.5078125, -0.60302734, -2.5878906, 2.828125, -1.9970703, 0.43041992, 1.4072266, -0.4638672, 0.36743164, 1.3652344, 2.2246094, -0.3864746, 1.3457031, 0.6713867, -0.40429688, -0.54345703, 1.2548828, -2.5195312, 0.46948242, 1.3886719, -0.8203125, -0.72021484, -1.7568359, 1.2265625, -2.0371094, -1.1025391, 1.9716797, -3.1464844, 0.74560547, -1.1757812, 2.1679688, 0.79541016, -2.1621094, -0.96875, -0.7211914, 1.0957031, -1.0654297, 1.1884766, 0.20739746, -1.9902344, -0.76220703, -0.55078125, -0.68066406, -2.3027344, -1.5068359, -2.2871094, -2.1328125, -3.6542969, 1.4970703, -1.3632812, -1.0693359, 1.5712891, -1.8046875, -0.08251953, 0.68847656, -3.3652344, -0.4814453, -1.1591797, -1.0029297, -1.9228516, 1.1904297, 0.9951172, -1.7744141, -2.8808594, 0.46704102, -1.6318359, 1.3613281, -1.0283203, -0.7705078, 1.2724609, 0.5839844, -0.35302734, -0.41601562, 1.0175781, 1.6220703, -0.21936035, 2.0058594, -2.5683594, -0.18701172, -1.8310547, 1.7021484, 0.47973633, 1.0634766, -3.6582031, -1.9160156, -0.8154297, -1.1972656, 3.9863281, 0.8520508, 0.8305664, 0.62109375, 0.9482422, 1.3046875, -1.1894531, -1.8291016, 1.2001953, -0.25708008, -1.8730469, -1.7304688, -2.7441406, -0.8691406, -3.0683594, 0.5336914, 0.057769775, -0.66259766, -1.3447266, -0.4255371, -2.375, -1.4345703, -1.1689453, -0.3701172, 0.30395508, -2.0292969, -2.1835938, -0.33544922, -1.7978516, 0.25585938, -1.3056641, 1.8417969, -0.27929688, 0.65478516, 1.6816406, -1, 1.3876953, -0.57958984, -3.7265625, 3.1210938, -0.50146484, -2.5996094, 2.0566406, -2.703125, -1.2373047, -2.8378906, -0.07940674, 3.2597656, 2.5175781, 1.0029297, 1.3339844, 1.8095703, -1.1738281, -0.96240234, 0.2602539, -1.2480469, 0.9941406, 2.3554688, -2.3769531, -1.4130859, 0.64990234, 1.2988281, -2.6015625, -1.8408203, 2.4726562, 1.9492188, 1.9208984, 1.1279297, 1.1982422, -0.06048584, -1.0410156, 0.50341797, 1.1894531, -0.4658203, 1.1191406, -0.5205078, 0.72509766, -0.5415039, 1.3896484, 1.3007812, 0.3544922, 1.0712891, 3.28125, 1.8222656, 0.0552063, -0.41552734, -0.5683594, 0.22351074, -0.7783203, 1.6328125, -1.8535156, 0.16491699, -0.25390625, -1.1748047, 0.7192383, 0.15576172, -0.9375, 2.8476562, 0.118652344, -1.40625, 1.1826172, 2.2832031, 0.8461914, -0.12585449, -0.17443848, -1.1875, -1.6552734, 1.4501953, -0.71533203, 1.0654297, -2.515625, 0.17700195, -0.90527344, -3.0898438, 0.7451172, 3.6289062, -1.9257812, -1.0263672, 0.35620117, -1.5654297, -0.8618164, 1.8769531, 1.3203125, -1.6318359, 0.2368164, -1.5791016, 0.69384766, 0.25854492, -0.41601562, -1.6689453, 0.05230713, 1.1816406, 0.58154297, 1.2832031, 1.3046875, 0.45385742, -2.3496094, 0.36035156, -4.3867188, -1.9921875, 0.95654297, -2.9277344, -1.8876953, 2.5996094, -0.27270508, 1.0742188, 0.14562988, 3.4707031, -1.8994141, 0.91796875, 2.4628906, -1.6992188, 0.86865234, -3.1660156, -3.4433594, 0.22802734, -0.94677734, 0.011177063, 1.6855469, -0.69628906, 1.4003906, 3.2597656, 0.95458984, -2.2714844, -1.2744141, -1.0117188, 0.30004883, -0.18811035, 0.7368164, 0.27270508, -1.0078125, -3.0878906, -2.0078125, -0.18725586, 0.25073242, 0.6777344, 2.1503906, -3.6835938, 0.3737793, -1.0390625, -0.66503906, -2.1308594, -0.5371094, 1.4248047, 0.06384277, 0.55566406, -2.7246094, 1.046875, 1.5429688, -1.1015625, 2.2558594, 2.0742188, -0.23583984, -2.484375, 0.54296875, 1.3310547, 3.1210938, -0.6899414, -2.5527344, -1.2216797, 1.6435547, 0.07196045, -1.1787109, -0.01071167, 0.5541992, -0.84521484, 0.84765625, 1.5244141, 1.4609375, 0.9628906, 0.22167969, -2.5273438, 0.6845703, -1.2783203, -0.30297852, -1.7431641, 0.3112793, 2.0039062, -1.1601562, 0.98291016, -2.0292969, 1.6621094, -1.0595703, 0.14245605, -4.0507812, 2.25, 3.7109375, 3.3203125, 2.8945312, -1.0410156, 0.43798828, -0.044677734, -0.9770508, -0.39453125, 1.0791016, -1.2949219, -0.4272461, 2.640625, 0.6352539, -2.0058594, -0.9736328, 1.140625, -2.0566406, 0.070739746, -2.0683594, -0.45776367, -1.0380859, -0.008659363, 0.9785156, -1.1191406, 3.1621094, -0.7910156, -1.2558594, 0.45141602, 2.1777344, -0.21936035, 0.56933594, 0.7495117, 0.3383789, -0.56396484, 0.8178711, 1.3935547, -1.0546875, 0.86572266, -1.6640625, 0.6669922, -1.0869141, 0.81884766, 0.7890625, -0.07110596, -0.5761719, -0.60009766, 2.1503906, 2.140625, 2.0195312, 2.7753906, 2.4589844, -2.9472656, 2.53125, 1.0458984, -3.7167969, 1.4560547, 0.4572754, 0.23474121, 2.0898438, 1.7138672, -3.6210938, -0.17504883, 1.8369141, 0.07891846, 1.640625, -1.4033203, -0.58203125, 2.2089844, -1.9951172, -0.96972656, -0.25463867, -0.4248047, 0.78759766, 1.2841797, -0.12939453, -2.1914062, 1.4130859, 2.5292969, -1.2421875, -2.4960938, 1.4970703, -1.4189453, 0.60546875, -2.0019531, -1.0849609, -2.0273438, -0.2133789, 2.3945312, 2.0488281, 1.5371094, 0.28442383, 1.7333984, -1.7939453, -0.22595215, -2.1992188, 1.8320312, -2.1660156, -1.4658203, 0.62353516, -2.8417969, 0.24523926, -1.5195312, -1.1054688, -0.48754883, 1.1367188, 1.2890625, 0.97509766, -1.4570312, 1.0029297, -1.9785156, -3.0527344, -1.3154297, -0.008483887, 0.116760254, 0.54833984, 0.83740234, -1.3408203, 0.38745117, -1.1757812, -0.048339844, -1.109375, 1.0908203, -0.93652344, -0.62646484, -0.6567383, -0.53808594, -1.2714844, 0.60546875, 0.80566406, 0.031585693, 0.5673828, -1.9179688, -0.9711914, 0.89208984, -0.94677734, 0.60009766, 1.6035156, 0.7895508, -0.68603516, 1.7470703, 0.9638672, -2.5703125, 2.5957031, -1.9257812, -1.3994141, 0.98339844, -0.81640625, 1.6230469, -0.83154297, 0.4345703, -0.25317383, -0.0129470825, 1.6894531, 2.046875, -2.0214844, -0.49536133, 0.43041992, 0.4741211, -0.56396484, 1.6103516, -0.19213867, 0.3876953, 1.3984375, -1.4238281, -1.0419922, -1.6474609, -1.7109375, 1.2382812, -3.1699219, -0.89697266, -1.359375, 0.48242188, 2.3632812, -0.08520508, -1.1416016, 2.8066406, -0.4008789, -1.3007812, -0.12347412, -0.8203125, 5.1992188, 4.359375, -0.5625, -0.7260742, -1.4501953, 0.98339844, 2.0527344, 0.6953125, -2.1171875, 0.4416504, -1.4521484, 0.005542755, 0.17126465, 1.6328125, 1.0039062, 1.1025391, -0.859375, 0.7988281, 3.5253906, -1.2763672, 1.3154297, 1.0322266, -0.18652344, 0.22924805, 3.9335938, -0.15393066, -4.0195312, 1.2890625, -2.1835938, 2.0761719, 0.13537598, -1.2363281, 0.51416016, -0.5654297, -1.9814453, -2.0585938, -2.2226562, -2.0097656, 1.3779297, 2.4707031, -2.5917969, -0.9448242, 1.3203125, -0.6699219, 3.8886719, 1.4179688, 1.9394531, -2.0332031, -0.3708496, -0.62402344, 0.2052002, 0.25854492, -4.1914062, 1.2255859, 1.2246094, -1.6396484, -1.5839844, 1.8564453, 0.39404297, 1.8935547, 0.9628906, 1.7304688, 1.5996094, 2.0253906, 1.5908203, 1.2080078, 2.6230469, -0.35351562, -0.8618164, 0.19909668, 1.9345703, 1.3779297, 0.79052734, -0.89404297, 2.5253906, -1.6123047, -0.006526947, 0.07324219, -0.61376953, 1.6220703, -2.3691406, 0.5698242, -0.051971436, 2.0039062, -0.4658203, -1.0517578, 0.81689453, 0.35473633, 0.734375, 0.5107422, 1.8095703, 1.3623047, 1.4960938, -1.0683594, 0.29370117, 2.1503906, -3.5917969, 0.84472656, 1.2666016, -0.54785156, -1.5, -1.2890625, 2.4960938, 0.86279297, -0.65478516, 0.51416016, 3.2402344, 0.94384766, 0.78271484, -2.5351562, -1.0839844, 0.09423828, 3.3476562, 0.21582031, -0.032165527, 0.7807617, -0.9614258, -4.2617188, -3.765625, 3.7109375, 2.90625, 2.2207031, 0.10479736, -0.58251953, 3.109375, -0.60839844, 1.3876953, -0.6098633, 0.49389648, -1.2216797, -2.9941406, -0.30932617, 1.3740234, -0.43164062, 0.9628906, 0.60546875, 0.11932373, 1.2412109, 1.1757812, 1.9619141, 0.87646484, 0.6225586, 2.1523438, 1.1015625, -0.92285156, 1.3681641, 0.005680084, -1.1640625, -2.0507812, 3.1367188, 1.2792969, 0.43554688, -0.19628906, -1.1455078, 0.17443848, -0.84521484, -0.2052002, 1.359375, -2.6425781, -0.88427734, 0.7553711, 0.17102051, -1.2324219, -0.67333984, 1.9921875, 2.859375, -0.6689453, 1.1435547, 3.5859375, -0.78466797, 1.3203125, 0.7236328, 0.609375, -0.061828613, 0.55615234, -0.74072266, 0.37158203, -1.1826172, 1.5556641, 1.7431641, -0.4465332, -0.75341797, 0.18066406, -1.7470703, -1.1845703, 0.04321289, 0.33276367, 0.04333496, -1.2402344, 2.7148438, -0.6508789, -1.4658203, 2.5820312, -0.6743164, 0.19812012, -2.8183594, -2.0605469, -1.2226562, -0.6484375, -1.0957031, 1.0722656, 3.7070312, -0.06335449, 0.2368164, -1.3242188, -3.4140625, -1.3916016, -2.8359375, 2.0585938, -1.8095703, -1.6640625, -1.8242188, 0.44702148, 1.9814453, -0.123168945, 0.0017976761, -0.34228516, -2.8320312, 1.5283203, 0.23352051, 0.69433594, -1.0126953, 0.59277344, 2.1992188, 2.8339844, 1.4023438, 0.77734375, 0.3034668, 2.5175781, 0.41601562, -1.6552734, -0.53564453, 0.42895508, 0.73779297, -0.7636719, 0.86328125, 1.4970703, 0.090026855, -0.6435547, 0.50146484, -2.5058594]}, "B07H5RHYCF": {"id": "B07H5RHYCF", "original": "Brand: Weber\nName: Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel\nDescription: \nFeatures: GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\n7mm diameter solid stainless steel rod cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\nCompatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature\n", "embedding": [-1.3232422, 0.47509766, 1.8945312, -0.8955078, -0.9716797, 1.2333984, -0.08734131, -1.1015625, -0.030715942, 1.5917969, 1.3818359, -1.2949219, 1.234375, -2.6425781, -0.92871094, 0.15551758, 2.0097656, -0.0037975311, -1.2197266, 1.1201172, 1.1699219, -0.82128906, 2.1796875, -1.1132812, 1.5019531, 1.3105469, 4.4335938, -6.015625, -0.86328125, -1.0429688, 2.3164062, 1.0078125, 1.421875, 1.6123047, -3.3535156, -1.2529297, -2.6523438, 1.5419922, -2.5039062, 0.61865234, -0.13134766, -1.7636719, 0.4248047, -0.5727539, -1.75, 1.5693359, 1.1767578, 0.8613281, -3.1933594, 0.2770996, 3.6660156, 1.2910156, -0.02947998, 1.4521484, 0.32714844, 2.9394531, -0.7685547, -0.5151367, 2.5078125, -0.2800293, 2.7792969, -0.48388672, -2.9824219, -1.7988281, -0.82421875, -0.9169922, 0.98535156, 0.66845703, 0.51416016, -0.59033203, 3.4941406, -1.8945312, -1.9951172, 0.796875, 0.7026367, -2.8886719, -2.7167969, 1.3730469, 0.09893799, -1.3945312, -2.5039062, 2.4902344, 1.1611328, -2.1230469, -0.32861328, 0.5708008, 1.0703125, -2.4257812, 2.4667969, 1.4179688, -0.73828125, 0.68847656, -1.3320312, -3.7480469, 1.6259766, -0.5703125, 1.8632812, 0.6538086, -0.4206543, 0.9794922, -2.0234375, 1.5986328, -0.60253906, -0.6269531, -3.0410156, -1.3720703, 2.6875, -0.4387207, -2.7597656, -1.1298828, -1.6269531, -0.07287598, 1.015625, 1.9296875, 1.9462891, 1.1816406, 0.40039062, 1.7548828, 0.86816406, 0.8666992, 2.9394531, -0.6972656, 0.09710693, -1.6181641, -1.5478516, 0.17858887, -0.67333984, 1.0009766, 4.4414062, -3.0078125, -0.38793945, 1.2011719, 3.640625, 0.60546875, -0.609375, -1.4238281, -1.2675781, -0.3178711, -2.9746094, 1.21875, -0.8417969, 0.85595703, 1.4199219, -0.9609375, -3.1464844, 0.38720703, -0.1550293, 0.5253906, 0.16137695, -1.1767578, 0.16088867, -1.2285156, 0.044799805, -1.4609375, 2.4257812, -0.19555664, -0.9165039, 0.25439453, 3.296875, 1.5683594, 1.4257812, -1.2587891, -0.7788086, -1.0429688, -0.0635376, 1.2910156, 0.6113281, 2.3613281, 0.17248535, 1.4736328, -0.19628906, -0.19592285, -0.41601562, -1.0703125, 2.0800781, -1.7929688, 0.19799805, 1.4882812, -0.92041016, 0.84375, -0.5708008, -2.875, 0.09765625, -1.0830078, 1.0371094, -1.1230469, 1.1923828, 0.87890625, 2.2832031, -1.2460938, -0.35009766, -0.3540039, 1.2890625, -0.6201172, 0.7211914, -0.6894531, -0.9086914, -1.8544922, 1.3027344, -1.859375, -1.4755859, -0.9394531, 0.80908203, 0.49658203, -1.3896484, -3.3613281, -1.0703125, -2.0742188, 1.2011719, 2.2539062, 2.5039062, -0.8642578, 0.035858154, -1.3183594, -0.13769531, -2.4550781, 2.5742188, 0.69677734, 0.6538086, 1.3056641, -1.1992188, -1.1113281, 1.0771484, 1.3144531, 0.38134766, -0.014678955, 0.90185547, -0.59375, -2.6152344, -1.7226562, 2.3457031, -0.40405273, 0.17456055, 0.3996582, -0.026885986, 3.3613281, 1.3066406, 0.08807373, -0.7832031, -0.045837402, 0.12841797, -0.0007071495, -2.2734375, -1.390625, -0.7397461, 0.17321777, -2.7226562, 2.7421875, 0.030700684, 0.95458984, 1.4648438, 0.07891846, 1.6796875, 0.90722656, -0.6010742, 0.8383789, -1.3300781, 1.2617188, -0.41381836, -3.0957031, 2.2226562, 0.14929199, -0.10772705, 0.07727051, 0.78759766, -1.7978516, 2.6035156, 2.4414062, -1.0244141, -2.0136719, 0.6020508, 0.064453125, 0.7138672, -1.5449219, 2.3007812, 2.9589844, -1.3173828, 3.4238281, 0.6870117, 0.94189453, 0.103027344, -0.40576172, 1.6884766, -2.5898438, -0.62597656, 0.37060547, 1.4355469, -1.390625, -1.9335938, -0.6074219, 4.3671875, -0.60839844, -3.3554688, 1.8037109, -2.2988281, 0.32592773, 1.7207031, 0.13769531, -0.4482422, 1.1152344, 1.5722656, -0.6791992, 1.3164062, 1.3085938, -0.6953125, -0.22045898, 0.77734375, -1.8466797, 0.12084961, 1.4580078, -0.105041504, -1.1923828, -2.1464844, 0.69873047, -2.7832031, -1.90625, 2.4257812, -2.6035156, 0.97558594, -0.8803711, 2.0625, 0.19335938, -1.7480469, -0.03955078, -1.1152344, 0.35253906, -0.99072266, 0.081604004, 0.37451172, -1.9248047, -1.0566406, -0.4543457, -2.0683594, -1.8740234, -1.3916016, -1.9833984, -2.2304688, -3.6601562, 1.4853516, -1.6074219, -1.1074219, 1.7158203, -2.078125, -0.62939453, 0.72998047, -2.5683594, -0.7089844, -1.25, -1.4189453, -1.4345703, 0.8520508, 0.73583984, -1.2978516, -3.1542969, -0.11218262, -1.5917969, 0.65234375, -0.92333984, -0.54785156, 0.50927734, 1.2734375, -0.42944336, 0.33911133, 1.6298828, 1.7304688, 0.14038086, 0.87939453, -3.0410156, -0.6435547, -2.8613281, 0.8935547, 0.87353516, 1.4765625, -3.6992188, -1.2978516, -0.6435547, -0.41870117, 2.8984375, 0.9970703, 1.7265625, 0.7241211, 1.2832031, 0.73828125, -0.9379883, -1.0771484, 1.390625, 0.7915039, -1.6074219, -0.24121094, -1.0341797, -0.25927734, -1.7685547, 0.5629883, 0.25854492, -0.7524414, -1.3183594, 0.2319336, -1.9277344, -1.8574219, -0.9277344, 0.38305664, 0.46362305, -1.7949219, -2.6972656, -0.51220703, -1.8925781, 0.02331543, -1.7197266, 1.2568359, -0.32543945, 1.3203125, 1.4853516, -0.5097656, 1.0136719, -1.1298828, -2.9824219, 3.125, -0.7553711, -3.1074219, 3.0683594, -2.5839844, -1.9765625, -2.0097656, -0.15686035, 2.7011719, 1.1376953, 1.2158203, 0.5527344, 1.4824219, -0.48583984, 0.12634277, 1.2685547, -1.9228516, -0.40673828, 1.5888672, -2.3652344, -1.9599609, -0.050720215, 1.2597656, -2.7363281, -1.4697266, 2.7890625, 2.8066406, 1.0703125, 1.125, 0.14477539, 0.95703125, -2.4765625, 1.0429688, 0.96484375, -0.13464355, 1.0166016, -1.3945312, 1.3359375, -0.6982422, 1.0791016, 1.2128906, 0.76171875, 2.109375, 2.2324219, 2.2402344, 0.15698242, -0.19897461, 0.27368164, 0.5546875, -0.03149414, 1.8359375, -2.046875, -0.27124023, -0.58251953, -2.2988281, 0.40063477, -0.703125, -1.9228516, 2.3535156, -0.03265381, -0.17614746, 0.25341797, 1.8681641, 0.9008789, 0.0032444, 0.68310547, -1.9140625, -0.88964844, 1.8300781, 0.21777344, -0.33666992, -1.5292969, 0.17041016, -0.48706055, -2.4355469, 0.55371094, 3.5175781, -1.0927734, -0.77197266, 0.15344238, -1.1123047, 0.15368652, 0.9824219, 0.93652344, -0.5292969, 0.9863281, -2.3027344, 1.6796875, 0.07019043, -0.20397949, -1.0214844, -0.23986816, 0.95166016, 0.039916992, 1.3623047, 1.0859375, -0.33789062, -2.1875, 0.20727539, -4.5351562, -1.5273438, 1.0986328, -2.6894531, -1.5595703, 2.0195312, 1.0703125, 0.13586426, -0.5864258, 2.9746094, -1.2460938, -0.02017212, 2.2636719, -3.4179688, -0.3071289, -4.0351562, -2.6542969, 0.004928589, -1.4111328, 0.20422363, 1.3398438, -0.0637207, 0.78125, 2.90625, 0.79003906, -2.0605469, -1.2119141, -0.921875, -0.8828125, -0.12683105, 0.28173828, 0.0960083, -0.9453125, -1.7119141, -2.3828125, 0.359375, -0.13464355, 1.0048828, 1.6669922, -3.9316406, 0.6352539, -1.8574219, -0.8857422, -1.359375, -0.8203125, 1.3291016, -0.6669922, 0.9003906, -2.203125, 1.1376953, 0.9433594, -0.5883789, 1.8837891, 1.7333984, -0.9477539, -2.5859375, 0.6796875, 1.3037109, 2.40625, -0.26708984, -2.7460938, -0.8046875, 2.1953125, 0.6772461, -1.1796875, 0.28198242, -0.03326416, -1.5371094, 0.7446289, 1.0947266, 1.2939453, 1.6259766, 0.79296875, -2.8808594, -0.5126953, -1.4589844, -0.7739258, -2.6484375, -0.44702148, 1.9648438, -0.80078125, 0.45043945, -1.4658203, 1.6611328, -0.8359375, 0.020874023, -3.9746094, 2.5585938, 3.6777344, 2.3496094, 2.5839844, -2.1894531, 0.92333984, 0.50390625, -0.33129883, -0.8642578, 1.1162109, -0.8955078, -1.1308594, 2.640625, 0.79052734, -1.7441406, -1.2285156, 1.1005859, -1.7958984, 0.06365967, -1.9570312, 0.08404541, -0.7080078, 0.059051514, 1.7734375, -0.86328125, 3.3984375, 0.32177734, -1.6533203, 0.92871094, 1.4482422, -0.62939453, -0.06506348, -0.47631836, 0.78222656, 0.5390625, 1.1298828, 1.9785156, -0.9638672, -0.110839844, -0.4753418, 0.85253906, -0.4255371, 1.4414062, 0.15429688, 0.3696289, -1.3164062, -0.8574219, 2.6269531, 1.9306641, 2.4199219, 2.9960938, 1.4833984, -2.5957031, 2.0117188, 0.62353516, -4.0117188, 1.9726562, 1.0390625, -0.18103027, 1.4804688, 1.4345703, -3.5703125, -1.2568359, 2.2792969, -0.33544922, 1.0400391, -1.5654297, -0.5083008, 2.4921875, -1.0058594, -0.12548828, 0.6870117, 0.2241211, 0.7578125, -0.035217285, -0.15722656, -2.2109375, 1.3085938, 1.8554688, -1.2978516, -1.6767578, 1.9570312, -1.6992188, 1.4726562, -1.1054688, -0.45947266, -1.4453125, 0.122802734, 3.4453125, 2.0644531, 1.2802734, 0.6328125, 1.6855469, -0.6635742, 0.75097656, -2.6953125, 3.2050781, -2.0253906, -1.7714844, 0.24768066, -3.1679688, -0.359375, -1.640625, -0.7368164, -0.88427734, 0.44604492, 1.4326172, 0.97753906, -0.8388672, 1.3876953, -1.75, -2.8339844, -0.21765137, 0.0491333, 0.59814453, -0.12646484, 1.8574219, -1.3837891, 0.61376953, 0.59521484, 0.03466797, -0.64746094, 0.5917969, -0.31982422, -0.45581055, -0.49389648, 0.032714844, -1.6621094, 1.6201172, 1.3798828, 0.41210938, 1.0244141, -2.296875, -1.09375, 0.15283203, -0.45410156, 0.7241211, 1.5683594, 1.4091797, -1.7519531, 1.5859375, -0.2368164, -2.2265625, 2.2285156, -1.9511719, -1.4462891, 1.6054688, -0.8051758, 1.9765625, -0.21130371, -0.546875, -0.056549072, -1.4296875, 0.85791016, 2.0410156, -0.8652344, -0.30151367, 1.0791016, 0.32714844, -2.4101562, 1.0361328, -0.8046875, 1.2089844, 0.3984375, -1.2900391, 0.047851562, -1.6074219, -2.28125, 1.8056641, -2.9941406, -0.27001953, -1.1064453, 0.86572266, 2.2792969, 0.37475586, -0.39038086, 1.375, -0.55029297, -1.5888672, -0.11883545, -0.20898438, 4.921875, 4.2304688, -0.7055664, -0.51416016, -1.5615234, 0.30371094, 1.9013672, 1.3496094, -2, 0.4387207, -0.70996094, 0.34960938, -0.4272461, 1.7304688, 1.484375, 0.06903076, -0.74560547, 1.2099609, 3.7402344, -0.7807617, 1.7207031, 1.2890625, -0.56884766, 0.5546875, 4.984375, 0.11352539, -2.7558594, 1.3583984, -2.0273438, 1.5878906, 0.71240234, -0.77734375, -0.3076172, -1.3115234, -1.1376953, -2.3828125, -2.2460938, -1.6591797, 0.96875, 2.0078125, -1.6044922, -0.9086914, 1.4628906, -0.23425293, 3.484375, 2.1464844, 2.3886719, -1.9599609, 0.5371094, -0.71240234, 0.46166992, 0.35766602, -3.5800781, 1.3837891, 0.94384766, -1.1699219, -1.8222656, 1.5771484, -0.0892334, 2.9804688, 0.23620605, 1.3769531, 1.3984375, 2.7910156, 2.0058594, 1.5419922, 1.9248047, 0.024398804, -0.8251953, -0.4477539, 1.0566406, 0.98095703, 0.9394531, -0.028305054, 2.0605469, -1.9677734, -0.36767578, 0.2692871, -0.40844727, 1.3007812, -2.4296875, 0.17822266, 1.5507812, 2.2949219, -1.3183594, -1.5585938, 0.57910156, -0.25268555, 0.26660156, -0.59277344, 2.5996094, 0.97314453, 1.6054688, -1.5371094, -0.8779297, 1.5126953, -3.9726562, 1.2587891, 1.6513672, -0.18347168, -1.3808594, -1.4765625, 1.5986328, 0.49536133, -0.16174316, -0.07208252, 3.453125, 0.7167969, 0.3503418, -2.8496094, -0.70458984, 0.50146484, 4.2578125, -0.5361328, 0.23388672, 1.5449219, -1.6396484, -4.46875, -2.8398438, 3.8125, 2.3925781, 1.9550781, 0.5625, -1.1972656, 3.0488281, -1.6835938, 1.5800781, -0.73095703, 0.32202148, 0.026306152, -2.4785156, 0.056274414, 0.83496094, -0.3840332, 0.54589844, 0.69384766, -0.06732178, 1.2197266, 0.46704102, 1.0634766, 0.54296875, 1.1289062, 1.3457031, 1.1806641, 0.2565918, 1.7119141, -0.15393066, -1.2910156, -2.0039062, 2.859375, 1.2265625, 0.44506836, 0.3125, -0.8642578, -0.40576172, -1.0693359, -0.38085938, 1.9541016, -2.1230469, -1.3935547, 0.38891602, 0.47802734, -1.0722656, -1.2626953, 2.2714844, 2.6152344, 0.34887695, 1.6337891, 2.4882812, -0.6694336, 1.5498047, 0.34985352, 0.75439453, -0.20373535, 0.5527344, 0.11254883, 0.27514648, -1.9462891, 1.8623047, 1.4443359, 0.08081055, -1.2744141, -0.11236572, -1.4443359, 0.12646484, 0.46044922, 0.6225586, -0.44140625, -0.6582031, 2.6835938, -0.24133301, -1.1181641, 2.2539062, -0.76708984, 0.52783203, -2.3417969, -2.796875, -1.2832031, 0.11621094, -1.0019531, 0.39233398, 2.7851562, 0.828125, -0.037506104, -1.9541016, -2.6230469, -1.3085938, -2.5175781, 1.3466797, -2.5175781, -2.1621094, -1.3984375, 0.3828125, 1.7207031, -0.13500977, -0.0012340546, -0.022125244, -2.2402344, 0.9326172, -0.44360352, 0.83447266, -0.8334961, -0.042816162, 1.5195312, 2.8574219, 0.8227539, 0.07763672, 0.09460449, 3.0898438, 0.32543945, -2.1601562, 0.23925781, -0.2602539, 0.41064453, 0.35229492, 0.99560547, 1.4560547, 0.02432251, -0.9760742, 0.28710938, -2.3457031]}, "B002BCSX0Y": {"id": "B002BCSX0Y", "original": "Brand: Weber\nName: Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch\nDescription: Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.\nFeatures: 580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates\nFront-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people\nSide burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner\nEnclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only\nDimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D\n", "embedding": [-1.1875, 2.0273438, 1.4726562, -0.94384766, -1.0263672, 1.0185547, -0.5498047, -1.6259766, 1.7060547, 2.3125, 3.6347656, -0.28051758, 0.84277344, -3.5664062, -0.98779297, 0.8466797, 1.5908203, -0.26904297, 0.7651367, 2.1113281, 0.3046875, -0.4482422, 3.0664062, -2.65625, 1.3720703, 0.9008789, 3.1347656, -5.125, -1.9951172, -1.3222656, 1.3349609, 1.2734375, 1.5566406, 2.0253906, -4.09375, -0.39453125, -3.1894531, 0.16809082, -3.1972656, 0.7290039, -0.76708984, -1.8583984, 1.0185547, -1.0068359, -2.3046875, 0.9916992, 1.5244141, -0.30029297, -1.0087891, -0.8510742, 2.2382812, 0.71533203, 0.3630371, 2.8085938, -0.171875, 2.0214844, 1.2744141, -1.9873047, 1.8398438, 0.6772461, 3.1230469, 0.50439453, -2.8945312, -1.1240234, -1.9794922, -1.6132812, -1.1855469, -0.58984375, 1.1171875, 0.97998047, 3.5546875, -2.0449219, -2.09375, 0.8725586, 2.53125, -1.5009766, -2.7324219, 2.7558594, 0.74072266, -1.5429688, -2.515625, 1.6523438, 0.46362305, -0.9067383, -1.0761719, 1.5859375, 0.43725586, -2.3652344, 1.1494141, 1.9326172, -0.41479492, 1.8662109, -1.8330078, -3.0273438, 2.0527344, -1.5185547, 2.4023438, 0.9790039, -0.4416504, -0.10803223, -2.34375, 2.5488281, -0.80810547, -0.80566406, -2.6308594, -2.2246094, 1.6943359, -0.3815918, -3.0429688, -1.9951172, -1.5898438, 1.1777344, 1.140625, 1.1162109, 0.7109375, 1.3759766, -0.55322266, 2.5585938, 1.5429688, -0.15930176, 2.4453125, -0.69433594, 0.59375, -1.2792969, -1.6074219, 1.1064453, -1.9267578, 2.0644531, 2.7070312, -2.3730469, -2.0097656, -0.8754883, 4.3476562, 0.93066406, -0.06210327, -0.7709961, -2.5273438, -0.084106445, -3.0800781, -0.6176758, -1.5185547, 1.1015625, 0.84521484, -1.4785156, -3.8710938, 0.14099121, 0.51904297, -0.22094727, -0.14074707, -1.1582031, -0.26245117, -2.2949219, -0.30810547, -2.9160156, 1.3564453, -0.11755371, -0.68603516, 0.37817383, 4.0625, 2.3847656, 1.3486328, -1.1269531, -0.8569336, 0.027267456, 1.0029297, -1.1357422, 0.7949219, 1.7890625, -0.1665039, 1.3876953, 0.031951904, 0.3395996, 0.18493652, 0.6870117, 1.5888672, -1.2226562, -0.953125, 2.9648438, -0.58154297, 0.3149414, -0.99316406, -2.9980469, 0.21618652, -0.8486328, 0.3046875, -1.3017578, 1.7382812, -0.064331055, 1.5830078, -1.0888672, -1.3154297, 0.7495117, 2.2832031, -1.1201172, 0.41674805, -0.59521484, -1.5263672, -3.0097656, 0.69628906, -0.75, -0.7714844, -1.0283203, 1.1171875, -0.2824707, -0.62109375, -2.3632812, -0.4104004, -1.6796875, 0.7578125, 2.0449219, 0.08807373, -1.6162109, 1.1191406, -1.5605469, 0.046447754, -1.4130859, 2.8691406, 1.4970703, 1.2607422, 1.9238281, -0.8413086, -0.69628906, 1.7636719, 2.1210938, 0.70214844, 0.75927734, 0.28344727, -0.3930664, -2.6796875, -0.9941406, 2.9824219, -0.35742188, 0.4621582, 1.5029297, -0.26635742, 3.0058594, 1.1494141, -0.93066406, 0.6191406, -1.1435547, 0.80810547, 0.68896484, -2.0488281, -2.0800781, -0.51904297, -0.6767578, -1.796875, 1.0673828, 2.3300781, 0.6352539, 0.22729492, -1.1328125, 2.0097656, 1.7333984, -0.96777344, 1.0810547, -1.8242188, 0.14135742, -0.22241211, -2.4414062, 3.03125, 0.54003906, -0.11779785, -0.31933594, 0.8647461, -1.6113281, 1.8232422, 2.203125, -2.2089844, -2.0273438, 0.6586914, 0.33764648, 1.2275391, -1.9863281, 1.3242188, 1.5888672, -1.1816406, 3.6953125, 0.97021484, 0.4699707, 1.3457031, -1.0947266, 1.8369141, -3.359375, -0.040649414, 0.4404297, 2.1328125, -1.1171875, -1.5546875, -0.5253906, 4.5390625, -0.3955078, -2.5839844, 1.5117188, -2.1347656, 0.23962402, 1.53125, -0.025009155, 0.12561035, 0.40161133, 2.3769531, -1.1367188, 0.7026367, 1.5478516, -0.45874023, -1.7412109, 1.0947266, -2.84375, 1.3847656, 0.9223633, -2.0097656, -0.6254883, -2.0507812, 2.6660156, -2.015625, -0.9116211, 4.5039062, -3.5839844, 1.0566406, -1.1621094, 2.9023438, 0.0011024475, -1.4960938, 0.27661133, -0.8618164, 0.39892578, -0.80810547, 0.25048828, 0.20629883, -0.85498047, -0.2841797, -0.71191406, -1.0146484, -2.6523438, -1.1816406, -1.578125, -3.7128906, -2.6621094, 1.2988281, -1.6474609, -0.11663818, 2.2148438, -3.5, -1.2929688, -0.21020508, -2.1015625, -0.45336914, -0.9692383, 0.13427734, -0.24389648, 1.0546875, 1.2470703, -0.35864258, -3.3691406, 0.64697266, -0.43676758, 0.67822266, -2.1132812, -1.7919922, -0.28955078, -0.70410156, 0.5229492, -1.1113281, 1.2880859, 2.78125, -1.4638672, 0.4675293, -3.5058594, 0.54248047, -3.2324219, 1.6923828, -1.0224609, 2.3730469, -3.6738281, -1.9306641, -1.0263672, -0.86816406, 4.46875, 1.7880859, 1.7255859, 0.8515625, 0.7885742, 0.7636719, 0.101379395, -1.7148438, 1.171875, 2.2070312, -1.1220703, -0.6767578, -2.1933594, 1.0146484, -3.9453125, 0.4543457, 0.03237915, 0.2097168, -1.1113281, -0.8129883, -1.7167969, -1.4091797, -0.66015625, 0.32055664, -0.5234375, -1.7490234, -2.7011719, -1.0400391, -1.3828125, -0.09326172, -0.42529297, 1.6777344, -1.3935547, 1.8007812, 1.546875, -1.7373047, 1.1630859, -1.9541016, -3.7949219, 3.8105469, 0.5810547, -2.5097656, 2.8339844, -3.0703125, -2.4160156, -1.0908203, -1.1337891, 2.1972656, 0.8959961, 1.1474609, 0.41015625, 2.1152344, -1.0947266, -1.9941406, 0.39257812, -1.3330078, 0.52685547, 3.0488281, -4.3945312, -1.6542969, 0.6870117, 2.3183594, -3.7089844, 0.44067383, 3.0175781, 1.4609375, 2.28125, 3.0839844, 0.22802734, 0.19250488, -2.59375, 0.85302734, 2.0117188, -0.6635742, 0.8432617, -0.5444336, 1.4306641, 0.04171753, 0.47021484, 2.3730469, 1.5517578, 2.7578125, 3.0878906, 1.8261719, -1.5908203, -0.61035156, 0.076171875, 1.1826172, 0.20703125, 1.515625, -1.7763672, -0.42260742, -2.2402344, 0.60595703, -0.47875977, -0.03540039, -1.0332031, 2.0332031, 0.18151855, 0.35888672, 0.7636719, 1.4824219, 0.96484375, -0.89697266, 0.46972656, -1.3925781, -1.7412109, 2.1503906, -1.21875, 0.48242188, -1.6855469, -0.01727295, -0.6196289, -2.8867188, 0.71728516, 2.7402344, -1.4882812, -1.2089844, -0.28588867, -0.29248047, 0.31640625, 2.4550781, 1.7402344, -0.77001953, 0.09240723, -2.9121094, 1.5830078, 0.890625, -1.0595703, -1.2978516, 0.15539551, 1.5703125, 0.41064453, 0.68359375, 2.3320312, 0.2734375, -2.3359375, -0.12042236, -4.0039062, -1.4082031, 1.4726562, -2.5800781, -0.76953125, 2.3398438, 0.7714844, 0.8334961, -0.44921875, 3.0058594, -1.7832031, 0.3527832, 1.6552734, -1.9482422, 0.14831543, -4.28125, -3.6484375, 0.6191406, -1.6591797, -0.059692383, 1.3632812, 0.18591309, -0.15234375, 1.8398438, -0.0692749, -1.7548828, -0.43847656, -1.15625, 0.3894043, -0.9892578, 0.52441406, 0.33398438, 0.03564453, -1.5722656, -2.3164062, 1.2519531, 0.87890625, 1.7470703, 0.8208008, -4.3125, 0.27783203, -2.3554688, -0.45996094, -0.4387207, -0.89453125, 0.9272461, -0.27075195, -0.044067383, -3.1210938, 1.7958984, 1.4130859, -2.0742188, 1.578125, 1.5683594, -0.81933594, -2.1074219, -0.1652832, 1.5849609, 3.0332031, -0.515625, -1.6953125, 0.61376953, 0.5498047, 0.2944336, -0.34228516, 0.58447266, 0.4970703, -2.1308594, 1.5263672, 1.7402344, 1.3886719, 1.5507812, 0.19091797, -3.09375, 0.24133301, -0.06072998, -1.1152344, -2.2128906, -0.7026367, 1.046875, -2.0644531, 0.94970703, -2.6640625, 1.2158203, -0.85498047, 0.4892578, -3.7304688, 2.7851562, 4.1289062, 2.75, 2.125, 0.1965332, 0.8105469, -0.8618164, 0.26220703, -0.7241211, 1.4736328, -0.38330078, -0.7006836, 2.4882812, 0.41918945, -0.9736328, -0.53564453, 1.3964844, -1.5859375, -0.3881836, -1.3535156, 1.2275391, -1.4833984, 0.32666016, 1.3007812, -0.03829956, 2.8046875, -0.32885742, 0.33398438, 0.11151123, 1.1191406, -3.1796875, 0.46435547, -0.83691406, -0.18969727, -0.14697266, 1.7275391, 1.7900391, -1.2382812, -0.06173706, -1.6435547, 1.8847656, -0.9111328, 1.2480469, 0.032287598, 1.1328125, 0.09185791, -1.7919922, 1.6298828, 2.4160156, 1.1298828, 2.7949219, 2.0800781, -3.0058594, 1.9960938, 1.0556641, -3.7988281, 1.7900391, 1.8779297, -0.67529297, 2.3808594, 0.5234375, -3.8457031, 0.578125, 2.765625, -0.9555664, 1.1542969, -1.0273438, -1.171875, 2.3125, -1.8261719, -0.074401855, 0.6269531, -0.5253906, 1.4970703, 0.8041992, 0.63623047, -2.3847656, 1.9208984, 1.2207031, -2.4589844, -1.4560547, 1.671875, -1.6367188, 0.35864258, -0.85058594, -1.1914062, -1.7880859, 0.16137695, 3.359375, 1.2851562, 1.0947266, 0.9868164, 2.4472656, -1.1669922, -0.112854004, -1.7060547, 3.3652344, -2.6191406, 1.859375, 1.5556641, -3.5019531, -0.4645996, -1.5693359, -0.4880371, -0.6982422, 1.953125, 1.3486328, 0.7011719, 0.74560547, 0.93115234, -1.6894531, -4.9453125, -0.14294434, -0.13928223, -0.2331543, 0.8510742, 1.5488281, -0.6333008, 2.1972656, 0.82470703, -1.3623047, -1.5029297, 0.79345703, 0.36816406, 0.2944336, -1.0273438, -0.18945312, -1.0029297, 0.027282715, -0.10632324, 1.921875, 0.05996704, -2.1679688, 0.52197266, 0.6069336, -1.0976562, 0.29711914, 1.6865234, 1.03125, -0.48583984, 0.70947266, 0.9399414, -1.7041016, 2.3222656, -2.4882812, -1.71875, 1.4306641, -1.4697266, 0.6245117, -0.020095825, -0.8251953, 1.046875, -0.68896484, 1.5947266, 2.0332031, -0.9160156, -1.2294922, -0.8647461, -0.01852417, -1.5830078, 1.4384766, -1.4775391, 0.92822266, 3.3808594, -1.3955078, -1.4326172, -1.3408203, -3.1738281, 1.9541016, -2.734375, -1.2050781, -2.765625, 1.015625, 1.4707031, 0.1385498, -0.43603516, 0.3857422, -1.0029297, -0.8491211, 0.89941406, -0.59033203, 5.9765625, 2.390625, -1.8544922, 0.98046875, -0.5703125, 0.44433594, 3.1835938, 0.010879517, -2.359375, 0.95410156, -0.5732422, 2.6875, -0.036834717, 1.21875, 1.25, 1.0566406, -0.39746094, 0.8540039, 3.3808594, -0.6982422, 2.4199219, 1.4511719, 0.087646484, -0.0020694733, 3.9765625, 0.9614258, -3.2265625, 2.3691406, -1.5917969, 0.57177734, -0.8613281, -1.1572266, -0.37060547, 0.6074219, -1.7070312, -2.8378906, -1.8544922, -1.4365234, 2.0742188, 2.2011719, -2.1601562, -0.75683594, 1.2197266, -0.114746094, 2.0253906, 1.5166016, 1.9970703, -2.0332031, 0.6435547, 0.6767578, 1.1835938, 0.8798828, -4.0429688, 1.4511719, 1.4990234, -0.375, -0.7763672, 2.4394531, 1.7167969, 2.3984375, -1.6474609, 0.31103516, 1.3583984, 1.5693359, 2.25, 0.6977539, 4.109375, 1.4746094, -0.93310547, 0.11694336, 1.3701172, 1.1435547, 0.45361328, -0.8857422, 1.984375, -1.2685547, -0.1484375, 0.10632324, -0.4873047, 0.68603516, -1.2607422, 0.33764648, 0.7109375, 0.4399414, -0.80371094, -0.84228516, -1.6738281, -0.45043945, -0.3996582, -0.24157715, 2.6621094, 0.38720703, 0.79541016, -1.6435547, -0.19616699, 0.69970703, -5.2539062, 0.11419678, 0.64697266, -0.24853516, -0.87060547, -1.3388672, 1.2861328, 1.0058594, -1.7119141, 0.22253418, 4.78125, 0.2446289, -0.08129883, -2.5683594, -0.48461914, -0.734375, 5.0546875, 0.31445312, -0.7871094, -0.13452148, -0.35986328, -4.4609375, -3.5957031, 2.9804688, 3.7753906, 1.421875, 0.9350586, -1.0458984, 3.1464844, -1.4541016, 0.68359375, -1.4384766, -0.31274414, -0.3618164, -2.1582031, -1.1416016, 0.35742188, -0.47729492, 0.1472168, 0.4321289, 1.3964844, -0.019836426, 0.8701172, 1.7539062, 2.015625, 1.375, 2.2480469, 1.1484375, -2.2675781, 3.6523438, -0.02557373, -1.5302734, -2.0996094, 2.2519531, 0.06414795, -0.5620117, 0.54345703, -1.4902344, -0.21948242, -2.3359375, 0.48828125, 0.30664062, -1.7685547, -0.9067383, 0.16442871, 0.04901123, -1.0761719, -0.28198242, 1.2705078, 2.2050781, 0.20166016, 2, 2.0019531, -1.1103516, 1.6328125, 0.38354492, -0.3232422, 0.026016235, 1.5693359, 0.6855469, 0.7480469, -1.8183594, 0.890625, 1.5644531, -0.25024414, -1.2988281, 0.70703125, -2.2382812, -1.4736328, -1.6259766, 1.1777344, 0.79296875, -1.5048828, 3.8613281, -0.35961914, -0.0154953, 1.5683594, -0.31054688, -0.5629883, -1.9228516, -2.0703125, -0.8886719, 0.1427002, -1.4833984, 1.2763672, 3.7226562, 0.5078125, -0.84472656, -0.25512695, -3.4941406, 0.08880615, -2.5664062, 1.8623047, -2.3261719, -1.484375, -1.2138672, 0.19177246, 0.33618164, -0.3642578, -0.8120117, -1.0810547, -1.8632812, 0.30029297, -1.2636719, 1.1787109, -0.80126953, 0.15234375, 1.5351562, 3.71875, 2.1445312, 0.24719238, 0.46191406, 4.421875, 0.5288086, -2.484375, -0.9355469, 0.38378906, 0.36083984, -1.1298828, -0.4008789, 2.7695312, -0.40625, -1.5185547, -0.6850586, -2.1152344]}, "B010ILB4KU": {"id": "B010ILB4KU", "original": "Brand: Weber\nName: Weber 51040001 Q1200 Liquid Propane Grill, Red\nDescription: \nFeatures: One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area\nPorcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body\nBuilt-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan\nDimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings\nUses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box\n", "embedding": [-0.35546875, 0.39819336, 1.7177734, 0.091918945, -2.109375, 0.85546875, -0.4777832, -0.95654297, 0.1005249, 1.8203125, 2.5332031, 0.53027344, 0.2088623, -3.4199219, 1.2363281, 0.5678711, 2.640625, 0.9316406, 0.36499023, 0.15063477, 0.44921875, 1.1181641, 1.3779297, -1.3496094, 1.9287109, 1.5732422, 4.6679688, -4.9414062, -1.6601562, -2.2011719, 1.0673828, 1.8681641, 0.92871094, 1.2998047, -3.0742188, -0.8496094, -3.6464844, 1.8183594, -2.1484375, 0.7246094, -0.86816406, -2.0410156, 1.0371094, -0.0034503937, -2.1191406, 0.7729492, 0.9658203, -0.22851562, -0.7597656, -0.5942383, 2.7539062, 1.1367188, -0.76416016, 1.4833984, -0.7167969, 2.4277344, -0.4958496, -1.6455078, 1.4296875, -0.41992188, 2.1269531, -0.64501953, -2.7070312, -0.52001953, -1.1083984, -0.0076675415, -1.1435547, -0.98535156, 1.9160156, 0.43164062, 3.6269531, -2.1933594, -0.8959961, 0.30444336, 1.9160156, -1.0849609, -2.1933594, 2.3867188, 1.3427734, -1.4746094, -1.1503906, 2.3808594, 0.6767578, -2.6035156, -0.08300781, 0.6933594, 0.06665039, -2.3476562, 3.2773438, 2.8222656, -0.15441895, 1.4199219, -2.5488281, -3.9472656, 1.5898438, -0.7055664, 1.1298828, 1.3457031, 0.7685547, 1.2373047, -2.1542969, 0.9472656, -1.7392578, -2.2167969, -2.5429688, -1.1523438, 0.82470703, 0.45581055, -3.6621094, -1.6738281, -1.5498047, 0.671875, 0.5600586, 1.2373047, 1.1201172, 1.0849609, 0.25512695, 1.9658203, 1.0625, 0.28759766, 2.6699219, -1.1064453, 0.2709961, -1.1259766, -0.4729004, 0.11804199, -0.9223633, 1.0791016, 2.6855469, -2.3320312, -1.1337891, -0.09832764, 3.9960938, 0.32617188, -0.40722656, -0.29492188, -1.6660156, -0.9145508, -1.9765625, -0.22009277, -1.1855469, 0.9248047, 0.8779297, -0.3010254, -3.9121094, -0.3959961, 0.5629883, 1.1083984, 0.19384766, -1.5966797, 0.67578125, -1.6767578, -0.6435547, -0.5996094, 1.5595703, 1.0166016, -1.6396484, -0.07159424, 3.5644531, 1.8242188, 1.3925781, -0.74853516, -0.59814453, 0.53759766, 0.59716797, 0.8286133, 1.4453125, 1.5, -0.99365234, 1.4033203, -0.5083008, -1.0898438, -0.6640625, 0.9355469, 1.0625, -1.921875, 0.3149414, 1.9580078, -0.5053711, -0.6791992, -1.5791016, -2.5820312, -0.048217773, -0.14355469, 0.4711914, -0.7055664, -0.20263672, -0.7480469, 1.34375, -1.7744141, 0.703125, 0.34155273, 1.7529297, -1.25, 0.5463867, -0.9946289, -0.5878906, -2.2519531, 0.85791016, -0.009101868, -0.5957031, -0.93408203, 1.1572266, 0.9746094, -0.14453125, -2.3164062, -0.5107422, -2.1035156, 1.1835938, 1.5087891, 2.3691406, -1.8681641, 1.1699219, -1.1591797, -0.18823242, -2.5722656, 1.8759766, 0.007194519, 0.71435547, 2.0898438, -2.1835938, -0.21716309, 0.7602539, 2.5351562, 0.94091797, -0.52734375, 0.47827148, 0.3190918, -3.2675781, -0.50439453, 3.2675781, -0.015029907, -0.6767578, 0.09515381, 0.6303711, 2.875, 1.2822266, -0.49414062, -0.012741089, -0.7128906, 0.13049316, 0.9667969, -1.6816406, -1.6630859, 0.0045928955, -0.12939453, -2.5175781, 1.5732422, 1.2060547, -0.040527344, -0.0847168, -0.51123047, 0.6928711, 1.1845703, -0.79833984, 0.98828125, -2.078125, 1.2568359, -0.21801758, -2.8125, 2.2617188, 0.1427002, -0.40283203, 0.13012695, 1.1367188, -1.2353516, 2.8027344, 2.5722656, -1.6396484, -1.1679688, 0.671875, 0.1862793, 0.52685547, -1.2255859, 1.3994141, 1.6816406, -1.7519531, 2.3789062, 0.80566406, 0.46313477, 0.2866211, -0.89697266, 1.8085938, -3.5117188, -0.53515625, 0.1640625, 0.35009766, -1.4306641, -2.3808594, -0.14648438, 3.515625, 0.39916992, -2.2617188, 3.6679688, -2.4414062, 0.5957031, 1.6552734, -0.37573242, -0.43139648, 0.22363281, 2.0117188, 0.10986328, 0.21838379, 1.3183594, 0.14575195, -2.0976562, 0.097839355, -3.7988281, 1.1845703, 1.8046875, -0.62109375, -1.1386719, -2.4238281, 1.6132812, -2.5058594, -2.5117188, 2.1132812, -4.578125, 0.2619629, -1.5419922, 2.2675781, 0.19763184, -1.4570312, -0.7167969, -1.5849609, -0.18078613, -0.9091797, 0.51660156, 0.42236328, -1.9316406, -0.4880371, -0.6875, -0.22607422, -1.7666016, -1.3339844, -1.5234375, -1.9189453, -3.3105469, 1.9941406, -1.0859375, 0.013717651, 2.0898438, -3.046875, 0.28979492, 0.9145508, -3.4746094, -0.64453125, -1.6767578, -0.8666992, -1.2832031, 1.1943359, 1.015625, -1.4355469, -4.265625, 0.7470703, -0.30737305, 0.41992188, -0.8105469, -0.7680664, -0.7114258, 0.9238281, -0.48364258, -0.6176758, 0.80371094, 1.9638672, -1.46875, 1.046875, -1.8994141, 0.5083008, -2.4199219, 0.9511719, 0.39819336, 0.7753906, -3.3164062, -1.7050781, -0.9707031, -0.6401367, 3.9726562, 0.2685547, 1.2861328, 0.38916016, 1.5205078, 1.4824219, -0.15002441, -1.96875, 1.2441406, 0.56640625, -1.6972656, -1.5546875, -3.6894531, -1.2578125, -2.9726562, 0.11352539, 0.43676758, -0.042785645, -2.2832031, -1.0410156, -0.6430664, -1.0507812, -0.19848633, 0.24267578, -0.96191406, -1.3798828, -2.5742188, -0.9140625, -1.6113281, 0.91064453, -1.1035156, 1.9677734, 0.61376953, 1.6162109, 2.4511719, -0.4975586, 1.7626953, -1.2871094, -4.609375, 4.0234375, 0.83984375, -2.8847656, 1.2490234, -2.2382812, -3.0566406, -1.3652344, -0.04031372, 2.3222656, 2.2792969, 2.5117188, 2.1367188, 1.328125, -0.4494629, -1.1005859, 0.32495117, -1.3457031, 1.2675781, 3.125, -2.6835938, -2.0195312, 0.8022461, 1.4072266, -3.546875, -1.2060547, 2.1054688, 1.6162109, 2.859375, 1.7314453, 1.9453125, -0.68847656, -0.6845703, 1.78125, 2.0273438, -0.8417969, 0.1517334, -0.20361328, 1.1923828, -0.45214844, 1.3457031, 2.5195312, 0.7558594, 1.4248047, 2.8242188, 1.3046875, -0.13208008, -0.49145508, 0.03579712, 0.8383789, 0.4020996, 2.0351562, -1.0263672, 0.15124512, -0.6020508, -0.87402344, -0.08892822, -0.35180664, -1.0390625, 3.3574219, 0.8066406, -0.66064453, 1.2695312, 2.078125, 1.2216797, -0.36694336, -0.20788574, -0.66552734, -0.27319336, 2.5742188, -0.87353516, 0.039398193, -1.3173828, 1.03125, 0.07196045, -2.1347656, 0.18920898, 3.15625, -1.8652344, -1.2919922, 0.2705078, -1.3535156, 0.14538574, 1.6337891, 1.1044922, -1.1220703, 0.59375, -2.4707031, 1.6689453, -0.12487793, -1.3798828, -0.8642578, -1.2597656, 0.6621094, 0.49731445, 1.8652344, 2.5449219, 0.17687988, -2.421875, 0.4169922, -4.0351562, -2.5625, 0.81591797, -2.5332031, -0.82470703, 1.3125, -0.19824219, 1.5322266, 0.29077148, 2.3828125, -1.0810547, 0.55078125, 1.7900391, -2.0371094, -0.7368164, -3.5722656, -4.3164062, -0.18444824, -0.9790039, -0.27661133, 1.5878906, 0.06689453, 0.07232666, 2.7421875, 0.7060547, -2.1035156, -1.1533203, -1.3974609, 0.52197266, -0.56591797, 1.6396484, 1.5556641, -0.6953125, -2.0332031, -1.9189453, 0.12463379, 0.40405273, 1.3730469, 1.5244141, -4.5273438, 0.57177734, -1.6679688, -0.37451172, -1.0439453, -0.17053223, 1.4296875, 1.7529297, 0.093933105, -2.0976562, 1.8847656, 0.44458008, -0.050323486, 2.7089844, 2.3730469, -0.5786133, -3.5039062, 0.62939453, 1.8007812, 3.1855469, -0.6254883, -1.7871094, -0.73828125, 0.9555664, -0.9345703, 0.8261719, 0.09313965, 0.79589844, -1.0097656, 1.2060547, 1.6660156, 1.5673828, 1.4853516, 0.6010742, -2.1894531, 0.63916016, -0.28027344, -3.125, -1.6289062, 0.12432861, 0.671875, -1.1416016, 0.29492188, -2.0136719, 0.69873047, -0.38671875, -0.6118164, -4.1289062, 3.375, 3.8359375, 2.2695312, 2.4726562, -0.8515625, 1.0605469, -0.4416504, -0.44140625, 0.12561035, -0.12670898, -0.26171875, -0.12219238, 2.8769531, 1.1035156, -1.4169922, 0.050476074, 1.6113281, -1.5947266, 0.04333496, -2.3339844, 1.1923828, -1.1650391, -0.28027344, 0.71484375, -0.6220703, 1.5722656, -0.27001953, -0.57666016, -1.1328125, 0.69433594, -1.1337891, 0.14660645, 0.18615723, 0.3955078, -0.21899414, 0.5644531, 1.3447266, -0.9458008, -0.62402344, -1.09375, 0.97265625, -1.4111328, 0.033569336, 0.29418945, 0.8261719, -0.78515625, -0.6567383, 1.3183594, 2.2089844, 1.6269531, 3.3730469, 2.3476562, -1.6337891, 1.8730469, 1.1484375, -1.9150391, 2.0976562, 1.0927734, -0.94433594, 2.5644531, 0.09741211, -4.3671875, -0.17590332, 1.2148438, 0.32055664, 0.61816406, -1.7333984, -0.70996094, 1.390625, -1.796875, -0.6850586, -0.46313477, -1.0175781, 0.6948242, 0.25219727, 0.28637695, -1.4902344, 1.5390625, 2.1054688, -1.1962891, -1.7783203, 1.3261719, -1.5048828, 0.48339844, -1.0166016, -1.3867188, -2.0410156, -0.70751953, 2.3359375, 1.1142578, 0.76220703, 0.18774414, 1.9208984, -0.77441406, -0.016448975, -1.0810547, 2.3613281, -3.3046875, 0.032562256, 1.3173828, -3.8417969, -0.078552246, -2.2226562, -1.1679688, -0.059295654, 1.6992188, 1.7441406, -0.27148438, -0.09454346, 1.2519531, -1.7421875, -3.5625, -0.6274414, 0.10809326, 0.13415527, 1.1308594, 0.93310547, -0.9238281, 1.4951172, -0.5493164, 0.080444336, -0.57958984, 0.60839844, -0.73583984, -0.3034668, 0.21911621, 0.4333496, -1.4355469, 0.6069336, 0.5317383, 1.4599609, 0.42700195, -1.28125, -0.37841797, 0.27270508, -0.9555664, -0.023757935, 2.609375, 1.5927734, -0.52783203, 0.9526367, 1.5166016, -3.59375, 3.0117188, -2.0957031, -2.0253906, 1.0351562, -0.36914062, 0.9526367, -0.80566406, -0.6479492, 0.06402588, -0.5957031, 1.5039062, 1.3408203, -0.64453125, -0.72216797, -0.21520996, 0.20361328, -0.5209961, 1.1533203, -0.30981445, 0.30859375, 2.4296875, -1.0253906, -1.0351562, -1.5625, -2.7949219, 0.64697266, -2.1308594, -1.2783203, -1.7919922, 0.25146484, 1.6845703, 0.87646484, -1.4707031, 2.3222656, -0.92089844, -1.0546875, 1.3916016, -0.4934082, 5.0585938, 3.9414062, -1.2792969, -0.22766113, -1.3613281, 1.1279297, 2.1523438, 0.025527954, -1.1894531, -0.18554688, -0.45410156, 0.30615234, -0.27661133, 1.4111328, 1.3505859, -0.1262207, -0.016616821, 1.3896484, 3.6367188, -1.96875, 2.09375, 0.7602539, 0.99902344, -0.04736328, 3.7734375, 0.11053467, -2.6542969, 1.1777344, -2.5371094, 1.7480469, -1.4824219, -0.9633789, -0.29785156, -0.62890625, -1.9423828, -2.2324219, -1.7363281, -2.1308594, 1.7216797, 2.2246094, -1.8691406, -0.72558594, 1.5898438, -0.52197266, 2.1445312, 1.8466797, 1.8183594, -1.3974609, 0.19104004, 0.068115234, 0.44360352, 1.8896484, -4.1679688, 2.1621094, 1.5283203, -0.45874023, -2.0761719, 1.8398438, 0.021713257, 1.6113281, -0.19177246, 2.2519531, 2.0117188, 2.1308594, 2.4003906, 0.9589844, 3.8203125, 0.86816406, -1.0244141, 0.79248047, 1.6152344, 0.5566406, 1.2138672, -2.0332031, 1.8076172, -1.6152344, -0.50146484, -0.14855957, -1.21875, 1.5947266, -2.2363281, 0.92626953, 0.80810547, 2.0625, -0.63720703, -0.44091797, -0.17016602, 0.47216797, 0.25708008, -0.8227539, 2.9960938, 1.2236328, 0.48828125, -0.1673584, -0.0118255615, 1.2382812, -4.1289062, 1.3007812, 0.7783203, -1.8212891, -0.7836914, -1.9335938, 1.5703125, 0.2479248, -0.42944336, 0.39746094, 3.7011719, 0.9746094, 1.0859375, -1.5888672, -0.8457031, 1.0458984, 3.5585938, 0.3803711, -0.043762207, 0.21618652, -0.49023438, -4.1757812, -3.7695312, 3.3378906, 2.6777344, 1.1289062, 0.057159424, -1.5839844, 3.9902344, -0.8666992, 0.26220703, -0.68310547, 0.64404297, -0.01550293, -3.9511719, 0.7211914, 0.008377075, -0.6376953, 0.88134766, 0.22729492, 1.0761719, 0.9223633, 1.3496094, 1.3642578, 0.38012695, 1.6103516, 2.3808594, 1.5566406, -2.0996094, 2.4785156, -0.6635742, -1.8730469, -1.4267578, 2.2910156, 1.4111328, 0.11383057, 0.24365234, -1.546875, -0.12536621, -1.2978516, -0.033996582, -0.38085938, -2.1855469, 0.6748047, 1.1884766, 0.6069336, -1.2978516, -0.19702148, 2.3222656, 2.2382812, -0.1161499, 0.72265625, 2.7109375, -0.98291016, 1.3808594, -1.1865234, 0.7338867, 0.17675781, 1.4755859, 0.75097656, -0.07409668, -0.9458008, 0.20422363, 1.7236328, 0.2175293, -0.7944336, -0.059692383, -0.95751953, -0.9868164, -0.43041992, 0.025909424, 0.1772461, -2.15625, 2.6660156, -0.49414062, -0.7373047, 2.0195312, -0.1373291, -0.05545044, -2.6132812, -2.5253906, -1.2460938, -0.22473145, -0.77978516, 2.1679688, 3.5625, -0.625, -0.29858398, -1.7265625, -3.3828125, -1.1542969, -3.4160156, 2.0703125, -0.8486328, -1.7441406, -1.6552734, 0.58984375, 1.4980469, -0.44921875, -0.44995117, -0.28979492, -2.3554688, 1.203125, -0.7895508, 0.11968994, -1.0976562, -0.022994995, 1.7109375, 2.9804688, 0.89697266, 0.6064453, 0.15161133, 3.1660156, -0.3828125, -2.1015625, -0.025039673, 1.1796875, 0.75927734, -0.80908203, 0.7211914, 2.1425781, -0.17590332, -0.30908203, -0.35595703, -2.8007812]}, "B07H5Z54J8": {"id": "B07H5Z54J8", "original": "Brand: Weber\nName: Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "embedding": [-1.5869141, -0.10522461, 1.9716797, -0.44873047, -1.1835938, 1.0332031, -0.29077148, -1.0917969, 1.4228516, 0.55810547, 1.5078125, -1.3105469, 1.5703125, -3.0195312, 0.078063965, 0.23632812, 2.3535156, 1.8857422, -1.3183594, 0.58496094, 1.8134766, -0.6591797, 0.7314453, -1.4501953, 1.0009766, 1.4335938, 4.3398438, -6.78125, -0.5991211, -0.8652344, 2.2050781, 0.5654297, 1.0654297, 2.6503906, -2.65625, -1.59375, -2.078125, 1.3251953, -2.8164062, 1.453125, -0.3564453, -1.1083984, 1.4863281, -0.32080078, -0.88964844, 1.2744141, 0.5839844, 0.42749023, -1.8574219, 0.29418945, 4.1132812, 1.5556641, 0.05053711, 0.87890625, -0.12298584, 2.46875, -0.37109375, -1.0078125, 2.2539062, 0.29077148, 1.6474609, -1.3271484, -2.84375, -1.4667969, -1.2646484, -0.4267578, 0.8857422, 1, 0.4008789, -0.859375, 4.3671875, -0.5517578, -1.7695312, 0.61376953, 0.59521484, -2.4960938, -1.8066406, -0.03967285, 0.60253906, -1.4355469, -1.9013672, 2.5761719, 1.9921875, -3.1113281, -0.0847168, 1.2919922, 1.3271484, -2.4882812, 1.6464844, 0.6875, -0.35742188, 0.058441162, -1.4150391, -3.0546875, 1.6220703, -0.31518555, 1.578125, 1.1865234, -1.2597656, 2.03125, -1.4619141, 1.1748047, -1.4677734, -1.1103516, -3.9082031, -2.0195312, 1.4316406, -0.5078125, -2.0898438, -0.9580078, -1.3603516, 0.49047852, 1.7529297, 2.1679688, 1.4033203, 1.6357422, 0.13244629, 1.5, 0.32836914, 0.94433594, 3.1171875, -1.5449219, -0.11621094, -1.1982422, -1.3789062, -2.3007812, 0.22644043, 0.79785156, 3.8769531, -2.0800781, -0.37695312, 0.51953125, 4.21875, 0.28100586, -1.59375, -1.7050781, -0.73535156, -0.703125, -3.4160156, 0.5019531, -0.39257812, -0.4868164, 1.4433594, -1.2509766, -3.3867188, 0.29663086, -0.953125, 0.19396973, 0.45239258, -1.7402344, 0.72265625, -1.046875, -0.80615234, -1.3808594, 1.7167969, 0.18518066, -1.0195312, 0.86376953, 2.59375, 2.3457031, 2.2675781, -1.1933594, -1.4306641, -2.0683594, 1.6914062, 1.59375, 0.72753906, 1.4873047, -0.37890625, 1.7763672, -0.6430664, -1.5029297, -0.70996094, -0.006252289, 1.9091797, -2.59375, -0.80566406, 0.58203125, -0.31518555, 1.0751953, -0.9506836, -0.80322266, 0.31811523, -1.4589844, 0.3071289, -0.44921875, -0.2076416, 0.31054688, 2.8222656, -0.75390625, 0.5449219, -0.7597656, 1.2861328, 0.2866211, -0.14294434, -1.5966797, -1.4599609, -0.3840332, 2.53125, -1.3574219, -0.7207031, -0.7290039, 1.1533203, 1.0214844, -1.09375, -2.703125, -1.8369141, -2.6757812, 1.0146484, 1.3105469, 1.5820312, -0.6196289, 0.7885742, -1.2978516, -0.4934082, -0.98779297, 3.1132812, 1.7470703, 0.7109375, 1.2177734, -0.8417969, -1.4628906, 0.37841797, 1.1113281, 0.22692871, 1.3300781, 1.3720703, -0.6088867, -3.7773438, -1.1425781, 2, -0.40698242, 0.34228516, 0.55859375, 1.1289062, 2.78125, 1.078125, -0.98876953, -0.22143555, 0.72509766, -0.63378906, 0.32421875, -2.6855469, -1.8339844, -0.6542969, 0.05267334, -1.5527344, 2.6464844, 0.27124023, 1.1220703, 0.44873047, -0.4946289, 1.4404297, 0.43017578, 0.38330078, 0.58251953, -1.1591797, 2.1503906, 0.62841797, -2.6777344, 1.7998047, 0.8823242, 0.36108398, 0.5004883, 0.8935547, -1.4248047, 1.2216797, 2.7011719, -1.3115234, -1.6777344, 1.3183594, -0.033081055, 0.48291016, -0.54248047, 2.7402344, 1.9960938, -0.48413086, 2.7304688, 0.07409668, 1.4072266, -0.4921875, -0.8125, 0.89501953, -3.03125, -0.13793945, 0.28833008, 0.9082031, -1.6777344, -1.8027344, 0.65966797, 3.7421875, -0.5571289, -2.6542969, 2.78125, -1.3759766, 0.36083984, 1.8564453, -0.41479492, -0.14892578, 1.1787109, 1.8291016, -0.40625, 1.9570312, 0.96484375, -0.2849121, 0.3095703, 1.0146484, -2.4042969, 0.3330078, 1.4589844, -1.2880859, -1.0478516, -1.8408203, 1.5224609, -2.3691406, -0.69921875, 1.8330078, -3.1972656, 1.0234375, -1.6796875, 2.6875, 0.52978516, -2.5800781, -0.98828125, -1.0722656, 0.29077148, -0.9814453, 1.0302734, 0.36010742, -2.7226562, -0.26879883, -0.40185547, -0.5341797, -2.7070312, -1.2490234, -2.0566406, -2.2480469, -2.796875, 1.1435547, -1.203125, -0.77246094, 1.1630859, -1.6015625, 0.6635742, 0.97753906, -2.6660156, -0.11279297, -0.19018555, -0.25634766, -1.1005859, 1.0097656, 0.5649414, -1.0078125, -1.8662109, 0.5336914, -1.9619141, 1.5292969, -0.4399414, -0.08062744, 1.2949219, 1.2402344, 0.6123047, 0.020248413, 1.3896484, 1.8974609, 0.27905273, 2.2070312, -2.4609375, -0.8076172, -3.3554688, 1.3457031, -0.0060157776, 1.1142578, -3.4980469, -1.9384766, -0.18566895, -1.5478516, 3.6542969, 1.0029297, 0.6879883, 0.4777832, 0.76464844, 1.2138672, -1.7724609, -1.4091797, 0.40722656, 0.5336914, -2.0292969, -1.1445312, -1.9042969, -1.4921875, -2.0195312, 0.57421875, 0.42089844, -1.2001953, -2.4355469, 0.3647461, -2.2753906, -0.73828125, -0.92041016, 0.14025879, 0.00051259995, -2.3476562, -2.2382812, -0.015541077, -1.6611328, -0.96484375, -1.4013672, 1.2841797, -0.19348145, 0.28759766, 1.1992188, -1.7539062, 1.4355469, -1.0214844, -4.5625, 2.4003906, -0.28686523, -2.9980469, 2.8339844, -2.6679688, -1.6005859, -3.5546875, -0.46484375, 3.0058594, 2.0917969, 0.20446777, 0.79833984, 1.4873047, -0.8491211, -1.0800781, 0.7988281, -1.5517578, 0.3059082, 2.8398438, -2.5566406, -0.54003906, 0.80810547, 1.1132812, -1.8925781, -2.2539062, 3.0058594, 2.484375, 2.2109375, 0.94970703, 2.1660156, 0.73339844, -1.5458984, 0.36450195, 0.4399414, -0.49975586, 0.5751953, -0.39233398, 0.63964844, -1.8203125, 2.6054688, 1.1240234, 0.87890625, 1.0478516, 2.3554688, 1.3554688, 0.28222656, -0.5439453, -0.21972656, -0.2133789, -0.5678711, 2.234375, -2.0058594, -0.007610321, 0.32885742, -1.5048828, 0.8515625, -0.0904541, -1.3613281, 2.8300781, 0.5019531, -1.5361328, -0.18103027, 2.40625, 1.3603516, 0.5957031, -0.4494629, -1.8876953, -1.515625, 1.6650391, -0.9716797, -0.22607422, -2.3457031, 0.012397766, -1.6113281, -2.9160156, 1.2763672, 4.0078125, -1.1464844, -1.4072266, 1.0654297, -1.7158203, -0.67041016, 2.3105469, 0.94873047, -1.6816406, 0.50146484, -1.7636719, 1.4277344, 0.28979492, -0.39111328, -1.1552734, 0.42504883, 0.37890625, -0.6635742, 1.6953125, 1.84375, 0.06414795, -1.7021484, 0.72509766, -3.9746094, -1.8291016, 0.5805664, -2.3066406, -2.1601562, 3.6367188, 0.3701172, 1.0654297, -0.51171875, 3.7714844, -1.1103516, 0.88134766, 2.3691406, -2.6953125, 1.3525391, -3.734375, -2.9472656, -0.38061523, -1.0439453, 0.38867188, 1.7304688, 0.27905273, 1.0087891, 2.8320312, 1.515625, -2.015625, -0.7524414, -0.9770508, -0.2734375, -0.8964844, 0.16101074, -0.41479492, -1.1230469, -2.6367188, -2.2636719, -1.2763672, -0.953125, 0.048706055, 3.0585938, -3.4511719, 0.61328125, -0.42895508, -1.3144531, -2.5585938, -0.043670654, 1.7685547, 0.0690918, 0.70751953, -2.7382812, 0.6176758, 0.85839844, -0.97509766, 2.2949219, 1.9365234, -0.82128906, -2.6035156, 1.4921875, 1.4335938, 3.3300781, -1.2871094, -2.96875, -0.48242188, 2.34375, 0.73339844, -1.5693359, -0.12512207, 0.79785156, -1.3222656, 1.28125, 0.8120117, 1.7392578, 1.6591797, -0.2902832, -2.5117188, 0.48339844, -0.6269531, -0.0047569275, -1.4228516, -0.048950195, 1.0878906, -1.4277344, 0.35424805, -2.2441406, 3.2421875, -1.6386719, -0.099853516, -4.3945312, 2.4550781, 3.6289062, 2.8671875, 3.0253906, -1.4160156, 0.9013672, 0.84228516, -0.60595703, -0.7685547, 1.2773438, -1.8027344, -0.70751953, 2.8613281, 0.29077148, -1.9208984, -0.92333984, 1.0576172, -1.6123047, 0.6948242, -1.9111328, -0.7866211, -0.8105469, 0.28515625, 1.4228516, -0.75634766, 4.015625, -1.1035156, -0.8564453, 0.7548828, 1.5449219, 0.19116211, 1.4941406, 0.8652344, 0.7495117, -0.42626953, 1.4042969, 1.765625, -0.8125, 1.5126953, -1.7558594, 0.2602539, -2.1425781, 0.6381836, 1.6337891, 0.20275879, -0.6147461, -0.22045898, 1.5273438, 2.7714844, 2.3671875, 2.4003906, 1.9042969, -2.7148438, 2.65625, 0.9140625, -3.5859375, 1.9179688, 1.2734375, 1.0292969, 2.1933594, 1.9824219, -3.3339844, -0.029785156, 2.1738281, -0.037750244, 0.86865234, -1.0585938, -0.6435547, 3.0019531, -1.8525391, -1.3408203, -0.2866211, -0.5258789, 0.9589844, 0.94628906, 0.14819336, -2.5, 1.3056641, 2.5761719, -1.4179688, -2.8261719, 1.5693359, -0.8745117, 0.3647461, -2.2011719, -0.5234375, -1.7021484, -0.3515625, 2.8632812, 2.2792969, 1.4306641, -0.2536621, 1.2001953, -1.4736328, -0.4633789, -2.5273438, 1.7685547, -1.9599609, -1.8779297, 0.6118164, -2.8339844, 0.5859375, -1.7470703, -1.8671875, -0.625, 1.0234375, 0.44995117, 0.5878906, -1.2236328, 0.92626953, -1.5234375, -2.6210938, -0.7084961, 0.48632812, 0.1850586, 0.8305664, 1.8779297, -1.3007812, 0.049865723, -0.66259766, -0.05493164, -1.6982422, 0.671875, -1.0039062, -1.1103516, -1.0712891, -1.0087891, -1.7958984, 0.9448242, 1.9677734, 0.08099365, 0.9609375, -3.0488281, -0.5600586, 0.86865234, -0.7495117, 1.1181641, 1.6435547, 0.56103516, -0.5649414, 1.2832031, 0.7338867, -2.0957031, 2.59375, -2.0878906, -0.87060547, 1.5029297, -0.2878418, 1.2265625, -0.47558594, 0.25854492, -0.1920166, -0.8027344, 2.2304688, 2.0839844, -1.7861328, -0.73095703, 1.6523438, -0.57177734, -1.0292969, 0.74609375, -0.047332764, 1.1845703, -0.08496094, -1.4658203, -0.49926758, -1.6015625, -1.6386719, 1.7773438, -3.4824219, -0.73339844, -0.9296875, 0.63378906, 1.9902344, 0.37109375, -1.6894531, 2.5097656, -0.5722656, -1.6728516, 0.0058059692, -0.20251465, 4.1875, 4.1328125, -0.01411438, -0.32421875, -1.2021484, 0.40161133, 1.3300781, 1.3476562, -1.6914062, 1.2167969, -1.3154297, -0.57470703, 0.16040039, 1.703125, 0.97998047, 0.5834961, -1.2304688, 0.17468262, 3.5957031, -0.8105469, 0.9838867, 1.2861328, -0.4013672, -0.2388916, 3.546875, -1.03125, -4.3554688, 1.2578125, -2.3359375, 1.8164062, 0.10015869, -1.375, 0.38549805, -1.0068359, -2.6289062, -2.6699219, -2.8710938, -2.2109375, 1.2958984, 2.1757812, -2.3359375, -0.875, 1.5820312, 0.006477356, 4.9179688, 1.296875, 2.6660156, -2.2363281, -0.52685547, -1.0732422, 0.41455078, 0.046783447, -4.8398438, 2.3085938, 1.0107422, -1.6835938, -2.109375, 2.1230469, 0.17053223, 2.15625, 0.703125, 1.2910156, 1.9785156, 2.1523438, 1.0175781, 1.0859375, 1.4443359, -0.52978516, -0.7753906, -0.20373535, 1.5849609, 0.8754883, 1.7128906, -1.265625, 2.8046875, -2.859375, -0.1262207, -0.4892578, -1.2158203, 2.3769531, -2.7050781, 0.11987305, 0.6894531, 2.3378906, -1.0917969, -1.2412109, 0.6044922, 0.48583984, 0.48120117, 1.0195312, 2.1191406, 1.1835938, 0.9638672, -1.4306641, 0.11401367, 2.5234375, -3.8769531, 0.5180664, 0.8105469, -0.85839844, -1.9384766, -1.8154297, 2.0292969, 0.7758789, -0.6953125, 0.38964844, 2.7929688, 0.5234375, 0.6142578, -2.8027344, -0.7236328, -0.88378906, 3.6582031, 0.30371094, -0.37890625, 0.63427734, -1.2529297, -4.1210938, -3.3457031, 3.8945312, 1.3837891, 1.4726562, 0.053344727, -1.2636719, 2.9003906, 0.04006958, 2.2382812, -0.9042969, 0.875, -1.8232422, -3.2578125, -0.38061523, 1.0878906, -0.40966797, 0.63720703, 0.47607422, -0.056732178, 0.9980469, 1.5283203, 1.5917969, -0.05731201, 0.6845703, 2.6210938, 1.4619141, 0.13098145, 1.2949219, 0.19921875, -1.4365234, -1.5048828, 2.328125, 1.5478516, 0.51660156, 0.2866211, -0.9790039, 0.43554688, -0.1352539, -1.3369141, 2.3867188, -2.4316406, -0.36767578, 1.1660156, 0.70166016, -1.1699219, -0.51708984, 2.8398438, 2.984375, -0.25073242, 0.61035156, 3.3515625, -0.068725586, 1.8798828, 1.0136719, 0.06738281, -0.2211914, 1.2734375, -1.4521484, 0.6713867, -1.1533203, 1.6914062, 1.2734375, -0.45043945, -1.1318359, 0.08886719, -0.9868164, -1.0839844, -0.04675293, -0.18688965, -1.0283203, -1.6337891, 2.7109375, -0.2854004, -1.5478516, 2.8339844, -0.35620117, 0.35742188, -3.2988281, -2.4589844, -0.6152344, -1.7675781, -0.42749023, 0.9765625, 3.7421875, 0.54248047, 0.09350586, -0.63427734, -3.3984375, -1.7050781, -2.859375, 2.6816406, -2.3691406, -1.7558594, -1.8134766, 0.3852539, 1.8798828, -0.54248047, 0.36132812, -0.45263672, -2.9433594, 1.5400391, -0.1940918, 0.7753906, -0.70410156, 0.7207031, 2.1308594, 2.5253906, 1.0537109, 0.8491211, -0.33447266, 2.1191406, 0.03604126, -1.1347656, -1.1660156, 0.8256836, 0.46850586, 0.035583496, 1.1650391, 1.4804688, 0.087768555, -0.6972656, 0.98583984, -1.7539062]}, "B077K1MK8N": {"id": "B077K1MK8N", "original": "Brand: Weber\nName: Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color\nGrill dimensions: Lid Open - 57\"H x 48\"W x 26\"D. Lid Closed - 44.5\"H x 48\"W x 27\"D. Each cooking grate is 10.16\u201d x 17.5\", for a combined measurement of approximately 20.32\" x 17.5\"\nPropane gas grill works with Standard 20 lb LP tank.\nFeatures: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame\nTwo burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system\n", "embedding": [-2.5625, -0.0017375946, 2.0976562, -0.7890625, -2.3632812, 1.3154297, -0.39160156, -0.42578125, 1.2705078, 1.1826172, 2.7285156, 0.7529297, 0.9536133, -4.2070312, 0.04763794, 0.58740234, 2.2578125, 1.3632812, 0.9291992, 0.22912598, 1.3349609, 0.46289062, 1.1572266, -0.53271484, 1.4482422, 1.2265625, 3.640625, -5.0351562, -0.008773804, -3.0820312, 1.3027344, 0.8925781, 0.5185547, 2.3652344, -3.140625, -1.7646484, -2.9902344, 1.1875, -3.2246094, 0.33276367, -0.08337402, -0.85498047, 1.3847656, -0.74316406, -1.7353516, 0.8178711, 0.64404297, 0.9663086, -1.2128906, -0.11437988, 2.6328125, 0.94628906, -0.1817627, 1.4482422, -1.2529297, 2.4726562, 0.43798828, -1.9003906, 1.8105469, -0.24536133, 2.359375, -0.077819824, -2.8359375, -1.6425781, -1.2363281, 0.18774414, 0.7182617, 0.6513672, -0.64990234, -0.47143555, 3.6640625, -1.9824219, -1.40625, 0.89746094, 1.4453125, -2.4550781, -2.4785156, 2.2402344, 1.109375, -1.3789062, -0.52197266, 2.7792969, 0.91796875, -1.5048828, -0.05706787, 1.5703125, 1.5302734, -1.1474609, 2.1191406, 1.1923828, -0.23474121, 0.5541992, -2.0546875, -3.0917969, 1.328125, -0.5385742, 3.0097656, 1.0400391, -1.1054688, 0.69189453, -2.1210938, 1.1396484, -1.5742188, -1.6289062, -2.5917969, -0.44506836, 0.8984375, 0.37060547, -1.46875, -0.7890625, -1.6621094, -0.49487305, 0.82470703, 0.79052734, 0.8178711, 2.2617188, 0.20812988, 2.4648438, -0.17810059, 0.84765625, 3.4550781, -1.0048828, 0.3034668, -0.3984375, -1.9990234, -0.7729492, 0.78125, 1.90625, 3.3027344, -1.53125, -0.9707031, 0.4855957, 3.7617188, 0.31103516, -0.6152344, -1.5390625, -1.21875, -1.1914062, -2.5605469, -0.07952881, -1.796875, -1.1025391, 1.3515625, -1.8818359, -3.2851562, -0.5986328, 0.44140625, -0.24890137, 0.81103516, -2.2363281, -0.96533203, -1.3232422, -1.5986328, -1.7695312, 2.1796875, 0.8232422, -0.03741455, 0.37182617, 2.7539062, 2.4433594, 1.4296875, -2.1113281, -1.6337891, -0.6196289, 0.54541016, 0.76123047, 1.7470703, 0.3256836, -0.4013672, 1.5976562, 0.6538086, 0.22241211, 0.296875, 0.56152344, 1.6767578, -2.7988281, -1.2392578, 1.796875, 0.035369873, -0.2578125, -2.0976562, -0.83935547, -0.22473145, 0.7060547, 0.051361084, -0.8222656, -0.74853516, 0.84228516, 2.2148438, -1.5664062, 0.49316406, -0.34033203, 1.3603516, -0.29467773, 1.8486328, -1.8339844, -1.1767578, -1.9824219, 1.8330078, 0.5415039, -1.15625, -1.0634766, 0.41479492, 0.5786133, -1.3984375, -1.7119141, -1.2070312, -2.5957031, 1.3984375, 2.2089844, 1.1796875, -1.8720703, 1.2480469, -0.94189453, 1.3183594, -1.4619141, 2.875, 0.94677734, 1.4521484, 1.3125, -1.1162109, -0.6767578, 0.99121094, 3.5722656, 0.73046875, 0.6401367, 0.10211182, 0.24597168, -3.3007812, -0.5444336, 2.4453125, -0.1998291, 0.20910645, 1.0214844, 0.41601562, 3.1328125, -0.008560181, -0.22351074, -1.2353516, 0.8496094, 0.9946289, 0.73876953, -2.0585938, -0.80371094, 0.25341797, -0.8173828, -1.7646484, 2.7519531, 0.8330078, -0.12310791, 1.5029297, 0.78808594, 2.34375, 2.4121094, -0.12915039, 1.2558594, -1.7607422, 2.1894531, 0.19030762, -1.8535156, 1.5546875, -0.051574707, -0.053009033, 0.66064453, 0.89453125, 0.04989624, 1.1669922, 3.0664062, -1.6347656, -0.96435547, 0.5957031, -0.44140625, 0.17370605, -0.97753906, 2.7402344, 0.9633789, -1.0927734, 1.4746094, 0.57128906, 0.6948242, 0.63720703, -0.66748047, 2.2929688, -4.3632812, -0.16369629, 0.69384766, 1.3466797, -2.203125, -2.4238281, 0.47045898, 3.8144531, -0.9926758, -2.2539062, 3.109375, -2.2226562, 0.06262207, 2.0292969, 0.9707031, -0.39331055, 2.5722656, 2.7089844, -0.5800781, 1.2998047, 1.4101562, 0.101867676, -1.0390625, 1.6748047, -2.8847656, 0.103881836, 1.5400391, -0.38793945, -0.60839844, -1.1005859, 0.55078125, -2.2558594, -2.453125, 2.7851562, -2.8691406, -0.117004395, -0.4362793, 1.90625, -0.4099121, -1.2587891, 0.20727539, -1.3242188, -0.47753906, -0.6201172, 2.078125, 0.66308594, -1.5166016, -1.1611328, 0.87353516, -0.7915039, -2.3144531, -1.6416016, -1.2304688, -1.6367188, -3.3828125, 2.8144531, -2.4667969, -0.29785156, 1.4921875, -2.5859375, -0.13061523, -0.32885742, -2.9550781, -0.3112793, -0.62646484, -0.11791992, -1.3427734, 0.7128906, 0.008483887, -1.2929688, -3.3515625, 0.31762695, -0.17199707, 1.6669922, 0.49560547, -2.4960938, 0.92041016, 1.2099609, 0.3852539, -0.515625, 1.5703125, 1.4316406, -1.2216797, 1.0966797, -4.0507812, -1.1787109, -2.8007812, 0.7294922, -1.3164062, 1.0419922, -3.40625, -2.8886719, -1.6259766, -0.12023926, 3.9394531, -0.16516113, 1.5820312, 0.39746094, 0.1459961, 1.3017578, -1.8212891, -1.9003906, 0.40454102, 1.4121094, -1.5517578, -2.1074219, -2.4960938, -0.98339844, -3.3066406, -0.50439453, 0.21228027, -1.1201172, -0.52246094, -0.22802734, -2.1308594, -2.6386719, -1.1601562, 0.71191406, -0.60595703, -1.0048828, -1.8486328, -0.8300781, -1.2353516, -0.5332031, -1.6201172, 1.8857422, -1.0537109, 1.3476562, 0.72753906, -0.10949707, 1.6503906, -2.3125, -3.7675781, 2.8085938, 0.22619629, -3.2675781, 1.8320312, -3.2714844, -2.0625, -3.0351562, -0.46362305, 2.0351562, 2.1894531, 1.3095703, 1.0175781, 1.5654297, -0.29663086, -1.4667969, 0.70166016, -0.80810547, 0.95703125, 4.3515625, -3.0566406, -0.6845703, 0.6166992, 1.5234375, -2.0332031, -1.4853516, 1.8251953, 1.9570312, 2.9492188, 1.4697266, 1.4375, -1.3740234, -1.234375, 1.8564453, 1.6787109, -1.5214844, 0.7167969, -0.26416016, 1.5634766, -0.7055664, 1.0810547, 2.4570312, 0.63623047, 2.0878906, 2.9726562, 0.78564453, -0.49658203, 0.51220703, -0.040649414, 1.7285156, -0.50634766, 2.1835938, -1.0029297, 0.24377441, -1.4033203, 0.016326904, -0.6333008, 0.16491699, -1.4521484, 3.5410156, 1.1962891, -1.6396484, 0.51171875, 2.1796875, 1.4335938, -0.3425293, 0.8232422, -1.2470703, -1.1904297, 1.6572266, -1.1259766, 0.49780273, -3.2832031, 1.4970703, -0.81103516, -1.1279297, 1.0742188, 4.0546875, -2.0957031, -1.8876953, 1.0703125, -0.42773438, 0.20446777, 2.1308594, 2.3828125, -0.8510742, 0.9121094, -2.7265625, 1.5224609, -0.10662842, -0.3317871, -1.75, -0.061553955, 2.0488281, 0.026031494, 0.9628906, 1.4072266, -0.9584961, -2.9394531, 0.06500244, -2.7851562, -1.6679688, 1.765625, -2.640625, -1.9404297, 3.1152344, -0.43481445, -0.22387695, 0.4025879, 3.9199219, -1.6289062, 0.8803711, 1.7978516, -2.1074219, 0.43188477, -4.2382812, -3.7324219, 0.14697266, -1.4189453, 0.51416016, 1.9521484, -0.16186523, 1.2148438, 3.1152344, 1.6015625, -2.9589844, -1.4082031, -0.87841797, -0.30810547, -0.9555664, -0.73095703, 0.2479248, -1.3535156, -3.4335938, -2.3515625, 0.1270752, 0.9560547, 2.1738281, 2.0390625, -3.421875, -0.15307617, -1.8339844, -1.2822266, -2.46875, -0.0027713776, 2.3378906, -1.1494141, 0.036895752, -3.3535156, 0.62109375, 1.2509766, -1.1972656, 2.3945312, 2.2558594, 0.27954102, -1.5380859, 2.2324219, 0.5678711, 2.2734375, -1.0019531, -3.53125, -0.45825195, 0.93115234, -0.60253906, -0.93408203, 0.5097656, 0.9995117, -1.1669922, 2.3046875, 1.3886719, 0.62060547, 1.2099609, 0.8647461, -3.2070312, 0.5961914, -1.9804688, -0.60839844, -1.8320312, -1.0390625, 0.35009766, -1.4863281, 0.16491699, -2.890625, 1.5371094, -1.4912109, 1.1621094, -4.1171875, 2.9335938, 3.0332031, 4.0195312, 2.7382812, -1.5683594, 0.1381836, 0.49682617, -0.52246094, -2.0351562, 0.65478516, -0.50439453, -0.55029297, 2.5273438, 1.2578125, -2.0546875, -0.8232422, -0.15307617, -1.9150391, -0.74121094, -2.828125, -0.8149414, -1.3789062, -0.17041016, 1.5146484, -0.27197266, 3.3125, -1.5136719, -0.8442383, -1.9121094, 1.40625, -0.9692383, 0.7758789, 0.4650879, -0.061401367, -0.68652344, 0.65966797, 0.3076172, -0.71484375, 0.890625, -2.3496094, 1.4179688, -0.36157227, 0.26098633, 1.7226562, 0.12225342, -0.62060547, -1.3818359, 0.99853516, 3.2539062, 1.4824219, 2.9433594, 0.18908691, -2.8144531, 2.0253906, 1.5703125, -4.1523438, 0.63378906, 1.6357422, 1.3759766, 2.0820312, 1.046875, -4.5820312, -0.34887695, 1.2832031, -0.32226562, 0.43676758, -1.6865234, -0.32910156, 2.5039062, -2.0898438, -0.7470703, -1.3466797, -1.2998047, 0.16833496, 2.8671875, -0.34277344, -1.21875, 1.2734375, 2.7128906, -1.0693359, -1.9238281, 1.1025391, -1.0136719, 0.76904297, -3.125, 0.07659912, -2.1386719, -0.21362305, 2.6425781, 0.95996094, 0.58691406, 0.63916016, 2.4550781, -2.3789062, 0.056396484, -2.8378906, 1.7197266, -1.3544922, -0.3708496, 0.91259766, -2.3359375, -0.62060547, -3.1621094, -1.1787109, -0.54296875, 2.2382812, 1.7070312, 0.26098633, -1.2421875, 1.4423828, -1.7197266, -3.7167969, -1.3330078, -0.17614746, 0.5239258, 1.4169922, 2.1777344, -0.6904297, 1.6259766, -0.32983398, 0.5078125, -0.8330078, 0.7060547, -1.0869141, -0.24182129, 0.19592285, -1.4951172, -1.5234375, -0.33544922, 1.0859375, 0.29174805, 0.41430664, -2.6210938, -0.33935547, 0.58447266, -0.93603516, 1.0273438, 1.8193359, 1.5615234, -0.1763916, 0.17614746, 1.7226562, -1.4794922, 2.2460938, -3.4785156, -0.77978516, 1.1240234, -1.7626953, 1.3623047, -1.2929688, -1.265625, 0.44750977, 1.5458984, 1.8535156, 1.0429688, -2.3769531, -0.56152344, 0.13513184, -0.75683594, -1.9707031, 0.19116211, -0.06585693, 0.66748047, 0.9765625, -0.37329102, -0.18920898, -0.80322266, -1.5820312, 1.1113281, -2.0273438, -0.5136719, -1.1015625, 0.30664062, 1.6132812, 0.12133789, -0.6738281, 2.3925781, -1.1220703, -2.8457031, 1.3916016, 0.24987793, 4.296875, 4.0859375, -0.36401367, -0.9399414, -1.5019531, 1.0175781, 2.515625, -0.1451416, -1.3056641, 1.1337891, -0.5390625, 0.16577148, -0.33666992, 3.1757812, 1.7597656, 0.104003906, -0.875, 0.87158203, 3.3808594, -1.5244141, 1.7558594, 0.74853516, 1.9970703, 0.036224365, 3.53125, 0.2368164, -3.6542969, 0.9116211, -2.0429688, 1.5693359, -1.1894531, -1.1142578, -1.0908203, -0.5209961, -1.9072266, -2.0136719, -1.2392578, -1.9169922, 2.2207031, 1.8056641, -2.1933594, -0.8261719, 1.4423828, 0.047790527, 4.0859375, 0.86621094, 1.9140625, -0.921875, -1.2041016, -1.1884766, -0.46166992, -0.28759766, -4.1796875, 2.1171875, 0.6201172, -0.9345703, -2.3242188, 2.2753906, 1.4404297, 1.5126953, 0.08569336, 2.5957031, 2.328125, 1.9755859, 2.40625, 0.27514648, 2.7734375, 1.0517578, -1.2548828, 0.31762695, 1.9365234, 0.21252441, 0.8544922, -1.4248047, 1.9033203, -1.53125, -1.2363281, -0.79833984, -0.65527344, 2.2050781, -2.7265625, 0.90185547, 1.1494141, 2.7539062, -0.51123047, -1.3769531, 0.0013780594, -0.78759766, 1.1015625, -0.10614014, 2.4863281, 1.1416016, 0.40942383, -1.2363281, -1.2060547, 1.4306641, -4.1875, 1.1074219, 0.77783203, -1.9121094, -0.9892578, -0.8227539, 2.6015625, 1.3535156, -0.05380249, -0.4885254, 3.9609375, 0.8383789, 1.1699219, -1.734375, -0.6347656, -0.79589844, 3.0898438, 0.49829102, -2.1308594, -0.3178711, -1.1865234, -4.234375, -3.1152344, 3.7519531, 2.4570312, 1.8505859, 0.9506836, -0.7949219, 3.9433594, 0.40356445, 2.2636719, -0.42626953, -0.7963867, -1.59375, -2.7207031, 0.52197266, 0.25195312, 0.064331055, 0.9975586, 0.17138672, 1.484375, 1.28125, 1.1318359, 0.9584961, 0.32177734, 1.6015625, 3.3144531, 0.4658203, -1.0625, 0.01449585, -1.703125, -2.5820312, -2.2460938, 3.1503906, 0.92041016, 0.30126953, 0.54589844, -1.4921875, 0.4724121, -2.1855469, 0.39038086, 0.18261719, -2.5605469, -0.9614258, 1.3251953, 2.0214844, -2.1386719, 1.1806641, 2.2832031, 1.9863281, -0.83447266, 1.3964844, 3.0273438, -0.48657227, 1.0273438, 0.5239258, 1.1894531, 1.3544922, 0.7451172, 0.24987793, -0.9272461, -0.7314453, 1.0791016, 2.2597656, 0.48291016, -0.5991211, -0.062561035, -1.3242188, -0.46606445, -0.049438477, 0.29248047, 1.8320312, -1.7070312, 2.7167969, 0.07421875, -1.1962891, 1.5126953, -0.50878906, 1.0107422, -2.5742188, -2.2851562, -1.2177734, -0.3942871, -0.82958984, 2.1523438, 5.0390625, 1.3652344, -0.33666992, -1.0703125, -3.5039062, -0.86083984, -2.7910156, 2.6113281, -1.2558594, -2.2597656, -1.1347656, -1.1279297, 1.9326172, -1.4091797, -0.32226562, 0.4807129, -1.6542969, 1.3896484, -0.52490234, 1.2470703, -0.008308411, 0.30493164, 2.0351562, 3.03125, 1.9111328, 0.88720703, -0.25170898, 2.8320312, -0.66259766, -2.9785156, -1.2294922, 0.14624023, -0.5620117, 0.26611328, 1.0537109, 1.3886719, 0.86035156, -0.52978516, 0.10522461, -2.6503906]}, "B00AB7SDC4": {"id": "B00AB7SDC4", "original": "Brand: Huntington\nName: Huntington 30040HNT Liquid Propane Gas Grill,Black\nDescription: \nFeatures: Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust\n30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty\n430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack\nA 10,000 BTU burner allows you to prepare mouth-watering side dishes\nEasy to maintain porcelain coated cooking grid\n", "embedding": [0.22875977, 0.94091797, 2.7636719, 2.2050781, -0.1743164, 0.20507812, 0.12768555, -1.484375, 0.57666016, 1.3261719, 0.4609375, 0.6748047, -0.16503906, -3.4824219, 0.23413086, 0.9868164, 0.96191406, 1.5673828, 0.5097656, -0.77246094, 1.1445312, 0.40722656, 1.8320312, -2.3574219, 1.3828125, 0.6557617, 3.796875, -3.3417969, 0.73095703, -0.7607422, 2.0839844, 1.7724609, -0.40698242, 1.9570312, -1.9482422, -1.6572266, -1.9394531, 1.0439453, -4.984375, 0.7871094, -0.8911133, -1.3466797, 2.1738281, 1.4628906, -2.1816406, 0.7241211, -0.53125, 0.34545898, -1.4794922, 0.4663086, 2.2773438, 1.4501953, -1.1923828, -0.51708984, -0.50146484, 1.6308594, 0.42871094, -3.2089844, 0.7993164, -0.42456055, 1.5595703, -1.2236328, -1.8896484, 0.49487305, 0.008407593, -0.62158203, 1.2167969, 0.35668945, -0.7451172, -0.19055176, 2.5703125, -0.82470703, -1.9042969, 0.7836914, 0.24035645, -1.5449219, -1.8320312, 1.4375, 0.5263672, -1.4609375, -2.1738281, 3.765625, 0.93847656, -1.1689453, 0.036743164, 0.7236328, -0.6582031, -1.8623047, 1.6230469, -0.45117188, -0.8154297, 1.5703125, -1.7158203, -4.7304688, 1.3623047, -0.036010742, -0.64453125, 1.8574219, -0.60302734, 0.7714844, 0.03137207, -0.7167969, -2.1035156, -0.3491211, -2.5, -0.48510742, 0.37548828, 1.0908203, -2.5195312, 0.34375, -1.0029297, 1.6230469, 0.8823242, 0.74853516, 1.4599609, 1.7558594, 0.44995117, 1.0654297, 1.5224609, 2.8164062, 2.7285156, -1.3652344, 1.5576172, -1.1103516, -0.27905273, 1.3857422, -0.0043792725, -0.06286621, 4.125, -2.3535156, 1.0087891, -0.39208984, 2.9863281, -1.734375, -1.6943359, -2.4628906, -0.4897461, -0.7270508, -2.7363281, 0.30615234, -0.72753906, 0.48754883, -0.034210205, -0.80615234, -3.7246094, -1.7490234, -0.90527344, -0.16174316, -0.63183594, -1.5322266, 0.028167725, -1.8349609, 0.06719971, -0.89453125, 2.8144531, -0.9765625, -1.2949219, -0.92529297, 2.5898438, -0.12182617, 1.5283203, -0.515625, -3.5507812, -0.14660645, 1.3515625, -2.2207031, -1.2929688, 1.8232422, 0.3010254, 3.0898438, -0.93408203, -1.5087891, -0.07373047, -0.87402344, 1.0195312, -0.8598633, 0.33203125, 2.5976562, -0.52197266, 0.8300781, -1.0986328, -2.1953125, -0.06750488, -0.8598633, 1.1484375, -2.4804688, 0.45288086, -0.06890869, 1.1298828, -1.3466797, 1.4785156, 0.6508789, 1.0849609, 0.15307617, -0.5488281, -2.3144531, -1.9375, -2.21875, 3.5820312, 0.97216797, -0.9604492, -0.37524414, -0.07385254, 0.7451172, -1.6943359, -2.5332031, -0.58203125, -2.3984375, 0.5805664, 0.7993164, 1.9882812, -0.9580078, 2.5488281, -0.6298828, 1.2382812, -3.2070312, 3.7285156, 0.9213867, 1.1074219, 2.3203125, -0.1171875, -0.8671875, 0.4963379, 2.1308594, -0.91259766, 1.109375, 0.42871094, 0.6381836, -3.359375, 0.71875, 3.15625, 0.068725586, 1.2734375, 0.8442383, -0.2685547, 1.6962891, 0.7832031, -0.35961914, -0.38110352, 0.12890625, 0.34448242, 0.44604492, -1.8144531, -1.6445312, 1.0957031, 1.8046875, -2.1171875, 1.9755859, 1.9248047, 1.2509766, -0.96240234, -0.42797852, 0.62841797, -0.5673828, -0.11456299, 0.039886475, -0.18554688, 0.73876953, -0.2919922, -2.9179688, 0.20324707, -0.76660156, 0.29101562, 0.3798828, 0.09423828, -0.48779297, 2.3066406, 1.1044922, 0.006980896, -0.9824219, 1.1972656, 0.83935547, 2.0058594, -1.2011719, 2.5253906, 0.9111328, -0.5683594, 4.4648438, 0.15454102, 2.046875, 1.2402344, 0.2980957, 2.40625, -2.7226562, -0.81103516, 0.9902344, 0.9423828, -2.1367188, -1.3828125, 1.4042969, 4.3632812, -0.4243164, -2.4277344, 2.2226562, 1.1376953, 0.74316406, 1.9707031, -3.1074219, -1.2265625, -0.32373047, 2.1074219, 0.7861328, 0.27783203, 2.1054688, -1.7675781, -1.7333984, -0.5932617, -1.2783203, -0.13696289, 0.24255371, -1.5703125, -0.76708984, -0.6152344, 0.90771484, -2.0585938, -0.6508789, 2.0039062, -3.4199219, 1.6787109, -0.6479492, 1.1289062, 0.7573242, -0.71533203, -0.6220703, 0.31640625, 0.8774414, -0.7285156, 1.9091797, 0.36035156, -2.7519531, 0.6567383, -1.5117188, -0.057800293, -1.3203125, -2.0019531, -1.3613281, -4.3632812, -2.0800781, 0.94970703, -1.1445312, -1.0830078, 1.0634766, -3.0429688, 0.15148926, -1.6894531, -1.7871094, -1.1552734, -0.5048828, -1.0693359, -0.28930664, 0.012054443, 0.49047852, -0.09173584, -3.5957031, -1.2021484, 0.57373047, 0.4489746, 0.66503906, -1.5419922, -1.4775391, 0.85058594, -0.4909668, -0.099609375, 1.0859375, 0.06414795, -0.10876465, 0.9296875, -4.7304688, 0.41259766, -2.890625, 0.64453125, -1.7763672, 0.70214844, -2.5429688, -1.1816406, 0.8774414, 2.1875, 4.421875, -0.67333984, 1.0019531, 2.5039062, -0.09429932, 0.8730469, -1.2480469, -2.1386719, -1.0458984, 2.3964844, -2.3222656, 0.056854248, -4.1640625, 0.4885254, -1.3125, -0.39697266, 1.7548828, -0.64160156, -1.2138672, -0.6196289, -0.59033203, -1.2490234, -1.296875, -2.0371094, 0.38354492, -0.5917969, -1.5859375, -0.17456055, -0.22839355, -1.4589844, -1.5419922, 1.4560547, -0.12243652, 1.3183594, 1.2236328, 0.059814453, 1.5195312, 0.26416016, -3.7832031, 4.2460938, 1.265625, -2.9921875, 2.5214844, -1.8818359, -2.0722656, -2.5703125, -0.39746094, 2.0546875, 1.8105469, 1.8916016, 0.2758789, 0.20605469, 2.2363281, 1.7011719, 1.1708984, -1.25, -1.5380859, 3.0625, -2.8085938, -2.5488281, 0.40234375, 2.3144531, -2.9804688, -2.1757812, 2.9804688, 1.5888672, 2.1191406, 1.7089844, 1.4121094, 0.2614746, 0.67333984, 1.0517578, 0.07965088, 0.048339844, 0.21447754, -0.22241211, 2.2460938, -0.14904785, 1.6865234, 2.3359375, -0.7158203, 3.5019531, 0.29223633, 0.46972656, -0.012939453, -0.81689453, -0.44018555, 1.1064453, -0.27539062, 2.640625, -1.1376953, -0.24731445, 1.1894531, -0.671875, 1.2685547, -1.1972656, -1.5332031, 1.1875, -0.042785645, 0.55859375, -0.17712402, 1.3242188, 2.3222656, -0.44970703, 0.20690918, -1.3417969, 0.21020508, 1.9257812, 0.32250977, 0.10675049, -0.27416992, 0.33569336, -1.3417969, -3.0644531, -1.78125, 2.3085938, -2.4257812, -0.047607422, -0.058929443, -0.46533203, 1.0185547, 2.4765625, -0.71972656, -0.82958984, 0.072631836, -0.56884766, 0.76171875, 0.28588867, -0.7265625, 0.9902344, -1.015625, 0.26098633, 0.42163086, 1.2441406, 0.5390625, -0.10614014, -1.21875, -0.18054199, -1.4443359, -1.1191406, -0.26342773, -1.78125, -0.9116211, 4.1171875, 1.8261719, 0.92626953, -0.45092773, 3.2246094, 0.31860352, -1.4882812, 2.703125, -0.61572266, -0.0011081696, -3.3164062, -3.7675781, 0.8823242, -0.9765625, -1.6318359, 2.2578125, 0.4519043, -0.040618896, 0.6791992, 2.4179688, -2.1816406, -0.7451172, -1.3818359, -0.19384766, -0.6123047, -0.77783203, 0.47607422, 2.5664062, -4.2226562, -1.7568359, -0.46118164, -0.29345703, 0.41992188, 0.6855469, -1.5927734, 1.0859375, -0.97998047, 0.12780762, -1.8603516, -0.6748047, 0.7807617, 0.27685547, -0.11102295, -1.5742188, 1.9970703, 0.5966797, -0.5810547, 2.0898438, 2.0742188, -0.6323242, 0.25756836, -0.18371582, 1.6484375, 3.0527344, -0.035949707, -2.4414062, -1.6904297, -0.4326172, 2.7441406, -0.46362305, 0.2076416, -0.6279297, -1.4169922, 0.1652832, 0.35839844, 0.30932617, 1.0976562, -0.70947266, 0.12164307, 1.8339844, 0.5048828, -1.0625, -1.2158203, 0.2175293, -0.83691406, -1.6347656, 0.3293457, -1.1308594, 1.0605469, -2.2890625, -1.1318359, -1.9726562, 3.609375, 2.9882812, 1.7832031, 1.3154297, -1.0546875, -1.5537109, 0.23571777, 0.27685547, -0.09466553, -0.2775879, 0.032165527, -0.47070312, 0.37109375, 0.6357422, -2.328125, -0.29638672, 0.8588867, -1.4199219, -0.8989258, -1.8378906, -1.2246094, -0.9121094, 0.05026245, 0.91845703, -1.78125, 2.5722656, -1.2919922, 0.9082031, 0.26757812, -0.21911621, -0.43481445, -0.5864258, 0.12976074, 0.5258789, 1.9072266, 0.36743164, 1.4472656, -0.42944336, 0.26733398, -0.9609375, 2.5351562, -0.7319336, 1.9746094, 1.2900391, 0.6298828, -0.24560547, -2.3222656, 2.59375, 2.5957031, 0.12939453, 2.8867188, 1.1142578, -2.1855469, 2.2988281, -0.40893555, -2.484375, 1.4013672, 2.4980469, -1.2890625, 2.7167969, 0.4909668, -2.7832031, -0.18554688, 2.5449219, -1.9023438, 0.25097656, 0.020507812, -0.7265625, 0.7421875, -2.6503906, -1.5673828, -0.7783203, 0.85302734, -0.8354492, -1.6015625, 0.54833984, -0.49804688, 1.7773438, 2.4960938, -1.7128906, -0.56152344, 2.9667969, 0.74853516, 1.6044922, 0.5444336, -0.24597168, -1.3173828, 1.2001953, 2.7714844, 0.8886719, 0.55859375, 0.40283203, 1.6601562, -1.2412109, -0.43359375, -0.74658203, 3.5195312, -2.6816406, -0.32666016, 0.68896484, -2.5839844, -1.6953125, -3.1269531, -1.8769531, -1.9960938, 1.5595703, 2.8066406, 0.5727539, -0.19702148, 0.07019043, -1.7822266, -3.2617188, -0.7470703, 0.11450195, -0.40576172, 0.8120117, 1.6162109, -1.6464844, -0.33691406, 0.0015411377, 0.60839844, -1.0849609, 0.77734375, -0.6401367, -0.02583313, -1.4658203, -0.7270508, -0.26953125, 1.4667969, 1.7001953, 0.32006836, 2.6542969, -3.2636719, -1.9453125, 0.14318848, -0.09106445, -0.46435547, 0.45410156, 1.9560547, 0.26586914, 2.0546875, 0.47924805, -1.8710938, 3.3730469, -1.8027344, -0.65234375, 2.6425781, -1.0810547, -0.8442383, 0.9394531, -0.9086914, -1.6425781, -0.07727051, 2.5429688, 0.52441406, -1.1904297, -1.3554688, 2.3710938, -0.24267578, -0.54541016, 1.8095703, 1.3203125, 2.0371094, 1.0820312, -0.77685547, -0.22595215, -1.7871094, -3.078125, 0.07611084, -3.828125, 0.50634766, -1.4140625, 0.6381836, 0.53808594, 0.9199219, 0.93310547, 0.6982422, 0.12188721, -1.0273438, 1.1464844, 0.11639404, 3.2324219, 2.5214844, -1.8935547, -0.65625, -0.5214844, -1.6132812, 2.2363281, 0.9042969, 0.44067383, 1.3476562, -0.19177246, -0.95996094, -1.2607422, 0.03265381, -0.119628906, 0.44628906, -2.2871094, 0.7861328, 3.4453125, -0.44677734, 0.32666016, 0.2854004, 1.6318359, -0.9067383, 3.7246094, 0.24719238, -0.37670898, 1.9658203, -1.7539062, 1.453125, -1.3388672, -1.7949219, 1.0292969, -1.4658203, -1.0566406, -1.7246094, -2.1738281, -1.90625, 1.1806641, -0.23962402, -1.2236328, 0.10656738, 2.4765625, 0.6069336, 3.4140625, 0.48266602, 1.8808594, -0.89941406, 0.4243164, -0.9189453, 0.26953125, 0.91796875, -2.3398438, 2.7792969, 0.15344238, -0.24377441, -3.0859375, -0.29858398, 0.54541016, 1.9091797, 1.8701172, 2.9003906, 2.6113281, 1.09375, 0.4736328, 1.2529297, 1.0292969, 2.3222656, -2.4804688, 0.46362305, -0.07373047, 1.0976562, 1.3740234, -1.5332031, 3.1582031, -2.1523438, -2.703125, 0.37231445, -0.37109375, 0.024032593, -2.1796875, 1.2939453, 0.8652344, 0.20532227, -1.8857422, -0.72998047, -1.1601562, -0.7763672, -1.0029297, 0.22912598, 2.6464844, 1.4707031, 1.5654297, -0.9238281, -1.7148438, 1.7832031, -3.734375, -0.5908203, 1.1767578, -0.37524414, 0.26733398, -1.6982422, 1.7021484, 0.6508789, -0.40966797, -1.4394531, 0.8364258, 0.095214844, 0.58740234, -1.3935547, 1.5273438, 0.61279297, 2.234375, -0.06689453, -0.034484863, 1.9707031, -1.3632812, -0.6152344, -4.2851562, 3.7265625, 2.0429688, 1.7773438, 0.16345215, -1.2060547, 1.5966797, -1.5605469, 2.7382812, -3.0703125, 1.6728516, -0.25097656, -2.1464844, -2.2421875, -0.38183594, 0.20263672, 0.89941406, -0.17956543, -1.3818359, 1.9638672, 0.5473633, 0.57666016, 0.7651367, 2.3710938, 1.8222656, 1.6640625, 0.042755127, 2.4121094, 1.4453125, -1.6513672, -0.85546875, 1.2558594, 0.3515625, -0.87939453, 0.79248047, -1.7763672, 1.2402344, 1.1054688, -0.93408203, 0.2866211, 0.34716797, -1.4423828, 0.44384766, 1.4707031, -1.75, -1.7109375, 2.5117188, 1.4443359, -1.4443359, 0.36376953, 2.2910156, 0.16308594, 1.9755859, -0.12207031, -0.34326172, -0.8251953, -0.20288086, 0.80078125, 0.31518555, -1.8339844, 0.25512695, 1.6269531, 0.35205078, -0.98828125, -0.85839844, -1.3554688, -0.40063477, -1.3818359, 0.8930664, -0.36450195, -1.2949219, 2.0585938, 0.30029297, -1.21875, 4.1367188, -1.1875, -0.8432617, -2.8945312, -1.8925781, -0.7216797, -0.7216797, -2.3300781, 2.2480469, 4.6601562, -0.22351074, 0.08831787, -2.6621094, -3.9101562, -1.4746094, -3.4472656, 0.14196777, -2.0292969, -0.5444336, 0.72753906, 0.35717773, 0.91845703, -0.52197266, -0.28027344, -0.68359375, -0.96875, 2.2773438, -0.9584961, 2.1757812, 0.52246094, 0.37817383, 0.7397461, 1.1591797, -0.13439941, 1.46875, 0.24511719, 5.4140625, 0.9477539, -2.5488281, 0.49365234, 0.3408203, -0.5463867, 0.31518555, 0.36376953, 0.59228516, 1.6142578, -0.9301758, -0.57666016, -3.7617188]}, "B004BH7T5W": {"id": "B004BH7T5W", "original": "Brand: Weber\nName: Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel\nDescription: \nFeatures: Island not included\nPlease reference building guide for Weber model number 7360001 prior to building island\n9 mm diameter stainless steel rod cooking grates\nStainless steel Flavorizer bars\nSnap-Jet individual burner ignition system\n", "embedding": [-0.26586914, 0.6220703, 2.6796875, -2.6054688, 0.08288574, 1.2822266, 0.031341553, -2.671875, 1.3691406, 1.4990234, 1.5341797, -1.9511719, -1.4707031, -3.0898438, 0.3305664, 1.2470703, 1.5019531, 0.38745117, 0.60302734, 0.40551758, 1.6269531, 0.9038086, 2.1582031, -1.8828125, 2.6464844, 1.1123047, 4.4296875, -4.6914062, 0.3334961, -0.6611328, -0.49731445, 1.6308594, 1.9326172, 1.1669922, -2.3242188, -1.1845703, -3.0605469, 0.91552734, -2.8554688, 0.75439453, -0.09686279, -2.1445312, -0.00015258789, -0.31323242, -2.2480469, -1.1904297, 0.7138672, 0.44873047, -1.8857422, -0.091796875, 3.0878906, 1.046875, -0.2524414, 1.2734375, -1.6201172, 1.21875, -1.0566406, -3.7382812, 1.9970703, 0.029006958, 1.6923828, -0.86083984, -2.5507812, -1.5117188, -1.4511719, -1.6435547, -1.5410156, -0.5546875, 1.5898438, 1.6796875, 1.5332031, -0.8046875, -2.0722656, 0.23571777, 0.5805664, -2.3359375, -2.7402344, 0.54833984, 0.6357422, -2.0742188, -2.1171875, 1.0527344, 1.0185547, -1.2480469, -0.13757324, 0.70947266, -1.5371094, -2.6386719, 0.6044922, 0.11639404, -1.9003906, 0.18322754, -0.80078125, -4.4609375, 0.9189453, -1.75, 0.1895752, 1.7402344, 0.19897461, 0.6113281, -0.25097656, 3.7539062, 1.1738281, -0.76660156, -2.2949219, -1.8564453, 2.1542969, -1.2431641, -2.5097656, -1.7685547, -2.0019531, -0.5415039, 1.3710938, 1.5458984, 0.9423828, 1.2041016, 0.8359375, 2.0273438, 1.4951172, 0.97021484, 2.6972656, -0.7246094, -0.6879883, -1.0917969, -0.8959961, -0.22460938, -1.1005859, 1.1328125, 4.0195312, -2.5800781, 0.54785156, 0.6015625, 3.625, 1.4541016, -1.0175781, -1.703125, -0.6118164, -1.1152344, -2.0722656, 0.06137085, 0.19616699, 1.2373047, 0.8154297, -1.1015625, -1.9580078, -0.12805176, -0.7446289, -0.49072266, -0.09240723, -1.4394531, -1.4306641, -2.1210938, 0.10272217, -0.96875, 1.1601562, -0.68066406, -1.1757812, -0.13452148, 3.1210938, 2.2929688, 0.8388672, -0.5136719, -0.75, -0.46411133, 1.7392578, -1.7890625, 0.70996094, 2.1484375, 0.55322266, 1.1044922, -0.69628906, -1.0058594, 0.97802734, 1.0546875, 1.2802734, 0.19628906, -0.6411133, 2.2519531, -0.6196289, 0.46362305, -0.26879883, -2.4101562, 1.1289062, -0.12207031, 1.4677734, 0.0970459, 0.5649414, -0.8828125, 0.57714844, -0.50439453, 0.066467285, 0.8408203, 1.1464844, 0.40966797, 0.58935547, -1, -3.1582031, -2.4433594, 1.6123047, -0.35839844, -1.5966797, -0.69091797, 0.88134766, 0.13916016, -0.38598633, -2.0507812, -1.4882812, -0.48583984, 1.2529297, 1.5996094, 1.4082031, -0.61035156, 1.1054688, -0.8725586, 0.28686523, -1.4423828, 1.9472656, 1.1699219, 0.390625, 1.0136719, -1.2539062, 0.61083984, -0.049804688, 1.1113281, 1.6035156, 0.5463867, -0.13452148, 0.64501953, -2.6425781, 0.46020508, 4.2773438, 0.018859863, -0.20996094, 1.2509766, 1.0097656, 3.1953125, 1.4677734, -1.953125, 0.61279297, -0.65722656, 0.48388672, 0.6533203, -0.98535156, -0.84228516, 0.031799316, -0.9897461, -2.0039062, 0.94433594, 2.0664062, 1.2148438, -0.83691406, -0.023223877, 0.113464355, 1.0263672, -0.7675781, 1.8027344, -1.9091797, 0.32714844, -0.53271484, -2.3066406, 2.4941406, 1.1894531, 0.54003906, 0.7026367, 1.9970703, -2.9042969, 0.8100586, 0.7470703, -2.2558594, -1.9267578, 0.028289795, -0.50634766, 1.3808594, -1.65625, 3.1855469, 0.8413086, -1.5722656, 1.7578125, 0.39672852, 0.46044922, -0.015342712, -0.35473633, 1.7529297, -2.9824219, 0.2836914, -1.1064453, 0.29345703, -0.67089844, -1.6972656, 1.2304688, 4.1328125, -1.1015625, -2.6757812, 1.8144531, -1.6142578, 0.3474121, 1.9003906, -0.64208984, 0.09686279, 0.6010742, 0.80322266, 0.16723633, 0.48950195, 2.9785156, -1.1474609, -1.2109375, 1.6591797, -3.2128906, 0.8642578, 0.52490234, -1.6796875, 0.36767578, -1.7753906, 1.8671875, -0.6044922, -1.0917969, 1.0292969, -4.0703125, 0.5546875, -0.18164062, 1.4716797, 0.43945312, -2.125, 1.2939453, 0.19995117, 1.0185547, -0.4831543, 0.3955078, 1.6591797, -0.9921875, 0.8178711, -1.5722656, -1.6513672, -2.9609375, -1.7792969, -1.1386719, -3.8652344, -1.6455078, 2.1855469, -1.1328125, 1.4160156, 1.0371094, -2.1054688, -1.5292969, -0.29345703, -2.6503906, -0.23474121, -0.62597656, 0.8154297, 0.31054688, 0.64208984, 0.75878906, 0.4375, -5.7929688, -0.12243652, -0.17468262, 1.3505859, -0.75634766, -0.47460938, 0.14648438, -1.0322266, 0.8798828, -1.0498047, 0.21777344, 0.96191406, -0.95410156, 0.22497559, -1.84375, -0.34985352, -2.8710938, 1.1582031, -0.97265625, 2.9902344, -2.8789062, -2.34375, 0.33935547, -0.41601562, 6.0390625, 1.9941406, 1.2597656, -0.8388672, 1.0478516, 0.058258057, -1.9277344, -0.39160156, 0.44580078, 1.2255859, -0.65625, 0.35131836, -1.0078125, 1.3398438, -2.8222656, -1.4121094, 0.8642578, -0.60058594, -1.5068359, 0.1394043, -0.58935547, -1.1289062, -2.6503906, -1.1865234, 0.09460449, 0.11816406, -2.8574219, -0.8022461, -0.37475586, 0.7158203, -0.71533203, 2.3964844, -1.6269531, 0.22094727, 1.0761719, -1, 0.63134766, -0.36279297, -3.1152344, 3.4960938, -1.0927734, -1.8857422, 2.3183594, -2.7460938, -1.1787109, -1.96875, -0.2824707, 2.6777344, 0.40698242, 0.33032227, 0.07019043, 1.7832031, -0.6074219, -1.5791016, -0.37158203, -1.7753906, 0.3864746, 2.8691406, -2.5410156, -1.4902344, -0.42773438, 1.3623047, -3.5839844, 1.0820312, 1.2841797, 2.8359375, 2.265625, 1.5498047, -0.20739746, 1.0507812, -1.9189453, 0.99609375, 0.6118164, 1.0371094, 0.23364258, -1.6689453, 0.7426758, -0.7109375, 0.48242188, 1.4628906, 1.5097656, 2.7441406, 1.4160156, 1.2949219, 1.1630859, -1.3847656, -0.18383789, 0.8701172, -0.42919922, 1.8388672, -1.59375, -0.32080078, -0.19555664, 0.20568848, -0.085510254, -0.7260742, -0.8955078, 1.7939453, 0.04244995, -0.26660156, -0.7270508, 1.0986328, 1.8017578, -0.81152344, 0.671875, -1.2402344, -1.3730469, 1.7910156, -0.68652344, 0.21020508, -1.2275391, 0.61865234, -0.1472168, -2.9785156, 0.3762207, 2.8105469, -1.6230469, -0.99853516, -0.8486328, -1.3828125, 0.7470703, 1.1738281, -0.88378906, 0.14245605, 0.82421875, -0.77978516, 1.3974609, 1.2021484, 0.671875, -0.09844971, 0.8071289, 0.95703125, -0.37963867, 1.6796875, 2.2304688, 1.1113281, -3.0664062, 0.049957275, -2.8496094, -1.6201172, 1.6982422, -1.0214844, -1.2382812, 2.3242188, 1.2861328, 0.33666992, -1.7080078, 2.6503906, -2.1210938, -0.103881836, 2.0195312, -1.5761719, 0.22009277, -3.578125, -2.3320312, 0.7792969, -2.4511719, 0.88916016, 0.19750977, 0.9350586, -0.6069336, 2.34375, -0.090026855, -1.5800781, -1.3535156, -0.13330078, 0.984375, -0.82666016, -0.40039062, -0.6142578, 0.095336914, -2.7246094, -1.2509766, 1.2666016, 0.04559326, 1.4990234, 0.72753906, -4.7578125, -0.14160156, -0.56884766, -0.2614746, -1.1328125, -0.47583008, 0.76123047, -0.11785889, -0.24023438, -0.8720703, 3.1757812, 0.76708984, -0.8330078, 0.89746094, 2.0488281, -0.6977539, -2.0566406, 0.6147461, -0.25976562, 2.3027344, -1.2265625, -1.0166016, -0.8095703, 0.18774414, 1.4716797, 0.74560547, 0.46044922, 0.76464844, -1.9169922, 1.3242188, 1.8222656, 2.078125, 1.2373047, 0.53271484, -1.7109375, 0.72802734, -0.09509277, -0.052337646, -2.8496094, 0.02204895, 0.38964844, -1.6376953, 0.7397461, -2.8496094, 2.1152344, -0.24682617, -1.6699219, -3.296875, 0.88378906, 3.8183594, 1.1005859, 1.6767578, -2.0605469, 0.4597168, 0.068237305, 0.52734375, 0.33984375, 1.7705078, -0.64501953, -2.0214844, 1.875, 0.67285156, -2.0839844, 0.07385254, 0.37060547, -0.29223633, -0.87353516, -2.4101562, 0.23217773, -0.20703125, 1.1650391, -0.890625, -1.3505859, 2.0976562, 0.45117188, -0.0847168, 1.1113281, 2.7636719, -2.359375, 0.11212158, -1.5107422, 0.17614746, 0.61328125, 1.0371094, 0.75683594, -0.7373047, 0.6743164, -1.4130859, 2.2929688, -1.8652344, 1.1328125, 0.122680664, 1.2304688, 0.043426514, -1.6767578, 2.6289062, 3.0527344, 1.7685547, 2.6601562, 0.91015625, -3.6308594, 2.1972656, 0.7084961, -2.5234375, 1.3544922, 0.3708496, -1.0605469, 0.5732422, 0.21948242, -3.7460938, 0.6660156, 3.2089844, -0.52734375, 1.0791016, -0.57910156, -0.3557129, 1.0332031, -1.7529297, -0.17468262, 1.1269531, -0.015808105, 0.8876953, -0.6635742, 0.33642578, -0.95458984, 2.1289062, 1.2636719, -2.8027344, -0.8125, 1.4707031, 0.1541748, 0.62841797, 0.265625, 0.26416016, -1.1162109, -0.7080078, 3.3476562, 1.0244141, 0.083984375, 1.5380859, 1.9042969, -0.77685547, -0.051940918, -2.2011719, 1.6064453, -3.3027344, 0.072509766, 0.22912598, -2.6445312, -1.2949219, -1.2285156, -0.34643555, 0.10821533, 3.1210938, 1.7841797, 0.5239258, 0.37817383, 0.18347168, -2.0566406, -3.0976562, 0.08428955, -0.49145508, 0.5546875, 1.5791016, 1.4277344, -1.3095703, 1.4277344, 0.39916992, -0.52441406, 0.92822266, 0.53271484, 0.3449707, 0.30639648, 0.16235352, -1.6171875, -1.1083984, -0.6689453, 0.44262695, 0.8071289, -0.021942139, -1.9169922, 0.30615234, -0.36767578, 0.89697266, 0.7602539, 1.5419922, 1.4707031, -0.15344238, 0.055725098, 1.6982422, -2.3476562, 1.6035156, -2.1523438, -1.1542969, 2.6015625, -1.1650391, 2.578125, 0.8540039, -0.7636719, 0.20605469, -3.0117188, 0.9404297, 0.5761719, -0.11816406, 0.15905762, -0.12390137, 1.6386719, -1.2675781, 0.6113281, -0.6220703, 0.73095703, 1.6611328, -0.92871094, 0.19445801, -1.2753906, -2.65625, 2.1816406, -2.9257812, -0.20727539, -1.3476562, 0.42578125, 1.6347656, 0.91552734, -0.42333984, 1.5830078, -0.041503906, -1.0507812, 1.2314453, -0.2746582, 3.6054688, 2.5175781, -1.7001953, -0.81884766, -1.0917969, 0.25976562, 2.5332031, 0.7597656, -1.5625, 0.35742188, -0.8881836, 1.0361328, -0.36645508, 1.2314453, 1.5214844, 1.2890625, -1.8544922, 1.6279297, 3.3339844, -0.029708862, 1.7451172, 0.95458984, 1.2148438, -0.28881836, 3.1992188, -0.19628906, -1.4082031, 3.1074219, -2.2695312, 0.8413086, -0.6557617, -2.4941406, -1.0185547, 0.9819336, 0.05596924, -2.4960938, -0.5908203, -1.6171875, 1.1308594, 1.1582031, -1.8779297, -0.28735352, 0.6298828, 0.23046875, 2.2753906, 0.5390625, 2.9335938, -1.5996094, 0.42504883, -0.6171875, 0.6875, 0.15942383, -1.6816406, 0.32666016, 2.1171875, 0.5410156, -0.19787598, 2.125, 2.4023438, 1.8466797, -1.1982422, 0.87646484, 2.5117188, 1.2265625, 2.2539062, 1.1259766, 1.9238281, 2.3007812, -1.6425781, -1.1318359, 0.8359375, 0.7792969, 1.0556641, 0.16748047, 1.3876953, -1.1855469, -0.9248047, -0.017440796, 0.38183594, 0.5571289, 0.5913086, 0.81640625, 0.5126953, 1.2587891, -1.3466797, -1.4355469, -1.7451172, 1.1240234, 0.5595703, -0.7783203, 1.9863281, 0.6801758, 2.5722656, -1.0107422, -1.2763672, 0.60253906, -3.3164062, 0.7080078, 0.7373047, -1.0449219, -1.9980469, -1.515625, 1.8808594, -1.28125, -0.23791504, 0.38916016, 3.828125, 0.21313477, -0.5019531, -2.2421875, 0.64746094, -0.2631836, 3.4746094, 0.34057617, -0.9091797, -0.2614746, 0.41088867, -2.5429688, -3.4941406, 3.390625, 1.6796875, 1.3759766, 1.1884766, -1.7519531, 1.9169922, -0.8227539, 1.7060547, -2.3007812, -0.15808105, -0.14343262, -3.1992188, -2.6054688, 0.3552246, -1.1933594, -0.12731934, 0.10168457, 1.4199219, 0.115600586, 1.1201172, 0.9453125, 1.5722656, 2.1054688, 1.9433594, -0.2199707, -1.7753906, 3.1601562, 1.5078125, -1.3769531, -2.5332031, 1.9970703, 1.984375, -0.65185547, 0.6845703, -0.8881836, 0.19848633, 0.27294922, 1.1787109, -0.48388672, -1.7060547, -0.86083984, 0.087524414, 1.7392578, -1.4091797, -0.36108398, 2.90625, 2.1875, 1.7158203, 2.7246094, 0.5913086, -0.90478516, 1.5175781, -0.72265625, -0.93359375, -1.2949219, 1.4716797, 2.0449219, 1.2382812, -0.40283203, -0.29345703, 0.27490234, 0.29492188, -0.8876953, 0.56933594, -1.7373047, 0.30126953, -1.5244141, 0.1574707, 0.48291016, -1.4667969, 2.9726562, 0.25561523, 0.37280273, 2.7265625, -0.80078125, -0.47998047, -1.6035156, -0.5541992, -1.3261719, 0.37841797, -0.94433594, -0.4584961, 4, -1.5507812, -0.17614746, -1.2910156, -3.9472656, -0.3022461, -2.9648438, 1.0556641, -2.3046875, -2.5957031, -2.0253906, -0.103637695, 1.4521484, -0.30517578, 0.20837402, -1.7109375, -1.3398438, 2.2128906, -1.6015625, 1.2734375, -0.48120117, -0.7294922, 1.1738281, 3.953125, 0.95947266, 1.0615234, 0.92041016, 3.9316406, 0.50683594, -2.3710938, -1.0058594, 0.54296875, 0.14208984, -0.3894043, -1.1044922, 0.4375, -0.46240234, -1.5263672, -0.3022461, -1.3222656]}, "B089D4KPM3": {"id": "B089D4KPM3", "original": "Brand: KitchenAid\nName: KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel\nDescription: \nFeatures: Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited\nFlush side burner cover creates extra workspace when the side burner is Not in use\nIncludes removable rear-acceSS catch pan, warming rack and caster wheels.\nConvertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003\n", "embedding": [-0.8276367, 0.9506836, 2.796875, 0.36010742, -0.2199707, 0.010055542, 0.2121582, -0.3984375, 0.002538681, 1.3623047, 2.1933594, 1.7490234, -0.22375488, -1.8642578, 0.8100586, 1.0917969, 1.3466797, -0.13427734, 1.7216797, 0.73876953, 0.91748047, 1.0371094, 0.9458008, -1.3691406, 1.9443359, 1.3242188, 3.8183594, -3.8613281, -1.0947266, -1.3789062, 1.5195312, 0.25073242, -0.018066406, 0.81689453, -2.6054688, -1.5195312, -2.7167969, 2.4667969, -2.5703125, 1.4082031, -1.3027344, -0.65722656, -1.3623047, 0.6689453, -3.3613281, 0.03555298, 0.7001953, 1.5615234, -3.0117188, -0.6796875, 1.703125, 2.3359375, -0.42895508, 1.2128906, -2.2304688, 1.5771484, 0.4777832, -2.7226562, 1.2236328, -0.12878418, 2.5429688, -0.3071289, -1.4462891, -0.50146484, -2.0175781, -0.013793945, 1.8330078, 0.38720703, -0.11779785, -0.13342285, 2.2871094, -0.1829834, -0.5253906, 0.5864258, -0.90771484, -2.4511719, -2.2773438, 1.7304688, 0.12756348, -1.7099609, -3.4003906, 0.9350586, 0.32641602, -2.1171875, 1.7929688, 1.3896484, -1.328125, -1.9130859, 0.92285156, 0.9453125, -1.7451172, 1.3984375, -3.0859375, -3.4570312, 1.5830078, -0.19091797, -0.9296875, 0.45288086, 0.77197266, 1.8388672, -2.2109375, -0.48657227, -0.8310547, -0.1541748, -1.9013672, -0.86035156, 0.9169922, 1.1992188, -4.765625, 0.029525757, -1.3867188, -0.11975098, 1.2001953, 0.040924072, 0.6640625, 0.6333008, 1.2617188, 1.8867188, 2.7636719, 2.1386719, 4.4882812, -0.089904785, 0.26586914, 0.25878906, 0.10668945, 1.9785156, -2.2109375, 2.8574219, 5.9492188, -2.4667969, 0.47045898, 0.5161133, 2.3789062, -0.77490234, -1.4990234, -2.7207031, -0.25756836, -1.6904297, -2.6542969, 1.4931641, -1.7646484, -0.46289062, 1.0244141, -2.5859375, -4.140625, -0.26708984, -0.67822266, 0.88720703, -0.98535156, -1.5576172, -0.40600586, -1.171875, -0.019500732, -1.7021484, 3.5390625, -0.60546875, -1.3203125, -2.6289062, 2.8671875, 1.3007812, 1.6162109, -2.0371094, -1.7578125, 0.6176758, 1.5576172, 0.39331055, -0.6567383, 1.0117188, -0.8305664, 1.8339844, -1.4980469, -1.7734375, 0.6328125, 0.11456299, 0.21765137, -0.2783203, -0.10949707, 1.3310547, -0.20166016, -0.63964844, -1.09375, -3.9511719, 1.6181641, -0.8432617, 2.3378906, -1.7548828, 2.0546875, 0.7285156, 2.828125, 0.44970703, 0.3515625, -0.23535156, 0.35253906, -0.34472656, -0.1977539, -1.8212891, -2.1523438, -1.4736328, 1.1386719, 0.7788086, -0.9863281, -0.32104492, 0.0011253357, 1.1171875, -1.2119141, -2.5429688, -0.7167969, -1.6835938, 1.1083984, 1.5341797, 3.4121094, -1.9042969, 0.9243164, -2.3242188, -0.74902344, -3.3066406, 1.9189453, 0.62646484, 2.3613281, 2.6992188, -0.0004608631, 0.20751953, 0.08660889, 1.2246094, -0.0736084, 1.1865234, 1.4472656, 1.8046875, -1.1201172, -0.4580078, 1.7421875, 0.86328125, -1.2167969, 1.0869141, -0.005241394, 2.8964844, 0.83984375, -1.5537109, -1.1240234, -0.05718994, 1.2304688, -1.2304688, -0.08605957, -1.6904297, -1.2763672, -0.3293457, -2.7421875, 1.0087891, 1.4765625, 2.0039062, -0.56103516, 0.7368164, -1.2402344, 1.8183594, -0.22460938, 1.5654297, -0.35253906, 0.6113281, -0.6191406, -1.4492188, 1.0576172, 1.0058594, -1.7724609, -0.46142578, 1.9638672, -1.5664062, 3.0253906, -0.5576172, -2.0644531, -2.2558594, -0.32543945, 0.40649414, 2.2480469, -0.14282227, 0.7919922, 1.8320312, -2.2460938, 3.1894531, 0.8276367, 1.7822266, 0.6274414, -0.60253906, 2.3632812, -1.4267578, 0.6123047, 1.6074219, 0.72509766, -0.8339844, -1.4824219, 1.9082031, 5.4296875, -0.06939697, -2.7304688, 3.4042969, 0.61816406, 0.7216797, 1.9013672, -0.3659668, -0.890625, 0.29858398, 0.08898926, 0.86035156, 0.21740723, 2.7109375, -0.08843994, -1.8359375, -1.1816406, -0.9169922, 0.19677734, 1.4951172, -0.765625, -0.41381836, -1.9697266, 1.7392578, -1.2470703, -0.9121094, 2.5097656, -1.6181641, 0.55029297, 0.31201172, 0.21203613, 1.21875, -0.47338867, -0.48901367, -1.2470703, -0.8417969, -1.0683594, 0.71728516, -0.035736084, -1.5195312, -1.2246094, 0.6801758, 0.5126953, -2.2871094, -2.203125, -0.24694824, -3.0546875, -1.5644531, 1.1591797, -2.3242188, -0.81396484, 1.2216797, -1.0644531, 2.5097656, -0.67529297, -2.75, -2.9902344, -0.38134766, -0.34057617, -0.66259766, 0.17236328, 0.5371094, 0.42578125, -3.5761719, 0.39331055, 0.5419922, -0.4921875, 1.5380859, -2.4296875, -0.4099121, 1.2861328, 0.86621094, 1.0585938, 0.15039062, 0.84521484, -1.7509766, 0.9116211, -3.265625, -0.21130371, -3.3984375, 0.9584961, -0.8779297, 1.6005859, -2.0449219, -1.1894531, -0.98828125, -0.103393555, 4.9453125, -0.69970703, 0.63671875, -0.10015869, 0.75927734, 1.8535156, -1.0410156, -1.0488281, -0.73779297, 0.21740723, -2.2382812, 0.6850586, -2.9765625, 0.5917969, -0.9213867, 1.5830078, -1.1982422, 0.6201172, -2.2636719, 0.80566406, -1.4091797, 0.119018555, 0.3371582, 0.0045394897, 0.4729004, -1.1943359, -1.5888672, -0.36157227, -2.2285156, -1.609375, -0.72265625, 1.4941406, -0.9926758, -0.7026367, 0.7260742, -0.9277344, 1.1337891, -0.5493164, -3.9785156, 1.5761719, 0.8144531, -2.8046875, 1.9824219, -1.9970703, -1.6748047, -2.1425781, -0.003835678, 4.40625, 0.90185547, 2.3945312, -0.5, 1.1865234, -0.7236328, 1.2548828, 1.484375, -1.2998047, 0.45361328, 3.8007812, -1.2626953, -1.1162109, 0.81103516, 1.5839844, -2.8945312, -1.6757812, 1.2880859, 0.21313477, 2.6503906, 1.4257812, 1.9472656, -0.7910156, -1.4951172, 1.8974609, 1.0117188, 0.25146484, -0.032684326, 0.46533203, -0.38916016, -1.46875, 1.3945312, 1.4580078, 0.48486328, 2.2578125, 1.078125, 2.6582031, -1.0146484, -1.9169922, -0.27734375, -0.16027832, -0.9707031, 2.9511719, -1.2441406, 0.5600586, 0.5317383, -0.5317383, 0.12042236, -1.9404297, -0.0129470825, 2.5039062, -1.5175781, 0.08123779, -1.3603516, 0.3972168, 0.69628906, -1.9892578, 0.79248047, -2.0722656, -0.12670898, 1.2666016, 0.19592285, -0.62109375, -1.28125, 1.0253906, -0.26049805, -1.2529297, -1.5214844, 3.6015625, -2.6640625, -1.5742188, -0.101501465, -0.58154297, -1.5322266, -0.5444336, 0.6376953, -1.6503906, 1.9150391, -0.4099121, 0.5283203, 2.0878906, -0.54345703, 1.3105469, -0.40063477, 1.5517578, -0.6191406, 1.1416016, 2.3339844, 0.69970703, -4.0390625, -0.35961914, -3.0625, 0.24108887, -0.6225586, 0.4333496, -2.4101562, 0.48583984, 0.9946289, 2.5253906, -1.9931641, 3.3886719, -0.18896484, -2.3144531, 1.2519531, -2.9179688, -0.56103516, -3.34375, -4.125, 1.4550781, -1.1669922, -0.11810303, 1.4892578, 1.2050781, 1.0166016, 3.1738281, 0.7060547, -3.2246094, -1.7207031, 0.765625, -1.2587891, -0.15649414, -0.7944336, 1.4091797, 0.3022461, -2.1035156, -1.5449219, 0.30664062, 0.14379883, 1.4091797, 1.2890625, -2.7851562, -0.106933594, -1.1748047, 1.1972656, -1.5166016, -1.7226562, 0.46923828, -0.46166992, 0.6713867, -3.984375, 2.5742188, 0.8808594, -0.09838867, 1.171875, 3.3867188, -0.22521973, -2.921875, 0.56347656, -0.9277344, 1.6181641, -1.3691406, -1.1904297, -0.8100586, 1.0585938, 0.45483398, -0.00856781, 1.3525391, -1.2832031, -2.4726562, 1.5380859, 1.7509766, -0.074157715, 2.7519531, -1.0908203, -1.9960938, 0.48901367, 0.9760742, -3.1757812, -0.032836914, 0.21777344, 0.27075195, -0.8388672, 0.030151367, -1.8447266, 1.1757812, -1.0986328, -1.5234375, -4.5195312, 2.265625, 2.46875, 0.95410156, 2.2695312, -1.2324219, -0.2043457, -0.6694336, 0.42016602, 0.16308594, 0.39672852, -1.7529297, -0.16882324, -0.72753906, 0.6064453, -1.6894531, -0.5673828, 1.3330078, -1.7988281, 0.05050659, -2.2265625, 0.11871338, -0.45361328, -2.5019531, 0.55566406, -0.7758789, 1.6181641, -0.61035156, -1.3535156, 0.5151367, 0.5527344, -1.1210938, 2.5234375, 0.27685547, -0.19616699, 1.1738281, 0.7734375, 2.3652344, 0.08911133, 0.2298584, 0.15100098, 1.5507812, -0.30810547, 0.14245605, 2.4355469, 0.2705078, -1.5927734, -0.78808594, 1.3251953, 3.0976562, 1.5078125, 2.8847656, 1.4433594, -2.4550781, 3.4648438, 0.5517578, -1.9736328, -0.2783203, -0.3022461, 0.028656006, 1.2285156, -0.35302734, -2.8398438, -0.3359375, 2.2109375, -1.2695312, 0.7758789, 0.4206543, -1.9003906, -1.1298828, -2.6757812, -0.54833984, 0.1697998, -1.1005859, -0.057495117, -0.8286133, 0.56640625, 0.11022949, 1.6513672, 3.3339844, -0.6586914, -1.9521484, 2.5214844, -1.3447266, 0.8935547, 0.117004395, -0.43139648, -1.3476562, 0.76708984, 3.53125, 1.6337891, 1.2626953, 0.609375, 0.7988281, -1.4951172, 1.9521484, -0.33666992, 4.0546875, -1.7255859, -1.2578125, 1.4492188, -2.4667969, 0.36157227, -3.1484375, 0.85839844, -1.0341797, 3.5898438, 2.21875, 1.1435547, -1.5927734, 0.2902832, -1.4179688, -2.8691406, -0.9667969, 0.81103516, 0.1274414, 0.12634277, 0.37548828, -0.9838867, 1.1103516, 0.029678345, 0.08276367, -1.0537109, -0.22705078, 0.97509766, -2.1464844, -0.13427734, -0.113220215, -1.5664062, 0.84814453, 2.109375, -0.5961914, 0.25756836, -2.6113281, -2.4375, 1.9042969, -2.0039062, -0.16442871, 2.1855469, 0.70703125, -0.4572754, 0.3305664, 1.7099609, -2.7226562, 1.2744141, -2.2753906, -0.44628906, 1.5761719, -0.5073242, -1.1552734, 0.11627197, -1.1914062, -0.16479492, -1.2197266, 2.8964844, -0.35864258, 1.5332031, 0.79541016, 0.82666016, -1.3984375, -1.1474609, 0.5073242, 0.41308594, 1.3232422, -0.08001709, -3.3398438, 0.95410156, -1.3564453, -2.296875, 0.7910156, -2.7871094, 1.3417969, -1.3613281, -0.7211914, 1.1005859, 0.78759766, -0.6958008, 0.6303711, -0.96972656, -0.23535156, 0.55029297, -1.3730469, 3.3652344, 3.2832031, -0.0736084, -0.65527344, -2.8710938, 0.2479248, 0.97509766, 0.72314453, -1.9355469, -0.11401367, -0.7939453, 1.1777344, -0.3461914, 0.43530273, 3.1914062, 0.23010254, -0.7011719, 0.52734375, 2.7460938, -0.9458008, 1.2519531, 0.17297363, 1.5800781, -0.49804688, 5.3125, 0.57421875, -2.8535156, 1.4677734, -1.3867188, 1.0371094, 0.1361084, -0.9399414, 0.27539062, -3.0371094, -0.5024414, -2.6171875, -1.1464844, -2.4335938, 2.3671875, 1.0839844, -1.8828125, -0.48999023, 2.1425781, 0.22644043, 2.3613281, 2.3847656, 1.0839844, -1.21875, 0.37060547, 0.05996704, 0.36450195, 2.0585938, -2.5, 1.3232422, 1.4111328, 0.20544434, -1.9140625, 3.2792969, 2.1289062, 2.5878906, 0.48217773, 2.0839844, 3.1035156, 1.875, 2.7539062, 1.1210938, 1.3076172, 1.6259766, -0.10058594, -0.52001953, 0.5991211, 1.2285156, 0.88623047, -2.2832031, 0.38549805, -2.0800781, -1.2714844, 0.81347656, -0.16711426, 0.640625, -2.1386719, 0.79003906, 0.96728516, 0.45166016, -2.2773438, -0.085510254, -0.76953125, -0.99560547, 1.2207031, 0.07043457, 3.390625, -0.21081543, 0.99072266, -1.3095703, -0.4675293, 2.0488281, -2.1210938, 0.46484375, -0.3515625, -0.23986816, -1.125, 0.048736572, 1.03125, -0.31713867, -0.30371094, 0.3388672, 1.4140625, 0.92871094, -0.07543945, -1.3046875, 1.9257812, 1.2636719, 2.1015625, 0.8847656, -1.1738281, 2.28125, -1.0839844, -2.0625, -3.7460938, 3.25, 1.421875, 1.1328125, 0.50878906, -3.8144531, 0.46728516, -0.46533203, 0.6230469, -1.3144531, 1.875, -0.3317871, -3.046875, -0.23327637, 0.017684937, 0.0054016113, 2.1113281, 0.5131836, -2.1289062, 2.6132812, 0.31640625, 1.6259766, 0.9716797, 1.2978516, 0.8144531, 1.2412109, -0.40527344, 3.5703125, -0.08416748, -1.4296875, -1.1767578, 2.3984375, 2.2519531, 0.25268555, 2.5585938, -1.7207031, -0.609375, 0.7241211, 0.5859375, -0.7705078, -2.2226562, -0.2668457, -0.47558594, 1.4697266, -1.6826172, -1.9296875, 3.9765625, 2.2109375, 0.4802246, -0.14147949, -0.05899048, -1.4775391, 1.7714844, -0.9042969, -0.40234375, -1.6855469, -1.1337891, 1.8085938, 0.2680664, -1.7177734, -0.19042969, 1.2626953, 0.5180664, -1.5810547, -1.046875, -0.3173828, -0.24511719, -0.5136719, 0.34228516, -0.39282227, -2.8125, 3.0996094, -0.12548828, 0.796875, 3.7441406, -1.1171875, 1.0673828, -1.6367188, -0.8173828, -0.23742676, -0.09576416, -1.3945312, 1.9072266, 3.4121094, -0.17602539, -0.5253906, -1.953125, -3.28125, 0.03253174, -1.2509766, 2.7246094, -0.9604492, -2.9882812, -1.4980469, 1.3779297, 2.0957031, -1.8398438, -0.7285156, -0.5234375, -0.5263672, 1.7246094, -0.28735352, 0.031066895, -0.34570312, 0.4284668, 0.36743164, 1.6582031, 0.9404297, -0.6542969, 0.46801758, 3.2011719, -1.921875, -3.359375, 0.7583008, 0.71972656, 0.50878906, 0.5566406, 0.23449707, 0.8666992, 1.6054688, -0.5776367, -0.41186523, -2.34375]}, "B08F27PWFS": {"id": "B08F27PWFS", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating\nDescription: \nFeatures: \u3010Grill and Griddle Combo\u3011--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA]\n\u3010Rapid Heating\u3011--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious.\n\u3010Easy Cleaning\u3011-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use.\n\u3010Anti-deformation Surface\u3011-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature.\n\u3010Power Source Type\u3011--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.\n", "embedding": [-1.0107422, 0.8779297, 0.25439453, 0.7993164, -0.4255371, 0.36035156, 1.0644531, -0.58935547, -1.4794922, 1.7021484, 0.78515625, -0.20605469, 1.2304688, -2.9082031, -0.35107422, 1.2890625, 1.4384766, -0.7832031, 1.3017578, -1.640625, 2.2265625, 0.16210938, 1.8056641, -0.7988281, -0.009346008, 0.3112793, 4.2695312, -3.234375, 0.70654297, -0.14318848, 3.4316406, -1.0869141, 0.94384766, 1.8730469, -2.9394531, -0.42895508, -2.046875, 2.1679688, -1.5654297, -1.0898438, -1.015625, -1.0771484, 3.6953125, -0.24243164, -2.8125, -2.5625, 1.0048828, 2.5253906, -0.23132324, -2.1523438, 0.7084961, 0.9145508, 0.37841797, 1.1669922, -2.6367188, 1.5302734, -0.18103027, -1.3447266, 0.80859375, -0.30371094, 1.5791016, 0.8256836, -2.5839844, 0.8417969, -1.125, -2.0546875, 0.6098633, -0.19042969, 0.5678711, -2.2890625, 2.0234375, 0.25463867, -1.4560547, -0.9091797, 0.29956055, -0.21020508, -2.3027344, -0.16101074, 2.2109375, 0.8911133, -1.3662109, 3.2226562, 0.8510742, -3.265625, -0.2734375, 1.5292969, -0.80322266, 0.38745117, 2.0722656, 0.81884766, -1.2421875, 2.1855469, -3.8398438, -2.7753906, 0.6899414, -0.6220703, 0.99853516, 0.81640625, 0.3166504, 1.5126953, -1.9541016, -0.028015137, -0.37646484, -0.53271484, -3.9082031, -0.52490234, 3.1289062, -0.96777344, -3.7675781, 0.054107666, -2.1171875, 0.6347656, 2.6210938, -0.22668457, 1.2070312, -1.046875, -0.75878906, 1.0302734, 2.7089844, 1.6230469, 3.7929688, 0.7392578, 0.76953125, -0.23730469, 0.33032227, 0.33618164, -0.44726562, 3.328125, 3.6972656, -1.1396484, -1.5175781, -1.0175781, 4.15625, -0.09887695, -1.21875, -3.5917969, -0.92529297, -1.3496094, -2.4746094, 1.0830078, -1.8398438, 0.31054688, 2.0292969, 0.9838867, -5.8554688, -0.6879883, 1.0683594, 1.8544922, 1.7412109, -0.8725586, -0.6459961, -2.6660156, -0.21948242, -2.2597656, 1.6865234, -1.2558594, -1.6357422, -0.5336914, 4.1210938, 0.41088867, 1.6162109, -1.9863281, -2.1132812, 0.4375, 0.8354492, -2.9257812, -0.9628906, 2.6621094, 0.74902344, 1.5849609, -0.7578125, -2.2734375, 0.703125, -0.515625, -0.17211914, -1.3007812, 0.29663086, 1.3369141, 2.4882812, -0.23596191, -1.6787109, -2.2460938, -0.42041016, 2.09375, 0.5004883, -1.421875, -0.000726223, 0.6791992, -0.42016602, -1.0791016, -1.0566406, 1.25, -1.7949219, -0.21020508, -1.6855469, -2.1582031, -1.9833984, -1.6816406, 0.22949219, 1.2724609, 0.50439453, -0.7890625, -0.6953125, 0.5541992, -1.4316406, -2.4902344, -0.7895508, -1.6171875, 0.44335938, 0.7558594, 1.7841797, -1.0537109, 1.5380859, -0.9121094, -1.6787109, -0.6845703, 2.2050781, 0.3256836, 2.4082031, 1.7998047, -0.38842773, -0.38964844, 0.16430664, 2.4960938, 2.3066406, 0.73583984, -0.06713867, 0.984375, -1.6230469, -0.56884766, 2.2128906, 0.29907227, -1.7822266, -0.20568848, -1.2705078, 1.9023438, 0.9814453, -1.8808594, -0.19421387, 0.041931152, 0.70703125, -1.2099609, 1.2128906, -0.8979492, 0.40307617, 2.2871094, -2.2167969, 2.296875, 2.0546875, 1.4394531, -1.0634766, 0.0021457672, -0.59277344, -0.953125, -0.2409668, 0.3491211, -0.1928711, 0.52490234, -1.84375, -3.5273438, 1.3583984, 1.4414062, -1.8144531, 0.72216797, 2.5136719, -0.26831055, 2.8378906, 1.4853516, -2.546875, 1.296875, 1.1796875, 0.6977539, 2.171875, -1.046875, 0.6533203, -0.42871094, -0.36083984, 1.9394531, 0.58691406, 1.9121094, 0.4580078, -1.2851562, 1.7421875, -1.2441406, -0.32910156, 0.15185547, 0.036865234, 0.23242188, -0.67333984, 2.1347656, 4.4414062, -0.2290039, -2.7011719, 3.9316406, -0.24108887, 2.3085938, 2.6152344, -1.8134766, 0.3791504, 1.234375, 1.1533203, 1.0839844, -0.51708984, 1.8535156, -2.0175781, -1.1748047, -0.73828125, -3.5859375, -0.28173828, 2.7832031, -0.6982422, 0.6928711, -1.4169922, 0.77978516, 0.02809143, -0.31469727, 1.5517578, -1.2021484, 1.8457031, 1.7285156, 0.045562744, 0.7133789, -0.91503906, -1.6005859, 0.34814453, -0.036865234, -1.5849609, 0.41308594, 1.7792969, -0.9482422, 0.4501953, 0.1385498, 1.1191406, -1.6855469, -2.6972656, -1.5449219, -1.8662109, -3.1425781, 1.4912109, -0.21838379, -0.7783203, -0.16479492, -0.88183594, 1.625, -0.46606445, -2.6425781, -1.3476562, -0.44433594, -1.6787109, -0.3034668, -0.35131836, 0.45092773, -0.43164062, -3.1445312, -0.9321289, -0.66845703, -0.6401367, -0.0135650635, -1.1015625, 1.2470703, -2.1210938, -0.7988281, 0.47607422, 0.6591797, -0.15246582, -1.5419922, 0.6591797, -2.1933594, 1.3662109, -0.7348633, -0.0814209, -2.1386719, -0.07733154, -1.9140625, -0.97998047, 0.1204834, -1.8007812, 2.703125, -1.0527344, 0.31469727, -0.9716797, -0.7270508, 0.15283203, -0.24377441, -1.8193359, -1.0976562, 0.22265625, -2.4316406, -4.0039062, -4.2304688, -1.2539062, 0.5136719, -0.28320312, -2.1464844, -0.7548828, -3.0273438, 1.3837891, -1.8730469, 1.4101562, -0.19445801, 1.734375, -1.0625, -1.6679688, -0.7529297, 0.7446289, -0.035186768, -0.80615234, 0.19274902, 0.9785156, -0.61083984, -0.74560547, 0.5234375, -1.1884766, -1.5048828, -2.0917969, -3.4667969, 2.296875, 0.8417969, -0.76171875, 2.4550781, 0.7158203, -1.7851562, -3.9101562, -0.7529297, 3.4960938, 2.125, 2.4140625, 0.9042969, -1.0195312, 1.9384766, -0.00472641, -0.4794922, -1.3203125, -1.3300781, 3.7910156, -1.6357422, -1.2880859, 1.2519531, 2.1367188, -2.7753906, 1.1582031, 0.79785156, 0.5629883, 3.3183594, 1.5429688, 2.1757812, 0.9477539, -1.7919922, -0.14172363, 1.8183594, -1.4257812, -0.02835083, -0.8286133, -0.3708496, 0.025604248, 1.0888672, -0.578125, 1.0947266, -0.027511597, 0.47607422, 1.1513672, -2.6210938, 1.6494141, -0.0814209, -0.4074707, 1.9042969, 1.6708984, -0.13500977, 0.34545898, -0.06854248, 0.2866211, 0.0034122467, -1.8623047, 0.60253906, 1.3955078, 0.4267578, -0.15332031, 0.33740234, 0.27905273, 1.1865234, 0.7783203, 1.7763672, -2.2265625, -1.7099609, 2.1699219, -1.6650391, -2.1210938, -1.5449219, 1.2617188, -2.0078125, -2.2773438, 2.078125, 1.2636719, -0.16357422, -1.3056641, -0.61865234, 0.25512695, -1.2431641, 2.703125, 1.96875, -1.0849609, 0.3239746, 0.36621094, 1.8671875, 1.5791016, -1.2001953, -1.7685547, -2.7089844, 0.46142578, -1.1679688, 0.17602539, 1.2333984, 0.87353516, -1.7929688, -1.1523438, -2.4296875, 0.034851074, -0.87939453, -0.93652344, -0.34936523, 1.8056641, 2.5703125, 1.4169922, -0.44628906, 3.0625, -1.3564453, -0.8803711, 1.4277344, -3.8085938, -0.84033203, -2.078125, -4.6484375, 2.328125, 0.38378906, -0.7060547, 0.8261719, 1.0751953, -0.1161499, 1.5371094, -0.10028076, -3.0839844, -0.28515625, -2.3105469, 0.8261719, -2.9257812, 1.6162109, 0.45458984, 0.21166992, -1.1152344, 0.13244629, -0.022262573, 0.2680664, 1.8320312, 1.8037109, -1.3671875, 1.1435547, -0.8378906, 0.27612305, 0.43139648, 1.1855469, 1.1191406, -0.4008789, -0.6845703, -2.4121094, 0.859375, -0.6166992, 1.2626953, -1.1708984, 0.5083008, 0.6899414, -0.5551758, -0.9614258, 1.6679688, 2.6953125, -0.59716797, -2.4199219, -3.296875, 0.35302734, -1.1113281, 0.13208008, -1.8837891, 0.18518066, -2.625, 0.05267334, -0.022369385, 1.1083984, 2.7070312, 0.27612305, -1.6464844, 1.0625, 1.0996094, -2.671875, -2.0429688, -0.67578125, -0.53759766, 0.101745605, -3.0117188, -1.5458984, 0.7470703, -1.5605469, -0.5419922, -0.8779297, 2.2988281, 1.0390625, 1.1279297, 3.1816406, 0.09832764, -1.6005859, 2.0019531, -1.1679688, -1.0810547, 1.3242188, 0.35131836, -0.16699219, 2.5917969, 0.5576172, -1.2158203, -0.14343262, -0.33642578, -3.3925781, -0.10772705, -1.6787109, 1.8984375, -0.39331055, -0.7788086, 0.98779297, -0.19970703, 2.4882812, -1.1240234, 0.3737793, 2.046875, 0.7246094, -0.85009766, 0.95703125, 1.4580078, 1.1923828, 0.13464355, 0.2290039, 0.76220703, -1.9091797, 0.5859375, 0.30029297, 3.1503906, -1.1123047, -0.98046875, -0.4104004, 0.8857422, -0.5966797, -0.61376953, 1.5800781, 0.9667969, 0.84716797, 1.9287109, 0.7709961, -1.5097656, 2.3632812, 0.38452148, -1.7519531, -2.765625, 0.30932617, -1.4462891, 0.32788086, -1.1787109, -3.7773438, 0.7050781, 1.0703125, -0.55615234, 0.82714844, 0.8300781, 0.095336914, -0.9921875, -1.9443359, -0.14416504, 0.020996094, 0.13574219, -0.60546875, -0.6269531, 0.26586914, 0.9868164, 0.8979492, 3.5058594, -0.13208008, 0.40673828, 2.2460938, 0.10070801, 1.1386719, -0.5888672, -0.7084961, -3.3789062, -0.71972656, 1.9814453, 1.1962891, 1.6298828, 0.67578125, -0.6738281, -2.4003906, -0.7104492, -3.0390625, 3.6757812, -2.3457031, -0.121154785, -0.2524414, 0.25439453, -2.2734375, -1.8515625, 0.2680664, 1.2021484, 3.484375, 1.6279297, -0.25, 0.20410156, 0.70410156, -1.5957031, -6.3632812, -0.113220215, 1.03125, 0.2619629, 0.16821289, 0.33862305, -1.8701172, 1.1132812, -0.06976318, 0.16040039, -2.5253906, 0.58935547, -0.93066406, -0.030456543, -0.29101562, -0.32714844, 0.5263672, 1.6972656, 2.1289062, 0.4020996, -0.24304199, -3.4824219, -0.5449219, 0.9838867, -2.3027344, -0.31201172, 1.2285156, -0.97753906, 0.08526611, 0.5678711, 0.86816406, -1.8056641, 2.8359375, -1.7265625, 0.34887695, -0.30371094, 0.22570801, 0.65234375, 0.9638672, -0.54785156, 1.0683594, -0.76464844, 1.1992188, 1.7714844, 0.023117065, -0.625, 1.5439453, -0.7783203, -0.6665039, 0.8334961, 0.17163086, 1.78125, 0.86865234, -1.0126953, -0.6904297, -2.7617188, -2.8339844, 0.50439453, -2.3105469, -0.14428711, -1.5566406, 1.7822266, 1.5791016, -0.6279297, 0.117492676, -0.0025367737, 0.56103516, -1.0507812, 0.8720703, -0.94140625, 1.8798828, 2.1679688, -1.3876953, -2.2539062, -3.0019531, 1.2148438, 0.2277832, 1.8779297, -0.056854248, 0.7084961, -1.6162109, 1.3886719, -0.63134766, 1.2763672, 2.734375, 0.01927185, -0.5209961, -0.12988281, 1.5537109, -0.60546875, 1.8701172, 1.0136719, 1.1230469, -1.5849609, 4.2617188, -0.3317871, -1.9433594, 2.5117188, -1.0507812, 2.1738281, -1.2285156, -1.0214844, -0.79296875, -1.7480469, -0.045959473, -0.85498047, -0.92578125, -2.5410156, 3.5488281, 0.75683594, -0.107177734, 1.0283203, 2.5527344, -0.29614258, 1.1953125, 2.1875, 1.0087891, 0.65527344, 1.7998047, -1.2255859, -0.27954102, 0.39624023, -1.4003906, 0.62109375, 1.9355469, 0.74316406, -1.9394531, 2.4824219, 0.6791992, 1.9277344, 1.5751953, 1.2167969, 3.5039062, 0.78222656, 3.1269531, 0.828125, 1.28125, 0.98291016, 0.37280273, 0.13745117, 2.5996094, 2.1601562, -0.48413086, -2.4023438, 0.78515625, 0.030014038, -0.9042969, -0.0077400208, -0.25390625, 1.2373047, -4.8632812, 1.3691406, -0.2602539, 1.2285156, -2.5058594, 0.62597656, -1.1982422, -0.49804688, -0.17541504, -0.13989258, 0.80810547, -0.9272461, 0.8779297, 0.8725586, 0.4958496, 1.8183594, -3.2324219, -1.3037109, -0.46655273, -1.7685547, -0.8588867, 1.4238281, 1.3828125, 1.5107422, 0.9091797, 1.1210938, 1.75, 0.625, 1.3955078, -1.1992188, 1.0419922, -1.0498047, 2.9316406, -0.15148926, -2.5664062, 2.8867188, 0.65185547, -1.8134766, -2.6289062, 1.0566406, 1.3974609, 0.7583008, 1.2617188, -4.4101562, 2.8574219, 0.11804199, 2.0410156, -2.4375, 2.8242188, -1.2929688, -4.1289062, -1.3261719, 0.033477783, 1.1425781, 3.1640625, 0.95703125, -1.3310547, 2.578125, 0.27539062, 1.9042969, 1.0605469, 1.8330078, -1.3779297, 0.49267578, -0.53759766, 2.1152344, -0.007347107, -0.7167969, -0.64990234, 1.8486328, 1.375, 0.11352539, -0.2619629, -1.9521484, 0.58203125, -0.5029297, -0.24902344, -0.5498047, -1.3339844, -1.8701172, 0.46191406, 0.38745117, -1.2626953, -1.6523438, 0.7285156, 2.2851562, -2.2402344, -0.15100098, -0.23779297, 1.3476562, 3.828125, -0.73876953, -1.1523438, -0.9213867, -0.21435547, 0.97314453, 1.1445312, -0.7270508, -0.028640747, 0.60058594, 1.3994141, -1.5712891, 1.1621094, -1.1806641, 0.60839844, 1.03125, 0.51708984, -2.046875, -2.3046875, 0.39208984, -1.0400391, 0.71191406, 3.6816406, -0.13269043, 0.1161499, -2.2792969, -0.5029297, -1.4345703, -1.4912109, -1.1640625, 0.37890625, 3.21875, 3.28125, 1.6513672, -1.1503906, -1.4140625, -1.2089844, -0.8540039, 3.8203125, 0.84814453, -1.1923828, -0.052703857, 1.3232422, 0.9604492, -1.4794922, -0.81933594, 0.35180664, -0.7866211, 0.9589844, 0.48413086, 1.71875, 1.9335938, -0.31591797, -0.32592773, 1.9833984, 0.73828125, -0.021392822, 2.0097656, 2.2539062, -0.7783203, -2.0898438, 0.44750977, -1.5683594, -0.43969727, 1.4882812, 2.8496094, 4.0820312, -0.2722168, 0.0791626, -2.9667969, -0.21875]}, "B01LPY9R8U": {"id": "B01LPY9R8U", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nProvides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.\n", "embedding": [-0.81396484, 0.9638672, 0.29296875, 0.9638672, -0.56103516, 1.7119141, 1.4853516, 0.80859375, 0.9555664, 1.4121094, 2.4785156, 0.7866211, 3.2226562, -3.2773438, 1.140625, 3.0527344, 0.8886719, -0.9042969, 2.8886719, 1.1386719, 4.5820312, 2.1484375, 0.16333008, -1.1171875, 1.5292969, -1.5087891, 1.796875, -2.0820312, -1.6074219, -0.23571777, -0.114746094, -1.4511719, -0.74902344, -0.18896484, -2.921875, 1.7509766, 0.99902344, 0.3466797, -0.6816406, -0.7504883, -1.1591797, 0.076049805, 3.0253906, 0.9501953, -2.4375, -2.5644531, 0.23413086, -0.28125, -0.80615234, -0.29736328, 0.92041016, 3.6445312, -0.43603516, 1.7558594, -2.109375, 1.0195312, 0.90185547, -3.6171875, 0.4362793, 1.4833984, 1.3173828, 1.7568359, -3.2246094, 0.46899414, 1.1044922, -0.7446289, -0.018814087, -0.4189453, 0.08569336, -0.13903809, -0.70751953, 1.2470703, 0.2626953, -0.99072266, -1.5449219, 0.67285156, -4.0234375, -1.1132812, 2.2265625, -1.2832031, -2.8808594, 1.0722656, 1.796875, -0.3100586, -0.3479004, -0.15612793, -0.8046875, 0.7807617, 2.2246094, 0.31274414, -1.4794922, 1.078125, -4.3710938, -2.2753906, 0.019805908, 0.10638428, 2.8945312, 3.0839844, 4.078125, 0.37329102, -0.43554688, 0.6928711, 0.8955078, 0.61279297, -2.71875, -0.70410156, 0.123413086, 1.5400391, -1.1152344, -1.3251953, -1.4814453, 2.2265625, 3.5722656, -1.4785156, -0.6196289, -1.0839844, -0.058044434, -0.84765625, 1.1767578, 0.60009766, 1.8173828, -0.43969727, 0.51660156, 0.14074707, 1.5996094, 1.9384766, -0.5986328, 2.6972656, 2.2128906, 0.38256836, -0.17883301, 0.9086914, 2.7246094, -1.8017578, 3.4863281, -3.1171875, -2.3964844, -2.1445312, -0.95654297, 0.3701172, -3.2285156, -0.42211914, 0.35205078, -0.8364258, -4.4375, -0.42236328, -2.4765625, -0.17565918, 0.39892578, -2.109375, -1.0292969, -2.5605469, 1.4560547, -0.42749023, 3.2382812, 1.0976562, -0.2322998, 0.15258789, 0.99072266, -0.34692383, 0.7573242, -1.4511719, -1.7275391, 3.0625, -0.2565918, -5.6640625, 0.051605225, 1.1171875, -1.6425781, 1.0888672, 0.14929199, -2.5253906, 2.2519531, -2.6933594, 1.3222656, -1.8886719, 2.1230469, 1.1171875, 0.83496094, -0.33862305, -4.8164062, -1.1113281, 0.61572266, 0.01965332, 1.2802734, 2.3066406, -0.76416016, 0.9472656, 2.5136719, -0.06756592, -1.9003906, 1.3876953, 0.2211914, 2.5332031, 0.6020508, -1.8515625, -5.1328125, -1.4189453, 0.024398804, 2.03125, -2.4023438, -1.4775391, -0.27001953, -0.46679688, -1.0429688, 0.54296875, -0.5673828, -0.4567871, 0.8017578, 1.0908203, -0.16101074, -0.54785156, 2.65625, -1.9833984, -0.9628906, -1.0429688, 0.62402344, 1.5859375, 1.9619141, 1.8144531, -2.515625, 0.58203125, 2.2207031, 2.4082031, 2.1992188, -0.4489746, -0.099609375, 2.9414062, -2.4199219, -0.030685425, 1.7958984, 1.2216797, -1.0556641, 0.20275879, -1.9599609, 3.4863281, 1.1220703, -0.97802734, 0.37573242, 3.1640625, 1.3037109, -0.20837402, -0.2824707, -2.4082031, -0.9301758, -1.8623047, 0.007144928, 1.796875, -1.3671875, -0.36132812, 0.61816406, -0.14282227, -0.16418457, -3.2050781, -2.0664062, 0.04421997, 0.37939453, 0.53271484, 0.74316406, -1.2001953, 3.4882812, -3.5175781, 1.6992188, 0.20007324, 0.105773926, -0.08660889, 2.7265625, -2.3710938, -1.5517578, -0.26538086, 0.25854492, 2.5136719, 1.4277344, -1.2314453, 1.0839844, 1.3203125, -1.7558594, 2.34375, 0.5527344, 1.8242188, 1.9306641, -1.7617188, 2.4863281, -1.3154297, 0.9399414, 1.8945312, 2.2753906, -0.49853516, -0.7861328, -0.5917969, 2.5605469, 1.3945312, -1.4111328, 2.2324219, 3.6386719, 0.6977539, 0.5185547, 1.1484375, 0.24023438, 0.25683594, -1.4892578, 0.31884766, -2.46875, 2.46875, 2.2421875, 0.14038086, -0.8989258, -1.9472656, 1.1455078, 2.3535156, -0.9555664, 0.24609375, -0.75634766, -1.2832031, -2.8378906, -1.9277344, 1.9833984, -0.6147461, -1.1865234, 1.2304688, -0.81689453, 0.9145508, 0.93115234, -0.2705078, -0.49414062, -0.45581055, -1.6318359, 0.5332031, 0.58935547, 1.1914062, 1.4472656, -1.5283203, 0.74365234, -0.51953125, -1.7109375, 2.0039062, -2.3027344, -3.3066406, -0.015571594, -1.1220703, -0.72021484, -2.8632812, -1.2080078, 1.3310547, 0.24414062, -0.9682617, 0.28759766, 1.4316406, 0.52734375, -2.0527344, 0.25219727, 2.28125, -1.4794922, -3.0078125, 0.19641113, -0.80566406, -0.4946289, 2.59375, -1.5078125, 0.7158203, -0.5493164, 1.9033203, -0.55029297, -0.46142578, -0.4663086, -1.2304688, 0.6074219, -1.9785156, -2.1503906, -0.23925781, 0.6201172, -0.5830078, 1.8925781, -0.87890625, -1.5107422, -0.14465332, -0.86816406, 1.1162109, 0.2043457, -0.11444092, -0.23913574, -0.6347656, -0.049804688, -1.7695312, -3.078125, -1.1669922, 1.6601562, 0.30664062, -0.05529785, -4.8632812, -0.2409668, -0.9116211, 0.49853516, -1.5791016, -0.5229492, 0.59521484, -2.0546875, 2.5390625, -0.57666016, 0.4104004, 0.5390625, 0.14807129, -0.9223633, 0.41137695, 3.0078125, -0.41723633, -1.3945312, -0.31176758, -1.0595703, -0.12408447, -2.6484375, 1.2050781, -0.11639404, 0.6713867, 0.6640625, 0.32958984, 0.8466797, 1.3984375, -0.20166016, 3.1933594, 0.0059165955, 0.41088867, -4.6796875, -0.66552734, 2.4082031, 2.5546875, 2.5546875, 1.0488281, 0.6171875, 0.8198242, 0.64160156, 0.16174316, -0.3190918, -2, 3.53125, -3.8808594, 0.024368286, -0.8652344, -0.60009766, -3.8476562, 0.6279297, 0.7416992, 0.6816406, 3.3964844, -1.0830078, 1.5615234, -1.0458984, -0.7705078, 0.9580078, 0.8071289, 1.09375, -0.1809082, -0.3959961, -0.4008789, -0.84814453, 0.057006836, 1.3535156, 1.7841797, 0.28759766, 1.1035156, 0.9121094, -0.58203125, -0.08282471, -1.4638672, 1.3964844, 0.10949707, 1.7236328, -0.77978516, -0.21105957, -2.0273438, -0.8286133, 1.2841797, 1.2734375, -1.5029297, 0.66308594, 2.6640625, -0.74560547, 0.57373047, -0.8232422, 0.59521484, -0.5776367, 1.4296875, 1.5361328, 0.7993164, -0.047912598, -1.9541016, -0.89501953, -1.5722656, 0.96435547, -0.10668945, 1.1455078, -0.7211914, -0.97558594, -1.7460938, -1.0136719, -1.6708984, 0.98095703, 0.21972656, 1.8652344, 2.7597656, 0.09790039, -1.0859375, -0.05029297, 0.47314453, 1.3339844, 0.31860352, -1.2265625, 0.40039062, 0.8208008, -0.60498047, -0.29516602, 0.9008789, 0.5097656, -2.7421875, -1.0986328, -1.1601562, -1.1269531, -1.0185547, -0.74658203, 0.49951172, -0.9916992, -0.87060547, 0.80078125, -0.29101562, 2.3046875, 0.8935547, -1.8222656, 1.140625, -2.8828125, -0.38183594, -0.2368164, -5.9882812, 2.1425781, 0.15368652, 1.1630859, 2.4589844, 0.088378906, 0.85302734, 2.3085938, 1.0927734, -5.2890625, -1.4638672, -1.4501953, 0.9716797, -3.2773438, -1.0947266, 1.7128906, 3.6015625, 0.68652344, 0.05999756, 0.082214355, -2.2734375, -0.4506836, -0.3569336, -1.1953125, 1.8134766, 1.5136719, -0.16345215, -0.4658203, -1.7207031, 2.1289062, -0.37939453, -2.2929688, -1.9257812, 1.5732422, 2.3261719, 0.46118164, -1.6171875, 1.7236328, 2.3554688, -0.7114258, -1.9599609, -0.14245605, 3.8007812, -0.5175781, -2.9785156, -2.0976562, -0.7236328, -0.22949219, -0.23449707, -0.36621094, 0.5678711, -0.42358398, 0.92578125, -0.42333984, 0.4650879, 1.5849609, -0.8769531, -2.5859375, 0.19177246, 0.12695312, -2.9082031, -0.25048828, -0.9770508, 0.7763672, -1.5488281, 0.067871094, -1.9726562, 1.9345703, 0.9399414, -2.4160156, -3.0761719, 0.53759766, -1.9238281, 1.6298828, 0.8779297, -1.4599609, -1.15625, 0.94384766, 0.5751953, -0.48632812, -1.5351562, -1.1103516, -2.3554688, -1.0869141, 2.328125, 1.6777344, -1.6757812, -0.20703125, 0.54296875, -1.3554688, 1.3974609, 2.1191406, -2.2441406, -1.4042969, -0.12658691, -0.9316406, 3.3515625, -2.6972656, 0.68408203, -0.55615234, -0.41064453, -3.8183594, 1.0888672, 0.9140625, 0.34228516, -1.0673828, 1.4941406, 2.3613281, 0.51220703, 0.11444092, 0.5800781, 0.68359375, -0.44140625, 0.6069336, -0.19006348, 1.890625, 1.7158203, 3.1503906, 2.125, 2.6035156, -0.1965332, -0.6323242, 0.546875, -1.5322266, 1.3261719, 0.1227417, 0.5551758, -2.2734375, -0.2998047, -1.15625, 0.45898438, -0.28466797, -1.8408203, 2.0488281, 2.953125, -0.29052734, -0.40893555, -1.1914062, -1.5253906, -1.3183594, -2.8769531, -2.1601562, 0.515625, -2.1230469, 0.72216797, 0.59814453, -0.030090332, 0.7729492, 1.3486328, 2.2714844, -0.7636719, -0.6484375, 0.19628906, -1.2402344, -2.9160156, -0.70947266, -2.7460938, -1.4619141, 1.3779297, 1.7470703, 3.1171875, -0.08673096, 0.054473877, -1.3349609, 0.57128906, -1.2294922, 0.35498047, 2.21875, -0.67578125, -0.18481445, 3.8613281, -1.3291016, -1.5068359, -0.85839844, 0.07281494, -0.61328125, 1.8759766, 0.75146484, -0.64501953, -1.3574219, 1.2099609, -2.3828125, -6.5625, 0.31420898, 1.8505859, 2.1777344, 0.8701172, -1.4257812, -1.8007812, 0.2607422, -0.7832031, -0.3725586, -2.1523438, 1.7324219, -2.53125, -1.1953125, -1.1542969, -0.3647461, 1.0068359, -0.65771484, 2.2714844, -2.9277344, 0.14868164, -4.4101562, -0.80615234, 1.0126953, 1.1054688, -0.6748047, -0.20568848, -2.9082031, -0.104003906, -0.52001953, 1.1064453, -3.7890625, 0.5576172, -2.3085938, 2.046875, -0.22277832, -1.3652344, 0.6303711, -0.13391113, 0.9638672, 0.68115234, 2.8359375, 1.125, -0.6274414, -0.75683594, -2.046875, 0.13391113, -0.44335938, -0.24316406, 0.73046875, 0.54296875, 2.7324219, 2.3808594, -1.9365234, -2.8847656, -2.3378906, -0.3100586, 0.16259766, -1.5458984, 2.8320312, -0.75, 2.0585938, 1.0830078, 0.13146973, -0.5942383, -0.9116211, -1.6884766, -0.28100586, 1.5195312, -2.1699219, 3.4707031, -0.9291992, -0.033813477, -1.0966797, -0.91796875, 0.83447266, 1.6386719, -0.9355469, 0.8173828, -0.15563965, 1.015625, -0.04067993, 0.47265625, 3.2148438, 1.1640625, 2.0722656, -1.4912109, -0.5395508, 1.4970703, -2.6328125, -0.7524414, 1.5263672, -1.3066406, -1.1591797, -0.016326904, -0.001953125, -3.8320312, 0.6357422, 1.3642578, 0.15258789, -1.2304688, 1.2421875, 0.3840332, -3.4726562, 0.34985352, 0.35961914, -3.5917969, -0.81347656, 3.6035156, -0.09234619, 0.43408203, -1.2431641, 3.6640625, -0.80615234, 0.92871094, -0.8222656, -1.6044922, -1.1240234, -0.6015625, 0.2277832, -0.17626953, 0.10229492, -1.3134766, 0.98535156, 1.2929688, -0.24914551, 0.7084961, -0.7441406, 1.4560547, 2.09375, 0.095581055, 3.8554688, 1.4501953, 1.7832031, 2.2558594, 1.3300781, 2.5664062, 2.1191406, 0.23730469, -0.51464844, -0.10888672, -1.7626953, 0.8510742, -1.921875, 1.7988281, -1.0195312, 1.3701172, 1.34375, -0.25830078, 1.4511719, -4.59375, 0.016738892, -2.0859375, -0.10333252, -2.8730469, 0.92578125, -0.7993164, -0.07098389, -0.103271484, 1.6103516, -1.2832031, 2.5605469, 0.51660156, 0.57470703, -0.14624023, 2.2480469, -0.56152344, -0.3239746, -0.4658203, -0.66748047, 0.43969727, 0.86035156, -1.1367188, 0.48266602, 0.94628906, 1.3105469, -0.30493164, -0.6171875, -0.007843018, 0.61865234, -0.6586914, -1.7558594, 2.6386719, 1.6582031, 0.9121094, 3.53125, 0.3479004, 0.16455078, -2.75, 1.3544922, -1.2714844, -0.24914551, 0.17687988, -4.1679688, 1.7226562, -1.0507812, -1.8212891, -2.0390625, 0.46191406, 2.6464844, -0.71435547, 1.7353516, 1.2421875, -0.1262207, -0.43066406, 1.1035156, -1.4042969, 2.5605469, -0.72753906, -0.24926758, 1.890625, 2.2128906, 0.90283203, -0.8125, -1.3115234, 3.9863281, 0.08605957, -0.48828125, 0.2208252, 0.9526367, 1.0810547, 1.1914062, -0.5996094, -0.99072266, 1.859375, 1.2939453, -0.38916016, -0.10900879, -1.3105469, 0.26733398, -0.70703125, -1.6611328, -0.2944336, -2.6523438, 0.5576172, 1.4990234, -1.03125, 0.10333252, 1.5341797, -1.9033203, 2.2871094, 2.3613281, -0.80078125, -0.105651855, -0.73095703, 1.9345703, -2.953125, 1.4501953, 1.3515625, -1.3623047, -0.46899414, -2.09375, -0.59521484, 0.15844727, -1.6582031, -0.18554688, 0.93359375, 0.34448242, -0.5830078, -1.4306641, -1.2490234, 1.1962891, 3.7460938, 1.2822266, 0.06463623, -0.060272217, -0.062316895, 2.3808594, -0.10595703, -3.0820312, 0.8535156, 1.9013672, 1.0185547, 2.0722656, -1.4345703, -2.2089844, -0.0793457, -1.8710938, 2.1855469, -0.13757324, -2.3125, 1.0078125, 2.2304688, 0.84765625, 1.8759766, -0.056671143, 0.13000488, 0.16748047, 0.45239258, -1.9453125, -0.74072266, 1.1875, 0.60839844, -0.08917236, 4.6054688, 1.3369141, -1.0390625, 0.16882324, 3.8691406, -1.3359375, -1.8085938, 0.48950195, -1.6464844, 0.328125, 2.140625, 0.65185547, 0.9057617, 0.52490234, -1.8417969, -2.9453125, 1.8359375]}, "B00FDOONEC": {"id": "B00FDOONEC", "original": "Brand: Weber\nName: Weber 50060001 Q1000 Liquid Propane Grill,Chrome\nDescription: \nFeatures: One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area\nPorcelain-enameled cast-iron cooking grates and cast aluminum lid and body\nFully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches\nPush-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately)\nUses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes\n", "embedding": [-0.23547363, -0.09991455, 1.4492188, -0.47583008, -2.2382812, 0.6953125, -0.05810547, -1.1376953, -0.14099121, 2.0078125, 3.1992188, -0.18469238, -0.40307617, -3.2792969, 1.3408203, 0.7973633, 2.4726562, 1.4726562, 0.55322266, -0.28515625, 1.1162109, 0.6669922, 1.0390625, -1.5449219, 1.8759766, 1.9521484, 4.6054688, -5.3554688, -1.1904297, -1.8085938, 0.7392578, 1.4042969, 0.6582031, 1.4804688, -3.0917969, -1.0664062, -3.6542969, 1.7148438, -2.4394531, 0.66552734, 0.03756714, -1.6132812, 1.0791016, 0.21264648, -1.34375, 1.0292969, 0.88964844, 0.49389648, -0.69921875, -0.35424805, 2.5683594, 0.79003906, -0.7182617, 0.5932617, -0.9370117, 2.6757812, -0.29736328, -1.4873047, 0.9580078, -0.31835938, 2.5410156, -0.08105469, -2.984375, -1.4599609, -1.5654297, 0.1194458, -0.9916992, -0.6972656, 1.2988281, -0.4272461, 3.8964844, -2.4433594, -1.0664062, 0.99365234, 1.8125, -1.3388672, -2.3867188, 2.6191406, 0.9277344, -0.73583984, -0.8310547, 2.4746094, 0.92041016, -2.3007812, -0.10046387, 0.49316406, -0.021392822, -2.1152344, 2.3652344, 2.2578125, 0.26123047, 1.578125, -2.4121094, -3.7851562, 1.6123047, 0.21606445, 1.3759766, 1.3564453, 0.87060547, 0.7128906, -2.0253906, 1.1074219, -1.3242188, -1.7451172, -2.8945312, -1.1484375, 1.0322266, 0.10430908, -3.7460938, -0.25952148, -0.99609375, 0.7285156, 0.75439453, 1.1445312, 1.2607422, 0.47265625, 0.025024414, 3.5703125, 0.78515625, 0.27124023, 3.015625, -1.4326172, 0.31958008, -1.2275391, -1.5947266, 0.33447266, -1.0927734, 1.1376953, 3.1777344, -2.3066406, -0.6074219, 0.421875, 4, 0.63720703, -0.20458984, -0.67333984, -1.7089844, -0.77783203, -1.9414062, -0.2512207, -1.3085938, 0.52978516, 0.97021484, -0.8256836, -3.7246094, -0.39331055, 1.0957031, 0.93310547, -0.21264648, -2.6796875, -0.1105957, -1.1152344, -0.7553711, -0.84521484, 1.3574219, 0.22216797, -1.8710938, 0.2746582, 3.6503906, 2.0214844, 1.4951172, -0.23059082, -0.40112305, -0.12927246, 0.53515625, 1.1816406, 2.1386719, 2.03125, -0.65966797, 1.3359375, -0.7680664, -0.5600586, -0.45825195, 0.42333984, 1.8115234, -1.7119141, 0.23962402, 1.6669922, -0.50683594, -0.53466797, -1.0019531, -2.53125, -0.12524414, -0.16699219, 0.24938965, -0.90722656, 0.25585938, -0.18017578, 1.6982422, -1.6904297, 0.7182617, 0.30493164, 1.8789062, -0.6879883, 0.47973633, -1.2871094, -0.4272461, -1.9697266, 1.0380859, -0.85058594, -0.46166992, -1.0869141, 1.4335938, 0.7553711, -0.30688477, -2.3554688, -0.0072364807, -2.7597656, 0.87939453, 1.8466797, 2.078125, -1.7949219, 1.0556641, -0.36108398, -0.22216797, -1.9921875, 1.7480469, -0.13415527, 0.4831543, 2.6738281, -1.5673828, -0.5131836, 0.8901367, 1.7744141, 1.4951172, -0.3005371, 0.6796875, 0.30297852, -3.1621094, -0.5180664, 3.1660156, 0.5654297, -0.46850586, 0.06274414, 0.546875, 2.5683594, 0.9506836, 0.04852295, -0.11175537, -0.23718262, 0.3137207, 1.4453125, -2.0410156, -1.8310547, -0.074157715, 0.13146973, -2.0214844, 2.3359375, 1.1015625, 0.052612305, 0.13916016, 0.27905273, 0.39331055, 0.9848633, -1.1435547, 0.7216797, -1.7363281, 1.5292969, 0.19750977, -2.7753906, 1.2822266, 0.000161767, -0.1965332, -0.3322754, 1.2490234, -1.4052734, 2.7617188, 2.0839844, -1.4970703, -1.2158203, 0.6225586, 0.30078125, -0.03189087, -1.2539062, 1.3623047, 1.6582031, -1.4697266, 2.0292969, 0.19262695, 0.5336914, 0.13647461, -0.9580078, 1.5839844, -2.8808594, -0.8510742, 0.6660156, 0.7836914, -1.4804688, -2.3457031, 0.48168945, 3.3222656, 0.32128906, -2.8671875, 3.140625, -2.734375, 1.5605469, 2.296875, -0.9194336, -0.30859375, 0.94628906, 2.328125, 0.09631348, -0.20776367, 0.71728516, 0.0107040405, -2.3496094, 0.65966797, -3.7949219, 0.9394531, 1.6347656, -0.65234375, -0.5649414, -1.2548828, 1.5693359, -3.0859375, -1.6347656, 1.453125, -4.1367188, 0.34814453, -1.4277344, 1.8017578, 0.4033203, -0.99560547, -0.6586914, -1.0566406, -0.09863281, -1.2929688, 1.0761719, -0.6196289, -1.8310547, -0.59375, -0.9165039, -0.15319824, -1.6181641, -1.5947266, -1.7470703, -1.7871094, -2.7871094, 2.2050781, -0.85791016, -0.39501953, 1.7207031, -2.7578125, -0.27929688, 0.57177734, -3.3242188, -0.19934082, -1.7412109, -1.7841797, -0.99853516, 0.37158203, 1.3886719, -1.8789062, -3.7421875, 0.50097656, -0.53271484, 0.11975098, -0.7241211, -0.92871094, -0.3491211, 0.62939453, -0.7084961, -0.6333008, 1.0546875, 2.0585938, -1.0390625, 1.2158203, -1.4873047, 0.5546875, -2.1757812, 0.56640625, 0.060913086, 0.93847656, -3.6816406, -2.4570312, -0.45361328, -0.40307617, 4.2773438, -0.16491699, 1.0126953, -0.035949707, 0.85498047, 1.7236328, 0.068237305, -1.3583984, 0.71435547, 1.0908203, -1.9863281, -0.68847656, -3.296875, -0.98828125, -1.8955078, -0.3972168, 0.22033691, -0.2166748, -2.4257812, -0.57470703, -1.4794922, -0.53222656, -0.54833984, 0.21264648, -0.77246094, -1.3115234, -2.7617188, -0.8305664, -2.203125, 0.24438477, -1.6162109, 1.4931641, 0.33789062, 1.2285156, 2.8554688, -0.69189453, 2.1308594, -1.1298828, -4.9179688, 3.65625, 0.06378174, -2.46875, 1.1269531, -2.6308594, -2.3183594, -1.9589844, -0.16625977, 2.265625, 2.6328125, 2.2519531, 2.4160156, 2.0644531, -0.6386719, -1.2138672, 0.65771484, -1.59375, 0.6669922, 3.2148438, -2.6328125, -2.25, 0.5883789, 1.4306641, -2.9511719, -1.0488281, 2.7050781, 1.8544922, 1.7763672, 2.4609375, 1.6748047, -0.09741211, -0.7792969, 1.6591797, 1.5166016, -0.62060547, 0.09362793, 0.52246094, 1.4550781, -0.6171875, 1.9189453, 1.9892578, 1.3339844, 1.7207031, 2.4707031, 1.265625, -0.7832031, -0.5180664, -0.077819824, 1.6054688, -0.08312988, 1.8447266, -0.9189453, -0.21374512, -0.82421875, -1.7470703, 0.16442871, -0.33129883, -0.73876953, 3.5039062, 0.40600586, -1.1171875, 1.3642578, 2.3183594, 0.9916992, -0.16101074, -0.0038108826, -0.9194336, -0.3503418, 2.5820312, -0.9560547, 0.515625, -1.4511719, 0.94921875, -0.07928467, -2.1542969, 0.3557129, 2.7988281, -1.4375, -0.93847656, -0.004108429, -1.5996094, 0.07800293, 1.3623047, 0.68847656, -0.92333984, 0.22314453, -2.1660156, 1.3691406, -0.02053833, -1.0976562, -0.7841797, -1.390625, 0.34643555, 0.2783203, 1.9111328, 2.2890625, 0.3618164, -2.6757812, 0.24536133, -4.015625, -1.9980469, 1.1064453, -2.6289062, -1.0644531, 2.0683594, 0.2626953, 1.3144531, -0.21936035, 2.1699219, -1.0615234, 0.6401367, 1.8925781, -2.734375, -0.47387695, -3.4472656, -4.4296875, -0.02330017, -1.34375, 0.12731934, 1.5380859, -0.34179688, -0.010467529, 2.2460938, 0.98095703, -1.6074219, -0.9296875, -1.6074219, 0.51220703, -0.8203125, 1.6455078, 1.0244141, 0.1328125, -1.5478516, -2.1816406, 0.01701355, -0.25463867, 1.5664062, 2.0546875, -3.640625, 0.31713867, -1.7314453, -0.80810547, -0.5463867, -0.57958984, 1.7119141, 0.9165039, -0.21362305, -2.1875, 1.9511719, 0.27807617, 0.15063477, 2.34375, 1.8095703, -0.2861328, -3.5175781, 0.25756836, 1.5625, 2.8398438, -0.74316406, -1.1933594, -0.75, 1.7373047, -0.7475586, -0.21582031, 0.25390625, 0.26489258, -1.6455078, 1.6337891, 1.2412109, 1.7236328, 0.8613281, 0.56347656, -2.5878906, 0.96875, -0.48706055, -2.3027344, -1.7392578, 0.20739746, 1.078125, -1.1513672, -0.10064697, -2.5078125, 0.50439453, -0.5493164, -1.1845703, -3.5917969, 2.8125, 4.2929688, 2.53125, 2.3242188, -1.359375, 1.1533203, -0.66503906, -0.6855469, 0.14501953, 0.78759766, -0.9165039, -0.34326172, 3.2421875, 0.98828125, -1.4160156, 0.3022461, 1.2871094, -2.1679688, -0.13769531, -2.546875, 1.21875, -0.7089844, -0.29516602, 0.38720703, -1.3876953, 1.9951172, -0.49145508, -0.7260742, -0.37280273, 0.9057617, -0.8022461, -0.38085938, 0.7104492, 0.36523438, 0.23461914, 1.2392578, 2.1601562, -0.734375, -0.052001953, -0.8964844, 0.9584961, -1.5253906, 0.38452148, -0.1875, 0.75097656, -1.015625, -1.0263672, 1.7910156, 1.9736328, 1.3486328, 3.0820312, 2.6074219, -2.2539062, 1.7089844, 1.4267578, -1.9199219, 1.5996094, 1.1738281, -1.0664062, 2.234375, 0.38989258, -2.9902344, -0.26000977, 1.3251953, 0.29370117, 1.4023438, -1.5683594, -0.4716797, 1.2763672, -1.6054688, -0.48046875, -0.26416016, -1.1289062, 0.5756836, 0.9633789, 0.5097656, -1.3759766, 0.9970703, 3.0292969, -1.3701172, -1.8359375, 1.3339844, -1.5263672, 0.42797852, -0.9448242, -1.7011719, -2.4394531, -0.9863281, 2.4824219, 0.82910156, 1.5019531, -0.19689941, 1.7929688, -1.4746094, -0.117492676, -1.4970703, 2.5839844, -1.9726562, -0.6088867, 0.73828125, -4.0976562, -0.35717773, -2.2675781, -0.7338867, -0.22180176, 1.0400391, 1.8955078, -0.4152832, -0.5292969, 0.75683594, -1.7744141, -3.7851562, -0.74658203, -0.11828613, 0.08746338, 1.0585938, 1.5888672, -0.88720703, 1.5029297, -0.11053467, 0.22033691, -1.3740234, 0.38085938, -0.93115234, -0.2421875, -0.050323486, 0.43945312, -1.0683594, 0.51953125, 0.49414062, 1.5224609, 1.3759766, -1.5839844, -0.7314453, -0.6953125, -0.703125, -0.2602539, 2.0332031, 1.4013672, -0.8774414, 1.2724609, 1.4697266, -3.9296875, 2.5605469, -1.8164062, -2.0039062, 1.6376953, -0.9560547, 0.71191406, -0.1998291, -0.88964844, -0.064819336, 0.06335449, 1.1982422, 1.7929688, -1.3710938, -1.1240234, 0.058563232, 0.70410156, -0.43139648, 0.51708984, 0.2861328, 0.76904297, 2.03125, -1.5830078, -1.0820312, -1.3203125, -2.8535156, 0.93310547, -2.2285156, -0.8120117, -1.9482422, 0.5449219, 1.5126953, 0.5493164, -0.6796875, 2.4042969, -0.8510742, -0.6225586, 0.5991211, -0.8466797, 4.9960938, 3.8613281, -1.4091797, -1.0478516, -1.7070312, 0.37768555, 2.0214844, 0.20336914, -1.0009766, -0.33569336, -0.46435547, -0.5073242, -0.13366699, 1.3876953, 0.26635742, 0.56884766, 0.16796875, 1.6347656, 3.3769531, -1.8525391, 2.1523438, 0.97021484, 1.3720703, -0.5498047, 4.0195312, 0.6489258, -2.7382812, 1.1660156, -2.3242188, 2.1640625, -0.92089844, -1.2021484, -1.0732422, -0.23388672, -1.5048828, -1.8925781, -1.5537109, -2.1894531, 1.4892578, 1.9414062, -2.1386719, -0.34423828, 1.0019531, -0.32836914, 2.4648438, 1.6884766, 2.3027344, -1.9306641, 0.98779297, -0.07940674, 1.0966797, 1.4150391, -4.2851562, 1.5771484, 1.3828125, -1.1513672, -1.4306641, 1.7685547, 0.40234375, 2.5078125, -0.0037899017, 2.5976562, 2.4628906, 1.6699219, 2.34375, 1.2480469, 3.3554688, 0.6591797, -1.1425781, 0.7788086, 1.1943359, 0.5917969, 1.1123047, -1.4726562, 1.4736328, -1.2480469, -1.0576172, -0.50634766, -0.6508789, 0.8857422, -2.2089844, 0.13793945, 0.55126953, 2.0820312, -0.9707031, -0.3173828, -0.05392456, 0.44018555, 0.20251465, -0.35302734, 3.1152344, 0.921875, 0.28710938, -0.48535156, -0.3840332, 1.2382812, -4.25, 1.0791016, 1.1533203, -1.0009766, -0.10638428, -2.2851562, 1.7285156, 0.8496094, -0.7475586, 0.49658203, 3.9785156, 1.2236328, 1.15625, -1.8652344, -0.7114258, 1.0839844, 3.2792969, 0.29223633, 0.41748047, 0.77734375, -0.41333008, -4.5625, -4.046875, 2.8613281, 2.1875, 1.2216797, 0.3149414, -0.31201172, 3.9238281, -1.3466797, 0.37280273, -0.96533203, 0.61572266, -0.20739746, -4.0039062, 0.63623047, 0.36889648, -0.50341797, 1.2529297, -0.08300781, 0.5205078, 0.81152344, 1.2851562, 1.7529297, 0.5839844, 1.2431641, 2.5351562, 1.7314453, -2.2324219, 2.3828125, -0.29052734, -0.9633789, -1.609375, 3.21875, 0.80615234, -0.23388672, 0.4650879, -0.6508789, 0.32348633, -1.0878906, 0.039031982, 0.058898926, -2.4707031, -0.07556152, 0.6899414, 1.3378906, -1.7119141, -0.21911621, 2.8964844, 1.4609375, -0.21179199, 0.6455078, 2.2226562, -0.7026367, 1.8447266, -1.1386719, 0.671875, -0.42089844, 1.2949219, 0.40649414, 0.24865723, -0.8051758, 0.8720703, 1.1767578, 1.4375, -1.0410156, -0.5024414, -0.35302734, -1.2832031, -0.19311523, 0.3671875, 0.07800293, -1.7744141, 2.6503906, -1.0458984, -0.5649414, 1.7734375, 0.40576172, 0.04647827, -2.4023438, -2.1464844, -1.2470703, -0.58740234, -1.1689453, 1.7587891, 3.9785156, -0.17248535, 0.019561768, -2.15625, -3.8066406, -1.6259766, -3.0390625, 2.3007812, -1.671875, -1.1181641, -1.2460938, 0.2097168, 1.1113281, -0.62402344, -0.25146484, -0.05291748, -2.0625, 0.81884766, -0.25756836, 0.14794922, -0.55322266, 0.19689941, 1.3359375, 2.0683594, 0.80908203, 0.21875, -0.15197754, 2.6347656, -0.1694336, -1.7744141, 0.21875, 0.5336914, -0.04989624, -0.95458984, 0.9501953, 2.0390625, -0.45141602, -0.9741211, 0.3881836, -2.875]}, "B07L93KFNN": {"id": "B07L93KFNN", "original": "Brand: Fuego\nName: Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray\nDescription: \nFeatures: New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling\nNew easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray\nUpgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall\n346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit\nCompact 21\" X 21\" (Lid closed) footprint perfect for the Small patio/balcony\n", "embedding": [-0.7441406, -0.41235352, 0.7285156, -0.78466797, -0.76708984, -1.0839844, -0.4477539, -1.7958984, 0.9433594, 1.1357422, 1.3056641, -0.38916016, 0.31298828, -2.7734375, 2.1210938, -0.14343262, 3.0351562, 3.1054688, 0.49145508, -0.38085938, 1.4208984, 1.2900391, -0.9707031, -1.28125, 0.9291992, 1.0458984, 5.203125, -4.4804688, 0.11932373, -0.36376953, -0.3996582, 1.5224609, -1.1367188, 2.0703125, -1.2890625, -2.0195312, -0.19543457, 1.4355469, -3.2363281, 0.52490234, -0.28466797, 0.06707764, 1.3320312, 2.5722656, -1.3144531, 1.1191406, 0.13427734, 0.24194336, -0.828125, -2.5332031, 2.4570312, 2.0332031, -0.4975586, -0.37426758, 0.9609375, 1.4667969, -0.94873047, -1.9951172, 0.9375, 0.02230835, 1.3808594, -1.1132812, -1.8867188, 0.5551758, -1.7519531, -1.2763672, 1.3828125, 0.3503418, -0.19335938, -0.96777344, 3.0039062, -1.5400391, -1.5537109, 1.6572266, -0.7871094, -1.4990234, -2.5996094, -0.25756836, 0.50878906, -0.7597656, -0.6777344, 2.9667969, 2.6113281, -3.4648438, 0.37451172, 1.4707031, -0.01965332, -1.671875, 0.80322266, 1.7177734, 0.080200195, 2.1328125, -1.25, -3.7890625, 2.2929688, -0.23925781, -0.5332031, 2.2480469, -0.1986084, 0.50390625, -0.8334961, 0.7285156, -2.6777344, -1.4609375, -3.5097656, -1.0263672, 1.6152344, -0.9975586, -2.859375, -0.059051514, -1.8925781, 0.10235596, 0.5732422, 0.38183594, 1.6132812, -0.21166992, 1.8964844, 0.76464844, 0.4428711, 2.703125, 1.5791016, -1.2431641, -0.035736084, 0.39086914, 0.115234375, 0.16760254, -0.07543945, 0.7294922, 3.4023438, -1.6689453, 1.3544922, 0.8076172, 2.1796875, -1.1855469, -1.8925781, -2.3867188, -1.0458984, -3.3671875, -4.6367188, -1.6513672, -1.2783203, 1.4609375, 1.5732422, -0.4345703, -3.765625, -0.34204102, -0.9609375, 1.8242188, 0.40698242, -2.3730469, 0.3083496, -0.031921387, -0.8886719, 0.08642578, 1.5117188, -1.0732422, -0.81103516, -2.1914062, 3.2363281, 0.0066452026, 2.0371094, -0.8676758, -0.5517578, 0.7026367, -0.009979248, 0.25976562, -0.44848633, 1.9072266, -1.7236328, 3.0292969, 0.048797607, -3.3574219, 1.3671875, 0.24694824, 1.5273438, -2.7792969, -0.79345703, 2.2460938, 0.63183594, 0.8095703, -1.3007812, -2.2167969, 1.7578125, 0.84033203, 1.8681641, -0.6220703, -0.9555664, -0.68603516, 1.1611328, -1.1894531, 1.5166016, -0.1685791, -0.8173828, 1.4238281, -1.2236328, -2.1113281, 0.030593872, -0.28051758, 1.3808594, -0.578125, -0.32055664, -0.10211182, -0.13061523, 1.1005859, -0.71484375, -1.3398438, -0.7211914, -1.3603516, 0.90527344, 0.39819336, 3.7050781, -0.90966797, 1.4599609, 0.079589844, 1.6992188, -0.9399414, 2.0078125, 1.1035156, 1.3339844, 1.09375, -0.1673584, -1.0507812, -0.38891602, 2.4296875, 1.3291016, 1.0585938, 0.47680664, 0.53466797, -3.0996094, -1.4785156, 2.7773438, 1.3271484, -0.5541992, -0.22216797, 0.29760742, 2.265625, -0.30419922, -0.9667969, -1.0244141, 0.87841797, 1.9482422, -1.2871094, -2.0859375, -1.0185547, -0.97802734, 1.7089844, -1.1708984, 2.0234375, 0.24072266, 2.0722656, 1.3007812, 2.4199219, -0.33862305, 1.2392578, 0.9267578, 0.6455078, -0.23803711, 2.4511719, -0.9511719, -0.9121094, -0.2541504, 1.4453125, -0.5576172, 1.7910156, -1.7597656, 0.13000488, 2.7167969, 0.45898438, -0.45532227, -1.4833984, 1.203125, 0.9716797, 2.9140625, 0.31689453, -0.2319336, 1.375, -1.2675781, 1.4570312, -0.16015625, 0.69140625, -0.69189453, -1.0068359, 2.5917969, -2.8789062, 1.7480469, -1.3007812, 1.1103516, -1.0683594, -2.4082031, 0.3894043, 3.046875, 0.8041992, -2.5527344, 3.9453125, -1.5761719, 0.5214844, 0.4020996, -1.9394531, -0.98779297, -1.75, 1.3242188, 0.2064209, -0.03652954, 0.6850586, -0.6669922, 1.5253906, 0.33984375, -1.6220703, 0.57177734, 1.0810547, -0.99121094, -0.24694824, -1.2890625, 1.3515625, -0.9770508, -1.5673828, 2.4589844, -1.6992188, 1.5195312, 1.0205078, 0.8569336, 1.7675781, -0.25097656, -0.43066406, 1.5283203, 0.06512451, 0.11102295, 2.4433594, 0.49023438, -3.1367188, -1.2021484, -0.1373291, 0.5073242, -1.3027344, -1.5888672, -1.2763672, -2.6582031, -1.7626953, 1.0625, -2.3222656, 0.5600586, -0.55322266, -2.7050781, 0.9472656, -1.1240234, -2.9433594, -1.3964844, 0.4165039, -0.12042236, -0.87597656, 0.32763672, 1.328125, -0.6123047, -3.7695312, -0.5083008, 1.0966797, -0.38208008, 0.5083008, -1.3701172, 1.4394531, 1.5976562, -0.013580322, 0.7128906, -0.76220703, 0.050628662, -0.28051758, -2.0996094, -3.40625, 0.16918945, -2.4277344, 0.15551758, -0.68652344, 0.4621582, -3.9863281, -1.8867188, -0.9838867, -0.70654297, 5.7734375, -1.0800781, 1.4970703, -1.2509766, -1.484375, 1.1611328, -0.41967773, -0.88623047, 1.2216797, -0.032073975, -1.7529297, -3.1933594, -3.4570312, -0.22888184, -0.5449219, -0.72802734, 0.04510498, 0.34228516, -3.171875, 0.02104187, -1.6318359, -0.8208008, -2.1210938, -0.050323486, 0.50878906, -0.4765625, -0.15637207, -0.62158203, 0.09277344, -2.1523438, -1.0117188, 1.8457031, 0.027297974, 0.10583496, 0.9941406, -0.36010742, 0.56152344, -0.03414917, -4.8085938, 2.8730469, 0.63720703, -3.0527344, 0.3239746, -1.4912109, -1.6855469, -1.4306641, -1.8408203, 4.21875, 1.3232422, 1.6220703, 1.1699219, 0.04156494, 0.81347656, 0.6352539, -0.06744385, -0.5883789, 1.1435547, 2.1601562, -2.4570312, -2.2929688, 1.1865234, 1.8408203, -3.3125, -2.1777344, 1.9365234, 0.5209961, 2.1660156, 2.0097656, 1.7236328, 1.2675781, 0.095825195, 1.9287109, 0.8173828, 0.5834961, -1.40625, -0.35058594, 0.44799805, -0.25634766, 1.3066406, 1.7431641, -0.6591797, 1.9726562, 1.3105469, -0.9692383, -1.2792969, -0.056152344, 0.21850586, -0.24047852, 0.17163086, 2.2460938, -1.1259766, 1.2763672, -0.23840332, -0.78027344, 0.36499023, 0.43432617, -0.22143555, 1.7373047, 0.42333984, 0.22924805, 0.5097656, 2.6953125, 0.39233398, -0.37426758, 2.4179688, -2.0351562, -0.6074219, 1.25, -1.0615234, -0.6772461, -2.0546875, 1.7060547, 0.2310791, -1.3339844, 0.50341797, 2.2871094, -0.7294922, -2.0605469, 1.0595703, -0.8959961, -0.3552246, 0.5390625, -0.08111572, -2.1972656, 1.0419922, -0.6972656, -0.8017578, 0.1739502, -0.47485352, -0.012840271, -1.6083984, 0.12976074, 0.10534668, 0.9814453, 1.0615234, 1.3535156, -1.4980469, -0.3779297, -1.6044922, -1.4804688, -0.20593262, 0.14160156, -2.1386719, 2.8359375, -0.02822876, 2.0019531, -0.021224976, 2.2109375, -0.921875, -1.5361328, 1.9677734, -2.5449219, -1.2060547, -0.5131836, -3.3828125, 0.048736572, -0.8383789, -0.24304199, 1.9609375, 1.40625, -0.8979492, -0.008430481, 0.114868164, -4.5, -0.8183594, -0.10003662, 0.51708984, -1.5302734, -1.1347656, 0.6611328, -0.1373291, -2.8691406, -0.8330078, -0.32617188, -1.0673828, 0.8984375, 3.7207031, -1.5146484, 0.11047363, -0.5996094, -0.24731445, -0.3996582, -0.07421875, -0.12365723, -1.2421875, -0.2783203, -1.0996094, 2.0019531, 1.2832031, -1.3457031, 0.037200928, 0.49951172, -0.25732422, -1.6660156, 1.1230469, 0.5776367, 1.0332031, -0.08319092, -1.7910156, -1.0742188, 0.5756836, -0.11883545, -1.4111328, 0.46704102, 1.171875, -0.7861328, 0.82714844, 1.1738281, 0.1463623, 2, 0.94140625, -1.7158203, -0.4440918, -1.2314453, -1.9902344, -0.2130127, 0.5522461, 0.12609863, -1.390625, -0.21118164, -1.8457031, 0.65283203, -1.8828125, 0.34423828, -2.2753906, 2.3105469, 2.359375, 2.2773438, 1.8652344, -1.8603516, -1.4912109, 0.8652344, -1.0234375, -1.2128906, 0.7817383, -0.8041992, 0.55566406, 1.9785156, 0.93652344, -0.7504883, 1.2871094, 0.9746094, -1.4589844, 0.828125, -1.9189453, -1.5996094, -1.9306641, 0.0040283203, 0.030029297, -0.7055664, 2.1640625, -3.6855469, -1.3740234, -1.3720703, -0.06665039, -0.38427734, 1.5800781, 1.2509766, 0.38354492, 1.5107422, 0.7392578, 0.2355957, 0.16772461, 1.6640625, -1.1367188, 1.1181641, -1.1347656, -1.4482422, -0.078430176, -0.9765625, -1.4375, 0.12005615, 1.9726562, 1.3583984, 1.3066406, 0.90185547, -0.13415527, -1.9316406, 3.3476562, 1.7861328, -3.1855469, -0.5263672, -0.6772461, -0.96972656, 1.6455078, 1.7519531, -3.2226562, 0.7973633, 0.93359375, 0.3190918, 0.7397461, -0.041259766, -2.2558594, -0.5083008, -0.8017578, -1.2763672, -0.7158203, -1.84375, -1.6435547, -0.31884766, 0.113708496, -1.2207031, 1.2304688, 3.9023438, -1.5292969, -2.1875, 1.2480469, 0.09185791, 0.24108887, -0.5175781, -0.77246094, -1.0703125, -0.3322754, 2.78125, 1.6865234, 1.6269531, 0.39648438, 0.27197266, -1.1621094, -0.4753418, -1.9882812, 2.0664062, -2.9082031, -1.3652344, 1.0546875, -0.9604492, -1.21875, -1.5537109, -0.059265137, -0.33520508, 1.4003906, 2.2539062, 0.6616211, 0.049804688, 0.5756836, -2.7226562, -3.4667969, -0.41479492, -0.79785156, -0.93115234, -0.20922852, 1.0527344, -0.36254883, 0.35009766, -0.54785156, 0.24450684, 0.15161133, -0.6347656, -1.2451172, -2.171875, -0.51171875, -0.23718262, -0.19018555, -0.13110352, 3.1152344, 0.7705078, 0.09210205, -3.1660156, -1.6132812, -0.3293457, -1.0869141, 0.23156738, -0.33276367, 0.5527344, 0.16101074, 1.1865234, 1.5048828, -1.3369141, 0.5703125, -1.2519531, 0.3552246, 1.2236328, -1.1855469, -0.37231445, 0.11505127, 0.32836914, 0.25830078, -0.7944336, 1.7324219, 1.1181641, -0.07354736, 0.035705566, 2.1992188, -0.3034668, 0.5493164, 0.0054626465, 0.3190918, 0.20861816, -0.14172363, -0.80371094, -0.17980957, -2.4316406, -3.515625, 0.7988281, -2.5195312, -0.86035156, -1.3144531, -0.7050781, 1.4873047, -0.084228516, 1.1083984, 2.4238281, 2.0878906, -2.0976562, 0.20495605, 0.06878662, 2.0839844, 2.5859375, -0.90527344, -2.1542969, -2.9003906, 0.6357422, 1.1953125, 0.76123047, -1.0908203, -1.4775391, -1.4013672, 0.6035156, -0.6254883, 2.203125, 0.7636719, -0.3034668, -2.3066406, 2.171875, 2.2363281, -0.45654297, 1.2890625, 0.8017578, 4.0273438, -0.16223145, 2.6191406, 1.4199219, -1.3300781, 1.0449219, -0.3317871, 2.1171875, -1.1875, -0.41674805, -0.6464844, -3.3867188, -0.98779297, -0.8984375, -2.6445312, -2.2558594, 1.7333984, 1.7675781, -0.65283203, -0.20263672, 0.9145508, 0.5605469, 2.1113281, 1.4238281, 2.4902344, -0.20898438, 0.44360352, -1.0185547, 1.2519531, 1.53125, -3.1582031, 1.7207031, 0.42358398, 0.06262207, -0.9584961, 0.25927734, 1.3632812, 2.4023438, 1.9365234, 2.5917969, 2.0800781, 0.9189453, 1.4892578, 0.33935547, 0.6801758, -0.46142578, -1.6289062, -0.48168945, 1.4052734, 1.6835938, 0.92626953, -1.03125, 1.2373047, -0.03237915, -1.4863281, -0.45410156, 0.50341797, 1.1416016, -2.8125, 0.82373047, -0.35107422, 0.17016602, -0.9555664, 1.3759766, -0.96972656, 1.0498047, 0.41088867, 0.5107422, 1.6992188, 0.74902344, 1.7861328, -1.2802734, -0.8847656, 1.9736328, -1.2880859, 0.94873047, 0.15344238, -1.2001953, -0.8066406, -0.21118164, 1.4306641, 0.87890625, 0.92871094, 0.68896484, 2.4179688, 1.7333984, 0.36279297, -1.7841797, 1.484375, 0.6464844, 2.6230469, -0.18103027, -1.1103516, 0.48535156, -0.3322754, -2.8222656, -2.0722656, 2.171875, 1.2988281, 1.7871094, 0.17578125, -0.9790039, 3.1054688, 1.2929688, 1.8798828, -1.5302734, 2.6914062, -1.0966797, -1.5722656, -1.1181641, 0.7285156, 0.6118164, 2.4882812, 1.7519531, -0.061065674, 1.6738281, 0.40478516, 1.7304688, 0.46923828, 2.375, 0.58935547, 0.05206299, -0.57470703, 2.2636719, 1.9658203, -0.9868164, -1.5458984, 1.71875, 2.5234375, -1.4277344, 0.2705078, -0.46923828, 2.1660156, 1.7568359, 0.047546387, -0.17419434, -1.8085938, -0.47924805, 0.046966553, 1.5029297, -0.40014648, -1.9804688, 1.3652344, -0.11608887, -1.1318359, 0.41430664, 1.5332031, -0.37719727, 1.8876953, 0.6333008, 0.34399414, 0.2890625, -1.9833984, 2.0175781, -1.4228516, -1.2832031, 0.29516602, 1.1337891, 0.7915039, 0.0053901672, -0.22851562, -0.4885254, -0.9213867, -0.59472656, 1.5869141, -0.9838867, -1.0439453, 0.45410156, -0.09637451, -0.06524658, 2.4335938, -1.1416016, -0.19421387, -2.3085938, -0.5986328, 0.4724121, 1.6582031, -1.1269531, 1.2304688, 3.5, 1.8408203, -0.38427734, -2.8789062, -3.9257812, -0.8330078, -1.4697266, 1.796875, -0.9584961, -0.7973633, -1.3203125, -0.8725586, 1.6816406, -0.40576172, -1.0078125, 0.014778137, -1.4365234, 1.2216797, 0.81347656, 1.453125, 0.5834961, 1.1503906, 0.859375, 2.1523438, 2.1894531, 0.76171875, 1.3056641, 1.2587891, -0.7080078, -3.3378906, 1.7578125, -0.8330078, 1.0039062, 1.4355469, 1.0351562, 1.5908203, -0.28149414, -0.2467041, 0.32836914, -2.5703125]}, "B0070U0KXA": {"id": "B0070U0KXA", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills L75625 32\" Propane Grill\nDescription: \nFeatures: 830 square inches of cooking surface\n75,000 total BTUs\nPremium solid stainless steel cooking grates\nSize: 32?\nstainless steel smoker head with polished edges\n", "embedding": [-0.7583008, -0.09008789, 2.5195312, 0.5839844, -1.8251953, -1.1191406, 1.53125, -0.98291016, -0.6088867, 1.2089844, 0.21020508, -1.2880859, -2.4960938, -2.2832031, 1.2734375, -0.8071289, 1.4570312, 1.234375, 2.1738281, -0.47973633, -1.3027344, 0.08721924, 3.1738281, -1.5800781, 0.43408203, 0.3515625, 5.5195312, -3.1601562, 0.12536621, -0.051971436, 0.6123047, 1.6494141, 0.9482422, 1.2509766, -1.953125, -2.2753906, -1.8222656, 1.4472656, -2.6542969, 0.16064453, 0.3388672, -0.734375, 1.7060547, 1.1650391, -0.79248047, -0.061798096, 0.44555664, 0.9267578, -3.8378906, 0.06262207, 2.4277344, -0.3701172, -0.27197266, 0.55029297, -0.54345703, 2.9492188, 0.3774414, 0.28588867, 0.51123047, 0.5571289, 1.9052734, -0.055755615, -1.5341797, -0.96484375, -1.8359375, 0.07055664, -0.62597656, -1.7070312, 2.4375, -0.7421875, 2.96875, 0.10644531, -1.9355469, -1.1513672, 0.79785156, -1.8271484, -3.2597656, 1.0126953, -0.3154297, -0.3088379, -0.14135742, 3.6171875, 1.5419922, -2.8789062, -0.3942871, 0.20300293, -1.7441406, -1.9599609, 1.9580078, -1.8515625, 1.1601562, 2.1933594, -2.3261719, -3.3398438, 2.4804688, -1.0097656, 0.7949219, 1.9580078, -1.8691406, -0.2541504, 0.4765625, 0.8984375, -0.8457031, -1.546875, -1.5302734, -1.8330078, 0.7519531, -0.17016602, -2.6796875, 0.2680664, -1.1298828, -1.2958984, 2.2773438, 1.1005859, 2.1894531, 1.1357422, 0.453125, 1.9013672, 1.7207031, 1.6367188, 3.0292969, -1.6669922, 0.091674805, -0.69628906, -0.62402344, -0.21582031, -1.2675781, 1.4306641, 4.8359375, -2.3261719, -0.42895508, -1.5517578, 3.5058594, -0.4140625, -1.5634766, -1.5527344, -2.0722656, -0.06604004, -2.0449219, 0.30615234, -0.10974121, 0.8388672, 1.7265625, 0.115722656, -4.7851562, -2.7011719, -0.9394531, 1.7392578, 0.022903442, -2.265625, 0.03579712, -1.0810547, 0.20336914, -0.203125, -0.04019165, -0.7055664, -1.9960938, -0.79296875, 2.2324219, 0.7348633, 1.78125, -1.3798828, -1.234375, 1.0849609, -1.0488281, -1.390625, -0.30297852, 0.96484375, 1.2177734, 2.2460938, 0.40112305, -0.8251953, 0.24645996, 0.35595703, 0.43920898, -0.14013672, -0.61865234, 1.1376953, 0.39868164, -0.96191406, -0.12719727, -3.0253906, -0.61865234, -0.71191406, 0.43701172, 0.120910645, 1.7138672, -2.0117188, 2.2363281, -1.0146484, 0.8647461, -0.016159058, -0.13598633, 0.5541992, -1.3896484, -1.7392578, -1.7451172, -2.2011719, 2.4863281, -1.1455078, -1.140625, -0.22033691, 0.20117188, -0.29614258, -1.7519531, -3.6328125, -3.1953125, -1.8046875, 2.7460938, 1.3984375, 2.0859375, -2.6621094, 1.7275391, -1.7011719, -0.007671356, -3.5, 0.6381836, 0.6176758, 1.9697266, 2.6445312, -0.4560547, 0.49902344, -0.6796875, 2.9082031, -1.2392578, 0.17895508, 0.69873047, 1.3964844, -2.7265625, -0.33007812, 2.9121094, 0.73876953, 0.025131226, -0.1217041, -0.86816406, 0.9550781, 1.6884766, -1.1376953, 0.08618164, -0.25952148, 0.091308594, 1.5136719, 0.28979492, -0.8666992, -0.12939453, -1.0419922, -2.40625, 3.1113281, 2.6171875, 0.38305664, -1.1542969, 0.09082031, 0.09472656, 1.7294922, 0.0017499924, 1.0849609, -1.4775391, 0.34545898, -0.53564453, -1.9150391, 1.3349609, -1.0820312, 0.75439453, -0.27124023, 0.095458984, -1.1835938, 4.1210938, 0.26635742, -1.7558594, -1.8115234, 0.09436035, -0.6640625, 1.1103516, 0.51220703, 1.8837891, 0.42114258, -1.046875, 2.7734375, -0.3166504, 1.7695312, -0.55371094, 1.859375, 2.171875, -3.25, -1.8681641, -0.026641846, -0.15234375, -0.18408203, -2.40625, 1.4160156, 4.0820312, 0.6660156, -2.7070312, 2.8144531, -1.0605469, 0.5180664, 1.2480469, -1.8925781, 0.6274414, 0.43823242, 0.11425781, 0.07891846, 2.0039062, 2.0878906, -0.6875, -0.58984375, 0.49951172, -2.234375, -0.52978516, 0.1998291, -0.42578125, -2.0605469, -2.2304688, 1.8125, -1.4394531, -0.013435364, 2.8027344, -3.5605469, 1.9833984, 0.7246094, 2.6835938, 0.55566406, 0.00466156, -0.8823242, -0.90478516, 0.9765625, -1.8583984, 0.98291016, 0.203125, -1.9042969, 0.13049316, -1.2128906, 0.85839844, -0.92089844, -1.5908203, -0.29516602, -1.3017578, -1.7265625, -0.045135498, -1.2246094, 0.28955078, 2.1640625, -1.6220703, 1.6386719, -1.5429688, -4.6171875, -1.078125, -1.1181641, -0.8076172, 2.1308594, -0.49658203, 0.16894531, 0.42260742, -5.6054688, -0.36547852, -0.27856445, 0.57958984, -1.015625, -0.81933594, -1.8037109, 0.7910156, -1.859375, -0.8183594, 0.1862793, 0.8510742, -1.1367188, 0.96484375, -2.2128906, 0.07171631, -3.5957031, -0.43139648, -0.45898438, 1.6416016, -1.9394531, -2.3320312, -2.7519531, -0.7216797, 3.78125, 0.90722656, 1.9101562, 0.18896484, 1.0263672, 2.0566406, -1.2050781, -2.4472656, -0.62890625, 0.96533203, -0.48535156, -2.5, -2.7792969, 1.1054688, -2.0351562, 0.011352539, -1.0849609, -0.37695312, -0.8496094, 2.7695312, -2.0332031, -0.14294434, 1.8730469, -0.38549805, -0.99316406, 0.34204102, -1.6914062, 0.27197266, -1.1757812, -0.26391602, 0.5703125, 1.9169922, -0.45239258, 1.2763672, 0.23718262, -0.34594727, 1.5068359, -2.015625, -2.8457031, 4.6289062, 0.3803711, -0.36083984, 2.4003906, -1.9882812, -2.6464844, -2.796875, -0.07952881, 2.6289062, 3.0527344, 1.6083984, -0.70654297, -0.33007812, 1.3291016, -1.4677734, -0.3076172, -0.4260254, 0.41186523, 3.6777344, -1.4003906, -0.91308594, -1.3544922, 2.359375, -3.046875, -1.0878906, 2.6367188, 0.6069336, 1.953125, 1.7060547, 3.421875, -0.11291504, -1.7314453, 3.0585938, -0.5048828, 1.3144531, -0.27905273, -0.27441406, 1.0449219, 0.43530273, 1.9755859, 2.5742188, -0.16418457, 1.1201172, 1.9130859, 1.4345703, 0.8828125, 0.7866211, -0.1508789, 1.3066406, -0.6040039, 2.1835938, -1.4404297, 0.9609375, 0.03967285, 0.44921875, -0.46020508, -0.9116211, -1.2568359, 2.8632812, 0.14770508, 1.1748047, 0.53564453, -0.1459961, 0.02507019, -1.0166016, -0.17260742, -1.609375, -0.48046875, 0.6801758, 0.31518555, -0.84472656, -0.99609375, 1.5966797, -0.93408203, -1.4785156, 0.40698242, 2.984375, 1.4892578, -2.6933594, 2.5175781, -1.2177734, -1.1044922, 2.53125, -0.5439453, -1.5361328, 0.16955566, -1.0859375, 3.359375, 0.91796875, -1.4140625, -0.60546875, -1.8261719, 1.0488281, -0.4909668, 0.82910156, 1.2382812, -0.48266602, -1.7324219, -0.7441406, -1.6523438, 0.38134766, -0.31079102, -2.3183594, -1.7695312, 1.3974609, 0.11706543, 3.3691406, 0.2467041, 2.3105469, -2.0078125, 0.5004883, 1.3388672, -2.3847656, -0.37719727, -3.4921875, -2.0742188, 1.2685547, -1.9814453, -1.7695312, 4.28125, -0.6191406, -0.7109375, 1.3671875, -0.016952515, -2.0214844, -0.62841797, -1.3427734, 0.0826416, -1.9775391, 0.23937988, -1.1591797, 0.9921875, -1.171875, -0.71435547, 0.30493164, -0.38989258, 0.3701172, 0.8276367, -2.4023438, 0.6538086, -1.8681641, -0.22692871, -1.1416016, -1.1523438, 2.4804688, -1.5537109, 0.25390625, -2.8828125, 0.09674072, 0.58691406, -0.9868164, 4.3203125, 2.4863281, -0.78759766, -0.8666992, -0.09887695, 1.1533203, 2.4160156, 0.41967773, -2.5078125, -2.1171875, 1.1523438, -0.8745117, -0.4350586, -0.0569458, -0.3100586, -1.6074219, -0.21289062, 0.64160156, 0.20568848, 0.54589844, 0.014335632, -2.0136719, -0.28759766, -0.6621094, -1.7753906, -0.7832031, -0.04537964, -0.38549805, -0.69628906, 3.0917969, -1.0927734, 0.51464844, 0.2705078, 0.8984375, -1.328125, 2.4121094, 1.4980469, 2.0019531, 2.625, -0.022476196, -0.79052734, 0.07879639, -1.1123047, -0.4519043, -0.41333008, -0.88671875, 0.6557617, 0.6621094, 2.1640625, -3.3125, -1.0966797, 0.3720703, -3.2558594, -0.5595703, -1.9794922, 0.8930664, -1.6044922, -1.1152344, 1.0009766, -1.8291016, 2.4394531, -0.64160156, 0.65771484, -0.8383789, 0.75634766, -0.76660156, 1.1162109, -0.97265625, -0.22595215, 1.3632812, 0.16760254, 0.5, -0.88916016, 1.6943359, -0.30249023, 1.6455078, -2.4355469, -0.8076172, -0.7890625, 0.3581543, -1.5957031, -1.5888672, 1.7158203, 1.9599609, -0.013061523, 2.9453125, 1.2929688, -2.328125, 0.7421875, 1.5146484, -3.5917969, 0.25683594, 0.6308594, -0.37841797, 1.8388672, 1.3740234, -4.5039062, -0.31762695, 1.8339844, -1.2099609, 0.08148193, 1.7714844, -1.453125, -1.7587891, -1.6142578, -1.1269531, -1.3242188, -1.8085938, 0.1472168, -1.8808594, 0.36450195, -2.34375, 1.0078125, 2.7226562, -0.9453125, -1.8398438, 2.1660156, -0.28955078, 0.45776367, -1.4384766, 0.81933594, -0.6347656, -1.1650391, 2.1171875, 1.7460938, 0.42236328, 0.60839844, 2.0195312, -2.3574219, 0.9501953, -3.4003906, 3.6953125, -1.3115234, -0.5805664, 1.3554688, -3.7148438, -1.6425781, -2.9882812, 0.64990234, -1.0576172, 2.3164062, 1.6845703, 0.49658203, -0.8730469, 1.4648438, -1.0185547, -4.109375, -2.3730469, -0.26416016, 0.47705078, -0.003698349, 1.4726562, -3.21875, 0.77685547, 0.84228516, -0.7763672, -1.5146484, -0.054992676, -2.5742188, -0.71875, -0.053100586, 0.62060547, 0.47094727, 1.4716797, 1.5957031, 0.93359375, 1.3339844, -3.1972656, -1.6015625, 1.1650391, -0.64160156, 0.35888672, 3.53125, 2.1035156, 0.9453125, 0.70410156, 1.9003906, -2.1054688, 1.6269531, -0.22790527, -0.23364258, 1.8134766, -0.1239624, 0.8198242, 1.4541016, -3.0332031, 0.6171875, -1.1337891, 1.5878906, 0.0010242462, -1.5605469, -1.6376953, 1.5517578, 0.3564453, -0.59375, 1.3261719, 1.4980469, 0.19458008, 0.83740234, -1.8730469, -0.60595703, -1.7138672, -3.2734375, 1.015625, -3.4628906, -0.15551758, -0.8671875, 1.3955078, 2.9082031, 0.43481445, 0.94628906, 2.5878906, 0.6567383, 1.1064453, 1.5947266, -1.203125, 2.8691406, 2.5410156, -0.18139648, -0.20532227, -1.8339844, 0.18859863, 3.0742188, 0.10290527, -0.45483398, 0.76171875, -0.4711914, -0.25024414, 0.5566406, 1.7763672, 0.81933594, 0.1418457, -1.6767578, 0.4465332, 3.90625, -0.07946777, 2.7636719, 0.21582031, 1.515625, -0.93896484, 4.25, -0.40405273, -2.0644531, 2.6875, -1.2353516, 0.8354492, -0.105529785, -1.6240234, -0.12792969, -1.1074219, -1.6298828, -1.1191406, -0.55029297, -3.03125, 1.0302734, 0.86328125, -0.3720703, -0.99072266, 1.8964844, -1.2226562, 2.1777344, 1.4375, 1.1259766, 1.0615234, 1.0654297, 0.2376709, 0.36572266, 2.0664062, -2.7988281, 1.8798828, 0.20446777, -0.43237305, -1.5175781, 3.8515625, 2.3574219, 1.7714844, 0.015563965, 1.0791016, 1.7460938, 0.7133789, 1.1767578, -1.0957031, 1.890625, 1.2070312, -1.7617188, 1.1328125, 2.0097656, 2.8066406, 1.140625, -0.27490234, 1.3183594, -0.75683594, -1.3056641, -0.25463867, 0.44384766, 1.7373047, -3.2109375, 2.2089844, 0.5541992, -0.3330078, -1.8398438, -1.2802734, -0.41015625, -0.40722656, 1.4726562, 1.1513672, 0.80029297, 0.7636719, 2.4492188, 0.45825195, -1.2724609, 0.55371094, -2.6992188, -0.77246094, 0.72753906, -1.6914062, -1.7011719, -0.59765625, 0.6044922, 0.41870117, 0.7939453, -0.08068848, 3.2890625, 1.4121094, 1.1845703, -1.5361328, 0.56347656, 0.93847656, 3.1796875, -1.3623047, 0.22741699, 0.8642578, -0.3684082, -1.9775391, -2.7949219, 3.6367188, -0.5239258, 2.4140625, 1.0595703, -2.1171875, 2.3046875, -1.2587891, 0.70166016, -2.1445312, 1.1044922, -0.98583984, -1.6904297, -0.98583984, -0.47631836, 2.8164062, 1.5136719, -0.9291992, -0.4868164, 1.7802734, -0.47924805, 2.921875, 1.3457031, 2.078125, 1.8447266, 2.2714844, -0.95703125, 2.3925781, -0.10253906, 0.22729492, -1.5322266, 2.0761719, 2.0859375, 0.34326172, 1.1630859, 0.5019531, 0.37353516, -0.09454346, -1.1523438, -0.73876953, -1.4355469, -0.5859375, -0.06567383, 1.5205078, -0.63378906, -0.9584961, 2.8925781, 1.7207031, -1.0136719, 1.4765625, 2.1464844, 0.29711914, 3.1855469, -1.1806641, -0.030029297, -1.2138672, 0.36938477, 0.12023926, 1.0341797, -2.1152344, -0.6982422, 2.3183594, 0.3322754, -1.1796875, -0.14318848, -0.32299805, -0.34887695, -0.70166016, 0.33569336, -1.8652344, -1.4736328, 3.1953125, 1.2226562, -0.5097656, 0.65966797, 0.25170898, -0.3395996, -2.2929688, -0.18432617, -1.5488281, -1.0390625, -0.10784912, 2.5820312, 2.8847656, 0.9580078, -0.50927734, -1.6162109, -3.8730469, -3.5175781, -1.7910156, 3.3867188, -1.2207031, -0.46264648, 0.7661133, -0.51220703, 0.5834961, -2.6855469, -1.3867188, 1.7539062, -0.05706787, 0.40234375, 0.5283203, 0.31225586, 0.5385742, -0.074279785, 1.8994141, 1.2265625, -0.31396484, 1.2773438, 1.9960938, 0.69970703, 1.1572266, -2.5605469, -1.203125, 0.5180664, 0.2298584, -1.2363281, 0.93115234, 0.030456543, 0.3876953, -0.6123047, -1.6279297, -0.8486328]}, "B007WH7S4A": {"id": "B007WH7S4A", "original": "Brand: DOZYANT\nName: DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection\nDescription: \nFeatures: Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks\nLong lasting high quality material provides secure, air-tight connection between propane tank\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low\nThis propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter\nNo tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances\n", "embedding": [-2.46875, 1.6113281, 1.6738281, 1.7666016, 0.5800781, 0.24133301, 0.4140625, -0.26049805, 1.9101562, 1.7744141, 2.1269531, -0.9111328, 1.5302734, -1.1640625, 2.2441406, 0.53125, 0.55322266, 1.3251953, 1.7021484, 1.2216797, 2.6875, 0.8305664, 0.58935547, -1.28125, 1.7216797, -0.17199707, 2.1015625, -1.7529297, -1.2929688, -1.6240234, 1.7851562, -0.52246094, 0.42895508, 0.9580078, -1.1064453, -0.77490234, 0.65283203, -0.33496094, -2.9902344, -1.4814453, -2.3457031, 1.03125, 0.3305664, 0.5673828, -2.2226562, -3.2109375, -1.7216797, 0.80322266, 0.4658203, 0.05480957, 1.3173828, 3.265625, -0.8671875, 1.0566406, -0.97265625, 1.2949219, 1.5556641, -2.734375, 1.1074219, 1.9492188, 0.734375, 0.08239746, -2.5996094, -0.56640625, -0.5317383, -0.76708984, 0.45336914, 0.50634766, 2.5273438, 1.2578125, -0.35253906, 0.5488281, 1.3554688, -1.484375, -1.8447266, 1.2929688, -1.5556641, 1.0351562, 1.8144531, 1.0097656, -0.41308594, -0.47875977, 0.30541992, -2.1855469, 0.14978027, -1.0175781, 0.55029297, 1.1416016, -0.008766174, -0.1640625, -2.1484375, 2.2597656, -2.3632812, -2.5644531, 1.3779297, 0.0058403015, 0.2220459, 0.7714844, 1.1162109, 1.1845703, -1.2910156, -0.083862305, 0.70751953, 1.8798828, -2.234375, -0.85009766, 0.23620605, 1.1162109, -3.1113281, -0.6035156, 0.59521484, 0.49780273, 1.2041016, -1.4082031, -0.9082031, -0.47314453, 1.4326172, -1.1025391, 2.4648438, 1.9697266, 2.9511719, -1.1464844, 0.703125, 0.6196289, 0.94677734, 0.65234375, 1.0976562, -0.049102783, 3.1640625, -0.070739746, 0.79296875, -0.033569336, 1.3164062, -1.0283203, 0.3569336, -1.6396484, -0.1340332, -3.703125, -2.2148438, -0.43945312, -3.609375, -0.21765137, -0.4345703, 0.69677734, -2.4277344, 0.124816895, -2.2324219, 1.7978516, 1.4628906, -1.8164062, 2.7871094, -1.6328125, -0.091308594, -0.059417725, 1.4990234, 2.3632812, -2.8925781, -2.5332031, 3.6171875, 1.2226562, 0.22521973, -1.4111328, -1.9033203, 1.0087891, 1.9023438, -2.5039062, -0.62402344, 0.41308594, 0.2705078, 1.2509766, 0.6303711, -2.7050781, 1.4648438, -0.41308594, 1.3740234, -2.8164062, 1.4365234, 2.9726562, 2.2871094, -0.32226562, -4.1210938, -1.7685547, -0.6010742, -1.9824219, 1.5048828, 0.20385742, -1.3769531, 0.016647339, 0.9951172, -3.1425781, -1.9238281, 2.7773438, -0.50927734, 0.95166016, -0.07684326, -2.3476562, -4.4375, -0.2709961, -0.4091797, 1.1044922, 1.4541016, -2.1425781, 0.8046875, -0.39868164, -0.28735352, -0.49047852, 2, -1.6044922, 1.1455078, 0.53222656, 0.43017578, -1.0058594, 3.3398438, -1.0517578, 0.2006836, -1.8935547, -0.8989258, 3.53125, 1.4414062, 1.6738281, -0.28735352, -0.19799805, 1.9785156, 1.2832031, 0.50683594, 1.359375, 0.42797852, 1.0947266, -1.6777344, -0.94433594, 2.890625, 0.4880371, -0.13061523, -2.0566406, -0.6826172, 2.9296875, 0.9580078, -0.9716797, 0.6352539, 0.68359375, -1.4023438, -0.80859375, -0.9970703, -0.40795898, -0.9511719, -2.4296875, -1.6513672, 0.9243164, 2.2929688, -1.9873047, 0.26098633, -0.57470703, -1.7021484, -1.9882812, -2.2480469, -0.31762695, 1.0996094, 1.1875, -0.1616211, -2.5566406, 1.6621094, 0.37963867, -1.0126953, 0.061279297, -0.089782715, 1.8085938, 1.3574219, 1.1269531, -0.78222656, 1.0263672, 1.1689453, 2.6347656, 0.6328125, -0.72314453, 1.71875, 2.7285156, -1.4462891, 2.6894531, -0.48828125, -0.29370117, 1.8398438, 0.1361084, 0.56689453, -2.2695312, 0.6582031, 1.3144531, -0.3774414, 0.9633789, -2.1953125, -0.19348145, 3.0175781, -2.0039062, -3.8886719, 3.5195312, 2.6699219, 1.5283203, 0.95947266, -1.7109375, -0.30297852, 0.04171753, -0.5175781, 2.0371094, -2.5761719, 0.4091797, 2.8300781, -0.20349121, -1.4960938, 0.13769531, 0.030792236, 0.52685547, -0.9194336, 0.92529297, -3.1289062, -0.11993408, -0.29589844, -2.4550781, 1.6308594, -3.5058594, -1.5927734, 3.0859375, -0.031036377, 2.578125, 1.1708984, -1.4023438, 1.4355469, 1.2236328, 0.36206055, -0.8520508, -0.050628662, 2.0292969, 2.3964844, -0.29052734, 0.8798828, -1.0068359, -1.3398438, 0.36743164, -2.7890625, -4.5039062, -0.3449707, -2.1835938, -2.0332031, -0.5678711, 1.2587891, 3.3222656, 0.28979492, 0.37475586, -1.7509766, 0.6928711, 0.16271973, -3.7695312, 0.71240234, 3.4433594, 0.26904297, -3.2382812, 1.1328125, 0.25195312, -0.5083008, 2.7460938, -3.0195312, 0.52490234, -1.7412109, 0.5214844, 1.7832031, 2.1347656, -1.1787109, -1.4716797, 0.22937012, -2.6582031, 0.5444336, -1.6914062, 1.5117188, -1.5371094, 0.8671875, -1.3378906, -0.7817383, 0.43286133, -0.41088867, 2.3789062, -1.0507812, 1.9833984, -1.03125, 0.57177734, 1.09375, -0.66308594, -3.8730469, -1.0810547, -0.11645508, -0.71972656, -1.2949219, -4.5429688, 0.94140625, -1.1660156, 1.0078125, -0.21411133, -0.27685547, -1.8818359, 0.33618164, 1.2304688, 0.117370605, -0.55126953, 1.3740234, -0.6713867, -1.3652344, -1.0263672, 1.4111328, -0.6064453, -3.2480469, 0.18847656, 1.0185547, 0.2084961, 0.20227051, 0.24365234, 1.1767578, 1.3818359, -0.7709961, -2.7734375, 0.6923828, 1.6982422, -0.6201172, 1.8867188, -0.80908203, -0.7939453, -1.6699219, -0.6845703, 4.71875, 1.9287109, 2.7636719, -1.7285156, 1.0058594, -0.60791016, 0.7944336, -0.38964844, -0.45629883, 0.36401367, 1.6767578, -3.4042969, -2.4433594, -1.3515625, 0.93359375, -1.7490234, -0.49291992, 1.109375, 0.8544922, 3.0820312, 0.6010742, -1.6328125, -0.7529297, -0.2878418, 1.9746094, 0.05758667, -0.63623047, 0.75683594, -1.8505859, -0.90185547, -2.8378906, -0.6352539, 1.5673828, 0.7885742, 1.0683594, 0.42089844, 1.3759766, -0.37158203, -1.2060547, -0.3557129, 0.2397461, -0.1619873, 1.5419922, -0.27197266, 0.4152832, -0.42504883, 0.54248047, 1.6435547, -1.7919922, -0.32910156, 0.86572266, 3.2226562, -0.035583496, -0.31445312, -1.2666016, 0.5986328, 0.021697998, 0.051513672, 1.1005859, 1.5849609, 1.1210938, -1.6240234, -1.9824219, -2.4003906, 0.21484375, -1.2861328, 0.83691406, 0.08404541, -0.4248047, -2.9667969, -1.4306641, 0.08660889, -0.45581055, -1.4082031, 0.29541016, 0.7993164, -0.35913086, -0.2199707, 0.609375, 1.7978516, 2.53125, -2.2265625, -0.63916016, -2.4804688, -0.9199219, -0.88623047, 0.43115234, 2.0371094, 1.8164062, -2.5410156, -1.0400391, -2.5585938, 0.7397461, -0.8959961, 0.8935547, -2.2851562, -0.6298828, 1.3974609, 1.5712891, -0.31274414, 2.0039062, 0.40429688, -0.38208008, 0.4880371, -2.4375, 0.08709717, 0.118896484, -4.96875, 2.3613281, -2.6601562, -0.30371094, 1.5185547, 0.88134766, -0.46923828, 0.21948242, 1.7617188, -4.0820312, -1.4404297, -1.8007812, 2.3945312, -1.9492188, -0.32226562, 3.59375, 1.7685547, 0.00081300735, -1.9619141, -1.6611328, -0.30664062, -0.107177734, 0.17419434, 1.8173828, 1.71875, -0.59521484, -0.66503906, -2.5292969, 0.6850586, -0.40600586, -0.06048584, -1.3398438, -1.7451172, 2.5371094, 0.31225586, 0.29956055, -1.7617188, 2.8457031, 3.0605469, 0.26538086, -0.27734375, -1.6708984, 2.3046875, 0.064697266, -2.578125, -0.10040283, -0.99072266, 1.0898438, -0.014907837, -0.3322754, -0.21887207, -1.78125, 1.7636719, -0.08581543, 1.3994141, -0.02507019, -0.7246094, -1.8388672, 0.7050781, 1.2890625, -0.67871094, 0.08111572, -1.3701172, -2.0273438, -0.017227173, 0.08654785, -0.8901367, 0.921875, 0.67529297, -1.4707031, -3.8613281, 1.0595703, 3.296875, 1.0644531, 0.11730957, -0.68408203, -0.7036133, 0.88916016, 1, -0.091674805, -0.42651367, -1.0820312, 0.053375244, -0.23852539, 1.7998047, -0.79248047, -1.4619141, 0.62646484, -0.14672852, 0.47973633, -0.53466797, 0.20214844, -0.8720703, -1.0175781, -0.37060547, 0.0418396, 1.9658203, -1.8769531, 0.49365234, 2.2246094, 0.35620117, -2.7773438, 0.6274414, 2.5996094, 3.4394531, -0.82470703, -0.2722168, 2.21875, 0.6352539, 0.55322266, 0.4267578, 0.92529297, -1.8847656, 0.63623047, -0.67089844, 1.8359375, -1.5800781, 1.6025391, 1.109375, 2.3652344, 0.74853516, 0.4074707, 1.7080078, -2.2167969, 2.2402344, 1.4521484, 0.05340576, -1.5332031, 0.53759766, -1.390625, 1.5751953, -2.2792969, -0.9741211, 0.3647461, 2.8613281, -0.22351074, 2.1289062, 1.5673828, 0.14550781, -2.5332031, -3.5195312, -2.7363281, -0.095336914, -0.55859375, 1.7529297, -0.11303711, 0.13867188, 0.1932373, 1.796875, 2.3789062, -0.12646484, 1.7060547, 0.26000977, -0.5019531, -0.5180664, 0.13842773, -0.3737793, -2.1113281, 0.34887695, -0.27246094, 1.9824219, -0.54785156, 2.0566406, 1.5498047, -0.578125, -2.8886719, -0.62939453, 2.078125, -2.0078125, -1.5058594, 1.9277344, 1.7382812, -1.3134766, -0.4477539, 0.6010742, -1.9873047, 0.8774414, 4.2382812, -0.3305664, -0.20019531, 0.90283203, -1.4394531, -3.921875, -0.7944336, 1.2041016, 0.62060547, 0.26660156, -1.9160156, 0.20178223, 0.95947266, -0.62109375, -1.6728516, -2.4902344, 3.1523438, -1.7216797, 0.2590332, -0.008842468, 0.6586914, -0.04824829, -0.40649414, -0.78027344, -0.99609375, -1.8466797, -2.4257812, -2.6835938, -0.5151367, -1.3378906, -1.1083984, 0.76123047, -1.3544922, 1.5546875, 1.5166016, 0.66064453, -2.359375, 2.2871094, -0.20483398, -0.009292603, 2.0390625, -1.4501953, -0.051208496, 1.2109375, 0.05041504, 0.0736084, 3.0019531, 1.8320312, -1.9755859, -1.0429688, 0.34399414, 0.1817627, -0.90478516, -1.9697266, 0.8027344, -0.5966797, 2.8496094, 0.05883789, -0.8408203, -0.61816406, -2.484375, -2.1972656, -0.05545044, -0.8574219, 0.38842773, -0.22094727, 1.1152344, -0.17480469, -0.8076172, -0.09259033, 0.50634766, -1.0048828, -3.40625, 0.99316406, -0.16723633, 2.3652344, 0.7026367, -1.6142578, -2.5488281, -2.2597656, 2.484375, 1.8173828, -0.90478516, 0.46362305, -0.46850586, -0.5214844, 1.9648438, -0.6245117, 3.1015625, -1.0566406, -0.79833984, -0.1295166, -0.115478516, 1.6767578, -2.3007812, -0.23522949, 1.7880859, -1.7441406, -0.6713867, 1.8603516, 1.0273438, -2.0195312, 0.9785156, -1.3818359, -0.9951172, -2.0625, -1.2216797, 0.8286133, -3.1113281, 0.36938477, 1.6572266, -2.4296875, -1.9316406, 3.3046875, -0.5258789, -0.3071289, 0.55810547, 2.7792969, -1.1503906, -1.4619141, 1.0410156, -1.4316406, -2.15625, -0.77685547, -1.3095703, 0.56591797, 1.7792969, -1.8691406, 0.05267334, 2.4003906, 2.03125, -0.07104492, 1.390625, -0.4897461, 2.0625, 0.8544922, 2.7363281, 4.0234375, 0.52441406, 1.2451172, 1.4277344, 1.8261719, 5.078125, -1.8046875, 1.2402344, 0.09820557, 0.5439453, 1.046875, -1.8095703, 0.18322754, -0.06561279, 0.18237305, -0.4260254, 0.80322266, 2.4179688, -2.3632812, -0.5800781, -1.8544922, -0.21142578, -5.1640625, 0.66259766, -1.9667969, 0.4272461, -2.1972656, 2.40625, 0.9526367, -0.43969727, 0.9794922, 0.6503906, 0.4609375, 2.109375, -1.1582031, -1.4023438, -1.6835938, -0.54589844, -1.34375, 1.5771484, 1.1914062, 0.10308838, 0.53466797, 0.65234375, -1.1298828, -0.7182617, 1.4755859, -2.1113281, 0.2775879, -1.2265625, 1.3701172, 1.3730469, -1.4306641, 3.7949219, 0.7963867, 0.43432617, -2.7128906, 0.96191406, -1.2871094, 1.6484375, -1.7333984, -4.4375, 0.6035156, -2.5625, 1.4248047, -2.4765625, 1.1328125, 0.062347412, -1.9970703, 2.0390625, -0.22888184, -0.92089844, 2.2285156, 0.5756836, -2.3554688, 0.640625, 1.7402344, 1.8955078, 0.009483337, -0.41601562, -0.72216797, 0.3552246, -1.0097656, 3.0507812, -1.0771484, -1.1884766, -0.79296875, 1.5839844, -0.77490234, 0.6254883, -2.4433594, -0.12475586, 1.1181641, 0.35351562, 1.296875, -0.8989258, -1.4648438, 1.3505859, -0.20751953, -1.1962891, 0.59375, 1.0058594, 0.0836792, 1.8740234, -1.4648438, -1.5888672, 0.9379883, -0.14440918, 2.0449219, 1.0947266, -1.2304688, 0.18469238, 0.8671875, 2.0859375, -1.7705078, 1.2939453, 0.10974121, -0.24511719, -1.1074219, -1.3701172, -1.0878906, 1.9628906, -0.31274414, 0.8154297, 0.30932617, 0.4819336, 0.49365234, -0.5917969, -2.8535156, 2.7558594, 3.7304688, 0.40161133, 0.9272461, -0.45214844, 0.8730469, 1.5244141, -0.44580078, 0.94140625, 0.42358398, 1.7285156, -0.24206543, 0.4885254, 0.3010254, -2.9121094, -1.6513672, -3.9511719, 0.11828613, 0.72314453, -0.1751709, 1.4736328, 0.75927734, 0.8598633, 0.18908691, 1.2636719, -0.14294434, -1.8486328, 1.6738281, -1.5009766, 1.3173828, 0.49291992, 1.0048828, 0.98876953, 1.7148438, 2.53125, -2.3007812, -0.49560547, 2.1679688, -2.3339844, -1.0283203, -0.27197266, -0.62060547, -0.6269531, 1.7558594, 3.3164062, 2.0605469, 0.14025879, -2.0097656, -0.43774414, -0.61572266]}, "B078VTH8B7": {"id": "B078VTH8B7", "original": "Brand: DOZYANT\nName: DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater\nDescription: \nFeatures: This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need.\nThe splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.\n", "embedding": [-0.8520508, 0.8535156, 0.20214844, 0.97314453, -0.72753906, 1.7617188, 1.6953125, 0.37109375, 0.7416992, 1.4472656, 2.4277344, 0.69140625, 3.1582031, -2.9941406, 0.82666016, 2.8457031, 0.59228516, -1.1230469, 2.546875, 1.5136719, 4.5117188, 2.0585938, 0.82128906, -0.8979492, 1.6777344, -1.546875, 1.8310547, -2.0273438, -1.3896484, -0.2076416, -0.10089111, -1.703125, -0.7788086, -0.3869629, -3.0703125, 1.5585938, 0.7988281, 0.3737793, -0.9057617, -0.7368164, -1.15625, 0.14196777, 2.953125, 0.98583984, -2.2382812, -2.5859375, 0.29541016, 0.010215759, -0.99902344, -0.3400879, 1.125, 3.5039062, -0.3942871, 1.7509766, -1.8642578, 0.88378906, 0.7602539, -3.7148438, 0.625, 1.5673828, 1.4072266, 1.7851562, -3.1835938, 0.3083496, 0.82373047, -0.78466797, 0.18395996, -0.31396484, -0.27001953, 0.055725098, -0.6669922, 1.3017578, 0.41455078, -1.1621094, -1.7802734, 1.0654297, -3.7890625, -0.9033203, 2.5585938, -1.0888672, -2.9667969, 0.98291016, 1.9599609, 0.021484375, -0.05834961, -0.13232422, -0.89160156, 0.9033203, 1.9765625, 0.49682617, -1.4921875, 0.8027344, -4.4921875, -2.2695312, -0.05166626, 0.27905273, 2.6953125, 2.9589844, 4.3203125, 0.84375, -0.5678711, 0.6352539, 1.0527344, 0.9589844, -2.984375, -0.65771484, 0.38427734, 1.7011719, -1.3964844, -1.1953125, -1.3261719, 2.2578125, 3.3691406, -1.4267578, -0.7597656, -1.0576172, 0.091308594, -0.9897461, 1.1835938, 0.5654297, 2.2617188, -0.5024414, 0.29003906, 0.19421387, 1.6875, 1.8808594, -0.7553711, 2.5390625, 2.1074219, 0.42333984, -0.44848633, 0.9057617, 2.4609375, -1.5292969, 3.0976562, -2.8964844, -2.3984375, -2.421875, -0.90234375, 0.3095703, -3.109375, -0.33398438, 0.23217773, -0.89453125, -4.1640625, -0.31713867, -2.9394531, -0.08703613, 0.7163086, -2.0410156, -0.65966797, -2.7890625, 1.0888672, -0.22253418, 3.28125, 1.0830078, -0.20471191, 0.15039062, 0.7841797, -0.23352051, 0.8359375, -1.6318359, -2.1132812, 3.1191406, -0.032165527, -5.3710938, 0.0345459, 0.98779297, -1.4873047, 0.9921875, 0.35839844, -2.1757812, 2.3671875, -2.5332031, 1.3857422, -2.0097656, 1.9414062, 1.3896484, 1.1923828, -0.42578125, -4.3984375, -1.4755859, 0.3852539, 0.0070877075, 1.1171875, 2.3105469, -1.0771484, 1.0058594, 2.3085938, -0.48608398, -1.9707031, 1.4326172, 0.018371582, 2.4121094, 0.54589844, -1.8339844, -5.4101562, -1.3085938, 0.31958008, 1.7626953, -2.1542969, -1.1777344, -0.117248535, -0.53222656, -1.0283203, 0.31469727, -0.42382812, -0.6542969, 0.71240234, 0.82128906, -0.28881836, -0.61865234, 2.7363281, -1.7558594, -0.9604492, -1.0634766, 0.625, 1.8222656, 1.9384766, 1.9082031, -2.7148438, 0.57128906, 2.6464844, 2.3925781, 1.9658203, -0.43725586, -0.26635742, 2.8691406, -2.265625, 0.111083984, 1.8076172, 0.94140625, -0.88720703, 0.18554688, -1.9257812, 3.5703125, 0.86279297, -0.91259766, 0.033813477, 3.0859375, 1.5146484, -0.1081543, -0.28881836, -2.5664062, -1.0625, -2.1230469, 0.16723633, 1.6689453, -1.0488281, -0.79052734, 0.53125, -0.23303223, -0.023101807, -3.1074219, -2.1210938, -0.014526367, 0.18066406, 0.59033203, 0.58935547, -1.2978516, 3.1132812, -2.8496094, 1.6162109, 0.24084473, 0.026000977, -0.023956299, 2.3867188, -2.21875, -1.2626953, -0.0011091232, 0.11291504, 2.2636719, 1.2236328, -1.1240234, 1.0615234, 0.9355469, -1.7148438, 2.4394531, 0.5517578, 1.6621094, 1.8896484, -1.6982422, 2.4550781, -1.3554688, 0.9321289, 1.828125, 2.5175781, -0.37841797, -0.53466797, -0.3762207, 2.7851562, 1.1513672, -1.6748047, 2.2324219, 3.8046875, 0.87939453, 0.68603516, 1.2255859, 0.16369629, 0.5185547, -1.5029297, 0.3010254, -2.5449219, 2.5917969, 2.2675781, 0.27294922, -0.6425781, -2.0097656, 1.2675781, 2.3925781, -0.9536133, 0.30151367, -0.7416992, -1.1367188, -2.6152344, -2.0253906, 2.1777344, -0.86083984, -1.3867188, 1.6210938, -0.78271484, 0.93652344, 0.7319336, -0.21655273, -0.5395508, -0.31201172, -1.4814453, 0.5239258, 0.49291992, 1.3222656, 1.8945312, -1.5917969, 0.5415039, -0.30981445, -1.8564453, 2.0683594, -2.2617188, -3.4589844, -0.14697266, -1.1171875, -0.98779297, -2.7128906, -1.1582031, 1.4580078, 0.17590332, -0.67822266, 0.31713867, 1.5214844, 0.59521484, -1.9628906, 0.30737305, 2.1367188, -1.6210938, -2.9472656, 0.21130371, -0.5756836, -0.3017578, 2.4667969, -1.6738281, 0.7192383, -0.69091797, 2.1855469, -0.88134766, -0.38452148, -0.6586914, -1.3916016, 0.6147461, -1.8730469, -1.7246094, -0.47802734, 0.6435547, -0.43530273, 1.6552734, -1.0957031, -1.4345703, 0.017807007, -0.765625, 1.2177734, 0.37329102, 0.12658691, -0.47216797, -0.48828125, -0.14013672, -1.7109375, -3.1542969, -1.4736328, 1.6425781, 0.4741211, -0.10882568, -4.6484375, -0.2956543, -0.7919922, 0.31225586, -1.3710938, -0.45239258, 0.5107422, -2.1328125, 2.59375, -0.54003906, 0.47070312, 0.81347656, -0.14746094, -0.9189453, 0.27929688, 2.9511719, -0.33251953, -1.6162109, -0.33544922, -0.8613281, -0.07141113, -2.5410156, 1.3525391, -0.006603241, 0.45947266, 0.5136719, 0.026046753, 0.82373047, 1.3847656, -0.023132324, 2.9921875, -0.1541748, 0.4230957, -4.5195312, -0.7734375, 2.4355469, 2.4960938, 2.4628906, 0.7138672, 0.68359375, 0.8227539, 0.80126953, 0.05697632, -0.4921875, -2.1523438, 3.4707031, -4.0078125, -0.3190918, -1.0644531, -0.3708496, -3.8984375, 0.72998047, 0.6616211, 0.6669922, 3.5292969, -0.859375, 1.6191406, -1.1787109, -0.63720703, 1.2626953, 0.69970703, 0.9404297, -0.19091797, -0.17651367, -0.52001953, -1.1279297, 0.1005249, 1.2011719, 1.8710938, 0.105163574, 0.9628906, 1.0390625, -0.83203125, -0.08215332, -1.5449219, 1.2558594, 0.23950195, 1.8544922, -0.5932617, -0.18798828, -1.828125, -0.6635742, 1.4052734, 1.4697266, -1.6591797, 0.3605957, 2.9082031, -0.7036133, 0.66503906, -0.90185547, 0.62890625, -0.44067383, 1.1914062, 1.4082031, 0.82128906, 0.33618164, -1.9150391, -1.0771484, -1.6962891, 0.8847656, -0.46484375, 1.0146484, -0.5595703, -1.1552734, -1.7402344, -1.0947266, -1.6318359, 0.91015625, 0.24865723, 1.7587891, 2.8535156, 0.101379395, -1.1152344, 0.024139404, 0.7441406, 1.0439453, 0.38793945, -1.2880859, 0.12084961, 0.6713867, -0.6689453, -0.16467285, 0.8027344, 0.68603516, -2.8398438, -0.85839844, -1.1328125, -0.90722656, -1.0361328, -0.58691406, 0.24169922, -0.8173828, -0.6557617, 0.9526367, -0.5004883, 2.5195312, 0.7939453, -1.9365234, 1.34375, -2.8867188, -0.56689453, -0.49536133, -6.0859375, 1.8066406, -0.09851074, 1.3730469, 2.5429688, 0.2376709, 0.57421875, 2.3867188, 1.0957031, -5.0351562, -1.3183594, -1.53125, 1.1835938, -3.3105469, -1.1962891, 1.8378906, 3.5878906, 0.87597656, -0.19836426, -0.23144531, -2.2441406, -0.52246094, -0.46899414, -0.56884766, 1.7958984, 1.1884766, -0.22814941, -0.31420898, -1.5302734, 1.8515625, -0.24560547, -2.3320312, -2.0332031, 1.5273438, 1.9179688, 0.18310547, -1.5869141, 1.6054688, 2.375, -0.80810547, -2.1640625, -0.22216797, 3.7304688, -0.5361328, -2.8574219, -2.1152344, -0.8730469, 0.02432251, 0.049957275, -0.27416992, 0.64697266, -1.1240234, 0.7807617, -0.22351074, 0.64746094, 1.6425781, -0.9394531, -2.6933594, -0.09710693, 0.54052734, -2.9160156, -0.30078125, -0.84814453, 0.8598633, -1.6318359, -0.012542725, -1.9550781, 1.8779297, 0.67626953, -2.4570312, -3.3652344, 0.93359375, -1.9345703, 1.5625, 1.046875, -1.3828125, -1.1113281, 1.046875, 0.8515625, -0.6875, -1.3164062, -0.91308594, -2.5566406, -0.70751953, 2.2871094, 1.65625, -1.7675781, 0.07366943, 0.39038086, -1.3017578, 1.421875, 2.1679688, -2.2636719, -1.4921875, -0.17895508, -0.97753906, 3.5039062, -2.6230469, 0.8125, -0.41601562, -0.3322754, -3.8671875, 0.94189453, 1.0341797, 0.5595703, -1.3886719, 1.5615234, 2.4609375, 0.4519043, 0.5878906, 0.6855469, 0.42211914, -0.4873047, 0.6953125, -0.015548706, 1.8525391, 1.6425781, 2.8984375, 1.8603516, 2.6308594, 0.0021953583, -0.72216797, 0.33374023, -1.5224609, 1.6396484, 0.010810852, 0.6748047, -2.1308594, -0.0947876, -0.9589844, 0.5571289, -0.27856445, -2.0976562, 1.9160156, 2.78125, 0.018096924, -0.25219727, -0.94873047, -1.2626953, -1.3662109, -2.7636719, -2.1464844, 0.58251953, -2.1015625, 0.8388672, 0.4194336, 0.048339844, 0.8413086, 1.3544922, 2.3222656, -0.6123047, -0.6015625, 0.11651611, -1.0595703, -2.8339844, -0.62402344, -2.3886719, -1.6962891, 1.2402344, 1.5322266, 3.2128906, 0.0635376, 0.5415039, -1.453125, 0.67089844, -1.3857422, 0.050689697, 2.3671875, -0.5419922, -0.54589844, 3.5546875, -0.9838867, -1.3896484, -0.56347656, 0.15588379, -0.8383789, 1.546875, 1.1962891, -0.5888672, -1.3320312, 1.1103516, -2.4296875, -6.6875, 0.3466797, 2.2304688, 2.1660156, 0.8461914, -1.359375, -1.5742188, -0.019485474, -0.69433594, -0.6040039, -2.3808594, 1.7558594, -2.4394531, -1.1074219, -1.2597656, -0.31201172, 1.1513672, -0.78515625, 2.0820312, -2.671875, 0.13671875, -4.1523438, -0.81347656, 0.69677734, 0.9223633, -0.82373047, -0.4260254, -3.0625, -0.011993408, -0.48168945, 1.3320312, -3.5546875, 0.52001953, -2.3945312, 2.1835938, -0.1496582, -1.4521484, 0.6044922, -0.14990234, 0.50097656, 0.5361328, 2.6875, 1.3554688, -0.73339844, -0.7182617, -2.171875, 0.18261719, -0.5078125, -0.40893555, 0.7285156, 0.6220703, 2.8671875, 2.4785156, -1.9013672, -2.7578125, -2.3417969, -0.74365234, 0.16625977, -1.8388672, 2.875, -0.71533203, 2.0039062, 1.1337891, 0.03869629, -0.24169922, -0.95410156, -1.6767578, -0.35766602, 1.4023438, -2.0566406, 3.609375, -1.1435547, 0.011146545, -1.3447266, -1.1992188, 0.88623047, 1.8671875, -0.7480469, 1.1806641, -0.35180664, 0.90722656, 0.0014677048, 0.6743164, 3.0800781, 1.1044922, 2.2011719, -1.8759766, -0.5854492, 1.3476562, -2.3027344, -0.96728516, 1.7041016, -1.3896484, -1.53125, -0.06726074, -0.3918457, -4.1367188, 0.84228516, 1.1845703, 0.013450623, -1.3652344, 0.87597656, 0.2434082, -3.3867188, 0.4543457, 0.20446777, -3.5859375, -0.74316406, 3.9199219, 0.12573242, 0.4345703, -1.0214844, 3.5390625, -0.94189453, 1.1171875, -0.5126953, -1.3691406, -1.3486328, -0.81103516, 0.08099365, -0.19836426, -0.025100708, -1.4130859, 0.5493164, 1.3613281, 0.16638184, 0.68408203, -0.5029297, 1.8710938, 2.0371094, 0.078430176, 3.8300781, 2.0917969, 1.5761719, 2.1953125, 1.3935547, 2.4960938, 2.4140625, 0.1751709, -0.46166992, -0.15270996, -1.515625, 1.2001953, -1.9570312, 1.9023438, -1.1435547, 1.1132812, 1.3876953, -0.17895508, 1.5351562, -5.171875, 0.16540527, -1.9199219, -0.09906006, -2.9140625, 0.68603516, -0.8598633, 0.3154297, -0.3408203, 1.8300781, -1.203125, 2.5566406, 0.17297363, 0.41601562, -0.28930664, 2.4023438, -0.87841797, -0.55322266, -0.63623047, -0.5600586, 0.39868164, 1.0654297, -1.1689453, 0.65771484, 0.9140625, 1.8935547, -0.28735352, -0.8276367, -0.052886963, 0.75634766, -0.7451172, -1.7939453, 2.7695312, 1.4755859, 0.80566406, 3.6386719, 0.625, 0.27441406, -2.8867188, 1.3710938, -1.3242188, -0.12658691, 0.3544922, -4.3164062, 1.6142578, -0.8930664, -1.6503906, -2.3476562, 0.54248047, 2.6132812, -0.87158203, 1.6269531, 1.2988281, -0.15856934, -0.28100586, 0.83203125, -1.8681641, 2.3398438, -0.84033203, -0.14990234, 2.0644531, 2.0175781, 0.84277344, -0.6074219, -1.3974609, 3.8515625, 0.19116211, -0.49414062, 0.171875, 0.58984375, 1.3222656, 0.9301758, -0.83496094, -1.2148438, 1.8125, 1.1162109, -0.47436523, 0.03164673, -1.2480469, 0.3190918, -0.8847656, -1.2294922, -0.24169922, -2.3925781, 0.7026367, 1.5693359, -1.2802734, -0.02128601, 1.5761719, -2.0234375, 2.1308594, 2.7265625, -0.44921875, 0.07891846, -0.96435547, 1.8779297, -3.1523438, 1.3828125, 1.2519531, -1.6855469, -0.7348633, -2.5996094, -0.44580078, 0.18969727, -1.5654297, -0.09863281, 0.81103516, 0.12573242, -0.63916016, -1.6210938, -1.3730469, 1.4238281, 4.015625, 1.3662109, 0.045196533, -0.21618652, -0.36157227, 2.6210938, -0.40405273, -2.75, 0.9189453, 1.9873047, 1.3564453, 2.1308594, -1.1914062, -2.1679688, -0.17700195, -2.1269531, 2.4921875, -0.04296875, -2.5117188, 0.9428711, 2.3535156, 1.1865234, 1.4550781, -0.14892578, 0.23876953, 0.07562256, 0.6723633, -2.0175781, -0.4946289, 1.2548828, 0.6904297, 0.13806152, 4.5429688, 1.5117188, -1.0761719, -0.08477783, 3.6777344, -1.359375, -1.7880859, 0.49609375, -1.6777344, 0.107177734, 2.109375, 0.88134766, 1.0927734, 0.46240234, -1.6611328, -2.7578125, 1.6171875]}, "B0098HR0PY": {"id": "B0098HR0PY", "original": "Brand: Weber\nName: Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black\nDescription: \nFeatures: Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required\nGrill dimensions: Lid Open \u2013 63\" H x 50\" W x 32\" D | Lid Closed \u2013 45.5\" H x 50\" W x 24\" D | Primary cooking area \u2013 360 square inches | Warming rack area \u2013 90 square inches | Total cooking area \u2013 450 square inches/20.4\u201d W x 17.5\u201d D | Weight \u2013 113.8\nHeavy-duty caster wheels for easily moving your grill on grass or a patio\nBuilt to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system\n", "embedding": [-2.0527344, 0.6064453, 1.7460938, -1.4257812, -1.7792969, 1.3652344, -0.9692383, -0.61572266, 1.4658203, 1.8535156, 2.4042969, 0.32739258, 0.9902344, -4.515625, 0.87939453, 0.6777344, 1.7558594, 2.0820312, 1.4091797, 0.08337402, 1.2392578, 0.6113281, 1.1445312, -0.5839844, 1.2392578, 1.4082031, 3.3984375, -4.78125, -0.5410156, -3.1699219, 1.2744141, 0.8417969, -0.015434265, 2.2304688, -3.3046875, -1.8564453, -3.515625, 1.7050781, -3.3183594, 0.6147461, -0.5053711, -1.1621094, 1.2861328, -0.20654297, -1.3203125, 0.84228516, 0.66503906, 0.9746094, -0.23034668, -0.8730469, 2.8691406, 0.8979492, -0.05227661, 1.3759766, -0.89404297, 1.78125, 0.9794922, -1.9296875, 1.1806641, 0.28735352, 2.7519531, -0.37573242, -2.4179688, -1.5957031, -1.3408203, -0.1274414, 0.2993164, 0.2590332, -0.53125, -0.37719727, 3.9433594, -1.2255859, -1.3759766, 1.7041016, 0.93359375, -2.4023438, -1.8828125, 2.109375, 1.6669922, -1.8925781, -0.46411133, 2.6972656, 1.6435547, -1.5742188, -0.5698242, 0.8955078, 1.5595703, -1.5771484, 1.4716797, 1.0078125, -0.020812988, 1.0957031, -2.3359375, -2.9355469, 1.4228516, -0.46435547, 3.15625, 1.4804688, -0.8696289, 0.49658203, -1.7910156, 1.5400391, -1.7949219, -1.5908203, -2.8046875, -0.69970703, 1.3105469, 0.20678711, -1.7451172, -0.7446289, -1.46875, -0.30126953, 0.089660645, 0.8378906, 0.34033203, 1.5478516, 0.3857422, 2.9707031, 0.13049316, 0.73095703, 2.9101562, -0.5229492, -0.59521484, 0.14941406, -1.5791016, -1.2216797, 0.30517578, 2.4609375, 3.1660156, -1.0546875, -1.4316406, -0.19689941, 3.1464844, -0.37280273, -0.29882812, -1.0224609, -0.7207031, -0.95751953, -3.2890625, -0.36816406, -1.9306641, -0.97216797, 1.0390625, -1.7587891, -3.3710938, 0.3815918, 0.44702148, -0.60839844, 0.8955078, -0.7480469, -0.9921875, -0.93066406, -1.4589844, -1.8330078, 1.6621094, 0.63623047, -0.49975586, -0.050750732, 2.8632812, 2.9355469, 2.1796875, -1.8349609, -1.6982422, -0.5419922, 0.97753906, 0.26586914, 2.0136719, 0.014770508, -0.8964844, 1.4941406, 1.0703125, 0.53271484, 0.5180664, 1.1757812, 1.3408203, -2.6035156, -0.984375, 1.5449219, 0.22277832, -0.92578125, -2.2597656, -1.7304688, -0.29736328, 0.6118164, 0.3696289, -0.12384033, -0.8256836, 0.30078125, 1.3232422, -1.4990234, 0.8046875, -0.16687012, 1.0429688, -0.15441895, 2.0625, -1.9433594, -1.4707031, -1.9443359, 1.1074219, 0.67822266, -0.96728516, -1.4082031, 1.0205078, 0.5283203, -1.1220703, -1.7070312, -0.921875, -2.0625, -0.038238525, 1.6347656, 1.2685547, -1.3623047, 1.421875, -1.0283203, 1.1484375, -0.26000977, 3.046875, 0.9980469, 1.2666016, 1.5634766, -1.4921875, -0.48388672, 1.4267578, 3.0957031, 1.0126953, 0.7714844, -0.23669434, 1.1835938, -3.3359375, -0.94921875, 3.25, -0.6074219, 0.13989258, 1.4199219, 0.78466797, 3.0625, -0.48754883, 0.44995117, -0.50146484, 0.40429688, 0.91748047, 0.63964844, -2.6113281, -1.0029297, -0.1159668, -0.7895508, -1.8408203, 2.5390625, 1.1103516, -0.2590332, 1.3720703, 0.82128906, 2.4667969, 2.8789062, 0.08758545, 1.1787109, -1.390625, 2.3808594, 0.2529297, -1.2050781, -0.21533203, 0.51123047, -0.0053520203, 0.37158203, 1.1904297, -1.2099609, 1.2099609, 1.8427734, -1.3964844, -1.4589844, 0.53027344, -0.59765625, 0.107421875, -1.0546875, 2.703125, 0.3630371, -0.9169922, 2.0019531, 0.6489258, 0.5756836, 0.85253906, -1.6611328, 1.9296875, -3.9257812, 0.09234619, 0.30322266, 1.7373047, -2.28125, -1.7080078, -0.13330078, 4.2890625, -1.0410156, -2.5234375, 3.4726562, -1.7353516, 0.6123047, 2.78125, 1.0654297, -0.024932861, 1.5498047, 2.6601562, -0.6738281, 1.0244141, 1.8007812, -0.13232422, -1.1845703, 1.5507812, -3.1210938, 0.032104492, 1.0800781, -1.3027344, -0.72509766, -0.6796875, 0.93066406, -2.1171875, -2.2421875, 2.3769531, -2.8632812, -0.6616211, -1, 1.5029297, 0.14501953, -1.6728516, 0.014480591, -0.25097656, -0.47924805, -0.75390625, 1.6152344, 0.39575195, -1.7949219, -0.60009766, 0.25756836, 0.06933594, -2.4316406, -2.4609375, -1.7744141, -2.4296875, -3.0117188, 3.1816406, -2.5839844, -0.4169922, 0.42797852, -2.7792969, 0.07373047, -0.3388672, -2.8886719, -0.2548828, -0.22009277, -0.17138672, -1.0400391, 0.76904297, 0.89160156, -0.8334961, -2.734375, 0.67822266, 0.24829102, 1.4589844, -0.18225098, -1.6572266, 0.1295166, 0.9375, 1.0976562, -0.7470703, 1.3642578, 2.1269531, -1.6894531, 0.40283203, -4.3476562, -1.3349609, -2.5195312, 0.8544922, -1.2285156, 1.1728516, -3.9140625, -2.4511719, -1.4716797, -0.40844727, 4.328125, -0.3857422, 2.4199219, -0.32861328, -0.17077637, 1.0029297, -2.03125, -2.3144531, 0.6982422, 1.6337891, -1.6572266, -1.6865234, -2.9628906, -1.171875, -3.3691406, -1.0517578, 0.5180664, -0.7290039, -0.36132812, -0.51220703, -2.1875, -2.1914062, -1.3623047, -0.06439209, -0.7607422, -0.9091797, -2.59375, -1.1123047, -2.0175781, -0.64501953, -1.4990234, 1.6123047, -1.09375, 0.96533203, 0.89208984, -0.22631836, 1.9472656, -2.2207031, -3.9980469, 2.8828125, 1.2099609, -3.0429688, 1.8388672, -2.6054688, -1.4355469, -2.6582031, -0.27539062, 2.3359375, 1.8320312, 1.3027344, 1.2138672, 2.0078125, -0.89746094, -1.2636719, 0.5019531, -1.0664062, 1.8896484, 3.9785156, -3.3789062, -0.19555664, 0.7055664, 0.9970703, -1.9658203, -1.3193359, 2.4003906, 2.0957031, 3.1601562, 1.8427734, 1.6015625, -1.5058594, -1.8564453, 2.15625, 1.5742188, -0.87939453, 0.54541016, 0.5644531, 1.7548828, -0.81396484, 2.4550781, 1.6904297, 0.4074707, 2.25, 1.8554688, -0.04559326, -0.40356445, -0.046325684, -0.8178711, 1.3857422, -1.2138672, 1.6025391, -0.6660156, 0.29492188, -0.86035156, -0.2758789, -0.7192383, 0.18103027, -1.6972656, 3.140625, 0.61572266, -0.86083984, 0.3022461, 1.9267578, 1.8574219, -0.22436523, 0.25048828, -1.1982422, -1.0859375, 1.4296875, -2.6035156, 0.74121094, -3, 1.0332031, -0.34155273, -1.7255859, 1.4873047, 3.5859375, -2.7714844, -1.9130859, 1.5751953, -0.6669922, 0.0056114197, 2.7402344, 1.9472656, -1.5791016, 1.7539062, -2.59375, 1.5048828, 0.32885742, 0.16369629, -2.8183594, -0.14990234, 1.9277344, -0.75, 0.76708984, 2.0527344, 0.27856445, -2.8085938, 0.05218506, -2.3105469, -1.4853516, 1.5830078, -2.3769531, -1.3017578, 3.0859375, -0.09136963, -0.062042236, 0.72998047, 3.6035156, -1.9599609, 0.63623047, 1.9873047, -2.3125, 0.5932617, -3.9824219, -3.6875, 0.40966797, -1.8105469, 0.8095703, 1.7724609, -0.1763916, 0.6044922, 3.3984375, 1.0351562, -2.5585938, -1.1835938, -0.90283203, 0.10015869, -1.0224609, -0.33642578, 0.6777344, -1.0888672, -3.15625, -2.9316406, -0.69970703, 0.2487793, 1.6191406, 2.2910156, -3.7246094, -0.13269043, -1.8144531, -1.7421875, -2.5839844, -0.026275635, 1.6279297, -1.3613281, 0.23266602, -3.3867188, 1.5400391, 1.2392578, -1.2099609, 1.6806641, 1.9716797, 0.36132812, -2.0195312, 3.2304688, 0.39916992, 2.0566406, -1.4570312, -2.75, -0.6035156, 0.69384766, -0.5253906, -0.65771484, -0.19665527, 0.8076172, -1.3408203, 2.28125, 1.90625, 1.390625, 0.7338867, 0.105285645, -3.0839844, 1.1455078, -1.9755859, -1.1376953, -1.875, -0.56396484, 0.3798828, -1.6142578, 0.15991211, -3.5351562, 1.9599609, -1.3242188, 0.8417969, -3.8789062, 3.3222656, 3.0683594, 3.7070312, 2.5019531, -1.3535156, 0.03237915, 0.0803833, -0.37719727, -1.640625, 0.9511719, -0.1932373, -0.5385742, 2.9550781, 1.1435547, -1.9814453, -0.84716797, 0.5439453, -2.0390625, -0.80029297, -3.0898438, -0.5419922, -1.7324219, -0.048431396, 0.9506836, -0.6010742, 3.0097656, -1.1474609, -0.9213867, -0.9975586, 0.57958984, -1.5419922, 0.8149414, 1.4599609, -0.21911621, -0.6875, 1.1767578, 0.7451172, -0.56933594, 1.2636719, -2.1914062, 1.5136719, -1.0517578, 0.3100586, 2.1054688, 0.33666992, -0.5371094, -0.6010742, 1.1806641, 3.0214844, 1.5751953, 2.6777344, 0.17150879, -2.9433594, 2.2714844, 1.9042969, -3.1640625, 0.82421875, 1.2294922, 1.4482422, 2.4667969, 0.4777832, -3.8125, 0.70166016, 0.43017578, 0.024932861, 0.23364258, -1.6210938, -0.0814209, 2.453125, -1.8623047, -1.1025391, -0.7939453, -0.76708984, 0.50146484, 3.1757812, 0.75, -1.3105469, 1.3300781, 2.4414062, -1.3007812, -2.234375, 1.2236328, -1.1269531, 0.5756836, -3.4648438, 0.30297852, -2.4746094, 0.047576904, 1.828125, 1.2871094, 1.0703125, 0.35766602, 2.1777344, -2.7773438, -1.1210938, -2.5957031, 1.4550781, -1.6464844, -0.2076416, 0.5600586, -2.0195312, 0.3305664, -3.0820312, -1.5332031, 0.023651123, 2.8242188, 1.4492188, 0.54541016, -0.87353516, 1.1494141, -1.3369141, -2.5527344, -1.0791016, -0.2758789, 0.29418945, 1.4921875, 2.3613281, -0.38110352, 1.2167969, 0.089416504, 0.8076172, -1.609375, 0.6230469, -0.5756836, -1.0859375, -0.21020508, -0.7241211, -1.4169922, -0.41748047, 0.8564453, 1.0986328, 0.7763672, -2.7929688, -0.36328125, 0.20910645, -1.2900391, 0.5317383, 1.9335938, 1.3466797, 0.18054199, 0.059143066, 1.3935547, -1.203125, 2.2285156, -2.96875, -0.52978516, 1.3388672, -1.6669922, 1.9433594, -0.98779297, -1.2714844, 0.57958984, 0.7192383, 2.3359375, 1.2490234, -1.4521484, -1.2001953, 0.63671875, -0.24707031, -1.3789062, 0.41455078, -0.5878906, 0.87060547, 1.1904297, -0.79541016, -0.90283203, -0.26123047, -1.7744141, 1.1435547, -1.8662109, -1.1103516, -1.3710938, 0.028869629, 0.8569336, 0.10089111, -1.3095703, 2.5859375, -0.9658203, -2.390625, 1.1152344, 0.17993164, 4.125, 3.3242188, -0.8701172, -1.0205078, -1.6484375, 1.3642578, 2.7285156, 0.10852051, -1.1904297, 0.8930664, -0.7939453, 0.43408203, -0.42138672, 3.3515625, 2.2890625, -0.22802734, -0.9370117, 0.4086914, 3.5058594, -1.5419922, 1.9677734, 0.9716797, 2.390625, -0.35839844, 3.2402344, 0.61816406, -3.5429688, 1.3798828, -1.9580078, 1.7314453, -1.7949219, -1.140625, -1.1884766, -0.5185547, -1.9394531, -2.1933594, -1.515625, -2.6503906, 1.7490234, 1.03125, -2.09375, -1.0791016, 0.8442383, -0.25805664, 3.7890625, 0.5449219, 1.7910156, -0.3347168, -1.3857422, -1.2568359, 0.09484863, -0.011581421, -3.7519531, 1.7041016, 1.3486328, -0.74365234, -2.0234375, 1.8564453, 1.9765625, 1.109375, -0.23010254, 2.4492188, 2.5253906, 1.4501953, 1.9785156, 0.3100586, 2.1464844, 1.1943359, -0.95166016, -0.21520996, 2.2519531, -0.12390137, 0.50439453, -1.2773438, 2.0722656, -1.2099609, -1.6884766, -0.5048828, 0.026641846, 1.8017578, -2.125, 0.26831055, 0.85498047, 3.0117188, -0.8652344, -1.0195312, -0.8676758, -1.40625, 1.1357422, 0.0892334, 2.6875, 0.63134766, 0.67089844, -1.8935547, -0.56640625, 2.2128906, -3.9277344, 1.7900391, 0.43066406, -2.1738281, -1.703125, -0.9057617, 2.3359375, 1.9130859, -0.5283203, 0.8100586, 3.9980469, 0.2475586, 1.5361328, -1.9707031, -0.42626953, -1.3642578, 3.109375, 1.1220703, -2.1601562, -0.9067383, -0.6875, -4.2929688, -2.6035156, 3.6054688, 2.2617188, 1.8183594, 1.6054688, -1.6005859, 3.3984375, 1.1416016, 1.8945312, -0.90478516, -1.0732422, -1.6308594, -3.3222656, 0.4272461, 0.5756836, -0.1159668, 1.4433594, 0.22644043, 1.3525391, 1.1279297, 1.8554688, 1.2441406, 0.13293457, 2.0390625, 3.0195312, 0.16381836, -1.2695312, 0.14526367, -1.4736328, -2.2890625, -2.1777344, 3.09375, 1.4150391, 0.3232422, 0.5986328, -1.1513672, 0.11260986, -1.7304688, 0.5864258, 0.25195312, -2.4082031, -1.2304688, 1.2861328, 2.7695312, -2.5625, 0.86035156, 1.8789062, 2.125, -1.0546875, 2.0859375, 2.0761719, -0.43017578, 0.9042969, 0.9033203, 0.8334961, 1.46875, 0.7504883, 0.09918213, -1.1162109, -0.32983398, 0.8828125, 1.5009766, 0.69140625, -0.027130127, 0.008895874, -1.0292969, -0.77490234, -0.16369629, 0.20251465, 1.3984375, -1.5498047, 2.5898438, 0.5175781, -0.89501953, 1.5615234, -0.33251953, 0.67822266, -2.3066406, -2.3222656, -0.5654297, -0.77001953, -0.8076172, 1.9492188, 4.8125, 1.3642578, -0.29663086, -1.5361328, -3.0390625, -0.55029297, -3.1582031, 2.6328125, -1.3828125, -2.1269531, -0.9082031, -0.6689453, 2.1289062, -0.8154297, -0.23034668, -0.38305664, -2.0117188, 1.6757812, -0.09460449, 1.0566406, 0.3684082, 0.26293945, 2.2109375, 3.1269531, 2.1464844, 0.5805664, -0.25146484, 2, -0.45288086, -3.2792969, -1.0732422, 0.14648438, -0.4765625, 0.33813477, 0.6616211, 1.9365234, 0.7709961, -0.78515625, 0.6694336, -2.6328125]}, "B07H636NBG": {"id": "B07H636NBG", "original": "Brand: Weber\nName: Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper\nDescription: \nFeatures: Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included\nGrill dimensions: Lid Open - 62\"H x 59\"W x 31\"D | Lid Closed - 47\"H x 59\"W x 29\"D | Primary cooking area \u2013 513 square inches | Tuck-Away warming rack area \u2013 156 square inches | Wheel base dimensions \u2013 38\u201d from left to right and 29\u201d from front to back\nThis Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks\niGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately)\nThe fuel gauge lets you see how much fuel is left in the tank (LP models only)\n", "embedding": [-1.1699219, -0.15209961, 2.0449219, -0.33520508, -1.0214844, 1.2402344, -0.008766174, -1.3066406, 0.8261719, 0.8095703, 1.4970703, -1.1660156, 1.6015625, -3.09375, 0.2253418, 0.2578125, 2.3613281, 1.578125, -1.4716797, 0.44360352, 1.6767578, -1.1757812, 0.9472656, -1.3828125, 0.99316406, 1.4716797, 4.1992188, -6.5429688, -0.7475586, -0.94970703, 2.4003906, 1.0273438, 1.3251953, 2.0488281, -2.6113281, -1.4638672, -2.1777344, 1.7285156, -2.609375, 1.7207031, -0.69921875, -0.7207031, 1.4013672, -0.8149414, -0.98876953, 1.2158203, 0.6455078, 1.1240234, -1.9316406, -0.003929138, 4.75, 1.2978516, -0.30444336, 0.9321289, -0.22155762, 2.4667969, -0.55371094, -0.79785156, 2.4199219, 0.40820312, 1.65625, -1.2255859, -2.7851562, -1.5146484, -0.94628906, -0.22375488, 0.3935547, 1.0722656, 0.6982422, -0.77490234, 4.4492188, -0.38183594, -2.1523438, 0.049438477, 0.053985596, -2.46875, -1.9775391, -0.5473633, 0.6621094, -1.7275391, -2.1015625, 2.4003906, 1.8085938, -3.4824219, -0.109436035, 1.3046875, 1.4501953, -2.3964844, 1.4658203, 0.93115234, 0.04901123, 0.4934082, -1.7021484, -3.0214844, 1.1933594, -0.7426758, 1.6699219, 1.1845703, -1.0966797, 1.9169922, -2.0039062, 1.0302734, -1.7470703, -1.1845703, -4.3710938, -2.1503906, 1.9951172, -0.06738281, -2.1054688, -0.9091797, -1.7558594, 0.38964844, 1.3144531, 1.7558594, 1.2021484, 1.1240234, -0.18688965, 1.53125, 0.7832031, 1.1914062, 3.4179688, -1.1103516, -0.13671875, -1.5029297, -1.5644531, -1.6591797, 0.37426758, 0.35180664, 4.0039062, -2.4648438, -0.46557617, 1.0566406, 4.5820312, 0.7832031, -1.8134766, -1.8408203, -0.8671875, -0.9277344, -3.0019531, 0.7402344, -0.16320801, -0.12030029, 0.98876953, -0.7480469, -3.5449219, 0.4243164, -0.88916016, 0.9472656, 0.7207031, -1.3974609, 0.49072266, -1.1054688, -1.5322266, -1.0087891, 1.8408203, 0.69970703, -0.76171875, 0.76904297, 2.6464844, 2.6445312, 2.2890625, -0.8203125, -0.8964844, -1.7695312, 1.5429688, 1.8613281, 0.96777344, 1.578125, -0.35205078, 2.109375, -0.38305664, -1.2021484, -0.48388672, 0.45703125, 1.8056641, -2.6386719, -0.7363281, 0.54833984, -0.93896484, 0.7128906, -0.6040039, -1.3271484, 0.7519531, -1.15625, 0.5097656, -0.00843811, 0.14648438, 0.55810547, 2.4316406, -1.2724609, 0.94677734, -0.49536133, 1.8066406, -0.19091797, -0.15893555, -1.6015625, -1.0263672, -0.35791016, 2.1679688, -1.4111328, -0.61279297, -0.5864258, 0.7402344, 1.1640625, -1.2714844, -2.8515625, -2.0664062, -2.4023438, 0.9057617, 1.2617188, 1.9150391, -0.57666016, 0.43652344, -1.8876953, -0.73339844, -0.9995117, 2.7929688, 1.8574219, 0.39624023, 0.67041016, -0.84716797, -1.6572266, 0.3876953, 1.1240234, 0.3046875, 1.1689453, 1.0400391, -0.9379883, -3.2753906, -0.91748047, 1.8232422, -0.33789062, 0.1616211, 0.77001953, 0.63134766, 2.8261719, 1.2070312, -1.5888672, 0.09991455, 0.41625977, -1.0136719, 0.64208984, -2.6679688, -1.6103516, -0.5839844, -0.052825928, -1.5517578, 2.7714844, 0.4465332, 1.0683594, 0.6611328, -0.9301758, 0.9267578, 0.1887207, 0.5541992, 0.80371094, -1.2197266, 2.0292969, 0.7685547, -2.8867188, 1.6386719, 0.65966797, -0.10333252, -0.1361084, 0.74365234, -1.3027344, 1.6591797, 2.4433594, -1.2587891, -1.75, 1.6298828, -0.29736328, 0.5214844, -0.47802734, 2.5898438, 2.234375, -0.27026367, 2.7871094, 0.25439453, 1.7158203, -0.49389648, -0.5107422, 0.8745117, -3.1699219, -0.027572632, 0.7504883, 0.96484375, -2.0429688, -1.6904297, 0.5288086, 3.5292969, -0.7451172, -2.7109375, 2.7714844, -1.7929688, 0.8408203, 1.8085938, -0.37304688, -0.11431885, 1.0820312, 1.8007812, -0.38623047, 1.5869141, 0.72021484, -0.7573242, 0.35766602, 0.8510742, -2.3769531, 0.4260254, 1.2548828, -1.7490234, -1.0478516, -2.03125, 1.1367188, -2.3320312, -0.87890625, 1.9384766, -3.2128906, 1.1601562, -1.4941406, 2.4746094, 0.38232422, -2.6757812, -1.0595703, -0.7861328, 0.75878906, -0.9946289, 0.69921875, 0.5883789, -2.8242188, 0.20581055, -0.53466797, -0.26586914, -2.5644531, -1.1376953, -1.9667969, -1.515625, -3.6191406, 1.9033203, -0.5029297, -0.18322754, 1.46875, -1.6171875, 0.51123047, 0.63134766, -2.5078125, 0.08477783, -0.19250488, -0.24963379, -0.89746094, 0.90966797, 0.6381836, -1.2919922, -2.2578125, 0.32373047, -2.1464844, 1.3320312, -0.8178711, 0.08807373, 1.3876953, 1.4716797, 0.8466797, 0.27954102, 1.75, 1.8828125, 0.4580078, 1.9404297, -2.5683594, -0.6796875, -3.640625, 1.2636719, 0.20739746, 1.3886719, -4.078125, -1.9785156, 0.22753906, -1.8515625, 4.2773438, 0.9633789, 1.0302734, 0.28125, 0.3696289, 1.6191406, -1.9443359, -1.4492188, 0.34399414, 0.9892578, -1.5615234, -0.7109375, -2.2109375, -1.6914062, -1.6943359, 0.76220703, 0.5629883, -1.0654297, -2.8066406, 0.120666504, -2.453125, -0.3461914, -0.47729492, 0.19677734, -0.3869629, -1.9111328, -1.6533203, -0.10681152, -1.8154297, -0.5913086, -0.9580078, 1.2011719, -0.00497818, 0.22741699, 1.3642578, -1.8759766, 1.8388672, -0.9482422, -4.6210938, 2.2695312, -0.69433594, -2.6191406, 2.765625, -2.8457031, -1.4345703, -4.015625, 0.0579834, 2.5078125, 2.1152344, 0.003900528, 0.34448242, 1.6123047, -0.78466797, -1.1240234, 0.7783203, -2.0742188, 0.4724121, 3.1855469, -2.2617188, -0.9926758, 0.86279297, 0.86376953, -2.0234375, -1.8623047, 2.7597656, 2.7148438, 2.1445312, 1.0341797, 1.8691406, 1.6464844, -1.6669922, 0.60791016, 0.69433594, -0.47314453, 0.828125, -0.30664062, 0.27294922, -1.6210938, 2.0273438, 0.8359375, 1.5087891, 0.87060547, 1.8164062, 1.4033203, 0.5073242, -0.7319336, -0.17590332, -0.10998535, -0.85595703, 2.5585938, -2.015625, -0.27294922, 0.07849121, -2.109375, 0.9091797, -0.27563477, -1.5224609, 2.8359375, 0.017562866, -1.8691406, -0.048736572, 2.2070312, 2.0839844, 0.65771484, -0.40551758, -2.0136719, -0.92285156, 1.8828125, -1.6777344, 0.07067871, -1.6523438, 0.5317383, -1.46875, -3.0683594, 1.5, 3.7519531, -1.2578125, -1.6113281, 0.85839844, -1.4638672, -0.7705078, 2.1308594, 1.0605469, -1.9365234, -0.3857422, -2.2109375, 1.5341797, 0.3449707, -0.7578125, -1.109375, -0.09375, 0.4555664, -0.46435547, 1.6210938, 1.6025391, 0.105041504, -1.5703125, 1.2285156, -4.15625, -1.9785156, 0.41748047, -2.3398438, -1.7099609, 2.9472656, 0.39819336, 0.69140625, -0.35742188, 4.0859375, -0.9970703, 0.68896484, 2.1660156, -2.7402344, 1.2070312, -3.9511719, -2.9140625, -0.47802734, -1.1181641, 0.31958008, 1.5869141, -0.171875, 0.44091797, 2.6582031, 1.1826172, -2.40625, -0.6645508, -1.0390625, -0.35791016, -0.34033203, 0.2722168, -0.40722656, -0.6152344, -2.6835938, -2.4609375, -1.3808594, -0.7216797, 0.12866211, 3.5253906, -3.3496094, 1.0126953, -0.38452148, -1.0244141, -1.8847656, -0.37841797, 1.9638672, 0.65478516, 0.98779297, -2.7285156, 0.3930664, -0.026184082, -1.2392578, 2.4960938, 1.984375, -0.99853516, -2.4003906, 1.5878906, 1.6630859, 2.9628906, -0.7207031, -2.5292969, -0.21594238, 2.4238281, 1.1357422, -1.4775391, -0.08526611, 0.7739258, -1.6025391, 0.9057617, 0.87109375, 1.6796875, 1.953125, -0.0925293, -2.59375, 0.8886719, -0.46020508, -0.17089844, -1.5224609, 0.28344727, 1.5878906, -1.3085938, 0.48510742, -1.7783203, 3.1660156, -1.5546875, -0.6948242, -4.390625, 1.9345703, 3.5214844, 2.8886719, 2.4980469, -1.5429688, 0.6567383, 1.2285156, -0.44873047, -0.73779297, 0.79541016, -2.1542969, -0.70654297, 2.6386719, 0.37109375, -2.1640625, -1.0332031, 0.921875, -2.1601562, 0.2932129, -2.0742188, -0.80615234, -0.62353516, 0.2932129, 1.6474609, -0.5161133, 3.6835938, -1.3994141, -0.9628906, 0.9013672, 1.8408203, 0.0982666, 1.2548828, 0.17578125, 0.77783203, -0.7138672, 1.1425781, 1.7880859, -0.67626953, 1.4501953, -1.2089844, 0.14135742, -2.4550781, 0.34692383, 1.6064453, 0.82128906, -0.40649414, -0.24035645, 1.2412109, 2.2207031, 2.5117188, 2.21875, 1.8007812, -2.4042969, 2.7207031, 0.8339844, -3.2304688, 2.3359375, 1.2607422, 0.921875, 2.0507812, 2.0625, -3.3496094, -0.113098145, 2.2792969, -0.25170898, 1.2265625, -1.1572266, -0.6557617, 2.3203125, -2.1191406, -1.6611328, -0.61328125, -0.7475586, 1.1191406, 0.71484375, -0.14819336, -2.0292969, 1.0566406, 2.4960938, -1.4248047, -2.7128906, 1.5791016, -0.7138672, -0.04446411, -1.7871094, -1.0087891, -1.2304688, -0.37060547, 2.9570312, 2.3164062, 1.2265625, -0.5126953, 1.5371094, -1.2871094, -0.5258789, -2.3828125, 2.1171875, -1.8144531, -1.8105469, 0.34936523, -2.5859375, 0.11505127, -2.2441406, -1.7460938, -0.27929688, 1.6035156, 0.8828125, 0.58251953, -0.84765625, 0.3347168, -1.6191406, -2.1191406, 0.020324707, 0.17028809, 0.06951904, 0.5800781, 2.0996094, -1.3320312, -0.3876953, -0.57958984, -0.10620117, -1.6142578, 0.36914062, -0.91503906, -0.9350586, -1.1357422, -0.55322266, -1.6425781, 1.2011719, 2.1230469, 0.22668457, 1.1269531, -3.0253906, -0.13769531, 0.46801758, -0.5209961, 1.5185547, 1.3154297, 0.79003906, -0.22009277, 1.0322266, 0.9277344, -2.125, 1.9599609, -1.8671875, -0.9448242, 1.9658203, -0.47607422, 1.6035156, -0.020462036, 0.40966797, -0.3564453, -1.0820312, 2.0585938, 2.0761719, -1.7451172, -0.5058594, 1.5927734, -0.09454346, -0.54785156, 0.7783203, 0.10839844, 1.5341797, -0.043395996, -0.98876953, -0.80810547, -1.4580078, -2.0859375, 2.015625, -3.4316406, -0.640625, -0.81884766, 0.7519531, 1.7910156, -0.072143555, -1.1953125, 2.3769531, -0.91503906, -1.3115234, -0.2854004, -0.23034668, 4.4570312, 4.1054688, -0.16027832, -0.28149414, -0.89990234, 0.4597168, 1.2138672, 1.3408203, -1.5546875, 0.8745117, -1.3271484, -0.4086914, -0.05267334, 1.4921875, 0.6064453, 0.7060547, -1.2460938, 0.90478516, 4.1132812, -0.7944336, 0.43652344, 1.3017578, -0.5678711, -0.5185547, 3.3730469, -1.0419922, -3.9042969, 0.9067383, -2.4941406, 1.6728516, -0.13244629, -1.2460938, 0.32617188, -0.79589844, -2.6660156, -3.1855469, -2.2382812, -2.1914062, 1.3486328, 1.6679688, -2.5117188, -0.875, 1.3144531, -0.19091797, 4.2070312, 0.9736328, 2.6230469, -2.0078125, -0.096069336, -1.4814453, 0.4873047, 0.058898926, -4.6445312, 1.9355469, 1.1425781, -1.2529297, -2.0292969, 2.1972656, -0.16662598, 1.8808594, 0.8046875, 1.5722656, 1.7314453, 2.3359375, 1.0839844, 1.3251953, 1.9990234, -0.8051758, -0.9375, -0.7290039, 1.3789062, 0.9243164, 2.3105469, -0.7895508, 2.3359375, -2.5546875, 0.23425293, -0.4963379, -1.0244141, 2.0585938, -3.1464844, 0.11987305, 0.6582031, 2.34375, -1.1035156, -0.95166016, 0.8071289, 1.1005859, 0.41088867, 1.0703125, 2.1347656, 0.8496094, 1.1650391, -1.4638672, -0.27270508, 2.3554688, -3.7050781, 0.30737305, 0.78027344, -0.4765625, -1.6855469, -1.8486328, 1.9072266, 0.8178711, -0.98339844, 0.50146484, 2.5488281, 1.0078125, 0.6430664, -2.6308594, -0.72753906, -0.2746582, 3.7109375, 0.7246094, -0.45874023, 0.80615234, -1.4667969, -4.1523438, -3.1113281, 3.6757812, 1.828125, 1.4902344, -0.06750488, -1.0820312, 3.1054688, -0.19055176, 2.3222656, -0.54785156, 0.97265625, -1.3984375, -3.8222656, -0.23303223, 0.7392578, -0.5019531, 0.66015625, 0.5385742, -0.57421875, 0.9716797, 0.89501953, 1.4316406, 0.37109375, 1.2197266, 2.515625, 1.9257812, 0.022018433, 1.3027344, 0.098083496, -1.0927734, -1.328125, 2.2480469, 1.2460938, 0.48535156, -0.059753418, -1.2714844, 0.43286133, 0.48339844, -1.34375, 2.75, -2.2734375, -0.2709961, 1.4951172, 1.1054688, -0.92626953, -0.0076522827, 2.6328125, 2.5195312, 0.3322754, 0.8535156, 3.1328125, 0.049041748, 1.7919922, 0.7685547, 0.45703125, -0.76220703, 1.1259766, -1.2070312, 1.0292969, -0.9658203, 1.3789062, 1.1494141, -0.58154297, -1.3925781, 0.19946289, -0.7963867, -1.2529297, 0.33325195, -0.35375977, -1.0136719, -1.5917969, 2.7753906, -0.2211914, -1.7265625, 2.7441406, -0.54248047, -0.32739258, -3.5273438, -2.6289062, -0.82958984, -1.9580078, -0.3137207, 1.28125, 3.5019531, 0.36914062, 0.68896484, -1.1113281, -3.4921875, -2.015625, -2.9726562, 2.65625, -1.703125, -1.7744141, -1.7900391, 0.15246582, 1.3027344, -0.24487305, -0.11621094, -0.54248047, -2.109375, 1.7236328, -0.796875, 0.65722656, -0.5209961, 0.42895508, 2.2382812, 1.9755859, 0.5019531, 0.4794922, -0.23669434, 1.8671875, 0.099853516, -1.2792969, -0.99853516, 0.99560547, 0.14416504, -0.58154297, 1.3652344, 1.3701172, -0.47094727, -0.6323242, 0.8725586, -1.5595703]}, "B07H6193C8": {"id": "B07H6193C8", "original": "Brand: Weber\nName: Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\nThe built-in fuel gauge lets you see how much fuel is left in the tank\n", "embedding": [-0.7441406, 0.3383789, 1.2587891, -0.23254395, -0.94628906, 0.25317383, -0.18530273, -0.85595703, 0.6357422, 1.2216797, 2.3105469, -0.57714844, 1.3232422, -3.3320312, 0.0982666, 0.45043945, 2.234375, 1.3349609, -0.49267578, 0.61621094, 1.3046875, 0.45043945, 1.0644531, -1.75, 1.2958984, 1.8164062, 3.6269531, -5.9140625, -1.0507812, -0.65771484, 1.6318359, -0.2770996, 1.1201172, 1.9511719, -2.8378906, -2.3613281, -2.3613281, 1.4296875, -3.3320312, 1.296875, -0.5385742, -1.5097656, 1.3896484, -0.77197266, -1.2080078, 1.2021484, 0.45654297, 0.17456055, -1.7763672, -0.03817749, 3, 2.1679688, -0.32104492, 0.4506836, -0.59472656, 2.5, 0.31445312, -1.8203125, 1.9052734, 0.17822266, 1.7685547, -0.18798828, -3.0507812, -1.9736328, -1.0390625, -0.48266602, -0.6088867, 0.27978516, 0.6821289, -0.038757324, 4.25, -0.3461914, -0.79785156, 0.3935547, 0.44458008, -1.1816406, -1.6660156, 1.3554688, 0.34643555, -0.8510742, -1.2441406, 2.2167969, 1.6660156, -2.8613281, 0.1361084, 0.89501953, 0.67529297, -1.7363281, 1.9882812, 1.1943359, -0.7192383, 1.0595703, -2.0214844, -3.3144531, 1.5722656, -0.67871094, 1.4033203, 1.9550781, 0.053100586, 1.6503906, -1.2294922, 1.3320312, -1.5800781, -0.6201172, -4.0390625, -1.6425781, 1.4404297, -0.027191162, -2.9433594, -0.87158203, -0.80566406, 0.6669922, 1.8613281, 1.8798828, 1.3857422, 1.4755859, 0.8901367, 2.0546875, 0.43945312, 0.8461914, 3.7148438, -1.7861328, 0.7607422, -0.96533203, -1.3857422, -1.2802734, -0.578125, 0.59716797, 3.5527344, -2.4882812, -0.19909668, 1.5507812, 4.125, 0.062347412, -1.1005859, -1.4951172, -0.28295898, -1.4599609, -3.1523438, 0.08319092, -0.9111328, 0.2388916, 0.75683594, -1.1064453, -3.8847656, 1.3701172, -0.32373047, 0.08898926, 0.6660156, -1.4384766, 0.22668457, -1.1982422, -0.80566406, -1.7128906, 1.5224609, 0.7807617, -1.1591797, 0.71484375, 3.5878906, 2.2871094, 1.8193359, -0.7998047, -0.6357422, -0.5834961, 0.35229492, 0.6723633, 1.9072266, 1.3056641, -1.0703125, 0.80371094, 0.34179688, -1.6347656, -1.0302734, 0.62939453, 1.8964844, -2.1816406, 0.20715332, 1.0400391, 0.103393555, -0.6225586, -1.2871094, -1.6943359, -0.04800415, -1.4404297, -0.26953125, 0.045410156, 0.06982422, 0.70214844, 1.7949219, -1.5820312, 0.55566406, -0.45385742, 1.0322266, -0.5019531, 0.49438477, -2.4765625, -1.2626953, -1.2382812, 2.6367188, -0.9472656, -0.70166016, -1.1044922, 1.3300781, 1.7783203, -1.0380859, -3.0800781, -0.46118164, -3.4121094, 0.79052734, 1.8710938, 1.4990234, -1.4443359, 1.1210938, -1.1083984, -0.46044922, -1.1572266, 2.2011719, 0.7578125, 0.36108398, 1.2177734, -0.8178711, -1.0908203, 1.0615234, 1.234375, 1.3828125, 0.47680664, 0.9555664, -0.08483887, -4.3203125, -0.7597656, 2.9101562, -0.3371582, -0.013336182, 1.109375, 0.68603516, 2.5195312, 0.50341797, -0.42358398, 0.097961426, 0.24865723, -0.93066406, 0.9980469, -2.5683594, -1.6845703, -0.6635742, 0.13769531, -1.4082031, 2.5332031, 0.29516602, 0.44555664, 1.1386719, -0.72802734, 1.2597656, 0.74609375, -0.7294922, 0.7211914, -1.5224609, 1.7695312, 0.37231445, -2.2988281, 2.1210938, 1.6279297, 0.1743164, 1.0712891, 0.5776367, -1.6806641, 1.3701172, 2.7578125, -1.0126953, -1.3408203, 0.7998047, 0.8442383, -0.3881836, -1.9472656, 2.3847656, 2.15625, -1.3515625, 3.6992188, 0.13549805, 1.25, -0.1920166, -1.9443359, 0.9375, -2.8261719, -0.53515625, 1.2578125, 1.4384766, -1.2001953, -2.4316406, 0.12548828, 4.4023438, -0.8388672, -2.7128906, 2.1289062, -1.0996094, 1.4384766, 2.2402344, -0.30859375, -0.5097656, 2, 2.4277344, 0.054107666, 0.97558594, 1.1367188, 0.04562378, -0.5932617, 0.91748047, -2.4375, 0.9038086, 1.8027344, -0.6074219, -0.5678711, -1.2929688, 1.8945312, -2.6054688, -1.3847656, 2.2734375, -2.7519531, 0.5180664, -0.7026367, 2.0273438, 0.44140625, -1.9414062, -0.2298584, -1.578125, 0.45288086, -1.1318359, 1.4111328, -0.35302734, -1.9931641, -0.1706543, -0.59765625, -0.025558472, -1.9853516, -1.4238281, -1.1894531, -2.0273438, -3.4765625, 1.4003906, -1.625, -1.0195312, 1.6425781, -1.8271484, -0.18566895, 0.48779297, -1.7675781, -0.31445312, -0.20922852, -0.8486328, -1.8632812, 1.1113281, 1.4677734, -1.7177734, -1.9267578, -0.0048713684, -1.5546875, 1.4003906, -0.3388672, -0.13232422, 0.95947266, 0.31445312, 0.8598633, -0.43725586, 1.1972656, 1.4882812, -0.85253906, 2.0175781, -2.5429688, 0.11767578, -2.421875, 2.1074219, -0.121276855, 0.83251953, -3.1835938, -1.9746094, -0.59765625, -0.43481445, 3.359375, 0.7817383, 1.3466797, 0.3503418, 0.24389648, 0.9951172, -0.9638672, -2.2734375, 0.5371094, 0.16442871, -2.4453125, -0.3623047, -2.75, -1.0244141, -2.5273438, 0.2524414, 0.6621094, -0.56396484, -2.4414062, -0.45214844, -1.3388672, -0.14318848, -0.74121094, 0.4230957, 0.29101562, -2.2480469, -2.8105469, 0.2409668, -0.99121094, -0.033355713, -2.21875, 1.2011719, -0.30151367, 0.19958496, 1.4785156, -0.7001953, 0.8930664, -0.9121094, -3.7480469, 2.0605469, -0.04953003, -2.4101562, 2.6699219, -3.0488281, -1.0917969, -3.1191406, 0.041503906, 2.8183594, 2.0585938, 0.8051758, 1.8671875, 1.9042969, -0.5004883, -1.9003906, 0.33032227, -1.3261719, 0.3569336, 2.9785156, -3.1464844, -1.2744141, 0.3010254, 1.4267578, -2.7441406, -1.2685547, 3.25, 1.7138672, 2.4179688, 1.6318359, 1.2783203, 0.49536133, -1.3320312, 0.5415039, 1.1748047, -0.81103516, 1.0527344, -0.12683105, 0.9785156, -1.3339844, 1.5556641, 0.8461914, 0.68408203, 1.3310547, 2.5351562, 1.4414062, 0.16552734, -0.75683594, -0.5024414, 0.49365234, -1.1464844, 2.2695312, -1.6464844, -0.068359375, -0.7001953, -0.48266602, 0.6489258, 0.18334961, -1.2841797, 2.21875, 0.6748047, -1.4882812, 0.28344727, 1.5380859, 1.4072266, 0.4116211, 0.1508789, -0.9536133, -0.6328125, 1.7949219, -0.88916016, 0.7495117, -2.0429688, -0.1038208, -1.1923828, -3.21875, 0.44604492, 4.46875, -1.7177734, -1.5722656, 0.43310547, -1.75, -0.6982422, 2.3847656, 0.013587952, -0.66845703, 0.4621582, -2.0585938, 1.2773438, 0.59033203, -0.43017578, -1.2958984, -0.3190918, 1.2724609, -0.38793945, 1.3564453, 1.5664062, 0.094055176, -3.265625, 0.31347656, -3.90625, -1.2470703, 0.2644043, -2.3984375, -1.5576172, 2.6523438, 0.33740234, 1.2734375, -0.06500244, 3.0058594, -1.4013672, 0.9008789, 2.6152344, -2.6523438, 0.86279297, -3.4355469, -3.5234375, 0.08758545, -1.6582031, 0.2536621, 1.8505859, 0.22961426, 0.5600586, 2.8222656, 1.0185547, -2.7089844, -1.3867188, -0.7246094, 0.10064697, 0.18566895, 1.375, 0.15368652, -0.30004883, -2.5800781, -2.6230469, -0.41918945, -0.05230713, 0.039245605, 1.8164062, -3.265625, 0.6616211, -1.1533203, -1.4677734, -2.2050781, -0.30932617, 1.2509766, 0.18005371, 0.60546875, -2.2636719, 1.4414062, 0.8535156, -0.4736328, 2.3769531, 1.6650391, -0.14880371, -2.9433594, 0.8701172, 0.70410156, 3.4101562, -0.75927734, -2.5175781, -1.3164062, 0.9560547, 1.2060547, -2.0429688, -0.3581543, 1.2763672, -1.1894531, 0.61376953, 1.3935547, 1.6923828, 1.7929688, -0.024642944, -2.40625, 0.58740234, -0.0022964478, -0.47729492, -2.5878906, -0.03955078, 1.4697266, -1.5449219, 0.36865234, -2.3535156, 1.4550781, -1.3554688, -0.4375, -4.7070312, 2.5351562, 3.8808594, 3.6269531, 1.9863281, -1.9013672, 0.84765625, 0.28710938, -0.4423828, -0.9350586, 1.2177734, -0.7246094, -1.1738281, 3.0058594, 0.4206543, -1.7949219, -0.44213867, 0.7548828, -2.4042969, -0.37304688, -1.6103516, -0.5410156, -1.6210938, 0.40600586, 0.21057129, -0.7114258, 3.6054688, -0.44750977, -0.8569336, 0.8881836, 1.3427734, -0.15563965, 0.21374512, 0.5395508, 0.8173828, 0.10571289, 1.4375, 2.3789062, -0.32836914, 1.2910156, -1.4863281, 0.9609375, -1.4970703, 1.3671875, 1.6318359, 0.35375977, -0.29614258, 0.57177734, 2.5195312, 2.2011719, 2.8652344, 2.3144531, 1.9365234, -2.9257812, 2.1054688, 0.5253906, -2.7148438, 1.8027344, 0.9243164, 0.023147583, 2.2792969, 1.1259766, -3.7988281, -0.46020508, 1.8261719, -0.33398438, 1.1240234, -0.79345703, -0.22009277, 1.8408203, -0.8847656, -0.92871094, -0.032318115, -0.3010254, 1.0800781, 2.0722656, -0.4182129, -1.8085938, 1.4990234, 2.2480469, -1.1005859, -1.4375, 1.7451172, -0.4248047, 0.28759766, -2.0234375, -0.78808594, -1.3779297, 0.01600647, 2.0351562, 1.5439453, 1.9121094, -0.4321289, 1.4072266, -2.09375, -0.94628906, -1.9160156, 2.0097656, -1.9638672, -1.3574219, 0.2109375, -3.5683594, 0.68066406, -1.7128906, -1.9003906, -0.7368164, 1.0576172, 1.3339844, 1.2402344, -1.3974609, 0.21154785, -1.9257812, -3.34375, -0.74853516, 0.42578125, 0.2631836, 0.7524414, 1.3134766, -1.7490234, 0.66503906, -0.47631836, 0.22229004, -1.8896484, 1.2763672, -1.5078125, -0.6035156, -1.1123047, 0.22827148, -1.5185547, 0.25610352, 1.265625, 0.15429688, 0.7919922, -2.8691406, -0.19677734, -0.3618164, -0.63378906, 0.23168945, 1.6630859, 0.87646484, -1.0009766, 1.4453125, 1.1357422, -3.15625, 2.5878906, -2.3515625, -1.3964844, 2.2519531, -1.1289062, 0.43310547, -0.3696289, -0.17285156, -0.5131836, 0.013549805, 1.4667969, 0.9951172, -1.2783203, -1.0908203, 0.9692383, -0.5859375, -0.76123047, 1.1826172, 0.001493454, 1.3388672, 0.9892578, -1.3964844, -1.3554688, -1.4882812, -1.7714844, 0.87646484, -3.359375, -0.86279297, -1.7304688, 1.4033203, 1.9375, 0.12359619, -1.0761719, 2.6035156, -1.3652344, -2.2988281, 0.43554688, -0.8725586, 4.8203125, 3.609375, -0.70166016, -0.8256836, -2.328125, 0.79785156, 0.9453125, 0.37475586, -1.0605469, 0.38793945, -0.32104492, 0.5546875, -0.04260254, 2.1601562, 0.69970703, 0.94677734, -1.0546875, 0.50146484, 3.4238281, -1.5, 0.98876953, 1.4814453, -0.46069336, -0.08105469, 3.8144531, 0.22106934, -4.0742188, 1.0263672, -2.1230469, 1.6904297, 0.12023926, -1.2324219, 0.019729614, -0.8911133, -1.7988281, -2.1640625, -2.0195312, -2.5820312, 1.5283203, 2.2636719, -2.3359375, -1.1728516, 1.1083984, -0.6254883, 3.3378906, 1.5322266, 1.9267578, -2.0527344, -0.75341797, -0.58447266, 0.94628906, 0.85839844, -4.0390625, 1.5732422, 1.7431641, -2.1601562, -1.4589844, 1.0410156, -0.18444824, 2.1972656, 0.03463745, 2.2558594, 3.1484375, 1.4052734, 1.8496094, 0.9423828, 2.1210938, 0.93066406, -0.66259766, 0.39501953, 1.1640625, 0.6591797, 1.5878906, -1.4716797, 2.890625, -2.2773438, -0.7661133, -0.27856445, -0.97021484, 1.9736328, -2.8613281, 0.63623047, 0.20898438, 1.5625, -0.6879883, -1.0498047, 0.31152344, -0.09613037, 0.59521484, 0.26879883, 1.9257812, 1.2832031, 1.1552734, -0.9267578, -0.07763672, 2.7109375, -4.5273438, 0.97802734, -0.47827148, -0.7661133, -0.6640625, -1.0380859, 1.8076172, 1.1132812, -0.3486328, 0.8442383, 3.109375, 0.54833984, 1.1523438, -3.0351562, -1.6171875, -0.34033203, 4.2539062, 1.5517578, -0.43652344, 1.5947266, -1.3925781, -4.2304688, -3.5859375, 3.3984375, 1.9111328, 1.3925781, 0.4272461, -0.5576172, 2.5332031, -0.8671875, 1.4443359, -1.796875, 0.63720703, -0.9267578, -3.9609375, -0.4519043, 0.9248047, -0.9350586, 0.42529297, 0.2758789, 0.08782959, 1.3193359, 1.1523438, 2.0136719, -0.005870819, 0.97998047, 2.1132812, 0.8964844, -0.60009766, 1.8242188, 0.36865234, -1.4970703, -2.7304688, 2.6992188, 1.4423828, 0.1899414, -0.37475586, -0.94433594, 0.5317383, -1.2636719, -0.51904297, 1.9326172, -2.0292969, -0.16552734, 0.8911133, 0.5546875, -1.2050781, -0.06555176, 2.4863281, 3.0527344, -0.6166992, 0.8144531, 3.7929688, -0.54541016, 0.8847656, 1.1416016, 0.68896484, -0.13916016, 1.1640625, -0.28515625, 0.079711914, 0.20410156, 1.3974609, 1.8095703, 0.3293457, -0.96533203, -0.09484863, -1.1826172, -1.2470703, -0.14416504, 0.3395996, -0.5566406, -1.2119141, 3.1347656, -0.34106445, -1.453125, 2.4980469, -0.78515625, 0.56347656, -2.5820312, -3.1523438, -0.98535156, -1.5957031, -0.26586914, 0.93408203, 4.3554688, -0.67285156, 0.34838867, -1.2578125, -3.4628906, -1.1152344, -3.9765625, 2.3964844, -1.8818359, -2.5136719, -1.1357422, 0.8105469, 1.8789062, -0.48266602, -0.55566406, 0.14782715, -1.8115234, 1.4326172, -0.4152832, 1.3271484, -0.5756836, 0.35131836, 2.0664062, 1.8671875, 1.8525391, 0.40454102, -0.62646484, 2.2070312, -0.55908203, -1.4042969, -0.7421875, 0.78125, -0.35546875, 0.09301758, 1.0244141, 1.4804688, -0.4152832, -1.0429688, 0.7626953, -2.2929688]}, "B08GSDFS67": {"id": "B08GSDFS67", "original": "Brand: AVAWING\nName: AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover\nDescription: AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42\"x20\"x25\" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction\nFeatures: \ud83d\udd25Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience.\n\ud83d\udd25High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control.\n\ud83d\udd25Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame.\n\ud83d\udd25Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.\n", "embedding": [-0.40576172, 2.5898438, 1.7167969, -2.0917969, 1.3076172, 1.8007812, 0.74609375, -1.6298828, 0.16955566, 3.2207031, -1.78125, 0.23059082, -1.0605469, -3.6972656, 1.9541016, 1.0976562, -0.7915039, 0.7553711, 1.7509766, -0.3857422, 1.9365234, 0.2614746, 0.9428711, -0.6923828, 0.85058594, -1.0625, 3.1484375, -3.0507812, -0.10870361, -1.2929688, 1.4082031, 1.4023438, -0.16552734, 1.9814453, -2.9199219, -1.0458984, 1.0078125, 2.0527344, -1.6650391, -0.7739258, -1.2402344, -1.7480469, 3.8242188, 1.9941406, -2.0566406, 1.3037109, 1.0703125, -0.88134766, 0.27563477, -1.546875, 0.6879883, 1.1982422, 1.7128906, 0.0043296814, -1.7734375, 2.2285156, -1.1904297, -3.2324219, 1.7783203, 1.1796875, 1.2021484, -0.37939453, -1.2285156, 2.6210938, -1.3769531, 0.9067383, 0.021270752, -0.6567383, 0.79052734, -0.3100586, 0.6738281, 0.41674805, 0.6635742, 1.9863281, -0.41381836, -1.3916016, -2.90625, 2.9394531, 3.0898438, -1.21875, -0.021652222, 1.4833984, 0.2944336, -1.7070312, -0.7915039, 0.33666992, -1.1572266, -1.4902344, 0.8652344, 2.1796875, -0.45532227, 2.4628906, -1.9326172, -4.4765625, 0.4013672, -1.1152344, 0.11468506, 0.38793945, -2.0644531, 1.0986328, 0.34106445, 1.1787109, -0.5834961, 0.9506836, -2.8457031, -0.24047852, 0.67529297, 0.7011719, -0.23962402, 0.19995117, -0.88378906, -0.20483398, 0.57373047, -0.76464844, 0.4104004, 2.1933594, 0.5751953, 0.5698242, 3.390625, -0.12286377, 4.7617188, 0.3527832, -0.25610352, -1.3642578, 1.1152344, 0.48168945, -1.0019531, 1.6689453, 1.65625, -2.640625, 0.59716797, -2.5507812, 1.1621094, 0.6113281, -2.7207031, -0.21972656, -1.9804688, -1.6738281, -3.7207031, 0.26123047, -2.6054688, 0.25585938, 0.50146484, 0.17871094, -2.3242188, -1.5693359, -0.9272461, 3.3496094, -0.30908203, -2.3867188, 1.0517578, -0.8256836, 0.048034668, -2.6835938, 0.5722656, -0.7290039, 0.6347656, -3.9296875, 3.6425781, 0.5913086, 1.2958984, -1.8535156, 0.37109375, 1.3525391, -0.60058594, -1.6328125, 2.359375, 1.1386719, 0.20581055, 0.38671875, -0.45239258, -1.1269531, 0.32617188, 0.60546875, 0.04348755, 0.7270508, 0.7597656, 1.5996094, 3.4179688, 0.33740234, -1.3720703, -1.3505859, 0.63720703, 0.44189453, 0.10852051, -2.1152344, -1.5771484, -1.8242188, 0.5395508, -2.0507812, -2.4980469, 1.2958984, -2.375, -0.14318848, -0.6635742, -3.0332031, -2.7167969, -2.1308594, 1.4902344, 1.3837891, -0.15100098, -0.027908325, -1.2578125, 0.7475586, -2.9628906, -1.84375, -2.8144531, 1.3486328, 0.96972656, -0.004055023, -0.4711914, -1.1826172, 2.3476562, 1.2509766, -0.13562012, -0.59765625, 1.5927734, -0.1418457, 1.4375, 0.54296875, -0.09991455, -0.17590332, 2.3769531, 2.3300781, 2.0683594, 1.2861328, 1.2900391, 0.18432617, -2.0410156, -1.6220703, 2.390625, -0.08673096, -0.6123047, 1.2861328, -1.5537109, 2.9375, 0.97998047, -0.6459961, 1.8486328, -2.0488281, 0.90185547, -1.7792969, -0.01965332, 0.7216797, 0.5805664, 0.40649414, -0.71533203, 1.6728516, 2.0859375, 0.7026367, -1.1162109, -0.85791016, 0.62597656, 0.24316406, 0.044525146, 1.8183594, 0.093688965, -0.53808594, 0.43115234, -1.2314453, 1.5703125, 0.44335938, -0.6074219, 0.6928711, -0.59814453, -2.3808594, 2.1191406, 0.7709961, -3.0214844, -0.4572754, -0.22045898, 0.16772461, 3.2558594, 0.6645508, 0.36889648, 0.63623047, -1.5595703, 2.3203125, -0.18359375, 3.0078125, 0.16870117, -1.4345703, 2.4335938, -1.0947266, 0.953125, 0.35791016, 1.0039062, 0.73876953, -1.1210938, 0.4111328, 3.7128906, -0.28271484, -1.8720703, 2.3710938, 0.5966797, -0.035125732, 1.0371094, 0.061035156, -1.0136719, -0.50097656, 0.82373047, 1.8349609, -0.1505127, 2.5585938, -2.3964844, -0.075683594, 0.9086914, -3.640625, 0.07824707, -0.1451416, -0.52441406, -1.7841797, -0.22595215, 1.1669922, -3.7695312, -1.9199219, 2.0039062, -1.8652344, 1.6748047, 1.0332031, -0.61572266, 2.1582031, -2.8613281, -0.6821289, -0.72021484, 1.5996094, -1.4365234, 0.6533203, 0.012176514, -0.84277344, -2.6054688, -1.3564453, 1.0605469, -3.2519531, -0.8203125, -2.4199219, -1.2216797, -0.5253906, 0.15063477, -2.1171875, 1.2626953, 0.03463745, -1.2548828, 0.47509766, -1.4199219, -2.2070312, 0.28564453, 1.0341797, -2.2773438, 0.42407227, 1.3027344, 2.5664062, 0.6635742, -2.6542969, 0.23083496, 0.20959473, -0.15551758, 1.2851562, 0.13146973, 0.18811035, -2.7714844, 1.3154297, 1.4316406, -2.1640625, 0.28857422, -2.1777344, -0.89208984, -3.8828125, -0.04107666, 0.31396484, -0.026794434, 1.4326172, 0.7583008, -1.0683594, -0.88671875, -0.17443848, -0.93896484, 4.0390625, 0.88378906, 1.9746094, -0.39575195, -1.9082031, -0.75927734, -0.14050293, -2.359375, 1.3349609, -1.4785156, -0.7993164, -3.046875, -1.765625, 0.02053833, -1.1953125, -1.0917969, 0.4501953, 1.4394531, 0.86376953, -0.57177734, -1.4267578, -0.37695312, -1.2480469, 0.97021484, 0.8022461, 0.52441406, -1.9082031, -1.109375, -0.66503906, -0.21484375, -0.6328125, 2.78125, -1.0517578, 1.6455078, 2.0058594, -0.6035156, 0.48486328, 0.6855469, -2.0820312, 1.5742188, 3.5488281, 1.4326172, 0.6772461, -1.0712891, -0.8383789, -1.4892578, 1.0273438, 2.7949219, 2.2109375, 0.6694336, -0.5761719, -0.08996582, 0.6010742, 0.10345459, -0.30688477, -0.6503906, -0.9863281, 3.7714844, -2.7949219, 0.06762695, 1.1572266, 2.5566406, -3.9921875, -0.5761719, 1.4648438, -1.3896484, 0.77001953, -0.92333984, 1.1992188, 1.5, -0.6020508, 1.0507812, 0.09460449, 3.1269531, 0.40600586, -1.140625, 0.06744385, 1.1933594, 0.032989502, 1.6162109, 0.34301758, 0.41015625, 3.1875, 0.26635742, -3.0703125, 0.5810547, 0.46240234, 1.1230469, 0.89160156, 1.7441406, -1.5048828, 0.101745605, 0.13134766, 1.0009766, 0.73876953, -1.2773438, 0.36572266, 0.39282227, 0.94140625, -0.5913086, -1.2568359, 0.18383789, 0.96728516, -2.6933594, 1.5751953, -1.3955078, -0.15405273, 1.1054688, -1.6523438, 0.18188477, -0.64160156, 2.9765625, -0.017730713, -2.4296875, 0.2578125, 1.1376953, -0.85546875, -1.078125, 0.78271484, -2.7695312, -0.0046920776, 3.7070312, -0.3071289, -0.73828125, -0.34545898, -2.0097656, 0.17211914, 2.1835938, -0.062561035, 0.18017578, 1.5761719, -0.88671875, -1.5849609, 0.7451172, 1.1152344, 0.90478516, -1.4814453, 0.7504883, -0.24291992, -1.3964844, 1.6269531, -2.2753906, -1.53125, 0.74121094, 0.6894531, 1.6464844, -0.14416504, 1.1933594, -0.59814453, -2.6972656, 2.2226562, -0.23706055, -0.54296875, -1.2568359, -4.6640625, -0.010658264, -1.6357422, -1.2539062, 1.7753906, 0.04638672, 0.6484375, 0.30249023, 0.2927246, -2.7304688, -1.8535156, -1.1835938, 0.21972656, -4.25, -0.7685547, -0.07702637, -0.4169922, -1.1875, -0.25097656, 0.72314453, 2.7050781, 0.6376953, 1.6083984, -0.23327637, 0.8466797, -2.1796875, 0.9980469, 0.6635742, 0.8486328, -0.6142578, -1.5058594, 0.14074707, -1.7617188, 2.5351562, 1.1328125, -1.6923828, 1.1591797, 3.6484375, -0.15979004, -1.2744141, -0.08428955, 0.87402344, 4.046875, -0.7705078, -2.4023438, -0.8828125, -1.4121094, -0.24560547, -0.5756836, -1.1269531, 1.0205078, -2.3203125, 0.4519043, 0.65722656, 1.6865234, 1.5976562, 0.3779297, -3.921875, 0.46679688, -0.5834961, -2.7304688, -1.9775391, -1.2441406, -0.31225586, -1.4238281, -0.42382812, -2.3710938, -0.8041992, 0.81396484, -1.2548828, -1.1201172, 2.2753906, 1.1796875, 2.1269531, 3.9785156, -1.7275391, -1.3886719, 1.9873047, -0.68603516, 1.6025391, 2.515625, 0.7729492, -0.3383789, 0.15783691, -0.5751953, -1.6972656, -0.69189453, 0.27392578, -0.80908203, -0.86376953, -0.03366089, -0.75, -1.2773438, -1.1953125, -0.9350586, -1.0966797, 0.4248047, -2.7871094, -0.61328125, -1.3554688, 1.2773438, -0.6723633, 0.19848633, -1.234375, -0.32666016, 0.53222656, 2.953125, 0.19140625, 1.0898438, 3.0449219, -0.25756836, 2.3203125, -1.203125, -0.69091797, -1.0888672, -0.3317871, -0.6040039, -1.6757812, 1.5830078, 1.4375, -1.2080078, 2.5722656, -0.080078125, -1.9433594, 2.7226562, 0.65966797, -1.4863281, -0.34716797, -1.0009766, -0.8642578, 0.95458984, -1.3310547, -1.6240234, 0.1694336, 1.9082031, -0.61328125, 1.1484375, 1.1240234, -0.921875, -0.12988281, -1.7607422, 0.16699219, -0.50390625, -0.48217773, -1.5683594, -2.5917969, 0.49243164, -1.2041016, 1.4228516, 1.3212891, -0.9086914, -1.0791016, 2.3886719, 0.24621582, -0.69970703, -0.20812988, -0.080566406, -0.44140625, 0.5214844, 0.73339844, 0.17590332, 2.0332031, -0.7128906, 0.16186523, -1.2714844, -0.07531738, -0.25512695, 2.7441406, -2.2167969, 0.85791016, 2.5078125, 0.75097656, 1.6923828, -2.3945312, 0.10284424, -0.55859375, 0.9658203, -1.4726562, 1.0332031, -0.6166992, -2.3417969, -2.5449219, -2.3125, -0.81103516, -0.3791504, -3.8359375, 0.17529297, -0.82373047, -0.45361328, -1.1181641, 0.068359375, 0.02607727, 0.017288208, -0.76708984, -0.31982422, -0.69384766, -1.0253906, 0.6826172, 1.7978516, 2.3613281, -0.044189453, -0.390625, -0.47045898, -2.1289062, -0.040222168, 1.9824219, -1.7558594, 2.078125, 1.5986328, -1.1123047, 1.9931641, 3.0351562, 0.5546875, -0.59277344, 1.0917969, 0.32836914, -0.4892578, 1.7851562, -2.0195312, 1.6230469, -0.1227417, -1.6865234, 1.0185547, -0.42578125, -1.2558594, 0.32592773, 2.4765625, 0.7451172, 1.5888672, 0.2607422, -0.38378906, 0.0049591064, 1.0947266, 2.8808594, 1.3359375, -1.8623047, -1.5107422, -1.6552734, -2.6894531, -1.5585938, -3.0214844, -0.30249023, 0.040374756, 0.21533203, 0.5336914, 0.61279297, 1.6337891, 1.7255859, 1.3535156, -1.6337891, 1.6347656, -0.15551758, 2.5917969, 1.3242188, -1.6826172, -2.484375, -2.7773438, -0.06036377, 0.8227539, 1.1484375, -0.6347656, -0.019805908, -3.1464844, 1.2714844, -0.22912598, -0.2331543, 2.0742188, 1.0703125, -0.6870117, 0.77734375, -0.06365967, -0.10473633, 1.9628906, 0.026062012, 2.0800781, 0.13574219, 2.6601562, 2.03125, -0.4038086, 2.2578125, -1.4892578, 1.7431641, -1.8818359, -0.74902344, 0.7783203, -2.4726562, -1.4052734, -1.6240234, 0.04559326, -2.0996094, 1.6054688, 1.0839844, 1.4199219, -0.03427124, 0.89941406, -1.3847656, 0.8574219, 2.3535156, -1.2919922, 0.17895508, -0.87890625, -1.5019531, 0.15246582, 1.7783203, 0.71240234, 0.17468262, 0.6098633, 0.5185547, -1.5527344, 1.0400391, 0.12561035, -0.25195312, 1.3720703, 3.5742188, 0.69433594, 0.31201172, 3.0195312, -0.34570312, 1.2802734, 2.4667969, 0.41235352, -0.020889282, 2.0546875, 3.5800781, -0.8925781, -0.34106445, 0.58203125, 1.3974609, -1.0449219, -0.43164062, -0.80566406, 0.88720703, -2.6953125, 1.8330078, -1.9726562, 1.3828125, -1.4931641, 0.68896484, -0.7866211, -0.02229309, 1.0166016, -0.6191406, 1.4169922, -1.3408203, -0.4326172, 0.8286133, 1.0273438, -1.4003906, -3.1386719, 2.5136719, -0.44628906, -2.6503906, -0.09991455, 3.8359375, 1.3466797, 0.7939453, -1.9365234, 0.93115234, 0.5410156, 2.2519531, 2.4257812, 1.0449219, 1.1455078, 0.10235596, 1.7460938, 1.8505859, -0.99658203, -1.0615234, 0.84277344, -1.9169922, -4.2148438, 1.3623047, 0.41137695, 0.3359375, 1.0195312, -2.5605469, 0.7729492, 2.0136719, 1.3613281, -2.9648438, 0.28173828, 0.6333008, -1.7949219, 0.52197266, 0.68652344, -1.2275391, 4.109375, 2.8789062, 0.20129395, 1.6083984, 1.2089844, 0.70703125, 0.2915039, 0.47583008, -2.0195312, -0.34448242, -0.61621094, 0.7402344, 2.3417969, -0.93115234, -0.036376953, 1.90625, 1.6630859, -0.19384766, -0.005355835, -2.0625, 0.37646484, 0.99316406, -0.70458984, -1.1230469, -0.5600586, -1.4873047, -0.2421875, -0.09832764, 0.40454102, -3.03125, 1.3134766, 0.17004395, -2.7226562, -1.7734375, -0.05810547, -1.8583984, 1.9863281, -0.12561035, -0.46655273, -0.6166992, -0.4892578, 2.3789062, -1.7080078, -2.5703125, -1.1708984, 0.55322266, 0.22802734, 0.47143555, -0.38427734, 1.1162109, 0.06365967, 0.3395996, 3.171875, -2.5332031, 0.79052734, -0.91015625, 0.6567383, -0.6821289, 1.3798828, 0.21154785, -1.0429688, -0.11273193, -3.6308594, 1.0732422, -0.76708984, -2.6816406, 1.7958984, 3.8164062, 3.5273438, -0.23999023, -2.4765625, -2.7910156, -0.6772461, 1.2011719, 3.8066406, -0.012611389, -0.61816406, 0.22583008, -0.0041770935, 4.4179688, -1.1416016, -0.95703125, -0.28686523, -1.6845703, 1.8681641, -1.0478516, 0.6401367, 0.2644043, 1.0371094, 1.0253906, 1.3291016, 1.90625, 0.76708984, 2.2480469, 2.0644531, 0.44018555, -2.4023438, 0.7446289, -1.4238281, 1.1621094, 2.546875, 0.117126465, 1.5068359, 0.05493164, -0.9501953, -4.9921875, -1.1181641]}, "B07QGL9CPQ": {"id": "B07QGL9CPQ", "original": "Brand: PANTIN\nName: Pantin (Propane Gas) 13\" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU\nDescription: Pantin PCWR-D13 compact single burner 13\" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual \u201cL\u201d shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.\nFeatures: 16 guage one piece stainless steel stove top extended to front and two sides with forming technology.\nPropane Gas 13\" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat).\n100% stainless steel and heavy gauge reinforced steel angle chassis.\nHeavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability.\nCast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16\"W x 18\"D x 30\"H; We provide curbside delivery only.\n", "embedding": [-3.4296875, 1.0400391, 3.3164062, 1.0449219, -0.5317383, 1.3720703, 1.3154297, -0.85302734, -1.6962891, 1.4394531, 0.28955078, 0.2919922, 1.6201172, -1.5507812, 0.53027344, 1.1484375, -0.30004883, 1.4501953, -0.62060547, 3.0371094, 3.3671875, 0.5488281, 1.3710938, -1.7490234, -0.17480469, 1.0068359, 4.2617188, -2.1074219, -0.6928711, -3.5585938, 1.3818359, 0.17211914, 0.9790039, 1.9335938, -3.546875, -1.3417969, -0.38623047, -0.06842041, -3.2363281, 0.21728516, -1.1601562, 0.26733398, 2.6914062, -1.4033203, -3.7285156, -0.77783203, -0.3232422, 0.66064453, -0.25805664, -0.15820312, 0.38354492, -0.47094727, 0.4975586, 1.6865234, -0.97998047, 2.1601562, -0.20983887, -1.4511719, 1.8134766, -0.04232788, 2.7246094, 2.2011719, -2.4628906, 0.62597656, -0.66845703, 0.08703613, 0.074157715, 0.41186523, 1.1025391, 0.6821289, 2.453125, -0.5830078, 0.3408203, 0.80371094, 0.85253906, -1.9199219, -2.7324219, 0.1796875, 3.5644531, 0.98095703, 0.08190918, 2.3046875, 1.6572266, -1.7353516, -1.3574219, -0.44458008, 0.7416992, -0.6376953, 0.039001465, 2.3964844, -2.2910156, 3.5761719, -2.1015625, -4.3007812, 2.4863281, -0.3725586, -0.16418457, 1.7851562, 0.07751465, 0.6567383, -0.25976562, -0.09881592, 0.10040283, 0.65478516, -2.7480469, -0.4675293, 1.0107422, 1.6386719, -4.0898438, 0.8261719, -3.2402344, -1.7119141, 0.90722656, -0.51904297, 1.0439453, -0.58496094, -0.5395508, 0.60546875, 1.3886719, -0.39331055, 4.1992188, -1.0361328, -0.6455078, 0.2565918, 0.5097656, 0.9355469, -1.9990234, 0.7348633, 4.3476562, -2.9667969, 0.054748535, -0.5527344, 2.5917969, -1.4306641, -1.5498047, -2.1347656, -0.85253906, -1.8486328, -3.6972656, -0.29077148, -2.1230469, 0.98828125, 0.12634277, 0.39624023, -3.9257812, 0.17797852, 0.17468262, 1.1708984, 0.7807617, -0.5546875, 1.2695312, -0.5620117, -1.3583984, -1.796875, 1.8642578, 0.18481445, 0.3334961, -2.1679688, 4.1796875, 0.6508789, 2.1347656, -1.3769531, -1.9248047, 2.9589844, -0.1829834, -0.16955566, -1.3085938, 1.6523438, 0.18774414, 0.8696289, 0.36499023, -0.9941406, -0.54785156, -0.16589355, -0.22961426, -0.8647461, -1.8789062, 1.3847656, 1.0185547, -2.4316406, -2.9824219, -4.1757812, 1.0634766, 0.6567383, -0.9223633, -1.9521484, -1.0449219, 0.36865234, 0.6616211, -0.62060547, -0.021133423, 0.5673828, 1.7070312, -1.1269531, 0.6826172, -2.5214844, 0.5097656, -1.5517578, 0.39404297, 1.3349609, 0.2244873, -0.25585938, 1.140625, 0.5756836, -0.94384766, -0.34277344, -1.3359375, -1.1982422, 2.0039062, 2.4921875, 1.578125, -1.5615234, 0.47436523, -1.6318359, 0.13977051, -2.1367188, 1.5205078, -0.10498047, 0.45483398, -0.013549805, 0.50683594, -0.5102539, -0.0027770996, 2.1445312, 2.2460938, 3.1171875, 1.2451172, -1.2851562, -0.58154297, -0.3708496, 2.7773438, 0.5083008, -1.6445312, 1.8691406, -1.4589844, 2.8828125, 1.4404297, -2.0605469, 1.4794922, -0.09851074, 1.5615234, -0.43432617, 0.049743652, -0.15698242, -1.4023438, 0.35351562, -1.2324219, 0.10522461, 2.5839844, 2.3261719, -0.87939453, -1.3808594, -0.33154297, -1.5634766, -0.43603516, -1.3564453, -1.4013672, 1.359375, -0.9794922, 0.006996155, 2.7910156, 0.06744385, -0.5761719, 1.2568359, 0.115234375, -0.26245117, 2.8398438, 1.6191406, -2.2050781, 0.6870117, 2.1835938, -0.50439453, 3.7207031, -0.18786621, -0.19494629, 0.6796875, -1.1298828, 2.5527344, -0.20239258, 0.68652344, 2.0234375, -0.9736328, 2.1953125, -2.5058594, 0.020050049, 2.640625, 2.6230469, 0.30981445, 1.0048828, 0.9614258, 4.4492188, -0.3256836, -2.7207031, 3.1621094, 0.6689453, 1.015625, 0.2902832, -0.056671143, 0.80126953, -0.81591797, 0.46411133, 3.2304688, -0.4855957, 0.30981445, -1.5205078, -2.2363281, 0.5620117, -1.8974609, -0.42041016, -1.4931641, 0.028427124, -1.21875, -2.015625, 2.4101562, -2.7363281, 0.12231445, 2.21875, -0.9765625, -0.37280273, -2.1289062, -0.39624023, 0.78125, -0.6513672, -0.86035156, 0.79589844, 0.60546875, 0.24255371, 0.4206543, -0.40795898, -0.35083008, -2.2148438, -0.75341797, 0.34887695, -1.3916016, -1.1318359, 1.1826172, -0.8041992, -1.6669922, 1.1367188, -1.4951172, -0.3076172, 2.6464844, -2.2636719, -0.08868408, -0.7680664, -3.5410156, -1.03125, 0.44677734, 0.3203125, -0.49951172, 1.9824219, 1.0957031, -1.9707031, -4.1953125, -0.13793945, -0.5097656, -1.8427734, 0.4855957, -0.2064209, 0.6323242, -0.74072266, -1.5791016, 1.5976562, -0.859375, -0.4152832, -0.6074219, 0.4152832, -3.1132812, 1.1435547, -0.3955078, 1.4560547, -1.0234375, -0.20251465, -3.2929688, 1.8837891, -1.2568359, -1.1318359, 5.5429688, 0.40722656, 1.5908203, -0.4025879, -0.49926758, 0.17297363, -1.4931641, -0.3479004, -0.37353516, -1.78125, -1.2929688, -3.3652344, -5.6601562, -0.91796875, -2.8808594, 0.34692383, -0.5366211, 1.1015625, -1.8603516, 0.9628906, -1.1445312, -0.7011719, -0.5151367, 0.63671875, -0.4560547, -1.9892578, -1.7265625, 0.578125, -0.10418701, 0.8588867, 2.5917969, 0.8666992, 0.29223633, 1.1699219, 1.8623047, -0.4724121, -0.062469482, -0.3564453, -2.390625, 0.8461914, 0.92041016, -0.5439453, -0.01940918, -0.8647461, 0.20581055, -1.7304688, -1.9521484, 2.7988281, 2.2207031, 2.671875, -0.54833984, -0.734375, 0.25463867, 0.9560547, 0.013183594, -1.0185547, 0.40698242, 2.890625, -3.28125, -1.2636719, 1.8583984, 0.9555664, -2.7226562, -0.21325684, 2.328125, -0.42163086, 1.578125, 1.0527344, 2.2480469, -1.9785156, -1.4609375, 4.1796875, 2.7949219, -0.19506836, -1.6992188, -0.6904297, -1.1533203, -0.85058594, 0.88720703, 2.7929688, 0.6123047, -0.63623047, 1.921875, 2.9238281, -3.15625, -0.06304932, -1.5136719, 1.1474609, 0.23962402, 2.65625, 1.0927734, -0.6796875, -0.87158203, -1.359375, -0.24291992, -2.3085938, 0.30615234, 0.62353516, 1.3164062, -0.36499023, -1.1513672, 0.69091797, 0.64501953, -1.8642578, 1.3583984, -0.69970703, 0.35742188, 1.8798828, 0.58984375, 0.98535156, -0.86865234, 0.99853516, -0.09765625, -3.0996094, 0.30029297, 0.06317139, -1.8964844, -2.2578125, -0.44799805, -0.89208984, -1.3740234, 1.5302734, -0.15917969, -1.4326172, -1.3925781, -2.078125, -0.74121094, 0.57373047, -2.2617188, 0.60253906, -0.109436035, -0.22509766, -0.3334961, 1.5117188, 1.9375, 1.1669922, -0.96240234, -0.008804321, -1.7597656, -0.18603516, -0.6225586, 0.03164673, -2.1425781, -0.7055664, 0.5644531, 1.3457031, 0.11767578, 4.5351562, -0.13293457, -0.38500977, -0.50927734, -2.734375, -0.59228516, -2.2167969, -4.0429688, 1.4765625, -1.9042969, -0.44482422, 3.8632812, -0.124816895, -0.19494629, 1.2080078, 1.3740234, -3.0605469, -1.9804688, 0.3725586, 1.5732422, -2.6113281, 0.024429321, 2.3320312, -0.17700195, -1.8662109, -1.5048828, 2.1621094, -0.28344727, 0.94677734, 0.2163086, -2.0996094, 2.2304688, 0.82958984, 0.038146973, 0.22717285, -1.4121094, 0.1809082, -0.82958984, -1.0507812, -1.9599609, 1.2470703, -0.44262695, 0.23132324, 0.78515625, 3.5664062, 1.2636719, -0.5566406, -0.22741699, 1.2324219, 3.5449219, -0.084472656, -0.8334961, -0.9121094, -0.13464355, -0.44335938, -1.0546875, 0.19165039, -1.0117188, -2.25, 0.11810303, -0.94970703, -0.6513672, 2.0292969, 0.81347656, -2.21875, 0.8613281, 0.7236328, -3.078125, 0.46728516, 0.5605469, 0.6982422, -1.2109375, 1.3994141, -2.4296875, 0.51708984, 0.04559326, -0.57128906, -2.9785156, 1.9658203, 2.2773438, 0.9550781, 2.6347656, -1.6230469, -1.1376953, -1.5, -0.13122559, -0.25073242, 1.640625, -0.05697632, 0.24536133, 1.3300781, 1.0927734, 0.033569336, 0.6665039, 1.4589844, -0.41601562, -0.54296875, 0.38110352, 0.24707031, -0.7207031, -2.6660156, -0.44970703, -0.5498047, 2.0820312, -1.7783203, -1.3349609, 1.0732422, 0.9916992, -2.2753906, -0.23400879, -0.7246094, 1.0654297, -1.3183594, -1.0595703, 0.45361328, 0.6816406, 1.1777344, -0.73535156, 1.4677734, 0.23547363, 0.76416016, -0.14294434, -0.14660645, -1.8349609, -2.015625, 1.9257812, 1.9277344, 0.96533203, 3.2285156, 2.0898438, -2.6992188, 0.86328125, 0.7026367, -1.1279297, -0.77978516, -0.8911133, 0.31933594, 1.2714844, 0.30615234, -0.3227539, 0.4609375, 1.1220703, -0.96240234, 1.7275391, -0.11071777, -0.95654297, -1.6083984, -2.671875, -3.3105469, -0.8798828, -1.3662109, -1.0107422, -2.0292969, 0.10003662, -0.84814453, 1.6533203, 3.140625, 0.42822266, 0.34472656, 2.4921875, -0.3984375, 0.8120117, -0.3022461, -2.9179688, -1.8095703, 1.5810547, 2.9472656, 1.8574219, 0.23339844, 0.9428711, 1.1542969, -1.9306641, -0.4885254, 0.93896484, 1.7871094, -1.6923828, 0.93408203, 1.9882812, -1.9580078, 0.12384033, -1.9257812, -0.2902832, -2.1933594, 2.296875, -0.6142578, -2.1445312, 0.43017578, -1.2421875, -1.4794922, -5.0234375, -0.43530273, 1.8408203, -0.21008301, -0.64208984, 0.0847168, -1.3554688, 0.54589844, 0.028823853, -0.328125, -2.4765625, 1.1835938, -0.09777832, -0.83691406, -1.7548828, 0.16796875, 1.5585938, -0.22167969, 0.5317383, -0.8432617, 0.24963379, -1.0322266, -1.2382812, 2.5742188, -1.8886719, -0.06500244, -0.48266602, -0.7973633, 1.2333984, 1.6962891, 0.97558594, -2.4726562, 1.7597656, -2.7363281, -1.0361328, 0.52783203, -0.75634766, 0.71972656, -0.81152344, -1.6054688, 0.5175781, 0.97021484, -2.0039062, -1.5234375, -0.9091797, -0.044036865, 0.1348877, 1.1044922, -0.27001953, 1.5615234, 0.21374512, 1.9931641, 1.8769531, -0.052581787, -2.4101562, -1.9443359, -1.7929688, -0.0028591156, -0.7470703, -1.3164062, -0.69091797, 0.7558594, 2.7929688, -0.94140625, -0.9458008, 0.073791504, -1.6474609, -0.2932129, 1.9794922, -2.6269531, 4.8203125, 1.6591797, -0.7363281, -2.7578125, -2.234375, 1.9130859, -1.453125, -0.59375, -2.3398438, 0.24841309, -0.9511719, 0.7055664, -0.7114258, -0.022079468, 1.7783203, 1.8447266, -1.2822266, 1.1337891, 2.9765625, -0.98046875, 0.7675781, 0.9379883, 0.57958984, -1.1904297, 3.1894531, 0.95654297, -0.8334961, 1.4560547, -0.87060547, 1.7695312, -1.9882812, -0.18786621, -0.16381836, -1.0722656, -1.5810547, -1.4365234, -2.3300781, -3.3886719, 1.2460938, 2.2050781, 1.1435547, 0.52197266, 2.7753906, 0.75439453, 0.5991211, 2.4082031, 2.8066406, -0.49682617, 1.0058594, -0.83740234, 2.0332031, 2.8828125, -1.4472656, 0.33740234, 2.3398438, 1.5273438, -1.3203125, -0.63916016, -0.17675781, 1.9267578, 1.1767578, 1.0214844, 3.5195312, 2.3125, 3.3242188, -0.014816284, 2.46875, 2.390625, 1.9511719, -0.77978516, -1.0810547, 1.8535156, -0.21179199, -1.4736328, 1.5878906, -2.4804688, -0.32495117, -1.4462891, 1.7871094, 0.93408203, -4.15625, 2.9160156, -1.6884766, -0.7807617, 0.023147583, -0.83984375, 0.23413086, -1.0683594, -0.6821289, -0.1697998, 1.7958984, -0.87158203, -0.67041016, -0.31567383, 0.5649414, 0.8261719, -3.0761719, -0.28125, -1.1337891, -1.2929688, 0.61621094, 1.4023438, 2.1816406, 1.2197266, 1.0087891, 0.5727539, 1.5957031, 0.7163086, 0.2841797, -0.3317871, 0.79589844, 0.46679688, 3.4941406, 0.4873047, 2.8710938, 0.018310547, -2.5957031, -0.71191406, -2.4707031, 3.1679688, 3.1386719, 1.2617188, 1.9169922, -1.9814453, 1.0820312, -0.16845703, 0.25952148, -1.1464844, 3.4257812, 0.17700195, -2.7597656, 0.010406494, 1.2714844, 0.4091797, 2.0390625, 0.95654297, -1.2490234, 0.6098633, -0.3256836, 1.2089844, 1.9726562, -0.5205078, 0.86865234, 0.52441406, -1.2099609, 3.8339844, -0.01940918, -1.2744141, -0.72314453, 2.9394531, 2.1972656, 1.0107422, 0.09039307, -1.8847656, 0.84033203, -0.5986328, 0.6816406, 1.3125, 0.021697998, -0.74902344, -0.93603516, 0.59716797, -0.41723633, -0.18981934, 2.2304688, -1.109375, -1.7695312, 1.1445312, 0.6484375, -2.5078125, 1.1318359, 0.8798828, -0.18200684, 1.1865234, -0.26171875, 1.0488281, -0.6425781, -2.015625, -0.09051514, 0.35498047, 2.5058594, -1.3642578, 0.68896484, 0.5541992, 0.5341797, -0.62158203, 1.9072266, -1.0830078, -1.4375, 0.57470703, -1.6162109, -0.10089111, 2.9121094, -2.3125, 1.2753906, -0.13110352, -2.7851562, -2.2636719, -0.26171875, 0.25634766, 1.2392578, 2.2832031, -1.1210938, 1.9726562, -0.8701172, -2.9472656, -0.62402344, -2.75, 1.5175781, 1.0634766, -1.0253906, 0.090026855, 0.29663086, 0.94433594, -1.0585938, -0.43774414, -0.072143555, -0.52441406, 0.96484375, -1.9853516, 2.1210938, 0.23071289, 0.23840332, -0.7792969, 2.3183594, 2.5605469, -0.89746094, 0.52441406, 0.44873047, -0.34838867, -2.5214844, -0.07299805, -0.6064453, 2.3964844, -0.49951172, 0.9316406, 1.3310547, 1.1533203, -0.030090332, -0.09063721, -3.3710938]}, "B07D1G6QQ1": {"id": "B07D1G6QQ1", "original": "Brand: MCP Island Grills\nName: MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover\nDescription: Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.\nFeatures: 304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section.\nComes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36\" skewer and motor.\nLarge 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free.\nPower Req: 110v/60hz. Overall Size: 154\" W (122.5\" W without side tables installed), 24.75\" D x 35.5\" Countertop H. Overall Height 52\" (Top of faucet head). Main Grill Section: 55\" W x 46\" H (overall) x 26.5\" D (Including knobs). Countertop 35.5\" H x 24.75\" D.\nRefrigerator/Wine Cooler Section: 49.5\" W (with Side Table) or 33.5\" W (without Side Table) x 25\" D x 35.5\" H. Sink Section: 49.25\" W (with Side Table) or 33.5\" W (without Side Table) x 28\" D x 35.5\" Countertop H or 52\" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.\n", "embedding": [-1.3076172, 0.77197266, 1.5205078, 0.5029297, 1.7099609, 0.48291016, 0.6513672, -2.7851562, 0.5908203, 1.5751953, 0.47607422, 0.062683105, -0.86865234, -1.9716797, 0.9326172, 1.0644531, -0.1071167, -0.26000977, 1.9248047, -0.1730957, 0.97216797, 1.2285156, 2.1386719, 0.83691406, 1.2666016, 1.0322266, 3.1699219, -2.3144531, 0.64501953, 0.20690918, 0.9560547, 1.1416016, -0.51220703, 2.1289062, -2.9628906, -1.2646484, -1.6552734, 1.6777344, -0.51220703, 3.015625, 0.008049011, -1.3027344, 1.5205078, 0.36254883, -4.21875, -1.0507812, 0.72021484, 1.7236328, -1.2138672, -2.5117188, 0.9379883, 1.2724609, -0.15490723, 0.1182251, -1.9042969, 0.44604492, -0.4650879, -2.90625, 1.2832031, -0.08441162, -0.14538574, 0.5371094, -2.0917969, -0.08862305, -2.9453125, -2.359375, -0.66503906, -0.117614746, 0.9038086, 0.09887695, 1.3427734, 2.3945312, -2.0351562, -0.65625, 0.30297852, -0.22094727, -2.2480469, 0.5527344, 2.5644531, -0.51171875, -2.1035156, 1.5693359, 0.98046875, -1.7011719, 0.8183594, 1.5136719, -2.1269531, 0.44555664, 0.83691406, 0.11248779, -1.8603516, 1.8798828, -3.7539062, -3.4433594, 0.09667969, -2.6464844, 0.68359375, 1.0048828, 0.94433594, 2.234375, 0.6977539, 0.2368164, -0.33642578, -1.3310547, 0.026123047, -1.0429688, 1.3457031, 0.28564453, -3.0625, 0.13879395, -3.1289062, 1.7011719, 2.4921875, 0.20385742, 1.5917969, -0.022125244, 0.6723633, 2.2011719, 1.6015625, 1.2324219, 2.1445312, 0.13696289, 0.05596924, -0.6801758, 0.062072754, 0.29077148, -1.4365234, 2.0371094, 4.2382812, -0.83935547, -0.7451172, -0.17248535, 1.3291016, 0.56347656, -1.9287109, -1.7695312, -1.9052734, -1.5078125, -3.609375, 1.0634766, -0.7709961, 1.4902344, 1.7529297, -0.4814453, -3.96875, -1.3222656, -0.34936523, 0.30810547, 0.87646484, -1.5009766, 0.3449707, -2.9746094, 2.015625, -0.64746094, 0.32421875, -1.3613281, -0.029006958, -2.6503906, 3.0976562, -1.2519531, 0.68359375, -2.9960938, -2.6503906, 1.5654297, -0.77978516, -2.0332031, -1.3828125, 0.99316406, 0.24658203, 0.92333984, -0.37402344, -2.6523438, 0.9277344, 0.29467773, 1.0126953, 1.0478516, -0.5292969, 1.9521484, 0.31201172, 0.47460938, -0.2866211, -2.2070312, 1.0341797, 2.0449219, 0.6459961, -0.95410156, -0.57177734, -0.045837402, 0.9404297, -1.3691406, 0.48413086, -1.9072266, -0.10064697, 0.87109375, 1.1328125, -1.8251953, -2.6132812, -1.0136719, 1.1230469, -0.6088867, 0.59814453, -0.67529297, -1.2158203, 0.70410156, -2.0078125, -2.4589844, -1.4384766, -1.5439453, 2.5722656, 2.1992188, 2.0566406, -1.4492188, 0.34960938, -1.4804688, 0.5473633, -3.0546875, 1.6289062, -0.8227539, 0.36816406, 1.5253906, 0.7451172, 1.2080078, -0.875, 3.1972656, 0.2680664, 1.5546875, 0.43579102, 0.9433594, -2.5664062, 0.6010742, 2.7128906, 0.10626221, 0.8129883, 0.7133789, -0.60839844, 1.2832031, 0.66015625, -3.3574219, -0.26000977, 0.38330078, 0.09649658, -1.7880859, -0.10144043, -1.6875, 0.48217773, 3.4101562, -3.6074219, 2.1894531, 1.6601562, 0.55615234, -2.4609375, -1.3720703, 0.13928223, 0.10229492, -0.13146973, 0.38354492, -0.86035156, 0.34204102, -2.8789062, -2.2304688, 1.3623047, 0.06817627, 0.07165527, 1.0009766, 0.36645508, -1.9121094, 2.578125, -0.5917969, -4.9179688, -1.4521484, 0.63183594, 0.23999023, 1.8466797, -0.21289062, 0.57177734, 0.19543457, -0.20568848, 2.0878906, -0.03640747, 1.3964844, 0.8930664, 0.36083984, 2.7441406, -3.4980469, 0.12805176, -0.6074219, 0.21948242, -1.0908203, 0.36108398, 0.69970703, 4.40625, -1.1542969, -3.1289062, 1.3320312, -0.60546875, 0.82666016, 0.41259766, -2.2714844, -0.5029297, -0.6503906, 1.140625, 0.4152832, -1.1035156, 1.1328125, -2.2597656, -2.2558594, 1.1035156, -1.9521484, 0.40356445, -0.99365234, -0.011238098, -0.45898438, -1.8671875, 1.3154297, -0.08441162, -2.5429688, 2, -1.7890625, 0.6484375, 0.43652344, 1.1289062, 0.32885742, -2.9804688, -1.0302734, -1.5556641, 0.7763672, -1.1640625, 0.56152344, 0.54003906, -2.0527344, 2.0410156, -1.2607422, 2.2910156, -2.3242188, -1.5332031, -1.6240234, -3.2460938, -0.5410156, -0.5029297, -0.37036133, -0.5024414, 1.0742188, -2.0742188, -0.96875, -1.0029297, -2.4726562, -1.78125, -0.52001953, 1.15625, 2.4550781, -0.023010254, -1.8066406, 0.80859375, -6.5273438, 0.60253906, -0.8432617, 0.1574707, 1.1777344, -1.4990234, 0.8339844, -2.1210938, -0.074157715, -1.1025391, -0.8466797, 0.5019531, -0.07458496, 0.009277344, -3.5761719, 0.04522705, -4.1015625, 1.1806641, -2.1171875, 1.0839844, -3.4980469, -0.13977051, 1.2148438, -1.9794922, 3.0800781, -0.047821045, 0.38061523, -0.35351562, 1.9072266, 1.5078125, -0.46289062, -2.1503906, -1.3320312, 0.99560547, -2.4101562, -2.0195312, -1.1435547, 0.5751953, -0.8457031, -1.2988281, -0.37817383, 1.9589844, -1.5166016, 1.3837891, -1.5976562, -1.1865234, -0.4963379, 1.0800781, -1.4404297, -0.24768066, -1.8007812, -0.29370117, 0.17895508, -1.6162109, 0.22924805, 2.0039062, -1.2529297, 1.46875, 0.67333984, -1.0996094, 0.11053467, -0.89208984, -4.578125, 1.4101562, 0.90478516, -2.9667969, 1.0771484, 0.20678711, -1.8984375, -3.53125, -1.5283203, 1.34375, 0.7265625, 2.4960938, -0.25024414, 1.3330078, 2.0742188, 0.51708984, 0.6191406, 0.3371582, 0.6953125, 2.7226562, -1.3574219, -0.6333008, 1.4941406, 3.0449219, -2.0273438, -0.023040771, 0.98095703, 0.92578125, 2.5058594, 1.5820312, 2.5585938, 1.5087891, -1.1142578, 0.65966797, 0.12231445, 1.1875, -0.35620117, -2.6699219, 1.4160156, -1.0859375, 1.6269531, 0.57958984, -0.107543945, 1.8046875, 1.2939453, 0.9819336, -2.3417969, -0.21936035, 0.45166016, -0.43359375, -1.7724609, 3.0839844, -1.2753906, -0.18737793, 1.1240234, 0.5854492, -0.25048828, -1.7685547, 0.8129883, 1.6972656, -0.2548828, 1.0253906, -0.16625977, 0.6425781, 0.7290039, -0.8251953, -1.3613281, -0.8071289, -1.0126953, 2.0332031, -1.6298828, -1.4384766, -1.2910156, 1.5048828, -1.0664062, -2.7285156, -0.34448242, 3.0078125, -1.8574219, -1.0283203, -0.5058594, 1.5654297, -1.6972656, 2.4804688, -1.1367188, 0.8701172, 0.39257812, -1.8876953, 1.4677734, 0.09893799, 0.6357422, 0.79541016, 0.42456055, 2.0839844, 1.1767578, -0.1348877, 1.9345703, 0.60302734, -2.859375, -1.1484375, -2.5683594, 0.96728516, -0.5415039, -0.2763672, -1.3662109, 3.7597656, 1.2939453, 3.5703125, -1.4853516, 3.2285156, 0.64697266, -1.7802734, 0.99121094, -2.6640625, 0.8515625, -2.8984375, -3.6679688, 0.9550781, -0.107177734, 0.46728516, 2.6132812, 1.5058594, -0.5571289, 2.015625, 0.11907959, -4.1953125, -0.9926758, -0.43408203, 0.89501953, -0.26757812, -0.28125, 1.5898438, -0.036102295, -2.6035156, -0.5620117, -0.7236328, 0.7739258, 2.2226562, 1.0419922, -2.390625, 2.7792969, 0.20788574, -0.6982422, -1.2460938, 0.0074806213, 1.4990234, -0.91259766, -0.31689453, -1.0908203, 2.515625, -0.13928223, 0.4111328, 0.3256836, 0.45092773, -0.49414062, -0.48291016, -1.5058594, 0.85009766, 2.5449219, 0.04827881, -0.5566406, -1.9208984, -0.0927124, 2.0722656, 0.66845703, 0.43701172, 0.081970215, -3.5253906, -0.7084961, 0.7553711, 0.7915039, 2.3417969, -0.68652344, -1.2490234, -0.45898438, 0.62158203, -0.6801758, -0.8300781, -0.026306152, -0.46655273, -1.3671875, 0.7089844, -1.7011719, 1.3544922, -0.83740234, -1.5273438, -2.3027344, 2.0429688, 2.5058594, 2.6210938, 1.6464844, -1.9306641, -1.4042969, 0.8339844, -0.9946289, 0.46142578, 0.28735352, -1.3232422, -0.045928955, -1.0273438, 0.10192871, -1.3457031, 0.27978516, 0.23168945, -1.3154297, -0.4267578, -0.8720703, 0.47680664, -1.015625, -0.07696533, 0.6191406, -0.7519531, 3.6582031, -3.1484375, 1.2978516, 1.6308594, 1.2919922, -2.6386719, 0.8232422, -2.4941406, 2.4335938, 0.97998047, 1.9433594, 0.17749023, -1.3964844, 0.22009277, 0.27856445, 1.5576172, -0.23522949, 0.20727539, -1.2363281, -0.47973633, 0.14208984, -2.5, 2.3710938, 4.6992188, 0.5546875, 1.2314453, 0.7607422, -3.3945312, 2.3457031, -0.3864746, -1.5009766, 0.35498047, -0.3359375, -0.2536621, 1.6074219, 1.1054688, -4.3398438, 0.6713867, 3.1328125, -1.2109375, 0.0050315857, -0.109802246, -0.67871094, 1.0205078, -1.8603516, -1.1904297, 1.8193359, 0.29248047, -1.171875, -2.3515625, -0.41308594, -1.0839844, 1.46875, 3.1171875, -2.15625, -1.0136719, 2.2519531, 1.2099609, 1.1337891, -1.1884766, -1.3388672, -1.4609375, 0.14123535, 4.890625, 0.41259766, 0.8959961, 0.84277344, 2.6425781, -1.8652344, 0.13269043, -2.5, 2.7109375, -1.9335938, 0.86865234, 1.8994141, -2.8964844, 0.31835938, -2.4453125, 0.41918945, 0.28027344, 3.0859375, 2.2421875, -0.5390625, 0.7368164, -0.23864746, -1.8828125, -4.1015625, -1.5410156, 0.62597656, -0.5878906, -0.7006836, 0.53759766, -1.7744141, -0.14807129, -0.5390625, -0.15942383, 0.068115234, 0.5805664, -0.4567871, -1.6904297, -1.4599609, 0.25634766, -1.6582031, 0.30273438, 0.44873047, -0.9760742, 0.7265625, -5.2226562, 1.1025391, -0.10614014, -0.32080078, -0.5756836, 2.4179688, -0.8413086, 0.5756836, -0.7939453, 1.3261719, -1.6083984, 2.0917969, -3.2539062, -0.16491699, 0.7573242, 0.24279785, 1.2460938, 0.0058631897, -0.3791504, -0.6508789, -2.6347656, 1.4433594, -1.1083984, -1.15625, 0.45458984, 1.0126953, -0.32739258, 0.27001953, -0.1451416, 0.8105469, 1.0742188, 1.5332031, -0.72558594, -0.83251953, -2.0410156, -1.5839844, -0.14355469, -2.2636719, -0.80322266, -2.2910156, -0.17224121, 2.8652344, 0.8847656, 0.8466797, 1.7412109, 0.7597656, -0.47631836, 0.68896484, -1.3808594, 1.9189453, -0.37670898, -2.7011719, -1.1328125, -2.0136719, 0.20947266, 0.9604492, 1.0087891, -0.53466797, -1.7734375, -1.6621094, 0.59765625, -0.015037537, 1.515625, 3.0957031, 2.3457031, -2.5078125, 1.2041016, 3.6152344, -0.40893555, 1.4335938, 1.1357422, 1.5458984, 0.1472168, 4.6601562, -1.9648438, -2.8671875, 2.5820312, -1.9091797, 0.5341797, -0.64941406, -3.3027344, 0.46826172, 0.07519531, 1.2607422, -2.3222656, -0.8964844, -1.9228516, 1.9150391, 0.21728516, 0.24853516, 0.46240234, 0.7861328, 2.9667969, 2.734375, 0.9082031, 1.1914062, -0.4873047, 0.90722656, 0.24621582, 0.49926758, 1.0019531, 0.023147583, 0.5541992, 1.8476562, -0.23925781, -1.5253906, 3.4082031, 1.2568359, 0.3737793, 0.28198242, 0.60302734, 2.9042969, 2.2714844, 3.0351562, 1.2060547, 2.203125, 2.46875, 0.28979492, -0.94628906, 1.5517578, 3.296875, 1.0839844, -1.6601562, 2.2246094, 0.5864258, -2.3398438, 0.31933594, 2.0527344, 1.5175781, -1.3105469, 2.7128906, -0.9116211, 0.1640625, -1.7011719, -0.08709717, -0.61279297, 0.5180664, -1.6826172, 1.0185547, 2.375, 0.6196289, 1.6523438, 0.35864258, -0.5205078, -0.1083374, -3.4257812, 1.0878906, 1.8603516, -1.8388672, -0.13024902, 2.1875, 2.4160156, 1.2001953, 0.3178711, 1.7958984, 1.0908203, 2.0605469, 0.14575195, -0.30029297, 1.1748047, -0.17883301, 2.8808594, -0.27416992, -1.0537109, 0.62060547, -0.097717285, -3.0273438, -4.375, 2.1757812, 1.3886719, 1.6376953, 0.56884766, -2.8378906, 0.7392578, 0.23925781, 2.8496094, -1.6210938, 1.8564453, -0.46044922, -3.5253906, -2.0039062, 1.125, 1.6210938, 1.2841797, -0.7001953, -1.4580078, 1.7011719, -0.48535156, 1.6816406, 3.640625, 3.6464844, 0.99365234, -0.9038086, -0.3630371, 3.6503906, 2.4121094, 0.12646484, -0.8696289, 0.53808594, 1.5898438, 0.31152344, -0.14819336, -2.171875, 1.234375, 1.078125, -0.45483398, -0.90722656, -1.4248047, -0.2866211, 0.83935547, 0.5410156, -0.7626953, -0.5654297, 0.79345703, 2.4921875, -0.26245117, 1.3222656, -0.35961914, -1.4414062, 3.1503906, 0.5722656, -1.9472656, 0.64941406, -0.42285156, 2.0214844, 2.1660156, -1.7089844, 1.0136719, 0.23010254, 0.47192383, -0.4086914, 0.7475586, -1.6542969, 0.69189453, -0.6225586, -0.119384766, 0.3076172, -2.7265625, 2.2539062, 0.38012695, -0.140625, 3.1035156, -0.038391113, -0.92626953, -3.9609375, 0.9941406, -1.6738281, -1.0722656, -0.40820312, 1.4736328, 5.6796875, 0.42626953, 0.79003906, -0.52246094, -3.5527344, 0.70166016, -1.3164062, 2.8847656, -0.8779297, -0.59033203, -0.0102005005, -0.8515625, 2.5078125, -0.91748047, -2.484375, -0.82470703, -0.38427734, 2.2226562, 0.55322266, 1.2480469, -0.06298828, -0.43359375, 1.0302734, 2.7988281, 3.078125, -0.052978516, 0.82373047, 3.8105469, 1.5947266, -1.8779297, 1.4355469, 0.5205078, 0.5786133, 0.7036133, -1.1611328, 0.6928711, -0.87353516, -0.42529297, -1.2226562, -2.6796875]}, "B07S1KMJQH": {"id": "B07S1KMJQH", "original": "Brand: Best Choice Products\nName: Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown\nDescription: Specifications:
          Overall Dimensions: 52\"(L) x 34\"(W) x 24.75\"(H)
          Dimensions w/ Glass Partition: 52\"(L) x 34\"(W) x 30.25\"(H)
          Glass Partition: 27.75\"(L) x 12\"(W) x 5.5\"(H)
          Weight: 73 lbs.
          Table Material: Aluminum, Wicker
          Cover Material: 300D Oxford Fabric
          BTU: 50,000
          Assembly required (with instructions)
          NOTE: Works with standard 20-pound propane tanks

          Package Includes:
          Fire pit table
          Glass rocks
          Glass wind guard

          BCP SKU: SKY5268

          \nFeatures: ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop\nGLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze\nCONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU\nENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire\nDURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52\"(L) x 34\"(W) x 24.75\"(H)\n", "embedding": [-1.2011719, 2.4394531, 1.2138672, -1.7558594, 1.7841797, 1.9550781, 0.8305664, -2.7675781, 0.20141602, 2.234375, -1.1679688, 0.85498047, 0.12658691, -5.3398438, 0.9423828, 0.7607422, 0.060516357, 0.9248047, 1.7470703, -0.0758667, 2.5976562, -0.5917969, 1.7939453, -0.23913574, 1.7548828, -0.13244629, 2.890625, -3.765625, -1.0292969, -1.5478516, 1.9423828, 2.0839844, -0.4729004, 2.6582031, -2.5605469, -1.7001953, -0.23217773, 2.1328125, -1.6855469, -0.038909912, -1.7246094, -1.7070312, 4.3515625, 1.6806641, -2.0449219, 1.4960938, 0.64697266, -0.5004883, 0.69873047, -2.5117188, 1.0751953, 1.4521484, 1.3007812, -0.24572754, -2.4296875, 2.875, -1.3652344, -2.7929688, 0.8330078, 0.9604492, 0.89990234, -0.27441406, -1.3261719, 1.6953125, -1.171875, 1.8330078, 0.039001465, 0.4152832, 0.44091797, 1.8251953, 1.1972656, -0.45385742, -0.86376953, 1.4882812, 0.49682617, 0.06317139, -3.0449219, 2.7910156, 3.0742188, -0.9897461, 1.5039062, 3.0175781, 0.6958008, -0.9423828, 0.17614746, -1.3759766, -1.2675781, -0.6699219, -0.077819824, 1.5048828, -0.7084961, 4.1171875, -2.046875, -3.2285156, -0.26342773, -2.0683594, 0.5385742, -1.0097656, -1.7373047, 0.33081055, 1.1220703, 0.036315918, -0.6767578, 1.1474609, -2.1503906, -0.84521484, 1.078125, 0.67285156, -0.59375, -0.3083496, -1.8300781, 0.059265137, 0.91259766, -0.9091797, 0.19628906, 1.9335938, 0.77685547, 1.9697266, 2.9882812, 1.0429688, 5.1171875, 0.45239258, -0.12963867, -1.0244141, 1.0107422, 0.07305908, -1.2216797, 1.5029297, 0.8779297, -2.1347656, 0.14025879, -1.3349609, 1.7060547, 0.72558594, -2.3300781, -0.63183594, -1.2089844, -1.5, -5.2148438, 0.3474121, -2.2617188, 0.875, 0.42236328, 0.6699219, -3.2324219, 0.37475586, -1.3125, 2.6289062, -1.4453125, -2.1875, 1.2265625, 0.048736572, 0.6533203, -1.5585938, 1.3291016, -1.7490234, 2.0898438, -2.3378906, 3.7402344, 1.7675781, 1.4462891, -1.8769531, -0.25830078, 2.1464844, -0.55810547, -0.11413574, 2.4375, 0.5756836, 0.85791016, 0.48242188, -0.24060059, -0.8979492, 0.78515625, 1.5527344, 0.53222656, -0.0031337738, 0.4741211, 2.2597656, 3.53125, 0.13183594, -1.1738281, -2.2148438, 0.10913086, 1.2851562, -0.98339844, -3.046875, -1.2490234, -1.9033203, 0.3178711, -2.0527344, -0.24853516, -0.36157227, -1.5888672, -0.1373291, -0.9277344, -2.4355469, -3.5820312, -1.3320312, 1.3320312, 1.4267578, -1.2666016, 0.26123047, -2.1953125, 0.4868164, -3.5585938, -2.3964844, -1.8574219, 1.9121094, 1.5693359, -0.0032730103, -0.26831055, -0.9790039, 1.8652344, 0.62939453, 0.33984375, -1.0615234, 2.0371094, 0.2763672, 1.3359375, 0.30419922, 0.034118652, 0.096069336, 1.4169922, 2.7558594, 1.6210938, 1.5390625, 0.6479492, 0.40039062, -0.8901367, -2.2851562, 2.2382812, 0.8808594, -0.1472168, 1.3945312, -1.5761719, 3.6679688, 1.8212891, -1.0605469, 1.3740234, -1.4501953, 0.6328125, -0.96728516, -1.0449219, 0.6870117, 0.43066406, 0.2265625, -0.6923828, 1.7041016, 2.1503906, -0.10064697, -1.0048828, -0.33691406, 0.5805664, 0.3725586, -0.33764648, 1.3652344, -0.58251953, -0.23278809, 0.7265625, -1.8632812, 0.06689453, 0.24450684, -0.4350586, 0.2277832, -0.6308594, -1.9707031, 1.5058594, 1.1464844, -3.8378906, -0.3779297, -1.109375, -0.30395508, 2.4589844, 0.8901367, -1.0839844, -0.3269043, -1.9716797, 1.7304688, 0.19311523, 2.1347656, -0.21032715, -0.9238281, 2.5878906, -1.3232422, 0.14465332, 0.7836914, 2.4042969, 0.25512695, -0.43945312, 0.4453125, 4.0273438, -0.5473633, -2.0761719, 2.0664062, -0.3581543, 0.4350586, 0.6611328, -0.0848999, 0.85009766, 0.19140625, 1.1806641, 2.6054688, 0.17541504, 2.0117188, -3.0722656, -0.023223877, 0.1307373, -3.8125, 0.26513672, -0.29101562, -0.6875, -1.9794922, -0.18005371, 1.2724609, -3.1875, -1.6875, 2.234375, -2.5058594, 1.4150391, 0.004749298, -0.29174805, 1.6259766, -2.3789062, -1.0400391, -0.51123047, 1.9414062, -1.4609375, -0.6201172, -1.0351562, -0.06347656, -1.0869141, -1.0185547, 2.5449219, -3.2949219, -0.9628906, -1.8476562, -1.4267578, -0.21594238, -0.43310547, -1.5146484, 0.18286133, 0.50878906, -2.2753906, 1.5107422, -0.6533203, -2.4550781, 0.6113281, 2.140625, -2.46875, -0.3762207, 0.16577148, 1.9580078, -1.0517578, -3.2421875, 0.14477539, 1.3603516, 0.68847656, 1.3701172, 0.2479248, -0.7236328, -1.7509766, 1.3779297, 1.8134766, -0.97998047, 0.36254883, -1.6152344, -1.3662109, -4.8125, 0.8144531, 0.26416016, -1.1728516, 0.47021484, 0.44799805, -2.5078125, -0.76220703, 1.1308594, -1.1865234, 5.015625, 0.76708984, 2.6972656, -0.87109375, -1.15625, -0.21362305, -0.36889648, -3.8847656, 0.91259766, -0.107666016, -0.38330078, -3.3710938, -2.3574219, 0.43896484, -2.5605469, -1.4111328, 0.010444641, 0.6069336, 1.2832031, 0.06524658, -2.3300781, -0.13977051, -1.7246094, 2.3085938, 1.0058594, 0.5136719, -2.171875, -0.8120117, -1.5488281, -0.5444336, -0.35595703, 2.4765625, -1.3046875, 1.6679688, 2.1953125, -0.5654297, 1.2070312, -0.093933105, -2.8964844, 0.93066406, 4.7539062, -0.17407227, 0.95703125, -1.3339844, -0.44311523, -1.7783203, 0.8925781, 2.7167969, 2.1269531, -0.058563232, -0.5288086, 0.9824219, 1.0996094, -0.46240234, 0.33325195, 0.82910156, -0.24572754, 3.53125, -3.5800781, -1.1123047, 1.3144531, 3.2714844, -3.5273438, -0.93652344, 0.7495117, -0.8671875, 0.5209961, -0.9980469, 0.008468628, 1.0517578, -0.08758545, 1.4726562, -0.18640137, 3.8007812, 0.7397461, -0.4814453, 0.6489258, -0.058624268, 1.8183594, 1.6113281, 1.3027344, 0.22558594, 2.1992188, 0.45410156, -2.8925781, 0.9663086, 1.3574219, 1.6083984, -0.17297363, 1.3300781, -1.1435547, -0.38378906, 0.36816406, -0.046447754, 1.0605469, -2.2304688, -0.7890625, 1.0361328, 1.0058594, -0.9277344, -1.4375, 0.1315918, 0.40600586, -3.1191406, 1.1152344, -0.51220703, 0.19055176, 0.1227417, -2.4238281, 0.67333984, -0.5078125, 2.8378906, -0.22607422, -3.3652344, -0.3203125, 1.7128906, 0.27685547, -1.3925781, 0.3239746, -2.0429688, -1.5146484, 4.6328125, 0.23413086, -0.7397461, 0.20825195, -1.5185547, 1.8007812, 1.9023438, -0.9584961, 0.20178223, 0.85498047, -1.0693359, -0.62109375, 1.1757812, 0.52490234, -0.5419922, -2.5898438, 1.2822266, 0.11541748, -0.86035156, 2.7792969, -3.8007812, -1.2255859, 1.5410156, 0.22131348, 1.4345703, 0.14770508, 2.2460938, 0.375, -1.1904297, 3.0546875, -0.77001953, -0.45922852, -1.015625, -5.4414062, 0.13928223, -1.9550781, -0.49975586, 1.5039062, -0.81884766, 0.6098633, 0.7133789, -0.60791016, -3.3808594, -1.3554688, -2.2441406, -0.6479492, -5.1640625, -1.1728516, -0.63183594, -1.5849609, -1.1552734, -2.1328125, 0.8227539, 1.9111328, 0.55908203, 1.9765625, 0.017868042, 2.5488281, -2.5664062, -0.019256592, -0.30908203, 1.125, -1.0556641, -2.1621094, 0.2927246, -1.5722656, 3.4316406, 0.8769531, -1.6269531, 2.6464844, 2.7402344, -0.2841797, -0.8286133, 1.1660156, 0.36376953, 4.2109375, -0.21936035, -3.5800781, -0.05871582, -0.92626953, 0.6479492, -0.0014791489, -1.5009766, 1.7109375, -1.640625, -0.6040039, 0.5175781, 1.84375, 0.5004883, 0.09857178, -4.8046875, -0.12475586, -0.8691406, -1.7353516, -2.0527344, -1.7431641, -0.50439453, -1.0410156, 0.19274902, -2.6308594, -0.016082764, -0.6220703, -2.1757812, -0.7441406, 3.3007812, 1.5078125, 2.9765625, 4.2578125, -2.1992188, -0.056854248, 2.9765625, -1.0957031, 0.30078125, 2.0175781, 1.2773438, -0.5498047, 1.1289062, 0.5571289, -1.9228516, -2.1523438, 1.0957031, -2.1816406, -0.5776367, -0.17224121, -1.1513672, -0.9423828, 0.03668213, -0.5214844, -1.8027344, 1.4589844, -3.21875, 0.122924805, -0.5620117, 0.71191406, -1.5302734, 0.31860352, 1.1152344, -0.27685547, 1.4921875, 2.4296875, 0.8227539, 1.203125, 2.6796875, -0.53515625, 2.4355469, -0.95214844, 0.41088867, -0.64941406, 0.2397461, -1.5039062, -1.5351562, 1.9453125, 1.9648438, -0.7705078, 3.1113281, 0.5878906, -2.5644531, 3.2871094, 1.2089844, -1.0302734, 0.36889648, 0.07556152, 0.0715332, 0.46020508, -0.5830078, -2.15625, -0.43603516, 1.1308594, -1.1376953, 2.0625, 0.07800293, -1.2744141, 1.5839844, -1.796875, -0.17712402, 0.029159546, -1.25, -2.109375, -1.6738281, 0.25708008, -1.4560547, 0.7104492, 2.4199219, -1.0058594, -0.9980469, 1.8740234, 1.3994141, -0.17053223, -0.7163086, -0.9291992, -0.76708984, 0.13781738, 0.65234375, 1.2558594, 2.2148438, -1.7041016, 1.7138672, -1.7333984, -0.1237793, -2.3769531, 2.5097656, -2.28125, 0.1394043, 2.125, 1.3378906, 1.2392578, -3.2929688, 1.3828125, -0.53759766, 0.4921875, -0.6040039, 0.46533203, -0.7651367, -1.4248047, -1.8134766, -2.421875, -0.56933594, -1.4921875, -2.1425781, -0.32714844, -1.4980469, -0.40844727, -1.2705078, -0.7651367, -0.7319336, -0.7705078, -0.76708984, -1.0488281, -1.1582031, -1.09375, 1.1875, 0.70947266, -0.17211914, -0.40234375, -0.6796875, -1.3925781, -3.6035156, 0.17138672, 2.1347656, -1.2304688, 2.1855469, 1.5439453, -1.9130859, 2.3320312, 2.9511719, 0.008178711, -0.1875, 1.6552734, -0.35424805, -0.18493652, 2.1679688, -2.4570312, 2.1757812, -0.9345703, -2.0585938, 1.0537109, -1.0683594, -0.68652344, -1.0605469, 2.1757812, -0.07531738, 0.7216797, 1.15625, -0.66503906, -0.34204102, 0.23693848, 3.3144531, 2.8515625, -2.8457031, 0.0019264221, -2.3378906, -1.6533203, -2.078125, -3.4785156, -0.96435547, 0.11590576, 0.12310791, 1.2773438, 0.19250488, 1.3730469, 2.4492188, 0.52685547, -1.5195312, 0.8828125, -0.35620117, 2.6191406, 1.8544922, -1.9794922, -3.140625, -1.2119141, 0.02911377, 1.1962891, 0.72753906, 0.041412354, -0.91259766, -2.7089844, 0.31347656, -0.19165039, 0.6933594, 2.0058594, 1.1621094, -1.4833984, 0.09661865, 1.0458984, 0.6430664, 1.9013672, -0.7705078, 1.5791016, -0.51464844, 1.9912109, 1.8466797, -1.2285156, 1.3828125, -1.1884766, 0.8720703, -1.1806641, -0.87890625, 0.5883789, -2.5507812, -1.7363281, -2.9042969, -0.42993164, -3.34375, 2.2167969, 1.0136719, 0.76220703, 0.19470215, 0.8623047, -1.4824219, 1.0498047, 1.8730469, -0.47558594, -0.16137695, -1.5966797, -0.19543457, -0.23132324, 1.5996094, 0.9194336, 0.17443848, 1.2539062, -0.42236328, -1.0791016, 1.0527344, -0.3569336, 0.18676758, 1.4697266, 3.3203125, 1.7900391, 2.1601562, 3.125, -0.010910034, 1.3769531, 2.96875, -0.6386719, -0.8100586, 2.2636719, 3.8613281, -0.09161377, -0.28515625, 0.19238281, 1.2460938, -0.32617188, -1.2617188, -0.6044922, 1.7080078, -2.5136719, 2.0820312, -1.6787109, 3.2480469, -1.1464844, 0.50146484, -0.10601807, -0.5307617, -0.124816895, -0.99658203, 2.6933594, -0.6611328, -0.36547852, 0.42529297, 0.8222656, -0.8432617, -4.1914062, 2.78125, -0.14135742, -2.9160156, -0.51464844, 2.9863281, 2.1035156, 0.47802734, 0.008895874, 1.9160156, -0.08062744, 1.9521484, 1.3046875, 1.1884766, -0.11212158, 1.1787109, 1.9365234, 2.2929688, -2.0898438, -2.4921875, 0.98828125, -1.3007812, -3.2402344, 1.6738281, 1.4267578, 1.8427734, 1.3085938, -2.3769531, 0.57714844, 2.0507812, 1.2041016, -2.4570312, -0.1217041, 0.5102539, -2.078125, 0.4008789, 0.9067383, -0.3269043, 3.234375, 2.7988281, -0.07244873, 3.0214844, 0.88916016, 0.04437256, 0.42114258, 0.06555176, -2.4628906, 0.0131073, -0.4699707, 1.2988281, 1.2617188, -0.41064453, 1.3808594, 1.4638672, 1.3681641, -0.82666016, 1.2080078, -3.4316406, -0.5620117, 0.12176514, -1.9199219, -1.2080078, -0.47631836, -1.796875, 0.32666016, 0.74853516, -0.6503906, -3.4511719, 0.9760742, 0.09106445, -1.8212891, -0.3659668, 0.8354492, -2.1308594, 1.3183594, -0.08679199, -0.69873047, 0.8886719, -0.32788086, 2.5664062, -1.5292969, -2.3632812, -0.95703125, 0.68603516, 0.032165527, -0.4033203, -0.8066406, -0.45825195, 1.1826172, 0.59375, 3.3554688, -1.9980469, 0.5546875, -0.03616333, -0.27392578, 0.030181885, 1.6279297, -0.20617676, -1.7900391, -0.8251953, -3.9746094, 0.18920898, -0.21972656, -1.7998047, -0.17211914, 6.0195312, 3.1015625, 0.37451172, -1.28125, -3.5195312, -0.63916016, 0.10205078, 3.4179688, 0.6538086, -1.1523438, -0.56640625, 0.8925781, 4.5585938, -0.30786133, -0.5390625, -1.1982422, -1.1484375, 1.5048828, -0.80078125, 0.60546875, -0.25390625, -0.7558594, 1.3476562, 2.4550781, 3.3730469, 1.0078125, 2.1816406, 2.5546875, 0.8417969, -2.4609375, 0.84814453, -1.4609375, 0.640625, 2.4101562, 0.5234375, 1.4316406, -0.052581787, -1.0068359, -5.4335938, -2.34375]}, "B00KCNV9KU": {"id": "B00KCNV9KU", "original": "Brand: Broil King\nName: Broil King 922164 Baron 440 Liquid Propane Gas Grill\nDescription: \nFeatures: 4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly\n10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length\n644-sq in total cooking area, including 444 sq. in of primary cooking space,\nReversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs\nDurable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces\n", "embedding": [-2.9941406, -0.75390625, 2.0039062, 1.0927734, -0.86376953, 0.13708496, 0.81933594, -0.5625, 0.04260254, 1.4658203, 1.6542969, -2.7734375, 0.1105957, -2.4121094, 0.13549805, -0.4104004, 0.5053711, 1.5419922, 2.453125, -0.13452148, 0.027511597, 1.6972656, 1.4462891, -1.390625, -1.3681641, 0.29638672, 3.4335938, -3.5136719, -0.24682617, -1.5732422, 2.1542969, -0.41333008, 0.6845703, 1.0791016, -2.5820312, -2.0957031, -1.7773438, 0.67529297, -4.28125, -0.24743652, 0.22009277, -2.8339844, 0.6689453, 1.53125, -0.68847656, 0.74902344, 0.40454102, 0.26538086, -1.2568359, 0.1517334, 2.7714844, 2.5039062, -0.21960449, 1.5322266, 0.38916016, 2.59375, 0.49291992, -0.5180664, 1.0556641, -1.4853516, 1.9140625, 1.1835938, -2.4707031, 0.70996094, -0.33496094, 0.7207031, 0.69189453, 0.34375, 0.34692383, -0.1430664, 1.6005859, -1.7851562, -0.93310547, -0.24243164, 0.5761719, -1.1835938, -2.0488281, 1.0234375, 0.32910156, -0.94433594, -1.3623047, 2.6210938, 0.9736328, -2.6269531, -0.4411621, 0.47680664, -0.38305664, -2.5507812, 1.3027344, 1.0908203, 1.1601562, 1.0341797, -1.6367188, -2.3632812, 2.6289062, -1.1269531, 1.9794922, 1.4746094, 0.36254883, 1.2861328, -0.29907227, -0.35302734, -3.4199219, -1.5507812, -2.5292969, -2.9023438, 1.3183594, -1.2890625, -2.5136719, 0.12231445, -0.6538086, -0.96191406, 1.6083984, 1.4619141, -0.023132324, 0.5048828, -0.91064453, 6.3398438, 0.6088867, 1.0136719, 2.6425781, -1.2607422, 1.8867188, -1.2109375, 0.54296875, 0.5908203, -1.0712891, 1.7695312, 7.0078125, -0.7475586, -0.2915039, -2.8515625, 3.5996094, -0.6044922, -0.24975586, -2.1855469, -1.1533203, 0.97509766, -4.8515625, 0.44873047, -0.7573242, 0.056243896, 0.31518555, 0.19311523, -2.6757812, -2.5058594, -0.56347656, 0.07098389, -1.5585938, -3.4101562, -0.37109375, -1.8896484, 2.5253906, -2.2402344, 1.1845703, -0.4140625, -2.0664062, -2.1484375, 2.7460938, 0.88623047, 0.38012695, -2.765625, -0.14416504, 0.9609375, -1.234375, -0.37353516, -0.9291992, 2.7851562, -0.29882812, 1.8007812, 0.8232422, -0.4736328, -1.2587891, -0.3630371, 0.7270508, -0.53564453, -1.3496094, 0.8286133, 0.09442139, 0.40698242, -1.3876953, -4.1679688, -0.23071289, 0.62597656, 1.0878906, 0.118652344, -1.0683594, 0.83691406, 2.3613281, 1.265625, 0.16357422, 1.6572266, 0.41552734, 0.49609375, -0.93652344, 0.039215088, -1.171875, -1.046875, 2.421875, -0.19604492, 0.02078247, -0.48095703, 0.12548828, -0.3227539, -1.9628906, -2.3984375, -0.7475586, -3.1601562, 1.0068359, 1.3378906, 1.09375, -1.1796875, 0.54785156, -2.0351562, 0.52246094, -2.4277344, 0.7451172, 1.3398438, 1.8251953, 2.9414062, -0.65478516, -0.8457031, 1.046875, 1.8613281, -0.93652344, 0.1694336, 1.0917969, 1.7929688, -3.0039062, 0.108947754, 1.0976562, -0.4892578, 0.58496094, 1.9765625, -0.70166016, 0.8828125, -0.5917969, -1.5654297, 0.3010254, -0.2475586, -1.046875, 0.12390137, -0.82666016, -3.3222656, -0.54296875, 0.41723633, -1.5449219, 2.5136719, 1.2363281, -0.3161621, -1.0351562, 0.34326172, 0.45458984, -0.3486328, -0.08868408, 0.015075684, -0.6425781, -0.066467285, -1.1708984, -2.7207031, 1.2324219, -0.45214844, -0.8696289, -0.5678711, -0.24438477, -1.8740234, 3.53125, 2.3125, -2.3652344, -2.46875, -0.6303711, -1.0996094, 0.9560547, -2.5214844, 1.1181641, 0.6879883, 0.08148193, 4.0039062, -0.2722168, 0.74658203, 0.24060059, 0.2927246, 0.33813477, -1.6699219, -0.86865234, 1.6513672, 1.7353516, -1.0097656, 0.46264648, 0.5151367, 4.4882812, 0.27075195, -2.9765625, 2.5292969, -1.2734375, -0.086364746, 3.3671875, -0.042053223, 0.13513184, -0.6171875, 1.9345703, 0.45532227, 1.5722656, 0.45776367, -2.15625, -2.0117188, 1.6875, 0.43188477, -0.6245117, 1.0439453, -0.053741455, -0.20825195, -2.7792969, 2.3417969, -1.0800781, -1.9414062, 3.3378906, -3.9355469, 1.7373047, -0.18005371, 0.6352539, 1.9697266, -0.39624023, -1.9628906, 0.34033203, 0.1586914, 0.6772461, 0.64208984, -0.5205078, 0.43945312, -1.8583984, -0.8071289, -0.7006836, -1.2783203, -2.4980469, 0.32836914, -1.984375, -2.9160156, 1.5380859, -1.3896484, -0.6225586, 2.15625, -2.1738281, -0.77490234, 0.33618164, -4.2929688, -1.6816406, -0.25756836, -0.2697754, -1.6484375, 1.3291016, -0.50634766, 0.10601807, -3.5292969, 1.5341797, -1.46875, 0.8461914, 0.4724121, -0.25341797, -1.9726562, 1.1054688, -1.8505859, -1.1630859, 0.49194336, 1.1445312, -1.0927734, 1.6142578, -0.9458008, 2.0117188, -3.0507812, -0.058807373, -1.0214844, 0.22729492, -2.9355469, -2.6601562, -1.6367188, -0.8676758, 3.0683594, -0.59765625, 1.6298828, 1.1220703, 0.42114258, 1.9873047, 0.46142578, -1.6416016, -0.20153809, 1.1152344, -2.1523438, -0.5288086, -2.9003906, 0.031280518, 0.14282227, -1.0751953, -1.4267578, 0.7944336, -2.1113281, 1.0058594, -2.1464844, -1.0585938, -1.7597656, 3.2734375, -2.5917969, -2.2460938, -2.3867188, -1.6005859, -3.0507812, -0.6557617, -0.59228516, 0.6347656, -2.4160156, 0.8901367, 1.1376953, -1.0410156, 3.2734375, -2.6875, -2.453125, 3.0878906, 0.27783203, -0.75, 3.2519531, -1.4414062, -1.6894531, -2.5898438, -0.8510742, 3.7578125, 0.9711914, 2.0039062, 0.064697266, 0.36987305, 1.484375, 0.49438477, 0.62060547, -0.64746094, -0.92333984, 2.9257812, -1.1533203, -2.6347656, 0.8510742, 2.9648438, -2.3886719, -1.3095703, 3.8945312, 1.8232422, 2.46875, 3.109375, 0.6933594, 0.6694336, -1.3466797, 2.9628906, 2.8144531, 1.2382812, 0.81933594, -0.47729492, -0.27685547, -0.39770508, 2.1328125, 2.4082031, -0.26293945, 2.1074219, 1.2119141, -0.6879883, -0.35205078, 0.58740234, -0.74365234, 1.1289062, -0.031799316, 1.4160156, -1.6142578, 1.0253906, -1.2119141, -1.1630859, 0.55078125, -0.5366211, -0.3557129, 2.84375, 1.0976562, 0.21936035, 0.49316406, 1.0224609, -0.8095703, -1.5253906, 0.94970703, -1.2070312, 1.0791016, -0.578125, -0.17810059, 1.2558594, -1.2734375, 1.8027344, -0.46728516, -0.875, 0.39160156, 3.0292969, 0.10626221, -1.1171875, 2.6992188, -0.45751953, -0.18835449, 1.3105469, 1.6445312, -2.2460938, 1.28125, -1.4960938, 0.9682617, -0.8066406, -2.4785156, 0.80566406, 1.3710938, 1.3632812, -0.053527832, 1.0195312, 1.8427734, 1.2783203, -1.9501953, 1.1650391, -4.6953125, -0.3828125, -0.65527344, -1.6035156, -1.6660156, 3.5605469, 0.47094727, 1.8935547, -0.28930664, 3.4257812, -0.9902344, 0.31225586, 1.3007812, -1.9492188, 0.40161133, -4.1796875, -2.625, 1.1074219, -0.5258789, -1.1533203, 0.59814453, -1.2949219, 0.4116211, 2.1640625, -0.5366211, -0.5473633, -0.53125, -1.6875, -0.15966797, -0.4008789, 1.2871094, 0.72753906, 1.0751953, -1.8076172, -2.9003906, -0.42236328, -1.1025391, 2.3867188, 3.0507812, -3.0429688, 0.09197998, -0.48364258, 0.18566895, 0.8935547, -0.35864258, 2.6835938, -0.5864258, 0.48535156, -2.7148438, 0.93066406, 2.3574219, 0.039855957, 2.2636719, -0.23461914, 0.024780273, -1.7734375, -1.4482422, 1.2714844, 3.4140625, -0.7109375, -3.5039062, -3.2597656, 1.9248047, -0.64501953, -1.1777344, 2.0390625, -1.9345703, -0.9584961, 1.8037109, 0.7182617, 0.82470703, 1.4033203, 0.07098389, -2.015625, -0.9580078, -0.5185547, -1.3632812, 0.4230957, -0.085754395, 0.3605957, -2.15625, 1.0117188, -3.0566406, -0.24536133, -2.3945312, -0.21777344, -5.0585938, 3.6113281, 3.9863281, 2.4726562, 2.5, -2.0332031, -0.1182251, -1.2480469, -0.8461914, -1.4375, 1.4550781, -1.1660156, 0.796875, 1.7050781, -0.4650879, -1.8642578, -0.6464844, 2.0292969, -2.4296875, -1.5332031, -2.0292969, 1.4863281, -1.9619141, -1.609375, 1.8261719, -1, 4.1171875, -0.73779297, -1.3476562, 0.83203125, 1.3701172, -0.33032227, -0.4633789, -0.97314453, 0.2319336, 0.2211914, 1.7265625, 2.0898438, -0.3046875, 0.5161133, -1.9033203, 1.8310547, -0.7705078, 0.59814453, 0.19274902, 0.43359375, -1.0058594, -1.84375, 1.328125, 1.7978516, 0.11627197, 3.1074219, 1.6533203, -2.2949219, 1.3447266, -0.28076172, -4.6289062, -1.1044922, 0.89990234, -1.5751953, 1.7783203, -0.33666992, -3.4941406, 0.2998047, 2.0957031, -0.25268555, -0.047424316, -0.35009766, -0.68115234, 1.9697266, -1.7958984, 0.2709961, -0.69921875, 0.8652344, -0.033203125, 0.27148438, 1.0722656, -1.9628906, -0.3544922, 0.73876953, 0.18579102, -2.0742188, 2.4335938, -0.4477539, 0.14099121, -0.6635742, 0.07336426, -2.4355469, -0.4494629, 2.2148438, -0.15100098, 1.1015625, 1.2109375, 1.6767578, -2.7460938, 1.1132812, -1.7021484, 3.125, -1.2519531, -1.5664062, 2.4296875, -4.0898438, 0.84375, -2.5117188, 0.9189453, -1.0888672, 1.8642578, 2.4414062, -0.63916016, -1.1386719, 1.3320312, -2.3007812, -4.0859375, -3.5214844, 0.7050781, 1.6103516, 0.23266602, 1.7822266, -1.8564453, 0.79003906, -0.74365234, -1.0458984, -2.0976562, 0.1697998, -1.6572266, -2.0546875, -1.1396484, 0.93066406, -0.13879395, 1.5019531, 1.0439453, 0.08227539, 1.1621094, -2.2207031, -1.1962891, 2.0234375, -3.1503906, 0.72021484, 1.9365234, -0.72021484, -0.6069336, 1.3261719, -0.8417969, -2.0839844, 3.4433594, -0.18249512, -1.0205078, 2.7363281, 0.39160156, -1.5107422, 0.3635254, -2.8828125, 1.0410156, -1.3496094, 0.9770508, 0.8774414, -2.203125, -1.0878906, 1.4169922, -2.1699219, 0.2529297, 0.9975586, 1.3515625, 0.296875, 2.3769531, -2.0371094, 1.0351562, -1.0839844, -1.2626953, 0.765625, -3.5214844, -0.5078125, -1.5019531, 0.1607666, 2.8144531, -0.5488281, -0.65771484, 0.73828125, -1.0488281, 0.27539062, 1.7900391, -2.3691406, 3.6054688, 2.5976562, -0.9448242, -0.09503174, 1.8359375, -0.1607666, 1.8808594, -0.17102051, -1.6074219, 0.47216797, -0.47216797, 0.76123047, 0.6582031, 0.8847656, 2.2910156, -0.21154785, 0.15966797, 2.2890625, 4.4023438, 0.52978516, 2.2851562, -0.037475586, -0.6645508, 0.6899414, 5.8085938, 1.9042969, -2.3164062, 0.50439453, -0.50927734, 1.4775391, 0.75683594, -0.66845703, -1.6572266, -1.9423828, -2.4375, -0.7792969, -1.6044922, -4.3828125, -0.51171875, 0.57177734, -2.4179688, 0.42626953, 1.6220703, 0.16967773, 2.2929688, 2.625, 1.8535156, -0.21203613, 0.69091797, -0.06390381, -0.2265625, 1.5947266, -4.0976562, 2.6601562, 0.39648438, -0.73583984, -1.5566406, 2.6503906, 0.008483887, 1.6152344, 1.8583984, 0.56152344, 2.3828125, 0.92822266, 2.8652344, -0.29589844, 2.2226562, 1.8134766, 0.23608398, 0.061645508, 1.5673828, 3.1816406, -0.36035156, -0.41723633, 2.3652344, -1.7021484, -1.3076172, -0.28637695, 0.32177734, -0.5571289, -1.4980469, 3.5664062, 0.22033691, -0.9682617, -0.6298828, -0.9165039, 1, -0.3713379, -0.15710449, -0.0056991577, 3.5058594, -1.3330078, 3.6015625, 0.021026611, 0.21179199, 2.7460938, -1.7119141, 0.9770508, 0.14489746, -0.44458008, 0.7158203, -0.16027832, 0.056274414, 0.9873047, 0.22949219, 0.53759766, 1.8740234, 0.5048828, -1.1884766, -1.6044922, 1.6914062, 0.25048828, 2.4355469, -1.0488281, -1.4580078, 2.8925781, -1.1728516, -2.9394531, -4.8398438, 3.09375, 0.8696289, 0.80322266, 1.3681641, -0.7270508, 2.953125, -0.49487305, 1.1855469, -3.4863281, 0.43041992, -0.43823242, -2.7695312, -0.6958008, 1.4541016, -0.37841797, 2.5390625, 2.1855469, -0.9472656, 1.3164062, -0.24438477, 1.1445312, 2.4179688, 0.56347656, 1.2841797, 1.1083984, -0.51220703, 3.0390625, 0.2939453, 0.20800781, -2.6132812, 2.6503906, -0.10876465, 0.6953125, 1.9892578, -1.7929688, 0.50683594, -0.33666992, 0.96240234, 0.8046875, -2.9355469, -1.4580078, -0.3154297, -0.04800415, -0.014480591, -2.8203125, 3.203125, 1.9892578, 0.16345215, 0.59375, 3.7421875, 0.58740234, 1.0644531, 1.0810547, 0.45385742, -0.37963867, 1.4013672, 0.671875, 0.82666016, -1.9335938, -0.59472656, 0.7573242, 1.4248047, -0.6821289, -1.7910156, -1.4414062, -0.4116211, -0.96728516, 1.0898438, -1.0888672, -1.3857422, 2.9101562, -0.21557617, -0.68066406, 2.1425781, 0.36572266, 1.015625, -3.3339844, -1.2255859, -0.9707031, -0.08605957, -1.2050781, 0.5209961, 1.7783203, 1.1083984, -0.46899414, -0.31713867, -3.3066406, -0.9633789, -1.4267578, 1.5449219, -1.90625, -1.2021484, 0.76904297, -0.6489258, 1.6796875, 0.2775879, -2.1269531, 1.5615234, -0.66064453, 0.9951172, 0.57714844, 1.6660156, -0.4111328, 1.21875, -0.27661133, 0.49365234, 1.4892578, 0.14953613, -0.63720703, -0.11303711, -0.25952148, -1.0800781, 0.5229492, 0.8154297, -0.37475586, -0.35327148, 2.7363281, 1.21875, 0.37768555, 0.21154785, -1.2353516, -4.0117188]}, "B08BF7G65N": {"id": "B08BF7G65N", "original": "Brand: SNAN\nName: 32\" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion\nDescription: \nFeatures: \u3010Easy to Assemble\u3011 This upgraded this 32 inch fire pit table to meet customers' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base.\n\u3010Excellent Accessories\u3011Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table.\n\u3010Safe And Test\u3011This 32 inch outdoor fire table is CSA certified. This propane fire pit table\u2018s heat output is 50,000 BTU. Every fire table's Ignition function is tested before leaving the factory and ignition device can easily adjust flame.\n\u3010High-class Materials & Quality Assurance\u3011The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life.\n\u3010Service\u3011It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.\n", "embedding": [-2.1210938, 3.1210938, 0.84521484, -1.5644531, 1.8359375, -0.38110352, 0.60009766, -0.9375, -0.21386719, 2.3710938, 0.18579102, -0.23596191, -0.9658203, -3.0722656, 1.2294922, 0.52246094, 0.09741211, -0.16027832, 1.1591797, -0.5546875, 1.6845703, -0.3034668, 0.84228516, -0.33520508, 1.0400391, -0.64941406, 2.4179688, -3.6308594, -0.78759766, -1.9423828, 1.3398438, 1.7070312, -0.875, 1.7548828, -1.5742188, -1.1210938, -0.24841309, 1.9208984, -2.3476562, -0.67089844, -1.84375, -0.45874023, 3.5585938, 0.1262207, -1.9492188, 1.4980469, 0.16601562, -1.5820312, -0.5888672, -0.6269531, 1.1826172, -0.064819336, 1.6064453, -0.10107422, -1.1835938, 1.9150391, -1.4101562, -3.25, 1.2958984, 0.3010254, 2.5136719, -0.65185547, -0.828125, 1.6240234, -1.6787109, 0.59228516, -0.09906006, -0.20361328, 0.7402344, 1.3388672, 1.6708984, 0.28393555, -0.49829102, 0.51904297, -0.71777344, -1.3603516, -4.21875, 2.6054688, 3.2597656, -0.61279297, 0.50634766, 1.3076172, 0.89501953, -3.1816406, -0.50878906, 0.13146973, -0.058807373, -1.3125, 0.012481689, 1.4804688, -1.7744141, 3.296875, -1.0595703, -3.6308594, 1.5957031, -1.4716797, -0.9111328, 0.03970337, -1.9189453, 0.25927734, 0.5288086, 0.52441406, -0.31982422, 1.8535156, -3.0292969, -0.14562988, 0.6274414, 1.6201172, -0.18164062, 0.51953125, -0.6791992, -0.34423828, 1.6533203, -1.7949219, -0.55078125, 1.7675781, 0.5258789, 1.3730469, 4.046875, -0.28637695, 4.8554688, 0.23168945, -0.2890625, -0.26464844, 1.9140625, 0.36889648, -0.64746094, 0.7651367, 2.1328125, -1.7119141, 0.55322266, -1.7597656, 1.0917969, -0.04071045, -2.7285156, -0.10058594, -1.2470703, -1.1484375, -4.1757812, 0.4111328, -3.0488281, 1.875, 0.89160156, 0.058044434, -3.1992188, -0.40527344, -0.515625, 2.4707031, 0.6411133, -2.5664062, 0.013832092, 0.4104004, -0.3269043, -2.5429688, 0.3005371, -2.421875, 1.0166016, -2.5898438, 4.0507812, 1.4873047, 1.4160156, -1.0107422, -0.19030762, 1.9951172, -0.9355469, -0.765625, 3.0234375, 1.2324219, 0.13110352, 0.28686523, -1.0195312, 0.5024414, -0.8178711, 0.3828125, -0.13891602, 0.63183594, 0.90234375, 2.2597656, 3.7675781, -0.72314453, -1.0048828, -1.4003906, 0.23901367, -0.6850586, -0.80566406, -1.6689453, -0.2758789, -1.8271484, 0.9663086, -1.7333984, -1.5048828, 0.82958984, -1.5722656, -0.16564941, 0.013725281, -1.7685547, -3.2949219, -3.1425781, 2.609375, 1.4169922, 0.0914917, 1.6923828, -1.9013672, 1.5859375, -3.203125, -2.6347656, -2.6113281, 2.3242188, 2.046875, 0.68603516, -0.27807617, -1.2060547, 1.6083984, 0.1895752, 0.17346191, -1.3984375, 1.1708984, 0.57714844, 0.31323242, 1.2441406, 0.3383789, -0.70751953, 2.4375, 1.5361328, 1.8173828, 0.9658203, 0.9472656, 0.46655273, -1.3271484, -1.3535156, 2.1894531, -0.047027588, 0.16687012, 1.6230469, -1.0185547, 2.1308594, 1.0400391, -0.5942383, 2.2597656, -1.5800781, 1.9863281, -1.8154297, -0.41088867, 0.36914062, 0.36254883, -0.36523438, -0.5073242, 2.0234375, 1.5761719, 1.4326172, -0.18139648, -0.55810547, -0.19152832, 1.2119141, -0.21130371, 1.28125, -0.31835938, -1.4287109, 0.8798828, -1.2910156, 1.6474609, 1.0087891, 0.5336914, 0.5629883, -0.94384766, -2.3046875, 1.8525391, 0.41552734, -1.9453125, -0.42163086, -1.4599609, -0.21325684, 3.4316406, 0.2088623, -0.45288086, -0.014198303, -1.1181641, 2.4628906, 0.5913086, 2.6835938, -1.0947266, -1.6113281, 2.0351562, -1.7597656, 1.2148438, 0.3815918, 1.3535156, 1.3476562, -0.9614258, 0.6669922, 3.0664062, -0.96484375, -2.1132812, 1.4501953, -0.60058594, -0.41015625, 1.1875, 0.84765625, 0.7988281, -1.0351562, 0.13586426, 2.6621094, 0.40307617, 3.03125, -2.7441406, 0.6772461, 0.77490234, -3.2910156, 0.35351562, -0.14746094, 0.6982422, -1.9931641, -0.8408203, 1.6748047, -2.4199219, -1.7851562, 1.7636719, -1.9804688, 0.79541016, 1.3271484, -0.0970459, 1.578125, -2.8984375, -0.18835449, -0.10797119, 1.9365234, -1.9960938, 0.7475586, 0.8227539, -0.4814453, -1.3164062, -1.5195312, 1.8291016, -3.2597656, -0.58447266, -1.9228516, -0.92333984, -0.84375, 0.2758789, -0.9033203, 1.1357422, 0.83154297, -1.546875, 0.3605957, -1.2568359, -1.8076172, -0.90234375, 1.6035156, -1.9599609, 0.061462402, 1.5273438, 4.1445312, 0.26904297, -1.3076172, -0.4104004, -0.13989258, 1.3310547, 1.8046875, 0.07574463, -0.7421875, -1.6240234, 1.3896484, 1.7099609, -0.6879883, 0.83251953, -3.2910156, -1.3291016, -3.7890625, -0.3708496, -0.7524414, -0.64746094, 0.76220703, 0.9277344, -1.5498047, -1.6201172, -0.35424805, -0.9165039, 4.3984375, 0.47705078, 2.7109375, -1.1533203, -0.8334961, 0.23608398, -1.1992188, -3.3710938, 1.3867188, -0.16333008, -0.6586914, -2.3632812, -0.9296875, -0.18322754, -0.59277344, -0.64746094, -0.41552734, 1.1816406, 1.4931641, 0.82958984, -1.0478516, -1.0429688, -0.65283203, 1.4892578, -0.19787598, -0.33813477, -1.5722656, -1.2744141, -0.5493164, -1.8505859, 0.03161621, 1.1503906, -0.8154297, 1.0742188, 0.88623047, 0.035125732, -0.52978516, -0.67529297, -2.9980469, 0.27807617, 2.6015625, -0.8955078, 1.328125, -2.0800781, -1.0498047, -3.2089844, 1.4677734, 3.1875, 2.21875, 0.5395508, -0.56591797, 0.4987793, 0.71435547, -0.3918457, -0.7836914, -0.27392578, -1.0400391, 3.3007812, -1.9960938, -0.44018555, -0.043395996, 2.546875, -3.4101562, -0.6972656, 0.4855957, -0.33740234, 0.86572266, -1.6289062, 0.63623047, 1.1738281, -0.32470703, 0.69433594, 0.015655518, 2.2714844, 1.0322266, -1.8505859, 1.0751953, 1.3701172, 1.1875, 1.9785156, 1.0585938, 0.80566406, 3.4667969, 1.6113281, -2.2734375, 0.86376953, 1.2753906, -0.075805664, -0.6801758, 2.6875, -1.6669922, -0.44018555, -1.28125, -0.30200195, 1.2441406, -1.6875, -0.50439453, 1.2871094, -0.27954102, -0.8330078, -1.4941406, 0.33081055, 1.3037109, -2.9179688, 2.7324219, 0.3630371, -0.95410156, 1.8789062, -0.58251953, 1.6865234, -1.4023438, 3.1914062, -0.74365234, -1.4570312, -0.11621094, 1.7060547, -0.027908325, -2.7910156, -0.18371582, -3.015625, -1.0332031, 4.2148438, -0.34716797, -0.42333984, -0.53271484, -1.0341797, 1.5576172, 1.9150391, -1.2128906, 0.94628906, 2.4199219, -1.1972656, -1.7529297, 1.09375, 0.36376953, -1.0712891, -2.1679688, 0.5073242, 0.29711914, -0.0826416, 2.2675781, -1.9697266, -2.0859375, 0.44140625, 0.95703125, 1.4082031, -0.2319336, 1.7255859, -0.36279297, -0.86083984, 1.8818359, -1.0214844, -1.3310547, -1.3398438, -3.9375, 0.8378906, -2.9589844, -0.54296875, 1.6210938, -0.52685547, 0.74609375, 1.421875, 0.72558594, -3.9023438, -2.3808594, -0.94873047, 0.089782715, -3.8105469, -1.296875, -0.5229492, 0.1574707, -0.099243164, 0.546875, 1.0136719, 2.5996094, -0.40307617, 1.0927734, 0.27563477, 1.2822266, -2.5742188, 0.9013672, 0.14929199, -0.076049805, 0.04776001, -1.3583984, 0.12768555, -3.2949219, 1.8330078, 1.4833984, -1.8173828, 0.9165039, 2.8496094, -0.0053482056, 0.15930176, 1.1142578, -0.18029785, 3.109375, 0.01209259, -2.3183594, -1.1533203, -0.9770508, -0.09460449, -1.1240234, -0.40893555, 1.2695312, -2.2246094, 0.6538086, -0.00869751, 2.3554688, 0.69140625, 0.59033203, -2.4589844, -0.114868164, -1.1738281, -2.375, -1.46875, -1.6386719, -0.49658203, -0.5644531, 0.6845703, -2.7402344, -1.296875, -0.83740234, -1.2460938, -1.1064453, 1.9912109, 1.5400391, 2.7832031, 3.2597656, -0.9692383, -0.57714844, 2.0722656, -0.5415039, 0.7001953, 2.546875, 0.89404297, -1.7099609, 1.1464844, -0.3774414, -1.0595703, -1.7275391, 0.9902344, -1.90625, -1.6074219, 0.18066406, -0.9848633, -1.5634766, -0.012245178, -0.8359375, -0.9658203, 0.31958008, -1.484375, -0.75927734, -1.1162109, 1.8095703, -0.57714844, -0.08416748, -0.72753906, -0.24206543, 1.1708984, 3.03125, -0.28930664, 1.4658203, 3.2910156, -0.4831543, 2.1132812, -0.59814453, 0.41479492, -0.2166748, -0.89160156, -1.5205078, -0.66552734, 1.7880859, 2.0292969, -1.6513672, 3.1640625, -0.24609375, -2.2519531, 3.0117188, 1.4882812, -1.5625, -0.31079102, -1.2490234, -0.9550781, 0.26391602, 0.038116455, -2.1445312, -1.3730469, 1.7207031, -1.5693359, 1.8076172, 0.2758789, -0.9199219, -0.8569336, -0.80126953, 0.092285156, 0.56640625, -0.828125, -3.2792969, -2.4609375, 0.6020508, -1.0683594, 0.77978516, 0.52246094, -1.0507812, -1.6396484, 2.3027344, -0.10473633, -0.5913086, -0.68408203, 1.1474609, 0.7451172, 0.8911133, 0.7426758, 0.7055664, 0.33789062, -2.4179688, 1.7734375, -1.1816406, -0.63183594, -0.76171875, 1.7880859, -0.9277344, -0.2783203, 2.4726562, 1.0322266, 1.9101562, -2.8671875, 0.8334961, -0.83496094, 1.4355469, 0.021392822, 1.3242188, -0.35107422, -1.0986328, -1.7412109, -3.0351562, -0.66552734, -1.4140625, -2.5390625, -0.6899414, -0.9746094, -0.8588867, -1.7539062, -0.24365234, -0.37036133, -0.1932373, -0.40576172, -1.3525391, -1.0195312, -0.35742188, 1.2529297, 1.59375, -0.92089844, 0.027694702, -1.2158203, 0.2854004, -2.484375, 0.10015869, 2.2851562, -0.5756836, 2.3886719, 0.3137207, -0.734375, 1.5283203, 2.5527344, 0.41552734, -0.53808594, 1.5048828, -1.7705078, -1.2509766, 2.3984375, -2.0136719, 0.671875, 1.1142578, -1.4560547, 0.8017578, -0.8979492, -1.3173828, -0.52441406, 1.6298828, 0.37768555, 1.4589844, 0.91552734, -1.2832031, -1.0048828, 0.36279297, 2.1152344, 1.8837891, -1.8681641, -0.73291016, -1.1699219, -1.2441406, -1.0507812, -2.59375, -0.13378906, -0.29663086, 0.29125977, 0.7685547, -0.33422852, 1.5195312, 1.9580078, 0.2368164, -0.28173828, 3.0898438, -0.70458984, 2.6894531, 1.4765625, -1.9541016, -3.0273438, -2.9980469, 1.0166016, 0.36889648, 0.7104492, -1.4238281, -0.17468262, -1.3837891, 1.4970703, -0.87158203, -0.7573242, 1.1738281, 1.2822266, -0.8979492, 1.0615234, 0.06365967, 0.103271484, 0.7290039, -0.86816406, 1.9775391, 0.9033203, 1.5224609, 3.0625, -1.8349609, 2.3476562, -1.8701172, 0.8725586, -1.5507812, -1.6425781, 1.2861328, -2.7539062, -1.984375, -1.1308594, -0.5913086, -3.3496094, 1.6064453, 1.3876953, 0.6225586, -0.14160156, -0.052947998, -0.87939453, 1.2509766, 1.8154297, -0.97558594, 0.2861328, -0.77734375, -1.2089844, 0.60839844, 1.8701172, 1.8447266, -0.06500244, 1.6220703, -0.1538086, -1.3701172, 1.0117188, -0.08850098, 1.1298828, 0.13964844, 2.9453125, 1.5615234, 1.5478516, 3.4589844, 0.20983887, 1.5419922, 2.6308594, 1.2363281, -0.2512207, 2.1386719, 2.4960938, -0.7973633, 0.22729492, -0.45117188, -0.014816284, -0.22253418, -0.88427734, 0.032562256, 0.17749023, -1.8447266, 2.5273438, -1.3583984, 2.0898438, -1.5878906, -0.42407227, -1.2177734, -0.39624023, 0.44604492, -0.32348633, 0.24536133, -0.11706543, -0.64941406, -0.3046875, 0.63378906, -0.46923828, -3.8984375, 1.9804688, -1.53125, -2.6015625, 0.28881836, 3.7539062, 1.8447266, 0.6586914, 0.12310791, 0.5214844, -0.27124023, 2.0644531, 2.3652344, 0.26220703, 1.3974609, 2.4589844, 2.1386719, 1.9433594, -0.66015625, -1.0605469, 0.9453125, -1.6523438, -3.2167969, 2.3652344, 1.4189453, 1.8447266, 1.0537109, -2.1855469, 0.6196289, 0.8383789, 0.9482422, -2.9414062, -0.23901367, 0.18237305, -0.87060547, 1.1484375, 1.1152344, -0.86083984, 3.0566406, 2.2949219, 0.46118164, 2.0273438, 1.3955078, 1.0810547, -0.48413086, 1.2958984, -0.9638672, 1.2099609, -1.4365234, 1.3916016, 1.03125, -0.7524414, -0.82373047, 2.8496094, 1.6669922, -0.5488281, 0.27685547, -2.703125, -0.08538818, 0.19812012, -1.4638672, -1.1279297, -0.4411621, -2.2441406, -0.25634766, 1.1416016, -0.12145996, -3.34375, 1.265625, 1.4248047, -1.8798828, -0.40527344, 0.5786133, -3.7949219, 2.1738281, -0.081604004, 0.13342285, -0.78466797, -0.6459961, 2.0410156, -0.8925781, -2.6445312, -0.75097656, 1.0761719, 0.41210938, 0.42993164, -0.85009766, -0.22265625, 0.78466797, 0.68603516, 3.921875, -0.75439453, 1.1630859, 0.35498047, 0.54003906, -0.91552734, 1.4238281, -0.9355469, -0.055480957, -0.6850586, -4.1640625, 0.40283203, -0.8671875, -2.3691406, -0.8198242, 4.7148438, 2.34375, 0.88183594, -1.3535156, -3.9609375, -1.5839844, 0.8022461, 3.5761719, 0.3581543, -1.2470703, -0.015556335, 0.87939453, 4.3476562, -1.0556641, 0.6772461, -0.9868164, -0.57373047, 2.2226562, -1.6123047, 0.21313477, -1.2138672, 0.07495117, 1.1982422, 2.4804688, 1.1191406, 0.78027344, 2.1210938, 1.6845703, 0.4921875, -2.9121094, 0.14526367, -2.1875, 0.90771484, 3.09375, 0.07922363, 1.6181641, -0.029220581, -2.0625, -4.7382812, -0.21533203]}, "B08T21432X": {"id": "B08T21432X", "original": "Brand: MCP Island Grills\nName: Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover\nDescription: *New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.\nFeatures: High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas!\nBlue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000.\n6 Burners each at 11,000 BTU's, 1 Cast Iron Side Burner at 12,000 BTU's, 1 Infrared Rear Burner at 12,000 BTU's, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides).\nOverall Exterior Grill Size: 89.5\" W x 25\" D x 47\" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24\" if you do not install the side towel racks on left / right side. Counter depth: 22.75\" not including the handles and knobs. Counter height: 35.5\", With the grill lid open overall height: 60\". If the side sink and side table are not installed Width: 58\".\nSink Basin Size: 10.5\" Wide x 12.5\" Deep x 7\" Tall. Rotisserie Size: Actual rod is 44\" long, but 38\" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38\" Wide x 18\" Deep. Warming rack on top is 37.5\" Wide x 6\" Deep. Side Burner: 13.25\" Deep x 10.5\".\n", "embedding": [-1.7558594, 0.23864746, 2.5839844, -0.19421387, 1.2705078, 0.26586914, 0.81640625, -2.2109375, -0.46704102, 1.1699219, 1.5986328, -0.029067993, -0.6123047, -0.9033203, 0.359375, 0.75341797, -0.14294434, 0.017150879, 0.9472656, -0.1743164, 1.2910156, 1.0117188, 0.94189453, -0.83251953, 1.8046875, 0.6274414, 2.2050781, -3.6621094, 0.11077881, -1.2119141, 0.3876953, 1.3027344, -0.15429688, 2.0996094, -2.5664062, -0.47753906, -1.765625, 1.2978516, -2.234375, 1.1875, 0.099609375, -0.26049805, 0.98779297, 0.25439453, -4.2382812, 0.5629883, 0.23010254, 2.0800781, -1.6601562, -1.5185547, 0.43115234, 1.6328125, 1.046875, -0.056884766, -2.0761719, -0.014450073, 0.08905029, -3.171875, 0.8779297, -0.80566406, 1.5253906, 0.29125977, -1.8574219, -0.13134766, -3.4921875, -2.8710938, -0.6489258, 0.59814453, -0.1965332, 0.81689453, 1.2402344, 1.7724609, -2.0917969, -0.93847656, 0.5361328, -1.9941406, -2.6035156, 1.0517578, 2.2109375, -0.32788086, -3.5, 2.4921875, 0.024398804, -0.9980469, 0.7416992, 2.8652344, -2.4199219, -1.3544922, 1.2871094, -0.6743164, -2.4394531, 1.4697266, -2.3808594, -2.9238281, 1.1015625, -3.0175781, 1.0332031, 0.98876953, -0.91796875, 2.390625, -0.3491211, 0.8354492, -1.0673828, -0.93359375, -0.12866211, -1.7744141, 2.6855469, 0.2944336, -3.3691406, 0.8588867, -1.9697266, 0.25195312, 1.71875, -0.40234375, 2.6171875, 1.2382812, 0.6088867, 1.2324219, 1.4160156, 1.6289062, 3.4863281, 0.2919922, 0.5019531, -0.7182617, -0.31103516, 0.35253906, -1.7597656, 1.1582031, 4.8242188, -1.9707031, 0.19152832, -0.87109375, 1.7080078, 0.34179688, -2.7363281, -2.3925781, -1.1367188, -1.4179688, -2.609375, 0.7421875, -1.6494141, 1.6425781, 1.0166016, -1.2236328, -3.8945312, -0.6582031, -0.5209961, 0.19506836, 0.40820312, -2.0800781, -0.6826172, -2.5390625, 1.6591797, -0.6323242, 1.0693359, -1.5322266, -0.83203125, -2.4316406, 3.8574219, -0.46850586, 0.12445068, -2.6230469, -2.2402344, 0.7841797, -0.23449707, -1.9726562, -1.5957031, 2.3730469, 0.16235352, 1.3886719, -1.1728516, -2.7539062, 0.09698486, -0.10290527, 1.1484375, 1.3417969, -1.5654297, 2.0839844, 0.059387207, 0.3293457, -0.5957031, -2.1816406, 1.7998047, 1.4902344, 0.8666992, -1.9160156, 0.17272949, 0.40478516, 0.49658203, -1.2998047, -0.33764648, -1.3408203, -0.08453369, 0.7294922, 0.47973633, -0.6933594, -2.3730469, -0.89941406, 1.5957031, 0.22998047, 0.6665039, -0.96191406, -0.38061523, 1.7929688, -1.3818359, -2.0820312, -1.7519531, -1.4951172, 1.4384766, 2.5449219, 1.6679688, -1.4892578, 0.6298828, -1.0742188, 0.47973633, -1.5839844, 2.0585938, -0.4519043, 0.83154297, 2.6230469, 0.4255371, 0.4128418, -0.52197266, 2.7128906, -0.6611328, 2.125, 1.8691406, 0.92578125, -1.5712891, 0.8276367, 2.9511719, -0.47851562, 0.63183594, 1.1513672, -0.2722168, 1.8964844, 1.4580078, -4.46875, -0.18664551, -0.5605469, 0.10601807, -2.203125, -0.4650879, -0.76171875, -1.0859375, 2.8027344, -3.4296875, 1.4169922, 1.0849609, 0.58447266, -1.3203125, -0.69091797, 0.55810547, 0.20349121, -0.25268555, 1.2861328, -1.0566406, -0.41137695, -3.1679688, -3.0605469, 1.765625, 0.9243164, 0.6533203, 1.3378906, 0.48120117, -2.3242188, 2.1425781, 0.17834473, -3.8515625, -2.1425781, 1.0966797, -0.09222412, 1.9121094, -0.68896484, 1.4365234, 1.5410156, 0.8544922, 1.8505859, 0.6220703, 0.73291016, 0.59375, -0.17492676, 3.3007812, -3.3730469, -0.02053833, -0.2746582, -0.31713867, -0.32543945, 0.23095703, 1.9208984, 5.3125, -0.6953125, -2.7636719, 1.3525391, -1.0878906, 0.5551758, 1.328125, -1.3173828, 0.41918945, 0.87597656, 0.8408203, 0.79248047, -0.29833984, 2.6738281, -0.9736328, -1.8300781, 1.0292969, -3.9238281, -0.027374268, -0.2548828, -0.83251953, 0.9477539, -2.3085938, 0.18225098, -0.08508301, -1.2167969, 2.8378906, -1.9892578, 0.4729004, 1.7763672, 0.79052734, 0.90234375, -2.4941406, -0.7529297, -0.70214844, 0.84814453, -0.70214844, 0.90283203, 1.4619141, -1.7470703, 1.0615234, -0.8989258, 1.2363281, -2.4824219, -1.2851562, -1.9248047, -4.1835938, -0.25195312, -0.27294922, -1.0214844, -0.4650879, 0.6621094, -1.9746094, -0.66015625, -1.15625, -2.4609375, -1.546875, -0.6459961, 0.32177734, 2.2226562, -0.36767578, -1.6542969, 0.070251465, -4.7617188, 1.4912109, -0.8955078, 0.27197266, 1.1113281, -0.42944336, 0.65722656, -2.0625, 0.44873047, -1.0039062, -0.35083008, 1.0478516, -0.76416016, 0.041046143, -2.4707031, -0.17077637, -4.2890625, 1.1054688, -1.9375, 0.49902344, -2.1992188, -0.62939453, -0.34277344, -1.2216797, 3.1738281, -0.671875, 0.3310547, 0.7988281, 1.6113281, 1.3203125, -0.30419922, -1.1123047, -0.84375, 1.4951172, -1.7744141, -1.7578125, -1.4628906, -0.36376953, -1.0273438, -0.8276367, -0.70703125, 2.3554688, -2.3457031, 1.5234375, -0.38745117, -0.734375, 0.43969727, 0.0340271, -0.7626953, -0.65722656, -2.6679688, -0.16223145, 1.1445312, -0.7993164, -0.52490234, 1.6074219, -1.8691406, 0.36132812, 0.68847656, -1.0771484, 0.03869629, -1.4453125, -3.5800781, 1.9384766, -1.1396484, -3.625, 1.8320312, -1.8828125, -1.1796875, -3.15625, -1.8740234, 2.3457031, -0.21350098, 1.5703125, -1.1484375, -0.5751953, 0.9135742, 0.49682617, -0.55126953, -0.6904297, -0.14770508, 4.0507812, -2.4648438, -1.0595703, 0.7109375, 3.1445312, -1.859375, 0.36645508, 1.9892578, 0.5205078, 1.7734375, 0.6611328, 2.1835938, 0.8491211, -1.1601562, 0.3022461, -0.41333008, 1.2373047, -0.00026226044, -3.390625, 1.0019531, -1.8105469, 2.1269531, 0.7631836, 0.29077148, 2.5839844, 2.2539062, 0.90722656, -1.5410156, -0.7163086, -0.17272949, 1.0390625, 0.07702637, 3.6542969, -1.953125, -0.43164062, -0.06329346, -0.6147461, -0.2590332, -1.1855469, 0.27026367, 2.703125, -0.15820312, 0.36621094, -0.703125, 1.3496094, 1.2714844, -1.3789062, 1.0253906, -1.515625, -0.97802734, 1.0595703, -0.48583984, -1.1552734, -1.5898438, 1.7226562, -0.9213867, -1.3330078, -0.98095703, 2.9472656, -0.7392578, -3.0585938, -0.5263672, 1.5380859, -2.15625, 1.3476562, -1.7021484, -0.05807495, 1.4443359, -2.3203125, 1.5908203, -0.5761719, 0.0056266785, 0.28466797, 1.1230469, 0.50683594, 0.4333496, 0.32763672, 1.6904297, 0.6894531, -2.5253906, -0.61279297, -2.8300781, 0.9555664, -0.26660156, -0.5004883, -2.4335938, 2.90625, 1.9423828, 3.5390625, -2.7167969, 3.5507812, 0.12408447, -1.0224609, 1.4873047, -3.6152344, 0.6850586, -2.78125, -3.3300781, 1.5439453, -2.1445312, -0.103759766, 1.4716797, 1.4541016, -0.2890625, 1.5146484, 0.3762207, -3.421875, -1.0947266, -1.1796875, 0.4897461, -0.52685547, -1.7636719, 1.5097656, 0.8808594, -1.9462891, -1.4990234, -0.38208008, 0.27929688, 1.8925781, 0.3154297, -2.125, 1.9335938, 0.46606445, -0.3935547, -0.92626953, 0.0059051514, 1.203125, -1.0332031, -0.47680664, -1.2314453, 1.1669922, -0.24121094, 0.75097656, 0.9433594, 1.78125, -0.45483398, -1.0322266, -1.8662109, 0.24731445, 2.3105469, -0.42773438, -0.61328125, -1.6367188, 1.421875, 1.5654297, 0.30786133, 0.9741211, -0.5805664, -3.5390625, 0.33276367, 0.78222656, 1.6240234, 3.4277344, -0.98046875, -1.0117188, -0.3371582, 1.3369141, -1.4130859, -1.2626953, 1.1201172, -0.39794922, -1.8662109, 1.2539062, -2.0371094, 1.5878906, -1.4912109, -1.8212891, -2.7285156, 2.0273438, 2.7167969, 2.5292969, 2.6933594, -1.4599609, -1.5615234, 1.4609375, -0.6064453, -0.099609375, 1.0439453, -2.0546875, -0.80615234, -0.41479492, 0.16479492, -1.5146484, -1.1376953, 1.4140625, -0.4567871, -1.3046875, -1.2304688, 0.4020996, -0.8095703, -0.56347656, 1.3261719, -0.7783203, 3.7402344, -2.8574219, 0.40966797, 1.5996094, 1.4111328, -2.8574219, 0.15344238, -1.1953125, 0.7128906, 1.1298828, 1.7578125, 0.97216797, -0.88964844, 0.30297852, -0.9345703, 3.1367188, -0.84814453, -0.046966553, -0.3005371, -0.4489746, 0.19946289, -2.3046875, 1.90625, 3.9589844, 1.1298828, 1.5078125, 0.3305664, -2.9941406, 1.8984375, -0.6074219, -2.9746094, -0.8354492, 0.33862305, -0.4970703, 1.0234375, 1.1191406, -4.2070312, -0.18737793, 4.0234375, -1.4033203, -0.04031372, 0.53271484, -1.2753906, 0.34057617, -1.6542969, -0.73876953, 0.16552734, 0.1574707, -0.5625, -1.8828125, 0.30419922, -1.7822266, 1.5537109, 3.5898438, -1.1035156, -1.9130859, 2.8300781, 0.35766602, 1.3994141, -0.7841797, -0.85546875, -1.359375, -0.19580078, 4.71875, 0.89990234, 1.5214844, 0.3154297, 3.0292969, -0.5805664, 0.7265625, -1.7929688, 3.3828125, -2.1347656, -1.328125, 2.609375, -2.9746094, -0.77978516, -2.4902344, 0.9560547, 0.33154297, 2.7441406, 3.2773438, -0.7895508, -0.41577148, 0.16589355, -1.3740234, -4.828125, -1.1484375, 0.9135742, -0.048583984, -0.48876953, 0.73339844, -0.51708984, -0.5908203, 0.11138916, 0.58203125, -0.6430664, 0.8076172, 0.38745117, -0.6640625, -0.6386719, -1.078125, -1.625, 0.86816406, 0.80566406, -0.2709961, 1.2832031, -5.2382812, 0.123535156, 0.3713379, -0.5078125, -0.2619629, 2.2851562, -0.07501221, 1.0410156, 0.4638672, 0.4423828, -2.8515625, 2.03125, -4.4023438, -0.05496216, 1.5644531, 0.11956787, 1.4482422, 0.8354492, -0.9086914, -0.42382812, -3.6796875, 0.52001953, -0.32714844, -0.76464844, 1.4824219, 1.0185547, -0.5854492, -0.30737305, 0.18151855, -0.05303955, 0.36694336, 1.1396484, -0.55078125, 0.41967773, -2.4628906, -1.6972656, 0.16210938, -1.9921875, -0.05215454, -2.3320312, 1.5644531, 3.5625, 1.3662109, 0.25170898, 1.5419922, -0.64404297, -0.65625, 1.5234375, -0.12200928, 2.2382812, 1.6894531, -2.3691406, -1.6748047, -3.0097656, -0.004432678, 0.19799805, 1.0439453, -2.4746094, -0.6323242, -0.7216797, 0.15100098, 1.0625, 1.9882812, 3.0332031, 1.7861328, -2.4648438, 0.6352539, 4.1367188, -1.1064453, 2.4980469, 1.3408203, 1.0761719, -0.29467773, 4.9101562, -0.53271484, -1.6689453, 3.09375, -2.3964844, -0.10394287, -0.24499512, -3.2773438, 0.9091797, -0.2487793, 0.47070312, -3.3984375, -0.8466797, -1.0117188, 2.5722656, -0.13708496, -0.5878906, -0.11218262, 1.1884766, 2.4101562, 3.2050781, 0.95996094, 2.296875, 0.6689453, 0.82128906, -0.83496094, 0.16418457, 1.1904297, -1.0380859, -0.4169922, 0.8535156, -0.9067383, -1.4892578, 4.2734375, 1.1132812, 1.1181641, -1.1767578, -0.3972168, 2.5488281, 1.9472656, 3.7929688, 0.6298828, 1.8007812, 2.9550781, 0.037200928, -0.70410156, 0.921875, 2.9160156, 1.4941406, -0.05206299, 1.5029297, -0.6464844, -1.3681641, 0.4572754, 0.6870117, 2.703125, -1.171875, 3.2128906, -0.3605957, -0.1463623, -1.6132812, -0.85498047, -0.984375, 0.0725708, -1.1904297, -0.11993408, 2.2089844, -0.90185547, 1.3564453, -0.79541016, -0.5366211, 0.95751953, -2.8007812, 1.0722656, 0.93652344, -1.2314453, -0.5214844, 0.55029297, 2.0976562, 0.017074585, 1.2675781, 1.9707031, 0.60302734, 2.8339844, 0.33984375, -0.74853516, 1.0849609, -0.18481445, 2.8691406, -0.9082031, -1.8535156, 1.4990234, -2.2246094, -3.0234375, -4.0859375, 2.4980469, 2.5566406, 1.2177734, 1.4003906, -2.71875, 1.7451172, -0.5385742, 3.5078125, -2.1386719, 2.4648438, -0.3881836, -2.1835938, -1.3447266, 0.7270508, 0.92822266, 0.59228516, 1.2216797, -1.1298828, 1.6416016, 1.0332031, 1.515625, 3.4707031, 2.6679688, 1.4003906, 0.55810547, -0.9560547, 3.6367188, 2.6152344, 1.1123047, -1.0214844, 1.0849609, 1.0888672, 0.58740234, 0.40185547, -1.6865234, 0.62109375, 1.2539062, -0.16992188, -0.11437988, -1.2314453, -0.6591797, -0.4501953, -0.35717773, 0.09899902, -1.5927734, 2.8984375, 3.5078125, 1.8183594, 1.1357422, -0.6621094, -1.6191406, 3.5058594, -0.46557617, -1.8994141, -0.71435547, -0.15344238, 0.9604492, 1.7587891, -1.1035156, 0.53125, -0.18725586, 2.4199219, -1.4765625, 0.60253906, -1.3134766, 1.8857422, -1.1923828, -0.57714844, 0.54003906, -2.3925781, 3.9082031, 0.6699219, -1.4833984, 3.0644531, -0.7373047, -0.20861816, -3.0820312, 0.47924805, -1.1220703, -1.4707031, -0.8432617, 0.60791016, 5.8164062, 0.984375, 0.7753906, -1.046875, -4.9023438, 0.070617676, -1.53125, 2.3554688, -0.26611328, -1.7119141, 0.16662598, -0.12890625, 2.1972656, -0.97558594, -1.3574219, -0.91259766, -0.51953125, 1.0488281, -0.5410156, 2.4042969, -0.93896484, 1.6289062, 1.0253906, 2.4882812, 1.8798828, 0.19677734, 1.8642578, 3.9609375, 0.50683594, -3.4238281, 1.4355469, 0.6113281, 1.5253906, 0.03778076, -0.30200195, 0.40551758, -0.7416992, -0.11193848, -1.359375, -2.03125]}, "B000BWFTJE": {"id": "B000BWFTJE", "original": "Brand: King Kooker\nName: King Kooker 24WC 12\" Portable Propane Outdoor Cooker with Wok, 18.5\" L x 8\" H x 18.5\" W, Black\nDescription: \nFeatures: Sport Type: Camping & Hiking\nCountry of origin : United States\nPackage weight : 10 Lbs\nProduct type : Outdoor Living\nPortable propane outdoor cooker with 24-inch bolt-together frame\n", "embedding": [-3.1269531, 0.7998047, 2.4511719, -0.7753906, -1.2998047, 0.38305664, 0.9301758, 0.3762207, -3.2734375, 1.5078125, 2.2265625, 0.095581055, 0.39672852, -2.578125, 1.3408203, 0.74072266, -1.8994141, 0.7871094, 0.6640625, 0.046051025, 2.328125, 0.1385498, 0.4675293, -1.8115234, 2.7421875, -0.35546875, 5.2460938, -3.7226562, -0.14916992, -1.9082031, 1.3457031, 0.7792969, 2.7109375, 1.4882812, -1.0566406, -0.65966797, -2.3496094, 1.3154297, -2.5644531, 1.6152344, -0.5307617, -1.7988281, -0.35375977, 1.2675781, -1.5761719, -2.3554688, 0.6347656, -1.1220703, -0.9213867, -0.22436523, 1.3779297, 0.013694763, 1.0390625, 1.5029297, -3.0898438, 1, -1.3886719, -1.3193359, 1.3300781, 0.016647339, 0.9399414, -0.9892578, -1.1425781, 1.7128906, -0.93896484, 2.0351562, 1.3027344, -0.1496582, 1.0966797, 0.68603516, 1.8759766, -0.8051758, -1.0273438, -1.0917969, -0.75927734, -0.9248047, -2.2988281, 0.6455078, 1.1679688, 0.9555664, -0.609375, 1.203125, -0.024627686, -2.7792969, -0.77246094, -1.4882812, -0.011108398, -1.1308594, -0.29711914, 2.4101562, -2.1503906, 1.5478516, -1.4003906, -3.3984375, 2.6425781, -0.4050293, -1.6474609, -0.1105957, 2.0058594, 0.8144531, 0.8691406, -0.875, 0.21447754, -0.4873047, -2.2949219, 0.1418457, 1.2158203, -0.6074219, -2.7421875, 1.3554688, -1.7695312, -2.7011719, 0.6201172, -0.2915039, 0.4033203, 1.3134766, -0.6635742, 1.796875, 0.87841797, 0.13427734, 4.015625, -1.0869141, 0.97998047, -0.9760742, 1.7304688, -0.5703125, -1.3359375, 0.9926758, 4.1015625, -1.0986328, 0.54345703, 0.86279297, 2.8398438, -0.35009766, -0.8730469, -2.3515625, 1.0996094, -1.9111328, -3.2011719, 0.6503906, -2.3945312, -0.84375, 2.7578125, -1.5292969, -4.1796875, -2.09375, -0.34301758, 0.98779297, -0.8486328, -0.7001953, -0.81103516, -0.4375, 0.5317383, 0.63671875, 1.6201172, -0.07543945, -1.6142578, -2.78125, 2.7597656, 0.72265625, 1.2363281, -0.46948242, -1.0966797, 1.9228516, 0.08874512, 0.1628418, -0.27514648, 1.2158203, -0.53271484, 1.0898438, -0.6748047, -1.4970703, 0.5410156, 0.13049316, -0.17834473, 0.15527344, -1.6992188, 1.0068359, 1.2236328, 0.79052734, -0.79248047, -4.6484375, -0.21887207, 1.8779297, 0.79541016, -1.6699219, -2.8847656, -2.3398438, 0.15405273, -1.015625, -0.69091797, 1.4130859, -1.2490234, -0.34375, 0.37426758, -1.1445312, -0.79003906, -1.8242188, 1.015625, 3.4472656, -0.7314453, -1.4892578, 1.4277344, -0.6538086, -1.9736328, -0.052520752, 1.0283203, -1.5009766, 2.2128906, 2.7929688, 1.0820312, -1.5185547, 1.5400391, 0.3305664, -2.0371094, -3.9179688, 0.16723633, 1.1572266, 1.7099609, 2.4101562, -0.2993164, -0.66259766, -0.87109375, 0.10369873, -0.95458984, 2.0136719, 1.6464844, 1.2119141, -0.42822266, -1.3183594, 1.7070312, 0.0715332, -0.4404297, 1.6806641, -1.4931641, 2.5976562, 2.4257812, -1.0644531, -0.011528015, 0.85791016, 1.0332031, -1.7568359, 0.67871094, -1.6982422, -3.2714844, -0.33911133, -1.1308594, 0.9243164, 0.73876953, 0.80029297, -0.84375, 0.71533203, -2.7597656, 0.20275879, 0.124938965, 1.6289062, 1.2080078, -0.2006836, -0.2265625, -1.2324219, 0.8515625, 1.6904297, -1.5927734, 0.92285156, -0.054382324, -0.56347656, 2.5957031, 1.09375, -3.1054688, -0.49658203, -0.13024902, 1.8828125, 2.1054688, 0.1772461, 1.5078125, 0.18688965, -0.38256836, 2.6894531, 0.36767578, 2.2148438, 0.017700195, -1.1992188, 0.5703125, -2.4882812, 0.15673828, 0.48168945, 0.023666382, -0.8383789, -0.7817383, 3.9335938, 5.5898438, -0.24804688, -2.3730469, 2.7851562, -0.8129883, 1.9335938, -0.08831787, -0.7182617, -0.23950195, -0.32202148, 0.99316406, 2.6640625, -0.31860352, 1.0380859, -2.125, -1.453125, 1.2509766, -1.7841797, 1.6240234, -0.28076172, -0.4482422, -0.6352539, -2.5644531, 2.0117188, -0.67089844, 0.08483887, 1.4746094, -3.6640625, -0.14477539, 2.6582031, -1.1669922, 1.3193359, 1.5957031, -2.7402344, 0.24621582, 2.9355469, 0.7817383, 2.3398438, 0.7998047, -1.0117188, -0.8588867, -0.92626953, 0.2619629, 0.0063056946, -2.7480469, -0.44140625, 0.035125732, -1.3232422, 1.0224609, -1.4306641, 0.34985352, 1.9072266, -0.7788086, -0.5649414, -1.5732422, -5.1796875, -1.0996094, -0.17126465, -1.9404297, -1.3193359, -0.15148926, 0.7661133, -0.86816406, -5.40625, 0.8823242, 1.0927734, 1.203125, 1.2929688, -2.4902344, 0.8754883, 1.7304688, -2.2675781, -1.1210938, -1.3681641, -1.0634766, -3.7109375, 1.8095703, -1.7236328, 2.5292969, -0.7519531, 1.1992188, 0.56396484, -1.6259766, -3.1445312, -0.9501953, 0.3996582, 0.3701172, 5.53125, -1.1269531, 1.5820312, -1.2070312, -0.5864258, 1.1953125, -1.1025391, -1.1552734, 0.14050293, -0.37329102, -0.35327148, -0.40795898, -2.7773438, -1.0205078, -2.1464844, -0.29760742, -1.6533203, 1.9560547, -0.34448242, 0.88720703, -2.1992188, 0.67529297, -2.8808594, 1.5449219, -0.5522461, -1.4453125, -3.1816406, -1.0869141, -2.1601562, -1.0576172, -0.38305664, 2.0898438, 0.13891602, -0.03086853, 2.2597656, -0.49072266, 1.5039062, 0.07519531, -2.9707031, 3.890625, 0.88964844, -0.10687256, 1.5292969, -3.0019531, -1.4628906, -1.0839844, 0.671875, 4.4140625, 0.1171875, 2.8378906, -1.3574219, 2.3652344, -1.3857422, 3.3828125, -1.1259766, -0.5385742, 1.875, 3.6523438, -0.16931152, -0.8149414, 1.8242188, 0.27954102, -2.7597656, 0.83691406, 0.91845703, 0.87109375, 0.7402344, 2.3242188, 1.6796875, -1.5986328, 0.076538086, 1.4033203, 3.6269531, 1.1513672, 1.3740234, -0.06149292, -1.0820312, 0.26733398, 1.0507812, 1.2099609, 1.0654297, 3.7441406, 3.3183594, 1.7177734, -1.7138672, -1.125, -0.58496094, 3.3984375, 0.9433594, 2.6738281, -0.8125, 0.25439453, -0.07745361, -1.3007812, 1.1513672, -1.6728516, 2.5058594, 2.1347656, -0.11633301, -0.9448242, 1.2089844, -0.71484375, -0.60302734, -2.7148438, 1.0546875, -2.0371094, -0.49145508, -0.17980957, -1.7880859, -0.5048828, -3.1484375, 2.0664062, 1.4892578, 0.29077148, 0.83154297, 1.8818359, 0.7495117, -1.3154297, -1.5322266, 0.29711914, -3.1777344, 1.6240234, 0.52783203, -1.2148438, 0.9472656, -0.22387695, 0.97753906, 0.9555664, -0.7714844, 0.68603516, 1.4882812, -0.52246094, 0.6279297, -0.16577148, 0.8701172, 0.6044922, -2.0527344, 0.5756836, -2.9023438, -0.5385742, 1.0302734, -2.9355469, -1.1152344, -0.6850586, -0.9223633, 1.6728516, -1.1816406, 3.2148438, -2.7050781, 0.18933105, 1.1064453, -1.7275391, -0.7392578, -0.9785156, -2.9140625, 2.0273438, -2.0351562, -0.49291992, 0.70654297, -1.7285156, 0.35742188, 1.4345703, 1.5175781, -0.7685547, -0.40551758, -2.4628906, 1.5078125, -2.484375, 1.8574219, 0.1907959, -1.2265625, -2.6992188, -2.5605469, 0.9902344, -0.9423828, 1.8925781, 1.1777344, -2.8769531, -0.17822266, -0.77783203, 1.0332031, -0.3322754, 1.2158203, 0.40063477, 0.38793945, 0.23425293, -1.8271484, 1.8388672, 3.0449219, -0.24572754, 1.7304688, 3.640625, 0.71533203, -1.0097656, -0.19750977, 0.21154785, 2.7558594, -0.25390625, -1.515625, -2.4023438, 0.95166016, -0.8017578, -1.1513672, 0.3815918, -0.28833008, 0.41918945, 0.84716797, 0.7861328, 1.3232422, 1.9775391, 0.57958984, -0.79248047, 1.2988281, 0.67871094, -0.6850586, 0.2199707, -0.59521484, -0.02319336, -3.0429688, 1.4072266, -1.4013672, -1.5634766, -1.0175781, 0.3623047, -1.8134766, 2.484375, 3.3164062, 2.2324219, 1.9365234, -2.2402344, -3.0273438, -1.3349609, 0.34350586, -0.92822266, 1.0009766, 0.84375, 0.10998535, 1.3369141, 0.7705078, -1.5078125, -0.33764648, 1.0878906, 1.8857422, 0.51123047, -2.3261719, 0.9951172, 0.16723633, -0.9189453, -1.3925781, -0.40649414, 2.7871094, -3.4257812, -1.7099609, 1.1884766, 0.32177734, -3.5644531, -0.1451416, -1.2783203, -0.6772461, 0.1628418, -2.3105469, 1.1738281, -0.12878418, 2.4550781, 0.052520752, 2.5195312, -0.22570801, -0.67626953, 1.1464844, 0.89746094, -2.171875, -1.6298828, -0.011260986, 0.9711914, 1.3378906, 3.3261719, 1.2363281, -0.81640625, 1.1816406, 1.3701172, -0.8769531, -2.2480469, -1.3388672, -1.0214844, 2.2402344, -1.1533203, -2.5644531, 0.09301758, 1.3779297, -0.16296387, 3.6230469, 0.18688965, -1.4785156, -2.4121094, -3.3535156, -0.5878906, -1.6279297, -1.6650391, 0.8691406, -1.3779297, 0.8432617, -2.2109375, 0.9868164, 2.3027344, -1.1875, -1.1152344, 1.2685547, -2.9511719, -1.0332031, 0.28027344, -0.05126953, -4.6875, -1.0263672, 1.9853516, 2.5976562, 0.7314453, 1.5175781, -0.04852295, -0.9082031, 1.1689453, -1.3847656, 1.5654297, -2.2851562, 0.17700195, 0.9921875, -0.8222656, 0.64990234, -3.5976562, 1.3408203, -1.921875, 1.7451172, 0.3149414, -1.2685547, -0.27197266, 0.9589844, -1.9511719, -1.2744141, -2.3867188, 0.29956055, 1.5986328, -1.2470703, 0.23583984, -2.25, -1.0009766, -1.3964844, -2.2578125, -2.0039062, -0.80859375, -0.51953125, -1.0654297, -0.38232422, 1.2109375, -1.3242188, -1.9511719, -0.6948242, -0.7285156, -1.6621094, -1.1054688, -1.7392578, 2.5527344, -0.5390625, -0.044891357, 0.42456055, -1.2744141, 1.2333984, 1.2734375, 1.8007812, -0.22717285, 3.0488281, -1.3378906, -2.3242188, 0.9868164, -1.5488281, 1.2148438, 0.13928223, -3.4238281, -1.125, -0.60498047, 1.6767578, -0.4033203, -0.09851074, 0.57714844, 0.65771484, 0.40722656, 0.46044922, 1.9716797, 0.21691895, 0.091674805, 2.0019531, -1.7607422, 1.6503906, -1.3164062, -0.9223633, 0.4555664, -1.0703125, -1.0986328, -0.015159607, 0.7885742, 2.4140625, 0.50927734, -0.9448242, 0.62890625, 0.32299805, -1.6513672, 0.8364258, -2.8535156, 3.2871094, 1.6347656, -2.6738281, -2.1640625, -1.8164062, 0.21154785, 2.21875, -0.7475586, -3.9726562, -1.5478516, -0.13476562, 1.3388672, -0.8120117, 2.5351562, 2.8535156, 0.4074707, -0.4621582, 2.2792969, 2.9785156, 0.13012695, 0.10870361, -0.035247803, 0.4284668, -1.7216797, 4.8242188, 1.3115234, 0.8457031, -0.31762695, -1.0673828, 1.6738281, -1.234375, -1.5742188, 1.1201172, -1.2041016, -0.30029297, -2.5644531, -0.6269531, -2.5585938, 0.17102051, 0.5029297, -0.51464844, 0.2602539, -0.9868164, 0.099731445, 0.27270508, 0.30859375, 1.2451172, -2.2226562, 0.65966797, 0.55908203, 1.1015625, 2.0898438, 0.24047852, 2.3730469, 0.30200195, -0.2644043, -0.7055664, 1.7070312, 0.2644043, 2.2617188, 3.8320312, 0.4194336, 2.3808594, 0.95654297, 1.9931641, 0.87109375, 1.3828125, 3.8964844, -0.28344727, 0.7006836, 1.7490234, 1.6494141, 0.14465332, -1.9755859, 1.8720703, 0.6586914, 1.2802734, 1.2822266, 1.6396484, 0.4284668, -1.9082031, 1.4804688, -0.8286133, 0.9169922, -0.28295898, 0.9008789, 1.4326172, 1.265625, 1.2382812, -0.6923828, 0.5024414, -2.2304688, 1.2753906, -0.20532227, 0.6230469, 1.0546875, -2.1796875, -0.9223633, 0.62109375, -2.640625, -1.8017578, 1.6425781, 0.4897461, 0.16918945, -0.29345703, 1.4082031, 2.3925781, -0.037231445, 1.2060547, -0.27954102, 1.3251953, 0.85498047, 1.3857422, 1.046875, -0.9628906, 2.7304688, 1.5224609, -2.3183594, -3.2109375, 1.4238281, 0.8251953, 0.7861328, 1.5478516, -1.6826172, 1.6679688, 0.6850586, -0.53808594, -2.1542969, 2.2851562, -0.88623047, -2.5039062, -0.9316406, -0.45654297, -0.03665161, 3.2480469, 1.8779297, 0.2770996, 1.0117188, 0.7607422, 2.6171875, 1.8056641, 0.5131836, -0.41796875, 1.6259766, -1.3134766, 2.9492188, 0.24414062, 1.9423828, -0.38671875, 3.03125, 1.9003906, 2.3515625, 1.1660156, -2.7265625, 0.081726074, 0.5410156, 0.93359375, -0.72558594, -2.2148438, -1.9707031, -0.6401367, -0.61816406, -1.7939453, -1.8046875, 3.6347656, 2.9492188, 0.82177734, 1.2666016, 1.4453125, -0.25195312, 1.3525391, -1.5224609, -0.70947266, -1.8496094, -0.9042969, 0.95458984, 0.98779297, -1.6943359, 0.49804688, 0.63916016, 1.4375, -0.84521484, -0.8935547, -1.7158203, 0.17370605, -1.5507812, 1.3564453, -0.9638672, -2.3496094, 1.109375, 0.30395508, 0.9951172, 2.7929688, 0.31469727, 1.4443359, -0.2788086, 0.24389648, 0.21044922, 1.0556641, -0.85595703, -0.20861816, 2.0488281, -1.8466797, -0.70214844, -1.7431641, -4.2890625, -2.8359375, -2.3125, 1.9013672, -0.11956787, -1.4072266, 0.84228516, 1.2324219, 1.6796875, -0.3256836, -0.3190918, 0.7651367, -0.4543457, 1.5029297, -0.64404297, 0.14831543, 1.0507812, 0.36108398, -0.87158203, 0.74853516, 2.2773438, 1.1386719, 0.57666016, 0.24206543, -0.3959961, -3.1191406, 0.83496094, 1.1591797, 0.29760742, -1.8339844, -1.1347656, 1.8076172, 0.34033203, -0.10546875, -2.34375, -3.5273438]}, "B01BEY69FA": {"id": "B01BEY69FA", "original": "Brand: Peaktop\nName: Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28\" x 28\", Gray\nDescription: \nFeatures: STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space.\nINCLUDES: 6. 6 lbs Lava Rock and PVC Cover\nAdjustable flames are the perfect addition to light up the garden.\nBURNING AREA: (W) 16. 93\" x (L) 16. 93\" x (H) 2. 95\"; BTU: 40, 000; ETL-listed\nDIMENSIONS: (W) 28\" x (L) 28\" x (H) 9. 05\" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA\n", "embedding": [-0.1895752, 1.1826172, 2.0390625, -2.8339844, -0.21875, 0.6171875, 0.640625, -3.2167969, -0.5732422, 0.79589844, -0.5263672, 0.46923828, -0.48486328, -4.2265625, 2.7539062, 0.8041992, -0.3857422, 1.9609375, 1.9404297, 0.2409668, 3.3867188, 0.21948242, 0.45581055, -0.6328125, 1.3798828, -0.71533203, 3.453125, -4.9140625, -1.3525391, -1.1523438, 0.78027344, 0.9580078, -0.6582031, 1.7314453, -3.0703125, -1.7265625, -0.2434082, 1.234375, -4.3320312, 0.6923828, -2.5996094, -1.7910156, 2.7304688, 1.9658203, -2.2363281, -0.8154297, 1.8154297, -0.8149414, 0.01663208, -2.2988281, 0.64208984, 1.6445312, -1.0410156, -0.7871094, 0.19897461, 1.3232422, -1.0048828, -2.2832031, 2.6972656, 1.4580078, 0.5546875, -1.4589844, -0.6640625, 2.4980469, -2.6679688, 1.0185547, -0.91503906, 0.42138672, 0.3190918, -0.47680664, 1.5068359, 1.1630859, -0.7138672, 0.36206055, -0.9238281, -2.234375, -2.7597656, 1.2089844, 3.2929688, -2.4375, -0.054473877, 3.5449219, 2.1035156, -1.4804688, -1.0048828, -0.46923828, -0.78027344, 0.011497498, -0.5136719, 0.94628906, 0.22912598, 2.6054688, -0.9379883, -3.2519531, 1.515625, 0.04031372, -0.0019874573, 1.9931641, 1.5898438, 1.7509766, 1.3779297, 0.4399414, 0.45874023, -1.2998047, -2.34375, -0.52246094, 1.0400391, -0.08496094, -0.1697998, 1.3535156, -2.1210938, 0.9301758, 2.7128906, -1.7695312, 0.4104004, 0.31396484, 1.1904297, 0.10357666, 3.7675781, 1.8779297, 5.0390625, -0.13757324, 0.60058594, -1.7587891, 1.6230469, -0.21850586, -2.0742188, 1.0439453, 1.4238281, -1.1943359, 1.34375, -0.71533203, 1.2255859, 0.33203125, -1.0878906, -0.38378906, -2.6308594, -1.5400391, -2.5761719, -0.55371094, -2.6699219, -0.1385498, 0.7026367, -0.32910156, -3.796875, 0.3359375, -2.3203125, 2.6464844, -0.119384766, -3, 0.93359375, -1.3193359, 0.26904297, -1.5507812, 1.5068359, -1.7177734, 1.2011719, -2.6132812, 2.2617188, 1.0722656, 1.0351562, -0.66796875, -1.7451172, 1.2265625, -1.4160156, -2.1777344, 1.6796875, 0.37963867, 0.98876953, 1.5400391, -1.5117188, -1.4482422, -0.3996582, 0.47314453, 0.26708984, -1.6132812, 0.08325195, 2.2871094, 2.0214844, 2.3457031, -1.2861328, 0.20837402, 1.2529297, 1.4824219, 1.0839844, -0.19714355, -1.7050781, -3.2285156, -0.8491211, -0.68408203, -0.48461914, 0.11853027, -2.7011719, -1.7333984, -2.2304688, -1.5195312, -2.8222656, -1.6181641, 2.3535156, 0.36694336, -1.4335938, 0.828125, -1.1943359, -0.32958984, -2.2441406, -0.60839844, -0.12042236, -0.5864258, 2.7324219, -0.11462402, 0.9223633, -0.9038086, 2.0234375, 1.6767578, 1.5263672, 0.1751709, 0.57373047, 1.4013672, 0.95458984, 1.3583984, 1.1210938, 0.3161621, 1.4423828, 3.0429688, 0.09967041, 1.7880859, 0.0019760132, 0.71191406, -2.5058594, -2.078125, 2.6445312, 1.7978516, 0.56152344, 1.1279297, -1.5351562, 3.53125, -0.06512451, -1.7119141, 1.6464844, 0.2487793, 1.5283203, -2.6992188, -2.3378906, -0.4645996, -2.0273438, 0.3701172, 0.3935547, 1.1416016, 2.1601562, -0.29125977, -1.46875, -0.47705078, 1.1738281, -0.47851562, 1.0390625, -0.44604492, 0.009361267, 2.1445312, 1.390625, -1.8388672, 0.6616211, 0.20410156, -0.9316406, 1.3007812, -0.1352539, -0.0087890625, 2.0390625, -0.67626953, -3.6210938, 0.21496582, -0.86376953, 0.80322266, 2.0488281, 0.6982422, 1.1015625, -0.13745117, -0.25341797, 1.6279297, 0.50683594, 3.65625, 0.20703125, -2.1992188, 2.3710938, -2.5839844, 0.51708984, -0.23669434, 1.7822266, 0.31201172, -0.3881836, -0.2800293, 4.7578125, -1.0205078, -2.6308594, 2.2636719, 0.29125977, 1.1972656, 0.7861328, -0.7807617, 0.3190918, -0.37963867, 0.5332031, 1.7519531, -0.32836914, 1.5869141, -1.1777344, -0.33520508, 1.7412109, -3.1035156, 1.1308594, 0.9946289, -0.52441406, 0.051361084, -1.4404297, -0.03173828, -1.6201172, -2.4042969, 1.7939453, -4.34375, 0.8955078, 0.6166992, -0.3486328, 1.5166016, -1.7802734, -2.3847656, 1.1728516, 3.0878906, -2.3515625, 1.5185547, 0.18688965, -0.82958984, -2.1425781, -2.234375, 1.1445312, -2.7792969, -2.3144531, -1.5185547, -0.95166016, 0.29370117, -0.40698242, -2.1445312, -0.25854492, 0.48608398, -0.9526367, 0.3408203, -0.88378906, -3.4277344, 0.7709961, 0.78759766, -3.1699219, 0.4326172, 0.9008789, 2.6542969, -1.7490234, -1.8691406, -0.6118164, 0.53466797, 0.30810547, 1.7275391, -1.2021484, 0.8149414, -1.3525391, 0.47338867, 0.52783203, -2.9121094, 0.46044922, -2.1484375, 0.1809082, -4.5117188, -0.24255371, -0.85791016, 0.4321289, 1.1679688, 0.9248047, -2.3730469, -1.6074219, -0.3305664, -1.4619141, 4.7070312, -0.90966797, 0.9580078, -2.5332031, -2.4375, 1.3017578, -2.3046875, -2.3027344, -0.9794922, -1.4072266, -1.1845703, -1.9892578, -1.5449219, 0.45703125, -1.25, 0.48242188, -0.31054688, -0.68359375, -0.6381836, 0.7246094, -1.0126953, 0.7998047, -1.7441406, 0.6274414, -0.6699219, 0.36889648, -1.6894531, -1.8173828, -1.6611328, -2.4492188, -0.21728516, 1.7109375, 0.40625, 0.54296875, 1.65625, -1.7255859, 1.4511719, 1.8896484, -3.7949219, 0.73339844, 4.0703125, 0.8671875, 1.1142578, -2.1582031, -1.3935547, -1.6835938, 0.21862793, 4.1054688, -0.875, -0.7050781, 0.29760742, -0.1159668, -0.77490234, -0.5283203, -0.5805664, -0.54003906, 0.10852051, 2.3554688, -0.97021484, 0.21044922, 1.3769531, 3.3105469, -3.890625, -0.83740234, 1.7148438, 1.2802734, 1.7050781, 0.012779236, 0.9350586, 0.5888672, 0.3474121, -0.23352051, 1.8164062, 2.8320312, -1.7353516, -0.35327148, 1.5449219, 0.9741211, 2.7773438, 1.4667969, 1.2509766, 0.40844727, 2.8261719, -1.8828125, -2.578125, 1.0029297, 0.42236328, 2.1640625, 0.3852539, 2.2382812, -0.76708984, -0.23156738, -0.03967285, 0.5053711, 0.13684082, -1.3720703, 1.2929688, 1.7714844, 0.5102539, -1.2529297, 0.9682617, 0.92089844, -0.18811035, -1.7089844, -0.015686035, -0.02708435, -0.18029785, 1.0078125, -0.83251953, 1.4296875, -0.2692871, 3.2714844, -0.3046875, -1.8730469, 1.984375, 2.7324219, -0.015701294, -1.5947266, 0.1060791, -0.8847656, -0.18249512, 4.125, 1.234375, -0.85839844, 0.27514648, -3.4511719, 2.2382812, 2.5039062, 0.9995117, 0.30664062, 2.5449219, 0.12817383, -0.22888184, 0.7416992, 2.046875, 0.98291016, -2.8769531, 1.6533203, -1.6181641, -0.33569336, 1.6142578, -1.6162109, -1.4951172, 1.71875, -0.6948242, 2.1738281, -0.43359375, 2.546875, 1.0849609, 0.70703125, 3.9375, 0.12573242, -0.09375, -1.2988281, -5.6875, -0.43041992, -1.2861328, -0.004497528, 0.76123047, 0.16796875, -0.5126953, 0.5991211, -1.0693359, -5.265625, -0.97753906, -2.0078125, -0.11999512, -4.2226562, 0.089660645, -1.0175781, -0.17089844, -0.71728516, -1.7080078, -0.009361267, -0.33544922, 1.0849609, 1.8837891, -0.8666992, 0.007286072, -0.21533203, 0.5673828, -0.86376953, -0.03125, -0.103271484, -0.9794922, 0.42016602, -1.7226562, 2.75, 2.2578125, -0.9970703, 2.0097656, 3.0859375, 1.2685547, -0.9824219, 1.0712891, 0.74316406, 4.2890625, -0.8256836, -3.3125, -0.3083496, 0.33691406, 0.7836914, -2.09375, -0.7392578, 0.23571777, -2.1523438, 2.0136719, 0.5175781, 0.5913086, 0.124816895, -0.43823242, -2.3730469, 0.15405273, 0.13305664, -1.2988281, 1.2568359, -0.45996094, 0.20007324, -2.0488281, -0.13574219, -2.9238281, 1.4882812, -0.95996094, -0.6220703, -2.5566406, 1.8300781, 1.8417969, 1.7509766, 2.03125, -1.5498047, -2.0722656, -0.66748047, 0.06677246, 1.1660156, -0.09094238, 0.018096924, 0.4555664, 2.6464844, 0.89501953, -0.53222656, 0.04208374, 2.1601562, -1.3417969, 1.0947266, -0.5205078, -0.6386719, -0.5449219, -1.7841797, -0.30029297, -0.7651367, 1.2783203, -0.35766602, -0.013374329, -2.2363281, -0.25024414, -3.2363281, 1.2177734, 0.40673828, -0.6220703, 1.3564453, 1.6591797, 1.6972656, 0.6274414, 2.8046875, 0.64208984, 2.5273438, -1.8164062, -1.7509766, -1.4697266, 0.043151855, -3.0449219, -0.77734375, 1.2167969, 2.8632812, -0.15722656, 0.4326172, 1.1611328, -1.5732422, 3.5351562, 1.0302734, -1.1132812, -0.8466797, -1.2617188, -0.94091797, 1.6611328, 0.050598145, -3.046875, -0.49609375, 1.1992188, 0.6972656, 2.8496094, 0.6586914, -0.85595703, -0.19250488, -1.9697266, -1.3330078, 0.3474121, -0.84716797, -0.80029297, -0.19921875, 0.57910156, -1.90625, 0.66015625, -0.10784912, -1.2480469, -1.6816406, 2.2148438, 1.2353516, -1.1142578, -1.8671875, 0.5053711, -2.2363281, 0.9609375, 0.47021484, -0.23144531, 1.8691406, -1.0400391, 1.9072266, -2.5839844, -0.60009766, -0.6694336, 1.6630859, -2.0820312, 1.0878906, 2.6464844, 0.68896484, -0.07537842, -2.3261719, 0.17626953, -0.42895508, 2.4179688, -0.8154297, -0.24145508, -1.1240234, -0.31689453, -1.7607422, -2.3222656, -0.60791016, -0.43115234, -1.8857422, 0.52246094, -1.8046875, -0.38793945, 0.3671875, 1.3271484, 0.7871094, -0.86376953, -0.085998535, -2.1914062, -0.8779297, -1.3320312, 0.17614746, 0.6791992, 0.07543945, 1.1572266, -1.2021484, -1.8642578, -3.265625, -1.4599609, 1.9580078, -2.125, 1.5664062, 0.4958496, -0.27246094, 1.6220703, 3.8769531, 0.3527832, -0.8876953, 1.4521484, -0.62597656, 0.05984497, 1.7138672, -0.97216797, 1.5195312, 0.81152344, 0.32788086, 0.8261719, 0.2680664, 0.18518066, -1.1484375, 1.4296875, -0.012168884, 0.11102295, 1.6972656, -0.14050293, 1.1855469, 1.9306641, 1.1591797, 0.9379883, -1.9589844, -1.8662109, -1.3154297, -0.3671875, -1.1474609, -2.7832031, -1.140625, -0.43579102, 0.7998047, 1.3808594, 0.042297363, 0.55322266, 1.6806641, 0.085998535, -1.6152344, 1.5136719, -1.0703125, 1.5644531, -0.009490967, -1.7802734, -2.9042969, -3.3632812, 0.80029297, 1.9013672, -0.13049316, 0.61279297, -1.2666016, -2.3847656, 0.6777344, 1.1992188, 0.9526367, 2.640625, 1.4658203, -1.6601562, 1.6132812, 2.7128906, 0.46728516, 3.0664062, -0.0637207, 1.5517578, -0.3972168, 1.8242188, 3.1679688, -2.4609375, 1.4277344, 0.04446411, 0.20288086, -2.2636719, -0.7211914, 1.3847656, -2.8691406, 0.27319336, -1.84375, -1.3466797, -3.8613281, 0.7285156, 0.9082031, 0.6665039, -0.25024414, 0.75390625, -0.7114258, 1.2880859, 2.0546875, -0.42749023, -0.53808594, 0.11071777, -1.5273438, 0.08886719, 2.8339844, -0.93066406, 0.059783936, 0.038238525, -0.6225586, -1.4951172, 0.53466797, -1.4726562, 1.53125, 1.2802734, 2.9824219, 1.5507812, 1.7236328, 1.9404297, -0.3408203, 2.0957031, 2.5332031, -0.51904297, 0.6254883, 1.7724609, 3.0703125, -0.66845703, 0.11578369, -0.1418457, 1.1259766, -1.6425781, -0.042144775, -1.0927734, 0.13879395, -2.0488281, 1.3193359, -1.6650391, 1.2763672, -2.0332031, 1.3476562, -0.72558594, -0.0546875, -1.1074219, -0.50927734, 0.8208008, -0.9267578, -0.5175781, 0.5385742, 0.0029296875, 0.015357971, -1.8496094, 0.43286133, 0.10223389, -3.3515625, -0.37963867, 2.6835938, 1.7333984, 1.4589844, -1.3232422, 3.6855469, 1.3388672, 2.1953125, -0.35546875, 0.7675781, 0.51171875, -0.037261963, 2.1738281, 0.2680664, -2.1015625, 0.03314209, 0.80029297, -2.546875, -4.1796875, 0.49389648, -0.24975586, -0.5395508, 0.9921875, -1.1191406, 1.515625, -0.033966064, 1.6816406, -3.1679688, 0.33251953, -0.20349121, -0.88427734, 0.13305664, 0.07678223, -0.2434082, 1.5185547, 1.4423828, 1.1269531, 1.4472656, 1.5341797, 1.5097656, 1.3847656, 2.1191406, -1.0478516, 1.3427734, -2.03125, 2.8652344, 1.8349609, -0.13793945, 0.87402344, 0.9682617, 3.1601562, 0.11260986, 1.0751953, -1.6923828, 0.5097656, -1.1748047, -2.0722656, -1.5068359, -1.8505859, -2.4570312, -0.61376953, 0.96728516, 0.6767578, -3.0527344, 2.4140625, 1.1132812, -0.40185547, -0.9580078, 1.5185547, -1.1425781, 1.4257812, 0.5805664, -1.6728516, 0.49389648, 0.19885254, 1.71875, -1.2490234, -0.85791016, 0.7421875, 1.7880859, 0.70703125, 0.47216797, -1.7724609, 0.4116211, -0.98828125, -0.5258789, 2.9316406, -1.140625, 0.63671875, -0.32739258, -0.18029785, 0.36694336, 1.2392578, 0.6425781, -1.7695312, 0.42041016, -2.0175781, 0.08886719, 1.3076172, -3.7890625, 0.06311035, 4.90625, 1.1943359, 0.4777832, -0.9638672, -3.5527344, -1.8339844, 0.6040039, 2.4160156, -1.8671875, -0.68310547, -0.66308594, -0.2854004, 2.7714844, 0.4580078, 0.11077881, -1.8271484, -1.9072266, 2.6679688, 0.27929688, 2.0292969, -0.5214844, 2.1445312, 0.48608398, 2.0019531, 3.3300781, -0.53759766, 1.0117188, 1.1855469, 0.23706055, -3.9570312, -0.42700195, -0.2175293, 1.2070312, 1.2939453, -0.6972656, 0.1295166, -0.27539062, -1.6611328, -4.515625, -0.7714844]}, "B074QQW4PC": {"id": "B074QQW4PC", "original": "Brand: Cuisinart\nName: Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill\nDescription: \nFeatures: COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power\nCOOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack\nCAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat\nPREP SPACE: Two 18\" x 13\" side tables provide ample space for food prep\nCONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.\n", "embedding": [-2.046875, 1.0800781, 3.6503906, -0.19543457, 0.06011963, -0.7084961, 0.8847656, -3.0625, -0.7451172, 2.0566406, 1.8886719, 0.5629883, 0.3918457, -1.3515625, 0.6801758, -1.2587891, 2.4101562, -0.22790527, -0.140625, 1.3027344, 0.49682617, -0.7426758, 3.3144531, -2.1503906, -1.4287109, 2.1191406, 4.6015625, -3.0390625, -0.97509766, -2.8652344, 1.1298828, -0.40673828, 0.9116211, 0.8496094, -3.2734375, -1.4746094, -1.9667969, 1.5117188, -2.2792969, -0.19189453, 1.1259766, -0.5263672, 1.5244141, 0.28344727, -1.6865234, 0.51123047, 1.4707031, 2.1914062, -2.0253906, 0.20361328, 2.2246094, 0.6582031, 0.31420898, 0.5439453, -1.1923828, 3.3398438, 0.23803711, -0.078186035, -0.085510254, -0.48657227, 2.9335938, 0.4116211, -1.9726562, -0.42163086, -1.25, 0.0836792, 0.6357422, 1.4697266, 0.23327637, 1.8007812, 2.8144531, -2.1191406, -1.8886719, 1.2265625, -0.76660156, -2.3125, -2.5332031, 1.9492188, 0.49926758, 0.2368164, -1.09375, 1.7294922, 0.8417969, -2.7558594, 0.32128906, 0.42358398, 0.24682617, -2.1660156, 1.4726562, 0.8198242, 0.27514648, 2.703125, -2.0878906, -2.90625, 1.6962891, -1.6162109, 0.08581543, 2.6503906, 0.094177246, 0.6743164, -0.48168945, -0.3166504, -0.78271484, -0.17736816, -2.8632812, -0.9770508, 1.8251953, 0.01626587, -4.2109375, 1.2646484, -0.8095703, -2.1171875, 0.61816406, 0.6694336, 1.2382812, 0.8432617, 0.1328125, 0.9770508, 1.5605469, -1.0429688, 2.703125, 0.5073242, 0.05154419, -0.54003906, -1.3369141, 1.2304688, -1.1669922, 1.5009766, 5.125, -2.25, -0.49487305, 0.5415039, 3.3847656, 0.4951172, -1.7402344, -2.7402344, -2.7890625, -1.8916016, -2.8515625, 1.8867188, -2.9902344, 1.0664062, 0.9711914, 0.045074463, -3.8925781, -1.9970703, -0.1538086, 1.9394531, -0.3996582, -1.3183594, 0.71972656, -1.8642578, -1.0244141, -1.4726562, 2.0722656, -2.1152344, -1.5976562, -3.2285156, 3.8789062, 0.6303711, 2.2109375, -2.3144531, -0.88378906, 1.3076172, -0.92822266, -0.8989258, -0.05239868, 2.46875, -0.22509766, 0.87841797, 0.5019531, -1.5361328, 0.53027344, 0.19897461, 0.59375, -0.048553467, -0.54833984, 3.1738281, 1.1269531, -1.0820312, -0.9770508, -3.2988281, 1.3300781, -0.16662598, 0.6538086, -1.3427734, 0.37060547, -0.38598633, 0.7758789, -1.5458984, 0.6689453, 0.28710938, 0.089660645, -0.8457031, -0.5385742, 0.40283203, -0.13769531, -1.1572266, -0.16113281, -0.7753906, -0.8022461, 0.9140625, -0.014694214, 0.42504883, -1.7998047, -4.0820312, -1.7519531, -1.3466797, 3.1601562, 1.9931641, 2.6152344, -1.4160156, 1.6054688, -2.4003906, 0.29736328, -1.6025391, 1.8300781, 0.10760498, 0.9863281, 0.9116211, -0.8823242, -0.7919922, 1.2949219, 1.0019531, -0.6738281, 0.49487305, 1.1962891, 0.85009766, -0.7890625, -2.0703125, 2.4277344, -0.48486328, -0.49169922, 0.1194458, 0.109191895, 2.9316406, 0.6303711, 0.15698242, -0.2553711, -1.3798828, 0.52685547, 0.78222656, -1.2070312, -0.37548828, 0.15441895, 1.9472656, -2.53125, 3.2539062, 3.0996094, 0.73339844, -1.5966797, -0.7607422, -0.17456055, 1.6894531, -0.72021484, 0.49609375, -1.1767578, 1.6835938, -0.15332031, -2.7441406, 2.3007812, 0.22058105, -1.1181641, -0.4975586, 0.4658203, -1.1787109, 2.6855469, 0.2775879, -1.6972656, -1.6621094, 1.8896484, -0.8178711, 1.8632812, -0.095581055, 1.6611328, 1.1230469, 0.0074157715, 2.4667969, -0.8486328, 1.3212891, 1.6699219, 0.50878906, 2.5722656, -1.8554688, -0.5073242, 0.6064453, 0.21057129, 0.33276367, 0.038024902, 0.47485352, 3.4746094, -2.2578125, -3.5703125, 4.1132812, -0.84472656, -1.0097656, 1.4296875, -1.2490234, -1.3964844, -0.7734375, 2.3183594, 0.50097656, -0.7573242, 2.53125, -1.8486328, -0.9560547, 0.12536621, -1.4697266, -1.0009766, 0.32714844, -0.15808105, -0.77685547, -2.4765625, 1.8378906, -1.3808594, 0.2578125, 2.4453125, -2.4609375, 2.5742188, -0.15429688, 2.3671875, 1.2607422, -1.0693359, -0.5488281, 0.09503174, 0.7763672, -2.6074219, -0.053833008, -0.68847656, -1.2451172, -1.3876953, -0.015899658, 0.49804688, -2.9003906, -2.7226562, -0.6621094, -0.4411621, -1.7470703, 0.5205078, -1.765625, -0.9555664, -0.020599365, -2.296875, -1.265625, -2.0761719, -2.5996094, -1.9570312, -0.042419434, -2.5566406, -0.6074219, 0.45263672, 0.24365234, -1.1152344, -4.4492188, 0.38427734, 0.42114258, 0.45898438, 0.31811523, 0.10491943, 0.3413086, -0.60253906, -0.6298828, -0.58251953, 0.19421387, 0.20092773, 0.33251953, 0.103881836, -2.4980469, 0.78515625, -4.1796875, -0.5810547, 0.1586914, 1.0625, -4.2929688, 0.11114502, -0.6669922, -0.34472656, 3.4199219, 0.10699463, 1.7910156, 1.90625, 1.7324219, 1.1816406, -1.7177734, -1.1855469, -0.69384766, 1.0410156, 0.41748047, -2.625, -1.1171875, -0.0836792, -1.9501953, -0.6928711, -1.8632812, -1.0126953, -1.03125, -0.07757568, -3.1210938, -0.7993164, -0.31420898, 0.7236328, 0.9067383, -0.3544922, -2.9433594, -0.40673828, -2.2890625, 1.5322266, -0.68896484, 1.3125, -0.9667969, 1.8662109, 0.28955078, -0.05178833, 1.0341797, -2.2539062, -2.6621094, 1.3251953, 0.50341797, -1.4628906, 1.2558594, -1.1132812, -2.4960938, -1.9248047, -1.1855469, 1.5498047, 2.6484375, 2.3066406, 0.98339844, -0.0579834, 1.4902344, 1.2470703, 1.4160156, -0.7973633, -2.0234375, 3.484375, -1.4960938, -1.7675781, 0.9814453, 2.2558594, -2.4199219, -1.3964844, 2.25, 1.2734375, 0.88623047, 2.6074219, 3.296875, 0.17736816, -1.7402344, 1.1220703, 1.9169922, 1.8554688, 0.4494629, -0.95458984, 1.6181641, -0.33203125, 1.1445312, 1.4521484, 0.04562378, 1.6835938, 1.0546875, 1.4980469, -1.6015625, 0.34521484, 0.31958008, -0.2421875, 0.54248047, 1.7001953, -0.98828125, -0.73095703, -0.1508789, -1.8085938, -1.1416016, -0.32128906, -1.8212891, 3.0019531, 0.59814453, 0.4243164, 0.21472168, 0.46899414, 1.0917969, 0.32055664, 0.47607422, 0.76171875, 1.9775391, 0.17541504, -0.61865234, -0.011131287, -1.8740234, 1.0722656, -1.1689453, -2.0527344, 1.0673828, 2.7148438, -0.2705078, -2.7148438, 1.8535156, 0.71484375, -1.1962891, 0.55322266, 0.56591797, -1.9423828, 2.3300781, -1.4335938, 0.8964844, -0.30126953, -0.57470703, 0.4650879, -0.28295898, -0.7446289, -1.0146484, 0.76123047, 1.0664062, 0.67333984, -2.1933594, 0.07800293, -2.7285156, -0.051452637, -1.0986328, -2.0078125, -1.1464844, 1.3876953, 1.1015625, 2.5585938, -1.1894531, 1.75, 0.20056152, 0.0105896, 1.0341797, -2.3652344, 0.8417969, -2.3398438, -3.0742188, 1.2314453, -0.7915039, -0.41601562, 2.7636719, 0.11114502, 0.27685547, 2.5683594, -0.23425293, -3.4863281, -1.9335938, -1.7324219, -0.6411133, -1.0029297, -0.87841797, 1.7695312, -0.48339844, -0.85253906, -2.0039062, 1.5195312, -0.67529297, 1.7851562, 1.6054688, -3.84375, 1.2373047, -0.9213867, 0.45898438, -0.078430176, -0.48291016, 2.5957031, -1.7324219, -0.050720215, -2.1171875, 0.5029297, 1.6396484, -0.7402344, 2.4355469, 1.5039062, 0.76416016, -2.3085938, 1.0927734, 0.6899414, 1.7099609, 0.5292969, -3.6464844, -0.8852539, 1.3789062, -0.0028972626, -0.8847656, 0.051513672, -1.3828125, -1.6484375, -0.23583984, 1.0996094, 1.7802734, 0.17480469, -0.66503906, -2.4101562, -0.92285156, -0.42504883, -2.3710938, -0.9814453, -0.19470215, 1.7783203, -0.77685547, 0.3203125, -1.4804688, -0.12249756, -0.74072266, -0.62939453, -3.4609375, 3.7421875, 1.8232422, 1.7480469, 2.9433594, -0.9165039, 0.41601562, 0.8701172, -0.26708984, 0.47485352, 1.0898438, -1.4199219, 1.2705078, 0.50341797, 0.3293457, -1.9619141, -1.3505859, 1.0927734, -2.8671875, -0.5800781, -2.3574219, 0.1842041, -0.98583984, -2.28125, 1.8154297, -0.76953125, 2.6953125, -2.1816406, -1.671875, -1.8837891, 1.0185547, -2.4472656, 0.6513672, -1.7226562, -0.1940918, 1.8808594, 0.5371094, 1.2509766, -1.4326172, -0.08770752, -0.15283203, 1.9521484, 0.68847656, 0.8925781, -1.7070312, -0.27026367, -2.328125, -1.7275391, 1.6240234, 2.078125, 1.1835938, 4.0585938, 1.8339844, -2.328125, 0.9580078, -0.6279297, -3.0390625, -0.5722656, -0.18127441, 1.1914062, 1.2949219, 0.30444336, -4.5195312, -0.875, 0.15197754, -1.2001953, 0.6464844, 0.82958984, -0.79052734, -0.67822266, -1.6875, -0.19763184, -0.33666992, -0.39282227, -1.3183594, -1.8076172, 0.5126953, -2.8046875, 1.0712891, 3.4199219, 0.5527344, -1.2353516, 3.2304688, 0.16271973, 1.2548828, -1.3359375, -0.25, -1.2558594, 0.5878906, 2.5234375, 0.69677734, 1.9238281, 0.7626953, 2.8261719, -2.0644531, 1.6669922, -1.6689453, 3.7167969, -0.5439453, -0.53808594, 1.3330078, -1.3056641, -0.34057617, -4.9804688, 0.44433594, 0.2512207, 1.3769531, 1.3984375, -0.8208008, -1.1181641, 0.08868408, -1.0908203, -3.9355469, 0.14526367, 0.19836426, 1.3076172, 0.18688965, 1.9091797, -0.6455078, 1.0136719, 0.8535156, -0.39501953, -1.9599609, -1.1572266, -1.8203125, -1.2871094, -0.79003906, 2.0136719, -0.82421875, 2.1367188, 2.0957031, 0.24438477, -0.22546387, -1.7578125, -1.5966797, 2.0507812, -1.7041016, 0.2824707, 4.0273438, -0.38745117, 0.6357422, 1.5644531, 1.7324219, -0.96191406, 1.5966797, -0.9536133, -1.0341797, 1.6865234, 0.2927246, 1.9160156, -0.56347656, -2.0039062, 0.015808105, -2.4023438, 0.4633789, 1.34375, 0.9316406, -0.6635742, 2.7734375, -1.2871094, -1.8603516, 0.9951172, 0.4716797, 1.4189453, 1.0488281, -3.4648438, -0.40283203, -0.22131348, -1.0878906, -0.14672852, -2.0136719, -0.031280518, -0.8408203, 0.61328125, 1.5371094, 1.0136719, -0.3540039, 0.2298584, 0.38208008, 1.0517578, 2.6074219, -0.7685547, 2.859375, 3.4238281, -1.1835938, -1.0292969, -2.9101562, 1.6113281, 0.4645996, 1.5449219, -1.5097656, -1.0507812, -0.5229492, 2.0019531, -0.87109375, 0.87841797, 1.6845703, -0.23583984, -0.28076172, 1.6572266, 3.875, 0.16894531, 0.9116211, 1.21875, 0.8149414, -0.20019531, 4.40625, 0.99121094, -1.7001953, 2.3925781, -0.6948242, 1.5800781, -1.4130859, -0.0072517395, 0.8408203, -1.65625, -0.48876953, -2.5644531, -2.3574219, -3.7539062, 1.7050781, 1.4306641, -1.1123047, -0.1328125, 2.2324219, -0.3996582, 2.1601562, 1.5810547, 1.5195312, -0.10308838, 0.96875, -1.0234375, -0.14428711, 1.9951172, -2.7695312, 2.7851562, 0.7832031, -2.1835938, -0.95996094, 3.1679688, 1.3398438, 2.09375, 1.4169922, 1.2353516, 1.9033203, 1.6279297, 3.7207031, 1.5097656, 2.1757812, 0.9838867, -0.12792969, -0.064819336, 1.7001953, 2.5605469, -0.7285156, -0.7373047, 2.4082031, -0.5493164, -1.8730469, 0.16125488, 2.0566406, 1.0654297, -4.2890625, 1.7275391, 0.08514404, 1.1650391, -3.0117188, -1.8183594, -0.056762695, -0.68408203, -0.3334961, 0.2133789, 2.3886719, -0.95947266, 0.85839844, -2.1152344, 1.2373047, 0.4477539, -2.7910156, 1.1875, 0.7783203, -2.4765625, -1.1689453, -1.4648438, 0.7080078, 0.55371094, 0.6035156, 0.6635742, 2.0449219, 1.359375, 1.6767578, -1.828125, 0.61279297, 0.6713867, 3.5644531, -0.22949219, -0.77490234, 0.5541992, -3.1699219, -1.4794922, -3.359375, 0.9838867, 2.3417969, 1.7470703, 1.1982422, -1.6181641, 2.1953125, 0.16845703, 1.2919922, -0.9291992, 1.5595703, 0.19934082, -4.1992188, -1.171875, -0.8100586, 0.42626953, 2.7929688, 1.7529297, -2.5800781, 2.0488281, -0.07891846, 1.4824219, 2.4355469, -0.21972656, 0.43041992, 1.6386719, -1.2011719, -0.5419922, -1.3242188, -0.7578125, 0.45776367, 2.2402344, 2.3691406, -0.45336914, 0.8066406, -1.3535156, -0.71240234, -0.6533203, 1.1318359, -0.42749023, -2.703125, -1.1328125, -0.4951172, 1.9570312, -0.7758789, -1.3251953, 3.6933594, -0.007774353, -1.6914062, -0.05758667, 0.13598633, 0.73779297, 3.3886719, -0.40551758, 1.0224609, -0.60058594, -0.78808594, 1.4316406, 0.7026367, -2.640625, 1.3046875, 0.57177734, 1.0419922, -0.4790039, -0.6665039, 0.30151367, 0.20678711, -0.02192688, 0.4091797, -1.8085938, -0.17541504, 0.76953125, -1.0107422, -0.5732422, 1, -0.74902344, -0.20166016, -2.4160156, -1.4902344, -0.42871094, -0.5605469, -1.3291016, 1.6015625, 3.5859375, 1.9697266, 0.8222656, -2.3046875, -2.203125, -1.3837891, -1.2128906, 3.2890625, 0.80810547, 0.08666992, 0.4104004, -0.96728516, 1.3085938, -1.8994141, 0.11743164, -0.6489258, -1.3671875, 0.23742676, -1.0019531, 1.3769531, 1.8867188, -0.16357422, 0.7675781, 2.5605469, 1.5654297, -0.7080078, -0.031555176, 1.7871094, 0.41748047, -1.8642578, 2.8515625, -0.34106445, 0.3347168, 0.42993164, 0.3173828, 1.8085938, 0.47802734, -0.20800781, -2.1542969, -2.6269531]}, "B00AB7SD9W": {"id": "B00AB7SD9W", "original": "Brand: Huntington\nName: Huntington 24025 Liquid Propane Gas Grill\nDescription: \nFeatures: Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves\nPorcelain coated wire cooking grids and stainless steel cooking system\nSure-Lite push button ignition system and Accu-Flow burner valves\nHeat resistant front mounted handle\nEZ-Q-Cart design and 5 stage quality enamel paint process\n", "embedding": [1.0605469, 0.8588867, 3.1328125, 0.9560547, 0.095947266, -0.03274536, 0.07574463, -0.9926758, 0.40014648, 1.4306641, 0.9736328, 1.1806641, 0.42456055, -3.4570312, 0.78808594, 0.62646484, 0.57714844, 1.6660156, 0.1932373, -0.60791016, 0.9394531, 0.48876953, 0.44506836, -1.7880859, 2.2871094, 0.97753906, 4.2070312, -2.7207031, 1.1044922, -1.1328125, 1.0683594, 2.0683594, -0.14733887, 0.8769531, -1.8789062, -0.9814453, -2.0527344, 1.4511719, -4.7382812, 1.0683594, -1.1279297, -1.2539062, 1.3164062, 1.1337891, -2.6894531, 0.94628906, -0.4296875, 0.48950195, -1.4023438, 0.014732361, 2.6191406, 1.4443359, -0.6791992, 0.033935547, -1.2109375, 1.0410156, -0.14355469, -2.6933594, -0.15356445, -0.24816895, 1.0908203, -1.6171875, -2.2382812, 0.7919922, -0.053955078, -0.0848999, 1.0322266, 0.19995117, -0.17272949, 0.7739258, 2.4296875, -1.8779297, -1.1777344, 0.38989258, 0.31860352, -1.4677734, -2.4511719, 1.2539062, 0.1340332, -1.1943359, -2.4609375, 3.6894531, 0.08050537, -1.9228516, -0.46533203, 0.44335938, -0.50097656, -2.0546875, 0.7114258, -0.24963379, -1.4853516, 0.94140625, -1.1591797, -5.2617188, 1.4033203, 0.33740234, -1.0146484, 2.1914062, 0.0541687, 1.4277344, -0.21862793, -0.25976562, -2.2441406, 0.15429688, -1.5966797, 0.61328125, 0.5654297, 1.3808594, -2.4902344, 0.24841309, -0.88427734, 0.97753906, -0.4296875, 0.27148438, 0.94970703, 1.1279297, 0.72265625, 0.2536621, 1.0898438, 2.4121094, 2.2851562, -1.0820312, 1.0185547, -0.3474121, -0.83203125, 1.3173828, 0.15222168, 0.018829346, 4.5273438, -2.2851562, 1.7744141, -0.014976501, 3.3535156, -2.1386719, -1.7373047, -2.3554688, -0.33618164, -1.2480469, -2.890625, -0.25317383, -0.9897461, 0.65283203, -0.13708496, -0.72802734, -3.2480469, -1.0253906, -0.78271484, 0.14648438, 0.06854248, -2.1992188, 0.03378296, -1.9794922, 0.73828125, 0.39086914, 3.2285156, -0.56347656, -2.1308594, -1.7744141, 2.5195312, 0.16699219, 2.0859375, -0.31811523, -2.7871094, 0.10522461, 0.9970703, -1.5166016, -0.88916016, 1.9277344, -0.6381836, 2.0917969, -0.7709961, -1.8496094, -0.56152344, 0.09716797, 0.74853516, -1.0585938, 0.40698242, 3.0019531, -0.5048828, 0.30517578, -1.3203125, -2.1152344, -0.13867188, -0.9667969, 1.9814453, -2.1367188, 0.39916992, 0.013626099, 0.12060547, -0.6323242, 0.5878906, 2.1132812, -0.3491211, 0.77441406, 0.4025879, -2.3417969, -2.0878906, -1.5029297, 2.7753906, 0.53515625, -0.43139648, -0.041290283, -0.28588867, 0.7729492, -1.5498047, -1.8652344, -0.096069336, -2.6855469, 1.2978516, 1.0664062, 2.2753906, -0.8022461, 2.421875, -0.7504883, 1.4140625, -4.0664062, 3.3066406, 0.73095703, 0.83154297, 1.9101562, -0.27661133, -0.014160156, 0.35473633, 2.109375, -0.4958496, 1.6113281, 0.7324219, 0.9057617, -3.8398438, 0.04067993, 3.421875, 0.29541016, -0.10974121, 0.21801758, 0.44702148, 1.6191406, 0.70996094, -0.5024414, -0.95996094, 0.11016846, 0.70947266, 0.3479004, -1.5185547, -1.2753906, 1.6386719, 1.4228516, -1.9921875, 1.8535156, 1.2753906, 1.8955078, -0.6274414, 0.23254395, -0.22473145, -0.2541504, -0.14660645, 1.4833984, -0.48291016, 0.99853516, 0.19799805, -3.1933594, 1.1796875, -0.4802246, 0.1361084, 0.27124023, 0.73779297, 0.46118164, 2.9492188, 0.6196289, -0.14013672, -2.0058594, 1.3251953, 0.88183594, 1.5126953, -0.51416016, 2.9160156, 1.2050781, -0.56884766, 3.8496094, 0.42260742, 1.46875, 1.15625, -0.3017578, 2.4511719, -3.0019531, -0.46679688, 0.91259766, 0.67578125, -1.8544922, -1.7363281, 1.0791016, 3.9667969, 0.0049362183, -2.5605469, 3.1757812, 1.6767578, 0.83740234, 1.8955078, -2.1679688, -1.8740234, -0.8442383, 2.6113281, 0.8745117, 0.08935547, 2.4609375, -0.5551758, -1.6064453, -0.45751953, -1.3642578, -0.35839844, 0.2175293, -1.8505859, -0.33276367, -0.6855469, 0.6582031, -2.4179688, -1.5136719, 1.3388672, -3.2089844, 1.5449219, -0.81884766, -0.18884277, 0.8442383, -0.3461914, -0.60791016, -0.29248047, 0.9291992, -0.9248047, 2.1992188, 1.0498047, -2.4628906, 0.52978516, -1.6777344, 0.03186035, -1.1679688, -1.1748047, -0.47338867, -4.3789062, -2.4667969, 1.9765625, -1.2197266, -0.7236328, 0.4350586, -3.2128906, 0.22094727, -1.4023438, -1.7324219, -0.9794922, -1.1806641, -0.45214844, -0.45751953, 0.75, 0.54003906, -0.23266602, -5.0859375, -0.78515625, 0.74072266, 0.5263672, 0.7758789, -2.1308594, -1.2158203, 1.6044922, -1.1171875, -0.018600464, -0.14978027, -0.17211914, 0.69091797, 0.87646484, -4.5546875, 0.8334961, -2.2128906, 1.4892578, -0.63671875, 1.2666016, -2.8769531, -1.4550781, 0.5283203, 1.3320312, 4.96875, -0.5151367, 0.4650879, 1.4833984, -0.0446167, 1.0185547, -1.6279297, -1.9472656, -0.45166016, 2.4238281, -1.4052734, -0.2849121, -3.875, 0.54589844, -1.4716797, 0.2927246, 1.71875, -0.70947266, -2.0703125, -0.84375, -1.125, -1.5029297, -1.7880859, -2.2128906, 0.8520508, -0.15270996, -0.71875, 0.26586914, 0.30810547, -1.4726562, -1.4697266, 0.9355469, -0.49560547, 0.70996094, 1.5761719, 0.4650879, 2.1054688, -0.0129470825, -4.5546875, 3.6992188, 0.7548828, -3.7070312, 1.3984375, -1.8066406, -1.9609375, -2.5742188, 0.20690918, 2.2207031, 2.3457031, 2.8261719, -0.2121582, 0.30688477, 2.609375, 1.1953125, 0.6870117, -1.6933594, -1.5732422, 2.6992188, -2.4121094, -2.4785156, 0.10284424, 1.5996094, -2.7871094, -1.9726562, 1.3535156, 1.0126953, 2.3808594, 1.8300781, 0.30444336, 0.28833008, 0.44335938, 1.2089844, 0.12005615, 0.31835938, 0.390625, 0.30786133, 1.8095703, 0.07702637, 0.77978516, 2.1796875, -0.44433594, 2.3554688, 0.054504395, 1.6503906, -0.8232422, -0.41674805, -1.0185547, -0.31713867, -0.45214844, 1.9003906, -1.0976562, 0.47631836, 0.80859375, -1.7216797, 0.044677734, -1.6494141, -1.0097656, 0.7949219, -0.34716797, -0.04244995, 0.16430664, 0.97021484, 2.1386719, -0.74072266, 1.1308594, -1.1699219, -0.0063476562, 1.6767578, -0.84375, -0.31835938, -1.0136719, 0.9394531, -0.7739258, -2.6074219, -2.0566406, 2.8261719, -2.4121094, -0.6645508, 0.083862305, -0.5522461, 0.4765625, 2.1210938, -0.24475098, -1.4785156, 0.40161133, 0.21923828, 0.2849121, -0.24353027, -0.91845703, 1.0341797, -0.82470703, 0.95947266, 0.39941406, 1.3339844, 0.96728516, 0.115600586, -1.359375, 0.21435547, -1.0498047, -0.62841797, -0.25585938, -0.78759766, -0.8696289, 2.5839844, 1.4814453, 1.6572266, 0.33618164, 3.5019531, 0.10076904, -2.1308594, 2.4804688, -1.0957031, -0.3461914, -2.7753906, -3.7832031, 0.37963867, -1.0283203, -1.3027344, 2.5136719, -0.29345703, -0.6689453, 1.5097656, 1.9199219, -2.9179688, -1.0419922, -0.91552734, -0.44726562, 0.028320312, -1.6191406, 1.2128906, 2.4042969, -3.4042969, -0.7939453, -0.0025482178, -0.6171875, 0.46850586, -0.33203125, -1.6777344, 0.67529297, -1.0097656, 0.92822266, -1.3964844, -1.0625, 1.4296875, 0.77783203, 0.10180664, -0.84375, 2.0507812, 1.3154297, -0.73583984, 1.9375, 2.8554688, -0.25317383, 0.3803711, -0.2631836, 0.8017578, 2.4042969, 0.13769531, -1.0634766, -1.7714844, -1.7255859, 2.546875, -0.5410156, 0.25390625, 0.28295898, -1.3310547, 0.4963379, 0.9301758, 0.6323242, 1.7578125, -0.5888672, -0.056884766, 2.0585938, 0.46728516, -1.6347656, -0.72021484, 0.6176758, 0.034088135, -1.5439453, 0.06359863, -0.5415039, 0.07208252, -1.8164062, -1.3876953, -2.3632812, 3.4023438, 3.3964844, 1.3935547, 1.5654297, -1.5625, -1.2158203, 0.040618896, 0.44384766, 0.07757568, -0.49658203, -0.4025879, -0.11303711, 0.2775879, 1.0205078, -2.921875, -0.45996094, 0.7548828, -0.4140625, -0.96191406, -1.9169922, -2.1914062, -0.7084961, 0.0859375, 0.08227539, -0.70654297, 2.1464844, -2.1542969, 0.3088379, 0.921875, 0.0036735535, 0.23388672, 0.050994873, -0.49560547, 1.0927734, 2.4003906, -0.073791504, 1.5126953, -1.0878906, -0.029663086, -0.8442383, 2.3730469, -0.3388672, 0.9848633, 1.3935547, 0.039123535, 0.10974121, -1.3339844, 2.0878906, 2.9121094, 1.3134766, 2.4394531, 0.78466797, -2.4707031, 3.1601562, -0.7133789, -1.296875, 0.5786133, 0.8173828, -1.3798828, 1.7958984, -0.2890625, -2.8378906, -0.9213867, 1.7402344, -1.7646484, 0.8876953, -0.010826111, -0.5527344, -0.036132812, -2.5195312, -2.0351562, 0.04989624, -0.12536621, -0.46240234, -1.4746094, 0.52490234, -0.4958496, 2.1738281, 2.734375, -1.78125, -0.7338867, 1.6728516, -0.13586426, 1.3613281, 0.99121094, -0.39990234, -1.8535156, 0.25317383, 3.5605469, 0.35253906, -0.21557617, 0.7495117, 1.8330078, -1.3671875, -0.12384033, -0.7104492, 2.3242188, -3.1679688, -0.0413208, 1.0634766, -2.1679688, -2.2753906, -2.8808594, -1.3251953, -1.5166016, 1.0966797, 3.3183594, 0.7270508, -1.0068359, -0.44848633, -2.453125, -3.8867188, -0.96728516, -0.2763672, 0.21643066, 1.2919922, 1.4033203, -1.1191406, 0.74658203, -0.78759766, 0.6464844, -0.3232422, 0.5473633, -0.75634766, -0.6542969, -1.2871094, -0.7763672, -0.5234375, 1.2666016, 1.4501953, -0.3059082, 1.5146484, -1.6845703, -2.3242188, 0.4182129, 0.4453125, -0.8334961, 0.8095703, 1.7285156, 0.06298828, 1.8330078, 0.80029297, -2.984375, 2.9570312, -1.4785156, 0.14575195, 2.0878906, -1.7021484, -0.83203125, 1.8876953, -0.78125, -1.5, 0.40307617, 2.7128906, 0.089660645, -1.2685547, -0.5751953, 1.8652344, -0.08605957, -0.42211914, 1.6816406, 0.7685547, 0.99121094, 1.2265625, -0.42285156, -0.2775879, -1.7041016, -3.1035156, 0.40478516, -3.2363281, 0.6484375, -0.93603516, 1.1855469, 0.39697266, 1.4580078, 1.1103516, 0.77441406, 0.11212158, -0.54296875, 1.359375, 0.06427002, 3.4121094, 3.1308594, -2.0761719, -1.6943359, -1.2246094, -0.96728516, 3.1464844, 0.4350586, -0.030014038, -0.30322266, -0.40771484, 0.66796875, -0.9501953, 0.28979492, -0.13134766, 1.6464844, -2.0820312, 1.4472656, 2.015625, -1.0146484, 0.18273926, 0.77441406, 2.6269531, -0.9448242, 2.9589844, 0.88134766, -0.13745117, 2, -1.6416016, 1.3271484, -0.93408203, -1.2392578, 1.7441406, -1.9335938, -0.76220703, -1.3613281, -0.87109375, -1.3154297, 1.4941406, 0.27441406, -0.91259766, 0.15515137, 1.3115234, 0.092041016, 2.0878906, 0.7392578, 1.6796875, -1.7666016, 0.37646484, -0.73828125, 0.3959961, 0.6220703, -2.1699219, 2.3535156, 0.40454102, 0.03302002, -1.9824219, 0.40039062, 0.85595703, 2.4082031, 2.4707031, 3.3730469, 2.625, 2.0703125, 0.5708008, 1.3115234, 1.0390625, 2.3417969, -2.9003906, -0.3010254, 0.40014648, 0.58496094, 1.5693359, -1.3125, 2.9042969, -0.65478516, -1.6835938, -0.43286133, 0.53759766, 0.11975098, -1.4375, 0.8574219, 0.99072266, 0.018829346, -1.6083984, -0.5161133, -1.1123047, -0.94628906, 0.035583496, -0.41430664, 2.3417969, 1.8642578, 1.5449219, -0.115234375, -2.1738281, 1.7783203, -3.2910156, -1.1259766, 0.6801758, -0.38623047, 0.36401367, -1.96875, 1.25, 0.09674072, -0.5029297, -0.68310547, 0.64990234, -0.15356445, 1.1259766, -1.2890625, 1.6621094, 0.76220703, 1.7060547, -0.2770996, -0.5751953, 1.7539062, -1.4482422, 0.23046875, -3.640625, 2.3066406, 2.3632812, 2.0371094, -0.020553589, -0.73291016, 1.5546875, -1.8808594, 2.3945312, -3.2089844, 1.0224609, -0.5263672, -2.7753906, -1.7675781, -0.44799805, -0.53271484, 1.8583984, -0.23596191, -1.2265625, 1.5664062, 0.18408203, 0.30493164, 0.80566406, 1.9960938, 1.8408203, 1.5351562, -0.19177246, 2.8828125, 0.26416016, -1.4345703, -1.234375, 1.4873047, 0.36279297, -0.6230469, 0.28710938, -1.1865234, 1.5898438, 1.7226562, -0.6044922, 0.06100464, -0.21533203, -0.63964844, 0.27294922, 1.3964844, -1.5410156, -3.125, 2.5625, 1.1171875, -1.3398438, 0.4921875, 1.7216797, -0.33666992, 2.3828125, -1.1083984, -0.44067383, -1.4033203, -0.52441406, 1.6699219, 0.7324219, -1.1083984, 0.43774414, 2.0820312, 0.087402344, -1.4091797, -0.88916016, -0.84765625, -1.2529297, -1.1669922, 0.37963867, -0.3100586, -1.4316406, 1.4833984, 0.7602539, -0.86572266, 4.0742188, -1.4550781, -0.6191406, -2.8671875, -1.2128906, -0.53466797, -0.01524353, -1.8261719, 1.7470703, 4.0507812, -0.84765625, 0.05883789, -2.3105469, -4.28125, -0.9824219, -3.3183594, 0.3557129, -1.5302734, -0.45239258, 0.45458984, -0.19958496, 1.3984375, -0.3371582, -0.7807617, -0.6738281, -0.34716797, 1.6552734, -1.6689453, 1.109375, 1.4335938, 0.7636719, 1.6064453, 1.1054688, 0.4711914, 1.8935547, 0.28686523, 5.7539062, -0.14025879, -2.2207031, 0.6435547, -0.37646484, 0.16308594, 0.60009766, 0.5185547, 0.8198242, 1.5351562, -0.0025787354, -0.49731445, -3.6796875]}, "B00F3BHB80": {"id": "B00F3BHB80", "original": "Brand: Cuisinart\nName: Cuisinart CGG-306 Chef's Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel\nDescription: \nFeatures: FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches.\nTWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling.\nSTAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat.\nLIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you\nIDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).\n", "embedding": [-4.2773438, 1.8066406, 2.9648438, 0.4736328, -0.6484375, -0.70458984, 1.2558594, -1.4667969, -1.3330078, 1.7626953, 1.4453125, -1.5761719, 0.94970703, -0.7363281, 0.22094727, -0.34814453, 0.6503906, -0.31933594, 0.8618164, 0.69873047, 1.1132812, -0.7055664, 1.6396484, -1.0703125, 0.6411133, 1.1962891, 4.296875, -4.0585938, -0.044555664, -2.3613281, 1.6865234, -0.55126953, 1.0419922, 0.56689453, -2.8027344, -1.4619141, -1.3691406, 1.2226562, -2.2578125, -0.38330078, -0.33251953, -0.69970703, 2.2382812, -0.578125, -2.6113281, -0.033233643, -0.27905273, 1.8603516, -1.3808594, 1.125, 2.0234375, 0.30322266, 1.3623047, 0.29907227, -0.71191406, 1.1669922, 0.32763672, -1.2089844, 0.7661133, -0.3388672, 2.8828125, -0.3017578, -2.4804688, -0.05508423, -0.6196289, -1.9550781, 0.44628906, 0.48095703, -0.5024414, 1.0830078, 1.8681641, -0.75683594, 0.5332031, 0.4128418, -1.0791016, -0.9472656, -1.8037109, 2.8085938, 0.7182617, 0.0021305084, -1.4824219, 1.2529297, 0.71435547, -1.9560547, 0.12286377, 0.75878906, 0.9458008, -0.25097656, 1.6123047, 1.3193359, -1.6113281, 2.6015625, -2.5917969, -3.3613281, 0.9580078, 0.030380249, 0.59472656, 1.5117188, -0.047973633, 2.4960938, -1.1445312, -0.4736328, -1.3554688, 0.27294922, -1.9394531, -0.7104492, 2.2890625, 0.40844727, -2.9628906, 0.79589844, -1.6396484, -0.91748047, 0.27905273, 0.2626953, 0.57373047, -0.30419922, -0.10406494, 2.1894531, 2.4238281, 1.3896484, 4.7890625, 0.3383789, 0.5390625, -1.9189453, -0.50878906, 2.0683594, -1.5507812, 2.25, 6.3710938, -1.9433594, -1.1601562, 0.25024414, 2.9375, 0.8286133, -0.7973633, -2.7539062, -1.0898438, -3.0351562, -3.40625, 2.6289062, -3.1679688, 1.6347656, 1.2314453, -1.28125, -3.5820312, -0.8364258, 0.091918945, 2.3261719, 0.40551758, -1.1181641, -0.7104492, -1.2919922, -0.07006836, -1.8271484, 2.5839844, -1.5478516, -2.1738281, -1.0019531, 4.0585938, 1.2373047, 2.4609375, -2.6210938, -1.8095703, 0.8417969, 1.6767578, -0.3022461, 0.6748047, 2.7890625, -0.21203613, 1.3095703, -0.47436523, -2.2109375, 0.7421875, 0.5292969, 0.46850586, -1.1875, 0.19042969, 2.8222656, 0.7578125, -1.1767578, 0.022857666, -3.1855469, 0.7285156, 1.5419922, -0.24816895, -2.78125, 1.4990234, 1.6728516, -0.2854004, -2.9726562, 0.23571777, 0.17993164, -0.11785889, -0.25952148, 1.1601562, 0.09020996, -1.7236328, -0.76171875, -0.60058594, 0.6015625, -0.5185547, 0.11279297, -1.3378906, -0.113464355, -2.2890625, -3.2128906, -1.5703125, -1.9804688, 0.8828125, 2.1367188, 1.6455078, -1.3291016, 1.4804688, -1.8798828, -0.08679199, -1.9697266, 2.0273438, 0.030822754, 1.4101562, 1.2626953, -0.20776367, -1.4326172, 0.47973633, 1.7578125, 0.765625, 2.6015625, 0.7055664, 0.44750977, -0.85498047, -1.2089844, 1.6865234, -0.38012695, 0.2199707, 0.9790039, -0.68359375, 1.9521484, 0.87841797, -0.043060303, -1.1835938, 0.015716553, 1.2890625, -0.49365234, -0.828125, -1.2412109, -0.80566406, 0.48828125, -2.1523438, 3.0839844, 1.9667969, 0.28833008, -0.9038086, 0.3659668, -0.1295166, 1.1123047, -1.0576172, 0.49926758, -1.0673828, 0.4111328, -0.7944336, -2.6230469, 1.5253906, 1.6005859, 0.65527344, 1.1835938, 0.921875, -0.6713867, 3.2851562, 0.18933105, -2.7558594, 0.6791992, 1.7988281, -0.21582031, 1.2695312, 0.49243164, 2.2792969, 0.6386719, -1.4833984, 2.0878906, -0.09967041, 1.2939453, 1.0146484, -0.39941406, 2.515625, -2.3730469, -0.5541992, 1.0605469, 0.38891602, 0.8378906, -0.63134766, 0.9873047, 4.6679688, -1.1279297, -3.2226562, 3.0527344, -1.5810547, 0.02545166, 0.5107422, 0.06414795, -0.765625, 0.26782227, 1.3134766, 0.53564453, -1.3330078, 1.5498047, -2.7128906, -1.6171875, 0.00667572, -0.98876953, -0.8227539, 0.2401123, -0.9536133, -0.09069824, -2.6660156, 1.6123047, -1.8457031, -1.6113281, 0.9038086, -1.4619141, 1.2773438, 0.9399414, 0.9580078, 1.9160156, -1.9101562, -1.2441406, 0.16491699, 0.8754883, -1.0830078, 0.34594727, 0.8251953, -1.1738281, -0.9946289, 0.22167969, 1.8466797, -3.0351562, -2.7363281, -0.33544922, -0.82714844, -3.1953125, 0.9550781, -0.10003662, -1.3730469, 0.49560547, -2.2304688, -0.6430664, -1.2236328, -2.5351562, -0.9604492, -0.51220703, -2.0449219, -1.1894531, 0.5996094, 0.42651367, 0.05593872, -3.9179688, 0.51220703, 0.38598633, 0.75097656, 0.8925781, -0.60302734, -0.6064453, -1.2207031, 0.2052002, -0.4868164, 0.8564453, -0.20007324, -1.8193359, -0.3828125, -3.5292969, -0.17651367, -2.921875, 0.043823242, -0.7241211, 1.2060547, -3.2460938, -1.1845703, -0.58251953, -0.63134766, 2.5527344, -0.9067383, 0.97802734, 0.52685547, 0.37719727, 0.76708984, -1.171875, -1.5, -1.6474609, 1.5273438, -1.2373047, -2.28125, -1.6425781, -1.7626953, -0.53808594, 0.4399414, -1.9101562, 0.91748047, -2.2617188, 2.1445312, -2.1972656, -0.23083496, -0.38012695, 0.80322266, 0.39819336, -0.60595703, -2.9394531, 1.2646484, -1.4726562, -0.42114258, 0.23632812, 1.3896484, -0.5708008, 1.3193359, 1.1416016, 0.54003906, -0.7963867, -1.7041016, -3.09375, 0.69873047, -0.22595215, -2.5214844, 2.7851562, -0.5805664, -1.9267578, -3.609375, -0.80029297, 3.015625, 1.4414062, 2.5039062, 0.39379883, -0.2512207, 2.4570312, 1.2529297, -0.28295898, 0.0736084, -1.3164062, 2.6054688, -3.0546875, -1.3457031, 0.9355469, 3.0546875, -1.6611328, -0.69091797, 2.6542969, 0.86328125, 0.9814453, 1.6904297, 1.7236328, 0.60058594, -1.1474609, 0.91064453, 2.328125, 0.94433594, 0.22973633, -1.2841797, -0.41601562, -0.6508789, 1.2734375, 0.4309082, 0.062408447, 2.5546875, 1.5175781, 2.2304688, -3.1015625, 0.06317139, -0.57910156, 0.83203125, 1.1572266, 3.1777344, -1.7431641, -0.80029297, -0.4519043, -1.3261719, -0.06542969, -1.2324219, -0.93847656, 1.8779297, 0.04776001, -0.1274414, -0.77197266, -0.08380127, 1.1816406, -0.31445312, 1.5419922, 0.60253906, -0.35302734, 1.1523438, -1.0107422, -0.9277344, -1.9306641, 1.6455078, -1.6083984, -1.9775391, 0.82666016, 2.4492188, -1.6787109, -2.0742188, -0.18896484, -0.06744385, -1.0615234, 2.0546875, -0.6484375, -2.0097656, 2.3554688, -0.9848633, 0.28442383, 0.69873047, -0.69628906, 0.07287598, 0.4560547, 0.7270508, -0.43554688, 0.5776367, 0.7426758, -0.8808594, -2.9023438, 0.8227539, -3.2167969, -0.39404297, -0.4411621, -1.2197266, -1.609375, 1.6113281, 1.7285156, 1.6035156, -2.3300781, 3.1660156, -0.87890625, -2.0917969, 0.3630371, -2.8554688, -0.9370117, -3.6015625, -4.2226562, 0.8730469, -1.1074219, -0.2668457, 3.5527344, 0.6567383, 1.0810547, 2.4941406, -0.6435547, -3.328125, -1.5078125, -2.0625, -0.4567871, -1.7236328, -0.5102539, 1.8017578, 0.3022461, -0.5571289, -2.140625, 0.60498047, 0.24694824, 1.7265625, 2.59375, -2.140625, 1.3876953, -1.3505859, 0.38916016, -0.087768555, -0.5600586, 2.6035156, -2.1660156, -0.17102051, -2.9453125, 1.1396484, 1.2539062, -0.7890625, 0.20922852, 1.8964844, 1.0771484, -1.5566406, 0.8364258, 1.8300781, 2.1894531, 0.14868164, -1.2529297, -1.5556641, 0.39672852, 0.18847656, -0.009277344, 0.21850586, -1.0859375, -1.7265625, 0.6972656, 1.4980469, 1.5410156, 2.375, -0.060760498, -2.2265625, -0.52685547, 0.2084961, -2.4375, -1.9638672, -0.26904297, 0.7216797, -0.2454834, -0.25805664, -1.421875, 0.53125, -2.21875, -1.1835938, -2.8378906, 3.609375, 1.3515625, 2.9394531, 2.828125, -1.1298828, -0.52197266, 1.8427734, -0.31274414, -0.94091797, 1.9775391, 0.49243164, -0.025100708, 1.3652344, 0.35791016, -1.8496094, -0.46240234, 1.2900391, -2.3769531, -0.068847656, -2.328125, 0.9663086, -1.71875, -1.3359375, 1.1123047, -0.4951172, 2.8671875, -1.0878906, -1.3808594, -0.75634766, 0.8857422, -0.65234375, -0.65283203, -1.0048828, -0.025894165, 1.2519531, 0.87597656, 0.9760742, -1.5634766, 0.1850586, -0.11431885, 2.4433594, 0.27929688, 0.6347656, -0.21130371, -0.004863739, -2.5957031, -1.2978516, 1.6308594, 3.5078125, -0.74365234, 3.609375, 0.49853516, -2.4179688, 1.1923828, -0.51708984, -2.9492188, -1.1601562, -0.42578125, 0.9272461, 0.35742188, 0.36499023, -2.9726562, -1.8017578, 1.3193359, -1.9560547, 0.84472656, -0.76416016, 0.091796875, -0.84521484, -2.3808594, -1.0556641, -0.9248047, -0.18322754, -1.0585938, -2.5566406, 0.24060059, -0.47851562, 1.2509766, 2.3300781, 0.6303711, -0.58691406, 1.6484375, -1.2851562, 0.5332031, -0.72753906, -0.8774414, -2.6875, 0.44067383, 3.3066406, 1.125, 2.1582031, -0.34887695, 1.2128906, -1.2011719, 0.9550781, -1.4658203, 3.5039062, -0.17626953, -1.2060547, 0.6645508, -1.5224609, 0.15270996, -3.4023438, 1.5917969, 0.054534912, 2.3789062, 1.1103516, -0.3088379, -2.375, -0.7324219, -1.3964844, -5.125, -0.6064453, 1.1279297, 1.0566406, -0.20117188, 1.5664062, -0.89208984, -1.4121094, 0.49389648, -0.014053345, -2.3203125, -0.4519043, -0.35839844, -1.7851562, 0.20593262, 1.7421875, -0.9941406, 1.9248047, 1.7714844, 0.23522949, 0.23925781, -3.8417969, -1.3291016, 1.03125, -0.9736328, -0.79052734, 1.3525391, -1.1591797, 0.35839844, 0.81689453, 1.5273438, -2.6972656, 1.8964844, -1.8007812, -1.1054688, 0.6298828, 0.15136719, 0.5493164, -0.5576172, -1.5722656, 1.1416016, -0.6254883, 1.5507812, 0.4609375, 0.7988281, 0.50927734, 2.5058594, -0.4946289, -1.0234375, 0.61816406, 1.1865234, 1.8603516, 1.1416016, -2.4140625, -0.6791992, -2.1777344, -2.1289062, -0.013183594, -1.2714844, 0.70410156, -1.4433594, 1.5859375, 1.1513672, 0.45825195, -0.6557617, -0.09729004, -0.6357422, -0.21643066, 2.6953125, -0.3947754, 2.5214844, 2.0878906, -0.9638672, -1.84375, -2.1640625, 0.9926758, -0.19165039, 1.3808594, -0.25390625, -0.36865234, -0.4609375, 1.5664062, -0.61816406, 2.015625, 1.9882812, -0.4699707, -1.2792969, 1.6318359, 3.1210938, -0.5805664, -0.47705078, 1.3417969, 1.6064453, -1.1875, 4.5, -0.7241211, -2.1796875, 2.0625, -1.3964844, 1.0986328, -0.43920898, -0.91796875, -0.031204224, -2.0839844, -0.15527344, -2.8730469, -0.8808594, -2.6621094, 2.2910156, 2.0839844, -1.0234375, 0.23327637, 3.1289062, 0.21960449, 1.6376953, 2.3671875, 0.6933594, 0.0056762695, 1.4345703, -0.91503906, -0.49145508, 0.46289062, -2.5742188, 1.2558594, 2.1464844, -0.78027344, -1.2832031, 3.2285156, 1.3291016, 3.0742188, 1.6230469, 1.4003906, 1.9550781, 1.1679688, 4.5703125, 0.39404297, 1.9355469, 2.296875, 0.80322266, -0.22912598, 2.9746094, 1.8720703, -0.6333008, -0.8925781, 2.328125, -0.5878906, -1.9169922, -0.6245117, 0.99560547, 0.5395508, -3.6367188, 1.7421875, 1.4121094, 1.0683594, -2.1269531, -1.9414062, -0.09741211, -0.36523438, 1.3359375, 0.4909668, 1.4140625, -1.3085938, -0.5546875, -2.4960938, 0.8828125, 1.3574219, -3.7089844, 0.75683594, -0.11871338, -1.5068359, -0.47924805, 0.8676758, 0.5517578, 0.9746094, 0.89941406, 1.3857422, 1.1992188, 1.6835938, 2.3789062, -1.2373047, 1.1445312, 0.2109375, 3.3632812, 0.80615234, 0.15100098, 2.4570312, -1.5371094, -1.8212891, -3.1230469, 1.9492188, 0.6386719, 2.2246094, 0.2409668, -0.85595703, 1.6220703, 2.1582031, 2.1621094, -1.84375, 1.9804688, -0.1307373, -3.8730469, -0.7055664, 0.35839844, 0.055267334, 3.8222656, 1.3457031, -2.8632812, 2.1679688, 0.58935547, 1.0859375, 0.6923828, 0.78466797, 1.1767578, 1.2929688, -0.4819336, 1.3466797, -0.8256836, -0.9194336, -0.7807617, 3.0605469, 1.1347656, -0.68847656, 0.46240234, -1.4101562, 0.1920166, -0.6694336, -0.3005371, 0.9243164, -1.8046875, -0.56591797, 0.030029297, 0.8378906, -1.0390625, -1.0478516, 2.5742188, -0.0064048767, -1.4160156, 0.33496094, 0.6542969, -0.21191406, 3.0429688, -0.7451172, 1.125, -0.4790039, -0.66845703, 1.6025391, -0.19592285, -1.9746094, 0.48950195, -0.5136719, 1.5419922, -0.7006836, -0.5522461, 0.05444336, -0.32080078, 0.7949219, 0.46362305, -1.6445312, 0.5966797, 0.3388672, 0.13330078, -0.421875, 2.7304688, -1.4326172, 0.5336914, -3.3242188, -1.7597656, 1.234375, -1.5644531, -0.76660156, -0.24475098, 3.828125, 1.7509766, 1.0566406, -2.0097656, -3.390625, -0.43579102, -0.6225586, 2.9648438, -0.21936035, -1.6318359, 1.3007812, -0.027755737, 1.9697266, -2.0039062, -0.10040283, -0.37109375, 0.7089844, 0.45483398, -0.8129883, 1.71875, 1.3271484, -0.13256836, 0.09729004, 2.015625, 0.7260742, -0.0927124, 1.3955078, 2.4882812, -0.61572266, -2.1660156, 2.3945312, -1.6845703, 1.1035156, 1.5214844, -0.034576416, 2.2363281, 1.7265625, 0.3347168, -1.5214844, -2.1015625]}, "B07ZZM9S3B": {"id": "B07ZZM9S3B", "original": "Brand: Napoleon\nName: Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black\nDescription: \nFeatures: The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner\nPrecise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing\nUse the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience\nThe stainless steel cooking grids are virtually maintenance free\nDurable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather\n", "embedding": [-3.0605469, 0.31958008, 3.0742188, 1.8876953, -0.017974854, 1.1630859, 0.6586914, -0.6464844, 1.8320312, 1.0488281, 2.109375, -1.5107422, 0.57666016, -0.21142578, 0.80029297, -0.10498047, 1, 1.7675781, 0.36010742, 0.11834717, 0.61035156, 0.71972656, 2.8554688, -2.0722656, 0.18286133, 0.4033203, 4.046875, -4.9335938, -0.16345215, -1.0527344, 1.3515625, 0.34838867, 0.3244629, 1.3212891, -2.4570312, -1.9873047, -0.9355469, -0.1595459, -3.2148438, -0.014770508, 0.27563477, -0.07330322, 2.4765625, 1.0019531, -1.9267578, -1.2861328, -1.0029297, 0.3256836, -2.0117188, -0.8496094, 0.94140625, 2.5859375, -0.04815674, 0.25634766, 0.8652344, 0.75878906, 1.2158203, -0.97802734, 1.859375, 1.3974609, 2.0292969, 1.5878906, -3.265625, -0.5263672, -1.1279297, 0.055358887, 0.1550293, -0.4255371, 0.26782227, -1.2246094, 1.0371094, 0.7104492, -0.15844727, 0.5883789, 0.55615234, -2.9648438, -2.4960938, 1.2275391, 0.66259766, -1.1835938, -1.3271484, 1.3232422, 1.8027344, -1.046875, -0.05407715, 0.56152344, -1.4140625, -1.6035156, 2.6191406, 0.19213867, -0.3972168, 0.7607422, -2.2246094, -4.7929688, 2.4023438, 0.039093018, 0.20776367, 0.7089844, 0.059387207, 1.2099609, -2.0058594, -0.6064453, -1.5273438, -0.15197754, -2.953125, -1.6679688, 0.64697266, -0.25708008, -2.0488281, 0.74609375, -2.1796875, -0.85546875, 2.3730469, -0.04058838, 1.2519531, 1.8671875, 0.19152832, 2.6367188, 0.63916016, 1.8398438, 2.4550781, -1.1982422, 1.7744141, 0.15795898, -0.6513672, 1.2871094, -1.9921875, 1.3359375, 4.1640625, -1.6035156, 1.0625, -1.8183594, 2.7558594, -0.3701172, -0.76123047, -1.5224609, -1.53125, -1.0664062, -3.3457031, 0.23303223, -1.1552734, 1.0126953, 0.6748047, -1.59375, -2.3945312, -0.5566406, -0.23510742, -0.32641602, -2.1796875, -1.4003906, -0.80908203, -1.4521484, -0.25073242, -0.81884766, 0.21325684, -0.33642578, -1.0107422, -1.7666016, 3.3945312, 0.60302734, 0.32250977, -1.7822266, -1.2431641, 1.3173828, -0.16125488, -0.8339844, -1.6962891, 2.5136719, 0.038085938, 3.4902344, -0.4494629, -2.3359375, -1.1132812, -0.6791992, -0.115478516, 0.3305664, -2.5019531, 1.75, 0.004802704, -0.15405273, -2.484375, -0.95751953, 1.5195312, -0.7890625, 1.2255859, -2.0429688, -0.3166504, 0.4555664, 1.1005859, -0.39404297, -0.12780762, 0.7504883, 0.21838379, 1.5771484, -1.0292969, -0.6694336, -0.49023438, -1.7373047, 1.0566406, -0.09991455, -1.5224609, -0.92871094, 2.0859375, 0.76416016, -2.4042969, -2.7617188, -0.6611328, -0.64453125, 1.7773438, 0.22363281, 2.8769531, -1.6025391, 0.69921875, 0.22912598, 1.2714844, -2.5546875, 1.6171875, -0.11529541, 2.1132812, 3.5917969, 0.31201172, -0.8652344, 0.10949707, 1.8447266, 0.25024414, 2.3847656, 1.5185547, -0.06842041, -3.3007812, 0.0053520203, 1.9902344, 0.057647705, -0.7944336, 0.6635742, 0.13464355, 2.8144531, -0.19311523, -2.6542969, -0.7011719, -0.3552246, -0.060668945, -1.8271484, -1.1855469, -1.4726562, 0.17211914, 1.2861328, -2.03125, 1.6816406, 1.2021484, 1.6464844, -0.43823242, 0.1081543, 1.4785156, 0.13085938, -1.1191406, -1.21875, -0.38183594, 1.2148438, -1.0341797, -1.3193359, 2.2773438, 0.8310547, 0.33569336, 0.18151855, 1.1699219, -0.060760498, 1.8925781, 1.7978516, -0.93066406, -0.3894043, 0.57666016, -0.5786133, 3.6601562, 0.39135742, -0.3527832, -0.05331421, -2.2832031, 2.9589844, -1.6679688, 2.0019531, -0.40551758, 0.78466797, 1.5488281, -3.15625, 0.14477539, 0.010261536, 1.2441406, 0.29370117, -1.1689453, 1.0927734, 4.0703125, -1.3525391, -1.6396484, 3.2421875, -1.2626953, -0.9838867, 1.0126953, -1.0097656, 0.16870117, -1.6630859, 2.0566406, 0.875, 2.1894531, 0.31811523, -0.91015625, -0.55029297, -0.019607544, -2.2753906, -0.082336426, -1.4443359, 0.96240234, -0.0670166, -1.0478516, 2.5976562, 0.13342285, 0.33325195, 0.859375, -3.4140625, 2.1855469, 0.10650635, 2.1328125, 1.7402344, -0.8105469, -1.6044922, 1.3779297, -0.18859863, -1.8759766, 2.5, -1.1796875, -0.25830078, -1.5546875, -1.5195312, -1.0253906, -2.0722656, -2.1015625, 0.7036133, -1.4775391, -2.3789062, -0.18408203, -2.0898438, -0.50390625, 1.1787109, -2.9199219, -0.14440918, -1.2626953, -4.2109375, -1.6416016, -2.0625, -1.5585938, -0.9003906, 1.7373047, 0.53222656, 0.21655273, -3.4648438, -0.72314453, -1.3671875, -1.7109375, 0.8618164, -0.19335938, 0.77441406, -1.4638672, -0.80615234, 0.4428711, -0.5883789, 0.65527344, -2.3847656, 1.2421875, -2.6308594, 0.98876953, -2.5957031, 0.32348633, -1.1464844, 0.27124023, -2.4375, -1.3144531, -2.8457031, -0.8276367, 3.3554688, -0.7441406, -0.94628906, 1.4892578, -1.2666016, 2.4042969, -2.03125, -1.4443359, -0.6870117, 0.77978516, -2.7753906, -3.2402344, -3.3164062, -0.0149383545, -1.1298828, -0.40063477, -1.8183594, 0.88720703, -2.3261719, 2.0625, -1.9072266, -0.6796875, -1.0644531, 0.24914551, -1.2138672, -1.7373047, -1.7958984, -1.2480469, -0.09307861, -1.6074219, 0.77783203, 2.2460938, -0.4206543, 1.5410156, 0.95996094, -0.37109375, 1.0322266, -0.390625, -1.9882812, 1.6171875, -0.7910156, -2.2128906, 2.0058594, -2.1640625, -0.4104004, -0.5541992, -1.2578125, 2.84375, 2.1308594, 1.5898438, 1.1826172, 0.5229492, 0.36572266, -0.18811035, -0.3791504, -0.40844727, 0.625, 3.8359375, -1.9873047, -1.5605469, 0.18359375, 2.0742188, -0.7553711, -1.1679688, 2.1601562, 0.8300781, 2.4824219, 2.1347656, 0.94384766, -0.0036258698, -2, 0.5878906, 1.1640625, -0.5727539, -0.37060547, -0.027770996, -0.3425293, 1.4072266, 0.8520508, 2.9746094, -0.64746094, 2.7460938, 1.2666016, 2.7929688, -1.4023438, 0.03225708, 1.0107422, 2.0429688, 0.11480713, 1.1552734, -0.06188965, 1.5166016, 0.19348145, -0.03149414, -0.043884277, -2.0878906, 1.0009766, 0.6152344, 0.05444336, 1, 0.40649414, 1.8925781, -0.05178833, 0.07861328, 2.2324219, -0.83740234, -1.2509766, 0.9819336, 0.55126953, -0.43188477, -2.1777344, 0.2890625, -1.0537109, -1.9228516, 0.3857422, 2.9941406, -1.5605469, -1.8476562, 1.2929688, -0.072631836, 0.044891357, 2.2832031, 0.55566406, -0.765625, 0.39331055, -0.40551758, -0.56103516, -0.35668945, -2.3867188, 0.5307617, -2.5664062, 0.27319336, -0.5214844, 0.9428711, 0.33813477, 2.6171875, -1.6826172, 0.42944336, -4.7695312, -0.37353516, 0.14050293, -1.0576172, -2.2519531, 2.484375, 0.22509766, -0.15246582, -0.75097656, 2.953125, -1.2158203, 0.120788574, 1.0996094, -2.7089844, 0.26879883, -3.4257812, -2.0488281, 1.8691406, -0.50097656, -0.7036133, 1.2949219, 0.16442871, -0.14501953, 1.6777344, -0.8691406, -2.1054688, -1.0078125, 0.20996094, -0.4946289, -0.9160156, -2.4375, 1.4199219, -0.27734375, -1.5117188, -1.6923828, 0.35961914, 0.47827148, -0.41723633, 2.7871094, -2.8984375, 0.22058105, -0.014389038, 1.2177734, 0.3227539, -0.9189453, 0.7763672, -1.2197266, -0.14685059, -4.5078125, 1.1171875, 1.8183594, 0.03881836, 1.1162109, 0.9682617, 1.0898438, 0.21875, -1.1943359, 0.4465332, 2.5566406, 0.5097656, -2.8925781, -0.7631836, 0.39990234, 0.90771484, -0.33764648, 1.2490234, -0.24694824, -1.3242188, 1.3808594, 1.96875, 1, 0.46655273, -0.47583008, -1.5410156, 0.14868164, 1.1513672, -1.1259766, -0.296875, 0.5595703, 1.0595703, 0.07922363, 0.6411133, -2.6738281, 0.29638672, -0.17407227, 0.22998047, -2.2773438, 4.0859375, 2.4335938, 1.7519531, 1.71875, 0.36010742, -1.5517578, -1.34375, 0.94921875, -0.3708496, 2.1367188, 0.6538086, 1.3193359, 1.1142578, 1.1523438, -0.67041016, -0.3137207, 2.8125, -2.3066406, -0.52441406, -0.5029297, -0.7368164, -1.5478516, 0.22729492, 1.0673828, -0.034362793, 1.9707031, -0.7246094, -0.68310547, 1.4912109, 1.8496094, -0.25170898, 0.43432617, -0.16113281, 0.43676758, 1.1728516, 0.63378906, -0.7104492, 0.19470215, 1.1191406, -0.61865234, 1.6240234, 1.6464844, 0.3876953, 0.13696289, 0.13623047, -1.4199219, -2.6386719, 2.3046875, 1.9931641, -0.38354492, 4.7851562, 1.6123047, -2.4550781, 1.8759766, 0.6513672, -5.2109375, -0.10876465, 0.7089844, 0.3190918, -0.34301758, 1.0322266, -3.5585938, 0.43554688, 2.8730469, -0.099121094, -0.14050293, 1, -0.29492188, 0.14379883, -2.0839844, -1.2294922, -2.59375, 1.7529297, -1.5068359, 0.7866211, 1.6894531, -0.8666992, -0.52197266, 1.9785156, -0.8178711, -0.89697266, 2.6074219, -0.44970703, 1.71875, -0.48779297, 0.28173828, 0.47460938, 1.2880859, 2.796875, -0.6513672, 1.9394531, -0.14086914, 1.2304688, -2.1699219, -1.1113281, 0.67041016, 2.9335938, -0.8125, -1.0791016, 3.5644531, -0.47875977, 1.53125, -0.08648682, 0.77197266, -1.9492188, 2.0214844, 1.4472656, -0.5541992, -0.9238281, 1.0371094, -2.4921875, -2.671875, -2.1933594, 1.3798828, 0.55566406, 0.66308594, -0.70214844, -0.7138672, 1.3642578, 0.15332031, -1.1777344, -1.7304688, 0.083862305, -1.1728516, -0.31274414, -0.7949219, 0.08898926, 0.3798828, 0.22753906, 0.6538086, -0.40942383, 0.16845703, -2.6601562, -2.2871094, 2.1054688, -2.2753906, -0.2175293, 2.4804688, -0.16894531, -1.4755859, 1.4238281, -0.26464844, -0.9589844, 2.0546875, -1.7714844, -1.3476562, 0.59765625, -0.11273193, -1.7324219, 1.0419922, -0.30737305, 0.79589844, -0.80322266, 0.51123047, 0.17407227, -0.77490234, 0.7685547, 0.40649414, -0.8208008, -1.1572266, 0.94628906, -0.35717773, 0.41748047, -0.53027344, -1.890625, -1.9804688, -1.0205078, -2.2207031, 1.0673828, -2.1953125, -0.012252808, -1.8935547, 0.5751953, 2.5058594, -0.39892578, 0.67089844, 1.7792969, 0.9711914, -0.2614746, 1.6728516, -1.2714844, 2.3261719, 1.8466797, 0.5253906, -0.7236328, -2.7949219, 0.12817383, 2.0585938, 0.76904297, -1.6123047, 0.4465332, -0.042114258, 0.58154297, 0.7866211, -0.031341553, 1.1767578, -1.0537109, -0.20727539, 0.47387695, 1.5986328, 0.032409668, 0.72802734, 0.12634277, -0.20410156, -0.7871094, 3.2402344, 0.5527344, -3.4257812, 2.3789062, -1.5878906, 1.5273438, 2.265625, 0.7089844, -1.1171875, -0.46533203, -1.8710938, -0.6147461, -1.0351562, -1.6796875, 0.79785156, 0.5566406, -1.2783203, 0.92333984, 1.7304688, -0.25610352, 2.4863281, 1.2382812, 2.0722656, -0.26098633, 0.04901123, 0.86376953, -0.7944336, 1.4228516, -2.2949219, 1.5947266, 1.3730469, -0.23913574, -1.4091797, 0.33642578, 2.2929688, 2.71875, 0.23425293, 0.20227051, 3.015625, 1.5693359, 1.7773438, -0.40649414, 1.0800781, 0.4387207, -0.57666016, -0.2154541, 1.5126953, 1.1162109, -1.8574219, 0.18676758, 0.8857422, -1.1611328, -1.8779297, 0.6567383, 0.18969727, 0.4951172, -1.421875, 2.8945312, -0.23278809, 0.48901367, -0.8510742, -1.4345703, -1.8642578, 0.37231445, -0.5029297, 0.72753906, 1.2929688, -0.84716797, 2.3574219, 0.015853882, 0.6933594, 1.1523438, -4.2734375, -0.22937012, 0.35473633, -0.9321289, 0.7885742, -0.7739258, 1.3994141, 0.88964844, 1.1591797, 0.8486328, 2.4941406, 0.78564453, 0.048614502, -1.9101562, -0.2076416, 0.13098145, 1.8955078, -2.2578125, 0.6303711, 2.6054688, -1.2207031, -2.453125, -5.796875, 2.8769531, 0.7597656, 1.6865234, 1.6376953, -1.1328125, 2.2890625, -1.5166016, 1.2226562, -2.3457031, 1.8105469, 1.1650391, -1.9726562, -0.8564453, 1.0263672, -0.32910156, 1.9755859, 1.4824219, -0.23779297, 1.1083984, -0.55908203, 2.484375, 0.0059165955, 1.3925781, 2.5273438, 0.3947754, -0.6855469, 1.8564453, 1.4042969, -0.82128906, -1.2832031, 3.1386719, 2.0742188, 0.28051758, 1.1669922, -0.087524414, -0.7084961, -1.4375, 0.10784912, -0.61621094, -1.5722656, -0.12182617, -0.26416016, 0.82128906, -0.9511719, -0.17236328, 2.8476562, 1.0273438, -2.15625, -0.7290039, 2.8984375, -1.0878906, 2.0917969, 0.28735352, -0.28198242, -0.67285156, -0.9560547, 0.3774414, 0.67822266, -2.8320312, -0.11456299, 0.7885742, 0.62646484, -0.95410156, -0.99609375, -1.5107422, -0.82958984, -0.84716797, 2.3125, -0.609375, -1.2832031, 2.8320312, -0.29589844, -0.5341797, 2.7558594, -0.55029297, 0.5576172, -1.6591797, -0.50439453, -1.3125, 1.0537109, -1.8320312, 0.28198242, 2.4414062, 0.04559326, 1.0507812, -1.3554688, -3.7675781, -0.9614258, -0.88964844, 2.2050781, -1.3125, 0.11633301, 0.6088867, 0.10015869, 2.9960938, -1.7519531, -1.3046875, 0.8857422, -2.3203125, 1.7324219, 0.23278809, 1.6376953, 0.08294678, 1.7275391, -0.6333008, 1.4228516, 1.3349609, -0.4921875, 0.70996094, 1.6591797, 0.5864258, -1.9082031, 1.5068359, 0.17321777, -0.8354492, -0.69091797, -0.7182617, 1.1210938, 2.5, -0.25927734, -0.3708496, -2.6386719]}, "B01J3S1NWI": {"id": "B01J3S1NWI", "original": "Brand: Cuisinart\nName: Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill\nDescription: \nFeatures: 146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use.\n8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability.\nCOMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more.\nNO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches.\nLOCKING LID: The lid latches down allowing for quick and easy transport\n", "embedding": [-2.4511719, 1.9169922, 2.609375, -0.45336914, -1.1738281, -0.44702148, 1.1904297, -1.9453125, -1.1494141, 2.2324219, 2.03125, -1.1025391, 0.85253906, -1.5830078, 0.55859375, 1.2460938, 2.28125, 0.5957031, 1.2949219, 1.4121094, 1.1474609, 0.69189453, 1.6396484, -0.8564453, 0.54248047, 1.1142578, 3.640625, -3.609375, -0.6254883, -2.0273438, 1.4072266, -0.21044922, 0.9433594, 1.4404297, -2.5878906, -1.4941406, -2.2910156, 1.640625, -2.4492188, -0.6928711, 0.3095703, -1.0244141, 1.8417969, -0.0869751, -2.3535156, 0.3647461, 0.25341797, 2.7050781, -0.20458984, -0.50878906, 1.5654297, 0.27929688, 1.15625, 1.1210938, -0.78466797, 1.5058594, -0.14465332, -0.8569336, 0.21313477, 0.19165039, 2.4941406, -0.26831055, -2.140625, -0.15930176, -1.4804688, -1.6191406, -0.122680664, 1.0449219, 0.55615234, 1.0292969, 2.84375, -1.0390625, -0.82373047, 0.53515625, -0.3701172, -1.3427734, -1.8896484, 1.6679688, 1.0712891, 0.42993164, -0.65625, 2.5625, 1.1933594, -2.6113281, 0.2705078, 0.4675293, 0.025650024, -0.5654297, 0.93359375, 1.0810547, -0.12988281, 2.921875, -3.1328125, -2.5, 0.859375, -1.0957031, 1.3251953, 2.6875, 0.52783203, 1.7685547, -1.1933594, 0.47314453, -1.8779297, -0.7705078, -2.9199219, -0.83691406, 2.5078125, 0.1763916, -3.6640625, 1.6152344, -0.5449219, -0.1706543, 1.0761719, 0.17614746, 0.7211914, -1.8798828, -0.40429688, 2.8242188, 2.8613281, 0.64746094, 3.7910156, 1.1142578, 0.73876953, -1.0195312, -0.8334961, 0.84521484, -1.1884766, 2.546875, 5.265625, -2.15625, -1.2285156, 0.41308594, 2.2382812, -0.050842285, -1.3574219, -3.8125, -1.5283203, -1.7470703, -2.8691406, 2.2363281, -3.2578125, 1.1152344, 2.0917969, -0.27148438, -4.3867188, -1.3222656, 0.18066406, 2.28125, 0.5151367, -1.3505859, -0.113342285, -1.2890625, -0.8574219, -1.1367188, 1.8212891, -0.57177734, -1.8789062, -0.9790039, 3.8320312, 1.2675781, 2.5566406, -1.8701172, -1.1865234, 0.62158203, 2.0390625, -2.0039062, 0.85302734, 3.8828125, -0.74121094, 0.7866211, -0.38110352, -2.0136719, 0.29907227, 0.29052734, 1.3056641, -1.4609375, 0.2878418, 2.1523438, 1.4667969, -1.9511719, -1.2695312, -3.0898438, 1.1845703, 0.6767578, 0.11920166, -1.8535156, -0.17895508, 1.2822266, 0.07312012, -2.4492188, 0.18041992, 0.78222656, 0.7832031, -1.3710938, 0.7783203, -1.0048828, -1.5947266, -1.9160156, -0.21057129, 0.06506348, -0.45825195, 0.03225708, -0.2088623, 0.5136719, -2.0351562, -3.7519531, -0.97314453, -2.0703125, 0.81884766, 2.0175781, 1.1083984, -1.0595703, 2.0878906, -1.9609375, -0.58935547, -0.8417969, 2.0703125, 1.0791016, 0.91552734, 1.5048828, -1.1035156, -0.64746094, 0.8378906, 2.7167969, 0.58496094, 1.5283203, 0.4724121, 0.44604492, -1.2958984, -1.0361328, 2.3359375, 0.5004883, -1.1962891, 0.3947754, -0.025009155, 2.5859375, 0.23864746, 1.1259766, -1.2548828, 0.041900635, 0.5048828, 0.20251465, -1.0732422, -1.0517578, -0.30566406, 0.31933594, -2.0898438, 3.578125, 2.265625, 0.53027344, -1.0693359, 0.65478516, 0.77441406, 1.9980469, -0.47924805, 0.46801758, -0.66503906, 1.1523438, -1.5537109, -2.8457031, 0.7705078, 1.0341797, -0.67333984, -0.18554688, 0.24719238, -1.0742188, 3.4746094, 0.6376953, -2.5019531, -0.98876953, 2.7089844, 0.24230957, 0.39501953, -0.029785156, 1.8505859, -0.08929443, -0.5185547, 1.8408203, 0.24926758, 0.09173584, 1.4414062, 0.040802002, 2.7324219, -2.5058594, -1.34375, 0.3383789, 0.56591797, 0.86572266, -0.3190918, 0.8129883, 4.6953125, -0.8803711, -3.3339844, 3.0839844, -1.6835938, 1.1533203, 2.3964844, -1.0400391, -0.31323242, 0.38256836, 1.3916016, 0.33642578, -1.9228516, 1.6308594, -1.6132812, -2.1855469, 0.29882812, -1.4042969, -0.9116211, 0.68652344, -0.9033203, -0.12384033, -2.2753906, 1.0244141, -1.0029297, -0.7963867, 1.4453125, -2.4648438, 1.3095703, 0.9506836, 1.1611328, 2.1894531, -1.6621094, -0.9819336, -0.3166504, 0.97265625, -1.5361328, 1.1357422, 0.09411621, -1.4023438, -0.7089844, 0.49023438, 2.8046875, -3.3105469, -3.1113281, -1.0683594, -1.6328125, -2.4101562, 0.99853516, -1.3300781, -1.046875, 0.6230469, -1.6455078, -1.0048828, -1.3017578, -2.359375, -0.5263672, -0.27539062, -1.8837891, -0.77978516, 0.29711914, 0.07232666, -0.5058594, -3.1992188, 0.4375, 0.4038086, 0.2644043, 0.39160156, -0.734375, 0.14099121, -0.97021484, -0.16430664, 0.15673828, 0.6225586, 0.546875, -1.6123047, -0.16235352, -2.9921875, 0.58203125, -2.5664062, -0.9238281, -0.9926758, 0.40234375, -3.1054688, -1.0517578, 0.18701172, -0.13061523, 3.0039062, -0.7246094, 1.9101562, -0.5385742, 0.39575195, 0.8803711, -0.3647461, -1.8896484, -1.6640625, 1.4414062, -0.95410156, -2.5566406, -2.4921875, -1.7578125, -0.45263672, 0.031677246, -1.9042969, -0.8105469, -2.9824219, 1.4609375, -3.1660156, -0.55566406, -0.30322266, 1.0273438, 0.18603516, -1.4462891, -3.1015625, -0.2746582, -2.1757812, -0.04421997, -0.62890625, 0.6142578, -0.25146484, 1.7861328, 0.9199219, -0.8544922, 0.86621094, -1.9951172, -3.8691406, 1.1796875, -0.07208252, -2.1445312, 1.9150391, -0.11920166, -2.6894531, -4.3398438, -1.0068359, 1.6025391, 1.0878906, 1.84375, 0.7314453, -0.43701172, 1.6708984, 0.36645508, 0.4519043, -1.0273438, -1.2070312, 3.2421875, -2.6835938, -1.2314453, 0.94384766, 3.5332031, -1.8037109, -1.2832031, 3.2675781, 0.39331055, 1.5732422, 2.8476562, 2.2714844, 0.77685547, -0.89697266, 2.1132812, 2.984375, 1.40625, -1.0546875, -0.6044922, -0.58203125, -1.1132812, 1.7226562, 0.42749023, 0.7402344, 2.1660156, 2.0019531, 0.109191895, -3.1035156, 0.7392578, -0.43920898, 0.41259766, 0.7158203, 2.5449219, -1.3447266, -1.0644531, -1.5595703, -0.6152344, -0.09863281, -0.18188477, -1.1816406, 3.328125, 0.69189453, -0.6928711, -0.6430664, 0.0037727356, 0.92822266, -0.35107422, 0.6064453, 1.0976562, 0.46484375, 0.55566406, -1.8623047, -1.0957031, -1.3271484, 1.6337891, -1.6191406, -2.3027344, 1.3916016, 1.9580078, -0.9038086, -2.1289062, 0.47875977, -0.21740723, -1.7783203, 1.4755859, 1.4765625, -1.9570312, 2.2285156, -0.99121094, 0.9658203, 1.1533203, -0.7216797, -0.69189453, -0.28320312, -0.5595703, -0.0112838745, 1.7265625, 1.3632812, -0.33935547, -3.625, 0.46899414, -2.6308594, 0.3017578, -0.4321289, -1.6064453, -1.0371094, 1.6347656, 1.6425781, 2.4082031, -1.6298828, 2.8535156, 0.4506836, -1.7685547, 0.60839844, -2.5039062, 0.085998535, -3.1015625, -4.75, 0.9711914, -1.8183594, -0.47485352, 3.1933594, 0.08331299, 0.7841797, 1.3515625, -0.15246582, -3.1367188, -1.9599609, -2.1660156, 0.2529297, -1.5214844, 0.26049805, 1.078125, 0.9824219, -1.2304688, -1.7304688, 0.6225586, -0.41992188, 1.7998047, 2.1210938, -2.7382812, 2.6171875, -2.2558594, -0.17529297, -0.6147461, 0.23852539, 1.8212891, -1.6171875, -0.6821289, -2.2285156, 1.8339844, 0.9345703, -0.6015625, 0.64404297, 1.2822266, 0.9946289, -2.6523438, 0.53466797, 0.9199219, 2.6542969, -0.74853516, -1.9033203, -2.1953125, 0.6425781, 0.064208984, -0.077819824, -0.46801758, -0.84277344, -2.8105469, 1.0351562, 0.64453125, 1.9443359, 1.4140625, -0.5654297, -2.7226562, -0.37353516, -0.06591797, -2.5136719, -1.5048828, -0.37646484, 0.08569336, -1.2490234, -0.45336914, -2.4472656, 0.46166992, -1.7832031, -0.6035156, -3.0136719, 3.8984375, 1.4580078, 2.3847656, 2.0917969, -1.4833984, 0.18188477, 1.734375, -0.3779297, -0.6357422, 0.89501953, -0.94628906, 0.5493164, 1.8740234, 1.2226562, -2.0820312, -0.68847656, 1.0810547, -2.8007812, -0.46606445, -3.4941406, 1.8652344, -1.4121094, -1.1455078, 1.0634766, -1.3271484, 3.1289062, -1.5087891, -1.1660156, -0.77001953, 0.3540039, -1.7148438, 0.6176758, 0.16625977, -0.04006958, 1.9804688, 1.0302734, 2.2246094, -1.4833984, 0.38549805, -0.59765625, 2.2636719, -1.4160156, 0.37451172, -0.4362793, -0.3618164, -1.8886719, -0.4807129, 1.1347656, 2.5683594, 0.5361328, 2.8496094, 1.0859375, -1.9794922, 0.45629883, 0.71777344, -2.5273438, -1.5820312, 0.27954102, 0.4675293, 1.5527344, -0.19726562, -3.4453125, 0.12817383, 0.94433594, -1.4970703, 0.57666016, -0.50146484, -1.2060547, 0.29248047, -2.2832031, -0.76953125, 0.025924683, -1.5625, -0.119140625, -1.2304688, 0.41796875, 0.18554688, 1.9287109, 3.6621094, 0.26123047, -1.2119141, 3.1992188, -1.2490234, 1.390625, -0.8935547, -1.8740234, -3.671875, -0.9995117, 2.2539062, 1.4160156, 1.9765625, 0.65625, 1.7070312, -2.9121094, -0.17407227, -2.3945312, 3.5019531, -1.28125, -1.15625, 0.49169922, -1.3183594, 0.18054199, -4.1992188, 0.39794922, -0.009986877, 2.0195312, 2.1113281, -0.60302734, -1.6035156, -0.6333008, -2.1132812, -6.3515625, -1.2148438, 1.1220703, 0.8779297, 0.27685547, 2.6054688, -0.984375, -0.0043563843, 0.8261719, 0.5415039, -2.8867188, 0.23657227, -0.453125, -1.6660156, -0.6879883, 0.9399414, -0.5234375, 1.1962891, 1.7314453, 0.10687256, -0.052520752, -3.0429688, -1.265625, 0.65625, -1.2255859, -0.4284668, 2.1894531, -1.1738281, -0.10479736, 1.3896484, 2.4511719, -1.5625, 2.2792969, -1.8115234, -1.4287109, 1.3066406, -0.18603516, 0.73339844, -0.5180664, -1.8886719, 0.92333984, -0.9501953, 2.0371094, 1.6982422, 0.97021484, -0.1583252, 2.7011719, -1.0097656, 0.26733398, 0.58447266, 0.98876953, 1.8222656, 1.3505859, -2.6835938, -0.4868164, -2.0683594, -2.1386719, -0.123535156, -1.6201172, 0.5102539, -2.09375, 1.4023438, 1.6904297, 0.53222656, -0.18066406, -0.24206543, -0.5, -0.78759766, 2.4609375, -0.39013672, 2.578125, 2.59375, -1.6132812, -1.9003906, -2.4453125, 1.1533203, 0.40283203, 0.43774414, -0.46484375, -0.5053711, 0.30249023, 1.1416016, -0.7397461, 3.0058594, 2.3535156, -0.2454834, -1.1660156, 1.40625, 3.5390625, -0.20422363, 1.3525391, 1.140625, 1.9619141, -0.50634766, 3.6484375, -0.07287598, -1.6640625, 1.7998047, -1.1953125, 1.6142578, -1.1240234, -1.3085938, 0.074035645, -2.0820312, 0.21789551, -1.9208984, -1.5751953, -3.3242188, 2.2363281, 1.4394531, -1.4892578, 0.16308594, 3.8808594, -0.40966797, 1.4228516, 1.7587891, 1.3193359, -0.6220703, 2.1269531, -1.6162109, 0.1784668, 0.625, -3.3730469, 1.6582031, 1.7646484, -1.4414062, -0.31640625, 4.1992188, 2.0820312, 2.9492188, 0.89990234, 1.6025391, 2.6464844, 0.6801758, 4.6328125, 0.7314453, 1.9082031, 2.4277344, -0.15368652, 1.4951172, 1.8925781, 2.4628906, -0.08062744, -1.7646484, 2.3359375, -0.83251953, -2.0039062, -0.83984375, 1.046875, 1.0351562, -4.4726562, 1.3349609, 0.7832031, 0.5786133, -2.3398438, -0.24182129, -0.29003906, -0.69628906, -0.47802734, 1.7822266, 2.828125, -0.625, -0.30639648, -1.4736328, 0.69921875, 1.2646484, -2.6210938, 0.9658203, -0.3088379, -1.7441406, -0.16186523, -0.10107422, 0.8251953, 0.8852539, -0.13464355, 1.7949219, 1, 1.2304688, 2.4902344, 0.057434082, 2.1855469, -0.3310547, 3.0039062, 1.0244141, -1.515625, 1.7304688, -1.7529297, -2.1855469, -3.0253906, 1.2148438, 1.4853516, 0.97558594, -0.090148926, -1.6474609, 2.3164062, 0.8066406, 1.3925781, -2.609375, 2.1953125, -1.4072266, -4.234375, -0.93359375, 0.03326416, 0.32958984, 3.1757812, 1.5400391, -1.7236328, 2.7070312, 0.6870117, 2.1054688, 1.5058594, 1.1669922, 0.97314453, 2, -1.0654297, 0.7993164, -0.3557129, -1.1748047, -0.84472656, 2.6425781, 0.8769531, -0.2770996, 0.87597656, -0.53466797, 0.36401367, -0.64453125, -0.5830078, 0.5175781, -1.5693359, -0.78271484, -0.26293945, 1.0625, -1.3779297, -0.80859375, 3.0410156, 0.26123047, -1.8427734, 0.6088867, -0.15441895, 0.7207031, 3.1835938, 0.06781006, 0.18444824, -0.7158203, 0.5761719, 1.8798828, -0.06161499, -1.0253906, 0.3947754, -0.8881836, 1.6025391, -0.97753906, -1.5029297, 0.45947266, -0.15319824, -0.28271484, 0.2322998, -1.2158203, -0.9785156, 1.5283203, -1.0332031, 0.69970703, 2.5371094, -1.6601562, -0.29492188, -3.3613281, -2.3613281, 0.97314453, -2.6601562, -1.0820312, 0.7714844, 4.7421875, 1.4638672, 1.0966797, -1.7392578, -2.6523438, -0.51171875, -1.5888672, 3.3027344, 0.0826416, -1.0097656, 1.1474609, 0.22619629, 1.2285156, -1.3466797, -1.6123047, 0.016616821, 0.14648438, 0.4711914, -0.609375, 1.7353516, 2.7324219, 0.34301758, 0.56689453, 2.328125, 1.1904297, -0.32788086, 1.328125, 2.1523438, -0.3359375, -2.6054688, 2.5917969, -1.2548828, 0.28198242, 0.5126953, 0.7939453, 2.3027344, 0.38085938, 0.10418701, -1.3486328, -2.2285156]}, "B07NBNPSLG": {"id": "B07NBNPSLG", "original": "Brand: Best Choice Products\nName: Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray\nDescription: Highlights:
          Elegant Square Design
          Easy to Use
          Handles for Portability
          Includes Matching Side Table/Tank Storage
          Weather-Resistant Pit Cover

          Specifications:
          Overall Dimensions: 34.75\"(L) x 34.75\"(W) x 12\"(H)
          Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
          Weight: 70.6 lbs.
          Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
          Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
          BTU: 40,000
          Note: The propane tank should be placed under the side table (tank not included)
          Assembly required (with instructions)

          Package Includes:
          Fire pit
          Side table
          Glass Rocks
          Pit cover
          Hose

          BCP SKU: SKY5230


          Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75\"(L) x 34.75\"(W) x 12\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "embedding": [-1.6142578, 1.8330078, 1.1855469, -2.0292969, 2.6796875, 0.82470703, 2.09375, -2.3632812, 0.39892578, 1.6259766, -1.359375, 0.19628906, -0.02708435, -4.0664062, 1.8740234, 0.112976074, -0.2758789, 1.5371094, 3.1738281, 1.0234375, 2.0253906, 0.045074463, 2.3789062, -1.5205078, 1.6513672, -0.5629883, 2.8847656, -4.2734375, -1.4775391, 1.6210938, 2.0019531, 1.7451172, -0.921875, 2.2285156, -2.3125, -1.6035156, -0.30493164, 1.8056641, -1.6210938, 0.057891846, -2.6914062, -1.0869141, 4.3125, 1.1474609, -1.3857422, 0.58251953, 0.30029297, -0.97753906, -0.5410156, -2.0566406, 0.6381836, 1.0292969, 1.7587891, 0.05126953, -0.28515625, 0.5698242, -0.34814453, -2.3925781, 1.9697266, 1.0751953, 1.1123047, -0.56689453, -1.6835938, 2.5488281, -1.6425781, 1.7832031, -1.1904297, -1.2646484, 1.0117188, 1.9130859, 1.0683594, 0.8798828, -0.62353516, -0.19665527, 0.55908203, -1.2832031, -2.4941406, 2.2304688, 0.9711914, -1.0908203, -1.6972656, 3.1660156, 0.45874023, -1.1777344, -0.84375, -0.30615234, -1.6962891, -0.57470703, 0.09033203, 1.0878906, -0.8725586, 3.9882812, -1.8955078, -3.8730469, 0.013687134, -1.7919922, 0.8989258, -0.4338379, 0.29760742, 1.4355469, -0.115478516, -0.4013672, -0.43798828, 0.5864258, -3.1601562, -2.3554688, 0.37890625, 0.03387451, 0.49829102, -0.4951172, -1.2695312, 1.3056641, 1.9082031, -0.7661133, -0.10333252, 2.46875, 1.1044922, 2.1972656, 4.6523438, 2.484375, 5.46875, 1.0595703, 0.5019531, -1.6943359, 0.28076172, 0.8935547, -2.3007812, 2, 0.1105957, -1.6748047, 0.61279297, -2.0664062, 3.0390625, -0.16467285, -1.9257812, -0.78222656, -2.3984375, -0.9433594, -3.4316406, 0.12646484, -3.4980469, 2.1992188, 2.03125, 0.20776367, -2.9257812, -0.33520508, -1.4462891, 2.8105469, -2.0820312, -2.0332031, -0.63623047, 0.049682617, -0.25097656, -1.3134766, 0.44213867, -1.1845703, 1.7099609, -1.6875, 2.8125, 1.3486328, 1.4199219, -1.6162109, 0.4892578, 1.4326172, 0.2685547, -2.7597656, 2.4648438, 0.95947266, 0.51416016, 1.4541016, 0.61328125, -1.5244141, -1.1640625, 0.4951172, 0.33422852, 0.15612793, 1.2333984, 1.5839844, 2.9277344, 0.036346436, -1.3349609, -0.9580078, 1.0732422, 0.41577148, 0.009521484, -2.1015625, -0.1854248, -2.5703125, 0.09637451, -1.6875, -1.3271484, 1.0771484, -2.8144531, -2.1953125, -0.22521973, -2.0839844, -4.9335938, -1.7714844, 2.0605469, 3.0527344, -1.7480469, 0.28393555, -1.3339844, 0.4128418, -2.71875, -2.3730469, 0.30517578, 1.1621094, 1.140625, 0.53027344, -0.42797852, -0.21008301, 1.4716797, 0.4284668, -0.0071258545, -0.8828125, 2.4414062, 2.0429688, 1.6503906, 1.5986328, 0.08679199, -0.7685547, 1.4453125, 3.5449219, 2.0644531, 2.4804688, 0.6308594, -0.26293945, -2.6640625, -0.7529297, 1.6699219, 0.7558594, 0.7895508, 2.7148438, -2.2753906, 3.2207031, 0.44580078, -1.4501953, 0.875, -0.1907959, 0.515625, -1.3720703, -1.4873047, -0.033050537, -1.1582031, -0.054870605, -1.3144531, 1.53125, 1.9902344, 0.54785156, -2.171875, -1.8164062, 0.6381836, 0.4350586, 0.017166138, -0.14294434, -0.026885986, -0.33032227, 1.4003906, -2.0859375, 0.5957031, 1.8417969, 1.0107422, -0.4177246, -0.8808594, -1.7880859, 1.2412109, 0.09051514, -2.9765625, -0.42358398, 0.3154297, -0.21972656, 2.6679688, -0.36914062, -0.6923828, 0.6201172, -2.0566406, 1.8173828, -0.07165527, 2.7988281, -0.07312012, -1.0898438, 1.2089844, -1.7197266, 1.1494141, -0.055511475, 2.2851562, 0.64453125, 0.43969727, 0.7236328, 3.7851562, -0.7480469, -1.0898438, 2.2929688, -0.08392334, -0.5708008, 2.1914062, -0.3684082, 1.1025391, -0.28051758, 1.2675781, 2.6523438, 0.37475586, 2.921875, -2.6894531, 1.4638672, 0.1194458, -2.6289062, 0.81689453, 0.37597656, 0.03149414, -1.6025391, -0.5810547, 1.40625, -3.6035156, -0.61328125, 2.3125, -3.2558594, 2.1074219, 1.0546875, 0.375, 0.18395996, -2.140625, -2.6464844, 0.010047913, 2.5351562, -0.98339844, 0.5805664, -1.0322266, -0.33618164, -1.6875, -1.0791016, 1.6621094, -2.9980469, -1.0771484, -1.640625, -1.6796875, -0.4819336, -1.5039062, -1.6669922, -0.30078125, 1.390625, -1.5166016, 0.83447266, -1.8095703, -2.078125, 1.1025391, 1.6494141, -1.7099609, -0.7475586, 0.3310547, 2.1464844, -0.69091797, -2.7851562, 0.3305664, 1.2695312, 1.6259766, 0.6875, 0.28735352, -0.45239258, -2.2734375, 2.5292969, 1.4072266, -2.1992188, 0.67626953, -1.4941406, -1.4013672, -4.6289062, 0.9868164, -0.8652344, -0.48779297, -0.08868408, -0.18225098, -1.4736328, -1.2861328, 1.1865234, -2.0390625, 4.9804688, 1.1152344, 1.6044922, -0.14550781, -0.44921875, -0.39282227, -0.83935547, -3.1308594, -0.31274414, -0.98828125, -1.8671875, -1.9208984, -2.0410156, 0.8803711, -2.7480469, -0.6376953, 0.3544922, 0.3684082, -0.88134766, 1.7832031, -0.6850586, 0.47851562, -1.6826172, 1.1162109, 0.25268555, -1.2128906, -1.2060547, -0.9223633, -0.4880371, -0.025390625, 0.25952148, 3.2304688, -0.5986328, 1.5019531, 2.1054688, -2.1660156, 1.2265625, 0.9350586, -3.0878906, 0.7133789, 2.8867188, 1.1855469, 1.0458984, -1.7568359, -1.9160156, -2.2441406, 0.8364258, 1.7265625, 1.1748047, -0.056030273, -1.0136719, -0.7763672, 0.8457031, -1.1269531, 0.4951172, 0.97998047, -0.6123047, 2.96875, -2.7851562, 0.36328125, 0.022018433, 2.9648438, -3.6699219, -1.7148438, 1.890625, -0.27661133, 0.6430664, 0.009208679, 0.4501953, 0.4855957, 0.10333252, 0.92041016, -0.009048462, 1.9375, 0.6308594, -0.44555664, 0.27075195, 1.2841797, 1.4882812, 1.5566406, 1.4726562, 0.39819336, 1.71875, 0.5131836, -4.578125, -0.23205566, 1.5283203, 0.3630371, -0.36157227, 1.5527344, -1.0478516, 0.30322266, -0.23120117, -0.47631836, 0.80810547, -1.3115234, 0.58251953, 1.4003906, 1.4892578, -1.0849609, -0.8720703, -0.3791504, -0.95654297, -2.5859375, 1.5595703, 0.027908325, -0.13208008, 0.94677734, -2.7949219, 0.27539062, -0.55566406, 3.2246094, -1.4619141, -2.2714844, 0.171875, 2.6035156, -0.9560547, -2.1621094, 0.5366211, -2.6269531, 0.39160156, 5.28125, -0.52441406, -2.0429688, -1.1806641, -1.7226562, 1.2734375, 2.328125, -0.6347656, 0.3293457, 1.0654297, 0.015014648, -0.24511719, 0.16430664, 0.22949219, 0.87939453, -3.390625, 1.6601562, -1.7070312, -0.46411133, 2.9960938, -3.0625, -0.9199219, 1.3896484, -0.77978516, 2.4414062, -1.0263672, 1.6572266, 1.1484375, 0.14855957, 3.1757812, -0.8618164, 0.008300781, -1.7783203, -5.0429688, 0.6201172, -2.0859375, -0.87060547, 2.0839844, 0.05432129, -0.0736084, 0.13708496, -1.2177734, -5.46875, -1.5849609, -1.3847656, -0.6743164, -4.1054688, -1.2373047, 0.029678345, 0.77197266, -1.4873047, -1.9980469, 1.0458984, 1.9697266, 0.5644531, 0.18249512, 0.02178955, 2.8769531, -1.9238281, -0.5366211, -0.020431519, 0.7993164, -0.39257812, -1.3574219, -0.09899902, -1.3291016, 2.1289062, 0.23132324, -1.5888672, 2.0136719, 2.390625, -0.13964844, 0.05432129, -0.19091797, -0.16271973, 4.5820312, -0.24353027, -2.4316406, -0.2763672, -1.328125, 2.3613281, -0.45458984, -1.2255859, 1.3447266, -2.6621094, -0.8125, 0.6665039, 1.9736328, 1.5263672, 0.004966736, -3.3125, 0.77978516, -1.2089844, -1.0771484, -1.4052734, -1.4824219, 0.22314453, -0.6694336, 0.5883789, -2.7597656, -0.2253418, -1.3535156, -1.2880859, -1.0419922, 1.9501953, 1.1982422, 3.3847656, 3.2636719, -1.5058594, -0.73095703, 2.2519531, -0.75097656, 0.61328125, 2.3554688, 0.54052734, -0.5961914, 2.6210938, -0.9213867, -1.0976562, -0.53515625, 2.0566406, -1.8476562, -1.4619141, -0.0058250427, 0.13122559, -0.9458008, -0.8071289, -1.5976562, -1.8662109, 1.1289062, -0.796875, 1.7705078, -1.4423828, 1.4179688, -1.5888672, 2.4199219, 0.23181152, -0.2758789, 1.0820312, 1.9130859, 0.95947266, 1.1425781, 3.6230469, 0.47802734, 1.9755859, -1.3535156, 0.51123047, -1.4658203, 0.78125, -1.6328125, -2.1503906, 1.5820312, 4.5, -2.7910156, 0.70214844, 0.47094727, -1.9355469, 3.4980469, 0.40014648, -1.8847656, 0.0803833, 0.19042969, -0.91308594, 1.1992188, -0.85546875, -3.8378906, -0.61816406, 1.2070312, -1.7460938, 1.8798828, 0.75341797, -3.1503906, 1.7080078, -2.4902344, -0.52783203, -0.9433594, -0.8754883, -1.375, -2.4414062, 0.50878906, -1.0771484, 0.51708984, 2.0136719, -0.63964844, -0.5205078, 1.3300781, 1.0400391, -0.33520508, -0.76123047, 0.85546875, -0.3269043, 0.80566406, 0.20214844, 0.3095703, 2.4082031, -1.5605469, 2.25, -1.9628906, -1.7753906, -1.3164062, 2.8769531, -1.4472656, 0.76708984, 2.7578125, 0.3449707, 1.3701172, -2.2636719, 0.5078125, -0.2993164, 1.4501953, -1.0927734, 0.72021484, -0.11016846, -1.5146484, -2.5507812, -3.1347656, -0.37231445, -0.27075195, -2.6210938, -0.3137207, -1.5830078, -1.1298828, -0.6875, 0.5805664, 0.004558563, -1.1054688, -0.19836426, -1.5087891, -1.9609375, -0.3947754, 1.59375, 1.4404297, 0.56396484, -0.1394043, -1.0449219, -1.3007812, -3.8847656, -0.14953613, 1.1464844, -0.41918945, 0.89453125, 1.1416016, -1.7041016, 1.0986328, 2.2226562, -0.6064453, -0.40673828, 1.8798828, -0.5942383, 0.29223633, 2.28125, -1.7373047, 0.77441406, 0.04876709, -1.2617188, 1.8642578, -1.1425781, 0.9423828, -0.96533203, 1.0019531, -0.37963867, 0.8496094, 0.44262695, -0.11151123, 0.76220703, 0.7236328, 2.9199219, 2.2832031, -2.3007812, -0.37890625, -1.3378906, -1.5458984, -1.0664062, -3.3632812, -1.2705078, -1.2617188, -0.05984497, 0.9399414, -0.027999878, 1.8476562, 1.8330078, -0.08001709, -0.9975586, 0.7583008, -0.86083984, 2.0019531, -0.20605469, -1.3720703, -3.0097656, -3.5566406, 1.2607422, -0.5727539, 0.47338867, 0.21276855, -0.10784912, -2.7207031, 1.0166016, 0.23266602, 0.95947266, 1.2490234, 2.2441406, -1.5595703, 1.0214844, -0.6933594, 0.59472656, 2.0917969, -0.2109375, 1.7490234, 0.06298828, 2.0839844, 2.1523438, -1.8115234, 1.4326172, -0.025848389, 0.7607422, -0.73046875, -0.26757812, 1.2080078, -1.3964844, -0.50927734, -2.6523438, -1.0615234, -2.8886719, 1.7773438, 0.99072266, 1.1318359, 0.95654297, 0.52685547, -1.3759766, 0.56689453, 1.0791016, -1.3105469, 0.06665039, -1.5976562, -0.36621094, 0.42236328, 1.4160156, -0.2548828, 0.117248535, 0.8984375, 0.5395508, -2.4824219, 0.24560547, -1.1835938, 0.25854492, 0.5878906, 3.1132812, 2.2324219, 0.96240234, 2.3515625, -1.2421875, 2.9140625, 3.1347656, -1.6757812, -0.37963867, 1.9345703, 3.5625, -0.9370117, 0.117492676, 0.64208984, 1.1191406, -0.85498047, -0.4807129, 0.23620605, 0.0076522827, -3.7910156, 2.2695312, -1.0498047, 1.8085938, -0.85546875, 0.49975586, -0.87060547, -0.6411133, -0.9111328, 0.6958008, 1.3134766, -0.5102539, 0.24377441, 1.0283203, 0.7128906, -0.46923828, -2.5175781, 1.1953125, -0.16137695, -2.6777344, -1.2070312, 3.7558594, 2.0917969, 2.828125, -0.8769531, 2.0527344, -0.32299805, 1.4072266, 0.8613281, 2.2539062, -1.0605469, -0.32739258, 1.7890625, 1.9277344, -1.9111328, -0.6533203, 0.22631836, -0.5341797, -2.6132812, 1.4521484, 0.42651367, 1.578125, 0.16235352, -2.2460938, -0.8354492, 1.8583984, 0.20056152, -3.0546875, -1.2607422, -0.1817627, -2.3867188, 0.3696289, -0.43725586, -0.54345703, 3.5292969, 1.9052734, -0.7939453, 2.9140625, 2.5195312, 0.9550781, 0.59228516, 0.038604736, -1.7333984, 1.1230469, -0.41430664, 1.6005859, 1.0283203, -0.39257812, 0.20654297, 1.4833984, 1.25, -0.79589844, 0.09161377, -3.1699219, 0.3918457, -0.64501953, -2.671875, 0.9692383, -0.6567383, -1.2929688, 2.3046875, 0.12683105, 0.6044922, -2.1074219, 0.3359375, 0.10180664, -2.4765625, -0.4140625, 0.36499023, -0.7993164, 1.5351562, -0.37841797, -0.2548828, 1.2148438, 0.58203125, 1.6464844, -1.8291016, -0.21118164, -0.90771484, 0.99560547, -0.74658203, -0.85058594, -0.7167969, 0.4885254, -0.2512207, 1.1767578, 3.3613281, -2.3007812, 0.7265625, 0.78271484, -0.10345459, 1.1103516, 2.1894531, -0.48706055, -0.8378906, -0.9892578, -3.3203125, 0.46069336, 0.3720703, -2.5019531, 0.24182129, 5.8320312, 2.3007812, -0.5961914, -0.16674805, -3.5273438, -0.6982422, -0.2956543, 3.5, 0.047302246, -0.5517578, -0.26782227, 0.09057617, 4.875, 0.5107422, -0.73095703, -1.4121094, -0.23913574, 2.3183594, -1.3447266, 1.7939453, -0.5180664, -0.35791016, 1.7207031, 2.4042969, 3.6289062, 0.70458984, 1.3828125, 1.5234375, 0.09649658, -2.0722656, 0.25927734, -0.3137207, 0.49194336, 1.2919922, -0.009170532, 1.5576172, 0.052459717, -0.5839844, -5.5195312, -0.9345703]}, "B0836CBZN1": {"id": "B0836CBZN1", "original": "Brand: GASPRO\nName: GASPRO 1500\u2109 Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified\nDescription: The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

          You can do so many dishes in the different heat zones:
          Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
          Seafood: shrimp, skewers, salmon filets.
          Veggies: corn, potato chips, large pieces onion.
          You can also make sandwiches, nachos, enchiladas, hamburgers.

          The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

          GASPRO infrared grill unique designed double-use connection:
          1lb connection and standard grill connection (3/8\u201d male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
          1.Uses disposable 16.4 oz LP cylinder (sold separately)
          2.Uses big LP propane tank. (Propane hose sold separately)
          3.Uses RV Propane tank. (Propane hose sold separately)

          Product Specification:
          Material: 304 Stainless Steel
          Flow Capacity: 9000 BTU/hr
          Fueled Type: LP Gas Propane
          Ignition Type: Push Button Electronic Igniter
          Product Dimension: 9.3\" W x 30.7\" D x 16.3\" H
          Product Weight: 19.4 lbs
          Temperature Range: 200-1500 Fahrenheit

          Package Included:
          Rod Grid x 1
          Grease Tray x 1
          Wooden Grid Tool x 1
          Silicone Oven Mitts x 2
          Sheet Metal Cooking Grid x 1
          Product Manual x 1

          Warning:
          OUTDOOR USE ONLY
          \nFeatures: Boasts the infrared cooking system reaches an incredible 1500\u00b0F, serves up steakhouse-quality steaks about 2 min per side.\n6-notches in the grill rack determined the grate's proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies.\nGives you multiple connection options, built-in a standard 3/8\u201d male flare fitting in the valve and regulator. It allows you to connect any 3/8\u201d female flare hose to a big propane tank.\nOpening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it.\nPass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.\n", "embedding": [-2.3945312, 1.1767578, 1.9326172, 0.91796875, -0.1394043, 1.4462891, 1.3212891, -1.140625, 0.23461914, 1.8994141, 0.19091797, -0.6020508, 1.1826172, -2.0800781, 1.8808594, 1.1796875, 1.2421875, 0.82421875, 1.9306641, 2.0585938, 1.6396484, 0.76416016, 0.06640625, -0.53564453, 1.2724609, 0.43823242, 2.9570312, -3.0195312, -0.046875, -2.0195312, 1.0400391, 0.08618164, 0.19140625, 1.0273438, -1.7333984, -0.28222656, -1.2226562, 1.4042969, -0.7290039, -1.1777344, -1.2021484, -1.0859375, 2.2753906, 0.37426758, -2.9550781, -0.20300293, -0.5498047, 2.7519531, -1.1621094, 0.036895752, 0.36206055, -0.1541748, -0.97265625, 0.33447266, -0.6386719, 0.88720703, -0.48388672, -1.5078125, 0.33862305, 0.04055786, 1.4648438, -0.48657227, -1.7636719, -0.07537842, -2.1367188, -2.2851562, 1.3476562, -1.3447266, 0.43554688, -1.3496094, 2.671875, -0.5830078, -1.8525391, -0.54541016, -0.18334961, -2.1640625, -2.484375, 0.7675781, 0.7207031, 0.36816406, -1.0292969, 2.6542969, 0.44995117, -2.53125, 0.6347656, 0.16638184, -1.484375, -0.42382812, 3.25, 1.0869141, -1.1425781, 2.8613281, -2.0097656, -3.9726562, 1.8291016, 0.1932373, 0.40039062, 1.6826172, -0.041168213, 2.3808594, 0.49072266, -0.68066406, -0.56591797, 0.49731445, -2.0039062, -0.17321777, 2.5917969, 0.064331055, -4.1757812, -1.2666016, -0.5571289, 0.012428284, 1.6123047, -0.35424805, 0.6958008, -0.51464844, -0.22241211, 1.8046875, 2.125, 1.0244141, 2.6074219, 1.1425781, -0.28686523, -0.77978516, 0.06903076, 0.6044922, -0.94628906, 2.2792969, 4.2148438, -0.3527832, -1.2988281, -1.6738281, 1.7568359, -0.6191406, 0.039733887, -2.65625, -1.7880859, -1.2470703, -4.8203125, 0.064086914, -4.1210938, 0.14648438, 0.41357422, 0.41381836, -3.9570312, 0.19726562, -0.15344238, 2.3085938, 1.2167969, -1.015625, 0.7788086, -1.3056641, 0.6879883, -1.3046875, 2.3632812, -0.97753906, -1.2275391, -1.4394531, 3.9179688, 1.9482422, 2.8554688, -2.296875, -1.6484375, -0.4260254, 2.5820312, -1.1835938, -0.72558594, 1.9316406, 1.5664062, 1.3662109, 0.12756348, -2.9667969, 0.3635254, -0.52490234, -0.56152344, -2.03125, 0.61572266, 2.265625, 1.2089844, -1.4189453, -1.5, -2.4453125, 1.2226562, 2.2851562, -0.09020996, -1.4628906, -0.69970703, 1.1318359, 1.1748047, -1.7998047, -0.2919922, -0.61328125, -0.3959961, 1.8144531, -0.54785156, -1.4482422, -1.4394531, -0.9770508, -1.0556641, -0.9326172, -1.7402344, -0.57421875, -0.8876953, -0.22460938, -1.2470703, -2.90625, 0.5205078, -1.0263672, -0.018447876, 2.8085938, 1.5683594, -0.19433594, 1.2392578, -2.1074219, 0.13122559, -3.0253906, 0.7583008, 2.1484375, 1.3671875, 2.3574219, -0.016616821, 0.90234375, 0.10357666, 2.09375, 1.2695312, 2.4570312, 0.32348633, 1.7314453, -2.5605469, -1.8203125, 3.8671875, -0.32250977, -0.21105957, -1.2734375, -1.1621094, 2.0332031, 1.46875, 0.74853516, -1.4902344, -0.21508789, 0.07147217, 0.3623047, -2.9316406, -1.0097656, -1.8681641, -0.5620117, -3.3867188, 1.5146484, 1.1757812, -0.17492676, -1.3359375, 0.359375, 0.059692383, -0.14611816, -0.42919922, 0.95410156, -0.07946777, 1.6943359, -2.7011719, -1.5087891, 0.93652344, 2.5019531, 0.04147339, 0.6933594, 0.8125, -0.73583984, 4.0390625, 0.80371094, -2.4726562, -1.7363281, 0.40576172, -0.27954102, 1.1923828, 0.43579102, 0.23913574, 0.76171875, -1.4130859, 2.3496094, 1.1162109, 0.78027344, 0.35717773, -0.93847656, 2.3945312, -2.2597656, 0.5625, 0.21850586, 0.74072266, -1.3125, -0.062164307, 1.3232422, 4.7070312, 0.029434204, -4.25, 3.3222656, 0.09289551, 0.18945312, 2.1054688, 0.09008789, -0.008094788, -0.8261719, 1.6279297, 1.0556641, -0.98046875, 1.171875, -0.23046875, -1.7080078, -0.7729492, -2.1875, -0.37597656, 1.1083984, -0.79052734, -0.39770508, -1.953125, 0.79003906, -1.3740234, -1.0976562, 2.7070312, -0.79589844, 0.64697266, 1.1640625, 1.4375, 2.2421875, -1.2441406, -2.0371094, -0.57373047, 1.1230469, 0.10205078, 0.8574219, 0.37426758, -3.1425781, -1.8320312, -0.3894043, 1.1748047, -1.25, -2.4414062, 0.4584961, -3.734375, -1.6367188, -0.14355469, -1.5771484, -3.3632812, 0.59277344, -1.0234375, -0.7133789, -0.6538086, -1.3076172, -1.0957031, -0.85009766, 0.48291016, -1, 1.34375, 0.43066406, 0.81884766, -4.515625, 0.13354492, 0.4807129, -0.4814453, -1.171875, -1.7578125, 0.3083496, 0.10284424, -0.3959961, 0.29052734, 0.20959473, 0.44799805, -1.5498047, -0.25268555, -3.8652344, 0.7836914, -3.5820312, 0.9033203, -1.6904297, 0.20751953, -2.1054688, -1.3173828, 0.15307617, -1.4443359, 2.6914062, -1.4707031, 1.4072266, -1.828125, -0.15026855, 1.2636719, -0.4555664, -0.8935547, -1.8144531, 0.76123047, -2.140625, -1.9306641, -1.7636719, -0.4206543, -0.22216797, -0.15783691, -1.4726562, -0.21362305, -2.6425781, 2.4414062, -1.1894531, -2.2871094, 0.1048584, 0.8227539, -0.23535156, -0.8300781, -2.8339844, -0.46655273, -1.671875, -1.2724609, 0.5131836, 0.83984375, -1.1582031, 1.15625, 2.3730469, -0.6376953, -0.60302734, -1.8994141, -4.0351562, 3.0058594, 0.10491943, -3.2324219, 2.5273438, -0.64501953, -1.4912109, -1.4072266, -0.15710449, 3.2480469, 3.5136719, 3.2558594, 0.15026855, -0.9555664, 2.9179688, 2.3261719, -0.6064453, -1.3759766, 0.42382812, 3.2558594, -1.2910156, -1.1542969, -0.33496094, 2.6582031, -2.8476562, -1.5703125, 2.2011719, 0.5258789, 4.296875, 1.2480469, 0.7441406, 1.6962891, -1.7158203, 1.7402344, 0.18322754, 0.34423828, 0.097351074, -1.6914062, 1.1064453, -0.4711914, 1.8066406, 2.4980469, 0.28857422, 2.8300781, 1.2431641, 0.19714355, -1.7988281, 1.5517578, 0.8876953, 0.94091797, -0.8803711, 1.9648438, -0.09625244, 0.27026367, -0.3959961, -2.1191406, -0.77685547, -0.7597656, -0.12097168, 2.5976562, 1.4179688, 0.83984375, -0.09301758, 1.1425781, 1.2685547, -1.5195312, 1.0986328, 0.26342773, -0.2993164, 0.6669922, -0.78564453, -1.6435547, -2.3691406, 1.7177734, -0.076416016, -0.7861328, 0.5859375, 1.1660156, -0.51904297, -1.1357422, 1.6914062, -0.33203125, -0.5625, 1.2617188, 0.7944336, -0.87158203, 2.3789062, -0.3425293, 1.6445312, 1.8330078, -0.21813965, 0.18811035, -1.7578125, 1.2441406, -0.77685547, 0.15454102, 2.015625, -0.08709717, -2.7832031, -0.051361084, -3.9394531, 0.14880371, 0.90234375, -1.9697266, -1.6259766, 1.5410156, 1.7900391, 1.4355469, -1.1220703, 2.7597656, 1.2871094, -2.046875, 1.3027344, -5.28125, -1.9404297, -3.3828125, -5.5390625, 1.5771484, -0.42797852, 0.0970459, 1.96875, 0.52783203, 0.5698242, 2.5039062, -0.7236328, -2.609375, -1.3623047, -0.49609375, 1.0927734, -1.2314453, -0.45410156, 1.3242188, 0.22192383, -1.2001953, -0.83447266, 0.32788086, -1.1943359, 1.1728516, 1.7685547, -2.046875, 1.4335938, -1.1972656, 0.55615234, -0.7397461, -1.8515625, 0.6879883, -0.8227539, 0.19836426, -2.3261719, 0.86572266, 1.5126953, 0.46044922, -0.96728516, 0.91259766, -0.007774353, -0.8105469, -0.21496582, 1.6142578, 2.4628906, 0.28271484, -1.0322266, -1.1181641, 0.96435547, 0.1529541, 0.56933594, -1.0341797, -0.037750244, -1.7753906, 0.5708008, -0.3540039, 1.3740234, 0.8955078, 1.6962891, -3.7265625, -1.3925781, -0.17028809, -2.1386719, -1.7089844, -0.55322266, -0.25732422, -1.3818359, -0.6616211, -1.3398438, -0.62841797, -2.0625, 0.5834961, -3.7675781, 3.0683594, 1.8300781, 2.0273438, 2.8613281, -0.89453125, -0.6015625, 0.6748047, 0.05508423, -1.4267578, 0.78027344, 0.34399414, 0.1665039, 1.0957031, -0.5834961, -2.1503906, -0.48950195, 2.7285156, -2.1230469, 1.3759766, -1.9638672, 1.53125, -1.1337891, -0.44848633, 1.7353516, -0.49023438, 3.3945312, -1.53125, 0.9658203, -0.4345703, 0.09790039, -1.4853516, 1.8466797, 1.1542969, 1.8984375, 1.1904297, 2.7265625, 2.1875, -0.8959961, 1.4931641, -1.5214844, 1.9121094, -0.71191406, 1.8535156, -0.8803711, 0.88378906, -1.1181641, -0.56933594, 2.2695312, 2.8027344, 0.085632324, 2.7226562, -0.12634277, -1.6699219, 2.0507812, 0.097351074, -2.5078125, -0.14978027, 1.4580078, -1.7324219, 0.31225586, -0.040863037, -3.4414062, 0.028823853, 2.5605469, 0.19042969, 1.0957031, -0.64501953, -2.1777344, 0.2915039, -2.2363281, -0.30541992, -0.054656982, -1.2978516, -0.2524414, -0.32958984, 0.024368286, -0.31323242, 1.8037109, 2.6777344, -2.3632812, -1.8955078, 1.3359375, -1.5263672, 2.3007812, -1.3300781, -1.7519531, -4.140625, -0.30541992, 3.078125, 0.4387207, 1.5205078, -0.08874512, 0.80322266, -1.9951172, -0.55322266, -2.0507812, 2.6347656, -1.4414062, -0.4169922, 1.1621094, -2.8515625, 0.40185547, -1.4667969, 0.3708496, -0.5517578, 2.5957031, 1.4833984, 1.1308594, 0.63427734, -0.7573242, -2.4257812, -6.7304688, -1.0966797, 2.2519531, 0.6352539, -0.019866943, 0.025100708, -1.0224609, 0.546875, 1.2587891, 1.3046875, -1.4462891, 0.71435547, -0.6152344, -1.203125, -2.296875, 0.71728516, -1.5292969, 1.3867188, 0.94921875, 0.5810547, 0.6665039, -3.9628906, -1.4931641, 0.15270996, -1.8662109, 0.45629883, 2.3652344, -0.31469727, -1.1542969, 0.3544922, 0.61279297, -3.8671875, 2.7578125, -1.9707031, -0.49316406, 1.1240234, -0.043914795, 0.7441406, 1.0126953, -0.17199707, 0.5175781, -1.3769531, 1.8466797, -0.49951172, 1.1015625, 0.28833008, 1.1240234, -0.8979492, -0.8144531, -0.028671265, 0.72021484, 1.4716797, 1.4228516, -3.3046875, -0.68408203, -2.2421875, -4.6875, -0.41430664, -0.15710449, 0.5078125, -1.5302734, 1.5517578, 1.9121094, 0.7524414, -0.016708374, -0.08215332, -0.41064453, -2.0078125, 1.1220703, 0.1652832, 3.09375, 2.9101562, -1.7255859, -2.40625, -2.2207031, 1.4228516, 1.9443359, -0.27075195, -0.7651367, -0.92285156, -1.1074219, 0.7597656, 0.35009766, 2.0839844, 2.6367188, -0.87890625, -0.60498047, 0.38598633, 2.0761719, 0.60546875, 2.3261719, 1.3388672, 1.5361328, 0.21862793, 4.2421875, -0.38183594, -2.0078125, 1.7001953, -2.0410156, 2.1757812, 0.20007324, -3.0039062, -0.33789062, -1.0634766, -0.6767578, -1.2080078, -1.8691406, -3.3828125, 2.90625, 1.1015625, -0.53515625, -0.74853516, 3.6601562, 1.0615234, 0.9707031, 1.7705078, 2.1269531, 0.21142578, 1.3662109, -1.0537109, -0.3930664, 0.97509766, -2.5410156, 0.73291016, 2.2011719, -0.52001953, -0.70458984, 3.8925781, 1.0839844, 2.6992188, 0.36816406, 1.6367188, 4.3515625, 1.7265625, 1.5048828, 2.1796875, 1.6669922, 3.1269531, -1.5751953, 0.24926758, 2.0996094, 1.3027344, 0.9506836, -1.2490234, 2.8007812, -0.32641602, -2.0703125, -0.5419922, -0.5654297, 0.40283203, -2.046875, 1.6777344, 2.1992188, 0.40844727, -2.4082031, 0.44140625, -1.4482422, -0.7675781, 0.2331543, 0.28173828, 2.7285156, -0.9477539, 0.3701172, -0.72314453, 0.37548828, 2.375, -3.4941406, -0.18078613, 0.92041016, -2.6445312, 0.30395508, 1.4912109, 0.15734863, 1.3105469, 0.8955078, 1.2167969, 1.4677734, 1.0947266, 2.3632812, -1.1025391, 1.0625, -1.5419922, 4.6132812, -1.5107422, -0.43823242, 1.5537109, -0.16503906, -3.6191406, -3.5019531, 1.875, 1.0664062, 0.6635742, 0.33276367, -3.7128906, 2.6914062, 0.06726074, 1.6611328, -1.9560547, 1.6171875, -1.8076172, -2.1269531, 0.027069092, 1.1396484, -0.20239258, 3.6464844, 0.9472656, -1.421875, 1.3457031, 1.3867188, 0.93310547, 0.14672852, 1.2480469, 1.4628906, 1.78125, -0.00021529198, 2.4335938, 0.9370117, -1.1386719, -1.0957031, 1.5029297, 1.1992188, 0.8330078, -0.08251953, -1.2421875, -0.37451172, -0.93408203, -1.5117188, -0.62353516, -1.6835938, -0.12597656, -0.2614746, -1.1875, -1.3867188, -0.4338379, 0.94873047, 0.61865234, -0.8486328, -0.10394287, 0.2265625, -0.82128906, 1.8642578, 1.3408203, -0.8979492, -0.52978516, -0.4248047, 1.2724609, 0.5727539, -1.3789062, -0.2565918, -0.7993164, -0.18200684, -2.3027344, 0.22521973, 0.5571289, -0.47021484, 0.18603516, 0.75341797, -2.0332031, -0.36499023, 0.70947266, -1.3193359, 1.5927734, 3.09375, -1.9677734, 0.81933594, -1.6894531, -1.4384766, -0.34423828, -1.3994141, -1.3027344, -0.0013990402, 3.59375, 1.6416016, 1.5185547, -0.70214844, -2.7617188, -1.0166016, -0.4104004, 1.9726562, -2.296875, 0.13012695, 0.5942383, 0.5175781, 2.3613281, -0.52734375, -0.31591797, -0.32983398, 0.1706543, -0.5229492, -0.32250977, 1.0439453, 1.4824219, 0.21142578, -0.49682617, 2.4042969, 0.66796875, -0.11151123, 2.0898438, 2.9121094, -0.7709961, -2.3769531, 2.1835938, -1.5068359, 1.6308594, 1.8583984, 1.8330078, 2.2128906, 1.2128906, 0.19836426, -0.87402344, -1.6425781]}, "B07NBM6V8X": {"id": "B07NBM6V8X", "original": "Brand: Best Choice Products\nName: Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown\nDescription: Highlights:
          Elegant Rectangular Design
          Easy to Use
          Handles for Portability
          Includes Matching Side Table/Tank Storage
          Weather-Resistant Pit Cover

          Specifications:
          Overall Dimensions: 48\"(L) x 27.25\"(W) x 13.5\"(H)
          Propane Tank Housing: 15.5\"(L) x 15.5\"(W) x 20.5\"(H)
          Weight: 84 lbs.
          Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
          Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
          BTU: 50,000
          Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
          Assembly required (with instructions)

          Package Includes:
          Fire pit
          Side table
          Glass rocks
          Hose
          Pit cover

          BCP SKU: SKY5229


          Ships and arrives in 2 separate boxes. Delivery times may vary per box.\nFeatures: MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table)\nPERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece\nEASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included)\nHIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting\nTRADITIONAL FIRE PIT TABLE: The fire pit's classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48\"(L) x 27.25\"(W) x 13.5\"(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.\n", "embedding": [-1.1972656, 2.4589844, 0.6196289, -1.8427734, 2.09375, 0.36694336, 1.8427734, -2.7539062, -0.9824219, 1.8095703, 0.14416504, 2.5039062, 0.1105957, -4.9140625, 1.6523438, 0.41235352, -0.6826172, 1.4765625, 2.6523438, -0.24145508, 1.9013672, -0.033843994, 1.5556641, -0.85009766, 1.4628906, -1.0146484, 2.875, -3.6015625, -1.2929688, 1.4433594, 1.6455078, 2.1171875, -0.65625, 1.7988281, -1.8632812, -0.92626953, -0.086242676, 1.6679688, -1.2734375, 1.2714844, -2.6601562, -1.6347656, 4.296875, 2.4882812, -2.3125, 0.35888672, -0.13903809, 0.33740234, -0.57373047, -1.75, -0.025497437, 2.3710938, 0.6777344, 0.03945923, -1.7109375, 1.1337891, -0.08532715, -2.5683594, 0.20227051, 1.5126953, 0.60791016, -0.012794495, -1.3603516, 2.2089844, -1.2128906, 1.8505859, 0.7260742, -0.07763672, 0.22607422, 2.0175781, 1.8417969, -0.26757812, -0.7548828, -0.12261963, 0.37451172, -0.68359375, -3.0527344, 2.59375, 0.8808594, -1.4775391, -0.8989258, 4.2304688, 0.47753906, -0.48999023, -0.031707764, -0.112976074, -3.6386719, -0.008178711, -0.1907959, 1.2402344, 0.07745361, 3.3496094, -3.1542969, -3.7519531, 0.17492676, -1.3076172, 0.58740234, -1.5761719, 0.2565918, 1.4111328, 0.4477539, -0.16845703, -1.1230469, 1.0966797, -2.6308594, -1.7587891, 0.9897461, 0.10040283, -0.23181152, -0.43408203, -2.4414062, 0.7871094, 2.6289062, -0.5966797, 0.60058594, 1.4130859, 0.7871094, 1.0849609, 3.875, 1.9287109, 6.0039062, 1.2392578, 0.20227051, -0.6923828, 0.6855469, 1.7128906, -1.7529297, 2.8261719, 0.44091797, -1.6298828, 0.59765625, -1.7089844, 0.6225586, -0.203125, -1.7587891, -0.92822266, -1.9560547, -0.8276367, -3.7539062, 0.18518066, -2.8457031, 1.9785156, 0.055114746, 1.1875, -3.2441406, 0.58691406, -1.8701172, 2.5722656, -1.0341797, -2.8320312, 1.0244141, -0.5566406, 0.44213867, -0.97265625, 0.8041992, -1.515625, 2.1914062, -2.7285156, 2.0546875, 1.6025391, 1.4853516, -1.8701172, 0.8432617, 1.9882812, 0.35351562, -1.2802734, 1.8710938, 0.8144531, -0.28027344, 1.2685547, 0.8227539, -1.4697266, 0.040405273, 0.3647461, 0.68603516, -0.69677734, 1.4042969, 2.4316406, 2.7949219, -0.31469727, 0.30688477, -0.4140625, 0.7270508, 0.8930664, -0.037353516, -1.8876953, 0.4387207, -2.2851562, 0.70654297, -1.4814453, -0.9301758, 0.29174805, -1.7890625, -1.0927734, 0.5263672, -2.6835938, -2.9472656, -1.71875, 0.75634766, 1.3916016, -1.5126953, 0.27124023, -2.7382812, 0.64208984, -2.5996094, -0.92089844, 0.30419922, 1.2783203, 1.4423828, 1.0302734, 0.44384766, -0.48046875, 0.7866211, 0.8046875, -0.21618652, -2.3457031, 1.8359375, 0.17468262, 1.2431641, 0.9404297, 0.7426758, -0.054504395, 1.3339844, 3.1367188, 1.3408203, 2.2871094, 0.22167969, -0.085754395, -1.0742188, -1.3193359, 1.9863281, 0.16186523, 0.40307617, 2.0605469, -1.5371094, 2.6894531, 0.796875, -1.7392578, 0.6274414, 0.4189453, 0.44018555, -1.6152344, -1.8154297, 0.45483398, -1.3779297, 0.91308594, -1.3544922, 1.4394531, 1.4785156, -0.3334961, -1.8554688, -1.4394531, 0.35302734, -1.0673828, 0.1940918, 0.8222656, -0.8359375, -0.6303711, -0.1496582, -2.2441406, 0.41381836, 1.1289062, -0.9033203, -0.30004883, -0.29833984, -1.7910156, 1.5214844, 0.0018863678, -3.8828125, -0.56689453, -1.3916016, 0.2849121, 2.1347656, -0.5102539, -0.54003906, -1.0283203, -2.5742188, 1.9550781, -0.44189453, 2.96875, 0.38012695, -0.92285156, 1.4501953, -1.1826172, 0.51953125, 0.24645996, 1.3525391, 0.59472656, 0.5996094, 0.8876953, 5.5273438, -0.91748047, -1.6757812, 2.1660156, 0.22998047, 0.28515625, 0.4555664, -0.68408203, 1.7412109, 0.24694824, 1.3935547, 0.45117188, 0.9765625, 1.2207031, -2.0664062, 1.3632812, -0.103881836, -2.2207031, 0.85546875, 0.32641602, -0.22290039, -1.4199219, -1.1181641, 0.71875, -2.4589844, -1.3583984, 2.671875, -3.5371094, 1.4570312, 0.65283203, 0.087402344, 0.5800781, -2.3046875, -3.3378906, -0.22277832, 1.296875, -0.7446289, 0.5058594, -0.625, -1.8935547, -0.024536133, -1.8730469, 1.8232422, -2.2441406, -1.2246094, -1.5048828, -1.0869141, -0.5546875, -1.2568359, -1.0537109, -0.31103516, -0.06939697, -2.3378906, 1.1103516, -1.2460938, -1.1767578, 0.76464844, 2.5800781, -2.2636719, 0.6123047, 1.1923828, 2.7480469, -1.2529297, -4.1210938, -0.53466797, 1.3056641, 0.68310547, 0.7480469, -0.38598633, 0.022064209, -1.5800781, 2.8652344, 1.0166016, -1.8476562, 0.4794922, -0.7290039, -0.6113281, -4.296875, 1.3115234, -0.8754883, -0.5678711, -0.14282227, 0.46679688, -1.8144531, -1.1591797, 1.3974609, -2.5664062, 5.671875, 1.6113281, 2.4824219, -0.4831543, -0.2644043, 0.22607422, -1.0683594, -3.1640625, -0.43041992, -0.68603516, -1.921875, -0.71972656, -2.8046875, 0.74609375, -1.9355469, -0.40942383, -0.28564453, 0.80322266, -0.29516602, -0.081970215, -1.3789062, 0.45532227, -1.96875, 1.8574219, 0.08441162, -0.87402344, -2.3984375, -0.5859375, -1.0107422, -0.5649414, 0.53271484, 2.8339844, -0.7739258, 0.5229492, 2.4609375, -1.2294922, 0.7807617, 0.57910156, -3.3867188, 0.68896484, 3.6445312, 0.35009766, 0.6035156, -2.4921875, -1.2363281, -0.609375, 0.7163086, 3.1855469, 1.2373047, 0.32788086, -0.49487305, 0.734375, 0.5830078, -0.8388672, 0.1751709, 0.27685547, 0.02468872, 3.1542969, -3.5527344, 0.48364258, 1.2783203, 3.9570312, -3.0546875, -1.3447266, 1.0878906, -0.028213501, 0.6142578, 0.09197998, -0.3701172, 0.4934082, -0.34594727, 0.37475586, -0.14099121, 1.9599609, -0.16247559, 0.47583008, 0.7402344, 1.0195312, 1.1767578, 1.0976562, 2.0371094, 0.28881836, 1.5048828, 1.2587891, -3.3945312, 0.13085938, 0.24914551, -1.0869141, -0.045196533, 0.94873047, -1.6640625, -0.11517334, -0.7084961, -0.98779297, 0.32617188, -1.8515625, -0.27978516, 2.2402344, 0.43945312, -0.4970703, -0.3383789, -0.47338867, -0.8935547, -1.8017578, 1.5039062, 0.49243164, 0.05633545, 0.3696289, -2.4375, -0.65185547, -0.5366211, 3.1445312, -1.8486328, -2.6972656, -0.93359375, 3.4257812, -0.97558594, -2.0214844, 0.18469238, -1.5537109, -1.4003906, 5.0390625, 0.9897461, -2.1640625, -1.0126953, -1.9277344, 1.9541016, 2.6464844, 0.1105957, 0.113708496, -0.46362305, 0.734375, -1.0683594, 0.7758789, -0.43432617, 0.77734375, -2.7070312, 1.1367188, -2.0175781, 0.30981445, 2.7050781, -2.6132812, -0.32104492, 2.296875, -0.1607666, 2.5097656, -0.48461914, 3.0253906, 0.13464355, -0.2902832, 3.1328125, -1.2246094, 0.11468506, -1.2128906, -5.1601562, -0.23388672, 0.31762695, -0.63671875, 2.9316406, 0.097229004, -1.0058594, 0.60058594, -1.1484375, -4.7265625, -1.0605469, -2.2792969, -1.2158203, -4.25, -1.8330078, -0.5595703, 1.0410156, -0.63916016, -1.5878906, 0.74072266, 1.6503906, -0.021408081, 1.0185547, -0.98828125, 2.5390625, -2.0683594, -0.8178711, -0.33569336, 0.9135742, -0.44726562, -1.6640625, 0.6738281, -1.3876953, 2.6269531, -0.105041504, -1.1152344, 2.21875, 1.5498047, -1.2109375, -0.7451172, 0.39672852, -0.4987793, 3.3652344, -0.5366211, -2.1171875, -0.57177734, -0.80908203, 1.1308594, -0.46801758, -1.2685547, 1.6962891, -1.7529297, 0.060333252, 0.79052734, 1.9667969, 1.2724609, -0.6274414, -3.1992188, 0.2541504, -0.6074219, -0.6723633, -1.4091797, -1.8955078, 1.2451172, -0.6455078, 0.3935547, -1.8828125, -1.1298828, -0.44580078, -0.41455078, 0.5517578, 2.9589844, 1.7431641, 3.0976562, 3.9941406, -1.4208984, -0.61376953, 2.1953125, -0.42773438, 0.3388672, 2.2929688, 1.8125, -0.042633057, 2.3769531, -0.90722656, -1.3876953, -2.1308594, 1.6855469, -2.2734375, -1.1132812, -0.40844727, -0.69140625, 0.48535156, -0.8676758, -1.3740234, -1.6972656, 2.2050781, -0.6196289, 0.23254395, -0.58691406, 1.2685547, -2.1113281, 1.609375, -0.09069824, 0.7519531, 1.4355469, 1.6611328, 0.8964844, 0.1932373, 3.2675781, 1.2412109, 1.7265625, -0.9003906, -0.07824707, -0.61816406, -0.6044922, -0.6948242, -1.4404297, 2.2246094, 3.4550781, -1.5732422, 1.4931641, 1.3310547, -1.4492188, 3.296875, 1.1552734, -1.1103516, -0.1932373, 0.9326172, -0.22106934, 0.8154297, -0.12097168, -4.4765625, -0.92089844, 1.2001953, -1.0791016, 1.6220703, -0.43554688, -1.5869141, 0.98535156, -3.1699219, -0.08294678, -0.018737793, -0.59375, -0.5625, -0.4440918, -0.59228516, -0.33032227, 0.16430664, 2.6445312, -2.1835938, -0.46655273, 1.296875, 1.3759766, -1.0576172, -1.6484375, -0.14147949, -1.3652344, 0.27270508, 0.11303711, 0.1083374, 2.7109375, -1.8037109, 2.5136719, -1.640625, -0.9638672, -2.4257812, 3.7109375, -2.0820312, -0.26879883, 2.2207031, 1.2080078, 1.1464844, -1.4179688, -0.20031738, -0.44213867, 1.7529297, -1.0371094, 0.64990234, -0.29711914, -1.2871094, -2.3789062, -3.9160156, -0.15710449, -0.50683594, -2.1054688, -0.84765625, -1.1806641, -0.55566406, 0.117004395, -0.07788086, 0.4013672, -0.75341797, -1.1503906, -1.1445312, -2.0332031, -1.1953125, 0.91259766, 0.8769531, 0.12585449, -0.08929443, -1.3916016, -2.1699219, -4.0234375, 0.08734131, 0.7548828, -1.3125, 1.84375, 0.092285156, -0.98876953, 1.4462891, 2.421875, 0.19580078, -0.5488281, 2.265625, -1.1162109, 0.87402344, 2.3261719, -1.9072266, 1.1962891, 0.052978516, -0.74658203, 0.95410156, -2.1992188, 0.6557617, -1.8212891, 1.296875, 0.3479004, 0.4489746, -0.37109375, -0.49829102, 1.0927734, -0.34155273, 3.5683594, 3.421875, -2.2324219, -0.84472656, -2.0351562, -0.79052734, -1.2636719, -2.5507812, -2.0058594, -2.1855469, -0.5751953, 1.2236328, -0.22033691, 1.546875, 1.3476562, 0.37475586, -1.7138672, 0.9951172, -1.7080078, 1.6572266, 1.1152344, -1.0888672, -3.8691406, -2.3398438, 0.9423828, 0.63720703, 0.5107422, -0.056732178, -1.0849609, -2.5878906, 1.0058594, 0.30810547, 1.2128906, 2.2539062, 2.2285156, -0.7529297, 0.7011719, 0.080566406, 1.3427734, 0.98779297, -0.7651367, 1.0527344, 0.19470215, 1.6572266, 2.5234375, -2.1914062, 1.4443359, -0.17468262, 0.74560547, -0.63427734, -0.27514648, 0.15966797, -0.95410156, -0.19702148, -3.0253906, -0.8989258, -2.4414062, 3.2070312, 1.5830078, 1.0175781, 0.31274414, 0.2010498, -1.15625, 1.3417969, 2.0234375, -0.43603516, -0.5209961, -0.8828125, -0.60839844, 0.73876953, 1.6660156, -0.24829102, 0.0713501, 1.3613281, -0.33251953, -2.21875, 0.8803711, -0.11090088, 0.56933594, 1.9541016, 2.4023438, 3.5292969, 2.3144531, 3.1640625, -0.81591797, 2.3046875, 2.2460938, -0.46826172, -1.9482422, 2.1328125, 2.9257812, -0.20141602, 0.08984375, 0.63378906, 1.65625, -0.35913086, -0.40722656, -0.796875, 0.08190918, -3.5742188, 3.2675781, -1.8359375, 2.3769531, -1.9355469, 0.7871094, -0.5859375, -1.0839844, -1.0205078, -1.0605469, 1.0449219, 0.4116211, 0.19665527, 0.117126465, 1.7089844, -0.1640625, -3.0019531, 1.5429688, -1.0253906, -3.0683594, -0.6508789, 3.5839844, 1.703125, 2.2050781, 0.38842773, 2.0234375, -0.3930664, 1.4443359, 0.46240234, 0.7944336, -0.9785156, 0.6044922, 1.4775391, 2.0078125, -1.8955078, -2.1054688, 0.61865234, -1.6044922, -2.8769531, 0.5239258, 0.37719727, 2.5800781, 0.9746094, -2.9804688, -0.8569336, 0.6333008, -0.09075928, -2.71875, -0.87158203, 0.5439453, -2.2929688, -0.79296875, 0.6538086, 0.19238281, 4.0742188, 2.2265625, -0.82128906, 3.0625, 2.015625, 1.1757812, 1.3964844, 0.8964844, -1.7167969, 1.4521484, -0.55078125, 2.1015625, 1.0771484, -0.81884766, 1.8554688, 0.93115234, 0.8334961, -0.67822266, 0.16101074, -3.4316406, -0.82714844, 0.043395996, -3.7128906, -0.16625977, -0.8129883, -1.6601562, 0.73583984, 0.3256836, 0.18688965, -2.9296875, -0.25610352, 0.8574219, -1.71875, -0.46899414, 0.6772461, -1.3681641, 0.92626953, 0.5029297, 0.014533997, 0.56152344, -0.05041504, 2.4628906, -2.0722656, -0.41674805, -0.9291992, 1.9257812, -0.8022461, -0.46557617, -0.05947876, -0.1694336, -0.57373047, 1.1552734, 2.46875, -1.1445312, 0.28222656, -0.003276825, 0.17871094, 1.5429688, 3.3183594, -0.6821289, -0.78271484, -0.50390625, -4.0390625, 0.028427124, 0.6645508, -1.3613281, 0.3684082, 5.9492188, 0.90283203, 0.27514648, -0.42358398, -3.8867188, -0.4736328, -0.56103516, 3.2617188, 0.93066406, -0.27563477, -0.5917969, 0.5366211, 3.2578125, 1.4541016, -2.2773438, -0.30419922, -0.13781738, 1.2597656, -0.97998047, 1.1259766, 0.7260742, 0.5102539, 0.35473633, 2.5820312, 3.8496094, 0.10437012, 0.90185547, 2.5585938, -0.47094727, -2.2988281, 1.2841797, -0.28027344, -0.024398804, 0.8276367, -0.07116699, 1.6787109, -0.020431519, -0.9863281, -5.109375, -1.0527344]}, "B078FBVGX6": {"id": "B078FBVGX6", "original": "Brand: Broil King\nName: Broil King 814154 Gem 320 Liquid Propane Grill\nDescription: \nFeatures: 24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners\nStainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer\nTherma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert\nLarge 7\"/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish\n", "embedding": [-2.109375, -0.6875, 1.890625, 0.49267578, -0.9638672, 0.6503906, 0.29125977, -0.47387695, 0.32495117, 0.58447266, 1.7294922, -1.3154297, 0.17663574, -1.4541016, 0.9448242, -0.117492676, 0.7919922, 1.7822266, 1.8671875, -0.9819336, -0.014427185, 1.3984375, 0.23754883, -1.0332031, -0.66259766, -0.36279297, 4.7304688, -2.7753906, -0.8261719, -0.76123047, 2.5996094, 0.22753906, 0.37182617, 0.9399414, -2.5332031, -2.3554688, -1.8056641, 1.0888672, -4.1132812, 1.8466797, -0.48242188, -2.0996094, 0.7001953, 1.7021484, -1.3027344, 0.6459961, 1.3203125, -0.38500977, -1.9794922, 0.31079102, 1.3369141, 1.5771484, -1.3876953, 1.6210938, 0.5595703, 1.5458984, -0.17932129, -1.1123047, 1.8994141, -0.71777344, 1.4267578, -1.3505859, -2.6445312, 1.3183594, -1.4619141, 1.4267578, 0.95166016, -1.6308594, 0.7910156, 0.004962921, 2.4394531, -0.8154297, -1.2148438, -0.9296875, 0.002538681, -1.5205078, -2.4296875, 0.36010742, 1.3466797, -0.5546875, -1.7363281, 2.4179688, 0.22692871, -2.8886719, -0.7270508, 0.16223145, -0.08416748, -2.0195312, 1.3349609, 1.3232422, 0.7451172, 1.2363281, -1.0029297, -4.1914062, 3.34375, -1.1162109, 1.9570312, 0.2524414, 1.6552734, 1.9023438, -0.7949219, -1.3398438, -2.2226562, -1.7207031, -2.7226562, -1.9814453, 1.6201172, -0.030578613, -3.4863281, -0.023086548, -1.3076172, -0.20019531, 2.1914062, 1.5625, -0.5214844, 0.5883789, -0.4230957, 4.1601562, 0.27075195, 1.0888672, 2.6542969, -1.1542969, 1.9091797, -0.10797119, 0.26757812, 0.86572266, -1.1044922, 1.4414062, 5.6289062, -0.31054688, -0.31201172, -2.1640625, 3.921875, -0.27734375, -1.359375, -2.1230469, -0.99365234, -0.18139648, -3.9667969, -0.2980957, -1.4345703, 1.5097656, -0.22314453, -0.09313965, -3.2285156, -1.4677734, -0.043914795, 0.59228516, -1.1191406, -2.3378906, 0.57421875, -0.93652344, 0.6801758, -1.5849609, 0.18981934, 0.31835938, -2.3144531, -1.8662109, 2.1757812, 1.0244141, 0.60498047, -1.3681641, -0.91552734, 1.0400391, -1.8242188, 0.08441162, 0.26513672, 1.5966797, 0.079956055, 0.7211914, 0.8129883, -0.55078125, -1.3886719, 0.38256836, 0.80322266, -0.70410156, -0.79003906, 0.84228516, 0.56689453, 0.35253906, -0.4194336, -2.4570312, -0.9770508, 0.80371094, 1.2148438, -0.12194824, -0.03778076, -0.14501953, 2.9355469, 0.5449219, 0.04107666, 1.4472656, 0.27563477, 0.9248047, -1.1728516, 0.39208984, -1.4208984, -1.9648438, 3.0566406, -0.0014276505, 0.39111328, -0.21887207, -0.33740234, -1.3076172, -1.2900391, -3.2929688, -0.14746094, -2.3867188, 2.2089844, 1.4638672, 0.67089844, -1.5996094, 0.7709961, -2.1796875, -0.14880371, -2.7617188, 1.0332031, 1.7470703, 1.5810547, 2.9414062, -0.6904297, -0.18908691, 0.30981445, 0.8022461, -0.33374023, 0.40405273, 0.98535156, 2.328125, -4.0429688, -0.64697266, 1.7294922, 0.22497559, 0.10241699, 0.9272461, -1.0888672, -0.1751709, -0.69189453, -0.54003906, 0.29003906, -0.41381836, -0.8769531, -0.5678711, -0.23937988, -3.3398438, 0.7080078, 0.5629883, -1.5068359, 2.2421875, -0.52978516, 0.4567871, -0.7026367, 1.1757812, 0.46044922, 0.82421875, -0.07006836, 0.5649414, -0.76904297, 0.23864746, -0.796875, -3.5605469, 2.1699219, -0.5102539, -1.0722656, -0.15795898, -0.025817871, -2.1328125, 3.2910156, 2.234375, -2.5195312, -1.3291016, -0.3605957, 0.21057129, 0.64501953, -2.2089844, 1.2099609, 1.7021484, -0.65234375, 5.4140625, -0.38745117, 0.7211914, 0.2783203, -0.28320312, -0.09375, -1.0908203, 0.8779297, 0.89453125, 1.2216797, -1.2236328, -0.9448242, 0.7114258, 4.96875, 0.39916992, -2.6328125, 3.0371094, -0.8623047, -0.3310547, 3.125, 0.69189453, -0.47998047, -1.0253906, 2.9355469, 0.9399414, 2.3554688, 0.19494629, -1.8613281, -1.5947266, 2.453125, 1.6298828, -0.16052246, 0.62939453, -0.69677734, -0.103881836, -4.40625, 0.7285156, -0.9609375, -1.6464844, 2.5351562, -3.1542969, 1.7626953, -0.47338867, 1.1542969, 1.5390625, 0.09051514, -2.4453125, 0.8696289, 2.3359375, -0.88964844, 1.2949219, -0.7758789, -1.1210938, -1.6386719, -0.43115234, -0.9008789, 0.328125, -2.9667969, -0.53125, -1.7988281, -4.1796875, 1.1689453, -1.65625, -0.6508789, 2.0332031, -1.3027344, 0.6645508, -1.0146484, -4.1171875, -1.6494141, -0.8144531, 0.34643555, -1.6357422, 1.7929688, 0.67089844, -0.24633789, -3.6191406, 0.15100098, -0.8876953, -0.011016846, 0.37670898, -0.6928711, -1.2929688, 2.0292969, -1.6533203, -1.4326172, -0.40039062, 0.49365234, -2.6132812, 1.5576172, -0.72021484, 1.8144531, -2.3886719, -0.19555664, -1.8203125, -0.35546875, -2.4433594, -2.4472656, -0.9477539, -0.33374023, 3.3046875, -0.4506836, 1.3222656, 0.21069336, 0.5288086, 1.8271484, 0.54589844, -2.1308594, 0.67529297, 0.60009766, -1.9423828, -1.2978516, -2.84375, 1.3828125, 0.025177002, -1.2158203, -1.2392578, 0.5058594, -1.2529297, 2.140625, -1.7216797, -0.059661865, -2.0683594, 1.3251953, -1.2509766, -1.4150391, -1.4619141, -1.484375, -2.6816406, -1.6269531, -0.13757324, 1.4140625, -1.3662109, 1.4404297, 0.6513672, -0.7788086, 2.7324219, -1.1152344, -3.3710938, 4.515625, -0.35253906, -1.7294922, 2.4335938, -0.5996094, -2.125, -1.8828125, -0.5473633, 3.7734375, 1.578125, 3.5253906, -0.38623047, 0.12695312, 1.5097656, -0.08660889, -0.1328125, -0.84521484, 0.20861816, 3.0253906, -0.25463867, -2.7714844, 0.8798828, 2.4980469, -3.1933594, -1.2998047, 2.9785156, 1.9599609, 2.5195312, 2.9824219, 0.95166016, -0.16674805, -0.23339844, 2.0605469, 2.4472656, 0.22973633, 0.96484375, 0.27978516, 0.40478516, 0.6147461, 1.3632812, 2.9296875, 0.30786133, 1.3095703, 1.4111328, -0.20874023, -1.2763672, -0.33544922, -0.66259766, 0.5004883, -0.08343506, 0.5004883, -1.7490234, 0.8178711, -1, -1.0039062, 0.69628906, -1.4541016, 0.10534668, 3.1054688, 0.43530273, -0.79248047, 0.45776367, 0.36621094, -0.46191406, -1.0117188, 1.1689453, -1.6162109, 0.7861328, 0.6245117, 0.09680176, 1.5185547, -2.1171875, 1.7783203, -1.0498047, -0.37182617, 1.0146484, 3.1601562, 0.7109375, -1.4355469, 2.3261719, 0.33764648, -1.3789062, 0.15795898, 0.8598633, -2.2011719, 2.6191406, -0.86816406, 0.7270508, -0.34277344, -2.7382812, 1.0556641, 0.6044922, 1.6289062, 0.19482422, 1.0429688, 1.1201172, -0.56591797, -1.0947266, -0.0059394836, -4.4492188, -0.26904297, -0.25170898, -0.54003906, -2.4785156, 2.8945312, 0.07745361, 2.4765625, 0.06976318, 2.1132812, -0.27172852, 1.1845703, 1.7021484, -2.2421875, 0.30981445, -3.2148438, -3.1171875, 0.64746094, -0.85595703, -1.4970703, 0.44458008, -0.9609375, -0.65722656, 2.3730469, 0.49682617, -1.4707031, 0.0368042, -0.15551758, -0.38745117, -0.17810059, 0.37573242, -0.3605957, 0.609375, -1.8183594, -1.5429688, -0.09680176, -1.2382812, 2.4589844, 2.5273438, -2.5703125, 0.8203125, -0.07550049, -0.10736084, -0.38964844, -0.3359375, 2.8398438, -0.017822266, 0.65234375, -1.9150391, 1.7587891, 1.0556641, -0.56933594, 2.2695312, 1.2958984, -0.2705078, -1.2109375, -1.8730469, 0.63623047, 1.7460938, -0.11218262, -3.5390625, -2.3984375, 0.61083984, -0.52001953, -1.2470703, 1.6357422, -2.6152344, -0.86328125, 2.3886719, 1.6386719, 0.98339844, 0.8569336, 0.41967773, -2.0566406, -0.055267334, -0.47265625, -1.2929688, 0.64990234, 0.7348633, 0.45922852, -2.1445312, 0.85058594, -1.8828125, -0.5151367, -1.671875, 0.12310791, -4.1601562, 2.5136719, 3.9160156, 2.3457031, 2.3066406, -1.4912109, -0.9394531, -1.7099609, -0.83740234, -1.0380859, 0.9790039, 0.0027694702, 1.5253906, 0.6948242, -0.12072754, -2.109375, -0.41625977, 2.2597656, -1.7275391, -0.6196289, -2.234375, 1.9082031, -0.7285156, -0.6748047, 1.390625, -0.73535156, 4.0039062, -1.7011719, -0.5151367, -0.14624023, 2.4589844, -0.18884277, -0.0024719238, -0.9736328, -0.4494629, 1.4863281, 1.2148438, 1.5449219, -1.578125, 2.3652344, -0.6269531, 1.765625, -1.0634766, 0.24645996, -0.22558594, 1.4960938, -2.1308594, -1.1445312, 0.3486328, 1.0849609, 0.23022461, 3.1289062, 2.1992188, -1.4404297, 2.1445312, 0.31713867, -2.8886719, -0.36865234, -0.47558594, -2.0488281, 2.7480469, 0.5864258, -4.5664062, 0.09008789, 1.84375, 1.2177734, 0.8745117, -0.60009766, -0.6796875, 0.09094238, -1.8613281, 0.15515137, -0.15454102, 0.87353516, 0.23413086, 0.9511719, 1.0410156, -0.70214844, -0.60009766, 0.34301758, 0.17749023, -1.5195312, 1.3671875, -0.5888672, -0.14038086, -0.5834961, 0.06100464, -2.2304688, -1.1767578, 3.2207031, -1.25, 0.7446289, 1.2148438, 1.0419922, -3.359375, 1.9931641, -2.25, 1.7509766, -1.484375, -1.5996094, 1.0039062, -3.6035156, 1.1171875, -2.8457031, 0.8618164, -1.7998047, 1.6357422, 1.6464844, -0.47729492, -0.22375488, 1.5625, -2.4785156, -4.3007812, -3.4609375, 0.17907715, 0.64160156, 0.47827148, 1.0917969, -2.5234375, 0.9394531, -0.8100586, -1.6269531, -1.7070312, 0.7402344, -1.3476562, -1.4033203, -0.86035156, 0.47973633, -0.46606445, 0.87646484, 1.3691406, -1.0302734, 1.0966797, -1.9912109, -1.4130859, 1.5058594, -2.0605469, 1.1005859, 1.8955078, 0.013771057, -0.27246094, 1.1875, 0.43847656, -2.6054688, 3.3398438, -0.031036377, -0.5214844, 0.9970703, -0.6015625, -1.5996094, 0.8388672, -3.5, 0.6875, 0.37329102, 0.63427734, 0.7006836, -2.0019531, -0.66845703, 0.79589844, -2.5917969, 0.453125, 1.3056641, 1.7949219, 0.6586914, 2.2460938, -2.2226562, 1.1923828, -1.8085938, -2.0136719, 1.3798828, -3.4433594, 0.10290527, -0.5732422, 0.5488281, 2.2128906, -0.10668945, 1.0322266, 0.9868164, -1.0361328, -0.3083496, 0.48779297, -1.1572266, 3.7265625, 3.3203125, -1.3847656, -2, 0.5029297, 0.13952637, 3.1308594, -0.66015625, -2.2890625, -0.7548828, -0.14245605, 0.46362305, 0.6245117, 1.4238281, 2.5097656, 0.29345703, 0.22937012, 2.6484375, 4.1914062, 0.2932129, 1.9873047, -0.35083008, 0.15905762, -0.028274536, 5.015625, 1.3339844, -1.9716797, 0.9760742, -0.94628906, 0.26953125, -0.26049805, -0.9482422, -1.2773438, -2.578125, -1.765625, 0.4326172, -0.7480469, -5.3945312, -0.39501953, 1.0664062, -1.6621094, 0.9013672, 0.93652344, 0.51660156, 1.7802734, 2.4414062, 1.8212891, -1.1953125, 0.9350586, 0.50390625, -0.8925781, 1.0253906, -3.5917969, 2.8769531, -0.40771484, -0.89990234, -1.8466797, 3.1816406, -0.9970703, 2.0371094, 1.8476562, 1.3564453, 2.3789062, 0.03189087, 1.6259766, -0.20825195, 2.6835938, 1.8730469, -0.64746094, -0.012130737, 1.3330078, 2.3183594, 0.6352539, -0.9916992, 3.0195312, -1.2929688, -1.8994141, 0.73583984, 0.2944336, -0.6425781, -1.6875, 2.0410156, -0.6201172, -1.1650391, -1.8046875, 0.19934082, 0.90478516, -0.4165039, -0.21105957, -0.4243164, 2.75, -0.17102051, 2.890625, 0.19763184, 0.05709839, 2.4394531, -1.9892578, -0.75927734, 1.0087891, -1.4042969, -0.47143555, -1.2431641, 0.40112305, 0.060760498, 0.35229492, 0.953125, 0.9428711, 0.54003906, -0.46728516, -1.1064453, 0.24951172, 0.86035156, 1.8808594, -0.21032715, -1.4101562, 3.7597656, -1.0380859, -2.8945312, -4.71875, 2.1992188, 1.3710938, 0.26049805, 1.3378906, 0.2680664, 3.2597656, -0.16809082, 1.6005859, -2.0605469, 0.88916016, -0.97558594, -1.9316406, -0.5053711, 2.5605469, 0.18249512, 2.8710938, 0.7675781, -0.64208984, 1.6953125, -0.63183594, 1.8798828, 1.4931641, 1.4179688, 0.9091797, 0.9433594, -0.1854248, 2.3808594, -0.9868164, -0.32861328, -3.5527344, 2.734375, 1.2587891, 1.1308594, 1.1972656, -2.3789062, 0.9057617, -0.3330078, 0.37109375, 0.19116211, -3.0019531, -1.2646484, -0.09429932, 0.6586914, 0.12335205, -2.3945312, 2.859375, 1.7460938, -0.07092285, -1.0214844, 3.9726562, 0.4794922, 0.4025879, 0.35668945, -0.9091797, -1.1630859, 0.20690918, 0.53515625, 1.4414062, -1.9160156, -0.5102539, 1.1396484, 0.44750977, -0.7680664, -1.2949219, -0.25439453, -0.10003662, -0.5732422, 0.89941406, -1.2607422, -1.1210938, 2.4863281, 0.51708984, -1.1972656, 1.4052734, 1.1171875, 1.9033203, -3.2089844, -0.26391602, -1.0029297, -0.095825195, -1.1191406, 0.8203125, 1.6982422, 1.5947266, -0.3540039, -0.12322998, -3.4472656, -1.6757812, -1.5820312, 2.2578125, -1.2607422, -0.74365234, -0.0065307617, -1.5009766, 1.3417969, 0.0463562, -2.2128906, 1.4257812, -1.5068359, 1.3261719, 1.7529297, 1.1679688, -1.1328125, 0.42211914, -0.2619629, 1.1289062, 1.6757812, -0.18273926, 0.50878906, 0.4560547, 1.3017578, 0.43725586, 1.0800781, 1.1845703, -1.3105469, -0.44799805, 2.359375, 1.0664062, 0.23388672, 0.31103516, -1.5703125, -2.859375]}, "B07W4JX6QS": {"id": "B07W4JX6QS", "original": "Brand: Kohree\nName: Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper\nDescription: Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
          This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
          PREMIUM
          Made of 100% high quality brass, it is extra durable and strong for long-term usage.
          Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
          CONVENIENT
          The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
          Tips:
          1. The indicator could not show the exact content of the tank but give an approximate value.
          2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
          Safe Protection
          Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
          Easy Installation
          With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
          Wide Application
          Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
          \nFeatures: \u30102 Way Propane Hose Splitter\u3011: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage.\n\u3010Clear Gauge Level Indicator\u3011 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank.\n\u3010Premium Quality\u3011: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using.\n\u3010Easy Installtion\u3011: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier.\n\u3010Wide Application\u3011: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.\n", "embedding": [-1.6259766, 1.296875, 1.3037109, 0.19799805, -1.7158203, 1.1064453, 1.25, -0.7680664, 0.43359375, 1.5712891, 1.6533203, 0.88720703, 2.3339844, -4.0195312, 1.1337891, 3.2578125, -0.056365967, -0.3269043, 3.0234375, 0.6401367, 4.7851562, 1.1337891, 1.5859375, 0.1730957, 2.7441406, -0.5395508, 2.5292969, -2.4316406, -0.7192383, 0.07147217, 0.74121094, -0.8964844, -1.7753906, -0.97265625, -2.9492188, 0.15307617, -0.74316406, 0.48754883, -1.8183594, -1.2685547, -1.640625, 0.4477539, 1.7041016, 1.5527344, -1.8222656, -1.8955078, 1.5556641, -1.0205078, 0.03086853, -1.1513672, -0.6723633, 1.9384766, -0.51171875, 1.1279297, -2.2578125, 1.1865234, -0.4116211, -3.5546875, 2.1386719, 1.6445312, 0.21557617, 1.8642578, -3.3125, 2.2363281, 0.91064453, -0.11218262, 0.2479248, -0.078186035, -1.3652344, 1.0146484, -0.21850586, 0.18225098, 0.43359375, -1.0205078, -2.8710938, -0.118774414, -2.4492188, -0.28759766, 2.3964844, -0.4868164, -3.0117188, 1.0527344, 1.4873047, 0.38989258, -1.0439453, -0.46069336, -0.9995117, 1.4521484, 0.90478516, 0.8256836, -1.5449219, 0.8071289, -3.4414062, -4.2851562, -0.38720703, -0.04876709, 1.5908203, 2.1035156, 4.8359375, 0.42944336, -1.2978516, 0.7373047, 0.030807495, 0.7832031, -2.3652344, -0.45141602, -0.11138916, 2.1601562, -3.0703125, -0.5722656, 0.13391113, 1.4296875, 2.2226562, -1.0400391, -0.34375, 0.22741699, -0.77441406, -0.7104492, 0.69433594, 1.1835938, 3.0214844, -0.55371094, 0.6635742, -1.0996094, 2.4121094, 1.2724609, -0.34545898, 1.7246094, 1.8251953, 0.3918457, 1.2587891, 0.67626953, 1.8330078, -0.9321289, 1.1484375, -2.3378906, -2.3671875, -2.5039062, -1.1855469, 0.047668457, -3.5859375, -0.2211914, 1.8554688, -1.3681641, -3.7773438, -0.7963867, -4.2304688, 0.24389648, 0.85009766, -0.5878906, -0.89208984, -1.4541016, 0.98583984, -0.5083008, 3.0898438, 2.0195312, 0.03378296, -0.89941406, 0.6376953, 0.4855957, 0.65185547, -0.3828125, -2.3730469, 3.0683594, -0.8125, -4.1992188, -0.4189453, 1.0546875, -1.640625, 1.2929688, 0.38745117, -1.84375, 2.4199219, -0.7270508, 0.55322266, -1.4404297, 0.7363281, 2.03125, 1.6123047, 0.77685547, -4.0546875, -2.7539062, 0.5126953, 0.921875, 1.6123047, 2.1132812, -1.3037109, 0.4885254, 0.9892578, -0.4074707, -1.484375, 1.5878906, -0.40307617, 1.15625, 0.46069336, -0.59814453, -5.3125, -0.42578125, -0.15014648, 1.1767578, -2.5429688, -1.5048828, 0.074523926, 0.60009766, -2.0351562, 1.0839844, -0.30151367, -1.734375, 0.027572632, 1.2910156, -0.40820312, -0.6904297, 2.8730469, -1.6289062, -0.35009766, -1.4160156, 0.5654297, 3.0253906, 1.5068359, 1.1455078, -1.9365234, 0.24658203, 2.7460938, 2.8339844, 2.4042969, -0.32299805, -0.2932129, 2.25, -1.3017578, -1.1601562, 2.5742188, 0.8574219, 0.06518555, 0.96728516, -1.6025391, 3.2128906, 1.0126953, -2.4023438, -0.032043457, 2.4003906, 2.828125, -0.86279297, -0.31640625, -2.4609375, -1.6328125, -0.03491211, 0.7241211, 0.6635742, 0.36865234, -1.3183594, 0.1385498, 0.0052871704, -0.4321289, -1.5097656, -2.5332031, 0.08215332, 1.2958984, 0.6347656, 1.4453125, -0.8774414, 2.5351562, 0.11505127, 0.060424805, 0.025314331, -0.2607422, 1.09375, 0.07397461, -2.3632812, -2.1210938, 0.07647705, -0.29077148, 1.5048828, 1.6582031, -0.82421875, 0.75097656, 0.26416016, -1.2041016, 2.296875, -0.05886841, 1.9287109, 2.3066406, -1.0107422, 1.6425781, -2.1875, 0.6845703, 2.2382812, 3.3457031, -1.0488281, 0.19592285, 0.54345703, 4.3007812, -0.10675049, -1.8007812, 3.0117188, 3.4238281, 0.77001953, 0.59814453, 1.3193359, -0.6767578, 0.42089844, -1.0722656, 0.5991211, -2.0527344, 1.2978516, 2.3730469, 0.56347656, -0.34399414, -1.0810547, 2.0292969, 1.4677734, -0.09539795, 0.7988281, -0.7753906, -0.4284668, -0.55078125, -2.453125, 2.1269531, -0.25976562, -1.1220703, 1.5390625, -2.0996094, 0.10644531, 0.57177734, -1.0175781, -0.3095703, 0.36328125, -1.3085938, 1.6191406, -0.46020508, 2.4433594, 1.4511719, -2.3710938, -0.117004395, -0.02709961, -2.1210938, 1.8642578, -0.95214844, -2.0898438, -0.032196045, -1.0117188, -1.1503906, -3.484375, -1.9228516, 2.1015625, 0.26220703, -1.0947266, 1.4521484, 2.1464844, 1.2851562, -0.0063667297, -0.22753906, 2.0175781, -1.5400391, -3.3632812, -0.20422363, -0.9741211, 0.45654297, 1.6162109, 0.4230957, -1.0664062, 0.4128418, 2.0585938, -0.80615234, -0.8310547, -1.8515625, -1.1103516, 0.88378906, -2.0703125, -1.2373047, -0.57128906, 1.5048828, -0.29614258, 0.5917969, -2.0585938, -0.92089844, 0.57666016, 0.265625, 1.3144531, -0.18896484, 0.20947266, -1.4287109, -0.54589844, -0.65966797, -2.2832031, -2.8515625, -2.3027344, 1.6357422, 0.6645508, 0.83935547, -3.5683594, -0.00045204163, -0.3701172, -0.07342529, -1.5966797, 0.9091797, 0.9135742, -0.85009766, 1.2470703, -1.2734375, -1.2480469, 1.7998047, -0.17333984, -0.71777344, 0.42236328, 1.2910156, -0.27856445, -0.95751953, -0.64501953, 0.087524414, -0.18078613, -2.1757812, 1.7998047, 1.3984375, 1.2587891, 1.5615234, -0.98046875, 1.3544922, 0.73291016, -0.7211914, 2.1953125, -1.84375, 1.0878906, -2.7285156, -0.77441406, 1.6679688, 2.5839844, 2.4199219, -0.21801758, 0.80126953, 1.2216797, 1.7558594, 0.53515625, -0.34838867, -1.1757812, 3.7636719, -4.4726562, -0.7416992, 0.07910156, -0.2064209, -3.8730469, 0.6191406, 0.21813965, 1.2832031, 3.171875, 0.40795898, 1.6689453, -1.5654297, -0.1472168, 0.5161133, 2.1054688, 1.5585938, -1.1123047, 0.005054474, -0.70166016, -0.52978516, 0.7573242, 1.9052734, 3.1191406, 0.13183594, 0.87890625, 1.2138672, -1.9033203, -1.4042969, -1.8916016, 1.7705078, -0.12011719, 1.6064453, -0.70458984, -0.27246094, -1.8320312, -1.8730469, 1.5283203, -0.8886719, -1.4589844, 0.22229004, 2.2128906, -0.84375, -0.05859375, -1.5351562, 0.10534668, -0.9995117, 1.2519531, 0.6767578, 0.2401123, 0.50341797, -2.1074219, -0.8720703, -1.4306641, 2.1738281, -1.15625, 1.6376953, -1.3027344, -1.0039062, -1.90625, -1.4873047, -2.5917969, 0.48779297, 0.8095703, 2.1777344, 1.5644531, -0.078552246, -0.9785156, -0.055145264, 1.0556641, -0.36376953, 1.4023438, -1.0244141, -0.8432617, -0.17712402, -0.32006836, 1.2958984, 0.24157715, -0.59375, -1.6933594, 1.1601562, -0.953125, -0.7480469, 1.1376953, -0.4333496, -0.68652344, -1.6865234, -1.5136719, 0.38500977, -0.45629883, 3.1816406, 0.77001953, -1.6083984, 1.5957031, -2.3066406, -0.30029297, -0.38378906, -5.1523438, 1.1494141, 0.30810547, 0.88378906, 1.75, -0.28320312, -0.4951172, 1.9921875, 1.3613281, -3.4746094, -0.82714844, -1.5429688, 0.7583008, -2.4082031, -1.7050781, 2.9628906, 2.7695312, -0.3984375, -2.6738281, 0.3178711, -2.3496094, -0.8198242, -0.39331055, -1.2744141, 0.7685547, 0.0073013306, 0.6035156, -0.072631836, -1.7685547, 0.6401367, 1.171875, -1.1767578, -2.4472656, 3.2929688, 2.3417969, 0.7504883, -0.43701172, 1.5302734, 2.9277344, -1.2109375, -1.3056641, -0.80908203, 3.4199219, -0.22106934, -1.6875, -2.3007812, -0.63183594, 0.3154297, -1.0224609, -0.31640625, -0.24584961, -0.8066406, 1.4326172, -0.8198242, 2.4628906, 1.1748047, -1.4375, -2.5390625, 0.94873047, 1.3300781, -2.234375, -1.0966797, -0.84716797, 0.11553955, -2.0898438, -0.19555664, -2.7714844, 0.39526367, 0.5859375, -1.0175781, -3.4824219, 1.7441406, -1.5849609, 2.2792969, 0.78466797, -2.4160156, -1.6386719, 0.5058594, 0.3623047, -1.3203125, -0.58740234, -1.2792969, -2.5976562, -0.6191406, 1.4169922, 0.71240234, -1.0556641, 0.0309906, 1.3359375, -0.08319092, 2.0371094, 2.1894531, -1.1982422, -0.97998047, 0.8457031, -0.107421875, 3.7714844, -2.828125, 0.7133789, 0.7548828, 0.04611206, -4.015625, 0.8676758, 0.6826172, 1.3046875, -1.4238281, 1.6660156, 3.0351562, 1.234375, 0.47192383, 0.021911621, 0.4326172, -1.3466797, 0.49243164, 0.07141113, 1.4453125, 0.7294922, 2.0117188, 1.8925781, 2.9277344, 0.31103516, 1.0263672, 1.5605469, -0.7788086, 1.3828125, -0.31347656, 0.6870117, -1.5234375, 0.35473633, -1.4794922, 1.3359375, -1.5732422, -1.9433594, 0.9003906, 3.3222656, 0.57714844, 0.6923828, -0.1472168, -1.2050781, 0.023208618, -3.2070312, -2.0878906, 0.6230469, -1.5507812, 1.2294922, -0.13439941, 0.23608398, 0.96875, 0.66308594, 2.2421875, -0.37963867, -0.96777344, -0.40893555, -1.6191406, -1.5996094, -1.0605469, -1.5097656, -3.2128906, 0.22094727, 2.2363281, 1.3144531, 0.625, -0.008468628, -1.5166016, 0.88623047, -1.5664062, 0.53027344, 0.70996094, -0.39672852, 0.16088867, 4.015625, -0.1986084, 0.9663086, -0.9008789, 0.048339844, -1.2910156, 1.0498047, 1.6328125, -0.9536133, -1.2363281, 0.18786621, -3.0214844, -6.1445312, 0.8046875, 2.8574219, 1.9042969, 1.6220703, -1.8076172, -1.5908203, 0.21264648, -0.4807129, -2.1503906, -2.8007812, 1.7041016, -1.3105469, -1.6025391, -1.0302734, 0.7910156, -0.41381836, -1.9082031, 0.5151367, -1.9980469, -0.5786133, -3.6582031, 1.3671875, 1.6298828, 1.2822266, -1.1552734, -0.5102539, -2.5742188, -0.9145508, -1.4658203, 1.3398438, -2.859375, 0.72265625, -2.0585938, 1.5722656, 1.2177734, -0.8071289, 1.0898438, 0.5776367, 0.24169922, 0.5419922, 1.8544922, 1.8349609, -1.2558594, -0.075927734, -1.4873047, 0.1986084, -0.93847656, -1.3242188, 0.7519531, 0.029388428, 1.4414062, 2.5273438, -1.0947266, -2.4199219, -2.3515625, -1.8134766, -0.09338379, -1.5634766, 2.0976562, -0.031204224, 2.9414062, 1.8154297, 0.13061523, 0.5756836, 0.40893555, -1.9492188, -0.66308594, 0.43603516, -1.8193359, 3.5429688, -1.4345703, -1.6347656, -1.8222656, -1.3466797, 0.5083008, 1.5205078, -1.3652344, 0.23498535, -0.006958008, 0.48632812, 0.28100586, -0.123168945, 2.8242188, 1.1748047, 3.3789062, -1.625, 0.31958008, 1.9921875, -2.6289062, -0.83935547, 1.2587891, -0.3935547, -1.5097656, 0.5698242, 0.50878906, -3.4804688, 0.6635742, 0.21936035, 0.6621094, -0.4987793, 1.1162109, 0.5620117, -1.9179688, 0.59375, -0.6875, -2.125, -1.5097656, 2.7246094, -0.23254395, 0.57128906, -0.6191406, 2.125, 0.74365234, 1.25, 0.21350098, -1.03125, -1.3007812, -1.6425781, 0.013793945, 0.09857178, -0.41357422, -1.2705078, -0.484375, 1.5332031, 1.8789062, 1.2617188, -1.8486328, 1.4980469, 2.9042969, 0.2619629, 3.5429688, 2.6269531, 0.7397461, 3.5703125, 2.0722656, 2.0605469, 1.9082031, -0.14624023, -0.5991211, 0.2998047, -0.8461914, 1.7695312, -2.5625, 1.7089844, -0.8823242, 1.9863281, 1.7246094, 0.82470703, 0.35791016, -5.1210938, 1.0878906, -1.9013672, -0.30200195, -1.3486328, 1.6513672, -0.62402344, 0.32763672, -0.26098633, -0.029418945, -0.34960938, 1.9619141, 0.6381836, 0.4128418, 0.5595703, 2.203125, -0.76123047, -0.9057617, -1.0722656, -0.3413086, 0.02015686, 1.1162109, -1.2802734, 0.82421875, -0.5229492, 2.046875, -0.4387207, -1.6113281, 0.9248047, -0.2626953, -0.06304932, -1.9970703, 2.8496094, 1.0390625, 0.37475586, 3.7558594, -0.0005931854, -1.6640625, -4.5664062, 1.4238281, -0.85253906, 0.25146484, 1.0771484, -3.7558594, 1.3603516, -1.6533203, -0.31152344, -2.8515625, -0.44873047, 1.6679688, -1.2568359, -0.06719971, 1.2558594, -1.4082031, -0.13781738, 2.2207031, -0.9482422, 1.5742188, -0.24633789, 0.1005249, 1.9414062, 2.2285156, 1.3642578, -1.5078125, -0.33862305, 2.0898438, -0.034362793, 0.00039291382, 0.3774414, 0.6376953, 0.5830078, 0.9111328, -0.69433594, -0.9394531, 1.2089844, 0.8901367, 0.5957031, 0.12225342, -1.140625, -1.015625, -1.0820312, 0.081604004, -0.5683594, -1.0351562, 1.1767578, 1.9404297, -1.2763672, -1.2021484, 0.48413086, -0.9423828, 1.6572266, 1.5566406, -1.6904297, 0.046875, -1.4804688, 0.81640625, -2.875, 0.6459961, 1.1035156, -1.28125, 0.008522034, -3.1777344, -0.5473633, -0.49658203, -0.14123535, 1.0332031, 1.7207031, -0.08306885, -1.0703125, -1.4160156, -0.8754883, 2.2363281, 3.859375, 0.7158203, -0.2175293, 0.40625, -0.5546875, 1.4423828, -0.3557129, -3.4238281, 0.6977539, 2.0664062, 1.9755859, 3.1835938, -2.1035156, -1.3603516, 0.4736328, -1.5224609, 2.3300781, 0.4567871, -3.1464844, 1.0126953, 0.6665039, 1.34375, 1.7451172, -1.2470703, -0.5756836, 0.97314453, 1.4121094, -2.4023438, -0.39282227, 0.087646484, 0.007637024, 0.70996094, 3.7597656, 1.6640625, -0.23718262, 0.68652344, 4.2890625, -0.109680176, -3.3945312, 1.28125, -0.98876953, -0.11773682, 1.9658203, -0.29003906, 1.453125, 0.0017118454, -1.0605469, -2.8867188, 0.4633789]}, "B07M6V9BMW": {"id": "B07M6V9BMW", "original": "Brand: Napoleon\nName: Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel\nDescription: \nFeatures: 80, 000 BTU's, 4 Stainless Steel main burners, 900 in\u00b2 total cooking area\nDimensions: 66.50\" W x 25.50\" D x 51.75\" H (Lid Closed) | Cooking Area: 17.75 x 28 in\nLed Spectrum night light control knobs and safety feature\nLift ease roll top lid. double doors for storage and easy roll locking casters\nInfrared rear rotisserie burner\n", "embedding": [-2.3496094, -0.41308594, 2.6542969, 0.97753906, -1.1162109, 0.55371094, -0.72265625, -0.8745117, -0.038116455, 1.7509766, 2.8476562, 0.6035156, -0.7519531, -1.0917969, 1.4140625, 0.50097656, 1.5419922, 0.84375, 0.5957031, 0.17785645, 0.28027344, 0.65478516, 2.1914062, -1.3544922, -0.4621582, 1.0078125, 4.5859375, -4.140625, -0.55371094, -1.8173828, 2.3183594, 0.8652344, 0.7661133, 0.45214844, -2.7363281, -1.1914062, -2.0351562, 0.7739258, -2.5859375, 1.0488281, 0.49609375, -1.5625, 2.2695312, -0.9980469, -2.0585938, -1.1552734, -0.6845703, -0.13232422, -2, -1.0195312, 1.1669922, 0.4025879, -0.671875, 0.6328125, -1.0429688, 1.0087891, 1.9707031, -0.14831543, -1.4257812, 0.5283203, 1.3359375, 1.0791016, -1.2382812, -0.79296875, -1.6904297, 0.3449707, -0.51464844, 0.8413086, 1.6582031, -0.1953125, 1.6435547, 0.24023438, -0.74121094, -0.77490234, 0.21765137, -2.34375, -2.5839844, 0.6665039, 1.9111328, -0.6401367, -1.2607422, 1.7304688, 1.0869141, -1.8886719, -0.72802734, 0.38793945, -1.6552734, -1.2558594, 0.8803711, 1.3935547, 0.79541016, 1.7421875, -0.8339844, -3.8710938, 3.3828125, -0.36572266, 0.99121094, 1.7119141, 0.90722656, 1.9013672, 0.65771484, 0.15600586, -1.0400391, -1.6005859, -1.828125, -2.546875, 1.6845703, 0.051086426, -2.2734375, -0.2993164, -0.765625, -1.1347656, 3.0546875, 0.6254883, 1.6230469, 2.6347656, 0.4909668, 2.3671875, 0.29077148, 0.72558594, 1.5917969, -1.0478516, 0.4416504, 0.2265625, -0.49951172, 0.83447266, -2.1992188, 1.6435547, 4.3320312, 0.20568848, 0.10369873, -1.5039062, 3.6074219, -0.22106934, -1.2880859, -1.8554688, -3.2011719, -0.49658203, -4.1132812, 0.2626953, -0.47485352, 1.4453125, 0.6352539, 0.13195801, -3.2460938, -0.40649414, 0.4350586, 0.16418457, -0.6020508, -0.703125, -0.041290283, -2.3886719, -0.31274414, -1.3955078, -0.12939453, -1.4121094, -0.9194336, -1.1552734, 3.7089844, 2.5253906, 2.4296875, -1.3974609, -2.4785156, 0.48779297, 0.14794922, -2.0585938, -0.8378906, 1.6210938, 1.1757812, 2.0703125, -0.52490234, -1.1357422, -0.73535156, 0.11804199, -0.25317383, 0.13024902, -0.53515625, 2.6074219, -0.11828613, -1.828125, -2.2773438, -0.8544922, 0.21948242, -0.07232666, 0.4020996, -1.0410156, -1.1191406, -0.43823242, 1.3710938, -1.7402344, 1.2646484, -0.7783203, -0.2770996, 1.2470703, -1.8642578, -2.2285156, 0.5908203, -1.7988281, 1.2314453, -0.6503906, -1.0927734, -0.7089844, -0.12719727, -0.2861328, -2.2949219, -3.4902344, -1.5517578, 0.5620117, -0.17358398, 3.1757812, 3.4609375, -1.5234375, 1.4248047, -1.8300781, 1.3525391, -2.0253906, 1.8994141, 1.4833984, 1.6035156, 2.7714844, -0.59716797, 0.52783203, -0.041168213, 3.3730469, -0.15917969, 2.5566406, 0.56689453, 1.4375, -2.3261719, -1.3017578, 3.0390625, 1.1757812, -0.8984375, -0.2602539, -0.08959961, 1.984375, 0.5546875, -2.0234375, -1.3457031, -0.9589844, -1.4082031, -1.2128906, -0.9633789, -0.6152344, -0.29614258, 0.453125, -2.0957031, 0.57714844, 1.9423828, 1.7626953, -0.35961914, 0.081604004, 1.7294922, 0.3947754, -0.04598999, 0.8823242, 0.5493164, 1.8662109, -1.4482422, -3.2460938, 1.4570312, 0.2467041, -0.63671875, -1.0068359, 1.03125, -1.1474609, 4.015625, 0.05895996, -2.7421875, -0.40771484, 0.47753906, -0.8886719, 3.6640625, 1.5117188, -0.23583984, 0.8491211, -3.0996094, 3.5195312, -1.3525391, 2.2050781, 0.31054688, 0.65625, 2.7753906, -2.6269531, -1.0898438, 1.0791016, 1.3964844, -1.2617188, -1.4931641, 1.9599609, 5.4023438, -1.0039062, -2.6503906, 1.8994141, -0.8691406, -0.609375, 2.1171875, -1.2773438, -0.004009247, -2.8671875, 1.5810547, 1.4208984, 1.6474609, 0.7949219, 0.84521484, -1.9355469, -1.1552734, -2.0195312, -0.8691406, -2.0507812, 0.3305664, -0.23095703, -1.7470703, 2.3808594, 0.5620117, -0.55615234, 2.15625, -2.5273438, 2.6992188, 0.07147217, 2.5917969, 1.9326172, -0.55322266, -0.5292969, -0.24609375, -0.24658203, -1.1542969, 1.4902344, -0.61083984, -1.2265625, 0.21582031, -0.49560547, 1.0351562, -2.1367188, -2.4121094, 0.08691406, -2.7109375, -1.1660156, -0.61083984, -2.4824219, -2.4414062, 0.8696289, -3.5195312, 1.6660156, -0.6040039, -5.0429688, -2.1210938, -1.2988281, -0.21203613, 0.60546875, 2.1640625, -0.22766113, -0.10003662, -3.8339844, 0.5385742, 0.32055664, -2.7988281, 0.34594727, -1.5537109, 0.22290039, -1.1494141, -0.72802734, -0.6479492, -0.025360107, 0.67041016, -2.1015625, 1.0390625, -3.2246094, -2.0507812, -4.1875, 0.33276367, -2.2246094, -0.034942627, -2.7128906, -1.2382812, -1.2265625, -2.3300781, 3.0078125, 0.7631836, 0.03451538, 0.5605469, -0.296875, 2.1796875, -1.8837891, -1.2998047, -1.2265625, 0.59814453, -2.2675781, -3.0039062, -2.6953125, -0.075927734, -1.2226562, -0.203125, -2.0898438, 1.0908203, -2.2167969, 3.1738281, -1.1044922, -1.8857422, -0.56884766, 0.5371094, -0.67578125, -0.23583984, -2.6445312, -0.9868164, -0.34570312, 0.22106934, 0.25097656, 0.7089844, 0.6816406, 1.4443359, 0.43041992, -1.2773438, -0.32006836, -1.1054688, -4.109375, 1.6220703, 0.7944336, -2.5703125, 1.828125, -1.9013672, -1.7675781, -1.3603516, -1.4023438, 1.2597656, 2.8671875, 1.3984375, 1.2578125, 0.8754883, -0.4169922, 1.4189453, -0.7138672, -0.011024475, 0.47094727, 2.5058594, -1.8037109, -1.5195312, -0.3256836, 2.7832031, -1.6513672, -2.0253906, 2.1210938, 1.3261719, 1.6835938, 1.0419922, 0.033325195, 0.47753906, -1.7724609, 1.1513672, 1.4287109, -0.26953125, -1.0917969, -1.2890625, 1.375, 0.6381836, 1.6748047, 4.2695312, 0.3334961, 1.5742188, 0.14086914, 1.2441406, -1.8164062, 1.0107422, 1.2207031, 2.4316406, -0.6875, 2.0878906, 0.30615234, 1.5087891, -0.7133789, 0.8491211, 0.18933105, -3.1171875, 0.64501953, 1.4521484, 0.93847656, 0.07397461, 0.22351074, 1.3916016, 0.43603516, 1.0341797, 2.6484375, -1.0253906, -0.3798828, 1.0380859, 0.31103516, -2.2324219, -1.4697266, 1.9150391, -1.5, -1.5107422, -0.08654785, 2.8164062, 0.63671875, -2.3359375, 0.4326172, 0.48608398, -0.44799805, 0.8701172, -0.5908203, -0.31591797, 1.9375, -0.93652344, 1.6591797, 0.39526367, -2.1035156, 0.78466797, -0.8574219, 0.16748047, 0.18115234, 0.85058594, 2.4804688, 1.3310547, -2.5507812, 0.44580078, -3.4160156, 0.6694336, -0.2763672, -2.71875, -1.5996094, 2.3984375, 1.0117188, 2.0195312, -2.0058594, 2.5566406, 0.37548828, -0.44873047, 1.6054688, -3.4746094, 0.12164307, -2.6875, -2.5605469, 1.9863281, -1.0664062, -0.050354004, 1.0224609, -0.8671875, -0.7709961, 2.0917969, -0.18481445, -3.9609375, -2.0117188, -1.7050781, 1.0429688, -1.1015625, -1.6914062, 1.9580078, -0.45825195, -3.7734375, -1.5878906, -0.55615234, 0.38085938, 1.9775391, 1.6865234, -2.0136719, 1.3476562, -1.8544922, 1.6435547, 1.8642578, -0.38671875, 1.3632812, -0.51220703, -0.49658203, -3.2304688, 1.5263672, 0.6533203, -0.7636719, 0.09106445, -0.46875, -0.2788086, -1.6357422, 0.47998047, 1.0507812, 3.1796875, 0.19812012, -2.7578125, -0.30932617, 0.63671875, 0.085876465, -0.40429688, -0.70214844, -0.90722656, -1.2724609, 1.0507812, 1.9267578, 0.1809082, 0.31884766, 0.796875, -2.9394531, -0.27978516, 1.3017578, -1.9482422, 0.49902344, 0.20031738, -0.4169922, 0.96191406, 0.84277344, -1.5087891, -0.21948242, -2.7128906, -0.42919922, -2.5, 3.8125, 3.0625, 3.1328125, 1.3798828, 0.20593262, -2.0742188, -0.81640625, 1.5009766, 0.39819336, 2.5800781, -1.3486328, -0.6245117, 1.0947266, 1.3818359, -2.0878906, -1.2734375, 2.9746094, -1.7666016, 0.4934082, -1.3134766, 0.39282227, -2.3144531, -1.0400391, 1.4658203, -1.1630859, 2.9238281, -1.2509766, 0.44433594, -1.3085938, 0.6660156, 0.7246094, 1.4023438, 0.47705078, 1.0498047, 2.6992188, 1.8193359, -1.0185547, -1.1679688, -0.21459961, -0.34301758, 2.4257812, -1.0166016, 1.3017578, -1.3535156, -0.46655273, -1.2470703, -2.7382812, 1.71875, 1.8798828, -0.34570312, 4.5078125, 1.9550781, -2.3867188, 0.95996094, 0.14501953, -2.9140625, 0.49609375, 1.3017578, 0.35742188, 0.46923828, 1.8037109, -4.1640625, 0.2763672, 2.96875, -0.76220703, 0.33569336, -0.7939453, -1.7880859, 0.17089844, -2.7929688, -0.014312744, -0.6879883, 1.0029297, -1.7695312, -0.2746582, 1.1650391, -1.2626953, -0.16882324, 2.6816406, -0.39990234, -0.9584961, 2.8476562, -0.09667969, 1.859375, -1.1923828, -0.45141602, -0.29785156, 1.1445312, 3.1875, 1.3066406, 1.6054688, 0.4111328, 0.9472656, -2.7246094, -0.42041016, -0.46435547, 3.5136719, -1.7666016, -1.5595703, 2.1660156, -0.57177734, -0.37939453, -0.74658203, -0.04348755, -1.1396484, 2.8242188, 1.8730469, 0.3725586, 0.3232422, 0.34277344, -1.3837891, -3.7109375, -1.5429688, 1.2636719, 0.4194336, -0.0051956177, 0.1463623, -0.8515625, 1.8632812, 0.7324219, -0.74560547, -2.8046875, -0.88427734, -0.36035156, 0.2310791, 0.2861328, 1.0068359, -1.2285156, 0.8959961, 0.13464355, 0.26635742, 1.1347656, -3.9785156, -2.6328125, 2.1171875, -2.1289062, 0.21044922, 3.0898438, -0.14550781, -0.24304199, 1.0537109, 0.7504883, -2.9746094, 2.9550781, -2.0078125, -0.5761719, 1.5087891, 0.71240234, 0.44018555, 1.0908203, -0.4177246, 1.875, -1.9775391, 1.3095703, -0.22998047, -0.6245117, 0.453125, 0.06378174, -1.0410156, -2.1113281, 0.8251953, -0.8359375, 0.5991211, 1.9023438, -1.2236328, -2.2675781, -0.7861328, -3.8476562, -0.36108398, -1.3261719, -0.24633789, -2.0957031, 1.7734375, 1.7675781, 0.41992188, -0.2614746, 1.0976562, 1.1923828, -0.36621094, 2.0839844, -1.6748047, 2.0839844, 2.5761719, -2.3828125, -0.5546875, -1.8798828, 0.6513672, 2.4179688, 0.8183594, -0.66503906, -0.37963867, -0.8339844, 0.74121094, 1.421875, -0.9243164, 2.671875, -0.39868164, -1.0742188, 1.2089844, 3.625, 0.9902344, 2.3671875, 0.9609375, 1.9804688, 0.015838623, 4.0078125, -0.085998535, -2.1171875, 2.8359375, -2.359375, 1.546875, 0.40844727, -1.1044922, 0.0018072128, -0.49438477, -1.8417969, -1.5810547, -1.1357422, -3.2617188, 1.109375, 0.046813965, -1.8212891, 0.43139648, 2.9453125, 0.60595703, 1.6474609, 1.5527344, 1.7597656, 0.9707031, 0.6123047, 0.64404297, 0.18347168, 2.2421875, -2.3125, 2.0625, 0.96875, 0.4428711, -0.86035156, 3.1171875, 1.1484375, 2.1542969, -0.012336731, 1.1992188, 3.1699219, 1.1123047, 1.2402344, 0.6274414, 1.4755859, 0.8071289, -0.099487305, 0.5786133, 1.9462891, 1.2773438, -0.31347656, 0.36010742, 2.1171875, -0.9194336, -2.7949219, -0.5600586, 0.22509766, 0.9477539, -0.890625, 1.15625, 0.56933594, 0.54345703, -1.5830078, -0.37402344, -3.0683594, -0.6220703, -0.44702148, -0.54541016, 1.7714844, -0.50683594, 0.77685547, -0.6928711, -0.41430664, 1.3300781, -3.6835938, -0.30639648, 0.95410156, -1.3242188, 0.9375, -0.04437256, 0.9238281, 0.37548828, 0.107910156, 0.17700195, 3.1796875, 1.8173828, -0.8779297, -2.1015625, 0.48999023, -0.13537598, 3.125, -0.8364258, 1.7109375, 1.828125, 0.7792969, -3.3183594, -4.7070312, 2.8027344, -0.18981934, 1.2128906, 2.9082031, -2.2617188, 2.8515625, -0.71728516, 0.9707031, -1.6982422, 0.6621094, 0.85058594, -2.3183594, -0.48168945, 1.0742188, 1.4140625, 2.0019531, 1.8105469, 0.049072266, 2.5859375, -1.3369141, 2.1894531, 0.5498047, 0.9008789, 2.2128906, 1.0185547, -1.1835938, 1.1210938, 0.20397949, -0.94970703, -0.60595703, 3.0722656, 2.5703125, 0.24438477, 0.7480469, 0.16845703, -0.7988281, -1.7607422, -0.3125, -0.7963867, -2.6308594, 0.16748047, 0.044311523, 0.50146484, -1.2070312, -0.4020996, 2.1386719, 0.5024414, -1.1152344, -0.5834961, 2.4824219, 0.41674805, 3.1113281, 0.7836914, -1.0761719, -0.80322266, 0.05545044, 0.7753906, 1.5703125, -1.9101562, -1.0332031, 0.6308594, 1.6904297, -0.3930664, 0.6347656, -0.6899414, -1.4638672, -0.2783203, 2.2226562, -0.95751953, -1.7617188, 1.578125, -0.32714844, -0.9238281, 1.5693359, -1.4863281, -0.72314453, -1.9707031, -0.29516602, -0.39160156, -0.3894043, -1.3925781, -0.3647461, 3.2890625, 0.44628906, 1.2548828, -1.7060547, -4.8828125, -1.3427734, -1.1630859, 2.8085938, -1.7734375, -0.9975586, 0.29370117, 0.23608398, 1.9863281, -1.8417969, -2.2617188, -0.45263672, -0.8598633, 0.65185547, 0.3894043, 1.0898438, 0.18273926, 0.08477783, 0.5004883, 1.7949219, 0.23828125, -0.5288086, 1.4023438, 2.0234375, 0.90527344, -2.3730469, 1.3701172, -1.9179688, 0.60253906, -0.9902344, 0.44702148, 1.5429688, 0.6308594, -0.24169922, -0.44580078, -2.1972656]}, "B01I32H5QI": {"id": "B01I32H5QI", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch\nDescription: This product is a 12\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
          Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
          Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
          Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.\nFeatures: Fire Pit Burner Ring, Diameter 12-inch\nRing Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "embedding": [-0.6142578, 0.4260254, -1.8232422, 0.7182617, -0.6147461, 0.067871094, 2.390625, -2.015625, -0.37695312, 0.91308594, -1.4384766, -0.7680664, 0.88623047, -3.4960938, -0.55322266, 0.8671875, -2.0429688, -0.4638672, 1.5673828, 1.3427734, 1.5976562, 1.1035156, 2.4335938, 0.24414062, 0.9995117, -0.4572754, 3.2929688, -2.1777344, -0.95166016, -1.1367188, 0.91796875, 0.5107422, 1.2666016, 0.5957031, -4.0625, -0.9291992, -0.34594727, -0.105285645, -2.6484375, -0.2705078, -2.375, -0.4111328, 1.3867188, 0.61035156, -2.890625, 0.9921875, 0.6567383, -1.5361328, -1.4384766, 0.98828125, 1.6035156, 1.5332031, -0.6279297, 0.48510742, -0.85595703, 1.4003906, -0.6279297, -2.2539062, 2.1699219, -1.03125, 1.7783203, 0.8823242, -2.4082031, 0.6010742, -0.47924805, 2.3945312, 0.31054688, 0.56347656, 0.06958008, -0.09033203, 2.0253906, -0.49438477, 1.3632812, -0.011306763, 2.8984375, -1.0458984, -2.5546875, 1.7041016, 1.9404297, -2.078125, -0.1862793, 2.7265625, 0.7050781, -0.36938477, -0.035888672, -1.1552734, -1.5361328, 0.15185547, 2.3945312, 1.0126953, 0.10040283, 2.4179688, -1.5615234, -3.4628906, 1.5400391, -0.6850586, 1.7578125, -0.2866211, -0.37939453, 0.17651367, 0.48388672, 0.95458984, -0.65478516, 0.8222656, -1.5644531, 0.04852295, 1.9101562, 1.3408203, -0.48217773, 0.9433594, -1.4902344, 1.78125, 3.5683594, -0.28076172, 0.24584961, 0.57958984, -0.7480469, 1.8251953, 3, -1.9404297, 4.1875, 0.93408203, 0.98291016, -1.3496094, -0.028457642, 0.2927246, -2.6679688, -0.07763672, 2.3144531, -1.7314453, 0.9223633, -1.7587891, 1.6875, -0.3334961, -1.8359375, -0.15612793, -0.5708008, -0.20349121, -2.0585938, -0.71484375, -3.4785156, 2.2539062, 0.15185547, -2.6699219, -3.9921875, 0.65966797, -1.0712891, 2.9667969, 0.21936035, -2.703125, 1.6435547, -0.8071289, 0.46166992, -1.4560547, 1.9199219, 0.6635742, -0.5283203, -1.859375, 3.1679688, -0.32885742, 0.25024414, -1.2568359, -0.06915283, 2.7597656, -2.3535156, -1.3486328, 0.81396484, 1.0390625, -1.9033203, 1.8681641, 1.9003906, -1.3085938, -1.8955078, -0.63427734, 0.7504883, -1.9130859, -1.6601562, 2.6816406, 1.5566406, 1.2353516, -2.3574219, -2.4316406, 3.1269531, 0.4934082, 0.036895752, -0.32055664, 0.69433594, -1.0400391, 0.80908203, 0.51904297, -1.9775391, -0.04623413, -0.28881836, -1.1230469, -0.8754883, -2.2753906, -1.2773438, -2.25, 1.203125, 2.1933594, -2.8066406, 0.41552734, 0.4411621, 0.42114258, -2.3066406, 0.09777832, 1.1337891, 0.9501953, 3.5625, 0.96533203, -0.19665527, -1.2509766, 2.4882812, 0.44726562, 1.4521484, -2.1660156, 1.59375, 2.0507812, 1.3027344, 3.2949219, 1.8027344, -0.5776367, 1.3613281, 1.4160156, 0.90283203, 1.7392578, 1.0175781, -0.13537598, -2.3007812, 0.45874023, 3.2636719, 0.6333008, -1.6074219, 1.9023438, -0.9482422, 2.5058594, -0.80322266, -1.6210938, 1.7021484, -2.1992188, -0.8774414, -2.8847656, -0.08050537, -0.6689453, -0.61865234, 0.28759766, -0.1149292, 0.0079193115, 1.0966797, -0.8730469, 0.12695312, 0.50146484, 2.9257812, 0.70214844, 0.67578125, -2.0078125, -0.31445312, 0.7451172, -0.40600586, -2.1894531, 1.8847656, 0.9326172, -1.4033203, 0.58740234, 0.7998047, -1.5703125, 1.0849609, -0.3100586, -2.5, 0.062286377, -2.0585938, 0.43359375, 0.88720703, 0.3154297, 2.3613281, 0.6557617, -1.1689453, 3.65625, 1.1738281, 0.9267578, 0.0055351257, 0.15441895, 2.9179688, -2.3847656, 0.75146484, 2.6582031, 2.5253906, -0.8925781, 0.031188965, 0.8955078, 4.578125, -1.3808594, -2.296875, 1.5693359, -1.0380859, 0.8803711, -1.0712891, 1.7080078, -0.13012695, -1.3310547, -0.16394043, 1.9775391, 0.44458008, 2.2480469, -0.7216797, -0.6098633, 2.2851562, -3.3613281, 1.4501953, -1.7441406, -0.049713135, -0.5522461, -1.5537109, 1.046875, -1.3925781, -2.6621094, 2.6894531, -2.8007812, 1.5097656, 0.8256836, 0.6489258, 1.9335938, 0.28588867, -1.2558594, -0.042175293, 1.6738281, -2.8398438, 2.34375, 0.6557617, 0.6933594, -2.4648438, -0.87109375, 0.6826172, -1.2011719, -1.078125, -1.8046875, -1.3652344, -1.9335938, 0.13464355, -3.2617188, -0.25390625, 2.09375, -1.8759766, 0.4807129, -1.1191406, -2.3691406, -1.1083984, -0.8745117, -2.4082031, -1.3984375, 1.2001953, 3.4453125, -2.2050781, -1.46875, -0.57666016, -0.11621094, 1.4296875, -0.64208984, -0.5073242, -1.1347656, -0.6020508, 1.0029297, -0.92333984, -1.1181641, 1.1298828, -3.3535156, 0.953125, -2.7246094, 2.1757812, 0.043914795, 0.2841797, -0.7128906, 0.96191406, -1.1318359, -1.3037109, 0.048217773, -0.35546875, 5.8242188, -1.3388672, 1.9267578, -1.5068359, -1.6611328, -1.5068359, -0.54785156, -2.0820312, 1.2724609, 0.8574219, -2.1660156, -3.5214844, -2.5, 0.24902344, -1.4863281, -0.74316406, -1.6982422, 0.70166016, -1.6611328, 0.19714355, 0.15527344, 0.43481445, 0.019607544, -0.1574707, -0.40966797, -0.92626953, -1.859375, -0.44702148, 0.17871094, -1.5546875, -0.5097656, -0.2800293, -1.5634766, 0.0657959, 1.5732422, -0.40112305, 0.9345703, 1.2861328, -2.6933594, 1.9560547, 2.4902344, -1.0341797, 1.7890625, -3.4609375, 0.16357422, -1.9804688, 0.37109375, 4.0664062, 1.421875, 0.29052734, -0.22241211, -0.94091797, 1.5498047, 0.022659302, -1.7744141, -0.4724121, 0.2479248, 4.609375, -2.9375, -1.625, 0.66748047, 1.9257812, -4.5546875, 0.6430664, 2.40625, 0.90722656, -0.023025513, 1.0058594, 0.57958984, -0.85058594, -1.3984375, -0.2076416, 1.3642578, 2.1601562, 0.3869629, -1.6542969, 1.4228516, 0.7192383, -0.171875, 2.5585938, -0.52197266, 1.4072266, 3.6835938, 0.8725586, -1.8896484, -0.3581543, -0.16320801, -0.25610352, 0.81591797, 0.96533203, -0.70751953, 1.1738281, -1.3144531, -0.12780762, 2.5859375, -2.5117188, -1.0429688, 1.3613281, -0.3232422, -2.1796875, 0.76123047, 1.3789062, -0.04559326, -2.734375, 0.18078613, -0.22558594, -0.21716309, 2.0371094, 0.69677734, 1.6533203, -2.7539062, 0.6665039, -1.7998047, -1.0029297, 0.21350098, 1.0830078, -0.42138672, -2.7832031, -0.042938232, -0.90478516, -0.9609375, 4.1992188, 0.4104004, -1.6386719, -0.3581543, -2.8652344, 1.1103516, 0.83251953, -1.3798828, 1.1992188, 0.49243164, -1.6582031, -0.54248047, -0.015380859, 1.1826172, -1.5761719, -1.5039062, 0.7553711, -2.7636719, -1.6074219, -0.2475586, -1.0361328, -3.2890625, 3.3632812, -0.031463623, -0.13208008, -1.2490234, 3.6855469, 1.0957031, -0.26342773, 3.1757812, -0.7363281, 0.26220703, -2.3691406, -4.0507812, 0.9345703, -2.5390625, 1.6953125, 0.87939453, 2.2597656, -0.50390625, 1.4755859, -0.5810547, -2.4472656, -1.53125, -0.6791992, 1.2792969, -2.8808594, -3.5722656, 0.38452148, 0.87890625, 0.1484375, -0.037353516, 0.23901367, 0.9614258, 1.3632812, 1.3095703, -1.4082031, 0.20715332, 0.3876953, -1.2978516, -0.49926758, -1.1533203, -0.29614258, 0.8457031, -0.5966797, -1.6298828, 1.2333984, 3.5859375, -0.07635498, 2.5996094, 2.0546875, 2.6425781, 0.47460938, 0.3400879, -0.42773438, 3.3808594, 0.21484375, -1.484375, 0.7109375, 0.80859375, 1.6738281, -1.1455078, 0.37304688, -0.5102539, -0.8769531, 3.2285156, -2.1152344, 0.49072266, 0.70214844, -0.064697266, -1.5566406, 0.55322266, -0.20080566, -1.6621094, 0.7705078, 0.5776367, -0.6044922, -2.4667969, 0.35498047, -3.2597656, 1.4257812, 0.7260742, -0.23242188, -3.7792969, 2.9472656, 2.5, 0.72802734, 4.8164062, -1.7158203, -0.5307617, -1, -0.25341797, -0.17004395, -0.5185547, -0.026367188, 0.19506836, 2.8203125, -0.27319336, -0.3491211, 0.15722656, 2.7988281, -0.45288086, -0.82714844, -0.95996094, 0.7548828, -1.4667969, 0.93310547, -0.26611328, -0.6982422, 0.8100586, 0.2775879, -0.32617188, 0.8125, 0.78515625, -1.6210938, 0.06964111, -0.21179199, 0.96777344, 1.1083984, 1.1884766, 1.515625, 0.95751953, 4.1992188, 0.9038086, 1.7412109, 0.41674805, 0.5810547, -0.7504883, 0.034484863, -3.0859375, -0.07873535, 0.3935547, 2.5878906, -0.5263672, 2.84375, 0.4506836, -2.4492188, 2.0175781, 0.038482666, -4.5390625, -1.2822266, -0.22998047, -3.1679688, 1.71875, 0.8208008, -1.1044922, -1.0986328, 1.8564453, -0.45043945, 2.7890625, -0.6269531, -1.5136719, -0.35498047, -0.4243164, -1.0976562, -2.1523438, -0.17541504, 0.9165039, -0.37695312, 1.0849609, -0.5732422, 1.7929688, -0.40698242, -0.15966797, -1.6347656, -0.6699219, -1.1083984, -1.5136719, -1.6875, -0.40942383, -0.36987305, 1.3916016, 0.22827148, -0.41430664, 1.4238281, -0.22521973, 2.0820312, -1.8984375, -2.4160156, -0.68896484, 2.4746094, -0.4453125, 0.19812012, 2.2285156, -0.36328125, 0.6513672, -0.3857422, -0.26464844, -1.5332031, 1.6376953, -0.7836914, 0.3137207, -0.33276367, 0.81689453, -1.9658203, -5.2929688, -2.0644531, 0.45874023, -0.10241699, 1.1591797, -1.3310547, 1.0068359, -0.0018854141, -0.9711914, -0.6591797, 0.15527344, 1.4941406, -0.20080566, 0.75390625, -1.9638672, 0.29516602, 1.3378906, -0.96972656, -0.66308594, -0.60791016, -0.8232422, -2.5253906, -0.5722656, 2.6777344, -2.7929688, 0.9277344, 1.7998047, 0.00015604496, 0.1697998, 3.6503906, 0.5576172, -1.0683594, 0.38085938, -3.6972656, -0.7807617, 0.3076172, -1.8583984, -1.7509766, 1.4160156, -1.6835938, 1.1298828, 0.98095703, -2.7382812, -2.3476562, 1.6777344, 0.6484375, 0.07891846, -0.76708984, -1.5332031, 1.3076172, 1.7880859, 0.41601562, 1.0458984, -2.0996094, -1.0908203, -2.1738281, -0.7246094, 0.68408203, -0.88964844, 0.5292969, -0.054504395, 0.39086914, 1.171875, -0.89208984, 0.13989258, 1.5664062, -1.1201172, -0.04156494, 2.3203125, -0.32983398, 4.0234375, -0.4230957, -2.1660156, -1.9599609, -1.9033203, 1.0439453, 0.86621094, -2.0761719, 0.09075928, -0.51123047, 0.43652344, 0.21691895, 0.97998047, 1.421875, 1.1953125, 1.7998047, -1.9794922, 0.95166016, 1.171875, 0.068603516, 1.8925781, 0.60058594, 0.36743164, -1.1445312, 1.1162109, 2.1191406, -2.8808594, 0.44384766, -1.7109375, -0.18701172, 0.2980957, -1.3291016, -2.2070312, -2.484375, -1.5664062, -0.23486328, -2.015625, -2.7675781, 0.8730469, 1.7246094, 0.74853516, 0.8955078, 1.8457031, -1.2509766, 2.1425781, 1.4160156, 0.89404297, -1.7119141, -2.5117188, -0.6977539, 0.90625, 2.7421875, -3.0585938, -1.1582031, -0.328125, -0.48095703, -0.2861328, 0.6044922, 0.74853516, 1.7480469, -1.0292969, 2.0878906, 1.9863281, 2.5253906, 3.5292969, -0.32836914, 1.2021484, 1.6337891, 0.073791504, -0.57958984, -0.29052734, 0.80322266, -0.35766602, -0.8222656, -0.28808594, -0.86035156, -2.8652344, -0.69873047, -0.57666016, 0.11932373, -3.1601562, 2.203125, -0.80566406, -0.98339844, -0.7583008, 1.4267578, -0.42211914, -0.8203125, -2.2480469, 0.39916992, 2.2265625, 0.58935547, -0.3232422, 0.73291016, 0.72021484, -0.6171875, -3.859375, 1.3359375, 0.1809082, -3.9140625, 0.49658203, 3.2558594, 0.23669434, 1.8427734, 1.3935547, 2.5625, 0.16088867, 0.39331055, -0.12915039, 1.1074219, 0.18371582, 1.421875, 2.6660156, -0.48242188, -1.3916016, -0.5390625, -0.028060913, -3.9179688, -4.5, 3.3222656, 0.0524292, 0.74365234, 0.61572266, -0.058654785, 1.5039062, -0.8305664, 0.77734375, -1.6875, -1.109375, 1.1181641, -1.0625, -0.23754883, 1.5566406, 0.22302246, 2.0351562, 1.2744141, -1.1787109, 0.5708008, 1.921875, 0.26098633, 2.7539062, -0.13305664, -0.56884766, 1.3408203, -1.7304688, 4.6132812, 2.2832031, 1.0322266, -0.98876953, 2.609375, 1.3095703, 1.7441406, 1.0488281, -0.9116211, 1.0292969, -1.5761719, -0.55615234, 0.2697754, -0.77978516, -2.5097656, -0.96533203, -0.95996094, 0.61621094, -1.1083984, 1.5410156, 1.9560547, -0.49853516, 0.87597656, 2.4511719, -2.4882812, 0.21130371, 0.7753906, 0.051727295, -2.2695312, 0.47875977, 2.3925781, 0.34960938, -2.3789062, 0.06500244, 3.0957031, -0.07635498, -1.7548828, -0.75878906, -0.63183594, 0.16784668, 0.26098633, 1.8417969, -0.6923828, -0.75634766, 2.6054688, 0.09399414, -2.703125, 1.6308594, -0.06555176, 0.49829102, -0.19665527, -2.1289062, -1.375, -0.5229492, -1.359375, 0.82714844, 3.5761719, -0.5673828, 0.31469727, 1.5976562, -3.5351562, -1.3300781, -0.13684082, 1.7001953, 0.6455078, -1.3515625, 0.3317871, -1.5878906, 3.8261719, -2.796875, 1.3085938, 1.1601562, -0.36499023, 1.0576172, -0.5908203, 2.9375, 0.95654297, 2.5214844, 0.054748535, 3.9335938, 2.8710938, -1.3662109, 0.9082031, 0.6401367, -0.5029297, -2.1386719, 0.29711914, 0.053253174, 0.09814453, -0.2578125, -0.49682617, -1.0273438, -0.67285156, -0.73779297, -3.3417969, -0.9277344]}, "B07ZQBMV2Y": {"id": "B07ZQBMV2Y", "original": "Brand: Mont Alpi\nName: Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV\nDescription: Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...\nFeatures: All components are constucted of 304 stainless steel for durability and longevity\nLarge storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank\nHeight adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans\nFaux-granite counter tops for prep and storage space while looking stylish\nIncludes built-in sink and outdoor refrigerator for added functionality and entertainment value\n", "embedding": [-0.2939453, 0.18054199, 2.1191406, -0.56591797, 2.8300781, 1.7753906, -0.10076904, -1.3925781, -1.3115234, 1.8310547, -0.3034668, -0.50341797, -1.7539062, -0.39160156, 0.30078125, 0.9892578, -0.6801758, 0.087890625, 1.7021484, -0.10638428, 1.6533203, 1.9960938, 1.0126953, 0.46240234, 2.3730469, 1.6591797, 4.4765625, -2.3710938, 1.53125, -1.4628906, 2.1347656, 0.5654297, -1.4023438, 1.3427734, -2.9335938, -0.92822266, -0.6020508, 0.3486328, -1.9257812, 0.52197266, 1.4091797, -1.3564453, 0.36523438, 0.20446777, -3.9472656, -1.2519531, -0.41015625, 0.5683594, -1.6367188, -1.3066406, 1.2041016, 1.2089844, -0.8305664, 0.022155762, -1.7441406, 0.03050232, 1.2167969, -2.1367188, 1.8349609, 0.67871094, -0.34204102, 2.0449219, -1.8535156, -0.3269043, -1.9628906, -2.2636719, -1.0488281, -0.4645996, 0.77978516, -0.40454102, 0.8808594, 1.0400391, -1.6337891, 0.39697266, 0.39672852, -2.140625, -1.7089844, 1.6240234, 1.8623047, -0.45288086, -2.2050781, 1.7695312, 1.2089844, -0.6801758, 1.6953125, 1.2871094, -2.3027344, -0.01184082, 0.13842773, -0.20349121, -2.0683594, 0.7548828, -2.125, -3.703125, 1.2060547, -3.7792969, 0.22045898, 1.8671875, -1.3222656, 1.7832031, -0.20581055, 0.92041016, -0.7211914, -1.1601562, 0.5751953, -1.1953125, 2.3769531, -1.1337891, -3.0117188, -0.1116333, -2.9414062, -0.28295898, 1.0751953, -0.23583984, 2.9960938, 0.2919922, 0.84472656, 1.5703125, 2.2128906, 0.46728516, 1.4599609, 0.18310547, -0.3659668, -0.30078125, -0.953125, 0.3125, -1.3818359, 0.6191406, 4.3398438, -1.5185547, -0.4885254, -1.1884766, 1.5693359, -0.23168945, -2.3886719, -3.3671875, -1.0078125, -1.1064453, -3.9746094, -1.4414062, -1.4150391, 1.5810547, 2.3125, 1.0732422, -2.8691406, -1.0166016, -0.14147949, 0.115600586, 1.9072266, -1.6279297, 1.5185547, -3.1933594, 1.9111328, -0.77001953, 0.7260742, -2.1523438, -0.37475586, -1.3945312, 2.7832031, 0.84472656, 0.15893555, -2.7226562, -0.39770508, 0.7001953, -0.6298828, -2.6777344, -0.5678711, 3.0839844, 0.2355957, 1.5185547, -1.6367188, -2.3203125, 0.96728516, 0.6069336, 0.06323242, -0.89208984, -0.7705078, 2.4101562, 0.8652344, 0.4873047, -1.9960938, -1.6367188, 0.7504883, 1.1748047, 1.2099609, -0.9370117, -0.1640625, 0.053588867, -0.94628906, -1.5820312, 0.8598633, 0.21533203, -0.6616211, 0.5966797, -1.7041016, -1.9521484, -2.4648438, -0.28515625, 1.4443359, 0.07336426, 0.39331055, -0.32226562, -1.46875, 0.81689453, -1.4052734, -3.5800781, -2.265625, -0.8935547, 0.82910156, 3.2011719, 2.9277344, -0.6484375, 0.49291992, -2.1621094, 1.0244141, -0.5410156, 2.6210938, -0.8330078, 0.60009766, 1.3945312, -0.30932617, 1.3173828, 0.05593872, 4.265625, 1.796875, 2.9550781, 0.26660156, 1.6269531, -1.8613281, 1.2050781, 2.9257812, -0.88671875, 0.20031738, 0.36376953, 1.4492188, 2.8945312, 1.3925781, -2.1914062, -0.04272461, -1.0097656, -0.3071289, -2.5585938, 0.2548828, -0.3173828, -0.6870117, 2.3847656, -2.6621094, 1.2763672, 2.6523438, 1.1054688, -2.4257812, -0.49975586, 1.6835938, -0.83691406, 0.6279297, 1.0556641, -0.44555664, 0.6772461, -1.5625, -2.3085938, 0.60253906, -0.6894531, 0.09777832, 0.3449707, 0.053131104, -1.9248047, 1.6279297, 0.5961914, -3.7675781, -1.4453125, 1.109375, -1.3095703, 2.2617188, 0.2376709, 0.42651367, -0.28149414, -0.31689453, 0.6645508, 0.09576416, 0.62158203, 0.8959961, 0.5361328, 2.4277344, -2.375, -0.9277344, -0.039489746, -0.17346191, -0.81103516, 1.3828125, 1.5898438, 5.3515625, -1.5654297, -4.3945312, 1.9677734, -1.4150391, 0.76464844, 0.79296875, -1.6630859, 0.7060547, -0.9501953, 1.1708984, -1.0771484, -0.53466797, 1.7011719, -1.8525391, -1.1953125, 0.019729614, -1.0302734, 0.5917969, -0.48242188, -0.059051514, 0.5517578, -0.77734375, 1.0263672, 0.30371094, -2.0078125, 1.7441406, -2.5742188, 2.234375, 0.9921875, 0.8691406, 1.7636719, -2.0273438, -0.65478516, -0.28295898, -0.30688477, -0.8100586, 0.13305664, 0.9589844, -1.3935547, 0.52197266, -0.15197754, 1.9257812, -3.8339844, -1.6455078, -0.72509766, -3.0507812, -0.8178711, 0.46728516, -0.8930664, -0.5878906, 0.4716797, -2.9316406, -0.68359375, -1.6337891, -3.0117188, -0.9995117, -1.0751953, 1.8203125, 2.1425781, 0.49316406, -1.4951172, 0.86328125, -6.3320312, 0.6538086, -1.5292969, -0.50634766, 0.66845703, 0.3076172, 0.65722656, -3.2675781, -0.44995117, 0.18273926, -0.09338379, 0.1796875, -0.005317688, 0.26757812, -3.4472656, 0.9003906, -3.1425781, 2.1601562, -2.0800781, 1.9355469, -1.7578125, -1.3798828, -0.08270264, -1.6679688, 4.96875, 0.49243164, -0.38842773, -0.46142578, -0.07574463, 0.8979492, -0.67822266, -0.8833008, -1.1279297, 1.2978516, -1.8701172, -2.8125, -1.7939453, 1.0996094, -1.1679688, -1.4453125, -0.66552734, 0.96728516, -3.0097656, 1.0322266, -2.0839844, -2.3476562, 0.25219727, -0.8178711, -1.5722656, 0.64746094, -2.8105469, -0.06713867, -0.03894043, 0.19030762, -0.5214844, 3.015625, -0.77978516, 2.0214844, -0.035095215, 0.5810547, -1.4433594, -0.39746094, -3.046875, 1.2119141, 0.35083008, -2.5820312, 0.7182617, -0.5283203, -1.0566406, -3.3457031, -1.8330078, 1.7089844, 0.57128906, 1.0087891, -0.32421875, 2.2832031, 2.2089844, 1.1015625, 0.049987793, 0.6557617, -1.4951172, 3.2949219, -2.0546875, -1.9560547, 0.9536133, 3.6875, -0.9394531, -1.5898438, 1.9941406, 2.1523438, 2.8574219, 0.81152344, 1.7138672, 0.86083984, -0.7573242, 0.6225586, 0.28686523, 0.6875, -0.7939453, -2.3496094, 0.2626953, 0.63720703, -0.11779785, 0.89746094, 0.7089844, 1.1738281, 0.32006836, 0.7441406, -0.56689453, 1.0253906, -0.37597656, 0.86035156, -0.4567871, 2.9414062, -1.6992188, 0.89453125, -0.07373047, 1.5068359, -0.6816406, -2.5390625, 1.7890625, 1.9794922, 0.46801758, 0.23022461, -0.94384766, 0.88134766, 1.9824219, -0.5317383, 0.98583984, -1.1279297, -0.6411133, 0.68408203, 0.4597168, -1.7949219, -1.2900391, 2.0644531, 0.13183594, -1.8535156, -0.8779297, 2.0546875, -1.6650391, -1.9707031, -0.49609375, 0.31176758, 0.7763672, 1.7109375, -0.29541016, 0.25146484, 1.0693359, -2.2070312, 1.1914062, -0.28857422, 0.5258789, 1.7236328, -0.3017578, 1.2402344, 0.14477539, 0.34155273, 2.28125, 1.0068359, -3.0957031, -0.35717773, -2.6035156, 0.75, -1.0859375, 0.08795166, -0.71972656, 3.0058594, 1.7421875, 2.8183594, -1.9697266, 3.7832031, 0.1706543, -1.8359375, 1.8964844, -2.2421875, 0.25219727, -4.2265625, -3.4921875, 1.5498047, -1.3945312, -0.24829102, 1.1035156, 0.40478516, -0.32495117, 0.8256836, -0.5517578, -3.2265625, -1.5341797, 0.06616211, 0.88183594, 0.117492676, -2, 2.6503906, 0.30249023, -3.4453125, -1.1279297, -0.40722656, 0.6879883, 2.3066406, 0.69970703, -1.5908203, 2.2226562, -0.75, -0.005744934, -0.6225586, -0.3864746, 1.3867188, -1.8681641, -0.012374878, -1.2011719, 2.3691406, -0.44458008, -0.4074707, 0.5078125, 0.27026367, 0.20703125, -0.4951172, -1.9707031, 0.012954712, 3.7949219, -0.5263672, -1.0576172, -2.3710938, 1.4667969, 1.5791016, 0.42041016, -0.06518555, -0.17663574, -3.4746094, -0.8598633, 1.3398438, 0.36547852, 2.6386719, -0.6777344, -2.4863281, -1.6533203, 2.5878906, -2.4707031, -1.4169922, 0.27490234, -0.51953125, -0.23254395, 0.41357422, -1.4560547, 1.2519531, -0.8598633, -1.9990234, -1.8398438, 0.9663086, 2.8066406, 0.6269531, 1.5830078, -1.6347656, -0.6948242, 2.9824219, 0.11102295, 0.52783203, 1.1240234, -1.890625, 0.35302734, 1.2099609, 0.9682617, -1.4873047, -0.27075195, 1.1445312, -1.0644531, -0.43408203, -0.6455078, -0.84716797, -1.1503906, -0.70703125, 1.3164062, 0.3828125, 2.7480469, -1.2070312, 0.64404297, -0.4716797, 0.42822266, -0.31298828, 0.29101562, -2.0039062, 2.4492188, 1.0263672, 2.1425781, 0.65478516, -1.2519531, -0.41992188, -0.6513672, 2.7910156, -0.9824219, 0.44677734, 0.40039062, -0.1282959, 0.81396484, -1.7548828, 3.3125, 2.9960938, 0.8955078, 2.1445312, 0.7763672, -3.9199219, 1.8632812, -1.578125, -2.1035156, 0.10858154, -0.20056152, -0.28881836, -0.609375, 0.53222656, -2.5839844, 0.26489258, 3.0234375, -1.5058594, 0.016189575, 1.2666016, -0.9086914, 0.49804688, -3.3242188, -1.5615234, 0.53515625, 1.3076172, -2.3769531, -2.5878906, -1.3730469, -0.1352539, 0.8417969, 1.3662109, -1.4257812, -1.4482422, 3.6269531, 1.5859375, 1.3339844, -0.5834961, -1.1767578, -1.8154297, 0.101623535, 4.5507812, 0.5708008, 0.25952148, 1.0732422, 2.9277344, -1.1474609, -0.2479248, -2.4199219, 2.8417969, -2.3027344, -1.5791016, 2.1816406, -1.9482422, -0.20300293, -0.85791016, 1.5019531, -1.4960938, 2.90625, 2.4199219, 0.0793457, -0.071899414, 0.8408203, -1.96875, -5, -2.1601562, -0.42651367, 0.24719238, -0.032348633, 1.5830078, -1.3378906, 0.30273438, -0.6699219, 1.0292969, -0.9682617, -0.5317383, -0.98876953, -1.2724609, -0.3251953, -0.33276367, -0.56396484, -0.76416016, 1.0185547, -0.8178711, 0.051330566, -4.2617188, -0.4025879, 0.39111328, 0.109802246, -0.69140625, 1.6738281, -1.4238281, 0.93408203, -0.07556152, 1.0195312, -3.1484375, 2.171875, -2.9980469, 0.40771484, 1.7070312, 1.109375, 1.359375, 0.6694336, -1.2988281, 0.8823242, -1.6201172, 0.7861328, -0.052886963, -1.5927734, 0.44458008, 0.9291992, 1.1435547, -0.3305664, -0.08459473, 0.046875, 1.2353516, 0.7529297, -0.4152832, 0.05065918, -2.0566406, -2.6660156, -0.30810547, -2.6621094, -0.28320312, -1.8154297, 0.68115234, 0.96777344, 0.08343506, 0.17871094, 1.5195312, 0.38330078, -0.51708984, 1.8623047, -0.1965332, 3.1386719, 0.7138672, -2.21875, -1.2041016, -3.0957031, -0.02545166, 0.7314453, 1.8388672, 0.14831543, -0.28515625, -0.95947266, 0.4501953, 0.8027344, 1.8935547, 2.4511719, 0.7446289, -3.6953125, 1.4550781, 3.390625, -0.33081055, 2.03125, 1.9472656, 1.6660156, 0.04849243, 2.859375, -1.9736328, -2.4570312, 3.9960938, -1.5996094, 1.2509766, -0.61621094, -3.1035156, 0.34399414, 0.09716797, -0.46289062, -2.1230469, 0.91796875, -1.0126953, 2.7832031, 1.7363281, -0.80615234, 0.29492188, 1.3242188, 1.9726562, 2.5273438, 1.3730469, 2.03125, 0.22814941, -0.2467041, -0.65478516, 0.40625, 1.0849609, 0.44360352, 0.20581055, 2.2792969, 0.76708984, -1.5722656, 5.6679688, 1.6269531, 0.19677734, -0.84814453, 1.0253906, 1.3203125, 2.3164062, 4.359375, 0.46655273, 2.2519531, 1.8603516, 0.9863281, -0.08685303, 1.5380859, 3.7949219, 0.28222656, -0.8613281, 1.2753906, -0.10595703, -2.6621094, -0.69628906, 0.11798096, 1.0166016, -0.0039138794, 2.9726562, -0.80566406, -1.4580078, -1.9726562, -1.6630859, -1.1601562, 0.28295898, -1.4130859, 1.0097656, 3.03125, -0.027664185, 0.30786133, -0.38867188, -3.4179688, 1.1875, -3.4003906, 0.89990234, 0.7578125, -0.46362305, 0.041107178, 2.4101562, 2.9257812, 0.7421875, 0.92285156, 1.4804688, 1.7353516, 3.3574219, 0.37524414, -0.8076172, 2.3691406, -0.66503906, 1.4648438, -1.8945312, -0.98779297, 0.9042969, -0.72216797, -1.9921875, -3.7988281, 2.8964844, 1.0419922, 0.74560547, 1.0039062, -2.6367188, 0.96777344, -0.8183594, 1.7548828, -3.0507812, 2.5703125, -0.63671875, -2.5371094, -1.7431641, 1.0097656, 1.7666016, 0.5151367, 0.28393555, -1.8154297, 2.6914062, 0.30151367, -0.8364258, 2.3710938, 1.5341797, 0.65478516, -0.27441406, -1.5996094, 4.3203125, 3.5605469, 0.6870117, -2.3261719, 2.0449219, 1.4951172, -0.8618164, 0.23828125, -1.3173828, 0.4099121, 1.9462891, -0.19091797, -1.0263672, -1.8613281, -0.4658203, 0.4416504, 0.64697266, -0.45141602, -0.7446289, 2.0195312, 0.8300781, -1.171875, 1.0693359, -1.1054688, -0.23254395, 1.7919922, -1.078125, -1.5986328, -0.0385437, -0.13000488, 1.3300781, 1.3017578, -1.8388672, -0.7504883, -0.3010254, 1.6396484, -0.9091797, 0.60302734, -1.5761719, 0.7314453, -0.30541992, 0.13146973, 0.7680664, -2.3027344, 2.4316406, 0.8959961, 0.56152344, 3.8515625, -1.6025391, -1.4951172, -2.2910156, -1.0048828, -0.08135986, -1.1191406, 0.4729004, 1.7441406, 5.0390625, 2.2109375, 0.9189453, -1.5820312, -2.5058594, 1.4287109, -0.7885742, 1.7138672, -1.3164062, 0.009048462, -0.38256836, -0.34228516, 3.2929688, -0.6748047, -2.0878906, -0.6972656, -0.68896484, 1.4130859, -0.20507812, 1.7646484, 0.5751953, 0.30273438, 0.21289062, 2.0449219, 1.3662109, -0.8046875, 1.6816406, 3.5351562, 0.3466797, -3.3515625, 0.5864258, -1.4482422, 1.2109375, 0.71435547, -0.15100098, -0.203125, -0.7080078, 0.5546875, -2.4121094, -1.9169922]}, "B07VLJZVB2": {"id": "B07VLJZVB2", "original": "Brand: Blaze Grills\nName: BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32\" Combination Door/Drawer Package Deal\nDescription: BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32\" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.\nFeatures: Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375\" W x 21.25\" D x 8.50\" H\nBest of Backyard Series USA MADE 304 Stainless Steel 32\" Combination Door/Drawer Combo. Cutout: 30.125\"W x 19.125\"H x 21\"D\nPatented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks\nHeat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures\nFull-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots\n", "embedding": [-1.2949219, 1.3837891, 1.5009766, -1.6757812, -0.23132324, -0.8027344, 0.4267578, -0.6982422, 0.35546875, 1.7480469, 0.3791504, -0.91845703, 0.9375, -4.1367188, -1.1748047, 0.9033203, 1.3339844, 0.9238281, 1.2988281, -0.6645508, 1.1289062, 0.8330078, 0.93896484, -0.86572266, 1.3398438, 0.037078857, 3.8457031, -4.46875, 0.4885254, -0.9770508, 1.3681641, 0.5864258, -1.7236328, 1.0615234, -3.5820312, -1.4238281, -0.23535156, 1.3701172, -1.3300781, -1.5888672, -1.2578125, -0.9760742, 2.7363281, 2.2871094, -2.3828125, -0.7915039, -1.0234375, 0.43676758, -0.9536133, -2.0214844, 2.1875, 1.8730469, 1.3349609, 0.9506836, -1.6044922, 1.3369141, 0.41357422, -2.2324219, 1.7011719, 0.097595215, 1.4736328, 0.14294434, -2.3886719, 0.5234375, -2.5859375, -0.25634766, 0.86816406, -0.62939453, 0.22192383, 1.015625, 1.6308594, 0.16125488, -1.8691406, 0.30273438, 0.08557129, -1.0537109, -3.0214844, 1.4521484, 0.8232422, -1.4980469, -0.6923828, 5.2226562, 1.0791016, -2.453125, 0.31884766, 1.3183594, -1.234375, 0.55810547, 1.6748047, 0.32543945, -0.7290039, 1.4101562, 0.52685547, -3.3730469, 1.6796875, -2.1289062, 1.3417969, -0.42773438, 0.23986816, 0.26757812, -0.6796875, 0.7661133, -1.8427734, -0.09484863, -1.3769531, -0.62841797, 1.5166016, 2.0898438, -2.0253906, 0.20141602, -2.1445312, 0.081726074, 3.0429688, 0.6845703, 0.9111328, 0.43847656, 0.48217773, 1.4980469, 1.6230469, 2.9433594, 0.98046875, -1.4775391, -0.7416992, -1.4648438, 1.5253906, -0.18933105, 0.0002772808, 2.3710938, 4.0742188, -1.7197266, -0.46704102, -2.125, 2.8242188, -1.0234375, 0.006996155, -2.0371094, -1.6542969, -0.32250977, -3.2089844, 0.15539551, -1.1503906, 1.3583984, 1.4003906, -0.9526367, -3.546875, -1.0644531, 0.36938477, 1.4824219, -0.05505371, -2.3105469, -0.4921875, -0.89501953, -0.6430664, -1.484375, 1.6875, -1.5126953, -0.8857422, -2.1660156, 3.7246094, 0.4807129, -0.7104492, -1.7128906, -0.13720703, 3.5429688, -1.5507812, -2.3164062, -0.33764648, 1.3515625, 1.0878906, 2.2070312, -1.6171875, -1.5009766, 0.21972656, -0.73095703, 1.2529297, -1.4980469, -1.2509766, 1.4892578, -0.42456055, 0.87158203, -0.66503906, -0.72216797, -0.037841797, -0.2397461, -1.1806641, -2.3007812, 0.6142578, 0.5209961, 0.78759766, -1.7490234, -0.21008301, 1.5351562, -0.35717773, 0.4921875, 0.7495117, 0.6142578, -2.15625, 0.3244629, 1.5253906, 0.121520996, 0.13171387, -1.2626953, 0.6479492, 0.49169922, -1.7353516, -1.6416016, -1.3349609, -1.3359375, 0.7944336, 0.59375, 1.9208984, -0.25317383, 3.3515625, -1.4384766, 0.22595215, -2.1328125, 0.84814453, 1.3154297, 2.7539062, 1.8134766, -0.064697266, -2.0957031, -0.8066406, 4.9804688, 0.3557129, 0.5336914, 1.3242188, -0.9033203, -2.3164062, -1.3144531, 0.7392578, 0.8828125, 0.7392578, 0.6640625, -0.47753906, 2.7832031, 2.0644531, -0.8642578, -0.20483398, 0.8251953, 2.3125, -0.3017578, -1.1337891, -1.6914062, -0.2722168, -0.5, -1.7216797, 2.2148438, 0.7792969, 0.10510254, 0.18286133, -0.34228516, 2.7460938, 1.3857422, -0.86083984, -0.37768555, 0.16186523, 0.86572266, -1.5185547, -2.1933594, 2.5683594, -0.49487305, -0.7661133, -1.3388672, 0.44262695, -0.21606445, 2.1953125, 0.81152344, -2.046875, -1.4326172, 0.37060547, -0.5527344, 2.0820312, -0.15258789, 1.125, 2.4804688, -0.41503906, 1.9707031, 1.3505859, 1.8330078, 1.9072266, 0.73828125, 2.3183594, -2.96875, -0.7163086, -0.21813965, 0.21069336, -1.0087891, -1.5888672, 0.7446289, 4.2773438, 0.19555664, -2.3964844, 4.3867188, -2.4960938, 0.21691895, 1.421875, -1.1308594, 0.1661377, -0.42773438, 2.671875, 0.4309082, -0.15771484, 0.6928711, -1.1542969, -0.21264648, 0.7944336, -1.6230469, -0.6074219, 1.6943359, -0.25976562, 0.49951172, -2.4414062, -0.42895508, -0.33740234, -1.4648438, 3.4394531, -3.0703125, 2.9921875, 0.29760742, 0.8623047, 2.5976562, -0.10211182, -0.9790039, -1.0253906, 0.30444336, -0.72314453, 0.8647461, -1.21875, -1.8994141, -0.8491211, -1.0898438, 1.3095703, -1.4248047, -1.6386719, -2.140625, -2.6054688, -2.9023438, 0.19042969, -2.1328125, -0.05883789, 0.9404297, -2.1054688, 0.93603516, -1.4912109, -3.6738281, -1.2451172, -1.1904297, -1.3837891, 0.1932373, -0.67041016, 0.45581055, -0.5776367, -2.671875, 0.44750977, -1.3330078, 0.20739746, -0.20837402, -0.4880371, -0.12976074, -1.1435547, -1.0117188, -0.7895508, 0.76953125, 1.3564453, -1.4492188, 0.6298828, -3.8984375, -0.71875, -2.0273438, -0.22192383, -1.8027344, 0.86816406, -2.5839844, -2.953125, -1.6054688, -0.8066406, 1.3798828, -0.35327148, 0.88916016, -0.11218262, -0.13549805, 1.2324219, 1.0957031, -1.9501953, -0.2841797, -0.08392334, -1.5595703, -2.5800781, -3.1425781, 0.09991455, -0.26342773, -0.017745972, -2.0644531, 0.69677734, -1.5712891, 1.8330078, -2.9023438, -1.15625, -0.54296875, 0.56640625, -0.88916016, -0.49169922, -1.6474609, -1.6552734, -1.6630859, -1.4931641, -0.43286133, 1.9707031, -0.6977539, 0.5942383, 1.5478516, 0.08917236, -0.05581665, -1.5126953, -4.2460938, 2.1503906, 1.2324219, -4.6601562, 1.7070312, 0.28320312, -1.3066406, -2.8359375, -2.2109375, 3.2382812, 0.82958984, 2.2519531, -0.7519531, -0.88916016, 2.3320312, -0.36816406, 0.81103516, -0.37036133, -0.7089844, 2.5195312, -3.234375, -2.4238281, -1.1494141, 2.5175781, -2.3417969, -1.3261719, 3.53125, 0.64453125, 0.9145508, 2.1601562, 2.6289062, 1.6425781, -0.6542969, 1.0605469, 1.1230469, 0.58447266, 1.0498047, -1.8779297, 0.57910156, 0.1484375, 0.7949219, 3.2558594, 0.8676758, 2.0410156, 3.2460938, 0.96533203, -0.61279297, 0.8491211, 0.14440918, 2.3515625, 0.59765625, 3.2050781, 0.23010254, 0.60546875, -1.4648438, -0.45336914, 0.10949707, -1.2402344, -1.0556641, 2.0097656, 0.54785156, -0.09069824, 1.484375, 1.4960938, 0.75341797, -2.0625, 1.484375, -1.7089844, -1.0322266, 0.6567383, 1.4052734, -0.90625, -2.6953125, 0.92529297, -2.2714844, -1.90625, 0.29370117, 1.2304688, 0.46606445, -1.6660156, 1.6962891, 1.7451172, -0.8286133, 3.2519531, 1.2363281, 1.0654297, -0.081970215, -0.37475586, 2.4980469, -1.0419922, -2.1230469, 0.37353516, -2.0917969, 0.85058594, -0.30908203, 1.7382812, 1.2109375, 0.27001953, 0.30395508, 0.51660156, -1.8222656, -0.04083252, 0.13623047, -2.8339844, -3.0078125, 1.5566406, 0.58691406, 2.3339844, 0.25268555, 2.6269531, 0.3947754, -1.7324219, 2.0976562, -3.0351562, 0.10650635, -1.6611328, -4.8007812, 2.3886719, -0.29858398, -1.2783203, 1.1484375, -0.56152344, 0.085632324, 0.4038086, 0.8041992, -3.4160156, -0.5263672, 0.18762207, -0.77490234, -0.70410156, -1.6044922, 1.359375, 1.203125, -1.9814453, -1.7763672, -0.46264648, -0.8901367, 2.0800781, 2.078125, -2.8496094, 1.0253906, -1.1884766, 0.1739502, -0.5888672, -0.7919922, 1.125, -1.8427734, -1.0585938, -3.109375, 0.63183594, 1.8408203, 0.42456055, 2.0371094, -0.3642578, 0.9091797, -0.6723633, -0.10095215, 2.21875, 3.5078125, 0.89746094, -3.5585938, -1.9433594, 1.6943359, 0.031677246, -0.4296875, 0.056518555, -0.98095703, -2.2304688, 1.7460938, -0.47094727, 0.46826172, 1.1953125, 0.41088867, -3.6308594, -1.2402344, 0.8232422, -2.2597656, -1.7714844, 0.86328125, -1.1269531, -0.45703125, 0.87060547, -2.765625, 0.82177734, -1.859375, 1.0058594, -2.6503906, 2.0410156, 2.2929688, 2.3789062, 2.5429688, -0.5419922, -0.68066406, 1.7734375, -0.99902344, -2.078125, 1.6259766, -2.7558594, -0.10345459, 0.8051758, 1.2041016, -1.2197266, -1.1572266, -0.07244873, -2.703125, 0.40283203, -1.9501953, -0.7397461, -1.2470703, 1.0830078, 1.2304688, -1.2529297, 2.4042969, -2.6601562, -1.6318359, 1.6171875, 2.3300781, 0.7675781, 0.81689453, 0.11260986, -1.0927734, 1.3515625, 2.9492188, 1.8808594, -0.61865234, -0.1538086, -0.18835449, 1.2753906, 0.28442383, -0.1381836, -1.2373047, 0.27026367, -0.18493652, -1.7246094, 2.6289062, 2.03125, 0.30371094, 1.4794922, 0.86279297, -3.0625, 1.5400391, 0.8569336, -4.7109375, -1.5048828, 0.6230469, -2.7734375, 0.60302734, 0.96777344, -3.5234375, -0.6069336, 3.9921875, -1.1494141, 1.28125, 0.34326172, -1.9267578, 1.1650391, -1.0283203, -1.3916016, -0.9057617, -0.87353516, -0.49536133, 0.7470703, -0.34301758, -2.1679688, 1.3007812, 2.3339844, -1.0703125, -2.2109375, 1.6904297, -0.82958984, 1.1933594, -0.1550293, -1.3935547, -1.5898438, -0.70166016, 2.4707031, 0.59228516, 1.6816406, 2.1328125, 2.8007812, -3.8125, 0.58740234, -2.2539062, 2.6074219, -2.9472656, -0.13830566, 2.4394531, 0.16625977, -1.5097656, -4.046875, 0.58984375, 0.35473633, 1.6611328, 2.3359375, -0.69140625, -0.7495117, 1.6162109, -1.9462891, -5.984375, -2.0566406, 0.7470703, -0.16845703, -0.080078125, -0.6435547, -0.72998047, 1.3720703, 0.15808105, -1.8955078, -0.31835938, 0.8046875, -2.1679688, -0.6645508, -0.12023926, 0.3569336, -0.15979004, -1.4716797, 1.3251953, -0.77490234, 0.31323242, -3.8164062, -0.7207031, 2.7285156, -2.2773438, -0.07873535, 1.7460938, 0.09069824, 0.6020508, 2.1445312, -0.24157715, -1.3574219, 2.2519531, -1.5830078, 0.80322266, -0.015365601, -0.9980469, -1.1533203, -0.5102539, -0.27197266, 0.25708008, -0.3244629, -0.74365234, 1.3134766, 0.62158203, -1.0224609, 0.6479492, 0.9194336, -0.3803711, 1.2646484, 0.017669678, 0.87646484, 1.2421875, -0.6323242, -0.20544434, -2.0234375, -1.2646484, 0.10479736, -2.8476562, 0.6328125, -0.1730957, 0.8041992, 1.4140625, 1.3095703, 0.79052734, 1.4550781, 0.12866211, -0.87402344, -0.25048828, -0.58447266, 3.4199219, 1.7753906, -2.4199219, -1.3037109, -0.70654297, 1.1416016, 1.3408203, -0.9296875, -0.57910156, 0.3527832, -1.3828125, 0.57421875, 0.17675781, 1.2841797, 2.171875, 0.31030273, -1.1044922, 1.1757812, 2.921875, 0.31225586, 3.046875, -0.7207031, -0.11767578, 0.10839844, 3.7148438, -0.12976074, -2.0234375, 1.7050781, -0.9868164, 0.7836914, 0.06109619, -1.765625, -0.95654297, -2.8828125, -0.37451172, -0.49609375, -2.1191406, -2.5976562, 2.15625, 0.8959961, -0.71972656, -0.82910156, 3.3535156, 0.07006836, 2.9824219, 1.46875, 0.18908691, 0.26000977, 1.0214844, -0.57470703, -0.66845703, 1.3740234, -2.3339844, 0.76464844, -0.63427734, 0.17810059, -1.5019531, 2.28125, 2.1796875, 2.6523438, -0.84375, 1.8662109, 2.0566406, 1.9824219, 1.6601562, -0.3671875, 1.8310547, -0.14587402, -0.40063477, 1.0722656, 2.2832031, 3.5273438, 0.091552734, -1.5234375, 0.9116211, -1.4208984, -0.7421875, -0.97558594, -0.12561035, 2.4609375, -2.3359375, 1.9873047, -0.8100586, 0.23718262, -1.0478516, -0.4597168, 0.19299316, -0.25048828, -0.48461914, 3.3613281, 1.9443359, 0.25976562, 2.0820312, -0.16918945, -0.39453125, -0.25317383, -2.0976562, -0.31054688, 0.46875, -1.8515625, -0.91552734, 1.1660156, 2.1074219, 0.8544922, 0.67529297, 1.1191406, 1.9716797, 1.4443359, 0.52685547, -1.4287109, 0.30322266, -0.35839844, 2.59375, -1.3085938, -2.1816406, 0.8442383, 0.36914062, -3.6503906, -3.3417969, 2.9121094, 1.8427734, 1.2158203, 0.37963867, -2.5195312, 2.75, -0.6821289, 2.3203125, -1.0800781, 1.921875, -1.2783203, -0.5800781, -0.051849365, 0.5488281, 1.0595703, 1.7480469, 1.7285156, -0.9213867, 1.1230469, 1.0380859, 3.2070312, 1.0761719, 1.5009766, 1.375, -0.4453125, -0.5024414, 1.9267578, 0.4411621, -0.85546875, -0.4753418, 2.1445312, 1.0332031, 0.3269043, 1.6464844, -0.7368164, 0.2220459, -1.8554688, 0.07287598, -1.0761719, -1.8701172, -2.0429688, 0.15612793, 0.32836914, -1.1318359, -1.7529297, -0.5107422, 0.58251953, 0.12390137, -0.5058594, 1.9658203, -0.7338867, 2.765625, 1.5869141, 0.45214844, 0.4699707, 0.03274536, 0.29663086, 0.71972656, -2.3515625, 1.3144531, 1.5400391, 1.296875, -1.1962891, 0.68896484, -1.0400391, 0.6694336, -0.79052734, 0.41845703, -1.1972656, 0.5727539, 2.1347656, 0.050323486, 0.05834961, 2.625, 1.4902344, 0.5527344, -2.3535156, -0.096191406, -1.6337891, 0.8305664, -2.8691406, 0.9194336, 3.25, 2.4492188, -0.15881348, -1.4013672, -2.3769531, 0.028137207, 0.55126953, 0.84277344, -0.14221191, -0.6791992, -1.0732422, -1.6708984, 1.9384766, 0.30322266, -0.22851562, 1.1474609, -0.22229004, 1.5205078, 2.2285156, 3.0644531, -0.53222656, -0.1159668, 0.31347656, 1.7802734, 1.6064453, 1.1171875, 1.1484375, 2.1015625, 0.8774414, -3.5488281, 0.5258789, -1.6171875, 1.8613281, 0.6347656, 1.6464844, 1.0927734, 0.023162842, 0.9291992, -1.2988281, -1.0869141]}, "B01I32H7NY": {"id": "B01I32H7NY", "original": "Brand: Stanbroil\nName: Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch\nDescription: This product is a 18\" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
          Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
          Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
          Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.\nFeatures: Fire Pit Burner Ring Diameter 18-inch\nRing Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max\nStylish Design: New cross-bar design for better gas distribution and great look for your fire pit\nApplicability: Propane (LP)\nPackage Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual\n", "embedding": [-0.75341797, 0.27368164, -1.6992188, 0.99560547, -0.5595703, -0.024124146, 2.4003906, -1.8974609, -0.32714844, 0.84228516, -1.359375, -0.82177734, 1.0078125, -3.6367188, -0.3161621, 0.5541992, -2.28125, -0.36816406, 1.6240234, 1.3662109, 1.5742188, 1.0400391, 2.4550781, 0.0030822754, 0.90283203, -0.30859375, 3.4355469, -2.3203125, -0.95458984, -1.0507812, 0.8671875, 0.33496094, 1.2802734, 0.48413086, -4.0859375, -0.99560547, -0.49902344, -0.08001709, -2.8066406, -0.2244873, -2.4726562, -0.26245117, 1.3583984, 1.0117188, -2.7460938, 0.89404297, 0.7128906, -1.6435547, -1.5009766, 0.9238281, 1.7314453, 1.7246094, -0.6088867, 0.6513672, -0.94384766, 1.5087891, -0.51953125, -2.4609375, 2.2050781, -0.91552734, 2.0800781, 0.7167969, -2.3398438, 0.72802734, -0.33935547, 2.4082031, 0.0892334, 0.609375, 0.04626465, -0.2286377, 1.9521484, -0.3725586, 1.2871094, 0.19152832, 2.8808594, -1.0722656, -2.7480469, 1.6367188, 1.9404297, -2.4199219, -0.42797852, 2.6757812, 0.80322266, -0.24206543, -0.06585693, -1.0947266, -1.2607422, 0.118774414, 2.3730469, 0.92529297, 0.08508301, 2.6152344, -1.4521484, -3.34375, 1.6318359, -0.7089844, 1.6259766, -0.3059082, -0.33374023, 0.024658203, 0.41967773, 1.0898438, -0.69970703, 0.82373047, -1.9306641, 0.012931824, 1.765625, 1.2724609, -0.4248047, 0.9682617, -1.7021484, 1.7558594, 3.8007812, -0.17199707, 0.19958496, 0.8520508, -0.65625, 1.7353516, 3.0644531, -1.7216797, 4.4257812, 1.1025391, 0.9169922, -1.4345703, -0.08648682, 0.35107422, -2.4394531, -0.07623291, 2.3730469, -1.5126953, 0.8964844, -1.7617188, 1.6748047, -0.25439453, -1.8691406, -0.42749023, -0.484375, -0.16796875, -1.9570312, -0.6074219, -3.4609375, 2.2070312, 0.14794922, -2.7929688, -3.9355469, 0.7026367, -0.9746094, 2.9882812, 0.0071792603, -2.6601562, 1.5810547, -0.8129883, 0.6166992, -1.4296875, 1.7910156, 0.40649414, -0.55810547, -1.7900391, 3.0195312, -0.5292969, 0.23474121, -1.2304688, -0.005592346, 2.9042969, -2.6074219, -1.3056641, 0.8432617, 1.0791016, -1.6621094, 1.7851562, 2.1425781, -1.3867188, -1.8125, -0.5761719, 0.7705078, -1.7851562, -1.5429688, 2.6328125, 1.4208984, 1.4619141, -2.3261719, -2.5488281, 3.0117188, 0.66015625, 0.057159424, -0.2939453, 0.5839844, -1.0068359, 0.8364258, 0.53759766, -1.921875, -0.06414795, -0.35131836, -1.2773438, -0.98583984, -2.3359375, -1.3339844, -2.1914062, 1.2675781, 2.2011719, -2.8105469, 0.35473633, 0.8339844, 0.34545898, -2.1152344, 0.26757812, 1.1025391, 1.0361328, 3.4355469, 1.2275391, 0.031280518, -1.1416016, 2.4375, 0.3317871, 1.3466797, -2.2324219, 1.6435547, 2.0878906, 1.1835938, 2.9980469, 1.9150391, -0.4194336, 1.1289062, 1.4443359, 1.0351562, 1.7148438, 1.0625, -0.17932129, -2.1933594, 0.5957031, 3.3496094, 0.46972656, -1.1640625, 1.9873047, -1.0322266, 2.3300781, -0.71484375, -1.71875, 1.8056641, -2.2578125, -0.90771484, -2.8496094, -0.09844971, -0.81396484, -0.68359375, 0.50634766, -0.37597656, 0.13684082, 1.1806641, -0.9770508, 0.18359375, 0.44628906, 3.0136719, 0.93603516, 0.52783203, -2.0957031, -0.31030273, 0.56591797, -0.36938477, -2.2988281, 1.7978516, 0.9375, -1.265625, 0.62060547, 0.8989258, -1.6347656, 1.2929688, -0.53759766, -2.0527344, -0.033447266, -2.0332031, 0.53027344, 1.0761719, 0.46899414, 1.8789062, 0.49243164, -0.91845703, 3.5546875, 1.1142578, 0.9716797, 0.09490967, 0.3359375, 2.7695312, -2.1582031, 0.69091797, 2.7265625, 2.421875, -0.9067383, 0.27734375, 0.88134766, 4.8125, -1.2509766, -2.2539062, 1.8320312, -0.9316406, 0.86572266, -0.92333984, 1.7402344, 0.006385803, -1.4775391, -0.0029830933, 1.7939453, 0.49926758, 2.0800781, -0.6040039, -0.61376953, 2.2851562, -3.3886719, 1.4677734, -1.5683594, -0.26611328, -0.4638672, -1.5322266, 1.0771484, -1.1728516, -2.6503906, 2.6347656, -2.8945312, 1.9121094, 0.78759766, 0.70410156, 2.0488281, 0.33154297, -1.3603516, -0.039611816, 1.7089844, -2.6816406, 2.2480469, 0.625, 0.6176758, -2.2246094, -0.7783203, 0.9667969, -0.9770508, -1.4228516, -1.8740234, -1.1269531, -1.9443359, 0.17468262, -3.0566406, -0.24401855, 1.9746094, -1.8525391, 0.48266602, -1.3867188, -2.0605469, -1.1904297, -1.1298828, -2.4003906, -1.5126953, 1.0439453, 3.15625, -2.2207031, -1.5029297, -0.47973633, -0.33691406, 1.5039062, -0.5058594, -0.6196289, -1.3105469, -0.84228516, 1.1679688, -0.7597656, -0.99658203, 1.3134766, -3.2890625, 1.3144531, -2.6308594, 2.0390625, -0.29833984, 0.3076172, -0.6274414, 1.1435547, -1.21875, -1.5214844, -0.011054993, -0.5883789, 5.7929688, -1.3476562, 2.0625, -1.5009766, -1.2695312, -1.4746094, -0.5751953, -2.15625, 1.1074219, 1.0039062, -2.2617188, -3.4804688, -2.3730469, 0.5732422, -1.2412109, -1.0527344, -1.7197266, 0.80615234, -1.3164062, 0.22998047, 0.027008057, 0.38916016, -0.049194336, -0.26611328, -0.3552246, -1.0205078, -2.0175781, -0.22424316, 0.029205322, -1.53125, -0.43530273, -0.17199707, -1.4023438, 0.1739502, 1.1787109, -0.30517578, 1.1298828, 1.2480469, -2.8535156, 1.9414062, 2.5058594, -1.0664062, 1.7958984, -3.4511719, 0.38256836, -2.1757812, 0.072509766, 4.3398438, 1.4804688, 0.20275879, -0.72314453, -0.9355469, 1.4931641, 0.08099365, -1.8095703, -0.47265625, 0.18273926, 4.4648438, -3.25, -1.3583984, 0.5493164, 2.1328125, -4.4921875, 0.75634766, 2.1796875, 0.77783203, 0.17211914, 1.140625, 0.38208008, -0.9145508, -1.3740234, -0.33251953, 1.3886719, 1.8134766, 0.36499023, -1.8027344, 1.6035156, 0.91064453, -0.082092285, 2.578125, -0.4482422, 1.5927734, 3.7324219, 1.0058594, -1.7275391, -0.34643555, -0.25, -0.25024414, 0.7421875, 1.1835938, -0.69970703, 1.25, -1.2626953, -0.16516113, 2.7792969, -2.5273438, -0.9433594, 1.4365234, -0.3305664, -2.1210938, 0.6357422, 1.4130859, -0.121154785, -2.8574219, 0.24365234, -0.2680664, -0.27563477, 2.0703125, 0.55566406, 1.6787109, -2.5703125, 0.6694336, -2.0722656, -1.1123047, 0.22302246, 1.2197266, -0.28100586, -2.6796875, -0.049987793, -1.0634766, -1.1357422, 4.2773438, 0.3544922, -1.8476562, -0.33813477, -2.6699219, 1.1816406, 0.79345703, -1.1660156, 0.9995117, 0.66064453, -1.6152344, -0.71533203, -0.0925293, 1.1884766, -1.3681641, -1.5585938, 0.7363281, -2.8183594, -1.3740234, -0.22058105, -1.0898438, -3.2695312, 3.4296875, -0.20239258, -0.17773438, -1.3955078, 3.8183594, 0.88720703, -0.42797852, 3.2929688, -0.921875, 0.1060791, -2.5585938, -4.0664062, 0.7480469, -2.7070312, 1.9785156, 0.78759766, 2.3886719, -0.52490234, 1.5341797, -0.5996094, -2.6464844, -1.4619141, -0.8808594, 1.3007812, -2.9765625, -3.6230469, 0.4765625, 0.8486328, 0.06762695, -0.3034668, 0.3371582, 0.9291992, 1.4746094, 1.2900391, -1.4873047, 0.070739746, 0.6308594, -1.3476562, -0.43359375, -1.2382812, -0.12780762, 0.8354492, -0.671875, -1.71875, 1.1708984, 3.5625, -0.10272217, 2.5761719, 1.8896484, 2.6074219, 0.33276367, 0.42041016, -0.6166992, 3.3300781, 0.08880615, -1.5878906, 0.6401367, 0.78759766, 1.6865234, -1.1494141, 0.12683105, -0.49902344, -0.9765625, 3.2695312, -2.0429688, 0.49682617, 0.43188477, 0.018432617, -1.578125, 0.7392578, -0.28295898, -1.5810547, 0.71875, 0.828125, -0.6323242, -2.4394531, 0.2541504, -3.4296875, 1.4228516, 0.5410156, -0.40014648, -3.6582031, 2.7480469, 2.5917969, 0.56591797, 4.78125, -1.5625, -0.46850586, -1.3505859, -0.34448242, -0.19067383, -0.4567871, -0.036834717, -0.0619812, 2.8007812, -0.35913086, -0.4897461, 0.10644531, 2.5175781, -0.5541992, -0.81396484, -0.77685547, 0.9316406, -1.4570312, 0.765625, -0.2052002, -0.74365234, 0.8432617, 0.53125, -0.4794922, 0.8354492, 0.6948242, -1.8085938, -0.004634857, -0.20495605, 0.7246094, 1.2744141, 0.98095703, 1.6416016, 0.7763672, 4, 0.82177734, 1.5244141, 0.38256836, 0.6621094, -0.63623047, 0.048797607, -3.1367188, -0.56689453, 0.42211914, 2.6582031, -0.5917969, 2.8457031, 0.4404297, -2.5917969, 2.0527344, -0.027786255, -4.6875, -1.3359375, -0.43847656, -3.2070312, 1.7226562, 0.9121094, -1.2626953, -0.8989258, 1.6806641, -0.5097656, 2.8925781, -0.68066406, -1.7275391, -0.578125, -0.4399414, -0.9995117, -2.2050781, -0.019546509, 1.0703125, -0.39379883, 1.0419922, -0.68408203, 1.9902344, -0.17346191, 0.059173584, -1.6865234, -0.68847656, -1.1777344, -1.5, -1.8378906, -0.6538086, -0.26782227, 1.4257812, 0.14880371, -0.42407227, 1.7119141, -0.25683594, 1.8320312, -1.796875, -2.2832031, -0.5957031, 2.5410156, -0.11657715, 0.0044822693, 1.9521484, -0.3544922, 0.72314453, -0.36572266, -0.13879395, -1.4873047, 1.8662109, -0.62060547, 0.42333984, -0.47192383, 0.7294922, -1.9160156, -5.046875, -2.1269531, 0.5209961, -0.09240723, 1.1074219, -1.1914062, 1.1152344, -0.022644043, -1.1337891, -0.7597656, 0.07318115, 1.3105469, -0.07885742, 0.6958008, -1.8779297, 0.44848633, 1.5410156, -0.89697266, -0.4025879, -0.5019531, -0.69873047, -2.2734375, -0.5097656, 2.6113281, -2.6855469, 1.0117188, 1.59375, -0.03805542, 0.011497498, 3.84375, 0.58447266, -1.1113281, 0.15563965, -3.6074219, -0.61279297, 0.35107422, -1.9912109, -1.6884766, 1.4033203, -1.4697266, 1.3398438, 0.8339844, -2.7148438, -2.2363281, 1.5898438, 0.2685547, 0.09320068, -0.6230469, -1.6630859, 1.4570312, 1.6992188, 0.1550293, 1.1806641, -2.1542969, -0.8486328, -2.1816406, -0.6567383, 0.7036133, -0.97998047, 0.4501953, 0.00066041946, 0.16394043, 1.2910156, -1.0322266, 0.007881165, 1.7353516, -1.09375, -0.2944336, 2.3164062, -0.2166748, 3.8632812, -0.19763184, -2.4277344, -2.0117188, -1.9228516, 1.2880859, 0.8208008, -1.9443359, 0.06390381, -0.5488281, 0.48510742, 0.24987793, 1.0927734, 1.3945312, 1.2734375, 1.8115234, -2.0976562, 0.7841797, 1.0966797, 0.021911621, 1.9287109, 0.73095703, 0.24133301, -1.4228516, 1.1914062, 2.1171875, -2.9921875, 0.48535156, -1.7285156, -0.35961914, 0.060180664, -1.3857422, -2.1230469, -2.7167969, -1.4589844, -0.23168945, -2.296875, -2.5820312, 0.7783203, 1.6152344, 0.7729492, 0.8779297, 1.8291016, -1.1669922, 2.28125, 1.1210938, 0.79541016, -1.6445312, -2.4453125, -0.62841797, 0.77685547, 2.7050781, -3.1621094, -1.0634766, -0.1616211, -0.38989258, -0.4477539, 0.6635742, 0.7104492, 1.8691406, -0.8886719, 1.9697266, 1.8320312, 2.4746094, 3.5742188, -0.36157227, 0.79345703, 1.4589844, 0.14672852, -0.7246094, -0.25317383, 0.7910156, -0.5239258, -0.7919922, -0.32250977, -1.0195312, -3.1425781, -0.7211914, -0.41577148, -0.088134766, -3.0019531, 1.9599609, -0.9189453, -1.1298828, -0.81103516, 1.2822266, -0.47631836, -0.7939453, -2.3417969, 0.39770508, 2.4765625, 0.5161133, -0.26635742, 0.5449219, 0.9291992, -0.4609375, -3.5449219, 1.1894531, 0.19494629, -3.8886719, 0.13684082, 3.1738281, 0.3959961, 1.7822266, 1.5195312, 2.40625, 0.10333252, 0.55126953, -0.08972168, 1.1474609, 0.3088379, 1.7255859, 2.8457031, -0.32592773, -1.4755859, -0.43066406, 0.09277344, -3.9003906, -4.0898438, 3.6757812, -0.23632812, 1.109375, 0.80322266, -0.39379883, 1.2910156, -0.6225586, 0.7089844, -2.078125, -1.1210938, 1.1806641, -1.0537109, -0.42822266, 1.6435547, 0.18017578, 1.9931641, 1.1816406, -1.3544922, 0.61621094, 2.0800781, 0.5859375, 2.8300781, -0.28515625, -0.5761719, 1.2978516, -1.8447266, 4.6523438, 2.0722656, 0.99560547, -0.84033203, 2.6367188, 0.99072266, 1.5400391, 1.328125, -0.8642578, 1.0742188, -1.3320312, -0.4428711, 0.4477539, -0.9213867, -2.4824219, -0.88427734, -0.55126953, 0.68310547, -1.0478516, 1.8056641, 2.1289062, -0.23583984, 0.6425781, 2.2011719, -2.2167969, 0.23449707, 0.6503906, 0.03665161, -2.2363281, 0.5576172, 2.4980469, 0.61083984, -2.5546875, -0.06762695, 3.0742188, -0.15881348, -1.6904297, -0.6542969, -0.87353516, 0.2775879, 0.3095703, 1.8242188, -0.5683594, -0.84716797, 2.6035156, -0.016983032, -2.5800781, 1.6279297, -0.015327454, 0.26220703, -0.10491943, -2.0410156, -1.4521484, -0.13549805, -1.4726562, 0.83251953, 3.4667969, -0.6171875, 0.33374023, 1.6533203, -3.6113281, -1.6132812, 0.13134766, 1.8349609, 0.38842773, -1.3769531, 0.17822266, -1.7128906, 3.8515625, -2.7109375, 1.2890625, 1.2099609, -0.453125, 1.0322266, -0.4423828, 2.9667969, 0.98876953, 2.5390625, -0.09613037, 4.0429688, 2.8417969, -1.4316406, 0.92333984, 0.7324219, -0.11907959, -2.2167969, 0.11016846, -0.16577148, -0.02520752, -0.45458984, -0.5620117, -1.0820312, -0.625, -0.7519531, -3.2304688, -0.9892578]}, "B07MHT9TQX": {"id": "B07MHT9TQX", "original": "Brand: Napoleon\nName: Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel\nDescription: \nFeatures: 66,000 BTU's\n4 Stainless Steel Main Burners\n760 in Total Cooking Area\nNIGHT LIGHT Control Knobs with SafetyGlow\n7.5 mm Stainless Steel Iconic WAVE Cooking Grids\n", "embedding": [-1.8632812, -0.68603516, 2.984375, 1.2617188, -0.24279785, 0.4963379, -1.0693359, -0.7368164, 0.38232422, 1.0751953, 2.2167969, 0.32836914, -1.5351562, -1.1318359, 0.7919922, 0.6582031, 1.9394531, 1.2607422, 0.19396973, -0.19140625, 0.20654297, 0.15405273, 1.8828125, -0.8149414, -1.5566406, 1.6855469, 4.8007812, -3.3496094, -0.4494629, -1.8193359, 1.6767578, 0.59375, 0.4338379, 0.19641113, -2.828125, -1.1162109, -1.5351562, 0.49267578, -4.484375, -0.09710693, 0.082214355, -1.0693359, 1.8457031, -0.7294922, -1.1220703, -1.328125, -1.1220703, -0.9189453, -2.8417969, -1.9277344, 0.38378906, 0.9511719, -1.5537109, 1.1630859, -0.49267578, 1.8222656, 1.8095703, -0.1159668, -1.0683594, -0.012748718, 0.96533203, 0.7783203, -1.7763672, -0.1965332, -2.2285156, 1.1640625, -1.0400391, 0.8564453, 1.2148438, 0.8886719, 1.6630859, 0.42700195, -0.23596191, -1.0732422, -1.0712891, -2.5175781, -2.828125, 0.3474121, 1.3037109, -0.13098145, -1.0595703, 1.4140625, 0.83496094, -2.140625, -1.0087891, 0.7817383, -1.9853516, -1.3203125, 1.0917969, 0.8178711, -0.017288208, 1.8222656, -1.5380859, -3.5859375, 2.7636719, -0.64697266, 0.2121582, 1.0732422, 1.8330078, 1.7392578, 0.68603516, -0.10058594, -1.0048828, -1.5146484, -1.40625, -1.3720703, 2.2089844, 0.18640137, -3.8808594, -0.71728516, -1.5878906, -1.3193359, 2.9375, 0.69628906, 1.8896484, 2.5351562, 0.74609375, 2.7871094, 0.32543945, 1.9609375, 1.8115234, -1.6962891, 0.22436523, 0.25170898, 0.072509766, 1.3935547, -2.4941406, 1.7412109, 4.6914062, -0.024719238, 1.0429688, -1.4023438, 4.5429688, -0.34277344, -1.5947266, -2.0058594, -2.8847656, -0.97314453, -2.7128906, 0.28100586, 0.24804688, 1.2783203, 0.5683594, 0.43823242, -3.3164062, -0.34448242, 0.48779297, -0.70654297, -0.51416016, -0.6411133, -0.10882568, -2.8476562, 0.12176514, -1.0097656, 0.53125, -1.0185547, -0.7885742, -1.03125, 4.28125, 2.2148438, 1.4990234, -1.7539062, -2.6074219, 0.9086914, -0.19372559, -2.9003906, -0.8120117, 1.0800781, 1.7412109, 2.265625, -1.0898438, -0.9433594, -1.1220703, -0.6894531, -0.4194336, -0.15991211, -0.45532227, 2.9140625, 0.43481445, -1.875, -1.8154297, -1.1699219, -0.41015625, -0.24230957, -0.31762695, -0.9267578, 0.03677368, -0.22631836, 1.2480469, -1.8193359, 1.4775391, -0.38354492, 0.3112793, 1.1904297, -1.0625, -2.1835938, -0.19787598, -0.96240234, 1.4580078, -0.5390625, -1.0029297, -1.2509766, 0.076416016, -0.8671875, -2.3242188, -2.2890625, -2.1289062, 0.39575195, -0.32641602, 1.8398438, 3.4785156, -1.9814453, 2.7148438, -0.9116211, 0.34448242, -2.0820312, 1.4990234, 0.92871094, 2.3789062, 3.015625, -0.7705078, 0.3684082, 0.017654419, 2.6503906, 0.06008911, 1.9550781, 0.9638672, 1.5839844, -2.328125, -1.2851562, 3.0976562, 1.90625, -0.4428711, 0.057556152, 0.0024700165, 1.8876953, 0.6352539, -2.7890625, -1.1669922, -0.45092773, -0.8334961, -1.7041016, -0.80859375, -0.5810547, -0.39697266, 1.5820312, -2.1113281, -1.0957031, 0.6113281, 2.2890625, -0.06768799, 0.28808594, 0.91796875, -0.31274414, -1.4570312, 0.1875, -0.07635498, 1.5751953, -1.5292969, -2.453125, 1.6523438, -0.20727539, -1.109375, -1, 0.14013672, -1.0673828, 3.9980469, 0.2310791, -3.015625, -0.47705078, 0.14575195, -0.35229492, 3.4238281, 0.12213135, 0.5498047, 1.2861328, -3.1582031, 3.953125, -0.61328125, 2.046875, -0.24987793, 0.54833984, 2.5703125, -3.0019531, -0.1875, 1.2382812, 1.0244141, -1.0947266, -2.6328125, 2.546875, 5.3710938, -0.93603516, -2.7148438, 2.2871094, -1.375, -0.3803711, 2.0195312, -1.3671875, -0.33642578, -2.5820312, 2.5253906, 1.3447266, 1.2871094, 0.3959961, 1.2490234, -1.6806641, -0.98046875, -1.9160156, -0.18664551, -1.9238281, -0.7138672, -0.109069824, -2.3105469, 2.5136719, 0.9165039, -0.5751953, 1.1992188, -3.0234375, 1.7841797, 0.4165039, 1.5830078, 2.6191406, 0.53466797, -0.21728516, 0.5253906, -0.5883789, -0.53271484, 1.6523438, -0.52783203, -0.9926758, -0.28198242, -0.99560547, 0.7631836, -2.3496094, -1.7880859, 0.3269043, -3.0664062, -1.6318359, -0.16796875, -3.2597656, -1.8095703, 1.3095703, -3.5976562, 2.3007812, -0.39575195, -4.6328125, -1.7929688, -0.6743164, -1.3076172, 0.74609375, 1.6523438, -0.2866211, 0.14172363, -3.8925781, 0.9658203, -0.19226074, -2.8964844, 0.84814453, -0.46704102, 0.17041016, -0.97216797, -0.81884766, -0.5830078, 0.5649414, 1.1962891, -2.0058594, 1.6220703, -3.0097656, -1.9130859, -3.8242188, 0.10772705, -1.2431641, -0.062927246, -2.9628906, -1.2529297, -1.0537109, -0.9711914, 2.2539062, 0.43554688, 0.33007812, 0.0692749, -1.1494141, 2.3925781, -1.9326172, -1.4589844, -0.052642822, 0.64990234, -2.3515625, -2.4277344, -2.546875, -0.041046143, -0.71972656, -0.26635742, -1.9355469, 0.65771484, -1.8935547, 2.9746094, -0.65185547, -0.48461914, 0.3930664, 0.34936523, -1.0371094, -0.59277344, -2.2617188, -1.1171875, 0.29907227, 0.11859131, -0.08758545, 0.38989258, 1.3349609, 0.18896484, 1.6289062, -0.8564453, 0.62402344, -1.0839844, -4, 1.9443359, 0.9399414, -2.15625, 1.4921875, -1.6630859, -1.4726562, -1.3056641, -1.4726562, 1.7578125, 2.2050781, 1.4267578, 0.96435547, 0.4091797, -0.92089844, 1.1123047, -0.5214844, -0.55615234, 0.40185547, 2.3476562, -1.4960938, -1.59375, -0.4375, 2.4003906, -1.3798828, -1.1855469, 2.6757812, 1.3642578, 0.6040039, 1.1806641, -0.55908203, 0.65185547, -1.3574219, 1.1640625, 1.7412109, 0.6142578, -1.0078125, -0.85253906, 1.7021484, 0.28857422, 1.7773438, 3.6035156, 0.79541016, 1.8447266, -0.31933594, 1.0537109, -2.0214844, 1.0947266, 0.54589844, 2.7148438, 0.55126953, 2.5546875, 0.10510254, 1.7314453, -0.89208984, 1.9384766, 1.3632812, -2.5761719, 0.34814453, 0.8828125, 0.23815918, 0.25463867, 0.2878418, 1.4287109, -0.11584473, 1.7109375, 2.4902344, -0.9428711, -0.40039062, 0.8300781, 1.4580078, -1.7685547, 0.48950195, 1.1025391, -1.3837891, -1.4814453, 0.0035953522, 2.296875, 1.0712891, -2.3925781, 0.36938477, -0.2775879, -0.3371582, 0.5961914, -1.6630859, -0.15222168, 2.2285156, -0.7133789, 0.9370117, 0.47705078, -2.6972656, 1.0107422, -0.26464844, -0.52978516, 0.48510742, 0.91259766, 2.0507812, 1.40625, -1.5771484, 0.57910156, -3.6113281, 0.72558594, -0.74658203, -2.7480469, -2.1445312, 2.5742188, 0.86865234, 1.9511719, -1.4628906, 2.2949219, 0.22546387, -0.14111328, 1.4785156, -2.9238281, 0.5283203, -2.7285156, -2.7929688, 1.9179688, -1.0322266, -0.6542969, -0.45751953, 0.14941406, -1.0673828, 1.1699219, 0.109680176, -3.6523438, -0.9760742, -1.1621094, 1.3486328, -0.55029297, -1.2480469, 0.8652344, 0.3569336, -2.9140625, -1.5410156, -0.96191406, -0.42529297, 1.1015625, 1.21875, -1.7841797, 1.5390625, -2.3125, 2.2246094, 2.0136719, 0.2956543, 0.6875, -0.53466797, -0.671875, -2.4003906, 2.0742188, 0.6928711, 0.3137207, 0.27197266, -0.6376953, -0.0038757324, -1.2373047, 0.21179199, 1.8876953, 3.6269531, 0.23217773, -2.6289062, -1.1533203, 0.69384766, 0.35595703, -0.89208984, -0.48291016, -2.6699219, -1.2001953, 0.6821289, 2.3320312, 0.65625, 0.6225586, 0.17419434, -3.3164062, -0.09454346, 2.71875, -2.734375, 0.7836914, 0.640625, -0.2824707, 0.84716797, 1.0107422, -1.7998047, -0.30810547, -2.1074219, -1.2275391, -2.5644531, 3.6601562, 3.171875, 2.4296875, 0.5214844, 0.5136719, -2.9824219, -0.8925781, 1.3427734, 0.5986328, 1.9873047, -0.5048828, -0.75146484, 0.8955078, 2.21875, -1.0986328, -1.65625, 3.2480469, -1.7792969, 0.35205078, -1.6279297, 1.0097656, -3.8652344, -1.6240234, 0.69189453, -1.8027344, 1.890625, -0.76708984, -0.096069336, -0.052947998, 1.5351562, 0.71972656, -0.033111572, 0.026519775, 0.48706055, 2.7753906, 2.4140625, -0.5966797, -1.1601562, -0.5048828, -0.60839844, 2.6992188, -1.6464844, 0.45996094, -1.2832031, 0.10229492, -0.89404297, -2.5097656, 2.0332031, 1.4433594, -0.18151855, 4.6992188, 2.5449219, -2.5058594, 0.5996094, 0.7285156, -2.7363281, 0.80126953, 1.2753906, 0.12658691, 0.48461914, 2.1914062, -4.03125, 0.06756592, 3.9394531, -0.69921875, 0.13293457, -0.73291016, -1.2460938, -0.83740234, -3.3476562, -1.2353516, -0.578125, 2.3652344, -1.3417969, 0.068359375, 1.03125, -0.25878906, -0.57421875, 2.5839844, -0.2685547, -1.3271484, 3.1113281, 0.5053711, 0.75341797, -0.54833984, -0.40185547, -0.47924805, 1.7646484, 3.8710938, 0.5913086, 1.9160156, 0.06518555, 1.4160156, -2.9785156, -0.37939453, -0.78222656, 3.1445312, -1.7685547, -1.5078125, 1.2763672, -0.5024414, -0.06939697, -0.8466797, 0.22998047, -1.2597656, 1.6552734, 1.1367188, 0.21252441, 0.47314453, 0.13378906, -1.4667969, -3.2285156, -1.7490234, 1.5771484, 1.0117188, 0.46655273, -0.30126953, 0.45581055, 0.875, 0.9375, -1.5976562, -2.6582031, 0.031707764, 0.049835205, 0.8125, 0.8066406, 1.1884766, -1.3925781, 0.41577148, 0.1965332, -0.25195312, 1.1259766, -3.6542969, -2.8652344, 2.0859375, -3.2949219, 0.44970703, 2.1738281, 0.2861328, 0.026473999, 2.4140625, -0.12756348, -3.6660156, 2.9023438, -1.7929688, -0.8691406, 1.3759766, 0.22839355, 0.20605469, 0.7133789, -0.7807617, 1.9521484, -1.2089844, 0.7114258, -0.55078125, -0.46435547, -0.17749023, 0.44726562, -0.45996094, -1.7509766, 0.89990234, -0.8769531, 1.1982422, 1.6708984, -0.99853516, -2.0253906, -1.7011719, -2.9179688, 0.011360168, -2.0625, 0.8823242, -1.9287109, 1.4238281, 1.1396484, 0.18261719, -0.17529297, 0.23168945, 1.0351562, -0.5839844, 1.8027344, -1.5351562, 2.4238281, 2.9335938, -1.8828125, -0.25927734, -1.7382812, -0.26586914, 2.1152344, 1.3515625, -0.8408203, 0.18286133, -0.48291016, 0.29125977, 0.38183594, -1.2773438, 2.40625, -0.24572754, -1.8144531, 1.015625, 4.1953125, 0.5102539, 2.1464844, 0.85253906, 0.5283203, 0.2980957, 4.1523438, 0.0025196075, -1.0224609, 2.3945312, -2.0996094, 0.30639648, 1.3027344, -0.7763672, -1.0234375, -0.71777344, -0.7084961, -1.7353516, -0.7729492, -3.75, 0.15112305, -0.6401367, -1.5800781, 0.74365234, 3.546875, 0.4675293, 1.3320312, 1.6943359, 1.8076172, 0.6230469, 0.8461914, 1.4013672, 0.1907959, 2.6367188, -2.7265625, 2.4863281, 0.44213867, 0.3076172, -0.14428711, 2.9980469, 0.7578125, 1.8486328, -0.6088867, 1.5039062, 3.0234375, 0.99072266, 1.7451172, 0.37524414, 1.1591797, 1.3027344, -0.23144531, 1.3388672, 1.1953125, 1.6015625, -0.7836914, 0.88378906, 1.6972656, -1.7070312, -1.3720703, 0.060760498, -0.12878418, 0.6816406, -1.2011719, 1.4658203, -0.21411133, 0.4584961, -1.8554688, -0.5463867, -2.5136719, 0.4584961, -0.5541992, -0.51660156, 2.3925781, -0.40527344, 1.3105469, -0.4169922, -0.42626953, 0.35595703, -3.7597656, -0.011482239, -0.25585938, -1.4345703, 1.1357422, -1.3945312, 0.6274414, -0.2824707, 0.5332031, 0.8120117, 3.0761719, 1.4179688, -0.73828125, -2.4628906, 1.2919922, 0.56591797, 2.6542969, -0.18554688, 1.5615234, 3.1289062, 0.50439453, -3.7675781, -5.0234375, 3.3632812, 0.09643555, 1.4697266, 2.4941406, -1.7490234, 2.9941406, -0.3647461, 1.5732422, -1.9208984, 1.2138672, 1.7773438, -0.9350586, -0.80322266, 1.4042969, 1.0400391, 1.6943359, 1.2490234, -0.25878906, 1.6884766, -1.1123047, 2.4785156, 0.6777344, 1.3867188, 1.6474609, -0.5517578, -1.7021484, 1.6123047, 0.6508789, -0.08569336, -0.46020508, 2.6445312, 1.9804688, 0.78466797, 1.0273438, 0.19787598, -0.49316406, -1.5976562, 0.19995117, -0.35253906, -2.4648438, -0.30786133, -0.37597656, 0.21826172, -0.546875, -0.9526367, 2.3925781, 0.31396484, -0.52685547, -1.6162109, 3.3085938, 0.15356445, 2.296875, 0.56152344, -1.6591797, -0.8105469, 0.23278809, 0.79589844, 1.0712891, -1.6318359, -0.6323242, 0.3696289, 1.8759766, -0.65722656, 0.44970703, -0.6542969, -1.4091797, -0.08648682, 2.4414062, -1.609375, -0.94677734, 2.0039062, -0.5649414, -0.57470703, 0.21838379, -1.4609375, -0.5048828, -2.0429688, -0.34570312, 0.33740234, -0.061950684, -1.2773438, -0.076049805, 3.0507812, -0.18054199, 0.8129883, -2.8183594, -4.6484375, -0.671875, -1.6591797, 2.3847656, -1.5195312, -1.5996094, 0.6035156, 0.21264648, 2.2402344, -2.1328125, -2.2324219, -0.2668457, -0.7050781, 0.28735352, 0.17175293, 2.1386719, -0.6748047, 0.5566406, 0.76123047, 1.0957031, 0.30737305, -0.81591797, 1.5712891, 2.6855469, 0.43481445, -2.0527344, 1.0058594, -1.8837891, 0.021591187, -1.2109375, 0.43652344, 1.2949219, 1.0820312, 0.30004883, -0.11199951, -1.9316406]}, "B003WKUNLQ": {"id": "B003WKUNLQ", "original": "Brand: BULL\nName: Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane\nDescription: \nFeatures: 75, 000 BTU's of cooking power, heats up fast and can easily sear your favorite cuts of meat\n4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking\n304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n810 sq. Inches of cooking surface including warming rack\nReliable Piezo igniters on every valve plus twin lighting system\n", "embedding": [-0.6040039, 3.03125, 2.1835938, 1.0019531, -0.5439453, 0.10223389, 0.92578125, -2.0253906, -0.033935547, 1.9335938, 1.4619141, 0.19543457, -1.1464844, -2.4121094, 0.47973633, -0.8828125, 1.5244141, 1.4101562, 1.8193359, -0.046875, 0.46923828, -1.0966797, 3.9394531, -1.0683594, -0.55908203, 0.9394531, 3.6621094, -2.5410156, -0.5214844, -0.14550781, 1.5029297, 0.36914062, 0.5048828, 0.8491211, -1.6396484, -1.5947266, -1.0234375, 0.6538086, -3.390625, 0.13208008, -0.32714844, -0.54833984, 2.1503906, 1.8671875, -2.4160156, 0.9394531, -0.06213379, -0.99072266, -1.1923828, -1.4228516, 2.6054688, 0.9399414, -1.9082031, 0.8911133, -2.0605469, 1.7978516, 0.30737305, -2.6347656, 0.1418457, -0.6435547, 2.5976562, -0.5722656, -0.9199219, 0.9213867, -0.07098389, 0.44482422, -0.9145508, -0.8964844, 1.40625, 0.37646484, 2.7421875, -1.8007812, -1.3818359, 0.32250977, 0.83984375, -0.9350586, -3.4023438, 0.10296631, 0.74365234, -0.83740234, -1.6347656, 3.4882812, 0.61035156, -0.8901367, -0.18408203, 0.87890625, -2.7539062, -1.3232422, 2.5371094, -0.6069336, -0.10473633, 2.6289062, -2.7949219, -4.96875, 2.2421875, -0.45263672, 0.6088867, 0.28808594, -0.36645508, 0.9580078, 0.37695312, 0.4711914, -1.9296875, -0.83691406, -1.8896484, -0.39916992, 0.98828125, 0.2475586, -3.0976562, 0.8652344, -1.8896484, 0.53759766, 1.8945312, 0.6503906, 1.9726562, -0.4584961, -0.47436523, 1.6943359, 2.1035156, 2.3710938, 3.0019531, -1.2734375, 0.48657227, 0.2626953, -0.43798828, -0.6953125, -0.8457031, 1.828125, 5.3476562, -2.21875, 0.61865234, -2.1367188, 2.6992188, -0.99609375, 0.3317871, -0.8730469, -1.5380859, -1.2226562, -2.9882812, 0.18835449, -1.4619141, 0.8745117, 0.7138672, 0.5449219, -4.1679688, -0.50634766, 0.7553711, 0.010467529, -0.7597656, -2.6367188, 0.79541016, -1.9541016, 0.93603516, -1.5947266, 0.80908203, -0.036468506, -1.5078125, -0.41503906, 3.4023438, -0.5888672, 0.43286133, -1.7900391, -0.56396484, 0.23144531, -0.46264648, -2.3242188, -0.984375, 2.1464844, 0.4633789, 1.5947266, 0.3088379, -1.4296875, -0.010375977, 0.06451416, 0.10083008, -1.0751953, -0.5390625, 2.3261719, 0.36791992, -0.091308594, -2.3320312, -2.7578125, 0.61816406, 0.14868164, 1.4560547, -2.0761719, 0.32202148, -0.030181885, 1.1689453, -0.47558594, 0.5029297, 0.050842285, 1.1367188, 1.1962891, 0.7944336, -1.3828125, -0.95703125, -2.28125, 0.45703125, 0.54345703, -0.52978516, 0.24414062, -0.6821289, -0.14709473, -0.68896484, -2.5703125, -0.11608887, -2.1503906, 2.2519531, 1.7294922, 2.3339844, -2.2988281, 2.2617188, -0.21118164, -0.8666992, -1.9140625, 1.6289062, -1.6054688, 2.3476562, 2.1855469, -0.29736328, -0.03363037, 0.41723633, 1.8925781, 0.041412354, 0.43041992, 0.6176758, 1.5195312, -2.3320312, 0.05279541, 2.1914062, 0.6020508, -0.28320312, 0.9916992, -0.57421875, 0.014457703, 0.72314453, -3.140625, -0.0184021, -0.8383789, -0.9951172, -0.30566406, -0.30932617, -1.4814453, -0.34521484, 0.67333984, -1.6376953, 1.6621094, 0.66845703, 1.0361328, -0.39941406, 0.0045433044, -0.34887695, 0.67529297, -0.28808594, 0.5722656, -1.2783203, 0.64990234, -2.2246094, -1.2490234, 1.4316406, -1.9023438, -0.5288086, -0.26660156, -0.014762878, -0.9248047, 2.8203125, 1.3691406, -1.8515625, -1.9501953, 0.37597656, 1.3154297, 2.5371094, -1.3779297, 1.8320312, 1.1123047, -0.5698242, 3.5390625, 0.08526611, 0.70947266, -0.63427734, -0.2697754, 1.7939453, -2.0371094, -1.8691406, 0.41601562, -0.20861816, -0.4609375, -1.4208984, 1.6376953, 5.2265625, 0.6269531, -2.2382812, 2.6503906, -1.625, -0.55908203, 1.2041016, -1.2871094, 1.1650391, -0.5600586, 3.46875, -0.609375, 1.0683594, 1.4033203, -0.3623047, -2.1015625, 0.113342285, -3.1152344, 0.58251953, 0.7783203, -1.2070312, -0.087524414, -1.796875, 1.5107422, -2.7285156, -0.50341797, 1.0722656, -3.46875, 0.8100586, 1.2099609, 1.8007812, 0.13647461, -0.48413086, -2.1171875, -0.2927246, 0.86376953, -0.9189453, -0.52197266, 1.4277344, -1.7636719, -0.8095703, -0.8701172, -0.3256836, -2.5644531, -0.30371094, -0.7890625, -1.3681641, -1.3427734, 1.1328125, -1.4824219, -1.4931641, 0.9814453, -2.296875, 0.83984375, 0.036987305, -3.6738281, -1.1777344, -0.9370117, -0.40698242, -0.47436523, -0.38476562, 0.46142578, 1.2841797, -4.2890625, -0.29345703, 1.0556641, 0.6723633, -0.5605469, 0.72509766, 0.2705078, -0.3720703, -2.5917969, 0.010284424, 1.0009766, 1.328125, 0.40551758, 1.6054688, -3.7207031, 2.2851562, -3.1640625, 0.32836914, -0.13220215, -0.36083984, -3.2773438, -1.8779297, -1.3164062, -1.0146484, 3.3828125, 0.2705078, 0.8779297, -0.24035645, 0.5341797, 0.23010254, -0.03942871, -2.8261719, -0.8691406, 1.3496094, 0.36206055, -0.5463867, -3.7011719, 0.9291992, -0.30517578, 0.4326172, -0.52197266, -0.6958008, -0.33203125, 0.47143555, -0.8232422, -0.45239258, 0.6635742, -0.2529297, -1.359375, -1.0527344, -2.8164062, 0.28076172, -1.8115234, 0.6948242, 0.39160156, 1.9492188, -0.31176758, 0.6738281, 1.2167969, 0.018692017, 1.0244141, -2.4375, -2.7304688, 3.5136719, 2.1640625, -0.05682373, 1.71875, -1.7958984, -2.5703125, -1.9306641, 1.1884766, 2.65625, 2.6933594, 2.8632812, 0.3461914, -0.58984375, -0.76123047, -0.14355469, 0.21643066, -1.1757812, -0.53759766, 2.8652344, -2.4804688, -1.9365234, 0.6928711, 2.3613281, -1.8085938, -0.28051758, 0.9916992, 1.3173828, 2.7480469, 2.9179688, 1.6503906, 1.2255859, -1.7070312, 0.7133789, -0.2734375, 1.109375, 1.1933594, 0.15344238, 0.6503906, 0.15478516, 1.2070312, 2.0332031, 0.16662598, 2.3710938, 0.9169922, -0.8232422, 0.7944336, 1.2285156, -1.03125, 0.24816895, 0.7348633, 0.15283203, -0.44677734, -0.2208252, -0.2355957, -0.048736572, -0.14611816, -2.3144531, -2.46875, 2.7265625, 0.53515625, 0.83447266, 1.0537109, 1.5214844, -1.5839844, -0.85302734, 0.21203613, 0.45776367, 0.5024414, 0.4572754, -0.10064697, -0.08288574, -0.8925781, 0.4794922, -0.73779297, -2.0507812, -0.33325195, 1.9433594, -1.0849609, -1.0566406, 1.1376953, -1.4726562, -0.3334961, 2.3203125, 1.1826172, -0.96728516, -0.016174316, -2.0488281, 2.0878906, 0.5058594, -1.7167969, -1.3945312, -2.4941406, 0.29589844, 0.076660156, 0.98095703, 1.1083984, 0.9746094, -1.1669922, 0.55615234, -2.1035156, 1.734375, -0.3791504, -0.85791016, -1.1845703, 2.0390625, -0.41333008, 1.5, 1.2880859, 2.8613281, -1.0595703, 1.03125, 2.4707031, -2.5488281, -0.48583984, -2.9042969, -3.3554688, 0.43798828, -0.9873047, -0.41552734, 2.7851562, -0.7397461, 0.5283203, 1.9902344, 0.6767578, -1.6503906, -1.0898438, -1.9033203, -0.76904297, -0.1027832, -0.41967773, 0.07293701, 0.6010742, -1.6210938, -2.0800781, -0.94628906, -1.4423828, 0.3071289, 1.1347656, -2.1289062, 1.4511719, -1.8037109, 0.3449707, -0.98046875, -0.20739746, 3.1230469, -0.9013672, -0.40600586, -1.3105469, 0.74365234, -0.07507324, -1.3691406, 0.29003906, 3.3867188, -0.13391113, -0.8666992, -0.5332031, 1.3798828, 3.6894531, 0.90478516, -2.3339844, -0.3203125, 0.18737793, -1.1171875, -1.1279297, 0.14941406, -1.0009766, -1.1777344, -0.35107422, 2.7714844, 1.4326172, 1.2910156, -0.65966797, -1.640625, -0.4597168, -1.0839844, -0.95703125, -1.4101562, -0.20446777, 0.5078125, 0.030899048, 1.6123047, -1.5126953, -0.18127441, 0.35424805, 0.33032227, -1.5742188, 3.3164062, 1.9179688, 1.1943359, 3.3359375, 1.0478516, -0.95410156, 0.36254883, 0.031707764, 0.19494629, 0.050323486, -0.07141113, -0.18139648, 0.13256836, 0.74316406, -0.5805664, -0.48901367, 0.2524414, -2.1640625, -0.37426758, -1.2333984, 1.8203125, -1.5380859, -1.0556641, 2.1308594, -1.8974609, 2.7636719, -1.6279297, 0.5541992, -0.3779297, 2.2304688, -1.0078125, -0.49291992, -0.015365601, 0.16259766, 1.3876953, 0.8647461, 0.4243164, -0.91064453, 0.85546875, 0.2529297, 1.234375, -0.6464844, -0.23962402, -0.33740234, 0.796875, 0.45947266, 0.5253906, 2.0859375, 0.6166992, 1.3710938, 2.7695312, 2.4609375, -0.19189453, 0.5703125, 1.6728516, -2.9160156, 1.2041016, 0.43579102, -2.2070312, 1.7421875, 0.6772461, -3.421875, 0.6220703, 1.7138672, -0.6201172, 0.10974121, -0.7841797, -0.7397461, 0.64697266, -3.5546875, -2.5566406, -1.4277344, 0.45214844, 0.47729492, -0.023895264, 0.3334961, -0.51171875, 0.4296875, 1.8916016, -0.34423828, -0.43579102, 1.6923828, 1.0195312, -0.18969727, -0.5151367, -0.04248047, -2.8105469, 0.36987305, 3.4160156, 2.5957031, 1.6806641, 1.3955078, 1.4951172, -1.5146484, 1.2431641, -2.8320312, 3.828125, -2.2597656, -0.07800293, 1.2705078, -1.2705078, -1.578125, -3.4375, -0.3935547, 0.06817627, 2.9785156, 0.5883789, -1.3154297, 0.6088867, 0.37548828, -0.8442383, -4.5273438, -1.7871094, 0.22290039, -0.36889648, 0.19104004, 2.2753906, 1.1210938, 0.5551758, -1.6464844, 1.0898438, -0.023391724, 1.1191406, -1.8154297, -0.8930664, -0.85302734, 0.37841797, 0.40527344, 0.68652344, 0.11517334, 0.091308594, 0.24304199, -1.2314453, -1.6669922, 1.6650391, -2.9082031, -0.26098633, 3.4394531, 1.5791016, 0.36889648, 2.2363281, 0.2277832, -1.75, 2.6855469, -1.7148438, -0.38427734, 0.8276367, -1.2753906, 1.3154297, -0.3869629, -0.30249023, -0.17614746, -1.9746094, -0.32861328, 0.43164062, -1.5908203, 0.46289062, 1.7988281, 0.88671875, -0.4580078, 0.9345703, -0.5332031, 0.5654297, 1.6357422, -1.1298828, -0.24633789, -2.3613281, -2.3320312, -0.8745117, -2.6445312, -0.9008789, -2.2753906, 0.00058698654, 2.4355469, -0.4074707, 1.5820312, 0.2364502, 0.36450195, -0.79296875, 0.69384766, -0.6088867, 2.5742188, 2.1015625, -0.4951172, -1.2285156, -1.5537109, 1.1396484, 2.3613281, -0.30541992, -1.1914062, 0.61083984, -0.9921875, -0.59277344, -0.3564453, 1.5556641, 1.6796875, 0.44091797, -1.3642578, -0.35546875, 3.4257812, -0.27563477, 2.0605469, 0.8286133, 0.09710693, 1.3916016, 4.2539062, 1.59375, 0.026565552, 2.8691406, -0.9189453, 0.09423828, -0.4572754, -0.79541016, -0.5996094, -1.2578125, 0.049865723, -2.015625, -1.203125, -3.0449219, -0.44189453, 0.37597656, -1.9599609, 0.27490234, 1.9746094, 0.34204102, 0.9526367, 2.25, 1.515625, 0.41552734, -0.38134766, -0.7446289, 0.90966797, 2.2597656, -2.4804688, 2.4765625, -0.6035156, -0.79785156, -1.96875, 1.2255859, -0.9091797, 1.9814453, 1.7607422, 0.89501953, 2.5332031, 1.7666016, 2.546875, -0.03186035, 3.2109375, 0.35888672, -2.4511719, 0.38867188, 1.8330078, 3.3144531, -1.4326172, -0.7207031, 0.7758789, -0.9248047, -0.9140625, -0.4807129, -1.0966797, 1.0439453, -2.4609375, 1.9365234, 1.0888672, 0.47387695, -0.9399414, -0.041778564, -0.044799805, -0.45263672, -0.78222656, 1.1621094, 2.1425781, 0.46728516, 3.0644531, 0.117370605, -0.25390625, 0.7885742, -3.7695312, -0.03918457, 1.0439453, -1.6103516, -1.3359375, -0.6689453, 1.7373047, 1.0712891, 0.89453125, 0.9667969, 2.2050781, -0.6074219, 2.1171875, -2.53125, -0.47192383, 0.44433594, 3.0390625, -0.09326172, 0.04196167, 0.9140625, -1.1376953, -2.2578125, -3.7265625, 2.6132812, 2.3671875, 1.9023438, 0.9819336, -3.1855469, 2.7929688, -1.9824219, 2.1542969, -1.328125, 1.1220703, -0.08557129, -0.9589844, -1.4365234, -0.014091492, 0.25585938, 2.2363281, 0.71972656, -0.8046875, 0.79541016, 0.009819031, 0.9555664, 2.421875, 2.7753906, -0.4104004, 1.2705078, -0.72021484, 2.9042969, -0.057800293, -1.765625, -1.1171875, 2.6855469, -0.08288574, 1.5390625, 2.2148438, -0.51123047, -0.50878906, 0.6933594, -0.5966797, -0.96972656, -2.4003906, -1.3447266, -0.59472656, -0.2919922, -1.6357422, -0.8886719, 0.8076172, 4.5742188, 0.6591797, -0.40429688, 2.171875, -0.45043945, 1.5947266, -0.33984375, -0.7841797, -0.83984375, 1.0849609, 0.14953613, -0.46850586, -3.0292969, 0.27514648, 2.6953125, 0.064331055, -0.24963379, 0.5957031, -1.6347656, -0.71728516, -1.3369141, -0.4729004, -1.3779297, -1.0693359, 2.9785156, -0.49169922, -1.1123047, 0.46069336, 0.27197266, -1.0126953, -2.8554688, -0.77978516, -1.6289062, -0.12414551, -0.9272461, 2.1386719, 2.7089844, 0.69433594, -2.1152344, -3.1660156, -3.5976562, -1.8476562, -3.1503906, 0.6777344, -0.32836914, -0.23791504, 1.1025391, -0.24829102, 1.7285156, -1.9775391, -0.9135742, 0.83935547, -1.2617188, 1.1748047, 0.24804688, 0.47509766, 0.4814453, 0.6855469, 0.5517578, 1.9365234, 0.45507812, 0.8925781, 2.5976562, 2.1992188, 1.1943359, -0.8310547, 1.1005859, -0.097351074, -0.47070312, -0.71728516, 0.63183594, 1.3417969, 0.6298828, -1.1582031, -1.2998047, -2.8554688]}, "B00ISKDOES": {"id": "B00ISKDOES", "original": "Brand: Coleman\nName: Coleman Party Propane Grill\nDescription: \nFeatures: Compact, portable BBQ grill ideal for camping, picnics, and tailgating\nDelivers 8,000 BTUs of cooking power across grilling surface\nInstaStart push-button ignition for convenient matchless lighting\nPerfectFlow technology provides consistent performance even in extreme conditions\nDetachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area\n", "embedding": [-0.8183594, 0.40722656, 0.15942383, 2.0644531, -0.82373047, 0.48364258, 1.5126953, -1.2246094, -0.6894531, 1.7041016, -0.6044922, -0.9589844, 0.8544922, -2.9257812, -0.36254883, 0.03491211, 1.4091797, 1.5429688, 0.9819336, -0.09454346, 1.2783203, -0.9033203, 1.0966797, -0.72802734, -0.3330078, -0.6166992, 3.1894531, -5.625, -0.36865234, -0.015113831, 0.9458008, -1.7373047, -0.17541504, 3.1308594, -2.7675781, 0.3425293, -2.7792969, 1.6416016, -2.1816406, -0.7519531, -1.6972656, -1.2636719, 1.8779297, -0.43676758, -1.2539062, -0.3334961, 1.2998047, 0.11364746, -0.64990234, -1.8476562, 2.3515625, 1.5888672, 0.19360352, 0.19470215, -0.7504883, 0.5864258, -0.5913086, 0.052001953, 0.39819336, 0.33032227, 1.4326172, -0.07501221, -0.96728516, 1.59375, -1.1083984, 1.1132812, -0.2232666, -0.60546875, 0.6269531, -0.66064453, 3.0566406, -0.057006836, -3.2304688, -1.1503906, -0.35913086, -0.52001953, -4.0234375, -0.052459717, 0.77490234, -0.89990234, -1.140625, 1.8779297, 0.1809082, -2.7128906, -0.4506836, 0.5048828, -1.7939453, -0.3017578, 1.7890625, 1.1259766, -0.91259766, 1.3076172, -2.328125, -3.7421875, 1.1601562, -2.0605469, 1.8984375, 1.0566406, 0.5136719, 0.6298828, -0.47094727, 0.40698242, -1.5966797, -0.7583008, -3.1347656, -0.7167969, 1.9648438, -0.12548828, -3.390625, 2.3496094, -1.8740234, -1.1220703, 2.2285156, 0.7636719, 0.3725586, 1.1474609, 0.21032715, 2.6953125, 2.8144531, 1.0605469, 3.921875, 0.28710938, 2.2910156, -1.3339844, -0.67578125, 2.0664062, -0.48754883, 0.7416992, 2.6601562, -0.43823242, -0.6933594, 0.15258789, 3.625, 0.2644043, -2.4648438, -2.6582031, -1.9072266, -0.484375, -2.5722656, -0.28955078, -0.83740234, 0.011016846, 2.6191406, 0.10888672, -4.9453125, -1.0869141, 0.012451172, 1.4541016, -0.4399414, -2.0253906, 0.1081543, -0.8354492, -1.1611328, -0.99121094, 0.72265625, 0.48632812, -0.99560547, -1.3886719, 5.0859375, 1.1572266, 1.3037109, -1.3613281, -0.6044922, 1.4570312, 1.3847656, -0.875, -0.0413208, 0.4675293, 0.07208252, 2.3652344, 0.63964844, -3.1015625, 0.6123047, -0.03881836, 1.8310547, -0.9995117, 0.5957031, 2.6132812, 0.8691406, -0.47192383, -1.8173828, -3.0351562, 1.4228516, 0.2421875, 0.31762695, -0.6279297, -0.9589844, 0.093566895, 0.36914062, -1.8037109, 0.1508789, 0.18127441, 0.5527344, 0.3461914, -1.8876953, -1.0166016, -0.4182129, -1.4560547, 1.2148438, 1.4179688, -0.28710938, 0.023040771, -0.7475586, 0.88378906, -1.5039062, -2.171875, -0.7558594, -0.76708984, 0.32104492, 2.5585938, 1.8447266, -0.2019043, 1.4501953, -1.2900391, 0.029968262, -1.7275391, 0.38183594, 0.057922363, 2.3964844, 2.2695312, -0.084350586, -0.5620117, -0.26416016, 1.0976562, -1.3652344, 1.1728516, 1.0283203, 0.3720703, -1.2509766, -1.0546875, 1.3222656, 1.4775391, -1.9287109, 0.94921875, 1.1904297, 3.2070312, -0.23034668, -1.4882812, -0.51953125, -0.19299316, 0.17468262, -1.1347656, -0.80859375, -1.7529297, -0.20422363, -0.31469727, -1.28125, 1.4472656, 2.0703125, 0.4987793, 0.50097656, 0.5253906, -1.5664062, 3.1894531, -1.2773438, 1.1064453, -0.5878906, 0.093811035, -1.3964844, -3.0917969, 0.39624023, 2.5371094, -1.1132812, -1.2841797, 0.17004395, -0.6401367, 4.0976562, 0.44311523, -3.6894531, -1.7236328, 2.1015625, 1.2412109, 1.1445312, 2.3535156, 0.81933594, -0.9223633, -0.98876953, 1.5009766, 0.4111328, 0.63134766, 0.050231934, 1.4609375, 2.3808594, -2.2558594, -2.3046875, 0.3071289, 1.3574219, -0.8432617, -0.5966797, 0.7841797, 4.1210938, 0.020004272, -2.3320312, 3.6523438, -3.640625, 2.1015625, -0.37426758, 0.6254883, 0.38989258, -0.5644531, 3.1230469, 0.17285156, -1.7929688, 1.8808594, -2.9609375, -1.4238281, -0.6489258, -1.9921875, 0.8769531, -1.6308594, -0.49780273, -1.1689453, -1.7353516, 1.6445312, -0.13122559, -1.7138672, 2.2441406, -2.1777344, 0.62353516, 2.875, -0.058502197, 0.7675781, 1.0126953, -1.1621094, -0.2052002, 0.4963379, -1.7822266, 1.2646484, 1.3720703, -1.0166016, 0.85791016, -1.0556641, 1.9423828, -2.4433594, -3.2167969, -1.7597656, 0.9135742, -3.546875, 1.8066406, -0.6777344, -2.1074219, 0.051361084, -1.5400391, 1.6113281, -2.1054688, -2.1542969, 1.3085938, 0.8417969, -0.6328125, 0.7792969, -0.14831543, 0.07446289, 0.203125, -3.7832031, -0.58203125, 0.78515625, -0.9038086, -0.75, -0.3371582, 0.9199219, 0.0021343231, 0.8642578, 0.21496582, 0.9448242, -0.35864258, -1.5449219, 0.91503906, -3.1640625, 0.085754395, -1.9550781, -0.8564453, 0.92041016, 1.1914062, -2.2226562, -1.2939453, 2.0644531, -1.2646484, 4.7890625, -1.1103516, 0.6923828, -0.3173828, -0.93896484, 1.6601562, -0.57128906, -3.7304688, 0.097595215, 1.1259766, -0.095947266, -2.5292969, -2.4765625, -0.54052734, -1.1777344, 0.20874023, -0.82666016, 0.91259766, -1.6533203, 1.5078125, -2.5957031, 0.17675781, -0.5698242, 1.3476562, -0.48364258, -2.0507812, -2.7070312, -0.91503906, -0.6279297, -0.09436035, -0.8095703, 0.6611328, -0.69628906, -0.36938477, 1.8798828, -0.64453125, 2.3144531, -1.5966797, -4.140625, 3.5996094, 0.12384033, -0.9291992, 1.3359375, -1.8134766, -2.1621094, -5.28125, -0.93603516, 2.2460938, 2.0839844, 0.42504883, -0.51171875, 0.62646484, 1.2988281, 0.30371094, -0.65185547, -0.13439941, -0.3623047, 3.4765625, -2.0273438, -2.8847656, 0.074279785, 2.7167969, -2.0253906, -0.9868164, 2.6542969, 0.71240234, 0.8823242, 3.4453125, 0.7792969, 0.8457031, -0.28027344, 0.6328125, 2.5683594, -0.40966797, -0.4248047, -0.09942627, -1.8847656, 2.0292969, 2.1679688, -0.10357666, 1.2441406, 1.0507812, 2.3144531, 1.6464844, -2.4433594, 2.4238281, 0.7324219, 2.1328125, 1.5078125, 2.9316406, -1.40625, -1.3076172, -0.9892578, -0.8017578, 2.2734375, 0.17260742, 0.5732422, 3.2382812, 1.4511719, -0.40527344, 0.74316406, 0.40307617, 0.079833984, -0.28515625, -0.053344727, -0.55615234, -0.15307617, -0.8413086, -2.5605469, -1.7890625, -0.15039062, 2.0214844, -0.53759766, -2.2539062, 0.8378906, 3.1699219, 1.9414062, -3.171875, -2.4785156, 0.20581055, 0.03527832, 3.4277344, 0.37158203, -2.1445312, 0.20703125, -0.4946289, 1.4775391, 2.4628906, -1.4970703, -0.81933594, -0.54589844, -0.5908203, 0.4501953, 0.29736328, 2.3417969, 0.3479004, -2.1953125, 0.20861816, -4.015625, 1.1728516, -0.7739258, -3.0683594, 0.3786621, 2.5917969, -0.87353516, 0.8251953, 0.4724121, 2.9023438, -1.4560547, -1.2460938, 1.8525391, -0.7426758, -1.0273438, -2.0585938, -3.6503906, 1.3007812, -1.0878906, -1.0341797, 1.0136719, -1.4150391, -0.3930664, 1.1308594, 0.25, -2.7578125, -1.6552734, -1.8535156, -0.038360596, -1.3671875, 1.1630859, 0.81884766, -0.91748047, -2.5195312, -1.8095703, -2.2480469, -0.0007324219, 1.3691406, 2.3164062, -0.99853516, 1.7988281, -2.1191406, 1.6728516, 0.60546875, 0.3581543, 0.24279785, 0.085632324, 0.3876953, -2.9824219, 0.08294678, 1.8632812, -0.016723633, 0.96875, 1.3925781, 0.4584961, -3.0253906, 0.5810547, 1.7871094, 2.3457031, 0.09118652, -1.5585938, -0.52490234, -1, -1.3085938, -0.1060791, -0.7167969, -0.4580078, -2.0742188, 0.85253906, 0.6171875, 2.8046875, 2.1796875, -0.41967773, -1.9765625, 0.6298828, 0.45288086, -2.7304688, -1.4609375, -0.65185547, -0.8623047, -1.0126953, 1.0927734, -1.2939453, -0.22692871, 0.02671814, -0.9345703, -3.1132812, 1.9960938, 0.6166992, 2.9140625, 1.9589844, 0.06774902, -0.72753906, 1.6621094, -1.4785156, -0.73291016, 0.94189453, -2.125, -0.3413086, 0.34155273, 1.9746094, -1.0966797, -0.9238281, 0.0496521, -2.2734375, -0.9458008, -2.3730469, 1.6904297, -1.0791016, 1.0986328, -0.69628906, -1.1933594, 1.9326172, -2.828125, 0.4560547, -0.016967773, 0.6044922, -0.7705078, 0.25146484, 0.7636719, 1.5908203, 1.8583984, -0.45751953, 1.015625, -1.5849609, 1.1816406, -0.09875488, 2.0214844, -2.9765625, -0.7475586, -0.50878906, -1.4423828, -0.48510742, -0.5410156, 0.27026367, 1.8974609, 0.5986328, 2.0878906, 1.3134766, -1.0185547, 0.9760742, 1.3388672, -1.4111328, 0.87353516, 0.72509766, -1.4228516, 2.2070312, -0.44995117, -3.5234375, 1.3662109, 1.7382812, -0.44335938, 1.9101562, -0.2142334, -0.6308594, -0.3857422, -2.7558594, -0.14916992, 0.68115234, -0.328125, 0.8520508, -2.3769531, 0.7104492, -0.20935059, 1.0390625, 2.078125, -0.3251953, -2.9082031, 1.3525391, -1.1738281, -0.15490723, -1.8076172, -1.9775391, -2.7109375, -2.1425781, 1.8525391, 2.0332031, 1.5078125, 0.059143066, 0.64746094, -2.453125, -0.7182617, -2.9746094, 2.7070312, -3.4199219, -0.20910645, 1.5136719, -1.6953125, 0.96484375, -2.5722656, 0.74560547, -0.8989258, 1.8574219, 0.9667969, -0.38256836, -0.55078125, 0.7685547, -2.4492188, -3.8457031, -1.3847656, -0.26757812, 0.31860352, 0.7836914, 2.4296875, -1.6445312, -0.12084961, -0.35083008, -1.7421875, -0.9580078, -0.23388672, -1.6279297, -0.7910156, -0.16894531, 1.6962891, -1.8789062, 0.0513916, -0.59765625, 1.2910156, -0.8564453, -4.6484375, -1.3466797, 1.2695312, -0.7832031, -0.05508423, 1.9033203, -0.4104004, 0.0960083, 0.8930664, 1.5195312, -1.2148438, 2.4765625, -0.32104492, -0.7636719, 1.0742188, -0.28051758, -0.20947266, -0.033172607, -0.7939453, -0.12768555, -1.6601562, 1.5371094, 0.5917969, 0.010719299, 0.00085926056, 1.3261719, 1.1396484, 0.074279785, 1.3828125, 0.84765625, 2.484375, 0.5517578, -0.4970703, -1.3251953, -2.4433594, -3.484375, 0.31103516, -0.95166016, -0.7626953, -2.9472656, 1.8779297, 1.5498047, 2.640625, 0.32885742, 1.5234375, 2.2167969, -0.45532227, -0.070251465, -0.3244629, 3.2441406, 2.4375, -1.8251953, -1.4804688, -0.1427002, 0.93359375, 0.026031494, 1.4824219, 0.14855957, -1.0205078, -2.0996094, 0.8232422, -0.56689453, 3.9003906, 1.8837891, 1.0527344, -0.97314453, 1.3339844, 3.734375, -1.3447266, 0.5366211, 0.96875, 1.4541016, -0.010231018, 3.1269531, -1.1035156, -2.5546875, 1.9404297, -1.3964844, 1.3671875, -0.41210938, -1.4921875, 1.7851562, -1.4775391, -1.3125, -1.4628906, 0.21704102, -3.2070312, 2.9121094, 0.8466797, -1.6376953, 0.57470703, 2.5683594, -0.35498047, 0.44628906, 1.3720703, 0.8886719, 0.34033203, 0.44189453, 0.8354492, 0.07885742, 1.4140625, -1.7587891, 3.421875, -0.6352539, -2.4921875, 0.5107422, 3.3691406, 1.0039062, 2.6425781, 2.2558594, 2.3808594, 3.4082031, 1.8710938, 4.0234375, 0.4272461, 1.0302734, 1.4101562, -2.0078125, 0.047180176, 2.6523438, 1.8935547, 0.097961426, -0.6689453, 0.90625, -0.94384766, 0.2685547, -0.6152344, 2.4433594, 0.07366943, -3.7597656, 1.5, 1.5576172, 2.4375, -0.6230469, -0.50927734, -0.07763672, 0.34521484, -1.4775391, 0.29516602, 0.44189453, -1.0166016, 0.97558594, -0.07788086, -0.08850098, 1.2666016, -1.59375, -0.8730469, -0.7314453, -0.5161133, 0.6723633, 0.035827637, 1.2255859, 1.5771484, -0.36157227, 2.0859375, 0.64208984, -0.66259766, 1.6308594, 0.12817383, 0.78759766, 1.2089844, 2.1816406, 0.4892578, -1.1132812, 1.1572266, -0.15844727, -1.9990234, -4.3125, 0.8574219, 1.2373047, 0.29516602, 0.33813477, -2.078125, 1.5673828, 1.1152344, 2.4492188, -0.7993164, 2.8828125, -1.0283203, -1.3173828, -0.76953125, 0.34057617, 1.0820312, 2.3535156, 1.9101562, -1.1523438, 2.1621094, 0.21374512, 2.2753906, -0.27929688, 1.1347656, 1.5283203, 1.9765625, -1.7714844, 1.8007812, 0.5292969, 1.6484375, -1.1210938, 2.9609375, 1.1376953, 0.0335083, -0.12408447, -1.2705078, 1.4228516, -0.24609375, -1.6914062, -2.109375, -2.4648438, -2.0605469, 0.77734375, 0.9682617, -0.5136719, -0.22229004, 0.9404297, 2.2246094, -0.3395996, 1.5488281, 1.8037109, -0.19433594, 1.5078125, -1.3183594, -0.7558594, -1.3847656, 1.4111328, 1.2958984, 0.41381836, 0.11975098, 0.9370117, 1.4189453, 0.64501953, -0.55322266, 0.08984375, -0.8886719, -1.3466797, -0.8173828, 0.9145508, -0.1430664, -0.35253906, 0.20703125, 1.2773438, 0.95458984, 0.8833008, -0.8041992, -1.7929688, -1.1826172, -2.1074219, -0.064819336, -1.8847656, -1.0449219, 1.7548828, 4.1796875, -0.072509766, -0.2692871, -2.8222656, -2.8847656, -1.9384766, -1.2988281, 3.2617188, 1.1630859, -1.1689453, 1.1298828, -0.20495605, 1.6660156, -1.3066406, -0.7026367, 0.08306885, 0.9316406, 0.79296875, 0.9326172, 0.32617188, 1.8652344, -0.62158203, 0.14501953, 2.2734375, 1.3466797, 0.9013672, 2.4296875, -0.73291016, 0.94628906, -2.3652344, 0.6010742, -0.6855469, -1.6123047, -1.9101562, 2.7558594, 2.5644531, 0.59375, -1.2285156, -2.7480469, -1.4160156]}, "B09CKPH9ZJ": {"id": "B09CKPH9ZJ", "original": "Brand: Royal Gourmet\nName: Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver\nDescription: \nFeatures: Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways.\n2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle.\nHeat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking.\nCabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up.\nProtected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.\n", "embedding": [-0.8623047, 0.042266846, 2.7226562, 0.21435547, -1.9736328, 0.33813477, 1.5214844, -0.36035156, -0.81933594, 0.9975586, 0.5576172, -0.5292969, -0.06137085, -3.6679688, 1.4433594, -0.9291992, 0.5004883, 1.7216797, 2.0449219, -0.41967773, -0.06536865, 1.6279297, 1.9677734, -0.081970215, 0.024536133, 1.0322266, 3.6875, -3.65625, 0.5473633, -1.5009766, 1.3222656, -0.9033203, 0.23583984, 1.6269531, -1.6796875, -0.87841797, -1.4121094, 1.6777344, -1.5849609, 0.18066406, -0.52001953, -0.9301758, 2.2148438, 1.0419922, -1.9248047, -1.6669922, -0.5029297, 1.5429688, -1.2871094, -0.047851562, 1.2333984, 2.7089844, -0.0015573502, 1.4033203, -1.8173828, 2.4335938, 1.0439453, -0.8496094, 1.0839844, -0.13745117, 2.3867188, -0.42211914, -2.9257812, 0.4638672, -0.31958008, -1.5498047, 0.48901367, 0.90234375, -0.43432617, -0.8984375, 1.5585938, 0.24267578, -0.7524414, 0.55029297, -0.46728516, -1.1142578, -1.6865234, 2.4921875, 1.2587891, -1.0673828, -3.0976562, 2.5546875, -0.48388672, -1.3662109, -0.7397461, 0.16174316, -0.85302734, -0.36694336, 1.4404297, -0.08508301, -0.19567871, 1.1660156, -2.2089844, -4.5039062, 1.5166016, 0.2487793, 2.0039062, 1.1376953, 1.0585938, 1.2695312, 1.0078125, -0.85009766, -1.5029297, -1.1230469, -1.7548828, -1.1015625, 1.1386719, 1.4746094, -0.8330078, -0.025283813, -1.2236328, 0.7705078, 0.7705078, -0.8046875, -0.0014591217, 0.74316406, -1.0244141, 2.4316406, 0.31640625, 1.9287109, 2.2753906, -1.3193359, -0.084106445, -2.0644531, 1.6621094, 1.6972656, -0.7368164, 1.3974609, 6.4648438, -1.7001953, -0.15454102, -1.6201172, 1.3564453, 0.69189453, -0.58740234, -2.0546875, -3.2851562, -0.2084961, -3.1855469, 0.88183594, -1.7451172, 0.096069336, 0.55322266, -1.1875, -3.0898438, -1.21875, -0.25878906, 1.5751953, -1.4882812, -1.0341797, 1.0234375, -2.875, 1.0341797, -2.6367188, 1.7011719, -2.2851562, -0.6977539, -1.6660156, 3.8574219, 2.3007812, 1.6757812, -1.8740234, -1.4736328, 0.79589844, -0.5703125, -2.4550781, -1.25, 2.1972656, 0.077697754, 2.7617188, -0.6328125, -0.34643555, -0.96972656, -0.44555664, -0.23449707, -0.5102539, -1.0185547, 2.1269531, 0.1463623, -0.19055176, -0.8198242, -1.7880859, -0.80810547, 0.93896484, -0.2692871, -0.69091797, 0.09649658, 0.3425293, 1.7177734, -1.5820312, 0.28515625, 1.2158203, -0.11224365, 0.64501953, -1.0800781, -1.6435547, -1.0224609, -1.1357422, -0.5395508, 0.14501953, -0.4350586, 0.52783203, -0.2602539, -0.12670898, -3.4316406, -3.1757812, -0.7583008, -1.5644531, 2.3300781, 2.0507812, 2.3300781, -2.203125, 1.7099609, -0.84033203, -0.50390625, -2.4160156, 1.5693359, -0.33496094, 1.5126953, 2.3320312, -0.66308594, -0.11444092, 1.2373047, 3.2265625, -0.55908203, 2.2988281, 1.3710938, 1.2607422, -2.1875, -1.0332031, 0.9848633, 1.1123047, -0.16870117, 0.39501953, -1.0039062, 0.93115234, 0.3359375, -1.5332031, -0.8457031, 0.22265625, -0.080444336, 0.36035156, -1.328125, -0.37597656, 0.22399902, 2.203125, -0.5942383, 1.9960938, 0.6201172, -0.94970703, -0.7348633, 0.19458008, 1.2011719, -0.65722656, -0.27197266, 1.3642578, -0.30639648, -0.77441406, -0.8256836, -1.5957031, 1.8974609, -0.8979492, -1.171875, -1.1777344, -0.046020508, -1.6884766, 2.2949219, 0.8442383, -1.3798828, -1.2460938, 0.71533203, -0.12658691, 1.8623047, 0.25854492, 2.6738281, 2.0058594, 0.19995117, 1.4394531, -0.7050781, 1.1240234, 1.2558594, 0.3876953, 1.6054688, -2.5136719, -0.30419922, 0.1817627, 0.006816864, -1.8984375, -1.1787109, 1.2080078, 3.4726562, -1.1972656, -2.0332031, 3.5898438, -0.5209961, -1.4873047, 1.9169922, -0.89746094, -0.6040039, 0.69873047, 0.8198242, 1.0283203, 1.0849609, -0.2939453, -2.0527344, -2.1464844, 0.6352539, -1.2597656, -1.2177734, 1.0546875, -0.13635254, -1.9189453, -2.2734375, -0.3449707, -1.7978516, -0.64990234, 1.7578125, -2.734375, 2.2207031, 0.73095703, 1.3046875, 1.6845703, -1.1582031, -1.4609375, -0.9165039, 1.0146484, -0.31640625, 0.84765625, 0.8095703, -0.1484375, 0.49975586, -0.69433594, -0.2878418, -0.7324219, -1.9013672, -0.54345703, -2.4824219, -2.8066406, -0.54052734, -1.9208984, 0.49267578, -0.15429688, -2.8945312, -0.06518555, 0.08728027, -4.9453125, -1.6943359, -0.83691406, -2.6386719, 1.7607422, -0.9897461, -0.3581543, -0.19763184, -3.5507812, 0.22314453, -0.9140625, -1.7802734, 1.5224609, -0.6508789, -0.99902344, -0.5883789, -0.16699219, -0.5883789, 0.94091797, 0.4765625, -0.1821289, 0.8461914, -2.46875, 0.02027893, -2.8574219, -1.6591797, -2.7441406, 1.7783203, -2.1367188, -2.09375, 1.3847656, -0.7211914, 3.0585938, -0.28442383, 1.7773438, 0.82128906, -0.24438477, 1.3369141, -1.4033203, -1.5615234, -1.6513672, 1.5849609, -3.21875, -2.8359375, -2.1621094, -1.3066406, 0.17114258, 1.3916016, -0.69384766, 1.8222656, -0.9482422, 2.6464844, -1.2958984, -0.17297363, -0.26098633, 1.9746094, -0.19873047, -0.5942383, -0.2746582, -0.74658203, -1.2070312, -2.7929688, 1.3916016, 2.5566406, 0.23132324, 1.1855469, -0.079956055, -0.4428711, 0.9692383, -0.10772705, -3.2539062, 2.5097656, 1.0693359, -0.28295898, 3.3496094, -0.6323242, -2.6152344, -1.6591797, -0.04034424, 3.7753906, 1.7451172, 2.3769531, 0.9248047, 0.0748291, 0.9633789, 1.5214844, -0.64160156, -0.24707031, -0.8413086, 4.3164062, -1.7734375, -1.6083984, 1.9423828, 1.5634766, -1.6113281, -1.2568359, 2.8984375, -0.17810059, 3.2441406, 2.4609375, 0.099975586, 1.2509766, -0.6816406, 2.4804688, -0.06652832, -1.1503906, 0.96191406, -0.16467285, 0.83251953, -0.26245117, 1.5585938, 3.0214844, -0.27368164, 1.7783203, 1.3710938, 0.85595703, -1.6826172, 1.0166016, 0.3005371, 3.1914062, 0.19580078, 2.4824219, -0.39746094, 1.2050781, -0.56689453, -1.6533203, -0.00011175871, -2.6425781, 0.8642578, 1.9189453, -0.85009766, -0.030014038, 0.18225098, -0.056915283, 1.4150391, 0.27905273, 1.7744141, -3.2910156, -0.36279297, 1.4023438, -1.3310547, -1.1230469, -3.8085938, 1.7763672, -0.94189453, -0.08087158, 0.6142578, 3.4746094, -0.37695312, -2.1171875, 2.3144531, 0.75683594, -1.5634766, 2.390625, 0.6035156, -0.84228516, 1.3779297, -3.1484375, 1.6708984, -0.87158203, -0.033996582, 0.11578369, -0.2783203, -0.033935547, -1.5820312, 1.0361328, 1.2402344, 1.8583984, -2.1679688, -0.61083984, -3.3613281, 0.19262695, 0.20605469, -2.3828125, -1.3457031, 2.3417969, 1.2304688, 0.93359375, -1.6191406, 3.1230469, 0.17028809, -1.796875, 1.7851562, -3.390625, -1.6542969, -3.390625, -3.5195312, 0.3322754, -0.72265625, -2.0859375, 2.9570312, 1.5546875, -0.5024414, 1.3486328, 0.06951904, -2.6035156, -0.5786133, -1.4199219, -1.4951172, -1.0664062, -1.2021484, 1.7714844, -0.9135742, -2.8457031, -2.015625, -0.48217773, -1.8476562, 1.9160156, 2.0039062, -1.8066406, 1.859375, -1.3496094, 0.41333008, -0.4814453, -1.4892578, 1.3632812, -0.34594727, 0.39892578, -2.3886719, 0.6538086, 0.39746094, -0.40673828, 1.0068359, 1.7392578, -0.6464844, -0.56347656, -0.27563477, 1.1875, 2.9785156, -1.0195312, -3.3574219, -1.515625, 0.0713501, 0.64746094, -0.9741211, -0.02418518, -0.42504883, -0.72802734, 0.38085938, 2.1875, 1.9472656, 2.4160156, 0.7626953, -1.5117188, 0.6333008, -0.50683594, -1.7802734, -0.94970703, -0.63720703, 1.0703125, 0.046905518, -1.5966797, -1.1650391, 1.0439453, -1.3251953, -0.2932129, -2.3320312, 3.5488281, 2.6640625, 2.0878906, 2.6015625, -2.2089844, 0.32788086, 0.19702148, -0.20898438, -0.34179688, 0.18811035, -0.038879395, 1.1728516, 0.7651367, 0.64501953, -3.0097656, -0.04437256, -0.16418457, -1.5078125, 0.34716797, 0.051849365, 0.75927734, -1.8095703, -0.22631836, 1.4931641, -0.49316406, 2.515625, -1.7119141, -1.0712891, 0.20959473, -0.38989258, -0.43359375, 0.8774414, -0.34057617, 0.2548828, 0.9042969, 1.0087891, -0.7788086, -2.0703125, 0.2442627, 0.29833984, 1.515625, -0.26831055, 1.078125, 0.2788086, 0.8251953, -0.27124023, -1.4248047, 1.8710938, 2.2011719, -0.40893555, 3.234375, 1.3818359, -0.8417969, 1.7099609, -1.0712891, -2.8691406, 0.25219727, 0.45947266, -0.2890625, 1.6728516, 1.2792969, -3.9589844, -1.9580078, 2.2832031, -1.0136719, -0.12731934, -1.1884766, -1.890625, 1.1347656, -1.3574219, -0.67529297, -0.3154297, 0.8432617, -0.22485352, -0.5498047, 0.6376953, -1.8945312, 0.87841797, 2.9316406, 0.010871887, -2.4238281, 1.6025391, -0.17358398, 0.8378906, -0.115112305, -0.18908691, -2.5, -0.8232422, 4.140625, 0.92285156, 2.6484375, 0.1730957, 1.2041016, -1.7070312, 0.83984375, -1.4257812, 3.7617188, -2.3886719, -1.3076172, 2.4921875, -3.4257812, 0.59716797, -1.515625, 0.9716797, 0.7265625, 2.7441406, 0.5239258, -0.052490234, -0.7597656, 1.4013672, -2.5546875, -4.0585938, -2.703125, 0.7060547, 0.26660156, 0.25170898, 1.2626953, -1.1171875, 1.3144531, 0.5209961, 0.55029297, -1.8261719, -0.8520508, -3.0878906, -1.2363281, -1.4482422, 0.17822266, 0.6767578, 2.8984375, 0.75146484, 1.0742188, 0.9013672, -5.2851562, -1.6982422, 0.86279297, -2.2890625, 2.1210938, 2.0800781, 0.3881836, 1.4033203, 0.29370117, -0.21862793, -1.7929688, 2.2851562, -1.1103516, 0.53564453, 1.0527344, -0.6459961, -0.3251953, 0.08917236, -2.0039062, -0.099243164, -0.92089844, 1.5703125, 0.7915039, -0.2800293, 0.5942383, 1.9804688, -0.4272461, -1.59375, 0.6464844, 1.2773438, 0.81396484, -0.4658203, -0.92041016, -1.1083984, -1.9267578, -2.2089844, -0.69384766, -2.2402344, 0.75146484, -0.56152344, 1.5595703, 0.6333008, 0.42163086, 0.002439499, -0.04751587, -0.28149414, -1.4433594, 1.34375, -1.5019531, 1.6835938, 1.4980469, -1.4150391, -0.43481445, -0.6904297, 0.49414062, 0.8984375, 0.7158203, 0.2109375, 0.37109375, -0.06555176, -0.4140625, 0.45898438, 0.7495117, 0.4326172, 0.53515625, -0.8618164, 2.65625, 3.4335938, -0.93115234, 0.7949219, -0.03945923, 1.09375, -2.0800781, 3.5703125, -1.4511719, -2.3964844, 0.3408203, -1.9589844, -0.38085938, 0.6328125, -0.91015625, 0.18273926, -1.1533203, -1.9208984, -2.2753906, -0.18554688, -3.4511719, 1.4521484, 1.0410156, -1.8310547, -0.38964844, 2.8652344, 0.22692871, 2.1152344, 1.4150391, -0.008872986, -0.4423828, 1.1201172, -1.5107422, -0.5214844, 1.5419922, -2.2480469, 1.7607422, 0.24401855, -0.24865723, -1.4042969, 2.1582031, -0.2956543, 2.5625, 2.1210938, 0.9477539, 2.3105469, 2.0722656, 1.5234375, 0.49975586, 1.1875, 1.9912109, -1.0332031, 1.8837891, 1.953125, 3.3476562, 2.3515625, -0.6748047, 2.1289062, -0.6777344, -1.0097656, 0.54589844, 0.6191406, 1.5107422, -2.4238281, 2.0644531, 0.59521484, -0.01247406, -2.46875, 0.115722656, -0.71777344, -1.6894531, 0.42211914, 0.009788513, 3.5644531, -1.1738281, 1.1279297, 0.51660156, -0.27685547, 2.890625, -4.0195312, 0.2644043, 1.9746094, -1.3105469, -0.84472656, -0.29467773, 0.4111328, -0.103881836, 0.73046875, 0.69873047, 1.5644531, 1.3632812, -0.32763672, -1.7431641, 0.7319336, 0.30932617, 3, 1.0878906, -0.5126953, 1.1220703, -0.97021484, -1.0605469, -3.3320312, 2.8691406, 1.5546875, 1.2392578, 1.9755859, -2.2265625, 2.5429688, 0.13989258, 1.7216797, -1.5683594, 0.6826172, -0.3503418, -2.6796875, -0.9560547, 1.0488281, -0.15014648, 3.3867188, 1.25, -0.16748047, 2.8203125, -0.31420898, 1.3710938, 1.21875, 1.9179688, 0.20788574, 0.4831543, 0.55029297, 1.4648438, 0.6640625, -1.1630859, -1.6484375, 1.7431641, 0.8769531, 0.051849365, 1.3583984, 0.7758789, 0.26513672, 0.19262695, -0.4025879, 0.5629883, -2.4316406, -1.8066406, -1.0419922, 0.2536621, -0.7109375, -1.3183594, 1.2529297, 0.70214844, -0.91796875, 0.28808594, 3.7949219, -0.4543457, 3.2460938, 0.9790039, 0.021453857, -1.5986328, -0.4580078, 0.36914062, 0.27368164, -1.9384766, -0.36767578, 1.2470703, 0.6850586, -1.3203125, 0.1394043, 2.03125, 0.18408203, -0.076293945, 0.20117188, -2.2578125, -0.07714844, 1.3955078, -0.21252441, -1.1621094, 3.1445312, 0.97558594, -0.23071289, -1.3828125, -2.2636719, -1.3056641, -1.2929688, -0.72802734, 1.5673828, 2.1972656, 2.4746094, -0.15563965, -0.38452148, -4.9609375, -1.5478516, -0.3581543, 2.2363281, -0.9008789, -0.39770508, 0.38671875, -0.36523438, 1.7763672, 0.1385498, -2.4824219, 0.6635742, -1.5654297, 0.93652344, 0.41796875, 2.1796875, -1.0419922, 2.1269531, 0.72558594, 1.7138672, 1.6240234, -0.8051758, 0.71240234, 2.2890625, -0.5566406, -2.6582031, 1.5849609, -0.49853516, -0.093566895, -0.19946289, 1.1806641, 0.4633789, 1.4794922, 1.6181641, -0.32714844, -2.4121094]}, "B00O4D1CUG": {"id": "B00O4D1CUG", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 3\nDescription: The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600\u00b0 F.\nFeatures: \n", "embedding": [0.34765625, 1.6240234, 1.7519531, 0.05999756, 1.1054688, -1.5400391, 0.33007812, 0.3798828, 0.48779297, 0.3696289, 1.0371094, -0.9501953, -0.32910156, -2.3710938, -1.2314453, -1.6435547, -0.9970703, 1.1210938, 0.73291016, 2.5488281, 1.5566406, -0.35424805, 2.2558594, -2.7714844, 1.1894531, 1.2744141, 2.7304688, -1.6142578, 0.98583984, -1.5761719, 0.12573242, -2.671875, -0.8208008, 0.6508789, -1.8759766, 0.24169922, -0.54833984, -0.5473633, -3.4238281, -1.4199219, -1.5654297, 2.1621094, 3.3886719, -0.27172852, -0.7915039, 2.0136719, -1.5253906, 0.89501953, 0.25463867, 0.37475586, 1.3242188, 0.32128906, 0.0030536652, 0.08087158, 1.4482422, -0.48950195, 0.32128906, -2.7714844, 1.5605469, -0.54003906, 2.0371094, -0.04046631, -1.8164062, 0.58154297, 0.14611816, 1.0136719, -1.8544922, -0.3059082, 0.9057617, 0.55566406, 4.1054688, 2.5976562, 2.2675781, -0.80810547, 0.39038086, 0.65722656, -2.1484375, 1.9082031, 1.1181641, -0.3491211, 0.30029297, 1.3144531, 1.2841797, -1.4443359, 0.36010742, -0.77734375, -1.375, 1.0917969, 0.3864746, 0.97216797, -0.61816406, 1.5644531, -0.71191406, -3.0019531, 3.1308594, -0.38330078, -0.6699219, 1.2119141, 0.7504883, 0.05734253, 0.8149414, -1.46875, -2.7636719, -0.08618164, -1.1992188, 1.1630859, -1.0585938, 2.1210938, -1.421875, 0.7548828, -1.0039062, -0.18127441, 2.4765625, 1.5195312, -2.5566406, -1.5703125, 0.6303711, -0.35961914, 3.546875, 1.3515625, 2.9921875, -1.4755859, -0.53466797, -1.1181641, 0.20483398, 1.265625, -1.640625, 0.96484375, 2.8203125, 0.0012321472, -0.67285156, -1.5263672, 2.4863281, -1.1943359, -0.5683594, -1.2949219, -1.46875, 0.3996582, -3.0273438, -3.09375, -2.8378906, 2.4160156, 0.24645996, -0.52978516, -3.6074219, -0.6220703, -0.8984375, 1.1376953, 0.033721924, -1.5615234, 0.82910156, -1.3632812, -2.8222656, -0.00072288513, 1.8291016, 2.4238281, -1.6337891, -0.4404297, 3.9492188, 1.9492188, 1.4199219, -0.5053711, -1.1191406, 0.8652344, -2.1289062, -2.4765625, 1.3896484, 1.5996094, -1.78125, 2.1191406, 0.5341797, -2.5214844, -0.40600586, 0.97558594, -1.4667969, -2.3828125, 2.0820312, 3.8964844, 0.33203125, -0.2783203, -1.6347656, -1.453125, 2.5605469, -3.0585938, 0.41796875, -0.90771484, -1.3691406, -1.3134766, -0.15209961, -1.5488281, 0.3005371, -0.045898438, -0.22680664, 0.34521484, 1.4589844, -1.8154297, -1.390625, -1.8203125, 1.0107422, 1.4257812, -3.1679688, -1.5244141, 1.4541016, 1.890625, -2.6679688, -0.6118164, 2.203125, -0.68066406, 1.1533203, 0.5214844, -0.35961914, -0.05279541, 2.1621094, -2.3125, 1.7958984, -2.2480469, 1.09375, 0.5444336, 2.296875, 0.73583984, 1.2138672, -2.2070312, -0.29541016, 0.7871094, 2.8789062, 2.4960938, -1.1386719, -1.6269531, -1.0146484, -0.22460938, 0.89453125, 1.4082031, -0.91845703, -0.032928467, -0.26660156, 1.90625, -1.0576172, -1.4267578, 1.7705078, -1.0039062, -0.65771484, -0.74560547, -0.49023438, -1.203125, 0.9003906, 0.35205078, 0.5859375, -0.7055664, 0.7182617, 0.19018555, 1.8769531, -1.0830078, 1.6318359, -0.09338379, -1.2167969, -0.8378906, 0.11248779, 0.046936035, 1.1962891, -2.2128906, 2.2324219, 1.015625, -0.051727295, -1.7050781, 0.15808105, -2.0683594, 1.3681641, -0.47851562, 0.25610352, 0.64160156, 0.45532227, 1.4052734, 2.4003906, 1.1611328, 2.0449219, 1.8652344, -2.4316406, 2.5585938, -1.3066406, 0.75, 1.1162109, -0.8925781, 1.8095703, -3.7011719, -0.19958496, 0.75341797, 1.6533203, -0.3623047, -0.8754883, 0.7495117, 4.9492188, -0.82714844, -1.6357422, 2.3085938, 1.2460938, 2.78125, 1.9257812, 1.2089844, 0.17138672, -2.4824219, 3.5136719, 1.7138672, -1.2109375, 1.3769531, -1.4716797, 0.0140686035, -0.0033187866, -0.22070312, 1.6396484, -1.5498047, -1.0976562, 0.8666992, -1.0917969, 2.5, -3.2363281, -0.29516602, 1.4912109, -2.7285156, 0.9902344, 0.17163086, 0.42456055, 3.5605469, 2.1425781, -0.35009766, 0.6748047, -0.0076179504, -3.0820312, 2.5097656, 1.4345703, 0.25708008, 0.83691406, -2.8339844, 1.4140625, -1.6308594, 0.078186035, 0.54296875, -0.43896484, -3.34375, 1.7841797, -1.390625, -1.8515625, 2.9960938, -1.2802734, 2.9921875, -0.7675781, -0.9296875, -1.0683594, 1.4248047, -0.81933594, -1.265625, 0.95214844, 3.6660156, -1.0683594, -2.7324219, -0.6401367, -0.54541016, 0.40478516, 1.9833984, 0.13903809, 2.0859375, -0.23181152, -0.890625, -0.060150146, 1.21875, -0.124694824, -1.9619141, 3.0214844, -3.5507812, 0.9243164, -0.80078125, 3.6367188, 0.22302246, 1.3857422, -1.0976562, -0.32373047, 0.66796875, -1.3642578, 2.0234375, 1.2910156, 1.0810547, 0.6694336, -1.7363281, 0.07757568, -0.4970703, -3.2226562, 1.2958984, 1.2802734, -0.9658203, -2.8515625, -3.3339844, -0.34472656, -1.140625, -0.69091797, 1.109375, -0.3347168, -2.6230469, 0.29833984, -0.6699219, -0.6142578, 0.7871094, -1.328125, 0.21960449, -1.8916016, -0.3527832, 0.57470703, -0.7416992, 0.64501953, -1.6357422, 0.19567871, -0.33007812, 0.7841797, 0.08026123, 0.8925781, 0.26000977, 1.4638672, -3.1621094, 1.4658203, 0.77197266, -0.20568848, 0.6855469, -1.7861328, -0.23022461, -2.6503906, -1.0527344, 3.65625, -0.9199219, 0.14587402, 0.39892578, 1.2587891, 0.3076172, 1.2011719, -3.2636719, -1.1074219, -0.578125, 0.296875, -3.4921875, 0.1227417, 1.5107422, 2.0742188, -0.94433594, -0.43896484, 2.2949219, -0.6899414, 1.421875, 2.1679688, -0.42529297, 0.82470703, -1.0693359, -0.7783203, 2.2226562, -1.328125, -0.0053100586, 0.39672852, -1.0556641, 1.1923828, 0.6088867, -0.7558594, -0.36669922, 2.8828125, 2.1777344, 1.671875, -0.41479492, 0.66015625, -1.0400391, 0.9394531, 0.62939453, 0.9741211, -0.8334961, -0.82470703, -0.15197754, 0.6582031, 1.6035156, -1.2421875, -1.9765625, 0.25439453, -0.2529297, -1.2392578, -0.2010498, 0.94189453, -0.7753906, -1.0244141, 1.2421875, -0.17932129, 0.011001587, 0.42993164, -0.11529541, 3.328125, -1.5419922, 0.44702148, -1.6181641, -1.3261719, -1.0498047, -0.75927734, -1.8251953, -2.296875, -3.3378906, -0.70947266, -1.7333984, 4.5078125, 0.30004883, -2.0488281, -1.3017578, -0.7890625, -0.013954163, -0.2088623, -0.9370117, -1.0722656, -3.4316406, -0.9916992, 0.21801758, 1.5166016, 0.20751953, 0.52685547, 0.04269409, 2.5566406, -1.2597656, 1.9697266, -1.3496094, -1.4589844, -0.8251953, 1.4199219, -1.5830078, 1.2226562, 0.78222656, 2.0976562, -0.07165527, -2.4492188, 0.025939941, -0.15356445, -2.0253906, -2.7734375, -1.8447266, 1.2236328, -0.10656738, 1.8105469, 2.5507812, 0.11303711, -0.051361084, 0.5839844, 2.5664062, -1.6210938, -1.6904297, 1.1230469, 3.9863281, -1.859375, -2.2988281, 2.2714844, 0.29858398, -1.8818359, 0.14929199, -0.8515625, -1.5986328, -0.058135986, 1.234375, -0.9501953, 1.0068359, 0.19824219, 0.5727539, 0.19580078, -1.5214844, 1.0009766, -0.21520996, -1.0732422, -3.6679688, 0.8808594, 1.1982422, 0.76708984, 0.95410156, 1.890625, 3.7265625, -1.0439453, 0.7290039, 0.6777344, 3.9316406, 0.5073242, -1.8330078, 0.8779297, -1.5507812, 0.37963867, -3.0585938, -0.26245117, -0.94091797, -2.2675781, 2.9960938, 0.7705078, -0.23303223, 1.4931641, -0.32128906, -1.0820312, 0.875, 0.6357422, -2.5117188, 0.1282959, 2.2265625, -1.0791016, -1.3984375, 0.62158203, -1.3798828, -0.47924805, -0.14587402, 0.12792969, -1.3300781, -0.90966797, 3.3320312, 0.7998047, 0.054656982, -0.73339844, -2.0625, -2.2324219, 0.48583984, 1.1367188, 0.28466797, 0.52685547, 0.89746094, 1.8847656, -1.1279297, -0.67578125, 0.43017578, 1.3046875, -2.2675781, -1.4101562, 0.20239258, -1.2509766, -3.5664062, 0.40649414, -1.3046875, -1.4082031, 2.0507812, -1.0107422, -0.6816406, 1.2900391, 0.066101074, -0.47460938, -0.54833984, 1.5996094, 1.4091797, 0.7397461, 2.4902344, 2.453125, 0.13317871, 1.7792969, 0.5029297, 0.57910156, -0.1038208, 1.9287109, -0.33251953, 0.4416504, -0.56591797, -0.24316406, 1.2617188, -0.31396484, 0.8017578, 3.1914062, 0.515625, -0.73779297, -0.50097656, 1.9130859, -0.70703125, -0.78466797, -1.0185547, -2.4179688, 2.3222656, -0.02218628, -1.8037109, 0.6069336, 2.0019531, 0.83740234, 1.3632812, 0.46362305, 0.24694824, -0.95703125, -0.96484375, -2.7871094, -1.5341797, 2.4960938, 0.8930664, -0.23815918, 0.9970703, -0.21569824, 2.6875, 1.6855469, 1.8203125, -1.1259766, 0.40527344, -0.16625977, 0.7348633, 0.375, -1.3994141, -0.7944336, 3.21875, -0.57177734, 1.4912109, 0.7753906, 0.27319336, 4.0820312, -1.4462891, -1.3544922, -0.671875, 0.3491211, -2.6992188, -0.6425781, 1.9042969, 1.7412109, 1.3564453, -1.0888672, -2.2460938, -1.5996094, 0.6928711, -0.71972656, -0.8466797, -2.3046875, -0.89697266, -3.5, -4.8046875, -1.0693359, 0.0236969, 0.11682129, 0.6748047, 0.2019043, -2.0800781, 0.9458008, -2.4375, -0.19274902, -1.8818359, 0.19018555, -2.6992188, -0.43798828, -1.4863281, 0.81933594, -0.08929443, -0.09197998, -0.89941406, -0.6166992, 2.8261719, -2.6191406, -4.0625, 3.046875, -0.8857422, 0.42871094, 0.6479492, -1.8369141, 2.1777344, 3.7910156, -0.1730957, -1.6455078, 0.5908203, -2.2851562, -0.1430664, 0.5229492, -2.3710938, -2.640625, 2.4765625, 2.046875, 0.5258789, 4.5234375, 1.4658203, -2.28125, -0.4885254, 0.016784668, -1.09375, -0.015266418, 0.49780273, 1.6083984, -0.87841797, 1.2285156, 1.6582031, 0.9770508, -4.1328125, -0.38085938, 1.2060547, -1.09375, -1.6162109, 1.1582031, -1.0380859, 2.0410156, 0.35083008, 1.8193359, 0.2006836, -1.8886719, -0.3178711, 0.38842773, 2.2207031, -0.47509766, 4.4960938, -3.1132812, -3.1972656, -2.4199219, -1.5585938, 3.3789062, 0.7753906, -2.3046875, -0.0011777878, 0.8803711, -1.3603516, 0.33032227, 0.16491699, 0.06921387, 0.0066833496, 0.023803711, -2.65625, 0.9433594, 0.72998047, -1.5068359, -0.7558594, 1.2890625, -1.6357422, 0.2841797, -0.64404297, 1.8886719, -2.3359375, -1.375, -1.8916016, 0.20166016, -0.73095703, 0.22888184, 0.5410156, -1.6748047, -0.2220459, 1.2666016, 0.41918945, -2.3828125, -0.33374023, 1.0400391, -0.7973633, 1.5859375, 2.4082031, -2.203125, 0.7734375, 1.8007812, 1.5849609, -2.2832031, -0.052459717, -1.4404297, 1.6591797, 2.4238281, -2.5039062, 1.1083984, 2.0527344, 0.20922852, 0.017486572, 0.7416992, 0.9794922, 1.7958984, 0.60546875, 2.3203125, 1.1162109, 0.92822266, 2.4453125, 0.25610352, 0.7416992, 3.3671875, 0.6796875, 1.90625, 2.1074219, 0.06677246, -0.9902344, -0.4104004, 0.48413086, -1.53125, -1.4755859, -1.5498047, 1.8769531, -0.6816406, -2.0117188, -1.1435547, -1.3183594, -0.7558594, -0.10559082, 0.8598633, -2.5527344, -1.3417969, -0.18664551, 1.1816406, 1.3798828, 1.2480469, -1.9960938, -0.9277344, 0.35546875, 1.8291016, -2.8066406, 0.2010498, -1.6298828, -1.6767578, 1.0087891, 2.0078125, -0.2006836, 1.4746094, 1.3242188, 2.2890625, -0.23925781, 1.03125, 1.5986328, -2.0019531, -0.27148438, 1.2714844, 0.93847656, 0.07019043, -0.8203125, 0.5600586, 0.4501953, -0.90234375, -3.3125, 2.9335938, -0.31762695, -0.3425293, 0.9916992, -0.39086914, 0.08728027, -4.7773438, 3.1660156, -0.5932617, 0.5703125, 2.3417969, -4.2226562, 0.08331299, -0.14233398, 0.5839844, 3.9433594, 0.5058594, -2.1972656, -1.2539062, 0.09875488, 0.061828613, -0.97998047, -1.0058594, -0.24414062, 1.1513672, -3.3496094, 3.1582031, -0.48168945, -0.45776367, -0.37280273, 4.5585938, 1.7333984, 0.16552734, -1.2851562, -0.84716797, 2.265625, -1.625, -0.11254883, 2.1445312, 0.98583984, -1.453125, 0.5620117, 0.09802246, 0.34716797, 0.5854492, -0.41015625, 1.6816406, -4.2773438, -0.44506836, 1.8486328, -1.0439453, -0.23864746, 1.6757812, -1.5839844, -1.2480469, 1.1494141, 1.6347656, -2.1933594, -1.5253906, 0.23083496, 2.3710938, 0.5385742, 0.1303711, 0.96728516, -2.1035156, -0.8408203, 0.9453125, -0.42211914, -0.8798828, -0.9091797, 0.27978516, 0.28833008, -2.1230469, 0.25952148, 0.03274536, -0.7192383, 1.2158203, -4.40625, -1.0986328, -2.3320312, -0.8383789, 1.8115234, 2.3574219, -0.23083496, 1.9902344, 0.31103516, -3.1582031, 0.5048828, -1.7304688, -0.14770508, 1.0419922, -0.5913086, 2.0820312, 0.94433594, 3.1230469, -0.57373047, -1.4443359, -0.0690918, 1.1396484, 1.8554688, -0.7241211, 2.9160156, -0.42211914, -0.43139648, -0.58154297, 3.1425781, -0.62597656, -0.69677734, -0.98046875, 0.68847656, -0.39794922, -1.2236328, -0.38989258, -2.453125, 0.39916992, -0.58154297, 0.4086914, -0.09088135, -1.5400391, -0.5058594, -2.2226562, -0.96533203]}, "B00O4D1F44": {"id": "B00O4D1F44", "original": "Brand: Bernzomatic\nName: Standard Propane Fuel Cylinder - Pack of 6\nDescription: Standard propane fuel cylinder pack of 6 de bernzomatic\nFeatures: \n", "embedding": [0.36572266, 0.10723877, 0.84228516, -0.99658203, 1.59375, -0.33081055, 0.11853027, -1.5390625, -0.48242188, -0.6850586, 1.8798828, 0.5864258, -0.39331055, -1.6240234, 0.28125, -1.5546875, -1.6542969, 0.20007324, 1.7314453, 1.625, -0.24914551, -0.070617676, 1.8095703, -2.6425781, 0.23583984, 3.5332031, 8.828125, -0.4963379, -1.6240234, -0.8173828, -0.41967773, -1.5615234, -1.3779297, 0.8569336, -1.7548828, -0.80908203, 1.0263672, -2.0820312, -2.5917969, -0.52246094, 0.068115234, 1.4970703, 2.1425781, 0.9277344, -0.6640625, -1.1923828, -0.4091797, -1.8652344, 0.05178833, 0.20605469, 2.2246094, 1.8125, -1.3876953, 0.19140625, -0.98339844, 1.2890625, 1.9980469, 0.35131836, -0.8120117, 1.2714844, 1.2636719, -0.27416992, -0.80810547, -0.19848633, -2.3261719, 1.96875, -2.0371094, -0.06878662, 1.9609375, 0.80322266, 2.8496094, 1.0947266, -1.3261719, -1.5136719, 0.6459961, 0.4284668, -3.3554688, 2.6640625, 0.044525146, -3.1347656, -0.32055664, -0.94384766, 0.36254883, -2.5273438, -0.60009766, -0.5908203, -0.6044922, 0.04928589, 0.42919922, -0.22558594, -1.3339844, 0.2758789, 0.35961914, -4.515625, 2.4902344, -1.3564453, 0.27026367, 0.8881836, 0.0692749, 1.3310547, 1.0703125, -0.49291992, -0.87841797, 0.67578125, -1.2783203, -0.4086914, 0.2553711, 1.1582031, -0.12988281, -0.4267578, -2.4472656, -2.8496094, 3.7304688, 1.9394531, -0.0042648315, -1.1767578, 1.2470703, -0.42138672, 2.578125, -0.05114746, 2.4785156, -2, 0.34716797, 0.052734375, 0.14672852, 0.7602539, -1.2070312, 0.68847656, 4.0976562, -1.4912109, 1.1132812, -1.4462891, 3.7753906, 0.17236328, -0.20825195, -1.9560547, -2.2714844, -3.3125, -1.4726562, -1.4287109, -2.9804688, 1.1416016, 0.35864258, -0.28710938, -4.1835938, -0.1182251, 0.57373047, -0.047851562, 0.15881348, -1.2353516, 1.3994141, -2.9316406, -1.2617188, 0.11236572, 1.5830078, -0.31445312, -2.3496094, -1.4736328, 1.6503906, 3.0351562, 1.0546875, 0.52734375, 0.34106445, 1.8623047, -2.5839844, -3.546875, 1.7958984, 1.140625, -1.1923828, 2.1425781, 0.6855469, -2.0859375, 0.105773926, 1.1787109, -1.0927734, -0.91015625, 1.0097656, 1.7255859, 2.7890625, -0.77783203, -1.3896484, 0.17102051, 0.4494629, -2.9160156, 1.1904297, -0.5024414, 0.68066406, 0.055664062, 0.8808594, -0.1394043, -1.1601562, 0.33764648, -1.8193359, 0.72314453, 0.81933594, -2.4667969, -0.57910156, 0.18847656, 0.875, 1.9921875, -0.5126953, -0.32763672, 0.34765625, 1.2246094, -1.6669922, -2.0214844, 2.890625, -0.8051758, 1.4189453, 0.2409668, 1.3154297, 0.026290894, 2.3378906, -0.72509766, 0.0020561218, -2.0351562, 0.8378906, -0.38354492, 2.8457031, -0.70458984, 1.2480469, -0.8354492, 0.55371094, -1.1953125, 3.484375, 2.421875, 0.16296387, -2.0800781, -1.1152344, 0.041107178, 0.86279297, 1.9492188, -0.85302734, 0.81884766, 0.33496094, 2.2128906, 0.56884766, -1.4765625, 3.046875, -1.4287109, 0.03225708, 1.0595703, 0.2479248, -1.6845703, -1.0761719, 0.3076172, 0.38598633, 0.5073242, 1.8945312, 1.9755859, 1.3896484, -0.34765625, 1.2138672, -0.21044922, -1.1523438, -0.14025879, 0.66308594, 0.04949951, 0.93652344, -3.609375, 2.2753906, -1.1494141, -1.7763672, -1.9189453, 1.8779297, -1.3339844, 0.66259766, -1.0019531, -0.5385742, -0.26538086, 2.0019531, 0.71484375, 1.7597656, -0.5288086, 2.3164062, 1.3847656, -2.4863281, 2.8378906, -0.43286133, 0.94140625, -0.80859375, -1.3251953, -0.054229736, -2.5253906, 0.6464844, 0.7763672, 0.7739258, -0.17785645, -2.4589844, -0.12683105, 6.1054688, -2.8886719, -1.7646484, 3.3671875, 1.7207031, 2.09375, 0.44482422, -0.6538086, 0.09588623, -1.3193359, 0.953125, 1.5546875, 0.50927734, 2.6875, -1.4970703, -0.84277344, -0.7402344, 0.51904297, -1.2919922, -1.2050781, 0.4951172, 0.18286133, -2.6445312, 2.0976562, -2.4394531, -0.5341797, 1.6367188, -2.6113281, 1.2109375, 0.73828125, 1.0703125, 2.4511719, 1.2392578, -0.7788086, 0.84765625, 1.1308594, -2.1171875, 1.9443359, 1.5585938, 1.1064453, -0.38134766, 0.1484375, 0.5307617, -3.0351562, 0.29760742, 0.1116333, -2.4335938, -2.9121094, 1.0185547, -1.1757812, -1.0263672, 1.9785156, -2.3027344, 1.9804688, 0.9663086, -4.1640625, -1.9902344, 1.1591797, -0.7270508, -2.1738281, 0.2253418, 1.8847656, -0.53466797, -3.7753906, -2.3457031, -1.4892578, 0.23461914, 2.2558594, 0.28222656, 1.5185547, 0.90478516, -0.95703125, -1.8681641, 1.3300781, -1.3076172, 0.34423828, 1.7763672, -2.1289062, 1.9492188, 0.19482422, 4.0117188, -0.79785156, 2.5253906, -2.2871094, 0.57470703, 0.46166992, -1.6748047, 4.0234375, 0.72265625, 0.32617188, 1.2724609, 0.056549072, 0.04864502, -2.0996094, -4.28125, 0.9121094, 0.14038086, -0.38867188, -1.4189453, -3.1191406, -0.43579102, -0.26635742, -0.20690918, -0.97802734, -0.69140625, -2.4746094, -0.03753662, 1.0966797, 0.94384766, 1.4951172, -1.1806641, -0.4975586, -0.62158203, -0.88134766, 1.0605469, -0.59228516, 0.36816406, -0.9121094, 1.4394531, -0.27001953, 0.25463867, 0.9003906, -0.87597656, -0.43798828, 0.79833984, -2.7324219, 0.67041016, 0.32763672, 1.1689453, 3.265625, 0.1262207, -0.38012695, -1.5908203, 0.24035645, 3.5761719, 1.3144531, 0.90478516, 2.2988281, 0.58984375, 1.3183594, 1.40625, -1.4980469, -1.1923828, -1.0146484, -1.2666016, -0.5756836, -0.8881836, 0.34887695, 0.48364258, -0.3479004, -1.5986328, 3.0566406, -0.1550293, 2.5429688, 1.0996094, -1.0400391, 1.8154297, -0.56884766, -0.07208252, 1.8896484, -1.5029297, 0.86572266, 1.1416016, 1.3115234, 1.3984375, 0.75927734, 0.12597656, -0.5029297, 1.5771484, 0.099975586, 1.3730469, -0.6826172, 2.0449219, -0.88720703, 0.30249023, 0.6489258, 1.9355469, -0.52734375, 1.6875, 0.96777344, 1.6220703, 0.8520508, -0.95654297, -1.3232422, 1.4335938, -2.0957031, -0.55908203, 1.1796875, 0.13305664, -1.0439453, 0.13696289, 0.9301758, 0.7397461, -0.7939453, 0.3737793, -0.46557617, 1.7158203, -1.7910156, -0.421875, -0.81591797, -0.26245117, -0.2578125, -0.043273926, -0.7661133, -1.3007812, -1.7617188, -1.4667969, -0.80029297, 2.0683594, 1.6777344, 0.13708496, -0.61376953, 0.92578125, -0.06137085, 2.421875, -0.5756836, -0.34960938, -2.8925781, -0.2680664, 1.3251953, 0.5888672, 0.7163086, 1.109375, -1.8046875, 0.15283203, -1.5371094, 0.83740234, -2.7246094, -1.8828125, 0.41210938, 0.4169922, -0.20019531, 2.8886719, 0.02079773, 1.8701172, -0.37182617, -0.78515625, 1.9345703, -2.0800781, -0.9375, -2.046875, -2.078125, 1.3984375, 0.9326172, 1.2675781, 2.4121094, -0.056640625, 0.051361084, 1.1728516, 2.0976562, -2.9589844, -0.74121094, 0.70947266, 2.3632812, 1.0087891, -0.44848633, 1.8896484, 0.09881592, -2.9667969, -1.3496094, -1.0664062, -1.6894531, -1.4589844, -0.21972656, -0.86083984, 0.14611816, 1.2060547, -0.17541504, -0.033050537, -0.9267578, 2.140625, -2.4609375, -0.98291016, -1.2509766, 1.9208984, 1.7421875, 0.89453125, 0.32861328, 0.88427734, 2.6171875, -1.7568359, -1.1396484, -0.23071289, 2.9628906, -0.33911133, -2.6992188, -0.1574707, -1.4091797, -0.70703125, -3.5820312, 0.6010742, -0.61035156, -1.5283203, 0.98779297, 1.9560547, 0.22509766, 1.8916016, -0.47192383, -0.87158203, 1.2333984, 0.066589355, -1.7978516, 0.16589355, 0.23022461, 1.0390625, -0.17077637, 0.9482422, -2.0605469, -0.6274414, -0.45239258, -0.7324219, -2.5195312, -0.68896484, 1.5927734, -0.6738281, -1.234375, -0.5546875, -1.5273438, -0.93847656, 1.6972656, 2.6679688, 1.1572266, -0.15771484, -0.14501953, -0.72753906, -0.31054688, -1.0283203, -0.70654297, 1.4853516, -2.4902344, -0.0064697266, -0.34887695, 1.2158203, -2.5097656, -1.3349609, -1.8847656, -2.2070312, 2.703125, 0.3203125, -0.75927734, 2.3164062, 1.9707031, 0.7128906, 2.3535156, 2.2558594, -0.34570312, 1.0136719, 0.37524414, 0.90527344, -1.6904297, -0.54541016, 2.5703125, 0.1439209, 0.3203125, 0.8808594, -0.62890625, 0.40429688, -0.96728516, -0.14978027, 1.4521484, 0.007633209, 1.8515625, 2.234375, 1.0029297, -2.0859375, -0.578125, 0.69384766, 0.08905029, 0.09631348, -1.65625, -2.6679688, 1.0185547, 0.984375, -3.7890625, -0.40820312, 1.7304688, 0.22741699, 2.4414062, 0.49389648, -0.091308594, -1.7695312, -0.6010742, -2.5683594, -0.8618164, 3.4140625, 1.6171875, -0.066589355, -0.0047912598, 0.2770996, 0.09881592, 2.390625, 1.2236328, -1.8935547, 0.60302734, 1.5625, -0.8256836, -1.4648438, -0.41552734, -0.16845703, 2.2636719, -0.7128906, 1.5673828, 0.85546875, 1.6904297, 3.7011719, -2.1035156, 0.05444336, -2.4316406, -0.08026123, -2, -0.48266602, 0.88671875, -0.0914917, -0.20581055, -1.5976562, 0.99902344, -0.79541016, 2.1621094, 0.6850586, -0.6923828, -0.42504883, -0.03338623, -3.2089844, -5.1601562, -2.9667969, -0.71191406, 0.7055664, -0.20275879, -0.112976074, -1.2929688, 2.1503906, -0.98828125, 1.1220703, -2.828125, 0.7832031, -2.359375, -2.2421875, 1.0742188, -0.18981934, -0.6074219, 0.008041382, -1.9082031, -1.2666016, 2.2597656, -1.0273438, -4.765625, 2.1503906, -1.7578125, -0.57714844, 0.16040039, -1.2392578, 2.296875, 3.6113281, 2.1269531, -0.7192383, 1.2216797, -2.71875, -0.029632568, -0.11730957, -2.2285156, -1, 2.1777344, 1.2998047, -0.32348633, 4.5742188, 2.3886719, -1.9755859, -0.38232422, -0.032226562, -2.2265625, 0.9433594, 0.033813477, 3.3984375, -1.0371094, 0.81933594, 2.3613281, -0.71875, -2.6816406, 0.013694763, 0.92822266, -0.97802734, -1.4091797, -1.1845703, -1.3535156, 0.91259766, 1.3076172, 0.7753906, 0.40454102, 0.4951172, -0.5776367, 1.4199219, 1.5332031, -3.0332031, 3.421875, -0.6459961, -3.0488281, -3.296875, -0.64160156, 2.328125, 2.2460938, 0.18432617, 0.2421875, -0.8666992, -1.6357422, -0.3798828, 0.22509766, 0.027450562, 1.34375, -0.026672363, -0.13317871, 0.04425049, 1.9472656, -0.70410156, 0.93408203, 0.31176758, -0.49926758, -0.0546875, 1.3564453, 1.2304688, -0.7573242, -0.36010742, -2.7246094, 0.05178833, 0.6933594, 0.20751953, 0.83984375, -1.2792969, -0.10845947, 1.5126953, -0.21008301, -3.0996094, -0.43041992, -0.103759766, -1.2880859, 1.7265625, 1.4433594, -3.4277344, -0.10333252, 0.30493164, 0.95410156, -2.4628906, -0.38598633, -0.58496094, 1.4560547, 2.1015625, -2.4609375, -0.08630371, 1.5898438, 1.2128906, 0.060455322, -0.11340332, -0.41552734, 0.7548828, 1.8359375, 2.0136719, 1.5927734, 0.98828125, 0.58154297, -0.056640625, 2.1640625, 2.0800781, -1.7685547, 2.1992188, 0.99609375, 0.87109375, -0.4951172, -0.13928223, -0.1138916, 0.12512207, -0.3930664, -1.3505859, -0.07385254, -0.18920898, -2.2519531, -0.30419922, -1.1894531, -0.05935669, -0.08166504, -0.60058594, -0.9013672, -1.7744141, 0.91796875, -0.96484375, 1.8564453, 0.012260437, -0.17541504, 0.015434265, -1.1474609, 2.734375, -1.1640625, -1.3486328, -1.3251953, -1.7714844, 0.029663086, 0.06137085, -0.051574707, 0.5961914, 0.859375, 0.4296875, 0.80908203, -0.11932373, 2.7949219, -2.9355469, 1.5439453, 1.2490234, 0.6323242, -0.32861328, -0.8095703, 2.4101562, 1.4921875, -1.1064453, -1.8701172, 1.7910156, 0.74121094, 0.10650635, 0.6401367, -2.640625, -1.0322266, -3.1015625, 0.2409668, -0.828125, 1.6357422, 1.6591797, -3.203125, -0.14904785, 0.07910156, -0.004142761, 2.96875, 0.38867188, -1.1826172, -0.44580078, 0.63671875, 1.4326172, -0.8618164, 1.3183594, 0.78271484, 0.78466797, -3.8261719, 3.6933594, -1.0175781, 1.5595703, 0.18615723, 4.3242188, 3.1523438, 0.9038086, -0.9423828, -0.07910156, 1.5078125, -0.47192383, -0.6582031, 1.5380859, -0.45385742, -2.1894531, 0.95654297, -0.21325684, -0.21057129, -0.46948242, -0.14404297, 0.041168213, -1.75, -0.85546875, 2.34375, -1.5751953, -0.083862305, -0.16894531, -0.93896484, -1.9785156, 1.046875, 2.2089844, -1.5546875, -0.34838867, 0.48632812, 1.9375, 1.5615234, -0.16369629, 1.4746094, -0.103515625, -0.6923828, 0.8354492, -0.33447266, -2.7421875, -0.84228516, 1.5703125, -1.1123047, 0.34155273, -0.65478516, 0.93652344, -0.86328125, 0.32299805, -0.828125, -0.4868164, -0.3720703, 0.12188721, 1.1767578, 1.6660156, -0.64990234, 1.1474609, -0.0496521, -2.5625, -1.8095703, -2.8925781, 0.36914062, 1.6923828, -1.4716797, -0.24377441, 3.5039062, 4.8867188, -1.1708984, -0.97265625, 1.0283203, -0.9169922, 1.9658203, 0.7163086, 1.3125, -1.4306641, 0.11212158, 0.19567871, 3.1054688, 0.064819336, 0.75927734, -1.5087891, -0.4411621, -1.78125, 0.1194458, -0.5942383, -2.0429688, 0.0025959015, -2.7246094, -0.4975586, -0.6591797, -1.4980469, -0.13269043, -0.63671875, 0.6328125]}, "B08J3WDZCP": {"id": "B08J3WDZCP", "original": "Brand: SNAN\nName: SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification\nDescription: SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!\nFeatures: \ud83d\udd25\u3010 FASHION DESIGN\u3011This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc.\n\ud83d\udd25\u3010 SAFE & WARM BONFIRE EXPERIENCE\u3011 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere\n\ud83d\udd25\u3010DIMENSIONS & PACKING INCLUDED\u3011Overall table size : L32\" x W32\"x H25\", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual\n\ud83d\udd25\u3010CONVENIENTLY ASSEMBLE & MULTI-FUNCTION\u3011Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.\n", "embedding": [-2.75, 2.8710938, 0.7729492, -1.1835938, 2.3027344, -0.546875, 0.7685547, -0.6855469, 0.29467773, 2.7871094, 0.35986328, -0.8076172, 0.10620117, -2.5097656, 0.25561523, 1.0947266, -0.36938477, -0.071777344, 0.34179688, -1.1650391, 1.7792969, 0.26245117, 1.0351562, -1.7675781, 0.61816406, -0.29541016, 2.8339844, -3.2285156, -1.3203125, -2.5429688, 1.46875, 1.4130859, -0.67089844, 1.5966797, -2.2675781, -1.6943359, -0.96728516, 1.0332031, -1.2509766, -0.16699219, -1.2958984, -0.8383789, 2.578125, 0.5996094, -2.8164062, 1.09375, 0.5366211, -1.3203125, -0.74658203, -0.27368164, 1.109375, -0.08807373, 0.7211914, -0.20751953, -1.53125, 0.82128906, -0.45996094, -2.78125, 0.96728516, 0.20007324, 2.4492188, -0.38232422, -0.31884766, 1.8652344, -1.2519531, 0.9580078, -0.4921875, -0.43798828, 0.22387695, 0.77734375, 1.4746094, 0.51660156, -0.49121094, 0.8774414, -0.64160156, -1.1875, -4.2578125, 2.1523438, 2.6503906, -0.44677734, -0.12475586, 1.3554688, 1.6572266, -2.4570312, -1.4003906, -0.14123535, -0.20751953, -1.9833984, 0.31201172, 2.25, -1.1484375, 3.5097656, -0.32373047, -3.3105469, 1.9003906, -2.2460938, 0.32177734, 0.052825928, -1.6181641, 0.26538086, 0.6171875, -0.083496094, -0.34521484, 1.8027344, -2.9570312, -0.073791504, 1.0546875, 1.3544922, -0.0435791, 0.94970703, -1.0244141, 0.09954834, 1.5615234, -1.2363281, -0.39868164, 1.8896484, 0.11419678, 2.234375, 3.4179688, 0.34448242, 5.3007812, 1.1445312, 0.16760254, -0.16210938, 1.1630859, -0.4753418, -1.4814453, 0.3779297, 2.1777344, -1.9765625, 0.5229492, -2.2324219, 0.26757812, -0.43041992, -2.8554688, -0.87597656, -1.2587891, -1.3789062, -3.9765625, 0.32910156, -3.015625, 1.8085938, 1.0693359, 0.46362305, -3.1523438, -0.119262695, -0.8955078, 2.390625, 1.0244141, -2.7578125, -0.8183594, -0.41235352, -0.14929199, -3.1914062, 0.203125, -2.0800781, 1.0449219, -2.5019531, 4.3125, 1.5957031, 1.8623047, -1.2304688, -0.71435547, 1.2910156, -0.70751953, -1.5390625, 3.3027344, 1.7089844, 0.63183594, 0.81689453, 0.030639648, 0.2746582, -1.6474609, -0.029800415, 0.44335938, -0.13354492, -0.084228516, 2.0878906, 2.9980469, -1.4130859, -0.9448242, -1.703125, 0.9663086, -0.6254883, -1.4970703, -1.7363281, -0.012260437, -1.1357422, 0.35180664, -1.2011719, -1.3251953, 0.82128906, -1.7587891, -0.13745117, -0.35766602, -2.0703125, -3.3945312, -2.9140625, 2.7539062, 1.7929688, -0.034698486, 2.0742188, -2.2617188, 1.7871094, -3.2617188, -2.3261719, -2.1210938, 2.5859375, 1.8486328, 1.1630859, -0.29785156, -1.5917969, 1.9433594, 0.3232422, 0.82666016, -0.2241211, 1.7626953, 1.6933594, 0.38183594, 2.0585938, -0.079833984, -1.2890625, 2.078125, 1.4150391, 1.7167969, 1.2070312, 0.8491211, -0.50390625, -0.96191406, -1.6865234, 2.8339844, -1.0029297, -0.2861328, 1.3173828, -0.79003906, 3.5195312, 0.6816406, -1.1806641, 1.8808594, -1.546875, 1.9462891, -1.8710938, -0.95751953, 0.8515625, -0.11907959, -0.5527344, 0.66064453, 1.3525391, 1.6894531, 1.3574219, 0.064331055, -1.1376953, 1.0537109, 0.7158203, -0.11425781, 0.4807129, -0.31176758, -0.81152344, 0.5673828, -2.2265625, 1.7402344, 0.98876953, 1.2324219, 0.6381836, 0.065979004, -2.5898438, 1.9697266, 0.95214844, -1.4648438, -0.68115234, -1.5078125, -0.42456055, 3.3457031, -0.19958496, -0.57666016, -0.91845703, -1.1591797, 3.1699219, 0.71728516, 2.3007812, -1.3691406, -2.2695312, 1.2041016, -1.7646484, 1.0332031, 0.6142578, 1.0742188, 1.5214844, 0.040863037, 1.2890625, 3.1308594, -1.0849609, -2.0976562, 1.9931641, -0.8466797, -0.1463623, 0.52197266, 1.3271484, 0.91845703, -1.2998047, 0.37329102, 2.6816406, -0.14111328, 2.9375, -2.1386719, -0.23718262, 0.6142578, -3.5371094, 0.73046875, -0.64746094, 0.93896484, -1.8212891, -0.5805664, 1.7216797, -1.7568359, -1.8925781, 1.7490234, -1.9091797, -0.1694336, 1.6835938, 0.08203125, 0.9482422, -3.1054688, -0.86035156, -0.29785156, 2.59375, -1.5722656, 0.6982422, 0.3894043, 0.3671875, -0.79248047, -1.0029297, 1.4316406, -3.0976562, -0.9716797, -1.9052734, -1.3408203, -1.34375, -0.33398438, -1.7470703, 0.24230957, 0.94091797, -2.453125, -0.1821289, -0.72558594, -2.3613281, -0.76171875, 1.3671875, -2.0625, 0.38256836, 1.3730469, 3.5410156, 0.3166504, -1.7558594, 0.67041016, -0.113342285, 0.69091797, 1.9150391, -0.27929688, -0.39086914, -2.2148438, 1.2431641, 0.8852539, -1.4394531, 0.2055664, -3.6113281, -1.3291016, -3.2890625, 0.3161621, -0.6035156, -1.1367188, 0.8183594, 1.3291016, -2.0683594, -2.0878906, -0.22631836, -0.9291992, 5.3710938, 0.64501953, 2.4375, -0.93896484, -1.0507812, 0.0044403076, -1.4052734, -3.5800781, 1.3173828, 0.02218628, -1.1455078, -2.328125, -0.8803711, -0.28588867, -0.86865234, -0.48657227, -1.0917969, 0.94140625, 1.1494141, 0.6894531, -1.8808594, -0.8544922, -1.0625, 1.6298828, -0.57373047, -0.8955078, -1.7744141, -2.2265625, -0.14074707, -1.9091797, 0.064331055, 1.6269531, -1.3007812, 0.79345703, 0.8886719, -0.3310547, -0.6455078, -0.0395813, -2.7148438, 0.68652344, 1.5605469, -0.3322754, 1.2167969, -1.2607422, -0.6147461, -3.5585938, 1.1396484, 3.4296875, 2.1640625, 0.5942383, -0.5571289, -0.31518555, 0.72509766, 0.73095703, -0.65771484, -0.31689453, 0.026184082, 2.5625, -1.6591797, -0.09893799, 0.20336914, 2.109375, -2.671875, -0.25756836, 1.2207031, -0.09118652, 0.13330078, -1.4316406, -0.21118164, 0.8544922, -0.66845703, 0.6616211, -0.3947754, 1.3964844, 0.87597656, -1.3808594, -0.38427734, 2.8007812, 1.6484375, 1.4121094, 0.92041016, 0.9980469, 3.1464844, 1.1865234, -3.0585938, 0.06262207, 0.7714844, -0.68310547, -0.0024986267, 2.7617188, -1.4169922, -1.1855469, -2.2050781, -0.53466797, 1.25, -1.1630859, -0.11853027, 1.5986328, -0.6459961, -0.24658203, -0.79785156, 0.22314453, 1.5654297, -2.6210938, 2.5683594, 0.37304688, -1.0371094, 2.2988281, -1.3427734, 0.9506836, -1.3349609, 2.2636719, -0.93896484, -1.7890625, 0.47143555, 2.1523438, -0.2524414, -2.5546875, 0.5083008, -2.2617188, -1.2822266, 4.2539062, -0.26464844, -1.3701172, -1.0771484, -0.42773438, 0.265625, 2.2421875, -1.7216797, 0.5185547, 1.3144531, -1.7714844, -1.7753906, 1.0654297, 0.38842773, -0.1763916, -2.4511719, 0.75, -0.6923828, -0.08227539, 2.4082031, -1.6132812, -2.28125, 0.5292969, 1.5615234, 1.6259766, 0.10406494, 1.5146484, -0.23950195, -0.76708984, 2.6894531, -1.1572266, -0.8383789, -0.8701172, -4.0273438, 1.5253906, -2.1484375, -0.19042969, 1.0117188, -0.7026367, 0.07647705, 1.4072266, 0.5209961, -3.9160156, -2.6777344, -1.0537109, 0.36083984, -3.8242188, -1.1611328, -0.15625, 0.44067383, 0.12359619, 0.10064697, -0.19995117, 2.9785156, 0.11633301, 1.0263672, 0.93310547, 0.5332031, -2.7714844, 0.40527344, 0.8383789, -0.029815674, -0.14807129, -1.0458984, -0.105163574, -3.8457031, 1, 1.3867188, -1.5878906, 1.1865234, 2.640625, 0.13830566, 0.11975098, 1.0810547, -0.2467041, 3.453125, -0.43603516, -2.5527344, -1.2177734, -0.27416992, 0.62646484, -0.6381836, -0.96533203, 1.2070312, -2.3066406, 0.20739746, 0.2944336, 2.0996094, 0.6113281, -0.5253906, -2.8417969, 0.19262695, -0.8105469, -2.1933594, -1.453125, -1.0615234, -0.39868164, 0.5048828, 0.3947754, -3.390625, -0.82470703, -0.61816406, -0.80859375, -0.67871094, 1.7021484, 2.0742188, 2.9453125, 4.375, -1.2851562, -0.28735352, 1.8134766, -0.03604126, 1.4492188, 3.2382812, 0.5214844, -1.6347656, 1.4160156, -0.64453125, -1.1269531, -1.3769531, 1.7207031, -1.7470703, -1.34375, 1.28125, -0.67529297, -1.9365234, -0.69091797, -1.2275391, -2.0546875, 0.47070312, -0.46728516, -1.7050781, -0.5673828, 1.2685547, -0.69970703, -0.19067383, -0.3388672, 1.0205078, 0.6904297, 3.1992188, -0.25634766, 1.0058594, 3.1425781, -1.0322266, 1.9853516, 0.59228516, 0.46533203, -0.3347168, -0.85058594, -1.5693359, -1.1640625, 2.4335938, 1.1855469, -1.2666016, 2.7773438, -0.45214844, -2.5585938, 2.4453125, 2.0214844, -2.4003906, -0.69873047, -1.2773438, 0.18457031, -0.6855469, 0.65527344, -2.1679688, -1.6386719, 1.0546875, -1.6171875, 2.4921875, -0.34521484, -1.0273438, -0.14257812, -0.9692383, -0.4189453, 0.8017578, -1.1142578, -2.9453125, -2.1171875, 0.77734375, -1.3447266, 0.35498047, 0.9663086, -0.68359375, -2.2011719, 2.3886719, 1.3818359, -0.98876953, -0.22094727, 0.9223633, 1.3417969, 1.03125, 0.59521484, 1.078125, 0.34033203, -2.1425781, 1.7890625, -1.5947266, -1.0410156, -1.0742188, 2.1113281, -1.4199219, -0.6425781, 2.4082031, 1.3974609, 1.9003906, -2.0683594, 1.8974609, -0.71191406, 1.7441406, -0.51123047, 1.0732422, -1.4765625, -1.4853516, -1.9726562, -3.3730469, -0.7651367, -0.48291016, -1.5966797, -0.8720703, -1.7246094, -0.015571594, -1.7890625, -0.049987793, 0.23706055, -0.29785156, -1.3105469, -1.6064453, -0.7211914, -0.5751953, 1.0322266, 1.3144531, -0.77685547, 0.29833984, -1.0400391, -0.038970947, -2.8242188, -0.41186523, 2.7304688, -0.9345703, 1.25, 1.0146484, -0.34643555, 1.4658203, 2.8300781, 0.42749023, -0.17333984, 2.1015625, -3.1132812, -1.0771484, 2.2714844, -1.7167969, 0.3918457, 1.1572266, -0.83935547, 0.52783203, -1.1533203, 0.004966736, -0.18591309, 0.16711426, -0.115478516, 0.73876953, 0.6074219, -1.5146484, -0.6142578, -0.47729492, 3.0214844, 2.4863281, -1.5810547, -0.0791626, -0.82128906, -0.5, -0.7207031, -2.3183594, -0.052734375, -0.89160156, 0.22558594, 0.010559082, 0.07336426, 1.9394531, 1.4384766, -0.18884277, -0.37109375, 3.4785156, -1.5830078, 2.7050781, 1.671875, -1.3935547, -3.3574219, -3.3300781, 1.3085938, 1.1328125, 1.2255859, -1.7265625, -0.30249023, -1.3486328, 2.0136719, -1.9785156, -0.8935547, 1.5302734, 1.7050781, -0.96533203, 1.0341797, 0.24963379, 0.29370117, 1.9736328, -1.0849609, 2.3222656, 0.421875, 2.078125, 3.1582031, -1.8935547, 2.1132812, -1.3271484, 1.2900391, -0.5571289, -1.5214844, 2.0371094, -2.4316406, -1.8662109, -0.9145508, -0.9736328, -3.2617188, 2.09375, 1.6455078, 0.46533203, 0.28173828, 0.32592773, -0.99072266, 1.609375, 0.8876953, -1.0546875, 1.2558594, -0.6972656, -1.2753906, 0.73339844, 2.0019531, 1.5761719, -0.24243164, 2.2148438, -0.18811035, -0.65234375, 1.1904297, -0.09088135, 1.7109375, 0.4958496, 2.1894531, 1.171875, 1.0205078, 3.2382812, 0.35107422, 1.7939453, 2.2890625, 1.6054688, -0.54345703, 2.2734375, 2.9335938, -0.92333984, 0.6098633, -0.3696289, -0.15515137, -0.76123047, -0.6870117, -0.08905029, -0.1282959, -2.3300781, 2.1171875, -1.1533203, 1.7363281, -0.9140625, 0.13244629, -1.4287109, -0.04522705, -0.066223145, -0.10559082, -0.2536621, -0.99658203, -0.3034668, -0.6044922, 0.01965332, -0.29296875, -3.3808594, 1.7548828, -1.4814453, -2.2714844, 1.1552734, 3.4511719, 2.0019531, 1.5234375, 0.059661865, 1.4238281, 0.4350586, 1.4833984, 2.0566406, 0.6254883, 1.4707031, 2.4101562, 0.7714844, 0.8642578, -0.4736328, -1.4355469, 0.671875, -1.3310547, -3.5371094, 2.1386719, 1.6328125, 0.66845703, 1.8505859, -1.3867188, 1.1425781, 1.1533203, 0.9370117, -2.2714844, -0.080566406, 0.59765625, 0.20654297, 1.2197266, 0.73046875, -0.4350586, 2.0273438, 2.1914062, -0.5385742, 3.0507812, 1.2568359, 1.2275391, 0.30126953, 0.47680664, -1.0634766, 1.4355469, -2.375, 1.5507812, 0.97558594, -0.7919922, -1.7255859, 2.6191406, 1.6376953, -0.640625, -0.7709961, -1.7939453, -0.24633789, -0.31420898, -1.7207031, -0.82373047, -0.1270752, -2.9472656, 0.6513672, 1.2626953, 0.22460938, -3.0214844, 1.5371094, 1.4394531, -2.4550781, 0.8833008, 0.85839844, -3.0097656, 1.6992188, 1.0185547, 0.33862305, 0.5136719, -0.6870117, 2.4746094, -0.73339844, -1.8632812, -0.5834961, 0.12731934, 0.8564453, 0.6777344, 0.39990234, 0.11755371, 0.3071289, 1.3857422, 4.5, -1.0576172, 1.0917969, 0.71972656, 1.1796875, -0.8510742, 2.4121094, -0.77490234, -0.31445312, -0.027175903, -4.0195312, 0.51904297, -1.4580078, -2.7226562, -1.1474609, 5.1796875, 2.5371094, -0.16772461, -2.0371094, -4.234375, -1.8476562, 0.8510742, 3.3027344, 0.60253906, -1.1650391, 0.33666992, 0.6123047, 4.2929688, -1.0136719, 0.5341797, -0.6333008, 0.3798828, 2.4628906, -1.1708984, 0.5258789, -0.85058594, 0.8876953, 1.1689453, 2.421875, 2.7324219, 1.0332031, 2.0507812, -0.035736084, -0.5830078, -2.8105469, -0.36376953, -2.6582031, 1.1992188, 2.7480469, -0.80859375, 1.1025391, -0.7504883, -2.1269531, -4.1171875, -0.17236328]}, "B00S57U1QS": {"id": "B00S57U1QS", "original": "Brand: Coleman\nName: Coleman RoadTrip LX Propane Grill\nDescription: \nFeatures: Portable propane grill ideal for tailgating, picnicking, and camping\nDelivers 20,000 btus of heat with 2 independently adjustable burners\nSwaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately)\nPerfect flow technology provides consistent performance, even in extreme conditions\nCollapsible stand folds for compact storage; Tabletop setup lets you use grill without stand\n", "embedding": [-1.5058594, 0.6245117, 0.8339844, 1.0019531, -1.5498047, 0.09820557, 1.3134766, -0.91796875, -1.2109375, 1.8017578, -0.47558594, -1.5498047, 1.3066406, -3.4394531, -0.2705078, -0.18725586, 1.3964844, 1.3867188, 0.5732422, -0.96972656, 2.2128906, -0.037506104, 1.7832031, -0.5253906, 0.72998047, -0.45166016, 3.7441406, -4.8007812, 0.056762695, -0.48583984, 1.2490234, 0.22570801, -0.3779297, 3.3457031, -1.9628906, -1.5732422, -3.4921875, 1.9443359, -2.9570312, -1.0283203, -1.6376953, -0.7548828, 2.5566406, -0.051574707, -0.78808594, -1.0488281, 1.2695312, 1.8232422, -1.0878906, -0.97558594, 1.9570312, 1.1904297, 0.9741211, 0.61035156, -1.8339844, 0.6245117, -0.64941406, -0.35205078, 2.1953125, -0.44750977, 1.2285156, -0.52978516, -2.453125, 0.72216797, -1.2226562, 0.27148438, 0.10015869, -0.86621094, 0.48754883, -1.0087891, 3.1679688, 0.13342285, -2.375, -1.3847656, 0.018554688, -0.0925293, -2.7382812, 0.1508789, -0.03488159, -0.7607422, -0.3881836, 3.2910156, -0.1730957, -0.8076172, 0.061706543, 1.3808594, -1.7744141, 0.08557129, 2.9707031, 1.7412109, -1.0742188, 1.0527344, -1.9560547, -3.7558594, 0.7861328, -0.77246094, 1.3720703, 1.2568359, 0.2006836, 0.91064453, -1.3671875, 0.5214844, -2.046875, -0.37817383, -3.4335938, -0.22143555, 1.8681641, -0.9941406, -1.3867188, 2.0546875, -2.1582031, -1.7021484, 2.8769531, 0.8886719, 0.58984375, 0.796875, -1.6621094, 1.8847656, 2.1328125, 2.1699219, 5.046875, -0.37304688, 2.2578125, -1.0341797, -0.15112305, 1.7705078, 0.09051514, 0.66748047, 3.3925781, -0.8720703, -0.016326904, 0.44311523, 2.4667969, -0.30688477, -3.5878906, -3.3710938, -2.1503906, -0.9550781, -2.7265625, -0.48120117, -0.85595703, -0.6142578, 3.3828125, 0.7861328, -4.6796875, -1.1269531, -0.55078125, 1.4443359, -0.009269714, -1.5957031, -1.4794922, -2.546875, -0.27905273, -1.0009766, 2.1269531, 0.17102051, -0.93310547, -1.2871094, 4.515625, 1.0908203, 0.6508789, -0.7739258, -1.1523438, 0.6020508, 1.5878906, -1.1220703, -0.5493164, 1.5585938, -0.3852539, 2.1386719, -0.18603516, -2.5507812, 1.4277344, 0.49414062, 1.9453125, -1.2255859, 0.53808594, 2.5839844, 0.34179688, -0.69970703, -2.1445312, -1.3720703, 0.5908203, 1.0546875, -0.034057617, -2.2890625, -0.29370117, -0.14575195, 0.10595703, -1.8203125, 0.8334961, -0.03164673, -0.54052734, 0.27416992, -1.8320312, -1.2998047, -0.9584961, -1.46875, 2.4960938, 1.4189453, -0.42358398, -0.6665039, -0.7324219, 0.42944336, -2.4492188, -2.6621094, -0.31323242, -2.2949219, 1.5488281, 2.2304688, 1.9072266, -0.4489746, 0.94628906, -1.6445312, -1.3984375, -3.3632812, 1.5966797, 1.2324219, 2.9589844, 1.9902344, 0.026901245, -0.82714844, -1.4824219, 1.1074219, -0.8823242, 1.4931641, 0.14196777, -1.2011719, -1.0039062, -0.36254883, 1.3710938, 3.0625, -2.0625, 0.92626953, 0.04660034, 2.5761719, 0.6269531, -1.7890625, -1.3935547, 0.61083984, -0.34594727, -0.3803711, -0.09124756, -1.4052734, -0.27416992, 0.44750977, -1.6152344, 2.7675781, 3.0957031, 0.53808594, 0.05847168, 0.9199219, -0.50390625, 1.6191406, 0.0043029785, 1.9775391, 0.3630371, 1.1953125, -1.4404297, -1.7001953, 1.0097656, 2.1484375, -0.38208008, -0.26879883, 0.57421875, 0.30004883, 3.5234375, 1.4433594, -2.7695312, -0.30639648, 0.93408203, 1.6669922, 0.93896484, 1.2929688, 1.4697266, -1.2070312, -0.4633789, 1.8740234, 0.40722656, 3.2324219, 1.2070312, 2.4765625, 1.5029297, -3.2148438, -2.2441406, 0.88378906, -0.17602539, -0.3955078, -1.8955078, 2.3105469, 3.4960938, 0.5888672, -1.1230469, 2.7324219, -3.0546875, 1.3896484, 1.3369141, -0.9301758, -0.8408203, 0.42041016, 1.6455078, 0.3244629, -0.9135742, 2.0820312, -3.6894531, 0.03744507, -0.17810059, -2.9707031, 1.375, -0.02784729, -0.7402344, -0.98828125, -1.5927734, 0.51220703, -1.9492188, -1.3886719, 2.03125, -2.5351562, 1.5810547, 3.0625, 0.08050537, 0.80322266, 0.8720703, -1.4863281, -0.19262695, -0.24084473, -1.5810547, 1.2324219, 2.0429688, -0.19946289, 0.23986816, -0.57958984, 1.7216797, -0.97802734, -2.5878906, -1.3105469, -0.057647705, -3.6171875, 2.8828125, 0.10247803, -2.2128906, 0.7470703, -0.6308594, 2.2304688, -2.9570312, -2.7109375, 0.7050781, 0.796875, -0.8955078, -0.56347656, -0.8798828, -0.41064453, 0.77685547, -3.6757812, 0.22607422, -0.32226562, -0.64404297, -0.66015625, -0.7060547, -0.027709961, 0.28686523, 0.08483887, -0.53564453, 1.1064453, -1.0126953, -2.3125, 1.0039062, -3.546875, 0.6826172, -3.2441406, -0.45214844, -0.6176758, 0.54296875, -2.6230469, -1.7949219, 1.7294922, 0.32666016, 3.8378906, -0.88916016, 0.21923828, 0.8017578, -1.9238281, 1.4667969, -0.62353516, -2.8828125, -0.2709961, 1.0117188, -0.79003906, -3.1640625, -3.671875, -0.099243164, -1.4755859, 0.77001953, -0.5292969, 0.3125, -1.9365234, 1.7958984, -2.1894531, -0.42382812, 0.40014648, 0.6386719, -0.8457031, -0.030212402, -1.7392578, 0.8647461, -1.4824219, -0.5522461, -0.49658203, 0.45458984, -0.45776367, -0.38500977, 1.2089844, -0.50341797, 1.6044922, 0.023147583, -3.8515625, 1.5615234, 1.0175781, -1.5634766, 4.2382812, -1.6933594, -1.8916016, -4.71875, -2.015625, 2.078125, 2.7792969, 2.2265625, -0.6567383, -0.048583984, 1.3310547, 0.5205078, -1.875, 0.4650879, -1.0849609, 3.3867188, -2.3242188, -2.5410156, 0.57373047, 2.6328125, -3.0605469, -1.9072266, 0.90625, 0.5385742, 1.5, 3.3867188, 0.6767578, -0.16638184, 0.3251953, 1.0019531, 2.0429688, -0.6074219, -0.15893555, 0.8666992, -1.7666016, 1.7392578, 1.5751953, 0.5073242, 1.46875, 0.7216797, 1.5527344, 2.5117188, -0.8144531, 1.8574219, 0.07952881, 1.4628906, 1.7734375, 3.2773438, -1.9033203, -0.01461792, -0.8095703, -0.15930176, 1.0488281, -0.11999512, 0.37060547, 1.9599609, 0.8334961, -0.27929688, -0.0713501, -0.057373047, 0.55859375, -1.1816406, 1.2695312, -2.3378906, -1.1806641, 0.38500977, -2.3886719, -2.2265625, -2.1074219, 3.2304688, -0.8852539, -2.1308594, 1.0166016, 2.9238281, 1.0244141, -3.1738281, -3.109375, 1.4902344, -0.57470703, 2.5683594, 1.8632812, -1.1425781, 0.064208984, 0.43164062, 0.6040039, 2.4667969, -1.2304688, -1.0107422, -1.8330078, -0.29418945, 0.6166992, -0.25097656, 1.28125, 0.09057617, -2.1914062, 0.55029297, -2.6054688, 0.83740234, -0.23168945, -2.6171875, -0.73779297, 3.2519531, -0.16491699, 0.90625, -0.121276855, 3.6425781, -1.5898438, -0.7495117, 0.24353027, -1.0878906, -0.7114258, -2.2363281, -3.0664062, 1.6962891, -0.9770508, -1.0371094, 2.296875, -1.1894531, 0.10583496, -0.37548828, 1.0146484, -1.4208984, -1.8212891, -2.4609375, -0.7416992, -2.2324219, 0.5541992, 0.8925781, -0.98828125, -1.9814453, -1.7929688, -2.1367188, 0.54296875, 2.2929688, 1.7011719, -0.3100586, 1.0615234, -1.0546875, 1.8623047, -0.20568848, -0.75439453, 0.7363281, 0.31518555, -0.14880371, -3.9199219, -0.6357422, 1.1601562, 0.074645996, 2.1835938, 1.2753906, -0.80810547, -1.5136719, 0.95703125, 2.1171875, 1.3427734, 0.8691406, -1.6894531, -1.0664062, -1.2167969, -1.2216797, 0.21411133, -0.5727539, -0.019836426, -1.3730469, 1.5439453, 0.29345703, 1.7197266, 2.6425781, -0.088134766, -1.0556641, 1.4570312, -0.296875, -2.7207031, -2.4453125, -1.2392578, -0.57128906, -1.9267578, -0.38867188, -0.9013672, -0.8364258, -0.2775879, -1.0175781, -1.7177734, 1.5410156, 1.7851562, 2.703125, 1.2070312, 0.46655273, 0.009391785, 1.3994141, -1.2089844, -0.99072266, -0.79003906, -1.6875, 1.1933594, 0.6801758, 2.078125, -1.2490234, -0.79296875, -0.27294922, -2.2441406, -1.7324219, -1.0703125, 0.921875, -1.8925781, -0.16333008, -0.38916016, -1.1152344, 2.1210938, -2.2304688, 0.9355469, -0.96191406, 0.734375, 0.84228516, -0.5058594, -0.7714844, 1.7470703, 1.4101562, -0.2890625, -1.1230469, -1.7792969, 0.7182617, -0.62890625, 2.1933594, -1.6279297, -1.6269531, 0.89404297, 0.42919922, -1.4296875, -0.1463623, 0.83496094, 2.203125, 0.84033203, 2.7871094, 0.9145508, -1.1865234, 1.1728516, 0.46777344, -1.9902344, -0.124572754, 0.7158203, -1.0712891, 1.2597656, -2.0078125, -4.03125, -0.1472168, 1.9345703, -0.22753906, 1.2802734, -0.31860352, 0.24438477, -0.40795898, -3.4121094, -0.05807495, -0.31518555, -1.7041016, 1.3476562, -3.0253906, -0.47924805, -0.99560547, 2.1796875, 2.2636719, -0.29907227, -0.953125, 1.0283203, -1.2646484, 0.56103516, -1.1796875, -1.4365234, -3.2324219, -1.6972656, 1.9746094, 1.0029297, 0.2541504, 0.096191406, 0.5883789, -1.5429688, 0.69628906, -3.1953125, 3.0273438, -2.5625, 0.14245605, 2.8261719, -1.3730469, -0.3322754, -1.6728516, 0.22766113, 0.025924683, 2.5410156, 0.81884766, -0.29052734, -0.99121094, 1.1523438, -2.671875, -4.1171875, -1.4238281, -0.375, 0.18054199, 0.67626953, 1.3632812, -1.0703125, -0.44384766, -1.0341797, -0.38916016, -0.87060547, 0.43701172, 0.06427002, -0.64746094, -0.25952148, 0.83691406, -0.095947266, 1.6582031, 1.6943359, 1.8359375, -1.0644531, -3.2460938, -1.2070312, 0.86328125, -0.85791016, 0.93652344, 1.0966797, -1.3046875, -1.2851562, -0.68896484, 0.6323242, 0.048034668, 2.8183594, -0.5595703, -0.62158203, 0.33764648, -1.3359375, -0.43237305, 0.765625, -1.2841797, 0.86279297, -0.6665039, 2.2207031, 0.015068054, -0.6074219, 0.24035645, 1.5839844, 0.97265625, 0.67285156, 1.9589844, 0.1508789, 1.5390625, 1.1337891, 0.07385254, -1.9287109, -2.2421875, -3.5625, -0.14685059, -2.1054688, -0.16699219, -1.9433594, 2.7949219, 1.9707031, 2.8378906, 0.5488281, 0.18359375, 1.2470703, -1.0146484, 0.67626953, 0.11975098, 2.9101562, 3.0410156, -0.47827148, -2.4726562, -0.49243164, 0.19799805, 0.7133789, 0.81347656, -0.12609863, 0.40625, -1.5644531, 1.1396484, -0.71240234, 3.7167969, 1.1396484, 1.7744141, -0.37670898, 2.203125, 3.2988281, -1.1992188, -0.15649414, -0.25878906, 2.1230469, -1.2412109, 2.3828125, -0.98828125, -2.2011719, 1.5478516, -0.9707031, 1.3457031, -0.09857178, -1.1523438, 1.5908203, -1.1835938, 0.10406494, -2.1738281, -0.39208984, -2.5859375, 3.8183594, 1.1074219, -1.2988281, 1.5869141, 1.7080078, -0.4416504, 1.0380859, 1.9580078, 1.2197266, -0.68066406, 1.5488281, -0.54345703, -0.08605957, 0.7910156, -2.3105469, 3.6269531, -0.5415039, -0.3305664, 0.11468506, 3.2929688, 0.48339844, 3.1015625, 2.1191406, 1.6064453, 3.0742188, 1.6679688, 3.5566406, 1.0507812, 0.8222656, 0.4580078, -1.9521484, -0.039611816, 3.9101562, 2.296875, 0.100097656, -0.8076172, 1.0605469, -0.7807617, -0.052825928, -1.0683594, 0.77783203, 0.31982422, -3.7207031, 3.5058594, 1.3085938, 0.9013672, -1.7529297, 0.77197266, -0.14074707, 0.107910156, -0.38500977, 0.16381836, 1.0996094, -1.2744141, 1.9003906, -0.6323242, 0.11419678, 1.8447266, -1.2294922, -1.8251953, -0.47314453, -1.4472656, -1.3574219, -0.1850586, 1.6953125, 0.75439453, 0.9472656, 0.33129883, 1.5771484, -0.038024902, 0.6489258, 0.41259766, 0.5283203, 0.81591797, 3.2519531, -0.048431396, -1.4287109, 0.69091797, 0.25170898, -2.2265625, -3.7714844, 0.98779297, 0.2590332, 1.7773438, 0.23095703, -2.0449219, 1.8427734, -0.05239868, 1.4316406, -0.49853516, 1.8564453, -0.69189453, -2.3144531, -1.7128906, -0.9267578, 2.453125, 2.2246094, 1.4248047, -0.17797852, 2.6523438, -0.5449219, 2.515625, -1.0039062, 0.46777344, -0.39086914, 2.3300781, -1.7753906, 2.2949219, 0.41625977, 0.9741211, -0.39501953, 1.9892578, 1.7246094, -0.25756836, -1.4912109, -0.70654297, 1.3837891, -0.73339844, -0.38012695, -1.4794922, -0.34472656, -0.89160156, 1.0205078, 0.3720703, -0.13452148, -0.8208008, 0.70214844, 3.6074219, -1.7421875, 1.7128906, 1.4521484, 0.8989258, 2.7246094, -2.0898438, -1.9667969, -0.84277344, 1.2070312, 0.25805664, 0.5864258, -1.2539062, 0.515625, 0.67333984, -1.4121094, -1.1240234, -0.28442383, -1.2412109, -0.35766602, -1.0039062, 0.9223633, 0.33422852, -0.3947754, 0.2631836, 0.43823242, 1.1787109, 3.2304688, -0.9067383, -0.453125, -0.050231934, -1.4384766, -0.5708008, -1.8935547, -1.1005859, 0.15612793, 3.9628906, 0.76123047, 1.5908203, -2.4648438, -1.5927734, -2.171875, -0.37817383, 2.7773438, 0.48242188, -2.4453125, 0.64453125, -0.29907227, 1.1835938, -1.0742188, -1.1279297, -0.16723633, 0.30541992, 0.8383789, 0.48291016, 1.4550781, 1.125, -1.8183594, -0.03314209, 1.28125, 1.0234375, 1.4873047, 1.78125, -0.6455078, -0.47802734, -2.3046875, -0.5644531, 0.29370117, -1.4609375, -1.2431641, 2.0097656, 3.4707031, 2.2441406, 0.66015625, -2.8925781, -1.3300781]}, "B088KD4JJ4": {"id": "B088KD4JJ4", "original": "Brand: Saking\nName: Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)\nDescription: Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

          MAIN FEATURES
          \u2605 Made of 600D heavyweight oxford fabric with PVC layer
          \u2605 Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
          \u2605 Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
          \u2605 Superb wrapped sewing makes it stronger and nicer look
          \u2605 Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
          \u2605 Come with 4 useful accessories to avoid being pierced by table's sharp corners

          SPECIFICATIONS
          - Brand: Saking
          - Condition: New
          - Colour: Black
          - Material: Heavy-duty Oxford with PVC
          - Shape: Square
          - Dimensions:
          29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

          PACKAGE
          1 x Square Fire Table cover
          1 x Storage bag for the cover
          4 x additional protective items

          NOTE:
          Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit\nFeatures: \ud83d\udd25 \u3010 Perfect Fit for 28x28 Tall Square Fire Tables \u3011Cover size: 29\" L x 29\" W x 25\" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit)\n\ud83d\udd25 \u3010 100% Waterproof Material \u3011 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables\n\ud83d\udd25 \u3010 100% Windproof Design \u3011 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly\n\ud83d\udd25 \u3010 Air Vents & Handles \u3011 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off\n\ud83c\udf81 \u3010 What You Get \u3011 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table's sharp corners\n", "embedding": [-0.20483398, 1.6708984, 1.6875, -2.3886719, 0.8041992, 1.8681641, 0.8154297, -2.4355469, 0.14208984, 2.9804688, -0.017715454, 0.56152344, 1.6699219, -3.2617188, 2.8320312, 0.75146484, -0.42578125, 1.7324219, 2.6425781, -1.2441406, 1.8544922, -1.5009766, 1.1767578, -1.8935547, 0.60253906, -0.97753906, 3.7109375, -4.4453125, -0.4909668, -0.72021484, 0.5625, 1.5449219, 0.54345703, 2.2089844, -1.7119141, -1.9267578, -0.07720947, -0.030975342, -0.30493164, 0.2932129, -1.8837891, -3.3554688, 3.2304688, 3.4082031, -1.7832031, 2.1269531, 0.6040039, -2.6015625, -0.019439697, -0.8461914, 0.4633789, -0.23962402, 1.9414062, 0.75390625, -1.0986328, 0.9902344, -1.1083984, -0.8774414, 0.9345703, 1.0341797, 3.1796875, -0.75634766, -0.3623047, 3.5117188, -1.2304688, -0.23156738, 0.059417725, -0.8774414, 0.2861328, 0.42260742, 1.3125, -0.72802734, 0.79248047, 0.84277344, 2.265625, -2.0410156, -4.28125, 2.0078125, 2.5625, -2.0175781, 0.26391602, 1.578125, -0.54785156, -1.5927734, -0.85546875, -0.14587402, -1.4726562, -1.9707031, -0.6958008, 1.4980469, -0.77685547, 3.3164062, -0.5107422, -3.3007812, -0.07147217, -2.7792969, 1.8945312, 0.66552734, -0.19750977, -0.88916016, -0.54785156, 0.63427734, 0.5527344, 2.0664062, -4.1210938, -1.8681641, 1.5585938, -0.0032081604, 0.14160156, 0.5932617, 0.051605225, -0.32177734, 0.5473633, -1.4726562, -0.23901367, 2.3867188, -0.8442383, 1.0683594, 3.0800781, 0.1149292, 4.4140625, 2.1269531, 0.026824951, -1.515625, 1.5429688, 0.13085938, -2.5234375, 1.671875, 1.4980469, -2.6191406, 0.6567383, -2.4804688, 0.6538086, -0.55810547, -2.6914062, 0.7602539, -3.3085938, 0.7211914, -2.8632812, 0.4921875, -2.03125, -0.7709961, 1.0087891, -0.5805664, -3.5234375, -0.75341797, -0.8847656, 4.046875, -1.8203125, -2.4667969, -0.16833496, 0.5410156, 1.0498047, -3.3066406, 0.41137695, -1.8232422, 1.5957031, -4.6054688, 3.0136719, 0.7714844, 3.1328125, -1.5009766, -0.1821289, 1.1982422, 1.6943359, -1.5566406, 3.2070312, 0.73828125, -0.55322266, 2.6230469, 0.48535156, -1.2783203, -0.84472656, 1.9013672, -0.097595215, 0.24902344, 0.54833984, 1.0722656, 1.3671875, 1.0126953, 0.08618164, 0.0021209717, 0.62890625, -0.117614746, -0.9267578, -1.4208984, -0.2421875, -2.1464844, 0.12817383, 0.06866455, -3.1210938, 0.63378906, -2.8828125, 0.28515625, -2.5976562, -2.1972656, -1.7324219, -2.4042969, 0.2467041, 1.6425781, -0.38891602, 0.75097656, -1.6181641, 0.85595703, -3.9550781, -1.234375, -0.48461914, 3.0820312, 2.6367188, 1.0195312, -1.0566406, -2.3203125, -0.59521484, 2.7617188, 0.60253906, 0.44580078, 1.5742188, 0.4897461, 0.7597656, 2.2851562, 1.7695312, 0.37060547, 2.0214844, 2.5917969, -0.030563354, 1.8955078, 1.7197266, 1.3691406, -1.8798828, -1.5517578, 1.4541016, 0.6298828, -0.5644531, 2.5429688, -2.953125, 1.6923828, 0.0053100586, -0.76904297, 2.359375, -1.1669922, 1.9472656, -2.03125, -2.1191406, 0.24414062, -0.40014648, 1.0400391, 0.98828125, 0.6274414, 1.1972656, -0.11053467, -2.1074219, 0.30859375, 1.6425781, 1.2207031, 0.22680664, 0.066467285, 0.9458008, -0.99902344, 1.3623047, -0.22094727, -0.55322266, 1.5800781, -0.7607422, 1.5244141, -0.50341797, -2.3769531, 1.0019531, -0.32910156, -2.4472656, -0.8413086, -0.026062012, -1.0136719, 2.3535156, -0.63671875, -0.10473633, -0.8588867, -0.13354492, 1.3925781, 0.5629883, 2.4023438, -0.19213867, 0.5888672, 2.234375, 0.3173828, 0.33862305, 0.3137207, 2.0019531, 1.5810547, 1.2832031, -1.0712891, 3.6445312, -0.11340332, 0.17980957, 1.5351562, 0.4609375, -1.1152344, -0.39038086, 0.13574219, -0.6948242, -1.5195312, -0.9194336, 2.6894531, 1.4941406, 2.375, -1.4501953, -0.10821533, 0.26879883, -2.7792969, -0.578125, 0.21276855, -0.8017578, -1.8164062, -0.071899414, 1.8701172, -2.8378906, -2.4257812, 2.5410156, -1.9199219, 0.0025234222, 0.84228516, 0.40429688, 0.7001953, -2.1445312, -1.7070312, 0.16674805, 3.3378906, -2.0644531, 0.012374878, 0.8876953, -0.74853516, -2.0625, -1.1787109, 0.62890625, -3.7773438, -2.5585938, -3.4453125, -2.6347656, 0.41967773, -0.45776367, -1.7441406, 1.3496094, 0.0960083, -1.2783203, 0.9394531, -0.23986816, -1.7050781, 0.69140625, 1.1474609, -3.4257812, 1.3222656, -0.16723633, 2.8828125, -0.16027832, -0.50683594, -0.98583984, 0.74902344, -0.2788086, -1.0039062, -0.9951172, -0.5571289, -1.5683594, 0.97802734, 1.2597656, -2.8730469, 2.0722656, -1.390625, -0.12573242, -3.2050781, 0.6035156, 0.7060547, -0.6538086, -0.3317871, 1.4443359, -2.8164062, -1.9150391, 0.2619629, -1.5400391, 5.8710938, 1.0566406, 2.8632812, -3.203125, -0.39086914, -1.1914062, -0.5830078, -1.0302734, 1.6132812, 0.08477783, -0.37548828, -1.6074219, -0.6245117, -1.5859375, -1.8574219, -1.4560547, -0.29858398, 0.4711914, -0.625, 0.93652344, -2.7148438, -1.40625, -1.8320312, 0.7270508, 0.60839844, -0.18139648, 0.26391602, -2.4921875, -1.5917969, -1.3457031, 0.9604492, 3.3652344, -2.3945312, 1.1181641, 2.1171875, -2.0390625, 2.7929688, 1.1484375, -2.8222656, 1.5292969, 4.1953125, 0.51708984, 0.84765625, -1.9169922, -2.7421875, 0.52734375, 0.69140625, 3.0488281, 1.0400391, -0.6591797, -0.54003906, -0.7446289, 0.086120605, -1.1826172, -0.93652344, 0.5097656, 1.2685547, 2.671875, -2.1855469, 0.086364746, 1.4990234, 1.9892578, -3.8789062, -0.2253418, 0.49975586, -0.60791016, 0.6069336, -1.0498047, -0.4182129, 0.9199219, -1.2988281, 1.6230469, -1.9511719, 2.2773438, -0.055755615, 0.103027344, 0.97998047, 2.3632812, 2.0605469, 2.9199219, 0.91796875, 2.6210938, 1.2441406, 2.0136719, -3.2226562, 0.22302246, 0.57958984, 1.0996094, 0.70166016, 1.8876953, -1.5146484, -1.1103516, 0.24621582, -0.8623047, 0.27514648, -1.6748047, 1.9208984, 0.9501953, -0.71191406, -0.8745117, -1.0029297, -0.52783203, -0.9663086, -2.8984375, 1.1621094, -1.8398438, -1.5097656, 3.3574219, -2.625, 0.5859375, -1.1337891, 3.5390625, 0.64746094, -2.5058594, 0.5161133, 2.546875, -0.8623047, -1.1279297, -0.24206543, -2.1464844, -1.1123047, 2.9199219, 1.1386719, -2.25, 0.62060547, -3.6875, 0.86572266, 2.5976562, -0.11956787, 0.2939453, 2.8886719, -0.8989258, -2.0898438, 1.8027344, -0.23486328, 1.1259766, -3.2128906, 0.36694336, -1.3105469, -1.8027344, 4.2734375, -2.1601562, -0.28027344, 1.9736328, 0.051452637, 0.8417969, -0.8027344, 3.0292969, -1.1796875, -2.1191406, 2.8066406, -0.28515625, 0.21362305, -0.099731445, -4.1914062, 0.40405273, -2.5292969, -0.044647217, 2.7714844, 2.1816406, 1.0644531, 0.32641602, -0.1907959, -2.59375, -1.375, -1.6572266, -1.1113281, -4.7148438, -1.7382812, -0.23266602, 0.48632812, 0.52441406, 0.27954102, 0.18432617, 0.5961914, -0.083496094, -0.40307617, -1.6962891, -1.6308594, -2.5136719, 0.23168945, 0.027496338, -0.034332275, -0.8051758, -1.2597656, -0.42163086, -0.87890625, 1.8818359, 1.5791016, -1.4023438, 1.0839844, 3.5488281, -0.69433594, -1.6494141, 0.47485352, 1.2646484, 2.5253906, -1.15625, -0.83935547, 1.3720703, -0.4501953, 3.2011719, -0.79345703, -1.7792969, 1.3808594, -3.1210938, 0.8334961, -0.7006836, 2.8164062, 0.8754883, -0.43823242, -3.3847656, 1.4482422, -3.2988281, -1.3066406, -1.2617188, -1.578125, -0.45141602, -0.10064697, -0.34277344, -2.7285156, 0.7392578, -0.8769531, 1.5478516, -0.8535156, 3.4726562, 0.70703125, 2.3652344, 4.0234375, -1.4091797, -0.53027344, 0.30859375, -1.9863281, 1.5253906, 1.1582031, 0.5292969, 0.4267578, 2.3847656, -1.1923828, -1.4970703, -2.4746094, 0.58740234, -1.6083984, -0.018341064, -0.4519043, 0.13757324, -0.8359375, -1.1611328, -1.9277344, -1.4833984, 0.73095703, 0.2319336, -0.67089844, 0.7011719, -0.51904297, -1.7236328, 0.8955078, 1.4121094, -1.0078125, 0.7192383, 1.8222656, -1.2617188, 1.8945312, 2.6113281, 0.0914917, 1.3369141, -2.0351562, -0.014190674, 0.9423828, 0.5307617, -1.5742188, -2.3671875, 1.0136719, 3.359375, -3.2304688, 1.7021484, -0.058807373, -0.73046875, 3.1347656, 3.0488281, -1.4775391, -0.26586914, -1.203125, 0.3544922, 0.54248047, 0.23425293, -3.3066406, -0.23522949, 0.9033203, -1.3798828, 1.9052734, 0.28637695, -4.1679688, 0.10479736, -1.1884766, -0.8569336, 0.97753906, -1.3193359, -2.2578125, -2.96875, 2.7402344, -2.8457031, -0.5419922, 2.7480469, -0.1171875, -2.6796875, 1.203125, -1.1220703, -0.41625977, -1.5341797, 0.35253906, -0.4128418, 0.036376953, 1.0283203, 0.6425781, 1.6650391, -0.66064453, 1.8613281, -0.8095703, 0.25341797, 1.9814453, 2.5625, -0.15148926, -0.27392578, 3.0878906, -0.39770508, 1.625, -1.2402344, 0.49414062, 0.14221191, 1.5126953, -0.86328125, 1.7958984, -0.046539307, 0.36279297, -2.8984375, -2.2050781, -2.5625, -1.9267578, -2.7148438, 0.7529297, -2.2109375, 1.4130859, 0.5800781, 0.43652344, 0.9667969, -0.1998291, -1.6416016, -0.96533203, -1.6152344, -2.9589844, -0.67578125, 1.7246094, 0.6352539, 0.03982544, 0.18054199, 0.45483398, -0.91503906, 0.8125, 2.921875, -1.9433594, 2.9238281, 0.6567383, -0.3840332, 2.1132812, 1.3515625, 0.43359375, -0.40649414, 1.4326172, 0.22143555, -1.2412109, 2.0800781, -1.9335938, -0.36694336, 1.7998047, -1.6279297, 2.5761719, -1.9179688, -0.75439453, 0.3413086, -0.18188477, 1.59375, 1.2324219, -1.3154297, -0.6074219, 0.82714844, 1.4589844, 0.8173828, 1.6513672, -2.8613281, -0.6801758, -0.6142578, -1.4560547, 0.36376953, -0.12109375, -2.7675781, -0.8041992, 1.3017578, 1.3095703, 0.86376953, 1.1533203, 1.6660156, 2.4863281, -1.1191406, 0.9970703, -1.1464844, 2.6894531, -0.3647461, -0.4284668, -1.7080078, -3.7890625, 0.8623047, 2.921875, 0.4650879, -1.8583984, -0.61621094, -1.4804688, 1.9638672, 0.8183594, -0.09136963, 1.5449219, 1.5253906, 0.17382812, 1.6367188, -0.30029297, 0.5991211, 3.4804688, -0.21459961, 2.5996094, -1.3037109, 0.59521484, 2.7871094, -3.6171875, 0.83740234, 0.20532227, 0.64941406, -1.3837891, 0.61621094, 0.3635254, -1.2646484, -0.36083984, -3.1503906, -1.8203125, -2.8789062, 0.8305664, 1.4560547, 0.32910156, -0.63964844, -0.38598633, -1.8017578, 1.8876953, 2.1660156, -1.4716797, -0.7548828, -1.3398438, -1.7773438, -0.8461914, 1.2226562, 1.1728516, -1.8886719, -0.09832764, 0.12164307, -0.14343262, 0.6352539, 0.6489258, 1.6503906, 1.8994141, 2.4960938, 1.2578125, 0.50634766, 2.2949219, -0.37329102, 1.140625, 1.6201172, -0.8041992, -1.5361328, 2.2910156, 3.328125, 1.1826172, 0.5839844, -0.15576172, 0.9916992, -0.43041992, 0.0026111603, 1.2685547, 0.80029297, -2.2226562, 0.8071289, -1.0244141, 1.1005859, 0.40039062, 1.4326172, -1.1064453, 0.1105957, 1.8222656, -1.7246094, 1.0488281, -3.3808594, -1.9453125, -0.48413086, 1.7773438, 0.6455078, -3.671875, 2.1757812, -0.62646484, -4.2734375, -1.1416016, 4.8359375, 1.4628906, 2.0703125, -1.7314453, 1.2753906, 1.1591797, 1.9296875, 0.47314453, 1.3007812, 1.0693359, -0.0074653625, 1.8964844, 1.0537109, -2.2402344, -2.265625, 1.0244141, -1.1337891, -2.6113281, 0.44702148, -0.033966064, 0.38891602, 1.0527344, -0.26513672, -1.3212891, 2.0253906, -0.14562988, -2.5585938, -1.25, 0.5541992, -1.0683594, -0.7993164, 0.6401367, -1.0488281, 1.9697266, 0.51123047, 0.09210205, 2.4375, 0.99316406, 1.515625, 2.1640625, -0.74609375, 0.07305908, 1.7460938, -1.6396484, 0.72998047, 3.0839844, 1.2070312, -0.98535156, 2.0722656, 1.5634766, -0.66845703, 0.35766602, -2.4101562, 0.23608398, 1.2636719, -0.6020508, 0.1328125, -0.43066406, -1.7587891, -0.70166016, 0.92871094, 1.0263672, -2.8300781, 0.6982422, 2.5078125, -1.4355469, -0.7519531, 1.7792969, -1.6367188, 0.80810547, 0.6958008, 0.90722656, -0.8701172, -0.62402344, 1.8691406, -0.71728516, -2.9980469, -2.6894531, 1.2060547, -0.47583008, -0.94628906, -0.07324219, 1.5234375, -0.92285156, 0.85839844, 3.7832031, -0.7397461, -0.56640625, -1.3896484, 0.6464844, -0.83691406, 0.97265625, 0.45043945, -1.6689453, 0.71533203, -1.8857422, 0.89697266, 0.78808594, -3.7324219, -0.5727539, 4.8867188, 3.3085938, -1.9667969, -0.32983398, -3.3789062, -0.93896484, 0.9458008, 3.3320312, -0.81591797, 0.3876953, -0.72558594, 1.2060547, 4.3359375, -0.9970703, 0.9477539, -1.046875, -0.6616211, 0.40454102, -2.2167969, 0.28808594, -0.070251465, 1.5263672, 1.7265625, 2.2246094, 3.4765625, -0.7314453, 0.8823242, 1.6728516, -0.99365234, -2.3125, 0.70458984, 0.04446411, 1.7568359, 2.3007812, -1.7294922, 0.31274414, -0.93310547, -2.2753906, -4, -0.090148926]}, "B08GY9MT25": {"id": "B08GY9MT25", "original": "Brand: Bluegrass Living\nName: Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181\nDescription: \nFeatures: ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction.\nGLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit.\nCONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space.\nPREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use.\nSTAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase\n", "embedding": [-0.5805664, 2.5859375, 0.7416992, -1.8300781, 1.9345703, 1.2060547, 1.1074219, -1.5742188, 0.16760254, 2.7988281, -1.8515625, 1.0537109, -1.8789062, -4.2109375, 0.9394531, -0.03665161, 1.8574219, 0.9707031, 1.3417969, -1.7480469, 2.1601562, -1.1162109, 1.1533203, 0.6347656, 1.8515625, -0.03930664, 2.6289062, -3.5097656, 0.17810059, -1.0703125, 2.7871094, 1.6767578, -1.2285156, 2.0976562, -2.8125, -2.453125, 0.54345703, 2.2578125, -1.7138672, 0.2142334, -2.84375, -1.2695312, 3.5644531, 1.9052734, -1.8544922, 0.40014648, 0.7089844, -1.9003906, -0.13366699, -2.1816406, 0.3125, 2.1972656, 1.609375, 0.27783203, -1.6699219, 1.9082031, -1.5292969, -1.59375, 1.7333984, -0.4453125, 1.4072266, -0.8510742, -1.0849609, 2.0292969, -2.0546875, 1.3320312, -1.4052734, -0.35375977, -0.3635254, 1.3085938, 1.0537109, 0.60302734, -1.4619141, 1.8857422, -0.44970703, -1.2958984, -3.1132812, 2.0390625, 1.375, -1.484375, 0.23791504, 2.3144531, 0.2010498, -1.5830078, 0.66064453, -0.7553711, -0.83154297, -0.9707031, 0.5913086, 1.3378906, -0.6801758, 2.1054688, -0.7055664, -4.328125, 1.0380859, -2.6269531, 0.6870117, -0.41723633, -2.2128906, 0.48413086, 0.99902344, 0.73291016, 0.20397949, 0.8413086, -2.5644531, -0.5913086, 1.3447266, 1.4072266, -0.28149414, -0.16149902, -1.5976562, 0.54833984, -0.50390625, 0.33154297, -0.6245117, 1.7675781, 0.2536621, 1.7226562, 2.1289062, 0.2668457, 3.8300781, -0.17285156, -1.0410156, -0.6201172, 0.6640625, -0.11767578, 0.3269043, 1.5117188, 1.6240234, -1.1318359, 1.1806641, -0.7919922, 1.3994141, 0.37548828, -3.1542969, 0.2631836, -1.0927734, -1.8525391, -2.5058594, 0.84472656, -1.7890625, 1.4306641, 0.41210938, -0.96972656, -4.0859375, -0.4033203, -0.24389648, 3.0878906, -0.5986328, -2.9453125, 1.1083984, -0.7763672, -0.17614746, -2.2460938, 0.18945312, -1.65625, 1.6796875, -2.4140625, 2.390625, 0.8652344, 1.2587891, 0.5961914, -0.17346191, 1.1386719, -2.3066406, -0.23083496, 2.5976562, 0.086120605, -0.95654297, 0.06665039, -1.7451172, -0.0012216568, 0.6333008, 0.9189453, 0.22058105, -0.28271484, 0.5058594, 0.96484375, 2.1992188, 0.5175781, -0.69970703, -1.6845703, -0.09283447, -0.44726562, 0.69677734, -2.4335938, -1.5478516, -1.9785156, 0.81591797, -2.1640625, -1.1005859, 0.107421875, -1.0458984, 0.5625, -0.1005249, -2.3535156, -3.8261719, -0.6582031, 1.6162109, 0.54052734, -0.29418945, -0.12927246, -1.8857422, 1.2529297, -2.7949219, -2.1484375, -1.2753906, 1.7138672, 2.2558594, 0.82373047, -0.46679688, -1.1308594, 1.6923828, 0.61328125, -0.4477539, -0.9321289, 0.9951172, -0.5722656, 1.4404297, 0.13464355, 0.80859375, -0.46313477, 1.7529297, 2.4511719, 2.0449219, 0.64404297, 1.8710938, 0.28515625, -2.5410156, -3.3789062, 1.5292969, 1.2988281, 0.18469238, 1.0888672, -1.4228516, 2.9179688, 0.49951172, -1.3496094, 1.6992188, -1.4179688, 0.13464355, -2.0957031, -2.5214844, 0.64208984, 1.9316406, 1.8154297, -1.2626953, 2.5351562, 1.4853516, 0.2705078, -0.90771484, 1.4960938, 1.6054688, 0.5932617, -0.25439453, 0.8105469, -0.61376953, -1.5488281, 1.1435547, -1.9375, 0.96728516, 1.1259766, -0.5600586, 0.0074043274, -0.62890625, -3.3789062, 1.0429688, -0.059539795, -2.6171875, -0.5336914, 0.1484375, 0.625, 2.7382812, 1.0273438, 0.0546875, 0.35595703, -1.3027344, 3.3046875, 0.6035156, 2.8242188, -0.68310547, -0.4230957, 1.6357422, -0.81396484, -0.23754883, 0.034088135, 1.3359375, -0.20227051, -1.5556641, -1.0966797, 3.3828125, -0.4248047, -1.8496094, 2.5253906, 0.10797119, -0.020401001, 1.9570312, -1.5722656, -0.65234375, 0.9633789, 2.8320312, 2.9550781, 1.0273438, 0.9658203, -1.5429688, 0.55908203, 0.35961914, -3.6699219, -0.7553711, 0.71728516, 1.2021484, -0.2824707, -0.049591064, 1.5234375, -2.625, -1.5546875, 2.0390625, -1.6865234, 2.2988281, -0.2836914, 1.5800781, 1.6210938, -2.3144531, -0.40185547, -0.2775879, 2.6289062, -0.32958984, 0.43823242, -0.124816895, -1.3808594, -1.6962891, -1.2207031, 1.9609375, -2.4023438, -1.0126953, -2.3808594, -1.4404297, -1.4277344, -1.5517578, -3.0058594, 0.5488281, 0.4453125, -1.6640625, 2.4726562, -0.9404297, -1.3222656, 0.67626953, 1.9628906, -1.9023438, 2.3652344, 0.4248047, 2.265625, -0.9560547, -1.6875, -0.1517334, 0.7260742, 1.2988281, 0.83984375, -0.022232056, 0.4091797, -0.66796875, 2.6816406, 0.65283203, -2.1152344, 1.6259766, -1.3681641, -1.8720703, -3.9277344, -0.013496399, -0.5161133, -0.28881836, 0.24389648, 0.26293945, -1.1357422, -0.6513672, 1.7070312, -0.92871094, 2.7441406, 1.8613281, 3.5351562, 0.64160156, -1.7353516, -0.1204834, -0.34570312, -2.9335938, 1.0859375, 0.54052734, -0.56884766, -2.4609375, -1.6279297, 0.88720703, -0.95410156, -1.2529297, -0.22094727, 1.1513672, 2.0195312, 1.4335938, -2.4921875, 0.56396484, -0.5332031, 2.0898438, 0.86621094, 0.7963867, -0.07702637, -0.09979248, -1.0615234, -0.42358398, -0.04058838, 3.0410156, -0.12072754, 0.49829102, 1.7236328, -0.6538086, 0.8388672, 1.0595703, -4.3632812, 0.4091797, 3.2753906, 0.36816406, 0.29418945, -1.4550781, -0.2770996, -0.8022461, 1.2333984, 3.0820312, 1.0214844, 0.43945312, -0.57714844, -0.18408203, 1.4824219, 1.1367188, -1.6279297, 1.0078125, -0.06402588, 2.984375, -2.0644531, -0.14697266, 0.52978516, 1.4677734, -3.5644531, -1.0761719, 1.3720703, -1.8037109, 0.8041992, -1.4257812, 0.34448242, 0.59277344, 0.24597168, 0.6699219, -0.7988281, 1.2021484, 1.4541016, -1.2802734, 0.33642578, 1.8271484, 0.45629883, 2.6054688, 1.0546875, 0.1784668, 0.9379883, 0.6044922, -2.9199219, -0.08831787, 1.0478516, 0.7246094, -0.38842773, 0.91259766, -1.1865234, -0.21777344, 0.27612305, -0.27148438, 1.9072266, -2.3964844, -0.8388672, 2.2460938, -0.16625977, -1.6875, -0.32666016, 0.0019512177, 0.14526367, -2.3515625, 0.40234375, -2.171875, -0.5161133, 0.7573242, -2.0039062, -0.7836914, -1.5732422, 3.9707031, -0.74365234, -2.5410156, -0.5180664, 2.3457031, -0.09844971, -1.0634766, 1.4931641, -1.1240234, -0.29882812, 4.6289062, -0.8413086, -1.4130859, 0.69873047, -1.4423828, -0.35424805, 1.3310547, -1.0419922, -0.1315918, 1.1220703, 1.0683594, 0.28198242, 1.2988281, -0.875, -0.87158203, -1.7597656, 2.1152344, -0.8154297, -1.0234375, 2.1386719, -2.1972656, -0.6538086, 1.7207031, -1.4375, -0.0043907166, 0.07733154, 1.5517578, 0.10357666, -0.83740234, 4.5859375, -0.94628906, -1.0351562, -0.62890625, -5.1757812, 0.6010742, -2.7109375, -0.6826172, 2.1152344, 0.8339844, 0.5239258, 0.87890625, 0.34570312, -3.3417969, -1.7177734, -2.078125, -1.6445312, -4.0859375, -2.2617188, -1.3457031, -0.78125, -1.2695312, 0.08166504, 0.108947754, 1.8779297, -0.4345703, 0.75146484, -0.8388672, 1.6337891, -1.7822266, 0.45458984, 0.9633789, 0.77197266, 0.58447266, -0.8979492, -0.0496521, -1.6601562, 2.4550781, 1.0175781, -1.8925781, 1.8271484, 2.1503906, -0.32910156, -0.0076065063, 0.6435547, -0.3959961, 3.4121094, -0.14099121, -3.0625, -0.90527344, -0.6586914, 0.38232422, -0.3149414, -1.3007812, 0.20349121, -1.5751953, 0.032836914, 0.079589844, 2.0429688, 0.81396484, -0.21264648, -2.2910156, 1.1113281, -1.0429688, -1.6474609, -1.3828125, -1.2646484, 0.25463867, -0.8251953, 0.39575195, -3.0859375, 0.63916016, 0.20605469, -0.40893555, -0.28808594, 2.8125, 1.1660156, 2.4355469, 4.7148438, -1.6523438, -1.8134766, 2.8105469, -1.4863281, -0.36938477, 1.8789062, -0.64746094, -0.5932617, -1.4238281, -0.27246094, -1.3486328, -1.4326172, 1.2568359, -2.3847656, -1.3027344, 0.31176758, -1.6972656, -1.1201172, 1.0214844, 0.1352539, -0.96972656, -0.20910645, -1.7871094, 0.76171875, 0.6972656, 1.1767578, -0.09875488, 0.6875, -1.1757812, -0.72021484, 2.15625, 2.7949219, 1.0976562, 0.9526367, 2.4257812, -0.1751709, 0.8886719, 0.23730469, -0.3642578, -1.5576172, -1.4052734, -1.3876953, -1.9150391, 2.6054688, 1.4931641, -2.1015625, 0.90771484, -0.6796875, -2.0859375, 4.2382812, 1.4560547, -1.5146484, -0.33325195, -1.4111328, -0.5449219, 1.6328125, -0.89453125, -2.7753906, -0.6713867, 2.5546875, -1.6621094, 1.4970703, 1.2822266, -0.27807617, 0.06616211, -0.9614258, 0.3005371, -0.26708984, -1.4238281, -1.3066406, -0.5541992, -0.50634766, -2.0703125, 0.08111572, 2.1796875, -0.8496094, -0.5019531, 1.2675781, 0.31152344, 0.50634766, -0.88623047, 0.1706543, 0.15014648, -0.16918945, 1.0927734, 0.70947266, 2.0039062, -0.6689453, 1.0878906, -1.8515625, -0.7470703, -2.1230469, 1.8525391, -0.92626953, -0.29589844, 2.78125, 0.7001953, 1.1181641, -3.0585938, -0.12976074, 0.89941406, -0.3371582, -0.081726074, 1.0625, -1.2705078, -2.0117188, -2.7402344, -2.4746094, -1.1777344, -1.8056641, -2.9550781, 0.6044922, -1.5087891, -0.41430664, -0.5703125, -0.4206543, -0.28881836, 0.24841309, -0.6953125, -0.52197266, -1.1279297, -0.25146484, -0.09881592, 0.46557617, 0.14660645, 0.17822266, -0.7739258, 0.19641113, -2.0078125, 0.5673828, 3.1289062, -0.5961914, 0.97802734, 1.2431641, -1.7763672, 2.0957031, 3.4257812, 0.03543091, 0.31396484, 0.99365234, -0.09423828, 1.0507812, 1.5, -2.15625, 1.5576172, -0.043395996, -1.7470703, 0.59521484, -2.6191406, 0.15527344, -0.076171875, 1.6005859, 0.78564453, 1.5673828, -0.20910645, -0.85302734, 0.82666016, 0.43188477, 2.7871094, 1.1328125, -1.6943359, -0.79589844, -1.6621094, -0.78808594, -0.69384766, -3.6933594, -1.3710938, -0.27294922, 0.07067871, 1.5761719, 0.22143555, 1.7333984, 1.4238281, 1.4638672, -2.0546875, 0.056121826, -0.33129883, 0.68652344, 1.0898438, -1.1796875, -2.6699219, -2.3222656, 1.1748047, 1.5273438, 0.005142212, -0.30029297, -1.1279297, -2.96875, 0.14904785, -0.092041016, 0.4345703, 2.8105469, 2.078125, -1.2939453, 1.7431641, -0.47094727, 0.64453125, 3.0546875, -0.019744873, 3.7714844, -1.4951172, 3.03125, 3.6347656, -2.1347656, 1.0576172, -1.7861328, 1.1474609, -1.4511719, -1.2744141, 0.5493164, -1.4140625, -1.046875, -1.4482422, -0.17822266, -2.8144531, 1.8173828, 0.26586914, 1.0029297, 0.09716797, 0.5180664, -0.21594238, 1.2060547, 2.140625, -2.0390625, -0.94433594, -1.4970703, 0.33154297, -0.4333496, 0.24597168, -0.56396484, 0.75439453, 0.65283203, 0.57910156, -1.1376953, -0.047668457, -0.43579102, 0.57910156, 0.99658203, 3.0039062, 0.83740234, 1.8525391, 2.1640625, 0.22851562, 1.9082031, 1.7617188, -0.47827148, 0.34228516, 2.3378906, 2.1152344, 0.2685547, -0.07171631, 0.9785156, 2.2753906, -0.7211914, -1.0800781, -1.5058594, 1.2509766, -3.1210938, 3.109375, -1.2353516, 2.7441406, -2.2773438, 1.3134766, -1.6962891, -1.0947266, -0.6381836, -1.8085938, 2.0644531, 0.08325195, -0.35961914, 1.9785156, 1.4794922, -1.3085938, -2.2148438, 2.5058594, 0.54052734, -2.28125, -0.41308594, 3.6953125, 2.2597656, 1.4179688, 0.18334961, 1.5878906, -1.8173828, 2.3867188, 0.9711914, -0.20141602, -0.17016602, 1.6943359, 1.1943359, 1.2949219, -2.1914062, -1.6074219, 0.7841797, -2.7929688, -3.1269531, 1.4423828, 1.2685547, 2.0976562, 1.6113281, -1.6513672, 0.12408447, 2.8144531, 1.2177734, -2.2382812, -0.96875, 0.77197266, -2.0195312, -0.4333496, 0.99609375, -0.73291016, 3.2285156, 1.6962891, -0.5239258, 2.2421875, 0.80371094, 1.1796875, -0.28930664, 0.7939453, -1.0429688, -0.17980957, -0.5488281, 1.3574219, 0.033691406, -0.6845703, 1.7402344, 1.75, 1.5224609, -1.0527344, 1.7236328, -1.8154297, 0.051940918, -0.63720703, -0.48364258, -0.32250977, 0.1496582, -1.6865234, -0.79003906, 0.2479248, -0.3774414, -2.5488281, -0.73583984, 0.32104492, -1.5664062, -1.3203125, 1.3544922, -2.359375, 1.2568359, -0.33911133, -0.46728516, -0.14379883, -0.71728516, 1.7617188, -0.6035156, -2.9121094, -0.46435547, 2.5097656, -0.5864258, -0.32617188, -0.33813477, -0.76171875, 2.4511719, 0.80029297, 2.5859375, -2.3144531, -0.09631348, -0.37695312, 0.5698242, -0.6171875, 1.3105469, -1.1132812, -1.7207031, 0.11602783, -3.0136719, -0.46240234, -0.37426758, -2.390625, -0.53466797, 5.0117188, 2.8085938, -0.029541016, -1.1621094, -2.6425781, -0.30664062, 0.66308594, 2.8847656, -0.0033893585, -0.55126953, 0.18615723, 0.9760742, 3.7246094, -0.6767578, -1.2880859, -0.5102539, -0.5473633, 1.0322266, -1.3730469, 1.4238281, -0.29882812, -0.5732422, 1.4716797, 0.8261719, 2.3242188, 2.6757812, 1.6914062, 2.4316406, 0.74853516, -1.7792969, -0.15344238, -1.5927734, 0.18347168, 1.7822266, -0.9589844, 1.5673828, 0.57128906, -0.31054688, -5.0859375, -1.0947266]}, "B002PJJ0MI": {"id": "B002PJJ0MI", "original": "Brand: GasOne\nName: Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor\nDescription: \nFeatures: \u2713 HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances\n\u2713 EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands\n\u2713 DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head\n\u2713 HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability\n", "embedding": [-1.1992188, 1.4130859, 0.7397461, 0.81884766, -0.31640625, 1.5, 1.2519531, -1.0195312, -0.7529297, -0.09753418, 0.13830566, -0.24133301, -0.05593872, -1.6142578, 1.3339844, 0.026123047, -0.2529297, 1.8330078, 0.40356445, 0.7265625, 2.203125, -0.2861328, 2.0546875, -1.9550781, -0.010627747, 0.7519531, 2.9863281, -3.8710938, -0.023590088, -0.7368164, 2.0214844, 1.0800781, -0.6357422, 1.9423828, -2.4589844, -0.73583984, -1.3212891, 1.0009766, -4.2578125, -1.2470703, -0.75683594, -0.7026367, 1.90625, 0.31860352, -1.2705078, 0.9555664, 2.4355469, 1.4189453, -1.6669922, 0.5209961, 0.4638672, 1.4306641, -1.4023438, 0.5336914, 0.17163086, 1.0195312, 1.2207031, -2.2089844, 0.22241211, 0.5839844, 1.0273438, 1.4550781, -2.8867188, 0.12609863, -2.0351562, -0.07110596, 1.2158203, -1.8857422, -1.2851562, -0.1116333, 2.8164062, -0.4309082, 0.0079956055, -0.05496216, 1.2568359, -1.2724609, -2.7539062, 0.7397461, 3.015625, -0.6796875, -1.3476562, 2.1035156, 0.75097656, -0.032714844, -0.7636719, 1.0546875, -1.2060547, -0.6640625, 1.5166016, -0.40698242, -3.171875, 3.6738281, -1.7675781, -3.7636719, 2.1445312, 0.55078125, 0.20080566, 0.7597656, 0.13439941, -0.18322754, -0.7558594, -1.015625, -1.6132812, 0.7182617, -1.1132812, -1.7236328, 2.0136719, 1.859375, -2.765625, 1.1982422, -1.6298828, -1.9619141, 0.91308594, -0.48217773, 0.8618164, -0.30786133, -0.02571106, -0.42163086, 4.078125, 0.19689941, 3.8203125, -1.3076172, 0.103393555, -1.5800781, -0.04724121, 2.3417969, -0.53027344, -0.3239746, 2.3261719, -1.5126953, -0.42407227, -0.68603516, 2.4433594, 0.60009766, -1.3339844, -0.6191406, -0.49658203, -1.640625, -3.5449219, -1.1757812, -2.3945312, 1.7714844, 0.7763672, 0.06732178, -4.28125, -0.55859375, -0.8803711, 3.2109375, -0.4260254, -0.8647461, 0.2944336, -1.1777344, -0.2602539, -1.5029297, 1.9179688, 1.1923828, -0.7836914, -2.9082031, 3.3164062, 1.5146484, 0.91845703, -0.46606445, -0.9321289, 2.3535156, 0.29370117, -1.5527344, 0.07977295, 1.0351562, -1.1318359, 1.2421875, -0.49487305, -2.0859375, -0.89501953, 1.1259766, -0.22912598, -0.69873047, -0.34301758, 3.2324219, -0.017852783, 0.20666504, -3.6835938, -2.5761719, 2.1171875, 0.5083008, 2.5664062, -1.5039062, 0.9667969, -1.2148438, -0.34887695, -1.3164062, -1.6191406, -0.19091797, 0.8803711, 0.38720703, -0.8183594, -1.8798828, -0.6850586, -1.9482422, -0.5917969, 1.0371094, -1.1328125, -1.0517578, -0.6665039, 1.2529297, -1.4746094, -1.6708984, -0.048034668, -2.2363281, 1.7109375, 1.7880859, 0.80322266, 0.28686523, 1.6083984, 0.080200195, -0.52734375, -2.2207031, 2.890625, 1.1914062, 2.6269531, 1.8886719, -0.111572266, -1.7773438, 1.7568359, 1.6142578, -0.3623047, 2.1230469, 1.7832031, 0.88720703, -1.9375, -1.8994141, 3.3339844, 1.6230469, -0.5761719, 0.1862793, -0.26342773, 3.0488281, 0.57128906, -0.34887695, -0.16711426, 0.4255371, -1.0712891, -1.1123047, -1.890625, 0.056793213, -2.3222656, -0.1538086, -0.4892578, -0.4020996, 2.421875, 0.21032715, 0.3840332, -0.24365234, -0.6635742, 0.20581055, -1.3496094, 0.72509766, 0.9946289, 0.75439453, -0.5732422, -1.7412109, 1.5693359, 0.921875, -0.18896484, 0.19372559, 0.012779236, -1.3525391, 3.4589844, 0.60498047, -2.0546875, 0.46606445, 0.91845703, 0.39990234, 3.3710938, -0.46533203, 1.8349609, 1.1601562, -1.8486328, 3.5527344, 0.3244629, 1.7128906, 0.12042236, -2.2773438, 1.5976562, -1.3740234, 1.3710938, 1.4150391, 2.5625, -0.73535156, -1.6533203, 0.8388672, 5.6796875, -0.28930664, -2.8496094, 1.234375, -1.7421875, 0.7421875, 0.94970703, 0.012756348, 0.03704834, -1.3339844, 2.3515625, 0.058807373, -0.14929199, 1.6640625, -2.1367188, 0.0949707, -0.65771484, -1.5556641, -0.8383789, 0.2475586, -0.49902344, -0.31518555, -1.7666016, 1.5371094, -2.5429688, 0.15026855, 2.546875, -3.1855469, 0.38989258, 1.3505859, 0.8691406, 2.34375, 1.28125, -1.375, 2.2480469, 1.3447266, 0.04034424, 1.3203125, 0.08959961, -1.1123047, -1.2851562, -1.34375, -0.33984375, -0.12927246, -1.4023438, 0.4987793, -0.80029297, -2.984375, 2.1132812, -2.3300781, -1.1132812, 2.7695312, -3.1914062, 1.3466797, -1.7851562, -2.4316406, -1.3320312, -0.0128479, -1.2451172, -1.1513672, 1.9042969, 3.0117188, -1.5888672, -4.2226562, -1.0185547, -0.25073242, -0.7661133, 0.58203125, -0.73095703, 1.3291016, 1.0517578, -0.27368164, 0.22290039, -0.33496094, -0.3232422, -2.0664062, 0.90625, -3.9824219, 0.43823242, -1.6054688, 0.19921875, -0.17016602, -0.46777344, -1.9013672, -1.1806641, 0.51123047, -0.06713867, 2.8535156, -2.1894531, 3.2421875, -0.5048828, -1.4375, 0.57714844, -2.5, -2.8828125, 0.44433594, 0.58496094, -2.0371094, -1.6552734, -4.5234375, 1.1943359, -1.3017578, -0.026016235, -0.63427734, 0.37036133, -1.4511719, 0.9609375, -0.94873047, -1.1171875, -0.67041016, -0.36791992, -0.0057907104, -0.7246094, -0.99658203, -0.7236328, -1.6132812, -0.14892578, 1.1806641, 1.4990234, 0.2697754, 0.38598633, 1.6269531, 0.8432617, 0.5527344, -0.23583984, -3.9648438, 2.4296875, 0.77441406, -0.008460999, 1.90625, -2.8984375, -1.2167969, -2.4179688, -0.5019531, 2.0527344, -0.40673828, 2.4511719, 0.17529297, -1.1044922, 0.94189453, 1.421875, -0.5541992, -2.5078125, 0.36108398, 3.0820312, -2.0605469, -1.7597656, -0.08050537, 2.8691406, -2.9414062, -0.40307617, 2.4726562, 0.9399414, 1.046875, 1.5742188, 0.48828125, -0.58984375, -1.3056641, 0.72265625, 1.7373047, 0.8466797, -0.107666016, -0.8071289, -0.3544922, -0.43554688, 0.75146484, 1.2441406, 1.1289062, 3.4667969, 1.7373047, 1.3613281, -0.97314453, 0.043029785, 1.3789062, 1.2998047, 0.017044067, 2.4257812, 0.38354492, -0.40185547, -0.99658203, -1.3144531, 0.42504883, -1.9511719, -0.036254883, 0.21166992, -0.7871094, 1.2099609, 0.16333008, 0.09942627, 0.38330078, 0.41992188, 1.8544922, -0.009803772, 0.9165039, 1.9892578, -0.036376953, 0.44335938, -1.4433594, 2.1796875, 0.16882324, -1.2412109, 0.19445801, 1.0166016, -2.6484375, -2.5585938, 0.48876953, -1.8330078, -0.13146973, 2.9550781, -0.76464844, -1.4345703, 0.80859375, -0.3486328, -0.007987976, 1.6914062, -0.7480469, 0.0440979, -2.3652344, -0.9790039, -0.47216797, 0.5288086, 1.0625, 1.9326172, -2.2421875, 0.8515625, -3.2851562, -1.265625, 0.48266602, -1.2666016, -1.0517578, 1.4833984, -1.0244141, 1.7900391, -0.8017578, 3.9609375, -1.1484375, -1.6103516, 2.1054688, -2.1972656, -0.6870117, -2.4042969, -3.6640625, 2.5, -1.4384766, -0.890625, 2.5761719, 0.8364258, -0.3474121, 0.7089844, 0.8261719, -2.9082031, -2.2324219, 0.008911133, 1.3896484, -2.1855469, -0.84472656, 0.88964844, 1.8388672, -2.2871094, -0.5625, -0.03125, -0.9199219, -0.7163086, 0.4140625, -2.4648438, 0.04272461, -1.1044922, 1.0175781, -1.7773438, -0.9272461, -0.5551758, -1.2578125, 0.15026855, -1.453125, 1.8105469, 1.1601562, -0.3413086, 0.8496094, 4.4414062, 1.2929688, 0.7216797, 0.78027344, 0.43115234, 0.7324219, -0.10723877, -2.6640625, -2.7382812, -0.9477539, 0.46191406, -0.6328125, 1.0185547, -1.9638672, -1.4257812, 2.2636719, 1.0273438, 0.86328125, 0.58447266, 2.015625, -1.0263672, 0.1607666, 0.04916382, -2.4140625, -0.7109375, -0.8105469, 0.9790039, -0.47924805, 1.0097656, -0.69921875, -0.51220703, -0.24157715, -0.8457031, -2.0390625, 1.1855469, 1.3222656, 0.29052734, 0.6816406, -0.98339844, -1.6611328, 0.16772461, -0.23571777, -0.3618164, 0.1505127, 0.36938477, 0.96875, 1.0439453, 0.265625, -1.3037109, -1.3173828, 2.1972656, -1.3740234, 0.29736328, -1.2587891, 0.89746094, -0.7607422, -0.5522461, -0.09576416, -0.28173828, 2.4980469, 0.52441406, 0.47998047, 0.18188477, 0.064697266, -1.9980469, -1.109375, 0.22375488, -0.26342773, 1.171875, 0.7470703, 0.4519043, 0.50439453, 1.3310547, 0.34106445, 2.9960938, 1.5078125, 0.3869629, 0.19616699, 1.1787109, -1.8544922, -0.51904297, 2.3222656, 1.7558594, 0.953125, 4.6367188, 0.28271484, 0.13989258, 1.7695312, 1.6611328, -1.0195312, -1.140625, -0.6064453, -1.3632812, 1.4384766, -0.6489258, -2.5, 0.99658203, 3.0058594, -1.3945312, 1.2558594, 0.87402344, -0.9946289, -0.29418945, -1.4941406, -0.4501953, -2.0410156, -0.15124512, -0.34838867, -1.8818359, 0.51123047, -1.3125, 2.5546875, 1.7861328, -0.15991211, 0.3684082, 2.1386719, -1.5986328, 1.8837891, 0.13085938, -0.8642578, -1.6552734, 2.0117188, 1.1953125, 1.1845703, 0.28076172, -0.25512695, 1.0976562, -0.8857422, -0.23693848, 0.14501953, 2.6328125, -3.3339844, -2.3828125, 1.1689453, 0.25878906, 0.39404297, -1.4414062, -1.2050781, -2.0097656, 3.0488281, 1.5742188, 1.2705078, -0.46362305, -0.062927246, -1.6757812, -4.5859375, -0.33691406, -0.039001465, -0.4169922, -1.1074219, -0.39208984, -0.7348633, -0.31201172, -0.36035156, -0.46484375, -2.2714844, 0.90966797, -1.1728516, 0.20568848, -1.2021484, 0.58984375, 0.6298828, 0.6074219, 0.7314453, 0.10699463, 0.8339844, -1.8457031, -2.2109375, -0.17590332, -1.1855469, 1.1455078, 1.1416016, -1.1914062, 0.26489258, 2.296875, -0.97753906, -2.2792969, 1.9082031, -0.73046875, 0.3010254, 1.203125, -1.6289062, 1.8173828, 1.4394531, -1.2539062, 1.2949219, -0.83935547, -0.12854004, -0.7050781, 0.033477783, 0.94873047, 1.4287109, -0.47265625, -1.0546875, 2.4726562, -0.5053711, 0.95654297, 1.8017578, -0.33007812, -2.78125, -1.1230469, -2.0546875, 0.011512756, -0.34179688, -0.59765625, -1.0390625, 1.7119141, 2.1875, -0.06744385, 1.2265625, 0.006416321, 0.68896484, 0.7133789, 1.6015625, -0.4794922, 3.4765625, 1.1972656, -0.40161133, -3.78125, -2.9003906, -0.05117798, 1.5517578, 0.68896484, -1.0117188, 0.2397461, -1.1181641, 0.22998047, -0.6635742, 1.1582031, 2.4882812, 1.0195312, -0.8725586, 1.7666016, 3.0957031, -0.51708984, 1.3945312, 0.25268555, 0.06555176, -0.76708984, 2.7167969, 3.0078125, 0.5810547, 1.7519531, -1.6259766, 2.0859375, -1.3505859, -1.3759766, 0.05505371, -1.8818359, -1.09375, -1.1337891, -1.4267578, -2.1269531, 0.96435547, 0.99121094, -0.41015625, 1.1728516, 2.1796875, -2.0507812, 0.8510742, 1.9980469, 2.6699219, -0.5932617, 0.9663086, -0.3137207, -0.08178711, 2.59375, -1.1416016, 1.0429688, 2.3515625, 0.44433594, -0.71484375, 1.5224609, 0.8964844, 3.515625, 1.0820312, 1.359375, 2.8789062, 0.36035156, 2.1835938, 0.5864258, 1.6171875, 3.6777344, -0.7753906, 0.25170898, 1.3085938, -0.35131836, -0.8769531, -0.96191406, -0.19641113, -0.16821289, -2.0898438, -0.6635742, 0.2076416, 0.7109375, -2.9902344, 0.7050781, 0.02142334, 1.1210938, -2.015625, 1.3496094, -1.2011719, -1.0625, 0.70947266, -0.8671875, 0.3010254, -0.9375, -1.1777344, -0.6347656, -0.6069336, 2.0078125, -2.0546875, 0.98876953, -1.1064453, -2.3652344, 0.1965332, 0.66503906, 0.30786133, 1.4746094, 0.86865234, 1.3857422, 0.14355469, -0.02947998, 0.9946289, -2.6152344, 0.69921875, 0.41918945, 2.7890625, -0.60253906, -1.3554688, 2.9238281, -1.6816406, -1.6445312, -3.0820312, 4.1328125, -0.11645508, 0.03781128, 0.6352539, -2.4296875, 2.234375, -1.3232422, 1.9443359, -2.8222656, 2.1542969, 1.1816406, -1.7226562, -0.027770996, -0.08496094, -0.77685547, 4.3984375, 0.6855469, -1.9287109, 0.49121094, 0.68652344, 0.085632324, 0.026184082, 0.8769531, 0.9394531, 1.5341797, -1.0097656, 3.0761719, 0.81152344, -1.5742188, -0.6777344, 2.0527344, 2.3320312, 0.62060547, 0.59375, -1.1220703, 0.23181152, 0.8144531, -1.1923828, -0.9394531, -1.2773438, -0.8261719, -1.3710938, -0.14868164, -1.5068359, -1.5488281, 2.3242188, 0.047424316, -0.41503906, 0.7548828, 2.4804688, -0.7988281, 0.30078125, -0.4831543, -0.8623047, -1.4296875, -1.5791016, 0.99560547, -2.6484375, -1.3251953, -0.12524414, 0.49438477, 1.0478516, -0.38671875, -0.15893555, -0.7861328, -0.25024414, 0.25219727, 0.9042969, -1.4941406, -0.47827148, -1.390625, 0.1015625, -1.0068359, 1.3398438, -1.0488281, 1.0351562, -0.625, -1.7714844, -1.2402344, -0.98339844, -0.31518555, 0.8569336, 2.7050781, 0.47265625, 2.0703125, -1.9550781, -4.4023438, -2.2558594, -2.265625, 0.24243164, -0.0362854, -0.6826172, 0.7216797, 1.6914062, 2.703125, -1.6005859, 0.5673828, -0.21398926, 0.08135986, 1.3466797, -0.76904297, 0.6230469, 0.45361328, -0.51660156, -0.7548828, 2.1972656, 1.5605469, -0.3305664, 2.1054688, 1.3720703, -0.3154297, -2.890625, 1.1123047, -1.5, -0.26000977, 0.5605469, 0.0126953125, 2.5996094, 1.9394531, -2.4882812, -2.2929688, -1.5839844]}, "B0836MR1K7": {"id": "B0836MR1K7", "original": "Brand: PATIOPTION\nName: PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills\nDescription: 1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
          2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
          3. Concealed air vent design upgrade to prevent rain into your grill.\nFeatures: \ud83c\udf40\u3010Please measure your grill before purchase\u3011 30\" L x 24\" W x 44\" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis.\n\ud83c\udf40 \u3010Premium Sewing Technology\u3011Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity.\n\ud83c\udf40 \u3010Premium UV Resistant Fabric\u3011 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather.\n\ud83c\udf40 \u3010Secure Fit \u3011Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit.\n\ud83c\udf40 \u30102 Handles\u3011 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.\n", "embedding": [0.3972168, 1.7353516, 2.3535156, -2.0761719, -1.0683594, 0.50683594, 1.3232422, -1.8662109, 2.2519531, 2.4238281, -0.77246094, -1.2041016, 1.9433594, -5.078125, 1.5039062, 0.9980469, 0.9013672, 3.1035156, 3.6953125, -0.5551758, 1.5205078, 0.62402344, 0.105773926, 1.2519531, 0.8886719, -0.3930664, 4.1523438, -2.6484375, -1.0664062, -1.2978516, 1.6708984, 0.2298584, 1.1914062, 1.7480469, -2.2792969, -2.0976562, -2.1894531, 1.5996094, 0.34545898, -0.8881836, -2.5527344, -2.6289062, 3.3164062, 0.55029297, -2.8203125, 0.6567383, -2.2929688, -0.76904297, 0.02758789, -2.2226562, 0.9345703, 2.5410156, 2.0410156, 0.99658203, -2.6054688, 1.5507812, -0.07067871, -1.6191406, -0.99560547, -0.20727539, -0.3293457, 0.5019531, -0.70410156, 2.9257812, -1.1318359, -1.7167969, -0.5004883, -0.5786133, 1.1416016, 0.79003906, 1.7148438, 0.6933594, -1.09375, 0.53222656, 2.2734375, -0.81591797, -1.6269531, 1.0283203, 2.9785156, -1.0507812, -0.390625, 4.9570312, 0.007575989, -2.7304688, -0.47924805, -0.02532959, -2.0703125, -0.9790039, 2.0175781, -0.70410156, -0.9140625, 2.5136719, -1.5175781, -2.84375, 0.2944336, -2.6367188, 3.2695312, -0.27734375, 1.3652344, 0.58691406, -1.3193359, -0.35009766, -1.8125, 0.20874023, -3.2402344, -3.0019531, 1.9287109, -1.4628906, 0.17321777, 0.6254883, -0.8535156, 0.5854492, 0.043914795, 0.8203125, 2.3320312, 0.42749023, -1.1113281, 3.09375, 0.20397949, 2.0488281, 3.7792969, 0.30517578, -0.5151367, -2.6425781, 0.9667969, 0.4975586, -0.8876953, 0.7504883, 3.3710938, -0.6665039, 1.1445312, -1.4707031, 0.9716797, 1.9130859, -0.033996582, 0.10021973, -1.1582031, 0.1887207, -2.6835938, 2.3144531, -1.7988281, -1.7099609, -0.026306152, -1.7519531, -2.1035156, 0.6308594, -0.9604492, 4.578125, -1.1025391, -3.4863281, 1.3486328, -1.8125, 0.026947021, -0.61376953, 0.6323242, -0.078125, 1.203125, -2.6777344, 3.8964844, 2.2226562, 3.4414062, -1.7763672, 1.8300781, 0.4296875, 3.5175781, -2.2832031, 0.72753906, -0.34521484, 0.25854492, 1.9951172, -0.15026855, -1.1972656, 0.69873047, 0.30419922, 1.5947266, -1.3730469, 0.3840332, 2.0546875, 0.5527344, 0.7163086, 0.5673828, -0.9980469, 0.78808594, 1.1171875, -1.3417969, -1.0683594, 0.1607666, 0.88378906, 0.25732422, -1.0292969, -0.26464844, -0.3310547, -0.62158203, -0.4338379, -2.6914062, -1.5830078, -0.5488281, -1.203125, -0.41137695, 0.13793945, -1.7207031, -2.1152344, -1.6699219, 0.004699707, -3.0625, -0.63964844, -2.1289062, 1.0195312, -0.16259766, 0.21594238, 0.421875, -1.7929688, 3.0800781, 1.8242188, -1.0527344, 0.7055664, 1.6933594, 0.2734375, 0.8027344, 1.1533203, -1.7490234, 0.42407227, 0.9951172, 4.21875, -1.0556641, 1.3320312, 0.85058594, 0.39038086, -0.8178711, -1.3818359, 0.7104492, 0.7480469, -0.7241211, -0.1015625, -1.3447266, 0.43725586, -0.29638672, -0.9013672, -0.80810547, 1.2246094, -1.7910156, -2.5742188, -4.5976562, -1.2226562, 1.2226562, 0.8408203, -1.8193359, 2.2011719, 0.119262695, -1.4677734, -0.69433594, 0.7373047, -0.44555664, 0.14404297, 0.29785156, 0.3935547, 0.7998047, -0.6401367, -1.2070312, -1.0253906, -1.1347656, -0.4543457, -0.8574219, 1.0751953, -0.7895508, -0.5908203, 0.05050659, 1.359375, -3.0039062, -1.5996094, 1.3652344, 0.15124512, -0.6225586, -1.8076172, 1.2490234, -0.57128906, -0.23608398, -0.8300781, 1.2871094, -1.2089844, 0.24926758, 1.4707031, 2.7636719, -1.7871094, 0.4362793, 0.23327637, 0.46484375, -1.5419922, -1.2988281, 0.22973633, 3.4160156, 0.14538574, -1.2724609, 3.3125, -0.42529297, 0.6142578, 1.0771484, -0.6455078, -0.36547852, 1.7353516, 0.42919922, 1.40625, -1.2636719, 0.828125, -0.6616211, -1.7353516, 1.0585938, -2.8515625, -1.7871094, 1.5585938, 0.7841797, 0.8105469, -0.20568848, 0.035186768, -2.109375, -2.3945312, 1.9414062, -3.0410156, -0.3178711, 0.20129395, -0.07324219, 0.21984863, -2.6582031, -2.9550781, -0.055023193, 0.3083496, -2.1191406, -0.12261963, 0.9682617, -0.8720703, -0.48657227, -2.2851562, 1.7402344, -1.2070312, -2.1582031, -3.5214844, -2.40625, -0.8232422, -0.22924805, -1.5957031, 0.5805664, -1.421875, -3.0820312, 1.1376953, 1.9267578, -3.4550781, -0.11364746, 0.90527344, -1.9912109, 1.6201172, -0.734375, 0.10229492, -0.16796875, -4.3789062, 0.7861328, -1.8642578, -0.23742676, -0.64501953, -1.9121094, 0.28198242, -0.41967773, 0.45947266, 0.40966797, 1.3007812, 1.6982422, -0.9628906, 0.08337402, -3.2089844, -0.46923828, -1.5214844, -0.027328491, -1.3740234, 1.0898438, -4.1953125, -2.2207031, 0.671875, -0.8105469, 4.03125, 0.4645996, 1.0478516, -0.9082031, -1.5146484, 1.6152344, -0.3791504, -2.0917969, -0.27954102, 1.1064453, -1.9277344, 0.0390625, -3.7695312, -3.3925781, -1.7695312, -0.23022461, 0.26342773, -1.8320312, -0.17602539, 2.4902344, -2.4453125, -1.8681641, -1.8291016, 1.6650391, -1.3486328, -0.24780273, -1.609375, -4.03125, -2.6660156, -1.1455078, -3.2734375, 2.1054688, -1.7919922, 0.23425293, 3.2988281, -0.7919922, 4.3671875, -0.25683594, -4.296875, 1.3125, 2.0800781, 0.8769531, 3.0761719, -0.48217773, -1.1669922, -1.0742188, -0.18493652, 2.9511719, 0.6821289, 0.57470703, 2.5136719, 0.87060547, 1.1445312, -1.4150391, 0.99560547, -1.1708984, 1.7802734, 2.8027344, -0.8613281, 0.36083984, 0.4897461, 0.6333008, -1.4628906, 0.5097656, 2.6113281, -0.08496094, 0.20532227, 1.2744141, -0.06262207, 0.6875, -0.9008789, 2.4804688, -1.4121094, 3.0820312, 0.026443481, -0.3486328, 0.71533203, -1.1464844, 2.3242188, 2.5722656, 0.6069336, 0.30322266, 1.6806641, 0.2397461, -0.18530273, 0.6064453, 1.9199219, 1.4638672, -1.0400391, 2.1992188, -0.37597656, 0.06390381, 1.9980469, -2.6113281, 1.5605469, -1.1035156, -0.4243164, 2.8261719, -1.5644531, -0.43847656, -1.4521484, -0.17382812, -0.25341797, -2.6074219, -1.2324219, -2.5703125, -0.49169922, 0.49194336, -3.4609375, -1.3066406, -0.8154297, 2.5605469, 0.5864258, -2.3007812, 0.27783203, 2.2304688, -1.3613281, -2.1601562, 0.5029297, 1.7509766, -0.34472656, 2.5, 3.3320312, -1.8193359, 2.5429688, -3.0761719, 2.1074219, 0.9628906, -1.0644531, -0.24926758, 0.48339844, -0.5732422, 0.12426758, 2.3105469, 1.5195312, 1.9541016, -2.2617188, -0.65283203, -2.8828125, -0.54785156, 2.3769531, -1.3798828, -0.4958496, 1.4023438, 1.1005859, -0.07299805, -0.15942383, 1.796875, 0.7294922, -1.6152344, 1.84375, -1.3037109, -0.26049805, -0.5644531, -5.7070312, -0.26611328, -0.34399414, -1.8232422, 2.6230469, 0.58154297, 0.7734375, 1.4785156, -0.65185547, -1.59375, 0.21960449, -3.2167969, -1.6494141, -0.72558594, -0.47387695, 0.8989258, 0.43920898, -1.1328125, -2.0449219, -2.6074219, -2.3261719, 0.5263672, 0.37646484, 0.29077148, 0.83935547, -3.2265625, 0.58251953, -2.8984375, 0.29589844, -0.99560547, 0.49243164, -0.6328125, -0.63623047, 1.0478516, -0.33862305, 1.4707031, 0.8071289, 1.3134766, -0.69433594, -0.8647461, -0.35009766, 1.3369141, 3.8417969, -0.91503906, -3.1289062, -0.33935547, 0.9199219, 1.8632812, 0.15148926, -1.9482422, -0.63623047, -0.92285156, -0.13757324, -0.3569336, 2.4394531, 0.69970703, -1.1074219, -2.4179688, 1.8486328, -1.5917969, -1.6757812, -0.7558594, -0.65722656, 1.1972656, 1.7246094, -2.2929688, -2.9023438, 2.6113281, 0.21203613, -0.2232666, -2.5351562, 3.2109375, 2.2304688, 1.4550781, 2.9707031, -3.09375, 0.9008789, 0.117126465, -0.2166748, -0.47631836, 0.19030762, -0.65527344, 1.6542969, 0.99902344, 0.96777344, -2.4921875, -1.7714844, -0.9477539, -1.6669922, -0.6816406, -2.8242188, 2.9824219, 1.0537109, 0.99902344, 1.1025391, -2.3417969, 2.1113281, 0.009017944, 0.3959961, 2.1464844, -2.3007812, -0.1772461, 1.9599609, 1.6074219, 0.26171875, 0.9785156, 0.8828125, 0.2680664, -0.6152344, -1.3027344, -0.4560547, 1.5712891, -1.9521484, -0.3774414, 1.1240234, 1.5947266, -1.7490234, -1.6259766, 2.8671875, 3.6738281, -0.4165039, 1.9384766, 1.3613281, -1.34375, 2.1074219, 2.4726562, -0.76904297, 1.0664062, -0.41455078, -0.61376953, 0.8046875, -0.57128906, -2.625, -0.19128418, 1.0087891, -0.7553711, 1.8759766, -1.7539062, -1.3847656, 1.8945312, -1.6806641, -0.6855469, -0.029937744, -1.1484375, -0.5576172, 0.31860352, 1.8730469, -0.3190918, 0.9716797, 3.7050781, -1.1113281, -2.9042969, 1.5136719, -0.6533203, -0.30493164, -1.3369141, -1.3115234, -3.2226562, -0.8574219, 2.78125, 1.2412109, 1.5039062, 0.15234375, 1.8486328, -2.4570312, 0.49780273, 0.3540039, 1.9619141, -2.7070312, -0.8652344, 2.5410156, -2.0429688, -1.5166016, -2.3320312, 0.5410156, 0.9404297, 2.1113281, 2.0390625, 0.6796875, 0.1652832, -0.94628906, -2.9765625, -2.9199219, -1.0507812, 0.6220703, -0.9790039, 1.6240234, 0.12200928, 1.65625, 0.80566406, 0.09307861, -0.4416504, -0.6479492, 0.034942627, -1.7861328, -2.1191406, -0.89404297, -1.7392578, -1.2636719, 1.4960938, 0.014122009, 1.6269531, 0.3400879, -3.8320312, 0.14111328, 0.13146973, -3.7011719, -0.48999023, 1.6103516, 0.105773926, 1.1865234, 0.671875, -0.7993164, 0.16772461, 3.3847656, 0.5366211, -0.6166992, 2.3144531, -0.6064453, 0.7915039, -1.2617188, -1.1875, 2.0800781, -1.0644531, 0.28637695, 0.7026367, -1.7050781, 1.9277344, 2.0644531, 0.14624023, -0.5253906, 0.49267578, 1.4511719, 2.5917969, 0.9042969, -0.9638672, 0.21508789, -1.71875, -2.4296875, 0.62841797, -1.4462891, -2.2929688, -2.2832031, 0.46728516, 1.8613281, 1.6474609, 1.3193359, 1.6708984, 2.046875, -2.3417969, 0.009857178, -0.029876709, 4.1953125, 0.80371094, -2.2070312, -0.20336914, -1.1806641, 0.9926758, 1.8427734, -1.0078125, -0.72558594, -0.034606934, -1.2099609, -0.40234375, 1.1347656, 1.9462891, -0.29736328, 0.28344727, 0.09289551, 1.3886719, 2.8046875, -0.38793945, 1.0136719, -0.13598633, 1.8964844, -1.4931641, 2.5605469, 1.2050781, -3.2910156, -0.40771484, -0.81152344, 0.828125, -0.085998535, -1.4628906, -0.26708984, -1.5888672, -1.2246094, -1.9042969, 0.02545166, -4.0429688, 0.6660156, -0.022888184, -0.11102295, -0.5029297, 2.5839844, 0.058380127, 2.3710938, 1.9511719, 0.2705078, -0.34765625, -0.14868164, -1.4853516, -0.08679199, 0.8364258, -2.1582031, -0.56347656, -1.4980469, 0.26611328, 0.03225708, 0.17407227, 0.08453369, 1.0839844, 0.58935547, 3.0234375, 3.2695312, 2.1601562, 2.2480469, 0.23498535, 2.3164062, 0.34106445, -1.3769531, -0.16137695, 2.4394531, 1.7167969, 3.5722656, -1.1474609, -0.26586914, 1.1455078, -1.2099609, 0.6435547, -0.16271973, 1.9726562, -2.8398438, -0.0027561188, 0.94970703, 0.34423828, -0.90185547, 2.3613281, -1.3476562, -0.7841797, -0.022155762, -0.15808105, 4.0976562, -1.6289062, 0.5566406, 1.0410156, 1.8271484, 1.0410156, -4.4960938, 2.0039062, 1.3652344, -2.3671875, -0.6064453, 1.0693359, 1.5332031, 2.5429688, -0.56689453, 1.7177734, 1.5087891, 2.5273438, 1.2011719, -0.091918945, 0.8911133, -0.5385742, 2.3164062, 0.89160156, -1.4833984, -1.9365234, 0.1743164, -1.8115234, -1.8330078, 0.5263672, 1.0429688, 1.5380859, 1.7548828, -4.2460938, 2.1230469, 0.24658203, 2.3027344, -0.71972656, -0.1550293, -1.4433594, -3.0429688, -0.73339844, 0.8642578, -1.1191406, 2.203125, -0.2442627, 0.4897461, 2.9101562, 2.2050781, 2.1464844, 0.8208008, 1.265625, 0.2298584, 1.4902344, 0.6230469, 1.5253906, 1.4423828, -0.69873047, 0.44506836, 1.5732422, -0.61621094, 1.5253906, 2.1621094, -1.3144531, 1.4648438, 1.6054688, -1.5205078, 1.2080078, -0.69189453, -0.5263672, -0.30273438, 1.1220703, -0.3737793, -1.2021484, 1.1572266, 1.8574219, 0.48779297, 1.8056641, 1.1328125, -0.7788086, 3.1855469, 1.2724609, -0.14477539, -0.45996094, 0.7763672, 0.99658203, -0.87939453, 0.31689453, -1.1630859, -0.10864258, 0.07055664, -0.70654297, -0.86816406, 1.6240234, -1.5634766, 0.3564453, 1.9638672, -0.8808594, -1.2382812, -0.6269531, 0.13574219, 0.21508789, 1.5068359, 1.2490234, -2.140625, -1.953125, -1.7480469, -0.24633789, -1.3662109, -3.3710938, 1.7392578, 3.9492188, 1.4306641, -1.4599609, -1.1347656, -3.5546875, -0.6738281, -0.7675781, 1.6982422, 0.39013672, -0.36035156, -0.016082764, -0.15100098, 2.6660156, 0.859375, -1.8144531, 0.2685547, -0.11401367, 2.1230469, -0.8041992, -0.2614746, -0.89160156, 0.53027344, 1.6074219, 1.640625, 3.4394531, -0.58447266, 0.9848633, 3.2695312, -0.3178711, -2.6582031, 0.65966797, 1.1132812, 1.0800781, -0.58935547, 2.3632812, 0.63378906, -1.0849609, -0.5292969, -0.5854492, -2.1289062]}, "B0195MZHBK": {"id": "B0195MZHBK", "original": "Brand: Blackstone\nName: Blackstone 1650 Tabletop Grill without Hood Propane Fuelled \u2013 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black\nDescription: \nFeatures: Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use\nEasy to store - simply store the griddle top upside down on top of the griddle body After use to save space\nNo hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors\nSpacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability\nFast and even heating - this grill has a stainless Steel \"H\" Burner that heats up fast! The \"H\" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output\n", "embedding": [-1.3652344, 1.5927734, 0.67529297, 0.2619629, 0.21289062, 0.05795288, 1.1279297, -0.7207031, -2.8828125, 1.734375, -0.14929199, -0.5830078, 0.30029297, -1.8369141, -0.7246094, 0.35864258, 0.1015625, 1.1318359, 0.5776367, 0.0982666, 2.8808594, 0.8911133, 1.3466797, -1.625, 0.8588867, -0.33642578, 2.8085938, -4.3945312, 0.43554688, -1.1601562, 1.6806641, 0.7758789, 1.0195312, 2.4179688, -3.2128906, -1.7441406, -0.69140625, 1.9511719, -2.3730469, 0.6435547, 0.083984375, 0.7402344, 3.6972656, 0.58496094, -3.0195312, 0.5629883, 0.29223633, -0.375, -1.7939453, -1.2949219, 0.6801758, 1.8681641, 0.40722656, 0.46020508, -1.6884766, 0.7890625, 0.8413086, -1.5644531, 1.5117188, -0.94628906, 2.2207031, 0.60595703, -3.1523438, 0.5800781, -1.1464844, -0.8886719, 1.4863281, 0.15625, -0.28149414, -1.2158203, 0.53564453, -0.4819336, -0.58496094, -0.26000977, -0.15527344, -2.2871094, -2.4824219, 1.625, 1.0722656, 0.43554688, -2.0078125, 2.9394531, 0.4230957, -2.9296875, 0.7763672, 0.75878906, -0.3930664, -0.7470703, 2.0410156, -0.10461426, -1.1914062, 3.1328125, -3.4667969, -2.9296875, 1.5351562, -0.98828125, 0.6791992, 1.4335938, -1.8886719, 2.4550781, -0.6689453, -1.2119141, -1.4951172, 0.9970703, -3.7167969, -1.0947266, 3.6425781, 0.84033203, -3.1777344, 0.42822266, -2.5097656, -0.4892578, 2.4667969, 0.22729492, 2.3261719, 0.7319336, 0.18334961, 1.3603516, 1.9414062, 1.2207031, 3.5859375, -0.70214844, 0.3137207, -0.8691406, -0.5058594, 0.48779297, -0.59765625, 0.95214844, 3.3710938, -1.0664062, -0.26391602, -2.2246094, 2.6054688, -1.0664062, -3.6425781, -1.1542969, 0.17468262, -1.0957031, -4.171875, 1.0166016, -2.0332031, 1.5390625, 1.7695312, -0.9008789, -4.421875, -1.2080078, -0.066101074, 1.6210938, 0.010887146, -1.1630859, -0.89990234, -1.8916016, 0.90527344, -1.6845703, 2.9902344, -2.125, -0.46728516, -0.8178711, 4.03125, -0.061706543, 1.3320312, -1.9384766, -1.8359375, 0.9169922, 3.0761719, -1.0478516, 0.11968994, 2.5273438, -0.5756836, 1.9287109, 0.02281189, -2.3945312, -0.99072266, 0.13830566, 1.5957031, -0.6357422, -1.4501953, 2.5820312, 1.1425781, -1.2568359, -0.32910156, -3.0546875, 1.4697266, -0.33911133, -0.6298828, -2.8828125, 0.6503906, 0.38232422, 0.4958496, -1.6494141, -0.4765625, -0.096191406, -0.33544922, 0.7832031, 0.42919922, -2.0332031, -0.4267578, -0.35302734, 1.2958984, 0.3623047, 0.3088379, -0.39233398, 0.24658203, 1.2119141, -2.8066406, -2.5839844, 0.66796875, -1.8574219, 1.8740234, 0.23791504, 0.1484375, -1.4277344, 0.8149414, 0.5786133, -0.17053223, -2.1699219, 1.3183594, 0.8676758, 1.5751953, 1.3798828, 1.1503906, -3.2851562, -0.46923828, 2.0996094, 0.6972656, 2.7695312, 0.82666016, -0.06439209, -2.734375, 0.15124512, 2.5136719, 1.4541016, -0.63623047, 1.3349609, -0.57128906, 4.0625, 0.6826172, -0.3413086, -0.9370117, 0.30419922, 0.29760742, -1.1464844, -0.4465332, -0.90478516, -0.93652344, 1.09375, -1.4521484, 1.3212891, 1.1865234, -0.22167969, -2.5742188, -0.022384644, 1.0820312, 1.5009766, -0.53271484, 0.42529297, -0.24572754, -0.38012695, -1.9492188, -2.6972656, 0.40454102, 2.1386719, -0.49780273, 0.81396484, 0.39233398, -1.0107422, 1.7724609, 2.1386719, -2.1289062, 0.703125, 1.8378906, 1.5771484, 2.0175781, -1.2011719, -0.28588867, 0.009857178, -1.7216797, 2.9003906, 0.40014648, 1.7792969, -0.80322266, -1.7080078, 1.6191406, -3.5390625, -0.27612305, 0.055145264, 0.72802734, 1.1630859, -0.15905762, 0.86376953, 4.4257812, -0.6113281, -2.2109375, 3.6230469, -0.68066406, 0.5625, 0.8930664, -1.9980469, 0.5498047, 1.4394531, 1.3115234, 1.2548828, 0.023834229, 1.4521484, -1.7841797, -0.6040039, -0.06048584, -3.7675781, -0.9584961, 2.5, -0.76708984, -1.0761719, 0.41308594, 1.0791016, -0.87158203, 0.70947266, -0.11834717, -2.3671875, 0.7783203, 2.4414062, 2.0859375, 1.8789062, -1.9277344, -2.7714844, -0.79589844, 0.15405273, 0.07745361, 2.3613281, 0.7548828, -1.6396484, -0.25463867, 0.78271484, -0.18078613, -1.5595703, -3.4550781, -1.7207031, -1.7451172, -2.2109375, -0.20227051, -1.6435547, -2.3378906, 1.2744141, -1.2294922, 0.87402344, -0.83447266, -2.4042969, 0.13647461, -0.22351074, -1.2685547, -1.6005859, 0.7416992, 0.16442871, -0.77197266, -2.5722656, -1.0126953, -0.22595215, 0.64697266, -1.7617188, -0.6567383, 1.0380859, -1.3125, 1.4638672, -0.78125, 1.0107422, 0.6425781, -0.6479492, 0.2602539, -2.7636719, 1.5546875, -1.8984375, -0.8544922, -1.8779297, -1.0517578, -2.1054688, -0.68896484, -0.3486328, -0.18286133, 3.4453125, -1.4931641, 1.6601562, -0.47729492, 0.48901367, 0.28930664, -0.4387207, -2.5722656, -0.3786621, 0.9848633, -2.09375, -3.7988281, -3.8085938, -0.3671875, -0.23815918, -0.16223145, -1.1308594, 1.4755859, -0.9199219, 0.7167969, -1.6025391, 0.64697266, 0.11645508, 0.26611328, 1.2480469, -3.0449219, -2.9882812, -0.25317383, -0.47094727, -2.2382812, 1.7734375, 1.0917969, -1.1455078, 0.8779297, 2.5, -1.0800781, -0.074157715, 0.22912598, -4.1835938, 2.3125, 0.16906738, -3.984375, 3.2695312, -1.2919922, -0.40698242, -1.8232422, -0.109191895, 2.8085938, 1.4521484, 0.92529297, -0.25439453, -0.99365234, 1.7275391, 0.7167969, -1.1865234, -1.0195312, 0.37841797, 2.6035156, -2.0664062, -1.3349609, 1.0869141, 2.0546875, -1.8164062, -1.5791016, 1.9003906, 1.2734375, 1.2900391, 1.8173828, 1.9941406, -0.6894531, -0.8178711, -0.38671875, 0.75097656, 0.65966797, -0.31884766, -0.06036377, 0.69628906, -1.0361328, 1.8779297, -0.6113281, 0.86865234, 1.7607422, 2.203125, 2.3632812, -2.1757812, 0.27563477, -0.32763672, 1.1757812, 2.1425781, 3.2617188, -0.63964844, -0.16760254, 0.33618164, -0.1315918, 2.9511719, -0.8388672, 0.39233398, 2.7929688, -0.94921875, 0.2265625, 0.12756348, 0.4345703, -0.38183594, -1.3925781, 0.6958008, 0.171875, -1.9521484, 1.5244141, -1.4433594, -0.8823242, -1.7587891, 1.6113281, -2.0253906, -2.1347656, 1.2539062, 2.2089844, -1.2910156, -1.3447266, -1.2128906, -1.0146484, -0.65478516, 3.0449219, -0.75, -1.9804688, 0.7548828, -1.2685547, 0.3125, 0.30371094, -0.06542969, 0.3215332, -0.5620117, -0.10241699, -1.9199219, 0.076538086, -1.0722656, -0.7080078, -1.7363281, -1.1142578, -2.40625, -2.0351562, -0.2244873, -1.5380859, -1.2011719, 1.9394531, 0.9633789, 0.15466309, -1.6132812, 2.2910156, -1.0068359, -1.2685547, 1.1982422, -4.0976562, -1.1992188, -2.4414062, -3.8613281, 0.8833008, -0.9555664, 0.3100586, 1.125, 1.0263672, 0.4169922, 1.7802734, -0.15942383, -3.8105469, 1.3896484, -0.77978516, -0.04940796, -2.2050781, -0.9711914, 0.58203125, 0.0960083, -1.1210938, -0.075927734, 0.76416016, 0.73095703, 0.9682617, 0.8676758, -2, 0.60009766, -0.8305664, -0.47680664, -1.1162109, 0.116760254, 0.35961914, -1.2558594, -0.41748047, -1.0634766, 0.7451172, -0.30078125, 0.2861328, 1.2001953, 1.0302734, -0.9345703, -1.6757812, -0.40795898, 1.1230469, 2.1640625, -0.062164307, -1.4248047, 0.12158203, 1.0068359, 1.0878906, -1.0996094, -0.58740234, 0.7597656, -2.4882812, -1.3769531, 0.96240234, 1.4189453, 2.5195312, 0.8432617, -2.3222656, 0.18139648, 0.31518555, -2.5039062, -2.7636719, 0.9897461, -0.30541992, -0.8803711, 0.051116943, -2.6445312, 1.2929688, -1.2265625, -0.5473633, -0.9638672, 4, 2.1230469, 2.8085938, 3.4570312, -0.25952148, -2.0390625, 1.796875, -0.9824219, -2.1738281, 2.4667969, 1.3388672, -0.5883789, 3.5683594, -0.22741699, -1.5429688, 0.09790039, 3.2695312, -1.5087891, -0.25097656, -0.8623047, 0.2397461, -1.9433594, 0.1538086, -0.22766113, -1.5136719, 0.8564453, -0.3894043, 0.51171875, 0.81152344, 1.2568359, -1.7373047, 0.49291992, 0.057861328, 0.29296875, 0.8769531, 0.6713867, 2.0097656, -0.8598633, 1.2236328, 0.6645508, 2.7714844, -0.76660156, 0.33764648, -0.11798096, 0.25732422, -1.3496094, -0.6791992, 1.2578125, 4.015625, 0.6977539, 2.0449219, 0.171875, -2.2753906, 2.2460938, 0.6748047, -3.0683594, -1.8544922, 1.0478516, 0.4658203, 1.2597656, -0.25097656, -3.4511719, 0.8198242, 3.21875, -2.0019531, 0.60546875, 0.19396973, -1.0742188, 0.9501953, -2.5917969, -0.72216797, -0.5917969, 0.66503906, -0.54296875, -0.58740234, 0.9584961, 0.24133301, 1.7685547, 3.5078125, -0.33325195, -0.15820312, 1.8554688, 0.27197266, 0.9580078, 0.3227539, -0.27514648, -2.7832031, 0.51660156, 1.7587891, 0.40625, 1.8554688, -0.3791504, -0.50390625, -1.3828125, -1.0673828, -1.1728516, 2.3769531, -0.6220703, -2.0273438, 0.80029297, -1.2705078, -0.7675781, -1.6972656, 0.43188477, 0.09564209, 1.4716797, 1.3242188, -0.97216797, 0.94189453, -0.13220215, -1.6542969, -4.7773438, -0.40527344, 0.12426758, -0.23986816, -0.35498047, -0.28857422, -0.06365967, -0.6904297, 1.421875, -0.2454834, -2.3007812, -0.2298584, 0.33618164, -1.2548828, -1.609375, -0.53125, -0.093444824, 1.3535156, 2.4394531, 0.005996704, 1.2890625, -2.0175781, -0.07946777, 1.1152344, -1.0253906, 0.1026001, 0.9008789, 0.29638672, -0.2680664, 2.1777344, 0.54052734, -2.1972656, 3.5058594, -3.6523438, -0.70703125, 0.27856445, -2.0273438, -1.1044922, -0.8457031, -0.953125, 1.6962891, -1.1806641, 0.34765625, 1.0234375, 0.06945801, -0.91064453, 3.0566406, -1.6337891, -0.7089844, 1.0849609, 0.6904297, 1.3320312, 1.0664062, -1.3837891, 0.24841309, -2.2910156, -1.5507812, 0.3034668, -2.5820312, 0.75, -2.4414062, 0.029693604, 2.4003906, -0.005973816, -1.1640625, 2.5625, -0.58984375, -1.4453125, 0.24694824, -1.0957031, 2.8222656, 1.0712891, -0.46435547, -1.3652344, -2.1328125, 1.1806641, -0.2434082, 0.5732422, -1.8310547, -0.42626953, -0.8823242, 1.2744141, -1.1914062, 2.5546875, 2.9375, -0.16809082, -1.6083984, 0.5385742, 1.6679688, -0.23388672, 3.1269531, 1.9599609, 1.4472656, -0.81152344, 4.2304688, 0.055603027, -3.7089844, 1.4160156, -1.6738281, 2.2949219, -0.20593262, -0.92822266, 0.13757324, -0.70166016, -0.70458984, -1.734375, -2.1621094, -2.9492188, 2.2851562, 1.0419922, -1.3066406, -0.1340332, 1.6650391, -0.033843994, 2.2011719, 1.6845703, 0.9116211, -0.73046875, 0.9482422, -1.0371094, 0.3010254, 0.3720703, -1.5898438, 1.2392578, 2.1171875, -0.74121094, -2.609375, 1.7080078, 0.8232422, 2.84375, -0.6459961, 0.5571289, 3.0058594, 1.2207031, 3.859375, -0.12475586, 0.7866211, 1.5917969, 1.3525391, -0.83154297, 2, 2.828125, -0.80029297, -1.8681641, 2.5371094, -0.4790039, -2.3398438, -1.5175781, 0.5830078, 1.9912109, -4.8164062, 3.140625, -0.6542969, 0.97265625, -1.4140625, -1.8046875, -0.7314453, -0.80029297, 1.8671875, 0.47314453, 2.4980469, -0.50341797, 1.0888672, -0.63427734, 0.64941406, 1.4101562, -3.6113281, 0.30444336, 0.040161133, -1.6152344, -0.09979248, 0.20214844, 1.4091797, 1.1298828, 0.90283203, 2.0214844, 2.75, -0.67333984, 2.3359375, 0.12915039, 0.23461914, 0.7988281, 3.1933594, 1.1972656, -0.95214844, 1.8271484, -0.041412354, -2.7109375, -2.9140625, 3.3007812, 1.7236328, 1.4716797, 0.7392578, -1.328125, 2.2382812, 1.3935547, 2.125, -2.3300781, 1.7177734, -1.2919922, -2.6132812, -2.1289062, 0.90527344, 0.47143555, 1.7265625, -0.066833496, -0.85058594, 2.5410156, 1.40625, 1.9833984, 0.4416504, -0.13049316, 0.42749023, -0.70214844, -0.064453125, 1.0917969, 0.18005371, -0.9760742, -1.0947266, 1.9492188, 2.0585938, 1.2880859, 0.4650879, -0.8652344, -0.32080078, 0.5415039, -1.0830078, 0.9838867, 0.3564453, -1.6289062, 0.7998047, 0.14953613, -0.19311523, -2.2109375, 3.0507812, 1.2294922, -1.3798828, -0.33032227, 1.8867188, 0.12976074, 1.9677734, 1.2148438, -0.18334961, 0.34692383, -0.3269043, 0.04373169, -0.21447754, -1.4101562, -0.16662598, 0.33007812, 0.09326172, -1.0273438, 0.7939453, -2.078125, 0.74853516, -0.6850586, 2.0253906, -2.3730469, -0.9663086, 0.8408203, -0.20410156, 0.79589844, 2.8515625, 0.16796875, -0.09667969, -0.9370117, -1.7402344, -0.9194336, -2.2148438, -0.96191406, 0.070373535, 4.6601562, 2.1074219, 0.74121094, -1.6337891, -2.7617188, 0.006958008, -0.028320312, 3.1015625, -0.3083496, -1.5351562, -0.00687027, 1.9941406, 2.875, -2.3671875, -0.14294434, -0.82714844, 0.05102539, 0.93847656, 0.19750977, 1.3300781, 0.30493164, -0.08166504, 0.68847656, 3.7558594, 2.5097656, -0.10913086, 2.296875, 1.3642578, -1.0537109, -2.8554688, 1.3974609, -0.8491211, 0.009147644, 0.5756836, -0.21569824, 1.2304688, 1.8818359, 0.5854492, -1.6132812, -0.79052734]}, "B001NDK8C8": {"id": "B001NDK8C8", "original": "Brand: \nName: Propane Weed Burner Torch\nDescription: Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.\nFeatures: Measures roughly 22 1/2 long\n3 nozzles are included, 1-1/8\u201d, 1-3/8\u201d and 2\u201d\nHooks up to standard size propane tank with 60\u201d long attached hose\nBurns to 3000\u00b0F\nFlow control valve\n", "embedding": [-0.36108398, 2.4179688, 1.2636719, 0.25024414, -1.9755859, 1.390625, 2.2089844, 0.09838867, -0.31835938, 1.3916016, -1.4882812, -0.7661133, 0.79052734, -4.5039062, 0.83154297, -0.1743164, -0.066589355, -0.02494812, 2.2539062, 2.1601562, 1.3193359, 0.12524414, 1.8613281, -1.7763672, 1.6259766, -1.4404297, 3.0097656, -2.6660156, -0.07220459, -0.47192383, 1.1660156, -0.93115234, 0.07293701, 0.20202637, -3.5683594, 0.1394043, -1.6669922, 0.8486328, -3.3515625, -0.98095703, -1.6992188, 0.3930664, 1.4257812, 0.036590576, -0.6411133, 1.7177734, -0.50683594, 1.2822266, -0.42041016, -0.38110352, 1.8681641, -0.09326172, 1.4628906, 0.35253906, -0.2166748, -0.1496582, -1.4873047, -3.3339844, 1.1699219, 1.4716797, 2.5175781, 0.55615234, -1.9912109, 1.0751953, 0.76708984, 1.640625, 0.4609375, -0.78222656, 0.17211914, 1.0478516, 2.9296875, 1.2626953, -0.066223145, -0.7294922, -0.32958984, -0.030838013, -3.7695312, 2.578125, 2.0136719, 0.56347656, 0.17456055, 3.3730469, 0.14807129, 0.5097656, 0.2939453, -1.5957031, -2.3261719, -1.4716797, 1.4345703, 0.7714844, -1.6748047, 2.4355469, -2.7539062, -3.8261719, 2.8730469, 0.08831787, 0.23242188, -1.3037109, 0.98291016, 0.47583008, 1.1845703, -0.5209961, -1.3017578, 1.8994141, -2.7226562, 1.5810547, 0.48046875, -0.5024414, -1.2470703, 0.101257324, -1.3886719, -1.0195312, 1.8095703, 1.3720703, -2.7207031, -1.4482422, -0.11260986, 0.17663574, 4.046875, 0.63623047, 3.0898438, 0.101501465, 0.8461914, -0.25390625, 1.3955078, -0.31103516, -0.3552246, 0.6098633, 2.2480469, -2.0175781, 0.48168945, 0.8666992, 1.1005859, -0.6347656, -2.1640625, -1.1552734, -0.5175781, -0.7314453, -2.8964844, -2.296875, -2.6132812, 0.2319336, 2.4746094, -1.5214844, -3.0136719, -0.019332886, -1.2626953, 0.8984375, -0.65527344, -0.6098633, 0.13989258, -1.1318359, -2.4238281, -1.0458984, 1.4033203, 2.4863281, 0.30932617, -1.0673828, 4, 0.43139648, 1.9208984, -2.1464844, -0.8041992, 1.8251953, -0.82714844, -2.8359375, 1.7851562, 1.3056641, -0.3857422, 2.5625, 1.3339844, -1.1601562, -0.65966797, -1.1865234, 0.33129883, -2.4960938, 0.8256836, 1.8056641, -1.7138672, -1.1699219, -2.4765625, -0.75634766, 0.32885742, -0.6640625, 0.48510742, -1.9492188, -3.9023438, -0.9350586, 1.1376953, -1.6044922, -0.091918945, 0.13769531, -1.3808594, -1.2587891, 0.33032227, -1.4257812, -2.78125, -1.7011719, 2.7558594, -0.23291016, -2.953125, -1.7695312, 0.7705078, -0.49047852, -2.7675781, -0.04800415, -0.49389648, 0.7163086, 0.4267578, 2.234375, -0.87939453, -2.0585938, 2.1601562, 0.8676758, -1.3798828, -1.7675781, 2.3515625, 0.4165039, 1.5224609, 1.7490234, -0.41674805, -0.44189453, 0.55810547, 1.9091797, -1.1318359, 0.92871094, -0.9824219, -1.6230469, -1.0195312, -0.67285156, 1.1367188, -0.19311523, 1.5048828, -0.047729492, -0.43676758, 1.7138672, -1.2109375, -0.52197266, 0.4453125, 2.0585938, 1.5273438, -1.8583984, -1.0986328, -0.0025901794, -0.062805176, -0.6621094, 0.06695557, 2.6054688, -0.16467285, 0.30688477, 2.4746094, -1.9570312, 0.95703125, 1.0644531, -0.44433594, -0.14929199, 0.18188477, 1.1689453, 0.4296875, -1.7304688, 2.3789062, 1.8740234, -0.7290039, -0.5722656, 2.3847656, -2.0234375, 1.6494141, 0.98876953, -1.4472656, 0.37182617, -0.33789062, 1.6015625, -1.1328125, 2.8378906, 2.8203125, 0.3701172, -2, 1.8408203, 0.41235352, 1.4755859, 0.8354492, -0.2602539, 1.2373047, -2.8183594, 0.09698486, 0.76416016, 2.4765625, -1.5664062, -2.0195312, 0.86279297, 5.046875, 0.05630493, -2.6816406, 1.6533203, -2.0917969, 2.3925781, -0.5991211, 1.5673828, 0.5991211, 0.25048828, 1.8632812, -0.2355957, -1.7714844, 1.6474609, 0.4873047, 0.58203125, 1.3740234, -1.9736328, 2.3613281, 0.62402344, 0.5317383, 0.9370117, -1.2734375, 1.46875, -1.8085938, 0.34423828, 0.6479492, -4.3789062, 0.8808594, 0.36450195, 0.9550781, 1.8984375, 1.8984375, -2.0273438, -1.1318359, 0.11193848, -1.3144531, 0.87890625, 0.40942383, -0.953125, 0.40844727, -2.6972656, 0.29345703, -1.7626953, -1.625, -0.062194824, 0.8198242, -2.6640625, 2.5429688, -2.84375, -1.15625, 1.3085938, -0.12121582, 2.3984375, -0.65966797, -0.9746094, 0.39233398, 1.2207031, -3.1796875, -0.6118164, 0.42041016, 2.4902344, 0.48120117, -2.6523438, 0.50683594, -0.46948242, 0.18737793, 0.18286133, -2.4609375, 1.2626953, 1.1318359, -0.3310547, 1.484375, -0.5986328, 0.7895508, -2.7597656, 2.6933594, -3.0410156, -0.57128906, 0.24487305, 3.7382812, 0.2626953, 0.30859375, -0.84228516, -0.58691406, 0.21252441, 0.26538086, 2.4433594, 0.7763672, 2.7382812, -0.3100586, -2, 1.5097656, -1.6669922, -3.3945312, -0.0027008057, -1.421875, -1.9023438, -2.5195312, -2.8671875, -0.5859375, -1.3369141, -0.7602539, -1.015625, -0.75, -0.45458984, 0.9785156, -2.8808594, -1.7070312, 0.5341797, -1.8740234, 0.7832031, -1.9482422, -0.08947754, -0.46069336, -2.5898438, -0.8383789, -1.1933594, 1.328125, -0.94384766, -0.37158203, 1.5097656, 0.26904297, 1.1972656, 1.7333984, -2.4238281, 1.8964844, 0.8173828, 0.89208984, 0.9609375, -2.3652344, -1.8242188, -2.5175781, -0.3359375, 4.4296875, 0.05908203, -0.4489746, 0.021255493, 1.8300781, 1.5673828, 0.1998291, -3.2675781, -1.7080078, -1.578125, 3.6113281, -3.4003906, -0.8149414, 1.0429688, 3.3320312, -2.7792969, 0.47729492, 1.6367188, -0.50439453, 0.87597656, 3.1875, -0.1459961, -0.78271484, -0.61865234, -2.546875, 2.5351562, 0.24694824, 0.61279297, -1.4941406, -2.6816406, 2.1621094, 0.62939453, -0.3359375, 1.0488281, 1.9257812, 5.2929688, 0.30078125, -0.95166016, -0.0960083, -0.9423828, 0.2783203, 1.0126953, 0.8388672, -1.4775391, -2.0703125, 0.4868164, -0.9458008, 1.8691406, -1.140625, -1.0419922, 2.2226562, 1.7207031, -1.0751953, -0.2626953, 1.0625, -0.77246094, -0.4338379, 1.8193359, 0.56933594, -0.80908203, -1.0820312, -0.6328125, 1.7861328, -2.2402344, 2.0429688, -0.48095703, -3.5136719, -0.3215332, 0.16088867, -1.1455078, -2.6386719, -1.2871094, -0.27172852, -1.4921875, 5.3515625, 0.4675293, -1.0214844, -1.5791016, -0.65478516, -0.022949219, 0.49560547, -1.1660156, -2.0429688, 0.11029053, -0.6665039, -0.6660156, 1.8232422, 0.62060547, -0.25683594, -0.103759766, 1.1679688, -1.7050781, 0.9848633, 1.8193359, -1.7216797, -1.3847656, 2.0488281, -0.055114746, -0.38427734, 0.78466797, 3.8613281, -1.3505859, -0.8461914, 0.68652344, -0.13293457, -1.4257812, -2.7929688, -3.1191406, 1.7451172, -2.4316406, 1.96875, 2.96875, -0.48217773, 0.09197998, 0.6542969, 1.7011719, -0.027420044, -2.0839844, 0.7685547, 2.1269531, -2.7949219, -0.8051758, 2.21875, 0.021896362, -2.5195312, -0.26513672, -0.11669922, 1.3652344, 0.37646484, 0.5942383, -1.0693359, -0.5522461, 0.5175781, 0.74316406, 0.18847656, -0.45239258, 2, -0.40795898, 0.06097412, -3.0253906, 0.070739746, 1.7734375, -0.4411621, 2.5, 4.84375, 2.4296875, -1.0478516, 1.7763672, -0.047546387, 3.1445312, -0.9716797, -1.8085938, 1.1865234, 0.4897461, -1.1308594, -0.61865234, -0.21582031, -2.0625, -0.79003906, 1.6181641, -0.9926758, 1.1210938, 0.075805664, 0.13513184, -0.32763672, 0.30395508, -0.19470215, -1.9736328, -0.25634766, 1.1162109, -1.1044922, -3, 1.4492188, -2.1425781, -1.0058594, 0.8564453, 0.06677246, 0.05545044, 0.05178833, 2.3808594, -0.019332886, 2.1621094, 0.20007324, -1.5439453, -1.1259766, 0.4091797, -0.47021484, 0.3798828, -1.1054688, 0.07269287, 1.9013672, 1.5742188, 0.36987305, -0.64746094, 1.1376953, -2.9882812, -0.5786133, -0.5371094, 1.5488281, 0.47192383, 0.61035156, 0.9692383, -0.96777344, 3.4882812, -1.2109375, 0.1583252, 0.55859375, 0.056610107, -2.3554688, -0.17443848, 0.68652344, 0.94140625, 1.0791016, 0.0067100525, 3.0859375, 1.2080078, 2.9375, 2.0761719, 0.60595703, -1.6132812, -0.8823242, -0.3095703, -0.0129470825, -1.7451172, 0.0036239624, -0.0357666, -0.13708496, 0.7685547, 3.7597656, 2.0507812, -3.84375, -0.32958984, 3.2148438, -2.4257812, -0.41845703, -1.0439453, -1.1806641, 2.1132812, 0.4638672, -1.7626953, 0.37060547, 2.8046875, 0.37719727, 2.5019531, -1.5507812, -0.08795166, -1.2734375, -1.4208984, -1.2880859, -2.1640625, -1.25, 1.5566406, 0.31591797, -0.7993164, -0.4284668, 2.0664062, 0.13220215, -0.55908203, -0.17211914, 0.029403687, -3.4472656, -0.7338867, 0.2775879, -1.7529297, -2.9082031, 2.0976562, 0.7104492, 0.6533203, 1.1894531, 1.7226562, 1.3916016, -1.8994141, -1.0458984, 0.0793457, 1.1621094, -1.0185547, 0.8901367, 1.9365234, 0.36767578, 0.21704102, -1.953125, -2.7558594, -2.2539062, 0.7036133, 1.5761719, -0.023773193, -3.1621094, -0.50439453, -3.2519531, -3.6875, -1.234375, 0.3466797, -0.21228027, 2.4160156, -1.6445312, -0.97314453, -0.25878906, -1.421875, -1.0283203, -0.46264648, -0.04663086, -1.1445312, 1.1123047, -1.015625, 1.0537109, 0.49047852, 1.0751953, 0.80566406, 1.5605469, 0.24890137, -0.43139648, -2.8867188, 0.5957031, -0.77197266, 1.5888672, 1.4804688, -1.3847656, 0.24829102, 4.0664062, -1.3994141, -0.8417969, 0.41235352, -2.703125, -0.7729492, -0.78466797, -2.8847656, 0.5517578, -0.23449707, 0.28515625, 0.6479492, 1.9306641, 1.1923828, 0.58740234, 0.014625549, 0.017120361, -0.2529297, 0.4819336, -0.18493652, 1.2998047, -0.40649414, 2.5058594, 1.8974609, 0.40307617, -0.42333984, -1.2089844, -1.1386719, 1.96875, -1.09375, 0.9375, -0.1965332, 0.5854492, 0.6870117, 0.7915039, 1.8457031, -0.7470703, 0.7211914, -1.6367188, 0.31591797, -0.88964844, 4.2460938, 0.4345703, -2.765625, -2.0976562, -1.0654297, 1.9882812, 3.7597656, -1.7578125, -0.9902344, 0.2722168, -2.5195312, -1.5273438, 0.2475586, 0.8588867, 1.6035156, 1.9365234, -2.9296875, -1.5380859, 1.4824219, -1.2998047, -1.0224609, 0.47265625, -1.0878906, 0.08880615, 0.19616699, 1.7207031, -2.3945312, -0.8647461, -1.1660156, 1.1113281, 0.8808594, -1.1923828, -0.7963867, -1.1113281, 0.06933594, 0.076660156, -1.9902344, -2.6308594, 1.0263672, 2.9023438, -0.122802734, 1.3769531, 3.0996094, -1.7265625, 1.3671875, 2.6875, 1.9658203, 0.578125, -0.35302734, -1.8652344, 0.9707031, 2.2890625, -3.2402344, 1.9951172, 1.1542969, -0.60009766, -1.1328125, 1.2226562, 1.2568359, 0.86816406, 0.6484375, 2.6152344, 1.4785156, 0.45263672, 4.15625, 1.1337891, 1.4335938, 1.4101562, -0.2553711, 2.3964844, 1.9443359, 0.43969727, -2.0410156, 0.25170898, -0.3696289, -0.8544922, 0.4633789, -0.9628906, 0.32421875, 2.7304688, -2.5703125, -0.030792236, -1.078125, 0.42138672, -2.0820312, 1.6806641, -1.1230469, -0.43408203, 1.0859375, 0.2277832, -0.64941406, 1.96875, -1.0048828, -0.38110352, -0.8833008, 1.4326172, -3.0625, 0.62841797, -1.3144531, -1.1640625, 0.017669678, 2.4414062, 0.38623047, 1.9267578, -0.23791504, 0.03881836, -1.21875, 1.3173828, 0.7651367, 0.15454102, -0.2211914, 1.3466797, 0.0345459, 0.081726074, -0.45361328, 0.08355713, 0.18164062, -3.0117188, -4.0195312, 2.5195312, -0.62597656, -0.3466797, 0.40063477, -1.1181641, 1.9648438, -2.0488281, 0.8095703, -1.9423828, 0.04800415, -0.57714844, -1.3769531, -0.000105559826, 0.6850586, 1.2197266, 4.3046875, -0.7836914, -1.1191406, 0.30322266, 1.5488281, 0.3803711, -1.0419922, -0.24780273, 0.23779297, 0.75341797, -2.9257812, 3.3515625, 1.0488281, -2.5234375, 0.6738281, 4.5117188, 0.0011262894, -0.38842773, 0.30859375, -1.234375, 0.82958984, -1.5009766, -0.8979492, 1.8535156, -0.99365234, -2.1699219, 0.019439697, 0.48291016, -0.72802734, 0.35131836, 0.0703125, 3.8261719, -2.6445312, 1.4199219, 2.25, -0.8823242, -0.40942383, 1.3027344, -1.3447266, -1.8691406, -0.1262207, 1.4726562, -2.1328125, -0.8491211, 1.8867188, 1.7724609, -1.0576172, 0.75341797, -0.8339844, -2.1328125, -0.24853516, 0.67626953, 1.5175781, -0.26635742, 0.6225586, 0.86035156, 1.2089844, -1.6660156, 1.1679688, 0.43774414, -0.33618164, 1.2822266, -3.953125, -0.17797852, -1.0439453, -2.2460938, 2.7988281, 4.0664062, -1.0371094, 0.47485352, -2.5332031, -2.5410156, -0.21240234, 0.030517578, -0.54003906, 0.34423828, -0.12194824, 0.9345703, 0.6899414, 1.5380859, 0.22265625, 0.07342529, 0.49682617, -0.044067383, 2.0820312, 0.2553711, 1.1816406, 1.5839844, 1.4941406, -0.050933838, 2.2441406, 1.8007812, 0.9995117, 0.7836914, 0.28051758, 0.17822266, -2.6464844, -0.00035619736, -0.85009766, 0.86865234, -1.0126953, 1.4648438, 1.4648438, 1.4160156, -1.7275391, -2.1484375, -1.9492188]}, "B004FPZACE": {"id": "B004FPZACE", "original": "Brand: Bernzomatic\nName: BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch\nDescription: \nFeatures: Trigger-start ignition easily ignites the flame\nVersatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nAngled stainless steel burn tube\nFlame control valve easily sizes flame and extinguishes when finished\n", "embedding": [0.31982422, 2.7988281, 0.88183594, -1.4863281, 0.60498047, -1.2275391, 1.4140625, 0.11987305, -0.12805176, -1.1142578, 0.8466797, -1.2207031, 0.17272949, -2.1132812, -2.1152344, 0.8125, -2.3964844, -0.1237793, 0.78564453, 2.8164062, 0.6738281, 0.80078125, 2.3398438, -2.6914062, 0.60253906, -0.005344391, 3.9863281, -3.0625, -0.8300781, -1.6777344, 1.2578125, 0.041625977, 0.8095703, 0.9609375, -2.1132812, 1.2578125, -0.30371094, 0.042297363, -2.2148438, -2.3359375, -1.8759766, 1.5566406, 2.234375, 0.98535156, -1.9316406, 1.9199219, -2.0898438, 0.6010742, -0.1348877, 1.046875, 0.66015625, 0.6821289, -0.3251953, -0.18969727, 0.9868164, 0.27490234, -1.1572266, -2.3027344, 0.9321289, 1.3505859, 1.6523438, 0.77490234, -1.9804688, 1.1074219, 0.5136719, 2.4824219, -1.9775391, 0.6513672, 1.6865234, 0.48999023, 1.6142578, 2.3925781, 2.0859375, 0.3527832, 0.18444824, 0.92626953, -2.3535156, 1.2851562, 0.72314453, -0.21704102, 2.3125, 1.1162109, 0.6533203, -0.6899414, -0.1295166, -1.7783203, -0.7163086, 1.1064453, 1.1914062, 1.4960938, -0.52783203, 0.36376953, -1.4482422, -2.8925781, 2.3789062, 0.6713867, -0.3671875, 1.2783203, 0.69677734, 0.6459961, 1.4248047, -0.16259766, -0.2927246, 0.57958984, -2.4570312, 1.6103516, -0.8833008, 0.5390625, -0.27783203, -0.41210938, -1.9199219, 0.050109863, 1.8935547, 1.5332031, -1.8691406, -0.3737793, -1.0751953, -1.5009766, 3.6425781, 0.6582031, 2.5078125, -0.3322754, 0.11260986, -0.4111328, 0.7529297, -0.7495117, -0.46728516, -0.8901367, 1.4882812, 0.1842041, -0.16174316, -1.9296875, 3.2695312, 1.0380859, -0.17944336, -1.6162109, -0.46777344, -0.35595703, -2.2949219, -1.34375, -2.9667969, 2.2089844, -0.3161621, -1.5419922, -4.4648438, -1.1796875, 0.56689453, 0.8354492, 0.87939453, -1.1738281, 0.18725586, -2.4433594, -2.4335938, -1.2617188, 1.4140625, 2.0039062, -2.1484375, 0.1295166, 3.3125, 1.4951172, 1.5097656, 0.9116211, -0.39233398, 1.2880859, -2.0957031, -2.3125, 1.1933594, 1.4892578, -0.12036133, 2.4316406, 1.703125, -1.8740234, -0.11968994, -0.9404297, -0.6567383, -1.4169922, 0.060913086, 2.6640625, 0.8276367, -0.7192383, -1.4462891, -1.390625, 0.066101074, -2.1972656, 0.4086914, -1.3154297, -1.5927734, -0.27734375, 1.0986328, -1.2568359, 0.5864258, 2.0878906, 0.57128906, -0.77197266, 0.8725586, -3.6542969, -1.1660156, -2.6445312, 1.8544922, 1.0859375, -1.9560547, -2.2265625, 1.5283203, 1.3867188, -1.7460938, -0.2824707, 0.54785156, 0.4729004, 0.5541992, 1.2939453, 0.25708008, -1.3574219, 2, -1.296875, 1.1835938, -2.9140625, 1.5595703, 1.0283203, 1.4794922, -0.14208984, 0.88671875, -2.0332031, 0.41308594, 1.6669922, 1.7714844, 1.640625, -1.6425781, -1.7890625, -1.515625, -0.5361328, -0.53808594, 0.7553711, -0.3544922, -0.18017578, -0.8574219, 1.921875, 0.23083496, 0.14453125, 2.2011719, 0.6430664, -0.97802734, -0.2454834, 0.97753906, -1.1259766, 0.70751953, 0.5463867, -1.5546875, -0.32299805, 1.5166016, 0.84765625, 2.296875, 0.1274414, 2.2773438, 0.29589844, -3.0820312, -2.2558594, 0.47143555, -0.3059082, 1.0029297, -3.6640625, 2.7167969, 1.2636719, 0.27148438, -0.4638672, 2.0878906, -2.21875, 0.43579102, 0.65478516, -0.48242188, 0.62646484, 1.0966797, 1.4794922, 0.34716797, 0.4794922, 2.5234375, 2.9824219, -2.3125, 2.0195312, -0.46289062, 0.47631836, 0.73046875, -0.3552246, 1.4111328, -2.7792969, 0.45117188, 0.9453125, 2.0644531, -0.93066406, -2.2773438, 1.2490234, 5.375, -1.1230469, -2.671875, 2.0019531, -0.21850586, 3.8183594, 0.3959961, 0.27539062, 0.15246582, -2.1914062, 2.65625, 1.8037109, -0.15319824, 0.8774414, -0.3720703, -0.07897949, 1.234375, -2.5019531, 1.3212891, -0.21582031, 0.9145508, 0.5678711, -1.2353516, 1.671875, -3.3710938, -1.6337891, -0.21679688, -3.9648438, 1.2734375, -1.1484375, 0.9379883, 3.6015625, 1.6523438, -0.671875, 1.2958984, -0.94628906, -1.0390625, 1.9658203, 1.6542969, -0.3466797, -1.4003906, -2.0175781, 1.3486328, -2.7070312, -0.45654297, 1.5498047, -1.6552734, -5.1757812, 1.2021484, -1.4560547, -1.1894531, 4.1875, -1.8095703, 1.5742188, 0.58984375, -2.0253906, -0.3894043, 1.2158203, -1.5576172, -1.9990234, -0.41992188, 3.1445312, -1.2226562, -3.2167969, -0.72314453, 0.2368164, 0.41333008, 2.296875, -1.5742188, 1.515625, -0.33544922, -0.515625, -0.83447266, 0.9770508, 1.5390625, -4.1015625, 4.1835938, -2.7617188, 1.0498047, -1.2275391, 2.5351562, -0.7011719, 1.4589844, -1.3496094, 1.2392578, 0.5053711, -0.53515625, 2.5019531, 0.115356445, 1.5537109, 0.2376709, -2.4082031, 0.34350586, -2.1660156, -3.5097656, 2.2675781, -0.09399414, -0.4284668, 0.12524414, -2.6523438, -0.44628906, -0.84472656, -0.08117676, -0.2783203, -1.0419922, -0.8334961, 0.010391235, -1.4423828, 0.30859375, 0.64746094, -1.6640625, -0.8120117, -3.1523438, -2.5449219, -0.020858765, -0.87158203, -0.35791016, -1.71875, 0.31079102, 0.8149414, -0.14953613, 0.15759277, 0.36938477, -0.32006836, 1.7578125, -3.5761719, 0.61572266, 1.9433594, -0.5444336, 1.1630859, -0.20922852, 0.5288086, -1.8388672, 0.19104004, 2.734375, 0.42456055, 1.1630859, -0.26123047, 0.66503906, 0.6933594, 3, -1.0195312, -2.9785156, -1.0966797, -1.0722656, -2.6171875, -0.5996094, 1.0439453, 0.7631836, -2.6210938, -0.5527344, 2.0976562, -0.84521484, 1.0400391, 3.0527344, -2.4375, 1.7724609, -0.75683594, 0.13635254, 1.5449219, -2.5410156, 2.21875, 1.2841797, -0.053100586, 1.515625, 0.89404297, -1.3183594, -0.3239746, 1.4267578, 2.1464844, 1.5957031, -1.4453125, 0.2746582, -0.6855469, 2.53125, 2.078125, 1.8417969, 0.6430664, -0.42382812, 1.4335938, 1.3144531, 1.8505859, -2.0625, -1.3388672, -0.49194336, -0.20751953, -1.7890625, 0.7578125, 0.8339844, -0.65478516, -1.5742188, 0.6328125, 0.29882812, -0.48095703, -0.03552246, -0.3942871, 2.1113281, -3.3925781, -0.9199219, -1.7597656, -1.4189453, -0.49658203, -0.5371094, -0.94433594, -1.1914062, -2.234375, -0.051452637, -1.1337891, 4.8828125, 1.0244141, -0.7192383, -1.1513672, 0.22521973, -0.41430664, 0.39624023, -2.9785156, -0.87597656, -1.3759766, 0.38061523, 0.6621094, 0.70166016, -1.0507812, -1.3720703, -1.6054688, 2.8457031, -1.7421875, 1.8417969, -0.23291016, -2.640625, 0.7573242, 2.3046875, -1.7597656, -0.8989258, 1.3837891, 2.1152344, -1.4482422, -1.5019531, 1.3857422, -0.7089844, -2.3066406, -4.1171875, -2.8730469, 0.66845703, -0.052490234, 2.0664062, 1.9863281, 0.49804688, 0.88623047, -0.044281006, 2.1855469, -0.7026367, -1.59375, 0.09564209, 2.5019531, -0.50097656, -1.8701172, 1.9355469, -0.7504883, -2.0605469, 0.21313477, -0.6928711, 0.953125, 0.4724121, 1.6220703, -0.08880615, 0.11883545, 0.5761719, -0.6777344, -0.13220215, -0.28271484, 0.4013672, 0.032562256, -0.2220459, -2.2871094, 1.1992188, -0.026443481, 1.2666016, -0.012687683, 1.7929688, 3.1542969, -0.021270752, -0.19262695, 0.5498047, 4.3554688, 0.38623047, -2.3339844, 0.21289062, -2.4335938, 0.4477539, -1.34375, 1.7832031, -1.0009766, -1.8447266, 0.53271484, 0.52246094, -0.64160156, 0.9536133, -0.36328125, -2.390625, 0.36083984, 0.12310791, -2.4882812, -1.1425781, 0.98535156, 0.76123047, -0.64501953, 0.9501953, -0.99609375, 0.52734375, -0.6308594, -0.62841797, -1.1660156, 0.06750488, 3.5507812, 0.8173828, 1.4941406, -0.52685547, -1.5585938, -3.0878906, 1.5556641, -0.034088135, -0.46533203, 0.55371094, 0.94189453, 1.5253906, 1.4511719, 0.734375, -0.9345703, 1.484375, -1.4492188, -1.0117188, -0.14416504, 0.52685547, -1.8779297, 0.37402344, 1.3222656, -1.1757812, 0.9628906, -0.9243164, -0.07647705, 0.7182617, 0.8364258, -1.0195312, -0.021102905, 0.6796875, -0.15478516, 1.2216797, 1.3837891, 3.2675781, -0.67041016, -0.07098389, 2.578125, -0.2692871, -0.71435547, 2.2695312, -0.007858276, 0.23120117, -0.6791992, -1.5117188, 0.7104492, -0.5463867, 0.48046875, 2.9785156, -0.46948242, -0.89746094, -1.515625, 2.1054688, -1.7216797, -0.03677368, -1.6689453, -1.7011719, 2.5410156, 0.5048828, -0.5185547, 0.58984375, 1.7314453, -0.8881836, 1.9326172, -1.1152344, 1.4150391, 0.35668945, -2.4628906, -3.0957031, -0.7055664, 2.8203125, 1.8085938, -1.0585938, 0.61816406, 0.9453125, 2.296875, 0.91552734, 0.123535156, -0.6904297, 1.2666016, 0.3251953, -0.8857422, 0.47998047, -1.9804688, -0.19677734, 1.8271484, -0.53271484, 2.5703125, 1.1269531, 2.5898438, 0.59472656, -1.6728516, -1.4423828, -1.0361328, 0.7788086, -1.7314453, 0.8574219, 2.0800781, 0.98876953, 0.8183594, -0.79248047, -1.9140625, -2.7226562, 1.3251953, 0.1161499, -0.9941406, -1.7314453, -1.3164062, -2.9179688, -2.8300781, -0.4333496, 0.15185547, 0.09893799, 2.3339844, 0.24816895, -2.1132812, 0.20605469, -0.78759766, -0.9975586, -1.3027344, 1.0019531, -1.4707031, 0.29663086, 0.119628906, -0.6557617, 0.12536621, -1.3466797, -1.4130859, -0.5258789, 2.9238281, -1.7470703, -4.1875, 3.296875, -0.9033203, 0.7441406, 0.10241699, -0.08129883, 0.5830078, 3.140625, 0.38061523, -0.44555664, 0.88671875, -1.28125, -0.5493164, 0.33789062, -2.1953125, -1.2636719, 1.4101562, 0.3955078, -1.0439453, 2.3671875, 0.8256836, -1.1113281, -0.45043945, 0.20910645, -2.3203125, -0.46044922, -1.0830078, 1.0947266, 0.11993408, 2.5390625, 1.5673828, -0.77783203, -0.9790039, -0.9970703, 1.1015625, 0.32128906, -1.6826172, 2.8066406, 0.0027637482, 0.99121094, 0.42358398, 0.9873047, 1.1904297, -0.58496094, -0.859375, -0.8178711, 1.0566406, -0.6308594, 3.4980469, -2.9335938, -2.6660156, -1.0302734, -0.32055664, 3.4433594, 1.9365234, -0.20043945, -0.36621094, 1.1494141, -1.6503906, -0.87109375, 0.76660156, 0.5732422, 0.1116333, -0.42382812, -1.5390625, -1.9003906, -0.39013672, -1.7431641, -2.1542969, 1.8867188, -1.5097656, -0.36767578, 0.65185547, -0.7636719, -1.9082031, -0.76220703, -2.140625, -0.2697754, 0.62646484, -0.2076416, -0.7133789, -1.6669922, -0.1784668, 1.5439453, -0.37841797, -2.828125, 1.015625, 2.3847656, 1.1835938, 0.6694336, 2.2929688, -1.4365234, 0.87158203, 1.6474609, 0.4597168, -2.1152344, -1.4677734, 0.6044922, 1.5273438, 2.0722656, -1.8134766, 2.2382812, 1.6542969, 1.3447266, -0.7348633, 0.25732422, -0.97558594, 0.6748047, 1.2578125, 2.2617188, 0.3305664, 1.5400391, 1.3037109, -0.53808594, -0.3876953, 1.8105469, 1.5732422, 2.3886719, 1.0048828, 0.24023438, 0.041992188, -0.9345703, -0.3178711, -0.84814453, -0.80029297, -1.7783203, -0.06323242, -0.51416016, -2.9394531, -0.44311523, -0.7944336, 1.0527344, -0.85009766, 1.5117188, -1.1181641, -0.21325684, 0.7294922, 1.8193359, 2.4472656, 0.8261719, -1.4619141, -0.4501953, -0.045196533, 0.4506836, -4.3984375, -0.36743164, -1.2021484, -1.4482422, 0.2927246, 2.1933594, 0.41503906, 0.64160156, -0.19128418, 0.98291016, 0.33789062, -1.1386719, 1.0556641, -1.5488281, -0.60546875, 1.3203125, 1.7529297, -0.1583252, 0.91552734, -0.32958984, 1.25, -2.1679688, -2.4980469, 2.890625, 0.21850586, 0.29882812, 1.2460938, -0.4248047, 1.5566406, -2.0292969, 0.24377441, -0.77978516, 0.9296875, 1.0888672, -1.7861328, 0.2668457, 1.3994141, 0.52246094, 2.4902344, -1.9589844, -0.89990234, -0.9477539, -0.4892578, 1.4179688, -1.5517578, -0.033935547, -0.7080078, -0.9951172, -3.3535156, 2.9179688, 0.2541504, -3.4785156, -0.89208984, 3.9414062, -0.25976562, 1.7646484, 0.84277344, -2.1523438, 0.7602539, -3.203125, 0.060424805, 2.7128906, 0.31713867, -3.2285156, 0.8989258, 0.03768921, -0.16760254, -0.70751953, -0.21850586, 2.1582031, -2.2695312, 0.48632812, 1.9892578, -1.0703125, -0.07788086, 2.7910156, -0.83154297, -1.5136719, 1.9726562, 2.140625, -1.6816406, -1.3212891, 1.5361328, 3.2851562, -0.016571045, -0.35375977, 0.27172852, -1.4345703, -1.0400391, 1.5849609, 0.5546875, -0.6201172, -0.9628906, 1.2597656, -0.60253906, -1.3007812, 1.4394531, -0.7841797, 1.1796875, 0.64941406, -4.6992188, -1.3574219, -0.73095703, -1.0439453, 3.0410156, 2.0722656, -2.5214844, 1.2617188, -0.3095703, -2.6816406, 0.054260254, -2.0664062, -0.0047340393, 1.5595703, -1.8955078, 1.9541016, 0.8227539, 4.2226562, -3.5703125, -0.14660645, 1.1796875, -1.3808594, 2.5839844, -0.50146484, 3.6074219, -0.6113281, 0.17443848, -0.67578125, 3.2792969, -0.35009766, -0.21569824, -1.1884766, 1.5029297, 1.1982422, -1.5234375, -1.4072266, -3.2910156, 0.3581543, 0.024795532, 0.48486328, 0.92285156, 0.08477783, -0.8964844, -2.8105469, -1.9638672]}, "B00XOBY97C": {"id": "B00XOBY97C", "original": "Brand: Coleman\nName: Coleman Roadtrip X-Cursion Propane Grill\nDescription: \nFeatures: Made of the highest quality materials\nCamping cooking grills\nAnother quality Coleman Signature product\n", "embedding": [0.28466797, -0.56347656, -0.32617188, -0.31835938, -0.6455078, -0.08270264, 1.3017578, -1.7861328, -0.8779297, 0.83691406, -0.2208252, -1.2578125, 0.7993164, -4.03125, -0.14038086, 0.15722656, 0.7998047, 2.5566406, -0.63378906, -2.3066406, 2.1445312, -0.18566895, 1.3691406, -0.20251465, 0.48095703, 0.9448242, 3.9042969, -4.5390625, 0.27563477, 0.70410156, 0.6616211, 0.00048828125, -0.63623047, 3.3359375, -1.4257812, -1.3564453, -3.265625, 2.1269531, -1.7607422, -1.1835938, -1.6591797, -0.78271484, 1.1728516, -0.27294922, -1.2578125, -0.8413086, 1.9375, 1.0947266, -2.5976562, -1.8320312, 1.3183594, 1.171875, 0.4284668, 0.84472656, -1.3710938, 0.93066406, -0.77734375, 0.33642578, 1.5195312, -0.53759766, 0.4375, -0.6274414, -2.4003906, 0.27954102, -2.4199219, 0.98535156, 0.87060547, -0.20605469, 0.13256836, -0.8520508, 3.1347656, 0.10882568, -3.9257812, -1.4482422, 0.95166016, -1.9316406, -2.8398438, 0.9008789, -0.9194336, -0.6972656, -0.26513672, 1.9609375, 0.058502197, -1.5537109, 0.73046875, 0.79248047, -2.1875, -0.64453125, 1.9882812, 0.9477539, -1.1923828, 0.52734375, -1.0419922, -3.7949219, 0.33007812, -0.93896484, -0.55908203, 0.0059394836, 0.4284668, -0.8564453, -1.6445312, 1.2851562, -1.2324219, 0.07208252, -3.5175781, -0.3840332, 2.0253906, -0.8852539, -2.2753906, 2.1425781, -1.7050781, -2.9667969, 2.2226562, 1.5419922, 0.5756836, 0.72753906, -1.2587891, 1.1464844, 3.3984375, 0.0096588135, 4.5195312, -0.6899414, 1.3525391, -0.95410156, -0.53808594, 1.6269531, 0.8041992, 0.4794922, 2.6445312, -0.43701172, 1.9404297, 0.44189453, 3.9960938, 0.45263672, -4.4296875, -2.5703125, -1.2705078, -0.88183594, -1.6503906, -0.57714844, -0.5180664, -0.30664062, 3.6015625, 0.5883789, -5.2929688, -0.3864746, -0.06323242, 3.375, -0.6381836, -1.1669922, -2.4257812, -1.8388672, -0.19104004, 0.7758789, 2.1933594, -0.08972168, -2.2324219, -2.640625, 3.3339844, 1.7832031, -0.18383789, 0.13146973, 0.25268555, 0.63134766, 1.3867188, -0.8881836, -0.8334961, -0.60546875, -0.3178711, 2.140625, -0.90722656, -2.3457031, 1.6503906, 1.3955078, 1.7470703, 0.10455322, 0.9135742, 2.0449219, 0.859375, 0.47436523, -1.6728516, -1.6269531, 0.81103516, 0.6088867, 0.26757812, -2.515625, 1.1386719, -0.9472656, -0.67089844, -1.4765625, 1.6738281, -0.14355469, -0.51416016, 0.93066406, -2.0898438, -0.62353516, 0.30737305, -0.9711914, 1.7636719, -0.009780884, -1.2978516, -0.97021484, -0.7441406, 1.1416016, -1.6445312, -2.3554688, -0.66503906, -2.6523438, 1.5136719, 0.8208008, 2.1699219, -0.41479492, 0.87597656, -0.29003906, -1.8359375, -2.5800781, 0.19042969, 0.20483398, 2.9082031, 1.2851562, 0.875, 0.41333008, -1.3935547, -1.0693359, -1.1953125, 2.1855469, -0.01763916, -0.22094727, -0.14147949, -2.1054688, 1.1699219, 3.3417969, -3.5957031, -0.1303711, 0.53125, 2.9765625, 0.9145508, -1.5078125, -0.24853516, -0.48657227, -1.3789062, 0.72265625, -0.5595703, -0.42700195, 0.63964844, 0.5253906, -0.4296875, 0.69384766, 3.4609375, 0.37768555, 1.0097656, 0.6640625, -1.4072266, 2.2636719, 0.50683594, 2.7617188, -0.18017578, 0.74316406, -0.58251953, -1.7890625, 0.31201172, 1.9355469, -0.98535156, -1.2519531, 0.8227539, 1.0410156, 1.5546875, 1.0332031, -3.0957031, -0.8378906, 2.1015625, 1.5283203, 0.024093628, 1.8515625, 2.6152344, 0.48583984, -0.42529297, 2.0664062, 0.26831055, 2.2851562, 0.35253906, 1.5957031, 1.2773438, -2.3144531, -1.1181641, 0.47314453, -0.9926758, -0.55566406, -2.2324219, 2.5449219, 4.15625, 0.036468506, -1.4042969, 4.1601562, -2.3964844, 2.109375, 1.5566406, -0.4580078, -2.3457031, 0.46875, 2.4882812, 0.4453125, -0.7265625, 2.515625, -3.6777344, 0.73046875, -0.10986328, -2.9804688, 0.97753906, 0.20483398, -0.8408203, -1.8466797, -1.4453125, -0.87060547, -1.9208984, -0.37353516, 2.2597656, -3.5664062, 1.6386719, 3.4160156, -0.21838379, 1.1699219, 1.6074219, -1.8544922, 0.92578125, 1.2607422, -2.1777344, 1.5917969, 1.9794922, 0.21154785, 0.67041016, -0.17407227, 0.5209961, -0.22753906, -1.2207031, -1.0185547, 1.2148438, -2.7285156, 2.8144531, 0.36669922, -1.3476562, 0.021118164, -0.69433594, 1.3857422, -2.9589844, -2.7695312, 0.39990234, 0.6044922, -0.20983887, -0.043701172, -1.6591797, 1.0791016, 1.3583984, -4.5585938, -0.65722656, 0.008804321, -0.94873047, -1.2373047, 0.0033016205, -0.02809143, 1.6728516, -0.36376953, -0.8461914, 0.1817627, -1.2871094, -1.53125, -0.39404297, -2.5839844, 2.046875, -3.1347656, 0.765625, 0.5810547, 0.9790039, -3.296875, -2.7832031, 3.5957031, 0.37060547, 5.3554688, 0.18383789, 0.6196289, 0.51953125, -2.2246094, 0.4416504, -2.1152344, -3.1640625, -0.4255371, 1.0234375, 0.057373047, -1.7080078, -3.3222656, 0.28515625, -2.4042969, 0.4934082, -0.03390503, -0.6196289, -2.0097656, 2.7207031, -2.078125, -0.012519836, -0.4404297, -0.06286621, -0.2565918, 0.43603516, -0.39990234, 0.8564453, -1.4111328, -1.0888672, -1.5400391, 1.1923828, -0.62939453, -1.9716797, 1.4570312, -0.5493164, 1.5859375, -0.54589844, -4.7695312, 2.5976562, 0.7470703, -0.40185547, 3.0839844, -1.0595703, -1.0800781, -3.9140625, -0.4560547, 1.5283203, 3.2773438, 1.0478516, 0.26782227, 0.9633789, 0.7241211, 1.3847656, -0.6142578, 0.68359375, -0.19140625, 2.8730469, -1.0205078, -3.4140625, 0.062561035, 1.4091797, -3.375, -1.7724609, 1.2109375, -0.7011719, -0.19494629, 4.1171875, -0.6279297, 1.3105469, 0.19787598, 1.5791016, 1.7333984, -0.42773438, -0.88183594, 0.54785156, -2.3066406, 2.7460938, 0.91064453, 0.07116699, 1.7392578, 0.53564453, -0.21057129, 1.8603516, 0.4658203, 1.2675781, 1.1328125, 0.86621094, 1.1533203, 1.9208984, -2.6328125, -0.09552002, 0.44384766, -0.17199707, 1.7832031, 0.11730957, 0.012466431, 1.2714844, -1.0654297, -0.52246094, -0.16149902, -0.5908203, 0.9194336, -0.5336914, 1.4208984, -2.5625, -1.2294922, 0.57910156, -1.7900391, -3.9824219, -1.5537109, 4.15625, -1.1542969, -2.4726562, 0.6220703, 3.4824219, 1.1445312, -2.3203125, -3.5898438, 1.7587891, -0.83496094, 2.1289062, 1.7070312, -0.80810547, 1.296875, 0.47460938, 2.4179688, 2.2988281, -1.5820312, -0.9350586, -2.9667969, -1.3447266, 1.6816406, 0.65478516, 0.18408203, 1.2910156, -1.7871094, 1.9199219, -2.0410156, 0.6098633, 1.6396484, -3.7402344, 1.0458984, 3.3242188, -0.0309906, 0.66015625, -0.6166992, 3.9667969, -1.3417969, -0.22546387, 0.93359375, -0.9970703, -1.015625, -0.70458984, -1.6425781, 2.21875, -1.2792969, -0.72314453, 2.015625, -1.0986328, -0.87353516, 1.6162109, 0.62597656, 0.22583008, -2.2226562, -2.1484375, 0.09942627, -1.9453125, -0.31274414, -0.09588623, -1.4267578, -2.6113281, -1.9521484, -2.2148438, 0.089660645, 1.4794922, 2.078125, -0.84375, -0.10546875, -3.109375, 2.3574219, -0.3239746, 0.3112793, 0.27319336, 1.2460938, -0.1739502, -3.2382812, -0.049438477, 1.4130859, 1.1464844, 2.5566406, 1.75, 0.0027198792, -0.4765625, 2.1914062, 0.42382812, -0.37451172, 1.1445312, -1.7451172, 0.08782959, -2.7226562, -1.8779297, -0.921875, 0.31054688, 0.5385742, -1.2167969, 0.55322266, 0.36791992, 2.2910156, 2.2402344, 0.3425293, -0.47460938, 0.76660156, 0.7290039, -2.0234375, -1.8330078, -2.15625, -0.03555298, -1.9091797, -0.4128418, -0.20739746, -1.3007812, 0.6201172, -0.5493164, -0.7314453, -0.21069336, 2.015625, 1.4042969, 0.87597656, -0.70751953, -0.19470215, 1.359375, -1.7333984, 0.29541016, -0.26757812, -1.5507812, 0.20129395, -0.22973633, 0.9873047, -0.96484375, -1.4951172, -0.71777344, -2.4101562, -1.6669922, -2.3144531, 0.7783203, -0.94189453, -0.11755371, -1.6787109, -1.6396484, 1.2724609, -1.0175781, -0.48510742, 1.4179688, 2.0175781, -0.19592285, -0.9584961, -0.39648438, 0.7216797, 2.2714844, -1.0859375, -0.22692871, -1.8808594, 0.97558594, 1.1855469, 1.9257812, -0.484375, -0.5258789, 0.8666992, -0.31152344, -1.3056641, 0.62402344, 0.65234375, 1.7099609, 2.078125, 2.3398438, 1.2050781, -1.0839844, 1.1044922, 0.5439453, -0.41748047, 0.10772705, -0.6303711, -0.8520508, 0.71972656, -3.0957031, -4.1679688, -0.039642334, 0.99853516, -0.2163086, 2.546875, -0.70703125, 0.55078125, -1.8613281, -3.3984375, -0.51171875, -0.38500977, -1.40625, 1.5458984, -1.7587891, -0.28833008, -1.2070312, 2.9394531, 2.7578125, -0.24609375, -1.6357422, 0.31298828, -2.2246094, 0.7998047, -1.7353516, -1.65625, -2.9550781, -2.3847656, 1.5048828, 0.6147461, -0.7524414, 1.1582031, 1.25, -0.92089844, 0.1977539, -3.7207031, 1.6015625, -2.2910156, 0.086242676, 0.7910156, -1.3623047, -1.421875, -1.96875, 0.22790527, 0.2166748, 2.3359375, 1.1181641, -0.5810547, 0.64453125, 1.0830078, -2.6523438, -4.4453125, -1.2021484, -1.0576172, 0.69091797, -1.0761719, 2.65625, -0.8510742, 0.30639648, -0.24291992, -1.4794922, -0.36523438, 0.58984375, 0.47924805, 0.37817383, 0.058135986, 1.0585938, -0.22509766, -0.27197266, 0.33520508, 3.2148438, -1.0039062, -2.5214844, -2.4570312, 1.1542969, -1.3994141, 1.6796875, 1.7919922, -0.56640625, -0.12408447, -0.36621094, 1.4667969, 0.6245117, 2.8535156, 1.3457031, -0.19311523, 1.2167969, -0.7871094, 0.17382812, 1.2431641, -0.53466797, 0.89501953, 0.25756836, 1.4072266, -0.018341064, 0.19213867, 1.0869141, 1.0595703, 0.9472656, -0.5390625, 1.7978516, -0.5180664, 1.65625, 0.6166992, 0.94189453, -0.6274414, -1.4140625, -4.0507812, 0.91308594, -1.234375, -1.5703125, -2.0917969, 3.140625, 1.6582031, 3.5292969, 0.9194336, 1.3203125, 3.0664062, -0.54052734, 0.4104004, -0.99316406, 2.7695312, 3.0039062, -0.8720703, -2.4746094, -1.0292969, 0.20727539, 1.4111328, 1.2763672, -0.9633789, 0.4091797, -2.4199219, -0.4230957, 0.10864258, 2.3417969, 0.5996094, 2.1132812, -0.34521484, 2.6640625, 3.2890625, -1.2324219, 0.26391602, -0.41186523, 2.1738281, -2.0585938, 2.0839844, -0.8256836, -0.7426758, 1.7763672, -1.4804688, 0.84765625, 0.27856445, -0.41992188, 0.016098022, -0.68847656, 0.35888672, -1.6386719, -0.15112305, -3.1425781, 2.6601562, -0.07208252, -1.4375, 1.5957031, 0.32714844, -1.8525391, 1.4990234, 2.7851562, 1.6308594, -0.68115234, 0.9086914, -0.8691406, -0.29638672, 0.22595215, -2.3085938, 5.375, -1.390625, -0.36450195, 1.7753906, 2.8671875, 0.7451172, 2.8398438, 3.7402344, 2.15625, 2.5625, 1.3359375, 2.078125, 1.3115234, 1.1933594, 0.4724121, -2.6015625, -0.4675293, 2.8867188, 1.8173828, 1.5175781, -1.1455078, 0.84277344, 0.40039062, 0.6376953, -0.32421875, 0.3461914, -0.30615234, -2.484375, 2.1308594, 2.6738281, 2.2597656, -1.2324219, 1.1884766, -0.040496826, -0.5415039, -0.3996582, -1.3769531, 0.9404297, -0.37890625, 2.7949219, -0.70751953, 0.91308594, 1.2773438, -2.0371094, -2.5175781, -0.05404663, -1.8701172, -1.0546875, -0.60839844, 1.5263672, 0.2565918, 0.8461914, -0.34204102, 1.8603516, 0.37451172, -1.1191406, -0.6645508, 0.04925537, 1.21875, 2.8984375, -1.2451172, -2.9257812, 0.84521484, 0.25561523, -1.5449219, -3.6660156, 0.57958984, -0.32885742, 0.91015625, 2.1464844, -2.5390625, 2.0253906, 0.2442627, 2.5605469, -0.9248047, 1.8232422, -0.8618164, -2.859375, -2.140625, -1.6679688, 2.9941406, 3.3398438, 1.7841797, -0.68896484, 1.7138672, -0.11431885, 1.8671875, -1.5830078, 1.1767578, 0.030975342, 1.9863281, -2.1582031, 1.9013672, 0.16503906, 2.0078125, 0.7783203, 1.7558594, 2.1992188, 0.85058594, -1.3134766, -1.2607422, 1.7333984, -0.78564453, -0.4880371, -0.6743164, 0.23852539, -2.3847656, 1.9013672, 0.78515625, -0.54785156, 0.640625, 0.56933594, 2.0917969, -0.8935547, 1.7783203, 1.7421875, 0.33398438, 1.1015625, -2.421875, -1.7861328, -2.1601562, 0.6118164, 0.33642578, -0.703125, -0.76171875, 1.8925781, 1.2421875, -1.3076172, -1.0957031, 0.13476562, 0.3227539, 0.25073242, -1.0439453, 0.5185547, -0.75, -0.43969727, -0.2866211, 0.9946289, 1.0068359, 2.0019531, -0.43408203, -0.29125977, 0.16662598, -2.6953125, -2.1289062, -2.4589844, -0.13562012, 0.7167969, 3.1914062, 0.5366211, 1.2138672, -2.796875, -1.6708984, -2.9882812, -1.2089844, 3.4472656, 2.5722656, -2.2949219, 0.90185547, 0.44726562, 1.8574219, -1.1005859, -1.0351562, -0.20739746, 0.31298828, -0.07684326, 0.27563477, 0.66796875, 1.1347656, -2.6367188, -0.4284668, 2.9023438, 0.76660156, 2.046875, 1.65625, -1.4160156, -0.57910156, -1.4921875, 0.006980896, 0.3125, -1.7470703, -2.3183594, 0.19824219, 2.0878906, 1.7109375, -0.7783203, -3.9023438, -0.9711914]}, "B07CQ5ND65": {"id": "B07CQ5ND65", "original": "Brand: Blaze\nName: Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas\nDescription: The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that's normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that's perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)\nFeatures: Freestanding propane gas grill\n304 stainless steel grill body construction\n(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU\nflame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface\nOverall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU\n", "embedding": [-0.85498047, 1.8359375, 2.2402344, -0.7392578, 0.06878662, -2.0234375, 0.92871094, -0.97558594, -0.7651367, 2.4375, 0.23327637, -1.1914062, 1.1982422, -3.9394531, -1.3056641, -1.1113281, 1.8984375, 1.0332031, 2.1660156, 0.9794922, 0.6118164, -0.035491943, 0.5839844, -0.44433594, 0.09552002, -0.4975586, 3.7265625, -3.3476562, 0.3178711, -2.4570312, 0.24182129, -0.18652344, -1.1181641, 1.0585938, -3.4628906, -1.7900391, -0.92285156, 0.30908203, -1.40625, -1.7207031, -0.9819336, 0.061279297, 3.6875, 1.3007812, -2.7480469, -0.4477539, 0.17712402, 0.8413086, -0.60253906, -0.89160156, 1.3261719, 1.1884766, 1.5302734, 0.04324341, -1.2871094, 0.5917969, 0.61035156, -1.7724609, 1.3710938, -0.8671875, 2.4003906, -0.95654297, -1.9658203, -0.7114258, -2.8320312, -1.5908203, 2.5253906, -0.15222168, 0.06317139, -0.01020813, 1.7021484, 0.59472656, -0.5966797, 0.65771484, -0.113586426, -0.66064453, -3.5039062, 2.2597656, 1.0019531, -0.4111328, -0.8388672, 3.8691406, 1.3320312, -2.1738281, 0.2668457, 1.6152344, -0.18493652, 0.5800781, 1.1816406, 1.3945312, -0.6123047, 2.1367188, -0.04034424, -2.7753906, 1.9648438, -0.60498047, 2.0507812, 0.12426758, 0.4650879, 1.1162109, -1.1425781, 1.3017578, -2.0664062, -1.5136719, 0.044555664, -0.47558594, 2.7675781, 2.0078125, -1.4941406, -0.1295166, -2.4042969, 0.065979004, 1.2685547, 1.1884766, 0.61328125, 0.044158936, 1.9619141, 2.1777344, 0.86328125, 2.5507812, 0.9355469, -1.4121094, -0.91552734, 0.3486328, 0.85839844, -0.007980347, 0.17883301, 2.6015625, 2.9296875, -0.8378906, -1.5625, -0.58496094, 2.953125, -1.3574219, -0.24255371, -2.7988281, -0.8222656, -2.2890625, -3.3417969, -0.69091797, -1.1523438, 2.2363281, 0.9140625, -0.73828125, -4.3046875, -0.1307373, -0.057495117, 1.4375, -0.9941406, -2.1699219, 1.1230469, -1.2314453, -0.53271484, -2.8945312, 1.4570312, -1.2675781, -0.83935547, -2.0742188, 3.8164062, 0.32739258, 0.96972656, -0.8071289, -1.6005859, 2.4511719, 0.017959595, -1.3476562, 0.89990234, 0.53759766, -0.27075195, -0.49536133, -0.0435791, -2.9179688, 2.2675781, 0.83740234, 0.54003906, -2.2011719, -1.4921875, 0.86572266, -0.76416016, -0.09411621, -0.89208984, -1.3505859, 1.2519531, -1.0214844, -0.6220703, -0.41723633, -0.012535095, 0.5288086, -0.09442139, -2.7148438, -0.09643555, 1.6123047, -0.39526367, 0.93652344, 1.0751953, 0.018478394, -2.7480469, 0.24682617, -0.14648438, 0.27807617, 0.5625, -1.0019531, 0.5566406, 1.1425781, -1.4648438, -3.2285156, -1.4335938, -1.5839844, 0.07348633, 1.1787109, 1.2802734, -1.3701172, 3.3125, -1.7832031, 1.109375, -1.6777344, 1.1914062, 1.4970703, 3.2011719, 2.28125, -0.19262695, -2.2597656, -0.15844727, 3.3066406, -0.09185791, 0.484375, 1.8642578, -0.07775879, -2.6503906, -2.59375, 0.91552734, 0.099243164, 0.61376953, -0.79052734, 0.1538086, 3.1191406, 1.640625, 1.0390625, -1.3505859, 1.5419922, 2.3105469, 0.8930664, -2.21875, -1.7890625, -1.9052734, -2.4746094, -2.4628906, 1.625, 0.7861328, 0.37060547, -0.58203125, 0.31713867, 1.5908203, 2.9140625, -0.07965088, -0.2536621, 0.2097168, 1.7265625, -1.8330078, -2.9785156, 2.5292969, 1.4013672, -2.0058594, 0.23498535, -0.24926758, -0.3791504, 2.7890625, 1.390625, -1.890625, -0.080566406, 1.0234375, -0.015052795, 1.9501953, 1.2617188, 0.41455078, 0.98779297, -1.4160156, 2.3691406, 1.0566406, 2.25, 1.4746094, -0.3942871, 3.8066406, -2.65625, -0.5942383, 0.56152344, 1.0449219, -0.3774414, -2.5644531, 0.14050293, 4.5976562, 0.66552734, -3.6875, 4.6132812, -0.59472656, 0.04083252, 1.5, -0.32177734, -0.6958008, -0.36035156, 3.4179688, 1.6914062, -0.49194336, 1.5488281, -0.7817383, -0.63671875, 1.7373047, -1.2509766, -0.6074219, 2.3671875, -0.56396484, 0.3935547, -2.6367188, 0.74121094, -1.5, -1.1289062, 2.65625, -1.8847656, 2.2226562, 1.7578125, 1.2167969, 2.2207031, -0.9375, -0.57177734, -1.0234375, 0.2175293, -0.20202637, 0.82666016, -1.375, -2.2050781, -2.0410156, -0.6147461, 0.20117188, -0.9038086, -0.85839844, -1.3984375, -1.1367188, -3.4453125, 0.62158203, -2.2832031, -1.3066406, 0.6699219, -2.7226562, 1.1738281, -1.09375, -4.0429688, -0.8613281, -1.0410156, 0.8964844, 0.6274414, -0.2368164, 0.4284668, 0.65966797, -2.4179688, -0.36035156, 0.4074707, -0.17016602, 0.83447266, -0.9428711, 0.2692871, 0.20617676, 0.48535156, -1.0263672, 1.6230469, 1.2626953, -0.5361328, -0.9638672, -3.3144531, 0.5292969, -3.2011719, 0.50341797, -1.1523438, 0.5488281, -1.4091797, -1.9082031, -1.2363281, -1.1230469, 1.9882812, -1.3105469, 1.1757812, -0.051483154, -0.65771484, 0.1895752, 0.13708496, -1.3857422, -0.6308594, -0.23657227, -0.6772461, -3.1269531, -2.8671875, -0.35327148, 0.63427734, 0.44140625, -1.0166016, 1.7714844, -2.1289062, 2.1933594, -1.5732422, -0.5283203, 1.3466797, -0.25585938, -0.2775879, -0.016616821, -2.8945312, -0.67529297, -1.7900391, -1.6386719, 0.55566406, 1.9853516, 0.19592285, 0.8745117, 2.2011719, -0.16271973, -0.94921875, -0.26635742, -4.34375, 0.5048828, 0.37329102, -4.4570312, 0.7661133, 0.5107422, -1.4746094, -2.7910156, -1.8222656, 3.1542969, 0.5473633, 0.99609375, -1.3232422, -2.7578125, 3.1972656, 0.43017578, 0.21081543, 0.34594727, -1.3173828, 3.453125, -3.8339844, -2.3203125, -0.8232422, 2.2675781, -1.7998047, -2.890625, 3.0195312, -0.11254883, 2.171875, 2.6855469, 4.2148438, 0.19970703, 0.24694824, 2.1621094, 0.18347168, 0.18310547, 0.76708984, -1.0839844, -0.8027344, -0.67529297, 0.7006836, 1.0400391, 0.74853516, 2.6699219, 2.1230469, 1.7207031, -0.953125, 0.30273438, -0.7446289, 1.7890625, -0.045043945, 3.1894531, -0.34960938, 0.34985352, -2.2910156, -0.0002553463, 0.42822266, 0.66503906, -0.7260742, 1.5917969, 2.078125, 0.45922852, 0.45532227, 1.2177734, -0.3720703, -0.36132812, 1.6152344, -1.1728516, -0.15441895, 0.2163086, 0.09448242, -1.3837891, -3.9667969, 0.96484375, -1.2519531, -2.2070312, 0.14477539, 1.2978516, -0.62939453, -1.4814453, 1.6738281, 1.5585938, -0.14025879, 1.9404297, 0.6147461, -0.029129028, 1.7871094, -1.2558594, 0.44995117, -0.68847656, -1.6787109, 1.6162109, -1.3886719, 2.6523438, -0.390625, 1.8427734, 2.4492188, -0.7480469, -1.1425781, 1.203125, -2.1269531, -0.18823242, -1.3681641, -2.8457031, -2.7050781, 2.0371094, 1.1650391, 1.1679688, -0.76220703, 2.5957031, -0.98779297, -2.5214844, 2.0722656, -3.953125, -1.4902344, -1.6826172, -4.8984375, 1.3535156, -2.8261719, -1.5058594, 1.8925781, -0.0513916, 0.013938904, 0.044708252, 0.25439453, -2.953125, -0.75390625, 0.70410156, -1.1914062, 0.55908203, 0.2668457, 1.9570312, -0.23339844, -1.9414062, -2.4023438, 0.12121582, -0.59277344, 1.3974609, 2.6816406, -2.1796875, 1.2861328, -0.61865234, -0.9946289, 0.46679688, -0.81591797, 2.5253906, -2.5722656, -1.4882812, -4.109375, 0.10571289, 1.6259766, 1.2470703, 1.8359375, -0.55615234, 1.4433594, -0.8461914, -0.6044922, 2.6914062, 2.6308594, 0.57958984, -2.7011719, -1.6542969, 0.49731445, -0.5546875, -0.12768555, -0.042388916, 0.70654297, -2.4960938, 2.9296875, 0.19714355, -0.088256836, 1.8115234, -0.6743164, -4.1484375, -1.6142578, 0.5004883, -3.3632812, -1.5810547, 1.40625, 0.5180664, -0.68896484, 0.70947266, -1.0146484, 0.25268555, -3.4667969, -0.5361328, -3.4042969, 2.4746094, 1.3427734, 1.6513672, 2.0742188, -0.31567383, -1.7412109, 0.75878906, 0.08581543, -2.1367188, 1.8574219, -1.8330078, -0.2277832, 2.2539062, 1.1376953, -0.80029297, -0.6123047, 1.4863281, -2.2441406, 0.8125, -2.1445312, -1.6318359, -2.6347656, 0.4387207, 1.3525391, 0.3293457, 1.4150391, -2.7402344, -1.2158203, 0.32861328, 1.6748047, -0.9404297, -0.13110352, -0.55078125, 1.0634766, 1.1435547, 3.0644531, 1.4453125, 0.47460938, -0.6298828, -0.21728516, 1.7646484, -0.36645508, 0.56396484, -1.109375, -0.27075195, 0.64160156, -0.9838867, 0.9951172, 2.4140625, 1.9257812, -0.37036133, 0.14135742, -2.6914062, 0.78125, -0.81103516, -4.5625, -0.53466797, 1.3720703, -1.3222656, 0.7548828, -0.0904541, -2.8535156, -1.1894531, 3.2011719, -0.9873047, 0.42016602, 1.1191406, -1.9521484, 0.6743164, -0.53466797, -1.8085938, -0.3630371, -2.15625, -0.4428711, -0.50390625, -0.26416016, -1.4160156, 0.39160156, 2.1972656, -0.7470703, -1.6396484, 1.046875, 0.20373535, 0.4560547, -0.15881348, -0.35498047, -2.2089844, -0.65185547, 1.8857422, 1.5976562, 2.9160156, 1.2353516, 0.65185547, -2.5390625, 0.20410156, -2.2890625, 2.1445312, -3.8125, -0.5488281, 1.5009766, 0.49243164, -1.4453125, -1.5771484, 0.41796875, -0.37475586, 1.8144531, 1.4404297, -0.11279297, 0.020446777, -0.20861816, -1.6787109, -5.5976562, -1.7939453, 0.28930664, -0.85302734, -0.6435547, 0.37768555, -0.99121094, 1.1601562, 1.5078125, -0.8100586, -0.0836792, -0.78271484, -0.5605469, -1.03125, -0.76904297, 0.7885742, -0.4946289, -0.33984375, 1.5166016, 0.22595215, 1.4160156, -3.3203125, -0.6152344, 1.9970703, -1.4169922, 0.08294678, 2.1835938, 0.24291992, 0.03793335, 1.2910156, 0.7348633, -2.21875, 1.4833984, -1.9521484, 1.3837891, 1.1318359, -1.0214844, -1.6015625, -1.8710938, -0.6191406, 0.2368164, -1.9404297, -0.13647461, 0.14587402, 0.3881836, -0.8300781, 0.80078125, -0.51171875, -1.7382812, 0.92626953, 0.093322754, 0.9404297, 0.47460938, -1.8916016, -1.6582031, -1.7714844, -2.4101562, 1.1191406, -2.3066406, 0.90966797, -0.6142578, 0.99658203, 0.036956787, 1.2138672, 0.031951904, 1.0957031, -0.52246094, -0.80810547, 0.85009766, 0.36791992, 2.4101562, 1.7802734, -2.4003906, -1.9228516, -1.9570312, 1.5361328, 0.26586914, -0.16064453, 0.99853516, -1.6201172, -1.1787109, 0.43286133, 0.034942627, 2.6914062, 1.9267578, -0.92089844, -1.5556641, 0.46606445, 1.3701172, 0.5722656, 1.5898438, 1.0478516, 1.1572266, 0.17956543, 3.4570312, -1.0097656, -2.1230469, 1.5039062, -1.9589844, 1.7480469, 0.68847656, -2.6601562, -0.3227539, -2.2929688, -1.6025391, -0.6040039, -1.9814453, -2.8808594, 3.4550781, 1.2773438, -0.92871094, -0.27807617, 2.5253906, -0.87060547, 3.3847656, 0.8388672, -0.0927124, 1.8808594, 0.4411621, 0.1105957, -0.65478516, 1.5458984, -3.0625, 1.1689453, 0.3774414, -0.2783203, -0.23071289, 2.34375, 3.5292969, 2.515625, -1.7089844, 0.9057617, 3.7285156, 1.15625, 2.0058594, -0.19055176, 0.10882568, 1.3164062, -0.6220703, 2.3613281, 3.1035156, 2.3691406, 0.29736328, -1.3720703, 1.8261719, -0.77978516, -0.7241211, 0.12261963, 0.671875, 1.7441406, -2.5703125, 0.7607422, 0.2536621, 0.08911133, -2.1445312, -0.94091797, -2.3828125, -0.828125, 1.1875, 1.9052734, 3.2949219, -0.40014648, 0.95410156, -1.7060547, -0.27124023, 1.4511719, -2.2011719, 0.03756714, 0.15270996, -1.1074219, -0.1895752, 0.765625, 1.5722656, 1.1201172, 1.0517578, 1.1357422, 3.2714844, 1.2841797, 1.5810547, -1.7939453, 0.9897461, -1.1933594, 3.2226562, -0.68847656, -1.5136719, 0.6040039, -0.45336914, -3.9511719, -2.9921875, 2.7460938, 0.81640625, 0.60546875, 0.93408203, -0.7060547, 2.4199219, -0.23828125, 2.2890625, -1.6787109, 2.6582031, -1.2070312, -0.5991211, 0.42993164, 0.4255371, 0.6035156, 0.99121094, 1.1513672, -1.5654297, 2.1035156, -0.5205078, 3.5429688, 0.0104904175, 0.49291992, 2.0585938, 0.25219727, -1.2138672, 1.4013672, 1.1464844, -0.06311035, -0.3022461, 2.9179688, 1.2607422, -0.46069336, 1.2666016, 0.59228516, 2.0878906, -1.4335938, 0.22546387, -0.2915039, -1.7626953, -0.095458984, -1.140625, 0.6220703, -0.5107422, -0.8964844, 0.22888184, 1.5029297, -1.0419922, -0.10223389, 2.2675781, -0.6323242, 3.1953125, 2.0253906, 0.36791992, 0.00020194054, -0.0418396, 1.4541016, 0.17578125, -0.7290039, 0.8564453, 0.5175781, 1.0888672, -2.1894531, 0.50927734, -1.0859375, -0.41723633, -1.0546875, 0.6347656, -1.2548828, 1.5947266, 1.84375, 0.079711914, -0.5317383, 2.0898438, -0.08703613, 1.6679688, -1.7441406, 0.11602783, 0.2878418, 1.3642578, -1.6894531, 2.75, 3.0410156, 2.0859375, 0.1439209, -3.4042969, -1.5761719, 0.0859375, 0.44604492, 1.8359375, -1.1269531, -1.3876953, -1.2490234, -1.8505859, 2.0097656, 0.3010254, 1.1835938, 0.6635742, -0.6269531, 0.035705566, 2.6210938, 2.3066406, -0.22167969, -0.41845703, -0.56640625, 1.7597656, 1.2285156, 0.54589844, 0.39868164, 1.8779297, 0.11730957, -3.3261719, 1.6640625, -1.8369141, 2.8554688, 0.78466797, 0.8232422, 0.94628906, 1.7558594, -0.072265625, -0.9428711, -1.8046875]}, "B004BHEK5O": {"id": "B004BHEK5O", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill\nDescription: \nFeatures: 4 Stainless steel burners\n48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n4 Stainless steel burners\n", "embedding": [-2.046875, 1.1435547, 2.6972656, -0.7441406, -1.9199219, 0.2746582, -0.14880371, -1.6953125, 0.58154297, 2.1738281, 3.2304688, -0.32104492, -0.6166992, -3.1992188, 0.21801758, -0.0769043, 3.2460938, 0.022521973, 0.5722656, 0.9277344, 0.13769531, 0.60058594, 2.6992188, -2.4960938, 1.5800781, 0.8017578, 4.1679688, -5.265625, -1.7265625, -0.86572266, 0.8823242, 1.2441406, 1.8300781, 1.6552734, -3.2929688, -1.4462891, -3.0625, -0.24707031, -2.8496094, 0.9550781, 0.18041992, -2.6699219, 1.1015625, -0.7451172, -2.3164062, 0.21765137, 1.3339844, -0.9746094, -1.9980469, -0.67285156, 3.1074219, 0.8857422, -0.7084961, 2.5507812, -0.23461914, 2.4589844, 0.49853516, -1.8964844, 1.0087891, 0.25878906, 2.7304688, -0.34960938, -2.3828125, -1.4287109, -1.3789062, -0.26171875, -1.3583984, -0.22241211, 1.9892578, 1.2304688, 3.0605469, -3.4492188, -1.7939453, 0.4675293, 1.6835938, -1.5859375, -2.328125, 2.1777344, 0.24853516, -1.0957031, -2.1875, 2.1582031, 0.7866211, -1.7587891, -1.0029297, 0.70458984, 0.078186035, -3.3574219, 1.4052734, 0.9580078, -0.9272461, 1.7783203, -1.9794922, -3.7734375, 2.0878906, -1.0253906, 1.96875, 1.1181641, -0.3815918, -0.15625, -1.4130859, 2.421875, -0.40844727, -1.1992188, -2.6699219, -1.9033203, 1.6552734, -0.63964844, -3.6132812, -1.6904297, -1.6904297, 1.0566406, 0.44921875, 1.5410156, 1.1191406, 0.95996094, 0.13647461, 2.7519531, 1.1904297, 1.0351562, 2.3066406, -1.5761719, 0.5341797, -1.5732422, -1.3867188, 1.1132812, -1.4208984, 2.4394531, 3.6035156, -1.3837891, -0.70947266, -0.40356445, 4.7578125, 0.9301758, 0.87841797, -0.5366211, -2.9433594, -0.6015625, -2.5898438, -0.765625, -1.6904297, 1.8115234, 0.72558594, -0.89941406, -3.75, -0.6308594, 0.89208984, -0.6503906, -0.3527832, -1.6835938, -0.9375, -1.7695312, -0.48535156, -1.5898438, 1.1191406, -0.15637207, -0.6147461, 1.1513672, 3.6425781, 2.8320312, 1.7919922, -0.47387695, -1.6015625, -0.23168945, 1.4443359, -0.83935547, 1.1972656, 1.0322266, 0.4987793, 1.5898438, -0.2043457, -0.19189453, -0.15527344, 0.84228516, 1.3564453, -0.9370117, 0.09100342, 2.9921875, -0.31640625, 0.082092285, 0.49243164, -3.1972656, 0.30078125, -0.070617676, -0.0473938, -0.98291016, 1.8134766, -0.5239258, 2.4023438, -0.97265625, 0.36987305, -0.40893555, 1.390625, -0.9248047, 1.1230469, -0.27026367, -2.0996094, -2.5332031, 1.0693359, -0.5444336, 0.18225098, -0.7602539, 0.7944336, -0.70996094, -0.061553955, -2.640625, -0.9326172, -1.6650391, 0.47851562, 1.8398438, 1.484375, -1.6044922, 0.64941406, -1.9912109, -0.36743164, -1.4453125, 1.8486328, 0.8330078, 0.80566406, 2.4335938, -1.5869141, -0.3466797, 1.0957031, 0.9951172, 0.4423828, 0.32470703, 0.48217773, 0.859375, -2.5136719, -0.8022461, 4.203125, -0.09503174, 0.25756836, 0.64941406, 0.14990234, 2.046875, 1.5058594, -0.5644531, 0.32763672, -0.09088135, 0.8828125, 0.7841797, -1.7763672, -1.6542969, -0.14660645, -1.7617188, -1.6035156, 0.85253906, 1.6484375, 0.54296875, -0.3383789, 0.16003418, 1.1015625, 1.921875, -0.3671875, 1.2460938, -2.5234375, 0.40161133, 0.035308838, -3.7421875, 2.8261719, -0.45239258, 0.018188477, -0.16296387, 0.9916992, -1.6787109, 2.3867188, 1.6640625, -2.546875, -1.4394531, 0.35595703, 0.8330078, 1.0039062, -2.2070312, 1.9658203, 1.3505859, -1.8740234, 3.6972656, 0.9140625, 0.13391113, 0.36108398, -1.1142578, 2.3867188, -3.0683594, -0.24230957, 0.15930176, 2.2070312, -0.76953125, -2.2382812, -0.8154297, 4.1328125, -0.13916016, -2.2910156, 1.640625, -2.3164062, 0.5058594, 1.7412109, 0.4296875, -0.34985352, 0.25097656, 2.6601562, -0.72558594, 0.15576172, 2.078125, -0.71777344, -2.0253906, 1.1083984, -2.3203125, 0.30371094, 1.5253906, -1.6533203, -1.1748047, -2.5996094, 1.671875, -2.0429688, -0.88671875, 3.2597656, -3.6699219, 0.6430664, -0.4645996, 2.6015625, -0.64453125, -1.8535156, 0.79052734, -0.91552734, 0.5605469, -0.7392578, 0.48242188, 0.18811035, -0.60058594, -0.40844727, -0.72753906, -1.421875, -2.3613281, -1.2177734, -1.2080078, -2.9003906, -2.7519531, 1.4658203, -1.0791016, 0.47509766, 1.4951172, -4, -1.6699219, 0.4104004, -3.2089844, 0.13879395, -0.61572266, -0.39038086, -0.83203125, 0.56933594, 1.4453125, -1.0146484, -4.2617188, 0.6455078, 0.15014648, 0.053863525, -1.8232422, -0.5004883, 0.34985352, -0.2685547, -0.095947266, -0.9453125, 1.7695312, 1.7109375, -1.3417969, 0.54052734, -2.5195312, 0.28295898, -3.3085938, 1.0205078, -0.45092773, 1.7744141, -3.15625, -3.1132812, -0.31396484, 0.08843994, 4.3242188, 2.1328125, 2.1484375, -0.1270752, 1.4560547, 0.5229492, -0.23962402, -1.8232422, 1.4365234, 2.0273438, -0.91503906, 0.016296387, -2.125, 0.30786133, -2.8378906, 0.29785156, 0.052978516, -0.15270996, -0.7416992, -1.0458984, -0.98583984, -0.79589844, -0.69921875, 0.21020508, -1.0058594, -1.21875, -2.9101562, -0.83984375, -0.6953125, 0.7207031, 0.42260742, 1.5302734, -0.8105469, 1.4287109, 1.9960938, -1.2265625, 1.3544922, -1.9716797, -3.203125, 3.9121094, -0.39233398, -1.2802734, 2.1621094, -3.3066406, -2.7929688, -1.0878906, -0.51416016, 2.4453125, 1.1513672, 1.890625, 1.4033203, 1.5361328, -1.0664062, -1.4033203, -0.6928711, -2.0039062, 0.33422852, 3.6230469, -3.140625, -1.8759766, 0.3852539, 1.6503906, -2.9199219, 0.2626953, 2.9296875, 2.1367188, 1.734375, 2.5332031, -0.13293457, 0.96728516, -1.4863281, 1.2148438, 2.3125, -0.009361267, 0.8208008, -1.1103516, 2.15625, -0.45214844, 1.6484375, 2.6386719, 0.87841797, 2.6992188, 2.2988281, 2.5605469, -0.67285156, -0.78466797, 0.19799805, 1.625, 0.36865234, 1.5800781, -1.6181641, -1.3330078, -2.9003906, -0.32617188, -0.52685547, 0.2878418, -1.4316406, 1.7363281, -0.70947266, 0.33544922, 1.0136719, 0.33911133, 1.2421875, -1.3642578, 0.48608398, -0.62597656, -1.0478516, 1.8017578, -1.1171875, 0.6118164, -1.6386719, 0.3996582, -0.54541016, -2.1113281, 1.2070312, 2.46875, -1.5957031, -1.4716797, -0.45825195, -1.4736328, 0.4501953, 1.3730469, 1.0029297, -0.62060547, 0.40649414, -2.9667969, 1.6259766, 1.4101562, -0.26611328, -0.39501953, 0.17797852, 1.5605469, 0.7504883, 1.125, 2.4277344, 0.15332031, -1.7646484, -0.4716797, -4.6289062, -1.3144531, 2.1738281, -2.9023438, -0.72998047, 2.2714844, 0.7290039, 0.96533203, -0.24633789, 1.5751953, -1.1943359, 0.44360352, 2.0273438, -2.6699219, -0.6821289, -4.1875, -3.3339844, 0.19885254, -2.5390625, 0.33422852, 0.7348633, 0.64941406, -0.11260986, 1.7285156, 0.036621094, -2.1074219, -1.0849609, -1.2275391, 0.63720703, -1.0302734, 1.4365234, 0.5444336, 0.6201172, -1.9169922, -2.0175781, 0.8598633, 0.7084961, 1.7236328, 0.40234375, -4.2265625, 0.3251953, -1.9697266, -0.21557617, -0.9824219, -0.72314453, 2.1777344, -0.3046875, -0.1262207, -2.1015625, 1.734375, 0.42919922, -1.546875, 1.3242188, 1.9384766, -1.2460938, -3.1191406, -0.5678711, 2.3359375, 1.9443359, -0.57177734, -1.9882812, 0.15490723, 0.4921875, -0.07366943, 0.4140625, 0.7319336, 0.9892578, -1.6162109, 0.81152344, 1.7304688, 1.5605469, 0.7524414, 1.1884766, -3.296875, 0.63183594, 0.03451538, -1.6347656, -2.2675781, -0.7192383, 0.8076172, -2.1621094, 0.84814453, -2.0585938, 0.35668945, 0.32763672, -0.48876953, -2.9863281, 3.7714844, 3.90625, 1.9794922, 2.2167969, -0.65722656, 0.14257812, -1.6601562, 0.8017578, -0.53466797, 2.1738281, 0.19897461, -1.2080078, 2.5390625, 1.1728516, -1.4980469, -0.18103027, 0.7055664, -1.0380859, -0.7919922, -2.5996094, 0.6245117, -1.1777344, 0.6430664, 0.8696289, -0.3527832, 2.9296875, 0.41137695, -0.5571289, -0.05697632, 0.8442383, -2.3769531, -0.012077332, -0.87060547, -0.16101074, 0.34716797, 0.93408203, 1.4648438, -0.83251953, -0.3828125, -1.0058594, 2.6328125, -0.27490234, 0.32910156, -0.08557129, 1.8066406, -0.9970703, -1.0390625, 1.3251953, 2.1347656, 1.7705078, 3.5175781, 2.0371094, -2.4121094, 1.5751953, 1.6289062, -2.5117188, 2.1972656, 0.8828125, -1.2607422, 2.6367188, 0.5253906, -3.9238281, 0.5966797, 2.6503906, -0.9926758, 1.2939453, -1.7480469, -1.0244141, 2.2148438, -1.7294922, 0.044891357, 0.11907959, 0.37109375, 1.3964844, 0.9116211, -0.1484375, -2.0175781, 2.2363281, 1.9101562, -2.5, -0.8676758, 1.5380859, -1.3193359, -0.3203125, -1.4199219, -0.64746094, -1.8886719, -0.46533203, 3.7460938, 1.2167969, 0.6245117, 1.0537109, 1.8369141, -0.8227539, 0.16271973, -2.4257812, 2.9804688, -2.2128906, 0.7055664, 0.77490234, -4.1132812, -1.4501953, -1.5009766, -0.71484375, -1.4462891, 1.3818359, 1.7382812, 0.38256836, 1.296875, 1.2880859, -1.9355469, -4.5234375, -0.33642578, -0.73291016, 0.121276855, 0.9243164, 1.8515625, -1.0595703, 0.96191406, 0.9868164, -0.7084961, -1.4814453, 0.8696289, -0.12042236, 0.5595703, 0.11633301, -0.44873047, -0.83496094, 0.78564453, 0.42260742, 2.2050781, 0.53808594, -2.4453125, 0.06628418, 0.14501953, -1.1699219, -0.03186035, 2.1816406, 2.1972656, -0.7392578, 0.41918945, 1.0244141, -2.5195312, 3.0371094, -1.4589844, -1.3408203, 0.45117188, -1.6445312, 1.5205078, 0.42504883, -0.7265625, 0.6743164, -1.4667969, 1.3837891, 2.2285156, -0.45898438, -1.6767578, -0.5415039, 0.77246094, -1.7939453, 1.4082031, -1.09375, 0.95214844, 2.6660156, -1.2451172, -0.97021484, -1.3632812, -2.7382812, 1.6894531, -2.8632812, -1.5703125, -2.5566406, 0.5258789, 1.4384766, 1.1611328, -0.43652344, 1.2519531, -0.72265625, -0.98339844, 0.85498047, -0.6308594, 5.09375, 3.2382812, -1.3789062, 0.09625244, -1.2705078, -0.63720703, 3.1484375, 0.3190918, -2.3789062, 0.51953125, -0.0463562, 1.8583984, 0.121032715, 0.71972656, 1.03125, 0.9350586, -0.51708984, 1.6435547, 3.7207031, -0.31640625, 2.3515625, 0.7426758, 1.3212891, -0.61865234, 3.9003906, 0.7680664, -2.0722656, 2.6269531, -1.6015625, 0.9794922, -0.18164062, -1.3896484, -0.41088867, -0.43774414, -1.5136719, -2.5097656, -1.9199219, -1.3544922, 1.3349609, 2.2089844, -2.9101562, -1.3017578, 1.0214844, -0.5283203, 1.40625, 2.4101562, 1.6894531, -1.3857422, 0.8720703, 1.0107422, 0.7084961, 1.5097656, -4.0078125, 2.65625, 0.7573242, -0.73046875, -0.9370117, 1.5732422, 1.2392578, 2.234375, -0.014678955, 0.6484375, 1.6201172, 1.8310547, 2.4335938, 0.54052734, 3.6035156, 1.0556641, -1.7919922, 0.14587402, 0.78222656, 0.6567383, 0.33032227, -0.8442383, 1.234375, -1.7314453, 0.12695312, 0.47265625, -0.2697754, 0.59716797, -2.2148438, -0.22546387, 1.1357422, 1.5683594, -1.4648438, -1.7753906, -0.32495117, 0.119018555, -0.37158203, -0.26171875, 1.8837891, 0.5498047, 2.6875, -1.1484375, -0.5722656, 0.90283203, -4.5820312, 1.1201172, 0.11437988, -1.6416016, -1.4980469, -1.6767578, 0.671875, 0.23999023, -1.5957031, -0.4321289, 5.0546875, -0.14331055, 0.12121582, -2.4570312, -0.5180664, 0.2368164, 3.6269531, 0.20019531, -0.20617676, 0.2175293, 0.04751587, -4.4375, -3.5839844, 2.9902344, 3.0507812, 1.6347656, 0.9941406, -1.1982422, 3.0117188, -0.7421875, 0.6621094, -1.2900391, 0.39404297, -0.11383057, -1.6015625, -0.6640625, 1.0683594, -0.76708984, 0.97558594, -0.35351562, 0.88183594, 0.20117188, 0.29492188, 1.7363281, 1.7568359, 1.1318359, 1.9140625, 0.91552734, -1.0859375, 2.9628906, -0.6816406, -1.0908203, -1.7207031, 2.3007812, 1.4560547, -0.116882324, 1.1113281, -1.140625, 0.3251953, -1.9443359, 0.45629883, 0.39892578, -2.4238281, -0.859375, 0.8515625, 0.7158203, -1.8339844, 0.04019165, 2.4316406, 2.03125, 0.30859375, 2.3339844, 2.5996094, -0.73828125, 1.4208984, -0.35083008, 0.25195312, -0.34838867, 1.6669922, 1.2421875, 0.56396484, -0.91796875, 0.50439453, 1.1591797, 0.70751953, -0.6381836, 0.59716797, -2.0878906, -1.6386719, -1.3701172, 0.36376953, 0.080566406, -0.49414062, 3.46875, -0.96484375, -0.77197266, 1.0185547, -0.15710449, -0.5131836, -2.0527344, -1.7138672, -1.0244141, 0.35864258, -0.890625, 0.92822266, 3.0410156, -0.7680664, -0.06427002, -1.1308594, -3.3007812, -0.81591797, -2.6386719, 1.8046875, -1.6494141, -2.0117188, 0.14367676, 0.9194336, 1.2402344, 0.101989746, -0.8017578, -0.43603516, -1.5068359, 0.33642578, -1.0537109, 0.14819336, -1.1064453, -0.38012695, 0.7480469, 3.890625, -0.17944336, 0.33984375, 0.73095703, 3.6933594, 1.0800781, -1.5908203, -1.1308594, 0.97216797, -0.22814941, -1.1542969, 0.42114258, 2.8378906, -0.18225098, -1.7265625, -0.6850586, -2.5683594]}, "B009971BM6": {"id": "B009971BM6", "original": "Brand: Blackstone\nName: Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch\nDescription: \nFeatures: RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nTRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels.\nSATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!\n", "embedding": [-0.74853516, 1.5820312, -0.08148193, -0.0149383545, 1.0068359, 0.26879883, 1.6386719, -0.55029297, -2.6210938, 1.2001953, -0.46435547, -0.51416016, 0.5488281, -0.83496094, -0.73291016, 0.04498291, -0.23510742, -0.11444092, -0.6347656, 0.37963867, 3.2597656, 0.90527344, 1.2949219, -0.9091797, 1.3466797, 0.23620605, 3.6054688, -4.15625, 0.94628906, -0.86816406, 1.8955078, -0.82373047, 1.1787109, 1.3085938, -3.8808594, -1.3046875, -0.5214844, 2.4355469, -1.140625, 0.6904297, 0.10144043, 0.1965332, 3.3378906, 0.42285156, -2.734375, -0.5595703, 1.1933594, 0.17797852, -2.1699219, -1.2792969, 0.1895752, 2.8789062, 1.3212891, 0.16027832, -1.53125, 1.2714844, 0.83496094, -1.7304688, 1.5380859, -0.828125, 2.0332031, 0.49829102, -2.1171875, 1.3779297, -1.7255859, -1.1425781, 2.0742188, -0.6948242, -0.19189453, -2.4628906, -0.55371094, -0.10461426, -1.3427734, -0.32910156, 1.078125, -2.1601562, -1.2412109, 1.6289062, 0.097351074, -0.81103516, -1.7617188, 2.4570312, 0.7583008, -2.6386719, -0.012130737, 0.6347656, -0.27807617, 0.07623291, 1.0673828, -0.5488281, -1.1484375, 2.0253906, -2.3183594, -4.1601562, 1.078125, -1.5527344, 0.69140625, -0.15539551, -1.6884766, 2.5019531, -0.9838867, -0.57666016, -1.6220703, 1.5, -3.4199219, 0.13354492, 4.8828125, 0.92871094, -2.046875, 0.5751953, -2.2832031, -0.40893555, 2.1210938, 0.47631836, 1.1337891, 0.81591797, 0.24536133, 1.1621094, 1.3681641, 1.0996094, 3.8066406, -0.46484375, 0.45361328, -0.47143555, 0.12963867, 0.20019531, -0.28564453, 0.46606445, 3.5839844, -1.9658203, 0.03540039, -2.2695312, 3.0058594, -0.13354492, -3.4003906, -1.5693359, 0.069885254, -0.24401855, -2.7070312, 1.5859375, -0.26098633, 1.7519531, 2.0292969, -1.5478516, -4.3476562, -0.052368164, 0.703125, 2.0859375, -0.6772461, -2, -0.48999023, -1.8261719, -0.021774292, -1.359375, 2.5234375, -2.1523438, -0.36645508, -1.9287109, 3.6210938, -0.74365234, 0.54296875, -2.2714844, -0.6064453, 1.0810547, 2.1933594, 0.23779297, 0.1821289, 2.265625, -0.80615234, 2.25, 0.08868408, -2.4296875, -0.8852539, 0.3076172, 2.0644531, -1.4033203, -1.1943359, 1.5996094, -0.43701172, -1.2548828, -1.2744141, -2.6855469, 1.1123047, 0.50390625, -0.59228516, -2.0742188, 1.4833984, 0.9194336, 0.99560547, -0.3955078, -0.984375, -0.69921875, -0.25805664, 0.34814453, -0.50390625, -1.5224609, 0.87402344, 0.09375, 0.84228516, 0.38500977, -0.10675049, -1.0810547, 0.6074219, 1.0634766, -2.6660156, -1.1230469, 1.6201172, -1.2626953, 2.671875, 0.34106445, 0.59716797, -1.2207031, 0.6538086, 0.3515625, -0.44506836, -1.5664062, 1.0605469, -0.41845703, 1.21875, 1.2255859, 1.2470703, -2.6503906, -2.1152344, 1.1103516, 0.5136719, 2.84375, 1.09375, 0.8847656, -1.9804688, -0.89941406, 2.140625, 1.4013672, -1.1220703, 1.0722656, -0.7470703, 3.125, 0.5239258, -0.9433594, -0.28710938, 0.02281189, 0.3034668, -1.65625, -0.03527832, -0.5136719, -1.2197266, 1.0957031, -1.5556641, 1.8867188, -0.056030273, -0.6142578, -2.5019531, 0.60498047, 2.1875, 1.828125, -0.8359375, -0.20080566, -0.60839844, -0.45825195, -2.3808594, -2.5957031, 0.17480469, 1.6865234, -0.89453125, 1.3974609, 2.0410156, -0.8774414, 0.47021484, 2.46875, -1.9472656, 0.41992188, 1.9599609, 0.16784668, 2.0371094, -0.43774414, 0.6694336, 0.7548828, -1.4101562, 2.3476562, 0.11816406, 0.39916992, -1.2285156, -2.0097656, 0.85546875, -1.8925781, 0.08874512, 1.2197266, -1.6884766, 1.5605469, 0.76123047, 0.4086914, 5.0703125, -1.4677734, -2.1308594, 3.6972656, -1.2177734, 0.6538086, 1.0351562, -1.5039062, -0.6069336, 1.2792969, 1.5576172, 1.5712891, 0.6635742, 0.71728516, -2.6289062, -0.20324707, 0.44970703, -2.5996094, -1.2714844, 2.0585938, 0.65185547, -0.36767578, -0.6513672, 0.8959961, -0.66064453, -0.34448242, -0.99853516, -1.6259766, 1.9570312, 2.0859375, 2.4609375, 1.6582031, -0.6035156, -2.0839844, -0.6977539, -0.034057617, -0.09277344, 1.8154297, 0.58935547, -1.5859375, -0.20825195, 1.1865234, -0.72802734, -1.1455078, -3.8847656, -1.0927734, 0.7817383, -1.96875, 0.03201294, -1.953125, -1.6699219, 2.328125, -1.2011719, 0.9135742, -1.0742188, -2.2988281, -0.9042969, -0.14453125, -1.0322266, -0.9428711, 0.9121094, -0.6010742, -1.578125, -2.9238281, -0.76123047, -0.5991211, 1.3632812, -1.6894531, -1.3701172, 1.1582031, -1.6660156, 0.69189453, -0.5419922, 0.13745117, 0.010299683, -0.20043945, -0.32055664, -2.34375, 1.5195312, -1.109375, -1.1738281, -1.9208984, -0.27270508, -2.1835938, -0.83447266, -0.01991272, -1.1425781, 3, -1.8652344, 1.5429688, -0.75634766, 0.69140625, -0.16711426, -0.6430664, -2.671875, -0.17675781, -0.109802246, -1.53125, -2.4238281, -3.1425781, -0.3791504, -0.67626953, -0.57958984, -1.9394531, 1.4013672, -1.0957031, 1.7304688, -0.62402344, 0.60498047, 0.55810547, 0.40966797, 0.22375488, -2.2441406, -2.421875, -0.9296875, 0.546875, -1.9472656, 1.0273438, 1.5527344, -0.9169922, -1.0429688, 1.6279297, -0.91503906, -0.8144531, -0.09411621, -2.9707031, 2.4550781, -0.010299683, -3.8945312, 2.9550781, -0.63720703, -0.5102539, -2.4472656, 0.71875, 3.4609375, 0.82714844, 0.8901367, 0.45043945, -1.1083984, 1.7578125, 1.0166016, -0.44506836, -0.7573242, 0.31469727, 1.4726562, -0.37426758, -2.0742188, 0.33081055, 1.9785156, -2.4335938, -0.6635742, 1.2744141, 1.2714844, 1.2900391, 1.8486328, 2.0917969, -0.62841797, -1.8925781, -1.4648438, 0.6640625, -0.13513184, -0.44433594, -0.6464844, 0.57421875, -0.57910156, 1.5400391, 0.3696289, 0.4074707, 2.1230469, 1.4755859, 2.5820312, -2.1113281, 0.0982666, -0.65478516, 1.1943359, 2.0292969, 2.2167969, -0.2565918, -0.00020682812, 0.7001953, 0.23278809, 3.1582031, -1.3886719, 0.32080078, 2.6699219, -1.4707031, -0.13195801, -0.38842773, -0.18640137, -0.6386719, -0.2578125, -0.10803223, -0.7324219, -1.5791016, 0.5131836, -0.7495117, -1.7714844, -2.7753906, 1.6796875, -2.1308594, -2.5117188, 1.1113281, 2.6523438, -0.13415527, -1.0322266, -1.0732422, -0.1060791, -0.4260254, 2.4042969, -0.14477539, -1.6640625, 0.5214844, -1.578125, 1.0791016, -0.5366211, -0.34399414, 0.27539062, -0.55078125, 0.06958008, -1.5791016, -0.22436523, -0.3798828, -0.45581055, -2.0078125, -0.77001953, -2.6152344, -0.40039062, -0.6230469, -0.9902344, -1.3974609, 2.0625, 2.0546875, 0.3984375, -0.91845703, 3.0859375, -0.1809082, -1.4033203, 1.640625, -4.5195312, -1.0087891, -1.9755859, -3.1503906, 1.1533203, -0.54003906, 0.3984375, 1.3886719, 0.88183594, 0.33544922, 2.0742188, 0.2130127, -3.8496094, 1.0087891, -1.078125, -0.121276855, -2.4003906, -0.7314453, 0.039794922, -0.69140625, -1.1298828, -0.47485352, 1.34375, -0.054016113, 0.7817383, 0.84472656, -2.3691406, -0.21252441, -0.099121094, -1.375, -0.66259766, 0.89501953, -0.118774414, -1.2207031, 0.24365234, 0.11987305, 0.37646484, -0.33496094, 1.34375, 0.4033203, -0.23425293, -0.5986328, -1.2978516, -0.75927734, 0.055511475, 1.4970703, 0.2614746, -0.28271484, -0.65527344, 1.2402344, 2.0996094, -1.2070312, -0.32763672, 1.1201172, -1.671875, -1.1953125, 0.9277344, 0.9794922, 2.4316406, 1.1533203, -1.1298828, -0.42749023, 0.61035156, -1.5449219, -2.6152344, 0.5932617, 0.3852539, -0.7421875, -0.13574219, -2.5175781, 0.86816406, -1.0136719, 0.37402344, -0.05807495, 3.6621094, 1.4082031, 2.0429688, 3.640625, -0.77490234, -1.1210938, 2.3828125, -1.2246094, -2.1425781, 2.7304688, 0.59277344, -1.2646484, 2.6035156, 0.16638184, -1.4316406, -0.123168945, 2.9765625, -0.64746094, 0.06982422, -1.5478516, 0.73535156, -2.7265625, 0.67285156, 0.37719727, -0.12731934, 0.31152344, 0.17797852, -0.83154297, 2.1191406, 1.8779297, -0.8574219, 0.3671875, 0.5957031, -0.19604492, 1.171875, 0.3527832, 1.4111328, -1.7353516, 0.59375, 0.51220703, 2.2207031, 0.20288086, 0.7895508, 0.059753418, 0.4333496, -1.8769531, -0.25463867, 1.40625, 3.5332031, 0.21862793, 1.4160156, 0.26245117, -2.2011719, 2.1230469, -0.1315918, -3.0742188, -1.8994141, -0.013710022, -0.91796875, 0.70410156, -0.13183594, -2.8886719, 0.5942383, 2.4199219, -1.8496094, 1.265625, 0.92578125, 0.054260254, 0.98095703, -2.1269531, 0.3088379, -0.3154297, 0.29907227, -0.18737793, 0.4584961, 0.11730957, -0.4506836, 1.1640625, 2.7929688, 0.7685547, 0.34301758, 1.3505859, -1.5859375, 2.140625, -0.6118164, -0.5751953, -2.3007812, 0.66748047, 1.9189453, 0.83496094, 0.89990234, 0.31860352, 0.076293945, -1.6582031, -0.5571289, -1.7929688, 2.4082031, 0.06011963, -1.6015625, 0.8408203, -1.3095703, -1.2304688, -1.671875, 1.8310547, 0.38891602, 1.7001953, 1.3662109, -0.33544922, 0.72265625, 1.0322266, -0.98876953, -4.7539062, -0.18310547, -0.5527344, -0.022369385, -0.20446777, -0.17480469, 0.35888672, -0.24414062, 1.0751953, -1.2207031, -1.296875, 0.50683594, -0.12365723, -0.50146484, -1.5556641, -0.5073242, 0.38183594, 0.6225586, 1.8457031, 0.16320801, 0.8378906, -1.5634766, 0.24609375, 1.7109375, -1.2724609, 0.07122803, 1.2431641, 0.5654297, -0.6328125, 2.3730469, -0.031158447, -1.875, 2.6640625, -3.4667969, -0.36767578, -0.30786133, -1.2900391, -1.4560547, -1.2578125, -0.56640625, 1.7431641, -1.1650391, -0.8618164, 0.38989258, -1.6757812, -0.6665039, 2.2929688, -1.9091797, -1.7861328, 1.4082031, 1.0009766, 1.0449219, -0.14929199, -0.56103516, 1.1845703, -2.2421875, -1.7792969, 0.9326172, -1.2636719, 0.4008789, -2.3945312, 0.9057617, 1.8925781, 0.32177734, -0.7338867, 1.7949219, -0.52441406, -1.4912109, 0.22521973, -0.5703125, 2.2265625, 0.57666016, -0.013420105, -1.2226562, -1.9501953, -0.3203125, 0.056610107, 1.0585938, -1.1337891, -1.1992188, -0.17822266, 0.9941406, -0.81591797, 1.9189453, 3.1386719, 0.91308594, -0.5361328, 0.04940796, 1.7236328, -0.27929688, 3.4980469, 2.3652344, 1.5429688, -2.0859375, 4.1484375, -0.67089844, -3.390625, 2.2636719, -2.2089844, 2.3925781, 0.42456055, -0.6645508, -0.25512695, -1.1015625, -0.44482422, -1.34375, -1.8457031, -2.8125, 2.6835938, 0.77246094, -1.9599609, 0.34545898, 1.4101562, 0.16894531, 2.2070312, 2.5136719, 0.9091797, -0.7451172, 0.032348633, -1.2324219, -0.8100586, 0.23071289, -0.69970703, 0.08258057, 1.2070312, -0.32641602, -3.1132812, 0.48291016, 0.82910156, 3.671875, -0.49975586, 0.7861328, 2.6210938, 0.91064453, 2.8710938, 0.17382812, -0.14855957, 0.95410156, 1.9570312, -1.6035156, 2.2734375, 2.5371094, -1.5273438, -2.1367188, 1.6132812, -0.46923828, -1.4130859, -0.7211914, 0.19665527, 1.5058594, -4.2578125, 2.9355469, -0.068359375, 1.4912109, -1.0761719, -1.9853516, -0.6166992, -1.3916016, 1.2998047, 0.08795166, 1.6289062, -0.38452148, 1.671875, -0.8774414, -0.10223389, 0.93603516, -3.4335938, -0.32055664, 0.6352539, -0.91796875, -0.43798828, 1.6884766, 2.6308594, 0.79052734, 1.9082031, 1.5410156, 2.5175781, -1.6298828, 2.0410156, -0.6479492, -0.78027344, 1.3613281, 2.6386719, 0.13745117, -1.3535156, 1.6416016, -0.4033203, -2.5742188, -2.5742188, 2.4414062, 2.140625, 1.4707031, 1.5625, -1.1503906, 2.1601562, 1.7988281, 2.3945312, -2.9414062, 2.0429688, -1.0722656, -2.4667969, -1.5917969, 0.14099121, 0.7163086, 1.4208984, 0.033447266, -1.0917969, 2.8007812, 0.97753906, 1.7636719, 0.7236328, 0.09436035, 1.1279297, -0.57470703, 0.08178711, 1.59375, -0.22998047, -0.7104492, -1.3671875, 0.92333984, 1.9462891, 0.83496094, 1.1816406, -0.69140625, -0.89160156, -0.017654419, -1.3388672, 1.2255859, -0.06756592, -1.6865234, 1.1669922, -0.08428955, -0.055908203, -2.3457031, 1.8232422, 0.5131836, 0.80029297, -0.9277344, 1.5009766, 0.53271484, 1.7548828, 0.9604492, 0.8383789, 0.059265137, -0.5541992, 0.033050537, 0.30322266, -1.421875, 0.60009766, 1.2998047, -0.25024414, -0.23815918, 0.6855469, -2.1171875, 1.1640625, -0.38989258, 1.3876953, -2.28125, -1.4443359, -0.06665039, -1.1220703, 0.1973877, 2.0292969, -0.050445557, -0.14550781, -0.8774414, -0.22753906, -0.32861328, -1.4433594, -0.7661133, -0.31469727, 3.7617188, 2.0488281, 0.5761719, -2.0136719, -1.921875, -0.6230469, -0.31689453, 2.4179688, -0.03164673, -1.3251953, -0.9716797, 1.6103516, 2.3222656, -2.0429688, 0.7714844, -0.09631348, -0.4230957, 0.5341797, 0.515625, 1.2626953, 0.33154297, -1.1523438, -0.119140625, 2.71875, 2.1855469, 0.8935547, 2.2675781, 1.8964844, -1.2734375, -2.4921875, 0.9667969, -0.050109863, 0.23022461, -0.5449219, 0.052581787, 0.49389648, 1.7822266, 0.47094727, -1.2431641, 0.29858398]}, "B00LILH3V4": {"id": "B00LILH3V4", "original": "Brand: Amazon Basics\nName: Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze\nDescription: \nFeatures: Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios\nMade with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements\nPiezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided.\nSafety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility\nSecure the patio heater when not in use to avoid any potential damage to the patio heater\n", "embedding": [0.007949829, 1.2666016, 1.1416016, 0.23730469, -0.42333984, 0.052734375, 1.1376953, -2.15625, -0.64404297, 2.515625, 1.6445312, 0.22241211, 0.30664062, -4.1445312, 1.7617188, -0.92041016, 0.066589355, 1.0800781, 1.1347656, -0.15063477, 2.8554688, 0.2368164, 0.21411133, -1.1103516, 0.33276367, -0.63134766, 2.4589844, -2.1523438, -0.020568848, -1.3632812, -0.296875, 0.85058594, -0.6772461, 2.4824219, -1.3818359, -2.5507812, 0.8510742, 2.4199219, -4.953125, -0.5654297, -1.5546875, -1.9541016, 0.45922852, 1.0927734, -1.75, 0.8886719, 2.0644531, 1.6474609, 0.85253906, -1.3261719, 0.7236328, 0.40576172, 0.068603516, -1.1259766, -1.6904297, 0.49609375, -0.4663086, -3.5136719, 1.4931641, 0.13342285, 0.034057617, -0.72558594, -1.9912109, 1.7900391, -0.6113281, 2.1914062, 0.15783691, 0.8930664, -1.9101562, 0.30541992, 2.3476562, -0.13427734, -1.6328125, 0.73535156, -0.004421234, -0.95166016, -2.4902344, 2.0585938, 3.3476562, -1.1298828, -0.9033203, -0.70214844, 0.9785156, 0.67871094, -1.5986328, 0.7441406, -1.1953125, -0.7631836, 0.7578125, 0.6699219, -1.0839844, 1.7587891, -1.5605469, -1.7441406, -0.3244629, -0.8808594, 0.31079102, 1.3925781, -0.076660156, 1.7773438, 0.31958008, -0.37036133, -0.093933105, -2.0097656, -1.5664062, -1.8925781, 2.8007812, 0.31591797, -0.8330078, 2.9648438, -2.5917969, 0.26611328, 1.8164062, -1.6806641, -0.9472656, -0.14562988, 1.3564453, 2.046875, 3.7363281, 1.3427734, 3.5722656, -1.3779297, 2.0839844, -2.8417969, 0.23632812, -0.59375, -0.6020508, 1.4306641, 2.6191406, -1.0224609, 1.4824219, -1.3486328, 1.5664062, 0.47973633, -0.6567383, -1.2470703, -0.47607422, -0.9355469, -5.3085938, -1.2373047, -1.515625, 0.83740234, 1.0322266, 1.0341797, -4.1054688, -0.8208008, -0.25878906, 2.1210938, -1.8818359, -0.65478516, 0.3232422, -1.9902344, -0.52685547, -1.9667969, 0.050476074, 1.1757812, 1.5957031, -3.7519531, 3.2773438, 0.29736328, 1.7109375, -0.7348633, -0.83691406, 2.2792969, 0.5463867, -1.5419922, 1.0878906, 1.5898438, -0.42529297, 2.3222656, 0.30859375, -3.4082031, -0.99121094, 0.8222656, 0.30981445, -1.1933594, -0.7290039, 2.0703125, -0.4711914, 0.48657227, -2, -1.2177734, 1.1074219, 2.4609375, -0.11730957, -2.6757812, -2.3183594, -2.9355469, -0.92578125, -0.88134766, 0.2529297, -1.1132812, -0.43603516, -2.2148438, -0.0871582, -3.796875, -0.59521484, -1.6933594, 1.9902344, 0.73095703, -1.3574219, -0.10424805, -1.2617188, -0.8178711, -2.125, -1.9541016, 0.2932129, -1.8759766, -0.12695312, 0.32543945, 1.671875, 0.25170898, 1.8671875, -1.1025391, 2.3476562, -0.8496094, 2.3691406, -1.3125, -0.05947876, 2.3789062, 0.051879883, 0.26000977, -0.21569824, 0.8588867, -1.6123047, 2.5683594, 0.8100586, -0.035186768, -3.078125, -1.609375, 2.8730469, 2.0117188, -0.013153076, 1.1464844, -0.8100586, 3.4882812, 1.5712891, -0.05758667, 1.1708984, -0.8461914, 0.012748718, -1.3378906, -1.5273438, -0.9453125, -0.3955078, 2.5566406, 0.030395508, 0.8979492, 0.39746094, -0.22888184, 0.34814453, -0.9428711, -0.11450195, -1.0371094, 0.53222656, 1.4707031, 1.3125, 2.7207031, -0.8730469, -2.1035156, 1.3984375, 1.6455078, -1.4570312, -0.1619873, -0.08074951, -0.44482422, 4.1796875, 1.2539062, -2.8789062, -0.30932617, -0.80859375, 1.0126953, 1.7890625, 0.12298584, 1.9013672, 1.109375, -0.87841797, 2.9140625, -0.2788086, 1.6923828, 1.9736328, 0.1817627, 2.8359375, -1.5966797, -0.94140625, -0.27001953, 0.37475586, 1.4726562, -1, 2.3085938, 3.3574219, -0.048217773, -2.8066406, 2.1035156, -0.43017578, 2.9472656, 1.2421875, -0.58154297, 0.2866211, -2.0195312, 2.9296875, 0.103759766, -0.49829102, 2.6015625, -2.2851562, -0.6586914, -0.123168945, -2.4941406, 1.1425781, -1.1992188, -0.9472656, -1.2324219, -2.2949219, -1.2412109, -3.2089844, -1.6083984, 1.8183594, -3.4160156, 1.3378906, 1.6025391, -0.32250977, -0.061157227, -0.49487305, -1.6904297, 1.1972656, 2.0214844, -1.1738281, 0.8745117, -0.48266602, -1.4462891, -0.60253906, -1.7568359, 3.2089844, -2.9433594, -3.5117188, -1.1064453, -0.070373535, -0.3330078, 1.2265625, -1.2509766, 0.42919922, 1.0566406, -2.5390625, 1.0742188, -2.5761719, -2.0429688, -1.0214844, 1.3457031, -1.6171875, -0.079956055, 0.6513672, 0.13244629, -2.6796875, -3.7148438, -0.5883789, 2.125, -1.3554688, 0.7841797, -1.0644531, -0.06185913, -1.4570312, 0.48364258, 0.10864258, -0.4675293, -0.48632812, -1.5507812, -0.42773438, -5.40625, 1.5146484, -2.1757812, 0.32958984, -0.01209259, 1.6171875, -2.7265625, -0.80615234, 1.4335938, -0.5180664, 5.6875, 1.4824219, 1.5722656, -0.14147949, -0.6791992, 1.4970703, -0.4753418, -2.0703125, -0.3515625, -0.6113281, -1.4414062, -0.50390625, -2.2675781, 0.94921875, -1.7744141, -0.80859375, 0.50634766, -0.26123047, -0.95214844, -0.6855469, -1.6748047, 0.8691406, -2.7382812, -0.45776367, -0.22937012, 0.47802734, -3.6210938, 0.2578125, -1.4609375, -1.1347656, -1.2050781, 2.0585938, 1.9853516, 0.34472656, 3.0234375, -0.5800781, 2.2832031, 0.8208008, -4.7265625, 1.2236328, 3.3066406, -1.1123047, 0.1262207, -1.9990234, -1.5664062, -1.9677734, -1.0449219, 3.3535156, 0.1418457, 2.8359375, -0.32910156, 0.25, 0.52001953, 1.0322266, -0.6230469, -0.6352539, -0.62841797, 2.3125, -2.515625, -0.2319336, 2.0195312, 3.2363281, -2.5332031, -1.9511719, 2.03125, 0.7060547, 2.3027344, 2.1464844, -1.2871094, 0.7578125, 1.9785156, 1.1240234, 1.7832031, 1.0410156, -2.421875, -0.89453125, 1.2871094, 1.2148438, 3.2753906, -0.546875, 0.5932617, 1.1044922, 0.56396484, -0.47265625, -1.4462891, -0.10076904, 0.28833008, 0.20532227, 0.17138672, 1.0849609, -1.390625, 0.9199219, 0.77001953, 0.5473633, 0.1743164, -1.4179688, -0.5800781, 2.4472656, 1.1933594, -1.4101562, 0.3449707, -0.67871094, 1.0957031, -0.83251953, 0.4404297, -0.50634766, 0.9536133, -0.43017578, -1.6865234, -1.3691406, -0.6748047, 3.1582031, -0.1427002, -3.3964844, 0.17016602, 1.8857422, -0.7573242, -0.3076172, -1.4072266, -0.18591309, -1.2607422, 3.0058594, -0.41870117, -1.8613281, -0.16064453, -1.5927734, 1.6171875, 0.8588867, -0.9892578, -2.2460938, -0.6298828, -1.9365234, 1.75, 0.67041016, 0.58203125, 1.5087891, -2.2753906, -0.6020508, -2.3046875, -0.3388672, 0.9399414, -1.7412109, -0.44580078, 2.8574219, -0.5283203, 2.6855469, -1.5126953, 3.6152344, -1.3710938, -3.6796875, 1.0361328, -1.1220703, 0.44873047, -1.3818359, -5.4335938, 0.8354492, 0.4790039, -0.7714844, 1.8740234, 0.15942383, 0.3581543, 0.31640625, -0.9033203, -2.7246094, -2.7519531, -2.4355469, 0.63964844, -3, 0.2130127, 1.1289062, -2.3574219, -2.3398438, -3.3144531, 0.40893555, -0.28515625, 0.5595703, 2.1699219, -0.94384766, 0.73535156, -0.7910156, 0.81591797, 0.3305664, 0.5834961, -0.8071289, -1.3066406, 0.6738281, -0.921875, 2.1738281, 1.3183594, 0.9321289, 2.0390625, 3.1132812, 0.45532227, -1.6455078, 0.97753906, 1.0839844, 2.3964844, 0.15881348, -3.5019531, -0.40722656, -0.42114258, 0.32470703, -1.8984375, -0.21691895, 0.3635254, -1.2392578, 0.6826172, 2.2226562, -0.39208984, 2.8769531, 1.4433594, -3.4101562, -0.22021484, -0.29760742, -1.9755859, -1.9345703, -1.3583984, -0.40112305, -1.3681641, 1.2070312, -1.2236328, 0.1439209, -1.5996094, -1.8886719, -1.3847656, 0.90185547, 2.9121094, 2.2734375, 1.203125, -2.4921875, -0.55810547, -1.1523438, -0.21020508, 0.10430908, 2.203125, 0.5571289, 1.2001953, 0.7114258, 1.6894531, -2.5273438, 0.46923828, 1.0859375, -1.4404297, -0.25195312, -2.4199219, -0.43920898, -0.31201172, -2.0917969, 0.4555664, 0.67871094, 2.3515625, -1.9521484, -0.23730469, -1.6269531, -0.41577148, -1.5625, 0.34399414, -0.6401367, 0.1361084, 2.78125, 1.3173828, 0.68408203, -1.0683594, 2.0839844, -1.0917969, 3.3496094, -0.70166016, -1.1777344, -0.75634766, -0.28100586, 0.7495117, -0.7133789, 1.7402344, 0.7324219, 1.2744141, 2.9863281, 1.9433594, -0.16235352, 2.0800781, 1.0283203, -0.42236328, -0.09576416, 0.8354492, -0.47827148, 1.3476562, -1.4628906, -3.6464844, -0.3239746, 3.9746094, -0.33081055, 1.2128906, -0.2331543, -1.8466797, -0.80615234, -2.0644531, -1.4404297, -1.4902344, 0.9580078, -0.1439209, -0.12371826, 0.16040039, -1.3925781, 2.3847656, 3.8730469, -0.3474121, -0.20141602, 3.1132812, 0.10131836, -1.5351562, 0.2614746, -0.79541016, -0.09851074, 0.4794922, -0.07922363, 0.8911133, 2.5859375, 1.4189453, 0.03390503, -2.6152344, -0.18640137, 0.09057617, 3.8613281, -2.734375, -1.4775391, 1.4941406, 0.43823242, 1.4072266, -2.5371094, 0.58203125, -0.43286133, 1.3027344, -0.82666016, 0.8671875, 1.1035156, -2.3828125, -1.0576172, -3.5019531, -0.3022461, 0.84521484, -1.8544922, 1.0068359, -0.8535156, -2.5351562, 0.21728516, -0.32495117, -0.32080078, 0.63720703, -0.72509766, -1.5712891, 0.6665039, 0.07562256, -0.37524414, 0.35864258, 2.8398438, -1.0234375, -0.4494629, -0.55078125, -3.0703125, -1.828125, -0.64941406, -0.81152344, 1.7402344, -0.19616699, 0.17114258, 2.0136719, 3.8808594, 2.0703125, -2.1015625, 1.5546875, -0.26513672, 1.0859375, 3.6132812, -1.4677734, 1.1845703, 1.0400391, -1.1914062, -0.4699707, 0.31640625, -0.07702637, 0.08251953, 3.0917969, 0.11218262, 1.0507812, -0.40454102, 0.9008789, 0.94628906, -0.3215332, 3.1933594, 0.67529297, -2.5449219, -1.5234375, -2.5214844, -1.3876953, -2.5292969, -2.1503906, -2.7910156, -1.0820312, 1.4707031, 0.65966797, -0.13415527, -0.023803711, 0.19763184, 0.45263672, -2.3300781, -0.37060547, 0.3713379, 2.7304688, 1.2089844, -1.7529297, -4.109375, -2.5390625, -0.031921387, -0.63720703, 1.5205078, -1.6767578, -1.0986328, -2.6152344, 0.78466797, 0.18273926, 2.6074219, 2.8144531, 0.7324219, -2.5976562, 1.3691406, 2.0390625, -0.21081543, 0.06994629, -0.36572266, 2.5957031, -1.0820312, 4.375, 3.2753906, 0.70751953, 2.0820312, 0.34399414, 1.8857422, -0.40966797, -1.0322266, 2.7363281, -2.6972656, -0.46557617, -1.3417969, -1.0878906, -3.1738281, 0.48583984, 0.6479492, 0.038879395, -0.042633057, 1.4648438, -0.13659668, 0.8779297, 0.9213867, 0.9746094, 0.24047852, 0.17773438, -1.9609375, 0.31396484, 3.5429688, -0.3461914, 1.7041016, 1.3300781, -0.08483887, -1.9150391, 1.1162109, -0.62353516, 0.6298828, 3.2226562, 2.5585938, 3.7636719, 0.6845703, 2.4199219, 0.9453125, 0.45117188, 1.9726562, -1.2539062, 0.3173828, 1.3691406, 2.5488281, -1.0742188, -1.0517578, 0.70996094, 1.7792969, -1.6230469, -1.5625, 1.40625, 0.014785767, -1.0175781, 1.2763672, -0.49023438, 2.1582031, -1.5458984, 0.51416016, -0.28125, 0.60253906, -0.23339844, -1.0439453, 1.3818359, -1.1972656, -0.98828125, -0.06427002, -0.08288574, 1.3896484, -2.0898438, 1.5898438, 0.1821289, -1.0146484, -0.046661377, 1.8671875, 1.1845703, 1.0068359, 0.047332764, 1.4511719, 1.5185547, 1.2265625, -0.28637695, 0.2097168, -1.0498047, 0.9716797, 2.1425781, 2.7519531, -0.9428711, -0.7211914, -1.1933594, -1.0322266, -2.7832031, 1.4941406, 0.8105469, -0.59814453, 0.6074219, 0.28295898, 0.88427734, -0.21655273, 1.0957031, -2.1972656, 0.44873047, 1.4736328, -0.82714844, -1.4638672, 0.2006836, -0.8779297, 3.6035156, 1.3066406, 0.49682617, 1.4355469, -1.3183594, 0.44189453, 0.38793945, 1.3408203, -1.6767578, 2.0917969, -1.9638672, 2.2421875, 1.8398438, 1.4375, 0.95214844, -0.63720703, 2.0019531, -1.1845703, 0.61621094, -1.9404297, 0.2788086, -0.3413086, -0.1005249, -0.19665527, -1.59375, -1.4316406, 0.39697266, 1.1015625, -1.1210938, -1.1259766, 1.0722656, 0.13806152, -1.2626953, 1.8613281, 2.4316406, -0.5463867, 0.9609375, -1.2099609, -2.6425781, 0.5107422, -0.3071289, 0.18945312, -0.96533203, -0.58935547, -0.13171387, 0.6376953, 1.4238281, 1.4960938, 1.5546875, -1.6425781, -2.3027344, 1.0566406, 1.4443359, -0.46166992, -0.38623047, -0.10058594, -0.6767578, -1.5029297, 0.60009766, 1.1855469, -0.54248047, -1.5712891, -2.3984375, -1.5419922, 1.1416016, 0.09655762, 2.453125, 4.3046875, 0.40454102, 2.3261719, -1.3388672, -2.4824219, -1.6484375, 0.49902344, 2.4101562, -0.56933594, -0.26000977, 1.3447266, -0.9501953, 2.3261719, 0.6225586, -1.1289062, -0.85498047, -1.2607422, 2.3164062, -0.35327148, 2.1972656, 0.41918945, -0.55126953, -0.45776367, 2.640625, 0.9536133, 1.6416016, 1.8701172, 0.6333008, 0.0069389343, -4.5273438, 0.3215332, -0.9038086, -0.05871582, 0.18249512, 0.8227539, 1.4384766, 0.42529297, -0.2722168, -3.3964844, -1.6962891]}, "B075KQ1VV2": {"id": "B075KQ1VV2", "original": "Brand: Stansport\nName: STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black)\nDescription: \nFeatures: FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper!\nPORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center.\nDESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen!\nHIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike!\nNO MATCHES REQUIRED: The electronic igniter ensures you won't be eating a cold meal, even if you lose your matches during a long hike!\n", "embedding": [-2.0351562, 1.5380859, 1.6640625, 1.84375, -0.98535156, 1.6005859, 2.1425781, -0.86328125, -1.09375, 1.4541016, 1.0595703, -0.7890625, 0.97558594, -1.7138672, -0.5288086, 1.6220703, -0.4326172, 0.068481445, -1.2568359, -0.059295654, 1.7128906, -0.33691406, 2.5175781, -2.0820312, 0.12939453, -0.41992188, 3.3105469, -3.5683594, 0.6386719, -1.0507812, 2.15625, -0.14538574, 1.1875, 3.1015625, -3.1621094, 0.42016602, -1.9335938, -0.48486328, -2.734375, 0.18249512, -1.1113281, -0.7949219, 3.1582031, -0.85253906, -1.5458984, -1.5566406, 0.7949219, -0.122924805, -1.296875, 0.9555664, -0.2890625, 0.5522461, -0.058441162, 1.7841797, -1.6240234, -0.097595215, 0.40722656, -1.1494141, 1.5009766, 0.89404297, 1.5517578, -0.27172852, -1.8554688, 0.71875, -1.4462891, 0.11743164, 1.3808594, -0.21911621, -0.6455078, 0.4934082, 2.8496094, -1.5146484, 0.47485352, -0.81591797, 0.7915039, 0.64160156, -3.0898438, 1.8671875, 2.7753906, 0.5283203, -1.7275391, 2.9003906, 0.9555664, 1.140625, 0.3557129, 1.2451172, -1.0722656, -0.92529297, 0.5180664, 0.68359375, -2.5390625, 0.9291992, -1.6376953, -3.8613281, 2.0488281, -0.88916016, 2, 0.66796875, -0.18493652, -0.26220703, -0.35351562, 0.48413086, -0.92578125, 0.77197266, -1.7177734, 0.60009766, 3.3945312, 1.3603516, -3.1269531, 0.25170898, -2.3066406, -1.6230469, 1.5107422, 0.19384766, 1.0615234, 1.90625, -2.2539062, 0.4699707, 3.3222656, 0.875, 5.2773438, 0.10760498, 2.2304688, -0.46801758, 0.17041016, 2.0546875, -2.28125, 0.088012695, 3.140625, -0.62109375, -1.9912109, 0.3930664, 1.6240234, -0.29248047, -1.3984375, -1.6992188, -1.7421875, -2.1855469, -2.1132812, 0.26513672, -1.9638672, 0.2783203, 1.8310547, -0.14111328, -4.8945312, -0.7109375, -0.42871094, 1.4755859, 1.3388672, -1.6230469, -0.23791504, -1.78125, -1.1298828, -1.421875, 2.5761719, 0.33007812, -0.7167969, -0.5053711, 3.0332031, 0.84033203, 1.6621094, -1.6230469, -2.7773438, 1.3994141, 1.7949219, -2.6894531, -0.27197266, 1.8203125, -1.0146484, 1.2441406, -0.6948242, -2.0996094, -0.70703125, -0.95214844, 1.1523438, -0.45898438, -0.9941406, 2.5625, 1.5703125, -1.8505859, -1.5195312, -1.9462891, 0.85791016, 0.9897461, 0.13049316, -1.7158203, 0.6508789, 0.5966797, -1.1318359, -1.9677734, -1.0751953, 1.2099609, -0.8359375, -0.5229492, -0.6743164, -3.0175781, -1.3457031, -2.6308594, 0.32714844, 1.2871094, -0.63916016, -1.3613281, -1.0136719, 1.3740234, -2.2832031, -0.9638672, -0.3881836, -0.10827637, 1.0527344, 3.03125, 2.0039062, -0.23669434, 2.7714844, -0.2668457, -2.3925781, -2.2832031, 2.7988281, 1.2910156, 2.0566406, 2.5117188, 0.6298828, -0.46142578, 1.0234375, 1.1845703, 0.026885986, 1.2363281, 1.4619141, -1.296875, -1.4863281, -0.7060547, 2.3085938, 0.15002441, -1.2431641, -0.3540039, -0.59472656, 2.34375, 1.3876953, -1.3037109, -0.80859375, -0.42797852, 0.022232056, -0.7011719, 1.5322266, 0.8046875, -2.0976562, -0.89160156, 0.5991211, -0.31298828, 2.6621094, 1.4726562, 0.4465332, -0.65527344, 0.39013672, 0.47851562, -0.9042969, -0.828125, 0.7583008, -0.80859375, -1.7910156, -2.7441406, 2.9472656, 2.625, -0.18896484, 0.44140625, 0.16516113, -1.0488281, 2.6796875, 1.3583984, -2.2832031, 1.7607422, 0.77246094, 1.2333984, 2.2089844, -0.6777344, 2.4707031, -1.6132812, -0.94921875, 4.75, 0.39038086, 1.9462891, 0.16357422, -1.8417969, 2.1074219, -2.4296875, -0.5131836, 0.5361328, 3.0566406, 1.1025391, -1.2998047, 0.30029297, 6.09375, -1.2949219, -1.8603516, 0.93115234, -2.3203125, 0.45751953, 0.35180664, 1.0322266, 0.9555664, 0.2878418, 2.4335938, -0.7919922, -0.02696228, 1.4550781, -2.234375, -1.4023438, 0.80859375, -3.6210938, -0.59765625, 0.33447266, -1.1748047, -1.6660156, -0.3383789, 1.3466797, -1.390625, 0.4008789, 3.5644531, -3.0527344, 1.5878906, 1.9882812, 0.17736816, 0.56933594, -1.0664062, -0.82666016, 0.45336914, 0.4284668, -0.8984375, 2.46875, 1.5595703, 1.2587891, -0.3076172, -0.7861328, 0.7192383, -2.109375, -0.28833008, -0.22180176, -0.85839844, -2.8574219, 0.5732422, -1.34375, 0.025024414, 1.3681641, -2.7109375, 0.37670898, -0.90234375, -2.7636719, 0.073791504, -0.1652832, -0.90234375, -0.28295898, 1.5449219, 1.8203125, -0.3876953, -1.1904297, -1.2783203, 0.08477783, -0.03591919, -1.4619141, -1.6699219, 1.3398438, -0.41625977, 0.24707031, -1.1308594, 1.5205078, 0.3227539, -3.5742188, 0.6621094, -3.9667969, 0.1640625, -0.20056152, 0.39160156, -0.13476562, -0.060516357, -1.1455078, -1.3886719, 0.68115234, 0.08666992, 4.21875, -0.9121094, 1.0527344, -1.6181641, -1.5458984, -1.2294922, -1.3457031, -3.1757812, 0.6635742, -0.19702148, -1.8466797, -0.49658203, -2.7226562, -0.12438965, -1.921875, -0.02432251, -0.8588867, -0.077697754, -0.5810547, 0.22937012, -0.6665039, -0.33154297, 0.17712402, -0.3779297, -0.08251953, -2.2285156, -2.3398438, 0.08355713, -0.31176758, 0.91259766, 1.53125, 0.12109375, 0.14892578, -0.006072998, 1.9160156, -0.4309082, -0.044677734, -0.11138916, -2.8261719, 1.7167969, 0.5463867, 0.8774414, 1.7216797, -1.6884766, -1.6259766, -0.15075684, -0.7729492, 2.0605469, 0.97265625, 1.8710938, -0.16479492, -0.29370117, 0.3461914, 0.890625, -1.6601562, -2.1425781, -0.0064353943, 3.8574219, -2.53125, -1.0380859, 2.03125, 1.3037109, -2.4882812, -0.5991211, 0.1628418, 0.625, 0.98535156, 1.5283203, -0.66503906, -1.5878906, 0.39794922, -1.0224609, 2.1074219, 0.71972656, 0.063964844, -1.5488281, -0.23669434, -0.72509766, 0.23168945, 0.1496582, 1.4335938, 1.5341797, 1.4189453, 2.4804688, -2.953125, 0.7675781, 0.63427734, -0.23388672, 1.6259766, 3.3457031, -0.6279297, -0.33032227, -2.453125, 1.6435547, 2.3164062, -0.29125977, 0.23278809, 1.4316406, -0.08081055, -0.17028809, 1.2402344, -0.38842773, 1.3867188, -0.40722656, 2.8125, 0.2064209, -2.7753906, 1.203125, -0.43896484, -0.23388672, -2.0292969, -0.18896484, -1.1044922, -1.6435547, 0.99560547, 0.50146484, -1.7685547, -2.7421875, -2.1015625, -0.3334961, -1.1015625, 4.1523438, -0.076049805, -0.22839355, -0.14343262, -1.0761719, 0.4260254, 2.6777344, -1.5332031, -0.8305664, 1.3828125, 0.3137207, -0.8515625, 0.15563965, 1.0068359, 0.5786133, -0.8071289, 0.8911133, -3.2109375, -0.7553711, 0.4621582, -2.7128906, 1.3017578, 3.1074219, 0.39868164, 1.78125, -0.99658203, 4.359375, -2.1796875, -1.0185547, 2.1738281, -3.0136719, -0.5419922, -3.8476562, -2.7480469, 2.015625, 0.22216797, -0.75683594, 2.5019531, 1.4335938, -0.52001953, 0.44750977, -0.026428223, -2.0546875, -1.9150391, -1.2636719, 0.86572266, -2.484375, -0.6538086, 0.14685059, 0.42456055, -2.0136719, -2.1503906, 0.15258789, 0.5888672, 0.34350586, 0.7167969, -1.6298828, 0.36645508, -2.4589844, -0.26708984, -1.0068359, -0.37475586, 1.0058594, -0.33398438, -0.34057617, -1.4345703, 0.7294922, 3.2734375, 0.14111328, 0.38378906, 3.3378906, 1.0273438, -0.22558594, -0.29541016, 1.2607422, 1.6630859, 0.05545044, -2.4785156, -0.76904297, -1.8164062, -1.1992188, 0.1373291, 1.2607422, 0.030456543, -1.8525391, 2.2128906, 0.7919922, 0.6801758, 2.375, -0.23022461, -1.2832031, 0.6982422, 0.36279297, -1.84375, -1.2871094, -0.29003906, -0.2265625, -1.3105469, 0.9272461, -1.0751953, 0.0008864403, -1.7275391, -0.30029297, -0.82470703, 3.171875, -0.36914062, 1.6220703, 2.2519531, 0.4267578, -2.9511719, 0.8691406, -0.40429688, -0.7167969, 1.0732422, 0.7807617, -0.03540039, 2.96875, 1.5029297, -0.5776367, -3.5703125, 1.6523438, -0.76708984, -1.2128906, -0.7265625, 1.6523438, -1.8808594, -0.9628906, 0.9584961, -0.22973633, 2.0097656, -0.13439941, 1.1279297, 1.9189453, 0.82666016, -2.1074219, -0.9692383, -0.90771484, 1.2236328, 0.61279297, 0.51953125, -0.6274414, -0.80322266, 1.8603516, 0.8208008, 2.9160156, 0.4248047, 1.5429688, 1.3457031, 0.49169922, -0.89941406, -1.1455078, 0.53808594, 0.9946289, 0.07775879, 4.1132812, 1.2216797, -0.2746582, 1.9550781, -0.6621094, -2.0742188, -0.3137207, 0.2541504, -0.6689453, 2.4296875, 0.42089844, -2.9785156, 0.09466553, 2.9179688, -1.1474609, 1.4375, -0.94384766, -1.6298828, -0.29125977, -3.8378906, 0.02494812, -0.26782227, -0.3269043, 0.6152344, -1.5458984, 0.6196289, -0.984375, 2.28125, 1.8261719, -0.61376953, 0.40356445, 1.6064453, -1.2490234, 1.4384766, -0.1529541, -0.4921875, -2.6875, 1.4423828, 0.6582031, 1.1396484, 0.68652344, 0.4116211, -0.37451172, -0.7114258, -1.4746094, -2.296875, 2.3554688, -2.5292969, -0.81933594, 1.5117188, 0.026748657, 1.3867188, -0.17480469, -2.0917969, -2.8574219, 2.3867188, 0.50341797, 0.31640625, -1.2119141, 1.2041016, -1.9130859, -5.6523438, -2.1894531, 0.2849121, -0.23779297, -1.0634766, 0.029083252, -0.51171875, -1.3271484, 0.5673828, 0.70410156, -3.1230469, 1.6269531, 1.5029297, 1.9648438, -0.09527588, -1.1923828, 0.20336914, 1.4560547, 1.0546875, -0.083496094, -0.021972656, -1.6611328, -1.4765625, 2.0410156, -2.7695312, 1.2421875, -0.77685547, -0.86328125, -0.24121094, 1.3476562, 0.008934021, -1.0322266, 1.2734375, -1.4287109, -0.41845703, 0.52685547, -1.0644531, -0.071777344, 0.9897461, -1.8857422, 0.9267578, -1.046875, 0.10229492, 0.61328125, 1.4101562, 0.16821289, 0.5126953, -0.6455078, -0.8955078, 1.1386719, -0.17626953, 0.81396484, 2.3125, -0.77441406, -1.0546875, -3.2402344, -2.5898438, 0.17285156, -0.27392578, -0.035736084, -1.4550781, 1.5107422, 0.19152832, -0.20593262, -0.45239258, -0.4724121, 0.026535034, -0.045898438, 1.3525391, -1.2578125, 4.1953125, 0.7729492, -0.114990234, -1.6523438, -3.2988281, 0.31518555, 0.23425293, 1.3271484, -1.6962891, 1.40625, -0.3371582, 1.0830078, 1.3857422, 1.7519531, 2.8945312, 1.2910156, -1.5361328, 0.99902344, 2.5859375, 1.2402344, 0.07556152, 0.48632812, -0.0020999908, -0.7895508, 1.8642578, 0.58154297, -0.3864746, 2.4335938, -0.6977539, 0.8276367, -0.12976074, -2.4335938, 2.4824219, -1.3007812, -0.2824707, -2.6699219, -1.0996094, -0.7573242, 2.5117188, 3.171875, -0.29248047, 0.609375, 1.90625, -1.3066406, 1.3066406, 1.4248047, 1.1982422, -0.24804688, 0.19006348, 1.7011719, 0.6088867, 1.7041016, -1.8535156, 1.7939453, 0.03265381, 0.43310547, 0.68066406, 3.2558594, 1.5722656, 3.0820312, 0.7685547, 0.7397461, 2.0273438, 1.1357422, 3.0371094, -0.050445557, 1.6367188, 2.7988281, 0.4555664, 0.68652344, 0.8911133, 0.70166016, -1.2871094, -1.9511719, 0.84814453, -0.65478516, 0.18408203, -0.50146484, -1.4072266, 0.63183594, -3.8808594, 1.5664062, -0.19360352, 0.74072266, -0.7060547, 0.12646484, -1.5888672, -1.0302734, 0.7529297, 0.10900879, -0.8310547, -1.3886719, -1.1523438, -1.4775391, 0.08392334, 0.30908203, -2.7265625, 0.74072266, -2.6601562, -2.5332031, -0.7109375, 0.71484375, 0.19274902, 1.0888672, 0.41967773, 1.6728516, 1.8730469, -1.3457031, 0.75146484, -1.6220703, 1.3164062, -0.41210938, 3.0976562, 0.33618164, 0.045837402, 1.8515625, -0.34985352, -3.8222656, -3.1230469, 3.1132812, 0.50097656, 0.9165039, 1.2099609, -1.9892578, 2.2578125, 1.484375, 0.83496094, -2.4667969, 1.5458984, 0.4206543, -1.3818359, -1.2783203, 1.3935547, 0.3486328, 2.6269531, 0.48413086, -1.2001953, 1.6279297, -0.31103516, 1.4472656, 0.48950195, 0.13061523, 0.89404297, 1.1464844, -1.9599609, 2.0449219, 2.4316406, -1.2216797, -0.65771484, 3.4316406, 2.0234375, 0.46704102, -0.6044922, -1.8525391, 1.4023438, -0.86816406, -1.2587891, 0.1550293, -1.7158203, -1.6630859, -0.6308594, -1.6259766, -1.4511719, -2.96875, 0.22387695, 2.7109375, -1.9589844, 1.7304688, 1.7080078, -1.2695312, -0.05709839, 1.1728516, -0.3388672, -1.6816406, 0.25, 2.1015625, -0.78564453, -1.7148438, 0.41992188, 0.96728516, 2.1289062, -1.4970703, 0.8671875, -1.4736328, -0.7993164, -0.3996582, 1.1445312, -0.11010742, -0.54052734, 0.34448242, -0.60009766, -1.6669922, 2.9355469, -1.4257812, -0.4230957, -0.123046875, -2.7695312, -1.0195312, -2.015625, -0.18200684, 0.43945312, 2.0644531, 0.23913574, 0.54345703, -0.71191406, -3.8222656, -1.7207031, -0.68359375, 1.6611328, 1.1015625, -0.56152344, 1.2041016, 1.6953125, 2.5527344, -2.7363281, 0.12695312, -0.5493164, 0.31079102, -0.56640625, -0.55810547, 1.3105469, -0.13342285, 0.83691406, -0.34765625, 2.8066406, 0.47558594, -0.8984375, 1.6845703, 0.43481445, 0.58447266, -1.8154297, -0.375, -2.1933594, 0.3701172, -1.3525391, -1.5087891, 2.7597656, 1.9570312, -0.96728516, -2.8496094, -1.1269531]}, "B082MTXG5Z": {"id": "B082MTXG5Z", "original": "Brand: Flame King\nName: Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White\nDescription: \nFeatures: Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories\n", "embedding": [-2.4453125, 1.4355469, 1.4335938, 0.7270508, 0.4177246, -2.7871094, -0.3317871, -0.5698242, 0.083862305, -0.7602539, 3.0605469, -0.13549805, -0.5004883, -2.875, 2.3261719, 0.59765625, -0.86816406, 1.9980469, 1.4052734, -0.07525635, 1.0322266, 0.03918457, -0.27905273, -1.2333984, 0.98779297, -0.6040039, 2.3671875, -2.9511719, 0.16918945, 0.39379883, 0.52978516, -0.31469727, -0.05871582, 1.5234375, 0.34985352, -1.8046875, -0.10412598, -2.046875, -6.4726562, -0.29516602, -3.3222656, -0.7192383, 1.828125, -0.59375, -1.3105469, -0.21435547, 0.42163086, -1.7314453, 0.47973633, -0.88720703, 0.32250977, 2.40625, 0.20117188, 1.1005859, 0.25952148, -0.11230469, 1.2880859, -2.8066406, -0.18481445, 0.53125, 1.9755859, 0.42822266, -2.8261719, 1.7060547, 0.16674805, 1.4550781, -1.2539062, -0.054138184, 0.31811523, 1.7275391, 1.9677734, 1.5400391, 2.3671875, -1.4824219, -0.73828125, 0.9785156, -2.7148438, 0.6748047, 0.8154297, 0.16711426, -0.26342773, 3.3671875, 0.6376953, -1.7861328, -1.0341797, -0.63183594, 0.98876953, 2.0605469, 0.33325195, 0.83496094, -2.6152344, 1.7333984, -0.036315918, -4.3164062, 2.6152344, 0.94921875, 2.6074219, 2.1582031, 2.78125, 0.8413086, -0.056640625, 0.1472168, -0.089782715, 1.7675781, -1.4501953, -1.8574219, -0.14855957, 0.56884766, -2.6738281, 1.3554688, -1.0390625, 0.0038776398, 2.0390625, -0.12854004, -0.8286133, -0.45410156, 0.1071167, 1.5830078, 2.7050781, -0.040222168, 4.46875, -2.8671875, 3.21875, -0.69677734, 1.4257812, 1.4980469, -0.94091797, 1.6494141, 3.4511719, -0.6245117, 2.0957031, -0.9848633, 3.5957031, -0.8847656, 0.17700195, -1.6845703, 0.29003906, -1.6621094, -1.2060547, -2.4082031, -3.9902344, 0.8154297, 0.68359375, -0.43115234, -3.109375, -0.74853516, -0.062683105, -0.6142578, -0.8833008, -2.0839844, 1.4355469, -2.2226562, 0.24072266, -0.16088867, 2.0839844, 1.6630859, -2.0703125, -1.6552734, 1.3046875, 1.6630859, 2.2207031, 1.1650391, -0.14611816, 1.8183594, -0.76904297, -2.5136719, 1.1230469, -0.16723633, -0.68115234, 2.28125, 0.5786133, -1.8730469, -0.25146484, 2.1855469, -0.25048828, -0.53222656, 0.9580078, 1.9902344, 0.17504883, -0.20263672, -2.7519531, -0.012275696, -0.9926758, -1.1777344, 2.3261719, 0.61572266, -1.2753906, -0.7871094, 1.2548828, -0.91308594, -1.4189453, 2.1367188, -1.9628906, 0.6479492, 0.74365234, -1.7734375, -2.8886719, -3.5078125, 1.3798828, 1.578125, 0.14892578, -1.6435547, 1.3984375, -0.5859375, -1.8535156, -1.0380859, 1.8466797, -1.9296875, 1.0185547, 0.13171387, -0.51660156, -0.26049805, 1.3173828, -2.9648438, -0.5864258, -1.9511719, -0.07336426, 1.1035156, 1.4833984, 1.0751953, 1.3925781, 0.3557129, 1.1669922, 1.0849609, 1.5224609, 1.0449219, 0.7236328, 2.2578125, -3.9667969, -1.1396484, 1.0087891, 2.2207031, -0.34814453, 1.6103516, -1.9091797, 0.6767578, 0.8041992, -0.8676758, 1.0986328, -0.09490967, 0.52246094, 1.1289062, -1.3935547, -1.3984375, -2.140625, 0.23742676, -0.083618164, 0.27905273, 1.1289062, -0.6586914, 0.64501953, -0.16748047, -1.3730469, -1.0166016, -1.2109375, 0.13952637, 0.75634766, -0.017868042, 0.3935547, -2.1757812, 1.3759766, -0.80615234, -0.60302734, 0.6171875, -0.21374512, 1.2128906, 2.5585938, -0.6191406, -2.2324219, 1.6708984, 0.12536621, 1.8623047, 1.3359375, -0.88134766, 0.30322266, 3.2324219, -1.5683594, 3.1679688, -1.2783203, 1.7958984, 0.81591797, -1.1933594, 0.85058594, -2.796875, 0.54589844, 0.1239624, 1.8847656, -0.5917969, -2.0566406, 0.92089844, 4.859375, -1.0185547, -1.0800781, 0.9458008, 1.5537109, 2.7949219, 3.4804688, -1.7324219, 0.86279297, -1.3447266, 0.13964844, 0.37060547, -1.1806641, -0.10845947, 0.50341797, -1.6220703, 0.0725708, -0.14758301, 1.1005859, -0.72753906, -0.4152832, 0.56152344, -1.6416016, 0.69384766, -0.12524414, -1.0927734, 3.6640625, -3.4140625, 1.6953125, 1.6904297, 1.3916016, 1.5400391, 1.8662109, -1.6591797, 0.72216797, 1.7285156, -0.42871094, 2.6660156, -0.8769531, 0.85546875, 0.36621094, -2.1015625, 1.5058594, -0.69921875, -0.88378906, 1.9755859, -1.0166016, -2.7167969, 0.55908203, -2.2832031, 1.171875, 0.8046875, -1.8222656, 2.0761719, 1.1582031, -0.65966797, 0.33862305, 0.6699219, -0.12902832, -2.7832031, 0.68310547, 3.1953125, -1.1572266, -2.1796875, 0.7607422, 0.5126953, 0.5810547, 2.7539062, 0.44311523, -0.6298828, -0.12536621, -1.4951172, -0.9379883, -0.7392578, -1.4775391, -2.53125, 2.6757812, -2.5136719, 1.7822266, -1.4521484, -0.38867188, -2.3769531, -1.9277344, 0.04220581, -2.2089844, -0.53808594, -1.9208984, 1.0292969, 0.26586914, 2.0488281, -0.4543457, -1.2548828, 0.74560547, -2.0390625, -0.8408203, -0.9628906, -0.12854004, -1.9980469, -0.81933594, -4.6796875, 0.5566406, -0.9970703, -0.9472656, -0.4194336, 1.5146484, -1.9433594, -0.24230957, 0.96533203, 0.35205078, -0.32666016, 0.2006836, -1.1396484, -3.3242188, -0.42773438, 1.2939453, 0.6513672, -1.2314453, 0.093322754, 0.24316406, -0.22668457, -0.41625977, 0.6743164, -1.4560547, 0.69873047, 1.2080078, -3.34375, 1.3544922, 0.7402344, 0.5336914, 2.0332031, -2.6894531, -0.6254883, -1.75, -0.90966797, 3.4667969, 1.3496094, 0.9824219, 0.6166992, -0.9038086, -0.081970215, -1.2539062, -0.39013672, 0.71533203, 0.15356445, 2.3496094, -1.0390625, -0.35986328, 0.4489746, 3.03125, -3.9746094, -0.33569336, 1.1796875, -0.6923828, 1.2763672, 0.5732422, -0.5493164, -0.7397461, 0.42260742, 1.3867188, 2.9492188, 0.090026855, 0.25170898, -0.9135742, 0.43896484, -0.6328125, 0.22033691, 3.0039062, -0.28173828, 0.63134766, 1.9550781, 0.14904785, -0.58935547, -0.97998047, 0.07128906, 0.97558594, 0.45483398, 2.1171875, -0.27905273, 1.3125, -1.2294922, 0.87109375, -0.23962402, -1.5498047, 1.2314453, 0.8911133, 1.6308594, -0.0423584, -0.70214844, -0.13549805, -0.9584961, -1.5400391, 3.7109375, -1.5849609, 1.9824219, 1.390625, -0.8334961, 0.31884766, -2.546875, 2.1328125, -0.9111328, 0.4345703, -0.17651367, 0.9272461, -1.5664062, -2.90625, -0.38208008, -1.3466797, -1.3466797, 3.0664062, -0.5073242, -2.6992188, 0.119262695, -0.99902344, 0.89990234, 1.171875, -2.8886719, 1.7724609, -0.5180664, 0.112854004, -0.35253906, -0.6816406, 1.7900391, 0.7470703, -2.6503906, 1.6240234, -2.5410156, 2.390625, 0.7651367, 0.29638672, -0.41674805, 0.21276855, -2.0625, 3.2050781, -0.99560547, 3.3085938, -0.41137695, 1.5380859, 2.1113281, -0.7397461, 0.30126953, -1.8759766, -2.5058594, -0.019348145, -2.859375, -1.2626953, 1.9570312, -0.35107422, -0.4987793, -0.6977539, 1.1123047, -1.3212891, -1.2871094, -0.7470703, 2.7070312, -1.9775391, -0.27197266, 0.87597656, 2.765625, -3.1640625, -2.75, 1.1640625, -1.8662109, -0.6743164, -0.16638184, -1.5322266, 0.7211914, 0.04840088, -0.6635742, -0.8852539, -0.22802734, 1.1513672, -0.98291016, -0.7817383, -2.4023438, 2.90625, 2.2304688, 0.86083984, 1.7910156, 1.515625, 1.5048828, -0.18139648, -0.77685547, -0.8095703, 1.5117188, 1.0839844, -3.6679688, -1.6933594, -1.1533203, 0.30444336, -2.3183594, 0.56591797, -0.26904297, -0.11230469, 2.6289062, 0.19042969, 1.6552734, 0.52197266, 0.55859375, -0.4506836, 1.2988281, 1.171875, -0.053863525, 0.06945801, -1.1445312, -0.16625977, -0.91552734, 2.5449219, -1.9736328, -0.17382812, -2.703125, 0.99365234, -4.6445312, 0.47631836, 2.5957031, 2.546875, -0.7832031, 0.058380127, -1.5039062, 0.52441406, 0.04309082, 0.7607422, -0.13720703, 0.48583984, -1.5429688, 1.3457031, 1.4208984, 0.12792969, 1.7666016, 1.6464844, -1.4296875, -1.5097656, 0.4736328, 0.38989258, -1.1435547, 0.15344238, -0.99609375, 0.111450195, 3.5742188, -0.9746094, 1.1533203, 1.1464844, 1.5791016, 0.37548828, 2.0390625, 0.4506836, -1.2841797, 2.9902344, 0.07208252, 1.2763672, 1.5810547, 1.0380859, 0.8959961, 2.0273438, -2.6777344, -0.2902832, 0.09954834, 1.7421875, -0.8886719, 0.31103516, 1.1630859, 0.46069336, -0.8823242, 1.0009766, 0.8857422, 0.31689453, 2.0527344, 1.4619141, -2.4355469, -1.7490234, -1.3828125, -0.5029297, 2.9433594, -0.20251465, -2.8398438, -0.5292969, 2.1582031, -1.2216797, 0.22485352, 1.0800781, -0.41357422, -1.5244141, -2.4335938, -2.1699219, -1.5019531, 1.4394531, -0.09082031, 1.6132812, 0.2163086, -0.5600586, 1.0654297, 0.9379883, 0.85009766, 0.5761719, -0.87841797, 0.0016288757, 0.19628906, -1.3339844, 0.62597656, -1.5566406, 0.16833496, -1.0947266, -0.5644531, 0.21179199, -0.47387695, 2.6367188, -1.3574219, -0.018188477, -1.8818359, 1.3349609, -0.20056152, -0.4189453, 3.4414062, -1.7861328, 2.0859375, -0.22375488, -0.95996094, -1.8125, 1.0996094, 1.8564453, -0.53271484, -0.1628418, 0.8769531, -3.3007812, -4.4414062, -3.0585938, 0.47802734, -0.13232422, -0.052520752, -1.2783203, -2.0820312, 0.98291016, -0.06402588, -0.40039062, -2.5996094, 1.2216797, 0.11755371, -0.23486328, -0.1586914, 1.5371094, 0.44873047, 0.57421875, 1.5820312, -1.3984375, -1.1865234, -3.0195312, -2.5644531, 1.3916016, -0.4248047, 0.15625, 0.46923828, -1.5400391, 1.1259766, 1.875, -0.35791016, -4.2578125, 2.2480469, -2.2011719, -0.4375, 2.7753906, -2.5019531, -1.0302734, 1.5917969, -0.5283203, 0.99902344, 2.125, 1.5976562, -4, -1.8095703, -1.1933594, 0.6142578, -0.37841797, 1.6416016, 1.8398438, 1.0693359, 0.1817627, 2.8632812, -0.71240234, -2.1386719, -2.0429688, -0.72753906, -0.109313965, -1.3779297, -0.6669922, -0.7080078, 0.5546875, 0.6123047, -1.3886719, -0.2434082, -1.1044922, -0.9379883, -1.3164062, 2.6933594, -3.3359375, 1.6669922, 1.4824219, -2.3574219, -2.7460938, -0.5541992, 1.6035156, -0.1842041, -2.0097656, 0.22924805, 0.6245117, 0.6230469, 1.3974609, 0.25097656, 1.1474609, -0.6591797, 1.8701172, -1.5126953, -0.031219482, 3.3378906, -0.78027344, 1.2587891, 1.0341797, -2.0273438, 0.62939453, 2.40625, 2.8144531, -1.3310547, 0.7138672, 0.120910645, -1.328125, -0.14562988, -0.7807617, -0.2915039, -3.8847656, -1.0458984, 0.5175781, -0.44311523, -4.3984375, 0.8354492, -0.09057617, -0.84228516, 0.7402344, -0.79248047, -0.06842041, -0.81689453, 2.4863281, 0.87597656, -2.3574219, 0.14416504, 1.1826172, 0.55029297, 1.3623047, -1.8681641, 1.1513672, 1.7626953, 1.546875, -1.1699219, 0.22058105, -1.3408203, 1.7597656, 1.6494141, 2.0273438, 2.9472656, -1.7558594, 1.1201172, -0.9296875, 2.2949219, 4.0507812, -0.2208252, 0.5288086, -0.19274902, 1.0224609, 0.6274414, -1.0439453, 0.09838867, -0.8388672, 0.11279297, -1.3710938, 0.76416016, 1.3808594, -0.7080078, 0.91308594, -0.5966797, -0.296875, -0.6035156, 0.15454102, -0.49438477, -2.0371094, 0.14672852, 1.0654297, 1.3994141, -0.09075928, -0.5493164, 0.07635498, 0.64501953, 1.8027344, 0.19628906, -0.7817383, -1.3349609, -1.3505859, 1.7070312, 2.5351562, 1.1230469, 0.28295898, -0.26611328, -0.27490234, -1.1005859, 0.5961914, -1.5605469, -2.5859375, 1.1542969, 0.39892578, 1.4169922, 2.3066406, -0.81689453, 4.0820312, 1.1308594, 0.69873047, -3.59375, 2.421875, -1.7597656, -0.53125, 0.99853516, -2.5449219, 0.31445312, -1.9541016, 0.65527344, -4.3085938, 0.38916016, 0.7216797, -3.2597656, 2.2929688, 0.6123047, -0.71972656, 3.5839844, 1.546875, -0.34277344, -0.140625, -0.41430664, 1.5439453, 0.10467529, 0.026901245, 0.9355469, 1.3349609, -1.2998047, 3.6816406, 0.83251953, -0.6904297, -2.0605469, 1.6435547, 0.023590088, 0.36279297, 1.3759766, -0.8901367, 2.2519531, 0.015098572, -0.5317383, 0.48339844, -0.99902344, 0.67578125, -2.2363281, -1.609375, 1.6259766, -0.79052734, -0.36083984, 1.5419922, -1.2773438, -1.8320312, 3.8691406, -0.15332031, 0.07019043, -0.8466797, -1.9384766, -1.0615234, 1.6728516, 1.3867188, -2.0449219, -0.17980957, -0.082458496, 3.1640625, -0.109436035, -1.4316406, -1.7578125, -1.0537109, -0.69189453, -2.2929688, 0.6489258, -0.38305664, -1.3359375, 2.3144531, -0.86279297, -0.12768555, 1.0097656, -0.14611816, 2.0859375, -1.3417969, 0.5, -1.0039062, 0.68359375, -0.48120117, -1.0654297, 0.7919922, 0.06756592, 1.1035156, -0.57177734, -3.9980469, -1.8945312, -2.1523438, 0.61572266, -0.7680664, -1.0664062, 1.1542969, 1.9423828, 1.0253906, -1.3710938, 0.39770508, -0.4248047, 1.1083984, 1.1962891, -0.12670898, 2.3046875, -0.68408203, -0.28759766, -0.15966797, 1.7148438, 1.7167969, -0.7910156, -0.24047852, 1.5849609, -1.0771484, 0.3466797, -1.140625, 0.28320312, -1.2822266, 0.6376953, 1.0302734, 3.2636719, 1.1748047, -1.2207031, -2.0683594, -1.4345703]}, "B073SMX1TC": {"id": "B073SMX1TC", "original": "Brand: Outland Living\nName: Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21\u201d x W 21\u201d x H 9.5\u201d with total output of 58,000 BTU/HR.\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.\n", "embedding": [-1.4941406, 0.9511719, 0.8935547, -0.25927734, 1.0273438, 0.6748047, 1.8662109, -1.5810547, -2.2480469, 2, 0.42407227, -0.33422852, -0.82666016, -3.9121094, -0.66552734, -0.49023438, 0.03463745, 0.7246094, 0.56152344, -0.43945312, 3.0273438, -0.41137695, 1.296875, -1.15625, 1.9648438, -0.68603516, 3.1601562, -3.53125, -0.37182617, 0.48413086, 1.1083984, 0.96533203, 0.15539551, 2.3730469, -2.6757812, -0.6166992, -2.1308594, 1.0302734, -2.4882812, 0.029907227, -2.1132812, -2.4160156, 2.6367188, 0.5571289, -2.3085938, -0.703125, 2.0878906, -0.26245117, 0.54589844, 0.2849121, 0.88623047, -0.2548828, -0.0947876, 1.0566406, -3.0820312, 2.1953125, -0.4260254, -1.53125, 2.9785156, 1.4208984, 0.36987305, 0.5253906, -1.4091797, 2.5019531, -2.0957031, 0.27685547, 0.41015625, -0.4416504, 0.8652344, 0.7729492, 2.5058594, 0.30541992, -0.17016602, -0.30810547, -0.32421875, 0.074645996, -3.4648438, 1.0908203, 2.8613281, 0.3959961, -0.73046875, 2.5722656, 0.1328125, 0.40307617, -0.45874023, -0.080566406, -3.1796875, -0.2685547, 0.7631836, 1.8388672, -0.08312988, 2.3222656, -1.2392578, -4.1875, 2.0332031, -1.7470703, 0.29174805, 1.1962891, -1.1123047, 0.9765625, 1.375, 2.0664062, -0.54052734, -0.94091797, -2.9726562, -0.2668457, 1.2148438, 1.2832031, -0.2565918, 2.3984375, -2.2402344, -0.14538574, 2.5957031, -0.0058631897, -0.08093262, 0.9003906, -1.1142578, -0.20214844, 5.03125, -0.3803711, 4.8398438, 0.2841797, 0.6821289, -0.19848633, 1.3769531, 0.18518066, -1.2597656, 0.12475586, 2.0332031, -0.02281189, -0.31713867, -0.9243164, 1.640625, 0.32250977, -2.9414062, -1.5771484, -1.2832031, -0.7285156, -3.0097656, -1.1005859, -0.96777344, 0.44482422, 2.5292969, -0.1928711, -4.0859375, -1.4453125, -1.0009766, 1.6025391, -0.70458984, -4.203125, 0.7104492, -2.0214844, -0.45581055, -2.6484375, 0.97021484, -0.32763672, 0.35986328, -3.1425781, 2.8632812, 1.5087891, 0.090026855, -1.1591797, -1.1210938, 0.97558594, -1.4082031, -2.1074219, 1.1044922, 0.02986145, 0.47680664, 1.8564453, 0.20056152, -1.7568359, 0.35913086, 0.8486328, 0.67822266, -1.2255859, -0.15405273, 0.41870117, 2.3027344, 0.75439453, -3.1835938, 0.06463623, 0.04736328, 1.6113281, 1.3496094, -1.359375, -1.0996094, -1.0126953, -0.83251953, -0.47436523, -1.0136719, 1.5390625, -1.9863281, -1.7167969, -1.5527344, -2.7109375, -1.8896484, -3.109375, 2.25, 0.097839355, -0.6333008, 0.6484375, -0.5957031, 0.5029297, -2.5019531, -0.81396484, -0.85009766, 0.7421875, 2.1054688, 2.8496094, 0.24072266, -0.5229492, 1.3808594, 0.31298828, -0.5625, -1.3173828, 1.8037109, 0.7866211, 1.2646484, 2.25, 0.93310547, 0.82470703, 2.9746094, 2.5410156, -0.0009646416, 0.8535156, -0.20898438, -1.5292969, -1.3710938, -1.2402344, 2.421875, 0.004508972, -0.3852539, 1.5078125, -0.8535156, 2.9765625, 1.5644531, -1.5507812, 2.1132812, -0.8642578, -0.92041016, -1.6191406, 0.23718262, 1.1337891, -0.032196045, 0.14733887, -0.20629883, 1.0117188, 3.6054688, 0.64501953, -1.5263672, -1.1845703, 0.9794922, 0.9223633, -0.32788086, -0.9472656, -1.53125, 0.6381836, 0.14807129, -1.1884766, 1.2666016, 1.4414062, -0.64697266, 0.7285156, -0.58984375, -0.42285156, 1.9101562, 1.0722656, -3.7597656, 0.36938477, -0.9951172, -0.12731934, 2.6601562, 1.5488281, 1.1943359, -1.4492188, -0.38720703, 1.4960938, 0.7270508, 3.2773438, 0.9951172, 0.265625, 1.7080078, -2.0605469, -1.6337891, -0.45117188, 1.0439453, 0.32641602, -0.47631836, 1.8066406, 5.5820312, -0.007331848, -2.4589844, 0.80078125, -1.3769531, 1.2861328, 1.4140625, -0.24768066, 2.296875, -0.21655273, 1.9814453, 1.0703125, 0.22497559, 1.4970703, -1.0351562, 0.49145508, 0.5019531, -3.3925781, 0.6411133, -0.05126953, -0.7128906, -0.36791992, -1.5917969, 0.79833984, -0.6113281, -1.1181641, 2.328125, -2.7519531, 1.2294922, 3.0546875, -1.1289062, -0.2705078, -1.7617188, -1.5917969, 0.08441162, 2.25, -1.2636719, 0.49926758, 1.3613281, -1.8769531, -0.69677734, -2.1640625, 1.4667969, -2.2167969, -0.16040039, -1.765625, 0.34033203, -0.053710938, 0.49389648, -1.8476562, -0.14160156, 0.73046875, -0.91796875, 0.11883545, -0.90966797, -1.0761719, 0.16186523, 0.9897461, -2.2304688, 2.1132812, 0.91259766, 2.9589844, 0.20605469, -2.6601562, -0.5986328, 0.30078125, 1.4101562, 1.2236328, -1.4726562, -0.45092773, -1.1083984, 1.3847656, 0.40698242, -0.9848633, 1.4345703, -3.2675781, 0.39794922, -4.4453125, 1.0107422, -0.39868164, 0.8388672, -0.4255371, -0.019577026, -0.4128418, -1.3896484, 1.78125, -1.9033203, 3.2265625, 0.34643555, 0.42333984, -1.96875, -1.9814453, -0.8178711, -0.23840332, -3.4394531, -0.1161499, -0.5283203, -1.6533203, -2.7109375, -2.2519531, 0.09790039, -1.1132812, -0.53027344, -0.94677734, 0.34179688, -2.4042969, 0.015686035, -0.9399414, 0.4963379, -0.55029297, -0.18127441, -0.8701172, 2.046875, -1.5087891, -0.4206543, -0.8696289, -1.1367188, 0.90625, 1.7041016, -0.79296875, 0.6044922, -0.044036865, -0.3034668, 0.45239258, -0.38671875, -3.34375, 0.6230469, 1.9082031, 0.13952637, 1.2519531, -2.2617188, -0.9091797, -1.8359375, 0.6425781, 3.9628906, 0.9223633, 0.078186035, -1.2148438, -0.32788086, 1.4833984, 0.23364258, -1.5224609, -0.03652954, -1.3115234, 3.3398438, -4.4023438, -0.4411621, 1.3554688, 3.0117188, -3.7578125, -0.5053711, 0.39013672, -0.6303711, 2.390625, -0.32958984, 0.24963379, 0.3203125, 0.4650879, -0.64453125, 2.6445312, 1.4189453, 0.46826172, -0.6816406, -0.5551758, 2.078125, 0.66845703, 1.3701172, 0.95410156, 0.71777344, 1.9892578, 1.203125, -1.4960938, 0.95703125, -0.11779785, 0.16821289, 0.36743164, 1.3457031, -2.1191406, -0.9345703, -1.1552734, 0.8964844, 0.9291992, -0.8105469, -0.34375, 1.6669922, 0.90283203, -0.65625, -0.49243164, 1.3134766, -0.62597656, -0.8276367, 1.1416016, -0.07946777, -0.19482422, 0.63671875, -1.1640625, 0.31152344, -1.2695312, 2.3613281, -0.36083984, -1.6230469, -0.96533203, 2.2539062, 0.25268555, -2.6582031, -0.79003906, -2.8808594, -1.4501953, 4.3710938, 1.3476562, -1.8203125, -2.0078125, -1.3203125, 1.3701172, 2.1875, -0.43188477, -0.6142578, 0.35864258, 1.0634766, -0.7104492, 1.2460938, 2.0722656, 1.4501953, -2.0800781, 0.95410156, -1.1767578, 0.52001953, 1.7490234, -1.4765625, 1.328125, 3.3867188, -0.37036133, 0.88720703, -0.8041992, 4.0117188, -2.1621094, -0.30249023, 4.1679688, -0.091430664, -0.7675781, -2.4511719, -3.2265625, 0.67285156, -3.3242188, -0.6254883, 0.9301758, -0.0026073456, -0.85498047, 0.4025879, 0.17541504, -3.6152344, -3.4082031, -2.7949219, 1.7646484, -3.4765625, -1.0556641, -0.7685547, -0.26391602, -2.8789062, -0.9399414, -0.006980896, 2.1601562, 0.86376953, -0.72998047, -1.7304688, 1.2773438, -2.0195312, 0.4572754, 0.5136719, 0.010253906, 0.68652344, -0.8935547, 0.18383789, -1.171875, 0.12854004, 1.1542969, -1.4345703, 3.5488281, 2.890625, 0.83740234, -1.0507812, -0.11627197, 0.3059082, 4.2695312, -0.8647461, -2.0371094, -2.6679688, -0.79296875, -0.9404297, -0.3083496, -0.19885254, 0.6459961, -2.3164062, 2.2324219, 0.6035156, 1.0683594, 1.8974609, -0.54248047, -1.0175781, 0.103637695, -0.74853516, -1.8496094, -2.0097656, -1.8730469, 0.10107422, -2.171875, 0.30810547, -1.4316406, 0.29418945, -0.1463623, -0.11352539, -0.7558594, 1.8994141, 3.1035156, 1.9580078, 3.4316406, 1.0019531, -0.8676758, 1.5546875, -1.9541016, 0.6147461, 1.0117188, -1.5039062, -0.28222656, 2.5410156, -0.2553711, -0.50634766, -1.6630859, -0.8232422, -0.8354492, -1.3535156, -0.7651367, -1.0664062, -1.9755859, -0.95410156, -0.06890869, -0.52490234, 1.3662109, -1.84375, 0.43066406, -0.74560547, 1.4355469, -2.1328125, 0.3515625, -0.9238281, 1.6386719, -0.007850647, 2.4628906, 1.578125, -0.32006836, 2.4609375, 0.80615234, 2.7695312, -2.9179688, -0.51660156, -0.9379883, -1.1875, -1.4609375, 0.064453125, 0.97021484, 1.4501953, 0.17834473, 2.0683594, 0.5649414, -1.0878906, 1.6464844, 0.16040039, -2.5214844, -0.75927734, -0.026123047, -0.9604492, 1.2763672, 0.082214355, -3.6347656, -0.69677734, 1.7021484, 0.24938965, 1.640625, 0.13745117, -1.8427734, -1.2158203, -1.4228516, -1.6591797, -0.03100586, -1.6582031, 0.68603516, -1.6171875, -0.31030273, -1.8115234, 2.3183594, 0.61083984, 0.2734375, -0.9140625, 1.9414062, 0.043121338, -0.7709961, -0.75439453, 0.30249023, -1.6943359, -0.3095703, 0.07611084, 1.5673828, 1.5751953, -0.546875, 1.4755859, -1.4443359, -1.0087891, -2.2363281, 3.6757812, -1.9511719, -0.3623047, 1.6865234, 2.0488281, 1.3330078, -1.2265625, -0.52783203, -1.7919922, 2.796875, 0.43530273, 1.0527344, -1.2109375, -0.6245117, -1.1259766, -4.3203125, -1.0214844, -0.80810547, -1.7636719, 1.3818359, 0.17370605, -0.48046875, 1.0605469, -0.43896484, 0.08703613, 0.3408203, -0.2607422, -1.3857422, 1.2392578, -1.8964844, 0.5107422, 0.4975586, 1.4179688, 1.0595703, -0.36914062, -1.3515625, -0.7182617, -1.4765625, 2.453125, -1.1103516, 1.1035156, 0.6459961, -0.07244873, 1.59375, 2.5859375, 1.3183594, -0.051574707, 1.0136719, -1.7363281, -0.09387207, 1.1337891, -1.6416016, 1.5986328, 0.86572266, -0.6386719, 0.9892578, -0.52001953, 0.017318726, -1.4121094, 0.5180664, 0.2998047, 0.16186523, -0.57128906, -0.56591797, 1.7763672, 0.50390625, 0.22070312, 0.62109375, -0.4267578, -0.671875, -1.9638672, -2.3398438, -0.8486328, -2.6777344, -0.8149414, -0.7685547, 2.1191406, 1.5771484, -0.22460938, 1.7646484, 1.8164062, 1.1035156, -1.4960938, 1.3222656, -0.94091797, 2.8730469, 1.2226562, -2.3496094, -3.0117188, -3.0234375, 0.47436523, 2.015625, 0.6142578, -1.7714844, 0.2980957, -3.0351562, 1.8759766, 0.09857178, 2.9277344, 2.4257812, 1.2089844, -0.14086914, -0.04864502, 0.80126953, -0.22924805, 2.4179688, -0.024490356, 1.9121094, 0.21496582, 1.5087891, 2.2402344, -1.0947266, 1.5732422, -1.0058594, 1.09375, -2.2128906, -1.8349609, 2.2382812, -2.6679688, -0.76904297, -0.92089844, 0.5205078, -2.3496094, 3.1074219, 1.7421875, -0.29589844, -0.49145508, 0.89990234, -0.7026367, 1.4960938, 1.6357422, 1.4619141, 0.14477539, -0.16064453, 0.091674805, 0.91748047, 1.3876953, -0.70703125, 0.8017578, 0.70996094, -0.025177002, -0.31835938, 4.1835938, 1.7851562, 2.3613281, 1.765625, 2.0136719, 2.6953125, 0.016647339, 3.0488281, -0.5576172, 1.8808594, 1.8505859, -1.9257812, -1.3759766, 1.7636719, 2.828125, -0.54052734, 0.4794922, 2.0585938, 0.60009766, -0.5625, -0.89697266, -0.11303711, 0.14294434, -2.90625, 2.0625, -1.1875, 0.7783203, -2.1386719, 2.0820312, -1.1328125, 0.91259766, -0.27612305, 0.17114258, 0.112976074, -0.8510742, -1.0683594, -0.42358398, 0.43481445, -1.2734375, -2.5566406, 0.074645996, -0.80322266, -2.2578125, -0.43139648, 3.0527344, 1.3496094, 1.4248047, -0.2541504, 2.6875, 0.45214844, 2.2519531, 1.1826172, 0.6113281, 0.50927734, 0.19519043, 2.2753906, 0.14868164, -3.0371094, -0.69970703, -0.17883301, -2.7324219, -3.7167969, 0.84472656, 0.9760742, 1.171875, 0.4104004, -1.9267578, 1.0908203, -1.1416016, 2.0292969, -3.7617188, 1.03125, 0.6567383, -3.5800781, -2.203125, -1.6933594, 0.9482422, 1.4951172, 1.2939453, 0.20458984, 2.0429688, 0.5258789, 2.03125, 0.47851562, 0.7192383, -1.5166016, 1.8076172, -2.2929688, 2.9042969, 1.1503906, 0.07702637, -0.5419922, 3.2070312, -0.4260254, -0.1496582, -0.24401855, -1.8330078, 0.7421875, -0.87939453, -1.1132812, -0.1015625, -1.1279297, -3.0292969, -1.6308594, -0.3618164, -0.66064453, -0.9111328, 0.8930664, 3.4433594, -0.41357422, -0.49536133, 1.1132812, -1.0224609, 1.7167969, -0.8378906, -0.81640625, -1.2578125, 0.94921875, 1.7646484, -0.47045898, -2.8203125, -0.31298828, 2.0722656, 0.94140625, 0.19519043, -0.2121582, -2.0488281, 1.3056641, 0.68310547, 2.8222656, 0.87939453, -1.3427734, 1.8388672, 0.13903809, -0.031707764, 3.765625, -0.9248047, -0.703125, 1.1533203, -2.7265625, -0.7138672, 0.5541992, -0.74560547, 0.07055664, 5.890625, 0.6958008, -0.94677734, -1.4960938, -4.15625, -1.4990234, -1.3867188, 2.6464844, 0.57666016, -0.87646484, 0.83203125, -0.15429688, 2.2070312, -0.25610352, 0.22167969, -0.24609375, -1.0224609, 0.84765625, -0.91796875, 1.9580078, 1.9521484, 1.4287109, -0.22595215, 2.6230469, 1.6123047, 0.07397461, 0.90527344, 0.5053711, -0.38867188, -2.5058594, -1.0712891, -1.6806641, 0.7290039, 0.79833984, 0.87597656, 1.3544922, -0.016082764, -1.4101562, -4.7851562, -1.4345703]}, "B079YB3FTK": {"id": "B079YB3FTK", "original": "Brand: Flame King\nName: Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack)\nDescription: Larger 30 pound size for added use time on the job or at home.\nFeatures: High grade steel welded construction\nPremium OPD valve assembly\nX-ray and hydrostatic tested\nPowder coated for long lasting exterior protection\n", "embedding": [-1.6455078, 1.6347656, 1.5703125, 0.009864807, 0.21191406, -2.3769531, -0.49975586, 1.0273438, 1.6064453, -1.6640625, 2.4433594, 0.88671875, -0.7944336, -2.6347656, 1.6582031, 0.93603516, -1.2675781, 2.4160156, 0.86279297, -1.0302734, 2.1816406, 0.91796875, -1.4169922, -1.5419922, 0.5966797, -2.5214844, 3.4492188, -3.2851562, -0.9042969, -0.3269043, 0.9423828, 0.0904541, -0.022018433, 1.8378906, -0.6298828, -0.7807617, 1.6152344, -1.9023438, -5.0390625, -2.2109375, -2.6875, -0.6582031, 1.5488281, -0.95703125, -0.8173828, 0.77001953, -0.15600586, -2.6210938, 0.9760742, 0.85546875, 0.98291016, 1.4414062, -0.78222656, 1.0664062, 0.84277344, 2.6289062, 0.94677734, -3.2265625, -0.20019531, 0.72753906, 2.0722656, 0.31298828, -2.3125, 2.1933594, -0.47485352, 1.2392578, 0.27954102, -0.47387695, 0.89208984, 1.8623047, 0.8129883, 1.2216797, 2.3320312, -1.3818359, -0.91503906, 1.5273438, -3.6386719, 0.29882812, 1.2197266, -0.4633789, 0.5629883, 2.0957031, 0.09844971, -4.1835938, -0.58935547, -1.09375, -0.1652832, 0.32421875, 1.1943359, 0.33984375, -1.4580078, 2.5957031, 0.24353027, -3.6171875, 2.8046875, -0.6411133, 2.0996094, 2.1835938, 2.2246094, -0.10913086, 1.6806641, -0.30908203, -0.6586914, 0.89501953, -0.87060547, -1.1835938, 0.14697266, 0.90722656, -2.2207031, 1.7050781, -0.20739746, -0.14562988, 1.4511719, -1.3681641, -0.3725586, -1.6748047, -1.3798828, 1.8867188, 1.7402344, 0.13598633, 1.8867188, -1.6884766, 2.0605469, -1.0205078, 3.2089844, 1.6826172, -1.3066406, 0.22680664, 5.6796875, 0.7441406, 2.4472656, -0.5415039, 4.1367188, -0.94921875, 0.23657227, -2.6542969, 0.9707031, -1.640625, -1.5576172, -2.1425781, -3.9941406, -1.640625, 0.49169922, -0.5864258, -2.71875, -1.0908203, -0.12890625, 0.6118164, -0.96777344, -2.484375, 1.8935547, -0.7558594, 0.30541992, -0.5385742, 2.3769531, 1.1708984, -1.4619141, -4.0898438, 1.6582031, 2.1503906, 1.9335938, -0.20471191, 0.16333008, 0.04812622, -1.1796875, -2.5019531, 0.13598633, 0.9501953, -0.70458984, 3.0917969, -0.21887207, -1.4111328, -1.8652344, 1.7783203, -1.2089844, -0.8876953, 0.67333984, 1.9208984, -0.50634766, 0.036987305, -3.0742188, -0.089904785, -0.41333008, -1.7568359, 2.5273438, 0.09484863, -0.37280273, -1.0419922, 1.2617188, -0.107666016, -1.0234375, 1.4931641, -1.5, 1.1181641, -1.1972656, -0.9296875, -2.7539062, -3.2578125, -0.02015686, 1.8681641, 0.02444458, -1.4199219, 1.9169922, -0.6118164, -3.0410156, -0.7138672, 0.061523438, 0.72314453, 2.4726562, 1.1933594, 0.6821289, -0.5878906, 2.3320312, -3.1660156, -0.48388672, -2.2832031, -0.3203125, 2.3476562, 1.8652344, 0.6582031, 0.8886719, -1.1787109, 0.8461914, 0.6489258, -0.028198242, 1.0058594, 1.5917969, 1.5400391, -3.0292969, -1.6796875, 1.1884766, 2.1542969, 0.03829956, 0.5102539, -1.6621094, 1.0859375, -0.61279297, -1.4257812, 0.9897461, 1.0019531, -0.40014648, 0.51416016, -1.8476562, 0.55371094, -2.1601562, -0.24060059, 0.61083984, 0.12902832, 0.16003418, 0.43774414, 1.0986328, 0.25268555, -0.7988281, -0.51953125, -1.1787109, 0.25585938, 2.453125, 0.9433594, 0.5019531, -1.3974609, 2.578125, -2.0117188, -0.11315918, 1.0664062, -1.0644531, -0.59033203, 3.9140625, -1.5830078, -2.0234375, 1.0966797, -1.6152344, 0.66015625, 2.8398438, 0.96191406, 0.5942383, 1.7255859, -1.2773438, 3.4433594, -1.5458984, 1.8603516, 0.23742676, 0.33740234, 1.3466797, -2.4980469, 1.3701172, 0.007701874, -0.017868042, -1.3388672, -3.2363281, -0.11413574, 4.296875, -0.8642578, -1.8779297, 0.69628906, 0.47509766, 0.37719727, 2.859375, 1.1503906, 1.8994141, -0.796875, 0.3400879, 0.38964844, -1.5332031, -0.8701172, 0.3869629, -0.7260742, 0.9667969, -0.9980469, 0.15722656, -1.6152344, -2.0800781, 0.8798828, -1.9306641, 1.0449219, 0.12310791, -1.0234375, 1.5576172, -3.1582031, 1.6289062, 1.4658203, 0.703125, 3.5957031, 1.0146484, -1.3222656, -0.5957031, 2.1464844, -1.7685547, 1.7109375, -0.34472656, 0.86621094, 0.07293701, -1.6347656, 0.7216797, -1.4609375, -1.0341797, -0.16845703, -1.6640625, -2.8496094, 0.9501953, -2.9003906, 0.3232422, -0.14331055, -1.8867188, 1.3291016, 0.6665039, -1.5576172, -0.29492188, 0.40014648, -0.33325195, -2.1640625, 0.46240234, 4.0507812, -0.6767578, -3.1054688, 0.9970703, 0.022506714, -0.5366211, 1.9814453, -0.71777344, 0.05609131, -0.4650879, -1.0664062, -0.23999023, -0.91308594, -1.2060547, -2.5527344, 3.6035156, -2.1582031, 0.30078125, 0.7363281, -1.3876953, -0.6176758, -0.9814453, -1.6699219, -3.0976562, -0.36450195, -1.2675781, -0.3076172, 0.80029297, 1.2011719, -0.8701172, -0.99560547, 1.0498047, -1.9140625, -2.03125, 0.94091797, 1.3300781, -1.8134766, -2.6367188, -4.4335938, 0.59716797, -0.44433594, 0.07910156, -0.45214844, 0.8647461, -1.3017578, 0.7729492, 0.5942383, 0.4716797, -0.16882324, 0.67089844, -0.6635742, -3.2519531, 0.19812012, -0.55908203, -0.96484375, -2.15625, -0.50878906, 0.13476562, -0.3725586, -0.71533203, 0.9423828, -1.3476562, 2.3496094, 1.1083984, -3.7617188, 2.3203125, 1.171875, 0.34301758, 3.3945312, -2.7207031, 0.09197998, -1.4873047, -1.0878906, 4.7734375, 0.328125, 0.31518555, 1.3662109, -1.0625, -0.16455078, 0.41748047, -1.9990234, -0.14099121, 1.1298828, 4.3164062, -0.59033203, -0.5126953, 0.60058594, 1.5556641, -3.0078125, -0.43237305, 1.2744141, -0.18432617, 1.1416016, 0.6958008, -0.84765625, 0.6948242, -0.09265137, 0.23181152, 3.2324219, 1.6796875, -0.6665039, -1.1044922, 0.43579102, -1.15625, 0.6010742, 3.9375, -0.43432617, 3.1464844, 2.2675781, 1.3408203, 0.15148926, 0.16577148, 1.2744141, 1.3945312, 0.5576172, 2.2207031, -0.027923584, 0.9785156, -1.3417969, -0.4116211, 1.2402344, -1.6035156, 1.1015625, 1.3583984, -0.09832764, -0.28027344, -0.39331055, -0.37182617, -0.6713867, -2.1835938, 4.234375, -1.7099609, 2.3554688, -1.0722656, -2.2207031, 1.2158203, -3.1894531, 2.6113281, 0.4086914, 1.1523438, -1.5908203, -0.6411133, -0.89990234, -3.78125, -0.23596191, -1.484375, -1.6455078, 2.5488281, 1.1074219, -3.4824219, 0.40234375, -1.4824219, 0.55908203, 2.1699219, -3.3789062, 1.3046875, 0.82421875, 0.20153809, -1.8876953, -0.46264648, 1.0556641, 0.24768066, -1.6982422, 0.9711914, -1.0048828, 1.0585938, 0.1274414, 0.18261719, -0.92578125, 0.19714355, -1.9326172, 2.1640625, -0.26098633, 2.4960938, -0.15234375, 2.1542969, 1.8876953, -1.4648438, -1.15625, -0.37329102, -3.9511719, 1.7558594, -1.6835938, -0.375, 0.4892578, -0.94921875, 0.8691406, -1.4443359, 0.2232666, -2.0175781, -1.4755859, 0.23327637, 2.3867188, -2.9882812, -0.68408203, 0.055236816, -0.28051758, -3, -0.16381836, 0.2705078, -1.9580078, -0.5517578, 0.953125, -1.8027344, 0.42016602, 1.6650391, 0.7084961, 0.03845215, -1.2890625, 1.7929688, -0.20532227, -0.48120117, -2.2480469, 1.4550781, 2.4335938, 0.83691406, 1.2919922, 1.9023438, 1.7255859, -1.0546875, -0.6723633, -0.6152344, 1.3037109, 1.4335938, -3.6894531, -1.8349609, 0.79589844, -0.08874512, -4.1914062, 0.9316406, -1.859375, 1.8496094, 3.4746094, 0.59033203, 0.37524414, 0.3955078, -0.50634766, -0.71972656, 1.8515625, 0.19787598, -0.7792969, 1.9472656, -1.0869141, -1.2626953, -1.4169922, 2.0957031, -2.3144531, -0.44677734, -0.52246094, 0.34765625, -3.9746094, 1.0332031, 2.3242188, 2.4589844, -0.92871094, 0.06561279, -1.0517578, 0.6010742, 0.05090332, 0.24279785, -0.0769043, 0.29760742, 0.27368164, -0.06500244, 2.2089844, -1.3369141, 0.9145508, 1.7597656, -0.5136719, -0.9248047, -0.6743164, 0.6303711, -2.8359375, 1.0126953, 0.5722656, 0.35375977, 2.0253906, -1.2001953, -1.3876953, 0.34204102, -0.5307617, -0.37402344, 0.4194336, 0.19995117, 0.10272217, 3.3652344, -0.36279297, 0.19628906, 1.6552734, 1.7128906, -0.17614746, 2.2558594, -2.6328125, -0.7807617, -1.2695312, 1.4023438, -2.0605469, 1.5849609, 2.2636719, -0.09222412, -0.7363281, 2.6835938, 0.40551758, -0.43774414, 0.6503906, 0.8979492, -3.0351562, -2.7753906, -0.6928711, -0.23742676, 2.0117188, -0.21984863, -1.4228516, 0.73095703, 2.8457031, -0.20739746, 0.74658203, 0.5966797, -0.7573242, -1.9716797, -0.8354492, -2.078125, -1.5390625, 2.0273438, -0.29003906, -0.9296875, 1.7919922, -0.99365234, -0.5263672, -0.97265625, 1.7412109, -0.46899414, 0.11895752, -1.3574219, -0.50146484, -0.54833984, 0.48706055, -1.46875, -0.10064697, -0.3413086, 0.82958984, 0.51953125, -0.7470703, 2.078125, -0.22436523, 0.2890625, 0.13562012, 0.6870117, -0.6850586, -0.80322266, 2.9941406, -0.50341797, 1.2285156, -0.24511719, -0.32104492, -0.42626953, 3.4394531, 1.3681641, -0.2553711, -0.6323242, -0.19067383, -1.6855469, -2.96875, -2.796875, -1.7675781, -1.3164062, -0.011520386, -2.1660156, -0.43579102, 0.8125, -0.70751953, -1.8378906, -1.6044922, -0.87841797, -0.45043945, -0.78808594, -2.3828125, 0.42163086, -0.5410156, 0.32666016, 0.28930664, -2.3574219, 0.6977539, -2.5898438, -2.1601562, 3.21875, -0.51123047, 1.1318359, 0.6567383, -2.3984375, 1.2910156, 2.6054688, -0.88134766, -3.7910156, 2, -1.3486328, -1.1337891, 0.6689453, -2.6601562, -1.7773438, 1.6767578, 0.039611816, 2.6035156, 3.4980469, 1.2460938, -2.1230469, -1.3203125, 0.27978516, 1.0126953, 0.30932617, 1.625, 3.1582031, 1.5214844, -0.30810547, 1.6865234, -1.6337891, -1.3955078, -1.8300781, -0.8510742, 0.8022461, -0.14416504, 0.81591797, 0.53564453, 1.4443359, -0.49487305, -0.32714844, -0.0029850006, -0.84277344, -1.7988281, -0.94921875, 2.3339844, -2.4101562, 3.6289062, 2.8457031, -2.4394531, -1.0966797, -0.80078125, 0.12384033, 2.21875, -1.2441406, -1.9658203, 1.7021484, -0.5292969, 1.3710938, -0.046783447, 1.7685547, -0.11663818, 0.51220703, -0.41870117, 0.3425293, 3.9433594, -0.17590332, 2.5527344, -0.14831543, -0.92578125, 1.9228516, 1.734375, 3.5117188, -1.1845703, -0.60791016, -0.5332031, 0.30688477, -0.95703125, -1.2871094, -0.4741211, -2.3554688, -2.2089844, 2.2363281, 0.024902344, -4.3164062, 0.08227539, -0.08856201, -1.3759766, -0.45361328, 0.26879883, -0.6328125, -0.5180664, 1.328125, 0.56884766, -1.7714844, 0.78027344, 1.1347656, 0.60253906, 1.4404297, -1.0595703, 0.84716797, 1.2041016, -0.56933594, -0.8276367, 0.6035156, -2.6953125, 2.75, 0.5620117, 2.2421875, 1.5527344, -0.63916016, 1.6650391, 0.7495117, 1.0478516, 3.4394531, -0.29052734, 0.4921875, 0.15612793, 0.9736328, -0.034179688, -1.03125, -0.072753906, -1.1376953, 2.1386719, -0.67578125, -0.24206543, 2.5898438, -0.42504883, -0.45043945, -1.1640625, 1.1572266, -1.6074219, 2.1054688, -0.74365234, -0.86328125, 1.3574219, 0.34887695, 1.8632812, -1.0390625, 1.2382812, -0.7636719, 0.9633789, 1.2246094, 0.40161133, -1.8164062, -1.0195312, -2.6113281, 0.94677734, 1.4550781, 0.99853516, 0.09320068, 0.34960938, -0.72753906, 0.3317871, 0.107299805, -1.3300781, -1.8632812, 1.9824219, 1.5371094, 1.9150391, 1.4882812, -0.64160156, 3.421875, 2.2480469, -2.0566406, -3.0898438, 2.4863281, -1.1425781, -1.5214844, 1.28125, -0.8339844, 1.8261719, -2.1328125, 1.3193359, -2.4511719, 1.1435547, -1.1259766, 0.0050621033, 3.171875, 0.057739258, -0.7192383, 2.9492188, 2.8945312, 0.31298828, 1.2910156, 0.81103516, 1.1425781, -0.32299805, 0.117370605, 0.99072266, 0.5048828, -2.5371094, 3.3300781, 1.1923828, -0.13757324, -1.3955078, 1.9091797, 0.40234375, 0.42895508, 1.4257812, 0.58935547, 1.4912109, 1.3652344, 1.3769531, 0.041229248, -1.8574219, -0.20275879, -1.1103516, -1.0947266, 1.6484375, -2.7519531, -0.6269531, 1.3847656, -1.9726562, -2.1054688, 4.0273438, -1.1025391, 0.6533203, 0.51708984, -3.0117188, -2.8632812, 1.2246094, 0.60791016, -0.36743164, -1.1826172, 0.19958496, 2.5253906, -0.23168945, -0.80908203, -1.4628906, -0.36401367, 0.7973633, -1.6552734, 1.1044922, -0.035247803, 0.14660645, 0.48950195, -0.9086914, 0.9589844, 0.3803711, 0.18359375, 1.75, -0.76708984, 0.20935059, 0.2619629, 0.6894531, -3.2792969, -1.484375, 0.94189453, 0.8203125, 1.2080078, -0.52246094, -4.3671875, -2.7207031, -0.33569336, -0.3942871, -2.0097656, -0.50146484, 0.5644531, 1.7441406, 1.0722656, -0.48950195, 1.1298828, -0.26708984, 1.9667969, 1.7685547, -1.7529297, 0.54003906, -0.11743164, -0.47924805, -0.5102539, 2.6425781, 0.56689453, -0.8046875, -0.0758667, 1.7617188, -1.03125, 0.14611816, 0.15344238, -1.5800781, -0.2836914, 0.7314453, 0.75634766, 1.890625, 0.9448242, -0.12438965, -1.5478516, -0.25927734]}, "B07Q47ZGK4": {"id": "B07Q47ZGK4", "original": "Brand: Flame King\nName: Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White\nDescription: \nFeatures: High-grade steel welded propane cylinder\nPremium POL valve assembly\nX-ray and hydrostatic tested\nDot approved\n100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill\n", "embedding": [-1.1660156, 1.0302734, 1.8251953, 1.546875, 1.7978516, -2.0820312, 0.76220703, 0.39160156, 0.6777344, 0.14550781, 2.0839844, 0.2434082, -1.0234375, -3.0195312, 2.4941406, 0.2355957, 0.9165039, 1.3837891, 0.8574219, -0.034851074, 1.8603516, 1.0595703, -0.80615234, -1.4931641, 0.9165039, -0.7993164, 2.7011719, -2.6660156, -1.5, -1.3974609, 1.0126953, -0.47705078, -0.020141602, 1.1757812, -0.62597656, -2.2167969, 1.3701172, -1.1972656, -5.265625, 0.32592773, -2.2226562, -1.3505859, 0.24304199, -0.734375, -1.5957031, 0.50634766, 0.15551758, -1.0654297, -1.046875, 0.95996094, 0.26464844, 1.4990234, -1.5332031, 0.90966797, 0.1574707, 2.2929688, 0.5644531, -3.1601562, -0.75, -0.23132324, 1.4726562, 0.49902344, -3.2480469, 1.4306641, -0.2553711, 2.3320312, -0.0031337738, -1.4960938, 1.1982422, 2.3789062, 1.9404297, -0.18200684, 1.4287109, -1.9072266, -0.46557617, 0.79003906, -2.5390625, 0.13537598, 0.8183594, -0.5131836, 0.8647461, 0.89453125, 0.9091797, -3.3945312, -1.2939453, -2.0019531, 0.20056152, 0.5048828, -0.47607422, 0.9892578, -0.6767578, 1.2714844, -0.43432617, -2.875, 1.7998047, -0.07287598, 1.3769531, 2.421875, 1.4101562, -0.40625, 1.75, -0.0024299622, -0.5239258, -0.09136963, -1.1835938, -1.6005859, 0.85009766, 1.0361328, -2.3671875, 2.1914062, -0.44433594, -0.74316406, 2.6582031, 0.01737976, 0.7392578, -0.8388672, -0.08502197, 1.6367188, 1.6572266, -1.2998047, 3.6308594, -2.6347656, 1.9736328, -0.24560547, 1.5332031, 0.92871094, -0.42358398, -0.0029525757, 5.3359375, 0.9091797, 1.6162109, 1.1367188, 4.1171875, -2.0253906, -0.67871094, -1.8242188, -0.22399902, -1.34375, -1.3632812, -1.0791016, -3.4160156, 0.04260254, 1.6210938, -0.32128906, -2.9394531, -0.60595703, 0.9165039, -0.5488281, -1.3876953, -2.1816406, 0.78759766, -1.0986328, 1.078125, -0.2944336, 2.0566406, 1.2373047, -1.2148438, -3.3457031, 1.3525391, 0.95703125, 1.2304688, -0.08728027, -0.42993164, 1.2177734, -1.2333984, -2.0585938, 0.82470703, -0.6020508, -2.0976562, 2.0078125, 0.28881836, -1.8310547, -0.45239258, 1.3652344, 0.021026611, -0.77978516, -0.453125, 1.4052734, 1.0634766, 0.5546875, -3.2792969, -0.55615234, 0.7993164, -2.1953125, 1.6523438, 1.0664062, -0.6171875, -1.2587891, 1.8056641, -0.14404297, -2.0097656, 1.7792969, 0.6088867, 0.08746338, -0.18457031, -2.2949219, -2.0605469, -2.6855469, 1.0458984, 2.0253906, -1.1533203, -1.3496094, 1.4804688, -0.5253906, -2.6445312, -2.4238281, 0.20043945, -1.2783203, 1.421875, 1.6220703, -0.37573242, 0.057556152, 2.0546875, -1.9013672, -1.5478516, -2.7070312, -0.38085938, 2.0644531, 1.6669922, 2.4179688, 0.61865234, -0.32177734, 1.5537109, 0.2388916, 1.3300781, -0.50439453, 1.5947266, 2.2558594, -2.4960938, -1.3964844, 2.1171875, 1.9013672, -0.52001953, 1.4619141, -1.9199219, 1.828125, 0.12695312, -0.057006836, 0.8598633, 0.375, 0.024414062, 0.48876953, -2.0703125, -1.8417969, -3.625, -0.9760742, 0.29492188, 0.56884766, 0.61279297, -0.91259766, 0.8779297, 1.5332031, 0.033691406, -0.6269531, -1.6074219, 1.7314453, 0.8276367, 0.11566162, 0.40942383, -3.4589844, 1.9111328, -2.3105469, -1.0087891, 0.7636719, -1.1953125, -0.98339844, 3.0761719, -0.062683105, -2.1679688, 0.5996094, -0.9057617, 0.2980957, 2.8378906, -0.15881348, 0.43286133, 2.6855469, -0.70996094, 3.9472656, -0.92822266, 2.0253906, -1.0048828, -0.8808594, 0.8984375, -3.2988281, -0.0078086853, 1.2373047, 1.2949219, -0.26733398, -2.3847656, 0.7651367, 5.0859375, -1.5751953, -1.3974609, 1.5898438, 0.46655273, 0.89990234, 4.125, -0.19384766, 0.6826172, -1.4501953, -0.6123047, 1.1748047, -0.83740234, -0.24475098, 0.8076172, -1.1582031, 1.390625, -0.6298828, 1.0341797, -1.0244141, -0.85546875, 0.80810547, -1.5126953, 1.390625, -1.1259766, -0.30151367, 3.0820312, -3.0585938, 1.4785156, 2.3359375, 0.06842041, 1.8388672, 1.9013672, -0.55078125, 0.703125, 1.9082031, -2.8632812, 1.9472656, -0.51660156, 0.17041016, 0.36206055, -1.7314453, 0.99121094, -1.3164062, 0.2109375, 1.0009766, -0.60009766, -1.6181641, 0.029205322, -3.3496094, 0.1965332, 0.13208008, -1.1230469, 1.953125, -1.1972656, -2.0722656, -0.009178162, 0.16699219, -0.54589844, -1.7285156, 0.28442383, 4.0039062, -0.7949219, -2.3105469, 0.5708008, 0.52734375, 1.0302734, 2.8886719, -1.15625, 0.37036133, 0.41796875, -0.18017578, -0.69384766, -1.2900391, -0.83447266, -1.7509766, 3.4042969, -1.9189453, 2.7871094, -0.26049805, -0.036102295, -0.78759766, -1.140625, -1.4277344, -3.1386719, -0.4182129, -0.0038604736, 2.03125, 0.65283203, 2.5976562, -1.0947266, -1.2744141, 1.5185547, -0.75439453, -2.3671875, -0.0037021637, 0.4790039, -0.7495117, -1.4560547, -5.3710938, 0.078552246, -1.3476562, -0.38964844, -0.41748047, 0.23449707, -1.5751953, 0.10882568, -0.11065674, 0.7871094, 0.50341797, 0.06756592, -0.83154297, -1.9521484, -1.4169922, -0.2770996, -0.9614258, -1.328125, -1.1152344, -0.18481445, 0.003276825, -1.3808594, 1.2128906, -1.0429688, 1.9277344, 0.6567383, -3.5292969, 2.7695312, 2.7070312, 1.3496094, 2.1757812, -3.6074219, -0.5004883, -2.0996094, -0.5073242, 4.1289062, 2.0371094, 1.1699219, 0.84814453, -1.0302734, 0.64697266, 0.36621094, -0.7167969, 1.1015625, 0.71191406, 3.8769531, -0.16186523, -1.0273438, -0.20495605, 1.5087891, -4.125, -0.42773438, 1.3369141, 0.36450195, 1.625, -0.4621582, -0.10864258, -1.7539062, -0.42285156, 1.8486328, 1.5615234, 0.7182617, 0.5786133, -1.5898438, 0.6923828, -0.83447266, -0.55810547, 4.359375, 0.48046875, 2.2070312, 2.2773438, 1.1982422, 1.1523438, -0.8017578, 0.72802734, 1.3232422, 1.1748047, 1.9638672, -0.92529297, 1.8212891, -1.6210938, 0.26416016, 0.19714355, -1.1953125, 0.53466797, 1.921875, 1.8652344, -0.5361328, -0.10809326, -0.96875, -1.09375, -1.2568359, 3.3691406, -0.63427734, 2.6054688, 0.74121094, -0.9003906, 0.77685547, -3.5878906, 2.4804688, -0.6845703, 0.8388672, 0.18640137, 1.3222656, -1.5175781, -3.3730469, -0.5366211, -0.98046875, -1.7949219, 2.6152344, -0.22290039, -2.6386719, 0.32836914, -1.484375, 0.89404297, 1.6630859, -2.5703125, 1.9462891, 0.047454834, 0.8286133, -0.5366211, -0.4975586, 0.5654297, 0.7988281, -3.5117188, 1.1044922, -1.4726562, 1.453125, 0.41430664, 0.005153656, -0.96533203, 0.20983887, -2.2246094, 2.9804688, 0.31079102, 3.1738281, 0.2685547, 1.6259766, 1.7617188, -0.7792969, 0.48583984, -1.3789062, -3.0292969, 1.2714844, -2.8007812, -1.5634766, 1.4433594, -1.6972656, 0.5390625, 0.101135254, 0.85595703, -0.98535156, -0.4501953, -0.37353516, 2.4375, -1.4013672, 0.23742676, -0.11065674, 1.6914062, -1.7568359, -0.7890625, 0.39819336, -1.7949219, -0.5263672, 0.76171875, -1.5185547, 0.21081543, 0.61328125, -0.6401367, -0.1315918, -1.2216797, 1.1005859, -0.026748657, -0.97509766, -1.4228516, 3.8867188, 4.1796875, 0.49609375, 1.4169922, 2.0644531, 2.4648438, -0.58935547, -0.8046875, -1.5, 1.4003906, 0.22570801, -5.0664062, -1.5332031, 0.6904297, 1.0703125, -3.0820312, 1.2050781, -0.38745117, 1.1894531, 2.4082031, 0.6357422, 2.0683594, 0.45336914, 0.18127441, -0.9892578, 0.63964844, 0.140625, -1.6835938, 1.3095703, -0.38085938, 0.85009766, -1.1210938, 2.6171875, -2.6308594, -1.828125, -1.5361328, 1.6806641, -5.4453125, 1.3310547, 2.5078125, 2.5957031, -0.35253906, -1.5722656, 0.6196289, 0.11694336, -0.059417725, 0.27172852, -0.29956055, -0.8828125, -1.9433594, 0.75439453, 1.2109375, -0.7651367, 0.21655273, 2.0644531, -0.6542969, -1.1240234, -0.31982422, 1.6757812, -2.1796875, 0.4567871, -0.49023438, -1.1542969, 2.7148438, -1.5976562, -1.515625, -0.6621094, -0.011810303, -0.53271484, 0.8466797, -0.09100342, -0.79052734, 3.2246094, -0.109802246, -0.08843994, 2.171875, 2.03125, -0.19042969, 2.2675781, -2.1171875, 0.027023315, -0.74316406, 1.4501953, -1.4404297, 2.1855469, 1.0283203, 0.68847656, -0.23291016, 1.7001953, 0.5029297, -0.52783203, 0.5126953, 1.0771484, -3.0351562, -3.4804688, -0.49267578, -0.63427734, 3.3339844, -0.94189453, -1.9023438, -0.4411621, 1.6289062, 0.15637207, 1.9960938, 1.5175781, -1.1337891, -2.6679688, -1.4267578, -2.6269531, -2.09375, 0.07287598, -0.39038086, -0.098083496, 2.1289062, -1.9707031, -1.4199219, -0.13867188, 1.75, 0.6928711, -0.5185547, -0.6040039, -0.3173828, -0.08734131, -0.40185547, -0.96240234, -0.91503906, -1.1191406, -0.16418457, -0.008110046, -0.2421875, 3.203125, -1.1572266, -0.046691895, -0.8886719, 0.5966797, -1.2177734, -1.9375, 2.2382812, -0.83447266, 0.31225586, -1.2353516, -0.08123779, -1.2382812, 1.5595703, 2.0078125, -1.2851562, -0.8432617, 0.4116211, -2.7773438, -4.6132812, -0.9550781, -0.22766113, 0.3425293, -0.20898438, -2.4707031, -2.2207031, 0.9863281, -1.7353516, -1.2001953, -1.7861328, 0.4350586, -0.05923462, -0.5678711, -1.4335938, 3.0429688, -0.38745117, 0.30688477, 0.038391113, -0.57714844, -0.28295898, -1.6806641, -3.0371094, 1.5439453, -2.0292969, 0.96875, 0.52246094, -1.578125, 1.8535156, 1.9941406, 1.3085938, -3.5878906, 3.0878906, -2.5585938, -0.9042969, 2.4003906, -2.4160156, -2.4003906, 0.35327148, -1.0507812, 0.82470703, 2.7695312, 0.8417969, -3.4355469, -1.9277344, -1.2519531, 0.9838867, -0.6191406, 1.4560547, 3.2675781, 2.0175781, 1.1289062, 1.984375, -1.4414062, -2.0117188, -0.74072266, -0.38378906, 0.5175781, -1.4521484, -0.45996094, -1.0039062, 1.8066406, -1.1083984, -0.7807617, -1.2001953, -0.3659668, -0.8095703, -1.2705078, 3.203125, -3.2792969, 2.8183594, 3.2363281, -2.0234375, -2.6269531, -1.5830078, -0.27441406, 1.328125, -1.7236328, -1.0644531, -0.21691895, 1.2451172, 0.6669922, -0.8828125, 1.828125, 0.5097656, 0.80908203, -0.53564453, 0.37963867, 4.6523438, -0.9765625, 1.2148438, 0.03189087, -0.5385742, 2.1328125, 3.3105469, 1.4052734, -2.0507812, 0.16711426, 0.14172363, 0.1862793, -0.89697266, -0.18164062, -1.5009766, -3.1191406, -1.9765625, 1.9785156, -1.2216797, -4.15625, -0.40649414, -0.73535156, -0.5498047, 0.12915039, -0.31762695, -0.8720703, 0.004245758, 1.0957031, 0.57714844, -0.8261719, -0.24511719, 1.8056641, 0.5908203, 2.7070312, -1.6308594, 1.5273438, 0.7109375, -0.11437988, -0.10308838, 1.3056641, -1.359375, 2.9257812, 0.9111328, 2.2265625, 3.8886719, -0.5415039, 1.2666016, 0.4440918, 1.7167969, 3.1484375, -0.6464844, 0.84033203, 0.59375, 1.6484375, -0.08673096, -1.4697266, 0.020217896, -0.5751953, 0.9091797, -0.9995117, -0.16674805, 1.9912109, -0.6171875, 0.75341797, -0.81103516, -0.6870117, -1.4443359, -0.23779297, -1.3808594, -1.046875, 0.31323242, -0.6142578, 1.8251953, 0.20129395, 1.9941406, 0.08911133, 0.70214844, 0.8442383, 0.21142578, -0.48339844, -2.2128906, -2.0507812, 0.93408203, 0.88378906, 1.1777344, 0.029937744, 0.46850586, -0.60595703, -0.011543274, 1.1621094, 0.4790039, -0.8105469, 1.5478516, 1.8486328, 1.4824219, 1.3818359, 0.36401367, 5.1835938, 0.72802734, -0.33496094, -2.3457031, 2.5234375, -1.390625, -1.8662109, 1.3974609, -1.5712891, 0.053131104, -1.4375, 0.2788086, -3.9941406, 0.7783203, -0.15222168, -2.3046875, 2.4042969, 0.7451172, -0.6738281, 2.6972656, 2.4980469, -0.61376953, 0.47314453, -0.6098633, 1.1933594, 0.51171875, 0.50146484, 1.6435547, 2.0742188, -1.6660156, 4.4726562, -0.47998047, -1.0556641, -0.6230469, 2.3261719, 0.6845703, 0.7265625, 0.0042762756, -0.75927734, 1.9550781, -0.005393982, -0.092285156, 0.5830078, -1.7558594, -1.1005859, -2.1875, 0.16357422, 0.9042969, -2.4804688, 0.69091797, 1.0751953, -0.6308594, -1.9697266, 4.3515625, -0.97021484, -0.4477539, -0.34765625, -2.1894531, -2.6367188, 2.03125, 1.2744141, -2.1464844, -1.0976562, 0.45776367, 2.5195312, 0.6557617, -1.6962891, -0.85302734, 0.17895508, 0.55615234, -2.0019531, 0.8364258, -0.5131836, -1.1425781, 1.4833984, -0.059631348, -1.3876953, -0.16882324, 0.3293457, 1.8095703, 0.44189453, -0.97021484, 1.5527344, 0.7680664, -1.9873047, -2.4121094, 1.3085938, -0.51904297, 0.22814941, 0.7294922, -3.25, -0.94628906, -1.265625, 1.8222656, -0.72314453, -1.7705078, 1.0654297, 1.8681641, 1.6035156, -1.4619141, -0.00447464, -0.053649902, 1.3134766, 1.8388672, -2.4824219, 1.2197266, -0.14807129, 0.06958008, -0.5800781, 3.9179688, -0.14477539, 0.25341797, -0.5854492, 1.7119141, -1.4003906, -0.45703125, -0.6977539, -0.20043945, -1.1953125, 0.8955078, 1.0576172, 0.86865234, 0.18554688, -2.5214844, -2.5585938, -0.39282227]}, "B078HFRNPQ": {"id": "B078HFRNPQ", "original": "Brand: Blackstone\nName: Blackstone 36\" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black\nDescription: \nFeatures: NEW FEATURES - This unit comes equipped with Blackstone's new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone's new rear grease management system to help eliminate mess.\nRESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks.\nREPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors\nHEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe\nTRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels\n", "embedding": [-0.8618164, 1.5185547, 1.46875, -0.2421875, 1.2822266, -0.035339355, 0.84716797, -0.17797852, -3.2519531, 1.2148438, 0.047180176, 0.73779297, 0.5102539, -0.92529297, -0.6328125, -0.49804688, -1.3935547, -0.94970703, -0.17565918, 1.1142578, 2.4726562, 0.59472656, 0.7060547, -1.3701172, 2.3769531, 0.93847656, 3.3417969, -3.6640625, 1.5380859, 0.093933105, 1.9814453, -0.4819336, 1.3320312, 1.1416016, -4.1640625, -1.3095703, -1.0400391, 2.890625, -0.9614258, 0.6166992, 0.30273438, 0.31054688, 3.8222656, 0.4880371, -3.8046875, -0.28295898, 0.60302734, 0.08660889, -2.7480469, -0.76953125, 0.8095703, 3.1542969, 1.9882812, 0.6464844, -1.2011719, 0.8901367, 1.1025391, -2.6191406, 1.0986328, -0.3149414, 1.5839844, 0.09851074, -2.3886719, 1.3925781, -0.8520508, -1.4736328, 1.8886719, -0.38232422, -0.15490723, -1.0673828, -1.6777344, -0.26342773, -0.84765625, -0.671875, 0.8520508, -1.9521484, -0.6352539, 1.6835938, -0.19348145, -1.0048828, -2.0058594, 2.2246094, 0.5004883, -2.8867188, -0.3100586, -0.22192383, -0.6591797, -0.32739258, 0.90283203, 0.1574707, -0.44384766, 2.7441406, -2.7734375, -4.46875, 2.015625, -1.5009766, 0.08026123, -0.57373047, -1.6904297, 3.3027344, -1.3271484, -0.1616211, -1.2890625, 2.8828125, -2.6523438, -0.8022461, 3.8730469, 1.0371094, -2.3105469, 0.04949951, -2.2617188, 0.43139648, 1.8955078, 0.32910156, 1.3398438, 1.1132812, 0.38256836, -0.21362305, 1.2490234, 0.7841797, 3.625, -0.19433594, 0.2692871, -0.45336914, -0.7841797, 1.1660156, -1.0498047, 1.1445312, 4.5, -2.3613281, 0.07873535, -2.7402344, 1.9326172, -0.45532227, -3.3417969, -2.0742188, -0.032470703, -0.95996094, -2.7910156, 1.1582031, 0.08392334, 2.1484375, 1.9873047, -1.9248047, -3.7597656, -0.29223633, -0.1953125, 2.0820312, -0.44604492, -2.0957031, -0.8100586, -1.1308594, -0.040405273, -1.25, 2.5859375, -1.9589844, 1.0214844, -1.9628906, 4.1640625, -1.03125, 0.36743164, -2.8828125, -1.2333984, 2.5527344, 2.1660156, -1.2099609, 0.26513672, 2.5800781, -0.23669434, 2.9316406, 0.50634766, -2.59375, 0.16772461, -0.28955078, 2.0488281, -0.8964844, -0.83251953, 2.0996094, -1.1894531, -0.85546875, -0.61816406, -3.3320312, 0.38427734, -0.08795166, -0.63916016, -3.3671875, 1.0048828, 0.03717041, 0.33276367, -0.828125, 0.15209961, -0.26782227, -0.13647461, 0.38232422, -0.101135254, -1.6044922, 0.52246094, -0.10809326, 0.84277344, 0.08135986, -0.54589844, -1.4824219, 0.9472656, 1.2822266, -1.9150391, -1.5166016, 0.9238281, -1.6513672, 2.8554688, 1.2617188, 1.1894531, -0.5522461, 0.3540039, -0.12915039, -0.765625, -2.3164062, 1.3007812, -1.1494141, 1.5566406, 0.6425781, 0.8574219, -2.4511719, -1.9082031, 1.015625, 0.8671875, 3.1035156, 0.8598633, 0.070007324, -0.89208984, -0.2932129, 1.7910156, 0.31225586, 0.2734375, 1.4716797, -0.88378906, 3.0664062, 1.2529297, -1.6142578, 0.07086182, 0.046722412, 0.59033203, -2.1210938, -0.011444092, -0.96533203, -0.74609375, 0.46313477, -1.2460938, 2.7871094, -0.70410156, 0.45947266, -2.9511719, -0.12854004, 1.6357422, 0.6796875, -0.6298828, -0.22302246, -0.75878906, -1.3125, -2.0703125, -2.5097656, 0.07763672, 1.5566406, 0.5366211, 1.1542969, 1.8720703, -0.6147461, 1.0791016, 1.9443359, -1.8417969, -0.15478516, 1.8417969, 0.2401123, 2.0605469, 0.039154053, 1.0566406, 1.5673828, -1.9863281, 2.1523438, 0.5541992, 0.5415039, -1.2568359, -1.4179688, 1.3554688, -2.4082031, 0.16308594, 0.80371094, -2.0527344, 1.6894531, 1.1728516, 0.3059082, 4.6835938, -1.2509766, -1.9394531, 3.1621094, -1.0039062, 0.49682617, 0.40649414, -1.3271484, -0.57910156, 0.3791504, 1.2363281, 1.703125, 0.5966797, 0.86572266, -2.6796875, 0.58496094, 0.30688477, -1.796875, -1.1015625, 2.2050781, 0.22460938, -0.89697266, -0.5136719, 1.4326172, -1.3857422, -0.33911133, -0.7504883, -1.0693359, 2.34375, 1.859375, 2.3867188, 2.0664062, -1.2519531, -2.4375, -0.546875, 0.5131836, -0.6508789, 0.41333008, 0.14672852, -1.6738281, -0.12237549, 0.2133789, -0.087890625, -0.9941406, -3.7402344, -0.9082031, 0.29516602, -1.6835938, 0.18310547, -1.0351562, -1.2470703, 1.9316406, -1.6308594, 0.9326172, -1.1455078, -2.21875, -0.40600586, -0.10046387, -0.390625, -0.35717773, 1.1621094, -0.70751953, -1.3935547, -3.6210938, -0.4399414, -0.45458984, 1.5771484, -1.9824219, -1.75, 1.1279297, -0.7578125, 0.22509766, -0.40673828, 0.47705078, -0.18261719, -0.006095886, -0.16687012, -2.5878906, 0.91748047, -0.86083984, -0.4831543, -1.71875, -0.083618164, -2.1679688, -0.63378906, -0.53564453, -0.60253906, 3.2441406, -1.1660156, 0.9042969, -0.8071289, 1.9414062, 0.10748291, -0.3635254, -1.0576172, 0.55371094, 0.2487793, -2.0117188, -2.5683594, -3.8144531, 0.24169922, -1.1679688, -0.30737305, -1.2880859, 3.171875, -1.8144531, 1.2871094, -1.1367188, -0.37060547, -0.40966797, -0.75878906, 0.5444336, -2.2871094, -2.8828125, -1.1894531, -0.72509766, -2.0957031, 0.81396484, 2.2753906, -1.4375, -0.79003906, 1.4033203, -0.4807129, -2.0410156, -0.022720337, -2.3320312, 2.375, -0.5957031, -3.3046875, 2.421875, -1.1875, -1.1455078, -1.46875, 0.22387695, 3.0332031, -0.453125, 0.4177246, 0.14819336, -0.70410156, 2.4511719, 0.8129883, -0.5053711, -0.5708008, 0.609375, 1.3017578, -1.0947266, -1.7246094, 0.22839355, 2.8828125, -1.5351562, 0.61865234, 0.9897461, 0.62402344, 0.8774414, 1.5917969, 1.9404297, -1.6679688, -2.0429688, -0.5708008, 1.2001953, 0.82470703, -0.18920898, -1.9228516, 0.7470703, -0.5600586, 0.53125, 0.4794922, 0.40185547, 2.5449219, 1.3867188, 2.3378906, -2.3945312, 0.005607605, -0.40771484, 1.2382812, 1.7509766, 2.2226562, -0.010826111, -0.26757812, 1.6611328, -1.2480469, 2.1542969, -2.3710938, 0.27368164, 2.28125, -1.5664062, 0.7138672, -0.4489746, -0.1685791, -1.1064453, -1.4960938, 1.0234375, -0.08770752, -2.1972656, 0.52685547, -0.51904297, -1.2714844, -2.2558594, 2.4238281, -2.0078125, -2.0957031, 0.70703125, 3.4804688, -1.7802734, -1.0136719, -1.4990234, 0.6489258, -0.5864258, 2.9824219, -0.27368164, -2.46875, 0.4807129, -1.5693359, 0.72021484, -2.125, -0.9379883, 0.5185547, 0.77978516, 0.52685547, -1.5791016, -0.63427734, -0.68603516, 0.42773438, -1.5009766, -0.63720703, -1.9365234, 0.3959961, -0.089782715, -0.32177734, -1.5771484, 1.3388672, 1.3007812, 0.44482422, -1.4355469, 3.1171875, -0.035736084, -1.7294922, 0.6015625, -3.8886719, -1.1582031, -1.7958984, -2.7851562, 1.1337891, -0.5957031, -0.0022716522, 1.15625, 0.8828125, 0.328125, 2.5761719, 0.7895508, -4.0703125, 1.1494141, -1.1982422, 0.06536865, -1.5810547, -0.76708984, 1.4404297, -0.15637207, -0.73095703, -0.609375, 1.9267578, 0.16772461, 0.7167969, 0.38452148, -1.7617188, -0.5024414, 0.037841797, -1.1445312, -0.60058594, 0.35205078, 0.9213867, -1.1835938, 0.30273438, -0.38208008, 1.5585938, -0.27001953, 0.8828125, -0.42797852, 0.48486328, -0.88916016, -2.203125, -1.1640625, 0.73046875, 1.2998047, -0.07287598, -0.0028896332, -0.46948242, 1.0966797, 1.7275391, -1.4873047, 0.41308594, 0.5419922, -2.8046875, -1.4355469, 1.3779297, 0.00932312, 2.2402344, 0.3059082, -0.7988281, -0.61572266, 1.6152344, -1.7802734, -1.9775391, 1.3691406, 0.18920898, -1.0351562, -0.30981445, -3.1445312, 1.6699219, -2.2128906, 0.002161026, 0.49902344, 3.7304688, 1.8251953, 2.5214844, 3.6386719, -0.66748047, -1.015625, 1.9619141, -1.3261719, -1.5458984, 2.0820312, 1.4443359, -0.91064453, 2.578125, 0.30273438, -1.3427734, -0.5576172, 2.296875, -0.080566406, -0.09777832, -0.9511719, 0.31445312, -2.2480469, 0.671875, 0.3293457, -0.61865234, 0.9448242, 0.39648438, -0.22180176, 1.7275391, 1.9150391, -0.29052734, 1.1035156, -0.042938232, 0.3425293, 1.0458984, 0.039367676, 1.6513672, -1.1064453, 0.82910156, -0.15710449, 2.3417969, 0.13879395, 0.3996582, 1.0742188, 0.5283203, -2.1875, -1.2109375, 2.0097656, 3.4882812, 0.13989258, 1.9560547, 0.86572266, -2.0996094, 2.2617188, -0.41430664, -2.9414062, -2.2949219, 0.37646484, -0.71533203, 1.3359375, 0.09436035, -2.5292969, 0.0009880066, 2.515625, -1.9267578, 0.61376953, 0.44311523, -0.15161133, 0.9350586, -1.9746094, 0.2758789, -0.07128906, -0.32641602, -0.8183594, -0.47216797, 0.18200684, -0.23474121, 1.3828125, 3.2734375, 0.34936523, 0.18127441, 1.5117188, -0.5961914, 2.2460938, 0.74121094, -1.2802734, -3.1972656, 1.5087891, 1.6474609, 0.7861328, 1.0791016, 0.5263672, 0.73095703, -0.46166992, 0.61035156, -1.7802734, 2.703125, -0.9448242, -1.0800781, 1.5664062, -2.1933594, -1.6230469, -1.8447266, 2.0878906, 0.5522461, 1.4335938, 1.1445312, -1.015625, 0.35375977, 0.5415039, -0.8666992, -4.421875, 0.7939453, 0.14477539, -0.49169922, -0.70947266, -0.5854492, -0.6401367, 0.048553467, 0.70703125, -1.4228516, -1.9160156, -1.1435547, 0.6269531, -1.2929688, -0.7548828, -0.13989258, 0.4807129, 0.8178711, 1.5947266, -0.2626953, 0.9321289, -2.1503906, -0.39746094, 2.6210938, -0.94677734, -0.40673828, 0.8671875, 0.42333984, 0.1895752, 1.8388672, 0.9243164, -2.5410156, 2.0839844, -4.0390625, -0.88623047, -0.3046875, -1.0537109, -1.5810547, -1.0205078, -0.43017578, 1.6054688, -1.9199219, -0.8256836, 1.0478516, -1.0615234, 0.24157715, 2.4199219, -1.0625, -1.6992188, 1.5478516, 0.5029297, 1.0214844, 0.14123535, 0.07861328, -0.08770752, -2.015625, -1.6142578, 1.1123047, -1.2001953, 0.105651855, -1.9306641, 0.7285156, 2.1015625, -0.8979492, -0.6308594, 2.0410156, -0.5756836, -0.43774414, -0.5385742, -0.72216797, 2.2871094, 0.15258789, -0.51953125, -0.93896484, -1.9013672, -0.057434082, 0.04940796, 0.45874023, -1.1044922, -0.40014648, -0.9667969, 1.2539062, -0.2220459, 1.6113281, 3.2011719, 0.34179688, -1.2509766, -0.62841797, 1.2744141, -0.16137695, 2.9257812, 2.0234375, 1.5683594, -1.9941406, 4.1015625, -0.73291016, -4.1367188, 1.5205078, -2.0449219, 2.8164062, 1.1865234, -0.8881836, 0.5341797, -0.7475586, -0.5419922, -2.2128906, -1.6201172, -3.1425781, 2.1757812, 1.1123047, -1.6904297, -0.07196045, 1.1748047, 0.3774414, 1.7597656, 3.1464844, 0.765625, -1.2216797, 0.16064453, -0.9604492, -0.34033203, 0.58984375, -0.60253906, -0.7050781, 1.3398438, -0.7583008, -3.6464844, 0.48950195, 0.87890625, 2.7128906, -0.4650879, 0.5107422, 3.6933594, 1.9072266, 3.4570312, -0.5830078, 0.29858398, 1.546875, 2.1328125, -1.2148438, 2.2734375, 2.8613281, -1.7373047, -1.546875, 3.015625, -0.33081055, -1.9746094, -0.8154297, 1.0332031, 1.1767578, -3.4140625, 3.6171875, -0.018096924, 0.83496094, -0.3005371, -2.0292969, -0.77734375, -1.1201172, 1.4033203, 0.18383789, 2.0273438, -0.49804688, 0.74609375, -1.3447266, 1.0244141, 0.71777344, -3.4589844, -0.21716309, 0.41845703, -0.13427734, -0.7265625, 2.2285156, 1.7832031, 0.93847656, 1.2519531, 0.75, 2.7050781, -1.015625, 1.8417969, -0.7651367, -0.101501465, 0.98583984, 1.9521484, 0.4333496, -1.6074219, 1.859375, -0.57128906, -1.6679688, -2.2167969, 2.7460938, 2.6953125, 1.8378906, 0.045013428, -2.0605469, 1.6474609, 1.5800781, 1.8476562, -2.7226562, 0.9892578, -0.95166016, -1.8896484, -1.4052734, -0.23608398, -0.20129395, 1.8642578, 0.16723633, -1.4628906, 2.1523438, 1.3037109, 1.7275391, 0.8754883, 0.07904053, 0.7734375, -0.11126709, 0.2692871, 1.9560547, 0.121032715, -0.50878906, -0.7421875, 1.5078125, 2.6425781, 0.54248047, 0.8027344, -1.5292969, -0.97265625, 0.121276855, -0.6567383, 1.3046875, -0.15185547, -1.2675781, 0.9916992, 0.21948242, 0.2376709, -2.5742188, 2.375, -0.00045347214, 0.5913086, -0.23242188, 0.44189453, -0.49438477, 1.4355469, 0.5776367, 0.36938477, 0.94140625, -1.7666016, -0.14733887, -0.45336914, -1.8544922, 0.6870117, 1.5, -0.2524414, -0.00084257126, 0.5800781, -2.3457031, 1.2578125, 0.35302734, 1.0351562, -2.03125, -0.5444336, -0.16625977, 0.79589844, 0.54296875, 1.9462891, -0.24560547, -0.62158203, -0.40600586, -0.22314453, 0.1394043, -0.7583008, -0.49438477, 0.1315918, 3.3613281, 1.8359375, 0.8720703, -1.8808594, -1.7958984, 0.5180664, -0.01134491, 2.4785156, 0.29711914, -1.6445312, -0.6904297, 1.2226562, 1.5097656, -1.2734375, 0.46923828, -1.40625, -0.40576172, 1.1113281, 0.69091797, 1.3183594, 0.48901367, -0.6333008, -0.13305664, 2.2988281, 2.7402344, 0.48657227, 2.0332031, 2.7050781, -1.7080078, -2.8320312, 0.8754883, 0.50683594, 0.66796875, -1.0693359, -0.21984863, 0.5097656, 1.5751953, 0.5800781, -1.2998047, -0.24047852]}, "B082XSFG73": {"id": "B082XSFG73", "original": "Brand: NEXCOVER\nName: NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.\nDescription: Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.\nFeatures: \u3010Upgraded Material\u3011: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice.\n\u3010Wide Compatibility\u3011: The upgraded grill cover measures 60\"(W)*23\"(D)*42\"(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering.\n\u3010Handles & Straps & Covered Air Vents\u3011: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off.\n\u3010Easy to Use & Clean\u3011: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering.\n\u3010Reliable Customer Service and Warranty\u3011: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.\n", "embedding": [0.35473633, 1.7138672, 2.7734375, -0.9741211, 0.26586914, 0.55078125, 0.47583008, -2.0234375, 3.3808594, 1.8359375, -0.7397461, -0.5986328, 2.1074219, -5.1992188, 0.7739258, 0.31420898, 1.0673828, 2.5214844, 2.5859375, -0.7841797, 1.7851562, 0.7138672, 1.2011719, 0.22021484, 0.46435547, -0.70654297, 3.7167969, -3.4160156, -0.7397461, -0.39916992, 1.7958984, 0.6694336, 0.010467529, 2.2480469, -2.0839844, -1.9355469, -1.8925781, 1.6650391, 0.7763672, -0.47583008, -2.5722656, -2.0117188, 2.8320312, 0.32348633, -1.6455078, 0.76464844, -1.9804688, 0.11706543, -0.9633789, -2.7363281, 1.6708984, 3.1464844, 2.2265625, 0.60839844, -1.9560547, 2.0644531, 0.05697632, -1.2177734, -0.2277832, -0.23242188, 0.2565918, -1.0332031, -0.65283203, 2.6757812, -0.9375, -0.88916016, 0.640625, -0.5917969, 1.0009766, 0.3774414, 2.4511719, 1.4677734, -2.0605469, 0.39282227, 1.390625, -1.1298828, -1.8251953, 0.73291016, 0.92529297, -1.2695312, -1.8203125, 5.7851562, 0.4658203, -3.5214844, -1.5664062, 0.10797119, -1.4492188, -1.3818359, 2.3105469, -1.3935547, -0.3034668, 0.87158203, -1.2919922, -3.453125, 0.5654297, -3.3378906, 2.3007812, -0.33984375, 0.5917969, 1.1738281, -2.5039062, 0.39111328, -2.2890625, 1.109375, -3.4882812, -3.5488281, 2.234375, -0.99658203, 0.024353027, 0.0184021, -0.3347168, 0.8227539, -0.2142334, 1.4902344, 2.9824219, 0.21166992, -1.7568359, 1.8261719, -0.024658203, 2.3613281, 3.4277344, -0.09729004, 0.1361084, -1.7373047, 0.3659668, 0.00082063675, -0.23840332, 0.40820312, 3.2832031, -1.2294922, 1.0527344, -1.5458984, 1.3876953, 0.77246094, 0.3215332, -0.6791992, -0.7807617, 0.19030762, -3.2773438, 2.0039062, -1.8623047, -1.4902344, 1.1298828, -1.7939453, -3.0078125, 0.46191406, -1.0087891, 3.0117188, -1.0136719, -2.4863281, 0.94628906, -2.0566406, -0.66259766, -1.3447266, 1.3330078, 0.1574707, 0.58203125, -3.1660156, 3.4511719, 2.7128906, 3.0332031, -1.703125, 1.0380859, -0.44213867, 2.6269531, -2.8417969, -0.27978516, -0.28100586, -0.8886719, 3.3027344, -0.10852051, -0.46655273, 0.671875, 0.8491211, 1.8759766, -1.2822266, -0.06500244, 1.4277344, -0.61572266, 1.5517578, 0.1973877, -0.9638672, -0.02142334, 0.014465332, -1.1943359, -1.5019531, 0.9213867, 0.26293945, 1.2080078, -0.4885254, -0.6850586, 0.52685547, -0.37548828, 0.37548828, -2.3828125, -1.3769531, -1.625, -0.059692383, 0.2927246, 0.12310791, -1.9726562, -2.15625, -1.5576172, 0.21508789, -3.2167969, -1.6845703, -1.9560547, 0.7675781, 0.6689453, 1.0537109, 0.54785156, -1.9267578, 2.421875, 2.3183594, -1.6953125, 0.51220703, 3.0566406, 0.98828125, 1.1201172, 0.25952148, -2.3886719, -1.3808594, 0.32055664, 4.0117188, -0.18640137, 1.5791016, 1.5810547, 0.1763916, -1.5996094, -1.3994141, 0.18713379, 0.953125, -0.26464844, 0.16711426, -0.56152344, 1.1230469, 0.9350586, -1.6142578, -1.1083984, 0.37231445, -1.8662109, -2.0253906, -3.5878906, -2.328125, 1.296875, 1.0400391, -0.6665039, 2.4785156, 0.5839844, 0.08312988, -0.46191406, 0.84716797, -0.23730469, -0.11773682, 0.18725586, 1.4306641, 1.046875, 0.8823242, -1.0361328, -1.5253906, -0.6401367, -0.31713867, -0.8823242, 1.3242188, -0.14428711, -0.9560547, -0.20349121, 1.3417969, -0.46142578, -2.3007812, 1.1552734, -1.1123047, 0.56152344, -1.8925781, 0.8413086, -0.15771484, 0.5024414, 0.96728516, 1.2841797, -0.2902832, 0.00037193298, 0.95654297, 1.7373047, -2.6132812, 1.2285156, -0.18786621, 0.30859375, -2.3164062, -1.4697266, 0.8925781, 3.53125, 1.0703125, -2.0976562, 3.2988281, -0.55126953, -0.083862305, 2.0039062, -0.9272461, -1.5654297, 1.8486328, 1.4941406, 1.4609375, -0.34472656, 0.59375, -1.3271484, -0.075683594, 1.1445312, -2.6191406, -1.4306641, 1.4238281, -0.65722656, -0.8330078, 0.28979492, 1.6464844, -1.6552734, -2.2363281, 0.9604492, -2.1621094, 0.0079574585, 0.3540039, 1.4179688, 1.0820312, -3.296875, -1.9492188, -0.0028762817, 0.19628906, -2.5429688, 0.3461914, 0.33032227, -0.50390625, 0.45703125, -2.2695312, 0.9013672, -1.0527344, -0.20300293, -3.1035156, -2.3769531, -1.6875, -0.6298828, -1.2685547, 0.7998047, -1.5810547, -3.8261719, 1.6513672, 1.6230469, -2.4550781, -0.7446289, 0.9560547, -1.5751953, 1.7304688, 0.089660645, 0.3942871, 0.5566406, -3.8222656, 0.8432617, -2.6328125, -0.19836426, -0.33496094, -0.6245117, -0.36645508, 0.81591797, 1.0292969, 0.045684814, 1.5292969, 1.7578125, 0.5, 0.87939453, -2.7871094, -1.0820312, -3.4414062, 0.37304688, -0.9926758, 0.92041016, -3.703125, -2.6425781, 0.87841797, -1.4980469, 4, 0.09484863, 1.2011719, -0.9711914, -1.984375, 1.2216797, -1.0683594, -2.6679688, 1.0898438, 1.5185547, -1.9423828, 0.21655273, -3.7773438, -2.7753906, -0.7998047, -0.29101562, 0.41381836, -0.97265625, -0.38549805, 1.5791016, -3.5527344, -1.4033203, -0.9165039, 0.86083984, -0.47851562, -1.0126953, -0.09240723, -4.0703125, -2.3515625, -1.5742188, -3.1289062, 2.0195312, -1.1933594, -0.43725586, 2.5839844, -0.45410156, 4.7265625, 0.1149292, -3.6171875, 1.0292969, 1.5439453, 0.066467285, 2.9980469, -0.035736084, -0.115600586, -1.4111328, 0.9785156, 2.4609375, 1.1113281, 1.1542969, 2.3457031, 1.3408203, 1.5380859, -0.18066406, 0.90478516, -2.03125, 1.9492188, 2.7675781, -0.41723633, -0.03265381, 0.4633789, -0.21887207, -1.4277344, -0.6508789, 1.9257812, 1.1884766, 0.62060547, 1.0996094, -0.60791016, 1.3515625, -1.6191406, 3.3925781, -1.4228516, 1.9414062, 0.22473145, 0.4831543, 0.9477539, -1.5722656, 2.4355469, 2.140625, 0.7260742, 0.89941406, 1.6835938, 0.03112793, -0.15771484, 0.07543945, 1.4082031, -0.034332275, -1.6542969, 2.34375, -0.69970703, 0.64697266, 2.5527344, -3.0585938, 2.3125, -1.6367188, -0.23730469, 1.4658203, -1.5253906, 0.6176758, -1.2802734, 0.21838379, 0.19543457, -2.2460938, -0.23815918, -3.3789062, -1.4023438, 0.5419922, -3.1484375, -2.09375, -0.3388672, 3.2382812, 0.5410156, -2.4121094, -0.3408203, 1.3652344, -1.0839844, -2.8007812, 0.9892578, 2.7753906, -0.18762207, 3.7675781, 3.0351562, -2.671875, 2.0507812, -3.1152344, 1.4541016, 0.31811523, -1.1914062, -0.40625, -0.16027832, -0.31274414, 0.19677734, 2.9238281, 1.015625, 2.5878906, -0.010887146, 0.21008301, -1.7919922, 0.56689453, 1.3544922, -1.7197266, -0.79003906, 2.390625, 1.7304688, 0.2685547, 0.56591797, 1.2324219, 0.13500977, -1.6318359, 1.5166016, -1.7871094, 0.71435547, -0.31567383, -4.1601562, -0.8432617, -0.42651367, -1.4599609, 1.2792969, -0.09716797, 0.58203125, 2.1875, 0.1083374, -1.4335938, 0.011299133, -2.5742188, -2.1484375, 0.7558594, -0.87158203, 0.9482422, 0.5258789, -1.8935547, -1.6455078, -3.6113281, -2.140625, 0.17419434, 0.33813477, -0.08703613, 1.1416016, -3.3574219, 0.8364258, -2.7890625, -0.51171875, 0.18408203, 0.88720703, -0.013916016, -1.9355469, 0.8623047, 0.14331055, 0.103271484, 0.42797852, 0.8149414, -1.1699219, -1.2285156, 0.32128906, 1.2714844, 2.9570312, -1.0449219, -3.2773438, -0.7973633, 0.52441406, 1.9121094, -0.91748047, -1.1513672, -0.33081055, -0.9301758, 1.0751953, 0.119628906, 2.3261719, 1.7539062, -1.1171875, -2.5039062, 0.62158203, -1.1699219, -0.54833984, -0.7529297, 0.19567871, 0.24645996, 1.3740234, -1.7431641, -3.0917969, 3.0820312, 0.089538574, 0.046966553, -2.0273438, 3.1621094, 2.1347656, 2.578125, 2.4960938, -2.65625, 1.0869141, 1.0332031, -0.44213867, -0.19433594, 0.2890625, -2.0019531, 1.1083984, 1.7744141, 1.3027344, -2.2421875, -1.9082031, -0.89746094, -0.33374023, -1.0966797, -2.328125, 1.6347656, -0.5449219, 1.7041016, 1.0830078, -2.1679688, 1.6240234, -0.3479004, -0.3449707, 2.859375, -2.3027344, -0.5649414, 1.0732422, 1.4042969, -0.2290039, 0.47485352, 0.22705078, 0.2783203, 0.017059326, -0.9399414, -0.058044434, 0.7788086, -1.6953125, -1.5283203, 1.3837891, 1.5751953, -1.7841797, -0.3959961, 3.8828125, 2.7617188, -0.7392578, 1.9873047, 1.6972656, -1.609375, 2.2441406, 1.1416016, -1.0146484, 1.765625, -0.14074707, -0.38500977, 0.8330078, -0.8022461, -2.1210938, -0.14440918, 1.421875, -0.33935547, 1.2246094, -1.1201172, -1.4257812, 3.9511719, -1.9189453, 0.0074386597, 0.5053711, -0.37231445, 0.034118652, -0.33740234, 2.5820312, -0.9902344, 1.0585938, 4.1367188, -1.2060547, -4.09375, 0.8144531, -0.64208984, -0.32836914, -2.3320312, -1.8847656, -2.4589844, -0.84033203, 2.3691406, 1.8740234, 0.7011719, -0.6953125, 1.8964844, -2.8554688, 0.43188477, -0.1005249, 0.84814453, -2.7636719, -0.6220703, 2.6582031, -2.2578125, -0.46411133, -0.9321289, 0.1161499, 1.6113281, 1.1669922, 1.5703125, 0.57714844, 0.03491211, -0.5761719, -3.9453125, -2.3554688, -0.60058594, 0.6635742, -1.1816406, 0.94140625, 0.06585693, 1.6074219, -0.12805176, -0.49072266, -0.87060547, -1.4589844, -0.2770996, -0.36376953, -2.109375, -1.5986328, -1.453125, -2.1230469, 0.26782227, 0.953125, 1.4804688, 0.9140625, -4.8046875, 0.17297363, 1.0058594, -3.3691406, -0.9897461, 2.078125, 0.21557617, 1.1308594, 0.5126953, -0.33032227, 0.43798828, 2.5859375, -0.86572266, -0.6098633, 0.79296875, -0.48413086, 0.734375, -0.2993164, -0.29589844, 2.1484375, -2.1835938, 1.7167969, 0.7260742, -0.5307617, 2.7421875, 2.3847656, 0.18847656, -0.40356445, 0.17126465, 1.4150391, 2.8847656, 0.7080078, -0.59716797, -0.35058594, -1.4804688, -3.1757812, 0.6635742, -2.4199219, -1.8398438, -2.03125, 0.021240234, 1.4511719, 2.125, 0.9863281, 1.6796875, 1.3583984, -1.1210938, 0.42114258, 0.8798828, 4.2226562, 0.9008789, -2.3964844, -0.31445312, -0.72558594, 0.3010254, 1.1572266, 0.7138672, -0.8666992, 1.1181641, -1.5458984, -0.24829102, 0.8642578, 1.9375, 0.27783203, 0.03173828, 0.55810547, 0.9765625, 2.3144531, -0.51464844, 1.0478516, -0.29174805, 1.8017578, -2.0332031, 1.4892578, 0.44018555, -3.0449219, -0.5488281, -1.7558594, 0.49560547, 1.2275391, -1.1337891, 0.2631836, -0.5097656, -1.1054688, -2.1777344, -1.2050781, -4.0820312, 1.4667969, -0.8564453, -0.94140625, -1.0039062, 1.1542969, -0.0008068085, 3.1386719, 1.7148438, 0.47192383, -0.8833008, -0.5292969, -2.3886719, -0.18310547, -0.30566406, -2.4960938, -0.17504883, -1.2294922, 1.2001953, -0.70703125, -0.34448242, 0.546875, 0.85839844, 1.5888672, 2.34375, 2.2695312, 2.3691406, 1.7490234, 1.1923828, 1.4619141, -0.37597656, -1.8876953, -0.60791016, 3.1855469, 1.9150391, 3.8476562, -1.4433594, 1.5644531, 0.1295166, 0.25561523, 0.38061523, -0.68115234, 1.7617188, -2.875, 0.41577148, 2.5703125, 1.2939453, -0.2890625, 0.8413086, -1.8173828, -1.0458984, 0.41918945, 0.06500244, 4.2070312, -1.1035156, 1.9189453, 0.61816406, 1.9375, 2.5058594, -3.09375, 0.9760742, 0.1159668, -2.7285156, -1.5097656, 0.17102051, 1.9931641, 3.0546875, -1.1132812, 1.8496094, 1.3496094, 2.1679688, 1.2421875, -1.0478516, 1.0966797, -1.015625, 2.6679688, 1.9169922, -2.234375, -1.2333984, -0.41870117, -2.0878906, -1.1220703, 1.3261719, 2.0566406, 1.2197266, 1.1132812, -4.1289062, 1.6650391, 1.671875, 3.3144531, -1.2744141, -0.48095703, -1.1591797, -2.5371094, -0.98828125, 0.25976562, -1.921875, 2.4003906, 0.7607422, -0.31201172, 2.6308594, 1.0673828, 2.1484375, 0.2626953, 1.8183594, -0.13757324, 0.85546875, 0.7636719, 1.34375, 1.7919922, -1.8544922, -0.28442383, 0.7836914, -0.19677734, 1.8408203, 0.5932617, -0.4729004, 1.8291016, 2.1347656, -0.7548828, 1.4277344, -0.08483887, 0.41967773, 0.19628906, 1.2900391, -0.32226562, -1.78125, 1.0107422, 2.9238281, 0.21740723, 1.9072266, 1.6210938, -0.81640625, 2.0449219, 0.22363281, -0.9057617, -0.7714844, 0.68115234, 0.7597656, 0.109802246, -0.5185547, -1.0576172, 0.4362793, -1.1992188, -0.25756836, -0.62060547, 0.8095703, -0.84375, -0.024627686, 0.80029297, -1.4072266, -1.5751953, -0.23168945, -1.0234375, -0.83203125, 2.3261719, 1.4365234, -1.8457031, -2.2050781, -1.5039062, 0.09887695, -1.1572266, -2.6894531, 0.8417969, 3.1347656, 2.2382812, -1.046875, -1.3095703, -2.9335938, -1.2197266, -0.86621094, 1.5751953, -0.7314453, -0.9511719, -0.6376953, -0.3161621, 3.359375, 0.13220215, -1.3681641, -1.4599609, 0.097595215, 2.1269531, -0.6557617, -0.38232422, -1.7460938, -0.39453125, 2.4726562, 1.2685547, 3.6386719, 0.63623047, 0.9326172, 3.375, -0.8647461, -2.671875, -0.7885742, 0.30371094, 0.37670898, -0.7260742, 1.3203125, 2.3398438, -0.7236328, -0.7338867, -0.28833008, -0.8828125]}, "B012RMROVG": {"id": "B012RMROVG", "original": "Brand: Hiland\nName: Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze\nDescription: \nFeatures: External Integrated Piezo Ignition. BTU's: 40,000. Uses a 20lb Propane Tank\nStainless Steel Lid Included\nCSA Regulator and Hose Included\nFireglass Included\nThermocouple and Anti Tilt Safety Devices\n", "embedding": [-0.37939453, 0.5566406, 2.5839844, 0.014793396, -1.0009766, 1.4169922, 0.92822266, -1.6240234, -0.25610352, 1.3105469, 0.7602539, 0.7636719, -1.5439453, -3.5917969, 1.3154297, -1.6650391, 1.1640625, 0.31884766, 1.6923828, 0.6411133, 2.3085938, 0.010032654, 1.4003906, -1.2832031, 1.3027344, 0.65771484, 5.0234375, -3.3417969, 0.3642578, 0.42260742, 0.55859375, 0.75927734, 0.48901367, 1.5947266, -1.8330078, -1.3925781, -0.98095703, 0.37817383, -3.6542969, 0.33911133, -2.3632812, -1.6113281, 1.0449219, 0.74853516, -1.7929688, 0.45117188, 1.6376953, 0.064331055, -0.5751953, 1.1123047, 1.2363281, 0.9086914, -1.3388672, 0.91015625, -1.046875, 1.4365234, -0.85839844, -1.3964844, 1.9003906, 0.117248535, 1.5605469, -0.5908203, -0.9458008, 0.8466797, -0.5629883, 0.7368164, 0.07513428, -1.5253906, 1.1347656, 0.95947266, 1.2226562, -1.0849609, 0.19384766, -0.81396484, -0.43896484, -0.3725586, -2.7597656, 0.82714844, 1.1923828, -1.03125, -0.6508789, 1.5478516, 0.21911621, -2.6621094, -0.80322266, -1.1894531, -0.020492554, -1.5986328, 0.63916016, 0.671875, -0.09124756, 2.7851562, -0.28125, -4.6015625, 0.86035156, -0.23803711, -0.15527344, 0.45385742, 0.79785156, 0.80371094, 0.51904297, 0.3425293, 0.38720703, -0.11883545, -1.3828125, -0.27148438, 1.0175781, 1.8867188, -1.2519531, 0.28320312, -1.4599609, 0.61816406, 1.2255859, -0.63134766, -1.9140625, 0.8354492, 1.7597656, -0.19360352, 3.1542969, 1.8076172, 3.7011719, -1.4179688, 0.6230469, -0.1784668, -1.1650391, 0.73535156, 0.5527344, 0.22961426, 1.6591797, -1.6582031, 1.9794922, -0.88623047, 2.4003906, -0.20544434, -1.3671875, -0.7104492, -2.5117188, -1.5029297, -3.4160156, -1.3964844, -0.49121094, 1.4609375, 1.0205078, -0.47387695, -4.5625, -0.77978516, -1.8632812, 1.6308594, 0.8100586, -2.1679688, 1.2792969, -1.3623047, 2.1230469, -1.5078125, 2.2304688, -0.3095703, -0.65478516, -1.7099609, 2.8378906, 0.9746094, 0.43554688, 1.1162109, -2.4472656, 0.6791992, -1.1708984, 0.30297852, 1.8417969, -0.0748291, 0.41186523, 2.7304688, -0.087890625, -2.0703125, -0.5004883, 0.35595703, 0.19592285, -0.9848633, 1.1318359, 1.9404297, 0.45141602, -0.016830444, -2.4257812, -2.1699219, 0.8154297, 1.0947266, 1.0205078, -0.8901367, 0.34399414, -3.5332031, -0.1282959, -0.9160156, -0.67529297, -0.46777344, 0.2746582, 0.8066406, -1.5703125, -2.7832031, -2.3964844, -2.8554688, 0.9692383, -0.42358398, -0.3227539, 1.1123047, -0.64453125, 0.46655273, -1.5791016, -0.76904297, 1.0058594, -0.53125, 3.8378906, 1.3525391, 1.9833984, -1.1445312, 1.9570312, 0.13586426, 0.55029297, -4.1914062, 1.1572266, 0.9477539, 0.9458008, 0.37939453, 1.2558594, 1.9521484, 0.8046875, 1.5332031, 0.13623047, 0.22680664, 1.0322266, 1.3876953, -2.8457031, -0.91845703, 2.4414062, 1.6064453, -1.1992188, 0.2680664, -0.34716797, 3.0605469, -0.11016846, -1.4042969, 1.390625, 0.08300781, -0.030059814, 0.32763672, 0.18334961, -0.10797119, -1.0361328, 0.9458008, 0.38793945, -0.5673828, 1.4306641, -0.4711914, 0.16577148, 0.40966797, -0.60791016, 1.9091797, -0.29003906, 1.7792969, -0.59472656, -0.8901367, 1.4951172, -2.7578125, 1.8632812, -0.14562988, -0.18896484, 1.3710938, -0.6479492, -0.6489258, 2.2773438, -0.43017578, -2.1933594, 0.23449707, 0.13354492, 0.2998047, 2.4023438, -0.10205078, 1.5273438, 1.2451172, -0.9638672, 2.1289062, 0.14575195, 1.5898438, 0.07678223, 1.0791016, 1.9707031, -0.8754883, -0.5541992, 1.2490234, 1.3027344, -0.32202148, -2.4492188, 0.018569946, 4.3125, -0.9770508, -1.6347656, 3.0195312, 1.03125, 1.234375, 1.0224609, -0.9526367, -2.5507812, -2.2207031, 1.0683594, 1.5263672, 0.7626953, 1.6552734, -1.1113281, -0.013832092, -0.23828125, -1.3349609, 0.38793945, 0.7363281, 0.020996094, 0.24584961, -2.8515625, 1.7509766, -2.9550781, -2.4277344, 2.3222656, -2.8847656, 0.2614746, -0.53515625, -0.4814453, 1.4277344, 0.11450195, 0.34521484, 0.15319824, 1.8505859, -1.4130859, 0.9746094, 0.921875, -1.015625, -1.4775391, -1.5205078, -1.0048828, -2.3632812, -1.578125, -0.13891602, -1.6630859, -2.3261719, 3.1621094, -1.8310547, -0.74609375, 0.83154297, -0.59228516, 1.625, -0.22668457, -2.1777344, -0.32080078, 0.13720703, -0.41601562, 0.32128906, -0.22473145, 2.984375, -1.53125, -3.9726562, -1.9482422, 0.5449219, 1.6630859, 0.19433594, -0.92822266, -1.0791016, 1.2099609, -0.02911377, 1.6611328, -1.1181641, -0.1538086, -1.171875, -0.25146484, -4.3085938, 0.51220703, -2.0332031, 1.1894531, -1.7929688, 1.0087891, -0.40966797, -1.1132812, 1.2851562, -0.84716797, 5.3984375, 0.55859375, 2.5761719, -0.6074219, 0.73339844, -0.21130371, -3.0664062, -2.6894531, 0.15319824, 0.09661865, -0.04852295, -0.62158203, -3.0761719, 0.2019043, -1.984375, 0.4399414, 1.109375, -0.42114258, -1.8916016, -0.06768799, -0.050750732, -0.11767578, -0.79296875, -0.9086914, 0.79589844, 1.3710938, 0.008956909, 0.036132812, -1.1650391, -0.6513672, 1.3632812, 1.4189453, 0.78027344, 0.15478516, 1.4140625, -0.7241211, 1.9560547, -1.4238281, -3.9765625, 2.0722656, 2.6210938, -0.79345703, 0.089416504, -1.7900391, -3.4277344, -1.6123047, 1.5, 2.828125, 2.7988281, 1.7548828, 0.027679443, -0.44580078, 0.7089844, 1.4667969, -0.5649414, -1.1982422, -1.1845703, 1.5439453, -3.3300781, -2.0390625, 0.90966797, 1.0654297, -4.8710938, -1.3242188, 0.57177734, -0.19238281, 2.5761719, 0.15942383, 0.08843994, 1.9140625, 0.48095703, 1.5058594, 0.1920166, 0.77441406, 0.33520508, 0.19299316, 1.2636719, 0.5527344, 0.8256836, 2.21875, 1.0341797, 1.0703125, 0.9316406, 1.0332031, -1.6201172, 0.16101074, 0.6220703, 0.036254883, -0.60498047, 1.7802734, -1.2705078, 0.33398438, 2.1953125, 0.21374512, -0.54052734, -1.7773438, 0.04248047, 0.1295166, -0.17456055, -1.1669922, -0.011077881, 0.33398438, 0.18579102, -0.65527344, 0.9165039, -0.50683594, -0.08050537, 0.14807129, -0.26416016, 1.1201172, -0.97021484, 3.0058594, -0.47729492, 0.053771973, -0.31103516, 1.5029297, -1.1308594, -1.2880859, -0.6010742, -3.6484375, 0.39746094, 1.7382812, 0.31640625, -1.0410156, 0.18981934, -2.0722656, 0.9243164, 1.5615234, -0.5761719, 0.61816406, 0.86279297, 1.1513672, -0.21606445, 0.64404297, 2.0839844, 0.40112305, -3.109375, 0.05593872, -2.0449219, -0.69433594, 2.8417969, -0.08441162, -0.54052734, 3.3339844, -0.49023438, 3.0878906, 0.17578125, 3.25, -0.8022461, -1.6669922, 2.4414062, -0.82470703, -1.7988281, -2.0664062, -3.6230469, -0.7163086, -2.6132812, -0.08618164, 1.7587891, 0.8774414, -0.5283203, -0.1508789, 0.99853516, -4.09375, -1.2646484, -1.5136719, 0.07513428, -1.8105469, -0.31445312, -0.036346436, 0.50146484, -2.7597656, -1.3105469, 0.9633789, 0.57714844, 0.019958496, -0.37841797, -1.6630859, 0.26489258, 0.6220703, 0.37719727, -0.20202637, -0.7270508, -0.42382812, -1.0097656, -0.048187256, -1.1923828, 4.0976562, 0.15722656, -0.7807617, 0.9272461, 5.0546875, 0.7480469, -0.45874023, 0.004634857, 0.39331055, 1.5, 0.3544922, -3.1445312, -0.93896484, -2.3535156, 0.67871094, 1.2333984, 0.6816406, 0.79785156, -1.5126953, 1.4521484, 0.9746094, 0.9267578, 0.50683594, 1.4355469, -1.0146484, 1.7382812, -0.39208984, -1.6943359, -0.8901367, -0.61035156, -1.0009766, -1.9560547, 0.20471191, -2.0410156, 0.32739258, -0.34570312, 0.63623047, -2.6386719, 2.2636719, 2.9472656, 1.1025391, 2.7265625, -1.7255859, -2.1464844, -0.042388916, -0.19677734, 0.90771484, 0.57714844, -1.2441406, 0.0725708, -0.21081543, -0.3359375, -0.6040039, 0.039764404, 0.5229492, -1.0185547, 0.50878906, -0.63623047, -0.8540039, -1.7382812, 1.1347656, -2.5136719, -0.77441406, 1.2861328, -0.1875, -1.3740234, 0.38134766, -0.18322754, -1.5332031, -0.38793945, -0.83154297, -0.04348755, 2.6464844, 0.3269043, 0.93310547, 0.8510742, 0.6503906, 1.4726562, 1.5341797, -1.9707031, 0.5908203, -0.44750977, 0.14477539, -2.1191406, 0.14587402, -0.6645508, 1.4814453, 1.1425781, 2.7011719, 0.3173828, -1.2294922, 1.8574219, 0.80615234, -0.84033203, 0.45996094, -0.63623047, -1.3154297, 2.4550781, -1.4609375, -2.5820312, -1.2041016, 0.94433594, -0.5078125, 1.4150391, 0.03326416, -1.8701172, -1.9697266, -1.4785156, -2.4414062, 0.8046875, -0.9160156, 0.13842773, -2.5722656, -0.49267578, -0.2512207, 1.9521484, 0.8540039, 0.52734375, -0.890625, 0.5449219, 0.12005615, -0.16333008, -1.0175781, 1.0263672, -0.92871094, 0.034973145, 1.9902344, 0.7866211, 0.028335571, 1.1162109, 1.75, -0.86621094, 0.32617188, -1.4091797, 2.3535156, -2.8691406, -0.26586914, 0.9238281, -1.2958984, -0.33544922, -1.9306641, -0.30395508, -2.7675781, 1.7958984, 1.5683594, 1.7255859, 0.20263672, -0.22558594, -2.5449219, -2.3769531, -1.7929688, -1.4091797, -1.5478516, 2.4667969, -0.12158203, -1.15625, 0.77978516, -0.006378174, 0.76953125, 0.32836914, 0.5283203, -0.9501953, 0.09320068, -0.47436523, -0.84033203, 0.30639648, 1.3398438, -0.92626953, -0.19616699, -1.1376953, -1.3886719, -3.6875, 1.8720703, -1.6513672, 1.5771484, 0.6513672, -0.0054855347, 1.8330078, 0.6738281, 1.4707031, -1.9365234, 1.7148438, -0.4177246, -0.1541748, 2.0449219, -0.42016602, 1.8261719, 1.109375, -1.4707031, -0.27929688, 0.13916016, 0.6958008, -1.3535156, 0.14587402, -0.11987305, -0.6977539, 0.3779297, -0.7739258, 0.98535156, 1.0898438, 1.1933594, 0.31591797, -0.7895508, -1.5185547, -1.2988281, -2.9628906, -0.54345703, -2.5761719, -0.3857422, -0.31420898, 2.0058594, 1.8066406, 0.33203125, 0.10992432, 0.56347656, -0.15637207, -1.0273438, 2.2773438, -0.55859375, 1.5761719, 1.8789062, -0.96777344, -3.6015625, -2.8105469, 0.5439453, 2.2480469, -0.8925781, -1.0703125, -1.4726562, -2.2714844, 0.19494629, 0.19177246, 1.1162109, 1.4189453, 0.07824707, -1.4882812, 1.7285156, 2.0429688, -0.90966797, 1.6162109, 0.61816406, 1.2236328, -1.0908203, 1.9140625, 0.11657715, 0.7636719, 1.3994141, -0.796875, 0.048583984, -0.1595459, -0.3894043, 1.7255859, -3.4804688, 0.5234375, -0.31054688, -1.6552734, -3.1152344, 0.5395508, 0.7915039, -0.7578125, 0.66308594, 0.37158203, -0.18139648, 1.2119141, 2.5332031, 1.53125, -0.32958984, -0.89404297, -1.3847656, -0.14782715, 1.3740234, -0.578125, 1.4755859, 0.9682617, 1.1298828, -1.5292969, 1.75, -0.25952148, 1.40625, 3.0839844, 3.6992188, 1.7441406, 1.8134766, 1.9609375, 0.49243164, 1.4492188, 1.9365234, -2.1035156, 0.08782959, 0.88378906, 0.75, 0.9238281, 1.2460938, -0.81396484, -0.03756714, -0.4885254, -1.5029297, 0.7841797, 1.0888672, -2.1445312, 1.3320312, -0.16101074, 0.38330078, -1.65625, 0.14331055, 0.02168274, 1.5976562, 1.3994141, -2.0917969, 1.8886719, 0.67822266, -0.072021484, -0.115356445, -0.8359375, 0.7734375, -2.9765625, 0.8691406, -0.077819824, -3.3085938, -1.4570312, 0.4794922, 1.0761719, -0.17358398, 0.44189453, -0.3088379, 0.9345703, 1.6044922, -0.41796875, -1.2275391, 0.8486328, 2.1875, 1.8066406, 1.2011719, -0.6508789, 0.7246094, -0.2631836, -0.8515625, -2.8691406, 1.4443359, 2.515625, 0.5996094, 0.39672852, -1.0351562, 0.7729492, -1.4208984, 0.3779297, -1.9091797, 0.87353516, -0.24584961, -1.0869141, -0.64404297, 1.3056641, -0.8901367, 2.4375, 0.7421875, 0.31225586, 0.81689453, -0.060516357, 1.15625, -0.17504883, 1.2011719, 1.6152344, 1.2314453, -0.9604492, 2.8535156, -0.08465576, -0.20056152, 0.9223633, 2.5917969, 1.3535156, 0.1628418, 0.828125, -2.3183594, 2.2011719, 1.0322266, 0.4934082, 0.05911255, -1.6132812, -3.1132812, -1.0683594, 0.5444336, -0.6376953, -0.85498047, 4.125, 1.4238281, -0.7363281, -2.5488281, 2.3300781, -0.1282959, 0.52197266, -1.8974609, -0.9501953, -1.7109375, -1.0849609, 2.46875, -1.828125, -1.6972656, -1.1210938, 2.0332031, 0.032287598, -2.2265625, -0.107177734, -0.21984863, 0.3305664, -1.3564453, 1.2314453, -0.55126953, -0.43652344, 0.16015625, 0.40234375, -1.0537109, 1.1875, -0.17150879, -0.65527344, -0.04260254, -1.0595703, -0.38671875, 0.7373047, -0.6352539, 0.73535156, 3.1796875, 0.33276367, 1.1083984, -1.8222656, -4.0820312, -1.9902344, -2.046875, 0.69873047, -0.20300293, -0.9370117, 0.2364502, 2.5234375, 2.7246094, -1.0683594, -0.7910156, 0.69677734, -1.3691406, 1.1152344, -1.6982422, 1.3203125, -0.2849121, 1.0654297, 0.62109375, 2.0332031, -0.2854004, 0.32250977, 2.0566406, 3.84375, 0.8041992, -1.1855469, -0.94873047, 0.20385742, 1.1757812, 0.8510742, 0.7163086, 1.1630859, 0.47509766, -1.5302734, -3.1230469, -2.2070312]}, "B08JG6NS6L": {"id": "B08JG6NS6L", "original": "Brand: WADEO\nName: WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17\" and 22\" Table Grill and Most LP Gas Grill with 3/8'' Connect Fitting\nDescription: ATTENTION!!!
          Only Use for Low Pressure System.
          Please keep away from children.
          The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
          DO\u00a0NOT\u00a0PUT\u00a0THE\u00a0HOSE\u00a0TOO\u00a0CLOSE\u00a0TO\u00a0THE\u00a0COOKING\u00a0AREA\u00a0OR\u00a0IT\u00a0MAY\u00a0CAUGHT\u00a0HOSE\u00a0MELTING\u00a0AND GAS LEAKAGE.\nFeatures: \ud83c\udf1fTwo ways to Use: If your grill is Blackstone 17 \"and 22\" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8'' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly.\n\ud83c\udf1fFits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8\" male flare connection. And it also suitable for Blackstone 17\u201d and 22\u201d table grill (Need to use the propane elbow adapter).\n\ud83c\udf1fGreat Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8'' male flare.\n\ud83c\udf1fMaterial: Durable material provides secure and safe connection from your grill to other appliances. and it's only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use.\n\ud83c\udf1fPlease Note: Working Temperature rang: -30\u2103~50\u2103, please keep your grill away from fire in case the hose melting and result in gas leakage; \u2757Only use for low pressure system, you cannot connect this kit on a high pressure application. \u2757Before buying, make sure the kit's size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.\n", "embedding": [-1.2685547, 0.71484375, 0.28808594, -0.24621582, -0.07861328, -0.35131836, 1.9990234, -0.48217773, 0.7246094, 1.5898438, 0.79785156, 0.34155273, 1.9345703, -3.9765625, 0.47216797, 0.39501953, 1.4023438, 0.70703125, 2.7480469, 0.025650024, 2.078125, -0.82714844, 2.8417969, -1.7958984, 1.2021484, -1.0146484, 2.9140625, -3.1757812, -0.035369873, -0.45825195, 0.7675781, 0.66308594, -0.07647705, 1.5722656, -3.9375, -1.3701172, 0.33764648, 1.7978516, -2.9863281, -0.93408203, -1.140625, 2.0058594, 2.4140625, 1.9267578, -2.9550781, 0.87890625, 0.27246094, 0.92871094, 0.82177734, -1.0703125, 2.0625, 2.1621094, 0.5698242, 0.5625, -1.8359375, 0.47558594, 0.56591797, -3.7089844, 1.5146484, -0.48364258, 1.890625, 0.10406494, -2.6230469, 0.9863281, -0.3984375, 0.85498047, 0.60009766, -0.09106445, 0.92285156, -0.0925293, 0.72021484, 1.3720703, -0.46679688, 0.03744507, -0.23754883, -0.27734375, -3.1015625, -0.45776367, 1.6591797, -0.067993164, -2.0488281, 3.3691406, 0.94140625, -3.2539062, 1.6191406, -0.38061523, -2.3476562, 2.0058594, 1.859375, 0.89941406, -2.6289062, 3.7441406, -3.1054688, -4.0859375, 1.6337891, 0.6464844, 0.24328613, 1.4658203, -0.984375, 0.8486328, -1.9189453, -1.4365234, -0.6308594, 1.1240234, -2.9570312, -2.0585938, 0.48608398, 0.95751953, -2.2773438, -0.4169922, -0.014442444, -0.19714355, 3.9042969, -0.44458008, 0.8730469, 0.13464355, -0.14770508, 0.8066406, 2.6484375, 2.0683594, 3.3457031, 0.09399414, 1.3671875, 0.26391602, 0.40161133, 0.22155762, -0.4802246, 0.98291016, 3.7578125, -0.5703125, 0.29052734, -3.0117188, 2.9179688, -0.43823242, -0.32739258, -2.3847656, 1.6035156, -1.7089844, -1.9814453, -1.6728516, -2.9570312, -0.42578125, 1.0644531, -0.40820312, -3.9199219, -1.2753906, -2.703125, 0.37695312, 1.3212891, -1.5693359, 0.37036133, -0.4555664, 0.86572266, -1.1669922, 1.8232422, 1.0693359, 0.24560547, -1.1162109, 4.3125, 1.2998047, 0.16503906, -1.4277344, -1.2919922, 1.6738281, 0.2467041, -1.7177734, -0.8984375, 1.6474609, -0.89208984, 1.0791016, 0.46972656, -2.8027344, 0.66845703, -0.43676758, 1.0107422, -0.65283203, 0.50634766, 2.3085938, 1.9765625, 1.8808594, -3.203125, -2.6894531, -0.71484375, -2.5664062, 0.96484375, -1.3261719, -2.0605469, -0.48632812, 2.3261719, -0.86376953, -0.9746094, 0.34106445, -0.09112549, 2.9609375, -0.5551758, -1.8896484, -2.8925781, -0.021316528, 2.046875, 1.0859375, -1.7714844, -1.8251953, 2.5058594, 0.07293701, -1.5234375, -2.1035156, -1.0302734, -0.39624023, -0.6713867, 1.2597656, -1.0195312, 0.03012085, 2.6855469, 0.27416992, 0.09490967, -2.1113281, 3.921875, 2.046875, 2.2929688, 0.9526367, 0.05407715, -0.4411621, -0.21276855, 2.7363281, 3.1757812, 0.9511719, -0.4074707, 1.1113281, -2.6953125, 0.59716797, 2.3046875, 1.7666016, 0.37817383, 0.08117676, -0.09362793, 2.9726562, 1.8681641, -0.32470703, 1.5859375, 2.9238281, -0.10369873, -1.5556641, -0.62890625, -2.2753906, 0.66552734, -1.4111328, -2.9804688, 2.1152344, 0.5761719, -0.26879883, 0.6977539, -0.22717285, -1.2714844, -1.6318359, -0.83935547, 0.8129883, -0.18762207, 1.3681641, -0.07989502, -0.96728516, 1.3876953, -0.8149414, 0.027893066, 2.5820312, 1.2617188, -0.31274414, 2.65625, -1.2519531, -2.2714844, -0.62939453, -0.47387695, 3.4765625, 2.1484375, -0.32250977, 0.11456299, 1.2373047, -2.4453125, 1.0478516, -0.79003906, 0.72021484, 0.47851562, -0.17590332, 1.5761719, -3.2558594, 1.4082031, 0.59765625, 0.72753906, 0.5761719, -1.8828125, 1.9677734, 3.7402344, 0.27270508, -2.5097656, 2.921875, 1.4951172, -0.26782227, 0.9394531, -1.2851562, 0.60791016, -0.15161133, 0.45336914, 1.5107422, -0.9863281, 2.7265625, 1.4580078, 0.10015869, -1.6708984, -2.8632812, 2.1992188, 1.7011719, -2.046875, -0.7973633, -0.78808594, 2.8496094, -1.6943359, -0.97021484, 1.1015625, -2.0488281, -0.4868164, 1.2470703, -0.96728516, 1.0400391, 0.4873047, -1.6904297, -0.47485352, -0.38867188, -0.8847656, 1.515625, 1.3046875, -0.7758789, 0.28076172, -0.57177734, -0.20837402, -2.4765625, -1.9511719, -0.21508789, -2.1035156, -2.5703125, -0.41259766, -2.203125, -2.6933594, 0.20898438, 0.12200928, 3.1035156, -0.17053223, -0.8041992, -0.35180664, 0.7192383, 0.07525635, -0.68847656, 0.62597656, 1.3388672, 0.17553711, -2.8710938, 0.2512207, -0.97216797, 0.97802734, 1.1357422, -1.3105469, 1.1259766, -0.31811523, 1.3642578, 0.29370117, 0.69873047, 0.7758789, -1.6777344, 2.2714844, -3.0761719, -0.93847656, 0.23303223, 2.2441406, -1.4960938, 0.8647461, -1.6572266, -1.0029297, 0.08935547, -1.3134766, 2.6308594, -1.2666016, 1.5693359, -0.12365723, -0.23791504, 1.3378906, 0.0026283264, -2.2382812, -0.56591797, 0.40112305, -0.94921875, -1.984375, -4.5234375, 0.030532837, 0.93066406, 0.12121582, 0.4699707, 0.43359375, -0.13183594, 0.23962402, -0.87597656, 0.5307617, -0.41259766, 1.1591797, 2.7109375, -2.3964844, -0.33862305, 0.5708008, -1.0097656, -1.0195312, 0.071899414, 1.734375, -1.4580078, -0.64697266, 0.4333496, -0.3544922, 1.5517578, 0.7661133, -2.9160156, 1, 1.1035156, -3.0625, 2.2675781, -0.5488281, -0.17041016, -2.4023438, -1.4941406, 3.5957031, 2.2480469, 1.9414062, -0.9848633, 0.71240234, 1.1484375, -0.8911133, -1.0302734, -0.29101562, -1.0576172, 3.9511719, -3.0605469, -0.17419434, -0.38549805, 1.2099609, -3.671875, 0.22912598, 2.7734375, -0.28833008, 0.6347656, 0.2244873, 2.5097656, -0.8383789, -0.3046875, 1.0126953, -0.006958008, -0.29638672, 0.9511719, 0.17700195, -0.9038086, -0.55371094, 1.3876953, 1.1396484, 1.0800781, 0.9555664, 0.83154297, 0.6894531, -1.1318359, 0.79541016, -0.83691406, 2.0996094, 1.9111328, 1.9199219, -0.15319824, -0.48706055, 0.1227417, 2.3457031, 2.921875, -2.1308594, -0.10406494, 3.0488281, 1.0800781, -2.015625, -0.62646484, -0.65185547, 0.35546875, -2.5761719, -0.8203125, -0.69384766, -0.07086182, 0.70166016, -1.1083984, 2.1464844, -1.0117188, 0.9042969, 0.20031738, -0.68408203, -2.0625, -0.98535156, -0.40576172, -1.4746094, -0.84765625, -4.21875, 0.17346191, 3.7636719, -0.13244629, 0.08319092, 0.16516113, 0.26904297, 0.6958008, 0.69140625, -0.096069336, -0.2890625, -0.8051758, -2.1328125, -0.13903809, -0.37158203, 0.78466797, -0.27978516, -2.0253906, -0.5419922, -0.107666016, -0.49145508, -1.2412109, -0.55566406, -3.2695312, -0.3815918, -0.21691895, -0.41918945, -0.4885254, 1.7773438, -2.3847656, -1.7822266, 2.2441406, -1.5478516, 0.15722656, -1.7431641, -5.1757812, 1.5634766, -1.9130859, 1.0205078, 1.2402344, 0.7993164, -0.28100586, 1.3212891, 1.8779297, -4.0625, 0.36669922, -0.89208984, -0.3642578, -2.9589844, -0.13769531, 2.6660156, 1.3789062, -0.5498047, -2.2363281, 0.67578125, -0.67578125, -0.53808594, 0.9477539, -1.7089844, -0.07006836, -1.3818359, -0.21704102, -1.7949219, -0.42260742, 0.55566406, -1.9111328, -0.76171875, -3.5703125, 1.4404297, 0.98876953, 0.7939453, 0.24938965, 3.6992188, 0.9321289, -1.2138672, 0.78222656, 0.51464844, 4.546875, -0.7763672, -2.9550781, -0.36987305, 0.010383606, 1.1708984, -1.5195312, -1.7294922, 0.50341797, -0.53564453, 0.41870117, 0.80810547, 1.5585938, 1.3974609, -0.7060547, -4.1015625, 0.83935547, 0.41601562, -1.5556641, -1.3779297, 0.09338379, -2.09375, -0.9326172, 0.25585938, -2.7617188, 0.81591797, -1.2910156, 0.013122559, -1.7363281, 1.9677734, 1.4775391, 2.53125, 2.9082031, -0.38110352, -0.5449219, 1.2304688, -0.32592773, -1.8701172, 0.21240234, -0.93115234, -1.5644531, 1.4335938, 1.3447266, -0.10021973, -0.77734375, -0.121520996, -0.97314453, -1.4414062, 0.8017578, -0.06451416, -0.40966797, -0.012413025, -1.4550781, -1.4638672, 3.2636719, -2.3964844, 2.2597656, 1.2402344, 0.14208984, -1.2695312, 2.5976562, 1.5517578, -0.05734253, -0.25097656, 1.1484375, 2.6132812, 3.3105469, 0.5776367, -0.07513428, 1.1845703, -2.0859375, -0.4716797, 1.0488281, -0.55908203, -0.63427734, 0.40551758, 1.203125, 1.6992188, 2.859375, 0.7236328, 0.64501953, -2.7675781, 1.9970703, 1.2617188, -2.7128906, -0.64501953, 0.44140625, -0.74365234, 1.71875, -0.54785156, -1.5390625, 1.2519531, 2.7460938, -0.9116211, 1.9267578, 0.83496094, -0.6489258, 1.5048828, -4.484375, -0.71484375, -2.2734375, -1.1484375, 0.5961914, -1.9160156, 0.3486328, -0.087402344, 1.0478516, 1.3554688, -1.3515625, -2.9785156, -0.6582031, -0.9291992, -1.1220703, -0.18945312, -2.7226562, -2.5703125, 0.044311523, 0.56103516, 1.8886719, 0.5786133, 0.33569336, -0.55810547, -1.5517578, -1.2099609, 0.37475586, 1.7519531, -2, -0.32666016, 3.4179688, 0.08343506, -0.24902344, -1.3984375, -0.34472656, -0.15905762, 1.7617188, -0.25976562, -0.20703125, -1.9287109, -0.4560547, -2.5625, -3.3417969, -1.375, 1.2226562, -0.6928711, 0.65283203, -1.9423828, -1.2607422, 0.64160156, -1.3720703, -1.0009766, -2.796875, 0.79296875, -1.2646484, -1.0546875, -0.4494629, 0.24133301, -0.028549194, -1.6806641, 1.0234375, 1.1611328, 0.14575195, -2.9863281, -1.4345703, 3.6582031, -0.8027344, -1.7197266, 1.7226562, -1.3515625, -0.23754883, 1.3134766, 0.5986328, -1.8632812, 1.8847656, -3.9550781, -0.38012695, -0.03338623, -1.5166016, -0.24633789, -1.3134766, -0.5258789, 0.33740234, 1.9121094, 2.9511719, -0.011688232, -0.1373291, 0.7363281, 0.58203125, -0.06933594, -1.1328125, -0.17626953, -0.34594727, 3.4511719, 1.1289062, -0.8652344, -0.06549072, -1.9873047, -1.1201172, -0.6923828, -2.6289062, 0.7944336, -0.11212158, 0.3630371, 2.1894531, 0.025146484, -0.20092773, -0.010696411, 0.82714844, -0.9272461, -0.06072998, -1.4453125, 2.4980469, 1.2900391, -2.3027344, -2.0605469, 0.6191406, 1.8837891, 2.3066406, -1.3613281, 0.062316895, 0.32226562, -2.09375, 0.78808594, -0.6958008, 1.5390625, 1.3828125, -0.12536621, -1.5927734, -2.0429688, 0.7758789, -2.953125, 1.5136719, 1.2285156, 0.54296875, -0.33032227, 2.1914062, 0.073791504, -2.5703125, 0.42944336, -0.33447266, 2.5292969, -0.81689453, -1.0488281, 0.9404297, -2.5019531, -0.49487305, -0.33666992, -2.7675781, -2.7675781, 1.6845703, 0.13745117, -0.37646484, 1.4326172, 2.0117188, -0.8222656, 0.09857178, 1.3408203, 0.044403076, -0.7055664, -0.97314453, -2.2871094, 0.86328125, 1.2509766, -0.6376953, 0.91015625, 1.5322266, 0.63720703, -0.63671875, -1.2255859, 0.90966797, 2.5625, -0.0993042, 2.8613281, 2.4785156, 0.97753906, 2.4785156, 0.7421875, 2.2949219, 0.46264648, -0.37280273, 1.1035156, 2.1855469, -0.48046875, 0.72265625, -1.1767578, 1.2373047, -1.7158203, 0.65283203, -0.10961914, -0.114746094, 3.1015625, -3.0664062, 0.81396484, -2.5722656, 0.19702148, -2.5722656, -0.74853516, -0.42163086, 1.2978516, 1.8818359, 2.1757812, 2.3007812, 1.4189453, -0.42382812, 1.9296875, 1.0195312, 2.2324219, -0.7363281, 0.6166992, -1.8300781, -1.3017578, 0.9975586, 1.078125, 1.78125, 0.19018555, 0.69091797, -0.3203125, 0.57421875, 1.0195312, 1.8037109, 0.18615723, -0.11102295, -0.94873047, 1.0009766, 1.5585938, -1.5917969, 0.43896484, 1.1152344, -2.1777344, -2.7636719, 3.3710938, 1.2363281, 0.8305664, -1.3417969, -3.6210938, 1.6796875, -0.5996094, 0.6118164, -2.0605469, 1.1162109, -0.08880615, 0.66748047, 0.16809082, -0.5107422, -0.2475586, 0.8774414, 1.9130859, -1.3896484, 0.74609375, 3.8125, 0.6279297, 0.5493164, 0.22094727, -0.07751465, -0.073791504, -0.7529297, 3.4746094, -0.46728516, -1.9257812, -0.14660645, 1.9580078, 0.87109375, 1.4052734, 0.08905029, -0.43554688, 1.0009766, 2.0605469, -0.4489746, -0.42285156, -0.06933594, -0.3527832, 1.1210938, -0.6479492, -0.023651123, -1.4921875, 2.1699219, 0.32006836, -0.93359375, 1.3291016, 0.4033203, -1.6943359, 2.203125, 0.16235352, -0.6191406, -1.4980469, 1.4296875, 0.43115234, -0.5131836, -0.875, 0.2998047, 0.22729492, -0.38598633, -1.3056641, -0.029083252, -1.4042969, -1.8916016, -3.5644531, -0.12768555, -0.62158203, -1.4785156, -0.40454102, -0.15673828, 0.97753906, 3.5117188, 1.4150391, -0.6254883, -0.40161133, -0.99121094, 0.85839844, -2.6621094, -1.3212891, -0.4868164, 1.3896484, 0.6069336, -0.4260254, -1.7578125, -2.8945312, -1.3115234, -0.7416992, 2.6386719, -1.2675781, -0.6538086, 1.1943359, 2.0019531, 2.9511719, -1.0136719, -1.6884766, -0.47387695, -0.15429688, 1.7216797, -0.52197266, 0.45532227, -0.15222168, -0.00806427, 1.4892578, 3.3671875, 2.6503906, 0.3269043, 0.022079468, 2.5078125, 0.7919922, -3.0722656, 0.3293457, 1.6464844, 0.1616211, 0.5732422, 1.7978516, 1.0458984, 0.7319336, -1.3310547, -1.3857422, 0.30297852]}, "B07Q7MCXNG": {"id": "B07Q7MCXNG", "original": "Brand: Flame King\nName: Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-1.8535156, 1.4970703, 1.4941406, 0.36669922, 1.125, -3.0878906, 0.066345215, 0.018325806, 1.0830078, -0.90478516, 2.0644531, 0.22668457, -0.0657959, -3.7792969, 1.4257812, 1.1494141, -0.88378906, 1.9736328, 1.3388672, 0.28833008, 2.1445312, 1.0878906, -0.50878906, -0.9111328, 0.5234375, -0.7397461, 2.5878906, -3.6484375, -0.7705078, 0.009864807, 0.9506836, 0.0015830994, 0.014541626, 2.1367188, -0.2479248, -1.5947266, 0.9199219, -1.5097656, -5.1445312, -0.30395508, -1.9472656, -1.3955078, 2.2480469, -1.2353516, -0.78222656, -0.20507812, 0.32250977, -1.2285156, -0.6044922, 0.15344238, 0.9892578, 2.0039062, 0.087768555, 1.3183594, 0.8334961, 1.7880859, 1.0830078, -3.1015625, 0.040252686, 0.62402344, 1.6357422, 0.29345703, -2.5507812, 2.4589844, -1.0605469, 1.5039062, 0.21142578, -0.22680664, 0.91308594, 1.8320312, 1.1962891, 0.109313965, 1.7851562, -1.6210938, -0.84521484, 1.0205078, -3.7226562, 0.009277344, -0.59277344, 0.61083984, 0.052581787, 2.8242188, 0.76123047, -2.6933594, -1.2011719, -0.57910156, 0.6015625, 1.1220703, 0.56152344, 0.50439453, -1.4326172, 1.9941406, -0.07366943, -3.7519531, 2.5097656, 0.4699707, 2.5214844, 2.8808594, 3.2304688, 0.08428955, 0.51904297, -0.14379883, -0.48901367, 1.1816406, -1.2480469, -1.6572266, 0.84521484, 0.8701172, -3.0664062, 1.8603516, -0.2626953, -0.5498047, 1.2324219, -0.5917969, -0.07659912, -0.32128906, 0.3071289, 0.98583984, 1.6728516, -1.4042969, 3.5898438, -2.8632812, 2.4941406, -1.2294922, 1.6181641, 1.5654297, -0.75, 0.36328125, 5.4257812, 0.15100098, 2.1035156, 0.19067383, 4.4804688, -1.921875, 0.07019043, -2.5058594, -0.1538086, -2.1132812, -2.1777344, -0.8310547, -4.390625, -0.042816162, 1.4580078, -0.13623047, -2.8847656, -0.9296875, -0.60009766, 0.15612793, -0.80126953, -2.3242188, 1.1035156, -1.6826172, 0.6928711, -0.9916992, 2.8652344, 1.3945312, -1.9248047, -3.1464844, 0.30517578, 1.3525391, 1.5976562, 0.13244629, 0.37841797, 1.9521484, -1.0585938, -2.4003906, 1.0849609, 0.15600586, -1.4804688, 1.6064453, -0.29003906, -1.6191406, -0.32080078, 1.8808594, -0.43774414, -0.8154297, 1.0556641, 1.5400391, 0.17883301, 0.22888184, -3.8222656, -0.2512207, -0.55810547, -1.7490234, 1.9091797, 0.43359375, -0.8808594, -1.2236328, 1.2714844, -0.6621094, -2.3066406, 1.8408203, -1.7949219, 0.5263672, -0.03591919, -2.0078125, -3.9667969, -2.3613281, 0.6152344, 2.1113281, 0.4326172, -1.2070312, 2.0410156, -0.42407227, -2.2675781, -1.5830078, 0.3330078, -1.1494141, 2.0703125, 0.7080078, -0.64160156, 0.5678711, 1.4443359, -2.1621094, -1.1757812, -2.7441406, -0.92529297, 2.4140625, 1.8310547, 1.0380859, 1.2167969, -0.41552734, 1.6962891, 0.39038086, 1.5664062, 0.3552246, 1.1650391, 1.9980469, -3.4824219, -1.8232422, 1.8242188, 1.2792969, -0.19641113, 0.9746094, -2.4316406, 1.5205078, 0.63720703, -0.8496094, 1.3476562, 0.55126953, 0.52978516, 0.84228516, -0.74853516, -0.6982422, -2.2714844, -0.65185547, 1.4013672, 0.4802246, 0.8564453, -0.56689453, 0.84375, -0.55126953, -0.8745117, -0.71777344, -0.60302734, 0.14685059, 1.3447266, 0.96240234, 0.78564453, -2.1757812, 1.5175781, -1.7626953, -0.76904297, 1.015625, -1.9306641, 0.12017822, 2.8261719, -0.8129883, -2.15625, 1.3779297, -1.6337891, 0.5834961, 2.4414062, -1.1660156, 0.54833984, 2.4472656, -1.8935547, 3.6210938, -1.2988281, 2.125, 0.035583496, -0.7714844, 1.3388672, -2.7636719, 0.56396484, 0.055267334, 1.1396484, -0.25732422, -2.7480469, 0.3083496, 4.4960938, -1.6962891, -1.984375, 1.6894531, 1.4316406, 1.0332031, 4.1953125, -0.36816406, 1.6503906, -0.48217773, 0.1743164, 0.092163086, -1.6650391, 0.39868164, -0.29223633, -1.3330078, 0.7006836, -0.35131836, 0.3786621, -0.2097168, -1.6787109, 0.6616211, -0.80029297, 0.20532227, 0.4753418, -1.1074219, 3.9921875, -3.3671875, 1.9355469, 2.0136719, 0.35083008, 1.6201172, 1.3027344, -1.4755859, -0.4645996, 1.1220703, -1.1425781, 1.9912109, -0.64697266, 0.8491211, -0.042053223, -2.1914062, -0.21740723, -1.0478516, -0.5180664, 0.9501953, -1.2138672, -2.8828125, -0.19897461, -3.2382812, 0.41357422, 0.066467285, -1.3447266, 1.1005859, 0.71728516, -0.9980469, 0.04019165, 0.071899414, -0.14123535, -2.3554688, 1.1728516, 4.1054688, -0.3803711, -2.5371094, 1.7451172, 0.54833984, 1.6191406, 2.9003906, -0.05682373, -0.24194336, -0.02357483, -0.048950195, -0.20629883, -0.5126953, -0.83154297, -2.9628906, 1.9101562, -2.3867188, 2.1738281, -0.3630371, -0.083862305, -1.0410156, -1.1728516, -1.0996094, -3.3398438, -0.6196289, -1.5712891, 0.043945312, 1.3066406, 2.0507812, -1.5517578, -1.3154297, 0.7182617, -1.2363281, -0.9892578, 0.016998291, 0.9609375, -1.5380859, -1.7363281, -4.578125, 0.6020508, -1.6601562, -0.7363281, -0.42822266, 0.092163086, -2.8046875, 0.35498047, 0.18322754, 0.33544922, -0.2644043, 0.022064209, -0.4411621, -3.2167969, -0.5859375, -0.24560547, -0.18615723, -1.1083984, -1.28125, 0.47583008, -1.7167969, -0.36401367, 0.54345703, -0.7919922, 2.2167969, 0.9589844, -3.3359375, 1.9873047, 1.3427734, 0.49951172, 3.1816406, -2.9082031, -0.38427734, -2.2578125, -0.79052734, 4.0117188, 0.69091797, 1.0117188, 0.5703125, -1.4238281, 0.7885742, -0.22143555, -0.04550171, 1.4228516, 0.035858154, 2.9570312, -1.4472656, -0.5263672, 0.4724121, 2.5429688, -4.3476562, 0.19885254, 1.0322266, -0.4321289, 1.3095703, 0.60839844, -0.36376953, -0.35961914, 0.6669922, 1.2509766, 3.1933594, 2.0996094, 0.5732422, -1.2216797, 0.3305664, -1.1396484, -0.51416016, 4.4257812, -0.6699219, 1.3935547, 2.4628906, 0.65722656, -0.31860352, -0.46875, 0.068725586, 0.8129883, 1.4267578, 2.1152344, -0.8754883, 1.0244141, -2.4140625, -0.17553711, -0.42358398, -1.0654297, 1.4101562, 0.9604492, 1.3261719, 0.28027344, -0.43701172, -0.66748047, -1.6425781, -1.5576172, 4.3828125, -1.4277344, 2.2871094, -0.09954834, -1.21875, 1.2001953, -3.5898438, 2.5566406, -0.50146484, 0.58691406, -0.12780762, 0.8178711, -1.4238281, -3.3867188, 0.5527344, -1.5751953, -1.0449219, 2.3886719, 0.25048828, -3.34375, -0.28466797, -2.0761719, 1.1464844, 1.1660156, -1.9277344, 1.7597656, 0.38208008, 0.4350586, -1.5380859, -0.7192383, 1.3525391, 0.79541016, -2.6308594, 1.3945312, -1.4345703, 1.7480469, 0.47875977, 0.7368164, -0.56152344, -0.099853516, -1.7919922, 2.6855469, -0.68603516, 3.3300781, 0.11016846, 1.7744141, 1.7119141, -1.4169922, 0.008148193, -0.74121094, -3.4453125, 0.7753906, -1.9707031, -1.1923828, 1.1191406, -1.3417969, 0.17736816, -0.89697266, 0.96191406, -1.0117188, -0.75439453, -0.4465332, 2.9726562, -2.0761719, 0.030517578, 0.3774414, 2.0332031, -2.8085938, -2.7636719, 0.9609375, -1.5478516, -0.4963379, 0.14318848, -1.9111328, 0.20593262, 0.9501953, -0.921875, -0.26513672, -1.3183594, 1.6103516, -0.34692383, -1.1230469, -1.9033203, 2.1152344, 2.5371094, 0.6748047, 1.9267578, 1.5869141, 1.4726562, -0.59814453, -1.0869141, -0.8857422, 1.2382812, 1.2490234, -4.6875, -2.3105469, -0.5283203, 0.1739502, -3.5253906, 1.4414062, -1.4775391, 0.8198242, 2.9882812, 0.051239014, 1.9667969, 1.4970703, 0.70654297, -0.5439453, 1.1904297, 1.2949219, -0.6689453, 0.60791016, -2.0039062, -0.6245117, -1.1601562, 2.7773438, -2.3769531, -1.4160156, -2.2109375, 1.765625, -4.8476562, 0.9404297, 2.0683594, 3.0449219, -0.6557617, -0.7392578, 0.9042969, 1.1132812, -0.14526367, -0.75146484, 0.57373047, -0.9038086, -1.3144531, 1.3603516, 1.1083984, -0.5371094, 0.81396484, 1.6621094, 0.015235901, -1.9023438, 0.36669922, 0.65625, -1.9355469, 1.4580078, -0.57666016, 0.31079102, 3.2792969, -1.8007812, -0.11340332, 0.9785156, 0.06100464, -0.24536133, 1.0595703, -0.50341797, 0.36938477, 2.0820312, 0.08325195, 0.9423828, 2.6191406, 1.625, -0.734375, 2.0175781, -2.3203125, 0.18188477, -0.7885742, 1.8710938, -1.8369141, 1.0878906, 1.7333984, 0.5488281, -0.41870117, 1.375, 0.63623047, -0.4597168, 1.2558594, 1.0537109, -2.8984375, -3.6308594, -0.98779297, -0.4790039, 3.2128906, -0.63720703, -2.6308594, 0.11273193, 3.5761719, -0.9301758, 1.2998047, 0.9140625, -0.7597656, -1.6552734, -1.8115234, -1.9726562, -1.1337891, 1.2636719, 0.7211914, 0.34692383, 1.078125, -1.4951172, 0.055358887, -1.0742188, 1.7871094, 0.4506836, -0.4897461, -0.86621094, 0.09222412, -0.15319824, 1.0097656, -1.0917969, 0.60791016, -0.9194336, -0.61376953, 0.7158203, -1.1396484, 2.6347656, -0.6245117, -0.5732422, -1.6298828, 1.4101562, -0.4267578, -0.7036133, 3.2089844, -1.1083984, 1.7695312, -0.7988281, -0.3474121, -1.4902344, 1.6572266, 1.7402344, -0.5253906, 0.42700195, 0.1694336, -2.9082031, -5.0703125, -2.1347656, 0.2836914, -0.12237549, -0.24255371, -2.0195312, -1.2246094, 0.42700195, -1.0195312, -1.8291016, -1.9931641, 0.06161499, 0.083984375, -0.5229492, -1.2978516, 1.9423828, -0.45385742, 0.3869629, 0.8486328, -2.4257812, -1.0507812, -2.4121094, -1.5898438, 1.8759766, -0.43359375, 0.9423828, 0.051971436, -2.5253906, 0.8149414, 1.7705078, -0.33544922, -3.5683594, 1.9648438, -2.1074219, -0.66503906, 2.0996094, -2.9589844, -1.6835938, 1.5976562, -0.35791016, 1.7119141, 2.5683594, 0.89990234, -2.7089844, -1.5771484, -0.77685547, 1.625, -0.8334961, 1.2119141, 2.4101562, 1.4980469, 0.14501953, 2.0253906, -1.0986328, -2.2988281, -1.4169922, -0.5136719, 0.04296875, -0.9511719, 0.23083496, -0.070373535, 0.5449219, -0.1772461, -0.796875, -0.38671875, -0.8364258, -1.4248047, -1.4462891, 2.8085938, -2.8808594, 3.1054688, 2.5273438, -2.4726562, -2.0371094, -0.7841797, 0.8305664, 0.92089844, -3.1367188, -1.2246094, 1.2802734, 1.0029297, 2.5761719, -0.8466797, 1.8798828, -0.47583008, 1.2021484, -0.6923828, 0.28198242, 3.7421875, -0.27392578, 1.9365234, 0.8569336, -3.1796875, 1.8095703, 1.9306641, 2.3417969, -0.86865234, 0.46972656, 0.2680664, -0.6269531, -1.0986328, -0.61083984, -0.109680176, -3.0351562, -0.96777344, 0.875, -1.0585938, -4.6445312, 0.28979492, 0.25146484, -0.82470703, -0.1003418, -0.6513672, -0.25830078, -1.1767578, 1.1181641, 0.4255371, -1.8349609, 0.67089844, 1.4130859, 1.0791016, 1.2998047, -1.7158203, 1.3095703, 0.8100586, 0.31347656, -0.64746094, 0.8984375, -2.1542969, 2.9589844, 0.5830078, 2.0859375, 2.8261719, -1.0537109, 1.578125, -0.8256836, 2.1660156, 4.1484375, -0.23937988, 0.48486328, -0.69873047, 1.5117188, 0.1427002, -1.3955078, 0.8823242, -0.921875, 1.4736328, -1.4169922, 0.58447266, 2.28125, -1.0263672, 0.6435547, -0.7841797, -0.6796875, 0.12365723, 0.7392578, -1.0253906, -1.2958984, 0.6748047, 0.90625, 1.578125, -0.13745117, 0.8598633, -0.7680664, 1.1884766, 1.0996094, 0.9394531, -0.8432617, -1.4345703, -2.1367188, 0.36108398, 2.6015625, 0.39941406, 0.4675293, 0.13635254, -1.03125, 0.10632324, 0.90722656, -1.15625, -1.4873047, 1.3242188, 0.7050781, 2.9238281, 2.4648438, -0.99853516, 4.7890625, 1.8730469, -0.076293945, -3.2324219, 2.8964844, -0.9526367, -0.4880371, 1.1005859, -2.2597656, 0.9589844, -1.4667969, 0.73095703, -4.0664062, 1.0371094, 0.62646484, -1.1777344, 2.5097656, 0.3293457, -1.1523438, 2.7871094, 2.3769531, -0.02557373, 0.34423828, -0.3864746, 0.78564453, 0.004634857, 0.49926758, 0.5527344, 0.54833984, -1.078125, 3.3261719, 0.36645508, -1.0517578, -0.8491211, 1.6054688, 0.3942871, 1.0527344, 0.46923828, -0.71240234, 2.3554688, 0.82373047, 0.640625, 0.5395508, -1.3818359, 0.21740723, -1.9414062, -1.1708984, 1.0087891, -1.9951172, -0.0109939575, 1.6210938, -1.5322266, -2.2714844, 3.4609375, -0.9946289, 0.5473633, -0.32421875, -1.8876953, -1.2353516, 0.8178711, 1.0068359, -2.0917969, -0.006336212, 0.34448242, 2.7519531, -0.65527344, -2.0234375, -0.68603516, -0.57666016, 0.4753418, -1.90625, 0.9267578, -0.89501953, -0.13916016, 1.6142578, -0.7714844, 0.9326172, 1.0888672, 0.80810547, 1.8691406, -0.7709961, -0.30981445, 0.36865234, 0.36083984, -2.0292969, -1.9755859, 0.1928711, 1.2412109, -0.36669922, -0.011741638, -3.9785156, -1.6884766, -1.9023438, 0.119506836, -1.0048828, -1.1689453, 1.3964844, 0.99658203, 1.1523438, -0.36157227, 0.41967773, -0.4104004, 1.9277344, 1.8740234, -1.7900391, 1.4414062, -0.20007324, -0.3798828, -0.97216797, 2.8164062, 2.3359375, -0.5942383, -0.37670898, 1.859375, -2.0664062, 0.034057617, -0.42895508, -0.9770508, -0.5371094, 1.2773438, 1.5605469, 3.3535156, 0.58740234, -0.5209961, -1.7695312, -0.36401367]}, "B07LBK17K9": {"id": "B07LBK17K9", "original": "Brand: Goplus\nName: Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)\nDescription: Product Description
          This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

          Features
          Heavy duty cast iron body
          Powder coating makes it is waterproof and anti-rust
          Triple burner outputs a total whopping BTU of 225,000
          Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
          Adjustable firepower make your cook more delicious
          Removable feet make it can be easily carried or stored
          External valve CSA certification
          Specifications
          Finish: Black
          Product Type: Triple burner
          Material: Cast iron
          Item Dimensions:34\u201dx17.5\u201dx28.5\u201d
          Item Weight:33.5lbs
          Hose Dimensions:0.5\u201dx51\u201d
          Max: 250 Psig
          BTU : 225,000
          Package includes:
          1 x Single burner stove
          1 x Instruction
          \nFeatures: \ud83d\udd25 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious.\n\ud83d\udd25 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you\u2019re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time.\n\ud83d\udd25 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more.\n\ud83d\udd25 Safety: This burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook.\n\ud83d\udd25 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.\n", "embedding": [-2.2050781, 2.2832031, 2.0234375, 0.71484375, 0.14758301, 2.5175781, 2.265625, -1.7910156, -1.7949219, 3.609375, -0.44799805, -0.5332031, 0.7241211, -3.4492188, 0.2548828, 1.125, -1.8173828, -0.052734375, -0.7089844, 0.8432617, 2.828125, -0.22570801, 1.6865234, -0.79589844, -0.5214844, 0.35546875, 3.4941406, -2.8476562, 0.5205078, -2.4042969, 2.6074219, 0.28100586, 1.1738281, 2.3183594, -4.515625, -0.90185547, -1.6083984, 1.9882812, -1.90625, 0.52197266, -1.4619141, -1.3388672, 2.1816406, -0.07501221, -1.9443359, -0.30151367, 1.7226562, 2.1230469, -0.88427734, -0.6118164, 0.044525146, 1.8496094, -0.38061523, 1.9199219, -2.0175781, 2.0664062, 0.44067383, -1.4892578, 1.9492188, -0.36279297, 1.9443359, 1.3876953, -1.6132812, 1.0126953, -1.1708984, -0.98535156, 0.7758789, -0.9794922, -1.4589844, -0.15539551, 3.1367188, 0.31323242, -1.2197266, 0.2692871, 0.7739258, -0.86865234, -3.3085938, 0.6533203, 3.9472656, -0.98583984, -2.6484375, 2.1152344, 1.8320312, 0.86572266, -0.37646484, 0.20593262, -0.85253906, -0.21948242, 2.4375, -0.0040893555, -2.0390625, 2.8554688, -3.0507812, -4.3828125, 1.6025391, -0.84228516, 2.4765625, 0.9272461, 0.66503906, 0.9301758, 0.22180176, 0.6879883, -0.8227539, -0.53808594, -1.6289062, -0.6640625, 3.6445312, 0.91064453, -1.9267578, 1.4052734, -3.5410156, -0.08569336, 1.1123047, -0.8051758, 0.27954102, 0.12432861, -1.4199219, 0.30297852, 3.3671875, 1.09375, 4.6132812, -0.048919678, 0.29003906, -1.4140625, 1.0068359, 1.3964844, -0.7973633, 0.6748047, 2.5136719, -1.5478516, -2.3515625, -1.4296875, 0.3774414, -0.5678711, -1.5595703, -0.29492188, -1.2392578, -1.7412109, -3.4570312, -0.56347656, -1.7324219, 1.5888672, 2.9023438, -0.58447266, -3.90625, -0.008255005, -0.11352539, 2.2363281, 0.39282227, -0.60595703, -0.51660156, -0.5498047, -0.38208008, -2.3164062, 2.2011719, 1.2285156, -0.47753906, -0.66308594, 3.2265625, 0.3178711, 0.3581543, -3.7988281, -1.703125, 2.0625, -0.51953125, -1.1875, 0.22045898, 0.3088379, -0.021057129, 1.5634766, 0.39526367, -1.3574219, 0.40966797, -1.3046875, 0.43481445, -1.1923828, -0.9824219, 2.8886719, -0.49169922, -0.74658203, -1.4228516, -2.0019531, 1.7070312, 3.234375, 0.5576172, -1.4833984, 1.1591797, -0.56396484, 0.25805664, -2.2421875, -1.2646484, -0.18920898, 0.79589844, -0.80078125, 0.12719727, -1.1416016, -0.24328613, -1.6445312, -0.18847656, 1.0400391, -0.87402344, -1.1943359, 0.36767578, 1.2851562, -2.7890625, -1.5009766, -0.42651367, -1.3310547, 2.9707031, 2.6230469, 0.27539062, -0.9165039, 1.9921875, -0.34399414, -0.8598633, -0.86279297, 2.7207031, 0.3178711, 2.1464844, 1.9833984, -0.43188477, -1.6953125, 1.0078125, 2.1113281, 0.08117676, 0.9370117, 1.0664062, -0.3173828, -1.296875, -0.28710938, 2.0234375, 0.10534668, -0.31176758, 0.13830566, -1.0800781, 3.8867188, 0.9814453, -1.3623047, -0.48120117, -0.9892578, -0.28442383, -1.6318359, -0.15820312, 0.49609375, -2.375, -0.4326172, -0.9711914, 0.72509766, 1.7900391, -0.6459961, -1.3017578, -1.4326172, 0.61279297, 0.5395508, -0.9794922, 0.5722656, 0.14770508, -0.95996094, -2.0332031, -2.5917969, 1.1455078, 1.6679688, -0.30688477, 0.46191406, 0.5966797, -1.8662109, 2.3046875, 1.0371094, -2.7832031, 1.0654297, 2.5117188, 0.38256836, 3.5019531, 0.45361328, 1.3193359, -1.1240234, -2.0761719, 2.6015625, 1.1865234, 1.5380859, -0.5756836, -1.3720703, 2.5976562, -2.78125, 0.59716797, 1.1376953, 2.2207031, -0.6254883, -0.10913086, -0.014152527, 5.5390625, -1.2617188, -2.7832031, 1.8681641, -2.8242188, 0.6347656, 0.265625, 0.6586914, 0.37329102, -0.31469727, 2.375, 0.4411621, 0.6357422, 2.5039062, -2.0234375, -1.84375, 0.8305664, -3.5722656, -0.18920898, 1.3740234, -1.0761719, -0.25268555, -1.4990234, 0.27148438, -2.8789062, -0.4333496, 1.9882812, -2.1523438, 1.6113281, 1.3271484, 0.88134766, 0.65625, -0.11566162, -2.7597656, 0.2052002, 0.059906006, -0.23339844, 1.2753906, -0.1550293, -1.5634766, -0.80029297, -2.5527344, 0.17407227, -1.2285156, -0.9873047, -0.4645996, 0.28637695, -2.8339844, 1.3300781, -0.59814453, -0.3947754, 0.9223633, -2.5332031, -0.073791504, -3.0585938, -3.96875, -0.25805664, 0.13720703, -0.54296875, -1.3164062, 1.140625, 1.1259766, -1.2607422, -5.6601562, -0.58251953, 0.09020996, 0.21826172, -0.31933594, -0.51708984, 0.9121094, -0.9707031, 0.1739502, -0.057678223, 1.3652344, 0.14831543, -1.8300781, 0.97558594, -4.4804688, 1.3740234, -1.0039062, 0.46948242, -0.19091797, -0.5341797, -2.5136719, 0.19445801, -0.54833984, -0.6557617, 3.5683594, -1.5117188, 1.4970703, 0.039367676, -1.0546875, 0.63427734, -2.0898438, -2.2792969, -0.77734375, -0.8105469, -1.0009766, -1.4677734, -3.9882812, -0.49829102, -2.0585938, 0.42163086, -0.87890625, 1.7353516, -0.7480469, 1.5146484, -1.84375, -0.2939453, 0.08850098, 0.34179688, -0.6816406, 0.17663574, -1.1748047, -0.7368164, -0.5649414, 1.0009766, 2.0644531, 1.2138672, 0.5605469, 0.71191406, 2.5273438, -0.2479248, 0.19177246, -0.6176758, -3.15625, 0.96435547, 1.8398438, 0.19763184, 1.5449219, -1.5419922, -1.9697266, -2.1816406, -1.2832031, 2.1777344, -0.65527344, 3.1660156, -0.29541016, -1.5498047, 0.7817383, 1.0869141, -0.17578125, -2.0625, 0.37280273, 4.2226562, -2.4472656, -1.2949219, 1.3867188, 1.9316406, -4.3359375, -0.49780273, 0.84472656, 2.3945312, 1.8125, 1.6308594, 1.9599609, -0.025405884, -1.0302734, -0.87597656, 2.7324219, 1.3154297, -0.46533203, -2.0019531, 0.4025879, -1.0263672, 0.96777344, 0.87597656, 2.03125, 1.7539062, 2.5761719, 2.3378906, -2.15625, 0.25024414, 0.058685303, 1.1162109, 0.041168213, 2.8515625, -0.2993164, -0.23730469, -1.3066406, -0.28881836, 0.8730469, -2.9296875, 0.9482422, 1.8867188, -0.04232788, 0.3708496, 0.12042236, -0.099121094, 0.66308594, -0.075805664, 0.95947266, -0.31469727, -0.80810547, 1.8193359, -0.5253906, -1.0273438, -1.2734375, 2.3261719, -0.6923828, -2.6074219, 1.1064453, 1.046875, -0.9140625, -2.9453125, -0.39868164, 0.09350586, -1.5371094, 5.0898438, -0.3515625, -1.0517578, 0.42456055, -1.9052734, 1.0712891, 1.0585938, -0.3310547, -0.5180664, -1.5742188, -0.3864746, -0.5366211, 0.43310547, 1.984375, 1.546875, -2.7734375, 0.2993164, -2.5605469, -0.02947998, 0.29296875, -2.3730469, -0.6459961, 2.2734375, 0.31030273, 0.9946289, -0.024810791, 3.6015625, -2.6054688, -0.3190918, 0.9848633, -2.9921875, -0.18640137, -3.5117188, -3.015625, 1.2978516, -0.94921875, -0.5283203, 3.2539062, -0.18591309, 0.14892578, 1.4101562, 0.3798828, -3.2871094, -1.5927734, -1.2861328, 1.2363281, -2.890625, 0.5830078, 0.21887207, 0.20361328, -1.21875, -1.6279297, 0.35913086, -0.36938477, -0.047424316, 1.1015625, -3.4589844, 1.4902344, -0.4807129, -0.53515625, -0.609375, -0.3713379, 1.4541016, 0.16333008, 0.6308594, -1.7177734, 1.1523438, 0.21240234, 0.62158203, 1.0410156, 3.2617188, 0.8359375, 0.7597656, -0.21459961, 1.1523438, 1.8476562, 0.09777832, -2.15625, -1.7285156, -0.31176758, -0.070373535, 0.16845703, 0.15930176, -0.6635742, -1.8222656, 1.4853516, 0.19897461, 0.6381836, 1.0566406, 1.2373047, -1.6269531, 1.0019531, 0.95654297, -1.6279297, -1.7675781, 0.93847656, 0.73583984, -1.7578125, 2.1835938, -0.85009766, -0.29296875, -0.09490967, -0.70703125, -0.61328125, 3.3769531, 0.65185547, 0.83935547, 3.0273438, -1.6435547, -2.8515625, 0.54296875, -1.3496094, -0.84716797, 1.1513672, -0.20483398, -0.47631836, 2.6269531, 0.33032227, -0.2310791, -0.77734375, 1.6240234, -1.9208984, -1.2119141, -1.1455078, 0.49169922, -1.3916016, -1.125, 1.7304688, 0.06304932, 2.578125, -0.94189453, 0.10845947, -0.7006836, 1.0722656, -2.2285156, -1.09375, -0.58251953, 0.37158203, -0.8041992, 0.043548584, 1.1289062, 0.27416992, 2.4667969, -1.0654297, 2.8867188, -0.2927246, 1.421875, -0.19543457, -0.4362793, -1.5732422, -0.6064453, 0.8310547, 1.6220703, 0.42895508, 2.6308594, 1.5283203, -0.5683594, 1.7314453, 0.7451172, -1.2919922, -0.24645996, 0.26635742, -1.0039062, 1.4345703, -1.71875, -2.1757812, 0.74853516, 2.3847656, -0.53466797, 0.87353516, -0.31323242, -0.2454834, -0.3659668, -1.9003906, -0.1394043, -1.9375, -0.82714844, -0.91552734, -1.0390625, 0.48535156, -0.48046875, 2.15625, 1.9990234, -0.08929443, -0.54345703, 2.5585938, -0.78515625, 1.9667969, 0.7192383, -0.5493164, -2.4042969, 0.43896484, 1.9755859, 1.7880859, 1.8994141, -0.5961914, 1.8886719, -1.5576172, -0.33618164, -1.8339844, 2.5351562, -3.2734375, -0.27319336, 2.6699219, -0.33520508, 0.40356445, -1.7558594, -1.3300781, -0.73339844, 2.9003906, -0.034118652, -0.89501953, -0.7841797, -0.23095703, -1.4404297, -3.3183594, -0.1887207, 0.38891602, -0.08843994, -0.8901367, -0.095947266, -1.6044922, -0.67089844, 0.15673828, 0.60302734, -1.6972656, 2.0097656, -0.17504883, 0.53466797, -1.4765625, 0.4423828, 0.9223633, 1.8847656, 1.1787109, 0.33325195, 0.13952637, -2.6855469, -1.1523438, 0.78027344, -1.8154297, 0.8535156, 0.29882812, 0.59716797, 0.6113281, 2.4199219, -1.2265625, -2.4179688, 1.7197266, -0.87646484, -1.3710938, -0.6166992, -1.2822266, 2.3710938, -0.16760254, -2.0429688, 0.98535156, -2.6855469, -1.8974609, -0.21350098, 1.7060547, -0.15307617, 0.95458984, 0.4951172, -1.1005859, 1.3710938, 0.50927734, 0.9194336, 0.98583984, -0.7890625, -2.1484375, -2.2285156, -2.765625, -0.92041016, -1.34375, -0.85595703, -0.0026512146, 0.40722656, 1.1201172, 0.14343262, -0.54052734, -0.04336548, -0.5004883, -0.5541992, 1.6982422, -0.26782227, 4.0898438, 0.4724121, 0.6821289, -2.5546875, -3.3554688, 0.6777344, -0.36645508, 0.7260742, -0.39746094, 0.33129883, -1.4755859, 0.04547119, -0.6850586, 2.1484375, 3.2636719, 1.4375, -1.7880859, 2.3496094, 3.125, -0.2980957, 0.8203125, 0.7788086, 0.38232422, -0.55078125, 3.7382812, -0.045318604, -0.48339844, 1.9121094, -1.2119141, 2.53125, -1.1054688, -1.484375, -0.3215332, -0.013282776, -1.1474609, -2.6875, -0.92578125, -1.0820312, 1.3251953, 0.8671875, -0.08129883, -0.43310547, 2.1738281, -0.6923828, 0.7832031, 1.8896484, 2.2304688, -1.4697266, 1.1376953, 1.2509766, 0.87060547, 2.0195312, -1.3427734, 1.7402344, 1.0185547, -0.6074219, -0.9765625, 3.0800781, 1.4189453, 2.7265625, 0.25683594, 0.6513672, 2.921875, 2.03125, 3.9570312, -0.05218506, 1.3095703, 2.1796875, 1.3574219, 0.3190918, 1.2119141, 0.4909668, -0.61279297, -0.9897461, -0.32128906, -0.8232422, -2.0234375, -0.13171387, 0.59521484, 3.0683594, -3.7226562, 3.4511719, 0.26416016, 2.2421875, -0.5151367, 1.0253906, 0.9057617, -1.6523438, -0.97021484, -0.5761719, -0.1665039, -0.64501953, -0.8222656, -1.1542969, 1.140625, 1.4023438, -3.5019531, 0.8256836, -1.0800781, -2.8222656, -1.6787109, 2.2402344, 2.1875, 0.41601562, 0.86279297, 2.7382812, 1.6806641, -0.82373047, 0.64746094, -1.3652344, -0.83935547, 1.1044922, 3.7265625, 0.30932617, 0.18249512, 1.4023438, -1.6972656, -2.5449219, -3.1171875, 2.7460938, 2.3378906, 1.4121094, 2.2363281, -1.5820312, 2.3203125, 0.5161133, 1.9316406, -0.72998047, 2.25, -0.32177734, -1.6416016, -0.74316406, 0.7504883, 1.0654297, 3.0429688, 1.84375, -1.2490234, 1.2304688, -0.13879395, 1.6962891, 0.52441406, -0.12207031, 0.4831543, 3.0039062, -0.04220581, 1.4931641, -0.096069336, -1.5644531, -1.0673828, 2.4648438, 3.0742188, -0.08093262, 1.2890625, -1.5449219, 1.8535156, -0.009109497, -1.0478516, -0.78125, -1.5722656, -2.0078125, -0.6928711, -2.109375, -0.6982422, -0.86621094, 2.0507812, -0.032226562, -1.0439453, 1.3554688, 0.9404297, 0.23034668, 1.265625, 1.3398438, -0.9682617, -0.16870117, -1.703125, -0.093322754, -1.2851562, -2.984375, 1.1630859, 0.13305664, 1.8115234, -1.7451172, 0.6923828, -1.2392578, -0.65527344, -0.45947266, 1.0810547, -1.8964844, -0.71191406, -0.42163086, -0.5493164, -0.2788086, 1.4775391, -0.6230469, -1.4570312, -0.011108398, -3.6230469, -0.484375, -0.22998047, -0.3112793, 1.390625, 3.2851562, 0.4440918, 2.2441406, -2.078125, -3.5136719, -1.2685547, -1.7255859, 1.2460938, -0.41430664, -0.42626953, -0.5493164, -0.1887207, 2.6015625, -1.3007812, -0.026611328, -0.6308594, -1.0478516, -0.69140625, -0.91259766, 0.609375, -0.083862305, 1.0029297, -1.8496094, 2.5527344, 2.7636719, -0.22912598, 2.0976562, 1.2236328, 0.7470703, -2.2929688, 0.50439453, -1.4628906, -0.9580078, -0.5551758, 0.22265625, 2.6503906, 0.7128906, -0.21020508, -2.8046875, -1.90625]}, "B081SMW6PL": {"id": "B081SMW6PL", "original": "Brand: WADEO\nName: WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More\nDescription: Length:12 Feet
          3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting
          Attention:ONLY use for low pressure propane appliance
          Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
          Please Note:
          1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
          2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
          3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
          \nFeatures: \ud83d\udc4912 Feet long propane hose, extended propane hose with 3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting, can meet your BBQ needs.\n\ud83d\udc49Convenience: 12FT propane appliance extension hose is convenient for you. You don't have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances.\n\ud83d\udc49Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting.\n\ud83d\udc49Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More.\n\ud83d\udc49Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.\n", "embedding": [-0.21411133, 1.3808594, 1.1503906, -2.1269531, -0.64697266, 0.017318726, 1.0527344, -1.1523438, 2.4707031, 1.1123047, -0.69091797, 1.328125, 2.5566406, -3.6230469, 1.1972656, 0.8613281, -0.3605957, 0.74316406, 1.5351562, 2.421875, 2.3515625, -0.57421875, 2.0976562, -0.35864258, 0.9042969, -2.6230469, 3.6269531, -1.7744141, -0.2565918, -0.16015625, 1.1630859, 2.0527344, -0.4724121, 0.19445801, -4.359375, -0.5209961, 0.08453369, -0.60302734, -3.4726562, -2.0566406, 0.036102295, -0.9121094, 3.078125, 0.42041016, -2.1894531, 0.60058594, 0.10845947, 0.9765625, 0.7607422, -0.7910156, 1.5537109, 0.35864258, 0.5444336, 0.73291016, -2.0039062, 0.9038086, 0.56103516, -3.8066406, 2.0292969, 0.8574219, 1.8515625, 0.020614624, -2.1601562, 0.19311523, -0.38745117, 0.38208008, 0.6665039, -0.5463867, 0.49975586, 0.39868164, 0.028182983, 1.1884766, 0.08441162, -0.08898926, 0.8486328, 0.29003906, -2.2167969, 1.2802734, 3.4394531, 1.6777344, 0.052001953, 3.6972656, 0.8461914, -2.9648438, 0.6616211, -1.7714844, -2.1875, -0.111206055, 0.54003906, 2.4863281, -1.9853516, 2.6445312, -2.8222656, -3.1777344, 1.9628906, -0.74853516, -0.81152344, 1.6621094, 1.6416016, 0.2861328, -0.29052734, -0.4987793, -0.79833984, 0.859375, -1.8623047, -1.7529297, -1.2714844, -0.101623535, -1.2080078, 1.4560547, 0.81591797, 0.16992188, 1.4267578, -0.9223633, 0.7949219, -2.7226562, -0.9897461, -2.4472656, 3.5996094, 1.1826172, 1.0380859, -0.5185547, 0.14147949, 1.0527344, 3.0390625, -0.55371094, -0.6064453, 1.6455078, 2.234375, -3.1035156, 1.1044922, -2.4960938, 1.2509766, -0.04574585, -0.7441406, -1.6933594, 0.30639648, -1.9921875, -2.3964844, -0.9145508, -2.4375, -1.2763672, 1.7001953, -0.9511719, -3.6679688, 1.2646484, -2.2304688, -0.12780762, 2.1523438, -3.2636719, 2.2421875, -1.8652344, -1.0722656, -0.6040039, 2.2753906, 1.2949219, 1.7275391, -1.4394531, 2.9882812, 2.6679688, 1.484375, -2.0019531, -2.2226562, 2.0761719, -0.016204834, -3.9765625, 0.5371094, 0.59033203, -0.54589844, 0.34350586, 0.25170898, -3.1660156, 2.4863281, -0.73583984, 0.6503906, -1.7382812, 1.1191406, 0.27148438, 2.6308594, 1.3955078, -2.1601562, -2.8339844, -0.25732422, -2.3730469, -0.3527832, 0.2479248, -1.9707031, -2.1210938, 2.9511719, -1.0341797, -2.0722656, 1.6103516, 0.4321289, 3.3964844, -0.5029297, -2.8671875, -2.8730469, 0.34716797, 1.1376953, 1.5927734, -2.0722656, -2.0390625, 0.91259766, 0.53466797, -1.9619141, -0.29174805, -0.49560547, -0.26538086, 1.9882812, 1.4609375, -0.5551758, -0.4128418, 2.703125, 0.53222656, 0.6977539, -1.1816406, 1.9199219, 1.3193359, 2.8398438, -0.14855957, -0.12597656, 0.17199707, -0.45361328, 1.1835938, 1.2001953, 0.8486328, -1.3867188, 1.0751953, -1.6757812, -1.7197266, 1.9941406, 0.53564453, -1.3300781, -0.046722412, 0.17651367, 1.8212891, 1.5117188, -0.5175781, 0.61376953, 4.7382812, 0.5751953, -0.734375, -2.2402344, -1.265625, 0.2442627, -0.9633789, -0.048553467, 0.4819336, 0.95214844, 0.11791992, 1.5175781, -0.82958984, -0.4453125, -1.7363281, 0.39746094, 0.59277344, 0.7441406, 2.4824219, -0.29174805, 0.50097656, 0.3581543, 0.1348877, 1.2324219, 3.2226562, 0.18286133, 0.8461914, 2.0234375, -1.0410156, -1.5, -1.7431641, -1.2470703, 2.9882812, 0.4189453, -0.2607422, 0.94091797, 1.6123047, -1.6679688, 0.52783203, -0.50878906, 0.9941406, 1.9414062, 0.1998291, 0.84814453, -2.65625, 1.9492188, 0.8432617, 2.28125, -0.124938965, -1.6464844, 1.3525391, 3, -0.32910156, -1.7646484, 2.34375, 2.0976562, 2.1230469, 0.14672852, 1.7412109, -0.22851562, -0.46850586, -0.16552734, 1.3115234, -1.1816406, 2.6523438, 1.890625, 0.4885254, 0.39770508, -2.1914062, 2.4023438, 1.6884766, -0.51220703, 0.87841797, -0.9970703, 1.4755859, -2.4121094, -2.2304688, 1.8212891, -1.1992188, -0.8852539, 2.2636719, 0.0022697449, 0.7036133, 1.4160156, -1.1972656, -1.1337891, 0.56347656, -0.6689453, 0.4675293, 2.4804688, -1.6484375, -1.1992188, -0.8286133, -0.7973633, -2.2285156, -1.6396484, 0.6933594, -1.4013672, -0.61816406, 0.45288086, -2.8808594, -1.5439453, -1.1591797, -0.1026001, 2.2910156, 0.6254883, -2.1386719, -0.16320801, 1.4658203, 0.68603516, 0.26611328, 0.16381836, 2.5351562, -0.45483398, -2.1738281, -0.5161133, 0.3930664, -0.16357422, 0.93066406, -3.0390625, 0.6977539, 1.2421875, 0.11608887, 0.72216797, 0.29296875, 0.6347656, -3.53125, 0.012527466, -3.6875, 0.39208984, 1.609375, 1.9794922, -0.32543945, 0.2619629, -1.953125, -1.1191406, 1.2148438, -1.0136719, 1.4501953, 0.6035156, 1.1083984, -1.1318359, -1.4804688, 1.0859375, 1.1669922, -1.6279297, -1.09375, -0.07977295, -1.1865234, -1.0986328, -4.1484375, 0.87841797, 0.33447266, 1.5927734, 0.98095703, -0.9082031, -2.1367188, -1.5527344, -0.5644531, -1.7441406, -0.40039062, -0.4206543, 0.40454102, -0.35766602, 0.45532227, -2.1953125, -1.4560547, 0.13183594, 0.1772461, 1.3242188, -1.2744141, -1.3974609, 1.5322266, 0.32104492, -0.34228516, -0.8276367, -2.9375, 0.5756836, 2.4472656, -0.83740234, -0.3388672, -1.5273438, -0.96533203, -1.4990234, -1.4169922, 2.6464844, 3.4003906, 1.75, 0.8261719, 1.7783203, 1.0478516, 1.1533203, -0.47558594, -1.9882812, -0.20715332, 4.125, -2.1132812, -0.43896484, -0.36987305, -0.019515991, -3.2460938, 1.3652344, 1.4433594, -0.034484863, 0.6020508, 1.3027344, 1.2285156, -0.103393555, 0.13269043, 1.0214844, 0.8378906, 0.15612793, 1.0449219, -0.80029297, -0.92333984, -0.7338867, 0.87597656, 1.1201172, 0.90527344, 1.7119141, 0.21398926, -0.58496094, 0.20336914, -0.71435547, -0.6879883, 1.9472656, 1.8955078, 0.69433594, -0.083740234, -0.8100586, 0.7661133, 0.9404297, 1.90625, -1.25, -1.109375, 1.2490234, 1.5302734, -1.1015625, -0.05645752, -1.984375, -0.60595703, -2.8632812, -0.88134766, -0.48046875, -0.074523926, 1.1259766, -0.82373047, 2.2324219, -0.6201172, 1.4462891, -0.17382812, -0.9863281, -1.7207031, -1.2548828, -0.84033203, -0.2944336, -0.59228516, -2.9707031, -1.5097656, 3.4160156, 3.2460938, -0.77783203, 0.82666016, -1.1230469, 1.7080078, 1.6220703, -0.6699219, -0.6464844, -0.028167725, -0.75146484, 0.6538086, -0.8647461, 1.1865234, -0.17041016, -1.5566406, 1.2578125, 0.43798828, 0.28588867, -0.0859375, 0.12310791, -3.4257812, -0.18603516, -0.22692871, -0.3059082, -0.22460938, 3.1308594, -1.2939453, 0.09448242, 2.6132812, -1.2802734, -0.8955078, -0.6772461, -5.5078125, 1.2695312, -1.6884766, 0.07116699, 3.046875, -0.9838867, -0.61621094, 0.5175781, 1.7705078, -2.6738281, -0.87353516, -0.62109375, 1.1494141, -2.4941406, -1.5341797, 2.5195312, 0.6772461, -1.6982422, -0.5805664, -0.23132324, -2.3046875, -0.42895508, 1.3984375, -0.5004883, -1.1152344, -2.4941406, -0.44677734, -1.3066406, 0.24133301, -0.32177734, -2.7480469, -0.51416016, -2.0761719, 2.1328125, 0.50390625, 0.39282227, -1.4794922, 3.5976562, 0.5527344, -0.9970703, -0.4404297, 0.21569824, 3.6914062, -0.2866211, -2.6777344, -0.4321289, 1.0029297, 0.02558899, -0.39453125, -0.2208252, 0.8959961, -0.8051758, 2.3046875, 0.64404297, 0.62646484, 0.8208008, 0.8442383, -5.1210938, -0.16577148, 2.1269531, -0.79833984, 0.107421875, -1.78125, -1.125, -2.4863281, 0.36547852, -1.7578125, -0.60791016, -1.2871094, 1.0859375, -1.7783203, 2.4824219, 0.5263672, -0.29760742, 1.9394531, -0.81591797, -1.2871094, -1.78125, 0.39697266, -1.2041016, -0.73583984, -1.7568359, -1.0410156, 1.1240234, 0.8046875, -0.13757324, -0.88916016, 0.046661377, -1.6416016, -0.5678711, -0.34326172, 0.06994629, -0.5, -1.0126953, -0.17407227, -1.1552734, 3.9472656, -2.1464844, 1.0498047, 0.45532227, -0.5263672, -0.546875, 1.0986328, 2.9433594, 0.36816406, -0.72216797, 0.50878906, 2.2539062, 4.3828125, 1.0761719, 0.34179688, 2.0820312, -0.4855957, 0.6611328, 0.7294922, -0.2442627, -0.6064453, -0.7963867, 0.6669922, 2.0976562, 3.4648438, 1.7421875, -1.15625, -1.5439453, 1.3964844, 2.9257812, -1.1884766, -0.89990234, 0.828125, -1.25, 1.5986328, -1.5517578, -0.72558594, 1.2080078, 3.3632812, 0.04269409, 2.1914062, 0.11206055, -0.28466797, -0.6352539, -3.5292969, -1.2988281, -0.7050781, -2.0136719, 2.7050781, -3.2519531, 1.7197266, 0.61865234, 1.09375, 1.8134766, -1.9609375, -1.6835938, -1.0820312, -1.9355469, -0.051971436, 1.2324219, -2.1601562, -3.5117188, 0.4008789, 0.88378906, 2.8398438, 0.19140625, 1.8173828, -0.96533203, -1.6533203, -1.78125, 0.06506348, 2.3125, -0.46142578, 0.20825195, 2.6269531, 0.6118164, -0.70458984, -0.80859375, 0.063964844, -1.046875, 2.4902344, 2.3261719, -0.4013672, -0.5727539, -1.8242188, -1.9970703, -4.1875, -1.9404297, 1.9306641, 0.25708008, 1.2792969, -1.7207031, -1.3535156, 0.45214844, -0.9863281, -0.21691895, -2.5136719, 0.9082031, -1.4101562, -0.50097656, -2.1445312, 2.2636719, -0.49829102, -2.3554688, -2.5332031, -1.3681641, -0.030349731, -1.6132812, -1.7509766, 3.7148438, -3.2246094, -2.1132812, 1.4033203, -1.2333984, -0.84814453, 2.3847656, 1.2382812, -1.1689453, 0.76708984, -2.7851562, 1.7353516, 0.45532227, -1.5839844, 1.2792969, -1.2373047, 0.27270508, -0.20410156, 2.0664062, 2.9726562, -0.45922852, -0.68115234, 1.2783203, 0.94873047, -1.2548828, -0.79785156, -0.25317383, 0.2841797, 3.6523438, 1.3378906, 0.17102051, -0.8100586, -2.3203125, -2.65625, -0.101257324, -2.7246094, 0.7651367, 0.6152344, 0.9633789, 0.4633789, -0.09161377, 1.4365234, -1.0556641, 0.8232422, -0.14367676, 1.0419922, -1.2519531, 2.1308594, 0.47583008, -0.8798828, -5.0664062, 1.6015625, 2.9570312, 4.3789062, -1.2490234, -0.4116211, 0.75341797, -1.8398438, -0.73583984, -0.8930664, -0.025756836, 2.3125, 0.42456055, -1.2060547, -1.9267578, 0.1977539, -1.8330078, 1.0224609, 0.49682617, -0.82958984, -2.2460938, 1.078125, 0.53808594, -2.3125, -0.58154297, 0.5415039, 1.3925781, -1.5195312, -2.0410156, -0.4140625, -4.6445312, -1.3095703, 0.80810547, -1.9140625, -3.1230469, 2.6054688, 0.22033691, -0.796875, 0.05316162, 2.6582031, -1.2285156, -0.27246094, 1.5927734, -0.020874023, -0.61621094, -0.97558594, -3.0996094, -0.21386719, 1.7890625, -1.8076172, 0.8925781, 0.7597656, 0.4645996, -0.101379395, 1.0498047, 0.9814453, 1.3681641, -1.3916016, 2.9003906, 2.1640625, 0.40283203, 1.4316406, 1.3847656, 1.9287109, 1.1679688, -1.2041016, 1.1767578, 1.6152344, 0.22399902, 1.9775391, -0.2866211, 1.0019531, -0.25561523, 0.75439453, 0.09222412, 0.7163086, 2.4667969, -3.2675781, -0.4165039, -1.3505859, -1.4736328, -2.6386719, 0.6582031, -1.6044922, 1.2402344, 0.7441406, 2.5605469, 1.4013672, 1.2578125, 0.5839844, 0.029418945, -0.31469727, 1.6621094, -0.95654297, -0.11755371, -1.0664062, -0.9165039, 1.7226562, 3.5195312, 0.9272461, 0.35302734, 0.037963867, -0.4987793, 0.041625977, 1.234375, 2.2890625, -0.052001953, 0.42163086, -2.0410156, 0.31933594, 0.5917969, -1.0742188, 0.49682617, 0.9951172, -1.5537109, -5.0703125, 3.3964844, 0.56347656, -1.2509766, 1.1962891, -3.6347656, 1.4443359, -2.4433594, 0.63623047, -2.0976562, -0.25048828, -0.121276855, 0.99902344, 0.21813965, 0.8984375, 0.1081543, 1.0898438, 1.3554688, -1.7695312, -0.73828125, 2.1484375, 0.5620117, -0.8442383, -0.20983887, 0.5102539, 0.9506836, -0.24487305, 3.3828125, 0.8491211, -0.6166992, 0.31982422, 2.5585938, 0.171875, 1.6171875, -0.31396484, -1.3476562, 1.2792969, -0.1071167, 0.48901367, -1.1083984, -0.73583984, -1.5742188, 0.24060059, 1.0625, -1.2919922, 0.6254883, 1.5683594, -1.1572266, -1.7421875, 2.2636719, 1.046875, -2.1953125, 2.3886719, 3.1816406, -0.6323242, -1.4707031, -0.67333984, 1.6591797, -1.6445312, 0.15661621, 1.6982422, -1.4472656, 0.66259766, -0.625, 0.5283203, -0.11553955, -1.7861328, -3.8886719, -0.41845703, -1.6660156, -1.4355469, -0.73095703, -2.3925781, 2.4316406, 3.9882812, 1.1855469, 1.3964844, 0.31274414, -1.5498047, 0.7651367, -2.5898438, -0.3564453, 1.4267578, 1.2695312, 2.1933594, -0.27734375, -3.1855469, -3.2539062, -0.22827148, 0.41308594, 0.26879883, -0.84228516, -0.14672852, 0.7993164, 2.6464844, 1.9755859, 0.00995636, -0.22436523, -0.15771484, -0.25512695, 2.4765625, -1.0078125, 1.9658203, -0.9892578, -0.98095703, 0.78271484, 1.3759766, 2.7207031, 0.023620605, -0.3059082, 0.80566406, 0.6308594, -1.34375, 0.078186035, 0.2524414, 1.1484375, 0.7363281, 2.9824219, 2.21875, 0.35229492, -1.8144531, -1.3027344, -0.63964844]}, "B004LZN5ES": {"id": "B004LZN5ES", "original": "Brand: Flame King\nName: Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-1.9375, 1.5253906, 1.3173828, 0.45458984, 1.2353516, -3.0839844, 0.10418701, 0.0597229, 1.1464844, -0.8300781, 2.1445312, 0.23535156, -0.0892334, -3.7910156, 1.4365234, 1.1425781, -0.82128906, 1.8818359, 1.3789062, 0.28076172, 2.0683594, 1.0029297, -0.49926758, -0.8959961, 0.4038086, -0.7529297, 2.6132812, -3.5605469, -0.7993164, 0.14562988, 0.97998047, -0.010765076, 0.030319214, 2.0546875, -0.2055664, -1.5771484, 0.9550781, -1.5302734, -5.0585938, -0.22668457, -2.0625, -1.4052734, 2.3027344, -1.1328125, -0.7836914, -0.20715332, 0.37036133, -1.1240234, -0.6977539, 0.11975098, 1.0019531, 2.1054688, 0.0128479, 1.3583984, 0.8457031, 1.8359375, 1.0751953, -3.0957031, -0.04724121, 0.5864258, 1.7265625, 0.24108887, -2.6074219, 2.4199219, -1.0585938, 1.6035156, 0.17199707, -0.3071289, 0.99365234, 1.8876953, 1.234375, 0.21276855, 1.7119141, -1.5898438, -0.8256836, 1.0693359, -3.7675781, 0.01574707, -0.53222656, 0.69433594, 0.0473938, 2.7539062, 0.6850586, -2.8046875, -1.1914062, -0.65234375, 0.54589844, 1.1855469, 0.5288086, 0.48095703, -1.4677734, 1.9355469, -0.07147217, -3.8007812, 2.5410156, 0.5571289, 2.5859375, 2.9375, 3.2167969, 0.11065674, 0.4477539, -0.10858154, -0.56689453, 1.2636719, -1.2324219, -1.7001953, 0.8310547, 0.8598633, -3.0996094, 1.8740234, -0.3251953, -0.50341797, 1.3466797, -0.5649414, -0.13867188, -0.46533203, 0.3071289, 0.9604492, 1.5800781, -1.5029297, 3.6425781, -2.8808594, 2.5761719, -1.2548828, 1.6572266, 1.6308594, -0.72753906, 0.46557617, 5.4570312, 0.094055176, 2.0214844, 0.13781738, 4.4882812, -2.0507812, 0.083740234, -2.4863281, -0.1328125, -2.1464844, -2.2636719, -0.80371094, -4.3164062, 0.040130615, 1.4541016, -0.06451416, -3.046875, -0.8203125, -0.49414062, 0.122924805, -0.8027344, -2.2929688, 1.0683594, -1.6318359, 0.72216797, -0.93310547, 2.859375, 1.4023438, -1.9707031, -3.0878906, 0.25195312, 1.2460938, 1.5712891, 0.16955566, 0.47216797, 1.96875, -1.0703125, -2.3105469, 1.0761719, 0.11456299, -1.4882812, 1.7285156, -0.30029297, -1.6054688, -0.3881836, 1.859375, -0.4248047, -0.8413086, 1.0458984, 1.5605469, 0.35009766, 0.26708984, -3.6210938, -0.2927246, -0.5229492, -1.8134766, 1.9521484, 0.51660156, -0.8276367, -1.1933594, 1.2158203, -0.66308594, -2.3789062, 1.7744141, -1.671875, 0.57666016, 0.010948181, -1.8378906, -3.9355469, -2.421875, 0.6425781, 1.9853516, 0.43774414, -1.1787109, 2.0859375, -0.27441406, -2.3125, -1.7070312, 0.29882812, -1.2099609, 2.0527344, 0.6772461, -0.6767578, 0.59814453, 1.5205078, -2.2714844, -1.2597656, -2.7929688, -0.875, 2.3359375, 1.8730469, 1.0478516, 1.1464844, -0.5229492, 1.7646484, 0.29516602, 1.6152344, 0.34545898, 1.1533203, 2.0410156, -3.5292969, -1.8085938, 1.8916016, 1.3339844, -0.18664551, 1.0058594, -2.4375, 1.5166016, 0.65234375, -0.9633789, 1.3740234, 0.53466797, 0.57421875, 0.85253906, -0.7919922, -0.7480469, -2.3105469, -0.48828125, 1.3173828, 0.4621582, 0.91308594, -0.5654297, 0.8457031, -0.55908203, -0.828125, -0.67089844, -0.59814453, 0.17675781, 1.3271484, 0.984375, 0.83154297, -2.3847656, 1.6132812, -1.7490234, -0.8881836, 1.0058594, -1.8398438, 0.11230469, 2.9082031, -0.86572266, -2.1738281, 1.3828125, -1.5878906, 0.57470703, 2.4472656, -1.3339844, 0.5776367, 2.3417969, -1.8798828, 3.7910156, -1.2851562, 1.9316406, -0.0009150505, -0.73583984, 1.3271484, -2.765625, 0.578125, 0.03564453, 1.1230469, -0.35595703, -2.6972656, 0.27368164, 4.5507812, -1.6572266, -1.9462891, 1.7167969, 1.3496094, 1.1445312, 4.1679688, -0.35083008, 1.5917969, -0.44482422, 0.13317871, 0.19104004, -1.6337891, 0.41601562, -0.40039062, -1.3349609, 0.72021484, -0.33544922, 0.453125, -0.21740723, -1.6826172, 0.6401367, -0.77734375, 0.18225098, 0.4645996, -0.96777344, 4.0273438, -3.3632812, 1.9794922, 2.0039062, 0.4338379, 1.5488281, 1.3183594, -1.4414062, -0.4934082, 1.1757812, -1.2460938, 1.9169922, -0.5546875, 0.8364258, -0.0030326843, -2.2070312, -0.22924805, -0.9296875, -0.41430664, 0.9165039, -1.1025391, -2.859375, -0.19641113, -3.1152344, 0.46801758, -0.0513916, -1.4248047, 1.1445312, 0.65625, -1.0703125, 0.12005615, 0.16491699, -0.21105957, -2.4042969, 1.1435547, 4.1210938, -0.30493164, -2.6523438, 1.5751953, 0.43481445, 1.6347656, 2.8554688, -0.019363403, -0.29052734, 0.08520508, -0.077941895, -0.21704102, -0.5209961, -0.7963867, -2.9160156, 1.9570312, -2.3203125, 2.2050781, -0.34423828, -0.22595215, -1.015625, -1.1572266, -1.1464844, -3.2675781, -0.62597656, -1.6816406, 0.12524414, 1.2333984, 2.1484375, -1.6220703, -1.3183594, 0.68652344, -1.1679688, -1.0029297, -0.024002075, 1.0253906, -1.4824219, -1.734375, -4.5390625, 0.5107422, -1.5888672, -0.76171875, -0.48632812, 0.17529297, -2.8066406, 0.30859375, 0.12445068, 0.39941406, -0.20910645, 0.0736084, -0.41845703, -3.1933594, -0.5449219, -0.2836914, -0.12121582, -1.1083984, -1.1875, 0.46704102, -1.7626953, -0.4399414, 0.49243164, -0.86083984, 2.1855469, 0.86621094, -3.3203125, 1.9453125, 1.3525391, 0.50927734, 3.1894531, -2.8691406, -0.44848633, -2.3203125, -0.75927734, 4.0507812, 0.6982422, 0.9707031, 0.49560547, -1.4472656, 0.83691406, -0.37353516, 0.007007599, 1.4101562, 0.07324219, 2.953125, -1.5107422, -0.51904297, 0.36328125, 2.5546875, -4.3398438, 0.18151855, 1.1728516, -0.45336914, 1.2558594, 0.6201172, -0.35229492, -0.3203125, 0.5966797, 1.2900391, 3.1503906, 2.0859375, 0.57373047, -1.2158203, 0.2208252, -1.2548828, -0.5048828, 4.3046875, -0.65771484, 1.5380859, 2.3847656, 0.6826172, -0.27075195, -0.44482422, 0.1665039, 0.7919922, 1.4550781, 2.0957031, -0.85791016, 1.046875, -2.4199219, -0.22973633, -0.4807129, -1.0556641, 1.359375, 1.1142578, 1.2958984, 0.26098633, -0.4326172, -0.61816406, -1.6845703, -1.5048828, 4.328125, -1.3916016, 2.265625, -0.1361084, -1.1816406, 1.1376953, -3.5722656, 2.5429688, -0.44360352, 0.5205078, -0.13562012, 0.78222656, -1.3710938, -3.4199219, 0.56933594, -1.6005859, -1.0595703, 2.5195312, 0.31274414, -3.3261719, -0.31835938, -2.0859375, 1.2333984, 1.2207031, -1.9091797, 1.7001953, 0.33569336, 0.44335938, -1.4785156, -0.6538086, 1.2929688, 0.78027344, -2.5976562, 1.3515625, -1.4462891, 1.7685547, 0.5415039, 0.65722656, -0.4699707, -0.06427002, -1.7998047, 2.6347656, -0.67871094, 3.3535156, 0.11639404, 1.8535156, 1.6728516, -1.4794922, 0.0025501251, -0.6850586, -3.3476562, 0.76416016, -1.9316406, -1.1845703, 1.1767578, -1.359375, 0.0993042, -0.86279297, 0.8881836, -1.0039062, -0.70166016, -0.4934082, 2.9941406, -1.9716797, 0.0690918, 0.3178711, 2.1308594, -2.7636719, -2.7910156, 1.0400391, -1.5996094, -0.5410156, 0.124938965, -2.0839844, 0.22839355, 0.9291992, -0.9213867, -0.3010254, -1.2646484, 1.6376953, -0.4807129, -1.1601562, -1.8261719, 2.0917969, 2.5097656, 0.7578125, 1.9599609, 1.5498047, 1.4501953, -0.63964844, -1.0634766, -0.8857422, 1.2666016, 1.2929688, -4.703125, -2.3007812, -0.51220703, 0.0793457, -3.5097656, 1.3867188, -1.4638672, 0.8540039, 2.8730469, 0.011177063, 1.9462891, 1.5458984, 0.6225586, -0.5678711, 1.2001953, 1.2958984, -0.68847656, 0.6035156, -1.8730469, -0.59472656, -1.1669922, 2.8320312, -2.3300781, -1.3671875, -2.1757812, 1.7333984, -4.8476562, 1.0498047, 2.0097656, 3, -0.6503906, -0.703125, 0.8041992, 1.1816406, -0.16381836, -0.7470703, 0.61328125, -0.92822266, -1.3564453, 1.3876953, 1.109375, -0.4892578, 0.7734375, 1.6337891, -0.05218506, -1.9052734, 0.35961914, 0.69140625, -1.8867188, 1.3876953, -0.50341797, 0.26538086, 3.296875, -1.7460938, -0.22583008, 1.1201172, 0.020614624, -0.17541504, 1.1005859, -0.44506836, 0.3869629, 2.0839844, 0.20019531, 1.0625, 2.6542969, 1.5820312, -0.68603516, 2.0625, -2.2441406, 0.18811035, -0.8178711, 1.8583984, -1.7832031, 1.109375, 1.7050781, 0.48046875, -0.41625977, 1.4052734, 0.5620117, -0.43725586, 1.2255859, 1.1777344, -2.9824219, -3.609375, -0.92871094, -0.5419922, 3.15625, -0.6611328, -2.6835938, 0.09979248, 3.4316406, -0.91845703, 1.3027344, 0.9848633, -0.71191406, -1.6865234, -1.7832031, -1.9003906, -1.1074219, 1.2060547, 0.78222656, 0.36914062, 1.0449219, -1.5859375, 0.018295288, -1.1025391, 1.71875, 0.41015625, -0.5024414, -0.88134766, 0.08093262, -0.19421387, 0.96777344, -1.0332031, 0.63427734, -1.0097656, -0.6347656, 0.6479492, -1.2382812, 2.7070312, -0.6826172, -0.55029297, -1.75, 1.4658203, -0.5283203, -0.76708984, 3.1386719, -1.0507812, 1.8886719, -0.7661133, -0.34594727, -1.5039062, 1.6337891, 1.7109375, -0.6230469, 0.40795898, 0.24621582, -2.9316406, -5.0820312, -2.0664062, 0.29174805, -0.06896973, -0.23840332, -1.9638672, -1.2792969, 0.3618164, -0.92089844, -1.9462891, -2.0332031, 0.048614502, 0.066589355, -0.58496094, -1.21875, 2.0957031, -0.41455078, 0.45385742, 0.9145508, -2.4003906, -1.0107422, -2.5, -1.5849609, 1.9375, -0.3852539, 0.94970703, 0.0075950623, -2.4707031, 0.8364258, 1.7939453, -0.44604492, -3.5410156, 1.9013672, -2.2480469, -0.66503906, 2.0390625, -2.9199219, -1.7011719, 1.6435547, -0.39624023, 1.6572266, 2.4238281, 1.0263672, -2.6992188, -1.6083984, -0.90478516, 1.7148438, -0.8886719, 1.2607422, 2.4003906, 1.5175781, 0.13842773, 2.0585938, -1.140625, -2.3574219, -1.4794922, -0.44384766, 0.010826111, -0.97216797, 0.0791626, -0.1928711, 0.6640625, -0.16235352, -0.76708984, -0.3581543, -0.89453125, -1.3378906, -1.4619141, 2.7324219, -2.9179688, 3.0898438, 2.5605469, -2.5136719, -2.0292969, -0.7836914, 0.83935547, 0.8544922, -3.0957031, -1.2294922, 1.2216797, 1.0820312, 2.4921875, -0.89746094, 1.8398438, -0.36987305, 1.0839844, -0.7524414, 0.17297363, 3.703125, -0.29785156, 1.9814453, 0.8808594, -3.1464844, 1.8183594, 1.9267578, 2.2441406, -0.8310547, 0.5175781, 0.39086914, -0.70410156, -1.0253906, -0.5234375, -0.17785645, -3.0175781, -1.0244141, 0.89404297, -1.1572266, -4.6875, 0.21374512, 0.21081543, -0.8642578, -0.1328125, -0.6230469, -0.22753906, -1.0712891, 1.1494141, 0.43115234, -1.8154297, 0.66503906, 1.4423828, 1.0361328, 1.3339844, -1.6806641, 1.2998047, 0.8598633, 0.19897461, -0.56689453, 0.87597656, -2.1132812, 2.9570312, 0.6386719, 1.9589844, 2.8925781, -1.0693359, 1.5693359, -0.8642578, 2.046875, 4.1523438, -0.27612305, 0.4465332, -0.6538086, 1.4960938, 0.1451416, -1.3916016, 0.8066406, -0.9399414, 1.5234375, -1.3769531, 0.49951172, 2.2832031, -1.0273438, 0.68652344, -0.7553711, -0.71777344, 0.103759766, 0.7236328, -1.1435547, -1.2558594, 0.65283203, 0.9609375, 1.53125, -0.21496582, 0.8671875, -0.6816406, 1.2392578, 1.0761719, 0.8623047, -0.86279297, -1.5146484, -2.1582031, 0.29760742, 2.5175781, 0.28881836, 0.40454102, 0.23999023, -1.0175781, 0.048980713, 0.85791016, -1.2148438, -1.4667969, 1.2929688, 0.7246094, 2.9375, 2.4785156, -1.0136719, 4.8242188, 1.7412109, -0.103149414, -3.2246094, 2.8339844, -0.9711914, -0.5341797, 1.1601562, -2.4160156, 0.9609375, -1.4345703, 0.6821289, -3.9921875, 1.1230469, 0.65771484, -1.2441406, 2.5332031, 0.3017578, -1.1826172, 2.828125, 2.4140625, -0.07537842, 0.41577148, -0.33618164, 0.90234375, 0.02696228, 0.5444336, 0.56347656, 0.58984375, -1.1054688, 3.4355469, 0.2680664, -1.0136719, -0.84228516, 1.6708984, 0.3762207, 0.99853516, 0.39648438, -0.7348633, 2.3066406, 0.8466797, 0.6459961, 0.6425781, -1.359375, 0.2010498, -1.9345703, -1.1025391, 1.0029297, -1.9492188, 0.0057525635, 1.6992188, -1.4804688, -2.2304688, 3.5039062, -1.0039062, 0.6152344, -0.33618164, -1.8886719, -1.1914062, 0.8911133, 1.0908203, -2.0722656, -0.073913574, 0.4663086, 2.84375, -0.6118164, -2.0761719, -0.7504883, -0.57128906, 0.4152832, -1.9570312, 0.9609375, -0.9238281, -0.2512207, 1.6191406, -0.71972656, 0.9086914, 1.1015625, 0.80078125, 1.8525391, -0.76904297, -0.36621094, 0.4248047, 0.46899414, -1.9228516, -1.9003906, 0.1262207, 1.2431641, -0.33935547, 0.021957397, -3.8945312, -1.6376953, -1.9814453, 0.16882324, -1.0302734, -1.2304688, 1.4501953, 1.0400391, 1.1640625, -0.3894043, 0.37402344, -0.38354492, 1.9453125, 1.8447266, -1.8925781, 1.5048828, -0.2548828, -0.3840332, -0.99365234, 2.8632812, 2.2167969, -0.56640625, -0.36621094, 1.7597656, -2.0546875, 0.11602783, -0.45581055, -0.9316406, -0.4128418, 1.2441406, 1.5283203, 3.296875, 0.65478516, -0.5566406, -1.8037109, -0.33666992]}, "B07PHRM55J": {"id": "B07PHRM55J", "original": "Brand: Hisencn\nName: Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills\nDescription: \nFeatures: \u3010Fits Charbroil Performance 4 Burner Grills\u3011Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills.\n\u3010Fits Charbroil Performance 5 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 \u3010Fits Charbroil Performance 6 Burner Grills\u3011 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619.\nIf you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; \u25b2If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM.\nBurner Dimesion: 17 3/4\" x 3/5\", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16\" X 2 1/12\", Material : Stainless steel ; Original parts number: G470-0004-W1. \u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\nRepair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.\n", "embedding": [-1.3808594, 0.24401855, 1.6298828, -0.69091797, 0.083496094, -0.034698486, 1.2763672, -2.8339844, 0.9526367, -0.23547363, 1.4472656, 1.2714844, 2.9140625, -3.140625, -1.9580078, 0.8984375, 0.18615723, 0.66796875, 1.4130859, 0.5073242, 0.46484375, 1.3251953, 3, -1.1699219, 0.008361816, 1.4375, 7, -2.109375, 1.8291016, -1.1972656, 1.7861328, -1.5644531, 0.82470703, 2.734375, -2.7910156, -0.7451172, -0.96191406, 1.1308594, -3.078125, 1.0634766, -0.35302734, 1.8681641, 1.2753906, 0.3251953, -2.2539062, -2.328125, 0.029220581, 1.7265625, -1.5527344, 0.07556152, 2.8867188, 1.7910156, -0.095703125, -0.15551758, -1.3681641, 3.2578125, 0.16345215, -0.80078125, 0.5439453, -0.27783203, 2.140625, -0.04989624, -2.3398438, 1.2314453, -2.4941406, 2.7070312, 1.0664062, -0.45507812, 0.2626953, -0.65283203, 2.4726562, 0.11505127, -1.8027344, 0.4194336, 0.81103516, -1.0791016, -3.890625, 0.94384766, 0.97753906, -2.5019531, -1.5498047, 3.1894531, -0.76123047, -1.7460938, 1.5664062, -0.8808594, -0.5527344, -0.9316406, 3.6289062, -0.22460938, 0.32495117, 2.2148438, -0.57128906, -5.09375, 1.5439453, -2.0488281, -0.48364258, -1.7919922, 0.13317871, 1.7480469, -1.0400391, -1.0537109, -1.3994141, 0.28564453, -3.2011719, 0.3642578, 2.5800781, 1.8212891, -1.8544922, 0.1227417, -2.0507812, -1.53125, 2.4804688, 1.6035156, 0.21472168, 2.8359375, -0.8642578, 0.39990234, 1.09375, -0.48168945, 4.8476562, 1.3613281, -0.30419922, -0.25341797, 0.21728516, -0.034088135, 0.25390625, 1.0849609, 3.8652344, -0.43896484, 0.6328125, -0.21313477, 2.5429688, 0.8276367, -0.7734375, -2.3183594, -3.3808594, -1.0478516, -1.9082031, 2.6230469, -1.2177734, -0.32788086, 1.1679688, -0.72558594, -2.4648438, 0.5107422, -0.7836914, 1.6640625, -0.3305664, -1.4287109, 1.5839844, -3.7226562, -1.4082031, -2.8339844, 0.9042969, -0.1862793, -0.45092773, -1.7998047, 1.6640625, 2.1445312, 0.7006836, -2.6679688, -0.010948181, 2.4453125, -0.57373047, -0.6098633, -1.1699219, 0.5683594, 0.14916992, 1.9609375, 0.88134766, -0.26171875, -0.30004883, -1.1630859, 0.015686035, -1.4570312, -1.2402344, 1.8310547, -0.0014457703, 1.0390625, -0.69628906, -1.5351562, 0.34301758, -0.39990234, -0.085510254, -2.0332031, -0.4555664, 1.5791016, 1.6445312, 0.03265381, 0.24633789, -0.7763672, -0.46020508, 0.31835938, -1.0615234, -0.73339844, -0.06222534, -0.75927734, 0.9511719, 0.23449707, -2.6660156, 1.2226562, 1.2626953, -1.0380859, -2.1132812, -3.9824219, -0.24780273, 0.25854492, 1.7353516, 1.4970703, 1.8496094, -1.0771484, 1.4599609, 0.49536133, 1.0498047, -1.9814453, 1.7128906, -1.1376953, 0.7578125, 1.8378906, -0.1661377, 0.3569336, -0.51416016, 0.8701172, 1.484375, 0.8413086, 0.51220703, 1.2695312, -0.83935547, -1.7597656, 1.8837891, 0.1739502, -0.52441406, 1.5429688, 0.33520508, 2.6542969, 0.9526367, -0.26660156, -0.60058594, -0.76123047, -0.34423828, 0.10247803, -1.1455078, -1.7441406, 0.07763672, 2.5527344, -2.5039062, 3.3574219, 1.5761719, 0.10180664, -0.18286133, -1.6601562, 1.3857422, 0.33789062, -2.9335938, 0.34106445, -0.94873047, 1.2792969, -1.625, -0.92041016, 1.4228516, -0.3034668, -1.3300781, -1.3681641, 1.4345703, -1.5917969, 2.1621094, 2.7089844, -0.26635742, -0.99609375, 0.2861328, -0.56933594, 0.83740234, -1.8144531, 3.4433594, 2.609375, -0.82421875, 3.5390625, 0.17456055, -0.33374023, 1.4853516, 2.2734375, 2.1933594, -1.2705078, 1.1894531, 1.2304688, -0.21228027, -2.0859375, -0.5229492, 2.0058594, 3.4667969, -0.00058174133, -1.8837891, 3.71875, -1.6123047, 0.46362305, -0.49536133, 0.32128906, -0.7832031, -0.45532227, 0.984375, 1.4355469, 1.7822266, 0.14404297, -0.9897461, 1.1474609, 1.3046875, -2.0507812, -0.44140625, 1.7773438, -0.11602783, -1.1884766, -1.9628906, 1.1513672, -2.4296875, -2.1035156, 1.8085938, -2.3847656, 1.7353516, -0.8588867, 1.6826172, 0.7685547, -0.053100586, -2.1933594, 0.26171875, 0.9399414, -2.5996094, 1.3652344, 0.4650879, -0.043273926, 1.1582031, 0.17858887, -0.23156738, -2.5195312, -3.3476562, 0.47045898, -1.515625, -4.3984375, 0.19458008, -0.03515625, -1.0761719, 0.98291016, -1.0332031, 1.2001953, 0.8354492, -2.1835938, -2.1289062, -0.64990234, -1.4941406, -1.1464844, -0.765625, 0.43579102, -1.6660156, -4.5390625, 0.1887207, -1.7636719, 1.5869141, 0.22460938, -1.5078125, -1.7011719, 0.11077881, -1.3730469, -1.4052734, 1.2773438, 1.3828125, 0.109375, 0.79541016, -1.9365234, 1.1591797, -3.4277344, 0.96240234, -1.8837891, 2.8574219, -2.5683594, -1.7001953, 1.3896484, -0.68896484, 2.7539062, -0.20458984, 1.8193359, 1.3320312, 0.9560547, 0.76171875, -1.25, -2.8984375, 0.010116577, -0.60546875, -0.5942383, -2.8085938, -2.1914062, 0.22473145, -0.8535156, -0.76660156, -2.5429688, -2.0839844, -1.6474609, 0.88427734, -1.2910156, -1.3515625, -0.8051758, 1.109375, 0.8613281, 1.5, -1.5478516, -1.1904297, -1.7646484, -1.0253906, -1.7919922, 2.1738281, -1.3017578, 1.6542969, -0.36694336, 0.17602539, 2.640625, -0.26660156, -1.7617188, 2.7304688, 1.4208984, -3.0175781, 1.1259766, -0.33544922, -0.8149414, -3.8945312, -1.8994141, 2.4863281, 2.7890625, 2.7382812, 0.4934082, -0.10424805, 2.9941406, 2.8242188, 1.5654297, 0.3635254, -0.5566406, 2.2421875, 0.101867676, -3.3945312, 0.8144531, 1.2353516, -3.4375, -1.0507812, 2.9414062, -0.5288086, 1.7363281, 0.86328125, 0.17407227, 0.22924805, -1.3759766, 2.8222656, 0.66308594, 0.9091797, 0.5522461, -0.59228516, 0.4946289, 0.6323242, -0.8691406, 1.8603516, -0.10668945, 1.4560547, 0.8569336, 1.3974609, -2.34375, 1.3662109, -0.78759766, 0.38452148, 1.4736328, 1.7783203, -1.2236328, 1.5878906, -1.6972656, -1.5263672, -0.3803711, -1.1914062, -1.9228516, 1.9648438, 0.94189453, -0.94677734, 0.70166016, 1.9033203, -0.37231445, 0.1763916, -0.020507812, -2.0175781, 0.049346924, 0.6801758, 1.4316406, -0.39257812, -3.0175781, 2.6894531, -1.7773438, -0.2685547, -0.99316406, 1.6835938, 0.27685547, -1.9189453, 1.0927734, 0.8886719, -1.0947266, 1.4785156, 0.5161133, -1.0722656, 1.9941406, -1.6289062, 0.4658203, -0.16064453, -1.4443359, 0.82177734, -1.6679688, -1.78125, -0.95214844, 1.1474609, 1.1113281, -0.19470215, -2.3789062, -0.0836792, -3.6367188, -1.390625, 0.21740723, -2.5234375, -1.9003906, 0.80126953, 1.4814453, 0.61621094, -0.13891602, 3.8964844, -0.14526367, 0.53759766, 3.4804688, -2.9199219, 0.039886475, -3.3085938, -5.0039062, 2.4101562, -1.0380859, -0.41235352, 2.8984375, 1.9814453, -0.2097168, 4.2265625, 1.0537109, -1.9775391, -1.6152344, -0.7421875, -2.2421875, 0.38476562, -2.6367188, 1.8955078, 0.25463867, -0.7182617, -2.9179688, -0.76708984, -0.8330078, 2.3984375, 2.4550781, -3.2265625, -0.13769531, 0.024902344, 0.8251953, -1.2197266, -2.5234375, 0.21691895, -0.34936523, -0.21557617, -0.7167969, 1.2949219, 1.7929688, 1.1367188, 1.9492188, 1.3515625, 1.4042969, -0.24816895, -0.5336914, 0.27319336, 3.0390625, 0.9008789, -3.6074219, -2.6640625, -0.76708984, -1.0634766, -0.84472656, 0.47558594, -0.5332031, -1.6513672, -0.52783203, -0.5942383, 1.9951172, 3.0664062, 0.3317871, 0.02053833, -1.6220703, 1.2861328, -0.23510742, -1.7929688, -0.18334961, 0.6064453, -0.4152832, 0.9897461, -3.703125, 1.3447266, -1.4042969, 0.6567383, -3.4765625, 1.2851562, 2.1269531, 2.0585938, 3.6582031, -1.6699219, 0.9838867, -0.4411621, 1.0048828, -0.26708984, 0.9838867, -2.5078125, -0.2709961, -0.9458008, -0.097229004, -1.2402344, -0.6074219, -0.12084961, -0.72021484, -2.0957031, -1.8681641, 1.2636719, -2.7109375, -2.2851562, 2.140625, -0.45361328, 3.5976562, -1.8613281, -0.12194824, 1.7246094, 1.4775391, 0.21728516, 1.2128906, 0.27148438, 1.1621094, 0.57470703, 1.7138672, 2.5175781, -1.4746094, -0.15112305, -0.32861328, 0.47070312, 0.03060913, 0.6245117, -0.46777344, 0.50683594, -0.87158203, -0.35864258, 2.4707031, 1.7285156, 0.26220703, 4.6835938, 1.7666016, -2.296875, 0.8388672, 0.40527344, -5.3945312, 0.27856445, 1, -0.40527344, 0.36865234, 1.8984375, -3.8671875, -2.3261719, 2.2441406, 0.3203125, 1.7050781, -0.74121094, -1.0087891, -0.09838867, -0.72998047, -0.8305664, -1.2900391, -0.52734375, 1.0947266, -0.45141602, -0.6713867, -1.5, 1.4873047, 2.8769531, 0.21313477, -1.8876953, 0.98876953, -0.90283203, -1.4746094, -0.69873047, -2.1914062, -1.7333984, -0.17199707, 1.8496094, 1.1259766, 2.5117188, 1.9277344, 3.6210938, -2.2304688, 2.4511719, -1.3398438, 2.9082031, -1.7539062, -0.8598633, 1.2529297, -2.0742188, 1.4912109, -3.5058594, 0.37719727, 0.94677734, 1.6162109, 0.5625, -0.89160156, -0.03074646, 1.7480469, -1.484375, -3.5527344, -2.4707031, 0.9038086, 1.7871094, 1.0878906, 1.2978516, 1.4580078, 1.8554688, -2.1542969, 1.0976562, -1.1123047, 0.17810059, -1.859375, 0.9584961, -0.5214844, -0.27001953, 0.049316406, 1.1464844, 0.40966797, 2.7714844, 1.5097656, -2.5898438, -2.2324219, 0.27661133, -1.1933594, 0.40527344, -0.72802734, 0.7421875, 0.74609375, 0.57714844, 2.0742188, -2.15625, 2.1503906, -1.7441406, -0.7607422, 1.3349609, -1.4375, 0.7026367, 0.028274536, -2.6289062, -0.9560547, 0.010627747, 1.7109375, 0.71435547, 0.7739258, 0.9897461, -0.77734375, -1.0791016, -3.2460938, 0.22583008, 2.0527344, 2.2382812, -1.1660156, -0.18615723, 0.81152344, -2.5371094, -1.3925781, 1.7685547, -2.9667969, -0.3251953, -1.1054688, 0.796875, 0.4802246, -0.55078125, 0.8359375, 1.5761719, -0.34716797, 0.8173828, 0.25976562, -1.3144531, 3.3378906, 1.8896484, -2.171875, -2.7929688, -0.63183594, 0.60546875, 2.828125, 0.21362305, -1.0087891, 0.6899414, -2.1777344, 0.3017578, -0.15234375, 2.875, -0.7080078, -1.2373047, -0.123168945, 1.0429688, 4.3945312, 1.4228516, 0.55371094, 0.5307617, 1.7431641, -2.6933594, 3.3710938, 0.65771484, -3.6289062, -0.58691406, -3.1503906, -1.1113281, -0.07775879, -1.0078125, 0.009483337, -2.2714844, -1.4873047, -0.8798828, -1.796875, -3.7460938, 0.390625, 0.7792969, -1.4726562, 0.61865234, 3.3046875, -2.3144531, 3.7363281, 0.8808594, 2.4492188, -1.9287109, -0.4716797, -1.8417969, -0.42773438, 1.1914062, -1.6074219, -0.18164062, -0.7832031, 0.058380127, 0.5102539, 1.0625, -0.3647461, 2.0273438, 2.6152344, 2.0566406, 2.2792969, 1.8134766, 2.3671875, -0.049438477, 3.234375, 1.5039062, -1.6035156, 1.2021484, 0.7636719, 1.1318359, -0.19824219, -1.6005859, 1.2460938, -0.46972656, 0.7114258, -0.03286743, 0.30273438, 0.5541992, -2.7128906, 0.70214844, -0.7260742, 0.65283203, -2.0742188, -1.0146484, -0.80029297, -0.033111572, 1.2988281, -0.74658203, 3.4648438, -0.09802246, -0.11035156, -1.0703125, 1.2460938, 2.1347656, -4.5, -0.99658203, 0.5810547, -1.8505859, -0.9663086, 0.43408203, 0.39526367, 1.5322266, 2.9609375, 0.2084961, 0.99316406, 0.9008789, -0.43139648, -1.2294922, -0.85253906, 1.5839844, 1.4355469, -0.6904297, -0.89404297, 0.6586914, -1.3681641, -3.3847656, -2.5644531, 1.2939453, 0.37841797, 2.4667969, -0.17468262, -2.2460938, 3.2402344, 0.64941406, 1.6162109, -1.3105469, -0.026031494, -0.5839844, -1.9726562, -1.7216797, 0.24707031, 0.32348633, 0.8588867, 1.3154297, -1.8964844, 1.6601562, 1.2304688, 1.8408203, 1.3642578, 1.5761719, -0.029571533, 0.81103516, 0.20617676, 1.84375, -1.2978516, 1.7978516, -1.4580078, 1.6894531, 1.4921875, 0.8041992, 1.2011719, -2.0429688, -0.7397461, 1.1523438, 1.3095703, 0.92822266, -1.2070312, -2.5976562, -0.7910156, 2.234375, -1.1054688, -2.6757812, 1.3759766, 1.0136719, -0.31420898, 1.3388672, 0.89501953, -1.7949219, 3.4394531, -0.08355713, 0.015052795, -1.7626953, -1.4980469, -0.43310547, 0.26220703, -2.2421875, 0.93652344, 1.5136719, 0.05911255, -2.2617188, 0.32373047, 0.2133789, -0.7661133, 0.24829102, 0.37963867, -1.0742188, -1.2226562, 0.047821045, -0.75683594, -0.9033203, 2.1425781, 0.8964844, 0.39819336, -2.2363281, 0.6381836, -2.140625, -0.1340332, -1.6845703, 0.59277344, 2.0449219, 1.1396484, -0.2475586, 0.7602539, -1.6347656, -1.8398438, -2.2734375, 1.8007812, 3.125, -0.7524414, 0.41430664, -3.2988281, 3.375, -0.38452148, -1.5458984, 1.3916016, -1.6240234, 0.92822266, 0.22241211, 0.85595703, 0.56347656, 2.1113281, 0.40771484, 3.7246094, 2.1367188, 0.91796875, 0.2944336, 1.8369141, -0.5175781, -1.8378906, -0.33764648, -0.14196777, 1.296875, -1.0957031, 0.45043945, -0.35058594, -0.0075798035, 0.66552734, -0.8100586, -2.2792969]}, "B00T36LG5U": {"id": "B00T36LG5U", "original": "Brand: ADCO\nName: ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover\nDescription: \nFeatures: Fit's Double 20 LB propane tanks\nThe fabric is designed to look like a diamond plated steel and matches the plating on your vehicle\nSecures with an elasticized bottom hem and zipper\n1 cover per box\n", "embedding": [1.28125, 0.45410156, 1.9609375, -1.9023438, -0.6611328, -0.8833008, 1.0605469, -1.0791016, 1.8115234, 3.2910156, 1.3486328, 0.4658203, 0.3190918, -2.7792969, 1.8525391, -0.5419922, 0.75097656, 1.2089844, 3.8867188, 0.3137207, 0.9765625, -0.3178711, -0.7246094, 0.5288086, 0.59277344, -0.46142578, 3.1953125, -0.8310547, -1.7773438, 0.029144287, 0.37548828, 0.34423828, 0.61083984, 1.2724609, -0.032226562, -1.6611328, 0.5576172, 0.5600586, -4.2070312, 0.048309326, -2.6328125, -0.62158203, 1.5537109, 1.9580078, -1.5605469, -1.1523438, -0.875, -1.1582031, -1.3164062, -0.81152344, 1.7480469, 2.1933594, 2.5292969, 1.2958984, -0.7602539, 0.7050781, 0.15161133, -1.0673828, -0.30541992, 0.40185547, -0.8491211, -0.65722656, -2.3867188, 2.3554688, -0.122680664, 1.3769531, -1.5683594, -1.2626953, -0.10784912, 1.8476562, 0.24694824, 2.3613281, 0.72802734, -1.8828125, -0.3190918, -0.59228516, -0.6870117, 1.5449219, 0.5966797, -2.2167969, -0.13391113, 1.9287109, -1.7958984, -1.4394531, -2.0527344, -1.1992188, -0.67285156, -0.35620117, -0.4416504, -0.73046875, -1.7773438, 0.45288086, -1.8164062, -3.8378906, -1.1083984, 0.05050659, 1.8183594, 1.1894531, 2.2832031, 1.7382812, -0.1517334, -0.6982422, -0.7890625, 0.43066406, -1.7255859, -1.6660156, 2.3417969, -0.8417969, -1.1767578, 0.109191895, -1.078125, -0.22583008, 2.0390625, -1.4316406, 1.0048828, -0.39013672, 0.39990234, 1.9785156, 1.2880859, 0.62060547, 2.515625, -1.1181641, 0.9902344, -0.27270508, 2.5234375, 2.2832031, -1.8505859, -0.16503906, 2.4707031, -1.1328125, 0.65771484, 0.5078125, 1.2910156, -0.66259766, 0.6274414, -1.0175781, -2.0039062, -0.16906738, -0.6699219, 0.4736328, -2.7890625, -0.93652344, -0.85058594, 1.0810547, -2.8574219, -0.47485352, -2.1777344, 2.2363281, -1.0214844, -0.60302734, 0.93408203, -2.6972656, 1.3671875, -0.4963379, -0.15710449, 0.24389648, -0.03665161, -3.7792969, 1.0771484, 2.1210938, 1.8017578, -0.6791992, 1.6005859, 0.921875, 0.96191406, -2.7792969, 0.016616821, 0.4814453, -2.3789062, 0.8652344, -0.49072266, -1.8916016, 0.79785156, -0.06689453, -1.4316406, -0.5673828, 1.0634766, 0.34375, 0.75683594, -0.41479492, -2.2851562, -0.953125, -0.9033203, -0.72216797, 1.9335938, -0.001496315, -0.44677734, -1.5908203, -0.22241211, -0.88720703, -3.9609375, 1.4804688, -1.1591797, -0.20837402, -2.4628906, -2.1484375, -2.9082031, -1.5644531, 0.9604492, 0.49072266, -0.9536133, -1.7431641, -0.66796875, 1.140625, -2.7089844, -0.7441406, 1.8974609, 0.49560547, 1.28125, 0.06756592, 0.1640625, -0.41918945, 3.6230469, -1.0205078, -2.4824219, -1.8408203, 0.93603516, 0.5, 1.4511719, 1.8574219, 0.2866211, 0.9975586, -0.20141602, 1.4189453, 0.33544922, 2.859375, 2.3789062, 1.8876953, -2.671875, 0.5654297, 0.6430664, 2.2109375, -2.5527344, -0.46435547, -1.5400391, 0.6064453, -0.28808594, -1.6884766, 1.1503906, -0.32080078, 0.31811523, -0.78808594, -2.3515625, -1.3027344, 1.5351562, 1.1689453, -1.8291016, 2.4140625, 0.5102539, -0.13500977, 0.01600647, -0.8930664, 1.1943359, -0.40722656, -0.24914551, 2.1113281, 1.2070312, -0.9213867, 0.48583984, -3.2304688, 0.5571289, -0.4946289, -0.99121094, -0.85546875, -0.079711914, 1.0410156, 1.7988281, -1.8242188, -0.8457031, 0.68847656, 0.4633789, 1.4404297, -1.5556641, -1.40625, 2.0625, 2.1601562, -1.1201172, 2.6171875, 0.21472168, 2.1113281, 1.8603516, 0.4489746, 3.2207031, -1.8408203, 1.1513672, 2.7714844, 1.7480469, -0.32714844, -1.6962891, 1.1611328, 2.6972656, -0.37524414, -0.45776367, 2.3847656, 1.7011719, 2.1875, 2.5, 0.5307617, -2.8808594, -0.72314453, -2.4238281, 0.48291016, -0.22680664, 1.796875, 0.11553955, -1.484375, -0.021148682, 0.9482422, -0.6147461, -0.4074707, 0.5732422, -1.6523438, -1.9306641, -1.8847656, -2.2871094, -1.1025391, 2.9121094, -2.8164062, 1.6015625, 1.2539062, -1.1259766, 0.21972656, 0.49023438, -0.8666992, 0.9448242, 1.9628906, -1.2099609, 1.125, 1.1806641, 0.4321289, 0.765625, -0.3942871, 1.7890625, -0.3395996, 0.8959961, 0.55908203, -1.4746094, -0.9189453, 1.3486328, -2.0742188, 1.0751953, 0.09893799, -1.203125, 2.6386719, 1.0878906, -0.4633789, -0.5649414, 1.1035156, -1.5742188, -1.9824219, -0.2626953, 1.7548828, -0.78515625, -4.1875, -0.3010254, -0.25952148, -2.1347656, 1.3378906, -1.4501953, -0.7426758, 0.86865234, 0.578125, 1.4902344, -0.5395508, -1.9970703, -0.15197754, -0.16149902, -4.1992188, 2.1855469, -1.3867188, 0.8618164, -1.9492188, 1.7519531, -0.8540039, -1.2636719, 0.9472656, -2.0878906, 4.6132812, 1.2001953, 1.1464844, 0.75683594, -2.7929688, 0.55322266, -1.1025391, -2.1679688, 0.7036133, -0.7836914, -0.9238281, 0.18054199, -4.234375, -0.17333984, 0.2055664, -1.3525391, 0.077697754, -2.4804688, 0.38232422, -0.1451416, -1.1904297, -0.09240723, 0.36523438, 0.6972656, -0.90966797, -1.5830078, 1.3769531, -0.018493652, -0.8276367, -1.3134766, -0.7211914, 2.078125, -0.71240234, 0.45483398, 0.5541992, -1.3994141, 2.6191406, 0.5517578, -2.5214844, -0.08728027, 1.1113281, 2.4316406, 2.9472656, -1.2900391, -0.7182617, -0.9448242, 0.38134766, 4.140625, 2.7070312, 1.3671875, 1.3984375, 1.1328125, -0.36645508, 0.6665039, -0.05895996, -0.6538086, 0.21105957, 2.1152344, -0.36157227, -0.20727539, -0.9399414, 1.9482422, -2.6660156, -1.7597656, 2.3808594, -0.80908203, 2.7402344, 0.7817383, -2.2519531, 0.57910156, 0.44482422, 3.3378906, -0.49316406, 1.9677734, 2.0527344, 0.81152344, 2.0234375, 1.7919922, 0.96533203, 2.5429688, 0.7753906, -0.09063721, -0.7988281, 0.26953125, 0.48950195, -0.91552734, 1.2412109, -0.73046875, -0.7270508, 1.9492188, -0.67626953, 2.9375, 2.7539062, -0.35839844, 0.4711914, -2.4492188, 0.68603516, 2.3417969, 0.3828125, -0.5654297, 0.072265625, -1.8261719, 0.003982544, -2.734375, 1.5712891, -0.6723633, -0.18054199, -0.51660156, -2.5351562, 1.5136719, -1.7744141, 4.1054688, 0.3166504, -0.39111328, -0.20739746, 1.7724609, -0.8129883, -2.0625, 0.078125, 0.35595703, -2.1386719, 3.2949219, 2.4824219, -1.1425781, 0.63916016, -1.9931641, 1.7675781, 1.7578125, -1.5927734, -0.042297363, -1.3525391, 1.1132812, -1.3310547, -0.7441406, 0.3334961, 3.2324219, -2.6484375, -1.203125, -1.5205078, 0.7866211, -0.5576172, -0.15893555, -0.5209961, 0.02520752, -1.6523438, 1.2119141, 0.18115234, 3.5136719, -0.8540039, 0.4650879, 2.2890625, -0.0053634644, 0.11383057, 0.060333252, -0.8959961, -1.0302734, 0.41064453, -0.6796875, 3.8671875, 0.921875, 1.2148438, 0.66845703, -0.6269531, -2.3613281, -0.20715332, -1.7353516, 0.33032227, -0.9267578, -2.2480469, -0.13183594, 2.7167969, -1.0566406, -1.0634766, -0.4020996, -2.9863281, -0.9692383, -0.67333984, 1.0488281, 0.81689453, -2.25, 0.45458984, -0.91308594, -0.17285156, -0.07989502, -1.2685547, -0.8051758, -1.0859375, 2.9921875, -0.9584961, 0.16210938, 0.8979492, 4.1054688, 0.7416992, 0.6064453, 0.17993164, -1.0078125, 2.6347656, -0.4724121, -5.4296875, 0.17272949, -1.9726562, 0.98535156, -0.115234375, 0.3305664, 1.2822266, 0.2487793, 0.23828125, 1.2167969, 0.87841797, 1.7207031, -0.79541016, -1.6542969, 1.6757812, 0.8041992, -1.90625, 0.97558594, 0.23535156, 1.9355469, 0.6015625, -0.4790039, -1.2363281, 2.0898438, 0.40966797, 1.0341797, -4.6679688, 0.99609375, 2.3964844, 0.4008789, 1.71875, -2.4199219, -1.6367188, -0.88134766, 2.1835938, 0.7866211, -1.3916016, -1.2451172, 1.9882812, -1.6660156, 1.7861328, -2.2460938, -1.7568359, -0.002374649, -0.62841797, 0.51708984, -0.4465332, 0.72753906, -0.10662842, -0.9448242, -0.17980957, -1.0966797, 3.421875, -1.7304688, 1.0410156, 0.82910156, -0.9765625, -0.9008789, 4.2421875, -0.60791016, -0.24243164, 1.3222656, -1.2041016, 0.7426758, -1.4921875, 0.9580078, 2.65625, 2.2226562, -1.6162109, -3.2792969, 1.9833984, 2.5664062, 0.1920166, -0.29296875, 1.3867188, 2.6660156, 0.78222656, -0.48046875, 1.0869141, -1.1757812, 2.2597656, 0.8935547, -0.69091797, -0.6098633, -0.7949219, 0.46142578, 2.2929688, -1.2373047, -2.9589844, 1.1416016, 1.3769531, -0.6923828, 0.8276367, 0.5395508, -1.9482422, -2.7558594, -2.5585938, -3.1386719, 0.56640625, 0.42407227, -1.3632812, -0.90283203, -0.31762695, 0.7583008, 0.3828125, 2.8339844, 0.27172852, -1.9462891, -0.72021484, 0.5683594, -2.4707031, -1.7871094, -1.9414062, -2.1992188, 0.24450684, -0.7866211, 0.58984375, 0.073913574, 2.6894531, 3.2871094, -1.8720703, 1.0996094, -0.7583008, 1.3505859, -1.9873047, -0.53222656, 2.3515625, -1.2128906, -1.2753906, -0.2836914, 1.5195312, -1.1005859, 2.9179688, 2.1035156, 0.23950195, -0.73779297, -0.030593872, -4.6523438, -4.0859375, -1.2285156, 0.5493164, 0.21875, -0.35888672, -0.6035156, -1.3681641, -1.1445312, -1.8056641, 0.8798828, -1.4013672, 0.3491211, -1.0888672, -2.7167969, 0.95458984, -0.19335938, 1.0839844, 0.42285156, -0.88134766, -0.25463867, -1.2412109, -2.4277344, -3.4804688, 1.5175781, -2.2617188, 0.3071289, -0.12072754, -1.2958984, 3.21875, 1.5136719, 1.2880859, -1.0205078, 0.61572266, -0.20861816, 1.2011719, 1.7910156, -1.1923828, -1.4658203, 1.4941406, -0.9091797, 0.40844727, 3.7988281, 1.5048828, -1.9707031, -0.37158203, 0.3959961, -0.013938904, 0.43579102, 1.6464844, 1.1816406, 1.5283203, 2.9023438, 1.3349609, -0.9682617, -1.4550781, -2.4863281, -0.5371094, 0.24353027, -2.4863281, -1.7041016, 0.9941406, 1.9833984, 2.4082031, 0.07623291, 1.6152344, 0.4091797, 1.0029297, -2.1269531, 0.06726074, -2.5058594, 0.5654297, 1.0986328, -1.4648438, -2.7207031, -2.046875, 3.5039062, 0.61279297, 0.09234619, 2.0917969, -0.23583984, -1.3964844, 0.29736328, 0.3623047, 0.9707031, 0.5058594, 0.890625, -1.5644531, -0.2076416, 3.1875, -1.0068359, 0.71484375, 0.45288086, 1.1542969, -1.2763672, 1.8339844, 3.3632812, -2.6113281, -0.8051758, 0.72216797, -1.5742188, -0.91796875, 0.5541992, 0.020767212, -3.8984375, 0.12286377, -1.7939453, -0.25732422, -4.3984375, 1.4375, -1.1953125, 0.46142578, 1.1904297, 1.3066406, -1.2910156, -0.78515625, 2.7832031, 0.84716797, -0.96972656, -0.6845703, -0.6533203, -0.27148438, 1.9755859, -2.2070312, -0.37817383, -2.6992188, 1.8408203, -0.06951904, -0.9350586, -1.2880859, 1.0556641, 1.8134766, 3.328125, 2.4101562, 0.7207031, 1.0136719, -0.7578125, 1.2177734, 1.2548828, -1.5683594, 0.63720703, 0.53515625, 1.4375, 3.4453125, -1.0898438, -1.3613281, 0.008522034, 0.034851074, -1.0556641, 0.7246094, 1.8115234, -1.5712891, -1.3222656, -1.03125, -1.5595703, 1.4667969, -0.50927734, -1.0712891, -1.4326172, 0.55859375, -0.9238281, 2.8359375, -0.8222656, 0.8183594, 1.3291016, -1.0908203, 2.8691406, 0.32788086, 0.9448242, -1.4111328, -0.5229492, 0.47729492, -0.5620117, -0.11340332, 1.1513672, -0.3635254, 0.8935547, 0.8027344, 1.3310547, 0.15576172, 0.26342773, 1.8554688, -1.2109375, 0.9267578, 0.3635254, -2.71875, 0.9267578, 0.4790039, 0.8261719, -2.2675781, -0.5786133, 0.08392334, 0.045318604, -0.47070312, -3.7363281, 1.3222656, -0.4272461, 0.5288086, -2.9394531, -1.2705078, -0.010749817, -3.515625, 1.6318359, -0.058532715, -0.5283203, 2.6933594, 0.5385742, -1.1025391, 1.6171875, 0.44433594, 0.9707031, 0.64941406, 0.4711914, -0.04977417, 2.2480469, -0.8588867, 3.5820312, 1.1367188, -0.8442383, -0.14038086, 1.5957031, 0.5107422, 0.63671875, 1.5146484, -0.671875, 3.9804688, 0.8833008, 0.80859375, -0.26953125, -1.5556641, -0.13244629, -0.39624023, -0.054382324, 0.4013672, -0.33520508, 0.033294678, 0.12817383, -3.5097656, -0.46313477, 2.5917969, -0.5385742, 1.1757812, 0.21179199, -1.8671875, -1.671875, 0.15246582, 3.1074219, -2.1289062, 0.30249023, -0.921875, 0.8408203, -0.15625, -3.3828125, -2.9375, 1.4472656, -1.9316406, 0.044708252, 1.2119141, -0.7963867, -0.013015747, 0.1270752, -1.1503906, 0.11920166, 0.51660156, 0.1237793, -1.2890625, -0.62060547, 0.4296875, -0.3996582, 1.3564453, 0.921875, 2.0898438, 1.75, 1.3857422, 0.11242676, -0.030563354, -3.5390625, -1.2958984, -2.9121094, 0.99365234, 0.59228516, -1.1484375, -0.022521973, 1.5166016, 2.2382812, -2.1777344, -2.1074219, 0.33618164, 0.8017578, 0.86376953, -0.6669922, 0.609375, 0.5493164, 0.18969727, 2.3027344, 1.5136719, 1.2880859, -1.7382812, 1.0986328, 2.1113281, -2.6523438, -2.1679688, -1.2451172, -0.38305664, -0.9868164, 0.30444336, 2.6054688, 1.9677734, 0.32739258, 0.105407715, -2.1503906, 0.25634766]}, "B00GOW6VAQ": {"id": "B00GOW6VAQ", "original": "Brand: Camco\nName: Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "embedding": [0.6035156, 1.3349609, 3.1289062, -1.1347656, -0.9682617, -2.5507812, -0.058410645, -0.66503906, 1.140625, 1.9541016, 0.63378906, 0.5600586, 0.7832031, -3.8457031, 1.0507812, -0.31835938, 0.042266846, 1.4980469, 2.3867188, 0.6352539, 3.5175781, 0.40185547, -0.6274414, 0.07647705, 1.2880859, -0.2932129, 2.1914062, -1.4833984, -1.6005859, 0.5629883, 0.34033203, 0.29541016, -0.23425293, 1.9541016, 0.7246094, -1.9384766, -0.3869629, 0.13757324, -2.875, -0.14538574, -4, -0.89453125, 2.9628906, 0.45996094, -0.7807617, -0.8696289, -1.0927734, -2.3476562, 0.58691406, -1.8447266, -0.5385742, 1.5478516, 1.7128906, 1.6796875, -1.4619141, 0.52685547, 0.33496094, -1.1259766, 0.2244873, 1.4267578, -1.6123047, 0.4645996, -2.1894531, 1.7617188, -0.5546875, 1.3193359, -1.7138672, -0.91308594, -0.29101562, 2.1425781, 1.6318359, 1.5517578, 0.14501953, -1.1474609, 0.109680176, 0.6176758, -1.9882812, 1.6191406, 0.2919922, -1.6933594, -0.42700195, 1.7636719, -1.6015625, -2.2695312, -1.0625, -0.91796875, -0.15991211, 0.65527344, -0.3269043, -0.0703125, -0.8535156, 1.2246094, -2.6464844, -3.1777344, -1.3164062, 1.0449219, 1.6298828, 1.2880859, 3.5957031, 1.3916016, -0.18579102, 0.49902344, -1.25, 0.72314453, -2.8457031, -1.8740234, 1.7617188, -2.140625, -1.6445312, 0.76220703, -0.011520386, 0.5317383, 0.40649414, -1.6826172, -0.27661133, 0.5551758, 0.21081543, 0.6333008, 1.4169922, 1.3828125, 3.5253906, -1.5820312, 0.74560547, -1.1484375, 2.2714844, 1.8769531, 0.13574219, 1.0292969, 3.1210938, 0.14367676, 1.3808594, 1.0800781, 1.3417969, -0.45996094, 0.95214844, -0.70703125, -0.875, -1.7539062, -2.3144531, 0.60058594, -3.1035156, -0.44995117, 0.70703125, 0.7597656, -3.546875, -0.9663086, -1.4267578, 1.7734375, -0.859375, -1.6113281, 0.39208984, -3.0527344, -0.034606934, -0.9658203, 1.0693359, 1.3623047, 0.1776123, -3.2910156, 2.3476562, 2.9609375, 2.9746094, -0.94970703, -0.018630981, 1.2001953, 0.86328125, -2.8046875, 0.78808594, -0.31054688, -1.3896484, 1.1923828, -0.5913086, -1.6503906, 0.99072266, 0.890625, -1.2460938, -0.48657227, 1.4316406, 1.1044922, 1.2929688, -0.21948242, -3.5605469, -0.26342773, -0.44702148, 0.484375, 1.2734375, -0.34936523, -1.3173828, -1.1923828, -0.3737793, -0.7998047, -1.53125, 1.2255859, -1.1318359, -0.7602539, -0.19921875, -3.25, -2.6953125, -1.5058594, 0.4333496, 2.6210938, -0.9135742, -0.92871094, -0.82177734, 1.1396484, -2.0527344, -2.0175781, 1.8789062, 0.44311523, 1.0761719, 0.5180664, 0.625, -0.7475586, 2.7050781, -1.75, -1.7734375, -0.52001953, 0.51953125, 0.49072266, 1.8710938, 1.0742188, 1.3710938, 0.9707031, 0.3486328, 0.45654297, 0.5449219, 2.2890625, 1.3261719, 1.1015625, -1.1953125, -0.26391602, 0.049957275, 1.7861328, -1.8574219, -0.013977051, -1.1611328, 1.0859375, -0.34936523, -1.2001953, 0.019821167, -1.2138672, 1.1083984, 0.73046875, -1.4326172, -0.6723633, 1.9228516, 2.4296875, -1.3681641, 1.1064453, 1.8085938, -0.9941406, 0.6821289, 0.18408203, 0.17871094, -1.5087891, -0.5541992, 2.3710938, 1.4335938, -0.65625, 1.0341797, -3.515625, -0.29418945, 1.2626953, -1.5449219, -0.57714844, -0.091796875, 1.0419922, 0.31689453, -0.6347656, -2.296875, 1.2509766, 0.39697266, 0.84375, 0.60498047, -1.1582031, 1.6943359, 0.9404297, -0.60839844, 1.5224609, 0.9355469, 2.8027344, 1.9257812, -0.061920166, 0.68847656, -2.6347656, 0.8881836, 0.80126953, 2.9277344, 0.80078125, -2.6484375, 0.95703125, 2.265625, -0.4753418, -1.5947266, 1.9912109, 2.9375, 1.5292969, 2.6699219, 0.24328613, -0.6586914, 0.63623047, -0.91845703, -0.18896484, -0.90283203, -0.2680664, -0.35253906, -1.4384766, -0.8457031, -0.6699219, 2.0546875, 0.74316406, 0.8769531, -0.3840332, -1.1738281, -0.6694336, -1.5507812, -0.74560547, 4.3554688, -1.4150391, -0.13195801, 2.5605469, 0.52246094, 2.1855469, 0.12878418, -1.3642578, 0.8964844, 0.6665039, -2.21875, 1.1494141, 0.012397766, 0.5605469, 0.9213867, -2.4609375, 2.2539062, -1.1210938, 1.3037109, 0.76464844, -1.6240234, -0.8432617, 1.6572266, -1.3613281, 1.4140625, -1.2773438, -1.9648438, 2.7402344, 1.5253906, -0.8041992, -0.62841797, 2.0761719, -0.4375, -1.5771484, 0.25732422, 1.5390625, -0.70654297, -4.15625, 0.31347656, -0.083862305, -1.4433594, 2.2988281, -1.3496094, -0.21313477, 0.60302734, 1.3125, 1.7294922, -0.7133789, -1.875, -0.28466797, 1.4599609, -3.7773438, 1.9443359, -2.8144531, 0.7084961, -3.1601562, 0.7167969, -1.3837891, -2.5507812, 2.6601562, -1.5507812, 3.9394531, 0.9511719, 1.2412109, -0.36669922, -2.1015625, -0.3005371, -2.0957031, -1.9667969, 0.1829834, 1.3496094, -1.5517578, 0.8959961, -4.1679688, -0.76464844, -1.3447266, 0.3635254, -0.48461914, -1.8789062, -0.7973633, -1.2919922, -0.72998047, 0.053588867, 0.070739746, 2.6425781, -1.4570312, -1.5117188, -0.1328125, -0.3635254, -1.1660156, -0.24316406, -1.7773438, 1.0283203, -0.57910156, 0.0018234253, 1.0419922, -0.94189453, 1.7939453, -1.0732422, -3.640625, 0.12939453, 3.1914062, 2.0273438, 2.8925781, -1.4707031, -0.91308594, -1.6982422, 0.41845703, 2.875, 2.3066406, 2.1582031, 2.2890625, -0.09649658, 1.0234375, -0.3918457, 0.8540039, 0.9213867, 0.8222656, 3.7089844, -0.7104492, 0.25585938, 1.5136719, 2.9746094, -2.9414062, -0.77197266, 0.7949219, -0.85058594, 3.2851562, 2.4785156, -3.6523438, 0.36669922, 0.107910156, 2.1601562, -0.8925781, 1.2011719, 0.7631836, 0.38061523, 2.234375, 0.31835938, 0.2376709, 1.0546875, 0.2607422, -1.7382812, 0.6303711, 1.1855469, -1.2412109, 0.09832764, 1.0166016, -2.3730469, -0.5185547, 2.1171875, -0.5390625, 2.734375, 1.9335938, -0.37036133, -1.3945312, -2.125, 1.1113281, -0.2956543, 0.41723633, 0.18530273, -0.28637695, -1.3085938, 0.19750977, -1.7705078, 2.6425781, -1.0869141, -0.9355469, 1.3320312, -2.4160156, -1.3642578, -2.5234375, 3.2246094, -0.9667969, 0.65234375, -1.1181641, 2.6835938, -1.0136719, -3.171875, -0.62402344, -0.63720703, -2.34375, 3.8339844, 3.4042969, -1.3115234, -0.21472168, -1.4941406, 2.3222656, 1.2021484, -1.5488281, -1.2607422, -2.3632812, 1.9599609, -2.2402344, -0.31811523, 1.1103516, 2.578125, -3.0039062, 0.048675537, -0.13183594, 2.3828125, 1.0195312, -0.12182617, 0.36914062, 0.2286377, -2.546875, 2.0898438, 0.1161499, 1.7265625, 0.04434204, 1.6474609, 1.0380859, -0.01322937, 0.71240234, 0.21240234, -2.5449219, 0.10015869, -0.12298584, -0.30419922, 3.515625, -0.111206055, 2.1269531, 1.5302734, -0.22241211, -3.5957031, -1.7109375, -2.1992188, 0.2980957, -2.1835938, -1.7451172, 0.25439453, 0.58251953, -2.4589844, -1.9228516, -0.6533203, -2.6738281, -0.43945312, -1.1894531, 0.9633789, 1.3349609, -0.5097656, 0.25439453, 0.35107422, 0.42016602, 0.5678711, -0.11468506, -1.0683594, -2.2324219, 2.7539062, 0.46240234, -0.55566406, 0.37451172, 2.0019531, 2.2871094, -1.75, -0.7368164, -1.2802734, 0.328125, -1.1865234, -3.3886719, -1.2119141, -1.3925781, 1.5019531, -0.5834961, 0.3166504, 0.97265625, 1.5351562, 0.36767578, 0.7675781, 1.1835938, 1.2138672, -2.2871094, -1.75, 2.4863281, -0.97509766, -0.34277344, 0.72558594, -0.41577148, 1.4375, -0.58935547, -1.78125, -2.2675781, 1.1171875, 0.84033203, 1.1318359, -4.1835938, 1.1318359, 2.0546875, 2.375, 1.2822266, -0.98339844, -1.2802734, 1.2988281, 1.9736328, 1.9316406, -1.4140625, 0.47070312, -0.37817383, -0.82177734, 0.7651367, -2.625, -1.1621094, -0.39672852, -1.5107422, 0.43481445, -0.9770508, 0.69189453, -2.1699219, 0.058807373, 1.1748047, -1.0166016, 3.7597656, -1.6962891, 1.1669922, -0.5126953, -1.2832031, -1.8046875, 3.1367188, 1.1748047, 0.4543457, 2.0703125, -1.46875, -1.3232422, 0.60253906, 1.5976562, 0.5800781, 1.09375, -0.01197052, -1.7587891, 0.8417969, 1.0898438, 0.31835938, -0.92626953, 2.0800781, 2.3496094, 0.9399414, 0.3269043, 1.9550781, 1.1289062, 1.9052734, 0.018722534, -0.5644531, -1.3134766, -0.21459961, 0.92089844, 2.6113281, -2.6015625, -3.1875, 1.8076172, 0.41186523, -0.32861328, 1.3818359, 0.51464844, -1.2304688, -1.0019531, -3.3300781, -1.9453125, -0.10229492, 1.3691406, -0.90625, -0.765625, 0.7060547, 0.6279297, -0.041534424, 3.4921875, 0.8261719, -1.8378906, -0.53808594, 1.2929688, -1.65625, -2.6035156, -1.9794922, -3.5019531, -0.26342773, -0.3527832, 1.3271484, -0.7753906, 1.5859375, 2.4550781, -2.4394531, -0.68652344, -1.1289062, -0.04147339, -1.9101562, -1.2119141, 2.1738281, -0.26782227, -0.66748047, -0.18579102, 0.54296875, 0.42797852, 3.1523438, 1.6396484, -0.70214844, -0.41210938, 0.15649414, -4.1640625, -4.515625, -0.40185547, 1.0136719, -0.09136963, 0.44213867, -0.7636719, -1.71875, 1.4609375, -2.2109375, 0.19067383, -2.2597656, 0.47094727, -1.2568359, -1.3681641, -0.035095215, -0.50439453, -0.45825195, 0.49243164, -1.5429688, -0.24230957, -1.2734375, -4.328125, -3.078125, 0.85302734, -0.9199219, -1.2011719, 0.8071289, -0.4650879, 1.5820312, -0.26757812, 1.6689453, -1.8613281, 1.7958984, -1.3037109, 0.47802734, 1.7939453, 0.18408203, -2.3046875, 2.5761719, -0.27392578, 1.3056641, 2.3554688, 1.7119141, -3.296875, 1.7978516, 0.7998047, -0.016311646, 0.15441895, 0.98095703, 2.0585938, 0.8466797, 2.734375, 1.4628906, -1.5683594, -1.9794922, -1.3486328, -1.3017578, -1.46875, -2.3769531, -1.9365234, 0.2770996, 1.4316406, 0.94873047, 0.78759766, 0.82421875, 0.55908203, 0.5878906, -2.2949219, 0.9458008, -2.1210938, 0.8364258, 0.5385742, -1.6015625, -2.6289062, -2.6542969, 3.2207031, -0.72265625, 0.3659668, 1.5039062, 0.7446289, -0.7685547, 1.3007812, 0.20385742, 1.3417969, 0.7529297, 2.4140625, -1.5244141, 1.1748047, 3.2851562, -0.0059547424, -0.71240234, -0.47216797, 0.8276367, -0.8774414, -0.13427734, 2.3457031, -3.2382812, -0.51660156, 0.53271484, 0.08477783, -0.4152832, -0.234375, -0.3034668, -2.2480469, -0.19421387, -1.1855469, -0.75097656, -4.4453125, 3.2421875, -0.5966797, 0.040893555, 0.6430664, 0.5629883, -1.8369141, -0.77783203, 2.3339844, -0.10638428, -0.93066406, -1.2744141, -0.5053711, -0.084350586, 2.4238281, -3.3203125, 0.8105469, -1.1494141, 0.94091797, -0.24926758, 1.0722656, 0.6040039, 0.75439453, 2.9238281, 2.9101562, 4.7382812, -0.5566406, 2.3710938, 0.65625, 0.98095703, 2.0273438, -0.7817383, 0.62841797, 1.0488281, 1.6816406, 3.3378906, -1.7832031, -0.6621094, 1.2226562, -1.1103516, -1.1464844, 0.69873047, 0.8647461, -3.5742188, -1.0673828, -0.13330078, -1.0029297, 1.4384766, 1.5742188, -0.9584961, -2.3925781, -0.073791504, -0.8408203, 2.5292969, -0.40063477, 0.35742188, 0.48950195, 0.04864502, 2.1210938, -0.5097656, 0.39794922, -2.4414062, -1.2412109, -0.52197266, 0.5830078, 0.69091797, 1.1884766, -0.04586792, 1.2421875, -0.09326172, 2.0585938, -0.6542969, -2.0019531, 2.7480469, -1.6767578, 3.0703125, 2.5078125, -1.0390625, -0.07342529, 1.3789062, -0.4338379, -3.8398438, -0.8652344, 0.017547607, 0.5058594, 0.82714844, -4.078125, -0.31884766, -0.7949219, 1.3789062, -3.2949219, 0.20300293, -0.515625, -4.0859375, 1.3037109, 0.8911133, -0.40478516, 4.4648438, 1.6289062, -0.6074219, 1.1005859, -0.47875977, 0.2142334, -0.030151367, 0.19543457, 0.17016602, 0.55810547, -0.69091797, 2.7792969, 2.4335938, 0.044067383, -0.9291992, 2.5488281, 0.2536621, 0.14733887, 1.4013672, -2.1289062, 3.671875, -0.032196045, 0.12182617, 0.0079193115, -2.4511719, 1.6396484, 0.3203125, -0.021911621, 0.7519531, -0.075927734, -0.8808594, 2.0410156, -4.2382812, 0.24719238, 0.5883789, -1.3457031, 1.7275391, -0.11090088, -1.28125, -1.7021484, 0.03414917, 1.1933594, -2.2089844, 0.8769531, -1.8564453, 0.90722656, -0.10394287, -2.0800781, -1.2041016, 1.2080078, -0.9746094, -0.55126953, 1.2978516, 0.07385254, -0.13684082, -0.77246094, -0.54296875, 0.61865234, 0.15124512, 0.18041992, -0.1899414, -0.31933594, -0.16552734, 0.9716797, 0.6777344, -0.4423828, 0.25805664, 2.0527344, 1.9443359, 0.640625, 1.5683594, -1.8017578, -0.5996094, -3.8730469, 2.5136719, 1.2744141, -2.3027344, 0.84765625, 0.9873047, 2.5175781, -2.4140625, -1.1142578, -0.012634277, 0.45214844, 1.4248047, -1.7050781, 0.3996582, 0.4621582, -0.8881836, 0.68652344, 3.2089844, 2.4589844, -0.76220703, 0.1920166, 1.7255859, -2.8398438, -1.5068359, -1.3144531, -1.0888672, -2.7480469, 0.2602539, 2.9667969, 3.4199219, -0.15991211, -1.6142578, -2.7402344, -0.84277344]}, "B00GOW6V5G": {"id": "B00GOW6V5G", "original": "Brand: Camco\nName: Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black)\nDescription: \nFeatures: Protects propane gas bottles from flying debris while streamlining the look of your RV\nCustom molded assembled unit slips over the bottles for a safe and secure fit. Patented.\nUpdated design provides easier access to gas valves and changeover valves\nFits 20 pound or 30 pound steel double tanks\nMade of heavy-duty polypropylene\n", "embedding": [0.0048332214, 1.2480469, 2.9746094, -1.0976562, -1.3652344, -2.828125, 0.083740234, -0.6791992, 1.7792969, 2.0351562, 0.8022461, 0.40405273, 0.7607422, -4.0859375, 0.9379883, -0.61083984, -0.36254883, 1.3447266, 2.5859375, 0.59716797, 2.4765625, 0.16333008, -0.7685547, -0.18395996, 0.95947266, 0.020965576, 2.5058594, -1.7666016, -1.9355469, 0.7504883, 0.87597656, 0.2619629, 0.01612854, 2.4570312, 0.83935547, -1.7822266, -0.05899048, 0.23730469, -3.09375, -0.040924072, -3.5039062, -0.9814453, 3.421875, 0.51416016, -0.7236328, -0.6567383, -0.9379883, -1.9853516, 0.90722656, -2.328125, -0.3618164, 1.5527344, 1.2226562, 1.5810547, -1.4902344, 0.36816406, 0.29736328, -0.8466797, 0.04574585, 1.4287109, -1.4580078, 0.59277344, -2.2070312, 1.5195312, -0.97802734, 1.0253906, -1.7919922, -0.59814453, 0.28198242, 1.7958984, 0.7421875, 1.7226562, 0.74365234, -1.5878906, 0.5058594, 0.5854492, -1.7763672, 1.2626953, 0.17956543, -1.5566406, -0.78515625, 2.5683594, -1.2666016, -2.3496094, -1.7353516, -1.1201172, 0.21447754, 1.0498047, -0.2770996, 0.3330078, -1.0478516, 1.3828125, -2.9003906, -3.3007812, -1.0458984, 0.81152344, 1.7207031, 1.2666016, 4.2304688, 1.9462891, -0.33544922, 0.18078613, -1.8398438, 1.5097656, -2.8945312, -2.1074219, 1.7158203, -1.9804688, -1.7304688, 0.8774414, -0.46557617, 0.51953125, 0.5410156, -1.7783203, -0.3486328, 0.69140625, 0.10095215, 1.0078125, 1.1054688, 1.4150391, 3.7871094, -1.6308594, 0.7631836, -1.5439453, 2.1367188, 1.7285156, -0.3642578, 1.1435547, 3.2636719, -0.1505127, 1.6796875, 0.9316406, 1.9111328, -0.19873047, 1.2548828, -0.7294922, -1.0546875, -2.0117188, -2.4550781, 1.296875, -3.6269531, -0.18823242, 0.47875977, 0.43408203, -3.6992188, -0.87353516, -1.6269531, 1.7529297, -0.75634766, -2.4570312, 0.27148438, -3.375, -0.22741699, -0.8286133, 1.3496094, 1.1113281, -0.32470703, -3.3359375, 1.5097656, 2.7109375, 3.2539062, -1.0908203, 0.06347656, 1.4179688, 0.9145508, -2.4609375, 0.3269043, -0.55615234, -1.7421875, 1.3730469, -0.6147461, -1.5537109, 0.3310547, 0.37158203, -1.5019531, -0.7128906, 2.0175781, 1.3203125, 1.1728516, -0.12548828, -3.1640625, -0.5004883, -0.5854492, 0.5048828, 0.8876953, -0.5932617, -1.4189453, -0.43774414, -0.31835938, -0.74072266, -1.4404297, 1.3671875, -1.2919922, -0.7192383, -0.34716797, -2.9902344, -2.5195312, -1.3886719, 0.21582031, 2.1621094, -0.84228516, -0.6621094, -0.26611328, 1.0439453, -2.4472656, -1.7226562, 2.1914062, 0.65625, 1.2490234, 0.25952148, 0.49023438, -1.0791016, 2.1191406, -1.7753906, -1.9882812, -0.4387207, 0.01586914, 0.42651367, 1.8076172, 1.2568359, 1.2138672, 0.42504883, 1.1816406, 0.45947266, 0.20825195, 2.8007812, 1.1113281, 1.2548828, -1.3525391, -0.7216797, -0.07696533, 1.5429688, -1.6484375, -0.25805664, -1.1259766, 1.6542969, -0.3864746, -1.3652344, 0.04736328, -0.8876953, 1.2382812, 0.7504883, -1.2246094, -0.88427734, 1.9179688, 2.609375, -0.89501953, 1.5185547, 1.7802734, -1.1689453, 0.62841797, -0.49536133, 0.2998047, -1.1542969, -0.5361328, 2.4179688, 1.5410156, -0.39135742, 0.68066406, -3.4902344, -0.42114258, 0.6591797, -1.2558594, 0.15881348, -0.20458984, 1.4023438, 0.22741699, -0.50146484, -1.9179688, 1.1503906, 0.46826172, 0.5654297, -0.030014038, -1.3544922, 1.9912109, 1.0839844, -0.2836914, 1.6201172, 0.75927734, 2.2929688, 1.3603516, -0.1796875, 0.91015625, -2.8730469, 1.5234375, 0.16674805, 2.6152344, 0.38427734, -2.6796875, 1.2177734, 2.3574219, -0.6020508, -0.8330078, 1.5351562, 3.3710938, 1.7148438, 2.984375, 0.71728516, -0.37451172, 0.94873047, -1.1943359, 0.028121948, -0.7182617, -0.048675537, -0.3708496, -1.5498047, -0.60791016, -0.50927734, 1.6582031, 0.80859375, 1.0195312, -0.2998047, -1.1875, -0.5288086, -1.4306641, -1.0722656, 4.4882812, -1.4853516, -0.0925293, 2.6230469, 0.8046875, 2.3476562, -0.06311035, -1.8037109, 1.1689453, 0.5961914, -1.5078125, 1.0859375, 0.5395508, 1.1328125, 0.68115234, -2.5273438, 1.6152344, -0.43603516, 0.9140625, 0.7216797, -2.015625, -1.2558594, 1.3730469, -0.97021484, 1.2509766, -1.5166016, -1.7265625, 1.9882812, 1.3916016, -0.6796875, -0.24194336, 2.0722656, -0.22229004, -2.2207031, 0.21166992, 1.6132812, -1.0283203, -4.3945312, 0.45776367, -0.35766602, -1.5488281, 2.3710938, -1.3564453, 0.064941406, 0.2841797, 1.7304688, 1.7705078, -0.31420898, -1.640625, 0.21374512, 1.3867188, -3.578125, 1.4179688, -2.6894531, -0.09283447, -2.6660156, 0.16906738, -1.4189453, -2.5644531, 1.9257812, -1.5068359, 3.5820312, 1.0292969, 1.3867188, -0.75341797, -1.9140625, -0.42919922, -1.9384766, -2, -0.31982422, 1.5488281, -1.6132812, 0.66015625, -4.2578125, -0.61328125, -1.8974609, 0.0317688, -0.75341797, -1.75, -1.1572266, -1.0117188, -0.69921875, -0.12878418, 0.091918945, 2.7617188, -0.93896484, -1.5419922, -0.21240234, -0.085632324, -0.9121094, -0.5229492, -1.6904297, 1.2792969, -1.2802734, 0.29614258, 0.53759766, -1.5615234, 2.2246094, -1.3945312, -3.5390625, 0.27807617, 3.0976562, 1.4501953, 2.7695312, -1.1230469, -1.2109375, -2.1738281, 0.2783203, 2.9082031, 1.9970703, 2.0332031, 2.5175781, -0.07696533, 1.0449219, -0.8652344, 0.96972656, 0.8588867, 1.296875, 3.3984375, -1.2363281, 0.25708008, 1.8525391, 3.4179688, -3.5742188, -1.0585938, 0.9199219, -0.89453125, 3.1425781, 2.5605469, -3.3378906, -0.0016908646, 0.3005371, 2.0292969, -0.6274414, 1.6796875, 0.5566406, 0.6503906, 2.1777344, -0.0051460266, 0.5390625, 1.6552734, -0.07324219, -1.5644531, 0.57910156, 1.1474609, -1.6679688, -0.21496582, 0.79541016, -1.9042969, -0.3623047, 2.0371094, -0.48632812, 2.7617188, 1.7597656, -0.9609375, -1.4951172, -2.1464844, 0.84277344, -0.2536621, 0.54052734, 0.0340271, 0.11895752, -1.6865234, 0.22888184, -1.9804688, 2.5566406, -1.1816406, -1.1669922, 1.2294922, -2.7304688, -1.296875, -2.203125, 2.9882812, -0.94140625, 0.37280273, -1.0478516, 2.3710938, -0.6176758, -2.4355469, -0.35546875, -0.80566406, -2.0996094, 4.0195312, 3.96875, -2.1894531, 0.13342285, -1.6660156, 2.5, 1.0673828, -1.3681641, -1.1708984, -2.0742188, 2.0742188, -2.1152344, -0.71972656, 1.0029297, 2.0058594, -2.6523438, -0.10015869, -0.31274414, 2.2578125, 1.0810547, -0.7138672, 0.014816284, 0.57470703, -2.5664062, 1.9736328, -0.04537964, 1.8466797, 0.032287598, 2.0625, 0.78808594, -0.5209961, 1.1523438, 0.3005371, -2.1191406, -0.5239258, 0.4333496, 0.0703125, 3.9589844, 0.054840088, 2.2402344, 1.5087891, 0.3149414, -4.1132812, -1.6269531, -2.3027344, 0.7709961, -2.3945312, -1.5166016, 0.7236328, 0.80078125, -2.5839844, -2.0175781, -0.5361328, -2.5097656, -0.06774902, -1.0976562, 0.45336914, 1.4082031, 0.07458496, 0.15808105, 0.3161621, 0.29223633, 0.8305664, -0.3317871, -1.0478516, -2.0390625, 2.4453125, -0.36523438, -0.5463867, 0.48364258, 1.7382812, 1.8808594, -1.9794922, -0.71972656, -1.7373047, 0.42919922, -1.0683594, -3.5859375, -0.8466797, -1.2636719, 1.8730469, -0.4970703, 0.056640625, 0.9511719, 1.5488281, 0.27685547, 0.6357422, 1.1425781, 1.4453125, -2.0097656, -1.5761719, 2.5175781, -0.5019531, 0.34423828, 0.5444336, -0.5678711, 1.2001953, -0.8857422, -1.1777344, -2.1640625, 1.0664062, 1.3886719, 1.0078125, -4.6328125, 1.6416016, 2.265625, 2.3339844, 1.1962891, -0.55566406, -1.3242188, 1.1279297, 2.2207031, 1.6455078, -1.3027344, 0.69677734, -0.22680664, -0.53759766, 0.6503906, -2.2167969, -1.2021484, -0.33569336, -1.890625, 0.43945312, -0.7949219, 0.6376953, -2.2890625, -0.01940918, 0.88134766, -0.5966797, 3.5410156, -1.9472656, 0.99853516, 0.14123535, -1.1796875, -1.6601562, 3.0878906, 1.4013672, 0.5253906, 2.015625, -1.8056641, -0.8432617, 0.21911621, 1.5849609, 0.6875, 0.8364258, -0.11273193, -1.8466797, 0.5444336, 1.3613281, 0.3684082, -1.2861328, 2.1835938, 2.4335938, 1.1523438, 0.1550293, 2.6210938, 0.77197266, 1.5605469, 0.3449707, -1.1972656, -1.1542969, 0.06341553, 0.82958984, 2.9707031, -1.9384766, -3.5449219, 1.5498047, 0.76660156, -0.21789551, 1.0615234, 0.26416016, -0.72265625, -0.7636719, -3.4082031, -1.6298828, -0.14086914, 1.9150391, -0.29614258, -0.4309082, 0.6152344, 0.16345215, 0.33325195, 3.7597656, 1.1445312, -1.6298828, 0.14587402, 1.6435547, -1.6386719, -3.2363281, -1.8935547, -3.9667969, -0.11425781, -0.37475586, 1.0839844, -0.46533203, 1.2636719, 2.5234375, -2.0820312, -0.36132812, -0.8964844, 0.11340332, -1.9580078, -1.0410156, 2.4335938, -0.5151367, -0.82666016, -0.3947754, 0.53759766, 0.6850586, 2.9433594, 1.8691406, -1.0556641, -0.9165039, 0.0013809204, -3.8945312, -4.7304688, -0.5786133, 1.1376953, 0.31640625, 0.22717285, -0.9086914, -1.3320312, 1.2216797, -1.8867188, 0.2364502, -2.4824219, 0.49804688, -1.1621094, -1.4072266, -0.21875, -0.63671875, -0.36010742, 0.73828125, -1.3867188, -0.64990234, -1.2451172, -4.4492188, -3.3652344, 1.0224609, -0.59814453, -1.0126953, 0.26049805, -0.39135742, 1.8339844, 0.3034668, 1.5166016, -1.4433594, 1.6865234, -1.1162109, 0.42114258, 1.9072266, 0.20935059, -1.8076172, 2.9492188, -0.23986816, 1.1806641, 2.0371094, 1.4091797, -3.1972656, 1.5712891, 0.7451172, 0.095581055, 0.14819336, 1.1132812, 2.3378906, 0.5595703, 2.2910156, 1.5146484, -1.5087891, -1.9677734, -1.0996094, -0.96972656, -1.5058594, -2.21875, -1.6064453, 0.12963867, 1.5605469, 1.5273438, 0.92285156, 0.80566406, 0.50341797, 0.7558594, -2.5019531, 0.6660156, -1.984375, 0.6430664, 0.9223633, -1.5058594, -2.6621094, -2.5585938, 3.2773438, -0.34228516, 0.46313477, 1.1191406, 0.86572266, -0.7885742, 1.8271484, 0.32495117, 0.7246094, 0.51171875, 2.3691406, -2.0625, 1.1582031, 3.4277344, 0.036254883, -0.96972656, -0.11633301, 0.09777832, -0.9291992, -0.3479004, 2.7929688, -3.1074219, -0.3449707, 0.8515625, -0.31469727, -0.3173828, -0.4909668, -0.13476562, -2.40625, -0.42163086, -1.4658203, -1.4228516, -4.5195312, 3.0722656, -0.26538086, -0.54248047, 0.27514648, 1.0166016, -2.4082031, -0.2310791, 2.2910156, 0.054992676, -1.0654297, -1.3769531, -0.75146484, -0.5048828, 2.265625, -3.3027344, 0.8203125, -1.2939453, 0.26538086, -0.5908203, 0.62158203, 0.37475586, 0.8588867, 3.1640625, 2.8027344, 4.5742188, -0.6972656, 2.6992188, 0.28930664, 1.1591797, 2.34375, -0.84375, 0.41308594, 0.74365234, 1.9726562, 3.4746094, -1.6816406, -0.080566406, 0.84472656, -0.86865234, -0.9194336, 0.47070312, 1.2783203, -3.2109375, -1.1328125, -0.22424316, -0.7138672, 1.8457031, 1.5537109, -1.2792969, -2.5136719, -0.7421875, -0.7504883, 2.2890625, -0.5727539, 0.062805176, 0.52490234, 0.21020508, 1.953125, -0.6694336, -0.058746338, -2.4140625, -1.2265625, -0.12854004, 0.86865234, 0.6411133, 0.9814453, 0.20507812, 1.1796875, -0.18688965, 1.9277344, -0.58740234, -1.8935547, 2.1621094, -1.6054688, 2.6191406, 2.7226562, -0.84521484, 0.40600586, 1.2773438, -0.3166504, -3.7226562, -0.95751953, 0.22131348, 0.6879883, 0.84033203, -3.5644531, -0.19067383, -0.9277344, 2.0605469, -3.0019531, 0.08203125, -0.41088867, -4.0742188, 0.9716797, 1.0390625, -0.55078125, 4.046875, 1.75, -0.51123047, 0.59716797, -0.12536621, 0.48046875, 0.20458984, 0.07159424, 0.3215332, 0.5048828, -0.7368164, 2.7617188, 2.234375, 0.23413086, -0.25756836, 2.5332031, 0.35229492, 0.24572754, 1.0996094, -2.140625, 3.4902344, 0.6586914, 0.18054199, 0.2619629, -2.6230469, 1.9384766, 0.3413086, 0.08514404, 1.3027344, -0.23535156, -1.1044922, 1.5078125, -3.6269531, -0.20373535, 0.59521484, -0.6069336, 2.3554688, 0.23547363, -1.0712891, -0.7734375, -0.015342712, 1.0751953, -2.2324219, 0.9501953, -1.2451172, 1.1621094, -0.25512695, -2.2265625, -1.3271484, 1.3720703, -1.0986328, -0.8774414, 0.9145508, -0.2006836, -0.35205078, -0.9970703, -0.21166992, 0.6484375, 0.30737305, 0.5385742, -0.57470703, -0.7006836, -0.19873047, 0.8569336, 0.7685547, -0.50878906, 0.008552551, 1.7724609, 1.8173828, 0.72509766, 1.8076172, -2.390625, -0.48291016, -3.7949219, 2.5, 1.0527344, -2.15625, 0.9111328, 1.1933594, 2.4296875, -2.3457031, -1.6064453, -0.44970703, 0.36572266, 1.2138672, -1.6376953, 0.11029053, 0.3010254, -1.1191406, 0.59472656, 3.6191406, 3.3808594, -0.74365234, 0.024673462, 1.5166016, -3.1757812, -1.5351562, -1.7128906, -0.7788086, -2.3496094, 0.43701172, 2.7617188, 3.6582031, -0.018188477, -1.203125, -3.0917969, -0.8232422]}, "B07YFKY7KV": {"id": "B07YFKY7KV", "original": "Brand: Pamapic\nName: PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze\nDescription:
          Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

          SPECFICATION:
          SIZE: 88\" Tall, 32\" Reflector and 18\" Base.
          COLOR: Bronze Hammered Finish
          MATERIAL: Stainless Steel
          HEAT SOURCE: Propane/Butane
          BTU OUTPUT: 46000 BTUs
          HEAT RANGE DIAMETER: 20sqm
          Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced \"Pilotless\" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
          \nFeatures: Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included).\nHeat range up to 18 feet in diameter.Emits 46,000 BTU's of steady warmth.\nReliable pulse ignition, tip over protection system and convenient wheel assembly.\nStainless steel burners and double-mantle heating grid for optimal durability.\nOUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32\" diameter dome x 18\" diameter base x 88\" high. Zips open and closed with ease.\n", "embedding": [-1.5244141, 0.37329102, 2.6699219, 0.6767578, -1.2753906, 1.046875, 1.2705078, -2.1933594, 0.9921875, 3.0527344, 0.19934082, 0.3701172, 0.32470703, -3.21875, 1.7548828, -0.4765625, 1.1650391, 0.3720703, 3.1210938, 1.0869141, 2.1054688, -0.51171875, -0.5253906, -0.80566406, -0.29760742, -0.95996094, 3.6992188, -1.9160156, -0.0048179626, -0.96875, -1.7714844, 1.0957031, -0.16564941, 2.0273438, -1.4882812, -2.7421875, -0.7495117, 1.6953125, -3.5, 0.8310547, -3.3164062, -3.0683594, 0.7397461, 1.2167969, -1.3583984, -1.1806641, 1.6044922, 1.7402344, 0.69140625, -2.1347656, 0.20031738, -0.92089844, -0.15563965, 0.74560547, -0.85498047, 0.21948242, 0.05895996, -2.4257812, 1.2685547, 1.6806641, -1.2246094, -0.057403564, -2.3710938, 3.7832031, -0.7973633, 1.3330078, -1.5185547, -0.18395996, -0.85546875, 0.8823242, 2.0859375, -0.7055664, -2.1113281, 0.6035156, 1.2167969, -0.9238281, -1.3583984, 1.0556641, 5.6523438, 0.53125, -0.15368652, 1.8076172, 1.0039062, 0.79345703, -2.3886719, 0.41552734, -0.91015625, 1.1904297, 0.9042969, 1.7558594, -0.95996094, 2.8359375, -1.7744141, -2.2363281, 0.28344727, -2.0976562, 1.5117188, 1.6230469, -0.0033874512, 0.6977539, 0.5107422, -0.36523438, -0.2854004, -0.46313477, -1.0029297, -0.67626953, 3.3945312, 0.034454346, -1.7119141, 0.91748047, -2.7226562, -0.034606934, 1.8828125, -1.6357422, -1.0888672, -0.17834473, 0.80566406, 2.3652344, 4.15625, 2.5507812, 2.7929688, 1.1367188, 0.6904297, -2.2695312, -0.13330078, 0.4177246, -0.79248047, -0.7714844, 2.6386719, -1.2167969, 0.32714844, -1.6337891, -0.17358398, 1.3144531, 0.40283203, -1.2685547, -1.6269531, -0.31860352, -4.7578125, 0.39501953, -2.4433594, 1, 0.53466797, 2.125, -4.2304688, -0.75439453, -0.8676758, 1.9863281, -1.6962891, -0.5600586, 1.671875, -1.8134766, -1.5751953, -1.9394531, -1.4707031, 0.5390625, 1.9667969, -3.6484375, 3.765625, 0.9980469, 2.4785156, -1.1503906, -1.1992188, 2.8730469, 0.3630371, -1.0332031, 1.46875, 0.00026917458, 2.3203125, 2.4941406, -0.24523926, -2.453125, -0.14697266, 0.45263672, -0.50878906, -1.9658203, -1.2001953, 1.9462891, -0.5957031, 1.1074219, -2.4335938, -0.69628906, 0.22387695, 1.0068359, -0.8305664, -1.4912109, -2.3710938, -2.0371094, -1.0595703, -1.0263672, -0.8901367, 1.1933594, 0.9296875, -1.0429688, -2.0371094, -3.4238281, -3.0488281, -2.5605469, 1.7148438, 0.44848633, -0.3269043, 0.1595459, -1.3339844, -2.0683594, -2.3691406, -2.7578125, -0.72753906, -0.9868164, -0.2927246, 2.9375, 2.6152344, -0.96875, 0.7182617, -1.6728516, 0.66845703, -0.7602539, 1.8398438, -0.72216797, 0.6821289, 2.859375, -0.119140625, 1.8583984, -0.7060547, 1.0966797, -1.5830078, 2.3222656, 1.2451172, -0.12158203, -1.0664062, -2.4785156, 2.0898438, -0.06732178, -0.35302734, 0.73828125, -0.47631836, 2.4472656, 0.99072266, 0.0118637085, 0.51660156, 0.10070801, 0.61328125, -1.4150391, -1.4755859, -0.84716797, 1.1435547, 1.6621094, -0.5058594, -0.010345459, 0.2142334, -0.06500244, 0.83496094, -1.7734375, 0.7895508, -1.3447266, -0.39086914, -0.5986328, 0.16186523, 2.1582031, -1.4267578, -3.0507812, 2.0253906, 0.45092773, -1.5644531, 0.52734375, -0.46923828, 0.9169922, 4.9648438, 0.7866211, -3.8417969, 0.3178711, 0.30664062, 1.0498047, 1.2617188, 1.4072266, 1.9941406, 0.5566406, -1.1689453, 2.1230469, 0.5234375, 0.45629883, 1.6650391, 1.0527344, 1.6806641, -1.3046875, -0.16235352, -1.2392578, 0.72802734, 0.69628906, -0.7495117, -0.52734375, 2.0722656, -0.7949219, -2.3398438, 1.1435547, 0.7368164, 1.7041016, 1.2753906, -0.38330078, 0.0034542084, -3.4082031, 2.7421875, 0.018920898, -1.8876953, 0.84521484, -1.6474609, -1.2851562, 1.2148438, -1.8955078, 0.41333008, -0.16992188, -0.37963867, -1.4814453, -4.7539062, -2.3125, -1.3564453, -1.4199219, 3.6054688, -3.0585938, -0.35424805, 1.2705078, -0.0025291443, -0.65771484, -1.4003906, -2.1289062, 1.2285156, 0.3696289, -0.29345703, 0.84033203, -0.031463623, -1.0419922, -0.26171875, -2.703125, 2.2597656, -2.6679688, -3.5566406, -0.6723633, -1.7265625, -0.34716797, 0.05908203, -1.8974609, -0.43798828, 0.43920898, -0.81933594, 0.60839844, -1.2158203, -2.4589844, 0.5678711, 1.4589844, -0.4309082, 0.5390625, 1.1933594, 0.3935547, -1.4228516, -4.671875, 0.48657227, 2.0019531, -2.1191406, -0.011497498, -0.6357422, 0.80566406, -1.3378906, 0.1484375, 0.40576172, -1.9863281, 0.453125, -1.6123047, 0.19592285, -5.203125, 1.0605469, -1.9804688, 0.03793335, -0.44848633, 0.9536133, -1.8867188, -1.2070312, 1.6132812, -1.0380859, 3.3203125, 1.8134766, 2.6933594, -0.46289062, 0.42407227, 2.8886719, -0.2915039, -3.0292969, -1.0058594, -1.09375, -0.81347656, -1.4345703, -2.5429688, 0.81591797, -2.0292969, -1.2167969, -0.39941406, -3.3261719, 0.023834229, -1.2480469, -1.5048828, -0.62939453, -2.0585938, -0.14648438, -0.64208984, 0.8129883, -4.25, -0.80078125, -2.8203125, 0.0390625, -0.1796875, 1.8515625, 0.26342773, 2.1308594, 2.7421875, -0.7553711, 2.0039062, -1.9892578, -4.9453125, 1.2861328, 3.9589844, 1.2753906, -1.4980469, -1.1386719, -1.828125, -0.24377441, -2.1601562, 2.4570312, 1.1289062, 2.8984375, -0.20410156, 1.09375, 1.2949219, -0.2998047, -0.124694824, -0.7470703, -1.5048828, 3.4140625, -1.7304688, -0.087524414, 1.8710938, 3.0332031, -1.671875, -0.13293457, 1.5703125, -0.60498047, 2.9121094, 1.6816406, -0.6010742, 0.7114258, 1.7060547, 3.4902344, 1.9794922, 1.8935547, -0.50634766, -2.7675781, 1.3867188, 2.1835938, 2.3222656, 1.6728516, 0.57373047, -0.43798828, 0.85009766, 1.1611328, -3.1679688, 1.8242188, 0.53515625, 1.390625, 0.4543457, 3.1386719, -0.54589844, 0.6538086, 1.2294922, 0.3955078, -1.7939453, -3.0507812, -0.5644531, 2.9375, 2.2304688, -0.6958008, -1.6904297, 0.13928223, 0.4506836, -1.5654297, 0.18237305, 1.1416016, 0.52246094, 1.2226562, -1.2060547, -0.6723633, 0.3798828, 2.4785156, 0.5996094, -3.4804688, 1.5341797, 2.3222656, 0.25756836, -1.0068359, -1.0458984, -0.8647461, -1.9130859, 3.265625, 0.043029785, -1.0673828, -0.27368164, -2.6210938, 2.4199219, 0.85498047, -1.6259766, -1.5751953, 0.2644043, -0.20385742, 0.8979492, -0.50634766, 1.1064453, 1.8691406, -2.625, -1.1757812, -2.6191406, -0.46899414, 1.6708984, -1.7568359, -1.0878906, 2.1894531, -0.55126953, 2.9277344, -0.24768066, 3.2382812, -1.0136719, -0.5698242, 1.5830078, -0.7949219, 0.30371094, -0.9760742, -6.8789062, 1.2900391, -1.2255859, -0.9267578, 2.3710938, -0.2376709, -0.0069389343, 0.41308594, -0.18615723, -4.4179688, -3.7675781, -1.53125, -1.0097656, -3.6738281, -0.17272949, 1.0498047, -1.6308594, -0.53125, -2.9589844, 0.44628906, -0.9213867, 0.5058594, 1.0214844, -0.4375, 0.58447266, -2.0546875, 1.8710938, 0.46679688, 1.1787109, -1.4121094, -0.9550781, 0.2602539, -0.5805664, 1.4365234, 1.2314453, 0.4189453, 1.1982422, 2.6679688, 0.19921875, -0.9482422, 0.9091797, 1.4082031, 3.3125, -0.42773438, -3.5703125, 0.22387695, -0.2232666, 0.7109375, -1.1894531, -1.1455078, 0.78271484, -0.9663086, 0.7583008, 1.2910156, 0.7397461, 0.7578125, 0.4963379, -4.9257812, 1.2089844, 0.13806152, -2.0957031, -1.0283203, -0.43139648, -1.9765625, 0.21459961, 1.0498047, -1.6240234, 0.035186768, -2.265625, -0.8364258, -3.0820312, 1.8857422, 1.4902344, 2.7089844, 1.9277344, -1.4609375, -0.24377441, -2.3847656, -0.80078125, 1.2998047, 0.05657959, 0.9458008, 1.2753906, 1.6777344, 2.7675781, -2.2578125, -0.23535156, 1.3046875, -2.25, 0.08300781, -1.1083984, 0.15856934, 0.3232422, -2.0214844, 1.65625, 0.5839844, 2.7949219, -1.9472656, 0.2199707, -1.3779297, -1.3613281, -2.2285156, 1.6044922, -1.5585938, -0.16967773, 2.1601562, 0.111206055, -0.028656006, -1.1582031, 0.47265625, -1.4414062, 2.9277344, -1.4111328, -2.2421875, -1.4404297, 0.45092773, -1.4853516, -0.10168457, 2.0957031, 0.37280273, 1.1259766, 2.9902344, 2.5117188, -0.00623703, 1.1083984, 1.6181641, -0.84716797, 1.1542969, 0.41186523, 0.11682129, 0.9658203, 0.26513672, -3.3828125, 0.61572266, 3.2617188, -1.03125, 1.3671875, -0.45874023, -2.4921875, 0.5102539, -3.0175781, -2.1484375, -0.41088867, 1.1025391, -0.18444824, -1.1972656, 0.055877686, -1.5722656, 2.9609375, 3.8652344, -1.1191406, -1.3271484, 2.5371094, 0.16564941, -1.3486328, 1.0107422, -2.1640625, -0.74560547, 0.41748047, 0.1673584, 0.6928711, 0.05114746, 2.1542969, 0.74072266, -2.0878906, 0.0028533936, -1.8417969, 2.8789062, -2.4960938, -0.15551758, 0.46972656, 1.0498047, 0.50927734, -2.9199219, 0.89990234, -1.2763672, 2.7421875, -1.7841797, -0.45239258, 0.6303711, -2.0410156, -1.2285156, -3.7050781, -2.0039062, 1.5869141, -2.3710938, 0.111328125, -1.6337891, -1.109375, 0.024887085, 0.4501953, 0.07904053, -0.22851562, -0.010406494, -1.6855469, 0.06323242, -0.2841797, 0.29858398, 0.5854492, 0.6245117, -0.78466797, -2.2109375, -1.8691406, -2.4101562, -1.3535156, 1.4072266, -0.859375, 1.8564453, 1.4882812, -1.5341797, 1.0244141, 3.4804688, 1.7353516, -0.90527344, 1.5361328, 0.24182129, 1.2851562, 2.7460938, 0.02571106, 1.3769531, 0.15759277, -0.18688965, -0.6689453, 0.68066406, -0.26293945, -0.16540527, 1.3857422, -1.1152344, 0.0043029785, 0.28833008, -0.024353027, 1.0107422, -0.24304199, 3.6503906, 1.5068359, -1.7597656, -1.1171875, -2.9199219, -1.0566406, -1.5537109, -0.68359375, -2.8535156, -1.2988281, 0.9482422, 1.96875, -0.5307617, 1.1210938, 1.1005859, 1.8837891, -2.6367188, 0.4909668, 0.19140625, 1.8740234, 0.24182129, -1.4560547, -3.5371094, -3.0371094, 0.35888672, 0.46777344, 0.8730469, -1.9248047, -0.20324707, -0.80371094, 2.453125, 0.4645996, 1.9521484, 1.8779297, 0.7319336, -2.3046875, 2.6152344, 2.5039062, 0.5595703, 2.046875, -1.0283203, 2.2324219, -1.4833984, 3.109375, 2.3847656, -0.25561523, 0.11682129, 1.0683594, 1.40625, -1.1972656, -1.5605469, 2.4296875, -3.5957031, -0.5991211, -0.23156738, -1.8076172, -4.125, 1, 2.4160156, 0.67626953, 0.9404297, 1.9765625, 0.7895508, -0.9946289, 1.9248047, -0.08294678, 2.2929688, 0.9658203, -0.7841797, 1.125, 3.125, -0.53027344, 1.3955078, -0.71240234, 0.49121094, -1.1435547, 2.0878906, -0.97509766, -0.14318848, 2.0507812, 1.6660156, 3.1582031, -0.27612305, 1.2861328, 1.1591797, 2.7089844, 0.61376953, -1.8642578, -0.67333984, 1.3720703, 4.3789062, 0.20910645, -0.13891602, 0.078125, 2.5957031, -2.1113281, -1.6269531, 1.9892578, -0.1665039, -0.117004395, 0.5209961, -1.25, 0.12548828, -1.5019531, -0.18688965, -0.9970703, 1.6865234, -1.7412109, -0.9121094, 1.8876953, -0.68066406, -1.2539062, 0.24816895, 0.46948242, 1.1777344, -2.2792969, 2.8359375, -0.12365723, -1.5107422, 0.024154663, 2.0175781, 1.6191406, 1.6552734, 0.60498047, 0.86035156, 1.9863281, 2.8144531, -0.046417236, 1.5507812, -2.0410156, -0.24487305, 2.4238281, 3.1699219, -0.09100342, -0.9589844, -0.22717285, -1.7353516, -2.0019531, 0.44482422, 0.7324219, -1.9521484, 1.4609375, -0.9506836, 1.3203125, -1.1484375, 1.7099609, -1.6328125, 0.5258789, 1.0673828, 1.3486328, -1.0888672, 0.81591797, -1.2021484, 3.5195312, -0.43969727, 0.45874023, 1.1875, -2.2558594, 0.2064209, 0.82373047, 0.78125, -0.5644531, 1.4453125, -1.3876953, 3.6191406, 1.8222656, 1.4648438, 0.6010742, -0.17419434, 2.1132812, 0.28222656, 0.79248047, -0.88671875, 0.8574219, 0.11254883, -1.5878906, -0.13378906, -2.1328125, -0.51123047, 1.0234375, 1.1767578, -0.6699219, -0.68359375, 0.94873047, 0.24035645, -1.5458984, 2.28125, 1.3935547, -0.7026367, 0.7260742, 0.6254883, -1.1826172, 1.390625, 1, 0.38964844, -0.32714844, -0.40234375, -1.0205078, 0.3544922, 1.6972656, 1.4082031, 0.29052734, -0.57666016, -1.4707031, 0.10333252, 2.0058594, 0.09716797, 1.4951172, -0.6035156, -1.3779297, -0.84472656, 0.97802734, 1.7119141, 0.41577148, -1.6484375, -2.6601562, -1.3691406, 0.4765625, -0.77734375, 3.0175781, 3.5703125, 0.11419678, 2.5175781, -0.23950195, -2.9296875, -2.4472656, -0.29589844, 1.9130859, -0.51904297, 0.34692383, -0.049194336, 0.08392334, 1.7636719, 1.1972656, -1.1523438, -0.80322266, -1.2148438, 2.1503906, 0.51220703, 2.4570312, 0.75341797, -0.9819336, -0.3330078, 2.2734375, 1.8183594, -0.13684082, 1.2548828, 1.0947266, 1.0029297, -3.9785156, -0.44726562, -0.6928711, -0.11303711, -1.0888672, 2.0976562, 1.2744141, -0.6352539, -0.23474121, -3.7539062, -1.2519531]}, "B002ZY0IU6": {"id": "B002ZY0IU6", "original": "Brand: Flame King\nName: Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White\nDescription: \nFeatures: High grade steel welded propane cylinder\nPOL valve assembly\nX-ray and hydrostatic tested\nDOT approved\nPowder coated for long lasting exterior protection\n", "embedding": [-0.99365234, 1.3320312, 1.7519531, 1.0625, 1.8994141, -1.8769531, 0.2939453, 0.18981934, 1.3300781, -0.4790039, 2.1464844, 0.5996094, -1.0810547, -3.2871094, 2.1875, 0.5473633, 0.15478516, 1.7617188, 0.7373047, -0.1973877, 2.1816406, 0.6972656, -1.1220703, -2.0585938, 1.0117188, -1.0039062, 3.4160156, -2.5117188, -1.4726562, -1.3144531, 0.61083984, -0.06677246, -0.12756348, 1.0400391, -0.60546875, -1.5410156, 1.4902344, -1.4384766, -4.8046875, 0.3828125, -2.2753906, -1.5117188, -0.21911621, -0.47314453, -1.34375, 0.8408203, -0.38232422, -1.7041016, -1.1904297, 1.1914062, 0.12121582, 1.4902344, -0.94628906, 1.1181641, 0.5932617, 1.8525391, 0.4921875, -2.8691406, -1.328125, -0.067993164, 1.4628906, 0.19458008, -3.4257812, 1.6464844, -0.8701172, 1.9306641, 0.359375, -1.7724609, 1.1572266, 2.6582031, 2.0039062, 0.3984375, 1.3310547, -1.5986328, -0.28271484, 0.9067383, -3.1914062, 0.47045898, 0.49829102, -0.9091797, 0.72314453, 1.0205078, 0.36132812, -3.2207031, -1.2675781, -1.9189453, 0.2697754, -0.15612793, -0.19433594, 0.8774414, -0.89941406, 1.3212891, 0.014915466, -3.515625, 1.484375, 0.26049805, 0.74316406, 1.8486328, 1.4804688, -0.58984375, 2.0683594, 0.04031372, -0.16821289, 0.2208252, -0.5541992, -1.3154297, 1.3027344, 1.2402344, -2.3574219, 2.3691406, -0.41552734, -1.0634766, 1.9921875, -0.27807617, 0.47729492, -0.8466797, -0.22460938, 1.4873047, 1.6933594, -1.7158203, 3.0820312, -2.6992188, 1.9951172, -0.03314209, 1.4560547, 1.1083984, -0.45532227, 0.0032157898, 5.5273438, 0.4375, 2.4082031, 1.2783203, 4.1601562, -2.2675781, -0.734375, -1.5488281, -0.3010254, -1.8212891, -1.5839844, -1.3251953, -3.1777344, -0.29052734, 1.3408203, -0.5175781, -2.46875, -0.7163086, 1.1464844, -0.05596924, -1.4267578, -2.0039062, 0.6723633, -0.7607422, 1.1464844, 0.22302246, 2.2128906, 1.3066406, -1.6738281, -4.0390625, 1.2851562, 1.2539062, 1.3486328, 0.24853516, -0.4729004, 1.0361328, -1.2792969, -1.8291016, 0.056365967, -0.39868164, -1.7578125, 2.0566406, -0.31298828, -2.0722656, -0.69384766, 1.5839844, -0.116882324, -0.46826172, -0.33935547, 1.5380859, 0.82958984, 0.70996094, -2.859375, -0.63427734, 0.94091797, -2.5800781, 1.9335938, 0.54345703, 0.3515625, -1.4003906, 1.6611328, 0.08190918, -1.7373047, 1.7109375, 0.3371582, 0.7685547, -0.54541016, -1.8847656, -2.2539062, -2.7578125, 0.72998047, 2.0429688, -1.2851562, -1.3837891, 1.3828125, -0.1541748, -2.5097656, -2.2675781, 0.10461426, -0.5073242, 1.9609375, 1.4980469, -0.078063965, 0.3178711, 2.3789062, -2.2949219, -1.1142578, -3.1992188, -0.29858398, 1.3818359, 1.7275391, 1.9560547, 0.7104492, -0.20129395, 1.6611328, -0.20153809, 0.9326172, 0.07409668, 1.6035156, 2.1113281, -2.4589844, -1.4160156, 1.9511719, 2.265625, -0.55859375, 0.9316406, -2.0039062, 1.8007812, 0.41064453, -0.6875, 0.5625, 0.42529297, 0.06750488, 0.5263672, -1.9560547, -1.4023438, -3.0722656, -0.8774414, 0.31396484, -0.026809692, 0.56640625, -0.14099121, 1.7822266, 1.5214844, -0.16491699, -0.073791504, -1.5664062, 2.1171875, 1.1494141, 0.27661133, 0.9082031, -3.3710938, 2.3066406, -2.2714844, -1.0361328, 0.5307617, -1.2617188, -0.88134766, 3.578125, -0.42700195, -1.75, 0.3696289, -0.8310547, -0.06793213, 2.7617188, -0.04953003, 0.81591797, 2.7539062, -0.80126953, 3.8769531, -0.5996094, 2.1894531, -1.1845703, -0.9975586, 1.0546875, -3.3339844, 0.81591797, 1.0878906, 0.63183594, -0.45947266, -2.4101562, 0.4489746, 5.0351562, -1.4287109, -1.1806641, 1.6337891, 0.3425293, 0.7861328, 4.3632812, 0.34570312, 0.1973877, -1.7177734, 0.0016927719, 1.0244141, -0.79833984, -0.56591797, 0.8798828, -0.9916992, 1.0673828, -0.40844727, 0.6479492, -1.2636719, -1.0664062, 0.7373047, -1.7285156, 1.6318359, -1.4541016, 0.13903809, 2.5039062, -3.0371094, 1.5166016, 1.9462891, -0.12768555, 2.5117188, 2.0449219, -0.5571289, 0.42358398, 1.4921875, -2.5410156, 1.9160156, -0.10083008, 0.040863037, 0.63720703, -1.8066406, 0.9692383, -1.3769531, 0.24511719, 0.6586914, -1.1054688, -1.78125, 0.35742188, -3.4609375, 0.69677734, 0.12768555, -1.1914062, 1.8232422, -0.82421875, -2.4414062, -0.42236328, 0.6669922, -0.66064453, -1.5371094, 0.6142578, 4.1132812, -0.65722656, -3.2675781, 0.2602539, 0.7548828, 0.31884766, 2.8945312, -1.1962891, -0.08087158, 0.6958008, 0.04220581, -0.57666016, -1.9208984, -0.9433594, -2.0410156, 2.515625, -1.9335938, 2.6425781, 0.12451172, 0.33203125, -0.5683594, -0.66259766, -1.9726562, -3.3710938, -0.4033203, -0.15222168, 2.59375, 1.1269531, 2.4472656, -1.2236328, -1.5400391, 1.2197266, -0.88623047, -1.9414062, 0.90527344, 0.796875, -0.8359375, -1.4824219, -5.28125, 0.18579102, -1.4287109, -0.23657227, -0.4765625, 0.15881348, -1.0332031, 0.50634766, -0.22766113, 0.5234375, -0.010757446, -0.024551392, -0.7753906, -2.1484375, -0.7236328, -0.38891602, -0.67578125, -1.5410156, -0.33813477, -0.30126953, -0.08605957, -1.0107422, 1.3203125, -1.0361328, 2.1113281, 0.6347656, -3.8886719, 3.4707031, 2.2363281, 1.1806641, 1.8105469, -3.5234375, 0.0541687, -1.6259766, -0.8154297, 4.4570312, 2.5195312, 0.5571289, 1.0927734, -0.87353516, 0.8198242, 0.44311523, -0.8359375, 0.45458984, 0.85791016, 3.3378906, -0.26611328, -1.3779297, -0.0690918, 0.8095703, -4.3320312, -0.8154297, 0.96777344, -0.053375244, 1.0097656, -0.20776367, -0.7402344, -1.0751953, -0.56347656, 1.5390625, 1.4814453, 1.1035156, 0.3166504, -1.5810547, 0.09246826, -0.79785156, -0.6069336, 4.4921875, 0.41210938, 2.2070312, 1.8623047, 1.3818359, 0.99365234, -0.58251953, 1.4453125, 1.2119141, 1.5410156, 1.515625, -0.796875, 1.9169922, -1.09375, -0.36010742, -0.04937744, -1.1708984, 0.1739502, 1.953125, 1.0859375, -0.44360352, -0.3137207, -1.1708984, -1.1806641, -1.265625, 3.4257812, -1.2275391, 2.2285156, 0.55810547, -0.8076172, 0.7626953, -3.8574219, 2.6679688, -0.1104126, 0.5185547, -0.4020996, 0.93115234, -1.5195312, -3.2851562, -0.17077637, -0.83447266, -1.8964844, 2.1054688, -0.3564453, -2.765625, 0.2709961, -1.5292969, 0.47314453, 1.6132812, -2.9414062, 1.828125, -0.21569824, 0.64453125, -0.62353516, -0.19604492, 0.50390625, 1.1523438, -3.0800781, 1.1484375, -1.0839844, 1.0019531, 0.57128906, 0.3166504, -0.76708984, 0.38061523, -2.0722656, 2.6523438, 0.5385742, 3.21875, 0.97802734, 1.5839844, 1.515625, -1.2539062, -0.1348877, -1.2792969, -2.8417969, 1.3701172, -2.6132812, -1.4042969, 1.1738281, -1.9882812, 0.47802734, -0.1685791, 0.42578125, -0.5708008, 0.07672119, -0.15209961, 2.5039062, -1.4277344, -0.53515625, -0.6513672, 1.4375, -1.65625, -0.1776123, 0.97802734, -1.7519531, -0.7993164, 0.7636719, -1.8964844, -0.11193848, 0.76171875, -0.21850586, 0.023727417, -1.3457031, 1.2060547, 0.44189453, -0.8833008, -1.4804688, 3.078125, 4.3164062, 0.44677734, 1.3730469, 2.4179688, 2.0488281, -0.0390625, -0.78222656, -1.9677734, 1.2099609, 0.6430664, -4.5664062, -1.3144531, 0.7680664, 1.09375, -3.1445312, 1.7597656, -1.1582031, 1.6328125, 2.578125, 0.39746094, 1.9443359, 0.4165039, 0.15356445, -0.9433594, 0.81347656, -0.024429321, -2.0273438, 2.3769531, -0.6977539, 0.8833008, -1.6064453, 2.1914062, -2.4511719, -1.7597656, -0.54052734, 1.6689453, -4.7695312, 1.140625, 2.8007812, 2.1015625, -0.24389648, -1.3056641, -0.020721436, 0.0592041, -0.37548828, 0.27441406, -0.07086182, -1.1484375, -1.4521484, -0.03677368, 1.2333984, -0.9916992, 0.4309082, 2.3183594, -0.93652344, -0.7841797, -0.25024414, 1.8730469, -2.3027344, 0.47045898, -0.35766602, -1.1201172, 2.859375, -1.7871094, -1.8183594, -0.057678223, 0.3425293, -0.30004883, 0.38378906, -0.38964844, -0.58203125, 3.7441406, -0.24658203, 0.18237305, 1.8066406, 1.7597656, -0.34521484, 1.8916016, -2.1269531, -0.3251953, -0.93652344, 1.1083984, -1.4716797, 1.6367188, 1.4179688, 0.38427734, -0.79589844, 2.2890625, -0.03353882, -0.20581055, 0.33154297, 1.3994141, -2.8847656, -3.5722656, -0.9819336, -0.5488281, 2.7636719, -0.7661133, -1.7666016, -0.24291992, 1.8144531, 0.17333984, 1.9804688, 1.0166016, -1.2832031, -2.8320312, -1.0361328, -2.7695312, -2.0117188, 0.4152832, -0.3701172, -0.24450684, 2.1953125, -1.9169922, -1.203125, -0.19970703, 1.6787109, 0.35742188, -0.890625, -1.3867188, -0.058654785, 0.20446777, -0.26513672, -0.9580078, -0.53515625, -0.8354492, -0.09246826, -0.51220703, -0.036010742, 3.1679688, -0.8046875, 0.45703125, -0.5395508, 0.4177246, -1.5419922, -1.9013672, 2.2753906, -0.5102539, 0.62109375, -1.2333984, 0.18273926, -0.3947754, 1.6494141, 2.2304688, -1.5380859, -1.0039062, 0.3251953, -2.7636719, -4.7695312, -0.9067383, -0.80126953, 0.23620605, -0.16638184, -2.1269531, -1.7919922, 1.2890625, -1.9589844, -1.2226562, -1.1611328, 0.116760254, -0.10015869, -0.36376953, -1.5898438, 2.5117188, -0.46069336, -0.23950195, -0.16906738, -0.48779297, 0.56591797, -0.95947266, -3.6074219, 1.6621094, -1.78125, 0.9267578, 0.31323242, -1.2128906, 2.0976562, 1.8779297, 0.69091797, -3.9257812, 2.5742188, -2.9277344, -1.2705078, 2.1933594, -2.2714844, -2.2753906, 0.66064453, -0.6635742, 0.85546875, 2.5820312, 0.8618164, -3.1289062, -1.71875, -0.6928711, 0.6689453, -0.86035156, 1.4521484, 3.59375, 1.9189453, 0.5908203, 1.8388672, -1.4013672, -1.6484375, -0.99853516, -0.44677734, 0.99609375, -0.8017578, -0.44360352, -0.71972656, 1.9980469, -0.9765625, -0.45288086, -0.5673828, -0.80908203, -0.87109375, -1.2949219, 3.4179688, -3.1660156, 3.1113281, 3.7558594, -2.2246094, -2.2597656, -1.4023438, -0.076293945, 1.8232422, -1.4130859, -1.6113281, -0.06323242, 0.95703125, 0.6118164, -1.1767578, 1.2607422, 0.25830078, 1.3535156, -0.4091797, 0.8823242, 4.1640625, -1.2353516, 1.4814453, -0.043273926, 0.36791992, 2.1796875, 2.9960938, 1.8339844, -1.3876953, -0.15454102, 0.11578369, -0.10321045, -0.50097656, 0.046661377, -1.5605469, -3.34375, -2.2089844, 2.0429688, -0.7270508, -3.5292969, 0.0032348633, -0.66845703, -0.6352539, 0.07366943, -0.41015625, -0.68408203, -0.2854004, 1.4707031, 1.1240234, -1.2441406, 0.1282959, 1.8388672, 0.44482422, 2.6484375, -1.6123047, 1.6035156, 0.8618164, -0.064453125, 0.4765625, 1.1367188, -1.3320312, 2.765625, 1.15625, 2.5507812, 3.9121094, -0.2142334, 0.6484375, 0.8359375, 1.4306641, 3.1230469, -0.93847656, 0.5854492, 0.8466797, 1.5605469, 0.17407227, -0.93603516, -0.13330078, 0.13366699, 1.3398438, -1.2587891, -0.43676758, 1.6582031, 0.022354126, 0.36889648, -0.6430664, -0.5996094, -0.89697266, 0.25854492, -1.34375, -1.1660156, 0.6616211, -1.0322266, 1.5458984, 0.27661133, 2.1796875, 0.30249023, 0.6044922, 0.8051758, 0.16357422, -0.3996582, -1.6894531, -1.8408203, 1.0849609, 0.38452148, 0.55908203, -0.50146484, 0.7753906, -0.7631836, -0.40771484, 0.59472656, 0.00970459, -1.1318359, 2.1015625, 2.5644531, 1.0185547, 1.1318359, 0.2322998, 4.5585938, 1.0371094, 0.05670166, -2.3027344, 2.75, -1.1943359, -2.140625, 1.5048828, -1.2675781, 0.60839844, -1.6123047, 0.7285156, -3.5722656, 0.765625, -0.28808594, -1.6464844, 3.1679688, 0.6503906, -0.7050781, 2.9160156, 2.2714844, -0.53222656, 0.53222656, -0.37768555, 1.2294922, 0.56396484, 0.39672852, 1.8007812, 1.5449219, -2.3925781, 4.453125, -0.66748047, -0.9042969, -0.62646484, 2.1953125, 0.3425293, 0.8666992, 0.3154297, -0.578125, 1.8671875, 0.046447754, 0.53515625, 0.98535156, -1.4990234, -1.2226562, -2.0371094, -0.3791504, 0.87402344, -3.4023438, 0.25048828, 0.4362793, -1.0351562, -2.5214844, 4.578125, -1.1005859, -0.90966797, -0.024475098, -2.2949219, -3.3203125, 1.5126953, 0.875, -1.4130859, -1.5214844, 0.66796875, 2.5625, 0.47045898, -1.9755859, -0.9794922, 0.20605469, 0.5761719, -1.8378906, 1.4033203, -0.68408203, -0.90185547, 1.2519531, 0.3359375, -1.0419922, -0.375, 0.34399414, 2.0292969, 0.62939453, -0.61279297, 1.0507812, 1.0751953, -2.2089844, -2.3222656, 0.99121094, -0.37890625, 0.2746582, 0.3696289, -3.5625, -1.1650391, -0.78222656, 1.1494141, -0.9189453, -1.2783203, 0.68310547, 2.2148438, 1.8964844, -1.3496094, 0.52441406, 0.13391113, 1.2412109, 1.6513672, -2.7363281, 0.82128906, -0.45214844, 0.2944336, -0.75634766, 3.5332031, -0.51904297, 0.7578125, 0.06665039, 1.6230469, -1.5302734, -0.30126953, -0.44726562, -0.5151367, -1.0878906, 0.96777344, 0.4951172, 0.8652344, 1.0009766, -2.4238281, -2.2734375, -0.57373047]}, "B00OXKQQYC": {"id": "B00OXKQQYC", "original": "Brand: Coleman\nName: Coleman Propane Grill Adapter, 1-Pound\nDescription: \nFeatures: Attaches to any full-size propane grill\nAllows for hook-up to a 1-lb. (0.45 kg) fuel cylinder\nAll brass construction\n", "embedding": [1.0283203, -0.8745117, 1.0820312, 1.0976562, -2.0039062, -0.21875, 1.0888672, -0.38623047, -0.4633789, 3.1855469, 2.0273438, 0.4260254, 0.46484375, -2.4882812, 0.22216797, 0.82373047, 1.2724609, 0.7734375, 1.4902344, -0.3947754, 3.5253906, 0.94189453, 0.8129883, -2.1367188, 1.3945312, 0.7685547, 4.9375, -3.3222656, 1.0019531, -1.2998047, 0.20874023, -0.7265625, 0.8378906, 1.7089844, -2.2792969, -1.0449219, -1.2714844, 1.6630859, -2.9589844, -1.5664062, -1.5009766, 0.9082031, 2.9941406, -0.66308594, -1.4492188, 0.41088867, 1.6494141, 1.0732422, -0.09515381, -0.34692383, 2.7617188, 1.9365234, 0.1529541, -0.7807617, -1.7607422, 2.0117188, 0.2788086, -2.5917969, -0.7128906, -0.38720703, 2.6054688, 0.7236328, -0.3269043, 0.33496094, -0.75927734, 1.2001953, -1.0302734, -0.8496094, 0.7246094, -0.59228516, 1.4189453, 0.87646484, -2.1933594, -1.0771484, -2.0175781, 0.87402344, -4.1601562, -0.35498047, 1.0419922, -0.8574219, -2.7011719, 1.1005859, 0.20898438, -2.6738281, -0.39038086, -0.21362305, -2.84375, 0.23095703, 1.7822266, 1.4580078, -0.5209961, 1.4443359, -1.8447266, -3.5839844, 0.25219727, -0.45043945, 1.5800781, 1.7910156, 1.5976562, -0.49902344, -1.6748047, -1.0957031, -1.59375, 0.7651367, -2.9921875, 0.064575195, 1.6044922, 0.22021484, -3.5097656, 0.5292969, 0.71533203, -0.7475586, 2.8417969, 0.12030029, 0.8491211, -1.1933594, -0.12188721, 0.4638672, 1.9199219, 0.90478516, 5.0039062, -0.44067383, 1.8408203, -0.5341797, -1.625, 0.97314453, 0.105529785, 1.3173828, 3.9707031, -0.546875, 0.42456055, 1.1787109, 3.4765625, -0.2709961, -0.89941406, -2.5625, -0.50146484, -1.2568359, -0.5175781, -0.35107422, -2.5585938, 0.034362793, 1.1123047, 0.30029297, -6.125, -0.41870117, -1.7480469, 0.74902344, -1.3544922, -1.6884766, -0.034057617, -1.6132812, -0.84472656, 1.5986328, 1.875, 1.4384766, -1.765625, -1.5966797, 3.5351562, 0.6982422, 0.64208984, -0.8339844, -0.26464844, 1.0957031, 1.265625, -0.22973633, 0.52490234, 0.41479492, -0.6196289, 2.0019531, 1.5458984, -2.5390625, 0.7128906, 1.3623047, 0.26123047, -0.48486328, 1.5253906, 1.5585938, -0.039276123, -0.38671875, -1.0576172, -2.3652344, 0.70214844, -1.1074219, 1.6435547, -2.4375, -2.3085938, -0.66064453, 1.1162109, -1.2949219, 0.58691406, 0.059661865, 0.19360352, 0.9448242, -0.7836914, -1.5009766, -1.4580078, -0.87841797, 0.64404297, 0.5410156, -1.359375, -0.5834961, 1.0888672, 0.3005371, -1.7773438, -2.6269531, 0.42236328, -1.6279297, 0.41870117, 2.5253906, 1.8789062, -0.9536133, 1.0546875, -0.3942871, -0.9902344, -2.4394531, 0.8510742, 1.0478516, 1.8789062, 1.6337891, -0.9921875, -0.40014648, 0.009765625, 0.09765625, -0.6972656, 1.2314453, -0.21740723, 1.5888672, -1.5146484, -0.3215332, 2.5839844, 2.5410156, -2.7832031, 0.9296875, 1.0224609, 1.9101562, 0.14916992, -0.5161133, -0.8989258, -0.19226074, -0.93896484, 1.0439453, -0.64941406, -2.6640625, -0.6738281, -0.22277832, -1.0537109, 1.9267578, 4.1601562, -0.5649414, -0.103149414, 0.85839844, -3.0078125, 0.48510742, -2.6191406, 2.0800781, -0.043426514, 2.0800781, -0.7944336, -3.0566406, 1.78125, 0.010871887, -0.46801758, -0.6894531, 2.0507812, 0.60009766, 3.3144531, -1.1904297, -3.1523438, 0.014091492, 1.9726562, 1.5136719, 1.140625, 0.49731445, 0.22021484, 0.7636719, -1.6445312, 2.6054688, 0.9013672, 1.6210938, 0.3894043, 0.84814453, 2.5332031, -2.8652344, -0.4350586, 0.57128906, 2.0800781, -1.2646484, -1.6728516, 2.0117188, 4.2460938, 0.19543457, -0.7348633, 4.0390625, -0.1381836, 1.6660156, -0.5239258, -0.05783081, -2.09375, -0.009307861, 2.2011719, 0.3894043, -1.6162109, 2.1582031, 0.11407471, -0.16015625, -0.5136719, -0.9506836, 1.9101562, -0.33911133, -1.1542969, -0.43603516, -1.8916016, 0.92626953, -1.9121094, -0.5151367, 0.39160156, -2.3671875, 1.5244141, 1.5097656, 0.48779297, 0.62353516, 0.7753906, 0.40771484, 0.17077637, 1.3974609, -1.9511719, 2.1894531, 1.1933594, 0.35717773, 1.3710938, -0.6513672, 1.6425781, -1.1279297, -3.7734375, 0.6928711, -0.9628906, -3.6796875, 2.3671875, 0.40527344, -2.5546875, 0.16418457, -0.4802246, 3.3789062, -2.1992188, -0.6191406, 0.67285156, 1.4316406, -0.8256836, -0.7314453, -0.7651367, 0.63427734, -1.5722656, -3.5410156, -0.03665161, -0.7216797, 0.5444336, 0.28979492, 0.50634766, 1.3457031, 0.91308594, 0.21655273, -0.6098633, 0.96728516, -1.4355469, -1.2490234, 1.6376953, -1.9638672, 0.049102783, -2.7832031, -0.6401367, -0.9892578, -1.3710938, -1.7705078, -2.1054688, 1.4160156, 0.5908203, 5.1015625, -0.875, 1.2080078, -0.08526611, 0.6767578, 2.3300781, -1.8574219, -3.3789062, -1.5615234, -0.04324341, 1.6884766, -0.75097656, -3.6425781, -0.16918945, -0.47998047, -0.19555664, -1.765625, 0.35595703, -1.8964844, 0.8730469, -0.31933594, 0.40771484, 0.38745117, 1.9199219, 1.1035156, -1.4277344, 0.39282227, 0.8305664, -2.3183594, -0.56884766, -1.4599609, 0.59472656, -0.15563965, -2.4726562, 1.0263672, -0.3137207, 0.8833008, -1.6542969, -3.4335938, 1.4150391, 0.7441406, -0.28393555, 2.3339844, -1.2167969, -2.5039062, -5.1054688, -1.2255859, 2.25, 2.1503906, 2.40625, 0.7480469, 1.703125, -0.61035156, 0.57373047, -2.09375, -0.3791504, -1.7021484, 4.8007812, -0.97753906, -3.0136719, -1.0068359, 2.3164062, -2.9492188, -0.24951172, 0.2121582, -0.123168945, 1.6269531, 2.4394531, 0.79052734, -0.68408203, -1.2558594, 0.17602539, 2.6738281, -0.87939453, 0.68603516, 1.1777344, -0.7993164, 0.4140625, 1.1845703, -0.49975586, 0.48754883, 0.7866211, 1.7128906, 1.4804688, -1.9277344, 0.8413086, -0.6123047, 0.49487305, -0.109802246, 2.0117188, -1.1835938, -1.0595703, -0.52978516, -0.61621094, 1.9482422, -0.76220703, -0.5498047, 3.2089844, 1.2861328, -1.2861328, 1.4814453, 0.90722656, 0.9975586, -0.13598633, -0.84228516, 0.546875, -0.39282227, -1.6396484, -1.2197266, -1.5644531, -1.8378906, 2.8867188, -0.37402344, -1.3144531, -0.5986328, 1.2919922, -0.37353516, -2.6523438, -3.4277344, -2.5214844, -0.83935547, 1.4130859, 1.1894531, -1.8339844, 1.6835938, 0.8623047, 2.7167969, 2.2460938, -3.09375, -1.4052734, -2.1289062, -1.3955078, -1.0693359, 0.07330322, 0.9350586, 0.97509766, -2.7890625, -0.5449219, -1.9970703, 1.8847656, -0.4921875, -1.5830078, -0.6142578, 0.93652344, -0.22570801, 0.8823242, -1.4785156, 2.5507812, -1.8554688, -0.68652344, 1.5537109, -2.3476562, -0.4951172, -1.1542969, -4.1914062, 1.265625, -1.1416016, 1.0214844, 2.4472656, 0.23254395, -1.0576172, 1.4736328, 0.29003906, -2.5507812, -2.2285156, -2.3925781, 0.81347656, -1.9121094, 1.1289062, 2.2929688, 0.10455322, -2.4511719, -1.9912109, -0.16955566, -1.4755859, 0.9145508, 1.0195312, -1.4003906, 0.20629883, -0.26049805, 2.4414062, -0.5878906, -0.734375, 1.359375, 0.44311523, -0.06616211, -2.2910156, 0.54785156, -0.18933105, 0.4296875, 1.1767578, 3.0859375, 1.9746094, -3.53125, 0.84521484, 0.6640625, 1.9443359, -0.06439209, -1.3291016, 0.62597656, -1.9130859, -1.2470703, -0.09313965, 0.85498047, -0.9848633, -2.2890625, 0.33496094, 2.2558594, 2.6386719, 1.7998047, -0.91748047, -2.0234375, -0.14379883, 1.3964844, -1.4667969, -1.4960938, -0.2631836, -1.3544922, -2.4804688, 0.26416016, -1.5302734, -0.35131836, 0.31982422, -2.6660156, -2.6992188, 1.2558594, 1.8388672, 1.5087891, 1.1533203, 0.2746582, -0.74365234, 0.56347656, 0.109680176, -0.36450195, -0.7817383, -1.0478516, -0.5102539, -0.5444336, 3.5742188, -0.32177734, -1.2597656, 0.6118164, -1.1914062, -1.2294922, -1.40625, 0.56152344, -1.8066406, 0.17919922, -0.52246094, -2.8261719, 2.6777344, -2.2011719, 0.8378906, -0.5966797, -0.3256836, -0.69433594, 0.6455078, 1.8164062, 0.80322266, 1.6025391, -0.58691406, 0.5932617, 1.0507812, 1.1035156, 1.8681641, 0.87060547, -3, -1.1669922, 0.48583984, -0.06939697, -0.7192383, 0.79052734, 0.0881958, 1.3554688, 2.1894531, 2.0039062, 1.7412109, -0.671875, 1.8398438, 1.4042969, 0.31298828, -0.42260742, -0.08843994, -0.6459961, 2.8769531, -2.5058594, -2.7851562, 0.21118164, 2.6367188, 0.04031372, 2.7597656, 1.6962891, 0.3864746, -2.4277344, -2.6113281, -0.765625, -0.8808594, -1.3037109, 0.29760742, -0.8828125, -0.29248047, 0.32202148, 0.734375, 2.7851562, -0.15039062, -1.8486328, 1.3056641, -2.6269531, -2.0527344, -1.1044922, -2.2871094, -2.5800781, -2.0703125, 0.20703125, 2.1796875, 0.55126953, -0.58691406, 0.98583984, -0.51464844, 1.0986328, -0.2529297, 1.7041016, -1.3193359, -1.7529297, 0.28686523, -1.0019531, -1.2978516, -2.5644531, 1.1630859, -0.5629883, 1.4873047, 2.0605469, 0.6411133, -2.3925781, 0.5541992, -2.1269531, -3.8984375, -1.4121094, -1.8554688, 0.9111328, 0.42626953, 0.66552734, -1.4628906, -0.19311523, -0.024810791, -2.0019531, -1.1777344, -0.12683105, -1.3291016, -0.47631836, 0.5600586, -0.33618164, -1.2695312, 1.3710938, 1.3798828, 2.6367188, -0.21728516, -2.8105469, -3.3476562, -0.4892578, -1.5019531, -0.78759766, 0.94873047, -0.25927734, -0.25805664, 0.6123047, 2.5332031, -1.0957031, 2.2695312, -0.36572266, 0.07824707, 1.7646484, 0.009849548, 0.31640625, 1.1904297, -2.7714844, 0.30200195, 0.09881592, 4.8945312, -0.53564453, 0.19421387, -1.3095703, -0.16552734, 0.26342773, 0.8149414, 1.3085938, -0.56591797, 3.1777344, 1.4013672, -0.15100098, -1.1982422, -2.1875, -0.8647461, 0.60595703, -0.57958984, -0.3125, -0.51904297, 2.0546875, 2.0117188, 1.8623047, 0.6381836, 0.6118164, 1.6162109, -0.012565613, -0.5756836, -1.3740234, 2.3398438, 1.4697266, -1.4912109, -2.5585938, -1.2275391, 1.1884766, 1.5625, -0.28881836, 1.1123047, -0.6953125, -1.2480469, -0.061584473, -0.66503906, 1.9814453, 2.3515625, 0.73095703, -0.71777344, 0.53759766, 4.7460938, -1.3544922, 0.6875, 1.09375, 1.0664062, -1.5566406, 1.6679688, -0.9453125, -2.7226562, 1.3339844, -1.4726562, -0.25732422, 0.1875, -0.27514648, 0.4169922, -2.2636719, -0.8989258, -0.9589844, -0.46728516, -3.3769531, 1.3798828, 0.09338379, -0.37231445, 2.0410156, 1.8798828, -2.2226562, -1.0341797, 1.3681641, 2.4453125, -0.7939453, 0.05987549, -1.6318359, 0.5942383, 1.3652344, -2.2480469, 2.5, -0.7392578, 0.7060547, 0.71728516, 1.0673828, 0.111206055, 2.8164062, 1.8691406, 4.328125, 3.8320312, 1.7460938, 3.0429688, 0.64404297, 0.69384766, 1.3144531, -3.0078125, -0.4951172, 1.53125, -0.2578125, 1.4355469, -1.4794922, -0.2524414, 0.14428711, -0.19921875, 0.3449707, 1.4941406, 3.9394531, -3.5761719, 0.012435913, -0.41259766, 2.8769531, -1.9941406, 0.7338867, 0.72216797, 0.70166016, -0.53759766, 0.2286377, 1.6679688, -0.015167236, -0.22705078, 0.29077148, -0.17700195, 2.1230469, -1.6181641, -1.3730469, -1.7167969, -0.6582031, -0.36621094, 0.20581055, -0.31274414, -0.87597656, 0.5620117, 2.5996094, 1.6650391, -0.60253906, 0.8911133, -1.5263672, 0.20959473, 1.9150391, 1.0585938, -0.21154785, -0.5073242, 2.5351562, -0.28588867, -3.6074219, -3.8027344, 1.1748047, -0.6147461, 0.5151367, 0.16552734, -2.4921875, 2.625, -0.60498047, 1.9726562, -0.9536133, 1.4082031, -0.43115234, -2.5214844, -1.1445312, -0.061828613, -0.5102539, 2.0859375, 2.2910156, -2.8066406, 1.2021484, 1.8759766, 1.1083984, 0.16064453, -0.34643555, 1.5039062, 2.9140625, -2.3730469, 2.7070312, -1.3105469, 2.4257812, -1.0966797, 3.71875, 4.3789062, 0.19152832, 0.72753906, -0.44995117, 1.2197266, 1.7695312, 0.8935547, -0.75634766, -1.6054688, -0.7294922, 1.0205078, 1.9013672, 0.36401367, -0.6040039, 2.9472656, 1.6679688, 0.037994385, 1.0068359, 0.6040039, -1.1630859, 1.453125, 0.19934082, -1.0019531, -3.03125, 1.6416016, 1.4892578, -1.2373047, 0.8105469, 1.2011719, 1.4794922, -1.0146484, -1.6367188, 0.3251953, -0.53759766, -0.4399414, -2.3027344, -0.43920898, -0.4794922, -1.1875, -0.2932129, 0.3659668, -0.01109314, 0.50878906, 0.5151367, -2.2773438, 0.014137268, -1.0527344, -0.0061035156, -2.5410156, -0.5307617, 1.3867188, 2.8984375, -0.45263672, 2.4101562, -3.1386719, -2.9238281, -3.2773438, -2.4960938, 3.9335938, 1.0888672, -2.4511719, 0.36547852, 0.15881348, 1.9550781, -2.7597656, -1.0986328, 0.85253906, -0.8310547, 0.796875, -0.6640625, -0.7475586, 2.5800781, 0.47998047, 1.6259766, 2.0117188, 1.9912109, -0.011116028, -0.4152832, -0.5576172, 0.0076675415, -1.6416016, 0.78466797, 0.6020508, -0.26635742, -1.9287109, 2.15625, 1.5957031, 0.33447266, -0.66259766, -1.9414062, -0.045898438]}, "B087N2JQD8": {"id": "B087N2JQD8", "original": "Brand: Hisencn\nName: Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W\nDescription: Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nFeatures: Burner Dimension: 12.6\" x 1.5\" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ;\nHeat Plate Dimension: 13\" x 4\" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ;\nFits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill\nRepair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order.\n\u3010Adjustable Crossover Channels with Instructions\u3011Good for about any length from 5\" to 9.5\" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.\n", "embedding": [-2.9433594, 0.81347656, 1.4189453, -1.6513672, 1.7490234, 0.10192871, 2.0625, -1.6914062, 2.5703125, 1.1552734, 0.80322266, -0.43139648, 2.40625, -2.3886719, -1.3701172, 1.3515625, 1.6191406, 0.3984375, 1.765625, -0.3828125, 0.76708984, 1.0917969, 1.2333984, -2.5078125, -1.2314453, 0.01763916, 5.6015625, -3.2480469, 1.7705078, -1.4882812, 2.3085938, -1.1689453, -0.18066406, 2.8710938, -3.0722656, -0.6899414, -0.4790039, 1.4833984, -3.5429688, 0.3334961, -1.2900391, 2.9980469, 2.6914062, 0.60302734, -2.0234375, -1.4482422, 0.52783203, 0.64453125, -2.3847656, -1.0263672, 1.1337891, 0.85253906, 0.47021484, -0.61572266, -0.16430664, 3.078125, -0.42773438, 0.5913086, 1.4394531, -0.45751953, 1.7763672, -1.1767578, -2.53125, -0.28710938, -2.0722656, 1.4082031, 1.9804688, -0.37231445, -1.8691406, 0.6425781, 0.009407043, -0.35083008, 0.77001953, -0.09429932, 0.39624023, -2.6230469, -2.9121094, 0.33325195, 0.45214844, -1.3935547, -1.4462891, 2.8339844, -0.78515625, -0.5498047, 0.32714844, -0.57910156, -0.3540039, -0.7578125, 3.2871094, 0.5942383, -1.1328125, 1.2519531, -1.6240234, -4.25, 1.2490234, -1.4492188, 1.0986328, -0.3166504, 0.11602783, 1.9042969, -3.0039062, -0.6171875, -2.5371094, 0.37451172, -3.0117188, -0.25610352, 2.0039062, 1.71875, -1.3710938, -0.6279297, -1.3691406, -1.296875, 1.6494141, 0.21459961, -0.13867188, 2.5019531, -0.9951172, 1.3515625, -0.037628174, -0.5932617, 5.5820312, 0.85253906, -1.0332031, -0.9897461, 0.67041016, -0.3166504, -0.10614014, 0.07196045, 5.0664062, -2.1777344, 1.296875, 0.47338867, 2.15625, 0.029922485, -0.6933594, -1.6640625, -4.2226562, 0.05206299, -2.84375, -0.07324219, -2.0820312, -0.2590332, 0.6376953, -0.6850586, -1.5498047, 0.71777344, -1.1357422, 2.84375, -0.6376953, -1.2607422, 1.9433594, -2.3066406, -0.8774414, -3.4394531, 1.6103516, 0.90185547, -0.3840332, -2.0898438, 2.1835938, 1.4785156, 1.2841797, -1.3095703, -0.7753906, 0.64501953, -0.5180664, -0.5839844, -2.0332031, 1.2734375, -1.0419922, 2.7011719, 0.41381836, 0.8798828, -1.078125, -1.4511719, -0.8618164, -0.6816406, 0.2578125, 2.7832031, -0.38720703, 1.2753906, -1.8095703, -1.0517578, -0.53271484, -1.7509766, -0.32983398, -0.8491211, -1.0107422, 0.7158203, 1.1113281, 0.6508789, 0.515625, 0.76464844, 0.043273926, 0.8149414, -2.0761719, -0.4711914, -1.4345703, -1.2783203, 1.59375, -0.30859375, -2.3183594, -0.24084473, 0.059265137, -0.65771484, -2.2753906, -2.7011719, -1.8691406, 0.3395996, 1.6289062, 0.9057617, 0.68408203, -0.66503906, 0.91064453, -1.6816406, 0.87841797, -1.7119141, 2.0097656, -0.49975586, 1.7587891, 2.1875, 0.2388916, -1.0400391, 0.23181152, 3.0214844, 1.1357422, 1.7138672, 0.88671875, 0.6723633, 0.059631348, -0.6201172, 1.09375, 0.55810547, -0.54296875, 1.203125, -0.33789062, 0.7631836, 1.5185547, -2.4082031, 0.59472656, -0.037963867, 0.9033203, -0.51953125, -1.4990234, -1.8798828, 0.3466797, 4.0351562, -3.0390625, 2.5214844, 1.3310547, 0.76953125, 0.07977295, 0.31274414, 1.3496094, -0.086242676, -2.2128906, 2.0273438, 0.14758301, 0.5, -0.4650879, 0.92822266, 0.90478516, -0.16699219, -1.0107422, 0.34765625, 0.43798828, -1.9082031, 2.0605469, 3.2695312, -0.41723633, -0.4362793, 0.66064453, 0.2631836, 1.4287109, -1.5498047, 1.8447266, 3.2519531, -1.4716797, 2.3535156, 1.6337891, -0.59521484, 1.8310547, 0.8305664, 2.6992188, -0.61572266, 0.95996094, 0.5551758, -0.5239258, -1.0927734, -0.34033203, -0.14855957, 3.6933594, -1.484375, -0.7792969, 3.4765625, -0.52490234, -1.0341797, 0.09362793, -1.1484375, -0.48095703, 0.55566406, 1.4453125, 1.9404297, 2.2519531, 1.0419922, -1.0634766, 1.0537109, 1.3486328, -1.0576172, -1.4091797, 3.1210938, -0.3779297, -1.34375, -1.3105469, 0.21130371, -1.4306641, -2.203125, 2.6503906, -1.6318359, 3.2363281, -1.2167969, 0.6933594, -0.10974121, -0.2529297, -0.9692383, -0.27197266, 0.4189453, -0.7475586, 1.546875, 0.62939453, 1.5341797, -0.4008789, -0.34228516, -0.9453125, -1.8154297, -1.8681641, 0.5942383, -1.2041016, -4.0976562, -1.0214844, 0.4790039, -0.19274902, 0.23999023, -0.5097656, 3.2128906, -0.45141602, -1.5107422, -2.3632812, -0.6430664, 0.8173828, -1.9267578, 0.5493164, 1.5488281, -2.1367188, -3.5117188, 0.46850586, -2.1074219, 0.4116211, 0.31347656, -0.46411133, -1.9316406, 1.3203125, 0.072143555, -0.7421875, 1.4580078, 1.6904297, -0.99072266, 0.8408203, -1.7753906, -0.9296875, -2.6210938, 1.1269531, -1.265625, 0.39233398, -3.0488281, -1.6181641, 1.1425781, 0.16394043, 2.7714844, -1.8964844, 0.4399414, 1.2636719, -0.1739502, 0.4777832, -1.875, -3.9589844, 1.6210938, 1.3515625, 0.1776123, -3.9921875, -3.8496094, -0.81347656, -0.33081055, -1.1494141, -1.7041016, -1.4697266, 0.59521484, 2.1875, -0.20483398, -1.2666016, -0.97509766, 1.2597656, 0.45336914, 1.9365234, 0.45214844, -1.1015625, -1.4189453, -0.10748291, -2.1816406, 1.5908203, -0.4501953, 0.27929688, 0.13977051, -0.09820557, 3.4863281, 0.013313293, -1.2832031, 1.8789062, 2.1445312, -2.3125, 3.0996094, -0.9003906, -0.4387207, -3.5507812, -0.5175781, 4.6171875, 0.6118164, 3.7617188, -0.107543945, -0.29077148, 2.53125, 1.2285156, 0.65722656, 0.025360107, -0.77001953, 2.9765625, -1.2841797, -3.1113281, 2.859375, 0.27514648, -2.421875, -1.5234375, 2.3007812, -0.25097656, 1.0419922, 1.6416016, 0.43017578, 1.1230469, -0.5209961, 2.5039062, 0.3972168, 1.7060547, -0.38916016, -0.035858154, 0.052978516, 2.1972656, 0.36767578, 2.7128906, -0.3972168, 0.95654297, -0.5019531, 1.8164062, -0.90771484, 0.13427734, -1.2802734, 1.6552734, 0.69921875, 2.2578125, -1.0791016, 2.0273438, -0.97021484, -1.0839844, 1.1289062, -2.3359375, -2.5136719, 1.4482422, 0.29614258, -0.9633789, -0.83496094, 1.6835938, 1.8115234, -0.6459961, 0.053649902, -1.4306641, -0.22399902, 1.9960938, 0.38989258, -0.18554688, -0.85302734, 1.9765625, -1.8740234, -0.5439453, -0.13586426, 0.8095703, 0.37963867, -2.7011719, 1.0185547, 1.8701172, -0.26708984, 1.6044922, 0.72802734, -1.5898438, 1.6357422, -1.4130859, -2.0800781, -0.16394043, -0.86816406, 0.24365234, -0.8618164, -1.3867188, -1.5419922, 1.2236328, 1.2060547, 0.63964844, -0.9633789, -0.20703125, -2.3515625, -1.3818359, 0.005935669, -1.8339844, -2.6367188, 1.7539062, 0.39453125, 0.19921875, 0.23120117, 4.4335938, -0.6899414, -1.7617188, 1.9697266, -0.86572266, 0.3713379, -2.2421875, -4.28125, 1.9365234, -0.14929199, -1.5839844, 1.9208984, 1.171875, -0.42236328, 2.7597656, 1.8457031, -2.4472656, -2.0859375, -0.5449219, -1.4550781, -0.7573242, -3.4472656, 1.7617188, 0.4338379, -1.2519531, -2.4726562, -0.6850586, -1.0703125, 0.9140625, 1.3105469, -3.0273438, 0.27539062, 1.2392578, 0.9941406, -0.0960083, -1.5869141, 0.6870117, 0.47583008, -0.29101562, -2.3945312, 2.0644531, -0.14929199, 0.5175781, 0.6796875, 2.1425781, 0.5878906, 0.07147217, -0.61328125, 0.99316406, 3.2695312, 0.30615234, -2.0273438, -3.1933594, -0.44213867, -1.1591797, -0.85595703, 0.3334961, -1.2216797, -1.3046875, -0.25732422, -0.84277344, 1.8085938, 2.390625, 0.65185547, -0.8769531, -0.87158203, 0.5205078, -0.6245117, -1.1611328, 0.13415527, 0.0345459, 0.53466797, 0.5048828, -4.2695312, 2.0097656, -1.4033203, -0.52734375, -2.9433594, 1.7832031, -0.99560547, 2.7714844, 2.7714844, -1.7851562, -0.5053711, -0.4975586, -0.18225098, -0.94091797, 1.7099609, -0.30297852, -0.7626953, 1.2880859, 0.41967773, -0.9926758, -0.11553955, 0.2076416, -1.4316406, -1.9912109, -0.42919922, -0.07598877, -3.1367188, -2.3808594, 1.4355469, -0.51708984, 2.5, -1.8095703, 0.9140625, 0.8696289, 0.59375, 1.03125, 0.04776001, 1.0449219, 0.31396484, -0.46264648, 0.59277344, 0.83496094, -1.1699219, -0.24609375, -1.9003906, -0.9194336, -0.54833984, 0.110961914, 1.3701172, 0.15820312, -0.8154297, 0.29418945, 3.1015625, 2.4628906, -1.8798828, 2.7226562, 2.0039062, -3.703125, 0.95751953, 1.1503906, -4.7734375, -1.4658203, -0.20007324, 1.0175781, 1.1787109, 1.2851562, -3.4160156, -1.921875, 3.6308594, 0.20385742, 1.0146484, -0.7680664, 0.111206055, 1.3642578, -2.7910156, -0.4128418, -2.5683594, -0.2980957, -0.40893555, -1.5566406, 0.66015625, -0.57177734, 2.4433594, 1.7539062, -1.375, -1.9208984, 0.8496094, -0.7548828, -1.0244141, -0.17956543, -1.5068359, -1.7792969, -0.4345703, 2.203125, 0.5859375, 2.2285156, 0.47143555, 2.3496094, -1.6259766, 3.1269531, -0.3786621, 2.9511719, -0.296875, -0.1875, 3.6191406, -2.0371094, 0.6621094, -2.1171875, -0.98339844, 1.1513672, 2.265625, -0.39794922, -0.7919922, -1.015625, 0.8017578, -0.87158203, -1.5615234, -2.4082031, 0.08496094, 1.9462891, 1.0947266, 0.9423828, 1.2695312, 0.9628906, -1.7890625, 1.6318359, -2.15625, -0.45263672, -0.8076172, 0.22753906, 0.70996094, -0.32861328, 1.0839844, -0.34350586, 0.64160156, 1.2255859, 0.90185547, -2.5273438, -1.2119141, 1.8310547, -2.2558594, 0.17236328, -1.2597656, -0.3779297, 0.5571289, 0.85839844, 1.0136719, -1.3330078, 0.42285156, -0.69677734, -0.7241211, 1.578125, -1.1230469, 0.84033203, 1.7363281, -2.0078125, 0.78808594, 1.0634766, 0.48632812, 1.3847656, 0.7558594, 1.3144531, 1.0205078, -0.11627197, -1.5595703, -0.74902344, 0.6459961, 2.0390625, -0.4724121, -1.4238281, 0.5053711, -2.828125, -1.078125, 0.1348877, -2.7988281, 1.4003906, -0.7470703, 0.9658203, 0.3022461, 0.5727539, -0.03503418, -0.06359863, 0.53564453, -0.54003906, 0.796875, 0.18078613, 3.8535156, 1.3681641, -0.94970703, -1.9892578, -0.5776367, -1.1533203, 2.0957031, 1.4667969, -0.29418945, 0.9169922, -2.4160156, 0.89990234, -0.76708984, 2, -2.1503906, -0.4260254, 0.6459961, 1.0205078, 4.2734375, 1.2744141, -0.3161621, -0.20373535, 0.0045814514, -2.8476562, 2.1601562, 0.16394043, -5.2539062, -0.42797852, -3.0585938, -0.85546875, -1.2011719, -0.31347656, 0.18054199, -2.46875, -1.5791016, -0.609375, -2.3164062, -2.7226562, 0.83935547, -0.15393066, -2.2285156, 0.4921875, 1.6142578, -2.0410156, 3.6113281, 0.9501953, 0.8203125, -1.265625, -0.36621094, -1.4052734, -2.3300781, -0.38012695, -3.1679688, -0.84716797, -0.55078125, 0.95947266, 0.4802246, -0.29956055, -0.65478516, 2.90625, 2.5, 1.5292969, 0.9423828, 1.2910156, 2.9570312, 1.4960938, 3.7929688, 0.15319824, -1.3740234, -0.6972656, 1.9794922, 0.515625, 0.9980469, -1.9951172, 0.90234375, -3.109375, -0.3334961, -0.43237305, -0.72753906, 1.2460938, -1.2402344, 1.0957031, -0.59033203, 0.9370117, -0.28710938, 0.43725586, -1.75, 0.6274414, -0.43017578, 0.34033203, 3.2734375, 0.1038208, 1.0419922, -2.1445312, 1.953125, 3.9238281, -3.28125, -1.0439453, 0.83447266, -0.18457031, -1.3095703, 0.1875, 1.2705078, 1.3740234, 1.7402344, -0.86328125, 1.5039062, 1.1210938, -0.3737793, -0.45776367, 0.89990234, 0.069885254, 2.0917969, 0.61279297, -1.1953125, 1.1435547, -1.2587891, -2.484375, -1.5703125, 2.7207031, 0.1776123, 3.3339844, 0.6767578, -2.5703125, 3.3867188, 0.057800293, 1.3164062, -2.1132812, 0.88916016, 0.8496094, -0.41088867, -1.3730469, 0.21569824, -0.04434204, 1.6611328, 1.1064453, -1.8935547, 0.8774414, 0.6772461, 2.0664062, 1.0048828, 2.4550781, -0.43579102, 2.0917969, 0.17175293, 2.0917969, -0.12322998, 0.18774414, -1.2548828, 1.5556641, 0.5883789, 1.2275391, 1.3691406, -1.7490234, 0.3251953, 2.3339844, 1.3486328, 1.5097656, -2.328125, -0.68847656, 0.32470703, 1.0703125, -0.52783203, -1.5107422, 2.4355469, 0.8466797, -2.6894531, 0.4560547, -0.17736816, -1.3896484, 2.078125, 0.9526367, -1.4267578, -2.015625, -1.6005859, -0.23181152, -0.1673584, -3.59375, -0.032409668, 0.60791016, -0.47729492, -0.33618164, -0.035614014, -0.51953125, -0.42407227, -0.6152344, 0.95458984, -0.21386719, -0.60546875, -0.01689148, -1.0566406, -1.6953125, 3.140625, 1.1308594, 0.080322266, -3.0195312, -0.34399414, -0.31298828, -1.0009766, -1.7832031, 0.15148926, 2.3671875, 1.7783203, 1.4550781, 0.40283203, -2.1660156, 0.061584473, -0.6113281, 1.5595703, 0.92041016, -2.40625, 0.78564453, -1.2861328, 3.2890625, -1.6591797, -1.5830078, 0.4765625, -1.5361328, 0.33374023, -0.61279297, 0.8857422, -0.2680664, 1.3837891, 0.6308594, 2.9863281, 2.0722656, 0.4621582, -1.40625, 0.9555664, 0.13793945, -2.5507812, -0.35131836, -0.44921875, 0.14172363, 1.2841797, 0.0048217773, 2.34375, 0.44506836, 0.20056152, -0.42578125, -0.78759766]}, "B096N8WRF6": {"id": "B096N8WRF6", "original": "Brand: Taslett\nName: Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case\nDescription: \nFeatures: Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up.\nTabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks.\nExtra Storage: Handy side pocket for your wand lighter or other BBQ accessories.\nPerfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25\u201d.\nStorage Case included.\n", "embedding": [0.5488281, 3.5859375, 2.9609375, -1.0214844, -0.66503906, -1.5166016, -0.43359375, -0.8466797, 1.2626953, 3.3730469, 0.6269531, 1.5800781, 0.8305664, -3.96875, 1.7978516, 0.328125, 0.8876953, 1.7148438, 2.9238281, 0.78808594, 2.1054688, 0.81640625, -0.46362305, 0.50683594, 0.62597656, -1.3730469, 2.6289062, -1.4873047, -1.5712891, -1.1240234, 0.91308594, -0.22680664, 0.12097168, 2.8046875, 0.3942871, -2.5039062, -0.9033203, -0.5527344, -2.4863281, -0.5571289, -1.9814453, -1.0332031, 2.4394531, 1.1738281, -1.3935547, 0.37426758, -2.09375, -0.081970215, -0.115478516, -0.9428711, 0.06890869, 2.0039062, 1.2285156, 0.87597656, -0.14025879, -0.82177734, 0.57666016, -2.3789062, -0.3540039, 1.0214844, 1.3125, -2.4042969, -1.1025391, 1.9287109, 0.6879883, -0.47973633, 0.22839355, -1.765625, 0.16625977, 1.03125, 1.9648438, 0.12512207, 2.8457031, -1.0117188, -0.70166016, -0.9238281, -2.1113281, 2.765625, 1.1142578, -0.69384766, 1.3496094, 3.6894531, -0.63427734, -0.703125, -0.69628906, -0.9003906, -0.17126465, -0.72216797, -0.46606445, 0.6191406, -1.6376953, 2.6992188, -2.4121094, -4.3085938, 0.51708984, -1.7353516, 2.9296875, 1.6269531, 2.53125, 0.5415039, 1.9941406, 0.77734375, -1.1210938, 0.75097656, -1.4619141, -1.3164062, -0.20385742, -0.57177734, 0.33544922, -0.9946289, -0.5942383, 0.2590332, 1.2646484, -1.1191406, -0.1772461, -0.37451172, 0.109069824, -0.6196289, 2.9667969, 4.2421875, 3.6328125, -1.1806641, 0.31933594, -1.0820312, 1.2753906, 1.4287109, -0.87646484, 1.1806641, 1.4023438, -1.4814453, 1.0273438, 0.32080078, -0.18078613, -1.0185547, 0.083496094, -0.9921875, -1.0185547, -1.5185547, -2.6347656, -0.28076172, -2.4082031, 0.22583008, 1.4189453, 0.21594238, -1.46875, -0.71484375, -1.4589844, 0.94921875, -0.09106445, -1.5263672, -0.23156738, -1.3632812, 0.16064453, -1.3476562, 1.8144531, -0.011383057, 1.6435547, -2.5683594, 2.3164062, 1.65625, 5.3398438, -2.2246094, -0.8876953, 2.3925781, 1.28125, -4.8867188, 1.6855469, 1.5244141, -1.4501953, 1.1005859, 1.0263672, -1.9521484, -1.2412109, 0.8701172, -0.21362305, -2.09375, 2.3710938, 2.3261719, 0.91064453, -0.42041016, -2.8046875, -1.7314453, -2.5332031, -0.46240234, -0.064331055, 0.84814453, -1.8212891, -2.3046875, -0.8510742, -1.4863281, -0.85595703, 2.4492188, -0.88134766, -1.8447266, -0.48657227, -2.859375, -3.8574219, -1.7441406, 0.640625, 0.6826172, -0.20532227, 0.091796875, -1.5078125, 1.5498047, -2.8125, -0.67822266, 2.3652344, -0.0993042, -0.7060547, 2.3457031, 0.5776367, 0.2763672, 2.2382812, -0.7949219, -0.58203125, -0.96777344, 3.6132812, 0.28125, 2.5585938, 0.875, 0.14794922, -1.1523438, -0.18933105, 4.5390625, 0.72509766, 1.7548828, 1.1835938, 0.97314453, -2.0253906, -0.28271484, 1.4042969, 0.3083496, 0.40478516, 0.003616333, -0.06100464, 2.8945312, -0.56933594, 0.10424805, -0.20788574, 1.9003906, 0.62597656, -0.6279297, -0.53515625, -0.47265625, 0.29541016, 0.69433594, -0.2697754, 1.9111328, 2.8867188, -0.73535156, 1.4863281, -1.0214844, 1.8007812, -1.0888672, -0.61572266, 1.2285156, 0.92333984, 1.8896484, -0.10144043, -2.9960938, 0.087890625, 0.86328125, -1.4833984, 1.4658203, 0.004295349, 0.9033203, 1.4003906, -0.6699219, -1.6425781, 1.3505859, -0.91308594, 1.5771484, -0.44702148, -0.5883789, 1.9697266, 0.11260986, -1.3310547, 2.6601562, -0.7392578, 2.1601562, 0.72509766, -0.59277344, 1.5117188, -2.4882812, -0.47827148, 0.0049057007, 3.3164062, 2.0976562, -1.3408203, -0.30444336, 3.1308594, 0.43896484, -0.28295898, 1.8671875, 1.6806641, -0.7949219, 1.0556641, -0.6699219, -1.2060547, -0.17956543, -0.5678711, -0.9970703, 0.06677246, 1.5908203, 0.5541992, -0.77685547, 0.2006836, -0.6381836, -1.0546875, 0.37719727, 0.36621094, -1.0126953, -0.14099121, 0.57910156, -2.6523438, -1.8339844, 2.6035156, -1.8193359, -1.0830078, 2.4375, 0.33398438, 1.8984375, -1.9414062, -1.1074219, 0.035095215, -0.6010742, -0.9345703, 1.0986328, -0.27392578, 1.3388672, 0.94628906, -2.9335938, 2.4199219, -1.8398438, -1.0332031, -0.3227539, -3.3457031, -2.078125, 0.7324219, -1.0097656, 0.8696289, -0.65722656, -2.5742188, 1.4882812, 0.7270508, -0.58496094, -0.43164062, 2.2949219, -2.3046875, -2.6835938, 1.5273438, 1.1337891, -0.21899414, -2.7167969, 0.10430908, 0.828125, -1.0478516, -0.057617188, -0.5131836, 0.06161499, -0.51416016, 0.75927734, 1.4775391, -1.1269531, -1.2607422, -0.6821289, 1.0117188, -5.1484375, -0.018325806, -1.9365234, 2.4179688, -1.5537109, -1.2167969, -0.19714355, -0.80322266, -0.15759277, -0.88671875, 4.3242188, 0.67333984, 2.4257812, -1.5058594, -0.4465332, -1.0117188, -2.3964844, -1.8544922, -1.0244141, 0.10296631, -1.8037109, -0.85058594, -4.4375, 0.7216797, -2.7421875, -0.94384766, 1.1171875, -0.17004395, -1.0820312, -0.82128906, -1.1679688, -1.421875, -0.48583984, 0.27172852, 0.22155762, -2.0371094, -1.0908203, -0.23815918, -0.5419922, 0.51416016, -0.6665039, 1.6787109, -0.24719238, 2.0839844, 1.0576172, -0.55322266, 1.7148438, 0.6171875, -1.8769531, 0.17895508, 2.5273438, 1.0839844, 0.87402344, -0.86376953, -2.9707031, -1.53125, 0.4975586, 1.8603516, 3.1210938, 0.13964844, 0.8569336, -0.5966797, 0.14819336, -0.69873047, 0.7788086, -0.7089844, 0.5395508, 1.9521484, -2.7441406, 0.16577148, 1.8056641, 2.8398438, -2.5195312, -1.7978516, 0.22790527, -0.6923828, 2.1660156, 0.64697266, -0.092285156, -0.5161133, -0.09313965, 1.5, -0.09539795, 1.859375, -0.7416992, 1.1201172, 1.7265625, 0.5341797, 0.7866211, 1.9023438, 0.48095703, -1.6660156, 2.1289062, 0.86083984, -1.7265625, 1.0732422, -0.20727539, -0.18933105, -1.2841797, 2.734375, -0.31811523, -0.6220703, -0.16662598, -0.28149414, -0.5800781, -1.6201172, 1.6894531, 1.1826172, 0.98828125, 0.07470703, -1.3232422, -1.9980469, 0.70458984, -3.3867188, 2.8789062, -0.11627197, -0.47070312, 1.9667969, -2.9121094, -0.5136719, -0.9975586, 3.0527344, -0.875, -1.0478516, 0.45141602, 1.5712891, -3.1582031, -2.8496094, 0.01852417, -1.4697266, 0.7216797, 3.3535156, -0.2849121, -1.9306641, 0.116882324, -1.7958984, 0.21594238, 2.7871094, -1.6152344, -0.63378906, 1.2333984, 0.24035645, -1.6035156, 0.31640625, -0.02986145, 0.74560547, -3.265625, -0.9067383, -1.2724609, 1.1044922, 0.9057617, 0.2553711, 0.36621094, 0.26733398, -0.32226562, 3.3378906, -0.6816406, 2.2382812, -0.29638672, -0.3046875, 0.7475586, -1.4228516, -0.031433105, -1.4960938, -3.3203125, -0.56933594, 0.032226562, -0.8725586, 4.265625, -1.6865234, 0.23461914, 0.52490234, 0.9116211, -2.8613281, -2.2851562, -1.2285156, 0.9008789, -2.5058594, -0.6743164, 0.61376953, 1.8603516, -1.9082031, -1.3876953, 1.3779297, 0.94873047, 0.19360352, -2.0878906, 0.19458008, 1.1738281, -2.1464844, -0.8457031, -1.9619141, -0.62402344, -1.0361328, 0.77197266, -1.1787109, -1.0595703, 3.5859375, -1.0732422, -1.5947266, 0.77001953, 2.0351562, 0.89160156, -1.1572266, -0.3100586, -0.0007324219, 2.2441406, -0.81396484, -4.0859375, -0.94628906, -2.0390625, 0.9550781, -0.27124023, -1.4941406, 0.6298828, -1.3505859, -0.4099121, 1.9238281, 1.8847656, 1.4443359, 0.9423828, -2.6464844, 2.1269531, 0.60498047, -1.0585938, -2.4472656, -0.42797852, 0.3161621, -0.11975098, -0.9194336, -1.859375, 0.8203125, -1.0966797, -0.5449219, -1.0654297, 2.0664062, 3.3769531, 2.5449219, 1.9394531, -2.1210938, -0.6425781, 1.3427734, 1.9101562, 2.0703125, 0.34887695, 2.2285156, 1.1455078, 3.8984375, 0.5703125, -1.7626953, -0.49926758, -0.033813477, -1.6933594, -0.113220215, 1.1376953, 0.2244873, -1.8974609, -2.1621094, -0.8100586, -2.03125, 3.5703125, -1.1445312, 1.3808594, -0.22583008, -0.5292969, -0.68652344, 2.25, -0.4255371, 1.1601562, 1.1923828, -0.6586914, -0.99365234, 0.9428711, 0.4597168, 0.9794922, 2.1074219, -1.9267578, 0.7006836, 0.9272461, 0.31933594, 0.16430664, -0.8339844, 1.1357422, 2.4238281, -0.27001953, 2.1191406, 1.3779297, -0.7661133, 0.29516602, 0.3630371, -0.39819336, -0.29223633, -1.1162109, 0.98876953, 2.796875, -2.2050781, -2.3710938, -0.19665527, 0.025299072, -1.7900391, 0.17041016, 0.17419434, -1.4746094, 0.33520508, -2.3398438, -2.9101562, 0.5449219, -1.4960938, -0.6220703, -2.3203125, 1.9130859, 1.5878906, 0.032928467, 2.9648438, -0.6533203, -1.8574219, 1.0400391, 1.0019531, 0.2331543, -0.61083984, -0.050323486, -2.9765625, 1.4628906, -1.3642578, -1.2460938, -0.66796875, 0.44213867, 2.1308594, -2.59375, 0.13671875, -0.6040039, 1.4443359, -3.3710938, 0.030212402, 2.7050781, -0.7636719, 0.25097656, -0.8696289, -1.4003906, -1.9023438, 1.1103516, 1.7783203, 0.3930664, -0.72265625, 0.38330078, -4.2265625, -4.3320312, -1.6171875, 0.43286133, -0.17053223, 0.3955078, -1.2021484, -2.3046875, -0.022155762, -1.2861328, 2.0410156, -2.1953125, 1.0712891, 0.5048828, -1.5126953, -0.53808594, -0.31762695, 1.4101562, 2.2792969, 0.5878906, 0.24304199, -1.6064453, -1.8017578, -2.0214844, -0.16210938, -0.9946289, 0.18188477, -0.58251953, 0.039215088, 1.2519531, 0.92626953, 0.5283203, -1.5380859, 0.70996094, -1.0625, -0.70166016, 2.3125, -2.0683594, -0.059570312, 0.6196289, -1.9365234, 1.6835938, 0.43701172, 0.8466797, -2.1679688, 1.1777344, -1.5390625, 1.3515625, 0.8925781, 0.8076172, 1.9892578, 1.5351562, 1.1230469, 3.1816406, 0.20251465, -1.7138672, -2.1445312, -1.7705078, -2.0214844, -1.8730469, -0.7792969, -0.87109375, -0.31103516, 0.84716797, 0.30639648, 0.44970703, 1.890625, 0.28271484, -2.0957031, 2.6132812, -1.7275391, 1.6982422, 1.0205078, -0.82666016, -2.8671875, -3.6035156, 3.8515625, 0.9116211, -1.1894531, 1.4101562, 0.625, -1.1591797, 1.6308594, -0.7480469, 1.3271484, 1.8115234, 2.3085938, -1.4599609, 0.14196777, 1.2099609, -1.0322266, -0.0736084, 0.5761719, 0.828125, 0.5698242, 1.3544922, 0.21643066, -3.0117188, -1.5332031, 1.109375, 0.97216797, -0.17565918, -0.30200195, 0.36816406, -3.3730469, 0.2578125, -0.5307617, -1.1357422, -2.984375, 2.5175781, 1.5917969, 0.49121094, 0.7504883, 2.1875, -1.0292969, 0.5366211, 1.3222656, -1.4248047, -0.9399414, -0.30932617, -0.9707031, 0.50439453, 1.2617188, -1.7148438, 2.2949219, 1.6279297, 0.81152344, -1.9824219, 1.7978516, 0.48168945, 0.74316406, -0.02029419, 3.7148438, 3.296875, 1.0625, 1.9433594, -0.91308594, 1.5976562, 1.9599609, -0.53808594, 1.09375, 1.9082031, 2.2070312, 1.1308594, -0.51660156, 0.17285156, 0.3503418, -1.1123047, -1.9667969, 1.7978516, -0.6220703, -1.6630859, 1.9130859, -0.71240234, -0.72216797, 1.1123047, -0.765625, -1.9023438, -2.0214844, -0.110961914, 0.1829834, 2.0136719, -0.74609375, 1.0996094, 1.3671875, -1.4599609, 0.9477539, -0.6274414, 1.1992188, -1.8339844, -1.7958984, -1.5410156, 1.9394531, 1.859375, 1.7138672, -1.2529297, -0.5839844, 1.3349609, 1.2558594, 1.7294922, 0.15441895, 2.4296875, -0.16699219, 0.14257812, 1.9853516, -1.3476562, -0.9921875, 1.2470703, 1.5224609, -3.734375, -0.109680176, -0.2775879, 1.4296875, -1.5214844, -2.8964844, -1.3623047, -1.1855469, 0.0597229, -3.6328125, -1.7011719, 0.6123047, -3.2304688, -0.2697754, 1.3457031, -1.3720703, 3.5722656, 0.070373535, 0.9707031, 2.5742188, 1.2421875, 1.3916016, 0.38061523, -0.92089844, -0.921875, 0.11578369, -0.027114868, 1.1123047, 1.7578125, -2.6425781, -1.1582031, 3.0097656, 1.0732422, 0.5175781, 0.7895508, -0.27368164, 2.0742188, 0.52197266, -1.0908203, 0.26342773, -0.59472656, 1.0908203, -0.3701172, 1.5019531, 0.7084961, -1.5351562, -0.97314453, 2.2382812, -3.96875, 0.42456055, 0.24560547, -0.8623047, 1.3808594, 0.9707031, 0.23242188, 1.2753906, -0.2631836, 2.0878906, -2.4121094, -0.31396484, -2.6210938, 0.6386719, -0.3840332, -1.7880859, -0.7939453, 1.1933594, -2.0371094, 0.53125, 2.2382812, 0.71728516, 0.6386719, -0.025222778, -1.28125, 0.13391113, 0.5986328, -0.81884766, 0.44580078, -0.63378906, -1.2734375, -0.15649414, 0.5966797, 0.08050537, 1.3857422, 3.5664062, 1.2919922, 1.1806641, 0.33520508, -2.0371094, 1.7197266, -1.0263672, 1.6396484, 0.32104492, -0.43237305, 0.7338867, -0.025909424, 3.0878906, -1.0703125, -1.6601562, -0.74902344, -0.7675781, 0.9160156, -0.8276367, 1.4189453, 1.3632812, -0.12097168, 0.7944336, 3.4082031, 2.6367188, -2.1503906, 1.6933594, 3.4492188, -2.0820312, -3.1230469, -0.97998047, -1.2197266, 0.0038452148, 0.98828125, 1.2285156, 2.0859375, 0.5546875, 0.17810059, -2.3359375, 0.25732422]}, "B00OMYK83O": {"id": "B00OMYK83O", "original": "Brand: Camco\nName: Camco 40572 Black Heavy-Duty Double Propane Tank Cover\nDescription: \nFeatures: Removable top panel provides easy access to gas valves\nHeavy-duty polypropylene\nFor two 20 pounds propane tanks\nEasy to install and highly durable\nProtect your propane bottles from flying debris\n", "embedding": [0.1817627, 0.86572266, 2.859375, -1.1171875, -0.97216797, -2.7070312, 0.7841797, -0.4489746, 1.8359375, 2.3203125, 0.46118164, 0.36010742, 0.9794922, -2.9433594, 1.609375, -0.83447266, 0.36132812, 1.6416016, 2.8554688, 0.7739258, 2.4023438, 0.04626465, -0.48046875, -0.609375, 0.59716797, -0.19641113, 2.9121094, -1.6806641, -1.7939453, 0.57958984, 0.7944336, 0.37548828, -0.061431885, 2.3613281, 0.9003906, -0.86572266, -0.009864807, 0.1772461, -3.8789062, 0.21264648, -3.7675781, -0.46069336, 3.0664062, 0.58691406, -0.26416016, -0.27807617, -0.30615234, -1.9765625, 0.5722656, -1.9345703, -0.29785156, 1.8144531, 1.5527344, 1.3535156, -1.4716797, 0.6044922, 0.14318848, -0.7841797, 0.2944336, 1.0107422, -1.3652344, 0.17651367, -2.7460938, 2.4082031, -1.0976562, 1.6904297, -1.6845703, -1.1396484, 0.53125, 2.0800781, 0.8911133, 2.1914062, 0.7080078, -1.4570312, 1, -0.42211914, -1.3320312, 1.2177734, -0.08453369, -1.4160156, -0.34765625, 2.5136719, -1.15625, -3.2324219, -1.6601562, -1.5712891, 0.24182129, 1.015625, 0.1295166, 0.3010254, -1.1738281, 1.1533203, -3.0195312, -3.2558594, -1.2783203, 0.99902344, 1.3222656, 1.3847656, 2.8378906, 2.5097656, -0.5708008, -0.28930664, -1.1630859, 1.5527344, -2.7304688, -2.0546875, 1.6738281, -1.6132812, -1.8447266, 1.1328125, -0.12683105, -0.5488281, 0.46411133, -1.2275391, 0.025543213, 1.3691406, -0.13171387, 1.1679688, 1.8105469, 0.52001953, 3.8242188, -1.6542969, 0.9140625, -1.2060547, 1.6708984, 1.9023438, -0.35253906, 1.2890625, 3.4472656, -0.1628418, 1.8476562, -0.3864746, 1.0283203, -0.017532349, 0.7626953, -0.48364258, -1.5595703, -1.1542969, -1.921875, 1.2763672, -3.3945312, -0.23205566, 0.55078125, 0.32763672, -3.5136719, -1.1279297, -1.765625, 2.4707031, -1.3134766, -3.1679688, -0.019760132, -3.5, 0.46020508, -0.4399414, 1.5683594, 0.7363281, -0.4519043, -3.5839844, 1.296875, 2.0546875, 3.5097656, -0.8105469, 0.6201172, 1.3417969, 0.6875, -1.8144531, -0.022705078, -0.83203125, -1.8476562, 2.0859375, -0.32006836, -1.9306641, 0.36767578, -0.07269287, -1.4960938, -0.5073242, 2.0898438, 1.4423828, 1.171875, -0.3310547, -3.3769531, -0.32910156, -0.35229492, -0.42333984, 0.5996094, -0.8833008, -1.1572266, -1.0195312, 0.07086182, 0.32299805, -1.9902344, 1.0722656, -1.2207031, -0.61376953, -0.6826172, -3.4902344, -2.2011719, -1.4384766, 0.5830078, 1.6855469, -1.1054688, -0.59033203, -0.73535156, 0.9238281, -2.7617188, -1.2919922, 2.40625, 1.7753906, 2.0566406, 0.37426758, 0.9628906, -0.78271484, 2.28125, -1.3837891, -2.0625, -1.234375, -0.07763672, 0.82666016, 1.6035156, 0.97314453, 1.2119141, 0.11804199, 1.1796875, 0.92822266, 0.49780273, 3.0898438, 1.1630859, 1.2548828, -1.4980469, -1.3818359, -0.022735596, 1.7412109, -2.9023438, -0.06628418, -0.7373047, 1.7021484, -0.09967041, -1.2773438, 0.35375977, -1.0488281, 1.1767578, 0.05859375, -0.97558594, -0.9580078, 1.8027344, 2.6347656, -1.046875, 1.9785156, 1.3398438, -0.5854492, 0.7685547, -0.06286621, 0.115478516, -0.5205078, -1.0097656, 2.65625, 1.3535156, -0.1126709, 0.07885742, -3.4433594, 0.46484375, 0.70654297, -1.0869141, 0.6665039, -0.24743652, 1.4335938, 0.3474121, -0.8330078, -2.09375, 0.73583984, 0.8666992, 0.80566406, 0.42138672, -0.75146484, 2.7167969, 1.6699219, -0.65966797, 1.7851562, 0.60498047, 2.5175781, 0.7734375, -0.19018555, 0.7578125, -2.7558594, 1.5683594, -0.078125, 2.90625, -0.012802124, -2.8496094, 0.85791016, 1.9833984, -0.43408203, -0.7128906, 2.0058594, 3.2910156, 1.1425781, 2.9941406, 0.69433594, -1.203125, 0.93603516, -1.2636719, 0.46533203, -0.6767578, 1.0283203, -0.9140625, -1.0019531, -0.62060547, -0.35473633, 1.5244141, 0.9399414, 1.5068359, -0.36206055, -1.2832031, -0.2578125, -0.7734375, -1.2109375, 4.1601562, -1.9970703, -0.019195557, 1.6816406, 0.84228516, 1.8798828, 0.2409668, -2.0390625, 1.9492188, -0.03817749, -2.21875, 1.296875, 1.0117188, -0.048828125, 0.46801758, -1.6699219, 1.3466797, -0.55908203, 0.6923828, 0.7060547, -2.1679688, -1.03125, 1.6308594, -1.0839844, 1.0566406, -1.6308594, -1.6777344, 2.6601562, 1.6054688, -0.4975586, -0.20141602, 2.4316406, -0.57421875, -2.484375, -0.09539795, 2.0292969, -1.1484375, -4.0820312, 0.6904297, -0.1373291, -1.4609375, 2.3769531, -1.2109375, -0.041748047, 0.26489258, 1.6455078, 1.921875, -1.0712891, -1.6035156, 0.32373047, 0.78759766, -3.6796875, 1.9277344, -2.2382812, 0.4663086, -2.1464844, 0.90625, -1.4423828, -2.0195312, 1.6416016, -1.5869141, 3.53125, 1.3339844, 1.3056641, -0.04248047, -2.6640625, -0.27734375, -2.0175781, -2.2695312, 0.116882324, 1.25, -1.5048828, -0.06970215, -4.375, -0.6660156, -1.8105469, 0.5546875, -0.6201172, -2.1074219, -1.4257812, -0.6796875, -0.87939453, 0.08178711, -0.077941895, 2.0175781, -0.45996094, -1.828125, -0.5361328, 0.33154297, -0.9458008, -1.4150391, -1.9902344, 0.8623047, -0.97021484, 0.16748047, 0.70166016, -0.9013672, 2.6113281, -1.5605469, -3.4101562, 0.74316406, 3.3496094, 1.5644531, 1.5351562, -1.4150391, -1.7958984, -2.1152344, 0.05569458, 3.1835938, 2.8496094, 1.5087891, 2.4375, 0.75390625, 1.5400391, -1.1777344, 0.8330078, -0.057800293, 0.8129883, 2.9824219, -1.1621094, -0.14416504, 1.7773438, 3.1289062, -3.2011719, -1.15625, 0.8510742, -1.3525391, 2.8632812, 2.171875, -2.7773438, -0.31640625, 1.1298828, 1.9970703, -0.52441406, 1.7021484, 0.65283203, 0.8222656, 2.3535156, -0.06439209, 0.3942871, 1.3007812, 0.31469727, -1.4013672, 0.30688477, 1.2783203, -1.1835938, -0.13891602, 1.1152344, -1.4111328, -0.12487793, 2.4628906, -0.76171875, 2.6523438, 2.3925781, -1.3115234, -1.2109375, -2.7910156, 0.9746094, -0.06298828, 0.87646484, -0.1887207, -0.3383789, -1.6103516, 0.19238281, -1.6992188, 2.5195312, -0.44970703, -1.4677734, 0.63916016, -2.7910156, -1.046875, -2.1191406, 3.2207031, -0.79589844, 0.35107422, -0.56103516, 2.09375, -0.23144531, -2.6855469, -0.81933594, -0.27856445, -2.875, 3.3730469, 3.8515625, -2.4804688, -0.47680664, -1.7382812, 2.0839844, 1.3212891, -1.2890625, -0.9326172, -2.2578125, 1.7568359, -2.296875, -0.8701172, 0.4975586, 1.5009766, -2.8808594, 0.047912598, -1.0224609, 1.5166016, 1.203125, -0.9838867, -0.31469727, 0.7861328, -2.9824219, 1.0507812, -0.011680603, 1.8984375, 0.050933838, 1.8310547, 0.45239258, -0.61279297, 0.8076172, 0.37963867, -2.5117188, -0.5253906, 1.2617188, -0.18164062, 3.8417969, 0.090148926, 2.203125, 1.5234375, -0.34326172, -3.8183594, -1.3525391, -2.0292969, 0.51171875, -2.3828125, -1.9033203, 0.62646484, 0.8286133, -2.2304688, -1.6845703, -0.19177246, -2.4570312, -0.90966797, -0.6640625, 0.39941406, 1.1347656, 0.1484375, 0.37060547, 0.7446289, 0.3022461, 0.37670898, -0.7211914, -1.3388672, -2.1855469, 1.8632812, 0.6484375, 0.24414062, 0.2758789, 2.1542969, 2.34375, -1.1035156, -0.2836914, -1.4707031, 0.51416016, -1.1308594, -3.2304688, -0.17541504, -1.015625, 1.8701172, -1.0439453, 0.0836792, 1.2939453, 1.9560547, 0.23205566, 0.33691406, 1.0917969, 1.6376953, -2.8613281, -1.6601562, 2.46875, -0.67333984, 0.13342285, 0.56689453, -0.46826172, 1.3671875, -0.6826172, -1.4619141, -2.7753906, 0.6611328, 1.5996094, 1.75, -4.8671875, 1.2783203, 2.1992188, 3.1308594, 1.40625, -0.7626953, -1.9355469, 1.2617188, 2.0429688, 1.5644531, -1.8408203, 0.3881836, -0.22302246, -0.6713867, 0.32592773, -1.9560547, -1.2216797, -0.041900635, -1.9794922, 0.3852539, -0.57958984, 0.6791992, -1.6972656, 0.21057129, 0.043304443, -0.6899414, 3.3105469, -2.2929688, 0.9511719, -0.68115234, -1.5996094, -1.1972656, 2.46875, 0.7504883, -0.01058197, 1.953125, -2.0859375, -1.3271484, 0.37573242, 1.6601562, 0.81689453, 0.9638672, -0.3618164, -1.9912109, 0.8574219, 1.0029297, -0.105651855, -1.4052734, 2.1582031, 3.1132812, 1.0332031, 0.31323242, 2.5742188, 0.17602539, 1.8027344, 0.90283203, -0.9511719, -1.6025391, 0.50927734, 1.0654297, 2.8535156, -1.4150391, -4.21875, 1.4208984, 0.80126953, -0.0053100586, 1.75, 0.32226562, -0.7421875, -1.4726562, -3.6523438, -1.3867188, -0.6142578, 1.8261719, -0.31103516, -0.08850098, 1.1054688, -0.38916016, 0.08544922, 3.4179688, 0.7910156, -1.0537109, 0.1340332, 1.2021484, -1.2871094, -3.1289062, -2.0136719, -4.1523438, -0.22766113, 0.22631836, 1.3125, -1.1220703, 1.7177734, 2.7773438, -2.359375, -0.74658203, -0.90966797, -0.203125, -2.2871094, -0.7055664, 2.4042969, -0.29223633, -0.8330078, 0.25268555, 0.9316406, 0.8666992, 1.9980469, 1.7080078, -0.7597656, -0.7817383, 0.14111328, -3.0566406, -4.65625, -0.72802734, 1.4277344, -0.41333008, 0.13671875, -1.6748047, -2.0058594, 1.5302734, -2.1347656, 0.41333008, -2.4472656, 0.34423828, -1.4277344, -1.2617188, -0.38330078, -0.1685791, -0.6328125, 0.78515625, -1.1132812, -0.6660156, -1.5166016, -3.5332031, -3.4160156, 2.0214844, -1.1826172, -0.4501953, 0.26049805, -0.8798828, 1.5527344, 1.1640625, 0.9423828, -1.421875, 1.4697266, -1.7783203, 0.3334961, 1.8447266, 0.7211914, -1.4941406, 3.8554688, 0.4333496, 1.6132812, 2.3964844, 1.1660156, -2.7988281, 1.4248047, 0.8076172, 0.19213867, 0.25073242, 1.3535156, 1.5947266, 0.75683594, 2.8457031, 1.6298828, -1.0361328, -1.8447266, -1.3916016, -0.8979492, -1.2666016, -1.7294922, -0.73095703, -0.048339844, 2.0527344, 2.40625, 0.9663086, 0.67089844, -0.22766113, 1.1552734, -2.3300781, 0.4362793, -2.0976562, 0.32910156, 0.12634277, -1.4785156, -2.9785156, -2.1816406, 2.8574219, -0.24475098, 0.19262695, 0.45996094, 0.80126953, -1.0908203, 1.9560547, 0.43798828, 0.5732422, 0.09277344, 1.5771484, -1.2382812, 1.2607422, 3.4277344, -0.3696289, -0.65771484, -0.59472656, -0.453125, -0.8515625, -0.2208252, 3.1445312, -3.4335938, -0.35180664, 0.3178711, -0.07110596, -0.29833984, -0.5493164, 0.8642578, -2.03125, -0.4111328, -1.7041016, -1.2324219, -3.8886719, 2.4570312, -0.3935547, -0.3552246, 0.40039062, 0.69189453, -2.1191406, -0.040161133, 2.5820312, -0.1394043, -0.6513672, -0.97558594, -0.96191406, -0.44604492, 2.1796875, -3.8105469, 0.6035156, -2.0976562, -0.30395508, -0.32226562, 0.33813477, -0.18981934, 0.63134766, 3.0546875, 1.890625, 3.8183594, 0.19165039, 2.9980469, 0.90185547, 0.8666992, 2.53125, -1.0527344, -0.4099121, 0.2824707, 1.0117188, 2.8007812, -1.5341797, 0.19885254, 0.8198242, -0.71875, -1.3964844, 0.074157715, 1.0263672, -3.0996094, -1.4619141, 0.09051514, -0.7236328, 1.8818359, 1.7705078, -1.6416016, -2.4589844, -0.054260254, -1.7890625, 2.1367188, -0.82373047, -0.014595032, 0.59228516, 0.60253906, 2.015625, -0.2590332, 0.050109863, -2.84375, -1.0205078, 0.14807129, 0.64160156, 0.04006958, 1.0527344, -0.021972656, -0.0031471252, -0.14001465, 1.2646484, -0.22229004, -1.5322266, 1.6396484, -1.6835938, 2.0957031, 2.2539062, -0.5600586, 0.93896484, 1.0048828, 0.09490967, -3.5097656, -0.5595703, 0.41357422, 0.61083984, 0.45776367, -3.0898438, 0.20349121, -0.4272461, 1.6005859, -2.9609375, 0.46362305, -0.28173828, -4.3789062, 1.1855469, 1.1035156, -0.8203125, 4.5195312, 1.109375, -0.33398438, 0.49609375, 0.23144531, 1.0888672, 0.5234375, 0.026550293, 0.3173828, 0.20507812, -0.6660156, 2.6054688, 2.15625, 0.35351562, 0.030090332, 2.6757812, 0.7988281, 0.48950195, 0.8955078, -1.6035156, 3.2949219, 0.96728516, -0.08532715, 0.19885254, -2.6367188, 1.6533203, -0.41064453, 0.8725586, 1.0683594, -0.118652344, -0.48364258, 2.0625, -3.3574219, -0.51220703, 0.37963867, -0.6958008, 1.0263672, -0.04031372, -1.0537109, -1.6601562, -0.14428711, 1.0595703, -2.3847656, 0.9038086, -1.2695312, 1.5400391, 0.3947754, -1.9628906, -1.4941406, 0.99560547, -1.0458984, -0.8300781, 0.71728516, -0.81152344, -0.77783203, -0.81689453, -0.16625977, 1.1884766, 0.2208252, 0.14807129, -0.44604492, -0.57177734, -0.25073242, 1.7519531, 1.3525391, 0.24938965, -0.034851074, 1.0224609, 1.296875, 0.63134766, 0.6430664, -2.2441406, -0.3618164, -4.2382812, 2.875, 1.4648438, -1.1455078, 0.75146484, 2.5410156, 3.0410156, -2.4882812, -1.359375, -0.03213501, -0.38598633, 1.2207031, -1.8847656, 0.30908203, 0.16809082, -1.2705078, 1.3789062, 3.7089844, 2.8554688, -0.703125, 0.22314453, 1.4941406, -3.1074219, -1.7871094, -1.359375, -0.8925781, -2.2089844, 0.4819336, 2.5195312, 3.9394531, 0.9746094, -1.1279297, -3.4804688, -0.45483398]}, "B07HCVSGFL": {"id": "B07HCVSGFL", "original": "Brand: GasOne\nName: GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC\nDescription: \nFeatures: \u2713 rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather\n\u2713 propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\n\u2713 Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\n\u2713 individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\n\u2713 high quality Regulator - the double burner\u2019s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "embedding": [-1.4404297, 1.4082031, 2.6875, -0.18664551, 0.19921875, 2.1523438, 0.7949219, -1.9541016, -0.28833008, 1.9365234, 0.6743164, 0.3178711, -0.75, -2.9511719, 1.3408203, 0.6381836, 0.65527344, 0.45214844, 1.5908203, 1.5878906, 2.515625, -0.27807617, 2.2910156, -0.42456055, -1.390625, 1.1025391, 4, -3.6875, -2.8066406, -2.0664062, 1.8554688, 0.5722656, -0.38354492, 2.3183594, -4.1835938, -0.6767578, -0.640625, 0.7832031, -3.1269531, -0.29711914, 0.0006866455, -0.8208008, 2.6152344, 0.77734375, -1.046875, 0.36914062, -0.15270996, -1.5019531, -1.1953125, 0.2524414, 0.6777344, 1.828125, -0.6225586, 0.9560547, -0.81933594, 2.7109375, 0.38427734, -2.4667969, 0.78027344, 1.0058594, 2, 0.57666016, -1.5791016, 1.3466797, -2.8046875, -0.36547852, -0.37304688, 0.22851562, -1.9853516, 0.58203125, 2.0625, 0.078125, -1.1445312, 0.4963379, 1.2441406, -1.0449219, -3.8261719, 3.2050781, 2.0351562, -1.4521484, -0.8666992, 3.0507812, 1.0859375, -0.34545898, -0.60791016, 0.19152832, -0.9609375, -0.04458618, 2.1425781, 1.2216797, -0.74316406, 2.7480469, -2.4980469, -3.9257812, 1.4951172, -1.1035156, 1.7783203, 0.29003906, 2.2285156, 0.8803711, 0.2052002, 0.23156738, -2.4511719, 1.4863281, -1.4580078, -1.4306641, 1.9892578, 0.15893555, -1.6923828, 0.1003418, -2.4628906, -0.7998047, 1.0976562, -0.6821289, 1.4951172, 0.55566406, -1.3037109, 2.4863281, 2.9003906, 1.6445312, 2.8925781, -1.1103516, 0.78466797, -1.234375, 1.2304688, 1.8203125, -0.90283203, -0.07867432, 3.6875, -2.0703125, -0.3232422, -2.1582031, 1.5117188, 0.5966797, -0.54248047, 0.044525146, -2.6503906, -2.7832031, -3.2949219, -0.27661133, -2.0859375, 1.2832031, 0.87890625, -1.0615234, -3.6113281, -0.17053223, -1.1894531, 2.2207031, -0.6538086, -2.8242188, 0.81347656, -2.671875, 0.5444336, -2.3554688, 1.3447266, -0.25268555, 0.0077590942, -2.8183594, 3.6289062, 0.8486328, 0.37304688, -2.3789062, -0.09753418, 1.4423828, -0.49267578, -1.7617188, 0.9213867, 1.0253906, -1.5117188, 1.7382812, -1.4189453, -1.4775391, 0.03753662, -0.69189453, -0.0793457, -1.0078125, -1.4072266, 2.7285156, -0.26293945, -0.77441406, -2.5371094, -3.3496094, 0.4387207, 1.2529297, -1.0039062, -1.5664062, -0.021316528, -1.2880859, 0.59033203, -1.6113281, -1.0234375, -0.32104492, 1.0908203, -0.66552734, -0.26391602, -2.3652344, -2.171875, -0.43017578, -0.12451172, 0.8222656, -0.71777344, -1.3603516, 0.12927246, 1.0400391, -2.9648438, -1.8466797, 1.3857422, -0.111328125, 1.1865234, 1.0527344, 0.7270508, -0.78515625, 3.4257812, 0.1583252, -1.1865234, -0.3395996, 1.6923828, 0.65625, 1.6328125, 2.4160156, -0.014305115, -2.1914062, 3.0859375, 2.7871094, -0.6616211, 3.2714844, 1.3769531, -0.86376953, -1.2919922, -2.359375, 0.8623047, 0.8071289, 0.09851074, 0.8774414, -0.33935547, 2.9609375, 1.03125, -1.796875, 0.8666992, -1.0039062, 0.2553711, -2.5625, -2.7382812, 0.18920898, -1.2519531, 3.609375, -1.265625, 0.48461914, 1.7041016, -0.7089844, 0.27856445, -1.109375, 1.1894531, -1.0019531, -1.2099609, -0.30566406, 0.4921875, 0.30908203, -1.0839844, -1.7822266, 1.3007812, 0.3083496, -1.0224609, -0.13000488, -0.009635925, -1.4306641, 2.3652344, 1.3974609, -3.3828125, -0.40625, 1.4775391, 0.77001953, 3.1757812, -0.89208984, 2.1816406, 0.66259766, -0.6875, 3.1230469, -0.013015747, 1.7851562, 0.84716797, -1.0771484, 2.0410156, -1.7675781, 0.77001953, 1.4287109, 3.1054688, 1.0068359, -0.89990234, 0.5410156, 4.375, -0.7314453, -2.4667969, 1.6923828, -1.4658203, -0.55029297, 0.034179688, -0.6616211, 1.4003906, -0.8779297, 1.7324219, -0.8911133, 0.042877197, 0.38378906, -0.0368042, -1.6367188, -0.36206055, -0.89697266, -0.047576904, 0.91552734, 0.4885254, -0.29003906, -1.6591797, 0.81689453, -2.5683594, -0.7895508, 3.2148438, -1.9853516, 0.78466797, 1.4150391, 2.2011719, 3.4121094, 0.5385742, -1.5048828, 1.0732422, -0.39526367, 0.3479004, 0.5004883, -0.4658203, -1.546875, -1.1757812, -2.4980469, 0.86328125, -1.8369141, -1.2060547, -0.96191406, -1.6748047, -2.8378906, 0.09918213, -2.171875, -0.10668945, 0.37695312, -3.2890625, 1.2548828, -0.06542969, -3.2109375, -1.4326172, 0.5854492, -2.4726562, -0.30371094, 1.1435547, 0.43798828, -0.8022461, -2.6816406, -0.109680176, -1.2421875, -1.0195312, -0.78759766, 0.03817749, 1.0439453, 0.12133789, 0.796875, -0.4621582, 0.025466919, 0.012039185, -1.1503906, 1.0380859, -4.703125, -1.0253906, -3.1523438, -0.4404297, -0.8779297, -0.04724121, -3.5, -1.3417969, -0.09741211, -0.7998047, 2.9570312, -0.6352539, 2.0644531, -0.41430664, -1.4697266, -0.37451172, -2.0644531, -3.1914062, -0.12487793, -0.10443115, -1.9101562, 0.8696289, -2.859375, 0.81152344, -1.265625, -1.2695312, -1.546875, 0.5229492, -0.64697266, -0.7167969, -1.6298828, -2.1503906, 0.46435547, 0.40771484, -1.1621094, -2.5976562, -2.8164062, -2.6445312, -2.3066406, 0.047576904, -1.7353516, 2.09375, -0.16748047, -0.3347168, 2.3125, -0.5058594, 1.3046875, -0.80126953, -2.6542969, 2.4902344, 2.2460938, -1.1201172, 2.6894531, -2.0214844, -1.0185547, -1.7304688, -1.3007812, 2.8808594, -0.95214844, 1.671875, 0.7001953, -0.11315918, -0.13879395, 0.8623047, 0.62597656, -1.5810547, -1.09375, 2.4199219, -2.8378906, -1.1669922, 1.2548828, 2.8535156, -2.0996094, -0.66308594, 2.5898438, 0.58691406, 1.7558594, 1.9248047, -0.25512695, 0.63134766, -0.20788574, -0.7241211, 1.0527344, 1.3017578, 0.6333008, 0.19067383, 2.2265625, -0.35083008, 2.3398438, 2.5859375, 1.6328125, 2.5800781, 2.9414062, 0.58447266, -1.7001953, -0.4033203, 0.54833984, 2.2871094, 0.99121094, 3.5585938, -0.32373047, 0.53759766, -0.5678711, -0.85595703, 1.0400391, -2.2558594, -0.37719727, 0.8491211, 0.40966797, 1.15625, 0.44091797, -0.020339966, 0.15588379, -0.96191406, 2.0800781, 0.32910156, -1.7070312, 1.5019531, 0.34765625, -0.5239258, -2.6933594, 2.1582031, 0.052520752, -1.1201172, 0.45117188, 2.1269531, -2.1152344, -3.0566406, 0.6166992, 0.32543945, -0.953125, 3.4492188, 1.2392578, -1.1582031, 0.37939453, -2.3964844, 0.89941406, 1.8642578, -1.1923828, -0.21008301, -1.4306641, -0.8022461, -0.76123047, 0.6201172, 0.99560547, 1.9238281, -2.1816406, 1.7548828, -2.96875, -0.27294922, 0.9277344, -1.71875, -0.5571289, 2.4003906, -1.4394531, 1.2392578, -0.39086914, 4.1367188, -1.4052734, 0.25708008, 2.1347656, -2.1171875, 0.96972656, -1.7607422, -3.8417969, 1.2998047, -0.12188721, -0.39404297, 3.1699219, 0.65722656, 0.54541016, 1.6191406, 0.42236328, -2.0683594, -0.31445312, -1.0478516, 0.42382812, -2.2636719, -2.1640625, 1.0742188, -0.29711914, -1.5898438, -2.0429688, -0.05795288, -0.62841797, 1.4326172, 0.6123047, -2.7675781, 0.55859375, -0.8300781, 0.7397461, 0.7495117, -0.67871094, 1.2167969, -1.1308594, -0.7373047, -1.4257812, 1.3369141, 1.4296875, -0.20446777, -0.049041748, 1.8974609, 1.1376953, -2.4257812, 0.41064453, 1.6708984, 1.7822266, -0.120788574, -2.9199219, -1.4824219, 1.9775391, 0.33911133, -0.97558594, -0.55859375, -2.5742188, -0.6508789, 1.5263672, 2.3417969, 2.3066406, 0.8647461, 0.2770996, -2.6210938, -0.1015625, 0.43041992, -2.3867188, -1.0878906, 0.5839844, 2.1816406, -1.2509766, -0.6269531, -3.5859375, 0.76123047, 0.6064453, -0.93603516, -2.2167969, 3.4433594, 2.4199219, 2.2871094, 1.6708984, -0.69091797, -0.68652344, 2.2109375, 0.47875977, 0.17602539, 1.0273438, -0.30566406, 0.5522461, 1.6503906, 0.63134766, -1.6269531, -1.2490234, 2.84375, -1.4482422, 0.9082031, -0.46142578, 0.71533203, -1.1298828, -1.1152344, 1.5556641, -0.8666992, 1.9160156, -1.1679688, -0.4855957, 0.13745117, 0.94140625, -2.4375, 0.4543457, 0.5751953, -0.93359375, 0.14746094, 1.5673828, -0.68652344, -0.80859375, 0.3046875, 0.0947876, 1.5322266, 0.21618652, -0.5136719, -0.38452148, 0.7138672, -0.87890625, -1.6103516, 2.4140625, 2.5683594, -0.12548828, 3.2617188, 2.3164062, -1.4716797, 0.6850586, 0.070739746, -2.1796875, -0.48486328, 0.38745117, -0.3256836, 1.7929688, 1.1630859, -3.0214844, 0.78515625, 3.9648438, -0.75146484, 1.5351562, 0.21936035, -1.2607422, 1.7607422, -2.4277344, -0.38427734, -1.9423828, 0.098083496, -0.75439453, -1.4189453, 1.8164062, -1.1064453, 1.140625, 2.5234375, -0.12561035, -2.609375, 3.7226562, 0.57128906, 0.35180664, -0.78027344, -1.0722656, -2.4140625, 1.7451172, 2.5078125, 1.796875, 1.1972656, 1.0576172, -0.16699219, -2.7539062, -0.44482422, -0.9277344, 2.2792969, -1.3632812, -1.4267578, 2.5742188, -0.58447266, 0.34936523, -1.4345703, -0.20141602, -0.42138672, 1.6171875, 0.26513672, 0.9536133, 0.11230469, 0.25170898, -2.9902344, -4.0703125, -0.8359375, 1.2509766, -1.1533203, -0.08868408, -0.8623047, 0.08288574, 1.3193359, 0.3955078, -0.39379883, -3.3496094, -0.25952148, -1.1025391, -0.6977539, -0.16174316, 0.15332031, 0.061676025, 1.1796875, -0.88623047, 0.15759277, 0.31689453, -2.0859375, -1.4355469, 1.59375, -1.5966797, 0.64160156, 0.7763672, 0.26489258, 1.3525391, 2.3789062, 0.07763672, -2.2285156, 2.5214844, -2.0507812, -0.21728516, 1.8642578, -1.3525391, 0.5527344, 1.2929688, -0.080322266, 2.2050781, -0.87060547, -1.1708984, -0.61083984, 0.5073242, -0.3894043, 0.859375, -0.5605469, -2.5683594, 1.171875, -0.29492188, 1.6025391, 2.0605469, -1.65625, -1.6425781, -0.9824219, -0.7758789, -1.0615234, -1.8691406, -0.5839844, -1.0644531, 0.15002441, 1.7646484, 1.0693359, 0.97802734, 0.7597656, 0.64990234, -1.2734375, 0.5839844, -1.0976562, 3.5976562, 1.6865234, -0.54248047, -1.7412109, -1.7412109, 0.09881592, 0.55908203, 1.4658203, -0.8383789, 0.9785156, -1.40625, 0.7910156, 0.26782227, 0.60009766, 2.6796875, 1.9824219, 0.60546875, 0.76708984, 3.7734375, -0.26220703, 2.4609375, 0.35107422, -0.47070312, -0.20458984, 2.6347656, 2.2832031, -2.1210938, 0.5258789, -1.9384766, 1.7841797, 0.18640137, -1.4208984, 0.6464844, -1.0117188, -1.5517578, -2.6992188, -1.6357422, -4.1484375, 1.3671875, 1.7480469, -0.9824219, -1.3349609, 1.9892578, 0.32617188, 1.7070312, 1.8056641, 1.8808594, 0.19104004, 0.5097656, -2.1953125, -1.5585938, 1.7929688, -2.5625, 0.9550781, 1.0488281, -0.9433594, -1.5703125, 2.6621094, 0.26708984, 2.8359375, 1.0742188, 1.7958984, 2.5859375, 0.2824707, 2.7421875, 0.8432617, 0.7167969, 2.3945312, 0.3720703, -0.18457031, 1.3896484, 2.0039062, 0.18847656, -0.66015625, -0.5083008, 0.61279297, -1.3398438, -0.2705078, -0.2927246, 1.0224609, -4.3320312, 0.54541016, -1.0322266, 1.2841797, -0.0002772808, 0.22155762, -0.70214844, -0.3330078, 0.27905273, -0.1361084, 1.7910156, -1.5839844, 0.31176758, -1.7333984, -0.19030762, 2.0449219, -1.8232422, 2.5996094, 0.17871094, -1.4599609, 1.4814453, 0.54785156, 0.39990234, 1.3457031, 0.38964844, 3.0058594, 0.7685547, 0.2010498, 1.3583984, -4.1484375, 1.1201172, 0.33251953, 2.8339844, 1.1162109, 0.234375, 1.2587891, -0.75390625, -2.8476562, -5.0234375, 3.1855469, 1.7607422, 0.5629883, 2.484375, -0.9086914, 2.4199219, -0.7529297, 1.4902344, -3.3945312, 0.5991211, -0.6689453, -0.43408203, -0.8300781, 1.1494141, -1.6201172, 2.9335938, 1.2841797, -1.6474609, 1.3730469, 0.8803711, 0.68847656, 1.0898438, 0.32543945, 1.3017578, -0.40063477, -1.9013672, 1.7451172, 2.1425781, -1.7666016, -0.99121094, 2.8007812, 1.6601562, 0.7133789, 1.8779297, 0.17492676, -0.14929199, -0.6533203, 0.116882324, 0.140625, -1.8632812, -1.1728516, -1.1796875, 0.1015625, -0.63134766, -2.0429688, 0.6279297, 1.0175781, -1.0146484, -0.3173828, 2.1933594, -0.8691406, 1.1933594, 0.72216797, -0.6176758, 0.021194458, -1.7177734, -0.65283203, -1.8925781, -1.8798828, -1.2832031, -0.34326172, 0.7573242, -0.39746094, -1.0009766, -1.1259766, -0.04067993, 1.4052734, 2.71875, -1.0322266, 2.1582031, 0.14147949, -0.6010742, -1.1015625, 2.2597656, -0.22680664, -0.35229492, 0.14501953, -2.6230469, 0.09698486, 0.30615234, -1.3623047, 0.69677734, 3.8476562, 3.59375, 0.14819336, -2.3867188, -2.6308594, -1.3496094, -1.2275391, 0.9375, -0.63671875, -0.18847656, -0.19763184, 0.89501953, 2.9960938, -1.1416016, -0.32592773, -0.7480469, 0.072265625, 1.4306641, 0.1973877, 1.4833984, -0.8359375, 0.63916016, 0.28930664, 3.140625, 3.3554688, -1.2714844, 1.2783203, 1.4580078, -0.6738281, -3.6289062, 0.9824219, -1.8310547, -0.07055664, -0.27270508, -0.64746094, 2.0410156, 0.73095703, -0.42456055, -2.0039062, -0.8803711]}, "B07F5233N1": {"id": "B07F5233N1", "original": "Brand: ICON\nName: ICON 12867 Deluxe Propane Tank Cover , Black\nDescription: \nFeatures: Improves the look & value of the RV\nPart number: 12867\nFit type: Universal Fit\nPackage Weight: 10.0 pounds\n", "embedding": [0.6191406, 0.72021484, 3.5859375, -0.5942383, 0.7475586, -0.18151855, -1.3046875, -1.6894531, 2.9804688, 1.4316406, 0.82177734, -1.1474609, -1.0224609, -1.0498047, 2.1289062, -0.42333984, -0.048431396, 2.7167969, 1.5625, -0.94189453, 2.8691406, -0.3347168, -0.56103516, -0.52978516, -0.14440918, 0.4819336, 4.8789062, -2.6269531, -2.1132812, 1.0791016, 1.0478516, 0.5234375, 0.10333252, 4.5039062, 0.5961914, -0.6171875, -0.66308594, -0.094177246, -2.2011719, -0.08843994, -2.9609375, -0.9267578, 2.1972656, 0.359375, -0.78759766, -0.8911133, -0.057434082, -1.1728516, -2.0039062, 0.6425781, 1.0878906, 1.4863281, 1.4697266, 1.8261719, -1.6992188, 3.8925781, -1.4365234, 0.57910156, 0.5551758, 1.6503906, 0.1274414, -1.8740234, -2.4609375, -0.43725586, -0.96972656, 2.8417969, -1.2841797, 0.35913086, 0.8886719, 1.4746094, 1.9248047, 1.7568359, 0.38598633, -3.0566406, 2.5, -0.45947266, -3.4492188, 0.8095703, 1.3271484, -1.5498047, 0.5498047, 1.2841797, -0.5048828, -2.2597656, 0.54052734, -1.2714844, -2.3632812, -1.2197266, -0.023666382, -0.484375, -2.2558594, 1.2304688, -2.7519531, -4.4960938, 0.050567627, 0.013282776, 1.1679688, 2.9609375, -0.7783203, 1.7666016, 0.78466797, -0.3461914, 0.93310547, -0.93066406, -1.2714844, -1.5712891, 1.0800781, -2.8808594, -1.9941406, -0.18933105, -0.35766602, -3.3378906, 1.6269531, -1.7265625, 2.0195312, -0.49804688, 1.7128906, 0.24487305, 0.6904297, -0.9145508, 2.6308594, -1.0458984, -0.10888672, -0.7265625, 0.9663086, -0.36938477, -1.8115234, 1.0615234, 3.9394531, -0.103149414, 1.1259766, 1.1826172, 1.0126953, -0.62158203, -1.4013672, -0.87353516, -0.38867188, -1.8417969, -1.5283203, 0.8305664, -1.1230469, -2.5, -0.28955078, 1.3115234, -3.2539062, -1.0117188, -1.5927734, 0.6899414, -1.4638672, -2.2089844, 2.3652344, -1.6621094, -1.9833984, -1.5507812, 1.0341797, 0.8256836, -0.8510742, -3.4960938, 1.4511719, 2.8164062, 3.7207031, -0.9160156, -1.1455078, -0.55615234, 0.88671875, -0.42041016, 0.81347656, -0.70214844, -1.6103516, 1.6513672, -0.9580078, -1.3554688, -0.50878906, 0.47509766, -0.05126953, -0.7583008, 0.4934082, 1.1552734, 1.2597656, 0.89453125, -2.6914062, -0.5678711, -0.4411621, -0.25976562, 0.22924805, -1.1611328, -0.59765625, -2.8027344, 0.47558594, 0.14685059, -2.1992188, 1.1083984, -1.0380859, -0.0209198, -1.1035156, -2.7089844, -0.8364258, -2.6074219, 0.09375, 2.1699219, -0.9267578, -1.2587891, -0.93847656, 0.34887695, -1.9257812, -2.234375, 0.9790039, 0.09088135, 1.3945312, 1.0527344, 0.8359375, 0.1862793, 2.0214844, -1.4189453, -2.0234375, -1.0166016, 0.35961914, 0.22851562, 0.6064453, 1.4863281, 0.08282471, -0.32104492, 0.7504883, 2.0917969, 0.061035156, 1.3916016, 1.359375, 0.7128906, -2.4140625, -1.9404297, 0.29663086, 1.8720703, -2.6054688, 0.65722656, -0.08215332, 1.9365234, 0.5854492, -0.84472656, 0.23901367, -0.6801758, -1.1552734, -0.97216797, -1.1474609, 0.5395508, -0.5415039, 1.0566406, -1.3203125, 0.7475586, 1.5117188, 0.3696289, -0.81347656, -2.4082031, 1.5322266, 0.38427734, 0.78027344, 1.5224609, -0.19348145, 1.8076172, 0.6723633, -2.0566406, 0.6040039, 0.13708496, -1.9785156, -0.50634766, 0.22668457, 0.48266602, 0.43676758, -0.12164307, -2.3242188, 0.3161621, 2.1816406, 0.64160156, 0.49438477, -0.120788574, 2.78125, 0.9194336, -0.4897461, 2.1972656, 0.74560547, 1.4951172, 1.3662109, -0.45263672, 1.7207031, -3.3632812, 0.34936523, -0.4194336, 1.6083984, -0.62060547, -1.9980469, 1.0302734, 1.6708984, -1.4003906, -1.7832031, 3.4355469, 0.70703125, 0.6171875, 1.8457031, 0.2614746, -0.074279785, 0.7290039, -1.484375, -0.37304688, 0.7265625, 2.1855469, 2.3105469, -0.5517578, -1.1171875, 0.5151367, -1.2792969, -1.0458984, -0.6870117, -1.6445312, -2.6660156, 1.3320312, -1.4238281, -0.08935547, 3.0605469, -1.2958984, -0.37109375, 1.7236328, 0.48510742, 0.57714844, -1.9570312, -1.1933594, 1.1064453, 1.578125, -3.9765625, 0.2006836, 1.2148438, 0.12792969, 1.0917969, -1.3730469, -0.3894043, -2.9433594, 2.4082031, -0.5878906, -2.8339844, -0.75683594, -0.04901123, -1.2988281, 0.97509766, -0.087524414, -0.43896484, 2.8808594, 1.8447266, -2.328125, 0.037841797, 1.4570312, -0.8964844, -1.4121094, 0.95410156, 1.5351562, -0.2244873, -2.8613281, 0.20739746, -0.3408203, -1.5048828, 0.49291992, -0.6323242, 0.7675781, 1.9599609, 0.7841797, 2.3027344, -0.0925293, 0.14050293, 0.20385742, 1.2851562, -4.015625, 0.97314453, -3.3574219, 0.8154297, -1.5986328, 1.0634766, -2.5742188, -0.8833008, 0.5283203, -1.0927734, 3.96875, 1.2597656, 1.3242188, -1.1679688, -0.76708984, 0.95214844, -2.6679688, -2.4960938, 1.4462891, 0.3466797, -1.2304688, -2.46875, -4.7421875, -0.091552734, -2.0683594, 0.43701172, 0.15710449, -2.8808594, -0.9658203, 0.5214844, -0.1706543, -0.4777832, 0.47338867, 0.43286133, -0.31640625, -1.7802734, -0.28442383, -0.72314453, -1.3105469, -1.6171875, -0.58447266, 1.546875, -1.1259766, -0.12225342, 0.109436035, -1.1142578, 2.9355469, 0.45288086, -3.1445312, 0.039123535, 2.8417969, 3.1660156, 2.875, -0.74658203, -2.1210938, -2.0332031, 1.4560547, 3.4824219, 0.58447266, 0.25683594, 1.9882812, -0.5395508, -0.5473633, -1.3623047, 0.5292969, 0.34301758, 0.9638672, 2.6660156, -1.4902344, 0.045440674, -0.5439453, 1.3808594, -1.3251953, -0.9316406, -0.01096344, -0.8847656, 4.2929688, -0.4345703, -3.4414062, -2.2714844, 1.1494141, 4.0664062, -1.5322266, 2.1757812, 0.90966797, 0.7895508, 1.6513672, -0.8378906, 2.234375, 2.59375, 0.52978516, -1.3701172, 0.93066406, 0.98046875, 0.21838379, 0.24230957, 0.97998047, -2.2070312, 0.32080078, 1.0751953, -1.4697266, 0.15612793, 0.9560547, 0.76416016, -0.7583008, -1.0859375, 1.5048828, 1.9833984, 2.9316406, -0.5942383, 0.2006836, -0.7788086, 0.5419922, -1.0488281, 2.4082031, 1.1279297, -1.7998047, 0.13684082, -2.2285156, 0.33789062, -2.4960938, 3.9121094, 0.44335938, 0.68896484, 0.12866211, 3.3242188, -2.359375, -2.4863281, -0.18676758, 0.15917969, -1.3730469, 1.625, 2.7910156, -0.7026367, 1.3701172, -2.1777344, 2.0644531, 3.7949219, -0.8100586, 0.05731201, -0.2927246, -0.74316406, -2.640625, 1.6220703, -0.18237305, 1.1708984, -2.8320312, -0.7421875, -0.71972656, 1.1132812, -0.080200195, -0.31176758, -1.8115234, 0.2421875, -1.9882812, 0.63964844, -0.68310547, 3.1777344, -0.5703125, 2.6582031, 0.22106934, -0.62939453, 1.4423828, 0.3869629, -2.4257812, 0.14758301, -0.59765625, 0.48217773, 3.3242188, -0.39208984, 0.6557617, 0.22338867, -1.046875, -3.3613281, -0.8203125, -1.2441406, -0.05682373, -0.9121094, -4.0039062, -0.54052734, -0.45898438, -1.9863281, -1.3261719, -0.43896484, -2.5371094, -2.1503906, -0.46948242, 0.1270752, -0.81152344, -1.1328125, 1.1064453, -1.6416016, -0.35424805, 3.6992188, -0.0016956329, -0.3569336, -2.0175781, 2.578125, 0.094177246, 0.060821533, 0.69091797, 3.3164062, 0.59765625, -0.6118164, -0.01826477, 0.52783203, 1.5068359, -0.51708984, -3.6484375, 0.24914551, -0.2512207, 0.12573242, -1.3554688, 0.96533203, 0.10882568, -0.52734375, 1.3837891, 0.2902832, 0.6044922, 1.4394531, -0.87890625, -2.078125, 1.5253906, -2.4414062, -0.20654297, -0.10345459, 0.1071167, 0.74365234, 0.5576172, 1.1308594, -2.6152344, 0.65527344, 0.31982422, -0.48779297, -3.8769531, 2.0429688, 0.99316406, 2.3769531, 0.14001465, -0.58740234, 0.75097656, -0.06567383, 0.77978516, 0.72021484, -1.0214844, -0.62939453, 1.4316406, -0.8808594, 2.0585938, -2.2734375, -1.9404297, -0.25341797, -0.52001953, 0.9682617, -1.9990234, -0.5341797, -2.4042969, -2.0175781, -0.5703125, -1.140625, 3.0527344, -2.1191406, 3.0976562, -1.1582031, -0.017211914, -1.3125, 3.0429688, 3.0605469, 0.8647461, 1.203125, -2.0507812, -2.1347656, -0.85546875, 1.9404297, -0.7192383, 1.9101562, -1.6025391, -0.75683594, 1.6513672, 0.8378906, -0.105529785, 0.2232666, 1.4833984, 2.4902344, 0.9941406, 0.16223145, 1.3867188, -1.2158203, 3.75, 2.0644531, -0.34326172, -1.0410156, -1.0683594, 1.8242188, 2.375, -1.1162109, -3.0410156, 0.2993164, 1.1337891, 0.12145996, 1.4580078, 0.78466797, -1.3330078, -2.4726562, -2.3613281, -1.6455078, -0.8520508, -0.47558594, -2.3710938, -0.51660156, 1.2470703, 1.6523438, 0.78271484, 2.3144531, 0.5864258, -0.8564453, 1.7988281, 1.765625, -1.6992188, -2.640625, -0.10797119, -2.5957031, 1.4033203, -1.6181641, 1.5205078, 0.91308594, -0.23608398, 2.6835938, -2.3457031, -0.4206543, -2.1523438, 1.5556641, -2.578125, -1.2128906, 0.28442383, -1.5, -1.0722656, -0.07501221, 1.1123047, -1.2753906, 1.6201172, 0.37280273, 0.2763672, 0.46801758, 0.18457031, -2.6660156, -3.4902344, -1.8310547, -0.039520264, 0.17626953, 1.4287109, -0.8232422, -1.0986328, -1.0605469, -0.61328125, -0.72021484, -2.0605469, 1.2431641, 0.12939453, -1.7724609, 0.12902832, -0.25927734, -1.1357422, 0.3840332, 0.40600586, -1.9423828, -1.625, -2.96875, -1.5400391, 1.0078125, -1.1103516, 0.6411133, 2.2832031, 0.171875, 1.9677734, -0.11773682, 1.8496094, -0.49169922, 1.7431641, -1.3398438, -1.3183594, 3.0273438, 0.29370117, 0.3071289, 2.015625, -0.17956543, 0.9736328, 1.0322266, 2.8925781, -2.4335938, 0.3996582, 1.5458984, -0.39624023, 0.14331055, 1.0908203, 1.6181641, 1.3466797, 1.1943359, 1.1972656, -1.8476562, 0.29052734, -1.5322266, -0.75634766, 0.1508789, -2.5410156, -1.7900391, -0.020217896, 0.85009766, 2.359375, 0.66748047, 0.171875, 0.22570801, 0.8310547, -1.1738281, 0.20605469, -2.0996094, 4.46875, 2.6542969, -1.1582031, -1.0332031, -1.9804688, 4.0195312, 0.0501709, -0.7158203, 0.11193848, 1.0537109, -1.3632812, 0.7529297, -0.15722656, 2.328125, 0.42919922, 0.27270508, -2.1386719, -0.070495605, 3.234375, 0.3564453, 2.3984375, -0.7944336, -0.35058594, 0.35961914, 0.07739258, 1.1738281, -5.140625, 0.60839844, 0.4345703, -0.8251953, 0.28051758, 0.08123779, -0.73046875, -0.101501465, 0.94677734, -0.19177246, -0.49145508, -5.8164062, 2.6992188, 0.4326172, -0.87353516, -0.2607422, -0.32470703, -1.3945312, 0.47558594, 0.90478516, 0.3762207, -0.43164062, -1.0488281, 0.9135742, 0.84765625, 0.44921875, -0.92089844, 1.0634766, -1.0810547, 1.2910156, 2.0898438, 1.2041016, -0.1237793, -0.11816406, 2.1503906, 3.3359375, 3.4824219, 1.5576172, 0.76953125, 0.50878906, 1.5458984, 2.6230469, -1.5322266, -0.8339844, 0.85791016, 1.8076172, 2.1816406, -1.6816406, 0.20935059, 0.96533203, -0.83984375, -1.265625, 1.0263672, 2.9570312, -2.1679688, 0.7363281, 0.25097656, -0.087646484, 0.6665039, -0.27807617, -1.5908203, -1.0117188, 1.4658203, -1.1171875, 2.1113281, -0.41357422, -0.7885742, 1.6572266, -1.4833984, 1.046875, -0.1586914, -0.65478516, -0.5625, -2.4824219, -0.9921875, -1.2929688, 1.9433594, 2.15625, -0.8129883, 1.7822266, 1.7109375, 0.5341797, -0.16748047, -2.796875, 1.9521484, -1.8378906, 2.4023438, 2.1953125, -2.0625, 0.19714355, 1.2158203, -1.3095703, -3.8457031, 1.6191406, 1.7373047, 1.4863281, 0.14819336, -3.7128906, 0.13769531, -0.37451172, 0.49365234, -1.0185547, 0.90234375, -0.6748047, -1.0966797, 0.7753906, -0.8388672, -0.7363281, 2.4863281, 0.0040740967, -0.23156738, 1.1777344, -1.2197266, 1.9941406, 0.24511719, 1.1757812, 2.5800781, 0.8754883, -1.5097656, 1.3945312, 1.9365234, -0.46728516, -1.5859375, 3.0722656, 3.640625, 1.1845703, 1.0185547, -2.1777344, 2.5839844, 1.3613281, -0.31469727, 0.47558594, -1.8388672, 0.66015625, -0.32177734, 0.6738281, 0.8569336, -0.4165039, 2.1113281, 3.0175781, -2.4628906, -0.36938477, 0.6977539, -1.2353516, 1.9052734, -1.0576172, -1.2958984, -2.4179688, 0.65283203, 1.4912109, -0.7211914, 0.07598877, -0.7504883, 1.0361328, 0.0067634583, -2.3574219, -1.3955078, 0.44335938, -1.0761719, -0.9892578, 2.2695312, -1.3964844, 0.6201172, 0.26464844, 0.28759766, 0.64501953, -0.099731445, -0.07281494, -1.4208984, 0.35302734, -0.023788452, -0.115600586, -0.36645508, 1.6445312, -0.10253906, 1.6542969, -0.072753906, -0.5605469, 0.4243164, -2.9277344, -0.84716797, -3.4902344, 1.4462891, 1.3339844, 0.5473633, -0.10491943, 1.4902344, 3.0585938, -3.03125, -1.2841797, -1.4794922, -0.75439453, 2.7167969, -0.84277344, 0.32080078, 0.4333496, 0.35375977, 2.4765625, 3.5253906, 1.5126953, -0.98535156, 0.56884766, 1.6591797, -2.765625, -1.6845703, -1.0878906, -1.359375, -0.87158203, 1.125, 2.1640625, 1.5527344, 0.97021484, -0.5395508, -1.5332031, 1.0742188]}, "B003UHVVV2": {"id": "B003UHVVV2", "original": "Brand: Flame King\nName: Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-2.4335938, 1.5820312, 1.2578125, 0.5332031, 0.6645508, -3.1425781, 0.050720215, -0.16723633, 1.0878906, -0.7973633, 2.9589844, 0.2052002, -0.17175293, -3.6523438, 1.8291016, 1.2109375, -0.80859375, 1.9150391, 1.1621094, -0.15368652, 1.4433594, 0.5449219, -0.9116211, -1.1914062, -0.35717773, -0.9819336, 2.5976562, -3.453125, -0.65722656, 0.49023438, 0.9165039, -0.42382812, 0.27490234, 2.0898438, 0.34545898, -1.7177734, 0.50097656, -2.0644531, -5.7304688, -0.3383789, -2.5175781, -0.97021484, 1.9150391, -0.5727539, -0.7871094, -0.05657959, 0.041015625, -1.0986328, -0.4338379, 0.08465576, 0.9042969, 1.9335938, -0.55322266, 1.2333984, 0.8754883, 1.2949219, 1.0371094, -2.7304688, -0.3010254, 0.51220703, 2.21875, 0.07873535, -2.7929688, 2.4042969, -0.82958984, 1.3740234, 0.16333008, -0.7817383, 0.47094727, 1.8027344, 1.7167969, 0.8984375, 2.2246094, -1.3896484, -0.9448242, 1.3212891, -3.6191406, 0.040924072, 0.20874023, 0.3413086, 0.10583496, 2.8867188, 0.31982422, -3.03125, -1.1396484, -0.57714844, 0.49731445, 1.2763672, 0.02027893, 0.66552734, -2.2089844, 2.0703125, 0.013755798, -3.7734375, 2.484375, 0.7636719, 2.4316406, 3.1542969, 3.1328125, 0.028213501, 0.4284668, -0.13806152, -0.6845703, 1.5175781, -1.8759766, -1.7753906, 0.9736328, 0.7270508, -2.6542969, 1.6972656, -0.34570312, -0.7919922, 1.7998047, -0.7832031, -0.35107422, -0.77490234, -0.00687027, 1.6318359, 1.5869141, -0.80322266, 3.8671875, -3.1054688, 2.4355469, -1.4785156, 1.8085938, 1.8515625, -1.2822266, 0.70166016, 5.1015625, -0.48364258, 1.9882812, 0.0413208, 3.8007812, -1.3984375, -0.31152344, -2.5566406, -0.10424805, -1.8837891, -1.9873047, -1.2705078, -3.8945312, 0.09326172, 1.1699219, -0.06665039, -3.1328125, -0.80908203, -0.4597168, 0.13000488, -0.9824219, -2.1484375, 1.3798828, -1.6328125, 0.8276367, -1.2392578, 2.6445312, 1.5361328, -1.8144531, -3.2011719, 1.0927734, 1.3613281, 1.9140625, 0.5234375, 0.3059082, 1.6347656, -0.40429688, -1.8603516, 0.8857422, 0.022567749, -1.2773438, 1.6328125, -0.23632812, -1.7998047, -0.66748047, 2.3339844, -0.2915039, -0.5698242, 0.8232422, 1.2119141, 0.3449707, 0.12902832, -2.6933594, -0.25439453, -0.63720703, -1.3994141, 1.8671875, 0.47827148, -0.92822266, -0.84228516, 0.9326172, -0.8227539, -1.6757812, 2.21875, -1.9404297, 0.30664062, -0.25976562, -0.9682617, -4.1640625, -2.84375, 0.72265625, 1.4970703, 0.5600586, -0.81591797, 2.0527344, 0.013214111, -2.3671875, -1.8007812, 0.49072266, -1.3623047, 1.7207031, 0.3852539, -0.49926758, 0.5732422, 1.8652344, -2.4179688, -1.5888672, -2.6210938, -0.63720703, 2.4238281, 1.9414062, 1.1279297, 1.2431641, -0.6616211, 1.5117188, 0.6616211, 1.4941406, 0.007637024, 1.46875, 2.0917969, -3.8730469, -1.0839844, 1.1699219, 1.5957031, -0.08850098, 1.1503906, -2.1523438, 0.91503906, 0.28637695, -1.5537109, 0.97021484, 0.38427734, 0.60009766, 1.0361328, -1.0507812, -0.5786133, -2.3339844, -0.36279297, 0.9746094, 0.34716797, 1.1220703, -0.47705078, 1.0136719, -0.2524414, -0.8364258, -0.63720703, -0.5029297, -0.015220642, 1.0429688, 0.49194336, 0.7734375, -2.1132812, 1.6953125, -1.8066406, -0.47070312, 0.95947266, -1.453125, 0.5991211, 2.4628906, -0.8588867, -2.5644531, 1.4707031, -1.5292969, 0.9580078, 1.9228516, -1.2841797, 0.2084961, 2.5644531, -1.7226562, 3.6289062, -1.4736328, 1.6152344, -0.10015869, -1.0263672, 1.3203125, -2.1679688, 0.515625, 0.2944336, 0.7416992, -0.5810547, -2.7050781, 0.82373047, 4.90625, -1.3740234, -1.828125, 1.4804688, 1.2626953, 1.6708984, 3.4414062, -0.40893555, 1.1142578, -0.04888916, 0.25585938, 0.34570312, -1.28125, -0.01209259, -0.6201172, -1.4169922, 0.94091797, -0.18273926, 0.47509766, -0.6142578, -1.1425781, 0.22143555, -1.4384766, 0.5439453, 0.53564453, -0.9111328, 3.6835938, -3.3710938, 1.9384766, 1.8330078, 0.38623047, 1.8251953, 1.7041016, -1.6054688, -0.3955078, 1.7373047, -0.8857422, 1.9648438, -0.37890625, 1.0214844, -0.07409668, -1.9501953, -0.05807495, -0.58447266, -0.5644531, 1.0009766, -0.88720703, -2.7089844, -0.19189453, -2.7070312, 0.22290039, 0.5961914, -1.0449219, 1.4785156, 1.0078125, -1.2832031, 0.20922852, 0.36035156, -0.33496094, -2.359375, 0.8691406, 4.359375, -0.6567383, -2.0253906, 1.4345703, -0.14648438, 1.1279297, 2.7753906, -0.2121582, -0.5541992, 0.30395508, -0.7236328, -0.51220703, -0.5996094, -0.74853516, -3.0722656, 2.4609375, -2.1230469, 1.9052734, -0.58203125, -0.27026367, -1.234375, -1.1660156, -0.91503906, -2.4824219, -0.43188477, -2.0976562, 0.50878906, 0.93603516, 2.0566406, -1.5019531, -1.2109375, 0.90771484, -1.3671875, -0.7890625, -0.57910156, 0.40698242, -2.1191406, -1.9570312, -4.4101562, 0.04837036, -1.515625, -0.6298828, -0.62060547, 0.56640625, -2.234375, 0.37768555, 0.27148438, 0.5371094, -0.08935547, 0.009674072, -0.6796875, -3.4335938, -0.3100586, 0.28686523, -0.30664062, -1.4208984, -0.6357422, -0.05706787, -1.2119141, -0.8203125, 0.64404297, -1.0888672, 1.9609375, 0.9892578, -3.40625, 1.6640625, 1.1982422, 0.9819336, 3.5976562, -2.4824219, -0.77783203, -2.1210938, -0.70410156, 4.2265625, 1.3496094, 0.73535156, 0.5131836, -0.9560547, 0.035736084, -1.0634766, -0.27807617, 0.90771484, 0.078186035, 3.6367188, -1.1982422, -0.5439453, 0.59521484, 2.8261719, -4.2460938, 0.056732178, 1.3427734, -0.79541016, 1.2929688, 0.88378906, -0.05307007, -0.22546387, 0.12402344, 1.5087891, 2.9101562, 1.2236328, 0.3330078, -1.2109375, 0.15612793, -0.7792969, -0.21777344, 4.015625, -0.31958008, 1.4560547, 2.0800781, 0.421875, -0.62890625, -0.47436523, 0.26489258, 0.97509766, 1.2353516, 1.9423828, -0.7529297, 0.64941406, -2.0410156, 0.09313965, -0.28198242, -1.0283203, 1.2167969, 1.65625, 1.2988281, -0.12756348, -0.8208008, -0.8129883, -1.3886719, -1.3759766, 4.46875, -1.4951172, 2.1269531, 0.30981445, -1.5039062, 1.2480469, -3.0585938, 2.21875, -0.45996094, 0.4777832, -0.50878906, 0.7373047, -1.2236328, -3.3964844, 0.6503906, -1.9208984, -1.2490234, 3.1367188, 0.030776978, -3.4335938, 0.062347412, -1.5439453, 1.3759766, 1.4326172, -2.6445312, 1.921875, 0.40405273, 0.43017578, -1.4199219, -0.47143555, 1.3955078, 0.7163086, -2.6191406, 1.4824219, -2.1347656, 1.7685547, 0.5888672, 0.7080078, -0.7158203, 0.062805176, -1.0185547, 2.78125, -0.8310547, 3.765625, -0.047058105, 1.7314453, 1.9101562, -1.2685547, 0.18591309, -1.3896484, -3.5292969, 0.6352539, -2.3164062, -1.4326172, 1.3232422, -0.8022461, -0.46435547, -0.76416016, 0.9580078, -0.7861328, -1.0507812, -1.0224609, 2.6464844, -2.4785156, 0.36157227, 0.22387695, 2.4375, -2.5234375, -2.7832031, 0.64404297, -1.515625, -0.7558594, 0.5888672, -1.6318359, 0.28173828, 0.98535156, -1.1191406, -0.3515625, -1.0166016, 1.7421875, -0.58203125, -0.96777344, -2.1074219, 1.7275391, 2.1621094, 0.7949219, 2.2988281, 1.8212891, 1.0761719, -0.4777832, -0.9584961, -0.6513672, 1.4970703, 0.8642578, -3.9941406, -2.5253906, -0.92626953, 0.044525146, -2.9375, 0.9008789, -1.2578125, 0.9448242, 3.3027344, 0.15844727, 1.8779297, 1.8798828, 0.51464844, -1.0371094, 1.546875, 1.7050781, -0.42407227, 0.2854004, -1.53125, -0.49047852, -0.9526367, 3.0488281, -2.171875, -1.453125, -2.3105469, 1.2138672, -4.5039062, 1.0117188, 2.3027344, 3.1113281, -0.6972656, -0.7841797, -0.31176758, 0.765625, -0.17578125, -0.33935547, 0.9501953, -0.25878906, -0.9819336, 1.5966797, 0.9091797, -0.27197266, 0.8857422, 1.6904297, -0.29711914, -1.6455078, 0.4248047, 0.61572266, -1.5878906, 0.78564453, -0.5551758, 0.43164062, 3.4902344, -1.5644531, -0.05758667, 1.7587891, 0.515625, -0.21472168, 1.4150391, -0.066711426, 0.5419922, 2.2949219, 0.31689453, 1.1640625, 2.359375, 1.9003906, -0.34570312, 2.2832031, -2.4414062, 0.3791504, -0.09863281, 1.5888672, -1.8369141, 0.8417969, 1.5654297, 0.97509766, -0.45654297, 1.3251953, 0.7363281, -0.4008789, 1.1425781, 1.2314453, -2.9238281, -3.1601562, -1.1044922, -0.26513672, 3.2265625, -0.55078125, -2.875, -0.0602417, 3.234375, -1.0722656, 0.63623047, 0.73876953, -0.3642578, -2.0605469, -1.7197266, -2.2578125, -1.4199219, 0.9169922, 0.81347656, 0.48461914, 0.61572266, -1.5839844, -0.24975586, -0.8173828, 1.6074219, 0.70458984, -0.6142578, -0.859375, -0.0446167, -0.40039062, 1.1259766, -1.3095703, 0.080078125, -1.4257812, -0.064331055, 0.6850586, -0.8671875, 2.0664062, -0.93847656, -0.21777344, -2.4609375, 1.3017578, -0.23449707, -0.71191406, 3.4921875, -1.3798828, 2.6464844, -0.7241211, -0.28759766, -1.5253906, 1.2685547, 1.6005859, -0.69970703, 0.061309814, 0.4194336, -2.8945312, -5.1953125, -2.6621094, -0.013977051, -0.27661133, -0.31201172, -1.7753906, -1.7548828, -0.46679688, -0.28076172, -1.5283203, -2.2265625, -0.052978516, 0.1685791, -1.1699219, -1.171875, 1.6083984, 0.07006836, 0.8925781, 0.9296875, -1.6572266, -0.3935547, -2.4609375, -1.8681641, 1.6435547, -0.76464844, 1.1191406, -0.2607422, -2.2460938, 1.6064453, 1.8623047, -0.58154297, -3.875, 1.9804688, -1.9990234, -0.7446289, 2.4707031, -2.6328125, -1.8554688, 1.546875, -0.59277344, 1.3837891, 2.1035156, 1.046875, -3.0292969, -1.4121094, -0.8227539, 1.9052734, -1.1103516, 1.6337891, 2.390625, 2.1210938, 0.00051403046, 2.3242188, -1.6132812, -1.8398438, -1.8925781, -0.68066406, 0.23022461, -1.3310547, 0.16918945, -0.24951172, 1.2246094, -0.025558472, -0.9658203, -0.43359375, -0.7363281, -1.6767578, -1.2226562, 3.2167969, -3.0917969, 2.7871094, 2.2167969, -1.9707031, -2.0800781, -0.66748047, 1.1503906, 0.7939453, -2.4980469, -0.98535156, 1.0654297, 0.87060547, 1.9990234, -0.30126953, 1.4375, -0.6894531, 1.4609375, -1.0615234, 0.21728516, 3.7988281, -0.5839844, 1.5712891, 0.82910156, -2.7265625, 1.6464844, 2.3808594, 2.1992188, -0.87939453, 0.3466797, 0.63623047, -1.0244141, -0.70703125, -0.41967773, -0.32617188, -3.0664062, -1.4267578, 0.77685547, -1.21875, -4.7421875, 0.46704102, -0.027328491, -0.8178711, -0.008682251, -0.3540039, -0.55810547, -0.78515625, 1.5908203, 0.67871094, -1.8164062, 0.13635254, 1.7099609, 0.7050781, 1.1660156, -1.7265625, 0.8041992, 1.2089844, 0.6748047, -0.6557617, 0.99121094, -2.1796875, 3.0898438, 1.0166016, 2.2011719, 2.7890625, -1.2509766, 1.9443359, -0.80810547, 2.4980469, 3.6660156, -0.1026001, 0.80126953, -0.5258789, 1.5478516, 0.58496094, -1.2675781, 0.69140625, -1.1005859, 1.6953125, -0.8334961, 0.6894531, 2.0136719, -1.1083984, 0.6069336, -0.6274414, -0.5283203, 0.064697266, 0.5883789, -0.890625, -1.1015625, 0.8852539, 1.1357422, 1.1328125, -0.703125, 0.19909668, -0.79833984, 1.0546875, 1.7158203, 0.14416504, -1.0595703, -1.4375, -2.3222656, 0.41748047, 2.2949219, 0.7060547, 0.3515625, 0.3347168, -0.63378906, 0.21362305, 1.0029297, -1.0957031, -1.6474609, 1.5205078, 0.5786133, 1.9931641, 2.5097656, -1.0683594, 4.828125, 1.2734375, 0.028381348, -3.7558594, 2.8945312, -2.0097656, -0.9067383, 1.4267578, -2.0996094, 1.0185547, -1.0683594, 0.71240234, -4.2695312, 1.4277344, 0.5185547, -2.0605469, 2.4609375, 0.5102539, -0.9819336, 3.3125, 2.2890625, -0.3605957, 0.37670898, -0.515625, 1.1708984, 0.2998047, 0.65478516, 0.9975586, 0.88720703, -1.2226562, 4.140625, 0.67041016, -0.63916016, -1.4736328, 1.9248047, 0.093322754, 0.9008789, 0.60791016, -1.1621094, 1.8242188, 0.96972656, 0.20385742, 0.75927734, -1.4902344, -0.18652344, -1.6142578, -0.96240234, 1.2050781, -1.9208984, -0.15661621, 1.5507812, -1.4228516, -1.8671875, 4.4414062, -0.44140625, 0.67333984, -0.05706787, -1.8291016, -1.6513672, 0.9589844, 1.4443359, -2.171875, -0.5776367, -0.32763672, 3.0136719, -0.36328125, -2.0195312, -1.5185547, 0.02218628, -0.12145996, -2.1933594, 1.3769531, -0.9975586, -0.15649414, 1.7021484, -0.9477539, 0.7080078, 1.1162109, 0.5419922, 1.8164062, -0.81884766, -0.5307617, 0.051605225, 0.44750977, -1.5390625, -1.8017578, 0.39404297, 1.3955078, -0.062927246, -0.3388672, -4.46875, -1.8935547, -1.5058594, 0.5058594, -1.1396484, -1.4003906, 1.2587891, 1.2314453, 1.0166016, -1.0605469, 0.36767578, -0.24804688, 1.6855469, 1.9619141, -1.3769531, 1.8876953, -0.5083008, -0.6777344, -0.75634766, 2.5644531, 1.1621094, -0.98876953, -0.75, 1.5888672, -1.6640625, 0.5307617, -0.65185547, -0.2644043, -0.1932373, 1.1240234, 1.5849609, 3.3261719, 1.1494141, -0.8647461, -1.7763672, -0.71875]}, "B06XWJPSDJ": {"id": "B06XWJPSDJ", "original": "Brand: GasOne\nName: GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black\nDescription: \nFeatures: High output - exerting up to 65, 000 BTU, gas one\u2019s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up\nHEAT ADJUSTABLE \u2013 control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank\n14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height\nSTEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use\nLow height strong frame \u2013 Gas one\u2019s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts\n", "embedding": [-0.6357422, 1.4023438, 2.2714844, 0.15454102, 0.49072266, 1.3017578, 0.21972656, -1.5439453, 0.06286621, -0.03793335, 0.10083008, 0.21325684, -0.019515991, -2.8144531, 0.026672363, 0.51123047, -0.12463379, 1.3681641, 0.984375, 1.8837891, 2.0117188, 0.60302734, 2.3300781, -1.5820312, -1.2558594, 1.2460938, 3.1074219, -3.5449219, -1.3515625, -1.5761719, 1.8193359, 1.6787109, -1.0380859, 0.18188477, -3.9824219, -0.24328613, -2.5703125, 0.66845703, -4.4414062, -0.20300293, -0.68652344, -0.23205566, 1.3847656, 0.5756836, -1.5869141, 2.1992188, 0.8769531, -1.0380859, -0.8300781, -0.97021484, 1.6523438, 2.0390625, -0.6484375, 0.49902344, 0.15856934, 0.56347656, 0.79833984, -2.734375, 1.4560547, -0.064697266, 2.2265625, 0.22216797, -2.3574219, -0.11694336, -1.4863281, 0.28515625, -1.2851562, 0.20410156, -0.55615234, 0.9589844, 2.8261719, 0.6694336, -1.4052734, 0.31884766, -0.04949951, -1.3837891, -2.3027344, 1.8984375, 1.9941406, -1.3955078, -1.8867188, 2.5058594, 1.5449219, -1.1894531, -1.1699219, 0.025985718, -1.2685547, -0.6958008, 2.5898438, 1.3037109, -0.84033203, 4.4648438, -3.1933594, -3.7011719, 2.9238281, 0.45532227, 0.13061523, 0.78271484, 0.67089844, 0.7631836, -0.8388672, -1.1074219, -2.2070312, 1.0546875, -1.2265625, -1.2402344, 1.1806641, 0.6611328, -3.0839844, 0.07550049, -2.4804688, -1.5693359, 1.6074219, 0.5600586, 1.3154297, 0.14367676, -0.28344727, -0.03918457, 4.0195312, 1.1503906, 3.4707031, 0.2800293, -0.049591064, 0.4128418, 0.6640625, 2.3613281, 0.2626953, 0.15844727, 3.0527344, -2.03125, -1.2548828, -2.3339844, 2.1757812, 0.45214844, 0.56591797, -0.94091797, -1.0078125, -3.1445312, -3.2441406, -0.70996094, -1.7666016, 1.7880859, 1.5634766, -0.50634766, -3.140625, -0.7265625, -0.3701172, 1.6298828, 0.6616211, -1.3447266, 0.17871094, -1.9316406, -0.4248047, -1.2910156, 1.8789062, 0.75927734, -1.3808594, -2.7246094, 4.875, 0.9370117, 0.2553711, -1.3583984, -1.2685547, 2.5488281, 0.97314453, -1.015625, 0.72998047, 0.70751953, -0.7084961, 0.75634766, -0.8408203, -2.09375, -1.1757812, -0.66796875, 0.328125, -0.35742188, -0.47314453, 3.0078125, 0.4567871, -0.39916992, -3.0644531, -2.7558594, 0.7910156, -0.9379883, -0.14550781, -1.3740234, 0.35913086, -0.019226074, 0.8671875, -0.6538086, -0.40405273, -1.4580078, 1.2539062, 0.55029297, 0.61328125, 0.11352539, -1.9482422, -0.5053711, -0.8925781, 2.171875, -0.9194336, -0.5800781, 0.7573242, 0.4987793, -2.3515625, -0.55566406, 0.9970703, -1.3876953, 0.6948242, -0.025802612, 0.55029297, 0.5004883, 2.6835938, -0.096191406, -1.0429688, -0.51953125, 2.2226562, 2.5429688, 1.8671875, 2.2265625, 0.37573242, -1.9013672, 1.4785156, 1.2216797, 0.21813965, 1.8730469, 0.38183594, 0.12683105, -0.65966797, -1.4228516, 2.6699219, 1.015625, 0.7919922, -0.38452148, 0.54248047, 2.9238281, 1.7724609, -1.5214844, 0.10681152, 0.21142578, 1.8271484, -2.3828125, -3.234375, -0.52783203, -2.3828125, 1.3056641, -1.3847656, 0.47680664, 2.1308594, 1.3349609, 1.0078125, -0.92089844, -0.95654297, -0.82958984, -1.5917969, -0.9223633, -0.9243164, 1.6455078, -1.3759766, -2.765625, 2.7402344, 0.113708496, 0.4033203, -0.1673584, 0.79296875, -1.1503906, 1.5957031, 1.1347656, -2.3027344, -0.76416016, 0.8457031, 0.61865234, 3.3359375, -1.28125, 1.8701172, 0.8911133, -1.8671875, 3.2226562, 0.7290039, 1.4003906, 2.3945312, -0.4350586, 1.0029297, -2.1210938, 0.81884766, 1.5908203, 3.0175781, -0.38598633, -1.1494141, 1.1845703, 3.8378906, -0.6503906, -2.4707031, 1.5361328, -1.8173828, 0.546875, 1.8388672, 0.51953125, 0.4921875, -0.85302734, 2.0527344, 0.2310791, -0.46606445, 1.2988281, -0.48120117, 0.07043457, -0.80859375, -1.0976562, 0.60058594, -0.15563965, 0.35351562, 0.3881836, -1.7373047, 2.0175781, -1.3017578, -0.58447266, 3.0957031, -2.6855469, 1.4755859, 0.54833984, 1.3310547, 3.2285156, 2.5507812, -1.3496094, 0.53564453, 0.7758789, 0.5463867, 0.3959961, -0.56396484, -1.1103516, -1.9716797, -2.0546875, 4.684925e-05, -1.2685547, -1.7861328, -0.29077148, -1.6103516, -3.2070312, 0.35766602, -2.5839844, -2.0078125, 1.7587891, -1.5498047, 1.8007812, -0.29223633, -2.5527344, -1.6630859, 0.0009646416, -1.3818359, -0.7446289, 1.828125, 1.0097656, -1.9189453, -1.9003906, 0.71240234, -0.2409668, -0.6826172, 0.18518066, 1.1171875, -0.15734863, 1.1132812, -0.7709961, -0.43920898, 0.8955078, 1.1787109, -1.8779297, 1.5146484, -3.5449219, -0.4387207, -2.0566406, 0.43579102, 0.38330078, -0.3725586, -3.0097656, -1.1572266, -0.27954102, -0.34692383, 2.4042969, -0.7446289, 1.8544922, -0.74072266, 0.16845703, 0.5385742, -1.9560547, -2.2207031, 0.5439453, -1.3388672, -2.1464844, -0.6171875, -4.0546875, 0.119262695, -0.8745117, -0.47998047, -0.37451172, 0.57666016, -1.1113281, 0.31396484, -0.5678711, -1.5302734, 0.36547852, 0.8725586, -0.75439453, -1.7080078, -2.8378906, -1.1044922, -2.0351562, 0.94677734, -0.38720703, 1.0390625, -0.37451172, -0.77246094, 2.0566406, 0.6713867, -0.46728516, -0.5058594, -1.8642578, 3.6972656, 1.4228516, -2.5996094, 2.6308594, -2.21875, -1.2021484, -1.7919922, -0.19665527, 2.6289062, -0.22314453, 3.0703125, 0.05923462, 0.00022315979, 0.14099121, 0.5439453, 0.39990234, -1.9794922, -0.46728516, 1.1962891, -3.0429688, -1.4794922, 0.12310791, 3.0546875, -1.9902344, 0.3569336, 2.9609375, 1.6035156, 2.1796875, 2.6054688, 1.2148438, -0.12719727, -0.3803711, -0.25073242, 3.1992188, 0.53515625, 0.38134766, 0.08416748, 0.88916016, 0.3388672, 0.96972656, 1.5712891, 0.5253906, 3.7617188, 2.65625, 0.99658203, 0.05987549, -0.30249023, 0.13232422, 1.4824219, 1.8486328, 3.7675781, 0.82421875, 0.91259766, -0.38671875, -1.1347656, 1.2470703, -2.7402344, -2.0332031, 0.3479004, 0.46850586, 1.1699219, 1.1435547, -0.15820312, 0.18371582, 0.63964844, 0.5708008, -0.33984375, -0.19128418, 0.94433594, 0.4284668, -0.21203613, -1.1611328, 1.5263672, 0.04763794, -0.99121094, 0.1899414, 1.3144531, -1.6162109, -2.421875, 0.9873047, -0.49365234, -0.44873047, 3.2753906, 0.7758789, -0.84765625, 0.8852539, -0.3774414, -0.51904297, 0.51660156, -2.1152344, -0.14538574, -2.8515625, 0.07098389, -0.19641113, 1.0214844, 1.8828125, 1.796875, -2.0957031, 1.8496094, -3.1054688, 0.2709961, -0.27075195, -2.1269531, -1.6621094, 1.1884766, -0.4897461, 0.2052002, -0.46044922, 3.8886719, -1.0849609, -0.28564453, 2.3261719, -2.8574219, 0.018035889, -2.1757812, -3.4941406, 1.2050781, -1.1181641, -0.5415039, 2.3808594, 0.5107422, 0.640625, -0.30639648, 1.7949219, -1.8222656, -1.3212891, -0.20153809, 1.2128906, -1.7392578, -1.0576172, 2.1523438, -0.5131836, -2.5078125, -2.453125, -0.26489258, 0.5498047, 0.515625, 1.6630859, -3.7167969, 1.09375, -0.9277344, -0.12902832, -0.5258789, -0.17883301, -0.07720947, -2.1660156, -0.121276855, -2.5917969, 0.9511719, 0.78027344, 0.3293457, 0.11468506, 3.1621094, 0.9658203, -1.5332031, 1.2460938, 1.296875, 2.2421875, 0.07019043, -2.1601562, -2.7421875, 1.5878906, -0.56347656, -0.51464844, -0.23547363, -2.1523438, -0.7451172, 2.5605469, 1.5722656, 1.2822266, 0.13024902, 0.98095703, -3.3847656, -1.4648438, 1.5673828, -2.5820312, -1.9326172, 1.4746094, 1.5605469, -1.7304688, 0.54052734, -1.9589844, -0.7182617, 0.23059082, -0.25097656, -2.4023438, 2.5820312, 2.4335938, 0.8330078, 1.5605469, -0.27685547, -3.171875, -0.06451416, 0.9213867, -1.4316406, 1.1699219, 0.15881348, 0.36767578, 1.8154297, 1.2226562, -1.5009766, -0.66845703, 3.3007812, -1.5390625, 0.94384766, -2.734375, -0.18017578, -1.1640625, -0.30200195, -0.4777832, -1.4287109, 1.7949219, 1.3183594, -0.84521484, 0.3083496, 1.1162109, -1.6484375, -0.26757812, 1.8447266, 0.17736816, -0.25170898, 1.9521484, 1.2871094, -0.50341797, 0.51123047, -0.00724411, 1.1386719, 1.8261719, -0.3486328, 0.14660645, -0.098083496, -0.36914062, -1.9667969, 2.7128906, 1.3701172, 1.2773438, 3.7324219, 1.7822266, -0.5522461, -0.5883789, 0.17089844, -3.0527344, -1.2978516, -0.26220703, -1.0605469, 1.5810547, -0.03564453, -2.1308594, 0.51464844, 4.6210938, -0.95166016, 2.5605469, 0.67578125, -0.9111328, 1.2890625, -1.9404297, -1.4023438, -2.4511719, 0.99072266, 0.51904297, -1.84375, 0.6743164, -1.9560547, 1.9326172, 1.6064453, 0.18811035, -0.88378906, 1.9638672, -1.1513672, 0.91845703, -1.0097656, -1.0615234, -2.4003906, 1.609375, 2.6503906, 3.0039062, 0.84814453, 1.2363281, 0.72265625, -1.1953125, -1.1679688, -0.36743164, 2.4824219, -2.2304688, -2.3925781, 0.96875, -0.43847656, 0.6557617, -2.3164062, -0.6796875, -0.34887695, 0.6459961, 1.4628906, 1.0615234, -0.118774414, 0.18664551, -1.4169922, -5.0859375, -0.7583008, 1.53125, -0.25390625, -1.0351562, -1.8964844, -0.7866211, -0.21643066, -1.2177734, -0.80566406, -2.5605469, -0.09454346, -1.9257812, 0.081970215, 0.9560547, 1.8300781, -0.74072266, -0.42041016, 0.94921875, 0.080566406, 0.8774414, -2.3320312, -1.8515625, 0.8408203, -1.5898438, 0.20996094, 1.4589844, 1.0126953, 0.39501953, 3.5546875, 0.3635254, -2.4355469, 2.859375, -2.0820312, -0.04321289, 0.6435547, -1.5517578, 0.59521484, -0.29003906, -1.1044922, 1.1816406, -1.5556641, -0.54833984, -0.6796875, 0.91503906, -0.80566406, 0.98095703, -0.30517578, -2.2207031, 1.8867188, -0.8286133, 1.4570312, 2.3828125, -1.1201172, -1.1191406, -1.4697266, -0.9067383, -0.48486328, -3.5898438, 0.18884277, -0.9453125, -0.28930664, 1.2392578, 0.38183594, 0.7451172, 0.5288086, -0.42211914, -0.7421875, 1.2890625, 0.18066406, 3.3046875, 1.796875, -2.3007812, -1.4023438, -1.4052734, 0.10644531, 1.4941406, 0.7158203, -0.5957031, 0.96191406, 0.5151367, 0.22460938, -0.5864258, 0.32202148, 2.7441406, 1.4316406, -1.1533203, 0.93115234, 3.7695312, 0.24475098, -0.5180664, 0.68115234, -1.0712891, 0.40185547, 3.0136719, 2.2324219, -0.46557617, 1.4277344, -2.8828125, 2.4296875, -0.45996094, -2.5136719, 0.37890625, -2.2089844, -1.3857422, -2.5292969, -3.2128906, -2.7753906, 0.032226562, 1.0107422, -2.234375, -1.0576172, 3.4257812, 0.099609375, 1.203125, 2.3222656, 2.8613281, -0.11798096, 0.95996094, -1.5439453, -0.81152344, 2.4492188, -2.5917969, 1.3476562, 1.4443359, 0.0770874, -1.0048828, 1.4140625, 1.4707031, 3.734375, 0.51464844, 1.4570312, 1.84375, 0.3696289, 2.8320312, 0.99609375, 1.0400391, 1.8232422, 0.4831543, 1.2216797, 0.8574219, 0.9785156, -1.1621094, -0.12054443, -0.14770508, -1.0400391, -0.7963867, 0.51660156, -0.45629883, 0.7138672, -3.8027344, 0.41308594, -1.2666016, 0.6064453, -2.0917969, 0.8774414, -0.7548828, -1.0048828, 0.38671875, 0.07196045, 0.2565918, -0.18286133, -1.0253906, -0.23327637, 0.22814941, 1.3085938, -0.95947266, 1.4169922, -0.8198242, -2.4140625, 1.0712891, 0.08001709, -0.087646484, 0.46948242, 0.7885742, 1.1621094, 0.33007812, 0.6640625, 2.3886719, -3.8027344, -0.19067383, 0.18261719, 2.0585938, 0.026535034, -0.7680664, 3.140625, -1.1181641, -2.1230469, -4.96875, 4.8710938, 1.1630859, 0.35791016, -0.059448242, -2.2910156, 2.5859375, -1.1865234, 1.3310547, -3.4707031, 2.1875, 0.36914062, 0.1270752, -0.64453125, 0.066101074, -1.9072266, 3.4257812, 1.6943359, -1.7060547, 0.46118164, 2.375, 0.91503906, 0.72265625, 1.0742188, 0.13232422, -1.7246094, -1.3447266, 2.5273438, 0.63623047, -2.3300781, 0.50146484, 2.2324219, 1.0332031, 1.2568359, 1.4521484, 0.056121826, -1.0712891, -0.98828125, -0.5722656, -0.79785156, -2.0429688, -1.2861328, -1.0019531, 0.35424805, -1.6982422, -2.0527344, 0.72216797, 0.22607422, -0.27905273, 0.41064453, 2.3085938, -0.40039062, 0.3017578, 1.1464844, -0.19616699, -0.0035076141, -1.0126953, 0.8022461, -1.4775391, -1.4267578, -0.72558594, -0.85595703, -0.88378906, 0.36499023, -0.24328613, -1.5849609, 0.03164673, -0.40942383, 1.2001953, -0.67041016, 1.1230469, 0.76416016, -1.4951172, -0.2866211, 2.5058594, -1.3330078, -0.18115234, 0.3388672, -2.609375, 0.20910645, -0.3083496, -1.2587891, 0.54541016, 3.5800781, 1.2822266, 1.5888672, -3.5410156, -2.3203125, -1.53125, -1.9677734, -0.34545898, -0.59814453, -1.0410156, 0.10430908, 1.6650391, 1.9648438, -0.53222656, 0.16223145, -0.35229492, -1.1630859, 1.4091797, 1.3046875, 2.1855469, -0.47314453, 0.53466797, -0.4741211, 2.2578125, 2.6210938, -0.74072266, 0.63378906, 1.0410156, -1.3222656, -3.8222656, 0.70996094, -0.79785156, 0.29223633, -0.21118164, 0.82910156, 2.6992188, 0.56689453, -0.5185547, -1.9511719, -1.8671875]}, "B010Y82OQU": {"id": "B010Y82OQU", "original": "Brand: Camco\nName: Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protect your propane bottles from flying debris\nCompatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top\nDimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D)\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer.\n", "embedding": [0.33666992, 1.1220703, 3.5761719, -0.4338379, -1.2275391, -2.2480469, 0.24182129, -0.4411621, 1.6904297, 1.8125, 0.82373047, -0.059753418, 0.47607422, -3.6054688, 1.5800781, -1.0292969, -0.5136719, 1.9169922, 2.9179688, 0.32055664, 2.2910156, 0.41674805, -0.5292969, -0.6196289, 0.78759766, -0.68847656, 3.0488281, -1.8574219, -2.1699219, 0.77246094, 1.1201172, 0.74072266, -0.19567871, 2.7402344, 1.0986328, -1.2910156, -0.4650879, 0.13110352, -3.1699219, 0.1940918, -3.7910156, -0.5546875, 3.7792969, 1.2314453, -0.69921875, -0.123168945, -0.30419922, -1.921875, 1.4169922, -2.2246094, -0.19006348, 1.5400391, 1.3798828, 0.86035156, -1.4492188, 0.16064453, 0.27416992, -1.3017578, 0.28466797, 1.7880859, -1.0253906, 0.09613037, -2.1542969, 1.3994141, -1.4257812, 1.0751953, -1.8994141, -0.96875, 0.5385742, 2.2714844, 1.28125, 2.0214844, 0.41674805, -1.8623047, 1.0175781, 0.35546875, -1.8828125, 0.5600586, 0.8623047, -2.1289062, -0.41577148, 2.8671875, -1.8974609, -2.4179688, -1.6455078, -1.5449219, -0.14990234, 1.0488281, -0.43359375, 0.6479492, -0.9560547, 1.6953125, -2.6289062, -3.5488281, -1.0810547, 0.5751953, 2.0410156, 1.5751953, 3.5136719, 2.7089844, 0.00063848495, -0.42822266, -1.9306641, 1.6953125, -2.8398438, -2.421875, 1.6542969, -1.8994141, -1.7021484, 1.4580078, 0.07373047, 0.3737793, 0.3972168, -2.1445312, -0.17773438, 0.68115234, -0.39233398, 0.14819336, 1.9326172, 0.6791992, 4.6328125, -0.81103516, 0.5996094, -1.2089844, 2.1269531, 1.5126953, -0.23876953, 1.5380859, 3.0644531, 0.18774414, 1.6044922, 0.44433594, 0.34570312, -0.38891602, 0.8383789, -0.01309967, -1.3505859, -1.3339844, -2.0996094, 1.1103516, -3.3964844, -0.015052795, 0.62597656, 0.55908203, -3.8164062, -0.93115234, -1.7148438, 1.671875, -1.0117188, -2.7460938, -0.26293945, -3.390625, -0.9838867, -0.9013672, 0.30419922, 0.72216797, -0.013748169, -3.9863281, 0.99365234, 2.5371094, 3.6464844, -0.78466797, 0.0004506111, 1.4511719, 0.84228516, -2.078125, 0.33154297, -0.53222656, -1.5292969, 1.0527344, -0.3239746, -1.5869141, 0.04498291, 0.58154297, -1.1552734, -0.35253906, 1.7675781, 1.2900391, 1.0283203, -0.39819336, -2.9160156, -0.2902832, -0.6411133, -0.76904297, 0.56152344, -0.90234375, -2.0488281, -0.93896484, -0.28051758, -0.3696289, -2.2050781, 0.6479492, -0.734375, -0.43481445, -1.1181641, -3.1796875, -2.0039062, -1.9003906, -0.024505615, 1.6181641, -0.50683594, -0.9189453, -0.69433594, 0.7216797, -2.3085938, -0.7114258, 2.6113281, 1.4648438, 1.359375, 0.5756836, 0.16711426, -0.5708008, 1.7177734, -1.796875, -2.0664062, -1, 0.30249023, 0.6508789, 1.3251953, 1.6181641, 0.78271484, 0.60595703, 0.91748047, 0.71533203, 0.69970703, 2.9667969, 0.84375, 1.2060547, -1.3007812, -0.7709961, -0.23840332, 1.6162109, -1.9121094, 0.17504883, -0.6357422, 1.3398438, -0.30029297, -1.1044922, -0.065979004, -0.78466797, 1.1201172, -0.04421997, -1.5839844, -0.7944336, 1.8671875, 2.7695312, -1.0957031, 1.9550781, 2.5273438, -1.1992188, 0.32617188, -0.7895508, 0.5957031, -1.109375, -0.77685547, 2.0683594, 1.1953125, -0.0026855469, 0.60791016, -3.3535156, -0.26733398, 1.1455078, -1.4667969, -0.077697754, -0.17211914, 1.7919922, 0.8105469, -0.48706055, -1.4160156, 1.4287109, 0.8251953, 0.14953613, -0.0017156601, -0.7104492, 1.3007812, 0.9838867, -0.025283813, 1.6806641, 0.9038086, 2.40625, 1.5302734, -0.2680664, 1.6542969, -3.2734375, 1.6347656, -0.105041504, 2.5058594, 0.041778564, -2.3066406, 0.6376953, 2.0761719, -0.004623413, -0.20788574, 1.7021484, 3.7753906, 1.2675781, 3.9296875, -0.52685547, -0.22558594, 0.97509766, -1.4824219, 0.23303223, -0.9321289, -0.06744385, -0.31860352, -1.0068359, -0.36279297, -0.71777344, 1.4931641, 0.7265625, 1.0371094, -1.1630859, -1.6181641, 0.17956543, -1.0136719, -0.90234375, 4.0898438, -2.1660156, -0.031341553, 2.1152344, 1.1210938, 2.4179688, -0.4020996, -1.8623047, 1.1679688, 0.7294922, -1.8125, 0.93847656, 0.8251953, 0.50341797, 0.50683594, -2.6289062, 2.5996094, -0.18322754, 0.46069336, 0.4892578, -2.3574219, -0.69091797, 0.73095703, -1.0644531, 1.0859375, -1.5039062, -1.9472656, 2.5390625, 1.0634766, -0.5996094, -0.40405273, 1.984375, -0.87646484, -1.2167969, 0.16625977, 1.8525391, -1.2167969, -4.3007812, 0.44262695, -0.17871094, -1.6904297, 1.9951172, -1.0166016, 0.44482422, 0.065979004, 2.2109375, 2.3613281, -0.7871094, -0.7915039, 0.21118164, 0.76123047, -3.6640625, 1.5400391, -2.8574219, -0.5776367, -3.0273438, -0.15026855, -1.8232422, -2.0761719, 1.7832031, -1.4628906, 3.4589844, 1.4228516, 1.6191406, -0.6899414, -1.5517578, -0.13098145, -1.5693359, -2.3027344, -0.24279785, 1.6103516, -1.8271484, -0.057434082, -5.1328125, -0.61279297, -2.453125, -0.50390625, -0.5444336, -1.5791016, -0.9638672, -0.5878906, -0.80615234, -0.37109375, -0.19946289, 2.640625, -0.34814453, -1.3730469, -0.26171875, 0.19348145, -1.1025391, -0.96875, -0.85009766, 1.3554688, -1.0917969, 0.34765625, 0.36987305, -1.4306641, 2.9511719, -1.4716797, -4.3398438, 0.57128906, 3.2851562, 1.3955078, 1.8496094, -1.4101562, -1.546875, -1.9423828, -0.5986328, 2.71875, 2.7695312, 1.8144531, 2.0371094, 0.103393555, 0.8261719, -1.0390625, 0.10827637, 0.17004395, 1.3242188, 2.9179688, -1.1953125, 0.49682617, 2.1074219, 3.6738281, -3.1855469, -0.9951172, 0.6977539, -1.9130859, 3.5039062, 2.7910156, -2.9882812, -0.9199219, 0.83154297, 2.2480469, -0.8041992, 1.8203125, 0.62646484, 1.4423828, 2.3535156, 0.6459961, 0.6040039, 2.1308594, 0.42236328, -1.2216797, 0.7651367, 1.1142578, -1.7900391, -0.16992188, 0.82128906, -2.3613281, -0.072387695, 1.9423828, -0.49072266, 2.4785156, 1.5058594, -1.2441406, -1.6855469, -2.2148438, 0.8173828, 0.44189453, 0.43920898, 0.14379883, -0.16882324, -1.2744141, 0.09942627, -1.9042969, 1.9326172, -0.7182617, -1.1318359, 1.4355469, -2.6445312, -0.7988281, -2.4511719, 3.4335938, -0.5986328, -0.32861328, -0.3034668, 1.7275391, -1.0908203, -2.2460938, -0.76220703, -0.44702148, -2.9492188, 3.9941406, 3.9785156, -3.2734375, -0.33764648, -2.15625, 2.5195312, 1.2519531, -1.0996094, -1.0644531, -2.5585938, 1.6923828, -2.2871094, -0.27416992, 0.57470703, 2.0058594, -2.3710938, -0.3022461, -0.3642578, 2.1738281, 1, -0.7910156, -0.5859375, 0.31445312, -2.8535156, 2.4160156, -0.25683594, 2.2441406, -0.076049805, 1.9121094, 0.5595703, -0.7597656, 1.4785156, 0.51171875, -2.6835938, -0.81152344, 0.13000488, -0.2109375, 4.8476562, 0.31982422, 1.5498047, 0.5991211, 0.39648438, -3.9941406, -1.1826172, -2.4082031, 1.1123047, -2.9082031, -1.6474609, 1.1679688, 0.91015625, -2.7617188, -1.7001953, -0.3955078, -2.1914062, -0.27978516, -0.796875, 0.46044922, 1.4316406, 0.36450195, -0.27124023, 0.37548828, 0.7602539, 0.29882812, -0.40063477, -1.1513672, -1.8847656, 2.4648438, -0.4255371, 0.41064453, 0.4794922, 2.2695312, 1.1494141, -1.4589844, -0.5654297, -1.859375, 1.0214844, -1.3730469, -3.2636719, -0.72314453, -0.46948242, 0.7236328, -0.23461914, -0.024017334, 1.2460938, 1.2509766, 0.37963867, -0.2512207, 1.0761719, 1.4355469, -2.8769531, -1.7822266, 3.0292969, -0.93359375, 0.61328125, 0.5185547, -0.35668945, 1.3007812, -1.3544922, -1.0048828, -2.6171875, 0.69091797, 0.5439453, 1.8056641, -4.7773438, 1.7978516, 2.546875, 2.8242188, 1.3925781, -0.21508789, -1.4658203, 0.8027344, 1.609375, 1.421875, -1.1767578, 0.47827148, 0.23254395, -0.6035156, 0.41503906, -2.4101562, -1.3173828, -0.55078125, -1.9794922, 0.44018555, -0.8676758, 0.93847656, -2.0390625, -0.6542969, 0.4243164, -1.6894531, 3.8085938, -2.2519531, 1.1923828, -0.24401855, -1.1005859, -1.640625, 3.0332031, 0.9013672, -0.19335938, 2.1660156, -2.2910156, -0.9199219, -0.19445801, 1.7607422, 0.63183594, 0.44262695, -0.84521484, -1.796875, 0.15966797, 1.0605469, 0.26171875, -1.5146484, 1.9150391, 2.8125, 1.1748047, 0.79541016, 3.0566406, 0.33007812, 1.6943359, 1.1142578, -1.140625, -1.1914062, 0.21691895, 1.6347656, 3.3808594, -1.4726562, -4.0742188, 2.359375, 1.2392578, -0.25927734, 1.4023438, -0.101989746, -0.90283203, -0.62939453, -3.8242188, -1.9599609, -0.44482422, 1.3554688, -0.19555664, -0.4663086, 1.0214844, -0.22290039, 0.60595703, 3.9414062, 1.0195312, -1.8447266, 0.12109375, 1.8203125, -2.4492188, -3.8457031, -1.9082031, -4.3984375, -0.27661133, -0.6977539, 1.4277344, -0.2265625, 1.3105469, 2.7265625, -2.1542969, -0.36010742, -0.58496094, 0.051483154, -1.8056641, -1.5625, 1.9355469, -0.1665039, -0.56689453, -0.0074310303, 0.5991211, 0.6508789, 2.5429688, 1.9169922, -0.6796875, -0.44702148, 0.36254883, -3.3046875, -4.7773438, -1.0771484, 1.0751953, -0.5415039, 0.5102539, -1.0029297, -1.3955078, 0.9116211, -2.0546875, 0.33544922, -2.1230469, 0.51464844, -1.0429688, -1.4375, -0.63134766, -0.3564453, -0.41235352, 0.6928711, -0.9213867, -1.0019531, -1.9306641, -3.6445312, -3.2890625, 1.4023438, -1.0068359, -0.22473145, 0.75146484, -0.004207611, 1.9345703, 1.0410156, 1.8076172, -0.8676758, 2.1582031, -1.3603516, 0.48242188, 2.4589844, 0.35375977, -1.4804688, 3.3652344, -0.30639648, 1.6367188, 2.0488281, 1.6748047, -2.8085938, 0.7402344, 1.0126953, -0.25610352, -0.70166016, 1.6074219, 2.4863281, 0.45043945, 1.4550781, 1.7597656, -1.6728516, -1.8193359, -1.2333984, -0.90625, -1.4570312, -1.6796875, -1.4785156, -0.43359375, 0.78125, 2.8046875, 0.7919922, 1.2832031, 0.5258789, 1.0986328, -2.3339844, 0.58740234, -1.6826172, 0.73291016, 0.57177734, -2.6113281, -2.4550781, -2.7695312, 3.4609375, 0.021957397, 0.46191406, 0.39453125, 0.55078125, -0.5888672, 1.9580078, 0.6191406, 0.86376953, 0.3605957, 2.5117188, -1.4335938, 1.1621094, 3.4140625, -0.24658203, -0.20495605, -0.96240234, 0.14501953, -0.76416016, -0.45825195, 3.2402344, -2.8007812, -0.3569336, 0.5678711, -0.17663574, -0.31640625, -0.9814453, 0.22180176, -2.5898438, -0.41064453, -1.4580078, -1.4101562, -4.5976562, 2.0957031, -0.3840332, -0.3227539, 1.4384766, 0.5541992, -2.2207031, -0.28564453, 2.3144531, 0.097473145, -0.99609375, -0.8828125, -1.109375, 0.08081055, 2.2890625, -3.1054688, 0.41235352, -1.890625, 0.61279297, -0.61328125, 0.22717285, 0.17980957, 0.48999023, 2.8378906, 2.2421875, 3.9785156, -0.23278809, 2.0957031, 0.2487793, 1.0419922, 2.5527344, -1.3535156, -0.23120117, 0.85498047, 2.3789062, 3.2636719, -1.578125, -0.029876709, 0.9326172, -0.8984375, -1.1728516, 0.81152344, 1.5800781, -3.6601562, -0.5727539, -0.4567871, -0.49682617, 1.7949219, 1.6572266, -2.203125, -2.6816406, -0.39111328, -1.1689453, 2.3886719, -0.5810547, -0.40698242, 0.65722656, 1.0849609, 1.5292969, -0.09051514, 0.17102051, -2.6542969, -1.7597656, -0.16516113, 1.1064453, 0.10308838, 1.1015625, -0.29614258, 1.1289062, -0.5805664, 1.4443359, -0.55859375, -1.4267578, 2.1425781, -1.2109375, 1.9130859, 2.4960938, -1.3544922, -0.115356445, 0.9453125, -0.3383789, -3.0195312, -0.56591797, 0.5805664, 0.7319336, 0.46435547, -3.7988281, -0.057495117, -0.87109375, 1.5849609, -2.78125, -0.26513672, -0.5048828, -4.4765625, 1.1435547, 1.6279297, -0.94140625, 3.6914062, 0.97998047, -0.41308594, 0.5053711, 0.29785156, 0.79785156, 0.72558594, -0.0010175705, 0.47998047, 0.4350586, -1.0175781, 2.8789062, 1.9267578, -0.14050293, 0.21655273, 2.4160156, 0.44360352, 0.49072266, 1.5292969, -2.1582031, 3.1171875, 1.0693359, -0.3330078, 0.7734375, -2.2226562, 1.6005859, -0.31347656, 0.69091797, 1.0644531, -0.27954102, -0.41748047, 2.0800781, -3.2695312, 0.24902344, 0.41748047, -0.3388672, 2.1992188, 0.70214844, -0.96484375, -1.2841797, 0.17272949, 1.2236328, -2.0039062, 0.7109375, -1.2226562, 1.6191406, -0.27612305, -1.4462891, -0.74658203, 0.9736328, -0.4387207, -0.49609375, 0.71777344, 0.14831543, -0.2722168, -0.69970703, -0.19726562, 0.6767578, 0.0690918, 0.72509766, -0.59472656, -0.6777344, -0.42260742, 0.8046875, -0.007041931, -0.046691895, 0.59716797, 1.75, 1.8271484, 1.0009766, 2.2636719, -2.4160156, -1.3300781, -3.8691406, 2.8632812, 1.4042969, -1.6875, 0.6303711, 1.8144531, 2.3242188, -2.0195312, -1.3369141, 0.041778564, 0.46948242, 1.5068359, -1.5917969, 0.5649414, 0.48266602, -0.6870117, 0.9873047, 3.8691406, 3.2246094, -1.078125, 0.08111572, 1.359375, -2.9023438, -2.1621094, -1.3046875, -0.32421875, -2.1386719, 0.27734375, 2.890625, 4.109375, 0.7734375, -0.8154297, -3.1503906, -0.796875]}, "B077RVXR9Y": {"id": "B077RVXR9Y", "original": "Brand: BroilPro Accessories\nName: BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder\nDescription:

          BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


          \u203bBroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
          \u203bMaterial:Heavy Duty Vinyl With 300D Polyester lining.
          \u203bDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
          \u203bThis propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
          \u203bEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
          We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

          \nFeatures: Material:Heavy Duty Vinyl With 300D Polyester lining.\nDimensions:Dia13\"x17.5\"H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.\nThis propane tank cover is prevent your cover from experiencing premature fading and damage from the sun.\nEasily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit.\nWarranty- 90 Days 100% Money Back and 24 Months Guarantee.\n", "embedding": [0.9819336, 2.7324219, 2.2519531, 0.30493164, -1.0429688, 0.011268616, 1.4335938, -1.1962891, 1.9169922, 2.1269531, 1.4462891, -0.055389404, 1.5429688, -4.8359375, 0.52001953, 1.1640625, -0.22229004, 1.9658203, 5.078125, 1.4189453, 1.8291016, 0.29516602, 0.61572266, 0.11138916, -0.5805664, -0.7558594, 3.609375, -2.2324219, -3.0292969, 0.74072266, 1.2978516, -0.7055664, -0.56103516, 1.4404297, -1.2050781, -2.3886719, -0.65283203, 0.6582031, -2.265625, -0.9086914, -2.6035156, -0.10107422, 3.2675781, 1.8271484, -1.7958984, 0.69921875, -1.484375, -0.31982422, -0.5415039, -1.7763672, 0.5185547, 1.5712891, 1.7939453, 1.7119141, -1.1533203, 1.9306641, -0.30615234, -1.4697266, -2.1777344, 0.14538574, 1.7744141, -0.82666016, -2.0449219, 2.25, -0.69873047, 1.1787109, -1.8134766, -1.1396484, 0.6303711, 1.5283203, 2.4707031, 0.49389648, -0.2536621, -1.4833984, 1.9296875, -0.94140625, -2.9824219, 0.22265625, 0.9555664, -1.8662109, 0.9741211, 5.2890625, -1.421875, -1.8017578, -0.7871094, -1.0810547, -2.3671875, 0.28808594, 1.9033203, 0.5336914, -0.8901367, 3.125, -1.7451172, -3.9902344, -0.11968994, -1.3242188, 3.9160156, 1.0566406, 3.3144531, 1.1542969, 0.47192383, -0.84033203, -2.71875, 0.9824219, -1.3623047, -1.6494141, 0.58203125, -1.5009766, -1.3222656, -0.43945312, -0.8540039, 0.49316406, 3.5253906, -0.68310547, -0.34179688, -0.5727539, -2.4589844, 1.8369141, 2.5703125, 2.7597656, 3.5449219, 0.01737976, 0.20019531, -1.7529297, 1.2597656, 1.2744141, -1.5849609, 1.2324219, 2.8300781, -1.1806641, 1.6005859, -1.65625, 0.9667969, -0.60009766, -0.33032227, -0.8383789, -2.1992188, 0.28320312, -2.5410156, 0.08892822, -2.2089844, -0.99853516, 0.3857422, -0.16113281, -3.1035156, 0.09124756, 0.1463623, 1.6181641, -0.7944336, -2.3203125, 0.49243164, -2.6425781, -0.10455322, -1.0302734, 1.5126953, 1.3447266, 0.21289062, -3.1640625, 2.4023438, 1.4501953, 2.296875, -2.3730469, 2.1777344, 2.1796875, 0.38842773, -3.0703125, 1.140625, 0.85009766, -0.60595703, 1.6357422, 1.0263672, -2.3730469, -0.7480469, 0.79248047, 0.34692383, -2.0878906, 0.9433594, 2.6953125, 0.032958984, -0.107421875, -2.6933594, -2.7050781, -0.40039062, 0.6142578, 0.12164307, -0.45898438, -2.4628906, 0.021133423, 1.3330078, -0.8256836, -1.9501953, 1.8291016, 0.41015625, -0.1694336, -0.8286133, -1.9990234, -1.6806641, -1.3896484, -0.54345703, 1.28125, -2.2207031, -1.4267578, 0.1237793, -0.4777832, -2.5449219, -0.8725586, 2.3007812, 0.17053223, 0.42211914, 2.1699219, -0.7416992, -1.6611328, 3.0253906, -0.9458008, -1.1621094, -0.8208008, 2.953125, 0.8046875, 1.9892578, 1.7666016, -1.1835938, -0.44726562, 1.0673828, 2.5761719, 1.7412109, 2.2050781, 0.8618164, 1.1865234, -2.3613281, 0.20263672, 0.47094727, 2.5, -0.76708984, 0.65185547, -2.0507812, 0.9428711, -0.059936523, -3.5957031, 0.84375, 0.5317383, 0.42651367, -1.296875, -1.4013672, -2.3222656, -0.38110352, 4.6679688, -1.8398438, 1.6650391, 3.1347656, -0.59033203, 0.65185547, -1.5195312, 2.4550781, -1.1230469, -0.52197266, 1.5380859, 0.63916016, 0.94140625, -1.5039062, -2.7949219, 0.984375, 0.6459961, -1.9248047, -0.009391785, -0.059661865, -0.23913574, 2.2441406, -0.013946533, -2.8535156, -0.7832031, 1.5732422, 1.0341797, -1.4208984, -2.2265625, 2.0371094, 1.1425781, -1.1181641, 2.671875, 0.13098145, 0.37109375, 1.1640625, 0.5493164, 1.7070312, -2.1074219, 1.1386719, 2.2871094, 2.4160156, -0.88671875, -1.3662109, 0.3972168, 4.296875, 0.3486328, -0.45410156, 3.1230469, 1.2597656, -0.65283203, 1.328125, 0.077819824, -0.68896484, -0.92041016, -0.6953125, 0.6064453, -0.27319336, 0.24890137, 1.5820312, -1.6181641, 0.101379395, -0.4091797, -0.6245117, 0.51708984, -0.11834717, -0.9243164, -1.6708984, 0.030075073, -1.4179688, -1.2568359, 2.875, -2.5195312, 1.2646484, 1.0273438, 0.29663086, 2.1621094, -0.17492676, -1.3583984, 0.9057617, 0.9628906, -1.6259766, 0.5107422, 1.0371094, -0.1895752, -0.57373047, -1.6220703, 2.5800781, -0.07122803, -1.2060547, 0.19873047, -2.5703125, -1.4501953, -0.0317688, -0.9160156, -0.03274536, -1.3759766, -2.3105469, 2.2382812, 0.8051758, -1.1669922, -0.51220703, 0.98828125, -1.4208984, -2.8203125, -0.04019165, 0.6323242, -0.087890625, -4.71875, 0.59521484, -2.0839844, -1.2558594, -1.4296875, -0.3864746, -0.47070312, -0.23181152, 0.40356445, 0.98291016, 0.6411133, -0.22216797, 0.2619629, 1.5830078, -3.7285156, 1.3828125, -2.6855469, 0.30810547, -2.8925781, -1.3085938, -2.9277344, -1.4375, 1.1787109, -1.9677734, 2.4082031, -0.005001068, 1.6484375, -1.1474609, -0.32739258, 0.64404297, -0.9350586, -3.5839844, -0.4831543, -0.43774414, -1.5205078, -0.3244629, -4.390625, -0.5708008, -1.5087891, -1.3837891, 0.04244995, -1.5224609, -1.1455078, -0.5024414, -0.82177734, -2, -0.60253906, 1.2294922, -0.049957275, -1.3466797, 0.30639648, -1.2197266, -2.5507812, -0.6333008, -1.5400391, 2.0527344, -2.1269531, 0.8833008, 0.67626953, -1.7695312, 3.5292969, -2.0996094, -3.3769531, 0.29638672, 2.6796875, 0.27246094, 1.7431641, 0.28735352, -1.703125, -1.921875, -0.58154297, 2.1777344, 2.4765625, 1.7880859, 2.6875, -0.49291992, 1.0595703, -0.37670898, 0.038208008, -0.7631836, 1.1494141, 3.6230469, -1.6132812, -0.31640625, 0.95947266, 3.6035156, -2.4550781, -0.058135986, 2.2011719, -0.20507812, 2.4355469, 1.6601562, -0.5620117, 0.11248779, 0.13635254, 1.3994141, 0.43969727, 2.0839844, 0.8129883, 1.3984375, 2.25, -0.08856201, 1.5908203, 2.9160156, 0.234375, -0.48120117, 1.2929688, -0.009986877, -1.1679688, 0.9042969, 0.61572266, -0.46777344, 0.97021484, 3.0800781, -0.8100586, 1.0800781, 0.03677368, -1.0751953, 0.2800293, -1.6494141, -0.3310547, 3.3847656, 0.58935547, -2.0449219, -0.7036133, -0.90234375, -0.3317871, -1.9619141, 0.8100586, 0.46704102, -1.2255859, 0.2783203, -1.7919922, 0.19909668, -1.3359375, 1.9179688, -0.9355469, -1.7421875, 0.16760254, 0.6118164, -1.8857422, -3.6152344, 0.080078125, -0.3359375, -2.5800781, 4.0742188, 2.6875, -2.6308594, 0.3935547, -2.7167969, 2.0175781, 2.5214844, -1.4697266, -0.70458984, -1.0048828, 0.41430664, -1.4189453, 0.21875, 1.5224609, 1.3662109, -2.6425781, -0.15197754, -1.4306641, 1.3105469, 1.0634766, -1.6953125, -0.72216797, 1.2841797, -0.08917236, 2.1855469, 1.9072266, 2.8144531, -0.41479492, 0.023925781, 1.0253906, -2.0917969, 0.66259766, -1.2900391, -4.0039062, -0.44726562, 0.31518555, -0.49194336, 2.8378906, 0.02130127, 0.32885742, 1.0234375, 0.3605957, -2.5527344, -0.27246094, -1.7617188, 0.60009766, -0.703125, -0.3100586, 2.3066406, 1.7958984, -1.4033203, -1.1630859, -0.0014305115, -2.1386719, 0.078125, 0.5395508, -1.5693359, 1.4619141, -1.7021484, 0.26782227, -1.5283203, -0.10595703, 0.56689453, 0.19396973, -1.3642578, -1.2666016, 3.0644531, -0.052093506, 0.58740234, -1.1376953, 1.5107422, 1.65625, -0.6645508, -0.19677734, 0.052246094, 2.4941406, -0.5083008, -2.1464844, -0.045776367, -0.40625, -0.19348145, 0.70751953, -1.6650391, -1.6943359, 0.2902832, -0.1583252, -0.29052734, 1.6132812, 2.4101562, 0.56640625, -2.2246094, 1.6005859, 0.06341553, -0.55859375, -1.2871094, 0.8276367, 0.54345703, -0.79541016, -1.0791016, -2.9296875, 0.4658203, -0.7524414, 0.115722656, -4.2382812, 3.0859375, 2.4179688, 2.3945312, 1.6835938, -1.0166016, 0.036132812, -0.0703125, 0.80615234, 0.72314453, -0.7504883, -0.90283203, 0.87939453, 1.5068359, 1.2197266, -1.2041016, -0.49414062, -0.0126571655, -2.4882812, -0.054901123, -0.4736328, 2.4765625, -2.1425781, -0.47460938, 0.80615234, -3.0761719, 3.8222656, -1.7001953, -0.037261963, 0.38842773, 0.5136719, -1.3466797, 2.3886719, 0.7524414, 0.38842773, 1.4404297, 0.38671875, 0.25805664, -1.4892578, 0.3449707, 1.1875, 1.2822266, -2.4042969, 0.034088135, -1.0478516, 2.1386719, -0.43359375, -0.119384766, 0.75390625, 2.6347656, 0.49438477, 1.5664062, 2.6816406, -0.890625, 1.3857422, 1.3212891, -2.2246094, 0.3005371, -0.28222656, -1.2451172, 2.1074219, -0.59814453, -3.7988281, 0.9682617, 1.1103516, -0.4716797, 1.3740234, -2.2636719, -2.609375, 0.34350586, -2.7988281, -1.8632812, -0.52685547, 0.03805542, 0.27954102, -0.43530273, 1.5986328, 0.61865234, 1.1210938, 2.5585938, 0.7832031, -2.6347656, 0.67626953, 0.546875, -1.0986328, -2.4003906, -1.1015625, -4.421875, 0.9824219, 0.10394287, -0.22033691, 0.089660645, 0.9379883, 1.7666016, -3.6640625, 0.24560547, 0.4716797, 1.4570312, -2.1367188, 0.6123047, 3.140625, -0.828125, -1.5185547, -2.1914062, -0.58447266, 0.375, 1.6835938, 0.7084961, 0.68896484, -1.0537109, -0.47875977, -4.1953125, -5.5, -1.7939453, 1.1425781, -1.1064453, 0.9667969, -0.64990234, 0.106933594, 1.1884766, -1.5898438, -0.098083496, -3.2480469, 1.5195312, -0.120910645, -1.7773438, -1.0859375, 0.29858398, 0.10821533, 0.66552734, -0.9682617, 0.74365234, -1.3935547, -2.8769531, -1.8085938, 0.12036133, -4.21875, 0.97509766, -0.79296875, -1.5507812, 2.2441406, 0.05831909, 0.3251953, -1.0400391, 1.3974609, -0.4111328, -0.4091797, 1.1611328, -0.16809082, -1.5849609, 2.0410156, 0.12420654, 2.4667969, 1.5087891, 0.66748047, -1.1826172, 0.9165039, 1.2734375, -0.60595703, -1.3154297, 1.1816406, 1.3388672, 1.0419922, 1.0615234, 2.7890625, -0.953125, -1.5224609, -2.7714844, -1.4638672, -0.97802734, -1.9492188, -1.2148438, -1.9794922, 0.4580078, 3.8574219, 1.0498047, 0.15100098, 0.5571289, 0.6088867, -1.5146484, 0.79345703, -1.4091797, 2.1386719, 0.6743164, -2.7753906, -2.7578125, -0.9667969, 3.4707031, 0.8183594, -0.7128906, -0.35058594, 1.3447266, -1.5068359, 0.5834961, -0.18395996, 2.4609375, 1.1074219, 0.7758789, 0.12200928, 0.48461914, 4.2304688, -0.890625, 1.4619141, -0.22351074, -0.8618164, -0.60791016, 2.1875, 0.9375, -2.3261719, -0.45410156, -0.5991211, -0.53564453, 0.9428711, -0.7583008, -1.6181641, -3.2109375, 0.52783203, -0.6459961, -2.5917969, -4.9492188, 0.9946289, 0.66308594, -0.1875, 0.2668457, 2.4277344, -0.15185547, 0.45117188, 2.5234375, 0.38012695, -0.4970703, -0.23583984, -1.3232422, 0.86376953, 2.0214844, -3.4785156, 1.4150391, -1.1201172, 0.96484375, -1.7548828, 1.5634766, -0.31079102, 1.3994141, 1.8232422, 3.7480469, 3.5996094, 0.124694824, 2.4863281, -0.0435791, 1.4648438, 2.2949219, -2.0878906, -1.34375, 2.8046875, 2.0214844, 2.0507812, -1.3388672, -0.5395508, -0.6010742, -0.6254883, -0.3828125, 1.3974609, 1.3232422, -2.2050781, 1.3583984, -0.78759766, 0.43286133, 1.4052734, 1.3349609, -0.4970703, -1.1845703, -0.46606445, 0.30200195, 3.6269531, -1.5195312, 1.3984375, 0.6660156, 0.6352539, 2.7324219, -0.89697266, 0.54003906, -1.2509766, -2.8261719, 0.05026245, 2.1035156, 0.06903076, 1.0585938, 0.546875, 1.515625, -0.48046875, 1.1748047, 2.0917969, -0.6347656, 2.0761719, -0.25048828, 3.0214844, 2.6855469, -2.5136719, 0.8300781, -0.5444336, -1.140625, -2.0644531, 0.64990234, 0.37573242, 2.0898438, -0.059906006, -3.7441406, 1.2216797, -0.95166016, 2.265625, -2.0605469, -0.17041016, -0.26049805, -3.4921875, -0.117492676, 2.2539062, -2.484375, 3.7167969, 0.9194336, -1.3525391, 2.1074219, 0.0031986237, 0.7519531, 1.7607422, -0.08807373, -0.42456055, 1.4716797, 0.47265625, 3.6582031, 1.28125, -1.9140625, -0.04135132, 3.375, 0.27954102, 2.1660156, 1.7978516, -2.0078125, 2.8574219, 1.0820312, -0.16003418, 1.5664062, -1.0693359, 0.028442383, 0.20996094, -0.7675781, 0.49047852, 0.2076416, 0.28564453, 1.53125, -1.6015625, 0.3449707, 1.3017578, -0.7890625, 1.8369141, 1.1279297, -1.1699219, -1.2373047, 0.49682617, 1.2431641, -1.5732422, -0.40698242, -1.8935547, 0.34301758, -0.4970703, -2.6230469, -0.75146484, -0.20544434, -0.8208008, -0.060516357, -0.0082473755, -1.0488281, -0.2475586, -0.08325195, -1.2001953, -0.37280273, -0.20800781, 0.40551758, -1.1572266, -2.1328125, -2.1113281, -0.7163086, 0.28515625, -2.2246094, 1.4375, 2.3398438, 2.3613281, -0.3359375, 1.6064453, -3.59375, -0.61816406, -2.2382812, 1.6591797, 0.57470703, 0.21008301, 1.1826172, -0.2310791, 4.1171875, -1.2158203, -2.5546875, 0.8383789, 1.4462891, 1.0810547, 0.67626953, 1.3085938, -0.8378906, 0.8808594, 1.1494141, 4.0742188, 2.5800781, -1.6601562, 1.5693359, 1.4267578, -0.7338867, -2.7675781, -0.58447266, 0.49609375, -0.9458008, 0.39135742, 2.2324219, 2.4726562, -1.2099609, -0.12371826, -2.1582031, -0.13635254]}, "B083J4G6BK": {"id": "B083J4G6BK", "original": "Brand: WADEO\nName: WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting\nDescription: Product Specification
          Propane Burner Head :
          Material: High quality Cast Iron
          Negotiability: Air Shutter can control the amount of air coming in.
          Propane Hose and High Pressure Regulator:
          Length: 4FT/48inch
          Inlet Pressure: 25-250PSIG
          Outlet Pressure: 0-20PSIG
          Type: High pressure LPG hose

          Universality:
          Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

          Brass Fitting\u00a0:
          Material: High Quality Brass
          3/8\" flare M x 1/8\" MNPT
          \nFeatures: \ud83d\udd25Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators.\n\ud83d\udd25Propane Regulator: Output pressure 0-20 PSI adjustable\u00a0with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8\"-18 UNF outlet connection.\n\ud83d\udd25Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting.\n\ud83d\udd25Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment.\n\ud83d\udd25Package Included: One cast iron high pressure burner head, one 3/8\" flare M x 1/8\" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.\n", "embedding": [-0.046844482, 2.0722656, 0.8544922, -0.46948242, -1.0869141, 0.46899414, 2.046875, -1.5957031, 0.2927246, 0.7290039, -0.21057129, 0.2866211, 2.0058594, -2.09375, -0.3203125, 0.3256836, 0.10522461, 1.1513672, 1.3447266, 1.9667969, 1.7519531, -0.6845703, 1.8261719, -2.7851562, 0.3779297, -0.06994629, 4.2070312, -2.4472656, -1.0009766, -1.7050781, 1.7949219, -0.042816162, 0.5410156, 0.41918945, -2.7207031, -0.7583008, 0.31884766, 0.6040039, -4.140625, -0.5449219, -0.07281494, 0.875, 1.3222656, 1.4433594, -2.5917969, 1.7919922, 1.3349609, 0.7636719, -0.14001465, 1.0595703, 0.7192383, -0.46655273, 0.49536133, 1.3671875, -0.70214844, 0.796875, 0.3071289, -3.2148438, 0.6508789, 0.071777344, 2.6425781, 2.140625, -2.5839844, 0.5527344, -0.32543945, 0.43554688, -0.16931152, -0.8754883, 1.1005859, 0.22570801, 1.3583984, -0.054229736, 1.0253906, 0.44628906, 2.75, -1.8466797, -2.8632812, 0.17565918, 4.515625, -0.79003906, -1.4658203, 1.9345703, 0.02279663, -1.4580078, -0.3503418, -0.15661621, 0.43359375, -0.33129883, 2.2363281, 1.6005859, -2.2402344, 2.6386719, -1.8759766, -4.9140625, 2.4902344, 0.85009766, 0.6503906, -1.25, -0.18334961, 0.0914917, -0.7573242, -0.7651367, -0.3774414, 1.4931641, -1.9316406, -0.1373291, 1.1494141, 2.0800781, -1.9013672, 0.9453125, -0.4152832, -0.8754883, 1.7792969, -0.8535156, 1.2763672, -0.4567871, -0.076293945, -1.4892578, 3.3964844, 0.43188477, 3.5195312, -1.1103516, -0.4140625, -0.3359375, 1.5488281, 1.5273438, -0.47387695, -0.16247559, 2.3691406, -2.71875, 0.2770996, -2.2773438, 2.1386719, -0.4416504, -1.2001953, -1.2646484, -1.1005859, -0.77001953, -2.9453125, -0.93310547, -3.0175781, -0.11816406, 0.37451172, -0.6069336, -2.6289062, -0.75390625, 0.046691895, 0.82128906, 0.2553711, -1.0791016, 1.0039062, -1.1826172, -0.30444336, -0.66064453, 1.6298828, 2.5898438, -0.24365234, -1.5009766, 3.3691406, 0.7919922, 0.22302246, -1.9160156, 0.06793213, 2.8457031, -1.6884766, -1.3076172, -0.1048584, 0.23828125, 0.5566406, 2.1132812, -0.22265625, -1.5771484, 0.06896973, -0.7207031, 0.7729492, -1.0361328, -1.0341797, 2.3183594, -0.62597656, 1.1943359, -4.0703125, -1.8173828, 0.45507812, -0.83447266, 2.3867188, -1.921875, -0.9199219, -0.77734375, 0.5678711, -1.8837891, -2.4121094, 0.6801758, 2.6542969, 0.9199219, -0.113586426, -1.8144531, -0.12524414, -2.4628906, 0.4020996, 1.6357422, -1.2324219, -2.609375, 0.91064453, -0.46240234, -2.7421875, 0.2849121, -0.68847656, 0.10559082, 1.5166016, 1.6474609, -0.79345703, -1.3935547, 2.3769531, 1.4492188, -0.20019531, -2.4453125, 2.203125, 0.61035156, 2.6425781, -0.02368164, -0.5175781, -0.3947754, 0.79248047, 1.65625, 2.2207031, 1.0175781, -0.8417969, -0.12017822, -1.0449219, 0.28881836, 1.4824219, 1.2597656, -1.2617188, 0.11645508, -2.0957031, 4.2109375, 0.36889648, -0.45532227, 0.49536133, 0.42407227, 1.34375, -0.47607422, -1.1074219, -1.1533203, -1.3818359, -1.1416016, -1.9169922, 1.6455078, 1.6660156, -0.67871094, 0.98779297, -1.6162109, 0.01966858, -0.9472656, -0.4880371, -0.6665039, 0.024215698, 0.38867188, -0.2512207, -1.0546875, 3.1582031, -1.0820312, -0.21496582, 1.109375, 0.52001953, -0.43676758, 2.3476562, 0.61572266, -1.2119141, -0.6953125, 0.4501953, 1.1708984, 2.7480469, 1.21875, 0.6147461, 2.4277344, -1.1201172, 0.35327148, -0.60302734, 1.6689453, -0.17541504, 0.14367676, 1.4648438, -2.4648438, 1.7714844, 1.4365234, 2.2539062, 0.32421875, -2.4238281, 2.5683594, 4.734375, -1.3046875, -2.984375, 1.6367188, 0.15844727, 0.5522461, 0.20178223, -0.2602539, 0.27783203, -1.0498047, 0.5415039, -0.017028809, -1.2666016, 2.2382812, -0.6713867, -0.53564453, -0.024551392, -0.83154297, 0.6113281, 0.38012695, -0.8378906, 0.09277344, -1.2753906, 2.5527344, -3.3164062, 0.07647705, 2.453125, -3.46875, 0.8618164, -0.5209961, 1.0029297, 1.4072266, 1.0498047, -0.7128906, 1.5488281, 1.2636719, -0.35839844, -0.043884277, 1.1416016, -1.5820312, -2.1582031, -1.2304688, -0.8833008, -1.3037109, -1.1650391, 0.7294922, -1.7421875, -2.0429688, 1.9853516, -3.0878906, 0.98779297, 2.3339844, -0.7729492, 1.4648438, -0.09124756, -2.0839844, -1.3837891, -0.59033203, -0.55078125, -0.1817627, 1.5917969, 2.1464844, -1.1474609, -4.5429688, -1.7011719, -0.75439453, -0.6948242, 0.44189453, -2.9824219, 1.8837891, -0.6088867, 0.3178711, 2.09375, 0.013046265, 1.6083984, -0.90234375, 1.8310547, -4.546875, 0.7026367, 0.7861328, 0.7841797, -1.4355469, 0.6660156, -2.1035156, 0.52734375, -1.125, -0.30566406, 2.40625, -1.5048828, 2.6894531, 0.12176514, -0.6948242, 0.29248047, -0.24230957, -2.4609375, 0.56933594, -1.3525391, -1.0996094, -0.6669922, -3.6953125, 1.3203125, -0.22998047, 0.03439331, 0.19482422, -0.12347412, -0.97753906, 1.0527344, -1.2734375, -0.62353516, 0.8300781, -0.7915039, 1.6542969, -1.0205078, 1.1308594, -0.36254883, -1.7382812, -0.9238281, 2.2441406, 2.4453125, -0.9453125, 1.0830078, 1.3994141, 0.05987549, 1.0390625, -0.07232666, -3.1386719, 1.0908203, 2.3007812, -0.6220703, 1.8583984, -1.9570312, -0.85009766, -2.5800781, -1.1914062, 2.3554688, 1.2685547, 2.0410156, -0.28295898, -0.34204102, -0.6196289, 0.5131836, 0.0046463013, -1.3642578, -0.21569824, 3.0078125, -2.1601562, -1.6396484, -0.13562012, 1.8476562, -3.7910156, 1.1699219, 2.7988281, -0.08996582, 0.20617676, 1.5673828, 0.9199219, -1.9199219, -1.3222656, 0.44189453, 1.4111328, -0.6279297, 1.2167969, -1.6279297, 0.4501953, 1.1171875, 0.024963379, 2.703125, 1.7167969, 1.8896484, 2.6328125, 1.4599609, -1.2685547, 0.25024414, 0.2626953, 2.2871094, 0.61572266, 2.203125, 0.23120117, 0.21972656, -0.5449219, 1.6152344, 0.9370117, -3.0996094, 0.18261719, 1.4384766, 1.8642578, -0.8510742, -0.06347656, 0.2019043, -1.2138672, -1.9550781, 0.22644043, -0.6899414, 0.5410156, 1.8007812, 0.3540039, 1.1962891, -1.0263672, 0.7734375, 0.5019531, -2.0410156, -0.6640625, 0.16040039, -1.4550781, -2.0332031, 0.76904297, -2.1015625, -1.5673828, 2.9492188, 1.2900391, 0.06427002, -0.08312988, -2.2988281, 1.5732422, -0.31201172, -1.3652344, 0.24072266, -0.6694336, -1.0976562, 0.3737793, -0.3322754, 1.8730469, 1.4257812, -1.2255859, -0.4753418, -1.4794922, 0.23779297, -1.8798828, -1.9570312, -3.3359375, -0.2541504, -1.3945312, 0.0034885406, 1.1152344, 3.1933594, -1.2138672, -0.17687988, 1.6884766, -0.45336914, -0.78466797, -1.9580078, -4.0742188, 0.5678711, -2.0390625, 0.61376953, 1.9150391, 0.22216797, -0.27978516, 1.1914062, 1.4765625, -2.8808594, 0.5776367, 0.6088867, 1.6298828, -2.421875, -1.2265625, 1.3330078, 0.053863525, -1.7236328, -0.73828125, 0.49316406, -2.09375, -0.2734375, 1.3066406, -1.8916016, 0.9682617, -1.1777344, 0.5317383, -1.3095703, -0.8647461, 0.21569824, -1.9912109, -0.06817627, -2.0332031, 1.5576172, 0.61572266, -0.8598633, -0.026550293, 3.4902344, 1.3964844, 0.7363281, 0.3203125, 0.5908203, 1.9599609, -0.14172363, -1.7744141, 1.0195312, 0.67041016, 0.12695312, -1.2792969, 1.3818359, -1.7666016, -1.03125, 1.7734375, 1.4580078, -0.39575195, 1.4091797, 0.8491211, -2.1738281, -0.59765625, -0.41748047, -1.6728516, 0.60253906, 0.5107422, 0.7885742, -1.4189453, 2.0566406, -1.3339844, -0.22375488, 0.90966797, 0.1427002, -1.0009766, 1.4833984, 2.5898438, -0.53564453, 0.70654297, -0.09161377, -2.5546875, -2.1347656, 0.20874023, -0.94677734, 0.01210022, -1.9609375, 0.38671875, 0.6542969, 0.9848633, 0.15856934, -0.44311523, 0.07928467, -2.2675781, 0.20031738, -1.0664062, 1.0576172, 0.20959473, -0.7109375, 0.39575195, -0.72753906, 2.0410156, -2.5546875, -0.30249023, -0.23364258, 0.19140625, -0.7832031, 0.123168945, 1.0966797, -1.8994141, 0.60546875, 0.03741455, 0.64404297, 1.8261719, 0.9003906, 0.22277832, 1.9677734, 0.5449219, -0.001294136, -1.5292969, 1.5693359, -0.070373535, -0.5546875, 0.84033203, 0.20117188, 2.4980469, 2.2734375, 0.984375, -1.7431641, 1.2480469, 1.5039062, -2.8378906, -0.3479004, 0.96972656, -1.8417969, 2.453125, 0.2932129, -1.0351562, 0.06719971, 3.5234375, -1.4736328, 1.0664062, 0.16113281, -0.61328125, -0.043395996, -1.4736328, -1.3496094, -2.3105469, -0.78027344, 0.90478516, -1.9091797, 0.7583008, 0.8408203, 1.3730469, 0.65771484, -0.6298828, -1.2744141, 0.63964844, -0.6816406, 0.5078125, 1.1630859, -2.9179688, -2.5019531, 1.5029297, 1.9306641, 2.015625, 1.2226562, 1.09375, 1.0087891, -1.9638672, 0.89160156, 1.7177734, 0.99853516, -1.7421875, 1.0292969, 3.7324219, -0.31689453, -1.0332031, -1.8710938, -1.1591797, -1.8261719, 2.078125, 0.37695312, -1.2412109, -0.8720703, 0.50439453, -2.7324219, -3.8046875, -0.5854492, 2.5957031, -0.77685547, 0.24108887, -2.1171875, -0.17956543, -0.2770996, -0.65234375, -0.2668457, -1.984375, 0.890625, 0.84814453, -0.0184021, -0.9472656, 0.3232422, 1.7138672, -0.57958984, 0.37695312, -0.69970703, 0.005821228, -1.8632812, -2.9570312, 3.2890625, -0.75927734, 0.29858398, 1.5380859, -2.9453125, 0.7192383, 3.796875, 0.35986328, -2.3671875, 1.0351562, -2.0820312, -0.28564453, -0.39135742, -1.6396484, 1.6220703, 0.20874023, 0.44140625, 0.39453125, 2.6171875, 0.7753906, -1.0966797, 0.19750977, 1.6757812, 0.08453369, 0.8833008, -1.4980469, 0.5517578, 0.03930664, 1.4482422, 1.2705078, 0.12670898, -0.7729492, -1.8535156, -2.03125, -0.074035645, -0.74560547, -0.5151367, 0.3088379, 1.4443359, 2.9238281, -0.4309082, 2.5058594, -1.7392578, -0.40454102, -0.2220459, 1.8173828, -0.9633789, 3.5273438, 0.76660156, -1.3964844, -3.1425781, -0.50097656, 1.1044922, 3.6191406, -0.15197754, 0.07879639, 0.87060547, -1.765625, -0.6870117, -0.27856445, 0.23925781, 1.9931641, 0.17041016, -1.6884766, -1.0634766, 1.8212891, -1.6904297, 1.6650391, 1.8798828, -1.6669922, -2.0273438, 1.9160156, 1.53125, 0.25976562, 0.3515625, -0.1772461, 0.8510742, -0.7294922, -1.234375, -0.43139648, -2.2773438, -1.2724609, -0.8803711, -1.3242188, -2.8867188, 0.61572266, 0.5834961, 0.36865234, 1.8417969, 1.7578125, -1.1103516, 0.71240234, 2.640625, 2.6523438, 0.5019531, 1.7822266, -1.8896484, 1.7900391, 2.09375, -1.8808594, 0.8457031, 0.39086914, 1.2841797, -1.0380859, -0.85253906, 0.5966797, 1.3945312, -0.52197266, 1.7783203, 0.7602539, 1.0957031, 1.3408203, 0.67333984, 2.8808594, 2.5175781, 0.9580078, 1.1816406, -0.31054688, -1.1826172, -1.4335938, -1.3359375, -0.14807129, -2.1796875, -0.18115234, 0.25170898, 0.105163574, 3.2089844, -2.6542969, 0.7993164, -1.9736328, -0.29785156, -2.3632812, 1.5449219, -1.2666016, -0.042633057, 0.10241699, -0.14660645, 2.2148438, 0.6582031, -0.9086914, -0.043395996, 0.010559082, 0.6166992, -2.78125, 0.4128418, -1.1689453, -1.1806641, 1.6640625, 2.1171875, 1.796875, 0.052581787, 0.10510254, -0.21948242, -1.5224609, 0.81152344, 0.38452148, -1.8359375, -1.3603516, 0.8979492, 2.8476562, 1.4082031, -1.4023438, 0.8730469, 0.33032227, -0.94189453, -3.0507812, 3.8847656, 2.4902344, 0.20654297, -0.6479492, -1.8017578, 1.2021484, -2.5722656, 0.90722656, -1.1435547, 0.6176758, -0.8359375, -0.003616333, -0.16064453, -0.046875, -0.07128906, 1.7529297, 0.3737793, -1.0439453, 1.2314453, 0.67089844, 1.2451172, 1.2167969, -0.01852417, -0.56933594, 1.5087891, -1.1201172, 2.4238281, 1.2578125, -3.703125, 0.93603516, 3.9023438, 0.4399414, 0.6513672, 0.9428711, 0.08465576, 0.9555664, -0.9584961, -0.6738281, -0.98535156, 0.43286133, -2.3945312, -0.8647461, -0.828125, -0.13952637, -0.921875, 0.8046875, -0.5205078, 0.42504883, -0.31518555, 1.59375, -0.95996094, 0.7885742, 0.88964844, -0.5800781, -1.2861328, -0.3310547, 0.32543945, -2.5351562, -1.75, 2.2285156, 2.1171875, 0.8466797, -1.4570312, 0.4963379, -1.0146484, 0.2376709, -1.4921875, 0.1159668, -1.0185547, -1.9638672, 1.0322266, -0.08850098, -0.19628906, 0.7348633, 0.15283203, -0.041931152, 0.94433594, -2.34375, -0.113098145, -0.4128418, -0.88427734, 1.4482422, 0.99072266, -0.08648682, -1.375, -1.8466797, -4.90625, -0.9433594, -3.1445312, 0.55029297, -0.6328125, -0.29541016, 0.3125, 0.5678711, 2.1503906, -0.35742188, 0.29492188, 0.28564453, -0.53466797, 1.9384766, -1.1523438, 1.0234375, 0.91796875, 0.69433594, -0.12609863, 1.6191406, 1.1591797, -1.5917969, 1.3232422, 2.7421875, 1.0517578, -2.4082031, -0.42089844, -0.7050781, -0.40600586, 0.15014648, 0.026321411, 0.85253906, 1.7705078, -1.8798828, -1.9189453, -2.3457031]}, "B0009PUR5E": {"id": "B0009PUR5E", "original": "Brand: Coleman\nName: Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner\nDescription: \nFeatures: COOKING POWER: Up to 10,000 total BTUs\nPRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions\nPERFECTHEAT DESIGN: More efficient cooking with less fuel\n1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan\nWIND BAFFLES: Shield burner from wind for maximum heat\n", "embedding": [-1.6552734, 1.2558594, 1.1503906, 2.328125, -0.93652344, 0.60546875, 0.28100586, -0.9760742, -1.4238281, 2.7617188, 1.6796875, -1.0458984, 0.05496216, -1.3847656, -0.21875, -0.6123047, -0.17578125, 0.75097656, -0.48779297, 0.51904297, 2.15625, -1.1171875, 0.9785156, -0.3491211, -0.875, 0.46655273, 3.3613281, -4.5703125, -0.24694824, -0.7138672, 1.7412109, -1.1611328, 0.7128906, 3.2304688, -3.2167969, -0.3215332, -2.3886719, 0.8198242, -2.9472656, -0.5097656, -0.8276367, 0.032348633, 1.7548828, -0.76660156, -1.5058594, -2.78125, 0.99072266, -0.7207031, -0.9916992, -0.09197998, 0.32617188, 1.3974609, -0.3605957, 0.2590332, -1.09375, 0.61279297, -0.43066406, 0.5078125, 0.7714844, 0.07745361, 0.23522949, 1.1943359, -2.015625, 0.90722656, -2.0351562, 1.4492188, 0.3557129, -0.6328125, -0.4169922, 0.7211914, 2.71875, 0.45361328, -1.1230469, -1.9746094, -0.28076172, 0.18969727, -3.4316406, 0.92578125, 2.1621094, -0.29736328, -0.7128906, 1.9169922, 1.2402344, -0.9428711, -1.4814453, 1.0351562, -0.765625, -0.625, -0.28710938, 0.6401367, -0.9511719, 1.2314453, -1.4130859, -2.8164062, 0.32104492, -1.4189453, 0.9873047, 0.31079102, 0.79052734, -0.34594727, -1.234375, 0.48266602, -1.2939453, 0.0071029663, -2.65625, -0.8173828, 4.078125, 0.6591797, -3.5898438, 0.5341797, -2.9042969, -2.8144531, 1.5507812, 0.51660156, 0.14660645, 0.56933594, -0.71191406, 1.6035156, 3.0117188, -0.018478394, 4.15625, -1.4414062, 2.5292969, -0.5878906, -0.63427734, 2.1152344, -1.8183594, -1.0292969, 2.9472656, 0.34985352, -1.5507812, 1.2158203, 3.5976562, -1.6230469, -2.5625, -0.83447266, -2.3378906, -3.21875, -3.71875, 0.063964844, -1.0302734, 1.5771484, 1.7011719, 1.671875, -5.2109375, -1.4931641, -0.038208008, 2.5664062, 0.78759766, -2.9785156, 1.1533203, -1.2490234, 0.41259766, -0.8457031, 1.4580078, 1.1503906, -1.3554688, -0.19628906, 4.3085938, 0.25976562, 1.0146484, -1.9423828, -1.3193359, 2.9296875, 1.0361328, 0.008399963, -0.38598633, 0.31469727, -2.6113281, 1.2783203, 0.41064453, -2.4140625, 0.6142578, 0.6118164, 0.8173828, -0.61816406, 0.34204102, 3.9472656, 0.117126465, -1.4150391, -3.1347656, -4.296875, 1.4228516, 0.94921875, 0.49560547, -0.4790039, -0.6376953, -0.35009766, 0.1303711, -2.3671875, -0.4477539, 0.734375, 1.0283203, -0.7626953, -1.0615234, -2.6289062, -0.8652344, -1.1367188, 0.8510742, 1.2880859, 0.66503906, 0.31176758, -0.98779297, 2.4648438, -1.8369141, -1.2978516, 0.06738281, -1.3759766, 1.3642578, 3.1015625, 2.1425781, -0.50341797, 2.0292969, -1.2148438, -2.3222656, -1.4257812, 1.0742188, 0.018981934, 2.3769531, 1.0507812, 0.6899414, -1.6679688, 0.85009766, 0.9013672, -0.7260742, 2.3378906, 2.1035156, -0.046081543, -0.72216797, -1.78125, 1.6689453, 1.8193359, -1.2666016, 0.25756836, 0.8461914, 3.5214844, 0.16662598, -1.8486328, -0.24560547, -1.3759766, -0.83447266, -0.6425781, 0.7133789, -0.109313965, -0.9746094, -0.44750977, 0.12414551, 0.27294922, 2.6015625, 1.21875, -0.37231445, -0.13916016, -1.6972656, 1.6181641, -2.9511719, 0.63378906, 0.56689453, -1.2675781, -1.0390625, -2.5664062, 1.1005859, 1.3671875, -0.9404297, -0.30419922, -0.53271484, -0.6245117, 2.2285156, 1.2451172, -2.9472656, 0.72021484, 0.97753906, 2.6269531, 2.25, 0.67333984, 1.2548828, -1.4345703, -1.2773438, 4.140625, -0.91503906, 2.9140625, 0.11175537, -1.8173828, 2.5566406, -1.9863281, -1.3183594, 1.7451172, 2.6191406, -0.11022949, -2.3261719, -1.4052734, 4.9375, -2.8847656, -3.0234375, 2.3183594, -3.0332031, 1.1582031, -0.5986328, 0.75927734, -0.17370605, -0.9692383, 2.7949219, -0.61083984, -0.68652344, 0.4921875, -3.6308594, -1.3115234, -0.51123047, -2.1699219, -0.105773926, 0.020080566, -0.02645874, -2.1855469, -1.7880859, 2.3359375, -2.15625, -0.28930664, 2.6347656, -2.5136719, 0.64697266, 1.5136719, 0.28930664, 1.9726562, -0.6621094, -0.54296875, 0.7392578, 0.7167969, -0.33374023, 2.8476562, 0.64501953, -0.4868164, -0.19970703, -2.1523438, 1.7597656, -1.3740234, -2.3261719, -0.07470703, 1.2421875, -5.4726562, 1.9638672, 0.10424805, -0.3791504, 2.9394531, -2.6796875, 3.0136719, -1.6689453, -1.1552734, 0.17700195, 1.8847656, 0.12011719, -0.35058594, 1.9326172, 1.4648438, -1.3486328, -3.2890625, -0.94921875, -0.17150879, -0.5048828, -2.2363281, 0.30200195, 1.0234375, 0.4506836, 0.41748047, -0.3474121, 0.84716797, -0.54003906, -2.0820312, 0.3857422, -2.7597656, 1.4169922, -1.0107422, 0.36645508, 0.6123047, 0.29760742, -2.3769531, -0.12878418, 1.8994141, 0.7661133, 4.0859375, -0.17834473, 2.28125, -0.6044922, -0.8027344, -0.4189453, -1.1240234, -3.8613281, 1.5820312, 1.0058594, 0.18725586, -0.28100586, -3.6875, 1.0029297, -1.4091797, 0.52978516, -1.0615234, 0.46655273, -0.5751953, -0.4375, -0.14624023, -0.59472656, -0.2364502, 0.63720703, -1.3369141, -2.9296875, -1.5976562, -0.5605469, -0.5957031, 1.6953125, 0.92089844, -0.008361816, 0.51904297, 0.25146484, 2.6328125, -0.12194824, 1.4091797, -1.4355469, -3.9765625, 2.2304688, 0.5439453, 0.5595703, 1.2636719, -1.3203125, -1.5869141, -2.984375, -1.0517578, 1.1845703, 0.6933594, 2.7519531, -0.16992188, 0.25, 0.49389648, 1.5527344, 0.32470703, -1.0703125, -0.52734375, 2.5820312, -1.9189453, -3.3984375, 1.9824219, 2.5800781, -2.5175781, -1.4589844, 0.50878906, 0.65722656, 0.9741211, 3.484375, -1.0058594, -0.7636719, 0.26049805, 0.7651367, 3.2539062, -0.56640625, 0.113708496, -0.41625977, -0.6621094, 1.0185547, 0.9741211, -0.06304932, 2.6601562, 0.06323242, 1.7314453, 3.6289062, -2.8378906, 1.3935547, -0.41992188, 0.9169922, 0.74121094, 3.1660156, -0.57958984, -0.51171875, -1.578125, -0.7216797, 2.2714844, -1.0761719, 1.2167969, 1.5976562, 1.3867188, -0.9379883, 0.2939453, -1.2255859, 0.6875, 0.24499512, 0.9946289, 1.7714844, -0.26049805, 0.3828125, -1.0927734, -1.7099609, -0.7680664, 2.40625, -0.92871094, -2.0449219, 1.6611328, 1.8554688, -2.7011719, -2.2226562, -2.8105469, 0.1104126, 0.32788086, 2.6679688, 0.37841797, -1.7558594, -0.3798828, -0.6044922, -0.34570312, 2.6816406, -2.5546875, -1.15625, -0.33520508, -0.33618164, -0.45239258, 0.34106445, 1.5068359, 1.1972656, -2.3496094, 1.6005859, -4.3125, 0.52734375, -0.6176758, -1.9306641, 1.6796875, 2.3359375, -1.3339844, 1.0507812, -0.6088867, 2.5859375, -1.875, -0.006286621, 0.8540039, -0.60253906, -0.63623047, -2.0097656, -2.9492188, 1.3134766, 0.21166992, -0.16418457, 1.4404297, -0.24401855, 0.8232422, 1.2470703, 0.6152344, -2.4179688, -1.7480469, -0.9863281, 0.2836914, -2.0625, 1.0732422, 0.08679199, -0.4909668, -2.5292969, -2.4316406, -0.9238281, -0.7739258, 0.37548828, 1.5390625, -2.1582031, 0.5629883, -1.3007812, 1.9580078, 0.87939453, -0.35913086, 1.3261719, -0.3798828, -0.5732422, -1.2421875, 1.3105469, 1.2001953, -0.8569336, 0.8388672, 2.4492188, 1.8925781, -2.3144531, 0.38720703, 2.6679688, 1.1357422, 0.16271973, -2.0546875, -1.1503906, -2.6816406, -1.5527344, 0.3395996, 1.2089844, -1.7998047, -1.5, 1.0283203, 2.5136719, 0.8691406, 1.3730469, -0.10064697, -0.96972656, 0.98583984, 0.33666992, -1.7226562, -1.2548828, -0.23547363, -0.4189453, -1.7978516, 1.4746094, -0.49804688, -0.8125, 0.65966797, -1.2197266, -3.0605469, 1.9140625, 0.6225586, 1.6132812, 1.6357422, -0.44335938, -3.1113281, 1.4648438, -1.0810547, 0.4050293, 0.5019531, 0.08087158, 0.06591797, 0.91845703, 1.7080078, -0.91503906, -1.7568359, 0.79541016, -2.2050781, -0.96728516, -1.3222656, 1.1835938, -2.0976562, 1.8554688, 0.40234375, -0.01689148, 1.3232422, -0.29589844, 1.2314453, 1.7216797, 1.671875, -1.5546875, -0.62109375, 0.77978516, 0.94433594, -0.020843506, -0.11004639, -0.44360352, -0.10803223, 0.92529297, -0.13366699, 1.8203125, 1.3417969, -0.5957031, 0.93652344, 0.5839844, -1.3691406, -0.101257324, -0.08380127, 0.24438477, 1.1757812, 3.2734375, 2.0097656, -1.2177734, 1.046875, 0.22473145, 0.20690918, 1.1689453, -0.47338867, -0.48242188, 2.796875, -0.93310547, -2.4804688, 0.70947266, 2.796875, -1.0595703, 1.0410156, 0.2331543, -0.60595703, -0.7631836, -3.6367188, -0.3317871, -0.80810547, -0.6196289, -0.4284668, -1.6357422, -0.625, -0.21838379, 0.8261719, 2.6484375, 0.0960083, -0.8989258, 1.8359375, 0.08782959, 1.375, -2.4765625, -2.3007812, -2.5605469, 1.7285156, 0.5361328, -0.04168701, 0.5546875, 1.1220703, 1.0126953, -2.3183594, -1.3232422, -1.7158203, 0.88916016, -3.3984375, -0.89453125, 0.64501953, -0.51904297, 0.4777832, -1.4384766, 0.58691406, -1.4384766, 2.2109375, 1.328125, -0.25878906, -1.4013672, 0.3671875, -3.6152344, -3.9824219, -0.4724121, -0.6557617, 0.10571289, -0.08337402, 1.1113281, -0.54052734, -0.82910156, -0.9970703, -2.0976562, -3.1054688, 1.0400391, 0.78222656, -0.19152832, -0.17407227, 0.69433594, -0.76416016, 0.46923828, -0.6953125, 0.5522461, -0.12390137, -1.6425781, -1.9111328, 1.3076172, -1.2734375, 0.45458984, 0.22521973, -0.46655273, -0.08911133, 0.2529297, 0.4362793, -0.39160156, 2.2148438, 1.2822266, -0.9555664, 1.4970703, -1.0615234, -0.0067825317, 1.0742188, -0.95751953, 0.93066406, -0.94091797, 0.35498047, 0.87109375, 2.2246094, 0.85253906, 0.9296875, 1.3388672, -0.77246094, 2.5898438, -0.6845703, 1.734375, 2.1230469, -0.14257812, -1.6611328, -2.6445312, -0.8256836, 0.02015686, -1.3945312, -1.2451172, -0.74853516, 2.2734375, 0.6381836, 1.8300781, -0.5175781, 0.9892578, 0.8330078, 0.2770996, 0.8676758, -1.8193359, 3.2363281, 1.2910156, 0.29833984, -2.09375, -1.1806641, 1.4716797, -0.8574219, 1.9414062, 0.5239258, -0.5673828, -1.7685547, 1.1435547, -1.0195312, 2.1582031, 2.6796875, 3.390625, -1.5273438, 2.7011719, 3.9316406, -0.2890625, -0.16589355, 0.46655273, -0.37719727, -0.90478516, 2.5527344, 1.0322266, -1.1728516, 2.1875, -1.4492188, 1.9716797, -0.9614258, -0.50341797, 1.1103516, -0.4152832, -0.56347656, -1.5429688, -0.36523438, -2.3476562, 2.1914062, 0.5541992, -2.2597656, 0.65771484, 1.6826172, -0.16125488, 0.67822266, 2.2929688, 1.1181641, -0.48291016, 1.015625, 1.0214844, -0.4255371, 2.0234375, -2.4667969, 2.5996094, 0.9873047, 0.3125, 0.5776367, 2.296875, 0.6191406, 2.8007812, 3.9140625, 2.2558594, 2.8320312, 0.96240234, 4.5742188, -0.16809082, 2.2402344, 1.0439453, 0.7495117, -0.5932617, 2.9042969, -0.37231445, -1.2412109, -1.1503906, 0.58447266, -0.17736816, -0.42651367, -1.8388672, 0.9526367, -0.26293945, -5.921875, 1.3251953, 0.2939453, 1.6162109, -0.32641602, 0.40649414, 0.72558594, -0.22631836, -0.12145996, -1.203125, -0.7788086, -1.6640625, 0.40454102, -1.3828125, 0.6142578, 1.3515625, -0.55371094, 0.46801758, -3.1191406, -1.3945312, 0.20129395, -0.08520508, 0.8330078, 1.2109375, 0.12817383, 2.6347656, 1.2324219, -0.5253906, -0.32006836, -1.9472656, 0.97265625, 1.6132812, 2.84375, 1.6162109, -0.94921875, 1.1982422, -0.44921875, -2.6464844, -4.46875, 1.9609375, 1.0009766, 2.0957031, 1.4589844, -2.015625, 2.6679688, 1.1474609, 1.9453125, -1.5810547, 2.4550781, 0.3935547, -1.6054688, -1.46875, 1.3828125, -0.55371094, 2.6386719, 1.3388672, -1.8916016, 1.4277344, -1.1972656, 2.3789062, -0.49609375, -0.3359375, 1.296875, 0.85498047, -1.2841797, 2.1953125, 1.7861328, -0.34570312, 0.53515625, 2.5058594, 3.015625, 0.87890625, -1.3134766, -1.4101562, 1.8369141, -0.21228027, 0.0335083, -1.5751953, -1.4160156, -1.7773438, 0.25146484, -0.35253906, -0.7963867, -2.2519531, 0.07800293, 0.96972656, -2.6542969, 1.5322266, 2.6796875, -0.19592285, -0.921875, -1.3173828, -1.1992188, -0.7788086, -0.43896484, 1.5029297, -1.7822266, -1.3056641, 0.3095703, 0.47875977, 0.54541016, -0.23730469, 1.4189453, -1.6513672, -1.2607422, -0.52441406, 0.7182617, -0.34399414, -0.6279297, -0.77246094, 0.515625, -0.7866211, 0.7207031, -1.4570312, -0.9086914, -0.38891602, -2.6660156, -0.80908203, -2.2089844, 0.39990234, 1.7470703, 1.9755859, -1.0478516, 2.1640625, -1.3115234, -1.5146484, -1.7734375, -1.8427734, 1.5234375, 2.6972656, -1.0820312, 0.9609375, 2.3632812, 1.4052734, -1.1503906, -0.83154297, -0.6401367, 0.33007812, 0.89746094, -1.4990234, 0.27270508, 0.9111328, -0.72753906, 0.10058594, 3.0039062, 1.4433594, -0.43798828, 1.0556641, -0.7470703, 0.65283203, -1.3505859, 0.79003906, -1.3076172, -1.5849609, -2.1035156, -0.31591797, 3.1738281, 0.7680664, -2.3828125, -2.0761719, -1.5244141]}, "B00Z4T34CI": {"id": "B00Z4T34CI", "original": "Brand: Red Ember\nName: Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks\nDescription: This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800\u00b0 Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.\nFeatures: Dimensions: 21L x 21W x 29.1H inches\nUses standard liquid propane gas tanks\nSteel frame and stainless steel burner\nFire-retardant, inorganic material exterior\n", "embedding": [0.3046875, 1.1367188, 1.3242188, -1.3310547, 0.29614258, 0.0036678314, 0.68115234, -2.0898438, -1.3232422, 1.2919922, -1.0058594, 1.9248047, -0.14526367, -4.6210938, 1.6396484, -0.38452148, -1.3378906, 0.8676758, 1.2890625, 0.32128906, 1.5351562, 0.50097656, 0.4099121, -0.29614258, 2.9902344, -0.34692383, 1.7226562, -3.8515625, -2.0839844, -1.5458984, 1.5537109, 1.3945312, -0.05731201, 1.0263672, -2.5253906, -2.5136719, -1.3164062, 2.71875, -3.0683594, 1.3837891, -2.421875, -1.5654297, 2.4863281, 1.4492188, -2.8945312, 1.1064453, 1.0283203, -0.4416504, -0.7421875, -3.0039062, 0.37548828, 1.6943359, 0.19055176, 0.1517334, -1.5498047, 1.6455078, -0.6616211, -2.8046875, 3.6464844, 0.51708984, 0.6274414, -1.1464844, -0.03475952, 2.5683594, -0.4296875, 1.0625, -2.4941406, -0.092041016, 0.50341797, -0.4645996, 0.84716797, -0.67333984, 0.2052002, 0.46533203, 0.92285156, -0.32861328, -1.2558594, 1.8505859, 1.4580078, -1.1972656, -0.67333984, 3.6816406, -0.20129395, -0.44555664, -0.17553711, -0.49047852, -2.765625, -0.66308594, -0.64941406, 0.4489746, 0.9746094, 2.8085938, -0.42211914, -2.6484375, 1.3466797, -0.9111328, -0.07647705, -0.5917969, -0.22570801, 2.3632812, -0.15551758, 1.3759766, -2.1152344, -0.5576172, -2.2109375, -0.7548828, 0.046936035, 1.3466797, 1.2705078, -0.05532837, -1.4589844, 1.8652344, 1.6074219, -0.09008789, 0.86865234, 0.73046875, 0.007171631, -1.3056641, 3.3085938, 1.0107422, 5.1171875, 1.171875, 0.25927734, -1.3388672, 0.0011854172, 0.84033203, -2.7441406, 2.5859375, 1.2861328, -2.5742188, 0.55615234, -1.4033203, 1.3632812, 1.7470703, -2.2382812, -0.76708984, -1.6855469, -1.2958984, -1.0097656, -1.0283203, -2.1386719, 2.828125, 1.0732422, 0.40063477, -4.0507812, 1.0810547, -1.6669922, 1.8740234, -0.31103516, -1.9853516, 0.43041992, -1.0546875, 0.4724121, -1.5283203, 1.7871094, -0.07775879, 1.5390625, -2.9882812, 3.3613281, 0.94189453, 0.7084961, -3.0019531, 0.09527588, 1.875, -1.4306641, -0.35302734, 1.5644531, -0.30444336, 0.39282227, 2.671875, -0.75439453, -1.8115234, 0.111694336, 0.62109375, 0.7265625, -1.2998047, -1.7861328, 1.6376953, 0.4416504, 1.0849609, -0.59277344, -0.7060547, 2.0019531, 1.0625, 0.5004883, -1.9189453, -0.28564453, -1.9648438, -0.74902344, -0.4724121, -0.9951172, 1.0986328, -1.8066406, -1.6699219, -1.0849609, -2.5351562, -2.0683594, -2.3105469, 1.3330078, 0.03857422, -1.8828125, 0.9926758, -2.1660156, 1.5986328, -1.9589844, -0.6611328, -0.21289062, 0.66308594, 2.0859375, 1.3994141, 1.0800781, -1.5283203, 0.79833984, 1.0810547, -0.46801758, -1.1171875, 0.34057617, 0.31762695, 1.8535156, 2.1386719, 0.53808594, 0.8149414, 1.5761719, 2.9179688, -0.032806396, 1.8310547, 0.047424316, -0.12609863, -2.7832031, 0.17248535, 2.0332031, 0.5488281, -0.82373047, 0.86083984, -1.5419922, 3.8222656, 0.69921875, -0.7158203, 1.8701172, -1.7939453, -0.6904297, -2.1328125, -1.7890625, 0.57666016, -0.8076172, 2.1054688, 0.37426758, 1.0664062, 1.5673828, 0.5830078, -0.81884766, -0.4777832, 1.8486328, 0.75634766, 0.76953125, -0.7871094, -1.9863281, 0.48657227, 1.8945312, -1.4111328, 0.7060547, 0.9121094, -2.3984375, 0.46704102, -0.65966797, -1.0419922, 0.6645508, 0.27807617, -4.1992188, 0.2578125, 0.42358398, 1.609375, 2.6601562, 0.17285156, 1.3828125, 1.0820312, -0.4970703, 1.8300781, 0.026565552, 2.9648438, 0.45532227, -0.7475586, 2.2148438, -1.9677734, 1.0761719, 0.90966797, 0.5439453, 0.04006958, -0.69384766, -0.04660034, 4.7382812, -0.7836914, -1.1054688, 1.3818359, -1.1035156, 1.0351562, -1.2011719, -1.0009766, 0.6816406, -0.16369629, 2.203125, 2.3085938, -0.2849121, 2.0058594, -0.6591797, -0.5541992, 1.75, -0.9404297, 0.3166504, 1.2236328, -0.32128906, -1.1015625, -1.9941406, 0.46679688, -2.0566406, -2.0351562, 2.2851562, -3.8730469, 0.7753906, 2.7207031, 0.5878906, 1.0341797, -1.1806641, -2.703125, 0.07574463, 2.7441406, -2.6210938, 1.1894531, -0.39379883, -0.59277344, -1.2548828, -3.09375, 1.1826172, -0.55029297, -1.2626953, -2.0371094, 0.7871094, 0.68896484, 0.09527588, -1.9384766, 1.3251953, 1.6025391, -1.2871094, 0.57958984, -0.93652344, -2.9296875, -0.32202148, 1.1328125, -1.4648438, 1.1767578, -0.029205322, 2.4394531, -0.4819336, -3.2480469, -0.4633789, -1.5585938, 1.5283203, 1.5585938, 0.109313965, -0.8305664, -1.9267578, 1.7080078, 0.42358398, -1.4980469, 1.4179688, -1.5527344, -0.5283203, -3.4394531, 1.0742188, -1.7431641, 0.7558594, -0.9091797, -0.13012695, -1.1904297, -1.8505859, 0.042785645, -1.5351562, 4.34375, 1.484375, 2.1679688, -2.5058594, -0.45581055, 0.1373291, 0.73095703, -3.0644531, -0.37817383, -1.5761719, -1.7705078, -2.5488281, -2.3339844, 0.35791016, -2.1933594, 0.31054688, -0.3864746, 0.5209961, -0.17834473, -0.35083008, -0.75, 1.3339844, -0.11431885, -0.97216797, 0.47973633, 0.39208984, -0.6357422, -1.3154297, -0.81689453, -2.3964844, 0.35107422, 2.3886719, -1.2890625, 0.52441406, 0.7607422, -0.72558594, 0.8076172, 1.1572266, -3.4472656, -0.15930176, 4.1835938, 0.031555176, 1.9941406, -1.796875, -1.8701172, -0.69628906, -1.5302734, 2.9980469, -1.8076172, 0.4580078, 0.51708984, 0.19580078, -0.69140625, -0.14782715, -0.5473633, -0.9921875, -0.04196167, 2.5605469, -2.21875, -0.47607422, 0.3635254, 4.109375, -3.2988281, -0.16052246, 0.57421875, 0.9238281, 0.9111328, -0.007358551, 0.9140625, 0.984375, -0.5083008, -0.21777344, 1.2402344, 1.6669922, -1.4501953, -0.6386719, 2.6660156, 2.2910156, 0.9379883, 2.046875, 0.23400879, 0.17626953, 2.6425781, -0.9067383, -1.8662109, -0.94921875, -0.45141602, 0.7583008, -0.8642578, 1.140625, -1.3388672, -1.1962891, 1.1933594, 1.1894531, 1.6865234, -0.56396484, -0.41601562, 0.46875, -1.2353516, -1.4365234, -0.8388672, 0.7207031, -1.1269531, -2.4238281, 0.6113281, -0.30810547, -0.078063965, 1.1132812, -1.9335938, 0.59716797, -1.0273438, 2.8496094, -1.4755859, -2.8222656, 1.234375, 3.0136719, 0.09039307, -2.3808594, 0.12573242, -2.2285156, -2.1933594, 4.1875, 0.37304688, -1.9287109, 0.55029297, -2.9101562, 2.4296875, 2.03125, 1.3486328, -0.009094238, -0.04272461, 0.5522461, -0.9741211, 1.1787109, 1.2792969, -0.28588867, -2.6894531, 0.76708984, -0.82470703, -0.21228027, 0.8173828, -1.1484375, -0.99365234, 2.9277344, -0.1262207, 0.34960938, -1.1308594, 2.9863281, 0.09692383, 0.29174805, 3.7617188, -0.008277893, -1.2871094, -2.0683594, -3.328125, -0.084472656, -2.1699219, 0.93408203, 0.5654297, -0.06341553, -0.48950195, 1.5224609, -0.56591797, -4.6445312, -1.6777344, -2.4414062, 1.1318359, -2.1875, -0.53515625, -0.2668457, 0.7758789, -0.6767578, -0.59521484, 0.11230469, 1.0341797, 1.6083984, 0.5263672, -0.22717285, 0.92041016, -2.2539062, -0.83203125, 0.060943604, -0.40478516, -0.35888672, -0.40307617, 0.6557617, -0.2607422, 1.2910156, 0.8881836, -0.6274414, 2.4003906, 2.6328125, 1.1572266, -0.45458984, 2.4707031, -1.4755859, 2.8183594, -0.20983887, -2.1425781, -0.9902344, 0.11853027, 0.8574219, 0.12976074, -0.8256836, 1.7783203, -2.7324219, 1.8251953, 0.73095703, 1.6738281, 1.3652344, -0.6274414, -1.6992188, 0.72216797, 0.6455078, -2.7773438, -0.72314453, -0.017715454, 2.0195312, -1.8525391, -0.9453125, -1.1738281, 1.40625, -1.0244141, -1.2841797, -2.6074219, 2.2851562, 2.1621094, 1.8554688, 3.921875, -2.5488281, -1.3447266, 0.79785156, -1.5634766, 0.8881836, 0.90478516, 1.4824219, 0.31933594, 1.9394531, 0.43066406, -0.5390625, -0.062683105, 1.0820312, -1.4902344, -0.9580078, 0.6088867, -1.0830078, -2.0976562, -0.7163086, 0.8701172, -0.28149414, -0.27783203, -1.6103516, -1.1162109, -2.9296875, 1.9511719, -0.76416016, 1.1572266, -0.55566406, -1.2207031, 1.7988281, 2.0566406, 2.4121094, -0.25610352, 2.2773438, -0.054656982, 2.3847656, -0.23815918, 0.21875, -0.23498535, -1.2480469, -1.7998047, 0.69140625, 0.49145508, 2.5351562, -0.1652832, 0.0826416, 0.80371094, -0.90722656, 3.2207031, 1.4619141, -1.6572266, 0.49487305, -2.7617188, -2.4804688, 0.41674805, 0.45092773, -4.6757812, -0.34887695, 2.0996094, -0.39770508, 2.5234375, -0.54833984, -1.4306641, 0.6791992, -0.53564453, -1.546875, -1.1679688, 0.08758545, 1.0048828, 0.81884766, 0.31762695, -2.421875, 0.56689453, 1.3525391, 0.46069336, -1.3544922, 2.3789062, 0.83691406, -1.4033203, -0.984375, 1.1367188, 0.42138672, 0.64453125, 0.16833496, 0.39501953, 2.2773438, -1.234375, 2.0253906, -1.6318359, 0.41870117, -0.9824219, 1.671875, -2.4902344, -0.2890625, 1.671875, -0.5566406, 0.67041016, -2.6015625, 0.55371094, -0.5214844, 1.859375, -1.3964844, 0.72802734, -1.5683594, -0.24047852, -2.6484375, -1.6347656, -0.7270508, -1.5595703, -1.7939453, -0.25, -1.9970703, -0.41845703, 0.56933594, 2.0996094, -0.24365234, 0.5102539, -1.171875, -1.0556641, -0.19616699, -1.9882812, 0.20336914, 1.1845703, 0.72021484, 1.3164062, 0.2734375, -2.1425781, -3.15625, -1.1054688, 2.7148438, -2.8183594, 1.7558594, 0.17150879, 1.3427734, 1.9287109, 3.7949219, -0.4104004, -1.4804688, 1.1455078, -0.03567505, 0.1821289, 2.1152344, -1.5371094, 0.55859375, 1.9638672, 0.60302734, 1.6533203, -1.3144531, -2.0292969, -1.4306641, 1.65625, 0.89746094, -0.06048584, 0.6166992, -0.08544922, 1.3369141, 0.09429932, 1.1660156, 1.4208984, -1.2578125, -1.3759766, -2.0898438, -1.8339844, -0.81103516, -2.8613281, -0.48413086, -1.5458984, 0.06842041, 1.5800781, 0.7597656, 1.1923828, 2.3046875, -0.25878906, -1.1074219, 1.7802734, -0.4716797, 1.3925781, 1.1962891, -2.1054688, -2.4765625, -4.5898438, 1.3759766, 1.9257812, -0.27905273, -0.984375, -0.14001465, -2.484375, 0.86865234, 0.83691406, 1.5166016, 2.7402344, 1.0546875, -1.921875, 0.59033203, 1.9277344, -1.3115234, 1.7451172, 0.2692871, 2.8242188, -0.36279297, 1.9023438, 2.8125, -1.8378906, 2.734375, -0.64697266, 0.32958984, -1.0371094, -0.25390625, 0.7939453, -2.7246094, -0.9267578, -1.9775391, 0.5673828, -2.2207031, 1.5507812, 1.4130859, -0.07751465, -0.10070801, 0.46484375, -1.6201172, 1.7568359, 1.5986328, -0.54296875, -0.36376953, -1.4824219, -2.1875, 0.07678223, 2.6757812, -1.6835938, -0.9892578, 0.4104004, -1.5205078, -1.234375, 0.69189453, -0.921875, 1.9931641, 1.1572266, 3.5175781, 0.88720703, 1.0136719, 3.1972656, -1.7705078, 2.2519531, 2.0488281, -1.4716797, -1.1748047, 1.0634766, 2.8554688, 0.36816406, -0.056671143, -0.45751953, 0.20605469, -2.703125, -0.6064453, -2.0605469, 0.32666016, -2.5429688, 1.6699219, 0.23071289, 0.025375366, -2.1992188, 2.5585938, 0.1418457, -0.39086914, -1.3886719, -0.2397461, 1.1884766, -0.055145264, -0.10449219, -1.1572266, 0.31591797, -0.18591309, -3.1855469, 1.9316406, 0.6220703, -2.8984375, -0.7426758, 4.171875, 1.2050781, -0.44335938, -0.94140625, 2.7851562, -0.46435547, 3.1933594, 0.78027344, 0.85253906, -1.6982422, 0.39672852, 1.6376953, 1.4326172, -2.3261719, 0.040740967, -1.1230469, -3.1738281, -1.9023438, -0.038848877, 1.3916016, 1.5810547, 1.4267578, -0.07305908, 0.66308594, 0.22644043, 2.1230469, -2.7265625, 1.1376953, 0.99658203, -1.9121094, 0.32910156, -0.22180176, 0.9584961, 0.9399414, 2.7675781, 0.4013672, 1.6640625, 0.61621094, 1.1855469, 1.0683594, 2.0820312, -2.46875, 0.9472656, -0.67529297, 4.0507812, 1.0507812, -0.5229492, -1.0595703, 1.9794922, 2.1933594, -0.14758301, 0.8276367, -2.1191406, -0.5107422, -2.203125, -0.42236328, -0.8701172, -1.4345703, -1.9716797, -0.25341797, -0.72509766, 0.5097656, -0.45458984, 0.79003906, 2.3398438, 0.031158447, -0.45629883, 2.4140625, -1.3212891, 1.4570312, -0.73828125, -1.0703125, 0.0927124, 0.14453125, 2.0800781, -0.9580078, -2.1542969, -0.39379883, 3.0429688, 0.05404663, 1.0429688, 0.16748047, 0.0670166, -0.0036373138, 0.9633789, 2.7558594, -0.4724121, -0.17590332, 1.9052734, 1.2910156, -0.7392578, 1.4570312, 0.8574219, 0.0010766983, 1.2255859, -3.3085938, -0.13635254, 1.1083984, -2.21875, 0.7807617, 3.9765625, 1.9423828, -0.3708496, -0.44360352, -5.6171875, -1.1337891, 0.37841797, 2.5449219, -0.8647461, -2.2910156, 0.00010061264, -0.36547852, 2.8515625, 0.062072754, -1.1933594, -0.83203125, -0.2788086, 0.46484375, -0.92285156, 3.9296875, -0.9326172, 1.2548828, -0.057678223, 2.4414062, 2.0820312, -0.39697266, 0.68359375, 1.7666016, 0.2902832, -3.65625, -0.26171875, 0.9584961, -0.57958984, 0.07159424, -1.5419922, -0.25708008, -1.2578125, -0.98876953, -4.4960938, -0.9770508]}, "B00KY4S388": {"id": "B00KY4S388", "original": "Brand: Outland Living\nName: Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU\nDescription: \nFeatures: \u2713 PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\n\u2713 COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19\u201d x W 19\u201d x H 11\u201d with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI\n\u2713 BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\n\u2713 COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately.\n\u2713 SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual\n", "embedding": [0.12200928, 1.2958984, 0.90966797, -0.5136719, 0.9760742, 1.2324219, 2.0410156, -1.4082031, -2.2402344, 2.2871094, 0.06100464, 0.053466797, -1.1083984, -3.1054688, -0.5102539, -0.3930664, -0.109375, 0.9038086, 1.0253906, -0.20507812, 2.8046875, -0.60498047, 2.4277344, -1.2128906, 1.6171875, 0.0046920776, 3.5039062, -2.9882812, -1.3759766, 0.6333008, 1.8085938, 1.5605469, 0.48413086, 1.7421875, -2.5761719, -0.12042236, -2.171875, 0.8720703, -3.1152344, -0.22265625, -1.7558594, -1.6689453, 2.671875, 0.16149902, -2.2636719, -1.0263672, 1.7216797, -0.34692383, 0.42358398, -0.32080078, 0.9941406, 0.4230957, 0.25195312, 1.6474609, -3.3339844, 2.4355469, 0.31323242, -1.0478516, 2.4550781, 1.5214844, 0.60058594, -0.032836914, -0.98046875, 1.6767578, -1.15625, 0.21594238, -0.07110596, -0.34838867, 0.06427002, 0.12512207, 2.4140625, 1.0263672, 0.91845703, -0.16503906, -0.002286911, 0.2421875, -3.6445312, 1.6005859, 3.1953125, 0.17944336, -0.0869751, 3.1914062, 0.70214844, -0.0032215118, -0.38427734, -1.4580078, -3.1523438, -0.6621094, 0.22241211, 1.2519531, -0.44433594, 2.3476562, -1.1767578, -4.3007812, 2.4824219, -0.9614258, -0.023025513, 1.6484375, 0.20141602, 0.37841797, 0.69384766, 2.3125, -0.49487305, -0.32714844, -2.1269531, -0.70166016, 0.9086914, 1.6992188, 0.2866211, 1.9326172, -2.1777344, -0.6269531, 3.1777344, 0.7705078, -0.85058594, 0.39990234, -1.828125, -0.20947266, 5.3046875, -0.05126953, 4.4257812, -0.9189453, 0.7290039, 0.1138916, 0.69677734, 0.22070312, -1.8720703, 0.33422852, 1.0341797, -0.05645752, -0.21386719, -1.0078125, 2.0195312, -0.16259766, -3.0820312, -1.5664062, -1.9619141, -2.1679688, -1.9882812, -1.3271484, -0.8828125, 0.2578125, 2.5371094, -0.36523438, -3.9882812, -0.95410156, -1.6191406, 2.1152344, 0.14050293, -4.9921875, 0.80371094, -1.5009766, -0.15454102, -2.1894531, 1.2607422, 0.2121582, 0.3779297, -3.2539062, 3.4316406, 0.77978516, 0.41137695, -1.9365234, -0.4958496, 0.84472656, -2.2363281, -2.765625, 1.7207031, 0.24291992, 0.014091492, 1.6230469, 0.5, -1.6591797, 0.38720703, 0.5083008, 0.6586914, -1.5615234, -0.24169922, 0.23205566, 2.2871094, 0.21740723, -2.9882812, -1.0263672, -0.5683594, 1.4199219, 1.3369141, -1.0332031, -0.97021484, -1.2441406, -0.8286133, -1.3740234, -1.8027344, 1.3339844, -2.2636719, -1.5429688, -1.4511719, -3.5253906, -1.7998047, -2.4589844, 1.7470703, 1.1376953, 0.08306885, 1.2431641, -0.49243164, 0.9458008, -2.5996094, -0.5, 0.6010742, 0.6464844, 3.203125, 2.9277344, -0.35717773, -0.625, 2.8515625, 1.2841797, -1.1982422, -0.97998047, 2.1640625, 0.9145508, 2.3125, 2.2792969, 1.7890625, 0.4284668, 2.3925781, 2.765625, 0.6196289, 1.0224609, 0.48828125, -0.75927734, -1.9658203, -1.0673828, 2.1171875, 0.2705078, -0.51416016, 0.71777344, -0.8955078, 2.4160156, 0.92285156, -1.3876953, 2.3984375, -0.66015625, -1.7578125, -1.3837891, -0.99560547, 0.65185547, -0.3569336, 1.1591797, 0.34716797, 0.41064453, 3.171875, 1.3076172, -0.6772461, -0.97998047, 1.3330078, 0.6328125, -0.36889648, -0.24853516, -0.74902344, 0.21606445, 0.3996582, -0.7416992, 1.1230469, 1.5068359, -0.69873047, 0.86865234, -0.27294922, -1.3212891, 0.72802734, 0.3552246, -2.5078125, 0.12426758, -1.3916016, 0.40063477, 2.0859375, 1.4140625, 2.4667969, -0.61328125, 0.3203125, 2.2402344, 0.5698242, 3.2363281, 1.2773438, -0.055603027, 0.87060547, -1.8564453, -1.4101562, 0.6459961, 1.3505859, 0.49926758, -0.7167969, 1.6279297, 5.8867188, -0.73828125, -1.9658203, 0.82177734, -1.0341797, 1.8740234, 0.8754883, -0.546875, 1.8056641, 0.47583008, 1.1162109, 1.0292969, -0.044891357, 1.8212891, -0.7558594, -0.016204834, 0.6503906, -3.625, 0.60009766, 0.05355835, -0.68603516, 0.3864746, -0.8359375, 1.1269531, -0.9272461, -1.2988281, 1.5410156, -3.1328125, 1.1142578, 3.4824219, -0.38208008, 0.85058594, -0.54296875, -2.3378906, 0.25219727, 2.7539062, -1.7890625, 0.69873047, 1.4082031, -1.1982422, -0.68310547, -2.1328125, 1.3466797, -2.4921875, -0.3774414, -1.6074219, 0.22167969, 0.18591309, 0.44018555, -2.5351562, -0.004650116, 0.7163086, -1.6132812, 0.87890625, -0.98876953, -1.5205078, -0.42211914, 0.8720703, -1.6455078, 1.5400391, 0.9916992, 2.7519531, -0.12109375, -2.4277344, -0.69433594, -0.07952881, 1.1210938, 0.8046875, -0.69189453, -1.3466797, -1.0683594, 0.4790039, 0.33813477, -0.17797852, 1.3613281, -3.2519531, 0.87939453, -3.9414062, 1.4960938, -0.6464844, 1.1787109, -0.6582031, -0.39746094, -1.1630859, -1.1132812, 1.6855469, -2.2519531, 4.25, -0.0008301735, 0.43945312, -2.0332031, -1.96875, -0.79345703, -0.93603516, -3.2753906, 0.077697754, -0.054901123, -1.4736328, -1.8417969, -2.546875, -0.19360352, -1.6240234, -1.3320312, -0.2232666, 0.66308594, -2.3046875, -0.08081055, -1.6005859, 0.86376953, -0.85302734, -0.65283203, -0.7133789, 0.59375, -0.86376953, -0.60791016, -1.0146484, -0.56933594, 0.68847656, 1.8066406, -0.86035156, 0.2993164, 0.4489746, -0.047058105, 0.31152344, 0.8203125, -4.2109375, -0.13195801, 2.3769531, 0.2607422, 1.4873047, -2.4765625, -1.2324219, -1.1767578, 0.5097656, 3.6992188, -0.3527832, 0.027664185, -0.47460938, -1.4423828, 0.73291016, 0.14050293, -0.9213867, 0.2800293, -0.7163086, 3.8964844, -3.9511719, -0.8510742, 0.6411133, 3.2988281, -4.4414062, -0.4091797, 0.85791016, 0.27075195, 1.4912109, -0.5004883, 0.5805664, 0.6015625, 0.56884766, -0.4765625, 1.9658203, 1.2363281, -0.14099121, 0.62109375, 0.44458008, 1.6064453, 1.1855469, 0.3581543, 0.7236328, 1.0957031, 1.1142578, 0.8095703, -1.7382812, 1.1015625, 0.14294434, 0.32470703, 0.19006348, 1.2685547, -1.0556641, -0.7001953, -0.113098145, 1.1484375, 1.1894531, -0.8935547, -0.43579102, 1.2666016, 0.83935547, -0.91015625, -0.19128418, -0.025039673, -0.9321289, -0.70458984, 0.63916016, -0.61816406, -0.1529541, 1.1982422, -2.2792969, 0.07507324, -0.37597656, 2.484375, -0.9716797, -1.484375, -0.32104492, 1.2529297, -0.63134766, -2.4199219, -0.6694336, -3.6953125, -1.2119141, 5.28125, 1.8222656, -1.6210938, -1.4570312, -0.6464844, 1.7988281, 2.6367188, -0.2487793, -0.5292969, 0.10479736, 0.9663086, -0.91064453, 0.94140625, 1.7177734, 0.45898438, -2.5546875, 2.0039062, -0.92871094, 0.6245117, 1.7871094, -2.03125, 0.73291016, 3.4453125, 0.37329102, 0.9404297, -1.75, 3.8085938, -2.46875, -0.18774414, 4.9960938, -0.21276855, -1.2910156, -2.6113281, -2.6621094, 1.5712891, -3.2441406, -0.45410156, 1.0244141, 0.76171875, -1.2333984, 0.109313965, -0.5419922, -3.3730469, -3.6015625, -3.09375, 1.8876953, -3.3164062, -1.5039062, -0.9042969, 0.6694336, -3.2714844, -1.0488281, -0.40454102, 2.0078125, 0.65625, -0.17749023, -1.4208984, 1.5263672, -3.0253906, 0.42138672, 0.5180664, 0.15026855, -0.34277344, -0.76660156, -0.49926758, -1.25, 1.0175781, 0.5073242, -1.8466797, 1.7929688, 3.3632812, 1.1474609, -0.67626953, 0.84521484, 1.0283203, 3.8515625, -0.47436523, -1.46875, -3.0117188, -1.0234375, -0.13549805, 0.16540527, -0.5805664, -0.010696411, -3.0605469, 2.1582031, 0.68408203, 0.94189453, 1.0517578, 0.20202637, -1.4208984, 1.3857422, -0.028167725, -1.8798828, -1.8427734, -1.5068359, -0.07891846, -1.7802734, -0.24841309, -1.1816406, 0.62353516, -0.99316406, -0.0914917, 0.43530273, 2.5019531, 1.5263672, 1.4492188, 4.2421875, 0.58691406, -1.4970703, 1.0390625, -1.3056641, 0.47143555, 0.7998047, -1.5107422, -0.50634766, 2.203125, 0.41992188, -1.0625, -0.61865234, 0.17553711, -0.91796875, -1.3408203, -0.6513672, -1.2509766, -3.0957031, -1.3505859, -0.99609375, -1.7324219, 2.2382812, -0.98583984, 0.36157227, 0.23852539, 0.9550781, -1.1796875, -0.83496094, -0.19445801, 1.75, -0.73095703, 2.2207031, 2.1542969, -0.20117188, 2.7519531, 0.6816406, 2.8457031, -2.0585938, 0.11230469, -0.36499023, -0.45654297, -1.3583984, -1.1806641, 0.5620117, 1.8017578, -0.13696289, 2.3984375, 0.47314453, -0.73828125, 1.9785156, 0.6171875, -2.03125, -1.1425781, -0.9995117, -0.66064453, 1.5322266, -0.16455078, -2.7832031, -0.41259766, 1.8232422, 0.08874512, 2.3730469, 0.5551758, -1.5908203, -1.6191406, -1.6806641, -1.9921875, 0.17980957, -0.6870117, 0.953125, -1.9287109, -0.2052002, -1.4189453, 1.3007812, 1.3623047, 1.0234375, -0.95458984, 1.5517578, -0.7348633, -0.765625, -0.15393066, 1.0390625, -0.82373047, 0.34716797, -0.55371094, 1.5185547, 2.0292969, -0.7158203, 1.3691406, -1.6269531, -0.68847656, -2.1484375, 3.03125, -2.0585938, -0.3942871, 1.1191406, 1.8896484, 0.8930664, -1.1699219, -1.0439453, -1.484375, 2.8945312, -0.048614502, 1.4765625, -0.9921875, -0.96875, -1.8896484, -3.8945312, -1.9208984, -0.73291016, -1.2167969, 0.7685547, -0.04562378, -1.1279297, 0.24719238, -0.61279297, -0.1451416, -0.72998047, -0.515625, -1.1767578, 0.8046875, -2.1445312, 1.2041016, 0.6333008, 1.7998047, 1.1044922, -0.10913086, -0.41967773, -0.18981934, -1.2792969, 2.5996094, -1.4970703, 1.0693359, 0.070007324, -0.0020198822, 1.3476562, 3.2363281, 1.7919922, -0.012588501, 0.7446289, -1.0615234, -0.7285156, 0.76416016, -2.1621094, 1.2167969, 1.5136719, -1.03125, 1.9941406, 0.18798828, 0.16699219, -1.4628906, 1.2871094, 0.13964844, -0.13000488, -0.9633789, -0.38256836, 1.3876953, 0.5961914, 0.3347168, 1.5537109, 0.61621094, -0.93115234, -1.0917969, -1.90625, -0.54052734, -2.6582031, 0.19921875, -0.5258789, 1.7109375, 1.1923828, -0.08288574, 2.1679688, 1.4013672, 0.52197266, -1.6992188, 1.1484375, -1.9462891, 3.4199219, 1.6083984, -2.3535156, -1.9101562, -2.7558594, 0.7416992, 1.9970703, -0.45532227, -0.4255371, 0.47851562, -2.0410156, 0.8520508, -0.04336548, 2.5527344, 2.6484375, 1.1621094, -1.1230469, -0.22802734, 1.5205078, -0.13769531, 2.5957031, 0.6611328, 1.8095703, -1.0458984, 1.9697266, 1.6142578, -1.1113281, 1.2958984, -1.1298828, 1.1005859, -2.3652344, -1.0908203, 1.2236328, -2.7265625, -0.79052734, -1.0380859, 0.16357422, -2.3242188, 1.71875, 1.7509766, -0.4921875, -0.5307617, 0.6982422, -0.9160156, 1.4482422, 1.3271484, 0.85058594, -0.7392578, -0.9589844, -0.058135986, 0.80859375, 1.0810547, -1.78125, 0.5395508, 1.2382812, -0.028503418, -0.2890625, 4.0703125, 1.9707031, 3.2402344, 1.6923828, 2.8867188, 1.765625, -0.33154297, 2.4609375, -1.0361328, 0.62109375, 1.2011719, -2.1269531, -1.1884766, 1.5634766, 2.2441406, -0.14624023, 0.5209961, 0.83984375, 0.24353027, -1.6210938, -1.6884766, 0.06549072, 0.11450195, -3.6640625, 2.2480469, -1.0341797, 0.51220703, -2.6660156, 2.0761719, -1.2871094, 0.8989258, -0.12359619, -1.2041016, 0.78564453, -1.1757812, -0.86376953, -0.3190918, -0.10412598, -0.5595703, -2.109375, -0.17224121, -0.22509766, -2.7265625, -1.0087891, 3.7402344, 1.3222656, 1.6796875, 0.14367676, 2.4335938, 0.8408203, 1.7089844, 1.046875, -0.4814453, 0.78564453, -0.24365234, 2.1347656, 1.0839844, -3.1523438, -0.11114502, -0.1998291, -2.7460938, -4.1445312, 1.0244141, 1.6386719, 1.7871094, 1.0185547, -2.0898438, 0.52734375, -0.8598633, 1.4775391, -4.046875, 0.72021484, 0.9316406, -2.5117188, -2.8417969, -1.1103516, 0.71533203, 2.2851562, 1.6484375, -0.06665039, 2.5019531, 1.1689453, 2.4316406, 0.47998047, 0.64697266, -0.9770508, 1.6503906, -2.4042969, 1.9492188, 1.5820312, -0.68652344, -1.1962891, 3.3242188, 0.16235352, 0.5102539, 0.36279297, -1.8642578, 1.1572266, -0.50146484, -1.1259766, -0.051696777, -1.1240234, -3.3417969, -1.3681641, -0.45092773, -0.81933594, -0.7314453, 1.4296875, 2.6464844, -0.7866211, -0.7246094, 1.5664062, -0.81152344, 2.1640625, -1.3369141, -1.5283203, -1.6621094, -0.16955566, 1.5859375, -0.56689453, -2.2519531, -0.9213867, 1.7421875, 0.48242188, -0.67626953, 0.23693848, -1.2099609, 1.1484375, 0.6254883, 2.1152344, 0.31152344, -1.0517578, 1.4873047, 0.11883545, -0.6953125, 3.7519531, -0.5131836, -0.25024414, 0.42504883, -2.34375, -0.56933594, -0.25195312, -0.5258789, 0.20568848, 4.9453125, 2.2011719, -0.6791992, -1.6582031, -5.28125, -1.5244141, -1.5703125, 1.6015625, 0.3334961, 0.33666992, 1.3388672, -0.6411133, 2.5839844, -1.0673828, 0.11364746, 0.18701172, -0.42651367, 0.6513672, -0.7055664, 1.9541016, 2.2636719, 1.4208984, -0.058258057, 2.53125, 1.8408203, 0.9663086, 0.7055664, 0.20605469, -0.96484375, -2.7421875, -1.921875, -1.6757812, 0.085754395, 0.9238281, 0.43603516, 1.1904297, -0.7080078, -1.5722656, -4.25, -1.5712891]}, "B01M4SA4PG": {"id": "B01M4SA4PG", "original": "Brand: GASPRO\nName: GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More\nDescription:

          Product Specification

          -High pressure LPG hose

          -Inlet Pressure:25-250PSIG

          -Outlet Pressure :0-20PSIG

          -Flow Capacity :122000 BTU/Hr

          -Certificate: CSA

          -Length of hose:4feet/48inch


          How to use it?

          1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

          2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

          3.Installs is not complex at all, even you don't need any tool required.

          This is an essential part of converting your fire pit/table to a best flame


          What equipment can it be used for?

          \u00a0Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,\u00a0 turkey fryers,torches and variety of high pressure applications


          Are you still worried about not being able to accurately adjust the temperature of the smoker/range? \u00a0

          This regulator will not make your smoker/range temperature too high or low\uff0cYou can use it to precisely adjust the temperature of your device.


          Are you still worried about the small flame of your grill?

          \u00a0If you have this propane regulator,you can really crank up the flames for quicker\uff0cMade your grill heat better than when it was new.


          Warm Tips

          \u00a01. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

          2.\u00a0Not suitable for appliances which need low pressure regulator

          \nFeatures: [Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature.\n[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8\u201d male flare connector\n[Extra gift] Come with pipe fitting 3/8\" flare M x 1/8\" MNPT Orifice, it fits all Propane Appliances with 1/8 Male\n[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder.\n[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off\n", "embedding": [-0.28271484, 2.0195312, 0.9008789, 0.74902344, -1.0302734, 0.2290039, 2.0546875, -1.6513672, 1.3515625, 0.75878906, 0.40673828, 1.2333984, 2.2597656, -2.3027344, 2.8476562, 1.2138672, 1.0566406, 0.5732422, 1.7636719, 3.0058594, 0.7265625, -0.20910645, 2.7929688, -0.20214844, 1.4658203, 0.34692383, 3.3515625, -2.8496094, -0.8745117, -1.3085938, 1.6035156, 1.671875, -0.56396484, 0.43847656, -2.0527344, -0.2878418, -0.7714844, 1.7099609, -3.5742188, -1.2041016, -0.7626953, -0.18359375, 2.1953125, -0.1965332, -2.4316406, 1.328125, 0.86572266, 1.3789062, -0.12670898, -0.49829102, 1.7431641, -0.010345459, 0.7709961, -0.062683105, -1.578125, 0.34765625, 0.2878418, -0.89990234, 0.46362305, 0.99853516, 2.2636719, 0.4482422, -2.0683594, 0.51171875, -1.3017578, 0.08685303, 0.046417236, -0.2006836, 0.5229492, 0.38378906, 0.9404297, 0.7338867, 0.054718018, -0.8100586, -0.3708496, -0.36010742, -2.8417969, -0.10345459, 3.1308594, 0.52978516, -1.3339844, 2.59375, 1.4101562, -2.734375, 1.3212891, -0.390625, -1.4726562, 0.1270752, 2.3652344, 0.52246094, -2.4296875, 2.6542969, -3.1210938, -4.1054688, 2.1796875, 1.7363281, 1.6738281, 1.6689453, 2.140625, 0.7109375, -1.9414062, -1.9394531, 0.055236816, 1.015625, -1.9423828, -1.1132812, 0.10736084, 1.6191406, -3.953125, 1.0410156, 0.40356445, 0.6777344, 2.2070312, -1.421875, 1.6455078, -2.1679688, -0.57470703, -0.65966797, 2.8046875, 2.203125, 2.6933594, 0.77783203, -1.3046875, 0.15246582, 1.0576172, 0.4790039, -1.6425781, 0.30932617, 3.5878906, -2.0644531, 0.58740234, -3.3515625, 2.2519531, -0.15856934, 1.7207031, -3.1757812, -1.2148438, -2.6210938, -2.9238281, -0.14428711, -4.4179688, 0.018554688, 1.921875, -0.2800293, -3.5527344, 0.5727539, -2.4746094, 0.72216797, 2.8769531, -2.1054688, 1.6650391, -2.2460938, 0.5263672, -1.3212891, 2.0097656, 0.23864746, 0.16174316, -1.5009766, 2.3945312, 1.1875, 2.109375, -2.3046875, -1.9677734, 1.9677734, -0.24243164, -2.0898438, 0.24511719, 1.1835938, -0.6850586, 0.9345703, -0.75683594, -2.1953125, -0.32080078, -0.23632812, -0.43676758, -1.1289062, 1.4960938, 2.4804688, 2.2304688, 0.38110352, -4.125, -2.3203125, -0.33081055, -1.0136719, 1.0830078, 0.51660156, -2.2988281, 0.44970703, 2.2070312, -2.125, -1.1796875, -0.7026367, -0.3659668, 1.4609375, -0.2319336, -1.9746094, -3.4433594, -0.45751953, -0.89941406, 0.09307861, -1.8583984, -1.2119141, 0.10723877, 0.27490234, -2.2988281, -1.359375, 1.4453125, -0.89501953, 0.32617188, 2.8320312, -0.27148438, -1.0429688, 1.1640625, -1.0380859, -0.13659668, -2.4667969, 2.5761719, 1.9707031, 0.82373047, 1.2861328, -0.8828125, 0.6591797, 0.16015625, 1.6972656, 2.2324219, 0.91503906, -1.1464844, 2.9628906, -1.8798828, -1.3955078, 3.1367188, 0.19946289, -0.009033203, -1.4941406, -1.2792969, 1.7597656, -0.6953125, 0.7998047, 0.22790527, 1.3427734, 0.76660156, -0.5708008, -3.0761719, -0.63671875, -0.54296875, 0.9448242, -2.6464844, 1.7792969, 1.6396484, -0.18847656, 0.6557617, 0.41357422, -0.9785156, -1.9853516, -0.9970703, 0.05908203, 0.49316406, 2.8828125, -0.17956543, -1.8154297, 0.85546875, 1.4443359, 0.7114258, 2.9707031, 0.32617188, 0.22192383, 1.9121094, -2.1386719, -0.8491211, -0.1303711, 0.07849121, 2.5957031, 2.1289062, -0.97314453, 1.2304688, 0.02684021, -2.5703125, 0.5078125, 0.7060547, 1.5742188, 0.7558594, -0.5917969, 1.9580078, -3.7578125, 1.6591797, 1.7822266, 1.3056641, 0.43017578, -1.3310547, 0.5419922, 4.6484375, -0.27270508, -3.0488281, 0.98876953, 2.3398438, 1.0107422, 0.9135742, 1.4042969, 0.4506836, -0.71191406, 0.0013151169, 0.97509766, -1.6328125, 1.0683594, 2.3046875, -0.5541992, -1.2119141, -1.0205078, -0.2788086, 1.8574219, -0.671875, -0.61865234, -0.99121094, 2.0996094, -2.3652344, -2.7460938, 1.1728516, -2.125, -0.62939453, 1.2138672, 2.2441406, 1.2109375, 0.66015625, -2.4804688, -0.28857422, 1.3369141, -1.5126953, 1.5654297, 1.5800781, -0.52490234, -0.056488037, -1.2841797, 0.081726074, -2.5214844, -3.5332031, 2.046875, -2.6113281, -1.7773438, 1.1728516, -2.8730469, -3.2832031, -1.1855469, 0.1418457, 1.9511719, 0.89160156, -0.21166992, -1.9980469, -0.05996704, -0.65185547, 0.16833496, 0.14916992, 1.7832031, -0.40722656, -2.8730469, 0.84033203, 0.7421875, 0.19396973, -0.045776367, -1.8798828, 0.63427734, 0.96972656, -0.12609863, -0.13598633, 0.042541504, 1.3164062, -1.3496094, 0.8095703, -3.5527344, -0.47192383, -0.64990234, 1.7539062, -0.26000977, 0.49243164, -2.9921875, -0.1307373, 0.2064209, -1.7021484, 0.99316406, -1.5273438, 2.2773438, -1.6396484, 0.28027344, 1.9804688, -2.0371094, -2.3671875, -1.2597656, 0.32910156, -0.5048828, -0.13513184, -2.2949219, 0.55859375, -0.15466309, 0.6098633, 0.30688477, -2.1640625, -2.8691406, 0.7861328, 0.46972656, -1.7900391, -0.08129883, 1.4697266, 0.19433594, -1.7744141, -0.34985352, -0.52001953, -1.7177734, -0.63134766, -1.046875, 1.4404297, -0.96191406, 0.5708008, 1.4589844, 1.5263672, 0.82421875, -2.3964844, -3.9570312, 1.4892578, 2.1386719, -3.0234375, 0.8955078, -1.4697266, -1.6171875, -2.6308594, -1.8378906, 1.7421875, 3.1953125, 3.8398438, 0.68896484, 0.32714844, 1.4433594, 1.7763672, -0.33984375, -1.9638672, 0.6640625, 4.6679688, -2.0097656, -0.2890625, -0.49560547, 1.4804688, -3.3496094, -0.6738281, 2.3320312, 0.32788086, 2.9882812, 1.7480469, 2.7773438, 0.21533203, 0.3149414, 2.1542969, -0.023986816, -0.26635742, 0.28320312, 0.31958008, 1.1005859, -0.99560547, 2.8203125, 2.5585938, 1.0498047, 2.6210938, 0.06088257, -0.10839844, -2.0097656, 0.7788086, -0.25463867, 1.7558594, 0.5732422, 1.5644531, 0.044403076, -0.17663574, 0.08728027, -0.20776367, 0.5698242, -1.7636719, -0.1217041, 1.7646484, 1.1181641, -0.7109375, -0.25195312, -0.4663086, -0.9785156, -0.8989258, -0.4675293, 1.1240234, 1.5048828, 2.4628906, -0.98095703, 0.45703125, -1.6367188, 1.7392578, -0.5732422, 0.6904297, 0.32885742, 0.7807617, -1.3671875, -1.6660156, 0.3244629, -2.7285156, -1.2539062, 4.1796875, 1.921875, -1.1767578, 2.0195312, -1.4296875, 2.6269531, 1.6728516, -0.54589844, 0.37841797, -0.1899414, 0.67333984, -0.031799316, -0.5449219, 2.4511719, -0.6020508, -3.7265625, -0.19677734, -1.9609375, 1.3330078, 0.5605469, -0.017837524, -4.0625, -0.0021648407, -0.1928711, 1.7724609, -0.5571289, 3.4746094, 1.3505859, -0.83691406, 2.6894531, -4.4609375, -1.0029297, -2.2578125, -5.6210938, 0.052368164, -3.7675781, 0.6538086, 3.0429688, 0.27661133, 0.42456055, 2.2949219, 2.453125, -4.1484375, -0.56152344, -0.7524414, 1.4638672, -3.2109375, -0.05493164, 2.7363281, 0.94970703, -0.74658203, -1, -0.55859375, -2.7480469, -0.17578125, 0.7109375, -3.0429688, -0.25024414, -2.2753906, 0.7236328, -1.7685547, -1.6386719, 1.3740234, -1.2060547, -0.75341797, -2.9140625, 2.0195312, 0.29882812, -0.24084473, -0.92041016, 2.6484375, 1.8408203, -0.81396484, -0.19946289, 0.4572754, 3.4472656, 0.4326172, -1.3232422, -0.60302734, 1.3173828, 0.6557617, -0.65185547, -1.703125, -0.39233398, -1.2451172, 1.2548828, 1.3037109, 1.9375, 0.81689453, 1.4072266, -2.953125, 0.6816406, 0.7348633, -1.1357422, -0.43676758, -0.43969727, -1.3554688, -2.7128906, -0.24035645, -1.5400391, -2.0703125, -1.3886719, 0.056762695, -3.1035156, 2.9433594, -0.23510742, -0.09899902, 0.8935547, -2.1152344, -0.28027344, -1.7675781, 0.23278809, -1.5585938, -0.48120117, -1.3388672, 0.03353882, 2.6210938, 1.8505859, -0.69140625, -0.51220703, 0.51953125, -3.5, 0.15649414, -0.61279297, 2.6835938, -0.012374878, -1.0966797, 0.44189453, -2.1855469, 4.6523438, 0.17749023, 0.9067383, 0.24169922, -1.3603516, -2.2617188, 2.1777344, 2.5175781, 2.2949219, 1.21875, 1.1259766, 2.3808594, 2.8105469, 0.97021484, -0.8510742, 1.4941406, -0.50927734, 1.0341797, -1.5087891, 1.0830078, -2.1855469, -0.31591797, 0.075683594, 2.28125, 2.6035156, 2.9433594, 0.55371094, -1.6962891, 1.5751953, 1.0712891, -0.8847656, -2.0371094, 0.15771484, -1.6542969, 2.8203125, 0.04611206, -3.1054688, -0.17687988, 2.1328125, -0.6459961, 2.3554688, 1.1240234, -0.93847656, 0.7060547, -1.6220703, -0.99072266, -0.0022201538, -0.6557617, 1.5039062, -3.3398438, 1.0986328, 0.5600586, 1.0751953, 2.4667969, -0.47705078, -1.2626953, -0.51171875, -1.9775391, 1.1269531, -1.8105469, -1.4238281, -3.8242188, 0.23852539, 3.0214844, 1.09375, 0.19873047, -0.40722656, 0.068115234, -2.0917969, -1.3779297, -0.48950195, 1.6386719, -0.1373291, -0.54541016, 1.6347656, -2.6445312, -0.4152832, -2.3769531, -0.9946289, -0.56933594, 2.5429688, 2.5410156, 1.9716797, -0.1583252, -0.8222656, -3.0117188, -5.875, -1.5761719, 3.0878906, 0.9951172, 0.020263672, -2.1230469, -0.5126953, 0.9135742, -0.21594238, 1.2324219, -2.9453125, 0.38232422, -1.3291016, -1.1591797, -1.53125, 1.0410156, -0.81591797, 0.13684082, 0.123413086, -0.20251465, -0.14953613, -3.3007812, -2.7363281, 1.3925781, -2.46875, -1.1435547, 1.7333984, -1.6503906, -2.3476562, 1.1542969, 1.1728516, -3.3359375, 2.7050781, -3.3769531, 0.03161621, 0.8339844, -1.3378906, 1.6582031, 1.8916016, -0.48828125, 1.7265625, 1.6240234, 2.9453125, -1.1279297, -0.6088867, 0.6879883, 0.53027344, -0.24157715, -2.9121094, -1.0517578, 0.1104126, 1.6640625, 1.7216797, -1.9716797, -1.5878906, -1.5458984, -4.1171875, 0.45385742, -1.0673828, -0.73095703, -0.4182129, 1.4169922, 1.6455078, -0.12384033, 0.21313477, 1.2353516, -0.8701172, -1.1298828, 1.8144531, -0.8652344, 1.8759766, 2.6347656, -1.4580078, -3.2363281, -1.9785156, 2.8261719, 3.1855469, -0.38378906, 0.8149414, -0.18310547, -0.0135650635, 0.48046875, -0.25927734, 1.7119141, 1.4267578, 0.56396484, -1.6259766, -0.59228516, 3.234375, -1.4453125, 0.5810547, 0.6748047, 0.28759766, -1.3457031, 3.3984375, 2.7890625, -3.3828125, 0.39331055, -1.1914062, 1.6757812, -1.0712891, -2.6699219, 0.6503906, -2.640625, 0.26953125, -1.3388672, -2.7207031, -2.9902344, 2.0390625, -0.10772705, -1.5107422, 1.4550781, 2.9550781, 0.2553711, -0.5175781, 1.7890625, 1.1708984, 0.36083984, 0.28344727, -3.1425781, 0.0519104, 1.6875, -3.1914062, 0.022583008, 2.5898438, 0.5385742, -1.2109375, 1.4873047, 1.7822266, 3.875, -0.56103516, 2.8164062, 3.7128906, 0.62402344, 1.9345703, 1.6953125, 2.4960938, 2.90625, -0.88183594, 1.4785156, 1.1708984, 0.7792969, 1.2099609, -0.39331055, -0.46704102, 0.11273193, -1.2158203, -0.3083496, 1.4902344, 1.5576172, -3.1445312, -1.1513672, -0.40454102, -0.3334961, -3.7011719, -0.093811035, -1.9912109, -0.47924805, 0.00022602081, -1.1337891, 1.7548828, 1.6904297, -1.5800781, 0.51220703, 0.39379883, 3.53125, -2.0566406, -0.0017795563, -0.91796875, -3.4335938, 1.3564453, 2.6738281, 0.8354492, 0.44384766, 1.4121094, -0.17736816, -0.79248047, 2.59375, 2.8613281, -1.6425781, 0.42285156, -1.4267578, 4.3125, 1.6894531, -1.8974609, 2.2285156, 0.84033203, -1.8691406, -3.8183594, 1.4121094, 0.3696289, 0.0025539398, -0.3227539, -4.53125, 2.4101562, -1.2636719, 0.4025879, -1.9619141, -0.17492676, -0.6791992, -1.2529297, 0.9238281, 0.60839844, -1.6503906, 3, 1.6962891, -2.3457031, 0.9580078, 2.7734375, 1.1748047, -0.06738281, 0.1472168, 1.3613281, 0.7915039, -0.4165039, 2.9042969, -0.36499023, -1.2109375, 0.17749023, 2.0605469, 0.9716797, 0.8623047, -0.58251953, 0.7011719, 0.3840332, 1.1269531, -0.5600586, -0.8461914, -0.68359375, -0.9760742, 0.3166504, -0.13708496, -1.5898438, -2.3730469, 1.5976562, 1.2050781, -2.2539062, 0.32714844, 0.42163086, -0.14660645, 2.6796875, 0.5751953, -0.52441406, -0.89941406, -0.87841797, 0.14294434, -1.8085938, -0.24633789, 0.47729492, -0.73046875, -0.3088379, -2.5839844, -0.67041016, 0.87060547, -0.21325684, -1.1376953, 0.2154541, -1.9287109, -1.4560547, 0.10839844, -1.625, 2.0390625, 2.8535156, -1.2490234, 1.6689453, -0.71435547, -1.9111328, -0.45654297, -2.328125, -2.078125, 0.39111328, 2.6425781, 1.7822266, 1.6123047, -1.7167969, -2.4160156, -0.5996094, -1.9824219, 3.0117188, -1.2275391, -0.42358398, 0.67871094, -0.08734131, 2.9472656, 0.29248047, 0.1574707, 0.25952148, 0.6928711, 1.1933594, -1.9033203, 1.1865234, -0.55371094, -0.54052734, 0.6591797, 3.0800781, 2.3984375, -1.3857422, -0.3449707, 1.9951172, -0.16442871, -2.0898438, -0.28564453, -0.88183594, -1.2998047, 0.9980469, 2.4238281, 3.0351562, 1.1884766, -0.71191406, 0.078552246, -0.5605469]}, "B01M2DKPX0": {"id": "B01M2DKPX0", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure\nDescription: Features:
          \u25cf Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

          \u25cf Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

          \u25cf Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

          \u25cf Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

          Specification:
          - Low Pressure LPG hose
          -Inlet Pressure: 25-250PSI
          -Outlet Pressure: 11\"W.C.
          -Flow Capacity: 95000 BTU/Hour
          -Certificate: CSA -Hose Length: 6feet/72inch

          Warning: Only for OUTDOOR Use.\nFeatures: \u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Diverse Use\u3011Fits for propane grill, camp stove, fire pit, heater, water heater, etc\n\u3010100% Safety\u3011Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank\n\u3010Control Gas Flow\u3011The Outlet Pressure of the regulator is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels\n\u3010Nice Length\u3011 6 FT long enough hose allows for flexible configurations\n", "embedding": [-0.86865234, 1.8535156, 0.080566406, -0.099243164, -1.7050781, 1.8662109, 1.8212891, -2.6484375, 1.7871094, 0.43432617, 0.028274536, -1.4433594, 1.9755859, -4.2148438, 2.8261719, 0.51660156, 0.5078125, 1.5742188, 1.6699219, 1.8994141, 1.6425781, -1.0439453, 3.4941406, 0.02734375, 1.2001953, -1.1386719, 2.4335938, -3.2871094, -0.48583984, -0.45703125, 1.171875, 1.0625, -0.010749817, 1.2929688, -2.4296875, -0.7426758, -0.9604492, 0.74853516, -2.5703125, -2.2617188, -1.5800781, -0.8652344, 2.5996094, 0.7026367, -2.0664062, 1.0664062, 0.8535156, 1.2460938, -0.046173096, -0.6616211, 0.38085938, 0.45166016, -0.54589844, 1.0927734, -1.8662109, -0.49902344, -1, -2.84375, 1.5263672, 1.2792969, 0.8881836, 0.016311646, -1.9101562, -0.14196777, -1.7060547, 0.9042969, 1.2314453, -1.1884766, -0.44580078, 0.6357422, 2.1386719, 0.96191406, -0.6660156, -1.1269531, 0.052215576, 0.81591797, -2.3554688, -0.3071289, 3.0449219, 0.44360352, -2.2167969, 3.046875, 2.0097656, -1.9931641, 1.4521484, -0.6176758, -2.9609375, -0.45117188, 2.0976562, 1.0458984, -2.1054688, 4.2265625, -3.4550781, -1.6269531, 1.2861328, 1.4726562, 1.7871094, 2.578125, 1.7236328, -0.6035156, -1.2548828, -1.3691406, 0.07086182, 0.47998047, -2.4707031, -1.2333984, 1.2158203, 1.9648438, -3.0332031, 0.16882324, 0.2866211, 0.2705078, 1.7011719, -1.09375, -0.109436035, -2.1269531, -0.6401367, -0.012809753, 3.9667969, 0.9604492, 3.4023438, 1.1855469, -0.013427734, -0.390625, 1.2451172, 0.24707031, -0.44628906, 0.79541016, 2.9335938, -0.9902344, 0.08081055, -3.1894531, 1.6318359, 0.4868164, 1.7216797, -2.9550781, -1.1699219, -2.46875, -3.1425781, 0.6977539, -3.8964844, 0.040618896, 0.9995117, -0.099731445, -4.4101562, 0.49169922, -3.03125, 1.90625, 3.4863281, -3.1875, 0.68310547, -0.89453125, 0.69628906, -1.7666016, 2.5292969, 1.2392578, 1.1787109, -1.7226562, 3.6113281, 1.8759766, 1.5673828, -1.6162109, -2.2167969, 0.55029297, 0.47143555, -3.0488281, 1.0371094, 0.92529297, -1.0224609, 0.5410156, 0.16027832, -4.140625, 0.5996094, -0.5283203, 0.62060547, -0.8901367, 1.2597656, 1.6259766, 3.1992188, 0.5073242, -4.1640625, -2.9140625, 1.0380859, -0.49414062, 1.4121094, -0.8300781, -0.41967773, 0.12030029, 1.1044922, -0.91845703, -1.5332031, -1.1494141, -1.0498047, 1.2783203, -1.1738281, -3.171875, -2.1660156, -1.2226562, 0.86865234, 1.5039062, -2.7558594, -0.828125, 0.7285156, 1.0771484, -2.4941406, -0.7705078, 1.9589844, -0.8378906, 0.38623047, 1.5664062, -0.09320068, -0.017654419, 2.0742188, -0.31225586, -0.46435547, -1.4492188, 2.2050781, 2.9335938, 2.3671875, 1.8974609, -0.2998047, 0.6723633, 0.74365234, 0.8652344, 2.0742188, 0.5986328, -0.7519531, 1.4521484, -1.8837891, -2.3398438, 3.0078125, 1.0859375, -0.02406311, -1.3046875, -1.1855469, 2.6640625, 0.6533203, 0.5917969, 0.3569336, 1.6494141, 0.05307007, -0.4560547, -4.0898438, -0.6928711, -0.87158203, -0.80810547, -0.51708984, 0.3137207, 2.4394531, -0.051727295, 1.1601562, 0.25219727, -0.9550781, -1.3496094, -0.5263672, -1, 0.8378906, 2.8964844, -1.1455078, -1.484375, -0.15478516, 1.8242188, 0.82714844, 2.5019531, 0.9165039, -0.9589844, 1.3837891, -1.5761719, -2.4160156, -0.25219727, -1.6542969, 3.3476562, 2.4472656, -0.5859375, 1.4277344, 0.4897461, -1.9394531, 0.67333984, 0.3095703, 0.50927734, 0.62060547, -0.81152344, 1.8955078, -2.3105469, 0.5800781, 1.3583984, 2.0097656, 0.16870117, -1.5761719, 0.67822266, 5.296875, -0.040527344, -2.2167969, 1.3662109, 1.3203125, 1.4287109, 0.90625, 1.0214844, 1.0859375, -1.5585938, 0.95166016, -0.31201172, -2.1757812, 1.6816406, 1.3505859, -0.54833984, -0.26660156, -2.5839844, 0.5966797, 0.7841797, -1.0986328, 0.2512207, -1.0029297, 0.34350586, -2.0566406, -1.8564453, 1.4882812, -2.2558594, -0.95703125, 3.0097656, 0.2121582, 0.24560547, 0.47216797, -3.1484375, 0.31420898, 1.2324219, -1.8798828, 2.1132812, 1.9414062, -1.2783203, 0.048095703, -1.4130859, -0.38378906, -2.4238281, -3.2148438, -0.14099121, -1.4833984, -1.9804688, 0.9604492, -2.0292969, -3.0566406, -0.67041016, -0.28637695, 3.3964844, 0.093566895, -0.96777344, -1.9492188, 0.55371094, -0.64501953, -0.36279297, 0.36572266, 2.4746094, -0.30981445, -1.3105469, 0.5488281, 0.77734375, 0.61328125, 1.4726562, -1.9296875, 1.1777344, 1.4101562, 1.0322266, -0.0065460205, 1.0214844, 0.89697266, -3.2363281, 0.85058594, -5.3164062, -0.4387207, -0.081604004, 1.4990234, -0.22424316, 0.7734375, -2.7226562, -1.796875, 0.20373535, -1.4140625, 1.6298828, -1.6914062, 1.9169922, -1.4667969, -0.6064453, 1.2851562, -1.8056641, -2.6816406, -1.3222656, 1.6474609, -2.0195312, 1.2451172, -2.1386719, 0.051483154, -0.086120605, 0.18444824, 0.07537842, -1.6699219, -2.5859375, 1.1044922, -0.19848633, -1.9121094, -1.0087891, 1.4238281, 0.69677734, -1.3642578, -1.7539062, -0.90722656, -2.0097656, -0.49438477, -1.2324219, 0.24987793, -2.09375, -1.0839844, 2.2363281, 0.8803711, 1.2324219, -1.1123047, -3.9511719, 0.90234375, 3.0546875, -1.7617188, 2.0332031, -1.6083984, -1.8730469, -2.5449219, -1.921875, 2.0820312, 1.1318359, 1.9882812, -0.11999512, -0.40942383, 1.9414062, 1.3466797, -1.0009766, -0.8544922, 0.64160156, 5.4140625, -3.359375, -0.22814941, -0.6513672, 1.5742188, -4.7382812, -0.74853516, 2.578125, -0.32910156, 2.6484375, 1.7353516, 0.9975586, 0.44458008, 0.6147461, 1.2470703, 0.87646484, 0.8334961, -0.020828247, 0.45898438, -0.02357483, -1.3876953, 2.6308594, 0.8051758, 0.8208008, 2.4628906, 0.359375, -0.7416992, -0.8310547, 0.3088379, 0.46411133, 1.0097656, 0.42626953, 2.3710938, 0.6118164, -0.5185547, -0.07891846, -0.22998047, 1.2148438, -1.7353516, -1.0507812, 1.0146484, 0.53222656, -0.7416992, 0.6298828, -1.6474609, -0.31347656, -0.4189453, -1.0390625, 0.9824219, 0.9345703, 1.7646484, -1.3808594, 0.78125, -1.6552734, 2.2265625, -1.3330078, -0.6401367, -0.3059082, 0.3815918, -1.296875, -1.1357422, -0.08502197, -3.0566406, -1.5126953, 4.0820312, 2.5410156, -1.2949219, 1.7734375, -0.33666992, 2.5234375, 2.7988281, -0.57910156, -0.21813965, -0.8769531, -0.091552734, -0.07318115, -0.33496094, 1.9921875, -0.059051514, -4.0820312, 0.059020996, -2.2089844, 0.10559082, 0.96875, -0.14343262, -3.1132812, 1.9326172, -0.4206543, 0.6176758, -0.625, 3.484375, -0.19042969, -1.7148438, 1.3574219, -3.9355469, -0.3840332, -2.1191406, -6.046875, 0.85253906, -2.3886719, 0.3046875, 1.703125, 0.05819702, 0.4909668, 1.4082031, 0.73583984, -3.3984375, -0.7519531, -1.0751953, 1.1113281, -2.9257812, 0.59277344, 1.3720703, 0.08709717, -1.0664062, -2.328125, -0.13195801, -3.0859375, -0.59814453, 1.9033203, -2.1738281, -0.61865234, -1.9335938, 0.65771484, -1.6943359, -0.54248047, 1.1376953, -1.4238281, -0.28100586, -3.4179688, 1.5673828, 1.7929688, 0.44311523, 0.0020637512, 2.7636719, 1.8027344, -1.2011719, 0.9345703, 0.21411133, 4.5625, -0.3762207, -2.5371094, -0.050994873, -0.31567383, 0.14770508, -0.6425781, -1.4179688, -0.51123047, -1.1660156, 1.9365234, 0.9379883, 2.4550781, 0.7836914, -0.013908386, -4.328125, 0.33422852, 0.49780273, -2.328125, -1.4521484, -1.3037109, -1.2333984, -2.5664062, -0.4790039, -1.9121094, -1.1894531, -1.4589844, 0.09283447, -2.6191406, 1.6298828, -0.2878418, -0.19628906, 1.0615234, -1.5, -0.22485352, -0.13952637, -0.70654297, -2.1757812, -0.8803711, -1.4179688, -0.84472656, 1.9287109, 0.98779297, -1.3623047, -0.68115234, 0.8730469, -3.4042969, -0.28686523, -1.6474609, 1.8730469, 0.89697266, -0.7363281, 0.48217773, -1.1103516, 4.1523438, 0.096069336, 0.9926758, 0.8535156, -0.47045898, -1.7587891, 2.2695312, 2.9765625, 2.21875, 0.7861328, 1.8779297, 3.4277344, 2.3476562, 2.3378906, 0.055511475, 2.3925781, -0.3371582, 0.46240234, 0.22570801, 0.7553711, -1.2861328, -0.024795532, -0.60546875, 1.6240234, 2.4101562, 3.0722656, 0.83984375, -1.4082031, 1.5224609, 1.2441406, -0.49291992, -1.1435547, 0.60058594, -1.5859375, 2.4960938, -0.7841797, -2.3515625, 2.0371094, 1.7763672, 0.017120361, 3.2089844, -0.14331055, -1.6865234, 0.25097656, -1.4052734, -0.53808594, -0.85546875, -1.6865234, 2.1660156, -2.3203125, 1.9013672, 0.040649414, 2.4707031, 2.0429688, -0.30078125, -0.69189453, -0.21069336, -1.7509766, 1.3837891, -1.0449219, -1.2890625, -3.8964844, 0.42260742, 1.4560547, 0.53222656, 1.6162109, -0.48095703, -1.0693359, -2.0605469, -1.765625, -0.09295654, 3.5722656, -1.3642578, -1.6826172, 1.9667969, -0.7060547, -0.71875, -2.2460938, -0.9926758, -1.0019531, 2.640625, 1.9433594, 1.9521484, -0.47753906, -1.7177734, -2.4375, -5.4570312, -0.91064453, 2.1269531, 0.94677734, 0.83984375, -2.4628906, -0.37768555, 2.4414062, -0.18566895, -0.36621094, -2.3671875, 1.0742188, -1.0488281, 0.36987305, -2.546875, 0.72558594, -0.7246094, 1.0126953, -0.0031776428, 0.984375, -0.5463867, -2.1972656, -2.8183594, 1.6230469, -2, -1.3740234, 3.4628906, -1.7421875, -1.6425781, 1.0429688, -0.18359375, -1.7617188, 1.9355469, -2.2246094, -0.9477539, 0.98046875, -2.1015625, 1.8125, 1.8066406, -0.82714844, 0.8652344, 0.3203125, 1.5166016, 0.0012989044, -0.6347656, 0.5131836, 2.1074219, -0.27148438, -1.8291016, -0.43920898, -0.5371094, 1.5996094, 2.6464844, -2.078125, -0.7363281, -1.4375, -3.5078125, -0.36401367, -1.828125, -0.79003906, 0.89160156, 1.2070312, 0.9291992, -0.31835938, 0.6098633, 0.48413086, 0.5605469, -1.1542969, 1.0703125, -0.5830078, 2.9785156, 1.3320312, -0.7128906, -4.0585938, -1.0898438, 1.9921875, 4.171875, -1.0507812, 1.09375, -0.57373047, -0.4296875, 0.68847656, -0.010391235, 1.6748047, 1.5595703, 1.1289062, -1.7773438, -0.5600586, 2.5878906, -1.3242188, 1.3164062, -0.016845703, -0.8051758, -0.4543457, 2.53125, 2.2949219, -2.3828125, 0.7163086, -0.8408203, 2.6816406, -0.8569336, -2.7558594, 0.25952148, -3.2148438, 0.80908203, -1.3496094, -2.7050781, -3.390625, 1.6933594, 0.79785156, -1.6083984, 1.1191406, 3.3632812, -0.31420898, -0.3869629, 0.95654297, 0.7939453, -0.5800781, 0.37036133, -1.8417969, -0.12890625, 1.3544922, -2.0976562, 0.35107422, 2.7871094, -0.97216797, 0.13305664, 2.0644531, 2.6679688, 2.5976562, 0.94189453, 2.2714844, 4.484375, 0.3359375, 2.4589844, 1.9414062, 1.9628906, 1.6240234, -1.8681641, 0.703125, 2.65625, 0.30541992, 0.65966797, -0.5883789, -0.23657227, -0.53222656, -1.5332031, -1.0771484, 1.0126953, 1.6953125, -2.4628906, -0.9824219, -0.28881836, -0.56103516, -3.4667969, 2.09375, -1.7988281, -0.64941406, 0.57373047, 0.8745117, 0.5410156, 0.8359375, -2.0703125, 0.13684082, -0.2133789, 2.0839844, -1.4873047, 0.3305664, -0.64208984, -2.8984375, 0.6069336, 2.6035156, -0.33544922, 0.29125977, 1.6230469, 1.5742188, 0.08850098, 2.4023438, 1.5166016, -2.3378906, 0.578125, -2.4492188, 3.5371094, 1.5664062, -2.8417969, 2.2148438, 1.3603516, -1.7929688, -4.0585938, 2.6347656, 0.4345703, -0.86328125, 0.20043945, -3.1269531, 1.7548828, -1.4648438, 0.13208008, -2.4609375, -0.14477539, 0.7680664, -1.2578125, -1.0205078, -0.5263672, -1.6201172, 3.1757812, 1.9033203, -1.3623047, 0.98876953, 2.9042969, 1.234375, -0.24047852, 1.1611328, -0.34594727, 0.47631836, -0.8745117, 2.8359375, 0.32348633, -0.95654297, 0.09643555, 2.96875, 0.39282227, 1.6835938, -0.5864258, -0.37231445, 0.30541992, 0.5439453, -0.7241211, -0.11242676, -1.7539062, -0.86572266, 0.47338867, 0.2668457, -1.8779297, -1.5400391, 1.8378906, 1.1816406, -1.5947266, 1.6083984, 1.3408203, -1.3583984, 2.3222656, 0.81152344, -1.1992188, -0.093933105, -0.13745117, -0.024612427, -2.625, -0.31811523, -0.035858154, -1.6933594, 0.3540039, -1.6494141, -0.15734863, -0.066101074, -1.7275391, -1.8300781, 0.5214844, -2.2539062, 0.09246826, -0.5957031, -0.22912598, 1.796875, 3.4863281, 0.44726562, 0.83740234, -1.5527344, -1.4882812, 0.67626953, -2.5585938, -1.9052734, 0.83984375, 4.0820312, 0.7915039, 1.3320312, -1.21875, -3.1484375, -0.33447266, -0.6484375, 2.1933594, -0.4765625, 0.036499023, 2.1132812, 1.3876953, 2.8242188, 0.2401123, -0.040771484, -0.2919922, 0.4099121, 1.7216797, -0.20690918, 1.8457031, 0.35546875, 0.07165527, -0.25195312, 3.9277344, 2.4589844, -0.5571289, 0.87646484, 0.56689453, -0.23254395, -2.5703125, 0.4501953, -1.2744141, -0.578125, 2.0273438, 1.5712891, 2.953125, 0.060638428, -1.1474609, -1.5722656, 0.057250977]}, "B08XYJP6DZ": {"id": "B08XYJP6DZ", "original": "Brand: Flame King\nName: Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray\nDescription: \nFeatures: Never run out of propane - Built-in accurate gauge\nThe HOG can be used both vertically and horizontally\nEZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges.\nNew design with built in wheels for ease of transport\nRugged, high grade steel welded construction\n", "embedding": [-1.5292969, 1.9794922, 0.50097656, 0.2644043, 1.0527344, -1.5244141, -0.47070312, 0.4482422, 0.79003906, -0.34057617, 2.4277344, 0.5786133, 0.29101562, -2.8125, 0.8432617, -1.1894531, -0.15136719, 1.2626953, 0.09429932, -0.30932617, 3.0097656, 0.6826172, 0.35351562, -1.7910156, 3.1132812, -0.45922852, 4.0820312, -2.1953125, -0.3894043, 1.0273438, 1.2080078, 0.11035156, 0.50927734, 1.6611328, -1.3378906, -2.0605469, 1.75, -1.2910156, -6.1796875, -1.671875, -2.7929688, -0.17175293, 0.6557617, -0.4248047, -0.9277344, 0.9223633, 1.0302734, -1.2490234, 0.17675781, 1.2236328, 2.5839844, 1.3886719, -0.7080078, 1.34375, -0.034851074, 1.4648438, 0.9736328, -3.9414062, 0.16003418, 0.5048828, 2.3808594, 1.0136719, -2.8144531, 1.3779297, -0.23950195, 2.1054688, 0.4350586, 0.5966797, -0.6040039, 2.8671875, -0.60009766, 1.6171875, 0.9458008, -1.6533203, -1.9160156, 0.9536133, -2.7382812, -0.14978027, 1.5195312, -0.27514648, -0.33276367, 1.7597656, 1.1708984, -1.6425781, -0.47851562, -2.1230469, 0.47192383, -1.0449219, 1.9316406, 0.37060547, -0.9746094, 1.5439453, 0.22167969, -4.6523438, 1.6640625, 1.0449219, -0.25170898, 0.50097656, 0.6777344, 1.9472656, 1.6025391, 0.8041992, -0.09240723, 0.041625977, -0.6381836, -1.3173828, 0.19482422, 0.70166016, -2.6289062, 3.0117188, -1.1503906, 0.12512207, 1.2734375, -0.20471191, -0.96240234, -0.61083984, 0.3046875, -0.2619629, 2.7460938, 0.32104492, 1.6943359, -2.7519531, 1.0322266, -0.8222656, 2.0742188, 0.2355957, 0.20117188, 0.7939453, 5.5117188, -0.49951172, 2.3007812, -0.37329102, 3.546875, -2.8789062, 0.1887207, -1.7646484, 0.28027344, -1.171875, -2.1894531, -1.7382812, -3.4394531, -0.6816406, 1.7617188, -0.5913086, -1.8300781, -0.51708984, -0.7080078, -1.0185547, 0.5566406, -1.7568359, 0.6616211, -0.83203125, 0.2565918, -0.20422363, 2.46875, 0.765625, -0.5913086, -2.0742188, -0.38549805, 0.6333008, 0.30566406, -1.0742188, -2.0273438, -0.7241211, -2.4121094, -2.1015625, 0.8305664, 0.8442383, -0.95214844, 2.7558594, 0.24206543, -0.45166016, -0.76123047, 0.6616211, -0.39379883, -1.0986328, 0.3684082, 3.0449219, -0.06262207, 0.2631836, -2.9257812, -0.8642578, -0.11999512, -1.7910156, 2.1386719, -1.765625, -1.3369141, -2.1738281, 1.6855469, -0.8208008, -1.4033203, 0.9628906, -0.18713379, -0.04888916, 1.9433594, -0.8652344, -2.2070312, -3.2675781, 1.6035156, 1.8769531, -1.4160156, -0.85302734, 3.0488281, -0.87060547, -2.5625, -0.38671875, 1.21875, -1.0742188, 1.8740234, 0.5258789, -0.34448242, 0.7363281, 2.8964844, -1.5322266, 0.06903076, -2.8417969, 1.0302734, 2.3046875, 1.5976562, -0.16113281, 0.41748047, -1.796875, 0.33325195, 0.5024414, 0.30126953, 1.3173828, 0.66796875, 0.87597656, -3.2109375, -1.7412109, 1.6542969, 2.296875, 0.94433594, 0.71191406, -1.7216797, 2.7890625, 0.4260254, -0.5859375, 0.14367676, 0.86816406, 0.4741211, 0.5175781, -1.8583984, -0.9169922, -2.1445312, 0.70214844, 0.07598877, 0.43139648, 1.5683594, 0.85302734, 0.44873047, -0.11932373, -0.87158203, -0.49047852, -0.7939453, 0.2685547, 1.8378906, 0.9506836, 0.73876953, -1.9775391, 1.5419922, -0.890625, 1.3398438, 0.60058594, -0.64404297, -0.40454102, 3.0566406, -1.0576172, 0.56689453, -0.058563232, -0.53466797, 0.7294922, 3.9101562, -0.5576172, 1.3759766, 2.515625, -1.5244141, 3.1953125, -0.98095703, 1.7822266, 1.5214844, 1.4462891, 0.9902344, -3.5625, 1.3759766, -0.29638672, 0.41601562, -0.6640625, -1.8867188, 0.009094238, 4.796875, -1.1279297, -1.5712891, 1.6035156, 1.7558594, 1.484375, 2.6972656, -0.53808594, 0.4831543, -1.1748047, 0.51416016, -0.24060059, -1.6054688, 0.21411133, 1.0996094, -0.22766113, 0.6694336, -0.25756836, 1.5087891, -0.13146973, -1.8925781, 1.2402344, -2.1152344, 2.0332031, -0.5732422, 0.0037136078, 3.0273438, -2.1074219, 1.484375, 1.2724609, 0.92578125, 0.9008789, 1.0888672, -1.4863281, -0.02456665, 2.0097656, -0.78466797, 1.953125, -0.11407471, -0.4650879, 0.029541016, -0.78564453, -0.107177734, -1.3515625, 0.11437988, -0.1083374, -2.6621094, -1.9326172, 1.3837891, -3.1386719, 0.6201172, -0.7026367, -2.8476562, 2.3632812, 0.4555664, -1.6542969, 0.69628906, -0.24621582, 0.7246094, -1.703125, -0.24475098, 3.4277344, -1.1699219, -4.1484375, -0.41333008, 1.4394531, 0.31103516, 2.2753906, -1.8427734, 0.1574707, 0.12890625, -0.7890625, -0.24804688, -1.09375, -1.3476562, -0.5341797, 2.2480469, -4.34375, 1.9404297, 0.009773254, 1.5322266, -0.37158203, 0.9926758, -2.3984375, -1.8886719, -0.8857422, -0.27807617, 2.0722656, 0.7832031, 0.3935547, 0.104003906, -0.13232422, 0.8598633, -1.3847656, -1.4189453, -0.40283203, 0.1348877, -0.8457031, -1.2001953, -4.2148438, 1.2294922, 0.7402344, 0.6904297, 0.14318848, -0.43432617, -2.4414062, -0.38208008, -1.2060547, -0.58154297, -1.609375, -0.51464844, -0.4267578, -2.7382812, 0.9067383, 0.19372559, -1.6484375, -1.9355469, -1.359375, 0.86816406, 0.49072266, -0.52783203, 1.3076172, -0.9223633, 1.6162109, 0.16381836, -4.4921875, 3.34375, 2.4355469, -1.1601562, 1.6816406, -2.8261719, 0.33789062, -2.5195312, -0.64208984, 4.5195312, -0.74609375, 0.99121094, 0.07849121, 0.31201172, 1.5957031, 0.6538086, -1.3095703, -0.53271484, 0.2064209, 2.7539062, -1.6591797, -1.0029297, -0.81347656, 1.2138672, -2.4863281, -0.5473633, 0.43041992, -0.080566406, 1.3291016, 0.24377441, -1.0429688, -1.015625, 0.40551758, 0.12225342, 2.4003906, 1.0625, -0.17333984, -1.109375, 0.6791992, -1.3974609, 0.043029785, 4.0351562, 0.25683594, 3.4296875, 0.55908203, 0.6435547, 0.59472656, -0.25634766, -1.0039062, 2.1621094, 0.99853516, 1.4042969, 0.4814453, 0.83203125, 0.18652344, -0.74316406, 1.234375, -1.3369141, -1.1113281, -0.14013672, 1.0097656, -0.7714844, 2.6757812, 0.24694824, -1.2207031, -0.7368164, 3.9160156, -0.85009766, 0.77978516, 0.4753418, -1.3251953, 1.8212891, -2.234375, 3.2753906, -0.67333984, 0.97802734, -1.0214844, -0.66503906, -2.3945312, -1.9912109, 0.022766113, -1.0908203, -1.9541016, 2.7265625, 0.8378906, -3.3203125, 0.040252686, -2.015625, 0.14819336, 0.2565918, -1.1035156, 0.6020508, 0.578125, 0.37426758, -0.08105469, -1.2275391, 1.6972656, 0.8149414, -0.5444336, 1.0957031, -0.9238281, 0.87402344, 0.33496094, 0.19177246, -1.8222656, 1.2138672, -2.0644531, 2.3222656, -0.38427734, 3.3710938, -0.6479492, 0.66308594, 2.703125, -0.92626953, -0.87597656, -1.9765625, -3.4667969, 1.546875, -2.6914062, -0.625, 2.171875, -2.3398438, 0.8569336, 0.25512695, 1.0986328, -1.2666016, -0.023880005, 0.10479736, 1.4794922, -2.4355469, -1.6962891, -0.15014648, 1.5517578, -2.90625, -0.024887085, 0.92529297, -1.9423828, -1.0595703, -0.31103516, -3.265625, 1.03125, 0.49047852, 1.1064453, -1.3164062, -0.7055664, 2.8496094, -1.7636719, -0.6464844, -1.3300781, 2.9863281, 1.3359375, -0.8276367, 0.30688477, 2.3339844, 2.0507812, -0.6948242, -0.30932617, -0.64697266, 2.4179688, 1.1669922, -2.6328125, -1.5654297, 0.56103516, 1.015625, -3.0351562, 0.8149414, -1.7636719, 0.92333984, 3.7402344, 1.2548828, 0.609375, 0.9379883, 0.25390625, 0.68066406, 0.73535156, 0.94873047, 0.31689453, 0.66259766, -1.140625, -1.5351562, -2.2304688, 1.3291016, -2.84375, -0.3034668, -0.4645996, 0.8774414, -1.9755859, 2.2402344, 0.7006836, 2.2832031, -1.1191406, 0.2919922, -0.31420898, -0.9536133, 0.5830078, -1.2617188, -0.04547119, -0.062408447, -0.9160156, -0.099731445, 0.0030002594, -1.5263672, 0.6298828, 2.0058594, 0.1427002, -1.0878906, -0.20202637, -0.038604736, -2.0976562, 1.3691406, 0.4465332, -0.31835938, 2.7910156, -2.1074219, -1.5322266, -0.35473633, -0.23010254, 0.18725586, 0.92871094, 0.18469238, -0.91796875, 2.8632812, -1.2236328, 0.32128906, 1.8398438, 1.0878906, -0.74609375, 1.2666016, -0.7685547, -1.4589844, -1.1591797, 1.3867188, -2.2167969, 1.5576172, 2.671875, 0.033081055, 1.4873047, 2.4726562, 0.10418701, 0.7270508, 2.0195312, 1.3115234, -2.5136719, -2.4804688, 0.39892578, -0.7841797, 1.6054688, -0.40112305, -1.6894531, -0.08093262, 2.4296875, -1.2148438, 0.99902344, 1.8623047, -1.5517578, -2.1113281, -0.70214844, -1.3525391, -1.0888672, 1.2402344, 0.5854492, -0.65478516, 2.1347656, -1.0742188, 0.91064453, -0.8808594, 0.6542969, 1.2373047, -0.7861328, -1.1621094, -0.5214844, 0.8261719, 0.9238281, -2.5703125, 1.0322266, 0.8857422, 1.7060547, 0.07348633, 1.3115234, 2.2929688, -0.8847656, -1.1601562, 0.31420898, 0.4194336, -0.5546875, -0.7651367, 2.8496094, -0.14331055, -1.4980469, -0.95703125, -0.8041992, -1.2480469, 2.1503906, 2.0292969, -0.52685547, -0.24902344, -0.8491211, -2.2148438, -3.3242188, -0.41723633, 0.17932129, 0.16149902, 0.110839844, -1.4804688, -0.93408203, 0.22070312, -0.5859375, -1.6181641, -1.2070312, -0.16552734, -1.5097656, -0.89990234, -1.0488281, -0.15527344, -0.49951172, 0.8125, -0.20861816, -1.7509766, 0.5214844, -1.03125, -2.8085938, 3.234375, 0.11791992, 0.05706787, -0.0104522705, -2.2382812, 1.53125, 4.2617188, -0.31591797, -4.078125, 1.8505859, -2.9902344, -0.052642822, 0.26245117, -3.2148438, -0.6972656, 1.1757812, -0.45166016, 0.86621094, 3.0625, 2.2636719, -0.9863281, -1.2587891, -0.1126709, 0.5629883, -1.1054688, 1.6425781, 2.5195312, 0.18725586, 0.51708984, 0.6977539, -0.32421875, -1.625, -1.5634766, -0.46362305, 0.37646484, -2.4550781, -1.2060547, 0.80126953, 1.5673828, 0.39501953, -0.66259766, 0.09326172, 0.12585449, -1.1826172, -1.2792969, 0.9482422, -2.0136719, 2.3632812, 2.0039062, -2.2207031, -3.34375, 0.057678223, 0.93115234, 2.15625, -1.4511719, -1.84375, 1.9248047, -1.7734375, 1.1933594, -0.3166504, 1.6884766, 0.85302734, 0.5029297, -1.3554688, -0.13098145, 2.9765625, 0.46899414, 2.2324219, -0.2944336, -0.44335938, 0.9277344, 1.0761719, 2.0625, -1.4726562, -0.3779297, -0.23034668, 0.92285156, -1.9833984, 0.50634766, 0.22485352, -2.4570312, -0.7211914, 1.5507812, -1.6748047, -3.28125, 0.16394043, -0.98583984, -1.3085938, 0.30932617, 0.39282227, 0.0082473755, -0.107421875, 1.0556641, 2.4003906, -1.5722656, -0.016921997, -0.050323486, 1.0136719, 0.82470703, -1.7421875, 1.1699219, 2.0273438, 0.50634766, -0.60009766, -0.08123779, -0.5620117, 2.2363281, 1.1923828, 2.5449219, 3.46875, -0.12463379, 1.4501953, 1.3115234, 0.06866455, 2.1640625, -0.7734375, 0.5385742, -0.39526367, 1.1767578, -0.9868164, -0.6542969, 0.96728516, -1.6484375, 0.6464844, -0.49194336, 0.78808594, 3.0175781, -1.0429688, 0.16430664, -0.35058594, 1.7910156, -1.2353516, 1.3876953, -0.8496094, -0.30078125, 0.4206543, 0.2788086, 0.15185547, 1.2763672, 0.8227539, -0.5942383, 0.21032715, 0.7661133, 1.0488281, -2.1386719, -0.6503906, -1.3779297, 0.5932617, 1.9316406, 1.1181641, 0.2836914, 0.03994751, -1.8808594, -0.47045898, -0.5942383, -0.8276367, -1.5507812, 1.0986328, 0.30566406, 1.8291016, 1.6689453, -0.85791016, 2.3183594, 2.3847656, -1.2998047, -2.9121094, 2.7324219, 0.74658203, -0.1829834, 0.27441406, -2.8085938, 1.1884766, -1.2441406, 1.4160156, -3.1074219, -0.5986328, -1.8232422, -0.16918945, 1.3457031, -0.67041016, -1.2158203, 1.7060547, 1.5205078, 0.07220459, -0.6611328, 1.4550781, 1.2158203, 0.27661133, 0.12792969, 0.008201599, 1.3076172, -0.9277344, 2.5859375, -0.8613281, -0.010437012, -0.1817627, 1.7861328, 0.11102295, -0.85302734, 1.7001953, -0.3876953, 1.484375, 1.2558594, 1.8222656, 1.2910156, -1.1044922, -1.1826172, -1.3320312, -0.4934082, -0.28295898, -2.4472656, -0.3786621, -0.045288086, -2.1152344, -2.15625, 1.1591797, -0.5551758, 0.5673828, 0.030090332, -2.3476562, -0.97753906, 0.98779297, 0.57373047, -0.21496582, 0.24780273, 1.6855469, 2.2363281, -0.9116211, -2.1367188, 0.12719727, -2.4550781, 1.3076172, -1.7998047, 0.2980957, 0.85253906, -1.9101562, 1.0351562, -0.10015869, 0.9433594, 1.375, -0.7988281, 0.49780273, 0.3930664, -0.23522949, -0.3605957, 0.9506836, -2.2519531, -1.6757812, 0.8041992, 0.234375, 1.421875, -0.9838867, -3.2734375, -1.6054688, -2.6035156, -0.81884766, -0.8911133, -1.1103516, 0.7973633, 1.1054688, 1.90625, -0.5292969, 1.7138672, -0.1817627, 1.2119141, 2.59375, -2.8535156, 1.1464844, 0.3466797, 0.23327637, -0.2705078, 2.2539062, 0.55810547, 1.5429688, 0.07727051, 1.9033203, -0.55371094, -2.2929688, -1.0126953, -1.7626953, -0.0960083, 0.40551758, 0.8671875, 0.8535156, 1.7265625, -1.0009766, -0.9379883, -0.8925781]}, "B07DP2KKWT": {"id": "B07DP2KKWT", "original": "Brand: Tonkin\nName: Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979\nDescription: Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.\nFeatures: Plastic Trailer\nAbout 6 Inches Long\nComes in Clear Plastic Box\nFore Ages 14 and up\n", "embedding": [-0.81396484, 2.2070312, 2.546875, 0.2993164, -1.5625, -2.421875, -1.0771484, -2.0605469, -0.1484375, 0.83496094, 2.6523438, 0.47143555, 0.94873047, -1.1367188, 0.53027344, 0.56347656, -0.8222656, 3.7109375, 0.19592285, 1.4550781, 2.6621094, 0.4777832, -1.7246094, -2.1835938, 2.9628906, -1.2490234, 5.0546875, -0.77197266, 2.2558594, -0.20910645, 0.19750977, -0.2734375, 1.0625, 2.2890625, 0.42211914, -0.5786133, -0.8623047, -1.1689453, -4.4609375, 1.1162109, -3.53125, 2.1835938, 0.80029297, 2.7949219, -1.3427734, -1.4804688, 0.5498047, -0.52246094, -0.74853516, -0.20715332, -0.22241211, 0.2956543, -1.140625, 1.7128906, -0.85253906, -1.1054688, -2.8984375, 0.70166016, -1.7246094, -0.3852539, 1.4560547, -1.2216797, -1.3486328, -0.1348877, -0.19702148, 3.3378906, -0.8876953, -2.1972656, 0.52685547, 2.3320312, 0.6376953, -0.18518066, 1.1464844, -1.6367188, -1.0068359, -0.027191162, -2.0058594, -0.14672852, 0.64501953, -1.4443359, 0.4855957, 2.4726562, -0.5698242, 0.15319824, -3.3144531, -2.9414062, -0.16174316, -0.31958008, 0.69433594, 4.3945312, -2.2519531, 0.33251953, 0.0146484375, -4.1367188, 0.44458008, -0.27978516, -0.28027344, 1.6210938, 1.4306641, 1.1054688, 1.5585938, -1.6982422, -1.3242188, 0.5024414, -2.4316406, -0.19848633, 2.0898438, 0.004108429, -2.3457031, 2.4941406, -0.44189453, -1.3759766, 1.0449219, -1.5556641, -0.9223633, -1.0429688, 1.8789062, -1.3935547, 0.28979492, 1.2890625, 4.3789062, -1.3300781, 2.6601562, -0.2824707, 2.2265625, -0.20214844, 0.47802734, 1.2285156, 1.6630859, -0.25952148, 1.8076172, 3.3613281, 0.74072266, -1.2988281, -0.6816406, -0.86376953, -0.13146973, -1.7900391, -1.2089844, -0.08453369, -0.4736328, -0.026138306, 0.7861328, 0.14123535, -2.5234375, -1.0820312, -0.9580078, -2.0859375, -0.0132369995, 0.41235352, 0.63720703, -2.5195312, 0.035003662, 1.9619141, 1.5820312, 1.9267578, 1.1621094, -1.6914062, -1.5, 3.4140625, 2.2519531, 2.984375, -1.3896484, 2.3417969, 0.64453125, -1.1845703, 0.46240234, -0.2590332, -1.3193359, 1.3251953, 1.1113281, -2.3144531, 0.8222656, -0.81103516, 0.23376465, -1.6533203, 0.39624023, -0.43725586, 0.48999023, -1.703125, -0.4255371, -0.5810547, -0.5336914, -2.0097656, 0.025558472, -0.020721436, -0.64208984, -2.5429688, 0.55126953, 1.1552734, 0.057891846, 1.4804688, 0.3227539, 0.17822266, -0.73291016, -1.8613281, -1.4746094, -2.8730469, 2.0332031, 0.7495117, -0.23669434, 0.5488281, 1.5341797, -1.4121094, -1.4619141, -1.8095703, 0.42260742, -1.4082031, -0.88623047, 0.90966797, -0.07165527, 0.30859375, 0.37841797, -1.6171875, 0.7871094, -2.5273438, -2.1152344, 3.9511719, 1.5507812, -0.12976074, -0.9614258, -0.9902344, -1.7822266, 0.95458984, 0.3034668, -0.08508301, 1.1894531, -0.31298828, -0.88378906, 0.9501953, -1.7832031, 1.171875, -0.59814453, 1.3740234, 0.9609375, 1.9755859, 2.3261719, 0.99072266, -0.17041016, 1.1884766, 0.47998047, 1.4775391, -1.2119141, -0.59228516, -0.028671265, 1.1865234, -0.82666016, 0.41918945, 1.6386719, 0.52490234, -0.421875, -1.1162109, 1.21875, -2.3476562, 0.19750977, 3.1523438, 0.55126953, 0.54248047, 0.13427734, -2.7226562, 1.9160156, 1.390625, -1.1611328, -0.041503906, 2.4160156, 2.40625, 1.7714844, -1.8779297, 1.7011719, 2.0058594, 0.26513672, -0.3798828, -2.7226562, -0.7685547, -0.3425293, 1.5966797, -0.29956055, 2.5039062, -1.4443359, 2.9765625, 0.28344727, -1.9033203, 1.2529297, -4.2382812, -1.0068359, -1, -0.97753906, 1.8300781, -1.2802734, 0.26049805, 3.1015625, -0.26879883, -0.56347656, 0.8432617, 0.98779297, 2.1875, 0.90966797, -2.4667969, 0.024765015, -0.5161133, -0.24572754, -1.0791016, -0.78466797, -1.3457031, 3.8476562, 1.7304688, 0.4326172, -0.21411133, 1.1777344, -0.28710938, 1.1503906, 0.13122559, -2.0878906, 1.5185547, 0.9741211, 0.5239258, 1.6884766, -2.0292969, 0.6298828, 0.24865723, -0.5834961, -0.20581055, -0.6503906, -2.0585938, 1.0419922, 2.9355469, -0.99658203, 1.1757812, -1.4199219, 1.1943359, 1.0957031, -0.69873047, 3.8535156, -0.39697266, -1.4951172, 3.1933594, -0.3178711, 0.20678711, -0.0970459, 0.20300293, 0.93066406, 0.24853516, -0.17089844, 0.16357422, 0.53271484, 0.04837036, -0.3154297, 3.6054688, -0.43920898, -0.39257812, -0.20861816, 2.0644531, -1.9052734, -3.2148438, -0.0014753342, -0.7319336, -1.2529297, 3.8007812, 0.57128906, -0.80908203, 2.6875, 0.80322266, 0.40625, -2.2832031, -0.82714844, 1.3818359, 0.5161133, -2.0761719, 2.4316406, 0.51171875, -0.77734375, -0.46777344, -0.88916016, -0.79589844, -1.4150391, 0.07165527, 0.6538086, 5.3242188, -0.73095703, -0.49365234, -0.3972168, -0.060180664, -0.22851562, -2.4941406, -1.0986328, -0.3623047, -0.53466797, -0.19165039, -0.6694336, -5.8984375, -0.5253906, -2.7734375, 0.2998047, 0.33374023, 0.5214844, 0.8017578, -0.8251953, -0.8598633, 0.18395996, -0.5463867, 0.6928711, 0.8066406, -0.71875, 1.0048828, 2.0605469, 0.73095703, -1.6875, -1.0849609, 0.14929199, -0.94140625, -0.88427734, 1.1132812, -1.6064453, 2.7851562, 0.2644043, -3.1113281, 1.6621094, 0.25830078, 2.7929688, -0.30078125, -2.6191406, 1.5361328, -1.7832031, -0.9506836, 2.9433594, 3.1621094, 0.3293457, 0.054107666, 2.0898438, -1.4599609, -0.22155762, -0.19665527, -0.60058594, 0.90966797, 0.6665039, -2.1933594, 0.32177734, 1.7832031, 0.53515625, -3.9042969, -1.2138672, 0.007801056, -0.7573242, -0.19152832, 1.2480469, -3.3320312, -4.0625, 1.9550781, 2.4980469, 1.4091797, -0.4819336, 0.36572266, 3.1445312, 0.059783936, 0.10253906, 0.8515625, -0.038269043, 2.4492188, -0.6796875, -0.101501465, 0.3852539, -0.57666016, 0.11376953, -2.3691406, -2.1210938, 0.10668945, 1.9755859, -0.77197266, 0.14465332, -1.015625, -2.3359375, 0.17358398, -0.87109375, -1.7880859, 0.15649414, 2.765625, -0.56347656, 1.6738281, -0.92529297, -0.89501953, -0.75927734, 2.7441406, -0.14001465, -3.09375, 1.1113281, -1.0664062, 2.1484375, 0.2788086, 2.6210938, -1.4160156, -0.93359375, -1.5771484, 0.2211914, -1.0878906, -1.9042969, 0.55810547, -0.90478516, -0.9194336, 1.4199219, 0.6928711, -3.625, 0.029067993, -1.7988281, 1.2861328, 0.69873047, -2.7148438, -0.8339844, 0.055145264, -0.5756836, 0.18469238, 0.58496094, -0.09832764, 1.8173828, -1.1425781, -2.890625, -0.6855469, -1.0800781, 0.67333984, -1.9560547, -0.99658203, -0.14331055, -2.4199219, 2.4589844, 1.5947266, 2.8769531, -0.3725586, 3.5097656, 0.3095703, 0.70654297, 2.6953125, -1.0429688, -1.4707031, -0.85839844, -0.68408203, -0.12841797, 3.78125, -0.77197266, -0.25805664, 1.8925781, -0.8286133, -1.8740234, -0.24621582, -2.9648438, 1.3720703, -1.6679688, -3.4980469, 0.6933594, 2.3808594, -0.15063477, -1.7324219, 0.8930664, 0.5292969, -1.7314453, -0.21826172, -0.23071289, 0.85058594, -0.85253906, -0.6713867, -0.9501953, 1.3710938, -1.2402344, 0.8100586, -0.7753906, -1.7880859, 3.0371094, 2.90625, -0.8198242, 1.28125, 0.83691406, 0.20129395, -0.99853516, 0.41748047, -2.2871094, 1.8193359, 0.4387207, -0.27124023, -0.57666016, -0.90771484, -0.87353516, 0.73535156, 2.1484375, 0.5932617, -1.3417969, 1.9960938, -1.1220703, 0.73876953, 1.4619141, -0.26586914, -2.8945312, -0.025115967, 2.1972656, 0.05810547, 1.5576172, -0.66796875, 1.484375, -1.0634766, 1.9804688, -1.3671875, -1.2333984, 0.4699707, 0.22802734, -1.3291016, 2.0566406, 2.0058594, 0.31933594, 1.5292969, 1.2148438, -1.9472656, -1.4453125, 1.4628906, -0.3137207, 0.4345703, 0.41186523, 0.50439453, 1.3330078, 2.09375, -0.5083008, -1.6679688, 2.4980469, -1.2617188, 0.6850586, -0.2548828, 1.4072266, -1.7304688, -2.6894531, 0.12902832, -2.0742188, 2.9511719, -2.8261719, -0.94091797, -1.3056641, 0.6743164, -3.6523438, 0.71484375, 1.0048828, 0.42529297, 3.1464844, -1.4335938, 0.10638428, -1.8261719, 1.2324219, 1.7744141, 0.34399414, -1.9677734, -0.59765625, -0.0362854, 0.24523926, 0.9506836, 1.2304688, 1.5664062, 0.70458984, 2.8886719, 1.1386719, 0.82470703, -1.2207031, 1.6552734, 3.6699219, -2.140625, -1.1982422, -1.1308594, 1.0341797, 3.0898438, -0.88378906, -2.7070312, 0.16638184, 0.40820312, -0.46850586, 1.7050781, -1.0644531, -0.6772461, -0.46484375, -1.6972656, -0.75, -1.2011719, -0.55566406, 0.4399414, -0.82666016, -1.0693359, -0.6899414, 1.1904297, 2.7363281, -0.6347656, 0.8232422, -0.8808594, 1.4570312, -3.0859375, -0.01889038, -1.0361328, -4.5859375, -1.1484375, -1.8271484, 2.6054688, -2.1738281, 2.7578125, 1.5849609, -2.7109375, 1.1279297, -1.4970703, -0.2614746, -2.8769531, -1.2597656, 0.99316406, 2.0898438, 0.88720703, -1.2070312, 0.45288086, -0.12194824, 1.1445312, 2.0527344, -3.0371094, -0.35766602, 2.0585938, -3.8769531, -2.2519531, -1.1289062, -0.8671875, 0.8588867, 0.74121094, -0.9746094, -2.1914062, -3.2890625, -0.89160156, 0.1850586, -1.3535156, 0.022994995, 2.7890625, -1.3789062, 0.60253906, 0.4309082, 1.7099609, -1.5546875, 0.9326172, -0.69140625, -2.703125, 0.46777344, -4.1132812, -0.05618286, -0.82177734, -2.2304688, -2.2871094, 1.0634766, -0.33374023, 1.2080078, 2.90625, -1.7841797, 1.2763672, -2.1601562, -1.0390625, 1.9072266, -1.4570312, 1.5517578, 0.15771484, 1.6201172, -1.3310547, 2.5019531, 3.1933594, -0.5307617, -1.1884766, -1.1425781, 0.29785156, 0.39233398, 2.3046875, 2.3359375, -0.37036133, 0.80371094, 1.4746094, -0.032684326, -1.9824219, -1.8095703, -1.6796875, 0.22619629, -2.3105469, -1.4228516, -0.35375977, 0.12854004, 0.88427734, 1.1298828, -0.29663086, -0.5698242, 1.7753906, -0.65771484, 1.3798828, -3.9628906, 3.6738281, 0.30249023, -1.8681641, -2.28125, -0.15405273, 1.640625, 0.67333984, -2.0722656, 0.53027344, -1.0263672, -1.6113281, 0.41186523, 0.38134766, -0.32983398, -0.20910645, 4.0625, -1.2675781, -0.15490723, 1.7539062, 1.6689453, 1.5800781, -1.8554688, 0.97021484, -0.8251953, 0.5576172, 0.8769531, -1.0175781, -0.6723633, 1.9824219, -0.42529297, -0.25683594, -0.11517334, 1.3710938, -3.0234375, 2.0527344, -1.3291016, -1.4638672, -1.9414062, 3.2734375, -0.48535156, 0.6225586, 1.7929688, 0.05706787, -1.2216797, 0.46533203, 2.6269531, 0.95654297, 0.15124512, -0.48339844, -0.31323242, 2.2441406, 0.46606445, -2.8085938, 3.4199219, 0.1673584, 2.2636719, 0.05606079, -1.3642578, -0.3269043, -1.0556641, 1.5214844, 1.4589844, 1.1113281, -0.9355469, 1.1445312, 0.07647705, 0.9248047, 5.1875, -1.4111328, 0.27978516, 0.4194336, 2.5214844, 1.6767578, -1.3291016, 1.4082031, -1.9335938, 1.7392578, -0.49731445, 0.56689453, -1.2490234, -1.2949219, 2.0351562, -1.8710938, -0.042297363, 0.042755127, 0.8203125, -1.5029297, -1.5214844, -1.2197266, 1.0361328, 2.96875, 2.8984375, -0.9555664, -0.5522461, -0.95654297, 0.46142578, 1.6630859, -3.1347656, -2.46875, -0.7871094, 0.085510254, -0.8769531, 2.5429688, 0.47705078, -0.35009766, 1.4882812, 2.7597656, -1.6367188, -0.74316406, 0.26904297, 2.6191406, 0.44677734, -2.2949219, 1.7421875, -1, 0.35327148, 0.6113281, 3, -1.7167969, -0.60302734, 0.07556152, -0.33935547, -0.15356445, -3.3613281, 0.7558594, -1.9306641, -0.45703125, -2.8964844, 0.60791016, -0.40795898, -2.7402344, 0.34033203, 1.1884766, -1.046875, 1.4746094, 1.8681641, -1.1699219, 0.42358398, 1.0712891, 2.5097656, 1.4521484, -0.36767578, -1.2490234, 2.6015625, -1.2324219, 2.4980469, 1.0664062, -0.3779297, 1.2949219, 1.3857422, -0.46411133, 0.48510742, 1.5117188, -1.4814453, 0.2644043, 0.87841797, -1.1328125, 1.0283203, -0.86816406, 0.44677734, -1.6660156, 1.2636719, 1.6904297, 0.31884766, 1.2617188, 0.6171875, -1.1748047, -0.56884766, -0.4423828, 0.9140625, 1.5136719, 0.25317383, -1.4638672, -0.15698242, 0.38256836, 3.0429688, -0.83154297, -0.74853516, 1.4228516, 1.0341797, 0.14672852, -2.7578125, -0.9589844, -0.20922852, -1.5839844, -1.3417969, 1.0234375, 0.61816406, 0.22009277, 1.0644531, -1.7285156, 2.3964844, 0.49975586, -2.4414062, 1.1621094, -0.3540039, 0.9086914, 1.7128906, -1.5556641, 0.48901367, -2.578125, -1.1992188, -3.0097656, 3.5878906, 0.23864746, -3.4101562, -2.5078125, -1.6728516, 0.13745117, 1.2744141, -3.0136719, -0.6816406, 0.20825195, 1.3525391, 1.0224609, -1.1630859, -0.16088867, 1.7451172, 1.0507812, 0.5722656, 0.47827148, 2.7421875, -1.2910156, -0.078125, 3.4511719, 1.4365234, 0.5444336, 0.7348633, 2.1367188, -1.2763672, -2.8515625, -2.6210938, -1.2949219, 1.2753906, -2.0371094, 0.25976562, 2.7226562, 0.19226074, 0.0067253113, -1.1689453, -2.5234375]}, "B01KGKFPM6": {"id": "B01KGKFPM6", "original": "Brand: GasOne\nName: Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose\nDescription: \nFeatures: Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one\u2019s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat\nRugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize\nAdjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow\nIndividual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need\nHigh quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected\n", "embedding": [-2.2890625, 1.2832031, 1.3027344, 1.5537109, -0.69189453, 1.3769531, 1.3212891, -0.9736328, -1.1484375, 0.42407227, 0.86621094, 0.48339844, -0.15075684, -0.8955078, -0.19006348, 0.0031051636, 0.31958008, 0.3786621, 0.8046875, 3.4355469, 1.8007812, -0.4243164, 2.7871094, -0.8510742, -1.0234375, 0.36865234, 2.5507812, -3.6054688, -1.2519531, -1.7753906, 2.1386719, 0.20935059, 0.06695557, 1.8154297, -3.4804688, -0.37304688, -0.7348633, 0.6323242, -5.3046875, -1.09375, -0.9897461, 0.8979492, 2.6015625, 0.3330078, -1.3447266, 0.7553711, 1.2226562, -0.10461426, -2.03125, 0.703125, 1.2197266, 0.09307861, -1.2607422, 0.7817383, -0.24841309, 0.6411133, 1.1474609, -2.5488281, 1.4560547, 0.27319336, 2.0410156, 1.7900391, -2.4785156, 0.0914917, -1.0693359, 0.26049805, 0.14819336, 0.28173828, -0.9433594, -0.0054092407, 1.8105469, -0.14709473, -0.36499023, 0.5551758, 0.36572266, -0.4140625, -2.6445312, 1.3056641, 3.4238281, -0.057373047, -1.9775391, 1.296875, 1.1416016, 0.2607422, -0.33618164, 1.3867188, -0.1328125, 0.17651367, 2.3261719, 0.55126953, -1.9521484, 2.3671875, -2.5683594, -3.2539062, 1.3115234, 0.07824707, 2.6738281, 0.36987305, 0.53564453, 0.3791504, -1.2871094, -0.6040039, -1.9462891, 1.1777344, -1.3984375, -1.3984375, 1.7246094, 2.4433594, -2.7871094, 0.89404297, -2.2246094, -1.3720703, 1.5693359, -0.4099121, 2.0546875, -0.60498047, -1.2539062, 1.3916016, 4.0585938, 0.7338867, 3.3066406, -0.6123047, 0.66064453, -0.22497559, 0.20666504, 2.2480469, -0.7036133, -0.10522461, 3.4101562, -2.0898438, -0.7817383, -2.3378906, 2.5527344, 1.2695312, 0.5605469, -1.3632812, -1.75, -3.1835938, -3.0214844, -0.29101562, -3.0234375, 1.5722656, 0.5493164, -0.6582031, -3.0175781, -0.60791016, -1.3330078, 1.4453125, 0.82421875, -3.0527344, 0.5698242, -2.0703125, 1.1826172, -2.3691406, 1.5537109, 0.4609375, 0.21118164, -1.6289062, 3.5644531, 1.3554688, -0.5546875, -1.8710938, -1.2763672, 1.8730469, -0.5805664, -2.2792969, 0.36376953, 1.2431641, -1.9599609, 0.99609375, -1.0888672, -1.6289062, -0.75, -0.18066406, -0.10797119, -1.8486328, -1.546875, 3.0058594, 0.88916016, -0.83935547, -4.0273438, -3.0820312, 1.3310547, 0.3564453, 0.6479492, -0.52246094, 0.5317383, -0.03164673, 0.69970703, -1.5439453, -1.1826172, -0.80810547, 1.4638672, -0.4423828, 0.22277832, -1.7177734, -1.9931641, -1.5234375, 0.38378906, 0.96972656, -0.42504883, -0.7973633, 0.38549805, 0.8496094, -2.0820312, -0.86376953, 0.55322266, -1.8554688, 1.265625, 2.1796875, 0.52734375, -1.1269531, 3.1464844, 0.20605469, -0.8286133, -1.21875, 2.4863281, 2.1601562, 1.5664062, 2.3144531, -0.59765625, -2.0390625, 2.0546875, 1.5683594, 0.25561523, 1.5039062, 0.87353516, -0.8383789, -1.90625, -0.9301758, 1.7070312, 1.8310547, 0.21459961, 0.8798828, -0.5214844, 2.5605469, 0.8496094, -1.546875, -0.12371826, 0.7260742, 0.20019531, -1.3896484, -1.7822266, 0.01600647, -2.3652344, 2.5546875, -1.0019531, 0.39379883, 2.2675781, -0.25805664, 0.58203125, -0.33032227, 0.609375, -1.5791016, -1.4160156, -1.2753906, 0.64941406, 0.2109375, -0.7080078, -2.2539062, 3.2890625, 0.24487305, 0.40625, 0.9448242, -0.7246094, 0.019714355, 2.5527344, 0.7866211, -2.4589844, -0.36572266, 0.62060547, 1.3730469, 3.3085938, -1.4697266, 2.5898438, 0.91552734, -2.4257812, 2.9257812, -0.34179688, 1.4179688, 1.1523438, -1.4472656, 2.0976562, -1.9013672, 1.4052734, 2.765625, 3.9746094, 0.9975586, -2.4257812, 0.41723633, 5.2070312, -0.45385742, -2.4941406, 1.1884766, -2.4394531, -0.8979492, -0.08062744, 0.81152344, 1.3222656, -1.2431641, 2.0332031, -1.0371094, -0.61035156, 0.28149414, -0.84375, -0.7973633, -0.19006348, -0.8886719, 0.0769043, 0.75, 0.18859863, -0.53564453, -1.3271484, 1.0537109, -3.1816406, -0.04385376, 2.515625, -2.34375, 1.1875, 1.6318359, 1.2597656, 1.8183594, 0.5390625, -0.68115234, 1.4375, 0.008918762, 0.4621582, 2.0644531, 1.2216797, -0.65966797, -2.0195312, -1.609375, 0.076293945, -1.6621094, -1.3222656, 0.8725586, -1.1855469, -4.140625, 1.0068359, -2.1484375, -1.5117188, 2.0136719, -2.5996094, 0.73828125, -0.44335938, -1.9375, -0.6772461, -0.25585938, -1.6318359, -0.9013672, 1.3447266, 0.61621094, -1.4199219, -1.6289062, -0.57910156, -1.9345703, -1.0498047, 0.5761719, -0.66259766, 1.5849609, -0.06958008, -0.011062622, -0.41088867, 0.30371094, -0.23364258, -2.2324219, 1.6210938, -3.6367188, -0.7973633, -1.2753906, 0.004463196, -0.9404297, 0.54833984, -2.4375, -1.5908203, -0.45898438, -0.22375488, 1.5019531, -1.6113281, 2.0332031, -0.14672852, -0.9838867, -0.040252686, -2.1054688, -3.2617188, 0.35717773, -0.08111572, -1.7246094, 0.56591797, -3.15625, 0.6801758, -0.9794922, -0.5361328, -1.1318359, -0.4008789, -0.3798828, -0.01234436, 0.061065674, -2.4902344, 0.3959961, -0.06707764, -1.2880859, -3.0390625, -2.0527344, 0.05706787, -1.5019531, -0.06549072, -0.43432617, 0.88623047, 0.16027832, -0.15686035, 1.7822266, 1.1855469, 0.10986328, -1.9921875, -2.6679688, 2.0234375, 1.1591797, -1.1523438, 2.5566406, -2.546875, 0.021316528, -2.9414062, -2.2929688, 2.34375, -0.24523926, 2.1582031, -0.14782715, -0.07446289, 0.2697754, 1.1767578, -0.3071289, -1.7226562, -1.4121094, 3.1425781, -2.9589844, -1.4570312, 0.9194336, 2.2382812, -2.4960938, -0.26904297, 2.4355469, 0.46166992, 2.1875, 2.0292969, 1.6396484, -1.0478516, -0.43798828, -0.9345703, 2.328125, -0.18041992, 0.9667969, -0.6176758, 1.1640625, -0.69433594, 1.4443359, 1.8134766, 1.3671875, 2.6738281, 2.1855469, 0.74658203, -0.91064453, 0.36791992, 0.22790527, 2.3066406, 1.2910156, 3.7734375, -0.40234375, -1.4355469, -2.4238281, -0.23901367, 1.9824219, -1.7148438, -0.82470703, 0.6713867, 0.40234375, 0.55566406, 0.8222656, 0.077697754, 0.014694214, -0.21081543, 1.9824219, 1.2675781, 0.0058059692, 2.1582031, 0.59521484, 1.1210938, -3.0234375, 1.4824219, -0.8305664, -0.30200195, -0.019104004, 1.6230469, -2.4785156, -2.9238281, -0.5390625, -1.5673828, -0.89501953, 3.7734375, 1.5830078, -1.4082031, 0.5810547, -0.75097656, 0.15979004, 1.1816406, -1.7041016, -0.2421875, -1.1152344, -0.5517578, -0.75634766, 0.12634277, 1.7880859, 0.44750977, -2.0078125, 1.3212891, -3.7792969, -0.5292969, 0.4489746, -0.99902344, -1.9824219, 2.5957031, -1.7275391, 0.8383789, -0.32739258, 4.25, -1.8232422, -0.06414795, 2.40625, -2.703125, -0.8027344, -2.9238281, -4.46875, 1.3613281, -0.9746094, -0.70751953, 3.2460938, 0.40771484, 0.49829102, 1.6484375, 0.9038086, -2.8398438, -0.49804688, -0.7841797, 0.05657959, -2.2167969, -1.6748047, 1.6699219, 0.0057678223, -1.3701172, -1.9199219, -0.25048828, -1.1171875, 0.95458984, 1.9462891, -3.2773438, 0.9379883, -1.2988281, 0.81396484, -0.40039062, -1.1484375, 1.0371094, -2.2792969, -0.68652344, -2.5742188, 0.9345703, 1.453125, -0.61376953, 0.008476257, 3.7773438, 1.9462891, -0.71875, 0.20373535, 1.8730469, 2.3476562, 0.11065674, -2.171875, -1.9199219, 1.484375, 0.20983887, -0.4489746, 0.11364746, -2.5390625, -1.0068359, 1.3916016, 2.53125, 1.2558594, 1.5751953, 0.72558594, -2.2050781, -0.1394043, 1.2568359, -2.4765625, -0.86865234, -0.46411133, 1.2021484, -1.4492188, 0.5649414, -2.1425781, -0.9213867, -0.09631348, -0.48364258, -3.0566406, 2.2988281, 1.0839844, 0.80371094, 1.6621094, -0.89501953, -2.0644531, 1.0234375, 0.9458008, -0.9194336, 0.6542969, -0.43066406, 0.028213501, 2.2011719, 1.2851562, -0.29882812, -1.1005859, 2.0703125, -1.1025391, -0.14282227, 0.044677734, 1.3007812, -0.24499512, -1.5117188, 1.6181641, -0.5917969, 2.9277344, -0.98339844, -0.050750732, 0.015350342, 0.61083984, -2.3632812, 0.07489014, 0.8432617, -0.71777344, 0.18103027, 1.6513672, 0.082092285, -0.33422852, 1.5791016, 0.68066406, 1.8583984, 1.2763672, 0.56152344, -0.4609375, 0.72558594, -0.5620117, -0.61816406, 1.3212891, 2.3652344, 1.4072266, 4.109375, 1.9716797, -0.8701172, 1.2373047, -0.18640137, -1.9619141, -1.2246094, 0.20019531, -0.81933594, 1.4404297, 1.5302734, -2.4101562, 0.74121094, 4.265625, -1.0292969, 1.6191406, 0.8823242, -0.4584961, 0.8222656, -2.3789062, -0.8725586, -2.2109375, -0.6323242, -0.32495117, -2.4160156, 0.69189453, -1.1757812, 1.2792969, 1.0576172, -0.070739746, -0.99902344, 1.9072266, -0.17932129, 0.72998047, -1.2333984, -1.390625, -1.9394531, 1.9921875, 2.4863281, 1.6416016, 0.95947266, 0.78271484, 0.035980225, -2.2539062, -0.6196289, 0.45263672, 2.328125, -0.80078125, -1.3681641, 1.7568359, -0.29760742, 0.23327637, -1.6289062, -0.88623047, -1.8085938, 2.2832031, 1.125, 1.3056641, -0.8183594, -0.10083008, -1.8642578, -5.4726562, 0.21655273, 1.5585938, -0.7871094, -0.85009766, -1.8710938, -0.6069336, 0.85498047, -0.82177734, -0.4387207, -3.1757812, 0.23547363, -1.1767578, -0.0049705505, -0.6826172, -0.27392578, 0.71533203, 1.46875, -0.31079102, -1.1738281, 0.53808594, -1.6787109, -1.5361328, 0.60253906, -1.6181641, 0.515625, 1.5234375, -1.0263672, -0.5292969, 3.2734375, -1.0107422, -2.5917969, 2.0449219, -2.8613281, 0.50097656, 1.2431641, -1.7216797, 0.9321289, 1.0878906, -0.27416992, 1.6699219, -0.0008802414, -1.6738281, -0.059753418, -0.16357422, 0.3334961, 0.83691406, -0.46411133, -3.4179688, 1.2421875, -0.78027344, 1.0068359, 2.0214844, -0.17163086, -1.8085938, -1.5664062, -1.6738281, 0.1496582, -1.4355469, 0.3005371, -0.7050781, 0.8613281, 1.9980469, 0.8647461, 0.7480469, 0.28222656, -0.5761719, -0.8198242, 1.3212891, -0.3005371, 3.4941406, 0.62402344, -0.2890625, -2.8632812, -1.4365234, -0.28930664, 0.35180664, 0.8305664, -0.6689453, 1.21875, -0.20288086, 0.78271484, -0.59033203, 1.4814453, 2.3652344, 2.4316406, -1.1777344, 0.39282227, 3.2402344, -1.1894531, 1.03125, 0.31152344, -1.8896484, -0.76660156, 3.3027344, 1.7695312, -1.3408203, 0.62597656, -2.1503906, 1.6513672, -0.12219238, -1.1386719, 0.71191406, -1.3496094, -1.3164062, -2.2539062, -1.8554688, -1.9892578, 0.8535156, 2.3964844, -1.0664062, -0.30566406, 3.8828125, 0.2800293, 1.0234375, 1.8818359, 2.9609375, 0.30297852, 1.6445312, -2.203125, -0.48999023, 2.4707031, -2.6230469, 0.21936035, 1.8896484, -0.42822266, -1.4990234, 1.3222656, -0.8564453, 3.3789062, 1, 1.3535156, 2.1972656, 0.16137695, 3.2304688, 0.67333984, 1.5458984, 2.0996094, 1.0898438, -0.07891846, 1.7001953, 0.19006348, -0.6845703, -0.5571289, -0.48095703, -1.4560547, -0.97753906, 0.48168945, -0.21911621, 0.71533203, -4.7890625, 0.72558594, -0.90625, 1.2919922, -0.8461914, 0.46972656, 0.050628662, -0.30541992, 1.1503906, 0.21496582, 0.1743164, -0.8798828, -0.6508789, -1.6435547, -0.8496094, 2.4082031, -2.4082031, 1.9677734, -0.9394531, -2.7792969, 1.5361328, 1.1660156, 0.21520996, 0.81396484, 0.90625, 0.86083984, 0.19702148, 0.60058594, 1.6308594, -3.3144531, -0.07318115, 0.117614746, 3.5996094, 0.6616211, 0.093444824, 2.6933594, -1.2998047, -2.5605469, -4.5039062, 4.4609375, 0.36279297, 0.9243164, 0.8100586, -1.9199219, 2.9277344, -0.33935547, 0.9794922, -3.1640625, 1.7099609, -0.6220703, -0.17541504, -0.39868164, 1.1015625, -1.0205078, 2.4960938, 1.7822266, -1.2529297, 1.5400391, 0.94091797, 1.1054688, 0.28320312, 0.55078125, 0.7089844, 0.22058105, -1.1064453, 2.5175781, 1.0761719, -1.7373047, -0.71484375, 2.8320312, 1.3671875, 0.55322266, 1.3642578, 0.50097656, 0.6386719, -0.84375, -0.40673828, 0.56152344, -1.3681641, -1.6416016, -1.0175781, -0.7475586, -1.6914062, -2.6621094, 1.1279297, 1.6367188, -0.65625, 0.6064453, 3.1171875, -0.63671875, 0.38842773, 0.8256836, -0.07116699, -0.8305664, -0.010177612, -0.16052246, -3.1191406, -1.8740234, -0.38720703, -0.00077724457, 0.8022461, -0.54833984, -0.7885742, -0.8574219, -0.04626465, 1.2265625, 0.9902344, -0.23803711, 0.9667969, 0.85595703, 0.51904297, -0.5722656, 3.4355469, -1.8310547, 1.8505859, -0.82666016, -2.0449219, -0.34204102, -0.70166016, -1.2578125, 0.9814453, 3.0488281, 1.8300781, 1.5322266, -2.3652344, -2.6875, -1.6494141, -2.5214844, 1.1162109, -0.68115234, -1.0380859, 0.35864258, 1.2919922, 2.1777344, -0.39794922, 1.0966797, 0.67089844, -0.4658203, 1.2539062, 0.060455322, 2.1074219, -0.47998047, 0.46289062, -0.4729004, 3.203125, 2.0683594, -1.6113281, 0.91552734, 0.9838867, -0.02999878, -3.7324219, 0.98828125, -1.7177734, -0.47680664, -0.28198242, -0.18041992, 2.0585938, 2.0976562, -2.0292969, -1.3945312, -1.4423828]}, "B07621BM5H": {"id": "B07621BM5H", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)\nDescription: Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs\nFeatures: Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood\nSuperior refractory ceramic logs are reinforced with steel rods for greater integrity\nEfficient design helps preserve and protect natural resources\nThis Peterson Real Fyre gas log set is designed for indoor use only\nIncludes Auto-Safety Pilot control valve and Flexible Gas Connection Kit\n", "embedding": [-1.3720703, 0.8989258, 0.16271973, 0.2088623, 2.2382812, 0.7988281, -0.17248535, -0.38476562, -0.22424316, 1.2177734, 2.1679688, 2.3710938, 0.74609375, -3.0683594, 0.7211914, -0.88623047, -1.7519531, 1.0488281, -0.30493164, -0.8364258, 0.9121094, 1.6025391, -0.17053223, 0.97216797, 0.92089844, -1.4648438, 3.234375, -1.7685547, 1.2480469, 0.6010742, 0.9199219, 0.46118164, -0.3232422, 1.0966797, -2.2988281, -1.6425781, -0.40234375, 0.32373047, -3.0878906, 0.34643555, -1.5126953, -0.92626953, 1.9775391, 0.82177734, -2.2792969, -1.3642578, 0.074279785, 0.5175781, -1.0566406, 0.8051758, 1.0888672, 2.3398438, -1.4863281, -0.5239258, 0.08972168, 0.38598633, 1.5800781, -3.6230469, 1.6689453, 1.2148438, 0.31225586, 0.6303711, -0.7265625, 1.1064453, -2.5, 2.203125, 2.0039062, -0.87353516, -0.025817871, 0.92089844, 2.2890625, 0.984375, 1.8574219, 1.0683594, -0.5283203, 2.4941406, -2.9472656, 1.3017578, 0.79833984, -0.17980957, 0.070617676, 0.18774414, 0.57421875, 0.2932129, 0.6425781, 0.0039253235, -2.9375, 0.6689453, 1.2919922, 1.7978516, 0.4814453, 0.6948242, -0.78564453, -4.7578125, 2.0996094, 0.16552734, -1.34375, -0.12768555, 0.07232666, 1.0566406, 1.6357422, 0.8417969, -1.1728516, 0.0635376, -1.4980469, 0.39208984, 0.11529541, 3.3632812, -1.3847656, 0.33276367, -1.5849609, -1.3115234, 1.6025391, 1.3935547, 0.3955078, 0.12841797, -0.01713562, -1.9462891, 1.0224609, -1.90625, 2.484375, 0.5859375, 0.43945312, 2.6269531, 1.5351562, -0.6191406, -0.5698242, 2.2265625, 0.07110596, -1.1806641, 0.17346191, -2.1777344, 1.6328125, -1.5449219, -2.0546875, 0.37670898, -0.43896484, -0.14416504, -1.8974609, -2.8632812, 0.3071289, 2.6523438, 0.67529297, 1.0175781, -1.6074219, 1.3808594, -2.6992188, 0.6176758, 1.6884766, -2.6699219, 1.4208984, -0.7338867, 0.2836914, -3.9023438, -0.9580078, 0.9873047, 2.0234375, -1.65625, 0.14611816, -0.62646484, 0.7373047, -1.8261719, -1.5146484, 1.1337891, -1.9648438, -1.2685547, 1.7402344, -0.94921875, -1.6914062, 0.9716797, 0.9770508, 1.0400391, 0.025619507, 0.08026123, -0.86328125, -2.8574219, 1.5234375, 2.8320312, 0.9794922, 0.17419434, -1.2695312, -0.49243164, 0.78515625, -0.19250488, -0.11651611, -0.10821533, 0.9658203, 0.60498047, -0.40893555, -1.4755859, -1.1650391, 1.1474609, -1.4472656, 2.0878906, -1.6708984, -3.2109375, -1.6806641, -1.3105469, 2.3164062, -2.4277344, -0.63623047, 1.9052734, 0.7470703, -0.34985352, -2.5957031, -0.7885742, 0.31567383, -1.4335938, 1.6425781, 2.1699219, 0.3449707, -1.2646484, 0.25073242, -0.13500977, -0.16027832, -3.7851562, 1.4355469, -0.5209961, 0.29345703, -0.64941406, 2.0214844, 0.7578125, 2.8300781, 0.78222656, 0.3125, 1.5029297, -1.2558594, 0.74658203, -2.0546875, -2.4785156, 0.5576172, -0.33813477, -0.8408203, -1.1015625, 1.0058594, 3.5371094, -0.40893555, -0.8432617, 0.040161133, 0.93603516, -0.6772461, -1.4394531, -2.6835938, 1.3847656, -0.41333008, -0.22375488, -2.0957031, 0.19030762, 1.9638672, 0.44580078, -0.10272217, 0.17053223, 2.5742188, 1.9150391, -0.6230469, -1.2060547, 0.058532715, -0.005252838, -0.22375488, -0.51123047, 1.890625, 1.2041016, 0.18310547, 1.171875, -0.8417969, -0.79052734, 2.1875, -0.8676758, 1.2216797, -0.890625, -0.7631836, -0.39672852, 1.6025391, 1.5273438, 2.5644531, -0.6591797, 0.30151367, 3.1210938, -0.6850586, 2.2578125, 0.6904297, -0.90185547, 3.1035156, -2.6660156, 0.11785889, -0.36206055, 0.36010742, -0.121032715, 1.4384766, 0.021575928, 5.5078125, -0.20349121, -1.7216797, 0.46289062, 0.062316895, 0.46557617, 0.2602539, 0.6455078, -0.3076172, -1.6308594, 1.6601562, 1.0761719, -0.6040039, -0.35327148, 0.47827148, 0.49316406, 1.0341797, -0.37280273, 1.1240234, -0.10406494, -0.53271484, -0.09234619, -2.1875, 0.88623047, -1.0234375, -0.75878906, 2.4453125, -2.7519531, 1.65625, -0.57714844, 0.4465332, 3.4375, 0.10687256, -2.1601562, -0.5966797, 0.8696289, -0.69873047, 0.40625, -0.09320068, -1.0302734, -0.7363281, -2.6386719, -0.5336914, -0.45410156, -0.52197266, 0.6879883, -0.081848145, -1.8144531, -0.49951172, 0.37231445, -2.2128906, 0.24072266, -0.7998047, 0.8852539, -0.4711914, 1.2324219, 0.43041992, -0.084472656, -0.38110352, 3.6464844, 1.5859375, 4.75, -1.0068359, -3.4492188, -1.3681641, 0.044830322, -1.4638672, 0.9741211, -0.5908203, 0.0031394958, 0.3359375, -0.17773438, 1.1005859, -1.9970703, 0.037322998, -1.8242188, 1.5869141, -2.7695312, 0.2927246, 1.6806641, 3.3789062, 1.0576172, 0.5341797, -0.7836914, -1.2353516, -0.9423828, -1.2890625, 1.4853516, 0.31567383, 1.3789062, 0.61279297, -1.5380859, -2.1308594, -2.3574219, -2.34375, -0.22802734, -0.4169922, -2.5039062, -0.7260742, -2.8164062, 0.27490234, -0.88623047, -0.003921509, 0.11956787, 0.515625, -2.2382812, -1.3359375, -0.6948242, -0.118652344, -0.115478516, -2.8300781, -1.9414062, 0.89501953, 0.009590149, 0.3544922, 0.25610352, -3.3769531, -0.050720215, 1.6220703, 2.4746094, 1.7226562, -0.44433594, 1.4697266, 0.23937988, 0.5991211, -3.3359375, 0.7138672, 2.1445312, -1.8232422, -0.35253906, -1.3798828, -0.68408203, -0.72265625, 0.9555664, 3.5253906, 2.953125, 0.48388672, 1.6308594, 0.8330078, 1.2050781, 2.4863281, -0.14233398, 0.7285156, 0.068603516, 2.2910156, -2.7539062, 0.56347656, -0.12988281, 1.6269531, -0.57128906, -0.70947266, 2.2597656, -1.1757812, 2.8496094, -0.7216797, 0.89160156, -2.1386719, -1.5078125, -0.35742188, 1.2783203, -1.6015625, -1.9335938, -0.25170898, 0.19689941, 3.0800781, 0.85839844, 1.7675781, 2.0039062, 2.0859375, 0.30615234, 0.026062012, 1.5117188, -0.0047798157, 0.25927734, 0.8876953, 0.9946289, -1.0019531, 0.51660156, 0.17260742, -0.48486328, -1.7988281, 0.6591797, -3.0585938, 1.9179688, 2.6816406, -0.030654907, 0.33422852, 0.6303711, 1.6220703, -1.0195312, 0.32666016, 2.3339844, -0.058776855, 1.4628906, 2.2910156, -0.057159424, -1.0537109, -2.6875, 1.8525391, 0.12249756, -1.6894531, 1.0810547, 2.6738281, -2.9296875, -1.2724609, 1.7089844, -1.7900391, -1.0878906, 3.0898438, 0.30786133, -0.65625, 0.6352539, -2.8671875, 0.6845703, 2.0195312, -0.4814453, -0.06994629, -1.2841797, 1.4726562, -1.1191406, 1.0683594, -0.6303711, 0.23876953, -2.3867188, 1.8984375, -1.4619141, 0.2244873, -1.8691406, -1.1640625, 1.6533203, 4.515625, -1.1855469, -1.5605469, 0.22058105, 3.7695312, 0.46289062, 0.9160156, 3.9140625, -0.375, -1.7070312, -1.5576172, -3.0214844, 1.4609375, -1.5302734, -0.84033203, 1.984375, -0.48413086, -0.0029277802, 2.2480469, 0.016616821, -3.4960938, -1.8261719, -0.99072266, 2.3027344, -3.2226562, -2.9101562, -1.3427734, -0.59228516, -1.8369141, -0.9160156, -1.7441406, 0.68603516, 0.06518555, 0.5078125, -2.6660156, 0.48339844, -2.7753906, -1.5390625, -0.027862549, -0.21594238, 3.296875, -0.72802734, 1.6054688, -0.49536133, 0.8125, 2.0273438, -0.49169922, 2.0039062, 1.9208984, 1.7880859, 0.5576172, 0.9042969, -1.2304688, 3.0117188, 0.62402344, -2.3789062, -3.7949219, 0.50683594, 0.09008789, -1.9492188, -1.2597656, -0.65722656, -1.3242188, 1.9443359, 2.0292969, 1.5791016, 0.19299316, -2.1035156, -0.3642578, 0.29614258, -2.4511719, 0.13671875, 0.7871094, -2.0332031, -0.30151367, -1.0791016, -0.29785156, -0.5708008, 0.14001465, -0.11224365, -0.7709961, 0.21398926, 4.3203125, 1.6230469, 1.3691406, 1.3662109, 2.0488281, -0.875, -0.3251953, -0.5131836, 0.16174316, 1.4863281, 1.1396484, -1.0107422, 1.2402344, -1.6376953, -1.0273438, -0.001832962, 1.7451172, 0.42236328, 0.7583008, -0.67285156, -2.0175781, -1.1601562, -0.5053711, 1.3857422, -1.2617188, 2.6132812, -1.1894531, -1.1240234, -0.30566406, 1.7324219, -1.4501953, 1.5800781, -0.67041016, 0.41137695, 0.18688965, 0.33789062, -0.8149414, 1.1816406, 1.9589844, 0.31811523, -0.43188477, 0.99072266, 0.36108398, -1.6357422, -0.79248047, -1.3974609, 1.3017578, 1.9023438, 1.1699219, 0.014961243, 3.1933594, 0.54345703, -1.8984375, 2.1992188, 2.9042969, -2.4296875, -0.10614014, 1.2314453, 0.36328125, -0.9423828, -0.38427734, -2.9726562, -0.42041016, 2.0917969, -1.2646484, -0.7661133, -0.26293945, -1.4257812, -0.92333984, -0.54589844, -2.0546875, 0.20214844, -2.3984375, 2.0253906, 0.6533203, -1.8779297, -2.5371094, 0.9819336, 0.1541748, -1.7470703, -1.4042969, 2.3164062, -0.94873047, -0.19616699, 0.21777344, 1.5146484, -1.4882812, 0.20153809, -1.0478516, -1.1845703, 1.0654297, 0.10217285, 0.76416016, -1.6650391, -1.4658203, -0.9863281, 0.9580078, -2.2929688, -0.5942383, 0.98095703, -0.35205078, 2.4121094, 0.16149902, -1.5888672, -0.9321289, 3.0429688, 1.0683594, -0.54296875, 0.6064453, -0.76660156, -3.5917969, -1.3466797, -2.2246094, 1.7314453, -2.0859375, -0.62939453, -0.73535156, -1.6650391, 2.1347656, -0.6489258, -0.96435547, -1.3935547, -0.94628906, -1.015625, -0.72753906, -1.7314453, 1.5068359, 0.34423828, -1.96875, 2.4335938, -1.6298828, -0.79248047, 0.62060547, -1.9414062, 2.2460938, 0.63427734, 0.921875, -0.7446289, 0.25463867, 1.0644531, 3.6386719, 1.5078125, -1.0439453, 0.67871094, -0.46923828, 0.3305664, 2.7539062, -2.7148438, 2.4667969, 0.030883789, 0.6870117, 0.77783203, 1.2148438, 1.5888672, -2.0390625, -0.107299805, -0.95410156, -1.6484375, -2.2988281, -1.1826172, 2.1972656, -1.1640625, -0.8598633, 2.2675781, 0.016281128, -2.0019531, -2.5039062, -2.5371094, 0.36791992, -2.1035156, -1.21875, 0.14758301, 1.8017578, -0.0061454773, -1.9111328, 1.5976562, 0.6020508, 0.4794922, -1.4873047, -0.5180664, -2.1269531, 2.2207031, 0.08013916, -2.3964844, -1.7197266, -1.9765625, 0.73339844, 1.9902344, -0.6923828, 0.33325195, -0.6464844, -1.3730469, -1.7880859, 0.8852539, 1.8056641, 1.6855469, 0.9091797, 1.1298828, -0.00060272217, 0.05657959, 0.49951172, 1.7041016, 0.7519531, 1.2412109, 0.6201172, 0.49853516, 2.9121094, -2.6542969, 0.7246094, -1.6123047, 0.4897461, 0.029220581, 0.1394043, 1.3642578, -1.4951172, -1.8515625, -0.47705078, 0.09490967, -0.8774414, 0.52490234, 1.9648438, 1.2529297, -0.61621094, 1.0429688, -0.06427002, 1.5439453, 0.09283447, 2.1230469, -1.8398438, -0.9741211, -0.51220703, -0.19848633, 2.0546875, -1.8007812, 1.1347656, 2.2617188, 0.12890625, -2.0117188, 1.0146484, 1.1279297, 2.2285156, 0.018341064, 2.6914062, 4.4023438, 1.1552734, 2.6289062, -0.19543457, 0.89501953, 2.4492188, -0.73828125, 0.36743164, 0.7504883, 1.6347656, 0.28930664, 0.26171875, 1.8398438, -0.64404297, -0.57128906, -0.87109375, 0.82910156, -0.0026168823, -2.5292969, 1.5742188, 0.6557617, -0.016983032, -2.0625, 1.1103516, -1.2099609, -0.71777344, -1.1425781, -2.1113281, 0.03842163, 0.73828125, -2.9335938, -0.9863281, -0.38232422, 0.40063477, -4.53125, 0.68115234, 0.6953125, -1.8212891, 1.2568359, 2.9277344, 0.017349243, 0.14733887, 1.1347656, 1.5947266, 1.7226562, 1.6689453, -0.049804688, -2.4941406, -1.1679688, -0.26049805, 0.28833008, -1.9150391, -1.0351562, 0.59228516, 1.3173828, -2.9824219, -4.5117188, 2.9785156, -2.2207031, 1.4189453, 1.6191406, -2.7128906, 1.8193359, -0.7602539, 0.81640625, -2.2988281, -2.1503906, 1.1142578, -0.041046143, -3.0703125, 0.045196533, -0.09313965, -0.103027344, -0.08526611, 1.1308594, 1.2353516, 0.25317383, 1.1230469, -0.36083984, 0.85302734, -0.80322266, -0.26049805, -0.75878906, 2.2832031, 1.7753906, -0.84472656, 0.4501953, -1.75, 2.0292969, -0.23815918, -0.97314453, 1.1630859, -1.8017578, 0.41259766, -1.8496094, -0.6772461, -1.4482422, -3.6582031, -0.40576172, 0.58935547, 1.2519531, -0.071899414, 0.22253418, 1.7880859, -1.8974609, -0.054840088, 1.6132812, -0.8027344, 0.1340332, 0.7104492, -0.08843994, 0.2746582, -1.8515625, 2.0585938, -2.3085938, -3.4453125, 1.546875, 2.3710938, -0.22509766, -1.0576172, 0.9794922, -0.62109375, -0.50097656, -0.46044922, 1.1699219, 1.1601562, -2.5644531, 0.33520508, -1.65625, 1.25, 3.2851562, -1.0625, 1.1181641, 1.2119141, -2.8496094, -0.13549805, 1.0400391, 0.9116211, 2.3457031, 3.0566406, 0.2619629, 0.9628906, -2.5566406, -1.171875, -3.0898438, -2.1621094, 0.7163086, -0.27514648, -0.9272461, 0.58251953, 0.018310547, 1.1230469, 4.2226562, -1.3544922, 2.0292969, -1.6425781, -0.14770508, 0.5996094, -0.7470703, 2.9550781, 2.90625, 0.059326172, 3.7089844, 1.9599609, 0.7895508, 1.0449219, 1.7597656, -0.51220703, -0.063964844, -0.26831055, -0.81347656, 0.4411621, -1.0683594, -2.0976562, 0.56347656, 0.72509766, -0.890625, -0.80566406, -4.0039062]}, "B07MCNNWW8": {"id": "B07MCNNWW8", "original": "Brand: kitma\nName: Kitma 13\" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU\nDescription:

          KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

          Commercial Liquid Propane\u00a0Work Range Feature:

          \u25cfDurable stainless steel structure - gives the unit superior corrosion resistance and cleanability

          \u25cfHeavy duty burners - provides stable flame to fry food quickly

          \u25cfAdjustable stainless steel legs -adjusts the height of griddle to meet your needs

          About Product:

          Size: 34 ''\u00d720.8''\u00d717.9''

          Total BTU: 95,000BTU/h

          Intake-tube pressure: 10\u00a0in.W.C.

          Nozzle No: #67

          Package Includes:

          Work Range*1(completely installed )

          Instructions*1

          \u2605About us:

          We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform \u201cmaintenance staff on-site service\u201d within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

          \nFeatures: \u3010Continuous Pilot\u3011Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs\n\u3010Powerful 95,000 BTU Burner\u3011This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you'll need to cook. And it measures 13\" in diameter to accommodate your different size wok\n\u3010Stainless Steel Construction\u3011This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service\n\u3010Easy to Load and Adjustable\u3011This unit's rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface\n\u3010Quality Warranty\u3011Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition\n", "embedding": [-1.7041016, 0.60791016, 3.1894531, 1.6025391, -1.0732422, 0.04437256, 1.6005859, 0.119018555, -2.8164062, 1.1982422, 1.5068359, 0.40307617, 0.12261963, -2.0253906, 0.73828125, -0.077819824, -1.5224609, 1.2148438, 0.9194336, 1.7626953, 2.2148438, -0.49316406, 0.94921875, -1.0878906, 0.75683594, 0.14562988, 4.1835938, -3.625, -1.1611328, -0.7060547, 2.3203125, 0.8227539, 0.921875, 0.30126953, -2.8378906, -1.2480469, -0.1739502, -0.37182617, -2.9042969, 1.5986328, -1.0009766, -0.21228027, -0.05303955, 0.8964844, -2.5546875, -3.4335938, -0.32861328, 0.5996094, 0.044952393, -2.8359375, 1.1396484, -0.859375, -0.46044922, 0.9145508, -1.0888672, 0.58203125, -1.0410156, 0.30810547, 2.2519531, 0.84228516, 1.9267578, 0.7451172, -1.7714844, -0.5800781, -0.28466797, 0.38720703, -0.53222656, -1.3857422, 2.2382812, -1.1279297, 2.0917969, -1.0722656, 0.20568848, 0.076538086, -0.9819336, -2.453125, -2.4023438, -0.8417969, 2.9394531, 0.6616211, -0.12164307, 1.9433594, 2.0195312, -3.7734375, -1.7275391, -0.2722168, 1.8320312, 0.35302734, -0.35498047, 3.0195312, -4.4765625, 4.3125, -1.1914062, -3.8632812, 2.4550781, -0.42700195, -1.0078125, 2.9726562, 1.7490234, 0.12609863, -1.4785156, 0.79785156, 0.07989502, 0.70410156, -2.4863281, -0.9038086, 0.45629883, 0.38598633, -5.1992188, 0.6323242, -2.1464844, -2.0175781, 1.2050781, -0.29589844, 0.7324219, 0.8803711, -0.16137695, 0.27612305, 1.8193359, 1.5673828, 2.8203125, -0.6323242, 0.22790527, -0.079711914, 0.61621094, 0.3720703, -2.8789062, 1.5136719, 5.1445312, -0.5883789, -1.4951172, -0.7817383, 2.6894531, -2.3339844, -1.0048828, -2.1503906, 0.515625, -2.4648438, -3.8691406, -0.5917969, -2.2070312, 1.7246094, 0.73291016, -0.22473145, -3.7675781, -0.953125, 0.20800781, 0.84472656, 0.13977051, -1.0078125, 1.5712891, -1.1972656, 0.9614258, -3.3574219, 1.7617188, -0.25756836, -1.2294922, 0.66308594, 3.6777344, 0.7988281, -0.0287323, -0.6928711, -0.15551758, 3.6523438, -0.35009766, -1.0712891, -1.4511719, 1.6416016, 0.00907135, -1.1230469, 0.3034668, -2.0546875, 1.2216797, 1.2226562, -1.0224609, -0.12817383, -0.57177734, 0.5058594, 1.484375, -0.9169922, -1.6582031, -3.6523438, -0.42797852, 1.4462891, -2.453125, 0.24865723, -1.0322266, -1.3632812, 1.5556641, -0.83203125, -0.31152344, 2.5429688, 1.375, -0.11236572, 1.5429688, -2.5, -1.3798828, -0.4375, 0.19909668, 1.8740234, 0.7392578, 0.59521484, 2.0273438, -0.82421875, -0.123291016, -0.93359375, -0.7441406, -1.5009766, 1.3486328, 3.4726562, 0.9692383, -2.4726562, 1.3496094, -1.9306641, -0.58154297, -1.4492188, 0.8876953, 1.2441406, 1.3134766, 1.3046875, 0.9272461, 0.52685547, -1.0332031, 0.9604492, 0.84716797, 2.4589844, 1.7509766, 1.4287109, -2.0957031, -0.5839844, 1.7958984, -0.72021484, -1.1113281, 0.6274414, -0.4453125, 1.0449219, 2.7324219, -1.8798828, 0.6894531, -0.7363281, 0.5800781, -2.3730469, 0.0859375, -1.5302734, -1.4667969, 0.24291992, -0.9975586, -0.13146973, 0.8803711, -0.42822266, -0.27246094, -1.078125, 0.81884766, -0.59716797, -0.9916992, -0.39013672, 0.06518555, 1.0517578, -0.10858154, 0.78515625, 2.5429688, 1.4287109, -0.5756836, 2.4902344, 0.14343262, -0.44335938, 4.21875, 0.8256836, -3.6191406, -2.2714844, 0.51904297, 1.5302734, 2.3964844, 0.06329346, -0.15014648, 1.0527344, -1.1396484, 3.6347656, 1.6767578, 1.6269531, 1.8935547, -0.4729004, 1.1992188, -1.4863281, 0.7368164, 2.1503906, 1.0527344, -0.18725586, -0.21789551, 2.9648438, 5.0195312, -0.27563477, -4.1679688, 2.2207031, 1.2744141, 1.1884766, 1.1699219, 0.19812012, 1.6689453, -1.9951172, 0.7504883, 3.0703125, -1.8320312, -0.25268555, -0.7011719, -1.7822266, 0.0014266968, -2.3496094, 1.1787109, -0.016738892, 0.12194824, -0.5283203, -0.45288086, 3.9140625, -1.7294922, -0.36743164, 2.2265625, -1.2373047, 0.25561523, -1.9121094, -0.91748047, 2.5195312, -0.4104004, -2.1230469, 1.0556641, 1.7236328, 0.30639648, 1.3808594, -0.51953125, 2.0175781, -1.4423828, -1.5771484, 2.6835938, -1.2080078, -3.1835938, 0.6064453, -0.9995117, -2.1601562, -0.057128906, -0.6381836, -0.72265625, 3.0117188, -1.7451172, -0.93408203, -1.8349609, -5.296875, -2.3808594, -1.3369141, 0.29663086, -1.2900391, 1.5517578, 1.6132812, 0.06524658, -4.1132812, 2.3613281, -1.9160156, -0.69970703, 0.79052734, -0.70458984, 0.6352539, -0.21069336, -1.3896484, 1.3544922, -0.8955078, -0.41967773, -2.5761719, 0.73876953, -3.2382812, 2.0332031, -1.4101562, 2.4414062, 0.20092773, -0.53515625, -3.1679688, 0.6669922, -1.4794922, -0.43041992, 5.0195312, 0.10925293, 0.49145508, -0.546875, -1.09375, 0.4987793, 0.81884766, 0.82910156, -1.0205078, -2.0390625, -1.2070312, -2.0429688, -3.3515625, -1.1777344, -2.5253906, 0.39257812, 0.46191406, 1.3701172, -0.16967773, -0.1303711, -1.703125, -0.122680664, -0.9121094, 1.6347656, -1.4033203, -1.1904297, -1.8408203, 2.6582031, -0.43139648, 0.8256836, 2.6210938, 2.6660156, -0.60595703, 1.6660156, 2.0683594, 0.3461914, -0.23144531, -0.8779297, -1.2910156, 1.0263672, -0.6225586, 0.055358887, 0.94677734, -2.0585938, -1.5976562, -0.9980469, -1.4550781, 4.0234375, 2.2949219, 2.765625, -0.8144531, 0.16552734, -0.55078125, 2.1191406, -0.13415527, -0.46142578, 0.062561035, 3.7226562, 0.23132324, -2.1875, 3.7265625, 0.8071289, -4.015625, 0.8198242, 2.7460938, -0.84472656, 0.66552734, 1.9326172, 2.3964844, -0.49414062, -0.3713379, 4.0664062, 1.8447266, 0.19628906, -0.34692383, 0.032440186, -0.6328125, -0.53125, 1.0175781, 2.2304688, 0.73095703, 0.31054688, 2.3945312, 2.828125, -3.734375, -0.59765625, 0.15063477, 2.6289062, -0.001865387, 1.6015625, 0.72509766, -0.43896484, -3.0957031, -0.5683594, -0.1484375, -2.3339844, 0.28173828, 1.203125, 1.0029297, -0.11468506, -0.8027344, -1.5732422, 1.9121094, -2.171875, 0.06542969, -0.99072266, -0.8852539, 1.3212891, 0.52490234, 1.3623047, -0.8984375, -0.3076172, 0.5986328, -1.4140625, 0.5966797, 0.86621094, -2.9160156, -1.0576172, -0.52197266, -1.2460938, -1.390625, 0.9550781, -1.0302734, -1.0068359, -1.1435547, -0.5991211, -1.6738281, 1.6474609, -2.2734375, 1.2402344, -0.24243164, 1.0439453, 0.82373047, 1.2421875, 0.56933594, 0.67333984, -1.2246094, -0.7602539, -2.4550781, 0.2319336, -0.32910156, -2.7148438, -1.109375, -3.2480469, -0.2211914, 1.2246094, 0.55615234, 2.4140625, -1.5751953, -0.7451172, 1.2705078, -2.6289062, -1.1132812, -1.6484375, -5.2421875, 1.8398438, -2.2558594, 0.46069336, 2.7734375, -0.1472168, -0.3449707, 1.1435547, 2.8359375, -1.5146484, -1.3007812, -0.8173828, 0.8745117, -2.1367188, 1.6025391, 1.9892578, -0.9038086, -1.578125, -1.7207031, -0.06939697, -0.09906006, 0.97509766, 3.4550781, -1.7285156, 1.0703125, 0.10827637, 0.0836792, -1.8808594, -0.18188477, -1.1845703, -1.6054688, -0.014709473, -3.2011719, 1.3925781, 1.2207031, 0.04837036, 0.20739746, 0.28125, 0.76464844, -2.4101562, 0.018341064, 3.7890625, 3.5742188, -0.04937744, 0.2854004, -1.6611328, 0.875, -0.890625, -0.62890625, -1.3427734, -0.78125, -1.6972656, 0.6035156, 0.18530273, -0.36987305, 1.96875, 0.7573242, -3.0761719, 1.484375, 2.0820312, -3.171875, 1.2890625, 1.4228516, 0.2824707, -1.5585938, 1.1533203, -1.3046875, -0.27172852, -0.9140625, -0.74072266, -2.9980469, 2.625, 1.2734375, 2.3183594, 3.7578125, -1.9296875, -3.1464844, -2.4628906, 1.1621094, -0.9692383, 0.77441406, 0.21643066, -0.8955078, 1.1796875, 0.40649414, -0.17675781, 1.1757812, 1.2685547, 0.7973633, 0.65625, -1.0214844, 0.7861328, 0.016708374, -1.3359375, -0.6328125, -1.9619141, 2.8300781, -2.0917969, -1.4863281, 1.5224609, -0.2680664, -1.9677734, 0.49853516, 0.52978516, 0.6586914, -2.2597656, 1.7695312, 1.703125, 0.3713379, 1.1074219, -2.2832031, 2.5605469, 1.1210938, 1.8710938, 0.7910156, 0.7973633, -2.5332031, -2.4472656, 1.4423828, 1.8173828, 1.2646484, 4.609375, 1.078125, -3.1953125, -0.04788208, 1.1289062, -0.81103516, -0.3178711, -0.5888672, -0.4880371, 2.6328125, 0.20605469, 0.38549805, 0.19824219, 2.5195312, 1.2607422, 2.5859375, -0.115356445, 1.0693359, -2.1152344, -4.3945312, -2.6601562, -0.890625, 0.7739258, -1.5117188, -1.3916016, -0.29711914, -0.39282227, 0.25341797, 1.8964844, -2.0917969, -0.08905029, 2.0332031, -2.3535156, -0.06262207, -1.0712891, -2.0683594, -3.0761719, 2.8242188, 2.8242188, 1.8828125, 1.0761719, 0.6542969, -0.8803711, -2.7773438, 0.6459961, -0.53759766, 0.7426758, -0.6479492, 0.45922852, 1.4804688, -3.734375, 0.5600586, -1.1191406, 1.1650391, -3.1308594, 1.7919922, -1.7402344, -0.30493164, 0.46435547, 1.3027344, -0.099731445, -3.8398438, -2.4941406, 1.8183594, -0.23327637, -0.7519531, -0.17578125, -2.1269531, 0.2142334, -0.9711914, -1.8935547, -2.3691406, 0.6923828, -0.4921875, -2.0683594, -2.6191406, 1.4267578, -0.27905273, -0.5732422, -0.35058594, 0.734375, -1.734375, -2.0566406, -2.1367188, 2.2050781, -2.8144531, -1.3105469, 0.35424805, -0.030471802, 1.7890625, 1.0302734, 0.734375, -3.1054688, 2.3613281, -2.7597656, -1.8642578, 1.3886719, -1.0517578, -0.9819336, -0.25878906, -0.8701172, -0.87939453, -0.045410156, -0.73876953, -1.4267578, -0.23901367, 1.1845703, -0.5317383, -1.3671875, -1.1181641, 1.1728516, 0.86279297, 2.4882812, 2.4960938, -0.35961914, -0.7832031, -2.59375, -0.88183594, 0.9394531, -2.8105469, 0.09680176, -0.89941406, -0.92089844, 1.3457031, 1.1162109, -0.97021484, 1.2148438, -0.5932617, -1.7890625, 1.3818359, -2.3515625, 4.1289062, 1.2841797, -1.7099609, -0.39404297, -1.2285156, 1.0839844, -0.13134766, 0.095336914, -1.96875, 1.4560547, -1.2675781, 0.48608398, -0.44506836, 0.7109375, 0.8574219, 1.4541016, -1.5839844, 0.1661377, 3.0546875, -2.4941406, 1.1679688, 0.34204102, 0.27001953, -0.93359375, 4.6953125, 0.5864258, -1.9257812, 2.5722656, -1.0898438, 1.0517578, -1.2714844, -2.4277344, 0.46777344, -1.5, -1.7207031, -1.4101562, -0.73291016, -1.8144531, -0.3203125, 2.9316406, -0.578125, 0.7241211, 1.9707031, -1.1210938, 2.1484375, 2.671875, 0.515625, 0.79541016, 0.24389648, -1.4492188, 1.7832031, 2.3964844, -0.875, -0.9453125, 1.1914062, 1.1552734, -1.3486328, 0.033203125, 0.06274414, 1.453125, 2.0410156, 0.9038086, 1.1308594, 1.1904297, 2.046875, 0.2734375, 1.4638672, 2.3320312, 2.5429688, 1.6865234, 0.27978516, 1.1835938, 0.7363281, -2.1699219, 3.4472656, -0.54345703, -0.5493164, 0.52441406, 3.0585938, -0.42211914, -3.5683594, 1.9716797, -2.9765625, -0.47924805, -0.77490234, -1.3554688, 0.40893555, -0.8642578, -0.31445312, 0.52197266, 2.1035156, -0.18408203, 1.3037109, -1.8017578, 1.4169922, 1.0341797, -4.15625, 0.6875, -1.1679688, -0.93603516, -1.5888672, 2.4257812, 0.56933594, 2.546875, 0.7416992, -0.5263672, 1.4326172, 2.9003906, 1.5400391, -0.99121094, -0.25952148, -0.45141602, 3.2382812, 0.94677734, 1.6708984, 1.6689453, 0.2409668, -1.8935547, -3.6601562, 2.6933594, 2.0859375, 1.8886719, 1.1318359, -2.8574219, 0.9902344, 0.234375, 0.12365723, -1.2402344, 3.21875, 1.8203125, -3.9257812, -0.16955566, 3.1640625, 0.8129883, 2.8007812, -0.07019043, -1.7578125, -0.7963867, -0.39038086, 2.1875, 2.7070312, -1.4453125, -0.5830078, 0.8828125, -0.22387695, 4.2421875, 1.3261719, 0.9160156, -1.5263672, 2.6328125, 0.6035156, 0.8701172, 0.75341797, -1.8105469, 0.54345703, 0.23034668, 1.8652344, -0.80566406, -0.21179199, -1.6074219, -1.5380859, -1.5722656, -1.4160156, 0.14367676, 2.6894531, 1.5947266, -0.48535156, -0.07299805, -0.8676758, -2.2910156, 1.7958984, 1.4658203, -0.8730469, 0.5024414, 1.0351562, -0.11224365, 0.8535156, -2.8046875, -0.068359375, 1.0136719, 0.40820312, -2.1855469, 1.3564453, -0.68359375, -0.91748047, -1.7011719, 1.4960938, -2.7988281, -2.4570312, 1.0566406, -1.5332031, 0.8388672, 2.3535156, -2.5058594, 1.8007812, -0.49829102, -0.6850586, -0.6738281, -0.022277832, 0.028305054, 1.1894531, 2.3808594, -1.1660156, 1.4619141, -0.78027344, -1.9023438, -0.82177734, -1.9365234, 2.7109375, -0.64160156, -2.0234375, 0.09320068, -0.1005249, 1.0751953, -0.1895752, -1.6943359, 0.43164062, -1.3916016, 0.17236328, -1.4335938, 1.7910156, 0.47143555, -2.1308594, -0.36987305, 2.9042969, 1.5810547, -1.9882812, 0.4309082, 1.0966797, 1.6240234, -2.2167969, 0.8183594, 1.8154297, 2.7617188, 1.2958984, 1.2900391, 1.0380859, 0.23059082, -0.60839844, -0.44604492, -1.5957031]}, "B00VG0S56Y": {"id": "B00VG0S56Y", "original": "Brand: Unicook\nName: Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More\nDescription: Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

          Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection\uff1a

          \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

          \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

          \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

          \u25cf Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

          Care and Use
          \u25ba Allow grill to cool before covering.
          \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
          \u25ba Air dry for next use.

          Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Upgraded Material\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements.\n\u3010Handles and Straps\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5\u201d wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off.\n\u3010Covered Air Vents\u3011- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds.\n\u3010BBQ Grill Cover Dimension\u3011- 60 inch grill cover measures 60\" width by 23\" depth and 42\" height, fits most grills with 3 to 4 burners, width between 53\u201d and 58\u201d. \ufe61Not designed to cover the wheels entirely, the grill could be moved freely with cover on.\n\u3010Wide Selection\u3011 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"UNICOOK\" button on top to find the right cover to protect your grill.\n", "embedding": [-0.3564453, 2.2421875, 2.46875, -1.3623047, 1.3662109, -0.4020996, 0.062042236, -1.9384766, 2.3125, 2.1230469, -1.1474609, -1.4306641, 0.3779297, -4.3476562, 0.09161377, -0.1932373, -0.32617188, 2.4550781, 3.4785156, -0.34448242, 1.5380859, 0.84716797, 1.7646484, 0.09832764, 0.6333008, 0.6899414, 3.7324219, -2.6035156, -1.2617188, -0.29174805, 1.8115234, -0.8544922, 0.59033203, 1.3378906, -2.2753906, -1.7216797, -0.9506836, 0.9711914, 0.18884277, 0.31420898, -0.64208984, -1.9472656, 0.60791016, 0.7055664, -2.1816406, 1.1923828, -2.125, 0.2866211, -1.2792969, -3.1289062, 0.7944336, 2.5234375, 0.8955078, 0.4489746, -2.390625, 3.0722656, 0.6870117, -1.6875, -0.3449707, -1.125, 0.5053711, -1.453125, -1.2773438, 1.7880859, -1.9257812, -1.1640625, -1.2158203, -0.5214844, 0.31396484, 0.35473633, 1.9052734, 0.29052734, -1.8525391, 1.0625, 1.6289062, -0.23999023, -2.0332031, 1.1699219, 0.30419922, -1.2363281, -0.4494629, 4.7773438, 0.67529297, -3.6367188, 0.16027832, 1.3115234, -2.1386719, -2.0449219, 2.7617188, 0.7211914, -0.52685547, 2.0644531, -1.8779297, -4.9140625, 0.09625244, -2.3691406, 1.8974609, 0.7841797, 0.5756836, 0.70947266, -1.0732422, 0.3815918, -2.3378906, -0.039520264, -2.8007812, -1.6767578, 2.1796875, -1.7871094, -1.4414062, -0.55566406, -0.17114258, -0.9291992, -0.7661133, 0.6723633, 2.2558594, 0.51708984, -0.42407227, 1.9306641, -0.5390625, 0.9765625, 4.28125, -0.6118164, -0.38989258, -0.90478516, -0.37182617, -0.6972656, -1.4619141, -0.47216797, 4.359375, -0.640625, 1.9658203, 0.7241211, 0.27783203, 1.5830078, -2.2070312, 0.099975586, -2.2597656, -1.5283203, -2.3242188, 2.3769531, -1.5898438, -1.609375, 1.8017578, -1.1416016, -4.28125, 0.97509766, -0.2220459, 4.0273438, -0.5678711, -1.8798828, 1.7060547, -2.4589844, 0.10211182, -1.9238281, 1.0576172, -0.66796875, 0.52685547, -4.2539062, 3.7539062, 2.859375, 2.7207031, -3.0332031, 1.6005859, 1.5566406, 1.7988281, -0.99316406, -1.2695312, 0.26635742, -1.4931641, 0.9003906, -0.46557617, -0.99121094, 0.88427734, 1.4482422, 0.6352539, -0.95410156, 0.43139648, 2.1386719, 0.2993164, -0.1796875, -0.5107422, -1.8427734, 0.018951416, 2.5488281, -2.0058594, -1.2861328, -0.28393555, -0.35888672, 0.10266113, -0.7207031, -0.3786621, -0.07897949, -0.7758789, 1.2558594, -2.1054688, -0.79833984, -1.4033203, -0.81152344, -1.4316406, -0.10095215, -1.2636719, -3.2773438, -0.9682617, 0.53222656, -3.3671875, -2.7929688, -1.6494141, -0.36865234, 1.2880859, 0.6376953, 1.5009766, -1.5927734, 2.0429688, 3.3378906, -1.9814453, 0.74121094, 1.7177734, -0.6582031, 1.4003906, 1.1513672, -0.1619873, -1.9228516, -0.32714844, 3.0703125, 0.29101562, 3.4375, 1.5009766, -0.4807129, -1.2783203, -1.3886719, 0.23278809, 0.37426758, 0.79833984, 0.7290039, -0.8276367, 0.84472656, 0.57910156, -2.5917969, -0.8911133, -0.3955078, -2.75, -3.0664062, -3.0117188, -1.5419922, 0.9765625, 1.0947266, -1.2255859, 1.0146484, 0.22167969, -0.8046875, -0.9243164, 1.3037109, 0.48120117, 0.38745117, -0.101867676, 0.94433594, -0.08001709, -0.20751953, -2.0488281, -1.5898438, 0.11621094, 0.68310547, 0.5161133, 0.36401367, -0.6948242, -1.4482422, -0.05722046, 1.4785156, -2.5371094, -2.3730469, 1.8837891, 0.19482422, -0.45385742, -2.3691406, 1.2958984, 0.56347656, -0.27075195, 1.34375, 0.18395996, 0.5961914, -0.24255371, 1.09375, 1.8027344, -2.2304688, 1.2773438, -1.2822266, -0.86572266, -1.5078125, -0.38305664, 0.3125, 3.859375, -0.39038086, -2.0097656, 2.4082031, 0.31713867, -0.062164307, 1.3857422, 0.2578125, -1.7431641, 0.7602539, 1.2890625, 1.1669922, -0.67871094, 1.2539062, -2.3652344, -1.1005859, 1.8310547, -2.5253906, -0.7973633, 2.4375, 0.6821289, 1.8232422, -1.0527344, 1.1445312, -2.3925781, -2.8886719, 1.9853516, -1.3251953, 0.8027344, 0.6557617, 1.5908203, 0.7133789, -1.8496094, -1.9199219, -1.2705078, 0.4951172, -0.11450195, -0.21459961, 0.71533203, -0.37109375, -0.21813965, -1.71875, 0.8149414, -1.8867188, 0.17285156, -1.8623047, -2.8867188, -1.7480469, -0.37304688, -1.6640625, 0.9379883, -0.5180664, -2.2285156, 1.0507812, 1.0996094, -3.796875, -0.5708008, 1.1279297, -0.328125, 0.19116211, 0.4638672, -0.49804688, -0.27441406, -5.8945312, 1.7900391, -1.4326172, -0.6542969, -0.60546875, -1.1757812, 0.22460938, 0.34570312, 0.13464355, -0.01727295, 0.80615234, 1.0498047, 0.03378296, -0.38012695, -2.5742188, 1.8105469, -3.40625, 1.0478516, -0.1965332, 1.6708984, -3.7050781, -0.99853516, 1.1445312, -1.6191406, 2.8945312, 1.3554688, 1.2802734, -0.96435547, -1.4765625, 0.18249512, 0.12286377, -1.0878906, 0.48608398, -0.484375, -0.8930664, 0.5136719, -3.4648438, -2.2460938, -2.328125, -0.9394531, 0.65722656, 0.30639648, -0.6064453, 2.7792969, -2.8789062, -1.0361328, -0.0033187866, 0.9589844, 0.36132812, -2.2714844, 0.2697754, -2.65625, -1.8994141, -0.3955078, -2.1972656, 2.6308594, -2.2558594, -0.87402344, 2.9980469, -0.47509766, 3.4707031, -0.8964844, -3.2636719, 0.9897461, 0.47802734, 0.35595703, 2.0097656, -0.28051758, 1.4443359, -0.6147461, 1.3642578, 2.2480469, 0.31811523, 0.5566406, 2.7480469, 1.9960938, 1.4287109, -1.0761719, 1.9042969, -0.041229248, 2.2363281, 1.8818359, 0.18664551, -1.7197266, 0.60009766, 0.74609375, -0.81591797, 1.2412109, 0.8623047, 0.5214844, 0.028030396, 0.89208984, -1.109375, 1.7080078, -0.47875977, 1.5263672, -1.7734375, 2.0136719, 1.1884766, -0.035736084, -0.2479248, -0.91015625, 1.6533203, 2.2539062, 1.1865234, 0.89941406, 2.4023438, 0.009292603, -0.17883301, -0.41992188, 1.7363281, 0.63378906, -0.7836914, 1.90625, -1.5537109, 0.18261719, 1.0175781, -2.1953125, 2.0078125, -2.2207031, 0.50390625, 2.1660156, -2.0820312, 0.8457031, -1.1259766, -0.074523926, 0.35107422, -1.5537109, -0.07318115, -1.5654297, -1.7050781, 0.12854004, -3.8398438, -2.8867188, -1.125, 3.546875, 0.22851562, -2.3457031, 0.118896484, 1.5244141, -1.8251953, -1.8525391, 0.9121094, 2.7519531, -0.8989258, 3.2148438, 1.1005859, -2.015625, 2.1621094, -2.234375, 1.3417969, 0.63964844, -1.0166016, -0.48779297, -0.6855469, -0.4555664, -2.2402344, 1.8769531, 1.5830078, 2, -1.0634766, 1.7548828, -1.9931641, 1.0820312, 2.0605469, -0.7294922, -0.6542969, 1.8291016, 1.1699219, 0.9711914, 0.93115234, 2.5332031, -0.22644043, -0.25048828, 1.7568359, -2.65625, -0.6376953, 0.57666016, -4.1914062, -1.0537109, -0.63183594, -0.6425781, 3.6503906, -0.70703125, 0.80615234, 2.5351562, -2.0859375, 1.0097656, 0.39916992, -3.6933594, -1.6953125, 0.29052734, 0.5834961, 2.28125, 0.3947754, -1.6523438, -2.2089844, -2.9433594, -1.03125, -0.10467529, 2.265625, -1.2929688, 0.2944336, -1.984375, -0.5527344, -1.4550781, 1.1142578, 1.7890625, 1.1601562, 0.07977295, 0.05996704, 1.4619141, -1.6953125, 2.1601562, -0.421875, 1.6025391, -1.5029297, -0.23583984, 0.47998047, -1.25, 2.3105469, -1.1582031, -2.6015625, -1.0517578, 1.078125, 2.1113281, -0.765625, -0.50341797, -1.7236328, -0.7319336, 1.7148438, 0.86035156, 3.2714844, 1.7783203, -0.421875, -2.4589844, -0.54052734, -1.4160156, -1.328125, -1.3339844, 0.121032715, 0.64208984, 0.796875, -1.9169922, -1.5908203, 0.00819397, 0.9238281, 0.31518555, -0.05847168, 2.8769531, 1.4707031, 1.3339844, 1.8046875, -3.0039062, -0.24731445, 1.7109375, -0.76123047, 0.2446289, 0.47583008, -0.5107422, -0.64746094, 1.5898438, -1.640625, -1.7382812, 0.10168457, -0.87841797, 0.52490234, -0.13708496, -3.2109375, 2.7675781, 0.20178223, 0.6274414, 0.6435547, -2.6015625, 2.7421875, -1.2753906, -0.6152344, 2.0859375, -0.95751953, -1.5263672, 0.32641602, 1.2753906, 0.087402344, -0.26220703, -0.21032715, -0.98291016, -0.31030273, 0.05316162, -2, 1.578125, -0.7529297, -0.15722656, 1.1660156, 1.2978516, -1.3916016, 0.60839844, 3.1582031, 2.3417969, -0.8496094, 1.5615234, 1.6328125, -1.2431641, 0.6582031, 1.4355469, -1.7099609, 1.0566406, 0.05291748, -0.18469238, 1.1591797, -1.5927734, -1.5996094, 0.20092773, 1.6953125, -0.89746094, 1.1386719, -1.0351562, -1.7451172, 2.1503906, -2.3515625, -0.5332031, -0.921875, 1.6679688, -1.2832031, -0.17749023, 1.3740234, -0.17260742, 0.9692383, 3.3789062, -1.8066406, -2.1308594, -1.1552734, 0.3112793, -0.6074219, -0.6479492, -2.3125, -3.5429688, -0.63427734, 1.1865234, 3.1953125, 2.5585938, 0.11968994, 1.6455078, -2.5429688, 1.390625, -1.09375, 2.6464844, -1.5068359, -0.4572754, 2.4179688, -3.5195312, -1.6269531, -2.3457031, -0.1776123, 1.9853516, 2.0761719, 1.3623047, -0.9301758, 0.47875977, -0.32299805, -3.5664062, -2.1933594, -0.5751953, 0.13806152, -0.6611328, 0.83691406, 0.17102051, 1.6757812, 0.5048828, -2.2011719, 0.8588867, -0.49560547, -0.33935547, -1.4853516, -2.375, -0.07446289, -0.7661133, -1.7587891, -0.36010742, -1.5986328, 0.9472656, 0.82910156, -3.4707031, 1.4130859, 0.15661621, -2.9199219, -0.51123047, 3.6210938, 1.4257812, 1.0830078, -0.5102539, -1.1884766, 0.001039505, 2.7226562, -2.0390625, -1.1132812, 2.25, -1.578125, 1.6142578, -1.1894531, -1.4121094, 1.7109375, -2.703125, 0.30004883, 0.78466797, 0.44433594, 3.7363281, 1.8886719, -0.8051758, -0.44091797, -0.053894043, 1.3408203, 2.3886719, 0.46166992, -0.78564453, 1.0986328, -2.125, -2.09375, 1.7597656, -1.5341797, -1.4726562, -2.0136719, 0.71875, 1.5126953, 2.3183594, 1.0585938, 0.3317871, 0.8334961, -2.6738281, 0.08911133, 0.5371094, 3.4277344, 0.55126953, -2.1542969, -0.44433594, -1.7900391, 0.85839844, 1.9697266, -0.46142578, -0.64453125, 0.03842163, 0.9111328, 0.75439453, 0.029296875, 3.2675781, 1.1083984, 2.1621094, 0.8232422, 1.1582031, 2.6757812, -0.0029907227, 1.3681641, 0.39453125, 1.4052734, -0.2919922, 1.3769531, 1.0019531, -1.8544922, -0.6875, -0.041168213, 0.7348633, 1.0810547, -2.5449219, -1.5263672, -0.55078125, -1.2304688, -2.3320312, 0.6855469, -3.6757812, 0.7402344, 1.3769531, -0.6689453, 0.06555176, 0.8691406, 0.68896484, 2.53125, 2.484375, 2.2109375, -0.91064453, -1.4775391, -0.07104492, -0.066345215, 0.35913086, -1.5419922, -0.24816895, -0.7553711, 0.47021484, -0.64404297, 1.5009766, 0.3857422, 1.2431641, 0.22290039, 2.7050781, 2.4667969, 2.3515625, 2.390625, 0.6411133, 1.5439453, 1.2314453, -1.7226562, -0.3232422, 2.6425781, 2.5351562, 2.5214844, -0.359375, 1.2109375, 1.0898438, -1.0664062, 0.66845703, -0.12536621, 2.2441406, -1.8876953, 0.8046875, 1.6982422, -0.06726074, 0.13586426, 2.0351562, -1.1171875, -0.7885742, 0.5839844, 0.105529785, 2.7304688, -0.1640625, 3.21875, 0.16699219, 1.6533203, 2.5625, -4.609375, 1.8828125, -0.46557617, -3.4023438, -0.6044922, 1.5771484, 2.2207031, 1.9726562, 0.24780273, 1.4404297, 1.671875, 2.1113281, 3.0703125, -2.1464844, -0.0049057007, 0.16699219, 1.6191406, 0.2626953, -0.9296875, -1.4453125, -0.29956055, -2.7734375, -2.25, 1.4414062, 1.6552734, 2.5976562, 2.2519531, -3.1445312, 1.8164062, 0.8730469, 3.3300781, -0.46923828, 0.8520508, -1.8378906, -3.1621094, 0.4189453, 0.40844727, -2.0371094, 1.0478516, 1.0527344, -0.1484375, 2.9042969, 0.7939453, 0.7402344, 1.5625, 2.6269531, -0.40014648, 0.7548828, 0.4567871, 2.4960938, 2.1757812, -1.0458984, -1.8173828, 1.0341797, 0.033721924, 0.4934082, 2.3164062, -0.47875977, 1.9824219, 1.984375, 0.2454834, 0.9165039, -0.28833008, 0.8491211, -0.23217773, -0.7607422, 0.24926758, -0.5800781, 1.0478516, 0.5864258, -0.30200195, 0.7524414, -0.5678711, -0.41064453, 1.0419922, 0.37963867, -0.5761719, -1.9140625, -0.5336914, 0.49609375, -0.8227539, -1.3642578, -1.6533203, 0.6459961, -1.0195312, -1.2207031, 0.26367188, 0.18615723, 0.13134766, 0.012924194, 1.8486328, -1.3662109, -0.8105469, -0.68066406, -1.8662109, -0.043121338, 1.4101562, 1.6269531, -2.3164062, -0.47607422, -1.1347656, 1.4316406, -0.77441406, -1.8984375, 1.4238281, 2.5527344, 1.1757812, -1.3652344, -1.2255859, -2.2246094, -0.21154785, -2.4140625, 2.0683594, -0.15771484, -0.22167969, -0.38256836, 0.7524414, 2.9101562, -1.4472656, -2.3457031, -0.5019531, 1.4912109, 1.1992188, -0.9560547, 0.34423828, -1.1669922, 0.23376465, 1.1992188, 1.1435547, 4.328125, 0.11126709, 1.0810547, 2.3222656, -2.640625, -3.2753906, 0.43579102, 0.3635254, 0.0030784607, -0.10357666, 0.27026367, 3.1269531, -0.49975586, -0.65185547, -0.40551758, -0.50390625]}, "B001RU04XK": {"id": "B001RU04XK", "original": "Brand: Coleman\nName: Coleman Fold N Go + Propane Grill\nDescription: \nFeatures: Portable folding grill with built-in handle for easy transport and storage\nDelivers 6,000 BTUs of heat across 105 sq. in. of grilling surface\nAdjustable horseshoe burner for precise temperature control and even heating\nInstaStart button ignites grill without the need for a match or lighter\nRemovable dishwasher-safe cooking surface and grease tray for easy cleaning\n", "embedding": [-1.3076172, 0.890625, 0.56689453, 1.1533203, -1.3925781, 0.5390625, 0.4880371, 0.1895752, -1.5576172, 2.6074219, 0.45947266, -1.1289062, 0.79052734, -1.6025391, 0.14001465, -0.9433594, 1.0126953, 1.8925781, 1.7470703, -0.6538086, 1.9052734, -0.98046875, 0.37817383, 0.359375, 0.28588867, 0.4128418, 3.9121094, -5.0585938, -0.34228516, -0.028747559, 2.1113281, 0.28320312, 0.5209961, 3.4550781, -2.8867188, -1.2089844, -2.5957031, 2.1289062, -1.4335938, -1.1113281, -1.0888672, -1.4941406, 2.765625, -0.40063477, -1.4726562, -0.8232422, 1.6835938, 0.24963379, -0.8457031, -1.0712891, 2.6582031, 1.0517578, 1.6201172, 0.9746094, -0.9511719, 1.1464844, -0.010292053, -1.5751953, 1.6972656, -1.1455078, 0.5488281, -0.39135742, -1.4824219, 0.6879883, -1.2685547, -0.99853516, -0.08081055, -0.10131836, 0.6748047, -0.5097656, 2.5136719, 0.18066406, -3.4316406, -0.8881836, 0.26879883, -1.0048828, -2.4882812, 0.30493164, 1.6240234, 0.43676758, -0.67822266, 1.4091797, 1.5722656, -2.234375, -1.2539062, -0.46948242, -1.0498047, -1.9658203, 1.7363281, 1.7304688, -0.77685547, 1.4521484, -1.5566406, -3.7226562, 1.2226562, -1.6816406, 0.90234375, 0.8173828, -0.6123047, 1.3945312, -1.3388672, 1.1435547, -1.4541016, -0.6855469, -3.0292969, -1.2646484, 2.171875, 0.014511108, -2.0117188, 2.9746094, -1.5449219, -1.1035156, 3.0683594, 0.84814453, -0.22619629, 0.056274414, -0.5722656, 2.671875, 2.0605469, 1.3789062, 4.2734375, -1.3251953, 2.2617188, -0.7763672, -0.16357422, 1.0166016, -0.6743164, 1.5341797, 4.2070312, -1.5087891, -0.19128418, 0.51953125, 2.1601562, -0.013053894, -4.0898438, -2.6328125, -1.5498047, -1.0507812, -3.9375, 0.0018167496, -0.23547363, -0.024337769, 3.4375, -0.074157715, -5.28125, -0.5161133, 0.65234375, 2.5078125, -0.29907227, -2.671875, -0.46191406, -1.5234375, -0.0104599, -0.53125, 2.1113281, 0.5683594, -2.2109375, -1.5527344, 4.5546875, 0.74316406, 1.2822266, -0.6040039, -1.0966797, 1.2080078, 1.1923828, -0.6015625, 0.5854492, 1.4628906, -0.2208252, 2.5742188, 0.62353516, -3.5800781, 1.2441406, -0.052337646, 1.6367188, -1.5058594, 1.4511719, 2.1777344, 0.09069824, -1.3115234, -1.2685547, -2.1679688, 0.43969727, 1.5673828, 0.48413086, -2.3710938, -1.0214844, 0.3581543, 0.2919922, -1.4365234, 0.054840088, -1.6113281, 0.014930725, -0.11029053, -1.7060547, -1.0869141, -0.8676758, -0.032196045, 2.0820312, 0.9033203, 0.19995117, -0.39770508, 0.097473145, 1.4023438, -2.1875, -3.2890625, -1.0878906, -1.6416016, 2.0507812, 1.4882812, 2.4316406, 0.5107422, 1.3876953, 0.4736328, -1.6445312, -2.2832031, 0.07159424, 0.10797119, 2.5332031, 0.88671875, -0.30493164, -2.4433594, -1.0859375, 1.0849609, -1.2431641, 2.1738281, 1.1103516, -0.6269531, -0.18261719, -1.5546875, 1.4873047, 1.6425781, -1.8242188, 0.50146484, 0.43676758, 2.2441406, 0.45092773, -1.1416016, -1.0478516, 0.33618164, -0.16845703, -0.08642578, 0.85058594, -1.3554688, -0.43725586, -1.15625, -1.1904297, 2.5371094, 1.5927734, 0.7792969, -1.0166016, 0.69873047, -1.4248047, 2.4003906, -1.9511719, 2.2734375, -0.5576172, 0.019607544, -1.2753906, -2.921875, 0.02708435, 1.9726562, -0.23339844, 0.4440918, 0.2064209, -0.6064453, 2.8066406, 0.12036133, -2.8808594, -1.0478516, 2.2617188, 1.2246094, 1.4628906, 2.9023438, -0.002866745, -0.11328125, -1.3886719, 1.6220703, 0.068237305, 1.5966797, 0.20214844, 1.3427734, 2.4335938, -1.7597656, -4.1132812, -0.16137695, 0.17028809, -0.4033203, -1.5117188, 1.2001953, 4.03125, -0.1472168, -1.8896484, 3.0234375, -3.703125, 1.9677734, 1.8701172, -0.9682617, -0.7705078, 0.22302246, 2.5253906, 0.92822266, -0.05355835, 2.671875, -4.890625, -0.6357422, -0.42529297, -1.6660156, 1.3808594, -0.64746094, 0.09075928, -0.6113281, -1.9433594, 0.2836914, -2.0019531, -0.63916016, 2.3027344, -1.1835938, 1.8466797, 2.1757812, 0.31835938, 0.25073242, 0.17932129, -1.2802734, -0.19384766, 0.18701172, -1.6650391, 1.4326172, 0.5053711, -2.1953125, -0.5205078, -1.1064453, 2.8105469, -1.3496094, -1.8378906, -0.89990234, -0.09790039, -3.1816406, 1.3037109, 0.9628906, -1.4960938, -0.0496521, -1.7861328, 2.2089844, -2.3515625, -2.3652344, 0.7714844, -0.23986816, -1.0195312, -0.114990234, 0.18981934, 0.6279297, -0.4621582, -3.7109375, 0.10473633, 0.8496094, -0.1159668, -1.4599609, -1.2275391, -0.34692383, 0.5698242, 0.17700195, 0.1706543, 1.3320312, -0.9277344, -1.1748047, -0.5395508, -2.7519531, 2.2207031, -1.2421875, -0.3959961, -0.6542969, 0.24401855, -2.6699219, -1.8828125, 1.9472656, -0.7114258, 4.9609375, -0.11505127, 0.5830078, 0.4963379, -1.7802734, 1.5507812, 0.24560547, -4.1757812, -0.4399414, 1.5488281, 0.77978516, -2.1953125, -3.8203125, 0.2680664, -0.061920166, -0.8979492, -0.6879883, 1.6259766, -3.3183594, 1.4736328, -3.0976562, 0.8623047, 0.07421875, 1.6728516, 0.4375, -1.1396484, -0.6274414, -0.36791992, -1.4150391, 0.20043945, -1.7265625, 0.3010254, -0.33666992, -0.82177734, 1.7265625, -1.1816406, -0.064208984, -1.0576172, -4.2265625, 2.6601562, 0.64941406, -0.7246094, 2.2441406, -1.2529297, -2.6953125, -4.7460938, -0.8305664, 2.5117188, 1.0214844, 1.4345703, 0.26049805, -0.4453125, 2.9375, 1.46875, -1.4033203, 0.62890625, -1.1474609, 2.6269531, -1.3847656, -2.1660156, 0.06317139, 3.0195312, -2.9472656, -0.5263672, 2.7050781, -0.25073242, 1.1972656, 4.0390625, -0.16723633, 0.5004883, 0.029449463, 1.2236328, 3.2695312, -1.5429688, -1.2158203, -0.7036133, -1.4345703, 1.9453125, 2.6523438, -0.0075035095, 1.3115234, 0.9301758, 1.5, 1.2578125, -1.9189453, 1.0527344, 0.86572266, 1.0097656, 0.90771484, 2.7128906, -0.6279297, 0.4873047, -0.21044922, -0.80126953, 1.0351562, -0.8378906, 1.1064453, 3.7753906, 0.109436035, -0.8466797, 0.5288086, -0.06829834, 0.012428284, -0.7963867, 0.31835938, -1.1552734, -0.8051758, -0.49975586, -2.3183594, -2.8144531, -0.23718262, 3.6269531, -1.375, -1.5849609, 1.1113281, 3.3222656, 0.119384766, -2.4179688, -3.4277344, 0.04977417, 0.61083984, 2.0058594, 1.3974609, -1.9248047, 0.59521484, 1.3623047, 2.0253906, 1.2236328, -1.0146484, -1.0498047, -0.70703125, -1.2685547, -0.65234375, 0.31323242, 1.4472656, 0.32006836, -2.2519531, 0.4777832, -3.0898438, 0.9194336, 0.25463867, -1.8710938, 0.14831543, 1.4257812, 0.8208008, 0.44604492, -0.53808594, 2.484375, -2.9101562, -1.0947266, 0.07775879, -1.7128906, -1.1923828, -1.0751953, -2.890625, 1.1503906, 0.3347168, -0.7753906, 2.796875, -0.84814453, 0.22277832, 0.9536133, 0.044769287, -1.9570312, -1.6064453, -2.2851562, -1.0605469, -1.1015625, 1.6679688, 0.9238281, -1.0341797, -3.0859375, -1.2568359, -1.2988281, 0.30395508, 1.1894531, 2.2578125, -0.91796875, 0.25195312, -0.6982422, 2.9394531, 0.3413086, 0.1463623, 0.5756836, 0.66503906, -0.103881836, -2.9101562, 0.8598633, -1.0556641, -0.39819336, 0.26464844, 2.1875, -0.18762207, -2.5234375, 1.7148438, 1.6875, 0.061340332, -0.49902344, -2.1914062, -0.56396484, -1.8037109, -1.2363281, 0.3684082, -0.7026367, -0.51123047, -1.7470703, 0.61865234, 1.4003906, 1.5234375, 1.8798828, 0.9663086, -1.3134766, 0.54052734, 1.2529297, -2.7675781, -2.0273438, -1.0351562, -1.2568359, -2.0957031, -0.016799927, -1.4589844, 0.5258789, -0.18908691, -0.2998047, -0.6801758, 2.3359375, 3.1992188, 2.7519531, 2.6230469, 0.7373047, -0.20593262, 2.2636719, -0.73291016, 0.203125, 1.1435547, -1.9804688, 1.1044922, 0.2824707, 0.98583984, -1.8427734, -0.083496094, 0.11755371, -1.8759766, -1.5302734, -1.5908203, 1.6748047, -1.7402344, 0.24389648, -0.52490234, -1.0458984, 2.1640625, -2.296875, 1.0117188, 0.66308594, 0.47436523, 1.65625, -0.034423828, 0.6386719, 0.37963867, 1.0224609, -0.85791016, -0.06506348, -0.28173828, -0.1784668, -0.85546875, 2.265625, -2.0214844, -1.5507812, 1.1210938, 0.25927734, -2.0253906, -0.9580078, 0.34033203, 0.105285645, 0.66503906, 1.7890625, 1.3212891, -1.0302734, 0.6538086, 0.62109375, -0.40820312, -0.32714844, 1.0878906, -0.18371582, 2.21875, -1.28125, -3.8144531, 1.2988281, 0.56640625, 0.023773193, 1.5458984, -0.15698242, -0.38208008, -1.0078125, -2.8066406, 0.8051758, 1.0410156, -2.203125, -1.0683594, -1.34375, 0.16503906, -1.1894531, 0.8544922, 2.3554688, -0.75927734, -1.5947266, 1.4775391, -2.8242188, 0.75683594, -1.3046875, -2.7617188, -3.328125, -1.4140625, 1.8535156, 2.2871094, 2.1191406, -0.31445312, -0.25878906, -2.4804688, -0.4790039, -1.3671875, 3.3476562, -2.6894531, -1.2597656, 0.9794922, -1.0673828, -0.9399414, -2.3183594, 1.0458984, -0.3491211, 2.3652344, 1.0039062, 0.05114746, -0.5361328, -0.056762695, -2.75, -4.78125, -0.4543457, 0.22387695, 0.6303711, -0.18981934, 2.2128906, -2.2382812, -0.53222656, -0.98828125, -1.4541016, -1.0136719, -0.8154297, -0.17980957, -1.2119141, -0.3569336, 1.1035156, -1.1845703, 2.5019531, 1.6298828, 0.85546875, -0.22106934, -3.2519531, -1.1181641, 1.0029297, -0.58203125, -0.16845703, 2.2871094, -0.8901367, -1.2822266, 0.7402344, 1.2871094, 0.079833984, 2.1757812, -0.5419922, -0.80371094, 1.8388672, -0.79248047, -1.5712891, 1.3427734, -1.7666016, 0.5830078, -1.1640625, 2.2558594, 1.1142578, 1.1425781, -0.5073242, 1.2578125, 1.1855469, 0.77685547, 0.72265625, -0.21154785, 2.4121094, -0.28881836, 0.7089844, -1.6396484, -2.4394531, -2.7695312, 0.25317383, -1.4902344, -1.4912109, -1.6054688, 2.1914062, 1.7685547, 2.6015625, 1.6689453, 0.5317383, 1.8847656, -0.8300781, -0.3503418, 0.20715332, 2.4453125, 1.8164062, -1.5097656, -1.0859375, -0.17480469, 0.23498535, -0.28320312, -0.13012695, 0.85058594, -0.9511719, -1.8027344, 0.27416992, -1.5498047, 2.5957031, 2.3183594, 1.4501953, -0.4519043, 1.2871094, 2.796875, -1.4414062, 0.31030273, 0.21081543, 2.4589844, -2.0214844, 3.4375, -1.75, -2.0390625, 1.6347656, -2.4003906, 1.2314453, -0.7729492, -0.9345703, 0.54345703, -1.8613281, -1.4453125, -1.3310547, 0.51953125, -3.5507812, 1.8164062, 0.38134766, -0.54833984, 1.4257812, 1.5361328, -0.27270508, 0.49853516, 2.6132812, 1.9277344, -0.4086914, 0.8833008, -0.2331543, -0.68310547, 1.2373047, -2.0175781, 3.2773438, -0.18823242, -0.17980957, 0.13122559, 3.328125, 0.09729004, 2.9628906, 2.5410156, 2.4257812, 4.609375, 1.2353516, 3.2109375, 1.2636719, -0.01360321, 0.71728516, -1.7314453, -1.2382812, 3.1699219, 0.19848633, -0.7080078, -0.9003906, 1.2539062, -1.0126953, -0.49804688, -1.6591797, 1.1152344, 0.40527344, -3.984375, 1.7128906, 1.6396484, 1.9365234, -0.95996094, 1.0820312, 0.1829834, 0.515625, -0.2548828, 0.09741211, 2.2753906, -1.5625, 0.99365234, -0.11645508, 0.30932617, 1.9736328, -1.9785156, -1.3007812, -0.4230957, -0.2993164, 0.1607666, 0.4501953, 0.94384766, 1.9716797, -0.1817627, 1.1621094, 1.3603516, -0.50439453, 0.28979492, -0.13879395, 0.85302734, 0.86816406, 2.9628906, 0.8442383, -1.6679688, 0.5888672, 0.08618164, -1.6708984, -3.2753906, 0.16467285, 1.3085938, 0.44726562, -0.14477539, -1.5791016, 2.7148438, 0.9868164, 1.9121094, -1.2714844, 2.3007812, -1.9541016, -1.9951172, -1.8076172, 0.119628906, 0.5571289, 3.0742188, 1.6679688, -0.7246094, 3.1425781, 1.5136719, 3.6894531, -1.0966797, 0.8120117, 0.7080078, 1.9882812, -1.5009766, 2.0019531, 0.70996094, 1.5341797, -1.1728516, 2.4101562, 2.8496094, -1.078125, -0.28857422, -0.97558594, 1.2158203, 0.09490967, -1.1494141, -0.6879883, -1.7197266, -1.7460938, 0.57128906, 0.8769531, 0.056671143, 0.6982422, 1.9824219, 2.3183594, -0.11437988, 0.21691895, 0.8251953, 1.1542969, 1.9140625, -1.4228516, -1.2802734, -2.2558594, 0.29370117, 0.8461914, 0.6660156, -0.43896484, 0.88378906, 1.3574219, -1.1591797, 0.1697998, 0.6425781, -2.046875, -0.44091797, -0.7182617, 0.7944336, -0.79052734, -0.49194336, 0.058898926, 1.1914062, 0.26513672, 2.7148438, -0.7050781, -0.9121094, -0.77490234, -1.3408203, 0.3173828, -2.0644531, -1.3291016, 1.6474609, 3.8378906, 0.84814453, 1.3876953, -2.8808594, -2.3378906, -2.7226562, -1.6953125, 3.2226562, 1.4228516, -1.9453125, 0.17248535, 0.8979492, 0.98046875, -1.3271484, -0.9189453, 0.66308594, 0.45507812, 0.29711914, 0.5800781, 0.14697266, 2.7207031, -1.4628906, -0.3630371, 1.3085938, 0.48999023, 2.6523438, 2.2070312, -1.6689453, -0.5419922, -3.0195312, 0.031463623, -0.953125, -0.4765625, -2.4628906, 1.8134766, 2.1816406, 0.1640625, -0.05343628, -2.7207031, -1.9628906]}, "B00PHNN5VG": {"id": "B00PHNN5VG", "original": "Brand: Camco\nName: Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)\nDescription: \nFeatures: Protects Your RV's Propane Tank: Protects your propane gas tank from flying road debris\nCompatibility: Fits 20 lb. steel double tanks\nProvides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel\nDurable Construction: Made of a heavy-duty, UV-stabilized polymer\nDimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)\n", "embedding": [-0.059753418, 0.8461914, 3.8496094, -0.6621094, -1.2421875, -2.4160156, 0.77001953, -0.49316406, 2.1933594, 1.9716797, 0.69091797, 0.28955078, 0.51464844, -3.4960938, 1.3466797, -0.5541992, 0.11303711, 1.6630859, 2.78125, 0.8334961, 1.9462891, -0.42749023, 0.101867676, -0.92089844, 0.7050781, -0.8232422, 3.1855469, -2.015625, -2.6425781, 0.92089844, 0.86328125, 0.5932617, 0.16052246, 2.2539062, 0.9667969, -0.7524414, -0.4765625, -0.04522705, -2.796875, 0.44018555, -3.3574219, -0.3996582, 4.1210938, 1.0214844, -0.9692383, -0.44555664, -0.4814453, -1.5419922, 0.53027344, -2.1386719, 0.040222168, 2.1015625, 1.7519531, 1.5449219, -0.6254883, 0.11871338, -0.026504517, -1.03125, -0.15783691, 2.2167969, -1.0224609, -0.2746582, -2.6289062, 1.8847656, -1.4931641, 1.5419922, -1.8505859, -0.7167969, 0.12573242, 2.3300781, 0.89941406, 1.3691406, 0.42089844, -1.3388672, 1.5136719, -1.2441406, -2.2109375, 0.9458008, 0.23339844, -2.0839844, -0.45703125, 3.5449219, -2.1875, -1.7871094, -1.4052734, -1.5263672, 0.17443848, 0.8984375, -0.71533203, 0.53808594, -1.5917969, 1.1992188, -1.859375, -3.234375, -1.515625, 0.84472656, 2.1347656, 1.2597656, 3.328125, 2.3886719, -0.3161621, -0.076049805, -0.96484375, 1.3388672, -2.9941406, -2.671875, 1.4667969, -1.7636719, -1.6679688, 1.0927734, -0.27392578, 0.23474121, 0.5834961, -1.5087891, -0.041870117, 1.0078125, -0.9121094, -0.14343262, 1.7539062, 1.0068359, 4.8007812, -0.49316406, 0.94433594, -1.2724609, 2.5292969, 1.6865234, 0.01676941, 1.2841797, 3.0097656, -0.97216797, 1.3789062, 0.25268555, 0.54589844, -0.8808594, 0.9604492, -0.036315918, -1.7783203, -1.1035156, -1.1611328, 1.0439453, -3.1855469, 0.25439453, 0.7211914, 0.30908203, -3.9199219, -0.58740234, -1.7998047, 1.3701172, -1.3701172, -2.8867188, 0.09863281, -3.5742188, -0.6113281, -0.6845703, 0.95947266, 0.3786621, -0.23986816, -3.3945312, 1.1826172, 2.1992188, 3.40625, -0.091552734, 0.114746094, 1.6054688, 1.1347656, -2.4414062, 0.4675293, -0.07067871, -0.95947266, 1.296875, -0.8125, -1.3242188, 0.5913086, -0.014274597, -0.89941406, -0.16589355, 1.7900391, 1.5556641, 0.7885742, 0.26513672, -2.7519531, -0.41870117, -0.5444336, -1.0126953, 0.51220703, -0.62597656, -1.5820312, -0.70458984, 0.59765625, -0.39208984, -2.7460938, 1, -0.69628906, -0.35473633, -1.1894531, -3.0019531, -2.4042969, -0.8105469, -0.044311523, 1.4863281, -1.4619141, -1.1240234, -0.48608398, 0.89941406, -1.1826172, -0.80126953, 2.6269531, 1.2871094, 2.0136719, 0.39892578, 0.33569336, 0.3166504, 1.8505859, -2.2460938, -1.9169922, -0.66259766, 0.12176514, 1.1523438, 1.4863281, 1.9316406, 1.0351562, 0.72216797, 1.2177734, 0.28442383, 1.3837891, 2.9335938, 0.98095703, 1.2822266, -0.94873047, -0.5234375, -0.1295166, 1.5527344, -2.3398438, 0.07757568, -0.93896484, 1.5175781, -0.011116028, -1.4941406, 0.79248047, -0.57666016, 1.2304688, 0.019638062, -1.4824219, -0.98828125, 2.1796875, 2.5253906, -0.9135742, 1.9228516, 1.9960938, -0.55078125, 0.12420654, -0.5683594, 0.76953125, -0.9296875, -0.54589844, 2.2480469, 1.1953125, -0.3413086, 0.6435547, -3.3183594, -0.005443573, 1.1054688, -1.5878906, 0.25708008, -0.058746338, 1.7011719, 0.38232422, -0.5996094, -1.7900391, 1.0820312, 0.6845703, 0.88671875, -0.6254883, -0.49316406, 1.4951172, 1.6376953, -0.30786133, 1.4726562, 1.0097656, 1.7792969, 1.2861328, -0.19824219, 1.9638672, -2.7382812, 0.9916992, 0.19213867, 2.3203125, 0.32666016, -2.6015625, 0.7705078, 1.828125, -0.63916016, -0.61083984, 2.5449219, 3.3691406, 1.2216797, 3.828125, 0.028396606, -0.39135742, 0.57470703, -2.5234375, 0.7133789, -0.7998047, 0.79833984, 0.09906006, -1.6533203, -0.9614258, -0.5151367, 1.2724609, 0.8413086, 1.2373047, -0.9506836, -1.3349609, -0.67822266, -1.2880859, -0.6816406, 4.5234375, -2.3847656, 0.042510986, 2.2617188, 0.53808594, 1.8525391, -0.08642578, -1.8291016, 1.6376953, 0.19628906, -1.4658203, 0.72998047, 0.82666016, 0.109558105, 0.20446777, -1.9121094, 2.2519531, -0.5683594, 0.19885254, 0.6645508, -1.4355469, -0.70947266, 0.2133789, -0.4206543, 1.640625, -2.0351562, -1.2285156, 2.0703125, 1.4599609, -0.5605469, -0.32128906, 1.734375, -1.1191406, -1.3154297, 0.20812988, 2.4589844, -0.9243164, -4.0742188, -0.13146973, -0.265625, -1.0351562, 1.9960938, -1.5507812, 0.7988281, 0.12780762, 2.1738281, 2.1132812, -0.65478516, -0.8383789, 0.85498047, 1.0205078, -3.5039062, 1.7802734, -2.3613281, -0.59375, -2.6679688, 0.10699463, -1.3916016, -2.8828125, 1.5, -1.9492188, 3.2519531, 1.3085938, 1.9443359, -0.84814453, -1.6455078, -0.28833008, -1.6748047, -1.5976562, -0.86816406, 1.6972656, -1.2099609, -0.12420654, -4.6914062, -0.36206055, -2.1386719, -0.6274414, -0.46801758, -1.9853516, -1.0722656, -0.5, -0.8847656, -0.32421875, -0.021575928, 2.2832031, -0.07922363, -0.8696289, -0.3486328, -0.15722656, -1.375, -0.7783203, -0.7836914, 1.3632812, -1.5615234, 0.5102539, 0.41137695, -1.8652344, 3.1933594, -1.5361328, -3.5371094, 0.44262695, 2.6933594, 1.3916016, 2.1269531, -1.3134766, -1.5224609, -2.0859375, -0.08239746, 2.8085938, 2.8105469, 1.5068359, 1.1162109, -0.21899414, 0.66748047, -0.97314453, 0.61083984, -0.44702148, 1.0458984, 2.4199219, -1.9355469, 0.48510742, 2.3730469, 3.3613281, -3.5742188, -1.1953125, 0.86083984, -1.9677734, 3.3847656, 2.6015625, -3.171875, -0.5102539, 0.3840332, 2.5957031, -0.80029297, 1.9599609, 0.78125, 0.8803711, 2.1015625, 0.4465332, 0.26635742, 1.6923828, 1.0009766, -1.4990234, 0.35742188, 1.0712891, -1.9443359, -0.48291016, 0.45825195, -1.9550781, 0.35986328, 2.6582031, -0.50683594, 2.3203125, 1.0859375, -1.0800781, -1.1230469, -2.1484375, 0.5317383, 0.82177734, 0.52246094, 0.13293457, -0.46948242, -1.6621094, 0.23400879, -2.3710938, 1.7900391, -0.78564453, -1.484375, 1.4082031, -2.4394531, -1.1230469, -2.7734375, 3.6347656, -1.2158203, -0.046081543, -0.18115234, 1.6689453, -0.8466797, -2.078125, -1.1582031, -1.3964844, -2.1074219, 3.1972656, 3.7734375, -2.9140625, -0.5522461, -1.9511719, 2.875, 1.9296875, -0.62890625, -0.5991211, -2.1035156, 1.5917969, -2.3769531, -0.57910156, 0.9560547, 2.15625, -2.9980469, -0.064819336, -0.9272461, 1.8232422, 1.1474609, -0.7910156, -0.39208984, 0.5126953, -2.4941406, 1.6533203, 0.39160156, 3.1484375, -0.17468262, 1.7890625, 0.7949219, -0.77783203, 1.2402344, 0.3112793, -2.2460938, -0.96777344, -0.14904785, -0.43725586, 4.40625, 0.93603516, 1.5507812, 1.1992188, -0.02468872, -4.0078125, -1.3330078, -2.8828125, 0.51953125, -2.8164062, -2.0546875, 0.8828125, 1.5273438, -2.2871094, -1.7929688, -0.004371643, -2.6796875, 0.21472168, -0.95166016, 0.24731445, 0.92822266, -0.0014982224, -0.32373047, 0.40234375, 0.57958984, 0.5756836, -0.6333008, -0.94970703, -2.7421875, 2.5664062, 0.66503906, 0.50390625, 0.84277344, 2.3027344, 1.0722656, -1.4658203, -0.17773438, -1.7392578, 0.3798828, -1.4804688, -4.21875, -0.046173096, -0.34423828, 1.0791016, -0.6425781, 0.092041016, 2.4199219, 0.7470703, 0.50390625, -0.1430664, 0.9194336, 1.5253906, -2.09375, -2.0429688, 2.8984375, -0.7729492, 0.48510742, 0.29125977, -0.33203125, 1.4648438, -0.8183594, -0.50634766, -3.0136719, 1.2070312, 0.6269531, 1.8808594, -5.4804688, 1.8007812, 1.71875, 2.8554688, 1.2646484, -0.072631836, -1.6083984, 1.3447266, 1.5302734, 1.2919922, -1.1962891, 0.10626221, 0.11779785, -0.47216797, 0.21142578, -2.3046875, -1.4277344, -0.35375977, -1.5888672, -0.19104004, -0.5957031, 0.87841797, -1.4492188, -0.8408203, 0.5551758, -1.2119141, 3.2246094, -2.375, 0.91015625, -0.10211182, -0.5605469, -2.1738281, 3.3066406, 1.1152344, -0.45263672, 1.4794922, -1.8544922, -0.07507324, 0.21887207, 1.7460938, 0.9296875, 0.45581055, -1.1484375, -1.6210938, 0.8520508, 0.8935547, 0.16638184, -1.8847656, 1.7011719, 3.0253906, 0.9345703, 0.080322266, 2.3671875, -0.40112305, 1.6875, 1.6523438, -1.5761719, -1.1259766, -0.05130005, 1.2666016, 3.4785156, -1.3916016, -4.4726562, 1.8466797, 1.0341797, -0.55029297, 1.6279297, -0.70214844, -1.5371094, -0.27783203, -4.3085938, -1.4667969, -0.4946289, 0.7832031, 0.2939453, -0.64404297, 0.99902344, -0.019989014, 0.38208008, 4.0976562, 0.8017578, -1.4414062, 0.39868164, 1.3417969, -1.6201172, -3.609375, -1.9619141, -3.3007812, -0.5625, -0.6279297, 1.2880859, 0.27514648, 1.6152344, 2.6796875, -2.5117188, -0.9291992, -1.0429688, 0.09790039, -2.1738281, -0.97753906, 2.2832031, -0.14733887, -1.0917969, -0.24121094, 0.84277344, -0.24890137, 2.4667969, 1.8486328, -1.2285156, -0.21325684, 0.91015625, -3.2070312, -4.6953125, -0.69189453, 1.2919922, -0.08331299, 0.70458984, -0.79248047, -1.2011719, 1.375, -2.4628906, 0.3100586, -2.3085938, 1.0400391, -0.40820312, -1.2324219, 0.03756714, -0.3503418, -0.2322998, 0.56396484, -1.1015625, -0.7680664, -2.3007812, -3.7773438, -3.2382812, 1.4248047, -0.5644531, -0.03878784, 0.32983398, -0.087524414, 1.9443359, 0.6279297, 2.1328125, -0.38623047, 1.5458984, -1.5595703, 1, 2.8203125, 0.34765625, -1.5673828, 3.3984375, -0.06896973, 1.6904297, 1.8330078, 2.0449219, -2.6113281, 0.67529297, 0.5527344, -0.21032715, -0.1796875, 1.1357422, 1.8652344, 0.06762695, 2.1289062, 1.3427734, -1.296875, -2.1640625, -1.3789062, -0.79052734, -1.3310547, -1.5712891, -1.0380859, -0.8154297, 0.9033203, 2.3671875, 0.5019531, 0.9003906, 0.26220703, 1.140625, -1.8808594, 0.39501953, -2.5683594, 0.52783203, 1.2167969, -1.6962891, -1.6611328, -2.3320312, 3.3125, -0.5878906, -0.04849243, 0.2668457, 0.06994629, -0.2932129, 1.6806641, 0.61083984, 0.640625, 0.034576416, 2.3789062, -1.2216797, 1.0322266, 2.9023438, 0.29956055, -0.011566162, -0.88964844, -0.2541504, -0.3708496, 0.040161133, 2.6914062, -2.8417969, -0.4819336, 1.1015625, -1.1494141, -0.6010742, -0.62353516, -0.26635742, -2.5019531, -0.17663574, -1.71875, -1.4853516, -4.4101562, 2.265625, -0.8251953, -1.0761719, 1.0224609, 0.51171875, -2.3984375, -0.35839844, 2.4199219, -0.46484375, -0.94433594, -0.5800781, -1.4150391, -0.6479492, 2.2128906, -3.1230469, 0.18383789, -2.3242188, 1.2255859, -0.8432617, 0.039794922, 0.4020996, 0.8408203, 2.9628906, 2.5117188, 4.3867188, 0.0104599, 1.7822266, 0.51660156, 1.7236328, 2.4355469, -1.9462891, -0.59033203, 0.30932617, 2.2304688, 3.2089844, -1.8740234, -0.7216797, 0.23876953, -0.40649414, -1.5878906, 0.9628906, 0.9926758, -3.9785156, -0.23083496, -0.26831055, -0.50683594, 1.5966797, 0.79833984, -1.5996094, -2.5429688, -0.30688477, -0.8178711, 2.9667969, -1.359375, -0.46948242, 0.82373047, 0.006164551, 1.7138672, 0.26904297, 0.22558594, -2.2675781, -1.4609375, -0.18981934, 0.4243164, 0.15039062, 0.93896484, -0.12939453, 1.1904297, -0.5131836, 1.4238281, -1.0009766, -1.2939453, 2.3066406, -1.1894531, 2.1269531, 2.3359375, -2.2265625, -0.3395996, 1.328125, 0.57666016, -2.9550781, -0.9194336, 1.0019531, 0.39941406, 0.69189453, -3.8632812, -0.117370605, -0.80371094, 1.4150391, -3.0976562, -0.28173828, -0.27416992, -4.2773438, 1.5234375, 2.0976562, -1.0048828, 3.875, 1.2041016, -0.66503906, 0.859375, 0.48608398, 0.9160156, 1.2597656, -0.06414795, 0.4116211, 1.0771484, -0.86572266, 3.3691406, 1.9853516, -0.32373047, 0.80566406, 2.1425781, 0.76953125, 0.7055664, 1.0947266, -2.0253906, 3.1523438, 0.84033203, -0.7705078, 0.3869629, -2.28125, 1.6396484, -0.68359375, 0.26538086, 0.62939453, 0.39624023, -0.25854492, 1.1210938, -3.0625, 0.039855957, 0.066711426, -0.39282227, 2.3710938, 0.5878906, -0.8847656, -1.2822266, 0.3232422, 1.7099609, -2.1484375, -0.041748047, -1.4794922, 1.3505859, -0.20666504, -1.7763672, -0.8330078, 1.2705078, -0.8901367, -0.34399414, 0.2841797, -0.16357422, -0.6557617, -0.5488281, -0.5932617, 0.5415039, 0.5078125, 0.9345703, -0.98291016, -0.9863281, -0.105895996, 0.2133789, 0.2944336, -0.3317871, 0.3076172, 1.5009766, 1.6191406, 0.47705078, 1.7480469, -2.6054688, -1.2763672, -3.8710938, 3.0058594, 1.2626953, -1.2978516, 0.20336914, 1.5771484, 2.2539062, -1.578125, -1.2880859, -0.25024414, 0.19421387, 1.2441406, -1.9316406, 0.26464844, -0.15576172, -0.953125, 1.4716797, 3.7167969, 3.4238281, -0.5878906, 0.2939453, 1.0449219, -2.2460938, -2.1972656, -1.6308594, -0.19506836, -1.6835938, 0.88134766, 2.8027344, 4.1132812, 0.7734375, -1.4755859, -3.3339844, -0.39990234]}, "B00008ZA0C": {"id": "B00008ZA0C", "original": "Brand: BernzOmatic\nName: BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head\nDescription: \nFeatures: Manual start (light with a Bernzomatic Spark Lighter, sold separately)\nBasic pencil flame for small diameter soldering, thawing, melting and heat application\nUse only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder\nBrass construction for durability\nFlame control valve easily sizes flame and extinguishes when finished\n", "embedding": [0.43554688, 1.4365234, 0.04888916, -0.7519531, 0.34423828, -1.6015625, -0.27612305, 0.05429077, 0.14465332, 0.34301758, 0.79052734, -0.6723633, -0.7001953, -3.3417969, -0.8911133, 0.22741699, -0.72216797, 0.01789856, 1.9541016, 0.3388672, -0.33447266, 0.34472656, 2.0742188, -2.7539062, 0.7373047, 1.3837891, 5.375, -0.9682617, 0.47558594, -3.2226562, 0.46533203, -1.2509766, -1.1035156, -0.29370117, -1.6699219, 0.39208984, 1.7949219, 0.48364258, -3.4433594, -2.3046875, -1.5703125, 1.7871094, 0.8798828, 0.79052734, -1.2949219, 0.9135742, -2.2226562, 0.33520508, -0.5053711, -0.5307617, 1.875, 2.2128906, -1.109375, -0.8300781, 1.21875, -0.27514648, 0.27563477, -3.2480469, -0.28710938, -0.23474121, 2.0292969, 0.08874512, -2.1660156, 1.3740234, 1.3173828, 1.6083984, -1.5419922, -1.3115234, 0.5864258, 1.4365234, 1.7998047, 2.3417969, 2.0410156, -0.21166992, 0.7553711, -0.63671875, -1.6132812, 2.1289062, 1.0761719, -0.33862305, 1.078125, 0.6088867, -0.2319336, -1.3515625, -0.3244629, -1.1337891, -1.9931641, 1.0039062, 2.6777344, 0.62158203, -0.6796875, 0.75683594, 1.2246094, -3.5761719, 2.7636719, -0.58984375, -0.03277588, -0.9082031, 0.35083008, 0.8666992, 0.45922852, -0.001405716, -1.1025391, 0.3466797, -1.3974609, 0.47851562, 0.48291016, 1.921875, -0.29345703, -0.6953125, -1.890625, -0.3701172, 2.0371094, 1.09375, -2.5820312, -0.09429932, -0.6088867, -0.73876953, 2.1054688, 0.66796875, 2.3632812, -2.4042969, -0.9428711, -1.6289062, 0.8178711, 0.6855469, -0.16333008, -0.37451172, 2.3984375, 1.1367188, 1.5351562, -1.6025391, 3.8613281, -0.44140625, -0.9995117, -2.5742188, -1.8076172, -1.5273438, -2.1601562, -1.9003906, -3.1367188, 1.6279297, -1.1210938, -2.1015625, -3.3691406, 0.02180481, 1.0527344, 0.29614258, 0.7480469, -0.9394531, 0.6772461, -1.9267578, -2.1738281, -0.92041016, 1.0976562, 2.3027344, -1.6835938, -1.0302734, 3.5175781, -0.05697632, 1.1962891, 1.4638672, -0.58740234, 2.0664062, -2.9238281, -1.0107422, 0.92041016, 0.53515625, -1.2539062, 2.4746094, -0.04107666, -0.52734375, -1.6162109, 0.30151367, -1.1523438, -1.0214844, 0.5385742, 2.6191406, 2.6484375, 0.6791992, -1.0185547, -1.1699219, 2.0625, -2.7441406, 2.4648438, -1.0654297, -0.39086914, -1.046875, 0.6855469, -1.6689453, 0.53027344, 2.3300781, 0.69140625, -0.033843994, -0.36279297, -1.7060547, 0.09741211, -1.5058594, 1.2607422, 1.2324219, -1.7128906, -1.0507812, -0.5239258, 1.7861328, -1.5566406, -0.9584961, 0.13439941, 0.1932373, 3.1621094, 0.14086914, 0.3083496, -1.0800781, 3.0722656, -0.3334961, 1.3486328, -2.0898438, 0.71191406, -1.0546875, 1.8447266, 1.3359375, 1.3867188, -3.7226562, -0.7758789, 1.8261719, 1.8583984, 1.9648438, -0.66748047, -1.671875, -1.421875, -1.1523438, 0.37182617, 2.3125, -1.7041016, -0.43481445, 0.42285156, 0.93310547, -0.79296875, -1.5341797, 2.4414062, -1.7568359, -1.1552734, -0.44873047, 0.6977539, -1.5322266, 2.4628906, 0.43286133, -0.6166992, 0.80566406, 0.5449219, -0.7182617, 1.8632812, -0.15136719, 1.9091797, 0.42822266, -1.2597656, -0.6489258, 0.44384766, -0.74658203, 1.8691406, -1.4140625, 3.3203125, 2.4296875, -1.0439453, -1.0957031, 1.6738281, -1.2089844, 0.027130127, 0.30908203, 0.5258789, -0.9277344, 1.015625, 1.8046875, 1.3066406, -0.43774414, 2.3320312, 2.6425781, -1.1503906, 2.6230469, 1.5507812, 1.3115234, -0.37426758, -0.71972656, 1.8486328, -3.4296875, 0.5180664, -0.068603516, -0.14807129, -1.6523438, -2.7089844, 1.4169922, 4.6171875, -1.0332031, -1.1513672, 2.6699219, -0.36254883, 1.8847656, 0.6665039, -0.40771484, -0.15820312, -4.8632812, 2.2089844, 1.1542969, 0.89453125, -0.0725708, -0.08758545, -0.13195801, 0.32958984, -0.9501953, 1.2519531, 0.07159424, -0.13134766, 0.8330078, -1.140625, 1.8476562, -3.0253906, -0.45043945, -1.0429688, -3.59375, 1.5283203, 0.25341797, 3.0117188, 3.3457031, 2.0722656, -1.3613281, 0.49926758, 0.112976074, -1.8457031, 2.3027344, 2.6738281, -0.41381836, -2.1445312, -0.94433594, 0.5126953, -2.6191406, -0.83447266, 0.6401367, 0.26538086, -4.6679688, 0.6411133, -3.6308594, -0.7290039, 3.7109375, -1.8828125, 2.1855469, -1.6826172, -2.4765625, -1.6591797, 1.0400391, -0.9536133, -1.6513672, -0.8696289, 3.1113281, -0.68310547, -3.4023438, -1.8632812, -0.8466797, -0.77734375, 2.0820312, -1.9404297, 1.2695312, -0.56591797, -0.5, -0.68115234, 1.8466797, 0.515625, -2.8828125, 2.6425781, -2.9746094, 0.32958984, -0.80810547, 4.6875, -1.7207031, 0.66748047, -1.6533203, 0.18713379, -0.44213867, -0.36547852, 1.5703125, -0.38867188, 1.1191406, 0.7416992, -1.8974609, 1.2802734, -1.0439453, -3.8066406, 1.2617188, 0.59033203, -0.5019531, -0.90283203, -2.4609375, 0.26098633, 0.22546387, -0.9941406, 0.62109375, -2.0566406, -1.5683594, 0.5126953, -1.5703125, 0.87890625, 1.2324219, -2.421875, -0.16918945, -2.3476562, -0.8261719, -0.13061523, -0.8769531, 0.31201172, -0.85546875, 0.5908203, 0.53515625, -0.00058603287, -0.5991211, 1.6826172, -0.12524414, 1.1914062, -3.3046875, -0.38549805, -0.53564453, -0.38964844, -0.024017334, -0.98046875, 1.2675781, -0.109313965, -0.011314392, 2.8964844, 0.123046875, 1.8886719, -0.30444336, 0.15600586, -0.16809082, -0.6894531, -2.0898438, -2.2910156, 0.35253906, -0.64501953, -2.9082031, -0.5800781, 1.2099609, 0.6381836, -1.7802734, -0.37597656, 2.0761719, -1.7050781, 2.7089844, 1.0546875, -1.0712891, -0.1538086, -1.3232422, -2.3183594, 1.34375, -1.78125, 2.5429688, 1.5458984, 0.72265625, 1.6210938, 0.13769531, 0.39038086, -0.19396973, 0.53759766, 1.9169922, 1.1601562, 0.11071777, 0.22827148, -1.3740234, 1.5, 1.2431641, 1.9072266, -0.5415039, 0.84277344, 0.11553955, 0.80371094, 2.046875, -2.1230469, -1.5576172, 1.0458984, -0.27954102, -0.29516602, 0.014221191, 1.3095703, -1.3066406, -0.6152344, 0.51123047, 0.20166016, 0.33984375, 0.8095703, -1.2792969, 2.5351562, -1.9960938, -0.3347168, -0.89746094, -1.515625, -0.8779297, -0.6430664, -0.74658203, -2.5820312, -1.1035156, -0.79003906, 0.11138916, 3.3652344, -0.9970703, -1.4248047, -0.23571777, 0.5522461, -2.4472656, -1.2773438, -2.609375, 0.24975586, -2.4589844, -0.45336914, 0.93847656, 0.45043945, -1.2236328, 0.0037879944, -0.17407227, 1.8164062, -1.3212891, 1.2802734, -0.9555664, -0.91552734, -0.5078125, 1.984375, -0.92333984, -1.3427734, 0.23217773, 1.3183594, -1.0859375, -2.3144531, 1.0673828, -0.86376953, -2.3242188, -2.2363281, -1.7050781, 1.7001953, 0.6269531, 0.24841309, 0.83496094, -0.38012695, 0.6933594, 0.27539062, 2.6777344, -0.53466797, -0.6147461, 0.2890625, 3.3027344, -0.7192383, -2.4316406, 1.6367188, -0.07092285, -2.6113281, 0.43432617, -1.0185547, -0.6591797, -0.6088867, 2.515625, -0.24377441, 0.3022461, 1.3769531, 0.83203125, 0.4946289, -1.8613281, 1.2363281, -0.8886719, -0.9057617, -2.015625, 0.51220703, 1.0009766, 0.29589844, 1.0322266, 0.6386719, 3.5703125, -0.6123047, -0.99072266, 0.4658203, 2.9941406, -0.0010957718, -1.5039062, 0.018814087, -1.5068359, 0.9707031, -1.265625, 2.03125, -0.2298584, -2.2167969, 1.2695312, 0.57177734, 0.00819397, 1.8632812, 1.4433594, -1.8300781, 0.89501953, -0.19934082, -3.3710938, 0.25561523, 2.4980469, 0.578125, 0.33520508, 0.78027344, 0.15356445, 1.3496094, -0.096069336, -1.5751953, -1.0283203, -0.30371094, 3.0429688, -1.0810547, 0.96972656, -1.6416016, -2.2128906, -0.08892822, 1.71875, 0.22607422, 0.16821289, 0.5654297, 0.71777344, 0.8574219, 1.9804688, 0.34448242, 0.50146484, 2.0722656, -1.9189453, 0.030059814, 0.32958984, -0.52490234, -3.1777344, -0.16687012, 0.5317383, -0.55078125, 0.06744385, -1.6035156, -0.94873047, 0.48779297, 1.0292969, 1.1269531, 0.3935547, 0.5859375, 0.5830078, 0.8569336, 0.9140625, 2.2519531, -0.69384766, 0.61572266, 1.9355469, 0.014968872, -0.024734497, 0.81347656, 0.78222656, -0.73535156, -1.1328125, 0.30371094, 1.0439453, 0.5756836, 0.8955078, 2.0019531, -0.018417358, -0.65478516, -0.22131348, 1.3271484, -2.0996094, 0.6738281, -2.7753906, -1.5195312, 2.8105469, 0.89208984, -1.7431641, 0.34423828, 1.6611328, -0.35668945, 0.9169922, -0.08929443, 1.1591797, -1.7060547, -1.2470703, -3.1699219, -3.2910156, 3.0429688, 0.32128906, 0.42651367, -0.44702148, -0.0022335052, 1.6113281, 1.7265625, 0.87841797, -0.1706543, 0.7495117, 1.1826172, -0.27026367, 1.015625, 0.33276367, 1.6308594, 1.8916016, -0.34399414, 0.9814453, 1.9599609, 0.14880371, 3.1464844, -1.15625, -0.5571289, -1.1503906, 0.41748047, -0.8442383, 0.5307617, 2.8144531, -0.28466797, 0.99072266, -0.5019531, -0.7988281, -0.9770508, 1.4355469, 0.0013799667, -0.47875977, -3, -1.2685547, -2.9238281, -4.3710938, -1.8935547, -1.1962891, 0.0637207, 1.5, 1.2148438, -0.3491211, -0.33203125, -1.8574219, -0.017242432, 0.9404297, 1.0175781, -2.6328125, -0.7265625, 0.3125, -0.51708984, 1.21875, 0.036621094, -1.4833984, -0.16601562, 2.9882812, 0.49291992, -5.3046875, 3.7148438, -1.2460938, 0.40429688, -0.19177246, -0.3388672, 0.5493164, 3.4765625, 0.54589844, -0.9863281, 0.65771484, -0.48754883, 0.28833008, -0.3383789, -2.9960938, -1.0986328, 2.0527344, 1.5615234, -0.59716797, 4.2148438, -0.017929077, -3.8203125, 0.00982666, 0.018722534, -0.90771484, -0.3479004, -0.6972656, 1.6376953, 0.03237915, 0.9609375, 2.1777344, 0.6894531, -2.1914062, -0.94433594, 1.5019531, -1.2177734, -0.80859375, 1.8925781, -0.90185547, 0.89208984, -0.46557617, 0.80371094, 1.2617188, 0.26391602, -1, -0.2980957, 1.9433594, 0.24865723, 2.8710938, -1.1806641, -1.7441406, -2.6523438, -2.265625, 4.1601562, 1.7841797, -1.3447266, -1.0488281, 1.3925781, -0.69628906, -1.5927734, -0.25927734, 0.37475586, -0.6142578, 0.15014648, -1.09375, -0.09295654, 0.007972717, -3.265625, 0.33984375, 1.6855469, 0.74072266, -0.7944336, 1.9775391, 0.5361328, -1.8886719, -0.37524414, -2.8378906, -1.0136719, -0.68310547, 0.4951172, -1.4482422, -1.4804688, 0.6411133, 2.4980469, 0.7836914, -1.3076172, -2.0195312, 1.8955078, 0.51171875, 1.1425781, 3.2734375, -3.1933594, -0.47680664, 2.3828125, -0.2692871, -3.171875, -2.0078125, 0.17016602, 1.2460938, 2.2519531, -2.5234375, 2.2265625, 1.1933594, 2.3515625, -1.7197266, 0.7084961, 0.44262695, 1.0839844, 0.41748047, 4.203125, -0.25097656, 1.3691406, 1.6289062, -1.1191406, -0.56347656, 0.7246094, 0.21789551, 2.9316406, 2.0605469, 0.42260742, 0.10455322, -0.42041016, -2.1367188, 0.19433594, -0.33154297, -2.3515625, 1.1455078, 1.6171875, -2.2636719, 1.5283203, -2.2617188, -0.42016602, -1.3271484, 0.32983398, -1.5732422, 0.5932617, -0.27807617, 1.390625, 1.8779297, 1.4804688, -0.9296875, 0.09552002, 0.72216797, 0.8652344, -3.2089844, -0.3388672, -0.90283203, -0.72558594, -0.17797852, 2.5410156, 0.93896484, 0.61035156, 1.1416016, 2.6699219, 0.41259766, 0.4128418, 1.8330078, -1.2333984, 0.23876953, 2.2910156, 1.5947266, -0.8378906, -0.87060547, -1.4804688, 0.5004883, -0.09375, -1.2666016, 4.5664062, 0.26391602, 1.1386719, 0.77490234, -0.40161133, -0.82177734, -2.6660156, 0.72509766, 0.019241333, 0.8491211, 2.0039062, -2.5976562, -0.072143555, -0.2709961, 1.0693359, 2.9316406, -1.5234375, -1.859375, -0.38745117, -0.32592773, 1.0351562, -2.2421875, 0.49853516, 1.2460938, 0.15075684, -3.9023438, 4.2734375, -1.6630859, -1.1191406, -0.515625, 3.5507812, 0.6640625, 1.6503906, 0.7578125, -0.16992188, 1.0224609, -1.6835938, 0.69677734, 2.6328125, 1.9628906, -2.8007812, -0.051696777, -0.17138672, 1.0800781, -0.39013672, 0.40698242, 0.5209961, -1.8388672, -0.7685547, 2.4589844, -2.1074219, -0.25146484, 2.4492188, -1.1699219, -2.7363281, 1.0615234, 1.7480469, -1.6337891, -1.8857422, 0.8227539, 2.9238281, 0.49829102, -0.3310547, 1.03125, -1.9365234, 0.54003906, 2.5742188, -0.39086914, -0.9042969, -2.390625, 0.22497559, -0.76904297, -2.4042969, 1.5126953, -0.0052871704, 0.5283203, 1.21875, -2.8574219, -1.0361328, -0.94384766, 0.3491211, 2.1972656, 2.4277344, -1.9296875, 0.49609375, 1.0654297, -4.1484375, 0.43066406, -0.37548828, 0.05722046, 0.77441406, -1, 0.32861328, 0.4104004, 3.3730469, -2.890625, -0.25317383, 1.2285156, 0.53027344, 1.9736328, -0.40283203, 3.53125, -1.2275391, -0.2956543, 0.81640625, 3.0605469, -0.84033203, 0.9506836, -0.44506836, 0.12731934, 1.7363281, -1.0664062, -1.6816406, -1.6621094, -0.015167236, 0.043151855, 0.56884766, -1.03125, -0.33007812, 0.15661621, -2.3242188, -1.5791016]}, "B00FWKVGQ0": {"id": "B00FWKVGQ0", "original": "Brand: Outland Living\nName: Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU\nDescription: \nFeatures: PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio.\nNO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24\u201d x W 24\u201d x H 13\u201d with total output of 58,000 BTU/HR.\nBEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option.\nCOMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately.\nSIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual\n", "embedding": [0.16638184, 0.99902344, 1.2734375, -0.09185791, 0.85791016, 1.1074219, 1.6757812, -1.1425781, -2.265625, 2.5019531, -0.7416992, 0.32788086, -1.1328125, -3.3066406, -0.14660645, 0.05065918, -0.32617188, 0.97216797, 0.7871094, -0.46850586, 2.6425781, -0.49902344, 1.6640625, -1.0556641, 1.3759766, -0.29223633, 3.0644531, -3.3203125, -1.7832031, 0.82910156, 1.5429688, 1.5546875, 0.39672852, 1.4453125, -2.7011719, -0.47924805, -2.65625, 0.78759766, -3.4824219, 0.21411133, -1.9814453, -2.1074219, 2.5175781, 0.50634766, -2.1933594, -1.0507812, 1.7148438, -0.21276855, -0.14111328, -0.95166016, 0.44458008, 1.0195312, -0.34057617, 0.7939453, -2.9121094, 2.5546875, -0.19128418, -0.58496094, 2.078125, 1.9091797, 0.13916016, -0.48632812, -0.59033203, 1.3789062, -1.7714844, 0.6015625, 0.18432617, -1.0263672, -0.054656982, -0.06878662, 1.8867188, 0.8076172, 0.36987305, 0.18676758, 0.3840332, -0.5991211, -3.8671875, 1.1865234, 2.9433594, -0.19665527, 0.37573242, 3.7128906, 0.6767578, 0.31152344, -0.13513184, -0.94140625, -3.3964844, -0.86621094, 0.18225098, 1.4824219, -0.08428955, 2.1953125, -1.5263672, -4.2539062, 2.7929688, -0.6352539, 0.018722534, 1.5859375, 0.36206055, 0.38330078, 0.70654297, 2.2421875, -0.9506836, -0.63134766, -2.4140625, -0.47607422, 0.6069336, 1.3232422, -0.39038086, 1.6230469, -1.6367188, -0.29638672, 2.2011719, 0.60546875, -0.49145508, 0.7451172, -1.0986328, -0.22619629, 4.890625, 0.1239624, 4.2929688, -0.17150879, 0.8623047, 0.36669922, 0.61279297, -0.07574463, -1.5878906, -0.024047852, 1.0644531, -0.3876953, 0.0925293, -1.2392578, 1.4121094, -0.4428711, -3.3730469, -1.3769531, -1.7958984, -1.5390625, -1.7832031, -0.7470703, -1.046875, 0.30273438, 1.9179688, -0.12915039, -4.8359375, -1.4111328, -2.0175781, 2.140625, 0.16442871, -4.4648438, 0.8779297, -1.5214844, -0.018005371, -1.9179688, 1.3544922, -0.16955566, 0.9526367, -3.6933594, 3.2441406, 0.26733398, 0.5097656, -1.2792969, -0.8613281, 0.7236328, -2.8945312, -2.4609375, 1.2714844, -0.31689453, -0.24633789, 1.2880859, -0.097229004, -1.3134766, -0.23388672, 0.28271484, 0.6376953, -1.0185547, -0.34423828, -0.055023193, 2.515625, -0.095825195, -3.0507812, -0.53515625, -0.81591797, 1.6503906, 0.7949219, -0.80029297, -1.1933594, -1.9345703, -0.05606079, -1.0185547, -1.5087891, 1.5283203, -2.0117188, -0.6542969, -1.1523438, -3.4863281, -1.7441406, -2.9453125, 2.3671875, 0.7294922, 0.38916016, 1.0761719, -1.6640625, 1.2177734, -2.5136719, -0.4597168, -0.5864258, 0.91845703, 3.34375, 3.4980469, 0.20166016, -0.5805664, 1.9160156, 0.9609375, -0.7993164, -0.1796875, 1.5068359, 0.8618164, 2.4121094, 3.0253906, 1.6435547, 0.98291016, 2.7929688, 3.3808594, 0.05429077, 0.5678711, 1.0976562, -0.5371094, -3.0117188, -2.2734375, 2.5722656, -0.22631836, -0.6254883, 0.58154297, -0.57421875, 2.2578125, 1.3144531, -1.6416016, 2.6328125, -1.1064453, -1.8291016, -0.9926758, -1.2119141, 1.2558594, 0.1772461, 1.9785156, 0.088134766, 0.50634766, 2.7714844, 0.9921875, -0.90185547, -0.34301758, 1.3115234, 0.3400879, -0.29907227, -0.57666016, -1.0371094, -0.52001953, 0.6870117, -1.5458984, 0.7758789, 0.61035156, -0.46289062, 1.0136719, -0.23742676, -1.1904297, 1.7480469, 0.5576172, -3.0761719, -0.7758789, -1.2949219, 0.21533203, 1.8828125, 1.8994141, 1.8291016, -0.25878906, 0.27783203, 2.0859375, 1.09375, 2.703125, 0.484375, -0.38256836, 0.41064453, -1.3564453, -1.0234375, 1.0166016, 1.3486328, -0.01739502, -1.2353516, 1.0429688, 5.0585938, -0.5078125, -2.4804688, 1.1865234, -0.64208984, 1.2236328, 1.1582031, -1.2617188, 1.3935547, -0.02355957, 1.703125, 0.9526367, 0.10253906, 1.4267578, -0.57128906, -0.29663086, 1.4492188, -3.0683594, 0.095214844, 0.42700195, 0.43310547, -0.061401367, -0.85546875, 0.58984375, -0.099487305, -1.3642578, 3.0957031, -2.6894531, 1.3466797, 3.234375, -0.27612305, 0.56884766, -0.79541016, -1.8056641, 0.73046875, 2.859375, -1.4091797, 1.2216797, 0.77978516, -2.0703125, -0.67871094, -2.8242188, 0.95703125, -1.8056641, -0.0027751923, -1.8466797, 0.055267334, -0.22167969, -0.59228516, -2.859375, 0.09112549, 1.0292969, -1.7460938, 0.24536133, -1.3535156, -1.5175781, -0.6196289, 0.33276367, -1.0058594, 2.1894531, 0.8540039, 2.6582031, -0.36572266, -2.8203125, -0.17834473, -0.037841797, 0.85009766, 1.4716797, -0.13098145, -0.89160156, -1.0742188, 0.58935547, 0.36132812, -1.1083984, 1.5009766, -2.9628906, 0.45092773, -3.6757812, 1.4882812, -1.0771484, 0.7583008, -0.5004883, -0.6821289, -1.0087891, -0.55908203, 1.6152344, -1.7646484, 3.8710938, 0.44702148, 1.3222656, -1.0703125, -1.6357422, -0.7841797, -0.67089844, -3.046875, 0.096069336, 0.08068848, -1.8330078, -1.6621094, -2.2324219, -0.47314453, -2.0761719, -0.5205078, 0.22790527, 0.5644531, -2.328125, -0.20129395, -1.0751953, 0.7895508, -0.58984375, -0.8574219, -0.7763672, 0.16357422, -0.7368164, -0.9892578, -1.3779297, -0.7729492, 0.75927734, 2.0273438, -1.0517578, 0.01322937, 0.8798828, -0.06518555, 0.6948242, 0.3876953, -3.9824219, 0.3864746, 1.9482422, 0.34179688, 1.3583984, -1.9648438, -1.0458984, -1.6083984, 0.4326172, 3.7382812, 0.025787354, -0.34521484, -0.8901367, -1.6542969, 0.8051758, 0.06112671, -0.5805664, 0.3798828, -0.43066406, 3.8671875, -3.6328125, -0.6425781, 0.5673828, 3.8769531, -5.1992188, -0.5551758, 0.97753906, 0.09075928, 2.2871094, 0.10614014, 0.43920898, 1.5175781, 0.20739746, -0.022888184, 0.93359375, 1.2675781, 0.13952637, -0.3630371, 0.52490234, 1.6835938, 0.94628906, 1.2626953, 0.78222656, 0.6660156, 1.2626953, 0.8935547, -1.4560547, 0.46191406, -0.29101562, -0.14953613, -0.38745117, 0.7246094, -0.62402344, -0.32055664, -0.7314453, 0.73535156, 1.3554688, -1.1630859, -0.3696289, 1.4453125, 0.64697266, -0.61035156, -0.28125, 0.29248047, -0.34643555, -0.39892578, 0.9995117, -0.6748047, 0.1463623, 1.2783203, -1.6777344, -0.082092285, -1.1689453, 2.828125, -0.61621094, -1.0517578, -0.28320312, 1.7255859, 0.027893066, -1.8291016, 0.37451172, -3.2636719, -1.5585938, 4.1523438, 0.84228516, -1.3095703, -1.8544922, -0.6459961, 1.7871094, 2.46875, 0.014137268, -0.73339844, 0.025131226, 0.95410156, -0.33862305, 0.7885742, 1.1630859, 1.2509766, -2.5253906, 1.5429688, -1.2871094, 0.61083984, 2.1269531, -2.46875, 0.7182617, 3.5117188, 0.17773438, 1.140625, -0.55078125, 3.2421875, -2.1445312, 0.122924805, 5.0585938, -1.0585938, -1.2421875, -2.640625, -2.9980469, 1.3105469, -4.0664062, -0.66259766, 1.7949219, 0.49316406, -1.0537109, -0.10412598, -0.35107422, -3.609375, -3.6230469, -2.9003906, 1.7714844, -3.25, -1.5244141, -1.0371094, 0.83496094, -3.3769531, -0.29174805, -0.061035156, 1.4482422, 1.015625, -0.8442383, -1.5390625, 1.3740234, -2.1230469, 0.46166992, 0.92822266, 0.7089844, -0.33618164, -0.4741211, 0.14001465, -1.0273438, 0.93603516, -0.06451416, -1.5957031, 2.4707031, 3.4453125, 0.6699219, -1.3105469, 0.9472656, 0.39038086, 3.0488281, -0.35913086, -1.3867188, -3.6816406, -0.6147461, 0.6557617, -0.050231934, -0.67089844, 0.067993164, -2.1757812, 1.9091797, 0.42260742, 1.4931641, 0.6254883, -0.109375, -1.1904297, 1.1484375, -0.09777832, -2.0683594, -1.7890625, -0.90527344, 0.5698242, -1.7148438, -0.43066406, -1.2089844, -0.26513672, -0.30810547, 0.48388672, 0.17675781, 1.4365234, 1.5791016, 2.1289062, 3.8496094, -0.048187256, -1.0927734, 1.2402344, -1.2880859, 0.5097656, 0.9223633, -1.3876953, -0.31884766, 1.7607422, -0.5683594, -1.03125, -1.4365234, 0.53222656, -0.9404297, -0.9863281, -0.60253906, -1.4541016, -1.8222656, -0.85009766, -0.39379883, -1.1337891, 1.8320312, -1.6865234, 0.6801758, 0.80029297, 0.5390625, -1.0908203, 0.23742676, -1.0039062, 1.6005859, 0.31079102, 2.234375, 1.9394531, 0.2836914, 3.2285156, 0.5629883, 2.8339844, -2.2753906, 0.27294922, -0.45776367, -0.68896484, -1.3994141, -1.1972656, 1.3730469, 1.1611328, -0.39111328, 1.7226562, 1.0703125, -0.5727539, 1.5615234, 0.7285156, -2.0683594, -0.7402344, -1.3017578, -0.18835449, 1.4277344, 0.45263672, -2.7539062, -0.58203125, 1.9521484, 0.07891846, 2.0742188, 0.9628906, -1.5898438, -0.8408203, -1.5830078, -1.4960938, 0.10925293, -0.6015625, 0.15258789, -1.2646484, -0.7441406, -1.1152344, 1.0712891, 1.8007812, -0.0059432983, -1.8925781, 1.5742188, -0.008270264, -0.16503906, -0.31567383, 1.2470703, 0.15722656, 0.4411621, 0.33251953, 1.1083984, 1.9248047, -0.63964844, 1.6054688, -1.5322266, -0.7368164, -1.6943359, 3.015625, -1.9648438, -1.3330078, 0.7495117, 1.5683594, 0.37036133, -1.4160156, -0.8154297, -1.8417969, 2.7636719, -0.11444092, 2.0234375, -1.0703125, -1.1894531, -1.9189453, -3.328125, -1.7080078, -0.82470703, -1.6542969, 0.5258789, -0.19396973, -0.47143555, 0.88378906, -0.14794922, -0.12792969, 0.02394104, -0.54589844, -1.1962891, 0.62060547, -1.9882812, 1.0283203, 0.84716797, 1.5839844, 0.5888672, -0.19714355, -0.49902344, -0.6743164, -0.52490234, 2.15625, -1.890625, 1.1435547, 1.3828125, 0.51220703, 1.9882812, 2.8554688, 0.8442383, -0.111083984, 0.82958984, -1.0957031, -0.5, 1.3691406, -2.1035156, 1.3789062, 1.921875, -1.2460938, 1.2929688, -0.8588867, 0.06866455, -0.90478516, 0.6269531, -0.24658203, 0.16772461, -1.2080078, 0.14807129, 0.7104492, 0.117370605, 0.25878906, 2.0449219, 0.14428711, -0.6791992, -0.92822266, -2.4921875, -0.3017578, -3.5039062, -0.6069336, -0.57666016, 1.4179688, 1.6347656, 0.08215332, 2.8261719, 1.5107422, 0.6928711, -1.1914062, 1.0722656, -1.5185547, 3.1894531, 1.8017578, -1.9697266, -2.0703125, -2.90625, 0.7871094, 2.46875, 0.001745224, -1.2929688, -0.72509766, -2.0742188, 0.81689453, -0.42138672, 2.1542969, 2.6542969, 1.6347656, -0.9995117, 0.2836914, 1.3447266, 0.020645142, 2.9628906, 0.53515625, 1.7216797, -0.67285156, 1.8271484, 2.6660156, -0.6923828, 1.5175781, -0.8154297, -0.046081543, -2.3710938, -1.1201172, 1.4619141, -2.7636719, -0.76708984, -0.6635742, 0.6401367, -2.7109375, 1.7324219, 1.8837891, -1.1484375, -0.88378906, -0.022369385, -0.67871094, 1.8085938, 0.9370117, 1.5019531, 0.11846924, -1.0244141, -0.36401367, 0.59521484, 1.0517578, -1.6357422, 0.6171875, 0.9135742, -0.34350586, -0.7607422, 3.5996094, 1.6542969, 2.6992188, 1.8154297, 2.4453125, 2.3496094, -1.1132812, 1.8583984, -0.54589844, 1.4931641, 1.1533203, -1.7480469, -1.3945312, 0.9980469, 2.8613281, 1.0527344, 0.9277344, 1.1660156, -0.07696533, -1.6855469, -0.9111328, -0.2836914, 0.8388672, -4.0664062, 2.5175781, -1.5205078, 0.36523438, -2.7851562, 2.0253906, -1.1630859, -0.109191895, -0.875, -0.7236328, 0.5292969, -0.6533203, -0.9379883, -0.5996094, -0.86621094, -0.6513672, -2.0996094, 0.39746094, 0.3334961, -2.5664062, -1.0517578, 3.5703125, 1.1328125, 1.1376953, 0.04663086, 2.1894531, -0.47509766, 2.5664062, 0.7026367, -0.64404297, 0.033813477, 0.03918457, 1.7519531, 0.9140625, -2.8574219, -0.44799805, -0.07055664, -3.2753906, -4.2929688, 1.6865234, 1.9853516, 1.8564453, 1.2929688, -1.9384766, 0.96240234, -1.3623047, 1.9648438, -4.421875, 0.5761719, 1.3632812, -2.4863281, -2.1015625, -0.30078125, 1.2529297, 2.3242188, 1.578125, -0.14294434, 2.6386719, 0.8208008, 2.0332031, 1.1796875, 1.2177734, -1.3574219, 2.1210938, -2.1269531, 2.2929688, 1.9677734, -0.7602539, -1.9345703, 3.0742188, 0.05795288, 0.6533203, 0.51904297, -1.9609375, 0.73583984, -0.06378174, -1.9121094, -0.37573242, -1.5556641, -3.0136719, -2.0253906, -0.65625, -0.8051758, -0.9213867, 0.7109375, 2.9082031, -0.74853516, -0.3461914, 1.8691406, -0.89160156, 2.0039062, -0.91015625, -1.5126953, -1.4091797, -0.2364502, 1.7519531, -0.11907959, -2.6210938, -0.43652344, 2.0859375, 1.1005859, -0.9111328, -0.034851074, -0.64404297, 1.5644531, 0.53759766, 2.4824219, 0.25585938, -1.6064453, 1.3232422, -0.033996582, -0.22888184, 3.4277344, -0.7416992, -0.024246216, 0.62109375, -2.2578125, -0.6879883, -0.41210938, -0.87646484, 1.2949219, 5.2421875, 1.9658203, -0.54003906, -2.0585938, -4.765625, -2.3222656, -1.5380859, 2.0605469, 0.38745117, 0.65625, 0.5234375, 0.29907227, 2.4492188, -0.77246094, 0.099487305, 0.31298828, -0.30273438, 0.8442383, -0.64160156, 1.8085938, 2.1992188, 2.234375, 0.39282227, 2.3339844, 2.7578125, 0.05355835, 0.5498047, 0.96533203, -0.35327148, -2.7890625, -0.8408203, -1.0625, -0.45239258, 1.2695312, 0.25610352, 0.80029297, -1.3681641, -2.1269531, -4.4023438, -1.3105469]}, "B07GQZ1LGP": {"id": "B07GQZ1LGP", "original": "Brand: Jiesuo\nName: JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers\nDescription: ''JIESUO'' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

          DIMENSIONS
          This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

          HEAVY DUTY MATERIAL
          This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

          WATERPROOF
          The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

          UV RESISTANT
          UV and fade-resistant fabric material prevents damage from the sunlight.

          WIND-RESISTANT
          Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

          GOOD STITCHING, EFFECTIVE PROTECTION
          Superior textile process, 'Precision Two-Thread Stitching' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

          SPECIFICATION
          Material: 100% 600D polyester fabrics
          Product Dimensions: 60\" L x 24\" D x 44\" H
          Package Included:
          1* JIESUO 60 In Gas Grill Cover
          1* Storage Bag

          JIESUO grill cover design concept is to solve past pain points, improve user experience.
          You get what you pay off.
          At last thank you for your purchase.\nFeatures: DIMENSIONS - This grill cover measures 60\"L x 24\" W x 44\" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.)\nUPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills.\nGOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, 'Precision Two-Thread Stitching' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it's sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it.\nConvenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain.\nEasy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.\n", "embedding": [-0.12719727, 2.8828125, 4.2773438, -1.71875, -0.43066406, 0.6015625, 1.0966797, -2.7226562, 1.4873047, 1.7509766, -0.55078125, -2.109375, 1.8037109, -5.2460938, 1.3076172, 1.2138672, 0.67626953, 2.3925781, 1.2734375, -0.17297363, 1.1855469, 0.10638428, 0.4633789, 0.66308594, 1.3193359, -0.5336914, 4.6992188, -4.34375, -1.1015625, -0.87890625, 1.9658203, 0.92626953, 1.1982422, 1.8564453, -2.3144531, -2.4140625, -1.3242188, 1.2460938, 0.09106445, -0.1862793, -0.82666016, -2.7851562, 1.9326172, 0.65478516, -1.0488281, 1.8173828, -2.6289062, -0.2668457, -1.5205078, -2.3320312, 2.2851562, 2.3574219, 2.28125, 1.3974609, -0.93359375, 1.5761719, -0.92333984, -0.9604492, 0.46044922, -0.26757812, 0.49145508, -0.30029297, -0.63964844, 1.8789062, -0.11126709, -2.3925781, 0.5620117, -0.45263672, 1.0205078, 0.50683594, 2.4667969, -1.2001953, -2.0585938, 1.0244141, 1.1669922, -0.96875, -2.1816406, 1.5507812, 1.4560547, -1.0058594, -0.6245117, 4.6757812, 1.3916016, -2.6191406, -0.064086914, 0.5463867, -1.40625, -1.6113281, 1.9277344, -0.12817383, -0.7944336, 1.0957031, -1.2695312, -4.3515625, 0.91503906, -2.2578125, 2.625, -0.0042800903, 0.7988281, 1.0585938, -2.1328125, 0.74316406, -1.7880859, 0.4741211, -3.9648438, -3.1035156, 2.109375, -1.3876953, -0.25732422, -0.26000977, -0.7519531, 0.39575195, -0.6074219, 0.19958496, 2.7675781, 1.1367188, -0.7866211, 2.0175781, 0.060333252, 0.6767578, 3.0683594, 0.20361328, -0.9760742, -2.2050781, 0.024673462, -0.87109375, -0.8564453, 0.35961914, 3.9726562, -2.3398438, 1.3017578, 0.29101562, 0.9785156, 0.8256836, -0.1204834, -0.88671875, -1.5742188, -0.37426758, -2.8085938, 1.7509766, -3.1894531, -0.8276367, 1.7470703, -2.1738281, -1.6962891, 2.0585938, -2.03125, 2.7539062, -0.62890625, -2.1230469, 1.7958984, -0.7338867, -0.47436523, -1.5107422, 1.3476562, -0.13659668, 0.34887695, -1.4833984, 3.1132812, 2.1054688, 2.0507812, -1.4052734, 2.0214844, -0.06817627, 2.4199219, -1.5683594, 0.29516602, 0.7573242, -0.7548828, 2.1640625, -0.52246094, -1.8232422, 0.69189453, 0.7817383, 2.40625, -1.8105469, -0.16357422, 1.9169922, -0.4482422, 1.5517578, -0.48657227, -0.96777344, 0.6308594, 0.58691406, -0.984375, -0.63378906, 0.06951904, -0.4111328, 2.2246094, -0.7416992, -0.08026123, -0.6958008, -0.23168945, -0.5131836, -0.55029297, -0.82373047, -1.3955078, -0.6425781, -1.1464844, -0.8520508, -2.1738281, -2.5214844, -0.45751953, 0.3515625, -2.5820312, -2.7773438, -2.7480469, 0.037506104, 0.68896484, 0.59375, 0.57958984, -1.7578125, 1.7695312, 1.7119141, -0.8774414, 0.7167969, 2.5683594, 0.29833984, 1.0205078, 1.3632812, -2.3945312, -0.4345703, 0.5698242, 3.8046875, -0.17858887, 1.890625, 1.8466797, -0.62158203, -2.5449219, -1.453125, 0.96972656, -0.25585938, -0.3149414, -0.19824219, -1.1591797, 1.4179688, 0.9560547, -1.7568359, -0.609375, -0.4699707, -0.87109375, -2.4453125, -4.1992188, -1.2861328, 0.20397949, 1.4101562, -0.4230957, 3.1386719, -0.33520508, -0.7475586, 0.6767578, 0.92089844, 0.5629883, -0.40527344, 0.08850098, 0.26049805, 0.78222656, 0.29077148, -0.78466797, -0.45092773, 0.020523071, -0.11456299, 0.14001465, 1.0527344, -1.2392578, -1.0761719, 0.08898926, 1.6474609, -2.0292969, -3.4335938, 2.1621094, -0.43652344, -0.0793457, -1.9707031, 2.3261719, 0.47998047, -0.11651611, 0.14074707, 1.5849609, 0.5395508, -1.3037109, 0.11627197, 0.8857422, -1.4648438, 1.2392578, -0.6513672, -0.21118164, -1.5634766, -0.91015625, -0.2746582, 4.296875, -0.15393066, -1.1806641, 3.7949219, -1.1855469, -0.99316406, 1.4570312, -0.1665039, -1.0068359, 1.3535156, 0.1315918, 0.8076172, 0.06677246, 0.64160156, -0.20837402, -0.113586426, 0.6459961, -2.7519531, -0.9355469, 3.1542969, 0.040863037, 0.3046875, 0.04397583, 0.7211914, -2.3945312, -1.1708984, 1.1289062, -3.4238281, 0.34399414, -0.6669922, 1.0273438, 1.4736328, -2.9160156, -2.7929688, -1.5361328, -0.3461914, -1.1708984, -0.32885742, 0.4489746, -1.8261719, -1.1132812, -1.5136719, 0.4814453, -2.1875, -0.6401367, -3.5429688, -2.2714844, -2.1933594, -0.057647705, -0.92333984, 0.34521484, -1.1542969, -3.1640625, 0.99072266, 0.96435547, -3.5078125, -0.43188477, 0.14697266, -1.5039062, 1.0009766, -0.39672852, 0.5107422, 0.068603516, -5.1757812, 1.7568359, -2.2753906, -0.0017623901, -0.3696289, -0.6689453, 0.84814453, 0.41625977, 0.27001953, 0.9790039, 1.0097656, 1.2753906, 0.109191895, 0.05090332, -2.9160156, -0.25170898, -2.1210938, 1.7441406, -0.20422363, -0.2788086, -4.2382812, -1.8173828, 0.7944336, -2.0683594, 3.7753906, 1.3476562, 0.7729492, -1.1767578, -1.4121094, 0.29663086, -0.63427734, -1.2509766, 0.021774292, 0.99853516, -1.5644531, 0.43823242, -3.2324219, -3.3769531, -2.5703125, 0.41503906, 0.91259766, -1.8505859, -0.38134766, 1.9716797, -3.484375, -1.78125, -1.3027344, 0.89208984, -0.5239258, -1.6191406, -1.2109375, -3.3085938, -2.0117188, -0.0099105835, -2.0800781, 1.6933594, -1.7080078, -0.38452148, 2.5078125, -0.16149902, 3.7714844, -0.29956055, -3.0859375, 1.6835938, 1.6025391, -0.46118164, 2.3320312, -0.99658203, -1.2470703, -0.5834961, 0.097473145, 2.6992188, -0.11834717, 0.87060547, 2.6308594, 0.8613281, 0.028137207, -0.99658203, 1.3007812, -0.73339844, 1.6445312, 2.5488281, -0.6123047, 0.16955566, 1.4433594, 0.17492676, -2.0859375, -0.8183594, 2.5859375, 1.7988281, -0.95703125, 0.5576172, 0.6245117, 1.7119141, -1.2978516, 1.8261719, -0.703125, 2.4140625, 0.4206543, -0.42333984, 1.359375, -2.2558594, 3.140625, 2.4765625, 1.1308594, 1.1181641, 1.9384766, 0.7783203, 0.031173706, -0.45996094, 1.2070312, 0.74121094, -1.5068359, 1.65625, -1.6689453, -0.78759766, 1.3505859, -3.3378906, 1.8320312, -1.3222656, -1.4560547, 2.078125, -2.1992188, 0.075805664, -1.0869141, -0.42529297, -0.23278809, -2.1171875, -0.14172363, -3.0683594, -1.1015625, 1.0673828, -4.3164062, -1.6269531, -1.9863281, 1.4560547, 0.79003906, -2.2539062, 0.36010742, 1.640625, -1.9023438, -1.6806641, 0.7739258, 1.2314453, -1.4707031, 2.8847656, 2.2441406, -1.9482422, 2.6542969, -2.8242188, 1.9599609, 0.65771484, -0.6567383, -1.1630859, -0.3630371, -1.0537109, 0.35058594, 2.3417969, 1.4306641, 1.8466797, -0.2685547, 1.0585938, -3.0449219, -0.4074707, 2.3828125, -1.5976562, -0.875, 1.6132812, 0.7714844, 0.953125, 1.3242188, 2.2519531, 0.28857422, -1.546875, 2.6171875, -3.1015625, 0.5317383, 0.47021484, -3.6796875, -0.47387695, -0.54589844, -0.56689453, 2.1210938, -0.3137207, 0.8720703, 2.1992188, 0.79003906, 0.3947754, -0.8769531, -2.0332031, -1.8105469, -0.54589844, -0.40600586, 1.8720703, -1.1445312, -1.7060547, -2.1542969, -1.8701172, -2.2265625, -0.109558105, 1.5546875, -2.1269531, 1.1748047, -2.1796875, -0.9609375, -2.9726562, -0.37963867, 0.96191406, 0.4724121, 0.2932129, -0.60058594, 1.5048828, 0.25024414, 1.0703125, -0.024124146, 1.2539062, -1.0625, -0.8535156, 0.95410156, 0.9316406, 3.3261719, -0.7475586, -3.1308594, 0.22338867, 1.8154297, 2.203125, -0.38452148, -1.4199219, -0.61816406, 0.3479004, 1.0996094, 0.13549805, 2.9882812, 1.1054688, 0.25854492, -1.5859375, 0.8803711, -2.2246094, -0.2800293, -1.6113281, -0.4663086, 0.6147461, 1.2490234, -1.7070312, -2.4472656, 2.7519531, 0.30859375, 0.32910156, -0.95458984, 3.3554688, 2.4707031, 2.2089844, 2.828125, -3.0136719, 1.6494141, 0.2783203, -0.8808594, -0.5625, 1.2099609, -0.4621582, 1.1923828, 2.4921875, 0.75390625, -1.6064453, -1.2792969, -0.8305664, -0.27026367, 0.73046875, -2.0605469, 1.7431641, 0.7763672, 0.97509766, 1.4042969, -1.3037109, 3.0195312, -0.82666016, -1.0195312, 1.6083984, -1.5986328, -0.74316406, 1.6982422, 2.5117188, -0.6069336, 0.8701172, 1.2890625, 0.30273438, 0.8183594, -1.0048828, -0.48608398, 0.43286133, -1.171875, 0.0028305054, 1.3232422, 0.6542969, -2.0644531, -0.3791504, 3.1367188, 3.0957031, -0.038757324, 1.3457031, 1.7373047, -0.7636719, 2.6269531, 2.7929688, -1.3583984, 1.3535156, -1.2119141, -0.46533203, 2.1933594, -0.0345459, -1.8876953, 0.032318115, 1.1123047, -0.7739258, 2.0605469, -3.140625, -0.7109375, 2.9589844, -2.1464844, 0.22070312, -0.7626953, -0.090026855, 0.16577148, 0.41479492, 2.1621094, -1.6474609, 0.98876953, 2.7734375, -0.6821289, -2.9550781, 1.7753906, -1.4101562, 0.8564453, -1.6884766, -0.9941406, -2.5605469, -0.078552246, 4.0390625, 2.4375, 1.2255859, -0.76171875, 1.7548828, -1.4492188, 0.30322266, -0.6142578, 1.8603516, -2.5410156, -0.076049805, 2.1582031, -1.7783203, -1.4150391, -1.5742188, 0.10235596, 1.1103516, -0.004463196, 0.2722168, 0.546875, 0.32983398, -1.0341797, -2.9375, -1.5712891, -0.3256836, 0.74072266, -1.4755859, 0.65625, -0.01612854, 0.64208984, 0.6220703, -0.32617188, 0.37353516, -0.92529297, -0.16345215, -1.7695312, -1.8496094, -1.0888672, -1.6162109, -1.0957031, 0.99609375, 0.42382812, 1.9306641, -0.39916992, -3.7167969, -0.484375, -0.25170898, -2.6953125, -0.5419922, 1.828125, 0.5854492, 1.4785156, 0.8647461, -0.9350586, -0.31445312, 2.4335938, -0.82714844, -0.6801758, 1.015625, -0.98828125, 1.9570312, -0.75341797, -0.16015625, 0.8647461, -2.5683594, 0.94140625, 1.7119141, -0.9658203, 2.6914062, 2.2851562, 0.20507812, -1.6064453, 0.6894531, 0.5883789, 1.7509766, 0.25048828, -1.453125, 0.6821289, -1.5488281, -3.25, 1.4648438, -1.8398438, -2.0136719, -1.6503906, 0.20178223, 2.3359375, 1.6171875, 0.47387695, 2.1582031, 1.8300781, -2.6347656, 0.5415039, 0.9482422, 3.7792969, 1.4472656, -1.4541016, 0.18481445, -2.3222656, 1.2832031, 2.609375, -0.23828125, -1.2285156, 0.98876953, -1.6767578, -0.47705078, 0.39990234, 1.4257812, 0.765625, 0.1809082, 0.043945312, 2.3222656, 2.6308594, -0.22424316, 0.5307617, 0.21740723, 0.73291016, -1.375, 3.2402344, 0.95214844, -2.7695312, -0.1270752, -1.5859375, 1.2324219, 1.5527344, -2.1367188, -0.9472656, -1.7089844, -1.3876953, -1.7431641, -1.46875, -3.2792969, 0.6201172, 0.21936035, -1.3867188, -1.5712891, 1.4785156, 0.4873047, 3.1308594, 2.0390625, 1.2294922, -2.2148438, -0.51953125, -0.9819336, -0.5883789, 0.62841797, -2.3417969, -0.10247803, 0.046203613, -0.5229492, -1.3662109, 0.4675293, -0.25952148, 1.3886719, 0.8564453, 2.4355469, 2.3105469, 2.5859375, 1.2138672, 1.0986328, 2.3476562, 0.890625, -1.6787109, -0.045654297, 2.0175781, 0.9370117, 3.9589844, -0.7133789, 0.16931152, 1.0849609, -0.08111572, 0.17541504, -0.6855469, 3.6230469, -2.7480469, -1.2070312, 1.3203125, 1.4648438, -0.30371094, 1.2783203, -0.90625, -1.3652344, -0.3408203, 0.6425781, 2.9414062, -0.4116211, 2.5976562, -0.074157715, 1.3740234, 1.6816406, -4.4023438, 2.1074219, 1.1777344, -1.8183594, -3.1816406, 1.2021484, 2.8925781, 2.3554688, -0.34326172, 1.7324219, 1.7167969, 1.5410156, 1.1875, -2.0761719, 0.057037354, -0.3371582, 2.7382812, 0.93066406, -0.91503906, -1.5693359, -1.0283203, -3.2480469, -2.0527344, 3.2421875, 0.67285156, 2.4140625, 2.3867188, -2.1425781, 2.0859375, 0.7729492, 1.4804688, -0.53271484, -0.31323242, -2.09375, -2.5058594, -0.13781738, 1.4169922, -1.3359375, 1.9892578, 1.2060547, 0.3725586, 2.7011719, 1.7050781, 0.045776367, -0.13842773, 0.9033203, 1.3076172, 1.5664062, 1.3164062, 1.6259766, 1.1708984, -1.3740234, 0.67871094, 1.0400391, -0.10058594, 1.2910156, 2.8476562, -0.3828125, 1.2001953, 1.8017578, -0.34375, 2.5507812, -1.6943359, -0.2998047, -0.120788574, 0.056854248, -1.5205078, -1.8535156, 1.0917969, 1.7382812, 0.28710938, 1.2900391, 1.6552734, -1.2568359, 2.1308594, 1.5087891, -0.64941406, -0.16784668, 0.054992676, -0.36450195, -0.8510742, -0.65185547, -0.7915039, -0.3005371, -1.3261719, -1.1455078, -0.40185547, -0.17053223, -1.0292969, -0.078430176, 1.8554688, -1.6308594, -0.90625, 0.37182617, 0.4321289, -1.1582031, 2.109375, 0.5678711, -0.81103516, -1.1943359, -3.1015625, 0.17712402, -1.5205078, -3.6679688, 1.2900391, 3.3027344, 1.5966797, -1.1132812, -1.6220703, -3.296875, -0.6855469, -1.1835938, 1.2539062, -1.1269531, -0.8432617, -1.7646484, 0.22180176, 2.9023438, 0.8330078, 0.7729492, -0.36376953, -0.52783203, 1.5869141, -0.27539062, -0.44360352, -0.8339844, 0.064086914, 1.6240234, 1.9462891, 3.2167969, 0.5551758, 0.98095703, 2.8378906, 0.40454102, -2.984375, 0.63916016, 0.93066406, 1.1132812, 0.42211914, 0.74560547, 0.77246094, -1.4208984, -0.6279297, -0.6425781, -1.4101562]}, "B07433QCTC": {"id": "B07433QCTC", "original": "Brand: SHINESTAR\nName: SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure\nDescription: Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8\" Male Flare Connector)

          1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
          2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
          3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
          4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
          5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

          Q: How do you know if you need a parallel or vertical low pressure regulator hose?
          A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

          Attention:
          1.For Outdoor Use Only.
          2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
          3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
          4.Keeping the hose away from HIGH TEMPERATURE.

          Product Specification:
          Certificate : CSA
          Outlet Pressure:11\u2019\u2019W.C.
          Flow Capacity: 80000 BTU/Hr
          Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
          Please double check your appliance connection to see if it has a 3/8\u2019\u2019 Male Flare Fitting Connector.\nFeatures: \u3010Standard Connector\u3011 Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Durable & Sturdy\u3011 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank\n\u3010Control Gas Flow\u3011 The gas grill regulator and hose's Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n\u3010Perfect Length\u3011 Gives you plenty of length, allowing for flexible configurations\n", "embedding": [-1.3574219, 1.5390625, 1.4414062, 1.1757812, -0.9716797, 0.077697754, 2.0878906, -2.0019531, 2.7324219, -0.5761719, -0.11047363, 0.67871094, 1.4853516, -4.2695312, 2.4316406, 0.98876953, 1.1386719, 1.0488281, 1.5625, 1.4667969, 1.1201172, 0.7338867, 2.1328125, -0.2980957, 2, -1.5273438, 2.6015625, -2.3046875, 0.14526367, -1.7636719, 0.2052002, 0.86572266, -0.86621094, 1.1972656, -3.0253906, -1.4628906, -1.0458984, -0.22265625, -3.2734375, -1.0654297, -1.9306641, 0.7636719, 1.9736328, 0.17736816, -1.9609375, 1.8623047, 1.2539062, -0.3083496, -0.009475708, -0.24731445, 0.60498047, -0.040740967, 0.41381836, 1.2900391, -0.8515625, 0.8183594, -1.6113281, -4.6210938, 0.5756836, 0.8886719, 1.3144531, -1.0439453, -3, 2.1445312, -0.51708984, 1.421875, 0.89941406, 0.18603516, 0.40795898, 1.5322266, 1.0302734, -0.46777344, -0.7963867, -0.92333984, 0.41967773, 1.0107422, -2.625, -0.3515625, 1.8105469, -0.0004348755, -1.0068359, 2.9902344, 1.6689453, -1.1533203, 1.6328125, 0.37304688, -2.6308594, 1.4931641, 1.4316406, 2.1933594, -1.3134766, 3.8125, -3.1074219, -3.2714844, 1.6240234, 0.09802246, 0.83447266, 1.4101562, 0.98828125, -0.10290527, -1.2353516, -1.4931641, -1.2548828, 0.94628906, -1.4208984, 0.5917969, 0.7807617, 1.6953125, -2.6386719, -0.64697266, 0.37695312, 0.19384766, 1.7177734, -1.2763672, 0.0284729, -2.0957031, 0.8901367, 0.28686523, 3.2597656, -0.49731445, 2.9667969, 1.6328125, -0.27197266, 0.07873535, 0.49560547, 0.5024414, -0.1784668, -0.5957031, 2.0527344, -1.6445312, -1.0048828, -3.25, 1.6308594, -0.171875, 0.43530273, -2.8261719, -1.8085938, -1.3564453, -3.3125, 0.0758667, -4.0039062, -1.1210938, 1.8740234, 0.64404297, -3.6171875, 0.13195801, -2.8808594, 1.0859375, 2.2226562, -2.5136719, 1.2324219, -0.62646484, -0.6201172, -2.328125, 1.7929688, 1.4658203, 1.5761719, -2.015625, 4.1484375, 0.88183594, 1.9892578, -0.7675781, -2.9257812, 1.9169922, 0.75634766, -3.6445312, 0.12976074, 0.8520508, -0.8569336, 0.36083984, -0.2467041, -4.203125, -0.53515625, 0.3959961, 0.16271973, -0.86816406, 1.1542969, 1.1865234, 2.1328125, 0.8334961, -3.5, -1.7246094, 2.1054688, -1.8740234, -0.5161133, -0.6489258, -1.2744141, -1.6503906, 0.59521484, -0.38842773, -1.8125, -0.60009766, -1.0712891, -0.004173279, -0.9838867, -2.8320312, -2.5625, -1.7451172, 0.6044922, 0.75097656, -2.3378906, -0.35668945, -0.49438477, 1.0791016, -2.5214844, -0.2548828, 0.8305664, 0.9135742, 0.58154297, 3.1875, -0.05392456, -0.15856934, 0.9272461, -1.3466797, 0.5830078, -1.2314453, 2.578125, 2.3847656, 1.1240234, 1.8691406, -0.11151123, 1.8876953, -0.6977539, 0.83154297, 2.3730469, 0.9589844, -0.32910156, 1.0917969, -1.421875, -2.515625, 2.9902344, 1.4316406, -0.36767578, 0.11248779, -0.37548828, 3.3730469, 1.1582031, 0.92041016, 0.91796875, 1.9658203, 0.88671875, -0.94091797, -2.1015625, -0.6352539, -1.4072266, -0.6616211, -0.09094238, 0.15600586, 2.5683594, 0.07110596, 1.1533203, 0.058166504, -1.0009766, -0.27954102, -0.4501953, -1.4384766, 0.97753906, 2.7011719, -0.69873047, -2.0625, 1.9501953, 0.95410156, 0.86035156, 2.1953125, 0.15576172, -0.6411133, 2.28125, -1.0126953, -1.8388672, 1.1269531, -0.8798828, 2.0800781, 1.5087891, -1.1171875, 0.5205078, 1.25, -1.2128906, 2.125, 0.46704102, -0.39013672, 2.1660156, 0.9213867, 1.6054688, -2.2734375, 0.70214844, 1.7734375, 2.2402344, -0.5673828, -0.8227539, 1.4365234, 3.265625, -0.06427002, -1.8632812, 0.79589844, 1.8222656, 1.0185547, 1.9882812, 1.7167969, 0.95996094, -1.3847656, 0.9921875, 1.2275391, -1.6308594, 1.2353516, 1.6699219, -0.5175781, 0.79345703, -1.0439453, 0.7441406, 0.3203125, -1.3203125, -1.4199219, -1.8144531, 2.375, -1.5361328, -3.1835938, 2.0683594, -1.6015625, 0.14172363, 2.1503906, -0.6010742, -0.33129883, 0.58251953, -0.9848633, -0.31713867, 1.7070312, -2.0546875, 2.0507812, 1.4375, -0.33813477, -0.4074707, -1.2001953, 0.76464844, -2.9492188, -2.8378906, -0.44677734, -1.6181641, -1.5371094, 1.4384766, -2.5410156, -2.6621094, 0.40429688, 0.031585693, 2.8476562, 0.19384766, -0.32104492, -0.20935059, 1.7744141, 1.2851562, 0.060058594, -0.03439331, 2.390625, -0.09613037, -1.2402344, 0.4873047, -0.41235352, 0.2602539, 1.3955078, -1.4277344, 0.8442383, 1.4042969, 0.4399414, 0.3864746, 0.27270508, 1.0498047, -2.7265625, -0.6245117, -3.8203125, 0.14111328, -0.8432617, 2.4179688, -1.5605469, 0.9946289, -1.5488281, -2.609375, 1.4306641, -1.6503906, 1.5849609, -0.34887695, 2.0097656, -3.0195312, 0.074035645, 1.5400391, 0.14941406, -2.4316406, -0.58935547, 0.31225586, -1.5439453, -1.6591797, -2.4394531, -0.44799805, -0.38671875, 0.07080078, -0.6669922, -2.0097656, -1.484375, 0.7597656, -0.11590576, -1.8828125, -0.53515625, 1.4208984, 0.9121094, -1.5341797, -1.3535156, -0.47094727, -0.8857422, -0.7338867, 0.1239624, 0.625, -1.2324219, -0.6152344, 1.4277344, 1.4589844, 1.8564453, 0.09875488, -3.2675781, 0.7246094, 3.765625, -2.1347656, 1.1660156, -1.4873047, -0.11608887, -2.6523438, -1.3212891, 1.4208984, 1.4443359, 2.4414062, -1.0859375, 0.1953125, 1.5185547, -0.08441162, -1.8789062, -0.026947021, 0.2331543, 4.8828125, -3.0527344, -1.8310547, 0.41748047, 0.7919922, -3.7695312, 0.11541748, 0.7675781, -1.1464844, 2.6132812, 1.6962891, 0.5019531, -0.53222656, 2.0742188, 1.8710938, 1.5703125, 0.53466797, 0.39453125, -0.75146484, 0.27270508, 0.42749023, 1.8007812, 1.9833984, 0.3017578, 1.2216797, 0.39013672, 0.09820557, -0.4699707, 1.2861328, -0.06137085, 1.2851562, -0.11212158, 2.3144531, 0.03488159, -0.45825195, -1.6542969, 0.9165039, 1.7177734, -1.8544922, -1.8505859, 2.1269531, 1.4414062, -1.7470703, -0.38183594, -0.80810547, -1.0205078, -1.3125, -0.4309082, 0.45507812, 1.0136719, 1.1210938, -0.4399414, 0.3996582, -1.5273438, 4.046875, -0.8901367, -1.0791016, -0.9692383, 0.4008789, -1.2861328, -2.1445312, -0.28125, -2.8789062, -1.6308594, 2.5644531, 1.5136719, -1.1630859, 0.89453125, -1.7353516, 1.2246094, 2.2050781, -1.6738281, 0.07684326, 0.13330078, 0.013839722, -0.14160156, 0.105529785, 2.5820312, -0.19494629, -2.3867188, 0.52734375, -1.5673828, 0.05050659, 0.53222656, 1.1142578, -2.9628906, 0.12158203, -0.23034668, 0.7426758, -1.4179688, 4.09375, 0.038879395, -1.3066406, 0.7788086, -2.2050781, -0.5571289, -2.0019531, -5.453125, -0.22607422, -2.8613281, -0.6870117, 1.7998047, 0.453125, 0.09527588, 0.34765625, 1.734375, -2.609375, -0.6713867, -0.09844971, 0.7753906, -2.4492188, -0.36450195, 2.34375, 0.07165527, -2.3242188, -2.7265625, -0.6567383, -2.2734375, -0.26123047, 1.5644531, -2.265625, 0.18774414, -1.9970703, 0.003025055, -0.044891357, -1.8017578, 0.4958496, -0.67871094, -0.6245117, -3.1191406, 2.4199219, 1.6064453, 0.6875, -0.50146484, 2.8964844, 2.1289062, -1.1523438, 1.2949219, 0.8798828, 4.8476562, -0.028366089, -2.7851562, -0.6699219, -1.4882812, 0.19226074, -1.6611328, -0.6904297, 0.8144531, -1.5566406, 1.8935547, -0.83740234, 2.8203125, 1.2070312, -0.7807617, -5.359375, 0.13952637, 1, -2, -0.5625, -0.6640625, -2.3339844, -3.0175781, 0.9003906, -2.0917969, -0.5732422, -2.3515625, 0.6113281, -1.9638672, 1.0214844, -0.1348877, 1.3027344, 0.2175293, -1.6943359, -0.29638672, -0.3623047, -1.2246094, -1.6269531, -0.2548828, -1.6464844, -0.6738281, 1.7626953, 1.0195312, -0.7138672, -0.5078125, 0.16723633, -1.0439453, -0.6899414, -0.37573242, 0.2644043, -0.87109375, -0.98339844, 0.4038086, -0.48388672, 3.5136719, -1.4638672, 0.9199219, 0.92871094, -0.54785156, -1.1669922, 1.8271484, 1.8515625, 2.8886719, 1.1660156, 1.203125, 1.7685547, 2.0800781, 1.7001953, -1.7177734, 0.8125, -1.5166016, 0.19543457, 0.20532227, 0.19519043, -0.8544922, -0.15515137, 0.88964844, 1.3144531, 1.4482422, 2.21875, 0.076049805, -1.6123047, 1.4316406, 0.10333252, -1.2646484, -0.19482422, 0.7910156, -0.42700195, 3.5644531, -0.12683105, -2.0761719, 0.33007812, 3.1054688, -1.6289062, 2.6835938, 0.5991211, -2.6542969, 0.30908203, -2.0332031, -1.9990234, -0.4416504, -2.4902344, 0.8417969, -1.9052734, 1.1025391, -1.7294922, 3.2226562, 1.2890625, -0.55810547, -1.3320312, -0.4807129, -2.0429688, -0.2220459, -0.70654297, -1.3652344, -3.0039062, -0.21191406, 1.328125, 1.0810547, 0.375, -0.60791016, 0.31054688, -1.3955078, -1.5166016, -0.035095215, 2.3457031, -1.34375, 0.043548584, 2.1074219, 0.051696777, 0.52441406, -1.9414062, -1.5009766, -1.3271484, 1.9746094, 0.92626953, 1.9580078, 0.30078125, -1.4326172, -2.4648438, -5.9804688, -0.69140625, 1.703125, -0.8876953, 0.265625, -2.625, -0.5410156, 1.8867188, -0.7729492, 0.064086914, -1.0634766, 1.0712891, -1.9462891, 0.39331055, -1.7548828, 0.51416016, 0.22802734, 0.5776367, -0.51123047, 1.0117188, -0.058044434, -2.65625, -2.2675781, 1.8457031, -1.96875, -0.11907959, 2.4316406, -1.3183594, -0.46704102, 2.0214844, 0.71191406, -1.7773438, 1.4013672, -2.3320312, -0.09802246, 1.9414062, -2.9277344, 1.1259766, 0.6152344, -1.1660156, 1.3300781, 0.15808105, 1.5048828, -0.50634766, -0.5732422, -0.23876953, 0.9194336, -0.32617188, -3.0234375, -0.07751465, -0.62646484, 2.6855469, 2.2050781, -0.9038086, 0.02746582, -2.7011719, -2.9160156, 0.26757812, -1.0205078, -0.25463867, 0.15905762, 2.4316406, 0.28759766, -0.47802734, 0.99072266, 2.4082031, 0.7949219, -2.1230469, 1.953125, -0.5810547, 2.5917969, 0.8964844, -2.0507812, -3.0175781, -1.0410156, 0.76708984, 3.1464844, -1.8632812, -0.45654297, -0.0012044907, 0.4921875, 1.4033203, -1.0097656, 0.78808594, 1.2880859, 1.1591797, -1.1806641, 0.35327148, 1.3271484, -0.43945312, 1.0234375, 0.73291016, 0.73095703, -0.03164673, 0.5625, 2.1464844, -3.1660156, 0.6796875, -0.796875, 0.9785156, -0.9472656, -2.0820312, 1.5283203, -2.7617188, 0.4033203, -0.19506836, -2.7558594, -4.71875, 1.5380859, 1.0917969, 0.28833008, 0.4868164, 3.4414062, 1.0722656, 0.40600586, 0.8666992, -0.57958984, -0.3408203, -0.46411133, -1.7958984, 0.5986328, 3.0488281, -0.5229492, 1.3398438, 1.0800781, 0.8222656, 0.8769531, 0.022857666, 1.3408203, 2.953125, 0.8964844, 2.4414062, 3.4023438, 0.11804199, 3.1015625, 0.2697754, 2.3144531, 1.8261719, -1.8701172, 2.1601562, 1.4990234, 1.2509766, 1.2412109, 0.04019165, -0.15136719, -0.7753906, 0.63427734, -0.57666016, 1.3193359, 2.234375, -1.9560547, -1.2138672, -0.5961914, -2.3613281, -2.9433594, 3.0566406, -1.6992188, 0.8779297, 1.3916016, 1.2255859, -0.25463867, 1.4169922, -0.8979492, -0.3857422, -0.6982422, 2.7636719, -1.0996094, 0.3647461, -1.1318359, -2.46875, 1.3964844, 3.3125, 1.1630859, 1.1611328, 0.94140625, -0.10290527, 0.2919922, 1.4130859, 0.94140625, -0.53027344, -0.72802734, -0.67333984, 2.5566406, 1.4794922, -2.2578125, -0.3466797, 0.9580078, -1.0751953, -4.1445312, 3.2773438, -0.033355713, -0.6801758, -0.51220703, -2.53125, 1.9609375, -1.3271484, 0.17687988, -1.9111328, 0.033447266, 0.37719727, -0.7011719, -0.6328125, -1.3134766, -1.5361328, 1.4443359, 0.7392578, -0.90625, 0.66748047, 1.4130859, 0.81103516, 0.09313965, 1.0849609, -0.30639648, -0.5317383, -1.5888672, 3.8769531, 0.32788086, -2.2285156, 0.55615234, 2.6523438, -0.019622803, 1.1523438, -0.4567871, 0.13891602, 1.140625, 0.43945312, -1.2773438, 0.110961914, -1.6464844, -0.9448242, 0.32373047, 1.5839844, -0.8232422, -1.6513672, -0.014381409, 1.265625, -1.8378906, 2.1601562, 1.6689453, -1.5683594, 1.5888672, 1.9902344, -1.1923828, -0.54003906, 0.34570312, 2.0605469, -1.6269531, 0.028335571, -0.9897461, -0.421875, 0.26635742, -0.7817383, 0.018157959, 0.09185791, -1.7480469, -1.5849609, 1.3320312, 0.7783203, -0.47094727, 0.042022705, -1.1132812, 0.19274902, 2.5351562, 1.5175781, 1.8134766, -0.6972656, -1.1953125, 0.07977295, -2.5390625, -2.3398438, 1.1542969, 3.7265625, 0.78466797, -0.010627747, -1.1171875, -2.5878906, -0.28051758, -0.984375, 2.1230469, 0.35742188, -1.5263672, 0.70703125, 0.8144531, 2.0761719, 1.2363281, 0.81640625, -0.117126465, 0.40478516, 1.7724609, -1.3876953, 1.5175781, -1.1933594, 0.112854004, 1.0136719, 3.8847656, 1.6503906, -0.56591797, -0.36376953, 1.0898438, -0.44702148, -2.7519531, 0.44433594, 0.00075149536, 1.3300781, 1.3505859, 3.359375, 2.4882812, 0.16259766, -1.0458984, -2.5957031, -0.80859375]}, "B07CZ8H9V4": {"id": "B07CZ8H9V4", "original": "Brand: Goplus\nName: Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)\nDescription: Description
          This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

          Features
          Heavy duty cast iron body
          Powder coating makes it is waterproof and anti-rust
          Equipped with a cast iron head, outputs a whopping BTU of 100000.
          Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
          Adjustable firepower make your cook more delicious
          Removable feet make it can be easily carried or stored
          External valve CSA certification

          Specifications
          Finish: Black
          Product Type: Single burner
          Material: Cast iron
          Item Dimensions:15.5\u201dx15.5\u201dx17\u201d
          Item Weight:13lb
          Hose Dimensions:0.5\u201dx51\u201d
          Max: 250 Psig
          BTU : 100000
          Package includes:
          1 x Single burner stove
          1 x Instruction\nFeatures: Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up.\nCast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious.\nCooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time.\nDetachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage.\nSafety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "embedding": [-2.1015625, 1.984375, 1.8251953, 0.51953125, 0.21044922, 2.5722656, 2.2714844, -2.2167969, -1.1416016, 3.5097656, -0.13952637, -0.46875, 0.031707764, -3.5351562, 0.42138672, 0.65478516, -1.5556641, 0.07098389, -0.74560547, 0.0791626, 3.3984375, -0.4399414, 1.2998047, -0.35839844, -0.50439453, 0.18701172, 3.4257812, -2.7441406, 0.35791016, -2.0917969, 2.4316406, 0.33422852, 0.7988281, 2.9316406, -4.2226562, -1.0488281, -1.3769531, 2.0195312, -2.0097656, -0.08917236, -1.5322266, -1.3330078, 1.6357422, 0.0385437, -2.0175781, -0.13623047, 1.6269531, 1.8320312, -0.88916016, -0.6035156, -0.07525635, 1.7451172, -1.0888672, 1.84375, -1.6826172, 1.7402344, -0.13500977, -1.7519531, 1.3701172, -0.40551758, 1.3037109, 1.5634766, -2.015625, 0.7597656, -1.5498047, -1.0048828, 1.1513672, -0.98828125, -1.8046875, 0.11437988, 3.2695312, 0.055511475, -1.3222656, 0.11401367, 0.98535156, -0.93359375, -3.7597656, 0.98535156, 4.453125, -0.89208984, -2.3183594, 2.6113281, 1.8154297, 0.82373047, -0.4543457, 0.22229004, -0.92285156, 0.31079102, 2.4238281, -0.4724121, -2.59375, 3.4003906, -2.9101562, -4.1015625, 1.0205078, 0.06726074, 2.7304688, 0.68408203, 0.086364746, 0.9707031, 0.1204834, 0.87060547, -0.8725586, -0.5371094, -1.3261719, -1.2207031, 3.765625, 1.0361328, -2.2871094, 1.5126953, -3.3164062, -0.6611328, 0.8144531, -0.8520508, 0.54003906, -0.48242188, -0.8286133, 0.059020996, 3.4472656, 0.54785156, 4.8398438, -0.33447266, 0.22387695, -1.3574219, 1.1337891, 1.1279297, -1.0302734, 0.48388672, 2.5859375, -1.5205078, -2.0449219, -1.1884766, 0.46679688, -0.6303711, -1.046875, 0.02355957, -1.1923828, -1.7724609, -3.4414062, -0.54248047, -2.4746094, 1.4667969, 2.6210938, -0.13330078, -4.1367188, 0.0715332, -0.25561523, 2.1796875, 0.018051147, -1.3984375, 0.26171875, -0.64697266, 0.12182617, -2.1640625, 2.5, 1.3447266, -0.48266602, -0.9223633, 2.671875, 0.1821289, 0.2692871, -3.4941406, -2.5585938, 2.4472656, -0.0046577454, -1.3300781, 0.38452148, 0.2397461, -0.11029053, 1.1640625, 0.32543945, -1.1806641, -0.03857422, -1.0839844, 0.4621582, -0.9633789, -1.2128906, 3.7441406, -0.7314453, -0.39624023, -2.6152344, -1.734375, 1.7021484, 2.984375, 0.8105469, -1.3427734, 1.5878906, -0.64453125, -0.49804688, -2.171875, -1.4472656, 0.29907227, 0.7216797, -0.7783203, 0.27905273, -1.3095703, -0.33447266, -1.8857422, -0.37402344, 0.578125, -1.4130859, -1.1787109, 0.024627686, 1.4570312, -2.8789062, -1.0761719, -0.37451172, -1.4794922, 2.4628906, 2.2871094, 0.4086914, -0.13354492, 1.9765625, 0.36254883, -1.0244141, -0.8178711, 2.3398438, 0.44726562, 2.2890625, 2.28125, -0.30664062, -2.1074219, 1.0009766, 2.0625, -0.059539795, 0.91308594, 0.8178711, 0.04714966, -1.1523438, -0.93896484, 2.4121094, 0.24389648, -0.1652832, 0.53125, -1.2285156, 3.9414062, 1.1894531, -1.3515625, -0.5756836, -0.9291992, -0.59033203, -1.9882812, -0.5810547, 0.6821289, -2.140625, -0.80322266, -0.8051758, 0.35424805, 1.8154297, -0.87841797, -1.0234375, -0.94384766, 0.22619629, 0.03845215, -1.2353516, 0.41064453, 0.31445312, -0.765625, -2.3359375, -2.7460938, 1.3115234, 1.4423828, -0.5102539, 0.93408203, 0.33984375, -1.4775391, 2.3789062, 0.89697266, -2.8457031, 1.0957031, 2.2597656, 0.36816406, 3.9765625, -0.019805908, 1.9121094, -1.1337891, -1.4765625, 2.0527344, 1.0986328, 1.9511719, -0.76464844, -1.5908203, 2.9707031, -2.9804688, 0.48339844, 0.7524414, 2.2167969, -0.13586426, -0.30688477, -0.07623291, 5.578125, -1.4707031, -3.0878906, 2.3984375, -2.3964844, 0.5498047, 1.4189453, 0.43969727, 1.0898438, -0.7451172, 1.9277344, -0.055480957, 0.25048828, 2.9394531, -2.0234375, -1.5722656, 0.44677734, -3.6230469, -0.33813477, 1.5078125, -1.375, 0.25268555, -1.6962891, 0.3840332, -3.59375, -0.11230469, 2.1386719, -2.0117188, 0.74072266, 1.4570312, 0.84716797, 0.15673828, -0.2836914, -2.6523438, 0.84228516, 0.30932617, -0.15808105, 1.6279297, 0.027801514, -1.2607422, -0.921875, -3.0253906, -0.05529785, -0.91308594, -0.91503906, -0.8388672, 0.10040283, -2.515625, 1.6416016, -0.45239258, -0.5517578, 1.0283203, -2.3671875, 0.7285156, -3.1855469, -3.5898438, -0.35302734, 0.29711914, -0.62109375, -0.6123047, 1.3310547, 1.8251953, -1.2080078, -5.5039062, -1.2929688, 0.21435547, 0.30371094, -0.39990234, -0.83154297, 1.4677734, -0.39257812, 0.3269043, 0.34643555, 1.0175781, 0.25854492, -1.6513672, 0.5683594, -3.9726562, 1.6044922, -0.6044922, 0.57666016, 0.30786133, -0.42089844, -2.7675781, 0.0473938, -1.0761719, -0.6826172, 3.6113281, -2.0195312, 2.0761719, -0.9892578, -0.8442383, 0.39501953, -1.7802734, -2.515625, -0.8642578, -0.7050781, -0.8676758, -1.0722656, -4.71875, -0.14916992, -2.2617188, 0.47338867, -1.0957031, 0.89160156, -1.0771484, 1.8896484, -1.2587891, 0.06286621, 0.5283203, 0.42944336, -0.4506836, 0.06896973, -1.3056641, -0.5566406, -0.49194336, 0.6611328, 2.3398438, 1.0205078, 0.33813477, 0.24291992, 2.5800781, 0.061157227, 0.85058594, -0.44335938, -3.7988281, 1.2304688, 1.5371094, 0.49023438, 1.7929688, -2.0371094, -1.3017578, -2.0351562, -0.9790039, 2.1132812, -0.22851562, 3.3320312, -0.053833008, -1.6025391, 0.66015625, 0.9057617, -0.041778564, -1.9716797, 0.8911133, 3.7558594, -2.59375, -1.7929688, 1.4140625, 1.6347656, -3.9863281, -0.09765625, 0.52490234, 2.0390625, 1.5976562, 1.1005859, 1.5, -0.09851074, -1.3388672, -0.2619629, 2.2578125, 1.5458984, -0.93847656, -2.0410156, 0.4807129, -1.4511719, 1.0175781, 0.51953125, 2.7089844, 2.0664062, 2.25, 2.2714844, -1.3095703, 0.28564453, 0.08850098, 1.2558594, -0.124938965, 2.7421875, -0.47998047, -0.45458984, -1.3808594, -0.51123047, 0.28295898, -2.8847656, 0.41796875, 1.6962891, 0.056793213, 0.58251953, -0.13537598, -0.34277344, 0.25878906, -0.03665161, 1.0927734, -0.018493652, -0.5517578, 2.2773438, -0.5986328, -1.3115234, -1.7607422, 2.6894531, -0.5600586, -2.0410156, 1.1679688, 0.6064453, -1.6210938, -2.7675781, -0.7290039, 0.0010128021, -0.96191406, 5.09375, -0.089904785, -1.6132812, 1.0126953, -1.7138672, 0.73583984, 1.6162109, -0.05810547, -0.22509766, -1.8945312, -0.0022392273, 0.023849487, 0.32202148, 2.1035156, 1.4804688, -2.3125, 0.36499023, -2.3222656, -0.15270996, 0.059020996, -1.7636719, -0.7109375, 1.9638672, 0.2088623, 0.6357422, 0.007156372, 3.9335938, -2.3515625, -0.43139648, 1.0410156, -3.09375, 0.03262329, -2.9863281, -2.9589844, 1.2265625, -1.0888672, -1.1357422, 3.0253906, -0.16333008, 0.11260986, 1.6992188, 0.5258789, -2.9238281, -1.0908203, -0.9941406, 1.3154297, -2.7011719, 0.89501953, -0.08380127, 0.41674805, -0.67871094, -1.5595703, 0.08337402, -0.6386719, -0.0847168, 1.2001953, -3.5078125, 1.0761719, -0.87109375, -0.42797852, -0.9555664, 0.027404785, 1.8046875, -0.008132935, 0.68359375, -0.7739258, 0.86865234, 0.4880371, 0.85791016, 1.4199219, 3.7167969, 0.6767578, 1.6123047, -0.56933594, 0.5488281, 1.6337891, -0.13659668, -2.5175781, -2.078125, 0.11016846, 0.064575195, -0.094055176, 0.15393066, -0.66308594, -1.8867188, 1.6679688, 0.79052734, 0.49926758, 1.1621094, 1.0419922, -1.0341797, 0.5913086, 0.3564453, -1.7382812, -2.2773438, 0.90527344, 1.0136719, -1.9316406, 1.8173828, -0.52246094, -0.59375, 0.16638184, -1.3564453, -0.49975586, 2.7070312, 0.49487305, 0.54541016, 2.2949219, -1.2246094, -2.5996094, 0.33764648, -1.5449219, -1.3740234, 0.72021484, -0.24145508, -0.46557617, 2.9394531, 0.44384766, -0.42285156, -0.66064453, 1.5498047, -1.9267578, -1.0253906, -1.0126953, 1.3212891, -1.0917969, -1.703125, 1.53125, 0.2626953, 2.0390625, -0.64501953, 0.28808594, -0.68359375, 1.5917969, -2.6289062, -0.9628906, -0.14489746, 0.20007324, -0.6660156, -0.3569336, 0.84375, 0.4892578, 2.8945312, -0.60009766, 2.7578125, -0.17224121, 0.6948242, -0.38598633, 0.36450195, -1.8076172, 0.31982422, 0.5698242, 1.7910156, 0.16833496, 2.453125, 1.5, -0.6586914, 1.4990234, 0.97314453, -1.5996094, -0.20532227, 0.58984375, -1.6933594, 1.8076172, -2.25, -1.9150391, 0.7739258, 2.8320312, -0.49780273, 0.71875, 0.1529541, 0.25317383, -0.40185547, -1.7089844, 0.029052734, -2.4882812, -0.82958984, -0.86572266, -1.7148438, 1.0458984, 0.14746094, 1.9873047, 1.7402344, -0.085632324, -0.28735352, 2.6035156, -0.6196289, 2.1054688, -0.015853882, -0.54785156, -2.9882812, 0.9370117, 1.4511719, 1.2998047, 1.9316406, -0.91845703, 1.7314453, -1.1113281, -0.87109375, -1.6494141, 2.4101562, -3.296875, -0.48901367, 2.4335938, 0.024627686, 0.3779297, -1.6259766, -1.2636719, -0.71777344, 2.8085938, 0.0056114197, -0.8408203, -0.84814453, -0.19677734, -1.5292969, -3.6992188, 0.18359375, 0.1661377, -0.2644043, -0.9819336, -0.4008789, -1.1806641, -0.50439453, -0.033233643, 1.1015625, -1.6494141, 1.7294922, 0.1439209, 0.7729492, -1.5478516, 0.6669922, 0.6772461, 1.7958984, 0.9682617, 0.5239258, 0.036895752, -2.5195312, -1.078125, 0.24060059, -1.4697266, 1.0458984, 0.5073242, 0.39575195, 0.71533203, 1.9287109, -1.6025391, -2.7949219, 1.7148438, -1.1025391, -0.82421875, -0.017608643, -1.5234375, 2.625, -0.14916992, -1.9697266, 1.0927734, -2.484375, -2.1113281, -0.84228516, 1.4716797, 0.5385742, 1.4052734, 0.53271484, -1.9082031, 2.1835938, 0.5488281, 0.8300781, 1.0029297, -0.63720703, -2.4023438, -2.0253906, -2.9296875, -0.5644531, -1.4794922, -1.1796875, -0.5776367, 0.43774414, 0.7597656, 0.11578369, -0.32080078, -0.24707031, -0.5517578, -0.6074219, 1.9697266, -0.44482422, 4.21875, 0.4868164, 0.8022461, -2.7324219, -3.578125, 0.37109375, 0.11090088, 1.0087891, 0.0579834, 0.56396484, -1.5302734, -0.14099121, -0.7529297, 1.9453125, 2.71875, 1.3535156, -1.5205078, 2.7109375, 3.1640625, -0.27270508, 1.2763672, 0.6352539, 0.117126465, -0.64208984, 3.7519531, 0.99609375, 0.08984375, 2.5136719, -0.5419922, 2.7558594, -1.3984375, -1.6484375, -0.27441406, 0.24560547, -1.0234375, -2.0898438, -0.7705078, -1.8955078, 1.3183594, 0.44873047, -0.50341797, 0.11791992, 1.8603516, -0.5800781, 1.0546875, 2.6660156, 2.578125, -1.2851562, 1.9599609, 0.6801758, 0.9316406, 1.9921875, -0.8408203, 0.48779297, 0.9003906, -0.083496094, -0.46606445, 2.8300781, 1.2451172, 2.9453125, 0.11755371, 1.1816406, 4.03125, 2.1035156, 3.5976562, 0.30419922, 1.7363281, 2.5273438, 0.9042969, -0.114746094, 1.6386719, 0.41845703, -0.91845703, -1.3085938, -0.9794922, 0.15966797, -1.3701172, -0.66552734, 0.02015686, 2.6152344, -3.2539062, 2.8886719, 0.37426758, 2.3691406, -1.1416016, 1.6142578, 0.2939453, -1.5244141, -1.0029297, -1.3544922, -0.26879883, -0.74316406, -0.9267578, -1.1591797, 1.0332031, 1.1992188, -3.6835938, 1.1103516, -1.6660156, -3.1601562, -1.3759766, 1.7675781, 2.1582031, 0.40234375, 1.5537109, 3.140625, 1.8222656, -0.5444336, 0.49926758, -2.2167969, -0.11450195, 1.1884766, 3.9492188, 0.32006836, -0.21020508, 1.7578125, -1.2089844, -3.1132812, -2.7480469, 2.8164062, 1.8261719, 1.1074219, 1.9199219, -1.7509766, 2.0039062, 0.13232422, 2.3925781, -1.0078125, 2.3515625, -0.4194336, -1.7392578, -1.0136719, 0.38476562, 0.546875, 2.9414062, 1.9306641, -1.4121094, 0.9848633, 0.1739502, 1.4892578, 0.67285156, 0.5234375, 0.18798828, 3.1269531, 0.16040039, 2.3183594, 0.30322266, -1.8808594, -0.16125488, 2.75, 2.9726562, 0.032928467, 0.6298828, -1.7822266, 1.8857422, 1.1855469, -0.66503906, -0.7216797, -1.0283203, -1.8330078, -1.3691406, -1.8544922, -1.1914062, -2.0585938, 2.0878906, -0.13562012, -0.5131836, 0.7817383, 1.1347656, 0.19348145, 0.65283203, 0.35131836, -1.2763672, -0.20153809, -1.7539062, -0.2668457, -2.2539062, -2.546875, 0.9975586, 0.84228516, 1.8056641, -1.828125, 1.3222656, -1.2353516, -0.4909668, -0.23840332, 1.1962891, -1.7373047, -0.5415039, -0.26342773, -0.33764648, -0.49438477, 1.7675781, -0.5566406, -1.1503906, 0.029205322, -4.1796875, -1.0927734, 0.0181427, -0.5317383, 0.89501953, 3.6542969, 0.27172852, 2.1972656, -2.3066406, -2.5742188, -1.4755859, -2.1621094, 1.5136719, -0.39648438, -0.29882812, -0.40014648, 0.57910156, 2.3261719, -1.1474609, 0.96191406, -1.0712891, -0.28759766, -0.57666016, -1.15625, 0.26367188, -0.21228027, 0.5805664, -2.0585938, 3.0957031, 2.3496094, -0.10357666, 1.9238281, 1.3789062, 0.37353516, -2.5976562, 0.5761719, -1.6962891, -1.0234375, 0.22888184, 0.5073242, 2.8046875, 0.70214844, -1.0507812, -3.0957031, -1.6142578]}, "B088CYL9WB": {"id": "B088CYL9WB", "original": "Brand: Grand patio\nName: Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table\nDescription: This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

          As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

          The fire pit table has solid construction and is easy to assemble.

          40,000 BTU propane gas fire pit, square steel firebowl.

          Note:
          The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
          Lava rocks shown in photos are decoration only, and are NOT included.
          Batteries: 1 AA batteries required (NOT included).

          Product Specifications:
          Chair materials: Powder-coated steel, olefin fabric
          Chairs size: 27.5\" (W) x 30.5\" (D) x 33.7\" (H)
          Load of chair: 200lbs-300 lbs
          Chair package Includes: 4 Chairs, tools needed, assembly guide

          Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
          Firetable size: 31.8\" (L) x 31.8\" (W) x 24.2\" (H)
          Firetable package included: 1 x 32 inch gas fire pit table

          Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

          Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.\nFeatures: FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we'll sort you out in 24 hours.\nCOMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces.\nSTURDY & DURABLE: Chairs and table's frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles.\nFEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included.\nHIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.\n", "embedding": [-1.4794922, 0.8769531, 0.6347656, -2.9570312, 3.5371094, 1.171875, 1.1503906, -2.2050781, -1.6835938, 2.1464844, 0.3955078, 2.1777344, 0.9941406, -3.8222656, 0.9477539, -0.3618164, -0.122924805, 0.8754883, 1.4667969, -1.8027344, 2.5957031, -0.8378906, 1.0322266, -0.37475586, 0.32373047, -0.20532227, 3.171875, -3.1367188, 0.70458984, -0.63964844, 0.9199219, 0.31689453, 0.25805664, 0.68359375, -1.7138672, -2.2773438, -0.4658203, 1.4648438, -2.4003906, 1.3642578, -1.6474609, -2.4003906, 3.4960938, 1.7578125, -1.3681641, 0.9550781, 2.84375, 1.2080078, 0.033325195, -2.1171875, 1.3730469, 0.7158203, 0.34814453, -0.28222656, -3.8105469, 2.3027344, 0.6767578, -1.5917969, 1.9619141, 0.6430664, 2.2460938, -1.0195312, -1.0263672, 2.1582031, -2.0683594, 1.9941406, -0.07348633, -0.57470703, -0.54003906, -0.043762207, 2.046875, -0.10272217, -1.9238281, 0.47802734, 1.2734375, -0.87597656, -2.5078125, 1.0371094, 1.5791016, -1.3095703, -0.6933594, 1.2568359, 0.96728516, -1.7480469, 0.30297852, -0.85302734, -1.3457031, -0.15759277, 0.9370117, 2.5898438, -1.4189453, 3.1347656, -0.5600586, -3.3359375, 1.1523438, -0.7026367, 0.7651367, 1.3076172, -2.9785156, 1.0400391, 1.6845703, -0.5703125, -0.027893066, -0.6113281, -1.2080078, -1.0410156, 1.4804688, 0.8442383, -0.6611328, 0.7397461, -1.2597656, 0.4152832, 2.0449219, -1.0732422, -1.8808594, 2.8808594, 2.193451e-05, 2.5820312, 2.6640625, -0.8911133, 4.3867188, 1.1806641, 0.97265625, -0.91503906, 0.15319824, -0.20471191, -0.6894531, 3.1132812, 1.1132812, -1.7177734, -0.45874023, -2.5898438, 0.95751953, 2.6464844, -2.2617188, -0.35961914, -1.9111328, -0.9165039, -3.5390625, -0.5908203, -0.54785156, 1.5615234, 0.65185547, 1.7587891, -3.4257812, -0.19445801, -0.6894531, 2.6894531, -0.5649414, -2.1757812, -0.052001953, -0.1640625, 0.5698242, -3.3886719, 0.40014648, -2.640625, 1.1523438, -2.7226562, 2.9824219, 0.49609375, 1.4882812, -1.5273438, -0.81347656, 0.7841797, -0.6635742, 0.9785156, 1.5878906, 0.9848633, 1.4414062, 1.6542969, -0.17163086, 0.6713867, 0.1439209, 0.23986816, -0.58984375, 1.46875, -0.72216797, 2.0996094, 3.3496094, 0.7128906, 0.5053711, -1.2011719, 0.12213135, 0.6977539, 0.97558594, -2.2910156, -0.58154297, -1.6914062, -0.04626465, 0.29589844, -0.5546875, -1.1914062, -3.5917969, 0.90234375, -1.359375, -2.6152344, -2.515625, -0.56884766, 1.8232422, 0.66748047, -2.2070312, 0.84814453, -3.0703125, 1.3388672, -3.3886719, -2.3710938, 0.09472656, 2.46875, 1.2841797, -0.18969727, -1.1464844, -1.6464844, 0.07507324, 0.25708008, 1.4052734, -0.000664711, 3.6035156, 0.9916992, 1.1181641, 2.9707031, -0.49023438, 0.5708008, 1.6132812, 2.8496094, 1.5693359, 1.3486328, 0.22265625, 1.0214844, -2.4960938, -2.8359375, 2.3496094, -1.4462891, 1.2509766, 2.0957031, -1.5439453, 2.6953125, 0.058563232, -1.9208984, 1.6748047, -2.1640625, 1.0361328, -1.7207031, -0.22595215, 1.1347656, -0.82177734, 1.640625, -0.9326172, 1.0224609, 1.5419922, -0.5444336, -2.3476562, 1.65625, 2.3183594, 1.3359375, -0.64160156, 0.3737793, -1.6875, 0.51464844, 1.7529297, -3.4394531, 0.94677734, 1.0068359, 0.4650879, -0.9926758, -0.30249023, -3.1621094, 2.6582031, -1.1318359, -4.4414062, -0.4362793, 0.0044288635, -0.48779297, 1.8330078, -0.41723633, -0.29101562, -0.8227539, -1.6992188, 1.3388672, -0.09173584, 2.3046875, -1.5742188, -0.17895508, 2.9042969, -1.3037109, -0.73535156, -1.5175781, -0.14929199, 0.40307617, 1.9111328, 2.0273438, 4.3476562, -0.24963379, -2.5507812, 1.5703125, -2.1054688, -1.2011719, 1.4785156, 0.04321289, 0.44262695, -0.31811523, 0.8095703, 3.0527344, 1.1699219, 2.6542969, -2.2988281, -0.3635254, -0.28344727, -2.9902344, 0.1315918, 0.36132812, -1.9921875, -1.6884766, -0.59765625, 2.3203125, -1.8525391, -1.0136719, 3.3085938, -2.3515625, 2.375, 0.6308594, -0.08282471, 0.22827148, -2.2246094, -0.734375, -0.31884766, 1.9335938, -1.6494141, -0.22558594, 1.0664062, -0.3371582, -0.2668457, 0.24414062, 1.0556641, -4.1640625, -0.94433594, -0.79248047, -2.0136719, 0.9008789, -2.9941406, -1.4121094, -0.9838867, 0.5263672, -0.31152344, 0.1385498, -2.2363281, -0.88378906, 1.4990234, 2.7988281, -4.09375, 1.0039062, -0.34960938, 2.2558594, 0.035064697, -1.8623047, -0.22033691, 1.640625, 1.3242188, 2.7382812, -0.57421875, -2.0605469, -1.2363281, 1.7382812, -0.1381836, -1.6337891, 0.7495117, -2.671875, -0.21887207, -2.8476562, 1.5996094, 0.85595703, -0.9428711, 0.8066406, 2.921875, -2.1796875, -0.67529297, 0.91748047, -2.9277344, 3.1757812, 0.48828125, 1.6015625, 0.8027344, -0.28173828, 1.5097656, -1.8320312, -3.0800781, -0.5839844, 0.87939453, -1.0537109, -2.1191406, 0.1652832, 0.0340271, -2.6210938, -0.4248047, 0.15319824, 0.84521484, 0.08343506, 0.84277344, -3.0117188, 0.21618652, -1.6279297, 2.8144531, 1.5458984, 2.4882812, -1.1113281, -1.0263672, -0.58496094, -0.22021484, -1.5566406, 3.3476562, -0.22265625, 0.5595703, 0.5703125, -0.9042969, 0.2722168, 0.8100586, -4.0820312, 1.7685547, 3.1230469, 0.6772461, 1.3076172, -2.7558594, -0.9370117, -0.73535156, 1.375, 1.9130859, 0.5878906, 0.031982422, -0.24328613, 1.0996094, 1.5585938, 0.20947266, -1.9609375, 0.38305664, -0.25341797, 2.21875, -2.75, 0.12878418, 0.53808594, 3.2265625, -2.7695312, -0.9785156, 1.1757812, -0.6230469, -0.33520508, -1.1523438, -0.4008789, 0.4345703, -0.19921875, 2.3886719, 0.13830566, 2.4589844, -0.3798828, -0.50097656, 0.7504883, 2.6875, 3.1757812, 0.72802734, 1.2617188, 2.0859375, 0.8666992, 2.2070312, -3.0898438, 0.8647461, 1.8291016, 2.5742188, 0.54589844, 1.6191406, -2.09375, 0.08746338, -0.54052734, 0.734375, 0.9277344, -2.0019531, 2.1289062, 1.1748047, 0.5830078, -1.8662109, -1.0029297, 1.0449219, 1.7148438, -1.7539062, -0.003528595, -0.9482422, 0.3701172, -1.0732422, -0.9589844, 1.0917969, -1.1513672, 3.5449219, -0.2097168, -2.7421875, 0.97216797, 2.8203125, 1.3183594, -1.2246094, 0.72216797, -2.6386719, -2.4550781, 5.34375, -0.6982422, -1.6640625, -0.008018494, -2.2929688, 1.4013672, 1.4462891, 0.22277832, 0.29663086, 1.7861328, -1.5800781, -2.0390625, 0.9248047, 0.56689453, 0.16101074, -3.1367188, 1.0927734, -0.6816406, -0.8803711, 2.1816406, -3.4941406, -1.9414062, 2.8886719, 0.40234375, 0.8964844, -1.9375, 3.1289062, -0.62402344, -2.4277344, 2.9257812, -1.0605469, -0.62353516, -1.7929688, -3.8261719, 0.6152344, -2.765625, -1.4423828, 1.3642578, 0.10870361, -0.84277344, 1.4658203, -2.875, -3.0878906, -1.3671875, -0.9941406, -0.51220703, -4.0859375, -1.0644531, 0.46728516, -1.3310547, 0.2980957, -1.8828125, 0.5834961, 2.7871094, 1.1416016, 2.0175781, -1.1962891, 0.31860352, -2.421875, 0.62402344, 0.6665039, 1.4277344, -1.1230469, -2.5585938, 1.3007812, -2.3164062, 1.5615234, 1.9863281, -0.6171875, 2.7324219, 2.3515625, -0.46923828, -1.2441406, 1.1757812, -0.8745117, 5.34375, -0.7324219, -2.9511719, 0.39404297, 0.18518066, 0.18969727, -1.0820312, -1.921875, 0.14562988, -2.3632812, -1.3232422, 0.08111572, 3.2519531, 0.9433594, 0.28051758, -2.4785156, -0.77734375, -0.20812988, -1.3994141, -1.453125, -1.5234375, 0.075805664, -0.9921875, -1.2753906, -1.1474609, -1.4980469, -2.6738281, -0.9863281, -0.21325684, 3.5664062, 1.296875, 2.1210938, 5.0859375, -1.4326172, -0.3708496, 1.8945312, -2.7480469, -0.19567871, 2.9511719, 0.7236328, -1.0722656, 1.9716797, -1.2636719, -1.7929688, -1.3271484, 1.7021484, -2.4921875, -0.3527832, 0.03945923, -2.3125, -0.5341797, -1.4785156, -2.8105469, -1.3476562, 1.2441406, -1.6992188, -0.54541016, -0.17553711, 0.43188477, -2.3007812, 0.23132324, 0.0124435425, -0.39013672, 1.3457031, 3.1035156, -0.93896484, 1.96875, 2.9785156, 1.0605469, 2.1328125, -1.5742188, -0.05895996, -0.62109375, -0.69628906, -0.7026367, -0.31958008, 0.5800781, 1.6044922, -1.8007812, 2.1503906, -0.32788086, -3.2363281, 4.1445312, 0.52783203, -3.0859375, 0.4104004, -0.20446777, 0.3203125, 0.45654297, -0.53759766, -3.1171875, -1.2949219, 0.9423828, -0.5620117, 1.6865234, 1.8876953, -2.0039062, 0.44750977, -0.5859375, -0.1616211, 0.041229248, -1.5888672, -0.45336914, -1.2529297, -0.113098145, -4.5585938, 1.0166016, 0.90527344, -1.7714844, -1.0878906, 2.6386719, 1.5048828, -1.3330078, -0.7631836, 1.7041016, 0.41552734, 0.21826172, 0.5859375, 0.6972656, 1.1298828, -2.6542969, 2.3945312, -2.3496094, 0.41845703, -1.9189453, 3.2089844, -1.7949219, -0.42504883, 3.53125, 2.0683594, 2.9707031, -4.3164062, 0.92578125, 1.1835938, 1.3974609, -1.5449219, 1.3466797, -1.3681641, -0.36816406, -1.1445312, -1.6845703, -1.1074219, -0.3642578, -2.3691406, -0.25439453, -1.7744141, -0.38354492, 0.8857422, 0.2310791, -0.33203125, -1.1660156, -1.09375, -1.1123047, 0.4819336, -1.2099609, 1.4179688, 0.64941406, 0.5605469, 0.23815918, -0.28955078, -0.72021484, -2.734375, -0.5571289, 1.6904297, -1.4208984, 1.9921875, 1.6708984, -0.87939453, 1.5722656, 3.2167969, -0.6010742, -1.3378906, 0.49658203, -1.3574219, 0.22094727, 1.8974609, -1.4951172, 3.4003906, -0.4807129, -1.6416016, 1.9306641, -3.0703125, 0.7026367, -0.53125, 1.5439453, -0.37402344, 0.11755371, -0.9980469, -2.1386719, -1.3486328, -0.21984863, 2.2402344, 1.1533203, -3.4003906, -0.3359375, -0.81591797, 0.07574463, -2.3339844, -1.8789062, -0.76220703, -1.1767578, -0.3972168, 0.06524658, -0.23962402, -0.6386719, 0.9199219, 0.3244629, -1.6542969, 0.056884766, -1.4150391, 1.1611328, 0.66845703, -1.2978516, -2.5898438, -2.8378906, -0.92626953, 1.1679688, 1.5576172, -0.30200195, -0.7265625, -2.3085938, 1.5712891, 0.16687012, 0.40405273, 1.84375, 1.828125, -1.2089844, 0.29077148, 0.7944336, 1.5351562, 1.84375, -0.3256836, 2.53125, -0.2680664, 1.9228516, 2.1054688, -1.7275391, 1.1357422, -0.9394531, 0.48120117, -1.2021484, -1.0292969, 2.0625, -1.4052734, -0.8881836, -3.5332031, -0.114868164, -2.7929688, 0.90722656, 1.7548828, 0.8745117, -1.6357422, -0.13989258, -0.97265625, 1.4072266, 0.83984375, -0.91015625, -0.79003906, -0.8486328, -0.7084961, 0.9116211, 2.1132812, 1.0107422, -0.8178711, 1.4873047, -0.23754883, 0.32055664, 2.3847656, -0.42700195, -0.52978516, 2.1230469, 0.5317383, 1.4511719, 1.9755859, 3.7011719, 0.028747559, 2.0253906, 1.9365234, -0.77685547, -1.0039062, 0.8022461, 4.2265625, 0.5654297, 2.2675781, 0.5307617, 2.5, -0.98339844, -0.6953125, -0.9272461, 0.53027344, 0.44213867, 1.9072266, -1.0566406, 3.0449219, -1.4580078, 0.70996094, -0.8486328, 0.99609375, -0.43408203, -1.6416016, 2.2304688, 0.25854492, -1.9765625, 0.93115234, -0.2866211, 0.6923828, -3.46875, 2.5175781, -0.04446411, -1.7949219, -0.46557617, 3.2734375, 1.3544922, 0.44580078, -0.10003662, 3.078125, 0.3256836, 1.7363281, 1.8261719, -0.5546875, 0.030197144, 0.6455078, 0.49414062, 1.140625, -1.9453125, -1.5878906, -0.11773682, -1.6904297, -2.1347656, 0.1619873, 0.6821289, -0.2097168, 1.2568359, -0.30126953, 0.56689453, 2.9296875, 1.5576172, -1.6796875, -0.08630371, 0.4008789, -2.0253906, 0.8432617, 0.49072266, -1.0615234, 1.8125, 3.1738281, -0.5410156, 1.3759766, 2.9199219, 0.31420898, 1.5322266, -0.058441162, -2.609375, 2.1914062, -1.9316406, 1.0722656, -0.4362793, 2.0371094, 0.8417969, 1.2646484, 2.5683594, -2.0292969, -0.116882324, -2.2558594, -3.2597656, 0.7421875, -2.3769531, 1.2392578, -1.4335938, -2.0957031, 1.484375, 1.5976562, 0.17626953, -3.4335938, 1.8730469, 0.359375, -1.8945312, 0.047973633, 0.74609375, -0.59472656, 2.1914062, -2.15625, 0.32763672, 1.0292969, -0.4729004, 2.671875, -0.4345703, -1.8710938, 0.04864502, 0.61376953, 0.24157715, -0.6972656, -1.3857422, 0.44702148, 0.19189453, 0.07385254, 3.4101562, -1.3945312, -0.8798828, -1.5732422, 0.37060547, -0.3100586, 2.3574219, -2.2246094, -2.4570312, -1.9541016, -4.8515625, 0.7963867, 0.53759766, -1.8066406, -1.2128906, 6.2265625, 4.5664062, -0.37402344, -1.9501953, -2.9609375, 0.6928711, 0.49438477, 2.8945312, -0.37670898, -0.8046875, -1.6787109, 0.36914062, 5.0976562, 0.27416992, -0.23828125, -0.9238281, -1.4638672, 0.7211914, -1.3925781, 1.6552734, 0.20654297, 0.8618164, 0.83984375, 2.3652344, 2.8476562, 0.5932617, 1.1386719, 3.0019531, -0.8725586, -2.2539062, 1.390625, -2.6640625, 1.1416016, 1.8398438, 0.4182129, 0.14990234, -2.0898438, 0.66308594, -3.5878906, -0.9428711]}, "B00005OU9D": {"id": "B00005OU9D", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches\nDescription: \nFeatures: Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time\n2 adjustable burners: For precise temperature control\nWind-blocking panels: Shield burners from wind\nPressure regulator: Pressure-control technology for consistent performance, even in extreme conditions\nRuntime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)\n", "embedding": [-1.4287109, -0.027694702, 1.1425781, 2.8359375, -0.8588867, 1.6943359, 0.09741211, -0.73291016, -1.7832031, 2.5664062, 1.8242188, -0.7993164, 0.15649414, -0.8383789, -0.06347656, -0.4555664, -0.18920898, 1.0986328, -1.296875, 0.010848999, 2.0449219, -1.3212891, 0.26367188, -1.59375, -0.37719727, 0.39331055, 3.0136719, -4.8125, 0.37524414, -0.0769043, 1.0351562, -0.81689453, 0.045806885, 3.0175781, -2.828125, 0.19470215, -3.1074219, 0.9404297, -2.7480469, -0.55029297, -0.5214844, -0.75, 3.2519531, -0.16247559, 0.03753662, -1.0009766, 1.8330078, 0.23046875, -1.8994141, 0.5341797, 0.2902832, 0.78466797, 0.25390625, 1.0361328, -0.82470703, 0.27661133, -0.55810547, 0.01876831, 0.77685547, 0.6694336, 0.4638672, -0.14086914, -1.9033203, 0.3527832, -1.8154297, 1.2275391, 1.546875, -1.3652344, -1.1806641, -0.09655762, 3.5664062, -0.9868164, -2.3554688, -1.7861328, -0.44360352, -1.2646484, -3.5683594, 0.30029297, 2.2089844, -0.3725586, -0.71191406, 1.3203125, 1.2695312, -1.3222656, -0.6357422, 0.6513672, -1.5341797, -1.03125, -0.3137207, 0.6801758, -0.70214844, 0.7607422, -1.4033203, -2.4589844, 0.9326172, -2.0996094, 0.6503906, 0.9614258, -0.7060547, -0.46972656, -1.0537109, 0.7363281, -1.5683594, 0.23632812, -2.9296875, -0.8432617, 2.8007812, 0.62109375, -3.8085938, 1.5, -2.7929688, -2.6933594, 1.7666016, 0.7519531, -0.23657227, 1.3798828, -0.81884766, 0.33618164, 2.8828125, -0.54345703, 3.7851562, -0.8901367, 2.3085938, -0.57910156, -0.34887695, 2.03125, -0.6352539, -0.18554688, 2.2402344, -0.23400879, -1.7021484, -0.40234375, 3.1679688, -0.47680664, -3.1582031, -1.0917969, -1.6591797, -0.69970703, -4.1523438, -0.09631348, -1.4775391, 0.98583984, 2.1699219, 1.6542969, -5.7578125, -1.7587891, 0.0016460419, 2.7695312, 0.15698242, -3.34375, 0.6386719, -1.1484375, -0.45117188, 0.05621338, 1.625, -0.4116211, -0.56591797, -1.8964844, 5.0429688, 0.20776367, -0.21936035, -1.8525391, -1.7626953, 1.7753906, 0.12658691, 1.0419922, 0.31933594, 0.90283203, -1.0527344, 2.4550781, 0.6855469, -3.140625, 0.42797852, 0.92578125, 0.7524414, -0.48413086, -0.7104492, 3.3476562, 1.2041016, -1.3925781, -4.171875, -3.5683594, 1.5322266, 0.87158203, -0.13635254, -0.31811523, -0.95166016, 0.14404297, 0.19628906, -1.4560547, -0.65625, -0.33203125, 0.5214844, -0.6665039, -2.6347656, -2.2382812, 0.6508789, -1.1064453, 0.71972656, 1.4736328, 0.23205566, 0.8300781, -0.46166992, 2.5742188, -2.1171875, -0.44091797, 0.41357422, -1.6962891, 2.7851562, 3.7421875, 3.2832031, -0.2705078, 1.6474609, -1.5458984, -1.9716797, -1.2373047, 1.0605469, 1.1396484, 2.1503906, 2.1679688, 1.1904297, -0.3864746, 0.38623047, -0.2220459, -1.1982422, 2.1425781, 2.8125, -0.6088867, -0.69433594, -1.6914062, 1.6074219, 2.0371094, -1.7275391, 0.4025879, 0.7265625, 3.1542969, 1.5917969, -1.6494141, 0.36572266, -1.2724609, -1.2763672, -0.19396973, 0.8959961, 0.17370605, -0.3095703, 0.8417969, 0.22924805, 0.96728516, 3.9433594, 0.35864258, -0.5600586, -0.46972656, -1.5146484, 1.7363281, -2.4726562, 0.1048584, 0.7036133, -0.43896484, -0.30908203, -2.7089844, 0.5800781, 2.40625, -1.4970703, -0.3737793, -0.52490234, -0.070617676, 2.96875, 0.43554688, -2.8671875, 0.9111328, 1.234375, 1.1171875, 3.3457031, 0.921875, 1.8769531, -2.2207031, 0.26757812, 3.5703125, -0.3203125, 1.8056641, 0.4345703, -0.66552734, 2.8378906, -2.2714844, -1.8691406, 1.3710938, 3.0859375, 0.1381836, -1.2587891, -0.30664062, 5.0625, -2.2695312, -2.2636719, 2.5546875, -3.9023438, 0.5673828, -0.44677734, 0.6479492, -0.022491455, -1.0830078, 1.9599609, -0.5107422, 0.19348145, 0.50341797, -3.4550781, -0.5786133, -0.07635498, -2.046875, 0.9550781, -1.4355469, 0.3227539, -2.609375, -2.171875, 0.86816406, -0.43017578, 0.29125977, 4.0625, -2.4726562, 1.3476562, 2.09375, 0.6357422, 0.5546875, 0.03692627, -1.3144531, 0.43286133, 0.7861328, -1.1103516, 2.890625, 1.1181641, 0.40014648, 0.07611084, -2.9921875, 1.8173828, -1.4326172, -2.7695312, -0.6254883, 1.2431641, -3.3652344, 1.0361328, -0.05331421, -0.42114258, 1.9150391, -3.2050781, 3.0839844, -2.5820312, -2.6152344, 0.0211792, 1.0888672, -0.013473511, 0.6850586, 1.4599609, 1.3769531, -2.09375, -2.6835938, -2.0566406, -0.020629883, -0.7207031, -1.3759766, -0.28881836, 0.8754883, 1.1367188, 0.7363281, -0.21850586, 0.25634766, -0.79003906, -2.65625, 0.23583984, -3.0878906, 0.50439453, -0.82177734, 0.44262695, 0.87402344, -0.54345703, -1.9033203, -0.7988281, 2.0371094, -0.17651367, 5.6640625, -0.42041016, 1.0136719, -0.69970703, -0.63623047, 0.039642334, -2.0078125, -3.8378906, 0.5917969, 1.4931641, 0.16955566, -1.5654297, -3.8164062, 0.47998047, -2.4941406, -0.25073242, -1.8144531, 0.5229492, -1.2207031, 0.30493164, -1.4394531, -1.3574219, -0.04095459, 0.41210938, -0.46435547, -2.0878906, -2.2011719, -0.2775879, -1.25, 1.2011719, 1.9130859, 0.26245117, 0.6455078, 0.5366211, 2.6230469, -0.3647461, 1.8574219, -2.2910156, -4.3125, 3.3671875, 1.1982422, 1.1220703, 1.078125, -1.8964844, -1.953125, -2.8847656, -1.4287109, 1.2431641, 1.9003906, 1.625, -0.42333984, 0.8671875, 1.5664062, 2.9082031, 0.25805664, -1.2792969, -0.5234375, 3.90625, -2.5019531, -3.0683594, 2.609375, 2.3417969, -2.7207031, -1.7939453, 0.14440918, 0.21972656, 1.4306641, 3.1484375, -0.23669434, -1.2246094, 0.25561523, 0.16369629, 2.28125, -0.43530273, 0.69677734, 0.08239746, 0.9868164, 0.5576172, 0.6972656, 1.0332031, 2.03125, 0.11199951, 1.5664062, 3.6074219, -1.7597656, 1.9296875, 0.5527344, 0.5234375, 0.77441406, 3.4316406, 0.01499176, -0.28271484, -0.9604492, -1.3457031, 1.6171875, -1.2050781, 1.0205078, 1.9511719, 1.5722656, -0.79785156, 0.6899414, -0.20922852, 1.1923828, 0.29516602, 1.3496094, 0.5942383, 0.031433105, 0.6333008, -1.5371094, -1.609375, -0.9921875, 3.2792969, -1.3173828, -0.8022461, 1.6816406, 1.921875, -1.4785156, -2.6269531, -2.640625, 1.109375, -0.5209961, 3.0371094, 0.7426758, -1.8769531, -0.80126953, -0.8540039, 0.84277344, 2.1621094, -1.5029297, -0.88427734, -0.9550781, -0.16882324, -0.71972656, 0.022216797, 1.8847656, 1.4189453, -1.7861328, 1.6435547, -3.6757812, 0.31030273, 1.2666016, -3.7460938, 1.1044922, 2.6621094, -1.6992188, 2.0507812, 0.13244629, 3.8417969, -2.671875, -0.22277832, 1.0371094, -1.0097656, -0.55615234, -2.3984375, -2.5039062, 1.7373047, 0.06304932, -0.32470703, 1.4697266, -0.69189453, -0.23925781, 0.48583984, -0.019058228, -2.7128906, -2.5996094, -1.7060547, -0.12371826, -2.8867188, 0.08831787, 0.5888672, -1.5537109, -3.2949219, -1.484375, 0.08673096, -1.5263672, 1.0195312, 1.6650391, -1.9697266, -0.4975586, -1.5244141, 1.7128906, 1.2587891, -0.2397461, 1.3085938, -0.3701172, 0.18359375, -2.4414062, 0.19262695, 3.1523438, -0.56884766, 1.7089844, 2.0898438, 2.0703125, -2.9765625, 0.609375, 1.9121094, 2.1367188, -0.33740234, -2.296875, -0.79541016, -0.9868164, -2.0625, -0.06628418, 0.2836914, -0.9770508, -1.8564453, 0.7949219, 1.4472656, 1.7119141, 1.6806641, -0.44848633, -0.50683594, 0.3881836, -0.18115234, -1.4326172, -1.0439453, -0.49389648, -0.6791992, -1.0683594, 0.8852539, -1.4960938, -0.49243164, -0.24450684, -0.40112305, -3.0917969, 1.1210938, 0.19494629, 3.4453125, 2.1113281, 0.56396484, -2.8125, 1.90625, -2.171875, 0.9716797, 0.5654297, -0.9941406, 0.26831055, 1.2636719, 2.3964844, -1.2763672, -1.9169922, 0.5292969, -2.4394531, -1.2001953, -1.7802734, 0.9160156, -1.2783203, 0.5102539, 0.84033203, -0.23742676, 1.2412109, -1.3330078, 0.0524292, 1.0292969, 1.6943359, -1.3837891, -0.2524414, 0.5517578, 0.65966797, 0.32739258, -0.9980469, -1.0078125, -0.6640625, 2.1894531, 0.84814453, 2.1484375, 0.3149414, -0.40649414, 0.42700195, -0.34643555, -1.2949219, 0.06286621, 0.12548828, 0.83984375, 0.27416992, 3.7890625, 3.0957031, -0.5859375, 2.7226562, 0.12023926, 0.12756348, 0.024520874, -0.25390625, 0.8847656, 1.7617188, -0.6015625, -3.1679688, 0.86865234, 2.8417969, -0.5571289, 1.4677734, 0.6044922, -0.78222656, -0.96240234, -3.7519531, 0.31933594, -1.5283203, -1.0732422, -0.73095703, -2.109375, 0.12359619, -2.1679688, 0.8901367, 3.0292969, 0.3540039, -1.1474609, 2.1601562, -1.21875, 1.5078125, -2.6894531, -1.9599609, -3.3085938, 0.80615234, 0.35546875, 0.23303223, 0.7495117, 0.35058594, 0.5551758, -1.2900391, -0.6386719, -1.3886719, 1.1123047, -2.9082031, -2.0234375, 0.2590332, -0.37524414, 0.14489746, -1.9414062, -0.43579102, -1.7167969, 1.7802734, 1.2392578, 0.33129883, -1.1650391, 1.9208984, -1.9345703, -3.4863281, -0.42773438, -0.31567383, -0.61572266, -0.72314453, 0.5698242, -2.1035156, -1.046875, -0.7285156, -2.53125, -2.8046875, 0.12121582, -0.2866211, 0.40942383, -0.6542969, 1.6982422, -0.10467529, 0.20166016, -0.56933594, 0.7739258, -0.7368164, -1.8037109, -2.6855469, 2.328125, -0.18139648, 2.1503906, 0.7602539, -0.67529297, 0.42651367, 1.2578125, 0.42041016, 0.03366089, 1.4199219, 0.45751953, -1.203125, 1.4960938, -0.30688477, 0.9111328, 1.7890625, -0.8725586, 0.765625, -0.5708008, -0.73291016, 1.3173828, 1.390625, 0.24194336, 0.64453125, 1.2001953, -0.37646484, 1.9111328, -0.73046875, 1.7705078, 2.5722656, -0.7192383, -1.5849609, -1.4619141, -0.97558594, 0.17797852, -1.0859375, -1.9863281, -0.8388672, 1.8808594, 1.4492188, 1.4306641, -0.96435547, 1.1289062, 1.0556641, 0.47338867, 1.0507812, -2.3496094, 2.9160156, 0.49389648, -0.4909668, -1.7705078, -1.9960938, 1.7412109, -1.2568359, 2.40625, -1.2646484, 0.57958984, -2.1484375, 0.86865234, -0.41235352, 2.0761719, 2.6308594, 2.1777344, -1.484375, 2.8046875, 3.5507812, -0.0003848076, 0.7451172, 0.23461914, -1.4199219, -0.4975586, 3.3769531, 1.3759766, -0.98095703, 2.9160156, -1.9375, 1.515625, -1.6894531, 0.10699463, 2.59375, -0.84765625, -1.7128906, -1.6435547, -1.03125, -2.3417969, 2.6660156, 1.6416016, -2.0761719, 0.72314453, 0.82373047, -1.0302734, 0.8383789, 1.6494141, 1.4462891, -0.56347656, 0.9189453, 0.9370117, 0.12487793, 2.0234375, -1.5439453, 2.640625, -0.0925293, -0.45629883, 0.64746094, 3.1035156, 0.6386719, 2.9746094, 4.15625, 1.6181641, 2.7070312, 1.4296875, 2.8144531, 0.7597656, 2.015625, 0.3786621, -0.47851562, -1.8417969, 2.9082031, 0.17321777, -0.44384766, -0.99072266, 0.29907227, -0.26000977, 0.3256836, -2.2109375, 1.0791016, 0.3305664, -5.59375, 1.1542969, 1.0205078, 2.9902344, 0.46020508, -0.5546875, 1.1269531, -0.30737305, -0.2841797, -2.0800781, -0.5546875, -1.9863281, 0.69091797, -1.7412109, -0.24621582, 2.1074219, -0.55566406, 0.45043945, -3.5078125, -2.2929688, -0.89501953, -0.1194458, 0.60302734, 1.3164062, 0.8666992, 3.15625, 2.2089844, -0.033325195, 0.2763672, -1.5224609, 0.81152344, 0.48046875, 3.1269531, 0.37109375, -0.51464844, 0.89501953, -0.89453125, -3.2050781, -4.5664062, 1.4863281, 1.5302734, 2.0742188, 1.6289062, -2.3242188, 3.0195312, 0.40527344, 1.5302734, -1.8916016, 1.640625, 0.41674805, -2.5039062, -1.8398438, 0.8198242, 0.30126953, 3.4960938, 1.5292969, -1.4931641, 1.59375, -1.2021484, 1.3994141, -0.5283203, -0.6455078, 2.7148438, 2.1328125, -2.1503906, 2.3671875, 1.2509766, 0.27612305, 0.24389648, 2.2910156, 2.4980469, -0.06237793, -1.0791016, -1.3525391, 1.8935547, -0.5288086, -0.20800781, -0.7792969, -1.546875, -2.2949219, 0.9345703, 0.6279297, -0.94140625, -1.7226562, 0.80810547, 0.8125, -1.5761719, 1.8095703, 2.6699219, -0.8779297, -0.05517578, -1.2324219, 0.203125, 0.28100586, -0.22302246, 0.31396484, -1.140625, -1.4267578, 0.8051758, 1.0019531, 1.8789062, 0.100097656, 0.86328125, -1.3310547, -0.41455078, -0.2705078, 0.22851562, 0.7167969, -0.94873047, -0.20825195, 0.44799805, -1.1904297, 1.2558594, -2.2421875, -0.8041992, -0.26391602, -2.84375, -1.7880859, -2.4921875, -0.04901123, 2.3515625, 2.75, -0.8754883, 1.8037109, -0.18847656, -1.9775391, -3.4492188, -1.5859375, 2.03125, 1.7265625, -1.0615234, 0.9116211, 1.9257812, 1.8710938, -1.84375, -0.65966797, -0.42529297, -0.14904785, 0.21459961, -1.0605469, 0.4572754, 1.9091797, -1.1318359, 0.3449707, 2.875, 0.81640625, -0.22570801, 0.8286133, -1.390625, 0.30639648, -2.09375, 0.49853516, -1.0888672, -1.8339844, -2.7480469, 0.2631836, 2.640625, 0.5371094, -2.5234375, -3.4726562, -0.6894531]}, "B004FPZAA6": {"id": "B004FPZAA6", "original": "Brand: Worthington\nName: Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar\nDescription: \nFeatures: Engineered design for lightweight strength\nRugged, damage resistant all steel construction\nRust inhibiting Durabond powder coat paint\nInteriors that are clean, dry and scale free\nComfortable hand-holds in the collar for easier lifting\n", "embedding": [1.7695312, 2.5507812, 0.8208008, -0.25976562, 0.7294922, -1.8398438, 0.97753906, -0.87158203, -1.0458984, 0.21923828, 1.2861328, 2.0234375, 0.85302734, -2.3828125, -1.4541016, 0.73095703, -0.6694336, 1.0234375, 0.42041016, 1.3349609, 1.8632812, 0.08850098, -0.58691406, -1.4492188, 1.5214844, -0.7441406, 2.7246094, -2.1523438, -1.0595703, -1.9609375, 1.8115234, 0.8544922, 2.4667969, 1.1699219, -0.55566406, -0.8383789, -0.5239258, -0.7026367, -2.4570312, 1.2958984, -3.5195312, 1.6767578, 1.9335938, 0.16711426, -4.015625, 3.1992188, 1.4970703, -0.9082031, 0.8076172, -0.078125, -0.7915039, 0.9033203, 0.6176758, 0.24523926, 1.1464844, 1.2939453, -0.99316406, -2.1015625, 0.74853516, 1.3466797, 1.9560547, -0.33422852, -0.5390625, -0.53271484, -0.3388672, 3.0390625, -1.3916016, 0.31884766, 0.57666016, 2.0214844, 2.2421875, 1.5673828, 1.5546875, -0.8461914, 0.0046844482, 0.5732422, -2.8417969, 0.6455078, 0.007843018, -1.4736328, 0.5449219, 1.6484375, 0.75, -1.8105469, -4.1914062, -1.4882812, -0.5620117, -0.27905273, -1.1611328, 0.75439453, -2.3320312, 1.6611328, -2.1074219, -4.734375, -0.19226074, 0.64160156, -0.25390625, 1.9140625, 1.9560547, -0.42333984, 2.3222656, 0.2697754, -0.61328125, 0.625, -0.86376953, -0.53125, -0.07006836, 0.9086914, -2.5683594, 2.2480469, -1.9394531, 1.9609375, 1.7246094, -0.20031738, -0.5830078, -1.2773438, -1.9775391, 0.3557129, 2.8730469, 1.0888672, 2.8476562, -1.6484375, 1.0927734, 0.48706055, -0.72558594, 2.0078125, 0.65966797, 0.7895508, 2.1855469, -1.6513672, 3.8515625, -1.3867188, 3.6679688, 1.3408203, 0.63916016, -0.01309967, 2.0683594, -1.3007812, -0.57373047, -0.88671875, -1.8662109, 1.7216797, -0.13696289, -1.1240234, -3.0117188, -1.2783203, -0.016418457, -0.35083008, -0.54541016, -0.8618164, 0.22705078, -0.77246094, -0.81884766, 1.4746094, 1.8554688, 2.3125, -2.03125, -0.7133789, 2.8046875, 3.2890625, 1.7275391, 1.5029297, -0.35424805, -0.05255127, -1.5791016, -1.7363281, 0.828125, -0.3046875, -2.671875, 2.0234375, 0.8334961, 0.08721924, 0.6635742, 0.62646484, -0.16027832, -0.35546875, 1.4316406, 3.2929688, -0.23168945, 0.53027344, -1.3671875, -1.2714844, -0.6459961, -0.2166748, 1.8935547, 0.089416504, 0.01727295, -0.6069336, 0.31640625, -0.15881348, -1.6796875, 0.1607666, 1.8623047, -1.0205078, 0.6694336, -3.1015625, -1.1308594, -2.828125, 0.88671875, 2.2929688, -2.0878906, -2.7265625, 2.78125, -1.2890625, -2.0273438, -2.2792969, 1.6953125, -0.42138672, -0.2697754, -0.79833984, 0.29003906, -1.515625, 2.3027344, -1.6152344, 0.5644531, -3.28125, 1.1269531, 0.93310547, 1.6816406, -0.8105469, -0.26489258, -0.095336914, 0.42163086, -0.72265625, 1.4511719, 0.99560547, -1.1396484, 0.66552734, -0.49365234, -0.8496094, 1.9775391, 2.4414062, -1.7685547, 0.24707031, -1.2939453, 2.1152344, 0.5097656, -0.4519043, 1.1738281, -0.37036133, 0.9711914, 0.68115234, -0.81396484, -1.8388672, 1.7910156, -0.69189453, -2.1074219, 0.1418457, 2.8183594, 1.1005859, 1.2314453, -0.16113281, -0.78027344, 1.5898438, -1.9355469, 1.8076172, 0.4128418, 1.0722656, -1.2089844, -4.3085938, 1.78125, -1.3623047, -0.9682617, -1.1308594, 0.18859863, 0.0065727234, 2.4277344, 0.2668457, -2.765625, 0.33666992, -0.4494629, 1.3896484, 0.7993164, -2.1054688, 1.5712891, 3.5449219, -1.5224609, 4.5039062, -0.7211914, 0.99072266, 0.77246094, 1.1943359, 2.4804688, -3.0117188, 2.2773438, 1.2900391, 1.7333984, -0.11431885, -3.8847656, 1.4785156, 5.65625, -1.4003906, -0.98046875, 1.2275391, 1.6591797, 1.8085938, 3.7421875, 0.45776367, -0.61621094, 0.27905273, 0.99658203, 1.5263672, -0.28686523, -0.97753906, -0.07312012, -1.7861328, 0.9169922, -1.3798828, 2.421875, -1.8535156, -1.0625, 0.5859375, -1.5859375, 0.07989502, -3.2675781, 0.4013672, 0.9194336, -1.7919922, 2.4765625, -0.80615234, 0.7495117, 2.0019531, 1.5166016, 1.2890625, 0.64941406, -0.12988281, -1.6708984, 0.9707031, -0.014793396, 1.4414062, 0.875, -2.8339844, 1.2119141, -0.17260742, -0.74316406, 1.4316406, -2.8730469, -2.7871094, 0.8095703, -0.16516113, 2.1875, 0.9682617, -1.7822266, 1.1113281, 0.94677734, -0.76953125, -0.3425293, 0.9741211, -1.2431641, -3.46875, 0.2541504, 1.9453125, -1.6601562, -4.6757812, -3.0390625, 1.5136719, -1.0449219, 1.3398438, 0.7060547, -0.2565918, -1.1748047, -0.9423828, 0.1026001, -0.26513672, -0.35302734, -1.9365234, 2.5429688, -3.8574219, 3.4121094, -0.10522461, -0.4753418, -1.2617188, 0.7504883, -1.6630859, -1.5097656, 0.5131836, 1.0039062, 5.1914062, 1.2216797, 2.5546875, 0.8251953, -2.03125, -0.81591797, -2.1347656, -2.0820312, 1.5009766, 0.3371582, 1.2060547, 1.5791016, -3.0820312, -0.27026367, -1.6591797, 0.31835938, 1.7714844, 1.5009766, -0.18481445, -2.375, 0.39916992, 0.92285156, 0.7885742, 1.8261719, 0.24853516, -2.421875, 0.025543213, 1.3300781, -0.39648438, -0.6640625, -0.2286377, 1.2470703, 0.5859375, -0.70947266, 2.875, -2.3984375, 1.4013672, 0.7597656, -2.6464844, 2.421875, 2.4707031, 0.5830078, 2.3320312, -2.203125, -0.008560181, -1.1894531, -0.4584961, 2.0097656, 2.46875, 0.86083984, 1.2246094, 0.7373047, -1.2041016, 1.8291016, -0.22387695, -1.6689453, 0.6401367, 0.6894531, -1.2822266, -1.4384766, 0.5058594, 1.21875, -5.3710938, -0.11151123, 1.5361328, 1.2841797, -1.6289062, 1.7460938, -0.8955078, 0.32592773, -0.6040039, 1.1298828, 1.0058594, -0.19116211, -0.45922852, 0.7631836, 1.5439453, -0.5864258, 0.21435547, 2.0039062, -0.08654785, 0.05718994, 0.81396484, 1.0185547, -1.1738281, -0.67285156, 0.22351074, 0.5595703, 0.10479736, 1.4433594, -0.30322266, 1.0380859, 0.68310547, 0.10650635, 0.8701172, -4.234375, -2.0800781, 0.2692871, -0.63427734, -1.5380859, -0.082092285, -0.94433594, 1.6992188, -2.7773438, 0.40283203, -0.5522461, 0.5541992, 0.30126953, -1.9316406, 0.29125977, -1.0253906, -0.88427734, -0.9213867, -1.109375, -1.8886719, -0.2944336, -1.6513672, -1.9736328, -1.5566406, -0.63964844, -0.19238281, 4.296875, 0.8745117, -1.8164062, -0.7915039, 0.14550781, 2.3183594, 2.7265625, -2.5527344, -0.19042969, -1.0175781, 0.15649414, 0.16113281, 1.1464844, -0.8730469, -1.1894531, -3.4023438, 1.2402344, -0.034088135, 1.375, 0.3527832, -0.9194336, 0.95166016, 0.099121094, -1.4804688, 1.4414062, 0.7392578, 1.9111328, -0.19763184, 1.84375, 0.8857422, 0.047180176, 0.070373535, -1.7587891, -1.3193359, -0.65625, 0.32788086, 0.6791992, 1.5546875, -0.10961914, -0.68603516, -0.4428711, 0.123168945, -0.5761719, -1.7714844, -0.5, 0.546875, -0.53808594, -0.57421875, -0.41186523, -0.22106934, -2.4375, -1.3134766, 1.9257812, 0.15368652, 0.35888672, -0.5390625, -1.9765625, 2.6816406, -1.640625, -0.3395996, -3.0019531, -0.2529297, -0.83496094, 0.35961914, -0.13232422, -1.8496094, 3.1601562, -0.41992188, 1.3867188, 1.3837891, 3.2636719, 1.4423828, 0.057495117, 1.1435547, -2.2792969, 1.7626953, 0.30688477, -1.2685547, 0.59228516, -1.5576172, 1.1328125, -2.3183594, 0.3395996, -0.23522949, -0.2836914, 0.5708008, 0.42895508, -0.8383789, 0.7758789, -0.1081543, -1.5546875, 1.4677734, 1.2089844, -2.3105469, 0.31396484, -2.7558594, 1.1708984, -0.79052734, 1.5419922, -0.8588867, -0.9042969, 1.7041016, 0.3540039, -1.2041016, 2.2558594, 3.7695312, 1.171875, 0.5419922, 1.7148438, -2.2851562, -3.3984375, 2.6171875, 0.07946777, -1.4882812, 2.2460938, 0.1899414, -0.25976562, 2.8671875, -1.5517578, -0.97314453, 1.2998047, -1.2480469, -0.47851562, -1.6132812, 1.0244141, 0.97753906, 2.3476562, 0.6904297, -2.109375, 0.75, -1.6816406, -0.0769043, 1.5742188, 0.88134766, -1.6855469, 0.609375, 0.3527832, -1.9580078, 2.8652344, -2.296875, 0.6933594, -0.30908203, 0.27905273, 1, 1.3242188, -1.5185547, 1.2041016, -1.1513672, 1.1191406, 1.6445312, 1.2949219, 0.54833984, -0.7626953, 0.88671875, 2.1367188, 1.6259766, 0.20544434, -0.13110352, 1.7539062, -2.7167969, -0.6855469, -0.10131836, -1.3007812, 0.6611328, -0.9243164, -0.3166504, 1.0966797, 2.2617188, -1.3720703, 2.4453125, 0.33764648, 0.2310791, -0.2722168, -3.0878906, -2.5449219, 1.3554688, 1.1035156, 0.8955078, -1.0712891, 1.7275391, 0.31274414, 0.4177246, 1.6474609, -0.64697266, -0.6582031, 0.02029419, -1.0029297, 1.1357422, -1.3574219, -1.8779297, -3.171875, -0.27197266, -0.5234375, 1.9013672, -1.1787109, 1.6630859, 1.7792969, -1.5957031, -0.122558594, 0.1439209, 0.89746094, -2.8769531, -0.23205566, 2.0917969, 2.0429688, -0.39111328, -0.9394531, -2.4296875, -1.2861328, 0.59472656, 0.98095703, -0.8911133, -0.46801758, 0.25219727, -1.9521484, -2.953125, -0.032928467, 0.03817749, -1.3408203, 1.0458984, -1.4033203, -2.3261719, 1.7207031, -1.4550781, -0.76708984, -2.4101562, 0.4152832, 0.8574219, 0.40771484, -1.1162109, -1.59375, -0.38623047, -0.6879883, -1.3046875, 0.06781006, 1.1201172, -0.7104492, -2.1113281, 1.5234375, -0.3251953, 0.67822266, 1.1035156, -0.08251953, 1.5927734, 1.1201172, 1.3125, -1.2529297, 0.37719727, -1.1259766, -2.234375, 1.4482422, -1.1064453, -2.3144531, 0.29370117, 0.5180664, 0.14245605, 2.3710938, 1.4384766, -1.6611328, 1.1855469, 1.1972656, -1.5810547, 1.34375, 1.5830078, 2.8203125, 1.5351562, 3.4492188, 0.78808594, -0.75341797, -2.0859375, -2.6132812, 0.31396484, 1.2607422, -1.4970703, 0.5131836, 0.42138672, 1.7783203, 1.4130859, 0.09448242, 1.8935547, -1.4541016, -1.3632812, -0.7993164, 0.2878418, -4.15625, 2.4941406, -0.43579102, -2.1796875, -0.9482422, 2.2773438, 1.0625, 1.9736328, -0.79833984, -0.088134766, 1.1445312, -0.6621094, 0.004585266, -1.7568359, 0.46411133, 0.73046875, 2.6367188, -0.5805664, 0.23876953, 2.6074219, -0.76953125, -1.2910156, 1.6982422, -0.9902344, 0.099365234, 0.578125, 1.1220703, 0.62890625, -1.0253906, -0.97314453, 1.0966797, 1.2998047, -0.04421997, -1.1689453, -2.546875, -1.7177734, -1.2392578, -0.89404297, -3.4804688, 1.2607422, -0.02520752, 1.0019531, 0.38354492, 0.55810547, -2.4316406, -0.8989258, 0.022033691, 0.43286133, -2.1953125, -0.28759766, 1.0712891, 0.9614258, 2.2265625, -2.8867188, 2.765625, -0.12225342, 1.1308594, 0.3774414, -1.9072266, -0.97802734, 1.2373047, 0.59765625, 1.7441406, 2.9492188, 0.72314453, 0.15307617, 0.6582031, 0.48535156, 3.1523438, -0.123168945, -0.57128906, 1.0390625, -1.4746094, 1.1279297, -0.98291016, 1.1884766, -1.0712891, 1.2382812, 1.2841797, 0.8413086, 0.8623047, -4.078125, -0.57421875, -0.65185547, 1.8408203, -1.1064453, 0.9116211, 0.14929199, -1.6123047, 1.2744141, -0.51708984, 2.9433594, 1.7685547, 0.35107422, 0.2685547, -0.39038086, -1.0625, -1.1289062, -1.0146484, -1.1904297, -1.5058594, 0.23986816, 0.0048065186, 0.2878418, 0.13513184, -0.7792969, -0.9121094, 0.56689453, -2.1230469, -0.99560547, -1.6210938, -1.2958984, 2.3671875, -0.013450623, 2.1679688, 1.7285156, 1.7734375, 1.7851562, 0.65625, -3.828125, 1.1035156, 0.9116211, -0.84277344, 1.2910156, -1.3007812, 0.26733398, -2.6054688, 1.0263672, -2.2265625, -1.3955078, -0.65234375, -5.1601562, 0.6040039, 0.5175781, -1.5029297, 2.0488281, 1.4482422, 0.43188477, 0.69873047, 0.33911133, 0.36694336, 2.3417969, -2.5136719, -1.2255859, 1.8486328, -1.6611328, 1.7978516, 0.053863525, -2.0507812, -1.9765625, 2.2695312, 0.80078125, 1.1904297, 2.8398438, -0.47998047, 1.8945312, -1.1240234, 1.3886719, 0.7817383, -0.5541992, 0.5283203, 1.1621094, -1.1064453, 1.3720703, -0.95996094, -1.1162109, 0.50683594, -1.9394531, 1.4160156, 0.5180664, -1.4433594, -0.33154297, 0.027038574, -0.52001953, -2.4980469, 1.4658203, 1.7880859, 0.36083984, -0.45043945, -0.80322266, 2.6015625, -1.1953125, -1.3291016, -1.0048828, -1.2666016, -0.13378906, -1.3173828, -1.0585938, -0.16833496, -1.6474609, 1.7216797, -0.6455078, -0.6201172, -0.53466797, -0.047698975, 0.0033473969, 0.8491211, -0.4375, 0.23803711, -0.97753906, -1.0664062, 0.45751953, -0.8129883, -2.5273438, 2.390625, -0.5864258, -1.8183594, -2.0078125, -3.9277344, 0.5131836, -0.1776123, -0.19555664, 1.8427734, 1.3583984, 2, -2.4765625, -0.90722656, -0.93066406, 0.035125732, 0.5751953, -3.2832031, 0.7241211, -0.3479004, -1.3027344, -0.15405273, 2.9023438, -0.14025879, 0.13049316, -0.46850586, 4.0703125, -0.6855469, -0.8300781, -0.81103516, -0.671875, -2.1425781, -2.5683594, 1.6367188, 0.56689453, 0.17749023, -1.8515625, -1.7880859, -1.4091797]}, "B07RJDY54G": {"id": "B07RJDY54G", "original": "Brand: GasSaf\nName: GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS)\nDescription: Converts 1/4\" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

          For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

          Please double check your propane appliance connection before you order.
          (2 PCS)\nFeatures: Standard P.O.L. tank connection and 1/4\" male NTP to male POL, built-in excess flow protection(2 PCS)\nProvides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks\nUse for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly\nIt fit for BBQ, camping stoves, propane heater, or cooking outdoor\nEasy and quick to install to your propane equipment\n", "embedding": [-0.85595703, 2.2519531, 1.6240234, 0.76904297, -0.45532227, -0.9614258, 0.40722656, -0.25146484, 2.171875, 1.5214844, 1.2177734, -0.25927734, 2.0761719, -2.5390625, 1.6142578, 0.9838867, 1.2744141, 0.36547852, 1.6777344, 2.0039062, 1.5703125, -0.3955078, 1.890625, -1.6777344, 0.08111572, -1.4833984, 2.3515625, -1.9267578, 0.13623047, -0.5878906, -0.46069336, -0.5390625, -1.0791016, 1.6542969, -0.75341797, -2.1914062, -0.037628174, -1.0507812, -3.9511719, -1.4052734, -2.1367188, 1.4882812, 1.4287109, -0.890625, -3.2167969, -1.5791016, 0.79345703, -1.265625, 0.41455078, -1.5478516, -0.51171875, 1.3232422, -1.7548828, 0.92285156, -0.9951172, 0.2578125, 1.6259766, -1.8623047, -0.53564453, 2.6328125, 0.35620117, 1.3164062, -2.1386719, 1.7402344, 0.3305664, 0.7729492, 0.3947754, -1.4609375, 0.24255371, 1.0029297, 0.59277344, 2.1933594, 1.03125, -0.123535156, -1.84375, 2.0546875, -2.3496094, 0.75878906, 0.9091797, -0.22521973, -1.0039062, 0.8588867, -0.7006836, -3.3886719, -0.49780273, -1.0371094, -1.0771484, 0.6274414, 1.2275391, 0.5390625, -1.3564453, 1.4394531, -2.5566406, -3.1503906, 0.2932129, 1.8378906, 1.0927734, 2.4941406, 1.9726562, 0.53027344, -0.01713562, -0.26171875, -0.20861816, 2.1757812, -2.2480469, -0.5390625, -0.37231445, 1.6269531, -2.765625, 0.75146484, 1.5439453, -1.2236328, 3.5878906, -1.6162109, 0.6616211, -2.8613281, -0.92822266, -2.5195312, 2.2734375, -0.3388672, 4.5859375, 1.5957031, 1.4892578, 0.18017578, 1.8212891, 1.0693359, -1.8183594, -0.09088135, 1.5595703, -0.7338867, 0.88427734, -0.11755371, 2.421875, -1.9775391, 1.4228516, -2.390625, -0.79052734, -2.5175781, -1.4980469, -0.17443848, -3.5039062, -0.8095703, 1.8300781, -1.2070312, -3.9667969, 1.75, -2.6152344, 1.0849609, 2.0175781, -1.5341797, 0.9272461, -2.1640625, 0.30908203, -2.125, 3.2753906, 1.3681641, 0.9667969, -2.109375, 2.2226562, 1.2568359, 2.2773438, -1.6660156, -1.9248047, -0.3564453, 0.5727539, -3.8261719, 1.0683594, -0.021713257, -0.8461914, 0.94873047, 0.546875, -1.0488281, 0.5073242, 0.20031738, -1.4287109, -1.2783203, 2.5253906, 1.7460938, 1.5107422, -0.9550781, -5.3515625, -1.0244141, -0.3791504, -2.0332031, 1.0273438, 0.7080078, -0.16918945, -0.8754883, 0.40649414, -0.30981445, -3.1679688, 0.15393066, 0.98095703, 0.4567871, 0.01939392, -4.796875, -2.0957031, 0.42651367, 1.3515625, 1.3056641, -1.0429688, -0.44433594, -0.9692383, 1.1513672, -3.2167969, -1.1259766, 1.6132812, -0.24145508, 1.2509766, 2.8359375, 0.057434082, 0.027633667, 1.6513672, -0.21118164, -0.6699219, -1.2304688, 1.7246094, 3.34375, 1.9775391, -0.48486328, 0.85253906, 0.3479004, 1.1660156, 1.2373047, 3.265625, 0.10418701, -0.009498596, 1.1533203, -2.4042969, -0.22192383, 3.4570312, 1.5869141, -1.078125, 0.40185547, -0.022033691, 2.3671875, -0.17651367, -0.24816895, 1.2763672, 0.98583984, 0.096069336, -1.5478516, -1.9511719, -0.9897461, -0.9003906, -0.53222656, -1.2529297, 0.04345703, 0.8041992, 0.2208252, 0.62402344, 0.92041016, -0.029434204, -2.0097656, -2.8046875, 0.8515625, 1.7646484, 2.1816406, -0.34326172, 0.43408203, 1.3447266, 0.13317871, 0.48510742, 1.9941406, 1.8330078, 1.1611328, 1.9462891, -3.1347656, -0.52978516, 0.8417969, -1.09375, 2.8066406, 2.2519531, -0.49072266, -0.9321289, 0.96484375, -2.5351562, 1.8007812, 0.16809082, -0.091918945, 1.6005859, -1.7958984, 0.96972656, -3.0527344, 0.9838867, 2.2890625, 1.6142578, 1.0908203, -1.7929688, 0.37695312, 3.453125, -1.2832031, -1.3515625, 1.2939453, 3.8046875, 1.1269531, 2.4335938, 0.5126953, -0.6196289, 0.17578125, -0.8745117, 0.92529297, -1.6435547, 0.91064453, 3.375, -0.7548828, -0.8173828, -1.5820312, 1.2197266, 1.4150391, -0.72558594, -0.14245605, 0.07269287, 1.6816406, -1.7558594, -2.3984375, 1.4287109, -0.9970703, -1.3818359, 2.0078125, -0.4165039, 0.5800781, 0.18261719, -1.5185547, 0.11767578, 0.87841797, -2.4472656, 1.6289062, 0.046081543, 1.3525391, 1.5185547, -1.3730469, 0.69091797, -2.8613281, -0.28027344, 2.3964844, -1.4472656, -1.3046875, 2.2460938, -2.2128906, -1.5664062, -1.0253906, 0.43847656, 1.7060547, 1.2578125, 0.2553711, -2.3574219, -0.12121582, -0.31152344, -1.9130859, -0.57128906, 3.3574219, -0.068359375, -0.9272461, -0.008308411, -0.7319336, 0.33007812, 2.1152344, -2.0878906, 0.043273926, 0.6274414, -0.35205078, 0.70703125, -0.7504883, -0.28320312, -1.9462891, 1.3642578, -3.671875, -0.7973633, -0.32910156, 0.8232422, -1.5273438, -0.5683594, -0.87890625, -2.0136719, 0.12243652, -0.3642578, 1.4726562, -1.2109375, 2.4414062, -1.2197266, 0.07366943, 0.7441406, -2.0175781, -3.6855469, 0.22290039, -0.28466797, -0.7026367, 0.19592285, -3.2089844, 0.05154419, -0.39453125, -0.03668213, -1.6367188, -0.33569336, -0.033935547, -0.32495117, 3.0625, -0.5859375, 1.421875, 1.546875, -0.28271484, -0.9326172, -0.62890625, 0.0058059692, -0.034973145, 0.16906738, -1.8398438, 0.44873047, 0.066833496, -0.5332031, 1.7666016, 0.79345703, 0.075927734, 0.5966797, -1.2431641, -0.5991211, 1.0869141, -0.38305664, 1.03125, -0.5913086, 0.56689453, -1.6445312, -0.055633545, 4.1054688, 2.140625, 4.0585938, 1.2011719, 0.5136719, 0.44726562, -0.6069336, -0.89990234, -1.0527344, 0.19702148, 4.0078125, -1.5820312, 0.39233398, -0.36791992, 1.3105469, -3.3378906, 0.64404297, -0.1640625, -0.22314453, 3.8867188, -0.5986328, -1.2402344, 1.0244141, -0.9638672, 1.9492188, -0.091918945, 0.12927246, 0.37817383, -0.5473633, -0.16503906, 0.040222168, 1.3828125, 0.53564453, 0.27856445, -0.2529297, 0.8544922, -0.0007457733, 0.94384766, 0.07293701, -0.17248535, -0.9746094, 0.6035156, 0.91552734, 0.2524414, 2.0058594, -0.44726562, 1.0849609, 1.0439453, -2.1328125, 0.75097656, 1.1113281, 0.9838867, -0.9057617, -0.22607422, -0.7524414, -0.18139648, -0.29467773, 1.0595703, 1.9130859, 1.4130859, 1.2246094, -0.14221191, 0.14343262, -1.7441406, 1.9921875, -1.0136719, 1.8466797, -0.55126953, -0.6386719, -1.2138672, -2.1015625, -1.8466797, -3.8886719, -0.6586914, 3.4335938, 0.65722656, -1.1464844, 0.2993164, 0.75097656, 1.2480469, 1.5078125, -1.2734375, -0.15063477, -0.4321289, 0.4819336, -0.47631836, -1.2646484, 1.0732422, 1.0820312, -3.0449219, -0.16308594, 0.017410278, 2.4023438, -0.46289062, 0.8774414, -1.0664062, -1.3359375, -1.5273438, 1.2978516, 0.09503174, 1.7099609, -0.20422363, 1.7744141, 0.87158203, -1.5253906, -1.6113281, -0.80322266, -5, 1.0214844, -1.4521484, 0.14941406, 2.3320312, 0.7441406, -0.11975098, 2.46875, 1.7714844, -4.9570312, -1.1318359, -1.5068359, 1.7509766, -2.8554688, -1.5263672, 1.9833984, 2.6621094, 0.4284668, -1.1953125, -0.13061523, -1.7617188, -1.6337891, -1.5644531, -0.40966797, -0.5913086, -1.9736328, 1.0683594, -0.60498047, -1.8164062, 0.48095703, -0.47021484, -0.6582031, -2.8613281, 2.2011719, 0.99072266, 0.032196045, -0.52685547, 3.9472656, 3.5175781, -0.42504883, -0.78759766, -0.5151367, 2.4707031, -0.095336914, -3.5722656, -1.4941406, -1.2568359, 1.5380859, -1.5009766, -0.9091797, 0.8154297, 0.39282227, 0.12988281, 1.9794922, 0.67822266, 1.2050781, -1.0253906, -3.3710938, 0.6816406, 0.6064453, -1.1455078, -0.035308838, -0.56933594, 0.06573486, -0.10217285, -0.94091797, -3.5351562, 0.3828125, -0.23522949, 0.14221191, -2.1582031, -0.02053833, 0.7114258, 1.0996094, 0.009941101, 0.11669922, -0.36572266, -0.7084961, 1.9003906, -0.32788086, -0.42041016, -0.88183594, -1.7402344, 1.3496094, 2.3613281, -0.18896484, 0.4350586, 0.3413086, 1.2587891, 0.08520508, 0.45654297, 1.1376953, -1.921875, -0.5341797, 0.64941406, -2.1992188, 2.2539062, -0.2993164, 1.0761719, 0.7314453, -2.1347656, -1.9619141, 1.8837891, 3.0332031, 1.3417969, 0.42578125, 0.5488281, 1.7148438, 3.5917969, 1.1015625, 1.3320312, 0.51464844, -1.4882812, 0.09136963, 1.1494141, 2.53125, -2.2070312, 1.8388672, 1.8486328, 1.6425781, 2.5917969, 0.7548828, 0.6245117, -2.046875, 0.17504883, 0.37573242, -1.0625, -1.4658203, -0.62158203, -0.39746094, 1.2128906, -1.1591797, -1.7871094, 0.67041016, 1.2578125, -1.7949219, 1.4804688, 0.6010742, 0.36669922, -0.8388672, -3.4003906, -1.8378906, -1.5195312, -0.56591797, -0.2685547, -1.3183594, 1.7402344, 1.8134766, 0.9057617, 2.7460938, 0.3798828, -0.27954102, -0.8720703, -0.20141602, -0.3557129, -1.2695312, -2.3398438, -0.9501953, 0.6826172, -0.07891846, 0.28466797, -0.68359375, -0.28808594, 0.8071289, -2.4199219, -1.8974609, 0.21008301, 0.7944336, -0.13171387, -0.72558594, 2.7714844, -0.15612793, -0.5854492, -0.9975586, 0.037475586, -0.6894531, 2.8203125, 2.484375, 0.3569336, -1.1796875, -0.2709961, -3.0449219, -5.0351562, -0.68896484, 0.8339844, 1.0390625, 1.4775391, -3.6835938, 0.31811523, 2.6542969, -0.96728516, 0.6689453, -2.7246094, 1.3613281, -0.15820312, 0.16381836, 0.20483398, 1.0136719, -0.4790039, 0.5024414, -0.25732422, -1.6367188, -1.1582031, -3.3574219, -2.3320312, 2.0507812, -2.140625, -1.9589844, 2.1835938, -0.6870117, -2.1210938, -0.59814453, 1.3818359, -2.9238281, 0.80371094, -3.265625, -0.29614258, 1.1103516, -1.2119141, 0.3100586, 0.48339844, 0.23083496, 1.5859375, 2.4277344, 2.21875, -1.9609375, -1.0371094, -0.20983887, 0.6982422, -0.023391724, -0.7890625, 1.2431641, -0.7783203, 2.71875, 3.3710938, -0.6074219, -1.2636719, -1.3427734, -1.6816406, 0.5522461, -0.10406494, 0.51904297, -0.62597656, 1.0039062, -0.23608398, -0.7832031, -0.24023438, -0.6928711, -0.49829102, -0.90527344, 2.296875, -2.2988281, 2.2441406, 0.45581055, -1.7421875, -3.3828125, -0.5546875, 3.0664062, 1.0439453, -0.51464844, 2.0332031, -1.1435547, 2.0058594, 1.53125, -0.59765625, 1.5996094, -0.015007019, 0.33740234, -0.82666016, -1.6835938, 1.3857422, -2.171875, 0.8847656, 1.3720703, -0.3071289, 0.65527344, -0.35229492, 1.9648438, -2.0644531, -0.11853027, 0.5073242, 0.42260742, -2.3925781, 0.10070801, -0.62109375, -1.9462891, 1.3710938, 1.0527344, -3.0019531, -1.8681641, 1.9882812, -0.98779297, -1.0234375, 2.2851562, 1.8554688, -1.4775391, -2.2167969, 1.5498047, -1.0488281, -1.3007812, -0.5576172, -2.3886719, -0.42749023, 1.0048828, -2.8945312, 0.33984375, 1.0410156, 2.5449219, 0.5957031, 0.20031738, 1.5898438, 2.5507812, -0.2800293, 2.4746094, 3.8222656, -0.5366211, 1.5986328, 1.2119141, 2.8027344, 1.8632812, -2.8457031, 0.87060547, 0.7475586, -1.2519531, 0.7236328, -1.4160156, 0.390625, 0.055023193, 0.034606934, -0.7480469, -0.024932861, 2.5097656, -3.1738281, -0.32421875, 0.36743164, -2.3066406, -2.0605469, 1.6962891, -2.3632812, -0.40356445, 0.5307617, -0.4892578, 1.8613281, 0.50146484, -1.6269531, 0.01222229, 0.14807129, 2.5996094, 0.75439453, 0.8696289, -2.1757812, -3.0351562, 1.6328125, 2.4824219, 0.38330078, 0.7915039, 0.8232422, -0.7626953, -0.20275879, 1.71875, 1.1201172, -1.1376953, 1.6708984, -1.6708984, 1.7695312, 2.7421875, -0.49951172, 2.2890625, 1.0703125, -0.8183594, -4.1640625, 1.4316406, -1.4941406, -1.7734375, -0.59472656, -4.0859375, 0.3076172, -1.9277344, 0.4753418, -4.53125, 0.0635376, 0.60546875, -1.7421875, 2.0253906, -0.0892334, -1.6425781, 2.5703125, 0.8754883, -0.48876953, -0.6743164, 2.5253906, 1.6542969, -0.9448242, -0.111328125, 0.48046875, 0.45751953, -0.7861328, 4.2109375, 0.05886841, -0.39331055, -0.19750977, 0.35620117, 1.2490234, 1.9296875, -0.859375, 0.06933594, 1.6376953, 0.8017578, 0.15930176, -1.8447266, -0.9604492, 0.5058594, -0.3642578, -0.27856445, -0.7792969, -0.97021484, 0.4423828, 0.84375, -1.9697266, -0.33813477, 1.2109375, -2.7128906, 1.0517578, 1.2373047, -2.3769531, -0.5473633, -1.3066406, 1.1748047, -1.8886719, 1.2011719, -1.1708984, 0.67333984, -1.2246094, -0.21179199, -1.0869141, -0.5341797, -1.9589844, -0.9042969, 0.9785156, 1.5810547, -1.4033203, -0.76416016, -2.1074219, 1.9238281, 0.8076172, 0.70410156, 0.77441406, -1.171875, -0.72216797, 1.5498047, -1.2861328, -0.56591797, 0.054870605, 2.2167969, 0.62841797, 1.4638672, -0.9658203, -1.2734375, -0.9580078, -2.0019531, 0.84716797, -0.27954102, -1.8603516, 1.140625, 2.1640625, 2.3300781, -2.09375, -0.24682617, 0.75146484, 0.43066406, 1.8164062, -1.4472656, -0.99365234, 0.48095703, 0.80566406, 1.2451172, 2.3691406, 4.6640625, -0.5419922, -0.71875, 1.1455078, -1.3632812, -0.6323242, -1.4443359, -0.48291016, -0.99365234, 0.9057617, 1.4570312, 2.8710938, 0.04385376, -2.2871094, -1.2841797, 1.2529297]}, "B00L1RSKHQ": {"id": "B00L1RSKHQ", "original": "Brand: KitchenAid\nName: KitchenAid Built In Head Propane Gas Grill in Stainless Steel\nDescription: \nFeatures: Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions\nNo assembly required\nPackage Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H\nFull stainless Steel construction\n", "embedding": [-1.5117188, 0.8676758, 2.734375, 1.3027344, -0.3791504, 0.7421875, -1.8916016, -1.3359375, 0.009231567, 2.1835938, 0.6538086, -0.328125, -1.7851562, -1.4072266, 0.55615234, 0.053344727, 1.3476562, 0.9995117, 2.8710938, 0.6533203, 0.6347656, -0.019760132, 0.8232422, -0.55126953, 0.47436523, 0.99365234, 2.8144531, -3.4355469, 0.18579102, -1.6044922, 0.42529297, 0.6040039, 0.5541992, 0.48120117, -1.6591797, -1.4814453, -2.1171875, 0.7495117, -4.515625, -0.9033203, -0.9003906, -1.5986328, -0.08929443, 1.2890625, -2.1660156, 1.0019531, -0.41015625, 0.87646484, -2.8066406, -0.17297363, 0.95410156, 0.3449707, -2.0292969, 2.6699219, -0.99316406, 1.7333984, -0.12249756, -2.0957031, 0.34057617, -1.8154297, 2.625, 0.2668457, -1.5625, -0.5175781, -1.4853516, -0.64208984, 2.3066406, -1.1269531, 1.1054688, 0.35961914, 2.1464844, -1.6640625, 0.44384766, 0.32104492, -1.7666016, -2.4960938, -2.3027344, 0.24658203, 0.3786621, -0.020004272, -2.546875, 1.1650391, -0.57958984, -2.8007812, 0.37670898, 0.33569336, -0.9296875, -3.4023438, 0.5600586, 0.63427734, -0.2524414, 3.0371094, -2.8984375, -1.7480469, 1.2685547, -0.67041016, -0.16638184, 1.4296875, 0.43237305, -1.1513672, -1.1201172, 0.5625, -1.046875, -0.6899414, -0.76123047, -0.7993164, 1.5683594, 0.097473145, -4.6484375, -0.21386719, -0.39770508, -0.32177734, 0.57958984, -0.42993164, 1.0126953, -0.106933594, 1.8564453, 1.8125, 2.3378906, 3.9667969, 2.9179688, -0.12719727, -0.51171875, -0.24450684, -0.2265625, 1.6220703, -2.3730469, 2.6503906, 5.5507812, -1.8339844, -0.80615234, -2.1972656, 3.6679688, -1.0810547, -1.5820312, -1.4941406, -0.42749023, -0.8305664, -2.125, 0.88623047, -1.3476562, 0.7216797, 0.69091797, -0.17102051, -4.0351562, -1.7695312, 0.09680176, 0.88964844, -0.82714844, -1.7060547, 0.85791016, -1.8173828, 1.5439453, -0.91796875, 2.4257812, -0.6142578, -1.9355469, -2.0820312, 4.171875, 0.8901367, 1.3427734, -2.7539062, -1.3896484, 1.3955078, 1.7822266, -1.2509766, -1.0683594, 1.3212891, 1.1279297, 1.7138672, 0.5498047, -1.8310547, -0.78271484, -0.37353516, -0.4086914, -0.83203125, 1.0009766, 1.421875, 0.47387695, 0.97216797, -1.859375, -3.703125, 0.29125977, 0.8364258, 1.1845703, -0.96191406, 1.2939453, -0.066101074, 2.2695312, 0.046691895, 0.12866211, -0.36669922, 1.5908203, 0.041900635, 0.90234375, -1.0917969, -0.47070312, -1.3251953, 0.18457031, 0.32250977, -0.9194336, -0.87597656, -0.5214844, -0.43579102, -0.6352539, -1.4375, -0.83691406, -3.8769531, 1.2373047, 3.7128906, 3.171875, -2.2402344, 1.890625, -2.2773438, -0.40234375, -1.8349609, 0.9902344, 0.53808594, 3.1914062, 2.0078125, 0.10467529, 1.3417969, 0.7128906, 1.5146484, -0.06842041, 0.67626953, 1.4013672, 3.75, -0.83691406, -0.5083008, 2.5253906, 1.1308594, -0.5444336, 0.10192871, -0.71875, 1.7314453, 0.23144531, -1.0351562, -1.2441406, 1.4316406, 1.7158203, -1.0957031, -1.2470703, -3.0664062, -1.7988281, -0.16113281, -2.1289062, 0.116882324, 0.5180664, 2.4023438, -2.140625, 0.8720703, -1.2109375, 2.0917969, -0.116760254, 0.6645508, -1.2597656, 1.5986328, -0.61376953, -2.9433594, 0.5644531, -0.6586914, -2.015625, -1.1660156, 0.9145508, -0.83251953, 4.0039062, -0.35864258, -3.4609375, -0.9194336, -0.13757324, -0.3161621, 2.2480469, 0.13989258, -0.006313324, 2.25, -0.7451172, 3.5820312, 1.0576172, 1.1582031, -0.093444824, -0.16223145, 1.4179688, -2.3730469, 0.105529785, 0.79296875, 1.9306641, -0.76416016, -0.8691406, 0.3881836, 4.7773438, 0.2076416, -3.2363281, 2.8867188, -1.0322266, 1.7714844, 2.0898438, -0.56103516, -0.7060547, -1.3310547, 1.2802734, 0.50341797, -0.9511719, 1.5332031, -0.41992188, -2.7832031, 0.1348877, -0.45703125, 0.96240234, -0.68115234, -1.8964844, 0.6899414, -3.1621094, 1.7001953, -1.3173828, -0.41088867, 1.5097656, -3.3808594, -0.3088379, 0.9682617, -0.5161133, 1.6591797, -0.52490234, -1.3095703, -0.46826172, -0.047454834, 0.4272461, 0.92578125, -0.46142578, -2.0292969, -1.6220703, -0.9399414, 1.4072266, -0.9453125, -2.4765625, -0.2277832, -2.9882812, -1.5068359, 1.3515625, -2.4980469, -0.90625, 2.6484375, -1.6171875, 2.171875, -1.3388672, -2.9589844, -2.1230469, -0.27368164, -1.7910156, -0.28881836, -0.60058594, 1.2890625, 0.41333008, -4.34375, 0.09185791, 1.6572266, 1.6484375, 0.6557617, 0.113342285, -0.5214844, 0.69873047, -0.24157715, 0.47705078, 2.2558594, 1.9423828, -0.4321289, 1.1679688, -3.9609375, -0.8598633, -4.1132812, -0.60009766, -0.35375977, 0.6010742, -2.78125, -1.5078125, -0.81152344, 0.54248047, 2.7226562, -0.2788086, 1.1279297, -1.4492188, 1.484375, 0.9033203, 0.79541016, -0.7290039, -1.7333984, 1.6972656, -1.984375, -0.6098633, -1.1269531, 0.5732422, -0.4716797, 0.9838867, -0.73535156, 0.3947754, -1.3525391, 0.28710938, -0.85791016, -1.0449219, 1.0673828, -0.81347656, 0.0473938, -0.060943604, -2.0371094, 0.26782227, -3.2382812, -1.9980469, 1.4980469, 0.78027344, -0.8432617, 0.07244873, 3.4179688, -0.5410156, 2.1347656, -2.4472656, -2.6972656, 2.4882812, 1.3916016, -2.3242188, 1.5117188, -2.546875, -2.5839844, -2.3632812, -0.27441406, 3.2246094, 1.1269531, 1.7490234, -1.5703125, -0.11907959, -0.58984375, 1.2822266, 1.9980469, -3.0117188, -0.1026001, 4.28125, -1.6181641, -2.0800781, 1.8544922, 3.5957031, -2.3652344, -1.5195312, 2.6347656, 1.2158203, 0.24853516, 2.9765625, 1.7958984, 0.64697266, -1.5634766, 2.3867188, 1.7470703, 0.33666992, 0.054260254, -2.1503906, 0.23144531, -1.5966797, 2.7675781, 1.1591797, 0.28027344, 3.78125, 1.3916016, 0.4729004, 0.3371582, -1.6103516, -2.0878906, 0.2010498, -1.4033203, 2.328125, -1.7236328, -0.117126465, -0.8125, 0.43237305, 1.4736328, -0.67822266, -0.28271484, 3.0449219, 0.15563965, 0.82958984, -0.4880371, 0.5410156, 0.6796875, -0.71875, -0.29516602, -0.0037708282, 1.4667969, 1.0703125, 0.9433594, -0.21606445, 0.099121094, 1.1513672, -1.3183594, -0.4104004, -0.44213867, 2.4980469, -1.703125, -1.7382812, 1.0751953, -1.7080078, -0.7392578, -0.021057129, 0.13989258, -2.125, 1.171875, -1.7939453, 1.7265625, 0.69189453, 0.0104522705, 1.6259766, 1.2958984, 1.9765625, 0.036590576, 0.8984375, 2.5234375, -0.11425781, -1.8466797, -0.3737793, -2.6269531, 0.8569336, -1.1484375, -0.3857422, -3.3085938, 1.4882812, 0.48461914, 2.5410156, -1.0429688, 2.0976562, -0.47583008, -1.3876953, 1.1816406, -2.875, -0.5234375, -1.9707031, -3.9707031, 1.2197266, -2.9804688, -0.52734375, 0.9550781, 1.1806641, 0.6772461, 1.0810547, 2.1074219, -2.8808594, -1.2890625, -0.7265625, -0.04626465, -1.0146484, -0.10797119, -0.055847168, 0.3334961, -2.328125, -2.8476562, 0.8046875, -1.0498047, 1.6777344, 2.3417969, -2.6074219, 1.6650391, -1.3935547, 1.015625, -1.5292969, -0.5722656, 1.4433594, -1.8007812, 0.3881836, -2.8242188, 1.7529297, 0.8823242, -0.6064453, 1.8037109, 3.8769531, 0.29760742, -2.9609375, 1.2529297, 1.7519531, 1.7988281, -2.0371094, -1.5458984, -0.75683594, 1.5136719, 0.8540039, 0.4885254, 0.16088867, -2.3710938, -2.9589844, 2.8789062, 1.6132812, 0.0061531067, 0.17041016, -0.12194824, -3.6816406, 0.3786621, -0.06298828, -2.2246094, -0.74853516, 0.7011719, 0.54833984, -1.4423828, 1.2265625, -1.6816406, 1.2275391, -1.3730469, -1.5703125, -3.8652344, 2.3769531, 2.5039062, 0.9482422, 2.2050781, -0.0769043, -2.0527344, -0.7348633, -0.2746582, -0.15795898, 1.09375, -2.0546875, -1.4208984, 0.2770996, 0.59814453, -2.6152344, -0.14221191, 1.3193359, -2.1191406, -0.08514404, -3.9179688, 0.96191406, -0.24499512, -2.9824219, 1.4833984, -1.0644531, 2.3457031, -1.0126953, -1.5214844, -0.44555664, -0.0037822723, -0.93115234, 0.61376953, 0.56591797, 0.5673828, 0.79833984, 2.0527344, 1.8203125, -0.5654297, 0.48095703, -0.10455322, 3.5390625, 0.3701172, 0.4362793, 0.38330078, 0.99365234, -0.9248047, 0.42993164, 1.5546875, 2.7597656, 0.44921875, 3.4082031, 2.171875, -2.5, 0.43945312, 0.97021484, -2.0605469, -0.68310547, 0.71533203, -1.2773438, 2.3574219, -0.7558594, -2.2128906, 0.71435547, 3.5292969, -0.9760742, -0.63671875, -1.203125, -1.8251953, -0.6074219, -2.9570312, -2.0117188, 0.33374023, -0.6977539, -0.6201172, -2.1289062, 0.116760254, 0.62597656, 2.3007812, 3.1054688, -0.7871094, -1.9072266, 3.34375, -1.046875, 1.3125, -0.9248047, 0.5834961, -2.9179688, 1.2568359, 3.9746094, 1.4052734, 1.0605469, 0.30908203, 1.7490234, -0.5576172, 0.8691406, -0.89697266, 3.4746094, -1.2695312, -2.0527344, 0.85302734, -2.0332031, -1.1875, -3.21875, 0.02947998, -2.140625, 2.7558594, 2.3222656, -0.07385254, 0.5107422, 0.7910156, -0.98291016, -3.4140625, -0.8198242, 0.93652344, -0.7290039, 1.4746094, 3.2519531, -0.7158203, 0.58984375, -0.01864624, -1.1347656, -1.0175781, 0.040863037, 1.0507812, -2.0566406, -0.16516113, 0.2705078, -1.5058594, 1.0820312, 1.3808594, 0.14746094, 0.62841797, -3.25, -1.6113281, 2.7207031, -1.2626953, -0.22229004, 2.6132812, 1.0273438, 0.57714844, 0.6464844, 1.1259766, -3.2792969, 2.5703125, -1.3173828, -0.6933594, 2.3007812, -0.61376953, -0.5058594, 0.41308594, -0.90283203, 1.2666016, -0.81591797, 1.0078125, -0.1027832, 0.3310547, -0.005771637, 1.5625, 0.07940674, 0.38305664, 0.15991211, 0.61035156, 0.27246094, 1.2294922, -3.4609375, 0.43945312, -1.5976562, -1.5986328, 1.1279297, -3.2207031, 0.57666016, -1.9882812, -2.4746094, 1.6337891, -0.58251953, -0.7817383, 1.0898438, -0.89501953, 0.26586914, 1.9638672, -1.2519531, 3.0410156, 3.4960938, -0.6376953, 0.5629883, -1.0429688, 0.4182129, 0.8598633, 0.08337402, -1.3066406, 0.6772461, -0.17626953, 0.9238281, 0.41625977, 0.21887207, 3.2304688, -0.44433594, -3.9003906, 1.4189453, 4.0742188, -0.28295898, 2.6386719, 0.77685547, 0.5078125, 0.21557617, 5.140625, -0.3659668, -0.42358398, 1.2236328, -0.7265625, 1.3818359, -0.8515625, -1.6259766, -2.0253906, -4.5078125, -0.43017578, -2.265625, -1.1347656, -2.1054688, 0.78125, 0.12731934, -2.0644531, 0.3034668, 2.4941406, -0.8100586, 1.7900391, 1.9023438, 2.0527344, 0.21020508, 0.82714844, -0.71484375, 0.30859375, 2.5878906, -2.3457031, 1.6347656, 0.8339844, 0.1060791, -2.515625, 4.3515625, 2.0019531, 1.5087891, -0.27294922, 2.1347656, 2.3164062, 0.9658203, 3.0546875, 0.6503906, 0.59765625, 1.7236328, -0.2524414, 0.05770874, 1.1630859, 1.7197266, -0.11364746, -0.87646484, 0.4506836, -2.640625, -0.6899414, 0.1796875, 1.0869141, 0.47045898, -2.5273438, 0.49243164, -0.37353516, 0.2019043, -2.9804688, -0.69140625, -0.49975586, -1.0029297, 0.3869629, 0.8286133, 3.8886719, -1.3095703, 2.0449219, -1.4863281, 0.32885742, 0.6479492, -1.9257812, 2.0273438, -0.72265625, -1.4150391, -2.5449219, 0.52441406, 0.22570801, -0.9033203, -1.2597656, 0.66552734, 1.7363281, 1.2001953, -1.1025391, -0.7373047, 1.6572266, 1.2363281, 1.9921875, 0.5522461, -1.2753906, 1.6621094, -0.31835938, -2.9707031, -5.203125, 2.7832031, 0.35253906, 1.7109375, -0.23803711, -4.4765625, 1.1201172, -0.96972656, 1.1240234, -1.9951172, 1.2832031, -0.72802734, -2.7167969, -0.73535156, 2.0703125, 0.6826172, 3.7753906, 0.5019531, -1.9462891, 2.8183594, 0.46850586, 1.5722656, 2.0800781, 1.1474609, 0.8413086, 1.5341797, -0.005290985, 2.2988281, 0.84765625, -0.33911133, 0.11242676, 2.4804688, 1.5253906, 1.7011719, 2.6757812, -1.7470703, -0.24243164, 0.5463867, 0.47021484, -1.1660156, -2.6523438, -0.5878906, -0.49438477, 2.0234375, -2.0859375, -0.39086914, 4.1992188, 2.3496094, -0.019683838, -0.5732422, 0.9760742, -0.75341797, 0.9614258, -0.87841797, -0.7885742, -0.23242188, 0.0368042, 1.9277344, -0.8413086, -1.7373047, 0.16809082, 1.0292969, 1.9345703, -0.33276367, -0.49853516, -1.0458984, 0.45458984, -0.4387207, -0.43725586, -0.6328125, -0.9873047, 2.0859375, -0.016418457, 0.8642578, 1.6884766, -1.5498047, 0.3112793, -2.0800781, -1.0576172, -0.039093018, -0.6274414, -0.28466797, 3.1796875, 3.0292969, -0.0107803345, -0.39404297, -1.0625, -3.8339844, -0.31982422, -0.4152832, 0.75, -1.3808594, -2.8417969, -0.08294678, 1.3417969, 0.09625244, -0.53027344, 0.12670898, -0.046905518, -0.42993164, 0.9555664, -0.7753906, 1.2578125, 1.3427734, 0.7988281, -0.19042969, 1.3515625, -0.8569336, -1.9570312, 1.7929688, 1.1337891, -0.34521484, -2.5449219, 1.3867188, 0.26416016, 0.44848633, 0.9614258, 1.140625, 0.94189453, 1.4580078, -1.9658203, -1.1357422, -3.0527344]}, "B07P5KPZ1T": {"id": "B07P5KPZ1T", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.\nFeatures: \u3010Adjustable Propane Regulator\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "embedding": [-1.2597656, 2.4101562, 1.7324219, 0.020111084, -1.0019531, 0.28344727, 1.6875, -1.171875, 1.3662109, -0.50878906, 1.5292969, -0.3503418, 1.6962891, -0.8222656, 2.1835938, 0.9394531, 0.8432617, 0.5996094, 1.3837891, 3.3964844, 0.90234375, 0.4645996, 2.2148438, -0.45532227, 1.4863281, -0.6333008, 2.5332031, -3.3085938, -0.3725586, -1.015625, 2.40625, 0.9794922, 0.31274414, -0.19360352, -1.8251953, -1.3007812, -0.0592041, 0.8125, -2.7753906, -1.0224609, -0.7348633, -0.6298828, 1.4326172, -0.9951172, -1.9775391, 1.2060547, 0.5107422, 0.8881836, -0.83984375, 0.4934082, 1.5576172, -0.9711914, -0.64941406, 0.27294922, 0.10681152, -0.24731445, 0.57910156, -1.6904297, 1.8632812, 1.8916016, 2.0722656, 0.99560547, -1.7480469, -0.4663086, -0.99853516, -0.26464844, 0.1685791, -0.234375, 0.8017578, 0.9248047, 1.7226562, 0.70654297, 1.3554688, -0.1739502, -0.22851562, 0.8354492, -1.9707031, -0.31640625, 4.3789062, 1.2958984, -1.40625, 1.0625, 0.9555664, -2.4570312, 2.2441406, -0.28125, -0.93847656, 0.15930176, 3.7207031, 0.76416016, -1.3955078, 2.9414062, -3.4667969, -3.4960938, 2.0175781, 2.4648438, 1.7089844, 0.14489746, 1.5224609, 0.17822266, -1.1601562, -1.4130859, 0.06976318, 1.3505859, -1.6679688, -0.5644531, 0.13708496, 2.7851562, -3.9492188, 0.20324707, 0.59814453, 1.0703125, 1.8408203, -1.9169922, 1.1142578, -2.8808594, -0.6435547, -0.6328125, 2.9101562, 2.4375, 2.3574219, 0.41748047, -1.2949219, 0.36523438, -0.16809082, 0.31176758, -0.5229492, -0.035461426, 3.6738281, -1.5761719, 0.21606445, -3.5566406, 2.3222656, 0.25732422, 1.5976562, -2.0742188, -1.2099609, -2.3027344, -2.7929688, -0.4074707, -3.9511719, 0.8354492, 0.10473633, 0.17236328, -1.7050781, 0.9482422, -1.8710938, 0.73779297, 2.9472656, -2.0253906, 2.8261719, -1.421875, -0.55029297, -0.34277344, 1.1054688, 0.96191406, -0.09869385, 0.093566895, 2.203125, 1.7763672, 1.4619141, -2.4042969, -2.2421875, 1.7646484, 0.6425781, -1.2949219, 0.50878906, 0.025497437, 0.8208008, 1.7929688, -0.007457733, -1.890625, -0.79785156, 0.5620117, -0.73583984, -1.4746094, 0.83447266, 3.296875, 1.8857422, 0.39941406, -3.4765625, -2.3105469, -0.27392578, -0.08013916, 1.0332031, 0.050994873, -1.1542969, 1.0507812, 1.3310547, -2.2519531, -0.9345703, -0.02142334, -0.062805176, 1.0009766, -0.13500977, -2.5644531, -2.9980469, -1.65625, -1.9462891, 0.68066406, -2.2792969, -0.91308594, 0.8364258, -0.29248047, -2.0429688, -1.1298828, 0.81591797, -1.6513672, 0.21643066, 2.1113281, -0.033813477, -1.8564453, 0.91064453, -0.41796875, 0.54589844, -2.6582031, 1.4394531, 2.46875, 0.60253906, 1.3339844, -1.203125, 0.1394043, 0.9790039, 1.6708984, 2.0078125, 1.1972656, -1.0683594, 2.1367188, -1.8056641, -1.2978516, 3.3007812, 0.057647705, -0.8828125, -1.609375, -1.2851562, 1.6337891, -0.9370117, 0.5136719, 0.36987305, 0.9838867, -0.3569336, 0.011909485, -1.90625, -0.3779297, -0.66845703, 0.05441284, -2.0449219, 1.2900391, 1.7363281, -0.7260742, 1.2138672, 0.40966797, -0.30151367, -0.9848633, -0.984375, -0.7729492, 0.4182129, 2.1640625, -0.61621094, -1.5644531, 1.8427734, 1.3935547, 0.13586426, 2.9355469, 0.03744507, 0.6220703, 2.0097656, -1.3486328, -0.9584961, 0.35986328, 0.9589844, 2.4824219, 1.9882812, -0.50927734, 0.80859375, 0.09741211, -2.8730469, 1.1005859, 0.19934082, 0.59228516, 0.030075073, -0.38330078, 1.9091797, -2.25, 2.828125, 2.1933594, 1.7246094, 0.37573242, -1.90625, 0.24621582, 5.2773438, -1.2675781, -3.2207031, 1.2060547, 1.1445312, -0.14550781, 0.7504883, 1.7490234, 0.93847656, -1.3486328, 1.3007812, 0.21838379, -1.0410156, -0.08355713, 1.9482422, -0.14770508, -0.57128906, -0.22460938, -1.1386719, 1.9013672, -1.2636719, 0.28857422, -1.8779297, 1.8066406, -2.4160156, -1.6074219, 0.6972656, -2.1992188, -0.34814453, 0.68310547, 1.9570312, 2.0820312, 0.4206543, -1.8789062, 0.24902344, 2.0195312, -1.1083984, 1.3994141, 0.60253906, -1.5273438, -1.0224609, -1.5380859, -1.2646484, -1.7548828, -3.859375, 2.6367188, -3.5410156, -2.1289062, -0.17053223, -1.7705078, -3.4472656, 0.08984375, -0.5571289, 1.4589844, 1.125, -0.8925781, -1.2128906, -0.5756836, -0.3330078, -0.1706543, 0.75683594, 2.484375, -0.9091797, -2.1289062, 0.030593872, 0.48657227, 0.20471191, -0.7919922, -2.3789062, 1.2988281, -0.16125488, 0.34472656, 0.55322266, 0.8676758, 1.5400391, -3.4199219, 2.1757812, -2.7363281, -1.2324219, -0.32348633, 1.4785156, -1.1923828, 0.9814453, -2.1855469, -1.1074219, 0.31152344, -2.0839844, 1.1318359, -1.2480469, 2.9082031, -2.8828125, 1.53125, 1.6015625, -1.1552734, -2.6621094, -0.71240234, -0.37768555, -0.48291016, -0.29516602, -1.7265625, 0.24108887, 0.14196777, 0.49536133, 0.4645996, -1.8457031, -2.296875, 0.73339844, 0.6904297, -1.9150391, -0.38989258, 0.6801758, -0.052215576, -1.6572266, -0.08148193, 0.5566406, -2.4296875, -1.6220703, 0.4868164, 1.4423828, -0.5932617, 1.1542969, 1.1523438, 0.5878906, 0.060760498, -3.0058594, -2.5859375, 1.8554688, 1.8310547, -2.4902344, 1.7226562, -0.97216797, -1.5703125, -1.6699219, -1.9257812, 1.4970703, 2.0234375, 2.9824219, 0.42456055, -0.14196777, -0.64453125, 1.578125, -0.54833984, -2.5449219, 0.73876953, 3.8007812, -1.9033203, -1.5615234, -0.75390625, 1.7636719, -2.6464844, -0.4946289, 2.1386719, 0.26611328, 2.5214844, 1.1875, 2.1113281, 0.7631836, -0.71875, 1.8574219, 0.3623047, -1.1132812, 0.009346008, -1.0644531, 1.203125, -1.2724609, 1.8544922, 2.1679688, 0.19824219, 2.3515625, 0.3251953, 0.5800781, -0.89697266, 0.65771484, 0.64941406, 0.52978516, -0.02178955, 1.1210938, 1.0976562, -0.79785156, -0.50146484, -0.16918945, 0.7138672, -2.2421875, -0.048828125, 0.30493164, 1.1347656, -1.1318359, 0.1887207, -0.7397461, -0.22814941, -1.4296875, 0.12939453, 1.3730469, 1.7958984, 3.0683594, -0.5649414, 0.85839844, -1.8935547, 0.93603516, -0.39990234, 0.37280273, 0.24975586, 0.38964844, -2.7734375, -0.65966797, 0.06866455, -2.9746094, -1.4033203, 3.125, 1.8632812, -0.7216797, 1.5908203, -1.4755859, 1.7001953, 1.5878906, -2.3046875, 0.073791504, 0.20690918, 0.014465332, -0.44335938, -0.63623047, 1.9570312, -0.12231445, -3.765625, 0.15075684, -3.3164062, 1.7421875, 0.42236328, 0.6694336, -3.2792969, 1.265625, 0.62109375, 1.3515625, -0.121032715, 2.5292969, 0.62060547, -0.20483398, 2.2226562, -3.625, -2.0546875, -2.3730469, -5.6835938, 0.17797852, -2.2753906, 1.0966797, 2.2128906, 0.54052734, 1.2011719, 2.1972656, 1.5058594, -3.3652344, -0.83740234, 0.36816406, 1.8349609, -2.5898438, 0.24597168, 2.5644531, 0.39770508, -0.14672852, -1.3261719, -1.3613281, -3.2480469, -0.87109375, 1.296875, -1.4433594, 0.7109375, -1.8076172, 0.040130615, -1.1396484, -1.6650391, 0.671875, -1.5390625, -0.9609375, -3.0644531, 1.6630859, -0.17736816, -0.35205078, -1.1318359, 2.8808594, 2.3613281, -0.4423828, -0.61279297, 0.60009766, 2.515625, 0.6308594, -1.0390625, 0.4885254, -0.04260254, 0.23864746, 0.45581055, -0.9536133, -0.6669922, -0.9057617, 1.1796875, 1.9892578, 0.025939941, 0.8251953, 1.2646484, -2.6601562, 0.64160156, -0.3347168, 0.22961426, -0.17114258, -0.69140625, -1.3242188, -2.0566406, -0.22497559, -1.2998047, -1.4121094, -1.0302734, -0.63720703, -2.703125, 4.3007812, 0.32958984, -1.3261719, 1.0908203, -1.4345703, -1.1113281, -1.2089844, 0.92626953, -2.0898438, 0.40039062, -0.46899414, 1.2958984, 2.0351562, 1.1572266, -1.0048828, -1.0791016, 1.1826172, -3.5605469, 0.88378906, -1.5712891, 1.9257812, 0.47875977, 0.70996094, 1.9433594, -1.4716797, 3.3671875, 1.1826172, 0.20178223, 0.81152344, -1.0693359, -1.6181641, 1.0908203, 2.75, 1.7138672, 1.2988281, 1.0507812, 1.0234375, 2.2265625, 1.2617188, 0.66748047, 0.80859375, -0.04385376, 2.2832031, -0.81933594, 1.9248047, -2.1347656, 0.45483398, 0.40844727, 1.7333984, 1.9804688, 3.4882812, 1.3710938, -1.7089844, 0.9555664, 1.2236328, -0.6142578, -0.95458984, 0.021331787, -2.4980469, 1.2021484, 0.2475586, -1.7099609, -0.17614746, 2.8046875, -1.2636719, 0.98095703, -0.5004883, -1.0292969, -0.0015964508, -1.6816406, -1.1455078, -0.31518555, -0.5473633, 1.0625, -1.8203125, 0.021881104, -0.5751953, 0.58740234, 0.84228516, -0.075927734, -0.31860352, -0.04940796, -1.1884766, 0.80615234, -1.9433594, -0.86621094, -2.6679688, 0.86816406, 2.9179688, 1.1386719, 0.11657715, -0.58984375, 0.2487793, -1.2070312, -1.3935547, 0.19616699, 2.6582031, 0.8383789, 0.09643555, 0.5214844, -0.7290039, -0.74658203, -1.1679688, -0.74316406, -1.3271484, 3.6835938, 2.3378906, 1.4355469, -0.48413086, -1.3964844, -2.2890625, -4.8984375, -0.54833984, 3.4121094, -0.24841309, -0.17114258, -3.3808594, 0.30029297, 1.0458984, -0.70654297, 0.78808594, -3.1640625, 0.32202148, -1.3164062, -0.75683594, -1.4345703, 0.25708008, -0.2788086, 0.19567871, -0.6225586, 0.4086914, -0.26538086, -2.2480469, -2.1191406, 1.2744141, -3.5507812, -0.95166016, 2.1796875, -1.8339844, -1.4892578, 1.1425781, 1.1748047, -2.7128906, 2.1699219, -2.4179688, 0.20703125, 0.3244629, -0.9423828, 2.1152344, 2.1113281, 0.049041748, 1.2636719, 1.8847656, 1.3251953, -1.0712891, -0.7158203, 0.60839844, 0.5419922, -1.1650391, -2.7480469, -0.6044922, 0.08306885, 2.1347656, 1.6591797, -2.640625, -0.88183594, -1.1347656, -4.3554688, -0.119140625, -0.5605469, -1.0849609, -0.4140625, 1.2480469, 2.5800781, -1.5527344, 0.828125, 0.70751953, -0.74365234, -1.2363281, 1.6455078, -0.76464844, 1.8808594, 1.0224609, -0.057678223, -2.765625, -2.0332031, 2.4257812, 3.3964844, -0.5961914, 1.2138672, 0.21838379, -0.0062179565, 0.32910156, -0.63183594, 1.2519531, 2, -0.4855957, -1.3222656, -0.18164062, 2.3046875, -0.7758789, 1.4482422, 1.1708984, -0.91259766, -1.4833984, 3.5488281, 1.4082031, -2.4199219, 1.4257812, -1.7626953, 1.3740234, -0.19909668, -2.4609375, -0.49047852, -2.7460938, 0.29956055, 0.3203125, -2.3222656, -2.5273438, 1.5429688, 0.07159424, -1.8486328, 0.6113281, 3.6621094, 0.94677734, 0.020568848, 1.0751953, 1.828125, -0.640625, 0.05999756, -2.4238281, -0.75097656, 1.7617188, -2.5644531, -1.1464844, 2.3164062, 1.2539062, -2.0390625, 1.1445312, 0.7607422, 2.7460938, -0.09979248, 2.2558594, 3.7109375, -0.075927734, 2.2226562, 1.2324219, 2.25, 3.7773438, 0.32177734, 0.64990234, 1.9013672, -0.29296875, 0.61621094, -0.75683594, -0.0008673668, -0.7055664, -1.3710938, 0.14440918, 1.2275391, 1.4160156, -2.6796875, -1.0664062, -0.7392578, -0.23706055, -4.3242188, 0.043426514, -0.45166016, 1.0810547, -0.25317383, -0.043640137, 1.6259766, 1.1894531, -1.2460938, -1.4912109, 0.23266602, 2.7089844, -2.4824219, 0.59814453, -0.19714355, -3.8203125, 1.4716797, 3.6210938, 0.5605469, -0.20275879, 1.2832031, 0.032196045, -0.81347656, 1.6845703, 1.8066406, -3.1914062, -0.734375, -1.3525391, 2.6386719, 1.3789062, -1.8544922, 3.2636719, 1.1777344, -1.8876953, -3.0078125, 2.6894531, -0.7050781, 0.012306213, -0.29125977, -4.8867188, 3.03125, -1.9697266, 0.83984375, -1.7880859, 0.5644531, -0.80859375, -1.2597656, 1.0292969, 0.5571289, -2.0039062, 3.875, 0.8823242, -2.4804688, 0.095581055, 2.1015625, 1.8466797, 0.4309082, 0.21179199, 0.57958984, 0.6245117, -0.2578125, 2.5117188, -0.15979004, -2.53125, -0.40649414, 2.4179688, 0.5625, 0.6147461, -1.0673828, 1.1787109, -0.6098633, 0.8725586, -0.6459961, -0.6069336, -1.8945312, -0.7446289, -0.117004395, -0.5908203, -1.2714844, -1.1728516, 0.7348633, 0.061431885, -0.8378906, 0.5332031, 1.7910156, -0.68896484, 1.7626953, 1.2246094, -0.7211914, -1.5585938, -1.3769531, 0.6635742, -2.0566406, -0.83691406, 0.033843994, -0.9033203, -0.3347168, -1.9189453, -0.17175293, 1.0371094, -0.017868042, -0.56396484, -0.37939453, -1.7871094, -0.98046875, -0.31933594, -1.734375, 0.8540039, 2.7578125, -0.9638672, 2.5976562, -0.8720703, -1.5390625, -0.28930664, -1.5019531, -1.2519531, 0.69628906, 1.9472656, 0.49926758, 1.6816406, -0.9321289, -2.6191406, -1.0126953, -1.8623047, 2.3320312, -1.4550781, -0.8183594, 0.30688477, -0.016204834, 2.9042969, 0.5292969, 1.5498047, -0.021942139, -0.5493164, 1.1992188, -1.4511719, 0.5185547, -0.84228516, -0.2064209, -1.1210938, 2.8652344, 1.1894531, -2.2167969, 0.50097656, 1.7685547, 0.5292969, -1.5585938, 0.6098633, -0.82177734, -0.42260742, 0.72509766, 2.3496094, 1.7900391, 0.4506836, -1.3046875, 0.8232422, -0.31591797]}, "B085Y769KW": {"id": "B085Y769KW", "original": "Brand: TheElves\nName: TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch\nDescription: TheElves heavy duty waterproof Fire Pit/table Cover:
          1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
          2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
          3#. Waterproof design and air vents at sides can keep fire pit/table dry.
          4#. Double stitched seams add the strength of cover.
          5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
          6#. Protect fire pit/table from UV, rain, dust, bird's dropping etc.
          7#. Come with four useful accessories that prevent the cover from being scratched.

          Package Include:
          1 x Fire Pit Cover
          1 x Storage Bag
          4 x Accessories That Prevent The Cover From Being Scratched

          TheElves Team:
          ---We are the producers of covers.
          ---We provide high quality covers.
          ---We provide efficient logistics.
          ---We provide satisfactory customer service.\nFeatures: Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table.\nDurable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant.\nWater-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry.\nWindproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated.\nExtra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.\n", "embedding": [0.09820557, 1.6914062, 1.6582031, -2.2441406, 1.1171875, 1.4199219, 1.2265625, -2.5800781, 1.2285156, 2.0839844, -0.63964844, 0.23693848, 0.2775879, -3.8496094, 2.4257812, -0.8691406, -0.04724121, 2.953125, 3.2539062, -0.1907959, 1.5029297, -2.0039062, 2.0234375, -0.73583984, -0.63427734, -0.56396484, 3.5664062, -2.9179688, -0.86865234, 0.24572754, 1.1308594, 1.4365234, -0.19177246, 2.3671875, -2.6191406, -1.5761719, 0.39135742, 0.3876953, -0.8652344, 0.040283203, -2.421875, -3.0605469, 3.5996094, 2.3613281, -1.5742188, 1.4042969, -0.47216797, -0.8105469, 0.078552246, -1.4550781, 2.2890625, 0.94189453, 1.5234375, 0.81933594, -1.3681641, 2.1386719, -0.79296875, -1.6279297, 0.796875, 0.7182617, 1.1865234, -0.37329102, -0.84375, 4.3945312, -2.1914062, -0.83740234, -0.8876953, -0.49023438, 0.28076172, 0.21508789, 1.7451172, 0.68847656, 1.0654297, 1.1972656, 1.6816406, -0.42407227, -3.4472656, 0.94921875, 2.7539062, -2.6640625, 2.0898438, 2.0527344, 0.8930664, -0.9667969, 0.4802246, -0.6982422, -1.7832031, -1.9042969, 0.5678711, 1.1083984, 1.0380859, 3.2675781, -0.7758789, -3.7480469, 0.7807617, -0.80371094, 2.0683594, 0.82128906, -0.8935547, 0.83154297, -0.62597656, 0.9189453, 0.41552734, -0.15979004, -2.9960938, -2.6015625, 2.3789062, -0.16357422, 0.5683594, 0.7216797, -0.40820312, -0.12792969, 1.359375, -0.78027344, -0.7602539, 1.7255859, -1.0410156, 1.6435547, 2.6074219, 1.3789062, 5.1210938, 1.2841797, 1.109375, -1.0820312, 1.921875, 0.39208984, -1.9912109, 0.88964844, 2.4667969, -2.3007812, 0.9458008, -2.921875, 0.5004883, -0.5107422, -2.3125, 1.4189453, -3.0605469, -0.047302246, -2.4296875, -0.53808594, -0.47558594, -1.4658203, 1.5712891, 0.28222656, -2.5410156, -0.31201172, -1.4707031, 5.0820312, -0.01234436, -1.8427734, 0.9345703, 0.9814453, -0.31030273, -2.3769531, -0.62939453, 0.1607666, 1.2832031, -3.5566406, 4.0351562, 0.5751953, 2.4453125, -1.9765625, 2.0039062, 0.4399414, 0.2298584, -0.9008789, 2.1738281, 0.30249023, -0.83691406, 2.8984375, 0.004310608, -1.265625, -1.5576172, 1.3515625, 0.14489746, -1.3681641, 0.9375, 0.55371094, 1.2978516, 0.92822266, -2.375, 0.4194336, 0.2998047, 0.49438477, -0.4086914, -0.34985352, -0.4333496, -2.4023438, 0.62402344, -0.45263672, -2.3613281, 0.032104492, -3.0898438, 0.65527344, -2.5214844, -2.8710938, -2.0390625, -2.0253906, 0.46557617, 0.4885254, -0.8852539, -0.10089111, -1.7275391, 0.39379883, -4.0585938, -0.025787354, -1.4189453, 1.6123047, 2.2207031, 0.66259766, -0.3947754, -1.4873047, 1.8466797, 3.4941406, 0.29541016, 0.5883789, 2.2675781, 0.9121094, 0.8183594, 1.4257812, 1.2792969, -0.27319336, 2.4785156, 3.7890625, 0.13659668, 1.9716797, 1.1445312, -0.11419678, -2.3769531, -1.9433594, 1.3847656, 0.7841797, -1.1152344, 0.8496094, -1.3544922, 0.92822266, 0.72021484, -1.6787109, 2.0722656, -0.83984375, -0.1217041, -1.9130859, -0.85058594, -0.30126953, -0.01637268, 1.5136719, 1.5732422, 0.8515625, 1.8876953, -0.027420044, -1.4423828, -0.20251465, 1.2041016, 0.5566406, 0.6621094, 0.39379883, 0.9482422, -0.23840332, 1.3037109, -0.96435547, -1.1171875, 1.0449219, -0.80566406, 1.5917969, -0.7890625, -2.2421875, 1.4003906, -0.9995117, -3.1914062, -0.7270508, 0.17492676, -0.96728516, 2.484375, 0.08190918, 1.6474609, -2.2832031, -0.7084961, -0.51171875, 1.1113281, 1.6201172, 0.2175293, 1.0244141, 2.1738281, -1.1826172, 0.36987305, 0.22265625, 2.7714844, 0.51464844, 0.9199219, -0.61328125, 3.6875, -0.46606445, 0.18444824, 1.3203125, -0.7011719, 0.115600586, -0.25073242, -0.51416016, 0.037384033, -1.5273438, -0.54003906, 0.95703125, 1.3994141, 2.8300781, -0.79052734, 0.8442383, -0.18603516, -2.0351562, 0.06774902, -0.055114746, -0.40234375, -1.0986328, -0.7651367, 1.4716797, -2.4238281, -2.6621094, 2.4433594, -1.7070312, 0.1463623, 0.5463867, -0.05709839, 1.2392578, -2.1035156, -1.6376953, 0.54345703, 1.5048828, -2.078125, -0.24951172, 0.41064453, -0.74853516, -2.1757812, -1.8105469, 0.68603516, -3.9023438, -1.0839844, -2.6855469, -2.5898438, -0.9453125, -0.16027832, -1.5976562, 0.52197266, -0.0637207, -0.7973633, 1.3496094, -0.6870117, -1.1103516, 0.49853516, 1.6738281, -2.4082031, 0.19897461, 0.074279785, 2.2714844, -0.55322266, -2.6777344, 0.16796875, -0.041625977, 0.44213867, -0.20031738, 0.2722168, -1.1845703, -1.6162109, 1.2294922, 1.6181641, -2.5878906, 1.3730469, -1.6103516, -0.6567383, -4.3867188, 0.88916016, 0.19482422, 0.58935547, 0.5444336, 0.7792969, -1.9580078, -1.625, 0.3449707, -1.9667969, 4.9453125, 1.0654297, 1.5283203, -2.1835938, -1.2744141, -0.61621094, -1.1494141, -1.6875, -0.06677246, -0.24719238, -0.4711914, -2.40625, -2.7382812, -1.7783203, -1.5576172, -1.8369141, 0.10748291, -0.3647461, -1.4189453, 1.1210938, -2.9589844, -0.3491211, -1.7998047, -0.07421875, 0.15771484, 0.26416016, 1.1269531, -2.8925781, -2.1835938, -0.27392578, -1.2802734, 2.7792969, -1.3369141, 0.6645508, 1.6533203, -2.0410156, 1.3017578, 0.92285156, -3.7871094, -0.23791504, 3.3496094, 1.2890625, 1.7373047, -1.8945312, -1.7773438, -0.4597168, 0.20043945, 3.078125, 0.6689453, -0.9326172, -0.01878357, -0.6772461, 1.3085938, -0.8017578, -0.5473633, -0.6669922, 0.2154541, 1.9707031, -2.625, 1.0273438, 1.1748047, 1.4013672, -3.4296875, -0.9863281, 1.5859375, -0.50927734, -0.45507812, -1.0527344, 1.0585938, 0.98779297, -1.0205078, 1.5078125, -0.8901367, 2.8671875, 1.015625, -0.33520508, 1.1240234, 2.4023438, 2.8066406, 1.5175781, 0.92822266, 0.64501953, 0.9111328, 1.2548828, -3.2753906, 0.9692383, 1.1269531, 1.6503906, 0.43969727, 1.3134766, -0.92822266, 0.33398438, 1.4941406, -0.6142578, 0.51464844, -0.8808594, 0.6640625, 1.2724609, 0.13720703, -1.5205078, -1.1083984, -0.9663086, -0.09075928, -2.0273438, 0.9902344, -1.3837891, -1.5498047, 1.0673828, -1.9960938, 0.2529297, -2.1035156, 3.7089844, -0.0035057068, -2.5019531, 0.5576172, 2.7558594, -1.0166016, -1.5078125, 1.7988281, -2.1210938, -0.29638672, 5.3125, 0.92529297, -2.0625, -0.3269043, -3.4746094, 0.6425781, 2.4882812, -0.43408203, -0.29516602, 1.3212891, -1.109375, -2.4609375, 1.3642578, 1.8359375, 1.7617188, -1.4599609, 1.5185547, -1.5273438, -2.7890625, 2.5800781, -1.8339844, -0.6333008, 3.2207031, -0.5473633, 1.2841797, 0.73095703, 3.2226562, -2.6582031, -0.99658203, 2.671875, -0.09423828, -0.5185547, -1.0927734, -4.1875, 1.0410156, -1.203125, -0.5576172, 2.171875, -0.30395508, 0.7832031, 0.5493164, -1.1582031, -3.2558594, -1.2216797, -1.0761719, -1.1464844, -4.0195312, -1.1523438, 1.0380859, 1.4677734, -0.20654297, -0.57177734, -0.53027344, -0.49267578, -0.61376953, 0.45458984, -1.5146484, -0.14282227, -1.7451172, 0.15942383, 0.21813965, -0.38720703, -0.55126953, -1.234375, -0.97021484, -0.29907227, 2.3339844, 0.30688477, -0.9873047, 1.015625, 4.3359375, -0.27026367, -0.5185547, 0.89941406, 0.82714844, 3.7011719, -0.5932617, -2.1777344, -0.062408447, 0.17614746, 2.1621094, -0.65185547, -2.1953125, -0.08947754, -1.8652344, 1.4453125, 1.2216797, 1.5214844, 0.94873047, -0.12200928, -2.5742188, 1.0527344, -2.2695312, -2.5058594, -0.7050781, -1.5166016, -0.6567383, -0.66748047, -0.85791016, -2.9199219, 1.2851562, 0.5551758, -0.1270752, -0.88134766, 2.8046875, 1.4814453, 2.1542969, 4.6328125, -1.3193359, -0.5180664, 0.9453125, -2.0488281, 1.9052734, 0.9316406, -0.6953125, 0.85839844, 2.3769531, -0.5175781, -0.9633789, -0.72998047, -0.04031372, -2.6035156, 0.0124053955, -0.18041992, 0.39208984, -1.3964844, -0.75683594, -1.5039062, -1.7919922, 0.8261719, -0.9604492, 0.2409668, 1.2587891, -0.40234375, -1.28125, 0.5107422, -0.1071167, -0.29760742, 0.21643066, 1.8056641, -0.296875, 1.6601562, 2.3828125, 0.7651367, 0.90771484, -3.4355469, -0.71484375, 0.6699219, -1.2373047, -2.1113281, -1.4267578, 0.81933594, 2.5527344, -2.1660156, 2.2871094, 0.23815918, -0.2861328, 1.2539062, 2.3535156, -2.4804688, -0.46801758, -1.0214844, 0.65283203, 0.101867676, -0.6982422, -2.9863281, 0.20666504, 1.0058594, -1.1152344, 1.3164062, 0.94921875, -2.8242188, 0.13330078, -1.3496094, -1.359375, -0.27246094, -2.3945312, -0.8803711, -3.1953125, 1.4042969, -3.3320312, 0.0015411377, 1.8720703, 0.23034668, -3.4101562, 0.8613281, -1.078125, -0.71435547, -1.8759766, 1.1347656, -1.2167969, 0.54785156, 0.93847656, -0.01713562, 1.2871094, -1.3251953, 2.1738281, -2.109375, 0.828125, 0.57421875, 3.2265625, -1.3027344, -0.890625, 2.8359375, 0.022964478, 2.1601562, -0.90478516, -0.69433594, 0.2529297, 3.1132812, -1.0966797, 0.91308594, -0.80908203, -0.5751953, -2.4921875, -1.4394531, -1.9345703, -1.5869141, -3.7207031, 0.4807129, -1.7470703, 1.5800781, 0.38232422, -1.8632812, -0.22668457, -0.91503906, -0.00021243095, -2.1171875, -1.3027344, -1.9550781, -0.07550049, 1.7197266, 0.32739258, 0.89160156, -0.48632812, 0.06262207, -2.4355469, -0.0519104, 2.6210938, -1.1464844, 1.6953125, 0.5571289, -1.5615234, 2.6914062, 1.2646484, 0.23547363, 0.5234375, 0.61865234, 0.8461914, -1.2714844, 2.1757812, -1.9511719, 0.36865234, 1.015625, -2.0332031, 3.2695312, -1.8544922, -0.9135742, -0.023834229, -0.49804688, 1.1679688, 0.5908203, -1.1015625, 0.04284668, 0.53466797, 1.5771484, 2.3515625, 1.7431641, -2.7753906, -0.7519531, -0.26000977, -1.6875, -0.043670654, -1.5097656, -2.3359375, 0.11187744, 1.8193359, 1.4736328, -0.94384766, 0.8886719, 1.8037109, 3.2207031, -1.4453125, 0.6923828, -0.7446289, 3.265625, -0.1328125, -0.6855469, -1.3720703, -3.8300781, 2.1074219, 2.6835938, -0.15979004, -1.0224609, -0.36401367, -2.7597656, 2.5488281, 0.67089844, 1.2626953, 0.93359375, -0.41430664, 0.8046875, 1.1416016, -0.10675049, 0.45361328, 3.03125, -0.9316406, 2.1699219, -0.78564453, 2.1738281, 1.9677734, -2.1640625, 0.36645508, -0.63183594, 1.6445312, -1.4345703, 0.89453125, 0.6196289, -1.8349609, -1.8261719, -2.4257812, -0.49243164, -3.1855469, 0.041412354, 1.1025391, 0.41357422, -0.78466797, 0.19348145, -0.33935547, 2.4414062, 1.9375, -0.8417969, -0.113220215, -1.6728516, -0.8754883, 0.7211914, 1.5996094, 0.2939453, -0.7089844, 0.49291992, -0.029342651, -0.68310547, 1.5009766, 0.15661621, 1.3818359, 2.3164062, 3.5625, 2.8203125, 0.26123047, 3.15625, -0.99609375, 1.484375, 0.6123047, -0.78125, -1.7255859, 2.7285156, 2.1816406, 1.2988281, 1.1728516, -0.31323242, 1.75, -1.1064453, -0.97802734, 0.2084961, 0.6748047, -2.3164062, 0.99560547, -0.40405273, 1.4873047, 0.46411133, 2.1230469, -0.60839844, 0.7060547, 1.2871094, -0.5888672, 0.62402344, -2.5234375, -0.7495117, 1.3173828, 1.6318359, 0.70410156, -2.8886719, 2.5332031, -1.4921875, -4.375, -1.6699219, 3.015625, 1.4267578, 2.5957031, -0.42797852, 1.4287109, 1.1572266, 2.7324219, 1.1611328, 0.8808594, 1.1542969, -0.005630493, 1.5927734, 1.6464844, -2.4609375, -2.9941406, 1.0917969, -1.9970703, -1.4541016, 0.79833984, 0.5727539, 0.75683594, 0.76708984, -1.2138672, 0.028839111, 1.0048828, 0.60546875, -1.8115234, -1.0039062, -0.1038208, 0.15588379, -0.6123047, -0.10333252, -0.097595215, 3.1796875, 0.58935547, -1.1689453, 1.7958984, 1.3232422, 1.9414062, 1.1435547, 0.5283203, -0.90771484, 1.9570312, -0.67285156, 0.7734375, 1.6708984, -0.06008911, 0.2709961, 1.1376953, 1.9794922, 0.16113281, -0.8227539, -2.578125, -0.28759766, 1.734375, -2.2089844, 0.3647461, -0.5102539, -1.6328125, -0.45776367, 0.31420898, 0.5834961, -2.7714844, 1.3789062, 0.58154297, -1.2470703, -0.86376953, 1.3076172, -0.37158203, 1.2558594, -0.21130371, -0.2866211, 0.32348633, -0.19885254, 1.2363281, -1.6269531, -2.5625, -2.2304688, 0.9628906, -1.0029297, -0.07080078, -1.5019531, 2.0703125, -0.7167969, 1.1240234, 4.0195312, -0.38061523, -0.28466797, -1.6875, -0.04916382, -0.95947266, 1.9755859, 0.44311523, -2.4101562, 0.43286133, -1.7802734, 0.37402344, -0.24841309, -3.1074219, 0.38452148, 4.3867188, 3.640625, -1.6054688, -0.00025177002, -3.59375, -1.4570312, 0.26220703, 2.6386719, 0.28320312, 1.8876953, 0.4038086, 0.72314453, 4.421875, -0.65527344, -0.6542969, -0.41723633, -0.24536133, 1.5351562, -2.2226562, 0.9926758, -0.111206055, 1.3994141, 1.3037109, 1.0693359, 2.6425781, 0.47460938, 1.6875, 1.5839844, -0.6850586, -2.8925781, -0.56640625, -0.099853516, 0.609375, 1.3779297, 0.71240234, 0.7529297, -0.8725586, -0.16992188, -3.7363281, 0.12597656]}, "B07W87SKTP": {"id": "B07W87SKTP", "original": "Brand: DOZYANT\nName: 5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More\nDescription: It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
          The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
          The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

          Specification
          - Length: 5 feet / 60 Inch/152.5 cm
          - Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
          - Inlet Pressure: 25-250PSIG
          - Outlet Pressure: 0-20PSIG
          - Max.flow capacity:136000BTU
          - End Connector: 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

          * The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
          * There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
          * This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

          Note:
          1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
          2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
          \nFeatures: Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8\" flare M x 1/8\" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nAdjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator.\nHigh quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off.\n100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances.\nNo tools needed, easy and quick attachment for easier installation.\n", "embedding": [-0.4399414, 2.6679688, 1.5107422, 0.75878906, -0.63671875, -1.0117188, 0.67871094, -0.37597656, 0.60253906, 0.49951172, 1.9423828, 1.6601562, 1.7265625, -2.2558594, 1.4736328, 0.80126953, 1.5205078, -0.18676758, 1.9179688, 2.0761719, 0.328125, 0.20788574, 2.4570312, -1.0751953, 1.2568359, -0.21081543, 3.2226562, -2.1914062, -2.1171875, -2.1113281, 1.0136719, 1.4570312, -0.3671875, 0.24645996, -2.0820312, -0.8652344, 0.3017578, 1.1269531, -3.9765625, -0.82177734, -1.8027344, 1.5166016, 1.3359375, 0.21643066, -2.03125, 0.4658203, 0.47216797, 0.3918457, 0.42089844, -0.35302734, 1.8183594, -0.13134766, 0.9003906, 0.84033203, -1.2226562, 0.44458008, 0.08355713, -2.4257812, 0.76660156, 0.8046875, 2.1816406, 0.22668457, -2.4433594, -0.3852539, -0.8857422, -0.09729004, -0.019180298, 0.46191406, 2.3046875, 0.4633789, 0.6972656, 1.4238281, 0.44799805, -0.66015625, -0.8066406, 0.12231445, -2.8828125, 0.47998047, 3.6738281, -0.1743164, -1.1884766, 1.796875, 0.65722656, -2.5058594, 1.2451172, 0.056243896, -1.5703125, 1.3105469, 2.0410156, 1.2451172, -2.3984375, 2.453125, -3.1425781, -3.6914062, 1.0439453, 1.7246094, 1.8613281, 0.5698242, 1.34375, 0.2626953, -3.2050781, -1.8115234, -0.20739746, 0.82470703, -1.2333984, -0.61865234, -0.81152344, 2.0351562, -3.6855469, 0.23461914, 0.054870605, 0.5961914, 2.5703125, -1.1357422, 0.7910156, -3.3417969, 0.60791016, -0.4868164, 2.9492188, 1.6992188, 1.4570312, -0.23327637, -0.97753906, 1.0175781, 1.1621094, 0.7685547, -0.51953125, -0.8930664, 3.7148438, -1.8037109, 0.3383789, -3.2207031, 1.6191406, 0.057006836, 1.2666016, -3.2792969, -0.57958984, -2.2050781, -2.3789062, -0.6201172, -2.8964844, -0.73339844, 1.5400391, 0.5727539, -2.8242188, 0.07458496, -2.1875, 0.18029785, 2.6132812, -2.9667969, 1.7089844, -1.9453125, -0.16125488, -0.8623047, 1.6357422, 0.95166016, 0.20837402, -1.4990234, 2.8476562, 1.5097656, 1.6083984, -1.2363281, -1.7304688, 2.8300781, 0.033813477, -2.8632812, 0.44604492, 0.45288086, -0.8208008, 0.6743164, -1.4765625, -2.4042969, 0.011764526, 0.26538086, -0.36694336, -1.2714844, 0.95703125, 2.3574219, 1.9335938, 0.11431885, -4.921875, -1.7001953, -0.07171631, -1.7519531, 1.0039062, 0.32592773, -1.9677734, 0.21679688, 1.6367188, -1.9335938, -1.4345703, 0.6274414, 0.23376465, 1.3935547, -0.3317871, -1.7402344, -2.7597656, -0.9399414, -1.0078125, 2.234375, -0.49926758, -1.9316406, 1.0888672, -0.070495605, -2.1054688, -0.7573242, 0.109436035, 0.08703613, 0.42651367, 2.7246094, 0.5859375, -1.1787109, 2.3554688, -0.72998047, 0.26342773, -2.0761719, 1.9667969, 2.0820312, 1.5644531, 1.1826172, -1.3427734, 0.16760254, -0.17785645, 1.4931641, 1.953125, 0.79296875, -0.8105469, 2.6191406, -0.8417969, -1.4433594, 1.2978516, 2.2675781, -0.92822266, -1.2753906, -0.5751953, 2.765625, 0.7661133, 0.4477539, 0.44458008, 2.3027344, 0.50341797, -0.42895508, -1.9658203, -0.19787598, -0.5371094, 0.16711426, -2.6035156, 1.8427734, 1.0800781, -0.12756348, -0.14404297, 0.45239258, -1.2255859, -2.6796875, -0.6870117, -0.16503906, 0.6611328, 1.9013672, 0.040863037, -1.8886719, 2.8339844, -0.061431885, 0.1796875, 1.7402344, 0.11730957, 1.3662109, 2.8886719, -1.7861328, -0.6899414, -0.37768555, -0.046905518, 3.2109375, 2.0546875, -1.0214844, -0.12683105, 1.0253906, -2.8515625, 0.64697266, 0.10083008, 1.0351562, 2.2890625, 0.8144531, 2.2636719, -3.046875, 1.7919922, 1.6992188, 1.1738281, 0.41308594, -2.765625, 0.18237305, 3.8652344, -0.3400879, -3.0644531, 1.7412109, 1.5966797, 0.74121094, 2.2246094, 0.5527344, 0.70458984, -0.12536621, -0.28735352, 0.609375, -3.1523438, -0.6035156, 2.5410156, -0.5800781, -0.56396484, -0.024383545, -0.8261719, 1.0898438, -1.3691406, -0.55371094, -2.0546875, 1.765625, -2.5292969, -2.0019531, 1.1025391, -2.1289062, -0.18554688, 0.96435547, 0.89208984, 1.3955078, 0.95947266, -0.60839844, 0.2915039, 0.91015625, -1.5800781, 1.1484375, 1.7421875, -0.7089844, -0.32299805, -0.6298828, 0.8691406, -2.5976562, -2.8867188, 1.0917969, -2.1269531, -2.6367188, 0.91748047, -3.2910156, -2.765625, -0.53808594, 0.46411133, 3.3125, 1.671875, -1.0898438, -1.9619141, -0.5761719, 0.08081055, 0.13000488, -0.060943604, 2.34375, -0.70166016, -3.0859375, -0.28295898, -0.12237549, -0.34033203, 1.3115234, -4.1679688, 1.4267578, 1.1992188, -0.4104004, 0.15014648, 0.87353516, 1.4912109, -1.0615234, 0.70410156, -2.9941406, -1.2802734, 0.2854004, 0.9902344, -0.97265625, 1.7421875, -1.859375, -0.8588867, 0.2644043, -1.40625, 0.45507812, -1.5751953, 2.6640625, -1.2724609, 0.6791992, 2.5058594, -1.0263672, -3.34375, -0.33935547, -0.4038086, -0.65625, -1.3076172, -3.8515625, 0.61083984, 0.3173828, 0.8105469, -0.06842041, -1.2822266, -1.203125, -0.19689941, 0.88964844, -1.8251953, 0.734375, 0.7910156, 0.13891602, -1.5048828, 1.3662109, 0.2866211, -2.5390625, -1.5253906, 0.59033203, 0.9921875, -0.15991211, 0.69140625, 1.1914062, 0.5073242, 0.76171875, -1.7011719, -3.3632812, 0.5683594, 2.1152344, -2.6777344, 1.5839844, -0.9267578, -0.3786621, -2.9101562, -2.9199219, 1.9316406, 2.2285156, 3.4199219, -0.11468506, 1.1367188, -0.13464355, 0.97998047, -1.0966797, -1.5185547, 0.37353516, 4.2421875, -1.9052734, -1.5449219, -0.6669922, 1.0048828, -2.6835938, -0.26367188, 1.8691406, -0.76171875, 2.7324219, 1.3349609, 1.7324219, -0.6928711, 1.0107422, 2.4082031, 0.79052734, -1.4863281, 0.5644531, -0.5991211, 0.4584961, -1.5371094, 1.5136719, 2.1953125, 1.3652344, 1.8203125, 0.7705078, 0.8676758, -1.1074219, 0.3095703, 0.16687012, 0.7158203, 0.9213867, 2.2148438, 0.52001953, 0.24853516, -0.79248047, 0.5498047, 1.7753906, -2.0449219, 0.016067505, 2.4082031, 2.0839844, -1.3154297, -0.21472168, 0.5341797, -0.8178711, -1.2080078, -0.072509766, 1.0986328, 1.8007812, 2.3574219, -0.49536133, 0.5341797, -2.2578125, 1.9414062, -0.3540039, 1.0839844, -0.62158203, -0.21740723, -2.2871094, -1.8134766, -0.10296631, -3.0078125, -1.9931641, 1.9472656, 1.8154297, -0.07299805, 1.8457031, -1.1015625, 2.0898438, 1.7617188, -2.375, 0.5698242, -0.06323242, -0.49658203, 0.94628906, -0.48266602, 3.0429688, 0.46728516, -3.3066406, -0.75927734, -2.1582031, 1.0097656, -0.97802734, 0.3305664, -3.8144531, -1.1552734, -0.46069336, 1.2900391, 0.36499023, 3.1269531, 0.0055732727, -0.7832031, 1.6103516, -2.6054688, -0.79785156, -1.6621094, -5.765625, 0.7241211, -3.2675781, 0.4248047, 2.6582031, -0.28100586, 0.25756836, 1.8798828, 3.5351562, -3.5039062, -0.1977539, -0.5751953, -0.057769775, -2.5214844, 0.50146484, 3.3984375, 0.42919922, -0.86035156, -1.4326172, -1.3193359, -2.359375, -0.28076172, 1.0693359, -2.2285156, -0.28198242, -1.8925781, 0.6855469, -2.2441406, -0.5600586, 1.9716797, -1.7441406, -1.5996094, -3.078125, 2.0292969, -0.15820312, 0.5644531, -0.8540039, 2.921875, 2.2539062, -0.78759766, 0.51416016, 0.5810547, 3.3164062, 0.0657959, -1.5498047, 0.43164062, 0.9848633, -0.22802734, -0.36401367, -0.9892578, -0.1328125, -1.2001953, 1.8183594, 1.0332031, 0.6328125, 1.5830078, -0.07006836, -2.9023438, 0.22558594, 1.3681641, -1.8095703, 0.2788086, 0.14819336, -1.7949219, -1.890625, 0.42504883, -1.5654297, -0.4255371, -1.3134766, -0.52734375, -2.046875, 1.6445312, -0.26757812, -0.49023438, 0.4116211, -1.3642578, -0.8598633, -1.1513672, 0.28149414, -1.3876953, -1.0390625, -2.5878906, -0.7158203, 1.9228516, 2.3359375, 0.10369873, -1.1601562, -0.25927734, -2.0175781, 0.15649414, -0.46362305, 1.5019531, 0.8745117, -0.9555664, 1.1357422, -0.78027344, 3.7949219, -1.6025391, 1.0537109, 1.1386719, -1.1894531, -1.9179688, 2.4121094, 2.7832031, 1.9775391, 1.3037109, 0.6586914, 1.0966797, 2.0839844, 0.49609375, 1.2363281, 0.9794922, -0.43139648, 0.28833008, -0.41577148, 0.85498047, -0.67041016, 0.9555664, 0.37426758, 1.5888672, 2.5722656, 2.0078125, 0.9560547, -2.5566406, 1.2988281, 1.1826172, -1.1015625, -1.0205078, -0.030776978, -2.5996094, 3.2558594, -0.82714844, -2.3378906, -0.07196045, 2.4335938, -1.2148438, 1.4765625, 0.8540039, -1.6123047, -0.4128418, -1.9072266, -1.3251953, -0.41186523, -1.15625, 1.3876953, -2.4921875, 1.5283203, 0.58691406, 1.8544922, 2.1035156, -0.48217773, -0.5488281, -0.7895508, -1.7626953, 0.73828125, -1.9648438, -2.0019531, -3.2519531, 0.25805664, 2.2851562, 2.03125, 0.077819824, 0.0031814575, 0.37890625, -1.7246094, -1.4707031, 0.27294922, 1.7382812, -0.8701172, -0.60839844, 1.6240234, -0.67871094, -1.3095703, -2.1367188, -0.49682617, -0.3737793, 2.5449219, 2.3027344, 1.3779297, -0.06341553, -0.11004639, -2.6640625, -4.6601562, -1.6650391, 3.1757812, 0.06915283, 0.41870117, -1.9804688, -0.41601562, 1.7431641, -0.9663086, -0.41577148, -2.828125, 0.23730469, -1.3681641, -0.66552734, -0.1182251, 0.26342773, -0.46875, -0.32958984, -0.07836914, -0.3815918, -0.42749023, -2.3359375, -2.828125, 1.9550781, -2.4765625, -0.65722656, 2.1269531, -1.9726562, -0.625, 2.2089844, 1.4013672, -2.4453125, 2.4882812, -3.5351562, 1.2988281, 0.26000977, -2.3105469, 1.2480469, 0.32373047, -0.033721924, 0.8203125, 2.4394531, 3.1386719, -0.6542969, 0.030197144, 0.6689453, 0.4970703, 0.017929077, -2.7636719, -0.61865234, -0.20690918, 1.9511719, 1.3955078, -0.6015625, -0.9086914, -1.3369141, -1.7294922, 0.058685303, -1.0195312, -0.49902344, -0.30395508, 1.0556641, 1.1308594, -0.3112793, 0.78027344, 0.83935547, -0.47583008, -0.6611328, 1.3447266, -1.2822266, 1.7871094, 2.4316406, -1.7939453, -3.0253906, -0.953125, 2.296875, 3.4296875, -1.3076172, 1.2451172, -0.40429688, 0.3166504, -0.011772156, -1.3232422, 1.3095703, 1.4501953, 0.07952881, -1.4873047, -0.97265625, 2.6757812, -2.3496094, -0.23852539, 0.8935547, -0.58251953, -1.46875, 2.1230469, 1.6337891, -2.6679688, 0.20275879, -1.4658203, 0.5629883, -1.7363281, -1.8144531, 0.7944336, -2.6933594, 0.40283203, 0.79785156, -2.7011719, -2.4765625, 2.4023438, -0.18371582, -1.1269531, 1.6777344, 3.5195312, 0.092163086, -0.5395508, 1.0097656, 0.8046875, 0.24414062, 0.50097656, -3.2460938, 0.55810547, 2.5214844, -1.9160156, 0.48461914, 1.5654297, 1.140625, -0.8515625, 0.296875, 2.171875, 2.6386719, -0.048614502, 3.2011719, 3.3496094, -0.0670166, 1.2070312, 1.3554688, 2.7089844, 3.5605469, -1.1416016, 1.6533203, 1.734375, -0.26416016, 0.5805664, -0.28979492, -0.2770996, -0.4658203, 0.49414062, -0.5629883, 1.6474609, 2.875, -2.6582031, -1.40625, -1.6455078, -1.5859375, -4.0664062, 0.40161133, -1.5126953, 0.16381836, 0.7626953, 0.27368164, 1.8310547, 2.4902344, -0.89208984, 0.15283203, -1.0292969, 2.8457031, -1.4794922, 0.5234375, -1.1845703, -2.6640625, 1.5996094, 3.1113281, 1.6943359, -0.2565918, 1.0576172, -0.85498047, -1.9003906, 2.6640625, 1.8710938, -1.8164062, -0.097717285, -0.7832031, 1.8603516, 2.5097656, -1.8818359, 1.8720703, 1.0878906, -1.6660156, -3.7070312, 1.1132812, 0.068603516, -0.32128906, -1.5888672, -4.9960938, 1.7246094, -2.2949219, -0.0871582, -1.4257812, 0.3701172, -0.47485352, -1.0087891, 1.2216797, -0.50390625, -1.9208984, 3.046875, 1.4189453, -1.8125, 0.83251953, 2.5527344, 2.4082031, 0.26635742, -0.17492676, 0.5698242, -0.52246094, -1.5332031, 4.1289062, -0.23046875, -2.3769531, 0.7885742, 3.1816406, 0.18444824, 0.28173828, -0.2524414, 1.2773438, 0.6699219, 1.6123047, -0.44848633, -0.61572266, -1.1347656, -0.055480957, -0.021575928, -0.42138672, -0.7324219, -1.4179688, 0.23364258, 1.0380859, -1.9648438, 0.12176514, 1.5009766, -0.74121094, 2.5195312, 1.5869141, -0.66796875, -1.3251953, 0.37817383, 0.95214844, -2.1425781, -1.0429688, 1.1855469, -0.07116699, -0.19580078, -1.7568359, -0.67333984, 0.7651367, -0.39941406, -1.15625, -0.7441406, -0.11065674, -1.9892578, 0.18054199, -1.8310547, 1.7353516, 2.828125, 0.00019073486, 2.234375, -0.8330078, -0.7133789, 0.5942383, -1.9130859, -1.3671875, 1.6171875, 1.6572266, 0.2220459, 0.8901367, -1.4677734, -3.3457031, -1.0751953, -2.4277344, 2.0332031, -0.30297852, -1.3339844, 0.22790527, 0.015548706, 2.3710938, 0.82910156, 1.1357422, 0.6621094, -0.03930664, 1.8447266, -0.99365234, 0.4873047, -1.0820312, -0.36108398, 0.72558594, 4.4101562, 2.4726562, -1.5410156, -1.2998047, 1.4599609, -0.2631836, -2.4179688, -0.24938965, -0.6035156, -0.37402344, 1.2441406, 3.3574219, 2.4160156, 0.9819336, -1.9365234, -0.19897461, -0.5395508]}, "B095JY9XMN": {"id": "B095JY9XMN", "original": "Brand: Zovoty\nName: Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)\nDescription:

          Have you already start the wonderful Barbecue party?
          Is your grill still look as new as you bought it?

          BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
          BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

          How does the Grill Cover protect your expensive grill?

          1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
          600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
          Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

          2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
          With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

          3.Extra Larger Design Ensure to Fit Various Kinds of Grills
          According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58\"x24\"x48\")fits most brands of grills, such as Weber, Char Broil etc.
          And, it also fits well for the 2 3 4 burner gas grill.
          Warm tips: Please measure your grill first before purchasing!

          4.Handle,velcro straps, Vents
          The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
          The convenient velcro straps ensure tightness for extreme outdoor conditions. Don't worry the grill cover will be blown off.
          The vents help keep you expensive grill ventilation.\nFeatures: FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58\"x 24\"x 48\") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly\nRIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring\n600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc\n100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don't allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area's all year's rainy day\n2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don't worry to have it outside on a typical wet and stormy day\n", "embedding": [1.3662109, 2.2636719, 3.7539062, -1.3417969, 0.9057617, 1.4482422, 0.8808594, -1.9736328, 0.44750977, 1.4404297, -0.93066406, -0.11773682, 1.2070312, -4.421875, 1.2705078, -0.15966797, 0.068847656, 2.9765625, 2.8847656, -0.057250977, 1.7197266, 1.0292969, 1.5849609, -0.048034668, 0.77978516, -0.087402344, 4.4257812, -2.9492188, -0.36767578, -1.2041016, 1.5771484, 0.55566406, 0.8647461, 1.6816406, -3.4589844, -0.9560547, 0.4333496, 1.3076172, -0.05722046, -1.0244141, -2.2246094, -2.4375, 2.8964844, 0.6435547, -1.3359375, 0.5083008, -2.0351562, -0.38623047, -0.43017578, -3.8535156, 1.359375, 1.9589844, 2.4902344, 0.46191406, -3.421875, 2.4960938, 0.83447266, -1.3232422, -0.03527832, -0.90527344, 0.31713867, -0.77685547, -0.8330078, 3.0117188, -1.0458984, -1.3066406, 0.16772461, -1.1748047, 2.0488281, -0.2763672, 1.3876953, 0.42529297, -0.6850586, 0.43554688, 1.3330078, -0.36743164, -1.8417969, 2.21875, 0.6879883, -1.0449219, -1.0576172, 4.5273438, 0.011260986, -1.8544922, -1.4941406, 0.5336914, -2.5136719, -1.5, 2.6738281, -1.4091797, 0.03213501, 0.76660156, -1.3027344, -5.0585938, 0.026168823, -2.5839844, 3.0449219, -1.2412109, 1.4189453, 1.1162109, -2.6289062, 0.58984375, -2.0390625, 0.8569336, -2.4375, -2.6933594, 1.9238281, -0.51660156, 0.8261719, -0.29467773, -1.0126953, 0.4584961, -0.68603516, 0.64453125, 3.2324219, 0.81347656, -1.3164062, 1.5986328, 0.56689453, 2.2421875, 4.0625, -0.5908203, -0.34521484, -2.59375, 0.69384766, 0.08721924, -0.37841797, 1.0400391, 3.5097656, -0.7128906, 1.4511719, -1.1757812, 1.1689453, 2.9726562, -0.40283203, -0.14440918, -1.5751953, -0.6425781, -3.0117188, 2.890625, -0.7138672, -1.6484375, 0.7084961, -2.4179688, -2.2460938, -0.08343506, 0.30273438, 3.6894531, -2.171875, -3.2089844, 0.8691406, -1.8115234, -0.4880371, -0.9326172, 1.0205078, -0.36816406, 0.36279297, -3.4609375, 3.3398438, 2.6425781, 2.6367188, -1.2734375, 1.6240234, 0.5097656, 1.6054688, -2.5332031, 0.04840088, 0.4987793, 0.2631836, 2.1132812, 0.19250488, -0.47265625, 0.6870117, -0.14526367, 1.5361328, -0.6743164, 0.77783203, 1.9794922, -0.10803223, -0.123046875, 0.8984375, -0.89501953, -0.84228516, 1.4609375, -1.1171875, -1.5244141, 0.89160156, 1.4609375, 1.0566406, -0.4880371, -0.9555664, 0.32885742, 0.53466797, 0.37231445, -2.2597656, -1.5664062, 0.7373047, -1.1875, -0.07519531, 0.32788086, -1.9453125, -2.6269531, -1.1806641, -0.9169922, -3.0449219, -1.3056641, -1.3535156, 0.8432617, 1.8173828, 0.58447266, 0.40527344, -2.6113281, 2.4042969, 3.2792969, -1.2099609, 0.234375, 2.1152344, -1.0126953, 1.2734375, 0.7416992, -1.3046875, -0.7519531, 0.32641602, 4.21875, -0.6982422, 1.8144531, 1.3212891, 0.33691406, -1.109375, -1.7216797, 0.42993164, 2.1894531, -1.046875, 0.07434082, -1.6503906, 0.8261719, -0.001039505, -1.25, -0.61621094, -0.4506836, -1.3828125, -0.9658203, -3.1835938, -1.7939453, 0.9003906, 0.72021484, -0.87939453, 2.4960938, 1.3007812, -1.1992188, -0.6269531, 1.9833984, 1.0576172, -0.24023438, -0.07312012, 1.5664062, 1.4511719, -0.34448242, -2.2226562, -0.9941406, -0.45092773, -1.0224609, -1.1367188, 0.9716797, 0.19934082, -0.48388672, 0.52783203, 0.9765625, -1.6445312, -1.7246094, 1.5908203, -0.28710938, -0.17883301, -1.9365234, 1.1767578, 1.3408203, 0.18188477, 0.3869629, 1.765625, 0.25683594, 1.0341797, 1.5917969, 1.3876953, -2.3632812, 1.28125, -0.045806885, 0.11633301, -2.2695312, -0.61621094, 0.11090088, 4.1875, 0.8286133, -0.4345703, 3.0957031, -0.31884766, 0.23168945, 1.8808594, -0.4580078, -2.1933594, 2.1347656, 1.1523438, 1.3759766, -0.6044922, -0.28637695, -1.8017578, -1.1523438, 1.0078125, -2.9082031, -1.3681641, 1.1826172, 0.7421875, 0.67285156, 0.5205078, 0.0904541, -2.671875, -2.3398438, 0.88623047, -2.9042969, 0.93603516, 0.26586914, 1.4853516, 1.1044922, -1.8808594, -2.0761719, 0.0064926147, -0.1529541, -2.2441406, 0.015716553, 0.44360352, -0.23266602, -0.19091797, -1.6132812, 0.6767578, -1.7470703, -0.7919922, -2.78125, -2.796875, -1.6816406, -1.9970703, -1.8671875, 0.5473633, -0.9135742, -3.0332031, 1.2939453, 1.5078125, -3.7011719, -1.7509766, 0.1394043, -1.796875, 1.3085938, -0.90234375, -0.22546387, -0.6557617, -3.96875, 0.5620117, -0.87402344, -1.8535156, 0.26513672, -1.4423828, -0.12365723, -0.640625, -0.056243896, -0.5756836, 1.7285156, 1.3857422, -0.3088379, -1.203125, -3.2246094, -0.2388916, -2.3027344, 0.3251953, -1.8554688, 0.3684082, -3.6347656, -1.4882812, 0.97802734, -0.5234375, 3.3789062, 0.00024604797, 0.8095703, -0.43725586, -1.8701172, 0.4086914, 0.08929443, -2.1699219, 0.84277344, 1.2265625, -0.96533203, 0.026382446, -4.0859375, -2.25, -0.9033203, 0.47070312, -0.0090789795, -0.44018555, -0.020141602, 2.8320312, -3.5546875, -1.2910156, -1.4003906, 1.2050781, -0.52685547, -0.76953125, -0.74609375, -3.3515625, -2.6464844, -1.0400391, -2.0878906, 1.7373047, -1.0429688, 0.25561523, 2.7558594, -0.31201172, 3.6269531, 0.38232422, -3.7578125, 0.52490234, 1.6191406, 0.7060547, 2.015625, 0.16101074, -0.4477539, 0.20263672, 0.5546875, 2.5058594, 1.4111328, 1.5761719, 2.1152344, 0.73876953, 0.15344238, -0.11395264, -0.14074707, -1.4472656, 2.6074219, 2.8300781, -0.17260742, -0.019638062, 0.43164062, -0.28955078, -1.2119141, -0.3203125, 2.0683594, -0.13378906, 0.022277832, 0.88623047, -1.3564453, 0.9321289, -0.029510498, 2.4257812, -0.9160156, 1.9697266, 0.8144531, 0.6113281, 0.99853516, -1.3691406, 1.9462891, 2.3691406, 1.2919922, 0.8496094, 1.8554688, 0.5209961, -0.64453125, 0.7260742, 1.8798828, 1.4169922, -0.5888672, 2.4824219, -0.34033203, 1.171875, 2.1914062, -3.1132812, 2.6269531, -1.3544922, -0.29541016, 1.3076172, -1.8291016, 0.83203125, -1.4023438, -0.31396484, 0.11035156, -1.7226562, -0.2939453, -2.828125, -1.875, 0.30322266, -3.3554688, -2.734375, -0.7182617, 3.1523438, 0.22668457, -1.6542969, -0.78466797, 1.21875, -0.43798828, -1.8056641, 1.2451172, 2.0957031, -1.0205078, 2.6777344, 2.3476562, -0.82177734, 1.7998047, -2.6738281, 1.5322266, 0.5205078, -1.5810547, -1.1494141, -0.31274414, -0.8623047, -1.1523438, 2.1542969, 1.0976562, 2.4980469, -0.40698242, -0.36621094, -2.5253906, 0.59228516, 1.7353516, -2.1386719, -0.20349121, 1.5966797, 0.6376953, -0.63427734, 0.60839844, 1.6396484, -0.20629883, -2.6074219, 1.7783203, -2.4863281, 0.0060310364, 0.07928467, -5.265625, -1.0341797, -0.12670898, -0.9848633, 2.3242188, -0.5336914, 0.56933594, 2.8378906, -0.546875, -0.49414062, 0.62109375, -2.6933594, -2.4726562, -0.18933105, -0.9223633, 2.3339844, 0.17993164, -2.234375, -1.7324219, -2.5429688, -1.8847656, 0.34448242, 0.68603516, -0.84033203, 0.3869629, -2.5996094, 1.1416016, -1.8652344, 0.6533203, -0.1965332, 0.1842041, -0.105651855, -0.08770752, 2.3046875, -0.23034668, 1.6044922, 0.7241211, 0.9321289, -0.94091797, -0.5185547, 0.019119263, 1.1660156, 3.2226562, -0.75634766, -3.6503906, -0.0059814453, 0.41674805, 1.8457031, -0.46264648, -0.30444336, -0.8598633, -0.97265625, 0.11639404, 0.80029297, 2.5449219, 1.0751953, -1.1298828, -2.4785156, 1.28125, -1.0117188, -2.0527344, -1.3720703, 0.734375, 0.8696289, 2.0585938, -3.1933594, -2.2109375, 2.0058594, 1.1914062, 0.30371094, -1.1650391, 4.2890625, 2.4414062, 1.1298828, 3.2050781, -2.1640625, 0.6557617, 0.8022461, -0.9350586, 0.5776367, -0.4716797, -1.3544922, 0.13354492, 1.1210938, 2.2382812, -1.90625, -1.359375, -0.53466797, -1.6044922, -0.41455078, -2.109375, 2.9472656, -0.22949219, 0.5029297, 0.03152466, -3.1347656, 1.3300781, -0.36376953, -0.21972656, 2.0664062, -1.7773438, 0.2746582, 0.09173584, 0.7241211, -1.1035156, 1.7919922, -0.03250122, -0.53027344, -0.34350586, -1.8798828, 0.31445312, 1.3203125, -1.2783203, 0.13720703, 0.80322266, 1.1464844, -0.55859375, -1.6259766, 2.7070312, 3.0507812, -0.7597656, 1.6220703, 1.2744141, -0.6352539, 1.6953125, 1.5351562, -0.80078125, 0.80615234, 0.47436523, -0.95214844, 2.0332031, -1.3232422, -2.0292969, -0.9765625, 0.984375, -1.3867188, 2.1484375, -1.8691406, -1.2402344, 2.1972656, -1.4335938, 0.48095703, -0.66748047, 0.009727478, 1.7675781, 0.1616211, 1.9746094, -0.73583984, 0.91748047, 4.3007812, -1.6728516, -2.0292969, 1.2070312, -1.2597656, -0.10223389, -1.0595703, -1.0654297, -3.6542969, -1.0654297, 2.5058594, 1.0908203, 1.6005859, 0.4453125, 2.5820312, -2.078125, 1.6767578, 0.29223633, 2.4355469, -1.9140625, -0.4567871, 3.1386719, -2.8105469, -1.0078125, -1.4580078, 0.44262695, 1.8730469, 1.1513672, 2.25, -0.4440918, -0.41088867, -0.90966797, -3.0546875, -3.3925781, -1.0664062, 1.1347656, -1.3730469, 1.0839844, -0.5292969, 1.9824219, 1.2265625, -0.5805664, -0.5908203, -0.53759766, -0.14770508, -1.5732422, -1.0117188, -0.78466797, -1.8085938, -0.85058594, 1.7617188, 0.40283203, 1.0957031, 0.5205078, -4.125, -0.36401367, 0.9248047, -3.5644531, -0.9946289, 1.4550781, 0.44360352, 0.7895508, 1.3144531, 0.09509277, 0.9814453, 2.7871094, 0.05065918, -0.11187744, 0.48266602, -1.4560547, 0.61865234, -1.1572266, -1.1474609, 1.4326172, -1.3193359, 0.23388672, 0.18762207, -1.1025391, 1.9316406, 1.3398438, -0.15722656, -1.1083984, 0.54003906, 0.55810547, 2.5136719, 0.53564453, 0.1451416, -0.5, -1.1015625, -2.8867188, -0.4152832, -0.8071289, -1.7617188, -2.3300781, 0.62353516, 0.4951172, 2.0585938, 1.7285156, 1.3642578, 1.0244141, -2.4433594, -0.54833984, 0.9213867, 2.5761719, 0.75634766, -2.7363281, -1.8896484, -0.4230957, -0.23657227, 1.1748047, -0.46411133, -0.7421875, 0.3996582, -1.1113281, -0.72558594, 0.8725586, 1.0126953, 0.80566406, 0.85302734, 1.1601562, 1.2177734, 2.3085938, -0.87060547, 1.1123047, -0.44555664, 1.8408203, -3.0273438, 2.546875, 0.46118164, -3.5820312, -1.1464844, -1.4638672, 0.20874023, 1.0097656, -1.9902344, -0.9003906, -0.34472656, -0.5463867, -2.7363281, -0.44848633, -2.3085938, 1.0566406, 0.31933594, -0.07165527, -0.08666992, 2.0527344, -0.4169922, 2.6582031, 1.5117188, 0.69091797, -1.4580078, -1.0673828, -0.64941406, -0.078308105, 0.78808594, -2.0410156, 0.25512695, -0.82470703, 0.55322266, -1.0039062, 0.14318848, 0.61083984, 1.4726562, 1.359375, 2.5449219, 2.5703125, 1.9443359, 1.6396484, 0.117492676, 0.49023438, 0.7246094, -1.8603516, -0.1508789, 3.1308594, 2.0546875, 3.4296875, -0.1640625, 0.55810547, 1.8945312, -0.115478516, 0.5029297, 0.31982422, 1.7919922, -3.4414062, 0.5571289, 1.6552734, 0.15563965, 0.11230469, 1.9541016, -1.5410156, -1.3457031, 0.2541504, -0.37402344, 3.7363281, -1.1845703, 3.2070312, 0.7109375, 2.3222656, 1.2138672, -4.1445312, 0.32104492, 0.76220703, -1.9580078, -2.0097656, 1.6630859, 1.4677734, 2.1835938, 0.22595215, 1.296875, 2.0683594, 2.5351562, 1.8701172, -0.8569336, 0.65527344, -0.17333984, 1.8027344, 0.7026367, -1.1210938, -0.99609375, -0.20300293, -1.8984375, -1.046875, 0.98779297, 1.3320312, 1.3847656, 1.8066406, -3.9335938, 1.1123047, 0.36328125, 2.2167969, -0.8510742, -0.9277344, -0.44677734, -2.4960938, -0.70214844, -0.08178711, -1.6025391, 2.703125, 0.51660156, -0.54589844, 1.5585938, 0.64746094, 2.1210938, -0.515625, 1.3378906, 0.12359619, 0.056121826, -0.2841797, 0.75439453, 1.3544922, -0.8027344, -0.6640625, 2.15625, -0.2866211, 1.5136719, 2.0332031, -0.0019550323, 1.3330078, 2.0664062, -0.27954102, 1.6376953, 0.57958984, -0.40551758, -1.0419922, -0.12878418, 0.06793213, -2.6074219, 1.0195312, 2.015625, 0.43432617, 0.55371094, 2.2246094, -0.6982422, 2.2304688, 0.8359375, -1.4433594, -1.6396484, 1.1005859, 0.48608398, -0.9770508, -0.6972656, -0.58154297, 0.6933594, -0.18896484, -0.67285156, -1.1152344, 0.42041016, -0.27075195, 0.41308594, 1.3447266, -2.4316406, -1.4511719, -0.34375, -0.3466797, 0.12512207, 1.4248047, 1.6728516, -0.82177734, -1.5537109, -0.95947266, 0.7001953, -1.0058594, -2.7675781, 1.3027344, 1.734375, 1.9072266, -0.44482422, -1.4296875, -2.2832031, -1.0742188, -0.6821289, 0.953125, 0.71777344, -0.38134766, -0.29882812, -0.94091797, 3.5019531, -0.58251953, -1.3662109, 0.4934082, 0.036621094, 1.5380859, -0.07611084, 0.021881104, -1.2314453, -1.5478516, 1.7177734, 1.9443359, 3.2265625, 0.10357666, 0.96435547, 2.5058594, -1.4960938, -2.609375, 0.1517334, 0.08123779, 0.87158203, -0.8745117, 1.7080078, 1.09375, -0.97216797, 0.2565918, -0.11376953, -1.6962891]}, "B07QP6RCJW": {"id": "B07QP6RCJW", "original": "Brand: GasSaf\nName: GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS)\nDescription: Propane Tank Gauge
          Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
          Easy to Attach
          It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
          Solid Brass Withstands Weather, Scratching, Denting and Corroding
          Color Coded Dial for Easy Viewing
          How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak\nFeatures: 1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks\n2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement.\n3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety\n4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy.\n5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "embedding": [-1.4238281, 1.7988281, 2.734375, 1.7978516, -0.68603516, -0.13708496, 1.0126953, -1.359375, 2.0644531, 1.4550781, 0.9790039, -1.2636719, 1.1152344, -1.7714844, 2.5332031, 0.76708984, 0.29052734, 1.4277344, 1.0878906, 2.8222656, 2.375, 1.0205078, 1.3847656, -0.8857422, 1.1982422, 0.11102295, 3.2246094, -2.4394531, -0.3894043, -0.5463867, 1.3603516, -0.28979492, -0.20861816, 2.3398438, -0.7631836, -1.6386719, -0.18981934, -0.05834961, -2.4863281, -1.375, -0.6567383, 0.3918457, 1.7216797, 0.6845703, -1.9765625, -1.1816406, -1.2646484, 0.3178711, 0.8442383, -1.4365234, -0.0046577454, 2.1132812, -1.2011719, 0.09881592, -0.7841797, 1.1669922, 2.3652344, -1.9267578, 1.5634766, 2.2753906, 1.6152344, 0.54541016, -1.8066406, -0.10046387, -1.125, -0.18151855, 0.6635742, -0.20568848, 0.19372559, 1.7861328, 0.60302734, -0.06088257, 1.6660156, -0.97314453, -0.82421875, 1.2548828, -2.203125, 0.9111328, 1.171875, 0.7573242, -0.5307617, -0.054748535, 0.11315918, -2.6875, -0.6850586, 0.43310547, 1.5537109, 1.2041016, -0.67626953, 0.17675781, -1.8544922, 2.1777344, -2.8535156, -4.3046875, 0.8623047, 0.24414062, 0.63623047, 1.5644531, 1.9511719, 1.4833984, -0.6928711, -0.22167969, -0.4140625, 2.6894531, -1.9560547, -1.1621094, -0.12976074, 1.3369141, -3.1503906, -0.3022461, 1.3183594, -0.21801758, -0.13317871, -1.7675781, -0.6870117, -0.28076172, 0.796875, -1.0283203, 2.9082031, 0.5336914, 3.53125, -1.2871094, 0.65234375, 0.57666016, 0.27392578, 0.56884766, 0.61572266, -0.40600586, 3.0800781, -1.7949219, 2.2304688, -0.15539551, 1.4765625, -1.3828125, -0.009506226, -1.4560547, -1.4287109, -3.9882812, -1.9316406, -0.03741455, -4.4414062, 0.5908203, -0.64453125, 0.14904785, -2.5214844, 0.47338867, -3.5019531, 1.8691406, 1.6220703, -1.2207031, 2.1054688, -1.8857422, 0.89746094, -0.23986816, 1.7705078, 1.1357422, -2.1738281, -3.40625, 2.5664062, 1.6318359, 1.671875, -1.2490234, -2.6191406, -0.41723633, 1.0058594, -2.4042969, 0.43188477, -0.053710938, -0.7392578, 0.6176758, 0.77783203, -1.78125, -0.38842773, 0.84716797, 0.25195312, -2.4121094, 1.9863281, 2.2109375, 1.8388672, -1.296875, -3.4003906, -2.0683594, -0.8955078, -1.203125, 1.5917969, 0.6040039, -1.5566406, -1.5957031, -0.8466797, -2.5136719, -1.5488281, 1.84375, -1.0185547, 0.031585693, 1.0107422, -2.3476562, -4.59375, 0.11273193, -1.4375, -0.18469238, 0.83496094, -1.4111328, 0.6328125, 1.3701172, -1.1552734, -1.9755859, 1.75, -1.8759766, 1.6396484, 1.4589844, -0.22436523, -1.2832031, 1.3984375, -1.2138672, 0.09967041, -1.4511719, -0.27807617, 2.34375, 1.0419922, 0.79248047, 0.16479492, -0.3010254, 1.9931641, 0.8095703, 2.1210938, 1.4921875, 0.65185547, 0.77490234, -2.4941406, -1.8652344, 2.6289062, -0.11126709, -0.2109375, -1.3808594, 0.11151123, 2.1894531, -0.5258789, -0.38305664, 0.5205078, -0.8955078, -0.6533203, -0.105651855, -2.0097656, 0.4260254, -1.484375, -1.7822266, -0.7260742, 1.0419922, 2.859375, -1.4560547, 0.9477539, -0.70214844, -1.7666016, -1.3486328, -2.6894531, 0.70751953, 1.0644531, 1.8535156, -0.16418457, -2.5214844, 1.3291016, 1.2431641, -0.6142578, 0.31591797, 0.1920166, 2.0195312, 0.010726929, 0.62646484, -0.86572266, 1.6953125, 1.3662109, 0.91259766, 0.83984375, 0.46069336, 0.828125, 1.8105469, -2.046875, 2.9902344, -0.14660645, 0.69433594, 1.0029297, -1.1699219, 1.6425781, -3.46875, 0.921875, 0.68066406, 0.8798828, 1.3417969, -1.9042969, -0.40844727, 3.6855469, -1.9931641, -3.2539062, 3.7207031, 3.8730469, 0.62109375, 1.5419922, -0.2902832, 0.119018555, 0.20690918, 0.7192383, 1.4169922, -1.796875, 1.3925781, 1.8642578, -0.49731445, -0.44311523, -0.87841797, -0.018600464, 1.0458984, -0.033843994, 0.5732422, -1.2636719, 1.1025391, -0.6821289, -2.2871094, 2.5351562, -2.9335938, -1.5234375, 2.640625, 0.8955078, 2.8125, 0.96435547, -1.8701172, -0.093444824, 1.5458984, -0.84814453, 0.4230957, -0.43969727, 2.0253906, 2.7148438, -1.1484375, 0.08502197, -1.4990234, -1.0195312, 1.6376953, -3.0566406, -3.4433594, 0.67333984, -2.109375, -0.98535156, -0.24731445, 0.5073242, 2.1484375, 0.78222656, 1.3798828, -2.1152344, 0.63183594, 0.83691406, -2.8886719, 0.4243164, 2.6679688, -0.06021118, -1.9550781, 0.39624023, -0.14379883, -0.22644043, 1.8496094, -0.8466797, -0.6069336, -0.7915039, 0.73291016, 0.9975586, 0.84472656, -0.9868164, -0.50097656, 0.67285156, -2.6054688, 0.6279297, -3.2910156, 1.7412109, -1.6796875, -0.76123047, -0.95458984, -1.8994141, 0.4260254, -0.49609375, 1.9550781, -0.38500977, 3.15625, -2.0449219, 1.0009766, 0.032196045, -1.8144531, -3.1308594, -0.453125, -0.56591797, -0.4885254, -0.19238281, -3.1660156, 0.042785645, -1.4619141, 0.50439453, -0.48095703, -0.33984375, -3.9628906, 0.40356445, 1.7802734, -0.20837402, -0.47509766, 2.6894531, -0.47680664, -1.8457031, -1.2607422, 0.4987793, -0.07946777, -1.2744141, -0.7104492, 1.625, -0.12573242, 0.39331055, 1.0751953, 1.5107422, 1.0712891, -0.81347656, -3.125, 0.77685547, 1.40625, -0.83935547, 0.99902344, -0.9692383, -1.7910156, -0.8696289, 0.14953613, 2.9003906, 2.6621094, 2.4082031, -0.77001953, -1.21875, 0.30786133, 0.35913086, -0.6567383, -1.0537109, 0.38305664, 2.1210938, -2.7148438, -1.7363281, 0.8041992, 2.2617188, -2.1660156, -0.5678711, 0.42700195, 0.029296875, 3.2597656, 1.5576172, -1.6777344, 0.13720703, -0.68408203, 1.7529297, 0.14465332, 0.24438477, -0.81640625, -0.60546875, 0.33911133, -2.2714844, -0.45092773, 1.6513672, 0.2849121, 0.29101562, 0.86279297, -0.453125, -2.5195312, -0.28759766, -0.21203613, -0.7314453, -0.23254395, 1.2480469, -0.46044922, 1.0527344, -0.26782227, 0.49658203, -0.15124512, -1.2265625, -0.07910156, 0.14978027, 2.1816406, -0.066345215, -0.38330078, -1.6318359, 0.41796875, -0.5683594, 1.6220703, 0.7866211, 0.18945312, 1.2324219, -1.4052734, -0.3100586, -1.7128906, 1.0800781, -2.4472656, 0.6748047, 0.37475586, 0.3515625, -2.8476562, -2.0644531, -0.39282227, -0.6850586, -0.95703125, 2.0917969, 0.46655273, -0.92285156, 0.07922363, -0.20544434, 2.3398438, 1.4375, -2.2285156, -0.07714844, -2.4179688, -0.3083496, -1.8623047, 0.014411926, 1.7988281, 1.6787109, -2.4238281, 0.56884766, -1.1152344, 1.734375, 0.35913086, 0.828125, -0.8354492, -0.9614258, 0.75097656, 2.6699219, -0.38671875, 2.1875, 1.2041016, 0.025848389, -0.13049316, -3.640625, -0.5283203, -0.625, -4.3984375, 0.72998047, -2.0175781, 0.0042686462, 1.9443359, 0.9692383, -0.22839355, 0.15344238, 1.078125, -4.5664062, -1.3095703, -1.0400391, 2.2929688, -1.9140625, -0.2631836, 2.6601562, 2.3398438, -0.68115234, -2.2832031, -0.59277344, -1.9160156, 0.5649414, -0.20031738, 1.671875, 1.3027344, -0.31860352, -0.11456299, -0.6533203, -0.984375, -0.40893555, 1.2753906, -1.0390625, -2.5566406, 2.6835938, 0.21557617, 0.8364258, -0.43969727, 2.6191406, 2.9003906, -0.99072266, -0.64208984, -0.65283203, 2.0761719, 0.37719727, -2.0507812, -1.0068359, -2.203125, 1.2734375, -1.4394531, 0.83984375, -0.8359375, -1.4599609, 1.4384766, -0.47680664, 2.0488281, 0.4255371, 0.23718262, -1.5830078, 0.52734375, 1.3701172, -1.0966797, -1.0664062, -0.76220703, -1.8037109, 0.006427765, 0.37768555, -1.96875, -1.5986328, -0.56152344, -0.11590576, -3.9316406, 2.0917969, 2.0253906, 1.0009766, -1.1298828, -0.70654297, 0.1763916, 1.0117188, 1.5253906, 0.23864746, 0.4621582, 0.56347656, -0.32055664, 1.3544922, 1.4941406, -1.5888672, -0.62060547, 1.1748047, -0.84521484, 0.80126953, 0.19116211, 1.546875, -1.9433594, 0.5019531, -1.3662109, -0.78271484, 2.3652344, -0.7998047, 0.47631836, 2.7910156, -0.070739746, -3.0488281, 0.5834961, 2.4667969, 3.3183594, -0.028457642, -0.2770996, 2.2304688, 2.4394531, 0.5073242, -0.23962402, -0.19311523, -1.8173828, 1.2646484, -0.79541016, 2.1464844, -2.2148438, 0.6064453, 0.8642578, 2.40625, 1.4375, 0.5180664, 1.3330078, -2.0351562, 2.0058594, 0.36914062, -0.35766602, -0.8198242, -0.47436523, 0.31396484, 2.5, -1.5927734, -1.7998047, -0.87646484, 2.0957031, 0.42944336, 1.9990234, 1.2978516, 0.23950195, -0.38793945, -2.2050781, -2.9003906, -0.1697998, -0.007457733, -0.16491699, -1.1425781, 0.103515625, -0.3864746, 1.6347656, 2.5097656, 0.78125, 0.15319824, 0.013626099, -0.19604492, 0.29418945, -0.9067383, -0.9165039, -1.2021484, 0.47094727, -0.3059082, 0.7680664, 0.48095703, 1.4482422, 2.1464844, -0.32543945, -2.5136719, -1.6777344, 1.2509766, -1.0605469, -1.0898438, 1.4707031, -0.42626953, 0.5834961, -0.39282227, 0.36669922, -1.7255859, 0.96728516, 3.6972656, -0.09039307, -0.21850586, -0.85302734, -2.8769531, -3.9160156, -1.28125, 0.4399414, 0.5654297, 1.4394531, -2.8769531, -0.41186523, 1.3017578, -0.15307617, 0.070007324, -3.0605469, 1.65625, -0.61865234, 0.060302734, -0.96191406, 1.3339844, -0.52490234, 0.9111328, -1.1220703, -1.0097656, -1.5068359, -2.65625, -2.015625, -1.6162109, -1.0341797, -0.37841797, 0.6323242, -0.9423828, 1.2041016, 1.2246094, 1.4404297, -1.6962891, 2.2441406, -1.3466797, -0.36206055, 3.1210938, -1.0146484, 0.7548828, 1.9550781, 0.021728516, 0.9892578, 0.9614258, 1.7255859, -1.6162109, -0.3557129, 0.5449219, 1.234375, -0.83740234, -1.3955078, 0.87597656, 0.10406494, 1.8525391, 0.73876953, -0.65771484, -1.7333984, -2.2773438, -3.1894531, 0.73779297, -0.048858643, 0.40356445, -0.75927734, 0.94677734, 0.8701172, 0.83251953, -0.27734375, 1.3066406, -1.8662109, -1.8984375, 2.4726562, -1.0146484, 2.1992188, 2.0800781, -2.0449219, -2.1914062, -3.140625, 2.9863281, 2.3632812, -1.1542969, 0.421875, -1.0957031, -0.18725586, 1.8339844, -0.27392578, 2.8417969, -0.093933105, 1.2246094, -0.30859375, -0.15490723, 2.5117188, -1.6035156, 1.4462891, 1.6298828, -0.97509766, 0.5463867, 1.4296875, 1.7421875, -2.1738281, 1.0322266, -2.2636719, -0.054229736, -1.6728516, -1.2333984, 0.6635742, -3.6503906, 0.12915039, -0.6352539, -1.6816406, -3.6582031, 2.3144531, -0.05734253, -1.2490234, 0.99658203, 2.0253906, -1.6845703, -0.74365234, 3.1601562, -1.4228516, -1.3203125, -1.3378906, -1.9550781, -0.26391602, 1.4277344, -3.0664062, -1.6796875, 3.7070312, 2.8925781, 0.19030762, 1.4970703, 0.34301758, 2.0253906, 0.029891968, 2.4492188, 4.2734375, -0.09667969, 2.3398438, 1.4140625, 1.9511719, 4.9296875, -1.8583984, 1.4277344, -0.06530762, 1.0810547, 1.9873047, -1.6777344, 0.03753662, 0.40014648, 0.47265625, -0.8129883, 0.26342773, 1.9824219, -3.4511719, 0.4711914, 0.029388428, 0.115356445, -3.1074219, 0.3725586, -2.0078125, -0.11029053, -0.5463867, 0.66259766, 1.1777344, -1.3261719, 0.15490723, -0.1381836, 1.0302734, 3.21875, -1.1308594, -0.31103516, -1.3740234, -2.8125, 0.27905273, 1.5712891, 0.5888672, 0.50927734, 0.059295654, 0.16479492, -1.4052734, -0.61621094, 1.7802734, -3.1816406, 0.95703125, -0.796875, 1.4707031, 1.7314453, -0.9716797, 2.6503906, 0.15270996, 0.5185547, -3.109375, 1.2900391, -1.3769531, 1.1435547, -0.16430664, -5.1875, 0.13195801, -1.8896484, 2.2558594, -4.0742188, 0.34033203, 0.40795898, -2.6132812, 1.8496094, 0.57421875, -1.9375, 2.1992188, 1.203125, -1.9716797, 0.0052490234, 1.4111328, 1.2509766, -0.91308594, 0.34692383, 0.3671875, 0.097961426, -1.3271484, 2.2597656, -0.32861328, -0.28979492, -0.61279297, 1.796875, -0.038146973, 1.1699219, -1.75, -0.25146484, 0.94091797, 0.48217773, 0.100097656, -0.5522461, -1.8388672, 1.2763672, 0.4206543, -0.3762207, 0.26757812, 0.64453125, 0.64208984, 1.2832031, -3.1269531, -2.0585938, -0.075805664, -0.47314453, 1.1064453, 0.7963867, -1.5917969, -0.7060547, -1.3056641, 1.2714844, -2.5996094, 1.0048828, -1.8144531, -0.19348145, -1.5527344, -1.9433594, -0.2619629, 2.6738281, -0.0024471283, 0.8959961, 0.22387695, -1.2119141, 1.1298828, -0.5102539, -2.9960938, 2.1542969, 1.6484375, 0.35083008, 0.9296875, -0.020248413, 0.2536621, 0.86816406, -1.0449219, 0.32958984, 0.90771484, 2.7832031, 2.296875, 0.92626953, -0.60595703, -1.2910156, -0.77685547, -2.9101562, 0.9658203, 0.23864746, -0.39208984, 0.5102539, 2.5917969, 1.8603516, -0.8051758, 0.95654297, -0.8051758, -0.055114746, 0.55322266, -1.9863281, 0.3190918, 0.98095703, 0.8076172, 0.7939453, 2.6816406, 3.5195312, -1.4384766, -0.50146484, 1.7373047, -1.6611328, -0.5341797, 0.67089844, -0.22546387, 0.66552734, 1.4521484, 1.5917969, 3.375, 0.16687012, -0.9321289, -0.63671875, 0.064575195]}, "B001DC5HBG": {"id": "B001DC5HBG", "original": "Brand: Stansport\nName: Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)\nDescription: \nFeatures: Handy five-foot Propane Hose and Regulator Assembly tube\nFunctions as an extension cord for your outdoor propane appliances\nDesigned for use with Stansport's cast iron propane stove models 208, 209, and 210\n11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity\nNot universally compatible with all brands, Use caution when using propane appliances, For outdoor use only\n", "embedding": [-0.84228516, 1.8339844, 0.6074219, 0.6821289, -1.0927734, 0.69384766, 2.1347656, -0.70458984, 0.72558594, -0.34375, 0.66796875, 1.0351562, -0.020858765, -3.3945312, 0.74121094, -0.11456299, 0.36499023, -0.73291016, 0.8354492, 1.6601562, 0.42114258, -0.3725586, 3.2207031, -2.2402344, 0.69970703, -0.9472656, 4.5703125, -1.8222656, -0.59472656, -0.6113281, 0.29248047, 1.5273438, 0.56152344, 1.8408203, -3.1679688, -0.3256836, -0.9243164, -0.9482422, -3.2128906, -0.04776001, -1.5019531, 2.2851562, 2.5742188, 0.4699707, -2.1074219, 0.12670898, 2.5214844, -0.56396484, 0.28857422, 0.27954102, 0.16040039, -0.0032310486, 0.23413086, 1.4189453, -1.0869141, -0.67626953, 0.38427734, -1.9453125, 1.0224609, 1.3789062, 2.6953125, -1.0126953, -1.8613281, -0.78027344, -0.6191406, 2.6015625, 0.42626953, -0.9501953, -1.1015625, 1.2275391, 1.4033203, 0.5708008, 0.60253906, -1.7705078, 1.0908203, 0.49389648, -3.484375, 1.0097656, 2.4726562, -1.3798828, -1.9912109, 2.328125, 0.27929688, -0.43798828, 0.3491211, -0.120788574, -2.7050781, -0.82910156, -0.39160156, 0.5439453, -4.2421875, 3.1679688, -2.640625, -4.0742188, 0.5703125, -0.29760742, 1.625, 0.90625, 0.23034668, -0.1574707, -0.45288086, -1.5039062, 0.5810547, 1.9863281, -0.6723633, 0.42895508, 2.0898438, 1.6201172, -2.2871094, -0.43066406, 0.08227539, -1.0185547, 1.5976562, -0.39794922, -0.5957031, -0.92871094, -1.2041016, -0.6982422, 3.6484375, 0.6660156, 2.6328125, -0.95214844, 1.3847656, 1.4453125, 0.39282227, 1.6796875, -1.0195312, 0.77490234, 2.5761719, -0.8486328, -0.26123047, -2.6152344, 0.75097656, 0.53808594, 1.0322266, -1.9423828, -1.4589844, -1.8642578, -0.72265625, -1.25, -2.8105469, -0.6850586, 0.8125, 0.20007324, -5.03125, -0.12573242, -0.9453125, 1.1132812, 1.4853516, -2.9960938, -0.75390625, -1.7158203, -0.46411133, 0.15478516, 2.3964844, 0.92333984, 2.4394531, -1.5888672, 1.4785156, 3.1191406, 1.8095703, 0.039794922, -2.2617188, 0.45385742, 0.5, -4.578125, 0.19873047, -0.14440918, -1.6484375, 1.0029297, -0.48461914, -2.5273438, -1.5585938, -0.9355469, 0.13342285, 0.9350586, 0.26538086, 2.4453125, 1.2402344, 0.0067634583, -2.09375, -1.6054688, 0.14099121, -2.1660156, 1.0361328, -1.8105469, -0.4963379, -1.6337891, 0.6279297, -0.0592041, -2.4648438, -0.29736328, -1.5371094, 0.5136719, -1.1064453, -2.8261719, -1.6914062, -2.1914062, 0.8623047, 2.640625, -2.546875, -1.7929688, 0.29003906, 0.8935547, -1.3681641, -1.8671875, 1.1826172, 2.0820312, -0.8442383, 1.9785156, 0.33813477, 0.25146484, 2.8730469, -1.5732422, -1.2705078, -2.6425781, 2.4667969, 2.1933594, 2.3027344, 2.0820312, -0.20288086, 1.0048828, 0.41381836, -0.2244873, 2.234375, 1.2734375, 0.55322266, 0.5864258, -2.6777344, -1.1708984, 1.8066406, 0.9824219, 0.14538574, -0.43969727, -0.02772522, 2.7988281, 1.4365234, 0.92871094, 0.32006836, 2.2285156, 0.45043945, -0.38012695, 0.121276855, 0.6069336, -0.57177734, -0.3840332, 0.17468262, -0.14074707, 1.2880859, 1.8017578, 1.1435547, 0.33251953, 0.8125, -0.35742188, 0.36499023, 0.16369629, 0.92578125, 0.38134766, -0.1307373, -2.2128906, 2.1113281, 0.34545898, 0.8051758, 0.012680054, 0.18908691, -0.84228516, 2.3515625, -2.1054688, -1.7519531, -1.0800781, -1.7744141, 2.21875, 2.0859375, -0.6191406, 1.9570312, 0.1821289, -1.8222656, 2.8457031, 0.88720703, 0.07086182, 1.0117188, 0.11022949, 2.4414062, -2.7421875, 2.1054688, 0.46435547, 2.2011719, 0.60546875, -2.796875, 0.24511719, 4.8085938, -0.58447266, -1.1416016, 1.8095703, 0.33251953, -0.22753906, 1.1318359, 2.0195312, -0.008705139, -1.6679688, 1.9746094, -0.1665039, -1.5634766, 1.2900391, 1.7685547, -0.5805664, 0.20935059, -3.015625, -0.92529297, 0.02720642, -2.0878906, -1.7519531, -0.90527344, 2.9296875, -2.4335938, 0.2467041, 1.9892578, -2.5898438, 1.6230469, 0.6015625, 0.4416504, 0.15698242, -0.32714844, -0.3869629, -0.12023926, 0.4338379, -1.7197266, 2.9570312, 2.4941406, 1.5498047, -0.328125, -0.83251953, -0.28979492, -3.2246094, -1.1113281, 1.2363281, -1.4003906, -1.1542969, 1.2587891, -1.4277344, 0.4182129, 1.2988281, -1.0888672, 2.7167969, 0.8540039, -2.2480469, -0.4404297, 0.59814453, 0.20581055, 0.023254395, 1.1845703, 2.6015625, -0.32250977, -0.70410156, -2.4101562, 0.17858887, -0.26367188, -0.46289062, -1.5908203, 1.3300781, 0.9921875, 0.7207031, -1.6826172, -0.011642456, 0.5878906, -2.1328125, 2.7148438, -4.1875, 0.8515625, 1.1542969, 0.8618164, -1.1552734, 1.4658203, -0.61328125, -3.1933594, 0.61572266, -0.09472656, 2.8867188, -0.58447266, 2.4492188, -1.6708984, -0.8178711, -0.2746582, -1.0429688, -2.9277344, 1.4902344, 0.08306885, -1.3017578, 1.0888672, -1.7041016, 0.43676758, -0.76171875, 1.1679688, 0.29589844, -0.6821289, -0.47851562, -0.5263672, 0.27148438, -0.8515625, 0.11383057, -0.040374756, 1.0537109, -0.82958984, -0.44580078, 0.61621094, -0.5073242, 0.96533203, 1.2744141, 0.059814453, -1.6679688, -0.45214844, 2.7226562, -0.0017318726, 1.5292969, 0.25683594, -2.8730469, 1.8798828, 2.5664062, -0.7675781, 2.5292969, -1.4208984, -1.8154297, 0.2548828, -0.96875, 1.9794922, 1.2636719, 1.3867188, -0.23535156, -0.18762207, 1.1542969, 0.30200195, -2.7929688, -2.6210938, -0.41992188, 4.0820312, -1.6416016, -0.37304688, 0.70654297, -0.74560547, -2.5703125, 0.040130615, -0.9301758, 0.1586914, 1.359375, 1.1982422, -0.72753906, -1.6367188, 2.0820312, 1.2070312, 0.8276367, 0.5805664, -1.2675781, -0.41455078, 1.3925781, -1.5654297, 0.6386719, 1.7451172, 0.8955078, 1.9121094, -0.38476562, 1.1494141, 0.6455078, 0.8222656, 1.1191406, -0.13049316, 0.9316406, 2.8027344, 1.0068359, 0.8930664, -1.9335938, 1.8867188, 1.7646484, -2.0605469, -0.85498047, 2.2304688, -1.2734375, -1.1894531, 0.81103516, -1.4375, 0.115112305, -1.2246094, 0.7036133, 0.08508301, -2.1328125, 0.5053711, -0.023849487, 3.1484375, -1.7050781, 2.8730469, 0.1328125, -0.26831055, -1.3544922, -0.92041016, -1.4345703, -1.6171875, -2.09375, -3.4082031, -0.72509766, 1.8115234, 2.2929688, 0.49536133, 0.35864258, -1.1806641, 1.3681641, 3.5019531, -1.5654297, 0.049713135, 0.8588867, -0.9868164, 1.3808594, -0.7402344, 1.9658203, 0.7973633, -1.8652344, -0.5307617, -1.9199219, -0.55566406, 0.7763672, -1.8867188, 0.171875, 1.2050781, -0.07800293, 1.390625, -0.4189453, 2.4726562, -1.6582031, -1.1123047, 1.1015625, -3.0996094, -0.34448242, -3.6640625, -3.2890625, 0.2722168, -1.7646484, 0.8613281, 1.7041016, 1.1523438, 0.62158203, 1.5019531, 1.6191406, -2.4316406, -0.90283203, 0.22167969, -0.32983398, -2.8261719, -1.2011719, 0.15771484, 0.33251953, -1.2255859, -1.7519531, 0.12005615, -2.4746094, -0.7944336, -0.65722656, -2.640625, -0.32739258, -1.1103516, -0.25756836, -0.9355469, -0.121520996, 1.9179688, -0.84814453, -0.49243164, -2.1152344, 1.4345703, 2.4082031, 1.5283203, -0.0826416, 2.890625, 0.1809082, -1.7080078, -0.2854004, -0.74853516, 1.8642578, -0.43969727, -0.9042969, 1.9433594, -1.2988281, 0.21777344, -0.47802734, 0.17248535, -0.076416016, -0.9394531, 0.21887207, 0.33642578, 0.22875977, 2.2714844, 0.14794922, -3.0527344, 0.9658203, 1.8945312, -1.1269531, -1.0585938, -1.4921875, -1.9824219, -1.5517578, 1.2236328, -1.6748047, -0.92529297, -2.0429688, 1.046875, -0.75146484, 1.9726562, -0.5498047, 0.04083252, 1.3144531, -0.53222656, -1.3330078, -0.6542969, -0.27441406, -0.9526367, -0.57666016, 0.20751953, -2.0058594, 2.1367188, 2.3828125, -0.8623047, -3.5683594, 0.35083008, -1.0058594, -0.89208984, -1.0107422, 1.1416016, -0.40722656, -0.32885742, 0.9453125, -0.90527344, 2.7851562, 0.001209259, 1.9482422, 1.1767578, -1.1259766, -2.2929688, 2.4101562, -0.12646484, 1.8740234, 2.0976562, 0.36035156, 0.6816406, 1.1621094, 2.2675781, 1.2119141, 2.1328125, -0.7011719, 0.97216797, 1.2802734, 1.1669922, 0.46142578, 0.54589844, -1.2578125, -0.1217041, 1.2001953, 2.8066406, 0.8564453, -1.4892578, 1.1083984, 0.27026367, -0.27563477, -0.0044021606, -0.48999023, -1.5673828, 3.84375, -1.7441406, -2.3613281, 0.48339844, 2.8554688, -0.60058594, 1.7919922, -1.1455078, -1.4052734, 0.5288086, -1.8466797, -0.76904297, 0.3725586, -0.4020996, 1.8779297, -1.2207031, 1.9746094, 0.14892578, 2.2363281, 1.3925781, -0.91308594, -0.043701172, -0.63378906, -1.6601562, 0.30566406, -0.51171875, -1.1015625, -3.7949219, 0.9897461, 0.03540039, 0.9814453, -0.22973633, 0.7763672, 0.6489258, -1.6884766, -0.77734375, -0.10510254, 0.75, -1.8681641, -1.0732422, 2.9179688, 1.0634766, 0.042236328, -0.8808594, -1.8730469, -1.2802734, 0.41259766, 0.72314453, 0.9082031, -0.36132812, -0.77001953, -1.75, -5.3554688, -2.4277344, 0.51904297, 0.42797852, -0.23339844, -2.2207031, -0.1373291, 0.73291016, -0.06774902, 0.43896484, -2.1523438, 1.3359375, 0.3876953, 2.2304688, -0.6767578, -1.3652344, -0.88427734, 1.7158203, -0.43188477, 0.7661133, -0.25146484, -0.7963867, -3.2695312, 2.1035156, -1.8740234, 0.41845703, 1.6083984, -0.83691406, -0.77685547, 1.8300781, -0.09790039, -1.2294922, 0.4794922, -3.3867188, -0.72558594, 0.8574219, -2.0839844, 0.87646484, 1.0888672, -1.8066406, 1.8134766, 0.37402344, 1.0947266, 1.0810547, -0.10913086, -0.02545166, 0.6298828, -0.25952148, -0.47753906, 0.47583008, -0.22680664, 2.4414062, 3.7949219, -0.6538086, -1.2207031, -2.1835938, -1.4589844, 0.15161133, -1.0615234, 0.7260742, 0.86279297, 0.5703125, 0.91748047, -0.10144043, 0.35717773, -0.5292969, 1.0322266, 0.92333984, 0.9848633, -2.0078125, 2.6503906, -1.0283203, -0.18310547, -2.25, -0.1270752, 0.5625, 2.4238281, -0.62939453, 0.26245117, 0.95996094, -0.61328125, 0.16210938, 0.11932373, 1.0595703, 2.34375, 2.5097656, -1.6689453, -0.28930664, 1.7890625, 0.28564453, 1.0087891, 1.0683594, -0.23486328, -1.8701172, 0.24780273, 2.6210938, -1.1025391, 0.39672852, -0.48706055, 1.1455078, -0.30297852, -2.1171875, 2.4648438, -1.9521484, 1.1191406, 0.047546387, -2.5253906, -2.5390625, 1.2851562, 2.09375, -1.6738281, 1.5966797, 2.4003906, -1.390625, -0.5185547, 0.7441406, 0.51220703, -0.22668457, -0.4572754, 0.31884766, 1.2304688, 2.2070312, -1.2685547, 0.8989258, 0.9921875, 1.5683594, -0.6323242, -0.32763672, 0.33374023, 1.7724609, 0.5102539, 1.0683594, 2.6074219, 0.48413086, 1.453125, 1.1386719, 1.7832031, 1.5058594, -0.26831055, 1.1982422, 1.2626953, -1.5097656, -0.6333008, -0.6401367, -1.0322266, -0.13867188, 0.2154541, -0.19421387, 0.58447266, 1.7167969, -2.1796875, -0.5932617, -0.12207031, 0.24450684, -2.6894531, 1.1992188, -2.1816406, -0.15393066, 3.1992188, 1.2998047, -0.32836914, 1.4580078, -1.296875, -0.01889038, -1.6777344, 1.0888672, -1.0625, 1.1142578, -2.9492188, -3.1210938, -0.24121094, 2.1816406, -0.20947266, -0.18432617, 0.16467285, 0.18908691, 0.61328125, 0.32592773, -0.28222656, -1.4306641, 1.0478516, 0.02319336, 1.6953125, 2.5292969, -1.7539062, 1.7734375, 2.3808594, -1.7353516, -3.2539062, 3.9648438, -0.1472168, -0.98876953, -0.14709473, -3.2128906, -0.2220459, -0.052520752, -0.6279297, -2.1835938, -0.94677734, 0.6152344, -1.078125, 0.7529297, -0.0914917, -0.7392578, 1.828125, 0.09082031, -0.7836914, 0.39990234, 1.4921875, 1.5, 0.57470703, 0.26904297, -0.9238281, -0.08251953, -2.9238281, 3.5605469, 1.2636719, -1.3417969, 0.7817383, 3.9648438, 1.0351562, 1.4316406, 0.44018555, -1.015625, 1.0419922, 1.1591797, -1.2832031, -0.6171875, -2.4296875, -0.9404297, 1.2587891, -0.8076172, -0.14489746, -2.0976562, -0.42578125, 0.39208984, -2.2578125, 3.1738281, 2.0175781, -2.0019531, -1.1113281, 0.08807373, -1.3134766, -2.3027344, 1.7910156, 1.9111328, -1.2167969, -1.3857422, 0.7348633, 2.1113281, 0.5419922, -2.8164062, 0.23986816, -0.44067383, -2.03125, -2.5957031, -0.21679688, -1.2783203, -0.7084961, 0.08544922, -0.90771484, -0.7871094, 0.8618164, 0.2722168, -0.053253174, -0.80810547, -1.7861328, 0.06112671, -1.7509766, -0.8564453, 0.8647461, 1.4423828, -1.6953125, 0.84375, -1.7949219, -2.0175781, -0.4970703, -0.82666016, 1.7646484, 0.5019531, -0.53271484, 0.68603516, 2.5703125, 3.3496094, -1.2880859, 0.4248047, -1.3251953, 0.6713867, 0.050323486, 0.033233643, 1.8398438, -1.8378906, -0.55859375, -0.26123047, 6.3984375, 1.2978516, -0.16723633, 0.56103516, 1.6455078, -0.59277344, -2.6933594, -0.89990234, -0.17504883, 0.1998291, -0.84765625, -0.10418701, 2.140625, 1.2568359, -1.6152344, -2.6953125, -0.27026367]}, "B00CRW6ZP8": {"id": "B00CRW6ZP8", "original": "Brand: Bull Outdoor Products\nName: Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head\nDescription: \nFeatures: 60, 000 BTU's of cooking power, Liquid Propane Outlaw Drop-In Grill Head\nUnit Dimensions: 32.25\" W x 24.12\" D x 21.25\" H | Cooking Grid Dimensions: 30 X 19\"\nWarming Rack 210 Sq. In. | Cooking Surface 810 Sq. In.\n5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking\n305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates\n", "embedding": [-1.3417969, 2.7910156, 2.21875, -0.09857178, -2.3339844, 0.07104492, -0.7211914, -1.6728516, 0.87939453, 2.6484375, 1.78125, 0.171875, 0.42504883, -3.8769531, -0.1352539, -0.3461914, 1.3515625, 1.9550781, 2.4003906, -1.3398438, 1.4267578, -0.38598633, 2.125, -2.0449219, 0.63378906, 0.5029297, 4.21875, -2.0507812, -0.17712402, 0.0071983337, 0.5986328, 1.5224609, 1.3984375, 1.1435547, -1.1738281, -0.421875, 0.45898438, 0.07763672, -3.7617188, -0.5029297, -2.0253906, -0.59472656, 2.7910156, 1.1992188, -2.4472656, 0.67333984, -0.8779297, -1.0966797, -0.17346191, -2.40625, 2.2324219, 0.72021484, -1.9033203, 1.8515625, -2.375, 0.94091797, 0.73583984, -3.1015625, 0.22851562, -0.8833008, 0.17175293, 0.4885254, -2.2675781, 2.1484375, -0.7651367, 0.83740234, -0.7919922, -0.3852539, 1.9541016, 1.1699219, 1.8818359, -1.4453125, -0.17285156, -1.2792969, 0.6245117, -0.025756836, -1.7851562, -0.78759766, 0.7211914, -0.21276855, -2.0058594, 4.21875, 0.52246094, -2.0136719, -0.30908203, -0.5151367, -1.5029297, -1.8154297, 2.09375, -0.07952881, 0.036376953, 3.0429688, -2.9296875, -4.4453125, 1.6162109, -0.2253418, 1.2480469, 1.75, -0.46435547, 0.8466797, 0.21936035, 1.0039062, -2.0703125, -1.0068359, -2.875, -0.46240234, 0.7651367, 0.8129883, -2.0058594, 0.37768555, -1.2773438, 0.65966797, 2.1953125, 0.33496094, 2.515625, -0.50146484, -1.5693359, 2.0898438, 1.6152344, 2.5625, 2.9765625, -0.27368164, 0.12231445, 0.79345703, -0.109802246, -0.5209961, -0.42260742, 0.20996094, 4.3320312, -1.5234375, 1.5410156, -2.03125, 2.7148438, -2.5585938, 0.15026855, -0.88623047, -0.5488281, -1.5576172, -1.7285156, -0.22729492, -3.4628906, 0.2939453, 0.78125, 0.3154297, -4.7578125, -1.7802734, -1.1572266, -0.05996704, 0.37597656, -3.3984375, 0.515625, -1.6767578, 0.03945923, -3.0175781, 1.9589844, -0.4248047, -2.2597656, -0.17553711, 3.4570312, -1.1777344, 0.08428955, -2.3378906, -1.0585938, 0.14355469, 0.33666992, -3.3398438, -0.5136719, 1.4912109, 1.296875, 2.3515625, 0.35107422, -2.1171875, -1.84375, 0.21728516, -0.13330078, -1.3203125, 0.3959961, 1.1308594, -0.5800781, -0.35961914, -1.7558594, -1.6347656, -0.5942383, 0.72021484, 2.0742188, -2.171875, 0.2956543, -0.46142578, 0.14074707, -0.9711914, -0.17175293, 0.6303711, 0.101135254, -0.39794922, -0.7368164, -1.2880859, -1.0644531, -1.8662109, 2.4199219, 2.4101562, -0.013198853, 0.3330078, -1.1416016, -0.12463379, -1.2314453, -0.68847656, -0.0826416, -3.3144531, 1.5332031, 2.1074219, 0.9067383, -1.5478516, 3.6972656, -0.3425293, -0.0065994263, -1.6503906, 2.0527344, 0.2524414, 2.6132812, 2.3476562, -0.99560547, -0.0059280396, -0.21228027, 1.0244141, 1.5224609, -0.5708008, 0.71728516, 0.53564453, -2.671875, 1.1005859, 2.1523438, 0.58740234, -0.3815918, 0.69628906, -1.6699219, -0.7060547, 1.3164062, -2.4277344, -0.48657227, 0.5654297, 0.99902344, -0.10632324, -1.1650391, -0.5473633, -0.3713379, 0.02293396, -1.2587891, 2.25, -0.5126953, 1.4462891, -2.1894531, -0.4169922, 0.4777832, -1.7685547, -0.27124023, -0.05255127, -0.80126953, 0.6621094, -1.7216797, -1.5625, 0.8510742, -1.2128906, 0.122680664, -0.4963379, -0.24865723, 0.39453125, 1.8867188, 1.1826172, -3.6816406, -2.625, -0.73291016, 1.6904297, 1.7373047, -0.52001953, 0.77783203, 2.3808594, -1.8564453, 2.5917969, 1.5078125, 2.0058594, 1.625, 0.8417969, 1.8544922, -1.9755859, -2.0664062, 0.6328125, -1.0068359, -0.08380127, -2.8398438, 0.90283203, 3.8554688, -0.12335205, -2.4589844, 1.7226562, -1.9853516, 1.2402344, 1.9423828, -0.92529297, 0.82470703, -0.033172607, 1.4277344, 0.24719238, 1.1699219, 2.4472656, 1.0957031, -2.6582031, -0.20129395, -3.25, 2.7675781, 2.3945312, -2.4472656, 0.9291992, -1.7050781, 1.1328125, -1.7392578, 0.46533203, 2.7890625, -4.1289062, 0.5649414, 1.7558594, 0.5341797, 0.86816406, -0.2783203, -3.984375, -2.2871094, 1.2431641, -0.3190918, 0.34765625, 1.5009766, -1.796875, -0.3725586, -1.2646484, 0.4387207, -0.88378906, -0.3581543, -0.84521484, -2.6230469, -1.2890625, 0.8334961, -0.4934082, -0.9506836, 2.0117188, -2.8300781, -0.55566406, 0.3623047, -3.6152344, -1.4414062, -0.32202148, -0.53271484, -1.4814453, -0.42114258, 0.72802734, 1.5107422, -4.6796875, 0.86376953, 0.3305664, 0.36279297, -0.075805664, 0.15563965, -0.71875, 0.47509766, -1.4199219, -1.3251953, 1.5185547, 2.234375, -1.1953125, 1.4101562, -3.5097656, 2.3984375, -0.6328125, -0.16699219, -1.2236328, -0.5864258, -3.3808594, -2.3339844, -0.22314453, -0.08538818, 2.0703125, -0.9638672, -1.1806641, -0.13769531, 0.54052734, 1.1621094, 0.3173828, -3.03125, -0.41748047, 0.76416016, -0.93847656, -1.3896484, -4.6640625, -0.43652344, -0.3876953, 0.88623047, -0.61865234, 0.37329102, -0.23913574, -0.5942383, -0.21008301, 0.019927979, 0.8618164, -0.5605469, -1.9775391, 0.22692871, -1.9130859, 0.26416016, -1.5742188, 0.3215332, 0.5097656, 1.0732422, -1.4208984, 0.025299072, 1.9052734, -1.0761719, 2.4492188, -2.8691406, -1.9667969, 1.5761719, 1.9072266, -0.92089844, 2.8125, -1.6777344, -0.45361328, -1.7988281, 0.64453125, 2.9863281, 0.98876953, 3.3027344, 0.62597656, -0.73828125, -0.7739258, -1.421875, -0.115234375, -0.23010254, -0.39013672, 4.9960938, -3.3105469, -1.5673828, 0.64990234, 2.8183594, -3.6875, 0.82421875, 1.7646484, 0.22265625, 2.2382812, 2.3515625, 0.81103516, 0.62353516, -0.64501953, 0.58740234, 0.6640625, -0.2052002, 1.3134766, -1.4746094, -0.5019531, 0.4645996, 2.2207031, 0.58447266, -0.15820312, 3.1699219, 0.9785156, 0.00044035912, -0.34326172, -0.103881836, -1.5957031, 0.5419922, 1.1083984, 0.29077148, -1.2441406, 0.7421875, -0.85595703, 0.6040039, 0.46899414, -1.9960938, -1.4541016, 2.0039062, 0.68359375, -0.27783203, 1.7421875, 2.1601562, -0.8457031, -1.0273438, -0.6953125, 0.055541992, 1.2714844, 1.1142578, -1.6923828, -0.090026855, -2.1601562, 1.7421875, -2.2480469, -1.0576172, -1.9707031, -0.089538574, -0.39379883, -1.7421875, -0.21350098, -1.5029297, 1.0458984, 2.7617188, 3.0429688, -0.9086914, 0.71191406, -0.52441406, 3.1445312, -0.42114258, -1.6162109, -0.38720703, -0.98339844, 0.4814453, 0.10473633, 0.16491699, 2.875, -1.0644531, -1.7275391, 0.6381836, -1.0498047, 1.9375, 0.49902344, -0.82177734, -2.7109375, 1.9296875, -0.41015625, 0.6191406, 1.0224609, 2.7832031, -1.3730469, 1.5625, 3.5136719, -1.7724609, 0.34765625, -1.4316406, -5.4296875, 0.32641602, -2.1484375, -1.4433594, 1.3417969, -1.0771484, 0.06518555, 1.2070312, 0.46362305, -2.4296875, -0.0758667, -2.8632812, -0.7290039, -1.4511719, -2.8125, -0.65771484, 1.8603516, -1.0175781, -1.9072266, -1.1025391, -1.5068359, 1.2705078, 1.3642578, -1.8857422, 1.0371094, -2.1699219, 0.96191406, -0.87939453, 0.3371582, 3.3925781, -0.47924805, -1.1113281, -2.4589844, 1.2099609, -0.18273926, -1.4082031, 1.6289062, 1.71875, 0.071899414, -0.61816406, 1.0351562, 1.1992188, 3.2011719, 0.86083984, -2.2285156, -1.0625, -1.3017578, 0.40405273, 0.3828125, -0.47631836, -1.1953125, -1.484375, 0.86035156, 1.0390625, 0.39111328, 0.21154785, -0.67529297, -1.3378906, 1.3027344, 0.47973633, -1.7978516, -0.8774414, 0.5761719, 0.5854492, -2.2050781, 1.3339844, -1.2236328, 0.078125, -0.06994629, -0.9243164, -1.1025391, 3.1191406, 1.5732422, 1.0810547, 2.8652344, 0.7661133, -2.0664062, 1.2138672, 1.8017578, 0.59228516, 0.7558594, -1.3320312, -0.3491211, 0.3413086, 1.7070312, -1.5986328, 0.3322754, 0.12768555, -1.8339844, -1.0712891, -2.0507812, 2.1933594, -1.25, -1.8720703, 2.4550781, -1.7431641, 2.7011719, -1.8818359, 1.7744141, -0.8574219, 2.09375, -0.71875, 1.8085938, 1.1816406, 2.2714844, 0.25097656, 1.6943359, 2.7226562, -0.59375, 0.99609375, -0.7128906, 2.2734375, -1.9912109, -0.073913574, 1.4951172, 0.7871094, 0.2878418, 1.0068359, 1.1005859, 1.9960938, 0.83496094, 1.6103516, 3.3945312, -0.7504883, 1.2744141, -0.015220642, -2.8359375, -0.4362793, -0.13110352, -1.5068359, 1.6748047, 0.11932373, -3.2324219, 1.4033203, 1.6982422, -1.7626953, 0.5854492, -1.109375, -1.2304688, 1.5634766, -3.1757812, -2.109375, -0.61865234, -0.6352539, 1.4501953, -0.3869629, 0.27441406, 0.9116211, 0.71533203, 1.7294922, -2.6269531, -0.453125, 0.77783203, 0.65478516, -0.95996094, 0.22827148, -0.9501953, -3.5585938, 0.32543945, 2.5292969, 1.9853516, 3.0664062, 1.0361328, 1.4560547, -1.7382812, -0.05206299, -2.796875, 2.6230469, -2.0585938, 0.0045204163, 2.6503906, -1.4130859, -3.6660156, -2.7421875, -0.43041992, 1.5439453, 3.6640625, 1.3837891, -1.0195312, 0.70458984, 0.2614746, -1.7841797, -4.7734375, -2.125, 0.10101318, -0.20837402, 0.24584961, 2.3164062, 1.4482422, 0.98339844, -2.9179688, 0.67871094, -1.8320312, 0.9033203, -0.5185547, -0.03616333, -0.91552734, -0.8457031, 1.4013672, -0.17590332, 1.3212891, -0.13659668, 0.4658203, -0.75927734, -0.60253906, 2.6289062, -1.1435547, -0.98876953, 2.5214844, 0.77246094, 1.7109375, 2.1503906, 0.63916016, -2.0800781, 1.8613281, -1.6289062, -0.09362793, 0.07446289, -1.9873047, -0.3840332, 1.0302734, -0.20788574, 1.078125, -0.23596191, 1.0654297, 0.6010742, -0.025924683, -0.22790527, 0.31347656, 1.3916016, 0.060546875, 1.3154297, -0.05419922, -0.5722656, 2.109375, -1, 0.71875, -2.5507812, -1.3427734, -0.9291992, -2.7753906, -0.8642578, -1.4140625, -0.11743164, 1.3564453, -0.9326172, 2.6054688, 1.0107422, -1.1523438, -1.1123047, 1.8583984, -0.2277832, 4.1171875, 2.3339844, -1.4716797, -0.3581543, -0.3059082, 1.7929688, 3.6269531, -1.3378906, 0.16064453, 0.4177246, -0.5131836, 0.43530273, 0.093444824, 1.9238281, 0.8535156, 1.8222656, -1.6738281, -0.20178223, 3.7421875, 0.093444824, 1.5224609, 1.1445312, 1.8876953, 0.31958008, 2.2207031, 0.9741211, 0.038879395, 1.5078125, -0.6064453, 0.3972168, -1.9941406, -0.9404297, -2.3007812, -1.546875, 0.8388672, -1.7255859, -1.359375, -1.8408203, -0.3623047, -0.29882812, -2.7070312, 1.8798828, 1.8544922, 0.110839844, 0.1953125, 1.4716797, 2.4238281, -0.7338867, -0.32348633, 0.6665039, 0.5229492, 1.9091797, -1.8662109, 0.42651367, -1.4111328, 0.25463867, -1.7734375, 1.2988281, -0.17028809, 2.5839844, 1.6777344, 1.9238281, 3.2460938, 0.6611328, 2.28125, 0.34960938, 4.2226562, -0.29101562, -2.4199219, 0.47729492, 1.5869141, 2.2519531, -0.4555664, -0.68847656, 0.43969727, -1.9794922, -0.80322266, -1.0048828, -1.8505859, 1.8427734, -2.1464844, 0.91015625, 0.8959961, -0.043395996, -1.3476562, 1.2802734, -0.06530762, -0.0552063, -0.50439453, 1.2519531, 3.0664062, 0.28222656, 1.5761719, -0.54052734, 0.5102539, 0.16967773, -2.4609375, -1.3300781, 1.1953125, -1.0810547, 0.4814453, 0.33203125, 1.8193359, 0.0032653809, -0.89746094, 0.7680664, 2.3632812, 0.7348633, 1.1220703, -0.2578125, 0.49072266, 0.40942383, 4.3476562, -0.2553711, -1.1650391, 0.3330078, 1.6865234, -2.0488281, -4.7773438, 1.8505859, 3.4160156, 2.4101562, 0.58203125, -3.5214844, 2.3183594, -1.4941406, 1.4375, -2.6992188, 0.47192383, -0.72998047, -1.1953125, -1.3730469, -0.3239746, 0.3564453, 1.9628906, 1.59375, 0.34765625, 1.7470703, 0.84765625, 2.5175781, 1.8916016, 3.1816406, -0.19226074, 2.5058594, -1.1171875, 2.4863281, -0.71533203, -0.91503906, -1.2695312, 1.7011719, -0.41137695, 1.1845703, 2.6015625, -1.6660156, 0.41601562, 1.2353516, -0.73779297, -1.4677734, -2.78125, 0.14318848, 0.5888672, -1.7470703, -1.1513672, -1.2724609, -0.05807495, 4.0976562, 0.8364258, -0.6069336, 1.0927734, 0.65283203, 2.9941406, 1.2177734, -0.82177734, -0.46655273, 1.2636719, 0.048706055, -0.7788086, -2.3027344, -0.453125, 1.7470703, 0.3959961, -0.73828125, -0.008666992, -3.3925781, -2.1835938, -1.7597656, -0.30444336, 1.0283203, -1.0400391, 3.21875, -0.86621094, 0.25561523, 2.0253906, 0.4272461, -0.57958984, -3.4824219, -0.3635254, -1.7802734, -0.27685547, -2.25, 2.4199219, 3.4277344, 1.1699219, -1.0458984, -1.9980469, -4.8554688, -2.265625, -4.1328125, 1.1035156, 0.020492554, 0.35546875, 1.1572266, 0.4699707, 0.828125, -0.234375, 0.48608398, 0.75439453, -0.49487305, 1, 0.2915039, -0.8066406, 1.4238281, 1.8242188, 0.037628174, 1.7275391, 1.3017578, 1.2070312, 1.8662109, 2.609375, -1.4707031, -1.6875, 1.0107422, 0.58740234, -0.4333496, 0.051849365, 0.93310547, 1.7119141, -0.5205078, -0.6171875, -1.6035156, -3.1054688]}, "B00IREGQAE": {"id": "B00IREGQAE", "original": "Brand: Weber\nName: Weber 62753 19-1/2\" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer\nDescription: Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.\nFeatures: 19-1/2\" Weber LP SEAR Burner Tube.\nFits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.\n", "embedding": [-2.0410156, 0.5698242, 0.55859375, -2.9902344, -1.1884766, 0.1673584, 0.73339844, -0.63427734, 1.2226562, -0.04071045, 1.9580078, -1.2255859, 2.2792969, -3.8828125, -0.77001953, 0.8881836, 1.8691406, 0.84472656, -1.203125, 2.1992188, 1.2744141, -0.12176514, 1.5673828, -2.2753906, 2.4355469, 0.12939453, 4.296875, -5.9179688, -0.4387207, -2.34375, 0.9111328, 0.06677246, 0.68115234, 3.21875, -2.984375, -0.6147461, -2.5332031, 0.8979492, -4.1523438, -0.3791504, -1.2539062, 2.1855469, 1.0439453, 0.42163086, -0.86328125, -0.09588623, -0.2454834, 0.77246094, -2.3222656, -0.5371094, 3.6894531, 1.703125, -1.2626953, 1.6416016, 0.8125, 0.2578125, 0.27978516, 0.043792725, 1.0800781, 1.203125, 2.015625, -0.11352539, -4.5976562, -0.4477539, 0.017074585, 1.5859375, 1.7548828, -0.014373779, 0.38549805, -1.0458984, 2.8886719, 0.3408203, -0.28051758, 1.2294922, 0.31420898, -1.8544922, -2.8847656, 0.79052734, 0.29248047, -0.38085938, -0.33666992, 3.1894531, -0.15222168, -2.4804688, -0.94677734, 0.109802246, -1.2177734, -0.85595703, 2.40625, 1.1025391, -0.53222656, -0.29785156, -1.0390625, -1.9677734, 2.9160156, 0.58691406, 0.3959961, 0.57373047, -0.48413086, -0.47485352, -1.1933594, 1.5527344, -3.2617188, 0.57128906, -3.2636719, -2.4316406, -0.22741699, -0.16894531, -1.6074219, -2.2421875, -0.36791992, -1.3261719, 2.6523438, 1.2988281, 1.1386719, 0.55322266, -2.1289062, -0.2746582, -0.8520508, 1.2539062, 2.6523438, -0.48242188, 0.8808594, -1.5722656, 0.1706543, -0.9970703, -1.2314453, -0.76904297, 3.0996094, -2.2597656, 0.62597656, 0.013000488, 3.6210938, -1.3759766, -0.41625977, -2.4003906, 0.44970703, -0.5493164, -2.3964844, -1.0458984, -1.3056641, 0.8017578, 1.8330078, -1.8164062, -2.9746094, 1.0419922, -2.5585938, 0.7363281, 0.484375, -1.1455078, 1.4492188, -1.1582031, -1.3730469, -0.09851074, 3.0917969, 1.3466797, 1.0390625, -0.05908203, 2.9804688, 2.6953125, 3.125, -0.58203125, 0.1986084, -0.1595459, -1.7138672, -0.34838867, -0.91845703, 1.9023438, -0.24865723, 2.6816406, -0.16052246, -0.42578125, -1.4423828, -0.10369873, 1.2832031, -1.4550781, 1.0322266, 1.6982422, -2.4199219, 2.3515625, -2.6054688, -1.9414062, -0.77783203, -1.8105469, 0.27124023, 0.011756897, -1.6074219, -1.1689453, 2.4355469, 0.3918457, -0.46704102, 1.1035156, 0.5673828, -2.1074219, -0.84716797, -1.046875, -2.3339844, -2.0410156, 1.6992188, -2.4179688, -2.9003906, -1.4453125, 2.2988281, 1.5517578, -2.1445312, -1.8017578, -1.0800781, 0.5576172, -0.03668213, 2.8886719, 0.60302734, 0.045043945, 0.74658203, -2.0332031, 0.09844971, -1.4873047, 3.2226562, 3.0234375, 1.9736328, 1.5166016, -1.6191406, -1.3183594, 0.101135254, 3.3398438, 1.7714844, 1.0078125, 1.1572266, -0.7319336, -3.3300781, -1.3125, 2.3144531, 0.80371094, -0.35839844, 1.1308594, 1.0117188, 4.1875, 1.0830078, -1.0673828, 1.7265625, -0.017105103, -0.98535156, -2.6015625, -1.5009766, -2.6582031, -1.7988281, 0.86621094, -2.1152344, 2.5097656, 0.8330078, 2.1796875, 1.6416016, -0.23522949, 1.4072266, -1.4355469, -0.88623047, 0.88964844, 0.31396484, 3.6933594, 0.71240234, -0.5019531, 4.2382812, -0.08117676, -0.5678711, 0.76708984, -0.39379883, -2.1503906, 1.6630859, 1.7714844, -1.1074219, -0.90234375, -1.3984375, 0.0049552917, 0.4819336, -0.64941406, 2.5546875, 3.0761719, -1.7431641, 2.6054688, 1.0185547, 0.5205078, -0.06921387, -1.6025391, 2.0996094, -3.2578125, 0.3022461, 1.1650391, 1.953125, -1.1601562, -2.3613281, 0.59277344, 4.71875, -0.14733887, -2.1308594, 2.5664062, -1.1894531, 0.29345703, 1.3759766, -1.1621094, 1.0820312, 2.1621094, 1.4453125, -0.07519531, 1.9042969, 0.25585938, 2.3945312, 2.2402344, 2.5917969, -4.0117188, 1.0478516, 2.4511719, -2.1035156, -0.13317871, -1.3291016, 0.27856445, -2.6347656, -0.55078125, 1.5273438, -2.9648438, 1.0263672, -2.3710938, 1.4697266, -0.44921875, -1.6494141, -1.5126953, 0.39819336, 0.6503906, -0.64697266, 1.2832031, 0.8076172, 0.40795898, -0.8413086, -1.5419922, -0.13891602, -1.3232422, -2.125, -1.5019531, -1.9443359, -3.6816406, 0.79052734, -1.7490234, 0.037994385, 2.4785156, -2.0527344, 1.2001953, 0.41308594, -0.48583984, 0.5732422, 0.3383789, -1.8544922, -1.453125, 0.23181152, 2.6601562, -2.6738281, -1.25, -0.20507812, -3.0195312, 2.1953125, -0.24475098, 0.71191406, 1.2685547, 2.4902344, -1.1376953, -0.12359619, 1.4384766, 3.4277344, -0.56640625, 2.3300781, -2.5761719, -1.6660156, -2.0253906, 2.5429688, -0.9746094, -0.44799805, -2.9726562, -1.5566406, 0.5600586, -1.5458984, 2.9667969, 0.12225342, 2.1015625, -1.9023438, 1.3027344, 0.5576172, -2.7265625, -1.4677734, 3.5878906, 0.6665039, -2.4355469, -3.2226562, -2.2597656, -0.08721924, -2.546875, 2.0585938, 0.024978638, -1.4873047, -0.10986328, -1.3525391, -1.9433594, -1.7148438, -0.70166016, -0.27368164, -0.6879883, -2.0644531, -0.20092773, -0.8955078, -0.28442383, -0.91259766, -1.7783203, 1.2773438, 0.34350586, -1.9589844, 0.13574219, -1.0839844, 1.8398438, 1.1914062, -3.0351562, 2.3574219, -0.048431396, -2.8300781, 3.921875, -3.0546875, -1.2392578, -3.4882812, 0.1895752, 2.5585938, 0.8120117, -0.74658203, 2.2753906, 1.4394531, -0.33984375, -1.4169922, 0.80078125, -0.9458008, 1.6542969, 2.5644531, -2.0078125, -1.0605469, 1.8017578, -0.43701172, -3.2734375, -0.5595703, 0.7583008, 2.2695312, 2.3535156, 0.49487305, 1.9082031, -1.2382812, -2.4648438, 0.8076172, 2.1523438, -1.9394531, -0.5419922, -0.69091797, 0.14355469, -0.22607422, 1.5107422, 0.96240234, 2.8476562, 0.7475586, 2.4453125, 2.671875, 0.83251953, 0.64501953, -0.55566406, 1.9306641, -1.375, 3.375, -1.3027344, -0.71533203, -0.9140625, 0.08972168, 2.1210938, -1.3984375, -1.8408203, 2.5234375, 1.5449219, -2.53125, 0.09814453, 1.7949219, 0.5214844, -0.7338867, 0.45654297, -0.88134766, -0.5209961, 2.2773438, 0.80126953, 0.91503906, -0.25830078, 0.42456055, -0.13378906, -2.0175781, 1.0263672, 1.5791016, -1.3476562, -2.8652344, 0.60839844, -3.6523438, 0.7109375, 3.0800781, 0.8457031, -2.015625, -0.20690918, -1.9863281, -0.40014648, -0.9790039, 0.18945312, -0.53759766, 0.7207031, 0.33007812, 0.26904297, 0.5620117, 1.4042969, -1.0009766, 0.04864502, 1.4716797, -2.7910156, -2.1035156, -0.46435547, -2.3320312, -0.8515625, 0.2019043, 0.39941406, -0.51953125, -0.4855957, 3.2753906, -2.1894531, 2.3984375, 2.5351562, -1.2392578, 0.7915039, -5.1757812, -2.9335938, 1.2373047, -2.5097656, 1.3613281, -0.56689453, 0.66552734, 0.13134766, 2.4296875, 1.1826172, -2.4355469, -1.9716797, -1.3564453, 1.4052734, -2.109375, -0.2265625, 0.16882324, -1.3525391, -0.3876953, -3.71875, 2.2617188, -0.34936523, -0.38330078, 0.6582031, -4.53125, 0.49804688, 1.8408203, -1.0126953, -1.2548828, -1.6884766, 1.796875, 0.62402344, 0.88623047, -2.5722656, 0.7133789, 1.9951172, -0.9975586, 1.2802734, 4.3046875, 0.2602539, -2.8671875, 0.9897461, 1.2041016, 3.8144531, -0.5463867, -2.4003906, 0.037841797, 1.2910156, 0.41723633, -2.9160156, -0.6982422, -0.52246094, -1.359375, 2.5878906, -0.78515625, 0.22851562, -0.14355469, 0.049072266, -1.8769531, -0.11248779, -1.4775391, 0.44091797, -1.0166016, -1.2109375, 0.53125, -1.6005859, 1.7480469, -3.2988281, 2.8320312, -0.65625, 0.9477539, -3.2636719, 0.5, 3.0039062, 2.2109375, 1.7041016, -0.018722534, -0.089538574, -2.1230469, -0.64941406, -2.640625, 0.7480469, -3.5839844, -1.2226562, 4.3125, 1.2998047, -0.13757324, -0.02909851, 2.1269531, -0.23864746, 0.9165039, 0.35205078, 0.2956543, -2.46875, 0.8305664, 1.9931641, 0.00023496151, 1.7890625, -1.4160156, 0.4909668, 0.6699219, 1.0732422, -0.5703125, 0.86279297, 2.1445312, 0.59765625, -0.7524414, 1.1513672, 2.4882812, -0.5810547, 0.51660156, -2.2851562, -0.11456299, -0.9897461, -0.09667969, 0.61572266, 2.8105469, -1.5292969, -0.4375, 3.203125, 2.9726562, -0.13647461, 2.3554688, 2.4121094, -3.3320312, 0.5415039, 0.80371094, -5.3632812, -0.28515625, 2.3085938, -0.009819031, 2.1503906, 2.28125, -1.0292969, -1.0800781, 2.5839844, -0.30273438, 1.0722656, -0.8491211, -0.42773438, 2.7988281, -2.1914062, -0.7392578, -2.1738281, -2.3359375, 0.8642578, 0.8105469, -0.3310547, 0.10406494, 2.0703125, 0.63378906, -2.3613281, -3.4628906, -0.062438965, -1.9560547, -0.23779297, -0.7216797, -1.1621094, -1.4736328, 0.87841797, 0.7753906, 0.87402344, 0.3840332, -0.26904297, 2.0039062, -1.140625, -1.25, -2.6972656, 1.0097656, -1.7216797, 0.6582031, 3.2070312, -2.0488281, -0.61376953, -0.11315918, -2.453125, -0.13696289, 0.0647583, -0.11553955, 0.9897461, -0.16210938, 0.7133789, -1.3701172, -0.69433594, 0.44311523, -1.3046875, 1.1337891, 0.9707031, -1.0273438, 0.22790527, -0.13623047, -0.69433594, 0.11010742, -1.921875, -0.26000977, 0.107666016, -0.21972656, -0.27734375, -0.65234375, -1.6796875, 0.5625, 1.9208984, 1.5410156, -0.8144531, -3.0839844, -0.6845703, 1.2197266, -0.2265625, 0.57470703, 1.25, -0.40283203, -0.20812988, 1.0048828, 0.2130127, -1.0039062, 0.3022461, -1.8164062, -0.8515625, 1.1386719, -1.7197266, 2.4238281, -0.07965088, 0.1685791, 0.6923828, 2.3164062, 1.2675781, 0.8261719, 0.36083984, -0.3935547, -0.13061523, 0.35058594, -2.4414062, -0.16845703, -0.79345703, 0.070373535, 1.0898438, -0.4362793, -1.2705078, -2.1191406, -2.2558594, 0.83496094, -2.875, 0.47680664, -0.82470703, 2.0488281, 2.0761719, -1.4042969, -0.96191406, 2.0078125, -0.3034668, 0.41333008, 0.12976074, -1.7382812, 5.3320312, 2.9453125, -0.42797852, -0.76123047, 0.5751953, 1.2832031, 2.4335938, 0.75878906, -1.1298828, 2.6035156, -2.0117188, 0.4658203, -1.1328125, 2.3632812, 0.9003906, 0.18896484, -0.57714844, 0.6953125, 2.625, -0.7441406, 1.3740234, 2.1894531, -1.6152344, 0.31225586, 1.4296875, 0.85839844, -2.4335938, 0.46972656, -0.5576172, 3.3730469, 0.48486328, -1.0488281, -0.036590576, -1.3466797, -1.0537109, -1.5361328, -3.1113281, -1.0419922, 0.8300781, 1.7167969, -1.8564453, -2.0976562, -0.08270264, -0.16784668, 2.1660156, 0.95751953, 2.4414062, -3.9335938, -0.18273926, -1.4902344, 1.4306641, 1.3828125, -5.109375, -0.5175781, 2.0722656, 0.88134766, -1.7265625, -0.25683594, 0.7133789, 2.3105469, -0.41625977, 1.3164062, 0.4333496, 1.796875, 1.3164062, 0.20837402, 3.0117188, -1.7402344, -0.87597656, -0.49609375, 0.9633789, -0.29223633, 0.6357422, -0.36914062, 1.734375, -2.1835938, 1.5751953, -0.6933594, -2.6953125, 2.9082031, -2.0371094, 0.34326172, -0.86376953, 1.7333984, -0.6870117, 0.74658203, -0.93115234, 0.6298828, -0.8359375, 1.3066406, 3.4628906, 0.56933594, 0.34716797, -1.1142578, -0.6567383, 1.6884766, -2.1855469, 1.5009766, 1.2685547, -2.0449219, -1.7705078, 1.1933594, 2.796875, 1.5810547, 0.19506836, -0.32666016, 3.4160156, -0.94921875, 0.17358398, -2.21875, 0.5229492, 1.0751953, 3.4667969, 0.13806152, -0.6826172, 0.64404297, -0.7167969, -4.2929688, -2.8164062, 3.1855469, -0.46264648, 1.4980469, -0.020599365, -1.7285156, 3.5273438, -1.3105469, 0.7529297, -2.5683594, 0.32495117, -0.6870117, -0.86279297, 0.040527344, -0.62841797, -1.3964844, 0.9951172, 1.5117188, 1.546875, -0.09124756, 1.6386719, 1.5341797, 1.0615234, 1.2539062, 0.9423828, 1.3066406, -1.2177734, 3.1445312, 0.24645996, -2.3769531, -0.17956543, 2.2695312, 0.6274414, 1.4023438, -0.70410156, -0.5986328, -0.15539551, 0.58691406, -0.27514648, 1.9433594, -0.9042969, 0.2939453, -0.6044922, 2.1914062, -0.93847656, -0.86865234, 1.4326172, 1.5351562, 0.19274902, 2.5644531, 1.8789062, -2.6289062, 1.9873047, 0.17321777, -1.5410156, -0.3408203, 0.5292969, -0.5756836, -0.65234375, -2.0097656, 2.4335938, 2.6914062, 0.3647461, -1.6376953, 0.19482422, -2.1855469, 0.031341553, -1.0664062, -0.76220703, 0.28442383, -2.1171875, 0.4189453, -2.1835938, -1.4072266, 2.6210938, 0.10357666, 0.49853516, -1.4716797, -2.2089844, -1.3105469, -0.43725586, -2.375, -0.51220703, 2.7011719, -0.29760742, -0.39111328, -1.3007812, -2.8984375, -1.390625, -0.7241211, 1.8310547, -2.2832031, -2.9433594, -1.4091797, 1.5546875, 1.9619141, 0.6640625, 0.9770508, -0.6821289, -2.2480469, 0.95654297, -0.80371094, 0.21679688, -1.4277344, 1.4111328, 1.5546875, 2.9453125, 2.0292969, -0.47485352, -0.5678711, 2.1875, 2.1914062, -2.8320312, -1.6132812, 0.76660156, 0.3947754, -1.3242188, 0.028030396, 2.2148438, 0.91015625, 0.3659668, 1.1875, -0.67529297]}, "B007O0MIIG": {"id": "B007O0MIIG", "original": "Brand: Hiland\nName: Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze\nDescription: \nFeatures: 39-Inch tall portable glass tube patio heater\nHammered Bronze finish. Quartz Glass Tube\nHeat output: 9500 BTU's. Electronic Ignition\nGas type: Propane\nUses a 1 lb propane tank (lasts 2-3 hrs. on high)\n", "embedding": [-1.6699219, 1.0507812, 2.0800781, -0.7285156, -0.6933594, 1.1386719, 1.6513672, -1.5498047, -0.93310547, 2.7480469, 1.3222656, -0.29907227, -0.9711914, -2.7304688, 0.9926758, -1.0742188, 2.1660156, 0.51416016, 1.5039062, -0.06311035, 2.2265625, -0.07141113, 0.45336914, -2.0898438, 0.8613281, 0.671875, 3.859375, -3.0449219, 0.50634766, -0.053619385, 0.37548828, 0.9345703, 0.29736328, 2.9160156, -0.7426758, -2.4609375, -0.77978516, 1.1279297, -4.1328125, -0.4267578, -2.0585938, -0.4284668, 0.63378906, 1.7236328, -0.27001953, -0.025222778, 0.8935547, 0.90771484, -0.07171631, 1.3330078, 0.0056762695, -0.18664551, -0.9238281, 0.1138916, -0.82714844, 0.5595703, -1.8496094, -2.3730469, 1.9550781, -0.83251953, -0.6230469, -2.1328125, -2.0117188, 1.5429688, -0.009223938, 0.98046875, -1.4501953, -1.2998047, -0.984375, 0.09399414, 1.9628906, -1.1035156, -0.026062012, -0.41992188, -0.19177246, -1.0429688, -2.3730469, 0.79296875, 2.9023438, 0.0042419434, -1.1611328, 0.23913574, 0.062561035, -0.42407227, -1.2412109, 0.09057617, 0.3486328, -0.7402344, 1.0419922, 2.0625, 0.57421875, 1.9560547, -0.76416016, -2.7949219, 0.060424805, -1.0019531, -0.3461914, 0.5336914, -1.7070312, 1.7841797, -0.1439209, 0.10101318, 0.06756592, -1.3837891, -1.5751953, -0.4716797, 1.6425781, 0.4128418, -0.25341797, 0.97216797, -1.5556641, -0.54833984, 2.4980469, 0.18249512, -1.7871094, -0.31396484, 1.3554688, 2.28125, 4.4921875, 3.3339844, 3.6757812, -1.1289062, 1.4150391, -1.3251953, -0.28051758, 1.1943359, 0.5498047, -1.0849609, 1.2666016, -1.2998047, 1.8193359, 1.7138672, 0.8833008, 0.04360962, -1.6533203, -1.4121094, -1.2285156, 0.06982422, -3.8945312, -0.84716797, -0.9453125, 1.5908203, 1.21875, 0.6743164, -4.0585938, -1.5849609, -0.9819336, 2.0527344, -1.4033203, -0.95703125, 0.2619629, -0.33569336, 0.6713867, -1.953125, 0.45336914, 0.64501953, 0.77197266, 0.11657715, 4.03125, 1.5126953, 1.5761719, 1.4287109, -2.7636719, 0.93408203, 0.18359375, 0.67626953, 1.9404297, 2.3691406, 0.6171875, 1.1162109, -1.1201172, -1.3251953, -0.72021484, -0.11883545, 0.38305664, -0.80371094, -0.4248047, 0.13000488, -0.019973755, 0.48388672, -2.7734375, -1.4228516, 0.12719727, -0.68115234, 1.4199219, -1.7607422, -2.8359375, -3.4707031, -0.28808594, -1.0302734, -0.016815186, 0.4189453, 0.33422852, -0.061828613, -0.76904297, -1.9179688, -3.828125, -3.0546875, 2.4375, 0.082458496, 0.22717285, -0.030059814, -0.62939453, -0.5576172, -1.8427734, -3.640625, -0.1015625, -1.4609375, 1.1962891, 1.9072266, 0.60253906, 0.1508789, 1.2050781, -0.080566406, 0.81591797, -2.4296875, 2.4101562, 0.47143555, 0.6152344, 1.4238281, 0.8930664, 0.0010137558, -2.4492188, 1.0634766, -0.19335938, 0.2746582, 2.6425781, -0.18066406, -2.4414062, -0.5078125, 2.5390625, 0.98535156, 0.20019531, 0.8120117, -0.59716797, 3.4648438, 1.1865234, 0.34228516, 1.9990234, -0.41430664, 0.5361328, 0.37646484, 0.38867188, -0.7636719, -0.42578125, 0.80126953, 0.4020996, 0.53271484, 0.5913086, -0.11480713, -0.8076172, -0.5649414, 0.61328125, -0.033172607, -0.73828125, 1.4453125, -0.6035156, 0.57177734, 1.203125, -2.7949219, 1.7763672, 0.05126953, 0.42773438, 0.27954102, -1.59375, -1.6025391, 3.28125, 1.9492188, -2.3925781, 2.40625, -0.20263672, 2.2519531, 1.2119141, -1.3642578, 1.2226562, 1.2167969, -1.578125, 3.3378906, -1.4257812, 1.6308594, 0.9863281, 0.23791504, 1.8867188, -1.7988281, -1.6337891, -0.07086182, 0.97265625, 0.7548828, -1.6904297, -0.097717285, 3.1699219, -0.7260742, -0.8833008, 2.4550781, -0.7416992, 1.328125, 1.8408203, -1.8808594, -1.3378906, -1.4326172, 2.46875, 2.0292969, 0.42114258, 1.5908203, -2.2851562, -0.34887695, -0.34277344, -1.7558594, 0.97558594, 1.25, 0.5673828, -1.3417969, -3.828125, 0.051086426, -4.3203125, -0.8286133, 2.9746094, -3.4882812, 1.0634766, -0.94873047, -1.2011719, -0.79589844, -0.6430664, -1.2871094, 0.23278809, 0.42822266, -0.6713867, 1.8056641, 0.50390625, 0.18835449, -1.8173828, -2.0371094, -0.03970337, -3.2539062, -2.8085938, 0.099731445, -1.7695312, -2.4375, 2.0390625, -2.4785156, 0.119262695, 2.2304688, 0.6386719, 2.1328125, -0.66015625, -1.9404297, 0.86376953, 1.7568359, -0.20898438, -1.1425781, 0.5800781, 1.3369141, -1.4638672, -3.7421875, -0.9692383, 1.3574219, 0.41259766, 0.9003906, -0.6147461, -0.3112793, 0.7709961, 0.07092285, 0.8173828, -0.703125, 0.34228516, -0.5410156, 0.19824219, -5.125, 1.1572266, -1.2490234, 1.8007812, -0.8823242, -0.4645996, 0.36914062, -0.6230469, 3.3300781, 1.3427734, 4.234375, 1.2607422, 1.8759766, -0.48754883, 1.3515625, 0.44702148, -1.5439453, -3.0527344, 0.3425293, -1.6191406, -1.3242188, -1.6689453, -2.5, 0.61621094, -1.2988281, -1.0664062, 0.95751953, -1.2548828, 0.3996582, 0.037078857, -1.2099609, -0.43310547, -1.6884766, -1.4804688, 1.5498047, 2.5097656, -1.3623047, 0.48510742, -1.2080078, -0.26733398, -0.8754883, 1.0390625, 1.4492188, 1.5527344, 2.1738281, -0.42797852, 2.1894531, 0.203125, -3.890625, 2.6757812, 2.7695312, 0.32470703, 0.25830078, -1.9248047, -2.5625, -1.2509766, 0.12902832, 2.5253906, 2.3945312, 2.1992188, -0.55078125, 1.0029297, 0.1907959, 0.68310547, -1.2294922, 0.31640625, -2.1152344, 1.703125, -2.4355469, -2.21875, 2.1582031, 2.296875, -2.7949219, -2.0195312, 0.9970703, 0.5019531, 1.4570312, -0.097717285, -0.2788086, 0.96484375, 3.0429688, 1.3496094, 0.85791016, -0.41064453, 0.2692871, -1.3984375, -1.0087891, 0.95654297, 2.375, -0.9135742, 0.4243164, 1.4072266, 0.64404297, 1.2236328, -3.0253906, 1.0283203, -0.4567871, 1.8955078, 0.5654297, 3.7636719, -1.5097656, 0.70703125, 1.9130859, 1.6308594, -0.60009766, -2.0996094, -1.3085938, 1.6835938, 2.1464844, -1.3896484, -1.4501953, -0.56689453, -0.3071289, -0.89453125, 0.25683594, -0.25048828, -0.9785156, 1.0517578, -1.3457031, -0.80810547, 0.23278809, 1.8105469, -0.48779297, -1.3417969, 1.0566406, 1.1943359, -0.59472656, -0.8852539, -1.4248047, -2.8164062, 0.42211914, 3.9433594, -2.8847656, -0.49780273, -1.0888672, -0.9711914, 0.097351074, 0.5131836, -0.11730957, -0.20678711, 0.6879883, -1.1591797, 0.8359375, -1.2763672, 0.53222656, -0.47094727, -2.1054688, -0.6899414, -2.2910156, -1.6210938, 2.71875, -1.8876953, -0.22424316, 1.203125, -0.07281494, 2.5253906, -0.90771484, 3.0527344, -2.1835938, -2.2675781, 0.49682617, -0.39233398, -0.10571289, -3.90625, -4.7890625, 0.44189453, -2.9609375, -0.5571289, 2.3125, -0.61621094, 0.7661133, -0.55566406, 1.0175781, -3.3769531, -2.296875, -2.2363281, -1.3623047, -4.0664062, 0.7685547, 0.15673828, 0.16149902, -1.9414062, -2.5839844, 2.046875, 0.25927734, 0.03869629, 0.64160156, 0.09362793, -0.070495605, -0.9316406, 0.46313477, -1.0771484, 0.97314453, -1.1708984, -0.35498047, -0.22460938, -0.69189453, 4.7890625, -0.8261719, -0.5800781, 1.2001953, 5.5078125, 0.64501953, -0.83447266, 0.22436523, 2.2148438, 3.2460938, -0.1784668, -3.2734375, -0.8432617, -1.8486328, -0.62158203, 0.14318848, 1.2060547, 0.48242188, -1.4238281, 1.2919922, 0.86865234, 0.30200195, 1.7050781, 1.6474609, -2.8769531, 1.5234375, 1.6650391, -3.1230469, -2.4667969, -0.22509766, -1.9873047, -1.4707031, 1.1757812, -1.3115234, 0.25830078, -2.1328125, -0.44873047, -1.796875, 0.64501953, 2.5410156, 3.4980469, 1.3330078, -2.4257812, -2.3769531, -0.5732422, -2.4140625, 0.33398438, 1.1533203, 0.6899414, -0.60839844, 1.8681641, 1.0292969, -1.7050781, 0.87841797, 1.6142578, -1.1298828, -0.1430664, 0.25195312, -1.6894531, -2.4863281, -1.9580078, -0.40454102, -0.1899414, 2.1152344, -1.2509766, 0.42626953, -0.4560547, -0.84521484, -1.9189453, -1.3222656, -1.2412109, 0.42407227, 1.7333984, 0.9501953, 1.4990234, -0.7963867, 1.1201172, -0.18823242, 2.3398438, -2.0078125, 0.4182129, 0.44555664, -0.1237793, -0.8251953, 0.10424805, 1.3710938, 0.6269531, 0.28442383, 2.1386719, 1.1992188, -0.5283203, 1.5615234, 0.6171875, -0.7373047, 1.3623047, 1.2451172, 0.19580078, 2.9667969, -1.3300781, -2.3769531, -0.91845703, 2.9902344, 0.14282227, 1.7880859, 0.97509766, -2.0273438, -0.9736328, -1.7207031, -1.3193359, -1.3974609, 0.17944336, 0.41186523, -1.9404297, 0.59716797, -0.19152832, 4.0117188, 1.7998047, -0.64697266, 0.11480713, 1.3623047, 0.41357422, -0.38183594, 1.5849609, 0.5991211, -1.8837891, -0.89404297, -0.27392578, 0.4033203, 0.6323242, 2.2910156, 0.22717285, -0.8701172, -0.07519531, -2.2421875, 2.1601562, -3.2167969, 0.17163086, 0.89941406, -0.2388916, -0.2434082, -2.3222656, -2.6757812, -1.9384766, -0.6142578, -0.5239258, 0.089660645, -0.33666992, -1.9335938, -2.421875, -3.203125, -1.2919922, -1.1210938, -1.7519531, 0.86083984, -0.09515381, -3.3496094, -2.3769531, 0.101867676, 1.2773438, 0.089660645, 0.6567383, -1.4257812, 0.25830078, 0.36572266, -0.12695312, 0.43066406, 1.8007812, -0.8852539, -0.28466797, 0.17114258, -1.6015625, -3, 0.8432617, 0.9321289, 2.2734375, -1.1542969, -0.26171875, 1.6884766, 2.6171875, 1.1123047, -1.5332031, 2.0839844, 1.5615234, -0.01739502, 3.078125, -0.8959961, 2.0449219, -0.26220703, -1.6015625, -0.44995117, 2.7363281, 1.0087891, 0.64208984, 2.0175781, -0.2121582, 1.2109375, 0.4182129, -0.1451416, -0.08996582, 0.01876831, 3.2363281, 0.89404297, -0.075805664, -1.3632812, -1.9716797, -1.5917969, -2.6015625, -2.2402344, -1.0722656, 0.15759277, 2.1835938, 1.1523438, 0.21289062, 0.10131836, 0.9667969, 0.8071289, -1.6826172, 0.82128906, -0.030288696, 2.1875, 0.9428711, -1.7441406, -4.453125, -1.5878906, -0.10522461, 1.0126953, 0.8310547, -1.4902344, -1.4511719, -2.2949219, -0.21899414, 0.0050964355, 1.2666016, 0.38330078, 0.22741699, -2.3984375, 3.0839844, 1.8056641, -0.8261719, -0.3942871, -0.060791016, 2.2949219, -0.83154297, 3.0800781, 1.3818359, -0.49609375, 0.32788086, -0.34399414, 2.1621094, -0.7319336, -1.5527344, 2.4316406, -2.6503906, 0.59472656, 0.7290039, -1.0429688, -2.1992188, -0.20092773, 0.9003906, -0.38208008, 0.765625, 0.6928711, 0.8535156, -0.056915283, 2.4023438, 0.70410156, -1.5195312, -0.2705078, -0.107910156, -0.19824219, 1.8007812, -0.67578125, 2.578125, 0.63378906, 1.0693359, -0.79345703, 1.2919922, -0.8256836, 1.2822266, 3.9746094, 2.1445312, 1.8466797, 0.7836914, 1.1396484, 0.75439453, 0.46484375, 1.1171875, -2.9160156, 0.7602539, 1.1220703, 1.9492188, -0.41210938, 0.3696289, 0.86035156, 1.0263672, -1.7236328, -2.6738281, 0.2680664, 1.0898438, -0.64160156, 0.98876953, -0.15966797, 0.5336914, -1.0996094, 0.69873047, 0.059387207, 2.140625, 1.0673828, -1.5703125, 1.6572266, 1.3330078, -0.4074707, 0.43164062, 0.30541992, 2.0097656, -1.65625, 1.0761719, 0.31103516, -1.4257812, -1.1503906, 1.1044922, 1.1484375, 1.0537109, 0.059417725, -1.8662109, 1.6123047, 2.0996094, -0.3425293, 1.0439453, 0.036376953, 0.5332031, 1.5419922, 2.8945312, -0.052612305, 0.41357422, -1.0185547, 0.6152344, -1.1318359, 1.6777344, 0.8671875, -0.53466797, -0.32836914, 0.22973633, 0.9404297, -0.96533203, 0.2746582, -1.7753906, 0.4399414, 1.0292969, 0.8227539, 0.22839355, 0.35424805, -1.8798828, 3.6699219, 0.74560547, 0.91259766, 0.0362854, -1.9277344, -0.5209961, -1.3457031, 1.0263672, -0.6176758, 1.9892578, -0.79345703, 2.78125, 0.15551758, -1.2382812, 1.4238281, 2.4042969, 1.6835938, -0.5073242, 0.74365234, -2.1679688, 2.4746094, 1.2431641, -0.53759766, 0.019638062, -0.29003906, -0.67871094, -0.043029785, 1.0527344, -0.7265625, -1.2441406, 2.59375, 0.2607422, -2.5566406, 0.83154297, 0.95947266, 0.12463379, -0.2939453, -1.8427734, -0.70703125, -0.17321777, -0.8442383, 1.1074219, -2.1445312, -1.1201172, -0.50878906, 1.28125, 2.2246094, 0.012428284, 0.15344238, -1.9892578, -0.25170898, -1.4003906, 2.1113281, -0.33032227, 0.72753906, -0.027923584, -0.5209961, -0.15808105, 1.375, 1.4658203, -0.5522461, -1.0019531, -2.3984375, -0.32641602, -1.4414062, -1.4003906, 0.8959961, 3.2460938, 0.6538086, 2.0273438, -1.8759766, -3.9550781, -0.5859375, -0.734375, 0.9560547, -1.1318359, -1.4453125, 0.9667969, 2.5742188, 2.2109375, 0.48608398, -0.48364258, 0.119506836, -0.91308594, 1.5205078, -0.42236328, 2.0371094, -0.85009766, -1.46875, 1.6191406, 1, -0.08380127, 1.4228516, 2.6503906, 1.734375, 0.19787598, -2.578125, -0.93115234, -0.46875, 0.08758545, 0.9301758, 1.28125, 1.9248047, -0.35913086, -2.125, -4.4765625, -1.2412109]}, "B001EHKQ2A": {"id": "B001EHKQ2A", "original": "Brand: Stansport\nName: Stansport Single Burner 5,500 BTU Propane Stove, Black\nDescription: \nFeatures: Durable heavy gauge steel with baked on enamel finish\nIndividual regulator on/off control knob adjusts burner up to 5500 BTU's\nStove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included)\nWind baffles supports cookware and shields burners\nLow profile base for stability\n", "embedding": [-1.3056641, 1.0615234, 2.0859375, 0.8041992, -0.82470703, 1.1171875, 0.7290039, -1.3222656, -0.80371094, 0.17053223, 2.09375, 0.23278809, -0.43847656, -1.4628906, -0.17285156, 0.80371094, 0.33813477, -0.16845703, -0.66552734, 1.1357422, 0.16748047, 0.5546875, 1.9267578, -1.7285156, 0.39379883, 0.8598633, 3.7695312, -3.4433594, -0.24841309, -1.7099609, 1.0654297, 0.94628906, 1.4023438, 2.4765625, -3.8535156, 0.09564209, -1.1689453, -0.64208984, -3.8300781, 1.2382812, -0.03781128, 0.32641602, 2.6171875, 0.50097656, -1.9189453, -0.9902344, 1.1777344, -1.8623047, -1.609375, 0.95214844, -0.14331055, 0.6845703, -1.1025391, 0.9589844, -1.0498047, 0.7817383, -0.24804688, -0.61572266, 0.07318115, 1.3056641, 1.9765625, -0.40893555, -2.3066406, -0.109436035, -1.3769531, 1.3427734, 0.9951172, -0.36254883, -0.0715332, 0.9370117, 2.4765625, -1.4091797, -0.7348633, -1.4052734, 1.6357422, -1.1142578, -2.6074219, 1.640625, 0.7290039, -1.6054688, -1.1220703, 1.5126953, 0.3671875, 0.13085938, 0.13757324, 1.5107422, -0.4802246, -1.5664062, 0.07519531, 0.11657715, -2.0253906, 2.0566406, -1.5195312, -3.8828125, 2.296875, -0.078552246, 1.6845703, 0.43188477, -1.0292969, 0.296875, 0.1850586, 0.4177246, -1.0302734, 0.3005371, -0.7138672, 0.55566406, 3.1074219, 0.8364258, -4.1640625, -0.86621094, -2.0195312, -0.98535156, 0.94433594, -0.030532837, 2.2070312, 2.015625, -1.2246094, 1.0185547, 2.6777344, 0.41992188, 3.0371094, -1.0449219, 1.9580078, -0.5390625, -0.4633789, 2.5097656, -1.6845703, 0.9458008, 4.578125, -1.8466797, -0.72802734, -0.6010742, 2.2597656, -0.32592773, -0.81640625, -0.97216797, -2.1191406, -1.4707031, -1.3632812, -0.24536133, -1.7880859, 0.7626953, -0.42089844, -0.9145508, -4.0351562, -1.3535156, 1.1962891, 0.546875, 0.12310791, -2.6816406, -0.36401367, -1.5292969, -0.47509766, -0.10827637, 1.9921875, -0.26367188, -0.3701172, -1.7910156, 2.4355469, 1.1962891, 0.88671875, -1.8251953, -2.1269531, 2.7695312, -0.6269531, -1.9755859, -0.64501953, 1.5791016, -1.5947266, 1.390625, -0.39526367, -1.53125, -0.9760742, -1.6835938, 0.56591797, 0.58740234, -0.9223633, 2.8925781, 0.78222656, -1.2988281, -1.78125, -2.4746094, 0.5205078, 0.38183594, 0.578125, -2.2675781, 1.7177734, 0.6972656, 1.3525391, -1.6972656, -1.6982422, 0.8144531, 0.578125, -0.04348755, -0.36499023, -2.2363281, -1.2480469, -3.1113281, -0.012992859, 1.0292969, -0.6020508, -1.1347656, -0.32104492, 1.2978516, -0.6713867, -1.6708984, 1.0078125, 0.068115234, 1.1220703, 1.4931641, 2.2363281, -0.65234375, 2.4296875, -1.1601562, -2.1054688, -2.390625, 1.9921875, 1.2089844, 2.1191406, 3.4453125, -0.32763672, -0.6777344, 1.4707031, 0.9682617, 0.11895752, 2.0371094, 2.6621094, 0.029953003, -2.7597656, -0.37890625, 2.2128906, 1.4326172, -1.5283203, 0.15698242, 0.51220703, 2.5839844, 1.9482422, -0.021011353, -0.89404297, -1.1240234, 0.19921875, -0.6616211, 1.3447266, 0.24206543, -0.66748047, -0.53515625, -0.3762207, 0.43164062, 2.0410156, 2.6542969, 0.14892578, 0.20983887, 0.44750977, 1.2626953, -1.1152344, -1.1064453, 1.0166016, -0.7236328, -0.72998047, -3.3671875, 3.7304688, 0.25805664, -1.1005859, -0.921875, -0.7504883, -0.86083984, 3.890625, 1.2480469, -2.6914062, 0.08050537, 0.52783203, 0.49121094, 2.5488281, -0.47631836, 1.9326172, 0.30541992, -0.94970703, 4.7304688, 0.20471191, 2.1230469, 0.32250977, -1.6572266, 3.0214844, -2.2226562, 0.58740234, 0.60302734, 2.3300781, 0.37402344, -2.6230469, -0.47875977, 6.578125, -1.171875, -1.5117188, 2.1171875, -2.1445312, -1.0185547, 1.140625, 0.4091797, -0.14758301, -0.3618164, 2.7480469, -0.6376953, 0.38671875, 0.28125, -1.1328125, -2.5683594, 1.2910156, -2.3730469, -0.59277344, 0.85302734, -0.2409668, -2.0625, -1.3984375, 2.0703125, -1.953125, 0.7338867, 2.0136719, -3.0117188, 3.3652344, -0.44360352, 1.328125, 2.2636719, -0.84521484, 0.4946289, 0.4074707, -0.13049316, -0.44921875, 2.6914062, 1.7734375, 0.71533203, -2.3691406, -1.1328125, 0.37597656, -2.015625, -0.8305664, 0.80322266, -1.5097656, -3.1230469, 0.71191406, -1.3251953, 0.9609375, 2.4414062, -3.6933594, 1.5517578, -0.2479248, -3.8339844, 0.39282227, -0.7895508, -1.2197266, -1.421875, 1.5722656, 0.99072266, -1.2578125, -1.9033203, -1.6894531, -0.28027344, -1.3818359, -1.6308594, -0.79052734, 1.8388672, 0.4645996, 0.3383789, -0.63134766, 0.7524414, 0.78027344, -2.0253906, 2.0253906, -3.4511719, -0.3918457, -0.23510742, -0.053009033, -0.3544922, 0.31054688, -1.3496094, -2.1132812, -0.12176514, 0.75390625, 4.6992188, -0.14526367, 1.3349609, -0.98535156, 0.7451172, -0.7241211, -1.1054688, -2.6953125, 1.5234375, -0.16442871, -2.0839844, -1.0429688, -2.7617188, 0.47680664, -1.9462891, 0.6923828, -0.9663086, 0.5444336, 0.35229492, 0.037872314, -0.8417969, -1.0859375, 0.31958008, -1.203125, -0.19970703, -1.1269531, -1.9277344, 0.32861328, -0.51464844, 0.35473633, 3.1074219, 0.49536133, 0.47924805, 0.4794922, 2.265625, -1.1416016, 0.6035156, 0.13110352, -2.8964844, 3.265625, 0.3881836, -0.2890625, 1.9658203, -2.3242188, -2.1464844, 0.55859375, -0.7685547, 2.3125, 0.37353516, 2.2695312, 0.23876953, -0.36889648, 0.8276367, 0.031585693, -1.2451172, -2.4238281, -0.66845703, 2.7363281, -2.0332031, -1.9775391, 2.203125, 1.6230469, -1.5908203, -1.0673828, -0.07165527, 0.26098633, 1.3261719, 1.6904297, -1.1855469, -1.8681641, 0.3449707, 0.64990234, 2.3203125, 0.4482422, 0.11260986, -0.6826172, 2.390625, -0.39575195, 0.3515625, 2.9394531, 1.2021484, 2.0761719, 1.0234375, 2.8183594, -1.7421875, 0.56396484, 1.5439453, 0.8413086, 0.39672852, 3.6894531, 0.052764893, 0.29736328, -1.7099609, 1.40625, 2.0019531, -1.9042969, 0.21520996, 1.6494141, -1.2304688, 0.07281494, 1.2324219, -0.35766602, 1.3613281, 0.08306885, 2.8125, -0.20544434, -2.2050781, 0.92578125, 0.7324219, 0.6069336, -2.3945312, 0.52978516, -0.66015625, -0.984375, -0.23083496, 0.18835449, -2.2089844, -1.9150391, -0.7446289, -0.16870117, 0.031402588, 1.4169922, 0.7138672, -0.6040039, -0.34936523, -1.5898438, -0.38378906, 1.8427734, -2.6074219, 1.0576172, 0.734375, 0.34936523, 0.15600586, 0.4946289, 0.39038086, 0.42797852, -1.0068359, 0.41186523, -3.9667969, -2.109375, 0.2097168, -2.6445312, 0.9736328, 3.1230469, -0.90283203, 2.1230469, -0.4868164, 3.2148438, -2.8457031, -1.5751953, 1.5546875, -2.0019531, -0.28173828, -3.7773438, -2.3261719, 1.2988281, -0.29125977, -0.87109375, 2.1347656, 1.3613281, 0.4802246, 1.2119141, 0.93408203, -1.9443359, -1.3886719, -0.9472656, -0.3671875, -1.8701172, -1.234375, 0.75097656, 0.05987549, -1.4501953, -0.93408203, 1.046875, 0.060516357, 0.85058594, -0.084472656, -3.0234375, -0.059387207, -1.0830078, 0.35009766, -0.5078125, -0.31347656, 2.3554688, -0.6513672, -0.79345703, -1.0556641, 0.95214844, 2.2949219, -0.085876465, 0.6191406, 3.265625, 0.5800781, -1.875, -0.8613281, 0.33129883, 1.2070312, -0.12719727, -1.2578125, 0.08483887, -0.5571289, -1.0058594, -0.2734375, 2.4570312, -1.2783203, -1.0800781, 0.4375, 1.4111328, 0.36938477, 1.2802734, 0.023727417, -1.2373047, 0.018554688, 0.5004883, -2.1308594, -0.4194336, 0.20825195, -0.44995117, -1.5673828, 1.5361328, -1.3671875, -0.48242188, -1.9697266, -0.4272461, -2.5273438, 3.2285156, 1.4541016, 1.3710938, 2.1015625, 0.53808594, -3.5253906, 0.33007812, 0.35180664, -0.11431885, 0.4975586, 0.43041992, 0.10595703, 1.765625, 2.4296875, -1.4707031, -2.9902344, 2.90625, -0.6074219, -0.4609375, -1.1289062, 0.61376953, -1.5078125, 0.08215332, 1.9648438, -0.20581055, 0.8911133, -0.22595215, 0.24694824, 1.3173828, 1.1894531, -1.3759766, -0.37768555, -1.0986328, -1.6542969, 1.6523438, 0.45654297, -1.0107422, -1.2568359, 1.7333984, 0.7651367, 1.8652344, 1.1289062, 0.67529297, 0.30517578, 0.8745117, -0.3774414, -1.9472656, 0.2861328, 0.5410156, -0.5878906, 4.9101562, 2.5839844, -1.2724609, 1.0078125, -0.6142578, -2.5390625, -0.25878906, 0.5991211, -0.6640625, 1.640625, 1.1328125, -2.4785156, -0.25195312, 4.140625, -1.8759766, 1.2480469, -0.99316406, -2.5839844, 0.7285156, -3.5371094, -0.20751953, -1.0615234, -0.05783081, 0.36206055, 0.06585693, 0.16369629, -1.4599609, 0.41430664, 2.0976562, -0.30981445, -0.7314453, 1.3388672, -0.2607422, 1.2197266, -1.2988281, -0.91552734, -2.2421875, 0.9995117, 1.8076172, 0.38964844, 0.69873047, 1.1689453, 0.52246094, -1.7128906, 0.5048828, -0.9736328, 1.8818359, -2.5976562, -0.9350586, 2.0234375, -0.68066406, 0.91064453, -0.53564453, -1.6181641, -1.9902344, 0.7285156, 0.6660156, -0.9838867, -0.5449219, 2.1640625, -1.1484375, -4.4414062, -2.1933594, 0.012397766, -0.06591797, -0.9008789, -1.2861328, 0.57373047, 0.082458496, -0.36816406, 0.3305664, -2.84375, 1.0957031, 0.34228516, 1.1796875, 0.5644531, -0.8745117, 0.006713867, 1.640625, 0.95654297, -0.06567383, 0.22021484, -1.2714844, -2.8378906, 1.9628906, -1.8574219, 2.3085938, 1.5439453, 0.62841797, 0.84716797, 1.7861328, 0.01210022, -1.6484375, 1.8740234, -1.4804688, -0.80859375, 1.1318359, -0.24060059, -0.8486328, 0.44433594, -1.9394531, 1.5957031, -0.21203613, -2.078125, 1.0371094, 1.2597656, -0.2541504, 0.25854492, -1.0361328, -0.6040039, 0.6464844, 0.5161133, 0.5385742, 2.1464844, -1.8291016, -1.2597656, -2.7949219, -1.8271484, -0.16442871, -1.1230469, 0.9741211, -1.0878906, 1.1298828, 1.7441406, -0.007537842, -0.5703125, 0.27563477, -0.36010742, 1.0771484, 0.57470703, -1.3476562, 2.7636719, 1.1689453, 0.3239746, -0.9291992, -1.4033203, -0.54345703, -0.34716797, 1.1621094, -1.9169922, 1.5429688, -0.19226074, 0.7553711, 1.03125, 1.4511719, 2.6757812, 0.58984375, -1.2382812, 1.4951172, 2.6992188, -0.5786133, 1.2011719, 0.40795898, -0.05493164, -0.75390625, 3.0234375, 1.5195312, 0.28881836, 3.2929688, -0.9902344, 0.890625, 0.78759766, -1.4814453, 1.8271484, -1.0996094, -1.8222656, -1.3203125, -1.7021484, -1.7226562, -0.12011719, 3.3339844, -0.83984375, -0.12963867, 1.5537109, -0.9067383, 0.9501953, 1.9121094, 1.6367188, -0.042785645, 0.47485352, 1.9677734, -0.37402344, 2.7988281, -1.8525391, 0.828125, 0.2130127, 0.39379883, -0.6196289, 1.3330078, -0.19873047, 2.3242188, 1.4990234, 0.6254883, 1.0410156, 1.6035156, 2.4726562, 0.1315918, 2.21875, 2.0546875, 0.16308594, 0.35717773, 0.3881836, 0.051361084, -0.9082031, -2.09375, 0.10040283, -0.2614746, 0.060791016, -0.7080078, -1.5439453, 1.3476562, -2.7949219, 0.94677734, -0.35742188, 1.6708984, -0.10046387, -0.63427734, -0.29614258, -0.5859375, 1.3574219, -0.040618896, 0.25048828, -0.41723633, -0.015388489, -1.2548828, -0.71777344, -0.021148682, -3.1796875, 1.7734375, -1.1630859, -2.6699219, 0.13977051, -0.63671875, -0.10095215, 0.09173584, 0.17053223, 1.4521484, 1.4169922, -0.7661133, 0.36206055, -2.1875, 0.9067383, 0.64404297, 1.6367188, 0.014785767, 0.6411133, 3.390625, -0.27856445, -3.5585938, -3.6328125, 5.3242188, 0.04522705, 0.83447266, 1.0810547, -1.2792969, 2.2363281, 0.5600586, 0.36816406, -1.8164062, 0.83447266, -0.32885742, -1.84375, 0.8276367, 1.1757812, -0.87597656, 2.734375, 0.1854248, -0.84521484, 1.1542969, -1.1611328, 1.3642578, 1.5175781, 0.34570312, 0.5029297, 0.3408203, -1.8671875, 3.0859375, 1.3759766, -2.4121094, -0.41186523, 3.5625, 2.9414062, 0.70751953, 0.46191406, -1.4423828, 0.76464844, 0.2944336, -0.11694336, -0.46313477, -2.5429688, -1.1464844, -1.0253906, -1.4707031, -0.17346191, -3.5625, 0.62841797, 0.4765625, -1.3925781, 0.9790039, 2.9863281, -2.0449219, -0.4609375, 0.6699219, -0.034576416, -0.98535156, 0.20739746, 1.1484375, -0.02607727, -3.3730469, 0.3022461, 2.0839844, 1.59375, -1.7636719, 0.20043945, -1.2099609, -0.6933594, -0.14501953, 0.6020508, -0.23828125, 0.07287598, 1.2626953, -1.0654297, -2.1679688, 0.48242188, -1.0283203, -0.062469482, -1.1484375, -2.5820312, -0.9555664, -0.38867188, -0.74316406, 0.72021484, 1.0371094, -0.7890625, 0.8588867, -1.0429688, -3.015625, -1.8105469, -0.6508789, 1.4677734, 0.5546875, -0.73876953, -0.21496582, 1.6826172, 3.6816406, -2.7734375, 0.048614502, -0.50634766, -1.6943359, -0.6879883, 0.11895752, 1.6152344, -1.9208984, 0.44604492, -0.23779297, 4.125, 0.10180664, -1.6025391, 0.79785156, 2.0195312, 0.41015625, -2.2441406, 0.38085938, -0.3642578, -0.40966797, -0.625, -2.2089844, 2.0507812, 2.4414062, -1.1279297, -2.0136719, -1.8476562]}, "B016YLUXLE": {"id": "B016YLUXLE", "original": "Brand: Coleman\nName: Propane Fuel Cylinders, 4 pk./16 oz.\nDescription:

          Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

          \nFeatures: 8.0 LBR\n310326 332418 335648 333264\n014045324069\n", "embedding": [-0.15356445, -0.03439331, 0.3449707, 0.8051758, -0.11340332, -1.1728516, -0.17712402, -2.2441406, -0.38842773, 1.4960938, 2.0449219, 0.9633789, 0.21704102, -3.1582031, -0.24853516, -0.55615234, -1.8857422, 2.5722656, -0.91748047, -0.8183594, 2.7675781, -0.28222656, 0.20239258, -3.6972656, 1.7597656, 1.5566406, 5.734375, -3.359375, -1.2958984, -0.19970703, -0.08709717, -0.7402344, -0.83154297, 2.5859375, -1.1787109, 1.0527344, -0.14697266, -0.38476562, -3.1640625, -1.6552734, -0.7519531, 0.8925781, 4.078125, 0.32495117, -0.062072754, -0.6308594, 1.5136719, -0.76123047, 0.12731934, -0.42285156, 1.8164062, 0.9711914, -0.97558594, -0.62158203, -2.1269531, 0.87646484, 0.84033203, -0.57714844, 1.2763672, 0.44360352, 0.5810547, -0.17626953, -1.3769531, 0.86035156, -2.3203125, 4.453125, -1.2558594, -1.3818359, -0.009483337, 1.1367188, 4.9140625, 0.12658691, -1.5117188, -2.9667969, -1.8886719, 1.0751953, -4.46875, 0.71191406, 1.2138672, -1.0810547, -1.2529297, 1.0976562, 0.5654297, -1.2324219, -2.1484375, -1.9726562, -1.1943359, 0.91845703, 0.8535156, 0.061676025, -1.6708984, -0.30688477, -0.10998535, -3.9335938, 0.89501953, -1.9394531, 1.1757812, 0.98779297, 1.6445312, -0.38500977, 0.07904053, -0.5800781, -1.3417969, 0.2607422, -3.109375, 0.26611328, 1.703125, 0.8930664, -3.3417969, 1.4121094, -2.3945312, -2.1992188, 2.5234375, 0.77783203, -1.2880859, 0.87841797, -0.5449219, -0.76904297, 4.3789062, -1.0859375, 3.9765625, -1.6806641, 0.60791016, -0.37475586, -0.23266602, 2.03125, 0.7944336, 0.68408203, 1.0888672, 0.09753418, 0.75097656, -0.16931152, 3.8515625, -0.96972656, -2.5761719, -1.09375, -2.2167969, -1.3339844, -2.8808594, -0.65625, -3.5117188, 0.013259888, 2.2734375, 0.21533203, -4.609375, -1.5332031, -1.3085938, 0.98339844, -1.3554688, -3.046875, 1.2255859, -1.3164062, -2.4765625, 0.203125, 1.1298828, 1.1259766, -2.3144531, -2.4042969, 3.84375, 1.9082031, -0.83203125, -0.23742676, 0.10992432, 2.0058594, -2.0839844, -0.8066406, 1.5917969, -0.05697632, -1.0351562, 0.96777344, 2.7382812, -1.6806641, 1.0351562, 2.7128906, -0.69970703, -0.28808594, 0.25708008, 2.8164062, 1.3603516, 0.72314453, -2.8027344, -0.4243164, 0.34716797, -0.66259766, 1.9794922, -0.77001953, -2.0527344, -2.3769531, 0.6425781, -1.4853516, -0.6621094, 0.33813477, -1.3798828, -0.12890625, -1.5673828, -0.4338379, 0.25610352, -0.05517578, 1.4238281, 2.3046875, -0.57714844, 1.140625, 1.2304688, 1.9179688, -1.4042969, -1.5361328, 3.4414062, -1.2871094, 1.6523438, 1.7792969, 1.3720703, -0.37524414, 2.4765625, -1.5439453, 1.1064453, -2.765625, -0.60009766, 1.0693359, 2.3085938, 1.1875, 1.8818359, 0.27661133, -0.30371094, -0.8535156, 1.765625, 1.1416016, 0.7182617, -1.0400391, -1.2509766, -1.0117188, 1.1943359, 3.3203125, -1.6181641, 0.2619629, -0.041534424, 3.3730469, -0.01890564, -1.8710938, 1.5976562, -1.7578125, -0.47827148, 1.6953125, -1.1113281, -0.92529297, 0.65771484, 0.6220703, -0.01889038, 0.25756836, 4.1953125, 0.24279785, 0.89941406, -0.8027344, -1.1513672, 0.27563477, -2.3613281, 0.17272949, 0.58984375, 0.9008789, -0.21032715, -3.2714844, 1.0644531, 0.65283203, -0.15283203, -2.1582031, 0.0519104, 0.015045166, 1.0605469, 0.16235352, -2.1347656, 1.2158203, -0.6113281, 0.25708008, 1.5654297, -0.71972656, 1.3603516, 0.95654297, -1.0224609, 2.53125, -0.10668945, 2.4472656, 0.17602539, -1.0322266, 1.6113281, -4.234375, 0.05065918, 0.84228516, 1.875, -0.13549805, -2.3691406, 1.2871094, 5.5703125, -1.8017578, -1.6191406, 4.8554688, -0.76123047, 1.9267578, 0.82714844, 1.1064453, -0.21179199, -0.84228516, 0.8691406, 0.69921875, -0.20397949, 0.6074219, -1.8886719, -0.48486328, -0.17041016, -1.4882812, 0.82666016, -1.5380859, -0.5004883, -0.64453125, -1.6640625, 1.5527344, 0.06976318, 0.18786621, 3.75, -2.6894531, 3.2402344, 1.4453125, 0.31225586, 1.2050781, 1.8349609, -0.96972656, 0.32470703, 1.9892578, -3.9726562, 1.6494141, 0.9550781, 0.16430664, 1.9238281, -2.2539062, 1.7285156, -0.8144531, -1.5126953, -0.2697754, 0.6015625, -4.0820312, 0.5493164, 0.2734375, -0.9511719, 1.7949219, -1.2236328, 3.6074219, -0.72216797, -0.5097656, 0.91308594, 1.2148438, -1.1845703, -1.5585938, 0.9194336, 1.9667969, -2.359375, -3.5292969, -1.2558594, -0.49487305, 0.048706055, 0.22265625, 0.09472656, 1.3427734, 0.15893555, -0.38378906, -1.2324219, -0.85253906, -1.3144531, -0.60253906, 1.9550781, -2.1328125, 2.6484375, -0.796875, 1.9638672, -0.47143555, 0.39868164, -1.1699219, -0.8828125, 1.828125, -1.3007812, 5.59375, 0.49121094, -0.5756836, 0.17407227, -0.17675781, 1.3046875, -2.3984375, -4.0039062, 0.56689453, -0.14941406, 0.06732178, -3.03125, -4.1757812, 1.8125, -1.8681641, 0.023452759, -0.6098633, 0.03237915, -1.7490234, -0.89160156, -0.9116211, -0.39160156, -0.34057617, 1.1611328, 0.11883545, -1.6484375, 0.020431519, 0.57421875, -1.7304688, 1.2314453, -1.4121094, 0.38427734, -0.3786621, 0.15039062, 0.62109375, -0.33325195, 2.3671875, -0.00016272068, -3.3085938, 2.9140625, 1.8505859, 0.94970703, 1.6640625, -2.890625, 0.17932129, -2.9453125, -1.5820312, 1.7099609, 2.9609375, 0.59521484, 1.6318359, 1.8476562, -0.9243164, 1.3388672, -0.27539062, 1.2382812, 0.46923828, 3.0488281, -1.2783203, -3.6152344, 0.61328125, 1.8867188, -3.0625, -2.46875, -1.0761719, 1.1425781, 1.4042969, 3.03125, 0.12133789, -1.4013672, -0.3486328, -1.6748047, 2.0332031, -0.2944336, 0.36938477, 1.4648438, 0.19702148, 2.3203125, 0.5292969, 0.79345703, 1.5166016, -0.31445312, 1.4951172, 2.6757812, -1.6210938, 1.4912109, -0.51464844, -1.0214844, 1.2246094, 1.2236328, -1.4570312, 0.7583008, 0.2927246, -0.16455078, 1.4453125, -1.2958984, 1.7988281, 1.4667969, 1.1523438, -1.5439453, 1.4824219, 0.32250977, 0.19482422, -0.9506836, -0.46923828, 0.19396973, 0.8027344, 1.1865234, -1.4179688, 0.65478516, -1.0283203, 3.40625, -1.6025391, -1.234375, 0.5957031, 1.1396484, 0.27734375, -2.8984375, -3.2460938, 0.6098633, -1.5654297, 2.0390625, 2.4492188, -2.1523438, -1.4638672, 0.1385498, 1.4394531, 2.1640625, -1.6855469, -0.55371094, -2.734375, -1.890625, 0.023605347, 0.21350098, 2.1914062, 2.7890625, -1.9736328, 1.3818359, -2.1835938, 1.5742188, -0.07043457, -1.9042969, 0.17919922, 0.2927246, -2.2207031, 2.6328125, 0.6225586, 2.0390625, -0.6977539, 1.9335938, 2.8046875, -0.5644531, 0.2076416, -1.3720703, -3.0078125, 1.9580078, 0.58935547, 0.5644531, 2.3515625, -1.6289062, -0.9667969, 0.048706055, 0.16748047, -1.9804688, -2.015625, -0.008270264, 1.0761719, -2.2226562, -0.7089844, 1.1435547, -0.9765625, -4.0117188, -2.7949219, -0.48266602, -2.3125, -0.6386719, 1.3300781, -1.1240234, 1.8818359, 1.140625, 1.6777344, 1.3642578, -0.5102539, 2.5058594, 0.54785156, 0.21875, -3.6386719, 1.1572266, 2.1660156, -0.06378174, 3.4238281, 2.1230469, 2.6972656, -2.4355469, -0.12164307, 0.2590332, 1.1318359, 0.796875, -2.5957031, 1.0830078, -1.6025391, -1.0673828, -1.7714844, -0.7597656, 0.32202148, -1.5927734, 1.2070312, 1.1611328, 2.2421875, 1.5146484, 0.34936523, 0.1607666, 2.34375, 1.5957031, 0.2524414, -0.5830078, -0.95214844, -0.7714844, -1.2998047, 1.6777344, -2.5273438, -2.2832031, 1.9863281, -0.11187744, -2.75, -0.89404297, 2.2890625, 1.6982422, 0.18835449, 0.6044922, -3.2851562, 0.48046875, 0.26953125, 1.6289062, 0.5488281, -1.6259766, -0.6879883, 0.15002441, 1.0029297, -0.7480469, -0.7495117, -0.9472656, -2.5898438, -1.2529297, -0.90625, 0.49121094, -1.7167969, 0.64941406, -1.6982422, -1.1210938, 2.7910156, -1.8994141, 1.0234375, 0.34375, 1.2529297, -1.2158203, 1.2070312, 0.8959961, 0.85253906, 1.6328125, -1.5947266, 2.5566406, -0.8544922, 2.3300781, 0.54052734, 0.99316406, -2.9375, -0.06616211, -1.5078125, -0.030334473, -0.08074951, 0.038024902, 0.11273193, 0.60058594, 1.3710938, 3.1542969, 4.0429688, 0.118896484, 2.3515625, 0.25048828, 1.5664062, -0.52490234, -0.40576172, -0.20336914, 2.9101562, -1.5234375, -2.8027344, 0.09741211, 1.4160156, 2.4140625, 2.4863281, 1.4248047, -0.47875977, -2.6386719, -1.0117188, -1.7089844, -1.46875, 0.8383789, 0.6430664, 0.4091797, 0.2680664, -0.5776367, 1.0810547, 3.4550781, 1.4003906, -2.8808594, -1.078125, -0.18432617, 1.4443359, -1.9912109, 0.016418457, -3.4433594, -0.8745117, -1.5859375, 0.32495117, 1.9980469, 0.6958008, 4.3789062, -3.25, -0.89160156, -0.8173828, 1.2314453, -2.8320312, -0.5756836, 1.2929688, 1.7285156, 0.7607422, -2.2265625, -0.02986145, -0.85839844, 1.453125, 0.20263672, -1.6542969, -1.1289062, 1.3330078, -3.6953125, -5.5859375, -0.54785156, -1.1708984, 0.43774414, -0.51904297, -1.7441406, -2.0390625, 1, -2.0644531, -1.3984375, -2.6113281, 0.50439453, -2.1660156, 0.2680664, -0.3095703, 1.1572266, -0.31030273, -1.5166016, -1.4980469, 1.2861328, -0.67285156, -2.3828125, -4.7851562, -0.14404297, 1.0810547, 0.44799805, 0.73828125, -0.63134766, 2.625, 2.6953125, 2.0019531, -0.8535156, 1.1943359, -1.1552734, -0.63427734, 0.32641602, -2.0507812, 0.69677734, 0.96972656, 1.1113281, 0.7480469, 2.5957031, 2.4121094, -2.4609375, -0.6166992, -0.10784912, -1.1962891, 3.15625, 1.2265625, 3.8203125, 0.12084961, 0.27856445, 2.5195312, -0.5214844, -1.7792969, -0.8959961, -0.34277344, -0.11090088, -1.1210938, -1.6923828, -1.25, 2.7519531, 0.9741211, 0.54589844, 0.43188477, 0.27197266, -0.39501953, 0.22741699, 0.75146484, -3.8886719, 3.5078125, 0.89160156, -2.1933594, -3.5585938, -1.1757812, 3.5273438, 1.0517578, 0.06414795, -1.1953125, -0.890625, -2.1015625, -0.4399414, -0.8203125, 1.4609375, 1.4462891, 3.0390625, -1.0507812, 2.7363281, 4.328125, 1.1425781, 0.6464844, -0.69091797, -0.37670898, -1.828125, 0.52783203, 1.2041016, -3.3066406, 0.5654297, -1.4101562, -0.048950195, -0.21228027, 0.049438477, 0.50927734, -1.5380859, 1.1025391, -0.37573242, 0.45825195, -3.0859375, 2.8632812, 0.004951477, -0.8925781, 1.6386719, 0.23693848, -3.3007812, -0.66796875, 0.5776367, 1.328125, -3.2167969, -1.0214844, 1.2109375, -0.01751709, 2.8105469, -2.7050781, 3.3378906, -0.75, -0.66845703, 1.3007812, 1.8076172, 0.1706543, 2.1152344, 3.1171875, 1.3037109, 3.5195312, 0.2763672, 1.6943359, 0.5102539, 2.3574219, 0.8359375, -1.7949219, -0.22595215, 1.9550781, 0.5185547, -0.4560547, 0.61328125, -0.18164062, 0.80126953, 0.35083008, -1.3447266, 2.4316406, 0.7753906, -3.203125, 1.0830078, -0.3959961, 2.6796875, 0.33544922, 0.5800781, 1.4140625, -1.0976562, -0.46435547, -0.34155273, 0.015136719, -0.6772461, 0.10626221, -0.08154297, -0.9199219, 1.4726562, -0.3449707, -2.6992188, -2.5097656, -2.8515625, -1.2050781, -1.1113281, 1.1230469, 0.23291016, 1.1386719, 2.7617188, 0.41992188, -0.34985352, 0.032928467, -1.7851562, 0.7988281, 0.54541016, 3, 0.10595703, -1.8886719, 1.7539062, 0.95751953, -2.4960938, -4.6679688, 0.30859375, 1.890625, 0.6113281, 1.3408203, -1.3046875, 0.1027832, -1.6240234, 2.6835938, -2.0039062, 1.5439453, 0.62597656, -3.6796875, 0.27807617, -0.74316406, -0.29248047, 2.4609375, 2.5371094, -1.6992188, 0.33154297, 0.026016235, 1.5488281, 0.039489746, -0.82714844, 1.6132812, 1.8945312, -2.5722656, 0.9555664, -1.1191406, 2.9746094, 0.1920166, 3.5585938, 2.8789062, -0.032287598, -0.63427734, -0.95214844, 3.0078125, -0.32910156, -0.66064453, -1.0761719, -0.73095703, -1.0419922, 2.0039062, 0.6069336, 1.0810547, -0.16345215, -0.09484863, 0.94970703, -2.5292969, -0.28637695, 1.8574219, -0.8613281, 0.12841797, -2.8300781, -1.2128906, -1.03125, 0.30688477, -0.359375, -1.3105469, -0.88720703, 1.2636719, 2.7519531, 0.55615234, -1.2578125, 0.29516602, -1.3330078, -0.099365234, -1.5830078, -0.27001953, -0.6323242, -1.1787109, 0.49267578, -0.9819336, 0.6879883, -0.90185547, -0.08850098, -1.1523438, 1.0185547, -0.1430664, -1.8955078, -1.4179688, -0.09222412, 0.42578125, 3.6386719, -1.3613281, 1.5986328, -0.6855469, -3.0488281, -1.75, -2.6640625, 1.796875, 1.3466797, -0.2298584, -0.35717773, 1.2724609, 1.9892578, -1.3857422, -0.6582031, -0.19030762, -0.6269531, 0.9350586, -0.4260254, 0.1776123, 0.6274414, -0.062438965, -0.2548828, 3.5898438, 2.1464844, 0.26904297, -0.2084961, -1.5664062, -1.0527344, -0.8071289, -1.0351562, 0.21069336, -1.9150391, -3.6914062, 1.5048828, 2.0136719, -2.0371094, -1.1533203, -2.2929688, -0.7866211]}, "B00NG14614": {"id": "B00NG14614", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5\", Bronze\nDescription: \nFeatures: Includes lid, stones, tank holder, gas hose and regulator\nSteel frame with rubbed bronze finish\nUses 20 pound propane tank (not included) and has a 50,000 BTU output\nSafe for wood decks and great for camping or tailgating\nDimensions are 18.5\" wide and 14.7\" high\n", "embedding": [0.1763916, 1.6523438, 2.9707031, -0.10845947, 0.47680664, 0.47070312, 1.4560547, -1.8681641, -0.53027344, 2.140625, 0.6401367, -0.43725586, -0.042938232, -3.5605469, 2.1074219, -0.16174316, 0.32861328, 1.53125, 2.2929688, -0.7192383, 1.7490234, -0.46826172, 2.0019531, -1.6083984, 0.8432617, -0.35253906, 4.421875, -2.6210938, -1.2080078, -0.60302734, 1.6875, 0.86328125, 0.4111328, 2.1035156, -2.7148438, -0.9121094, -1.8867188, 1.0058594, -2.7871094, 0.2553711, -1.0273438, -1.2138672, 2.3671875, 1.3369141, -1.8476562, 0.9272461, 0.6621094, -1.1806641, 0.68359375, -0.8989258, 1.5576172, 0.7602539, 0.18969727, 1.4130859, -1.3710938, 1.078125, 0.35986328, -2.4140625, 3.0117188, 0.8515625, 2.1074219, -0.4736328, -1.984375, 1.8613281, -0.63671875, 2.4453125, -1.8974609, -1.0712891, 0.21447754, 1.1542969, 1.5869141, 1.265625, -0.1875, -0.18798828, 1.2070312, -0.31591797, -2.6738281, 1.5712891, -0.43579102, -0.51220703, -0.65283203, 3.0449219, 0.5083008, -1.0058594, -0.21179199, -1.4384766, -1.5634766, -2.0585938, 0.7651367, 1.6669922, -0.23571777, 2.4824219, -1.3867188, -4.6054688, 2.015625, -0.23547363, 1.3945312, 1.2480469, 1.9101562, 0.6767578, 0.53808594, 0.07977295, -1.4511719, 0.3876953, -3.4765625, -0.24743652, 1.2597656, 0.9819336, -1.0644531, -0.037597656, -2.34375, -0.38427734, 1.4707031, -0.69384766, -1.5976562, -0.23522949, -0.01398468, -0.016738892, 3.84375, 1.3535156, 5.125, -0.59033203, -0.16711426, -0.4260254, 0.15246582, -1.0566406, -0.59472656, 0.82958984, 1.2724609, -1.0390625, 1.1083984, -1.7548828, 2.1035156, 1.0742188, -1.2880859, -1.7382812, -2.8085938, -3.0742188, -2.09375, -0.74072266, -1.4541016, 1.7958984, 2.3632812, -1.1357422, -3.2949219, -0.31274414, -1.3544922, 1.7607422, -1.3427734, -2.0078125, 0.61083984, -1.6074219, -0.39038086, -0.6948242, 0.82714844, 1.1396484, -0.12670898, -1.9638672, 3.5410156, 1.3154297, 0.79052734, -1.6416016, -0.8515625, 1.703125, -0.4506836, -1.6884766, 1.4023438, 1.0498047, 0.54589844, 2.2304688, 0.8442383, -2.2441406, 1.5664062, 0.04824829, 0.2788086, -0.8725586, 0.2890625, 1.6767578, 1.6884766, 0.45288086, -1.8847656, -4.1367188, -0.79296875, 0.73046875, 1.2089844, -2.0605469, -1.5068359, -2.4511719, -0.30541992, -0.80810547, 0.40454102, 0.68310547, -0.91552734, 0.020828247, -0.36743164, -2.7011719, -2.1484375, -2.7167969, -0.043273926, 0.45654297, -1.7265625, 0.5332031, 0.01586914, 1.9072266, -1.4326172, -2.5390625, 1.1933594, 0.7939453, 1.6777344, 0.5488281, 0.25878906, -0.59765625, 1.4472656, -0.7163086, -1.2587891, -2.796875, 0.5625, -0.91845703, 2.5058594, 2.328125, 0.63134766, 0.31030273, 1.0078125, 1.3632812, 0.57177734, 1.7412109, -0.2788086, -0.0368042, -1.7695312, 0.37597656, 2.3847656, 1.4599609, -0.5214844, 0.78027344, -0.9550781, 3.5898438, -0.62402344, -2.2890625, 2.6152344, -0.5444336, -0.84033203, -1.4003906, -1.0527344, 0.25439453, -0.079589844, 0.15393066, -1.3261719, 0.5209961, 2.6621094, -0.09338379, 0.54248047, -0.09979248, -0.8149414, 1.3710938, 0.18762207, 0.0154953, -0.24499512, 1.3251953, 0.48217773, -2.3515625, 1.8271484, 0.3791504, -0.99072266, 0.29003906, 0.67578125, -1.7021484, 1.1298828, -0.23034668, -2.1855469, 0.21533203, -0.17651367, 1.0351562, 2.5410156, 0.22033691, 2.0703125, 0.8857422, -0.94189453, 3.8183594, -0.47973633, 2.0566406, -0.80322266, -0.24084473, 2.3515625, -1.90625, 0.020263672, 0.061920166, 0.89990234, -0.31933594, -1.2714844, 1.6914062, 4.03125, -0.59033203, -1.0214844, 2.8007812, -0.014602661, 1.3759766, 0.6484375, -0.53027344, -0.53466797, -1.4208984, 0.6665039, 1.5419922, 1.2626953, 1.1386719, -0.63916016, -1.0693359, 0.0713501, -3.5722656, 0.07470703, 1.5458984, -0.0625, 0.5097656, -0.5498047, 1.4667969, -2.8125, -0.97265625, 1.2939453, -3.6347656, 0.77246094, 1.6513672, 0.80859375, 1.4082031, 0.6113281, -0.9633789, 0.2052002, 1.9980469, -1.1025391, 0.33740234, 0.8378906, -0.28759766, -0.76171875, -1.4824219, 0.83251953, -2.8222656, 0.06097412, -1.3769531, -1.0537109, -1.0166016, 1.296875, -1.4541016, 0.34692383, 1.0273438, -2.1015625, 1.0654297, -0.28393555, -2.2695312, -0.69091797, 1.8837891, -1.3925781, -0.7988281, -0.1239624, 2.3046875, -1.8291016, -3.3476562, 0.068481445, 1.0605469, 0.58984375, 1.1533203, -0.5058594, 0.8261719, 0.019470215, 0.5410156, -0.08355713, -0.75683594, 0.26708984, -1.1865234, 0.78564453, -4.546875, 2.2421875, -1.7851562, 0.7583008, -1.4101562, -0.22973633, -1.8779297, -1.2832031, -0.030014038, -1.09375, 5.1757812, 0.4621582, 1.3388672, -0.38745117, -1.4042969, -0.2277832, -1.2890625, -2.1660156, 0.17358398, -0.61328125, -0.036621094, -1.1152344, -3.84375, 0.51171875, -1.2919922, 0.026184082, 0.04611206, -0.8305664, -1.0957031, 0.40429688, -0.16906738, 0.48828125, -0.028945923, 0.375, -0.11047363, 0.20800781, -1.0039062, -0.5263672, -0.87402344, 0.1307373, 0.44921875, 1.3828125, -1.2939453, -0.06628418, 0.48583984, -0.42749023, 2.0488281, 0.25756836, -3.2675781, 2.2890625, 1.9179688, 0.11706543, 0.6538086, -1.9238281, -2.0429688, -1.8291016, 0.9941406, 2.4589844, 2.828125, 1.9736328, 0.9707031, 0.10992432, -1.1298828, -0.11846924, -0.07525635, -0.85791016, 0.44873047, 2.9882812, -3.4746094, -1.9042969, 0.16369629, 2.0878906, -3.6972656, -0.11859131, 1.5341797, 1.8828125, 1.6259766, -0.062561035, -0.5473633, 0.31225586, 0.72998047, 1.8876953, 1.6171875, 1.9121094, -0.25317383, 1.2119141, 1.0410156, 0.5732422, 0.89453125, 1.7197266, 0.06750488, 1.1894531, 1.6894531, -0.7714844, -1.3554688, 0.17773438, 0.5449219, -0.36328125, -0.2758789, -0.34033203, -1.9365234, -0.24084473, 0.7167969, 0.095703125, 0.6435547, -2.2910156, -0.4489746, 0.5966797, 0.118896484, -1.0136719, 0.3395996, 0.2590332, -0.9238281, -0.9145508, 1.2568359, -0.30200195, 0.34960938, 0.9140625, -1.7929688, 0.34521484, 0.21618652, 1.8251953, 0.5917969, -2.0820312, -0.6323242, 1.3183594, -0.31225586, -1.8164062, -1.7792969, -3.1054688, -1.5537109, 3.5058594, 0.91259766, -0.85839844, -0.5620117, -1.6435547, 1.0537109, 2.6015625, -1.4863281, -1.5458984, -2.3535156, 0.08105469, -0.32348633, 0.9394531, 2.0703125, 1.3017578, -2.9082031, 1.1015625, -2.328125, 0.92041016, 1.7207031, -0.0022640228, 0.13757324, 2.2421875, -0.67626953, 2.421875, 0.3647461, 3.4140625, -0.5439453, 0.5522461, 3.4355469, -1.0683594, -0.87353516, -2.8203125, -2.7558594, -0.13366699, -1.5341797, -0.42114258, 0.9897461, 0.05065918, -0.8466797, 1.7148438, -0.44335938, -3.2265625, -1.6328125, -0.5161133, 1.5527344, -2.109375, -0.55029297, -0.20507812, 1.0361328, -2.7832031, -2.0019531, -0.11431885, 0.061676025, 0.046783447, -0.28393555, -0.5703125, 1.8183594, -1.578125, -0.010925293, -0.27124023, -0.2631836, 0.6171875, -1.09375, -0.7314453, -1.4335938, 2.7695312, -0.21813965, -1.3671875, 2.2695312, 4.59375, 0.7236328, 0.24475098, -0.39916992, 0.23242188, 2.59375, -0.16271973, -3.7929688, -0.23010254, -1.4453125, -0.11553955, -0.88427734, 0.33447266, 0.4189453, -1.1396484, 1.1689453, 1.4775391, 1.2226562, 1.1494141, -0.74316406, -2.4335938, 1.2089844, -0.47705078, -0.5473633, -1.3378906, -0.2631836, 1.15625, -1.9013672, -0.034240723, -1.4570312, 0.5390625, 0.005607605, -0.7080078, -1.5771484, 2.2558594, 2.1875, 1.4492188, 2.8652344, -1.5488281, -1.65625, 0.30126953, -0.53564453, 0.056762695, 1.3349609, 0.4729004, -0.2866211, 1.6826172, 0.9838867, 0.6254883, 0.2479248, 1.3984375, -1.7744141, -2.0273438, -0.4777832, 0.8413086, -0.99072266, -1.2197266, -0.5991211, -1.84375, 2.3046875, -0.50634766, -0.38134766, -0.9506836, 0.96240234, -0.6972656, 1.6679688, 0.671875, -0.35913086, 0.94433594, 1.0009766, 1.3193359, -0.37817383, 1.6708984, 0.4333496, 0.98876953, -1.921875, -0.63183594, -0.7807617, 0.53759766, -1.8017578, -1.21875, -0.0035438538, 0.39379883, 0.117126465, 1.7802734, 0.5175781, -0.98095703, 1.8837891, 2.5898438, -1.359375, 0.14123535, -0.8071289, -2.7734375, 1.6123047, -0.16674805, -3.2714844, 0.6166992, 1.4052734, 0.23742676, 2.5957031, -0.14685059, -0.7871094, -0.41577148, -2.6367188, -1.8935547, -0.49194336, 0.32983398, 0.06225586, 0.19750977, -0.086120605, -0.7602539, 1.1142578, 2.6503906, 1.0302734, -1.2255859, 0.546875, 0.9765625, -0.94189453, 0.54541016, 0.52246094, -1.0361328, -0.9536133, 0.73095703, 2.1601562, 1.1845703, 1.203125, 1.7421875, -1.9902344, 0.43310547, -1.2841797, 3.5214844, -2.4804688, -0.4494629, 2.2363281, 1.5175781, 2.0273438, -2.6171875, 0.29223633, -1.0615234, 2.1796875, 2.4453125, 0.40673828, -1.5556641, -0.9941406, -2.7519531, -3.3867188, -1.5859375, -1.2011719, -0.21655273, 1.2822266, -1.1474609, -1.3535156, 1.078125, -0.32495117, 1.4033203, -0.7109375, -0.28833008, -1.1103516, 0.45581055, 0.21240234, 0.11999512, 0.8354492, 1.3876953, -1.1826172, 0.26782227, -0.5390625, -1.8583984, -4.8984375, 1.9326172, -2.0234375, 1.4990234, 0.9790039, 0.46972656, 1.4238281, 3.2011719, 1.2861328, -1.8193359, 1.5546875, -0.3383789, -0.15759277, 0.4189453, -0.93310547, 1.359375, 0.35913086, -0.7739258, -0.19885254, -0.93603516, 0.859375, -0.6542969, -0.9980469, 0.06842041, -0.54248047, -0.06756592, 0.2878418, 2.96875, 0.40795898, 1.1787109, 1.5996094, 0.47680664, -0.6352539, -1.6621094, -1.8017578, -0.40234375, -2.90625, -1.7177734, -1.4755859, 0.80371094, 1.9472656, -0.36035156, 1.9775391, 1.3828125, 1.2363281, -1.1132812, 1.0654297, -1.4521484, 1.4248047, 1.7519531, -1.703125, -2.9316406, -2.5722656, -0.5083008, 2.0234375, -1.1894531, -0.19091797, -0.6640625, -3.2109375, 0.48291016, -0.029373169, 1.1035156, 2.6269531, 0.7109375, -1.7255859, 0.61865234, 2.1386719, -1.3085938, 1.0644531, -0.15710449, 0.98291016, -0.16479492, 2.5996094, 2.1855469, -0.99072266, 1.2236328, -0.63378906, 0.5234375, -1.6728516, -0.5048828, -0.112976074, -4.1914062, -0.52685547, -1.5419922, -0.01524353, -3.8945312, 1.1826172, 1.2353516, -1.1689453, 0.7788086, 1.140625, -0.38793945, 0.10620117, 2.0429688, 1.9921875, -0.9921875, -0.2133789, -1.5810547, -0.12121582, 2.3242188, -2.0273438, -0.0715332, -0.040374756, 0.5673828, -1.9179688, 1.8300781, 0.4350586, 0.99072266, 2.1484375, 2.9453125, 1.5117188, 0.49658203, 1.2880859, -0.36108398, 1.5712891, 1.1455078, -2.2382812, 0.38232422, 0.82910156, 1.2285156, 0.055236816, -0.5078125, 0.03604126, 0.9057617, -1.0126953, -1.5966797, 0.08935547, 0.7109375, -4.4257812, 1.3037109, -0.7260742, 2.0839844, -0.21289062, 0.4658203, -0.7578125, 0.875, 0.94970703, -0.73046875, 1.2109375, 0.2770996, 0.42089844, 0.8745117, -0.33984375, 0.36279297, -2.0625, 1.2138672, -0.14611816, -2.1894531, -0.7734375, 3.2519531, 2.1601562, 0.8076172, 0.53125, 2.5644531, 1.9882812, 0.5751953, 0.9716797, -0.6977539, 0.55908203, 0.25854492, 1.3759766, -0.48901367, -2.2539062, 1.4628906, -0.37475586, -1.2324219, -3.3261719, 1.6738281, 1.3115234, 0.58154297, 1.2822266, -1.4375, 2.0117188, -1.046875, 0.75439453, -2.7109375, -0.24829102, 0.7055664, -3.1523438, -1.2480469, 0.2998047, -0.15612793, 2.9589844, 1.4755859, -0.13232422, 0.8984375, 0.5078125, 1.4287109, 0.9223633, 0.32226562, 0.043395996, 1.2324219, -1.7734375, 1.921875, -0.17163086, -0.26293945, -1.2646484, 3.375, 0.5498047, 0.3815918, 0.6489258, -2.3457031, 1.5136719, -1.3515625, 0.25048828, -0.41674805, -2.09375, -2.34375, 0.19091797, 0.48046875, -1.1611328, -1.3310547, 1.4677734, 1.7958984, -0.3359375, -0.21105957, 2.9609375, -1.4853516, 1.1152344, -0.32128906, -1.4482422, -1.0800781, 0.3059082, 1.1230469, -1.5058594, -1.5986328, 0.02885437, 1.6474609, -0.3701172, -1.6210938, -0.13708496, -1.2675781, -0.3881836, 0.9160156, 1.5175781, -0.7060547, 0.07043457, 1.171875, -0.8510742, -1.3730469, 0.41870117, -0.00029587746, -1.1728516, 0.2939453, -2.5058594, -0.36743164, 1.8583984, -0.7661133, -0.15991211, 3.359375, 0.15454102, 0.5551758, -2.0605469, -3.8730469, -1.6708984, -1.2441406, 1.9863281, 0.40698242, -0.7988281, -0.011924744, 0.7104492, 2.8691406, -1.2197266, -1.1083984, -0.13342285, -0.6479492, 0.11437988, -0.97558594, 1.6044922, 0.49804688, 0.1538086, 0.30371094, 2.4941406, 1.3974609, -0.19445801, 1.5966797, 2.1289062, 0.56933594, -1.2998047, -0.27001953, -0.06390381, 0.78564453, -0.21655273, -0.74853516, 1.8535156, -0.66552734, -1.734375, -2.078125, -1.21875]}, "B06WLHJ8GJ": {"id": "B06WLHJ8GJ", "original": "Brand: F Fellie Cover\nName: Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))\nDescription:
          Fellie Cover BBQ Grill Cover---Provide full protection for your grill

          Wide Compatibility:
          This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill's dimensions for proper fit.

          Adjustable Funtion (Wind-proof):
          Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

          Water-resistant:
          This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

          Durable Burner Gas Grill Cover:
          Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

          Firm Protection:
          Double stitching (Sewing), which is more durable than one-line stitching.

          Easy Installation:
          You can easily put this grill cover on or off.

          Easy to store/carry:
          Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

          Note: Please keep away from open flame and other sources of ignition.


          Item Color: Black
          Package included
          1 * Grill Cover
          1 * Packing Bag\nFeatures: Find the Perfect Cover - Measures 75\"Wx28\"Dx46\"H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill's dimensions for proper fit\nDurable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round\nEasy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds\nSecure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won't blow away in the wind\nEasy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage\n", "embedding": [0.92041016, 1.7685547, 3.25, -0.8203125, -0.34960938, 0.26660156, 0.27856445, -3.2265625, 0.9404297, 2.4804688, -1.0673828, -0.15161133, 1.3378906, -5, 0.5131836, 0.59277344, -0.20202637, 2.2148438, 3.7851562, -1.0361328, 1.9345703, 0.22424316, 1.1445312, 2.0234375, 0.11791992, -0.47070312, 4.3828125, -1.8398438, -0.70654297, 0.00932312, 0.87939453, 0.25219727, -0.45947266, 1.3330078, -2.7421875, -1.265625, -0.2644043, 1.0361328, 0.6118164, -0.75927734, -1.4238281, -1.7792969, 2.7402344, 1.0283203, -2.0390625, 1.6162109, -3.671875, -0.59033203, 0.13562012, -2.0898438, 1.1425781, 1.0058594, 2.7460938, 0.7651367, -3.9492188, 2.1992188, 0.64208984, -2.5078125, -0.61083984, -1.3554688, 1.5419922, 0.07171631, -0.36889648, 3.7929688, -1.2958984, -1.0332031, 0.11584473, -0.86035156, 0.81103516, 0.81347656, 1.1484375, -0.50878906, -1.3701172, 0.45239258, 1.5576172, -0.48583984, -2.7558594, 1.9082031, 1.4267578, -0.83203125, -0.9746094, 4.5625, 0.06524658, -1.7333984, -0.20703125, -0.12854004, -2.9257812, -2.0019531, 1.5185547, -0.8520508, 0.47607422, 3.0390625, -1.2988281, -4.2382812, 1.2861328, -4.5585938, 3.6015625, 0.66064453, 0.2376709, -0.38598633, -2.1992188, 1.0322266, -1.1416016, 0.5185547, -2.9277344, -2.3007812, 1.3886719, 0.1116333, 0.90283203, 0.7685547, -0.81933594, 0.17041016, 0.2932129, 1.6044922, 2.2578125, 0.6435547, -1.3613281, 1.7304688, 0.108947754, 2.0898438, 3.1074219, -0.36523438, 0.4375, -1.0234375, 0.29101562, -0.8959961, -0.49267578, -0.28686523, 2.046875, -1.3037109, 1.0976562, -1.359375, 0.90234375, 0.80615234, -1.3623047, 0.17553711, -2.3417969, -1.1044922, -3.7871094, 1.6201172, -0.16418457, -1.3779297, 0.7675781, -1.7080078, -2.328125, 0.2631836, -1.5068359, 3.109375, -0.5761719, -3.7226562, 0.64160156, -1.34375, 0.30029297, -0.6933594, 0.83447266, -0.4194336, -0.13745117, -3.4804688, 4.1171875, 2.1699219, 2.1914062, -1.9433594, 2.5996094, 0.34716797, 1.4794922, -2.2402344, 1.1542969, -0.49853516, -0.8354492, 2.6679688, 1.390625, -1.8974609, 0.40527344, 2.6230469, 1.6357422, -2.7851562, 0.72021484, 0.6821289, 0.37182617, 0.23449707, -0.21142578, -2.0566406, 0.3071289, 2.0605469, -0.6118164, -0.70996094, 0.47070312, 0.64501953, 0.5419922, -1.1474609, -1.6650391, 0.9628906, -0.7944336, 0.4987793, -2.609375, -1.8652344, -1.4111328, 0.2355957, -1.1445312, -0.124694824, -1.0253906, -0.94140625, -1.0507812, 0.25219727, -3.0410156, -0.90527344, -0.6801758, 0.5288086, 0.95751953, 1.9980469, -0.8486328, -3.1132812, 3.3574219, 2.78125, 0.28149414, 0.07659912, 2.359375, 0.81640625, 1.8984375, -0.24536133, -0.3317871, -0.41088867, 0.61816406, 4.2851562, -0.67529297, 0.96484375, 1.9550781, 0.14868164, -0.6201172, -0.2310791, 0.90478516, 0.5078125, 0.32666016, -0.59277344, -0.5126953, -0.094055176, 0.18273926, -2.4980469, 0.36132812, 1.609375, -1.5537109, -1.734375, -3.3515625, -2.0332031, 1.6445312, 2.0019531, -0.09106445, 1.3935547, 0.8959961, -1.1425781, -0.31347656, 0.5654297, 0.84277344, 1.0839844, 0.121276855, 0.50878906, 1.8701172, 0.01977539, -1.0615234, -2.5097656, -0.8857422, -0.74121094, -1.3886719, 2.3847656, -0.101745605, 0.19934082, 0.103515625, 1.9443359, -1.0253906, -1.7939453, 0.93359375, -0.890625, -0.34960938, -1.5957031, 0.5673828, -1.2226562, -0.15100098, 0.2849121, 0.8652344, 0.039764404, 0.65625, 1.9726562, 1.7636719, -1.5488281, -0.40014648, 0.8671875, 1.2675781, -2.2792969, -0.6166992, -0.37939453, 4.8125, -0.12237549, -1.1738281, 3.21875, 0.25390625, 1.3066406, 0.22460938, -1.0283203, -1.3945312, 1.6259766, -0.4086914, 0.8808594, -0.9995117, 1.3759766, -2.0664062, -2.1191406, 1.8115234, -3.5214844, -1.5322266, 1.4326172, 1.5644531, 1.4033203, -0.78564453, 1.4042969, -1.3388672, -3.1328125, 0.9321289, -2.1035156, -0.1928711, 0.10467529, 0.25976562, 1.703125, -1.6640625, -0.9555664, -1.7587891, 0.3305664, -1.0576172, 0.95214844, 1.3720703, -0.61816406, -0.1439209, -1.7724609, 0.38232422, -1.8427734, -0.8886719, -3.0703125, -3.0449219, -1.9423828, -0.5527344, -2.0761719, 0.50390625, -0.3017578, -2.7148438, 2.1621094, 1.1875, -2.6875, -1.1455078, 1.6425781, -1.3154297, 2.0644531, -1.0576172, 0.35327148, -0.040893555, -5.46875, -0.53466797, -1.0976562, 0.24633789, -0.96728516, -0.23901367, -0.8408203, 0.3762207, 0.71777344, -0.18237305, 1.5917969, 1.0771484, -0.047546387, 0.025177002, -2.5527344, -0.16137695, -1.5722656, 0.4086914, -1.7773438, 0.8613281, -3.3320312, -1.0009766, 0.6484375, -2.1523438, 4.9570312, -0.30419922, 0.37158203, -1.3476562, -0.037902832, -0.6645508, -0.7753906, -3.6542969, 0.3154297, 0.44384766, -0.1328125, 0.53564453, -4.1171875, -2.2753906, -0.44628906, -0.8232422, 0.37768555, -0.77490234, -1.7705078, 0.7944336, -5, -0.6088867, -1.9335938, 0.94873047, -0.7167969, -0.5473633, 0.14709473, -3.8535156, -1.6826172, -0.8022461, -2.2578125, 1.6875, -1.8134766, 0.86083984, 2, -0.24047852, 2.7558594, -0.93066406, -4.2460938, 1.7324219, 1.8828125, -0.31225586, 3.4921875, -0.3791504, -0.8803711, -0.83740234, 1.3818359, 2.3554688, 1.2880859, 0.07269287, 2.7480469, -0.6352539, 0.6738281, 1.1640625, 0.76904297, -1.4921875, 0.58154297, 2.8027344, -1.2158203, -0.7421875, 0.95947266, 0.68847656, -1.4707031, 0.52685547, 3.0703125, 0.421875, 0.33984375, 1.3554688, 0.4260254, 1.4453125, -0.8569336, 1.5126953, 0.22753906, 2.6191406, -0.070495605, 0.74365234, 0.42529297, -0.047912598, 2.7382812, -0.072387695, 1.2080078, 0.98828125, 1.3369141, 1.3662109, 0.29833984, 0.27416992, 0.024414062, 0.2368164, -2.2929688, 2.1367188, -0.7050781, -0.54003906, 1.4462891, -1.8769531, 1.1181641, -1.1660156, 0.71777344, 1.4492188, -1.9365234, 0.5776367, -1.7402344, -1.0751953, -0.2866211, -3.1699219, -0.8330078, -3.1113281, -1.2792969, 0.21447754, -4.0585938, -1.96875, -0.37402344, 2.9980469, -0.26464844, -1.9902344, 0.7661133, 1.4150391, -1.7958984, -2.4492188, 0.55859375, 1.5644531, 0.06311035, 2.9433594, 3.5273438, -0.6308594, 1.6386719, -2.8027344, 2.1386719, 0.16149902, -1.0341797, -0.56347656, -0.18737793, 0.7167969, -0.22363281, 2.6816406, 1.1796875, 2.0292969, -0.5419922, 0.13830566, -1.9433594, 0.8461914, 2.2832031, -1.8251953, -0.6557617, 1.6621094, 1.3515625, 1.0058594, 0.6611328, 2.4648438, -0.6660156, -2.7128906, 1.6669922, -1.0595703, 0.11151123, 0.6972656, -4.390625, -0.41137695, 0.7680664, -0.9663086, 2.2050781, 0.14318848, 0.2890625, 2.2402344, 0.23632812, -0.55908203, 0.3383789, -1.8632812, -2.1328125, 0.32763672, -0.8642578, 2.0039062, 0.29516602, -2.6992188, -1.3349609, -2.5019531, -1.6494141, 1.1171875, 0.92822266, -0.87060547, 0.31420898, -2.5878906, -0.24169922, -2.1679688, -0.8779297, 0.17565918, -0.453125, -0.98095703, -0.0836792, 1.9570312, -1.0830078, 1.0576172, 0.46557617, 0.7675781, -0.50390625, -0.5361328, 0.48046875, 2.6289062, 1.8964844, -0.70166016, -3.890625, -1.9101562, 1.1552734, 1.4960938, 1.2294922, -1.5546875, -0.63183594, -1.6035156, -0.35839844, 1.3769531, 2.6777344, 0.47436523, -0.8901367, -0.6713867, 1.5263672, -1.8837891, -2.1386719, -0.9355469, 0.37670898, -0.12200928, 0.44555664, -1.1601562, -2.828125, 2.4140625, -0.8208008, 0.23669434, -2.0644531, 4.5898438, 1.5351562, 1.7246094, 3.1230469, -2.6035156, 0.7001953, 1.0957031, -1.09375, -0.7133789, 1.1386719, -2.515625, 1.3369141, 1.7089844, 0.16052246, -1.4980469, -1.234375, -1.5527344, -0.73291016, -0.075805664, -2.421875, 2.3300781, -1.3623047, 1.6816406, 0.7084961, -2.9179688, 2.4628906, -0.20544434, -1.2246094, 2.8828125, -1.8603516, 0.8339844, 0.7402344, 0.34692383, -0.30200195, -0.21520996, 0.49438477, 0.07366943, -0.8222656, -1.2265625, 0.94091797, 0.98583984, -1.6640625, 0.2006836, 0.7451172, 0.75439453, -1.8154297, -0.010803223, 3.7382812, 2.1660156, 0.26611328, 1.7041016, 0.8886719, -1.1103516, 1.3212891, 2.2050781, -0.8979492, -0.6699219, -0.71533203, -0.6875, 1.4365234, -1.4296875, -2.8671875, -0.9848633, 1.5947266, -0.42504883, 2.1777344, -1.0087891, -1.7548828, 2.1347656, -1.3544922, -1.4443359, 0.2619629, -0.5175781, 0.23901367, -1.1455078, 1.453125, -0.018508911, 1.2753906, 2.9003906, -2.3222656, -3.8964844, 0.01878357, -0.8520508, -0.15356445, -0.33447266, -0.83447266, -3.0898438, 0.10101318, 2.4199219, 1.96875, 1.5019531, -0.07928467, 1.7695312, -1.1787109, 0.23461914, -0.109802246, 0.9316406, -3.3632812, -0.38134766, 0.8017578, -1.0126953, -1.859375, -2.15625, -0.31347656, 1.1611328, 3.3457031, 0.46362305, 1.4912109, 0.7324219, -0.5649414, -3.5761719, -2.0371094, -1.5810547, 0.52734375, -1.0380859, 1.9550781, 0.20581055, 1.2304688, 0.38623047, -1.203125, -1.3476562, -1.0576172, 0.19750977, -0.10998535, -1.5429688, -0.5996094, -1.6894531, -0.8286133, 0.28149414, 0.6040039, 2.1816406, 0.12536621, -2.59375, -0.7397461, 0.7709961, -3.5195312, -1.5058594, 1.2060547, 0.16455078, 2.3554688, -0.45043945, 1.203125, 0.63964844, 2.5449219, -1.3759766, -0.7480469, 2, -1.4892578, 1.6015625, -0.6347656, -1.9375, 1.2597656, -3.7011719, 0.9042969, 0.8544922, -0.48486328, 0.85009766, 1.1318359, -1.2265625, -2.109375, 0.38012695, 1.0273438, 3.1347656, 0.5493164, -0.34985352, 0.17126465, -1.2783203, -3.2226562, 1.0634766, -2.1308594, -0.9628906, -1.8544922, -0.45898438, 1.7021484, 0.95214844, 1.8105469, 2.4511719, 1.6464844, -0.23156738, -0.81933594, 0.13793945, 3.7832031, 0.4338379, -2.7675781, 0.062316895, -0.7729492, 0.3569336, 1.3984375, -0.2980957, 0.059753418, -0.09277344, -0.98876953, -0.43408203, 0.62402344, 1.4716797, 1.6748047, 0.3701172, 0.55029297, 1.2158203, 2.2792969, -0.6035156, 1.7050781, -0.6845703, 1.9101562, -1.9394531, 2.5917969, -0.64990234, -3.2539062, -0.7939453, -1.3378906, 1.1376953, 1.5253906, -0.8198242, -0.6816406, -1.9140625, -1.7392578, -1.9140625, -0.29541016, -3.3613281, 0.7734375, 1.1435547, -0.7788086, 0.5332031, 1.625, 0.26342773, 4.2851562, 1.5244141, 0.47973633, -0.18981934, 0.082214355, -2.5039062, 0.011405945, -0.43969727, -1.9570312, 0.42700195, 0.03656006, 0.87646484, -1.8115234, 1.3623047, 1.2119141, 0.79248047, 1.7099609, 3.1972656, 2.1289062, 1.7539062, 3.2363281, 0.058532715, 2.0722656, 1.1669922, -0.84472656, -0.68359375, 2.65625, 1.3349609, 3.4902344, -0.23901367, -1.1689453, 1.0869141, -0.5800781, -0.33398438, 0.26538086, 0.3125, -2.4824219, 1.0771484, 0.7675781, -0.28588867, -0.80615234, 1.2617188, -0.38867188, -0.50341797, 0.62939453, -1.1865234, 3.5214844, -0.59375, 2.5234375, 0.22937012, 2.2792969, 1.8916016, -3.4648438, 2.6269531, 1.3691406, -2.4199219, -2.4414062, 1.8535156, 1.2597656, 3.28125, -0.42944336, 0.3857422, 2.2539062, 1.7851562, 1.2148438, -1.6083984, 0.87841797, 0.66748047, 0.93847656, 2.0097656, -2.8535156, -1.9960938, 1.5585938, -2.3242188, -1.4003906, 1.25, 2.40625, 1.2822266, 1.3808594, -4.234375, 0.5371094, -0.070495605, 2.5878906, -0.61621094, -0.015670776, -1.15625, -0.5942383, -2.3261719, 0.4736328, -1.4091797, 2.3574219, 0.9628906, 0.0949707, 2.9589844, 0.74316406, 1.8476562, 0.43310547, 1.0576172, -0.38183594, -0.125, 0.24963379, 0.7915039, 1.8330078, -1.3671875, 1.0263672, 1.8818359, 0.077941895, 2.1191406, 1.9638672, -1.2988281, 1.8603516, 3.4960938, 0.57421875, 1.40625, 0.079589844, -2.6347656, -1.5380859, 1.1103516, -1.1464844, -1.8037109, 1.6396484, 2.6113281, 1.2792969, 1.3232422, 2.1972656, 0.0970459, 2.3144531, 0.19018555, 0.13720703, -1.3564453, -0.57128906, 1.2207031, -1.1650391, 0.19836426, -1.0058594, 0.2277832, -0.0061035156, -0.87060547, 0.34838867, -0.3383789, -0.31958008, 0.09564209, 1.03125, -1.1064453, -0.35058594, -0.59228516, -0.35424805, -0.5654297, 2.09375, 0.46826172, -1.4130859, -1.7285156, -0.94677734, -0.6699219, -1.8076172, -2.3691406, 2.0683594, 4.375, 1.9570312, -1.7607422, -0.6977539, -3.0546875, -1.8457031, -1.0517578, 0.5805664, 0.58251953, -1.3955078, -0.5703125, -0.39575195, 3.9550781, 0.57958984, -0.49047852, 0.0021686554, 0.07354736, 2.9179688, 0.49169922, -0.70703125, -0.22241211, 0.30859375, 0.49291992, 1.9824219, 2.8261719, 0.74853516, 1.2802734, 2.8574219, -0.88623047, -3.1953125, -0.2475586, 0.87109375, 1.4267578, -1.0039062, 1.0478516, 0.4362793, -0.9223633, -0.055358887, -0.48486328, -1.2978516]}, "B094MW12HR": {"id": "B094MW12HR", "original": "Brand: SIRUITON\nName: SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black\nDescription: Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)\nFeatures: DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill\nPROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.\nWATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank.\nEXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage.\nGREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.\n", "embedding": [0.44360352, 3.0371094, 3.5507812, 0.24230957, -0.89697266, -0.13330078, -0.51464844, -0.44995117, 2.4238281, 1.4335938, 1.1328125, 0.9082031, 0.96191406, -3.0820312, 1.0273438, 0.02368164, -0.36669922, 2.6367188, 3.2324219, 0.90478516, 2.1640625, 1.7822266, 0.74121094, -0.3347168, 0.12634277, 0.70458984, 3.1660156, -2.8789062, -1.296875, -0.24438477, 0.6015625, -0.24401855, 0.27954102, 2.4648438, -0.24121094, -2.15625, -1.6103516, -0.7788086, -1.8994141, -1.1376953, -2.0957031, -0.6933594, 3.0585938, 0.49047852, -1.296875, 1.1289062, -1.9990234, -1.7480469, -0.3618164, -0.5649414, -0.097351074, 0.87060547, 1.9296875, 1.1318359, -0.92089844, -0.054260254, 0.6972656, -1.4667969, 0.97998047, 0.9760742, 0.50927734, -1.6904297, -1.6230469, 1.8222656, 1.6083984, -0.5126953, -0.15783691, -0.26342773, 1.1025391, 1.6240234, 2.0898438, -1.0761719, 1.9013672, -1.0244141, 1.2519531, -1.1416016, -2.2949219, 1.6464844, 1.4326172, -0.48242188, 0.39379883, 3.2734375, 0.058013916, -1.9560547, -1.8486328, -0.99072266, -1.1396484, -0.25512695, 0.083496094, 0.32641602, -2.2675781, 1.6367188, -1.8271484, -4.6328125, 0.58740234, -1.9541016, 3.8710938, 1.6689453, 3.2480469, -0.21459961, 0.38891602, -0.09069824, -2.0332031, 1.2548828, -2.0761719, -1.2470703, 0.43408203, -0.93066406, 0.9863281, -0.56396484, 0.55126953, -0.35131836, 1.5761719, -1.7548828, 0.42919922, -0.57470703, -0.28173828, 0.24230957, 1.7441406, 1.1367188, 2.6386719, -0.7167969, 0.5239258, -1.3974609, 0.43896484, 0.16906738, -1.890625, 0.30908203, 3.5351562, -0.23510742, 1.1445312, -0.87841797, -0.5620117, -1.09375, -0.2902832, -0.69970703, -1.3212891, -1.1464844, -3.3828125, -0.077697754, -2.59375, -1.015625, 1.2421875, -1.2929688, -3.0136719, 0.0491333, -1.7783203, 1.2119141, -0.69140625, -2.1757812, 0.45507812, -1.2578125, -0.13928223, -0.9379883, 2.4375, 0.15710449, 1.2333984, -2.8183594, 1.7773438, 2.2988281, 4.3125, -1.6367188, 0.34765625, 1.3173828, 1.5605469, -4.0625, 0.70458984, 0.92041016, -1.1796875, 1.0742188, 1.3076172, -2.1191406, -0.40893555, 1.5224609, 0.3178711, -1.5400391, 1.2089844, 2.1933594, -0.96972656, -0.7626953, -3.6289062, -1.4433594, 0.25830078, -0.11004639, -0.40234375, 0.6035156, -2.03125, -1.9589844, -0.24572754, -0.16247559, -1.8789062, 0.9873047, -1.6816406, -1.0859375, -0.7421875, -2.5957031, -2.2695312, -1.5673828, -0.82910156, 1.0888672, -1.1796875, -0.82373047, -0.7475586, 2.3144531, -2.9296875, -0.30981445, 2.1289062, 0.8227539, 1.6816406, 2.40625, 0.8666992, -0.4416504, 2.2871094, -0.2322998, -1.2324219, -0.8027344, 2.7421875, 0.4453125, 0.9394531, 1.0498047, -0.45581055, -0.6826172, 0.72802734, 2.59375, 0.81591797, 3.3183594, 0.43115234, 0.49047852, -1.625, -0.74560547, 0.8652344, 1.4404297, -1.1025391, 0.97753906, -1.0048828, 2.3222656, -1.0292969, -0.53808594, -0.29711914, 0.1083374, 0.040161133, -1.1621094, -0.62402344, 0.049591064, -0.07739258, 2.5019531, 0.37475586, 1.2490234, 1.6367188, -0.82373047, 1.4472656, -1.8837891, 1.2285156, -1.2822266, 0.019317627, 1.5751953, 0.92871094, 1.2529297, -1.0107422, -2.0703125, 0.8857422, 0.64697266, 0.7290039, 0.7705078, -0.54052734, 0.64697266, -0.7553711, 0.08898926, -1.4892578, 0.7626953, -0.37841797, 0.54003906, 0.93408203, -0.97802734, 2.0644531, -0.40478516, -0.3371582, 2.1152344, 0.5078125, 0.5986328, 1.3398438, -0.9160156, 2.2851562, -3.3691406, 0.55908203, 1.3134766, 2.4277344, -0.06964111, -1.3876953, 0.91748047, 2.9921875, -0.5776367, 0.47827148, 2.546875, 2.2910156, -0.43066406, 3.2773438, 0.1541748, 0.09680176, -0.4165039, 0.03286743, 0.07678223, 0.18981934, 1.375, -0.3203125, -0.91796875, 0.5175781, -1.0341797, -1.1855469, 0.11627197, 0.05154419, -1.6396484, 0.28686523, 1.1728516, -2.2285156, -1.734375, 3.5917969, -2.0625, -0.6411133, 2.3710938, 0.83447266, 1.5791016, -0.88671875, -0.3815918, -0.85546875, 0.28808594, -1.1601562, 1.3808594, -0.016937256, 0.67529297, 0.81933594, -2.2324219, 1.9912109, -0.890625, 0.5708008, -0.81152344, -3.0742188, -1.1513672, -0.19934082, -1.8408203, -0.004211426, -1.3525391, -2.9257812, 1.1035156, 1.8339844, -0.7426758, -1.1044922, 1.1962891, -0.99853516, -1.1855469, 0.7480469, 1.7978516, -0.85595703, -3.9394531, 0.5600586, 0.1439209, -1.6435547, 0.3400879, -1.4814453, 0.8491211, -0.3095703, 0.69384766, 1.5107422, 0.06298828, -0.8022461, -1.109375, 0.6826172, -4.1679688, 0.8232422, -2.0019531, 0.7763672, -2.9003906, 0.033966064, -1.2519531, -2.5898438, 1.5673828, -1.03125, 4.8085938, 0.9794922, 1.734375, -1.4746094, -1.6103516, -0.65478516, -1.1542969, -2.2929688, 0.008285522, 1.5195312, -1.3867188, -1.2607422, -5.0039062, -0.40307617, -2.2597656, -0.71240234, 0.6723633, -0.5097656, -1.5712891, -0.3720703, -0.99072266, -2.2480469, -1.3398438, 0.9326172, 0.8666992, -3.1113281, -1.0986328, -1.2275391, -0.7089844, 1.2822266, -0.7675781, 1.1103516, -1.8193359, 0.5234375, 0.32299805, -0.87597656, 2.4785156, 0.10675049, -2.7382812, 0.7441406, 3.8222656, -0.18652344, 2.4414062, -1.2929688, -0.7553711, -1.2773438, 0.5263672, 1.2998047, 1.9619141, 1.4326172, 1.5888672, 0.090148926, -0.057922363, -0.18835449, -0.06817627, 0.62646484, 1.9257812, 2.6054688, -0.49121094, -0.027801514, 1.3789062, 2.75, -2.9765625, -0.43481445, 0.26391602, -0.26391602, 2.8183594, 0.32470703, -1.8789062, -0.98291016, -0.13830566, 1.7890625, -0.5024414, 1.3808594, 0.6308594, 0.124572754, 1.5263672, -0.48999023, 1.3603516, 2.9453125, -0.017028809, -0.47827148, 3.3066406, 1.0048828, -1.2363281, 0.08905029, 0.14343262, 0.4333496, -0.3515625, 2.6015625, -0.3972168, 1.0126953, 0.0022201538, -0.85595703, 1.1132812, -2.0117188, 0.7006836, 1.0429688, 1.0400391, -0.49047852, -1.2363281, -2.171875, -0.8442383, -2.546875, 1.2080078, 0.2709961, -0.32373047, 1.203125, -2.6816406, -0.53271484, -2.3515625, 2.3925781, -0.23034668, -0.8652344, -0.15539551, 1.5976562, -3.2988281, -2.7285156, -0.7558594, -0.4970703, -0.9511719, 2.8730469, 2.2578125, -2.1894531, 0.8232422, -2.2050781, 1.7216797, 2.1503906, 0.0032367706, 0.21130371, -0.42041016, -0.7963867, -1.8300781, -0.022338867, 0.90478516, 1.1748047, -3.5097656, 0.43823242, -0.20446777, 1.3632812, 2.1601562, 1.4814453, -0.80859375, -0.13879395, -0.7373047, 1.9443359, -0.20239258, 2.8066406, 1.0605469, 0.28076172, 0.54248047, -1.9912109, -0.36450195, -0.36083984, -2.0976562, -0.8491211, -0.55126953, -0.39379883, 3.8671875, -1.1748047, 0.59277344, -0.33642578, 0.9770508, -2.7675781, -2.1699219, -1.921875, 0.96484375, -1.5087891, -1.8115234, 1.1943359, 0.1381836, -2.8027344, -2.0703125, 1.6162109, -1.2324219, -0.27392578, -1.0927734, 0.2512207, 1.0068359, -0.8574219, -0.87402344, -2.2324219, -0.68847656, -0.12054443, 0.24804688, -1.1601562, -1.6132812, 2.8027344, -0.018722534, -0.3400879, 0.796875, 2.7148438, 0.9863281, -0.85546875, -0.10687256, -1.15625, 1.1162109, -0.8144531, -3.5722656, 0.5839844, -1.1367188, 1.6230469, -0.60302734, -1.9072266, 1.3320312, -0.38378906, 1.1962891, 1.6650391, 1.7138672, 1.1582031, 0.34594727, -3.1113281, 2.4160156, -0.8310547, -1.0556641, -1.53125, -1.2714844, -0.36279297, -0.18127441, -1.0087891, -2.5019531, 0.40234375, 0.60498047, 1.0205078, -1.5703125, 1.4433594, 2.7070312, 2.9257812, 0.81396484, -1.0615234, 0.1496582, 0.7363281, 1.3974609, 0.40820312, 0.19909668, 0.6113281, 0.59521484, 1.2724609, 0.94873047, -2.6855469, -0.1986084, -0.54541016, -1.2304688, -0.29541016, -0.0736084, 1.2119141, -1.7529297, -0.6958008, -1.2099609, -2.046875, 4.5507812, -1.8339844, 1.0302734, -0.46240234, -1.6699219, -0.7607422, 3.5410156, 1.9013672, 1.6816406, 1.6542969, -0.65722656, -1.2734375, -0.05770874, 1.0224609, 0.54003906, 1.7167969, -1.9033203, 0.22570801, 0.55126953, 1.9921875, -0.3569336, -0.49365234, 1.2080078, 2.8222656, 0.91503906, 1.2392578, 1.3261719, -0.7421875, 1.2128906, 0.37426758, -1.0332031, 0.31152344, 0.39404297, 0.92529297, 3.1523438, -1.3632812, -1.8125, 0.7758789, 0.20349121, -1.2441406, 2.1875, -0.61083984, -2.7460938, 0.62109375, -2.8203125, -3.0234375, -0.09240723, -0.8339844, -1.9462891, -0.3930664, 1.7363281, 0.41625977, 1.1416016, 2.0429688, 0.7314453, -2.1328125, 1.1748047, 0.76464844, 1.1972656, -1.9130859, -0.6220703, -3.5507812, 0.3569336, -0.74658203, -0.26000977, -0.24560547, 0.4897461, 2.4335938, -1.8691406, -1.3720703, -0.30859375, 1.9130859, -1.6044922, -0.025268555, 2.7753906, -0.7167969, -0.27856445, -0.52783203, -0.60791016, -0.47094727, 1.8232422, 1.3125, 2.0625, 0.6381836, -0.49975586, -4.5898438, -5.1953125, -1.3652344, 0.49829102, -0.82666016, 0.93066406, -1.1699219, -1.6083984, 0.7783203, -1.3105469, 0.44458008, -1.6884766, 0.59716797, -0.29736328, -1.3789062, -0.7324219, -0.52783203, -0.17370605, 1.3916016, -0.54541016, -0.3786621, -1.4892578, -2.5507812, -2.3789062, -0.12023926, -1.6210938, 1.2167969, 1.2275391, -0.38623047, 0.953125, -0.05053711, 1.5029297, 0.27978516, 0.87060547, -1.9287109, -0.67626953, 2.0585938, -1.6728516, -0.31640625, 1.5234375, -0.6904297, 2.7792969, 1.6542969, 2.2578125, -2.3847656, 0.033966064, 0.66503906, 1.0351562, -0.15820312, 0.41259766, 1.6904297, -0.15307617, -0.0904541, 1.9921875, -0.23266602, -1.1660156, -1.0996094, -0.28173828, -0.61621094, -0.97509766, -0.8232422, -1.5117188, 0.32128906, 0.9526367, 1.2265625, 0.37524414, 0.9169922, 0.2668457, -2.1425781, 2.5625, -1.8671875, 2.3105469, 1.3759766, -1.8242188, -0.99121094, -3.453125, 3.2636719, 2.2851562, -1.9316406, -0.02281189, 0.37060547, 0.4790039, 1.8427734, -0.61621094, 1.2333984, 1.171875, 2.4550781, -1.4208984, 1.4560547, 2.140625, -0.24279785, 1.1455078, 0.13977051, 0.82177734, -0.22216797, 0.17919922, 0.51220703, -3.453125, -0.8647461, -0.2232666, 0.47753906, 0.21472168, -0.84716797, 0.010314941, -2.03125, -0.083496094, -1.4599609, -2.0722656, -3.7675781, 1.8574219, 0.87060547, -0.20678711, 0.9394531, 1.5595703, -0.8305664, 0.52490234, 1.0019531, -0.1459961, -2.5625, -1.4726562, -1.5644531, 0.9536133, 1.5273438, -1.8007812, 1.6416016, 0.6694336, 1.1376953, -0.6196289, 1.46875, 0.54833984, 0.79833984, 0.8046875, 2.2734375, 3.8730469, 0.67626953, 1.5449219, 0.74316406, 0.6826172, 2.8964844, -2.0136719, 0.17468262, 1.5332031, 2.0136719, 1.8300781, -0.31762695, -0.3798828, -0.68652344, -0.93359375, -0.08526611, 2.0957031, 1.5859375, -2.3164062, 0.73535156, -0.18359375, -1.3408203, 2.1230469, 0.27661133, -2.2421875, -2.4921875, 0.05206299, 0.4729004, 2.640625, -1.0488281, 2.2675781, 0.72509766, -1.4160156, 1.8916016, -0.35424805, 0.9248047, -1.6318359, -2.8339844, -0.55126953, 3.2167969, 1.3652344, 2.2128906, -1.2451172, -0.16015625, -0.19165039, 0.28222656, 1.7734375, -1.1337891, 2.3066406, -1.0048828, 2.2011719, 2.09375, -1.7470703, -0.7050781, 0.13513184, -0.33325195, -4.140625, 0.8803711, 0.51416016, 1.1679688, -0.17089844, -3.5019531, -1.0585938, -2.4492188, 1.0478516, -2.6660156, -0.84277344, -0.58740234, -3.0175781, -0.054992676, 0.83251953, -2.6699219, 2.4511719, 0.2836914, 0.1784668, 2.8574219, 0.82910156, 0.26416016, 0.13354492, 0.48901367, 0.36547852, 1.0732422, -0.69970703, 1.5566406, 1.7958984, -2.2207031, -2.1328125, 3.4726562, 0.60009766, 1.0908203, 0.9794922, -0.4169922, 2.5625, 0.48242188, -0.86816406, 2.5, -0.30981445, 1.3476562, 0.2993164, 1.0341797, -0.115600586, -0.01713562, 0.03918457, 1.7832031, -3.4882812, 0.15270996, 0.37939453, -0.87353516, 0.69140625, 0.5390625, -1.0498047, -0.5332031, -0.36254883, 1.2871094, -2.7304688, -0.33081055, -3.1054688, 1.4667969, -0.6713867, -1.3974609, -0.35498047, 0.5673828, -1.7265625, -0.22705078, 0.44555664, 0.3256836, -0.57470703, -0.038635254, -0.7783203, -0.26635742, 0.9946289, 1.2207031, -0.028823853, 0.6972656, -1.28125, 0.05895996, -1.4013672, -0.8833008, 0.84228516, 2.4160156, 1.5478516, 0.3955078, 0.37036133, -2.1953125, -0.04473877, -2.8066406, 1.4765625, 0.062469482, 0.28833008, 0.49731445, 0.6694336, 2.5234375, -2.1621094, -1.1083984, -1.0957031, 1.2226562, 2.3378906, -0.54003906, 0.44555664, 0.90185547, 0.08972168, 1.0400391, 4.0429688, 3.4667969, -2.0058594, 0.5288086, 2.2832031, -2.6464844, -2.0019531, -0.28271484, -0.5415039, -0.27514648, 0.36621094, 2.6074219, 2.3808594, 0.8984375, 0.050720215, -1.4775391, -0.72802734]}, "B01MXN574C": {"id": "B01MXN574C", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

          High Quality
          The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

          Fit More Brands
          The barbecue grill cover fits many brands. The size is 72\u201d long * 26\u201d deep * 47\u201d high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

          Advantages
          1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
          2.The grill cover inside has a weather proof liner so you don't have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

          Easy to Install
          Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

          Package includes
          1*BBQ grill cover
          \nFeatures: Dimensions: This Homitt bbq cover measures 72\"L x 26\"W x 47\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHandles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "embedding": [0.6298828, 2.4550781, 3.3652344, -0.5786133, -0.3251953, 1.5849609, 1.1582031, -1.9589844, 1.2089844, 2.9355469, -1.0566406, 0.28393555, 0.91845703, -3.5957031, 0.52734375, 0.50927734, 1.2451172, 1.3173828, 3.9101562, -0.18774414, 3.0175781, -0.19714355, 1.765625, 0.54345703, -0.006641388, -0.9711914, 4.1171875, -2.2871094, -1.5537109, -0.41552734, 1.7773438, 0.13952637, 0.55322266, 2.8339844, -2.9824219, -1.6269531, -0.87353516, 1.1035156, -0.3076172, -1.0693359, -1.7246094, -2.4804688, 2.8554688, 2.5839844, -2.7890625, 1.0898438, -1.5703125, 1.2167969, -0.66015625, -1.5751953, 1.9013672, 2.734375, 1.3652344, 0.7216797, -2.4335938, 2.7519531, -0.1517334, -1.8466797, -0.47729492, -0.609375, 1.7998047, -1.3076172, -1.2685547, 2.0292969, -1.2724609, -0.23242188, 1.4541016, -1.1552734, 0.7631836, 0.4140625, 0.6738281, -0.14294434, -0.038330078, 0.6845703, 1.3134766, -0.44628906, -2.9453125, 2.5234375, 2.2480469, -1.3115234, -1.015625, 6.0351562, -0.8173828, -1.6210938, -0.16918945, -0.24597168, -2.6074219, -2.5136719, 2.5800781, -1.3554688, -0.28955078, 2.1113281, -2.8808594, -4.4453125, 0.1661377, -2.3710938, 3.1445312, 1.0605469, 2.453125, 1.0410156, -1.5527344, 0.22583008, -1.7939453, 1.8300781, -1.9648438, -2.3496094, 1.5195312, 0.7319336, -0.4621582, 0.074523926, -0.6074219, 0.3947754, -0.2475586, 1.0283203, 1.8935547, 0.4465332, -1.0253906, 1.3037109, 1.1552734, 2.4609375, 3.7792969, -0.94921875, -0.54248047, -1.3623047, 1.0039062, -1.1083984, 0.021850586, 1.2890625, 3.53125, -0.84033203, 1.5507812, -0.9472656, 2.0429688, -0.70166016, -0.5205078, 0.1282959, -1.9765625, -1.0712891, -3.6367188, 1.7509766, -0.74316406, -2.0527344, 2.09375, -1.6650391, -3.0410156, -0.056152344, -1.6669922, 1.9931641, -2.1679688, -3.0683594, 1.3291016, -1.9394531, 0.76660156, -1.5927734, 1.8037109, -0.53466797, 1.2470703, -2.4492188, 3.4296875, 1.9677734, 3.4238281, -2.2460938, 0.14282227, 0.56103516, 3.3496094, -3.0605469, -0.35791016, 1.6289062, 0.09283447, 2.0644531, 0.3334961, -1.5546875, 0.70703125, -0.028915405, 0.9213867, -1.078125, 0.98095703, 1.5390625, -1.3222656, -0.042175293, -0.5629883, -1.9335938, -0.10992432, 0.89501953, -0.98876953, -1.5332031, 0.15368652, -1.0488281, 0.53027344, -1.2490234, -1.0244141, -0.09051514, 0.80859375, 0.19055176, -1.6611328, -1.0351562, -1.8095703, -1.2851562, -0.02268982, 0.43017578, -0.6020508, -1.2626953, -1, -0.5917969, -2.6152344, -2.3085938, -0.7163086, 0.24121094, 0.28076172, 1.8330078, 0.48779297, -1.8261719, 2.6796875, 1.4501953, -1.2382812, -0.29882812, 2.8769531, -0.75439453, 1.7880859, 0.87890625, -0.66064453, 0.24023438, 1.03125, 4.515625, -0.74121094, 1.5878906, 1.1669922, 0.56689453, -0.9091797, -1.4521484, 0.4428711, 1.359375, 1.0048828, 0.5180664, -1.5214844, 1.6357422, -0.45385742, -2.140625, -0.038513184, 1.0712891, -1.828125, -1.5839844, -2.9375, -1.5703125, 0.5878906, 2.6699219, -0.71875, 0.4765625, 1.9648438, -1.1298828, -0.6333008, 0.7001953, 0.9082031, -0.3076172, -0.8857422, -0.16113281, 0.89208984, 0.22473145, -1.0146484, -1.9619141, 0.046966553, -1.5371094, -0.6298828, 1.7021484, -0.4453125, -1.0820312, 1.8457031, 0.55126953, -2.4433594, -1.5244141, 1.8115234, 0.16906738, 0.48950195, -1.6425781, 1.8222656, 0.25634766, -0.034240723, 1.7910156, -0.040405273, -0.3737793, 1.0605469, 2.1621094, 2.3828125, -1.1982422, 0.36767578, 0.8798828, 0.1928711, -1.6748047, 0.46191406, -0.18200684, 2.9433594, 0.15588379, -1.2314453, 3.1191406, 1.3310547, -0.25585938, 0.16479492, -1.5410156, -1.5458984, 0.6972656, -0.12646484, 1.2792969, 0.3083496, 1.8574219, -0.42822266, -1.1474609, -0.07196045, -1.71875, -0.25756836, 1.2275391, 0.29223633, -0.46850586, 0.5126953, 1.8652344, -2.3164062, -1.5195312, 1.984375, -2.3554688, -0.9296875, -0.037872314, -0.11102295, 0.28100586, -1.3964844, -2.1640625, -0.3256836, 0.49951172, -1.4472656, -0.14685059, 1.1220703, 0.28930664, -0.2788086, -1.8857422, 0.10632324, -1.1230469, -1.2783203, -2.4511719, -4, -2.1328125, -0.8203125, -1.8798828, -1.2099609, -0.27148438, -2.2363281, 2.8710938, 1.1152344, -2.5019531, -1.7070312, 1.2451172, -1.8115234, 1.6552734, -1.1816406, 0.10821533, 0.03717041, -4.6289062, 1.0517578, -0.0060043335, -0.43237305, 0.118896484, -0.7895508, -0.6982422, 0.54345703, 0.71875, 0.5683594, 1.1914062, 1.3339844, 0.85791016, 0.35791016, -4.0898438, -0.11395264, -1.8154297, -0.33569336, -3.0097656, 0.33935547, -3.3867188, -0.26831055, 1.1474609, -0.90234375, 2.03125, 0.4243164, 1.0185547, 0.7290039, -0.0072021484, 0.640625, -0.13085938, -2.046875, -0.4970703, 1.0224609, -0.67285156, 0.5517578, -4.1484375, -1.6953125, -1.4638672, -0.42163086, -0.19384766, -0.83496094, -0.45239258, 1.0205078, -2.453125, -0.91259766, -1.5214844, 0.9980469, 0.24658203, -0.8408203, -0.25390625, -2.6484375, -2.2871094, -1.0517578, -1.6396484, 1.8085938, -2.6933594, -0.061309814, 1.65625, -0.5957031, 2.9003906, -0.81396484, -5.4765625, 0.45141602, 2.0761719, -0.8466797, 1.578125, 0.15429688, -1.5839844, -0.7597656, -1.0390625, 1.9355469, 0.14611816, 0.12719727, 1.0205078, -0.07446289, 0.609375, 0.03274536, 1.84375, -0.36157227, 1.28125, 2.9160156, -1.5615234, -1.1191406, 1.1982422, 0.8300781, -1.859375, 0.6269531, 2.2578125, -0.45922852, 0.5698242, 1.2568359, 0.46948242, 0.040100098, -0.23425293, 1.3896484, -1.2988281, 1.2089844, -0.10595703, 0.37329102, 0.6542969, -1.1123047, 2.6328125, 1.9453125, 1.1162109, 1.0947266, 1.2001953, 0.5932617, 0.3022461, -0.101989746, 1.3808594, 2.0234375, -0.6826172, 2.0878906, -0.94921875, -1.3046875, 1.6474609, -1.4775391, 1.0068359, -0.84033203, -0.37475586, 1.9179688, -0.8647461, 0.13049316, -0.24731445, -0.19006348, -0.5053711, -1.5664062, -1.5087891, -1.5039062, -0.6640625, 0.5283203, -2.5195312, -2.1113281, -1.0732422, 3.7753906, -0.5932617, -1.3359375, -0.9433594, 1.9150391, -2.5449219, -1.25, -0.07928467, 2.1757812, -0.40356445, 2.4667969, 2.3300781, -2.0644531, 1.8300781, -2.8027344, 1.0517578, 1.2109375, -1.9042969, -0.15966797, 0.1282959, -0.24206543, 0.18054199, 0.984375, 1.3056641, 2.1464844, -0.7446289, -0.18676758, -3.2480469, 0.47436523, 0.17114258, -0.85302734, -0.47485352, 3.5175781, 0.54589844, 0.9008789, -1.4560547, 3.1074219, 0.38110352, -1.5283203, 1.8291016, -2.5214844, 0.65771484, -1.0830078, -5.1328125, -0.5722656, -1.1621094, -1.4375, 3.1523438, 0.6660156, 1.2119141, 1.125, 0.5878906, -0.9707031, -0.024475098, -2.8808594, -2.1738281, -1.5429688, -1.3222656, 2.3398438, 0.6171875, -2.7480469, -2.2617188, -2.59375, -2.0058594, 0.7128906, -0.6713867, -1.25, -0.4753418, -2.2402344, -0.20739746, -1.6669922, -0.5185547, 0.23339844, -0.36865234, -0.83203125, 0.42114258, 1.2509766, -1.8046875, 0.24328613, 0.7817383, 1.65625, -1.4902344, -1.8701172, 0.25756836, 2.0742188, 3.3769531, -0.8339844, -3.6132812, -1.3222656, -0.29052734, 2.6894531, 0.5878906, -1, -0.8027344, -1.375, 0.39868164, 0.77246094, 2.8222656, 1.3212891, -1.0605469, -2.3398438, 2.0214844, -0.9267578, -2.7285156, -1.9501953, 0.29858398, -0.53515625, 0.1595459, -2.2382812, -2.5761719, 1.9257812, -0.95214844, -0.14685059, -0.94921875, 3.6523438, 0.5888672, 1.5292969, 3.4863281, -1.7792969, -0.2668457, 1.5898438, -2.03125, -0.07611084, -0.6069336, -0.73779297, 0.62841797, 0.7426758, -0.5371094, -1.0175781, -0.32348633, -1.3378906, -0.5932617, -0.7915039, -1.8330078, 2.0527344, -0.73828125, -0.40551758, 1.9130859, -2.8398438, 3.6992188, -0.5908203, 0.2932129, 2.4609375, -2.0878906, 0.058013916, 1.0595703, 0.36254883, -0.19006348, 1.0908203, 0.9506836, 0.89990234, 0.9501953, -1.4423828, 0.5019531, 1.4433594, -1.9326172, 0.49121094, 0.72998047, 1.3554688, -0.47265625, -1.3925781, 2.5078125, 2.7089844, 0.038116455, 1.9960938, 0.4494629, -1.2929688, 1.6699219, 2.1855469, -0.74365234, -0.51416016, 1.6494141, -0.13256836, 2.671875, -1.5449219, -1.6220703, -0.86865234, 2.3164062, -1.4257812, 1.8144531, -0.44384766, -0.94189453, 0.84228516, -2.3046875, -0.45922852, -0.6557617, -1.3632812, 0.021972656, -1.4775391, 2.0488281, 0.75146484, 2.3769531, 3.4589844, -1.4140625, -2.9433594, 1.578125, -0.24914551, -0.4140625, 0.30932617, -1.2675781, -3.3964844, -0.15112305, 1.6630859, 1.0830078, 0.66748047, 0.875, 2.0742188, -1.9833984, 1.2158203, -0.03289795, 2.9628906, -2.3027344, -1.0234375, 2.9042969, -3.3964844, -2.4453125, -2.2773438, 0.31762695, 1.0214844, 1.1669922, 1.6757812, -0.14355469, -0.36523438, -1.1142578, -3.5605469, -1.9169922, -1.2285156, 0.49169922, -0.8642578, 2.3242188, -0.2783203, 1.0830078, -0.28588867, -0.50878906, 0.28051758, -0.99365234, 0.21484375, -1.6767578, -2.2851562, 0.15161133, -1.921875, -1.1455078, 2.5175781, 1.4355469, 1.6738281, 0.95703125, -3.4863281, -0.76123047, 0.8618164, -2.9472656, -1.3798828, 2.6113281, 0.48120117, 0.90771484, 0.5805664, -0.10784912, -0.65234375, 3.4257812, -0.70410156, -0.7109375, 1.9042969, -0.37182617, -0.17260742, -1.5019531, -1.546875, 0.97753906, -3.1289062, 1.6962891, 0.37182617, -1.0205078, 1.7226562, 1.7929688, -2.4667969, -0.64746094, 1.4765625, 1.5976562, 2.328125, 0.26171875, -1.3671875, 0.1854248, -1.3408203, -1.390625, 0.051574707, -2.5761719, -1.3935547, -1.2001953, 0.7363281, 1.4296875, 1.6923828, 1.7958984, 0.10180664, 1.7822266, -1.7519531, -1.2910156, 0.7319336, 2.3007812, 1.0019531, -2.5957031, -0.7495117, -0.9423828, 0.5996094, 1.0986328, -0.23522949, 0.38330078, -0.14440918, -0.9902344, -0.20751953, 0.5961914, 0.43041992, 1.4316406, 1.6572266, -0.15307617, 0.81152344, 2.6679688, -0.6801758, 1.3515625, 0.70410156, 1.1064453, -1.3554688, 1.4716797, 0.07006836, -3.1582031, -1.9345703, -0.7524414, 0.69873047, 0.4116211, -1.0048828, -0.29858398, -2.25, -0.9604492, -2.2832031, -2.1230469, -4.2734375, 0.81103516, -0.111572266, -0.30444336, 0.13586426, 3.2675781, 1.1611328, 3.515625, 1.4003906, 0.010231018, -0.46142578, -0.96484375, -0.9248047, -0.93359375, 1.0322266, -1.6455078, 0.61328125, -0.17382812, 0.34399414, -2.2695312, 1.3027344, 0.3623047, 1.0546875, 0.40307617, 2.8535156, 3.03125, 1.6582031, 2.1171875, 0.3046875, 1.0507812, 1.2285156, -0.8457031, 0.75390625, 2.4863281, 1.5166016, 3.3925781, 0.24511719, 1.0957031, 1.0712891, -1.7216797, 1.0527344, 1.3310547, 2.1230469, -3.1074219, 1.1455078, 0.5517578, 0.96240234, -0.92285156, 1.1855469, -1.8681641, -1.7050781, 0.27685547, -0.17675781, 3.5957031, -0.19042969, 0.26538086, 1.1220703, 1.9316406, 2.4921875, -3.0644531, 1.7822266, 2.4785156, -1.6025391, -1.7480469, 0.9067383, 1.8193359, 1.7978516, -0.06939697, 0.20568848, 1.7324219, 2.0039062, 0.83496094, -1.84375, 1.1953125, -0.20629883, 2.1132812, 0.69873047, -2.6972656, -1.2509766, -0.9472656, -1.8476562, -2.9414062, 1.2158203, 1.6552734, 1.6230469, 1.1308594, -4.7617188, 0.92578125, 0.6225586, 2.0605469, -1.3505859, -0.027786255, -0.49145508, -1.2255859, -1.8310547, 1.2539062, -1.984375, 1.7666016, 0.6533203, -2.3515625, 2.9414062, 1.3193359, 0.88183594, 0.6323242, 1.9853516, 0.09686279, 0.734375, 0.14379883, 1.2666016, 1.1943359, -0.28393555, 0.23693848, 2.8222656, 1.1679688, 1.6152344, 2.0273438, -0.6166992, 0.94140625, 2.6953125, 1.1728516, 2.0507812, -0.28344727, -1.0791016, -0.6582031, 1.1259766, -0.8964844, -2.1582031, 3.3613281, 2.6992188, -0.35791016, 1.7119141, 1.2275391, -0.63916016, 1.4550781, 0.8100586, -0.484375, -0.18530273, -0.55371094, 0.70166016, -1.0488281, -0.8964844, -1.4150391, 1.5869141, -0.023727417, -2.3339844, 0.101623535, -0.006904602, -0.5571289, -0.5776367, 0.95654297, -1.3291016, -0.72998047, -0.6020508, -0.34960938, 0.24328613, 1.9931641, 1.59375, -1.859375, -1.9355469, -2.1601562, 0.10083008, -1.5615234, -3.0195312, 2.3828125, 4.5039062, 0.96728516, -1.8896484, -1.6884766, -1.8203125, -0.2705078, -1.5722656, 1.0410156, 0.94140625, 0.009864807, -0.10491943, 0.9003906, 2.2460938, -0.2722168, -1.5927734, -0.49145508, -0.6459961, 1.6728516, -0.50341797, 1.0371094, -0.98339844, -0.059326172, 0.10638428, 1.8994141, 3.2675781, -0.36743164, 1.3291016, 3.2636719, -0.4128418, -3.1875, 0.51660156, 1.9208984, 1.5341797, 1.2207031, 1.5341797, 1.3603516, 0.8515625, -0.25439453, -0.9423828, -2.1835938]}, "B000WB2BH2": {"id": "B000WB2BH2", "original": "Brand: GasOne\nName: Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A\nDescription: \nFeatures: Regulator and hose ready to use\nHose length: 150cm (59in)\nConnecting outlet: 5/8\" Unf\nIncompatible with Bunsen burner\n", "embedding": [-1.3134766, -0.3100586, 0.46166992, -0.1060791, -0.32299805, 0.42651367, 1.5068359, -1.2255859, 0.92529297, -2.2773438, 0.13256836, 0.6538086, 0.93896484, -1.4970703, 2.8632812, -0.69091797, 1.7607422, 1.7919922, 1.6845703, 0.39453125, 0.53564453, -0.9316406, 2.5585938, -1.0117188, 0.5463867, 0.18652344, 4.171875, -2.8574219, -1.2617188, -1.1455078, 1.2177734, 2.6113281, -0.42504883, 1.4238281, -2.4296875, -1.8212891, 0.054504395, -0.4428711, -3.8222656, -1.6630859, -1.3955078, 2.0390625, 0.89160156, 0.6147461, -2.1660156, 0.16186523, 0.56152344, 0.17553711, -0.27270508, 0.07879639, 2.0488281, 0.9267578, -1.3964844, -0.07739258, 0.83154297, 0.8261719, 0.8339844, -2.9199219, 0.8300781, 0.51220703, 2.2285156, 0.82714844, -1.9667969, -1.25, -2.3066406, 1.2412109, 0.54785156, 0.9370117, -0.57470703, 0.3774414, 1.0644531, 0.91064453, -0.13500977, -0.39257812, -1.4101562, 0.39086914, -4.1757812, -0.37573242, 2.3867188, -1.8603516, -1.0722656, 2.0664062, 1.5390625, -1.5634766, 0.69433594, -0.63671875, -1.6992188, 0.2788086, 1.5751953, 0.7504883, -3.1015625, 3.6425781, -2.859375, -2.5664062, 1.5117188, 0.7211914, 0.49853516, 3.0917969, 1.8349609, -0.101135254, -2.3847656, -1.2509766, 0.41430664, 0.1895752, -0.44091797, -2.0488281, 0.78759766, 1.0957031, -2.6640625, 0.06451416, -0.45898438, -1.5742188, 1.3691406, -0.5209961, 1.1513672, -2.0019531, -1.1572266, 1.3857422, 2.4414062, -0.0748291, 3.2304688, -0.16894531, 1.0205078, -0.07885742, 0.9501953, -1.0771484, -1.2011719, 0.70703125, 3.0761719, -0.13378906, 0.72265625, -1.90625, 2.3144531, 0.019180298, 1.0947266, -2.3769531, -0.9165039, -4.390625, -0.9121094, -0.9111328, -2.625, 0.87646484, 1.1005859, -0.8461914, -4.1171875, 0.9536133, -3.7519531, 1.3193359, 2.2402344, -2.7988281, 0.72314453, -2.0253906, 0.9511719, -1.8867188, 1.4326172, 0.30517578, 0.3581543, -1.4072266, 3.2265625, 2.53125, 0.83691406, 1.1083984, -1.4775391, 1.7011719, -1.2636719, -2.234375, 0.79052734, 0.4506836, -2.3046875, -0.18029785, -0.9013672, -1.8388672, -0.9951172, 0.11755371, -0.47851562, -1.0722656, 1.6191406, 2.1738281, 1.5039062, 0.5654297, -3.7558594, -3.1640625, -0.37768555, -2.1660156, 1.3525391, 0.091552734, -1.2998047, -1.2841797, 1.8671875, -0.13830566, -0.52783203, -1.5009766, -1.0751953, 1.5185547, -0.7714844, -2.4550781, -3.6914062, 1.09375, -0.20837402, 1.9609375, -0.90185547, -0.58984375, 1.8320312, 0.74072266, -0.98535156, -2.3925781, 0.5854492, -1.5996094, -0.66845703, 1.2373047, -0.9267578, -0.11755371, 1.2773438, -0.6870117, 0.64697266, -1.2333984, 3.7421875, 2.6914062, 0.9897461, 1.5, -0.1586914, -0.37939453, 0.76464844, -0.31469727, 1.1162109, 0.6503906, -0.13745117, 0.734375, -2.2226562, -1.1132812, 2.3339844, 1.9902344, 1.046875, 0.7553711, 1.3789062, 1.7011719, -0.49169922, -0.69873047, 1.0234375, 1.5498047, 1.0361328, -2.0644531, -3.0839844, -1.4365234, -0.97314453, 1.4599609, -0.6333008, 0.19567871, 1.8105469, -0.7446289, 1.1865234, 0.69140625, -1.2363281, -1.0019531, -2.5664062, -0.6035156, 0.25732422, 2.8007812, -0.0054397583, -0.3256836, 2.1601562, 0.4650879, 1.4257812, 2.3847656, 0.49804688, -1.0488281, 1.9863281, -1.2148438, -1.5673828, -0.92871094, -2.6054688, 1.9492188, 3.1953125, -0.2890625, 1.6083984, 1.4511719, -2.921875, 1.3759766, -0.05557251, 1.1152344, 0.14538574, -0.9291992, 2.1972656, -2.3085938, 1.8037109, 0.7841797, 0.9946289, 0.7270508, -2.4023438, 0.9995117, 3.3222656, -0.24853516, -2.7128906, 2.6347656, 1.1845703, -0.19970703, 0.15393066, -0.56591797, 0.87841797, -0.20947266, 0.671875, 1.3710938, 0.035858154, 1.8320312, 2.1347656, 1.0068359, -1.8398438, -1.2265625, -0.13220215, -0.050476074, -1.1875, -0.61572266, 0.11047363, 1.875, -1.9570312, -1.6542969, 0.71484375, -1.8496094, -1.140625, 0.05001831, 0.5859375, 1.4394531, 0.26391602, -2.1464844, 0.72558594, 0.7558594, -0.5800781, 0.56152344, 1.1240234, 0.1932373, -0.5341797, -1.1025391, 0.10809326, -1.8320312, -1.6308594, 1.0429688, -1.9404297, -3.0761719, 0.92333984, -1.9394531, -2.7851562, 0.73046875, -0.9980469, 3.6699219, -0.72265625, -0.5317383, -2.1054688, -0.21557617, -1.5292969, -0.2763672, 0.9033203, 2.3574219, -0.14819336, -2.0371094, 0.57666016, 0.15478516, 0.35180664, 1.7294922, -0.8857422, 0.2841797, 2.4082031, -0.6538086, -1.171875, 0.046417236, 0.035217285, -1.9990234, 1.9638672, -3.6738281, -1.1640625, -0.08453369, 1.1787109, -0.02772522, 0.73095703, -2.6914062, -1.8007812, 0.94677734, -1.2412109, 1.9931641, -2.2871094, 1.8291016, -0.42700195, 0.06341553, 1.8242188, -2.5234375, -2.3769531, 0.796875, 0.7910156, -1.3193359, -1.46875, -3.4160156, 0.5234375, -0.6357422, -0.34545898, -1.3046875, -0.58251953, -1.2666016, 0.6201172, 0.6040039, -1.7060547, -0.40014648, 1.6064453, -0.08428955, -1.6289062, -0.61572266, 0.45703125, -1.3662109, 0.2529297, -1.0292969, 0.62890625, -0.53808594, -1.5185547, 0.8745117, 0.4152832, 0.22717285, -0.69091797, -2.4179688, 0.54833984, 1.0791016, -1.3320312, 1.71875, -2.1171875, -0.017425537, -2.4453125, -1.3125, 2.7617188, 0.0021629333, 2.65625, 0.114990234, 0.039764404, 1.0400391, 0.91552734, -1.7011719, -0.16064453, 0.93408203, 3.8867188, -2.609375, -0.21105957, -0.37597656, -0.3881836, -3, -0.24633789, 2.4960938, -0.04989624, 2.3535156, 0.57958984, 2.2050781, -1.3701172, 1.2861328, 1.921875, 0.004966736, -0.20239258, 0.5942383, 1.3525391, -0.9682617, -1.2294922, 2.0664062, 0.8466797, 1.6787109, 2.1777344, 0.20983887, -0.79296875, -1.0566406, -0.26953125, -0.012908936, 1.2119141, 0.0031967163, 1.6855469, 0.28808594, 0.07208252, -0.25463867, -0.07348633, 1.6777344, -2.6621094, -0.43676758, 1.1806641, 0.19458008, 0.31713867, 0.72265625, -0.7246094, -0.6411133, 0.09643555, -0.53759766, 1.1191406, 0.41259766, 1.6191406, -0.27392578, 1.9082031, -1.2246094, 1.6181641, -0.77490234, 0.6484375, -0.5229492, 1.5390625, -2.6640625, -1.3144531, -1.1152344, -3.6953125, 0.20043945, 2.0917969, -0.01965332, -2.6347656, 2.0390625, 1.0742188, -0.32543945, 2.0136719, -1.3046875, -0.46411133, -0.5961914, -0.9716797, -0.27197266, 0.35888672, 2.5585938, -1.5761719, -3.6074219, 0.8095703, -1.9570312, -1.2480469, 0.4350586, -0.09649658, -3.2304688, -1.3212891, -1.2753906, 0.9863281, -0.9946289, 3.5371094, -0.4169922, -0.0836792, 2.2949219, -2.4570312, 0.2019043, -1.4667969, -5.3398438, 0.5957031, -3.8789062, 0.6196289, 2.0859375, 1.2802734, 0.40112305, 1.7382812, 1.2470703, -2.1640625, -0.91748047, -0.19433594, 0.8691406, -3.2285156, -1.6181641, 2.0488281, 1.3623047, -1.2939453, -3.0058594, -0.95703125, -0.16467285, -0.35180664, 0.8261719, -3.2734375, -0.57128906, 0.46044922, 0.76416016, -1.6816406, -1.0380859, 1.0634766, 0.29492188, -0.60546875, -3.1621094, 2.1816406, 0.76220703, 1.5751953, 0.036193848, 4.4179688, 1.5107422, -1.2617188, 0.9824219, 0.25512695, 3.1738281, -0.34838867, -2.4609375, -1.34375, 1.0957031, 1.0644531, -1.0488281, -1.7392578, -1.796875, -1.2402344, 0.56396484, 0.4321289, 1.6611328, 0.3059082, 0.7109375, -1.4277344, 1.9150391, 0.71240234, -1.1533203, -0.8173828, -1.1152344, 0.39379883, -1.4316406, 1.3300781, -2.9726562, 1.1474609, -0.88916016, -0.057006836, -2.9082031, 0.16259766, 0.25170898, -0.7182617, 0.28393555, -1.4599609, -0.4716797, 0.8359375, 0.37402344, -0.4724121, -0.8334961, -1.5166016, -0.5019531, 1.7285156, 1.5058594, 0.15405273, -0.016616821, 0.26220703, -0.0413208, -0.06903076, 0.25341797, 0.97802734, 0.61279297, -1.7109375, -1.4316406, -1.4316406, 3.3476562, 0.2133789, 0.5551758, -0.030014038, -0.4765625, -2.234375, 2.0800781, 3.3710938, 2.2460938, -0.4489746, 1.21875, 2.4335938, 3.1230469, 1.1962891, 0.19958496, 0.5522461, -0.9736328, -0.9003906, 0.76660156, 0.8691406, -1.1669922, -1.0439453, 1.4648438, 2.6972656, 0.95947266, 2.453125, 0.89501953, -1.9023438, 0.30566406, 0.48461914, -0.578125, -1.7558594, -0.3466797, 0.28564453, 3.4667969, 0.3918457, -1.8740234, 0.96972656, 2.8984375, -0.4038086, 2.2539062, 0.48413086, 0.2010498, 0.3857422, -2.0527344, -1.0527344, -1.4355469, -0.76220703, 0.8823242, -2.8984375, 2.1972656, -0.31420898, 1.625, 0.7192383, 0.40112305, -0.35986328, 0.007801056, -0.8779297, -0.081970215, -0.76123047, 0.06713867, -1.6142578, 0.50439453, 0.73095703, 1.3378906, 0.86376953, -1.1113281, -0.6220703, -1.2421875, -1.5458984, 0.44848633, 1.6259766, -0.79785156, -1.6347656, 4.171875, -0.10290527, -0.14001465, -1.4814453, -0.7675781, -0.23913574, 3.8710938, 1.3828125, 1.78125, -0.37646484, -0.30371094, -1.1044922, -4.125, -0.46264648, -0.44018555, -0.22192383, 1.0664062, -2.9648438, -1.265625, 2.2578125, -2.3125, -0.91064453, -2.078125, 0.07623291, -1.9326172, 0.02961731, -0.8378906, -1.5322266, -0.8569336, 0.7548828, -0.08660889, 0.21948242, 0.25024414, -1.9853516, -2.4101562, 1.0117188, -0.09069824, -1.6650391, 1.8457031, -1.1640625, -0.27172852, 1.6738281, 0.72558594, -3.0449219, 1.5244141, -3.2148438, -0.8535156, 1.6826172, -2.3398438, 1.7773438, 1.4599609, -1.1748047, 2.1484375, 0.86621094, 1.8740234, -0.010498047, -1.8955078, 1.7490234, 1.0283203, 0.1307373, -2.0839844, 1.4746094, -0.9536133, 0.62158203, 1.9404297, -0.91064453, -1.5205078, -0.7861328, -1.0820312, -0.08679199, -1.4570312, 0.08898926, 1.2470703, 0.37670898, 0.1829834, -1.4042969, 0.5419922, 1.0361328, 0.60058594, 0.72265625, 1.2939453, -1.1328125, 2.7617188, 1.9003906, -0.1821289, -0.84814453, -0.24609375, 0.88964844, 3.6699219, -1.5332031, 0.78271484, -0.7817383, -1.4248047, 0.2722168, -0.6948242, 0.88916016, -0.01852417, 2.8632812, 0.026672363, -0.04989624, 2.40625, -1.2744141, 0.90722656, -0.47436523, 0.02381897, -0.79296875, 1.5576172, 2.1640625, -3.2714844, -0.36254883, -1.2060547, 3.2207031, -0.29418945, -1.4824219, 0.5131836, -1.7470703, 0.06286621, -0.25512695, -1.0332031, -3.4980469, 0.82373047, 0.82714844, -1.6181641, 0.8520508, 1.5615234, -0.10418701, 0.7788086, -0.50878906, 0.71728516, -1.8691406, -0.5073242, -1.5322266, -0.020141602, 0.40893555, -1.4023438, -0.44091797, 3.0449219, 0.6982422, -1.0664062, 0.6923828, -0.34545898, 1.9921875, 1.2285156, 0.6635742, 3.2558594, 0.09918213, 2.2070312, 1.0507812, 2.7304688, 1.7900391, -1.0634766, 0.625, 1.8642578, -0.0058174133, 1.3857422, 0.859375, -0.7036133, -1.2470703, -0.35253906, 0.52441406, 1.8115234, 0.86572266, -3.2480469, -0.017700195, -1.3535156, 0.86035156, -3.25, 0.4765625, -1.9248047, 0.24475098, 2.1796875, 0.30688477, 1.3632812, 0.9140625, -2.0429688, 0.6166992, 0.29248047, 2.4082031, -0.30371094, 0.06817627, 0.57421875, -2.4804688, 0.6279297, 0.70703125, 0.30615234, 1.2861328, 1.6416016, 0.22143555, -0.27661133, 2.0273438, 0.8769531, -3.15625, 0.3256836, 0.44213867, 2.3378906, 1.34375, -0.7895508, 2.0390625, 0.39257812, -1.5390625, -4.515625, 3.1230469, 0.23425293, -0.5449219, -1.2832031, -2.6738281, 1.4072266, -2.1347656, -1.796875, -2.34375, 0.13647461, 1.4775391, 0.14453125, -0.6503906, 0.96728516, -2.2304688, 2.3027344, 1.7275391, -0.6748047, 1.5703125, 2.9375, 1.6884766, 0.40551758, 1.2392578, 0.26049805, 0.57177734, -1.2597656, 2.7382812, 0.06561279, -0.47680664, -0.041229248, 2.7128906, 0.9272461, 0.5527344, 0.42529297, 1.2099609, -0.1739502, 2.1953125, 0.12432861, 0.19677734, -2.0371094, -0.036254883, -1.6826172, 0.1854248, -1.3789062, -0.5053711, 3.3007812, 1.5009766, -1.0341797, 1.3955078, 1.5507812, -1.7167969, 3.4355469, 0.087890625, -0.9589844, -0.45825195, 0.40478516, 0.07714844, -2.5546875, -1.0693359, -1.1308594, -0.42700195, -1.4794922, -0.5576172, -1.6210938, -0.014228821, -0.9951172, 0.2680664, 0.609375, -2.2519531, 1.0634766, 0.037322998, -0.70947266, 0.55126953, 3.1582031, -0.93066406, 1.9833984, -1.7421875, -0.2685547, -0.3203125, -1.0351562, -1.1669922, -0.10821533, 3.4980469, 0.7915039, 1.8105469, -1.8955078, -2.7441406, -1.0146484, -2.1796875, 2.0078125, -0.7055664, -0.20666504, 1.2636719, 1.4453125, 2.1484375, -0.35424805, -0.119140625, 0.19921875, -0.3955078, 1.7441406, -0.515625, 1.8251953, -0.64160156, 0.52197266, 0.84277344, 3.390625, 1.7919922, 0.095458984, -0.9819336, -0.20715332, -1.4072266, -2.0488281, 0.63183594, -0.5229492, 0.609375, 1, 0.515625, 2.2226562, 0.45361328, -1.4296875, 0.19458008, -0.14294434]}, "B00D3P0QAI": {"id": "B00D3P0QAI", "original": "Brand: Thermo Tiki\nName: Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel\nDescription: \nFeatures: \n", "embedding": [-0.9790039, 0.40551758, 2.7578125, -3.2929688, 1.0175781, 0.19885254, 0.46411133, -3.1132812, 2.2226562, 1.5908203, 1.0908203, 1.1318359, -0.6123047, -2.6132812, 2.1464844, -0.060455322, 1.2099609, 1.1259766, 0.94628906, 0.3515625, 2.1894531, -0.65478516, -0.25219727, -2.4628906, 1.7197266, 0.08514404, 6.6289062, -2.8261719, -0.17333984, -0.83447266, -0.04321289, 1.5136719, 0.91552734, 3.328125, -1.5458984, -1.5634766, -0.3227539, 0.83154297, -3.3886719, 0.7583008, -1.4511719, -1.0439453, -0.49975586, 1.8378906, -2.3886719, -1.0683594, 0.21411133, 0.9790039, -1.7363281, -0.51660156, 0.46362305, 0.27197266, -0.46899414, 0.43579102, -1.6035156, 0.3869629, -2.1289062, -1.9091797, 1.1318359, 1.0634766, 0.022613525, -1.8955078, -1.7431641, 1.4697266, -0.39868164, 1.8623047, 0.00048828125, -0.79541016, -0.7709961, 1.0390625, 1.4238281, 0.23901367, -1.2861328, 0.65478516, 0.9272461, -2.3046875, -4.203125, -0.22998047, 3.1132812, -1.6621094, 1.6748047, 0.8144531, 1.4726562, 0.13024902, -0.41333008, -0.6933594, 0.06512451, -0.4099121, -0.15075684, 1.7441406, -2.0644531, 0.86621094, 0.7709961, -4.3359375, -0.7060547, -0.27612305, 0.48901367, -0.0074882507, -0.8022461, 0.35009766, 1.6748047, 0.9838867, 1.3183594, -1.5703125, -1.5654297, -0.8154297, 1.9892578, 0.2529297, -1.2421875, 0.9980469, -2.8066406, -1.6953125, 1.4921875, 0.2434082, -0.49389648, 1.3759766, 1.0595703, 1.7216797, 2.7304688, 1.5439453, 4.453125, -1.2958984, 0.5161133, -1.0712891, 0.69433594, 0.4897461, -0.41479492, -0.5439453, 3.5078125, -2.4003906, 2.8046875, 1.3867188, 0.79003906, -0.35351562, -0.8623047, -2.109375, -2.3808594, -2.1523438, -2.546875, -1.9160156, -0.78515625, 0.49121094, 2.1503906, 0.22180176, -3.8183594, -0.5229492, -0.12890625, 2.5839844, -0.8852539, -1.8369141, 0.45922852, -0.4182129, -0.113708496, -1.3671875, -0.15197754, 0.85546875, -0.77490234, -1.0439453, 2.8046875, 1.2470703, 1.1767578, 0.7705078, -1.0625, 0.81640625, -0.8232422, -0.87353516, 0.7480469, 0.06854248, 0.53759766, 1.6347656, -0.37573242, -1.7607422, -0.20043945, -0.91308594, 0.34204102, -0.68408203, -0.064697266, 1.40625, 0.20471191, 1.0654297, 0.082214355, -0.3166504, 0.036132812, 0.5395508, 0.22924805, -1.9140625, -1.625, -2.9628906, 0.4008789, -0.43554688, 1.0146484, 1.7158203, -0.74316406, -0.3190918, -1.1416016, -2.2617188, -2.5820312, -1.4277344, 2.375, 0.15905762, -1.8251953, -0.88183594, -1.8339844, -0.43920898, -2.1757812, -3.6679688, -0.47851562, 0.34814453, 1.9023438, 0.92041016, 2.2402344, 0.9667969, 1.2929688, 0.38476562, 0.48632812, -2.4296875, 1.6083984, 0.4038086, 1.2470703, 2.359375, 0.94970703, 1.1083984, -1.9833984, 0.44458008, -0.37573242, 1.8251953, 0.22607422, 0.83496094, -1.9589844, -1.1152344, 2.75, 1.4746094, -0.76953125, 1.1337891, -0.43823242, 2.515625, 2.5273438, -0.5283203, -0.7314453, 0.44677734, 1.1972656, -1.0517578, 1.4072266, 0.10656738, -0.33789062, 0.37670898, -0.16271973, 0.42529297, 1.8574219, 1.1796875, -0.39135742, 0.38623047, 0.9951172, 0.3227539, -0.4025879, 1.4931641, 0.45458984, 1.0244141, 0.54296875, -1.6220703, 2.796875, 1.0263672, -1.2578125, 0.7290039, -0.84765625, -0.91015625, 3.7988281, 0.44384766, -3.2167969, -0.18676758, 0.3708496, 1.1416016, 1.2607422, 0.7817383, 2.3476562, 1.9208984, -1.6435547, 1.6123047, -0.48364258, 1.65625, 0.3630371, 0.7373047, 1.0527344, -0.7192383, -0.43041992, -1.2207031, -0.036224365, 0.8071289, -1.7060547, 0.5473633, 5.3789062, -0.953125, -0.8701172, 3.4453125, -1.3144531, 0.7548828, 1.0390625, -0.41430664, -1.4824219, -2.2109375, 1.3720703, 1.0400391, -0.75927734, 0.5253906, -1.4824219, -0.8857422, 1.2910156, -0.98095703, -0.48364258, -0.16137695, 0.2265625, -2.6621094, -1.8789062, -0.6689453, -2.5625, -1.0117188, 1.6748047, -2.7148438, 1.4160156, 0.3334961, -0.26538086, 0.42163086, 1.2910156, -0.01247406, 0.99658203, 1.0742188, -0.13098145, 1.8125, 0.28979492, -1.7109375, -1.1777344, -0.16674805, 1.3652344, -2.1640625, -2.0195312, 0.09588623, -0.9199219, -0.32006836, 1.7666016, -1.7197266, -0.50439453, 2.1582031, -0.9375, 0.06341553, -0.21716309, -3.1601562, 0.15893555, 1.2158203, 0.39697266, 0.11462402, 0.029251099, -0.3088379, -0.9145508, -6.359375, -2.1660156, 2.1269531, -1.9746094, 0.21276855, -2.8945312, 1.96875, 0.43652344, 0.5024414, 0.34375, -2.5722656, -0.6801758, -1.7197266, -0.6557617, -3.0683594, 2, -0.4182129, 1.5791016, 0.4350586, 1.9160156, -2.3417969, -2.203125, 0.24865723, -0.25317383, 6.015625, 2.1660156, 2.9394531, -0.60009766, -0.32104492, 0.54541016, -1.4931641, -1.0322266, -0.037506104, -1.4863281, -0.74609375, -1.4628906, -1.4052734, 1.1591797, -2.2207031, -1.2089844, -0.079956055, -0.5341797, -0.51123047, 1.6416016, -1.1435547, -0.4645996, -1.4716797, -1.9560547, 0.7036133, 1.3789062, -1.9443359, 0.41088867, -1.4482422, 0.1661377, -0.43286133, 2.4570312, -0.11932373, 2.3222656, 1.7509766, -0.50097656, 2.4746094, 0.6015625, -3.8339844, 1.5625, 1.8818359, -0.58496094, 0.39672852, -2.6367188, -1.7089844, -1.4501953, -0.6591797, 3.3808594, 1.1796875, 1.9414062, -0.5185547, 0.63623047, 0.04220581, -0.72558594, -0.49194336, 0.39086914, -0.015716553, 1.3896484, -1.5078125, -0.85791016, 1.0810547, 1.3896484, -3.3203125, -1.5908203, 0.8310547, 0.016098022, 1.9296875, -0.83740234, -2.375, 0.02998352, 1.3740234, 2.234375, -0.3203125, -0.42822266, -0.57421875, -1.4277344, 0.43725586, 2.3203125, 1.3798828, 1.9160156, 0.125, 0.45922852, -0.5083008, 0.74609375, -1.8046875, 0.3190918, 0.43823242, 1.4248047, -0.04296875, 1.4443359, -0.9770508, -0.13012695, 0.7792969, 0.1529541, -1.5, -1.8535156, 0.41918945, 3.5117188, -0.9291992, -1.4443359, -0.37646484, -0.9980469, 0.12145996, -0.8208008, 0.8198242, -1.9414062, -0.7729492, 0.7011719, -1.2744141, -0.22192383, -1.0703125, 2.1015625, 0.33325195, -2.671875, 0.16064453, 2.5019531, 0.103271484, -1.0234375, -0.39208984, -1.9560547, -1.4472656, 1.4101562, -1.3828125, 0.17346191, 0.23815918, -1.3291016, 0.22912598, 2.1621094, -0.41918945, 0.09698486, 1.1376953, -0.97558594, 2.203125, -0.14465332, 1.3935547, 0.96484375, -3.9082031, -0.29248047, -3.6582031, -2.5527344, 1.2734375, -2.1972656, -1.1542969, 2.0898438, -0.24707031, 3.7070312, 0.018722534, 4.0664062, -2.3632812, -2.03125, 2.3457031, -0.3942871, -0.6411133, -2.25, -4.0703125, 1.2041016, -1.3798828, 0.0032196045, 2.1601562, -1.0224609, 0.18823242, 1.1796875, -0.09222412, -1.8896484, -1.6708984, 0.45654297, 0.6845703, -3.2421875, 0.006134033, 1.0380859, -0.42114258, -2.4121094, -1.7558594, 1.2314453, 0.3232422, 0.81591797, 0.99853516, 0.13989258, -1.2431641, -1.3027344, 0.32006836, -0.30541992, -0.4104004, -0.64746094, -0.08618164, -0.9863281, -1.0693359, 2.9726562, 0.9169922, 0.16369629, 0.52246094, 4.265625, 0.5473633, -0.3232422, -0.72021484, -0.32055664, 1.0712891, -0.40795898, -3.1660156, -0.7114258, -2.0761719, 0.2253418, 0.5620117, 1.8583984, 0.68359375, -0.7158203, -0.19958496, 0.9321289, -0.24694824, 2.0039062, 3.0253906, -3.1367188, 1.09375, -0.040130615, -2.3457031, -1.2109375, -0.35180664, 0.19921875, -0.8442383, 2.1367188, -0.57714844, -0.11090088, -1.4902344, -1.9892578, -0.8286133, -0.1607666, 2.3632812, 2.0371094, 2.0371094, -2.2832031, -1.296875, -1.9833984, -0.7661133, 0.6611328, 0.86621094, -0.39990234, -0.52441406, 0.9013672, 2.0878906, -2.6621094, 0.63671875, 1.0683594, -1.2529297, 0.56884766, -1.2841797, -0.55566406, -0.14526367, -2.5039062, 0.81396484, -0.3671875, 2.4960938, -1.3007812, -0.9897461, -1.0800781, -0.51123047, -1.0302734, 0.4477539, -1.9248047, 1.0058594, 3.0214844, -0.17358398, 0.26660156, -1.5527344, 1.7246094, 0.2619629, 2.2675781, -1.0693359, -0.02998352, 0.5131836, -0.6123047, -0.34521484, -1.3330078, 2.7773438, 2.0410156, 0.42773438, 3.0566406, 0.98095703, -1.9472656, 1.3759766, 0.9013672, -1.125, 1.0175781, -2.4960938, -1.7128906, 1.6171875, -0.7451172, -3.6992188, -0.7626953, 3.203125, -1.0791016, 1.4365234, -0.29492188, -1.7021484, -1.7597656, -3.2636719, -1.9316406, -1.65625, -0.44726562, 0.99609375, -0.0947876, 0.045562744, -2.7734375, 1.4902344, 1.7041016, -1.0058594, 0.9482422, 0.6591797, -1.2373047, -1.7402344, 0.68847656, -0.35131836, -0.33911133, -0.5004883, 2.3691406, 0.052215576, -0.59375, 1.1582031, -0.08502197, -2.2246094, 0.36816406, -2.3476562, 2.578125, -1.6699219, -1.0283203, 1.4863281, 0.114746094, 1.1396484, -1.6816406, 0.15270996, -1.2207031, 0.91308594, 0.18432617, -1, -0.05645752, 0.21166992, -2.078125, -2.0039062, -1.1318359, -0.48779297, 0.5625, 0.23486328, -0.6845703, -1.3554688, -0.0013113022, -0.5751953, 0.41503906, 1.0498047, 0.4260254, -1.5546875, 1.0839844, 0.41552734, -0.3149414, 1.2626953, 0.390625, -1.6464844, -0.061553955, -0.61328125, -1.4863281, -3.8261719, 1.2490234, -1.6123047, 2.3964844, 0.9501953, -0.36914062, 1.0625, 2.984375, 1.5058594, -0.515625, 0.4584961, 0.10076904, 0.46777344, 2.6464844, -1.4375, 1.5039062, -0.05166626, -1.8671875, -0.4802246, -0.32421875, 0.7675781, 0.15515137, 0.5395508, 1.1357422, 0.42895508, 0.35791016, -0.23278809, 0.99316406, 1.5185547, 3.2246094, 0.61572266, -0.93408203, -0.55566406, -2.0898438, -1.8125, -0.41064453, -1.2753906, -0.19921875, -1.2998047, 0.93359375, 1.0390625, -0.05053711, 0.7919922, 2.53125, 1.7949219, -3.3476562, 0.6279297, -0.9824219, 2.6367188, 0.6333008, -0.90283203, -4.7890625, -3.9648438, -1.7802734, 2.2128906, -0.27856445, -1.6103516, -0.5576172, -1.8115234, 0.48583984, -0.6459961, 2.4707031, 1.0595703, 2.1113281, -2.1210938, 2.3808594, 1.5878906, -1.3544922, -0.8310547, 0.5571289, 3.1582031, -0.7416992, 2.5136719, 0.12597656, -1.6552734, 1.2958984, 0.2692871, 0.08685303, 0.109191895, -1.1064453, 1.6914062, -2.5996094, -1.0908203, -0.07922363, -1.7666016, -2.4882812, 0.21557617, 2.5, 1.2373047, 0.04901123, 0.75878906, 0.23120117, 0.4008789, 1.7636719, -0.13830566, 0.23278809, 0.06774902, 0.34448242, 0.0014219284, 2.2695312, -0.07720947, 2.046875, -0.016189575, 1.6035156, -0.063964844, 2.0429688, -1.6220703, 2.2480469, 3.0878906, 2.6171875, 2.7226562, 2.5195312, 0.8442383, 1.0996094, 2.9921875, 1.0839844, -2.234375, 1.2255859, 1.1972656, 3.1621094, 0.16223145, -1.2216797, -0.47509766, 2.0292969, 0.16503906, -1.5615234, 0.61083984, -0.041107178, 0.8588867, 0.44506836, 0.003206253, 0.39770508, -1.3505859, 1.8896484, -0.64990234, 2.0742188, 1.5341797, -1.6103516, 0.67578125, -1.0527344, 1.6396484, 0.4897461, -2.140625, 0.5830078, -3.6621094, 1.3115234, 1.4863281, -0.5629883, -2.0253906, 0.25073242, 1.7988281, 0.59277344, 1.1425781, -1.1328125, 2.3886719, 0.80322266, -0.15136719, 0.9638672, -0.53759766, -0.033843994, 0.23181152, 0.12768555, -0.5654297, -0.4729004, -0.22277832, 0.8979492, -3.1191406, 2.6601562, -0.06768799, -0.81396484, 0.7919922, 1.3525391, 1.3955078, 0.066467285, -0.039276123, -0.35595703, 0.9057617, 1.4189453, -1.4716797, 0.63134766, 0.3071289, 0.7236328, 2.7304688, -1.2490234, 0.030227661, 0.7626953, -2.4082031, 1.0341797, 0.04107666, 1.3359375, -0.29785156, 1.390625, -1.7675781, 4.4492188, 0.16625977, 0.3647461, 0.20239258, 1.7666016, 1.7402344, -0.48339844, 0.6879883, -1.7255859, 1.0634766, 1.0527344, -1.4248047, 0.75683594, -1.5625, 0.2993164, 0.6069336, 0.88720703, -0.63720703, -2.7695312, 0.91845703, 0.035369873, -1.3740234, 1.1982422, 2.7910156, -0.42333984, -0.03463745, -2.0058594, -0.81933594, -0.67041016, 1.2900391, 2.3828125, 0.1182251, -1.3076172, 0.23669434, 1.6865234, 1.2021484, -1.0214844, -0.083862305, 0.31567383, 0.06890869, -0.4453125, 2.4628906, -0.15393066, -0.9633789, 0.0736084, 0.22753906, -1.1210938, 0.74658203, -0.56103516, -0.48120117, 0.07824707, -1.4873047, -0.6923828, 1.9208984, -1.5693359, -0.5864258, 2.6855469, -0.34692383, 1.4560547, -1.8017578, -4.3046875, -0.921875, -0.16931152, 2.3632812, 0.20654297, -0.68066406, -0.61328125, 0.91015625, 3.3203125, -0.76904297, -0.3635254, -0.4333496, -2.4921875, 0.90771484, -0.5986328, 2.6054688, -0.25805664, -0.32104492, 0.3388672, 1.9140625, 0.119628906, 0.32006836, 2.1445312, 0.7504883, 1.5371094, -2.0175781, -2.3027344, -1.2949219, 1.8496094, 0.51171875, 0.17871094, 0.005191803, 0.23754883, -0.81396484, -4.0429688, -2.0957031]}, "B00ED9WMNC": {"id": "B00ED9WMNC", "original": "Brand: Camco\nName: Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black)\nDescription: \nFeatures: Replacement cap for new style RV propane tank covers\nFunctional design for easy access to both propane tanks and changeover regulator\nIncludes attachment hardware\nMade of heavy duty, UV stabilized polypropylene\nBlack\n", "embedding": [1.4326172, 0.24450684, 3.2207031, -1.0224609, -0.9267578, -2.0410156, 0.7324219, -1.7568359, 3.0527344, 0.5810547, 0.5996094, -0.46875, 1.2148438, -4.1679688, 2.2070312, -1.0869141, 0.7260742, 1.4492188, 1.5273438, -1.1210938, 1.625, -1.7275391, -0.3088379, -1.1464844, 0.24230957, -0.1105957, 4.2109375, -2.0195312, -1.2802734, 0.8251953, -0.3083496, -0.45458984, -0.33911133, 2.0859375, -0.060577393, -0.63427734, 0.6621094, -0.6723633, -2.7363281, 1.1484375, -2.5976562, 1.0888672, 1.953125, -0.22741699, -0.0069770813, -1.5400391, 0.059143066, -2.0371094, -0.1439209, -2.7363281, -1.3164062, 2.34375, 1.34375, 0.15148926, -0.2709961, 1.3867188, -1.0507812, -0.9506836, 0.23535156, 1.9824219, -1.6064453, -0.6791992, -2.6386719, 1.9355469, -1.9169922, 2.1679688, -0.5605469, -1.3935547, -0.0713501, 2.0625, 0.7583008, 1.5136719, 0.5522461, -1.6738281, 0.13024902, -1.0117188, -2.8671875, -0.2607422, -0.091918945, -1.5908203, -0.61279297, 2.9667969, -1.9726562, -3.4902344, 0.022735596, -1.7275391, -0.25854492, 2.0039062, 1.0429688, -0.3347168, -2.0410156, 0.4934082, -2.8496094, -3.2441406, -1.8037109, 0.2479248, 0.63134766, 1.1171875, 3.2714844, 1.7646484, -1.8378906, 0.5444336, -0.15429688, 0.55615234, -2.6484375, -0.5546875, 1.2148438, -2.1132812, -1.4589844, 0.3005371, -1.0517578, -1.5439453, 1.1738281, -2.03125, 0.18164062, 1.3242188, -0.5126953, -1.2519531, -0.13427734, -0.78027344, 3.9082031, -1.1337891, 1.4990234, -1.5068359, 1.8730469, 1.2431641, -1.5361328, 1.6035156, 2.5214844, 0.6870117, 1.9267578, 1.4443359, 1.2441406, -0.4140625, -0.08807373, -0.43017578, -2.4414062, -2.3632812, -0.55908203, 0.56884766, -3.1054688, -0.0025520325, 1.3339844, 0.35766602, -4.7226562, 0.0025119781, -2.0273438, 2.3378906, -1.0605469, -2.5117188, 1.6279297, -3.3085938, -1.0644531, -0.35205078, 1.3564453, 1.4589844, 0.8847656, -3.2480469, 0.99365234, 2.2441406, 2.3496094, -1.4384766, 1.2333984, 2.2265625, 1.0097656, -1.6533203, -0.35888672, -1.78125, -1.75, 2.7382812, -0.94970703, -1.9121094, 0.5019531, 0.6694336, -1.9121094, 0.28027344, 2.0976562, 2.1796875, 1.0693359, 1.8291016, -2.8222656, 0.68896484, -1.078125, -1.2539062, 0.8261719, -1.625, -1.5341797, -1.2919922, -0.68603516, 0.22607422, -1.2734375, 1.53125, -1.4628906, -0.4946289, -1.7207031, -5.0117188, -0.3461914, -0.49267578, 1.2675781, 1.7402344, -1.5322266, -1.4970703, -0.80029297, 1.4560547, -2.1699219, -0.80908203, 1.8730469, 1.1855469, 2.0507812, 0.8173828, 1.1601562, -0.6689453, 0.9819336, -0.8774414, -0.82128906, -0.78222656, -0.34179688, -0.14147949, 1.2548828, 1.6494141, 2.1347656, 2.0195312, 1.5117188, 0.21142578, 1.2382812, 2.1386719, 1.2675781, 1.2294922, -0.4477539, -1.8505859, 0.640625, 1.3994141, -3.9414062, -0.43579102, -0.7949219, 1.6474609, 0.63427734, -2.3984375, 0.3947754, -2.5058594, 0.88378906, -2.7324219, -1.0878906, -1.3408203, 2.9121094, 2.7558594, -0.71240234, 1.7919922, 0.74902344, 0.15710449, 0.8154297, 0.061950684, -0.7998047, 0.1348877, -0.8935547, 2.3828125, 0.7036133, -0.23278809, 0.21142578, -1.9121094, 1.3388672, 2.0332031, -1.9414062, 0.7788086, 0.15002441, 0.61376953, 0.48413086, 0.027770996, -1.6328125, 0.33813477, 0.21264648, 0.7128906, 2.1347656, 0.9902344, 1.3251953, 1.4492188, -0.2770996, 1.515625, 1.4853516, 1.7626953, 0.7602539, 1.2792969, 1.6396484, -3.8378906, 2.3457031, -0.9584961, 1.3378906, -0.5229492, -2.5996094, 1.2568359, 2.0703125, -1.5507812, -1.2236328, 2.3164062, 3.1992188, 1.3935547, 1.3330078, -0.3046875, -1.3916016, 0.87158203, -0.9301758, 0.7290039, -0.61572266, 0.9033203, -0.2154541, 0.0010080338, -1.8876953, -0.14086914, 0.75341797, 0.9472656, 0.38989258, -1.4941406, -0.8618164, 0.85302734, 0.359375, -0.9580078, 3.1074219, -2.2636719, -2.2285156, 0.99365234, 1.75, 2.3652344, -0.22143555, -2.2539062, 1.5605469, -0.32348633, -2.7734375, 0.94628906, 1.3710938, -0.17590332, 0.59716797, -1.28125, 1.3085938, -1.0976562, 0.5214844, 1.3535156, -0.8588867, -0.08099365, 1.0507812, -0.92285156, 1.3964844, -1.5947266, -1.3710938, 4.0664062, 0.22949219, -0.6044922, -0.5, 0.8515625, -0.27783203, -1.4238281, -0.23742676, 3.7441406, -0.68115234, -4.265625, -0.1595459, -0.7216797, -0.7480469, 0.7866211, -0.5786133, 1.3955078, 0.17333984, 1.6552734, 2.0507812, -1.0263672, -0.61083984, 0.67529297, 2.5019531, -2.7929688, 0.9794922, -2.0136719, 0.68603516, -2, 0.73583984, -1.9208984, -2.3417969, 1.1591797, -0.48291016, 3.9960938, 0.16320801, 0.79248047, -0.6586914, -1.4726562, 0.1083374, -2.3652344, -2.3398438, 0.62353516, 1.2431641, -1.4941406, -0.5805664, -3.4453125, -0.8588867, -2.1328125, 0.05154419, -0.9916992, -2.6171875, -1.3613281, -0.8041992, 0.097961426, -0.30126953, 0.81152344, 1.8681641, -0.47607422, -0.6044922, -0.3022461, 0.8955078, -0.44970703, -1.6289062, -1.0703125, 1.5771484, -0.9213867, -0.13842773, 0.55371094, -0.6328125, 2.5390625, -0.16369629, -2.7753906, 0.3251953, 2.5234375, 1.7871094, 1.3828125, -2.1972656, -1.8730469, -1.3486328, 1.5322266, 3.421875, 2.1601562, 2.5136719, 1.6640625, 1.1572266, 1.1943359, -0.99902344, 0.23596191, -0.15307617, 0.3996582, 3.4804688, -0.9448242, -1.4902344, 1.9287109, 1.6591797, -2.3144531, 0.62158203, -0.640625, -2.1796875, 3.1523438, 3.1171875, -4.0273438, 0.18164062, 2.5605469, 2.4785156, 0.37036133, 3.0078125, 0.115356445, -0.2602539, 2.1347656, 1.7207031, -0.077819824, 1.5458984, 1.0498047, -2.4082031, 0.25952148, 1.6660156, -1.0029297, 0.44433594, 1.9306641, 0.057525635, 0.5024414, 1.7910156, -0.5102539, 2.3535156, 1.5234375, -0.1385498, -0.084228516, -3.2480469, 1.4228516, 0.5131836, 0.9609375, -1.1699219, 0.16125488, -1.4560547, -0.020446777, -2.2226562, 2.6015625, -0.24206543, -0.43310547, 1.4707031, -1.078125, -2.0175781, -2.3066406, 4.015625, 0.07928467, 0.08239746, 1.3134766, 1.6357422, -0.7939453, -3.1074219, -0.65283203, -0.5136719, -2.6484375, 2.0917969, 3.2265625, -2.0722656, -0.07141113, -2.7363281, 0.97802734, 1.9707031, -1.6806641, -0.58203125, -1.3603516, 0.7988281, -2.1855469, 0.82373047, 1.3603516, 0.6899414, -1.4775391, -0.93359375, -0.9326172, 2.4042969, -1.0097656, -0.9121094, -0.7392578, -0.20837402, -2.9316406, -0.043670654, 0.20129395, 2.4667969, -0.07702637, 1.265625, -0.38110352, -0.5234375, 0.2565918, 1.4677734, -3.6523438, -0.6772461, 0.5517578, 0.7241211, 2.0039062, 1.8007812, 1.8291016, 3.15625, 0.6435547, -3.5449219, -1.2050781, -1.4101562, 1.5683594, -2.7734375, -3.7363281, -0.58447266, 1.1621094, -1.7138672, -3.0136719, 0.16418457, -1.2832031, -0.082336426, -1.3398438, -0.2685547, -0.08288574, 1.0927734, 0.83203125, 1.2705078, 0.23742676, 0.27026367, -0.17980957, -1.234375, -2.4375, 2.21875, 2.2734375, 1.2519531, -0.5209961, 1.5371094, 1.9824219, -2.1621094, -0.17138672, -2.3554688, -0.07550049, -1.2910156, -2.2382812, 0.68408203, -1.5205078, 0.35839844, -1.1513672, 0.6723633, 1.328125, 0.85302734, 0.8144531, -1.1513672, 0.76464844, 2.7226562, -2.3144531, -1.2714844, 2.6484375, -0.51904297, 1.9335938, 1.2207031, -0.4963379, 1.6943359, -1.625, -1.4355469, -1.7861328, 0.7470703, 1.3867188, 1.5195312, -4.1054688, 0.5698242, 1.1601562, 0.27612305, 1.0732422, -0.828125, -1.1074219, 1.0537109, 0.9482422, 1.7578125, -1.5673828, 0.41918945, 0.47973633, -0.83447266, 0.7631836, -1.6767578, -1.7451172, 0.08673096, -0.9892578, 1.0693359, -0.6176758, 0.93603516, -2.5625, 0.86279297, 0.3815918, 0.035614014, 2.7324219, -2.1445312, 2.0664062, -0.77978516, -1.5791016, -2.1679688, 2.9746094, 1.6220703, -0.2208252, 0.28173828, -1.7373047, -1.7861328, 0.9682617, 1.7861328, 0.012336731, -0.02053833, 0.5336914, -3.3515625, 1.6689453, 0.8198242, -0.45214844, -0.984375, 1.3583984, 2.390625, -0.31176758, 0.6953125, 1.4208984, -0.6323242, 1.2246094, 0.49072266, -0.9692383, -0.890625, 0.76464844, 0.98876953, 4.234375, -1.6621094, -4.2382812, -0.08972168, 2.1210938, 0.22509766, 1.6572266, -0.30200195, -0.5463867, -1.4648438, -3.5136719, -0.8442383, -1.0253906, 1.8779297, 0.1194458, -0.7631836, 1.8554688, 2.1074219, 0.6425781, 2.8183594, -0.5180664, -0.67041016, 1.0214844, 0.9584961, -2.1582031, -3.6679688, -2.1464844, -2.5234375, -0.6191406, 0.34423828, 0.060668945, -0.4104004, 0.18688965, 2.8007812, -2.0761719, -0.6958008, -0.7739258, -0.8491211, -1.7226562, -0.6635742, 4.2148438, 0.3256836, -0.33398438, 0.7602539, 0.7631836, 0.6586914, 1.4648438, 1.4628906, -2.0800781, -0.41918945, 0.9941406, -3.2675781, -4.4414062, -1.2617188, 0.96777344, 0.8383789, 1.1669922, -1.2373047, 1.2568359, 1.2587891, -2.6933594, -0.5473633, -1.7519531, 0.6972656, -0.22766113, 0.4116211, 1.4130859, 0.03704834, -0.9628906, -0.2010498, -1.9873047, -0.19885254, -2.046875, -3.5820312, -2.6542969, 2.3984375, -1.0410156, 0.5229492, -0.96972656, -1.5732422, 1.875, 0.32739258, 2.2578125, -0.95214844, 1.1152344, -1.5644531, -0.57666016, 2.359375, -0.74072266, -1.4882812, 3.7734375, 0.8959961, 2.3339844, 3.3242188, 1.2958984, -2.9277344, 1.6435547, 2.1796875, -0.06323242, -0.49267578, 0.75927734, 1.4072266, 0.28759766, 1.5195312, 1.0097656, -1.3681641, -0.9238281, -1.7939453, -0.5800781, -1.3740234, -1.6933594, -1.3525391, -0.36499023, 1.7431641, 1.3476562, -0.08843994, 0.07086182, 1.4013672, 2.6113281, -1.0957031, 1.2480469, -0.9584961, 1.3564453, 0.2319336, -1.1357422, -0.9194336, -2.1289062, 1.7617188, 0.97216797, 1.6113281, 1.2197266, 1.4228516, -0.18737793, 1.2099609, 1.2578125, 1.2509766, 0.11425781, 0.7993164, -0.7661133, 1.0791016, 2.7539062, 0.11016846, 0.26416016, 0.08337402, -0.17944336, 0.15576172, -0.5649414, 3.8046875, -4.4296875, 0.14782715, 0.66748047, -0.81103516, -1.3789062, 0.16821289, -0.18664551, -1.3076172, 0.4309082, -0.038970947, 0.34277344, -3.65625, 1.6113281, -0.92041016, -0.9042969, -0.39819336, -0.5805664, -2.7265625, -0.08807373, 1.8476562, -1.0595703, -0.4350586, -1.3115234, -0.8886719, -1.4814453, 0.51123047, -3.3515625, 1.2900391, -2.0625, 0.71777344, 0.6904297, 0.52001953, -0.24108887, -0.043273926, 3.7441406, 2.6289062, 3.9902344, 0.67041016, 3.0957031, 0.6147461, 2.5, 1.7158203, -0.4675293, -0.34594727, 0.7988281, 1.1855469, 1.6992188, -3.3828125, -0.36914062, 0.7089844, -0.50878906, -1.4541016, 0.14916992, 0.40161133, -2.4179688, -1.5742188, -0.91796875, -0.19140625, 0.5107422, 1.0488281, -3.5097656, -1.1328125, -0.4729004, -2.2363281, 2.6367188, -1.0068359, -1.5244141, 0.06402588, 0.017196655, 1.5302734, -0.08355713, -0.5024414, -2.1875, -1.8330078, 0.4921875, 0.7158203, 1.0224609, 0.59716797, 0.07647705, -0.099609375, -0.79833984, 0.8300781, -0.671875, -1.1660156, 1.4980469, -0.6723633, 1.8388672, 2.015625, -1.640625, 0.7729492, 1.4804688, -1.2675781, -3.3867188, 0.08758545, 1.2480469, -0.15112305, 1.1171875, -3.0625, 0.25854492, -0.9707031, 2.0429688, -2.78125, 0.14196777, 0.20739746, -2.4960938, 0.25195312, 1.4667969, -1.3408203, 5, 1.0175781, -0.6582031, 0.5332031, -0.16088867, 0.8955078, 0.94628906, 1.7958984, 0.20251465, 0.2536621, -1.2568359, 2.6542969, 2.5644531, 0.6386719, 1.1298828, 1.6464844, 1.1494141, 0.98779297, 0.28759766, -2.1503906, 2.2734375, 1.2333984, 0.26904297, -0.6582031, -2.6152344, 1.6914062, -0.3527832, 1.4472656, 0.9301758, -0.1427002, -0.8232422, 2.8007812, -2.2617188, -0.21936035, 0.27978516, -1.1757812, 0.9506836, 0.0814209, -1.6884766, -2.0976562, -1.2011719, 1.2373047, -1.4248047, -0.005264282, -0.39624023, 2.2128906, -0.082336426, -1.2763672, -1.2871094, 0.049957275, -0.6713867, -0.7133789, 0.7128906, -0.64160156, -0.9580078, 0.7080078, -0.57373047, -0.28320312, -1.9189453, 1.0888672, -1.2607422, -0.9716797, -0.36816406, -0.0034885406, 0.79003906, 0.5649414, 0.77685547, 1.5166016, 0.30541992, 0.59228516, 2.5996094, -2.8574219, -0.13830566, -2.6835938, 3.1386719, 2.4433594, -0.8881836, 0.6040039, 1.8388672, 2.9179688, -2.3476562, -1.4638672, -1.4472656, -0.86035156, 0.32617188, -2.8300781, 0.4675293, -0.70458984, -0.7236328, 1.5029297, 3.7734375, 1.5576172, 0.67871094, 1.1210938, 1.0205078, -2.6152344, -0.8569336, -0.4729004, -0.7138672, -2.6894531, 0.081604004, 0.96533203, 4.0742188, 0.7036133, -0.4951172, -3.1289062, 1.1259766]}, "B074W2B6M8": {"id": "B074W2B6M8", "original": "Brand: Homitt\nName: Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black\nDescription: \nFeatures: DIMENSIONS: This Homitt bbq cover measures 60\"L x 28\"W x 44\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc.\nUPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new.\nFADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering.\nHANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away.\nDURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).\n", "embedding": [0.72753906, 1.8369141, 2.9667969, -0.38867188, -0.47265625, 1.3720703, 1.0566406, -1.7236328, 1.3779297, 3.3632812, -0.26098633, 0.014091492, 0.63964844, -3.9765625, 0.56933594, -0.095947266, 1.5917969, 1.3789062, 3.6386719, -0.8491211, 2.9960938, -0.22229004, 1.6386719, 0.15429688, 0.31420898, -0.98291016, 4.2734375, -2.3867188, -1.9160156, -0.6567383, 2.0449219, 0.29711914, 0.80615234, 2.8808594, -2.7011719, -1.8222656, -1.0517578, 0.8847656, -0.65283203, -1.2695312, -1.8300781, -2.3789062, 3.0039062, 2.1191406, -3.0390625, 0.5493164, -1.2490234, 0.8696289, -0.9628906, -0.8222656, 2.0449219, 3.1855469, 1.0634766, 0.62109375, -2.0820312, 2.84375, 0.004020691, -1.7529297, -0.6323242, -0.3828125, 1.1074219, -1.0761719, -1.1240234, 1.4345703, -1.5517578, -0.50878906, 1.0986328, -1.0410156, 0.87890625, 0.51660156, 0.049835205, -0.024597168, -0.2265625, 0.28930664, 1.34375, -0.31933594, -2.4179688, 2.4667969, 1.8105469, -1.7304688, -0.7949219, 5.8789062, -0.8652344, -1.8447266, -0.4020996, -0.20214844, -2.2773438, -2.3691406, 2.8886719, -1.3945312, -0.19616699, 2.1582031, -2.4785156, -3.6679688, 0.3083496, -2.2363281, 2.96875, 1.3261719, 2.5585938, 0.76464844, -1.3457031, -0.09820557, -1.8046875, 1.6777344, -2.1484375, -2.6074219, 1.28125, -0.011375427, -0.47851562, 0.13085938, -0.70166016, 0.578125, -0.11584473, 1.2695312, 2.1679688, 0.46777344, -1.5517578, 1.4121094, 0.8432617, 2.21875, 3.2773438, -0.9926758, -0.48999023, -1.3867188, 1.5166016, -0.7089844, 0.0440979, 1.0224609, 3.9648438, -1.2558594, 1.4091797, -0.47143555, 1.5869141, -0.6767578, -0.7158203, 0.34301758, -1.5351562, -0.7158203, -3.4550781, 1.4775391, -0.6020508, -1.7333984, 1.8125, -1.4980469, -2.8925781, 0.28027344, -1.6181641, 2.4257812, -1.7363281, -3.328125, 0.8515625, -1.7939453, 0.79296875, -1.6152344, 1.7011719, -0.7368164, 1.3466797, -2.5117188, 3.3574219, 2.1972656, 3.3378906, -2.0273438, 0.37768555, 0.7573242, 3.2285156, -3.0585938, -0.3737793, 1.1083984, 0.074401855, 2.2949219, 0.08984375, -1.8769531, 0.6713867, -0.2133789, 1.0654297, -1.1855469, 0.59716797, 1.6601562, -0.88964844, 0.25463867, -0.4260254, -2.0527344, -0.3083496, 0.61572266, -0.8623047, -1.3173828, -0.6069336, -1.5205078, 0.7207031, -1.0869141, -0.3623047, -0.5053711, 0.8911133, 0.122802734, -1.7646484, -1.1416016, -1.6152344, -1.6464844, 0.049041748, 0.9267578, -0.84033203, -1.4755859, -0.9838867, -0.7919922, -2.7148438, -2.1484375, -0.81591797, -0.01751709, 0.35131836, 0.89208984, 0.8623047, -1.5830078, 2.7402344, 1.3320312, -1.296875, -0.09667969, 2.5136719, -1.0917969, 1.5263672, 0.7319336, -0.8779297, 0.22241211, 1.1259766, 4, -1.0410156, 1.0263672, 0.9785156, 0.8408203, -0.90478516, -1.5166016, 0.63671875, 1.4570312, 0.66064453, 0.4855957, -1.3818359, 1.9023438, -0.7421875, -1.7177734, 0.0066108704, 0.4645996, -1.8945312, -1.2939453, -3.2890625, -1.609375, 0.53759766, 2.2792969, -0.6357422, 0.7988281, 1.7558594, -0.79003906, -0.5854492, 0.5649414, 0.7416992, -0.4675293, -0.90478516, -0.07763672, 0.5444336, 0.15783691, -0.7524414, -1.8046875, -0.5463867, -1.9716797, -0.79052734, 1.4541016, -0.6826172, -1.3574219, 2.0332031, 0.7324219, -2.1582031, -1.4335938, 1.1445312, 0.32373047, 0.5371094, -1.6523438, 1.6699219, 0.3552246, -0.1895752, 1.7177734, -0.24645996, -0.1965332, 0.6953125, 1.7275391, 2.3007812, -1.0546875, 0.6513672, 0.8720703, 0.07745361, -1.2695312, -0.09649658, 0.095214844, 2.7753906, 0.10522461, -1.2880859, 2.7773438, 0.875, -0.41601562, 0.24023438, -1.6630859, -1.3818359, 0.7504883, 0.060272217, 1.2978516, 0.6645508, 1.9394531, -0.15710449, -0.9794922, -0.16552734, -1.5664062, -0.37939453, 1.5722656, 0.57714844, -0.265625, 0.32006836, 1.9199219, -2.0644531, -1.4560547, 2.4472656, -2.3828125, -0.91064453, -0.0803833, 0.085632324, 0.1595459, -1.4609375, -1.8359375, 0.12432861, 0.26831055, -1.8974609, -0.14440918, 0.77734375, 0.27368164, 0.16894531, -2.2109375, 0.13439941, -1.0205078, -1.6982422, -2.5703125, -4.03125, -2.2421875, -0.36987305, -1.6474609, -0.93359375, -0.24902344, -2.6972656, 3.0292969, 1.0644531, -2.6464844, -1.4619141, 1.03125, -1.6494141, 2.0761719, -0.81347656, 0.41748047, -0.46923828, -3.7578125, 1.2148438, -0.25976562, -0.24182129, 0.31201172, -1.3994141, -0.7011719, 0.83496094, 1.0878906, 0.6982422, 1.7363281, 1.6181641, 0.6040039, 0.33642578, -4.5351562, -0.5839844, -1.8271484, -0.5449219, -2.5546875, 0.1105957, -3.5234375, -0.5527344, 1.4433594, -0.91064453, 2.3710938, 0.73876953, 0.7163086, 0.6333008, 0.009643555, 0.9824219, 0.011398315, -1.9980469, -0.028640747, 1.7324219, -1.2578125, 0.30932617, -4.3476562, -2.0996094, -1.4658203, -0.31518555, -0.06530762, -0.47851562, 0.022064209, 1.0996094, -2.6113281, -1.0595703, -1.5068359, 0.9970703, -0.24328613, -0.34765625, -0.27563477, -3.0273438, -2.6367188, -1.4345703, -2.1933594, 2.03125, -2.4355469, -0.07727051, 1.6933594, -0.90478516, 3.2226562, -1.0634766, -4.84375, 0.7167969, 2.0039062, -0.49853516, 1.9863281, -0.049682617, -1.6992188, -0.49853516, -0.9091797, 1.9394531, -0.23718262, -0.062561035, 1.6669922, 0.19299316, 0.703125, 0.026397705, 1.2246094, -0.1751709, 1.265625, 2.6875, -1.0263672, -1.3623047, 0.99560547, 0.9916992, -1.8681641, 0.2944336, 2.1152344, 0.1340332, 0.35864258, 0.6923828, -0.04159546, -0.2890625, -0.037902832, 1.640625, -1.5029297, 1.3037109, -0.2631836, 0.11517334, 0.68066406, -1.4736328, 3.015625, 2.3964844, 1.0869141, 1.2197266, 0.81933594, 0.25634766, 1.0019531, -0.62597656, 1.4853516, 1.9423828, -0.6767578, 1.8154297, -0.9165039, -0.52978516, 2.1972656, -1.1650391, 1.4599609, -1.078125, -0.22839355, 1.5566406, -1.3164062, 0.11853027, 0.38085938, 0.24975586, -0.4440918, -1.828125, -2.0234375, -1.4189453, -0.9682617, 0.7236328, -2.4414062, -2.1269531, -0.8330078, 3.9960938, -0.5131836, -1.4619141, -0.9970703, 2.3613281, -2.4414062, -1.1015625, -0.22521973, 1.7148438, -0.10644531, 2.3300781, 2.7382812, -2.0820312, 2.03125, -2.7148438, 0.93359375, 1.4306641, -1.8857422, -0.30688477, -0.08074951, -0.3178711, 0.43603516, 0.50927734, 0.7011719, 1.8037109, -0.8276367, -0.33203125, -3.0175781, 0.07324219, 0.74316406, -0.69189453, -0.00047373772, 3.7128906, 0.3388672, 0.70996094, -1.7646484, 3.1015625, 0.14221191, -1.2285156, 2.0488281, -2.0585938, 0.7109375, -0.88916016, -4.5273438, -0.38134766, -0.9868164, -1.4746094, 2.7167969, 0.5917969, 1.1875, 1.1279297, 0.6152344, -1.2080078, -0.24182129, -3.0683594, -2.4433594, -1.5488281, -1.4755859, 1.6835938, 0.6074219, -2.4023438, -2.2480469, -2.5742188, -1.8789062, 0.45410156, -0.54785156, -1.0224609, -0.47338867, -1.6992188, 0.061767578, -1.4912109, -0.45751953, 0.03225708, -0.35546875, -0.7480469, 0.3935547, 1.4990234, -1.5927734, 0.027435303, 0.6660156, 2.0703125, -1.5341797, -2.2910156, 0.35986328, 1.5976562, 3.3632812, -0.8256836, -3.5878906, -0.85791016, -0.28173828, 2.8066406, 0.4699707, -0.7392578, -0.35888672, -1.0166016, 0.58935547, 0.7050781, 2.6191406, 1.2802734, -0.83203125, -1.6865234, 2.1230469, -0.8647461, -2.3085938, -1.7587891, 0.05279541, -0.19787598, 0.63671875, -2.0214844, -2.5097656, 2.375, -0.83447266, -0.3347168, -1.4550781, 3.4589844, 0.9926758, 1.3398438, 3.3867188, -1.8457031, -0.15710449, 1.3779297, -1.6816406, -0.45751953, -0.51904297, -0.9682617, 0.63183594, 0.5097656, -0.24853516, -1.3632812, -1.2529297, -0.9238281, -0.58691406, -1.0380859, -1.7646484, 1.8798828, -0.47607422, -0.39794922, 1.8857422, -2.3085938, 3.3457031, -0.62353516, -0.05709839, 2.5527344, -2.234375, -0.08319092, 1.2666016, 0.7348633, -0.51464844, 1.1943359, 1.0498047, 0.41088867, 0.26049805, -1.7246094, 0.40307617, 1.6181641, -1.9248047, -0.097473145, 0.92822266, 1.4941406, -0.609375, -1.6865234, 1.9189453, 2.4082031, 0.49487305, 1.8769531, 0.6513672, -1.5458984, 2.0214844, 2.0351562, -0.22741699, -0.2619629, 1.6230469, 0.12597656, 2.4609375, -1.4755859, -1.7392578, -0.7207031, 2.2871094, -1.078125, 2.0410156, -0.28833008, -1.1904297, 1.0078125, -2.1308594, -0.22485352, -0.032073975, -1.7060547, -0.56689453, -1.1669922, 2.0820312, -0.034301758, 1.7099609, 3.6855469, -1.0380859, -2.9492188, 1.3056641, -0.11352539, -0.8071289, -0.14770508, -1.5947266, -2.8007812, -0.0993042, 1.5839844, 0.9355469, 0.59521484, 1.3974609, 2.2285156, -1.8095703, 1.2304688, 0.15527344, 2.9570312, -2.6074219, -1.3378906, 3.828125, -3.5800781, -2.8378906, -1.8007812, 0.6459961, 0.6274414, 1.3476562, 2.3359375, 0.038970947, -0.03616333, -0.8808594, -3.3671875, -1.2294922, -0.88916016, 0.54052734, -0.5913086, 1.7910156, -0.64746094, 1.0136719, -0.24072266, -0.31982422, 0.116882324, -0.82470703, 0.23242188, -1.3330078, -2.2949219, 0.14807129, -1.6171875, -1.4316406, 2.4667969, 1.2265625, 1.5146484, 1.1162109, -3.7539062, -0.890625, 0.9838867, -3.0097656, -1.3945312, 2.2890625, 0.80615234, 1.5292969, 0.6225586, 0.6279297, -1.0927734, 3.6132812, -0.45092773, -0.23803711, 2.0195312, -0.67333984, -0.45117188, -0.86328125, -1.2636719, 1.1464844, -2.2578125, 2.2949219, 0.88183594, -1.6357422, 1.5859375, 1.6064453, -1.828125, -0.41870117, 1.8300781, 1.5341797, 2.1582031, 0.35375977, -1.3183594, 0.28344727, -1.2304688, -1.0126953, -0.3071289, -2.7539062, -2.0527344, -0.96875, 0.6347656, 1.7763672, 1.8447266, 1.6171875, 0.33618164, 1.8701172, -1.6904297, -0.9746094, 0.5385742, 2.2539062, 1.4404297, -2.6054688, -0.5541992, -0.99902344, 0.66552734, 2.0800781, -0.3388672, 0.06750488, -0.37670898, -1.5253906, -0.47216797, 0.9008789, 0.375, 0.91259766, 1.3222656, 0.19030762, 0.7841797, 3.0058594, -0.84375, 1.0908203, 0.55566406, 1.5566406, -1.8154297, 1.3486328, 0.33496094, -3.5527344, -1.6777344, -0.9770508, 0.53564453, 0.44677734, -0.8105469, -0.14855957, -2.2460938, -1.2207031, -1.7783203, -2.0214844, -4.4765625, 0.7661133, -0.35424805, -0.22045898, -0.19421387, 2.8632812, 0.90478516, 3.2597656, 1.2939453, -0.19970703, -0.3317871, -1.2060547, -0.8574219, -1.3183594, 1.3310547, -1.4833984, 0.6542969, -0.020217896, -0.21850586, -1.6064453, 0.94677734, -0.10235596, 0.8378906, 1.3369141, 2.7460938, 2.7949219, 1.9853516, 1.9082031, 0.8100586, 1.0732422, 0.47607422, -0.5854492, 0.7426758, 2.1015625, 1.2285156, 3.3554688, -0.5341797, 0.97998047, 0.64404297, -1.2539062, 0.97021484, 1.1669922, 2.4023438, -2.7714844, 0.7583008, 0.5449219, 1.4570312, -0.7529297, 1.0400391, -2.34375, -1.5595703, 0.23840332, -0.02420044, 3.6503906, -0.43188477, 0.35058594, 1.0166016, 1.9589844, 2.1679688, -3.0097656, 1.6210938, 2.5410156, -1.0283203, -1.3310547, 0.6044922, 1.3242188, 1.5087891, 0.34960938, 0.26342773, 1.6835938, 2.6738281, 0.18334961, -1.8417969, 1.2324219, -0.05505371, 1.9541016, 0.6425781, -1.8789062, -1.3144531, -1.0263672, -1.5664062, -3.1445312, 1.1191406, 1.3554688, 1.2851562, 1.1025391, -4.8476562, 1.0292969, 0.93359375, 1.9375, -1.3896484, -0.5566406, -0.52246094, -1.40625, -1.2998047, 1.2519531, -2.15625, 1.71875, 0.31762695, -1.7636719, 3.0332031, 1.5068359, 0.9975586, 0.7949219, 1.8759766, 0.61621094, 1.109375, -0.22131348, 1.7753906, 0.95703125, -0.13989258, 0.24963379, 3.0410156, 1.375, 1.1630859, 2.1523438, -0.82714844, 0.76464844, 2.0566406, 1.3574219, 1.9951172, -0.7265625, -1.0625, -0.7597656, 1.5175781, -0.43310547, -1.7607422, 2.5332031, 2.3632812, -0.13110352, 2.0332031, 1.0644531, -1.3417969, 1.8105469, 0.8925781, -0.45410156, 0.10870361, -0.65966797, 1.0224609, -0.9213867, -0.60839844, -0.8881836, 1.4150391, -0.09857178, -2.1386719, 0.021209717, -0.2763672, -0.60253906, -0.7714844, 1.4160156, -1.2216797, -0.44384766, -0.68847656, -0.26098633, -0.25854492, 2.1484375, 1.7099609, -1.6777344, -1.8671875, -2.234375, -0.097351074, -1.5205078, -2.7714844, 1.7822266, 4.0546875, 1.1660156, -1.9052734, -1.3613281, -2.1367188, -0.35180664, -1.4833984, 0.9682617, 0.6098633, -0.25756836, 0.10852051, 1.2216797, 1.7705078, -0.33813477, -2.1621094, -0.5517578, -1.2304688, 2.1171875, -1.2744141, 1.1875, -1.1494141, -0.15185547, 0.4267578, 1.8945312, 2.9511719, -0.13391113, 0.9941406, 3.0078125, -0.81884766, -2.8027344, -0.15673828, 1.5859375, 1.6328125, 1.0683594, 1.0400391, 1.2177734, 0.7294922, -0.22155762, -0.99560547, -1.9921875]}, "B00KM9ATAA": {"id": "B00KM9ATAA", "original": "Brand: EDMBG\nName: EDMBG 3 Pack Gas LIGHTERS 11\" Refillable Butane BBQ Kitchen Fireplace Grill Utility\nDescription: BBQ Grill Lighters - Extended Reach - 11\" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!\nFeatures: Extended Reach - 11\" total length\nSafety Lock - to keep safe from the little ones\nFlame Size Regulator - for all condition\nRefillable\n", "embedding": [-0.68359375, 0.29174805, 0.28295898, 0.039733887, -0.3474121, 1.4316406, 1.1787109, -0.2734375, 0.9399414, 0.984375, 0.26513672, 1.2167969, 0.5385742, -2.8300781, 1.2353516, 1.3505859, 1.109375, 0.79248047, 2.8242188, -0.34716797, -0.6713867, 0.023025513, 0.72216797, 0.15222168, 0.8095703, 0.58984375, 4.4453125, -2.9707031, 0.18115234, -1.8867188, 2.1230469, 0.90771484, -1.1152344, 1.8574219, -3.4453125, -0.59716797, -0.016677856, 0.35668945, -2.875, -1.2138672, -0.69921875, 0.44189453, 2.390625, -0.515625, -3.8046875, -1.4033203, 1.7441406, -0.4807129, 0.38549805, -2.3144531, 2.4804688, 2.0195312, -0.6591797, 0.33251953, -2.03125, 1.2910156, -0.45166016, -3.6503906, 1.2685547, -0.75097656, 3.1113281, 0.7475586, 0.16467285, 1.2197266, -1.1542969, -1.2167969, -1.6894531, -0.22338867, -0.17541504, -0.9692383, 2.875, 0.064819336, -1.03125, -0.46777344, 0.03744507, 0.92089844, -1.3896484, 3.2246094, 0.42456055, -0.56396484, 0.11590576, 3.8652344, 0.17858887, -1.1171875, 1.4599609, -1.3164062, -1.6005859, 0.5288086, 1.6074219, 0.7548828, -1.2587891, 0.65966797, -1.6865234, -4.1679688, 3.5175781, -1.2568359, 1.4677734, 1.3632812, 1.2880859, 0.42797852, -0.48388672, 0.29248047, -0.24853516, 0.15979004, -0.45898438, -0.7963867, 0.18701172, 2.4179688, -1.8037109, -0.09564209, -2.3769531, 0.38232422, 1.2763672, 1.0869141, -0.4814453, -1.2744141, -0.3942871, 1.5800781, 3.0664062, 1.1582031, 2.7382812, -0.9667969, 0.7944336, -1.7451172, 0.8378906, -0.859375, -0.32714844, 2.578125, 2.4648438, 0.39111328, -0.077697754, -0.049346924, 2.5527344, -1.8603516, -2.1464844, -2.25, -1.4433594, -2.2519531, -1.7539062, -0.7236328, -2.5546875, -0.08459473, 2.7675781, -2.1425781, -2.1367188, 1.3125, -2.0625, 0.4790039, 0.32788086, -2.4121094, 1.9921875, -0.86279297, -1.2744141, -0.7578125, 1.8427734, 0.6152344, -0.5961914, -0.43896484, 3.5371094, 1.8183594, -0.10192871, -1.2636719, -0.71728516, 0.7714844, -0.21228027, -1.7490234, -0.007045746, 1.4921875, -0.0881958, 1.1640625, 0.36889648, -1.1132812, 0.8051758, -0.37841797, -0.1459961, -2.0429688, -0.7397461, -0.024276733, 0.69921875, -0.8256836, -2.5898438, -2.4921875, 1.0449219, 0.07305908, 1.7304688, 0.6533203, -1.0234375, -1.15625, 0.7636719, -1.5322266, 0.12023926, 1.4345703, -2.9023438, 1.3623047, -0.29760742, -0.33520508, -1.7246094, -1.3154297, 0.31713867, 0.9013672, -0.56396484, -1.1591797, 0.6665039, 1.2021484, -1.7001953, -3.1503906, -0.8930664, 0.03265381, 1.6748047, 1.6367188, -0.12890625, -0.56396484, 2.8007812, -0.10089111, 1.5419922, -2.1386719, -0.10357666, -0.390625, 2.203125, 2.1523438, -1.4326172, -1.0146484, 1.0419922, 2.6347656, 0.1862793, 1.9482422, 0.46533203, -0.028213501, -3.0605469, -2.28125, 1.1318359, 1.0800781, 0.07098389, 0.030395508, 0.28564453, 2.7382812, 0.101745605, -0.6142578, 0.81689453, -0.4169922, 0.001912117, -0.1973877, -0.8251953, -0.36401367, 0.5263672, -0.8852539, 0.6958008, 0.7602539, 0.7583008, -0.7104492, 1.7714844, 1.2783203, -0.20898438, 1.3544922, -0.49047852, 0.29614258, -0.26879883, 1.7255859, -0.9770508, -0.16296387, 2.5957031, 1.7460938, 0.09210205, 1.6347656, 0.1361084, -0.45141602, 2.0625, 0.1328125, -1.6308594, -1.8017578, 0.8076172, 1.5869141, 0.8120117, 0.078063965, 3.6679688, -0.30908203, -0.7607422, 0.9604492, 1.0253906, -0.24035645, -0.16894531, 0.018829346, 2.6796875, -1.0927734, -0.19116211, -1.2177734, 0.3400879, -1.2724609, -0.0066719055, 0.3190918, 3.7851562, 0.39208984, -2.4667969, 3.8496094, -2.203125, 1.4003906, 0.8984375, -0.29760742, 0.8725586, -0.50097656, 2.1992188, 0.66064453, -0.12286377, 0.75439453, -0.46289062, -0.47387695, 2.1191406, -2.6328125, -1.7089844, 1.8710938, -1.1660156, 1.6191406, 0.5205078, 1.0126953, -2.1152344, -1.015625, 1.5908203, -2.09375, 0.34033203, 1.1376953, 1.1611328, 1.4482422, -0.52490234, -1.6191406, -1.8466797, 1.5556641, -1.78125, 0.6269531, 0.6933594, 0.43408203, 0.20947266, -0.7973633, -0.32861328, -0.7636719, -2.0898438, -1.4003906, -1.9404297, -3.5058594, 0.28808594, -0.87646484, -1.1435547, 0.5385742, -1.21875, 2.4921875, 0.88964844, -2.8867188, -0.25854492, -0.546875, 0.81640625, -1.1533203, -0.26513672, 1.6621094, -0.8769531, -3.1210938, 1.1738281, -0.03390503, 1.6230469, 0.12548828, -2.1757812, 1.5458984, 0.052612305, -0.67089844, -0.94433594, 1.3955078, 0.31347656, -1.1289062, 1.4248047, -3.9453125, -0.51953125, -2.1054688, 0.69628906, -0.9604492, -0.0635376, -1.9589844, -0.64160156, -0.83203125, -2.5136719, 1.0732422, -1.9179688, 0.57470703, -1.4365234, -0.33544922, 1.6953125, 1.2050781, -2.5527344, -0.6425781, 0.056274414, -0.22070312, -1.1738281, -3.3515625, 0.47705078, -0.3190918, -0.9165039, -0.3388672, 1.1513672, -0.609375, -0.11328125, -3.0234375, 0.05569458, 0.28979492, -0.23461914, -0.15649414, -0.80029297, 0.5566406, -0.068847656, -0.23400879, -0.8154297, -1.0244141, 2.2050781, -0.98535156, -0.5288086, -0.83691406, -1.1005859, -0.48901367, 0.5073242, -4.8203125, 1.1738281, 0.3413086, -3.2871094, 0.1821289, -1.2011719, -1.2675781, -3.0273438, -1.3115234, 2.5976562, -0.1730957, 2.4003906, 1.4179688, 0.46557617, -1.6679688, 0.43115234, -1.1708984, -0.89453125, 1.5390625, 2.6660156, -3.5429688, -4.078125, 0.54589844, 1.8974609, -2.4667969, -0.103515625, 0.80029297, -0.5078125, 1.2119141, -0.68359375, 2.8007812, 1.0810547, 0.4440918, 0.29052734, 0.7207031, -0.2927246, 1.6650391, -0.18713379, -1.2167969, -0.9707031, 2.2871094, 1.0722656, 1.0283203, 1.0849609, 2.2675781, 0.23388672, -2.2871094, 0.46850586, -0.5488281, 1.2421875, -0.26953125, 0.86572266, -0.79052734, -1.6650391, 0.515625, 0.4255371, 0.8154297, -0.8828125, 0.6894531, 2.2207031, 1.7763672, -0.4272461, 0.7207031, 0.3972168, -0.69189453, -0.90771484, 0.8779297, -0.73876953, -1.1962891, -1.0175781, -2.1835938, -0.26757812, -3.3945312, 1.0830078, -1.2783203, -1.5605469, -1.3789062, 1.4042969, -1.3212891, -1.0263672, -0.83447266, 1.3896484, -1.3896484, 1.5751953, 0.40356445, -2.6875, 2.0703125, -2.1308594, 0.20861816, 2.40625, -0.89697266, -1.0429688, -0.609375, -0.5942383, -0.2668457, 0.45996094, 2.2402344, 0.16149902, -1.1894531, 0.94140625, -2.6113281, -0.15075684, 0.25561523, -1.4453125, -0.3515625, 2.8691406, 0.7319336, 0.7338867, -0.18237305, 2.6894531, 0.57666016, 0.5625, 3.0917969, -1.5214844, -0.93115234, -0.24731445, -4.6054688, 0.118896484, -1.890625, 0.64746094, 1.6767578, -0.08380127, 0.8598633, 3.3105469, 1.4082031, -0.69677734, -1.5263672, -1.2861328, 0.8774414, -2.0214844, 0.0061302185, 1.8867188, 0.72216797, -3.5078125, -1.6728516, -2.6992188, -1.7646484, 1.1738281, 0.8725586, -2.1582031, 1.84375, -0.30908203, 1.0361328, -0.99902344, -0.5517578, 0.5107422, -0.8417969, -1.2675781, -1.1181641, 1.5283203, 0.23669434, 0.08929443, 0.4111328, 1.5068359, 0.5078125, -1.9462891, -1.28125, 1.8417969, 2.4140625, -1.0390625, -2.3144531, -0.29882812, -0.3005371, -0.15795898, -1.4521484, -1.2626953, -0.29370117, -2.4941406, 1.5908203, -0.12200928, 1.9375, 3.3691406, 0.21813965, -1.6845703, 1.6474609, 1.6875, -2.4921875, -1.1083984, -0.17260742, -2.8183594, 0.21044922, 0.36816406, -1.7861328, 0.60546875, -1.7890625, -0.8540039, -0.828125, 1.7431641, 1.5625, 0.95654297, 2.921875, 0.027740479, -0.16894531, 1.8857422, -2.390625, -0.45214844, 1.1660156, -1.5527344, 1.4980469, 1.1806641, 0.8173828, 0.70703125, -0.09350586, 1.0654297, -1.2519531, 0.5800781, -0.5336914, 0.8359375, -0.6513672, 0.57666016, -0.3088379, 0.6953125, 2.3964844, -3.8359375, 0.26391602, 0.9194336, 1.0039062, 0.21826172, 0.20056152, 2.0546875, 1.6435547, -0.80859375, 1.5283203, 3.8183594, 0.3137207, 1.1875, -1.3291016, 0.7402344, -1.5712891, -0.4868164, 0.99902344, -0.48510742, -0.9448242, -0.21655273, 2.2402344, 1.1064453, 0.72998047, 2.1503906, -0.066589355, -2.0722656, 1.6337891, 3.0488281, -2.5605469, -0.33544922, -0.7182617, -0.9628906, 2.28125, -0.16418457, -0.9550781, -0.0602417, 1.1943359, -0.4543457, 2.5410156, 0.51904297, -1.9570312, 0.7348633, -0.953125, 0.01524353, -1.3056641, -2.71875, 0.80810547, -1.9921875, 0.11383057, -1.5703125, 1.0683594, 2.9726562, 1.7890625, -1.8183594, 1.4794922, -0.33496094, 0.19787598, 1.546875, -0.07965088, -2.5039062, 0.71240234, 0.42211914, 0.42260742, 2.1035156, 1.2128906, 2.640625, -2.2773438, -1.4550781, -3.171875, 1.3916016, -1.1875, -0.1418457, 3.5546875, -1.296875, 1.5048828, -2.2695312, -0.2709961, 0.38598633, 2.9863281, 1.2412109, -0.6430664, -2.2421875, 1.2021484, -2.4277344, -3.875, -1.4716797, -0.87158203, -0.24353027, 0.10308838, 0.21716309, -0.60498047, 0.90771484, -0.94628906, -0.24780273, -0.9379883, 0.14233398, -1.890625, -0.2927246, -1.46875, 0.33789062, -1.0214844, 0.34033203, -0.016082764, 0.8886719, 0.50927734, -3.4707031, -1.1347656, 1.1875, -3.0957031, -1.5605469, 1.9677734, -0.76123047, 1.0751953, 1.5107422, 1.3476562, -1.8300781, 1.8017578, -2.1464844, 0.34814453, -1.8271484, -2.4082031, 1.6933594, -0.9082031, -0.27807617, -0.020019531, -2.9648438, 1.6220703, -1.4716797, -1.3896484, 0.2927246, -0.22143555, -0.37695312, 0.10046387, 0.953125, 1.3779297, 0.4543457, 0.34375, 0.45874023, -0.056121826, -3.6699219, -1.4648438, -0.72216797, -1.3867188, 0.40161133, -1.9785156, 0.8486328, -0.4921875, -0.87890625, 0.009086609, 2.3320312, 1.3017578, -0.5957031, 0.3959961, 0.07476807, 2.4394531, 2.1210938, -0.46533203, -2.5605469, -1.484375, 1.6806641, 2.09375, -0.9223633, -0.50634766, 1.1064453, -2.9707031, -0.13305664, -0.25952148, 1.7773438, 1.8515625, 0.9716797, -2.6171875, -0.18554688, 2.0039062, -2.453125, 3.0078125, 1.9355469, 1.3242188, -1.8232422, 1.9804688, -0.8925781, -2.796875, 0.7265625, -0.8388672, 0.5961914, -1.2685547, -2.3320312, -0.18115234, -1.6611328, -0.7480469, -0.94091797, -0.8413086, -3.3085938, 2.09375, 1.1767578, -2.2949219, -0.7841797, 3.9121094, -0.41308594, 2.5429688, 2.7480469, -0.13891602, -1.6933594, -2.3652344, -1.9121094, -1.6513672, 2.5214844, -2.2089844, -0.16345215, 1.6318359, -0.80126953, -0.074035645, 2.46875, 0.2368164, 0.34423828, 1.4453125, 0.85839844, 0.4189453, 0.9213867, 2.53125, -0.38012695, 1.4765625, 0.47924805, -1.3007812, 2.0488281, 2.4101562, 1.4404297, 0.4597168, -1.2167969, 1.6757812, -1.3339844, 0.4284668, -0.4423828, 0.26489258, 2.1875, -2.0175781, 1.2460938, 1.1435547, 1.8251953, -2.140625, -0.68408203, -1.1044922, 0.8203125, -0.5419922, 3.5253906, 2.4003906, 0.1842041, 1.1796875, 0.94140625, 1.2587891, 2.6269531, -1.7998047, -0.23864746, 1.2148438, -1.6240234, -0.54296875, 2.8535156, 0.53515625, 1.2880859, 0.91308594, 1.921875, 0.4921875, 0.2824707, 2.2011719, 0.09466553, -1.0019531, -0.9472656, 1.9804688, 0.83447266, -1.3798828, -0.109069824, -0.5463867, -2.5605469, -2.6640625, 1.9052734, 0.27514648, 0.93847656, 1.0087891, -2.4648438, 2.0410156, -0.8388672, 1.4375, -1.84375, 1.3134766, -1.2480469, -1.09375, -0.6796875, 1.1708984, 1.0888672, 1.1591797, 1.1953125, -2.1035156, 0.8510742, 2.3476562, 1.6425781, -0.2364502, 1.1601562, 0.22094727, -0.0011873245, -1.7900391, 1.8798828, -0.9086914, 0.76220703, -0.84033203, 3.53125, 1.0908203, 1.5693359, 0.072387695, -0.3972168, 0.65478516, 0.8144531, 1.21875, 0.4116211, -1.2705078, -2.2753906, -1.0302734, -0.48168945, 0.30493164, -0.8989258, 0.671875, 1.7119141, 0.046722412, 0.04055786, 1.3603516, -1.8349609, 2.2519531, -0.21655273, -1.9765625, 0.890625, -1.21875, -0.27294922, -0.18579102, 0.56396484, 0.4255371, 1.9882812, 1.9404297, -2.1972656, 0.9980469, -0.013389587, 1.0849609, -0.024642944, -1.3876953, -1.765625, -1.7089844, 0.11517334, -2.5195312, 0.890625, 2.3828125, 0.93408203, -0.71777344, 0.16137695, -1.3515625, 0.16760254, -0.33642578, -1.09375, 1.28125, 4.1367188, 1.4003906, -1.3115234, -1.1347656, -0.8847656, 0.39990234, -1.7373047, 1.4394531, 0.05847168, -1.4472656, 0.5097656, 0.052856445, 2.3886719, -0.47387695, -0.32080078, -0.49609375, 0.31054688, 1.0664062, -0.41845703, 1.7861328, -0.69921875, -0.06451416, 1.3935547, 1.7021484, 2.9414062, 0.51464844, 0.90966797, 0.42236328, 1.1220703, -1.0966797, -0.068847656, -0.27490234, 2.8613281, -0.066833496, 1.375, 1.5722656, -1.4160156, 1.3203125, -0.5180664, 0.51708984]}, "B00IZCNOXK": {"id": "B00IZCNOXK", "original": "Brand: Flame King\nName: Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black\nDescription: \nFeatures: RV/TRAILER COMPATIBLE - Flame King\u2019s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are!\nCOMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface\nMOUNTABLE or FREE STANDING \u2013 The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping!\nSECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces\nPLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48\" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96\" Quick Connect Regulator Hose, Item LPRH8\n", "embedding": [-3.0566406, 1.2910156, 0.7089844, 0.4482422, 1.3349609, -1.0058594, 0.9199219, 0.3076172, -0.15649414, 2.0976562, 1.8701172, -0.4650879, -1.3515625, -4.8789062, 0.37646484, 1.2226562, 0.55615234, -0.20263672, 1.0556641, -0.39501953, 1.7080078, 0.76660156, 0.06341553, -0.515625, 0.024047852, -1.1503906, 3.765625, -2.28125, 0.5546875, -0.82421875, 2.3339844, 0.3232422, 0.9458008, 2.5078125, -3.3125, -0.64160156, -1.28125, 0.37670898, -2.171875, -1.5058594, -0.28222656, -3.8027344, 0.93847656, 1.2021484, -1.7382812, 0.12866211, 1.0859375, 1.2060547, -0.7060547, 0.32666016, 3.6328125, 1.8359375, -0.38598633, 2.2988281, -0.875, 1.4912109, -0.75683594, -2.5097656, -0.36889648, 0.028579712, 2.8984375, -0.55859375, -2.5507812, 2.1113281, -1.0683594, 0.46655273, 2.4140625, 1.1962891, 1.2001953, 0.42504883, 1.2460938, -0.6801758, -1.3417969, -0.68603516, -0.17736816, 0.7944336, -3.7421875, 1.3095703, 1.1865234, 0.0050582886, -1.2939453, 2.9082031, 0.16357422, -2.3671875, 0.64453125, -1.4169922, -0.45581055, 0.24084473, 1.8066406, 1.3613281, 0.16308594, 3.0644531, -1.28125, -2.8925781, 2.0742188, 1.03125, 2.4199219, 0.6176758, 0.8041992, 2.0273438, 0.45410156, 0.6855469, -0.97265625, 0.3474121, -1.8417969, -1.5205078, 1.9482422, -1.3125, -2.5488281, 0.8027344, -0.5761719, 0.10101318, -0.10070801, 0.41088867, 0.17126465, 0.7285156, -0.8183594, 3.1445312, 0.54785156, -0.13745117, 3.1660156, -0.86376953, 1.0996094, -1.4316406, 2.1972656, 0.34936523, -0.046936035, 2.7089844, 5.6953125, -0.5341797, -1.1757812, 0.9394531, 3.25, -1.0595703, -0.5595703, -3.2753906, -0.40063477, -0.56884766, -4.7421875, -0.2841797, -1.1230469, -0.33447266, 2.5839844, 0.1541748, -3.4355469, -0.5048828, -0.017456055, 0.18676758, -1.3691406, -1.5703125, -0.52490234, -1.6416016, 1.7353516, -2.2753906, 1.734375, 0.5361328, 0.1928711, -2.4160156, 1.40625, 0.8930664, 0.7573242, -1.7128906, -1.9648438, 1.3164062, -0.85546875, -3.0507812, -1.2783203, 2.8554688, 0.3955078, 1.9619141, -0.1295166, -1.3398438, 0.21777344, 0.07287598, 1.4482422, -0.28955078, -2.1503906, 1.1923828, 0.6796875, 1.5253906, -2.3984375, -1.9101562, -0.7324219, -0.6933594, 0.070617676, -0.63183594, -0.87841797, -0.44213867, 2.8984375, -0.5932617, -0.016677856, 3.1972656, -0.9741211, 0.46557617, -1.0009766, -0.20715332, -3.3007812, -2.9824219, 1.0742188, 0.7973633, -0.46875, -0.5551758, 0.96240234, -0.77441406, -3.1132812, -3.0566406, -1.8662109, -0.010314941, 1.2597656, 2.015625, -0.119628906, 0.47216797, 2.2734375, -2.0859375, -1.2607422, -1.2177734, -0.2211914, 2.3964844, 1.7392578, 2.6640625, -0.17150879, -0.97998047, 2.0722656, 2.8144531, -0.08996582, 0.93847656, 0.68310547, 0.8876953, -2.0996094, -1.4160156, 1.1689453, 0.068481445, 1.0419922, 0.4831543, -2.0429688, 2.1894531, 1.6621094, -1.6083984, -0.29907227, 2.1425781, -1.2841797, -1.4902344, -1.0595703, -1.0380859, -0.9736328, 0.54052734, 0.21948242, 0.60595703, 1.0849609, 0.32202148, -1.9326172, 1.0009766, 0.5776367, 0.0028152466, -0.0075187683, 0.04345703, 0.5830078, 0.95410156, -0.97265625, -2.8671875, 1.2949219, -0.6621094, -1.9501953, 2.2011719, -1.1982422, -1.3681641, 4.515625, 1.7861328, -3.3808594, -0.60009766, -1.2958984, -0.67285156, 1.9580078, -0.44580078, 1.8447266, 0.16088867, -0.8125, 3.7128906, 0.03756714, 0.51708984, -0.6069336, 0.46264648, 0.44848633, -2.0078125, -1.6083984, -0.9589844, -1.140625, -0.7207031, 1.3964844, 1.4794922, 3.8359375, 0.6508789, -3.8789062, 2.6503906, -1.0859375, 0.013404846, 2.8867188, -1.4169922, 2.2285156, 0.7626953, 0.63623047, 1.4189453, -0.66259766, 0.80566406, -1.2871094, -0.51171875, 0.95703125, -2.2148438, -0.20678711, 0.4321289, -1.8642578, -0.032714844, -2.7734375, 0.3293457, 1.3046875, -0.35131836, 2.5234375, -1.8164062, 1.2871094, 2.0214844, -0.8984375, 0.65234375, -0.23022461, -1.7070312, -0.38208008, 1.1220703, 0.09576416, -0.20483398, -0.2915039, 0.30273438, -0.14282227, -0.19909668, 0.80126953, -1.4628906, -1.5341797, -2.2519531, -0.7895508, -3.3789062, 0.64697266, -1.0507812, -1.2607422, -0.17944336, -1.8408203, 1.2460938, -0.4489746, -4.3242188, 0.4194336, 1.0048828, -0.49047852, 2.7109375, 0.08569336, 2.09375, 2.0742188, -2.1289062, 1.2148438, 0.14697266, 2.09375, 1.6982422, -1.7539062, 0.19348145, -0.9091797, -0.19482422, -1.2099609, -0.60546875, 0.578125, -1, 1.7519531, -2.3046875, 0.3408203, -1.2871094, -0.18945312, -0.59716797, -0.2705078, -2.3007812, -2.5839844, -0.22668457, -1.6738281, 1.5068359, 0.515625, 1.1601562, -2.1699219, 0.67041016, 1.0488281, 1.1445312, -0.6430664, -1.2695312, 0.61865234, -2.5546875, -2.9296875, -4.4453125, 0.035064697, 0.15319824, -0.119140625, -2.1796875, 0.48901367, -1.1875, 2.1875, -2.5625, 0.7993164, -0.99902344, 2.1640625, -1.3681641, -1.2773438, -2.2246094, -1.7822266, -2.2167969, -1.9189453, -2.5878906, 1.6669922, -1.7363281, -0.43041992, -0.28295898, -1.4150391, 1.2890625, -1.4208984, -4.0117188, 3.4667969, 0.89697266, -0.9394531, 3.1269531, -2.0429688, -0.81103516, -2.6328125, -1.7148438, 4.9570312, 0.8613281, 1.6113281, -0.87402344, -0.7373047, 1.8457031, 0.83203125, -0.43896484, 1.1787109, -0.5332031, 4.4882812, -1.9453125, -1.7822266, 0.20947266, 1.0517578, -2.4042969, 1.0224609, 1.4951172, -0.35742188, 1.3203125, 1.4199219, 2.2753906, -2.0136719, -0.7163086, 1.0419922, 2.5800781, 2.4160156, -0.5991211, -0.9667969, -0.6777344, -0.93847656, 1.0771484, 1.9326172, 1.3964844, 2.7871094, 1.8955078, 0.30859375, -0.98828125, 0.06744385, 0.28686523, 2.8808594, 1.0185547, 1.2958984, -0.61376953, -0.53808594, -1.5693359, -0.82470703, 1.0126953, -0.12133789, -0.96533203, 2.4160156, 1.7763672, 0.31103516, 1.0537109, -0.14440918, -2.0976562, -1.375, 2.5371094, -3.1464844, 0.9169922, 1.2929688, -2.6796875, -0.23278809, -3.984375, 3.2636719, -1.0214844, 0.51660156, 0.23120117, 1.9355469, -0.38330078, -1.0039062, 1.6416016, -0.22216797, -1.828125, 1.6083984, 1.3710938, -3.7578125, 0.64990234, -2.3671875, 1.1845703, 0.94677734, -1.3886719, 0.2849121, 1.3691406, 1.0810547, 0.27075195, -0.13110352, 1.3525391, 0.41723633, -0.44189453, 0.5395508, -3.2109375, 0.7705078, 0.5566406, 0.48754883, -1.5029297, 3.0507812, 0.5678711, 0.20056152, -1.9326172, 5.6523438, -1.1728516, 0.78515625, 2.6914062, -2.3554688, -0.27075195, -2.6367188, -3.984375, 2.1015625, -3.0585938, -1.7001953, 1.5048828, 0.60009766, -0.21386719, 0.61035156, 0.671875, 0.66845703, 1.1689453, -1.6142578, 0.7763672, -3.1699219, 1.2841797, 1.5664062, 0.45410156, -2.3105469, -2.0722656, -1.2294922, 0.19812012, 1.9160156, 2.6464844, -2.9199219, -0.27539062, -0.57714844, -0.73779297, 1.2167969, -0.14562988, 2.0976562, -0.65283203, 0.21655273, -1.4375, 1.9189453, 2.5664062, -0.3137207, 0.3022461, -1.1357422, -0.4423828, -2.1875, -2.7226562, 0.7373047, 3.1054688, -0.50146484, -3.3144531, -2.8105469, 0.96240234, -0.82910156, -2.359375, 1.2070312, 0.119384766, -1.3564453, 5.0585938, 0.4013672, 2.8359375, 1.5839844, -0.09649658, -1.8691406, -1.1601562, -0.6220703, -0.5522461, -1.2558594, -1.3417969, -0.48535156, -1.8134766, 0.42797852, -2.5351562, -1.1083984, -3.1152344, -0.45458984, -3.2890625, 2.2753906, 2.2675781, 2.8066406, 2.5957031, 0.6582031, 0.66845703, 0.81884766, -2.9316406, -2.4453125, 2.7089844, -1.0888672, -0.7368164, 2.3671875, -0.24584961, -0.4868164, -0.40576172, 1.6142578, -0.6464844, -1.8310547, -0.11071777, 0.80078125, -2.75, -0.5336914, 2.4589844, 0.5336914, 3.2285156, -2.6757812, -0.16259766, 1.8173828, 0.93652344, -0.73779297, 1.4462891, -0.32617188, 1.1582031, 1.8886719, 2.1464844, 1.2460938, -0.59716797, 1.3349609, -1.4970703, 2.2304688, -2.3457031, -0.2631836, -0.76171875, 0.45874023, -1.3222656, 0.2770996, 2.765625, 1.3808594, -0.4584961, 2.0234375, 0.20397949, -2.2753906, 0.8120117, 0.8852539, -4.5273438, -2.5820312, 0.5991211, -0.54589844, 2.9726562, -0.7597656, -3.0214844, -0.49536133, 3.0527344, 0.75146484, 1.0546875, 0.765625, -1.1894531, 0.18884277, -2.0527344, -0.107910156, -0.038116455, -1.0371094, 2.1113281, -1.3515625, 1.1865234, -1.8085938, 0.7348633, -0.5449219, -0.03250122, -0.86865234, 1.2666016, -1.8173828, -0.54833984, 0.95410156, 1.3925781, -3.0722656, -1.6875, 0.83984375, 0.7558594, 0.6875, 0.3540039, 0.8051758, -1.7675781, 0.38842773, -2.7011719, 2.2226562, -1.171875, -0.47851562, 2.2011719, -2.4804688, 1.7216797, -1.4189453, 1.2998047, -0.80566406, 2.0546875, 2.3105469, -1.8847656, 0.36621094, 0.10852051, -1.3671875, -4.1679688, -1.7617188, -0.5029297, 0.4182129, -0.0848999, 1, -1.7832031, -1.2880859, 1.0175781, -1.7861328, -1.0234375, -0.70947266, -1.6308594, 0.0770874, -1.1337891, 1.6845703, 0.14111328, 0.76904297, 1.5664062, 0.7949219, -0.3359375, -2.8886719, -0.6899414, 2.1796875, -0.6401367, 0.52783203, 0.5751953, -1.2207031, 0.60253906, 1.4833984, 0.65722656, -3.3300781, 3.2675781, -3.0859375, 0.75390625, 1.3808594, -1.5078125, -0.8330078, -0.20153809, -3.3242188, 1.3974609, -1.734375, 1.7675781, 0.2783203, -2.484375, -2.5195312, 2.0742188, -3.6464844, -0.6489258, 1.3095703, 1.5175781, 0.70947266, 0.35253906, -2.2382812, -0.8911133, -1.7421875, -2.4355469, 0.8613281, -3.6074219, -1.4326172, -0.89746094, 1.7861328, 0.119628906, -0.8334961, 0.30273438, 0.66308594, 0.21594238, -1.2294922, 0.9169922, -0.87353516, 3.1308594, 2.3847656, -1.0097656, 0.16381836, -1.0664062, -0.31225586, 1.8164062, 0.99560547, -1.8583984, -0.1081543, -1.0019531, 1.875, 0.13757324, 1.3310547, 2.6855469, 0.21984863, -0.17883301, 0.6020508, 3.1992188, -0.37280273, 2.7558594, 0.8051758, 1.3984375, 0.26123047, 3.4667969, 0.66552734, -3.0332031, 1.2119141, 0.17370605, 1.5742188, -0.7607422, -1.5654297, 0.47973633, -1.1542969, -2.7128906, 0.8847656, -2.3378906, -5.3671875, 2.3535156, 0.9970703, -1.2197266, -0.9082031, 1.8476562, 1.0263672, 1.6210938, 2.1484375, 0.6074219, 0.39379883, 1.0791016, -0.20336914, -0.33691406, 0.11273193, -1.4716797, 0.20410156, 1.3964844, -1.2929688, 0.09643555, 2.109375, -0.54345703, 3.5878906, 1.9248047, 0.7397461, 3.9589844, 0.2541504, 2.4453125, -0.5551758, 1.3457031, 2.1269531, 0.12902832, 0.44189453, 1.3837891, 3.4824219, -0.9277344, -1.9375, 2.046875, 0.72021484, 0.47436523, 0.40722656, 0.8564453, 0.30078125, -1.7626953, 2.2167969, -0.18566895, 0.2998047, -1.5732422, 0.5493164, -2.4472656, 0.28295898, -0.68847656, 0.84716797, 2.2382812, -0.23132324, 0.875, 0.28393555, 2.1542969, 0.9506836, -2.6914062, -1.1738281, 0.9169922, -0.8432617, -0.14123535, 1.9873047, 0.88183594, -0.35668945, 1.0195312, 1.9628906, 0.54296875, 0.07952881, -0.66796875, -1.3173828, 1.7060547, 0.068725586, 1.5898438, 0.22302246, -1.8916016, 1.8916016, -0.31152344, -3.25, -4, 2.3144531, -1.5400391, -0.8676758, 0.35205078, -1.9521484, 1.3330078, 1.2705078, 1.0039062, -2.6816406, 1.0693359, -1.4980469, -0.79785156, -0.48388672, 0.6850586, 0.11505127, 2.5058594, 1.3154297, -1.9599609, 2.3085938, 7.1525574e-06, 1.4228516, 1.8564453, 2.0507812, -0.74365234, 0.55859375, -1.2558594, 2.7324219, 0.54052734, -1.0537109, -0.9116211, 2.6738281, 0.85058594, -0.3618164, -0.1005249, -1.8496094, 0.2915039, -0.41381836, 0.53515625, 0.29663086, -2.6660156, -1.3720703, -1.3291016, 1.3505859, -0.52197266, -2.3085938, 0.0024909973, 2.4238281, -0.2565918, 0.4025879, 2.3632812, -0.5083008, 1.2402344, 1.2207031, -0.99072266, 0.09838867, 0.50878906, 0.8720703, 0.53271484, -1.8222656, 2.515625, 2.4433594, 1.34375, -1.2792969, 0.37402344, -0.8154297, 0.9350586, -0.74560547, 0.7519531, -1.2431641, -0.9067383, 1.1494141, -1.0615234, 1.3603516, 3.3242188, -0.42773438, -0.11846924, -1.6083984, -1.0957031, -1.1396484, 0.41503906, -2.2792969, -1.5732422, 2.3046875, 2.6972656, -2.0898438, -1.5107422, -2.8085938, 0.06817627, -0.49414062, 1.8154297, -0.7319336, -2.4550781, 0.57714844, -1.453125, 1.0888672, 0.7158203, -0.05368042, -0.6308594, -0.07397461, 1.0371094, -0.9316406, 1.7490234, 0.2084961, -0.18139648, -0.90283203, 2.0800781, 1.9482422, 1.0878906, 0.6791992, 0.5419922, -0.031921387, -0.9506836, -0.28295898, -1.7314453, 0.6459961, 0.48486328, 0.7519531, 1.6914062, 2.2070312, 0.38867188, -3.7167969, -2.0722656]}, "B00FL8LL7M": {"id": "B00FL8LL7M", "original": "Brand: Hiland\nName: Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb\nDescription: \nFeatures: Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it\nOur fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes\nHeat Rating: Higher temperature when compared to logs, lava rocks, stones, etc.\nIdeal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires\nAvailable in 10 and 20 pounds\n", "embedding": [-0.12194824, 1.4042969, 2.1972656, 0.20385742, 0.92578125, 2.6601562, -0.14831543, -1.2246094, -0.2166748, 1.7236328, -1.9833984, -0.97802734, -2.7441406, -2.5722656, 0.26733398, -1.2089844, 0.4333496, 0.24841309, 1.6669922, 0.4729004, 2.8984375, 0.91308594, 0.4008789, 1.3798828, 1.0205078, 0.53466797, 2.2148438, -2.1875, 1.2197266, 0.12084961, 1.6591797, 1.1367188, -0.9770508, 1.6132812, -1.3261719, -2.640625, 0.54052734, 1.6308594, -2.4394531, -0.39990234, -2.2519531, 0.20397949, 2.3691406, 0.7338867, -0.5805664, 0.78027344, 1.5585938, 0.80908203, -0.24279785, 0.0072021484, -1.4394531, 2.453125, -1.0507812, -0.55566406, -0.36450195, 1.7792969, -2.7734375, -3.5273438, 1.9414062, -0.7661133, 1.4833984, -1.3408203, 0.37670898, 0.58154297, 0.059326172, 0.6796875, -0.63916016, -1.4716797, 0.23510742, -0.3479004, 0.9980469, -0.6982422, 0.13391113, 0.95703125, -1.4365234, -0.6738281, -0.7246094, 2.5273438, 1.8583984, 0.25268555, 0.084472656, 1.3857422, 0.6772461, -1.7558594, -1.3603516, -0.5595703, 0.29638672, -2.0625, -1.0439453, 0.4230957, 1.6738281, 2.0683594, 1.0234375, -4.375, 1.3994141, -2.8320312, -0.01637268, 0.45532227, -0.53808594, 0.98583984, 0.9707031, -0.39819336, -0.59033203, 0.93115234, -2.8242188, 0.80078125, 1.6894531, 2.0996094, 1.0205078, 0.7841797, -0.4309082, 1.0527344, 1.2841797, 0.7495117, -0.18188477, -0.74072266, 2.2871094, -0.37670898, 0.8730469, 2.3515625, 2.4003906, -1.9804688, -0.27392578, -1.5214844, -1.1015625, 0.87646484, 0.5698242, -0.47729492, 1.03125, 0.09210205, 1.6982422, 0.73291016, 1.1464844, 0.51904297, -1.90625, -0.26220703, -0.87158203, -0.6044922, -3.7265625, -0.085754395, -1.7753906, 2.7617188, -0.5566406, -0.8027344, -2.9628906, 0.5756836, -1.5742188, 1.1162109, -1.5966797, -2.515625, 1.0244141, 0.5234375, 1.5898438, -1.9013672, 1.2226562, -0.9296875, 1.9970703, 0.054107666, 2.0566406, 0.7915039, -0.6982422, 0.78564453, -1.2939453, 0.7675781, -2.6933594, 0.18261719, 1.8242188, 0.42382812, -0.73046875, 0.6044922, -1.8564453, -1.609375, 0.006614685, 1.765625, 0.7871094, -0.4248047, 0.6484375, -0.5136719, 1.6914062, -0.107910156, -1.484375, -2.1914062, 1.5839844, -0.6279297, 1.0087891, -0.29663086, -1.3085938, -1.7216797, -0.25170898, -1.4277344, -0.7675781, 0.04949951, -0.9375, 0.8510742, -0.30517578, -0.07458496, -2.8457031, -3.0644531, 1.6601562, -0.54833984, -1.5214844, 1.4160156, 0.049072266, 1.2158203, -2.0371094, -1.1230469, -0.51953125, -0.4921875, 2.6328125, 0.82421875, -0.28979492, -0.5151367, 1.3115234, 1.5351562, 0.11193848, -2.5683594, -0.9741211, -0.08581543, 0.87158203, -0.060302734, 0.6040039, 0.19226074, 1.5810547, 2.0625, 0.92822266, 0.018630981, 2.0253906, 0.69189453, -2.8105469, -1.0605469, 2.6171875, 1.6914062, -0.4489746, 0.7246094, -0.22827148, 3.7109375, 0.37329102, 0.859375, 2.3632812, -1.3681641, -1.9902344, -1.1611328, -0.98291016, 0.17053223, -1.1816406, 1.9003906, 0.74072266, 1.6601562, 1.9130859, -1.8300781, -0.39404297, 2.171875, 1.4990234, 1.5703125, 0.90234375, -0.053100586, -0.9482422, -0.6430664, 1.7402344, -1.4375, 2.0078125, -0.25097656, 0.30371094, 0.7529297, -1.8339844, -2.7363281, -0.8125, 0.16113281, -1.2382812, -0.057922363, -0.14904785, 0.15917969, 2.3945312, -2.6425781, 1.2197266, -0.10913086, 0.121398926, 3.1660156, -0.6245117, 2.5683594, 0.17236328, 0.7109375, 1.2509766, -0.6513672, -1.4394531, 0.5517578, 3.3417969, -0.84765625, 0.19665527, -1.8984375, 3.6347656, -0.3635254, -0.8105469, 1.640625, 0.76904297, 0.65625, 1.5166016, -0.1763916, -1.59375, -0.68652344, 2.9160156, 2.0117188, 0.03857422, 0.8808594, -3.4921875, 0.5620117, 2.5078125, -1.2958984, 0.62939453, 0.83154297, 2.453125, 0.42138672, -2.1328125, 1.9394531, -5.234375, -0.4560547, 2.6796875, -1.0126953, 1.3056641, -1.2919922, 0.12438965, 2.7304688, -1.5097656, 0.05911255, -1.1191406, 3.078125, -1.6083984, 2.4472656, -0.27026367, 1.2636719, -2.8574219, -2.0742188, -1.9814453, -1.3759766, -0.80322266, -2.3613281, 1.2158203, -0.62597656, 2.0898438, -2.1074219, -0.27978516, 1.8554688, -0.26464844, 1.1064453, -1.1035156, -1.390625, -0.56689453, 1.625, 0.42163086, 1.0410156, 0.21679688, 2.765625, -1.40625, -2.4316406, -2.8632812, -1.4941406, 0.5234375, 0.5595703, 0.6328125, -0.32861328, 1.2304688, 0.27807617, 2.5898438, -1.6982422, -0.39404297, 0.78808594, -1.0361328, -4.8710938, 0.85302734, -2.2128906, 0.8222656, -1.0058594, -0.36279297, 0.07867432, -0.26635742, 0.61816406, 0.2541504, 2.9082031, 0.21801758, 3.1601562, -1.5234375, 0.2541504, -1.8916016, -0.111816406, -2.9863281, -0.5498047, -1.8212891, -1.2265625, -0.99072266, -2.6582031, 0.6376953, -0.63671875, -0.3046875, -0.04296875, 0.14978027, 0.23425293, 0.09313965, -0.921875, -0.117004395, -0.08117676, 0.43823242, -0.09350586, 2.3027344, 0.51220703, -0.765625, -1.515625, -1.1787109, 1.6181641, 1.0478516, -0.546875, 0.51416016, 0.8618164, 0.010536194, 0.5229492, 0.7631836, -3.2109375, 0.43603516, 2.9804688, -0.7836914, 1.8408203, -0.5908203, -1.6376953, -2.6171875, 1.4511719, 2.3476562, 1.109375, -0.2854004, 1.0712891, 0.61621094, 0.70751953, 0.76708984, -0.20788574, 0.3095703, -1.4902344, 1.484375, -2.8085938, -3.390625, 0.28442383, 2.6074219, -4.0195312, -1.3310547, 0.49194336, -0.4934082, 1.8271484, -1.0419922, 1.7041016, 1.6855469, -0.40966797, 0.34399414, -0.42895508, 0.84277344, 1.3974609, 0.4206543, 1.5576172, -0.06021118, -0.39160156, 1.0566406, 0.6010742, 1.0898438, 1.2636719, -0.35083008, -1.1943359, 0.57958984, -0.012649536, 0.55810547, -2.5449219, 1.8115234, 0.3239746, -0.6269531, 2.3320312, 0.28686523, 0.8925781, -1.4033203, -2.3632812, -1.1914062, -0.11053467, -1.9882812, -1.8144531, 0.7963867, -1.4238281, -1.9482422, -0.29467773, -0.5102539, 0.40405273, 0.053894043, -1.6191406, -0.23242188, -0.1899414, 2.8417969, -0.68896484, -0.9892578, -1.2763672, 2.3789062, -2.8378906, -0.74072266, -0.50683594, -2.1171875, 1.8388672, 1.8984375, -1.3837891, 0.9892578, 1.5673828, -2.5820312, -0.1817627, 0.93115234, 0.23352051, 1.7978516, -0.8779297, 0.5522461, -1.1279297, 1.5546875, 0.2939453, -1.078125, -1.8691406, 0.2064209, -1.5361328, -0.64501953, 2.2578125, -0.2220459, -0.31274414, 2.5761719, -0.29614258, 0.26904297, 0.24707031, 1.6367188, 0.68652344, -0.5966797, 1.1904297, 0.11364746, -1.1289062, -1.3789062, -3.5019531, -1.0166016, -3.1992188, 0.3557129, 1.3857422, -0.6904297, 0.29248047, 0.05911255, 1.5068359, -2.5078125, -1.5253906, -1.9912109, -0.921875, -1.1689453, 0.081970215, -0.17907715, 0.24804688, -3.0117188, -1.0703125, 0.91552734, -0.67871094, 0.30395508, -0.15136719, -1.5546875, 0.25683594, 0.10192871, -0.6645508, 0.41357422, 0.09112549, 0.05960083, -1.0478516, 0.42138672, -0.06866455, 4.3945312, -0.44970703, -1.15625, 1.6542969, 2.5605469, 1.2226562, -0.28271484, 0.3227539, 0.48413086, 2.7421875, 0.42407227, -1.3896484, -0.8466797, -0.85595703, 0.39770508, -0.29223633, 0.27661133, 0.0496521, -2.3222656, 1.6279297, 0.07635498, 1.5898438, 0.7915039, -1.0048828, -0.11102295, 0.21960449, -0.8618164, -1.3583984, -1.8232422, 0.11413574, -2.0722656, -1.4414062, 0.076171875, -1.7509766, 1.3291016, 1.4287109, 0.4489746, -2.9472656, 1.1191406, 2.4453125, 1.6826172, 2.3144531, -3.96875, -2.0820312, 2.7675781, -2.3769531, 0.31201172, 0.13781738, -0.25073242, 0.45361328, -1.0537109, -0.6020508, 0.97314453, -0.48413086, 0.71191406, -0.8491211, 0.31347656, -0.8144531, -2.8828125, -2.4414062, 1.7783203, -0.81591797, 0.043426514, 0.95654297, -0.8232422, -0.99316406, -0.4020996, 1.0585938, 1.1708984, -0.80908203, 0.12890625, 0.19824219, 2.8828125, 2.9355469, 1.2724609, 1.7958984, 1.5097656, 0.5463867, 2.2421875, -0.050079346, 2.0449219, -0.17492676, -1.1132812, -0.23522949, 0.52685547, 2.3007812, 1.6132812, -0.58203125, 1.6962891, -1.6962891, -0.6098633, 1.8339844, 0.99560547, -1.6689453, 1.4365234, -0.8754883, -2.6875, 2.2929688, -2.3417969, -1.0380859, -0.86035156, 1.8144531, -0.33276367, 2.6621094, 0.76123047, -0.5214844, 0.070739746, 1.0625, -1.5732422, -0.45581055, 0.2376709, -1.6386719, -0.54296875, -1.0166016, -0.40527344, 1.2802734, 0.36645508, 0.09338379, -0.3557129, 1.7714844, 0.85302734, 0.44091797, 0.03555298, 0.57128906, -0.7998047, 0.42236328, -0.6381836, 1.7509766, 1.8144531, 0.55566406, 3.1328125, -0.95166016, -0.60791016, -3.0175781, 0.44458008, -2.3730469, -0.2578125, 0.71777344, -0.98046875, 0.19836426, -2.9179688, -1.0097656, -1.1123047, -0.3876953, 2.0820312, 0.6015625, -2.0136719, -0.828125, -3.2070312, -1.7529297, -2.296875, -2.4609375, -1.9228516, 1.3242188, -0.4206543, -1.3457031, -2.3242188, 0.19238281, -0.013023376, 1.0039062, 0.3942871, -1.53125, -1.6689453, -1.1738281, -0.031433105, 0.2841797, -0.57958984, -0.05645752, -0.046447754, -0.15124512, -1.3232422, -0.921875, 1.1855469, -1.4785156, 1.0410156, 0.4658203, 0.39013672, 1.3359375, 2.171875, 0.19262695, -0.5756836, 2.7519531, 0.48217773, 1.8847656, 2.4511719, -1.3183594, 3.453125, -0.13684082, -1.484375, -0.22045898, 0.30932617, 0.42700195, -1.1416016, 0.07269287, 0.8378906, 1.3066406, -0.11816406, 0.8779297, 0.36621094, 1.0361328, 1.2841797, 1.0078125, -1.3183594, -0.6166992, -2.59375, -2.4765625, -2.2363281, -3.4160156, -0.43115234, -0.7392578, 3.8261719, 1.3505859, 1.0761719, 1.9316406, 2.7519531, -0.7470703, -1.2060547, 2.7441406, 0.7792969, 1.2939453, 1.0146484, -1.4033203, -4.0039062, -2.4472656, -0.9692383, 0.9921875, -0.47021484, -0.6303711, -1.7441406, -2.2128906, -3.2578125, 0.36547852, 0.9770508, 2.2597656, 1.7792969, -0.6855469, 1.6054688, 1.1757812, -2.2089844, 2.4960938, -0.17041016, 3.0683594, -1.2441406, 2.1738281, 1.4169922, -0.07598877, 1.5449219, -2.3261719, 1.5341797, -0.5444336, 0.020187378, -0.05697632, -1.9521484, 1.3125, 1.0166016, 0.69433594, -2.4375, 0.7338867, -1.0888672, -0.76464844, -0.24853516, 0.16699219, 0.122558594, 1.8164062, 3.2753906, 1.2851562, -1.2539062, -2.4238281, -1.1171875, -1.6796875, 0.5175781, -0.099731445, 0.05255127, 1.484375, -0.114990234, -1.8300781, -0.6933594, -0.4116211, 1.2265625, 1.7285156, 4.3945312, 0.671875, 1.9111328, 2.0117188, -0.66064453, -0.2529297, 2.8105469, -2.6074219, 0.14868164, 0.37158203, 1.5615234, 1.0341797, 1.6259766, -0.3100586, 0.3876953, -1.9033203, -2.0625, 0.13671875, -0.24145508, -2.09375, 2.3535156, -0.6171875, 0.28027344, -3.25, 1.4140625, -0.09460449, -0.84765625, 0.007297516, -1.5986328, 2.6171875, 2.0976562, -0.41088867, -0.9995117, 0.9707031, 2.2558594, -3.4980469, 1.2685547, 1.609375, -1.8583984, -0.42211914, 3.5722656, 1.1660156, 1.3710938, 0.20361328, 1.3466797, -0.36547852, 3.0625, 1.1103516, -0.9501953, 0.45361328, 1.8134766, 0.050872803, 0.9453125, -1.2832031, -0.06866455, -0.63671875, -1.765625, -2.1347656, 1.3486328, 1.4072266, 2.2636719, 2.40625, -1.6953125, 0.41674805, -0.017974854, 1.3173828, -2.9179688, -0.050109863, -0.6230469, -0.6381836, -0.9458008, 1.7265625, -0.96972656, 1.2763672, 1.9492188, -0.46704102, -0.080444336, 0.11633301, 0.21826172, -1.6738281, 1.9462891, 0.25805664, -1.7597656, -0.69140625, 1.6054688, 0.6074219, -0.5517578, -1.1416016, 3.5878906, 0.43969727, -0.5371094, 1.3876953, -0.7705078, 1.4648438, 0.027694702, 1.0546875, -0.5029297, 0.9916992, -4.515625, -2.2011719, 0.52978516, -0.85595703, -1.6064453, 3.7832031, -0.42333984, -2.0273438, -2.2226562, 1.2792969, -1.4970703, -0.24645996, -0.31762695, -1.1455078, -0.7836914, -2.2871094, 3.4472656, -1.6669922, -2.3515625, -0.35986328, 1.8330078, 1.9658203, -1.4941406, -0.36547852, -0.64746094, 1.9990234, -1.1435547, 1.71875, -1.3935547, -0.7705078, 1.2763672, -0.6977539, 0.25976562, 0.66015625, -0.5004883, -1.375, 1.90625, -1.3007812, 0.36547852, -0.4946289, -1.3183594, 0.91552734, 4.6015625, 3.1328125, 0.9067383, -1.3837891, -3.71875, -1.3945312, -0.36694336, 0.51904297, -0.60791016, -1.21875, 0.05996704, 1.1865234, 2.4121094, 1.3916016, -1.1552734, -0.3190918, -1.1210938, 2.5, -1.1835938, 2.796875, -0.2734375, -1.0380859, 0.3203125, 1.3720703, 0.08856201, 1.4423828, 2.3886719, 0.8173828, 1.2441406, -1.7490234, -0.9169922, -1.2519531, 1.75, 2.1679688, 0.15795898, -0.25610352, 0.6015625, -2.3867188, -3.8417969, -1.2265625]}, "B07Y337Y8T": {"id": "B07Y337Y8T", "original": "Brand: COSIEST\nName: COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover\nDescription: \nFeatures: \u2705\u3010 Great Bowls of Fire! \u3011: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party\u2019s just begun in patio space or backyard.\n\u2705\u3010 Rockin\u2019 Bowl \u3011: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob.\n\u2705\u3010 Fire is so Delightful \u3011: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady.\n\u2705\u3010 Weights and Measures \u3011: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you\u2019ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people.\n\u2705\u3010 Warranty and Service \u3011: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!\n", "embedding": [-1.1542969, 1.6806641, 1.6074219, -1.3378906, 0.06762695, -0.11206055, 1.1259766, -2.6152344, -0.011245728, 1.0917969, -1.1132812, 1.8242188, -0.18408203, -4.359375, 0.80566406, -0.6640625, -0.43017578, -0.3869629, 0.32836914, 0.6904297, 2.8632812, -0.69189453, 1.4589844, -0.7011719, 2.6933594, 1.4853516, 3.0097656, -4.2539062, -1.6191406, 0.15771484, 1.4238281, 1.0419922, -0.5366211, 1.6845703, -3.046875, -1.890625, -0.69970703, 2.4433594, -2.6875, 0.2553711, -1.9433594, -0.26879883, 2.7207031, 1.2900391, -2.9394531, 1.4335938, 0.38891602, 0.2084961, -0.4074707, -2.0019531, -0.114868164, 1.3505859, 1.2402344, 0.52783203, -1.4550781, 1.4423828, -1.0742188, -2.0957031, 3.5195312, 0.9301758, 0.98583984, -1.1181641, -1.4042969, 1.8066406, -1.3974609, 0.90722656, -1.2255859, -0.5473633, -1.0644531, -0.16491699, 0.54345703, 0.112854004, -0.09692383, 0.4333496, 0.4729004, -1.15625, -0.8066406, 0.8857422, 1.6767578, -0.82128906, -0.67578125, 3.3300781, 1.0292969, -1.1357422, 0.035186768, -0.11669922, -1.8603516, -0.28222656, -1.0683594, 0.68603516, -0.4333496, 2.484375, -0.90771484, -5.046875, 0.5473633, -1.8691406, 0.02709961, -1.2548828, -0.7241211, 1.0908203, -0.7709961, 1.1298828, -1.6152344, 0.26391602, -2.3671875, 0.18261719, 1.0732422, 0.24450684, -0.67285156, -0.9790039, -0.6015625, -0.05960083, 1.3515625, 0.29833984, 1.2060547, 1.3535156, 0.5620117, -0.4440918, 3.6347656, 0.40600586, 4.5664062, -0.5439453, -0.12585449, -1.1035156, 0.26391602, 1.9824219, -2.8515625, 1.4306641, 1.7197266, -2.0175781, 0.6401367, -0.68408203, 1.6279297, -0.17797852, -1.9628906, -1.203125, -1.5107422, -0.97509766, -2.0214844, 0.20800781, -3.4394531, 1.2666016, 1.0986328, -0.38110352, -4.4101562, 0.44799805, -1.9433594, 2.4511719, -0.3491211, -1.5917969, -0.062072754, -0.3203125, 0.049560547, -1.4394531, 2.6425781, -0.34960938, 0.18127441, -3.5800781, 2.7519531, 0.828125, 0.92626953, -2.5039062, 0.07098389, 1.0009766, -1.3730469, -0.5600586, 0.82666016, -0.093811035, 0.5966797, 1.8037109, 0.016708374, -1.9013672, -0.31225586, 0.9267578, 0.5917969, -0.9838867, -1.3916016, 1.1259766, 1.6416016, 0.2121582, -2.1328125, -0.63378906, 2.0019531, 0.7373047, 0.6669922, -2.0878906, -0.119384766, -2.2695312, -0.0015678406, -1.5820312, -1.4443359, 0.42797852, -0.90527344, -0.35058594, -0.5161133, -1.8505859, -1.5693359, -1.2734375, 1.5966797, -0.058685303, -1.3974609, 0.61035156, -1.9570312, 0.61865234, -2.53125, -1.5742188, 0.21533203, 1.0898438, 2.1035156, 2.2929688, 0.51953125, -0.15710449, 0.70996094, -0.3972168, -0.74853516, -2.2382812, 0.81396484, 0.77685547, 2.5429688, 2.1464844, 1.0390625, -0.29248047, 0.28564453, 1.8789062, 1.1025391, 1.4589844, 0.6738281, -0.1352539, -2.5175781, -0.47094727, 1.7617188, 0.15014648, 0.14099121, 0.97265625, -1.1074219, 3.0761719, 1.7392578, -1.0537109, 1.546875, -2.1601562, 1.1455078, -1.9550781, -2.0078125, 1.3212891, -1.3115234, 1.9726562, -0.33032227, 1.1357422, 2.4707031, 0.85595703, -1.4863281, -0.60498047, 0.95410156, 0.90185547, -0.4892578, 0.018371582, -1.5546875, -0.44848633, 1.5625, -0.92089844, 1.2919922, 1.7363281, -1.484375, 0.16003418, 0.38745117, -0.70703125, -0.4296875, -0.5727539, -3.7285156, -0.1262207, 1.9394531, 1.2558594, 2.3027344, 1.0361328, 0.5488281, 1.4345703, -0.0848999, 1.1689453, -0.17480469, 3.1660156, 0.018920898, -0.25708008, 0.11669922, -2.6582031, 1.2011719, 1.6113281, 0.2487793, 1.0166016, -1.5341797, -0.7636719, 5.5195312, -1.5058594, -1.3095703, 1.5058594, -0.19946289, 0.24902344, 0.16601562, -1.0400391, -0.06524658, 0.5644531, 0.8828125, 1.1054688, -0.8354492, 2.0058594, -0.34887695, -0.6220703, 0.84375, -0.28149414, -0.58691406, 0.14257812, -1.1367188, -1.0800781, -1.2314453, 1.2939453, -1.6660156, -1.1289062, 2.3007812, -1.8583984, 1.8974609, 3.3632812, 1.0292969, 1.6396484, -1.3291016, -2.1875, -0.4333496, 2.3671875, -1.9824219, 1.5869141, -1.09375, -0.7050781, -1.2763672, -1.0292969, 1.6152344, -2.4179688, -1.2451172, -1.7011719, -0.0014619827, 1.4316406, 0.53564453, -2.4082031, 0.84277344, 1.0185547, -0.3540039, 0.4243164, -0.8535156, -2.4941406, -0.9013672, 0.14233398, -0.28881836, 0.26733398, 0.17346191, 1.3359375, 0.03869629, -4.1640625, -0.9638672, -0.72558594, 0.7792969, 0.39697266, -0.38964844, 0.22705078, -1.3496094, 1.3378906, 1.9931641, -1.4882812, 1.0019531, -0.76464844, -0.8725586, -3.3769531, 2.296875, -1.8212891, 0.2614746, -1.1777344, 0.7104492, -1.4042969, -1.4853516, 0.38500977, -1.0322266, 4.3710938, 0.7919922, 2.5996094, -1.2900391, -0.46142578, -0.19360352, -0.107666016, -1.8183594, 0.17504883, -1.6992188, -2.0488281, -2.7675781, -1.5976562, 0.43188477, -2.828125, -0.051818848, -0.24230957, 1.3085938, -0.09851074, 1.0820312, -0.32104492, 0.03717041, -0.39916992, -1.3691406, 1.2529297, 0.11291504, -1.3027344, -1.0166016, -0.9604492, -1.8837891, 1.0800781, 2.8984375, -0.9189453, 0.96777344, 2.015625, 0.2368164, 0.045562744, 0.9980469, -3.1328125, -0.2680664, 3.8945312, -0.90771484, 2.2636719, -2.109375, -0.36499023, -0.8183594, -1.5205078, 3.0839844, -0.42089844, 1.2197266, -0.03366089, -0.3947754, 0.9736328, -0.4831543, -0.49560547, 0.081726074, 0.5073242, 2.7148438, -2.4453125, -0.95458984, 0.8417969, 4.65625, -2.5585938, -1.0996094, 1.0898438, 0.7661133, 1.1816406, 0.75146484, 1.1455078, 1.4365234, -0.80810547, -0.68408203, 1.0429688, 1.7822266, 0.609375, -1.1845703, 2.0351562, 1.2871094, 0.47338867, 2.8183594, -0.27954102, 0.47094727, 3.0664062, 0.5107422, -1.734375, -0.45458984, -0.0035858154, 0.8125, -0.3708496, 1.8046875, -1.5058594, -0.7338867, -0.17456055, 0.3942871, 1.0107422, -0.92089844, 0.16259766, 1.1240234, -1.1279297, -1.3515625, -1.1171875, -0.1998291, -0.94433594, -1.6708984, 2.1582031, 0.4182129, 0.11993408, 0.42504883, -1.6025391, 0.082458496, -0.6386719, 2.4453125, -2.1074219, -1.8945312, 0.63378906, 1.7460938, -0.90966797, -2.5839844, -1.0341797, -1.5859375, -1.6611328, 3.78125, -0.19763184, -1.1679688, 0.5732422, -2.0683594, 1.2939453, 0.82470703, 1.1953125, 0.53027344, 0.1697998, 0.44262695, 0.17553711, 1.5595703, 1.3242188, 0.34155273, -3.0175781, 0.9423828, 0.13208008, 0.064575195, 1.8095703, -2.1054688, -2.0976562, 2.2011719, -0.66259766, 1.7275391, 0.14355469, 2.5488281, 1.4990234, -0.8178711, 3.1679688, -0.83496094, -0.6713867, -2.3613281, -3.3710938, 0.31298828, -2.3808594, 0.52441406, 1.8691406, -0.29907227, -0.55810547, -0.076049805, 0.9511719, -4.9648438, -0.7866211, -1.2949219, 1.6943359, -2.1679688, -1.1181641, 0.3540039, 1.3134766, -1.2841797, -0.79785156, 1.4267578, 0.46069336, 1.9599609, 0.028640747, 0.17529297, 1.4521484, -1.3378906, 0.23950195, 0.13500977, -0.11224365, 0.6176758, -1.2880859, 0.28393555, -0.7060547, 1.1611328, 0.20861816, -0.82958984, 0.7963867, 2.7851562, 1.3134766, 0.058898926, 2.5410156, -1.1210938, 1.8027344, 0.026641846, -0.74121094, -0.9941406, 0.6352539, 1.2832031, 0.43920898, 0.48706055, -0.15625, -1.8632812, 0.7583008, -0.53222656, 0.95703125, 1.3896484, 0.4609375, -1.9033203, 0.79589844, 1.3037109, -1.0605469, -1.3935547, -0.060028076, 1.6298828, -2.984375, -1.2285156, -1.9423828, 0.3527832, -1.0224609, -0.32226562, -0.8857422, 2.3457031, 1.7490234, 2.1464844, 3.2167969, -2.7988281, -1.8720703, 1.2509766, -0.2163086, 0.73046875, 0.8652344, 0.059631348, -0.80859375, 0.60498047, 0.14685059, -1.1279297, -0.28588867, 0.5830078, -0.99121094, 0.28759766, -0.5595703, -2.1308594, -2.4511719, 0.69091797, 0.37817383, -0.3972168, 0.0826416, -2.3828125, -0.5439453, -2.1113281, 1.2910156, -0.8574219, 1.0009766, -1.3779297, 0.21606445, 3.0546875, 1.5712891, 1.8349609, 0.1895752, 3.2617188, 0.60009766, 2.4375, -0.4880371, 1.4238281, -1.0058594, -0.92285156, -1.7167969, 0.59521484, 0.67285156, 2.4824219, 0.20532227, 1.4345703, 1.2089844, -1.9121094, 3.3535156, 0.22839355, -2.5996094, 0.2668457, -2.5429688, -1.8349609, 0.6479492, 0.5053711, -3.3398438, -0.75390625, 2.9375, -0.96240234, 3.0195312, 0.6298828, -1.5625, -0.18066406, -1.1308594, -1.6279297, -2.3808594, -0.6230469, -0.234375, -0.42504883, 0.3503418, -0.703125, 0.24023438, 1.2763672, 0.96191406, -0.66064453, 1.6308594, 0.32470703, -0.06427002, -0.47827148, -0.48535156, -0.6694336, 0.78466797, 2.1484375, -0.62109375, 1.8203125, -1.2871094, 3.2871094, -2.0566406, -0.3203125, -1.6464844, 1.3837891, -2.4042969, 0.390625, 0.92578125, -0.04937744, 0.515625, -2.421875, 0.36743164, 0.091552734, 1.0976562, -1.4521484, 0.72216797, -1.4248047, 0.037078857, -2.8007812, -2.0292969, -0.47729492, -1.2636719, -1.4492188, 0.083862305, -2.8769531, 0.6015625, 0.6123047, 1.5068359, -0.4206543, -0.1784668, 0.05419922, -0.6645508, -0.27539062, -1.5146484, 0.66845703, 1.4550781, 1.7109375, 0.7011719, 0.04336548, -1.2675781, -3.2089844, 0.26367188, 1.7646484, -1.1201172, 1.3515625, 0.038116455, -0.8828125, 1.9921875, 2.9199219, -1.4609375, -0.9296875, 1.0224609, -1.1699219, -0.53466797, 1.5625, -1.3339844, 1.2910156, 1.8701172, -0.57177734, 2.1523438, -0.75683594, 0.44335938, -1.0517578, 2.4628906, 1.4814453, 0.6386719, 0.3881836, -0.34033203, 1.0878906, 0.01272583, 1.15625, 1.4853516, -1.5654297, -1.1582031, -1.7050781, -2.4433594, -0.5986328, -2.0058594, 0.08911133, -1.0908203, -0.3046875, 1.2773438, 1.359375, 1.5410156, 1.8554688, -0.34985352, -0.69189453, 0.9746094, -0.45288086, 2.0175781, 1.1455078, -2.8378906, -3.3359375, -4.109375, 1.5986328, 0.93847656, -1.0019531, -1.9384766, -0.24694824, -1.7216797, 1.171875, -0.07678223, 2.2714844, 2.3945312, 1.6748047, -2.3476562, 0.62402344, 2.078125, -1.7919922, 0.27075195, 0.9926758, 2.1308594, 0.009643555, 0.5253906, 1.2724609, -1.5048828, 3.2792969, -0.71435547, 0.0052261353, -0.49194336, 0.50341797, 0.7573242, -1.1025391, -0.20715332, -1.1298828, -0.22766113, -1.4921875, 1.71875, 2.1074219, 0.15197754, -0.10650635, 0.55126953, -0.4465332, 1.2431641, 1.9736328, -0.10638428, -0.6928711, -1.203125, -1.6933594, 1.0908203, 1.1542969, -1.1191406, -0.6308594, 0.5629883, -0.7026367, -1.4667969, -0.42333984, 0.036621094, 1.4697266, 0.3552246, 2.7578125, 0.89697266, 0.36523438, 2.7539062, -0.95410156, 2.5859375, 1.296875, -0.7729492, -1.5908203, 1.5703125, 3.3769531, -0.8798828, -0.1652832, 0.55908203, 0.75683594, -1.6787109, -0.6870117, -0.04272461, 0.91845703, -2.7597656, 1.4404297, 0.33251953, -0.53515625, -1.15625, 1.7285156, -1.1611328, -0.4724121, -0.22753906, -0.89941406, 1.2558594, 0.045410156, 1.4570312, -0.8623047, 0.34375, -0.15893555, -2.703125, 1.1611328, 0.50439453, -3.2265625, -1.5410156, 3.84375, 2.6699219, 0.44628906, -1.1630859, 1.8847656, -0.38208008, 2.0195312, 1.8476562, -0.14758301, -0.5571289, -0.25634766, 2.578125, 1.3222656, -1.1933594, 0.7114258, -0.6015625, -3.5742188, -2.7988281, 0.06750488, 2.3769531, 1.953125, 0.61865234, -1.2158203, 0.14648438, 0.22106934, 2.6386719, -2.5273438, 1.0673828, 0.045898438, -1.9023438, 0.3190918, -0.8647461, 1.3789062, 2.796875, 2.5429688, -0.7363281, 1.6660156, 0.3322754, 1.1220703, 1.4648438, 1.0351562, -0.039123535, 0.45288086, -0.4724121, 2.9921875, 0.030822754, -0.8149414, -0.24279785, 2.4902344, 1.3740234, -0.10021973, 0.49389648, -2.3203125, 0.70654297, -2.2519531, -1.4238281, -1.4755859, -1.2158203, -0.8100586, 0.15039062, -0.8564453, 0.49267578, -0.049865723, 0.15991211, 0.78125, -0.71777344, -1.5195312, 1.3261719, -1.3037109, 1.046875, -1.5351562, -0.88720703, -0.39038086, 0.15637207, 1.5839844, -0.6923828, -1.4550781, -0.22106934, 2.5917969, 0.12756348, -0.76904297, 0.35083008, 0.17736816, 0.91015625, 0.48364258, 2.7988281, -1.5751953, 0.8408203, 1.0332031, 0.6777344, -0.6557617, 0.45214844, -0.08868408, -0.6152344, 1.0693359, -2.2792969, -0.032806396, -0.4177246, -3.109375, 0.0069999695, 4.2929688, 1.6494141, -0.22705078, -1.1503906, -5.3203125, -0.42456055, -0.3059082, 2.7734375, -1.1298828, -2.0585938, 0.04647827, 0.0670166, 3.2675781, -0.8017578, -0.4428711, -0.63964844, 1.2929688, 1.2607422, -0.18322754, 3.5332031, -0.2998047, -0.060028076, -0.5180664, 1.6035156, 1.3789062, -0.122802734, 1.0146484, 2.8417969, 0.2944336, -3.3847656, 0.36450195, -0.13427734, -1.1181641, 2.125, -0.64501953, 0.8496094, -0.2685547, -1.4443359, -4.6015625, -1.1787109]}, "B07Z3MSPMV": {"id": "B07Z3MSPMV", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze\nDescription: This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.\nFeatures: \u2600LIGHT WEIGHT AND PORTABLE \u2013 This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU's\n\u2600SAFTY DESIGN \u2013The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident\n\u2600WILDLY USE \u2013 Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use\n\u2600EASY AEESEMBLY \u2013 BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour\n\u2600MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating\n", "embedding": [-1.9833984, 2.3320312, 3.0742188, -0.61816406, 0.06707764, 1.2470703, 1.2089844, -1.5576172, -2.2382812, 4.2851562, 0.22912598, 0.47705078, 0.5732422, -2.0722656, 1.1523438, 0.6191406, 0.56933594, 2.0429688, 3.1660156, -0.9267578, 2.046875, -0.9189453, -1.5996094, -1.4892578, 0.10443115, -0.34399414, 3.0390625, -2.1289062, 0.15612793, -2.921875, 0.2454834, 1.8857422, -0.22912598, 2.2773438, -1.21875, -2.2773438, -0.94970703, 1.8125, -4.2148438, 0.40722656, -1.4873047, -2.2167969, 1.3701172, 0.51220703, -2.4453125, 0.86572266, 1.1708984, 0.7807617, 0.95751953, -0.7973633, 0.92041016, 0.7626953, 0.014717102, -1.1806641, -2.3320312, -0.16186523, -0.4428711, -3.2304688, 2.6953125, 1.0126953, -1.2314453, 0.5185547, -1.6494141, 3.9492188, 0.42773438, -0.1138916, -1.2275391, -1.3554688, -0.33862305, 0.3935547, 2.5234375, -0.77734375, -1.0234375, 0.14465332, 1.3466797, 0.39648438, -1.2773438, 0.97265625, 2.7148438, 0.5761719, -0.7265625, 0.031204224, 1.2119141, 0.9975586, -1.7539062, 0.58935547, -1.2480469, 0.62841797, -0.051239014, 1.5556641, -1.4697266, 2.7363281, -0.8256836, -2.3964844, 1.2041016, -2.4941406, 1.5556641, 1, -1.9228516, 1.3037109, -0.0077781677, 0.5810547, -0.49609375, -1.5839844, -0.91064453, -0.8461914, 3.2148438, 0.057647705, -0.12512207, -0.30664062, -1.8193359, -0.5078125, 3.0722656, -0.08215332, -0.98828125, 0.76904297, 0.6411133, 3.8085938, 5.5234375, 2.40625, 4.5390625, 0.45483398, 1.4941406, -2.3339844, 0.515625, 0.19995117, -0.03677368, -0.32910156, 2.9394531, -1.0820312, 0.07550049, -2.1386719, 0.5415039, 1.5644531, -1.2167969, -1.0576172, -1.0791016, -1.265625, -3.5195312, -0.93408203, -1.2060547, -0.2512207, 2.5605469, 1.1767578, -3.5664062, -1.1298828, -0.6098633, 2.7246094, -0.18835449, -0.29882812, 0.4765625, 0.052642822, -0.47827148, -1.6933594, -0.06274414, 1.4814453, 0.16174316, -1.6875, 4.6367188, 0.625, 2.0253906, -1.5234375, 0.5810547, 2.0332031, 1.5634766, -0.5234375, 2.0136719, 2.0742188, 0.71777344, 0.38549805, -0.34057617, -3.0605469, -0.2130127, 0.1373291, -0.6171875, -1.2470703, -1.1826172, 1.8427734, 0.3395996, -0.27612305, -2.3808594, -1.6513672, 1.3369141, 1.8837891, 1.8310547, -2.2929688, -2.6953125, -1.2333984, -1.8085938, -1.4296875, -0.88671875, 0.05529785, 0.6269531, -1.90625, -0.4399414, -2.5117188, -3.7578125, -2.2089844, 2.3261719, 0.7026367, -0.41992188, -1.0771484, -1.8632812, -0.69189453, -3.1269531, -3.1816406, -1.8769531, 0.028030396, -1.3125, 0.4416504, 0.5830078, 0.028564453, 1.5097656, -0.8461914, 0.014572144, -0.9873047, 2.2265625, -0.10424805, 1.5859375, 2.84375, -0.007888794, -0.77197266, 0.095214844, 3.4863281, -0.34716797, 2.2304688, 1.53125, -0.11303711, -1.2861328, -0.6191406, 3.1953125, 1.2431641, -0.091308594, 1.9228516, -1.0869141, 2.6503906, 0.5991211, -0.3527832, 0.71533203, -0.62646484, 1.2724609, -2.0488281, 0.16345215, 1.015625, -0.9609375, 0.63183594, -0.06817627, 1.4248047, 1.5185547, -0.46240234, 0.04800415, -0.6669922, -0.14904785, -1.2871094, -0.73828125, 0.98828125, -0.13635254, 1.0664062, -1.9433594, -1.8193359, 1.6806641, 1.5234375, -0.62646484, 0.36621094, -0.44335938, -0.6323242, 3.734375, 1.9794922, -4.890625, 0.8256836, 1.8720703, 1.7802734, 0.83691406, 0.3791504, 0.8261719, -0.43359375, -2.0703125, 2.5605469, 0.28198242, 0.68896484, 0.35327148, -1.3818359, 3.0097656, -1.1767578, -1.421875, -0.13171387, 0.25976562, 0.35180664, -0.9145508, 1.5605469, 2.3808594, -1.1035156, -2.0332031, 0.6069336, -1.7783203, 0.9667969, 1.7607422, -0.7705078, 0.043670654, -0.1463623, 1.5195312, 1.4951172, -0.671875, 0.84277344, -2.3574219, -0.5078125, -0.9770508, -3.2324219, 1.1738281, 0.83740234, -0.79345703, -1.8398438, -2.1835938, 0.5073242, -2.765625, -1.9082031, 2.2167969, -3.3652344, 1.7460938, 1.7021484, -1.1992188, 0.2331543, -1.8632812, -3.2285156, 0.5126953, -0.15771484, 0.020584106, -0.34033203, -0.6503906, -1.1220703, -1.4335938, -0.7114258, 2.8066406, -1.9765625, -1.8701172, -0.8779297, -2.4375, -0.7519531, 0.8339844, -0.7080078, 1.1230469, 1.1992188, -0.9770508, -0.028640747, -1.1591797, -1.9248047, 0.25317383, 2.5878906, -1.3544922, -1.8564453, 1.4599609, 0.7451172, -0.77197266, -5.15625, -0.3479004, 1.2763672, -0.1015625, -0.04333496, 0.8095703, 0.42382812, -2.1035156, 1.7666016, 0.83496094, 0.080566406, -0.28295898, -3.15625, -0.60595703, -5.5390625, 2.8769531, -0.77685547, 1.7734375, -0.35131836, -0.11932373, -1.4404297, -0.26220703, 1.7646484, -0.46362305, 3.5058594, -0.16467285, 1.7695312, -1.0429688, -0.8330078, 1.5214844, 0.4260254, -3.5214844, -1.7734375, -2.4804688, -0.515625, 0.1315918, -3.1210938, -0.44458008, -1.0292969, -0.71875, -0.27954102, 0.026473999, 0.7944336, 1.171875, -0.57714844, 0.31713867, -1.8818359, 0.6591797, 1.1835938, 1.1845703, -3.1289062, -1.9082031, -1.0830078, 0.50390625, -1.078125, 1.3242188, -0.22924805, 0.21923828, 1.3056641, -0.31274414, 0.16101074, -0.3334961, -3.4765625, 0.97265625, 1.4140625, 0.48901367, 0.2536621, -0.66064453, -0.59375, -1.7558594, -0.74072266, 2.8925781, 0.3244629, 3.1113281, -0.7949219, 0.8598633, 0.1171875, -0.18579102, -1.1757812, 0.09814453, -1.4267578, 1.7382812, -2.953125, -0.67871094, 1.0429688, 2.8164062, -1.5722656, 0.24108887, 1.2197266, 1.0126953, 2.4902344, -1.4990234, -0.34545898, 2.1152344, 1.3681641, -0.15734863, 1.2607422, 1.2929688, 0.06451416, -3.2636719, -0.09307861, 1.0849609, 2.2089844, 0.47021484, 1.5078125, 0.93847656, 1.6835938, 1.7666016, -2.9472656, 1.1835938, -0.30688477, 1.8886719, 0.083862305, 3.7265625, -1.8310547, -0.5654297, 0.53466797, 1.2275391, -0.47998047, -2.5878906, -0.45776367, 2.3613281, 1.8496094, -0.85058594, -1.4638672, 0.22949219, -0.38623047, -0.7001953, 0.28808594, 1.6113281, -1.0458984, -0.1348877, -2.609375, -0.82470703, 0.14880371, 2.0214844, 0.9863281, -3.8027344, -0.62890625, 1.1591797, -0.59228516, -2.0800781, -2.4589844, -2.4257812, -1.0361328, 4.0859375, -1.8466797, 0.53027344, 0.16271973, -1.2998047, 1.4804688, 0.74121094, 0.25097656, -1.1337891, 0.006526947, -2.0507812, -0.62890625, -0.44921875, 1.0410156, -0.015411377, -3.1269531, -0.48901367, -2.5527344, -1.7558594, 0.36914062, -0.47192383, -0.57177734, 2.2910156, 0.34375, 1.7607422, -1.1708984, 3.1953125, -2.6484375, -2.3925781, 1.2529297, -0.6035156, -0.19506836, -1.9521484, -5.0195312, 1.3242188, -1.7382812, -0.47998047, 1.2636719, -0.5083008, 0.73779297, -0.7207031, -0.25268555, -1.4853516, -4.3320312, -0.9223633, -0.022277832, -2.6738281, 0.65625, 2.3125, -1.0947266, -0.29492188, -2.6113281, 0.8300781, 1.0869141, 0.046783447, 1.0878906, 0.105407715, 1.1044922, -3.59375, 0.84277344, -0.4111328, 1.4609375, -0.8442383, -0.75927734, -0.22741699, -0.4543457, 3.9121094, -0.6069336, 0.05215454, 1.4785156, 3.5703125, 1.3691406, -1.2304688, 0.04058838, 0.66552734, 3.5898438, -0.7993164, -3.6035156, 0.21911621, -1.7060547, -0.19665527, -1.3095703, -0.95996094, 1.7070312, -0.81933594, -0.3774414, 1.9628906, 0.3774414, 2.4257812, 1.7783203, -3.859375, 1.4560547, 0.57910156, -3.375, -3.4921875, -0.045288086, -0.68408203, -0.66064453, 1.2363281, -0.96240234, 0.91064453, -0.21069336, -2.2675781, -1.4394531, 1.3544922, 4.6289062, 2.9726562, 1.7285156, -2.5332031, -2.4433594, 1.2099609, -0.63134766, -0.48388672, 2.3105469, 2.0820312, 1.2509766, 1.4179688, 2.9414062, -0.44750977, -0.09667969, 0.7680664, -1.5302734, 0.030151367, -0.46166992, -0.01576233, -0.21154785, -2.5175781, -0.4416504, 0.7421875, 2.3496094, -1.7363281, 0.9291992, -1.0917969, 0.3701172, -2.6289062, 0.11273193, -0.64501953, 0.48046875, -0.103637695, 1.46875, 1.1171875, -1.7324219, -0.1899414, -0.61279297, 2.8535156, -3.2011719, -0.7421875, 0.7421875, -0.98291016, 0.35107422, -0.39770508, 1.7470703, 0.5761719, 0.00015330315, 1.5390625, 1.8291016, -0.9736328, 1.3320312, 0.1315918, -1.5439453, 0.65527344, 0.4399414, -1.2636719, -0.5683594, -0.2376709, -1.703125, 0.45776367, 2.8125, -1.5693359, 1.4287109, 0.21325684, -1.7744141, -0.16625977, -2.6445312, -1.6474609, -1.6044922, -0.49194336, -0.33422852, -0.023880005, -0.5488281, -0.6977539, 1.3554688, 2.2089844, -0.017242432, -0.05340576, 3.2910156, 1.3496094, -1.421875, 0.34033203, -1.2607422, -0.036621094, 0.24682617, 1.0693359, 1.8105469, 0.32617188, 1.3144531, -0.65722656, -1.6679688, -0.15490723, -1.1484375, 3.4179688, -2.15625, -0.7758789, 2.5410156, 2.0546875, 0.49658203, -3.703125, -0.092285156, -0.9838867, 1.59375, -1.0009766, 1.3408203, 0.2644043, -1.3603516, -2.1992188, -3.1582031, -1.0957031, -0.36401367, -1.9023438, -0.43237305, -0.6557617, -2.1699219, -1.2255859, -1, 1.078125, 0.1998291, -0.20837402, -1.4794922, -0.2154541, 1.3925781, -0.17858887, 0.62841797, 0.1529541, -0.9370117, 0.5649414, -1.3144531, -2.2949219, -1.28125, 0.7451172, 0.24401855, 0.9428711, 0.7998047, -1.3300781, 1.2744141, 2.8203125, 0.30493164, -1.3769531, 2.2089844, 2.0234375, -0.12512207, 2.3027344, -0.43066406, 1.7490234, -0.23010254, -0.8730469, 1.2275391, 0.2800293, -1.4169922, 1.1992188, 1.4248047, 0.07208252, 0.61572266, 0.58984375, 0.31982422, 1.1621094, -0.62841797, 1.7666016, 1.046875, -1.7529297, -0.21411133, -3.140625, -1.4541016, -2.9609375, -0.47705078, -2.2285156, -0.72558594, 1.0507812, 1.8925781, 0.11102295, 0.47314453, 1.2832031, 0.8383789, -3.0371094, 1.1699219, 0.42749023, 2.6542969, 1.4736328, -1.3359375, -2.2636719, -4.4570312, -0.81591797, 0.024108887, 0.5966797, -1.9335938, 0.38623047, -1.6054688, 1.2783203, -0.3605957, 2.5605469, 1.5439453, 0.8769531, -1.3994141, 1.2998047, 1.8535156, -1.4453125, -0.70703125, -0.32348633, 2.8730469, -0.6401367, 5.1796875, 1.3300781, 0.029785156, 1.9365234, 0.7626953, 2.3828125, -1.5615234, -1.2617188, 2.4199219, -2.734375, -0.99853516, -0.5317383, -0.32958984, -2.5234375, -0.62353516, 1.5673828, 0.7685547, -1.1904297, 1.9150391, 0.49487305, -0.86035156, 1.65625, 0.14013672, -0.041229248, -0.40966797, -0.31835938, 1.4707031, 3.5488281, 2.78125, 2.3125, 0.7055664, 0.6225586, -0.94970703, 1.7070312, -0.9921875, 1.8603516, 1.2216797, 1.0585938, 2.8769531, -0.07550049, 3.2207031, -0.11798096, 0.95214844, 1.6611328, -1.9335938, 0.6225586, 0.7680664, 0.86083984, -2.0332031, -1.7216797, 0.24682617, 1.4179688, -1.7402344, -2.8417969, 0.39111328, 2.5371094, -0.4140625, 0.76904297, -0.42333984, 1.6923828, 0.2607422, -0.37890625, 1.1025391, 1.4853516, 0.8701172, 0.87890625, 1.2451172, -0.13366699, -1.8769531, 0.08288574, 1.0107422, 1.0429688, -1.6455078, 2.0019531, -1.4482422, -0.060791016, -0.4326172, 3.4277344, 2.6621094, 1.453125, -0.008079529, 1.3867188, 1.9013672, 0.6269531, 1.0214844, 1.3066406, -0.1739502, -0.16003418, 2.6054688, 2.4511719, -0.026107788, -0.8598633, 0.123291016, -0.97265625, -1.4072266, 1.2724609, 0.35717773, 0.73779297, 0.10003662, -0.08972168, 2.0371094, -0.08087158, 1.0898438, -2.7792969, 1.4609375, -0.6064453, -0.12054443, -0.07550049, 0.4248047, -1.2197266, 1.4072266, 1.5283203, -0.33862305, 1.8310547, -0.009269714, -1.6083984, 0.29882812, 0.11260986, -1.6533203, 1.6113281, -0.6660156, 1.8125, 1.1464844, 0.21044922, -0.6538086, 0.6958008, 2.5019531, -0.44848633, 0.20300293, -1.8925781, 1.1025391, 0.49780273, 0.92333984, 0.14990234, -0.9223633, 0.042114258, 1.0283203, -1.5927734, -1.0517578, -2.2089844, 1.5273438, 0.86376953, -0.7104492, 1.046875, 0.71484375, -0.5, 0.69140625, -0.6538086, -2.1855469, 0.08258057, -0.20532227, -0.26098633, -1.7109375, 0.101135254, -1.2099609, 0.32373047, 1.90625, 1.3310547, 0.2836914, -2.453125, -2.3320312, 0.7446289, 3.0546875, -0.12695312, 1.0214844, 0.43603516, -0.0073051453, -1.9658203, 1.8720703, -0.30322266, -0.022079468, -0.16894531, -3.1425781, 0.62841797, -0.21240234, -0.95654297, -0.50097656, 3.0390625, 1.0166016, 0.18530273, -2.3144531, -3.4238281, -0.83154297, 0.01260376, 2.0996094, -0.50146484, 0.46020508, -0.3251953, -1.2685547, 2.9765625, 1.7509766, -0.71435547, -0.51123047, -0.08099365, 0.7788086, -1.1113281, 1.2441406, 0.32543945, 0.13330078, -0.22351074, 1.2636719, 2.3554688, 1.2714844, 1.8125, 1.5322266, 0.036254883, -4.2734375, 0.10003662, -1.921875, 0.46679688, 0.6464844, 1.7783203, 0.81103516, -1.7802734, -0.4650879, -4.2265625, -0.88671875]}, "B00I8IY6E2": {"id": "B00I8IY6E2", "original": "Brand: Flame King\nName: Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White\nDescription: \nFeatures: For use on propane powered floor waxing, burnishing and polishing machine that use propane.\nComes with convenient installed propane level gauge, so you can always tell how much propane you have.\nPowder coated for long lasting exterior protection\nNewly designed all-in-one multi valve\nPowder coated for long lasting exterior protection, high grade steel welded construction\n", "embedding": [-1.1416016, 0.90283203, 1.7304688, 0.13391113, 2.203125, -1.8837891, 0.32373047, -0.37451172, 1.9658203, 0.37451172, 2.2734375, -0.5053711, -0.56103516, -2.2167969, 1.3818359, 0.6020508, -0.16772461, 1.765625, 2.0644531, 0.7861328, 2.1113281, 0.53808594, -0.7675781, -1.4345703, 0.41308594, -1.1816406, 3.9199219, -2.9667969, -0.45996094, 0.26733398, 0.06573486, -1.0791016, 1.3759766, 0.74365234, -2.3242188, -1.7783203, 0.26635742, -0.50878906, -5.65625, -0.4584961, -3.0976562, -0.78271484, -0.32714844, 1.1484375, -0.79296875, 0.5991211, 1.3984375, -0.79345703, -1.0751953, -0.50683594, 0.0048713684, 0.9716797, 0.12487793, 1.7265625, -0.08337402, 2.1757812, 0.45458984, -2.4882812, -0.34204102, 0.52001953, 2.4960938, -0.7241211, -2.2597656, 1.3652344, -0.9760742, 1.5283203, -0.42504883, -1.140625, 1.2001953, 2.4726562, 1.3740234, 0.8413086, 0.73046875, -1.3466797, -0.42333984, -0.3684082, -0.8310547, 1.9492188, -0.13745117, 1.2734375, 0.5053711, 1.2148438, -0.86816406, -3.4667969, -0.38110352, -1.4746094, 1.0664062, 0.56933594, -0.9892578, 1.4951172, 0.08862305, 2.2558594, -1.4091797, -3.8125, 1.3330078, -0.23205566, 1.4599609, 0.8652344, 2.1503906, 2.0683594, 1.0078125, -0.29248047, -0.5185547, 1.2001953, -2.0195312, -0.8847656, 1.0576172, 0.6508789, -2.1660156, 2.171875, 0.49780273, -1.0498047, 0.9458008, -0.3955078, -0.050476074, -0.3388672, -0.14892578, 1.6777344, 1.4160156, 1.2265625, 2.7285156, -2.4335938, 0.87109375, -0.4091797, 1.2460938, -0.14111328, 0.18041992, 1.1992188, 5.6289062, -0.5864258, 1.9101562, 0.6411133, 3.2207031, -0.8417969, 0.20227051, -1.9580078, -1.3427734, -2.5625, -2.2832031, -2.6972656, -3.4570312, 0.42871094, 0.5878906, -0.44628906, -2.0351562, -1.3964844, -0.49560547, -1.5234375, -1.5839844, -1.5371094, -0.29077148, -1.5839844, 0.3828125, -0.8876953, 0.2878418, 1.4199219, -1.0566406, -2.15625, 0.6455078, 2.3144531, 1.8779297, -1.6210938, 0.27856445, 1.3808594, -1.2568359, -2.3925781, 0.025772095, 0.8828125, 0.07952881, 1.7509766, 0.47192383, -1.0078125, 0.5932617, 0.06707764, 0.036315918, -0.62060547, 0.4260254, 1.7607422, 0.5703125, -0.5263672, -1.0126953, -0.9511719, -1.0166016, -3.0019531, 1.9404297, 1.1748047, 0.018936157, -2.1953125, 1.9121094, -2.0664062, -1.3212891, 2.7695312, -0.064208984, 0.7211914, -0.9135742, -1.9189453, -3.9550781, -3.4277344, 2.1171875, 0.7207031, -0.90771484, -2.1113281, 1.8916016, -0.42456055, -2.0800781, -2.6503906, -0.21264648, 1.1835938, -0.2619629, 1.4316406, -0.12939453, -0.9199219, 2.5546875, -3.5566406, -0.9448242, -2.7871094, -0.26953125, 0.7104492, 0.9711914, 2.3769531, 0.020584106, -1.1103516, 1.2148438, -0.25073242, 0.26538086, 2.0761719, 0.39282227, 0.7519531, -4.328125, -1.1835938, 2.46875, 1.5722656, -0.032592773, 1.3300781, -2.2617188, 1.6220703, -0.5678711, -1.3037109, 0.64501953, 0.0357666, 0.29077148, -0.38354492, -2.0742188, -0.9580078, -1.8144531, -0.064086914, -0.7734375, 0.028076172, 0.27783203, -1.2675781, 1.1640625, 0.8720703, 1.8076172, 0.9082031, -1.2070312, 1.8525391, 1.4980469, 0.58496094, 0.42529297, -2.6230469, 3.7128906, 0.27490234, -0.703125, 0.3088379, -1.0517578, -1.3017578, 4.2070312, 1.1210938, -1.4863281, -0.53808594, -0.30810547, 0.25854492, 0.9506836, -0.35913086, 1.3837891, 2.6777344, -3.2714844, 4.3046875, -1.8339844, 1.5576172, -0.38061523, -0.06011963, -0.21459961, -2.6386719, 1.3769531, -0.55566406, -0.20959473, 0.52001953, -1.8847656, 0.7363281, 4.7890625, -1.2714844, -2.3496094, 2.9902344, 0.65966797, 1.0488281, 3.9472656, 0.79248047, -0.4482422, -2.1367188, 1.2441406, 0.61816406, -1.6679688, -0.6953125, -0.12036133, -0.55615234, 2.7929688, -0.62597656, 0.7133789, -0.6972656, -1.6835938, 1.7246094, -1.3916016, 2.1503906, -1.8974609, 0.08001709, 2.0253906, -3.3847656, 2.6210938, -0.3544922, 0.72021484, 3.25, 0.82666016, 0.5444336, 0.023239136, 2.6132812, -1.0019531, 1.3984375, -0.2553711, -0.50097656, 0.26757812, -0.5649414, 0.70996094, -1.1855469, -0.6298828, 0.8413086, -0.5703125, -2.578125, 1.1552734, -2.1484375, 0.27563477, -0.03152466, -1.2890625, 1.5712891, -0.63964844, -0.7290039, -0.56152344, -0.10852051, -0.27172852, -1.3173828, 0.3017578, 3.7871094, 0.8383789, -3.3242188, 0.01586914, 0.6479492, -1.7822266, 1.1923828, -1.0615234, 0.37231445, -1.6083984, 0.828125, -0.009544373, -1.7900391, -0.9663086, -1.7714844, 2.1328125, -2.7285156, 3.1679688, -0.9379883, -0.18432617, -0.52783203, 1.4638672, -1.8085938, -3.9335938, -1.6748047, -0.4169922, 2.28125, 3.6835938, 1.8789062, -1.2949219, -0.50439453, 0.21118164, 0.062805176, -0.6333008, -0.06188965, 0.70751953, -1.2304688, -1.2226562, -3.1152344, 1.2890625, -1.2001953, -0.69921875, -0.6826172, 0.9008789, -2.4394531, -0.84765625, -0.9370117, 0.4128418, -0.95996094, 1.2626953, -1.9296875, -1.5566406, -0.36621094, -1.6992188, 0.07696533, -1.1328125, -0.5708008, 1.3242188, -0.60839844, 0.027511597, 0.89941406, -1.2822266, 1.0263672, 1.2177734, -2.9609375, 2.7734375, 1.71875, -0.035064697, 0.9116211, -3.4511719, -0.25878906, -1.65625, -0.96777344, 4.59375, 0.6010742, 0.83740234, -0.8178711, -0.70166016, 1.7607422, 0.80810547, -2.8652344, 0.30981445, -0.37475586, 1.9580078, -1.0771484, -2.0859375, -0.5263672, 0.96484375, -1.8857422, 0.20202637, 1.9697266, 0.07354736, 2.296875, 1.4892578, -0.89990234, 0.24060059, 1.4492188, 2.4453125, 2.1132812, 0.19995117, -0.8339844, -0.15588379, -0.06762695, 0.59814453, 0.24975586, 2.6464844, 2.3964844, 2.2851562, 0.8613281, 1.0888672, 0.16687012, -0.8071289, -0.51708984, 1.8115234, 1.0361328, 1.5302734, -0.40307617, 1.5546875, -0.86865234, 0.5600586, 1.3261719, -2.8085938, -0.39135742, 1.1210938, 0.93115234, -0.9814453, -1.3652344, -1.3339844, -1.2441406, -1.0751953, 2.4414062, -0.8071289, 0.83203125, -0.11505127, -1.5, 1.0615234, -3.6308594, 3.3847656, -0.3474121, -0.62890625, 0.29882812, 0.8676758, -0.15075684, -3.2324219, 0.72558594, -0.38183594, -1.4160156, 1.4814453, 0.2512207, -2.890625, -0.09588623, -2.8984375, 0.057128906, 0.95166016, -1.5839844, 0.9428711, 0.11920166, 1.7763672, -0.64453125, -0.017410278, 1.0107422, -0.37695312, -2.3398438, 0.8149414, -3.5957031, 2.1933594, 0.10797119, 0.14404297, -3.2714844, 1.1083984, -1.5917969, 2.4726562, 1.0908203, 3.1464844, -1.4023438, 1.4248047, 1.5537109, -2.2070312, -0.92626953, -0.34033203, -4.921875, 0.9580078, -0.8261719, -0.6245117, 2.0078125, -0.36572266, 0.035491943, -0.07977295, 0.2824707, -1.8710938, -1.3671875, 0.4658203, 3.0859375, -2.4726562, -0.6386719, 0.98291016, 2.0664062, -2.0996094, -1.4003906, 0.20861816, -1.4726562, -0.24816895, 0.8823242, -2.2773438, -1.2666016, 0.4230957, 0.6557617, 0.5756836, -1.3496094, 1.3837891, -0.062438965, -0.9628906, -2.1269531, 1.1523438, 2.3964844, 0.02999878, 0.52978516, 0.44726562, 1.1005859, -0.78808594, -1.3837891, -0.88720703, 2.703125, 0.28857422, -2.6484375, -0.13476562, 0.8833008, -0.515625, -1.9257812, 0.9716797, -1.5107422, 1.1591797, 2.1542969, 0.69433594, 2.8378906, 1.8789062, 0.48535156, -0.7993164, 0.74365234, 0.6010742, -1.1630859, 0.67871094, -0.41577148, 0.10650635, -1.7470703, 0.74121094, -2.9453125, -1.4550781, -0.5751953, 0.31884766, -4.7421875, 2.1484375, 2.5800781, 1.9570312, 0.38891602, -2.4238281, 0.67333984, -0.6689453, 0.036071777, -0.19836426, 1.7539062, -0.37426758, -1.0878906, -0.13977051, 2.5078125, -1.4580078, 0.3564453, 1.2841797, -1.3476562, -0.8149414, -0.74609375, 0.7338867, -2.4667969, 0.06726074, 0.05480957, 0.59277344, 3.8300781, -1.2167969, -1.3007812, 1.2832031, 0.7866211, 0.08935547, 0.28564453, -0.39941406, 0.16687012, 3.7011719, 1.015625, 0.8847656, 0.25952148, 2.0488281, -1.0693359, 1.9091797, -1.2978516, 0.46679688, -1.8232422, 1.5947266, -1.2158203, 0.46948242, 1.7001953, 0.63720703, -0.0020427704, 1.0263672, -0.43139648, -2.5273438, 0.38305664, 1.625, -2.7460938, -2.6210938, -0.41064453, -1.5917969, 2.8535156, -0.67578125, -2.765625, -0.41674805, 2.7617188, -0.2298584, 2.0703125, 0.84716797, -0.87158203, -1.8261719, -2.0390625, -0.83496094, -1.4101562, 0.17370605, 1.4345703, 0.62402344, 0.7529297, -1.8164062, -0.18725586, -0.5698242, 0.2775879, -0.21594238, 1.1005859, -0.41186523, -0.9042969, 0.9038086, 0.6879883, -0.76171875, 0.20959473, -0.6665039, 0.86865234, 0.69628906, 0.5854492, 2.4257812, -2.140625, -0.07342529, 0.7607422, 1.6689453, -1.1992188, -1.4033203, 2.3945312, -0.9838867, 1.0371094, -0.58984375, 1.0449219, -0.52490234, 1.2998047, 2.5761719, -1.59375, -1.7763672, -0.30419922, -2.3867188, -3.9238281, -1.4433594, 0.95947266, 0.4013672, 0.81347656, -2.9296875, -1.4785156, 0.52783203, -1.8408203, -0.5332031, -1.1054688, 0.12414551, -0.9501953, -1.7382812, -0.1459961, 1.1806641, 0.36743164, 1.1591797, -0.13305664, -1.0908203, -0.34985352, -1.3496094, -2.3574219, 0.37573242, -1.2402344, 0.35327148, 0.5654297, -1.1210938, 1.6083984, 2.4785156, 0.7783203, -3.7011719, 2.984375, -3.7714844, 1.0947266, 1.8623047, -2.5664062, -1.1884766, 0.6279297, -1.0458984, 1.5439453, 1.9658203, 1.4296875, -1.0791016, -2.203125, 0.88378906, 0.63183594, -1.9111328, 0.56396484, 0.9580078, 1.4628906, 0.5703125, 1.3876953, -0.92626953, -0.15039062, -2.4355469, -1.6318359, 1.1689453, -2.5742188, -0.31103516, -1.8886719, 0.8408203, 1.1162109, -0.17102051, 0.40478516, -0.16259766, -0.9194336, -2.0605469, 1.4667969, -1.9414062, 2.5878906, 3.2890625, -1.3261719, -3.0957031, -0.60546875, -0.30395508, 0.77734375, -0.53759766, -0.9970703, -0.0027103424, -0.33032227, 1.9736328, -0.3173828, 1.1386719, 1.1240234, 1.140625, 0.012687683, 1.3349609, 1.3994141, -1.6533203, 2.5371094, 0.23095703, 0.086364746, 0.5175781, 2.9257812, 2.6894531, -3.2050781, 0.22253418, -1.2138672, 0.6982422, 0.35253906, -0.57128906, -0.7368164, -3.0800781, -0.73876953, 0.65283203, -0.89941406, -4.7226562, 0.49389648, 0.26586914, -1.5976562, -0.87890625, -0.75390625, -0.16882324, -0.12597656, 2.1367188, 1.5292969, -1.5175781, 0.7792969, 1.046875, -0.3791504, 2.9433594, -2.2714844, 0.94970703, 1.8808594, 0.45654297, -1.0546875, -0.17785645, -2.3632812, 1.5107422, 1.5654297, 0.3930664, 3.4863281, -0.88378906, 1.5351562, 0.4104004, 1.6328125, 3.671875, 0.8925781, 0.60791016, 0.9536133, 1.6816406, 1.4667969, -0.9707031, -0.10913086, -0.8046875, 1.2226562, -0.13293457, 1.1162109, -0.41015625, -0.54589844, 1.3945312, -1.9365234, -0.02027893, -0.36743164, 0.10864258, -2.7109375, -0.26391602, 0.39208984, 0.33129883, 0.57373047, 0.09698486, 2.7949219, 0.58691406, 0.38476562, 1.2773438, -1.2265625, -0.4987793, -1.6435547, -0.8095703, 2.0332031, 3.109375, 0.08300781, 0.74365234, -1.4160156, -1.3623047, -0.92578125, 0.2607422, 0.6308594, -1.3496094, 0.52197266, 1.2197266, -0.4716797, 2.3691406, -0.36938477, 3.1289062, 2.109375, -1.0410156, -2.8046875, 2.4941406, 0.6567383, -1.1845703, 0.9633789, 0.1463623, 0.016906738, -1.8564453, 0.6611328, -2.8027344, 0.99853516, -1.3242188, -0.55371094, 1.6318359, 1.2304688, -0.5859375, 2.5703125, 1.5654297, -1.1796875, 0.44555664, -0.69970703, 1.6083984, -0.34765625, 0.26782227, -0.35742188, -0.027267456, -2.8828125, 3.6640625, -0.15209961, 0.035095215, -2.40625, 2.4257812, 0.24084473, -0.3149414, 1.1054688, 1.0322266, 1.0947266, -0.45483398, 2.6933594, 1.3027344, -1.6171875, -0.69091797, -0.0025959015, 0.13000488, 1.4560547, -3.5292969, 1.8583984, -0.034057617, -2.3261719, -1.4189453, 2.0664062, -0.63427734, 0.29541016, 0.11920166, -1.6367188, -2.1601562, 1.2363281, 2.0058594, -1.3398438, -1.1582031, 1.1611328, 1.9082031, -0.76904297, -0.85302734, -0.33007812, 0.079711914, 0.22509766, -0.72558594, 1.6142578, -0.8408203, -1.0488281, 1.0683594, -0.0028038025, 2.1054688, 0.51464844, -0.5419922, 1.2529297, 0.5966797, -1.3603516, 1.2460938, 2.1035156, -1.2460938, -0.75, 1.8330078, 2.6777344, 0.6738281, -1.2822266, -3.234375, -0.8569336, -0.3005371, 0.8305664, 0.62353516, -2.2050781, -0.8300781, 1.0205078, 2.9082031, -0.3083496, -0.5473633, 1.1552734, 0.8432617, 1.5253906, -1.2177734, 3.203125, -0.19543457, -0.90283203, 0.2619629, 2.0527344, 0.09008789, -0.29370117, -0.37329102, 1.2460938, -1.1513672, -0.7871094, -0.7998047, -1.8408203, 0.54785156, 1.0957031, 2.4238281, 1.4677734, 0.9560547, -0.36572266, -1.203125, -0.37158203]}, "B014DAVHSQ": {"id": "B014DAVHSQ", "original": "Brand: ThermoPro\nName: ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer\nDescription: \nFeatures: 300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use\nDual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions\nFood and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ\nConvenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything\nHigh accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32\u00b0f to 572\u00b0f (0\u00b0c to 300\u00b0c) and high accuracy of 1. 8\u00b0f ( 1\u00b0c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings\n", "embedding": [-4.6835938, 1.6035156, 4.5195312, 1.09375, -0.3491211, 0.9472656, -1.0976562, 0.74365234, -0.23913574, 0.8857422, 0.56884766, 0.05340576, -0.9794922, -0.6035156, -0.12243652, 1.1953125, 0.075805664, 0.20959473, 1.3105469, 3.6542969, 1.8896484, 1.828125, -0.28979492, -0.7207031, 2.0058594, -0.3881836, 1.4628906, -2.2519531, -0.4152832, -1.6982422, 2.7714844, 3.15625, 0.43115234, 0.32885742, -1.4228516, -0.17199707, -0.6611328, 0.007183075, 1.4472656, -0.3557129, 0.11657715, 1.4453125, 0.29003906, 2.7714844, -3.3457031, -2.3828125, -1.0996094, 1.671875, -2.1035156, 0.49975586, 0.047424316, 1.7773438, -2.0214844, 0.40551758, 0.5078125, 0.6542969, 0.6972656, -2.3183594, 0.8745117, 1.3144531, -0.09625244, 0.31713867, -1.5029297, 0.5229492, 1.4052734, 0.0016126633, 1.1679688, -2.7929688, 0.23327637, -0.45092773, 0.55566406, 0.48632812, 0.66796875, 1.4511719, 1.4296875, -1.8662109, -0.5209961, 0.65771484, 2.0136719, 0.7128906, -0.21118164, 2.953125, 0.24475098, -1.3847656, 0.89208984, -2.1054688, 0.45288086, 0.71240234, 2.6855469, -0.92041016, -0.140625, 2.8417969, -2.2148438, -2.9433594, 1.3164062, -2.1503906, -0.9082031, -0.4140625, -1.2392578, 2.0878906, -0.9448242, -1.0722656, 0.108947754, 1.4628906, -2.0234375, -2.3457031, 0.8510742, 1.8066406, -3.6777344, -0.96875, -1.7041016, 1.5361328, -0.56396484, 0.07293701, -0.6274414, -1.2109375, -0.29736328, 0.9760742, 0.10522461, 1.4394531, 2.71875, -1.5419922, 0.9111328, -0.15625, -0.28076172, 0.74316406, 2.3710938, -0.17822266, 1.9550781, 0.103027344, -2.1074219, -0.6020508, 0.05456543, -1.0058594, 2.3828125, -2.3183594, -1.9990234, -1.6425781, -1.7373047, -1.2587891, -2.0625, 0.9008789, 0.20288086, 0.91015625, -1.3447266, -2.125, 1.3144531, 0.39648438, 2.9863281, -1.8037109, 0.89160156, -1.9013672, -0.2442627, -0.74121094, 1.9755859, 1.515625, -1.1748047, -0.13122559, 3.0683594, 1.2724609, 0.29785156, -1.2041016, -1.1376953, 0.31884766, 1.5478516, -0.93603516, -2.9492188, 1.5976562, 0.95654297, 2.9238281, 1.3320312, -0.74560547, 1.5703125, -0.42749023, 1.2578125, -3.5273438, 2.8515625, 3.3339844, 1.3632812, 1.5087891, -0.8671875, -1.0556641, 0.5678711, 1.2363281, -0.8847656, -2.8359375, -1.1132812, 1.2861328, 2.9316406, -3.0976562, 1.8681641, 2.4902344, 2.0175781, 0.26293945, 0.11071777, -0.671875, -1.015625, -2.9179688, 0.89990234, 1.2226562, -0.99853516, 0.50878906, -2.3984375, -3.3925781, -1.3564453, -1.7451172, -0.099853516, -0.38427734, 1.3681641, 1.2900391, -0.24938965, -2.8496094, 0.46899414, -0.7993164, 0.40844727, -2.4726562, 1.7841797, 0.121154785, -0.29882812, 1.8408203, -0.18432617, -0.21142578, 1.0722656, 3.3710938, -1.7490234, 2.9726562, -1.8349609, 1.578125, -1.6054688, -0.8730469, 2.9902344, -0.7416992, 0.66552734, -1.7246094, 0.015457153, 1.4873047, 0.9199219, -1.7412109, -1.1660156, 1.46875, -0.16564941, -2.203125, -0.10021973, -1.5087891, -1.1396484, -1.7910156, -1.3535156, 4.046875, 1.6191406, -0.8886719, -0.015930176, 0.55371094, 0.48876953, 0.46606445, 0.07727051, -0.28344727, -0.36889648, 1.1162109, -3.4824219, -1.7265625, 1.4951172, -0.7890625, -1.5976562, 2.0957031, 2.2519531, 0.39892578, 4.890625, 2.5214844, -0.9897461, -1.4130859, 0.088134766, -0.5073242, -2.09375, 0.32128906, 1.8730469, 1.2392578, 1.2099609, 0.2626953, 1.6074219, -2.3359375, 0.5229492, 2.28125, -1.0908203, -0.9370117, 0.8066406, 0.40966797, -1.5722656, -2.3554688, -0.65185547, 1.015625, 3.640625, 1.0322266, -2.9589844, 2.4570312, -3.6875, 1.6894531, -1.0722656, -0.9116211, 1.6347656, -1.5888672, 1.7431641, -0.014320374, -2.1953125, -1.0927734, 0.18713379, -0.6870117, 1.8447266, -1.6757812, 2.2226562, 0.72998047, 1.1572266, -1.2158203, -2.9511719, -0.29418945, -1.2119141, -3.2480469, -0.050689697, -2.6542969, 0.5839844, -1.1953125, 1.6953125, 2.8046875, 1.5292969, -0.84277344, 1.578125, 1.8837891, -0.13623047, 0.5463867, 0.9135742, -0.6699219, 1.3984375, -1.1074219, 0.6557617, -0.6933594, -2.9355469, 0.33569336, -1.2626953, -1.0517578, 0.2861328, 0.4736328, -2.2714844, 1.9414062, -1.8076172, -1.1279297, -0.8442383, -2.4238281, -0.49658203, -1.0585938, -0.29833984, -0.30737305, -0.061523438, -0.07116699, -0.28173828, -1.7333984, 1.5273438, 0.94091797, -1.3662109, 0.06274414, -3.0800781, 1.1181641, -2.5957031, -0.42626953, 0.49414062, 1.4355469, 0.70458984, -1.7324219, 1.5517578, -1.0224609, -0.37695312, -1.9755859, 0.11279297, -2.4121094, -0.39672852, -1.5644531, -0.7558594, 0.4597168, 1.4179688, 1.4111328, -1.859375, 3.6816406, -2.8632812, 1.3964844, 1.6933594, 2.2558594, -1.6806641, -2.3105469, 0.030014038, -2.4785156, -1.2246094, -3.4042969, 0.051635742, -0.17810059, 2.1484375, 0.09869385, 0.32861328, -1.4892578, 1.3017578, -1.7783203, -3.0253906, -0.33496094, 1.6318359, -2.0410156, -1.2363281, -2.4707031, -0.5834961, -1.8193359, -2.4042969, 0.53027344, 1.9375, 0.6171875, 3.3339844, 1.8818359, 0.39135742, -0.6489258, -0.2376709, -3.5097656, 0.86279297, 0.75683594, -2.9199219, -0.6616211, 0.19482422, -0.7416992, 1.1054688, 0.030014038, 3.4414062, 0.5883789, 3.9199219, -0.3413086, -0.0070228577, 2.0039062, 1.4130859, 0.39111328, -0.25024414, 1.8037109, 0.7602539, -4.8164062, -2.2324219, 0.4086914, 1.1523438, -0.9277344, -3.1777344, 0.9863281, 2.109375, 3.2460938, 0.6557617, -1.4560547, -0.93847656, -1.9013672, 1.6035156, -0.2006836, -1.6484375, -1.5996094, -0.26367188, 0.34643555, 0.93652344, 0.35839844, 3.6445312, -0.12390137, 2.2402344, 1.2773438, 0.7216797, -1.9511719, -2.671875, 0.63378906, 1.4794922, 1.3564453, 1.1640625, 0.515625, -0.98339844, -0.12243652, 1.3007812, 0.8544922, -1.5996094, -0.38232422, 0.9199219, -0.42529297, 0.87109375, 0.5029297, -0.36865234, -0.81152344, -2.3300781, -1.1875, 0.9863281, -0.8198242, 2.6855469, -0.43969727, -1.4863281, -1.8984375, 1.0068359, -0.16357422, 0.42651367, -0.87060547, 1.5908203, -1.2714844, -1.1044922, -0.064208984, 0.31079102, -0.40966797, -1.3085938, -0.17736816, 0.73095703, -0.9770508, -1.6875, 0.6113281, 2.0058594, -2.6289062, -2.1054688, -0.122680664, 2.21875, 2.3613281, 0.59277344, -0.4177246, -0.015571594, 0.12145996, -1.8496094, -3.6171875, 0.43579102, 1.4501953, -1.3769531, 0.8071289, 1.1728516, 2.3789062, 0.4255371, -1.1464844, 1.3486328, 0.30273438, -3.53125, 0.3317871, -2.7695312, -0.8378906, -2.1816406, -4.5234375, 1.7333984, -0.55078125, 2.0761719, 2.1464844, 0.9316406, 1.1279297, 1.828125, 1.7001953, -2.2949219, -1.7617188, -1.03125, -0.48339844, -0.39331055, -1.3076172, 6.1796875, 1.2929688, -0.1628418, -0.7998047, -0.99316406, 1.015625, 2.8496094, 1.4482422, 1.4892578, 0.3383789, -0.86083984, 0.1104126, -0.60302734, 0.4658203, 0.26464844, -0.75341797, -0.40966797, -0.8803711, 1.53125, -2.9726562, 0.0021705627, -2.6210938, 2.5195312, -0.117492676, -0.044281006, -1.0283203, 1.5107422, 1.5292969, -0.13928223, -1.171875, -0.42504883, -0.9873047, 2.140625, 0.14990234, -1.0136719, -0.79296875, -3.6484375, -1.3095703, -0.53564453, -0.6352539, 0.90527344, 1.8271484, -2.2382812, -0.21875, 0.5498047, -1.0908203, -1.6708984, -1.6015625, -2.9902344, -0.2319336, 1.2685547, 1.4423828, 1.0908203, -0.85302734, -0.8203125, -3.6367188, 3.3027344, 3.1699219, 1.0644531, 3.6074219, -0.07373047, -0.48266602, 0.20117188, -0.6538086, -0.5703125, -1.2314453, 0.7260742, -0.4465332, 0.05618286, 1.9228516, -1.8066406, -1.53125, 0.78027344, 0.71875, 0.6123047, -0.44189453, 1.4140625, -0.8198242, 1.0439453, 4.78125, 0.10211182, 3.6953125, -1.1005859, 1.640625, -0.25097656, -1.6806641, -0.1550293, 0.2163086, 0.82177734, 0.0904541, -0.78125, -0.4033203, 2.6972656, -1.0419922, 0.39575195, 0.67626953, 0.010513306, 1.3398438, 2.2753906, 0.68652344, 1.1464844, -2.6464844, -1.5253906, 2.6503906, 2.5058594, -0.6113281, 4.8125, 0.3400879, -2.1816406, -0.4716797, 2.7148438, -1.5517578, 1.8945312, -0.9501953, -2.0644531, 0.42016602, -0.9121094, -2.3125, 0.4387207, 3.5488281, -0.7480469, 2.2636719, -2.1269531, -1.1572266, 2.6308594, -3.5546875, -0.11791992, 0.25683594, -1.1435547, 3.1230469, -1.5566406, -2.2773438, -1.0898438, 2.3925781, 2.0214844, -1.7626953, -1.6318359, 0.35961914, -2.8867188, -2.0761719, -0.40234375, -2.0585938, -3.0820312, -1.2988281, 1.03125, -0.7011719, -1.2207031, 0.5527344, 1.6933594, -0.9033203, -0.6923828, -0.7607422, 4.0351562, -1.1708984, -0.43969727, -0.19714355, 0.63916016, -1.5205078, 0.64501953, 0.49194336, -2.1230469, 1.2207031, 2.1855469, -0.984375, -0.8183594, 0.011779785, -2.5097656, -3.7636719, -1.4511719, 1.2333984, 1.3046875, -0.7783203, 0.124938965, 0.31225586, -0.87890625, -0.97265625, 0.006088257, -0.6660156, 0.9345703, -0.77441406, 0.765625, -1.2851562, -0.1529541, -1.0058594, 1.0361328, 0.58251953, 1.2851562, -1.9960938, -2.7734375, -0.9267578, -0.4621582, -2.1875, -2.7792969, 1.0732422, 1.8603516, -2.4667969, 0.95947266, 0.037628174, -1.9072266, 2.6542969, -1.5292969, 0.9008789, 0.38232422, 0.39038086, 1.8447266, -2.4882812, 1.2851562, 1.3193359, -0.5449219, 0.20837402, 1.3896484, -3.0566406, 1.8291016, 0.37402344, -2.3515625, -2.3222656, -1.7060547, -0.42749023, 0.4326172, 0.18408203, 0.47558594, 1.6767578, -2.21875, -5.7890625, -0.81591797, -1.0654297, 0.3154297, -2.2324219, 0.6113281, 2.6367188, -0.35473633, 2.0878906, -0.25219727, 0.65722656, -3.2148438, 0.24951172, 1.7363281, 1.7939453, 0.48364258, -0.56396484, -0.58251953, -1.9101562, -0.46191406, 2.4707031, -1.0742188, -2.0019531, 0.5004883, -1.7128906, -1.4140625, 2.0664062, 3.1152344, -0.3803711, -1.8925781, 0.6879883, 0.11920166, 2.984375, -1.6572266, 0.22912598, 0.1932373, 2.6777344, -1.6953125, 4.09375, -0.6040039, -2.125, 0.46118164, -1.421875, -0.4897461, -0.59375, -1.0527344, 1.9863281, -1.2363281, -0.5600586, 1.5615234, -3.4335938, -0.55078125, 1.5244141, 2.8378906, -0.44335938, -0.6508789, 4.8164062, 1.2626953, 0.46850586, 2.3964844, -1.0908203, 0.87939453, -0.65771484, -1.4111328, -1.9765625, 1.4824219, -1.4960938, 0.43066406, 1.3125, 0.17883301, -2.5625, 2.6074219, 0.328125, 2.5507812, 0.9897461, 2.7519531, 2.5292969, 2.2011719, 2.7792969, 1.0644531, 3.0917969, 0.75683594, -1.5791016, -0.21777344, 2.0917969, 0.8334961, 0.39746094, -1.9472656, 1.2363281, -0.40551758, 0.26367188, 0.20373535, 1.2294922, -0.86328125, -0.24902344, 1.2666016, -0.035125732, 0.44140625, -4.4296875, -0.21044922, -0.2734375, 1.6757812, -2.84375, 3.7617188, 0.7133789, -1.8222656, 1.1542969, -0.5292969, -0.12854004, 1.0732422, -2.6992188, 1.5166016, 1.5576172, -1.4355469, -1.5419922, 1.6347656, 0.5205078, 1.7050781, 2.3417969, -0.7294922, -1.0527344, 0.85009766, 1.3798828, -0.13537598, -1.5537109, 0.048583984, 2.0800781, -1.0644531, -0.9301758, 0.64404297, -0.41723633, -3.6796875, 0.34545898, 1.890625, -0.84814453, 2.3339844, -1.6572266, -2.4472656, 2.0332031, 0.07678223, 0.43823242, -0.72509766, 0.32861328, 0.34838867, 1.7060547, 2.0878906, 1.4130859, 0.87939453, 1.5478516, -2.5683594, -2.6015625, -0.7392578, -0.9248047, 1.2216797, 2.0234375, 0.53515625, -0.9902344, 0.14746094, 1.0566406, 3.0683594, -0.98535156, -1.3203125, -2.6171875, 1.2587891, -0.7001953, 1.5517578, -0.20446777, -3.9921875, -0.73583984, -0.57373047, -2.1054688, -1.6894531, -0.1965332, 0.6982422, 0.7294922, -1.7089844, 0.52197266, 0.82958984, 1.8896484, 1.2744141, 0.7416992, 2.109375, 1.5976562, -2.0859375, 2.5175781, 1.3642578, -0.7783203, 1.4892578, 0.13562012, 1.6748047, -0.421875, 0.075927734, -0.3491211, 0.029800415, -0.22790527, 0.65771484, 0.37109375, 2.5859375, 0.7363281, 0.7158203, 0.57714844, -0.9238281, 0.71875, -2.109375, -3.1542969, 1.0839844, 2.1816406, 0.61816406, -0.015716553, -1.7734375, -0.5908203, -0.87646484, 0.27075195, 0.40039062, 1.4541016, 2.8964844, 2.4863281, -0.3647461, -0.8442383, -1.4150391, -1.3720703, -0.22741699, -1.9150391, -0.00031805038, 0.63378906, 1.4296875, -0.7553711, 0.6767578, 0.095825195, -0.5888672, -0.98828125, -2.1445312, 0.38305664, -1.6181641, 0.9589844, -0.72509766, 0.84375, 0.07946777, 0.8696289, 1.4316406, 1.7978516, 3.3203125, 3.1367188, 1.4306641, -2.7929688, -2.3886719, 2.0859375, 1.7021484, 0.72314453, 2.125, -0.47827148, -1.5380859, -1.1201172, -1.1992188, -0.80322266]}, "B000QYNUXE": {"id": "B000QYNUXE", "original": "Brand: Garcima\nName: GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro\nDescription: \nFeatures: Medidas: 400mm.\nColor negro.\nMuy pr\u00e1ctico y f\u00e1cil de usar.\nArticulo tambi\u00e9n conocido como hornillo, hornilla cocina, fuego paellas.\nIdeal para cocinar con paellera.\n", "embedding": [-1.6962891, 0.58984375, 1.9716797, 0.16967773, 0.16662598, 0.1307373, -0.99316406, -2.6230469, 1.2958984, 0.6269531, -0.08728027, 0.64208984, -1.2041016, -1.3339844, 1.3828125, -0.06964111, 1.7822266, 1.1630859, -0.015975952, 1.1210938, 3.1074219, -0.19262695, 1.0273438, -2.5371094, 2.1425781, 1.5390625, 9.3125, -0.70654297, 1.4355469, -0.3828125, 0.44458008, 0.7783203, -2.890625, -0.03829956, -1.0058594, -1.5576172, 1.8134766, -0.66259766, -1.4453125, 0.86328125, 1.2353516, 0.47753906, 0.124938965, 0.10211182, -1.2148438, 0.7260742, 1.2373047, 0.42041016, 0.18823242, 0.51171875, 0.9663086, 1.0634766, -3.0195312, -1.0507812, 1.9130859, 0.28833008, 0.7114258, -1.4365234, -1.4541016, 1.09375, 0.6166992, 1.765625, -0.52685547, 0.5205078, -0.62939453, 0.46850586, -1.6367188, 0.45825195, -1.1210938, 3.4863281, 1.9160156, -0.83203125, 1.5058594, 0.027252197, 0.37670898, -1.4482422, -3.3085938, 1.2041016, 1.4208984, -1.9511719, 0.94189453, -1.0615234, 2.4042969, -1.78125, -1.7207031, -2.4667969, -0.7495117, 0.0030937195, -1.1875, 0.5058594, 0.578125, 0.7783203, -1.2089844, -4.0351562, -0.11260986, -0.16247559, -3.0761719, 0.70166016, -0.6640625, 1.609375, 0.8017578, 0.75341797, 1.5029297, -0.27905273, -4.3242188, -1.1865234, 2.1601562, -0.46850586, -3.1972656, 1.2587891, -3.1425781, -2.2441406, 0.8691406, 1.6894531, 1.3085938, 1.6542969, 0.030914307, 0.89208984, 1.4238281, 1.0869141, 3.0898438, -1.3837891, 0.35229492, -0.3552246, 0.23352051, 0.5239258, -0.3503418, 1.03125, 2.8378906, -1.9912109, 1.0126953, 0.48461914, 2.5371094, -0.98291016, 0.33325195, -1.3476562, 1.2373047, -1.5673828, -1.3896484, -1.3154297, -2.9082031, 0.62646484, 0.20678711, -1.5839844, -2.328125, -1.5087891, -1.3339844, 1.4248047, -2.2167969, -2.3359375, -1.1689453, -0.60791016, 0.8491211, -0.015205383, 0.9667969, -1.5830078, -0.77734375, -3.3027344, 3.2558594, -0.9711914, 0.37402344, 0.09838867, -1.2314453, 0.5605469, -3.5507812, 0.80810547, -1.0068359, 1.8066406, -0.017837524, 0.734375, -1.6337891, 0.2565918, -0.7597656, -2.5996094, -0.84277344, -0.39672852, -0.5083008, 1.4833984, 1.8212891, 0.76171875, -0.14770508, -0.20837402, -0.36401367, -0.34228516, 1.3583984, -0.83984375, -1.1513672, -1.1835938, 0.072753906, -0.09277344, -0.08905029, -0.45361328, 0.375, 2.0078125, 0.10192871, -1.9091797, 0.4970703, 0.8330078, 0.12658691, 0.5854492, -2.7324219, -0.14941406, -0.49194336, 0.3359375, -0.9584961, 0.09112549, 0.8378906, -0.24523926, 0.21386719, -0.38842773, 3.4296875, 0.34033203, 2.5117188, 1.4091797, 1.8203125, -1.9384766, -0.38623047, -0.4086914, 1.1357422, 0.36645508, -1.4785156, -0.12890625, 0.38964844, -1.3300781, 1.5898438, 1.28125, -2.3242188, 0.058898926, -0.0592041, -2.2421875, 2.4121094, 1.3232422, 0.29858398, -0.1307373, 0.8076172, 0.48486328, -1.3740234, -0.23522949, 0.8017578, -0.80908203, 1.8847656, -0.0947876, -0.5625, -1.8144531, 0.93066406, -0.06335449, 0.21838379, -0.64697266, 0.3671875, 1.3349609, 0.18640137, 1.4140625, -1.3925781, -0.021392822, -0.8364258, -0.018600464, -0.9345703, 0.8105469, -0.44213867, -3.0019531, -1.4355469, -0.22436523, 2.9433594, 0.83447266, 0.2319336, -1.8564453, -0.41503906, -0.2590332, 0.43676758, 1.1542969, -0.14733887, -0.38208008, 2.6113281, -1.9619141, 1.90625, 1.53125, -1.1933594, 0.39404297, -0.9423828, 2.2558594, 0.03756714, -2.2402344, -0.7529297, -3.3867188, 1.8623047, -1.1591797, 0.15063477, -1.8017578, -1.8945312, 0.4345703, 0.8256836, -0.78027344, -2.5332031, 5.28125, 3.4375, 0.8652344, 2.1425781, 0.6040039, -1.9042969, -0.92626953, -1.2626953, 1.7158203, -0.44628906, 1.4511719, -0.25, -1.5859375, -1.0341797, 1.1484375, 1.7919922, -0.101501465, -0.5957031, 0.09881592, -0.32495117, 2.546875, -1.2871094, -1.6181641, 0.8203125, -0.0033874512, 0.9794922, -0.49780273, 1.7988281, 1.5673828, 1.1884766, -2.3222656, 0.1776123, 0.8959961, -2.5234375, 3.8183594, 0.51171875, -0.8457031, -1.3769531, -0.31103516, 0.6699219, -1.2890625, 0.01977539, 1.5029297, 0.099609375, -3.1152344, 3.5761719, -0.5595703, -1.1132812, -0.5996094, 1.03125, 0.5258789, -0.7993164, 0.69873047, -1.7011719, 1.2568359, 1.3544922, 0.35839844, 1.1083984, -1.6865234, -1.0703125, -2.5175781, -0.734375, 2.0976562, -0.15197754, 2.2890625, -1.3076172, 1.8271484, -0.16040039, 1.3886719, -0.091552734, -2.1152344, -3.1523438, 1.3564453, 1.1240234, -1.1259766, 2.1621094, -0.796875, 1.7685547, 0.7949219, 1.75, -2.7480469, -1.8359375, -0.5307617, 0.85595703, 9.109375, -0.7319336, 0.8833008, 0.046203613, 0.86865234, 2.7089844, -1.171875, -1.9101562, 1.1533203, 0.9404297, -0.6220703, -1.3408203, -0.1875, -0.11053467, 1.4199219, 0.6064453, -0.9008789, 0.62841797, 1.2587891, -0.44702148, -1.1914062, 0.1817627, -0.017593384, 0.9008789, 0.94873047, -1.3613281, 0.7163086, -0.50683594, -1.4023438, 0.76416016, -1.9550781, 2.34375, -0.6191406, -0.44799805, 2.9746094, -0.3828125, 1.2392578, 0.52441406, -2.3730469, 1.8564453, -0.12438965, -0.16064453, 1.3671875, -0.5371094, -0.21032715, 0.43847656, -1.8007812, 3.6542969, 0.80566406, 1.2880859, 2.2265625, -0.3515625, 1.6865234, -1.2587891, 0.47021484, 0.46728516, 0.4260254, -0.51660156, -0.27148438, -2.2324219, 1.2558594, 4.1914062, -4.6757812, -0.5390625, -0.45458984, -1.5097656, 0.019577026, 0.05859375, -0.19067383, 0.5395508, 0.27856445, 0.5957031, 0.5996094, -0.7583008, -1.4638672, 1.6689453, -0.27148438, 1.0439453, 9.87649e-05, 0.875, -1.9990234, 3.2675781, -0.9370117, 1.7919922, -0.020828247, 0.8461914, -1.1757812, 0.89941406, 1.6865234, 0.6459961, 1.1640625, 1.3242188, 4.9960938, -0.026290894, 0.8378906, -2.1679688, -0.4230957, 1.7041016, -1.171875, -1.9804688, 0.3803711, -1.2548828, -0.09411621, -1.6513672, -0.27392578, 0.7055664, -0.50634766, 1.7275391, -1.3046875, -2.0703125, -0.26831055, 2.1230469, 2.5585938, -0.9995117, -1.4775391, 2.3652344, -1.6630859, -1.6757812, 0.07745361, 0.9501953, 1.171875, 0.56884766, -1.6132812, -0.91308594, 1.1601562, -0.18603516, -0.49267578, 0.51708984, -0.80126953, 0.47265625, -2.4277344, -0.38842773, 0.47192383, -0.08679199, -0.36645508, 0.0690918, -2.8144531, 1.7539062, -1.53125, 0.37280273, 2.3632812, 0.6801758, -0.08343506, 0.15930176, -1.7148438, 0.5107422, -0.59228516, 2.5351562, -0.75, -0.18908691, 2.2421875, -0.9316406, -1.5087891, -0.6298828, -0.23205566, -0.2788086, -1.6933594, -0.64697266, 3.2421875, -0.1973877, -0.0016565323, 1.0341797, -0.7919922, -0.43041992, -3.7871094, 0.09753418, 1.3066406, -1.3964844, -0.7817383, -1.8271484, 0.9980469, -1.5966797, -1.7714844, 0.087402344, -2.828125, -2.1171875, 1.0410156, -0.16906738, 0.14331055, -0.51464844, 1.5517578, -0.42895508, -1.9775391, 0.76123047, -1.2529297, -0.23168945, -2.2871094, -0.7548828, 0.9892578, -1.2939453, -0.39746094, 0.3491211, 1.7783203, -1.5439453, 0.8027344, -2.0917969, -0.25439453, 0.6381836, -2.6601562, 1.1191406, 0.7709961, 0.56689453, -3.5820312, 0.21081543, -0.5029297, 2.4394531, 0.30395508, 1.5322266, 0.75634766, -2.0136719, 0.54541016, -1.0556641, 1.7695312, -0.22302246, -2.2460938, -1.3212891, -0.38354492, 0.47094727, 0.34033203, 1.7119141, -0.94189453, 1.7714844, 1.5732422, 0.734375, -1.3515625, -1.6347656, 0.9716797, -1.3486328, -1.8369141, -1.7978516, -2.2851562, -1.5488281, 2.5820312, 2.0664062, 0.50683594, 0.28076172, 0.890625, -2.4257812, 0.32983398, -0.84277344, -0.890625, 1.5996094, -1.8105469, 0.31445312, -2.0117188, -0.055755615, 1.1611328, 0.08880615, -1.5644531, 0.5253906, 4.265625, 0.5136719, -0.17236328, -2.6933594, 0.13244629, -1.2431641, 1.1796875, 0.8330078, 1.1435547, 0.35205078, -0.9057617, 1.1191406, 0.51953125, 0.50634766, 0.41357422, 0.20458984, -0.5620117, -0.6875, 0.8173828, -4.0117188, -2.0410156, -1.5839844, -0.02229309, 1.7695312, -0.4428711, 3.171875, 2.3046875, 1.2382812, 0.4284668, 1.7080078, -0.9506836, 1.640625, -1.5859375, -0.5185547, 0.07366943, 0.99560547, -1.9365234, -0.95458984, 1.3837891, -1.9941406, 2.1425781, 1.1728516, -0.8569336, -1.640625, -3.2929688, -2.0273438, -2.7734375, -0.9995117, -2.8964844, 0.60058594, 0.64404297, -0.4802246, 0.99072266, 1.5791016, 0.068847656, -1.3359375, 1.6503906, 0.4128418, -0.7597656, -1.3125, -2.5878906, -1.625, 0.25610352, 1.9521484, 0.3322754, 0.05722046, 1.6816406, 2.4453125, -2.1992188, 0.7392578, -1.0185547, -0.8364258, 0.5595703, -0.73535156, 2.1972656, -1.3222656, 0.093933105, -1.0898438, 0.7792969, 0.03817749, 0.75683594, -0.4116211, -0.5229492, -0.16320801, 0.26342773, -2.0332031, -2.5722656, -0.84277344, -0.515625, -0.4111328, -0.09472656, -1.3691406, 0.0236969, -0.16772461, -2.9082031, 0.5205078, 0.80322266, -1.4257812, -4.1484375, 0.0063209534, -0.020553589, 0.34155273, -0.45825195, 0.20349121, 0.20275879, 2.7226562, -0.08520508, -0.5966797, -4.9492188, 0.04916382, -0.12658691, -0.30981445, -0.84472656, 1.1035156, 2.0117188, 3.28125, 3.9355469, -1.6728516, 0.4284668, -1.9091797, -1.7148438, 0.77441406, -0.4753418, 1.4326172, 1.2382812, 0.73291016, 2.4296875, 1.1484375, 1.1572266, -0.9970703, 0.5371094, -0.28344727, 0.043273926, -0.57128906, 0.87841797, 1.4306641, 1.4707031, 3.1933594, 2.2246094, -1.2841797, -1.7021484, -0.42773438, 0.26611328, -1.2109375, -1.2578125, -1.5566406, 0.38793945, 1.5068359, 1.0234375, 0.40795898, 1.4941406, -0.4621582, 2.1171875, 0.59375, 2.5214844, -0.16589355, 1.7460938, 3.1074219, -1.9355469, -0.9506836, -2.5234375, 0.52246094, 3.0136719, 0.69384766, -2.40625, -2.2324219, -0.8256836, -2.3125, -1.6416016, -2.3515625, -0.15881348, -3.3457031, 0.10217285, 3.5976562, 1.4765625, -0.7504883, -1.4433594, -0.7373047, 3.7050781, -2.1367188, 0.75146484, 1.0791016, -0.3791504, 2.0820312, -0.6791992, 1.3076172, 0.16125488, -0.5854492, 0.6611328, -0.8745117, 1.7939453, 0.42333984, 1.4638672, -2.4921875, -2.1386719, -1.1835938, 0.05078125, 1.8837891, 0.35058594, -2.3964844, 1.4316406, 1.9941406, 2.734375, -2.2675781, -0.1361084, -1.3984375, -1.9560547, 2.5410156, -0.9296875, 1.6660156, 2.3417969, 0.3154297, -1.4208984, -1.9609375, -0.9453125, 2.2441406, 3.7519531, 2.9296875, 2.8203125, 1.8408203, 0.058807373, 1.9296875, 3.2949219, -1.3457031, -2.8417969, 1.7314453, -0.19238281, 0.9213867, 0.9658203, 0.5805664, 0.068359375, 1.4287109, -0.6982422, -0.54589844, -0.7705078, 1.3818359, -1.6962891, 0.43847656, 0.5625, 0.8730469, -1.9316406, 0.8256836, 0.9868164, 0.6621094, -0.94873047, -1.2587891, 1.2822266, -0.4428711, -0.24841309, -0.38916016, -1.5683594, -0.11920166, -2.9433594, 0.6542969, 0.28027344, -0.19995117, 1.1650391, 0.9213867, -0.29760742, -0.578125, 1.4453125, 0.73291016, 1.7861328, 2.7753906, -0.31054688, 0.5644531, 1.0283203, 0.98535156, 1.6513672, -0.93115234, 2.515625, -0.734375, -2.1386719, -1.0888672, 0.27075195, 1.2792969, 0.7324219, -1.8789062, 1.1611328, -1.8935547, 0.97265625, 1.9042969, 0.29736328, -2.7226562, 0.609375, 0.35668945, 1.4375, 0.6582031, 2.7167969, 0.4182129, 2.0878906, 0.80615234, -0.5673828, 0.45996094, 1.1611328, -0.10772705, 0.12548828, -0.2927246, 2.4082031, -0.09613037, -0.44311523, 0.7788086, -1.9453125, 0.44067383, 0.8432617, 1.8398438, 1.9658203, -0.94921875, -0.26708984, 1.7880859, -0.7871094, 0.65722656, -2.0019531, 0.70996094, -2.0917969, -0.5917969, -0.38476562, -0.46899414, -0.65527344, 0.37329102, 1.3378906, -1.8681641, -1.5634766, -0.028396606, -0.6269531, -1.2685547, 0.5805664, 0.28271484, 0.053100586, -0.78808594, -0.75146484, 0.2861328, -0.92578125, 0.39575195, 0.5654297, -0.32714844, -0.049346924, -0.30029297, 1.9013672, -1.6279297, 1.2060547, -3.0761719, 0.46801758, -0.52441406, -1.8808594, 0.41430664, 0.023330688, 0.6430664, -0.061706543, 0.08526611, -1.2519531, 0.8881836, 0.061920166, 0.4958496, -0.15112305, -0.43896484, -0.3659668, 0.83447266, -1.2275391, 2.4355469, -1.0488281, -1.7949219, -0.6430664, -1.4462891, 0.890625, 0.032226562, -0.5107422, 0.5595703, 2.6015625, 2.5683594, -1.7148438, -0.4345703, -1.0966797, -2.3242188, 1.6191406, -1.0810547, -1.1064453, 2.0410156, -1.8486328, -0.51416016, -0.5551758, 1.2011719, 2.2324219, -0.4333496, 0.87646484, -0.019363403, -1.7753906, 0.21582031, -0.67089844, 1.8632812, 0.17443848, 1, -0.11999512, -0.95703125, -1.9394531, -0.31762695, -2.3632812]}, "B07XKXSSND": {"id": "B07XKXSSND", "original": "Brand: SPARC\nName: SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty\nDescription:

          Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

          This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

          Lightweight, Heavy Duty Design

          The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

          Easy to Use Trigger Start

          The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output. Effectively treat small and large areas with this torch.

          A Safe Long-Reaching Handle

          The handle reaches 34\u201d in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

          One Year Warranty

          Backed by our 1 year USA warranty against manufacturing defects. We are\u00a0based out of\u00a0Denver, CO, and offer customer service and support via phone, text, and e-mail.

          \nFeatures: OUTDOOR UTILITY TORCH \u2714 Great for use in gardening, construction, grill ignition, and more.\nTRIGGER START \u2714 Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame\u2019s output.\nLIGHTWEIGHT, HEAVY DUTY \u2714 Slip-resistant foam handle for maximum comfort.\nLONG-REACH KEEPS YOU AT A SAFE-DISTANCE \u2714 Reaches 34\u201d in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire.\nPOWERFUL \u2714 20,000 BTU output, fully adjustable via knob.\n", "embedding": [-1.2304688, 3.0957031, 0.8359375, -0.25048828, -0.26611328, -0.00932312, 2.1523438, -0.5410156, 0.65185547, 0.11505127, -2.5351562, 0.0011558533, 0.55859375, -4.203125, -0.15563965, 1.5849609, -1.5302734, 1.1914062, 1.4853516, 1.2519531, 1.8212891, 1.0087891, 2.0859375, -1.3339844, 2.4609375, -0.85498047, 3.421875, -2.5, 0.2734375, 0.7368164, 1.6738281, 0.30932617, -0.61376953, 0.84228516, -2.9726562, 2.2832031, -1.4873047, 1.2617188, -2.2910156, -0.08502197, -2.5253906, -0.13574219, 2.4628906, -0.28027344, -1.1523438, 1.4873047, -0.7416992, 1.2236328, 0.69091797, -1.2392578, 0.15197754, -0.14819336, 0.6875, -0.29589844, -0.38500977, -1.0253906, -0.40161133, -2.2207031, 2.7773438, 1.6044922, 2.1035156, 1.0185547, -1.9306641, 1.8496094, -0.80029297, 1.5292969, -0.82373047, -0.9321289, -0.97558594, 0.056365967, 2.0078125, 1.6279297, 1.1523438, 0.38427734, -0.043518066, -0.04425049, -3.1347656, -0.041259766, 2.2011719, -0.3474121, -0.11425781, 3.8398438, 2.9160156, 0.5307617, 0.50146484, -0.57470703, -2.5761719, 1.1005859, 0.68847656, 1.2714844, -1.4716797, 1.2773438, -2.4082031, -5.4804688, 3.0527344, -0.36279297, 1.0703125, 0.17944336, 2.0488281, 0.42114258, 0.25341797, -0.05529785, -0.71777344, 1.0126953, -2.7050781, 2.1953125, 0.2290039, -0.60058594, -2.2617188, -0.75, -1.7666016, 0.14257812, 1.1298828, 0.8647461, -2.7324219, -0.8515625, -0.22998047, -0.23791504, 4.4453125, 1.2597656, 3.5292969, -0.2421875, -1.2158203, -0.1772461, 0.9291992, 0.7421875, 0.26586914, 0.6220703, 0.4987793, -1.1328125, 0.4650879, -0.89697266, 0.4465332, -0.6777344, 0.14831543, -1.0771484, -0.38720703, -1.4765625, -1.9912109, -0.056427002, -4.2070312, 0.39160156, 1.9248047, -0.30859375, -5.296875, 0.5698242, -2.7421875, 0.49072266, -0.55810547, -0.8823242, 1.484375, 0.08099365, -1.7988281, -3.0566406, 0.79589844, 0.87353516, -0.051330566, -2.0371094, 2.6738281, -0.6933594, 1.7958984, -1.8427734, -1.40625, 1.0664062, -0.671875, -3.7109375, 0.4580078, 0.81933594, 0.1619873, 0.3173828, 1.8574219, -0.81884766, -0.9848633, -0.5732422, -1.1435547, -1.9814453, 1.3251953, 1.8632812, -0.35302734, -0.10723877, -1.9140625, 0.6772461, -0.7207031, -0.13671875, 1.3125, -1.0634766, -2.6738281, -1.1835938, 0.072753906, -0.6894531, 0.53466797, 0.04840088, -1.3886719, -0.57421875, 0.21203613, -2.5742188, -2.0039062, -2.4003906, 0.42163086, 0.39111328, -3.6152344, -1.6025391, 0.27807617, 0.04083252, -2.9921875, 1.0947266, 0.96875, 1.109375, 0.17590332, 2.5683594, -0.02671814, -1.1533203, 0.75634766, -0.6455078, -0.49902344, -2.2832031, 0.91552734, 0.30151367, 1.8427734, 2.4375, 1.5117188, 0.49267578, 0.22314453, 1.5410156, 0.43969727, 1.7011719, -1.0859375, -0.38867188, -1.6103516, -2.4765625, 0.28320312, -0.004261017, 1.0966797, 0.13317871, -1.1367188, 1.7021484, -0.72753906, 0.1854248, 1.4306641, -0.15930176, 0.11462402, -2.0664062, -0.7036133, 0.6855469, 0.6435547, -1.5146484, -0.43945312, 0.9692383, 0.0597229, -0.12805176, 2.4570312, -0.4868164, 1.4785156, -0.1348877, -0.08166504, -1.1181641, 0.7241211, 1.1279297, -1.3398438, -1.5869141, 1.1738281, 2.9882812, -0.15124512, 0.9511719, 1.1875, -1.9853516, 0.2578125, -0.9838867, -0.42456055, 0.97314453, -0.022613525, 0.3955078, -0.020050049, 3.0214844, 2.4355469, 0.7783203, -0.6850586, 0.9272461, 0.9082031, 0.85009766, 0.61621094, 0.62109375, 2.1171875, -3.2460938, 0.2915039, -0.10546875, 2.6289062, -1.9023438, -0.9042969, 1.0244141, 3.90625, 0.7211914, -2.8886719, 1.2841797, 0.27246094, 2.6894531, 1.8486328, 2.15625, 1.0371094, -1.4414062, 2.3789062, 0.87841797, -0.2565918, 1.0722656, 0.96435547, 0.36157227, 1.8964844, -2.9628906, 1.4169922, 0.50097656, 0.37182617, 1.6025391, 0.26123047, 1.5986328, -1.7392578, -0.9091797, 1.7421875, -3.9550781, 0.07348633, 1.0458984, 0.6699219, 2.5058594, 0.81152344, -1.9199219, -0.0022201538, 0.38745117, -0.8071289, 1.6953125, 0.22058105, -0.8911133, -0.5058594, -2.0136719, 1.8095703, -2.7636719, -1.4287109, -0.035888672, -0.28515625, -2.640625, 1.4316406, -2.8203125, -0.93847656, 1.9169922, -0.1105957, 0.35229492, 0.7348633, -0.1550293, 0.5488281, 0.35327148, -0.7871094, -0.42041016, 0.67822266, 3.5722656, -0.56103516, -1.6689453, 0.1862793, 0.24853516, -0.2770996, 0.049865723, -0.578125, 2.4472656, -0.03967285, 1.1728516, 0.57666016, -1.0712891, 0.9277344, -2.9609375, 1.9746094, -2.2851562, -0.65185547, -1.4833984, 2.90625, 1.4677734, -0.07312012, -0.04373169, -0.9277344, 0.28515625, 0.1048584, 3.2578125, 0.4272461, 2.7285156, -1.9824219, -2.4824219, 1.1835938, -1.3574219, -2.6835938, -0.5917969, -1.4589844, -1.0078125, -1.359375, -1.2246094, -0.15808105, -0.984375, -1.6386719, -0.8071289, -0.3017578, -1.0126953, 1.3779297, -0.7294922, -0.62939453, -0.2536621, -1.0478516, 0.13513184, -3.5546875, -1.6806641, -0.076416016, -1.4648438, 0.20959473, -0.9223633, 1.0878906, -0.011054993, -1.0654297, 2.0351562, 1.1943359, 0.9379883, 1.9824219, -3.7324219, 1.2119141, 1.5732422, -0.87597656, -0.18566895, -2.6816406, 0.38305664, -1.6660156, 1.0732422, 2.8378906, 0.36206055, 0.9116211, -0.59033203, -0.63623047, 1.3876953, 1.2138672, -2.3398438, -0.9165039, 0.18225098, 2.6621094, -3.1953125, -0.02482605, 1.8056641, 2.1679688, -3.1542969, -0.00093603134, 0.703125, 0.0184021, 2.3007812, 3.4375, -1.2216797, 1.0332031, -0.8808594, -0.20947266, 1.1611328, 0.49975586, -0.117614746, 0.47021484, -1.0322266, 1.3486328, 0.20617676, -0.25830078, 0.24987793, 1.9238281, 3.7070312, 0.7216797, -2.1679688, 0.75927734, -1.1376953, 2.5078125, 0.3413086, 1.3105469, 0.29785156, -1.8066406, 0.19299316, -0.55322266, 1.4755859, -1.9960938, 0.10095215, 0.515625, 1.9238281, -0.5493164, 0.8588867, 0.71875, 0.5810547, -2.4785156, 1.9824219, -1.0751953, -1.2558594, -0.18701172, -0.40478516, 2.0625, -3.4082031, 2.4023438, -0.8310547, -1.8222656, 0.051086426, 0.6020508, 0.36547852, -1.1191406, -2.2988281, -0.73535156, -0.6220703, 5.3359375, 0.76464844, -1.2480469, -0.3708496, -2.7246094, 0.0625, 1.2509766, -1.5214844, -0.3984375, -0.19360352, -0.030166626, 0.0009937286, 1.2568359, 0.6796875, 0.32373047, -1.1953125, 2.4277344, -1.6962891, 3.0839844, 1.8798828, -1.2490234, 0.4140625, 1.5869141, -0.75683594, 0.23120117, 0.6142578, 3.4003906, -0.38793945, -0.6225586, 2.3085938, -2.6796875, -2.4433594, -3.1875, -3.3066406, 0.3737793, -2.0839844, 1.1074219, 2.84375, -1.2851562, 0.953125, 0.9399414, 0.24743652, -1.2402344, -3.4570312, 1.1240234, 2.0761719, -1.9990234, -1.703125, 1.1416016, 0.5395508, -1.5214844, -0.3984375, -0.7368164, 0.39038086, 1.1396484, 0.82373047, -0.01638794, 0.5317383, 0.48095703, 0.1116333, 0.3034668, -0.21679688, 0.70751953, -0.3942871, 0.21594238, -1.9794922, 1.5507812, -0.3190918, 0.46972656, 1.5029297, 2.9140625, 0.90771484, 0.12597656, 0.9814453, -0.41992188, 3.2753906, -0.4970703, -1.5742188, 0.24438477, -1.0898438, 1.4365234, -2.1035156, -0.8535156, -0.08703613, -1.6787109, 0.19250488, -1.2900391, 0.7626953, 0.4765625, 0.6191406, -2.6152344, 0.090026855, 1.6953125, -0.8725586, -0.49316406, 0.37231445, 0.1862793, -1.8925781, 1.1699219, -1.4130859, -1.0361328, 0.1083374, -0.88378906, -0.31835938, 0.60839844, 0.6591797, 0.9272461, 2.0273438, 0.89501953, -1.171875, -0.5551758, 0.6821289, -1.7304688, -0.81396484, 0.97021484, -1.0732422, 2.3398438, 1.0869141, 0.44580078, -1.0839844, 1.6484375, -2.3535156, -0.6274414, -0.32421875, 0.15161133, -0.22644043, -0.37890625, 0.6743164, -0.1227417, 1.0419922, -1.6191406, 1.4384766, 0.35473633, -0.52783203, -3.7578125, 0.21459961, -0.1394043, 0.6166992, 0.99609375, 0.5058594, 4.2109375, 0.4182129, 2.3085938, 2.0371094, -0.40576172, -3.015625, 0.41601562, 0.035095215, -1.1328125, -0.33276367, -1.5751953, 0.67333984, -0.15588379, 0.10180664, 2.2324219, 1.4345703, -1.4453125, 0.50683594, 2.0898438, -1.4863281, -0.40673828, -1.7265625, -1.6943359, 1.8701172, 0.072631836, -0.9394531, -0.49829102, 1.4873047, 0.89160156, 1.9814453, -0.54248047, 0.19714355, -0.265625, -1.1875, -2.6621094, -1.2177734, 0.25854492, 1.0615234, -0.5366211, -0.13000488, -0.24487305, 2.1933594, 1.8447266, -0.9379883, -0.106933594, -0.22753906, -1.5966797, 0.6489258, -0.4111328, -1.6777344, -3.90625, 1.6601562, 0.21728516, 0.014434814, 1.6269531, 1.2470703, 1.0976562, -1.0527344, -2.2636719, -0.85253906, 1.4082031, -1.9882812, 0.9243164, 2.4453125, 0.7636719, 2.4257812, -0.7480469, -1.5830078, -1.9091797, 2.0664062, 0.2331543, 0.6826172, -2.2109375, -0.22338867, -2.4863281, -3.9824219, -2.3066406, -0.17871094, -1.1738281, 1.9570312, -0.9741211, -0.70214844, 0.6484375, -0.5761719, 1.0693359, -0.17358398, 0.8725586, -0.9223633, 0.796875, -3.2382812, 1.1943359, -0.057495117, 1.0556641, -0.5073242, 1.0498047, -0.025772095, -2.0410156, -2.3398438, 0.41137695, -0.2548828, 0.3725586, 0.31103516, -1.2558594, 0.4494629, 2.8730469, -1.3515625, -1.0175781, -0.21289062, -2.25, -0.14038086, 0.2722168, -3.1777344, -0.6225586, 0.22521973, -0.8847656, 0.6201172, 0.5649414, 0.02079773, 0.14233398, 0.95751953, -0.81103516, -0.49316406, 0.3720703, -1.6230469, 0.66308594, -0.058502197, 0.8413086, 0.94140625, 0.89453125, -0.20983887, -0.72216797, -0.97216797, 1.4414062, -0.4711914, 1.1835938, -0.2631836, 0.7080078, -0.5473633, -0.65771484, 1.9697266, 0.37719727, 0.62353516, -2.1855469, -0.038116455, -0.83740234, 3.5039062, -0.6479492, -3.5039062, -1.9482422, -2.3925781, 1.7275391, 2.8105469, -0.40454102, -1.1103516, 1.1357422, -2.4570312, 0.032165527, 0.20666504, 1.6884766, 1.3671875, 1.1777344, -3.1601562, -1.5292969, 0.77197266, 0.3256836, -0.8227539, 1.1142578, 1.1689453, 0.0178833, -1.7080078, 1.4472656, -2.2617188, 1.5820312, -0.8300781, 0.0047073364, 0.28930664, -1.8642578, 0.44018555, -0.9301758, 0.79589844, -0.12182617, 1.1103516, -1.578125, 0.6855469, 2.6367188, 1.7412109, 0.6152344, 2.7460938, -0.14831543, 0.7661133, 2.1171875, 1.5361328, 0.8251953, -0.40063477, -2.3730469, 1.9238281, 2.1933594, -1.9003906, 1.4121094, 0.55078125, 1.3291016, -0.08544922, -0.1340332, 2.2402344, 0.328125, 1.4306641, 1.8496094, 1.328125, 1.4169922, 2.5820312, 0.38085938, -0.20483398, 0.9321289, 0.27929688, 2.2988281, 2.0664062, 0.9038086, 0.34326172, 0.09674072, -0.4873047, -0.9765625, -0.15454102, -0.9472656, -0.39160156, 0.19433594, -1.7275391, 1.8398438, -0.62353516, 1.171875, -1.3095703, 2.1777344, -1.6533203, -0.9633789, -1.3007812, 0.9428711, 0.027954102, 0.5126953, -1.6054688, 0.49047852, -0.90234375, -0.20568848, -2.9238281, 0.03503418, -2.9140625, -1.1953125, 1.0253906, 3.3125, 1.3105469, 1.9121094, 0.017456055, 1.6328125, -0.23950195, 0.50341797, 2.4511719, -0.08654785, -0.20336914, 0.17126465, 3.4609375, 0.42211914, -0.30029297, -0.30810547, 1.6298828, -2.4199219, -2.9296875, 1.5537109, -1.3369141, -1.4267578, 1.8798828, -3.2246094, 0.22949219, -2.3671875, 1.2539062, -2.4511719, 0.52685547, 0.15734863, -1.0556641, -0.00035476685, 0.8022461, 1.5048828, 3.1191406, -0.26416016, -0.89501953, -0.61572266, 1.0878906, 1.0585938, -0.92529297, 0.42333984, -1.1357422, 0.48339844, -2.9394531, 3.6152344, 0.34448242, -2.1972656, 0.3137207, 3.2246094, -0.16564941, 0.8886719, 1.0078125, -2.3652344, 0.4729004, -0.796875, -2.8242188, 0.5551758, -0.33813477, -2.3339844, 0.8642578, 0.80859375, -0.4440918, -0.6430664, -1.4863281, 3.1855469, -2.4082031, 0.6040039, 0.30419922, -0.17736816, -0.18432617, 2.0449219, -2.0839844, -1.9335938, -0.41796875, 1.0146484, -2.7558594, -1.8476562, 1.0546875, 1.5566406, -0.55322266, -2.1542969, -0.23071289, -0.65478516, 0.1628418, 0.6088867, 1.6210938, 0.06536865, 0.4411621, 0.78125, -0.3190918, -0.9926758, 1.0537109, -0.5883789, 0.89501953, 1.1542969, -4.5039062, -1.1572266, -0.9482422, -2.1660156, 1.609375, 3.5097656, -1.8720703, 1.4208984, -1.8105469, -1.3662109, 0.48120117, -0.3486328, 2.1289062, -0.06976318, -0.7104492, 0.3762207, 0.92041016, 3.0625, -0.097961426, 0.36254883, -1.4755859, 0.1965332, 0.26293945, 0.20043945, 1.0996094, 1.6816406, -0.15356445, -0.1640625, 3.0820312, 2.2304688, -0.22485352, 1.9013672, 1.4384766, -0.6328125, -2.7421875, -0.30371094, -2.5332031, 1.5742188, 0.55566406, 1.0292969, 2.1542969, -0.4074707, -1.9521484, -2.6933594, -1.8671875]}, "B07X6CJ99H": {"id": "B07X6CJ99H", "original": "Brand: WADEO\nName: WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More\nDescription: 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material\uff1aPVC\u3001cuprum
          Length: \u00a04 Feet
          Weight : 20.46oz
          Inlet Pressre: 25~250 PSIG
          Outlet Pressure: 0~30 PSIG adjutable
          Gauge reading: 0 \u2013 60 PSI (1- 400 xkpa )\u00a0
          Outlet Connection: 5/8\"-18 UNF Female flare swivel fitting( 3/8\" SAE)
          Certificate: CSA
          Max. flow capacity:
          150,000 BTU/hr.
          Works with QCC1/ Type 1 propane tank
          \nFeatures: Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\nEasy and quick to install. Type 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch).\n3/8\u201d female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8\" male flare connector.\n3/8\" Female Flare Fitting has an outside diameter of 5/8\", come with pipe fitting 3/8\" flare M x 1/8\" MNPT.\nCSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "embedding": [-1.6347656, 2.1269531, 1.1621094, 0.027038574, -1.2255859, -0.008728027, 1.9208984, -0.57128906, 0.87402344, 0.87890625, 0.95458984, 1.734375, 2.5195312, -2.2089844, 1.1337891, 1.234375, 0.8959961, 0.6489258, 1.3691406, 2.6445312, 0.34643555, -0.89697266, 2.8476562, -1.1757812, 2.0078125, -1.3613281, 3.5625, -2.9726562, -1.1914062, -1.0683594, 1.3857422, 1.8837891, 0.5605469, 0.54296875, -3.15625, -0.8691406, 0.010322571, 0.016448975, -4.3476562, -1.2724609, -1.4511719, 0.7163086, 1.6425781, 0.640625, -2.9355469, 0.7636719, 1.2421875, 1.0107422, 0.068603516, -0.45141602, 1.1289062, -0.9511719, 0.7001953, 1.8417969, -0.60595703, -0.4387207, -0.46948242, -2.6328125, 1.2333984, 1.5742188, 1.6181641, 1.4023438, -2.4609375, -0.45874023, -0.28393555, 0.5625, 0.17211914, 0.12176514, 1.3808594, 0.6503906, 1.1376953, 1.1748047, 0.37841797, 0.4230957, 0.1373291, -0.117004395, -2.1269531, 0.6928711, 4.1523438, 0.7734375, -1.4628906, 2.5273438, 0.45507812, -3.5253906, 0.63183594, -0.47509766, -1.6757812, 0.24902344, 1.078125, 1.6269531, -2.0507812, 2.8613281, -3.2636719, -4.0039062, 2.0097656, 1.7138672, 1.2890625, 0.03845215, 1.6923828, 0.61376953, -2.1757812, -1.2431641, 0.86035156, 1.7734375, -1.8037109, -0.77001953, 0.22680664, 2.0625, -3.3613281, 0.67578125, 0.63720703, 0.022064209, 2.5195312, -2.0957031, 1.5, -2.1386719, -0.045837402, -0.77685547, 3.0175781, 1.5410156, 2.1835938, 0.984375, 0.12646484, 0.64160156, 0.96533203, 0.28979492, -1.0751953, 0.32202148, 3.8417969, -2.1113281, -0.018157959, -2.8203125, 2.578125, -0.14733887, 0.94677734, -2.6855469, 0.05328369, -3.0058594, -2.1738281, -0.49975586, -3.8476562, -0.33569336, 0.67626953, 0.053863525, -3.3164062, 0.40454102, -2.5644531, 0.03010559, 2.6914062, -3.2421875, 2.2578125, -1.6416016, -0.29882812, -1.3027344, 1.9296875, 1.3798828, 0.6958008, -0.5576172, 3.5390625, 1.6884766, 1.15625, -1.6074219, -1.8330078, 1.8710938, 0.081848145, -2.1328125, 0.1932373, 0.7783203, 0.29174805, 0.70654297, -0.10900879, -1.9550781, 0.08569336, -0.27929688, 0.27539062, -1.2412109, 0.23266602, 2.5058594, 1.9082031, 0.27124023, -3.9785156, -2.2890625, -0.7338867, -1.0585938, 1.3779297, 0.14782715, -2.4746094, -0.4970703, 1.65625, -1.9306641, -1.9394531, 0.35424805, 0.78808594, 1.5292969, -0.7182617, -2.0507812, -3.0761719, -1.1728516, -0.8720703, 1.7460938, 0.20617676, -1.7636719, 0.33789062, 0.046417236, -2.6640625, -0.69677734, -0.47558594, -0.74902344, -0.47045898, 2.1015625, 0.19543457, -1.0917969, 3.1835938, -0.04269409, 0.23742676, -2.4414062, 1.4013672, 2.59375, 1.1240234, 0.44970703, -0.2626953, 0.38305664, -0.02822876, 2.0546875, 1.8896484, 0.37304688, -0.93652344, 1.7480469, -1.3369141, -0.7602539, 1.9941406, 1.1367188, -1.1611328, -0.9770508, -0.4802246, 2.359375, 0.6176758, 0.32885742, 0.12939453, 2.2714844, 0.6225586, -0.75927734, -2.3691406, -1.1748047, -0.9873047, -1.0986328, -2.5488281, 1.9980469, 1.0791016, -0.91064453, 0.72753906, 0.33911133, -0.9121094, -1.2138672, -1.2314453, -0.39331055, 0.6899414, 1.6074219, 0.0051498413, -0.5239258, 2.640625, -0.203125, 0.5229492, 2.3945312, 0.69189453, 0.9716797, 1.8164062, -1.1113281, -1.6904297, -0.33251953, -0.96435547, 3.203125, 1.5771484, -0.78271484, 0.59814453, 1.1914062, -2.0703125, 0.9082031, -0.29052734, 0.73046875, 0.9296875, -0.30493164, 1.8847656, -2.4316406, 2.6191406, 1.5439453, 1.6435547, 0.00054216385, -2.5214844, 1.1113281, 4.1054688, -1.3037109, -3.2753906, 2.0117188, 1.5185547, 0.27539062, 1.3359375, 0.73779297, 0.78759766, -0.8510742, -0.41918945, 0.9921875, -2.9570312, 0.8286133, 2.4550781, -0.28637695, -0.31591797, -1.0136719, 0.8198242, 0.47998047, -1.5302734, -0.16223145, -1.0693359, 2.6601562, -1.7548828, -2.2441406, 1.9619141, -2.6601562, -0.2854004, 1.2050781, 0.45825195, 0.9448242, 0.8154297, -1.703125, 0.122680664, 2.0253906, -1.1923828, 1.3662109, 0.06323242, 0.28735352, -0.7285156, -1.8505859, 0.031921387, -2.7128906, -2.4589844, 0.5649414, -3.1113281, -1.9179688, 1.8857422, -2.6738281, -1.7636719, 0.19580078, -0.5185547, 1.9335938, 1.6914062, -1.1162109, -1.015625, -0.7241211, 0.029083252, 0.7714844, 0.76660156, 2.6660156, -0.7866211, -2.2304688, -0.43774414, -0.4580078, -0.4765625, 0.5966797, -3.46875, 1.3125, 0.19665527, 0.13513184, 0.19030762, 0.31176758, 1.2841797, -2.6835938, 1.7246094, -3.7519531, -1.4804688, 0.9560547, 1.4345703, -0.76953125, 0.81884766, -3.0332031, -0.9560547, 0.03378296, -0.9921875, 2.3789062, -1.515625, 2.6269531, -1.5869141, 0.05001831, 0.78564453, -0.66015625, -1.9785156, -0.38378906, -0.41357422, -0.2668457, -0.079833984, -2.7949219, 1.0791016, 0.7211914, 1.1083984, -0.23217773, -0.5288086, -1.2207031, 0.26049805, 0.47729492, -0.49145508, -0.19030762, 1.1025391, 1.0449219, -2.7148438, -0.20410156, -0.27490234, -2.0566406, -1.5527344, 0.19641113, 1.4443359, -1.1386719, 1.1416016, 1.71875, 0.61279297, 0.4885254, -1.1455078, -2.9394531, 0.50878906, 2.1484375, -2.2675781, 1.6044922, -1.1171875, -1.1542969, -2.2265625, -2.140625, 3.1289062, 2.3339844, 2.4199219, -1.0136719, 0.2388916, 0.30639648, 0.5961914, -0.2775879, -1.0771484, 0.22766113, 4.1601562, -2.6367188, -0.92041016, -0.17126465, 0.9873047, -3.9628906, -0.10369873, 2.0605469, -1.0429688, 1.4453125, 0.7441406, 2.0136719, -0.19055176, 0.10845947, 1.8789062, 0.032470703, -1.4189453, 0.6381836, -1.2128906, 0.22155762, -1.6220703, 0.6459961, 2.4511719, 0.9213867, 1.2148438, 1.4091797, 0.25024414, -1.1738281, 0.20593262, 0.10076904, 0.74560547, 1.0986328, 2.0878906, 0.78027344, -0.045043945, -0.37573242, 0.9848633, 0.97558594, -2.3613281, 0.055908203, 1.8466797, 1.9921875, -1.3076172, 0.23010254, -0.5102539, -0.4230957, -2.3378906, 0.014907837, -0.39404297, 1.0761719, 2.5957031, -0.5756836, 1.6738281, -0.8979492, 1.3574219, 0.85595703, 0.37060547, -0.7441406, -0.28173828, -2.7265625, -0.80859375, -0.1340332, -3.1542969, -1.2226562, 2.5332031, 1.3359375, -0.040039062, 0.8588867, -1.0810547, 1.6259766, 1.4804688, -1.5869141, 0.071899414, 0.7661133, -0.026412964, 0.9238281, -1.0751953, 2.5742188, 0.17749023, -2.8535156, -0.21679688, -2.3027344, 1.8496094, -0.4814453, -0.003856659, -3.6738281, -0.8701172, -0.48339844, 1.6054688, -0.20922852, 2.3515625, -0.57910156, 0.3100586, 2.3183594, -2.3769531, -0.54248047, -2.0039062, -5.859375, 0.7739258, -2.7421875, 0.80859375, 2.8339844, 0.093322754, 0.54248047, 0.5805664, 2.9492188, -3.8066406, -0.36206055, -0.33935547, 0.7060547, -2.5605469, -0.09411621, 2.0371094, 0.91748047, -0.81591797, -2.1503906, -0.46679688, -2.5878906, 0.022445679, 0.7841797, -0.9350586, 0.055847168, -2.5429688, -0.0881958, -1.8349609, -0.4675293, 0.40527344, -1.7099609, -1.3574219, -3.34375, 2.5019531, 0.5625, -0.095825195, -0.6845703, 3.0429688, 1.7353516, -1.1289062, 0.12347412, 1.7714844, 3.6835938, -0.48901367, -2.375, 0.1385498, 0.97216797, 0.5830078, -0.74853516, -1.2529297, -0.4440918, -0.6279297, 1.7490234, 0.63623047, 0.7866211, 0.70947266, 0.07879639, -3.6113281, 1.0683594, 0.96777344, -0.8203125, 0.6040039, -0.7817383, -1.5107422, -1.3271484, 1.0302734, -1.7998047, -0.03878784, -0.70947266, -0.030838013, -2.7167969, 2.3984375, 0.9423828, 0.1104126, 0.9897461, -0.28027344, -1.1757812, -1.3613281, 0.24487305, -1.5175781, -0.13122559, -1.5488281, -0.07928467, 0.91845703, 2.7578125, 0.29248047, -1.0703125, -0.8105469, -1.4609375, 0.08355713, -0.6152344, 1.7490234, 1.6132812, -0.53759766, 0.35961914, -1.140625, 3.9785156, -1.5068359, 1.7587891, 1.3955078, -0.7841797, -1.5205078, 2.78125, 2.4648438, 1.5302734, 0.77490234, 0.29541016, 1.2998047, 3.0507812, 0.3798828, 0.60009766, 1.4394531, -0.9604492, 0.1739502, 0.020843506, 0.9536133, -1.0712891, 0.18481445, 0.5048828, 0.79541016, 2.9863281, 2.1835938, 0.88134766, -2.4316406, 0.92626953, 1.328125, -1.1445312, -0.5932617, -0.18469238, -1.75, 2.4003906, -0.25463867, -1.1982422, 1.1445312, 2.6953125, -0.97265625, 1.8759766, 0.12670898, -0.6743164, 0.84033203, -3.2148438, -1.2001953, -0.9248047, -1.8984375, 1.375, -1.7822266, 0.7963867, 0.42504883, 1.2998047, 1.5185547, -0.8823242, -1.2958984, -1.4580078, -1.4707031, 0.80615234, -0.67333984, -2.390625, -3.4277344, 0.6171875, 1.828125, 2.0371094, 0.17553711, 1.3701172, 0.10821533, -2.3339844, -0.71875, 0.41015625, 1.9619141, -0.62890625, 0.27026367, 2.0449219, -0.57421875, -0.97802734, -1.2490234, 0.03164673, -1.2666016, 2.7929688, 1.4335938, -0.27124023, -0.6489258, 0.33154297, -2.6445312, -4.3164062, -1.9902344, 2.8554688, -0.73583984, 0.58251953, -2.7519531, -1.3847656, 1.5351562, -0.42285156, -0.93066406, -2.6933594, 0.3154297, -1.03125, -0.6621094, -0.5415039, 0.62890625, 0.19873047, -1.1113281, 0.37670898, 0.49291992, -1.3095703, -2.1523438, -2.4003906, 2.2363281, -2.3007812, -1.5273438, 2.5898438, -1.8974609, -1.546875, 1.8974609, 0.98876953, -2.7578125, 2.0429688, -3.3847656, 0.6347656, 0.54052734, -1.1767578, 1.6191406, 0.60839844, -0.047302246, 0.42041016, 2.1738281, 2.0761719, -0.76904297, -0.95751953, 0.7607422, 0.31958008, 0.16455078, -2.265625, -0.24609375, -0.46533203, 2.3671875, 2.0878906, -1.1308594, -0.32373047, -1.6083984, -2.8164062, 0.91503906, -1.8242188, 0.107177734, 0.68310547, 0.8461914, 1.8193359, -0.3762207, 1.4804688, -0.6669922, -0.5019531, -0.89453125, 0.91259766, -0.7246094, 2.2382812, 1.3720703, -1.6835938, -3.03125, -0.6425781, 2.6953125, 3.2617188, -1.0908203, 1.5009766, 0.14648438, -0.3701172, 0.11785889, -0.77978516, 0.4477539, 1.4013672, 0.19421387, -1.6601562, -1.8164062, 2.0292969, -1.3955078, 1.4423828, 1.671875, -0.3251953, -2.3476562, 2.09375, 0.38354492, -2.0273438, 0.4091797, -0.32714844, 1.4384766, -1.359375, -1.7578125, 0.31835938, -3.1796875, 0.4362793, 0.14941406, -2.0878906, -2.0761719, 1.9375, 0.77197266, -1.1962891, 1.4775391, 2.9785156, 0.20227051, -0.6665039, 2.0917969, 1.3017578, -0.7114258, 0.021087646, -1.9521484, 0.21325684, 1.8671875, -1.7060547, -0.20263672, 0.4855957, 1.6582031, -0.9135742, 0.20703125, 1.4707031, 2.7851562, -0.019989014, 2.5410156, 3.0390625, 0.1541748, 1.2080078, 1.3261719, 2.5820312, 2.8769531, -0.4482422, 1.7988281, 0.6274414, 0.045074463, 0.16931152, -0.9370117, 0.43041992, -1.1162109, 0.52978516, 0.4987793, 1.3603516, 2.5761719, -3.5742188, -0.89697266, -1.9160156, -1.390625, -4.4023438, 0.30322266, -1.0244141, 0.15734863, 0.75390625, 1.6191406, 1.53125, 1.1279297, -1.8183594, -0.12976074, 0.42797852, 2.5097656, -0.9794922, 0.7192383, -0.81933594, -1.78125, 1.2148438, 2.4160156, 1.7539062, 0.25732422, 0.24291992, -0.06719971, -1.1464844, 1.875, 0.96191406, -1.3574219, -0.18554688, -1.3427734, 2.6640625, 1.9121094, -1.9384766, 1.3652344, 1.4853516, -1.7460938, -4.515625, 2.5546875, 1.3662109, 0.27685547, -1.2128906, -5.03125, 1.7138672, -2.0625, -0.45654297, -1.71875, 0.94921875, -1.0058594, -1.3300781, 1.390625, 0.6738281, -1.2363281, 2.4277344, 1.2802734, -1.5878906, 0.046813965, 2.7265625, 2.0761719, 0.37695312, -0.39624023, -0.52685547, 0.82421875, -1.1484375, 3.3203125, 0.4560547, -2.671875, -0.5605469, 2.3964844, 0.18371582, 0.92822266, -0.53271484, 0.5161133, 0.7680664, 0.93847656, -0.27539062, -1.53125, -1.6162109, -1.0214844, -0.31420898, -0.28979492, -0.46044922, -1.6855469, 0.23571777, 0.21496582, -1.6630859, 0.7944336, 1.1279297, -0.7475586, 2.1953125, 2.0820312, -0.84716797, -1.7744141, -0.07281494, 0.93652344, -1.5693359, -1.1201172, 1.0117188, 0.25195312, 0.16955566, -1.7304688, -0.22229004, 0.20617676, -0.2980957, -1.5068359, -0.028518677, -0.8730469, -2.2890625, 0.10845947, -0.9472656, 1.0498047, 2.2128906, 0.375, 1.078125, -0.60791016, -0.3569336, 0.6020508, -1.0888672, -1.0439453, 0.82958984, 1.9423828, 0.578125, 0.6040039, -1.8486328, -2.9609375, -1.1396484, -3.0683594, 1.8457031, -1.1972656, -0.66064453, 0.43164062, 0.53564453, 2.125, 0.6791992, 0.41455078, 1.2431641, -0.56396484, 1.6523438, -1.234375, 0.7910156, -0.72216797, -0.48754883, 0.47338867, 2.6660156, 2.6152344, -1.3876953, -0.54003906, 2.3554688, 0.75, -1.6142578, -0.20288086, 0.25, 0.35205078, 0.91015625, 2.4589844, 2.5449219, 0.17224121, -2.3242188, -0.118652344, -1.6474609]}, "B01M2YIWRF": {"id": "B01M2YIWRF", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover\nDescription: \nFeatures: Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H\nGardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt\nClick-close straps snap at front to secure cover on the windiest days\nElastic hem cord for a tight and custom fit\nAir vents reduce inside condensation and wind lofting\n", "embedding": [1.2958984, 1.9560547, 4.2148438, -2.40625, -0.45898438, 1.2421875, 1.1083984, -0.5024414, 3.8847656, 3.4316406, 0.080322266, 0.7871094, 0.54296875, -3.0253906, 1.6699219, 0.62060547, 0.033416748, 3, 3.3046875, -0.98046875, 1.9306641, 1.4042969, -0.25170898, -0.5786133, 0.3569336, -0.8378906, 4.1289062, -3.3242188, -1.0927734, 1.9785156, 1.0771484, -0.21447754, 0.25976562, 2.2265625, -0.79541016, -2, -0.17138672, 0.44799805, -0.93408203, -0.7944336, -2.5546875, -1.3720703, 2.9023438, 0.6347656, -1.2880859, -0.9326172, -0.0847168, 0.07739258, 0.66845703, -1.5224609, -0.07525635, 1.6308594, 2.5585938, 0.9970703, -1.484375, 0.7758789, 0.7001953, -1.8408203, 2.9746094, 1.1113281, -1.6611328, -1.0556641, -2.0292969, 1.6347656, 0.20275879, -0.4465332, -0.4506836, -0.9042969, -0.09124756, 1.7285156, 1.7861328, 0.6430664, 0.3154297, -1.6806641, 0.6074219, -1.1005859, -1.9775391, 0.7626953, 1.1865234, -2.1074219, -1.8623047, 2.21875, -1.3339844, -2.5371094, -0.9951172, -1.6132812, -2.53125, -0.6953125, -1.0410156, -1.5166016, -2.6230469, 2.3867188, -1.9189453, -4.0664062, -0.35888672, -1.4404297, 2.6601562, 1.6972656, 2.1933594, 0.23620605, 0.009338379, 1.2998047, -0.7314453, 0.53027344, -3.0683594, -1.7021484, 0.2548828, -2.1132812, -0.13806152, -0.5229492, -0.11621094, -0.2849121, 0.9067383, -0.37548828, 0.45092773, 0.3317871, -1.0625, -0.07824707, 1.5986328, 0.10119629, 2.7597656, -0.8769531, 1.2490234, -0.76464844, 1.6767578, -0.40429688, -0.65283203, 1.8564453, 2.546875, -1.6240234, 2.078125, -0.27319336, 1.1181641, -0.009613037, -0.46118164, -1.9277344, -0.9916992, -1.2529297, -2.1757812, -0.5991211, -0.06994629, -0.7001953, 0.90771484, -0.124572754, -3.046875, -0.48535156, -1.2529297, 2.4179688, -0.90283203, -2.6953125, 0.56347656, -2.0214844, 0.67871094, 0.00605011, 0.43041992, 1.5019531, 0.49145508, -5.3398438, 1.4589844, 2.5332031, 2.828125, -1.6357422, 0.95214844, 0.25634766, 0.61621094, -1.9863281, 1.6103516, -1.0517578, -0.11987305, 1.5654297, -1.2236328, -2.0136719, 0.5317383, -0.45239258, 0.07562256, -1.2275391, 2.7011719, 1.0947266, 1.3476562, -0.30322266, -3.6269531, -0.48657227, -1.1855469, -1.3457031, 1.0712891, -0.08721924, -1.6015625, -1.4433594, 1.0751953, -0.16003418, -3.0117188, 0.82177734, -2.9804688, -0.28320312, -2.390625, -3.8925781, -1.6884766, -1.3984375, -0.08129883, 0.74853516, -2.2734375, -1.6328125, -1.1855469, 1.375, -2.6835938, -0.6767578, 0.06750488, -0.06756592, 0.65966797, 1.2314453, -0.031585693, -1.4248047, 2.3242188, -1.0986328, -0.9765625, -0.09667969, 1.2460938, 0.026809692, 2.7050781, -0.06088257, -0.52685547, 1.1904297, 1.1376953, 1.1308594, 1.2460938, 2.0429688, 1.1347656, 0.5957031, -3.1464844, -1.4150391, -0.19604492, 0.55859375, -0.3395996, 0.67822266, -0.5908203, 1.7871094, -0.44580078, 0.022720337, -0.01789856, -0.3125, -1.2626953, -1.8320312, -1.2919922, 0.8100586, 1.203125, 1.3681641, -1.2080078, 0.61083984, 1.3974609, -0.040924072, -0.15100098, -1.9814453, 0.30078125, -1.3115234, -0.19726562, 1.2119141, 0.9946289, 1.8574219, 1.7304688, -0.75146484, -0.32592773, 1.1542969, -1.5478516, -0.052581787, -1.3291016, -1.1679688, 0.006099701, 0.06542969, -2.5273438, -0.025863647, 0.50097656, 0.98876953, 1.9892578, 0.6772461, 1.2890625, 1.8847656, -0.8334961, 1.5429688, -0.9506836, 0.033843994, 1.8642578, -0.32763672, 3.0898438, -1.9150391, 2.0898438, 1.6542969, 1.6787109, -0.18896484, -1.7109375, -1.1435547, 3.3203125, -1.2783203, -0.38500977, 3.2324219, 2.65625, 1.2265625, 3.9765625, -1.2333984, -0.81884766, 0.3942871, -1.1162109, -0.4086914, -1.140625, 1.1015625, 1.1767578, -1.375, 0.027740479, -0.9916992, -0.51220703, -0.30444336, -1.0195312, -1.3291016, -0.33935547, 0.86621094, -3.1796875, -1.9335938, 4.1914062, -2.5917969, 0.27148438, 0.8222656, -0.67529297, 2.0332031, -1.2822266, -2.0976562, -0.67822266, 0.4248047, -2.5722656, 1.015625, 1.1289062, 1.3613281, 0.9238281, -1.4355469, 0.5209961, -0.5649414, -1.1269531, -0.3947754, -2.4824219, -0.7114258, -0.8261719, -1.3886719, 0.90771484, -1.1972656, -0.5996094, 1.609375, 1.9541016, -1.1181641, -1.3964844, 1.0009766, -1.0341797, -0.077941895, 0.5473633, 1.8232422, -1.0410156, -5.25, -0.20788574, -0.35595703, -2.203125, 0.69384766, -0.8808594, -0.19482422, -0.43310547, 1.1982422, 2.125, -0.57666016, -0.9067383, -0.33203125, -0.09655762, -3.7167969, 1.9306641, -0.74560547, 1.3828125, -2.4804688, 1.0527344, -0.84521484, -2.5097656, 0.24682617, -2.359375, 5.5390625, 1.7626953, 1.6611328, -1.0458984, -1.5585938, 0.9042969, -1.2353516, -1.7177734, 2.3417969, -0.35498047, -1.0986328, 0.54003906, -3.9804688, 0.5439453, -2.2421875, -0.6767578, 0.49243164, -1.1386719, -1.5019531, -0.16271973, -0.80615234, -0.4567871, -1.3798828, 0.4375, 0.14672852, -0.625, -0.42919922, -0.16125488, -0.22595215, 0.15966797, -0.5131836, 1.6376953, -1.4375, 0.05596924, 2.0546875, -1.8378906, 3.015625, 0.46044922, -3.6035156, -0.39379883, 2.6523438, 2.9960938, 2.7382812, 1.1494141, -2.5761719, -0.5488281, -0.27783203, 2.7695312, 1.2949219, 0.60839844, 0.48583984, 0.1619873, -0.66552734, -0.048736572, -0.8466797, -0.9794922, 0.050842285, 2.5078125, -0.016677856, 0.60839844, 1.8916016, 0.5078125, -3.234375, 1.2070312, 0.75, -2.171875, 3.2636719, 0.7138672, -1.5009766, 0.92333984, 0.19128418, 2.5175781, -0.41137695, 0.98828125, -0.3725586, -0.30786133, 1.0019531, -0.56689453, -0.062438965, 1.1025391, 0.25219727, -1.5976562, -0.41918945, 0.033172607, 0.71435547, 0.30249023, 1.3662109, -0.49365234, -0.85058594, 0.8598633, 0.19189453, 1.4638672, 0.92285156, -0.7011719, -0.05102539, -1.171875, 2.1152344, 1.4638672, 0.49267578, -0.7363281, -1.2880859, -2.6386719, 0.75097656, -2.2949219, 1.3525391, -1.1611328, -1.1396484, 0.27124023, -3.2324219, -1.1738281, -0.7050781, 2.3339844, 1.0273438, -1.9833984, 0.21496582, 1.9638672, -2.7832031, -1.9667969, 0.26586914, -1.6865234, -0.37475586, 1.5576172, 2.5039062, -1.7460938, -0.11291504, -2.4980469, 1.5048828, 3.2070312, -0.1003418, -0.6323242, -0.28051758, -0.14929199, -0.67529297, 0.52001953, 1.3154297, 1.8291016, -2.5390625, -0.44702148, -1.796875, 0.42456055, 2.7871094, 0.0289917, 0.6826172, -0.5385742, -0.04348755, 2.1816406, 0.50927734, 3.4453125, -1.0878906, -2.5644531, 1.1572266, -0.032836914, -0.22839355, -0.1595459, -3.6835938, -0.95214844, -0.025436401, -0.9169922, 2.5703125, 0.2692871, 0.65527344, 0.37841797, 0.58447266, -2.6230469, -1.1298828, -1.7158203, 1.1201172, -2.7597656, -1.7685547, -0.062316895, 0.42041016, -2.8359375, -0.8935547, 0.8383789, -2.4960938, -0.38354492, -0.14001465, 0.7680664, -0.87060547, -1.0996094, 1.0869141, -0.4165039, 0.65283203, -0.08581543, 0.26416016, -0.5883789, -2.2167969, 2.8378906, -0.13024902, -0.8618164, 0.95410156, 3.4960938, 0.69628906, -0.8808594, -0.15490723, -0.8959961, 1.9199219, -1.1240234, -3.1445312, -1.8789062, -1.1455078, 1.1914062, -1.1748047, -1.5830078, 0.0748291, -0.63183594, -0.9609375, 0.27270508, 0.78125, 1.1171875, -1.2412109, -2.9941406, 2.609375, -1.4619141, -0.13769531, -0.70703125, -0.21362305, -0.54589844, -0.17651367, -0.5390625, -1.6396484, 1.703125, 0.43066406, 0.82958984, -1.859375, 2.515625, 0.6323242, 2.1738281, 1.7998047, -3.0800781, -0.9926758, 1.8027344, 0.6801758, 1.9746094, 0.24389648, -0.7246094, 1.4951172, -0.66503906, 1.75, -3.3222656, 0.14916992, -1.8759766, -0.22106934, -0.72753906, -0.9194336, 1.5498047, -0.43701172, -0.8251953, -0.8730469, -2.0957031, 3.3300781, -2.640625, 1.7109375, 0.35424805, -0.23791504, -0.7216797, 2.8457031, 0.77197266, 1.8886719, 1.6611328, -1.5351562, -0.94091797, -0.0037193298, 1.1523438, 0.25390625, 1.1367188, -1.1289062, -0.3334961, 0.5546875, 1.1367188, 0.18237305, -0.33325195, 1.7265625, 2.9277344, 0.20678711, 0.99853516, 1.7880859, -1.7216797, 2.8105469, 1.0458984, 0.15576172, -0.19958496, -1.3291016, 0.73535156, 3.8242188, -2.0703125, -2.3671875, 0.375, 1.5810547, -1.1054688, 1.3388672, -0.040130615, -0.24926758, -1.1777344, -2.1464844, -2.7304688, -0.47558594, -0.3479004, -1.2441406, -0.7211914, 0.38745117, -0.8989258, 1.5654297, 1.8652344, -0.022079468, -1.6435547, 1.8613281, -0.36083984, 0.07421875, -2.0429688, -1.0214844, -1.8759766, 0.4086914, 0.055236816, 0.7036133, 0.33544922, 1.4716797, 1.3515625, -3.015625, -1.4609375, -0.49682617, 1.3730469, -2.5078125, -0.08459473, 2.6953125, -0.22644043, 0.30517578, -0.7788086, -0.3564453, -0.5097656, 0.88964844, 0.9741211, 2.0019531, 0.12463379, -1.5439453, -3.3496094, -3.8417969, -1.1777344, 0.5078125, -1.4443359, 1.8554688, -0.7036133, -1.4003906, 0.34521484, -1.4375, 0.7763672, -1.046875, 1.6025391, -0.5185547, -0.6845703, -1.7578125, -1.0947266, 0.46533203, 1.3710938, 0.31152344, 1.2470703, -1.6074219, -2.546875, -2.3027344, 0.94091797, -1.8037109, -0.23706055, 1.8632812, -0.61376953, 1.7216797, 1.7910156, 1.6621094, 0.10925293, 0.49365234, 0.24719238, -0.7866211, 1.5371094, -0.4741211, 0.5253906, 2.1132812, -1.2294922, 2.0722656, 2.375, 0.8569336, -0.62060547, -0.24707031, 0.7211914, 1.7851562, 0.6699219, 2.078125, 2.0898438, 1.4189453, 1.6611328, 0.69384766, -1.6240234, -0.31469727, -0.82470703, -1.4521484, -0.69970703, -3.3867188, 0.107299805, -0.17456055, 0.08227539, 1.8310547, 2.0546875, 0.60498047, 0.8432617, 2.0078125, -1.6621094, -0.10046387, -1.5703125, 1.7841797, 0.56152344, -0.14416504, -0.9140625, -3.5, 2.0566406, 2.9003906, -0.6142578, 0.9824219, 0.5385742, -2.3183594, -0.20251465, 0.06451416, 2.0234375, -1.0273438, 1.1298828, -2.3554688, 0.77441406, 1.6591797, -0.9116211, 2.6171875, 0.42529297, 0.55810547, -0.61083984, 2.5195312, 2.5429688, -3.6699219, 0.38500977, -0.39038086, 1.5263672, -0.37036133, -0.39941406, 1.6992188, -1.1787109, 0.3996582, -1.2958984, -0.3232422, -3.1777344, -0.27978516, 0.5595703, -1.4511719, 0.55859375, 0.10546875, -0.39746094, 0.6635742, 1.9589844, -0.91308594, -2.1367188, -0.81884766, 0.09240723, -0.1928711, 2.0019531, -0.83984375, 1.8359375, 0.78808594, 1.3769531, -0.19299316, 0.43164062, -0.42626953, 0.028198242, 1.9150391, 3.5742188, 2.8476562, 0.6098633, 1.7089844, 0.61279297, 1.9003906, 3.2441406, -1.7900391, 0.6879883, 1.1210938, 2.2636719, 2.6171875, -2.2558594, -1.8867188, 1.4140625, 0.2541504, 0.56884766, 1.7128906, 1.7333984, -3.5117188, -0.74365234, 0.47070312, -0.70458984, 0.4501953, 1.2373047, -1.4023438, -2.1972656, 0.47607422, -0.6508789, 2.2910156, -1.9238281, 1.4746094, 1.6650391, -0.77441406, -0.111572266, 1.2822266, 0.9013672, 0.24182129, -2.5722656, -0.125, 4.078125, 1.8632812, 1.9677734, -0.9345703, -0.32543945, 1.0761719, 1.4111328, -0.8569336, 0.54296875, 0.93115234, -2.2519531, 0.76123047, 3.7832031, -1.4423828, -0.74902344, 0.03213501, 0.78808594, -3.203125, 0.6621094, 0.8125, -0.059387207, 0.54345703, -4.5273438, -0.35205078, -1.0224609, -0.12988281, -2.5820312, -1.6611328, 0.010894775, -2.7988281, -1.2558594, -0.22521973, -2.953125, 3.0839844, 1.671875, 0.7973633, 2.1191406, 0.83691406, 0.66259766, 0.02909851, 0.79052734, -0.08306885, 0.2626953, -0.19006348, 3.234375, 1.9121094, -2.3359375, 0.008346558, 2.2480469, -0.3725586, 1.0224609, 1.2880859, -0.26489258, 3.9316406, 1.7685547, 0.58984375, 1.2890625, -1.3867188, 0.062194824, 0.8461914, -0.29052734, 1.9853516, -0.41479492, 0.75927734, 0.2244873, -3.7792969, -0.6074219, 0.97753906, 0.3166504, 0.8300781, -1.2451172, -1.9375, -1.1503906, -1.9824219, 1.5322266, -2.5429688, 1.4150391, -3.4023438, 1.2578125, -0.07128906, -1.9443359, -0.52001953, 2.0566406, -2.4785156, 1.0097656, 0.7036133, -0.39575195, -0.28808594, -0.7285156, -1.1601562, 1.0517578, 1.3818359, 1.5644531, -0.112854004, -2.3183594, -1.9560547, 0.62158203, 0.02293396, -0.05493164, 2.3222656, 2.4765625, 0.6503906, 0.80322266, -0.064086914, -0.73779297, 0.008163452, -1.8535156, 1.9423828, -0.26416016, -0.038635254, 0.6582031, 1.8876953, 2.3652344, -0.4970703, -2.4394531, -0.25073242, -0.35961914, 2.6210938, -1.2275391, -0.8300781, 1.4316406, 0.49414062, 1.6914062, 3.1933594, 1.8095703, -1.8847656, 0.68408203, 3.9667969, -2.3320312, -1.6357422, -0.27685547, 0.057128906, 0.80322266, 0.7529297, 3.2714844, 1.3955078, 0.9111328, 0.33251953, -2.3339844, -0.13330078]}, "B07263CMYG": {"id": "B07263CMYG", "original": "Brand: KIBOW\nName: KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection\nDescription: Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
          Specifications:
          -Hose Length: 4 Ft/48 Inch
          -Inlet Pressre: 25~250 PSIG
          -Outlet Pressure: 0~30 PSIG adjutable
          -Outlet Connection: 3/8\" Female flare swivel fitting\nFeatures: Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose.\nBuilt-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it's defective itself.\nType 1(QCC 1) tank end connector & 5/8\"-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL.\nEasy and quick to install. Perfect for propane forge/foundry.\nPlease DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.\n", "embedding": [-0.042297363, 2.6914062, 0.9448242, 0.49316406, -1.9414062, -2.4921875, -0.33789062, 0.37402344, 0.6772461, 0.4165039, 2.4609375, 0.6503906, 1.0927734, -2.109375, 2.2207031, 0.15979004, -0.15112305, 1.2607422, 1.8300781, 1.8330078, 1.1826172, -1.1123047, 3.328125, -1, 2.4433594, -0.70996094, 3.2519531, -3.140625, -1.3134766, -0.25341797, 1.3085938, 0.04776001, 1.0234375, 0.4128418, -0.8564453, -0.07318115, -0.19921875, -0.097473145, -3.5917969, -0.14672852, -2.2246094, 1.8457031, 0.4736328, -0.0892334, -2.2382812, 0.72558594, 1.0800781, -1.4501953, 0.5151367, -0.44873047, 0.12719727, -0.8027344, -0.031173706, 1.9443359, -0.24743652, -0.21813965, -0.44628906, -1.6445312, 1.9619141, 0.94970703, 0.7163086, 0.21398926, -1.7089844, 0.5654297, -0.8588867, 1.2607422, -1.0410156, -0.80908203, 0.8256836, 1.1914062, 0.084106445, 1.0947266, -0.17553711, -1.1621094, -0.6040039, 1.8183594, -2.25, 0.91308594, 2.1191406, 0.4868164, -1.6611328, 0.3701172, -0.48608398, -2.6582031, -0.13256836, 0.07055664, -0.93652344, 0.3334961, 1.7216797, 2.1113281, -1.9931641, 2.2832031, -2.6796875, -4.25, 1.5263672, 2.4785156, 0.045135498, 0.41796875, 2.8378906, 0.19030762, -2.2128906, -0.33862305, 0.50097656, 1.9765625, -1.5322266, -0.22729492, -0.6411133, 1.7734375, -2.4394531, 0.98339844, 1.2773438, -0.19189453, 1.3300781, -2.2988281, 0.29174805, -3.2441406, -0.39648438, -1.5126953, 2.9765625, 1.1005859, 2.1152344, 1.1269531, 0.26757812, 0.08905029, 0.6567383, 1.2587891, -0.50146484, -1.9042969, 4.125, -1.4238281, 0.90283203, -1.6835938, 1.6611328, 0.48120117, 0.1159668, -2.7929688, -0.8022461, -1.3183594, -1.7529297, -0.66503906, -4, -0.7080078, 0.9584961, -0.57421875, -2.5898438, 0.31884766, -2.1679688, -0.2541504, 2.0253906, -2.6132812, 1.2353516, -1.0273438, -1.0361328, -0.53515625, 1.5302734, 1.6484375, 0.96435547, -1.8251953, 2.0976562, 1.1347656, 0.038757324, 0.16015625, -1.3466797, 2.1503906, -1.6435547, -1.7070312, 0.37768555, -0.11206055, -1.125, 0.9243164, -0.8041992, -1.8515625, 0.29370117, 0.3388672, -0.73828125, -1.5664062, 0.46289062, 2.8671875, 1.8466797, 0.84375, -4.5273438, -2.6074219, -0.70458984, -2.5175781, 2.0859375, 0.30615234, -1.2578125, -3.1425781, -0.15100098, -1.7626953, -1.7529297, 0.4387207, 0.7524414, 0.86328125, 0.038208008, -1.9189453, -1.1591797, -1.8300781, -0.6098633, 1.7265625, -1.0087891, -2.2539062, 1.3730469, 0.36938477, -1.9570312, -0.17053223, 1.4335938, 0.1451416, 0.62597656, 3.4238281, 1.0673828, -0.6933594, 1.5009766, -0.58203125, -1.5458984, -2.2792969, 0.8935547, 1.8857422, 2.4628906, -0.5698242, -0.60009766, 0.29907227, 0.053131104, 0.94091797, 3.0800781, 0.4008789, -0.25732422, 1.3427734, -0.8222656, -1.3076172, 1.6162109, 2.6074219, -1.4423828, -1.4658203, -0.87646484, 3.0195312, 0.8535156, -0.7714844, 1.6308594, 0.36108398, 0.091796875, -0.6542969, -1.1582031, -1.1240234, -0.87158203, 0.11730957, -1.5878906, 0.7792969, 1.3212891, -0.23547363, 2.2636719, -0.8701172, -1.8300781, -1.2353516, -0.2541504, -0.69140625, 1.3740234, 0.15820312, 0.3540039, -2.0898438, 2.1484375, 0.74072266, -0.0102005005, 0.8847656, 1.9619141, 0.55859375, 0.29907227, -2.3066406, -0.79589844, 0.80371094, 0.046722412, 3.9140625, 2.7714844, 0.39819336, 0.99365234, 2.828125, -2.4941406, 1.6845703, -1.2080078, 0.7680664, 1.1865234, 0.35229492, 1.3671875, -2.1582031, 1.1640625, 1.2382812, 1.2646484, 0.053588867, -3.0292969, 0.42114258, 3.2207031, -1.5292969, -3.1835938, 1.6396484, 2.1015625, 0.27539062, 0.39086914, 0.18029785, 0.17285156, -1.328125, 1.0498047, 1.4140625, -1.1503906, -0.018478394, 2.3320312, -0.041137695, -0.65185547, 0.59375, -0.26464844, 0.64404297, -1.3095703, 0.5107422, -1.4121094, 3.0742188, -2.0859375, -1.2080078, 1.7353516, -2.5234375, -1.5800781, 1.7392578, 0.027618408, 1.0185547, 1.3076172, -1.4609375, 1.0263672, 1.7246094, -1.9980469, 1.1425781, 0.3334961, -0.7890625, -0.44506836, -2.5214844, -0.5678711, -2.0078125, -1.1220703, 0.82421875, -0.24963379, -2.9960938, 0.2722168, -1.7597656, -0.6113281, 0.21411133, 0.6069336, 2.6972656, 1.6533203, -0.6845703, -1.1103516, -0.3696289, -0.24816895, -0.64208984, 0.99365234, 3.0507812, -1.9423828, -3.0644531, -0.91308594, 0.5161133, 0.66259766, 1.2949219, -2.9238281, 1.6992188, 1.7119141, -0.12976074, 0.84716797, 0.47045898, 0.21118164, -0.8071289, 2.6621094, -2.8652344, 0.07623291, 0.41430664, 1.2988281, -0.16796875, 0.41967773, -1.4951172, -0.2758789, -0.95214844, -0.9472656, 1.0605469, -0.48217773, 2.5039062, -1.4677734, 0.4326172, 0.7705078, -1.5234375, -3.0585938, 0.4885254, -0.20715332, 0.7988281, 0.55322266, -1.8330078, 0.1928711, 0.07623291, 1.0917969, 0.25048828, -1.6181641, -0.23449707, -0.11663818, 1.6923828, -0.8955078, -0.24438477, 1.1015625, -0.2841797, -2.9824219, 1.1074219, -0.32641602, -3.5605469, -0.50341797, 0.63671875, 0.39501953, -1.5498047, -0.7475586, -0.14868164, 1.6142578, 1.3300781, -0.6767578, -1.1835938, 0.27685547, 1.7753906, -1.8837891, 1.4316406, -1.546875, -0.8183594, -0.9873047, -1.5302734, 1.9970703, 1.0996094, 1.9853516, -0.55322266, 2.4355469, -0.9472656, 1.3818359, -0.60302734, -1.8378906, 0.80322266, 2.828125, -1.3466797, -2.1503906, -0.04006958, 1.5527344, -3.9941406, 2.4472656, 2.5722656, 0.40234375, 0.91503906, 1.0751953, 0.4650879, -0.7661133, 0.2746582, 1.3671875, 1.3710938, -0.14562988, 0.14257812, -0.7597656, 0.3017578, -0.42919922, 0.64697266, 1.2919922, 1.8203125, 1.1982422, 2.109375, 1.3144531, -1.0019531, -0.68115234, 0.0072669983, 0.5551758, -0.6582031, 2.1914062, -0.20385742, -0.17749023, -0.5703125, 0.84814453, 1.7646484, -3.7070312, -0.9667969, 0.62402344, 1.0507812, -1.0693359, -1.0292969, -1.328125, -1.1220703, -0.9316406, 0.21044922, 2.1757812, 1.28125, 0.9506836, -0.7167969, 1.5126953, -0.32617188, 1.7851562, 0.013771057, 1.9121094, -0.87402344, 0.011878967, -0.90283203, -1.6416016, -2.0195312, -3.34375, -0.38476562, 2.3222656, 1.3378906, -1.2568359, 0.52490234, -0.27319336, 1.734375, 1.6171875, -0.88916016, 0.109558105, 0.8486328, -0.19348145, 0.11187744, -0.5463867, 1.4482422, -0.88916016, -1.2998047, -0.46533203, -1.8388672, 1.1757812, -1.0214844, -0.7192383, -1.6269531, -1.1796875, -1.6767578, 0.86328125, 0.15905762, 1.1357422, 0.35864258, 1.5537109, 0.84375, -2.2792969, -0.98339844, -1.3505859, -4.5976562, -0.66845703, -2.296875, 1.5810547, 1.2597656, 0.10620117, 1.4580078, 1.5888672, 2.9960938, -3.6367188, -0.23364258, -0.5961914, 0.6098633, -2.0019531, -0.52783203, 1.7197266, 0.4248047, -1.6015625, -1.6621094, 0.5810547, -3.1660156, -1.9111328, 0.071777344, -2.3398438, 1.1542969, -0.46923828, 0.8461914, -0.7158203, -1.5888672, 1.9394531, -0.79785156, -0.6928711, -1.9824219, 2.359375, -0.22290039, -0.018218994, -0.45458984, 3.0078125, 2.234375, -1.3623047, 0.1776123, 0.14257812, 2.9863281, -0.44335938, -1.0292969, 1.2353516, -0.38305664, 0.040130615, -1.3613281, -0.7104492, -1.6611328, 0.87158203, 1.8945312, 1.5283203, 0.8408203, 0.5727539, -0.12988281, -2.6679688, 1.5957031, 0.44873047, -0.45581055, 0.8598633, -1.2177734, -1.0371094, -1.1533203, 1.9521484, -1.0234375, -0.36865234, 0.8232422, 0.38623047, -2.4160156, 0.8886719, 1.0371094, 1.4414062, -0.5839844, -1.7851562, -1.4628906, -0.91259766, 1.1787109, -0.54003906, -0.9736328, -1.1054688, -0.49414062, 0.9633789, 1.8300781, 0.66064453, -1.1201172, -0.34423828, -0.66308594, 1.1669922, -0.58203125, 2.2539062, 0.38671875, -0.2536621, 0.46289062, 0.03756714, 3.125, -1.0244141, 0.08312988, 0.78125, -1.0625, -2.9023438, 2.0253906, 1.8134766, 0.82958984, 0.28930664, -0.9433594, 0.9458008, 1.8027344, 0.31054688, 0.26782227, 1.0712891, 0.06185913, -0.32128906, -0.7109375, 1.4794922, -2.8183594, 0.7631836, 0.6455078, -0.22509766, 2.3398438, 2.5039062, 1.0136719, -1.0146484, -0.20300293, 0.8310547, 0.49731445, -0.84472656, -1.1308594, -3.0507812, 3.4238281, -0.15209961, -0.9165039, 0.5913086, 2.9707031, -0.80078125, 2.0117188, 1.0722656, -0.6323242, 0.97998047, -2.2226562, -0.46166992, -0.4020996, -0.4897461, 2.0019531, -2.1191406, 1.2753906, 1.2255859, 1.6660156, 0.7553711, -0.36694336, -0.42797852, -1.9199219, -1.8945312, -0.45703125, -0.72509766, -2.4785156, -3.6269531, 1.1464844, 0.6142578, 2.8222656, 0.54345703, 0.7607422, 0.8017578, -1.7802734, -0.9321289, 1.34375, 0.24914551, -0.453125, -0.13195801, 2.875, -0.5620117, -1.8203125, -1.8125, -0.14733887, -0.5810547, 2.578125, 1.7167969, 1.5517578, -0.45336914, -0.90625, -3.5996094, -3.3730469, -0.25341797, 2.0898438, -0.3737793, 0.7573242, -2.6640625, 0.33203125, 1.3095703, -1.7519531, -1.6816406, -2.7363281, 0.1149292, -0.50097656, -1.7851562, 0.34594727, 1.0556641, -0.828125, -0.71728516, -2.6113281, -1.8564453, -0.066467285, -1.765625, -0.9609375, 2.1503906, -1.9248047, 0.18554688, 1.9443359, -2.9492188, 0.36254883, 1.0273438, 0.63623047, -1.9726562, 1.9794922, -2.5078125, -0.9873047, 0.29858398, -2.1015625, 0.44384766, 2.015625, 1.2910156, 0.29345703, 2.6210938, 1.6445312, -1.0664062, -1.2685547, 2.6621094, 0.46826172, 0.7167969, -0.87890625, 0.47460938, -0.59765625, 0.032928467, 2.765625, -0.8461914, -0.9189453, -1.3671875, -1.8681641, 1.2265625, -1.3212891, -0.21972656, -0.4489746, 1.2734375, 1.8818359, -0.0045547485, 1.3691406, 0.6972656, -0.20715332, -0.41748047, 2.1933594, -3.0722656, 1.7597656, 0.6435547, -3.3496094, -2.7734375, 0.07421875, 3.1503906, 2.671875, -1.8935547, 0.7519531, 0.40722656, 1.2705078, 1.6445312, -1.0556641, 0.6738281, 1.2851562, 0.2763672, -0.21716309, 0.26660156, 2.2128906, -1.5410156, 1.0595703, 0.9667969, -2.1054688, -0.5288086, 0.7207031, 2.1757812, -1.1054688, -0.38354492, -0.9536133, 0.84375, -1.8857422, -0.8510742, 0.6767578, -1.4248047, 1.5712891, 0.5864258, -0.7402344, -2.8125, 1.3242188, -0.73095703, -1.5546875, 2.0800781, 1.3974609, 0.06591797, -1.7568359, 2.5976562, 1.6152344, 0.21374512, -0.85253906, -2.6699219, 0.3786621, 2.0703125, -1.4326172, -0.62158203, 1.0810547, 1.9492188, -0.64501953, -0.83691406, 0.51904297, 1.8408203, 0.29858398, 1.9804688, 1.546875, -0.6894531, 1.6611328, 1.7597656, 2.5390625, 2.6601562, 0.20837402, 0.03591919, 0.2434082, -1.2021484, 0.703125, -0.41210938, -0.012939453, -1.0068359, 0.73828125, -0.29370117, 2.3925781, 1.8212891, -2.0839844, -1.6738281, -1.5898438, -0.83203125, -2.8203125, 0.5957031, -1.4785156, 0.45336914, 1.8183594, -0.42749023, -0.43554688, 1.2529297, -1.1972656, -0.19958496, -0.07672119, 2.375, 0.3984375, 0.33520508, -2.171875, -2.0449219, 1.3837891, 2.4433594, 1.0253906, 0.43359375, 0.4116211, -1.3857422, -0.7885742, 1.6044922, 0.6777344, -3.0136719, 0.4099121, -0.06317139, 2.7714844, 3.4648438, -1.6113281, 1.5585938, 2.0390625, -1.5058594, -2.8066406, 0.72021484, 1.0517578, -0.3334961, -0.4243164, -3.2363281, 0.88378906, -2.5332031, 0.24975586, -1.8408203, 0.19519043, 0.67822266, -2.2050781, 0.64990234, 0.013397217, -2.296875, 2.4863281, 1.0966797, 0.80810547, -0.71240234, 2.4863281, 2.7304688, 0.89160156, -0.45410156, -0.7993164, 0.37768555, -0.9633789, 3.8378906, -0.25097656, -0.8510742, 0.44067383, 3.0449219, 0.23352051, 1.4951172, 0.6821289, 1.8056641, 0.61328125, 1.1787109, 0.46655273, -0.97216797, -1.2910156, 0.20898438, -0.63671875, -0.41918945, -0.3618164, -1.2636719, 1.0410156, 0.42285156, -1.6025391, 0.30541992, 0.4020996, -1.046875, 0.2298584, 0.11138916, -2.7578125, -3.0820312, -0.5991211, 1.4140625, -1.9345703, -0.17749023, -0.31689453, 1.1767578, 0.025375366, -0.8417969, -1.4326172, -0.80126953, 0.45458984, -1.359375, -0.55371094, -0.10797119, -1.0576172, -0.062194824, -0.59765625, 1.0068359, 1.2392578, 0.26098633, 1.8359375, 1.5302734, -0.59375, 0.32373047, -0.93066406, -1.1318359, 1.0712891, -0.12182617, -1.7958984, 1.0058594, -0.0014619827, -3.4199219, -1.3408203, -2.6582031, 0.90185547, -0.7348633, -1.8427734, 0.51171875, 2.7011719, 2.0761719, 0.2319336, 0.5161133, 0.33789062, 0.70703125, 2.5859375, -1.8818359, 0.09753418, -0.16748047, -1.1787109, -0.3293457, 4.1445312, 1.3935547, -1.7626953, -1.0146484, 2.2519531, 0.53125, -1.7949219, 0.46606445, 0.36694336, -0.6489258, 0.5966797, 0.95947266, 2.9492188, 0.11035156, -2.3359375, -0.5786133, -0.4597168]}, "B07JNK5CHG": {"id": "B07JNK5CHG", "original": "Brand: LW\nName: High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU\nDescription: Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.\nFeatures: Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings\nPowerful 100,000 BTU/Hr + burner\nIncludes hose and regulator and only requires standard size propane tank\nDimensions: 13\" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs\nMatchless ignitor\n", "embedding": [-1.9775391, 1.0234375, 3.1621094, 0.8076172, 0.7089844, 1.0917969, 1.7060547, -0.9272461, -2.8769531, 1.6992188, 1.4208984, -0.6591797, 0.56347656, -1.8300781, -0.30932617, 0.57128906, -0.59814453, 0.7211914, 1.0869141, 0.84814453, 1.1064453, 0.48510742, 1.0595703, -1.3613281, -0.2800293, -0.49121094, 2.9121094, -3.6367188, -1.5361328, -2.1621094, 1.8623047, 0.6875, 1.1279297, 1.4082031, -3.3496094, -0.15588379, -1.1308594, 1.1289062, -4.0976562, 0.68603516, -1.3359375, 0.77734375, 1.5273438, 0.31567383, -2.2617188, 0.56103516, 1.2099609, 0.22912598, -1.8007812, 0.38085938, 0.6274414, -0.24157715, -0.7470703, 0.49145508, -1.2832031, 2.3867188, -1.1054688, -1.6679688, 0.4572754, -0.92578125, 1.8183594, 0.7973633, -1.8359375, -0.37060547, -0.53808594, 0.040771484, -0.32861328, -0.69091797, 1.8251953, 0.34643555, 1.5097656, -0.7480469, -0.15991211, -1.1152344, 1.4921875, -0.5126953, -2.4667969, 0.5419922, 3.7597656, -0.26831055, 0.5341797, 2.625, 0.3161621, -0.92089844, -0.037353516, 0.5683594, -0.75878906, -0.6557617, 2.2246094, 2.84375, -1.3037109, 3.828125, -2.890625, -3.015625, 2.7070312, 0.67041016, 1.8486328, 0.34545898, -0.2536621, 0.34692383, 1.2285156, -1.1923828, -2.4726562, 1.421875, -1.0927734, 0.36791992, 1.3349609, 1.5292969, -2.6445312, 0.9584961, -3.1660156, -0.7685547, 1.9658203, -0.52490234, 2.7832031, -0.06298828, 0.5058594, 0.3071289, 1.9326172, 0.9716797, 4.2109375, -0.8408203, 0.51464844, -0.62060547, 1.1708984, 0.5683594, -1.1015625, -0.023101807, 3.5234375, -2.4609375, -0.6953125, -0.15356445, 2.03125, -0.86328125, -0.7089844, -1.0947266, 0.17883301, -1.2246094, -2.6601562, -1.2519531, -2.3066406, 0.56640625, 0.17590332, -0.43139648, -3.203125, -0.043182373, 1.8955078, 0.6640625, -0.19909668, -1.3994141, 1.1474609, -1.4130859, -0.28295898, -0.44848633, 2.0742188, 0.43359375, 0.010017395, -0.03314209, 4.3984375, 0.57177734, -0.7285156, -1.5126953, -0.6816406, 3.9960938, 0.044311523, 0.20153809, 0.59814453, 0.99365234, 0.30493164, 1.3603516, -0.41870117, -1.4013672, 0.85791016, -0.18164062, 1.0205078, -1.3291016, -1.3779297, 2.2148438, 0.5029297, -1.9541016, -2.0898438, -2.7578125, 0.40771484, 2.1269531, -1.453125, -1.6123047, -0.3474121, -0.23620605, 1.9941406, -2.59375, 0.19226074, -0.9042969, 2.3847656, -1.6728516, 1.2724609, -1.6923828, -0.14697266, -2.8320312, -0.38964844, 1.4580078, -0.8520508, -1.2050781, 1.2373047, 0.096191406, -2.2148438, -0.92089844, -1.6230469, -0.6928711, 0.6274414, 2.5527344, 0.80322266, -0.48706055, 1.9697266, 0.68408203, -2.1796875, -2.2558594, 2.8339844, 0.31689453, 2.0898438, 0.6142578, -0.43823242, -1.9931641, 1.2626953, 2.2695312, 0.71484375, 0.7192383, 1.8945312, -0.3071289, -0.90966797, -0.9189453, 3.2675781, 1.0283203, -1.1054688, 0.1763916, -1.0986328, 2.7304688, 3.1289062, -0.19848633, 0.13439941, 0.13867188, 1.8505859, -0.052612305, 0.6567383, -0.8798828, -2.8808594, 0.03475952, -0.90283203, 1.3310547, 2.2871094, -0.5288086, -0.74072266, -1.0898438, 0.8876953, -0.40844727, -0.5473633, 0.2241211, -0.58203125, -0.7167969, -1.8574219, -1.7998047, 3.6484375, -1.4765625, -1.7832031, 1.4794922, -0.35107422, -1.3847656, 3.296875, 2.6660156, -3.2226562, -0.013931274, 0.68603516, 0.7026367, 2.6972656, -0.9916992, 1.4931641, 1.4335938, -0.5986328, 3.7324219, -0.092285156, 0.8051758, 1.0585938, -1.1386719, 3.2539062, -3.4257812, -0.99072266, 2.0800781, 3.375, -0.40649414, -2.3632812, 2.8632812, 5.4765625, -0.7060547, -2.7773438, 1.8076172, -2.3164062, -0.40014648, 1.2089844, 0.24621582, 2.3339844, -0.8886719, 1.3574219, 1.1132812, -0.86376953, 1.6503906, -1.4287109, -1.8916016, 1.2421875, -3.3554688, 0.43408203, -0.122558594, 0.25317383, -0.5102539, -0.9765625, 2.7089844, -2.8886719, 0.9199219, 3.0800781, -3.1816406, 2.6347656, -0.86035156, -0.48364258, 1.3925781, 0.53271484, 0.24365234, 0.9423828, 1.4082031, -0.92333984, 1.0292969, -0.6274414, -0.81152344, -2.1621094, -1.7421875, -0.17224121, -0.7963867, -1.328125, 0.07550049, -1.1162109, -2.1523438, 0.45458984, -1.1025391, -0.68603516, 2.2832031, -1.0546875, 0.77978516, -0.8984375, -4.0976562, -0.12561035, -1.7070312, -1.3691406, -0.6796875, 0.55810547, 1.7753906, -1.3193359, -2.9355469, 0.4333496, -1.5166016, -0.45239258, 1.0322266, -0.54833984, 0.94384766, 0.19665527, -0.60302734, 0.6694336, 2.4335938, 1.2675781, -1.3847656, 1.3535156, -3.4199219, 0.63964844, -0.63427734, 0.9199219, -0.10864258, -0.005332947, -2.5058594, 0.09680176, -0.60009766, -0.95458984, 2.7734375, -0.009246826, 2.4003906, -1.1474609, -0.12585449, 0.09863281, 0.4897461, -0.9790039, 0.4423828, -1.1582031, -1.1835938, -1.8837891, -4.7890625, -1.0273438, -3.2285156, -1.0703125, 0.4404297, 0.96533203, -0.29760742, -0.40673828, -1.5693359, -0.035491943, 0.70947266, -0.6069336, -0.6386719, -0.93115234, -2.6777344, -0.0022468567, -1.7373047, -0.46118164, 1.7910156, 1.3076172, 0.043273926, 1.1884766, 1.6425781, -0.08282471, -0.58935547, -0.45947266, -2.578125, 2.7636719, 1.4472656, -0.4987793, 1.6982422, -1.9853516, -0.8935547, -3.2734375, -0.8154297, 2.3046875, 0.8671875, 2.6855469, -0.1583252, -0.30029297, -0.04434204, 2.8007812, -0.09197998, -1.8222656, -1.0664062, 3.1621094, -1.7900391, -2.1113281, 0.6303711, 2.3027344, -3.2109375, 1.1455078, 3.6757812, 0.8569336, 0.66064453, 0.6274414, 2.6191406, -1.3964844, -0.54296875, 1.5546875, 1.9960938, 0.79003906, -0.45410156, -1.0878906, 1.9072266, -1.3076172, 1.1464844, 2.8847656, 0.95996094, 1.8847656, 3.6523438, 1.9423828, -0.7675781, -0.59765625, 0.71240234, 2.2128906, 1.3378906, 2.4414062, 0.54052734, 0.1973877, -2.1679688, 0.49951172, 0.07434082, -2.734375, -1.2636719, 1.6503906, 2.2246094, -0.5019531, 0.20117188, 0.86621094, 0.005279541, -0.9555664, 1.6289062, -0.16967773, -0.9267578, 0.6767578, -0.08288574, 1.7548828, -3.0253906, -0.64208984, -0.18566895, -1.5166016, -0.062683105, -0.05041504, -1.4072266, -3.0488281, 0.7050781, -0.43530273, -1.6425781, 3.5742188, 0.88916016, 0.12573242, -0.60791016, -2.0253906, 0.2709961, 0.060943604, -0.9741211, 0.24328613, -0.7182617, 0.90283203, -0.3725586, 0.41259766, 1.3925781, 0.87939453, -1.2070312, 0.28393555, -3.4570312, -0.98339844, 0.05053711, -4.5, -2.3359375, -0.1194458, -0.16174316, 0.24450684, 0.32763672, 3.2851562, -1.859375, -0.73583984, 1.3808594, -2.0253906, -0.35107422, -3.8027344, -4.03125, 0.0385437, -1.3935547, -0.43408203, 2.5332031, -0.52490234, -0.40649414, -0.5703125, 1.1132812, -2.234375, -0.6791992, -1.0019531, 1.6943359, -1.1601562, 2.0917969, 1.5917969, -0.10028076, -1.3935547, -1.4599609, 0.40429688, -0.5756836, 0.9003906, 2.4707031, -3.7539062, 2.2929688, -0.6113281, -0.8457031, -1.7275391, -0.13928223, -0.23522949, -1.5332031, -0.65966797, -1.7207031, 1.6318359, 0.55029297, -0.09362793, 0.9555664, 2.9082031, 0.6699219, -0.18005371, 0.6376953, 1.9501953, 3.0039062, -0.027313232, -1.9960938, -0.7246094, 0.56884766, -0.64501953, 0.28955078, 0.13366699, -1.2119141, -0.01020813, 0.8671875, 0.9379883, 0.3095703, 2.5390625, 1.5107422, -2.2910156, -0.86621094, 0.46313477, -2.7324219, -1.5595703, 0.67578125, 1.4160156, -1.9638672, 1.1455078, -0.6459961, -1.2675781, -1.6210938, 0.62646484, -1.9951172, 4.2695312, 2.4492188, 2.3652344, 2.2246094, -1.1142578, -2.5332031, -1.6035156, -0.0045661926, -1.5019531, -0.045440674, -0.2442627, -0.29589844, 1.9091797, 1.0253906, 0.35913086, -1.1904297, 1.7207031, -1.1552734, 0.35327148, -1.8486328, -0.05657959, -1.2353516, -0.9013672, 1.3623047, -1.1064453, 2.3417969, -1.4707031, -3.1171875, -0.3305664, 0.41552734, -1.0478516, -0.6875, 0.3503418, -1.5, -0.32495117, 1.1230469, 0.3630371, 1.0908203, 0.67089844, -0.47045898, 2.234375, 0.43652344, 1.1523438, -1.3867188, 1.8046875, -0.14343262, -1.5517578, 0.38305664, 0.8720703, 1.7011719, 2.7109375, 1.8730469, -1.6044922, -0.09082031, 0.3449707, -3.7421875, 0.10058594, 1.6132812, -1.9150391, 2.4667969, 1.2197266, -0.84375, -0.7241211, 3.9570312, -0.009941101, 2.0761719, -0.61328125, -0.57421875, -0.05267334, -2.7675781, -1.3066406, -2.3808594, 0.2553711, -0.66015625, -0.6513672, -0.10821533, -2.3886719, 0.73046875, 1.4951172, -0.5151367, -0.49682617, 2.4960938, -1.8583984, -0.3527832, -0.072753906, -2.5136719, -3.1542969, 1.1845703, 1.046875, 1.7714844, 0.56689453, -0.5966797, -0.27075195, -1.0683594, 1.0722656, -0.5083008, 2.9511719, -2.8007812, -0.3388672, 2.1328125, -0.94873047, -1.1230469, -2.1308594, -1.7724609, -2.453125, 0.5473633, 0.6826172, -1.7802734, -0.7705078, 0.7792969, -1.5351562, -3.1914062, -0.39770508, 2.421875, 0.12915039, -0.41748047, -1.125, -2.2382812, -1.6123047, -0.0362854, -1.203125, -2.1171875, 1.1933594, 0.4494629, -0.9824219, -0.8095703, 1.2851562, 0.8959961, 1.0947266, 0.7729492, 0.39697266, 0.34375, -2.5898438, -2.7773438, 1.7753906, -3.5859375, 2, 1.0820312, -0.7026367, 1.8232422, 2.9335938, 0.7529297, -2.21875, 3.4765625, -2.7929688, -1.4414062, 0.89501953, -1.0683594, 0.31176758, -1.0820312, -1.4228516, -0.5229492, -0.6142578, -2.03125, -0.7558594, 1.0947266, 1.2119141, -0.49438477, 2.0800781, -0.82421875, 1.0136719, 1.1689453, 1.8691406, 2.4609375, -0.6489258, -2.3808594, -2.6113281, -2.0390625, -0.41259766, -1.6289062, -0.3232422, -1.1054688, 1.4921875, 2.5683594, 0.7285156, -0.59521484, 0.059173584, -1.1708984, -0.85058594, 1.9755859, -2.0058594, 4.359375, 1.609375, -1.5078125, -1.9941406, -1.0517578, 0.018432617, -0.41186523, 0.91015625, -0.96191406, 0.6455078, -0.72509766, -0.59375, -0.17358398, 2.1210938, 2.0683594, 0.09832764, -2.4941406, -0.39697266, 2.921875, -0.9584961, -0.5288086, 0.7758789, -3.1523438, -0.12536621, 4.5117188, 0.5932617, -1.3154297, 1.3291016, -2.6835938, 0.89160156, -1.0185547, -3.1113281, 0.36279297, -1.1044922, -2.0917969, -2.2402344, -2.3300781, -3.3203125, 0.18640137, 1.7490234, -0.029891968, -0.44555664, 1.9755859, 0.25561523, 2.7089844, 2.4355469, 2.3984375, -0.03277588, 1.6425781, -0.7890625, 1.0898438, 3.5332031, -2.2832031, 1.5615234, 0.042297363, -1.2578125, -2.2382812, 0.41455078, 0.34033203, 2.0527344, 0.097595215, 0.56933594, 2.5273438, 1.5234375, 2.1816406, -0.023101807, 2.4023438, 3, 1.2548828, 1.1767578, 0.7319336, 0.44311523, -0.122558594, -1.8632812, 0.20422363, -2.4941406, -0.75439453, -0.14013672, -0.3503418, 2.1699219, -3.9589844, 1.4326172, -1.8642578, 0.95996094, -1.4101562, 1.0585938, -0.25268555, -0.7548828, 0.07043457, 0.33203125, 1.1455078, 0.63183594, -0.20654297, -1.6347656, 0.33007812, 0.025100708, -4.328125, 1.1650391, -1.2578125, -2.0507812, 0.3239746, 1.6318359, 0.71777344, 0.4560547, 0.28076172, -0.14208984, 1.4433594, 0.35083008, 1.2910156, -1.7675781, -1.0458984, 0.91503906, 3.4707031, 2.0566406, 1.2158203, 1.2792969, -1.0732422, -2.1679688, -2.5058594, 3.7714844, 2.25, 0.9458008, -0.5449219, -1.1328125, 2.9414062, -0.77246094, 1.0449219, -0.44799805, 2.8925781, -0.35229492, -2.6015625, 0.09631348, 1.3310547, -0.0005173683, 1.6542969, 1.6796875, -0.86816406, 0.6015625, 0.092041016, 2.4863281, 2.1445312, 0.89697266, -1.0478516, 1.3798828, -0.025863647, 3.4296875, 2.2207031, -2.7578125, 1.1757812, 4.4648438, 1.7382812, 0.43676758, 0.48706055, -1.5361328, 1.8857422, -0.07739258, 0.8378906, -0.6166992, -0.9453125, -2.265625, -1.6142578, 0.08496094, -1.1738281, -1.9501953, 2.3398438, 0.5024414, 0.19750977, 0.64404297, 1.0859375, -1.2548828, 0.47631836, 0.95703125, -0.4638672, -0.5361328, -0.47875977, 1.2216797, -1.5380859, -1.5458984, 0.63427734, 1.8183594, 2.65625, -1.4570312, -0.37817383, -1.4492188, 0.75878906, -1.5908203, 0.5996094, -1.1806641, -0.81396484, 1.4462891, 0.07940674, -2.2519531, 2.4609375, -1.8359375, 0.46289062, 0.4543457, -3.8808594, -1.2412109, -0.03250122, -1.2265625, 1.7011719, 2.4453125, -0.98583984, 0.32714844, -1.7519531, -3.1054688, -1.4199219, -1.0302734, 0.8857422, 0.6879883, -2.0019531, 0.36254883, 0.56103516, 1.2841797, -1.2089844, -0.39013672, -0.46313477, -0.73339844, 0.49609375, 0.8388672, 2.6621094, -0.77441406, -0.38452148, -0.79248047, 3.75, 0.62646484, -1.9873047, 1.3789062, 2.3164062, 0.5307617, -3, 0.25024414, 0.9121094, 1.6015625, -0.055480957, 2.2148438, 1.4775391, 2.0546875, -1.9697266, -1.3027344, -2.6191406]}, "B07TNWQV77": {"id": "B07TNWQV77", "original": "Brand: XtremepowerUS\nName: XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn\nDescription: High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day\u2019s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15\"(W) x 15\"(L) x 13\"(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove\nFeatures: From tailgating to the backyard chef, cook-off chili to the day's crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable\nWide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control\nPerfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting\nCooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days\nEasy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy\n", "embedding": [-1.8554688, 2.2109375, 2.4199219, -0.07092285, -0.47558594, 1.4003906, 1.2382812, -2.3320312, -1.2480469, 0.37036133, -0.18359375, 0.20410156, 0.5371094, -2.6933594, 0.37597656, 1.6201172, -0.7294922, 0.32006836, -0.40185547, 1.4443359, 2.0566406, 1.1796875, 1.9853516, -0.70996094, 0.5595703, 0.27661133, 2.6640625, -4.0390625, -1.515625, -1.0302734, 2.7128906, 0.30249023, -0.9477539, 2.3320312, -3.3398438, 0.07159424, -2.0839844, 0.7524414, -4.4882812, -0.33862305, -1.4980469, -0.61572266, 2.1054688, -0.32348633, -2.4726562, -0.1953125, 0.6425781, 1.1572266, -2.0234375, -0.9633789, -0.014915466, 0.07788086, 0.13427734, 0.79833984, -1.2988281, -0.3334961, -0.80566406, -2.0195312, 1.0507812, 0.35620117, 1.4257812, -0.54296875, -2.6796875, 1.2226562, -1.4931641, 0.640625, 1.3369141, 0.17126465, -0.06085205, 0.6567383, 1.7783203, -1.0166016, -0.64404297, -0.07385254, 0.1361084, -0.9135742, -2.2597656, -0.06173706, 4.4648438, 0.03967285, -2.0390625, 3.3066406, 1.4130859, -1.3603516, 0.12670898, 1.1914062, -1.7626953, -0.55566406, 2.5214844, 0.6298828, -1.5146484, 3.1992188, -3.7480469, -3.4570312, 2.2109375, 0.640625, 1.5136719, 0.10095215, -0.14587402, 0.73779297, -1.6162109, -0.6074219, -1.1953125, 0.7705078, -2.4804688, -0.54003906, 2.3515625, 2.2324219, -3.0195312, 0.89160156, -2.7265625, -1.1601562, 0.64501953, 0.4309082, 2.0664062, -0.6948242, -0.85839844, -0.8408203, 4.3867188, 0.5703125, 4.6445312, 0.58984375, -0.23461914, -0.8989258, 0.4802246, 2.5234375, 0.39746094, 0.36499023, 2.1152344, -0.9667969, -0.3161621, -2.9941406, 2.3300781, 0.5488281, -0.23522949, -1.8046875, -0.34887695, -2.5058594, -4.5429688, 0.71875, -3.6289062, 0.43847656, 1.734375, -0.19348145, -3.8769531, -1.1738281, 0.069885254, 2.7128906, 0.54589844, -1.4121094, -0.068603516, -1.4023438, 0.7475586, -2.0410156, 2.6601562, 0.5283203, -1.4472656, -1.8300781, 3.4160156, 0.8203125, 0.4086914, -2.3417969, -1.9775391, 3.0273438, 1.3427734, -1.7548828, -0.048095703, 0.48388672, -0.9082031, 1.6113281, -0.92333984, -2.2597656, -1.1386719, -0.14160156, 1.5537109, -1.3886719, -0.74902344, 3.1875, 0.44458008, -0.8457031, -3.6640625, -1.8427734, 1.6025391, 1.4814453, 0.3322754, -1.2548828, 0.2241211, 0.31420898, -1.4072266, -2.3945312, -0.3701172, 0.2241211, -0.17468262, -0.69677734, -0.0947876, -1.8769531, -0.7807617, -3.0273438, 0.12237549, 1.7880859, -1.2265625, -1.3779297, -0.82714844, 0.5620117, -3.0039062, 0.20874023, 0.6401367, -1.7890625, 1.9589844, 2.2167969, 0.36279297, -0.85009766, 1.8925781, 0.32226562, -0.7182617, -1.3701172, 2.2070312, 1.6933594, 1.5224609, 1.9716797, 0.6328125, -1.2314453, 0.5053711, 1.4863281, 0.41918945, 1.5185547, 0.100097656, -0.76708984, -0.6694336, -1.4882812, 3.1601562, 1.3320312, -1.1083984, 0.5083008, -0.68359375, 2.9082031, 1.5986328, -1.1904297, -0.5761719, -0.21350098, 1.2216797, -1.9658203, -0.95458984, 0.35107422, -1.4482422, 0.9741211, -0.06173706, 0.61328125, 3.2265625, 1.0703125, 0.375, -0.58447266, -0.07019043, -1.2978516, -0.086364746, -1.2451172, 1.1455078, 0.32006836, -2.0976562, -2.0683594, 1.109375, 0.9819336, 0.092285156, 1.96875, 0.72558594, -0.20898438, 3.0996094, 1.3828125, -2.2734375, 0.093566895, 0.41723633, 1.2490234, 3.5839844, -0.4794922, 3.2207031, -0.51708984, -0.83935547, 1.8505859, 0.062561035, 2.3945312, 0.51220703, -3.3730469, 2.3535156, -3.2636719, 2.1855469, 0.62646484, 2.5957031, 0.35620117, -0.9350586, 0.30786133, 6.125, -1.3486328, -2.7929688, 2.2207031, -1.96875, 1.7460938, 0.08117676, 1.125, 0.98583984, -0.67089844, 1.9257812, -1.1142578, -1.5537109, 1.6240234, -1.8740234, -0.097961426, 1.4492188, -1.8271484, -1.0273438, 1.5478516, 0.30859375, -1.8115234, -1.3671875, 0.9135742, -1.1259766, -0.6894531, 2.5644531, -3.5488281, 0.66259766, 1.5175781, 1.2431641, 1.6533203, 0.24438477, -2.3710938, 0.9013672, 1.7695312, -0.34545898, 1.2939453, 1.1933594, 0.46166992, -1.1396484, -2.6171875, -0.5004883, -1.0048828, -2.2851562, -0.34716797, -1.9345703, -2.9472656, 1.2265625, -2.7128906, -1.5117188, 1.3935547, -1.8066406, 0.46826172, -0.18908691, -3.3203125, -0.117492676, -0.015853882, -1.0800781, 0.19140625, 0.96484375, 1.3232422, -1.0849609, -2.859375, 0.39111328, -0.2076416, -0.016723633, 0.052703857, -1.15625, 1.3974609, 0.13635254, 0.21960449, 0.08898926, 0.5058594, 0.6074219, -3.125, 0.30981445, -3.4492188, -0.5253906, -0.7675781, 1.1494141, -0.36254883, 0.6225586, -2.3710938, -0.18688965, 0.296875, 0.011756897, 2.7734375, -1.2626953, 1.9121094, -2.265625, -1.1582031, 0.28149414, -2.9902344, -2.8242188, 0.45874023, -0.33276367, -1.5185547, -1.1152344, -4.71875, 0.7607422, -2.0527344, 0.26293945, -0.51904297, -0.21032715, -0.93603516, 1.4179688, 0.110961914, -0.84521484, -0.30541992, -1.1396484, -0.42944336, -3.2421875, -2.2167969, -0.33422852, -1.6855469, -1.2900391, 0.82421875, 0.8378906, 0.76660156, 0.1986084, 2.4433594, 1.2099609, 0.65234375, -0.36889648, -4.1328125, 3.25, 1.8154297, -0.80859375, 2.1074219, -1.1796875, -0.23864746, -1.5244141, -1.6650391, 2.1640625, 0.6635742, 3.5039062, 0.5366211, 0.8388672, 0.06506348, 2.0878906, -0.13989258, -2.8554688, 0.86083984, 5.4921875, -2.4140625, -1.3857422, 1.5576172, 2.2910156, -2.3632812, 0.27319336, 0.82177734, 1.0136719, 2.0527344, 2.40625, 0.7163086, -1.03125, -0.1161499, 0.22131348, 2.0976562, 0.83935547, 0.3762207, -1.7070312, 0.38427734, 0.09851074, 0.6430664, 0.4350586, 0.006866455, 1.8896484, 2.1972656, 0.46069336, -1.0107422, 0.43041992, 0.17053223, 2.0644531, 1.7021484, 2.8691406, 0.45654297, -1.7597656, -1.7558594, -0.6953125, 0.7548828, -1.7509766, 0.066467285, 0.7158203, 0.66015625, 0.5463867, 1.0976562, -0.9765625, 0.9448242, -1.1005859, 1.6738281, 0.32641602, -0.17797852, 1.8115234, -0.73779297, -1.0332031, -3.3867188, 1.9306641, -0.86035156, -0.51416016, 0.48876953, 0.7573242, -1.6748047, -1.6357422, -0.7504883, 1.1083984, -1.4599609, 5.078125, 2.3867188, -1.7900391, 0.5859375, -1.34375, 0.39990234, 2.1230469, -2.0195312, -0.2421875, -0.8725586, 0.5317383, -1.0566406, -0.010856628, 1.6015625, 1.4121094, -1.1650391, 0.117126465, -2.5976562, -0.118652344, 0.47265625, -1.8154297, -1.2148438, 2.3261719, -0.027435303, 1.5048828, -0.52783203, 4.4804688, -1.1533203, -1.0888672, 2.3339844, -3.1875, -2.0058594, -2.1582031, -4.953125, 1.6279297, -0.6928711, -0.3371582, 2.2109375, -1.5537109, 0.54296875, 0.95410156, 1.3027344, -2.0488281, -1.4658203, -1.3496094, 0.8652344, -2.78125, -0.5805664, 1.3496094, -0.42626953, -2.109375, -1.1503906, -0.31933594, -1.0878906, 1.6738281, 2.6054688, -2.1191406, 2.0390625, -1.9794922, 0.25805664, -0.8745117, -0.44433594, -0.37841797, -1.0224609, 0.19299316, -2.6933594, 0.6308594, 1.0273438, 0.1977539, -0.19250488, 3.7714844, 0.5395508, 1.6445312, 0.28833008, 1.7490234, 2.7617188, 0.16040039, -2.4277344, -2.7832031, -0.27783203, -0.89453125, -0.25561523, 0.15161133, -1.5595703, -1.6748047, 1.4384766, 0.9951172, 0.5595703, 2.0273438, 0.9003906, -1.6796875, 0.66503906, 0.48291016, -3.3144531, -1.1181641, -0.7167969, -0.23657227, -2.0976562, -0.20678711, -0.39770508, -1.6269531, -0.6381836, -0.7729492, -1.5703125, 2.7167969, 0.72753906, 1.7724609, 1.2470703, -1.2509766, -2.7734375, -0.38330078, 0.17224121, -0.4963379, 1.3671875, -0.3708496, 0.3076172, 2.9707031, 1.0732422, -1.2519531, -0.46533203, 1.46875, -1.4033203, -0.7265625, -1.265625, 1.4365234, -0.42529297, -1.6328125, 1.5859375, -1.0576172, 1.9560547, -1.0449219, 0.23071289, 0.99658203, 0.7524414, -2, -0.6870117, 0.65625, 0.7963867, 0.10772705, 0.17285156, 0.4128418, 0.5546875, 1.7949219, 1.6279297, 2.8945312, 1.5146484, 0.39794922, 0.25634766, 0.4909668, -0.9760742, 0.1083374, 0.8359375, 0.73339844, 1.2753906, 3.3300781, 2.3476562, -0.021591187, 3.0605469, 0.1105957, -1.9121094, -2.1445312, -0.82373047, -1.0205078, 1.9033203, -0.24523926, -2.6269531, 0.89404297, 2.9804688, -1.390625, 1.8837891, 0.35058594, -0.9423828, 0.6513672, -3.5214844, 0.0129776, -2.2753906, -1.3759766, 0.73046875, -2.7949219, 1.0078125, 0.4645996, 1.8789062, 2.1386719, -0.121154785, -0.43603516, 1.5361328, -1.5644531, 1.9814453, -1.3916016, -1.9726562, -4.8046875, 1.4990234, 1.4238281, 0.8154297, 0.9848633, 0.8623047, 0.3046875, 0.107788086, -1.8378906, -1.4189453, 1.8701172, -1.3007812, -0.7236328, 1.3056641, -0.77783203, 0.20251465, -1.6152344, -1.7128906, -1.3642578, 2.171875, 0.6220703, -0.056610107, 0.33276367, -0.69628906, -2.5664062, -5.4179688, -0.21911621, 1.2773438, -0.20019531, -1.5820312, -0.3786621, 0.04525757, -0.98779297, -0.78759766, 0.0129776, -2.7851562, 0.34423828, 0.74609375, 0.86035156, -1.3330078, 0.15393066, 0.35180664, 0.60546875, 0.78271484, -0.5654297, 0.47143555, -2.3945312, -1.84375, 1.453125, -2.484375, 1.4560547, 1.8408203, -1.7949219, -0.20703125, 2.2890625, -0.27734375, -0.73876953, 3.1933594, -2.2070312, -0.11004639, -0.9746094, -2.0371094, 1.9501953, 0.19995117, -0.014945984, 0.8808594, -1.1835938, -0.19628906, 0.5439453, 1.265625, 0.2998047, 1.0546875, 0.6411133, -3.0097656, 0.9980469, 0.017227173, 1.6279297, 2.2070312, -0.8911133, -1.2705078, -2.1074219, -3.5195312, 0.08258057, -1.1601562, -0.3371582, -1.2890625, 1.3818359, 0.36035156, 0.86376953, 0.11053467, 0.011039734, -0.06137085, -1.3505859, 1.3476562, -1.6318359, 3.3378906, 0.9160156, -2.0644531, -3.4960938, -2.875, 1.4150391, 0.8754883, 1.7695312, -1.4160156, 1.6103516, -0.9658203, 1.2890625, -1.2021484, 2.2871094, 2.5644531, 0.8979492, -1.609375, 0.83740234, 2.46875, 0.43286133, -0.20922852, -0.16210938, -1.1826172, -0.33544922, 3.2460938, 2.0996094, 0.21520996, 1.4365234, -0.85009766, 2.3886719, -0.011680603, -2.7226562, 1.5078125, -1.2714844, -0.51416016, -2.4394531, -2.1132812, -0.9765625, 2.2207031, 1.7070312, -1.1523438, 0.7324219, 2.84375, 0.13000488, 0.7265625, 2.2910156, 0.5131836, -0.58691406, 1.8496094, -1.1826172, -0.19677734, 2.1425781, -2.4433594, 0.57128906, 0.45092773, -0.11920166, -0.6791992, 1.8261719, 1.4072266, 3.7207031, 2.5039062, 1.4824219, 2.015625, 1.2939453, 3.1933594, 0.82714844, 3.7558594, 2.8378906, 0.6113281, -0.4326172, 2.6679688, 0.6557617, -0.3815918, -1.3164062, 0.43969727, 0.19250488, -0.203125, 0.0016460419, -1.1113281, 0.18395996, -3.5234375, 1.1601562, 0.62890625, 1.5488281, -2.1191406, 2.2519531, -0.63916016, -0.9086914, -0.088378906, -0.7705078, -1.4833984, -0.9663086, 0.6142578, -0.7529297, 0.54296875, 1.5732422, -2.4765625, 0.37451172, -1.0410156, -3.21875, 0.3413086, 1.6777344, 0.26123047, 0.68603516, 0.6298828, 0.21508789, 0.57958984, 0.89160156, 2.859375, -2.8476562, 0.14123535, -0.69970703, 3.359375, 0.8564453, -1.2470703, 1.8505859, -0.67626953, -2.5605469, -4.1835938, 2.9980469, 0.19763184, 1.1357422, 0.72021484, -3.2011719, 3.9160156, -0.09173584, 1.8925781, -2.296875, 1.9667969, -0.55810547, -1.0917969, -0.97021484, -0.203125, -0.9506836, 4.8789062, 1.2695312, -0.67529297, 0.9921875, 0.96191406, 0.5410156, 0.13806152, 2.4746094, -0.5551758, 0.8618164, 0.6176758, 2.6152344, 2.1152344, -3.171875, 0.8383789, 2.0839844, 1.3320312, 1.8349609, 0.14416504, -1.2871094, 0.8886719, 0.81347656, -1.0078125, -0.53222656, -0.80078125, -1.6328125, -0.3166504, 0.06695557, -1.6328125, -4.0898438, -0.20593262, 1.5351562, -0.6801758, 1.34375, 1.8574219, -0.83496094, 0.82128906, -0.21606445, -1.0546875, -0.027862549, -1.53125, 0.70166016, -2.5878906, -2.0878906, -0.61279297, 0.40551758, 0.71191406, -0.25610352, -0.40698242, 0.6455078, 0.3630371, -1.2226562, 1.0585938, 0.44750977, 0.47265625, 0.011451721, -0.10571289, -0.20422363, 2.8867188, -0.32006836, 1.0117188, -0.8779297, -3.6640625, -1.5673828, -1.0800781, -1.1503906, 2.4023438, 2.625, 0.8623047, 1.4130859, -1.5888672, -2.6132812, -2.1269531, -1.9111328, 1.6914062, -0.3864746, -0.29370117, 1.3554688, 1.8759766, 2.3476562, -0.31762695, -0.061187744, -0.62939453, 0.6567383, 1.1542969, 1.3720703, 1.6357422, 0.6352539, 0.8510742, -0.7504883, 2.2109375, 1.3369141, -0.99853516, 1.3769531, 2.5429688, -1.2207031, -3.0898438, 1.2246094, -1.2216797, -0.7290039, -0.76904297, -0.45507812, 3.0917969, 1.9804688, -1.4365234, -2.7792969, -2.0664062]}, "B00NCSUZBQ": {"id": "B00NCSUZBQ", "original": "Brand: Magma\nName: Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nBurner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\n", "embedding": [0.020431519, -0.6958008, 1.75, 2.75, 1.5097656, 2.0390625, 0.107299805, -1.5605469, 0.18908691, 1.3271484, 0.40722656, 0.7446289, -0.49438477, -0.8852539, 1.7744141, 1.8779297, 0.88623047, 1.6699219, 0.6723633, -1.3603516, 1.2216797, -0.4909668, 1.1240234, -1.0087891, 3, 1.4912109, 3.6992188, -2.7617188, 0.6220703, -1.8037109, 1.1542969, 0.7788086, -0.85009766, 1.7138672, -2.7324219, -0.24572754, -1.0703125, 0.8408203, -2.3085938, -0.034698486, 0.3557129, -0.72998047, 2.1738281, 0.068359375, -3.6582031, -0.9707031, 1.4003906, 1.8203125, -2.40625, -2.578125, 2.7910156, 0.45214844, -0.47680664, 0.14233398, -1.5087891, 2.0234375, 1.8349609, -0.6459961, 1.2304688, 0.08001709, 1.8046875, -0.82373047, -1.2744141, -1.3554688, -2.0644531, 0.44604492, 0.74560547, -0.45092773, -0.46728516, -0.7729492, 1.5488281, 1.0517578, -2.4023438, 0.9213867, -1.2021484, -0.85546875, -3.9101562, 1.5869141, 0.5209961, -0.14025879, -2.6738281, 2.8925781, 1.1982422, -1.4501953, 0.43579102, 0.54296875, -1.2529297, -0.045318604, 0.41088867, -0.09979248, -1.0214844, -0.029464722, -1.8691406, -4.4765625, 2.1757812, 0.4182129, -0.31201172, 2.3886719, -0.5605469, 0.24633789, -0.24206543, 0.77441406, -0.9819336, -0.6147461, -2.8164062, -1.2490234, 1.1171875, 0.38134766, -3.0722656, -1.5546875, -2.2714844, -0.5449219, -0.25732422, 0.8984375, 2.3300781, 0.06060791, 1.1904297, 0.27124023, 1.0195312, 2.0976562, 2.0644531, -0.057281494, 1.28125, -0.20825195, 0.19238281, -1.3974609, -0.08300781, 3.0800781, 4.71875, -2.0625, 0.2668457, -1.1035156, 4.21875, -0.45166016, -1.1318359, -3.5957031, -0.61572266, -2.34375, -1.6464844, 0.21191406, -2.6660156, 1.6933594, 1.7050781, -1.2685547, -3.9179688, -0.30810547, -0.6308594, 0.29907227, -0.29296875, -1.6796875, -0.62597656, -1.7431641, 0.42822266, -0.16345215, 1.7900391, -1.8427734, -0.4736328, -2.3085938, 3.171875, 0.6303711, 0.20983887, -1.2900391, -1.6953125, -0.05899048, -0.57910156, -1.0576172, -1.0615234, 2.0898438, 1.7441406, 2.0039062, 0.057373047, -0.17651367, 1.6435547, -0.072387695, 0.26123047, -0.076416016, -0.1394043, 0.5722656, 0.27441406, -0.6064453, -1.9931641, -2.0585938, -0.24377441, -0.3930664, 2.1113281, -0.5239258, -0.34350586, 0.6113281, 0.13659668, -0.12548828, 1.1210938, 1.2363281, -1.1376953, 2.1328125, -0.484375, -2.3378906, -3.4375, -0.79003906, 2.8828125, 0.58203125, 0.29418945, 1.0380859, -0.20800781, 0.6821289, -1.8710938, -3.6855469, -0.75390625, -2.1835938, 0.9785156, 1.1210938, 2.5742188, -2.7089844, 1.3525391, -0.91552734, 1.2392578, -1.9296875, 1.4375, -0.98095703, 1.9589844, 2.25, -1.1582031, -0.7607422, 1.0341797, 1.5644531, -0.23876953, 1.1357422, -0.45166016, 1.5419922, -2.8554688, -0.95751953, 1.4863281, 0.049102783, -0.75, -0.070373535, 0.9394531, 1.8398438, 0.15429688, -1.6376953, -0.13330078, -1.5273438, -1.6621094, -1.6953125, -2.7675781, -1.5039062, 0.32104492, 0.37329102, -2.6542969, 0.7915039, 3.3769531, 1.4189453, -1.0166016, 1.0214844, -0.31152344, 0.43188477, -0.51904297, 0.8647461, -0.24047852, 0.7729492, -0.62890625, -3.2871094, 2.1347656, 1.6728516, -0.72314453, 0.80322266, 1.2167969, -0.9379883, 3.0371094, 0.18457031, -0.27319336, -1.5644531, 2.1875, 0.43603516, 3.3867188, 0.29248047, 2.59375, 2.4277344, 0.55810547, 2.5039062, 1.1533203, 0.89501953, 1.2451172, 0.3581543, 0.98779297, -4.3710938, 0.13330078, 0.30444336, 0.89990234, -1.2207031, -0.81396484, 1.4970703, 4.0351562, 0.11657715, -2.421875, 4.6914062, -0.12200928, 0.62060547, 2.0644531, -1.1142578, -1.6796875, 0.5463867, 1.7578125, 0.9326172, 0.2685547, 1.2119141, -0.44482422, -1.7539062, 1.4589844, -1.1748047, -0.38549805, 0.46118164, -0.7763672, -0.31201172, -0.64208984, -0.28027344, -0.14990234, -0.8417969, 0.9121094, -2.0390625, 1.390625, 0.25805664, 4.1015625, 0.3005371, -0.34179688, -0.1875, -0.0069236755, 0.3774414, -1.0673828, 0.7050781, 0.09173584, -0.078552246, 1.8037109, -0.20361328, 0.8647461, -1.9150391, -1.7255859, -0.8178711, -2.2871094, -2.1875, -0.0602417, -1.5800781, 0.47509766, 1.4335938, -2.3886719, 0.6977539, -1.6396484, -2.1875, -2.0664062, -0.19812012, 0.46899414, 0.7661133, -0.084228516, 0.29614258, 0.45874023, -6.1289062, -0.7036133, 0.6352539, -1.6650391, 1.4746094, -1.7070312, -0.46240234, 0.25683594, -0.98291016, -0.9189453, -0.03378296, 0.42871094, -1.1113281, 0.6333008, -2.5917969, 0.19091797, -2.8183594, -0.40600586, -2.6191406, 1.2753906, -3.6386719, -2.6171875, -1.0419922, -0.8730469, 6.171875, -2.4121094, 0.12768555, 0.67041016, 1.2109375, 1.7021484, -3.0605469, -3.046875, -1.3837891, 1.8603516, -0.6699219, -1.8066406, -2.5820312, 1.0800781, -0.47875977, 0.2142334, 0.23852539, 1.6660156, -2.1738281, 1.4296875, -1.4638672, 0.09399414, 0.24157715, 0.23400879, -0.06323242, -1.2695312, 0.86083984, -1.9667969, 0.2565918, -1.1259766, -0.6308594, 1.6396484, -1.2695312, 1.1162109, 0.49145508, 0.46166992, 0.88183594, -0.28100586, -2.9414062, 1.7128906, -0.5126953, -2.9375, 0.60253906, -0.47583008, -2.3300781, -2.2519531, -0.9614258, 0.9526367, 0.7036133, 2.6835938, 0.3786621, 1.5078125, 0.64746094, 0.41723633, 0.10656738, -0.55322266, -1.6816406, 5.2734375, -1.2675781, -1.2998047, 0.8105469, 1.953125, -3.7109375, -0.7651367, 1.3164062, 1.2314453, 2.828125, -0.13269043, 2.0292969, -0.30419922, -0.08203125, 2.2753906, -1.0019531, -1.3300781, 0.61572266, -0.105529785, 0.5839844, -0.0814209, 1.4287109, 1.2509766, -0.5673828, 2.46875, -0.625, 0.046936035, -1.4101562, 0.79052734, -1.1826172, 1.1425781, -0.9980469, 3.6210938, -0.5336914, 0.17053223, 0.09863281, 0.31347656, 1.0693359, -1.421875, 0.0892334, 1.953125, -0.23144531, 0.7573242, -0.44580078, 0.9404297, 1.5917969, 0.15893555, 0.10241699, -3.5, 0.5341797, 2.1347656, -0.94384766, -1.9453125, -2.09375, 2.3964844, -1.3945312, -0.7783203, -0.051452637, 1.6513672, -0.7729492, -1.8330078, -0.08544922, 1.0029297, -0.3864746, 2.4511719, -0.36645508, -1.5830078, 1.1943359, -1.9882812, -0.013214111, 0.90966797, 0.53515625, 1.0566406, -0.14025879, 0.5776367, -0.033813477, 0.3618164, 0.8696289, 0.24890137, -2.78125, 0.12780762, -2.0371094, 0.8378906, -0.19433594, -0.7998047, -0.8754883, 2.1738281, 0.27075195, 1.125, -0.4375, 3.7070312, 0.3491211, -2.2910156, 2.2441406, -2.90625, -1.6914062, -3.4335938, -3.8554688, 1.265625, -0.59033203, -1.3193359, 3.4121094, 0.47705078, -1.2783203, 1.2138672, -0.5053711, -3.1640625, -2.2148438, -0.024902344, 0.14758301, -1.2988281, -2.640625, 1.0205078, 1.171875, -4.5078125, -1.359375, 0.16418457, -0.23059082, 1.3769531, 0.79345703, -2.4238281, -1.0332031, -1.4082031, 0.54541016, -0.9355469, 0.053771973, 1.2333984, 0.10699463, -0.03918457, -1.8427734, -0.9560547, -0.105407715, -1.4970703, 1.6748047, 1.8808594, -0.21850586, -0.6611328, 0.49389648, 1.3291016, 3.0058594, -0.15319824, -2.1699219, -4.2773438, 0.22387695, 0.5024414, -1.4199219, 0.7001953, -0.36889648, -2.8007812, 0.70458984, 1.2539062, 2.3710938, 3.078125, -1.0410156, -1.0458984, 0.21777344, -0.25732422, -1.9589844, 0.82910156, 1.1171875, 0.30566406, 0.15979004, -0.042755127, 0.6171875, 1.1425781, -1.7529297, -0.25634766, -1.390625, 0.5698242, 0.27026367, 0.7314453, 2.0175781, 0.48242188, -0.65966797, 0.25585938, -1.4736328, 0.7832031, -0.22265625, -0.03390503, -0.28149414, -0.48657227, 1.4941406, -1.3125, 1.3974609, 2.2734375, -0.8691406, -1.1025391, -1.0712891, 0.14746094, -2.2949219, -1.4511719, 0.48413086, -0.49316406, 3.0371094, -2.2421875, 1.25, -1.2666016, -0.19494629, -0.11401367, 0.75390625, -0.25097656, 0.65771484, 0.90234375, 1.4521484, 0.78027344, 0.23962402, 0.30029297, -1.1767578, 2.703125, -0.3244629, 1.1748047, 0.25830078, -0.93359375, -0.024169922, -1.7207031, 1.6943359, 2.9394531, -0.14672852, 2.4277344, 0.25341797, -3.2929688, 3.1132812, -0.16674805, -1.9863281, 0.5527344, 0.72998047, -0.8984375, 0.5839844, 0.54541016, -2.8574219, -1.1162109, 0.77001953, -2.6699219, 1.9755859, 1.2119141, 0.04815674, -0.4296875, -2.1640625, -1.5419922, -0.76416016, -0.25, -0.53759766, -1.4521484, 1.578125, -1.2802734, 1.0644531, 2.8652344, -1.3574219, -0.6640625, 2.5214844, -1.15625, 1.5976562, -0.9458008, 0.084228516, -0.8364258, 0.75683594, 3.4785156, 0.8417969, 0.7368164, -0.6035156, 1.3652344, -2.3183594, 0.24353027, -0.60009766, 1.3398438, -0.19873047, -1.4716797, 1.3691406, -3.0234375, 0.00012123585, -1.5087891, 0.9277344, 0.09490967, 2.203125, 2.3105469, 0.5966797, -1.7587891, 0.5864258, -2.109375, -3.375, -2.5996094, -0.58691406, 0.56640625, 0.18103027, 1.3359375, -0.90966797, 0.9301758, 0.90966797, -0.057647705, -1.1962891, -1.0400391, -0.6894531, -0.8339844, -1.1230469, -0.14489746, -0.51708984, 0.44995117, 3.4082031, 0.23205566, 0.25634766, -2.8457031, -1.8447266, 1.3183594, -0.30444336, -1.4433594, 1.1503906, 1.7333984, -0.4333496, 1.4511719, 0.96533203, -1.1855469, 0.51708984, -3.1074219, 0.27441406, 1.3710938, 0.13354492, 0.9819336, 0.5048828, -2.2128906, 1.0625, -2.734375, 1.8896484, -1.0078125, -1.9707031, -1.0419922, 0.3293457, -0.32348633, -2.1386719, 0.8535156, -0.059173584, 0.9428711, 0.90771484, -0.2553711, -1.3408203, -0.515625, -3.3671875, 0.4807129, -2.03125, 0.8408203, -0.17004395, 0.036834717, -0.28027344, 2.0800781, 1.8515625, 2.1640625, 0.11187744, -0.72753906, -0.45214844, 0.12176514, 2.0996094, 1.4248047, -1.4765625, -1.0878906, -0.5620117, 0.3815918, 1.1337891, -0.02104187, -0.36914062, 1.2451172, -0.95410156, -1.3623047, 0.5932617, 0.46801758, 2.2324219, -0.50146484, -3.2089844, 1.4511719, 3.0117188, -1.6972656, 3.2714844, 2.0683594, 2.5507812, -2.5820312, 2.7382812, -1.1064453, -0.41601562, 2.5800781, -0.94140625, 1.2363281, -0.9794922, -1.2890625, 1.2011719, -0.88964844, -1.6601562, -1.8671875, 0.5463867, -1.8515625, 1.7011719, 0.9550781, -1.4892578, 0.4711914, 0.3840332, -0.4260254, 2.3457031, 1.2871094, 1.4833984, 0.51171875, 0.9604492, -2.0546875, -1.3623047, 1.2646484, -1.5039062, 1.1074219, 1.9658203, 0.09625244, -0.3894043, 2.0273438, 1.78125, 2.4414062, 0.89990234, 2.5585938, 1.2666016, 1.2548828, 0.55322266, 1.7607422, 0.3269043, 2.3320312, -1.1289062, 1.4960938, 2.3613281, 1.7285156, 1.1132812, -1.9882812, 1.5458984, -0.9423828, -1.6875, 0.24853516, 0.86083984, -1.5107422, -3.8613281, 0.13977051, 0.49267578, 0.33691406, -2.6582031, -1.8808594, -2.53125, -0.6640625, -1.7265625, -0.09527588, 1.3564453, -0.4572754, 0.50927734, 1.296875, -1.3994141, 2.5097656, -2.8339844, 0.06854248, 1.6669922, -0.9458008, 0.24694824, 0.2607422, 1.7304688, -0.84277344, 1.3457031, -0.31567383, 1.3730469, 1.0947266, 1.2402344, -0.3791504, 0.890625, -0.13342285, 1.5224609, -0.55029297, 0.30566406, 3.1015625, -2.3945312, -1.9638672, -3.2109375, 2.6015625, 0.88378906, 0.41552734, 2.609375, -1.8564453, 0.97265625, -0.48828125, 1.3691406, -3.2519531, 0.9008789, 0.17651367, -2.0273438, -1.5107422, 0.6767578, -0.09765625, 1.5703125, 0.8408203, -1.3857422, 3.0390625, 2.1933594, 2.7265625, 0.6713867, 1.0263672, 0.5576172, 1.4316406, -1.4521484, 1.5419922, 0.36914062, -0.9785156, -3.5546875, 2.5605469, 1.6074219, 0.30004883, 0.45507812, -0.45776367, -0.17492676, 0.17358398, 0.1459961, -0.8208008, -1.1005859, -0.0960083, -0.4555664, 0.77783203, -1.3525391, -1.8896484, 2.046875, 2.5136719, -1.0576172, -0.4802246, 1.8789062, -1.1162109, 2.2578125, 0.8730469, -1.0703125, -0.12890625, -1.8564453, 0.119384766, 0.6459961, -2.0859375, 1.1601562, 2.2871094, 1.0595703, -1.0234375, 1.8486328, 0.26464844, 1.0839844, 1.7167969, 0.35791016, -0.9277344, -2.5078125, 1.7060547, -0.023468018, 0.16796875, 2.7519531, -0.6147461, 0.6333008, -1.7978516, -0.26391602, 0.6508789, 0.06781006, -1.5175781, 1.7978516, 3.3398438, 1.5185547, 0.9584961, -2.6835938, -3.3027344, -1.2998047, -1.8603516, 2.8320312, -1.3085938, 1.0634766, 0.48583984, -0.19848633, 3.2285156, -1.1171875, 0.4182129, 0.07409668, -0.42333984, 1.8017578, 0.07647705, 2.015625, 0.26171875, 1.1357422, 1.0019531, 1.4599609, 0.29785156, 1.3017578, 1.6132812, 1.8105469, -0.015838623, -2.1210938, 1.9482422, -1.4873047, 1.1386719, 1.2246094, -1.7070312, 1.5761719, -0.5336914, 0.20751953, -1.4033203, -2.3496094]}, "B00NVUUPEM": {"id": "B00NVUUPEM", "original": "Brand: Coleman\nName: Coleman Propane Fuel Case of 6\nDescription: Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.\nFeatures: \n", "embedding": [0.39819336, 0.39697266, 0.2626953, 0.9511719, -0.6479492, -1.2548828, -0.4658203, -1.7958984, -0.6699219, 2.6933594, -0.117370605, -0.5854492, 0.08654785, -1.7333984, -0.2993164, -1.53125, -0.60498047, 1.9287109, 0.4296875, -1.7880859, 3.5820312, -1.2929688, -1.3984375, -1.2978516, 1.2099609, 2.1347656, 3.2382812, -2.7421875, -1.9521484, -0.51220703, 0.4584961, -1.5566406, -1.6650391, 2.7070312, -1.7402344, -1.1816406, -1.8339844, -0.10882568, -2.1503906, -3.2167969, -1.5712891, 1.9384766, 3.8183594, -0.17248535, 0.6870117, 0.032958984, 1.0283203, 0.47094727, 0.8886719, -0.69873047, 0.93603516, 0.7578125, -0.1694336, -0.40771484, -1.2490234, 0.3076172, 0.6220703, -1.3427734, 2.296875, 0.08026123, 0.35229492, -0.5053711, -0.87353516, 1.0761719, -1.4375, 1.8378906, -1.4941406, -0.5620117, -0.22692871, 1.9384766, 4.0625, 0.96240234, 0.81396484, -2.8554688, -2.5722656, 0.3701172, -3.6699219, 1.2314453, 2.15625, 0.06665039, -1.6621094, 0.6069336, 1.3144531, -1.4990234, -2.0234375, -0.8901367, -0.06640625, 0.70654297, 0.027770996, 1.3583984, -1.1132812, 0.11694336, -1.1728516, -2.6191406, 0.91552734, -3.0878906, -0.109375, 1.5029297, 1.2255859, -0.87939453, 0.23486328, -0.028060913, -2.1894531, -0.013763428, -1.0605469, 0.69628906, 2.6171875, 0.16210938, -1.2275391, 1.4414062, -1.0761719, -2.9765625, 1.3408203, 0.44604492, -2.1933594, -0.87646484, -0.41259766, -0.31567383, 3.4199219, -0.23327637, 4, -1.1650391, 0.50146484, -1.2919922, -0.35717773, 3.2675781, -0.13635254, -0.44604492, 0.2668457, 1.0439453, 0.013916016, 0.7416992, 2.4589844, -2.1660156, -2.7929688, -0.8330078, 0.6484375, -0.9316406, -2.0800781, -1.3935547, -1.3769531, -0.8310547, 0.6489258, 0.32055664, -4.5, -0.4650879, -1.5185547, 2.1132812, -0.7734375, -2.3945312, 1.3466797, -1.3867188, -1.1875, -0.1776123, 2.2441406, 0.7011719, -0.9145508, -1.4726562, 4.109375, 1.9306641, 1.2050781, -0.8779297, 0.7714844, 1.1708984, -0.7373047, -1.9384766, 2.2148438, 0.29711914, -1.3808594, 0.6567383, 0.5942383, -2.5605469, 0.53515625, 2.5253906, -1.390625, -2.7773438, 1.4462891, 2.0683594, -0.42407227, -1.59375, -2.8046875, -2.4941406, 0.005393982, -1.6181641, 0.07281494, -0.3371582, -2.6699219, -1.8271484, -1.5771484, -1.3144531, -0.25439453, 0.46801758, -1.0429688, -0.4189453, -1.2382812, -1.6650391, 0.5004883, -0.8466797, 0.58691406, 2.6054688, -0.55371094, 0.6044922, 1.7128906, 2.0917969, -2.6367188, -0.9980469, 2.7265625, -1.34375, 0.72802734, 3.0195312, 0.7006836, 1.3251953, 2.8359375, -2.1035156, -0.7714844, -2.1542969, 0.74072266, -0.14282227, 3.1738281, 0.55859375, 1.0263672, -1.8466797, 0.42578125, -1.3476562, 0.2541504, 2.3945312, 0.78564453, -1.7939453, -0.36547852, -1.9121094, 0.9326172, 2.5957031, -2.5644531, 0.04928589, 1.5556641, 4.2226562, -0.4892578, -1.8095703, 0.5839844, -0.7294922, -2.1796875, 0.18310547, -1.5380859, -1.4023438, 0.028213501, 0.95654297, 2.2128906, -0.80810547, 4.1132812, 0.23132324, 1.2587891, -0.34887695, -1.0546875, 1.2636719, -2.9375, 1.3105469, 0.2109375, 0.71533203, 0.6899414, -2.703125, 1.0009766, 2.7265625, -2.1464844, -0.41479492, -0.80908203, -0.2614746, 0.7026367, 0.515625, -1.3320312, 2.2421875, 1.0458984, 1.4248047, 2.0117188, 2.0644531, 0.78125, 0.2854004, -0.40942383, 1.8066406, 0.15234375, 3.0800781, 0.8198242, 0.009750366, 2.4023438, -5.4804688, -1.1826172, 0.16027832, 2.5566406, -0.31811523, -1.9287109, 0.9746094, 4.640625, -2.5136719, -1.4853516, 2.6679688, -0.52490234, 1.9443359, 1.1660156, 0.2783203, 0.796875, -0.984375, 1.5302734, -1.3769531, -0.31469727, 1.6103516, -1.8740234, 0.7529297, 0.56347656, -0.79052734, 0.796875, -2.8105469, -0.6855469, -0.90478516, -0.7817383, 1.7402344, -1.5185547, -0.11791992, 2.2148438, -1.1513672, 1.2304688, 1.8349609, 0.8154297, 2.4296875, -0.7426758, -0.6958008, 0.27612305, 0.36010742, -2.3886719, 1.2099609, 0.39941406, -0.046783447, 0.50927734, -3.2421875, 1.3037109, -0.17529297, -1.2070312, -1.5615234, 0.42993164, -4.0234375, 0.890625, -0.5761719, 0.016616821, 0.7084961, -1.4365234, 4.9804688, -1.4072266, -0.120666504, 0.09674072, 1.6601562, -0.79052734, -0.9223633, 1.1132812, 2.2988281, -1.0830078, -2.9628906, -0.14208984, 0.61279297, -0.27441406, 0.29907227, 0.5019531, 2.1699219, -0.5292969, 0.24719238, -0.6660156, 0.63427734, -1.9384766, -1.2587891, 2.4238281, -3.6054688, 1.5302734, -1.828125, 1.2460938, 0.009475708, 0.050811768, -0.41381836, -0.52001953, 2.2441406, -1.3544922, 3.2949219, 1.1474609, 0.64501953, -0.2442627, -0.36743164, 0.097717285, -1.5058594, -4.0664062, 1.078125, 0.6425781, 0.6113281, -2.2695312, -5.3164062, 1.2294922, -2.4140625, -1.1767578, -0.07788086, -0.38745117, -2.0488281, -0.52734375, -0.54345703, -0.71435547, -0.052764893, -0.29589844, 0.4416504, -1.2900391, -1.4443359, -0.30932617, -2.0058594, 1.2207031, -1.4414062, 1.5195312, 0.25610352, 0.18127441, 0.54345703, 0.11743164, 1.6806641, -0.8442383, -4.9023438, 1.9785156, 1.7353516, 0.33496094, 1.6240234, -2.7988281, -0.97998047, -3.5625, -0.8642578, 2.2167969, 0.44506836, -0.059265137, 1.2099609, 0.8496094, 0.5097656, 2.3417969, -0.390625, 0.3486328, 0.20349121, 2.5449219, -1.1220703, -2.71875, 1.640625, 3.1269531, -1.8085938, -2.3886719, -0.5361328, -0.5932617, 1.984375, 3.3613281, 0.296875, -1.6972656, 0.4958496, -1.6367188, 1.8964844, 0.7036133, -0.4819336, 0.7963867, -0.7885742, 2.046875, 0.5410156, 0.4645996, 0.6621094, -0.6123047, 3.6582031, 1.3583984, -1.1757812, 1.2128906, -0.038391113, -0.24987793, 0.10449219, 3.3007812, -1.4150391, -0.9111328, -0.37182617, -0.96728516, 2.109375, -0.09741211, 2.8691406, 2.1992188, 0.4477539, -1.5712891, 0.38989258, -0.9213867, 1.03125, -1.4130859, 0.3779297, 0.7294922, 0.5449219, 0.35131836, -2.9257812, 1.5322266, -1.2470703, 2.3144531, -1.4189453, -0.69433594, 1.1425781, 1.3818359, -0.6582031, -3.6933594, -3.1855469, -0.57177734, -1.4433594, 3.5195312, 1.5029297, -3.6015625, -0.72998047, -0.88720703, 0.46411133, 1.2890625, -0.76416016, -0.40600586, -1.3701172, -1.6152344, -1.4882812, 0.59472656, 0.65185547, 1.3886719, -1.7246094, 1.9648438, -0.17956543, 1.1601562, -1.2197266, 0.13293457, 0.28881836, 0.6333008, -2.1230469, 2.1132812, 1.2041016, 2.4472656, -1.3339844, 2.6308594, 0.70751953, -0.65185547, -0.19934082, 0.34594727, -3, 1.5839844, 0.00749588, 0.13098145, 1.8037109, -2.3261719, -0.22473145, -1.7285156, -0.9892578, -2.1191406, -2.1347656, -0.045928955, 1.1552734, -2.1660156, -0.63916016, 1.1279297, -1.8759766, -4.1835938, -2.4667969, -0.028167725, -1.0175781, -0.7167969, 1.3789062, -0.375, 2.8515625, 0.46191406, 1.6777344, 0.052703857, 0.28100586, 1.7285156, -0.42260742, -0.1661377, -3.8066406, 0.7817383, 1.1210938, 0.16821289, 1.9052734, 1.9365234, 2.7265625, -3.9257812, 1.0615234, -1.0908203, 0.4255371, 1.1328125, -0.7988281, 0.32617188, -1.3857422, -1.2753906, -2.1582031, -0.7895508, 0.5600586, -1.4443359, 0.69873047, 2.8007812, 2.6699219, 2.0410156, -0.25439453, 1.6748047, 2.1796875, 2.1777344, -0.7988281, -1.3105469, -0.4892578, -1.0224609, -2.7265625, 0.08868408, -1.4990234, -1.9189453, 1.3955078, -1.484375, -2.2636719, -0.22937012, 1.5791016, 1.9052734, 0.62841797, 0.69140625, -2.9296875, 1.5117188, 0.9848633, 1.8222656, 0.08569336, 0.9472656, -0.69091797, 0.9482422, 0.036895752, -1.6152344, -0.07330322, 0.39746094, -0.8076172, -0.6977539, -0.008369446, -1.0546875, -2.6113281, 1.9775391, -1.7841797, -1.1396484, 2.0234375, -2.4199219, 0.55566406, -0.6015625, 0.32348633, -0.6699219, 0.17663574, -0.02027893, 0.99072266, 0.8623047, -1.6904297, 0.9658203, 0.3828125, 2.7832031, 0.8535156, 0.8798828, -1.5341797, 0.42358398, -0.26782227, -0.033416748, -0.10253906, 1.5947266, -0.05682373, 1.6347656, 1.4853516, 2.0976562, 2.7089844, 0.026229858, 0.42651367, -1.0039062, 1.7246094, -0.032928467, 0.20043945, 0.8222656, 3.5390625, -2.5488281, -0.90185547, 0.07672119, 0.5332031, 1.6083984, 2.4511719, 1.6435547, -0.78564453, -1.515625, -0.9921875, -0.9404297, -2.0117188, 0.44702148, -1.3779297, -1.5654297, 1.7539062, 1.2646484, 1.5185547, 2.0820312, 2.3984375, -3.1074219, 0.56933594, -1.3476562, -1.0966797, -1.1660156, -0.5307617, -3.2324219, 0.22961426, -2.3320312, 0.03640747, 0.9628906, -1.5927734, 4.0976562, -1.1054688, -0.8964844, -0.27319336, 0.28808594, -2.9609375, -1.1728516, -0.024520874, 1.9501953, 1.1416016, -1.1259766, -0.72021484, -1.0722656, 1.6083984, -0.4477539, -0.37646484, -1.5585938, -0.16687012, -3.3828125, -4.328125, -0.3828125, -1.2216797, 0.4104004, -0.5151367, -1.1113281, -2.4550781, -0.7885742, -1.359375, -1.3652344, -2.9003906, -0.21411133, -0.4091797, -0.12780762, -1.1210938, 0.5698242, -0.3305664, -0.19580078, -0.29467773, -0.2253418, -0.53222656, -3.2695312, -3.6855469, -0.05987549, 1.8974609, 0.5024414, 0.031585693, -1.8583984, 1.9902344, 3.0488281, 3.3046875, -1.3974609, 0.94384766, -1.3193359, -0.8671875, 1.6132812, -1.2128906, -0.6508789, 1.9160156, -0.28125, 1.7119141, 2.1386719, 2.1542969, -2.9375, 1.1279297, 0.07385254, 0.33666992, 3.7382812, 1.6308594, 3.0019531, -1.3144531, 2.3183594, 1.1679688, 1.5029297, -3.5917969, -1.5615234, 1.7783203, -0.8496094, -1.0771484, -0.69091797, -1.875, 2.484375, -0.11236572, 2.109375, -0.78125, 1.3730469, 0.2927246, -0.24658203, 2.0097656, -0.98876953, 3.3320312, 0.20898438, -2.4472656, -4.3046875, -3.0136719, 4.3554688, -0.5625, -0.30541992, 0.046875, 0.35131836, -0.8359375, 1.5341797, -1.7314453, 2.8808594, 3.28125, 3.8984375, -2.0195312, 1.1748047, 3.8554688, -0.3557129, 0.2770996, 0.3552246, 0.044403076, -1.4101562, -0.515625, 0.11401367, -2.5214844, 0.49072266, -0.8588867, 0.6328125, -0.083862305, -1.7333984, 0.8564453, -1.6601562, -1.3320312, -0.5395508, 1.1162109, -2.0234375, 2.3984375, 0.7739258, -1.703125, 1.4355469, 0.8515625, -3.0234375, -0.4489746, 0.4399414, -0.017456055, -2.2480469, -1.4628906, -0.79052734, 0.97021484, 2.2324219, -2.15625, 2.6503906, -0.28759766, -1.2099609, 1.0947266, 2.9921875, -0.5019531, 0.50439453, 0.6225586, 1.6494141, 2.3203125, 0.7578125, 2.6953125, 0.5283203, -0.7426758, 1.0957031, -0.22155762, -0.63378906, 2.8300781, 0.2211914, -0.08947754, -0.04714966, -0.26831055, -0.13586426, -1.484375, -1.2929688, 2.1699219, 0.9746094, -2.125, 1.2734375, -0.37670898, 2.6914062, 1.1591797, 1.1962891, 1.6806641, -0.48339844, 0.15161133, -0.28759766, 1.1210938, -0.37329102, 1.6494141, -0.18237305, -0.3256836, 1.4746094, 0.45703125, -0.5214844, -3.2558594, -2.6464844, -0.4111328, 0.54052734, 1.3671875, 0.1430664, 0.35083008, 3.1582031, 0.27197266, -0.0904541, 1.4570312, -1.5751953, 0.4572754, 0.62060547, 3.3261719, 3.2480469, -1.7783203, 1.8535156, 0.3540039, -2.4453125, -4.1679688, 0.24304199, 1.9121094, 1.5625, -0.7338867, -2.4375, 0.5463867, -1.8427734, 3.8671875, -0.07244873, 1.5507812, -0.24255371, -2.4609375, -1.3515625, -0.090270996, 0.3330078, 2.6894531, 2.1582031, -0.6870117, 1.1210938, 1.6152344, 1.6728516, -1.3789062, -0.16906738, 0.87646484, 1.7373047, -1.625, 0.31079102, -0.43286133, 2.7988281, -1.5566406, 3.4433594, 3.28125, -0.4790039, -0.49926758, -0.36816406, 3.4628906, 0.08758545, 1.0791016, -0.18127441, -0.23132324, -0.28125, 0.34472656, 1.3457031, 0.47338867, 2.2578125, 0.5419922, 2.390625, -3.4492188, 1.2685547, -0.40625, -0.62109375, 0.24731445, -1.4541016, -0.6333008, -1.0410156, 0.55810547, -1.0458984, -2.3417969, 1.3427734, -0.2775879, 0.8730469, -0.73876953, -0.24060059, 1.9443359, -1.5253906, -0.20031738, -1.3115234, -0.6713867, 0.4741211, 0.08050537, 0.94970703, 0.45922852, -0.59765625, 0.4013672, -0.09490967, 0.09448242, 1.2460938, -0.5439453, -0.30566406, -3.3730469, 0.26098633, 2.375, 3.9765625, -0.828125, 1.3818359, 0.15563965, -2.671875, -1.1162109, -3.7265625, 2.2207031, 2.4277344, -1.7529297, 1.5341797, 1.1757812, 0.48339844, -2.6933594, -1.6630859, -0.66064453, 1.6972656, 1.0009766, -1.0947266, -0.25219727, 1.5712891, -0.52001953, -0.37109375, 3.9238281, 2.0996094, -0.33935547, 0.45141602, -1.3046875, -2.2753906, -2.3769531, -0.33544922, -1.2851562, -1.7431641, -2.1640625, 1.3505859, 1.7060547, -1.3056641, -0.4326172, -1.4570312, 0.7832031]}, "B0765BJV74": {"id": "B0765BJV74", "original": "Brand: Grillman\nName: Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant\nDescription: \nFeatures: The 58\" x 24\" x 48\" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information!\nSecure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions.\nEasy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come!\nRegardless of what you're looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover.\nPlease click the \"Visit the Grillman Store\" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!\n", "embedding": [-0.30786133, 1.1816406, 1.8046875, -0.96484375, -0.10723877, 2.28125, 0.6245117, -2.2480469, 3.4785156, 1.1259766, -0.16308594, -1.3652344, 0.88964844, -5.4570312, 0.8652344, 0.71728516, 0.92333984, 2.6132812, 3.2382812, 0.52734375, 0.39941406, 0.30249023, 1.2578125, 1.1894531, 0.7709961, -0.69921875, 3.9296875, -3.2871094, -1.2929688, -1.5029297, 2.671875, 0.38232422, -1.2880859, 2.1191406, -3.0996094, -1.3798828, -1.7060547, 2.2324219, 0.40429688, -1.9072266, -1.0839844, -1.7675781, 1.3310547, -0.22766113, -0.7519531, 1.0449219, -1.6738281, 1.3554688, -2.0292969, -2.1425781, 2.7246094, 2.6601562, 1.828125, 0.97558594, -2.484375, 3.7089844, -0.15612793, -0.54833984, -1.1572266, -0.77978516, 1.5566406, -2.3535156, -0.9741211, 1.0683594, -2.4003906, -0.54248047, 0.3786621, 0.17712402, 0.32299805, -0.17907715, 2.2363281, 0.29467773, -0.5625, 0.44506836, 2.4960938, -0.5307617, -1.9580078, 1.8925781, 0.81103516, -1.4697266, -0.26660156, 5.4023438, 0.5683594, -1.5996094, -0.46728516, 0.5029297, -1.046875, -1.0078125, 2.2871094, -1.2871094, 0.33276367, 1.7226562, -3.3574219, -3.28125, 0.8925781, -2.2089844, 3.4824219, 0.17077637, 1.2197266, 0.23815918, -1.6015625, 1.5253906, -1.9628906, 1.3603516, -2.9628906, -1.7949219, 1.5390625, 0.016952515, 0.35302734, -0.83984375, -1.6669922, 0.29663086, -1.0976562, 0.91845703, 1.8125, 0.9453125, -0.8413086, 1.1796875, 0.58984375, 2.6621094, 2.4296875, -1.2802734, -0.5004883, -1.7441406, -0.66796875, -0.97314453, -0.4230957, 2.4511719, 2.5449219, -1.4082031, 0.7783203, -0.6689453, 2.7519531, 1.4970703, 0.12719727, -0.19897461, -1.4326172, 0.23376465, -3.2480469, 3.0761719, -0.26489258, -2.2949219, 0.81640625, -2.671875, -2.7597656, 0.32910156, -0.27856445, 2.6308594, -1.2011719, -2.3183594, 1.6445312, -1.3886719, -0.8564453, -1.3828125, 1.6328125, -0.5209961, 1.5908203, -2.9492188, 2.7871094, 2.1230469, 3.4121094, -1.5224609, 1.3183594, 0.37182617, 2.1777344, -2.3242188, -0.6147461, 0.5473633, -0.7792969, 3.2109375, 0.22131348, -0.79785156, -0.30688477, 0.9082031, 2.2011719, -1.3613281, 0.13916016, 0.75146484, -0.7324219, -0.55615234, 0.17126465, -1.4423828, -0.92089844, -0.075683594, -0.6123047, -1.5976562, 1.1386719, 1.1171875, 1.5712891, -0.5605469, -0.16625977, 0.63964844, 0.2548828, 0.7036133, -0.7709961, -1.7919922, -2.9042969, -1.6005859, -0.41625977, -0.9736328, -3.0585938, -1.9804688, 0.76953125, -0.36523438, -2.3300781, -2.421875, 0.47094727, -0.008010864, 0.040527344, 1.3183594, -0.14050293, -1.5722656, 3.0488281, 1.3671875, -0.9584961, -0.5859375, 2.4941406, -0.6923828, 0.77197266, 1.0947266, -1.3994141, -0.24511719, 1.1279297, 3.6054688, -0.8286133, 2.5859375, 1.6933594, 0.7241211, -1.5917969, -2.2519531, 0.4880371, 1.4042969, -0.37963867, 0.42871094, -0.13757324, 1.765625, 0.92529297, -1.4384766, 0.074035645, 0.7973633, -2.1523438, -0.9873047, -3.4101562, -2.2714844, 0.09954834, 1.6455078, -1.8955078, 1.6689453, 1.3427734, 0.2434082, -0.017532349, 0.16711426, 2.1875, 0.38964844, 0.29125977, 1.7460938, 0.18127441, 0.73583984, -2.3261719, -1.2128906, -1.2998047, -1.3417969, -2.2832031, 1.0214844, -0.3630371, -0.63183594, 0.91259766, 1.7060547, -1.1591797, -3.0214844, 2.0078125, -0.6738281, -1.3574219, -1.1416016, 2.9414062, 0.9736328, 0.6665039, 1.9023438, 0.8613281, -1.1669922, 0.50390625, 1.8984375, 0.54833984, -2.3710938, -0.91552734, 0.88134766, 0.7084961, -2.6523438, 0.107177734, -0.64404297, 3.4609375, 1.3417969, -1.9072266, 3.5019531, -0.41674805, 0.9213867, 2.6367188, -0.79248047, -1.2792969, 1.5302734, 2.5488281, 0.8149414, 0.13769531, 0.42700195, -1.0791016, -1.0400391, 1.3603516, -2.5488281, -2.1757812, 0.88134766, 0.40014648, -1.859375, -0.56103516, -0.49267578, -2.3457031, -2.1464844, 1.4433594, -2.6699219, -0.8745117, 0.18579102, 1.1640625, 1.1328125, -1.4101562, -1.5917969, 0.19592285, -0.33422852, -1.0234375, 0.095581055, 0.47875977, -0.8486328, -0.5908203, -1.3164062, 0.97509766, -0.56884766, -0.72314453, -3.2089844, -2.1835938, -1.7919922, 0.6748047, -1.3496094, 0.5625, -0.29101562, -3.0449219, 2.6054688, 1.515625, -3.4941406, -2.2617188, 0.068359375, -1.0830078, 1.2558594, -0.39038086, -0.04663086, -0.6738281, -3.5253906, 0.2602539, -2.0214844, -0.08416748, -0.7553711, 0.6591797, -0.80078125, 1.2373047, -0.0063285828, -0.28710938, 1.6347656, 2.5800781, 1.3134766, 0.4230957, -3.4550781, -0.9951172, -2.953125, -0.49291992, -0.82958984, 0.5019531, -4.078125, -2.1972656, 0.73535156, -2.3535156, 3.3359375, -0.26464844, 1.5917969, -1.3017578, -1.0488281, 0.95458984, -2.0644531, -2.8691406, 1.2705078, 0.8725586, -1.6777344, -1.3076172, -3.8632812, -2.3378906, -1.7207031, -0.52685547, -0.07116699, -0.87646484, -0.7788086, 0.17785645, -4.5117188, -1.2158203, -0.5966797, 1.1435547, -0.39282227, -1.5087891, -0.8100586, -3.3847656, -3.6035156, -0.8901367, -2.7949219, 1.7060547, -1.4404297, 1.1513672, 2.0878906, -0.7373047, 4.4882812, -0.93066406, -3.6992188, 1.5996094, 1.9667969, -0.37426758, 1.6796875, -0.10662842, -1.5957031, -1.5654297, 0.85498047, 1.4794922, 1.0644531, 0.55859375, 2.3203125, 0.74560547, -0.24841309, -0.16271973, 1.7265625, -1.3095703, 1.8662109, 3.4355469, -0.86816406, -0.21350098, 0.59033203, -0.34570312, -0.97558594, -0.07458496, 3.515625, 0.609375, 0.88623047, 1.0351562, -0.17614746, 0.70703125, -1.0371094, 3.6269531, -0.5810547, 2.5058594, 0.7324219, 0.9921875, 2.0019531, -1.7802734, 2.2148438, 1.3808594, 0.625, 0.79589844, 0.008369446, 0.66259766, -0.45458984, 1.8173828, 1.0078125, 2.3105469, -0.8989258, 1.8134766, -0.21508789, 0.7788086, 1.7880859, -2.3398438, 0.9423828, -0.46069336, -1.0214844, 2.1035156, -1.4130859, 0.019882202, -0.035705566, 0.95996094, -0.19873047, -1.8115234, -0.50634766, -2.9609375, -1.1386719, 0.5541992, -3.9882812, -1.9677734, -1.9375, 2.7207031, 0.030197144, -1.3955078, 0.36206055, 1.5419922, -1.3779297, -2.4003906, 2.6191406, 1.5283203, -0.60498047, 2.8378906, 3.4453125, -1.8564453, 2.3964844, -3.7011719, 1.7695312, 1.2060547, -0.9189453, -1.3095703, 1.0703125, 0.5488281, -0.70410156, 1.7148438, 1.6445312, 1.4501953, -1.7978516, -0.33032227, -2.0234375, -1.0654297, 1.5107422, -1.7109375, -0.8989258, 3.7890625, 1.3740234, -0.08331299, 0.81689453, 3.0605469, -0.5698242, -1.3876953, 1.5273438, -2.2578125, 0.6123047, -1.5546875, -3.828125, -0.26049805, -1.5175781, -1.484375, 2.2636719, 0.80371094, 0.2602539, 3.8457031, -0.88916016, -0.20812988, -0.21716309, -1.7197266, -2.3203125, 0.6376953, -0.8149414, 1.0732422, -0.85498047, -1.4804688, -2.0117188, -3.0488281, -1.2744141, 1.9521484, 1.2685547, -2.6464844, 0.1282959, -3.4101562, -0.19250488, -1.9775391, 0.004688263, 0.17797852, -0.27026367, -0.25708008, -1.4384766, 0.8769531, 0.70458984, -0.097961426, 0.73095703, 1.3212891, -0.69140625, -1.2773438, 1.6347656, 1.9902344, 3.0058594, -1.6484375, -3.2285156, -1.125, 0.29052734, -0.3737793, -0.46411133, -0.3569336, 0.059020996, -1.2099609, 0.86816406, 1.3232422, 2.2089844, 0.52978516, -0.8071289, -3.421875, 0.48583984, -2.3964844, -1.6669922, -1.1445312, 0.39990234, 0.24597168, 0.4555664, -1.8935547, -3.0644531, 2.4941406, -0.83447266, 0.52246094, -3.2128906, 3.296875, 1.9101562, 2.3457031, 1.9951172, -1.8125, 1.8349609, 0.8959961, -1.2802734, -0.44506836, 0.66308594, -0.8911133, 1.7109375, 1.2128906, 0.97558594, -2.3867188, -0.64160156, 0.08117676, -1.8369141, -1.4707031, -2.0585938, 1.3203125, -1.9101562, -0.055541992, 0.37231445, -1.4804688, 2.1308594, -0.7036133, -0.75439453, 4.1015625, -0.03010559, -0.9526367, 1.5097656, 2.2226562, -1.0585938, -0.33618164, 0.7001953, 0.14318848, -1.3720703, -1.8447266, 1.2900391, 1.0664062, -0.006275177, -0.27783203, 1.4775391, 1.078125, -1.6933594, -0.59765625, 2.3164062, 3.1074219, -0.62109375, 2.3378906, -0.084228516, -1.6142578, 1.7314453, 1.7685547, -3.0976562, 1.6162109, 0.1928711, 1.2460938, 1.1679688, 0.17712402, -2.6894531, -1.203125, -0.1850586, -1.4511719, 1.390625, -1.3925781, -0.6821289, 2.7890625, -2.2753906, -1.4404297, 0.4555664, 0.63720703, 1.4746094, 0.12084961, 2.7675781, -0.6020508, 1.5, 4.2421875, -0.86572266, -3.3867188, 1.4248047, -1.2724609, -0.46411133, -2.1933594, -0.13977051, -3.0761719, -1.0292969, 1.8623047, 1.7939453, 0.50146484, 0.29174805, 2.078125, -2.5976562, 0.30981445, -1.1767578, 1.9951172, -0.9116211, -0.4038086, 1.9716797, -2.4121094, 0.97753906, -2.4648438, 0.16625977, 0.5576172, 2.1171875, 0.70458984, 0.95166016, 0.7207031, 0.1977539, -2.7128906, -2.3007812, -1.7578125, 0.50878906, 0.33862305, 1.1552734, 2.3105469, 1.3574219, 0.8149414, 0.6665039, 0.46435547, -1.0195312, 0.6098633, -0.30664062, -1.9599609, -1.4042969, -1.0029297, -1.6923828, -0.6274414, 0.9946289, 2.1621094, 1.1171875, -3.3925781, -0.9633789, -0.012428284, -4.0898438, -0.13671875, 1.6289062, -0.15783691, 1.0244141, 0.5576172, -0.19763184, 0.76123047, 2.1152344, -1.4628906, -1.1083984, 1.8886719, -2.015625, 1.2939453, -0.66259766, -2.6621094, 1.9462891, -0.76660156, 0.625, 0.32470703, -0.25830078, 0.8984375, 1.4082031, -0.7890625, -2.40625, -0.39257812, 1.0332031, 2.3496094, 0.5234375, -0.96484375, 0.10687256, -1.1884766, -1.7851562, 0.7050781, -2.6132812, -1.6386719, -0.8144531, -0.53515625, 2.1269531, 1.3398438, 0.8276367, 2.6152344, 1.4267578, -1.1699219, -0.39868164, -1.1982422, 4.2695312, 1.3232422, -1.6025391, -0.4099121, -1.5488281, 1.1289062, 2.8378906, 1.296875, -1.2998047, 0.5888672, -1.2822266, -0.05291748, -0.13085938, 2.0351562, 2.609375, 0.16540527, 0.37695312, 0.3857422, 3.171875, -0.99560547, 1.1582031, 0.30737305, 1.8740234, -2.4980469, 3.4648438, 1.1669922, -2.546875, -0.84814453, -2.2988281, 0.15466309, 0.6660156, -1.5341797, -1.5966797, -1.2919922, -2.5371094, -1.9140625, -2.6621094, -4.6015625, 0.71728516, 0.41748047, -1.5439453, -0.39208984, 2.4140625, -0.3034668, 5.2890625, 1.8408203, 0.051574707, -1.5371094, -0.32177734, -1.8789062, -0.6879883, -0.12731934, -3.5488281, 1.5537109, 0.06561279, 1.0439453, -0.83496094, 0.55322266, 1.2275391, 2.1484375, 2.2578125, 1.5996094, 1.1083984, 2.4960938, 1.2050781, 0.25976562, 1.3789062, 1.1679688, -1.2158203, -0.1586914, 2.6074219, 1.1503906, 3.21875, -1.0449219, 0.11138916, 1.2783203, -1.4335938, -0.45336914, 0.16308594, 0.9165039, -2.21875, -0.42773438, 1.5292969, 1.3662109, -0.9741211, -0.28027344, -1.2675781, -0.9091797, -0.04171753, -0.31982422, 4.546875, -0.69970703, 1.1484375, 0.09063721, 1.7167969, 2.5839844, -3.0703125, 1.5390625, 2.4433594, -1.9472656, -1.6074219, 0.00843811, 1.5253906, 2.5957031, -0.20959473, 1.2626953, 3.4804688, 1.4863281, 1.4863281, -2.1582031, 0.9692383, -0.59521484, 2.4824219, 1.3359375, -2.6835938, -1.984375, -0.4519043, -3.6054688, -1.6523438, 3.1464844, 1.9775391, 1.7890625, 1.7695312, -3.5449219, 1.5302734, 0.55322266, 2.7675781, -0.7817383, -0.18530273, -0.20874023, -1.5996094, -0.52734375, 0.5786133, -1.2890625, 2.0722656, 0.7348633, -0.69873047, 3.2675781, 1.0927734, 1.7636719, 0.60058594, 1.7441406, 1.6582031, -0.095458984, -0.21911621, 0.74072266, 2.0761719, -2.4238281, 0.012634277, 1.640625, 0.46020508, 3.3867188, 2.4882812, -1.0908203, 0.65625, 2.3046875, 0.06756592, 1.2744141, -0.17871094, -0.8276367, -0.57128906, 2.1542969, -1.2392578, -1.2470703, 1.2275391, 1.5234375, -0.43530273, 1.7509766, 2.2324219, -1.1425781, 1.625, 0.73046875, -0.45776367, -0.90771484, -0.3642578, -0.014060974, -0.34887695, -0.6894531, -1.0107422, 0.62939453, 0.11755371, -0.66552734, -0.7373047, -0.28979492, -0.6098633, -0.328125, 0.78515625, -0.9033203, -0.8466797, 0.30371094, -0.61328125, -0.8676758, 0.8671875, 2.1035156, -0.85839844, -1.7460938, -2.1835938, -1.5107422, -0.34301758, -2.296875, 2.8164062, 2.5605469, 2.5742188, -1.7675781, -0.71875, -2.7578125, -0.48413086, -2.328125, 2.5644531, -0.46020508, -1.9296875, 0.20788574, -0.9970703, 3.5898438, -0.7451172, -1.0351562, -0.19238281, -0.6894531, 2.8300781, 0.53564453, 0.05706787, -0.11517334, 0.38085938, 1.5234375, 2.0058594, 2.8691406, 0.0423584, 0.94921875, 1.3349609, -0.80078125, -3.1621094, -0.50439453, 0.9736328, 1.5087891, -0.36401367, -0.39135742, 0.99853516, 0.22094727, 0.4855957, -1.0458984, -1.3476562]}, "B00ARJOTSI": {"id": "B00ARJOTSI", "original": "Brand: EISCO\nName: Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment\nDescription: Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

          THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.\nFeatures: Liquid propane gas bunsen burner\nAluminum burning mixer tube with brass flame stabilizer\nAccepts 6 to 8mm tubing\nBase diameter - 80mm, height - 160mm, burner tube diameter - 13mm\nDie cast zinc alloy base. May come with a gold or blue base.\n", "embedding": [-1.6503906, 1.9140625, 2.8867188, -1.453125, 0.14978027, -0.8051758, 0.45751953, -0.33007812, 1.3535156, 1.3251953, 0.36523438, 1.3564453, 0.4934082, -3.4296875, 1.3935547, -0.04638672, 0.123413086, 2.0488281, 0.010307312, 0.54345703, 2.125, 0.66845703, 0.5107422, -1.4404297, -0.7583008, 1.0351562, 4.8984375, -3.4980469, -1.046875, -2.9667969, 0.8569336, -0.30151367, 0.1270752, 1.6699219, -3.3496094, -1.2802734, -2.2285156, -0.13354492, -4.953125, -1.2910156, -1.0820312, 1.5947266, 1.4101562, -0.2529297, -2.8828125, 0.055358887, -1.8662109, -0.13537598, 0.0029907227, 0.0012311935, 2.9199219, 0.57421875, -1.9111328, -0.43164062, 0.9692383, 0.48242188, 1.8408203, -3.0175781, 2.1582031, -0.29052734, 1.3896484, 0.6298828, -2.1171875, -0.35327148, 0.1373291, 0.5629883, -1.0888672, -1.3242188, -0.75439453, 1.0234375, 1.4208984, -0.1116333, -0.08557129, -0.4650879, 0.8095703, -0.29614258, -2.1269531, 2.6582031, 0.41259766, -0.10583496, -0.80908203, 2.703125, 1.3095703, -1.1982422, -1.7138672, -0.7324219, -0.61035156, -1.0292969, 0.86279297, -0.03213501, -1.4208984, 1.4658203, 0.95751953, -3.8613281, 2.7421875, -1.2128906, 1.8349609, -0.7758789, -1.3291016, -0.01576233, -0.1739502, 1.40625, -1.5400391, 0.7348633, -2.453125, -0.78808594, 1.6738281, 1.1269531, -0.038909912, -1.1640625, -0.28564453, -1.8164062, 1.3486328, 0.45166016, 0.15368652, 0.77001953, -0.83251953, 0.8676758, 3.4003906, -0.5498047, 2.9960938, -0.9526367, 0.10406494, -0.10345459, 0.17749023, 0.4909668, -1.3535156, -1.0810547, 4.5039062, -1.9511719, 1.1806641, -0.18579102, 2.5566406, -1.1191406, -1.1171875, -1.9931641, -1.9892578, -3.1796875, -2.1054688, -3.2382812, -4.734375, 1.2353516, 0.4453125, -0.32421875, -2.6933594, 0.6254883, -1.4394531, 0.63671875, 2.1621094, -1.1884766, 2.5878906, -0.83154297, -0.3486328, -1.9199219, 1.8945312, 0.6274414, -0.9555664, 0.12548828, 2.4726562, 2.6171875, 1.015625, -0.42993164, 1.3359375, 3.6230469, -2.5214844, -2.2617188, 0.9199219, 0.01058197, -1.4394531, 0.23876953, 1.2070312, -3.3027344, -1.359375, 0.39086914, -0.19934082, -2.4824219, 0.10491943, 2.6601562, -0.6767578, -0.41967773, -4.9804688, -3.1972656, 1.0976562, 0.92822266, 1.4482422, 0.921875, -0.6357422, -1.203125, 0.77783203, 0.13659668, -0.3503418, 0.80810547, 0.8769531, -0.6958008, -0.42285156, -0.6855469, -0.62841797, -1.4755859, 1.0009766, 0.22143555, -1.2119141, -1.9541016, -0.23730469, 0.8046875, -1.5800781, -2.8007812, -2.4726562, 1.1865234, 0.42089844, 1.84375, 1.6083984, -0.30786133, 2.640625, -1.8769531, -0.78222656, -0.6791992, 1.7666016, 0.2607422, 1.9638672, 0.72314453, 0.36010742, -0.38745117, 0.045196533, 2.4824219, 0.44091797, 2.6679688, 0.77441406, -0.3623047, -1.8408203, -0.9116211, 2.1367188, 0.7626953, -0.2590332, -0.5083008, 1.5419922, 2.1230469, -1.4091797, -0.49951172, 1.8564453, -1.1503906, 0.2548828, -1.5039062, -1.5, 0.4584961, -0.30078125, 0.2758789, 1.0410156, 1.8613281, 0.35131836, 0.85595703, 1.9101562, -0.6044922, 1.5146484, -0.7480469, 0.105285645, -1.2041016, 0.07940674, 0.6791992, 0.33422852, -1.5166016, 3.4199219, -0.4404297, 0.64746094, 2.5976562, 0.76904297, -0.47216797, 0.7949219, 0.71240234, -0.39770508, -1.8017578, 1.7382812, 1.0605469, 0.7709961, 2.4316406, 1.7910156, 1.2900391, -0.671875, 1.5839844, 0.044555664, 1.8056641, -0.32861328, -0.7993164, 2.171875, -2.9960938, 1.0507812, 0.9609375, 1.8691406, -0.46240234, -3.1230469, -0.56152344, 3.578125, -3.0664062, -3.6835938, 1.6962891, -2.6601562, 0.78564453, 0.43237305, 1.3417969, 1.8203125, -1.0683594, 2.0800781, 0.074279785, -0.48999023, 0.53564453, 1.96875, 1.453125, 0.9824219, -0.21362305, 0.7080078, 1.4482422, 0.15234375, 2.3808594, -2.6367188, 2.7988281, -1.3359375, -0.76660156, 1.8300781, -1.125, 2.1132812, 0.11804199, 0.2322998, 2.7519531, 0.72509766, -1.2607422, 0.45361328, 0.8959961, -0.22583008, 0.87597656, 0.62060547, 0.44091797, -2.3925781, -1.359375, 0.24731445, -2.0078125, 0.2578125, 0.9121094, -0.9116211, -3.8925781, 0.78222656, -2.3730469, 0.6171875, 3.1894531, -2.9960938, 0.4802246, -1.0732422, -3.2226562, -0.43652344, 0.27905273, 1.0107422, -1.1542969, 2.9394531, 4.21875, -1.4404297, -3.2128906, -1.0458984, -1.8193359, -1.3642578, -0.32910156, -0.75439453, 0.9667969, 0.19445801, 0.55908203, 1.1845703, 0.9946289, 0.39672852, -1.5507812, -0.13220215, -4.0429688, 1.4355469, -0.7558594, 2.859375, 0.71777344, 0.01626587, -1.5654297, -0.92333984, 0.1850586, -0.30810547, 2.7480469, 0.6821289, 0.7026367, -0.21325684, -0.65771484, -0.16931152, 0.6816406, -2.0039062, 0.5463867, -1.6533203, -0.22351074, -1.9902344, -4.9023438, -0.9902344, -0.9458008, 0.30908203, -1.7705078, -0.17199707, 0.23937988, -1.1113281, -0.42871094, -1.4941406, -0.1998291, -2.6601562, -0.6503906, -0.24023438, 0.65966797, -0.66845703, -0.5830078, 1.2363281, -0.3251953, 0.39770508, -0.96484375, -1.1230469, 1.2861328, 0.2927246, -0.62402344, -0.79296875, -2.3222656, 0.2244873, 1.2451172, -1.1113281, 2.7617188, -2.2304688, -0.7324219, -1.1064453, -0.50927734, 4.0039062, 0.84277344, 0.5830078, 1.046875, 0.1472168, 1.4667969, 1.1894531, -1.4365234, 0.021896362, -0.45776367, 0.09112549, -3.4394531, -1.0986328, 0.22558594, 0.8183594, -1.6132812, 0.18579102, 1.3359375, 2.1894531, 1.2548828, 0.54589844, -1.2949219, -0.08148193, -0.79541016, -0.8125, 1.7753906, -1.4638672, 1.6210938, -2.6191406, 0.41796875, 1.875, 0.3400879, 3.5078125, 0.3178711, 0.34399414, 2.8808594, 1.5537109, 0.21386719, -1.4335938, -2.8339844, -0.049865723, -1.1660156, 3.5410156, -0.072753906, -0.31152344, -1.1513672, 1.8818359, 1.9384766, -2.2558594, -1.4111328, -0.117614746, -0.5390625, -0.671875, -1.0390625, 0.2775879, 0.34716797, -0.9604492, 2.8808594, 2.0488281, -0.24182129, 0.57177734, -0.28979492, 2.6113281, -0.5107422, 0.78466797, -1.7089844, -1.2060547, 0.8149414, 0.54003906, -3.9375, -2.953125, -0.9375, -0.45483398, 1.2568359, 2, -0.50878906, -1.7382812, 0.9301758, -1.8183594, -1.3916016, 1.75, -1.9589844, -1.9335938, 0.71972656, 0.60498047, -0.3947754, -0.16137695, 0.91015625, -1.6953125, -0.03086853, 1.0644531, -1.5361328, -0.047180176, -2.5488281, -0.7290039, -2.0527344, 0.84228516, -0.25854492, 1.40625, 1.5986328, 2.4863281, -0.44970703, 0.64697266, 2.7519531, -0.5292969, -0.051116943, -2.8984375, -3.2460938, 2.5839844, -0.9824219, 2.3828125, 1.4755859, -2.4160156, -0.6274414, 0.08251953, 1.1708984, -1.0839844, -2.9824219, 0.19189453, 1.2519531, -1.9550781, -2.6777344, 2.8007812, 0.6040039, -1.6240234, -1.3457031, -0.2878418, 0.16247559, -0.17895508, 1.0966797, -0.80908203, -0.14147949, 2.2324219, 0.29833984, 0.6088867, -1.1279297, 1.8349609, -0.79248047, 0.48217773, 0.04385376, 1.8085938, 0.88720703, -0.7441406, 0.34423828, 1.6533203, 2.0722656, 0.7246094, -0.28393555, 0.26513672, 0.09240723, -0.17199707, -2.2070312, 0.6176758, -0.45825195, 0.66503906, -1.4804688, 0.32983398, -1.9404297, -0.29248047, 2.0175781, 0.38867188, 0.44018555, 0.47338867, 1.2607422, -1.4931641, 0.59716797, -0.35229492, -0.96191406, -0.6298828, 0.29638672, -0.50634766, -0.87060547, 2.8828125, -3.0605469, 0.70410156, 0.42285156, -0.9746094, -3.4902344, 1.1035156, 2.5996094, 1.6494141, 0.56933594, -1.2832031, -2.3984375, 0.5004883, 2.0234375, -0.7631836, 2.2636719, 0.3486328, -0.8833008, 0.05456543, 0.8208008, -1.2890625, -0.32104492, 0.57910156, -0.25317383, 0.40673828, -0.14575195, 0.39794922, -2.4921875, 1.3554688, 1.0371094, 0.43847656, 2.1425781, -2.4824219, -1.2402344, -0.19885254, 1.1044922, -0.4428711, 0.5395508, 1.3994141, 0.48413086, 0.05203247, -0.41333008, 1.0039062, 0.7416992, 0.69921875, -1.5966797, 1.5917969, 0.5239258, 0.75927734, 0.4951172, 1.2119141, -0.66064453, 1.1806641, 1.6191406, 0.8354492, 0.9770508, 2.7167969, 0.6015625, -3.2089844, -0.34765625, 0.35083008, -0.8046875, -1.4101562, -2.1699219, -2.2519531, 2.40625, 1.0166016, -1.2910156, -0.19335938, 3.078125, -1.4882812, 1.5048828, -0.2980957, -0.55908203, 0.35473633, -0.9707031, -0.56933594, -3.046875, -1.0292969, -0.11456299, -0.08709717, -0.6123047, -0.027282715, 0.15490723, -0.3713379, -1.3486328, -0.65966797, -0.028518677, -0.8105469, 0.55029297, -0.7319336, -2.2773438, -0.47851562, 3.4003906, 0.4621582, 0.13549805, 1.390625, 0.38134766, 2.3144531, -1.9404297, -1.5585938, -0.6142578, 0.31591797, -2.0859375, -0.3461914, 2.0644531, -0.23547363, -1.3554688, -0.46850586, -0.6069336, -0.2980957, 2.6796875, -0.3972168, 0.7944336, -1.5214844, -1.0107422, -3.1308594, -1.859375, -0.90527344, 0.3005371, -1.0908203, 0.70458984, -1.1123047, 1.1386719, -0.953125, -2.3007812, 0.33251953, -1.296875, 0.66015625, -0.71533203, -0.074401855, 0.38452148, 1.0234375, 0.34399414, -0.5078125, -1.3857422, 0.09680176, -0.63671875, -1.7958984, -0.50927734, 2.2226562, -0.9667969, 0.21105957, 1.4599609, -0.4345703, 1.7304688, 3.4296875, 1.2382812, -3.1367188, 1.3291016, -0.93847656, 1.0546875, 0.35375977, -3.1289062, 1.9541016, 1.4355469, -0.051818848, 1.6308594, 3.7460938, -0.6503906, 1.6113281, -0.9794922, 2.2636719, 1.1074219, 1.7255859, -0.23522949, 1.3203125, -0.20361328, 1.6337891, 2.1914062, -1.6591797, -0.3022461, -1.703125, -2.125, -0.29785156, -0.81591797, 0.11804199, -0.89404297, 1.4082031, -0.8930664, -1.1337891, 1.046875, -1.4951172, -0.60058594, -0.171875, 3.71875, -0.71191406, 2.4726562, 1.7294922, -0.66308594, -2.2753906, -1.6240234, 2.8183594, 3.3964844, -1.7109375, -0.35742188, 1.8056641, -1.8007812, 1.9267578, -0.3786621, 0.63916016, -0.8520508, 3.6875, -0.58203125, 0.13806152, 2.6308594, -2.5488281, 0.18920898, 1.3515625, -0.06121826, -2.7109375, 0.16015625, -0.23522949, -2.9414062, 1.375, -1.7363281, 0.44335938, -0.21960449, -0.9296875, 0.23522949, -2.8613281, -1.78125, 0.9790039, 0.25805664, -1.0292969, 1.46875, 0.9199219, -1.6894531, -0.3527832, 0.38452148, -1.5292969, -0.12121582, 1.5048828, 2.3574219, -1.4667969, -1.3632812, -0.83251953, 0.5727539, 1.1269531, -2.859375, -1.1738281, 1.3583984, 0.78222656, -1.4501953, 0.42358398, 0.09564209, 1.6103516, -0.14282227, 2.1074219, 0.5205078, 0.64697266, 4.2421875, 0.8823242, 4.7539062, 0.63720703, 0.7871094, 0.32617188, 0.55322266, -1.4082031, -0.5854492, 1.1816406, -1.015625, -2.4023438, -0.609375, -1.4453125, 0.3552246, 1.8046875, -3.0585938, 0.9326172, -1.90625, 0.6875, -0.39916992, -0.20666504, -0.5263672, 0.75927734, 0.054473877, -0.11480713, 0.36328125, 1.0742188, 1.2666016, 0.19165039, -1.28125, 0.14147949, -3.7011719, 0.39526367, -0.21386719, -1.0947266, 0.8417969, 1.6201172, 1.9414062, 1.5615234, -0.05706787, 0.2697754, -0.20690918, 0.65478516, 1.90625, -0.89697266, 0.8178711, 1.5888672, 1.4980469, 1.4052734, 0.30297852, -0.7216797, 0.75439453, -2.2480469, -2.640625, 3.0507812, -0.32641602, 2.3730469, -0.25976562, -1.3017578, 1.2792969, -2.3828125, 1.0439453, -1.8603516, -0.10992432, -0.07055664, 0.69677734, -0.12512207, 1.6435547, -0.3095703, 1.7714844, 0.19482422, -1.1367188, -0.3701172, 0.5991211, 1.1611328, 0.9433594, 0.89697266, 0.91308594, 1.5361328, -1.6953125, 4.34375, 0.8730469, -0.49414062, 0.16235352, 3.7109375, 1.4599609, -0.36669922, -1.2451172, 0.9902344, 1.1113281, 0.24511719, 2.3378906, -0.60253906, -2.359375, -1.6816406, -1.3085938, -1.2041016, 0.3010254, 1.0400391, 0.4091797, 0.21228027, -2.1835938, 0.16918945, 0.7441406, -0.82470703, -0.33154297, 1.2666016, -1.4150391, -0.3486328, 0.7817383, 1.5859375, -2.1679688, -2.3769531, 0.3178711, 1.2285156, 0.43139648, -0.7973633, 0.21362305, 0.5493164, -1.1103516, 0.16674805, 0.6621094, -0.48608398, -0.50097656, 2.3769531, -0.6953125, -1.6796875, 1.2597656, -0.45214844, 0.23059082, 0.9375, -0.8881836, 0.60839844, -0.39746094, -1.5615234, -0.13110352, 2.6328125, -0.9375, 2.0566406, -1.1171875, -3.4003906, -1.5097656, 0.21826172, -0.57421875, 1.0830078, -1.4951172, 0.36035156, 0.48339844, 1.7666016, -0.31982422, 0.5029297, 0.2590332, -0.78808594, 1.8330078, -1.59375, 1.8037109, 0.76416016, 1.953125, 0.64453125, 3.9160156, 0.95947266, 0.38842773, -0.66503906, 1.0019531, 0.73583984, -1.4980469, -0.8359375, -3.15625, -0.4814453, 0.8232422, 1.3134766, 1.5966797, -1.4414062, -1.7158203, -0.87402344, -0.44970703]}, "B01LYQLDVJ": {"id": "B01LYQLDVJ", "original": "Brand: Stanbroil\nName: Stanbroil 3/8\" X 18\" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace\nDescription: Key Features:

          - This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
          - Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
          - Provides extra corrosion protection from accidental contact with common household chemicals.
          - Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

          Compatibility:

          \u2714 Propane
          \u2714 Natural Gas
          \u2714 Gas Fire Pits
          \u2714 Gas Fireplaces
          \u2714 Gas Log Sets

          Tips for checking and addressing problem of whistling

          \u27a4 Flex Line Problems:
          1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
          2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
          3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

          \u27a4 Gas Pressure is Too High
          ~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

          ~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
          . Natural gas: Between 3.5\u201d WC and 7\u201d WC.
          Propane: 7\u201d WC and 11\u201d WC
          \nFeatures: Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance\n3/8\" OD x 1/4\" ID 18 inch Stainless steel pipe coated black gas line with fittings\n3/8\" Male Flare x 1/2\" Male NPT fitting end, 3/8\" Male Flare x 1/2\" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience\nCSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners\nThere is a staggered pitch every 2\" to Eliminate Whistling\n", "embedding": [-0.93359375, 2.2851562, -0.69189453, 0.4338379, 2.1777344, -0.9321289, 1.625, -0.5673828, 1.140625, -0.6118164, -2.0820312, -0.0052948, -0.18603516, -3.4746094, 0.19104004, -0.59228516, -2.3613281, -0.3046875, 0.84228516, 0.92578125, 2.3925781, -0.58691406, 2.4765625, 1.6347656, 0.9086914, -2.4746094, 1.9794922, 0.5698242, -2.1074219, -1.5273438, 0.80908203, -0.7661133, -0.19482422, 0.9633789, -3.9003906, -2.3945312, 0.8769531, -1.7265625, -3.4707031, -1.4091797, -1.3486328, 0.9838867, 1.3886719, 1.6279297, -2.7890625, -0.11462402, 2.4550781, -0.112976074, -0.99365234, -0.8457031, 1.5097656, 0.7597656, -0.5932617, 1.2431641, -1.9179688, 2.0410156, 0.038970947, -1.2861328, 1.2705078, 0.3852539, 2.2578125, 0.89697266, -2.5507812, 0.5317383, -1.2929688, 1.3613281, 0.24401855, -0.5727539, -1.6162109, 1.5605469, 0.6879883, 1.5, 0.21447754, 1.1875, 1.0429688, 1.2705078, -4.1757812, 3, 1.171875, -1.6240234, 0.45410156, 1.0507812, 0.27124023, -1.4228516, 0.46533203, -2.15625, -1.6738281, -1.0947266, -1.1201172, 2.6582031, 1.2060547, 2.0585938, -2.7285156, -4.546875, 0.03012085, -0.6982422, 1.3974609, 1.2314453, -0.4753418, -0.6269531, 0.890625, 0.83740234, 0.24145508, 0.24572754, -1.1796875, -1.8046875, 1.4208984, 2.3242188, -0.7680664, 0.9013672, -0.8041992, 0.054473877, 1.7490234, 0.48608398, -0.36987305, -0.43847656, -0.25830078, 0.036376953, 3.8203125, -1.9082031, 3.7246094, 1.0869141, 1.1572266, 0.4453125, 2.5488281, 0.7753906, -1.7539062, -2.0605469, 2.5625, -2.3300781, 0.48388672, -2.7480469, 1.3681641, -0.04537964, -1.6708984, -2.2890625, 1.109375, 0.1496582, -3.0722656, -0.23608398, -2.6796875, 0.7993164, 0.76171875, -0.4116211, -3.46875, 2.1230469, -1.4335938, 2.3007812, 1.0078125, -3.2050781, 0.55859375, -0.63183594, 2.2363281, -4.046875, 2.5996094, 1.4189453, -0.8466797, -2.0546875, 2.7128906, 0.25341797, 0.05758667, -0.62841797, -1.4150391, 1.1582031, -1.5810547, -2.6308594, 0.91308594, 0.91259766, -1.0126953, 2.3320312, 1.1757812, -0.8613281, -0.006122589, 2.2089844, -0.20837402, -1.46875, 0.6074219, 1.6191406, 3.140625, 0.05758667, -1.3720703, -1.4541016, 1.5917969, -0.9379883, -1.1767578, 1.6181641, 0.27661133, -0.19970703, -0.53271484, -0.6386719, -1.2949219, 1.3320312, -0.5751953, -0.2758789, 0.08227539, -2.1699219, -0.79003906, -1.75, 1.9169922, 3.3515625, -3.0683594, 1.2246094, 0.71972656, 1.6757812, -2.296875, -0.30566406, 1.9765625, 0.24035645, 1.7783203, 2.4296875, 0.26367188, -0.66015625, 2.1152344, -1.3994141, 0.5136719, -1.6357422, 0.72558594, 2.0429688, 1.1103516, -0.17358398, 3.2519531, -1.2109375, 0.72558594, 0.69140625, 2.4824219, 1.0830078, -0.65283203, 0.3713379, -1.6816406, -0.7871094, 2.7929688, -1.1855469, -1.4023438, 0.5024414, -1.2802734, 2.9746094, -0.3935547, -2.0253906, 2.7636719, 1.1445312, -1.3642578, -0.6660156, -2.6464844, -0.0118637085, 0.010627747, -0.8339844, -0.19274902, -0.41625977, 0.8129883, -0.35620117, 0.78027344, 0.19335938, 2.4746094, 1.0869141, 0.17102051, -0.5957031, 0.21643066, 1.4072266, -0.86376953, -0.9267578, 1.234375, 1.6650391, -0.32666016, 1.0039062, -0.013519287, -0.73339844, 1.0449219, -2.4902344, -0.21984863, -1.6542969, -1.0878906, 2.125, 1.7460938, -0.013122559, 0.2722168, -0.47851562, 0.27368164, 3.3300781, 1.6552734, 0.38330078, 1.375, -0.66064453, 0.36279297, -0.8017578, -0.012939453, 1.9082031, 1.8232422, -1.5605469, 0.9033203, -1.4755859, 4.625, -2.3242188, -0.5332031, 1.0478516, 0.9091797, 0.38964844, 1.2246094, 2.1582031, -0.5161133, -1.5537109, -0.57128906, 3.1035156, -0.3227539, 1.6591797, -0.13928223, -0.36767578, 1.6074219, -0.41503906, -0.1496582, 0.23181152, 0.013893127, -0.29760742, -1.4941406, 2.2851562, -3.0585938, -2.7246094, 1.0849609, -0.7919922, 2.0136719, 2.0429688, 0.06768799, 1.1289062, 1.8867188, -1.2529297, -1.7949219, 1.6621094, -1.6640625, 1.4003906, 1.1337891, 2.0839844, -1.4453125, -0.9536133, 0.27148438, -2.9824219, -1.0791016, -0.27612305, -0.26123047, -3.5097656, 0.9506836, -3.2539062, -1.9423828, 1.9375, -0.7397461, 1.9707031, 0.56347656, -1.5361328, -0.09716797, 0.6586914, 0.16052246, 0.76708984, 1.25, 4.640625, -2.5625, -3.1386719, -2.3710938, -0.0019989014, -0.029388428, 0.48583984, -1.0244141, -2.2617188, 0.11077881, -0.13513184, 0.17578125, 0.7963867, -0.4951172, -2.3535156, -1.0595703, -2.7773438, 1.9775391, 1.0126953, 2.3867188, 0.47827148, 1.7841797, -1.0693359, -1.9951172, -0.82128906, -0.31762695, 3.3925781, -1.5644531, 2.640625, -1.9072266, -1.6923828, -0.8613281, -0.83740234, -1.1162109, 1.0302734, 0.65185547, -0.2487793, -1.8505859, -1.1367188, 1.8544922, 0.22021484, -1.4892578, -0.64746094, -0.8144531, 1.2177734, -0.31298828, 0.9345703, 1.0849609, 2.1445312, -0.63720703, -0.4128418, -0.33569336, 0.3173828, -0.39501953, -0.29956055, -0.8798828, -1.8134766, -0.3701172, -1.4912109, 0.9477539, 2.5058594, 0.68066406, -1.2050781, 1.8017578, -2.0234375, -1.2421875, 1.0175781, -2.3769531, 0.6791992, -2.0742188, 1.7294922, -1.1591797, 2.1210938, 3.5488281, 1.1318359, -0.3828125, 0.21203613, -0.5957031, 1.6855469, -0.5942383, -1.3505859, -0.82373047, 0.5986328, 3.7324219, -2.7363281, -0.16113281, 0.08282471, -0.17614746, -4.7460938, 1.4169922, 2.9980469, 1.3046875, 2.0097656, 0.9790039, 0.61865234, -0.40185547, 0.8618164, -0.009208679, 0.44848633, -0.38256836, 0.1262207, -0.42700195, -0.86083984, 0.45703125, 0.59375, 1.0605469, -0.87109375, 1.0185547, 0.68115234, -0.43945312, 1.6181641, 0.41430664, -0.5385742, 1.0625, 0.4831543, 1.5341797, 1.3798828, 0.4116211, -1.8515625, 0.6357422, 2.2441406, -1.4316406, -2.8359375, 1.3369141, -0.8330078, -1.0107422, -0.56396484, -0.9526367, -1.0556641, -2.984375, -0.56103516, 0.14465332, 1.6904297, 2.0195312, -1.0292969, 1.6816406, -0.82666016, 1.3554688, -1.4082031, 0.31860352, -1.546875, -1.3251953, -1.6347656, -2.1230469, 0.5058594, -1.4726562, 1.1367188, 4.0742188, 0.117370605, 1.0117188, 0.12213135, -1.1259766, -1.0185547, 2.2929688, -2.1679688, 1.2294922, -1.0751953, -1.2314453, 0.13220215, -0.9008789, -0.39819336, -1.4433594, -2.3964844, 2.3417969, -0.8901367, -0.80810547, -0.73876953, -0.7519531, -2.0917969, 0.65722656, -0.04812622, -1.2382812, 0.47265625, 1.1953125, -0.33203125, -0.32714844, 3.0214844, -2.2070312, 0.3642578, -1.8896484, -3.6015625, 1.5498047, -2.6699219, 0.1977539, 1.0898438, -0.6015625, -1.8828125, 2.6308594, 0.7363281, -1.3251953, 0.056243896, 0.43286133, -0.3930664, -0.30004883, -2.2714844, 1.3701172, 2.2304688, -0.40698242, -0.7895508, -1.2607422, 0.16699219, -0.84277344, 1.296875, -0.97802734, 0.33642578, -0.0099105835, -0.8876953, -0.072387695, -3.1132812, 1.0244141, -1.2705078, 0.7685547, -1.7197266, 1.4697266, 1.6552734, 1.34375, -0.07373047, 2.921875, 1.9707031, -0.15905762, 0.6464844, 1.0742188, 3.296875, 0.6303711, -1.3134766, -1.0048828, -0.16577148, 2.3925781, 0.1817627, -0.1517334, -0.27294922, -1.7441406, 2.2539062, -1.6611328, 1.7685547, 0.30908203, 0.43530273, -3.7109375, 0.1274414, 0.8095703, -2.2460938, 0.76464844, -0.7529297, -0.24328613, -1.0800781, 0.58447266, -3.3007812, 1.1669922, 0.18164062, -1.0039062, -0.16210938, 0.9589844, 2.3789062, 1.0625, 2.2539062, -2.8828125, -0.4885254, -2.3828125, -0.7402344, -0.6850586, 0.34765625, -1.5380859, -0.20996094, 1.625, 0.8413086, -0.8911133, -0.009521484, 1.9345703, 0.058624268, -1.1376953, 0.17138672, 0.2668457, -3.1855469, 0.265625, 0.76220703, -0.8491211, 1.5859375, -1.1005859, -0.6323242, 2.5, -0.8666992, -1.2177734, 1.9326172, 0.2944336, 0.6201172, 1.0087891, 0.12756348, 1.7929688, 2.8867188, 2.0371094, 1.2861328, 2.640625, 1.7314453, 2.0058594, 1.3818359, 0.73095703, -1.6552734, 2.140625, -0.4802246, 1.6171875, 1.125, 2.1757812, -2.0683594, -1.7949219, -0.85839844, 0.61035156, -4.09375, -0.96533203, -1.4892578, -2.3515625, 1.0087891, -1.3974609, -1.8945312, 0.032928467, 1.1992188, -1.4277344, 0.9345703, 0.49291992, 0.28735352, -0.26708984, -1.8427734, -3.3886719, -2.3730469, -0.9370117, 2.6132812, -0.30810547, 0.7446289, -0.109558105, -0.058258057, -0.31835938, -0.10180664, -1.4677734, -1.0810547, -2.2226562, 0.21862793, -1.5888672, -0.88916016, -0.40600586, 0.97998047, -0.4309082, -0.08441162, 1.1484375, -0.59814453, 2.703125, -2.0917969, -1.3505859, -0.8569336, 0.6152344, 0.59277344, 0.8203125, 3.3554688, 0.24243164, 1.2128906, 0.671875, -0.9316406, 0.37402344, 2.2011719, 0.084228516, 0.32421875, -1.9130859, -0.44458008, -1.1992188, -4.4101562, -1.0986328, 1.7802734, -0.2322998, 0.14196777, -1.5126953, -0.96240234, 0.32739258, -0.028030396, -0.15222168, -0.26757812, 1.3837891, 0.40478516, -0.41674805, -2.1386719, 0.8496094, 0.7080078, -0.6875, -1.0429688, -0.71728516, 1.7265625, -1.1757812, 0.2919922, 3.6875, -2.375, -0.625, 2.1328125, 1.3369141, 0.0066833496, 2.3046875, -0.5131836, -0.9086914, -1.7158203, -3.3730469, -1.0390625, 1.7890625, -2.2402344, -0.33764648, 0.19714355, -0.94970703, 0.29956055, 1.3300781, -1.6025391, -2.6171875, -0.70410156, -0.22668457, 0.9472656, 0.7480469, -1.0166016, 0.5708008, 1.2041016, 2.0625, 2.0195312, -2.1113281, 0.6191406, -0.5864258, -1.6064453, 0.85058594, 0.08605957, 1.5644531, 0.8041992, 1.5009766, 0.9902344, -0.06274414, 0.91015625, 1.2578125, -2.0859375, -0.37817383, 1.3164062, -1.359375, 2.1035156, -0.6665039, -1.6630859, -4.671875, -0.1977539, 1.7919922, 2.1171875, -0.43969727, -0.04888916, 0.38183594, 0.04660034, -0.3137207, -1.3291016, 1.6367188, 1.5888672, 1.1777344, 0.22961426, -0.23303223, -0.43237305, -1.8369141, 2.1425781, 2.5136719, 1.1083984, -1.3320312, 1.0712891, 0.5913086, -4.1601562, -2.0722656, -1.4013672, 1.3203125, 1.1455078, 0.5917969, -0.9213867, -1.4785156, -0.10601807, 1.9453125, -2.1367188, -1.03125, 1.5917969, 0.94921875, -0.23205566, -0.47045898, 1.1035156, -1.7119141, 0.59277344, 1.3154297, 0.1194458, -1.5224609, -2.5, -0.96435547, 0.40722656, 2.2753906, -1.9384766, -0.36914062, 2.7265625, 0.9584961, -0.7841797, 0.90771484, 2.1816406, 2.1640625, 0.061035156, 3.7792969, 1.2578125, 0.7758789, 2.6601562, 0.10974121, 1.6328125, -0.14355469, -0.09918213, 1.2929688, 2.0449219, -0.28295898, 0.7519531, -2.0078125, 0.38085938, 0.8979492, 0.61865234, -1.9375, 1.6728516, -0.109436035, -4.3398438, -0.4243164, 0.9526367, -1.9492188, -3.2636719, 1.7226562, -1.6396484, -0.9980469, -0.2998047, -0.89501953, 1.2197266, -0.57421875, 1.3525391, 0.45581055, -0.2939453, 0.97802734, -3.5058594, 0.7504883, 0.4104004, -4.1328125, -0.61328125, 2.2714844, 0.73535156, 2.3066406, 1.6171875, -0.5288086, -0.11187744, 0.28027344, 1.4150391, -0.08880615, -0.8066406, 0.17626953, 0.7373047, 0.2956543, -2.6875, -0.6245117, -1.1044922, -2.8515625, -2.328125, 3.1191406, -0.97265625, -0.07476807, 1.2421875, -0.19897461, 0.08666992, 0.47265625, 0.2409668, -1.6464844, -1.0654297, 0.1694336, -1.9697266, -0.034332275, 0.103027344, -0.5961914, 0.23181152, 0.6455078, -1.6796875, 0.020141602, 1.5664062, 0.1517334, -0.09716797, -2.0722656, 0.049072266, -0.07019043, -0.77246094, 3.9042969, -0.47485352, -0.70214844, 0.026672363, 1.3486328, 0.62841797, 1.6318359, -0.26123047, 1.2861328, 1.7080078, -1.3330078, 0.8779297, -2.3261719, 0.11138916, -2.140625, -0.36083984, 0.024169922, 0.8671875, -2.265625, 0.8803711, 1.1142578, -3.0410156, 0.9785156, -0.33447266, -0.9404297, 1.4667969, 2.4707031, 0.49829102, -0.74853516, 0.20910645, 2.8417969, 0.17626953, -0.5957031, -0.08135986, 0.62597656, 0.20275879, -1.7890625, 1.34375, -0.28515625, -0.3869629, 0.26782227, 1.6367188, -0.06964111, -1.5351562, -0.16101074, -2.2890625, -1.1044922, 3.1972656, 0.5678711, 0.6113281, 0.53759766, -1.4472656, 0.91748047, -2.5585938, -2.1367188, 0.40722656, 2.9316406, -0.56640625, 1.5654297, 0.57958984, -2.671875, 0.27246094, 1.4736328, 0.46313477, 0.39819336, -2.5292969, 0.6972656, -0.21606445, 4.1484375, -1.0478516, 1.4072266, 0.42919922, 0.93847656, 1.6533203, -2.5625, 2.9179688, -0.6640625, 0.6567383, -0.08483887, 3.4785156, 0.80371094, -0.34570312, 0.22460938, -0.14318848, -0.8354492, -2.0605469, 0.042297363, 1.5644531, 0.45654297, 2.4140625, -0.4934082, -1.3691406, 0.9277344, -1.4130859, -2.3535156, -1.3486328]}, "B078K8DSXC": {"id": "B078K8DSXC", "original": "Brand: GasOne\nName: Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet\nDescription: \nFeatures: \u2713 A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience\n\u2713 MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n\u2713 READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use\n", "embedding": [-2.3808594, 1.0439453, 0.80810547, 0.41088867, -1.28125, 0.047332764, 1.4716797, -1.8847656, 2.1855469, -0.8149414, -0.58447266, 0.41210938, 0.73779297, -1.6884766, 1.8105469, -0.31323242, 1.7675781, 1.703125, 1.9794922, 2.8789062, 0.39892578, -0.23583984, 3.9707031, -1.7001953, 0.5175781, 0.36547852, 2.734375, -3.5605469, -0.9448242, -0.46606445, 1.5869141, 1.7255859, 0.17736816, 1.0126953, -2.28125, -0.7675781, -0.85302734, 0.05392456, -3.3535156, -1.9853516, -2.6953125, 1.1503906, 1.9980469, 0.52685547, -1.9833984, 1.6826172, 2.3535156, 0.953125, -0.48657227, 1.1679688, 1.7744141, 0.5908203, -0.20178223, 0.6142578, 0.8378906, 1.6396484, -0.52441406, -3.2714844, 1.4951172, 1.1142578, 2.6191406, 0.22192383, -2.4335938, -0.5307617, -1.1923828, 1.5410156, -0.31860352, 1.1679688, -0.07348633, 0.079711914, 1.6435547, 1.7832031, 0.12371826, 0.068847656, -0.6166992, 0.5629883, -3.1484375, -0.038970947, 3.1367188, -0.4284668, -0.8378906, 2.3066406, 1.1533203, -0.9692383, 1.6767578, -1.4638672, -1.046875, 0.59375, 1.2802734, 1.3691406, -1.9697266, 3.9785156, -3.140625, -2.7109375, 0.08514404, 0.14562988, 0.63623047, 3.0136719, 0.43652344, -0.14562988, -1.6347656, -1.3076172, -0.9042969, 1.6308594, -2.0019531, -1.9736328, 0.37963867, 1.6435547, -1.6767578, 0.57421875, -0.12939453, 1.2539062, 0.66259766, -0.7661133, 1.1357422, -2.6621094, -0.44311523, 0.7763672, 3.9628906, -0.4086914, 3.25, 0.6508789, -0.082214355, 0.72558594, 0.090148926, -0.34692383, -0.13024902, -0.7446289, 3.8007812, -1.3740234, 0.98779297, -3.3203125, 1.8154297, 1.4248047, 0.54833984, -2.3027344, -1.7763672, -3.4726562, -2.3027344, -0.09106445, -4.3398438, 1.2236328, 0.8647461, -0.18444824, -3.8046875, 1.09375, -3.5957031, 1.6699219, 3.1757812, -3.1035156, 1.9365234, -1.34375, -0.5708008, -2.3183594, 1.5527344, 0.5366211, 0.96728516, -1.0976562, 4.046875, 2.4238281, 0.6821289, 0.66015625, -2.5351562, 0.2890625, 0.09686279, -1.8320312, 0.65283203, 0.4128418, -1.7724609, 1.28125, -0.5444336, -2.9648438, -0.39526367, 0.82128906, 0.31860352, -0.94628906, 0.26538086, 0.7758789, 2.5058594, 0.6743164, -3.1171875, -2.9316406, 1.6376953, -2.8671875, 0.96435547, -0.48046875, -2.140625, -1.8154297, 0.96191406, -0.9848633, -0.47558594, -1.03125, 0.26879883, 0.9848633, -1.9814453, -1.8115234, -3.0625, -0.34545898, 0.39746094, 1.9257812, -0.77978516, -1.5732422, 0.875, 0.18884277, -0.8100586, -1.7705078, -1.0966797, -0.80029297, 0.64208984, 1.8662109, -0.6508789, -0.5263672, 1.7695312, 0.28466797, 0.93847656, -1.5761719, 3.3320312, 2.6855469, 0.9794922, 1.0087891, -1.0341797, 0.17785645, 1.1191406, -0.24694824, 1.6464844, 1.3398438, -0.9160156, 0.31835938, -2.4121094, -2.8828125, 1.7753906, 1.7910156, 0.30908203, 0.45336914, 0.5854492, 2.1308594, 0.23095703, 0.20605469, 1.4072266, 2.3652344, 0.43432617, -0.3540039, -4.0234375, 0.013511658, -0.50439453, 1.1992188, -0.27148438, 1.0546875, 2.1835938, -0.6713867, 0.27661133, -0.061157227, -1.171875, -0.78759766, -0.48876953, -0.5678711, -0.19104004, 3.0859375, -0.09503174, -1.4189453, 0.7246094, 1.8857422, 1.7607422, 2.15625, 0.13781738, -0.6479492, 0.8027344, -0.5214844, -1.8134766, -0.546875, -0.91796875, 2.0117188, 2.0136719, 0.4790039, 2.375, 1.6669922, -2.484375, 1.7060547, -0.62158203, 0.6582031, 1.7871094, -0.3876953, 1.9287109, -1.953125, 1.1123047, 1.5273438, 2.0390625, -0.6118164, -1.7861328, 0.95166016, 2.7207031, -0.12438965, -1.7939453, 2.1367188, 0.6699219, 0.2553711, 0.9428711, -0.113342285, 0.48095703, -0.5185547, 1.1289062, 0.9169922, -1.6455078, 0.82177734, 0.7392578, 1.1503906, 0.19750977, -1.4257812, -0.22473145, -0.5371094, -1.1171875, -1.4853516, 0.110961914, 0.8691406, -2.8417969, -1.0029297, 1.1982422, -1.3164062, 0.18041992, 1.2880859, 1.2255859, 1.5742188, 0.09490967, -1.4941406, 0.66552734, 1.9550781, -2.3652344, 1.0625, 1.3632812, -1.8925781, -0.76123047, -0.79003906, 0.48095703, -2.9394531, -2.3789062, 1.328125, -1.0068359, -3.7929688, 0.91308594, -2.1464844, -3.1601562, 0.38110352, -0.90966797, 3.796875, -0.5053711, -0.06451416, -0.4645996, 0.80029297, -0.9296875, 0.34375, 0.038970947, 2.6308594, -0.64404297, -0.5283203, -0.46533203, 0.36914062, 0.65478516, 2.375, -1.5302734, 0.11773682, 1.5, 1.03125, -1.1552734, -0.059753418, 0.75927734, -1.3574219, -0.03149414, -3.8964844, -0.9223633, -0.5546875, 0.49731445, -1.0078125, -0.34545898, -1.96875, -2.0722656, 1.7128906, -0.9501953, 0.6333008, -0.7314453, 2.7089844, -0.84375, -0.37768555, 2.59375, -0.8984375, -3.1992188, -0.3947754, 1.3681641, -1.7607422, -1.6220703, -1.8027344, 0.068481445, -0.71533203, 0.64941406, 0.18432617, -1.5957031, -2.0390625, 0.28735352, 0.40234375, -1.6816406, -1.171875, 0.7128906, 0.066589355, -1.1162109, -0.6875, 0.8149414, -2.2246094, 0.12359619, -1.0439453, 0.027709961, -0.6035156, -0.47314453, 1.1113281, 1.1474609, 0.8105469, -1.2900391, -3.6855469, -0.56933594, 3.5351562, -1.7333984, 1.6181641, -2.7304688, -0.25952148, -3.3554688, -1.9511719, 1.6435547, 0.44506836, 1.4316406, -0.65185547, 0.3720703, 1.4892578, 0.5629883, -1.8242188, -1.0966797, -0.15588379, 4.0625, -3.8320312, -1.0839844, -0.56152344, 0.6933594, -3.7949219, -0.28515625, 3.3261719, -1.7607422, 1.3535156, 1.7695312, 2.0371094, -0.4111328, 0.9628906, 1.9257812, 0.8647461, 0.33544922, 1.2089844, 1.4658203, -0.48364258, -0.61572266, 2.1992188, 0.32470703, 0.6196289, 2.1816406, 0.27514648, -0.8286133, -1.3740234, -0.030548096, -0.0024223328, 0.45581055, 1.0019531, 2.0078125, 0.13623047, -0.5839844, -0.6196289, 1.0488281, 2.0996094, -1.7558594, -1.609375, 1.9160156, 0.7060547, -0.8911133, 0.4326172, -0.14355469, -0.11590576, -0.08135986, -0.83447266, 1.21875, 1.2226562, 1.6513672, -0.42138672, 3.0957031, -1.625, 3.2265625, -1.8867188, -0.10992432, -0.9970703, 1.8037109, -2.0058594, -1.4833984, -0.7626953, -4.25, -0.6376953, 2.9921875, 1.46875, -2.2929688, 1.7109375, -0.8647461, 1.4189453, 1.4833984, -1.7128906, 0.14147949, -0.5913086, -1.6054688, -0.39794922, 0.12854004, 2.6152344, -0.64746094, -2.1464844, 0.44384766, -2.1523438, -0.0069847107, 1.7011719, -0.17443848, -2.6894531, 1.5458984, -1.4111328, 0.44213867, -1.328125, 4.5078125, 0.083496094, 0.22753906, 2.1035156, -2.2949219, -0.25341797, -2.1757812, -5.9414062, -0.1026001, -3.1933594, 0.43017578, 3.5507812, 0.84277344, 0.39257812, 1.3828125, 1.3886719, -2.9238281, -0.58935547, -1.453125, 0.046661377, -2.7949219, -0.8725586, 2.0019531, 0.013755798, -2.0917969, -3.0019531, -0.9135742, -1.5146484, -0.6118164, 1.1601562, -2.9277344, -0.52001953, -1.2128906, 1.4433594, -1.5068359, -1.0449219, 0.62646484, -0.35424805, -1.1210938, -3.6914062, 2.1074219, 0.22106934, 1.0820312, -0.19396973, 4.5507812, 2.0351562, -1.4394531, 2.4335938, -0.28149414, 3.8613281, -0.515625, -2.0410156, 0.22033691, 0.35913086, 0.37231445, -0.55566406, -1.1142578, -0.5644531, -1.46875, 0.8808594, 0.22363281, 1.8974609, 2.2265625, 0.43798828, -2.9550781, 0.92626953, 0.3642578, -0.97314453, -0.3479004, -0.83496094, -0.6201172, -2.75, 1.7109375, -2.9609375, -0.5073242, -1.5332031, -0.16540527, -2.7109375, 0.73095703, -0.43701172, -0.6660156, 1.34375, -3.0234375, -0.04321289, 0.5410156, -0.9848633, -1.3085938, -1.1660156, -2.0625, -0.66064453, 2.9550781, 2.4042969, -0.30541992, -0.5073242, -0.7026367, -2.34375, 0.43725586, -1.1162109, 0.65527344, 0.5126953, -1.4228516, -0.11419678, -0.55908203, 4.2734375, -0.87597656, 0.8251953, 0.032928467, -1.84375, -1.8642578, 2.2363281, 1.8974609, 2.5195312, 1.5195312, 1.6728516, 2.2597656, 2.1464844, 1.9042969, 0.0960083, 1.7861328, -0.9453125, -0.080566406, 0.45361328, 0.4074707, -1.5800781, -1.15625, 1.0419922, 2.2734375, 1.9384766, 2.9589844, 1.2197266, -2.0957031, 0.8535156, 0.04611206, -0.828125, -0.5175781, -0.4243164, -1.0429688, 4.5039062, 0.31176758, -2.2285156, 0.9868164, 3.03125, 0.3310547, 2.6132812, -0.10668945, -0.5292969, 0.41967773, -1.6474609, -1.8330078, -1.234375, -2.171875, 1.8300781, -2.7519531, 2.3203125, -0.9951172, 2.9648438, 1.3056641, -0.14282227, -0.008453369, -0.48095703, -1.4453125, 0.24389648, -0.7036133, -1.0917969, -1.4414062, -0.3984375, 1.1494141, 1.7021484, 1.59375, -1.1738281, 0.084228516, -1.8173828, -1.2304688, 0.50146484, 2.4140625, -0.41064453, -1.8339844, 1.9550781, -1.2880859, -0.55810547, -2.2148438, -1.3486328, -1.1787109, 2.6289062, 1.4921875, 2.109375, -0.6254883, -1.6953125, -2.0898438, -5.3320312, 0.37109375, 0.6801758, -0.53466797, 1.0576172, -2.6757812, -1.8408203, 0.15881348, -0.97021484, -1.140625, -2.3769531, 0.20031738, -1.5048828, -0.93310547, -2.3925781, 1.0048828, -0.25854492, 1.6240234, -1.3027344, -0.1616211, -0.48876953, -2.0390625, -2.0625, 1.4892578, -1.8789062, -0.7089844, 2.5488281, -1.4306641, -0.18554688, 2.5, 1.2197266, -1.4560547, 1.9628906, -3.8125, 0.82910156, 0.76904297, -2.4960938, 2.7265625, 1.7001953, 0.22802734, 1.0625, 0.39086914, 1.7617188, 0.2685547, -1.7421875, 1.7539062, 1.2548828, -0.30371094, -2.3691406, 0.6274414, -0.29345703, 1.7509766, 1.6660156, -0.030288696, -0.15905762, -1.4306641, -2.0742188, -0.1854248, -2.0898438, -0.8378906, 0.8808594, 0.7163086, 1.6220703, -1.2558594, 1.8730469, 1.6035156, 0.3720703, -0.16149902, 1.2011719, 0.51660156, 2.5527344, -0.04574585, -1.0849609, -2.3300781, 0.14379883, 0.75, 3.0703125, -1.7509766, 0.5058594, 0.4519043, -0.9609375, 0.2980957, -0.43603516, 1.28125, 0.7006836, 1.0107422, -1.3730469, -0.8701172, 3.1074219, -2.4550781, 0.16345215, 0.06933594, -0.16137695, -1.3925781, 1.4628906, 2.3417969, -3.4355469, -0.44750977, -2.4589844, 1.7255859, -0.99072266, -2.2148438, 1.8203125, -2.9609375, 0.13012695, -1.5419922, -1.8486328, -4.7773438, 0.7402344, 1.4482422, -1.1894531, 1.2890625, 3.171875, 0.16369629, 0.08392334, 1.0839844, 1.5166016, 0.5854492, -1.7285156, -2.6601562, 0.3581543, 1.3476562, -1.3828125, 0.5878906, 2.5371094, -0.6816406, -0.84521484, -0.14624023, -0.82128906, 1.2880859, 1.1572266, 1.9326172, 3.7109375, -0.2866211, 2.1679688, 1.0800781, 2.0820312, 0.57128906, -1.140625, 0.49291992, 2.234375, 0.57470703, 1.7314453, 0.2956543, 0.2512207, -1.8085938, -0.56884766, 0.055664062, 2, 1.0576172, -4.2773438, 0.15344238, -0.93603516, -0.22106934, -3.921875, 1.3701172, -2.4609375, 0.4975586, 1.8603516, 2.078125, 1.0136719, 1.5273438, -2.0898438, 0.15893555, -0.5058594, 2.9355469, -1.9941406, -0.19567871, -0.5932617, -3.6230469, 0.6376953, 3.3144531, 0.84716797, 0.9765625, 1.0244141, 0.38061523, -1.0048828, 1.8388672, 0.69677734, -2.2382812, -0.4741211, -0.3017578, 2.2558594, 2.5683594, -1.796875, 1.5400391, -0.5209961, -0.62890625, -3.9589844, 3.2109375, 0.1149292, -0.88964844, 0.11444092, -3.4941406, 1.3105469, -0.6694336, -0.3623047, -2.3125, -0.57714844, 0.42504883, -1.0507812, -0.9946289, 0.92041016, -1.1279297, 2.4238281, 0.8261719, -1.3476562, 0.3173828, 3.0957031, 2.2460938, -0.75146484, 1.046875, -0.7133789, -1.6396484, -1.7548828, 2.1875, -0.73291016, -1.7060547, 0.7729492, 3.3964844, 0.35253906, 1.0683594, 0.98339844, -0.14331055, 0.13562012, 0.13110352, -1.0351562, 0.67089844, -1.546875, -0.40649414, 0.81347656, 0.22912598, -1.8544922, 0.28393555, 3.0625, 1.3613281, -1.8017578, 2.6777344, 2.6035156, -0.7182617, 1.921875, 1.4716797, -0.5366211, -0.9682617, 0.921875, -0.002948761, -3.203125, -1.2050781, -0.09967041, -0.25170898, -0.44555664, 0.10845947, -1.9365234, 0.5551758, -0.18530273, -0.103881836, 0.05831909, -2.5332031, 0.30639648, -0.43530273, 0.46240234, 1.2607422, 3.1425781, -0.6166992, 1.9199219, -1.4638672, -1.7646484, 0.18469238, -4.015625, -1.0195312, 2.3496094, 4.1015625, 1.7080078, 2.0390625, -1.5839844, -3.1660156, -0.45825195, -1.3603516, 2.7988281, -0.29345703, -1.1240234, 0.8105469, 1.3955078, 2.1308594, 0.1616211, 0.24841309, 0.029174805, -0.016586304, 2.4921875, -1.0917969, 2.5976562, -0.7807617, -0.99902344, 0.6977539, 3.5371094, 1.4521484, -0.15258789, 0.23046875, -0.80566406, -0.47705078, -3.359375, 0.5595703, -0.2993164, 1.734375, 1.6748047, 1.71875, 2.6894531, 0.5991211, -1.7685547, -1.1914062, -0.52734375]}, "B08TRF6CMF": {"id": "B08TRF6CMF", "original": "Brand: samdew\nName: samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only\nDescription: 20lb Propane Tank Gas Cover\nFeatures: \u3010Fit Well\u3011: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better.\n\u3010Outside Storage Pocket\u3011: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage.\n\u3010Humanized Design\u3011: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow.\n\u3010Stable Tabletop Feature\u3011: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank.\n\u3010Protect Your Tank\u3011: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.\n", "embedding": [-0.29736328, 3.1269531, 1.6826172, -2.0839844, 1.1660156, -0.2376709, 0.057006836, 0.21484375, 0.31274414, 3.6035156, 0.6123047, 2.0253906, 2.3398438, -4.0585938, 2.0234375, -0.32348633, 0.057647705, 1.7705078, 3.2441406, 0.1282959, 1.9179688, -0.011177063, -0.65625, -0.2932129, 1.6552734, -0.4404297, 2.3476562, -2.1132812, -1.5566406, 1.3378906, 0.55126953, -1.1767578, -0.15979004, 2.0917969, 0.045074463, -1.9873047, -0.46948242, -0.06652832, -2.5800781, 0.20703125, -2.3457031, -1.4804688, 3.203125, 1.0498047, -1.75, -0.49804688, -1.75, -1.9365234, 0.98291016, -2.609375, -0.17163086, 1.8828125, 1.3955078, 1.4033203, -2.5234375, -0.89404297, 1.5380859, -3.6132812, -0.60839844, 0.9291992, 0.056762695, -1.3994141, -1.2138672, 1.7744141, 0.5966797, -1.4667969, -0.90771484, -0.5805664, 0.51123047, 1.5117188, -0.46166992, 1.6572266, 1.7128906, -1.0117188, -1.3828125, -0.25317383, -1.6230469, 2.6953125, 2.1933594, -0.49487305, 0.13806152, 2.1777344, -2.296875, -3.5878906, -1.9794922, -1.2099609, -0.2722168, 0.2220459, -0.9868164, 0.5395508, -2.8496094, 1.6103516, -0.3894043, -4.6679688, 1.1708984, -1.8427734, 2.0273438, 0.9033203, 3.1113281, 1.3330078, 0.46069336, 1.0439453, -0.65527344, 1.2724609, -2.4003906, -2.484375, -0.13806152, 0.9711914, 1.59375, 0.76953125, -0.33422852, 0.359375, 2.9375, -1.5410156, 0.055358887, 0.44335938, 0.20593262, 0.8183594, 3.078125, 1.7207031, 3.5605469, -0.79052734, 1.5068359, 0.59716797, 1.8408203, 1.2607422, -1.1533203, 0.59716797, 1.9648438, -1.1162109, 1.3525391, 0.09887695, 0.27416992, -1.7294922, -0.90527344, -1.3496094, -0.5913086, -1.6474609, -2.875, -0.23583984, -3.0761719, 0.007232666, 1.1835938, -0.17785645, -1.3320312, 1.0556641, -1.9052734, 1.0117188, 0.2697754, -2.0898438, 0.63378906, -1.6904297, 1.4599609, -0.9511719, 1.9794922, -0.39111328, 0.47143555, -1.7558594, 1.2607422, 2.4472656, 3.0253906, -2.6582031, 0.080322266, 1.1689453, 0.46972656, -3.9882812, 2.8789062, 0.027709961, -1.3066406, 0.43115234, 0.2512207, -2.5820312, -0.38354492, 0.14013672, 1.1425781, -1.78125, 2.4414062, 2.2949219, 1.3925781, -1.0947266, -2.6953125, -1.2265625, -0.74560547, -0.77001953, 0.72216797, 1.3496094, -2.5839844, -1.4414062, -0.5966797, -1.3945312, -2.9316406, 1.8115234, -2.3242188, -0.94921875, -0.24621582, -2.8789062, -2.7109375, -0.8676758, 0.5541992, 1.7792969, 0.3659668, 0.029571533, -1.4892578, 2.6308594, -3.3125, -0.5864258, 1.2041016, -0.19799805, 1.5166016, 0.41577148, -0.05316162, -0.04232788, 3.6660156, 0.6894531, -1.9326172, -0.026779175, 1.0556641, 0.29736328, 2.828125, 0.15576172, -0.0011816025, -0.38305664, 0.5371094, 2.8496094, 2.0507812, 2.6738281, 1.0859375, 0.61816406, -1.5664062, -1.0458984, 1.4375, 1.2919922, -0.8925781, 0.63720703, -1.4267578, 2.9316406, -0.8066406, 0.47875977, -0.056854248, 0.66503906, 0.9091797, -0.8623047, -1.1376953, -0.6074219, 0.4465332, 1.3994141, -0.062316895, 1.1816406, 0.34106445, 0.95410156, 0.31982422, -1.8222656, 0.7392578, -2.125, -1.5566406, 2.5605469, 2.2695312, 0.19519043, 1.0029297, -1.9794922, 1.1611328, 1.71875, -0.6557617, 1.0166016, -0.5449219, 1.0371094, 0.6381836, 0.375, -2.2734375, 0.16564941, 0.1743164, 1.9013672, 1.9814453, -0.4873047, 1.0791016, 0.9926758, -1.2431641, 3.0136719, -0.21826172, 1.0996094, 0.19604492, -0.94384766, 2.3417969, -1.3417969, 0.5888672, 0.3635254, 3.0800781, 1.3935547, -0.86865234, 0.11199951, 4.3632812, 0.004005432, -0.59228516, 2.3867188, 2.1445312, 0.66308594, 2.328125, -0.28125, -0.4116211, 0.94970703, -1.1123047, 1.5166016, -2.1132812, 1.2138672, -1.03125, -1.2548828, -0.13867188, 0.20776367, -1.1142578, 1.4287109, -0.4169922, -0.97753906, 0.47753906, -0.05831909, -2.2617188, -1.2138672, 4.1367188, -1.4179688, -1.8388672, 2.7070312, -0.77490234, 1.4990234, -1.0585938, -1.6455078, 0.23364258, 1.4697266, -0.6791992, 0.1418457, 0.8652344, 0.7607422, 0.5253906, -1.9794922, 1.4228516, -1.0527344, -0.74365234, -0.5366211, -3.6796875, -2.2714844, 0.1394043, -0.6142578, 0.9169922, -2.2050781, -2.0957031, 2.0917969, 1.9550781, -1.1044922, 0.32885742, 0.26367188, -0.515625, -0.29638672, 0.95654297, 2.6933594, 0.09625244, -3.5546875, -0.47045898, 0.81884766, -0.79003906, 0.5209961, -2.3417969, 0.30908203, -1.2753906, 0.4873047, 1.9873047, 0.01777649, -1.2978516, -1.1210938, -0.08880615, -4.8242188, 1.015625, 0.030960083, 1.4716797, -1.53125, 0.25732422, -0.66845703, -1.6269531, 0.29077148, -1.9306641, 4.3203125, 1.4179688, 0.0005559921, -1.7421875, -1.0771484, -0.36083984, -1.1035156, -2.5839844, -0.35253906, 0.34521484, -1.1191406, 0.41918945, -4.15625, 0.93652344, -1.4912109, -1.2910156, 0.21032715, 0.515625, -1.1630859, -1.3007812, -1.8564453, -0.8930664, -1.6572266, 0.6923828, -0.12298584, -2.3945312, -0.15222168, -1.2080078, 0.44750977, -0.4736328, -0.45141602, 2.0449219, -0.5, 1.2177734, 1.5800781, -1.4433594, 0.5878906, -0.37548828, -2.203125, 0.9692383, 3.1152344, 0.2401123, 1.7294922, -0.6821289, -2.0234375, -1.8369141, 0.5678711, 3.1679688, 2.4453125, 0.99072266, -0.2763672, -0.5161133, 0.6875, -0.296875, 0.20385742, 0.14978027, 1.2646484, 2.5625, -0.6479492, 0.73828125, 1.4599609, 2.7871094, -2.0546875, -1.0634766, 0.72509766, -1.4384766, 1.4667969, -0.3100586, -1.5966797, -0.32226562, 0.52441406, 1.9628906, -0.79052734, 1.1845703, -0.7836914, -0.7792969, 0.1381836, -0.32788086, 0.3894043, 0.9868164, 0.96728516, -1.390625, 2.3730469, 0.6508789, -1.3652344, 0.033050537, 0.52001953, -0.33374023, -0.9926758, 1.2744141, 0.059417725, 1.2802734, 0.203125, 0.27514648, -0.07183838, -2.1855469, 1.8193359, 1.1953125, -0.7866211, -1.2509766, -0.5107422, -1.3515625, -0.4897461, -1.5576172, 2.6796875, -1.4472656, -2.0214844, 1.7333984, -2.9902344, -1.0341797, -1.3837891, 2.3632812, -0.9765625, -0.19262695, 0.63623047, 1.7832031, -3.0507812, -1.4697266, -1.2304688, -1.1884766, -1.6025391, 3.2890625, 2.2382812, -1.9052734, 0.6152344, -1.0898438, 1.2578125, 2.9492188, 0.7158203, -0.3630371, 0.7895508, 0.53564453, -1.7382812, -1.0800781, 1.2353516, 1.4628906, -3.4003906, -0.2866211, -1.2539062, 0.7705078, 1.8085938, -1.3515625, -0.5834961, -0.42016602, -0.6875, 2.1015625, 0.18249512, 2.8574219, 0.6245117, -0.33251953, 1.7304688, -0.5395508, -1.0205078, 0.6308594, -2.703125, -1.1513672, -0.21435547, -1.4931641, 3.3046875, -0.5107422, 1.3642578, -1.1074219, 2.28125, -3.5703125, -0.8984375, -2.3144531, 0.6875, -2.2207031, -0.32495117, 0.32739258, 1.3505859, -2.6992188, -0.51416016, 0.88623047, -0.43774414, -0.0803833, -0.21655273, 1.6591797, 1.3164062, -1.4863281, 0.081604004, -1.796875, -0.23669434, -1.2558594, -0.9584961, -1.8154297, -1.9658203, 3.3984375, 0.09503174, -1.8271484, -0.3918457, 2.5488281, 1.0537109, -1.2128906, -0.4423828, 0.3149414, 0.07922363, -1.2021484, -3.2539062, -1.2841797, -2.7597656, 1.0078125, -1.1708984, -1.6503906, 1.6552734, 0.5761719, 0.43432617, 2.7675781, 2.1796875, 1.4580078, -0.033691406, -2.9433594, 2.6933594, -0.023971558, -1.7285156, -1.859375, -0.75, 0.11657715, 0.32666016, -1.3095703, -1.8349609, 0.2824707, -0.32885742, -1.0058594, -1.4658203, 1.7021484, 3.0976562, 3.1582031, 3.0449219, -0.9560547, -1.3320312, 1.8183594, 2.0449219, 1.5810547, 0.9482422, 0.13085938, 0.07043457, 1.6699219, 1.3457031, -2.7304688, -1.5283203, 0.08758545, -1.0761719, -0.30908203, 0.98046875, 0.73339844, -1.7324219, -1.4423828, -1.5175781, -1.6728516, 2.671875, -1.9716797, 0.96533203, 1.5117188, 0.19750977, -0.39916992, 3.515625, 0.9345703, -0.7504883, 0.48583984, -0.46264648, -0.68603516, 0.4255371, 0.65722656, 0.51660156, 1.7880859, -1.1181641, -0.5239258, 0.8666992, 1.1513672, -0.11425781, -0.076049805, 1.0234375, 2.375, -0.044128418, 0.40844727, 1.4003906, -1.1982422, 1.5478516, -0.39331055, 0.5834961, -1.4433594, -0.62939453, 0.6743164, 2.0722656, -1.8544922, -2.2675781, 0.6357422, -0.052703857, -0.42700195, 1.8183594, 0.7763672, -2.6113281, 0.068725586, -2.6484375, -1.703125, 1.5683594, -1.9960938, -0.9824219, -1.2265625, 1.2089844, 0.5317383, 0.06384277, 2.3671875, -0.12683105, -1.8945312, 1.0742188, -0.16015625, 0.5488281, -0.9350586, -1.6513672, -2.1269531, 0.6875, -0.25830078, -0.5410156, -0.36254883, 0.4958496, 1.8544922, -2.3496094, -1.953125, -0.035705566, 1.2158203, -2.5859375, -0.5673828, 3.1269531, -0.40820312, -0.82128906, 0.34033203, -0.59521484, -0.9951172, 2.3671875, 2.0371094, -0.3322754, -0.21252441, -0.16455078, -4.9179688, -3.9667969, -1.0078125, 0.99365234, -0.1899414, -0.5175781, -0.94873047, -1.6982422, 1.3388672, -0.7495117, 1.0341797, -1.9697266, 0.43066406, 1.1816406, -2.0390625, -0.56396484, 0.17797852, 0.7324219, 0.49023438, 0.17932129, -1.0400391, -0.4243164, -3.3027344, -2.5429688, 0.42993164, -0.9091797, 0.13171387, -0.88623047, -1.2890625, 0.88671875, 1.6474609, 0.8535156, -1.7470703, 1.7226562, -1.6552734, -0.17126465, 1.0556641, -2.3242188, -1.2929688, 0.06604004, -0.35253906, 0.86035156, 2.28125, 1.2509766, -2.1796875, 1.8125, 0.73876953, 1.5, 1.4990234, 1.6943359, 0.71875, -0.35668945, 0.24206543, 3.3378906, -0.005809784, -2.7519531, -1.9550781, -1.0654297, -1.4326172, -1.9589844, -0.6616211, -1.1054688, 0.15783691, 0.61621094, 0.40698242, 1.3359375, 1.2089844, 0.40673828, -2.1347656, 2.0566406, -1.9208984, 1.0878906, 1.8056641, -1.7353516, -2.5234375, -2.4140625, 2.7832031, 0.6904297, -1.3662109, 0.81640625, -0.49121094, -0.90283203, 2.6660156, -0.97753906, 1.2890625, 1.1591797, 1.8808594, -0.77490234, 0.18920898, -0.008964539, -0.4831543, 0.9785156, 0.22875977, 0.6191406, -0.29614258, 0.6303711, 1.4707031, -2.421875, -1.2373047, 0.2854004, 1.5341797, -0.3762207, -0.9091797, 1.3857422, -1.8740234, -0.45654297, -1.4970703, -1.1289062, -3.78125, 1.546875, 0.9116211, -0.12054443, 0.82470703, 1.3076172, -1.5556641, -0.39819336, 2.4179688, -1.6982422, -2.3417969, -0.41381836, -1.1005859, -0.95703125, 1.1865234, -1.3232422, 0.32250977, 1.0322266, 0.79003906, -1.3515625, 2.1425781, 0.6533203, 0.0028152466, 0.97558594, 2.5058594, 3.9355469, 0.7807617, 3.0820312, 0.2722168, 0.8408203, 3.7285156, -0.1661377, 1.1347656, 1.9658203, 1.5273438, 1.3291016, -0.33935547, -0.625, 0.86865234, 0.026245117, -0.4963379, 0.61816406, 1.7265625, -1.8164062, 0.3256836, -0.4260254, -1.4560547, 1.7080078, 1.3652344, -2.1074219, -2.1132812, -0.17919922, 0.07055664, 1.6855469, -2.1425781, 1.1679688, 0.21557617, 0.21960449, 1.5966797, -1.0107422, 0.6850586, -1.9589844, -0.9013672, -0.80029297, 2.7597656, 1.2451172, 1.6162109, -2.2070312, -0.3317871, -1.0253906, 0.5698242, 1.1572266, 0.6582031, 1.953125, -2.0722656, 0.6088867, 3.8945312, -2.71875, 0.15625, 1.3769531, 1.0449219, -2.96875, -1.4755859, 1.1240234, 1.1201172, -1.171875, -3.9707031, -0.7548828, -0.34887695, 0.33618164, -4.0507812, -1.2294922, -1.3027344, -2.4863281, 0.9589844, 2.1171875, -1.8007812, 2.6992188, 1.3251953, 0.7910156, 2.2714844, 1.9287109, 1.2548828, 0.12451172, 0.7158203, -0.3293457, 0.703125, -0.75097656, 2.7382812, 1.9628906, -1.1992188, -1.1083984, 2.1171875, 1.4257812, 0.9824219, 0.16845703, -1.2255859, 2.6386719, 1.3222656, -0.37646484, 0.69873047, -1.1259766, 0.46826172, -0.33081055, 0.13476562, 0.3779297, -2.6132812, -0.7348633, 1.1181641, -4.1210938, -0.27392578, 0.0110321045, -0.46875, 0.6557617, 0.5498047, -0.36401367, 0.51416016, -1.0429688, 1.765625, -2.2109375, 1.1875, -1.7382812, 0.1262207, 0.12854004, -1.1386719, -0.27294922, 1.2734375, -1.1738281, 0.32006836, 1.3652344, 1.9248047, -0.08703613, -0.58740234, 0.2578125, 0.66552734, 2.4589844, 0.2680664, -0.5151367, -0.068359375, -2.640625, 1.3017578, 0.6977539, -0.27270508, 1.1708984, 2.1972656, 2.4335938, -0.8183594, 0.6098633, -1.828125, 0.5107422, -1.7841797, 1.7480469, 0.6640625, -1.9033203, -0.8613281, 2.15625, 2.9023438, -0.47192383, -1.7373047, -0.043823242, 0.39746094, 1.6123047, -1.1074219, -0.4272461, 1.2685547, 0.16345215, 2.2089844, 3.828125, 3.6191406, -0.9472656, 0.27514648, 2.9609375, -3.1328125, -2.109375, -1.0117188, -1.6201172, 0.026794434, 1.4658203, 1.5498047, 1.7529297, 0.98583984, -1.0029297, -2.7421875, 0.24853516]}, "B078RGBKN7": {"id": "B078RGBKN7", "original": "Brand: SHINESTAR\nName: SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included\nDescription: Get it, you can control the temperature of your appliance exactly what you want

          Description
          0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
          This is an essential part of converting your fire pit/table to a larger flame
          Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
          Comes with a brass orifice connector, 3/8\" Flare M x 1/8\" MNPT
          SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

          Feature
          Length: 5 feet/ 60inch
          Hose Connection: QCC1/Type1 x 3/8'' female flare fitting
          Outlet Outside Diameter: 5/8\"-18 UNF
          Orifice Fitting Connector: 3/8\" Flare M x 1/8\" MNPT Pipe Fitting
          Gas Flow: 120,000BTU/Hr
          Material: Durable rubber hose and solid brass fitting
          Warm Tips
          - In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
          - Please double check your propane appliance/adapter connection is 3/8\" Male flare fitting

          Note: For Outdoor Use Only.
          \nFeatures: \u3010Adjustable\u3011 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need\n\u3010Multi Purpose\u3011 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u3010Well Made\u3011 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security\n\u3010Standard Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Extra Bonus\u3011 Comes with a brass orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "embedding": [-1.3125, 2.8203125, 1.2910156, 0.26245117, 0.089416504, 0.17895508, 2.0527344, -0.80810547, 0.92333984, -0.4921875, 0.54785156, 1.8632812, 1.5068359, -2.4023438, 2.1855469, 0.7128906, 0.2064209, -0.16845703, 0.67041016, 2.40625, 1.7177734, 0.87841797, 2.1074219, -1.2929688, 2.7460938, -0.7841797, 3.3046875, -2.6191406, 0.6171875, -2.3847656, 1.6972656, 2.1035156, -0.20446777, -0.118652344, -2.6386719, -0.2076416, -0.7758789, 0.28198242, -2.1484375, -0.03945923, -0.6699219, 0.18383789, 2.2246094, -0.7084961, -2.3398438, 1.2822266, 0.68066406, -0.19299316, 0.0069084167, 1.0800781, 1.6972656, -0.8696289, 0.093322754, 1.3046875, -0.105163574, 0.21716309, 0.16210938, -2.8769531, 1.8183594, 1.5, 2.8535156, 0.091918945, -2.2949219, 1.4130859, -0.2734375, -0.1607666, 0.14428711, 0.5209961, 1.1162109, 0.9663086, 0.9301758, -0.1427002, 0.23278809, -0.6870117, -0.5678711, 0.47070312, -3.1484375, 0.21276855, 3.4335938, -0.13879395, -0.8408203, 1.4775391, 1.8632812, -1.3720703, 1.7832031, 0.1940918, -2.2167969, 0.57177734, 2.5800781, 1.5976562, -1.6767578, 1.9873047, -2.8046875, -4.8867188, 1.9257812, 1.1396484, 0.44921875, -0.33374023, 0.8540039, 0.07727051, -1.9482422, -1.4873047, -0.5805664, 1.0546875, -2.2480469, 1.1816406, -0.51953125, 0.9199219, -2.9140625, -0.296875, -0.49560547, 0.7558594, 2.0214844, -1.84375, 1.1533203, -2.9628906, -0.48583984, -1.2929688, 2.046875, 0.69970703, 1.859375, 0.4506836, -0.73876953, 0.8120117, 0.26757812, 0.66748047, -0.47045898, -1.0048828, 2.5644531, -1.96875, -1.0917969, -3.3613281, 1.9931641, -0.60253906, 0.5654297, -2.8828125, -0.7060547, -1.8017578, -2.6425781, -0.4724121, -3.25, 0.19396973, 1.6679688, 0.03164673, -2.8320312, 0.8125, -2.203125, 0.5546875, 2.3417969, -1.6660156, 2.203125, -1.1337891, -1.3525391, -1.9990234, 2.1914062, 2.0585938, 0.29833984, -1.1201172, 2.2929688, 0.90722656, 1.3056641, -1.4892578, -2.4648438, 2.4277344, -0.42163086, -3.2226562, 0.19921875, 0.08795166, -1.8867188, 1.3134766, 0.21789551, -2.921875, 0.113586426, 0.67285156, -0.8076172, -1.2412109, 1.2324219, 2.0078125, 1.6533203, 1.0771484, -3.2226562, -2.3203125, 0.89746094, -0.65966797, 0.0713501, -0.7158203, -1.8144531, -0.46240234, 1.4599609, -1.1894531, -1.921875, -0.2208252, -0.17407227, 0.7055664, 0.40161133, -2.8085938, -1.9853516, -1.5068359, -1.0009766, 0.8027344, -2.4980469, -0.59033203, -0.1895752, 0.28076172, -1.8457031, -0.19421387, -0.8666992, 1.8828125, 1.1015625, 3.8652344, 0.0029506683, -1.3623047, 0.37597656, -0.34399414, 0.38671875, -1.9423828, 2.171875, 0.84375, 0.39868164, 1.0322266, -0.89404297, 0.53515625, 0.35498047, 1.4013672, 2.3945312, 1.7353516, -1.2539062, 1.4326172, -0.7241211, -1.6513672, 2.8652344, 1.1982422, -0.37304688, -0.4008789, -0.8232422, 2.8984375, 1.0634766, 0.9213867, 0.60058594, 1.8330078, 0.7163086, -1.0771484, -0.4814453, -0.35888672, -1.3076172, -0.28076172, -1.0458984, 1.0058594, 0.9550781, -0.023162842, 0.7910156, 0.7207031, -0.5551758, -0.359375, -0.054656982, 0.4658203, 0.38500977, 2.1289062, -0.2770996, -1.3261719, 2.90625, 1.7089844, -0.17553711, 3.0175781, -0.10272217, -0.20776367, 1.9951172, -1.4902344, -0.5527344, 1.2880859, -0.47216797, 1.4746094, 2.5058594, -0.47875977, 0.02998352, 0.6826172, -1.8613281, 1.9345703, 1.8378906, 0.70214844, 1.1171875, 0.35498047, 1.9101562, -2.4375, 2.6171875, 1.6132812, 1.8398438, -0.97216797, -1.1865234, 0.9482422, 4.3945312, 0.003742218, -3.3339844, 0.99121094, 0.91064453, 0.7055664, 1.3574219, 1.4902344, 1.2695312, -0.34228516, -0.4272461, 1.8945312, -0.6982422, 0.23364258, 2.2910156, -0.040039062, -0.017425537, -0.05911255, -0.32836914, 1.7783203, -1.8583984, -1.2539062, -2.1777344, 2.8691406, -2.46875, -2.8398438, 0.25048828, -1.1650391, -0.14550781, 2.1503906, 0.54589844, 1.0742188, 0.94384766, -0.7524414, -0.41748047, 0.8847656, -0.8774414, 1.7001953, 1.7998047, -1.2333984, -1.3896484, -1.5253906, 0.03353882, -1.9970703, -2.6914062, 0.78222656, -2.6757812, -1.6787109, 0.8041992, -2.6875, -2.2285156, -0.5810547, -0.5576172, 0.9941406, 0.56591797, -1.4492188, -1.0380859, 1.2822266, 0.70947266, 0.055236816, 0.09881592, 3.1738281, -0.56884766, -2.8476562, -0.046844482, -0.9199219, -0.44067383, -0.32470703, -2.8496094, 0.6088867, 1.4189453, -0.13879395, 1.0166016, 1.1142578, 1.4287109, -3.0644531, 0.4663086, -2.65625, -1.2041016, -0.36108398, 1.6894531, -1.3720703, 0.6821289, -2.1542969, -1.7675781, 1.2939453, -1.6953125, 1.9560547, -1.5478516, 3.421875, -2.7480469, 0.6845703, 0.78759766, 0.65625, -2.8105469, 0.546875, -1.2724609, -1.0556641, -1.8847656, -2.9472656, -0.029846191, 0.14343262, 0.20056152, 0.02027893, -1.4785156, -1.0546875, 0.0748291, 1.0175781, -2.6621094, 0.4868164, -0.22387695, 0.55859375, -0.43115234, 0.7026367, -0.0048179626, -1.7587891, -1.0556641, 1.59375, 1.2851562, 0.13745117, -0.11383057, 0.88720703, 1.5771484, 0.62353516, -0.60546875, -1.8974609, 1.1816406, 3.1347656, -1.9248047, 1.3310547, -1.6806641, 0.029449463, -2.3730469, -0.88964844, 1.8613281, 1.2890625, 3.0683594, -0.40893555, 0.07659912, 0.11682129, 0.7607422, -1.6435547, -1.3789062, 1.046875, 4.3046875, -1.9873047, -1.1386719, -0.09649658, 1.4072266, -2.7792969, 0.1784668, 0.3503418, 0.36254883, 2.7734375, 0.6567383, 1.3144531, -2.0898438, 0.46044922, 1.234375, 1.4013672, -0.36816406, 0.49023438, -0.38134766, 0.9819336, -0.39526367, 1.4746094, 2.9746094, 0.49975586, 2.4003906, 0.9716797, 1.3730469, -0.2602539, 0.328125, -0.20178223, 0.59716797, 0.09320068, 1.421875, 0.41357422, 0.2709961, -1.3876953, -0.06365967, 1.9677734, -1.1308594, -0.07232666, 2.1679688, 1.3369141, -1.1884766, -0.8198242, 0.16601562, -0.3137207, -1.8525391, 0.4807129, 0.06555176, 0.4855957, 2.0078125, -0.11407471, 1.1894531, -1.7207031, 2.4277344, 0.19592285, 0.4453125, -1.2578125, 0.3774414, -3.0449219, -1.5478516, -1.3457031, -3.484375, -1.1894531, 1.6240234, 1.0107422, -0.9868164, 0.8227539, -1.1982422, 0.82714844, 1.4267578, -1.4287109, 0.8261719, 1.1035156, 0.25683594, -0.3305664, 0.44873047, 1.5820312, -0.12854004, -3.0449219, 0.13439941, -1.1748047, 0.22094727, 0.28515625, 1.3535156, -2.7851562, 0.37109375, 0.32128906, 1.2236328, -1.0205078, 3.8203125, -1.0751953, -1.5146484, 2.3398438, -3.0878906, -2.0957031, -1.9296875, -4.265625, -0.060272217, -2.84375, 0.034088135, 2.3613281, 0.17834473, -0.1920166, 0.38623047, 2.1523438, -2.1445312, -0.88671875, 0.45214844, 1.8320312, -2.046875, -0.84521484, 3.2226562, 0.09460449, -1.0410156, -1.6308594, -0.50878906, -1.6767578, -0.72753906, 0.97216797, -2.0117188, -1.3261719, -0.89453125, -0.19152832, -0.3630371, -2.0859375, 1.3232422, -0.43554688, -0.87402344, -2.2734375, 2.2949219, 0.36743164, 0.07867432, -1.1748047, 3.6601562, 2.2246094, -0.5917969, 0.5151367, 1.1181641, 2.6464844, 0.44677734, -1.5527344, 0.22521973, -0.030426025, 0.56689453, -0.46313477, -0.22717285, 0.77441406, -1.9433594, 2.3320312, 0.45874023, 1.0830078, 1.6298828, 0.7988281, -3.2792969, 0.59472656, -0.77685547, -0.48291016, -0.12231445, -0.2998047, -1.3818359, -2.9628906, 0.7836914, -1.9619141, -0.42895508, -1.2373047, 0.04537964, -0.6855469, 2.4667969, -0.21081543, -0.62890625, 1.1640625, -1.1132812, -1.0019531, -0.828125, 0.5175781, -2.0800781, -0.74658203, -1.0917969, -0.012397766, 1.3105469, 0.9277344, -0.31933594, -1.3505859, 0.66064453, -0.79345703, -0.15783691, 0.28076172, 0.98779297, -1.0371094, 0.15979004, 1.484375, -1.0410156, 2.7578125, -0.53466797, 0.30810547, 0.2055664, -0.8745117, -1.3710938, 0.3256836, 2.6855469, 1.5917969, 0.52783203, 1.2460938, 0.6142578, 2.1992188, 1.3632812, -0.35595703, 0.1973877, -1.2412109, 2.3515625, 0.4543457, 1.2685547, -1.1679688, 0.31518555, 0.52197266, 1.8574219, 1.1542969, 2.8242188, -0.020324707, -1.4423828, 1.3339844, 0.38256836, -1.4501953, -0.7060547, -0.07543945, -1.7519531, 2.359375, 0.12237549, -2.1113281, -0.59814453, 2.984375, -1.4560547, 1.3896484, -0.24291992, -1.2236328, -0.56689453, -2.3398438, -1.2285156, -0.00793457, -0.9526367, 0.69384766, -2.4296875, 0.41601562, -0.93652344, 1.3017578, 0.7578125, -0.67626953, -1.1464844, 0.036071777, -2.2578125, -0.3779297, -1.4619141, -0.8027344, -2.1230469, -0.13769531, 2.8671875, 1.7568359, -0.044128418, -1.0878906, 0.5263672, -0.23181152, -1.0898438, 0.13110352, 1.9140625, -0.43139648, 0.13806152, 0.86279297, -0.29052734, -0.4111328, -1.2890625, -1.7197266, -2.2929688, 3.0761719, 2.0058594, 2.4667969, 0.5136719, -0.15002441, -1.5996094, -5.5742188, -0.8100586, 2.1875, -0.020141602, 0.27172852, -2.3554688, -0.064941406, 1.6240234, -1.5429688, 0.8798828, -1.0742188, 0.74560547, -0.68652344, -0.23400879, -1.3291016, -0.0970459, 0.29785156, -0.41625977, 0.15893555, 0.34350586, 0.12042236, -2.5390625, -2.265625, 2.0449219, -2.2695312, 0.23095703, 1.1582031, -0.6381836, -0.75146484, 2.359375, 1.5585938, -2.1796875, 1.7441406, -3.5078125, 0.7182617, 0.93896484, -2.8261719, 1.6181641, 1.4697266, -1.4814453, 1.9824219, 1.4755859, 1.8574219, -1.2089844, -0.97509766, 0.5126953, 0.09802246, -0.6298828, -3.84375, -0.8432617, -0.3623047, 2.3242188, 1.0244141, -0.5283203, -0.011909485, -1.6503906, -3.625, 0.5019531, -1.1630859, -0.56103516, -0.38989258, 1.8955078, 1.2685547, -1.0878906, 0.99365234, 1.5419922, 0.21069336, -1.3740234, 2.1445312, -0.7402344, 3.0605469, 1.5878906, -0.7895508, -1.9980469, -2.0976562, 1.7714844, 2.7207031, -1.8544922, -0.8105469, 0.41088867, 0.6088867, 0.40942383, -0.77441406, 1.0488281, 1.9199219, -0.24963379, -0.4375, -0.33569336, 1.4443359, -0.72753906, 0.7783203, 1.1152344, 1.2919922, -1.4628906, 1.1904297, 1.4345703, -2.5996094, 1.3974609, -2.0410156, 0.7260742, -0.77441406, -2.640625, -0.05984497, -2.9335938, -0.51171875, 0.41992188, -2.2597656, -2.9570312, 1.5693359, 0.6010742, 0.39208984, 0.5576172, 2.03125, 1.2373047, 0.25463867, 0.8232422, 0.83691406, -0.10675049, -0.04272461, -2.3964844, 0.22363281, 2.1386719, -1.2646484, 0.43969727, 2.2304688, 2.0605469, -1.0166016, 0.12536621, 1.1689453, 3.2714844, 0.6635742, 3.5019531, 2.6113281, 0.43823242, 2.6445312, 0.2783203, 2.4882812, 3.1464844, -0.1607666, 0.53027344, 1.5, 0.13452148, 0.9301758, 0.51464844, 0.15893555, -1.0136719, -0.024612427, 0.2866211, 1.8701172, 1.9736328, -2.8730469, -1.2558594, -0.9213867, -1.9267578, -3.2714844, 1.2832031, -0.9067383, 1.0185547, 0.94970703, -0.077941895, 1.7480469, 1.4736328, -0.76220703, -0.953125, -1.8623047, 2.6972656, -2.0839844, 0.15026855, -1.4746094, -2.109375, 0.9814453, 4.5117188, 1.0615234, 0.7651367, 0.60498047, -0.8588867, -0.6269531, 0.71728516, 1.6279297, -2.0273438, -0.5654297, -0.7133789, 2.2519531, 0.50390625, -1.1279297, 1.2099609, -0.8730469, -2.2519531, -3.8554688, 3.0351562, -0.16992188, -0.0859375, -0.44750977, -4.3359375, 2.8125, -1.6953125, -0.0013237, -1.2285156, -0.953125, -0.119262695, -0.5161133, 0.37890625, -1.3085938, -0.57714844, 1.9345703, 0.19714355, -1.1621094, 0.07373047, 1.4609375, 1.0605469, 0.38354492, -0.18640137, 0.92578125, -0.8618164, -1.046875, 3.8398438, -0.48046875, -2.734375, -0.23718262, 2.5253906, 0.9291992, 1.09375, -0.7402344, 0.4326172, 0.39208984, 1.3164062, -1.0458984, -0.09741211, -1.0107422, -1.0585938, -0.5683594, 0.41674805, -0.66015625, -0.33544922, 0.14038086, 0.51660156, -0.71240234, 1.4384766, 1.3662109, -1.9824219, 1.7226562, 1.1962891, -1.3173828, -1.7197266, -0.8276367, 1.5126953, -1.4013672, -1.2822266, -0.36083984, -0.609375, -0.38549805, -1.5556641, 0.19909668, -0.26367188, 0.5673828, -0.08129883, 0.828125, 0.30444336, -1.8583984, -0.21923828, -1.2822266, -1.0283203, 2.5488281, 0.24938965, 2.0273438, -0.6953125, -1.3447266, 0.2421875, -2.0585938, -1.4267578, 0.5800781, 1.3378906, 0.06713867, 0.44702148, -1.2148438, -3.4414062, -0.55078125, -1.5439453, 2.0976562, -0.09106445, -2.03125, 0.671875, 0.3449707, 2.0058594, 0.23046875, 0.65234375, -0.009849548, -0.38061523, 1.4931641, -2.4824219, 0.90478516, -1.4365234, -0.03387451, 0.7416992, 4.1054688, 1.3623047, -0.6772461, 0.0018815994, 2.3710938, -0.546875, -2.4960938, -0.17871094, -1.3652344, 0.20202637, 1.2294922, 2.0546875, 1.6357422, 1.5859375, -1.9990234, -0.609375, -0.57666016]}, "B07D9GZ43Y": {"id": "B07D9GZ43Y", "original": "Brand: SHINESTAR\nName: SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit\nDescription: ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your're trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves\nFeatures: \u3010Quick & Handy\u3011 Propane hose extension is designed for extending the propane line on gas appliances.\n\u3010Multi-Purpose\u3011 Works with RV, griddle, grill, stove, fire pit, heater and so on.\n\u3010Exclusive Material\u3011 Made from braided stainless steel and solid brass, rust-proof & leak-free.\n\u3010Perfect Length\u3011 6-foot long, more flexible to move grill anywhere you want.\n\u3010Brass Fittings\u3011 3/8 inch female flare fittings on both ends.\n", "embedding": [-0.80078125, 1.6484375, 0.85595703, -0.6088867, -1.0488281, -0.34936523, 1.7050781, -1.2480469, 2.2441406, 0.22741699, -1.1796875, -0.08404541, 1.0615234, -4.6679688, -0.10601807, 0.44970703, -0.5395508, -1.2539062, 1.2324219, 1.4257812, 2.5429688, -0.31445312, 1.1933594, -0.054260254, 1.8046875, -2.4199219, 3.6328125, -1.8720703, 1.0625, -0.06329346, -0.14367676, 1.140625, -1.0078125, 1.0009766, -3.7246094, -0.81152344, -1.5371094, -1.3876953, -3.4433594, -2.21875, -2.0371094, 0.9165039, 3.2675781, 0.5932617, -2.2851562, 1.0742188, 0.95654297, 1.9492188, -0.5839844, -0.3388672, -0.6220703, -0.44262695, 0.21679688, 0.43530273, -1.4462891, -0.71435547, -1.1894531, -3.1328125, 1.8046875, 1.1992188, 1.6503906, -0.4050293, -3.0976562, 1.4238281, -0.24633789, 0.93847656, 1.3798828, 0.6923828, -0.69384766, 0.74609375, -0.34106445, 0.7651367, -0.18237305, -0.99902344, 1.1953125, 0.8515625, -3.3515625, 1.3359375, 3.0332031, 1.0537109, -0.9345703, 2.5351562, 0.5083008, -0.88378906, 2.4160156, -0.7055664, -3.4199219, 0.46606445, 1.5253906, 1.6855469, -1.5126953, 3.4433594, -2.7636719, -3.2929688, 1.1865234, -1.1347656, 0.8022461, 0.8173828, 1.3701172, -0.35766602, -0.4909668, -1.3720703, -0.6489258, -0.17285156, -2.1386719, -1.1708984, -0.44091797, -0.5732422, -0.6347656, 0.057525635, 0.37939453, -0.7128906, 1.2685547, -0.8232422, 0.6220703, -2.6894531, -0.43725586, -1.375, 3.203125, -0.27929688, 2.140625, 1.9609375, -0.21289062, 0.45117188, 1.7900391, 1.2255859, 0.08947754, 0.50439453, 2.7675781, -2.3085938, -0.8671875, -3.1132812, 1.9248047, 0.0011720657, -1.6552734, -2.984375, 0.5493164, -0.050964355, -2.6894531, -0.09906006, -2.7460938, -0.6381836, 2.1679688, -0.34545898, -4.4921875, 0.19885254, -2.4238281, 0.47387695, 1.4375, -1.5478516, 1.9296875, -0.5786133, -0.86328125, -1.2724609, 2.4785156, 1.6308594, 2.828125, -1.6181641, 2.8066406, 2.0449219, 2.0859375, 0.062438965, -2.6835938, 3.046875, -0.0736084, -4.515625, 0.39648438, 1.40625, -0.50683594, 0.33984375, -0.45703125, -3.4980469, 0.47998047, 0.5292969, -0.48120117, -1.6650391, 0.953125, -0.75439453, 2.46875, 1.5283203, -2.2167969, -1.6005859, 1.6757812, -2.6523438, -1.0849609, 0.6645508, -1.3408203, -1.9150391, 0.50683594, -0.21008301, -1.7167969, 0.6098633, -0.46313477, 0.7128906, -0.94677734, -2.8515625, -1.4169922, -1.2148438, 1.0664062, 1.6308594, -2.9785156, 0.27490234, -0.09680176, 1.3886719, -1.2080078, -0.6230469, -0.19592285, 0.8964844, 0.35351562, 2.0117188, 0.7998047, 0.16101074, 0.77197266, -1.359375, 0.11004639, -1.3662109, 2.3828125, 2.1621094, 2.140625, 0.7709961, 0.21838379, 1.4013672, 0.52441406, 0.24914551, 1.3242188, 0.101257324, -1.453125, 0.7319336, -0.85839844, -1.703125, 2.9589844, 1.0947266, -1.640625, 0.44189453, 0.26220703, 2.6152344, 1.7734375, -0.61083984, 1.1689453, 3.2988281, -0.16674805, -0.5600586, -1.5888672, -0.5449219, 1.1865234, -0.5786133, 0.9042969, -0.78466797, 1.8769531, 0.43481445, 1.2978516, -0.59521484, -0.5600586, 0.7011719, 0.37548828, -0.13305664, -0.25830078, 2.140625, -0.5888672, -0.26220703, 1.2216797, 1.1552734, 0.6064453, 1.5244141, 0.38964844, 0.13537598, 2.8320312, -1.1367188, -1.6533203, 1.7509766, -2.6113281, 1.8164062, 0.65527344, -0.2565918, -0.5078125, 1.6640625, -1.5595703, 1.9052734, 0.15686035, 1.390625, 1.640625, 0.6035156, 1.3994141, -1.0634766, 1.0205078, 1.0654297, 2.8574219, 0.059387207, -0.9794922, 2.3417969, 3.40625, 0.39746094, -0.76416016, 1.9472656, 1.8310547, 2.0976562, 0.9746094, 2.9824219, 0.41088867, -0.6591797, -0.16418457, 2.0898438, -0.30151367, 1.8427734, 0.73046875, 0.29589844, 1.2753906, -1.4306641, 1.8525391, 1.5332031, -0.30078125, -0.13085938, -1.9931641, 1.0898438, -1.703125, -2.1816406, 2.0683594, -0.4597168, -0.24633789, 2.3789062, -1.5693359, -1.5341797, 0.3684082, -1.0537109, -1.0537109, 1.8339844, -2.6835938, 2.4023438, 2.8710938, 0.8129883, -0.1763916, -1.0449219, -1.1650391, -2.6464844, -1.7373047, -0.4951172, -0.10015869, -1.1884766, 0.9033203, -1.6650391, -1.4667969, 0.14831543, 1.1933594, 2.8105469, 0.03225708, -1.2929688, -0.1998291, 2.2929688, 1.1757812, 0.30249023, 0.05404663, 3.2089844, -0.3935547, -1.6953125, -0.9819336, -0.75390625, -0.93603516, 0.35253906, -2.1777344, -0.22229004, 1.7363281, 0.86621094, 0.81103516, 1.1103516, 0.41967773, -3.4101562, -1.3193359, -3.0195312, -0.39990234, 0.33081055, 1.5117188, -2.1582031, 1.0888672, -0.8022461, -2.6621094, 1.8037109, -1.6064453, 0.546875, 1.8330078, 1.7011719, -3.1289062, -0.099487305, 0.66064453, 1.7363281, -1.5693359, -0.72802734, 1.53125, -1.9033203, -2.7109375, -2.6992188, -0.3100586, 0.5410156, 0.91064453, 0.36279297, -1.5166016, -1.0957031, -0.69628906, 0.25024414, -2.7890625, -0.2524414, -0.16442871, 1.1757812, -0.5913086, -0.011421204, -1.5185547, -1.0742188, -0.48486328, 1.2041016, 0.34179688, -1.1552734, -1.2285156, 0.92871094, 0.18078613, -0.23913574, 0.17919922, -2.1425781, 0.02746582, 2.3339844, -0.69091797, 0.7446289, -1.5029297, 0.45776367, -1.9326172, -1.5732422, 2.1152344, 0.5932617, 0.5571289, -0.5961914, -0.9589844, 2.1953125, 0.3095703, -1.9755859, -2.015625, -1.0625, 4.1953125, -2.4023438, -1.4521484, 0.5180664, 0.19934082, -3.5566406, 1.2285156, -0.08215332, -1.3027344, 1.4228516, 0.95996094, -0.39575195, -1.0029297, 2.0820312, 0.7817383, 1.2724609, 0.39990234, 0.79345703, -1.0605469, -1.5166016, -0.11907959, 0.95410156, 1.8769531, -0.38964844, 0.78515625, -0.04598999, -0.8671875, -0.16809082, 0.3293457, -0.29907227, 0.85009766, 1.2382812, 1.0439453, -0.3635254, -1.3232422, -1.8212891, 0.5288086, 1.7753906, -1.609375, -3.0078125, 0.98535156, 1.5019531, -1.0859375, -0.22497559, -1.1865234, -0.25512695, -2.2421875, -0.56152344, -1.2529297, 0.11566162, 1.2626953, -0.8129883, 1.1914062, -1.4306641, 3.8007812, -0.15844727, -0.47216797, -2.0058594, -1.1845703, -1.3242188, -0.8730469, 0.2800293, -1.8691406, -2.3769531, 2.1015625, 2.9746094, -2.4433594, 0.50341797, -1.4794922, 0.50878906, 0.8232422, -1.7636719, -0.47045898, -0.62646484, 0.05255127, 0.035614014, 0.26464844, 0.6142578, -0.8339844, -1.3300781, 1.125, -1.21875, -0.74121094, 0.5673828, 0.4897461, -2.4902344, 0.60058594, -0.18432617, -0.22277832, -1.3242188, 3.9707031, -0.5131836, -1.1865234, 1.21875, -2.0839844, -1.0917969, -1.8232422, -5.0625, 0.8959961, -1.0332031, -0.29858398, 2.9101562, 0.43774414, -0.65185547, 0.14404297, 0.4790039, -2.015625, -1.0742188, -0.2409668, 0.27368164, -1.5634766, -1.5195312, 2.2363281, -0.21252441, -2.7832031, -1.1708984, 0.27270508, -1.7871094, -0.91064453, 1.4863281, -0.9526367, -0.62353516, -1.4541016, 0.53027344, 0.20898438, -0.9682617, 0.29614258, -2.34375, 0.34204102, -3.4648438, 1.3095703, 2.1582031, 0.7792969, -0.953125, 2.8925781, 1.0273438, -1.9199219, -0.73291016, 0.3371582, 4.0625, -0.4855957, -2.9121094, -0.10656738, -0.9067383, -0.3647461, 0.23632812, 1.3876953, 1.5527344, -1.2509766, 3.03125, -0.9189453, 0.9057617, 1.8984375, -0.13342285, -5.8710938, -0.054260254, 1, -1.2246094, 0.7290039, -1.4824219, -1.5332031, -2.6933594, 1.0537109, -1.5830078, -0.40771484, -2.6582031, 1.3369141, -2.1816406, 0.6850586, 0.07348633, -0.06896973, 1.046875, -0.099365234, -0.44091797, -1.8378906, -1.3388672, -2.4492188, 0.9169922, -2.9375, -0.22131348, -0.36157227, -2.1777344, -0.5336914, -0.5292969, 0.42407227, -1.3105469, -2.0507812, -0.07543945, -0.07446289, -0.47583008, -0.52246094, 1.3369141, -0.44506836, 3.5410156, -0.0597229, 1.7929688, 0.69384766, -0.17614746, -0.63378906, 1.234375, 2.6992188, 1.9570312, 0.2783203, 0.33618164, 0.83203125, 3.3574219, 0.87109375, 0.63916016, 2.2109375, -0.64404297, 0.5004883, 0.56640625, 0.22338867, -0.83203125, 0.8120117, 0.9453125, 1.4648438, 1.2744141, 2.0859375, -1.2265625, -0.9042969, 2.0878906, 0.14538574, -2.4589844, -0.24511719, 0.5756836, -0.8769531, 2.4433594, -0.7246094, -2.1171875, 0.62890625, 3.6992188, -0.76416016, 1.5146484, 0.70947266, -2.1953125, -1.2021484, -2.8730469, -0.84765625, 0.33984375, -2.046875, 0.32788086, -2.7734375, 1.2958984, -0.6411133, 2.1699219, 1.0439453, -0.1842041, -1.3857422, 0.10284424, -3.0859375, -0.70458984, -1.3964844, -1.5527344, -2.6308594, 0.36279297, 0.5600586, 2.0957031, -0.08514404, 0.20568848, -0.21313477, -0.14440918, -1.2119141, 0.2409668, 2.1484375, 0.06781006, -0.17687988, 2.6113281, 0.5913086, 0.54785156, -0.32958984, 0.05493164, -2.1679688, 1.5585938, 1.8232422, 1.2011719, -0.30029297, -1.9394531, -0.84033203, -6.3164062, -0.36450195, 1.0615234, -0.51904297, 0.70947266, -1.2041016, -0.43359375, -0.12109375, -0.05670166, 0.052825928, -0.49023438, 0.90478516, -1.0341797, 0.6948242, -2.3007812, 0.38720703, 0.5205078, 0.14318848, -2.1308594, 0.27124023, 1.8095703, -1.3076172, -1.5458984, 2.0976562, -2.6582031, -0.4814453, 1.3681641, -1.5917969, -0.8203125, 1.3525391, 1.0585938, -0.85839844, -0.5654297, -1.6855469, 1.6035156, 1.3378906, -2.1582031, 0.7236328, 0.34643555, -0.49389648, -0.14575195, 1.7802734, 2.1171875, 0.23693848, -0.51416016, 0.85595703, 1.7050781, -1.4931641, -2.0371094, 0.5756836, 0.08660889, 2.8242188, 1.0341797, -0.12963867, -0.6948242, -1.890625, -2.0371094, 0.5126953, -1.5537109, 0.60058594, 0.53027344, 2.8359375, 0.74902344, -0.71435547, 2.3671875, -0.33081055, 1.7998047, -0.076049805, 1.5283203, -1.2255859, 3.1074219, 0.21704102, -1.3056641, -4.3085938, 1.0400391, 2.5039062, 3.8691406, -0.24572754, -1.3007812, 0.34033203, -1.5029297, 0.41186523, -1.2041016, -0.55908203, 2.25, -0.48486328, -1.3925781, -0.51904297, -0.99853516, -0.8417969, 0.7216797, 0.95996094, 0.4741211, -0.8574219, -0.057800293, 1.3134766, -3.1113281, 0.29077148, -0.8125, 1.0175781, -0.05682373, -1.0380859, 0.1854248, -3.2792969, -0.8720703, 0.546875, -1.5175781, -3.8613281, 2.3417969, 0.9067383, 0.99121094, -0.31176758, 1.7832031, -0.6459961, 0.44067383, 0.96533203, -0.29467773, -1.0390625, -0.40600586, -2.4941406, -0.13806152, 2.1679688, -0.33569336, 1.0429688, 0.6459961, 0.6171875, 0.8276367, 0.92285156, 0.85009766, 1.7724609, 0.32739258, 3.0664062, 1.9707031, 0.5332031, 2.3007812, 0.24902344, 2.1464844, 1.0917969, -2.8496094, 0.82666016, 1.7832031, 1.3085938, 0.94433594, 0.14526367, 0.9277344, -0.044067383, 1.5419922, -0.88671875, 1.0439453, 1.9619141, -3.3339844, -0.80371094, -0.31933594, -1.8232422, -1.9736328, 1.9277344, -2.0761719, 1.2685547, 2.3613281, 0.7661133, 0.6875, 1.0634766, -0.7290039, -1.0751953, -2.6757812, 3.1640625, -1.1347656, -0.72998047, -0.4753418, -1.0771484, 2.3515625, 3.4023438, 0.14697266, 0.7519531, 0.18371582, -1.4697266, 1.09375, 1.1826172, 0.5600586, 0.91552734, -0.7675781, -1.2392578, 0.30810547, 0.70996094, -1.1445312, -0.9008789, -0.70654297, -2.3457031, -4.1054688, 4.140625, 0.64453125, -1.8544922, -0.3239746, -3.1386719, 0.6538086, -2.765625, 0.6826172, -0.9941406, -0.8491211, 0.6899414, 0.3786621, -0.43310547, -1.078125, 0.51708984, 1.265625, -0.12408447, -1.4316406, 0.43432617, 1.3984375, -0.20690918, -0.44873047, 0.88427734, -0.83935547, 0.5004883, -0.54296875, 4.3085938, 0.11883545, -1.5380859, 1.7753906, 2.6679688, 0.70996094, 0.9350586, 0.5961914, -1.7294922, 1.6748047, -0.77441406, 0.1661377, 0.17773438, -2.5097656, -1.2470703, 1.0234375, 2.8554688, -0.11413574, -0.1427002, -0.6352539, -0.18310547, -1.6591797, 3.3359375, 1.6757812, -3.3027344, 2.046875, 3.5546875, -1.1757812, -2.0214844, 0.25341797, 3.0996094, -0.2697754, 0.96533203, 0.45166016, 0.11462402, 1.1298828, -0.33081055, 0.6220703, 0.07354736, -1.1074219, -1.7070312, 0.15917969, -0.058410645, -0.6567383, -0.049438477, -1.2861328, 0.5498047, 4.2539062, 2.0800781, 2.3105469, 0.06768799, -1.3779297, -0.17651367, -2.59375, -1.7900391, 1.2607422, 1.0292969, 0.75634766, 0.08337402, -0.84521484, -2.8242188, -0.36669922, 2.0351562, 0.78466797, 1.4013672, -2.1992188, 0.60791016, 2.6660156, 1.8144531, 0.9892578, 1.7626953, -0.6850586, 0.57421875, 2.2382812, -0.8515625, 2.1992188, -2.3847656, 0.53271484, 0.5957031, 3.3242188, -0.10668945, -0.1038208, 0.7739258, 0.7504883, 0.3708496, -1.2246094, 1.2246094, -0.11291504, 2.5390625, 1.0234375, 3.3222656, 1.6611328, 1.3505859, -1.125, -2.2109375, 0.049194336]}, "B0771WRDGT": {"id": "B0771WRDGT", "original": "Brand: Concord\nName: Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16\" Square\nDescription:

          The Concord single propane burner is built like a tank.

          Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

          For the holiday season, this is the perfect burner for your turkey fryer.

          To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go\u2026.

          For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






          Measurements: Burner Stand 16.5\" Wide x 16.5\" Height

          Burner head is 10\" Wide.






          Concord burners - make every outing count.

          \nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x16.5\".\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "embedding": [-0.57128906, 1.3974609, 1.6035156, 0.9301758, -0.34375, 0.2355957, 2.4375, -1.4384766, -1.9707031, 2.2089844, 2.3613281, -0.46728516, 0.68603516, -2.0996094, -0.8305664, 0.61376953, 0.09484863, -0.8105469, -0.49682617, 1.1513672, 2.0390625, 0.5678711, 2.3984375, -1.1347656, -0.81396484, 0.97216797, 2.2558594, -3.4335938, -2.2382812, -1.0419922, 1.4550781, -1.5107422, 0.6713867, 2.140625, -2.2148438, -0.14282227, -2.1054688, -0.8676758, -2.8378906, -0.7192383, -0.9243164, 1.1230469, 3.5761719, -0.68896484, -2.484375, -0.37939453, 1.4316406, 0.3005371, -1.0869141, 0.80371094, 0.2524414, -0.9145508, 1.2197266, 0.6430664, -1.4072266, 0.8955078, 0.7421875, -2.9414062, 1.5869141, 0.85253906, 2.0078125, 1.2412109, -1.2685547, 1.6337891, -1.1591797, -0.47094727, 0.02558899, 0.6074219, -0.18457031, 0.9604492, 2.9804688, -0.29223633, -1.3671875, -1.3632812, 0.10870361, 0.5263672, -3.3242188, 0.70947266, 2.0683594, 0.2758789, -2.0878906, 1.6259766, 2.7089844, -1.1259766, -1.2939453, 1.0107422, -1.0576172, -0.7871094, 0.5307617, 0.92041016, -0.64404297, 2.4726562, -1.9736328, -3.3886719, 1.8154297, -2.65625, 0.75, 1.3164062, 0.8647461, 1.5117188, -1.6474609, -0.17285156, -1.4208984, 0.32763672, -4.5351562, -1.4433594, 2.6347656, 0.6982422, -1.953125, 0.7890625, -1.6689453, -1.3056641, 1.5195312, 0.67626953, 1.7460938, 0.15905762, -2.2226562, 2.0917969, 2.5429688, -0.84277344, 3.4628906, -0.12976074, 0.8330078, -0.7241211, 0.28076172, 1.4404297, -2.3808594, 1.1992188, 3.0039062, -1.3691406, -0.49243164, -1.4072266, 3.5449219, 0.51416016, -0.8330078, -2.2050781, -0.08666992, -2.5136719, -2.46875, 0.8100586, -3.3125, 2.0234375, 1.3212891, 0.10021973, -3.7539062, -1.7607422, -0.18652344, 1.4189453, 1.3701172, -2.7246094, -0.5395508, -2.9902344, -1.0986328, -2.3027344, 1.4648438, 0.79833984, -0.12414551, -1.1230469, 3.7109375, 0.9941406, 2.0585938, -1.7128906, -1.3769531, 2.8984375, -1.1767578, -0.74072266, 1.7421875, 1.6796875, -1.9951172, 1.1875, 0.3166504, -1.2128906, -0.27514648, 0.48535156, 1.4003906, -1.1552734, -2.65625, 3.0683594, 1.3339844, -0.4699707, -3.1425781, -3.1933594, 2.2773438, 0.63720703, -0.671875, -1.1679688, 0.18981934, 0.025558472, 0.25073242, -2.8242188, -2.8359375, 0.67626953, -0.6176758, -0.95654297, -0.6069336, -1.8056641, 0.57128906, -2.6210938, -0.40234375, 2.8261719, 0.07910156, 0.054840088, -0.2442627, 0.72753906, -2.0605469, -0.88623047, -0.76220703, 0.56152344, 1.2949219, 3.921875, 1.9677734, -1.6220703, 3.1035156, 0.2512207, -1.6376953, -0.17590332, 1.21875, 1.4287109, 1.0625, 1.8310547, -0.15148926, -1.5117188, 2.1484375, 2.4863281, 2.4003906, 1.3037109, 0.81689453, -1.7480469, -1.4140625, -1.3554688, 1.8681641, -0.18688965, -1.4375, 1.8789062, -0.5366211, 3.1679688, 1.6132812, -2.2851562, 0.031066895, -0.32202148, 0.5288086, -0.5722656, -0.047302246, -0.6557617, -2.796875, 1.3486328, 0.3203125, 1.0498047, 3.15625, 1.1738281, -1.4140625, -3.0488281, 0.08972168, -0.8408203, -0.6513672, -1.3769531, 0.3762207, 1.1357422, -0.57666016, -3.4121094, 4.0507812, 2.0605469, -0.82958984, -0.73876953, -1.0849609, -1.3847656, 1.2519531, 1.1611328, -1.4121094, 1.4677734, 0.99316406, 0.45947266, 5.4101562, -1.5322266, 0.38232422, -1.9765625, -0.11785889, 2.96875, -0.47802734, 1.4941406, 1.3037109, -1.1855469, 2.0996094, -3.125, 1.5693359, 2.0195312, 2.0195312, -0.7729492, -1.3691406, -0.15466309, 5.5429688, -0.50634766, -2.5371094, 3.5859375, -2.4335938, 1.7275391, -0.99072266, 0.4572754, 1.015625, 0.068847656, -0.20922852, -0.2722168, -1.3925781, 0.89160156, -1.6777344, -2.8085938, 1.0947266, -2.2382812, 0.5527344, 0.22546387, -0.059020996, -1.0566406, -1.5537109, 2.5546875, -1.9208984, 0.62402344, 1.8046875, -4.4140625, 0.9086914, 3.03125, 2.0390625, 1.5058594, -0.91015625, -1.2792969, 0.95166016, 0.39526367, -0.87939453, 0.5966797, 1.0878906, -0.0904541, 0.072387695, -0.9057617, 0.6513672, -2.5722656, -2.3886719, -0.13391113, 1.0664062, -3.421875, 0.5498047, -1.71875, -0.46728516, 1.6367188, -3.1386719, -0.4934082, -0.71435547, -1.6367188, -0.2644043, -0.10803223, -1.015625, 0.48168945, 0.97021484, 0.6484375, -1.3955078, -3.1367188, -0.58935547, -1.8720703, 0.34375, 0.21899414, 0.018310547, 2.859375, -0.9536133, 0.31713867, -0.75341797, 0.79589844, -0.54296875, -1.9648438, 0.24841309, -2.6074219, -0.016082764, -2.8769531, -0.68652344, -0.3984375, 0.088256836, -2.3886719, -0.2154541, 1.8662109, -1.3701172, 5.015625, 1.4423828, 0.17553711, -0.3515625, -0.32739258, -0.020599365, -1.2763672, -3.9765625, 1.2021484, 0.11468506, -0.9980469, -2.5546875, -2.4179688, -0.33496094, -1.4042969, -0.043395996, -1.6777344, -0.6621094, -0.6699219, -0.8618164, -1.4199219, -0.66015625, 0.05834961, 0.86376953, -2.0488281, -3.9316406, -1.2490234, -1.1894531, -0.053985596, -0.4050293, 1.484375, 0.8613281, 1.2089844, 0.8569336, 2.1738281, 0.5654297, -0.49731445, -0.34521484, -3.4394531, 0.53564453, 2.3242188, 0.37304688, 1.4189453, -1.9814453, -0.11639404, -2.9453125, -0.95214844, 1.1962891, 0.19519043, 1.671875, 1.2470703, -0.7104492, 1.5019531, 1.3613281, -1.6455078, -1.8779297, -0.8535156, 2.4570312, -1.4785156, -2.0429688, 2.21875, 1.546875, -1.8740234, -0.1583252, 1.9599609, 1.1455078, 2.515625, 1.8857422, 2.953125, 0.024902344, 0.16601562, 0.5263672, 3.4101562, -0.4128418, 1.3056641, -0.13134766, 0.0071907043, 1.5703125, 0.9970703, -0.20788574, 1.1738281, 1.9482422, 2.0078125, 0.42114258, -3.7285156, 0.66552734, -0.22570801, 0.5854492, 1.125, 2.7382812, -0.49316406, -2.5664062, -3.953125, 1.6767578, 1.3671875, 0.32421875, -0.26098633, 1.0019531, -0.79589844, -0.27026367, 1.2890625, 0.39526367, 0.1887207, -0.13085938, 1.875, 0.95166016, 1.0097656, 1.7763672, -1.4775391, 0.099853516, -1.0292969, 0.013702393, -0.78564453, -2.1640625, 0.58154297, 1.4814453, -3.1484375, -3.5878906, -0.45532227, 2.3242188, -0.7294922, 3.6855469, 2.796875, -2.0449219, -1.0830078, -2.03125, -0.51953125, 2.5839844, -1.7529297, -1.0302734, -2.1757812, -0.3017578, -1.0869141, 0.66064453, 1.3857422, 1.3798828, -1.296875, 1.7607422, -2.9511719, -0.1517334, -0.22009277, -1.7822266, -0.59521484, 1.5507812, -1.1865234, -0.92333984, -2.3261719, 3.6972656, -1.2353516, 0.33081055, 2.5996094, -2.4101562, -0.074157715, -0.8388672, -4.1601562, 1.2685547, -0.12451172, -0.6972656, 1.9550781, -0.2705078, -0.47875977, 1.3779297, -0.10168457, -2.6132812, -0.6699219, -2.234375, 2.4042969, -3.375, -0.93896484, 2.1289062, 0.25097656, -3.0878906, -2.4511719, -0.34887695, -0.15539551, 1.5654297, 2.0996094, -1.5917969, 1.6220703, -0.5473633, 0.96435547, 0.36376953, -0.9082031, 2.3027344, -0.13586426, -1.2929688, -2.6777344, -0.7211914, 0.53808594, -0.54248047, 0.51220703, 2.1679688, 0.5209961, -1.046875, -0.5908203, 2.2597656, 2.2578125, -0.29589844, -1.7519531, -1.3037109, -0.19116211, -2.6484375, 0.8417969, -0.049804688, -2.8808594, -2.5625, 0.61572266, -0.11883545, 2.1621094, 2.8925781, -0.65185547, -0.03918457, -0.2055664, 1.7363281, -2.1621094, -0.67822266, 0.12347412, -0.7841797, -1.2119141, 1.8789062, -2.4238281, -1.0107422, -1.2578125, 0.921875, -2.0332031, 3.4277344, 1.1376953, 1.4482422, 1.6972656, -1.1230469, -1.7998047, 1.2138672, 0.5673828, 0.42236328, 1.8496094, -0.5283203, -0.95166016, 1.8945312, 1.4384766, 0.032165527, -1.1318359, 1.1523438, -1.3310547, -1.6503906, -0.87597656, 0.49682617, -2.6855469, 0.16186523, 0.25952148, -1.7070312, 2.5546875, -2.7910156, -0.8359375, -1.3554688, 1.5322266, -1.0546875, -0.7871094, 0.45166016, 0.37524414, 0.64453125, -0.39282227, -0.0871582, -0.89404297, 2.9453125, 0.7993164, 2.4921875, 1.8642578, 0.42993164, -0.1484375, 0.23718262, 0.29345703, -0.51660156, 0.022735596, 0.03918457, -0.11022949, 3.0683594, 2.5390625, -1.6855469, 3.4707031, 1.1005859, -1.5908203, -1.5068359, -0.06817627, -0.8623047, 1.5185547, 1.2910156, -2.7578125, 0.18127441, 3.8203125, -0.62939453, 2.0390625, -1.1845703, -1.1757812, -0.6171875, -2.3085938, -1.1757812, -1.0263672, -1.0214844, 0.38891602, -1.2773438, 0.31030273, -0.9277344, 0.3515625, 2.3359375, 1.1738281, -2.1015625, 3.2949219, -0.047912598, -0.859375, -2.4492188, -1.3427734, -3.1640625, 0.5756836, 1.5214844, 1.9941406, 2.796875, -1.2304688, 1.8095703, -1.5566406, -2.3339844, -1.4150391, 1.7197266, -1.1591797, -0.15856934, 2.7734375, -0.7421875, 1.6708984, -1.4150391, -2.2109375, -0.6503906, 1.1474609, 0.5883789, -2.0527344, -0.7319336, -1.9638672, -2.8066406, -4.7851562, 0.24731445, 1.9951172, -0.69921875, -0.32226562, 0.4555664, -0.3083496, -1.4091797, -0.7475586, -0.47387695, -4.03125, 0.24731445, 1.1396484, -0.7060547, -1.1201172, -0.06488037, 0.1550293, 0.8251953, 0.27685547, -0.07495117, -0.46533203, -3.5078125, 0.9824219, 1.3857422, -1.5507812, 1.0439453, 0.1743164, -0.9316406, 1.5039062, 3.8652344, 1.3154297, 0.043518066, 2.1660156, -3.703125, -0.2277832, 0.16882324, 0.1616211, 0.40576172, 2.0839844, -0.86816406, 1.9716797, -1.765625, 0.17028809, 0.9370117, 0.48706055, 0.4658203, 0.17260742, 1.6386719, -0.7529297, 1.1699219, -0.44873047, 2.1738281, 2.3066406, -0.5078125, -0.8989258, -2.34375, -1.7802734, 1.8720703, -1.2128906, 0.20019531, -2.8183594, 1.4726562, 1.8056641, 0.32885742, 0.8413086, 0.48583984, -0.87060547, 1.7763672, 1.9355469, -1.2763672, 2.7050781, 1.3925781, -1.8671875, -2.2851562, -1.2773438, 1.5439453, -0.17333984, 1.9550781, -1.7695312, 2.1757812, -2.3964844, 0.90771484, 0.03918457, 1.8398438, 0.9448242, 0.40966797, -2.2460938, 2.0625, 2.8574219, -0.41967773, 0.56103516, 0.77197266, -0.96777344, -1.2685547, 3.0234375, 0.89160156, -1.2451172, 1.2949219, -2.7480469, 2.1171875, -0.20605469, -0.75341797, 1.5068359, -1.0947266, -0.5175781, -1.9931641, -0.68066406, -2.0761719, 2.6113281, 2.0449219, 0.022247314, 0.39111328, 1.1474609, 0.3876953, 1.140625, 1.0732422, 1.8867188, -0.42260742, 0.92333984, -0.8022461, -0.23510742, 2.8496094, -2.6328125, 0.32348633, 2.4003906, -1.0068359, -1.3955078, 1.40625, 0.78271484, 2.6054688, 2.234375, 1.6503906, 0.03656006, 2.4550781, 5.4335938, 2.0371094, 2.6484375, 1.3681641, 0.6357422, -1.7529297, 2.640625, 2.5488281, -0.85546875, -0.68359375, 0.5683594, -0.81396484, 0.04550171, -0.7817383, 0.4638672, -0.67822266, -6.6171875, 1.9765625, 0.4111328, 2.5429688, -1.1054688, 0.57373047, 0.30126953, -0.72998047, -0.8876953, -2.21875, -0.89697266, -1.2890625, -0.07537842, -0.4987793, 0.22717285, 0.82177734, -2.9121094, 0.16711426, -1.2314453, -2.7558594, 0.025787354, 1.7519531, 1.453125, 1.6132812, -0.53759766, 2.7675781, 1.2646484, 0.2475586, 1.6826172, -1.0898438, 1.0986328, 0.27270508, 2.2558594, 0.60253906, -0.99658203, 2.2089844, -2.3671875, -2.375, -2.7695312, 2.3945312, 1.234375, 1.2041016, 1.8144531, -1.9404297, 3.2304688, 1.1640625, 1.0810547, -1.5185547, 1.6113281, -1.1220703, -0.8925781, -3.0039062, 0.54345703, -1.1611328, 2.2363281, 2.3515625, -2.015625, 0.99121094, -0.09338379, 2.3808594, 1.2998047, 1.0175781, 0.29833984, 0.54589844, -2.8066406, 1.3691406, 0.8881836, -1.5048828, -0.7294922, 2.34375, 0.78515625, 0.93359375, 0.053985596, -0.6171875, 0.9482422, -0.92578125, 0.075805664, 0.85253906, -2.5253906, -2.2871094, -0.07940674, -0.5996094, -0.70996094, -0.92822266, 0.5839844, 1.4785156, -1.7373047, 0.83935547, 1.7939453, 0.003566742, 0.5522461, 0.95947266, 0.76953125, -1.0673828, -1.1787109, 0.20678711, -2.0878906, -1.1181641, 0.33154297, 0.21496582, 2.4726562, -0.67578125, 2.1191406, -1.9208984, 0.8330078, 1.9472656, 0.64941406, -1.6552734, 0.072021484, 0.17980957, -0.14343262, -0.76660156, 3.1503906, -0.75927734, -0.47070312, 0.6274414, -2.40625, 0.6791992, -2.0683594, -1.2109375, 1.7421875, 2.625, 1.0537109, 1.7060547, -1.6757812, -3.7382812, -2.4746094, -1.796875, 1.234375, 1.1025391, -0.90185547, 2.1699219, 1.2880859, 2.15625, -0.3779297, -1.1396484, -0.5004883, 1.6621094, 1.5673828, -0.11553955, 1.8378906, 0.2211914, 1.4658203, 0.040985107, 4.171875, 0.81152344, -0.09625244, 0.77001953, 1.9697266, 0.78271484, -3.296875, 0.9536133, -2.1582031, -1.1064453, 0.40893555, 0.1875, 3.5019531, 0.11553955, -1.0429688, -2.1875, -1.7666016]}, "B083GGFXFT": {"id": "B083GGFXFT", "original": "Brand: SHINESTAR\nName: SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges\nDescription: SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

          Description
          \u2714 Ability to check the fuel level without having to remove the tank.
          \u2714 Checks for leaks on propane appliances
          \u2714 See at a glance when your propane level is low
          \u2714 Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

          What is it use for?
          It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
          How to detect leaks?
          To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

          \u2605 NOTE: Will not read levels immediately: begins working when propane is flowing
          \nFeatures: \u3010Awesome Connection\u3011 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L.\n\u3010Double Function Gauge\u3011 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety\n\u3010Multi-Purpose\u3011 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking\n\u3010Easy to Install\u3011 It only takes 1 minute to screw it on by hands. Installation is a snap.\n\u3010Standard Adapter\u3011 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.\n", "embedding": [-2.7988281, 2.1640625, 1.796875, 2.2910156, 0.11248779, -0.34399414, 1.1904297, -0.7949219, 3.3984375, 0.39086914, 0.94384766, -0.16833496, 1.3095703, -2.515625, 0.6723633, 0.8979492, 0.42260742, 1.6923828, 0.51171875, 1.5742188, 2.1328125, 2.3085938, 0.94921875, 0.09991455, 2.8886719, -0.26342773, 2.171875, -2.9746094, 0.09954834, -1.2490234, 1.828125, -0.32641602, -0.5629883, 1.5585938, -0.60546875, -1.1318359, -1.1630859, -1.5419922, -3.4609375, -0.46191406, -2.5761719, 1.0908203, 1.4042969, 0.29418945, -0.8642578, -1.21875, -0.111206055, 0.14001465, -0.3088379, -0.20935059, -0.28833008, 1.7998047, -0.60791016, 1.1767578, 0.43920898, -0.20288086, 0.35473633, -2.0996094, 0.7133789, 2.2382812, -0.39111328, -1.7763672, -3.1855469, 0.59472656, 0.055664062, -0.73046875, -0.09564209, 0.2166748, 1.7275391, 2.1601562, 2.2285156, -0.9663086, 0.8413086, -2.2246094, -0.9628906, 0.8779297, -0.7729492, 1.171875, 1.1738281, 1.5634766, -0.013427734, -0.36010742, 0.22167969, -1.0966797, 1.2441406, 1.3759766, 0.11804199, 1.7802734, -0.012619019, 0.0713501, -0.8256836, 2.1210938, -2.5429688, -3.8964844, 1.1503906, -0.30664062, -0.3071289, 0.10699463, 1.1425781, 1.4804688, 0.03543091, -0.75683594, -0.22619629, 1.3837891, -2.5878906, -0.09057617, 0.8979492, 1.1542969, -3.3945312, -1.5244141, 0.77783203, -0.49804688, 0.99121094, -1.5019531, -0.8305664, 0.048065186, 1.6738281, -1.25, 2.734375, 1.3398438, 2.9570312, -0.32836914, 0.18054199, 0.66064453, -0.87402344, 0.5683594, 0.9916992, -0.21264648, 2.8515625, 0.46362305, -0.3618164, -0.51708984, 2.140625, -2.0019531, 0.1842041, -1.5263672, -2.4296875, -2.7519531, -2.5019531, -0.5966797, -3.9863281, 0.59033203, 0.31762695, 1.2783203, -2.2363281, -0.09820557, -2.4707031, 0.047973633, 1.6162109, -0.79052734, 2.5, -1.0693359, -1.2548828, -0.36767578, 0.7895508, 2.5175781, -0.9165039, -2.3398438, 3.1308594, 1.0429688, 1.2490234, -0.9746094, -3.7675781, 0.87402344, 1.9072266, -2.7167969, -0.47436523, 0.5839844, 0.15234375, 0.76904297, 0.9794922, -1.9365234, 0.921875, 0.2220459, 0.23950195, -1.8808594, 1.6171875, 2.1914062, 3.0351562, -0.7265625, -3.4277344, -0.8745117, -0.15991211, -2.4375, -0.043273926, 0.1628418, -0.8388672, -0.037963867, 0.21618652, -1.7177734, -1.6396484, 1.2216797, -1.0722656, -0.6645508, -0.0023880005, -2.7558594, -4.3125, -1.7597656, 0.21325684, 0.5449219, 0.5932617, -0.9345703, 0.06756592, 0.8901367, -0.5209961, -2.0683594, 2.1953125, -1.2216797, -0.3059082, 1.1494141, 0.9399414, -0.07019043, 1.7568359, -1.7666016, -0.12298584, -2.2265625, 0.30908203, 2.4726562, 0.4165039, 2.7851562, -0.24475098, 1.5224609, 0.8046875, 0.07067871, 1.8212891, 1.2177734, 0.8041992, 0.1652832, -0.9194336, -0.4333496, 4.1523438, -0.099731445, -0.33251953, -1.03125, -0.4819336, 2.8945312, 0.85546875, 0.42041016, -0.08996582, -0.1472168, 0.043426514, -0.3569336, -1.1972656, -0.75683594, -1.5126953, -2.8242188, -0.78027344, 0.14648438, 3.0761719, -1.8896484, 1.7988281, -0.8017578, -0.9199219, -0.09515381, -1.1904297, -0.16137695, 1.0302734, 1.0986328, -0.4423828, -2.9003906, 2.9433594, 1.8974609, -0.4091797, 0.30566406, -1.2714844, 1.1240234, 1.8251953, 2.1269531, -1.1240234, 1.7490234, 0.6088867, 0.7167969, -0.4025879, -1.8408203, 2.0039062, 2.921875, -0.2578125, 4.1132812, 0.35083008, 0.29956055, 2.3925781, -0.094055176, -0.27514648, -3.0742188, 0.6044922, 1.59375, 0.8461914, 0.49487305, -1.3398438, 1.7236328, 3.2753906, -2.1816406, -3.2753906, 2.1347656, 2.0351562, 0.1986084, 3.9238281, 0.015838623, 0.16186523, 0.8613281, -0.40771484, 1.6005859, -1.640625, 0.14758301, 1.8085938, -0.23657227, 0.42236328, -0.40112305, 1.375, 0.7128906, -1.15625, -0.21228027, -2.1230469, 1.6015625, -0.27319336, -1.8730469, 3.5136719, -2.2128906, -0.20141602, 3.6445312, -0.5541992, 1.3427734, 0.32495117, -0.94970703, -0.41796875, 2.4609375, -2.0097656, 0.5336914, -0.8886719, 3.2265625, 1.7714844, -1.078125, 0.7236328, -1.5615234, -0.6542969, -0.052246094, -3.0292969, -2.6503906, -0.5776367, -2.3261719, -1.0439453, 0.07220459, 0.0519104, 2.5527344, 0.6479492, 0.6826172, -0.5917969, 1.5175781, 1.9042969, -2.5839844, 0.9316406, 2.8242188, 0.45092773, -1.3925781, -0.099121094, 0.012008667, -0.3154297, 1.8505859, -1.8330078, 0.7866211, -1.046875, 0.40185547, 2.1933594, 1.0234375, -0.6044922, -2.0332031, 0.5756836, -2.3789062, 0.98291016, -2.6503906, 2.3769531, -2.2734375, -0.13757324, -2.1269531, -2.34375, 0.6020508, -0.35327148, 3.0527344, 0.32543945, 1.9833984, -3.6972656, 0.8388672, 0.35888672, 0.8666992, -1.6787109, -0.7919922, 0.22021484, -0.3935547, -0.98828125, -3.0644531, 0.29663086, -0.8857422, 0.25878906, 0.040252686, -1.6611328, -2.3515625, 0.4711914, -0.3996582, -0.6645508, -0.53125, 2.8222656, -1.1445312, -1.7958984, -2.015625, 0.7866211, 1.0341797, -2.4394531, 0.103271484, 0.9633789, 0.21362305, 0.7890625, 0.3022461, 1.46875, 1.4189453, -0.8808594, -3.0898438, 1.453125, 2.5449219, 0.23583984, 1.3339844, -2.0234375, -0.31591797, -0.5917969, 0.6508789, 3.3945312, 2.1972656, 2.8085938, -3.1738281, 0.036010742, -0.6923828, -0.46118164, -0.51904297, 1.2695312, -0.22631836, 2.3125, -1.9013672, -2.9648438, -0.32666016, 1.7431641, -2.2753906, -0.091918945, -0.0025367737, -0.5834961, 4.2734375, 1.7705078, -2.3183594, -0.9511719, 0.4946289, 2.8769531, 0.45996094, -0.49560547, 0.6953125, -1.2958984, 0.5058594, -1.8105469, -1.3535156, 2.2402344, 0.51904297, -0.24963379, 0.6254883, 1.1835938, -0.7871094, 1.1484375, 0.4892578, 0.17626953, -1.171875, 1.6640625, -0.025543213, 0.9765625, -2.65625, 1.21875, 1.7636719, -0.5966797, -2.1816406, 0.7832031, 3.3691406, -0.796875, 0.3852539, -1.2382812, -0.26733398, 0.3642578, 1.3759766, 0.04321289, 0.3215332, 1.9882812, -0.96728516, -0.5942383, -2.3125, 1.9628906, -1.4345703, 0.234375, 0.56933594, 0.28198242, -2.921875, -2.4609375, 0.68115234, -0.6699219, -2.4003906, 0.27954102, 0.58691406, -0.24914551, -0.53271484, -1.0263672, 1.4716797, 1.8115234, -1.6591797, -0.12597656, -1.6845703, 0.18481445, -0.7216797, 1.3378906, 0.9848633, 0.92578125, -1.9443359, 0.87109375, -1.8144531, 1.4941406, 0.57421875, 1.1601562, -1.7890625, -0.65527344, 0.21496582, 3.0605469, -0.23876953, 3.3945312, 0.7285156, 0.94921875, 0.9785156, -1.3544922, -0.17114258, -0.7089844, -3.78125, 1.1298828, -2.2226562, -1.7070312, 1.6191406, 2.9648438, -0.12414551, -0.68066406, 0.9902344, -3.4824219, -1.6679688, 0.0026168823, 1.7851562, -1.1923828, 0.23254395, 1.4726562, 1.328125, -2.21875, -3.3125, -1.234375, -1.3378906, -0.55029297, -0.2866211, 1.4287109, 1.9824219, -1.8769531, -0.92626953, -1.0009766, 0.08190918, -0.80029297, -0.35351562, -0.9082031, -2.9296875, 2.6289062, 1.5898438, -0.45947266, -1.1230469, 1.3886719, 2.9707031, -0.38623047, -0.3010254, -0.3701172, 3.1347656, -0.14990234, -1.7441406, -0.9536133, -2.7480469, 0.14550781, -1.6523438, 1.1855469, 0.6767578, -2.3125, 1.1298828, -0.7324219, 1.9169922, -0.1932373, -1.3798828, -3.7011719, 1.3193359, 1.5673828, -0.0003414154, -0.5029297, -1.6923828, -2.1796875, -1.0566406, 0.22961426, -1.3662109, -1.5537109, -0.6982422, 0.8647461, -4.5390625, 2.4355469, 1.1806641, 2.3945312, -0.48388672, -0.09295654, 0.7163086, 1.2578125, 0.8798828, -0.8725586, 1.2451172, -0.17382812, 0.67626953, -0.051452637, 1.3037109, -1.8925781, -1.6914062, 1.1835938, 0.21252441, -0.15539551, -0.5620117, -0.9038086, -2.1679688, -0.4333496, -0.17077637, -0.15563965, 3.0527344, -1.3359375, 1.546875, 2.5097656, 1.6826172, -2.0253906, 0.7368164, 2.1816406, 3.1074219, -0.8120117, -0.13952637, 0.16906738, 0.5810547, 1.5361328, -2.3632812, 0.111572266, -1.7773438, 0.6503906, 0.9091797, 1.1992188, -0.9189453, 0.1694336, 1.0976562, 1.4199219, 0.5317383, 0.8310547, 1.0576172, -1.1044922, 2.2832031, 0.3395996, -0.5205078, -0.6201172, 1.2353516, 0.16259766, 3.2773438, -0.75439453, -2.1113281, -0.36816406, 2.4394531, -1.3916016, 3.0136719, 1.7890625, -1.3115234, -1.5009766, -2.7011719, -3.2324219, 1.0634766, -1.1191406, 0.9194336, -0.37329102, -0.99121094, -2.4648438, 1.5556641, 0.8378906, -0.7939453, 1.2412109, 0.48339844, 0.4333496, -0.42504883, -0.47729492, 0.32104492, -3.2207031, -0.5727539, 0.37426758, 1.3085938, -1.4648438, 1.4462891, 1.9365234, -1.3076172, -2.921875, -0.69433594, 1.9980469, -1.6542969, -0.45703125, 0.61083984, 1.7734375, 0.87158203, 0.28466797, 0.3881836, -3.0410156, 0.32861328, 2.5898438, 0.84814453, 0.8642578, 0.30395508, -1.6269531, -6.7304688, -0.3347168, 2.2695312, -0.7338867, -0.29248047, -1.8662109, -0.17980957, 0.9477539, -0.53027344, -0.1776123, -1.3173828, 2.7988281, -1.8037109, -0.016403198, -0.47583008, 0.28051758, -0.012313843, -0.59521484, -0.36083984, 0.2788086, -1.2861328, -2.9472656, -2.046875, -1.8183594, -0.92285156, 0.26489258, -0.036895752, -0.9472656, 1.5458984, 0.4736328, 1.8388672, -0.9628906, 1.7597656, -1.4941406, -0.2685547, 3.1523438, -2.4101562, -0.24804688, 1.6455078, -1.2910156, 0.59716797, 2.578125, 1.2529297, -2.1542969, -0.075683594, -1.0683594, 0.48364258, -1.0537109, -2.2871094, 0.105529785, -0.9477539, 2.2753906, 0.12005615, -1.0644531, -0.24450684, -2.1582031, -2.921875, 0.22961426, -1.6699219, -0.47387695, -0.6958008, 1.6660156, 0.47973633, -0.62158203, 0.43041992, 1.3769531, -0.44091797, -3.4609375, 1.7158203, -2.2265625, 2.7265625, 1.1591797, -1.7822266, -2.8242188, -2.6074219, 0.88964844, 1.2939453, -1.3134766, 0.12261963, 0.4465332, 0.15527344, 2.5566406, -0.5371094, 1.5146484, -0.09692383, 0.578125, -1.3955078, 0.96777344, 1.0527344, 0.3173828, 0.28027344, 1.4335938, 0.22229004, 0.62353516, 0.0019760132, 1.7744141, -2.6875, 1.9394531, -1.9853516, -0.5390625, -0.9863281, -1.4169922, 1.2451172, -2.6679688, 0.20800781, -0.5205078, -2.4316406, -3.8925781, 2.6425781, 0.9223633, -0.32299805, 0.2590332, 1.5283203, 0.6982422, -0.111694336, 2.0019531, -0.65283203, -1.5761719, -1.3027344, -0.828125, 0.7163086, 2.5292969, -1.4189453, 0.23217773, 1.9189453, 3.1679688, 1.2695312, 0.105163574, 0.16027832, 2.9140625, 0.48754883, 1.9482422, 3.9433594, 0.06726074, 0.9121094, 0.08215332, 1.4755859, 4.765625, -2.8242188, 2.5097656, 0.08404541, 2.3320312, 0.9692383, -1.6826172, 0.14086914, -1.5, 1.1337891, 0.07147217, -0.1673584, 1.5654297, -3.4375, -0.7397461, -0.12207031, -0.9604492, -2.4238281, 1.3134766, -2.0976562, -0.17089844, -1.7324219, 0.65283203, 0.5473633, 0.5888672, 0.5605469, -0.62597656, -0.6689453, 2.5410156, -1.1591797, -2.1503906, -1.8525391, -1.7675781, -0.4909668, 2.4824219, 1.1630859, 1.2236328, -0.13867188, -0.62060547, -0.51123047, -0.61035156, 0.9238281, -0.8466797, 0.09454346, -0.97314453, 2.4726562, 1.4785156, -0.37329102, 2.5234375, 0.7167969, -0.46899414, -2.9023438, 2.1601562, -0.39453125, 1.2568359, -1.9189453, -4.6796875, 0.8588867, -1.359375, 0.8901367, -1.9501953, -0.0670166, -0.7421875, -1.4912109, 1.1240234, -0.36328125, -0.8852539, 1.7216797, 0.2578125, -1.5654297, 0.08459473, 1.4443359, 0.33422852, -0.2824707, 0.21252441, -0.1829834, 0.42578125, -1.6689453, 2.4023438, -1.234375, -2.3066406, -1.6464844, 0.7685547, 0.10925293, 0.3930664, -1.0654297, -0.001288414, 1.7744141, -0.56591797, -0.21447754, 0.7807617, -2.1777344, 1.7675781, 0.46557617, 0.6904297, -0.016708374, 0.5932617, -1.7880859, 1.9023438, -2.6464844, -1.2783203, 1.4775391, -1.5947266, 1.0644531, 1.4560547, -0.36279297, -0.39868164, 0.625, 1.8818359, -1.2207031, 1.0820312, -1.4755859, 0.82128906, -0.51660156, -2.5136719, 0.26489258, 1.2080078, 0.3852539, -0.074157715, 0.031066895, 0.63378906, -0.11682129, 0.26220703, -2.3554688, 1.8535156, 2.7753906, 0.35864258, 0.9267578, 0.062042236, 0.10760498, 1.4101562, -1.6884766, 0.48364258, 0.7426758, 1.8916016, 0.4892578, 0.12207031, 0.7011719, -2.0507812, -0.8173828, -3.9804688, 0.3388672, 1.1484375, -2.6738281, 0.5810547, 0.7807617, 2.0839844, 0.18566895, 1.5722656, -0.4152832, -1.2177734, 0.6220703, -2.1523438, 1.0351562, 0.094177246, -0.016662598, 1.9316406, 2.6894531, 0.9291992, -1.7773438, -0.7607422, 2.6035156, -1.6269531, -1.3154297, 0.88183594, -1.1083984, 0.12445068, 1.1308594, 4.5078125, 2.7539062, 0.3659668, -0.7944336, -0.53125, -1.3173828]}, "B077TFYR4T": {"id": "B077TFYR4T", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage\nDescription: \nFeatures: Rich heritage finish\nPropane ready (fuel conversion not permitted)\nUp to 20, 000 BTU's/hr heats up to 700 sq. Ft\nThermostat control knob automatically maintains your ideal heat level\nWall or corner installation options included\n", "embedding": [0.43286133, 1.6503906, 1.9394531, 0.30200195, 0.64746094, 0.6694336, -0.3310547, -1.2753906, -0.22058105, 1.3916016, 1.4433594, 0.98095703, -0.4873047, -2.9667969, 1.3964844, -1.6748047, 0.17602539, 1.4003906, 1.0927734, -1.9501953, 2.8125, 1.1064453, -0.64941406, 0.37426758, -0.7319336, 0.22058105, 3.5664062, -2.4746094, -0.91308594, -1.7246094, 1.0507812, 0.32739258, 0.44726562, 2.34375, -1.0830078, -2.1601562, -2.578125, -0.26367188, -5.0078125, -0.06185913, -1.0576172, -0.25952148, 1.7851562, 0.39282227, -3.0234375, -2.0664062, 2.2128906, 0.51708984, -1.0166016, 1.1894531, -0.34472656, -0.24108887, -0.67285156, -0.52783203, 0.57373047, 2.4550781, -0.31835938, -0.9511719, 1.8681641, 0.65625, 0.5878906, -0.5932617, -2.1152344, 1.6210938, -0.22485352, 1.109375, -1.0146484, 0.33862305, 0.18835449, 1.2226562, 0.27197266, 0.4729004, -0.0009870529, -1.1884766, -1.9814453, 0.2454834, -2.9238281, 1.2978516, 1.4189453, -2.4296875, -0.40429688, 1.4707031, -0.6738281, -0.15527344, -1.8076172, -0.31958008, 0.45898438, -0.79833984, 0.4033203, 0.87646484, -0.27294922, 1.53125, 0.012893677, -3.9003906, 0.9272461, -0.7246094, -0.53222656, 0.25732422, 0.64160156, 0.8198242, 1.8935547, 1.1132812, -0.076049805, -0.7192383, -2.6953125, -0.265625, 1.9150391, 1.9433594, -3.3222656, 0.73046875, -1.9501953, 0.31591797, 2.0761719, 0.9316406, -0.66796875, 0.53271484, 0.45825195, 0.91748047, 3.171875, 1.0830078, 2.0898438, -1.4755859, 1.3662109, -0.016113281, 1.3349609, 1.1259766, -0.5629883, 1.2480469, 1.9453125, -0.9145508, 1.2744141, 1.1855469, 1.9453125, -0.31713867, -1.03125, -1.6328125, -1.1171875, -1.9296875, -2.84375, -2.7382812, 0.91308594, 1.1015625, 0.78027344, 0.7607422, -3.5429688, -2.4160156, 0.03186035, -0.33276367, 0.35961914, -2.9628906, 0.55859375, -2.9296875, -0.5629883, -1.9882812, -0.55322266, 0.11584473, -0.05822754, -1.5849609, 0.34643555, 1.2988281, -1.3603516, 0.16125488, -3.1796875, 2.2265625, -2.2675781, -1.9423828, 2.3945312, 0.049987793, 0.77490234, 2.8515625, -0.63964844, -2.1113281, 1.1386719, -0.4038086, -1.453125, -2.0078125, -0.2841797, 2.140625, -0.83935547, 1.7753906, -4.71875, -0.5102539, -1.7822266, -0.36767578, -0.039520264, 0.35253906, 0.1763916, -1.5185547, 1.7382812, -0.23120117, -0.97265625, 1.7851562, -0.50634766, -0.00011026859, -1.7792969, -1.7109375, -0.96777344, -1.9814453, 1.7646484, 0.90527344, -0.13452148, 0.2824707, -0.52441406, 0.6870117, -1.1220703, -2.9882812, -0.46069336, -1.3935547, 1.9042969, 2.4042969, 1.0908203, -1.1660156, 2.4414062, -1.3964844, 1.4003906, -2.7617188, 1.3886719, 0.09643555, -0.25341797, 0.33447266, 0.031204224, 0.88916016, 1.6992188, -0.042297363, 1.9921875, 0.6230469, -0.28295898, -1.2363281, -2.8808594, -2.1953125, 2.9433594, 1.2314453, 0.61572266, 0.43237305, -1.3505859, 3.4648438, -0.9404297, 0.63427734, 2.2910156, -0.5966797, 0.296875, 0.39575195, 0.43041992, -1.5712891, -1.0615234, 1.5, -0.7182617, 1.8808594, 1.9863281, 1.953125, -1.2685547, -1.9580078, -0.04550171, 0.043273926, -0.53808594, -1.9042969, 0.39575195, 1.4287109, 0.20300293, -0.8339844, -0.5107422, -0.064208984, -0.7788086, 0.9628906, -2.2089844, 0.03781128, 3.9121094, 0.35742188, -0.4260254, -0.25463867, -0.17492676, 1.0166016, 1.5595703, -0.9423828, 0.84521484, 0.27319336, -0.53564453, 3.1445312, -1.8818359, 3.078125, 1.7714844, -1.0683594, 1.5654297, -0.8432617, 0.8120117, 1.1855469, 1.7167969, 1.4189453, -1.6318359, -0.54248047, 5.0390625, -0.8515625, -2.2753906, 1.0498047, 0.042816162, 0.11755371, 1.4824219, -0.3623047, -0.28808594, -0.8496094, 2.3671875, -0.064331055, 0.3828125, 0.24865723, -0.66845703, -0.2734375, 0.7583008, 0.30249023, -0.48632812, 0.14428711, 0.16101074, -2.6738281, -2.4882812, 0.8017578, -2.5957031, -0.8540039, 1.5009766, -1.3828125, 1.0322266, 0.56689453, 0.94140625, 0.93896484, -2.2558594, -0.7573242, 0.4650879, 1.4833984, -0.056365967, 0.9663086, 1.3193359, -0.11224365, -0.92285156, -1.2363281, 1.015625, -2.8925781, -2.0234375, -1.1582031, 0.5371094, -2.0332031, -0.6074219, -2.015625, -0.46411133, 1.3652344, -1.4882812, 1.5380859, 0.43554688, 0.017456055, 0.14831543, -1.1611328, -0.7573242, 0.32958984, 0.9824219, 1.9326172, -3.3496094, -4.2773438, -0.98339844, -0.38110352, 0.36889648, 0.5102539, -1.9384766, 1.7246094, 0.6220703, 0.32543945, -0.16137695, -0.3256836, -0.9926758, -1.3623047, 1.1757812, -4.28125, 0.17993164, -0.34570312, -1.0742188, -0.55566406, 1.2470703, -2.3300781, 0.1977539, 2.3828125, -0.4814453, 3.5351562, 2.6152344, 1.4814453, 0.73535156, -0.4086914, 0.09436035, -0.37402344, -2.3261719, 0.18579102, -0.50927734, -1.109375, -3.75, -2.7148438, 2.0410156, 0.23303223, -2.2207031, -0.19165039, -1.1728516, 0.9194336, -2.0097656, -0.0074653625, -0.92822266, -0.66503906, -1.6669922, -1.8818359, -0.13916016, -0.86376953, 0.55029297, -2.0117188, -1.2880859, 1.2285156, 1.4404297, 0.98095703, 1.2490234, 1.15625, 0.23925781, 0.5673828, 1.7675781, -4.0820312, 2.4277344, 1.2939453, 0.054382324, -1.4003906, -1.7675781, -1.78125, -1.1796875, -0.6557617, 2.8339844, 0.9682617, 2.09375, -0.43652344, -0.5415039, 0.16101074, 1.9541016, -0.89404297, 0.24560547, -1.7529297, 0.5996094, -1.1396484, -1.6679688, 0.7036133, 2.7695312, -2.6015625, -1.5976562, 1.2978516, 0.4099121, 2.7382812, 1.4365234, 0.89160156, 0.05026245, 2.2988281, 1.3847656, 1.8935547, -0.35595703, -0.54052734, -0.99121094, 1.9111328, 2.1894531, -0.12890625, 2.1464844, 0.55859375, 0.24560547, -0.0006351471, 1.3046875, -1.0205078, 1.3134766, -0.9067383, 1.6152344, 0.25073242, 1.3525391, 0.2286377, -0.49047852, -1.4863281, -0.75, 1.9921875, -0.9682617, -0.4230957, 2.1777344, 0.609375, -1.0527344, 1.5830078, 1.9580078, -0.42871094, 1.1552734, 0.41674805, 0.35961914, 0.60546875, 1.5615234, -1.4287109, -0.21911621, -1.5576172, 1.6103516, -0.17236328, -0.91259766, -0.43554688, 2.7792969, -1.8564453, -1.3447266, 0.6772461, -1.9775391, 0.33544922, 1.078125, -1.0380859, -1.2783203, -0.83251953, -0.6274414, -0.2590332, 3.1347656, -0.3383789, 0.5073242, -0.13696289, 1.5742188, 0.9160156, 1.2480469, 0.32788086, 1.1884766, -1.5898438, 0.4194336, -1.9609375, -1.5146484, 0.75, -0.07879639, 0.4711914, 2.9667969, -0.27929688, 1.1025391, 0.09399414, 1.3212891, -1.5576172, -0.35424805, 3.3945312, 1.3056641, 0.7519531, -1.8896484, -4.8671875, 0.31933594, -0.93603516, 0.49536133, 0.19604492, 0.4506836, -1.3789062, -0.14416504, 0.7529297, -2.9003906, -0.98876953, -0.78808594, 0.068603516, -1.3740234, 0.85009766, -0.35864258, 0.5800781, -2.265625, 0.1538086, -0.08660889, -0.29833984, -0.70703125, 0.79248047, -2.5410156, 1.2363281, -0.84472656, 1.5029297, -0.5253906, -0.7626953, 0.35546875, -0.5097656, -0.1459961, -1.2910156, 1.2685547, 1.0351562, -1.1953125, 1.5537109, 2.3457031, 0.78515625, -1.1191406, 0.045440674, 2.234375, 2.3691406, -0.35424805, -2.3496094, -2.1660156, -2.0175781, -0.06237793, -0.828125, -0.3779297, -0.74853516, -1.5869141, 0.5761719, 1.8027344, 1.9794922, 2.203125, 0.25073242, -1.3486328, 1.8076172, 0.50097656, -1.2314453, -1.3378906, -3.1425781, -0.5234375, -1.1884766, 1.1904297, -1.453125, 0.45288086, -2.1171875, 0.4230957, -2.6914062, 1.1611328, 2.5195312, 2.3515625, 1.3447266, -0.9003906, -0.92626953, -0.48095703, -0.20263672, 1.4179688, 1.40625, 0.9589844, -0.75878906, 1.3916016, 1.0166016, -2.1367188, 1.6279297, 0.44702148, 0.23364258, 0.73876953, -0.98583984, -1.8720703, -1.1005859, 1.3457031, 1.4277344, 0.06768799, 1.4287109, -2.140625, -0.07635498, 0.89404297, 1.5576172, -0.32470703, -0.20178223, -0.13781738, -1.0605469, 1.7275391, 1.2128906, -0.55029297, -0.26538086, 1.3115234, -0.47924805, 2.5527344, -0.4482422, -0.40551758, -2.0566406, 0.43310547, -0.48461914, -0.5073242, 1.6601562, -0.75683594, 0.23754883, 3.6484375, 1.2392578, -0.5493164, 1.2558594, 0.37402344, -2.2011719, 0.97509766, 1.5166016, 1.1132812, 1.9423828, 0.46166992, -3.9570312, -1.3203125, 3.0625, -1.4833984, 0.4970703, -0.2619629, -1.75, -1.1005859, -3.2207031, -2.5800781, 0.13513184, -0.9765625, -0.3005371, -0.96240234, -1.1826172, -0.7319336, 0.2705078, 2.5839844, 0.26049805, -0.35913086, 1.7382812, 0.92871094, 0.05795288, -2.2226562, -0.06561279, -1.3203125, 0.2890625, 1.2001953, -1.953125, 2.0664062, 1.0146484, 0.9501953, -1.4140625, -0.4963379, 1.2109375, 1.7041016, -1.3095703, 0.28735352, 1.4423828, -0.19897461, 0.8613281, -2.2773438, -0.80029297, -2.296875, 0.08355713, 1, 1.3564453, -0.21557617, -0.97265625, -1.9101562, -3.3007812, -0.7416992, -0.22631836, -1.2919922, 1.7138672, 0.3918457, -0.7583008, 0.57177734, -0.119140625, 0.83154297, -1.1455078, 0.92871094, -1.4462891, -0.5371094, -1.3808594, -2.7011719, 0.3935547, 1.0175781, 0.28808594, -1.8154297, 0.15661621, -1.5615234, -0.7788086, 1.3125, -0.106933594, 2.3515625, 0.42211914, 0.09069824, 1.6826172, 2.6542969, 2.296875, -1.9619141, 1.0800781, 1.4492188, 0.72509766, 1.4394531, -0.9555664, 0.46435547, 1.7607422, 1.4394531, 0.62402344, 2.2265625, 1.5058594, -0.23620605, 0.43896484, -0.08935547, -1.4003906, 0.38598633, -0.88378906, 1.9726562, 0.8198242, 1.1298828, 1.5537109, 0.09020996, 0.038848877, -1.6992188, -0.21911621, -0.45654297, -2.3554688, -0.35424805, -0.79833984, 2.8769531, 0.5966797, -1.0986328, 0.70703125, 1.1650391, 0.31982422, -0.92333984, 0.18579102, -2.4160156, 2.2265625, 2.2382812, -0.15930176, -3.8046875, -1.8671875, 1.1845703, 2.0605469, 2.5449219, -0.39111328, 0.7548828, -2.5410156, 1.6259766, -1.5205078, 1.5742188, 0.82177734, -0.49975586, -1.2119141, 1.5273438, 1.4921875, -1.4082031, 1.8583984, 0.5, 2.7460938, -0.8623047, 3.015625, 2.6328125, -0.36791992, -0.13781738, -1, 1.4716797, -1.4453125, 0.26708984, 0.80859375, -1.6904297, -0.7128906, 0.62597656, -0.31591797, -3.8066406, 2.4589844, 0.7163086, -0.18713379, -0.5786133, 1.1777344, 0.6220703, 0.76904297, 0.7011719, -0.8745117, 1.1572266, 1.4189453, -1.0185547, -0.37158203, 2.3300781, -2.8691406, 1.7792969, 1.0458984, 1.2363281, -0.13354492, 0.98339844, 0.78808594, 1.3232422, 4.21875, 3.640625, 1.6787109, 1.1542969, 0.017440796, 0.2915039, 2.3066406, 1.4257812, -2.1425781, 0.9379883, 1.3828125, 1.2226562, 0.22058105, -1.3632812, 1.6318359, -1.453125, 0.65771484, -0.7416992, 0.32543945, -1.3603516, -3.1992188, -0.109558105, -0.35083008, 0.8798828, -3.5195312, -0.9033203, -0.6464844, 1.2011719, 0.011779785, -3.0078125, 1.4863281, 0.34887695, 0.1463623, 0.58984375, -2.2207031, 1.1455078, -0.8984375, -0.32958984, -0.06689453, -3.4667969, 0.5683594, -1.3095703, 1.2724609, 1.0244141, -0.38183594, 0.12841797, 1.5820312, 1.5292969, 0.27783203, 0.49267578, -0.7451172, 0.55078125, 2.4472656, 1.8154297, -0.796875, 1.4931641, 0.7861328, -2.2714844, -4.1640625, 2.7382812, -0.703125, 0.07397461, -0.2133789, -0.14562988, 1.9541016, 0.43188477, 0.47143555, -3.3164062, -0.1932373, 0.072509766, -1.7470703, -1.8496094, 0.41870117, 0.03994751, 1.6757812, -0.51904297, 1.2529297, 0.54541016, -1.5546875, 1.9833984, -0.24047852, 0.29663086, 1.3115234, -0.73339844, -1.2050781, 0.6738281, -0.49267578, -0.36938477, -1.1123047, 1.8916016, 2.3984375, -0.4267578, 0.36547852, -0.39526367, 0.4729004, -1.1240234, 0.42749023, -0.5258789, -1.1777344, -2.2695312, -2.078125, 0.8496094, -1.4003906, -1.4238281, 0.328125, -0.20581055, -3.2128906, -0.5517578, 3.2773438, -0.51708984, 0.87353516, -1.1347656, -0.8691406, 0.85498047, -0.8701172, 1.6035156, -0.11785889, -0.45996094, 0.06124878, 1.8398438, 0.8574219, 0.05883789, 0.6171875, -0.8408203, -1.2890625, 1.6347656, 1.1982422, 0.048583984, 0.9301758, 1.0078125, -1.1005859, 0.13476562, 2.3085938, -0.91308594, -0.08996582, -0.23168945, -0.9863281, -1.1074219, 0.40112305, -0.19018555, 2.015625, 3.2714844, 1.5253906, 0.40185547, -0.94091797, -2.7558594, -1.9619141, -0.5961914, 0.7709961, -0.48486328, -0.045196533, 1.1152344, -1.0214844, 0.44750977, 0.13378906, -2.4082031, 0.2626953, -0.20532227, 1.1855469, -0.41723633, 1.8417969, -0.78564453, 0.088012695, 0.2644043, 2.4238281, -0.54785156, -0.8808594, 0.42749023, 3.0996094, 1.0566406, -2.1152344, -1.1064453, -2.3261719, -1.1435547, 0.28051758, 1.2753906, 0.9589844, 1.4169922, 0.35375977, -1.2138672, -1.4726562]}, "B09B76PJKX": {"id": "B09B76PJKX", "original": "Brand: PAMASE\nName: Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)\nDescription: Want to make your gas tank durable enough to serve you for a long time?
          We sincerely recommend our propane gas tank cover bag to you!

          Features
          1. Measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder
          2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
          3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
          4. Easy to pick up or place the gas tank and open or close the valve
          5. With four ventilation grommets, two side pockets and thick carrying handles

          Specification:
          Color: Black
          Size: 12.5\" x 19.4\"
          Material: 600D Oxford Cloth\nFeatures: [Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5\" x 19.4\" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it's absolutely perfect for placing it next to your outdoor grill or camping stove.\n[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank.\n[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table.\n[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve.\n[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don't strangle your hand at all.\n", "embedding": [0.77685547, 2.703125, 2.7226562, 0.011138916, -0.5859375, 0.41137695, -0.025665283, -0.47705078, 1.4697266, 2.1386719, 1.0351562, 0.79248047, 2.546875, -3.4472656, 1.8134766, -0.3881836, -0.76123047, 2.2148438, 3.8339844, 0.66064453, 3.0996094, 0.86865234, 0.17053223, -0.5996094, 0.9946289, -0.7402344, 2.6113281, -2.4042969, -1.1669922, 0.98583984, 0.609375, -0.54296875, -0.63720703, 2.6464844, -0.63916016, -2.0332031, -0.11401367, -0.3166504, -3.015625, -1.5888672, -2.4335938, -1.5507812, 4.1953125, 0.5053711, -0.84033203, -0.47338867, -1.6806641, -1.5820312, 0.75097656, -2.9433594, -0.703125, 1.7197266, 2.4550781, 0.50146484, -1.2373047, -0.58740234, 2.0605469, -1.4267578, 0.8095703, 1.7919922, 0.30078125, -0.7529297, -1.3701172, 1.9794922, 0.38891602, -1.2353516, -0.023620605, -1.7236328, -0.18310547, 1.4023438, 1.6357422, 1.7128906, 3.3652344, -1.4921875, 0.7446289, -0.3930664, -1.8398438, 1.8134766, 2.0117188, -0.5776367, -0.018844604, 3.265625, -1.0380859, -2.9257812, -1.3398438, -0.49804688, -0.99365234, 0.9614258, 0.04916382, 0.9716797, -2.4414062, 2.2792969, -1.8154297, -4.2578125, 0.29833984, -0.15393066, 3.2695312, 1.6162109, 3.9042969, 1.4003906, -0.30517578, -0.16906738, -1.5429688, 1.7480469, -3.0644531, -1.9072266, 0.33496094, -0.36743164, 0.051452637, 0.26538086, 0.39746094, -1.1416016, 2.8984375, -1.5009766, 0.21655273, 0.390625, -0.16369629, -0.5571289, 2.6796875, 1.9804688, 4.3359375, -0.74609375, 0.5625, -0.6904297, 0.6015625, 0.82958984, -1.6621094, 1.4443359, 1.8447266, -0.7426758, 1.8544922, -0.8286133, 0.30078125, -0.3515625, -0.5336914, -0.70947266, -0.5410156, -1.8544922, -2.75, -0.24243164, -2.5351562, -0.8232422, 0.6635742, -0.17919922, -3.7226562, 0.12023926, -2.2070312, 1.6328125, -1.1132812, -1.7460938, 1.1894531, -1.6425781, -0.5053711, -0.17382812, 2.015625, 0.20629883, 1.4609375, -3.2734375, 2.3046875, 2.0214844, 3.6582031, -1.8369141, -0.38745117, 0.35302734, 1.296875, -3.4746094, 1.9345703, -0.12133789, -0.43652344, 0.66308594, -0.03753662, -3.1972656, 0.12915039, 1.8955078, -0.3251953, -1.0410156, 2.1015625, 1.9462891, 0.8911133, -0.44189453, -3.2773438, -0.9536133, -0.9428711, -0.20336914, -0.012229919, -0.20349121, -2.6972656, -2.0527344, -1.0517578, -0.8769531, -3.4335938, 1.6386719, -1.6025391, 0.68066406, -1.3730469, -3.6894531, -2.140625, -0.5576172, -0.02784729, 1.1796875, -1.5654297, -0.7036133, -0.4975586, 1.4179688, -2.3339844, -1.3408203, 2.5878906, -0.027389526, 1.0400391, 1.8847656, 0.04257202, -0.58251953, 2.2773438, 0.5883789, -1.7167969, -0.16394043, 1.3876953, 0.93603516, 1.8173828, -0.34545898, 0.57128906, -0.3972168, 0.54052734, 2.3164062, 1.84375, 3.5878906, 0.9277344, 0.50097656, -1.4931641, -1.8837891, 0.3466797, 1.4755859, -0.79833984, 0.3564453, -0.57177734, 2.2714844, -0.7363281, 0.32421875, -0.35375977, -0.57714844, 0.12426758, -1.2695312, -2.1542969, -1.6884766, 0.24841309, 1.7705078, 0.22668457, -0.58496094, 0.6035156, 0.18640137, 1.3349609, -1.0507812, 1.3173828, -1.7714844, -1.453125, 1.8486328, 1.6933594, 1.5449219, -0.20141602, -2.5058594, 0.30151367, 2.0722656, -0.08959961, 1.7607422, -0.88378906, 1.3925781, 0.35424805, -0.89160156, -2.2050781, 1.3740234, 0.96875, 1.4707031, 1.7353516, -0.7368164, 1.3046875, -0.21447754, -1.6601562, 1.2949219, 0.49316406, 0.70703125, 1.2070312, -0.76953125, 1.4414062, -4.3710938, 0.61083984, 0.34960938, 3.2265625, 0.2685547, -1.4111328, 0.9589844, 3.0449219, 0.2734375, 0.6669922, 1.9882812, 3.7949219, 0.0020866394, 3, 0.25830078, -1.296875, -0.17993164, -0.09967041, 0.84375, -1.3359375, 1.125, 0.42333984, -0.9863281, -0.66845703, -0.58496094, 0.3310547, 0.16125488, 0.2590332, -0.09655762, 0.54248047, 0.62402344, -2.1816406, -1.40625, 3.40625, -1.7207031, -1.5595703, 2.9199219, 0.0073928833, 2.2226562, -1.3056641, -2.5488281, 0.77783203, -0.13012695, -1.8613281, 1.8535156, 0.85302734, 1.1113281, 0.64208984, -2.4101562, 1.9238281, -1.0107422, 0.027297974, -0.62353516, -3.15625, -0.7348633, -0.8701172, -2.3339844, 0.58740234, -2.3847656, -1.5800781, 2.3027344, 1.5859375, 0.23364258, -0.6064453, 1.2890625, -0.93408203, -1.2373047, 0.59472656, 2.2207031, -1.2060547, -2.7167969, 0.18273926, 0.47387695, -1.6357422, 0.8803711, -0.6972656, 0.29370117, -1.6513672, 1.8974609, 1.5693359, -0.7050781, -1.359375, -0.80078125, 1.0214844, -4.1914062, 0.70214844, -1.9765625, 1.3808594, -3.109375, -1.2851562, -1.3212891, -2.1601562, 1.0185547, -1.96875, 3.2207031, 1.6855469, 0.067871094, -1.1416016, -2.2675781, -0.40820312, -1.0673828, -2.4414062, 0.1817627, 1.4355469, -1.4414062, -1.4404297, -3.9941406, -0.07672119, -1.359375, -1.703125, 0.80029297, -0.43164062, -1.4140625, 0.23669434, -0.6772461, -1.3730469, -1.8779297, 1.2539062, 0.5473633, -3.03125, -0.5629883, -0.6279297, -1.015625, 0.4038086, -1.4140625, 1.1660156, -1.3125, 1.3896484, 2.0644531, -1.2958984, 1.8476562, -0.45996094, -2.875, 0.050750732, 3.6152344, 1.1328125, 1.9414062, -0.68115234, -0.71972656, -0.91503906, -0.9086914, 1.9755859, 2.9394531, 0.94433594, 1.5947266, -0.86621094, 1.3818359, -1.5302734, -0.18725586, 0.29736328, 1.2910156, 2.7304688, -1.1035156, 1.2128906, 1.03125, 3.5214844, -3.3242188, -0.6923828, 1.2832031, -1.1660156, 2.0292969, 0.4609375, -1.0107422, -0.2467041, 0.32348633, 2.578125, -0.40014648, 1.7353516, -0.32421875, 1.4667969, 0.64501953, 0.23925781, 0.6069336, 2.0429688, 0.34106445, -1.2851562, 2.2167969, 1.2275391, -2.1953125, 0.69921875, 0.3449707, 0.3227539, -0.2553711, 2.1503906, -0.34716797, 1.4882812, 1.1630859, -0.13476562, 0.11138916, -0.86328125, 2.2324219, 0.046905518, 1.28125, -0.97265625, -0.89404297, -1.9355469, -0.18518066, -2.5175781, 2.3007812, -0.009597778, -0.9604492, 2.1894531, -2.8691406, -1.1220703, -0.953125, 2.9433594, -0.97998047, -0.5209961, 1.0654297, 1.5488281, -2.6035156, -2.546875, -1.0175781, -1.4648438, -1.2080078, 4.015625, 2.3632812, -1.9599609, 0.96435547, -1.0107422, 1.8535156, 2.7128906, -0.12017822, -0.25878906, -1.5556641, 0.5083008, -1.7666016, -0.5078125, 0.36157227, 1.4804688, -3.7460938, -0.051208496, -0.6503906, 1.5332031, 2.5332031, 0.5673828, -0.55615234, -0.8769531, -1.3359375, 2.4726562, -0.46240234, 2.0332031, 1.1083984, 0.111450195, 1.6171875, -1.1826172, -0.546875, 0.28222656, -3.2617188, -0.8466797, -0.61621094, -0.97998047, 3.2675781, -0.33203125, 1.1435547, -0.36669922, 0.6699219, -4.2226562, -1.6445312, -1.5244141, 1.2060547, -2.4394531, -1.3994141, 0.34350586, 0.44677734, -2.2675781, -1.2480469, 1.03125, -1.9726562, -1.3212891, -0.6796875, 1.5058594, 0.68652344, -1.2490234, 0.78759766, -0.8222656, -0.083984375, -1.6113281, -0.17053223, -1.6914062, -2.1875, 3.4042969, 0.47509766, -0.20056152, 0.31591797, 1.9707031, 1.0683594, -0.51171875, 0.08288574, 0.19006348, 1.5292969, -0.82177734, -3.7734375, -0.29711914, -1.8662109, 1.5488281, -1.1210938, -2.5214844, 0.5161133, 0.14282227, -0.061676025, 2.0390625, 1.8505859, 1.0390625, -0.37060547, -2.9023438, 2.9726562, 0.9472656, -1.3017578, -1.4101562, -0.5161133, -0.44995117, 0.03930664, -1.8837891, -3.1875, 0.43774414, 0.027252197, 1.3154297, -1.7441406, 2.1425781, 1.4287109, 2.5722656, 2.5214844, -0.11279297, -0.23217773, 2.0683594, 1.8193359, 1.2880859, -0.3491211, 1.4902344, 0.42260742, 1.890625, 1.1875, -2.6972656, -0.9013672, 0.40722656, -2.1542969, -1.2285156, 1.2988281, 1.3505859, -2.0839844, -0.72216797, -2.5507812, -2.2441406, 3.7558594, -1.4873047, 1.8007812, -0.31347656, -0.71484375, -0.057006836, 3.2324219, 2.4902344, -0.0132369995, 1.5410156, -0.40551758, -0.5649414, 0.53466797, 1.1484375, -0.17285156, 1.1044922, -1.6054688, -0.2578125, 0.11730957, 1.4101562, -1.1669922, -1.1123047, 0.69140625, 2.9863281, 1.0380859, 1.4716797, 1.4238281, 0.14672852, 1.5576172, 0.9116211, -0.03286743, -0.30786133, -0.24658203, 0.76464844, 2.3066406, -1.6962891, -2.453125, 1.1230469, 0.28735352, -0.13342285, 2.3652344, 0.06506348, -2.3984375, 0.42114258, -2.7304688, -2.9648438, -0.45458984, -0.3630371, -1.0791016, -0.5131836, 1.8417969, 0.54541016, 1.0380859, 4.4023438, 0.44189453, -1.7304688, 0.94970703, -0.25610352, 1.0263672, -2.15625, -1.1396484, -3.3984375, 1.0625, -0.86328125, -0.75927734, -0.055786133, 0.5961914, 1.9716797, -2.3671875, -0.640625, 0.111206055, 0.8823242, -1.8886719, -0.6904297, 2.6679688, -0.56933594, 1.0400391, -0.5932617, -0.5205078, -0.91796875, 1.6630859, 1.140625, 0.7573242, -1.3730469, -0.5053711, -3.8828125, -5.8164062, -1.9384766, 0.56396484, -1.0302734, 0.8496094, -2.2792969, -0.66064453, 1.4550781, -0.85302734, 0.8261719, -1.7509766, 1.5683594, -1.0839844, -2.1328125, -0.9326172, 0.034729004, -0.02444458, 0.49975586, 0.0019035339, -0.36889648, -1.8964844, -2.5820312, -3.3339844, 0.3696289, -2.0742188, -0.56396484, -0.3713379, -1.2070312, 1.1259766, 0.28198242, 1.3447266, -0.42163086, 1.828125, -1.1191406, -0.06213379, 1.2841797, -0.98339844, -1.7548828, 1.4580078, -0.51416016, 3.2675781, 2.0507812, 0.69140625, -3.3710938, 1.5195312, -0.13122559, 0.99902344, -0.19360352, 1.1542969, 1.4521484, -0.58740234, 1.2558594, 3.0488281, -0.7080078, -2.6582031, -1.1503906, -0.9033203, -1.1142578, -1.265625, -1.5585938, -1.3066406, -0.067871094, 1.5302734, 1.1357422, 0.8588867, 1.4980469, 1.2226562, -2.453125, 1.5302734, -1.6181641, 1.2470703, 1.4443359, -1.3974609, -2.5839844, -3.4824219, 3.3164062, 0.50439453, -1.5361328, 0.059051514, -0.14611816, -0.56933594, 2.1015625, -0.3100586, 1.5048828, 1.2998047, 1.3154297, -1.9804688, 1.7978516, 1.90625, 0.16394043, 1.1796875, -0.17797852, 0.3642578, -0.44384766, 0.44458008, 0.47753906, -3.6757812, -1.3261719, 0.0070266724, 0.64990234, -0.84814453, -0.24621582, -0.15368652, -2.1601562, 0.2746582, -1.2294922, -1.1201172, -3.4003906, 1.2275391, 0.7680664, 0.27514648, 1.6953125, 1.3183594, -2.2910156, -0.22924805, 2.1484375, -1.0556641, -1.7919922, -1.6660156, -1.0478516, -0.26611328, 1.1132812, -2.9511719, 1.0732422, 1.0888672, 1.4277344, -1.4638672, 1.7792969, 1.2666016, 0.013809204, 1.4863281, 3.1230469, 5.0742188, -0.39990234, 1.6816406, -0.34179688, 0.80908203, 3.0566406, -1.2441406, 0.24523926, 1.5761719, 1.6992188, 2.5800781, -1.0761719, -0.87841797, 0.9223633, -1.5205078, -0.6269531, 1.1787109, 0.7739258, -2.6464844, 1.1826172, -1.0507812, -1.1728516, 2.5957031, 0.61328125, -1.7529297, -1.8291016, -0.32739258, -0.2692871, 2.4277344, -1.7138672, 0.52246094, 0.8959961, 0.59033203, 1.6894531, -0.1427002, 1.1992188, -2.1933594, -2.8203125, -0.75634766, 2.7714844, 0.7832031, 2.4335938, -1.0878906, 0.38989258, -0.49487305, 2.2753906, 1.8613281, 0.5698242, 2.4785156, -2.6542969, 2.2753906, 2.5839844, -2.4804688, 0.53125, 0.69970703, 0.77734375, -4.0585938, -0.5205078, 0.47094727, 0.1270752, 0.13720703, -3.5878906, -1.6435547, -1.9052734, 1.1279297, -4.1523438, -0.9555664, -0.95703125, -2.3203125, -0.042633057, 1.6992188, -1.7695312, 3.4804688, 0.55322266, -0.07373047, 1.2441406, 1.9238281, 0.7001953, -0.8022461, -0.6245117, 0.9277344, 0.29516602, -1.3417969, 2.3847656, 2.2734375, -0.07733154, -0.6298828, 1.9208984, 2.1289062, 1.6005859, -0.3095703, -0.6777344, 2.4492188, 0.6557617, -0.22546387, 1.515625, -0.44262695, 1.1738281, 0.93115234, -0.17346191, -0.2998047, -0.77978516, 0.3256836, 1.3007812, -4.453125, -1.2041016, 0.5595703, -0.9291992, 0.6508789, 0.46923828, -1.6396484, -0.32006836, -0.3762207, 0.41064453, -3.9570312, 0.4794922, -2.5722656, 0.64746094, -0.67529297, -1.5761719, -0.10144043, 1.0341797, -1.8681641, 0.2902832, 1.3701172, -0.5498047, -0.57910156, -0.9926758, -0.10101318, 0.36987305, 0.73339844, 0.45410156, -0.21716309, 0.14025879, -1.0292969, 0.51708984, -1.4833984, -1.2197266, 0.29638672, 2.859375, 2.0332031, 1.0214844, 1.3320312, -2.3867188, 0.097717285, -1.9716797, 1.7177734, 0.7011719, -0.16796875, 0.18078613, 1.5810547, 4.1171875, -2.1542969, -1.3554688, -0.30273438, 0.55615234, 2.0234375, -1.0947266, 0.5361328, 0.85595703, -0.57714844, 0.69140625, 4.5195312, 4.9257812, -1.0097656, 1.1142578, 1.9580078, -3.3417969, -2.6738281, -0.46411133, -0.19274902, -0.49951172, 0.828125, 2.3476562, 2.609375, 0.7397461, -0.5395508, -2.2929688, 0.22839355]}, "B07B8SN67W": {"id": "B07B8SN67W", "original": "Brand: Blaze Grills\nName: Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane\nDescription: Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you're hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.\nFeatures: DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output\nSTAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment\nKEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements\nPUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start\nEASY CLEANUP: Full-width drip tray offers quick and easy cleanup\n", "embedding": [-3.7304688, 1.9755859, 2.34375, -0.21826172, -0.421875, -0.28344727, 1.1445312, -0.8300781, -0.77197266, 2.3769531, 0.08068848, -0.6123047, 0.23730469, -2.0722656, -2.203125, 0.1685791, 0.2788086, -0.5307617, 2.0546875, 1.0439453, 0.7890625, 1.0791016, 1.4951172, -0.6660156, 0.8496094, -0.6611328, 2.4746094, -3.7226562, -1.8623047, -1.0146484, 2.4316406, 0.31079102, -0.5131836, 0.98046875, -3.375, 0.2409668, -0.66845703, 1.0898438, -2.9453125, -1.40625, -1.5351562, -0.98046875, 2.5351562, 1.4609375, -2.4296875, 0.12219238, -0.39160156, 0.03161621, -0.71777344, -1.1181641, 0.5209961, 1.2382812, 0.012924194, 0.32666016, -1.5195312, 0.83935547, 1.2666016, -2.2714844, 2.6679688, 0.85791016, 2.9238281, 1.7021484, -3.1269531, 2.15625, -0.97802734, -0.8491211, 0.48706055, -0.8359375, -0.099975586, 0.8310547, -0.5361328, 0.082214355, -1.3349609, -0.29785156, 0.9169922, -1.8818359, -1.1445312, 2.3242188, 2.0488281, 0.29345703, -2.2890625, 4.0859375, 0.83740234, -1.2695312, -0.4177246, 0.5366211, -1.375, -0.8989258, 2.7832031, 0.3774414, -2.125, 1.2490234, -1.8417969, -3.0410156, 1.4980469, -2.4589844, 3.3046875, 0.0057525635, 0.5859375, 1.6191406, -2.3886719, 0.8232422, -2.390625, 1.5351562, -2.6230469, -0.88916016, 2.6132812, 1.3779297, -0.93408203, 0.86083984, -2.7421875, 1.2333984, 2.1640625, -0.2454834, 1.1044922, -0.8691406, -0.32202148, 1.3349609, 3.109375, 1.9814453, 3.1152344, 0.56933594, 1.0517578, -1.4912109, 1.46875, 1.5722656, -0.109802246, 1.7373047, 3.4707031, -1.8808594, -1.0419922, -3.2832031, 2.3398438, 0.030944824, -0.89404297, -1.6494141, -1.4912109, -1.1103516, -2.9042969, 0.6201172, -1.6513672, 1.78125, 2.3847656, -0.5708008, -3.1035156, 0.05441284, -0.25634766, 1.0878906, -0.23242188, -2.7011719, -0.39868164, -1.4345703, 1.2832031, -1.4990234, 2.0429688, -0.68359375, -0.5854492, -1.3378906, 4.4179688, 0.7817383, -0.98095703, -2.4902344, 0.31982422, 2.1464844, -0.85498047, -2.9101562, 0.3371582, 2.515625, -0.28857422, 1.9013672, -0.8173828, -2.5039062, -0.49780273, -0.8457031, 1.0546875, -2.1914062, -1.2675781, 1.4599609, -0.3713379, -0.8178711, -0.6928711, -1.9482422, 1.1748047, 1.5019531, 1.2646484, -2.5117188, 1.3447266, 0.36547852, 1.3261719, -2.3554688, -1.875, 1.2568359, 0.8149414, -0.6386719, -0.35058594, -0.39990234, -1.0136719, -1.9560547, 0.9223633, -0.73583984, 0.30517578, -1.5664062, -0.3779297, -0.07751465, -2.3222656, -2.1699219, -0.8256836, -0.5058594, 1.5634766, 1.8212891, 0.9848633, -0.9086914, 2.9394531, -1.6845703, -0.52001953, -1.1318359, 1.4853516, -0.11657715, 2.5585938, 2.1054688, -0.7158203, -2.6425781, 1.4453125, 3.8730469, -0.084472656, 1.0966797, 1.5390625, -0.22827148, -1.7119141, -0.15808105, 1.5419922, 2.2460938, 0.7260742, 1.1835938, -0.7421875, 2.84375, 0.73095703, -2.5195312, -0.4404297, 0.87060547, 1.8203125, -1.5722656, -1.0869141, -1.2851562, -0.8911133, 0.7480469, -1.4150391, 3.2109375, 0.98339844, -0.11138916, -0.56933594, -1.328125, 2.6933594, 1.0429688, -0.3474121, -1.3505859, -0.42749023, -0.12878418, -2.4511719, -3.3164062, 2.1289062, -0.19470215, -0.91259766, -0.09991455, 0.014022827, -0.004360199, 2.3574219, 1.6074219, -2.8945312, 0.064819336, -0.29101562, 0.9433594, 1.8349609, -0.6333008, 1.5585938, 1.1826172, -0.8173828, 3.53125, 0.8769531, 0.9902344, 0.58935547, -1.1279297, 2.7011719, -1.0107422, 0.43701172, 1.9199219, 2.4902344, 0.03564453, -2.3242188, -0.3005371, 4.9414062, -0.59765625, -1.6630859, 2.1914062, -2.7929688, 1.3154297, 0.009414673, 0.47387695, 1.0664062, 0.27856445, 1.6796875, -0.23339844, -0.32739258, 0.7705078, -1.5498047, -1.1015625, 2.0371094, -1.4355469, 0.50927734, 1.4238281, 2.1601562, 0.67578125, -3.1816406, -3.0527344, -1.1357422, -1.7128906, 2.25, -3.3828125, 2.0039062, 1.7070312, 1.0478516, 1.8339844, -1.1992188, -1.1796875, -0.3059082, -0.81103516, -0.45239258, 0.097717285, 0.024261475, -1.328125, -1.8701172, -1.2158203, 0.30810547, -0.90478516, -0.78027344, -2.2695312, -1.0097656, -1.9716797, 0.43652344, -2.4863281, 0.5800781, 1.1982422, -2.3535156, -0.5810547, -1.2685547, -3.2695312, -1.7128906, -1.125, -2.5410156, -1.0185547, 0.23449707, 0.4489746, -1.8955078, -4.3867188, 1.0986328, -2.859375, 0.74316406, -0.36328125, -0.9394531, 0.5546875, -2.25, -0.734375, 0.11651611, 0.5366211, 0.5410156, -1.7158203, -0.46044922, -4.4648438, 0.04269409, -1.2314453, 0.5058594, -3.0175781, 0.55908203, -1.640625, -1.4453125, -1.6279297, -0.6567383, 2.4765625, -0.4675293, 0.8857422, 0.32788086, -1.1025391, 1.0771484, 0.8105469, -3.5097656, 0.37719727, 0.14978027, -1.9472656, -1.6855469, -3.3652344, -0.22753906, 0.06286621, 0.65527344, -1.5380859, 1.5947266, -0.6533203, 1.015625, -1.4570312, -1.4501953, 0.46142578, -0.25073242, -2.921875, -2.0097656, -2.4921875, -1.9316406, 0.14538574, -2.2460938, -0.022506714, 1.3271484, -0.3737793, -0.30517578, 2.4257812, -0.8041992, 1.0449219, -1.921875, -2.1484375, 1.6542969, 0.76904297, -2.3964844, 3.0175781, -1.6933594, -1.4990234, -3.7851562, -1.0517578, 3.0761719, -0.06652832, 2.1445312, -0.25610352, -0.78271484, 0.7182617, -1.0566406, 0.16345215, -2.0683594, -0.56396484, 3.5351562, -1.9648438, -2.3847656, 0.83935547, 3.1972656, -2.9960938, -1.1923828, 3.5683594, 0.2919922, 1.0947266, 1.6162109, 1.7763672, 1.1650391, -2.2011719, -1.1386719, 2.0566406, 1.3486328, 0.36865234, -2.4902344, 0.9790039, -0.42871094, 0.36938477, 1.1572266, 1.1835938, 1.8945312, 3.4199219, 0.51660156, -1.9697266, -0.35107422, 0.4638672, 1.7294922, 1.2441406, 2.7636719, -1.5302734, -1.4785156, -1.6982422, -1.3085938, 1.9082031, -1.3251953, -1.125, 3.0507812, -0.2854004, 0.71240234, 0.5698242, 0.15600586, 0.20605469, -2.0957031, 1.4384766, 0.017700195, -0.62646484, 0.7368164, 0.16503906, 0.054473877, -2.3867188, 1.09375, -1.1103516, -2.046875, 0.03781128, 1.7207031, 0.7207031, -2.859375, 0.030441284, 0.64746094, -0.9423828, 3.3808594, 2.2148438, 0.017608643, -0.11138916, -1.3808594, 2.8144531, 0.359375, -1.6621094, -0.44140625, -1.2998047, 0.3955078, 0.66845703, 1.2412109, 1.6279297, 1.3085938, -0.7290039, -0.84765625, -3.3867188, 1.0507812, 0.4951172, -0.4855957, -3.3417969, 2.1816406, 0.52978516, 0.765625, -0.69433594, 2.7402344, 0.101989746, -0.50390625, 2.4726562, -3.7167969, -1.3994141, -2.8300781, -3.8496094, 0.8256836, -1.0527344, -0.6459961, 1.5117188, -0.5732422, -0.5073242, 1.0058594, -0.625, -3.3535156, -1.7294922, -1.8925781, -0.97265625, -1.375, -2.4628906, 0.46289062, 0.7553711, -1.0761719, -1.9501953, -0.030303955, 0.69091797, 1.9501953, 2.359375, -1.4453125, 2.2226562, -1.4492188, 0.40454102, 0.9970703, -0.44213867, 0.2758789, -2.1308594, -0.33203125, -2.8945312, 0.56591797, -0.48608398, 1.0771484, 1.5107422, 2.9179688, 1.0332031, 0.6899414, -1.4345703, 2.4765625, 0.94921875, 0.3203125, -2.0429688, -2.359375, 1.9335938, 1.6992188, 0.5883789, -0.64697266, -0.5839844, -1.5390625, 0.78759766, 0.4255371, 1.0351562, 2.0722656, 1.1826172, -2.9921875, -0.43164062, 1.1748047, -1.5751953, -1.6357422, -0.88134766, -0.19616699, -0.9790039, 1.9169922, -2.5175781, 0.8276367, -0.07574463, -0.34033203, -2.9140625, 2.5507812, 2.3144531, 2.3125, 3.1972656, -0.52734375, -2.7148438, 2.78125, 1.2207031, -1.2333984, 1.3984375, -1.1152344, -0.29467773, 2.3964844, -0.22827148, -0.86328125, -0.36816406, 1.8730469, -1.4775391, -1.8916016, -0.6660156, 0.11553955, 0.5488281, 0.2479248, 3.1425781, 0.78027344, 2.8496094, -1.5615234, -1.9414062, -0.3413086, 1.4375, -0.31298828, 0.61621094, -0.23999023, -0.43798828, -0.098083496, 2.3945312, 1.2998047, -1.1113281, 1.1582031, 0.26464844, 3.1054688, 0.58984375, -0.6972656, -0.94921875, 0.80566406, -0.8535156, -1.0048828, 2.4492188, 2.6855469, -0.18066406, 1.7646484, 0.8745117, -1.9550781, 2.3964844, 1.3603516, -4.0234375, -1.6357422, 1.328125, -1.6181641, 0.16125488, 0.8979492, -3.3359375, 0.23205566, 2.1953125, 0.23413086, 1.0751953, -0.18017578, -1.1259766, 0.12731934, -2.4296875, -0.95751953, -2.0390625, -0.30004883, -1.7988281, -0.35180664, -0.105285645, 0.44189453, 1.2587891, 1.3183594, -0.9941406, -1.0683594, 2.4882812, -0.56396484, 1.0283203, 0.5625, -0.24584961, -2.0410156, 0.002960205, 2.7109375, 0.8383789, 2.1660156, 1.8046875, 2.5410156, -2.0507812, 0.6425781, -1.4101562, 3.8613281, -2.4511719, -0.38598633, 3.0273438, -1.0166016, -2.0488281, -2.9296875, 0.9458008, -0.9477539, 2.34375, 1.0898438, -0.8125, -0.5004883, 2.0078125, -2.0996094, -5.3007812, -0.22131348, 0.13391113, -0.5019531, 0.9145508, -1.0527344, -1.1015625, -0.8173828, 1.1318359, 0.15991211, -1.0947266, 0.7392578, -1.7626953, 0.3972168, -1.7412109, -0.18200684, 1.9052734, 0.101501465, 0.04031372, 0.96435547, 0.10406494, -3.6640625, -1.4277344, 0.97509766, -1.5908203, 0.30737305, 1.3183594, -0.023101807, 0.6591797, 2.4121094, -1.171875, -2.4746094, 0.7807617, -1.7158203, 0.27514648, 0.24975586, -1.2900391, -0.36450195, 0.6333008, 0.1809082, 0.32128906, -1.1425781, -2.0859375, 1.1513672, 0.7758789, -0.84814453, 0.8935547, 0.86865234, -1.0195312, 1.1337891, 0.11175537, 1.2041016, 1.0048828, 0.7910156, -1.1386719, -2.609375, -2.8613281, 0.7128906, -2.6191406, 0.7573242, -1.5253906, 2.0664062, 2.5351562, -0.18933105, 2.5371094, 0.7939453, -0.53271484, -1.4970703, 0.8261719, -0.38305664, 4.1367188, 2.0644531, -1.359375, -1.0615234, -2.5390625, -0.04852295, 0.4753418, 1.0615234, -2.4414062, 0.8725586, -0.29052734, 0.5107422, 0.27856445, 2.4785156, 2.65625, 1.2978516, -1.0195312, 0.88671875, 2.6035156, 0.58496094, 1.7480469, -0.27294922, 0.7792969, -0.33081055, 4.3398438, 0.89208984, -1.6269531, 1.2314453, -1.6796875, 0.94189453, 1.5634766, -0.8857422, -1.8115234, -2.2890625, -1.3447266, -1.4238281, -0.8173828, -1.6210938, 2.5703125, 1.3916016, -0.88916016, 0.2388916, 3.2773438, -0.734375, 1.7988281, 2.6230469, 0.9941406, 1.9980469, 1.2294922, -0.3503418, -0.8496094, 1.6601562, -2.5664062, 0.3762207, -0.10412598, -1.9775391, -2.34375, 1.4492188, 0.7871094, 2.1972656, -0.9555664, 1.1904297, 1.5361328, 2.1933594, 4.0351562, -0.7792969, 1.9755859, 1.1347656, -0.29345703, 0.23937988, 1.7314453, 1.8369141, -0.80566406, -0.6274414, -0.3605957, -1.7685547, -0.89941406, -0.28759766, -0.4296875, 2.4296875, -3.6855469, 2.7871094, -0.17102051, 1.3564453, -0.3232422, -0.34033203, 0.69433594, -1.2578125, -1.53125, 2.4433594, 1.5634766, -1.0615234, 1.7978516, -1.6582031, -1.3144531, 0.25463867, -3.3085938, 0.7373047, 0.27563477, -1.0996094, 0.08850098, 2.1914062, 1.3798828, 1.8339844, 0.4753418, 2.0761719, 1.3837891, -0.1694336, 1.0283203, -0.86035156, -0.5996094, 0.9189453, 3.9179688, -1.7734375, -1.9951172, 0.5527344, -0.48291016, -3.453125, -4.5546875, 1.6826172, 1.9277344, 2.0117188, 1.6240234, -2.1035156, 3.890625, -1.2519531, 1.9033203, -2.5175781, 1.8886719, -0.6713867, 0.066223145, -1.0087891, -0.29418945, 0.34887695, 2.3515625, 1.3144531, -1.1328125, 2.4492188, 0.6323242, 1.9121094, 0.984375, 2.1894531, 0.9189453, 0.099243164, 0.75634766, 2.859375, 1.3105469, -1.6113281, -0.9291992, 2.0625, 0.50634766, 1.1787109, 2.0625, -2.2050781, 0.81933594, -1.4335938, 0.12976074, 0.34228516, -1.34375, -1.2607422, 0.6743164, -1.1357422, -1.0507812, -1.953125, 0.2770996, 1.6601562, 0.14794922, 0.15759277, 1.0791016, -0.8588867, 2.0371094, 1.2470703, -0.7294922, -0.5410156, -1.3603516, 0.22814941, -1.3476562, -1.5341797, -0.033081055, 1.1044922, 0.95703125, -2.3398438, -0.51464844, -1.5136719, -0.37963867, 0.15979004, 2.2246094, 0.45776367, 0.6958008, 1.6650391, -0.07623291, -0.29052734, 2.3828125, -0.39794922, 0.8491211, -2.6503906, -1.296875, -1.0117188, 0.7338867, -1.4882812, 1.1923828, 3.8183594, 2.6835938, 0.53515625, -1.7587891, -2.5898438, -1.03125, 0.13342285, 1.2871094, -0.069885254, -0.81884766, -0.6635742, 0.26831055, 1.3818359, -0.24523926, -0.46191406, 0.7260742, -0.92285156, 0.79248047, 0.7910156, 2.015625, -1.6152344, 1.1914062, -1.71875, 1.6787109, 1.96875, -0.22607422, 3.5742188, 2.8789062, 0.70410156, -3.046875, 0.57958984, 0.40698242, 0.36547852, 0.73291016, 1.4492188, 1.5986328, 2.1289062, -0.058502197, -2.4316406, -1.3564453]}, "B08KHCX3CW": {"id": "B08KHCX3CW", "original": "Brand: Dumble\nName: Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose\nDescription: \nFeatures: \n", "embedding": [-0.3930664, 0.09857178, 0.40234375, 0.45092773, -1.2685547, -0.43237305, 0.46044922, -1.7568359, 2.0136719, 0.33496094, 1.0078125, 2.4648438, 1.8115234, -2.4277344, 2.2558594, -1.1220703, 1.5986328, 2.171875, 2.6542969, -0.33642578, -0.12731934, -0.6958008, 2.875, -0.46728516, 0.2944336, -0.6269531, 3.7441406, -1.2626953, -3.3730469, 0.25756836, 1.2128906, -0.34350586, -0.5292969, 1.2285156, -1.40625, -1.6611328, 0.6020508, -0.7602539, -2.2890625, 0.7631836, -1.9726562, 1.1367188, -0.6870117, 0.6870117, -3.2148438, -0.47094727, -0.47094727, -0.67822266, 0.8359375, -0.06365967, 1.0751953, -0.31420898, -0.22839355, 0.24365234, 0.37963867, -0.27856445, -0.77197266, -2.6484375, 1.3134766, 1.4160156, 0.9848633, 1.5566406, -1.8447266, 0.27441406, -0.72753906, 1.5957031, -0.3725586, 1.0634766, 0.72509766, -0.024124146, 0.4182129, 1.4658203, 0.12902832, -1.2314453, 0.20605469, 1.140625, -2.8632812, -0.06500244, 1.9824219, -2.46875, -0.9746094, 1.2001953, 0.59716797, -1.4863281, -1.5654297, -1.0507812, -1.4990234, -0.9628906, 1.3125, 0.52978516, -3.7675781, 1.8808594, -1.8359375, -4.4804688, 1.0283203, 0.78466797, 0.40795898, 0.24475098, 1.8720703, -0.9267578, -1.7861328, -1.0205078, 3.4179688, -0.79052734, -1.4941406, -1.6865234, 0.32104492, 2.1171875, -1.7822266, 0.56347656, -1.3847656, 0.93896484, 2.3144531, 0.24450684, 0.8198242, -1.5439453, 1.0292969, 1.3554688, 2.8378906, -0.052703857, 2.0839844, -2.8945312, 1.3496094, 1.0537109, 1.4902344, 0.6401367, 0.7348633, -0.56152344, 1.3935547, -0.18981934, 2.6347656, -0.43237305, 2.453125, 1.2861328, 2.0976562, -1.6757812, 0.36889648, -2.4511719, 0.70166016, -2.59375, -3.2988281, 0.24023438, -0.08477783, -0.89746094, -2.9316406, 0.093566895, -1.3896484, -0.8232422, 0.96435547, -3.671875, -0.93310547, 0.51416016, 0.6484375, -1.2558594, 0.05682373, 1.5478516, -0.16760254, -0.50146484, 1.9931641, 1.6191406, -1.3808594, 2.4101562, -2.0058594, 1.9873047, -0.80322266, -2.5078125, 0.7495117, -0.38598633, -1.1416016, 0.9370117, -1.8759766, -2.71875, -1.3808594, -0.5102539, 0.30444336, -0.79785156, 2.046875, -0.20153809, 0.74658203, 0.38671875, -3.2265625, -0.8066406, -0.44848633, -3.09375, 3.453125, 0.3696289, 1.3222656, -1.8193359, 0.5019531, 0.6508789, -1.0244141, -1.0751953, -0.84814453, 2.1113281, -1.3574219, -1.7236328, -2.2441406, -1.5527344, 2.4375, 2.4765625, 0.28930664, -1.2539062, 1.7861328, -0.12371826, 0.30371094, -3.0175781, 3.3828125, -0.027160645, -0.5463867, -0.39526367, -0.22912598, 0.024215698, 2.8945312, -0.011260986, -1.0410156, -1.8564453, -0.3605957, 1.2226562, 2.265625, 1.3857422, -1.5292969, 0.55029297, -1.0087891, -1.8935547, 1.2763672, 0.28271484, -0.61376953, 1.7734375, -2, 0.32226562, 1.6748047, 3.8945312, -1.2392578, -1.9960938, 1.0898438, 0.9707031, -0.17663574, 0.5703125, 0.9423828, 0.9448242, 0.8022461, -0.90966797, -2.8320312, -0.61816406, 1.2724609, -0.20263672, -0.83447266, 1.2490234, -0.43847656, -0.35131836, 0.9033203, 1.34375, -1.1943359, -0.5551758, -1.1005859, -1.2753906, 0.7265625, 0.0881958, 0.58984375, -0.6088867, 1.7529297, -1.4755859, 0.45336914, 2.1132812, 0.18347168, 2.0898438, 1.6689453, -1.9755859, -0.43774414, -1.1748047, -2.0976562, 3.8203125, 2.03125, -0.60498047, -0.64697266, 1.5595703, -3.375, 0.4248047, -1.5439453, 1.7880859, 0.20275879, -0.056274414, 1.4472656, -1.4570312, 0.7416992, -0.7348633, 0.2619629, 0.83447266, -3.2636719, -1.0869141, 3.5898438, -0.49487305, -1.1015625, 1.4609375, 1.2568359, 0.85595703, 1.9199219, 0.05596924, 0.63720703, 0.18981934, 1.4023438, 0.94189453, -1.1689453, 0.67333984, 0.9921875, -1.3203125, -1.3359375, 1.7949219, -0.34570312, -0.33325195, 0.7578125, -0.7050781, -1.2939453, -0.19934082, -1.3710938, -0.40649414, -0.6147461, -1.7148438, -0.9453125, -0.25219727, -0.42700195, -0.35058594, 0.6352539, 0.008003235, 2.1738281, 1.0410156, -2.0839844, -0.53466797, 1.8710938, 1.3798828, 0.18701172, -0.8203125, -2.1328125, -1.1308594, -1.3798828, 0.7753906, -2.8828125, -4.3203125, 1.6816406, -1.6748047, -0.9355469, -0.16809082, 1.4462891, 3.3730469, 2.7226562, -0.014831543, -1.6347656, 0.97509766, -2.484375, -1.7080078, 1.0068359, 1.0986328, -1.1845703, -3.4863281, -1.4873047, 0.5161133, 0.15258789, 1.6347656, -1.5986328, 0.91552734, 1.8925781, -0.5019531, 0.13452148, -1.0302734, -0.16711426, -0.43164062, 1.5683594, -2.5664062, 1.9580078, 1.7792969, 1.3945312, -0.8432617, 1.1601562, -0.8183594, -0.9926758, 0.52490234, -0.5908203, 3.1191406, -0.95214844, 0.099121094, -1.1210938, -1.7060547, 1.5185547, -1.8486328, -3.578125, 0.7915039, -1.0595703, -1.5185547, 0.09844971, -2.7558594, 0.7397461, 0.9838867, 0.88671875, 0.21166992, -1.7060547, 0.29516602, 0.98339844, -0.21203613, -1.546875, 0.12145996, 0.11975098, -0.65283203, -1.9414062, 2.4941406, 1.4248047, -0.12939453, -0.5732422, 0.41235352, 0.5957031, -1.1210938, -0.43530273, 0.8120117, -0.0002270937, 1.5244141, -0.006088257, -2.6640625, 0.8852539, 0.23217773, -2.2050781, 1.2060547, -0.52197266, -0.48461914, -0.07342529, -1.2138672, 2.4003906, 1.2490234, 2.7109375, 0.578125, 0.6484375, -1.0556641, -0.57910156, -3.1230469, 0.020812988, 2.2578125, 3.6679688, -2.390625, -1.0585938, -0.41748047, -0.31054688, -2.7578125, 0.7011719, 1.4365234, 0.58740234, 1.1787109, -0.012130737, 0.69628906, -0.48535156, 0.5019531, 0.8017578, 0.12524414, -3.7070312, 0.21398926, 1.2675781, -0.66503906, -0.52490234, 1.4404297, 0.7451172, 0.56884766, 0.8334961, -0.1583252, 0.71533203, 1.1230469, -0.23205566, 1.0527344, 0.23730469, 0.34570312, -0.7089844, 1.1220703, 0.77490234, 2.1601562, 2.2128906, 0.8105469, -2.0117188, 1.8662109, 2.1230469, -1.1757812, -2.2949219, -0.6010742, -0.6430664, 0.21887207, -0.84033203, 0.40795898, -0.07159424, 0.7636719, 2.2207031, -1.0507812, 0.5576172, -1.8447266, 1.3632812, -1.1279297, 1.7490234, -0.05014038, -0.60595703, -2.6679688, -1.0849609, -0.53466797, -2.7207031, 0.39819336, 0.8408203, 1.7167969, 1.296875, 2.2441406, 1.6240234, 0.47607422, 2.3320312, -2.6386719, 0.05895996, -2.5136719, -0.85009766, 0.6386719, -1.2216797, 3.1367188, -1.0957031, -2.8339844, -1.1083984, -3.078125, -0.36547852, 0.9003906, 0.5126953, -1.7734375, -0.023254395, -0.72998047, 0.7080078, 1.7851562, 2.6484375, 0.9628906, 0.7558594, 1.9316406, -0.80810547, 0.10876465, 0.64208984, -2.0957031, -0.045776367, -2.3261719, 0.7338867, 1.6699219, -0.3034668, 0.25756836, 1.5292969, 0.6269531, -3.2246094, -1.8212891, -0.45239258, 0.62158203, -2.3398438, 0.04168701, 1.8662109, -0.57421875, -1.2285156, -1.1142578, -0.6347656, -2.2363281, -0.2421875, -0.21350098, -3.1953125, -0.7133789, 0.29467773, 0.85546875, -2.4472656, -0.35546875, 2.3652344, -0.11212158, -0.9316406, -4.3007812, 1.9169922, -0.4567871, 0.3671875, 1.2226562, 3.1074219, 0.31347656, 1.1982422, 2.0195312, -0.1439209, 1.0302734, 0.30444336, -1.8808594, 1.1181641, -0.5390625, 1.7597656, 0.9926758, -1.5351562, -0.6933594, 0.15686035, -1.0927734, 1.2998047, 0.16357422, -0.46777344, 0.7348633, -0.6328125, 2.5019531, -0.058135986, -1.015625, 1.6513672, -1.0185547, -0.81103516, 0.35498047, 1.4199219, -1.1757812, -0.08392334, 1.4287109, -0.32788086, -0.34033203, 1.1582031, 2.0761719, -0.27075195, -0.8486328, -0.8540039, -2.2363281, -1.9638672, 1.2060547, 0.8486328, -1.0966797, -0.19042969, 0.16210938, 0.85839844, 3.3378906, -0.6713867, -0.41308594, -0.55810547, -1.4326172, -1.0009766, -0.20324707, 1.1289062, 2.40625, 0.14794922, -0.8901367, -1.4091797, 3.1953125, 0.85009766, 1.5927734, 3.3867188, 0.3869629, -0.9848633, 2.6679688, 2.0371094, 1.5869141, 0.46850586, -1.7685547, 2.2929688, 2.7792969, 0.1038208, 1.8027344, 1.9853516, -0.8930664, -0.9091797, 0.7792969, -0.46850586, -0.73779297, 1.5751953, 1.4160156, 0.2232666, 2.8007812, 2.3144531, 1.4853516, -0.8466797, 1.1513672, 1.9306641, 0.6074219, -1.125, -0.9140625, -2.2695312, 1.8867188, -0.21496582, -2.1210938, 2.0351562, 0.7988281, -1.1113281, 2.2363281, -0.79785156, -0.15710449, -0.12548828, -0.17236328, -0.16003418, 0.55908203, -0.6870117, 1.8310547, -0.61572266, 3.0117188, 2.0351562, -0.6352539, -0.42944336, -0.9355469, 0.095458984, -2.0449219, -1.8056641, 0.026123047, -2.2578125, -1.0253906, -2.5390625, -0.12695312, -0.15637207, -0.25708008, -1.3476562, 1.3652344, -0.026168823, -2.3710938, -1.6962891, -0.42407227, -1.3076172, -1.7832031, 0.3413086, 2.8515625, -0.5019531, -1.1621094, -1.4277344, -0.9941406, 0.92529297, 2.0820312, 0.6113281, -0.29101562, -0.9404297, 0.5805664, -2.9882812, -3.1445312, -1.9130859, -0.35009766, -0.32836914, 0.1439209, -3.0605469, -0.6171875, 3.0117188, -2.0507812, -1.1865234, -2.5390625, 0.5546875, -1.8681641, 1.1201172, -0.69677734, -1.7109375, 1.0048828, -1.0859375, -1.4160156, -0.18347168, 0.5473633, -0.14611816, -3.4570312, 2.4160156, -2.1679688, -1.6425781, 3.4238281, -1.4189453, 0.6982422, 1.0839844, -0.020858765, -1.5927734, 2.4238281, -2.2714844, 0.115722656, -2.484375, -2.1601562, 1.0136719, 0.35839844, 1.9199219, -0.24768066, 3.3671875, 2.40625, -0.88964844, -0.84716797, 0.38305664, -1.4707031, 1.3710938, -0.9404297, 0.42089844, -1.6425781, -0.03152466, 0.36889648, -0.97021484, -1.109375, -0.20935059, -0.6738281, 0.14904785, 0.09008789, -2.1953125, 1.6464844, 1.1689453, 1.9492188, -1.7490234, 1.8457031, 1.1816406, 0.5419922, 1.2832031, 0.39453125, -1.5263672, 1.3613281, 2.5097656, -0.9301758, -3.1328125, 1.2539062, 1.7060547, 2.5195312, -1.5537109, 1.28125, -1.2285156, -1.5410156, -0.35327148, -0.20397949, 0.9868164, 0.49414062, 2.8378906, 0.09466553, -0.33081055, 1.7255859, -2.7089844, 0.3178711, -0.49243164, 0.52685547, -1.3134766, 1.765625, 1.4775391, -2.1328125, 0.1517334, 0.5161133, 2.3496094, 1.6513672, -0.9194336, -0.28808594, -2.0566406, 0.8076172, 0.90185547, -0.88964844, -1.8603516, 0.9296875, -1.1875, -1.3759766, 2.6992188, 0.5908203, -0.029846191, -1.0615234, 1.1865234, -0.13391113, -0.4116211, -0.18676758, 0.33422852, -1.7294922, 0.9003906, -0.8256836, 1.0429688, 0.6870117, 1.1904297, 0.26635742, -1.2197266, 0.3881836, 0.8022461, 1.7685547, 2.6933594, 3.1601562, 0.4194336, 0.9135742, 2.2109375, 2.9199219, 0.48657227, -2.7929688, 0.9628906, 1.015625, -1.8896484, 0.84033203, 0.8359375, -2.3125, 0.9536133, 0.76220703, 0.24108887, 1.2939453, 1.4501953, -0.76464844, -0.8588867, -0.034301758, 0.83740234, -1.8417969, 0.41674805, -1.4882812, 0.21801758, 2.0429688, -0.4555664, 0.5761719, 2.1699219, 1.5214844, 2.3007812, -1.0996094, 2.4609375, -0.42285156, -0.26879883, 0.20153809, -1.5273438, 0.9404297, -0.84228516, 0.07952881, 0.10101318, 1.6933594, -1.6845703, -0.17773438, -0.27270508, 0.6401367, -2.5078125, -0.8417969, 0.25097656, 0.9692383, 2.7695312, -1.6005859, 2.0996094, 3.4589844, -0.8540039, -4.5625, 0.9682617, 2.6445312, 0.31713867, 0.17932129, -2.1816406, 0.7753906, -3.1171875, -1.6279297, -1.5498047, -0.8232422, -0.24401855, -0.21984863, 0.7636719, 1.0976562, -1.6455078, 0.32641602, -0.75146484, 0.7211914, 0.7260742, 1.3310547, 2.8945312, 0.5473633, 0.101135254, 1.2832031, -0.74853516, -1.8486328, 2.8085938, -1.7509766, -2.03125, -0.22570801, 3.7304688, 0.7734375, 0.4909668, 1.3398438, 2.6621094, 2.0195312, 0.6279297, 0.7949219, -0.9580078, -0.8989258, -0.026046753, 0.9941406, -2.15625, 0.6923828, -2.1425781, 0.6616211, 1.2490234, -1.9433594, -0.0836792, 2.1953125, -0.6899414, 1.234375, -1.0234375, 0.17321777, -2.2402344, -0.7324219, -1.0458984, -0.05114746, -0.4189453, -0.9082031, 0.7705078, -2.1425781, -0.17480469, -3.75, -1.3251953, -1.7880859, -0.99072266, -0.08532715, -0.3400879, 0.6088867, 0.2220459, -0.6777344, 1.2832031, 3.1054688, 1.2304688, 1.9667969, -0.48901367, 0.9135742, -1.1523438, 0.60253906, -0.8286133, -0.005748749, 1.1611328, -1.6660156, 1.5302734, -1.2939453, -3.2929688, -1.4296875, -2.65625, 0.08459473, -1.2089844, 1.2910156, -0.21691895, 2.2929688, 3.2207031, 0.0030212402, 1.2333984, 0.54785156, -0.94628906, 2.328125, 0.56591797, -1.3515625, -2.1484375, -0.9980469, 0.59814453, 3.0820312, 2.0820312, 0.99072266, -0.6503906, 0.27856445, 0.25708008, -0.62890625, -0.6352539, -0.018798828, -1.5537109, 1.9160156, 0.80371094, 1.2636719, 0.4711914, -2.0644531, -0.69433594, -0.5522461]}, "B078KPHKZD": {"id": "B078KPHKZD", "original": "Brand: ThermoPro\nName: ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer\nDescription: \nFeatures: Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to \u00b10.9 degree Fahrenheit\nSuper long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands\nLock function: Kitchen thermometer can lock the current temperature; the reading won\u2019t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included\nBacklight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\nWide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking\n", "embedding": [-3.9902344, 2.1757812, 4.0898438, 0.9921875, -0.58984375, 1.3798828, -1.1171875, 0.73583984, 1.1533203, 0.6850586, 0.8261719, 0.064697266, -0.48339844, -1.0576172, 2.1347656, 1.6884766, 0.41430664, 0.12158203, 1.4003906, 2.5976562, 2.6582031, 2.53125, -1.4082031, -1.0019531, 2.0585938, -0.64501953, 2.1269531, -2.2265625, -0.296875, -1.3935547, 3.1796875, 3.5703125, 0.37817383, 1.0009766, -0.8901367, 0.4868164, -0.85791016, 0.109375, 0.20959473, 0.18640137, 0.46142578, 1.6728516, 0.31225586, 2.2675781, -2.8964844, -1.2089844, -1.8300781, 2.7890625, -3.0546875, 0.4350586, -0.65283203, 2.5898438, -3.21875, -0.5932617, 1.0976562, 0.98779297, -0.20288086, -2.4960938, 0.4038086, 0.40893555, -0.86572266, -0.1973877, -1.2001953, -0.06903076, 1.6025391, -0.64453125, 0.23266602, -2.9902344, 0.12976074, 0.1274414, 1.25, 0.8354492, 1.1835938, 1.1474609, 2.1347656, -1.5976562, -0.09265137, 1.0537109, 1.7539062, 0.40722656, 0.015914917, 2.4550781, -0.1348877, -2.7675781, 0.14404297, -2.203125, 0.1821289, 0.17626953, 2.6425781, -0.17041016, -0.3857422, 2.6230469, -2.1113281, -1.8740234, 1.4492188, -2.0800781, -0.87353516, -0.2446289, 0.07244873, 1.5566406, -1.2265625, -1.2890625, -0.033416748, 1.171875, -2.1933594, -2.1210938, -0.6928711, 2.0976562, -4.2734375, -1.3935547, -1.6835938, 0.80078125, 0.5415039, 0.29663086, -0.7548828, -0.45214844, 0.58496094, 0.54003906, -0.07434082, 1.0810547, 2.1425781, -1.1728516, 0.5961914, -0.2939453, -0.7211914, 0.39086914, 1.7666016, -0.09820557, 1.4716797, 0.023757935, -1.3710938, 0.09942627, 1.0664062, -1.8203125, 1.0439453, -1.7626953, -1.6015625, -1.6054688, -1.4082031, -1.6103516, -1.6337891, 1.4091797, -0.6015625, 1.5683594, -2.109375, -1.3193359, 0.9116211, 0.5205078, 3.1289062, -1.7001953, 1.7900391, -1.9296875, -1.0263672, 0.4416504, 2.4804688, 1.0771484, -0.5576172, -0.36328125, 3.140625, 0.55859375, 0.24475098, -0.7192383, -0.3515625, -0.38354492, 1.703125, 0.20727539, -2.7871094, 1.2685547, 1.7783203, 1.9970703, 0.61328125, -0.75439453, 1.2685547, 0.47338867, 0.625, -3.1816406, 3.0878906, 3.3359375, 1.8681641, 1.3017578, -1.296875, -1.2714844, 0.42773438, 1.484375, 0.027664185, -2.765625, -1.0556641, 0.41137695, 1.6855469, -2.7714844, 2.9179688, 1.7792969, 1.2851562, 0.0947876, -0.3708496, -0.39697266, -1.3681641, -2.6171875, 1.1669922, 0.24938965, -0.45166016, 0.83740234, -2.4277344, -2.9472656, -0.94628906, -2.3476562, 0.69873047, -0.7758789, 1.3681641, 1.7705078, 0.46801758, -2.0839844, 0.025909424, -0.73583984, 0.54345703, -3.5351562, 0.33691406, -0.08288574, 0.07489014, 2.1816406, 0.079589844, -1.4472656, 0.36743164, 4.1289062, -1.5703125, 2.0449219, -0.75878906, 1.2177734, -1.1230469, -1.4511719, 3.8984375, -1.0332031, -0.31347656, -1.796875, -0.47265625, 0.8178711, 1.1699219, -0.24572754, -0.69433594, 0.8017578, -0.54541016, -1.9707031, -0.46850586, -1.9902344, -0.18237305, -0.6308594, -1.8183594, 3.0644531, 1.3291016, 0.09301758, 0.2861328, 0.22973633, -0.4091797, -0.9057617, -0.09466553, -0.23254395, -0.16796875, 0.94433594, -2.8007812, -1.5507812, 2.0800781, -0.43725586, -1.1796875, 1.8173828, 1.7841797, 0.27368164, 5.1757812, 2.1816406, -0.5517578, -1.2539062, 1.1943359, 0.6513672, -2.1152344, 0.16271973, 1.6425781, 2.7207031, 0.7714844, 0.2154541, 1.4863281, -1.9902344, 0.35595703, 1.7646484, -0.9536133, -0.6567383, 0.9428711, 0.3869629, -1.6728516, -2.8476562, -0.15808105, 0.3449707, 4.3007812, 0.3774414, -2.5683594, 2.703125, -2.0820312, 1.609375, -1.0800781, -0.8378906, 0.7480469, -1.9091797, 2.5644531, 0.7709961, -2.0703125, -0.39697266, 0.6660156, 0.30444336, 1.4365234, -0.40454102, 1.4580078, 0.6513672, 1.9462891, -1.4912109, -3.15625, -0.26416016, -0.18188477, -2.90625, -0.16687012, -2.7109375, 0.87597656, -1.4990234, 2.6484375, 2.7226562, 2.8417969, -1.2070312, 1.0664062, 2.3515625, -0.8730469, 0.89941406, 0.78759766, -0.35986328, 0.96875, -1.8974609, 0.74365234, -0.39453125, -3.3613281, 0.31811523, -2.0996094, -1.6757812, 0.35717773, -0.4802246, -2.3417969, 2.3964844, -1.0253906, 0.060180664, -1.6474609, -1.7480469, -0.9863281, -0.65722656, -0.6586914, -0.9746094, -0.6201172, 0.4729004, -0.6166992, -1.4619141, 2.5429688, 1.0205078, -1.0888672, 0.30395508, -3.3886719, 0.72753906, -1.5957031, 0.06463623, 1.3730469, 1.3730469, 0.5307617, -3.1367188, 1.7255859, -0.9169922, -0.2208252, -2.2421875, 0.55810547, -1.8398438, -1.0566406, -1.8427734, -0.9663086, 0.58496094, 1.8388672, 1.1230469, -1.7373047, 3.6660156, -2.3535156, 1.4863281, 1.8291016, 2.4941406, -1.8574219, -2.0898438, 0.41430664, -2.015625, -1.0078125, -3.8359375, 0.3347168, -0.60302734, 1.7900391, -0.16552734, 0.0904541, -1.5263672, 1.1660156, -1.3818359, -2.9804688, -1.3349609, 0.8569336, -1.4072266, -1.0078125, -2.4472656, -0.70410156, -1.8242188, -2.6992188, 0.90527344, 1.0634766, 0.22717285, 4.1953125, 1.3632812, 0.71972656, 0.1665039, -0.5991211, -4.234375, 0.98535156, 1.5908203, -1.0976562, -1.3828125, -0.6508789, -0.6542969, 1.2402344, -0.82910156, 3.1074219, 0.7583008, 2.8828125, 0.15222168, 0.5620117, 1.1503906, 1.9453125, -0.50390625, -0.8720703, 2.421875, 0.5908203, -4.0039062, -2.6542969, 0.20703125, 1.6279297, -0.8276367, -2.8769531, 1.1992188, 1.2851562, 2.6035156, 0.6958008, -1.8300781, -1.1962891, -2.15625, 2.0390625, -0.4453125, -2.3457031, -1.6738281, -0.38256836, 0.5571289, 0.9145508, 0.061187744, 3.2207031, 0.59033203, 1.7949219, 1.3691406, 0.40454102, -1.2998047, -2.3398438, 0.4501953, 0.84716797, 0.6567383, 0.7709961, 0.21240234, -0.7236328, 0.6464844, 0.57910156, 0.59765625, -2.5703125, -0.6254883, 0.37817383, -0.43652344, 0.50146484, 1.2089844, -1.1630859, -0.8359375, -2.4648438, -0.9873047, 1.7861328, -1.1445312, 2.8125, -0.70214844, -1.6826172, -2.1152344, 1.6337891, -1.2089844, 0.4038086, -0.4963379, 1.6357422, -1.6679688, -0.70214844, 0.16540527, 0.8071289, -1.4824219, -1.9326172, -0.9277344, -0.37841797, -0.39892578, -1.4384766, -0.35498047, 1.7294922, -2.9765625, -2.1132812, -0.2602539, 1.8310547, 1.5058594, 0.8803711, -1.2587891, 0.2446289, 0.17419434, -1.4003906, -3.8710938, 0.13256836, 1.4355469, -1.8193359, 0.22058105, 1.0390625, 1.4990234, 0.75097656, -0.7675781, 0.53222656, 0.84375, -3.5722656, 0.20397949, -2.7773438, -0.9916992, -1.7021484, -4.3203125, 1.9003906, -0.50878906, 1.6279297, 2.0449219, 1.4072266, 0.6245117, 2.6386719, 1.4423828, -2.2382812, -1.8164062, -0.6425781, 0.2800293, -0.19030762, -0.6357422, 5.6132812, 1.3496094, -0.54785156, -0.076416016, -1.5664062, 0.21142578, 2.7265625, 1.0761719, 1.7929688, 0.36865234, -1.1103516, -0.36376953, -0.53271484, 0.11621094, -0.20947266, 0.6879883, -0.39941406, -0.96435547, 1.6025391, -2.2988281, -0.10217285, -2.3007812, 3.4492188, 0.12646484, 0.47265625, 0.27490234, 0.35961914, 1.6494141, 0.40185547, -0.41503906, -0.75634766, -2.015625, 1.9912109, 0.65283203, -0.66552734, -0.7084961, -3.6816406, -1.2226562, -1.3408203, -0.8696289, 1.6425781, 1.4736328, -2.0332031, -0.013038635, 0.51171875, -0.9892578, -1.2226562, -0.3642578, -3.1796875, -0.0040740967, 0.3881836, 1.5009766, -0.010879517, -2.3359375, -1.3320312, -3.1699219, 3.4570312, 2.8339844, 0.85595703, 2.9785156, -0.02507019, -1.2773438, -0.27368164, -1.6337891, -0.46533203, -0.9350586, 1.7587891, 0.56591797, -0.25097656, 1.5488281, -1.0537109, -1.0644531, 1.3417969, 0.671875, 1.2402344, -1.1806641, 1.4501953, -0.28979492, 1.0117188, 4.1015625, -0.79833984, 3.984375, -0.36279297, 1.3291016, -0.41186523, -1.6953125, -0.16333008, -0.38378906, 0.7055664, 0.17285156, -0.13269043, -0.22070312, 3.6875, -0.55810547, -0.026184082, 0.69921875, 0.10638428, 0.33813477, 2.3261719, 1.4169922, 1.4980469, -3.6171875, -1.1171875, 2.8105469, 2.6738281, -0.4482422, 5.0742188, -0.54345703, -2.140625, 0.059020996, 3.9101562, -0.8642578, 1.4482422, -1.0908203, -1.5947266, 0.5136719, -1.3662109, -2.6894531, 0.25341797, 3.1914062, -1.28125, 2.859375, -1.8779297, -0.27197266, 2.1503906, -3.6113281, 0.068603516, -0.7011719, -1.1357422, 1.6464844, -1.0644531, -1.8232422, -0.9633789, 2.046875, 2.6542969, -2.0722656, -0.6118164, 0.55078125, -2.984375, -1.8583984, -1.0136719, -1.4296875, -2.6113281, 0.34301758, 0.56152344, -0.7583008, -2.1015625, -0.3088379, 1.9521484, -0.83496094, -0.41430664, -1.4052734, 3.0703125, -1.5107422, -0.02659607, -1.7880859, 1.1113281, -1.4658203, -0.37768555, 0.67285156, -2.2382812, 0.60009766, 2.765625, -0.9970703, -2.21875, 0.44677734, -2.0605469, -3.2265625, -0.3786621, 1.2333984, 1.5429688, -0.6381836, 0.010665894, 0.54248047, -1.4208984, -0.9995117, 0.36108398, 0.26342773, 1.046875, -0.84033203, 0.5961914, -0.89941406, -0.10809326, -1.2255859, 0.9394531, 0.6401367, 1.71875, -1.4560547, -2.1074219, -1.3984375, -0.59814453, -3.3457031, -2.4296875, 0.8808594, 2.0996094, -2.3144531, 1.0800781, 1.0019531, -2.8984375, 2.6816406, -0.18811035, 0.6665039, 1.0683594, 0.026535034, 1.8554688, -2.0332031, 1.6923828, 0.16967773, -0.19372559, 0.5214844, 1.4765625, -3.1152344, 1.4345703, -0.019866943, -2.1210938, -1.8974609, -1.1601562, -0.2866211, 0.07244873, 0.3466797, -0.16564941, 0.85253906, -2.8007812, -4.78125, -1.3271484, -0.9536133, -0.48876953, -2.3515625, 0.72558594, 3.3769531, -0.21557617, 1.9267578, -0.08001709, 0.5678711, -3.59375, 0.82958984, 1.6542969, 2.4277344, 1.0253906, -0.7583008, -0.41674805, -1.8701172, -0.72216797, 2.9160156, -0.6645508, -2.5996094, 0.19934082, -1.6611328, -1.5527344, 1.6679688, 2.4101562, -1.4882812, -2.1835938, 0.51416016, 0.09692383, 2.7949219, -2.1933594, -0.46044922, 0.9511719, 3.3847656, -0.9160156, 3.6425781, 0.63720703, -1.9990234, -0.25952148, -1.203125, -0.80566406, -0.7397461, -0.39111328, 1.3066406, -1.5556641, -0.3557129, 1.4765625, -3.4355469, -0.28295898, 0.59375, 3.2285156, 0.25585938, 0.056488037, 3.4277344, 0.54541016, -0.009757996, 1.9765625, -1.3896484, 0.11767578, -1.2011719, -1.0146484, -0.74853516, 2.0292969, -1.9755859, -0.23303223, 1.6259766, 0.030136108, -2.4550781, 2.5058594, -0.56396484, 1.3798828, 1.7714844, 3.2070312, 2.2558594, 2.1074219, 1.9521484, 0.54785156, 2.359375, 1.1025391, -1.8603516, 0.28222656, 2.5175781, 0.5527344, 0.8701172, -2.3476562, 0.05319214, -0.028808594, -0.04208374, 0.023269653, 1.5820312, -0.29711914, 0.45532227, 1.0830078, -0.43164062, -0.11779785, -4.3789062, 0.22912598, -0.9140625, 0.6958008, -3.0429688, 3.2109375, 1.4648438, -1.5576172, 0.15136719, -0.7475586, 0.42285156, 0.90234375, -3.0195312, 1.3818359, 1.8701172, -1.4892578, -1.0966797, 1.0302734, -0.13415527, 1.4042969, 2.9238281, -1.3847656, -0.5649414, 0.15515137, 1.0214844, 0.04989624, -1.5947266, 0.6381836, 2.1074219, -1.2080078, -1.6621094, 0.69140625, -1.3271484, -2.6757812, 0.84277344, 2.3417969, -0.6230469, 1.8203125, -2.2089844, -2.3007812, 2.1542969, -0.007255554, 0.33544922, 0.609375, -0.4765625, 0.7392578, -0.3959961, 2.1835938, 1.8769531, -0.44995117, 2.7988281, -2.8144531, -2.40625, -0.51416016, -0.03237915, 0.9296875, 1.7861328, 0.49609375, -0.5708008, 0.62109375, 0.4267578, 4.0039062, -0.7944336, -2.3710938, -2.6015625, 1.9941406, 0.054779053, 1.4150391, -0.5864258, -3.984375, -1.3193359, -0.12768555, -1.7099609, -1.6992188, -0.71875, 1.3798828, 1.4970703, -1.6572266, 1.1582031, -0.0053482056, 2.65625, 1.0966797, 1.25, 1.6943359, 1.3378906, -1.7080078, 1.9726562, 1.5439453, -1.4853516, 0.7114258, 0.54003906, 1.6728516, -0.7915039, 0.40478516, -0.7763672, 1.3320312, 0.2479248, 0.094055176, -0.0914917, 2.7734375, 1.1455078, 0.33203125, 0.15722656, -1.5107422, 1.4365234, -2.2304688, -3.0332031, 1.2177734, 1.5712891, -0.12854004, 0.13012695, -0.75439453, -1.1748047, -1.0996094, 0.3425293, 0.63623047, 1.3769531, 3.6308594, 1.5439453, 1.3183594, -0.9213867, -2.84375, -1.1220703, -0.37597656, -1.9951172, 0.6484375, 0.734375, 0.7841797, 0.03677368, 0.40576172, -0.0073432922, -0.703125, -0.9223633, -2.1933594, 0.86865234, -2.4472656, 1.6152344, -1.5429688, 1.0898438, 0.47753906, 0.5444336, 1.1826172, 1.5810547, 3.5644531, 2.1835938, 1.4326172, -2.390625, -2.5078125, 2.6386719, 2.5351562, 0.7988281, 2.0136719, 0.33129883, -1.0996094, -0.88134766, -0.7871094, -1.1552734]}, "B07FC7KCJD": {"id": "B07FC7KCJD", "original": "Brand: GASPRO\nName: GASPRO 6-Foot Propane Hose with 3/8\" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided\nDescription: Feature:
          Hose Length: 6ft
          Connector: 3/8\" female flare fitting x 3/8\" female flare fitting.
          Material: Stainless steel braided.

          Warning: Only for OUTDOOR Use.
          \nFeatures: \u3010Awesome Extension\u3011 Extend your existing hose to reach the gas appliance. No need to carry a large tank around.\n\u3010Widely Applied\u3011 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more.\n\u3010Nice Length\u3011 6 feet in length allows getting more distance and moving around where it is needed.\n\u3010Durable & Chew-Proof\u3011 Stainless steel braided hose effectively reduces damage caused by friction and animals.\n\u3010Standard Connector\u3011 3/8\" female flare fitting x 3/8\" female flare fitting.\n", "embedding": [-0.34692383, 1.7548828, 0.45483398, -0.89160156, -1.6972656, 0.3256836, 1.3378906, -2.3359375, 2.5292969, 1.2841797, -0.6689453, -1.1171875, 1.1787109, -4.6445312, 1.4472656, 0.81689453, -0.5083008, -0.5024414, 1.5927734, 2.1289062, 2.2695312, -1.9501953, 1.9873047, 1.015625, 1.4521484, -2.2597656, 2.5527344, -2.7910156, 0.10986328, 0.3942871, 0.083618164, 1.3242188, -0.010620117, 0.90966797, -3.578125, -1.3408203, -1.3574219, -0.6586914, -3.4453125, -2.7363281, -1.3818359, -0.33569336, 3.6425781, 1.5087891, -2.4023438, 1.5488281, 1.5595703, 2.2753906, -1.0107422, -1.3144531, -0.18322754, -0.16894531, 0.5917969, 0.25048828, -2.3144531, -0.7260742, -1.5322266, -2.7695312, 2.1816406, 1.890625, 1.4033203, 0.18896484, -2.5429688, -0.19274902, -1.5429688, 0.5620117, 1.6416016, -0.19897461, -1.5605469, 1.2119141, 0.15283203, 1.6318359, -0.01789856, -0.07891846, 1.6601562, 0.9238281, -3.1445312, 1.2578125, 3.2929688, 1.3359375, -1.5966797, 2.8671875, 1.2089844, -2.2714844, 1.9599609, -1.6875, -3.578125, -0.71533203, 1.3408203, 1.5458984, -1.8164062, 4.0664062, -2.9082031, -1.8496094, 0.42407227, 0.16784668, 1.5634766, 1.6201172, 2.0761719, -0.34423828, 0.18066406, -0.67529297, -0.0793457, 0.48095703, -1.6259766, -2.7558594, -0.44604492, -0.85498047, -0.97216797, 0.5131836, 0.8544922, 0.011367798, 1.1923828, -0.75634766, 0.42993164, -3.53125, -1.3056641, -1.6982422, 3.5917969, 0.34472656, 1.7910156, 2.0175781, -0.3791504, -0.2541504, 2.15625, 0.48706055, -0.56152344, 1.9072266, 2.96875, -2.9316406, 0.5097656, -2.9921875, 1.7539062, 0.16845703, -0.38110352, -3.3046875, 0.7324219, -1.7041016, -2.5253906, -0.123413086, -2.8671875, -0.2376709, 1.4882812, -0.60595703, -4.2109375, 1.6894531, -3.8789062, 1.3740234, 2.84375, -2.3730469, 0.93115234, -1.1865234, -0.1385498, -1.546875, 2.640625, 1.0419922, 2.7949219, -1.2246094, 2.7402344, 3.03125, 2.2695312, -0.7651367, -2.2011719, 2.4296875, -0.29956055, -3.4277344, 0.28076172, 0.86621094, -0.5473633, -0.07324219, -0.44360352, -3.2441406, 1.609375, -0.19177246, -0.2529297, -1.9443359, 1.9228516, -0.37597656, 3.5664062, 1.9091797, -2.5800781, -2.4863281, 1.2636719, -1.5107422, 0.7910156, 0.26123047, -0.9604492, -1.140625, 1.9599609, -0.11566162, -1.7470703, 0.62939453, -0.12084961, 2.1992188, -0.70751953, -2.8320312, -1.8037109, -0.6567383, 0.51464844, 1.3105469, -3.7519531, -0.19421387, 0.8256836, 1.8007812, -1.3388672, -1.4472656, 1.1640625, 0.020111084, 0.61865234, 1.1650391, 0.56591797, -0.11578369, 1.5742188, -1.3779297, 0.13293457, -1.3271484, 1.4121094, 2.875, 3.015625, 0.8354492, -0.006134033, 0.3762207, 0.39160156, 0.6513672, 1.4892578, -0.20751953, -1.1904297, 1.2548828, -1.4628906, -2.359375, 2.8417969, 1.1386719, -0.71191406, -0.2524414, -0.04812622, 2.0195312, 1.1621094, -1.7617188, 0.68896484, 3.1152344, -0.72753906, 0.25097656, -4.0234375, -0.9926758, 1.2597656, -0.08770752, 0.20349121, -0.71777344, 1.8378906, 0.56591797, 1.4951172, -0.44140625, -0.13476562, 0.2861328, 0.1697998, -0.1607666, 0.46899414, 2.5039062, -0.3239746, -0.19372559, -0.19006348, 2.0449219, -0.110839844, 1.5996094, 0.85839844, -0.029891968, 1.3154297, -1.9462891, -2.625, 0.57470703, -1.8164062, 2.8535156, 0.4248047, 0.30444336, 0.2084961, 1.484375, -2.1855469, 1.921875, 0.22961426, 1.4003906, 1.3154297, -0.2824707, 1.3955078, -0.9291992, 0.67626953, 1.2949219, 2.625, -1.0068359, -1.1367188, 0.7553711, 4.59375, -0.31591797, -0.54345703, 1.6708984, 1.4931641, 2.4550781, 0.85253906, 2.6816406, -0.5341797, -0.8803711, -0.58251953, 1.0244141, -1.3398438, 1.6640625, 2.1660156, -0.06286621, 1.1279297, -2.2929688, 1.3378906, 1.6601562, 0.06933594, 1.5039062, -1.8955078, -0.1204834, -1.6767578, -1.8486328, 2.2070312, -0.46801758, -0.53222656, 2.8496094, -1.0361328, 0.18347168, 0.48510742, -1.9013672, -1.2109375, 1.5146484, -2.3925781, 1.8017578, 2.1796875, -0.022216797, 0.10076904, -0.6035156, -1.3046875, -2.3417969, -2.015625, -0.5366211, -0.3857422, -1.3847656, 1.0087891, -1.7216797, -2.7949219, -1.4667969, 0.58154297, 2.6777344, -0.13085938, -0.8442383, -0.63183594, 1.3867188, 0.50146484, 1.0029297, -0.6425781, 3.6464844, -0.4741211, -1.8378906, -0.92285156, 0.2722168, -0.8276367, 0.97021484, -2.3144531, -0.83740234, 1.3125, 1.3251953, 0.67529297, 1.6865234, 0.39404297, -3.390625, -0.74902344, -4.34375, -1.2119141, 0.64404297, 1.2138672, -0.9145508, 1.6708984, -2.1289062, -3.078125, 1.0859375, -2.1386719, 0.4597168, 0.6948242, 1.2138672, -2.484375, 0.49438477, 1.3613281, 0.0056495667, -1.3886719, -1.6679688, 2.5078125, -2.3085938, -1.7294922, -2.2460938, 0.22595215, 0.81152344, 0.6821289, 1.1171875, -1.5107422, -1.6347656, -0.57910156, -0.20483398, -2.3339844, -0.63964844, 0.7998047, 1.1855469, 0.2902832, 0.025131226, -2.0449219, -1.9970703, -0.031280518, -0.8691406, 0.2163086, -1.7460938, -0.9453125, 2.2148438, -0.23095703, -0.88916016, -1.2783203, -3.1914062, -0.11981201, 2.5996094, -1.1621094, 0.78125, -1.4228516, -0.42895508, -1.6123047, -2.375, 2.28125, 0.6538086, 0.18725586, 0.0769043, -0.6621094, 2.6171875, 1.2011719, -1.1767578, -2.2636719, -0.59228516, 4.4453125, -2.7460938, -0.64941406, -1.3662109, 0.50634766, -4.3515625, 0.0074005127, 1.0966797, -1.2333984, 1.3701172, 1.3984375, 0.9428711, 1.0771484, 0.58984375, 0.5336914, 0.5800781, 1.6376953, -0.13891602, -0.97314453, -1.1220703, -1.6044922, 2.0078125, 1.1376953, -0.095458984, 1.5341797, -0.07171631, -1.4482422, -0.53222656, 0.2298584, 0.041168213, 0.62646484, 1.2626953, 0.8901367, -0.013671875, -1.1943359, -0.40039062, -0.31640625, 1.4267578, -1.8789062, -3.6328125, 0.88671875, 0.13244629, -0.6972656, -0.38427734, -2.3046875, -0.62841797, -2.2148438, -1.515625, -0.63671875, 1.171875, 2.0351562, -1.2099609, 1.3789062, -0.35888672, 2.9863281, -0.8647461, -0.6923828, -1.6787109, -1.1113281, -1.6914062, -0.40283203, 0.60595703, -2.9003906, -2.1894531, 3.7773438, 3.5488281, -2.8242188, 1.4257812, -1.5527344, 1.2988281, 1.5722656, -0.5449219, -0.46533203, -0.56884766, 0.041168213, 0.1430664, -0.47460938, 1.0966797, -0.5449219, -2.2792969, 1.2050781, -1.2089844, 0.047607422, 1.3378906, 0.23303223, -4, 2.2929688, -0.6191406, 0.38623047, -0.8256836, 2.7519531, -0.101745605, -1.1152344, 2.046875, -3.2539062, -0.76708984, -1.1699219, -6.3164062, 1.6376953, -1.5009766, 0.67285156, 3.1464844, 0.12548828, -0.61328125, 0.6118164, -0.22827148, -3.1386719, -1.2724609, -1.0507812, 0.50439453, -1.9453125, -1.4238281, 2.2167969, 0.6411133, -1.9746094, -1.2363281, 0.030380249, -2.375, -0.70458984, 1.7353516, -0.78222656, -1.5429688, -1.6826172, 0.29052734, -0.5444336, -0.84716797, 0.7265625, -2.8554688, -0.11468506, -3.8261719, 1.6328125, 1.9248047, 0.70410156, -1.0527344, 3.203125, 0.8598633, -1.7519531, -0.4284668, 0.06402588, 3.9101562, -0.59228516, -3.3789062, -0.68847656, 0.4345703, -0.40356445, 0.35595703, 0.43188477, 0.8105469, -0.69628906, 3.5585938, -1.0556641, 1.1513672, 1.3916016, 0.58251953, -5.53125, 0.20629883, 0.8227539, -1.2744141, -0.22973633, -1.2587891, -0.63623047, -2.6914062, 0.055755615, -2.4433594, -1.4052734, -2.1953125, 1.0644531, -3.1113281, 1.5996094, -1.0976562, -0.28686523, 2.2363281, -0.82714844, -0.54541016, -2.6386719, -1.1523438, -2.2578125, 0.2878418, -3.2441406, -0.103393555, 0.88720703, -1.1396484, -0.88183594, -0.07043457, 0.54296875, -2.9003906, -1.3007812, -0.58935547, 0.105407715, 0.71191406, -0.40576172, 2.2832031, -1.2880859, 4.7070312, 0.37402344, 1.6621094, 0.6269531, -0.1451416, -0.19616699, 1.9306641, 2.8710938, 1.6367188, 0.75634766, 1.0771484, 2.453125, 4.25, 1.4091797, 1.3320312, 3.4726562, -0.26953125, 1.1679688, -0.29174805, 0.45996094, -1.3955078, 0.76220703, 0.6894531, 2.6054688, 2.5605469, 2.875, 0.023910522, -2.0410156, 1.2304688, 1.8144531, -1.9804688, -1.0800781, 0.003660202, -1.8144531, 1.8681641, -1.8447266, -2.0976562, 1.8359375, 2.5996094, 0.2019043, 1.9052734, 0.5864258, -1.7177734, -0.9926758, -2.1015625, -0.5957031, -0.09039307, -1.4873047, 1.5410156, -3.21875, 1.7773438, -0.3635254, 2.3203125, 1.4277344, 0.2866211, -0.88671875, -0.56152344, -2.7460938, 1.0556641, -1.1533203, -0.6376953, -2.9472656, 1.2197266, 0.8256836, 1.359375, 1.9970703, -0.14001465, -0.8178711, -2.0566406, -1.5400391, -0.60009766, 2.8828125, 0.29052734, -1.1894531, 2.0078125, -0.78222656, -0.3005371, -0.80029297, -0.32006836, -1.4785156, 2.2246094, 2.6269531, 1.1884766, -0.5410156, -2.5136719, -1.5332031, -5.1484375, -0.41333008, 1.6298828, 0.1184082, 1.1708984, -1.3916016, -0.49609375, 0.67529297, 0.6870117, -0.21655273, -1.8115234, 1.0595703, -0.09033203, 0.10253906, -2.1972656, 1.3046875, -1.3916016, 0.29736328, -2.6894531, 0.3774414, 0.41137695, -2.0273438, -1.5654297, 1.6210938, -3.1816406, -1.7851562, 2.9492188, -1.4140625, -1.5332031, 1.6962891, -0.3017578, -0.85498047, -0.42626953, -1.9609375, 1.1113281, 0.9482422, -1.2460938, 1.6376953, 0.8041992, 0.022613525, -0.43725586, 0.6347656, 1.8886719, 0.36132812, -0.19677734, 0.4958496, 2.0839844, -1.2773438, -1.0800781, 0.22485352, 0.39013672, 1.6171875, 1.4736328, -1.8027344, -1.8300781, -1.3046875, -2.6816406, 0.18115234, -2.4824219, 0.33203125, 0.74853516, 2.1699219, 1.6162109, -0.007896423, 1.9443359, -0.6230469, 1.2744141, 0.020233154, 0.077697754, -0.1538086, 2.3085938, 0.73339844, -0.69189453, -4.7851562, 0.46313477, 3.5507812, 4.25, -0.009429932, 0.32080078, 0.028076172, -2.2753906, 0.109558105, -0.49121094, -0.54833984, 2.0898438, -0.29492188, -1.8828125, -1.1337891, 0.024810791, -1.1113281, 1.6640625, 0.3708496, -0.35327148, -1.0722656, 0.9584961, 1.015625, -2.7207031, 0.028442383, -0.94384766, 1.7246094, 0.41235352, -1.2226562, -0.92871094, -3.5839844, -0.46289062, 0.5239258, -2.6542969, -2.7949219, 2.6445312, -0.033081055, -1.0830078, 0.21118164, 2.640625, -1.2412109, -0.76464844, 1.1796875, -0.43017578, -0.50634766, -0.53027344, -3.3808594, -0.63964844, 1.3964844, -1.765625, 0.1887207, 1.3818359, -1.6845703, 0.6665039, 2.5546875, 1.9277344, 1.5292969, -0.07952881, 2.7636719, 2.71875, 0.32080078, 2.6230469, 1.0136719, 1.8974609, 0.017852783, -3.1757812, 0.93603516, 2.5214844, 0.77246094, 1.8056641, -0.47583008, 0.43847656, 0.28442383, -0.35375977, -0.7861328, 1.6318359, 1.7392578, -3.1542969, -0.6166992, 0.30395508, -1.0371094, -2.5703125, 1.1533203, -1.7539062, -0.05618286, 0.6357422, 0.4321289, 2.2636719, 1.1416016, -1.2412109, -0.45117188, -1.3388672, 3.1445312, -0.77783203, 0.4182129, 0.048461914, -1.7324219, 1.8417969, 2.6816406, -0.04849243, 0.62158203, 1.0761719, -0.13903809, 0.5620117, 1.8164062, 0.95751953, -0.8803711, 0.8383789, -2.9453125, 1.1357422, 0.9189453, -1.8232422, 0.31298828, -0.3569336, -2.0429688, -3.8554688, 3.75, -0.084228516, -1.8105469, 0.51416016, -3.1191406, 0.48095703, -2.6269531, 0.6538086, -2.2597656, -0.36254883, 0.32592773, -0.042175293, -0.0869751, 0.94189453, -0.8569336, 2.7226562, 1.6376953, -2.28125, 0.17272949, 2.3984375, 0.4650879, -0.58203125, 1.4638672, -0.5449219, 0.96728516, 0.32910156, 3.5820312, -0.1315918, 0.04788208, 1.1386719, 3.0449219, 0.4111328, 0.7128906, 1.0527344, -2.1523438, 1.8769531, -0.8339844, 0.50683594, -0.76171875, -3.375, -0.6171875, 0.9975586, 0.79003906, -0.96240234, 1.140625, 1.9384766, 0.029251099, -2.5273438, 2.5820312, 0.7246094, -2.4238281, 3.0175781, 3.5078125, -1.2978516, -1.4169922, -0.6171875, 1.8017578, -0.7495117, 1.3007812, 0.97314453, -0.78125, 1.7763672, -1.2119141, 0.98535156, 0.72998047, -1.7285156, -1.6923828, 0.016494751, -2.0566406, -0.036590576, -0.80566406, -0.66064453, 1.7490234, 4.5546875, 0.92041016, 2.2460938, -0.40283203, -1.3388672, 0.5161133, -2.65625, -1.7216797, 1.0117188, 2.4589844, 1.9833984, 1.6953125, -0.7866211, -3.125, -0.41503906, 2.0761719, 0.7104492, 0.0692749, -0.85009766, 0.6489258, 1.9404297, 2.171875, 0.35180664, 1.1220703, -0.32836914, 0.22875977, 1.9951172, -0.48120117, 2.8515625, -1.9287109, 1.3320312, -0.15014648, 2.7148438, 0.8676758, -0.21728516, 1.2919922, 0.36572266, 0.625, -1.6035156, 1.2861328, -0.2841797, 0.9291992, 1.1513672, 2.3476562, 2.265625, 0.93896484, -0.9663086, -0.97753906, 0.49389648]}, "B07W6MTWVF": {"id": "B07W6MTWVF", "original": "Brand: Kohree\nName: Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank\nDescription: Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank\nFeatures: \u3010Application\u3011: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter.\n\u3010Multipurpose\u3011: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating.\n\u3010Very Cost Effective\u3011 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more.\n\u3010Easy to Use\u3011: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance.\n\u3010Safe Connection\u3011: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.\n", "embedding": [-0.609375, 1.6503906, 0.64404297, -0.69873047, -2.7441406, -0.54248047, 1.3544922, 0.019439697, 0.0871582, 2.5722656, 2.4355469, -0.69970703, 1.2900391, -4.4960938, 0.36816406, -0.33520508, -0.34521484, 0.12573242, 1.6962891, 1.1767578, 3.6953125, 1.0810547, 1.8876953, 0.21777344, 2.0195312, 0.28588867, 3.1015625, -2.9648438, -1.4179688, -0.4765625, 0.80029297, 0.17089844, 0.64746094, 0.06311035, -1.9130859, -1.8496094, -2.5234375, 1.0039062, -3.46875, -2.0039062, -1.9648438, 1.0107422, 2.8417969, 0.43115234, -1.5830078, 0.046936035, 0.578125, 1.453125, 1.0380859, -0.18518066, -0.39013672, 0.74316406, -0.5961914, 0.9326172, -2.2402344, 0.7944336, -0.90966797, -2.6953125, 1.6279297, -0.2939453, 1.7734375, 0.27001953, -1.3710938, 0.82910156, 0.63623047, 1.0664062, -0.9008789, -0.20605469, -0.37182617, 0.50439453, 0.38427734, -0.30493164, -0.87646484, -1.8564453, -3.03125, 0.1685791, -3.2558594, -0.08514404, 2.140625, 0.9580078, -2.2949219, 1.7041016, 0.059783936, -0.37817383, 0.7114258, 0.9848633, -1.8671875, 1.5097656, 1.0322266, 2.4199219, -2.6152344, 2.6601562, -2.2265625, -1.8007812, -0.41088867, 0.2685547, 0.1817627, 1.7246094, 2.4980469, -0.89404297, -2.609375, -0.2956543, -1.5859375, 1.4394531, -2.9179688, -0.5292969, -0.5385742, -0.70703125, -1.734375, 0.33081055, -0.54541016, 0.8803711, 1.9599609, -0.65283203, 0.024215698, -1.8066406, 0.13964844, 0.24267578, 1.9892578, 2.0625, 4.6367188, 0.030731201, 1.1269531, -1.2626953, 1.5947266, 1.5595703, -0.5058594, -0.0413208, 2.3203125, -1.4121094, 0.12939453, 0.16540527, 1.9443359, 0.6533203, 0.7607422, -3.1035156, -0.48608398, -1.4775391, -1.6503906, 0.46801758, -2.4804688, 0.06591797, 1.5917969, -0.27783203, -4.5429688, -0.76708984, -3.3632812, -0.36865234, 1.4189453, -2.2714844, -0.18835449, -1.9443359, -0.011894226, 0.09259033, 2.6464844, 1.8515625, 0.53271484, -0.7163086, 1.6113281, 1.9794922, 0.33862305, -0.37060547, -2.0878906, 1.7988281, 0.055725098, -2.2890625, 1.6650391, 1.3085938, -1.5810547, 1.5986328, 0.32861328, -2.5488281, 1.5839844, 0.08557129, 0.7446289, -1.7529297, 0.49951172, 1.5947266, 1.4228516, 1.4599609, -3.0527344, -4.0351562, -0.23461914, 0.21899414, 1.1279297, -0.8886719, -3.6523438, 0.18078613, 0.87402344, -1.5224609, -0.6694336, 2.5390625, 0.5073242, -0.71533203, -0.012817383, -1.2197266, -2.7382812, -0.31054688, -0.57177734, 1.1113281, -1.8544922, -1.6132812, 1.9716797, 0.7397461, -2.0878906, -0.083740234, 0.75683594, -2.3203125, -0.46484375, 2.5644531, -0.38916016, 0.59472656, 2.3183594, 0.2602539, -1.6025391, -1.5683594, 2.4414062, 2.3574219, 1.7910156, 0.86376953, -1.8564453, 0.24206543, 1.3144531, 1.5439453, 1.6230469, -0.52441406, -1.4482422, 0.35888672, -0.7470703, -0.89697266, 1.7578125, 1.9521484, 0.3154297, 0.22802734, -0.99365234, 2.7988281, 1.1582031, -1.6269531, 1.1728516, 2.1933594, 2.1484375, 1.2373047, -2.5195312, -1.8779297, -2.2148438, 1.4785156, -0.023849487, 1.8466797, 3.9550781, -0.92578125, -0.14416504, -0.29736328, -3.125, -2.765625, -1.1318359, -0.23254395, 0.45361328, 1.5117188, -0.10632324, -1.8935547, 1.0244141, 1.2607422, -0.36499023, 0.8696289, 0.7392578, 1.8056641, 0.77978516, -0.59765625, -1.3544922, 1.2460938, -0.7504883, 2.6816406, 1.1796875, -2.6074219, -0.48291016, 2.015625, -1.0400391, 0.9428711, -0.37426758, 0.73876953, 2.5039062, -1.5595703, 1.3857422, -3.4082031, 0.95947266, 1.8857422, 2.4628906, -0.31567383, -1.5722656, 0.9477539, 4.4921875, -0.4892578, -0.97314453, 3.0253906, 0.7363281, 2.0507812, 0.4248047, -0.21044922, 0.3010254, 0.6738281, 0.44189453, -0.15161133, -3.25, 1.1337891, 1.8652344, 0.38500977, 0.4189453, -2.4960938, 1.7802734, 1.8671875, -0.66748047, 0.11242676, -1.2412109, 0.32299805, -1.359375, -1.4511719, 2.1914062, -1.7880859, -0.92089844, 2.2714844, -1.2353516, -1.6357422, 0.9526367, -1.4707031, 0.16271973, 1.015625, -0.46557617, 2.0078125, 1.9775391, 0.84716797, 1.5996094, -1.7226562, 0.4489746, -1.2695312, -2.3320312, 0.51220703, 1.1064453, -2.4394531, 1.3417969, -1.5175781, -0.55908203, -1.2080078, -0.33862305, 3.5625, 1.1142578, -1.1425781, 0.016357422, 0.95166016, 0.1295166, -1.5146484, -0.46435547, 0.91064453, -1.9697266, -3.2089844, 0.20703125, -0.47387695, 1.8603516, 1.0859375, -0.90722656, 0.44750977, 2.8457031, 0.9345703, -0.828125, 1.9023438, -0.6201172, -1.6806641, 2.1835938, -3.15625, -0.76171875, -1.1601562, 0.8261719, -0.2902832, -1.4042969, -2.8925781, -1.2988281, 2.0117188, -0.03314209, 2.4746094, -0.5595703, 2.2792969, -0.34301758, 0.1015625, 0.8876953, -2.1367188, -2.7539062, -3.1191406, 0.40454102, -0.9555664, 2.8261719, -3.2851562, -0.12731934, -1.2314453, 0.43554688, 0.55322266, -0.45532227, -1.6660156, -1.4970703, 0.80371094, -2.328125, -2.2910156, 1.5107422, 0.41503906, -1.1982422, -0.12780762, 0.024276733, -2.4609375, -0.37158203, -0.53564453, 0.1895752, -0.7817383, -2.2382812, 1.0830078, 1.4775391, 1.7558594, -0.78466797, -2.6875, 1.0947266, 1.6660156, -0.2541504, 1.5898438, -2.5644531, -0.9248047, -3.8378906, -0.8510742, 1.1816406, 1.4296875, 2.5546875, 0.68847656, 2.2617188, 0.01209259, 1.3525391, -0.41381836, -0.009559631, -1.34375, 4.8789062, -3.3046875, -1.3867188, -0.5830078, 1.8193359, -4.3203125, 1.6835938, 0.69384766, 0.40771484, 2.6308594, 1.6484375, 0.984375, -1.1806641, 0.90185547, 0.55810547, 3.3476562, 0.63378906, 0.4580078, 1.0751953, -0.67871094, -0.8261719, 0.8535156, 0.49121094, 2.2832031, 1.8232422, 0.7709961, -0.06359863, -2.8789062, 0.09222412, -1.4023438, 0.77246094, 0.5751953, 2.0136719, -0.32128906, -0.5332031, -1.3798828, -0.097351074, 2.1464844, -1.1972656, -1.2685547, 1.3515625, 1.5136719, -1.7734375, 0.96191406, -1.0849609, 0.054107666, -0.7446289, 0.2763672, 0.38842773, 0.3425293, 1.0976562, -1.6103516, 0.56933594, -0.84814453, 1.6943359, -0.16955566, -0.0022830963, -0.62402344, -0.19067383, -1.0146484, -1.5400391, -2.7617188, -2.0527344, -0.5908203, 3.6777344, 2, -1.4882812, 0.42236328, -0.12597656, 2.5117188, 0.33935547, -0.057159424, -0.875, -1.2539062, -1.3349609, 0.9067383, 0.46948242, 1.7041016, -0.42749023, -2.3378906, 0.10205078, -0.98095703, -0.7963867, 0.67578125, -0.6142578, -0.92089844, -0.8989258, -0.31054688, 0.15270996, -0.61865234, 3.7246094, -0.51220703, -0.8701172, 1.3945312, -2.5605469, 0.36572266, -1.1337891, -4.4882812, 0.57470703, -1.9765625, 1.6933594, 0.71972656, -0.44067383, -2.1601562, 0.49682617, 1.3183594, -1.9521484, -0.4260254, -2.6386719, 0.22155762, -1.7607422, 2.6953125, 3.4140625, 1.1064453, -1.8105469, -3.2910156, 1.8134766, -2.6367188, -0.5336914, 0.27612305, -2.4316406, 0.18786621, -0.7211914, 1.7216797, -2.2265625, 1.2158203, 1.1953125, 0.07824707, -0.26220703, -2.4257812, 2.6210938, 0.828125, 0.7583008, 0.48339844, 2.875, 2.1035156, -2.7792969, 0.80810547, -0.3239746, 4.1601562, -0.5605469, -1.1347656, -0.0385437, -1.5683594, 0.064331055, -0.16918945, 0.2763672, -0.8803711, -1.3046875, 1.7294922, 1.0058594, 3.1445312, 2.1347656, -0.79541016, -3.1035156, 1.1914062, 1.359375, -1.9921875, -1.7851562, 0.024398804, -0.6958008, -1.9082031, 0.54003906, -1.8056641, -0.26489258, -0.49365234, 0.13256836, -2.5214844, 2.0117188, -0.061309814, 1.9316406, 0.47875977, -2.6503906, -0.12841797, -0.11828613, 0.77197266, -1.7265625, 0.095703125, -1.7832031, -2.4199219, 1.6474609, 1.40625, 0.32983398, 0.10687256, -0.44189453, -0.6455078, -0.6743164, -0.7841797, 2.4882812, -0.6533203, -0.6772461, -0.70996094, -1.1396484, 4.0898438, -2.2714844, 0.5991211, 0.6323242, -1.2626953, -2.9296875, 1.2900391, 1.890625, 1.4287109, -0.74072266, 1.3720703, 2.9082031, 1.6298828, 1.1210938, 1.4287109, 1.1337891, -1.2929688, -0.72998047, 0.56689453, 1.5107422, -0.46875, 0.16638184, 0.68115234, 0.34033203, 3.0332031, 1.7705078, 2.1601562, 0.011642456, 1.3496094, -0.5292969, 0.18603516, -1.3857422, 1.2910156, -1.9033203, 4.46875, -2.0546875, -2.8125, 0.30395508, 3.1425781, 0.72265625, 1.7246094, -0.21240234, -0.19848633, -0.27929688, -4.4492188, -0.4675293, -0.61083984, -0.8071289, 0.7861328, -1.1142578, 1.0820312, 0.56396484, 1.6376953, 2.9296875, -0.18896484, -0.8432617, -0.9511719, -1.7783203, -1.75, -1.4560547, -1.6396484, -5.0078125, -1.03125, -0.46313477, 1.7675781, 1.6650391, 0.09753418, -1.1230469, 0.32836914, -1.0185547, 0.94921875, 2.9121094, -0.32006836, 0.07147217, 2.3105469, 1.0732422, -1.0322266, -2.2363281, -1.0732422, -1.7480469, 0.54052734, 1.9414062, 1.0566406, -1.2480469, -1.2392578, -2.9746094, -4.0664062, 0.20288086, 2.2949219, 1.9355469, 1.1855469, -0.890625, -0.6958008, -0.4765625, -1.1269531, -2.9628906, -2.4003906, 0.6772461, -0.5361328, -1.0273438, 0.63671875, 1.4609375, -1.0107422, 0.37939453, -1.4023438, -0.045440674, -1.1865234, -2.4902344, -0.18530273, -0.11383057, -1.6650391, -0.66748047, 0.09906006, -1.0488281, -0.96435547, -0.037506104, 1.5019531, -0.42797852, 2.4121094, -1.5751953, 1.234375, 2.2089844, -1.6855469, 0.8378906, 1.4677734, -1.6943359, -0.46313477, 2.6386719, 3.9375, -0.62060547, 0.15600586, 0.6425781, 0.37646484, 0.18408203, -1.6201172, -0.32958984, 0.112854004, 1.1337891, 2.4746094, 0.6870117, -0.5444336, -2.0527344, -1.6455078, 1.0605469, -2.5449219, 0.39282227, 0.16430664, 1.3349609, 1.5146484, -0.57373047, -0.3076172, 0.82373047, -0.124816895, -0.5996094, 0.12695312, -1.9921875, 2.8359375, 1.8349609, -1.8544922, -4.5859375, -0.35424805, 2.2070312, 3.1796875, -1.8007812, -0.009056091, 0.13623047, -0.9707031, 0.5776367, -0.86083984, 2.5214844, 1.4277344, 1.5205078, -1.3349609, 0.37646484, 2.3964844, -3.1796875, -0.09857178, 0.50927734, -0.66503906, -2.0410156, 1.5664062, 1.6816406, -1.8544922, 0.051513672, -1.0927734, 0.032104492, -1.4873047, -0.2919922, 0.3671875, -2.7246094, 1.0683594, -1.3896484, -2.9277344, -2.5917969, 1.6865234, -0.7988281, -0.120666504, 0.6479492, 2.2089844, -0.11706543, -0.7714844, -0.11193848, 0.9238281, -0.11053467, -0.7133789, -2.4355469, 1.0791016, 1.3691406, -1.7275391, 1.1699219, 2.2070312, 1.9570312, 0.6425781, -0.890625, 0.8720703, 2.7265625, 0.32226562, 3.8046875, 3.1953125, 0.9350586, 2.9453125, 2.1523438, 2.0839844, 1.7392578, -1.9667969, -0.45043945, 1.1621094, 0.7236328, 1.6113281, -2.59375, -0.19604492, -0.35058594, 0.17089844, 0.10455322, 1.2373047, 2.2207031, -3.234375, 0.11968994, -2.15625, 0.15026855, -1.6308594, 1.1621094, -0.29248047, 0.68847656, 0.4501953, 0.45361328, 1.0693359, 0.81640625, -0.43359375, 0.18981934, -0.61376953, 2.0019531, -0.6435547, -0.17944336, -2.9199219, -0.6953125, -0.26660156, 1.8085938, 0.31713867, -0.7871094, -0.115600586, 1.5898438, 0.66845703, 1.0507812, 1.2431641, -0.50097656, 0.03640747, -1.6142578, 1.4541016, 3.4746094, -0.4169922, 2.7382812, -0.37695312, -3.3261719, -3.8574219, 0.7758789, 0.48168945, -0.40039062, 0.41210938, -2.6132812, 2.3964844, -2.6367188, 1.5478516, -2.1015625, -1.7802734, -0.40063477, -1.2099609, -1.1425781, 0.25048828, -2.2402344, 1.2841797, 3.1054688, -0.66503906, 0.055267334, 1.3847656, -0.0015563965, 0.57128906, -0.021972656, -0.48486328, 0.48486328, -0.5292969, 3.1132812, -0.45654297, 0.5385742, -0.5390625, 2.7792969, 0.7319336, 0.6933594, 0.5878906, -0.8510742, 1.2548828, 0.4814453, 0.8046875, 0.7705078, -1.53125, -0.8886719, 0.37182617, 0.99853516, -1.5175781, 0.028030396, 1.6484375, 1.7685547, -0.7636719, 0.70751953, 0.7314453, -1.4794922, 2.3300781, 0.48779297, -1.4003906, -0.84716797, 0.78515625, 0.61083984, -2.7988281, 1.5791016, 1.09375, -1.2773438, -0.31762695, -2.8789062, -0.8964844, -0.7480469, -0.7363281, -2.0722656, 0.35253906, -0.6723633, -1.9365234, -0.40161133, -0.5449219, 1.9316406, 2.8300781, -0.10614014, 0.48999023, -0.72802734, -1.7724609, -0.30249023, -1.5673828, -1.3349609, 1.1445312, 1.7802734, 1.2519531, 1.2197266, -2.3710938, -2.671875, -0.7817383, -1.265625, 2.0957031, 0.2607422, -3.3222656, 1.1357422, 0.6826172, 0.9873047, -1.2333984, -2.4570312, -1.2099609, 0.8701172, 2.3710938, -1.4570312, 0.7636719, -1.0380859, 0.86083984, 1.5644531, 2.9882812, 1.59375, 0.5800781, -0.875, 1.1845703, -0.14978027, -2.7402344, 0.5673828, 0.59765625, -0.72753906, 0.81103516, 1.4267578, 2.6855469, -0.10205078, -0.88134766, -1.5771484, 0.19116211]}, "B07PYVNJ2Z": {"id": "B07PYVNJ2Z", "original": "Brand: GASPRO\nName: GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More\nDescription: How to use it:
          The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

          Great for:
          RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

          Warning: Only for OUTDOOR Use.\nFeatures: \u3010Well Gas Control \u3011Two-stage regulator results in a more consistent inlet pressure between the first and second stage\n\u3010Standard Connector\u3011QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n\u3010Outlet Pressure\u301111\" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow\n\u3010 Compatibility \u3011Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more\n\u3010 High Quality \u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "embedding": [0.06890869, 0.57373047, 0.8769531, 2.2128906, -1.7607422, 0.40454102, 1.9853516, -1.9912109, 2.0195312, 0.23754883, 0.4333496, -0.28515625, 1.9423828, -2.2832031, 3.0976562, 0.93847656, 0.85253906, 0.13122559, 1.3808594, 1.6757812, 0.73046875, -2.1347656, 3.734375, -0.3232422, 1.3320312, -1.1337891, 2.6464844, -2.9082031, -1.1621094, -0.8676758, 0.5678711, 0.55615234, -0.6796875, 0.4194336, -2.6367188, -0.016921997, -1.0263672, -0.44580078, -3.03125, -0.97314453, -1.6835938, 0.5361328, 3.3671875, 0.26367188, -2.7050781, -0.032165527, 1.5029297, 0.81591797, 0.044799805, -0.85791016, -0.6591797, 1.1757812, -0.6796875, 0.40063477, -2.6074219, 0.107299805, -2.9316406, -2.3886719, 0.95996094, 1.6054688, 2.4570312, -0.25219727, -3.3964844, 1.15625, -1.1210938, 1.1933594, -0.5493164, -0.010139465, 0.4050293, 1.2773438, 0.4074707, 0.9091797, 0.3322754, -1.6943359, -0.28564453, 0.91503906, -3.6328125, -0.25732422, 2.5449219, 0.05508423, -1.9960938, 2.8886719, 1.640625, -3.0683594, 0.8466797, -0.4182129, -0.32861328, -0.23486328, 1.2304688, 1.6054688, -2.203125, 2.7675781, -2.9296875, -2.3691406, 0.8876953, 2.1855469, 0.58935547, 2.4199219, 2.5195312, 0.77734375, -0.41186523, -0.37719727, 0.38378906, 1.671875, -2.4375, -0.9506836, -0.4584961, 1.1513672, -2.8203125, -0.50390625, -0.7373047, -0.48046875, 1.3554688, -1.6337891, 0.7714844, -1.2138672, -1.2275391, -1.5136719, 3.5703125, 0.62060547, 2.7832031, 1.0859375, 0.34814453, -1.1728516, 1.4609375, 1.3789062, -0.5776367, 0.13647461, 3.7675781, -1.5146484, -0.2208252, -2.3046875, 2.578125, 0.1907959, 1.5048828, -2.875, -2.0214844, -3.0683594, -1.6025391, -0.18273926, -4.2265625, -0.8828125, 1.7548828, 0.6069336, -4.4023438, 1.2480469, -3.4589844, 1.3203125, 3.1132812, -2.6386719, 1.5664062, -1.8964844, -0.28076172, -1.4882812, 2.5117188, 1.0263672, 0.09509277, -0.9785156, 2.0996094, 1.0078125, 1.6455078, -2.1875, -3.5253906, 1.5410156, -0.3071289, -1.8271484, 0.5673828, 1.4570312, -0.65722656, 0.7895508, -0.14941406, -3.7871094, 1.4052734, -0.5908203, 0.39111328, -0.44335938, 1.8925781, 1.3652344, 3.3027344, 0.8286133, -3.3203125, -2.4394531, 0.5986328, -1.0615234, 2.3261719, 0.27539062, -0.6142578, -0.76660156, 2.3710938, -1.6796875, -2.2382812, 0.7402344, -0.08972168, 0.46118164, 0.890625, -3.0410156, -3.0996094, -0.6621094, 0.68066406, 1.1015625, -2.5429688, -0.13671875, -0.5620117, 2.1601562, -1.9833984, 0.37036133, 1.3564453, 0.95947266, 0.3166504, 1.6494141, 0.09082031, 0.83496094, 1.328125, -0.8823242, 0.09875488, -0.97021484, 2.3164062, 3.4667969, 1.1347656, -0.16796875, 0.077697754, 0.7885742, 1.0869141, 1.0683594, 2.3652344, 0.47973633, -0.029434204, 0.9526367, -2.3554688, -1.9003906, 3.1152344, 1.1699219, 0.05960083, -0.6040039, -0.82373047, 2.6679688, 1.0986328, 0.1550293, 0.7578125, 1.6591797, 0.4958496, -0.9868164, -2.4902344, 0.2121582, -0.11541748, 0.3293457, -0.56591797, 0.7626953, 2.7773438, -0.79003906, 0.73095703, -0.4152832, -1.5068359, -1.1162109, -1.1611328, -0.6176758, -0.12780762, 2.0136719, -0.38183594, -2.4453125, 1.6914062, 1.4609375, 0.060638428, 1.3759766, 1.5908203, -0.0035190582, 0.41308594, -2.1777344, -0.8652344, 0.3779297, -0.39331055, 2.5898438, 2.0273438, -0.36621094, 1.4208984, 1.0908203, -1.0986328, 1.9384766, -0.78125, -0.0006222725, 1.5185547, -0.8510742, 0.94921875, -2.234375, 0.33789062, 2.0644531, 1.3525391, -0.10290527, -0.9379883, 0.765625, 3.3847656, -0.8769531, -1.3066406, 1.7099609, 2.7890625, 0.9926758, 1.7548828, 1.1142578, 0.44140625, -0.7026367, 0.123168945, 0.78125, -2.0917969, 0.5385742, 2.7226562, -0.64160156, 1.0712891, -1.7841797, 1.0800781, 0.7167969, -0.9160156, -0.42285156, -2.8808594, -0.038970947, -0.8642578, -2.2929688, 1.0527344, -1.7871094, 0.40429688, 2.0839844, -0.24902344, 0.28979492, 0.25097656, -2.6679688, -0.734375, 2.2460938, -0.8881836, 0.86328125, 1.7714844, 0.95996094, 1.8662109, -0.25830078, 0.52978516, -2.2753906, -1.6914062, 0.98876953, 0.5576172, -3.9628906, 1.3603516, -1.8730469, -1.0136719, -1.5634766, 0.053833008, 3.1679688, 1.2578125, -0.18615723, -1.5146484, 0.7832031, 0.3815918, 0.15124512, 0.09289551, 2.5761719, -0.47509766, -1.4423828, -0.0423584, -0.71533203, 0.609375, 1.3955078, -1.3222656, -0.06414795, 0.93310547, 0.7861328, -0.15405273, 1.2539062, 0.7836914, -1.5195312, 0.8378906, -4.3945312, -1.0595703, -0.70410156, 1.0878906, -0.71777344, 1.3974609, -2.0117188, -1.9404297, 0.025024414, -2.2460938, 0.7260742, -0.4958496, 1.4960938, -2.3027344, 2.1621094, 0.10064697, -1.4423828, -3.3261719, -1.9257812, 1.5478516, -2.296875, -0.8486328, -1.0537109, -0.26367188, -0.11602783, 1.0878906, -0.58447266, -0.81640625, -2.7578125, 0.27954102, 0.38964844, -0.42895508, -0.035491943, 1.6777344, -0.33520508, -1.7558594, 0.3864746, -0.44702148, -1.1386719, -0.17956543, 0.27026367, -0.038726807, -0.3095703, -0.8618164, 0.7001953, 0.81689453, 0.9042969, 0.4897461, -3.3183594, 0.4814453, 1.34375, -0.70996094, 1.3125, -1.5537109, -1.3486328, -2.6425781, -1.8300781, 2.1230469, 2.0527344, 2.3320312, -0.06222534, 0.21325684, 1.6640625, 0.60595703, -1.21875, -1.8300781, -0.6972656, 4.125, -3.6777344, -1.0029297, 0.39038086, 0.35546875, -2.6972656, 0.5234375, 0.18273926, -1.1464844, 2.4824219, 1.1640625, 0.7338867, -0.65478516, 1.3105469, 0.46240234, 0.8154297, 0.4814453, -0.17163086, -0.35375977, 0.86865234, -1.4130859, 1.9335938, 1.1621094, 1.3847656, 1.34375, 0.23217773, 1.2490234, -2.1484375, 1.0175781, -0.48291016, 0.671875, 0.23913574, 2.1113281, 0.19824219, -0.5131836, -1.1162109, -0.07208252, 1.3623047, -1.8955078, -1.9501953, 0.17443848, 1.9423828, -0.9770508, -0.57714844, -0.96777344, 0.41088867, -0.31860352, -0.80908203, 1.0429688, 1.2695312, 1.578125, -0.87060547, 0.30371094, -1.5664062, 1.5302734, -2.3574219, -0.20959473, -0.32055664, 0.054901123, -1.2753906, -1.1650391, 0.15185547, -3.1601562, -0.4416504, 3.5859375, 1.7294922, -2.3710938, 0.55126953, -1.8632812, 1.7011719, 1.6787109, 0.011764526, 0.080200195, 0.3347168, 0.78222656, -0.43066406, -1.8046875, 2.6347656, 0.28808594, -2.9511719, 0.030822754, -2.4707031, -0.6621094, -0.03640747, -0.5449219, -3.4472656, 0.6035156, -1.4472656, 1.2861328, -0.8227539, 3.6210938, -1.4082031, -0.011619568, 1.4570312, -4.2734375, -0.5595703, -3.0273438, -6.5078125, 0.39501953, -3.1289062, 0.3215332, 2.3613281, 1.0849609, -0.24072266, 1.0898438, 0.3161621, -4.0273438, -0.96875, -1.5693359, 1.5117188, -3.2246094, -0.7753906, 2.40625, 0.9980469, -1.2421875, -1.6914062, -0.11645508, -2.3378906, -0.1550293, 0.4555664, -1.9589844, -0.54296875, -1.5634766, 1.2167969, -0.5253906, -2.046875, 0.96191406, -1.2138672, -0.5942383, -3.1796875, 2.5273438, 1.5898438, -0.121398926, -1.6425781, 2.3554688, 2.6425781, -1.2041016, -0.4724121, 1.3486328, 3.703125, -0.7089844, -2.5839844, -0.57910156, -0.5571289, -0.24658203, -0.8178711, -0.23864746, 0.2512207, -1.6679688, 2.4121094, 1.1728516, 1.9238281, 0.6948242, -0.18847656, -4.5078125, 0.23327637, -0.5854492, -1.1494141, 0.25610352, -0.49267578, 0.00655365, -2.7167969, -0.48291016, -1.6347656, -1.7470703, -1.7080078, -0.8769531, -3.265625, 1.5419922, -1.7363281, -0.06100464, -0.5463867, -1.3847656, -0.9760742, -2.2207031, -1.2636719, -1.6503906, -0.50341797, -2.4472656, -0.90283203, 0.58496094, 1.7880859, -0.7871094, -0.7216797, 0.14831543, -2.1445312, 0.30297852, 0.34155273, 0.19018555, 0.28393555, -1.5390625, 2.5917969, -0.43139648, 2.8984375, -0.40283203, 0.77246094, 1.7939453, -0.16040039, -2.7421875, 1.2480469, 2.4707031, 2.75, 1.3613281, 0.7060547, 1.8613281, 2.3007812, 1.3994141, 0.04360962, 1.4667969, 0.22998047, 0.81591797, -1.0263672, 1.8535156, -1.6083984, -1.0205078, 1.2216797, 1.7539062, 1.1474609, 1.7607422, 1.3486328, -1.6806641, 1.3613281, -0.5527344, -3.4960938, -1.3457031, -0.30786133, -1.5908203, 3.3203125, -0.3408203, -2.7363281, 1.1992188, 2.9648438, -0.31079102, 1.8535156, 1.0556641, -1.2910156, -0.48388672, -2.9277344, -2.3671875, -0.7294922, -0.0647583, 1.9775391, -3.4863281, 1.40625, -0.265625, 2.1035156, 2.0292969, 0.6020508, -0.91796875, -1.078125, -1.9443359, -0.08203125, -1.5009766, -1.4375, -2.5527344, 1.4492188, 2.4277344, 1.4160156, 0.99072266, 0.5209961, -0.58935547, -1.1494141, -2.2832031, -0.7939453, 1.1484375, 0.9785156, -1.6162109, 3.390625, -0.1550293, -0.08355713, -0.35205078, -0.421875, -1.7236328, 1.7412109, 2.6308594, 2.1503906, -0.84716797, -0.51708984, -2.4628906, -6.2265625, 0.069885254, 2.3339844, 0.55566406, 0.9536133, -1.9941406, 0.13293457, 1.7089844, -0.3540039, -0.5083008, -4.0351562, 1.0986328, -0.3466797, -0.019638062, -1.1171875, 1.4277344, -0.22351074, 1.0507812, -1.0185547, -0.4416504, -0.7919922, -3.2265625, -1.0898438, 1.5615234, -1.7587891, 0.3371582, 2.4238281, -1.2636719, -1.9648438, 0.93652344, -0.57128906, -2.6992188, 1.1328125, -1.5976562, 0.46948242, 0.63720703, -1.7138672, 1.515625, 1.6904297, 0.80615234, 0.82910156, 1.2412109, 3.2050781, 0.2980957, -0.24353027, 0.6376953, 1.0419922, 0.07556152, -1.9755859, 0.21936035, 0.7915039, 1.0400391, 2.6933594, -2.4804688, -1.0576172, -3.5371094, -2.2988281, 0.8305664, -2.2578125, 1.2802734, 0.44384766, 1.7890625, 0.1439209, -0.66503906, 0.25073242, 0.66308594, 0.10626221, 0.40551758, 0.94189453, -1.7460938, 2.6699219, 0.85839844, -1.1318359, -3.2402344, -0.5205078, 1.9648438, 2.9121094, -0.012573242, 1.2431641, 0.044708252, -1.1621094, 0.69970703, -0.053527832, 1.1777344, 1.2451172, 0.7050781, -0.46655273, -0.7841797, 0.44360352, -2.1992188, 1.1337891, 1.4042969, -1.4863281, -0.78222656, 1.3408203, 2.5078125, -2.9042969, 0.87109375, -1.3525391, -0.0028705597, -1.8808594, -1.6826172, 1.1738281, -3.1640625, -0.00049352646, -0.47460938, -2.8828125, -3.0976562, 2.8847656, 0.8330078, -0.9477539, 0.36083984, 3.3417969, -1.0761719, -0.40576172, 2.0878906, -0.60009766, -0.04135132, -0.24194336, -2.6523438, -0.4482422, 1.421875, -3.0703125, 0.31103516, 2.2539062, 0.4572754, 0.8417969, 0.67529297, 1.4667969, 3.0898438, 1.8837891, 2.0644531, 2.8046875, 0.6899414, 2.2324219, 1.2695312, 2.4316406, 1.9755859, -1.3232422, 1.0576172, 0.92626953, 0.82470703, 1.0498047, -1.1230469, 0.06915283, -0.88183594, 0.23217773, 0.3137207, 0.9946289, 1.8652344, -2.7597656, -0.73339844, -0.30639648, -0.2800293, -3.984375, 1.0302734, -1.9355469, 0.29223633, 0.109680176, -0.25170898, 0.40722656, 1.2255859, -1.6269531, -0.24487305, 1.0673828, 3.7578125, -0.21716309, 0.022903442, -1.8554688, -2.46875, 1.4697266, 1.8300781, 0.43530273, 0.4272461, 2.2714844, 0.9628906, -1.2792969, 0.56152344, 1.5087891, -3.2167969, 0.60058594, -1.8125, 3.03125, 2.7265625, -1.0556641, 2.2773438, 0.72509766, -1.4726562, -4.28125, 2.71875, -0.14343262, 0.2644043, -0.15429688, -3.4941406, 2.1796875, -0.4165039, 1.0117188, -2.7519531, 0.28637695, 0.4921875, -1.3505859, 1.7236328, 0.52197266, -2.4648438, 3.1171875, 1.4453125, -2.3691406, -0.13696289, 1.5966797, 0.93310547, 0.41210938, 1.4912109, 0.6040039, 0.060058594, -0.3564453, 2.7265625, 0.9760742, -2.4765625, 1.4033203, 3.2226562, 0.087646484, 1.0566406, -0.90283203, -0.48706055, 1.3369141, 0.9375, -0.7885742, -0.7578125, -2.8007812, -0.48461914, 0.7807617, 1.1992188, -0.8955078, -1.1572266, 0.4572754, 0.33691406, -2.5625, -0.37475586, 1.3681641, -2.1367188, 2.5214844, 1.109375, -1.2949219, -0.60791016, -0.08190918, 1.2998047, -1.8476562, 0.25512695, 0.4814453, 0.39624023, 1.3916016, -2.1679688, -0.071777344, 2.0234375, -0.95947266, -1.0488281, 0.9814453, -0.50439453, -0.5253906, -0.023635864, -2.1738281, 1.1230469, 3.5078125, 0.24768066, 1.0546875, -1.2587891, -0.55371094, -0.2668457, -2.1875, -1.1464844, 0.52978516, 2.6210938, 1.7177734, 1.3134766, -0.56396484, -2.5332031, 0.048553467, -0.077697754, 1.859375, 0.87890625, -0.4777832, 1.2841797, 1.5830078, 1.3945312, -0.6801758, 0.70410156, -0.18933105, 0.12445068, 1.5585938, -1.8945312, 2.4238281, -1.5771484, 0.53125, 0.9428711, 4.6015625, 0.80566406, -1.0068359, 0.5957031, 1.4257812, 1.2568359, -1.0410156, 0.76904297, -0.96875, -0.29174805, 0.85791016, 2.0996094, 3.5566406, 2.0585938, -0.45532227, -2.4140625, 1.3212891]}, "B000C77UYA": {"id": "B000C77UYA", "original": "Brand: Manchester Tank\nName: Manchester Tank & Equip 10393.1 11lb Propane Tank\nDescription: \nFeatures: Colonial white powder coated finish\nVertical cylinder design\nProduct weighs 11 pounds\nAll cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E\nAll Manchester cylinders are triple tested with dry pneumatic air\n", "embedding": [1.0820312, 1.6191406, 2.6875, 2.328125, 0.3552246, -2.4414062, -0.0579834, -1.4492188, -1.3652344, 0.40600586, 1.5400391, 1.3466797, -0.48168945, -1.0605469, 0.38452148, -1.5830078, 0.3173828, 0.65722656, 0.5683594, 1.6181641, 1.9951172, 0.13964844, -0.2866211, -2.4667969, 0.5810547, 1.5449219, 3.6386719, -1.453125, -0.57177734, -0.3984375, 1.5458984, -0.49145508, -0.3178711, 1.5878906, 0.90966797, 0.32983398, -0.5317383, -1.3544922, -5.4921875, 0.4609375, -2.671875, -0.62060547, 1.1621094, -0.9277344, -1.8378906, 0.07745361, -1.0146484, -1.9658203, 0.7890625, -0.9604492, -0.018035889, 1.8232422, -0.003255844, 0.22143555, 0.4465332, 1.2900391, 3.7246094, -0.033325195, 0.7734375, -0.7133789, 3.2988281, -0.48608398, -0.9819336, 1.3916016, 0.08276367, 2.8007812, -1.5029297, -0.45703125, 1.1230469, 0.26367188, 0.8774414, 1.4609375, 1.0839844, -2.0742188, 1.3710938, -0.5683594, -2.7597656, 2.1894531, -0.5854492, -2.1171875, -0.9628906, 1.3164062, 0.37402344, 0.20739746, -2.0820312, -0.4411621, -0.18103027, -0.73046875, -2.8476562, 0.6464844, -1.0361328, 1.4179688, -1.9365234, -4.4101562, 1.1845703, -1.5380859, 0.30566406, 1.6201172, -0.008895874, 1.2392578, 0.4399414, 0.4741211, -0.54248047, 0.6713867, -1.6787109, -1.28125, 1.5888672, 0.8676758, -1.5986328, 0.88964844, -0.765625, 0.89941406, 0.58251953, -0.2607422, 1.0458984, -0.5600586, 2.0019531, -1.4824219, 3.5820312, 0.24145508, 3.7246094, -1.4882812, 2.0878906, 0.4951172, -0.89697266, -0.5698242, -0.9165039, 0.99902344, 2.8710938, -0.39941406, 1.3818359, -0.703125, 3.1015625, -0.70458984, -0.29736328, 0.024490356, 0.8823242, -2.0722656, -0.78515625, -1.0615234, -3.3125, 1.6933594, 0.65527344, 0.09301758, -3.4550781, -2.7265625, -0.6147461, -1.1064453, -1.6865234, -1.4013672, -0.13378906, -1.3105469, -1.4755859, 1.3574219, 1.6269531, 1.8378906, -2.453125, -1.2324219, 0.38208008, 2.0644531, 1.4326172, 0.59472656, -0.8833008, 1.4726562, -1.8925781, -1.9462891, 0.44970703, -0.7236328, -1.5966797, 1.9189453, 2.3417969, -0.41015625, -0.18078613, -0.08105469, -0.6513672, -0.5800781, 1.8486328, 1.3730469, -0.45776367, -0.66259766, -4.2421875, -1.0849609, -1.5791016, -2.5019531, 3.5253906, -0.17077637, -2.4316406, -2.1035156, 1.1953125, 0.7705078, -1.6601562, 0.22387695, 0.62158203, -0.17553711, -0.3400879, -2.6113281, -0.5917969, -2.4785156, 2.2851562, 2.9882812, -0.35766602, 0.035369873, 0.7841797, -1.0605469, -0.40698242, -2.4511719, 2.0644531, 0.074401855, 1.7714844, 1.8535156, -1.0996094, -1.5263672, 0.98046875, -1.7626953, 0.14221191, -0.59472656, -0.17163086, -0.65234375, 1.3652344, 0.84277344, 0.49438477, 0.82958984, 0.41455078, 0.32666016, 0.081970215, 1.1474609, 1.2861328, 2.6230469, -3.4023438, -0.40771484, 1.8261719, 3.140625, -1.3066406, 0.4013672, 1.3857422, 1.1835938, 0.49145508, -1.3056641, 1.6611328, -2.0546875, 0.32885742, 1.9980469, -0.97558594, -1.3212891, -0.8886719, -1.0517578, -0.11859131, 0.8857422, 1.9160156, 0.78808594, 0.30688477, -1.3730469, 0.20690918, -0.14013672, -2.4277344, 1.7304688, 0.21386719, 0.09112549, 0.5830078, -2.9023438, 0.93408203, -1.6689453, -0.17492676, -0.5654297, 0.6816406, 0.4741211, 2.3398438, 0.5083008, -1.2646484, -0.61621094, 1.8164062, 1.0742188, -1.2050781, -0.5444336, 1.5605469, 1.8007812, -0.3959961, 3.2441406, -0.22302246, 1.2011719, 0.82910156, -1.1787109, 1.0410156, -3.40625, 0.7871094, 0.6958008, 1.1455078, -0.12866211, -2.3125, 2.0800781, 2.7949219, -0.73046875, -0.27368164, 1.8291016, 2.0390625, 3.2617188, 4.3789062, -0.45581055, -0.7919922, -2.0078125, 0.97558594, 0.40673828, 0.060821533, 1.0839844, 2.7363281, -0.027389526, -0.4177246, -0.28979492, 0.64208984, -1.9755859, 1.6835938, 0.7294922, -1.6992188, 0.4741211, -0.7211914, 0.17932129, 1.4501953, -3.4570312, 1.2714844, 1.3369141, 2.0136719, 0.92626953, 1.8876953, -0.40551758, 2.5175781, -0.55810547, -2.5351562, 1.7695312, 1.3457031, 1.0224609, 3.1308594, -1.1318359, 2.6230469, -2.9335938, -1.0019531, 1.4169922, -2.1484375, -2.0859375, -0.26000977, -2.2695312, 1.0654297, 4.3242188, -1.6357422, 2.8613281, 0.9506836, 0.58984375, -1.1689453, 1.4257812, -0.2854004, -3.1582031, 1.3671875, 1.6660156, -2.2597656, -3.109375, 0.4724121, 0.34765625, -0.71777344, 2.2949219, -1.0058594, 0.90966797, -0.28564453, 0.076049805, -0.39916992, -1.6894531, -1.0507812, -0.1616211, 0.4104004, -3.8535156, 2.1386719, -2.1113281, 1.1328125, -1.8037109, -0.24536133, 0.1303711, -1.6855469, 0.7470703, -0.47045898, 4.125, 1.0419922, 0.57714844, 0.6503906, 0.17468262, 0.5361328, -1.5136719, -2.7890625, 0.48461914, -1.7988281, 0.45532227, 0.2565918, -5.0585938, 0.96191406, -0.61816406, 1.5302734, -0.20227051, 1.1875, -2.1523438, -0.76123047, 0.22631836, 1.0390625, 1.2792969, 0.26904297, -0.43701172, -2.2402344, -0.44067383, 1.0830078, 1.7080078, 0.98046875, 0.7470703, -0.30297852, -0.20239258, 0.1619873, 0.7050781, -1.0166016, 2.1191406, 0.8359375, -4, -0.5566406, 0.44189453, 1.5869141, 0.6855469, -1.6992188, -1.8457031, -3.328125, -0.24230957, 1.9433594, 3.0351562, 2.6367188, 1.2431641, -0.7519531, 0.024902344, 0.61376953, -1.0820312, 0.27661133, -0.32836914, 0.5048828, 0.16906738, -1.9785156, 2.1132812, 2.6445312, -2.75, -2.1777344, 0.50390625, -0.88964844, 0.3984375, -0.5727539, -0.8652344, -1.2958984, 1.5488281, 1.8066406, 0.18139648, 0.035491943, 2.0722656, 1.0556641, 2.3730469, -1.0341797, -1.0537109, 1.2978516, -2.0234375, -2.03125, 0.3479004, 1.2958984, -1.0292969, 0.3149414, -1.4238281, -2.0097656, -0.0034236908, 0.79345703, -0.21789551, 2.1660156, 0.34765625, 1.7158203, 0.6923828, -2.1972656, 0.67041016, 1.3583984, 0.8886719, 0.041748047, -0.46801758, -0.8432617, 0.93359375, -1.1230469, 1.2148438, -0.5878906, 0.5566406, -0.56396484, 0.08099365, -0.41015625, -1.4414062, 2.7382812, -1.7158203, -0.20336914, -1.0214844, 0.88964844, -2.4179688, -2.6386719, -0.8173828, -0.69921875, -1.1318359, 1.921875, -1.421875, -1.8339844, -1.9628906, 0.24194336, 0.31420898, 3, -1.7431641, 0.3383789, -0.609375, -0.23522949, 0.47729492, -0.1307373, 0.22802734, 2.3613281, -1.7919922, -0.86865234, -1.0166016, 1.4335938, 0.8701172, -0.3671875, 1.71875, -1.5683594, -2.2890625, 4.5546875, -0.6948242, 2.5566406, 0.5336914, 0.33984375, 1.0371094, 0.70751953, 1.8574219, -1.7519531, -1.7402344, 0.50341797, -1.2001953, -0.0017881393, 1.8378906, -0.36621094, 1.0097656, 0.4736328, -0.09857178, -2.0996094, -2.6132812, -1.1445312, 0.3876953, -0.81347656, -1.6044922, 1.1894531, 2.9785156, -3.984375, -1.4042969, 0.50341797, -2.4785156, -1.4492188, -1.828125, -0.31469727, 1.4541016, -0.4038086, 0.60302734, -1.6933594, 0.43945312, -0.20129395, 0.53222656, -1.1015625, 0.037750244, 2.7578125, 0.1439209, -0.37231445, 2.2207031, 0.4790039, 3.2460938, -1.7666016, -0.44311523, -0.44921875, 1.6689453, -0.10797119, -2.6015625, -0.9838867, -1.2441406, 0.99609375, -0.31396484, 0.4873047, -0.92041016, -0.8286133, -1.3427734, 1.5644531, 1.0371094, 0.96435547, -0.78027344, 2.0390625, 1.0263672, 1.7919922, -1.0273438, -0.77734375, 0.5488281, 0.014785767, -0.26391602, 2.4609375, -2.828125, -0.6645508, -1.8486328, 0.30151367, -3.84375, 1.2880859, 2.4160156, 1.2587891, 0.2993164, -0.17285156, -1.4550781, 0.50341797, 2.0605469, 1.6611328, -0.27148438, -0.4560547, -1.3007812, -0.019058228, 1.9589844, -1.6328125, 0.44921875, 1.2539062, -0.9042969, -0.8066406, 0.14208984, -0.83447266, -1.8476562, -0.24072266, -1.2568359, -0.7006836, 2.7851562, -1.8310547, 3.7460938, 0.5180664, 0.38793945, 0.55126953, 2.6992188, 1.3105469, 0.10858154, 2.7304688, -2.0292969, 2.0429688, -0.26123047, 0.5498047, 1.6884766, 0.6357422, -2.3925781, -0.078125, -0.4897461, -0.39208984, 0.6479492, -0.14526367, 1.1015625, -0.7128906, -0.18530273, 0.8935547, 1.0908203, 0.21350098, 1.6142578, 1.4082031, 0.5620117, -0.92871094, -0.92626953, 0.28588867, 2.9941406, -1.1230469, -0.8300781, -0.7167969, 1.9013672, -0.11315918, 0.87109375, 2.2265625, -0.88964844, -1.0625, -1.6220703, -1.8769531, -1.0097656, -0.59472656, 0.030090332, 1.0361328, 1.0322266, 0.50146484, 0.08459473, 3.5253906, 0.26293945, -0.67285156, -0.21850586, 0.54785156, -1.1171875, -1.6416016, -0.7163086, -3.2167969, 0.3334961, -1.7304688, -0.2841797, -0.4416504, 1.5048828, 5.4140625, -1.359375, 1.125, 0.7211914, -0.044403076, -2.0058594, -0.7128906, 3.3125, 0.63427734, 1.8183594, -1.5859375, -1.6660156, -0.921875, 0.95458984, 1.4257812, 0.5107422, -0.4724121, 0.48339844, -2.3945312, -3.7988281, -2.7285156, -0.068603516, 0.8979492, 1.2548828, -0.8442383, -1.8828125, 0.36791992, -0.8041992, -0.14160156, -2.4023438, 1.0820312, -1.5146484, 0.3647461, -2.2207031, -0.29418945, 1.0859375, 1.4208984, -0.34033203, -0.08325195, -0.45361328, -2.15625, -4.6757812, 0.8173828, -0.68408203, -0.6152344, 0.03463745, 0.6982422, 2.7285156, 2.2167969, 1.8828125, -1.3476562, 1.4785156, -1.2167969, 0.3083496, 2.0859375, 0.059417725, -0.4404297, -0.10205078, -0.107666016, 0.28271484, 2.2167969, 1.0820312, -2.7246094, -0.2286377, 0.1932373, -0.6479492, -0.60791016, 1.9462891, 1.6474609, -1.6357422, 2.4277344, 2.5644531, 1.2011719, -1.6621094, -0.6533203, 0.55810547, -2.296875, -0.77685547, -0.41308594, 0.81884766, 0.953125, 0.7080078, 1.8056641, 0.83203125, 0.04083252, -0.12988281, 1.1894531, 0.9067383, -3.6425781, 0.7866211, 0.12176514, -2.6582031, -1.2998047, 0.35351562, 2.8886719, -0.017959595, -0.11920166, -0.69677734, -0.2565918, -2.1738281, -0.14111328, -0.19848633, -0.8457031, 1.0947266, 1.1884766, -1.796875, -0.108947754, 4.4335938, -1.9140625, 1.0751953, 1.5244141, -0.33544922, -0.84033203, 2.0722656, 3.0742188, -0.79541016, 0.9423828, -0.97558594, -0.98291016, -1.0810547, -0.62353516, 1.8671875, -2.3554688, 0.49804688, -0.1463623, -0.8232422, -1.7304688, 0.8178711, -0.078308105, -1.4169922, 1.8964844, -0.7133789, -2.4824219, -1.0576172, 1.4492188, 0.5317383, -0.3955078, -0.85302734, 0.60253906, 1.2617188, 3.3515625, -2.9902344, 1.3085938, -0.66796875, 1.7910156, -0.42456055, -2.2011719, -1.1376953, 0.46826172, 2.4335938, 2.390625, 3.8984375, -1.2109375, 0.47558594, 0.3491211, 1.0234375, 2.8496094, -0.765625, 0.8618164, 0.1270752, -0.9194336, 0.94091797, -0.38452148, 0.609375, -0.29907227, 0.703125, -0.22143555, -0.40625, 1.7910156, -1.4775391, 0.072509766, 0.17700195, 1.5371094, 0.9448242, -0.54541016, 0.671875, -1.7236328, -0.65527344, -0.3864746, 1.0117188, 0.8408203, -0.9350586, 1.1738281, -1.1494141, 1.7792969, 1.1757812, 0.26757812, -2.34375, -1.0878906, 0.36523438, -0.19104004, 1.7304688, -0.025405884, -1.1464844, -1.4003906, -2.3867188, -0.73046875, -0.48461914, -0.40893555, 1.4150391, 0.83935547, 1.4824219, 1.4833984, -0.26000977, 2.2265625, -0.07128906, 0.13513184, -3.3769531, 0.16381836, 0.93359375, -0.66015625, 1.1767578, -2.7578125, -1.7871094, -3.3671875, 0.104003906, -3.40625, -0.1796875, 1.5, -4.8242188, 0.3112793, -0.34887695, -0.17211914, 1.8945312, 1.6611328, -0.9067383, -0.20483398, -0.06842041, 0.7451172, -0.55908203, -1.3730469, -0.48413086, 2.390625, -3.1269531, 1.6142578, -0.6142578, -0.2722168, -1.59375, 2.9824219, 1.3837891, 1.5019531, 2.0742188, -1.1855469, 1.2705078, -0.8027344, -0.3347168, 0.36499023, -0.48901367, 0.21386719, -1.2802734, -2.5585938, 1.2949219, -0.037475586, -2.3964844, 0.5253906, -2.2402344, -1.4619141, 1.0224609, 0.46557617, -1.0332031, -0.5185547, -2.4960938, 0.020095825, 2.1679688, 0.86621094, -2.1328125, 0.88378906, -0.45898438, 2.3046875, 0.30419922, -1.4658203, -0.78564453, -0.4597168, -1.4726562, -1.3974609, 0.1282959, -0.3112793, -2.5546875, 1.8330078, -1.2119141, -0.13354492, -0.79052734, -0.42358398, -0.40942383, -1.046875, 1.5683594, -0.62841797, -1.2089844, 0.9057617, 0.296875, 0.16137695, -2.0175781, 1.4208984, -0.4416504, -1.2402344, -1.6884766, -3.7246094, 2.1738281, 0.24108887, -0.27954102, 1.6054688, 3.5820312, 2.96875, -0.7294922, -0.48706055, -0.061279297, 0.4897461, 0.77001953, -2.6191406, 1.5498047, 0.7363281, 0.05822754, 0.9770508, 1.7861328, 0.66259766, -0.62597656, -0.5229492, 2.3847656, -2.2597656, -0.47314453, -0.9555664, 0.9067383, 0.032226562, -0.55371094, 0.87597656, 3.5722656, 0.5942383, -1.6416016, -1.7626953, -0.8027344]}, "B016NA3XAO": {"id": "B016NA3XAO", "original": "Brand: DuraSteel\nName: DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU\nDescription: \nFeatures: High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes.\nMade to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors.\nIndoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you've been looking for.\nPropane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator.\nQuality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.\n", "embedding": [-3.8320312, 2.3828125, 3.359375, -1.2353516, -1.0205078, 0.62841797, 0.7392578, -2.515625, -1.5214844, 1.2636719, 1.6728516, -1.3857422, 1.9638672, -1.5400391, 0.5498047, 2.2050781, -0.40844727, 1.2333984, -0.55615234, 1.2617188, 1.4472656, 0.73535156, 0.61376953, -1.7451172, 1.1552734, -1.53125, 2.6289062, -2.6621094, -1.1572266, -2.2558594, 1.8193359, -0.057861328, 1.0878906, 0.21240234, -3.3046875, -1.9003906, 0.057647705, 0.13464355, -4.5429688, -0.3947754, -0.32373047, 1.6923828, 2.0371094, -1.2382812, -2.1054688, 0.74853516, -1.0810547, 0.12359619, -1.0810547, -1.3369141, 1.0761719, -0.5053711, -0.72021484, 0.49536133, 0.072143555, 1.4921875, -0.65283203, -1.6279297, 1.1699219, 0.5234375, 3.0566406, 1.6494141, -3.0625, 0.46020508, 0.7949219, -1.0185547, 1.8486328, -0.08569336, -0.36865234, 0.1829834, 2.5566406, 0.21484375, -0.44213867, 1.4658203, -0.11541748, -3.2714844, -2.3359375, 0.49975586, 1.6074219, 0.8847656, 0.0803833, 1.8984375, 1.3857422, -2.3027344, -1.2070312, -0.13439941, 1.2333984, -1.5419922, 2.9101562, 2.8007812, -3.0585938, 2.9492188, -1.3535156, -3.9140625, 3.5820312, -0.75, 0.110961914, 0.97314453, -0.234375, -0.03112793, -2.1855469, -0.8984375, -2.046875, 1.2441406, -3.0683594, 0.19628906, 0.59521484, 1.453125, -2.8417969, 2.7070312, -2.8105469, -0.32080078, 0.6269531, -2.5585938, 0.80810547, 0.038208008, 1.2773438, 1.0449219, 2, -0.43969727, 4.0859375, -1.1835938, -0.25683594, -1.1689453, 0.41503906, 0.1541748, -2.7539062, 0.60498047, 3.8574219, -2.9023438, -0.4572754, -0.114990234, 2.1015625, -3.3183594, -1.3984375, -2.4042969, 0.11236572, -0.47045898, -3.2128906, -1.2226562, -2.4101562, 1.4746094, -0.09503174, -0.75341797, -3.1152344, 1.1650391, 1.3447266, 0.7319336, 1.2792969, -1.7919922, 1.4990234, -1.0722656, 0.375, -2.0351562, 1.9814453, 0.15527344, -1.4267578, 0.04058838, 4.4335938, -0.6123047, 0.010620117, -1.0732422, 0.37939453, 3.4277344, 0.3720703, -1.7226562, 0.029647827, 2.796875, -0.087524414, 1.3662109, -0.49145508, -1.4394531, -1.0615234, 1.1464844, 0.9223633, -0.34423828, -0.7866211, 1.9648438, 0.35131836, -0.8027344, -1.0654297, -2.8574219, 0.3779297, 0.9663086, -0.3425293, -1.3164062, 0.74316406, 1.1904297, 1.7158203, -1.3505859, -1.8828125, 0.95751953, 0.9819336, 0.017913818, 1.4609375, -1.5507812, 0.45239258, -2.1777344, 0.66796875, 0.20117188, -2.3359375, -2.1132812, 0.48608398, 0.9399414, -1.1376953, -1.7949219, -1.6103516, -1.2324219, 2.1152344, 0.80859375, 0.8227539, -1.7900391, 1.9003906, -0.83154297, -0.5800781, -1.9541016, 1.0537109, 0.5527344, 1.2021484, 0.48461914, -0.8383789, -1.3525391, 0.38183594, 1.125, 1.9726562, 2.140625, 1.4814453, -0.5776367, -2.421875, -0.16564941, 2.6894531, 1.0087891, -2.0019531, 1.0722656, -1.9335938, 3.7285156, 2.0351562, -1.1201172, 0.12475586, -1.7314453, 2.0214844, -1.5498047, -0.26342773, -1.7138672, -1.0439453, 0.42797852, 0.18469238, 2.1679688, 0.9692383, 0.65722656, 0.65722656, -0.1472168, 0.90966797, -0.69873047, -0.9189453, -0.20227051, -0.36621094, 0.039093018, -0.6723633, 0.15795898, 3.6328125, 0.1829834, 0.52685547, 1.2792969, 0.066467285, 0.19726562, 3.203125, 0.2915039, -2.6132812, -0.7807617, 1.7832031, 0.60009766, 2.6796875, 1.2080078, 0.14135742, 0.9501953, -2.0371094, 3.4589844, 1.0029297, 1.5400391, 0.98046875, -1.5458984, 2.4902344, -1.9599609, 1.3125, 2.1875, 2.1367188, 0.22888184, -0.38842773, 2.7714844, 5.3789062, -1.3515625, -2.7167969, 2.75, -1.4492188, 2.0722656, 0.034454346, 0.65478516, 0.73583984, -0.4885254, 0.1550293, 3.0371094, -0.6381836, 1.5576172, -1.5185547, -1.1230469, 1.3603516, -1.8144531, 0.9819336, 1.0585938, -0.0019073486, -0.08215332, -0.640625, -0.07281494, -4.0351562, 1.6269531, 2.0371094, -2.7304688, 2.5429688, -1.4228516, 0.43115234, 2.8222656, 0.48413086, -1.28125, 0.24157715, 1.9355469, -0.27075195, 1.109375, 0.22753906, 0.03918457, -2.9492188, -0.99316406, 0.36694336, -0.34375, -2.0273438, -0.43774414, -1.2949219, -2.1933594, 1.5537109, -3.0703125, -0.75146484, 2.2617188, -0.98583984, -0.23046875, -1.8017578, -4.2304688, -2.6347656, -2.1015625, -1.9902344, -1.2294922, 0.5629883, 2.1796875, -1.3261719, -3.3203125, 1.4179688, -1.5185547, -1.0185547, 2.2148438, -0.36279297, 1.7021484, -0.1104126, -0.5917969, 1.1533203, 1.3310547, 0.49829102, -2.9941406, 0.71972656, -2.3632812, 1.2480469, -0.48754883, 1.8544922, -0.24987793, 0.78759766, -2.8867188, 0.60791016, -2.0585938, -0.10046387, 2.2167969, -0.65771484, 1.8867188, -1.0800781, -2.1152344, 1.1171875, 0.3713379, -0.65185547, 0.84765625, 0.33569336, -1.84375, -2.0332031, -2.7890625, -1.0576172, -2.0839844, -1.1523438, -0.76904297, -0.4477539, -0.609375, 0.86035156, -3.0839844, -0.5083008, -0.12915039, -1.2841797, 0.16296387, -2.0605469, -0.8261719, 0.81591797, -1.1933594, -1.453125, 1.7099609, 1.1425781, -1.7900391, 1.8037109, 1.6025391, -0.27807617, 0.070007324, 0.75146484, -1.3388672, 1.9404297, -1.46875, -1.7666016, 2.3320312, -0.8959961, -0.47338867, -2.0039062, -0.05038452, 3.7460938, 1.0058594, 1.9072266, -0.022155762, -1.3232422, -0.3330078, 2.0019531, -0.74316406, -2.6621094, -0.004463196, 2.9375, -1.4208984, -0.28222656, 0.59814453, 1.2460938, -3.9863281, 0.6948242, 3.4414062, -0.07385254, -0.28466797, 1.09375, 1.4863281, -0.7080078, -2.2734375, 0.7836914, 1.6738281, 0.6850586, -0.7709961, -1.8613281, -0.39282227, -0.8955078, 1.6523438, 2.5859375, 0.765625, 3.1328125, 2.796875, 1.1181641, -1.3945312, -1.0410156, -0.43676758, 0.5419922, -0.12792969, 2.7539062, 0.08758545, -0.21203613, -1.7529297, -0.47583008, 0.39819336, -1.3447266, -0.5942383, 1.9931641, -0.6748047, -0.48461914, -0.9394531, 0.84228516, 0.6821289, -2.3535156, 3.4414062, -1.5673828, -0.14648438, 1.2626953, 0.5493164, 2.1464844, -2.3515625, -1.234375, -0.8227539, -2.2480469, 0.43066406, -1.4404297, -0.37573242, -2.6425781, 1.3173828, -0.07141113, -2.7480469, 1.109375, -0.20092773, -0.028320312, -0.0859375, -0.045196533, -0.01424408, 0.06890869, -1.3095703, -0.625, -2.0039062, -1.4599609, -0.45996094, 0.67871094, 2.1152344, -0.49047852, 0.1463623, 0.058380127, -1.4892578, -0.5913086, -1.4853516, -1.8837891, -2.171875, -1.0957031, 0.7089844, 0.7885742, 0.43432617, 3.5800781, -0.84033203, -0.8725586, 1.3662109, -2.4023438, -0.70214844, -0.44482422, -2.2890625, 1.4609375, -1.2167969, -0.0030212402, 1.3681641, 0.041870117, -1.1601562, 0.6269531, 1.3271484, -2.6855469, -0.77441406, 0.076293945, 1.9648438, -1.9335938, -0.92529297, 1.3828125, -0.100097656, -0.8178711, -1.7363281, 2.9433594, -0.27148438, 0.9951172, 2.2949219, -1.6201172, 1.7167969, 0.34204102, 0.51660156, -1.4726562, -0.008148193, 0.033599854, -3.2148438, -0.16833496, -3.7226562, 1.4648438, 1.8164062, -0.28833008, -0.18920898, 1.9814453, 1.2392578, 0.9550781, 2.2851562, 0.328125, 1.5839844, 0.4873047, -1.5605469, -0.84765625, 1.1767578, 0.8852539, -0.30126953, -0.103759766, -1.4287109, -0.73291016, 0.21557617, -0.5883789, -0.04699707, 2.1757812, 1.6884766, -1.7666016, -0.91503906, -0.4272461, -2.9238281, -0.18933105, -0.0082473755, 0.7446289, -1.7724609, 0.8984375, -1.2119141, 1.5273438, -0.5151367, -0.90283203, -3.59375, 4.0078125, 3.1289062, 1.5615234, 2.5371094, -1.9775391, -2.1738281, -0.7944336, 1.3017578, -0.53564453, 1.0996094, 1.3378906, 0.3557129, 1.7158203, 0.61328125, 0.7089844, -0.13513184, 2.2636719, 0.5854492, 1.4296875, -2.1191406, 0.23986816, 0.28833008, -1.6230469, 2.0625, 0.119506836, 1.3945312, -1.8378906, -4.2304688, 1.2050781, -0.62158203, -1.3505859, -0.8120117, 0.30932617, -1.7441406, 0.19519043, 1.4824219, 2.1191406, 0.17346191, 1.9082031, -0.4633789, 2.4179688, 2.1621094, 0.9345703, -0.203125, 1.4921875, -2.6074219, -0.57421875, 0.5058594, 0.75683594, 2.2734375, 2.7480469, 0.74316406, -2.1425781, 1.2978516, 2.2363281, -2.2578125, -1.1464844, -1.9648438, -1.5429688, 0.7080078, 0.09991455, 0.23852539, 0.6098633, 2.4707031, 0.3557129, 2.0273438, -1.4228516, -0.80908203, -2.21875, -2.6992188, -1.8447266, -2.1972656, 0.6191406, -2.3144531, 0.0009794235, -0.46875, -0.58691406, 0.43945312, 0.3623047, -1.5, -0.78759766, 3.4160156, -2.0019531, 0.9355469, -1.1054688, -1.7509766, -0.09887695, 2.515625, 1.9570312, 2.328125, 0.90478516, -0.34692383, 0.6928711, -1.4853516, 0.96435547, -0.94140625, 1.7402344, -1.6171875, -0.07696533, 4.34375, -0.24743652, -0.42919922, -3.0019531, -1.5791016, -1.6533203, 2.2929688, -0.29760742, -2.3769531, -1.4550781, -0.5151367, -2.5761719, -3.1855469, -1.7773438, 2.4804688, 0.3227539, -0.7583008, -0.114746094, -0.44091797, -0.98535156, -0.1607666, -0.23498535, -1.4316406, 0.5048828, 0.7441406, -0.4946289, -1.3330078, 2.1679688, 2.3398438, -0.7973633, 0.65283203, 0.52441406, 0.7910156, -1.1337891, -2.1054688, 3.2714844, -2.2851562, 0.6376953, 0.66748047, -1.7138672, 1.2685547, 3.0234375, 0.31835938, -2.6132812, 2.0664062, -2.4238281, -1.3398438, 0.38476562, -1.5283203, -0.28930664, -0.5834961, -0.09906006, -1.1015625, 1.890625, -1.4287109, 0.29785156, -0.58203125, 0.39086914, -0.0024776459, 0.05722046, -0.48388672, -0.31103516, 0.06738281, 2.3398438, 0.47045898, -1.8291016, -2.0507812, -1.9443359, -1.4707031, 0.8046875, -0.9213867, 0.89404297, 0.02848816, 0.70947266, 2.2792969, -0.07861328, -0.12866211, -0.32885742, -0.5756836, -0.9716797, 2.7363281, -1.4716797, 3.59375, 2.5585938, -1.3457031, -1.9355469, -3.0898438, 1.4726562, 0.33666992, -0.092041016, -1.2529297, -0.1463623, 0.4892578, 1.5273438, -0.6191406, 1.0292969, 2.5195312, 1.6054688, -2.703125, 0.7734375, 1.8681641, -1.9404297, -1.0664062, 2.0722656, -0.7763672, 0.21008301, 4.3984375, 1.0654297, -0.15185547, 2.5625, -1.2832031, -0.84765625, -0.6689453, -1.5117188, -2.1015625, -2.5488281, -1.71875, -1.5058594, -1.7695312, -1.2617188, -0.34814453, 1.1835938, 1.5322266, 0.0770874, 1.5986328, -0.4111328, 2.2421875, 2.6054688, 3.25, -0.37475586, 0.95166016, -1.5078125, 1.4287109, 2.4277344, -0.9609375, 1.6591797, 0.11907959, 0.18847656, -1.9042969, 0.3840332, -0.6435547, 2.2929688, -0.39794922, 2.703125, 1.8398438, 2.0273438, 2.5234375, 0.46801758, 3.171875, 4.4648438, 1.0615234, 0.7114258, 0.88671875, 0.69873047, 0.16101074, -0.41210938, -0.9038086, -2.0625, -0.4638672, 0.73046875, 0.73046875, 2.5898438, -3.828125, 0.39160156, -1.9658203, -0.3095703, -2.0898438, -0.19067383, 0.08850098, -2.5214844, -0.87939453, 0.44921875, 2.1015625, 0.5541992, 1.4111328, -0.9345703, -0.070495605, 1.3427734, -4.609375, 0.34838867, 0.51171875, -0.83496094, 1.0390625, 1.8261719, 0.3474121, 0.076416016, 0.42895508, 0.38305664, 0.2644043, -0.1159668, 0.76464844, -1.3359375, -0.6269531, 0.62109375, 2.7167969, -0.13427734, -0.58740234, 1.5732422, 0.13439941, -0.828125, -2.5507812, 3.5664062, 1.1191406, 1.4150391, 2.3769531, -2.3320312, 2.8886719, -1.1757812, 0.73535156, -1.6621094, 3.0683594, 0.5644531, -3.2910156, 1.15625, 0.6723633, 0.65625, 2.7363281, 0.37158203, -0.81884766, 1.6572266, 0.60546875, 1.0400391, 0.6875, 0.70751953, 0.07220459, -0.07739258, -0.94384766, 3.9648438, -0.3466797, -1.2578125, -0.23583984, 2.0058594, 0.11633301, 2.1113281, 1.5732422, -0.44091797, 1.1943359, -1.3515625, 0.73046875, 0.7060547, 1.1689453, -1.9072266, -1.6210938, 0.079711914, -0.46118164, -1.5244141, 1.8662109, 0.5444336, -0.6274414, 0.7583008, 1.8583984, -2.0234375, 2.109375, 1.0664062, -0.27807617, -0.42993164, -0.6826172, 1.2705078, -1.6318359, -1.9003906, 1.2880859, -0.40893555, 0.74316406, -1.8222656, -0.6245117, -0.38110352, -0.6196289, -1.0166016, 1.3710938, -0.0970459, -0.3071289, 2.7285156, 0.1887207, -1.6992188, 2.8027344, -1.3476562, 0.28076172, -1.2558594, -2.9199219, -0.77685547, -1.5205078, -1.6777344, -0.5185547, 2.5019531, -0.56689453, 1.0283203, -1.3291016, -5.2148438, -2.046875, -0.85058594, 0.25097656, -0.71484375, -1.3867188, 1.0507812, 0.008262634, 1.3769531, -1.6591797, 0.79589844, 0.19311523, -0.25341797, 0.62353516, 0.7055664, 1.3925781, 0.7783203, 0.48388672, -0.24194336, 2.6230469, 1.4355469, -1.3310547, 1.2226562, 1.9599609, 1.3300781, -1.9160156, -0.65185547, -0.74072266, 1.2929688, 1.2578125, 0.42651367, 0.5551758, 1.8183594, -1.5351562, -1.5742188, -2.9550781]}, "B08S3533D9": {"id": "B08S3533D9", "original": "Brand: Folocy\nName: Folocy 14 1/2\" x 6 1/4\" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nDescription: SPECIFICATION:
          Material: Stainless Steel
          \u00a0Products Included: Set of 3 \u00d7 Barbecue bbq grill pipe burner replacement

          ADVANTAGE
          Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
          \nFeatures: Dimensions: 14.5 x 6.25 inch (14 1/2\" x 6 1/4\"), Material: Stainless Steel Center-fed Pipe Burner\nSuperior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use.\nFit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC\nEasy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water.\nNotices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend\u00a0removing the original part and comparing it to our bbq grill parts.\n", "embedding": [-2.8867188, 2.7636719, 1.0205078, -0.5029297, 1.4267578, -0.8613281, 1.9746094, -1.0751953, 2.703125, 0.6699219, 0.48266602, -0.8457031, 2.8378906, -2.7578125, -0.0069465637, 2.453125, 0.20153809, 0.46191406, 1.3183594, 1.2216797, 1.5976562, -1.4472656, 2.0429688, -2.7832031, 1.2880859, 0.45629883, 3.3164062, -2.2578125, -0.5234375, -2.0195312, 1.1376953, 0.87646484, -0.00055265427, 2.4003906, -5.1953125, -0.41210938, 1.8632812, 0.47265625, -2.7949219, -0.7373047, 0.23632812, 0.640625, 3.453125, 1.3525391, -3.4042969, 1.3818359, 0.16320801, 1.1767578, -2.0703125, -3.4375, 1.7490234, 1.3730469, -0.40405273, -0.15673828, -0.13293457, 1.4785156, 0.48535156, -1.0810547, -0.5605469, -0.29418945, 2.8242188, -0.76660156, -2.6054688, 0.39038086, -1.4794922, 1.2509766, 1.6162109, -0.51708984, -1.4746094, 0.64501953, 0.11810303, -0.03338623, -1.4404297, 2.7148438, 0.12017822, -2.3847656, -3.3046875, 1.2148438, -0.017730713, -1.1845703, -1.7900391, 4.09375, 0.9482422, -1.3271484, 0.6142578, -0.9741211, -1.4824219, -0.46875, 2.453125, -0.27954102, -1.9267578, 0.27392578, -1.1835938, -2.4628906, 2.1542969, -2.0800781, 1.2109375, -1.0449219, 1.1943359, 0.32983398, -3.0546875, 0.27368164, -3.7558594, 1.4228516, -4.2109375, -1.7539062, 1.6347656, 0.13647461, -1.2480469, 0.111450195, -0.5126953, 0.7763672, 1.5, -0.09075928, 2.4980469, -1.1455078, -1.0957031, -0.26904297, 0.8066406, 1.5732422, 4.7890625, 1.8261719, 1.1728516, -2.0566406, 0.56689453, -0.4345703, -1.9726562, 0.46972656, 3.8457031, -2.6464844, 2.3984375, -1.7070312, 2.0546875, -0.72216797, -0.76416016, -2.4492188, -1.6152344, -1.0439453, -1.1933594, -0.20507812, -1.8320312, 1.4941406, 2.9765625, -3.2246094, -4.9414062, 2.3457031, -1.6503906, 2.2578125, 0.5522461, -2.1269531, 0.41992188, -0.27905273, -0.765625, -2.4335938, 3.0898438, 0.6665039, 1.9296875, -1.2783203, 4.2226562, -0.2993164, 0.86572266, -1.5087891, -0.30786133, 1.2490234, -1.0605469, -2.4042969, -1.7841797, 2.1445312, -1.3193359, 1.9882812, 0.4794922, 0.7866211, -1.4033203, -0.1574707, 1.2773438, -1.8623047, -0.3034668, 2.9316406, -0.18591309, -0.39624023, -1.7255859, -2.5664062, 1.0595703, -1.3505859, -0.0368042, 0.40844727, -0.82910156, 1.1425781, 2.4570312, 0.059539795, -1.8808594, 0.4350586, 0.015823364, 1.5097656, -1.1279297, -0.49487305, -0.19787598, -0.19128418, 1.5068359, 0.48706055, -1.5419922, -0.54052734, -0.084350586, 1.9501953, -3.3300781, -1.7734375, -0.9448242, -0.6621094, 1.7558594, 1.9140625, 0.5605469, -0.31030273, 2.5957031, -1.2373047, 0.7910156, -0.68408203, 1.3320312, 0.47387695, 1.0556641, 2.0429688, 1.9580078, -2.9628906, 0.55126953, 3.296875, 2.5800781, 1.2236328, 0.5805664, 0.32714844, -0.71728516, -0.47729492, 0.47558594, 0.5810547, -0.23596191, 0.9711914, 0.1381836, 1.0947266, 1.6123047, -5.1992188, 0.76220703, 0.6147461, -0.6772461, -3.4941406, -2.7734375, -2.7558594, -1.4101562, 0.19042969, -3.6347656, 0.94677734, 0.48608398, 0.049041748, 0.36254883, 1.7050781, 1.9082031, -1.1220703, 0.47998047, 0.38208008, 0.99072266, 2.5078125, -0.4567871, -0.7548828, 2.453125, -0.7495117, -0.059143066, 2.1503906, 2.4921875, -0.7680664, 2.0488281, -0.6411133, -3.0195312, -0.94970703, 0.46728516, 0.7050781, 1.2871094, -1.8164062, 2.7578125, 2.1503906, -1.7958984, 1.7373047, 1.7158203, -0.19628906, 0.97265625, -1.9208984, 3.75, -2.1542969, 1.5771484, 0.3720703, 0.46728516, -0.8076172, 0.08526611, 0.50683594, 5.3164062, -1.7382812, -1.2490234, 2.1972656, -1.5849609, -0.5102539, 0.44335938, -0.5698242, -0.6689453, -1.1591797, 0.16589355, 0.6298828, 0.014144897, 0.3359375, 0.97998047, -0.49609375, 2.2441406, -3.8242188, -0.0048599243, 2.9042969, -0.62939453, 0.43774414, -0.49975586, 0.5493164, -3.1660156, -2.3242188, 1.59375, -1.078125, 2.2480469, 0.7265625, 1.3798828, -0.059753418, -0.17407227, -3.1464844, -0.91796875, 1.3935547, -1.6181641, 1.9541016, -0.17614746, 0.14196777, -0.61083984, -1.90625, -0.5126953, -1.2783203, -2.9316406, -1.5488281, -0.55029297, -2.2148438, -0.21838379, -1.7773438, -0.3864746, -0.12585449, -2.8945312, 2.4667969, -1.5283203, -1.7011719, -1.4316406, -0.06341553, -0.8852539, 0.006134033, -1.2070312, 2.7890625, -1.4970703, -3.3730469, -0.80029297, -1.2402344, -0.42211914, 1.3681641, -1.0400391, 0.27001953, 0.8745117, 0.24475098, 0.07287598, 1.328125, 1.5234375, -1.8349609, 0.6635742, -2.0175781, -0.13842773, -0.06137085, 1.8046875, -2.4003906, 0.8701172, -4.7265625, -2.0859375, -1.1181641, 0.5385742, 2.9941406, -1.2783203, 1.7412109, 0.84277344, -1.8896484, 0.38549805, -1.5039062, -2.2148438, 0.3474121, 1.6044922, -1.2158203, -1.3759766, -2.0117188, 1.1474609, -0.11010742, -1.28125, -1.0351562, 0.25268555, 1.0019531, -0.2939453, 0.49975586, -2.3496094, 1.3056641, -0.67871094, 0.08691406, -0.9892578, -1.0810547, -1.625, 0.41479492, -0.18981934, -2.1992188, 1.3486328, -1.6162109, -1.765625, 2.2890625, 0.85498047, 0.23095703, 1.453125, -2.4648438, 0.16186523, 0.8076172, -2.203125, 3.3828125, -2.171875, 1.2705078, -3.1875, -2.0234375, 3.7734375, 0.9160156, -0.1875, 0.9453125, 0.7729492, 1.9609375, -1.0703125, 0.35083008, -0.5229492, 1.2119141, 4.3125, -2.6074219, -2.3339844, 1.9091797, 1.9970703, -4.140625, 0.27441406, 1.7587891, 0.59814453, 0.8520508, 2.0644531, 3.5996094, 0.40307617, -1.8955078, 0.40942383, -0.2668457, 0.16833496, -0.16137695, -0.46435547, 0.7011719, 0.51416016, 1.6181641, 2.4570312, 1.5068359, 1.2158203, 0.9057617, 0.21801758, -0.45214844, -1.03125, -0.73535156, 2.2382812, 1.2275391, 3.7324219, -1.5068359, -0.5209961, 0.028869629, -0.73095703, 3.1054688, -2.2421875, -1.4580078, 3.0136719, -0.01940918, -0.64746094, -0.9404297, 0.2932129, -0.14172363, -3.4140625, 0.02168274, -0.6816406, 0.52978516, 2.8652344, 1.0390625, 0.09033203, -1.0957031, 1.7294922, -1.7744141, -2.5136719, -0.5332031, 0.17407227, -1.5556641, -1.7832031, 0.21679688, 1.1259766, 0.056884766, 3.6152344, -0.28442383, -1.2509766, 0.78027344, -1.8496094, 1.4277344, -0.17822266, -1.0117188, 0.85253906, -0.6699219, -1.7568359, -0.85791016, 0.75341797, 1.2792969, -1.8027344, -0.71533203, 0.6953125, -2.6601562, -0.85058594, -0.35620117, -1.4658203, -2.3984375, 0.70654297, 0.37963867, 0.50439453, -0.14758301, 2.5859375, -0.25708008, -0.7397461, 1.9326172, -2.3769531, 0.4963379, -2.6347656, -4.125, 2.2402344, -2.1445312, -0.041534424, 2.4042969, 1.1386719, -0.74365234, 1.34375, 1.71875, -2.8496094, 0.6147461, -1.4042969, -0.14465332, -1.2001953, -3.03125, 2.9296875, 2.0234375, -0.29174805, -3.078125, -1.0830078, -1.5009766, 0.110839844, 0.7207031, -2.0292969, -0.42773438, 0.5751953, -0.10455322, -0.40307617, -1.0693359, 1.8320312, -0.19042969, -0.23901367, -1.1376953, 1.3496094, -0.87939453, 2.59375, 0.7685547, 2.2753906, 0.9042969, -0.9238281, 0.7167969, 0.4465332, 3.2988281, -0.17626953, -1.7773438, -1.4082031, 1.9960938, 1.390625, -0.80029297, -1.1601562, -1.8818359, -2.4941406, -0.34423828, -0.7817383, 2.640625, 1.2275391, -1.0771484, -2.7695312, -0.4741211, 1.0976562, -2.0390625, -1.5878906, -0.43359375, 0.60498047, 0.3720703, 1.0615234, -3.6777344, 1.4169922, -1.8896484, -0.26757812, -2.3691406, 1.1806641, 1.1640625, 1.8105469, 2.9707031, -0.90234375, -0.4038086, -0.8339844, -1.2617188, -1.9697266, 0.9501953, -2.1503906, -2.3769531, 1.6728516, 0.22839355, 0.2524414, 0.34179688, 0.5732422, -0.8769531, -0.8364258, -0.6821289, 2.3378906, -1.4941406, -2.0332031, 2.6738281, -1.0996094, 3.0253906, -0.8754883, 0.22192383, -0.23010254, 0.85546875, 0.10632324, 1.0771484, 1.21875, -0.3474121, 1.3427734, 0.609375, 2.7246094, 0.63916016, 0.20727539, -2.1601562, 1.6044922, -1.1806641, -0.33129883, 0.7607422, 1.375, -1.4960938, -0.114868164, 2.828125, 3.4140625, 0.94189453, 2.0117188, 1.4414062, -4.984375, 0.61279297, 1.5751953, -3.6777344, -2.9316406, 0.39111328, -0.75341797, 2.6015625, 1.1542969, -2.9589844, 0.28564453, 2.6445312, -0.24743652, 1.8222656, -1.9003906, -0.21374512, 0.30664062, -1.7558594, 0.5498047, -4.7460938, -0.8564453, 1.3076172, -1.1074219, 0.08270264, 0.5571289, 2.8183594, 3.3457031, -2.3554688, -2.7734375, 0.7504883, -0.92333984, 1.2910156, -0.06311035, -0.40527344, -1.4912109, 0.0914917, 0.4807129, 1.0175781, 3.1171875, 0.50634766, 2.4433594, -2.21875, 0.2631836, 0.37646484, 2.4785156, -0.10467529, -0.54003906, 4.9492188, -2.1425781, -2.1054688, -2.6269531, 1.7861328, 1.9550781, 1.4521484, 1.7158203, -1.7509766, -1.9824219, -0.8613281, -1.6005859, -3.7480469, -1.0742188, 0.4802246, 0.25878906, 1.5722656, -0.15197754, 1.0087891, 2.1386719, -0.61328125, 1.8017578, 0.6171875, -0.24316406, -0.4008789, 0.028442383, -0.75927734, 0.8334961, -0.6513672, -1.2001953, 1.0234375, 1.9365234, -0.14245605, -3.1503906, -1.7265625, 2.7675781, -2.3613281, -1.0078125, 0.5258789, -0.027023315, -1.7382812, 1.3046875, -1.3789062, -0.24035645, 0.36083984, -2.0957031, 1.3085938, 1.4482422, -2.4882812, 0.28833008, -0.34277344, 1.1259766, 1.5732422, 0.18286133, -0.5751953, 1.2021484, 0.08569336, 1.7041016, 3.0546875, 0.7211914, -1.6855469, 1.0498047, 0.026153564, 1.2382812, 2.3632812, -0.6923828, -0.12927246, -1.640625, -1.9208984, 1.3408203, -2.0820312, 1.3652344, -1.3867188, 0.32373047, 0.85253906, 1.0869141, 0.6035156, -0.022964478, -0.828125, -1.9248047, 0.58740234, -0.09008789, 3.53125, 0.62841797, -1.3408203, -3.0371094, -0.64941406, 1.3662109, 1.5800781, -0.5258789, -0.5258789, -0.04989624, 1.5527344, -0.44067383, 0.609375, 0.6010742, 0.31152344, 3.0976562, -1.2060547, 0.53271484, 4.3164062, -0.76171875, 1.5556641, 1.0830078, -0.5024414, 0.2401123, 2.390625, -0.1361084, -2.0957031, 1.8447266, -1.0878906, 1.9697266, -0.3461914, -0.4609375, -0.98828125, -2.46875, -0.21606445, -2.3105469, -1.1367188, -1.0273438, 2.0039062, -0.94921875, -2.1972656, -0.32788086, 1.2158203, -1.8320312, 1.4091797, 2.5546875, 0.27514648, -1.5605469, -1.0185547, -2.3164062, 0.09851074, 2.1796875, -4.46875, -1.3496094, 0.5317383, -1.1074219, -2.5957031, 0.86328125, 1.2011719, 3.3886719, -2.5195312, 3.4082031, 2.1425781, 1.1748047, 3.7558594, -0.034240723, 2.8339844, -0.67041016, -2.328125, -0.17236328, 3.1777344, 1.0302734, -0.35180664, -1.0068359, -0.5161133, -2.9238281, -1.8378906, -0.5488281, -0.7626953, 1.0478516, -4.2382812, 0.13964844, -0.86865234, -0.13293457, -0.031280518, 0.8769531, -1.9638672, -2.4414062, -0.8354492, -0.2290039, 3.7128906, -0.91503906, -0.21533203, 0.17700195, -0.12237549, 3.5117188, -1.9667969, 0.4489746, 1.1425781, -2.1777344, -1.2480469, 1.4072266, 3.2792969, -0.11395264, 1.4589844, -0.049926758, 0.45947266, 2.109375, 1.1503906, -1.4960938, 0.5395508, -0.12536621, 3.4375, -1.1591797, -1.9033203, 0.51708984, -2.7050781, -3.2089844, -2.34375, 1.3789062, -0.03427124, 2.6210938, 1.6425781, -1.1894531, 1.4550781, -1.4521484, 0.42456055, -2.703125, 1.6455078, 0.27490234, -1.1494141, 0.23486328, 0.63134766, 1.1064453, 1.1289062, 0.7441406, -0.87353516, 0.34399414, 1.6640625, 0.3461914, 1.7246094, 1.4033203, 1.1298828, 0.40698242, -0.89746094, 5.0820312, -0.10021973, -0.5629883, -1.5, 2.3496094, 1.2519531, 0.38891602, 1.1513672, -0.42236328, 0.20056152, 0.7084961, 0.26293945, 0.46289062, -0.40039062, -1.0263672, 0.31420898, 1.1904297, -0.16955566, -0.1274414, 2.0703125, 0.04006958, -0.97265625, 1.0048828, 0.27197266, -1.2148438, 1.9628906, 2.0410156, -0.8720703, -1.5117188, 0.47338867, 1.7197266, -0.7104492, -2.4609375, 0.4580078, 1.9208984, 1.8330078, -0.7651367, 1.03125, 0.005302429, 0.6855469, -1.2753906, -1.1152344, -1.0361328, -1.8837891, 1.2792969, -2.0800781, -0.6542969, 2.4726562, 0.6035156, -1.1123047, -1.5732422, -0.8486328, 0.6567383, -1.6894531, -3.0078125, 0.5727539, 3.2636719, 1.6289062, 1.3027344, -0.6538086, -3.3613281, 0.7861328, 0.4970703, 0.48120117, -1.2568359, -2.2402344, 0.86621094, 1.9472656, 2.0449219, -0.9501953, -2.6171875, 0.7529297, 0.7548828, 0.9008789, -0.64208984, 2.0214844, -0.01209259, 0.18530273, -0.95410156, 2.796875, 0.9814453, 0.47705078, 0.05657959, 0.69921875, 1.7246094, -3.1113281, 0.025497437, 0.91259766, -0.5307617, 1.2402344, 0.16113281, 2.8554688, -0.30664062, -1.65625, 0.30664062, -0.96484375]}, "B012ZY1RNM": {"id": "B012ZY1RNM", "original": "Brand: Camco\nName: Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black\nDescription: \nFeatures: Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks\nLid makes accessing propane tanks easier and more efficient\nKit includes hardware needed for installation\nConstructed of UV-stabilized polypropylene\nBlack\n", "embedding": [1.1552734, 0.15002441, 3.2246094, -1.3095703, -1.5380859, -2.3300781, -0.048095703, -1.2324219, 2.6933594, 2.0449219, 0.42016602, -0.18530273, 0.7109375, -3.7363281, 1.9316406, -1.0615234, 0.26708984, 1.2695312, 2.75, -1.2929688, 2.0878906, -0.5644531, -0.93896484, -1.3476562, 1.0634766, 0.5283203, 2.5351562, -1.9023438, -2.3398438, 0.70751953, 0.14233398, 0.41723633, -0.82421875, 2.6328125, 0.89746094, -1.6064453, -0.69677734, -0.5004883, -4.2929688, 0.103027344, -3.4121094, 1.0292969, 3.8378906, 0.72216797, 0.053863525, -0.21789551, 0.12133789, -1.125, 0.4868164, -0.78564453, 0.17907715, 1.9189453, 0.9736328, 0.13684082, -0.9013672, 1.7255859, 0.30078125, -0.7661133, 0.26098633, 1.3876953, -0.6118164, -0.2220459, -1.8066406, 1.9335938, -0.9897461, 1.7441406, -1.1748047, -1.5693359, 0.07720947, 3.2128906, 0.88378906, 1.7939453, 1.3388672, -2.5683594, 1.0185547, -0.67089844, -2.0253906, 0.61865234, -0.30200195, -1.7265625, 0.9765625, 2.6953125, -0.96875, -2.6757812, -0.79052734, -2.0429688, 0.17382812, 1.2832031, 0.23400879, 0.081970215, -1.5322266, 1.6181641, -2.4355469, -2.9472656, -1.171875, -0.032196045, 1.0859375, 1.4667969, 2.6738281, 2.6914062, -1.0107422, -0.3671875, -0.89697266, -0.25073242, -2.5273438, -1.265625, 1.0839844, -1.2841797, -1.6582031, 0.17382812, -0.4963379, -0.6386719, 1.0390625, -1.4199219, -0.4189453, 1.4589844, 0.064941406, 0.094177246, 0.6743164, 0.9135742, 4.9414062, -1.6103516, 0.30273438, -1.0947266, 1.8847656, 1.3701172, 0.28100586, 0.56933594, 2.1113281, 1.546875, 1.3632812, -0.7675781, 1.8427734, -0.4963379, 0.21655273, -0.0028839111, -1.6845703, -2.2714844, -1.1689453, 0.34399414, -3.2753906, -0.3413086, 0.7890625, -0.3696289, -3.8730469, -0.68066406, -1.3652344, 1.7255859, -0.7167969, -1.9052734, 0.10699463, -3.6914062, 0.10864258, -0.7915039, 0.98046875, 0.9238281, -0.32641602, -2.9277344, 1.1416016, 1.9082031, 1.5498047, -1.3964844, -0.5283203, 1.7402344, 0.011978149, -0.86572266, 1.1611328, -1.9228516, -2.5234375, 1.8369141, 0.9790039, -1.6572266, 1.0576172, 1.0830078, -1.5146484, -1.0058594, 2.7519531, 2.0429688, -0.18310547, 0.29077148, -3.7578125, -2.1113281, -0.62939453, -0.1472168, 0.4567871, -0.7734375, -2.3769531, -1.3154297, -0.37280273, 0.29370117, -1.2773438, 1.6748047, -0.53466797, -1.8740234, -1.4189453, -3.1914062, -0.69384766, -1.1025391, 0.43164062, 1.4179688, -0.8691406, -1.1201172, -0.062042236, 0.8276367, -1.8535156, 0.046051025, 2.6328125, 1.1435547, 1.2402344, 0.78564453, 0.8359375, -0.2866211, 1.7138672, -2.4804688, -1.2607422, -2.2480469, 0.62109375, 0.3046875, 1.2509766, 1.2685547, 3.0136719, 0.6279297, 0.16491699, 0.9003906, 0.90966797, 2.8574219, 1.7353516, 0.066345215, -1.3017578, -0.38916016, 0.26171875, 1.3789062, -2.5292969, 0.24328613, -0.93115234, 1.4160156, -0.25708008, -1.3876953, 0.5371094, -1.3759766, 2.0410156, -1.7509766, -0.7441406, -1.1884766, 1.2539062, 2.0292969, -1.4472656, 1.5351562, 2.1171875, -0.5488281, 1.1582031, 0.45092773, -0.40771484, 0.90966797, -0.73095703, 1.9824219, 1.2070312, -0.3996582, 0.1361084, -2.9746094, 0.67822266, 1.1757812, 0.18859863, 1.3261719, 0.6098633, 1.328125, 0.98095703, 0.09265137, -1.3408203, 1.0458984, 0.30908203, 0.35009766, 0.52197266, -0.89990234, 1.9853516, 2.1503906, -0.3334961, 1.7197266, 0.34399414, 0.86035156, 0.40551758, -0.07525635, 1.8457031, -3.8046875, 1.5800781, 0.39233398, 0.4880371, -0.2298584, -3.78125, 1.4785156, 1.9707031, -0.0017995834, -1.5039062, 2.6816406, 3.171875, 1.6035156, 2.4238281, -0.9638672, -1.9277344, 1.15625, -2.4296875, -0.18676758, 0.062469482, 1.296875, 0.2993164, -1.6259766, -0.96728516, -1.3730469, 1.5498047, 2.03125, 0.17883301, -0.83203125, -1.7880859, 0.7109375, 0.33520508, -1.0869141, 3.7929688, -0.3647461, -0.43652344, 0.46411133, 1.4912109, 1.7998047, 0.08898926, -0.6201172, 1.0439453, -0.15637207, -1.7382812, -0.26733398, 0.79052734, 0.02998352, 0.015014648, -1.515625, 1.8925781, -0.33374023, 0.6142578, 1.0751953, -1.0498047, -0.12011719, 0.68115234, -0.62841797, 1.0527344, -1.3398438, -0.76660156, 3.4804688, 0.94628906, -0.3083496, 0.45410156, 0.6791992, 0.32373047, -2.46875, -0.49780273, 2.5683594, -1.3925781, -4.1875, 1.2216797, -0.89404297, -1.3134766, 1.4814453, -0.74365234, 2.1582031, 0.63427734, 1.6835938, 1.7558594, -1.5234375, -2.3574219, 1.1884766, 2.5996094, -3.2929688, 0.9135742, -3.0878906, 0.41870117, -2.2402344, -1.0380859, -1.4873047, -1.7490234, 0.48413086, -0.38452148, 3.4882812, 0.7167969, 1.234375, 0.31762695, -1.3222656, 0.07232666, -3.2421875, -2.546875, 0.64941406, 0.08673096, -0.58154297, -1.0800781, -5.0507812, -0.31396484, -1.7265625, 0.08557129, 0.23327637, -2.78125, -1.7050781, -0.9013672, -0.5991211, -0.41503906, 0.89404297, 1.8359375, 0.02470398, -1.4755859, -1.1308594, 0.6611328, -0.8457031, -1.3193359, -1.0419922, 1.6435547, -0.6489258, -1.0478516, -0.00065279007, -0.3491211, 2.4003906, -1.2001953, -4.2226562, 1.3857422, 3.3945312, 0.65283203, 1.6630859, -1.7851562, -2.1367188, -2.2988281, 1.0585938, 2.9648438, 3.3730469, 2.7578125, 1.9589844, -0.68310547, 1.7255859, -0.6015625, 0.5258789, 0.29614258, 0.98535156, 2.0898438, -1.7978516, -0.17932129, 1.4277344, 4.1210938, -2.1796875, -0.49169922, 0.26489258, -1.1777344, 4.1210938, 1.7861328, -2.2578125, -1.1738281, 1.4423828, 2.0039062, 0.14953613, 3.3398438, 1.859375, 0.27661133, 2.4296875, 1.6435547, 0.7216797, 1.4785156, 0.8046875, -1.8164062, 1.5302734, 1.7431641, -0.3076172, -0.20361328, 1.0507812, -0.6738281, -0.15966797, 1.9765625, -1.8242188, 2.5996094, 2.4433594, -0.38305664, -0.21240234, -2.2070312, 1.609375, 0.81884766, 1.2490234, 0.122924805, 1.0732422, -0.54541016, 0.089538574, -1.9609375, 2.9082031, 0.5776367, -1.2148438, 0.8588867, -2.2070312, -0.6982422, -1.4755859, 4.5039062, 0.7104492, 0.22424316, 0.44555664, 1.3261719, 0.11584473, -3.4765625, -0.14758301, 0.21618652, -2.8691406, 3.0527344, 2.703125, -1.8417969, -0.22241211, -2.3300781, 1.4414062, 1.2998047, -2.2480469, -0.98535156, -2.8574219, 1.5712891, -1.921875, 0.2890625, 1.5009766, 0.72802734, -3.1386719, -1.5390625, 0.5097656, 1.4365234, -0.10412598, -0.3400879, -1.0966797, 0.60302734, -2.9394531, 1.7978516, 1.4208984, 2.8671875, -1.2001953, 1.4873047, -0.12548828, 0.41967773, 1.2402344, 0.72216797, -2.1816406, -0.5625, 0.16552734, 0.12719727, 2.7695312, 1.2412109, 1.4990234, 1.4931641, 0.93896484, -4.1171875, -1.0615234, -2.1484375, 1.6044922, -3.0585938, -1.7470703, 0.69677734, 0.65722656, -2.6679688, -1.7431641, 0.47265625, -1.3681641, 0.029708862, -1.9648438, -1.6455078, 1.6806641, 2.6796875, 0.02468872, 0.38378906, 0.1986084, 0.7451172, -0.5595703, -1.3564453, -2.4160156, 2.5136719, -0.19458008, 1.1689453, 0.20617676, 1.8476562, 2.8398438, -1.6279297, -0.6230469, -2.0117188, 0.16149902, -0.5551758, -1.8125, -0.07366943, -1.0361328, 0.5595703, -1.1435547, 0.1517334, 1.9648438, 1.2509766, 0.67285156, -0.12841797, 0.45532227, 0.7138672, -2.6542969, -0.5415039, 2.890625, -0.9477539, 0.60498047, 0.21252441, 0.79296875, 0.52246094, -2.0488281, -1.0625, -2.7363281, 0.9199219, 1.0615234, 2.0371094, -4.9101562, 0.31274414, 1.8193359, 2.7089844, 0.24914551, -1.5146484, -1.3740234, 1.8066406, 2.484375, 2.6523438, -1.7431641, 0.5410156, 0.41357422, -1.3789062, 0.35961914, -1.6640625, -0.7036133, 0.26953125, -1.9970703, 1.0810547, 0.2680664, 0.67822266, -1.9960938, 1.2666016, -1.0908203, -0.98828125, 3.9941406, -3.2851562, 1.4423828, -1.953125, -1.3320312, -1.5898438, 3.5820312, 1.6728516, -0.27954102, 0.484375, -3.1132812, -0.9897461, -0.041625977, 1.7382812, 0.43530273, -0.0014448166, -1.2431641, -3.6542969, 0.5576172, 1.5625, -0.94384766, -1.0185547, 0.8276367, 3.0488281, 0.6166992, 0.94384766, 2.7246094, -0.58935547, 1.6279297, 1.1992188, -0.93896484, -2.1523438, 1.0195312, 2.0957031, 4.1992188, -1.8623047, -4.0820312, 1.3828125, -0.296875, 0.10864258, 1.6132812, 0.14331055, -1.5058594, -1.546875, -3.8203125, -0.8286133, -0.8496094, 0.78125, -0.9169922, -0.6586914, 0.8203125, 1.6015625, 0.09429932, 3.0664062, 0.6098633, -1.1064453, 0.15917969, 2.40625, -1.7060547, -4.3359375, -2.4511719, -2.9882812, -1.09375, -0.3100586, 0.8647461, -1.0410156, 1.5664062, 3.3867188, -2.2929688, -1.4414062, -1.6005859, -0.40649414, -1.8339844, -0.8046875, 2.9667969, -0.5698242, -0.3137207, 0.26000977, 0.90185547, 0.08276367, 2.859375, 1.0957031, -0.87646484, -0.48291016, 0.7363281, -2.75, -4.7460938, -1.6660156, 0.3544922, 0.25756836, 0.62158203, -1.8867188, -0.8105469, 0.65527344, -2.0664062, -0.40234375, -1.8535156, 1.0908203, -0.6723633, -0.80078125, 2.28125, -0.5336914, -0.06549072, 0.9326172, -2.0585938, 0.2076416, -2.3339844, -3.3261719, -3.7617188, 2.0820312, 0.6323242, 0.6171875, -1.2802734, -0.5800781, 2.1191406, -0.10998535, 1.5205078, -1.1865234, 1.0761719, -1.5, 0.36572266, 2.1738281, -0.24951172, -0.58740234, 3.6386719, -0.15393066, 1.6191406, 2.6914062, 1.0263672, -3.2558594, 0.85009766, 0.068603516, -0.8022461, 0.20935059, 1.703125, 2.0976562, -0.21606445, 0.78125, 2.0859375, 0.070739746, -0.8754883, -2.4179688, -0.6879883, -1.4199219, -1.7763672, -1.0351562, -0.9580078, 0.91552734, 2.53125, -0.58447266, -0.07196045, 1.0488281, 0.97021484, -2.2929688, 0.8198242, -1.9755859, -0.2142334, 0.09246826, -1.1289062, -2.7910156, -2.0195312, 2.3925781, -0.30566406, -0.3137207, -0.23583984, -0.26708984, -0.8305664, 2.265625, 0.68408203, 1.0244141, 0.12658691, 0.7324219, -2.1445312, 0.5776367, 3.7734375, -0.40478516, -0.72216797, -0.63378906, 0.23657227, -0.44628906, -0.6088867, 2.84375, -3.171875, 0.57470703, -0.058502197, -1.421875, -0.8515625, -0.6958008, 0.31884766, -1.8623047, -0.16882324, -0.8613281, -0.6513672, -3.71875, 2.6269531, -0.30395508, -0.18933105, -0.6635742, 0.25170898, -1.3076172, -0.75634766, 1.4990234, 0.86621094, -0.25024414, -1.4736328, 0.29101562, -1.1953125, 1.1289062, -3.4941406, 0.6269531, -2.2070312, 1.1738281, -0.9477539, 0.7133789, -0.09313965, 0.8466797, 3.0878906, 2.1738281, 2.3671875, 0.101135254, 2.1289062, -0.31176758, 1.2792969, 1.0078125, -1.0878906, 0.18493652, 0.7792969, 1.0273438, 1.6582031, -1.8681641, -0.3215332, -0.41235352, -1.125, -1.4345703, 0.16210938, 1.7597656, -3.0664062, -0.9628906, -1.7949219, -0.6689453, 3.0175781, 1.0429688, -2.0898438, -1.3798828, 0.33569336, -2.0546875, 1.9882812, -0.49414062, 0.04699707, 1.2607422, 0.79589844, 0.9033203, 0.8769531, -0.7807617, -3.6425781, -1.7685547, -0.8300781, 0.96435547, 1.0615234, 1.0234375, 0.18225098, -0.4555664, 0.18591309, 0.49780273, 0.5107422, -1.0019531, 1.734375, -0.8173828, 2.4199219, 1.2441406, -0.5073242, 1.0927734, 0.53027344, -1.3203125, -2.2304688, -0.7089844, 1.125, 1.3769531, -0.13049316, -2.4082031, 1.6279297, -1.0351562, 1.2480469, -2.7910156, -0.42407227, -1.8779297, -2.5429688, -0.22058105, 2.1269531, -1.1152344, 3.2753906, 0.7993164, 0.105407715, 0.20397949, 0.3605957, 1.6933594, 0.7705078, 0.7558594, 1.0986328, 0.6635742, -0.45336914, 2.4902344, 2.0195312, 0.23352051, 0.25683594, 2.8652344, 1.9277344, 0.6567383, 0.8017578, -2.4238281, 3.0117188, 0.73291016, 0.35229492, 0.7504883, -2.1542969, 1.7314453, -0.6328125, 1.0800781, 0.8959961, 0.9658203, -0.44873047, 3.2558594, -2.7578125, 0.019714355, 0.29296875, -0.46777344, 1.1640625, -0.44482422, -1.3134766, -1.09375, -0.31811523, 1.4628906, -2.078125, 0.6425781, -2.2304688, 1.0322266, 0.11352539, -2.1855469, -0.83740234, 0.06933594, -0.3334961, -0.4165039, -0.1427002, -0.13916016, -0.10455322, 0.33789062, -0.024932861, 0.3112793, -0.87841797, -1.0009766, -0.18518066, -0.7871094, 0.8959961, 0.5654297, 1.3466797, -0.10192871, 0.6113281, 2.1269531, 0.5751953, 0.3564453, 1.9345703, -2.9453125, -1.4394531, -3.9453125, 2.7871094, 1.7919922, -1.0820312, 0.11602783, 1.9882812, 2.359375, -2.6308594, -1.9707031, -1.1279297, 0.27807617, 0.80029297, -1.8212891, 0.94628906, -1.1376953, 0.14978027, 2.0859375, 3.8613281, 2.6191406, -0.19787598, 0.47387695, 1.7050781, -2.2949219, -2.2089844, -1.5869141, -0.9272461, -1.7109375, 1.2207031, 2.4277344, 3.4707031, -0.074279785, -0.5644531, -2.0136719, 1.1630859]}, "B07SB2Q8X7": {"id": "B07SB2Q8X7", "original": "Brand: GASPRO\nName: GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit\nDescription: GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
          The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
          If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
          The propane hose body is made of stainlesssteel it will long lasting for your appliance
          This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

          Specification
          - Length: 12feet / 144 Inch/366 cm
          style=\"margin-left: 5.25pt;\"
          - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
          - Inlet Pressure: 25-250PSIG
          - Outlet Pressure: 0-30PSIG
          - Max.flow capacity:136000BTU
          - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

          Warm Tips
          -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
          -Not suitable for appliances which need low pressure regulator
          \nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs\n\u3010Accurately\u3011 You can accurately adjust the pressure according to the built-in gauge dial\n\u3010Durable and Chew-proof\u3011 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more\n\u3010Brass Connector\u3011 P.O.L. x 3/8\u2033 Female Flare, orifice connector with 3/8\" Flare M x 1/8\" MNPT\n", "embedding": [-1.1914062, 2.5507812, 1.9384766, 0.2849121, -0.90185547, 0.8208008, 2, -1.1503906, 0.6933594, -0.44091797, 1.3798828, -0.39770508, 1.4677734, -0.2697754, 2.28125, 0.9941406, 0.79052734, 0.21557617, 1.0537109, 3.6289062, 0.9404297, 0.55810547, 1.9765625, 0.0541687, 1.9111328, -0.453125, 2.8613281, -3.578125, 0.16027832, -1.2958984, 2.2480469, 1.015625, 0.85839844, -0.044006348, -1.7568359, -1.1054688, 0.08123779, 1.0263672, -2.3105469, -0.39282227, -0.5517578, -0.8964844, 1.2392578, -0.7397461, -2.5625, 0.57470703, 0.94628906, 0.92089844, -1.0136719, 0.6616211, 1.40625, -0.63671875, -0.4921875, 0.56103516, 0.33007812, 0.2980957, 0.49243164, -1.5322266, 1.8134766, 2.3964844, 1.5673828, 1.0351562, -1.7001953, -0.05505371, -1.3603516, -0.4716797, 0.41137695, -0.6933594, 1.1582031, 0.82421875, 1.8173828, 0.3395996, 1.5839844, -0.29248047, 0.01423645, 0.37646484, -2.0390625, -0.47631836, 3.9472656, 1.7558594, -1.3134766, 0.51660156, 0.85839844, -2.1328125, 1.9101562, -0.21875, -0.7338867, 0.44067383, 3.6953125, 0.43579102, -0.98535156, 2.6679688, -3.4882812, -4.2617188, 1.9296875, 2.0136719, 1.609375, 0.04031372, 1.5175781, 0.30859375, -0.6455078, -0.80371094, 0.3701172, 1.1523438, -1.3046875, -0.38500977, 0.55029297, 3, -4.2929688, -0.1821289, 0.54003906, 0.984375, 1.4746094, -2.0664062, 0.99560547, -2.7402344, -0.8154297, -0.7739258, 2.8125, 2.0976562, 2.4707031, 0.3474121, -1.2568359, 0.22241211, -0.2944336, 0.4177246, -0.5908203, -0.029449463, 4.125, -1.5449219, 0.09942627, -3.5039062, 2.3574219, -0.5341797, 0.99658203, -1.7119141, -1.7939453, -2.1230469, -2.9960938, -0.7192383, -4.125, 1.2314453, 0.15478516, 0.15808105, -1.7841797, 1.1259766, -2.1445312, 1.0302734, 2.4492188, -1.5908203, 3.2089844, -1.7119141, -0.76171875, -0.17004395, 0.7939453, 0.7529297, -0.7651367, 0.030929565, 1.6464844, 1.3037109, 1.7363281, -2.6679688, -1.9453125, 1.7568359, -0.17529297, -1.0439453, 0.6479492, -0.15002441, 0.88916016, 1.9902344, 0.4338379, -1.34375, -1.2128906, 0.2631836, -1.0048828, -1.7578125, 0.77001953, 3.2167969, 2.03125, -0.109069824, -3.4101562, -1.7236328, -0.28515625, 0.46411133, 1.2089844, 0.3869629, -0.87353516, 0.65234375, 1.2851562, -2.3535156, -1.0556641, 0.31713867, 0.15722656, 1.0058594, 0.028396606, -2.9042969, -3.3398438, -1.9316406, -2.1269531, 0.097595215, -1.8837891, -1.0585938, 0.44677734, -0.5473633, -1.9179688, -1.3720703, 0.7314453, -1.7480469, 0.40063477, 2.2832031, -0.0317688, -1.8798828, 0.3840332, -0.89160156, 0.3071289, -3.0664062, 1.2919922, 2.5429688, 0.17419434, 1.2246094, -1.2041016, 0.31298828, 1.5966797, 1.6708984, 2.0566406, 1.3623047, -1.0507812, 2.2714844, -2.3964844, -1.2744141, 3.9492188, -0.4633789, -1.0341797, -1.4990234, -1.5166016, 1.9472656, -0.9995117, 0.4501953, 0.27270508, -0.036468506, -0.1459961, -0.32226562, -1.2294922, 0.08093262, -1.0839844, -0.16748047, -2.3085938, 1.4199219, 2.0175781, -0.7055664, 0.70947266, 0.32739258, -0.21411133, -0.6323242, -1.2324219, -0.43725586, 0.4921875, 1.4287109, -0.98095703, -1.6894531, 2.1582031, 1.5136719, -0.6142578, 2.6582031, 0.069885254, 0.5463867, 2.3632812, -1.1914062, -1.4306641, 0.4140625, 1.4912109, 1.6835938, 2.1523438, 0.24230957, 0.87060547, -0.23852539, -3.0722656, 1.3642578, 0.40063477, 0.64160156, -0.55126953, -0.25732422, 1.7548828, -1.9794922, 2.734375, 1.9326172, 1.5878906, 0.31225586, -1.5996094, -0.45043945, 5.6953125, -1.6113281, -3.5019531, 1.390625, 1.2792969, -0.71191406, 0.33935547, 1.5527344, 0.8564453, -1.3710938, 0.9897461, 0.1439209, -0.80126953, -0.3713379, 1.7421875, -0.41503906, -0.19689941, 0.09625244, -1.2001953, 1.2666016, -0.9614258, 0.6274414, -1.8359375, 1.6787109, -1.9208984, -1.3427734, 0.8652344, -2.1542969, -0.3479004, 0.6464844, 1.8105469, 2.328125, -0.1628418, -1.5458984, 0.28027344, 2.2363281, -0.92822266, 1.1582031, 0.078430176, -1.5849609, -1.1484375, -1.3164062, -0.8544922, -1.7529297, -3.5625, 2.7539062, -3.7480469, -2.1269531, -0.41967773, -1.7460938, -2.8828125, 0.30004883, -1.1464844, 0.55029297, 0.38232422, -0.8408203, -0.9921875, -0.9819336, -0.57714844, -0.4248047, 1.2021484, 2.6464844, -0.83447266, -2.7382812, -0.49145508, 0.84375, 0.09222412, -1.2949219, -2.1484375, 1.3691406, -1.3378906, 0.16259766, 0.81152344, 0.08178711, 1.3427734, -3.2792969, 1.7373047, -2.4726562, -0.8432617, -0.45458984, 1.3271484, -0.8925781, 1.0214844, -1.7900391, -0.85498047, 0.059448242, -1.9072266, 1.3144531, -0.94433594, 2.8925781, -2.9453125, 1.6738281, 1.0097656, -0.8642578, -2.6132812, -0.72265625, -0.6230469, 0.17248535, -1.0664062, -1.9365234, 0.4296875, -0.22290039, 0.13537598, 0.32836914, -1.2519531, -1.8730469, 0.8222656, 0.9609375, -1.7763672, -0.52685547, 0.7241211, -0.21313477, -1.3808594, -0.20251465, 0.5107422, -1.7666016, -1.9443359, 0.9355469, 1.8554688, -0.28686523, 1.6484375, 1.1464844, 0.50878906, 0.045928955, -2.859375, -2.1933594, 1.8066406, 1.4921875, -2.546875, 1.3144531, -1.1767578, -1.5888672, -1.5390625, -1.3779297, 1.9511719, 1.734375, 3.1738281, -0.06903076, -0.4350586, -0.7871094, 1.4570312, -0.75878906, -3.2148438, 0.6665039, 3.5058594, -1.8291016, -1.7792969, -0.63134766, 1.8652344, -1.9082031, -0.6123047, 2.2675781, 0.51123047, 2.5957031, 1.0019531, 1.7548828, 1.1103516, -1.0751953, 1.8896484, 0.4506836, -0.60302734, 0.0063667297, -1.34375, 1.4521484, -0.9116211, 1.4677734, 2.3203125, 0.4086914, 2.1035156, 0.60839844, 0.97753906, -1.4794922, 0.64990234, 0.5786133, 0.103271484, -0.56396484, 0.83447266, 0.71533203, -0.89453125, -1.0839844, -0.20581055, 0.6582031, -2.328125, -0.2244873, -0.12182617, 0.77783203, -0.7167969, 0.013412476, -0.4338379, 0.07122803, -1.5703125, 0.7651367, 1.8681641, 1.6865234, 2.8261719, -0.33569336, 0.58203125, -2.1113281, 0.64746094, -0.23498535, 0.59277344, 0.6069336, 0.16760254, -2.5, -0.6201172, 0.22851562, -2.6386719, -1.4121094, 2.5, 1.2021484, -0.65527344, 1.0927734, -1.7626953, 1.7138672, 1.3994141, -1.765625, -0.46362305, 0.5131836, 0.2944336, -0.44458008, -0.52685547, 1.8652344, -0.023590088, -3.7460938, -0.013702393, -3.5507812, 1.9794922, 0.4946289, -0.058380127, -2.8261719, 1.4833984, 0.9296875, 1.8232422, 0.042053223, 2.4316406, 0.296875, 0.033569336, 2.7402344, -3.8789062, -2.2246094, -2.3339844, -5.6640625, 0.3881836, -2.2421875, 1.203125, 2.5585938, 0.5419922, 1.2744141, 2.5, 1.0400391, -3.5527344, -1.1259766, 0.8569336, 2.1386719, -2.5859375, -0.35498047, 2.21875, 0.61621094, -0.34545898, -0.6850586, -1.2402344, -2.6894531, -0.94189453, 0.74316406, -1.3105469, 1.1308594, -1.7792969, -0.10461426, -0.61621094, -1.8105469, 0.79833984, -1.3759766, -0.70410156, -2.2207031, 2.3496094, -0.30322266, -0.39379883, -1.0488281, 2.8085938, 2.5019531, -0.36010742, -0.97314453, 0.6323242, 2.3496094, 0.83935547, -0.5732422, 0.1451416, -0.105651855, 0.26049805, 0.23852539, -0.9892578, -0.49902344, -0.93847656, 0.75390625, 2.0429688, 0.24645996, 0.7866211, 1.4277344, -2.0097656, 1.0039062, -0.85839844, 0.4560547, -0.42456055, -0.46972656, -1.1318359, -2.1269531, 0.011550903, -1.0947266, -2.0820312, -0.6933594, -0.6220703, -2.4707031, 4.8828125, 0.60058594, -0.9277344, 1.1601562, -1.3310547, -1.0029297, -1.0205078, 1.0136719, -1.5175781, 0.80126953, 0.17797852, 1.28125, 2.0859375, 1.1767578, -1.3544922, -1.0498047, 1.640625, -2.9375, 1.2470703, -1.6132812, 1.734375, 0.14624023, 0.9296875, 2.2871094, -0.98046875, 2.9960938, 1.1914062, 0.10668945, 1.171875, -0.6855469, -1.8457031, 0.7529297, 2.1308594, 1.765625, 1.3378906, 0.71728516, 0.4399414, 1.9033203, 1.4316406, 0.8417969, 0.65527344, -0.45874023, 2.3925781, -1.1699219, 1.9199219, -2.4355469, 0.74658203, 0.78515625, 1.8007812, 1.4375, 3.7265625, 1.2958984, -2.1308594, 1.0039062, 1.1347656, -0.50341797, -0.8852539, 0.0027751923, -2.3828125, 0.7910156, 0.9453125, -1.9228516, -0.52001953, 2.5039062, -1.4482422, 0.89160156, -0.44677734, -1.0283203, 0.19372559, -1.1455078, -1.0673828, -0.15002441, -0.27001953, 0.9663086, -1.7207031, -0.4404297, -0.6513672, 0.6982422, 0.37353516, -0.04510498, -0.059539795, 0.45483398, -0.6503906, 0.9238281, -1.7753906, -0.5, -2.1816406, 0.8535156, 3.3027344, 1.0927734, -0.15283203, -0.58203125, 0.43579102, -1.3935547, -1.46875, -0.2064209, 2.7949219, 0.8066406, 0.27563477, 0.2849121, -0.8256836, -0.5288086, -0.6435547, -0.25927734, -1.5048828, 3.40625, 2.2578125, 1.6640625, -0.3244629, -0.9790039, -2.3046875, -4.890625, -0.61279297, 3.2109375, -0.59716797, -0.3930664, -3.1855469, 0.3161621, 1.1308594, -0.79296875, 0.86376953, -3.7421875, 0.68652344, -0.91748047, -0.6123047, -1.5576172, 0.39233398, 0.19396973, 0.2631836, -1.0693359, -0.10266113, -0.7783203, -2.7480469, -1.8818359, 0.7734375, -3.0703125, -0.76464844, 1.75, -1.7412109, -1.171875, 1.4902344, 1.6015625, -2.875, 1.8076172, -2.4414062, 0.017120361, 0.12322998, -0.578125, 2.390625, 2.484375, -0.123535156, 1.1542969, 1.5058594, 1.1357422, -1.453125, -0.43579102, 0.38085938, 0.2052002, -1.2734375, -2.7285156, -0.3869629, -0.059509277, 1.8378906, 1.0292969, -2.828125, -0.6279297, -1.5546875, -4.6210938, -0.14257812, -0.015670776, -0.9116211, -1.0449219, 0.98095703, 2.9570312, -1.7402344, 1.0683594, 1.1865234, -1.0810547, -0.9916992, 1.9052734, -0.78808594, 2.171875, 0.84375, -0.12298584, -2.5449219, -2.7617188, 1.8515625, 2.7441406, -0.28442383, 1.0722656, 0.03137207, -0.47802734, 0.94677734, -0.5854492, 1.5556641, 2.7070312, -0.59277344, -1.0615234, 0.23693848, 2.0761719, -0.4309082, 1.9013672, 1.5166016, -0.7993164, -1.0224609, 3.7167969, 1.1757812, -1.9521484, 1.5224609, -1.8583984, 1.3896484, -0.22167969, -2.1660156, -0.25927734, -2.7792969, 0.0206604, 0.43920898, -1.7080078, -2.3574219, 1.5625, 0.21569824, -1.8994141, 0.4416504, 3.4277344, 0.8129883, -0.033111572, 1.1855469, 2.0449219, -0.5151367, 0.04034424, -1.8808594, -0.4440918, 1.8076172, -2.1875, -1.578125, 2.5234375, 1.4433594, -1.7275391, 1.3125, 0.72314453, 2.4824219, 0.53759766, 1.4824219, 3.5859375, 0.0071792603, 2.1035156, 0.7739258, 2.1699219, 4.3164062, 0.35375977, 0.050598145, 1.8964844, -0.5, 0.4802246, -1.0761719, 0.08392334, -0.80126953, -1.1875, 0.09460449, 0.65527344, 1.1982422, -3.0019531, -0.36499023, -0.54052734, 0.18066406, -4.140625, -0.6191406, -0.25146484, 0.890625, -0.5805664, -0.5805664, 1.5390625, 0.9140625, -0.47753906, -1.3085938, 0.6538086, 2.3203125, -2.6171875, 0.17358398, 0.051452637, -4.1484375, 1.6113281, 3.5839844, 0.44726562, -0.16711426, 0.92822266, 0.23596191, -0.73828125, 1.0527344, 1.7431641, -2.7792969, -0.9589844, -0.63623047, 2.8867188, 1.0537109, -1.6162109, 3.5566406, 0.9614258, -2.171875, -2.8515625, 2.6152344, -1.0976562, 0.17346191, -0.014297485, -4.6367188, 2.8964844, -1.7373047, 1.0751953, -1.8359375, 0.5834961, -0.6767578, -1.6162109, 0.81103516, 0.98828125, -1.6767578, 3.6992188, 0.40429688, -2.8105469, 0.28710938, 1.9755859, 1.8994141, 1.0820312, 0.07696533, 0.45263672, 1.0917969, 0.0044517517, 2.546875, -0.034698486, -1.9960938, -0.46044922, 2.0234375, 0.57958984, 0.35766602, -1.1835938, 1.3583984, -0.7167969, 0.5258789, -0.8618164, -0.39501953, -1.6162109, -0.59716797, -0.58251953, -0.65185547, -0.9814453, -1.2460938, 0.65527344, 0.06451416, -0.7763672, 0.18322754, 1.6464844, -0.9121094, 1.3339844, 1.1113281, -0.5083008, -1.7021484, -1.3037109, 0.6479492, -1.7373047, -1.0761719, -0.15234375, -0.7480469, 0.068115234, -1.8359375, 0.37475586, 0.73535156, 0.47705078, 0.07489014, -0.37036133, -1.9902344, -1.2050781, -0.27514648, -2.0292969, 1.1503906, 2.5449219, -1.3652344, 2.3164062, -0.5283203, -1.8691406, -0.16052246, -1.0849609, -0.8569336, 0.88916016, 1.9619141, 0.14343262, 2.0117188, -0.76660156, -2.4589844, -0.92822266, -2.0859375, 2.4179688, -1.2001953, -0.7270508, 0.09088135, -0.12597656, 3.28125, 0.6489258, 1.5830078, 0.4326172, -0.625, 0.93359375, -1.4111328, -0.048065186, -0.1182251, -0.08251953, -1.0585938, 2.9375, 0.88671875, -2.5839844, 0.9223633, 2.0878906, 0.70996094, -1.6425781, 0.96875, -0.8823242, -0.13476562, 0.42089844, 2.1992188, 1.3330078, 0.32250977, -0.71533203, 0.7446289, -0.8623047]}, "B074MDC1JV": {"id": "B074MDC1JV", "original": "Brand: LEGACY HEATING\nName: Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating\nDescription: \nFeatures: Item size: 56.7in x21.3in x24in\nFull Stainless Steel Burner and High Quality constructure\nHeat resistant tempered glass wind guard included\nLava glass, table lid and a protection cover included\nUse with 20lb. propane tank (not included) ETL Approved\n", "embedding": [-0.8066406, 1.4013672, 2.7089844, -0.40844727, 0.41137695, 2.5703125, -0.12121582, -2.5976562, 0.2286377, 2.7519531, 0.375, 0.5239258, -2.5507812, -3.5527344, 2.7617188, -0.11444092, 0.36401367, 0.48535156, 1.0234375, -1.9736328, 1.5605469, 0.047088623, 0.29101562, -0.124938965, 0.07861328, 1.0644531, 4.15625, -3.8222656, -0.9604492, -1.0175781, 1.4931641, 2.140625, -0.0066375732, 3.3242188, -1.4052734, -0.76123047, -0.4597168, 0.4091797, -2.0546875, -0.047668457, -1.28125, -1.9931641, 2.7578125, 2.0097656, -2.1972656, -0.44848633, 0.5019531, -0.8496094, -1.0517578, -0.34521484, 0.8144531, 1.7099609, -0.1541748, 0.14221191, -2.0820312, 1.7675781, -1.5146484, -1.6191406, 1.4755859, -0.9667969, 0.9243164, -1.2919922, -0.3623047, 0.87939453, -1.2431641, 1.3369141, -0.021347046, -0.64501953, -0.39697266, 1.7939453, 1.0087891, -0.9824219, -0.9873047, 0.53027344, 0.94140625, -0.36157227, -2.8789062, 1.8613281, 2.4160156, -2.3710938, 0.8417969, 3.2207031, -0.21728516, -2.2011719, 1.5712891, -1.1318359, -1.8349609, -1.2021484, 0.94677734, 0.8310547, 0.8876953, 3.0117188, -1.0029297, -3.734375, 1.3183594, -1.5703125, 0.35302734, 1.2607422, -0.640625, 0.38867188, 1.0390625, 0.5996094, 0.65283203, -0.07019043, -2.4160156, -0.453125, 0.9057617, -0.014450073, -0.39208984, 0.055145264, -1.7519531, -1.4462891, -0.13720703, 0.328125, -0.11663818, 1.3857422, 0.89941406, -0.37670898, 1.5693359, 0.8847656, 3.921875, -0.08508301, -1.0380859, -0.6777344, 0.92578125, -1.3564453, -0.71875, 1.3203125, 1.3476562, -2.2285156, 1.0830078, -0.85546875, 1.8740234, 0.43188477, -2.4726562, 0.11834717, -2.1660156, -1.3544922, -4.171875, 0.8886719, -1.2480469, 0.86035156, 1.1894531, 0.4921875, -2.8300781, -1.3359375, -0.7963867, 2.0917969, -2.1914062, -1.4570312, 1.6269531, -0.6875, 0.74658203, -1.4541016, 1.2197266, -0.45336914, 0.53027344, -2.578125, 2.3730469, 0.095214844, 0.3005371, -0.42871094, -0.9301758, 0.73828125, -1.2421875, 0.5239258, 1.7763672, -0.4152832, -0.28320312, 2.1289062, -0.5410156, -0.25878906, 0.84814453, 0.75, 0.8227539, -0.32543945, 0.5566406, 1.5175781, 1.4179688, 0.6274414, -2.2519531, -2.078125, 0.56640625, 1.3876953, 0.17248535, -2.5253906, 0.28173828, -3.2226562, 1.5986328, -1.5380859, -0.47753906, 0.32226562, 0.10614014, -0.70654297, 0.059387207, -1.8427734, -1.9814453, -3.5957031, 1.3173828, 0.009979248, 0.6191406, 1.8291016, -0.6972656, -0.5839844, -1.7734375, -2.0859375, -2.25, 0.091674805, 2.9082031, 1.4384766, 0.66748047, -0.5698242, 1.0800781, 0.38110352, -0.40014648, -3.1875, 1.25, -1.3505859, 1.7587891, 0.7949219, 1.4599609, 0.0042419434, 0.45214844, 2.2128906, -0.4152832, -0.39746094, 2.421875, 0.84814453, -1.4667969, -1.7763672, 2.6171875, 1.8955078, -0.7602539, 1.2851562, -1.1005859, 3.0234375, 1.0039062, -0.7529297, 0.94873047, -1.1386719, 0.06237793, -0.030303955, -0.34179688, 0.28027344, 0.62402344, 0.6538086, -1.1494141, 1.0126953, 2.0488281, -0.83251953, -1.0927734, -0.4777832, 0.1907959, 2.3046875, 0.59472656, 1.3828125, -1.4921875, 0.17163086, 1.1708984, -1.4667969, 0.95947266, -0.765625, -0.78808594, 0.06854248, -0.16931152, -2.5214844, 2.3847656, 0.69873047, -3.078125, -0.49169922, -0.18701172, 0.2536621, 3.4492188, 0.2956543, 1.5136719, 1.3085938, -0.28930664, 2.7226562, -0.09008789, 1.7695312, 0.2421875, 0.40429688, 2.7753906, -0.96191406, 0.060699463, 0.51660156, 0.5317383, -0.23425293, -1.4667969, -1.1425781, 3.8007812, -1.0976562, -1.7431641, 4.3046875, -0.7260742, -0.33569336, 1.1699219, -0.9946289, -0.79248047, -1.2060547, 0.61279297, 1.9082031, 0.9746094, 1.4960938, -1.3476562, -0.84277344, 0.9223633, -1.59375, -1.9003906, -0.42944336, -0.17370605, -1.1865234, -2.1757812, 0.0046043396, -4.2226562, -1.2294922, 1.6875, -2.9121094, 0.7133789, -0.91552734, 0.26123047, 2.4003906, -0.52441406, -0.36767578, -0.49169922, 2.078125, -1.4023438, -0.0018396378, -1.0087891, 0.41186523, -1.6953125, -2.109375, 0.25878906, -2.4121094, -0.5566406, -2.7539062, -0.7192383, -1.3046875, 0.42407227, -0.8027344, -0.15686035, 1.2109375, -0.45947266, 1.8994141, -0.084350586, -3.125, -0.43701172, -0.15002441, -0.88720703, 1.6181641, -0.09832764, 2.984375, -0.6538086, -4.9804688, 0.5209961, 0.061645508, -0.1303711, -0.058380127, -1.2294922, -0.7260742, 1.3984375, 0.38012695, 0.66308594, -0.85498047, 1.2646484, -0.060180664, 0.46704102, -3.4511719, 0.0042266846, -2.640625, -0.12042236, -0.9897461, 0.5151367, -1.5849609, -0.6176758, -0.5083008, -0.4267578, 5.2929688, 0.35205078, 3.375, -0.5332031, 0.81591797, 0.8745117, -1.4150391, -1.5185547, 0.74316406, -0.22155762, 0.52685547, -2.4707031, -3.5332031, 0.7602539, -2.9472656, -0.95996094, -0.13757324, 0.7158203, 0.9526367, 0.114990234, -1.4462891, -0.50146484, 0.07800293, -0.9902344, 0.3322754, 1.7851562, -0.8979492, -0.71435547, -1.8710938, 0.26245117, 2.0332031, 2.0390625, -1.1259766, 1.1787109, 0.26831055, -1.8007812, 2.6621094, -0.26782227, -3.0410156, 0.4104004, 3.0253906, 0.34472656, 1.7548828, -1.9121094, -2.7421875, -1.6259766, 1.6816406, 2.0917969, 1.6005859, 2.1640625, -0.39086914, -0.37817383, -0.0501709, 0.5839844, 0.5961914, 0.4580078, -0.36938477, 2.8164062, -1.9042969, -0.98779297, 0.9121094, 1.9912109, -3.7773438, -1.0869141, 0.49487305, -1.8359375, 1.7998047, -0.5473633, 0.61865234, 0.2746582, -0.9995117, 1.2666016, 0.15771484, 2.2792969, 0.10925293, -1.6474609, 1.5556641, 0.953125, 1.0048828, 2.8847656, 0.27294922, 0.9916992, 2.0566406, 0.50634766, -1.2695312, -0.58203125, 0.45166016, 0.013130188, 0.13354492, 0.9160156, -1.0341797, -0.453125, 0.50439453, 0.35253906, -0.14575195, -1.4052734, -0.08050537, 2.2578125, 0.011878967, -0.2998047, -0.9213867, 0.37036133, 0.72802734, -1.5712891, 1.2666016, -1.9804688, 0.26660156, 1.1103516, -2.4003906, -0.17016602, -1.0605469, 3.9628906, 0.1953125, -0.29736328, 1.0117188, 2.7949219, -0.6972656, -1.9697266, 1.4648438, -1.0107422, -0.49389648, 2.6621094, -0.93066406, -1.5136719, 0.7089844, -2.9472656, 1.3232422, 2.5234375, -0.36450195, 0.50097656, 0.77246094, -0.19714355, 0.17004395, 0.7626953, 0.9848633, 0.08508301, -1.5820312, -0.3864746, -0.6870117, -1.4082031, 2.0527344, -2.0117188, -1.4003906, 2.1425781, -1.0449219, 2.6660156, 1.8759766, 2.9277344, -0.8808594, -1.6601562, 1.4560547, -0.91748047, 0.7675781, -2.0292969, -3.6992188, -0.73339844, -2.4257812, -1.03125, 2.890625, -1.4501953, 0.390625, 1.3945312, 1.0107422, -2.15625, -2.2851562, -2.5976562, -0.4987793, -3.2285156, -0.47485352, -1.3642578, -0.7553711, -2.0410156, -0.74560547, 0.91796875, 0.46875, 1.4921875, 0.6113281, -1.5927734, 0.6430664, -0.72753906, 1.0107422, -0.35351562, -0.5102539, 1.0537109, -1.4570312, -0.0848999, -2.3730469, 2.6835938, -0.18701172, -1.1328125, 2.4902344, 3.9921875, -1.0039062, -0.049682617, -0.17211914, 0.8095703, 1.6445312, -0.2709961, -3.0742188, -1.2294922, -0.80029297, -0.21728516, 0.50439453, 0.5214844, -0.36401367, -1.3935547, 0.27172852, 0.87109375, 0.23754883, 1.1533203, 1.4560547, -1.9384766, 0.8339844, -1.0966797, -1.0195312, -0.83203125, -0.76904297, -0.36987305, -1.5693359, 1.0556641, -2.5097656, 0.47338867, -0.9399414, -1.0009766, -0.26708984, 1.9462891, 1.1982422, 2.9042969, 3.515625, -1.6757812, -1.5117188, 1.1962891, -0.89697266, 0.87402344, 0.63183594, -1.2509766, 1.1894531, 0.15441895, 1.2519531, -1.8310547, -0.58203125, 0.2800293, -0.22875977, -0.29907227, -1.1933594, -1.3251953, -1.0517578, -0.26586914, 0.48486328, -1.1464844, 0.48242188, -2.5117188, -0.5834961, -1.8544922, 0.71875, -1.3496094, 0.8305664, -0.45922852, -0.6855469, 1.6162109, 0.46240234, 0.16638184, 0.81591797, 1.4414062, 1.5, 2.5078125, -0.31860352, -0.04623413, -0.92285156, 0.765625, -2.9414062, -0.18530273, 0.8100586, 0.7158203, -2.5976562, 3.75, 0.62402344, -0.95751953, 2.6464844, 2.4707031, -2.0546875, 0.027862549, -1.4443359, -0.7993164, 3.1523438, -1.6015625, -1.5507812, -0.93310547, 0.95654297, -0.8149414, 1.6376953, -0.40820312, -1.4111328, 0.43774414, -1.5087891, 0.040374756, -1.3242188, -1.8769531, -2.0761719, -1.6240234, -0.30126953, -1.6210938, 1.1289062, 2.3613281, 0.094177246, -0.6850586, 1.8105469, -0.03137207, -0.3947754, -0.93408203, 0.5805664, 0.029693604, -0.3203125, 1.6855469, 0.21154785, 1.2304688, -1.3994141, 2.984375, -1.0146484, 1.1132812, -2.0898438, 2.328125, -2.3671875, -1.1611328, 2.0957031, -0.16748047, -0.09423828, -3.8769531, -0.64501953, -0.39648438, 1.3613281, 0.014808655, -0.77734375, 0.6875, 0.037902832, -2.7226562, -0.85498047, -1.5253906, -2.8007812, -1.2080078, 0.11352539, -0.06866455, -1.2734375, -2.5449219, -0.28759766, -0.71777344, -0.9633789, -0.32543945, -0.9995117, 0.39697266, 0.010597229, -0.4465332, 2.2558594, 1.7011719, 0.5883789, -0.34375, -0.77490234, -3.0742188, -2.0234375, 2.1855469, -1.4257812, 3.1289062, 1.3994141, 0.6323242, 3.2949219, 1.4521484, 0.10321045, -0.60498047, 1.7001953, 0.9404297, -0.52685547, 3.3261719, -1.3857422, 2.3847656, -0.78564453, -3.4335938, -0.06695557, -1.8007812, -0.13842773, 0.8461914, 0.36523438, 0.3857422, 0.27124023, 0.7055664, -0.42089844, 1.9794922, 1.7080078, 1.6289062, 1.15625, -1.2050781, -0.17443848, -1.6943359, -1.7412109, -1.3525391, -2.9980469, -0.71240234, 0.13720703, 0.3503418, 2.5625, 0.44848633, 0.55078125, 1.3369141, 2.0058594, -1.1865234, 1.65625, -0.3515625, 2.5488281, 2.6894531, -1.4287109, -1.4267578, -3.5410156, -1.0458984, 1.3291016, 0.08508301, -1.3212891, -0.23522949, -3.7402344, -0.20861816, 1.1240234, 1.4951172, 1.5917969, 0.46826172, -1.7441406, 1.9960938, 1.9208984, -0.7446289, 1.3662109, 0.08477783, 2.2070312, -1.3857422, 2.2421875, 2.8457031, -0.60498047, 2.6875, -1.3730469, -0.7475586, -0.47680664, 0.484375, -0.20288086, -1.9892578, -0.20605469, -1.5126953, -1.1464844, -3.9980469, 0.14013672, 0.55908203, -0.2770996, 0.15563965, 0.087890625, -0.26367188, 2.5175781, 1.7734375, -0.6582031, -1.1894531, -1.3173828, -0.80126953, -1.28125, 1.2568359, 0.052581787, 0.28808594, -0.69189453, 0.5722656, -1.9550781, 1.5537109, -0.12030029, 0.8935547, 2.5273438, 2.8828125, 0.26879883, 1.9042969, 1.9550781, 0.29858398, 1.6113281, 0.7524414, -1.2353516, -0.07220459, 2.2167969, 2.4414062, 0.93408203, 0.027038574, -0.50634766, 1.2880859, 0.6845703, -1.7294922, 0.7036133, 2.4414062, -1.6210938, 1.8056641, -0.0047683716, 1.5693359, -2.0097656, 1.0351562, -0.57714844, -0.014564514, 0.76660156, -1.1962891, 1.4794922, -0.9707031, -0.08959961, 0.421875, 1.2255859, -0.88720703, -3.1699219, 2.3085938, 1.1943359, -2.9140625, -2.3359375, 2.3105469, 1.7275391, 0.13342285, 0.69384766, 0.22607422, 1.2333984, 1.6230469, -0.51953125, 0.3942871, 0.38842773, 1.1298828, 1.9042969, 0.94970703, -1.0986328, -1.5175781, 0.20617676, -2.0585938, -1.8681641, 2.2109375, 1.3613281, 2.6113281, 1.4619141, -2.4042969, 2.5390625, 0.8149414, -0.5229492, -1.8203125, -0.023406982, 1.3935547, -0.85009766, -1.7890625, 0.72265625, -0.90527344, 4.484375, 1.6064453, 1.1123047, 2.3222656, -0.9379883, 1.5009766, 1.1914062, 1.3291016, -0.7128906, 1.0791016, 0.4645996, 2.3867188, 1.1601562, -0.8339844, 1.3007812, 2.171875, 2.6738281, -0.54345703, 1.9072266, -2.5117188, 0.7788086, 2.1640625, 0.08880615, -1.8544922, -2.046875, -1.2998047, -0.87597656, 0.27856445, -0.4091797, -2.1113281, 2.5761719, 1.1054688, -0.59033203, -1.3398438, 1.1386719, -0.8286133, 2.1328125, -1.3632812, -0.7597656, 0.062469482, -1.4101562, 1.6572266, -1.0400391, -2.6367188, -2.5390625, 3.5625, 0.1854248, -0.23742676, -0.16503906, 0.49780273, 0.6665039, -0.7832031, 1.5996094, -0.83496094, 0.23876953, 0.8833008, -0.25097656, -1.3613281, 0.39208984, 0.9213867, -1.7080078, -0.5053711, -1.2099609, -1.1435547, 1.8300781, -1.9130859, 0.88427734, 4.0078125, 0.5839844, 0.7944336, -1.0791016, -4.1835938, -2.7226562, -1.1845703, 2.3164062, 0.5786133, -0.60839844, -0.5800781, 1.1914062, 3.015625, -0.9550781, 0.40600586, -0.94677734, -1.1582031, 0.9897461, -1.03125, -0.08087158, -0.026931763, 0.4716797, 1.6630859, 1.4287109, -0.018249512, -0.7314453, 2.5742188, 3.3164062, 1.1113281, -1.9052734, -0.23901367, 0.4794922, 1.5498047, 1.5, 0.6269531, 1.0732422, 0.38061523, -1.9453125, -4.1796875, -2.0488281]}, "B00PKVS3HG": {"id": "B00PKVS3HG", "original": "Brand: Powerblanket\nName: Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray\nDescription: \nFeatures: Safely heats cylinder to an optimal 90 \u00b0 F / 32 \u00b0C (\u00b1 10 \u00b0F/5 \u00b0C)\nSaves money by optimizing gas and material usage\nIncrease flow rate performance and efficiency of gas cylinders\nEliminate unnecessary cylinder refills in cold weather\nCertified to UL/CSA/CE standards\n", "embedding": [0.6767578, 1.9091797, 2.9238281, 0.9946289, 1.0800781, -0.7109375, 1.0849609, 0.008895874, -0.84228516, 1.8564453, 1.6298828, 0.8569336, 0.29833984, -3.5253906, 0.9526367, -2.3945312, 0.3630371, 2.6308594, 0.9584961, -1.0380859, 1.5527344, -0.3779297, 2.0253906, -1.2451172, -1.8789062, 1.0097656, 3.0019531, -2.5800781, -2.9882812, -1.1142578, 0.4091797, -1.0263672, -0.38452148, 2.3886719, -2.4277344, -2.6210938, -0.8173828, 0.116882324, -3.4121094, -0.17126465, -1.1611328, -2.3789062, 1.6884766, 0.578125, -1.9990234, 0.3581543, 0.55566406, -2.34375, 0.1505127, -0.105407715, -0.15246582, -0.07891846, 0.7421875, 0.24389648, -0.00573349, 2.3730469, 0.21484375, -1.0439453, 1.1748047, 0.29125977, 0.9501953, 0.6879883, 0.059265137, 2.7011719, -2.4296875, 1.34375, -0.48168945, -0.52685547, -2.4160156, 0.42871094, 3.1796875, 2.0996094, -1.0507812, -0.052459717, -0.054016113, 0.16491699, -3.359375, -0.11853027, 3.2871094, -1.2929688, -0.1149292, -0.82714844, 0.113586426, -0.42114258, -1.3730469, -0.38452148, -1.1181641, -0.066101074, -1.5224609, 1.1123047, 0.96972656, 2.4785156, -2.140625, -3.4628906, 0.19628906, -2.3828125, 1.7753906, 0.45654297, 0.44335938, -0.4074707, -0.78466797, -1.90625, -0.6201172, 0.2861328, -2.2480469, 0.50390625, 3.7773438, 0.4152832, -2.5722656, 3.0195312, -2.3925781, 0.24279785, 1.4130859, 1.3046875, -0.40966797, -1.6787109, 1.0253906, 0.27514648, 2.6386719, 1.2001953, 3.890625, -1.9921875, 1.1679688, -2.90625, 1.3886719, -1.1083984, -0.85058594, -2.2519531, 4.2421875, 1.6572266, 1.7539062, 0.43896484, 1.1044922, -0.19665527, 1.7197266, -0.5644531, 0.008674622, -0.85009766, -3.8574219, -1.1679688, -2.6816406, -0.11755371, 1.2861328, -1.0410156, -4.0742188, -2.46875, -1.2158203, 2.7773438, -2.3710938, -1.8144531, 2.5800781, -0.8095703, -0.72265625, -2.8222656, 1.1376953, 2.1015625, -0.20532227, -2.40625, 3.7832031, 2.0703125, 1.3554688, -2.0996094, -1.0800781, 0.20861816, -1.8369141, -2.9316406, 2.6523438, -1.5478516, -1.8583984, 0.9633789, -1.0273438, -1.2177734, -0.89208984, 1.4072266, 0.18078613, -1.9326172, -0.06311035, 2.1816406, 0.35864258, 0.06890869, -1.9541016, -1.4101562, 0.5234375, 0.07635498, -0.8911133, -1.9697266, -0.74365234, -0.6166992, -0.9711914, -1.1845703, -1.8261719, -1.3964844, -1.1376953, 1.09375, -1.4072266, -0.44458008, -0.8979492, -1.5517578, 2.7109375, 2.1738281, -0.2927246, -0.10272217, 0.7836914, 0.45507812, -2.1699219, -1.8105469, 1.0693359, -1.5849609, 0.04434204, 1.2119141, -0.56347656, -0.5776367, 2.2890625, 0.5234375, -0.16796875, 0.77783203, 0.066589355, 1.1298828, 1.4560547, 0.70751953, -0.14709473, -0.9760742, 0.5854492, -0.49072266, -1.2363281, 1.8349609, -0.117492676, 0.041229248, -0.06689453, -3.140625, 1.5712891, 2.9746094, 0.29858398, -0.4987793, -1.3291016, 1.1279297, 0.7138672, -0.2746582, 2.4199219, -2.4121094, -0.8076172, -0.70654297, -1.7255859, -1.1005859, 0.71728516, -0.07598877, -0.61279297, -0.39453125, -0.0317688, -1.3076172, 1.1298828, -0.56152344, 2.5722656, -0.37548828, -2.8964844, -0.64990234, 2.2460938, 0.8046875, 0.124572754, -3.1328125, -0.16723633, 0.7915039, 0.8911133, -0.17468262, 0.014450073, -1.2070312, 1.2285156, 0.09490967, -0.17565918, 0.81884766, -0.0026779175, 2.0214844, 2.7636719, -1.5654297, 0.7988281, 1.5009766, -2.2988281, 2.6816406, -1.5341797, 1.3134766, 0.83691406, 0.6933594, 1.1523438, -2.7578125, -0.28710938, 1.2265625, -0.06933594, 0.16711426, -2.0429688, 0.21362305, 2.8789062, -1.2822266, -0.8305664, 3.2304688, 0.13586426, 0.47314453, 0.4580078, 1.6777344, -0.77197266, -0.37475586, 3.9179688, 2.4121094, -1.2138672, 0.062927246, -0.8613281, -2.4453125, 0.38378906, -1.4619141, -0.31079102, 0.81640625, 0.80371094, -1.7207031, -2.140625, -0.0287323, -4.5117188, -0.3166504, 3.0019531, -1.8867188, 1.3056641, 1.2285156, -1.0322266, 1.9785156, -0.84521484, -1.5996094, 0.6113281, 1.0068359, -1.7363281, 1.0683594, -1.2734375, -0.84033203, -0.7709961, -3.1386719, 0.8691406, -1.2841797, -0.5517578, 0.20483398, 0.06365967, -2.3964844, -0.95947266, -1.8583984, 0.44995117, 0.059692383, -3.4570312, 1.3037109, 1.5195312, -0.9238281, 0.19689941, 1.1210938, -0.58154297, -2.7226562, 1.2148438, 1.1630859, -0.93652344, -3.6210938, 2.5996094, 2.1816406, 0.52734375, 0.13012695, -0.23168945, 0.5083008, -0.41552734, -0.69677734, -0.10443115, -1.0087891, 0.6958008, -0.7817383, 1.1621094, -2.8183594, 3.6425781, -0.7392578, 1.375, -0.6044922, 0.40722656, -2.7773438, -0.9824219, 1.7363281, 1.6689453, 2.0449219, 2.3691406, 0.75683594, 0.76220703, 0.087646484, 0.5678711, -1.0771484, -2.4140625, 2.4726562, -1.9541016, -0.22937012, -1.296875, -4.1367188, 0.7338867, -0.32617188, -1.0908203, 0.022125244, -0.9135742, 2.0253906, 0.5136719, -1.0898438, -0.28979492, -0.35595703, 0.8598633, -1.7802734, -0.5263672, -0.18054199, -2.7246094, -3.0820312, -0.3671875, -0.79248047, 0.83691406, -0.80566406, -0.13256836, 1.1474609, -0.74316406, 0.24206543, 0.6538086, -2.8789062, 1.5107422, 3.5839844, 1.828125, -0.116882324, -2.2480469, 0.35473633, -1.5556641, -0.7661133, 2.0234375, -0.46435547, 2.1875, 2.0058594, -0.7832031, -0.20092773, 1.6689453, -0.7963867, 1.5771484, 0.38134766, 2.1132812, -0.5336914, -1.8535156, 1.1240234, 2.4648438, -2.6230469, -0.09289551, 4.2734375, 0.5175781, 1.4033203, 2.4316406, -0.6245117, 0.23339844, 0.026138306, 1.2246094, 0.77685547, 0.28076172, -1.6113281, -1.7568359, 0.22644043, 1.9169922, 3.5742188, 0.6435547, 0.2084961, -0.005634308, 1.5615234, 1.3681641, -1.2216797, 0.022659302, 1.2558594, 0.3137207, 2.5957031, 0.12731934, 0.063964844, 1.3447266, 1.1269531, 1.1123047, 1.4042969, -2.7714844, 1.0380859, 1.9072266, 0.6430664, -1.6289062, -0.98095703, -1.5019531, 0.5810547, -1.6425781, 1.7285156, 0.18518066, 1.1943359, 0.7607422, -1.6552734, -2.109375, -1.6494141, 0.86279297, -0.016464233, -0.3540039, 0.41796875, -0.55908203, -0.68408203, -1.8115234, -3.3320312, -0.4807129, 1.0009766, 3.9316406, 1.5400391, -0.32421875, 0.3984375, -0.5493164, 1.4638672, -0.16601562, -1.9423828, -0.8354492, -2.9492188, -1.9960938, 0.14660645, -0.17016602, -0.33007812, 0.1652832, -3.8886719, 0.9995117, -2.3261719, 0.8515625, 2.4375, -1.1835938, 0.5957031, 0.061828613, -1.4033203, 1.8574219, 0.07086182, 1.2851562, -0.006580353, 0.3388672, 4.03125, -0.8125, -0.7861328, -0.4807129, -3.8496094, 1.4726562, -1.53125, -0.10662842, 2.8730469, 0.18139648, 2.8339844, -1.015625, -0.4104004, -1.1650391, -3.3945312, 0.29956055, 0.028533936, -3.0683594, 1.0244141, 2.3886719, -0.8930664, -0.7944336, 0.28881836, -2.0898438, -3.1386719, -1.2001953, 0.42358398, -1.6806641, -0.37670898, -2.1855469, 1.0634766, -0.004585266, -0.73828125, 0.13171387, 1.2460938, -0.5786133, -2.3652344, 2.6152344, 0.13061523, 1.8935547, 2.3144531, 3.2851562, 1.7480469, -1.2460938, -0.02810669, 2.7304688, 2.6445312, 0.66259766, -3.7832031, 2.3125, 0.011665344, 1.4501953, -2.5332031, -1.5234375, -1.4892578, -0.8725586, -0.6542969, 1.8027344, 1.7851562, 1.3945312, -0.45996094, -1.1289062, 1.5947266, 0.08666992, -1.6386719, -1.8935547, -2.1210938, -0.24487305, 0.9291992, 1.6328125, -0.33764648, -3.1777344, -0.4729004, 0.15991211, -1.8710938, 1.1494141, 1.7714844, 3.3417969, 2.0644531, -1.5585938, 1.5849609, -2.1074219, 0.66015625, 0.58447266, -0.91308594, 1.5068359, 1.5292969, 2.2734375, 3.3320312, -2.0585938, -0.9326172, 0.39135742, -2.2597656, -1.7978516, 0.018753052, 0.39282227, -1.4765625, 0.8286133, 1.25, -0.5234375, 2.8730469, 0.41430664, -0.47558594, 0.30493164, -1.34375, -0.1239624, 0.31982422, 0.44067383, -0.13439941, 2.0410156, -0.028015137, 0.58984375, -0.36621094, 0.5185547, -1.1972656, 1.6787109, -0.9379883, 1.7900391, -1.5244141, 0.7324219, -1.5527344, 0.49243164, 1.2285156, -0.9692383, 1.2041016, 2.3320312, 1.8789062, 0.9194336, 0.4736328, 2.4570312, -0.45239258, 0.37353516, -0.7114258, 0.36645508, 0.17260742, 0.6220703, -1.2802734, -0.097229004, 3.6171875, 0.63964844, 2.9140625, 1.7158203, -2.8964844, 0.35961914, -3.2714844, -2.1035156, -1.5283203, 2.6210938, -0.5283203, 0.1315918, 1.9248047, -1.7744141, -0.5004883, 4.4609375, 1.234375, 0.0960083, 2.3007812, 0.16345215, 0.2788086, -0.52441406, 0.8613281, -2.2011719, 1.2333984, -0.8779297, 1.1796875, 1.0683594, 1.1591797, 2.6621094, -2.3554688, -0.32104492, -1.0957031, 0.04928589, -2.5332031, -2.1816406, 2.09375, -0.5498047, 0.77197266, -2.9765625, -2.1699219, -0.4104004, 0.62841797, 1.0556641, -0.85058594, -1.5576172, -2.5703125, -3.5, -3.4550781, -0.5205078, 0.9770508, 0.092041016, 1.0126953, -2.7753906, -0.18432617, 0.47607422, -1.5722656, 0.017974854, -1.8144531, 0.2854004, -3.0039062, -0.14343262, -1.7148438, 0.24206543, -0.48901367, 0.6953125, -2.1425781, 0.26904297, 0.6459961, -2.3378906, -1.6386719, 1.4462891, -0.6435547, 1.6650391, 1.2822266, -1.3847656, 1.0449219, 2.4628906, -0.95654297, -0.07116699, 2.1894531, 0.51416016, -0.8720703, 2.03125, -1.6269531, -1.6435547, 0.08001709, -1.328125, 0.39257812, 1.0087891, -0.42749023, 1.0517578, -0.052520752, 0.041107178, -0.32861328, -1.015625, -0.6230469, 1.296875, 0.30029297, 1.6533203, 0.89941406, 1.1357422, -1.4160156, -0.40673828, 0.3425293, 0.029968262, -1.1689453, -3.3554688, -0.5864258, 1.3554688, 0.9863281, 0.27661133, 1.1943359, 0.24353027, 0.65966797, -0.74121094, -0.13122559, -2.2578125, 4.171875, 0.7939453, -1.6621094, -2.0390625, -1.1171875, 1.6005859, 0.8935547, 0.40063477, -0.92041016, -0.9082031, -1.3974609, -1.4228516, -0.46777344, 1.1347656, 2.4746094, 2.125, -1.6982422, 3.0117188, 3.9414062, 0.47802734, -0.09832764, 0.22094727, 0.051635742, -0.42578125, 2.734375, 2.8828125, -3.6582031, 0.27124023, -1.1132812, 2.7402344, -0.68652344, -1.0400391, -0.375, -1.1367188, -0.5292969, 1.4326172, 1.1152344, -2.9980469, 0.10760498, 0.04421997, -1.0693359, 1.1572266, 2.5605469, -0.45483398, 0.17858887, 1.4267578, 0.34350586, -0.8457031, -0.5839844, 1.7041016, -1.5732422, 2.8671875, -2.4804688, 0.028579712, 0.8520508, 0.5395508, -0.19433594, -0.88720703, -1.5703125, 1.3769531, 2.2011719, 1.2402344, 3.8359375, -0.9609375, 0.9824219, 0.10308838, 0.7939453, 1.6796875, 0.88183594, 0.34375, 1.5605469, 1.65625, -0.34838867, -1.8105469, -0.45947266, -0.5288086, -2.2421875, -0.18518066, 1.5878906, 1.2548828, -1.6367188, -0.69384766, 1.4707031, 1.0097656, 0.06793213, 1.1572266, 0.2631836, -0.38208008, -2.6816406, -1.9335938, 2.0703125, -0.32006836, -0.5253906, -0.16796875, 1.5546875, 0.023223877, -0.9291992, 1.1386719, -0.6489258, -2.3632812, 1.6767578, 2.8339844, 0.4975586, 1.9677734, 0.23632812, -0.42797852, 2.2578125, 0.46411133, 1.4726562, -1.9892578, 0.070007324, -0.71240234, 3.8496094, 1.9111328, 0.19372559, 1.3056641, 0.93652344, -0.32177734, -3.3066406, -0.9790039, 0.12243652, -0.0044174194, 2.4902344, -1.9570312, 1.4697266, -1.1865234, 2.1269531, -1.859375, 0.1616211, 2.4902344, -2.3691406, 0.13391113, 0.8027344, -0.2993164, 1.6621094, 0.6376953, 0.7402344, 1.2207031, -0.5673828, 0.81347656, -0.77490234, -0.6738281, 1.1738281, 2.1464844, 0.09161377, 3.1171875, -0.3017578, -0.27441406, -0.9951172, 0.53808594, 3.2285156, 0.6245117, 0.09136963, 0.45214844, 2.4316406, 0.16748047, 0.99072266, -0.57470703, 0.5698242, -1.7822266, 0.0059776306, 0.16088867, -0.3466797, -0.45263672, 0.9794922, -1.6376953, -2.8808594, 1.5253906, 2.3085938, -1.1865234, 0.70947266, 1.9707031, -1.8789062, -1.6660156, -2.8085938, -0.08135986, -1.0634766, -3.0957031, -0.9038086, 1.5644531, 0.4699707, -0.25561523, 0.83154297, -1.5654297, -0.45776367, 2.4433594, 1.9335938, -1.8134766, -0.42382812, -1.0302734, -2.0683594, -0.91308594, -1.7998047, 2.9628906, 0.4020996, 2.1875, -3.0996094, -1.1123047, -1.5673828, -0.84277344, 1.6054688, 1.0224609, 1.1953125, 1.3388672, -2.3300781, -2.1074219, -0.40625, -0.59765625, 2.9648438, 2.3203125, -0.76708984, 1.3212891, 0.05871582, 3.6699219, -0.5654297, -0.067871094, -0.40942383, 1.4384766, 0.35986328, -1.4472656, 0.02848816, 1.953125, -1.4228516, -1.5273438, 2.1953125, 1.9892578, 0.027282715, 1.6689453, 1.1005859, -1.2626953, -2.2792969, -0.828125, -1.2597656, -3.6757812, 0.69091797, 0.84472656, 1.0458984, -2.3789062, -1.734375, -4.3242188, -0.1928711]}, "B000P9GZSW": {"id": "B000P9GZSW", "original": "Brand: Texsport\nName: Texsport Portable Outdoor Propane Heater\nDescription: \nFeatures: Sport Type: Camping & Hiking\n", "embedding": [-0.23876953, 1.8291016, 2.1582031, -1.53125, -1.0771484, 0.2421875, 0.20837402, -3.0136719, 0.8125, 1.3339844, 0.8696289, 1.3222656, -0.58251953, -4.4257812, 1.1972656, -0.80371094, 1.1582031, 2.0742188, 0.35717773, -0.33984375, 0.9995117, 0.31079102, 1.9238281, -2.8320312, 2.2011719, 0.7910156, 6.0742188, -2.0449219, -0.82714844, -0.10015869, 0.37524414, 1.9794922, 0.023498535, 2.3632812, -1.2333984, -0.27783203, -1.7714844, 0.9404297, -2.2246094, 1.0019531, -1.1191406, -2.0527344, 0.92822266, 0.5332031, -1.9023438, -1.9931641, 1.4746094, 0.47631836, 0.051086426, -0.28588867, 0.11291504, 0.33862305, -1.0576172, 0.7290039, -2.8261719, 0.39111328, -1.4052734, -2.0273438, 1.1064453, 1.7958984, 1.2939453, -2.3242188, -0.67089844, 2.2890625, -0.20617676, 3.0566406, 0.84277344, -2.1230469, -1.0068359, 1.2705078, 2.1855469, 0.36938477, -0.7192383, -0.5722656, 0.13806152, -0.7026367, -3.5703125, 0.6713867, 2.0742188, -0.036956787, -0.49389648, 1.7441406, 1.3369141, 0.7397461, 0.15002441, -1.8261719, -1.1875, -0.48901367, 1.0117188, 1.1787109, -2.4550781, 2.1171875, -0.48095703, -5.9296875, -0.36499023, -0.86816406, 0.5698242, 0.50097656, 0.7709961, 0.58154297, 1.1816406, -0.081726074, 1.6503906, 0.71777344, -0.89697266, -0.0057373047, 1.6308594, 0.043151855, -0.65722656, 0.8076172, -2.3867188, -1.5068359, 1.4726562, 0.91308594, -0.13415527, -0.27954102, -1.1650391, 0.035705566, 3.875, 0.8364258, 4.5585938, -1.3037109, 1.6582031, -1.6386719, 1.0224609, 1.125, -0.12200928, 0.67822266, 1.9082031, -0.6225586, 2.3886719, 1.6738281, -0.037994385, -0.30908203, -0.25170898, -2.0390625, -1.921875, -2.2675781, -1.7167969, -0.68847656, -2.1230469, -0.45532227, 2.7480469, -0.6948242, -3.6074219, -0.57177734, -0.043151855, 1.15625, -0.38256836, -2.2539062, -0.8334961, -0.5957031, -1.5126953, 0.7558594, 0.9145508, 1.0019531, -0.9458008, -1.7138672, 3.1230469, 1.2431641, 1.8544922, 0.4345703, -1.1113281, 0.19213867, -0.61035156, -3.0390625, 0.6254883, 0.16235352, -0.71533203, 2.2265625, 0.4543457, -1.96875, -0.65771484, -1.2558594, 1.3076172, -0.9604492, 1.1591797, 2.5546875, 1.125, 0.1998291, -0.8491211, -0.6972656, -1.421875, 0.42333984, 1.7314453, -2.7363281, -1.4970703, -1.2167969, 0.33569336, -1.6699219, 0.22851562, 1.4257812, -2.6640625, 0.3310547, 0.11907959, -2.6582031, -1.6464844, -1.7705078, 2.84375, 1.6113281, -1.3964844, -0.50683594, -1.1416016, -0.39746094, -1.5009766, -2.3105469, 1.1259766, -1.28125, 0.56689453, 0.88427734, 0.11199951, 0.41723633, 1.4160156, 2.0605469, -0.42089844, -2.9257812, 2.25, 0.28588867, 2.5625, 2.7597656, -0.4921875, 1.1523438, -0.49853516, -0.5517578, 0.18725586, 1.0214844, 0.26904297, 0.20397949, -1.4716797, -1.078125, 2.9296875, 2.2734375, -0.71533203, 0.2487793, -0.43823242, 1.7958984, 1.9814453, 0.3935547, -1.0449219, 0.9350586, 0.24938965, -0.38256836, -0.031433105, -0.32739258, 0.18688965, -1.2353516, -0.6147461, 0.9379883, 2.0546875, 1.0273438, 2.7949219, -0.17687988, 0.7602539, 1.4384766, -0.3449707, 1.3027344, 2.0292969, 1.1621094, -0.62402344, -3.1425781, 0.36108398, 1.1269531, -1.3056641, 0.0859375, 1.1025391, -0.11804199, 3.1757812, 0.26538086, -1.4443359, 0.25854492, -0.17504883, 2.5761719, 1.53125, 0.7792969, 2.9960938, 0.016738892, -1.6787109, 2.1796875, -0.7993164, 1.1523438, 0.96240234, 0.13806152, -0.13208008, -1.1435547, -0.33764648, -1.0771484, 0.13061523, -0.9536133, -2.0859375, 0.6743164, 4.2382812, -1.0458984, 0.5493164, 3.2109375, -1.1816406, 2.0175781, 1.4345703, 0.9189453, -2.7773438, 0.16955566, 2.1015625, 1.9248047, -1.6875, 1.5292969, -1.2988281, -0.79833984, 1.203125, -2.0722656, -0.24133301, 1.7246094, -0.046813965, -1.7099609, -1.8652344, -0.59814453, -2.5996094, -1.6738281, 0.81884766, -2.8476562, 0.53808594, 1.5292969, -1.5791016, 0.86621094, 1.1123047, -0.8691406, -0.8852539, 1.359375, -1.9990234, 1.5332031, 0.5908203, -0.43432617, -0.57177734, -1.0546875, -0.5175781, -1.7255859, -1.0742188, 0.062683105, 0.6118164, -0.52246094, 2.7929688, -1.0175781, -0.81884766, -0.10015869, -0.7709961, 0.8330078, -0.2915039, -2.1347656, -0.3779297, 0.44140625, -1.7832031, -2.5527344, 0.8588867, 0.18676758, -0.28759766, -5.4179688, -0.69677734, 1.5429688, -1.1591797, 0.7084961, -2.4082031, 0.18713379, 0.53808594, -1.6318359, 0.044921875, -1.1025391, -1.2978516, -2.7597656, 1.6210938, -3.9238281, 2.5742188, -0.20251465, 1.7216797, -0.2401123, 0.1595459, -1.1689453, -1.8955078, 1.3574219, 0.9355469, 4.9609375, 1.5849609, 1.3369141, -1.0800781, -0.5083008, 0.18322754, -1.1962891, -1.7431641, 0.06427002, -1.1298828, -0.390625, -0.19104004, -2.7597656, 0.006038666, -1.7900391, 0.24853516, -0.2631836, -1.1230469, 0.7607422, 1.2636719, -0.9848633, 0.28222656, -1.8193359, -1.6386719, 0.80810547, 1.3212891, -0.40673828, 0.703125, -0.4152832, 0.46362305, -0.91552734, 1.8740234, 0.05331421, -0.10235596, 2.5664062, -0.9355469, 1.4970703, 1.5585938, -3.6660156, 0.10668945, 2.6445312, 1.2363281, -0.92333984, -1.1298828, -1.5927734, -0.16479492, 1.3164062, 3.0976562, 1.828125, 2.15625, 1.2353516, 0.63964844, 0.18725586, 1.6503906, -1.5644531, -0.24377441, 0.35473633, 0.87158203, -2.3769531, -1.1396484, 0.41479492, 0.050354004, -2.9921875, -1.0048828, -0.45214844, 0.28930664, 1.0976562, 1.2988281, -2.4003906, -0.42944336, 1.4042969, 0.14465332, 0.8310547, -0.3022461, -0.7368164, 0.7270508, -1.4306641, 1.7666016, 1.9501953, 0.7446289, -0.6801758, 0.23120117, -0.10668945, 1.2285156, -0.33154297, 1.3457031, 0.40356445, -0.15600586, 1.3740234, 0.57470703, 0.14672852, -0.7036133, 0.06695557, -0.36254883, 0.19213867, -1.4501953, 0.39111328, 1.8427734, -0.5786133, -0.46264648, 0.50927734, -1.5830078, -0.6333008, -0.5800781, 1.2294922, -1.8740234, -2.1699219, 1.2480469, -3.2597656, -1.6689453, -0.7128906, 1.3320312, 0.1796875, -1.3154297, -0.18078613, 0.43286133, -0.58691406, -1.3623047, -1.0908203, -1.1826172, 0.26464844, 1.8974609, 0.62158203, -0.049041748, -1.0458984, 0.4152832, 1.1914062, 3.3164062, -0.57177734, -1.2441406, -1.2998047, -0.85253906, 2.0996094, -0.41235352, 0.66503906, 1.6523438, -2.0214844, 0.64941406, -1.96875, -0.50927734, 2.9570312, -2.7480469, 0.95214844, 1.7919922, 0.50878906, 2.4375, 0.09552002, 2.8164062, -2.8984375, -1.734375, 3, -1.5849609, -1.3339844, -1.5820312, -3.4296875, 0.4711914, -0.08648682, 0.1706543, 2.5527344, -0.18835449, 0.8173828, 1.6875, 0.24743652, -0.28076172, -2.8398438, -1.4238281, 0.18139648, -3.5742188, 0.32470703, 0.32958984, -1.2050781, -2.4414062, -0.7470703, -1.0224609, -0.6430664, -0.026779175, -1.7304688, 0.38842773, -0.39501953, -1.4775391, 1.5048828, -0.14697266, -0.032287598, 0.67089844, -0.15393066, -1.0175781, -1.5058594, 2.0898438, 1.0927734, 0.4255371, -0.19274902, 4.1914062, 0.45361328, 0.5732422, -0.07086182, -0.123168945, 0.8149414, 0.42333984, -2.8417969, -0.83740234, -3.8476562, -0.33618164, -0.44458008, -0.019042969, 1.5673828, -0.3022461, -0.5126953, 1.5029297, 0.7734375, 2.375, 2.0332031, -1.5654297, 2.4042969, 0.4074707, -0.17614746, -1.7363281, -1.2714844, -0.17590332, -0.11755371, -0.30249023, 0.67529297, -1.78125, -0.30566406, -1.2851562, 1.3300781, 0.6772461, 2.5449219, 1.9814453, 1.6074219, -1.5302734, -0.7578125, -0.7792969, -0.1586914, 1.4345703, 0.111450195, 0.33496094, -0.53222656, 1.8134766, 3.6269531, -2.0058594, -0.8017578, 0.10449219, -0.22924805, -0.43139648, -2.0957031, 0.75341797, -0.9111328, -1.0830078, -0.60058594, -1.6396484, 2.9394531, -0.7763672, 0.59033203, 1.7841797, -1.7744141, -1.1445312, 0.6040039, -0.28979492, 0.93847656, 2.2363281, -2.0058594, -0.29248047, -1.5400391, 1.5927734, 3.6503906, 2.0761719, -2.0351562, -0.44311523, 0.81884766, 0.085998535, -0.97998047, -0.83154297, 1.9052734, -1.2207031, 0.22277832, 4.2851562, 1.5693359, 0.328125, 0.54052734, 1.8330078, 1.0048828, 0.48266602, -2.0664062, -1.4960938, 1.4179688, -1.7529297, -3.3085938, -0.17346191, 0.6489258, -1.3466797, 3.3886719, -1.0283203, -0.9116211, -1.6748047, -3.3867188, -1.0322266, -0.7314453, 0.44189453, 2.7734375, -0.7548828, 2.0703125, -0.9711914, 1.5410156, 3.0664062, -0.6118164, 0.21594238, -0.076538086, -1.6777344, -0.46557617, 0.32592773, 0.068237305, -2.6914062, -3.1308594, 0.28564453, 0.40795898, 0.076416016, 1.3007812, 0.23022461, -1.8847656, 0.02015686, -2.9746094, 1.9960938, -3.7949219, -0.52978516, 0.32666016, 1.3056641, 0.72753906, -0.88720703, -1.0537109, -1.2744141, 0.3713379, -0.062316895, -0.8779297, 0.03704834, -1.1992188, -2.9082031, -4.4726562, -1.1357422, -0.8769531, 0.95166016, -0.6723633, -0.6459961, -0.38134766, 0.04446411, -1.4990234, 1.4599609, -0.7446289, -0.1430664, -1.5283203, 2.0371094, 0.18908691, 0.18029785, 0.2783203, 2.3339844, -0.39575195, 1.1376953, -1.1142578, -0.42529297, -3.9414062, -0.23364258, -1.8496094, 0.41357422, 0.88134766, 0.22399902, 0.5283203, 3.8261719, 1.8349609, -0.9580078, 0.8100586, 0.3479004, -1.5117188, 0.031921387, -2.1660156, 1.4238281, -0.26635742, -1.0507812, 0.08148193, -1.4824219, 1.4208984, 1.2958984, 0.42700195, 0.5800781, 0.7451172, 0.09069824, 0.7241211, 2.0605469, 0.85009766, 1.9335938, 1.6152344, 0.42236328, -1.0537109, -2.0898438, -2.5898438, 0.2286377, -1.9482422, -0.27075195, -0.084228516, 1.3769531, 1.3369141, 0.55126953, 2.3945312, 1.3027344, 2.5800781, -2.3496094, 0.34033203, -0.35913086, 1.9853516, 2.3554688, -1.4804688, -3.7324219, -3.1132812, -1.4658203, 3.4355469, -0.046661377, -0.46826172, -1.3613281, -0.9633789, -0.47973633, -0.3708496, 3.0449219, 1.6396484, 1.9091797, -0.34399414, 2.4199219, 0.84277344, 0.0340271, -1.4648438, -0.017349243, 2.8164062, -0.7050781, 1.8125, 0.8930664, -0.30029297, -0.15686035, 1.1699219, -0.21105957, -0.2043457, -1.8623047, 1.3857422, -3.0214844, 1.8544922, 0.5107422, -0.41577148, -1.1992188, 0.88134766, 2.1015625, 0.045715332, 1.8408203, 1.9882812, 0.09655762, -1.03125, 1.3916016, 0.34814453, -1.5244141, -0.7939453, 0.8852539, -0.20825195, 1.6220703, -0.06591797, 3.7265625, -0.25073242, 2.1269531, 1.0419922, 0.80810547, -0.7578125, 1.9033203, 3.3085938, 1.5371094, 3.9472656, 0.5239258, 1.1806641, 0.98876953, 1.8847656, 1.1083984, -3.9082031, 1.2050781, 1.6904297, 0.8833008, -0.8574219, -0.89746094, 0.06774902, 2.2089844, 0.34472656, -0.44555664, 0.36328125, -0.4650879, -0.6972656, 0.0541687, 0.74316406, 1.7089844, -2.0019531, 1.6806641, -1.6181641, 0.72998047, 0.546875, -1.2138672, 0.5786133, -1.4736328, 0.76123047, 0.44873047, -0.4831543, 1.3466797, -2.1621094, -1.2119141, 0.2487793, -2.6328125, -1.5966797, -0.57128906, 0.9550781, 0.79541016, -0.52685547, -0.72509766, 2.8027344, 0.07952881, 0.65185547, 0.8901367, 0.3166504, 0.3244629, 1.3066406, 1.7138672, -1.5537109, 1.5029297, 1.4101562, 0.7216797, -2.78125, 0.84228516, -0.3630371, -0.6660156, 0.1005249, -1.9697266, 0.8979492, -0.0158844, -0.012863159, -1.6982422, -0.0049552917, 1.9121094, -2.2265625, 0.5449219, 0.15515137, -0.7211914, 4.2421875, -0.9194336, 0.37524414, 0.9794922, -1.0292969, 2.0234375, -1.3701172, 0.6621094, -1.2392578, 0.91259766, -0.93408203, 2.7441406, -0.72753906, -0.62841797, 0.93896484, 2.1367188, 1.0078125, 1.1503906, 1.5292969, -1.6210938, 3.0039062, -0.07305908, -1.9414062, -0.91503906, -2.2539062, -1.2392578, 0.98291016, 0.6245117, -1.2001953, -0.80908203, 0.31201172, 1.4267578, -2.0097656, 1.6669922, 1.984375, -0.74072266, -0.5859375, -1.296875, -0.38134766, -0.80029297, 0.6176758, 1.4677734, -0.03640747, -0.96728516, 0.24023438, 1.5751953, -1.0996094, -0.859375, -0.56103516, -0.47558594, -0.97509766, -0.5024414, 0.53759766, -0.7158203, 0.46435547, -0.85595703, -2.2871094, 0.62841797, 1.1162109, 1.0556641, -0.34887695, -1.7724609, -0.82714844, -1.1220703, 1.5302734, -0.7680664, 0.70996094, 2.5117188, -0.49853516, 0.6308594, -4.0390625, -3.3066406, -2.1835938, -0.3330078, 1.3144531, 0.23327637, 0.085754395, 0.6225586, 1.5058594, 2.7949219, -2.0957031, 0.609375, 0.7480469, -0.5756836, 0.12200928, 0.75683594, 0.5942383, 1.0146484, -0.3269043, -0.34423828, 1.6904297, -0.5239258, 2.1113281, 2.3789062, 1.5361328, -0.7993164, -0.91259766, -1.3583984, -1.1416016, -0.28881836, -0.19055176, 0.01576233, 1.4355469, 0.3322754, -0.59228516, -3.9492188, -1.3916016]}, "B096VKRVW5": {"id": "B096VKRVW5", "original": "Brand: GCBSAEQ\nName: GCBSAEQ \u200b1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8\" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part\nDescription: Product specifications
          Type: 1LB Propane Tank Regulator
          Connection 1: 1LB female connector (1\" x 20 female throwaway cylinder thread)
          Connection 2: 3/8\" Male flare connector(5/8\"-18UNF Thread)
          Material: Brass
          Package: 1 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.
          Easy to install
          1LB propane regulator to 3/8\" male flare adapter is convenient and quick to install, just need to rotate manually.
          Safe to use
          1LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.
          Applicable scene
          1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
          Material
          1LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
          Note
          1. Please check your connector before ordering.
          2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
          3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don't use it.
          4.Propane elbow fitting adapter is only suitable for Blackstone 17\" and 22\" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
          \nFeatures: \u2605\u3010Package\u30111 x 1LB propane regulator to 3/8\" male flare adapter , 1 x thread seal tape.\n\u2605\u3010Safe to use\u30111LB propane tank cansiter regulator adapter connection convert to 3/8\" flare can be safely connected and prevent leakage and prevent leaks.\n\u2605\u3010Applicable scene\u30111LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8\" extension hose\u2018s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.\n\u2605\u3010Notice\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder.\n\u2605\u3010Quality Assurance\u30111LB propane camp grill stove regulator connection to 3/8\" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.\n", "embedding": [-0.033233643, 1.7294922, 1.4179688, 1.9541016, -1.7871094, -0.4567871, 2.140625, -1.6572266, 1.3798828, 1.7275391, 2.6933594, -0.092285156, 0.94384766, -2.9765625, 2.1640625, 2.453125, 1.546875, -0.60498047, 1.3388672, 0.8071289, 2.2890625, 0.18823242, 1.6933594, -0.6254883, 1.7421875, -0.48095703, 3.0996094, -3.1542969, -0.64697266, -0.7236328, 0.8364258, -1.3427734, -0.5571289, 1.4541016, -3.1835938, -0.6113281, -0.63183594, 0.41235352, -4.5507812, -1.5048828, -1.8994141, 1.4833984, 4.0273438, 0.22253418, -2.359375, 0.089538574, 1.9667969, 0.7636719, 0.2763672, -0.91015625, 0.45898438, 2.2832031, 1.1064453, -0.5180664, -2.2753906, 0.43652344, -0.24829102, -2.7636719, 1.2304688, 0.6176758, 3.4863281, 0.9526367, -2.8105469, 2.2402344, -1.0429688, 0.2770996, -0.9067383, -0.89453125, -0.30029297, 0.71435547, 0.2680664, 0.9140625, -0.046691895, -1.8398438, -0.5073242, 0.19580078, -4.1367188, -0.4482422, 2.140625, 0.3088379, -2.9453125, 3.0742188, 1.9121094, -1.515625, 0.3100586, -0.6298828, -1.5576172, 2.0078125, 1.9804688, 0.6279297, -2.2148438, 1.703125, -3.1933594, -3.4140625, 0.4580078, -0.09033203, 1.2021484, 1.2460938, 2.3125, 1.2109375, -1.4658203, -0.103637695, -1.1708984, 1.8515625, -2.3320312, 0.44726562, 1.2070312, 1.5078125, -2.4511719, 0.62939453, 0.17993164, -0.2434082, 2.953125, -1.0576172, -0.13171387, -1.2539062, -1.6777344, -1.4931641, 2.5527344, -0.076171875, 4.3476562, 1.15625, 0.8828125, -1.2568359, -0.15893555, 0.28515625, -1.1796875, 0.52246094, 3.4921875, -0.7216797, -0.15844727, -1.6347656, 2.2167969, -1.9101562, -1.4335938, -3.2382812, -1.1083984, -1.3076172, -2.1035156, -0.89453125, -4.921875, 0.72558594, 1.7900391, -0.6645508, -4.3867188, 0.17407227, -2.8691406, 0.9501953, 0.4741211, -2.7539062, 0.87402344, -2.1074219, -0.124816895, -0.83740234, 1.8359375, 1.2373047, -0.89697266, -0.4091797, 2.578125, 0.41430664, 0.3310547, -2.4707031, -2.2089844, 2.1660156, -0.7993164, -2.3359375, 0.41210938, 1.3730469, -1.4599609, 0.83203125, 1.1923828, -2.7675781, 0.42456055, 0.0803833, 0.59521484, -0.8149414, 0.19470215, 1.453125, 1.6601562, -0.7495117, -2.515625, -2.7265625, 0.68310547, -1.5546875, 1.1630859, -0.6953125, -2.2871094, -1.4023438, 1.0273438, -1.6582031, -2.6015625, 1.5722656, 0.6660156, 0.38720703, 0.79541016, -2.1542969, -1.9277344, -0.2861328, -0.9033203, 2.0527344, -1.5234375, -0.84716797, 1.0996094, 1.875, -2.4472656, -0.7841797, 1.1474609, -1.2333984, 1.4960938, 3.4160156, -0.8613281, 0.57666016, 2.1621094, 0.3347168, -1.0078125, -1.7861328, 2.5039062, 2.1425781, 1.7216797, 0.24841309, -0.29785156, -0.58984375, 1.7226562, 1.5048828, 3.2070312, 0.45654297, 0.11682129, 0.93408203, -2.3632812, -0.16589355, 2.1269531, 1.90625, -2.1660156, 0.5966797, 0.44921875, 3.1210938, 0.28808594, -0.96972656, 1.2138672, -0.30419922, 0.56152344, -0.32861328, 0.49243164, -0.5957031, -1.2822266, 0.3317871, -0.9951172, 1.4619141, 3.3984375, -1.8935547, 0.20153809, -0.11932373, -1.6962891, -0.453125, -2.6582031, -0.002937317, -0.07232666, 0.9140625, -1.2490234, -1.7626953, 2.078125, 0.5800781, 0.7680664, 1.2890625, 1.6660156, 1.0703125, 1.3964844, -0.94921875, -2.296875, 1.6708984, 0.7734375, 2.4316406, 2.5605469, 0.14135742, 0.9033203, 0.15405273, -1.2060547, 2.3183594, -0.03829956, 0.76904297, 0.6044922, -1.875, 2.5390625, -2.5488281, 0.62158203, 1.4511719, 1.6923828, -0.3190918, -1.9121094, 1.5761719, 4.7148438, -1.8984375, -1.4794922, 2.5878906, 0.39941406, 0.4946289, 0.6982422, -0.2619629, -0.021209717, -0.26879883, 0.45263672, 0.82958984, 0.16491699, 1.109375, 1.7451172, -0.68310547, 0.31323242, -1.6914062, 0.5864258, 2.0722656, -0.41674805, 0.28857422, -1.2744141, 1.1640625, -0.5332031, -1.140625, 2.2832031, -1.84375, -0.10949707, 2.7558594, 0.18579102, 1.2041016, 0.69873047, -1.3974609, -0.97753906, 0.78515625, -2.0859375, 1.8984375, 1.3251953, -0.06652832, 0.59765625, -0.86083984, 1.2929688, -1.0947266, -2.1445312, 0.3557129, -0.101257324, -3.2226562, -0.59033203, -1.8417969, -1.5732422, 0.0025806427, 0.4321289, 2.875, 0.075683594, 0.11767578, 0.18457031, 0.49560547, 1.0664062, -0.53027344, -0.2536621, 2.7285156, -0.7597656, -2.5527344, 0.8886719, -1.0849609, 1.6113281, 0.9140625, -0.9916992, 1.3320312, -0.18395996, 1.5986328, -0.66796875, 0.8076172, 0.23046875, -2.671875, 1.6210938, -2.9355469, -1.109375, -2.2226562, 1.3388672, -1.8701172, 0.55371094, -1.4023438, -0.8520508, 0.12548828, -1.2070312, 1.5556641, -0.18261719, 0.83740234, -1.5117188, 1.4306641, 0.46850586, -1.0703125, -3.8867188, -1.8789062, -0.0018796921, -0.8066406, -2.5957031, -4.2851562, -1.2744141, -0.47314453, 0.5102539, -1.7451172, -0.041290283, -0.18811035, 0.2915039, 0.6425781, 0.6699219, 0.24475098, 0.61035156, 1.1826172, -3.2050781, 0.06762695, 0.25341797, -1.0771484, -0.5961914, -0.3149414, 0.89941406, -0.40649414, -0.9873047, 0.2927246, 0.73535156, 0.99365234, -0.9667969, -2.7304688, 0.7207031, 1.8027344, -1.3203125, 1.9482422, -0.80322266, -0.39794922, -4.078125, -1.4140625, 1.8769531, 1.5800781, 4.2773438, 0.60791016, 0.75, -0.2052002, -0.51123047, -1.6669922, -1.6103516, -1.0810547, 5.2382812, -2.4023438, -1.6542969, -0.67578125, 1.8271484, -3.7949219, 0.60009766, 0.5341797, 0.20666504, 2.4765625, 1.1923828, 1.53125, -0.45043945, 0.009254456, -0.9326172, 1.0673828, 1.1689453, 1.7841797, -0.5078125, 0.03564453, -0.70654297, 0.7890625, 0.7963867, 1.0605469, 0.47460938, 2.7304688, 0.18310547, -3.2890625, 1.1015625, -2.0058594, 1.0703125, 0.79052734, 1.5302734, -1.3388672, -0.44458008, -1.2636719, 0.56396484, 1.9550781, -2.0058594, -0.94384766, 2.0507812, 1.7412109, -1.1230469, 0.008834839, -0.81640625, -0.9589844, -0.9321289, 0.11126709, 0.74121094, 1.1767578, 0.47998047, -0.47973633, 0.19152832, -2.21875, 2.6796875, -1.9746094, -0.4206543, -0.83496094, -0.9067383, -1.1220703, -1.9960938, -1.0507812, -1.7578125, -0.6894531, 3.9101562, 0.89990234, -2.4335938, 0.56884766, -0.42407227, 1.9677734, 0.8378906, -1.0888672, -1.3466797, -1.0322266, -0.9296875, -1.4082031, -0.110961914, 1.7597656, 0.7182617, -2.5585938, 0.0043640137, -0.8100586, 1.0791016, -0.044677734, -0.5263672, -1.9462891, 0.101745605, -0.5053711, 1.5625, -2.4765625, 2.6738281, -0.8051758, -0.34399414, 2.0351562, -3.2714844, 0.15515137, -2.4804688, -5.2226562, 1.1894531, -1.9726562, 1.2099609, 2.6699219, 0.8520508, -0.3540039, 1.6318359, 2.6289062, -3.3808594, 0.15942383, -2.6757812, 1.3251953, -2.9550781, -0.7885742, 1.8701172, 2.0800781, -2.109375, -2.5957031, 1.2041016, -2.7597656, -1.0605469, 0.08325195, -1.3291016, 0.9008789, -0.42114258, 0.37768555, -1.0996094, -1.1337891, 1.2177734, -0.55322266, -1.4072266, -3.1425781, 2.4355469, 0.48754883, 0.32177734, -0.79003906, 2.0996094, 4.2148438, -2.2050781, -0.4423828, 1.2207031, 2.8203125, -0.6020508, -1.4023438, -1.4423828, -1.0595703, -0.33081055, 0.84521484, -1.2363281, -0.4560547, -1.8730469, 1.6357422, 0.0071411133, 3.0117188, 1.6142578, -0.828125, -2.8261719, 0.9995117, 0.3479004, -0.6801758, -0.9794922, 0.60791016, -1.4873047, -1.6972656, 1.0068359, -2.3222656, 0.009536743, -0.9003906, -0.64453125, -2.2050781, 1.9228516, 0.066101074, 2.3203125, 0.6694336, -0.7949219, -1.1621094, 1.0175781, 0.6147461, -1.3808594, 1.1162109, -0.73339844, -2.2128906, 1.7587891, 1.5107422, 0.7314453, -1.2773438, 1.0820312, -1.0019531, -1.4892578, 0.7050781, 0.16027832, -1.4775391, 0.13256836, -0.6567383, -1.4794922, 3.8417969, -2.9179688, 0.5185547, 0.6845703, 0.14245605, -1.7167969, 2, 2.3476562, 1.1611328, 1.0283203, 1.2861328, 2.3261719, 1.8359375, 2.0234375, 0.54345703, 0.7553711, -2.546875, -0.11920166, 0.27685547, 0.72216797, -0.09893799, 0.4182129, 1.5996094, 2.0019531, 1.8427734, 1.6757812, 3.1191406, -1.8730469, 3.1445312, -0.19934082, -2.0273438, -1.453125, -0.14379883, -2.0761719, 3.6777344, -0.51904297, -2.4433594, 0.4194336, 3.3671875, -0.16357422, 1.5478516, 1.0839844, -0.83691406, -0.21606445, -3.9003906, -0.71875, -2.1953125, -0.6171875, 0.6875, 0.2055664, 1.0439453, 1.1455078, 2.0234375, 3.265625, 1.5458984, -1.4794922, 0.39282227, -1.2988281, -0.28125, -1.9150391, -1.6396484, -2.2441406, -0.6928711, 1.3095703, 1.8261719, 2.5683594, 0.06347656, 0.36523438, -1.9892578, -2.1484375, -0.43725586, 1.1025391, 0.08532715, -0.45898438, 2.8789062, -0.21594238, 1.0107422, -1.9179688, -0.31860352, 0.06530762, -0.2680664, 0.5708008, 0.7866211, -2.3691406, 0.29785156, -3.0585938, -6.1601562, -0.32714844, 1.1425781, 0.4963379, 0.5605469, -1.140625, -1.0380859, -0.06896973, -0.71240234, -1.1884766, -3.6015625, 1.7246094, -0.71777344, -0.2565918, -0.35961914, 0.16638184, 0.45239258, 1.2255859, -0.3630371, 0.5029297, -0.21801758, -3.3378906, -2.0019531, 1.5322266, -2.4765625, -0.89160156, 0.37890625, -0.7192383, -0.38793945, 2.0410156, 1.6914062, -2.2421875, 1.8339844, -2.4316406, 1.0458984, -0.17993164, -0.8959961, 1.2724609, 1.3320312, -0.19873047, 1.296875, 2.0117188, 2.3261719, -1.3564453, 0.20263672, 0.5996094, 0.8251953, 0.20227051, -0.5185547, 0.91748047, -0.17297363, 1.2304688, 2.3125, -1.0878906, -1.2441406, -2.7382812, -0.81591797, -0.14794922, -1.9560547, 2.3164062, -0.4909668, 1.3125, 1.3105469, -0.22216797, 0.31689453, -0.74121094, -0.24230957, 0.14550781, 1.2900391, -1.6152344, 2.546875, -0.12213135, -1.3476562, -3.2265625, -2.1347656, 2.2578125, 1.7050781, -1.078125, 0.13745117, 0.5341797, -1.1738281, 1.7431641, -0.8691406, 1.4316406, 2.5214844, 0.26416016, -1.1298828, 0.6743164, 3.0585938, -2.65625, 0.93603516, 2.2597656, -1.6513672, -0.5888672, 0.93603516, 0.2680664, -2.7226562, 1.0908203, -1.7822266, -0.2800293, -1.7226562, -0.9121094, -0.054840088, -2.7285156, 0.7402344, -0.39892578, -2.6660156, -2.8945312, 2.7304688, -0.2734375, 0.3083496, 1.4130859, 3.1699219, -1.8457031, -0.82177734, 1.4023438, 0.101623535, -1.6181641, -0.9892578, -1.2861328, 0.14794922, 1.0986328, -2.5683594, 0.8774414, 1.0302734, 0.71435547, 1.0351562, 0.64160156, 1.2519531, 2.1210938, 0.7524414, 1.9814453, 2.4570312, 0.6357422, 2.9121094, 0.4567871, 2.6347656, 1.5800781, -0.6088867, 1.078125, 1.1826172, 0.19067383, 0.6040039, -2.2695312, 0.40039062, -1.2158203, -0.25219727, 0.984375, 0.453125, 2.4589844, -5.0507812, 0.9086914, -1.2373047, 0.72753906, -1.4375, 0.4855957, -0.0496521, -0.21850586, -0.2331543, 0.9267578, 1.3183594, 0.86572266, -0.7963867, -0.19714355, 0.78515625, 2.6660156, -0.47314453, -0.10992432, -2.4902344, -1.6435547, 0.3071289, 2.5800781, 0.68115234, 0.77783203, -0.17211914, 2.7480469, -1.6708984, -0.9873047, 1.6484375, -0.9667969, -0.40112305, -1.0390625, 2.8203125, 1.8115234, -1.6337891, 2.4160156, -0.82421875, -2.4902344, -3.9980469, 2.7558594, -0.1026001, 0.2614746, 0.36547852, -3.484375, 1.4980469, -0.9863281, 1.4140625, -3.6621094, 0.8857422, -0.19702148, -2.2480469, 0.64160156, 1.0927734, -1.1191406, 2.1992188, 0.8461914, -3.4335938, -0.6152344, 2.5527344, 1.0009766, -0.21142578, 0.4020996, 1.1884766, 0.13330078, -0.8442383, 2.6875, 0.5019531, -1.2441406, -0.16088867, 3.4804688, 1.3427734, 1.4375, -0.044067383, -0.7705078, 1.2138672, 1.2080078, -0.69873047, 0.6254883, -2.859375, 0.23986816, -0.055664062, -0.82177734, 0.07800293, -0.27270508, 1.2275391, 1.4365234, -1.4873047, -0.7944336, 0.41796875, -2.4257812, 1.7919922, 1.7578125, -1.5898438, -0.9980469, -0.037597656, 0.41064453, -2.6738281, 0.7207031, 0.2322998, 0.3083496, 1.0576172, -1.9462891, 0.63427734, -0.023590088, 0.11987305, -1.6201172, -1.2138672, -1.1894531, -1.3867188, -0.43432617, -1.8623047, 0.5102539, 1.5263672, 1.1962891, 0.15112305, -0.98779297, -0.8227539, -0.18603516, -2.7148438, -0.22717285, 0.76953125, 2.2539062, 1.8417969, 1.7275391, -1.0976562, -2.6152344, -0.59716797, -1.7890625, 2.9101562, 0.6279297, -1.84375, 0.8261719, 1.0429688, 1.3544922, -2.015625, -1.6367188, 0.27148438, 0.5541992, 1.4121094, -0.9848633, 1.2392578, 0.64501953, 1.0380859, 1.4335938, 3.8105469, 1.7636719, -0.6484375, 0.6586914, 1.2119141, 1.5498047, -0.48901367, 1.7558594, 0.85253906, 0.484375, 0.24401855, 2.4746094, 2.6386719, 0.15917969, -0.9379883, -1.8134766, 0.6269531]}, "B004KH4LAE": {"id": "B004KH4LAE", "original": "Brand: Hiland\nName: Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze\nDescription: \nFeatures: Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included\nPatio heater dimensions: 21.5\" W x 21\" D x 91\" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top \u2013 36\u201d/91.4cm. Side \u2013 24\u201d/60.9 cm\nIncludes a reliable igniter and a Safety auto shut off tilt valve\nUses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU\nThe latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction\n", "embedding": [-0.8925781, 1.0332031, 1.3974609, -0.78515625, -1.0263672, 1.3417969, 0.99609375, -1.5214844, 0.36572266, 2.90625, 1.0087891, -0.6826172, -0.31591797, -2.7226562, 1.1191406, -1.515625, 2.2617188, 0.42407227, 1.9580078, 0.83984375, 2.6621094, 0.17834473, 0.9633789, -1.3408203, 1.3203125, 0.8535156, 2.9785156, -3.1152344, 0.27905273, -0.21557617, -0.035705566, 1.4267578, 0.07299805, 3.3984375, -1.6679688, -2.7539062, -0.6464844, 1.2148438, -4.5351562, -0.49682617, -3.2265625, -0.50878906, 0.65234375, 1.90625, -0.08123779, 0.6435547, 1.4033203, 1.2998047, 0.26049805, 1.5537109, -0.37426758, -0.1875, -0.92822266, 0.7167969, -0.5810547, 1.1982422, -0.9555664, -2.1601562, 1.5166016, -0.21191406, -1.1806641, -1.5068359, -2.2441406, 1.4023438, -0.23352051, 1.40625, -1.2724609, -1.0556641, -1.7626953, -0.35717773, 1.4941406, -0.56933594, -0.26953125, 0.103027344, 0.38354492, -1.7626953, -1.8496094, 0.5966797, 4.109375, -0.11224365, 0.13623047, 0.26586914, 0.71777344, 1.2958984, -2.21875, -0.0067214966, -0.21777344, -0.21362305, 0.57373047, 1.9384766, 0.3930664, 1.4658203, -1.1523438, -2.4160156, -0.31396484, -2.5039062, 0.47216797, 0.39990234, -2.1484375, 0.7495117, 0.14428711, -0.6904297, -0.5913086, -0.8881836, -0.52734375, 0.030441284, 2.6542969, 0.097839355, 0.23498535, 1.3740234, -1.5195312, 0.52734375, 2.3769531, -0.34423828, -1.8564453, -0.27124023, 1.1611328, 2.0898438, 3.7460938, 3.171875, 2.5449219, -0.15759277, 1.0517578, -1.9912109, -0.119628906, 0.6074219, 0.51708984, -1.6103516, 1.65625, -1.7324219, 2.0253906, 0.123535156, 0.5488281, -0.07733154, -0.4350586, -0.9614258, -1.1103516, 2.1425781, -3.8261719, -0.57910156, -0.7006836, 1.0908203, 0.8388672, 0.48583984, -4.7226562, -0.73046875, -1.3798828, 2.4375, -1.9921875, -0.5722656, 1.2412109, -0.5307617, 1.0224609, -2.1738281, 0.055389404, -0.041168213, 1.8974609, -1.6298828, 3.2539062, 1.5009766, 1.6914062, 1.6103516, -2.2382812, -0.26733398, -0.45361328, -0.09869385, 1.5380859, 1.9101562, 0.9604492, 2.59375, -0.19250488, -1.5820312, -1.2041016, 0.34594727, 0.86816406, -1.4609375, -1.3535156, -0.5449219, -0.74072266, -0.018859863, -3.2363281, -1.0332031, -0.038879395, -0.36645508, 0.49926758, -1.2441406, -2.7851562, -3.4882812, 0.46533203, -0.3564453, 0.50439453, 0.41381836, 0.8232422, -0.64990234, -2.59375, -1.7246094, -3.1464844, -2.7207031, 2.4492188, -1.4365234, -0.53564453, -1.2880859, -0.640625, -1.0166016, -3.0800781, -1.7958984, 0.6542969, -1.9677734, 1.1914062, 1.9990234, 0.6064453, 0.37280273, 0.9975586, -1.1865234, 0.6401367, -1.7929688, 2.515625, 0.9741211, 0.6176758, 1.9199219, 0.6166992, 1.3359375, -2.7324219, 1.1542969, -0.7192383, 0.79052734, 3.171875, -0.8022461, -2.7207031, -0.50341797, 2.0195312, 1.7070312, -0.037841797, 0.9038086, -0.7207031, 3.9082031, 0.60009766, 0.4555664, 1.5996094, -0.46704102, 0.23950195, -0.26464844, -0.10900879, -1.0869141, -0.40698242, 2.1015625, 0.36938477, 0.74365234, 1.3535156, -0.18017578, -0.7939453, 0.068237305, 1.5996094, -0.86376953, -0.7338867, 0.21362305, -1.015625, 1.7900391, 1.1464844, -3.2441406, 2.1796875, -0.7524414, 0.15185547, 0.9003906, -0.47314453, -0.6411133, 2.0117188, 1.1962891, -2.4902344, 1.8740234, -0.7192383, 0.92285156, 1.3710938, -0.78759766, 2.0175781, 1.7666016, -1.3935547, 3.109375, -0.5830078, 1.1513672, 2.5058594, 1.2001953, 1.4804688, -2.3808594, -1.1015625, 0.1973877, 1.0224609, 0.58740234, -1.4980469, 0.22583008, 3.1289062, -0.8857422, -1.0996094, 1.0400391, 0.16113281, 1.4433594, 2.1523438, -1.7402344, -1.1962891, -2.6035156, 1.9355469, 1.0957031, -0.20544434, 0.37670898, -2.3164062, -0.26464844, 1.3388672, -1.765625, 1.3369141, 0.28955078, 0.29296875, -1.1162109, -3.9257812, -0.61816406, -3.2441406, -0.1673584, 4.1132812, -2.9804688, 1.1152344, -1.0556641, -0.75683594, -1.1103516, -0.31079102, -1.8291016, 0.4182129, 0.9194336, -0.47924805, 1.9140625, -0.22375488, -0.30444336, -1.2490234, -2.5546875, 0.81103516, -2.7441406, -2.8691406, -0.2927246, -2.1289062, -0.6401367, 2.0585938, -2.9257812, 0.44213867, 1.953125, 0.0791626, 2.484375, -0.9951172, -1.4160156, 0.7998047, 0.6489258, 0.4091797, 0.53759766, 0.19494629, 0.8432617, -2.5253906, -3.921875, -1.2578125, 2.0195312, -0.5307617, 0.5727539, -0.7988281, -1.0703125, -0.042877197, 0.055908203, 0.265625, -1.0615234, 1.0371094, -0.12420654, 0.09222412, -6.1328125, 1.7119141, -2.1835938, 1.7851562, -2.1074219, 0.31420898, -1.0078125, -1.3681641, 3.3613281, 0.5336914, 4.0234375, 1.3925781, 1.8251953, -0.64208984, 0.52197266, 1.5107422, -1.1259766, -2.5058594, -0.5932617, -0.89941406, -1.6113281, -1.7929688, -3.5097656, 0.7011719, -2.1191406, -0.8276367, 1.0517578, -1.5126953, -0.32641602, 0.25854492, -2.0683594, -0.7216797, -1.6318359, -1.2802734, 0.41577148, 2.5625, -1.7001953, 0.45776367, -2.3378906, -1.8017578, -0.36743164, 1.6621094, 1.5195312, 0.8598633, 2.2597656, -1.0224609, 1.9736328, -0.32885742, -4.9414062, 3.0449219, 4.8046875, -1.0195312, 0.65771484, -1.9941406, -2.2558594, -1.6162109, -0.80615234, 2.9882812, 1.7109375, 1.2978516, -1.1865234, 0.95947266, 0.5258789, 1.1875, -0.5395508, 0.18713379, -1.7597656, 2.3964844, -2.5195312, -1.8007812, 1.7363281, 2.4042969, -3.3417969, -2.3808594, 1.421875, 0.095825195, 2.4414062, 0.46362305, -0.7207031, 0.5917969, 2.4003906, 2.140625, 1.3789062, 0.47558594, -0.08905029, -1.8691406, 0.55322266, 1.0898438, 2.3242188, 0.22265625, 0.94189453, 1.3369141, 0.5253906, 0.48217773, -3.1328125, 1.2763672, -0.8979492, 2.1054688, -0.32788086, 3.6796875, -1.5214844, 1.0292969, 2.3554688, 1.1220703, -0.92822266, -2.1503906, -1.6591797, 1.8203125, 2.3125, -1.8662109, -0.66064453, -0.23486328, -0.34887695, -0.7573242, -0.29785156, -1.1767578, -0.38916016, 0.29296875, -0.79052734, 0.2154541, -0.43115234, 2.3828125, -0.7475586, -1.6376953, 0.8076172, 0.32543945, -0.13635254, -1.0205078, -1.7841797, -1.8574219, 0.43530273, 3.9726562, -1.0908203, -0.75878906, -1.2441406, -1.9101562, 1.7275391, -0.78222656, -0.17138672, -0.86328125, 0.08538818, -0.18029785, 1.0634766, -0.8510742, 0.8588867, 0.16711426, -1.7197266, -0.013420105, -1.3779297, -0.48510742, 2.7558594, -1.9941406, -0.9423828, 2.6074219, -0.47851562, 2.4160156, -0.6411133, 4.4453125, -1.6533203, -1.9912109, 1.1318359, 0.13977051, 0.20776367, -3, -5.8164062, 0.54052734, -3.5175781, -0.18139648, 2.484375, -0.4963379, 1.0263672, -1.1982422, 1.1757812, -3.859375, -2.2675781, -2.484375, -1.4853516, -3.1777344, 0.40795898, -0.07659912, -0.24072266, -2.1816406, -3.0117188, 1.6425781, -0.9042969, 0.44628906, 0.8955078, -0.8925781, 0.41577148, -1.0644531, 0.46020508, -0.42773438, 1.2529297, -1.8046875, -0.5332031, -0.34350586, -0.49975586, 5.0273438, -0.33007812, 0.2836914, 1.4628906, 4.8320312, 1.3212891, -0.7866211, 0.4099121, 1.2871094, 4.28125, -0.028884888, -2.71875, -0.20495605, -0.3017578, -0.25976562, -0.8222656, -0.11785889, 0.52197266, -1.6621094, 1.84375, 0.6435547, 0.025436401, 1.2089844, 0.92822266, -2.6660156, 1.46875, 1.1914062, -2.8808594, -2.5253906, -0.9560547, -2.1757812, -1.7509766, 1.5556641, -2.1484375, 1.0927734, -3.0195312, 0.9848633, -1.5351562, 1.2558594, 2.875, 3.578125, 1.8720703, -2.2636719, -0.97753906, -1.296875, -1.6806641, 0.118896484, 0.8046875, -0.18334961, -0.8984375, 2.0605469, 1.1074219, -1.9267578, 0.5864258, 2.2773438, -0.9350586, 0.42163086, -0.23498535, -1.6777344, -2.3867188, -2.2070312, 1.4453125, 0.14660645, 1.5029297, -2.3203125, -0.6386719, 0.3232422, -1.3808594, -2.2304688, 0.27612305, -1.3789062, 0.6855469, 1.7333984, 1.0517578, 1.1015625, -1.6748047, 0.33081055, -0.7416992, 2.8398438, -2.3925781, 0.12286377, -0.5131836, 0.34301758, -0.23828125, 0.9111328, 1.6835938, 0.19238281, 0.84814453, 2.2011719, 2.609375, -0.1907959, 1.5166016, 1.0214844, -1.1376953, 1.1582031, 1.3867188, -0.24267578, 2.4609375, -0.7714844, -2.3574219, -0.56640625, 3.7890625, 0.5854492, 1.9003906, 1.1669922, -2.1796875, -0.55908203, -2.0957031, -1.7431641, -1.4101562, 0.6894531, 0.38061523, -1.0664062, 0.4975586, -0.6635742, 3.8867188, 1.6757812, -1.4453125, -0.07324219, 1.3066406, -0.62158203, -0.35742188, 1.8339844, -0.4013672, -1.8066406, -0.69628906, -0.7919922, 0.3701172, 0.82910156, 3.0039062, 1.0410156, -1.3730469, 0.29492188, -1.9130859, 2.8085938, -3.2539062, 0.43701172, 1.4892578, -0.53515625, -0.8979492, -2.5820312, -1.7587891, -1.8212891, 0.01727295, -0.21691895, 0.2409668, 0.42211914, -1.3222656, -2.1699219, -3.015625, -1.078125, -0.86816406, -1.7910156, 0.8540039, -0.035949707, -3.1757812, -1.2490234, 0.22192383, 0.15136719, 1.1357422, 1.1513672, -1.8603516, 0.18920898, -0.3605957, -0.0030593872, 0.13574219, 1.3642578, -0.8334961, -0.9741211, -0.2692871, -2.2421875, -3.0136719, 1.6953125, 0.018661499, 2.4609375, -0.9472656, -0.93847656, 1.6103516, 2.8046875, 0.44213867, -1.5556641, 2.0722656, 0.6694336, 0.91845703, 3.0527344, -1.1621094, 2.2675781, -0.26733398, -2.2148438, -0.79003906, 2.9980469, 0.95214844, -0.1104126, 1.421875, -0.3876953, 1.2451172, -0.3581543, 0.4321289, -0.15124512, 0.13928223, 4, 1.0351562, -0.8149414, -1.28125, -2.3808594, -1.9189453, -1.8701172, -2.8398438, -1.6669922, 0.019134521, 2.4863281, 1.2841797, -0.14489746, -0.26489258, 1.4970703, -0.18530273, -2.2285156, 0.7006836, 0.06262207, 2.2441406, 0.42138672, -1.9228516, -4.4921875, -1.3535156, 1.2109375, 1.3496094, 0.3413086, -1.2714844, -1.234375, -1.9335938, 0.080322266, -0.28320312, 1.6474609, 1.9003906, 0.6723633, -3.1015625, 2.8242188, 2.6601562, 0.12237549, 1.0458984, 0.12445068, 3.0449219, -1.0771484, 2.6425781, 1.3798828, -0.4116211, 0.07165527, 0.028640747, 2.2753906, -0.7011719, -1.0693359, 2.1171875, -2.7753906, 0.4921875, 0.5698242, -1.5830078, -2.7324219, 0.39916992, 0.7583008, 0.061309814, 1.8007812, 1.2128906, 2.0351562, 0.17810059, 2.6816406, 0.75927734, -0.6455078, -0.8823242, -0.7416992, 0.36767578, 1.3164062, -0.5126953, 1.6787109, 0.20251465, 1.1914062, -0.6166992, 1.0644531, -0.53125, 1.515625, 3.1113281, 2.0136719, 1.8085938, 0.44555664, 0.02861023, 0.6176758, 1.0332031, 0.30688477, -2.5664062, -0.12683105, 1.6289062, 2.8125, 0.5317383, 0.35058594, 0.046691895, 0.17236328, -1.9931641, -2.515625, 0.047973633, 1.3955078, -0.16601562, 0.33251953, -0.35546875, 0.33422852, -1.6152344, 1.4101562, -0.3046875, 1.8320312, -0.3305664, -1.3808594, 3.4160156, 1.8320312, -0.2619629, -0.030288696, 0.56689453, 1.4404297, -2.1875, 0.9667969, 1.1152344, -2.1191406, -0.97314453, 1.2695312, 1.7275391, 0.9272461, -0.6220703, -1.3945312, 1.8330078, 2.1972656, -0.84033203, 1.2392578, -0.55029297, 0.07287598, 1.4941406, 2.4316406, -0.89208984, -0.7167969, -0.61279297, -0.2388916, -2.0742188, 1.2529297, 0.6074219, -0.6074219, 0.6303711, -0.24829102, 1.7128906, -2.3203125, 0.22253418, -2.0703125, 0.13647461, 0.56591797, 0.6484375, -0.6669922, 0.3737793, -0.13146973, 3.1132812, 0.1295166, 0.765625, -0.42895508, -1.9023438, -0.033294678, -0.56396484, 1.5322266, -0.92285156, 1.9755859, -1.1191406, 4.6992188, 0.2097168, -0.45996094, 1.9970703, 1.0986328, 1.2353516, -0.32226562, 1.7978516, -2.2148438, 2.2695312, 0.66064453, -0.88720703, 0.5317383, -0.33813477, -0.82910156, -1.3984375, 1.78125, -1.1474609, -0.17053223, 1.7304688, -0.20861816, -1.6533203, 1.5878906, 1.5966797, 1.1445312, -0.029525757, -0.5878906, -1.6513672, 0.13830566, 0.2939453, 1.5517578, -0.9301758, -1.5859375, 0.09869385, 0.95947266, 2.3398438, -0.063964844, 0.059020996, -2.2050781, -0.22375488, -0.87402344, 1.1982422, 1.3720703, -0.76904297, 0.42626953, -1.125, -1.1845703, 1.2636719, 1.3125, -0.6074219, -0.3305664, -2.0859375, -1.7832031, -1.5107422, -1.5263672, 1.5839844, 4.15625, 0.8598633, 2.0917969, -0.9379883, -3.4609375, -0.6845703, -1.0205078, 0.46704102, -1.1914062, -1.5996094, 0.52734375, 1.8125, 1.5009766, 0.21679688, -1.0478516, 0.08959961, -1.3876953, 1.5009766, 0.14978027, 3.0332031, 0.010574341, -1.7890625, 1.1308594, 1.2255859, 0.027008057, 0.68310547, 2.3964844, 1.5615234, 0.066101074, -4.1484375, -1.8554688, -0.35009766, -0.10736084, 0.36547852, 2.0117188, 1.4755859, 0.13330078, -1.3710938, -3.9824219, -1.6611328]}, "B07ZGHCR2M": {"id": "B07ZGHCR2M", "original": "Brand: LONGADS\nName: 12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator \u2026\nDescription:

          You can control the temperature of your appliance exactly what you want

          \u2705The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

          \u2705If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

          \u2705Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

          Specification

          - Length: 12feet / 144 Inch/366 cm

          style=\"margin-left: 5.25pt;\"

          - Apply to: propane burners, stove,\u00a0gas grill,\u00a0turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

          - Inlet Pressure: 25-250PSIG

          - Outlet Pressure: 0-30PSIG

          - Max.flow capacity:136000BTU

          - End Connector: 3/8\" flare swivelnut; Hose connection: 5/8\"-18UNF

          Warm Tips\u00a0\u00a0\u00a0

          1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

          2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

          3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE.\u00a0ALL propane appliances are OUTDOOR Use.

          After sale guarantee

          You are not satisfied, don't be too quick to leave a negative comment,\u00a0you can request a replacement or a full refund.\u00a0Contact us! We will show you a satisfactory solution.

          \nFeatures: \u3010Measure Your Pressure\u3011Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy.\n\u3010End Fitting to Appliance\u301112Foot 0-30 PSI\u00a0High\u00a0pressure\u00a0stainless\u00a0steel\u00a0hose, 3/8\u201d female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8\u2019\u2019 male flare connector.\n\u3010New\u00a0upgrade\u3011Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don't need to move your atmospheric bottle. Gas\u00a0Pressure\u00a0Gauge\u00a0allow\u00a0you\u00a0control\u00a0of\u00a0the\u00a0heat\u00a0output\u00a0with\u00a0a\u00a0precise\u00a0level,\u00a0to\u00a0keep\u00a0your\u00a0outdoor\u00a0cooker\u00a0in\u00a0optimal\u00a0operating\u00a0condition.\n\u3010Durable Material Design\u3011The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank.\n\u3010SAFETY\u3011Pass CSA certificate for your safety, excellent sealing quality is promised for your safety.\u00a0propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.\n", "embedding": [-2.3125, 2.2128906, 1.8242188, 1.7919922, -1.3583984, -0.08935547, 1.0429688, -1.4443359, 1.5214844, 0.23425293, 1.5751953, 0.18762207, 0.6870117, -0.30688477, 1.4482422, 1.8271484, 1.8867188, 0.047851562, 1.4267578, 1.9482422, -0.2553711, 0.35058594, 3.3554688, -0.98828125, 2.734375, -0.52783203, 3.0292969, -3.3066406, -1.1699219, -1.2988281, 2.3398438, 0.3894043, 0.14074707, 1.2060547, -2.4335938, -2.3964844, -0.6743164, 0.47875977, -4.71875, -0.6533203, -0.61865234, 0.81689453, 1.5732422, 0.22070312, -2.5273438, -0.27490234, 0.7734375, 1.5361328, -1.4628906, -0.4326172, 1.3212891, -0.4091797, 0.32202148, 0.65234375, 0.49487305, -0.57714844, 0.2401123, -1.2929688, 0.021087646, 1.3818359, 1.2587891, 1.3085938, -3.2519531, -0.51953125, -1.3652344, 0.5097656, 0.57714844, -0.45898438, 1.4716797, 1.1367188, 0.6347656, -0.6801758, 2.1386719, -0.66552734, 0.061950684, 0.65478516, -1.5771484, -0.4650879, 3.9179688, 1.78125, -1.71875, 2.1992188, 0.5620117, -1.9208984, 1.25, 0.43139648, -1.8339844, 0.4572754, 2.4570312, 0.7207031, -0.9921875, 1.7167969, -3.9667969, -4.0039062, 1.2626953, 1.3496094, 2.2617188, 0.5605469, 1.9228516, 0.93115234, -2.7070312, -0.7446289, -0.2849121, 1.5126953, -0.7758789, -0.8120117, 0.59472656, 3.3886719, -3.984375, -1.1826172, 1.5234375, -0.71972656, 1.8623047, -1.1591797, 1.9550781, -2.4628906, -0.3618164, 0.06939697, 3.1953125, 1.5986328, 3.7089844, 1.3769531, -0.5488281, 1.0517578, -1.4863281, -0.18188477, -0.7885742, 0.5229492, 4.390625, -1.7119141, 0.37231445, -2.8144531, 3.1054688, -0.5419922, 0.17675781, -2.3828125, -1.3017578, -2.4726562, -2.7128906, -0.7084961, -3.8945312, -0.5102539, -0.10723877, 0.8017578, -2.140625, 0.09527588, -3.2207031, 0.4177246, 2.4101562, -2.2753906, 1.9521484, -1.6650391, 0.24157715, -0.9550781, 0.9560547, 1.4375, -0.62402344, -1.4404297, 3.3144531, 1.6494141, 2.4042969, -1.3212891, -2.2910156, 1.5478516, 0.5883789, -1.1796875, -0.013557434, 0.27319336, -0.12878418, 0.90722656, -0.48706055, -0.58740234, -0.8276367, 1.0507812, -0.27539062, -1.6689453, 0.6459961, 3.3671875, 2.2109375, -1.0087891, -4.6601562, -2.8125, -0.015014648, -1.9511719, 1.8261719, 0.8676758, -0.51660156, -0.0104904175, 0.36132812, -1.1445312, -1.9306641, 0.5698242, 0.48754883, 0.5649414, -0.9633789, -2.2871094, -4.0546875, -1.7978516, -1.0048828, 1.5908203, -1.0654297, -1.3652344, 0.7529297, -0.67285156, -2.1972656, -1.7041016, 0.75927734, -2.3261719, -0.09649658, 2.6582031, 0.13317871, -2.0019531, 1.9169922, -1.4550781, 0.21887207, -3.015625, 2.5175781, 2.7949219, 1.2646484, 1.2802734, -0.87060547, 0.8823242, 0.85498047, 0.7348633, 2.875, 0.07733154, -0.71533203, 1.6064453, -2.1503906, -0.4050293, 2.6484375, 0.71777344, -1.2529297, -1.8242188, -0.3564453, 2.3398438, -0.23205566, 0.0027675629, -0.25854492, 1.4365234, -0.16235352, -0.40966797, -0.6088867, -1.1601562, -1.7177734, -1.5214844, -1.5810547, 1.6474609, 1.9384766, -0.21923828, 0.53466797, 0.49267578, -0.82128906, -0.24035645, -2.1035156, -0.671875, 1.8867188, 1.5839844, -0.32592773, -1.5839844, 3.0664062, 0.4819336, -0.28198242, 2.6054688, -0.46289062, 0.8457031, 2.4199219, -0.2849121, -1.9169922, 0.42944336, 0.04058838, 1.9941406, 1.8789062, -0.7246094, 1.3408203, 0.24450684, -2.6738281, 2.7519531, -0.5126953, 0.83447266, 0.64941406, -0.79296875, 1.7197266, -3.2929688, 2.2753906, 2.3671875, 0.103027344, 0.58203125, -2.7421875, 0.25219727, 4.5039062, -1.6425781, -2.5253906, 2.671875, 1.5761719, -1.2490234, 2.2207031, 0.5004883, 0.92041016, -0.9370117, 1.0742188, 0.8041992, -1.9873047, 0.1895752, 2.1269531, -0.9121094, -0.48461914, 0.09539795, -1.8115234, 1.1142578, -2.2089844, -0.5961914, -0.92333984, 3.1015625, -1.2587891, -1.0712891, 1.4228516, -2.9316406, 0.0062294006, 0.73535156, 0.95458984, 1.3359375, 0.3449707, -1.1826172, -0.22644043, 1.6191406, -1.6464844, 1.5400391, 0.3527832, 0.8613281, -0.8276367, -1.53125, -0.9848633, -2.4453125, -3.5625, 1.7695312, -3.78125, -3.1953125, 0.82666016, -2.2128906, -2.640625, 1.4570312, -0.38989258, 2.7851562, 1.7509766, 0.045440674, -0.33154297, -1.0634766, 0.43188477, 0.5917969, 0.69091797, 1.8574219, -0.11138916, -2.21875, -0.7451172, -0.13024902, 0.15100098, 0.42138672, -2.9179688, 1.7207031, 0.060394287, 0.5229492, 0.16723633, 0.19592285, 0.031677246, -2.2128906, 1.71875, -3.0234375, -1.6914062, 0.3034668, 0.48608398, -2.2753906, 1.0517578, -2.0449219, -0.2619629, -0.38891602, -1.4072266, 1.1240234, -1.2822266, 1.8857422, -3.0429688, 1.9541016, 1.2226562, -1.4091797, -1.6640625, -0.4663086, 0.28955078, 0.5605469, -1.1699219, -3.078125, 0.24279785, 1.0849609, 0.58447266, -0.6953125, -1.7158203, -2.1074219, 0.8432617, 0.75390625, -0.44067383, 0.14282227, 2.0761719, 0.031234741, -2.578125, -1.5976562, 0.65527344, -2.0078125, -1.2939453, -0.36547852, 1.8134766, -1.3740234, 1.8349609, 1.4111328, 0.9765625, 1.0166016, -3.6386719, -2.7285156, 0.54589844, 1.5390625, -2.0976562, 2.6933594, 0.18762207, -0.62890625, -1.4599609, -2.2382812, 1.6894531, 1.2050781, 3.359375, -0.66796875, -0.04864502, 0.16479492, 0.1928711, -1.2929688, -1.5927734, 0.10510254, 4.8515625, -2.1621094, -2.0664062, -0.3869629, 0.88916016, -2.53125, -1.0224609, 2.3066406, -0.55371094, 2.0878906, 1.0332031, 2.5917969, -0.37329102, -0.36865234, 2.46875, 0.66503906, -0.5395508, 0.48217773, -1.0712891, -1.0478516, -2.96875, 1.2763672, 2.25, 0.32861328, 0.8964844, -0.14746094, 0.47387695, -0.7558594, 0.63720703, 0.038360596, 0.72802734, 0.6538086, 1.5361328, 0.7841797, -1.0107422, -1.1679688, 0.8691406, 1.1035156, -2.5351562, -0.671875, 1.7646484, 2.1679688, -1.2802734, 0.04147339, -0.7871094, 0.2590332, -0.4411621, -0.7036133, 1.1523438, 1.1826172, 2.2773438, -0.01625061, 1.2460938, -1.8574219, 1.9238281, -0.40039062, 0.8989258, 0.15258789, 0.036224365, -2.6992188, -1.5917969, 0.44018555, -2.375, -0.8828125, 1.5419922, 1.3076172, -0.3227539, 1.1523438, -1.0644531, 1.4277344, 1.2451172, -2.75, 0.34936523, 0.9033203, -0.05987549, -0.2927246, -0.043701172, 2.6503906, -0.24987793, -2.2460938, -1.1591797, -2.7167969, 1.6005859, 0.25390625, 0.953125, -2.9179688, 0.8618164, -0.2211914, 1.6621094, -0.024841309, 2.2832031, 0.29418945, 0.82714844, 1.5205078, -2.6152344, -1.0742188, -2.1015625, -6.515625, 1.1201172, -2.828125, -0.17614746, 1.7050781, 0.04949951, 1.2744141, 1.6005859, 2.6015625, -3.6640625, -0.44262695, -0.51953125, 0.27294922, -2.4042969, 0.5839844, 1.8925781, 1.3056641, -0.77978516, -2.4453125, -1.3242188, -3.9296875, -0.87060547, 0.6245117, -1.6357422, 0.7368164, -2.3242188, 0.9238281, -1.7890625, -1.8574219, 0.89697266, -0.6816406, -1.5185547, -3.2714844, 2.8417969, -0.4699707, -0.16125488, 0.24804688, 2.9589844, 2.1484375, -0.36206055, -0.48901367, 0.48828125, 3.9980469, -0.07324219, -1.0458984, -0.8989258, -0.65722656, 0.12670898, -0.31176758, -0.46606445, -0.87597656, -1.0195312, 0.25439453, 0.8222656, 0.23742676, 0.99853516, 0.03878784, -2.1171875, 1.7822266, 1.4121094, -0.8466797, 0.48950195, -0.41723633, -2.0722656, -2.2460938, 1.4873047, -2.5058594, -0.57177734, -1.4052734, -1.3779297, -3.9238281, 3.921875, -0.2680664, -0.42822266, 0.23022461, -0.95996094, -0.8769531, -0.18347168, 0.31152344, -1.859375, 0.27539062, -1.7539062, 0.6411133, 1.6103516, 3.3671875, -0.41186523, -0.7583008, 0.8183594, -1.8476562, -0.39892578, -0.5776367, 0.5058594, 0.39404297, 0.22241211, 1.7070312, -1.1259766, 3.9042969, -0.54833984, 1.9736328, 2.125, -1.0195312, -0.92822266, 1.9199219, 2.0507812, 2.6816406, 1.0664062, 0.56347656, 1.4599609, 3.1855469, 0.4375, 0.27148438, 1.1982422, -1.3955078, 0.11206055, -0.51123047, 1.6015625, -1.8818359, 1.3505859, 0.11627197, 1.5546875, 2.6523438, 2.8789062, 2.1738281, -2.703125, 2.203125, 0.86376953, -0.57177734, -0.6791992, -0.16503906, -1.4013672, 2.6972656, 0.039489746, -1.0546875, -0.28393555, 2.796875, -1.3291016, 1.8173828, 1.578125, -0.5625, 0.59472656, -2.0488281, -1.3867188, -0.28808594, -2.2792969, 0.98583984, -2.4453125, 0.8618164, 0.08166504, 2.2285156, 1.171875, 0.38134766, 0.04574585, -0.08441162, -0.6791992, 1.1123047, -0.94384766, -0.8808594, -2.5976562, 0.49414062, 1.8408203, 0.3161621, -0.08392334, 0.25439453, 0.9760742, -1.6201172, -0.7729492, 0.04248047, 2.6601562, 0.6777344, 0.19360352, 1.0683594, -1.6962891, -0.16577148, -1.1601562, 0.57470703, -1.6367188, 3.2929688, 2.3261719, 1.359375, -0.16772461, -0.4116211, -2.5585938, -4.203125, -0.81689453, 2.4492188, -0.6020508, 0.765625, -3, -0.5258789, 2.0605469, -0.47705078, -0.57373047, -3.6992188, 1.3076172, -1.1904297, -0.79296875, -0.40795898, -0.49853516, 0.19116211, 0.5151367, 0.26220703, 0.52001953, -1.5351562, -2.1679688, -1.6044922, 1.5908203, -2.96875, -1.8857422, 2.3964844, -2.1777344, -0.6269531, 0.07556152, 1.2509766, -0.76123047, 1.4091797, -3.5, -0.40551758, 0.50927734, -1.5136719, 1.2929688, 1.0214844, -0.75439453, 1.7880859, 0.42749023, 1.3730469, -0.068237305, -0.36914062, 0.3701172, 0.39208984, -0.31884766, -2.6230469, 0.1538086, -0.9760742, 1.765625, 1.6347656, -1.7021484, 0.38134766, -1.8046875, -3.234375, 0.7373047, -1.1679688, -0.44482422, -0.074645996, 1.2441406, 2.4824219, -0.6357422, 0.5102539, 0.9614258, -1.1552734, -0.53222656, 0.9316406, -0.8095703, 2.2382812, 0.6713867, -0.8901367, -2.9316406, -0.9916992, 1.4238281, 2.921875, -1.2910156, 1.3222656, -0.5263672, -0.5546875, 1.9511719, -1.2285156, 1.2109375, 1.8027344, -0.7939453, -1.1279297, -0.105285645, 2.28125, -0.5649414, 1.7207031, 1.2832031, -0.7480469, -1.1083984, 2.5585938, 1.5068359, -1.6162109, 0.9746094, -1.5029297, 1.4257812, -0.54345703, -1.2207031, 0.35766602, -1.7958984, 0.5932617, -0.31469727, -1.7021484, -2.8046875, 1.8173828, 1.3730469, -2.609375, 1.2626953, 3.5058594, 1.1533203, -0.3178711, 1.6318359, 0.9448242, -0.22009277, -0.042236328, -0.84033203, 0.25683594, 1.5839844, -1.9433594, -0.25463867, 1.9462891, 1.9707031, -1.2539062, 0.1574707, 1.5263672, 3.1640625, 0.6040039, 1.4443359, 3.84375, -0.14465332, 2.0058594, 0.34985352, 2.1972656, 3.0019531, -0.8203125, 1.3398438, 1.7265625, -0.013473511, 0.11444092, -0.96728516, -0.4741211, -1.1650391, 0.17626953, 0.5629883, 0.91845703, 1.7216797, -3.0292969, 0.20837402, -0.8745117, 0.48535156, -4.125, -0.18969727, -1.0585938, 0.67285156, 0.75097656, 0.21520996, 1.5947266, 0.75683594, -1.2705078, -0.35717773, -0.18371582, 2.3828125, -0.9736328, 0.43066406, 0.010787964, -3.4121094, 1.0283203, 2.1113281, 0.9658203, 0.30004883, 0.49267578, -0.8720703, -0.85839844, 1.796875, 1.0175781, -1.7382812, -0.30541992, -0.8955078, 2.7949219, 2.3730469, -2.2636719, 1.9433594, 1.5078125, -1.7460938, -4.2382812, 3.390625, 0.027450562, -0.055847168, -1.8261719, -5.7734375, 1.9042969, -1.6728516, -0.65722656, -2.015625, 1.2529297, -0.9926758, -1.4541016, 0.72216797, 0.18640137, -2.8457031, 1.5908203, 0.15209961, -1.5878906, 0.51220703, 3.6386719, 2.5585938, -0.12225342, 0.3244629, 0.23486328, -0.07720947, -1.0625, 3.3378906, -0.16064453, -2.6445312, -0.71728516, 2.3867188, 1.0429688, 0.60595703, -0.43945312, 1.96875, 0.6513672, 1.5917969, -0.48291016, -0.22839355, -2.3144531, 1.1054688, 0.14160156, 0.52197266, -0.9121094, -2.3808594, 1.0234375, 1.0244141, -1.7265625, 0.31445312, 1.0322266, -1.1123047, 1.7861328, 0.89208984, -1.6386719, -1.1113281, -0.09313965, 0.75878906, -2.2421875, -0.44921875, -0.48706055, 0.33129883, 0.35791016, -2.3164062, -0.110961914, 0.90527344, 0.17883301, -1.6308594, -1.8339844, -1.2685547, -1.1025391, 0.29882812, -1.3027344, 1.2978516, 2.6875, -0.86376953, 2.4863281, -0.8647461, -0.00033187866, 1.0644531, -1.6123047, -1.1933594, 1.3271484, 2.2011719, -0.041778564, 1.7734375, -0.6020508, -2.5585938, -1.1367188, -3.3378906, 2.1523438, -1.3261719, -1.046875, 0.14111328, 0.2927246, 2.140625, 0.21398926, 1.4150391, 1.1152344, -0.54589844, 1.3457031, -0.8178711, -0.14990234, -0.3491211, 0.11779785, -0.17834473, 2.4101562, 1.8007812, -1.5449219, -0.4345703, 1.5380859, -0.47265625, -1.2939453, 0.8935547, 0.54052734, -0.029083252, -0.042663574, 3.0117188, 3.0507812, 0.49389648, -0.9272461, 1.1103516, -1.3164062]}, "B01N01N50Z": {"id": "B01N01N50Z", "original": "Brand: Elementi\nName: Elementi Lunar Bowl Cast Concrete Fire Pit - LP\nDescription: A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the 'Lunar Bowl' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42\" x 42\" x 16\". Burner Ring Size: 12\" (Dia.). Burner Pan Size: 23.7\" Diameter (I.D.).\nFeatures: Model #: OFG101-LP\nBTUs (max): 45,000\nFuel Type: Liquid Propane\nBody construction: Glass fiber reinforced concrete\nOverall Dimensions: 42\" x 42\" x 16\"\n", "embedding": [0.22741699, -0.08996582, 1.6689453, -0.8535156, 0.98583984, 0.05621338, -0.3359375, -2.1699219, -0.10583496, 1.8359375, -0.74609375, 1.0859375, -0.52490234, -2.5605469, 2.2988281, 0.16235352, 0.42626953, 0.77246094, -0.63134766, -0.7973633, 2.4238281, -0.79785156, -0.88916016, -0.3383789, 1.6669922, 2.0507812, 3.4492188, -4.03125, -1.8408203, -2.0878906, 0.89746094, 0.60791016, -0.0970459, 1.0996094, -1.6269531, -2.8261719, -1.0068359, 2.0605469, -3.6660156, -0.5917969, -1.609375, 0.13830566, 1.8623047, 1.2470703, -2.8144531, 0.30786133, 0.1303711, -0.6870117, -0.29248047, -0.8178711, 1.5478516, 0.63671875, -0.2919922, 0.10455322, -1.2236328, 1.6699219, -0.98535156, -2.21875, 4.8046875, -0.42041016, 0.5317383, -0.37402344, -1.2246094, 2.0605469, -0.61083984, 1.1152344, -1.6416016, -1.1875, -0.9248047, -1.4003906, 1.5429688, 0.46020508, -0.04650879, 0.44750977, 2.0976562, -2.7226562, -1.7675781, -0.41259766, 0.98291016, -1.3203125, -0.34570312, 3.3222656, 2.078125, -1.0986328, 0.94677734, 0.3935547, -3.8828125, -1.4414062, -1.4052734, -0.43847656, -0.19543457, 2.5859375, 1.3544922, -3.8417969, 1.9277344, -2.1445312, 0.13598633, -0.40893555, -3.171875, 0.27441406, -1.2792969, 1.5234375, -0.026153564, -1.59375, -2.4140625, -1.2978516, 0.265625, 0.046203613, 0.95166016, -1.0458984, -2.4375, -0.5878906, 1.2988281, -0.08929443, 0.21191406, 0.6875, 0.5722656, -0.22338867, 2.0664062, 0.20751953, 3.5546875, -0.010345459, -1.5634766, -1.5429688, -0.5600586, -0.32885742, -2.1894531, 0.7939453, 1.2919922, -1.0449219, -0.4814453, -0.5864258, 2.40625, -0.67089844, -3.9375, -1.5771484, -1.9423828, -2.1660156, -0.5473633, -2.3535156, -2.0253906, 1.2441406, 1.4765625, 0.9189453, -3.7675781, -0.57177734, -1.3613281, 1.8935547, 0.28295898, -1.9101562, 1.234375, -0.8095703, 0.105407715, -1.1914062, 1.0712891, 0.44702148, -0.42797852, -2.4921875, 3.4257812, 0.21862793, -0.060913086, -1.6044922, -0.12420654, 2.1914062, -2.1972656, 0.5673828, -0.3642578, 0.91796875, 1.3261719, 1.8623047, -1.4570312, -2.2519531, -0.53125, 0.42822266, 0.36206055, -1.7373047, -1.8115234, 0.30932617, -0.52441406, 1.5029297, -3.1367188, -1.2324219, 3.2773438, 1.4833984, 0.96484375, -1.2314453, -0.81689453, -3.4160156, -0.6567383, -0.04043579, 0.93847656, 0.07104492, -0.56152344, -0.3251953, -0.70654297, -0.5839844, -0.8208008, -3.3828125, 1.7246094, 0.49951172, 0.06573486, 1.7734375, -2.7109375, 0.31860352, -0.9423828, -1.7412109, -2.1113281, 0.25830078, 1.6835938, 1.828125, 1.0869141, -0.44384766, 0.1381836, -0.4855957, 0.8964844, 0.36767578, 0.171875, -0.28515625, 2.1933594, 1.4873047, 0.26245117, -0.9506836, -0.2685547, 1.5800781, -0.6464844, 1.0742188, 1.2880859, 0.48901367, -2.875, 0.92871094, 2.3476562, 0.5419922, 0.12347412, 0.50390625, 0.30615234, 3.3535156, 0.85253906, -0.32006836, 3.0917969, -2.7558594, -0.10192871, -1.7099609, -0.76416016, 1.8652344, -0.9326172, 1.0947266, 0.49023438, 0.3022461, 1.5898438, 1.4853516, -1.7871094, -0.9614258, 1.4648438, 1.3603516, 0.5522461, -0.69921875, -2.5273438, 2.4785156, 3.046875, -1.3164062, 2.4628906, -0.23999023, -0.2401123, -0.122558594, -0.29516602, -0.8925781, 0.0046920776, 0.14038086, -3.5507812, -0.0022068024, 0.89941406, 1.9111328, 4.09375, 1.6484375, 0.9604492, 0.3552246, 0.22888184, 1.6269531, 0.7602539, 3.0820312, -0.5961914, -1.1162109, 0.38745117, -2.2519531, 0.98535156, 1.3847656, -1.2070312, 0.8178711, -1.265625, 0.09967041, 3.5507812, -1.2783203, -1.7988281, 2.8730469, -1.9003906, -0.057525635, -0.36499023, -1.7871094, 1.5947266, -1.2744141, 0.6923828, 1.6806641, 0.38256836, 2.5683594, 0.3010254, 0.43969727, -0.0017614365, 0.4963379, -0.73095703, -0.21166992, -1.3574219, -1.7050781, -1.2890625, 0.8261719, -2.0683594, -2.2792969, 2.4941406, -2.4453125, 3.9804688, 1.5166016, 0.2758789, 0.39746094, -0.08380127, -2.7070312, 0.18615723, 2.21875, -1.8085938, 0.88378906, -0.25073242, -0.57128906, -1.6748047, -3.3730469, 0.24572754, -1.4111328, -0.5629883, -3.0214844, 0.19567871, 0.53271484, 2.1464844, -2.9199219, 0.5053711, 2.8066406, -1.2929688, 0.23095703, -2.0625, -4.5, -0.36914062, 1.2109375, 0.21008301, 0.4963379, 0.32983398, 0.58496094, 0.8261719, -2.6992188, -0.6875, -1.6708984, 0.12878418, 1.5380859, -0.08605957, -0.121520996, -0.4050293, 0.99121094, 0.171875, -0.984375, 1.0947266, 2.1582031, -0.73291016, -3.1542969, 1.6914062, -1.8046875, 1.1689453, -0.8339844, 0.87060547, -0.5649414, -0.5371094, -0.3947754, -0.9165039, 5.7929688, 0.87890625, 1.6503906, -2.3457031, -1.2402344, 0.26367188, -0.6479492, -0.98339844, -0.1048584, -2.2597656, -1.5078125, -4.1523438, -2.7695312, 0.26489258, -2.6191406, 1.6572266, -0.066223145, 1.1328125, -1.2470703, 0.5341797, -0.23132324, 0.46875, -0.06713867, -2.375, 1.2568359, 1.6162109, -0.46850586, -2, -1.1484375, -1.3710938, 1.3457031, 2.2421875, -0.7260742, -0.53027344, 1.7265625, -0.27075195, 0.8779297, 2.3105469, -3.6582031, -0.54248047, 3.1171875, 0.3491211, 3.2304688, -1.59375, -0.98046875, -0.98583984, -1.2617188, 2.5859375, -0.87353516, 2.3925781, 0.11187744, -0.6826172, -0.5673828, -0.34960938, -0.4753418, -0.1149292, -0.27539062, 2.3789062, -2.5273438, 0.06744385, -0.22729492, 2.3808594, -2.0703125, -1.3974609, 0.63720703, 2.9199219, 1.3916016, -0.31762695, 2.3671875, 0.15270996, 1.0996094, -0.7451172, 0.68115234, 1.0009766, -0.33251953, -1.4824219, 1.3466797, 1.5429688, 0.16882324, 2.8515625, -1.1044922, -0.21289062, 2.265625, -1.2832031, -0.6166992, -0.7260742, -0.7739258, 0.7763672, -0.20690918, 2.7910156, -1.7373047, -0.9223633, -1.3173828, 1.5761719, 1.3691406, 0.088134766, -0.08123779, 2.1289062, 0.09088135, -0.97558594, -1.2119141, 0.3935547, -0.69873047, -1.3789062, 1.8837891, -0.88378906, 0.48535156, -0.21081543, -0.87353516, 1.3574219, -0.7109375, 3.0429688, -1.0097656, -1.4414062, 0.76464844, 2.5546875, 0.2758789, -3.1171875, -0.5703125, -0.5385742, 0.9819336, 3.15625, -1.2617188, -1.640625, -0.056030273, -1.3525391, -0.15332031, 2.078125, 2.5566406, -0.0049858093, -1.1376953, 0.077697754, -0.19213867, 0.48779297, 2.0878906, -0.8076172, -1.8476562, 1.0800781, 0.62646484, -1.7871094, 0.5214844, 0.89746094, -2.4667969, 2.4648438, -0.32861328, 1.0371094, 0.2607422, 2.875, 1.3779297, 0.71191406, 1.7148438, 1.03125, -1.3564453, -3.046875, -1.1835938, 0.38671875, -2.4082031, 0.1303711, 1.4912109, -0.59375, -0.52978516, -1.7558594, -0.008468628, -3.9707031, -2.5761719, -0.5019531, 2.125, -2.1972656, -0.9194336, -0.27124023, -0.085510254, -1.6982422, -0.75097656, 1.3173828, -0.3046875, 1.4765625, 0.30786133, -0.8696289, 0.18920898, 0.38012695, 0.09454346, -1.5869141, -1.1025391, 1.5605469, -0.42456055, 0.7397461, -0.22436523, 0.14428711, -1.5966797, -1.4736328, 1.4267578, 2.4511719, 0.53027344, 1.2880859, 2.375, -0.03668213, 1.5078125, 0.53222656, -1.8339844, -1.4541016, 0.15356445, 1.4746094, -0.8227539, -1.0537109, -0.34423828, -2.3730469, 0.79248047, -0.17053223, -0.64160156, 1.1376953, 0.8354492, 0.47753906, 1.3037109, 0.5419922, -2.8730469, -0.03250122, 1.2929688, 0.6225586, -3.1152344, -0.111083984, -1.9414062, 2.1484375, -0.15930176, -1.0341797, -1.7529297, 0.087646484, 2.1054688, 1.3945312, 3.0976562, -4.140625, -2.8261719, -0.86572266, -1.3173828, 1.0097656, 1.8847656, 0.27172852, 2.4257812, 1.7412109, 1.1757812, 0.7324219, 2.4238281, -0.6098633, 0.46972656, -0.7290039, 1.5195312, -3.3125, -2.6269531, -1.5830078, 0.17810059, 0.5727539, -1.203125, -2.4335938, -1.0029297, -4.1796875, 1.4599609, -0.16821289, -0.29223633, -0.7138672, 1.5625, 1.2314453, 2.2773438, 2.7480469, -0.31567383, 3.1640625, -2.3730469, 3.1503906, -0.06097412, -0.12133789, -0.8286133, -1.03125, -2.0761719, 1.4355469, 1.2763672, 1.5693359, -0.39941406, 0.9394531, 0.90234375, -1.1171875, 3.3515625, 1.3232422, -1.9052734, -0.46875, -3.0625, -3.4746094, 1.359375, 1.0800781, -2.5703125, -0.54248047, 2.4648438, -0.61279297, 2.8105469, 1.4101562, -0.91308594, -0.6035156, -1.1259766, -1.8505859, -1.9755859, -0.08581543, -1.7412109, 0.8984375, -1.3037109, -0.7397461, 0.47705078, 0.5546875, 1.4970703, -1.0654297, 1.7314453, 1.8955078, -0.9301758, 0.16455078, 0.013305664, 1.9326172, 1.4189453, 1.9199219, 1.7783203, 1.9492188, -2.1523438, 2.8535156, -0.5019531, -0.5546875, -1.2929688, 0.33520508, -2.3378906, -0.13439941, 1.3583984, 0.074645996, 0.48657227, -1.3134766, -0.5830078, -0.35839844, 2.4375, -2.7695312, 0.5683594, -1.7167969, 0.31689453, -2.4238281, -1.1611328, -0.47827148, -2.25, -2.5195312, 0.1706543, -1.2929688, -0.3605957, -1.4091797, 0.3515625, -0.6147461, 1.40625, -0.8100586, -0.90234375, 0.4741211, -0.7104492, 0.25708008, 3.28125, 0.5629883, 2.3574219, 0.59716797, -0.9370117, -3.5839844, 0.67333984, 3.0859375, 0.17553711, 1.3818359, 1.3085938, 1.1083984, 2.3242188, 3.5507812, -0.78515625, -1.90625, 0.9477539, 0.74609375, -0.5, 1.5458984, -1.0595703, 1.7177734, 1.5947266, -0.72802734, 2.5527344, -1.9414062, -0.92626953, 1.2705078, 0.48657227, 0.89746094, -0.74365234, 0.8613281, -0.7270508, 1.3964844, 0.20593262, 0.7504883, -1.4580078, -0.8828125, -1.9052734, -1.2509766, -0.9614258, -0.37304688, -2.1660156, -1.1064453, -0.4807129, -1.140625, 0.91796875, 1.7080078, 0.5839844, 2.8105469, -0.26220703, 0.58447266, 0.97558594, 0.5834961, 1.3037109, 2, -2.3320312, -0.8623047, -5.5664062, 1.6982422, 1.3544922, -0.9301758, -0.9902344, 1.7705078, -2.4472656, 0.5488281, 1.34375, 1.2763672, -0.019897461, 1.5527344, -3.140625, 0.51708984, 1.8212891, -2.3671875, 1.625, 0.09326172, 2.8867188, -0.59033203, 0.90234375, 0.8198242, -1.9707031, 4.1132812, 0.59521484, -0.07385254, -1.3134766, 0.42285156, 1.2998047, -1, -0.67626953, 0.3479004, -0.39990234, -2.8730469, 0.89746094, 0.7861328, 0.7084961, -0.37695312, -0.46142578, 0.5625, 2.0976562, 1.9365234, 0.5986328, -1.2246094, -2.0351562, -0.65722656, 1.7490234, 1.5019531, -0.2919922, -1.265625, -0.7314453, -0.24645996, -0.87109375, -0.31518555, -0.84277344, 0.77197266, 1.0273438, 2.4941406, -1.1826172, 0.6269531, 2.234375, -1.2324219, 1.7119141, 0.31689453, -0.8232422, -1.3632812, 0.31176758, 1.2255859, 0.2578125, -1.5820312, -1.1308594, 0.04727173, -2.484375, -0.6098633, -0.63671875, 0.8154297, -2.5917969, 2.7929688, -0.33129883, -0.09741211, -1.0419922, 1.2089844, 0.22460938, 0.2133789, -0.38793945, 0.014328003, 0.69433594, 1.0175781, 1.9199219, 2.0429688, 0.58691406, 0.2980957, -2.6132812, 2.3789062, 1.0996094, -2.9804688, -2.0605469, 3.5449219, 2.3964844, 0.15966797, -0.66748047, 1.90625, -0.25341797, 1.9589844, 1.3583984, 0.67529297, -0.7939453, 0.21862793, 3.984375, -0.12420654, -0.42407227, -1.0947266, -0.30249023, -2.8203125, -0.7807617, 1.5908203, 0.8964844, 1.6767578, -0.25854492, 0.5292969, 0.8046875, 1.2929688, 1.3046875, -2.1269531, 2.8710938, 0.41796875, -0.49951172, -0.00068855286, 0.3190918, 1.1298828, 0.8417969, 2.3925781, 0.2939453, 2.5703125, -0.12963867, 1.0644531, 0.60595703, 0.9555664, -1.3105469, 2.1386719, -0.84814453, 2.8828125, 0.78808594, -1.3935547, -0.5541992, 3.7910156, 2.9570312, -1.0302734, 0.8261719, 0.082092285, 1.0634766, -0.95166016, -0.046722412, -2.5859375, -1.9931641, 0.055419922, -0.94677734, -0.09741211, 0.8408203, 0.07885742, 0.7753906, 1.2197266, -0.8535156, -0.9189453, 1.5771484, -2.0722656, 0.80859375, -0.89404297, -1.9277344, 0.9345703, 0.7089844, 1.6787109, -0.43676758, -1.9931641, -1.0214844, 2.8964844, -0.13098145, 0.65185547, 1.0371094, 1.6542969, -0.22375488, 0.7792969, 2.5195312, -0.7558594, 0.92529297, 2.46875, 1.2490234, -0.20397949, 1.7177734, -0.016830444, -1.9462891, 2.0722656, -1.3134766, -1.1054688, 0.8588867, -3.796875, -0.75634766, 3.3007812, -0.42382812, -0.1940918, -1.6914062, -3.859375, -0.4807129, -1.4648438, 1.7685547, -1.4306641, -0.6533203, -0.8803711, -0.46240234, 2.2089844, -0.6113281, 0.76904297, -1.1162109, -0.8310547, 2.0957031, -0.45288086, 3.3769531, 0.11425781, 2.0351562, 1.4765625, 0.43041992, 1.2890625, -1.1943359, -0.11743164, 2.1621094, 1.3916016, -2.2617188, -0.40039062, 0.6352539, -0.55078125, 1.5283203, -1.2285156, 0.39453125, -2.1171875, -0.79589844, -3.09375, -1.5117188]}, "B07YHC58TG": {"id": "B07YHC58TG", "original": "Brand: SHINESTAR\nName: SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill\nDescription: Description:
          Replace short regulator hose kit on gas appliance.
          Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
          12ft long enough to put the propane tank where needed with length to spare.
          Added protection of the stainless steel braided around the hose.
          Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
          Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

          Feature:
          Hose Length: 12 Feet
          Connection: Acme nut (QCC) x 3/8'' Female Flare Fitting
          Outlet Pressure:11\" W.C.
          Flow Capacity: 80,000 BTU/Hr
          Length: 12 feet /144 inch

          NOTE:
          FULLY TIGHTENED at both sides of hose before using to prevent leakage.
          To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
          Keeping the hose away from HIGH TEMPERATURE.
          For Outdoor Use Only.
          \nFeatures: \u3010Perfect Upgrade\u3011The attached propane gauge can detect dangerous leaks and read fuel level at glance\n\u3010More Durable\u3011Stainless braided hose prevents whatever animals from chewing through your hose\n\u3010Standard Connector\u3011Acme nut QCC propane cylinder adapter x 3/8\u2033 female flare fitting. 5/16\" diameter LP hose\n\u3010Multi-Purpose\u3011Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device\n\u3010Control Gas Flow\u3011The regulator Outlet Pressure is 11\"W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again\n", "embedding": [-1.2724609, 2.5488281, 1.0048828, 1.1679688, -2.2148438, -0.22888184, 2.0566406, -1.5517578, 2.5429688, 0.1541748, 0.041534424, -0.9736328, 1.2763672, -2.8652344, 1.4794922, 1.0429688, 0.8183594, 0.6743164, 1.4433594, 1.796875, 1.4179688, 0.3647461, 1.9287109, -0.4482422, 1.9794922, -2.1035156, 2.9160156, -2.8496094, 0.1048584, -0.9135742, 0.89697266, 0.05670166, -0.050720215, 0.9423828, -2.5898438, -1.7529297, -0.8540039, -0.7558594, -4.296875, -1.7392578, -2.4824219, 1.6279297, 2.6015625, 0.34204102, -2.3730469, 1.2148438, 0.95410156, -0.04333496, -0.7324219, -0.11022949, -0.3708496, -0.3828125, -0.024749756, 1.1435547, -0.51660156, -0.6879883, -1.3789062, -2.8652344, 1.7636719, 0.37841797, 1.4921875, -0.4501953, -3.0078125, 1.0976562, -0.095214844, 0.9741211, 1.2060547, -0.7661133, 0.17687988, 1.0673828, 0.77441406, -0.16369629, 0.47851562, -1.5078125, 0.41723633, 1.0859375, -2.3300781, 0.06842041, 2.5253906, 1.2597656, -0.18164062, 2.4003906, 0.54296875, -1.1074219, 2.4472656, 0.21203613, -2.8007812, 0.77246094, 1.0263672, 1.6025391, -1.8886719, 3.265625, -2.7285156, -3.3085938, 1.2539062, 0.26660156, 1.8398438, 1.1435547, 2.2519531, -0.60009766, -1.2207031, -1.2783203, -0.51171875, 1.6083984, -2.0957031, -0.8886719, 0.60498047, 1.8212891, -2.0429688, -0.40429688, 0.21887207, 0.61279297, 1.3193359, -0.94970703, 0.703125, -1.8076172, -0.13354492, -0.7973633, 3.0566406, -0.5419922, 3.0527344, 1.0722656, -0.5805664, 0.29663086, 0.7348633, 0.28076172, -0.3166504, -0.38256836, 2.2597656, -1.0791016, 0.3359375, -3.0644531, 1.8916016, -0.037200928, -1.3730469, -2.8808594, -1.4560547, -1.4775391, -2.3007812, -0.4482422, -3.9980469, -0.42529297, 0.6772461, 0.60253906, -3.3535156, 0.15344238, -3.4765625, 1.2578125, 2.6035156, -2.1816406, 1.7783203, -0.68896484, -0.37646484, -1.4013672, 1.8320312, 1.4335938, 1.2832031, -2.0664062, 3.4140625, 1.2470703, 2.0039062, 0.31567383, -2.4375, 2.1347656, -0.10632324, -3.7480469, 0.58447266, 1.0175781, -0.77246094, 0.71728516, 0.35717773, -3.46875, -0.14050293, 1.0400391, 0.19641113, -1.7568359, 0.73876953, 0.2548828, 2.890625, 0.20300293, -4.0546875, -2.8320312, 2.2167969, -1.4560547, 0.4169922, 0.36157227, -1.0625, -1.8701172, 0.82958984, -0.22216797, -2.359375, 0.44628906, -0.25048828, 0.13598633, -1.7246094, -2.6796875, -2.8652344, -1.4179688, 1.3017578, 1.1308594, -1.9003906, 0.23059082, 0.1829834, 0.99072266, -1.3886719, -0.3881836, 0.68359375, -0.05218506, 0.35327148, 2.5332031, -0.5732422, -1.0722656, 1.9384766, -1.5146484, -0.30810547, -1.9785156, 1.5615234, 2.9609375, 1.3837891, 1.7216797, -0.031280518, 0.9902344, 1.9199219, 0.33740234, 2.40625, 0.21240234, -0.22839355, 0.89697266, -1.9179688, -1.7099609, 2.9921875, 1.1396484, -0.91552734, -0.1776123, -0.19226074, 2.6367188, 0.6191406, 0.3552246, 1.0195312, 1.5957031, 0.006000519, -1.0996094, -2.2636719, -0.82421875, -0.41479492, -1.0917969, 0.0077400208, -0.19177246, 2.3984375, -0.5253906, 1.0126953, -0.10107422, 0.2746582, 0.73535156, -0.8041992, -0.87353516, 1.4697266, 2.2382812, 0.12805176, -1.6357422, 1.9384766, 1.3730469, -0.5629883, 1.8173828, -0.46948242, 0.86083984, 1.6826172, -0.5966797, -1.8896484, 1.3642578, -1.2177734, 2.1972656, 0.9711914, -1.0878906, 1.1396484, 1.1855469, -2.2226562, 3.1542969, 0.17114258, 0.97314453, 1.3486328, -0.70410156, 1.7929688, -2.2070312, 1.4990234, 2.3378906, 2.7460938, 0.55566406, -1.6328125, 0.5732422, 4.4335938, -0.08807373, -0.5307617, 1.859375, 1.9814453, 0.74316406, 2.5078125, 1.0214844, 0.68310547, -0.68408203, 0.5263672, 1.3300781, -1.1591797, 0.99365234, 1.3896484, -0.74853516, 1.3720703, -1.2832031, 4.1484833e-05, 0.5107422, -1.0507812, -0.8979492, -1.3144531, 1.6132812, -2.2617188, -2.0976562, 2.5195312, -2.2128906, -0.46240234, 2.4335938, -0.64208984, -0.21960449, 0.6660156, -1.5224609, -0.45092773, 2.5097656, -1.9326172, 2.8515625, 1.8769531, 0.515625, -0.8417969, -1.7763672, -0.38500977, -1.8525391, -2.1933594, 0.17663574, -1.9189453, -2.8007812, 0.7885742, -2.1386719, -2.1523438, 1.3720703, 0.9003906, 3.2480469, 0.42797852, -0.6230469, -0.41503906, 1.4638672, 0.671875, -0.33154297, -0.111450195, 2.9921875, -0.3696289, -1.8935547, -0.6347656, -0.68603516, -0.40112305, 1.2714844, -1.7851562, 0.14123535, 0.82177734, 2.0097656, -0.11480713, 0.19067383, 0.8339844, -3.7929688, 0.25854492, -3.7382812, 0.14453125, -0.16442871, 1.7138672, -2.9960938, 0.8208008, -1.3447266, -2.53125, 1.2480469, -1.2207031, 1.6054688, 0.25512695, 2.5292969, -2.6367188, 0.018615723, 0.7573242, -0.20983887, -1.7773438, 0.40429688, 2.1503906, -1.4287109, -0.35620117, -3.4609375, 0.094177246, -0.36669922, 0.3684082, -0.2763672, -1.9052734, -1.7363281, -0.20117188, 0.42626953, -1.6552734, -0.7714844, 0.45288086, 0.50683594, -2.0039062, -0.8408203, -0.30126953, -0.7026367, -0.5629883, 1.6044922, -0.18725586, -1.4296875, -0.10809326, 2.1445312, 1.1630859, 1.0498047, -0.78466797, -3.7148438, -0.08868408, 2.8378906, -0.6357422, 1.8027344, -1.0097656, 0.49194336, -1.5019531, -1.4521484, 1.3330078, 1.1357422, 1.4570312, -1.1992188, -1.1875, 1.2382812, -0.03161621, -1.6113281, -0.7260742, -0.37548828, 4.7148438, -2.4511719, -1.4140625, 0.24584961, 1.2216797, -4.5507812, -0.13024902, 0.8833008, -1.4101562, 2.2929688, 1.1035156, 0.3017578, -1.0097656, 1.5986328, 1.4716797, 1.2998047, 1.0761719, 0.6542969, 0.14050293, 0.21569824, -1.2050781, 1.03125, 2.5097656, -0.19116211, 0.25854492, 0.20544434, 0.0524292, -1.2607422, 0.4501953, -0.22949219, 0.88916016, 0.31152344, 2.5878906, -0.3474121, -0.890625, -1.9873047, 0.3894043, 2.9609375, -1.2509766, -2.3125, 1.9921875, 1.3847656, -1.546875, -0.39868164, -1.3359375, -0.08886719, -1.8261719, -0.5649414, 1.1064453, 1.1513672, 1.6542969, -0.13635254, 1.8232422, -1.8261719, 2.7070312, -1.2705078, -0.81884766, -0.5678711, -0.8730469, -2.1992188, -1.265625, -0.10107422, -2.4375, -1.5322266, 2.3203125, 2.0195312, -2.3007812, 0.6279297, -1.1220703, 1.1054688, 1.3095703, -2.1503906, 0.19165039, 0.21618652, -0.10498047, -0.84521484, 0.18933105, 1.78125, -1.0029297, -2.7011719, 0.4321289, -1.7675781, -0.44873047, 1.7255859, 1.390625, -2.7285156, 1.0058594, -1.1210938, 0.7578125, -0.67529297, 4.1015625, 0.35131836, -0.4892578, 1.5556641, -1.8623047, -0.9526367, -2.0644531, -5.40625, -0.027664185, -2.6289062, -0.16699219, 2.0390625, 0.47607422, 0.4790039, 0.020599365, 1.8789062, -3.015625, -0.8334961, -0.69677734, 0.99658203, -1.8701172, -0.24938965, 1.7412109, 1.1708984, -1.4765625, -2.5683594, -0.55615234, -2.6914062, -1.5, 1.9267578, -0.91748047, 0.36499023, -1.7294922, 0.0925293, -0.68603516, -1.3828125, 0.65625, -0.42211914, -0.9926758, -3.2578125, 2.1894531, 1.0664062, 0.7524414, -0.78759766, 3.1191406, 2.4433594, -0.39868164, 0.22607422, 0.41552734, 4.015625, -0.021469116, -2.8789062, -0.56103516, -1.5253906, 0.24316406, -0.0053710938, 1.1142578, 0.77197266, -1.8164062, 1.1064453, -0.8574219, 1.5849609, 1.8710938, -0.58935547, -4.1835938, 1.3417969, 0.80859375, -2.0390625, 0.36694336, -0.49389648, -1.9853516, -3.0195312, 1.0595703, -2.3222656, -0.7548828, -2.2792969, 1.2148438, -3.7636719, 1.8857422, 0.04324341, 0.33276367, 0.66503906, -1.9755859, -1.0888672, -0.05126953, -0.79248047, -1.7373047, 0.22070312, -3.0605469, -0.72265625, 2.0253906, 0.36767578, -0.26489258, -0.87402344, -0.3203125, -1.9160156, -1.8359375, -0.31567383, 0.74658203, -0.30688477, -1.0390625, 0.86376953, -0.5541992, 3.6035156, -0.5078125, 1.5839844, 0.7558594, -0.2322998, -0.96728516, 1.5292969, 2.8535156, 2.6171875, 1.03125, 1.0087891, 1.8876953, 2.4863281, 1.7919922, -0.5678711, 1.1083984, -2.0625, 1.1113281, -0.72216797, 0.953125, -1.2138672, 0.5859375, 0.12768555, 1.8896484, 1.4423828, 2.1015625, 0.5830078, -1.4091797, 2.1640625, 0.1262207, -1.0537109, -0.2602539, 0.9536133, -1.4716797, 3.875, -0.21740723, -1.9980469, -0.21069336, 2.9121094, -1.0849609, 2.2441406, 0.27197266, -1.3359375, -0.49243164, -2.015625, -2.578125, -0.37231445, -2.7910156, 0.42651367, -1.3476562, 0.5986328, -0.4873047, 2.4472656, 1.171875, 0.08404541, -0.06762695, -1.0302734, -0.69140625, 0.19421387, -0.6699219, -0.59033203, -1.953125, 0.4099121, 0.109191895, 0.93847656, 0.7661133, -0.1270752, 0.578125, -1.1875, -1.8066406, 1.2734375, 1.7275391, -0.3227539, -0.0013580322, 2.1171875, -0.50634766, 0.43969727, -1.6181641, -0.77246094, -2.1484375, 1.8945312, 1.3417969, 1.7158203, -0.17883301, -1.5556641, -2.7578125, -5.703125, -0.16748047, 1.8066406, -0.74853516, 1.1005859, -2.7382812, -0.55566406, 1.9003906, -0.6953125, -0.08258057, -1.0654297, 2.0917969, -0.6147461, 0.30371094, -2.5292969, 0.08074951, 0.84277344, 0.6044922, -1.1787109, 0.32080078, -0.03744507, -1.9511719, -2.8476562, 2.1503906, -2.8046875, -0.62939453, 1.9716797, -1.6044922, -0.09851074, 2.0253906, 0.5341797, -0.14404297, 0.88916016, -1.5625, 0.18371582, 1.7509766, -2.7714844, 0.89746094, 1.0693359, -0.7597656, 0.36669922, 0.7734375, 0.36767578, -0.41723633, -1.0693359, -0.080322266, 1.2080078, -0.59472656, -2.4550781, 0.3737793, -0.052490234, 2.1328125, 1.8466797, -1.1025391, -0.85546875, -1.9433594, -2.7539062, 0.68115234, -1.8291016, 0.27124023, 0.8041992, 2.1035156, 1.7304688, -0.7553711, 0.82373047, 1.5957031, 0.46240234, -0.9614258, 1.5595703, -1.4667969, 3.5683594, 0.9663086, -1.3857422, -3.5683594, -0.6689453, 2.0917969, 3.5644531, -1.7744141, 0.021881104, -0.12915039, -0.3005371, 1.2822266, -0.61035156, 0.63378906, 0.22644043, 1.3574219, -1.2060547, 0.14501953, 0.78027344, -1.2246094, 2.2675781, 0.8779297, -0.42382812, -0.9609375, 1.4619141, 2.0136719, -2.6738281, 1.5126953, -1.3476562, 1.1835938, -0.25585938, -1.2773438, 0.2364502, -3.0488281, 0.640625, -0.35131836, -2.6875, -4.3671875, 0.9926758, 1.2734375, -0.46289062, 0.5908203, 2.6699219, 0.26635742, 0.27197266, 1.4433594, 0.063964844, -0.65771484, -0.89697266, -1.8408203, 0.056610107, 2.3496094, -2.0488281, 0.82128906, 1.4140625, 0.7758789, -0.41259766, -0.51123047, 0.80371094, 2.3652344, 1.0869141, 2.5292969, 2.9863281, 0.19604492, 2.4726562, -0.45361328, 3.09375, 2.6933594, -1.6269531, 1.0380859, 1.6826172, 1.2294922, 1.3046875, -0.1418457, 0.023895264, -0.98291016, -0.28320312, -1.1953125, 1.1845703, 1.8076172, -3.0703125, 0.1730957, -0.47216797, -2.7167969, -2.1386719, 2.3398438, -0.81689453, 0.8046875, 1.546875, 1.2099609, 0.67041016, 1.4560547, -1.0556641, 0.18554688, -0.8925781, 2.4589844, -1.2011719, 0.734375, -1.4296875, -3.4980469, 1.0585938, 3.4921875, 0.7167969, 0.7529297, -0.16711426, -0.6308594, 0.03857422, 1.3027344, 0.26708984, -0.48632812, 0.03881836, -1.7509766, 2.2070312, 0.91796875, -1.7636719, 0.63134766, 0.18225098, -2.0136719, -4.0546875, 3.7539062, 0.47753906, -0.4453125, -0.11505127, -3.6679688, 1.6455078, -2.3671875, 0.1529541, -2.4316406, -0.32983398, 0.16760254, -1.8857422, -0.115356445, -0.26782227, -1.3808594, 2.0527344, 0.37182617, -1.1259766, 0.7890625, 0.7783203, 1.6689453, -0.25048828, 0.8354492, -0.3173828, 0.58203125, -1.0478516, 4.078125, 0.26049805, -2.7714844, 0.17297363, 2.4804688, 0.3034668, 1.5224609, -0.41870117, -0.36987305, 2.2285156, -0.4753418, -0.56591797, 0.59033203, -1.5009766, -0.6611328, 0.17443848, 0.6411133, -0.7338867, -0.88916016, 0.53271484, 0.41455078, -2.1835938, 1.4648438, 2.7714844, -1.953125, 0.91552734, 2.4082031, -1.6699219, -1.7753906, 1.0419922, 1.7841797, -2.6523438, -0.34204102, -0.82470703, 0.16870117, 0.29614258, -1.8085938, -0.096069336, 0.8178711, -1.0917969, -0.8413086, 0.09100342, -0.6635742, -0.52734375, 0.4477539, -0.95410156, 0.4855957, 3.2558594, 0.7866211, 2.4101562, -0.29614258, -0.8803711, 0.4555664, -2.0761719, -2.3164062, 1.265625, 2.6445312, 0.03390503, 0.07086182, -0.08703613, -2.6425781, -0.6669922, -1.1992188, 1.8652344, 0.32861328, -2.8964844, 0.8105469, 1.8349609, 2.2285156, 0.06958008, 1.3339844, 0.7397461, 0.87109375, 2.0234375, -1.421875, 2.2617188, -1.3359375, 0.8144531, 0.55029297, 3.5703125, 1.4091797, -1.5029297, -0.033233643, 0.58935547, 0.019088745, -2.0039062, 1.3310547, 0.8256836, 0.9008789, 1.4570312, 2.6796875, 2.4101562, 0.6586914, -0.93896484, -1.7041016, -0.609375]}, "B01GZPBCPU": {"id": "B01GZPBCPU", "original": "Brand: DOZYANT\nName: DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8\" Female Flare Nut, 2 Feet\nDescription: \nFeatures: Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8\" Female Flare swivel nut which has an outside diameter of 5/8\" In order to accommodate for the flare seat\nReplacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill.\nEasy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator.\nSafety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels\nFits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application\n", "embedding": [-1.0244141, 0.97802734, 1.3886719, 1.2861328, -0.5595703, 0.06463623, 1.5175781, -1.5976562, 1.7255859, 0.49902344, 0.8198242, 0.46655273, 2.4824219, -2.1542969, 2.8046875, 1.1572266, 2.6308594, 0.41381836, 1.2314453, 1.3320312, 0.97216797, -1.1884766, 2.2734375, -0.4416504, 1.2177734, -0.6791992, 3.9550781, -2.3457031, 0.24707031, -1.5478516, 0.88427734, 0.4946289, -0.67578125, 1.5302734, -3.390625, -0.45166016, 0.8725586, 1.4873047, -3.3554688, -0.39770508, -2.7714844, 1.1845703, 1.8642578, 0.5649414, -2.5019531, -0.5473633, 0.8754883, 2.1367188, -0.44580078, -0.6777344, 2.1171875, 1.8066406, 0.6430664, 0.6503906, -2.4589844, 2.9863281, -1.2246094, -2.8398438, 0.97753906, 0.50683594, 2.421875, -0.2253418, -2.3027344, 0.47851562, -1.5498047, 0.5180664, 1.4648438, 0.008392334, 0.15136719, -0.28271484, 0.52685547, 1.5117188, 0.14404297, -0.03137207, -0.60058594, 0.26538086, -3.4824219, 0.52978516, 1.6933594, -1.0986328, -1.4980469, 2.7207031, 1.8349609, -3.3515625, 0.76708984, -0.8251953, -0.17858887, 0.5488281, 1.796875, 1.1201172, -2.3691406, 1.0800781, -2.0351562, -3.5039062, 0.5175781, 0.024429321, 0.95947266, 1.1425781, 1.2539062, 0.25830078, -2.7167969, -0.42358398, 0.22961426, 1.1367188, -2.5722656, -0.95947266, -0.14453125, 1.6113281, -2.3652344, -0.72509766, -0.40112305, 1.2773438, 1.8701172, -0.6513672, 0.42797852, -1.3642578, -0.4765625, 0.88720703, 0.8847656, 0.9472656, 3.0957031, 0.13891602, 0.2397461, -0.30493164, 0.56933594, -0.20739746, -0.77246094, 0.79785156, 4.0820312, -1.8847656, 0.33081055, -2.5585938, 3.6132812, 0.24768066, 0.75927734, -3.7089844, -0.73046875, -2.8710938, -0.81884766, -0.46875, -2.6171875, -0.7348633, 1.3779297, -0.20776367, -4.7773438, 1.6357422, -3.8046875, 1.4736328, 2.203125, -1.6220703, 2.4707031, -1.1259766, 0.52490234, -2.625, 2.5976562, 0.37353516, -0.77978516, -1.3974609, 3.0527344, 1.2587891, 1.4482422, -1.1933594, -0.98291016, -0.3798828, -0.5410156, -2.5332031, 0.6958008, 0.6347656, -1.4550781, 0.9433594, -0.7504883, -2.8066406, -0.24645996, -0.47094727, 0.71240234, -1.1113281, 0.6533203, 1.6132812, 1.6152344, 0.36743164, -3.5820312, -2.0761719, -0.12133789, -1.0107422, 1.7226562, 0.9580078, -0.8730469, -0.45117188, 1.9902344, -1.0644531, -2.0117188, 0.9951172, 0.08416748, 1.1191406, -0.8955078, -2.3886719, -3.2402344, -0.99316406, 0.54052734, 0.4321289, -1.4023438, -2.1484375, 1.2226562, 0.3034668, -1.9658203, -2.0898438, -0.9199219, 1.1386719, 0.5883789, 1.4648438, 0.3996582, -0.69189453, 2.8085938, -0.5161133, 0.11975098, -2.2753906, 2.3496094, 2.1308594, 1.4931641, 0.9350586, -0.98535156, -1.0322266, 0.79345703, 1.6669922, 1.4658203, 0.66064453, 0.57470703, 1.6376953, -2.9902344, -2.1660156, 1.2412109, 0.84472656, -1.2763672, 0.05895996, -0.31469727, 2.8300781, 1.7304688, 1.0078125, 1.8115234, 1.3691406, 0.38232422, -1.3544922, -2.15625, -0.07836914, -0.4206543, -0.009475708, -2.625, 1.9707031, 1.1181641, 0.1484375, -0.08288574, 1.0654297, -1.3056641, -1.6914062, -1.7636719, 0.21704102, 0.140625, 1.6328125, 0.46362305, -1.4580078, 2.4179688, 0.1105957, 0.21618652, 1.0976562, 1.3564453, 0.09289551, 2.515625, -2.15625, -0.9169922, -1.2529297, 0.20690918, 2.3242188, 2.7363281, -0.076538086, 0.81884766, 1.7197266, -2.1757812, 2.1191406, -0.26782227, -0.01991272, 1.6533203, 0.6381836, 1.8662109, -1.84375, 1.0322266, 1.2294922, 0.011734009, -0.87158203, -2.0332031, -0.2565918, 3.5761719, -0.12939453, -3.7949219, 2.734375, 1.9882812, 1.1386719, 2.1601562, -0.5205078, -1.2080078, 0.27392578, -0.06286621, 1.0195312, -1.4082031, 1.4404297, 1.6777344, 0.05621338, -0.0032596588, -2.1933594, -0.8955078, 1.7626953, -1.8720703, -1.5654297, -1.0810547, 1.3486328, -1.9716797, -2.7851562, 0.59765625, -2.4257812, -0.26757812, -0.37524414, 0.095581055, 0.55078125, 0.06274414, -1.0390625, 0.40283203, 0.9433594, -1.6201172, 0.2993164, 0.69140625, -1.390625, 0.6176758, 0.017425537, 0.4326172, -1.8232422, -1.7851562, -0.18029785, -2.03125, -4.1015625, 1.5986328, -1.6669922, -1.4550781, -1.1660156, 0.67285156, 3.3125, 0.55566406, -1.6210938, -2.6113281, -0.54785156, -0.08850098, -0.3256836, 0.020217896, 2.4941406, -0.33496094, -1.9072266, -0.13024902, -0.012802124, 1.1181641, 1.4072266, -1.2714844, -0.22680664, 0.8330078, 0.18981934, -1.1591797, 0.6386719, 1.7646484, -0.7050781, 0.23059082, -3.9648438, -0.47998047, -1.0927734, 1.0986328, -0.6088867, 1.9804688, -2.7207031, -0.60839844, 0.8876953, -1.7070312, 1.8291016, -2.4414062, 1.8896484, -0.06530762, 0.11895752, 1.3164062, -2.6210938, -3.6191406, 0.46679688, 1.3515625, -0.3959961, -0.7553711, -2.6347656, -0.64697266, 0.5493164, 0.12322998, -0.66845703, -0.17614746, -1.3056641, 1.6796875, -0.19116211, -0.0007376671, 0.3244629, 1.2910156, 0.56689453, -1.6679688, 0.9946289, -0.109191895, -2.0839844, -1.2792969, -0.55371094, 0.6777344, 0.16552734, -0.5019531, 1.0908203, 0.13549805, 1.6542969, -0.13256836, -3.5039062, -0.7133789, 0.9716797, -2.7207031, 2.6660156, 0.28198242, -0.109802246, -3.8300781, -1.5527344, 3.0214844, 1.703125, 3.5332031, -0.016983032, 0.89453125, 0.3400879, -0.5053711, -0.29785156, -0.42529297, -0.087890625, 4.4648438, -3.0019531, -1.1083984, 0.01399231, -0.85253906, -3.4257812, -0.12731934, 2.4394531, -0.29785156, 2.75, 0.20996094, 1.5761719, 0.98583984, 0.9550781, 2.4863281, -0.28344727, 0.4189453, 0.78466797, -0.16088867, -0.0018539429, -1.6767578, 2.5585938, 1.2460938, 1.8291016, 0.86865234, -0.31640625, 1.0507812, -1.6435547, 0.55859375, 0.4951172, 1.7998047, -1.2988281, 2.234375, -1.2021484, -0.066833496, 0.108947754, -0.65283203, 2.1113281, -2.6542969, -0.56152344, 3.2402344, 1.4326172, -0.93847656, -0.97802734, 0.83935547, 0.09094238, -0.6723633, -0.5854492, 0.32739258, 1.1220703, 1.4003906, -0.72314453, -0.36083984, -2.0664062, 1.9248047, -1.546875, -0.18115234, -1.4267578, 0.9790039, -1.4775391, -1.0615234, 0.2788086, -2.4941406, -0.703125, 1.8408203, 1.5410156, -0.7524414, 1.4121094, -1.3964844, 1.3505859, 1.8203125, -1.7568359, 0.10797119, 0.30493164, -0.58496094, 0.43676758, -0.47802734, 3.4550781, 0.23876953, -3.0605469, -0.7792969, -2.8886719, -0.37475586, -1.1494141, -0.41674805, -2.0351562, 1.2451172, 0.59277344, 1.3291016, 0.0211792, 3.2148438, -0.6347656, -1.3027344, 2.7148438, -3.1484375, 0.07897949, -1.9287109, -5.328125, 0.95996094, -3.0917969, 0.1315918, 1.8085938, 0.77197266, 0.36669922, 3.1230469, 2.375, -3.1699219, -0.2927246, -1.078125, 0.04171753, -1.8955078, -0.81884766, 2.0429688, 0.86279297, -0.3034668, -2.6757812, -0.3774414, -1.8720703, -0.17700195, 0.84277344, -2.0585938, 0.58496094, -0.9472656, 0.5595703, -1.4082031, -0.35620117, 1.6494141, -0.4572754, -0.8286133, -3.4492188, 3.0097656, -0.11975098, 1.390625, -1.3330078, 2.828125, 2.2773438, 0.14758301, 1.0009766, 0.8696289, 3.8027344, -0.36206055, -2.5078125, -1.578125, -0.119018555, 0.66552734, -1.2119141, -0.51904297, 0.2668457, -2.5898438, 1.90625, -0.38476562, 1.3623047, 2.2050781, 0.06677246, -2.3203125, 0.6386719, 0.16870117, -1.71875, -0.40356445, 0.28198242, -1.1582031, -1.2011719, -0.20751953, -2.5546875, 1.515625, -2.2109375, -2.0839844, -2.4101562, 0.23803711, -0.1003418, -0.41235352, 0.40698242, -2.2988281, -0.18054199, -0.35961914, -0.8359375, -1.3496094, -0.81103516, -3.2265625, -1.3066406, 1.4101562, 1.9658203, 0.0793457, -1.2314453, -0.75878906, -1.2802734, -1.2626953, 0.20336914, 0.6899414, -0.5214844, -1.4541016, -0.5019531, -0.08935547, 2.609375, -0.8676758, 1.3212891, 2.09375, -0.62890625, -1.5644531, 2.1835938, 2.09375, 2.3632812, 0.9370117, 1.2421875, 3.0273438, 1.140625, 0.24853516, 0.89404297, 0.33862305, -2.1464844, 0.43798828, 0.19458008, 0.9458008, -1.7636719, 1.1933594, 1.9814453, 1.8662109, 1.7714844, 0.93603516, 0.6225586, -4.3007812, 1.8115234, -0.16101074, -2.5273438, -0.3251953, -0.6660156, -2.2207031, 3.0664062, -0.3461914, -2.3945312, -0.08081055, 0.8046875, -0.6611328, 1.3369141, 0.26708984, -0.9448242, -0.2758789, -2.0136719, -1.6884766, -0.75683594, -1.3945312, 2.1542969, -1.4560547, 1.5839844, 0.71777344, 1.6152344, 1.9443359, -1.0332031, -1.4208984, -0.7475586, -1.7285156, -0.4873047, -0.7783203, -1.7949219, -0.65185547, -0.1060791, 2.4277344, 2.6914062, 1.5957031, -0.53271484, 0.6845703, -1.6074219, -1.5009766, -1.5292969, 1.5957031, -0.5566406, -1.3212891, 3.0253906, -1.1962891, -0.068115234, -1.6855469, -0.22692871, -0.11517334, 2.5703125, 0.1550293, 1.2333984, -0.9790039, 0.7270508, -2.296875, -3.3769531, -1.2333984, 1.171875, 0.72802734, 1.2070312, -0.8154297, 0.05078125, 2.0175781, -0.5175781, -0.65234375, -1.8613281, 0.5439453, 0.014846802, 0.07763672, 0.14709473, -0.11975098, -0.49169922, 1.0429688, 0.01209259, 0.65234375, 0.65722656, -3.59375, -2.3007812, 2.4472656, -2.4667969, -0.67529297, 2.0976562, -1.8085938, -0.94140625, 0.6723633, -0.1907959, -1.3720703, 1.4384766, -2.3671875, 0.34765625, 0.29003906, -2.3925781, 1.1572266, 0.9042969, -0.84521484, 0.8100586, 1.3603516, 3.25, 0.19165039, 0.4560547, 1.0625, 1.6630859, 0.22998047, -3.078125, -0.6230469, 0.5136719, 1.9892578, 0.29174805, -2.1738281, -0.6113281, -2.5976562, -1.5410156, 0.28393555, -1.9238281, 1.3740234, 0.76953125, 0.37182617, 1.0078125, -0.92285156, 0.23303223, 0.85546875, -0.36547852, -0.6020508, 1.1855469, -0.8881836, 3.5449219, 2.0527344, -1.2050781, -1.4091797, -0.86865234, 0.7392578, 3.640625, -0.2956543, 1.3027344, -0.4946289, -0.92285156, 0.8642578, -1.6611328, 1.6728516, 0.66308594, -0.81640625, 0.13659668, -1.0957031, 1.9306641, -1.8037109, 0.4555664, 1.7412109, -0.6586914, -1.0195312, 2.4414062, 0.58251953, -3.0800781, 0.17578125, -1.1435547, 0.85009766, -1.7890625, -1.7392578, 0.78222656, -2.3359375, -0.48754883, -0.6933594, -1.9287109, -3.5488281, 1.6230469, -0.14196777, 0.35302734, 0.50341797, 2.2851562, -0.5800781, 0.59228516, 0.9082031, -1.2822266, -0.6801758, -0.34887695, -2.5019531, 0.7446289, 0.4267578, -1.5195312, 0.6542969, 1.5625, 0.6503906, -0.45825195, 1.0537109, 1.4814453, 2.3457031, 0.28125, 2.2382812, 2.7890625, 1.5439453, 2.1113281, 1.0078125, 3.3066406, 1.9042969, -0.5371094, 1.2753906, 1.6054688, -0.4951172, 1.3564453, -0.43945312, 0.3564453, -1.1689453, 0.41186523, -0.27172852, 0.39648438, 1.9960938, -2.9960938, -0.6791992, -0.6645508, -0.30517578, -4.1054688, 0.4584961, -2.1308594, 0.03616333, 1.4638672, 1.2773438, 1.7880859, 2.6171875, -0.6040039, 0.20715332, 0.4074707, 3.8378906, -2.1757812, -0.5439453, -0.18896484, -1.4892578, 0.35742188, 0.92578125, 2.2285156, 0.40405273, 1.4433594, 0.6621094, -0.3840332, 0.58203125, 1.0136719, -2.0097656, 0.9663086, -0.26391602, 2.1816406, 2.9882812, -1.9414062, 1.8242188, 0.27270508, -2.8886719, -3.5546875, 2.5371094, 1.234375, 0.34350586, -0.041290283, -4.4414062, 0.8208008, -0.3659668, 0.1508789, -1.828125, 1.1367188, -0.35083008, -1.9648438, 1.0537109, -0.6035156, -1.4384766, 2.9296875, 1.4902344, -2.0527344, 1.7978516, 2.0820312, 2.046875, -0.11828613, 1.8945312, 0.6357422, 0.9536133, -1.8984375, 3.1601562, 0.5541992, -2.21875, -0.12322998, 2.59375, 1.0166016, 1.0859375, -0.34375, -0.6484375, 0.2919922, 1.3554688, -0.50927734, -0.4716797, -1.9580078, -0.5078125, -0.13415527, -0.4699707, 0.39746094, -1.7636719, 2.2792969, 2.3242188, -2.4257812, 0.3461914, 1.4785156, -1.2431641, 2.8300781, 0.9042969, -1.671875, -1.5810547, 0.078308105, 0.86035156, -1.5644531, -1.0878906, 1.6835938, 0.041809082, -0.32739258, -2.0703125, -1.5361328, 1.3955078, -0.31762695, -0.73046875, 0.41259766, -1.0507812, -0.9970703, 1.2089844, -1.5039062, 0.70751953, 4.09375, 0.87890625, 1.0390625, -1.9140625, -0.7363281, -0.2770996, -1.7666016, -1.5380859, 0.60302734, 2.9628906, 1.0859375, 0.5991211, -2.1699219, -3.3769531, -0.5024414, -1.625, 3.0527344, -0.9536133, -1.4443359, 0.4189453, 0.6010742, 2.2441406, 0.26708984, 0.6333008, -0.72216797, 0.010368347, 1.8271484, -0.7597656, 0.6977539, -0.55371094, 0.75878906, 1.0869141, 3.4550781, 2.0839844, 0.72998047, -0.5830078, 2.0546875, 0.3046875, -1.6337891, -0.12237549, -0.54248047, 0.3552246, 1.65625, 0.50634766, 2.1035156, 1.5859375, -0.8486328, -0.70166016, -0.51171875]}, "B01AH5M8M0": {"id": "B01AH5M8M0", "original": "Brand: Concord\nName: Concord Banjo 16\u201d Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove\nDescription:

          This Concord single burner portable Gas Stove is built like a tank..

          Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10\u201d single burner head (replaceable), and stand.

          This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you're ready to go. It also has removable legs for easy storage.

          Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

          Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




          Measurements: Burner Stand 16.5\" Wide x 12\" Height

          Burner head is 10\" Wide.



          Concord burners - make every outing count.
          \nFeatures: Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5\"x16.5\"x12\"(Height).\nBurner can burn up to 200,000 BTU.\nHigh pressure CSA Certified 20 PSI regulator, hose, and connector included.\nStand has detachable legs for easy storage when not in use.\nCapable of supporting up to 400 LB or 200 QT pot filled with liquid.\n", "embedding": [-1.1796875, 1.359375, 2.0214844, 1.5449219, -0.76220703, 0.49023438, 1.9638672, -0.99560547, -3.1601562, 2.078125, 2.3144531, -0.53222656, 0.9350586, -1.2548828, -1.2910156, 1.2822266, 0.19824219, -0.7001953, -0.77685547, 1.5986328, 2.8066406, 0.48339844, 2.5390625, -1.4921875, -1.1533203, 1.1669922, 1.8369141, -3.125, -1.9794922, -2.5644531, 1.0634766, -1.2939453, 0.84814453, 2.34375, -2.2050781, -0.7392578, -1.5253906, -0.26123047, -3.4140625, -0.2770996, -0.5703125, 1.8378906, 3.78125, -0.47802734, -2.1503906, -0.8046875, 0.94140625, 0.6767578, -1.4785156, 0.7182617, 0.057678223, -1.5820312, 0.45947266, 0.03375244, -1.1806641, 1.2011719, 0.2746582, -2.1738281, 1.2705078, 0.70996094, 2.6074219, 1.8193359, -1.6757812, 1.3085938, -1.609375, -0.21252441, 0.58251953, 0.80029297, -0.7607422, 0.90771484, 2.9863281, -0.7661133, -1.0009766, -0.63427734, -0.5102539, 0.1307373, -3.9414062, 1.1699219, 2.234375, 0.35083008, -1.6591797, 1.171875, 2.8984375, -0.9111328, -1.3134766, 0.9038086, -0.18322754, -1.7207031, 0.10321045, 0.8876953, -0.5859375, 2.28125, -0.8515625, -2.8242188, 1.9082031, -2.390625, 1.0058594, 0.9873047, 0.14318848, 1.4990234, -1.0322266, -0.25585938, -1.8339844, 0.1796875, -3.5683594, -1.2685547, 2.8691406, 0.7416992, -2.6152344, 1.7548828, -1.9833984, -1.4921875, 1.2822266, -0.103149414, 1.8457031, 0.06451416, -2.0488281, 2.7519531, 2.1816406, -0.66259766, 3.859375, -0.23474121, 1.0537109, -0.60546875, -0.33642578, 1.0673828, -2.109375, 0.95214844, 3.9511719, -2.0273438, -0.5805664, -1.0439453, 3.4765625, 0.14147949, -1.3505859, -2.2070312, -0.1048584, -2.6113281, -3.0488281, 0.73828125, -3.3261719, 1.9121094, 0.65283203, -0.6044922, -3.4277344, -1.6015625, -0.5703125, 1.3798828, 0.81884766, -2.7089844, -0.81933594, -2.4121094, -0.38842773, -2.125, 1.4833984, 0.5180664, -0.3569336, -1.1484375, 3.2851562, 0.7890625, 1.7158203, -1.21875, -1.6914062, 3.1777344, -1.3613281, -0.20202637, 1.6083984, 2.2246094, -2.6640625, 0.17138672, 0.32299805, -0.45751953, 0.10784912, 0.40527344, 1.3925781, -1.5449219, -2.9355469, 2.8339844, 0.97558594, -0.64746094, -2.7324219, -4.0742188, 2.3613281, 0.5395508, -0.07019043, -0.8144531, -0.075683594, 0.35595703, 0.42016602, -2.9941406, -2.2695312, 1.1308594, -0.17749023, -0.39404297, -0.011367798, -1.7910156, 0.066589355, -1.8535156, -0.009841919, 1.8378906, -0.15771484, 0.46044922, -0.050628662, 1.2324219, -1.8681641, -1.1318359, -0.96875, -0.31567383, 1.3173828, 3.9980469, 1.7958984, -1.4384766, 2.7988281, -0.11871338, -1.6611328, -0.20141602, 1.7451172, 1.5722656, 0.77490234, 1.5996094, -0.12902832, -1.8173828, 2.0019531, 2.6152344, 1.4677734, 1.9755859, 1.3671875, -1.6669922, -1.7138672, -1.5556641, 1.515625, -0.109558105, -0.6582031, 1.8388672, -0.15063477, 3.1855469, 1.4121094, -1.7832031, 0.14343262, -0.5053711, 1.3193359, -0.42944336, 0.40795898, -0.5908203, -2.9726562, 1.7617188, 0.2866211, 1.2431641, 3.3671875, 1.5839844, -1.3583984, -2.296875, 0.27856445, -0.70166016, -0.80566406, -0.8955078, 0.6503906, 0.91064453, -0.54345703, -3.2734375, 3.5488281, 2.3085938, -0.48120117, -0.38623047, -1.0888672, -1.2597656, 2.0488281, 1.4453125, -1.7216797, 1.2910156, 1.1611328, 0.4362793, 4.8085938, -1.8798828, 0.04977417, -1.5380859, -0.053222656, 3.9160156, -0.36523438, 1.8945312, 1.6240234, -2.2109375, 2.4433594, -3.5097656, 0.85058594, 2.3027344, 2.9492188, -0.42944336, -0.38427734, -0.42211914, 5.8867188, -0.6972656, -2.5390625, 3.6816406, -2.2402344, 1.1035156, -0.7705078, 0.6381836, 1.9960938, 0.35424805, 0.3959961, -0.6401367, -1.5009766, 0.7705078, -1.4345703, -3.3496094, 1.0449219, -2.1660156, 0.21459961, 0.5727539, -0.06604004, -0.9506836, -0.76416016, 2.5839844, -2.7773438, 1.2138672, 2.0097656, -3.625, 0.84375, 2.4414062, 1.4199219, 1.4160156, -1, -0.5654297, 0.8652344, 0.1027832, -0.19445801, 0.9536133, 0.92871094, -0.02722168, -0.4248047, -1.1054688, 0.35424805, -2.9257812, -2.3476562, 0.29077148, 0.9692383, -4.1640625, 0.21459961, -1.5332031, -0.8774414, 2.0976562, -3.2109375, -0.31518555, -1.453125, -1.5546875, -0.19628906, 0.23950195, -1.2929688, -0.28051758, 1.5419922, 0.6855469, -1.3955078, -2.4609375, -0.87841797, -1.9111328, -0.2788086, 0.06945801, -0.3330078, 2.8398438, -0.07940674, 0.47705078, -0.9941406, 1.1513672, -0.73583984, -2.1132812, 0.4333496, -2.84375, -0.9819336, -2.5546875, -0.93603516, -0.1706543, -0.59716797, -2.9394531, 0.021240234, 1.3925781, -0.73828125, 4.5351562, 0.35131836, 0.54003906, -0.08538818, -0.38964844, -0.37402344, -1.6083984, -4.2148438, 0.9458008, -0.06335449, -1.1640625, -2.5917969, -1.9833984, 0.18786621, -1.2353516, -0.27172852, -1.7783203, -0.39990234, -0.75878906, -0.75390625, -1.4121094, -1.0683594, -0.30126953, 0.17919922, -1.671875, -3.453125, -1.2265625, -1.2763672, -0.99853516, -0.17871094, 1.3486328, 0.1895752, 1.4472656, 1.328125, 2.0605469, 0.85009766, 0.06762695, -0.40942383, -3.0019531, 0.41064453, 1.5722656, -0.15710449, 1.6171875, -2.0585938, -0.39135742, -2.9726562, -1.6845703, 1.6171875, -0.30297852, 1.5546875, 0.76708984, -0.9189453, 2.078125, 1.9912109, -0.9663086, -2.5546875, -1.6953125, 2.484375, -2.0761719, -1.4863281, 2.7070312, 1.8378906, -1.5507812, -0.37695312, 2.109375, 0.8457031, 1.9609375, 1.7041016, 2.7148438, -0.7597656, -0.19995117, 0.38305664, 3.2851562, 0.39257812, 1.3554688, -0.122924805, 0.1977539, 1.2539062, 1.7539062, -0.14941406, 1.2861328, 2.1269531, 1.9003906, 0.7001953, -4.6601562, -0.13647461, -0.62060547, 0.8935547, 1.0048828, 3.0078125, -0.54052734, -2.2402344, -4.2070312, 1.3300781, 2.0898438, 0.21936035, -0.2878418, 1.2324219, -0.07647705, 0.15063477, 0.48608398, 0.49389648, 0.7480469, -0.13317871, 2.2402344, 1.0712891, 0.036376953, 1.5556641, -0.6245117, 0.7939453, -1.5654297, -0.28857422, -1.4345703, -1.8876953, 0.6689453, 1.2919922, -3.3222656, -3.4003906, 0.12438965, 2.3183594, -0.55078125, 3.5976562, 1.7255859, -2.0820312, -0.6958008, -1.4550781, -0.97265625, 1.8203125, -1.6699219, -0.6274414, -0.98828125, -0.3413086, -1.7998047, 0.7597656, 0.67871094, 0.6333008, -0.8432617, 1.6376953, -2.8671875, -0.9848633, -0.48828125, -1.5625, -0.8413086, 1.3115234, -1.6318359, -0.4555664, -2.6640625, 3.9160156, -1.8544922, 0.30566406, 2.0449219, -2.2636719, 0.04373169, -1.4580078, -4, 1.6904297, -0.2536621, -0.4033203, 2.5625, -0.49194336, -1.0380859, 1.2783203, 0.105651855, -2.1894531, -0.4819336, -2.0273438, 1.609375, -3.0507812, -1.2207031, 2.5820312, 0.74658203, -2.8671875, -2.1894531, 0.42382812, -0.05126953, 1.2509766, 2.21875, -2.6855469, 0.91015625, -0.08691406, 1.0107422, -0.2088623, -1.2929688, 2.7304688, -0.2133789, -1.7890625, -2.2460938, -0.20605469, 1.2255859, -0.63134766, 0.7583008, 2.09375, 1.1347656, -1.9462891, 0.3623047, 1.8242188, 2.0722656, -0.34570312, -1.8359375, -1.2304688, 0.6791992, -2.2597656, 0.6713867, 0.7939453, -3.8222656, -2.2851562, 0.84814453, 0.19567871, 2.1679688, 2.4238281, -0.6357422, 0.35107422, -0.105773926, 1.1542969, -2.2734375, -0.36865234, 0.55908203, -0.7128906, -1.7597656, 1.9970703, -2.7753906, -0.49169922, -1.5283203, -0.13720703, -2.3554688, 3.2519531, 1.7294922, 1.2744141, 1.7177734, -1.4882812, -1.7958984, 0.63671875, 0.73828125, -0.049072266, 1.9003906, -1.0410156, -0.8076172, 1.9130859, 1.7255859, 0.007160187, -1.671875, 1.6904297, -1.6123047, -2.0019531, -0.3232422, 0.5834961, -2.5839844, 0.17565918, 1.1894531, -1.5458984, 2.4882812, -3.2070312, -0.64501953, -0.88720703, 1.2841797, -1.9667969, -0.4777832, 0.6040039, 0.07183838, 0.57470703, -0.052337646, 0.66503906, -0.3605957, 2.5351562, 0.0635376, 2.265625, 2.078125, 0.6982422, -0.67529297, 0.05166626, -0.3996582, -0.9296875, -0.59814453, 0.48754883, 0.23327637, 3.4277344, 2.1738281, -2.1054688, 2.8925781, 0.5048828, -1.7675781, -2.7011719, -0.07232666, -0.29296875, 2.1992188, 1.6289062, -1.9326172, 0.13452148, 4.4023438, -0.89208984, 1.8320312, -0.7807617, -1.3095703, -0.11608887, -2.3105469, -1.2324219, -0.8901367, -1.5820312, -0.048309326, -1.8623047, 0.4152832, -1.5068359, 0.13183594, 2.2070312, 0.3581543, -2.2558594, 3.2832031, 0.16210938, -0.47460938, -2.1738281, -1.6621094, -2.8144531, 0.88378906, 1.4472656, 1.2470703, 3.0664062, -0.90283203, 1.0244141, -1.9199219, -1.4345703, -0.89746094, 1.5380859, -0.96875, -0.34594727, 2.0859375, -0.87890625, 2.0351562, -1.6015625, -2.2226562, -0.97314453, 1.6298828, 0.8515625, -1.8046875, -1.0742188, -1.8417969, -3.0175781, -4.1132812, 0.060272217, 2.4941406, -0.21081543, -0.4428711, 0.22924805, -0.6015625, -1.7587891, -0.18701172, -0.37475586, -4.0078125, 0.2421875, 1.1972656, -1.1142578, -0.5527344, -0.032196045, 0.053894043, 0.8120117, 0.5888672, -1.1259766, 0.12335205, -2.6640625, 0.63671875, 1.078125, -1.5029297, 1.3320312, -0.12915039, -0.9682617, 1.2138672, 3.5390625, 0.57666016, 0.75, 2.0097656, -3.9765625, -0.5419922, 1.2285156, -0.101257324, -0.10217285, 2.1308594, -1.2890625, 1.7509766, -1.8164062, 0.19543457, 1.0537109, 1.8671875, 0.5493164, 0.92529297, 1.5029297, -1.4375, 0.5571289, -0.78515625, 1.7197266, 2.0234375, -0.7421875, -1.2324219, -2.2363281, -1.1943359, 1.9453125, -0.8964844, 0.50439453, -2.8144531, 1.4667969, 1.2021484, 0.2602539, 0.23376465, 0.7319336, -1.3417969, 2.7089844, 1.0654297, -1.2138672, 2.5820312, 2.2226562, -1.3505859, -3.0390625, -0.5961914, 1.8720703, -0.7729492, 1.6640625, -1.953125, 1.5488281, -2.1484375, 1.0595703, -0.19274902, 1.9589844, 1.1660156, -0.027359009, -2.0742188, 1.9492188, 2.875, -0.5161133, 0.8857422, 0.44921875, -1.6621094, -1.4414062, 3.5976562, 1.5068359, -0.83496094, 0.9589844, -2.2265625, 2.140625, -0.0049209595, -0.28759766, 1.5537109, -0.90185547, -0.7705078, -2.0859375, -0.8017578, -2.1972656, 1.7265625, 2.0683594, 0.6767578, 0.44970703, 0.7080078, 0.12939453, 1.2128906, 0.6538086, 2.2167969, 0.40039062, 1.4541016, -1.3320312, -0.4428711, 2.65625, -2.6484375, -0.12854004, 2.8066406, -0.39697266, -0.72265625, 2.4628906, 0.12841797, 2.8554688, 1.9160156, 1.3173828, 0.44506836, 1.9208984, 5.5703125, 2.1015625, 1.7783203, 1.5537109, 1.0478516, -1.8388672, 1.8515625, 2.5390625, -1.2929688, -1.3339844, 0.28564453, -0.7026367, -0.17089844, -1.2861328, 0.46704102, -0.12976074, -6.0703125, 1.7089844, 0.3815918, 2.6347656, -0.49169922, 0.055480957, 0.08081055, -0.5317383, -0.2211914, -1.4511719, 0.08795166, -1.5009766, -0.16308594, -1.0292969, 0.3815918, 1.5722656, -2.9765625, 1.2988281, -1.3916016, -2.6835938, 0.14648438, 0.8227539, 0.96191406, 1.6044922, -0.33398438, 3.1738281, 0.8046875, -6.9737434e-05, 1.8662109, -1.5507812, 1.9550781, 0.6542969, 1.9169922, 0.6586914, 0.09277344, 2.453125, -2.8242188, -3.1835938, -2.9824219, 2.8671875, 0.85253906, 1.0205078, 1.6464844, -0.6430664, 3.2441406, 1.4736328, 1.2041016, -2.2324219, 2.1015625, -1.2109375, -0.3059082, -2.3730469, 1.7871094, -1.4755859, 2.0292969, 2.7734375, -1.8457031, 1.0019531, -0.07849121, 2.4707031, 1.3828125, 0.59228516, 0.6933594, 0.62109375, -2.1015625, 1.0576172, 1.2001953, -1.734375, -0.83496094, 2.5253906, 1.7509766, 0.43969727, 0.08251953, -0.3310547, 0.34057617, -0.81396484, 0.9291992, 0.62402344, -1.7958984, -2.2988281, -0.8930664, -0.18847656, -1.234375, -1.8242188, 1.4345703, 2.1054688, -2.0683594, 0.9267578, 0.8876953, 0.028533936, 0.34716797, 1.2373047, 0.5805664, -0.09820557, -1.6669922, -0.0032196045, -2.5039062, -1.8164062, 0.5371094, 0.08300781, 3.1347656, -0.78271484, 0.9604492, -1.5761719, 1.0839844, 1.609375, 1.4111328, -1.5244141, -0.003944397, 0.328125, 0.25805664, -1.4326172, 3.3691406, -1.2285156, 0.47851562, 0.15356445, -2.1699219, 0.2939453, -2.2597656, -1.5244141, 1.875, 1.9472656, 1.4257812, 2.0820312, -1.8779297, -3.3476562, -2.40625, -1.1123047, 1.4931641, 1.2734375, -0.56640625, 2.0449219, 0.73339844, 1.6679688, -0.72558594, -1.3173828, -0.36523438, 1.4414062, 2.0742188, 0.3930664, 1.8613281, 0.0040397644, 1.8339844, 0.048858643, 3.984375, 1.1054688, -0.34472656, 0.33422852, 1.5800781, 1.0966797, -3.5410156, 1.3339844, -2.78125, -0.70703125, -0.13354492, -0.81396484, 3.3066406, 0.5566406, -1.0478516, -1.2763672, -2.2832031]}, "B07KM2GSW7": {"id": "B07KM2GSW7", "original": "Brand: ROVSUN\nName: ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing\nDescription:

          75,000 BTU Outdoor Propane Stove
          Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

          SPECIFICATON
          Material: Cast Iron
          Output: 75,000 BTU
          Burner Diameter: 10.24 inch
          Hose: 47.2 inch
          Dimension: 15.7\"L x 15.7\"W x 29.9\"H

          \nFeatures: 75,000BTU \u2605 Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time.\nQUICK ASSEMBLY \u2605 Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7\u2019\u2019 x 15.7\u2019\u2019. ONLY works with propane, any other gas is not available.\nEASY OPERATION \u2661 Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow.\nSPACE-SAVING \u2661 Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height.\nSTURDY FRAME \u2661 This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.\n", "embedding": [-1.9169922, 1.6025391, 2.2695312, 2.0136719, -0.31176758, 1.9082031, 2.0722656, -1.8525391, -2.1738281, 1.7392578, 0.6796875, -0.8671875, 0.049957275, -2.875, -0.029937744, 1.5869141, -0.47851562, 0.9526367, -0.45239258, -0.097229004, 1.2900391, 1.0654297, 2.9042969, -0.40649414, 0.5395508, 0.53759766, 2.4335938, -3.21875, -1.8271484, -0.7373047, 1.9863281, 0.89501953, 0.97021484, 2.0371094, -2.5664062, -1.5712891, -2.2089844, 0.8774414, -3.2851562, 0.044128418, -0.07696533, -0.07312012, 1.2578125, 1.7138672, -2.1855469, -0.7739258, 1.2880859, 0.20422363, -0.68652344, 0.47094727, -0.95654297, -1.1269531, -1.1416016, 1.2958984, -2.7207031, 0.5776367, 0.5595703, -2.3925781, 1.5009766, 0.9765625, 0.20690918, 0.31518555, -2.296875, 0.8754883, -0.63378906, 0.02671814, 0.2487793, 0.7783203, 0.043426514, -0.65771484, 2.7226562, -0.8310547, -1.4482422, 0.79052734, -0.4597168, -1.3652344, -2.4628906, 0.50146484, 4.421875, -0.39013672, -2.8632812, 1.8779297, 2.9824219, -0.32861328, -1.6826172, 0.86621094, -1.6728516, -0.8227539, 0.77197266, -0.10455322, -0.94091797, 3.2363281, -2.7128906, -3.1699219, 0.8798828, -0.6040039, 1.2275391, 0.7006836, -0.63720703, -0.3942871, -0.39086914, 0.15258789, -0.5541992, -0.9111328, -1.1787109, -0.3256836, 1.6025391, 0.43115234, -2.8339844, 1.1054688, -2.8007812, -0.2536621, 1.6669922, -0.76953125, 1.8076172, -0.8540039, -1.7080078, 1.0732422, 3.7539062, -0.05239868, 3.6757812, 0.46484375, 1.0800781, 0.1385498, 0.0284729, 1.6162109, -0.5131836, 0.6586914, 3.0625, -1.0605469, -0.76708984, -2.7070312, 2.0605469, -0.54833984, -0.006877899, -1.0009766, -1.1552734, -3.1875, -4.8125, 0.18188477, -4.4335938, 0.77441406, 1.5205078, -0.5756836, -4.5195312, -0.86376953, 0.54345703, 1.5498047, 0.7583008, -2.4316406, 0.1875, -0.7573242, 0.53222656, -2.4082031, 1.1894531, -0.4885254, -0.9838867, -0.7080078, 1.9609375, 0.90283203, 1.1328125, -2.4160156, -0.7080078, 2.5605469, 0.54003906, -2.0820312, 0.31835938, 0.90625, -1.4794922, 0.83496094, 0.81640625, -1.9980469, -0.3474121, 0.7529297, 1.1279297, -1.6181641, -1.8222656, 3.4648438, 2.0253906, -1.671875, -3.0800781, -1.6474609, 1.7558594, 2.9160156, -0.6640625, 0.26367188, 0.13574219, 0.26000977, -0.33520508, -1.3330078, -0.9838867, -0.48706055, -0.09631348, -0.5571289, 1.2207031, -2.390625, -1.8779297, -2.65625, -1.0400391, 1.7626953, -1.0302734, -0.19726562, 0.11199951, 0.5732422, -3.5800781, -0.49658203, -0.58496094, -0.69140625, 1.1308594, 1.4433594, 0.98779297, -1.3115234, 3.1894531, 0.13806152, -1.2255859, -0.75390625, 2.578125, 2.3847656, 2.0585938, 2.1445312, -0.06903076, -0.4194336, 1.8232422, 1.0234375, 0.86083984, 2.0664062, 0.14099121, -0.088012695, -1.78125, -0.3581543, 4.4414062, -0.25146484, -0.6772461, 0.64453125, -0.9501953, 2.7695312, 2.2363281, -0.031433105, -0.38061523, -1.5, -0.08282471, -2.703125, 0.46118164, 0.3540039, -0.9350586, 0.69433594, -0.53222656, 1.2753906, 2.8007812, 0.20532227, -2.0410156, -0.82910156, 0.47021484, -1.7714844, -0.64453125, -1.0654297, 1.1943359, -0.81396484, -1.4238281, -1.4267578, 2.4472656, 1.8876953, -0.6645508, 1.2421875, -1.6953125, -1.2275391, 2.2324219, 1.8115234, -2.421875, -0.8154297, -0.31835938, 1.9404297, 4.0703125, -0.04647827, 1.6611328, -1.5537109, -1.1552734, 3.9433594, 0.10192871, 2.9960938, 0.54833984, -3.0117188, 2.0566406, -2.2050781, 1.4482422, 1.2128906, 2.7324219, 1.6025391, -0.67578125, 1.2353516, 6.0273438, -1.0830078, -2.7519531, 2.7382812, -1.15625, 0.1652832, 0.8823242, 1.2529297, 1.3037109, -0.46484375, 1.5849609, -1.3691406, -1.359375, 1.2128906, -1.9609375, -2.2832031, 1, -3.8320312, 0.5151367, 1.1464844, -1.1376953, -2.3242188, -1.4628906, 1.3896484, -1.5849609, 0.6958008, 2.6992188, -3.109375, 1.703125, 1.9072266, -0.27172852, 0.44555664, -0.7895508, -2.1855469, 1.2412109, 1.0986328, -0.025497437, 1.5859375, 0.31323242, -0.47436523, -1.4091797, -2.5195312, 0.28588867, -1.9560547, -2.5527344, -0.5654297, -2.7753906, -2.6367188, -0.18005371, -1.3408203, -0.88134766, 0.72216797, -2.3164062, -0.9267578, -1.2294922, -3.234375, -1.1123047, -1.4453125, -1.3359375, 0.203125, 1.0126953, 1.2431641, -0.15527344, -2.65625, -0.640625, -0.16137695, -1.2841797, -0.52978516, -0.9428711, 0.044830322, -0.81933594, -0.67041016, -0.14208984, -0.044128418, 0.65625, -2.0898438, 0.58251953, -3.828125, 1.5761719, -0.67822266, 0.17456055, 0.021636963, 0.6245117, -2.8710938, -1.6259766, -0.23266602, -0.4243164, 4.4609375, -1.0048828, 1.8466797, -1.3818359, -1.1894531, -1.0205078, -2.2128906, -3.6660156, -0.31835938, -0.49145508, -2.5566406, -0.93066406, -3.6132812, 0.61328125, -1.2099609, -0.88134766, -0.5366211, -0.18359375, -0.45532227, 0.21813965, -0.6376953, -0.6435547, 0.11151123, 0.20336914, -0.80078125, -1.4404297, -2.9238281, -0.01927185, -0.3305664, 0.82128906, 0.8803711, 1.6640625, 0.49609375, 1.1396484, 1.7285156, 0.7734375, 0.20568848, -1.4765625, -3.2304688, 2.5410156, 2.2988281, 0.37670898, 2.4394531, -1.9287109, -0.26782227, -1.4033203, -0.54833984, 1.4130859, 0.42211914, 4.375, -0.59472656, -1.3886719, 1.1064453, 1.9501953, -0.42944336, -1.9443359, -0.057037354, 4.2109375, -2.5136719, 0.0657959, 2.84375, 2.2988281, -2.8457031, 0.20031738, -0.25341797, 1.3369141, 2.3476562, 1.2832031, 0.2692871, -0.0070228577, -1.3095703, -1.4375, 2.2285156, 1.0263672, 0.29638672, -0.98876953, -0.15466309, 0.8305664, 0.7290039, 1.7958984, 1.0673828, 1.3037109, 2.0097656, -0.12390137, -0.5908203, -0.10827637, 1.1513672, 0.65966797, 1.9208984, 3.9316406, 0.06866455, -0.43969727, -2.125, 0.123046875, 1.3222656, -1.8662109, 0.94873047, 1.5107422, 0.77685547, 0.79345703, -0.20532227, -0.84716797, 0.28564453, -0.9555664, 1.7548828, 0.84033203, -0.484375, 1.7412109, -1.3994141, -0.021316528, -1.8886719, 0.17834473, -2.1367188, -1.3544922, 1.3857422, 0.28735352, -2.3710938, -1.3583984, 0.17980957, -1.4345703, -2.3710938, 4.5039062, 2.4726562, -1.0498047, -0.7421875, -0.5732422, -0.42041016, 2.5214844, -1.0449219, 0.4099121, -0.6645508, -0.6020508, -0.8598633, -0.29833984, 1.6386719, 2.484375, -1.171875, -0.17614746, -2.6582031, 1.8583984, -0.12976074, -1.7490234, -0.8618164, 2.046875, 0.23913574, 1.8505859, 0.14624023, 3.9882812, -2.1953125, 0.2208252, 1.6308594, -2.5761719, -0.9116211, -2.0839844, -3.71875, 0.8852539, 0.60253906, -0.6279297, 2.8574219, -1.0234375, -0.69189453, -0.19555664, 1.6582031, -1.4277344, -1.3544922, -1.9111328, 1.6855469, -2.9160156, 0.79052734, 0.26220703, -0.082336426, -1.4853516, -1.7167969, 0.25976562, 0.9814453, 1.25, 2.5917969, -2.7070312, 0.93359375, -2.0273438, -0.3215332, -1.0634766, -0.48901367, 1.7109375, -1.1552734, -0.4230957, -1.8457031, 1.2392578, 1.8837891, -0.34765625, 0.27514648, 2.7382812, 1.3105469, 0.7573242, 0.65625, 1.5048828, 2.4316406, 0.40161133, -2.78125, -2.46875, -0.57910156, -1.8027344, -0.14709473, -1.0283203, -0.83984375, -1.0439453, 1.5322266, 0.86035156, 0.79345703, 1.2177734, 1.4453125, -1.1494141, 0.8129883, -0.28271484, -1.5517578, -0.7319336, 0.21191406, 0.38256836, -2.0058594, -0.12866211, -1.25, -1.4003906, -0.59033203, 0.08099365, -0.72314453, 2.9667969, 1.2587891, 1.1582031, 2.6757812, -0.6850586, -1.7402344, -1.1396484, -0.14025879, -0.40698242, 1.1552734, 0.67822266, -0.22668457, 3.0898438, 1.0849609, -1.4443359, -1.1728516, 1.4296875, -1.2880859, -0.029769897, -1.1474609, 2.109375, 0.046875, -0.58154297, 1.5449219, -0.8359375, 2.4199219, 0.49023438, -0.3659668, 0.09234619, 0.46606445, -3.2714844, -0.4868164, 0.24841309, -0.4177246, -0.19213867, 0.3918457, 0.8203125, 0.9580078, 2.2382812, 0.69970703, 2.8554688, 1.2294922, 1.875, -0.6923828, 0.87841797, -0.80078125, -0.10723877, 1.4980469, 0.86083984, 0.20703125, 3.9472656, 2.7773438, -0.12780762, 2.7207031, -0.25146484, -0.50341797, -0.82666016, -0.17956543, -1.3222656, 0.39379883, 0.46728516, -2.8164062, 1.1142578, 2.765625, -0.6850586, 2.4375, -1.3330078, 0.080566406, 0.6333008, -3.4628906, -0.74658203, -2.0820312, -0.19104004, -0.5004883, -2.1054688, 2.140625, 0.73583984, 1.6152344, -1.1240234, -0.91845703, 0.26098633, 2.2773438, -0.37524414, 1.6806641, -1.4658203, -1.3876953, -3.8027344, 0.97558594, 1.1699219, 0.15612793, 2.3417969, 0.89453125, -0.29223633, -1.3310547, -3.2128906, -1.3212891, 1.8662109, -1.3886719, -0.3034668, 0.8232422, 0.31103516, -1.0341797, -0.99072266, -2.3789062, -2.1054688, 2.1386719, 0.29467773, 1.0859375, 0.31860352, -0.79785156, -1.5253906, -4.8671875, -0.9086914, 2.3457031, -0.6484375, -1.1005859, -1.0869141, -0.27026367, -0.27490234, -0.121276855, 0.5185547, -2.5839844, 0.7998047, 0.35986328, 0.30737305, -1.5927734, 0.32592773, 0.5805664, 1.7988281, 1.0722656, -0.5571289, -0.61621094, -0.76708984, -0.78125, 0.24597168, -3.1816406, 1.3056641, 2.3164062, -0.3161621, -0.55029297, 3, -0.045684814, -0.10974121, 2.2558594, -2.1972656, -0.8515625, 0.041900635, -2.484375, 1.9658203, 0.4116211, -1.1025391, 0.69433594, -0.46557617, -0.76171875, 0.12322998, 2.2109375, 0.4321289, 1.6328125, 0.17089844, -2.5527344, 0.22680664, -1.5927734, 0.32202148, 2.7753906, -1.6806641, -1.5068359, -2.4335938, -2.828125, -0.68359375, -1.5458984, 0.36254883, -0.51464844, -0.115112305, 0.19311523, 0.6401367, 0.93603516, 0.4494629, -0.5131836, 0.61035156, 1.6787109, -1.4130859, 3.0195312, 0.80078125, -1.9521484, -2.859375, -1.9355469, 1.4794922, 1.6845703, 1.2021484, -0.8051758, 1.4199219, -0.08709717, 1.4599609, -0.32739258, 1.8037109, 2.2792969, 0.80322266, -1.7646484, 0.7607422, 2.3691406, 0.39770508, 0.5161133, 0.120788574, -1.28125, 0.16918945, 3.6933594, 1.859375, -0.027908325, 3.9277344, -1.2021484, 2.7695312, -0.484375, -2.4101562, 1.5644531, -0.85302734, -0.6010742, -2.1601562, -0.7548828, -1.3544922, 1.1884766, 1.6376953, -1.0771484, 0.6538086, 2.2597656, 0.29370117, -0.85302734, 1.4082031, 1.1337891, 0.0085372925, 2.4726562, -0.88671875, 1.1337891, 2.3964844, -0.60595703, 1.9091797, 0.9379883, -0.4741211, -0.26489258, 2.1074219, 0.5654297, 3.0664062, 2.0253906, 0.58984375, 2.6054688, 0.16821289, 3.4960938, 0.11016846, 1.8203125, 2.5507812, -0.22546387, -0.19421387, 1.9638672, 1.3193359, -2.1230469, -0.44335938, -0.58740234, 0.08642578, -0.68359375, 0.4699707, -1.1933594, 0.71777344, -4.7695312, 1.1162109, -1.671875, 1.7060547, -0.89453125, 2.1875, -0.9189453, -1.0263672, -0.29760742, 0.7290039, -1.7919922, -1.3583984, -0.21203613, -2.2695312, 0.05581665, 1.1083984, -3.8554688, 1.3144531, -1.3349609, -3.15625, 0.38671875, 1.3574219, 1.3994141, 1.3759766, -0.59472656, 1.2636719, 0.78125, -0.7182617, 2.5136719, -2.3945312, 0.76464844, -0.2770996, 3.6835938, 1.2519531, 0.796875, 1.9472656, -0.90625, -2.9179688, -3.1933594, 3.3574219, 1.3359375, 1.1357422, 1.7255859, -3.2910156, 2.40625, -0.6435547, 1.2041016, -1.5068359, 1.515625, -1.1552734, -2.4804688, -2.1386719, 0.54833984, -1.8652344, 3.2148438, 1.6103516, 1.1474609, 1.7392578, -0.06878662, 0.4284668, 1.265625, 2.5761719, -1.4501953, 0.7080078, -0.1270752, 1.5810547, 1.8330078, -2.8789062, -0.16320801, 1.9130859, 0.15942383, -0.037597656, 1.1972656, -0.67822266, 0.3647461, 0.16967773, -0.33789062, -1.0234375, -1.3115234, -2.1738281, -1.5927734, -0.7236328, -1.5595703, -2.1542969, 0.8227539, 1.3613281, -3.0410156, 1.3105469, 0.94433594, 0.15307617, 1.4296875, 1.6113281, -1.0107422, -0.29077148, -0.8852539, 1.2734375, -1.2333984, -3.1679688, -0.7504883, -0.34350586, 0.45483398, -0.16723633, 0.10656738, -0.67285156, -0.5576172, -0.50439453, 1.1191406, -1.0761719, -0.15454102, 1.3378906, 0.6118164, 0.72753906, 2.0800781, 0.30493164, 0.80566406, -1.2138672, -3.65625, 0.22851562, -1.0761719, -0.6401367, 2.0175781, 3.1132812, 0.5595703, 0.46289062, -1.484375, -3.1777344, -1.8525391, -0.6142578, 2.1816406, 0.19262695, 0.8881836, 0.8803711, 1.6777344, 2.2460938, -0.8803711, -0.7138672, -0.024459839, -0.54052734, 1.5244141, 1.6884766, 0.111816406, 0.53466797, 3.1835938, -1.3232422, 4.0664062, 1.8017578, -1.6025391, 0.62109375, 2.2636719, 0.63183594, -2.4277344, 1.7314453, -2.3027344, -1.2548828, 0.07684326, -0.41625977, 2.4355469, 0.73876953, -1.6035156, -3.0253906, -1.9482422]}, "B07RZTL6TK": {"id": "B07RZTL6TK", "original": "Brand: Linkool\nName: Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection\nDescription: Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


          ✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
          ✔ Measures Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High
          ✔ Premium Oxford and upgraded PVC backed polyester fabric
          ✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
          ✔ Air vents reduce inside condensation and wind lofting
          ✔ Padded handles for easy fitting and removal
          ✔ All weahter protection
          ✔ All round drawstring bottom with cord locks for added security to make it won't blow away in the wind
          \nFeatures: NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles\nDRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill\nDIMENSION:Measures 7.5\" Diameter (top) x 14\" Diameter (bottom) x 21\" High, Fits standard 20 lbs cylinder propane tank for Weber grill\nPREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank\nMAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won't blow away in the wind.BE READY for anything Mother Nature can throw at you\n", "embedding": [1.5048828, 2.75, 3.4316406, -1.3925781, -0.36450195, -1.1904297, 0.15405273, -1.9267578, 1.4169922, 1.2060547, 0.5541992, 0.74072266, 0.49731445, -3.3789062, 0.77246094, -0.62158203, 0.8408203, 2.09375, 2.40625, 0.6875, 3.0683594, 0.41064453, 1.0888672, -0.73046875, 1.4560547, -0.5805664, 4.71875, -3.0273438, -1.6435547, 0.15063477, 0.8105469, -0.48608398, 0.34375, 1.6884766, -0.68359375, -0.9375, -1.3291016, 0.4404297, -2.9667969, 0.31298828, -3.5078125, -0.69873047, 2.640625, 0.8232422, -1.7900391, 0.47729492, -1.1376953, -0.4560547, -0.12963867, -0.95166016, -0.38867188, 1.8740234, 2.0898438, 1.1933594, -0.23291016, 1.3798828, 0.26953125, -1.3183594, -0.40625, 0.46020508, 1.2255859, -0.91308594, -2.890625, 1.4931641, 0.24499512, -0.6621094, -1.4667969, -0.05178833, 1.1953125, 2, 2.4414062, -0.009315491, 0.70654297, -0.68847656, 0.67285156, -0.72265625, -2.546875, 1.1259766, 1.515625, -2.2402344, 1.1953125, 4.6992188, -0.60791016, -1.3916016, -0.9667969, -0.33666992, -0.6303711, -0.22314453, 1.0068359, 1.2363281, -1.1181641, 1.0449219, -2.4101562, -5.7265625, -0.44506836, -0.49560547, 1.6884766, 0.82421875, 2.0878906, 0.95654297, 0.78027344, 0.67041016, -2.1855469, -0.16540527, -2.578125, -1.5039062, 1.8388672, -0.89990234, -0.8120117, -0.68066406, -0.6977539, -0.59716797, 2.4882812, -0.4543457, 1.4150391, 0.10583496, -0.9692383, -0.019470215, 1.1318359, 1.8759766, 4.3359375, -1.7539062, 0.8305664, -0.53027344, 1.0273438, 1.1015625, -0.17626953, -0.57714844, 2.7734375, -0.6503906, 2.2460938, 1.9824219, 0.2644043, 0.52783203, 0.9819336, -0.11895752, -0.6738281, -1.2207031, -1.6923828, 0.7080078, -1.4511719, -0.7895508, 1.6191406, -1.1171875, -3.7304688, -0.15393066, -1.8349609, 1.4511719, -1.5332031, -2.1933594, 0.484375, -1.7285156, -0.49169922, -1.1142578, 1.6015625, 0.12042236, 0.006881714, -2.8632812, 1.875, 2.6210938, 4.0703125, -0.13793945, 0.79541016, 0.46826172, 0.09613037, -3.09375, 1.0107422, -0.18896484, -1.9501953, 1.8964844, 0.52246094, -0.6352539, 0.029510498, 0.7792969, 0.29077148, -2.015625, 1.8427734, 1.4726562, 0.14794922, -0.61621094, -3.140625, -1.1064453, -1.046875, -0.109680176, 0.46435547, 0.7319336, -2.3261719, -0.8725586, 0.34765625, -1.0107422, -2.328125, 0.7446289, -0.38964844, -0.9042969, -2.5664062, -2.8867188, -0.8881836, -0.9897461, -0.4716797, 1.1240234, -1.5136719, -1.6210938, 0.5444336, 0.07519531, -2.7265625, 0.15454102, 0.9736328, 0.34277344, 0.8129883, 1.7783203, 0.25390625, -0.68115234, 1.4414062, 0.031402588, -1.1435547, -0.48706055, 2.6894531, 1.0732422, 1.9560547, 1.1103516, -0.40307617, 0.13696289, 0.33789062, 1.9296875, 1.2939453, 1.6289062, 0.6328125, 0.22241211, -1.7597656, -0.5698242, 0.92822266, 2.3769531, -0.5180664, 0.60839844, -1.0175781, 1.7636719, 0.026367188, -1.2148438, -0.36987305, 0.5732422, 1.0917969, -0.36694336, -2.1132812, -0.64404297, -1.1376953, 2.3671875, -0.52783203, 1.5263672, 0.95703125, -0.6274414, 0.3408203, -0.26635742, 1.0830078, -1.1464844, -0.94140625, 1.8203125, 0.5751953, 1.3759766, -0.69921875, -1.1933594, 1.2431641, 0.92333984, -0.45410156, -0.1673584, 0.19470215, 0.6538086, -0.41064453, -0.2644043, -1.3203125, 0.03640747, 0.25048828, 0.4753418, -0.74658203, -1.5048828, 1.4960938, 1.2617188, -1.5332031, 1.2207031, -0.9433594, 1.0488281, 1.2617188, -0.6611328, 1.0136719, -3.9882812, 1.8222656, 0.26123047, 2.28125, -0.7758789, -3.6601562, 0.81640625, 4.7695312, -0.7578125, -0.3461914, 0.7241211, 2.0371094, -0.37768555, 1.9472656, -1.6259766, -0.25146484, 0.17382812, -1.6064453, -0.030975342, -0.20593262, -0.97802734, 0.9663086, -0.33129883, 0.20678711, -1.7333984, -0.5107422, 1.7050781, 0.2680664, 0.3100586, -0.37597656, 1.4023438, -1.1738281, -1.0566406, 2.9453125, -2.875, 0.4946289, 0.9165039, -0.85253906, 0.8725586, -0.48120117, -1.0302734, -0.79296875, -0.008369446, -0.17529297, 1.4541016, 1.1025391, -1.0078125, 0.2614746, -2.1953125, 1.2285156, -0.7841797, 0.18139648, -0.27954102, -2.5839844, -1.0166016, -0.21081543, -2.6171875, 1.4609375, -1.1171875, -1.4501953, 1.6552734, 1.2148438, -1.5585938, -0.71777344, 1.4199219, -0.7807617, -1.4863281, 0.77197266, 1.515625, -1.2597656, -4.9609375, 0.17407227, 0.11846924, -1.8994141, -0.9116211, -1.7890625, 0.28710938, -0.07269287, 1.0693359, 1.5322266, 0.055267334, -0.23950195, -0.1673584, 0.7104492, -3.3886719, 0.51416016, -2.5136719, 1.4765625, -2.3476562, -1.140625, -2.3769531, -1.9716797, 1.2636719, -0.6582031, 3.1933594, 0.9267578, 0.67871094, -1.1484375, -1.0009766, 0.67871094, -1.2275391, -2.40625, 0.8852539, 0.16564941, -1.4941406, -1.0097656, -5.4453125, -1.4433594, -2.171875, -1.4707031, -0.06439209, -0.31689453, -0.5576172, -0.046936035, -0.21533203, -1.1523438, -1.3974609, 0.86621094, 0.24121094, -1.9960938, -0.9536133, 0.09436035, -0.5292969, 0.78466797, -1.4501953, 2.0625, -1.0234375, 0.4350586, 1.9453125, -0.48632812, 1.9433594, -0.08660889, -3.8886719, 0.6928711, 2.0917969, 0.021636963, 1.8330078, -1.8623047, -0.8120117, -1.75, 0.3071289, 2.3046875, 2.84375, 1.390625, 1.125, 1.1484375, 0.66259766, -1.0400391, 0.082458496, 0.83496094, 2.0175781, 4.28125, -1.703125, -0.061035156, 1.1347656, 2.6933594, -4.1796875, -0.5834961, 2.0839844, 0.17956543, 2.328125, 0.86035156, -1.4091797, -0.53125, 0.6928711, 0.94140625, 0.36254883, 1.0986328, 1.2880859, -0.064575195, 1.8222656, -0.46557617, 0.73583984, 3.1738281, 0.36987305, -1.0888672, 2.8710938, 1.3349609, -0.6791992, 0.18066406, -0.27734375, 0.24133301, 0.07647705, 2.2988281, -0.65966797, 1.9960938, -0.23022461, -1.2265625, 0.23803711, -1.9150391, 0.421875, 1.6933594, 1.3105469, -1.7685547, -0.8022461, -0.023910522, 0.60546875, -2.5566406, 2.1777344, -0.42919922, -0.94433594, 0.96191406, -2.1816406, -0.31713867, -1.6552734, 3.2734375, -0.88378906, -1.9130859, -0.15332031, 0.78759766, -2.3730469, -3.1445312, -0.8769531, -0.31835938, -1.7236328, 3.2402344, 0.92578125, -1.2880859, 0.8330078, -2.2910156, 2.3398438, 0.98339844, -0.16699219, -1.0800781, -0.8984375, 1.0917969, -1.6318359, 1.578125, 1.4755859, 0.99365234, -2.4785156, -0.23242188, -1.2333984, 1.3818359, 1.3056641, -0.79785156, -0.8486328, 0.026489258, -1.0732422, 2.2539062, 1.3505859, 2.4394531, -0.8457031, 0.78125, 1.5957031, -1.5917969, 0.18969727, -0.06945801, -3.6035156, -1.2910156, -0.7973633, -0.071777344, 3.1367188, -0.69628906, 0.80566406, 0.31933594, 0.52441406, -2.7714844, -0.65625, -2.5996094, 0.42797852, -0.39746094, -0.63671875, 1.1318359, 0.12792969, -2.8867188, -1.5673828, 0.33642578, -1.5791016, -0.63134766, 0.56933594, -0.59472656, 0.5336914, -1.0263672, -0.41357422, -0.9663086, 0.09051514, -0.71484375, 1.0527344, -1.1015625, -0.26586914, 3.7167969, 0.4074707, 0.10583496, 0.8330078, 1.9082031, 0.73046875, -1.5693359, 0.82910156, -0.7734375, 2.6464844, -1.3408203, -2.7695312, 0.061431885, -0.12634277, 1.4902344, 0.5620117, -0.78515625, 0.9736328, 1.0185547, 0.54296875, 0.119384766, 1.9091797, 1.2832031, 0.27978516, -1.6591797, 2.328125, -0.025650024, -1.7236328, -1.4101562, 0.21850586, 0.7519531, -0.18676758, 0.4855957, -2.984375, 1.6523438, 0.56103516, 1.2109375, -2.7148438, 2.3828125, 2.6972656, 3.4003906, 1.4277344, -0.6791992, 1.0273438, 1.1835938, 1.7109375, 0.58496094, -0.2775879, -0.13671875, -1.0947266, 1.5927734, 1.3261719, -1.4589844, -0.6171875, -0.22302246, -1.1083984, 0.8378906, -1.0732422, 0.88964844, -1.4609375, 1.0351562, -0.63964844, -1.9794922, 2.7851562, -1.7177734, 0.77001953, 0.17749023, -0.061431885, -1.3144531, 2.2363281, 1.3867188, 0.50390625, 0.94091797, -1.4833984, 0.025405884, -0.53515625, 0.82910156, 1.5898438, 0.5493164, -2.9863281, -0.8569336, 0.4819336, 0.36547852, -0.39038086, 1.2460938, 1.7958984, 1.9072266, 1.5576172, 0.18615723, 2.7011719, -0.6879883, 1.2333984, 1.0048828, -2.0253906, 0.42993164, 0.5263672, 0.51171875, 3.34375, -0.6669922, -3.4003906, -0.3022461, 0.75, -0.76220703, 1.9033203, 0.07128906, -1.5332031, 1.4072266, -2.0644531, -1.7324219, -0.94873047, -0.021377563, -0.18395996, 1.0673828, 0.8129883, -0.46166992, 0.8857422, 3.4804688, -0.8544922, -1.7685547, 0.13549805, -0.16552734, 0.10437012, -2.4433594, -0.77001953, -3.2226562, -1.0585938, -0.42626953, 0.56347656, 1.7148438, 0.37939453, 2.3398438, -2.4003906, 0.14978027, 0.17700195, 1.4492188, -2.5273438, -1.1855469, 2.9003906, -0.87158203, -0.70214844, -0.17565918, -1.3115234, -0.5913086, 1.4677734, 1.8017578, 0.60791016, -1.0244141, 0.67871094, -4.265625, -4.609375, -0.64208984, 0.14501953, -0.87841797, 0.8330078, -0.13928223, 0.014030457, 1.8535156, -1.5058594, 0.12597656, -1.8701172, 1.7216797, -0.80078125, -1.8408203, -0.15600586, 0.04473877, -0.14257812, 0.62841797, -0.017959595, 0.4501953, -1.4482422, -1.9375, -2.0039062, -0.19604492, -1.109375, -0.83691406, -0.31347656, -0.09246826, 1.4902344, -0.044433594, 0.6977539, -1.2490234, 0.98828125, -1.0527344, -0.8041992, 1.3876953, -2.140625, -0.7241211, 1.3544922, -0.76904297, 1.2910156, 1.0751953, 1.0361328, -1.5625, 0.6513672, 1.9208984, 0.28027344, 0.5463867, 0.6743164, 1.2822266, 0.6542969, 1.265625, 1.3808594, -0.62402344, 0.30566406, -0.9042969, -1.5175781, -0.027694702, -1.3691406, -2.0507812, -0.9995117, 1.0830078, 2.5097656, 0.14050293, -0.45507812, 2.078125, 0.3762207, -2.2734375, 0.63427734, -1.3974609, 2.9746094, 0.99365234, -2.6699219, -2.5449219, -2.7011719, 2.6738281, 1.0859375, -1.0029297, 0.49291992, -0.27441406, -0.76660156, 1.2265625, -0.32543945, 2.8300781, 0.11199951, 2.2480469, 0.20581055, 1.7431641, 3.2714844, -1.4765625, 1.5097656, 0.06970215, 0.9399414, -0.9033203, 0.80029297, 1.1533203, -2.78125, -1.5957031, -0.119628906, 0.43164062, 0.32641602, -0.6850586, -1.8261719, -2.1503906, 0.08959961, -1.4794922, -1.2822266, -3.7246094, 1.7490234, 1.046875, -0.14050293, 0.15856934, 1.1865234, 0.0064964294, 0.39379883, 1.6630859, 0.05947876, -1.1757812, -0.9892578, -0.7363281, 0.9980469, 1.4648438, -3.3652344, 1.4931641, 0.109802246, 2.2988281, -0.9824219, -0.4116211, 1.3505859, 1.3125, -0.28588867, 3.7226562, 3.8730469, 0.32421875, 0.9736328, 0.048095703, 2.0136719, 2.0820312, -1.7539062, 0.21472168, 1.5615234, 2.5039062, 3.6328125, -1.7148438, 0.0060577393, -0.6411133, -0.6586914, 0.5463867, 0.40454102, 1.5351562, -2.5546875, 1.1142578, -1.0302734, -0.45654297, 1.2392578, 0.82421875, -1.1083984, -1.9111328, 0.055877686, -0.42211914, 2, 0.053649902, 2.28125, 0.6513672, -1.0029297, 1.1953125, -1.6005859, 0.3017578, -1.8486328, -2.0214844, -1.625, 1.6992188, 2.2597656, 2.5, -0.9711914, 0.21789551, -0.056640625, 0.3935547, 1.9365234, -0.7480469, 0.3635254, -1.3828125, 2.3300781, 2.984375, -1.3769531, -0.03137207, 0.8017578, -0.6035156, -2.7695312, 0.5756836, 1.1308594, 0.89990234, 0.29345703, -2.7578125, 0.61621094, -2.578125, 0.16186523, -3.2617188, -0.6557617, -1.0644531, -3.6621094, 0.5756836, 1.0830078, -0.6923828, 2.8847656, 0.89697266, -0.06414795, 1.5957031, 1.0048828, 0.9140625, -0.74121094, 0.16992188, 0.25561523, 0.95996094, -0.40185547, 3.3085938, 1.4189453, -1.4873047, -0.70214844, 2.3320312, 0.8852539, 1.2832031, 1.7851562, -0.31201172, 2.078125, 0.42285156, -0.21020508, 1.4257812, -0.22485352, 0.61572266, -0.5786133, -0.17736816, 0.77197266, -0.28881836, -0.7675781, 1.4013672, -1.5732422, 0.065979004, 2.0332031, 0.8286133, 1.6142578, 0.26464844, -1.2099609, -1.1191406, -0.014595032, -0.14685059, -2.1875, -0.55566406, -1.5869141, 0.91308594, -0.34643555, -1.7714844, -0.6508789, -0.6245117, -1.0927734, -0.076416016, 1.1914062, 0.20666504, -1.2841797, 0.9296875, -0.88720703, 0.4716797, 1.0722656, 0.57421875, -0.7348633, -1.1210938, -1.9335938, 0.4597168, -0.8017578, -0.7866211, 0.8730469, 1.9873047, 0.38085938, 0.18408203, 0.8183594, -2.9101562, -0.32543945, -2.8085938, 1.765625, -0.3425293, -0.9951172, -0.37036133, 1.2089844, 2.703125, -1.5498047, -2.0742188, -0.19372559, 0.26123047, 1.5439453, -1.140625, 0.13659668, -0.76416016, -0.24291992, 1.8955078, 3.6054688, 3.3964844, -0.8286133, 0.22717285, 2.9882812, -2.9589844, -3.8417969, -1.2392578, 1.0400391, -0.08312988, -0.14575195, 1.6630859, 3.2167969, 0.31958008, -0.6381836, -1.9589844, -0.2166748]}, "B08H18XLP9": {"id": "B08H18XLP9", "original": "Brand: ARC Advanced Royal Champion\nName: ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU\nDescription: \nFeatures: \ud83d\udd25\u3010STURDY AND DURABLE\u3011The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable.\n\ud83d\udd25\u3010ADJUSTABLE BURNER\u3011200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods.\n\ud83d\udd25\u3010RELIABLE SAFETY\u3011The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use.\n\ud83d\udd25\u3010STABLE DESIGN)\u3011The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use.\n\ud83d\udd25\u3010PORTABLE DESIGN\u3011The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking\n", "embedding": [-0.8540039, 2.5488281, 2.4355469, 1.8310547, -1.7998047, 0.46875, 2.5546875, -0.8779297, -0.8388672, 1.5263672, 0.8354492, -1.2294922, 1.71875, -2.7050781, 0.19519043, 0.23120117, -0.51660156, 0.09637451, 1.5546875, 1.8847656, 0.8647461, -0.33496094, 3.0878906, -1.2822266, 1.7792969, 0.2783203, 2.2890625, -3.5625, -0.85253906, -2.5585938, 2.5996094, 0.70410156, 0.7207031, 0.9975586, -2.5878906, 1.7978516, -1.0419922, 1.390625, -3.1933594, 0.5097656, -0.40722656, -0.24682617, 1.8115234, -1.0634766, -2.234375, 1.0576172, 0.8300781, 0.21081543, -0.3256836, 1.0107422, 0.14733887, 0.2220459, 1.2353516, 0.32055664, -0.6557617, 0.6274414, 0.8652344, -2.2617188, 2.0625, -0.080322266, 3.6992188, 1.3632812, -2.1875, 1.4521484, -0.72314453, 0.24328613, 0.14672852, 0.12670898, -0.8803711, 0.09436035, 0.7807617, -0.17871094, 0.515625, -0.013244629, 0.3359375, -0.9838867, -1.8027344, 1.2148438, 2.5019531, 0.41381836, -3.1816406, 0.7602539, 0.099365234, -0.24731445, -0.94970703, 0.9658203, -1.2822266, -1.640625, 0.7871094, 0.46142578, -1.5654297, 1.4941406, -2.9121094, -3.3300781, 2.3964844, -0.7841797, 0.35253906, -0.6616211, 1.0029297, 0.41210938, -1.2021484, -1.5117188, -1.3623047, -0.42504883, -2.2089844, -0.68359375, 1.0546875, 0.82714844, -2.1015625, 0.60058594, -1.1269531, 0.91308594, 2.4179688, -1.3828125, 0.7167969, -0.86376953, -0.64208984, 0.29638672, 3.9335938, -0.119384766, 3.234375, -0.30810547, -0.019927979, -1.9912109, 0.17175293, 3.578125, -0.87109375, -0.4194336, 4.25, -1.4101562, 0.31323242, -2.3984375, 1.4755859, 0.22363281, -0.42651367, -2.1328125, -1.3115234, -1.4335938, -3.46875, 0.9868164, -3.6914062, 1.4101562, 1.1757812, -0.55908203, -3.6855469, -0.44018555, -1.4013672, 0.9082031, -0.14624023, 0.08532715, 0.67285156, -1.6572266, 1.109375, -2.4882812, 2.0390625, -0.000385046, -0.9169922, -3.0351562, 3.9824219, 1.8964844, 0.48120117, -2.8652344, -0.030776978, 2.7988281, -0.80810547, -1.2441406, -0.8569336, 2.2128906, -0.9824219, 1.671875, -1.0009766, -2.9003906, -0.4453125, 0.8198242, -0.10913086, -1.3427734, -0.40454102, 1.7207031, 0.58203125, 0.17102051, -2.3085938, -2.8320312, 1.8378906, 0.66064453, 1.5732422, -2.5742188, -1.6904297, -0.7729492, 1.0302734, -1.2353516, -3.0820312, -0.025390625, 0.5341797, -0.48291016, -0.33984375, -1.546875, -1.1181641, -2.7617188, -1.1123047, 1.6191406, -1.53125, -1.5732422, -0.26245117, 0.1484375, -3.7890625, -1.7275391, -0.53759766, -1.3681641, 1.7744141, 2.75, 0.7607422, -0.96728516, 1.5957031, -0.3569336, -0.6323242, -3.0996094, 1.1835938, -0.7602539, 1.7626953, 1.1943359, 0.7363281, -1.0849609, 2.1289062, 0.7709961, 0.059051514, 3.0859375, -0.9824219, 0.07873535, -0.4091797, -2.921875, 3.53125, 0.6933594, -0.7451172, 1.2421875, -1.7890625, 1.7578125, -0.7167969, -0.4025879, -0.11035156, -0.6665039, -0.18359375, -2.0585938, -0.25073242, -1.6191406, -0.2980957, -1.421875, -0.5258789, 1.7558594, 1.3378906, 0.8027344, 1.7695312, -0.6645508, 0.43725586, -0.25512695, 0.19189453, 1.2314453, -0.15588379, 1.6660156, -1.8642578, -3.0253906, 1.6943359, 1.5292969, -0.5395508, -0.48779297, -0.14196777, -0.6088867, 2.8496094, 0.86865234, -1.4726562, 0.8745117, -0.54003906, 1.0644531, 2.7011719, 0.17492676, 1.3378906, 1.421875, -1.8515625, 3.6953125, -1.1542969, 1.6533203, 1.4414062, -1.5771484, 2.1640625, -2.8164062, 0.73095703, 1.2939453, 2.7402344, -0.7338867, -2.2539062, 0.80908203, 4.203125, -1.125, -3.0351562, 0.59277344, -0.46069336, 0.043701172, 2.0703125, 1.8642578, 0.029937744, -1.8408203, 0.46533203, -0.24389648, 0.7578125, 0.6923828, -0.038330078, -1.4023438, 0.859375, -1.7929688, -0.035339355, 0.0039596558, -0.4272461, -1.3066406, -2.5527344, 0.89404297, -4.1054688, -1.9150391, 2.8261719, -3.3222656, 1.1630859, 2.9101562, 0.8676758, 1.1435547, 0.17333984, -1.3945312, -0.005756378, -0.20703125, -0.96484375, 1.1142578, 0.6147461, -0.46069336, -1.1708984, -1.7304688, -0.58984375, -3.1347656, -1.734375, 0.10845947, -1.2841797, -2.6464844, 1.5761719, -2.5566406, 0.5996094, 0.7578125, -2.7421875, 0.4543457, -0.51123047, -2.9023438, -1.578125, 0.21740723, -0.9345703, -0.9433594, 0.52197266, 2.0136719, -0.34692383, -3.5117188, -0.09503174, -0.60839844, 0.052825928, 0.24743652, -0.6323242, 0.8129883, -0.7529297, -0.017318726, 0.09100342, 1.2480469, 1.1533203, -2.7929688, 0.65527344, -4.4648438, 1.21875, -2.5371094, 1.5546875, -1.5458984, 1.2089844, -1.8359375, -2.5175781, 0.060668945, -1.3847656, 2.9609375, -0.56103516, 2.5722656, -0.5620117, -1.2451172, 0.3125, 0.8120117, -2.7480469, 1.2675781, -0.024993896, -3.1210938, -1.4677734, -2.4472656, 0.34960938, 0.80371094, 0.8964844, -0.0075302124, 0.29638672, -0.81152344, 0.46533203, 0.8930664, -1.34375, -0.30444336, -0.05532837, -1.3486328, -2.1191406, -1.0605469, -0.54785156, -0.8671875, -0.89453125, 0.7504883, 0.9916992, -1.0039062, 0.5625, 1.6386719, 1.5498047, 1.5058594, -0.8745117, -3.8164062, 2.1367188, 2.4433594, -2.3085938, 2.5507812, -3.1679688, -1.5898438, -2.0175781, -1.1318359, 2.4550781, 0.9658203, 2.8320312, 0.15661621, 1.2138672, 1.4511719, 3.3886719, -0.88134766, -1.8330078, -1.5419922, 3.0292969, -1.9970703, -1.2060547, -0.3100586, 3.609375, -2.90625, 0.85009766, 1.7324219, 1.0214844, 2.4003906, 2.4707031, 0.15441895, -0.11883545, -0.85058594, 0.75097656, 2.3320312, 1.1582031, 1.5839844, -0.3330078, 1.5458984, 0.7236328, -0.32641602, 2.4316406, -0.3166504, 2.9589844, 2.0625, 0.85791016, -0.29736328, 0.115478516, 1.2119141, 1.7744141, 1.5966797, 0.9238281, -1.4873047, 0.37182617, -1.2158203, 0.38085938, 1.4160156, -2.1738281, -0.085998535, -0.26660156, 0.46142578, 0.48413086, 0.13452148, 0.43847656, -0.66259766, -2.765625, 1.1191406, -0.1887207, 0.50683594, 0.26220703, -0.44067383, 1.1884766, -1.8007812, 0.89453125, 0.14050293, -1.0625, 0.032806396, 1.1796875, -0.9633789, -2.2128906, 0.40161133, -0.90966797, -0.9399414, 3.4648438, 2.0097656, -0.35766602, 0.46728516, -1.6621094, 1.2431641, 0.064086914, -1.8964844, -0.5761719, -0.5102539, -1.3427734, -0.81689453, 0.29907227, 0.8886719, 1.2480469, -1.1464844, 0.62597656, -3.8496094, 0.5991211, -0.33447266, -0.97314453, -1.6679688, 0.69091797, 0.02444458, 0.81689453, -1.1767578, 4, -1.2001953, -2.3886719, 1.5556641, -2.7363281, -1.34375, -3.671875, -3.4785156, 0.31396484, -1.2167969, 0.23828125, 2.1738281, -0.9345703, -0.2939453, -0.2253418, 0.4169922, -2.1992188, -1.6201172, -0.14465332, 1.1777344, -1.9814453, -1.4570312, 2.1640625, -0.05114746, -1.0205078, -2.2382812, -0.2980957, -1.1894531, 0.40478516, 1.578125, -1.7998047, 1.2529297, -2.8476562, 0.9399414, -0.17407227, -2.1621094, 2.2734375, -1.1367188, -0.46313477, -3.3378906, 1.6435547, 0.9580078, 0.6323242, 0.32861328, 3.3964844, 1.0117188, 0.14428711, -0.48779297, 1.0761719, 2.2753906, 0.8232422, -2.5507812, -0.0892334, -0.2680664, -0.06591797, -0.8461914, 0.34375, -1.2675781, -0.6875, 0.4934082, 1.21875, 1.8779297, 3.2714844, 1.3457031, 0.04071045, -0.40185547, 1.2304688, -0.23474121, -1.2392578, -1.1601562, 0.5332031, -1.2216797, 0.77783203, -0.60595703, -1.7392578, -1.8867188, 0.89990234, -3.53125, 2.7421875, 2.9941406, 0.61279297, 1.5507812, -2.2207031, -1.421875, -0.3239746, 1.2529297, -2.5644531, 1.7099609, 0.27685547, 0.7011719, 1.4160156, 1.2978516, -1.6494141, -1.3759766, 1.5869141, -2.3945312, -0.6323242, -0.59814453, 1.9199219, 0.72802734, -0.72216797, 2.2773438, -0.014320374, 3.5683594, -0.86035156, -0.734375, -0.08300781, -0.6381836, -1.1269531, -0.82666016, -0.5673828, 0.4338379, 2.0039062, 0.08087158, 2.0527344, -0.81640625, 0.87060547, -0.14086914, 2.7734375, -0.7133789, 0.61328125, -1.0986328, 1.421875, -0.48291016, -0.86376953, 0.20019531, 1.5947266, 2.3105469, 4.5273438, 0.63183594, -0.28271484, 1.6757812, -0.35961914, -1.3427734, -1.5351562, -0.011512756, -2.2089844, 1.9150391, 0.35839844, -2.9023438, -0.50439453, 3.3359375, 0.16699219, 1.5605469, -0.8647461, -1.046875, -0.94140625, -1.4003906, -1.5566406, -0.8886719, 1.5488281, -0.35791016, -0.93310547, 1.609375, -0.9296875, 2.1601562, 1.5986328, 0.06451416, -0.46069336, 1.3300781, -1.5732422, 0.046905518, 0.11425781, -0.85791016, -1.8457031, 1.1367188, 2.7539062, 1.2558594, 1.640625, 1.7236328, 2.0019531, -0.16064453, 1.0195312, -0.24023438, 3.7421875, -2.3652344, -1.3945312, 1.2919922, -0.49926758, 0.6933594, -2.0800781, -0.32788086, -1.0722656, 1.3662109, 1.4414062, 1.7910156, -0.7265625, -1.9248047, -1.9970703, -4.734375, -0.96972656, 1.484375, 0.13574219, -0.56640625, -0.23181152, -0.89990234, -0.16772461, -1.0527344, 0.2536621, -1.0742188, -0.43530273, -0.06585693, 0.49047852, -1.4042969, 1.3095703, -0.57128906, 0.8652344, -0.22363281, 0.49047852, 0.35498047, -2.3417969, -1.8916016, 2.6484375, -2.6054688, 1.3798828, 1.1796875, -1.4443359, -0.9086914, 1.8525391, 0.032714844, -0.94140625, 1.4990234, -2.1386719, 0.9223633, 1.1484375, -1.6220703, 0.78515625, 1.7412109, -1.1123047, 0.6035156, 0.12261963, -0.081970215, 0.026565552, 0.890625, 1.3066406, 1.5078125, 0.6357422, -1.5292969, 2.0585938, -0.14794922, 0.73095703, 1.3515625, -0.27856445, -0.24584961, -1.8359375, -2.8574219, 0.08862305, -0.25610352, 0.12237549, -0.55371094, 2.3046875, 1.8056641, -1.171875, 0.4038086, -1.3076172, -0.099243164, -1.3447266, 1.9736328, -1.2255859, 3.578125, 1.9277344, -3.1015625, -1.5507812, -0.34277344, 1.3662109, 3.2128906, 0.34570312, -1.0087891, 1.4345703, -0.021713257, 1.2480469, -0.0670166, 1.4267578, 2.3769531, 0.0524292, -0.9638672, 0.88720703, 2.7910156, 0.37939453, -1.1708984, 0.058746338, -0.6303711, -0.9399414, 5.0898438, 2.5, -1.6318359, 1.8779297, -3.796875, 1.6035156, 0.14990234, -1.7255859, 0.2524414, -4.078125, -0.046875, -2.078125, -0.30444336, -1.9511719, 1.5087891, 1.4951172, -0.8105469, 2.1953125, 2.4589844, -0.7919922, -0.40063477, 1.2900391, 1.1054688, 0.23413086, 0.8491211, -0.2734375, 0.5395508, 2.3613281, -2.2460938, 1.9443359, 0.90722656, -0.076171875, -1.875, 1.2089844, 1.3808594, 2.9394531, 1.3066406, 1.6503906, 1.3447266, 1.90625, 3.7363281, 0.90625, 1.4091797, 2.9472656, -0.57421875, 0.609375, 1.4335938, 0.79248047, -1.578125, -0.6640625, 0.8823242, -0.90283203, -2.0644531, -1.0703125, 0.4326172, 1.5087891, -2.5019531, 0.32495117, -0.5288086, -0.25195312, -1.5224609, 0.22387695, -0.6308594, -1.5175781, 0.375, -0.22680664, 2.3554688, -0.11279297, -0.67578125, 0.38916016, -0.2919922, 0.29467773, -2.5898438, 1.5507812, -1.0947266, -1.4560547, 1.4472656, 3.5996094, -0.093566895, 0.56640625, 0.6557617, 0.50927734, -0.3388672, 0.8144531, 0.55126953, -0.3071289, 1.8330078, 0.5419922, 4.2109375, 0.6357422, -1.7109375, 2.2089844, -1.4648438, -1.6484375, -2.6445312, 2.4238281, 0.9614258, 1.5732422, 1.421875, -1.859375, 2.4941406, -1.2675781, 1.765625, -4.2929688, 0.06738281, 1.4785156, -0.9272461, -1.3632812, -0.3852539, -0.3996582, 3.3574219, 2.65625, -0.26098633, 0.7216797, -0.71484375, 0.32641602, -0.43530273, 1.2861328, 0.10870361, 0.8852539, -1.0595703, 2.5195312, -0.1628418, -2.5371094, -1.0927734, 3.3691406, 0.10473633, 0.6953125, 0.08850098, -1.0087891, 1.0029297, -0.5307617, 0.80029297, -0.9140625, -1.875, -1.5830078, -0.9189453, -0.9321289, -1.2382812, -0.70214844, 1.7177734, 0.20227051, -2.1464844, 0.7421875, 2.40625, -1.1103516, 1.2783203, -0.049682617, -0.25048828, -2.8613281, -1.5068359, 1.0966797, -1.0859375, -1.6230469, 0.045837402, 1.0458984, 1.1660156, -1.1464844, -1.3554688, -2.7421875, 0.06561279, 0.43530273, 1.2148438, -1.2880859, 0.4724121, 1.5898438, -1.1025391, -1.7226562, 2.2050781, 0.34106445, 0.49829102, -0.40625, -2.6289062, -0.46142578, -1.1923828, -0.42895508, 1.6181641, 1.6220703, 0.5708008, 0.17126465, -1.2861328, -4.1953125, -0.1907959, 0.07324219, 1.2675781, -0.73291016, -0.3088379, 0.73291016, 1.9462891, 1.6298828, -0.8989258, -1.7773438, 0.31860352, 1.9384766, 1.2216797, -0.07910156, 2.4511719, 0.07354736, -0.42700195, -1.7353516, 2.2167969, 1.78125, -1.0253906, 1.5888672, 2.7070312, -0.21105957, -2.9492188, 0.122924805, -1.0029297, -0.6879883, -0.038513184, 1.1074219, 2.0683594, 2.0644531, -0.5053711, -2.4453125, -1.2744141]}, "B0014E3MSI": {"id": "B0014E3MSI", "original": "Brand: Camco\nName: Camco 59013 Single Stage Propane Low Press Regulator\nDescription: \nFeatures: Maintains a constant 11\" WC propane pressure\n200,000 BTU/HR\nFor connecting free standing gas bottle to low pressure gas appliances\n1/4\" Female NPT (Inlet) x 3/8\" Female NPT (Outlet)\nUL Listed\n", "embedding": [-1.5605469, 0.4584961, 1.3789062, 1.5078125, -1.2304688, -2.2285156, -0.041168213, -1.5966797, 0.21618652, -0.50683594, 1.2451172, 0.60498047, 0.3166504, -0.76416016, 2.5097656, -1.2841797, 1.1464844, 1.1005859, 1.7666016, 0.17956543, -0.73828125, -1.4140625, 1.8085938, -1.7353516, 0.7211914, -0.0970459, 2.640625, -1.3652344, -3.3007812, -1.0253906, 0.9736328, 0.71240234, -0.81689453, 1.578125, -0.35375977, 0.002275467, -0.7729492, -0.7949219, -3.8769531, -0.13928223, -2.6738281, 0.37353516, 2.0820312, -1.2265625, -2.6269531, -1.6171875, 1.2861328, -1.3251953, 2.3359375, -1.5986328, 0.52685547, 0.63964844, -1.4121094, 0.45336914, -0.12213135, -0.38012695, -0.7602539, -2.3085938, 0.8964844, 1.8798828, 0.8183594, -0.23583984, -2.6464844, 0.43554688, -2.0917969, 2.0625, -0.5283203, -0.37036133, 2.4472656, 1.6220703, 1.7958984, 1.2539062, -0.34423828, -1.7421875, -1.4667969, 2.0253906, -1.4814453, -1.7587891, 1.8701172, -0.5214844, -2.9199219, 0.97558594, 1.3857422, -3.2285156, -2.2207031, 0.19616699, 0.7993164, 1.3076172, 0.2861328, 1.2197266, -0.6669922, 1.8779297, -3.6933594, -3.6621094, 0.40820312, 2.7773438, -1.0292969, 2.3476562, 0.7836914, 1.40625, -0.14880371, 1.3779297, -0.24194336, 0.9663086, -1.6445312, -0.44091797, 1.2578125, 1.8574219, -4.421875, 0.23754883, -1.1826172, -0.6694336, 2.0097656, -1.0126953, 1.2216797, -1.3310547, -0.6796875, 0.7734375, 3.8730469, -0.01625061, 3.2617188, -0.0051460266, 1.1376953, -0.5498047, 0.42211914, 1.7441406, -0.33935547, 1.3017578, 3.5507812, 0.21105957, -0.16259766, -1.7158203, 2.3867188, -0.44384766, 1.4648438, -2.1660156, -1.2783203, -3.6152344, -0.56152344, -0.30078125, -5.15625, 0.57421875, 0.6220703, 1.3759766, -3.3261719, -1.0390625, -1.7119141, 1.3330078, 1.3515625, -2.0546875, 0.10974121, -2.4140625, -0.46069336, -0.9794922, 0.8149414, 0.7993164, -1.7207031, -1.5898438, 3.484375, 1.2607422, -0.06970215, -0.012802124, -2.7265625, 1.4091797, -0.11804199, -0.63134766, 0.14611816, -1.1591797, -1.0283203, 1.4189453, -0.29467773, -2.9570312, -0.6074219, 0.42016602, -1.53125, -0.01940918, 2.8632812, 3.1445312, 3.2539062, -0.32543945, -2.765625, -1.265625, -0.26416016, -1.6455078, 1.5634766, -0.74902344, 0.3083496, 0.34960938, 1.453125, -1.8427734, -1.1494141, -0.5541992, -0.9169922, -0.35766602, 1.1689453, -2.0214844, -2.7929688, -1.3505859, 1.2333984, 2.015625, 0.3088379, 0.0803833, 0.47827148, 1.4423828, -1.2226562, -0.9472656, 1.8662109, 0.25463867, 1.4716797, 0.68115234, 1.4394531, 0.30371094, 1.6679688, -1.8613281, -0.29492188, -1.6767578, 0.5126953, 2.0742188, 0.50097656, 1.46875, 0.62158203, 0.05569458, 0.79345703, -2.1464844, 2.1289062, 0.5883789, 0.4987793, 0.79541016, -0.98583984, -1.2675781, 2.7402344, 2.5605469, -1.0039062, -1.0820312, 0.1439209, 2.7402344, 0.47314453, -0.30639648, 0.54833984, -0.58203125, 0.53564453, 0.07696533, -0.8154297, -0.765625, 1.2177734, -0.49438477, -1.5898438, 2.40625, 2.6328125, 0.7558594, 1.6308594, -0.43530273, -3.015625, 0.12719727, -1.90625, -0.060577393, 0.2849121, 0.15686035, 0.5253906, -2.7890625, 2.0703125, 0.35791016, -0.19921875, 1.0458984, -0.027709961, 0.21765137, 2.171875, 0.09234619, -0.7758789, 0.033691406, 0.15185547, 2.1152344, 1.9423828, -0.22351074, 0.24023438, 0.7558594, -0.72998047, 0.76171875, -0.77783203, 0.671875, -0.35595703, -1.2949219, 1.1171875, -3, 2.2753906, 0.3696289, 0.6123047, 0.2548828, -4.3867188, 1.4599609, 2.1347656, -1.5722656, -2.8359375, 2.2597656, 2.84375, 0.078063965, 3.5039062, 0.5288086, 0.54833984, -0.70410156, 2.3359375, 0.7480469, -1.8662109, 0.3244629, -0.10296631, -1.4648438, -0.89208984, 0.5078125, 1.9072266, 0.10925293, -0.5283203, -2.0117188, -3.2832031, 1.4863281, 0.2010498, -2.0605469, 0.8442383, -2.9550781, 1.3535156, 0.7583008, 0.7993164, 2.2539062, -0.9902344, -0.7451172, 1.2060547, 0.122680664, -1.8320312, 0.8095703, 0.31518555, 0.87597656, -0.036590576, -0.83984375, 0.7993164, -1.0820312, -0.40063477, 1.0390625, -0.76171875, -2.6894531, 1.3662109, -1.2207031, -0.75439453, 0.5288086, -1.2578125, 2.8652344, 1.2158203, 1.3554688, -0.95751953, -0.2565918, -0.23327637, -1.0214844, 1.3134766, 1.1953125, -1.2304688, -3.0449219, -0.79052734, -0.12445068, -0.10241699, 2.4375, -1.0224609, 3.0820312, 0.44018555, -0.58935547, 1.7636719, -0.48120117, -0.25683594, -1.0644531, 2.4902344, -2.1699219, 0.70703125, -0.8574219, 1.5, -0.6347656, 2.4863281, -0.8066406, -1.015625, 0.81640625, -1.4179688, 2.8300781, -0.96191406, 0.5288086, -1.3945312, -0.8491211, 0.6201172, -1.8046875, -2.9121094, 1.0400391, -0.027572632, -1.8730469, -0.8041992, -2.3066406, 0.34765625, 0.59765625, 1.0146484, -1.5732422, -1.1074219, -1.53125, 0.24450684, 0.5048828, 0.4621582, 0.20202637, 2.3164062, -1.2451172, -2.9667969, -0.3798828, 2, -0.15759277, -0.69091797, 0.28393555, 0.04107666, -0.2130127, -0.15661621, 0.34179688, 0.31689453, 2.2363281, -1.140625, -2.6113281, 1.4267578, 0.88964844, 0.18237305, 1.3623047, -1.5761719, -1.7724609, -2.8808594, -0.69091797, 1.9980469, 1.78125, 3.1523438, 1.1171875, 2.3457031, 0.45361328, -0.042541504, -1.0664062, -0.50341797, 0.3269043, 2.9453125, -2.9121094, -1.6103516, 1.2138672, 1.5869141, -2.9785156, 0.1796875, 0.3881836, -0.26879883, 3.0175781, 2.3183594, -0.7055664, 0.12371826, 1.140625, 1.0566406, 0.43237305, -0.81640625, -0.15148926, -0.15600586, 1.1386719, -0.17016602, 1.4296875, -0.09063721, 1.0410156, -0.048034668, 0.6635742, 2.8710938, -1.3134766, 0.96777344, -0.16137695, -0.828125, -0.6855469, 0.3815918, 1.2792969, 0.8100586, -0.3642578, 0.068603516, -0.4309082, -4.2851562, 0.66015625, -0.14941406, 0.24060059, 0.22717285, -0.18969727, -0.8696289, 1.3261719, 0.40551758, 0.5126953, 1.1357422, 0.7817383, 0.67578125, -1.28125, -0.26513672, -0.75878906, 1.4726562, -0.62158203, 1.0166016, -0.09375, 0.50683594, -0.42211914, -2.5625, -2.0566406, -3.0527344, 0.5722656, 2.7890625, 1.3886719, -1.1474609, -0.75146484, -0.37939453, 0.7832031, 2.6796875, -1.1953125, 0.011627197, -0.6850586, 1.2802734, -1.1650391, -1.8232422, 2.6621094, 0.6098633, -2.6269531, -1.3720703, -2.6308594, 0.82128906, -0.5839844, -0.7558594, -0.87060547, -0.24169922, -1.3300781, 1.7666016, 0.5917969, 0.4416504, -0.61376953, 2.2773438, 0.36816406, -2.3183594, -0.14941406, -1.8691406, -5.9335938, -0.059143066, -1.8720703, 0.012710571, 1.59375, 0.0021800995, 0.94189453, 1.4267578, 0.31713867, -2.8730469, -1.2958984, -0.3779297, 1.9267578, -3.859375, 0.22644043, 0.82666016, 0.7211914, -2.2304688, -2.515625, -1.0732422, -2.5136719, -0.05706787, -1.0146484, -2.2167969, 2.1445312, -0.20031738, 0.6923828, -0.19396973, -1.0625, 1.578125, -1.1679688, -0.5307617, -3.5449219, 1.7929688, -1.0498047, 0.5395508, -0.039611816, 2.7441406, 2.3496094, -2.1601562, -0.13745117, 0.061401367, 1.6777344, -0.5029297, -1.9560547, -1.0839844, -1.9765625, -0.8027344, -2.2382812, 0.27514648, -0.28857422, -0.2607422, -0.6074219, 0.95751953, 0.9873047, 0.25878906, -1.7558594, -1.9101562, 2.7714844, 0.7524414, 0.23876953, 0.62939453, -0.72265625, 0.47143555, -2.1914062, 1.1728516, -0.62841797, -1.1289062, 1.6425781, -0.625, -3.2539062, 0.14331055, 0.2590332, 0.44262695, -2.25, -0.034454346, -3.7285156, -1.6914062, 2.3085938, 1.2304688, -1.2148438, 0.7128906, -0.17834473, 0.19628906, 2.890625, -1.1894531, -0.38061523, -0.6582031, -2.1152344, 0.1505127, -0.8852539, -0.24865723, -0.036865234, -0.6196289, 0.6748047, 0.4675293, 2.1386719, -0.1550293, 1.0625, 1.3193359, -1.7246094, -2.6933594, 1.8720703, 1.1230469, 1.9560547, 2.2148438, -0.76416016, 2.1933594, 1.5341797, 2.265625, -0.117492676, 1.2353516, -0.22387695, -2.0019531, -0.75, 0.74560547, -0.22375488, -2.0019531, 1.7265625, -0.08258057, 1.5839844, 1.2519531, 4.140625, -0.74853516, -0.04940796, -0.78515625, -0.88964844, -1.0820312, 0.15515137, -0.32226562, 3.6796875, 0.5058594, -2.4082031, 1.9482422, 2.4316406, -0.88623047, 0.95947266, 0.62109375, 0.7553711, -0.7246094, -2.140625, -2.34375, -0.09320068, 2.046875, 0.77001953, -2.9257812, 1.0673828, 0.7006836, 0.062316895, 1.6298828, 0.92578125, 1.2158203, 0.3425293, 0.45361328, -2.1757812, -2.7109375, -3.1152344, -3.6152344, 0.8652344, 2.1933594, 1.2880859, 0.023651123, 0.40551758, 0.29956055, -0.6616211, -1.8203125, -1.234375, 0.15344238, -0.8676758, 0.009635925, 1.9619141, 1.4648438, 0.8779297, -0.48535156, -0.5097656, 0.6098633, 2.2285156, 1.4208984, -0.57666016, -0.06390381, -0.7705078, -2.7539062, -4.2265625, 0.30029297, 1.625, -0.3215332, 0.45581055, -3.2382812, -1.5048828, 1.5019531, -1.7246094, -0.8935547, -4.0546875, -0.21411133, -0.7373047, -0.20776367, 0.5888672, -0.51123047, -0.3828125, 0.6064453, -1.2851562, 0.3017578, -0.31201172, -2.4472656, -2.7207031, 2.9199219, 0.6298828, -0.6591797, 1.8857422, -0.61279297, 1.4589844, 1.2587891, 0.62109375, -2.5371094, 1.9619141, -1.7529297, -0.60058594, 0.9501953, -0.68896484, 0.97802734, 3.5449219, 1.0175781, 1.8613281, 2.3476562, 2.2226562, -0.15356445, 1.0917969, 1.7783203, -1.1601562, 1.7441406, -0.4638672, 1.6279297, -1.1220703, 2.078125, 2.7988281, -1.9541016, -1.9570312, -2.0625, -1.4794922, -0.46801758, -1.1601562, 0.1899414, 0.1385498, 1.8544922, 0.21765137, -1.7275391, 0.84716797, 0.26660156, -1.1503906, -1.0976562, 2.15625, -1.46875, 1.0673828, 0.30688477, -2.953125, -1.7119141, -0.4206543, 1.8857422, 0.7089844, 0.44262695, 1.0947266, 0.18041992, -0.049072266, 2.0898438, -0.16870117, 0.95214844, 0.4099121, 2.0917969, -0.17163086, 0.6464844, 1.8027344, -1.2695312, -1.2050781, 0.9902344, -0.123535156, -0.48461914, 0.44848633, 3.296875, -1.5673828, 0.67578125, -0.113586426, 1.5576172, -1.7939453, -2.2890625, 0.99316406, -2.6386719, 0.8286133, 0.39379883, 0.2824707, -1.9033203, 2.6386719, 0.44018555, -1.0849609, 1.8173828, 1.8115234, -1.40625, -2.0800781, 1.5439453, 0.9501953, 0.036254883, 0.8491211, -0.12207031, 0.009895325, 1.0400391, -2.5273438, 0.38085938, 0.52197266, 1.4580078, 1.2294922, 0.07495117, -0.03640747, 1.6806641, 2.9277344, 0.39257812, 2.9511719, -0.0690918, 2.5097656, 1.2470703, 2.3320312, 1.8642578, 0.05230713, 1.3720703, 1.046875, -0.9321289, 0.62597656, -0.30737305, -0.45336914, -1.2109375, 1.3623047, 0.34692383, 0.48461914, 0.53222656, -2.1855469, -2.1953125, -0.6357422, 1.7001953, -2.1992188, 1.1445312, -1.3466797, 0.09777832, 0.52978516, -1.8730469, -0.2734375, 0.3491211, -1.8046875, 0.18725586, 2.6933594, 0.8823242, 0.36694336, -0.87597656, -3.0234375, -1.7158203, 0.06311035, 0.28735352, -0.05307007, 0.81103516, 0.69433594, 0.3112793, -0.11804199, 0.9506836, 0.8339844, -2.4589844, 1.5966797, 0.7583008, 3.8945312, 2.4082031, -0.98291016, 3.2207031, 3.1503906, -1.96875, -4.3515625, 1.0722656, 0.5727539, 0.4790039, -0.8178711, -2.5078125, 2.5097656, -0.10479736, 1.0908203, -1.9892578, 1.8105469, 0.44335938, -3.0410156, 1.8974609, 0.28393555, -1.96875, 3.703125, 1.4941406, 0.6879883, -0.83447266, 1.2841797, 2.7832031, 0.2442627, 0.96484375, -0.29003906, 0.12792969, -1.6162109, 2.6679688, 0.50390625, -2.0527344, 0.69140625, 3.3828125, 1.0673828, 0.7373047, -0.3947754, 0.19482422, 1.8457031, 0.89941406, -0.5966797, -1.9472656, -2.1933594, 1.5644531, 0.37939453, 0.2631836, 0.30615234, -1.9804688, -0.85302734, 1.046875, -2.0039062, -0.28735352, 0.6489258, -0.71777344, 0.7832031, -0.92626953, -1.3847656, -1.9003906, 1.3544922, 0.12634277, -1.0400391, 0.31347656, -1.4931641, 1.7412109, 0.4963379, -0.82373047, -0.79785156, 0.43408203, -0.64746094, -1.6201172, 1.34375, 0.02053833, 0.0044822693, 0.7285156, -1.0419922, 0.9116211, 0.7939453, -0.15197754, 1.0693359, -1.2753906, 0.5854492, -0.18041992, 0.45507812, 0.4013672, -0.0074005127, 1.1123047, -2.046875, 2.5839844, -0.6616211, -2.2285156, -1.7753906, -3.6621094, 1.7333984, 0.31518555, 0.27026367, 0.734375, 1.5810547, 1.8134766, -0.42358398, 0.10723877, -0.028396606, -1.0478516, 0.9404297, -0.8647461, 0.33691406, -0.12731934, -1.5439453, -0.46875, 3.7832031, 0.31518555, -1.0458984, 0.38354492, 0.8066406, -1.1923828, -0.4855957, -0.19726562, -1.4277344, -3.9414062, 0.18054199, 2.3574219, 4.2890625, 0.2854004, -1.7958984, -2.6816406, -0.24206543]}, "B08FMFK7CN": {"id": "B08FMFK7CN", "original": "Brand: METER STAR\nName: Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17\" and 22\" Blackstone Tabletop Camper Grill\nDescription: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F
          No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
          Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
          CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
          Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
          Specifications\uff1a
          A. 3/8\" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
          B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
          Warm Tips:
          * This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
          Quality Standard:
          CSA
          Package Included:
          1 Pcs x Propane Elbow Adapter.
          1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.\nFeatures: 6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17\" and 22\" Camper Grill,MAX working Temperature Cannot be over 122\u00b0F\nNo Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit\nGreat Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill\nCSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model\nElbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping\n", "embedding": [-1.5068359, 1.3828125, 0.16564941, 1.6953125, -0.74121094, -1.4169922, 2.1582031, -1.7265625, 0.46264648, -0.13427734, 0.75634766, -0.22680664, 0.24682617, -2.53125, 1.3974609, 0.7270508, 2.3984375, -0.24633789, 1.5078125, -0.07537842, 1.515625, -0.032409668, 3.1621094, -1.3671875, 1.4580078, -0.38452148, 3.9277344, -3.0917969, 0.0803833, -0.41723633, 1.6943359, 0.16088867, -0.30395508, 2.6171875, -2.7617188, -1.0273438, -0.43798828, 0.921875, -3.2089844, 0.12420654, -0.9169922, 2.1191406, 3.7265625, 0.34521484, -2.8417969, -0.27734375, 1.1337891, 0.38232422, 0.7270508, -1.4199219, 1.1269531, 2.2226562, 1.0615234, -0.09564209, -1.2080078, 0.42529297, -0.5683594, -1.9882812, 1.4560547, -0.0017471313, 2.765625, -1.0224609, -2.6777344, 2.0136719, -0.30273438, -0.034973145, 0.62158203, -0.5058594, 0.5966797, 0.13500977, 0.47460938, -0.24487305, -0.66748047, -1.3134766, -0.17871094, -0.13049316, -3.4121094, -1.3818359, 1.6923828, -1, -3.0253906, 4, 0.80566406, -3.0683594, 1.9042969, 0.5678711, -0.5361328, 2.3144531, 3.2949219, 0.41259766, -2.3613281, 2.1992188, -3.0449219, -3.71875, 0.44262695, 0.40283203, 1.2919922, 0.5986328, -1.0849609, 0.77734375, -2.78125, -0.60595703, -1.7304688, 1.1855469, -3.0664062, -0.19238281, 1.1552734, 0.82958984, -3.2890625, -0.76660156, -0.66748047, 0.39916992, 2.3515625, 0.21850586, 0.69384766, -1.390625, 0.021194458, 0.6376953, 1.9160156, 1.3544922, 3.9863281, 0.38330078, 0.5625, -0.7314453, -0.37646484, 0.024887085, -0.51660156, 0.36450195, 3.5058594, -0.23632812, -0.33325195, -2.3984375, 3.2519531, 0.79785156, -0.33984375, -2.2363281, -1.2695312, -1.9052734, -2.8808594, -0.27734375, -2.8476562, 1.2011719, 2.6132812, 0.8027344, -5.3242188, -0.54345703, -1.7851562, 0.75341797, 0.36254883, -0.6855469, 1.3759766, -1.8808594, 0.29296875, -0.34057617, 1.8486328, 0.1899414, -0.7314453, -1.390625, 4.0195312, 1.0224609, 0.21508789, -1.6337891, -1.8779297, 0.6386719, -0.41259766, -1.1523438, -1.3544922, 1.9580078, -1.1044922, 1.6992188, -0.30200195, -2.2519531, -0.5209961, 0.3256836, 0.34155273, -0.7524414, -0.4580078, 2.1484375, 2.1445312, 0.24694824, -3.4472656, -2.1503906, -0.84521484, -3.2714844, 0.76953125, -1.265625, -1.3583984, -0.49047852, 1.4726562, -0.4038086, -2.0625, 1.0810547, -0.74072266, 1.1806641, -0.87109375, -1.0351562, -1.5996094, -1.1904297, 0.7636719, 0.6533203, -1.9638672, -1.1162109, 1.3564453, 0.3605957, -2.1113281, -2.4257812, -0.37036133, 0.47265625, 0.18945312, 2.453125, -0.0049591064, -0.10058594, 1.0673828, -0.7314453, -0.35839844, -1.6777344, 2.4746094, 1.5927734, 0.94091797, 1.7099609, -0.18103027, 0.23303223, 1.1230469, 1.4345703, 2.828125, 1.1699219, -0.26367188, 0.55908203, -2.5703125, -0.18896484, 1.2226562, 2.3183594, -0.46850586, -0.14978027, 0.45947266, 2.9785156, 2.0527344, -0.10046387, 1.6982422, -0.5722656, -0.25756836, -0.75439453, -0.11340332, -2.3632812, 1.2119141, 0.5776367, -2.6210938, 2.7167969, 1.6103516, 0.36547852, -0.6191406, 0.40942383, -2.0585938, -0.7519531, -1.6044922, 0.109558105, -0.9042969, 1.3710938, -0.18786621, -2.4375, 2.4589844, 0.6557617, -0.91308594, 1.265625, 1.9521484, -0.5961914, 2.2871094, -0.95654297, -2.7949219, 0.7529297, 1.3632812, 1.6533203, 2.5292969, 0.07501221, 1.1962891, 0.8017578, -0.71728516, 1.3007812, -0.014060974, -0.04321289, 1.0986328, -1.1757812, 2.0058594, -2.9296875, 1.9726562, -0.09399414, 0.5019531, 0.890625, -1.3398438, 1.1796875, 3.0292969, 0.11004639, -2.15625, 2.8964844, 1.9882812, -0.33789062, 1.5439453, -1.7490234, 0.44506836, -0.50878906, 1.4443359, 0.9511719, -0.71191406, 0.4753418, 1.5957031, 0.6689453, -0.85546875, -0.4597168, -0.64160156, 2.0605469, -0.84716797, -1.4619141, -1.3066406, 2.1230469, -0.57177734, -0.84375, 0.92529297, -2.0527344, 0.33325195, 1.6865234, 1.5009766, 0.5961914, 0.06149292, -1.9433594, 0.62890625, -0.19165039, -1.6796875, 1.7822266, 1.5439453, -0.05709839, 1.4091797, -0.00894165, 1.1816406, -1.640625, -2.7792969, 0.07672119, -0.2454834, -2.28125, -0.74609375, -0.94970703, -1.3896484, -0.265625, -0.57177734, 3.0664062, 1.0107422, -0.36987305, -0.7714844, 0.67285156, 0.42456055, -1.2207031, 0.22851562, 1.6738281, -0.90478516, -2.078125, -1.0136719, -0.9760742, 1.7851562, 0.24780273, 0.05859375, 1.3867188, -0.29589844, 1.0537109, -0.60009766, 0.48950195, 1.0351562, 0.16699219, 2.2109375, -3.046875, -0.64453125, -1.1748047, 1.0986328, -1.8564453, 0.5551758, -1.5322266, -0.78759766, 0.1270752, -1.3144531, 2.1933594, -1.3964844, 1.3632812, -1.4013672, 1.4658203, 1.0878906, -0.8334961, -2.6679688, -0.5673828, 0.4091797, -0.55371094, -2.4785156, -2.8261719, -1.0419922, 1.1933594, -0.033813477, -1.4179688, -0.68652344, -0.7788086, 0.5395508, 0.11383057, -0.5625, 0.6308594, 1.8466797, 0.6850586, -2.8203125, 0.546875, 0.58251953, -1.3759766, -0.83740234, 0.90966797, 0.37670898, -1.2421875, -0.39404297, -0.31396484, 0.1920166, 2.1113281, -1.3369141, -3.3945312, 0.68652344, 0.43725586, -2.2070312, 3.1757812, -0.03213501, -0.8276367, -2.4121094, -1.9560547, 2.0742188, 0.78515625, 3.0800781, 0.0758667, 1.0390625, 0.7397461, -1.2958984, -1.2021484, -0.7832031, -1.5195312, 3.4492188, -2.3515625, -2.2480469, 0.52734375, 0.87939453, -2.8144531, 0.03643799, 2.0019531, 0.06365967, 3.4023438, 0.9321289, 2.046875, -0.8413086, 0.9111328, 0.8486328, 1.2490234, -0.24951172, 1.2998047, 0.2878418, 1.4208984, -0.91064453, 1.2451172, 0.41333008, 0.49169922, 0.45751953, 0.76123047, 1.4003906, -2.5214844, 1.4580078, -0.90185547, 0.8857422, 1.0332031, 1.8710938, -1.5644531, -0.8251953, -0.5859375, 1.0927734, 2.234375, -2.4296875, -1.03125, 2.5253906, 2.0664062, -1.2412109, -0.6274414, -0.7988281, -0.18139648, -0.040802002, -0.86572266, 1.0371094, -0.4338379, 1.1308594, -0.21716309, -0.05102539, -2.1992188, 2.3339844, -0.9326172, -0.36987305, -1.421875, -0.077941895, 0.25952148, -2.484375, -1.5458984, -3.1191406, -0.5097656, 3.28125, 0.8105469, -1.2109375, 0.45288086, -1.0693359, 2.2363281, 1.2109375, -1.0205078, -0.29736328, -1.1289062, -2.0605469, -0.2590332, 0.33422852, 2.4511719, -1.2275391, -0.5654297, -2.2089844, -1.8046875, -0.44140625, -1.6552734, -0.44873047, -0.87939453, 0.70410156, 0.76953125, 1.0976562, -0.22253418, 2.3242188, -0.5917969, -0.6401367, 1.0722656, -4.0625, -0.3371582, -2.3945312, -5.5234375, 1.3505859, -3.3125, 1.3398438, 0.5341797, 1.2021484, 0.34301758, 2.7714844, 1.8115234, -3.7753906, 0.60791016, -0.58691406, -0.5864258, -3.5039062, -0.8461914, 2.3964844, 0.88720703, -1.6621094, -2.1445312, 0.8964844, -2.2558594, -0.32763672, -0.78271484, -2.7871094, 0.14782715, -0.23596191, -0.099853516, -1.0966797, -0.5410156, 1.3027344, -0.80078125, -0.25, -2.3242188, 2.2929688, -0.6098633, 1.6591797, -0.59033203, 1.5068359, 0.9091797, -1.7304688, -0.3239746, 0.5307617, 3.9101562, -0.39892578, -0.99121094, 0.18139648, -0.40405273, 0.24658203, -1.2480469, -1.6376953, 0.74658203, -1.4755859, -1.1347656, -0.21923828, 2.7597656, 1.6357422, -1.1640625, -2.515625, 0.70703125, 0.87402344, -0.7714844, -1.6367188, -0.19116211, -1.6894531, -1.3925781, -0.014129639, -2.9394531, 0.6723633, -1.3564453, -1.0976562, -2.3007812, 2.8105469, 0.18518066, 1.4824219, 1.6513672, -0.40527344, -0.0791626, 1.9189453, -0.9472656, -2.8457031, 1.1416016, -1.0185547, -1.7509766, 3, 1.6162109, -0.50634766, -0.3552246, 0.54833984, -1.8925781, -1.6884766, 0.46826172, 1.0830078, -1.0371094, -0.3671875, 1.0185547, -0.44189453, 2.2773438, -2.3984375, 2.4667969, 0.6928711, -0.02758789, -1.1083984, 2.1894531, 1.3466797, 1.6181641, 1.7324219, 0.13574219, 1.8935547, 0.5522461, 0.4855957, 0.71484375, 0.5498047, -1.5585938, -0.9135742, -0.26660156, -1.2001953, -1.1152344, 0.92333984, 1.1953125, 1.1806641, 1.5039062, 1.1748047, 1.9453125, -1.7080078, 1.4755859, 0.21264648, -2.34375, -1.109375, 0.20825195, -1.2304688, 3.4394531, -0.6269531, -3.2929688, 0.37890625, 2.8867188, -0.42871094, 0.8955078, 0.9995117, -0.9848633, 1.2568359, -3.6796875, -0.70751953, -1.5517578, -0.3088379, 0.9921875, -2.6894531, 0.8803711, 0.2434082, 2.2871094, 2.2910156, -0.7583008, -1.0966797, 0.4338379, -1.2871094, -0.96484375, -1.8828125, -0.86083984, -4.2929688, -0.9145508, 1.6142578, 1.3544922, 0.6357422, -0.82373047, 1.3251953, -0.54785156, -0.68408203, -0.45947266, 1.7353516, -0.7338867, -1.171875, 2.9628906, -0.4033203, -0.009635925, -1.8789062, -0.37353516, 0.57128906, 1.0576172, 0.7416992, 0.6645508, -0.6723633, 0.23120117, -2.6113281, -4.7890625, -1.3623047, 0.8203125, -0.5307617, 0.19848633, -0.8408203, 0.28930664, 1.6289062, -0.1854248, -0.5917969, -2.6542969, 1.3056641, -0.6044922, -0.07751465, -0.22705078, -0.5341797, -0.36132812, 0.8989258, 0.95947266, 2.4257812, -0.07434082, -3.3886719, -0.5722656, 2.0078125, 0.18579102, -0.8642578, 0.7158203, -1.1464844, -0.30273438, 0.13146973, 0.66259766, 0.0041885376, 2.234375, -3.4726562, -0.51123047, 0.24414062, -1.7998047, 0.5996094, 0.2290039, -0.58154297, 0.90966797, 1.7236328, 2.9609375, 0.83984375, -0.9067383, 0.41601562, 1.3085938, -0.515625, -1.4306641, -0.3166504, -0.7963867, 2.4335938, 0.05340576, -1.46875, 1.3447266, -2.1660156, -1.90625, 0.2536621, -1.7929688, 0.4086914, -1.3730469, 0.84228516, 2.3828125, -0.7519531, -0.8041992, 1.5195312, 0.49951172, -0.22399902, 0.79833984, -2.1933594, 2.4355469, 0.7661133, -2.4199219, -0.8076172, -0.07165527, 0.29492188, 2.96875, 0.10510254, -0.56103516, 0.29296875, -1.6552734, 1.9697266, -1.2158203, 1.9472656, 1.4511719, 0.54785156, -1.3183594, -1.0429688, 3.0214844, -2.1074219, 0.16796875, 1.3242188, 0.34423828, -0.21057129, 1.7744141, 1.4775391, -3.7753906, 1.3447266, -1.4013672, 1.2666016, -1.4658203, 0.2322998, 0.9223633, -1.6240234, 0.41625977, -0.9448242, -2.8339844, -3.0058594, 2.21875, 0.7285156, -2.0214844, 1.1669922, 1.2978516, -0.6796875, 0.65771484, 1.0898438, 0.5205078, -0.107299805, -0.43237305, -2.7011719, 0.84765625, 0.72314453, -1.8769531, 1.2617188, 1.7265625, 1.4970703, -0.27368164, -1.2236328, 0.42822266, 2.1425781, 0.9560547, 1.6640625, 3.2636719, 0.4189453, 3.2109375, 1.3076172, 2.5214844, 0.009880066, 0.64404297, -0.18652344, 2.2207031, 0.55322266, 0.28051758, -1.8349609, 0.55566406, -2.4160156, 1.5683594, -0.15795898, -0.12145996, 2.2363281, -2.5390625, 0.3618164, -1.703125, 1.0322266, -1.8457031, -1.2382812, -0.30444336, 0.6225586, 1.1904297, 1.5273438, 1.9541016, 2.2402344, 0.16577148, 1.0175781, 0.8305664, 2.5019531, -2.0996094, -0.109802246, -1.1523438, -2.1699219, 0.60253906, 2.515625, 1.6572266, -0.44750977, 1.4345703, 1.2490234, -1.0634766, 0.33544922, 1.4433594, 0.14123535, -0.07739258, -0.24621582, 1.7138672, 2.4589844, -2.8222656, 1.5527344, -0.59472656, -2.6855469, -1.9072266, 1.9121094, 1.4628906, -0.5605469, -0.011505127, -4.875, 2.3144531, -0.48486328, 1.4199219, -2.3027344, 1.0458984, -0.2199707, -1.9023438, -0.89404297, 0.19812012, -1.2177734, 2.2695312, 1.1386719, -1.1630859, 1.3701172, 3.0136719, 0.35253906, 0.42773438, 1.5029297, 0.5551758, -1.0117188, -1.0634766, 2.7109375, -0.32299805, -2.1464844, -0.9082031, 2.671875, 1.265625, 1.3261719, -0.44433594, 0.016204834, 0.4243164, 2.2421875, -2.0507812, 1.2050781, -1.2929688, 0.75341797, 0.8823242, 0.04083252, -0.12487793, -1.4199219, 0.75927734, 2.1445312, -2.15625, 0.74072266, 0.091552734, -1.5644531, 3.0488281, -1.3994141, -1.0087891, -1.5898438, 2.0507812, 0.36010742, -0.7348633, -1.5507812, -0.019058228, 1.4697266, -0.10473633, -1.5224609, -0.32592773, -1.1230469, 0.48095703, -3.3125, -0.2685547, -1.4697266, -0.93115234, 0.7504883, -1.2597656, 0.81689453, 2.96875, 1.1396484, -0.76220703, -2.0605469, 0.1550293, -0.4333496, -3.8417969, -1.171875, 0.26220703, 1.9472656, 1.7763672, 0.77978516, -0.46826172, -1.8339844, -0.5986328, -1.1142578, 4.0585938, -0.36547852, -0.1071167, -0.20825195, 2.4863281, 3.5761719, -0.89208984, -0.93603516, -1.0644531, 0.15270996, 0.69140625, -0.41186523, 0.4284668, 0.70458984, 0.20471191, 1.1298828, 4.9453125, 1.7539062, 0.14135742, 0.11791992, 1.5722656, 0.24499512, -2.4902344, 0.86621094, 0.0690918, -0.5776367, 0.4260254, 2.0859375, 3.3046875, 1.4599609, -0.2836914, -2.1855469, 0.7294922]}, "B003CV5IGK": {"id": "B003CV5IGK", "original": "Brand: Napoleon\nName: Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel\nDescription: \nFeatures: Up to 11000 BTU's\n304 Stainless steel construction\n7 foot heat radius\nElectronic push button igniter\nPerfect for your backyard\n", "embedding": [-3.5292969, 0.18676758, 3.1015625, 0.4946289, 0.28295898, -0.119018555, 0.37475586, -1.2363281, 0.50341797, 1.5878906, 2.6484375, -0.94140625, -1.6367188, 0.6713867, 0.9169922, -0.82910156, 2.3378906, 0.94091797, 1.2998047, -0.36816406, 0.68652344, 0.34057617, 1.1347656, -1.3994141, -1.1337891, 0.36254883, 3.890625, -3.8886719, 0.3857422, -1.8349609, -0.5317383, 2.0859375, 1.4277344, 1.4482422, -2.0703125, -1.046875, -0.30151367, 1.6328125, -4.3632812, -0.0132369995, -1.6816406, -1.4404297, 0.06555176, 1.7978516, -1.1191406, -0.9321289, 0.45922852, -0.70166016, -2.0136719, -1.1015625, -0.08868408, 0.72021484, -0.98535156, -0.40795898, -0.21228027, 0.8730469, -0.6064453, -1.3203125, 0.3955078, 0.44091797, 0.78125, -1.0644531, -1.7832031, 1.9375, 0.03479004, 2.5566406, -0.45092773, -0.090270996, -0.2626953, 0.43237305, 1.8046875, -0.09350586, -0.8745117, -0.70166016, -0.94433594, -2.1230469, -3.3066406, 0.7597656, 1.9189453, 0.28930664, 0.32836914, 0.029647827, 0.75927734, -0.14794922, -1.8916016, 0.3630371, -1.7617188, -0.65771484, 0.70654297, 1.8691406, -1.6533203, 1.9492188, -1.6474609, -2.4414062, 0.7128906, -1.0664062, -0.33740234, 1.8007812, -0.22094727, 1.1835938, -1.0273438, -0.15307617, -0.18591309, -1.4287109, -1.6015625, -1.0410156, 3.453125, 0.5024414, -2.3457031, 0.8041992, -2.3574219, -0.89453125, 3.3203125, -0.98291016, -0.09802246, 0.38305664, 1.0556641, 3.2265625, 3.3886719, 0.8745117, 3.8535156, -0.55615234, 1.5966797, -1.3378906, -0.80859375, 0.24902344, -3.0292969, -0.17150879, 2.7519531, -0.7158203, 1.8310547, -0.09790039, 1.7373047, 1.1269531, -1.4003906, -1.3574219, -1.5097656, -1.0927734, -3.7734375, -0.15356445, -2.2519531, 2.2226562, 0.77197266, 1.2802734, -3.2890625, -1.4130859, -0.7260742, 0.78222656, -1.5976562, 0.17956543, 0.22033691, -1.8447266, -0.39941406, 0.43579102, -0.20593262, 0.7675781, -0.9272461, -0.80078125, 3.7519531, 2.9726562, 2.0390625, -0.25170898, -0.4165039, 2.0292969, 0.7426758, -1.6474609, -0.5854492, 1.4921875, 1.5605469, 2.5332031, -0.9980469, -1.8583984, -1.2167969, -1.2744141, -0.5395508, 0.5888672, -0.08807373, 2.3945312, -0.296875, -0.1730957, -1.5810547, -1.7373047, 0.71728516, 0.43676758, -0.44555664, -2.2617188, -3.0644531, -1.2822266, -0.13903809, -1.9775391, 0.73291016, 1.3085938, -0.4038086, -0.9580078, -1.8964844, -2.5488281, -1.8554688, -1.3984375, 2.4511719, -0.42871094, -0.2770996, -0.36767578, -0.57958984, -1.2646484, -1.9042969, -4.109375, -2.7460938, 0.74316406, -0.103149414, 2.8808594, 2.2949219, -0.7089844, -0.6977539, -0.56933594, 0.7817383, -1.1416016, 2.9199219, -0.9741211, 0.53466797, 4.1015625, 0.0067367554, -1.2568359, 0.30541992, 0.9863281, -2.0390625, 2.2929688, 1.9033203, 0.9526367, -2.625, -1.6757812, 2.9296875, 0.578125, 1.2685547, 1.0097656, 0.41552734, 3.5273438, 0.40063477, -0.6665039, 0.35083008, 0.19702148, -0.10687256, -1.3769531, 0.6123047, -1.0136719, 0.62060547, 0.7324219, -1.375, 0.49902344, 1.4257812, 0.9741211, 0.15246582, -0.86621094, 0.6455078, 0.42358398, -2.3886719, 1.0761719, 0.6665039, 1.7167969, -0.4633789, -3.8828125, 2.3398438, 1.4648438, -0.41308594, 0.103271484, -0.51220703, -1.3457031, 5.421875, 1.1777344, -3.4257812, 0.86865234, -0.79248047, 1.3056641, 2.3457031, 0.65527344, 0.8232422, 0.31762695, -2.8417969, 3.765625, 0.55615234, 1.4121094, -0.59228516, -0.2397461, 4.0898438, -2.1035156, -0.43945312, -0.11566162, -0.08453369, 0.90771484, -2.7050781, 0.79541016, 4.125, -1.0302734, -1.6191406, 1.5087891, -1.3964844, 1.5927734, 1.9482422, -1.6210938, -0.046661377, -3.0253906, 1.8476562, 0.8208008, -0.24450684, 1.5322266, -1.6992188, -0.20324707, 0.9995117, -2.2832031, 1.1855469, -2.0351562, -0.24707031, -1.8710938, -2.6523438, -0.71191406, -1.4824219, -0.090270996, 0.52197266, -4.984375, 1.46875, -0.26367188, 0.72216797, 0.77783203, -1.0429688, -0.63720703, 1.2802734, 0.04269409, -1.7216797, 2.2070312, 0.51708984, -0.49365234, -0.5073242, -1.1279297, 0.7807617, -2.9511719, -3.1914062, 0.5527344, -1.8144531, -0.52734375, -0.7626953, -1.4912109, -0.14758301, 2.6171875, -2.5683594, 1.7021484, -2.2929688, -3.1992188, -0.78808594, 1.4990234, -2.0625, -0.7519531, 1.8037109, 1.0244141, -1.4316406, -4.7265625, -0.01889038, 1.1210938, -1.5400391, 1.2363281, -0.5644531, 0.8041992, -1.0791016, 0.19311523, 0.080566406, -1.8867188, -0.42236328, -2.7128906, 0.5800781, -3.0390625, 2.2460938, -2.6035156, 0.9394531, 0.03314209, 0.53466797, -1.1757812, -1.4082031, 0.052124023, -0.78759766, 2.1914062, 1.5390625, 1.78125, 0.0713501, -0.8364258, 2.3554688, -1.2304688, -1.7802734, 1.2597656, 0.5644531, -0.82177734, -1.9990234, -3.0800781, 0.71533203, -1.7675781, -1.0166016, -0.7651367, -0.2043457, -1.0224609, 0.7260742, -1.4101562, 0.05441284, -2.4296875, -1.0380859, 0.28076172, -0.020629883, -3.0058594, 0.03643799, 1.0244141, 0.2055664, 0.2211914, 1.6445312, 0.5991211, 1.625, 2.6796875, -1.1503906, 2.2460938, -0.35302734, -4.34375, 0.7973633, 1.4658203, -0.034332275, -0.11303711, -2.6328125, -0.9658203, -1.1728516, -0.17321777, 2.3730469, 1.6367188, 3.7460938, 0.5239258, 0.8720703, 0.05609131, 0.7480469, -2.0175781, -0.8510742, -0.36669922, 1.5957031, -0.4453125, -2.2070312, 0.5786133, 2.9296875, -1.7978516, -2.0820312, 1.6865234, 1.4375, 0.52734375, 0.6933594, -2.0019531, 1.3105469, 1.3642578, 2.6542969, 2.3417969, 1.0195312, -1.7666016, -2.171875, 0.22375488, 2.3046875, 2.3359375, 0.9580078, -0.15539551, 1.0800781, 0.5854492, 2.1308594, -2.9257812, 0.82421875, 1.2392578, 2.0273438, 2.2148438, 1.4238281, -0.4868164, 1.2099609, -0.81591797, 1.28125, 0.46289062, -2.796875, 0.46948242, 2.6074219, 0.04421997, -0.41333008, -0.8154297, 0.03656006, 1.1796875, -0.7949219, 1.4023438, 1.1220703, -0.35327148, -0.41357422, -0.05050659, -1.6523438, 0.1295166, 1.875, 0.35668945, -2.6386719, 0.37475586, 0.45336914, 0.66552734, -1.3398438, -1.5234375, -1.0791016, -0.0869751, 1.5556641, -2.4589844, -0.25805664, -0.31054688, 0.17980957, 0.47045898, 1.5556641, -2.5234375, -0.55126953, 0.37451172, -0.5058594, 1.5556641, -0.23339844, 0.15393066, 1.6103516, -2.5039062, -0.60058594, -3.6816406, -1.3642578, 2.5585938, -2.4589844, -0.85009766, 0.7402344, -0.34472656, 2.0332031, -1.2714844, 1.4375, -1.9101562, -0.9628906, 0.69628906, -1.6455078, 0.23388672, -2.6503906, -4.3984375, 0.35131836, -1.4082031, -0.53466797, 0.83984375, 0.053466797, 0.24047852, 1.3818359, -0.22180176, -2.6269531, -2.0175781, -1.3476562, 1.1191406, -2.4121094, 0.16699219, 1.8476562, -0.18981934, -1.2685547, -2.2167969, 0.67822266, 1.2441406, 0.46679688, 1.3046875, -1.8105469, 0.7324219, -2.1015625, 2.3398438, 0.025787354, 1.2509766, -1.5039062, -0.26513672, -0.1484375, -1.3300781, 1.4853516, -0.65283203, 0.32104492, 1.3769531, 3.8554688, 0.023864746, 0.03994751, 0.23608398, 1.0625, 2.7011719, -0.13647461, -3.4980469, -1.0830078, -0.039611816, -0.31958008, -0.8798828, 0.52441406, -0.7792969, -1.6982422, -1.7802734, 1.3427734, -0.02658081, 2.6757812, 1.1503906, -2.9101562, 0.9628906, 1.0810547, -2.4785156, -1.0615234, -0.052124023, -2.0605469, 0.2890625, 1.8271484, -0.91015625, -0.24633789, -1.7773438, -1.3466797, -2.3105469, 2.1855469, 1.7822266, 2.8417969, 2.1425781, -2.2695312, -0.84472656, -1.1591797, 0.90234375, 1.3837891, 1.2275391, 1.0957031, -0.9199219, 3.1210938, 2.3320312, -2.1210938, -0.31103516, 2.3691406, -0.9067383, -0.5527344, -1.2373047, 0.2409668, -0.19812012, -1.7216797, 1.0810547, -0.42163086, 2.6992188, -0.32592773, -0.51123047, -1.0761719, -1.2421875, -0.65478516, 0.24597168, -1.5332031, 0.25097656, 2.6816406, 0.8911133, 0.59277344, -1.0429688, 1.8183594, 0.6738281, 2.2539062, -0.33007812, -2.2207031, -1.9619141, 1.6679688, -2.4960938, -0.8183594, 1.5742188, 0.43920898, -0.75683594, 4.7617188, 2.1367188, -1.5771484, 0.5258789, 2.0332031, -1.6054688, 1.5244141, 0.42089844, -0.1640625, 1.7685547, -0.50634766, -3.0273438, -0.026489258, 3.5234375, -0.27124023, 0.92822266, 0.47851562, -1.2646484, -1.4355469, -4.0546875, -0.7583008, -1.3671875, 1.9042969, -1.1777344, -1.8632812, 0.6401367, -1.7939453, 0.5292969, 2.9414062, -0.68066406, 0.2175293, 3.0800781, 0.22265625, -0.87841797, 0.59521484, 0.51904297, 0.6582031, 0.8642578, -0.30664062, -0.45092773, 1.2314453, -0.029632568, 0.42871094, -1.6181641, -0.53222656, 0.45385742, 3.1738281, -1.9267578, -1.4667969, 0.09185791, 1.7871094, 0.7026367, -1.9384766, -0.80322266, -1.9482422, 0.7675781, -1.0908203, -0.13879395, 0.42895508, -2.1621094, -1.7294922, -1.8583984, -1.1347656, 1.6474609, 0.9477539, -0.09881592, -1.7470703, -1.6835938, -1.4921875, -0.01838684, -0.38427734, -2.109375, -0.28588867, -1.4296875, 1.0595703, 1.4472656, 0.7207031, 0.22265625, 0.58691406, -1.2158203, -0.17492676, 0.52490234, -2.5566406, -3.5371094, 1.5761719, -0.80566406, 0.8051758, 1.7294922, -0.24169922, 0.16137695, 2.6835938, 0.5830078, -1.7265625, 1.3623047, 0.23937988, -1.4365234, 3.1640625, -0.057617188, 1.8144531, 0.9916992, -1.1308594, 0.9873047, -2.0605469, -0.19030762, 0.57666016, 1.0380859, 0.107788086, 0.48242188, 0.19543457, -0.05593872, 0.26757812, -0.40551758, 2.484375, 1.4707031, -0.3203125, -1.1455078, -2.8300781, -1.5009766, -1.0908203, -1.6132812, -1.0332031, -0.8935547, 0.025756836, 1.9980469, -0.003704071, 0.58251953, 2.3867188, 2.5566406, -3.0429688, 1.21875, -1.1171875, 1.8134766, 1.1289062, -1.8759766, -1.6591797, -2.3046875, -1.4296875, 0.9013672, 1.0517578, -2.734375, -0.7397461, -1.0800781, 1.4853516, 0.46240234, 0.6767578, 1.6982422, -0.101501465, -1.5126953, 2.9082031, 2.7714844, -0.16149902, 1.6044922, -0.36523438, 1.7802734, -0.640625, 3.8417969, 2.9589844, -0.2536621, 1.4140625, -0.32983398, 1.3095703, 0.74609375, -1.1640625, 1.0957031, -1.9033203, -0.1484375, -0.74072266, -1.8857422, -2.4628906, -0.43408203, 0.9375, 1.2705078, 2.0859375, 1.5, 0.83203125, -0.48901367, 1.5527344, 1.4199219, 0.5488281, 0.6977539, 1.2353516, 0.83740234, 3.515625, -0.88623047, 2.1640625, -0.119140625, 1.2714844, -0.67578125, 0.22302246, -0.48388672, 0.73876953, 2.0800781, 1.4667969, 2.1230469, 0.3564453, 2.2988281, 0.28735352, 1.1601562, 1.8623047, -0.875, -0.28930664, 1.7529297, 1.4863281, -0.7392578, -0.087524414, 0.50341797, 0.15124512, -1.4208984, -2.8242188, 0.040252686, -0.16333008, 0.16308594, 1.0029297, 0.26660156, 2.0332031, -1.2226562, -0.027709961, -1.3271484, 2.9804688, 0.93603516, -1.6767578, 1.3476562, -0.39990234, 1.7021484, 0.69091797, 0.5107422, 1.8369141, -3.7695312, 1.6601562, -1.8193359, -1.6376953, 0.09753418, 0.81347656, -0.33276367, 0.07891846, 0.055236816, 0.75634766, 2.0253906, 1.7001953, -0.45214844, 0.6323242, -0.14160156, 1.7841797, 2.1972656, 0.8876953, 0.65234375, 2.6425781, 1.0019531, -0.65478516, -3.6113281, 2.3417969, -1.2607422, -0.38989258, 1.7304688, -1.7275391, 2.7578125, -0.52978516, 0.78515625, -2.4375, 0.28393555, 2.6914062, -0.421875, -0.8432617, 0.24511719, 0.03567505, 3.3007812, 0.11505127, 0.010147095, 1.5175781, -2.1386719, 1.2666016, -0.57373047, 1.1884766, -1.2939453, 0.23510742, -1.3144531, 3.3554688, 0.5625, -0.9238281, 1.1914062, 1.6796875, 1.3955078, 0.14990234, 1.0117188, -2.390625, 0.10144043, -0.39575195, -1.3935547, 0.7709961, -0.9199219, -0.6982422, 1.1044922, 0.26049805, -0.57958984, -0.8745117, 2.6523438, 0.48461914, -1.7490234, 0.84375, 2.6953125, -0.84521484, 1.2402344, -1.9931641, -1.8769531, 0.91552734, 1.2041016, 0.9042969, -0.024215698, -1.2382812, -0.6816406, 0.6513672, 1.1396484, 0.3876953, -0.35742188, -0.62597656, -2.0800781, -0.34375, 3.546875, -1.7304688, -0.5722656, -0.034118652, -0.60839844, -0.88671875, 0.52001953, -0.18664551, 0.24084473, -2.3046875, -2.6445312, -0.78271484, 1.3623047, -1.3896484, 0.20690918, 3.5683594, -0.5292969, 2.4355469, -2.8828125, -3.8007812, -2.3261719, -0.6665039, 2.1191406, 1, -1.0068359, 0.9995117, 1.3974609, 3.1894531, -0.45874023, -1.4853516, -0.4411621, 0.028762817, 1.0830078, -0.43017578, 1.9511719, -0.16491699, 0.058654785, 0.20471191, 0.7758789, 0.08227539, 0.7133789, 2.5566406, 0.95166016, -0.40722656, -3.3203125, 0.8691406, -0.8989258, 0.23388672, -0.06854248, 1.0751953, 1.7080078, -0.10638428, -0.84521484, -3.3242188, -0.6123047]}, "B08XBC336Y": {"id": "B08XBC336Y", "original": "Brand: GeiSerailie\nName: 2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking\nDescription:
          Features:

          Nice gifts for BBQ lover:
          This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

          Practical and useful:
          These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

          Specifications:
          Material: stainless steel, wood
          Color: as the picture shown
          Quantity: 2 pieces

          Package include:
          1 x Grill spatula
          1 x Barbecue tong

          Note:
          Pointed parts include, please use it carefully and keep away from kids.
          Manual measurement, please allow slight errors on size.
          The colors may exist slight difference due to different screens.\nFeatures: Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier\nThickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ\nLong handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control\nMultiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat\nEasy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you\n", "embedding": [-2.2011719, 2.3964844, 2.0800781, -1.2158203, 0.18444824, 0.21618652, 0.52490234, -1.1953125, 1.7363281, 0.17541504, -0.19311523, -1.2119141, -1.0175781, -2.5976562, -2.0273438, 1.8427734, 1.2480469, 1.1787109, 2.21875, 2.3886719, 1.4160156, 0.46069336, 0.07141113, 0.52490234, 1.5791016, 0.10211182, 4.4804688, -3.3828125, 2.7695312, 1.4072266, 0.76416016, 0.07159424, 1.3603516, 2.1328125, -2.2382812, -0.83251953, 0.61572266, 2.4316406, 0.4724121, 0.11602783, 0.89404297, -0.18762207, 1.1728516, 2.3515625, -3.0507812, 1.7275391, -1.0214844, 1.9882812, -2.4785156, -2.6660156, 0.98339844, 2.3027344, -0.8515625, 0.8125, -2.9179688, 0.90283203, -2.1386719, -4.2734375, 2.1757812, -1.6542969, 2.453125, 0.13024902, -0.43310547, -1.5507812, 1.9375, -1.0390625, 0.8496094, -2.1738281, -0.9003906, -0.9458008, 0.9736328, -0.03363037, -0.41259766, 0.15319824, -0.70703125, -1.1572266, -0.54052734, 1.3115234, -1.4042969, 1.3476562, -0.55566406, 2.5039062, 1.0917969, -3.3085938, 0.48120117, -1.6894531, -1.8095703, 0.008041382, -0.07055664, -1.3925781, -1.7353516, 1.7265625, -1.2539062, -4.4023438, 2.4902344, -0.76171875, -0.1875, -0.60595703, -0.32714844, 1.4521484, -0.62890625, -1.0712891, 0.41210938, -0.119384766, -0.035705566, -1.8496094, 2.2441406, 0.8232422, -2.8652344, -0.7114258, -2.6835938, 0.69921875, 0.0793457, 0.9399414, -1.15625, 0.2397461, -1.2070312, 0.7602539, -0.29077148, 1.4541016, 1.140625, 1.3115234, -1.6328125, -1.3955078, -0.42260742, 0.51123047, 0.36547852, 3.0429688, 3.1953125, -1.1796875, -0.22875977, -1.1386719, -0.8769531, -1.7929688, -0.57373047, -2.0996094, -1.3535156, -0.07385254, -1.2109375, 3.1855469, 0.04864502, 1.6464844, 2.75, 0.74316406, -2.6738281, 0.80371094, -1.1269531, 1.0732422, -0.023986816, -1.8066406, -0.13415527, -1.1787109, 0.37768555, -0.90185547, 2.5097656, 0.5073242, 0.69677734, 0.34838867, 0.9506836, -0.20275879, -0.09613037, -2.4511719, 1.3037109, 0.73095703, -0.19824219, -1.6816406, -0.546875, 4.5429688, -0.27783203, 1.8154297, 0.5810547, -0.78808594, 0.046142578, 0.12408447, -1.0673828, -0.21582031, 0.4404297, 2.3691406, 0.46142578, -0.6220703, 1.9423828, -5.296875, 2.6816406, 2.09375, 0.5517578, -1.3339844, 2.7304688, -1.2099609, 1.6044922, 1.1835938, 2.6953125, 1.3076172, 1.0380859, 1.0205078, 1.2900391, -2.7070312, -0.6845703, -1.7978516, -0.7192383, 0.6621094, -1.078125, -1.5927734, -0.06793213, 0.25708008, -0.69384766, -0.2253418, -1.8359375, -0.9794922, 1.9003906, 2.1992188, 0.91796875, -1.0917969, 0.9980469, -0.014511108, 1.3935547, -2.8789062, 0.96728516, -0.21069336, 2.3261719, 2.2148438, -0.94970703, 0.06549072, -3.8964844, 3.390625, 0.71972656, -0.5161133, -0.47558594, 3.1035156, 0.033813477, 1.3789062, 1.1201172, -0.17041016, 0.12756348, 0.65966797, -0.56689453, -0.10467529, 1.0517578, -2.6992188, -1.0761719, 0.68896484, 1.3105469, -2.3554688, -0.36669922, -0.59472656, 0.23657227, -1.3447266, -0.23474121, 0.3425293, 0.21740723, -2.8710938, -1.4765625, 2.3417969, 1.1621094, 1.8310547, -0.07751465, 1.1933594, -1.3876953, 1.3574219, -3.9785156, 1.6738281, 2.2890625, 0.35205078, 1.7529297, 0.3334961, 1.5839844, -0.9008789, 1.1142578, -0.60791016, -1.1796875, -0.84375, 0.62841797, 0.8457031, 0.2010498, -2.0019531, 2.7910156, 0.53515625, -0.50927734, -0.17871094, 0.3293457, -1.6171875, -0.27001953, -0.38208008, 2.0546875, -1.9003906, -1.6445312, -1.2890625, -2.6933594, -1.8544922, 0.8925781, -0.023345947, 4.9492188, -0.14172363, -1.3945312, 4.2578125, -0.97998047, 0.49023438, 1.4394531, 0.46777344, -0.9873047, -1.59375, -0.36254883, 2.8730469, 0.8901367, 0.015701294, -0.32104492, -0.54833984, 0.5859375, -2.578125, -0.4465332, 1.5673828, -3.3613281, 0.37841797, -0.10028076, -0.18347168, -1.7802734, 0.7734375, -2.484375, 0.19030762, 0.27441406, -0.6245117, -0.01586914, 2.390625, 0.8847656, -2.5, -1.3896484, 1.5390625, -1.3339844, 3.1347656, 1.3447266, 0.052825928, 0.5292969, 0.12670898, -0.73095703, -1.3457031, -1.7041016, -1.0166016, -1.5839844, -1.4853516, 1.8007812, 0.13232422, 0.3088379, -0.14367676, -2.7226562, -0.038909912, -1.625, -3.3417969, -1.5234375, 0.10430908, 1.0107422, 0.39746094, -2.1035156, 0.87890625, 0.87353516, -3.3867188, -0.1977539, -0.9321289, 1.1220703, -0.29223633, -1.5205078, 1.0869141, 0.17504883, 0.6660156, 0.15966797, 0.5517578, -0.0053863525, 0.92871094, 0.58496094, -2.34375, 0.49926758, -1.4521484, -0.27783203, 1.7998047, 0.72216797, -1.703125, -1.1943359, -2.0390625, 1.8154297, 2.6367188, -0.97021484, 2.9082031, -0.19445801, -0.6269531, 0.3527832, -0.95166016, 1.0380859, -2.1777344, 2.234375, -2.40625, 0.9760742, -2.1230469, 1.6181641, -1.203125, 0.06225586, -1.5966797, 2.3144531, -2.625, -0.32421875, -2.234375, -3.3925781, -0.9091797, 0.12158203, 2.1503906, -0.032562256, -1.2939453, -0.5175781, -1.9921875, 0.30126953, -3.0585938, 1.8222656, -1.8164062, -0.12756348, 1.3574219, 0.52001953, 0.72314453, 1.6464844, -0.6542969, 1.2402344, -1.1669922, -1.7001953, -2.4609375, 1.1640625, -1, -1.0742188, -0.68652344, 3.2324219, 0.4597168, 2.5019531, 0.13989258, 2.1113281, 0.23059082, 2.1210938, -0.48364258, -1.6240234, 1.3330078, 0.7373047, -0.2705078, -0.87402344, 1.3105469, -2.3984375, -2.2226562, 2.3457031, 0.30688477, 1.5292969, 2.2675781, 2.0097656, 0.81347656, 0.17907715, -2.6015625, 1.8486328, 0.19030762, -0.66748047, -3.1660156, 2.1933594, 0.16369629, -2.6289062, 0.78271484, 2.5371094, 0.6977539, 1.1787109, 2.4785156, -0.13476562, -2.3476562, 1.5214844, -0.25390625, 2.0371094, 0.21765137, 1.2734375, -1.6025391, -2.3359375, 0.83935547, -0.54052734, 1.9140625, -2.8828125, -0.66845703, 2.7207031, -0.82177734, 0.40820312, -0.06707764, -0.33813477, -1.9570312, -3.7480469, 1.0859375, -0.8041992, -2.109375, -0.8535156, -1.1445312, 2.1074219, -1.3535156, 2.7734375, -0.26171875, -0.69628906, -0.1340332, 2.0996094, -1.9951172, -0.42138672, -1.2509766, 2.3457031, -0.58984375, 1.2275391, -1.5136719, -1.0673828, 3.7265625, -4.1914062, 0.9501953, -1.2998047, 0.068237305, 0.7109375, 0.8496094, -0.14660645, 1.3603516, 1.6298828, 0.36010742, -1.2548828, -0.69384766, -0.31469727, -0.50341797, 0.09527588, 0.48364258, -2.7578125, -1.40625, 0.5654297, -0.25732422, 0.9145508, -0.72998047, 3.7871094, 0.93115234, -3.4667969, -0.8388672, -2.3964844, 0.012329102, -1.0185547, -2.9121094, 0.43823242, 2.1972656, 1.2324219, 1.8740234, 0.47094727, 0.15161133, 6.2070312, 1.1083984, -1.8417969, 2.28125, -0.8881836, 0.2241211, -0.09875488, -0.69140625, 0.9453125, 0.55810547, 1.0478516, -1.9589844, 2.2871094, -2.2460938, 1.8730469, 1.2714844, -0.66308594, -1.2050781, -2.1289062, 1.0283203, -0.7089844, -0.40722656, 0.33276367, -2.4804688, 0.065979004, 0.2614746, 1.4160156, 0.6816406, 0.6147461, -2.3652344, 0.6308594, 0.70410156, -2.4863281, -0.9584961, -0.9472656, 3.9785156, -0.7475586, -0.42138672, -1.515625, 0.47705078, -0.45214844, 0.2993164, 1.2900391, 0.064575195, -1.8203125, 0.7363281, 0.066101074, -1.7050781, 3.4550781, 1.3125, -2.8515625, -1.4150391, 0.11968994, -1.78125, -1.9931641, -0.52734375, -0.63378906, 0.38110352, 0.060791016, -1.7626953, 2.4277344, -1.5634766, 1.1933594, -1.1035156, 1.5058594, -0.14038086, -0.5332031, 5.0429688, -1.7783203, -0.04043579, 0.34326172, -2.5234375, -1.3427734, -0.7158203, 0.82666016, -0.7714844, 0.79052734, 0.41357422, 0.47314453, 0.124694824, -0.5493164, 0.3642578, 0.10021973, -1.8496094, 2.1835938, -0.79785156, -0.11828613, 0.78271484, -1.4433594, 1.8164062, 0.19433594, 0.08148193, 1.0058594, 1.3857422, -1.6621094, -1.0507812, -0.7626953, -0.6611328, 0.4362793, 2.3476562, 1.3925781, -0.4428711, -0.74316406, -0.47607422, 0.25097656, 0.1328125, -0.7001953, 1.0576172, 0.6713867, -1.1875, 1.0703125, 1.0439453, 2.0761719, -0.94970703, 3.8789062, -1.6621094, -3.5214844, 2.5761719, 2.1542969, -3.4199219, 0.6948242, -1.6474609, -2.3125, 0.12902832, 0.31347656, -2.0957031, 1.8330078, 1.6533203, -1.4277344, -0.28515625, -3.90625, -1.0097656, -0.6479492, -0.3869629, 0.8569336, -1.1953125, -3.0292969, 1.8349609, 0.4104004, -1.1757812, 0.89941406, 1.3896484, 3.1972656, -0.42333984, -0.6401367, 0.08850098, -0.7480469, 0.34326172, -0.20227051, -2.6679688, -2.2460938, 1.1347656, 2.9550781, 1.9501953, -1.0322266, -0.08331299, 1.1416016, -1.8964844, 1.8525391, -1.2910156, 2.2929688, -1.5175781, 1.0449219, 2.328125, -3.5117188, -0.46704102, -1.0449219, 2.625, 0.64501953, 1.8408203, 0.43164062, -1.8564453, -1.5400391, 0.60498047, -1.0380859, -3.6855469, -0.49023438, -0.55078125, 1.0429688, 0.93408203, -0.35961914, -0.5214844, -2.0957031, -1.0361328, -1.4365234, 2.1582031, -0.061767578, 0.95166016, -0.3557129, -2.2089844, 0.7416992, 0.32641602, -1.5859375, 0.24377441, 2.2753906, -1.6914062, -1.5068359, 0.4248047, 0.026947021, -1.0107422, -1.6210938, 1.6074219, -0.4411621, 0.28955078, -0.26171875, 0.3317871, -1.8798828, 0.09625244, -0.091796875, -1.0214844, -0.96875, -0.24841309, 2.8730469, -2.5664062, -1.7207031, -0.023773193, -2.5, 2.2011719, 2.2988281, -0.75927734, 1.8447266, -0.042297363, -1.9042969, -1.0429688, -0.8701172, 0.31274414, 0.5317383, 0.5996094, -0.6176758, 0.35668945, -3.0839844, -0.13903809, 0.30273438, -0.8022461, 1.1035156, -1.4931641, -0.89404297, 3.7675781, -0.8754883, -2.2285156, -0.08947754, 0.39746094, -0.80810547, 0.76953125, -0.16259766, 2.5878906, 1.0380859, 0.25561523, 0.19726562, -2.8789062, 1.2685547, 0.8798828, -2.2070312, -2.1425781, -0.55029297, -0.95410156, -2.0234375, 0.9223633, 0.5708008, 2.0507812, 0.42700195, -1.5332031, -0.51123047, 0.96240234, -2.8222656, -0.11364746, 0.8808594, 0.87841797, 0.17175293, 3.5195312, -1.8886719, -1.5419922, 2.4453125, -1.4560547, 0.75927734, 0.90234375, -1.53125, -0.9711914, 0.23876953, 1.8339844, -2.3066406, -2.5039062, -3.7949219, 0.6459961, 1.0888672, -0.96191406, -1.8212891, 2.5625, 0.81103516, 4.7421875, 1.9521484, -0.60253906, -1.1181641, -0.9453125, -0.35791016, 1.6494141, 0.23779297, 0.3642578, -0.07550049, 2.1152344, -0.74072266, -2.0488281, 0.48901367, 0.41601562, 1.21875, -0.15588379, 1.6035156, 0.15258789, 3.5839844, 3.5136719, 0.11273193, 2.7441406, 1.2363281, -0.33203125, -0.46166992, 3.8007812, 0.37329102, -2.4238281, -1.4052734, 0.6923828, -0.55371094, 1.3701172, 0.45751953, 1.5068359, -1.0224609, -1.5488281, 2.2460938, 0.84765625, -0.3400879, -0.578125, 2.3261719, -1.1123047, -0.77246094, -0.5957031, 0.080322266, 2.1503906, 1.9667969, 0.35839844, -1.2138672, -1.5859375, 1.8115234, -2.8105469, 2.8769531, 1.0419922, -0.82958984, -2.5195312, 2.6074219, 2.3457031, 0.26586914, 2.0800781, -0.10028076, 0.73095703, 0.79296875, 0.484375, 1.4873047, -0.87353516, 0.20678711, 0.60302734, -2.0195312, 0.33764648, -2.7519531, -0.43652344, -1.7236328, 1.1181641, 3.1503906, 0.39770508, 2.1484375, 0.8876953, -3.3925781, 1.4111328, 1.9248047, -0.0099487305, -1.0439453, 0.12597656, 1.5263672, 0.22521973, -1.9091797, 1.5400391, -0.1706543, 0.09832764, 0.21313477, -2.7167969, 0.075805664, 1.5947266, 0.5644531, 1.1816406, 1.1533203, -2.1054688, -1.7158203, 1.6376953, 2.5136719, -1.0117188, 0.8720703, 0.89697266, 0.9091797, 0.8647461, 1.0820312, 2.28125, -1.5966797, 0.7915039, -0.55615234, 0.41137695, -0.45361328, -0.21008301, -2.53125, 0.41064453, 0.4404297, -1.1064453, -0.18762207, 3.0234375, 1.1582031, 2.7089844, 1.1972656, -0.8930664, -2.8339844, 0.57714844, 1.9033203, 0.27539062, -0.24365234, -0.37182617, 0.17126465, -1.1445312, -1.1201172, 0.45239258, 1.1699219, 0.8232422, -2.25, 0.6489258, -0.18554688, 0.47338867, 1.5546875, -1.8535156, -1.4296875, -2.6523438, 0.8105469, 0.74072266, 0.98876953, 3.3574219, -0.7944336, -1.4921875, -1.5517578, -0.09918213, -0.7626953, -1.1689453, -3.6367188, -0.41723633, 3.734375, 1.4736328, 0.32348633, -1.5849609, -1.9707031, 2.2421875, -1.5615234, 0.38549805, 0.41552734, -1.328125, -1.5341797, -0.14233398, 2.75, 1.1855469, -1.6240234, 0.29003906, -0.18200684, -0.91845703, -0.39135742, 2.7851562, -0.72216797, -1.1474609, 1.5185547, 3.6425781, 0.50634766, -0.41357422, 2.4179688, 2.8945312, 2.7421875, -2.265625, 1.4619141, 0.76660156, 4.234375, 0.07867432, 0.5805664, 0.4868164, -1.0673828, -0.46533203, 0.6425781, -1.0302734]}, "B077SP5BJP": {"id": "B077SP5BJP", "original": "Brand: GasOne\nName: GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black\nDescription: \nFeatures: \u2713 propane adapter that saves money - Gas one's propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can't recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money!\n\u2713 STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One's propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting\n\u2713 extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter's solid bras materials ensure longevity as well as Universal usage\n\u2713 GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience\n\u2713 easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you're ready to refill! / fits Qcc1/Type1 & 1lb propane tanks\n", "embedding": [0.5258789, 0.8183594, -0.30981445, 1.0722656, 0.4658203, -0.6303711, 1.1845703, -0.75, 1.3339844, 0.7597656, 2.2324219, 1.2792969, 1.1982422, -2.5722656, 0.65283203, 0.38134766, -0.122558594, 0.77685547, 2.8476562, 1.4345703, 3.4140625, 1.7412109, 0.3112793, -1.0615234, 0.5786133, 0.3701172, 2.8632812, -1.9609375, -1.1162109, 1.8398438, 1.0449219, 0.067993164, -2.5664062, 0.45898438, -0.22265625, -1.6464844, -0.4296875, -1.0527344, -4.9492188, -1.7470703, -1.4199219, 1.7851562, 3.3164062, 0.65966797, -1.8515625, -0.11236572, 2.1191406, -0.4411621, 1.2001953, -0.70654297, -0.31420898, 2.2675781, -0.79345703, -0.36572266, -0.04916382, 0.9926758, 1.8632812, -3.2851562, 0.34204102, 1.4140625, 1.7978516, 0.7011719, -0.91845703, 0.059631348, -0.65966797, -0.12719727, -2.2519531, -0.7504883, -1.4628906, 0.72509766, 0.2956543, 1.6376953, 0.98095703, -0.71533203, -3.2050781, 1.5556641, -4.4296875, 0.3930664, 1.1240234, -1.0039062, -1.5087891, 0.7553711, 0.09185791, -1.2050781, -0.2631836, -0.13220215, -0.4321289, 2.7792969, 0.8510742, -0.4519043, -3.0234375, 2.28125, -3.1835938, -3.2109375, -0.8383789, -0.064697266, 0.8354492, 3.296875, 3.0253906, -0.0209198, -1.0273438, -2.3632812, -1.4990234, 2.6992188, -1.2509766, -0.73046875, -1.2929688, 0.0362854, -3.0292969, 1.2714844, -0.74072266, -1.8720703, 2.4296875, -1.46875, -0.018035889, -1.8818359, 1.1396484, -1.6699219, 2.1679688, -0.0036239624, 3.2714844, -0.24682617, 1.9355469, -0.94091797, -0.5864258, 1.4423828, -2.1914062, 1.4990234, 2.6816406, 0.87060547, 0.734375, 0.092041016, 2.8261719, -1.2265625, 0.40039062, -2.1953125, -0.09857178, -3.0292969, -0.0357666, -2.5449219, -5.140625, 1.4433594, 0.061584473, -0.4074707, -4.625, 1.7539062, -2.53125, -0.22680664, 0.38891602, -0.82958984, 1.9355469, -3.4160156, -2.75, -1.1035156, 2.2714844, 0.7480469, -0.05633545, -2.6484375, 0.40527344, 2.3046875, 0.8808594, -0.6435547, -0.3161621, 0.9453125, -0.08850098, -2.2285156, 2.0546875, 0.18811035, -2.1054688, -0.50634766, -0.9506836, -0.75146484, 0.7480469, 2.0292969, -1.2890625, -0.86035156, 2.0175781, 1.2441406, 1.1689453, 0.5678711, -2.5839844, -0.921875, -0.9589844, -1.6679688, 1.5673828, -0.097351074, -3.0585938, -1.4726562, 0.34204102, -1.2529297, -0.15185547, 0.77783203, -1.2265625, 0.8876953, 0.1965332, -2.9296875, -2.5957031, 0.4650879, 0.86035156, 1.5830078, -0.119506836, -1.0556641, 0.08703613, 0.6010742, -0.36547852, -1.1787109, 1.7460938, -0.5917969, -1.4169922, 1.5302734, -2.0292969, 1.7285156, 2.7265625, -0.124938965, -0.7314453, -1.8251953, 2.4433594, 1.6679688, 1.3798828, 0.6386719, 0.033203125, -0.18334961, 2.6113281, -0.17370605, 3.2207031, 0.6699219, -1.5458984, 0.19165039, -2.6269531, 0.22216797, 2.5507812, 1.5478516, -0.9560547, 0.37817383, -0.16796875, 1.4697266, 0.44018555, 0.24963379, 0.7885742, 0.3425293, 0.52197266, -0.19921875, -1.9462891, -1.3164062, -1.5771484, 1.5263672, -1.4648438, 0.17993164, 3.2675781, -1.4648438, 2.2324219, -0.2253418, -1.8876953, -1.53125, -3.3789062, 1.1318359, -0.20544434, 2.5820312, -0.17932129, -1.7148438, 1.5068359, 0.06549072, -0.009933472, 0.16357422, 1.6933594, 0.86865234, 2.2792969, -1.3349609, -1.4501953, 1.4667969, 0.42456055, 2.0507812, 1.5878906, -1.7832031, -0.5073242, 2.5019531, -2.7363281, 2.5605469, 0.6743164, 0.64453125, 2.390625, -3.2597656, 1.3261719, -1.7353516, 2.9550781, 1.0673828, 2.3007812, -0.9316406, -1.0751953, 1.3554688, 3.8457031, -1.0283203, -1.0566406, 2.6914062, 3.2148438, 0.82714844, 1.8759766, -0.51953125, -0.5004883, -0.08477783, -0.064941406, -0.42236328, -0.19946289, 1.0917969, 3.421875, 0.9863281, -0.70214844, -0.037872314, 1.1542969, 1.7763672, -0.98828125, -1.1376953, -1.3144531, -0.119018555, -1.0253906, -0.40625, 2.5253906, -1.1816406, -0.31762695, 1.0214844, 0.9086914, 1.4882812, 1.4462891, -0.71435547, -0.28295898, 1.8144531, -1.2734375, 0.20837402, -0.76660156, -0.23254395, 1.8710938, -0.5, 2.1601562, -0.60839844, -1.2158203, 2.1015625, -1.6074219, -2.96875, 1.1396484, -1.1074219, -1.7119141, -0.59228516, -0.0050354004, 3.3574219, 0.3647461, 1.8330078, -0.48388672, 0.59472656, 0.25683594, -3.8710938, -0.081970215, 2.1308594, -1.5566406, -1.0810547, 1.0732422, -1.1679688, 0.3984375, 3.2148438, -0.67041016, 0.8598633, 1.4101562, 0.53222656, -0.3786621, -0.053009033, -1.6806641, -2.4824219, 3.5859375, -3.5429688, -0.6899414, -2.0546875, -0.022857666, -2.2734375, -1.5986328, -1.9130859, -2.265625, 0.64160156, -0.19506836, 0.8120117, -0.31884766, 1.2158203, 0.5175781, -0.38061523, 1.6337891, -0.92822266, -4.2929688, -0.9453125, -1.3779297, -1.9121094, -0.7763672, -3.8125, 1.8369141, -1.4003906, -1.9199219, -0.13000488, 0.5419922, -1.1953125, -1.8623047, 2.7246094, -0.65478516, 0.53125, 1.890625, -0.10467529, -1.9609375, -0.13647461, 1.4951172, -0.9550781, -1.25, -1.7109375, 0.94140625, -0.077819824, -2.3066406, -0.28295898, -0.5288086, 0.099975586, -0.3942871, -2.0273438, 0.34643555, 1.9765625, -0.77490234, 1.5986328, -1.7529297, -0.22644043, -3.8867188, -0.39379883, 2.7753906, 0.67871094, 4.5664062, 1.0878906, 1.5800781, 0.546875, -0.08087158, -0.8105469, -0.07531738, -1.0986328, 2.4824219, -1.2783203, -0.95654297, -2.0898438, 2.671875, -3.0546875, -0.23388672, -0.04269409, -1.9765625, 3.3964844, 1.5185547, 1.3085938, -0.5180664, -0.52246094, -0.123046875, 0.6586914, 0.064086914, 1.2871094, 2.7363281, 0.8671875, 0.21118164, 0.94921875, 0.38256836, 0.9111328, 0.25097656, 1.2412109, -0.7314453, -1.4541016, -0.1352539, 0.7104492, -1.0898438, -0.5864258, 0.44213867, -0.37719727, 0.9902344, 0.29516602, 0.94628906, 1.5644531, -0.8774414, -0.50439453, 0.58935547, 1.5351562, 0.5419922, 0.1842041, 0.49267578, 0.5410156, 0.5625, 0.4267578, 2.2480469, 0.77685547, -0.1451416, -0.8203125, 1.3125, -1.8398438, 1.3876953, 0.21362305, 0.84814453, -0.3173828, 0.8925781, -2.1640625, -2.1347656, -1.2910156, -3.7324219, 0.16955566, 2.5742188, 0.80371094, -1.8925781, 0.4440918, 0.9580078, 1.0253906, 2.515625, -1.3222656, -1.1376953, -3, -1.7792969, -0.8769531, -0.2902832, 1.8476562, 1.2675781, -2.7128906, -0.46704102, -0.41357422, 2.4824219, -0.3244629, 0.5527344, -0.9160156, -1.7929688, -1.5732422, 1.9873047, -0.79785156, 2.3691406, -0.4182129, 1.2714844, 2.9003906, -3.5527344, -1.1015625, -0.49438477, -4.2148438, 1.1787109, -1.2480469, 1.1679688, 3.5, 2.3164062, -0.6376953, 1.1308594, 0.76708984, -4.0273438, -1.4326172, -0.6816406, 3.046875, -3.2128906, -0.8339844, 0.9165039, 2.0742188, -2.0488281, -1.9130859, -0.3466797, -0.40551758, -1.9658203, -1.4882812, -0.7285156, 0.70703125, 1.2275391, 0.11016846, -1.8378906, -0.33911133, 1.0927734, -1.6445312, -0.81884766, -1.5126953, 2.1640625, -1.0615234, 1.7226562, -0.02758789, 3.2480469, 2.2460938, -3.1582031, 0.59814453, -1.9365234, 1.2470703, -1.2167969, -1.3896484, -2.2011719, -0.9814453, 0.64990234, -0.07232666, -1.5498047, -0.84228516, -0.5957031, 0.52978516, 0.76953125, 2.0351562, 2.375, 0.38549805, -3.0761719, 1.4091797, 1.0898438, -1.5332031, -1.4287109, -0.54296875, 0.6035156, -2.1660156, -0.6748047, -2.2636719, -1.0175781, -0.2578125, -0.8442383, -2.984375, 0.68115234, 1.6162109, 0.09472656, 1.0234375, -0.24621582, -0.08660889, 0.029434204, 3.1582031, 0.71728516, -0.1463623, 1.0322266, -0.15209961, 0.34570312, 2.3964844, 0.24206543, 0.10461426, 0.7705078, -0.3635254, 1.3291016, 0.15600586, -0.08648682, -1.4277344, -1.0166016, -1.3232422, -1.3818359, 3.8632812, -1.8837891, 1.3457031, 0.52783203, -1.265625, -1.7890625, 2.3789062, 3.171875, 1.6298828, -0.25854492, -0.19311523, 1.5878906, 2.8945312, 1.6787109, 1.5214844, 0.13903809, -1.0478516, -0.8925781, 0.22961426, 1.6171875, -0.20605469, 0.28198242, 1.5869141, 1.4306641, 2.6308594, 1.8759766, 0.7919922, -0.92871094, 0.55078125, 0.63134766, -0.67285156, -1.3466797, -0.22546387, 0.79785156, 2.3769531, -1.1083984, -0.51660156, 1.2675781, 3.4550781, 0.5805664, 2.1210938, 1.0996094, 1.0341797, -1.8867188, -2.1875, -2.4296875, -1.5722656, 0.6113281, -0.39697266, -1.0302734, 1.2714844, 1.5722656, 1.8271484, 0.78808594, 1.4501953, 0.05697632, 0.03756714, 0.60546875, -2.1074219, -1.4384766, 0.5551758, -1.9267578, 1.8056641, -1.5839844, 1.5214844, 0.29956055, -0.33447266, -0.62402344, -1.6064453, -1.0302734, 0.38989258, 0.26782227, 0.13903809, -0.96777344, 3.5058594, 1.1435547, 0.6010742, -0.57714844, -0.9038086, -1.6357422, 2.3222656, 2.1914062, 2.0292969, -1.4804688, 0.121032715, -1.7792969, -6.6679688, 0.15039062, 0.8046875, 0.67089844, -0.29858398, -1.7880859, -1.2861328, -0.076538086, 0.101501465, 0.21728516, -1.9121094, 0.7763672, -2.0957031, -0.4934082, 1.5800781, -0.3630371, 0.026794434, 1.359375, 0.23254395, -2.0976562, -0.103149414, -1.8984375, -2.5058594, -1.6582031, -1.6367188, -0.78564453, 0.1665039, -0.9692383, -0.029418945, 1.625, 0.9145508, -4.2773438, 0.5292969, -2.5976562, 0.1694336, 1.6660156, -1.2382812, 0.38061523, 1.3017578, 0.107299805, 2.0839844, 3.6152344, 3.2734375, -2.6640625, 0.40185547, -0.32885742, 0.50927734, -0.84472656, 1.0722656, 1.6943359, -0.6879883, 0.26171875, 3.4316406, 0.032928467, -1.3701172, -2.0996094, 0.06518555, 0.64746094, -2.3183594, 0.7998047, 0.6489258, -0.16418457, -0.17810059, -1.3378906, -0.027679443, 0.94384766, 0.109558105, -0.8959961, 0.31079102, -2.1757812, 1.5761719, 0.60839844, -2.1503906, -4.3164062, -1.0976562, 1.8261719, 0.94384766, -0.13317871, 1.3486328, 0.57910156, -0.14013672, 0.5551758, -1.1484375, 2.6757812, 1.3867188, 1.015625, -1.1484375, -1.4628906, 1.8525391, -1.7392578, -0.22924805, 1.3984375, -1.5029297, 1.1943359, 0.34545898, 2.1875, -2.171875, -0.3173828, -0.97753906, -0.77246094, -1.3964844, -0.47436523, -0.4987793, -4.2617188, 1.5332031, 0.28393555, -2.28125, -4.421875, 1.9443359, 0.035614014, 0.09484863, 2.1582031, 1.3359375, -3.0019531, -1.5898438, 0.4572754, 0.3552246, -1.1796875, -0.92626953, -1.8134766, 0.31933594, 0.35327148, -1.8134766, 1.5996094, 2.4101562, 2.0722656, -0.7475586, 0.082214355, -0.71777344, 0.8046875, 0.61621094, 1.9746094, 3.7890625, -0.37695312, 1.4511719, -0.14526367, 1.2871094, 2.0761719, -1.8222656, -0.15039062, 1.4345703, -0.28051758, 1.4306641, -2.8125, -0.5678711, -1.7246094, -2.4296875, 0.27612305, 0.3425293, 2.9023438, -3.6445312, -1.3701172, -2.1542969, 0.07287598, -1.3476562, 1.2548828, -1.984375, -1.0263672, 0.7368164, 1.1259766, 1.6640625, 2.1230469, -1.5498047, 0.3642578, -1.0595703, 2.7714844, 0.56591797, 0.31396484, -4.1796875, -1.5263672, 1.1337891, 1.7412109, 0.21447754, 0.7626953, 0.7001953, 1.0488281, -0.114868164, -0.30004883, 1.2070312, -0.73876953, 0.45385742, -1.0332031, 2.3769531, 3.515625, -0.875, 3.5019531, -0.10797119, 0.28271484, -3.3476562, 2.1875, -1.4775391, -1.3535156, -1.4365234, -3.2851562, 0.84521484, -1.2666016, 0.4633789, -4.1367188, -0.86865234, 0.5961914, -1.6621094, 1.2626953, 0.86376953, -0.91308594, 2.2890625, 1.1279297, -0.79541016, 0.4831543, 2.2539062, 0.045837402, -0.21875, -0.65966797, 0.7578125, 0.073913574, -1.7548828, 2.7402344, -0.85058594, 0.19519043, -1.5429688, 2.0585938, 1.4306641, 0.98046875, 2.0078125, -0.9057617, 0.5942383, 0.34204102, -0.890625, -0.23046875, -1.8115234, 0.43676758, 0.34399414, -0.7001953, -0.1394043, 0.045684814, 1.3642578, 1.3417969, -2.4179688, -0.41674805, 1.4853516, -1.6591797, 0.6269531, 1.1679688, -1.7792969, -1.7451172, -0.87158203, 1.7910156, -3.796875, 1.3867188, -0.61035156, 1.3662109, -1.9355469, -1.0751953, -0.12988281, 0.090148926, -0.78759766, -0.17480469, 0.30541992, -0.30688477, 0.19445801, 0.3173828, -1.4726562, 1.6748047, 0.92089844, 0.09857178, 0.9116211, 0.08282471, -1.2851562, 1.1035156, -1.5351562, 1.3183594, 2.6855469, 3.1738281, 2.2695312, 1.9355469, -0.8886719, -1.6933594, -0.171875, -2.5292969, 1.6552734, -0.26757812, -2.2285156, 0.46704102, 1.78125, 2.1933594, -1.7675781, -0.32055664, -0.26733398, 0.7011719, 1.8984375, -1.3476562, 1.4101562, 0.70996094, -0.39746094, -0.107788086, 4.5429688, 3.3710938, -1.7451172, -1.1767578, 0.46313477, -1.5869141, -1.3818359, -0.18884277, -0.27856445, -1.2548828, 0.5698242, 1.6523438, 3.0292969, 1.5908203, -0.69677734, -1.0517578, 2.4023438]}, "B086V7Y4LR": {"id": "B086V7Y4LR", "original": "Brand: Vailge\nName: Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige\nDescription:

          Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

          New product Promotion\uff1a 15% Off.

          Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

          Advantages from other covers:

          \u25baMade of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

          \u25baLarge padded handle loops for easy fitting, removal, hanging and convenient storage.

          \u25ba Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

          \u25ba Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

          \u25baThe cover is easily folded for storage and won't take up a lot of room whilst not in use.

          \u25baEasy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

          \u25baNote: Please allow your grill to cool before covering.

          Kindly Note:

          1.Please Measure Before Purchasing.

          2.Be sure the cover is of the same shape as your grill.

          3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

          \nFeatures: Size: This bbq grill cover measures 72\" Length x 26\" Width x 47\" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill's dimensions for proper fit before purchasing.\nSuper Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc.\nUv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant.\nHandles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting.\nGood Shopping Experience: We think you're going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.\n", "embedding": [0.80078125, 1.5507812, 3.703125, -1.8935547, 0.10217285, 0.8725586, 0.18481445, -2.2734375, 2.1875, 2.9804688, -0.9921875, -0.78466797, -0.25585938, -4.3476562, 0.34814453, 1.3808594, 0.32226562, 2.6582031, 3.9648438, -0.96484375, 1.7822266, 1.5273438, 1.0839844, 1.4335938, 1.1650391, -1.3808594, 4.1289062, -2.6347656, 0.076538086, -0.73339844, 1.9140625, 0.26464844, 0.95458984, 2.1152344, -2.6601562, -1.6894531, -1.3457031, 1.5585938, 0.47143555, -1.3867188, -1.7324219, -1.78125, 3.5292969, 1.5126953, -2.0976562, 1.1064453, -1.7236328, -0.27026367, 0.5776367, -3.4277344, 1.6611328, 2.6699219, 1.9169922, 0.8769531, -3.1152344, 2.640625, 0.4350586, -2.2832031, -0.19396973, -0.984375, -0.26635742, -1.1708984, -0.8925781, 3.7226562, -1.5654297, -0.96435547, -0.19677734, -1.0947266, 1.0830078, -0.6176758, 1.6435547, 0.2705078, -0.2998047, 0.82666016, 1.7353516, -0.9355469, -1.6425781, 1.9833984, 0.3322754, 0.16625977, -0.4453125, 5.6328125, -1.0322266, -2.5898438, -0.2746582, 0.4831543, -2.2421875, -2.15625, 2.3261719, -1.7685547, 0.5073242, 1.8525391, -2.5234375, -3.875, 0.8925781, -2.1542969, 2.8183594, 0.5498047, 1.5605469, 0.96240234, -1.8974609, 0.5234375, -2.2675781, 0.24499512, -2.6855469, -2.3105469, 2.171875, -1.8642578, -0.27392578, -0.035461426, -0.5703125, 0.05303955, -1.2363281, 0.9765625, 3.5019531, -0.14990234, -2.0761719, 1.8769531, 0.4831543, 1.7753906, 3.8847656, -0.08892822, 0.093322754, -0.95751953, 0.6386719, -0.33569336, 0.48950195, 1.25, 4.078125, -0.55566406, 1.7773438, -1.3095703, 1.6191406, 1.6835938, -0.7138672, 0.30615234, -0.8745117, -0.1463623, -4.1835938, 1.4277344, -0.8222656, -1.8271484, 0.9008789, -1.4755859, -2.9023438, -0.3984375, -0.44360352, 3.0117188, -1.6152344, -3.3574219, 2.0488281, -2.2070312, 0.3659668, -0.41918945, 0.43579102, -0.7944336, 0.5810547, -4.859375, 4.6679688, 3.140625, 2.8261719, -2.0371094, 3.0820312, 0.18566895, 2.3457031, -2.6679688, -0.33935547, 0.6347656, 0.0011138916, 2.3808594, 0.053344727, -1.1855469, 1.2001953, 1.1376953, 1.2226562, -0.8413086, 0.45458984, 0.87353516, 0.6586914, 0.28637695, -0.068481445, -2.2714844, -0.9975586, 0.87597656, -0.8955078, -1.2939453, 0.47631836, -0.30615234, 0.4152832, -0.8564453, -2.1660156, 0.9042969, -1.0966797, 0.2770996, -2.8320312, -2.296875, -1.2421875, -1.2392578, -1.5654297, -0.4194336, -1.1523438, -2.5800781, -1.234375, -0.28588867, -2.1484375, -1.2109375, -1.5634766, 0.48754883, -1.0830078, 0.3017578, -0.36499023, -2.4433594, 2.8535156, 1.8300781, -1.203125, -0.24279785, 2.1191406, -1.0976562, 1.5820312, 0.51220703, -0.9980469, 0.28881836, 0.25976562, 2.8691406, 1.2460938, 1.8623047, 1.5751953, 0.73339844, -2.1679688, -1.3955078, 1.1728516, 0.6411133, -0.42797852, -0.40673828, -0.5361328, 0.70214844, 0.16064453, -1.5234375, -0.25830078, 0.60058594, -3.0058594, -2.5820312, -3.0878906, -1.2753906, 1.3486328, 1.0429688, -1.8320312, 2.6054688, 1.5605469, -1.2978516, -0.95947266, 1.5703125, -0.13208008, 0.5283203, 1.1132812, 2.0410156, 1.7421875, 0.8251953, -1.4521484, -2.5410156, -0.42382812, -0.4189453, -1.6533203, 0.54785156, -0.13220215, -0.76416016, 0.16809082, 2.5019531, -2.21875, -0.98339844, -0.07220459, -0.43554688, -0.5522461, -2.0761719, 1.8789062, 0.13562012, -0.2944336, 1.2998047, 0.42944336, 0.49829102, 0.56152344, 1.0195312, 2.0371094, -2.1796875, 1.1445312, -0.41064453, 0.47631836, -2.5898438, -0.08758545, 0.6767578, 3.1699219, 0.23522949, -1.3886719, 3.5664062, -0.21899414, 0.61083984, 2.3027344, -1.4404297, -1.0742188, 2.0996094, 0.12030029, 0.24328613, -1.015625, -0.68603516, -1.3544922, -1.9306641, 1.3427734, -3.109375, -0.9267578, 2.5058594, -0.3947754, 0.70751953, 0.19726562, 0.5449219, -2.2617188, -1.2207031, 2.1445312, -2.4042969, 0.26049805, 0.55810547, -0.09454346, 1.7011719, -2.8652344, -2.4609375, -1.8632812, 0.29492188, -1.4052734, -0.4206543, 0.2849121, 0.07397461, -0.60302734, -1.59375, -0.1026001, -1.5917969, -0.57714844, -3.4492188, -2.4082031, -1.3447266, -1.1796875, -1.46875, 0.9248047, -0.8901367, -3, 2.0097656, 0.83740234, -2.9453125, -1.1259766, 0.57421875, -0.98095703, 1.7939453, -0.16662598, 0.4321289, 0.8354492, -5.1523438, 0.7451172, -1.1025391, -1.1904297, 0.08630371, -0.6796875, -0.6035156, 0.058166504, 0.26171875, 0.9199219, 1.3916016, 1.1728516, 0.9609375, 0.0914917, -2.0351562, 1.2480469, -2.0800781, 0.53564453, -1.9609375, 0.07299805, -3.5058594, -2.0664062, -0.65771484, -1.2753906, 3.9101562, 0.37182617, 0.43408203, -1.4873047, -1.5869141, -0.5698242, 0.2685547, -1.3701172, 0.8286133, 1.5878906, -1.0537109, -0.80810547, -4.9570312, -3.0039062, -0.7607422, -1.5556641, 0.73095703, -0.96435547, -0.8925781, 0.7685547, -3.8359375, -0.75146484, -1.7705078, 1.6865234, -0.57373047, -0.5053711, -0.70410156, -2.7714844, -1.9570312, -0.8359375, -2.2207031, 2.8222656, -1.5634766, 1.2412109, 2.1328125, 0.13500977, 4.4882812, 0.0005264282, -3.8027344, 1.6376953, 1.5585938, 1.2285156, 3.9179688, -0.21032715, -0.23071289, 0.37841797, 1.0996094, 2.4628906, 2.3632812, 0.15002441, 2.2285156, -0.015083313, 1.4316406, -1.0068359, 1.3681641, -1.3105469, 1.7470703, 3.4746094, 0.009773254, -0.07489014, 0.21020508, 0.20776367, -1.7568359, -0.06970215, 3.0996094, 0.25341797, 1.2109375, 1.5859375, 0.5620117, 1.1904297, -0.6669922, 2.6699219, 0.38745117, 4.2695312, -0.66259766, 0.10205078, 0.6738281, -1.9560547, 0.72753906, 1.2265625, 0.40478516, 0.018035889, 1.4589844, -0.81103516, 0.6098633, 0.13269043, 1.125, 0.83935547, -0.70166016, 1.5625, -0.9213867, 0.31762695, 2.6777344, -2.3847656, 1.2460938, -1.4619141, 1.1542969, 1.9316406, -0.3479004, 0.69140625, -2.1855469, 0.09844971, 0.4248047, -2.2851562, 0.31713867, -4.125, -0.8984375, 0.2841797, -3.5976562, -2.4609375, -0.46777344, 3.1308594, 1.5957031, -1.7587891, -0.64208984, 0.5136719, -1.2529297, -2.0546875, 1.8046875, 1.9013672, 0.26953125, 1.6582031, 3.1777344, -1.8427734, 2.8789062, -3.1191406, 1.5957031, 0.4038086, -0.49365234, -0.8076172, -0.43945312, 0.515625, -0.6010742, 2.7265625, 1.6621094, 1.6455078, -0.37329102, -0.3491211, -2.2753906, 0.052947998, 1.9609375, -0.9838867, -0.7705078, 2.2167969, 1.7939453, -0.17150879, -0.16918945, 1.3759766, -0.28051758, -1.5712891, 1.5234375, -2.1757812, 0.16418457, -0.6171875, -4.2539062, -1.0585938, -0.18310547, -1.7880859, 1.4882812, 0.48364258, 0.9423828, 1.3222656, -0.8984375, -0.69873047, -0.019042969, -2.4316406, -1.0400391, -0.42236328, -0.5439453, 2.1484375, 0.37353516, -2.7714844, -1.7939453, -2.2949219, -1.8525391, 0.87939453, 1.0712891, -1.3408203, -0.043060303, -2.7402344, -0.11529541, -1.7089844, 7.247925e-05, 0.45214844, 0.12719727, -0.18127441, -1.2246094, 1.8017578, -0.4177246, 1.2978516, 1.1630859, 1.1884766, -1.1044922, -0.17102051, -0.030975342, 1.2373047, 3.734375, -0.98876953, -2.9316406, -1.4160156, 1.8212891, 0.4243164, -0.27294922, -0.58691406, -0.6010742, -1.2392578, -0.1217041, -0.2541504, 2.1875, 0.95703125, -1.4541016, -3.0390625, 1.5048828, -1.3574219, -1.6513672, -1.8847656, -0.29101562, -0.02357483, 0.20617676, -3.3417969, -2.4257812, 1.1855469, 0.65527344, 0.072753906, -2.1132812, 4.1640625, 2.0058594, 1.8242188, 2.84375, -3.0488281, 1.0019531, 0.84521484, -1.0019531, -0.5161133, 0.5258789, -0.6660156, 2.0429688, 0.7885742, 0.30273438, -2.8398438, -1.0498047, -1.375, -0.4165039, -1.6875, -2.4863281, 2.3613281, 0.16479492, 1.2216797, 1.0273438, -3.3691406, 2.7460938, 0.23205566, -1.0253906, 2.5449219, -1.359375, -0.4416504, 0.9848633, 0.29589844, -0.08831787, 0.8388672, 0.16357422, 0.4970703, 0.4633789, -1.4023438, -0.49243164, 1.9521484, -2.265625, 0.21923828, 1.0283203, 1.3837891, -2.2148438, -0.7910156, 2.6191406, 2.4140625, 0.0029449463, 1.6171875, 0.9375, -1.4003906, 2.4882812, 1.5957031, -1.4423828, -0.10003662, 0.03488159, -0.49389648, 0.7685547, -1.3720703, -1.3740234, -0.032989502, 1.46875, -0.16052246, 2.1953125, -0.08337402, -1.0869141, 2.5566406, -2.5507812, -0.23303223, 0.06713867, 0.60595703, -0.009552002, 0.13684082, 1.3925781, -0.94189453, 0.6948242, 2.8242188, -2.5507812, -2.4863281, 1.2275391, -0.09503174, -0.31030273, -0.8100586, -0.64990234, -4.5195312, -1.9121094, 1.8974609, 0.8378906, 0.71533203, 0.4921875, 1.7246094, -1.9013672, 0.69140625, -0.7089844, 1.2558594, -2.5859375, -1.1875, 1.4238281, -3.3457031, -0.25585938, -0.39111328, 0.5385742, 1.1855469, 2.4023438, 2.8574219, 0.3635254, 0.4453125, -1.3076172, -3.5371094, -2.7011719, -1.765625, 0.3569336, -1.109375, 1.2519531, 0.7763672, 1.0605469, -0.35229492, 0.38183594, -0.16662598, -1.7177734, -0.81347656, -1.1669922, -1.8613281, -0.7548828, -0.81591797, -1.0634766, 2.0078125, 0.96435547, 2.5097656, -0.33789062, -2.8457031, -0.5288086, -0.47387695, -3.4511719, -0.32495117, 2.5234375, 0.1352539, 0.98876953, -0.27954102, -0.014907837, 0.37158203, 2.6933594, -0.08325195, -0.9116211, 1.3154297, -0.45532227, 1.4521484, -0.9926758, -2.0039062, 2.5664062, -0.9707031, 0.69140625, -0.083618164, -0.5908203, 1.2734375, 2.4335938, -1.4316406, -0.75390625, 0.5649414, 1.7792969, 2.7363281, -0.3779297, -0.7001953, 0.47045898, -1.3095703, -3.6738281, 0.31640625, -3.1914062, -1.8632812, -2.1464844, -0.33325195, 2.5449219, 1.5878906, 1.5771484, 2.1074219, 1.4941406, -1.1640625, 0.140625, -0.11602783, 3.0214844, 2.0097656, -3.0703125, -1.2539062, -0.6611328, 0.004245758, 0.5576172, 0.27246094, -0.013397217, 0.18432617, -1.4003906, -0.32495117, 0.8491211, 1.3701172, 1.0732422, -0.46606445, 1.0419922, 0.8017578, 3.2207031, -0.85595703, 2.5859375, 0.1628418, 2.0214844, -1.2460938, 2.7597656, 1.9794922, -3.1464844, 0.9008789, -1.8427734, 1.5810547, 1.5078125, -2.1992188, -0.99365234, -1.03125, -1.9296875, -2.8925781, 0.4765625, -4.4179688, 1.4394531, 0.099487305, -0.6386719, 0.8432617, 0.89453125, 0.8833008, 3.3027344, 2.6269531, 0.85595703, -0.68603516, -0.55029297, -1.4853516, -0.6201172, 0.8598633, -2.3574219, -0.24865723, -0.5830078, 0.6171875, -0.54785156, 0.86572266, 0.21691895, 0.6381836, 0.5732422, 2.3476562, 1.4492188, 1.3378906, 2.4140625, 0.10546875, 1.6972656, 0.9951172, -1.4404297, -0.08001709, 2.2519531, 2.9355469, 3.25, -0.87890625, -0.43554688, 0.96240234, 0.055664062, 0.2927246, -1.4355469, 1.3378906, -3.7070312, -0.16601562, 0.6948242, 0.099121094, -1.015625, 0.7475586, -1.953125, -1.2578125, -0.16040039, -1.5322266, 3.6113281, -1.1484375, 3.2636719, 1.8417969, 1.5429688, 1.1201172, -3.3066406, 1.0478516, 0.80126953, -2.5800781, -1.7890625, 2.3457031, 0.7402344, 1.8925781, -1.5175781, 0.48217773, 3.0097656, 2.9589844, 1.8681641, -1.8300781, 1.7578125, -0.6933594, 1.3320312, 0.41137695, -1.8857422, -1.1064453, 0.2434082, -3.0449219, -2.1015625, 1.1269531, 0.8730469, 1.1474609, 0.9511719, -4.7578125, 1.9013672, -0.30859375, 2.2519531, -1.7792969, -0.017456055, -1.1777344, -2.9570312, -1.2324219, 0.9008789, -2.1972656, 3.0664062, 1.0205078, -0.20251465, 3.296875, 1.3730469, 1.6904297, 0.59521484, 2.5410156, -0.6435547, -0.67626953, 0.8178711, 1.1083984, 0.91796875, -2.0273438, -0.24536133, 2.2792969, -0.6196289, 1.7929688, 1.6533203, -0.059173584, 1.9121094, 3.6972656, 1.1220703, 0.25463867, -0.9404297, 0.20751953, -0.55908203, 1.921875, -0.0149383545, -1.0283203, 1.3779297, 2.6191406, -0.076293945, 1.7949219, -0.49853516, 0.12176514, 2.2304688, -0.4074707, -0.7783203, -2.2089844, 0.26489258, 0.87060547, 0.018829346, -0.72314453, -1.7792969, 0.62646484, 0.4909668, -1.015625, -0.10974121, 0.84375, -0.33374023, -0.21264648, 0.23474121, -1.5703125, -1.1035156, 0.15563965, -0.0074920654, 0.5151367, 2.5371094, 2.7441406, -1.3583984, -1.9013672, -0.74365234, 0.4519043, -0.75, -2.2832031, 2.6503906, 2.7207031, 3.2089844, -1.0439453, -1.9082031, -2.1523438, -0.9741211, -0.6044922, 1.3974609, 0.0024261475, -0.30004883, -0.24584961, -0.40039062, 2.6132812, 0.09033203, -1.84375, 0.93115234, -0.30371094, 1.3115234, 0.5205078, -0.8129883, -0.50878906, 1.1533203, 1.7753906, 1.53125, 2.1992188, 0.11126709, 1.3222656, 3.1953125, -1.3427734, -2.3867188, 0.0154953, 0.93847656, 2.0175781, 0.32641602, 1.765625, 1.6191406, -1.0332031, -0.92333984, -0.5722656, -1.9111328]}, "B07WYJTB3P": {"id": "B07WYJTB3P", "original": "Brand: ProCom\nName: ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in\nDescription: \nFeatures: ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment.\nTECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area.\nDEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nSTYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\n", "embedding": [-1.6523438, -0.7055664, 1.5390625, -0.5283203, -0.2722168, -1.7802734, 0.66064453, -0.9267578, -0.76464844, 1.4736328, 1.5146484, 1.8945312, -0.13317871, -3.0214844, 1.3583984, -1.953125, 0.9350586, 2.0449219, 0.8457031, -1.1992188, -0.078430176, 0.24291992, -0.08123779, 0.9316406, -1.0273438, 0.5292969, 3.6855469, -1.4912109, 0.31689453, -0.8803711, -1.6416016, -0.6821289, 0.05697632, 1.6005859, -0.875, -0.42211914, -2.6464844, -0.3791504, -1.3671875, 0.3623047, -1.265625, -0.29077148, 2.8652344, -0.013900757, -2.6367188, -1.6142578, 0.15881348, -0.36108398, -1.3134766, 0.57177734, 0.92626953, 2.6074219, -1.8759766, 1.3623047, -0.43432617, 1.8867188, -0.21289062, -1.2705078, 1.8212891, 1.2675781, 0.8666992, 0.7192383, -2.5878906, 1.4902344, -0.65283203, 1.8027344, -1.0986328, -0.63720703, -1.2333984, 2.4921875, 2.8496094, 1.2314453, -0.96777344, 0.6386719, -0.97753906, -0.5854492, -4.125, 2.4121094, 3.1269531, -0.19360352, -2.0703125, 1.609375, 0.72216797, -1.1142578, 1.2089844, -2.0097656, 0.018676758, -1.5898438, -1.0439453, 1.0634766, 0.10876465, 1.0869141, 0.35009766, -4.0976562, 1.2392578, -2.1464844, 0.79003906, 1.3525391, -0.2619629, 0.59814453, 0.72998047, 2.0136719, -0.47094727, -0.78125, -2.4980469, -2.3515625, 2.4824219, 1.9267578, -1.9804688, 1.9511719, -1.5966797, 0.15441895, 1.8486328, -0.5654297, -0.74072266, 0.06414795, 1.1669922, -0.16015625, 2.7539062, -0.18603516, 2.4316406, -1.0361328, 1.7802734, 0.16906738, 2.6953125, 1.3076172, -2.5996094, 1.4306641, 3.1855469, -0.5107422, 0.97558594, -0.13549805, 1.7900391, -0.09301758, -0.04888916, -2.3847656, -2.5546875, -2.3886719, -1.7373047, -1.3925781, -2.046875, 2.8476562, -1.5019531, -0.68408203, -3.9726562, -0.2434082, 0.71728516, 0.5234375, 2.4941406, -2.4648438, 2.5234375, -3.4492188, -0.5830078, -3.7382812, 1.5673828, 0.016067505, 0.61328125, -2.7949219, 3.0644531, 2.5078125, 0.37817383, -1.3759766, -2.1113281, 2.5585938, -1.8837891, -1.84375, 0.91015625, -0.4399414, -0.6430664, 2.3222656, -0.11578369, -1.4384766, 0.024459839, 0.33691406, -0.49487305, -1.8144531, 0.06286621, 3.0800781, 0.6586914, 1.8984375, -3.2871094, 0.1184082, 0.7583008, -0.59228516, -0.54248047, 1.3115234, 0.48388672, -0.8876953, 1.4697266, -1.6748047, -0.20092773, 0.7524414, 0.45507812, 0.5522461, 0.9902344, -1.4277344, 0.5566406, -2.4726562, 2.6738281, -0.114868164, -1.3320312, 2.265625, 0.28881836, 1.2402344, -2.6933594, -2.28125, -0.59277344, 0.34887695, 2.59375, 1.2285156, 1.4365234, -0.7626953, 2.671875, -2.4394531, -0.6220703, -2.125, 0.28344727, 1.0244141, 0.6484375, -0.36499023, 0.5830078, 0.359375, 1.7841797, 1.8779297, 0.12915039, 1.78125, -0.23156738, -0.17810059, -2.4609375, -1.4550781, 2.2167969, -0.14282227, -1.1308594, -0.6972656, -0.1616211, 1.4111328, -0.88134766, -3.4082031, 2.171875, 0.6489258, 1.4873047, -0.3581543, -1.7314453, 1.0761719, -0.46679688, 2.6210938, 0.070007324, 1.59375, 0.1394043, 0.18713379, 0.4243164, -0.32983398, 0.21020508, 0.20056152, -0.59521484, -0.8173828, -0.67333984, -1.0849609, -0.89941406, -1.2753906, 2.9023438, 0.35742188, -2.6835938, 0.29858398, -0.7133789, -1.2792969, 0.21020508, -1.3730469, -1.1572266, -0.9868164, 0.88183594, 1.8515625, 2.9453125, 2.0664062, 2.4511719, 0.5595703, -0.7285156, 3.6582031, 0.32421875, 0.27294922, 0.2824707, -0.8769531, 1.3662109, -0.45239258, 0.64501953, 1.3544922, 1.3007812, 0.34326172, -1.9833984, -1.2011719, 2.609375, -1.84375, -2.0507812, 2.296875, -1.8808594, 0.2746582, 1.3388672, 1.1191406, 0.10949707, -0.33544922, 1.8916016, 2.59375, 0.006336212, 0.76708984, -0.46972656, -0.56689453, 1.0576172, -1.5566406, 1.5410156, 0.28515625, 1.6962891, -0.63916016, -2.5097656, -0.38720703, -4.1367188, -1.2841797, 3.3828125, -0.9189453, 3.1210938, 0.90527344, 2.5546875, 1.2714844, -1.0146484, -1.3740234, -0.021575928, 1.6152344, 0.33911133, 1.046875, -0.54541016, -1.2099609, 0.26171875, -1.7070312, -0.24316406, -1.8769531, -1.1728516, -0.13806152, -0.10644531, -0.86279297, -0.30151367, -0.7397461, 1.4101562, 1.0839844, -3.1855469, -0.1895752, 0.91503906, 0.2878418, -1.0996094, -0.9614258, -0.6298828, -0.19116211, 2.9824219, 2.6699219, -1.1806641, -2.828125, 0.15026855, -0.8017578, -0.88671875, 0.8251953, -2.8691406, -0.26586914, -0.092285156, -0.10656738, -0.9248047, -0.5024414, 0.040527344, -0.34179688, -0.1977539, -2.9492188, 2.1738281, -1.0537109, -0.29345703, -1.2861328, 1.8525391, -1.6445312, -1.1074219, 0.85302734, -1.6972656, 2.8789062, 1.3154297, 2.3105469, -1.1201172, -0.091796875, -0.7817383, -1.0556641, -1.5722656, 0.13793945, -0.44702148, -1.40625, -1.9882812, -2.0976562, 0.63183594, -0.5410156, -1.0654297, 0.29882812, -0.7734375, 1.2109375, -0.13098145, 0.66308594, -0.27978516, 0.7583008, -0.5678711, -1.1523438, -1.1171875, 0.7446289, -1.1523438, -1.6669922, -1.1748047, 0.80615234, 0.9116211, 0.61816406, 0.9013672, -0.8823242, -1.5166016, -0.40820312, 0.85791016, -3.4628906, 0.030181885, 1.1210938, -0.4543457, 1.3349609, -0.46655273, -0.6748047, -0.4255371, 0.21459961, 4.4296875, 1.7929688, 1.9179688, 1.4658203, -0.7290039, 1.5859375, 1.3388672, -0.48168945, -0.28320312, -0.89990234, 3.5117188, -3.1933594, -0.79833984, -0.30371094, 1.6337891, -3.3789062, -2.3222656, 1.8027344, -1.8886719, 3.1855469, 1.3642578, 0.296875, 0.8642578, -0.033172607, 1.5585938, 0.74902344, -1.0458984, -0.38720703, -3.7929688, 0.8149414, 2.2519531, 0.26635742, 4.1914062, -1.359375, 0.12792969, 0.35205078, 1.3789062, -1.0419922, -1.1201172, -1.046875, -1.6875, -0.113586426, 2.9902344, -0.81347656, 0.22924805, -0.9868164, -0.17773438, -0.15136719, -1.9375, -0.021194458, 1.9208984, 0.82177734, -1.4394531, -0.46850586, 0.6982422, -0.4248047, -0.050354004, 1.7324219, -0.18359375, 0.3112793, 2.9140625, -1.9736328, -0.3227539, -1.6044922, 1.6220703, -0.7084961, 0.45214844, -1.28125, 2.8125, -1.4619141, -1.8720703, -0.25048828, -0.6088867, 0.20507812, 1.9130859, 0.3046875, -1.1347656, -1.0849609, -1.234375, 0.50390625, 0.9614258, 0.74316406, 1.0644531, -0.11236572, 1.8144531, -1.7207031, -0.19836426, 1.2685547, -0.28808594, -0.25805664, 0.64746094, -1.2519531, -0.22680664, -0.33007812, 0.36376953, 0.2043457, 3.4804688, 0.2841797, 1.1044922, -1.15625, 0.8666992, -0.43237305, -0.21203613, 2.59375, -1.2607422, -1.3349609, -0.33618164, -3.3730469, 1.4804688, -0.984375, 0.4008789, 1.9394531, 1.4912109, -0.105895996, 0.001613617, -0.63720703, -3.7851562, -1.8476562, -0.64501953, 0.39379883, -2.7949219, -2.78125, -0.35961914, 0.53515625, -0.012321472, 0.9453125, 1.1679688, -0.24121094, 1.0654297, -0.14892578, -1.1933594, 0.71875, 1.0185547, -0.37060547, 0.68603516, -1.2021484, 3.1230469, -0.1361084, -0.66748047, -2.8261719, -0.050628662, 1.2470703, -1.7666016, 0.69433594, 2.8554688, 1.0595703, -1.1113281, -0.89208984, 0.45263672, 0.7236328, -0.10437012, -3.1484375, 0.35375977, -1.5507812, 1.8037109, -0.87597656, -0.5703125, 0.8442383, -2.3632812, 1.1386719, 1.7695312, 1.2353516, 1.3046875, 1.3183594, -1.2119141, 0.83935547, -0.71240234, -1.1279297, -1.4101562, -0.8881836, 0.06781006, -0.66748047, 0.765625, -1.5537109, 1.0175781, 1.2490234, -1.1679688, -2.2050781, 1.0400391, 1.5751953, 2.2246094, 2.6835938, -0.21459961, -0.91796875, 0.15002441, 0.10003662, 1.5595703, 1.2207031, -0.1887207, -1.3427734, 0.7783203, 2.5996094, -1.5087891, 0.68359375, -0.29125977, -0.2668457, 1.5556641, -0.6645508, -1.6347656, -1.6914062, -0.09802246, 2.7714844, 1.4384766, 1.2460938, -1.6044922, -0.36254883, 0.64501953, 1.1044922, -0.11956787, 1.8466797, 1.1708984, 0.19665527, 1.9619141, 1.6015625, 0.27368164, 0.5229492, 2.7734375, 0.013885498, 2.0976562, 1.8955078, 1.484375, -0.9995117, 0.09716797, -1.5390625, -0.5673828, 2.1210938, -0.30981445, -0.98046875, 1.7832031, -0.18530273, -2.1347656, 1.0830078, -0.72216797, -3.4921875, -0.984375, 0.06604004, -0.53222656, -0.78222656, 0.0335083, -2.6816406, -0.73046875, 2.9628906, -0.58496094, -0.74658203, -1.1132812, -1.9023438, 0.18920898, -1.6044922, -0.82177734, 0.28149414, -0.89160156, 0.31591797, -0.5341797, -1.1220703, -1.4423828, 0.4387207, 1.7685547, 1.5361328, -2.1503906, -0.29248047, 0.65722656, 0.4284668, -1.2451172, 1.1992188, 0.16320801, -0.23022461, 0.5605469, -1.78125, 3.4277344, 1.0537109, 0.8041992, -2.7070312, -0.36547852, -1.9365234, 1.2519531, -2.0820312, -1.0947266, 2.6308594, -0.7988281, 0.045440674, -0.81152344, -0.91748047, -0.28466797, 1.4892578, 0.28759766, -0.9013672, -0.2479248, -0.9980469, -4.2265625, -5.328125, -2.3242188, -0.09802246, -0.6538086, -0.4572754, -0.27954102, -2.3339844, 1, -0.22265625, 1.6972656, -2.9863281, -0.5673828, -1.4023438, -1.8378906, -1.3681641, -0.83691406, 0.2644043, 0.2055664, 1.4033203, -1.28125, 0.36889648, -3.5332031, 0.91064453, 2.3144531, 1.9765625, 0.47802734, 0.94384766, 0.2734375, 1.0566406, 1.8867188, 0.34887695, -2.84375, 0.4506836, -0.8120117, 1.7285156, 1.4736328, -0.2993164, -0.37426758, 1.7685547, 0.011978149, 1.2910156, 1.1806641, -0.08898926, -0.6635742, -0.29174805, 0.74121094, -1.3759766, 1.0019531, 0.8774414, 0.21179199, 0.51171875, 0.77246094, 0.76953125, -0.47460938, -1.8857422, -2.8125, -1.8134766, -0.10015869, -3.2050781, -1.5771484, -1.2001953, 2.9472656, -0.6557617, 1.8964844, 1.2744141, 0.85546875, -0.8496094, -1.6210938, 0.22302246, -2.3613281, 1.4433594, 1.7060547, -0.10858154, -2.5507812, -0.7294922, 3.4160156, -0.12524414, -0.29467773, 1.2773438, -0.47387695, -1.8730469, 0.92529297, 1.2148438, 2.8417969, 1.6064453, 1.5927734, -2.1972656, 1.1240234, 0.84716797, 0.4296875, 2.1777344, 1.6230469, 2.0253906, -1.2285156, 3.125, 0.8745117, -1.6865234, -0.77001953, 1.0253906, 0.9692383, -1.3789062, -1.0185547, 1.1308594, -2.1386719, -1.9755859, 0.17407227, 0.34399414, -2.0859375, 3.0800781, -0.51904297, -1.1328125, -1.0361328, 1.4677734, -0.62597656, 0.86572266, 2.9589844, -1.0449219, -0.7739258, -0.54345703, -2.0039062, -1.609375, 2.0644531, -1.703125, -0.12042236, -0.3100586, 0.54003906, -0.018371582, 0.32958984, -0.98291016, 2.1582031, 1.9404297, 2.8808594, 2.2480469, 2.0507812, 0.52246094, 0.88720703, 1.3632812, 0.92529297, -0.9663086, -0.45239258, 1.0332031, 0.8261719, -0.046142578, -1.9638672, 0.8339844, -0.6069336, -0.28881836, -1.4267578, 1.6162109, 0.070129395, -4.1484375, 2.2695312, -0.41748047, -1.1054688, -1.8212891, -1.1191406, -0.8798828, 1.3173828, -0.5683594, -0.26635742, 0.3059082, -0.5888672, 0.052459717, 0.43310547, -0.23425293, 1.1025391, -0.3466797, 0.28100586, -0.2692871, -1.8134766, 1.6884766, -0.57958984, 0.96533203, 1.2294922, 1.1025391, 2.0449219, 0.5209961, 0.8964844, -0.96972656, -2.2226562, 0.20141602, 1.0205078, 2.171875, 3.2753906, -0.83935547, 0.94091797, 1.3496094, -2.4277344, -4.9570312, 0.064697266, 0.34716797, 1.0556641, 0.6870117, -2.3613281, 1.671875, 1.2050781, 1.3652344, -3.6640625, 1.0341797, 0.21850586, -0.96435547, 1.8417969, 2.3046875, 0.121154785, 3.0078125, 1.1269531, 0.085632324, 2.3730469, 0.4494629, 2.0234375, 2.46875, 1.6484375, 1.1601562, 0.9453125, -0.9589844, 0.5629883, 0.09753418, 1.1660156, -2.1660156, 1.7285156, 3.1367188, -0.076538086, -0.053466797, -1.453125, 0.6303711, -1.1748047, 1.1445312, -0.8408203, -1.7744141, -2.0332031, -1.0917969, 0.2565918, -0.09539795, -0.29467773, 1.5253906, 0.9326172, -2.3398438, -1.1806641, 3.0898438, -1.4101562, 2.0703125, -0.23828125, 0.6611328, -0.71972656, -1.4853516, 1.9150391, -0.7055664, -1.3222656, -2.1015625, 1.5732422, 0.22106934, 0.031555176, 0.8076172, 1.4765625, 0.22814941, 2.1738281, 0.8964844, 0.7836914, -0.94189453, -0.5175781, -1.2470703, -0.71435547, 1.8867188, 0.17993164, -0.6821289, -0.45214844, -1.6923828, -1.5410156, 1.8398438, -0.042388916, 0.64453125, 2.1269531, 0.79296875, 0.78759766, -0.36010742, -3.8574219, -1.6328125, 0.07196045, 2.0839844, -0.09075928, -0.22644043, 0.36767578, -1.0009766, 1.4824219, -0.3239746, -1.4072266, -0.5234375, -0.65625, 0.032470703, -0.9794922, 0.7504883, 1.0625, 2.7148438, -1.2158203, 1.7207031, -0.7416992, -0.40576172, 0.9160156, 1.6025391, 0.90625, -0.8251953, -1.703125, -1.3105469, -1.3613281, -0.41015625, -1.7802734, -0.07281494, -0.8300781, -0.9921875, -2.8730469, -0.04724121]}, "B0024ECBMA": {"id": "B0024ECBMA", "original": "Brand: Camco\nName: Camco 59313 Vertical Two Stage Propane Regulator , Gray\nDescription: \nFeatures: Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances\nInlet: 1/4\" Female NPT Outlet: 3/8\" Female NPT\nOutlet pressure 11\"WC\nFor vertical mount applications\n160,000 BTU/hr\n", "embedding": [-0.66503906, -0.19152832, 0.73046875, 2.1074219, -1.0830078, -2, 0.46118164, -1.2109375, 0.8847656, -0.44018555, 0.99658203, 0.9248047, 0.6713867, -0.3791504, 2.1523438, -0.65771484, 0.5620117, 0.45385742, 1.5830078, 0.23266602, 0.43969727, -1.5009766, 2.3867188, -2.0976562, 1.0712891, -0.020812988, 3.6796875, -1.1601562, -1.5058594, -0.6279297, 0.65527344, 0.89941406, -0.80371094, 1.3261719, -0.16503906, 0.7578125, -1.0673828, -0.8256836, -3.4257812, -0.058380127, -2.8730469, -0.011512756, 1.7246094, -1.2695312, -2.015625, -1.5097656, 1.0712891, -1.0664062, 1.4316406, -1.5664062, 0.2841797, 1.0654297, -0.5678711, 0.9550781, -0.42407227, -0.21618652, -0.58691406, -1.0546875, 0.9946289, 2.1621094, 0.1307373, -0.18884277, -3.5644531, 0.91259766, -0.22875977, 2.1484375, -0.13024902, -0.68896484, 2.1308594, 0.7988281, 1.5615234, 0.39160156, -0.63378906, -1.8037109, -2.2148438, 0.8203125, -2.3515625, -0.23510742, 1.75, -0.121276855, -2.9492188, 0.5986328, 0.99316406, -2.4648438, -1.3330078, 0.3857422, 0.9321289, -0.6411133, 0.8984375, -0.30615234, -1.6884766, 0.5209961, -3.1835938, -4.2382812, 0.17407227, 1.9101562, -1.1816406, 1.2871094, 0.24987793, 1.9042969, -0.19519043, 0.8769531, 0.29907227, 0.63916016, -2.421875, 0.6484375, 2.2871094, 1.0107422, -3.5410156, 0.7182617, -1.7431641, -1.4667969, 1.2548828, -0.50878906, 1.1630859, 0.5678711, -0.99365234, -0.09484863, 4.1601562, 0.39379883, 2.796875, -0.42871094, 0.6928711, 0.11859131, 0.90185547, 1.9316406, 0.34472656, 0.8041992, 4.5195312, -0.21826172, -0.17297363, -1.6083984, 1.1992188, 0.18835449, 1.6621094, -1.6416016, -2.0019531, -2.796875, -0.86865234, 0.12927246, -4.5703125, -0.8979492, 1.9345703, 0.8466797, -3.796875, -1.3066406, -1.1455078, 1.8359375, 0.49487305, -1.6425781, 1.2480469, -2.8632812, -0.41625977, -0.8095703, 0.7597656, 0.31689453, -1.6455078, -2.8730469, 2.1542969, 0.8154297, 0.45947266, -1.3193359, -2.4375, 0.48876953, -0.4104004, -0.80908203, -0.4333496, -0.060943604, -0.12817383, 2.5117188, -0.04043579, -2.5976562, 0.12792969, -0.04067993, -0.9042969, 0.14733887, 2.4609375, 2.0839844, 3.2421875, 0.43847656, -1.6181641, -1.0029297, -1.4697266, -1.8642578, 1.8251953, -0.26831055, 0.34936523, 0.40844727, 1.9208984, -0.70751953, -1.2441406, 0.27001953, -0.5390625, -0.83740234, 0.9584961, -2.6914062, -2.9453125, -0.45239258, 2.0449219, 0.43579102, -1.3583984, 0.203125, -1.0761719, 1.1884766, -1.7919922, -0.6567383, 0.5810547, 0.98046875, 0.20629883, 0.7817383, 1.3427734, -0.037994385, 1.3125, -2.3730469, 0.4555664, -2.0273438, 1.3759766, 1.0556641, 0.1550293, 0.6855469, 0.74121094, 1.8261719, 1.1113281, -0.8701172, 1.5322266, 0.039398193, 1.2871094, 0.15283203, -0.9770508, -0.9194336, 1.7832031, 1.2246094, -1.2568359, -0.8520508, -0.6245117, 2.3203125, 0.5258789, -0.09991455, 0.71875, -1.0429688, 0.6928711, 0.13452148, -0.3474121, 0.2454834, 1.3310547, 0.35058594, -1.4414062, 3.0527344, 1.6572266, 1.0908203, 1.3134766, 0.00033640862, -2.8964844, -0.96435547, -1.0048828, 1.3369141, 0.9213867, 0.053527832, 0.74853516, -3.4589844, 1.9140625, 1.2705078, 0.27075195, 0.081604004, 1.1816406, 0.18664551, 1.0751953, -1.4501953, -0.3569336, -0.06359863, -0.13110352, 1.2451172, 1.9287109, -0.30688477, 1.1865234, 0.75, -0.7783203, 1.9628906, -0.27075195, 1.5400391, 0.6977539, -0.1706543, 0.5283203, -2.6972656, 1.9707031, 0.54248047, -0.18469238, 0.33422852, -2.65625, 1.3984375, 1.3769531, -1.2773438, -2.6699219, 1.6621094, 2.5800781, 0.6147461, 3.9550781, 0.6044922, 0.08312988, 0.5703125, 1.5136719, 1.640625, -2.1699219, -0.41870117, 0.56933594, -0.37939453, -0.5800781, -0.8833008, 0.9790039, 0.48168945, -1.3466797, -2.0351562, -3.6308594, 1.6816406, 0.23388672, -0.7729492, 1.8359375, -1.7753906, 2.2519531, 1.3037109, 0.6459961, 0.9111328, -0.7055664, -2.015625, 0.105651855, 0.77490234, -0.72998047, -0.18457031, 0.6254883, 0.37182617, 0.35595703, 0.54785156, 2.03125, -0.8984375, 0.25268555, 1.4863281, 0.22363281, -2.5703125, 1.1962891, -1.0664062, 0.08154297, -0.58740234, -1.3828125, 1.8681641, 0.8408203, 0.014884949, -0.8979492, 0.6123047, -0.41357422, -0.43652344, 1.3212891, 1.6621094, -1.1230469, -2.671875, -0.7026367, 0.55322266, -1.5, 2.5019531, -2.2324219, 0.7373047, -0.01626587, -0.01689148, 1.109375, -1.3740234, -0.65625, -0.21838379, 1.578125, -2.5058594, 1.8544922, 0.04156494, 2.0878906, -0.5385742, 3.7480469, -0.41015625, -1.7128906, -0.5600586, -0.5957031, 2.6484375, 0.20031738, 0.38671875, -0.53125, -0.7133789, 0.04574585, -1.2958984, -2.3789062, 0.1697998, 1.8642578, -1.5488281, -0.8120117, -1.3212891, -0.20031738, -0.38061523, 1.2177734, -2.2929688, -1.8222656, -1.9667969, -1.8183594, 0.07922363, 1.7412109, 0.7109375, 2.4667969, -2.3105469, -2.1601562, 0.26904297, 1.8691406, -0.7548828, -0.5786133, 0.8623047, 0.29052734, 0.120666504, 0.3618164, 1.2460938, 0.6113281, 1.4667969, -0.2841797, -2.3339844, 1.1962891, 0.8046875, 2.0195312, 2.0722656, -1.3183594, -1.0087891, -2.3925781, -0.8911133, 3.1074219, 2.4941406, 2.9804688, -0.10668945, 2.1621094, 1.5126953, 0.33325195, -0.81103516, -0.6245117, 0.2211914, 2.7304688, -1.4833984, -0.60058594, 0.7402344, 0.75, -1.8232422, 0.06311035, -0.14550781, -0.89160156, 2.8066406, 2.5039062, -1.3398438, -0.6796875, 1.4746094, -0.24963379, 0.38671875, -0.50683594, -0.21130371, -1.3017578, 1.6875, 0.19665527, 1.3037109, -0.06378174, 0.2487793, -0.5942383, -0.16271973, 3.8730469, -0.84716797, 1.1933594, -0.17468262, -0.8203125, 0.093933105, 1.8789062, 0.69970703, 1.4550781, 0.05105591, -0.64941406, 0.1574707, -2.8613281, -0.50146484, -0.21105957, 1.890625, -0.4177246, -0.86816406, -0.53759766, 1.2539062, 1.0302734, 1.1113281, 0.17016602, -0.23449707, 0.8623047, -1.1396484, -0.85058594, -1.2783203, 2.0117188, -1.0732422, 0.93603516, -0.24414062, 0.9863281, 0.77490234, -2.5507812, -1.1201172, -1.9892578, 0.46118164, 2.6855469, 2.0078125, -0.90478516, -0.7519531, -0.5991211, 1.4892578, 1.7607422, -0.72021484, -0.8779297, -1.0029297, 1.515625, -0.49414062, -2.6269531, 2.7539062, 0.13012695, -1.2451172, -0.77246094, -1.984375, 0.3088379, -0.4104004, -0.36572266, -0.7910156, 1.2861328, -1.8818359, 1.9697266, 0.66308594, 1.4628906, -2.6035156, 1.640625, 1.234375, -3.2773438, -1.1513672, -2.5, -5.25, 1.0175781, -1.6318359, -0.033325195, 1.3671875, 0.13232422, 1.0087891, 1.6767578, -0.03338623, -3.0546875, -1.5097656, -0.33569336, 1.3173828, -3.71875, -0.9189453, -0.40063477, 0.6376953, -2.4121094, -2.1230469, -1.0839844, -1.9101562, -0.8046875, -0.8886719, -1.0068359, 1.0712891, -0.17956543, 0.94628906, 0.43579102, -1.1289062, 1.0917969, -1.3955078, -0.39086914, -3.4804688, 1.5292969, 0.44677734, -0.79248047, -0.084472656, 1.421875, 2.0546875, -0.69140625, -0.8222656, -0.18432617, 1.0517578, -1.1044922, -2.0214844, -1.8876953, -1.2001953, -0.8833008, -2.1953125, 1.2392578, 1.1523438, -0.60009766, -0.078308105, 1.2763672, 0.30126953, 1.4208984, -2.1953125, -3.0019531, 2.4335938, 0.070007324, 0.70166016, 0.7060547, -0.6557617, 1.2441406, -3.0117188, 0.097717285, -0.66748047, -1.3662109, 1.9501953, -0.4909668, -2.7675781, 0.6821289, -1.015625, 0.76464844, -1.6484375, -0.3515625, -3.4882812, -0.94189453, 0.91503906, 0.6591797, -1.5947266, -0.117614746, 0.04196167, -0.7529297, 2.953125, -2.0234375, -1.6933594, -0.32983398, -2.5917969, 0.49194336, -0.7236328, -0.07458496, -0.35107422, -1.0419922, 2.59375, -0.02923584, 2.2910156, -0.46435547, 1.3828125, 0.52783203, -1.8652344, -2.4121094, 1.3486328, 0.37768555, 2.0976562, 3.0839844, -1.3134766, 0.6254883, 1.1845703, 1.9433594, 0.19641113, 1.0517578, 0.0037002563, -1.9248047, -0.85546875, 0.625, -0.48583984, -1.7597656, 1.3251953, 0.75146484, 1.6845703, 1.4707031, 2.75, -0.61621094, 1.3710938, -1.6708984, -1.2539062, -0.6069336, 0.17749023, -0.38061523, 2.3769531, -0.85058594, -2.34375, 1.4833984, 3.5917969, -0.9477539, 0.94433594, 1.0048828, 0.7504883, -1.9042969, -3.2695312, -1.5400391, -0.48095703, 1.8925781, 1.5849609, -1.6914062, 0.5551758, 0.4440918, -0.044158936, 1.6074219, -0.7373047, 0.13391113, 0.9091797, 0.0026836395, -1.4873047, -1.4287109, -1.8916016, -3.1308594, -0.25195312, 2.1855469, 0.60498047, -0.35473633, 0.3491211, -0.80371094, -0.6542969, -2.0839844, -2.0078125, 0.5810547, 0.18579102, -0.6230469, 2.359375, 1.7753906, 0.25146484, 0.031036377, 0.66845703, -0.40771484, 2.3769531, 3.4257812, 1.3603516, -0.23876953, 0.060455322, -2.0234375, -5.7382812, 0.82910156, 2.1601562, 0.20898438, -0.8144531, -1.765625, -1.3359375, 1.9443359, -0.86376953, -0.2915039, -3.4472656, 0.22814941, -1.5195312, -0.18310547, 0.7495117, 0.31225586, -0.58935547, 2.0605469, -0.4423828, -0.8564453, -1.6074219, -2.3867188, -1.7871094, 1.8095703, -0.11639404, -0.046539307, 1.1748047, -0.7939453, 0.50683594, 1.3779297, 0.68310547, -2.2675781, 0.75683594, -1.8574219, 0.44262695, -0.015274048, -1.3457031, 1.9287109, 2.8691406, 1.2744141, 1.2587891, 2.9414062, 2.4824219, 0.6411133, 0.8208008, 0.96191406, -0.4423828, 0.5332031, -0.6401367, 0.91259766, 0.1505127, 3.15625, 1.8320312, -1.7666016, -0.38891602, -2.4355469, -1.2783203, -0.07751465, -2.4277344, 0.2788086, -0.0030269623, 1.4580078, 0.36328125, -0.7290039, 0.03881836, -0.023345947, -0.8203125, -0.16394043, 2.2089844, -1.4462891, 1.8300781, -0.16516113, -2.4628906, -2.40625, -0.60058594, 1.2558594, 0.42749023, 0.8466797, 0.55615234, 1.7851562, -0.9838867, 1.4794922, 0.34399414, 0.38623047, 0.22033691, 0.91748047, -0.087768555, 0.49414062, 1.0136719, -0.54003906, -0.6489258, 0.9375, -0.25708008, -0.84814453, 1.1113281, 3.90625, -1.8125, 0.2553711, -0.6796875, 0.64697266, -1.9306641, -1.6962891, 1.7363281, -3.1992188, 0.084228516, 0.051208496, 0.35913086, -2.0488281, 3.7246094, 0.6533203, -1.7138672, 0.9082031, 1.2880859, -2.2050781, -1.8681641, 2.5703125, 0.30151367, -0.20324707, 0.101989746, -1.1757812, 0.84228516, 0.9667969, -2.9257812, 0.49169922, 0.049835205, 2.3105469, 0.6230469, 0.19641113, -0.7192383, 1.453125, 2.9472656, -0.00087070465, 3.0253906, -0.5727539, 1.5136719, 1.6455078, 2.4003906, 0.8564453, -0.25683594, 0.6303711, 1.0009766, 0.38183594, 0.17285156, -0.6845703, 0.13952637, -1.9248047, 2.2148438, 0.74560547, -0.30908203, 0.40063477, -2.4707031, -1.6074219, 0.020721436, 1.6806641, -1.7666016, 1.2539062, -2.0742188, -0.06567383, -0.30932617, -1.9375, -0.18017578, 0.28125, -0.29248047, 0.6713867, 0.5463867, 1.3496094, 0.29956055, -2.4433594, -3.1523438, -1.5498047, -0.13696289, 1.3378906, 0.061035156, 0.9897461, 0.2133789, -0.40307617, -0.16894531, 1.1142578, 0.8930664, -2.0859375, 1.2050781, -0.75878906, 3.6132812, 1.9677734, 0.038848877, 2.5859375, 2.2148438, -1.6679688, -4.1289062, 0.7285156, -0.14355469, 0.40527344, -1.1240234, -3.6953125, 1.5253906, 0.08782959, 1.1699219, -2.4570312, 0.8803711, 0.8154297, -3.0058594, 1.7958984, 0.5761719, -1.2451172, 4.4296875, 1.6640625, 1.1835938, 0.296875, 0.103759766, 1.5791016, 1.0927734, 1.7207031, -0.24047852, -0.29663086, -1.4736328, 2.6621094, 1.0634766, -0.9277344, 0.60791016, 2.3691406, -0.010070801, 0.50439453, 0.29956055, 0.35498047, 1.8017578, 0.7685547, -1.390625, -0.73535156, -3.2109375, 1.4628906, 0.1899414, 1.0859375, -0.30859375, -1.1787109, -2.7167969, 1.9960938, -2.4394531, 0.10095215, 0.7216797, -0.6904297, 0.8222656, -1.1357422, -1.3066406, -2.2558594, 2.171875, 1.1982422, -0.52001953, -0.036834717, 0.234375, 2, 1.0019531, -0.71728516, -0.6645508, 0.67333984, -0.69189453, -0.5986328, 0.78808594, 0.3930664, -0.6748047, 0.80371094, -1.2558594, 0.63964844, 1.9746094, -0.52001953, 1.1191406, -2.5605469, 0.52685547, -0.45214844, -0.9379883, 0.09124756, 0.70996094, 0.6616211, -0.026687622, 1.9970703, -0.5107422, -1.2744141, -0.7290039, -2.5292969, 1.9609375, 1.6777344, -0.44873047, 0.4506836, 1.4941406, 1.6142578, -0.73828125, 0.2163086, 0.61376953, -1.3818359, 1.1494141, -1.9570312, 0.49829102, 0.35595703, -0.71875, 0.51171875, 3.6835938, -0.8876953, -0.5708008, 0.0062713623, 0.3017578, -0.9423828, -0.33081055, 0.031051636, -2.2636719, -3.3867188, -0.90771484, 2.515625, 4.390625, 1.125, -0.20678711, -3.1660156, -0.55615234]}, "B0787VMCT8": {"id": "B0787VMCT8", "original": "Brand: FDW\nName: FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze\nDescription: \nFeatures: \u2160 \u3010EASY TO ASSEMBLY:\u3011All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater\n\u2161 \u3010PUT LOTS OF HEATER:\u3011The patio heater\u2019s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it\u2019s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater\n\u2162 \u3010MULTIPLE PLACE USAGE:\u3011The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters\n\u2163 \u3010SAFTY:\u3011 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater\n\u2164 \u3010HIGH QUALITY MATERIAL:\u3011 The patio heater use high quality stainless steel of the heating element which isn\u2019t easy to melt/burn off, and the outdoor heater fire can\u2019t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater\n", "embedding": [-0.43310547, 0.5854492, 0.8642578, -1.2138672, 0.9428711, 0.6118164, 2.1992188, -2.4375, -0.01939392, 2.0898438, 0.16345215, 0.9067383, 1.4541016, -4.9453125, 1.7783203, -0.5185547, 0.25317383, 0.33764648, 1.9716797, 0.5419922, 1.7949219, -1.34375, -1.0634766, -0.3798828, 1.6523438, 0.22253418, 3.7089844, -2.5371094, -0.007160187, -1.0761719, -0.49145508, 1.1298828, -0.51123047, 1.3183594, -2.9589844, -1.859375, -0.82177734, 1.6523438, -3.4472656, 0.10687256, -2.0292969, -2.6445312, 0.97509766, 1.4326172, -1.5576172, 2.3105469, 1.3027344, 1.7470703, -0.42041016, -0.9970703, 0.28100586, -0.35302734, 0.4909668, -0.3544922, -1.6328125, -0.22644043, -1.1064453, -4.7578125, 0.51416016, 0.35791016, -0.2421875, -0.89404297, -1.9658203, 3.0664062, -1.2783203, -0.0519104, 0.80126953, 0.14282227, -1.4697266, 0.7885742, 1.8515625, -0.6401367, -1.2080078, 0.92578125, 0.5185547, -0.25048828, -2.578125, 1.4375, 3.9628906, 0.0947876, -0.91015625, 2.2128906, 1.96875, 0.40478516, -1.8085938, -0.07171631, -1.7041016, -0.5283203, -0.22241211, 2.6660156, -1.8095703, 3.3691406, -0.6977539, -3.2714844, 1.2128906, -2.71875, 1.1865234, 1.8330078, -1.2978516, 1.59375, -0.2130127, 0.39941406, -0.18322754, -0.12072754, -0.6088867, -1.3359375, 3.5058594, 2.2167969, -2.5800781, 0.79003906, -2.3554688, 0.41918945, 1.5185547, -0.9794922, -0.02217102, 1.2519531, 0.4230957, 1.7197266, 4.3984375, 0.71435547, 4.984375, -0.49389648, 1.9316406, -1.8027344, 0.6513672, -0.33398438, -1.0097656, 0.38842773, 0.5708008, -2.7988281, 0.2836914, -0.9736328, 1.6464844, -0.06982422, -0.9848633, -1.5732422, -1.7441406, -1.8583984, -3.6523438, -0.5883789, -1.2333984, 1.1582031, 1.4990234, 1.2060547, -3.7792969, 0.45385742, -2.4355469, 2.6152344, -1.0683594, -1.8486328, 2.0996094, -1.1259766, -0.4946289, -1.9414062, 0.6533203, 1.9023438, 0.3876953, -3.3300781, 3.7929688, 1.5009766, 2.1210938, -0.94873047, -0.16149902, 1.7470703, 0.17529297, -0.4543457, 2.5488281, -0.05682373, 0.34765625, 0.74560547, 0.115722656, -2.4960938, -0.76220703, 0.37597656, 0.9082031, -2.1328125, -0.5644531, 1.7373047, -1.1621094, 0.1665039, -2.0605469, -1.1201172, 0.92871094, 1.3730469, -0.87353516, 0.30981445, -0.9326172, -1.2353516, 0.16687012, -0.8383789, -1.3359375, -0.6689453, -0.79589844, -1.8808594, -0.018661499, -1.9404297, -3.4160156, -0.97802734, 2.8417969, 1.3466797, 0.10925293, -0.22753906, -0.045440674, 0.20227051, -2.0078125, -1.9423828, -0.11138916, -0.27075195, 0.11114502, -0.21960449, 0.24279785, 1.6425781, 2.53125, -0.8125, 1.4960938, -0.02720642, 2.15625, -0.20288086, 0.93359375, 2.1015625, 0.9663086, -0.051940918, -1.5224609, 0.32006836, -0.87646484, 0.95214844, 1.6953125, 1.0185547, 0.22521973, -2.4824219, 2.6386719, -0.07739258, 1.2431641, 0.6948242, -2.15625, 2.3242188, 0.96972656, 0.50390625, 0.61328125, 0.91845703, 1.6308594, -0.9067383, -1.6630859, 0.06842041, 0.38549805, 0.053253174, -0.09454346, 0.890625, -0.06378174, -0.5683594, -0.15661621, -1.7099609, 0.10058594, -1.4609375, -1.2539062, 0.14868164, 0.48046875, 0.7290039, -0.85595703, -1.8378906, -0.03475952, 0.23779297, -0.80810547, 1.5820312, 0.18664551, -0.6142578, 3.6894531, 1.3544922, -3.1523438, -0.5317383, -1.2490234, 1.0947266, 1.4892578, 0.5263672, 2.1484375, 1.7939453, -2.1523438, 2.1640625, -0.31884766, 0.23266602, 0.8881836, -1.7832031, 3.6484375, 0.064453125, 0.8198242, 0.5654297, -0.37890625, 0.5341797, -0.29736328, -0.45166016, 3.7851562, -2.3808594, -3.8007812, 1.0332031, -0.6796875, 2.7558594, 1.6347656, 0.046203613, -1.0351562, -1.3349609, 2.3066406, 1.0019531, -2.734375, 2.1835938, -2.3417969, -0.23669434, 1.6679688, -3.9277344, 0.66064453, 0.86816406, 0.40307617, -1.5283203, -2.5664062, -1.9619141, -2.0039062, -1.6064453, 3.6816406, -2.7695312, 2.1660156, 1.7587891, -0.44995117, -1.0996094, -0.022369385, -0.9145508, -1.1660156, 0.7783203, 0.12200928, 0.2800293, -1.2734375, -1.0742188, 0.24658203, -3.0019531, 1.9726562, -1.7509766, -2.9003906, -1.1875, -1.4794922, -1.2666016, -0.3701172, -1.0771484, 0.9506836, 0.7758789, -0.096069336, 1.0205078, -1.1826172, -0.6376953, -0.07647705, 0.7036133, -0.89941406, 1.3232422, 1.1542969, 1.1943359, -2.6210938, -3.9121094, 0.18664551, 2.2929688, -0.47998047, 0.95166016, -2.0664062, -0.2421875, 0.76220703, 0.66552734, -0.9785156, -0.023986816, 0.56103516, -3.1484375, -0.09350586, -3.8417969, 1.6699219, -1.1904297, 1.3310547, 0.9995117, 1.96875, -2.7382812, -1.4160156, 0.0010070801, -1.6240234, 3.1074219, -0.035827637, 2.3476562, -1.5625, -0.34033203, 1.8994141, -0.14355469, -1.9902344, 1.3212891, -1.9257812, 0.5859375, 0.066345215, -2.1425781, 1.3310547, -1.9667969, -2.1953125, 0.36328125, -0.28710938, -0.60595703, -1.8037109, -1.4443359, 0.8041992, -0.46411133, -0.08843994, 0.35424805, 2.1308594, -3.4726562, -1.0419922, 0.32592773, -0.038024902, -1.7138672, 2.0253906, -0.15734863, 0.17626953, 2.2402344, -0.86572266, 1.5429688, 0.3100586, -5.0976562, 2.6425781, 4, 0.7680664, 0.67333984, -2.2890625, -1.1025391, -1.3222656, 0.39770508, 3.7246094, 0.8022461, 3.2519531, -1.6855469, -0.013755798, 0.7734375, 2.1269531, -0.5332031, -0.92626953, -1.59375, 4.078125, -2.3730469, -0.57373047, 1.8369141, 1.7246094, -4.203125, -1.1025391, 0.31298828, 0.070739746, 1.6298828, 1.0625, -0.74853516, 1.2099609, 1.1386719, 1.6064453, 1.4755859, 2.1699219, -1.2363281, -3.5058594, -0.0028839111, 1.1435547, 1.7470703, 0.89208984, 1.0136719, 1.4257812, 1.5244141, 1.3681641, -1.8125, -0.12902832, 0.39624023, 1.4716797, 0.36108398, 2.3808594, -1.6757812, 0.47070312, 0.52246094, -0.32592773, 0.57714844, -2.8808594, -0.32373047, 3.4101562, 0.6386719, 0.21582031, -0.28125, 0.064208984, 1.0039062, -2.21875, -1.0058594, -0.5839844, 0.89404297, 0.58447266, -1.2900391, -0.6035156, -1.6894531, 1.6738281, -0.04763794, -3.90625, 0.1619873, 1.3476562, 0.02633667, -0.85546875, -0.56347656, -1.1972656, -1.4257812, 3.6464844, -0.640625, -0.28588867, -0.2208252, -1.7402344, 2, -0.049682617, -1.0859375, -1.2197266, 0.7548828, -0.81396484, 0.72265625, -1.1318359, 2.3320312, 2.6367188, -3.6484375, 0.13342285, -0.75634766, -1.4833984, 2.5019531, -1.3320312, -2.4453125, 1.3330078, 0.8203125, 3.65625, 0.34375, 3.8828125, -2.7558594, -1.6015625, 3.2851562, 0.0134887695, 1.3222656, -0.6201172, -4.7070312, 0.006866455, -2.5898438, -1.0976562, 1.9951172, -0.5932617, -0.47973633, 0.38671875, 0.49536133, -2.515625, -2.2285156, -0.1352539, 0.009864807, -3.3574219, 0.8725586, 0.46191406, 0.6347656, -1.3017578, -3.6074219, -0.7895508, -0.36547852, 0.6328125, 3.5097656, -0.9003906, 1.6689453, -2.0820312, -0.90478516, 0.020858765, 0.91748047, -0.69628906, -0.6352539, 0.18188477, -0.66064453, 2.2636719, 1.6201172, 1.2861328, 2.2578125, 4.0898438, -0.12695312, -0.67333984, 1.7021484, 1.1523438, 3.2910156, -0.5698242, -2.9003906, -0.36132812, 0.75634766, 1.4755859, -1.8378906, -0.87841797, 1.7666016, -2.453125, 0.6777344, 1.4755859, 0.01058197, 0.53271484, 1.7695312, -3.8222656, 0.18139648, 1.9941406, -3.8496094, -2.6054688, -1.3242188, -0.9580078, -1.9580078, 1.1669922, -0.94433594, -1.1464844, -2.0136719, -1.9130859, -1.3847656, 1.0771484, 2.5410156, 2.6386719, 0.8261719, -1.6728516, -1.4023438, -0.61083984, -1.1689453, -0.27905273, 1.8779297, -1.0478516, -0.5703125, 2.4863281, 3.0585938, -1.5439453, -0.117126465, 0.7597656, -0.7807617, 0.19421387, -1.9423828, -1.3808594, 0.8066406, -2.3300781, 1.2714844, 0.3095703, 1.8056641, -2.2246094, -0.24707031, 1.2041016, -0.20422363, -2.3222656, 1.4863281, -0.7739258, 0.16687012, 1.53125, 1.1992188, 1.5634766, -0.0496521, 1.2373047, -0.69970703, 2.9726562, -2.2089844, -1.1425781, -0.7558594, -0.5371094, -1.4550781, 0.5083008, 2.3261719, 0.26245117, 0.39111328, 1.6630859, 1.6738281, -0.5444336, 2.4296875, 0.51953125, -1.8574219, -0.20019531, 0.70654297, -0.42651367, 1.78125, -1.1523438, -2.3105469, -0.9121094, 3.6582031, -0.7451172, 1.8203125, 0.6972656, -1.7539062, 0.03488159, -1.6054688, -1.2636719, -1.0253906, -1.5019531, 1.1132812, -0.37524414, -0.40625, -2.53125, 3.984375, 1.7490234, -0.96484375, -0.8183594, 0.47460938, -0.08117676, -0.27856445, 2.6855469, -0.23901367, 0.19543457, -0.38989258, -0.9111328, 1.5771484, 0.7866211, 1.9541016, -0.023742676, -1.3525391, -1.2724609, -1.3642578, 3.8632812, -3.515625, -0.9116211, 2.125, 0.6826172, 0.95654297, -3.0742188, -1.0595703, -1.1152344, 2.4335938, -1.4257812, -0.004043579, 1.8935547, -0.9199219, -2.4101562, -2.6386719, -0.46606445, 0.9951172, -1.9560547, 0.091918945, -1.4541016, -2.4296875, -0.16564941, -0.56689453, -0.30664062, -0.8129883, -0.86083984, -0.82373047, 1.1591797, 0.2290039, 0.04953003, 1.9248047, 0.89941406, -2.1347656, 0.2277832, -0.52783203, -2.765625, -2.5253906, 0.48291016, -0.6347656, 1.1992188, 2.4433594, -1.7050781, 1.3339844, 2.7636719, 0.4543457, -1.6767578, -0.4013672, -0.8925781, 0.006580353, 3.859375, -2.6035156, 0.74072266, -0.4013672, -1.1044922, -0.5551758, -1.8310547, 0.15429688, 1.1552734, 1.9414062, -1.3369141, 0.83984375, -0.064941406, -0.4428711, 1.0732422, -0.04159546, 3.4179688, 0.24133301, -2.1464844, -0.7504883, -2.375, -0.24194336, -0.7919922, -2.4511719, -0.75878906, 1.1113281, 0.95654297, -0.17956543, -1.3525391, 1.1279297, 1.3173828, 0.7758789, -1.921875, 0.09051514, 0.6147461, 3.4199219, -0.3544922, -1.2207031, -4.1484375, -4.0585938, -1.2744141, 1.1416016, 1.2041016, -0.25561523, -2.1953125, -1.2158203, 1.8476562, -1.3164062, 1.0654297, 0.8251953, 2.6503906, -1.9199219, 1.1386719, 1.7431641, 1.4287109, -0.2397461, -0.08630371, 1.8916016, -1.0888672, 3.3105469, 1.84375, -0.93408203, -0.5336914, -0.08569336, 2.7050781, -0.14892578, -2.2109375, 1.5976562, -4.234375, -0.91015625, -1.9257812, -1.0644531, -3.2324219, 1.2021484, 1.453125, 0.46118164, -0.76171875, 1.4384766, -0.2565918, 0.6801758, 1.8125, 0.36401367, -1.6142578, 0.22802734, -0.5131836, 1.0107422, 3.5292969, -0.017333984, 0.98046875, 0.20874023, 1.0097656, -0.3486328, 1.1962891, 0.68066406, 1.4248047, 2.7617188, 1.1142578, 3.5136719, -0.10852051, 2.4882812, 0.42211914, 1.4130859, 1.1376953, -0.82714844, -0.15698242, 2.1484375, 2.5839844, 0.14697266, -0.36083984, -0.77001953, 1.1103516, -0.37695312, -1.9345703, 0.04916382, 2.1210938, 0.2355957, 0.41479492, 0.95458984, -0.017669678, -2.4355469, 1.4609375, -0.5024414, 0.9760742, 0.59472656, -0.1595459, 1.0263672, -0.29492188, -1.6103516, -1.7851562, -0.11663818, 1.4541016, -2.625, 1.6171875, -1.0898438, -0.96533203, -0.17712402, 2.2148438, 2.0234375, 0.62939453, 0.80029297, 0.8178711, 3.03125, 1.8027344, -0.67285156, 0.25, -1.5009766, -0.00541687, 3.0957031, 1.9140625, -0.8876953, -1.1738281, 0.8803711, -1.2929688, -2.8398438, 2.2578125, 0.3840332, -1.0673828, 0.21740723, -1.0566406, 0.71484375, -0.5576172, 2.0722656, -3.1015625, 1.6396484, 1.0830078, -0.7006836, 0.44091797, -0.47973633, -2.4804688, 1.9511719, 0.7866211, -0.02154541, 2.6269531, 0.09729004, 0.4958496, 1.3417969, 0.6479492, -1.2929688, 2.8535156, 0.2626953, 2.4882812, 1.2724609, 0.43969727, 0.8378906, -1.1328125, 3.0195312, -0.44921875, 1.4296875, -1.1289062, 1.3925781, 1.6279297, -2.2285156, -0.1472168, -1.6650391, -0.9394531, 0.55615234, 1.0488281, -0.4345703, -2.4667969, 1.6669922, -0.31298828, -0.2775879, 1.5859375, 2.4492188, 0.15979004, -0.0010433197, -1.0341797, -0.75927734, 0.4104004, -1.1777344, 1.1552734, -1.4121094, 0.33398438, -0.7451172, 0.6035156, 1.0898438, -0.28833008, -0.4892578, -0.7871094, -1.3867188, -0.23522949, 1.5917969, 0.2614746, 1.6416016, 0.54785156, -1.6152344, -0.49243164, 1.9951172, 1.5869141, 0.38720703, -2.0195312, -3.0566406, -0.09576416, 0.6542969, 0.07739258, 2.7011719, 4.0039062, -0.033599854, 1.2734375, -2.1972656, -2.8125, -2.921875, -1.2070312, 0.6713867, -0.14221191, -0.011772156, -0.8598633, -0.01586914, 1.4599609, 0.5605469, 0.23864746, 0.43188477, -1.0673828, 1.6064453, 0.21069336, 0.87646484, 0.9975586, 0.2319336, -0.25805664, 0.5361328, 1.9541016, 1.2197266, 0.4230957, 1.3896484, -0.53222656, -3.5742188, 0.12634277, 0.15283203, 0.9169922, -1.4755859, 1.3964844, 1.8261719, -0.2364502, -0.43945312, -3.7832031, -2.5136719]}, "B073KV4WLJ": {"id": "B073KV4WLJ", "original": "Brand: GasOne\nName: GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb\nDescription: \nFeatures: Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\nSave money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\nEASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\nSafety 1st - top quality propane hose adapter\n", "embedding": [1.0244141, 1.6533203, 0.04788208, 0.41992188, -0.3425293, -1.2802734, 0.7089844, -0.42260742, 0.5234375, 1.2275391, 2.1835938, 1.5273438, 0.1451416, -1.3242188, 0.15881348, -0.45751953, -0.203125, 0.62646484, 1.8535156, 2.4589844, 3.09375, 1.3300781, 1.9726562, -0.9277344, 0.04849243, 0.9160156, 2.0058594, -2.3125, -2.5078125, 0.7158203, 0.61572266, 0.16918945, -0.5649414, 0.40625, -0.38916016, -2.1210938, -1.015625, 0.06365967, -4.5273438, -2.4414062, -0.9501953, 3.1640625, 4.140625, -0.43896484, -1.109375, 0.88378906, 2.4726562, 0.4716797, 0.78027344, 0.70654297, 0.47558594, 0.68603516, -0.10864258, 0.49194336, 1.0625, 1.8554688, 1.7089844, -3.4902344, 0.8417969, 0.9555664, 2.2421875, 1.0488281, 0.049438477, -0.49560547, 0.2529297, 1.3388672, -2.7363281, 0.40356445, -1.5029297, 0.59814453, 1.359375, 1.3320312, -0.56591797, -1.109375, -4.0429688, 1.4873047, -4.953125, -0.52734375, 1.1396484, -0.5332031, -1.0849609, 1.2285156, 1.3222656, 0.23522949, -0.671875, -0.5029297, -1.5664062, 2.3691406, 1.2451172, 1.1865234, -3.3457031, 4.0898438, -2.3496094, -2.28125, 0.34277344, -0.6118164, 0.34399414, 3, 2.9238281, -0.08251953, -0.22790527, -1.0107422, -1.0419922, 2.0527344, -1.0839844, -1.1474609, 0.076660156, -0.9921875, -1.8076172, 1.1318359, -0.52783203, -0.49145508, 2.2929688, -1.9296875, -0.37451172, -3.46875, 0.9375, -0.7788086, 2.3476562, 0.13085938, 3.2597656, -0.27661133, 1.3398438, 0.4580078, 1.8212891, 1.5068359, -1.1298828, 0.14172363, 1.1210938, -0.033355713, 0.04827881, -0.2614746, 2.6484375, 0.5498047, 1.0097656, -1.8710938, 0.03881836, -2.7011719, -1.7080078, -1.5742188, -4.2578125, 1.0976562, -0.008018494, -0.47338867, -3.5566406, 0.10876465, -3.0273438, -0.84472656, 0.8984375, -1.7265625, 0.9873047, -3.4199219, -2.3710938, -1.9951172, 2.8652344, 0.36157227, 1.5205078, -1.5126953, 1.3671875, 2.5761719, 0.6899414, 0.97509766, -1.6181641, 0.9707031, -0.8979492, -2.5507812, 2.0859375, 0.2878418, -2.5976562, -0.9975586, 0.1171875, -0.10345459, 1.2128906, 0.70214844, -1.3095703, -1.9091797, 0.8984375, 1.3378906, 0.6669922, 0.6567383, -3.3652344, -2.2246094, -0.4387207, -3.0039062, 1.2089844, -0.44848633, -3.4921875, -1.1894531, -0.1126709, -0.65283203, -1.0371094, -0.084472656, -0.20751953, 1.2177734, -0.18762207, -1.4970703, -2.8457031, 0.24230957, -0.10217285, 3.0605469, -1.5302734, -1.0566406, 1.6074219, 0.08166504, -1.8662109, -1.7802734, 3.078125, -1.1054688, -1.2402344, 2.3535156, -1.1923828, -0.11853027, 2.5273438, -1.0664062, -0.29882812, -1.9775391, 2.7363281, 2.453125, 0.7363281, -0.1875, -1.0478516, -1.0429688, 1.5039062, -0.8618164, 1.3457031, 0.65185547, -2.0214844, 0.58740234, -1.3583984, -0.8339844, 1.5751953, 1.8710938, 1.0820312, 0.87646484, -0.4321289, 1.9726562, -0.06555176, 0.6611328, 1.2773438, 2.3300781, 2.2832031, 1.109375, -2.890625, -2.2363281, -1.8369141, 1.3701172, -0.6010742, 1.53125, 3.9492188, -0.34545898, -0.13806152, 0.21154785, -2.109375, -1.4365234, -2.5625, 0.14868164, 0.5805664, 2.734375, -0.40893555, -0.32543945, 1.6347656, 0.8496094, 1.5029297, -0.06628418, 0.4543457, 0.12072754, 0.9555664, -1.9345703, 0.59472656, 1.3730469, -0.34936523, 1.7412109, 2.4980469, -3.2929688, 0.22192383, 1.5273438, -1.4101562, 2.1132812, 1.5087891, 0.47070312, 2.6601562, -2.2480469, 1.0419922, -4.0585938, 2.5917969, 2.1601562, 3.5390625, -0.2310791, -1.8867188, 1.2822266, 2.7753906, 0.3527832, -1.203125, 1.9814453, 1.8964844, 0.7792969, 1.0625, 0.4621582, 0.72216797, -1.34375, 0.021774292, 0.8305664, -0.8198242, 0.8691406, 3.46875, 0.8305664, -0.19335938, 0.49560547, 2.0039062, 0.17492676, -0.28857422, 0.016967773, -1.5966797, 0.81591797, -1.3964844, -0.030715942, 3.4003906, -0.3857422, 0.07318115, 1.9433594, 1.421875, 0.16967773, 2.5605469, -0.75927734, 0.8671875, 1.4394531, -0.92333984, 0.7270508, 0.7285156, -0.26293945, 0.95166016, -1.7246094, 1.4931641, -1.1298828, -0.24121094, 3.2617188, -1.2275391, -2.453125, 1.2314453, -0.9482422, -1.3828125, -0.39257812, -0.018829346, 2.7363281, 0.47973633, 1.4189453, -0.8095703, 0.5522461, -0.71484375, -3.046875, -0.52197266, 2.2792969, -2.3183594, -0.9707031, 0.017929077, -0.17138672, -0.5029297, 2.8027344, 0.27905273, 0.28686523, 2.0683594, 0.34350586, -1.4560547, -0.08703613, -2.40625, -1.9726562, 3.2167969, -3.1484375, -0.40673828, -2.5839844, 0.028778076, -1.7265625, -2.0175781, -1.8212891, -2.0410156, 0.98095703, 0.6176758, 1.3261719, 0.19897461, 0.90185547, 1.3818359, -1.6914062, 1.5371094, -1.7392578, -3.3808594, -1.2802734, -0.062347412, -0.30126953, 0.40625, -3.3242188, 2.0839844, 0.3544922, -1.3076172, 0.021484375, -0.21826172, -1.2236328, -2.2089844, 2.7128906, -2.6582031, -0.3178711, 2.1074219, 0.1328125, -2.4902344, -0.13024902, -0.22314453, -1.8076172, 0.03100586, -1.7939453, -1.0253906, -1.3574219, -1.7958984, 0.3630371, 0.8823242, 0.009590149, -0.72314453, -1.5371094, 0.22460938, 3.0058594, -0.7368164, 1.6005859, -2.296875, 0.79541016, -4, -1.703125, 1.4121094, 0.23327637, 3.8183594, 0.7011719, 1.9746094, 0.5439453, 1.796875, -0.9838867, -0.90283203, -1.4765625, 2.6660156, -2.3183594, -0.24035645, -2.7421875, 2.0234375, -3.2285156, -0.28466797, 1.2226562, -0.27026367, 2.75, 0.49609375, 0.3479004, 0.13586426, 1.0625, 0.6269531, 1.0380859, 1.6347656, 2.3535156, 3.3457031, 0.5708008, 0.26342773, 0.7006836, 0.19335938, 0.5805664, 1.9980469, 0.16748047, -1.2763672, -2.09375, 0.5961914, 0.21142578, -0.48706055, 0.515625, 1.2607422, 1.0917969, 1.7167969, -0.4597168, 0.9897461, 0.71728516, -0.29370117, -1.2246094, -0.2602539, 0.91259766, 0.4165039, 1.4160156, -0.5288086, -0.30004883, -0.37231445, 0.3515625, 2.3574219, 1.0869141, 0.3803711, 0.6894531, 3.0351562, -0.5654297, 2.2929688, 0.37548828, 1.4111328, -0.48120117, -0.14343262, -1.6474609, -2.8222656, -1.0869141, -2.6972656, 0.359375, 2.7929688, 2.1777344, -1.3330078, 0.96240234, 0.07470703, 1.6425781, 1.5458984, -0.9604492, -1.3408203, -2.7460938, -1.5, 0.44018555, -0.5004883, 3.0273438, 0.73291016, -2.2519531, -1.1533203, 0.25878906, 1.515625, 0.11706543, 0.1352539, -0.94433594, -2.1484375, -2.75, 1.0380859, -0.70947266, 2.09375, 0.38720703, 1.4648438, 2.25, -3.2421875, -0.73339844, -0.51953125, -3.7636719, 0.7949219, -1.9892578, 2.1210938, 3.546875, -0.53808594, -0.21850586, 0.36499023, 1.1826172, -2.0292969, -1.3066406, 0.50341797, 2.3417969, -2.2929688, 0.027282715, 2.4570312, 1.1611328, -1.6201172, -1.5810547, 0.27807617, -1.6962891, -1.6396484, -0.7988281, -2.7421875, -0.61376953, 0.3046875, 1.2519531, -2.0996094, -0.9458008, 1.9960938, -1.4228516, -0.89941406, -3.1660156, 0.99316406, -0.19445801, -0.36889648, 0.08215332, 2.5253906, 2.4335938, -2.9492188, 1.171875, -1.3935547, 2.75, -0.7602539, -2.1992188, -0.70654297, -0.34326172, 0.65283203, -0.2541504, -2.4882812, -2.4570312, -0.2084961, 0.42895508, 1.03125, 1.2685547, 1.0810547, 0.8935547, -2.2714844, 0.1907959, 0.6098633, -2.2597656, -0.5024414, -1.8164062, 0.9921875, -1.8847656, 0.47070312, -3.1503906, -0.26635742, 0.7783203, 0.38671875, -2.0898438, 1.1376953, 0.74853516, 1.1503906, 0.5444336, -0.14660645, -0.029769897, -0.06866455, 3.9628906, -0.7651367, -0.6459961, 0.22375488, -0.22485352, 1.2597656, 1.3623047, 0.6660156, 0.97265625, 0.0032844543, -0.8847656, -0.84814453, -0.76220703, 0.85009766, -1.6474609, -0.92285156, -0.8984375, -3.0507812, 4.8242188, -1.5908203, 1.0146484, -1.7753906, -1.8330078, -2.2871094, 2.2890625, 2.5644531, 0.17138672, 0.59472656, 0.21142578, 2.5, 3.0332031, 1.2216797, 0.91503906, 0.46777344, -0.3100586, -1.4384766, -0.57470703, 1.4658203, -0.115234375, -0.14953613, 0.75634766, 0.52197266, 3.3417969, 3.4179688, 2.0234375, 0.16345215, 0.28735352, 0.07720947, 0.6386719, -2.2011719, -0.036193848, -0.3251953, 2.953125, -0.99560547, -2.1933594, 1.8095703, 2.6660156, 0.91503906, 1.7148438, 1.3378906, 1.0009766, -0.7890625, -2.1660156, -1.2880859, -0.52246094, 0.22229004, -1.0205078, -1.4619141, 1.4033203, 0.6557617, 1.5371094, 1.2236328, 1.4189453, 0.3256836, -0.2685547, -0.2993164, -1.6132812, -2.8535156, -0.22167969, -3.5527344, 0.7402344, -1.9072266, 3.0019531, 1.1923828, 0.10211182, -0.5239258, -1.5029297, -1.4023438, 2.109375, 1.8964844, -0.45483398, -0.7685547, 3.2695312, 0.9160156, -0.8647461, -2.140625, -1.4404297, -0.71972656, 1.2900391, 2.7285156, 1.5888672, -0.88671875, -0.52685547, -2.0175781, -4.84375, 1.2236328, 0.8671875, 1.1230469, -0.0030155182, -1.8759766, -1.3417969, 0.25952148, -1.2539062, -0.9321289, -2.75, 0.7910156, -2.1640625, -0.8847656, 0.23620605, -0.019119263, -0.5957031, -0.043823242, -1.3505859, -1.3681641, -0.07165527, -1.2519531, -3.4082031, -0.7836914, -0.9433594, -1.3935547, -0.30444336, -0.6430664, -0.58496094, 1.4326172, 1.5722656, -2.2597656, 1.5664062, -3.1855469, 1.0527344, 1.0341797, -1.984375, 1.9228516, 2.0546875, -0.48535156, 2.1035156, 2.5566406, 3.0507812, -2.1308594, -0.6616211, -0.16662598, -0.5, 0.51953125, -0.4501953, 1.5185547, -1.0761719, 1.0146484, 3.3222656, -0.26513672, -1.8847656, -0.5209961, 0.14941406, 0.6015625, -1.8076172, -0.3239746, 0.7944336, -0.09387207, 1.3779297, -1.6337891, 1.0917969, 0.24511719, -0.4104004, 0.79296875, 0.38330078, -2.4980469, 1.7802734, 1.3457031, -1.2763672, -4.3242188, 0.62939453, 3.7421875, 2.1152344, -0.51123047, -0.2841797, 1.4130859, -1.6054688, 0.56689453, 0.04840088, 1.3564453, 0.84765625, 1.7529297, -1.7519531, -0.42944336, 2.4550781, -0.15319824, 0.09893799, -0.30517578, -1.2744141, -0.21374512, -0.8676758, 2.8769531, -1.9003906, -1.046875, -1.9677734, -0.033996582, -1.9707031, -0.14855957, -0.21826172, -3.171875, 0.88671875, -0.20959473, -3.5175781, -4.9726562, 2.7851562, 0.17272949, -0.13415527, 0.53515625, 2.3808594, -1.6513672, -1.9980469, 0.10253906, 1.9033203, -0.08117676, -0.3269043, -1.8847656, 0.5029297, 1.1083984, -2.7792969, 2.4785156, 1.0322266, 1.1064453, -0.2220459, -0.4650879, -0.3095703, 2.2109375, 0.82177734, 1.2402344, 3.1777344, -0.26171875, 1.578125, 1.2099609, 0.045898438, 0.91503906, -1.2646484, 0.5415039, 1.4960938, -0.004310608, 0.79052734, -1.6777344, -0.93310547, -1.5722656, -1.9228516, -0.8984375, 1.4970703, 1.9111328, -4.7578125, -0.084472656, -1.9189453, 0.32226562, -0.7236328, 0.7441406, -1.0068359, -0.75683594, 0.10913086, 1.03125, 1.2607422, 1.6894531, -1.2099609, 0.22790527, -1.7900391, 1.9228516, 1.7822266, 0.25585938, -3.90625, -1.2451172, 0.51171875, 0.5625, -0.13085938, -0.062683105, 0.67578125, 1.6962891, -0.29638672, 1.0830078, 0.97314453, -1.3388672, 0.7211914, -1.8574219, 3.1699219, 2.9511719, -0.1730957, 2.9609375, -0.6826172, -1.1035156, -3.3632812, 1.5458984, 1.8691406, -1.1650391, -0.58740234, -2.2949219, 1.4550781, -3.0058594, -0.5576172, -2.734375, -2.1035156, -0.68847656, -0.08746338, -0.034301758, 0.77490234, -0.87939453, 0.23303223, 1.6455078, -0.71484375, 0.103271484, 2.6367188, 0.7871094, 0.49609375, -0.9614258, -0.6298828, 0.1105957, -1.2890625, 1.4931641, -1.6308594, 0.6723633, -1.5732422, 3.21875, 1.4287109, 0.12432861, 2.0351562, -0.38232422, 0.7836914, -0.27905273, -0.7133789, -0.3166504, -1.5322266, 0.9301758, -0.27392578, -0.23156738, -0.87353516, -1.0019531, 1.9609375, 1.3623047, -2.5390625, 0.90527344, 0.010665894, -1.6279297, 1.4677734, 1.3681641, -1.1533203, -1.1728516, -0.31030273, -0.007549286, -3.6503906, 1.1875, -0.6503906, -0.34985352, -2.6113281, -0.6821289, -1.6533203, -1.1425781, -0.8803711, -0.36083984, 0.79052734, -1.6318359, -0.40649414, -0.5996094, -0.6113281, 1.2080078, 0.56689453, -0.30200195, 1.4697266, -0.21582031, -0.61035156, 1.8818359, -1.8369141, -0.9536133, 1.6416016, 2.15625, 2.1601562, 1.9775391, -2.0722656, -0.91259766, -0.6816406, -2.6367188, 0.055236816, -0.051452637, -1.6962891, 1.4785156, 1.7822266, 3.1289062, -1.5429688, -0.8232422, -1.0673828, 1.8007812, 1.9277344, -1.9707031, 1.7304688, -0.097473145, -0.49829102, 0.5805664, 4.6445312, 3.2792969, -1.3789062, -1.1582031, -0.5566406, -2.1484375, -2.6621094, -0.45629883, -0.73535156, -1.4384766, 0.8769531, 2.7441406, 3.2753906, -1.2353516, -0.80908203, -0.81396484, 0.40673828]}, "B003T08FV4": {"id": "B003T08FV4", "original": "Brand: Hiland\nName: Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver\nDescription: \nFeatures: seasons: All year long\n", "embedding": [-0.5732422, 0.10498047, 2.0371094, 0.67578125, -0.34033203, 0.21679688, 1.2285156, -2.1289062, -0.52490234, 1.6572266, 2.3300781, 2.4863281, -1.0576172, -3.0683594, 0.09564209, -2.1113281, 2.2539062, -0.5107422, 1.3222656, -1.3925781, 1.7851562, 0.8779297, 2.2988281, -1.6855469, 1.7773438, 0.53466797, 5.9921875, -1.8632812, 0.34423828, 1.1484375, 0.24926758, 1.5058594, -0.21362305, 2.4648438, -2.0078125, -1.5742188, -1.2119141, 0.9970703, -3.2226562, 2.0800781, -1.7705078, -2.0527344, -0.92578125, 2.1816406, -1.1601562, 0.10675049, 1.2861328, 0.69677734, -0.73046875, 0.4177246, -0.11639404, 0.1038208, -1.3261719, 0.26171875, -1.2880859, 0.44067383, -1.5722656, -2.1328125, 0.6904297, -0.11395264, 0.61376953, -1.625, -1.4238281, 1.3027344, 0.33764648, 1.8730469, 0.25878906, -0.82177734, -0.9379883, 1.1923828, 1.2792969, -1.3671875, -1.5703125, -0.1685791, -0.19519043, -0.6533203, -3.2753906, 1.0644531, 0.60302734, -1.5244141, -1.0048828, 0.45825195, -0.52441406, -0.64746094, -1.1796875, -0.7104492, -0.78027344, -1.4384766, -0.21325684, 1.2148438, -0.28857422, 1.140625, -0.70410156, -5.015625, 0.3154297, -2.1484375, -0.22436523, -0.29736328, -0.6928711, 0.7216797, -0.1439209, -0.32495117, 0.8100586, -1.0742188, -0.50683594, 0.49267578, 1.9775391, -0.02029419, -1.9882812, 0.7080078, -2.2480469, -0.22399902, 1.5283203, 0.7050781, -1.0751953, 0.7915039, 1.5332031, 3.1230469, 4.1328125, 1.8398438, 3.7460938, -1.0097656, 1.5957031, -0.37817383, -1.0644531, 0.20861816, 0.095825195, 0.50390625, 1.5742188, -2.4472656, 2.6269531, 0.75683594, 1.7685547, 0.48999023, 1.1357422, -0.8232422, -1.1699219, -0.11529541, -2.515625, -1.8427734, -0.21032715, 0.71484375, 1.3134766, 0.5620117, -4.2109375, -2.1699219, -0.54345703, 0.20458984, -1.9306641, -0.0395813, -0.59765625, 0.012199402, 0.20056152, -1.0273438, -0.21679688, 0.2548828, 0.41308594, -1.0498047, 2.3261719, 1.859375, 0.6743164, 0.7973633, -1.9775391, -0.1459961, -1.2226562, 0.265625, 0.7866211, 0.71777344, 0.01739502, 2.4277344, -0.89208984, -1.1074219, -0.5605469, -0.48754883, 0.8725586, -0.4050293, 0.22558594, 0.9609375, 0.33496094, -0.07885742, -0.7241211, -0.72216797, -1.2275391, -0.35253906, 1.2617188, -2.3632812, -1.0898438, -2.5585938, 1.140625, -1.4238281, 0.66503906, -0.2614746, 0.11657715, 0.20593262, -0.84716797, -1.7998047, -3.3710938, -2.2089844, 2.2578125, 0.51904297, -0.60791016, 0.04525757, -1.2011719, -1.3515625, -0.96875, -2.7148438, 1.0292969, -0.8925781, 1.8193359, 1.2607422, 2.1835938, -0.484375, 1.4873047, -0.3696289, 0.98095703, -2.7636719, 2.7617188, -0.5, 0.73535156, 2.6738281, -0.09008789, 1.9335938, -1.3613281, 0.22937012, -0.52246094, -0.089782715, 1.0234375, 1.0605469, -2.1035156, -0.8413086, 2.1621094, 2.1171875, 0.40576172, 0.75634766, -0.21313477, 2.6699219, 1.6376953, -0.09088135, 0.31567383, 1.0976562, 1.1894531, -0.2064209, 0.0758667, -0.46362305, 0.25390625, 1.4052734, -0.26879883, 0.64208984, 0.51953125, 0.38964844, 0.3395996, -0.025238037, -0.5566406, 0.068847656, -0.7138672, 1.4091797, 0.56884766, 0.9667969, 1.0498047, -3.5488281, 2.1445312, -0.41845703, 0.27001953, 0.6196289, 0.07873535, -0.86328125, 3.3476562, 1.0732422, -1.2451172, 0.14294434, -1.1689453, 0.76416016, 1.0341797, -1.3652344, 1.765625, 0.94970703, -2.0214844, 3.1464844, -1.0390625, 0.5522461, 0.8154297, 0.0010690689, 2.203125, -0.30029297, 0.56152344, 0.4519043, 0.29736328, 0.03656006, -1.8984375, -0.19958496, 3.3398438, -0.8833008, -0.7270508, 1.9755859, 0.15991211, 1.6699219, 2.2910156, -2.3398438, -1.4677734, -1.359375, 2.5722656, 1.5117188, 0.43310547, 1.2158203, -2.9667969, -1.2949219, -0.8359375, -2.0097656, -0.18261719, 1.0703125, 0.40307617, -2.859375, -3.296875, 0.65283203, -3.2128906, -0.60791016, 2.1699219, -3.6132812, 1.4140625, -0.328125, -1.1826172, 0.0017271042, 1.0283203, 0.34692383, 0.01777649, 0.5551758, -1.7236328, 0.96240234, 0.8959961, -0.49291992, -0.23937988, -0.4572754, -0.32788086, -2.8105469, -2.0644531, -0.8666992, -1.3847656, -2.4589844, 2.1386719, -0.9604492, 0.3479004, 2.3339844, -0.112854004, 0.80859375, -0.7524414, -1.6240234, 0.4091797, 1.2861328, -0.43920898, -0.52685547, -0.40649414, 0.22924805, -2.5410156, -4.578125, -1.0585938, 2.1621094, -0.007129669, 0.23266602, -1.8642578, -0.75878906, 1.5566406, -1.0585938, 0.5180664, -0.74902344, -0.30297852, -1.1982422, 1.9355469, -4.1484375, 2.0605469, -0.8754883, 2.109375, -0.9868164, 1.3300781, -1.2148438, -0.3881836, 2.2285156, 0.42895508, 5.1132812, 1.3808594, 1.7900391, 0.56103516, 2.0703125, 0.69140625, -1.1777344, -1.9306641, 0.80615234, -0.6645508, -0.75634766, 1.4072266, -2.3457031, 0.4934082, -2.046875, -1.0810547, 1.4042969, -0.8276367, 0.5541992, 0.0670166, -1.1660156, 0.37304688, -2.5585938, -0.6230469, 0.80078125, 1.2568359, -1.6796875, -0.16760254, -1.5644531, 0.3022461, -0.6611328, 2.1328125, 1.2041016, 0.20153809, 2.3027344, -1.1210938, 1.9013672, -0.4189453, -4.0898438, 2.7871094, 1.9238281, -0.21374512, 0.04046631, -1.9892578, -2.0234375, -0.9399414, 0.6982422, 2.9433594, 3.203125, 2.5878906, -0.43798828, 1.7285156, 0.56396484, 1.5263672, -1.2402344, 0.4790039, -1.6894531, 1.3994141, -1.7167969, -3.0234375, 1.2460938, 0.8461914, -3.3535156, -1.8974609, 1.1347656, 1.0927734, 1.6953125, 0.5625, -0.9458008, 0.9013672, 1.2714844, 1.6572266, 0.16955566, -1.1230469, -0.60253906, 0.6074219, 0.6640625, 2.1054688, 2.0175781, 0.58447266, -0.15197754, 1.0615234, -0.93847656, 1.2734375, -0.9399414, 0.8178711, 0.94140625, 1.2617188, 0.80322266, 0.08673096, -0.9716797, 0.31689453, 2.8300781, 0.55322266, -1.3623047, -3.2148438, -0.7368164, 2.4101562, 0.014076233, -0.9013672, 0.06744385, -1.2626953, 1.3544922, -0.73583984, 0.2680664, -1.5722656, -0.9067383, 0.6459961, -1.0996094, -0.05419922, 0.44506836, 2.4160156, -0.1640625, -1.1611328, -0.84033203, 1.0673828, 0.19873047, -0.6826172, -1.2578125, -1.5322266, -0.29370117, 1.7705078, -0.9951172, 0.17114258, -0.6479492, -0.27661133, 0.70996094, 0.6904297, -0.59472656, -0.30517578, -0.58984375, 0.2680664, 1.8203125, 0.09112549, 0.0155181885, 0.30273438, -2.1347656, -0.29516602, -1.9335938, -1.5068359, 3.890625, -1.8417969, -0.3083496, 2.2226562, -0.33154297, 3.5664062, -0.42871094, 2.9238281, -2.625, -2.3203125, 2.3007812, 0.19604492, 0.20373535, -2.2460938, -3.2871094, 0.29882812, -1.7177734, -1.515625, 1.6083984, 0.7583008, 0.24841309, -0.13793945, 0.5234375, -1.5839844, -1.5517578, -1.4501953, -1.5966797, -1.6855469, 0.6875, 0.087768555, -0.18664551, -1.3701172, -3.28125, 0.5078125, -0.40673828, -0.41992188, -0.5517578, -1.203125, 0.15014648, -1.3085938, 0.41308594, -1.6923828, 0.5888672, 0.08831787, -0.9213867, -0.16125488, -1.1796875, 3.6464844, -0.101135254, 0.74902344, 0.97753906, 5.40625, -1.2568359, -0.60253906, -0.5239258, 0.79296875, 2.2050781, -0.45361328, -3.1210938, -1.0537109, -1.1201172, 0.5488281, 0.39941406, 0.6557617, 0.9213867, 0.16418457, -0.7734375, 2.1503906, 0.3527832, 1.171875, 1.7792969, -1.3388672, 1.9736328, 1.4140625, -2.59375, -2.4746094, -0.68359375, -0.8388672, -0.90527344, 1.1542969, -0.040771484, -0.2854004, -0.7753906, -1.3564453, -0.41503906, 1.4541016, 2.4277344, 2.1035156, 1.3476562, -2.8066406, -1.1777344, -2.3164062, 0.32299805, 1.0058594, 1.1357422, 0.010604858, -1.0048828, 1.1826172, 2.109375, -1.6435547, -0.2277832, 1.109375, -1.5390625, -0.4206543, -1.1914062, -1.5615234, -0.73339844, -1.2783203, -0.5620117, -1.5683594, 2.6914062, -0.113220215, 0.17443848, 1.1552734, -1.3564453, -1.7792969, -0.29638672, -1.7373047, -0.23632812, 2.7050781, -0.42993164, 1.0761719, -1.8544922, 0.43164062, 1.4677734, 1.9501953, -1.828125, -0.80566406, 0.26391602, -1.0087891, -0.55078125, 0.16125488, 1.4785156, 0.040161133, 1.8369141, 3.5566406, 1.0029297, 0.46875, 1.6035156, 0.85498047, -0.5288086, 0.55126953, 1.6484375, 0.0035743713, 1.3115234, -1.5546875, -3.2246094, -1.6035156, 2.2851562, -0.36938477, 1.7841797, 0.9765625, -2.6582031, -1.2861328, -1.9140625, -1.5419922, -0.15527344, 0.28735352, 1.1835938, -1.2744141, 0.65527344, -0.8979492, 2.0332031, 2.7519531, -0.8286133, -1.6708984, -0.25683594, 0.5649414, -2.0117188, 1.1376953, -0.29956055, -1.2949219, -1.7841797, 0.9091797, 0.3466797, -0.2998047, 2.0429688, 0.9111328, -0.69140625, 1.1953125, -1.3251953, 2.8203125, -3.4277344, -1.2832031, 1.0732422, 0.78759766, 0.4987793, -1.5556641, -0.6743164, -2.1113281, -0.22290039, 0.54785156, 0.5332031, 0.75097656, -0.066833496, -2.3613281, -2.3769531, -1.3330078, -1.4726562, -0.5864258, 0.88183594, -0.48291016, -3.0644531, 0.52197266, -1.0351562, -0.031280518, 0.4543457, -0.9003906, -1.9238281, 0.9658203, 1.5048828, -0.30566406, 0.5786133, 0.8408203, -1.2099609, 0.31298828, -0.023422241, -0.61083984, -4.5273438, 0.8588867, -0.77001953, 0.8432617, 0.30004883, 0.5053711, 3.0039062, 1.9355469, 2.6230469, -1.1162109, 1.8076172, 0.44921875, -1.15625, 2.4980469, -1.1132812, 1.3066406, -0.3779297, -2.2714844, -1.2382812, 0.40893555, 1.6689453, 0.39794922, 1.484375, 0.057495117, -0.41235352, 0.12695312, -0.19360352, 1.015625, 0.8696289, 3.1738281, -0.06933594, -0.67529297, -0.45166016, -1.9892578, -1.2041016, -0.60302734, -2.7128906, -1.0712891, -0.5292969, 1.4697266, 1.7509766, 0.12261963, 1.1591797, 0.6977539, 1.1787109, -1.2382812, -0.42504883, -0.4790039, 2.1621094, 2.2714844, -0.8334961, -3.9960938, -1.8574219, -2.1484375, 2.0527344, 1.2792969, -1.6015625, -1.9960938, -2.6015625, -0.2467041, -0.95654297, 0.8105469, 0.8154297, 0.005619049, -1.1542969, 3.1269531, 1.1777344, 0.42529297, -0.013801575, -0.7558594, 2.9726562, -0.9770508, 3.1601562, 2.0214844, -0.37060547, -0.32714844, -0.6479492, 1.5751953, 0.8730469, -1.1601562, 1.9042969, -2.9277344, 0.96484375, -1.203125, -1.3935547, -1.9492188, 0.066589355, 1.2958984, 0.02722168, 0.5576172, 0.78515625, 0.24291992, 0.7348633, 1.5341797, 0.4260254, -0.3059082, 0.23132324, 0.4519043, 0.29760742, 1.6601562, 0.3605957, 2.6621094, 0.19042969, 1.0039062, -0.3876953, -0.10803223, 0.043395996, 0.4248047, 3.5820312, 3.34375, 1.9150391, 1.1962891, 2.3027344, 0.48754883, 0.58154297, 0.8383789, -2.7539062, 0.026245117, 1.4326172, 2, 0.60253906, 0.48266602, -0.76171875, 0.4716797, 0.10333252, -0.84277344, 0.30786133, 0.057922363, 0.5991211, 0.8149414, 0.55566406, 1.5507812, -2.3828125, -0.24902344, 0.9536133, 2.1074219, 1.3242188, -1.4501953, 0.9013672, 1.0351562, 0.79589844, -0.17834473, -0.76123047, 1.6650391, -1.9326172, 0.18847656, -0.16821289, -1.3310547, -0.7973633, -1.0185547, 0.8491211, 0.21435547, 0.15246582, -0.85302734, 1.7148438, 1.2080078, 0.4350586, -0.39208984, -0.6166992, 1.9267578, 0.21350098, 1.6123047, -0.44921875, -0.06829834, 0.22375488, 0.32006836, -2.2070312, 1.8798828, 1.2382812, -1.1816406, -0.31298828, -0.8076172, 1.0371094, -1.2109375, 0.38378906, -1.015625, 0.8618164, 0.5698242, -0.5683594, 0.17175293, 0.36328125, -1.0917969, 1.6181641, -0.4909668, 0.3864746, 1.3085938, -1.6376953, 0.2364502, -0.1385498, 0.5444336, -0.70751953, 1.7519531, -0.96875, 2.5703125, -1.2119141, 0.0914917, 1.2675781, 1.7832031, 1.3876953, -0.6713867, 1.1845703, -2.6582031, 2.265625, 1.2373047, -0.4584961, 0.9316406, -1.1533203, -2.3535156, 1.6357422, 1.4873047, -1.8125, -0.8930664, 2.5332031, 1.1386719, -1.6943359, 1.4873047, 2.1855469, 0.3720703, -0.0065727234, -2.7050781, -0.19189453, -1.3339844, -0.2998047, 2.0371094, 0.50439453, -1.2539062, -0.8979492, 1.6347656, 0.2578125, -1.3203125, 0.27612305, -1.7636719, -0.11138916, -0.83203125, 1.5097656, 0.48608398, -0.55371094, 0.45776367, 0.22363281, -1.3164062, 1.6152344, 1.7861328, -0.75390625, -1.2363281, -1.2314453, -1.1582031, 0.95996094, -0.37670898, 1.5185547, 2.640625, -0.6035156, 0.69628906, -3.2636719, -2.8261719, -2.5996094, -0.43164062, 0.7792969, -0.5395508, -0.453125, 0.1619873, 1.890625, 2.3085938, 0.21386719, -1.0732422, 0.25952148, -1.8115234, 0.96533203, -0.03189087, 0.31811523, -0.30786133, -0.47973633, 0.05996704, 0.9013672, -1.5068359, 2.1152344, 2.0605469, 2.890625, 1.0986328, -1.4433594, -0.8359375, 0.47436523, 0.13110352, 0.0725708, 0.8901367, 0.83984375, 0.066345215, -1.4208984, -3.5996094, -1.6328125]}, "B00TFYOC5G": {"id": "B00TFYOC5G", "original": "Brand: Chard\nName: Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer\nDescription: The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you're making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.\nFeatures: 50,000 BTU Cast Iron Burner\n18 Quart Aluminum Pot\nTwo Aluminum Strainer Baskets with Insulated Handle\n21\" Welded Stand & Dual-sided for cooking two foods at once\n", "embedding": [-4.0625, 1.4414062, 2.6464844, 0.67285156, 0.3527832, 1.3994141, 1.2910156, -0.3449707, -2.0058594, 1.0732422, 2.9707031, 2.3046875, 2.2636719, -0.5205078, 0.15673828, -2.3398438, 0.37329102, -1.3378906, 1.7080078, 3.0722656, 0.48876953, 1.5966797, 3.1621094, -0.22790527, 1.6289062, 2.3828125, 1.7822266, -1.3085938, -0.29882812, -0.57910156, 1.7773438, 0.58496094, 1.4912109, 0.66308594, -3.8535156, -1.9433594, -1.0878906, 0.84033203, -2.6875, 1.4550781, -0.7397461, -1.2324219, 3.2578125, 1.5253906, -0.7529297, -0.29467773, -1.6865234, -0.29882812, -0.20507812, -1.4335938, 1.0380859, 0.8754883, 0.034820557, 1.5917969, -4.5078125, 3.5996094, -0.29125977, -1.4824219, 2.4765625, 0.94677734, -0.21655273, 1.2197266, -1.5390625, 2.7714844, 1.3408203, -1.6513672, -0.546875, 2.125, -1.0244141, -1.078125, 1.4658203, 0.32128906, -0.48120117, -0.24890137, -1.1875, -0.2980957, -4.125, 0.95996094, 3.4628906, -0.27001953, -0.1361084, -0.5654297, 0.28173828, -2.6367188, -0.2434082, 0.50439453, -0.31884766, -0.8642578, 3.09375, 1.0722656, -0.34423828, 3.3632812, -2.2714844, -2.0585938, 4.375, -1.2236328, -0.050933838, 1.7001953, 1.4697266, 2.7265625, -2.1542969, -0.17956543, -0.3059082, 0.14453125, -1.9658203, -1.0205078, -1.859375, -1.3857422, -1.6640625, 0.9248047, -3.9863281, -0.13061523, 1.8564453, -0.042053223, 1.328125, -2.0742188, -0.25268555, 1.5244141, 3.109375, 0.84521484, 1.3798828, 0.25610352, 0.5175781, 0.7558594, 0.30322266, 0.99560547, 0.06506348, 0.5444336, 4.8710938, -1.9619141, -2.4335938, -3.1855469, 1.9414062, 0.10736084, -0.76904297, -3.0214844, -0.7866211, -2.7714844, -2.5605469, 0.10522461, -0.53271484, 0.07836914, 0.64501953, 0.63720703, -2.3222656, -1.2910156, 0.27416992, 1.0351562, 2.234375, -3.4511719, 3.5371094, -3.0019531, -0.17822266, -0.009094238, 0.8339844, -0.8930664, 0.27929688, 0.71875, 4.53125, 1.5166016, -0.7246094, -5.5664062, -2.1035156, 1.7207031, -0.15722656, -2.4785156, 1.6025391, 2.5527344, 0.11175537, 1.4980469, 2.4316406, -2.3339844, 0.31225586, -1.2675781, 0.2578125, -2.171875, -2.0722656, 2.8398438, 0.6230469, -1.1552734, -1.9882812, -2.5585938, -1.0117188, 3.1113281, -0.54345703, 0.36889648, -1.21875, -0.44018555, -0.5473633, -2.0527344, 0.32666016, 0.6044922, -0.21826172, 0.6201172, 0.53125, -1.8505859, -0.6196289, 1.9404297, 0.7832031, 0.70947266, 0.18225098, 0.41015625, -0.5288086, 0.17700195, -1.6816406, -2.1210938, 0.3852539, 0.3334961, 1.8359375, 2.7753906, 1.3027344, -1.1787109, 2.4648438, 1.0332031, -0.4309082, -0.27001953, 2.4609375, -0.27514648, 3.8632812, 0.88964844, -1.625, -0.890625, 0.47827148, 2.7695312, 1.4492188, 2.421875, -0.4489746, -1.4267578, -3.0800781, 1.1416016, 1.9199219, -0.1895752, 3.0136719, 0.9321289, -0.7861328, 3.1601562, 1.3798828, -1.4072266, -0.3828125, 1.8457031, 1.5107422, -0.31591797, -1.8955078, 1.0878906, -1.6171875, 3.53125, -1.3642578, 0.7529297, -0.016159058, -0.4387207, -1.0410156, 0.046722412, 0.020889282, -2.9902344, 0.29858398, 0.15612793, -1.0644531, 0.75878906, -0.6665039, -1.4511719, 0.91796875, 1.1152344, 0.015625, 0.48339844, 0.87402344, -1.1308594, -0.10235596, 0.38378906, -1.2480469, 0.7753906, -0.5839844, 0.86621094, 3.5214844, -1.2558594, 0.9116211, -1.0996094, -1.0107422, 0.7680664, -0.74853516, 1.5615234, -0.23754883, 0.6269531, 1.875, -0.44726562, -1.265625, 2.1640625, 1.5722656, -0.46362305, 0.3347168, 0.54345703, 4.2304688, -1.4335938, -2.0644531, 0.67333984, -1.8564453, 1.8886719, -1.2236328, 1.4013672, 0.10321045, -0.1459961, 0.58740234, 1.6728516, -0.70996094, 1.46875, -1.2460938, -2.7148438, 1.9316406, -3.3398438, -0.57128906, 2.0703125, -1.1425781, -0.082336426, 1.0107422, 0.54296875, -1.6123047, -1.8427734, 1.3144531, -1.9023438, 1.3681641, 2.7734375, -0.53271484, 1.4335938, 0.25317383, -1.9091797, -0.77490234, 1.4472656, -0.7192383, -0.99121094, -0.17834473, -1.4541016, 0.26489258, -1.8164062, -0.88378906, -0.2553711, -2.8242188, -0.7265625, -1.3701172, -0.54296875, -1.6132812, -2.5976562, -0.46240234, 0.43701172, -1.9912109, -2.3515625, -1.5166016, -4.2929688, -1.0146484, -0.022094727, -2.046875, 0.3149414, -0.064208984, -1.984375, -2.3652344, -4.3320312, 1.6191406, 0.28759766, -0.81396484, 1.1630859, -3.9082031, 0.73095703, -0.4206543, -0.80371094, -1.2333984, 0.34179688, 0.91259766, -0.3100586, 1.6494141, -0.82958984, 2.2226562, -1.046875, 1.3632812, 0.5341797, 0.62109375, -1.6484375, -0.19299316, 0.7675781, -1.9951172, 2.3378906, 0.14794922, 0.33984375, 0.8613281, 0.6611328, 0.25683594, -0.12030029, -3.140625, -0.29589844, -0.93847656, -0.5600586, -3.9453125, -3.8398438, 0.5385742, -3.5351562, -2.2070312, 1.7480469, 1.8701172, -0.048706055, -0.43920898, -0.46777344, -2.2695312, 0.21594238, -0.8227539, -1.6962891, -1.2822266, -1.3408203, -1.2460938, -1.5458984, -1.7841797, -0.09832764, 1.1601562, 0.060791016, 1.9404297, 0.7832031, 0.36669922, -0.5678711, -0.34423828, -0.7631836, 2.0839844, 1.5693359, -0.359375, 3.0078125, -0.89746094, -1.0966797, -2.8085938, -1.8789062, 2.8085938, -0.6230469, 2.4570312, 0.6035156, -0.68115234, -0.7739258, 2.3261719, -0.047851562, -0.5966797, 0.9350586, 3.8945312, -1.5175781, -0.6616211, 0.34326172, 0.97509766, 0.37353516, -1.4316406, 1.5478516, 0.8359375, 1.5742188, 3.0175781, 1.9208984, 0.5571289, 0.20178223, 1.6953125, 2.1386719, 2.0410156, 0.98876953, -1.5039062, -0.6166992, 0.028900146, 1.0957031, 0.2578125, -0.42285156, 2.2734375, 3.8828125, -0.53515625, -3.4902344, 0.88623047, -0.25268555, 1.4462891, 0.28710938, 1.4501953, -0.8066406, -0.11303711, 0.8388672, -0.84521484, -0.25097656, -2.1914062, 1.8701172, 1.2451172, -0.5419922, -0.47558594, -1.8232422, -0.013458252, 0.43017578, -1.296875, 4.0039062, 1.1621094, -0.64208984, 1.2392578, -0.91015625, -0.23388672, 1.5761719, 1.9277344, -2.1894531, -1.9003906, 0.71875, 2.4160156, -1.4335938, 0.5546875, -1.3857422, -0.41577148, -1.6962891, 2.0136719, 1.8642578, -0.85302734, -0.50341797, 0.9160156, -0.5654297, -1.7822266, -0.32861328, -0.99560547, -0.5175781, 1.4091797, 0.5678711, -0.5673828, 1.6230469, 2.0449219, -3.9511719, 1.0449219, -1.4492188, 1.5683594, 0.0037784576, -4.1992188, 0.19238281, 2.6582031, 0.5366211, 1.3330078, -1.9931641, 3.2480469, -1.0791016, -0.053253174, 2.9804688, -0.6328125, -2.6269531, -1.9433594, -1.1767578, -0.22839355, -2.4121094, 0.92626953, 3.5722656, -0.56396484, 2.2714844, 1.7441406, -1.1679688, -3.0625, -1.2119141, -1.78125, 1.7080078, -1.6318359, 1.4228516, 2.7929688, -1.7216797, -2.2148438, -0.36254883, 0.40014648, -0.72558594, 1.2607422, 2.6054688, 1.3847656, 0.87841797, -0.55908203, 0.49365234, 2.4433594, 0.19750977, 0.6533203, 0.57470703, -1.3046875, -2.234375, 1.65625, 0.87841797, -1.9335938, -0.60839844, 2.8886719, 1.09375, 1.1074219, -1.9960938, 2.8808594, 0.8251953, 0.057800293, -3.2988281, -0.796875, 1.1660156, 0.61279297, -0.7910156, -0.6699219, -1.3232422, -1.9726562, -1.7226562, 2.7441406, -0.24230957, 0.12359619, 2.6230469, -3.21875, 1.0166016, -0.36547852, -1.046875, -1.9433594, 0.81396484, -0.3540039, -0.36669922, 0.9111328, -1.6835938, -1.1669922, -0.8569336, -0.4482422, -0.40527344, 5.6796875, 1.3925781, 1.0722656, 3.1738281, -0.2861328, 0.37353516, 0.3684082, 0.15930176, 0.90478516, -0.9638672, 1.0400391, -0.36035156, 3.3066406, -0.72998047, -0.56103516, -0.9116211, 0.3996582, 0.53271484, 1.0263672, -0.62402344, 0.41088867, -1.4648438, -3.0859375, 2.6914062, -1.1103516, 1.3056641, -1.2304688, -2.0488281, 1.2441406, 0.15136719, -2.8808594, 0.42651367, 1.2900391, -0.25610352, -3.3515625, 1.4482422, 0.46606445, -2.546875, 1.3466797, -0.060424805, 1.2177734, -0.34326172, 0.6899414, -0.6694336, 1.8857422, -1.9951172, -2.0839844, 1.5361328, 2.1464844, 0.099609375, 1.2851562, 0.42285156, -1.9550781, 2.8789062, -0.60595703, -1.1298828, -2.125, 0.3046875, -1.9824219, -1.3457031, 1.1328125, -2.40625, 1.8701172, 0.49047852, 3.265625, 1.3417969, -0.90771484, -2.4921875, 0.5571289, -2.7988281, 0.82128906, -1.6650391, 1.546875, -0.22302246, -2.0351562, -1.7138672, -1.3798828, -0.32714844, 2.2734375, 1.8710938, 0.05960083, 2.1347656, 1.9414062, 1.6806641, 1.1337891, 1.2255859, -3.2304688, 0.22790527, 2.2871094, 1.6132812, 1.6669922, 0.7241211, -0.6074219, -2.2636719, 0.26000977, -1.0859375, 3.0371094, -2.8203125, -0.76123047, 0.6171875, -1.9726562, 0.36791992, -0.93652344, -0.20227051, -1.3222656, 0.9316406, -0.7294922, -1.9638672, -1.2070312, 0.4897461, -2.9375, -5.1445312, -0.8227539, 1.4013672, 1.5927734, -1.328125, 1.1933594, -1.2880859, 1.0869141, 0.05795288, 1.2490234, -3.9453125, -0.18530273, -0.36083984, -2.0410156, -1.7207031, -1.4326172, 0.63623047, 1.0019531, -0.74121094, -0.28076172, 1.1845703, -2.4277344, -1.6630859, -0.44140625, -2.7910156, 1.2431641, 1.4287109, -1.3300781, 0.25854492, 2.7988281, 1.4960938, -2.5566406, 1.2587891, -0.57470703, -0.16601562, -1.171875, -0.34326172, 0.72802734, -2.0703125, 0.55126953, -0.52441406, 0.7529297, 0.085754395, -0.5834961, 1.0341797, -0.34765625, 1.0849609, 0.6557617, -2.5214844, -0.1126709, 0.94189453, 1.7744141, 1.1132812, 0.16210938, -1.5478516, -1.1464844, -1.7929688, -0.14904785, -3.0292969, 0.50390625, -0.7939453, -1.4326172, 1.078125, -1.25, 1.7880859, 0.18664551, 0.35180664, -0.97021484, 1.0537109, -1.7089844, 3.3085938, 2.7148438, -3.0058594, -2.6113281, -1.2666016, 1.1777344, -1.3896484, 0.38623047, 0.012878418, -0.07055664, -1.5585938, -0.2397461, -0.6669922, 1.9570312, 3.8945312, 1.0410156, -2.2089844, -0.6113281, 0.15100098, 1.1210938, -0.5361328, 0.5908203, -2.0410156, -0.043304443, 4.0507812, -1.40625, -1.34375, -0.46362305, 1.078125, -0.039642334, -0.6298828, -3.15625, 1.7431641, -1.8085938, -2.5625, -2.546875, -0.25878906, -2.0761719, 0.87841797, 0.61621094, -0.31835938, 1.6064453, 2.0546875, 0.51220703, -0.45922852, 2.7714844, 2.3398438, -0.6928711, -0.23669434, -0.27294922, -0.25439453, 3.2265625, -2.1992188, 0.18151855, 0.16552734, -0.95996094, -2.8828125, 2.3613281, 0.85302734, 1.1464844, 0.5336914, 1.2822266, 2.3828125, -0.41503906, 3.2539062, -0.20935059, 0.81396484, 0.7529297, 1.203125, -1.6425781, 2.6679688, 2.1425781, -0.6459961, -1.3007812, 1.859375, -3.5039062, -1.6201172, -0.018447876, 1.0478516, 0.18078613, -3.9414062, 3.03125, -0.21032715, -1.3007812, -0.9013672, 1.0576172, 1.8710938, -1.3505859, -0.6611328, 0.44995117, 0.72265625, -2.2871094, 1.5546875, -2.4921875, -0.12524414, 3.6816406, -1.0136719, 0.12347412, -1.2773438, -2.4492188, 1.1757812, 1.3505859, 0.49389648, 0.76904297, -0.48706055, 0.8442383, 2.4238281, 1.0458984, 2.4824219, -1.8291016, -0.63134766, -2.0078125, 3.4765625, 0.8588867, -0.75878906, 2.109375, -0.46923828, -1.4853516, -2.8632812, -1.8271484, 2.2851562, 1.7353516, 0.072509766, -1.6904297, 3.140625, -1.9589844, 3, -0.8457031, 2.7636719, 0.42114258, -1.6757812, -0.70703125, -1.5019531, 1.5810547, 3.3984375, -0.25097656, -1.6386719, 0.8510742, 0.07055664, 0.10864258, 2.6582031, 0.05307007, 0.10369873, 0.7504883, 0.33520508, 1.4589844, 0.33081055, 0.19445801, 0.13195801, 0.5551758, 0.61865234, -0.83203125, -0.5366211, -0.8828125, -0.7319336, -0.6855469, 0.09222412, 0.4482422, -2.15625, -0.92626953, -0.87939453, -0.0046539307, -0.45581055, 0.2434082, 1.0205078, 2.1367188, -0.9536133, 0.92529297, 2.7480469, -1.0878906, 2.8261719, -0.2956543, 0.07244873, 0.28515625, -1.4267578, -0.17150879, -1.2197266, 0.42797852, -0.69970703, -1.9404297, -0.12915039, -1.1533203, 0.21057129, 0.6196289, 2.828125, 2.2304688, -0.56396484, 0.14428711, -1.8154297, -1.3339844, -1.6494141, 1.6572266, 3.1464844, -1.4101562, -0.5961914, -1.4160156, -5.625, -0.53564453, 2.9375, -1.7285156, 1.3808594, 3.4335938, 1.6787109, -0.3461914, -1.5957031, -1.4794922, 0.64501953, -1.7109375, 1.1425781, -0.0993042, -2.1132812, 0.20019531, 1.296875, 1.8789062, -0.44433594, -2.3789062, -1.2285156, -0.8046875, 1.1357422, -0.21569824, 0.97753906, 0.48535156, 1.1210938, 0.5366211, 1.6699219, 2.2773438, 0.034301758, 0.6791992, 3.203125, -1.8085938, -0.5161133, 0.07910156, -1.1171875, 0.29638672, -1.7324219, 1.1845703, 0.9658203, -1.0234375, -0.69384766, 0.40820312, -3.7148438]}, "B087B6RSSF": {"id": "B087B6RSSF", "original": "Brand: Chulan\nName: 5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection\nDescription: Propane has a meter that tells you how much pressure you're rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically.\nFeatures: \u3010Scope of application\u3011 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8\" Extended connector.\n\u3010CSA certification\u3011 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety.\n\u3010Quality\u3011 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment.\n\u3010Additional table\u3011 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.\n\u3010After-sales service\u3011 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.\n", "embedding": [-1.6601562, 3.0664062, 1.5244141, 1.0664062, -0.7363281, -1.03125, 0.15466309, -1.0927734, 1.2001953, 0.33764648, 1.5595703, -0.14001465, 0.734375, -0.7519531, 2.6542969, 0.9633789, 1.1669922, -0.20678711, 0.8911133, 2.8261719, 1.8320312, -0.09887695, 2.7421875, -0.74316406, 2.0742188, 0.2644043, 2.8515625, -2.0078125, -0.5878906, -1.5068359, 2.0585938, 0.95166016, -0.14477539, 0.37817383, -1.8681641, -1.9042969, 0.04260254, 0.35131836, -3.2441406, -0.3894043, -0.59033203, 1.9433594, 1.9228516, -0.42456055, -2.8730469, 0.5805664, 1.0068359, -0.13879395, -0.28857422, -0.13757324, 0.48486328, -0.45361328, -0.22277832, 0.95166016, -0.7338867, 0.4267578, 0.2854004, -1.2314453, 2.0800781, 1.0791016, 2.9511719, 0.66796875, -2.0097656, 0.89208984, -1.4658203, 0.69628906, 0.81640625, -0.4111328, 0.29077148, 1.8486328, 0.5136719, 0.07836914, 1.3427734, -0.5395508, -0.2998047, 0.7270508, -2.0234375, 0.2878418, 3.328125, 0.70458984, -1.1875, -0.1352539, -0.20288086, -3.1875, 0.18432617, 0.41210938, -0.8095703, 0.3942871, 0.96191406, 0.71484375, -2.3613281, 2.3710938, -2.6523438, -4.59375, 1.3251953, 0.62158203, 0.20910645, -0.43798828, 1.7421875, 0.13098145, -1.921875, -0.93652344, -0.2800293, 2.1660156, -2.3730469, -0.5649414, -0.52001953, 2.1640625, -3.0800781, 0.7504883, 0.79003906, -0.13293457, 0.6748047, -1.7021484, 1.6513672, -2.2402344, -0.2043457, -1.0039062, 2.3632812, 0.59716797, 2.8066406, 0.97558594, -1.1494141, 0.921875, 0.56347656, 0.9223633, -0.49169922, -0.021652222, 4.4492188, -2.0664062, 1.2539062, -3.3125, 1.7958984, 0.45410156, 0.03213501, -2.0449219, -0.64404297, -1.8056641, -1.8671875, -0.12658691, -3.6757812, 0.95654297, -0.6166992, 0.3864746, -2.2597656, 0.47265625, -1.5537109, 2.6972656, 2.3613281, -0.9819336, 2.9765625, -0.67333984, 0.59765625, -1.6728516, 2.2226562, 1.3261719, -0.6166992, -1.9990234, 2.9804688, 1.5039062, 1.4726562, -0.14501953, -1.5410156, 1.515625, -0.065979004, -1.5927734, 0.28637695, -0.42919922, -1.7158203, 1.2666016, -0.89990234, -2.015625, 0.082458496, 1.8261719, -0.82958984, -1.3847656, 0.58154297, 2.6328125, 2.5625, -0.26464844, -2.3085938, -3.2910156, 1.0673828, -1.3554688, 0.85839844, 0.7368164, -0.7763672, -0.5253906, 0.95703125, -0.58203125, -1.7236328, 1.0507812, 0.2529297, 0.40649414, -0.6508789, -1.8818359, -2.7148438, -1.5166016, -1.1708984, 1.5712891, -1.9306641, -0.8925781, 0.26098633, 0.49365234, -1.5253906, -0.67578125, 0.64208984, -0.6088867, 0.98095703, 2.0957031, 0.25146484, -1.8984375, 0.8251953, -1.4667969, -0.18322754, -1.8613281, 0.055267334, 2.0097656, 0.89697266, -0.14453125, 0.39819336, -0.15612793, 0.85839844, 0.4255371, 2.3398438, 0.7451172, -1.2666016, 1.984375, -0.35864258, -1.9580078, 2.3867188, 1.328125, -0.7270508, -1.3955078, -0.30932617, 1.3203125, -0.4411621, -0.3959961, 0.97509766, -0.3503418, -0.65185547, -1.9013672, -0.020004272, -0.48510742, -0.9790039, -0.296875, -0.70947266, 0.70751953, 1.1611328, -0.44702148, 0.7861328, 0.47485352, -0.953125, -0.091308594, -0.82958984, -0.07501221, 1.2060547, 1.5332031, 0.5390625, -1.0302734, 2.0566406, 1.1904297, -0.765625, 2.9921875, -0.13427734, 1.078125, 0.94970703, -1.4003906, -0.4152832, 0.71728516, 0.71777344, 1.6904297, 2.7070312, -1.0898438, 0.33520508, 1.2099609, -1.0625, 3.1269531, -0.33740234, 0.8696289, 0.5317383, -0.42456055, 1.7519531, -2.6132812, 1.90625, 1.7470703, 0.74121094, 0.62402344, -1.6474609, -0.092163086, 4.453125, -1.703125, -2.4863281, 2.4160156, 1.6679688, -0.5317383, 1.5449219, 0.6699219, 1.1533203, -1.5830078, 0.34179688, 2.171875, -1.2490234, 0.2244873, 1.6835938, -0.8100586, -0.94384766, 0.12109375, -1.6923828, 1.1660156, -1.8808594, -0.30810547, -2.7148438, 3.0898438, -1.9414062, -1.4560547, 0.8461914, -1.6445312, -0.45385742, 1.6640625, 0.484375, 1.0625, 0.76220703, -1.4277344, 0.10949707, 1.5585938, -1.6347656, 2.3320312, 0.99658203, 1.1123047, -0.5527344, -2.0839844, -1.2529297, -2.1972656, -3.1484375, 1.4111328, -2.1191406, -2.65625, 0.039794922, -1.6943359, -2.1054688, 0.17382812, 0.8847656, 2.8085938, 1.078125, -0.8256836, -1.3710938, 0.6533203, 1.0859375, 0.012130737, 0.38549805, 2.4960938, -0.9926758, -2.0566406, -0.91064453, -0.7739258, -1, 0.47143555, -1.5957031, 0.9111328, 0.2800293, 1.5693359, 0.3618164, 1.0800781, 0.15270996, -2.4882812, 1.4511719, -2.2382812, -0.08709717, -0.7973633, 1.6328125, -1.4960938, 1.7089844, -2.0097656, -1.5878906, -0.2064209, -2.6640625, 0.65234375, -1.4599609, 2.4296875, -2.3320312, 0.99609375, 0.41137695, -0.8540039, -2.1210938, 0.35083008, -0.015586853, -0.46240234, -0.71972656, -2.1699219, -0.21520996, 0.76904297, 0.93408203, -0.16931152, -0.9189453, -1.7724609, 0.68115234, 1.1787109, -1.6982422, 0.3413086, 1.1152344, -0.10986328, -1.6826172, -0.77490234, 0.02998352, -1.3291016, -1.7060547, 1.2050781, 0.70751953, -0.6542969, 0.7084961, 1.03125, 1.6826172, 0.8251953, -2.3691406, -3.609375, 0.7182617, 2.8027344, -2.84375, 2.3066406, -0.9941406, -1.1982422, -1.8427734, -1.5400391, 3.3242188, 1.3320312, 2.8945312, -0.60546875, -0.13366699, -0.044525146, 1.4169922, -1.4716797, -2.1542969, 1.0449219, 2.7988281, -2.7519531, -0.9609375, 0.34814453, 1.0332031, -2.7910156, 0.12176514, 1.4003906, 0.35717773, 2.7910156, 0.39233398, 1.1152344, 0.3696289, 0.07733154, 1.0478516, 0.6611328, 0.234375, -0.6640625, -0.66845703, -0.6689453, -2.0410156, 0.3305664, 3.2480469, -0.084472656, 1.6689453, 0.5078125, 0.9453125, -0.15075684, -0.018737793, -0.024383545, -0.23449707, 0.5083008, 1.4404297, 0.39916992, -0.55322266, -1.3388672, 0.24267578, 1.6503906, -2.1855469, -0.5410156, 0.6152344, 0.30664062, -0.86328125, -0.6875, -1.1962891, 0.21130371, -1.5273438, -0.5551758, 1.1806641, 0.6748047, 2.0195312, 0.12719727, 1.9248047, -1.3613281, 1.0361328, -0.7246094, 1.5146484, -0.45214844, -0.2064209, -2.734375, -2.0449219, -0.40551758, -1.9130859, -0.5493164, 0.80859375, 0.76708984, -1.3984375, 1.1708984, -1.3818359, 1.3535156, 2.171875, -2.6171875, 0.122802734, -0.015960693, -0.1430664, -1.2353516, 0.16308594, 0.7963867, 0.2475586, -2.2949219, 0.045562744, -2.2226562, 0.5395508, 1.2226562, 1.5166016, -2.0957031, -0.038085938, 0.51123047, 1.5400391, -0.06390381, 2.9667969, 0.23901367, -0.8066406, 0.049926758, -2.8007812, -1.5595703, -1.1025391, -4.4921875, 0.5229492, -1.90625, 1.1054688, 2.1621094, 0.029754639, 0.3605957, 0.9350586, 2.5566406, -3.4648438, -0.8388672, -0.58691406, 0.81640625, -1.1083984, -0.5234375, 2.7402344, 0.80566406, 1.1230469, -2.4960938, -1.0527344, -3.1269531, -0.79345703, 1.0761719, -0.46411133, -0.03475952, -1.2949219, 1.1445312, -1.5146484, -2.015625, 1.0849609, -0.421875, -1.3632812, -3.4570312, 1.5722656, 0.296875, 0.56347656, -0.7446289, 3.8476562, 2.3925781, 0.24829102, -0.75390625, -0.24182129, 2.5761719, 0.67871094, -1.4824219, 1.2460938, -0.75, 0.15112305, -0.14758301, 0.40478516, -0.6977539, -1.2587891, 0.95214844, 1.3730469, 0.050933838, 2.1640625, -0.40844727, -0.9003906, 1.2060547, 0.43041992, -0.44873047, 0.8388672, 0.24267578, -1.2871094, -1.4384766, 0.9946289, -2.2617188, -0.5751953, -0.98535156, -0.60839844, -3.6152344, 2.6289062, 0.95214844, -0.36938477, 0.29492188, -2.4472656, -1.3007812, -0.6767578, 0.44580078, -1.4892578, -0.46826172, -1.5820312, 0.25805664, 0.47265625, 1.6259766, -0.36083984, -1.4238281, 0.85253906, -1.6220703, -0.32641602, 0.099365234, 1.6865234, 0.1875, -0.38671875, 1.1142578, -0.87939453, 2.7871094, 0.30810547, -0.3305664, 1.2050781, -1.4003906, -2.1054688, 1.2519531, 2.7890625, 0.51904297, 1.0087891, 0.5678711, 0.49951172, 2.2949219, 0.20983887, 0.7373047, 0.8823242, -0.74658203, 1.5859375, -0.8491211, 1.0878906, -2.3554688, 1.59375, -0.043029785, 2.2226562, 1.0839844, 3.0742188, 1.1542969, -1.5263672, 1.8115234, 1.0947266, -0.46142578, -1.2724609, -1.890625, -2.4589844, 1.5742188, -0.6508789, -1.3818359, -0.24707031, 2.6933594, -0.6972656, 2.1425781, 0.8989258, -0.22094727, -1.1376953, -1.609375, -1.6191406, -0.024398804, -1.0253906, -0.7084961, -1.3632812, 0.7294922, 0.10449219, 1.0449219, 1.2783203, 1.0205078, -0.026031494, -0.30126953, -1.9892578, -0.11218262, -1.8554688, -0.9526367, -1.4755859, 0.40478516, 1.8798828, 1.421875, -0.9614258, -1.1582031, 1.4462891, -0.24914551, -0.4807129, 0.5961914, 1.0527344, -0.08258057, 0.64404297, 1.4707031, -0.4189453, 0.43798828, -1.3984375, 0.7631836, -0.6455078, 2.7734375, 1.9580078, 0.9199219, 0.06903076, -0.41259766, -1.3076172, -3.8203125, -0.1026001, 1.9423828, -0.14343262, 0.24902344, -2.6992188, -0.27954102, 2.5214844, -0.50146484, -1.0703125, -1.1933594, 1.4472656, -0.67041016, -0.099731445, -0.9326172, 0.8251953, 0.08178711, -0.37719727, -0.6152344, 0.12719727, -0.57421875, -1.6787109, -1.6806641, 2.0566406, -3.5332031, -1.0390625, 1.3388672, -0.58935547, 0.83740234, 1.2402344, 1.1669922, -1.8808594, 1.8291016, -2.3222656, -0.09136963, 0.9379883, -1.2792969, 0.9609375, 1.6259766, -0.8330078, 0.46313477, 1.1591797, -0.050079346, -0.75390625, -1.2294922, 1.9960938, 0.7504883, -1.0136719, -3.0917969, -0.37426758, 0.47485352, 1.65625, 1.7929688, -1.6923828, -0.9741211, -1.3369141, -3.5214844, 0.14465332, -0.8496094, -0.3557129, -0.91259766, 2.0039062, 1.3876953, 0.013504028, 0.58203125, 0.2475586, -1.0439453, -0.5126953, 2.2246094, -0.20629883, 2.7324219, 0.89453125, -0.94677734, -3.6425781, -1.5683594, 2.4824219, 1.5996094, -1.5566406, -1.2714844, -0.09197998, -0.25341797, 1.3076172, -0.9609375, 1.0644531, 0.20019531, -0.82910156, -0.16259766, 0.5283203, 1.921875, -1.2158203, 1.0439453, 1.5800781, 0.3774414, -1.0087891, 2.1933594, 2.2480469, -2.9492188, 1.984375, -2.1738281, -0.40625, -1.1464844, -0.83691406, 0.9707031, -3.1992188, 0.55126953, 0.4855957, -1.5839844, -2.7480469, 1.4580078, 0.84814453, -0.3232422, 0.7265625, 2.640625, 0.69091797, -0.9711914, 2.0605469, 0.024337769, -0.22497559, -0.66064453, -3.7832031, -0.9902344, 1.6464844, -0.84228516, -1.3681641, 2.1933594, 1.9560547, -0.88134766, -0.06585693, 0.39916992, 2.9960938, 1.0947266, 2.8105469, 2.0058594, 0.6645508, 2.8496094, 0.5966797, 2.2519531, 2.8847656, 0.10723877, -0.21032715, 1.5341797, -0.12756348, 1.1601562, -1.0556641, -0.48217773, -0.91845703, -0.17810059, 0.8334961, 1.9960938, 1.8408203, -2.53125, -0.6855469, -1.1845703, -1.3984375, -3.0292969, 1.0332031, -0.80126953, 0.30297852, 0.9951172, -0.14147949, 1.5996094, 0.43774414, -1.1630859, -1.0449219, 0.60791016, 2.3847656, -1.8496094, 0.8745117, -0.8876953, -2.6816406, 1.0751953, 2.7558594, 0.7885742, -0.50097656, 0.55322266, -0.6635742, -0.7167969, 1.1416016, 1.1181641, -3.0664062, 0.49072266, -0.38232422, 2.4980469, 2.2050781, -1.5273438, 2.3476562, -0.5678711, -1.3378906, -2.9023438, 3.1445312, 0.099121094, -0.077941895, -0.65771484, -5.1914062, 0.95703125, -2.0351562, 0.33544922, -1.4052734, 0.87597656, 0.3876953, -2.8027344, 1.3916016, -0.46020508, -1.3291016, 2.234375, 0.87060547, -1.2080078, -0.45532227, 1.7246094, 2.0839844, 0.62158203, -0.5371094, 1.0136719, -0.15197754, -1.3583984, 4.1054688, -1.3125, -1.296875, -0.8540039, 3.1328125, 1.0458984, 1.15625, -1.4140625, 0.88378906, 1.46875, 1.5087891, 0.8486328, -0.5908203, -1.0507812, -0.115356445, -0.76464844, -0.20373535, 0.08129883, -0.7949219, 0.84375, -0.12017822, -1.8115234, -0.14587402, 0.70751953, -1.0800781, 1.6503906, 1.7773438, -1.5039062, -1.9736328, 0.064941406, 1.2050781, -1.8955078, -1.7460938, -0.6347656, -0.8417969, -0.3942871, -1.6796875, 0.21972656, 1.5849609, -0.17565918, 0.28344727, -0.46875, -1.2949219, 0.08154297, -0.2088623, -1.9306641, 0.24414062, 2.2832031, -0.43017578, 2.3496094, 0.17236328, 0.2290039, 0.28222656, -1.7177734, -0.97753906, 0.014381409, 0.8779297, 0.5776367, 0.8876953, -0.8857422, -2.3222656, -0.26123047, -2.5527344, 2.0488281, 0.17004395, -2.4902344, 0.32617188, 1.2177734, 2.1464844, 0.31225586, 0.67041016, -0.55126953, -0.12866211, 1.9501953, -2.5429688, 0.31396484, -2.1171875, -0.39453125, -0.16894531, 3.3945312, 1.7373047, -1.7539062, -0.15527344, 0.87402344, -0.23657227, -0.53759766, 0.41967773, 0.03591919, 0.34887695, 1.2705078, 0.9902344, 1.8037109, 0.8339844, -1.6230469, 0.093933105, -0.84521484]}, "B01HQRD8EO": {"id": "B01HQRD8EO", "original": "Brand: GasOne\nName: Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold)\nDescription: \nFeatures: DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included\nAUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove\nEASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition\nSAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected\nVERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness\n", "embedding": [-2.0390625, -0.10406494, 0.9658203, 1.1962891, -0.6791992, 2.0097656, 0.41845703, 0.12030029, 0.86572266, 0.96191406, 1.4453125, 0.11682129, 0.84765625, -0.87109375, 0.7548828, -0.047729492, 0.46191406, 1.2509766, -0.19567871, 2.5742188, 2.7089844, -1.2832031, 1.1689453, -0.11047363, 0.13903809, 0.6748047, 3.6035156, -3.84375, -0.22888184, -1.2216797, 1.1738281, 0.5551758, 0.07928467, 0.75634766, -3.0234375, -0.12451172, 0.28930664, 0.9824219, -3.140625, -1.9492188, -2.5976562, 0.115356445, 1.6728516, -0.13781738, -0.9301758, -0.91308594, 0.9116211, 0.40649414, -1.5615234, 0.9711914, 1.2714844, 2.3730469, -1.4345703, 2.140625, -0.43945312, 0.98583984, -0.33911133, -1.1679688, 2.6953125, 1.1826172, 1.6376953, 0.9013672, -0.26220703, 0.013717651, -0.8955078, 0.105407715, 0.070007324, -0.5136719, -2.4492188, -0.66552734, 3.328125, 0.8129883, 0.36035156, 0.8129883, -1.2216797, -0.9082031, -2.3964844, 2.5, 1.6816406, -0.17041016, -0.16772461, 0.9741211, 0.8852539, -1.2099609, 1.1806641, 0.09069824, 0.42358398, 0.9472656, 0.9428711, 1.5048828, -3.734375, 1.5175781, -1.4746094, -3.1875, 1.3251953, 0.23046875, 0.22790527, 1.2060547, 1.5390625, 1.8261719, -0.61279297, 0.7133789, 0.72998047, 0.9614258, -1.546875, -1.3945312, 3.2382812, 1.2783203, -3.4882812, 0.91748047, -1.8027344, -0.8696289, 0.7114258, -1.4345703, -0.8022461, 1.6523438, 0.08654785, 0.3149414, 3.5722656, 0.007835388, 2.6835938, -0.86572266, 1.703125, -1.8037109, 1.1533203, 2.3632812, -1.5683594, 0.60595703, 2.9335938, 0.0395813, -0.50927734, 1.6396484, 1.8964844, -1.3183594, -0.70458984, -1.3066406, -1.2958984, -3.078125, -2.9960938, 0.6455078, -2.9628906, 1.15625, 0.65527344, -1.2265625, -3.8671875, -0.0077171326, -1.7148438, 1.6113281, 1.9697266, -1.5585938, 1.9794922, -2.0761719, 0.52734375, -2.7167969, 2.0917969, -0.4873047, -2.0078125, -1.3925781, 3.578125, 1.4404297, 0.076660156, -1.2285156, -2.8066406, 0.5107422, 1.609375, -2.3203125, 1.0146484, 2.0273438, -0.16821289, 0.51464844, 0.76708984, -1.0673828, -1.8144531, 0.62402344, 0.042999268, -1.1953125, -1.3720703, 2.3789062, 0.41870117, -0.7661133, -3.6386719, -2.2832031, 1.8603516, 0.55908203, 1.1279297, -0.93652344, 0.6513672, -1.5673828, -0.8779297, -1.8242188, -1.2255859, 2.2441406, -1.0166016, 1.5673828, 0.066833496, -1.9306641, -1.0439453, -0.111694336, -0.9272461, 0.49169922, -0.25048828, -1.5341797, 0.18261719, 0.52441406, -2.6777344, -2.0488281, 1.5322266, -2.2539062, 0.9658203, 2.3339844, 2.578125, 1.0517578, 2.9511719, -0.32128906, -0.18054199, -2.3417969, 1.0410156, 2.9726562, 0.42358398, 1.6542969, 0.6982422, -1.1523438, 0.5253906, 0.0110321045, -0.7661133, 3.6210938, 1.0488281, 0.07232666, -3.3203125, -3.4453125, 1.7294922, 0.08270264, -0.31201172, -0.5004883, 0.062194824, 1.4892578, 1.1904297, -0.82128906, -0.08087158, -0.068481445, -0.69921875, -0.6166992, -1.03125, -0.48291016, -1.8955078, 0.63427734, 0.097351074, -0.51660156, 2.1386719, -0.4326172, 0.69140625, 1.7353516, -0.41796875, 1.2519531, -2.7714844, 0.5888672, 1.65625, 0.9477539, -1.0449219, -0.43823242, 1.7792969, 2.7636719, 0.6899414, 0.2553711, 0.7294922, -0.9086914, 1.9755859, -0.32177734, -1.90625, 0.42700195, 1.3984375, 0.88916016, 2.7753906, -0.8769531, 2.5039062, 0.98876953, -2.5058594, 3, 1.1933594, 2.3945312, 0.6557617, -1.8193359, 0.11047363, -1.5673828, 1.4335938, -0.61279297, 1.7460938, -0.02722168, -0.73779297, -1.4716797, 4.7773438, -0.71240234, -3.4160156, 2.4941406, -1.2578125, -0.05670166, 0.78759766, 0.049987793, -0.14465332, -1.0947266, 0.46972656, 0.004787445, -0.3984375, 0.16455078, -0.6152344, 0.4416504, -0.4814453, -0.7192383, 1.6113281, 0.69628906, -0.5751953, -0.6713867, -0.45239258, 0.32958984, -1.8164062, -1.8330078, 2.1015625, -1.6679688, 1.5332031, 0.64453125, 1.4394531, 2.3378906, 0.51220703, -2.8476562, -0.7138672, 1.0556641, 0.94384766, 1.7832031, -0.62158203, -0.19165039, -0.81396484, -2.4628906, 0.34838867, -1.6611328, -1.9892578, 1.0146484, -1.6259766, -4.0234375, 1.0917969, -2.9199219, -1.7705078, -0.3474121, -3.6269531, 1.2978516, -1.390625, -1.3798828, 0.37402344, -0.9921875, -1.5644531, -1.4755859, 1.6503906, 2.3066406, 0.029937744, -2.4667969, -0.64404297, 0.22851562, 0.76708984, 0.42871094, -0.9501953, 1.0556641, -0.26733398, 0.32641602, -0.96728516, -0.5385742, -0.8857422, -2.0585938, 1.0224609, -4.5898438, -0.69384766, -1.4355469, 0.8676758, 0.73046875, 0.47729492, -1.8085938, -0.8691406, 0.8774414, 0.48583984, 2.7890625, -1.2861328, 1.6425781, -1.0263672, -1.4882812, -0.57666016, -2.2929688, -2.1679688, -0.7714844, -0.28881836, -1.4775391, 0.12646484, -1.6113281, 1.7734375, -0.19592285, 0.6489258, -1.5507812, 0.86035156, -0.6669922, 1.1445312, -0.42211914, -0.03189087, -0.46069336, -0.96972656, 0.45092773, -4.90625, -0.8857422, -0.19128418, -2.4238281, -0.1583252, 0.3034668, 0.5527344, 1.5351562, 0.6645508, 0.87402344, 0.31420898, -1.1171875, -0.28198242, -3.3984375, 2.0371094, -0.1463623, -1.5664062, 0.26831055, -1.3916016, 0.53759766, -0.9003906, -0.36279297, 3.40625, 1.5849609, 3.5371094, -0.6508789, -0.5522461, 1.5253906, 1.4335938, -0.53515625, -2.8222656, -0.8613281, 2.8007812, -2.578125, -0.87890625, 1.4248047, 0.99902344, -2.7988281, -1.4355469, 1.0439453, 0.96484375, 2.2753906, 1.7871094, 0.6435547, -0.09240723, -0.44482422, 0.1928711, 1.4716797, 0.34204102, 1.8457031, 0.027496338, 0.53759766, -0.7104492, 0.7949219, 1.5136719, 2.5683594, 2.7148438, 1.2773438, 0.6376953, -2.0859375, 0.08703613, -0.4177246, 1.1416016, 1.3056641, 3.453125, 0.5546875, 0.16223145, -0.16455078, -1.2197266, 1.3984375, -1.0927734, 1.453125, 0.17150879, 1.2138672, -0.88378906, 0.40185547, -1.4453125, -0.1459961, -1.4384766, 3.0800781, 1.2216797, -0.9355469, 1.5166016, -1.1367188, 0.23864746, -2.7519531, -0.12402344, -1.5947266, 0.19055176, 1.2724609, 1.1425781, -2.6855469, -0.8173828, -0.5991211, 0.050109863, 0.9189453, 3.4238281, -1.015625, -2.2460938, 1.9658203, 0.59521484, -0.6386719, 2.921875, -0.40063477, 0.28515625, -2.0722656, 0.6616211, -1.3085938, -1.9121094, 1.6972656, 0.6074219, -2.8359375, 2.3769531, -3.5292969, -0.9013672, 0.7529297, -1.7070312, 0.37451172, 1.0263672, -1.1650391, 1.9726562, -1.3349609, 3.59375, -0.84472656, -1.1894531, 3.0976562, -3.6542969, -0.8652344, -1.6914062, -3.2910156, 2.3203125, -0.7128906, -0.16430664, 3.8613281, 0.9326172, 0.053253174, 1.6181641, -0.030014038, -3.2226562, -2.6347656, -0.20690918, 0.44482422, -1.9746094, -1.1005859, 0.11035156, 0.25317383, -1.625, -0.4362793, 0.07006836, -1.5595703, 0.15197754, 0.4555664, -2.8320312, -0.043762207, -0.48535156, 0.34375, -0.10290527, -1.9423828, -0.15075684, -1.6679688, 0.36547852, -2.9160156, 2.15625, 2.6113281, -0.77197266, -1.0244141, 3.2441406, 2.0371094, -0.61621094, 0.09088135, 0.38500977, 0.8730469, -0.10272217, -2.8242188, -1.7822266, -0.5209961, 0.6020508, -0.6972656, -0.8564453, -1.5527344, -1.6347656, 2.3574219, 1.8525391, 2.0703125, 1.5419922, 1.3310547, -1.5595703, 1.2558594, -0.7939453, -2.1113281, -0.25317383, -0.7885742, -0.15600586, -0.08721924, -0.26000977, -1.5644531, 0.53564453, -2.0214844, -0.89208984, -2.8652344, 1.4521484, 1.5429688, 0.7626953, 1.4335938, -0.39379883, -1.5341797, 0.76220703, 0.18933105, -0.17041016, 2.2363281, -0.017562866, 0.83935547, 1.4570312, 0.5810547, -0.70751953, -1.3222656, 2.7832031, -0.27490234, 1.0117188, -0.20178223, 0.9140625, -1.5976562, -0.8754883, -0.17126465, 0.8027344, 1.6152344, -1.9814453, 1.5146484, 0.10845947, 0.83203125, -1.8671875, -0.56103516, 1.4023438, 1.3017578, 0.30371094, 0.68896484, 1.3808594, -0.39135742, 1.6054688, 0.5390625, 1.1933594, -0.42895508, 1.3964844, 1.4560547, 1.2275391, -1.9179688, -0.9223633, 1.2490234, 2.5058594, 0.8754883, 2.6914062, 0.2685547, -0.38134766, 2.1347656, -0.6269531, -2.4238281, -0.0035266876, -1.7832031, -0.054504395, 1.4941406, -0.019882202, -1.5380859, -0.26831055, 2.5683594, -0.6845703, 0.7236328, 1.0273438, -1.1152344, -1.2480469, -4.8242188, -1.2607422, -1.5419922, -0.8022461, 1.34375, -1.984375, 0.74365234, -1.0585938, 1.4785156, 1.3515625, -0.4699707, -0.013771057, 1.6044922, -0.6791992, 2.5664062, 0.21911621, -0.10620117, -3.3691406, 2.2226562, 1.1240234, 0.88623047, 1.2792969, 1.6621094, -0.047821045, -1.9599609, -1.3916016, -0.8847656, 0.014808655, -2.0996094, -0.6245117, 1.4658203, -0.10839844, 1.8652344, -0.2388916, 0.6435547, -0.31640625, 2.4980469, -0.23339844, 1.0810547, -1.7626953, 0.37402344, -2.1074219, -4.7265625, -2.1875, 0.94384766, -0.46264648, -0.15393066, 0.21191406, -1.8544922, 0.020889282, -0.09899902, 0.9614258, -2.4648438, 1.1630859, -1.6640625, -0.47583008, -1.0341797, -0.15600586, -0.99072266, 1.3623047, 0.7597656, -0.59765625, 0.13928223, -1.2041016, -1.7675781, 0.39526367, -0.6586914, 0.3076172, 0.14587402, -1.6572266, -2.78125, 2.2441406, -0.19873047, -2.3632812, 1.8349609, -1.3359375, -0.04220581, 0.99121094, -0.4675293, 1.0371094, 1.2568359, -0.45776367, 0.9794922, -0.09283447, 0.059814453, -2.1054688, 1.2724609, 0.4802246, 1.1289062, -0.9863281, -2.3847656, 2.484375, 0.18347168, 1.1757812, 1.6074219, -1.8964844, -0.93359375, -3.2089844, -1.6142578, 0.03552246, -0.34985352, -0.12005615, -0.036224365, 0.9838867, 0.39257812, 0.37768555, -0.7294922, 0.2902832, -0.38232422, -1.046875, 1.7314453, -1.8798828, 2.9023438, 0.7109375, 1.3046875, -2.7128906, -0.88183594, 3.2695312, 0.8300781, 0.8745117, -0.5444336, 1.2792969, -0.7885742, 1.2207031, -1.0898438, 2.265625, 2.5742188, 1.3769531, -0.7963867, 1.9345703, 1.7060547, -0.105163574, 0.13195801, 0.91748047, -1.4882812, -0.5234375, 2.0390625, -0.4428711, -1.0039062, 1.3320312, 0.038757324, 1.2919922, -0.31958008, -0.41210938, 1.4423828, -1.3496094, -0.56933594, -1.2861328, -1.1621094, -1.6455078, 1.6923828, 2.3085938, -1.2822266, -0.111206055, 1.9316406, -0.5600586, 0.029800415, 2.078125, 1.3759766, -2.9121094, -0.38452148, 0.32495117, -1.0273438, 1.2675781, -1.4951172, 0.30419922, 2.3144531, 1.1279297, 0.53271484, 3.2226562, -1.203125, 2.9296875, 2.2246094, 1.0371094, 2.15625, 0.74072266, 0.9926758, 1.703125, 0.33789062, 1.4326172, -0.019073486, 0.78466797, 1.5283203, 0.6557617, 0.027923584, -1.3193359, 1.8457031, -0.09301758, -1.921875, -1.1650391, 0.9267578, 1.4189453, -4.046875, 0.48657227, 0.18688965, 1.4667969, -2.0390625, -0.41259766, -1.1181641, -0.15368652, 1.6113281, 0.78759766, 0.04385376, -1.3964844, -1.2861328, -0.59814453, 0.38549805, 2.6386719, -1.0644531, 0.8769531, -1.2929688, -2.1542969, -0.14135742, 0.11193848, -0.9926758, 0.5551758, 0.66845703, 2.1523438, 1.1572266, -2.078125, 1.0205078, -2.8320312, 0.24353027, 0.17016602, 4.359375, -0.24328613, 0.28173828, 2.0039062, -0.8774414, -3.3554688, -4.5820312, 1.8710938, 0.17456055, 1.2851562, 1.1630859, -3.0703125, 2.4765625, 1.0478516, 0.62353516, -3.8730469, 0.77978516, 0.25195312, -0.93896484, -0.27075195, 2.5839844, 0.21081543, 2.6230469, 0.28466797, -2.2636719, 0.73046875, 0.61035156, 0.5830078, -1.546875, -0.9375, 1.8339844, 0.7421875, -1.1738281, 1.9394531, 0.87890625, -1.8203125, -0.015060425, 1.0898438, 2.1953125, -0.015655518, -0.6040039, -0.59033203, 0.29467773, -0.75634766, 0.1496582, 0.45629883, -1.8535156, -1.9560547, -1.6220703, -0.8300781, -1.8232422, -3.3203125, 1.0605469, -0.80615234, -2.7734375, -0.7441406, 2.4765625, -0.35107422, 0.4482422, 0.55029297, -0.09301758, 0.7871094, -1.1806641, -0.22363281, -2.2226562, -1.1552734, 0.13635254, -0.16113281, -0.14660645, -1.3183594, 0.5097656, -0.08905029, -0.83154297, 0.86035156, 0.7602539, -0.66308594, -0.034454346, 0.17199707, -0.8613281, 0.9121094, 3.3613281, -2.0742188, 0.41015625, 0.82421875, -1.7568359, -1.2919922, -1.1113281, -0.35107422, 0.57177734, 1.1298828, 0.65478516, 2.5546875, -1.6640625, -2.3203125, -1.2080078, -3.3828125, 1.4853516, -0.5419922, 0.04977417, 0.29418945, 2.4257812, 2.4394531, -1.2265625, 0.3388672, -1.4140625, -0.06994629, 0.16210938, -0.18664551, 1.3447266, 0.8222656, 0.43139648, 1.0097656, 1.3398438, 2.9121094, -0.82714844, 0.9814453, 0.062286377, 0.08062744, -0.57373047, 1.6845703, -2.5039062, 0.09240723, 1.0322266, -0.6386719, 2.8652344, 1.4492188, -0.85058594, -1.3769531, -0.67089844]}, "B0002P1D0Y": {"id": "B0002P1D0Y", "original": "Brand: Red Dragon\nName: Red Dragon CD-100 Propane Cylinder Dolly,Steel\nDescription: \nFeatures: A handy way to move a simple 20 pound cylinder while flaming\nThis dolly makes the perfect companion for any Red Dragon Torch Kit\nIdeally suited for LP Gas cylinders up to 40 pounds.\nThe single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch\nWhen the torch is not in operation, it can be stored on the convenient torch bracket.\n", "embedding": [0.56640625, 1.8671875, 2.953125, -0.03604126, 0.12683105, -1.9892578, -0.076538086, -1.1425781, -1.3095703, 1.1689453, 0.61572266, 2.2207031, 0.38208008, -1.3046875, -0.22766113, 0.16821289, -0.46289062, 2.0234375, 0.5463867, -1.3759766, 3.0097656, -0.50878906, 1.6435547, -0.76464844, 0.34033203, -1.6298828, 2.078125, -0.35913086, -1.7734375, 0.64453125, 2.2011719, -1.5791016, 0.68408203, 1.2988281, -0.39868164, -2.765625, 0.7182617, 0.3161621, -3.5566406, -0.96972656, -0.4724121, 1.4267578, 0.24377441, -0.5654297, -3.1074219, 0.56640625, -0.44458008, 0.11846924, 2.5253906, 0.31835938, 3.6347656, 1.4443359, -1.3027344, 0.78759766, -0.64746094, 2.3710938, -0.024002075, -3.7050781, 1.9550781, -1.2441406, 1.3369141, 1.6884766, -2.0273438, 0.6142578, 0.6533203, 0.45922852, -2.0195312, 1.0224609, -0.64941406, -1.3359375, 1.8662109, 2.5097656, 1.1699219, -0.82714844, 0.82373047, 0.52783203, -2.7441406, 1.3359375, 2.4863281, -2.4785156, 2.3769531, 0.10675049, 0.8745117, -0.37426758, -0.60498047, -3.7050781, -1.4267578, 1.6123047, -0.11383057, 1.8623047, -1.9355469, 2.2207031, -0.1583252, -4.3789062, 0.94628906, -0.3239746, 0.29492188, 0.78564453, 0.49975586, 1.4785156, 1.0263672, -1.3857422, -0.13391113, -2.109375, 2.2617188, -0.71728516, -0.91748047, 1.0253906, -1.3974609, 2.9179688, -3.3320312, 0.6381836, 1.4316406, -0.84033203, -2.2597656, -1.3671875, -0.75390625, 1.8056641, 2.3144531, -0.47045898, 3.0605469, -1.8017578, 0.5678711, 0.31835938, 3.6054688, 0.2758789, -0.74316406, 2.3964844, 3.4101562, 0.53027344, -0.5991211, 1.9863281, 1.0371094, -2.2480469, -0.31884766, 0.11932373, 0.66503906, -0.19274902, 0.23327637, -2.7363281, -0.6064453, -2.1386719, 1.1123047, 0.28442383, -3.0371094, 0.7236328, 0.19116211, -0.4399414, -1.8037109, -2.5585938, 0.8569336, -1.6806641, -0.18518066, -1.9628906, 1.5849609, 3.5097656, -1.5449219, -2.2832031, 1.6699219, -0.3215332, 0.63720703, 0.48242188, -0.26635742, 2.3632812, 0.15454102, -0.021438599, 1.3818359, 0.37963867, -2.2246094, 0.9765625, -0.89697266, -1.1904297, -0.9145508, 0.36132812, -0.6010742, -2.5097656, -1.1894531, 1.2421875, -1.3857422, -1.2988281, -2.2695312, 0.37158203, 2.3652344, -0.026412964, 0.38671875, 0.3491211, -1.3603516, -1.5878906, 0.69140625, 0.23339844, 0.81884766, -0.9770508, -1.6826172, 0.4633789, 1.4697266, -0.38208008, -0.89453125, -1.0703125, 1.0263672, 1.4755859, -3.3496094, -1.7705078, 1.1884766, 1.6728516, -2.4277344, -1.7587891, 1.546875, 0.46289062, -0.34448242, -1.2333984, 0.29736328, 0.95410156, 4.09375, -1.4199219, -1.3203125, -2.5410156, -1.171875, 0.6044922, 1.5263672, 0.24108887, 0.32373047, -1.8662109, 0.1854248, -0.33764648, -1.3310547, 2.0585938, -1.3544922, -0.8881836, -1.7392578, 1.1152344, -0.7524414, 1.8427734, 1.1503906, 1.9912109, -0.7963867, 1.0351562, -0.11505127, 0.81884766, 1.2646484, -3.5566406, -0.4958496, 0.43188477, -0.58496094, 0.6064453, -0.21362305, 0.32373047, 2.0839844, 2.1992188, 0.35986328, -0.28710938, -0.28295898, -1.0585938, 0.35766602, 0.28393555, -0.24743652, 1.9228516, -1.0771484, -1.5214844, 1.1728516, 0.9951172, 3.5371094, 0.1940918, -1.5068359, -1.5927734, -1.9111328, 0.90234375, 0.2376709, -1.2167969, 1.0927734, 0.3203125, -1.4775391, 1.7519531, 2.1601562, -0.05392456, 1.8925781, 0.94970703, 0.27685547, -0.08996582, -0.078552246, 3.3164062, 1.9423828, 0.4831543, 1.6113281, -3.2675781, -1.8369141, 0.59277344, 1.4541016, 0.53515625, 0.64990234, 0.59228516, 4.3085938, -0.9604492, -2.5117188, 1.6416016, 0.59277344, 2.671875, 0.3684082, -1.1025391, 2.3925781, -1.5214844, -0.22399902, -0.7885742, -2.2617188, 1.1210938, -0.25341797, -2.0917969, 0.7758789, 0.7573242, 2.6621094, -1.4980469, 1.0957031, 0.23144531, 0.93066406, 0.46826172, -0.99853516, -1.046875, 2.8105469, -0.45483398, 2.1523438, 1.8564453, -0.6088867, -0.058776855, 2.5175781, 0.47192383, 0.71972656, 0.28198242, -3.0097656, 0.3215332, 1.9941406, 0.55371094, -0.5131836, 0.9350586, 1.78125, -1.9541016, 0.010398865, 1.1728516, -0.021820068, -0.48754883, 1.0136719, -1.3359375, -1.5439453, 0.6616211, 0.5102539, 1.4248047, 1.8125, -2.8808594, -1.1884766, 2.3320312, -1.2636719, -1.8105469, -0.0881958, 1.2734375, -1.9160156, -2.9667969, -0.62402344, 1.3818359, -1.5341797, 1.8613281, -1.6220703, -1.4716797, -0.69433594, -0.8046875, 1.5986328, -0.22521973, -0.9091797, -0.28100586, 1.4609375, -2.6035156, 4.1914062, 1.3212891, -0.17541504, 0.44018555, 0.13305664, 0.18591309, -0.8486328, 0.46606445, -0.47973633, 3.8730469, -0.12359619, -0.18383789, -0.2915039, -0.15368652, 2.6289062, -0.6118164, -3.0585938, -1.1611328, -0.64746094, -1.7158203, -0.93310547, -4.7460938, 0.5341797, -0.4897461, 0.1706543, 1.8388672, -0.087768555, 0.17456055, -0.32543945, -2.6835938, -0.86572266, 2.1132812, -1.5322266, -0.50634766, -0.8930664, 3.3027344, -1.7197266, -2.8417969, -1.1386719, -0.88916016, 0.6015625, 0.17114258, -1.0732422, 0.46728516, -1.4560547, -0.74902344, 1.0292969, -1.4609375, 1.7705078, 0.36645508, 1.4785156, 1.3808594, -1.5917969, -0.4807129, -1.8662109, -0.8833008, 1.3652344, -1.8427734, 1.7275391, 1.9785156, 1.0205078, -2.2382812, 2.5507812, -1.4472656, 0.42700195, 0.7026367, 0.9267578, -1.6845703, 0.42504883, 1.0859375, 1.7431641, -3.2753906, -0.5991211, -0.37109375, -0.29370117, 1.6513672, -0.6166992, -0.47631836, -2.265625, -1.0722656, -0.15209961, 1.5292969, 0.05279541, 0.6333008, 0.59472656, 0.8041992, -0.99902344, 0.2548828, 1.8876953, 0.43237305, 3.2246094, 0.7680664, 0.77490234, 1.5244141, -0.06762695, -0.5253906, -0.27490234, -1.4355469, 0.0023975372, 0.36206055, 0.38842773, 2.1699219, -0.21374512, 0.16894531, -1.6113281, -0.5151367, 2.3613281, -0.34765625, -1.8896484, -0.30419922, 1.0371094, -1.2431641, -2.0605469, 1.7744141, -0.72265625, -1.8574219, -0.24694824, -1.2431641, 2.7363281, -4.3867188, 1.5029297, -2.6386719, 0.21020508, -0.99121094, -0.42041016, -1.6845703, -1.2939453, -1.0595703, -0.59228516, -2.3867188, 2.65625, 1.4013672, -2.0878906, 2.7246094, -2.7714844, 2.7285156, 0.38330078, -1.2958984, -0.38500977, -1.5371094, -1.2441406, -1.3427734, -0.35131836, 2.0410156, 1.4941406, -1.8544922, 2.046875, 0.5541992, 0.24743652, -0.79589844, 0.1607666, -0.75439453, 0.15307617, -2.1914062, 0.9848633, -0.119018555, 4.3398438, -0.20593262, 2.0742188, 1.5556641, 3.1738281, 0.5522461, -1.5058594, 0.7890625, 1.3828125, -0.95166016, 0.5854492, 5.0859375, -2.4199219, 0.11022949, 0.4165039, -0.17150879, -0.27197266, -2.1523438, 0.21289062, 2.7363281, -2.2421875, 0.15979004, 1.8388672, -0.38549805, -1.2089844, -0.28686523, 1.2392578, 1.2792969, -0.9790039, 1.90625, -2.8007812, 0.9213867, -1.2753906, 0.19665527, -2.46875, 0.7216797, 3.1542969, 0.04257202, -0.73095703, -2.6113281, 3.3144531, -0.65625, -0.70703125, -1.2167969, 2.4980469, 1.3779297, -0.7260742, 1.0019531, -3.59375, 1.4169922, 0.3684082, -1.4033203, -0.6616211, -0.46020508, 1.2041016, -0.9448242, 0.11315918, 1.5478516, -0.70214844, 3.1035156, 1.9375, -1.4277344, 1.6923828, 0.83154297, 0.80615234, 0.62060547, -0.9165039, -1.9306641, -0.03012085, -0.42944336, 0.32177734, 0.91748047, 1.2978516, -2.3183594, -0.034820557, 0.14562988, -0.043395996, 0.089416504, 0.3918457, 2.515625, -1.1630859, 2.3730469, 0.062408447, 0.27954102, -2.1054688, 1.5136719, -0.3178711, -0.95166016, -0.7211914, -0.58203125, 0.45825195, -0.21020508, 0.15319824, 0.48120117, 1.5673828, -2.0722656, -2.0390625, 0.99316406, 0.32055664, -2.6132812, -1.0957031, 1.4755859, 0.48217773, 1.4609375, -2.0898438, -1.4404297, 0.0027561188, 0.69970703, -1.6386719, 0.9770508, -0.18713379, -0.73095703, 0.7260742, -1.0595703, 1.8105469, 1.2265625, 2.3496094, 0.14978027, 1.2558594, 1.40625, -0.59472656, 1.4365234, -1.9042969, 1.6816406, 1.9208984, -0.2788086, 2.8222656, 1.96875, 1.3203125, 0.34570312, 1.9091797, 0.9038086, 1.2578125, -2.7324219, 0.48217773, -1.3652344, -0.82470703, 0.20568848, -2.2988281, 0.31713867, 0.51220703, 0.48657227, 0.93408203, 0.82958984, -0.6274414, -1.0205078, -2.4863281, -1.1474609, -0.56640625, -2.1386719, -0.79345703, -0.43139648, 1.1464844, 0.63183594, 1.1435547, -0.061950684, -0.28564453, 3.2519531, 0.9213867, -1.328125, -1.5527344, -1.1318359, -1.2900391, -0.63183594, -3.4902344, 1.8408203, -1.9833984, 3.1621094, -0.61621094, 1.6337891, 3.1523438, -1.3134766, -0.6044922, -0.59033203, -0.23168945, -2.3496094, -0.79833984, 4.6171875, 0.048980713, 1.46875, -0.58251953, -1.5732422, -2.0546875, 2.7832031, -0.12719727, -1.6767578, -2.0566406, 2.1484375, -2.0976562, -1.3466797, -2.2636719, -1.4941406, -1.0898438, -1.3349609, -1.0996094, -1.3515625, -0.07208252, -0.78222656, 0.066223145, 0.84228516, 1.8779297, -0.45043945, -0.43237305, -2.1015625, 0.70996094, 2.2675781, -0.1652832, -0.9951172, -1, 0.48901367, 0.8881836, -4.4257812, 3.7207031, -1.6689453, 1.328125, 0.38745117, -0.65478516, 4.0898438, 2.34375, 1.4238281, -0.7919922, 0.75, -3.2128906, 1.3984375, -0.39697266, -1.625, -2.2832031, -0.29711914, -0.9633789, -1.1582031, 3.2089844, 3.1347656, -2.5761719, 0.10852051, -0.65478516, -0.99902344, 0.15197754, 0.31323242, 1.5693359, 0.68847656, 0.90771484, -0.15979004, -1.4091797, -2.609375, -0.62158203, 0.75683594, -0.5053711, -1.15625, -0.19055176, -0.07647705, 1.2041016, -1.15625, -0.7626953, -1.5957031, -0.9243164, -1.0380859, 0.5541992, 0.7138672, -1.1191406, 2.7714844, -0.61035156, 0.35229492, -1.0107422, -2.2597656, 2.7617188, 0.72998047, -1.3984375, 0.053375244, 1.7333984, -2.7480469, -1.1708984, -1.9160156, 1.5048828, 0.6899414, -0.37280273, 0.061553955, -0.8466797, 1.7675781, -0.75439453, 0.5341797, 0.48364258, 0.92041016, 1.0322266, -1.1025391, 0.34423828, -2.8925781, 0.35009766, 1.1220703, 1.3144531, -0.9970703, -0.30004883, 0.41992188, -0.21813965, -1.3740234, 0.2578125, 0.12780762, -1.4912109, -0.8588867, 0.111816406, -1.1845703, -0.68310547, 1.0498047, -0.80859375, -0.17944336, 2.4628906, 0.53222656, -1.0986328, -1.1259766, -1.0205078, 1.9423828, 2.1699219, -0.06561279, 1.9140625, 1.2734375, 0.03842163, -0.6665039, -1.4824219, -2.7539062, 0.6645508, 1.546875, 2.3945312, 2.1269531, 0.9038086, 0.47314453, -0.59716797, 0.52001953, 2.6933594, -1.3466797, 0.5283203, 1.3525391, 0.9477539, -2.0292969, -2.1601562, -2.7636719, 0.3383789, -1.7558594, -0.4440918, 1.3525391, 2.4121094, -1.0488281, 0.96484375, 1.1953125, 0.89160156, 0.096191406, 1.0791016, -0.58691406, -0.50146484, 0.2512207, 2.5273438, 2.0683594, 1.5146484, 0.44458008, -0.1661377, -1.3496094, -0.10852051, -0.99560547, 0.85595703, -0.40771484, -0.50097656, 0.63916016, -0.55126953, 0.20324707, 0.113464355, 2.2519531, 2.1679688, -1.1435547, -0.07562256, 0.38793945, -1.46875, -0.5073242, 0.9448242, -0.55371094, 2.6074219, -0.5551758, -0.050323486, 1.3798828, -0.9165039, -0.10192871, 1.0615234, 0.60253906, -1.0703125, 0.5654297, -2.0507812, -1.1083984, -1.8369141, 2.328125, -0.35717773, -0.023468018, -1.3232422, -1.0400391, 2.4101562, -1.0615234, 0.9765625, 0.89941406, 2.2382812, -0.8671875, 0.69970703, 1.1123047, 0.07293701, 1.0429688, 1.2666016, -0.10760498, 3.4863281, -1.8300781, 2.2558594, -1.3896484, -0.6435547, -1.7646484, 2.9941406, 0.97265625, -0.7216797, 3.4179688, -0.6635742, 1.8671875, 0.30126953, 2.4414062, -0.28149414, 0.9584961, -0.79833984, -1.2841797, -2.6894531, 1.5185547, 1.703125, -2.1464844, 1.8759766, -0.8623047, -0.47460938, -0.7705078, -0.30615234, 0.8203125, 1.3066406, -1.6777344, -1.0214844, 0.3828125, 0.60595703, -1.6269531, -2.5136719, 1.2128906, 0.7807617, -0.73828125, -1.3818359, -1.6337891, -0.56347656, -0.05557251, -0.54345703, -0.85058594, 0.78125, 0.23083496, 2.1757812, -1.5419922, -0.26489258, 1.9521484, -1.2041016, -0.24133301, 0.6430664, -1.2509766, -0.4182129, 0.017166138, -0.953125, -1.1357422, 0.90625, -0.93408203, -1.2216797, -0.6479492, -2.4433594, -2.3574219, -3.2871094, 0.72314453, 0.76464844, 0.11230469, 0.8442383, -0.46923828, 3.6933594, -1.6640625, 1.7109375, -1.2597656, 1.0498047, 2.4785156, 1.0351562, 0.7626953, -0.3630371, -0.58691406, -0.027008057, 4.3671875, 0.82714844, -0.2956543, -0.69970703, -0.21972656, -1.9746094, -2.46875, -2.5507812, -0.08758545, -0.97753906, -2.0371094, 1.0791016, -0.20422363, 0.40966797, 0.6538086, -1.9013672, -3.3789062]}, "B00QB6PBZQ": {"id": "B00QB6PBZQ", "original": "Brand: Outland Living\nName: Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket\nDescription: \nFeatures: DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements.\nCONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose.\nDISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items.\nWEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use.\nPERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25\" diameter by 18.5\" height to ensure a snug fit for your 20 lb propane tank.\n", "embedding": [-0.023468018, 2.7753906, 2.8964844, -0.18273926, 0.58740234, 0.27026367, 1.0566406, -0.5649414, -0.41723633, 2.6152344, -0.5175781, 0.6923828, -0.68066406, -4.3007812, 0.4807129, 0.07867432, 0.45874023, 2.3417969, 2.0546875, -1.2226562, 2.3535156, 0.4033203, 1.2617188, -0.52246094, 0.98779297, -0.7792969, 2.4980469, -2.2109375, -1.8486328, 0.6035156, 1.078125, 0.9873047, 0.120666504, 2.2089844, -1.2919922, -1.6679688, -1.7431641, 0.8798828, -2.5234375, 0.3161621, -2.7304688, -1.3740234, 3.4199219, 0.38378906, -1.5253906, -0.77246094, -0.19140625, -0.59375, -0.03414917, -1.7880859, 0.28173828, 1.1083984, 0.7158203, 1.5654297, -2.2675781, 1.3134766, 0.27441406, -2.109375, 1.0205078, 1.4160156, -0.64501953, -1.625, -1.4003906, 2.4101562, 0.095458984, 0.19213867, -0.5341797, -0.37646484, 0.001947403, 1.3984375, 2.15625, 0.04260254, 0.95996094, -0.8330078, -0.15307617, -0.04711914, -3.2382812, 2.0410156, 0.8286133, -1.0029297, -0.6743164, 3.4863281, -1.8564453, -1.1621094, -0.7973633, -0.8774414, -3.2050781, -0.78027344, -0.37719727, 1.2412109, -0.640625, 1.5986328, -1.7451172, -4.3632812, 1.3710938, -1.4277344, 1.7119141, 0.9267578, 1.6240234, 0.64501953, 0.63378906, 1.2021484, -1.1425781, 0.2956543, -3.0039062, -1.3427734, 0.81103516, 0.2130127, -0.27172852, -0.40625, -0.9638672, -0.38745117, 2.0058594, -0.25219727, 0.7451172, 1.2119141, -0.9296875, -0.029220581, 3.8222656, 1.4980469, 5.2421875, -0.8701172, 1.6015625, 0.38085938, 0.8647461, 0.9008789, -0.84765625, 0.050354004, 2.3125, -0.40063477, 1.5117188, -0.25708008, 0.6899414, -0.8769531, -1.3867188, -1.1220703, -1.1621094, -2.5507812, -2.5839844, 0.17456055, -2.0996094, -0.3713379, 2.0351562, -0.15100098, -3.5957031, -1.3964844, -1.8564453, 2.125, -0.49291992, -3.71875, -0.44702148, -1.8046875, 0.40673828, -1.3710938, 1.6542969, 0.45654297, 0.93896484, -4.0117188, 2.515625, 2.6210938, 1.9150391, -2.2441406, 0.7114258, 0.9243164, -0.22033691, -3.2304688, 1.7548828, -1.2626953, -1.3183594, 1.3095703, 0.13586426, -2.2851562, 0.6694336, 0.27197266, 0.2088623, -2.0214844, 1.1748047, 1.3857422, 1.5019531, -0.8574219, -3.3320312, -1.4248047, -1.5751953, 0.98339844, 1.2148438, -0.69091797, -2.6972656, -1.1240234, -0.47583008, -1.8232422, -1.9091797, 1.3242188, -1.9609375, -1.671875, -0.8989258, -3.4433594, -3.5253906, -2.1796875, 0.9658203, 1.7929688, 0.25854492, -0.55908203, -1.9257812, 1.6210938, -2.8164062, -0.96435547, 0.3203125, -0.08062744, 0.8105469, 1.3837891, 0.0035171509, -0.039245605, 3.0039062, 0.82910156, -0.8286133, -0.5708008, 2.5585938, 0.6098633, 3.1757812, 1.9863281, 0.8466797, 0.41503906, 1.2578125, 2.640625, 0.9423828, 1.8457031, 1.4248047, -0.36865234, -2.609375, -0.89746094, 1.1357422, 0.6225586, 0.2319336, 1.6435547, -1.1005859, 2.9941406, 0.45043945, 0.1899414, 1.3876953, -1.0673828, -0.6015625, -0.4711914, -1.1972656, 0.29663086, 0.116760254, 1.3779297, 0.27661133, 1.5996094, 2.265625, 0.46289062, 0.06616211, -1.3652344, 0.13977051, -2.4863281, -1.1025391, 0.46972656, 0.5073242, -0.13476562, 0.21862793, -1.9882812, 0.36767578, 0.6879883, -1.2587891, 0.36499023, -0.9140625, -0.1171875, 0.78027344, 1.3164062, -2.0136719, -0.23828125, -1.6132812, 0.94921875, 1.8486328, 0.029312134, 1.6914062, 0.5083008, -1.3369141, 2.4570312, 0.3395996, 1.921875, 1.4267578, -0.62841797, 2.1074219, -2.1953125, 0.20825195, 0.34960938, 2.2285156, 0.47094727, -2.2773438, 0.46875, 3.9101562, -1.3085938, -1.2958984, 1.3134766, 0.7993164, 1.0693359, 3.9003906, -1.7988281, 0.25708008, 1.6054688, 1.1337891, 0.0063476562, -1.1035156, 1.1474609, 0.026977539, -0.26635742, 0.06100464, -2.6777344, -0.07318115, 1.4345703, 0.08807373, -1.2333984, -1.0205078, 1.6982422, -1.7734375, -1.5751953, 4.4453125, -2.6445312, 1.0107422, 3.2089844, -0.6826172, 0.93359375, -1.2548828, -1.875, -0.6191406, 1.3183594, -1.640625, 0.47216797, 0.23718262, 0.13208008, -0.3383789, -3.09375, 1.1523438, -1.515625, 0.72216797, -1.2080078, -1.9814453, -0.9614258, -0.78759766, -2.2675781, 1.0878906, 0.20935059, -1.8037109, 0.9160156, 0.51123047, -1.1542969, -0.12261963, 1.7841797, -1.2978516, 0.7192383, 1.5048828, 2.328125, -0.22998047, -3.53125, 0.08959961, 1.2529297, -0.28100586, 1.2519531, -1.1660156, -0.4633789, -0.39916992, 1.234375, 1.1953125, -0.32836914, -0.11743164, -1.8642578, 0.35498047, -4.8007812, 2.0878906, -1.5322266, 1.6240234, -1.8925781, -0.5004883, -1.0087891, -1.9785156, 1.734375, -2.3339844, 4.140625, 1.7949219, 0.6118164, -0.7832031, -1.7294922, 0.12445068, -0.66552734, -3.0859375, 0.81884766, -0.34033203, -1.6445312, 0.26220703, -4.59375, -0.19604492, -2.3027344, -0.69873047, 0.74560547, 0.09039307, -0.9975586, -0.51416016, -0.9902344, 0.057647705, -1.4238281, 0.14978027, 0.10620117, -0.2763672, -1.0595703, -0.31884766, 0.5053711, 0.68359375, -0.41967773, 2.1855469, -1.7851562, 0.05316162, 1.375, -0.68603516, 2.0078125, -0.23339844, -3.9433594, -0.12780762, 2.2695312, 0.88671875, 2.5859375, -1.0605469, -1.6279297, -0.9321289, 0.80078125, 3.2636719, 1.2890625, 0.8925781, 0.056365967, -1.2421875, 1.0654297, -0.5942383, -0.11987305, 1.1611328, 0.17980957, 3.1992188, -2.5996094, 0.36206055, 0.69091797, 3.5703125, -4.5117188, -1.3417969, 0.38549805, -0.30297852, 2.8730469, -0.5361328, -1.015625, 0.4116211, 0.37890625, 0.96435547, -0.15698242, 0.93066406, 0.06298828, -0.5263672, 0.55078125, 0.98583984, 0.12854004, 1.6113281, -0.40698242, -1.2978516, 1.3798828, 0.5307617, -1.1767578, 0.19445801, 0.54345703, -0.32543945, -0.33374023, 1.7685547, 0.058013916, 1, -0.16772461, 0.8095703, 0.7626953, -1.6494141, 0.77197266, 1.0068359, 0.76220703, -0.19897461, -0.75683594, -0.4716797, -0.6660156, -1.0019531, 1.6103516, -1.3349609, -0.18371582, 1.3408203, -2.5566406, -0.97265625, -1.4384766, 2.4628906, -0.5546875, -1.8583984, -0.86865234, 1.3515625, -2.1386719, -2.546875, -0.0023403168, -2.4765625, -0.41455078, 3.9550781, 0.86572266, -2.03125, -1.3183594, -0.3581543, 1.6298828, 2.3515625, -0.5810547, -0.7739258, 0.29516602, 0.9375, -0.65625, 0.55371094, 1.3417969, 1.3115234, -3.0410156, 0.58935547, -1.2714844, 1.3320312, 2.5214844, -1.1191406, 1.5322266, 0.82421875, -0.27905273, 2.1992188, -0.36987305, 2.5136719, -1.5244141, -0.5678711, 2.9804688, -0.28100586, -0.22998047, -1.3271484, -3.1054688, -0.33129883, -1.6816406, -1.4951172, 2.4121094, -0.026107788, -0.59716797, -0.8911133, 0.3178711, -2.3808594, -2.9101562, -2.4296875, 0.48828125, -2.7753906, -1.1484375, 0.008476257, 1.2128906, -2.9140625, -1.8720703, 0.59765625, 0.8701172, 0.3635254, -1.15625, 0.12310791, 1.5585938, -2.1582031, -0.6113281, -0.05682373, 0.38793945, -0.49365234, -0.07299805, -0.6040039, -1.1865234, 2.6035156, -0.08453369, -0.9682617, 1.7460938, 3.2597656, 0.09320068, -0.16662598, 0.22375488, 0.35473633, 2.7871094, -0.95410156, -3.5507812, -3.0117188, -1.28125, 1.078125, -0.7495117, -1.0048828, 0.88916016, -0.8701172, 0.9379883, 0.9555664, 1.3847656, 1.4140625, -0.5493164, -2.1367188, 1.8720703, 0.2878418, -1.8515625, -2.296875, -1.8417969, 0.58740234, -0.9614258, -0.7578125, -1.296875, 0.97802734, -0.2944336, 0.5991211, -1.5605469, 1.8652344, 2.2460938, 3.2167969, 2.6308594, -0.83154297, -0.81396484, 2.0566406, 0.64501953, 1.1318359, 1.4667969, -0.15576172, -0.4165039, 1.7675781, 0.5786133, -2.5527344, -1.0175781, -0.2241211, -0.87402344, -0.4946289, -0.025421143, 0.51464844, -1.6162109, -0.7475586, -0.0690918, -2.40625, 3.609375, -2.2597656, 1.8886719, -0.19104004, -0.06640625, -1.2246094, 2.4199219, 0.025115967, 1.3183594, 0.57128906, -0.067871094, -0.17895508, -0.08123779, 2.2109375, 0.6958008, 1.3242188, -1.7841797, -0.13671875, -0.25561523, 0.5292969, -0.10998535, -0.88671875, 1.765625, 1.6376953, -0.17700195, 0.9609375, 1.6679688, -0.3605957, 1.8173828, 0.018173218, -1.1083984, -0.69189453, -1.0429688, -0.033996582, 1.8730469, -0.73095703, -2.7773438, 0.2939453, 2.0253906, -1.5195312, 1.9589844, 1.2246094, -1.4013672, 0.107910156, -2.4160156, -2.0292969, 0.29614258, -0.36889648, -0.2286377, -0.9458008, 0.15856934, -0.71435547, 0.7998047, 2.3847656, -0.8876953, -1.546875, 1.2695312, 0.43530273, 0.07800293, -0.34057617, -1.3847656, -1.7519531, 0.13806152, -1.1738281, 0.35864258, 1.6464844, 0.33276367, 1.6015625, -2.1601562, -1.0214844, -1.7705078, 2.5078125, -2.7773438, -0.85498047, 1.8554688, 1.4052734, 0.076171875, -1.6318359, -1.4189453, -1.0517578, 1.6679688, 0.91552734, 2.53125, 0.14685059, -1.4277344, -3.9433594, -3.5097656, -0.90625, 0.6191406, -1.015625, 1.0380859, -1.4482422, -1.4794922, 0.6118164, -1.1962891, 0.47094727, -1, -0.18859863, -0.5957031, -1.2763672, -0.45361328, 0.5371094, 0.5517578, 2.4648438, 0.14355469, 0.17944336, -1.078125, -1.2753906, -2.2246094, 1.2714844, -1.3583984, 0.60546875, 1.3164062, 0.34033203, 1.7548828, 1.7480469, 1.1914062, -0.10046387, 1.5390625, -0.29077148, -0.76123047, 2.5761719, -2.4453125, -0.10772705, 1.1337891, -0.87158203, 1.8310547, 0.25317383, 0.95410156, -1.7011719, 1.03125, 0.10015869, 1.7158203, -0.14941406, 1.0732422, 1.2548828, 0.5185547, 1.3652344, 2.4921875, -0.4440918, -1.0048828, -1, -2.125, -1.2138672, -2.6503906, -1.0097656, -0.99853516, -0.15600586, 1.4335938, 0.89501953, 2.1171875, 1.3994141, 0.80078125, -2.4355469, 1.5185547, -2.0175781, 2.2265625, 1.6181641, -1.8417969, -2.0078125, -3.296875, 1.1513672, 2.1367188, -1.0097656, 0.26464844, 0.5058594, -1.7285156, 1.6552734, -0.9560547, 2.0507812, 2, 2.1347656, -1.1582031, 0.27734375, 1.3183594, -0.18688965, 2.3652344, 0.011268616, 1.21875, -0.070129395, 2.0507812, 2.0605469, -1.9052734, 0.35791016, -0.50146484, 1.3798828, -1.1835938, -1.0253906, 1.7900391, -1.6748047, -0.2697754, -1.0107422, -0.017166138, -2.2441406, 1.6660156, 1.5195312, -0.80126953, 0.609375, 0.75097656, -0.78759766, -0.0031929016, 1.2324219, -0.40283203, -0.51953125, -0.3479004, 0.24584961, 0.81640625, 1.8779297, -1.2255859, 1.4082031, 0.99902344, 0.7519531, -1.3818359, 2.0957031, 1.1064453, 1.9589844, 1.4404297, 3.3027344, 3.6914062, -0.51416016, 1.9248047, -0.68359375, 2.2441406, 2.4140625, -2.0039062, 0.73046875, 1.1816406, 2.6835938, 0.8647461, -0.6323242, 0.11480713, 0.65185547, -0.40673828, -1.0683594, 0.25048828, 0.87841797, -3.3417969, 1.2851562, -0.14123535, 0.3088379, -0.31469727, 2.0058594, -2.2695312, -1.2011719, 0.30981445, -0.13427734, 1.1357422, -1.6318359, 0.73095703, -0.19372559, -0.9526367, 0.2265625, 0.14868164, 0.9614258, -1.4882812, -2.4433594, -0.6196289, 3.9296875, 1.6103516, 2.1464844, -0.54541016, 0.43652344, -0.012458801, 2.2304688, 1.3359375, -0.45043945, 1.2519531, -1.4345703, 1.4140625, 2.9785156, -2.5703125, -0.15966797, 1.0283203, -0.23400879, -4.484375, -0.068359375, 1.4042969, 1.9228516, -0.46191406, -3.6171875, -0.18310547, -1.4365234, 1.2998047, -4.40625, -0.51660156, -0.17370605, -3.453125, -0.13708496, -0.6455078, -1.6748047, 3.0742188, 2.1308594, 1.4316406, 2.5234375, 0.88134766, 1.1923828, -0.17773438, 1.1552734, -1.3759766, 1.7050781, -0.8149414, 2.2734375, 1.9306641, -2.5683594, -0.7163086, 2.7597656, 0.2692871, 0.56347656, 0.5444336, -1.3388672, 2.4628906, 0.54052734, -1.7519531, 0.13305664, -0.57421875, -0.1262207, -0.9423828, -0.23937988, 0.34155273, -1.3222656, -1.2148438, 1.9746094, -2.5839844, 0.016311646, 0.7788086, -0.35961914, 2.1875, -0.45117188, -2.1171875, -0.46069336, -0.3935547, 1.6386719, -2.3984375, -0.9707031, -2.4003906, 1.9521484, -0.13476562, -1.2460938, 0.09838867, -0.0017700195, -0.43286133, 0.31860352, 2.7167969, 0.5527344, -0.046875, 0.3881836, -0.2602539, -0.25952148, 2.5859375, -0.38110352, 0.36157227, -0.5488281, -2.65625, 0.71240234, -0.44799805, -0.021987915, 0.8359375, 4.1367188, 1.4951172, -0.7998047, -0.6489258, -3.1835938, -1.2568359, -1.90625, 2.2519531, 0.6801758, 0.3330078, 0.6826172, 0.09350586, 2.2109375, -0.7734375, -1.2314453, 0.095458984, 0.1352539, 1.2285156, -1.0546875, 0.09161377, 2.3378906, 1.0507812, 0.7294922, 2.3867188, 2.8554688, 0.45922852, 0.6826172, 2.546875, -2.6171875, -2.8613281, -0.83691406, -1.0566406, -0.8989258, 1.4794922, 2.1367188, 2.2363281, -0.03994751, -1.4892578, -4.2539062, -0.42529297]}, "B01IRR7HSU": {"id": "B01IRR7HSU", "original": "Brand: GasOne\nName: GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case\nDescription: Who doesn't like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we've come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.\nFeatures: Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case\nPiezo-electric ignition that eliminates the use for lighter/matches\nBuilt in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane)\nHeat adjustable dial to your desired heat\n", "embedding": [-1.8574219, 0.91552734, 0.02659607, 0.3942871, -0.55078125, 1.5673828, 0.77197266, 0.28149414, 1.328125, 0.3227539, 0.27416992, 0.17175293, 0.4050293, -1.3964844, 0.49316406, 0.734375, 0.39697266, 0.45629883, 0.068359375, 3.0097656, 2.2714844, -0.8520508, 1.6191406, 0.0058555603, 0.875, 0.86816406, 2.2988281, -3.8769531, -0.36254883, -0.59277344, 2.0566406, 0.73828125, -0.3149414, 1.5732422, -3.2988281, -0.88964844, -0.6645508, 0.80029297, -1.5830078, -2.2421875, -1.7900391, 0.22668457, 1.8876953, -0.050964355, -0.67333984, -0.42993164, 0.9638672, -0.105895996, -2.1152344, 1.0214844, 1.2597656, 2.4902344, -1.0205078, 2.5585938, -0.7236328, 0.7421875, 0.15673828, -0.6723633, 1.9658203, 0.8754883, 1.2480469, 1.7783203, -2.1679688, -0.41918945, -1.4658203, -0.7392578, 0.18286133, 0.42260742, -2.6875, 0.13061523, 2.2519531, 0.65722656, 0.4482422, 1.2753906, -2.0429688, -0.32885742, -2.7050781, 2.6269531, 1.9423828, -0.045074463, -0.51123047, 1.0166016, 0.44335938, -0.96484375, 0.7324219, -0.2709961, 0.7192383, 0.06274414, 1.4482422, 1.078125, -2.5761719, 1.6240234, -2.1679688, -4.1132812, 0.5366211, -0.7207031, 0.4675293, 1.0390625, 0.71533203, 1.6386719, -0.69970703, 2.0644531, 0.40600586, 1.7880859, -1.0458984, -1.3623047, 2.4492188, 0.5332031, -3.1230469, 1.0527344, -0.99316406, -1.7402344, 0.5263672, -1.4023438, -0.6958008, 0.8774414, -0.36157227, 0.58740234, 2.5273438, 0.18444824, 2.265625, -0.92529297, 0.96435547, -1.8115234, 1.765625, 1.4101562, -1.5371094, 0.8535156, 3.0683594, -0.6508789, -0.7319336, 1.1572266, 1.5351562, -1.3789062, -0.22937012, -1.4150391, -1.1308594, -1.9423828, -3.859375, 0.68115234, -1.9111328, 1.0097656, 0.8930664, -1.484375, -2.0859375, -0.033996582, -2.453125, 1.7304688, 1.5556641, -1.921875, 1.5927734, -2.2128906, 1.1171875, -2.4628906, 3.0273438, -0.65283203, -1.0019531, -0.2512207, 2.1484375, 1.3535156, 0.40185547, -2.0429688, -2.5605469, -0.06213379, 0.36499023, -1.7265625, 1.0820312, 1.6503906, -0.890625, -0.18054199, 0.15319824, -0.6879883, -0.72558594, 1.078125, 0.031951904, -1.3378906, -0.86865234, 1.4423828, 0.9873047, -1.3457031, -3.7011719, -2.9082031, 1.2861328, -0.11987305, 0.37524414, -1.0107422, 0.062805176, -0.51708984, 0.0012550354, -1.1962891, -1.0966797, 1.1513672, -0.48486328, 1.4619141, 0.24523926, -1.8310547, -1.9804688, 0.4333496, -0.4807129, 1.6865234, -0.031158447, -1.1455078, 0.12731934, 0.7836914, -3.3808594, -2.4726562, 0.3557129, -1.9003906, 0.40576172, 2.1386719, 1.0273438, 1.1015625, 2.015625, -1.0488281, -1.0107422, -1.5947266, 2.4667969, 3.0917969, 0.81591797, 0.43945312, -0.40600586, -1.3613281, 1.0302734, 0.074523926, -0.045562744, 2.9199219, 1.0761719, -0.609375, -2.4003906, -2.6035156, 1.2265625, 0.30078125, 0.78027344, 0.09448242, -0.50390625, 1.7851562, 1.1181641, -1.2666016, -0.45214844, 0.3762207, -0.49047852, 0.52197266, -1.4160156, 0.23754883, -1.9677734, 0.984375, -0.22839355, 0.44555664, 2.453125, -0.3857422, 0.41333008, 0.69677734, -0.62890625, 1.359375, -2.8085938, 0.9321289, 1.3945312, 0.25830078, -0.5371094, 0.030654907, 1.1503906, 2.5742188, 1.2265625, 0.63964844, 0.8886719, -1.4482422, 0.39233398, 0.099731445, -1.3583984, 0.4807129, 1.8574219, 1.1494141, 2.3886719, -1.0351562, 2.2460938, 0.22070312, -1.7265625, 3.0351562, 1.2080078, 1.5839844, 1.1855469, -1.5234375, -0.28222656, -2.3925781, 0.6879883, 1.0224609, 2.7851562, 0.090270996, -1.3076172, -2.0449219, 3.8085938, -0.76708984, -3.5097656, 1.4882812, -0.51708984, -0.90185547, 1.0351562, 0.23425293, 0.7524414, 0.20288086, 1.0166016, 0.017944336, -0.1427002, 1.3740234, -1.1474609, 0.7270508, -0.9082031, -0.7626953, 0.7626953, 0.7373047, 0.030532837, -0.77783203, -0.60791016, -0.113464355, -2.2851562, -0.72265625, 2.546875, -0.32714844, 0.9667969, 0.7036133, 1.921875, 2.1757812, 0.17663574, -3.0996094, -0.9663086, 0.34204102, 0.8515625, 0.20666504, -1.3085938, 0.06524658, 0.14904785, -1.5185547, 0.5751953, -1.5585938, -1.2519531, 0.47558594, -1.4462891, -2.5976562, 1.2285156, -2.7539062, -0.4921875, -0.022842407, -3.40625, 1.3496094, -0.16125488, -1.7255859, 0.39013672, 0.079589844, -1.8925781, -1.3027344, 1.1835938, 1.2216797, -0.2919922, -2.8671875, -0.21606445, 0.20263672, 0.70214844, 0.4807129, -1.0585938, -0.609375, 0.3486328, 0.012832642, -0.26733398, -1.1025391, -1.5195312, -0.7080078, 1.8134766, -3.7988281, -0.42797852, -1.0292969, 0.4362793, 1.4765625, 0.15722656, -2.0722656, -1.015625, 2.0917969, 0.19763184, 2.3261719, -0.80615234, 1.1289062, -1.2304688, -1.046875, -0.24951172, -2.5800781, -1.6503906, 0.15100098, -0.50634766, -0.14538574, -0.69921875, -1.0722656, 1.0664062, 0.2446289, 0.44140625, -1.59375, 0.97509766, 0.09265137, 0.44091797, 0.23962402, -0.7182617, 0.45703125, 0.67871094, -0.20214844, -4.5898438, -0.46411133, 0.7558594, -1.8496094, -0.16687012, -1.0664062, 0.10119629, 0.09338379, 0.5756836, 1.2089844, 0.0065727234, -0.71191406, -0.5859375, -1.6689453, 1.7773438, 0.32788086, -1.0400391, 1.6484375, -1.4873047, 0.25634766, -1.6767578, -0.18615723, 2.9667969, 0.61035156, 1.6171875, -0.23156738, -0.6850586, 1.6972656, 0.3227539, 0.24475098, -2.3554688, -0.85302734, 2.8945312, -2.1054688, -0.9892578, 1.3759766, 0.6777344, -3.0566406, -1.1943359, 1.3710938, -0.2565918, 2.359375, 1.4169922, 0.5048828, -0.22937012, -0.6425781, 0.019424438, 0.80859375, 0.06604004, 1.25, -0.24536133, 0.36279297, -2.2871094, 0.91552734, 0.79345703, 1.5371094, 2.484375, 1.3476562, 1.2753906, -1.0546875, -0.23449707, 0.06390381, 1.5966797, 0.8144531, 3.7890625, -0.25756836, 0.017547607, -0.61279297, -1.0136719, 1.0498047, -1.4570312, 0.37524414, 0.86376953, 1.1376953, -0.49047852, -0.07659912, -2.0957031, -0.13427734, -1.09375, 2.9433594, -0.28515625, -0.69921875, 1.1650391, -1.7597656, 0.31958008, -1.515625, 1.1220703, -0.89208984, 1.1201172, 0.88134766, 0.5307617, -2.3632812, -0.9560547, -1.0527344, -0.86621094, 0.6611328, 3.296875, -0.30029297, -1.8164062, 2.0175781, 0.2836914, -0.1015625, 2.7070312, 0.57373047, -0.25, -1.1728516, 0.69921875, -0.5859375, -1.6064453, 1.3994141, 0.52734375, -1.6484375, 1.671875, -2.078125, -0.33691406, 1.2539062, -2.0683594, 0.25952148, 1.2958984, -0.39257812, 1.1914062, -1.7451172, 3.2988281, 0.04598999, -0.96728516, 2.7851562, -2.5429688, -0.4880371, -1.7304688, -2.4804688, 2.3945312, -1.6660156, 0.052947998, 3.7949219, 1.4121094, 1.6767578, 1.0703125, 0.6513672, -2.1113281, -1.5634766, -0.5854492, 0.081970215, -2.6660156, -1.2431641, 0.038330078, 0.30151367, -2.0039062, -0.9824219, 0.022705078, -1.0371094, -0.609375, 0.05154419, -2.3027344, 0.29370117, -0.6171875, 0.72216797, -0.054626465, -1.0292969, -0.29736328, -2.2128906, -0.77197266, -3.0722656, 2.0097656, 1.5039062, -0.9291992, -0.6064453, 4.3515625, 1.8769531, -1.6318359, 0.28466797, 1.6767578, 0.053985596, -0.2770996, -2.53125, -1.8574219, 0.35424805, 0.9941406, -0.36816406, -1.3876953, -0.6723633, -1.0136719, 1.0224609, 2.4277344, 2.3027344, 1.2304688, 1.4599609, -2.2167969, 1.4101562, -1.3916016, -2.3164062, -0.120666504, -1.7099609, -0.22216797, -0.6035156, -0.03543091, -1.8408203, 1.3085938, -0.32006836, -1.1357422, -2.6523438, 2.1445312, 0.9116211, 1.0332031, 1.6445312, -0.5097656, -0.7109375, 1.6855469, 1.5380859, -0.095336914, 1.53125, 0.12609863, 1.1689453, 1.1923828, 1.5244141, -1.5888672, -1.7900391, 2.0898438, -0.5151367, 0.18847656, 0.07446289, 0.34399414, -2.4960938, -0.77197266, -0.80615234, 0.27294922, 1.8017578, -2.4296875, 1.2119141, 0.8017578, 0.44555664, -2.171875, 0.7446289, 1.4863281, 2.5859375, -0.12237549, 1.5380859, 0.34423828, 0.23596191, 1.6113281, -0.021652222, 1.5751953, -0.7788086, 0.5566406, 0.78466797, 0.2442627, -1.7753906, -0.57666016, 2.5449219, 1.9326172, 0.3737793, 2.6777344, -0.41186523, -0.1427002, 1.4033203, -0.44506836, -2.28125, -0.3227539, -0.5722656, -0.031097412, 0.7089844, -0.7363281, -1.4980469, -0.30322266, 2.2109375, -0.2775879, -0.4897461, 1.7158203, -1.2578125, 0.46435547, -3.0703125, -0.060638428, -0.61279297, -0.45581055, 0.86376953, -2.0878906, 0.31079102, -1.3515625, 1.4589844, 1.3349609, 0.25341797, 0.59472656, 1.4423828, -0.8696289, 3.0546875, 0.46972656, -0.49731445, -3.1054688, 1.8740234, 1.1328125, 0.84033203, 1.1445312, 0.88134766, -0.12121582, -1.3642578, -1.390625, -0.96972656, -0.29052734, -2.1816406, 0.17980957, 1.2724609, -0.3527832, 0.8203125, -0.044128418, -0.2286377, -0.35180664, 1.8496094, -0.27783203, 1.1113281, -1.1894531, 0.4086914, -2.2929688, -4.9804688, -1.1357422, 0.6816406, 0.48608398, -1.1269531, 0.3178711, -2.59375, -0.0051651, 0.52685547, 0.66259766, -2.6386719, 0.21154785, -0.92041016, -0.38378906, -0.72802734, -0.43896484, -0.20910645, 1.5292969, 1.2919922, -0.53271484, 0.39746094, -1.5498047, -1.1230469, 0.12768555, 0.6459961, -0.07635498, 0.072387695, -1.5703125, -2.7734375, 1.8974609, -0.35253906, -2.8652344, 1.0761719, -1.5048828, -0.9707031, 1.1875, 0.06695557, 0.8828125, 1.2226562, -1.0068359, 1.9228516, -0.5004883, -0.5048828, -1.4990234, 1.1660156, 0.07110596, 1.484375, -0.4284668, -2.3476562, 2.0703125, -0.57910156, 1.5537109, 1.0263672, -1.2978516, -0.97021484, -1.7304688, -1.3535156, 0.25390625, -1.5761719, 0.032806396, 1.1230469, 1.4267578, 0.62109375, 1.4833984, 0.23425293, -0.46875, -0.6923828, 0.2697754, 1.3017578, -1.5957031, 3.15625, -0.06915283, 1.0820312, -2.1699219, 0.008804321, 1.9863281, 0.06774902, 1.1240234, -0.08343506, 1.3427734, 0.28222656, 1.0732422, -1.4033203, 1.6777344, 2.9511719, 2.0136719, -0.64990234, 2.2167969, 1.8261719, 0.43701172, 0.33007812, 0.95751953, -0.52441406, -0.7636719, 2.3417969, -0.7109375, -1.0419922, 0.35083008, -0.3017578, 1.6308594, 0.6152344, -0.24255371, 1.0380859, -1.1855469, -1.1113281, -1.6259766, -1.1289062, -2.3359375, 2.0410156, 1.890625, -1.6230469, -0.35009766, 2.8457031, -1.1962891, 0.11584473, 2.8730469, 1.6464844, -2.2519531, -0.20214844, -0.33129883, -0.6220703, 0.6376953, -1.90625, 0.7734375, 2.5390625, 1.0390625, 0.44384766, 2.5332031, 0.1550293, 2.6308594, 0.8730469, 0.8569336, 1.640625, 0.5703125, 1.2900391, 1.3964844, -0.7050781, 1.0605469, 0.011199951, 0.31274414, 2.1347656, 1.5878906, 0.10491943, -1.5039062, 1.9179688, -0.3540039, -0.67041016, -0.9189453, 1.0966797, 1.1650391, -3.8125, 0.77783203, 0.9707031, -0.22692871, -2.7070312, 0.34545898, -0.044769287, -1.2636719, 0.09259033, 0.08306885, 0.6894531, -1.2519531, -0.5786133, -0.84228516, 0.14343262, 2.3203125, -1.5214844, 0.93066406, -0.5991211, -1.4248047, -0.59375, -0.11566162, -0.3972168, 1.1611328, 0.9370117, 2.0273438, 1.0703125, -2.109375, 1.2080078, -2.8242188, 0.8955078, -0.87402344, 4.8046875, 0.7998047, -0.87402344, 1.453125, -1.3808594, -2.3652344, -4.71875, 1.2519531, 0.51123047, 0.66015625, -0.010017395, -3.9980469, 2.0136719, 1.0673828, 0.9169922, -3.8339844, 1.2626953, -0.2722168, -1.6269531, -0.65185547, 2.4921875, -0.34375, 2.7851562, 0.9082031, -1.3505859, 1.3105469, 1.5107422, 0.19042969, -1.1923828, -1.5664062, 1.7285156, -0.45581055, -0.5761719, 1.2773438, 0.9902344, -0.765625, -0.47265625, 1.3496094, 1.7939453, 1.1464844, 0.5834961, -0.57177734, 1.703125, -0.8388672, -0.23461914, 0.8442383, -1.1875, -0.52685547, -1.5576172, -0.081848145, -1.265625, -1.9101562, 0.78564453, -0.053710938, -3.0390625, -0.34985352, 1.2119141, 0.12585449, 0.5776367, 1.3173828, 0.097839355, 0.4970703, -2.0507812, 0.51708984, -2.2949219, -1.0878906, -0.05215454, -0.74365234, -0.64404297, -1.0068359, 0.8286133, -0.93115234, -0.19421387, 1.0546875, 0.98535156, -0.9770508, -0.70654297, 0.1854248, -1.0888672, 0.4597168, 2.4511719, -1.8964844, 0.6035156, -0.33496094, -2.2421875, 0.1586914, -1.8496094, -0.61328125, 0.32861328, 1.6259766, 1.8457031, 1.7226562, -1.6035156, -1.6650391, 0.20471191, -3.4785156, 1.3759766, -0.5810547, -0.54248047, 0.07946777, 2.3808594, 2.5332031, 0.2241211, 0.54785156, -0.86035156, 0.040161133, 0.16833496, -1.0791016, -0.0076789856, 1.2539062, -0.4453125, 0.62890625, 1.3935547, 3.8339844, -0.05343628, 0.5600586, 0.17211914, -0.27392578, -1.421875, 1.1435547, -1.7421875, -0.74121094, 1.8505859, -0.6748047, 1.8710938, 1.9707031, -0.19812012, -2.5507812, -1.6923828]}, "B007HG7SM8": {"id": "B007HG7SM8", "original": "Brand: Camco\nName: Camco 59843 20\" Pigtail Propane Hose Connectors - Acme x 1/4\" Male NPT\nDescription: \nFeatures: Connect your camper's 1/4\" NPT inlet regulator to a 20lb or 30lb LP tank\nRated for 200,000 BTUs per hour\nBuilt-in excess flow and thermal protection\n20\" hose\nACME nut x 1/4\" male NPT\n", "embedding": [-0.8676758, 0.97802734, 0.45654297, 1.0390625, 0.4477539, -2.8691406, 0.921875, -0.66503906, 1.2753906, 1.6308594, 2.6308594, 0.30517578, 1.6240234, -1.9423828, 0.4111328, -0.41259766, 0.20019531, -0.9394531, 1.4023438, -0.63134766, 1.6679688, -1.7734375, 1.4179688, -0.9770508, 0.56933594, -0.19494629, 2.7128906, -1.6845703, -0.8564453, 1.5136719, 0.38476562, 0.9433594, -0.2043457, 0.5463867, 0.5317383, 1.4365234, -0.13720703, -0.6816406, -3.3144531, -0.27734375, -3.3457031, 1.0957031, 2.53125, 0.0011205673, -1.7109375, -0.10803223, 2.2167969, 0.9785156, 1.3564453, -1.2080078, -0.29345703, 0.3022461, -0.875, 0.97509766, -0.13586426, -1.3125, -0.25805664, -1.1259766, -0.31225586, 1.9550781, 1.0009766, 0.9145508, -2.0683594, 1.5791016, -2.3671875, 2.5292969, -0.3154297, -0.8183594, 1.1337891, 1.9658203, 0.7207031, 2.609375, -1.0664062, -1.9277344, -1.5498047, 1.9091797, -4.3046875, -0.11407471, 2.1171875, -0.06793213, -1.3535156, 1.3251953, 0.045532227, -1.5488281, -0.20874023, -1.0087891, -1.6054688, 1.1416016, -0.045318604, 1.1816406, -2.3320312, 2.6582031, -3.0898438, -2.0371094, -0.06237793, 2.3125, -0.77441406, 0.17041016, 3.3144531, 0.40649414, -1.4414062, -1.5322266, -0.22595215, 2.4355469, -3.2265625, -0.94140625, 0.31103516, -0.97314453, -3.5898438, 0.703125, -1.4453125, 0.6098633, 3.1679688, -1.6103516, -0.5991211, -2.6542969, 0.12573242, -3.1855469, 1.2001953, -0.28027344, 4.2109375, 0.7036133, 1.1503906, -0.46850586, 2.3671875, 0.9326172, -1.0009766, 0.12792969, 0.29223633, 1.4160156, 0.14733887, -1.2109375, 1.6191406, 1.0927734, 1.6572266, -2.5195312, -0.32910156, -2.7324219, 0.10461426, -0.13903809, -4.0976562, 0.097473145, 1.2421875, 0.54785156, -5.0390625, 0.66064453, -2.0546875, 1.8896484, 0.7631836, -1.5322266, 0.5600586, -3.3300781, -0.94140625, -1.2871094, 1.375, 2.6171875, 0.25463867, -1.5947266, 0.6791992, 0.68115234, -0.33935547, 0.22375488, -1.4775391, 1.9921875, -0.6191406, -2.4941406, -0.08728027, -1.3466797, -0.796875, 1.9882812, -0.50439453, -3.4746094, 2.1933594, -0.9980469, -2.0292969, -0.98291016, 3.4882812, 1.9257812, 2.8222656, 1.9628906, -3.421875, -0.86376953, -1.2724609, -1.8291016, 0.6660156, -0.80615234, -2.0917969, -1.0966797, 3.0917969, -0.04776001, -0.3540039, 0.4399414, -0.8183594, 0.50439453, -0.7861328, -1.9677734, -2.0546875, -0.29541016, 1.5683594, 1.234375, -0.7788086, 0.3293457, 0.87060547, 1.4316406, -1.5712891, -0.85498047, 1.2050781, 1.1240234, 1.2285156, 3.1523438, -0.20690918, -0.20935059, 2.28125, -1.4453125, -1.7578125, -1.4101562, -0.28198242, 2.6347656, 1.2236328, 0.75439453, 1.1074219, 0.61572266, 2.4160156, -1.5078125, 0.78515625, -0.08734131, -1.0917969, 1.8173828, 0.4260254, -1.4863281, 1.8847656, 2.5097656, -1.4521484, -2.0488281, 0.14855957, 1.8554688, 1.1533203, -1.1748047, 1.5009766, 0.52246094, -0.3010254, -1.171875, -0.6635742, -3.2578125, 2.1640625, 0.42041016, -2.5097656, 0.17736816, 2.75, 0.49438477, 1.0166016, -0.1060791, -2.1210938, -0.62402344, -2.4238281, 0.2944336, -0.07446289, 1.71875, 0.70947266, -2.9375, 1.8837891, 0.99121094, -0.9663086, 1.5058594, 1.8300781, 1.4140625, 0.9121094, -2.6679688, 0.42749023, 1.875, -2.5644531, 2.9492188, 1.0703125, -2.6875, -0.043426514, 0.8100586, -1.2910156, 1.9560547, -0.8100586, 0.6386719, 1.0634766, 0.0546875, 1.2011719, -2.1230469, 2.5507812, 0.39697266, 1.3710938, -0.056488037, -2.6152344, 2.8691406, 2.1269531, -0.0063934326, -1.2861328, 1.7275391, 2.2382812, 2.0625, 2.1933594, 1.0410156, 0.16394043, -1.0273438, -2.0078125, 2.1171875, -1.2431641, -0.1307373, 2.1582031, 0.34057617, -0.6464844, -1.9453125, 3.6425781, 0.8154297, -1.1240234, -1.5859375, -2.9277344, 0.21240234, -1.3759766, -0.8569336, 0.69140625, -0.8208008, -0.8125, 1.5488281, 0.30419922, -0.0063171387, 2.140625, -2.2265625, 1.9902344, 0.67333984, -1.6523438, 0.80078125, 1.9853516, 1.9609375, 1.4628906, -2.0371094, 1.3085938, -0.66796875, 0.5527344, -0.3708496, -0.23999023, -2.171875, 2.21875, -0.45532227, -1.9775391, -1.4277344, 0.8544922, 4.6015625, 1.21875, 0.19689941, -0.67822266, 2.75, 0.2680664, -0.8066406, 0.20922852, 2.4042969, -1.1621094, -3.5390625, 0.6074219, -1.109375, -0.43041992, 2.7597656, -0.79052734, 1.3945312, 1.7050781, 1.2109375, 0.96435547, 0.064086914, -1.7138672, -2.1191406, 1.1162109, -2.3925781, -0.30078125, -0.16369629, 1.1298828, -0.60546875, 0.6308594, -2.2519531, -1.4316406, 1.1240234, -1.8886719, 2.5566406, 0.9458008, 1.3242188, 0.19104004, -2.3769531, 0.60009766, -1.3583984, -2.6523438, 0.5678711, -0.0914917, -1.2753906, -1.0078125, -3.4042969, 0.94189453, 1.0361328, 0.6123047, -0.69873047, -1.9345703, -0.029251099, -1.4228516, 1.2685547, -0.044677734, 0.8251953, 2.5878906, -1.1152344, -1.8173828, 1.3242188, 0.8911133, -0.140625, -1.8486328, 0.025436401, -0.62646484, -0.53808594, -0.8256836, 0.6923828, 0.2277832, 1.0371094, -1.1630859, -3.7167969, 0.17407227, 4.0976562, 0.8876953, -0.06161499, -0.5097656, -1.2929688, -4.0742188, -0.49291992, 1.8603516, 3.5703125, 2.2421875, 0.5883789, 2.3164062, 0.47680664, 0.64990234, 0.037994385, -0.7060547, -0.41503906, 3.2402344, -2.9140625, -1.4804688, -0.9326172, 2.5195312, -4.8046875, 1.0107422, -0.06518555, -0.47875977, 1.8261719, 1.2373047, -0.33935547, -0.6230469, 1.0839844, 1.8349609, -0.6425781, -0.29370117, -0.34936523, 2.1621094, 0.012542725, 0.96191406, 1.2060547, 0.6801758, 1.2265625, -1.0009766, -0.25878906, 0.10882568, -0.5595703, 0.74560547, 0.04852295, -1.0644531, 1.3251953, 0.30493164, 0.796875, 1.7041016, 1.1835938, -0.5854492, 0.9375, -2.2480469, 0.02859497, 0.054595947, 2.2070312, -0.8432617, 1.5615234, -0.09173584, 0.1381836, 0.33569336, -0.44555664, 0.2841797, 2.0957031, 1.5039062, -1.0888672, -0.21728516, -0.107055664, 3.5507812, -0.012207031, 0.6010742, -0.66308594, -0.9277344, -1.0390625, -2.0917969, -1.0986328, -2.6308594, -0.26782227, 3.6992188, 2.1953125, -1.6621094, -0.9692383, 0.65234375, 1.6884766, 1.4970703, -1.6875, -0.8857422, -2.5605469, -0.38476562, 0.058410645, -1.0898438, 1.4941406, 0.39208984, -1.4960938, -0.46118164, -0.06536865, 0.3317871, 1.2998047, 0.70996094, -1.4824219, 0.23876953, -1.9208984, 1.3945312, 0.0836792, 1.5078125, 0.69628906, 1.5898438, 0.46166992, -2.0332031, -1.0878906, 0.32128906, -3.3398438, -0.15783691, -0.87353516, 0.073913574, 2.2070312, 0.5083008, 0.029525757, 2.1445312, 1.2802734, -3.3417969, -1.75, -2.0371094, 1.71875, -3.1679688, 0.73876953, 0.6855469, 1.2607422, -0.5727539, -1.1064453, 0.025131226, -1.5742188, -0.5854492, -2.21875, -1.4873047, -0.1685791, -0.57470703, 1.4873047, -1.2685547, -0.52441406, 1.1962891, -0.46679688, -0.50390625, -3.6347656, -0.20654297, -0.73583984, 1.0908203, 0.11883545, 2.9394531, 2.0703125, -1.8662109, -0.03012085, -0.40185547, 1.1523438, -0.87890625, -3.1074219, -1.2910156, -0.53271484, 0.12310791, -0.9838867, -0.64990234, -1.1259766, 0.12182617, -0.119506836, -0.5019531, 1.6533203, 2.2148438, -3.0292969, -1.2109375, 0.5595703, 0.6074219, -0.5498047, 1.1308594, -1.1201172, -0.4128418, -2.03125, -0.43969727, -1.3076172, -0.110961914, 1.8388672, 1.0644531, -2.1582031, -0.7036133, -0.72021484, 0.9736328, 0.19458008, 0.70947266, -1.5166016, -0.64453125, 1.2109375, 0.7192383, -2.0117188, -0.9316406, -0.05987549, -0.0013475418, 0.2836914, 0.48999023, 0.20300293, -0.061340332, -2.2773438, -1.2939453, -0.06427002, 1.7734375, -0.2434082, -1.7490234, 0.65625, -2.6523438, 3.5605469, -1.1708984, 1.2060547, -0.3088379, -0.4333496, -1.2978516, 1.7060547, 2.6894531, 2.0722656, -0.36938477, -0.6713867, 1.9091797, 1.3183594, 1.7421875, 0.67822266, -0.06222534, -2.3769531, -3.2402344, -0.40527344, 2.2539062, -0.6611328, -0.50634766, 1.1679688, -0.46875, 1.90625, 2.2285156, 3.0253906, -0.13208008, 0.28466797, 1.8222656, 0.03552246, -2.2792969, 1.1435547, -0.038085938, 2.6367188, -1.0761719, -2.6191406, 1.9873047, 2.40625, 0.6323242, 1.8476562, 0.8935547, 1.7988281, -3.1425781, -2.8515625, -1.6396484, -0.13562012, 1.0302734, 0.34521484, -1.9287109, 1.7822266, 1.5947266, 1.5996094, 2.9492188, 0.2244873, -0.33398438, -0.9423828, -0.5761719, -2.9550781, -1.8066406, -1.7314453, -3.4570312, -0.9355469, -0.55615234, 1.5302734, -0.001364708, -0.625, 0.41992188, -0.8149414, -0.43286133, -0.5283203, 0.021774292, -0.89746094, -0.6816406, 2.0664062, 2.1640625, 0.7861328, -0.7368164, -0.5751953, 0.3305664, 1.5390625, 2.7402344, -1.2910156, 0.0715332, -0.63916016, -1.1982422, -4.3359375, -0.20324707, 1.4902344, 0.7402344, 0.57470703, -2.1972656, -0.7895508, 1.3671875, -2.0683594, -1.4716797, -2.0097656, 0.21447754, -1.6386719, -0.08850098, 1.2783203, -0.41259766, -0.6376953, -0.40429688, -2.0957031, -0.11932373, -0.41723633, -2.6484375, -3.484375, 3.0722656, -0.35961914, -1.5712891, 0.9111328, -0.21142578, -0.010314941, 0.9951172, 1.1445312, -0.9658203, 1.0527344, -1.8984375, 0.83447266, 1.7109375, -0.4165039, 2.5, 2.1542969, -0.5205078, 0.7001953, 3.1054688, 2.2910156, -2.0507812, 0.28564453, 0.7001953, -1.3710938, 0.24951172, 0.703125, 1.1445312, 0.33251953, 3.3671875, 3.0878906, -0.35009766, -1.8974609, -1.5507812, -1.0078125, 0.4638672, -2.5234375, -0.7319336, 1.0927734, 2.609375, 1.7851562, -0.5913086, 1.4365234, -0.82421875, 1.2490234, -2.5820312, 0.040740967, -2.9003906, 1.3291016, 0.7402344, -2.5996094, -2.9199219, 0.43066406, 3.9921875, 0.62646484, 0.4309082, 0.49365234, 0.8432617, -1.5039062, -0.33740234, -0.5048828, -0.1784668, 0.34350586, 2.1484375, -1.2705078, -0.4194336, 2.7753906, -0.8149414, -0.87060547, 0.13354492, -0.32958984, -0.74072266, -0.1430664, 3.515625, -1.0966797, 1.2314453, 0.7451172, 0.40307617, -3.5058594, -0.13964844, -0.4086914, -3.1679688, 1.6210938, 1.2529297, -2.0996094, -2.2929688, 4.578125, -0.8544922, 0.3244629, 1.2099609, 1.2480469, 0.35131836, -1.9882812, 1.0644531, 0.21435547, 0.14990234, -0.22924805, -2.3808594, -0.113464355, 1.1103516, -2.0996094, 1.0322266, -0.8066406, 1.1396484, -0.21704102, -0.0025691986, 0.8618164, 1.2910156, 2.9921875, 4.5976562, 3.5996094, -1.0097656, 1.3173828, 1.3789062, 2.4003906, 1.7578125, -2.1191406, 0.5131836, 0.9448242, -0.049926758, 1.1259766, -1.1533203, 0.5878906, -0.1472168, -0.1459961, -1.3779297, 1.0273438, 0.36791992, -4.65625, -3.1054688, -0.72021484, -0.3310547, -1.6962891, 1.6923828, -1.7763672, 0.51123047, -0.6064453, -2.1308594, 1.7939453, 0.9086914, -3.2207031, 1.6201172, 0.28735352, 0.88916016, 0.41308594, -1.8359375, -3.8867188, -1.7001953, -0.34692383, 0.9824219, 0.3552246, -0.54541016, 1.4228516, 0.3486328, 0.35839844, 1.8212891, -0.34570312, -0.765625, 2.8808594, -0.59765625, 2.2695312, 0.3515625, -0.7841797, 2.3632812, 1.0751953, -0.6010742, -3.5351562, -0.13635254, -0.7548828, -1.6416016, -0.18188477, -2.9003906, 2.5449219, -1.7802734, 1.0830078, -1.2373047, -0.3947754, 0.19128418, -2.4980469, 0.78759766, -0.43188477, -0.5083008, 3.484375, 0.68310547, -0.1920166, -1.4658203, 1.4208984, 2.7792969, 0.44091797, -2.0097656, -0.60791016, -0.86816406, -0.90771484, 2.8242188, -0.17028809, -0.4387207, 1.0917969, 1.7070312, 1.4648438, 0.43310547, -0.94433594, -1.4824219, 2.4296875, 0.7519531, -0.7480469, -1.0283203, -2.2988281, -0.27026367, 0.8623047, -0.10070801, 0.004951477, -0.61621094, -0.1418457, 1.0146484, -1.7509766, -0.34838867, -0.27661133, -0.97509766, 2.0214844, 0.92041016, -2.40625, -1.6611328, 0.7626953, 1.0009766, -1.1035156, 1.2822266, 0.22937012, 1.1279297, -0.9458008, -1.7939453, -0.08544922, -0.7441406, -1.4941406, -0.92041016, 0.16369629, 0.9902344, -1.6787109, -1.9648438, -2.3457031, 1.8115234, 0.5864258, -0.69384766, 0.49780273, -0.5385742, 0.12731934, -0.84375, -1.2226562, -0.19677734, 0.40405273, 0.94140625, -0.4892578, 2.4316406, 0.005001068, -0.94921875, -1.9023438, -3.5507812, 2.4785156, 2.0996094, -1.1816406, 2.3671875, 1.8740234, 1.0546875, -1.1464844, 0.9951172, -0.9941406, 0.47973633, 0.47583008, -2.6875, 0.7993164, -0.33666992, -1.0126953, -0.07470703, 3.5, 1.7509766, -0.9506836, 1.4902344, 0.9501953, -1.7236328, 0.3178711, -1.6416016, -0.6196289, -2.28125, 0.23217773, 2.5078125, 4.1484375, -0.7167969, -1.8916016, -2.5898438, 1.3798828]}, "B00NCSUZDE": {"id": "B00NCSUZDE", "original": "Brand: Magma\nName: Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 12\"x18\" main grilling area 5-1/2\"x18\" secondary grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "embedding": [-0.9111328, -0.19494629, 2.5800781, 1.0009766, -0.6035156, 2.2207031, -0.6489258, -1.7802734, 0.5830078, 1.9257812, -0.17236328, 0.7236328, -1.1132812, -1.0009766, 1.6552734, 1.4130859, 2.7636719, 1.4619141, 0.2286377, -1.9433594, 1.8476562, 1.0664062, -0.21240234, 0.13378906, 3.09375, 0.9794922, 3.2929688, -2.3300781, 0.7167969, -1.4873047, 1.5546875, 1.1904297, -0.8286133, 1.3193359, -1.4355469, -0.5283203, -0.32006836, 1.3134766, -1.3457031, 1.0986328, -0.53271484, 0.61865234, 2.5039062, -0.27075195, -3.8027344, -1.1572266, 0.8051758, 1.0605469, -1.9023438, -2.3535156, 1.5673828, 0.40649414, -1.6572266, 0.61279297, -0.6699219, 2.0683594, 1.0791016, -1.2089844, 0.9604492, 0.99853516, -0.048309326, -0.0970459, -1.4746094, -0.20495605, -2.1074219, -0.14343262, 0.6879883, -0.38745117, -0.03274536, -1.140625, 2.8632812, 0.15905762, -1.3671875, 0.6455078, -0.71240234, -0.27563477, -2.8027344, 1.8964844, -0.19567871, -1.5302734, -2.59375, 2.9101562, 0.020812988, -0.7944336, 1.1152344, 0.60302734, -1.8378906, 0.54296875, 1.3339844, -0.015022278, -0.04940796, 1.1806641, -1.0097656, -4.4375, 2.0546875, -1.6591797, 0.53271484, 1.4316406, -1.5615234, 1.1113281, -1.9091797, -0.08703613, -1.6835938, -0.73291016, -2.4296875, -0.21557617, 1.5332031, 0.5131836, -2.6015625, -1.0449219, -1.8935547, -1.8994141, -1.4980469, 1.7480469, 2.7539062, 0.24902344, 2.0390625, 0.008644104, -0.59228516, 2.0273438, 2.3984375, 1.6953125, -0.7182617, -0.48828125, -0.8515625, -0.10455322, 0.3737793, 1.6542969, 4.3007812, -2.5234375, -1.1064453, 0.50683594, 2.5292969, -0.16748047, -1.5058594, -4.1679688, -1.9482422, -2.8125, -3.4746094, 0.85546875, -1.7246094, 0.7402344, 1.6679688, 0.44213867, -3.5566406, -0.016220093, -0.8442383, 1.6728516, -1.2460938, -0.6645508, 0.28515625, -1.2617188, 0.14355469, -0.8046875, 1.6777344, -1.3740234, -0.2512207, -2.859375, 1.7636719, 0.6064453, 1.5947266, -1.265625, -0.6171875, -0.13293457, -0.5888672, -0.03274536, -2.0527344, 2.0527344, 0.6386719, 1.2714844, -0.53222656, -1.4013672, 0.86083984, -0.18981934, -0.21899414, -0.75439453, -0.8388672, 0.69873047, 1.3388672, -0.1394043, -2.1660156, -2.1660156, 0.054992676, 0.99902344, 1.6875, 0.90722656, -0.9663086, 0.9267578, 0.21459961, 0.43798828, 2.5097656, 0.53515625, -1.1816406, 1.6962891, 0.049926758, -1.8144531, -3.0917969, 0.45092773, 1.4990234, -1.1464844, 0.2524414, 1.4199219, -1.3154297, 1.3085938, -1.7216797, -3.3300781, -0.8720703, -0.95654297, 0.22070312, 1.8037109, 3.6328125, -0.9082031, 1.1230469, -1.9414062, 0.006088257, -2.5605469, -0.6176758, -0.5366211, 1.8769531, 1.6132812, 0.023330688, 0.15686035, -0.19482422, 1.7402344, 0.8959961, 1.9482422, -0.38964844, 1.0615234, -2.109375, -0.8701172, 2.9179688, 0.16809082, -1.2177734, -0.3330078, 1.5273438, 1.8818359, 0.36499023, -1.1123047, -1.0302734, -2.6445312, -1.1787109, -0.19641113, -2.7851562, -0.86816406, 0.042266846, -0.5175781, -0.8984375, 1.1914062, 2.2597656, 1.2431641, 0.44921875, 2.1699219, -0.40478516, 0.6411133, 0.7739258, 1.8896484, -0.9692383, 0.8027344, -0.66552734, -1.9609375, 0.7128906, 1.1542969, -0.62939453, 0.640625, 0.5029297, -1.2558594, 2.5058594, 0.6816406, -1.1103516, -1.1992188, 0.73828125, 0.49926758, 2.7597656, 0.011360168, 1.7880859, 3.0878906, 0.53759766, 1.1279297, 1.0458984, 1.2802734, 0.18334961, -0.7519531, 1.4912109, -2.7695312, 1.1289062, 0.10241699, 1.4404297, -1.8007812, -1.0527344, 0.18762207, 2.9316406, 0.4543457, -2.5507812, 5.5390625, 0.55029297, -0.45996094, 1.3349609, -0.68066406, -0.60058594, -0.2199707, 2.0019531, 1.5869141, -0.85058594, 1.9101562, -1.2041016, -1.4902344, 0.3942871, -0.88671875, -0.5161133, 1.7167969, 0.20031738, -1.1533203, -0.69433594, 0.453125, -1.1933594, -0.9921875, 2.1328125, -1.2910156, 1.1269531, 0.51464844, 2.2851562, 0.3071289, -1.1630859, -1.7685547, 0.029525757, 1.9326172, -0.5703125, 0.9897461, -0.34228516, 0.6894531, -0.9975586, 0.5996094, 1.4951172, -1.5380859, 0.062438965, -0.7685547, -0.98291016, -1.5996094, 1.4453125, -1.2353516, -0.0524292, 1.0224609, -0.25073242, 0.086364746, -1.4287109, -3.0273438, -2.5175781, 0.2878418, 1.0810547, -0.84375, 0.859375, -0.21350098, 0.5473633, -5.1953125, -1.1289062, 0.1763916, -1.8408203, 2.5898438, -2.4238281, 0.86083984, 1.1132812, 0.76123047, 0.5395508, -0.35351562, 0.5644531, 1.2626953, -0.070007324, -2.1738281, 1.3173828, -3.9882812, 0.74902344, -1.9589844, 0.66015625, -3.1484375, -1.6904297, 0.10888672, -0.94091797, 5.9296875, -1.6875, 1.3066406, -0.6855469, 0.28759766, 1.3046875, -2.5507812, -0.67529297, -1.0996094, 0.6196289, -0.875, -2.8105469, -2.7382812, -0.78125, 0.24780273, 0.9770508, 0.13720703, 0.3059082, -1.6679688, 2.6328125, -1.2060547, -1.3808594, 1.0205078, 0.99609375, 0.008666992, -0.66015625, 0.15368652, -1.5136719, -1.5488281, -0.117126465, -0.27978516, 2.2304688, -0.7993164, 1.0644531, 1.4785156, 0.70996094, 0.36108398, -0.68066406, -3.1582031, 0.8417969, -0.044555664, -1.5449219, 1.3720703, 0.014457703, -1.0722656, -1.40625, -1.7441406, 2.2460938, 1.3183594, 2.3496094, 0.78466797, 1.4824219, 0.7739258, 1.0507812, 1.1269531, 1.6748047, -0.30419922, 3.6640625, -0.9082031, -2.109375, -0.08355713, 3.0585938, -3.8984375, -2.4121094, 0.98291016, -0.34692383, 4.2226562, -0.30078125, 1.4804688, 0.671875, -0.6123047, 2.78125, -1.234375, -0.17871094, 0.02142334, -1.0458984, -0.30639648, 1.4335938, 0.4104004, 0.21936035, -0.6923828, 1.9042969, -0.42797852, 0.17407227, -0.44189453, 0.09674072, -0.29907227, -0.11401367, -1.7089844, 2.4335938, 0.61328125, 0.7182617, -0.13989258, -0.2854004, -0.39794922, -0.6347656, -1.3261719, 1.0263672, 0.6357422, 0.24609375, 0.09954834, 1.1152344, 1.5449219, -0.6904297, 0.20007324, -3.1035156, 0.9560547, 1.359375, -1.3808594, -2.3320312, -3.1230469, 3.6640625, -0.9057617, 0.09173584, -1.1953125, 1.8945312, -0.5390625, -2.0507812, 0.89941406, 0.54345703, -1.0732422, 0.5288086, -0.12988281, -1.7802734, 2.2558594, -1.7802734, 0.93652344, 1.1298828, 0.46264648, 0.86572266, -1.8945312, 1.6523438, 0.22546387, 0.39208984, 1.1123047, -1.5380859, -1.3359375, 0.36547852, -2.2109375, -0.07128906, -0.33911133, 0.34936523, -1.5058594, 2.5761719, -0.30786133, 0.80810547, -1.4208984, 4.1132812, 1.8564453, -1.4902344, 1.3974609, -3.3671875, -2.3183594, -3.6757812, -3.2089844, 0.17895508, -1.7841797, -1.3642578, 4.5976562, 0.56103516, -0.39038086, 1.3027344, -0.2565918, -3.1289062, -3.1171875, 1.1210938, 0.46411133, -0.4873047, -2.3007812, 2.3828125, 0.46191406, -3.8925781, -1.6416016, 0.60302734, -1.4023438, 1.2382812, 1.2558594, -1.4570312, -0.8232422, -1.3652344, 0.24682617, -0.7163086, -0.5703125, 1.4013672, -0.6748047, 0.005027771, -2.1367188, -0.41870117, 0.86816406, -2.1015625, 0.7939453, 1.7197266, -0.72802734, -0.076538086, -0.24291992, -0.31176758, 1.3984375, 0.49145508, -1.3076172, -2.953125, 0.8017578, 1.1552734, -1.0068359, 1.6796875, 1.0585938, -1.5419922, 0.47558594, 0.70947266, 2.1054688, 1.8554688, -1.0117188, -3.1484375, -0.78125, -0.13000488, -3.0800781, 0.9082031, 1.2128906, 0.5332031, -0.14538574, -0.32617188, 0.58203125, 1.4150391, -0.7270508, -0.4284668, -3.2734375, -0.6738281, -0.37426758, 0.60791016, 2.3300781, -0.95214844, -0.62890625, -0.8183594, -1.4169922, -0.24804688, 0.1459961, 0.08581543, 0.8066406, -1.1162109, 0.52490234, -1.7402344, 0.02545166, 2.3671875, -2.5097656, 0.54833984, -1.4775391, -1.0458984, -2.2050781, -1.4091797, 1.4345703, 1.4169922, 2.8105469, -1.171875, -0.7915039, -2.0605469, 0.54541016, -0.0012283325, 1.8867188, -0.23608398, 1.1816406, 1.5136719, 0.76123047, 1.6230469, 0.09741211, 0.7578125, 0.18591309, 1.4296875, 0.06365967, 0.20227051, 1.1826172, -3.1269531, -1.4238281, -2.3242188, 1.2539062, 3.1074219, 0.09637451, 2.4082031, 0.97265625, -2.2949219, 3.1835938, -0.5673828, -1.4697266, 1.2314453, -1.9384766, -0.48779297, 1.015625, 0.18823242, -2.7832031, -0.57714844, 1.4033203, -1.9902344, 1.2646484, 1.4570312, -1.1210938, -1.1513672, -1.8730469, -0.8852539, -1.4052734, -1.5742188, -1.1240234, -1.0742188, 0.2631836, -0.36938477, 0.5800781, 3.6660156, -1.4570312, -1.4453125, 2.7539062, -1.2646484, 0.296875, -0.7973633, -1.2724609, -1.4726562, 0.20007324, 3.2128906, 1.1210938, 0.4638672, 0.69873047, 1.1025391, -1.0507812, 1.0996094, -0.9145508, 0.59228516, -0.16357422, -1.7451172, 1.6650391, -2.8632812, 0.2878418, -2.84375, 1.3603516, -0.36083984, 2.1835938, 1.9277344, 0.2043457, -1.5869141, 1.6269531, -2.3691406, -3.9394531, -1.8369141, -0.7631836, 0.60302734, -1.5791016, 0.54833984, -0.73535156, 0.21459961, 1.796875, 1.3027344, 0.9033203, -0.7236328, -0.9291992, -1.1835938, -0.88134766, -0.40722656, -0.79785156, 0.7939453, 3.0625, 0.08154297, -0.69677734, -2.6171875, -2.6601562, 0.73095703, -1.3769531, -1.8476562, 1.6855469, 1.7910156, 0.08105469, 0.17382812, 1.6914062, -3.7578125, 0.19580078, -1.2451172, 0.5151367, 2.125, 0.087402344, 2.1230469, 0.37158203, -2.3417969, 1.3730469, -2.1054688, 2.0527344, -0.24169922, -1.0957031, -0.62597656, 1.1474609, -0.83496094, -3.0761719, 0.6069336, 0.33203125, 0.85302734, -0.8183594, -1.7783203, -0.6816406, -1.9736328, -4.9179688, 0.82373047, -1.9492188, -0.546875, 0.28637695, 0.020248413, 0.35913086, 1.0341797, 2.0664062, 0.98095703, 1.8369141, -0.84765625, 0.35595703, -0.10455322, 1.9228516, 2.7265625, -1.5644531, -1.2236328, -3.7734375, 1.2568359, 0.1907959, 0.29125977, -1.6132812, 0.12976074, -1.2402344, -0.39233398, 0.7973633, 0.12524414, 2.109375, -1.1015625, -2.3828125, 3.2460938, 2.2109375, -0.5776367, 2.3242188, 1.9863281, 3.8046875, -1.8115234, 1.2880859, -0.7519531, -2.3730469, 3.1289062, -0.859375, 0.1932373, -0.73535156, -1.2666016, 1.1445312, -1.4492188, -1.9091797, -1.6210938, 1.0830078, -1.796875, 1.8505859, 1.7275391, -0.984375, 1.1914062, 0.93408203, -0.46411133, 1.6318359, 2.1464844, 1.9091797, 0.114990234, 0.3984375, -1.4326172, -1.6015625, 1.1337891, -1.1357422, 1.4960938, 1.6904297, 0.1295166, 0.84521484, 1.6884766, 0.4086914, 2.1132812, 1.0019531, 4.2539062, 1.2314453, 0.94433594, 0.29248047, 0.56933594, 2.7617188, 1.5722656, -1.6230469, 0.94677734, 0.9135742, 2.8125, 1.1933594, -1.6992188, 1.6777344, 0.5073242, -0.5410156, -0.4975586, -0.026992798, -0.63427734, -3.2226562, 0.6401367, 0.85595703, -0.31982422, -2.1484375, -0.23718262, -1.6337891, -1.2285156, -1.7558594, 0.9111328, 3.2636719, 0.016403198, 0.7709961, 0.12756348, -1.2802734, 1.3603516, -2.6894531, 1.0488281, 2.7871094, -0.06402588, -0.8105469, 0.50927734, -0.2524414, -0.2467041, 0.6777344, 0.6879883, 0.028305054, 3.2128906, 0.78271484, -1.0400391, 0.7788086, -0.515625, 1.09375, -1.4785156, -0.61328125, 0.7036133, -2.8828125, -2.7382812, -2.5351562, 1.8164062, 0.68115234, 0.95751953, 0.3166504, -1.9462891, 1.7597656, 0.37182617, 2.0136719, -1.6474609, 3.0898438, 1.1572266, -2.7207031, -1.1083984, 0.75634766, 0.7192383, 1.9306641, 0.65283203, -2.8007812, 1.8896484, 0.69433594, 1.6347656, 0.015930176, 1.5849609, 1.421875, 0.5571289, -0.9394531, 3.4160156, 0.375, -0.7651367, -3.2539062, 3.5664062, 1.4511719, 0.7246094, 1.3701172, -0.29174805, -0.2746582, 0.7836914, 0.25708008, -1.9326172, -1.5839844, 1.9228516, 0.3491211, 0.71875, -0.6591797, 0.2331543, -0.13989258, 1.8808594, -0.53027344, 0.044403076, -0.2590332, -1.5615234, 2.7089844, -0.40405273, -1.2373047, -0.12109375, -1.8583984, 0.87890625, 0.0009303093, -2.7128906, 0.05807495, 1.5136719, 1.1835938, -0.8701172, 0.20019531, 0.40771484, 1.2236328, -0.02041626, -0.08319092, -0.85546875, -1.6113281, 0.82373047, 0.65234375, 0.72558594, 2.0117188, -0.6665039, 0.52978516, -2.1191406, 0.090026855, 0.43798828, -0.21386719, -0.7734375, 0.78466797, 2.6230469, 0.82714844, 1.2988281, -1.9697266, -3.4433594, 0.7324219, -1.1171875, 3.2734375, -0.82470703, -0.3474121, -0.14575195, -0.4724121, 3.8203125, -0.036590576, -1.0771484, -0.8095703, -0.1574707, 1.0302734, 0.18151855, 0.7368164, -0.50146484, 0.58203125, 2.0058594, 0.7783203, 0.2052002, 1.7841797, 1.8964844, 1.6992188, -0.15246582, -1.3085938, 1.0224609, -1.2714844, 1.7724609, 1.7373047, 0.1619873, 1.4560547, -0.5073242, 0.6323242, -1.0703125, -1.7910156]}, "B016M5A2SQ": {"id": "B016M5A2SQ", "original": "Brand: Weber\nName: Weber Spirit E330 Lp Black Grill\nDescription: \nFeatures: Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling\nSear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer\nKeep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or saut\u00e9 veggies on the side burner\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\n", "embedding": [-2.9726562, -0.5263672, 2.5410156, -1.1191406, -2.4296875, 0.39916992, -0.85498047, -0.21508789, 1.0585938, 1.3798828, 1.9042969, -0.20861816, -0.6333008, -4.1445312, 1.6503906, -0.19055176, 1.9902344, 1.7441406, 0.58691406, -0.39501953, 0.9086914, 0.57128906, -0.10223389, -0.75146484, 1.4091797, -0.3395996, 3.2324219, -5.4960938, -0.23364258, -1.5566406, 1.1025391, 2.1269531, 0.2944336, 2.7460938, -2.0019531, -1.1845703, -3.3984375, 0.86376953, -2.2675781, 0.020431519, -0.6381836, -1.2724609, 2.1777344, -0.33325195, -1.6503906, 1.3769531, -0.10498047, 0.21166992, -0.76660156, -1.1162109, 1.2851562, 2.1855469, 0.0066566467, 1.9462891, -0.52685547, 0.65527344, -0.43359375, -2.0058594, 2.6425781, -1.0761719, 1.9462891, -0.4309082, -2.2089844, -0.5229492, -0.4272461, -0.8598633, 0.5283203, -0.054473877, 0.010871887, 0.114746094, 1.3828125, -1.9541016, -0.98046875, 1.0410156, 1.8310547, -1.8867188, -2.0039062, 1.7265625, 0.26953125, -0.5522461, -0.75878906, 4.390625, 1.7402344, -2.2949219, -1.0585938, 0.7714844, 0.1607666, -1.0458984, 1.9140625, 0.5620117, 0.5996094, 0.7583008, -2.6152344, -3.9746094, 3.0585938, -0.32128906, 1.9238281, 0.8178711, -0.9946289, 1.3505859, -1.2050781, 0.8935547, -1.1767578, -1.4873047, -2.7851562, -1.3632812, 0.39770508, -0.70166016, -1.0810547, -0.16027832, -1.5722656, -0.43481445, 0.5419922, 1.5400391, 1.0078125, 2.9863281, -0.034973145, 1.6943359, -0.6328125, 1.4306641, 2.8652344, -1.3759766, 0.57666016, -1.4052734, -1.4267578, -0.3894043, -0.36767578, 0.5800781, 1.9863281, -1.0117188, -1.3261719, -0.55322266, 3.0644531, 0.21032715, -0.82958984, -0.8066406, -1.3632812, -0.24047852, -1.4775391, 0.2208252, -0.80810547, 0.6660156, 2.7441406, -1.5068359, -2.4453125, -1.7060547, 0.24487305, 0.28173828, -0.6430664, -1.0732422, -0.6772461, -1.7324219, -2.2382812, -0.46972656, 1.8476562, 0.42163086, -0.45825195, 0.5239258, 3.0449219, 2.7480469, 1.5458984, -1.6875, -1.9257812, 0.13427734, 1.3515625, 0.55859375, 0.7480469, 1.2070312, 0.5600586, 2.6152344, 1.2832031, -1.5, -0.09881592, -0.19970703, 1.7626953, -1.5576172, -0.9370117, 2.4746094, -0.32348633, 0.1595459, -1.7255859, -0.98046875, -0.05279541, 0.4243164, -0.4099121, -0.7416992, -1.1601562, -0.078063965, 1.9296875, -1.7441406, 1.2539062, 0.026245117, 0.5913086, -0.3864746, 1.3076172, -1.1816406, 0.6220703, -2.2597656, 0.58691406, 0.7402344, 0.63671875, -0.7084961, 1.8271484, 0.81689453, -1.0664062, -2.0917969, -0.19165039, -1.4082031, 0.43066406, 1.1533203, 1.4589844, -1.2558594, 0.11566162, -0.29760742, 1.015625, -1.6201172, 1.5224609, 0.122924805, 2.5214844, 2.4902344, -0.3425293, -0.8022461, -1.0126953, 3.8925781, 0.31982422, 0.14489746, 1.3105469, 0.0033187866, -2.5898438, -0.6464844, 4.1367188, 1.5332031, -1.2207031, 0.18469238, 0.70996094, 2.6601562, 0.8286133, 0.640625, -0.9003906, 0.46362305, 1.3652344, -0.30859375, -2.7011719, -1.9560547, 0.36499023, -1.5126953, -1.6708984, 2.4355469, 0.7368164, 0.59277344, 0.8984375, 0.75634766, 1.9189453, 3.515625, -0.09289551, 0.79345703, -1.7988281, 1.734375, -0.7011719, -0.79833984, 1.2109375, -0.021987915, -0.27612305, 0.42236328, 1.1542969, -0.47924805, 1.3457031, 2.7714844, -0.9946289, -0.060028076, 0.96533203, 0.39331055, 0.06732178, -0.3334961, 2.0234375, 1.4023438, -1.4267578, 0.98046875, -0.31176758, 0.038085938, -0.1550293, -0.89208984, 1.1933594, -3.4121094, -1.0488281, -1.8710938, -0.9199219, -2.3203125, -2.0742188, 0.5605469, 3.8808594, -1.2148438, -1.3144531, 2.9257812, -3.6816406, 0.0061302185, 1.9863281, 0.26489258, -0.074645996, 1.7001953, 2.421875, 1.1875, 1.1308594, 0.5263672, -0.45825195, -0.9682617, 1.2822266, -3.5976562, -1.0537109, 1.0136719, -1.0039062, -0.90478516, -1.7822266, -0.23876953, -1.0058594, -1.9902344, 0.45239258, -3.1132812, -0.4777832, -0.71777344, 2.6386719, -0.4260254, -0.9404297, -1.1972656, -0.3540039, 0.1541748, -0.7416992, 2.1933594, 0.1920166, -1.4443359, -1.6435547, -0.41259766, -1.3408203, -0.63134766, -2.28125, -2.4316406, -1.3457031, -1.7490234, 1.0654297, -2.7011719, 0.85058594, 0.6147461, -2.4296875, -0.22302246, 0.63378906, -3.6347656, 0.3581543, -0.43432617, 0.38085938, 0.19970703, 0.21923828, 0.42260742, -1.1806641, -4.234375, 0.12298584, 0.5776367, 2.578125, -0.44067383, -0.9711914, 0.77685547, 2.078125, -0.028945923, -1, 2.2890625, 2.5136719, -0.94677734, 1.1796875, -2.5957031, -0.64208984, -2.5507812, -0.5361328, -0.7055664, 0.4519043, -3.0195312, -1.5234375, -1.9824219, -0.074401855, 5.03125, -0.17675781, 2.5078125, -0.43237305, 0.94677734, 0.9980469, -1.5322266, -0.89501953, 0.67041016, 1.8642578, -2.1191406, -2.375, -2.296875, -1.0351562, -4.4296875, 0.027191162, 0.91308594, -0.23742676, 0.91503906, 0.30493164, -2.1679688, -2.2636719, -0.5083008, 0.42407227, 0.029586792, -1.3789062, -1.1640625, -2.0175781, -0.2722168, -1.3623047, 0.61816406, 1.84375, -0.6118164, 1.6904297, 1.2988281, -0.3022461, 1.0859375, 0.16711426, -3.2050781, 4.1875, -1.7939453, -2.9355469, 1.0556641, -2.3652344, -2.1992188, -0.47680664, 0.5439453, 2.0976562, 2.2382812, 1.8798828, 1.7421875, 0.79541016, -0.57958984, -1.0693359, 0.23535156, -0.6347656, 2.4296875, 3.4726562, -2.5898438, -1.0009766, -0.02116394, 1.4921875, -2.1289062, -1.9355469, 1.2421875, 2.4355469, 1.2314453, 1.3886719, 1.8701172, -1.1269531, -0.8486328, 2.6152344, 1.9267578, -1.6201172, 0.062316895, -1.0498047, 1.7001953, -0.4658203, 1.3427734, 3.0996094, -0.07409668, 1.890625, 2.2851562, 0.6948242, -0.4326172, 0.3623047, 0.26660156, 2.1699219, 0.29467773, 1.2861328, -0.8378906, -0.59277344, 0.11920166, -1.140625, -0.3881836, -0.33520508, -1.2675781, 3.6464844, -0.2788086, -0.67578125, 0.099365234, 1.1123047, 1.0576172, -1.1826172, -0.46899414, -1.3671875, -1.1914062, 2.0859375, -1.65625, -0.73291016, -1.4111328, 1.2011719, 0.6557617, -1.2226562, 0.98535156, 3.28125, -0.70458984, -1.90625, 0.6899414, 0.37158203, 0.8364258, 1.4833984, 1.1044922, -1.4794922, 1.4082031, -2.7949219, 0.97802734, -1.0654297, -0.79541016, -1.3222656, -0.3684082, 0.6850586, 0.7421875, 1.8769531, 0.98291016, -0.9355469, -1.6298828, -0.60498047, -3.4472656, -0.8178711, 1.1044922, -3.3085938, -1.2695312, 2.4824219, -0.5263672, -0.15722656, 0.98339844, 1.6044922, -1.0107422, -0.1821289, 1.5273438, -2.515625, 0.5161133, -3.546875, -2.2441406, 0.6699219, -1.5126953, -0.2902832, -0.12939453, 0.089782715, 0.3935547, 2.8339844, 2.15625, -3.1269531, -0.9321289, -1.6376953, -0.031799316, -0.8105469, 0.45825195, 0.31396484, -0.88964844, -3.1015625, -2.9355469, 0.23388672, 0.43432617, 1.9462891, 0.90283203, -2.7675781, 0.3046875, -0.63183594, -1.5791016, -3.2285156, -0.39648438, 1.0556641, -1.6064453, 0.20837402, -2.9082031, 0.09765625, 0.7421875, -0.89697266, 1.9697266, 1.8896484, -0.8066406, -1.5742188, 1.3505859, 0.6176758, 1.3671875, -1.0097656, -3.4140625, -0.13903809, -0.09631348, -0.37304688, -1.2236328, 0.5097656, 2.4589844, -1.0654297, 2.5644531, 0.65527344, -0.44335938, 0.30444336, 1.8261719, -1.8076172, -0.16333008, -0.62109375, -0.71875, -2.1464844, -0.25073242, 0.012451172, -0.5986328, 0.96191406, -2.34375, 2.6816406, -0.7832031, 1.5263672, -2.1582031, 3.8476562, 2.671875, 3.5585938, 3.1914062, -0.5517578, -0.35351562, -0.23803711, -1.1044922, -2.1484375, 1.4238281, -0.20251465, 1.0117188, 2.6972656, 1.7255859, -1.5341797, -0.84814453, 0.015541077, -0.6621094, -0.09265137, -2.4726562, -1.1894531, -1.4130859, 2.1914062, 1.3193359, -0.28759766, 1.6533203, -0.9868164, -0.41992188, -0.5888672, 1.9638672, -0.7680664, -0.7006836, 0.09692383, -0.23962402, -0.71533203, -0.5854492, -0.27075195, -0.77685547, -0.0044555664, -1.1455078, 2.078125, -0.32202148, -0.47338867, 1.375, 0.5917969, -1.7226562, -1.0810547, 2.4765625, 2.8398438, 0.5913086, 3.140625, 1.1494141, -1.4296875, 1.5039062, 2.4550781, -5.5703125, 0.9814453, 1.0185547, -0.14697266, 2.2636719, 0.9550781, -4.265625, 0.8417969, 1.7460938, -0.6772461, -0.5991211, -2.0351562, -1.3544922, 3.03125, -2.5917969, 0.53125, -0.86376953, -0.85009766, 1.5009766, 1.6103516, 0.31860352, -1.4658203, 1.4375, 3.6679688, -0.2631836, -2.7949219, 0.48242188, -1.7958984, 0.44555664, -3.265625, -0.24365234, -1.8876953, 0.023010254, 2.5351562, 0.94384766, -0.20422363, -0.25268555, 3.40625, -2.0253906, -0.38916016, -2.7753906, 1.6533203, -2.6367188, 0.036224365, 1.7568359, -2.5429688, -0.6621094, -1.2421875, -0.77685547, 0.30859375, 0.9350586, 0.89697266, -0.84814453, -0.45996094, 2.7402344, -1.4511719, -2.8046875, -1.0810547, -0.7705078, -0.86816406, 1.4189453, 1.8671875, 0.08099365, 0.36743164, -0.20214844, -0.58691406, -0.68408203, 0.5708008, 0.27612305, -0.19592285, 0.58691406, -1.4726562, -1.2773438, 0.5444336, 1.0742188, 1.8066406, 0.16052246, -2.8671875, 0.016235352, 1.2646484, -2.5234375, 0.6069336, 2.28125, 2.1152344, 0.42089844, 0.049072266, 1.4111328, -1.140625, 2.3535156, -1.6210938, -1.3789062, 0.1328125, 0.006626129, 1.5888672, -1.2207031, -0.22460938, -0.54052734, 0.42919922, 1.6396484, 0.97998047, -2.2480469, -0.6201172, 0.27294922, -0.53759766, -0.46655273, 1.0498047, 0.35058594, -0.80810547, 0.23413086, -0.79345703, -0.24389648, -1.546875, -2.4179688, 0.5078125, -2.21875, -1.3808594, -1.9072266, 1.0419922, 2.7753906, -0.78027344, -1.4960938, 2.78125, 0.65722656, -2.7988281, 0.77441406, -0.25683594, 2.8535156, 2.8671875, -0.27441406, -0.1361084, -1.0712891, 0.2680664, 1.8632812, -0.5541992, -2.3554688, 1.2460938, -1.0810547, -0.45483398, 0.43920898, 1.3710938, 1.3955078, -1.1337891, -0.10290527, 1.4570312, 2.6015625, -2.1445312, 1.8964844, 0.82373047, 2.5351562, -0.24072266, 3.0390625, 0.14746094, -1.4433594, 2.125, -2.3574219, 2.0722656, 0.07116699, -0.6098633, -0.38916016, -0.05368042, -1.8359375, -1.2695312, -2.3496094, -2.1542969, 1.5957031, 1.3085938, -2.4492188, -2.1796875, 0.87841797, -0.0022830963, 4.5898438, 0.08898926, 1.5341797, -1.7724609, -0.49487305, -0.5805664, -0.98339844, 0.7080078, -3.5, 1.3505859, -0.3701172, -1.2441406, -2.8339844, 0.46166992, 1.4990234, 2.1074219, -0.11138916, 2.3828125, 1.6738281, 2.9316406, 2.4902344, -0.15454102, 3.0136719, 0.98828125, -0.9765625, 0.27563477, 1.7099609, 0.33813477, 0.7832031, -1.2138672, 2.8554688, -0.91503906, -0.05404663, -1.3535156, -0.0014190674, 2.1152344, -1.4111328, 1.2851562, 1.6210938, 1.6992188, -0.97509766, -1.2158203, -0.41235352, -0.5786133, 0.040618896, -0.15722656, 1.6162109, 1.3642578, 0.35473633, -1.109375, 0.12695312, 0.29858398, -3.2949219, 1.3574219, 0.8911133, -1.2001953, -2.3613281, -0.6723633, 3.3808594, 0.9321289, 0.22741699, -0.7216797, 5.0234375, 0.59716797, 1.1572266, -1.2587891, -1.8466797, -0.13293457, 1.4902344, -1.7998047, -1.4941406, -0.5756836, -0.7128906, -3.4414062, -2.015625, 3.8320312, 2.8613281, 2.5664062, 1.1132812, -1.5175781, 4.7617188, 0.92041016, 1.9658203, 0.14868164, -0.59277344, -1.03125, -2.0195312, 0.1348877, 0.3984375, 0.13659668, 2.0117188, 0.08453369, 1.4335938, 0.60498047, 0.4765625, 1.2382812, 0.24804688, 1.3076172, 2.171875, 0.7597656, 0.015731812, 1.0175781, -1.0136719, -2.1484375, -1.5644531, 1.7421875, 1.9501953, 0.9033203, 0.32617188, -1.1572266, -0.39257812, -1.4902344, -0.0037612915, -0.2902832, -2.3476562, 0.4506836, 0.32788086, 1.2021484, -1.3642578, 1.0166016, 1.8330078, 1.1074219, 1.2548828, 2.3710938, 3.7617188, -1.7363281, 2.0136719, 0.29736328, 0.80029297, 1.4775391, 0.83203125, 0.6503906, 0.46606445, 0.16369629, 0.09411621, 2.4628906, -0.012336731, -0.09503174, 0.8964844, -1.3613281, -0.34106445, -1.2392578, 0.0014886856, 0.37695312, -1.0888672, 1.4326172, -0.44580078, -1.796875, 1.0224609, 0.0836792, 0.057678223, -1.0537109, -0.84814453, -2.0332031, -0.053741455, -1.2851562, 1.0126953, 3.734375, -0.0028057098, -0.024856567, -0.67285156, -3.7675781, -2.5058594, -1.4306641, 1.2197266, -0.49804688, -1.8828125, -0.8286133, -0.34057617, 1.6132812, -1.6103516, -0.073791504, -1.5566406, -3.0644531, 0.023223877, -0.34228516, 2.0683594, -1.2304688, -0.05041504, 1.8808594, 1.9941406, 0.2088623, 1.8164062, 0.70703125, 2.5644531, 1.7373047, -2.859375, -1.0283203, 1.2626953, 1.0595703, -0.66796875, 1.2294922, 1.5742188, 0.4140625, -0.7060547, -0.099121094, -1.4042969]}, "B00QMVEG8S": {"id": "B00QMVEG8S", "original": "Brand: Coleman\nName: Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner\nDescription: \nFeatures: COOKING POWER: Up to 22,000 total BTUs\nPUSH-BUTTON IGNITION: For matchless lighting\n2 ADJUSTABLE BURNERS: For precise temperature control\nWIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes\nPRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions\n", "embedding": [-1.3984375, 0.81152344, 1.2949219, 1.5175781, 0.5229492, 0.26220703, -0.45458984, -0.5385742, -0.15466309, 1.6484375, 0.2368164, -0.16308594, -0.18139648, -1.859375, 0.23071289, 0.36083984, -0.049468994, 0.70751953, -2.7304688, 0.43530273, 3.0078125, -0.62841797, 0.34326172, -0.45117188, -0.45629883, 0.31323242, 3.4824219, -5.375, 0.41503906, -1.4287109, 1.765625, -0.48632812, -0.024597168, 2.6757812, -2.4765625, -0.38891602, -3.4160156, 1.1923828, -2.7167969, 0.18127441, -1.5957031, -0.4272461, 1.0068359, 0.054016113, -1.6376953, -0.9550781, 0.9223633, 0.30371094, -3.3261719, 0.7729492, 0.42749023, 1.3808594, 0.5078125, 0.30541992, -0.18652344, -0.004146576, -0.61621094, -0.1262207, 1.0029297, 0.6855469, 0.7841797, -0.47729492, -2.5371094, 1.1318359, -1.1513672, 1.3173828, 1.3886719, -0.84716797, -0.88183594, -0.6689453, 3.2929688, -0.031188965, -1.5644531, -1.1162109, -0.6254883, -1.7773438, -4.0742188, 0.15991211, 2.0742188, -0.13330078, -0.0051879883, 1.6025391, 1.9941406, 0.15527344, -0.29516602, 0.7348633, -1.5703125, -0.7739258, 0.40771484, 0.19128418, -2.1425781, 0.5161133, -1.859375, -4.265625, 0.52685547, -1.2529297, 0.98535156, 0.68310547, -0.86376953, -0.9916992, -0.33740234, -0.5996094, -1.6923828, -0.47216797, -2.8730469, -0.7949219, 2.7578125, 0.18701172, -2.6523438, 0.75927734, -3.421875, -2.828125, 1.6738281, 0.99316406, -0.34692383, 1.0019531, 0.11798096, -0.89453125, 2.2617188, 0.3918457, 3.4101562, -1.5263672, 1.484375, -0.026290894, -0.14953613, 2.1894531, -0.38208008, -0.28320312, 1.9140625, 0.17919922, -0.76171875, 0.54248047, 2.2578125, -0.08935547, -2.4882812, -1.8525391, -2.65625, -1.2919922, -3.25, 0.22277832, -1.3681641, 1.8427734, 2.7734375, 0.8569336, -4.7460938, -2.0839844, -0.41210938, 2.0703125, 0.69091797, -2.4433594, 0.5415039, -0.9711914, 0.15588379, -1.2675781, 2.0898438, 0.45629883, -1.21875, -1.1337891, 3.9550781, 0.032104492, 0.55810547, -0.921875, -2.1191406, 2.3378906, -0.33374023, 0.5488281, -0.8208008, 0.91748047, -1.2792969, 1.9716797, 0.2770996, -3.3125, -0.17224121, 0.2052002, 0.4255371, -0.41308594, -0.2783203, 3.3652344, -0.18029785, -0.020233154, -3.7324219, -3.0527344, 0.5883789, 1.0419922, -0.41723633, -1.1357422, -0.24157715, 0.055236816, 1.2539062, -1.5292969, 1.4794922, 0.42944336, 1.3720703, -0.85791016, -1.8867188, -2.6816406, -0.46289062, -0.8779297, 1.5703125, 0.05114746, -0.13110352, 0.56640625, -0.7207031, 2.2734375, -1.5712891, -1.6630859, -0.2836914, -1.1230469, 1.546875, 2.75, 3.1308594, 0.055541992, 0.61865234, -1.0205078, -1.8134766, -1.8115234, 2.1816406, 0.6074219, 2.0976562, 1.2539062, 0.95703125, -0.8359375, -0.18188477, 0.8027344, -1.1699219, 2.8496094, 1.5195312, -0.38476562, -0.26098633, -0.7290039, 2.2890625, 1.2998047, -1.3066406, 0.12609863, 1.5400391, 3.34375, 0.52490234, -2.2421875, -0.6928711, -0.013717651, -0.75, -0.47583008, 1.5361328, 0.3251953, -0.15222168, 0.36132812, 0.65966797, 0.8041992, 3.2148438, 0.66552734, 0.5444336, -0.2680664, -0.7265625, 1.7265625, -2.2324219, 0.39892578, -0.42089844, -0.78027344, -0.6582031, -3.2558594, 1.1738281, 1.6992188, -0.47216797, 0.36987305, -0.42895508, 0.85058594, 2.2773438, 0.09039307, -2.5507812, 0.84814453, 0.5810547, 0.77001953, 2.2910156, 0.953125, 1.921875, -1.0634766, -0.13244629, 3.5625, 0.25585938, 2.9882812, 0.56152344, -0.5913086, 1.5234375, -1.59375, -2.1113281, 0.8515625, 2.6035156, 0.78564453, -1.7822266, 0.9321289, 5.5742188, -1.7226562, -3.5390625, 2.84375, -4.2617188, -0.008590698, -0.52490234, 0.7392578, -0.7836914, -1.6386719, 2.015625, -0.6254883, 0.1899414, 0.6645508, -3.1289062, -0.021469116, 0.45336914, -2.5195312, 0.17822266, -0.9682617, 1.6376953, -2.6738281, -2.3691406, 1.2470703, -0.8808594, -0.5107422, 2.2070312, -2.5683594, 0.89404297, 1.6035156, -0.20788574, 1.3457031, 0.17687988, 0.05923462, 0.68066406, 0.36157227, -1.6767578, 2.3476562, 0.8071289, 0.49243164, 0.33642578, -2.9492188, 1.6474609, -1.8164062, -2.0429688, 0.5283203, 1.0839844, -3.9804688, 1.8154297, 0.8642578, -0.75439453, 2.0917969, -2.5820312, 2.6660156, -1.4560547, -3.0976562, 1.0175781, 1.4404297, -0.36499023, -0.05105591, 1.7871094, 0.42114258, -1.1533203, -2.53125, -1.7871094, -0.42138672, -1.015625, -1.2753906, -0.42407227, 0.43896484, 1.4882812, -0.20874023, 0.22241211, 0.03375244, -1.3105469, -2.8925781, 0.38720703, -2.125, 0.7866211, -2.0898438, 1.8466797, 1.0351562, 0.09698486, -1.1455078, 0.041900635, 1.5380859, 0.29223633, 5.5898438, -0.39819336, 2.2734375, -0.8696289, -1.7841797, -0.31274414, -2.3105469, -2.8203125, 0.09661865, 1.2275391, 0.14172363, -1.859375, -3.4042969, -0.064819336, -2.4414062, -0.2467041, -1.25, -0.105407715, -0.3564453, 0.515625, -0.17834473, -0.77197266, 1.3183594, -0.1149292, -0.6152344, -2.4570312, -2.0527344, -0.29370117, -0.046081543, 0.4206543, 1.3378906, 0.05404663, 1.4013672, 0.029006958, 1.6113281, 0.45385742, 1.3300781, -0.5083008, -2.7460938, 2.8027344, 1.21875, 0.6455078, 1.6357422, -2.0234375, -1.2001953, -3.359375, -0.11694336, 1.4140625, 2.3632812, 2.2539062, -0.19421387, 0.82714844, 1.1269531, 2.140625, 0.98535156, -0.9082031, -0.72265625, 2.3261719, -2.4863281, -3.4824219, 2.7148438, 1.7177734, -2.9550781, -2.2675781, -0.27246094, 1.2148438, 1.9443359, 3.6132812, -1.4619141, -1.0185547, -0.084472656, 0.56640625, 2.1503906, -1.0185547, 0.64501953, -0.08679199, -0.118896484, 1.6464844, 0.37841797, 1.2246094, 1.28125, -0.45507812, 1.8759766, 4.0273438, -1.7988281, 1.4189453, -0.41601562, 0.39013672, 0.52197266, 2.9296875, 0.041870117, -1.1943359, -0.6713867, -1.5458984, 1.7763672, -1.1933594, 1.0126953, 2.7617188, 0.6591797, -0.29345703, 0.20227051, -0.36572266, 1.3916016, 0.11907959, 2.515625, -0.32617188, -0.50634766, 0.43359375, -1.2392578, -1.2021484, -1.7363281, 3.1386719, -0.671875, -1.3925781, 0.99316406, 2.546875, -2.1933594, -2.6171875, -2.40625, 0.72753906, 0.37573242, 2.1386719, -0.8666992, -1.4111328, -0.3203125, -0.69384766, -0.026626587, 2.6855469, -2.7070312, -0.52783203, -0.32055664, -1.4267578, -0.45458984, 0.53808594, 0.95947266, 1.453125, -2.0078125, 2.1015625, -3.3203125, 0.81884766, 1.0732422, -1.9550781, 1.3496094, 2.890625, -0.5961914, 1.5859375, -0.03756714, 3.7421875, -2.5878906, -0.4885254, 0.4404297, -1.0449219, -1.2822266, -3.6582031, -2.4023438, 1.3271484, 0.6723633, 0.24060059, 2.4824219, -1.0166016, -0.39086914, 1.2470703, -0.26123047, -1.5351562, -3.2128906, -0.60791016, 0.58154297, -2.8632812, -0.041900635, 0.40673828, -1.0429688, -2.0136719, -2.0585938, -0.7050781, 0.10467529, 0.46777344, 1.1445312, -0.52734375, -0.6098633, -1.3642578, 1.7724609, 0.5859375, -1.1152344, 0.021499634, 0.8876953, 0.55810547, -3.2441406, 1.1083984, 1.6552734, -1.4326172, 1.4921875, 2.8027344, 2.0058594, -1.3164062, 0.35009766, 1.3671875, 2.0703125, -0.13659668, -2.4003906, -0.77197266, -1.9453125, -1.3828125, -0.16015625, 1.9169922, -0.6958008, -2.3457031, 0.9370117, 2.0175781, 2.0078125, 1.8945312, 0.20568848, -1.03125, 0.515625, 0.68847656, -0.87060547, -1.2871094, -0.3022461, -0.16418457, -0.8076172, 1.3535156, -0.61621094, -0.7548828, -0.46289062, -1.6230469, -1.0419922, 1.4462891, 1.6347656, 2.9882812, 2.3632812, -0.25756836, -2.0019531, 1.2324219, -0.3527832, 0.21374512, 0.15039062, 0.2890625, 0.9970703, 1.9707031, 1.5478516, -0.89453125, -1.9765625, 0.48461914, -1.1474609, -0.27026367, -0.8173828, 0.24804688, -1.8251953, 0.3466797, 0.80078125, -0.17565918, 1.3837891, -1.9238281, 0.890625, 1.4453125, 1.5507812, -1.203125, -0.21081543, -0.62060547, 0.44848633, 0.4609375, -0.59228516, -0.3647461, -0.04058838, 1.9658203, 1.4101562, 1.6533203, -0.26293945, 0.6201172, 1.9453125, -0.85302734, -1.3955078, -0.21740723, 0.57666016, 0.43066406, -0.09295654, 3.9453125, 2.4160156, -0.53271484, 1.8720703, -0.609375, 0.33911133, 0.44091797, -1.2666016, -0.20544434, 1.0859375, -0.36767578, -1.9921875, 0.0029640198, 2.0175781, -1.6748047, 0.9902344, 0.14929199, 0.7841797, -0.7973633, -3.7148438, -0.15222168, -0.21594238, -0.47729492, -0.35766602, -2.1738281, -0.25927734, -1.2841797, -0.33422852, 2.3203125, -0.2902832, -0.6142578, 1.5175781, -0.80810547, 1.2919922, -2.0898438, -1.4716797, -2.6953125, 0.2939453, 0.8959961, -0.39013672, 0.33081055, 0.4272461, -0.2626953, -1.0722656, 0.13330078, -1.6318359, 1.3652344, -2.6152344, -1.09375, -0.22253418, 0.40454102, 0.921875, -1.4921875, -0.85546875, -2.3398438, 1.3007812, 1.0898438, -0.46777344, -0.82177734, 2.171875, -2.0175781, -3.6289062, -0.2043457, -0.4104004, 0.13562012, -0.82421875, 1.4238281, -1.3535156, -1.4492188, -1.6845703, -1.7216797, -2.21875, -0.14660645, 0.07897949, 1.5556641, -0.17150879, 0.6855469, 0.12768555, 1.0214844, -0.113586426, 0.80908203, -0.10241699, -1.7197266, -2.8515625, 1, -0.72998047, 2.28125, 1.7060547, 0.2055664, -0.75634766, 1.1279297, -0.17993164, 0.09832764, 0.5703125, 0.25878906, -1.3740234, 2.03125, -1.0927734, -0.043884277, 1.1035156, -2.0761719, 0.7373047, -1.9355469, -0.55810547, 0.077941895, 1.6445312, 0.16149902, 0.6074219, 1.4873047, -2.4003906, 1.8427734, 0.3371582, 2.7421875, 0.90722656, -0.23522949, -1.2685547, -2.1523438, -2.1132812, -0.28051758, -1.4091797, -0.3552246, -1.2734375, 2.1464844, 0.99609375, 1.7841797, -0.23950195, 1.2792969, 1.4091797, -0.31298828, 1.5703125, -1.3017578, 3.6523438, 0.26342773, 0.8046875, -1.9033203, -2.2480469, 0.9169922, -0.70703125, 1.9394531, -0.8144531, 0.6538086, -1.2529297, 0.2927246, -1.1669922, 2.6074219, 2.125, 3.0039062, -2.0566406, 2.2089844, 3.4042969, -0.30786133, -0.91796875, 0.5932617, -0.97802734, -0.32763672, 2.7871094, 0.5620117, -1.453125, 2.8828125, -0.85253906, 0.5991211, 0.7739258, 0.65185547, 1.9345703, -1.3681641, -1.4228516, -0.5991211, -0.5683594, -2.3632812, 2.5761719, 0.95166016, -0.5776367, 0.9506836, 0.67871094, 0.80810547, 1.7080078, 1.8105469, 1.3974609, 0.41723633, 0.19226074, 0.93603516, 0.35717773, 1.3632812, -0.6894531, 3.6992188, -0.16088867, 0.55908203, 0.35058594, 2.7695312, -0.3359375, 2.7285156, 3.5527344, 2.1582031, 2.4101562, 1.9335938, 3.2539062, -0.034301758, 2.3261719, 0.008285522, 0.6147461, -1.5712891, 1.1669922, 0.5419922, -0.34423828, -0.15344238, 0.32006836, 0.13879395, 0.59228516, -1.5673828, 1.1533203, -1.1816406, -3.9316406, 1.6357422, 1.2470703, 1.8984375, -0.37182617, -0.41967773, 0.8071289, 0.17321777, -0.40307617, -0.39135742, -0.65478516, -1.4726562, 1.4707031, -1.6982422, -2.3417969, 1.7900391, -1.5576172, 0.2878418, -3.1503906, -0.859375, -1.2958984, -1.1425781, 1.3613281, 0.105285645, 0.25756836, 2.6738281, 1.9199219, -0.6538086, 0.5961914, -2.0351562, 0.57128906, 1.6669922, 2.7324219, -0.09942627, 0.5654297, 1.2988281, -0.9995117, -1.59375, -4.7148438, 2.3339844, 0.015617371, 2.1738281, 2.2890625, -1.3486328, 2.8378906, -0.085998535, 1.9150391, -1.6865234, 2.0546875, 1.3857422, -2.1660156, -1.1455078, 0.6069336, 1.7041016, 3.515625, 0.23657227, -1.1347656, 1.4228516, -1.7773438, 1.8515625, -0.2475586, -0.4560547, 1.6689453, -0.08660889, -1.3535156, 1.7001953, 1.4619141, -1.2880859, -1.2490234, 2.21875, 1.7597656, 0.107666016, -0.40722656, -1.1884766, 1.421875, -0.3486328, -1.3330078, -0.52783203, -1.3925781, -1.8339844, 0.096069336, 0.25708008, -0.33740234, -2.0019531, -0.14111328, 2.1972656, -1.9902344, 1.1689453, 2.2226562, -0.5234375, 0.99902344, -1.4814453, -0.14550781, 0.025527954, -0.04949951, 1.1767578, -1.3291016, -2.6738281, 0.31030273, 1.1230469, 0.25708008, -0.6074219, 0.38378906, -0.7651367, -0.41381836, 0.46948242, 2.3632812, 0.6796875, -0.4658203, -0.3659668, -0.07891846, -1.1611328, 1.1035156, -2.1113281, -0.6376953, -0.25805664, -2.984375, -2.3769531, -1.859375, 0.12213135, 0.9272461, 2.2714844, -0.47680664, 2.3789062, -2.0507812, -2.1289062, -2.1191406, -2.4550781, 2.3730469, 2.4628906, -0.8691406, 1.0830078, 1.1796875, 2.4648438, -1.53125, -1.0224609, -0.68896484, -1.6171875, -0.22229004, -1.1337891, 0.088256836, 0.88183594, -0.3293457, 0.50390625, 2.015625, 1.0009766, -1.0966797, 1.9169922, 0.15673828, -0.18225098, -1.7226562, -0.25952148, -1.5703125, -1.2568359, -1.3955078, -0.057006836, 2.6601562, 1.3349609, -1.9638672, -2.1875, -1.3964844]}, "B00V8JJGOI": {"id": "B00V8JJGOI", "original": "Brand: HKESTG\nName: 2-Stage Propane Tank Regulator with 2 Pigtail Hoses\nDescription: Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.\nFeatures: Don\u2019t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks.\nHooks up 2 propane tanks to your RV at once so you\u2019ll always have a fuel supply.\nAuto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow.\nLets you remove empty propane cylinder without interrupting propane supply.\nIncludes 2 12-inch pigtail hoses.\n", "embedding": [-1.3193359, 0.99560547, 0.36450195, 2.1855469, -1.9521484, -0.9682617, 1.1279297, -0.09185791, 0.65283203, -1.2978516, 0.26123047, -1.2792969, 1.4013672, -1.1806641, 0.73535156, -0.26733398, 0.47753906, 0.2861328, 3.4199219, 2.2070312, 0.12866211, -0.3178711, 3.3476562, -2.1074219, 1.9707031, -1.0048828, 2.3632812, -0.828125, -1.0625, 0.121154785, 1.1435547, -0.45825195, -0.86816406, 0.9067383, 0.48046875, -0.109436035, -1.1367188, -2.4101562, -4.78125, -0.14099121, -2.5410156, 1.2792969, 0.1907959, -1.453125, -1.3544922, -1.0322266, -0.7973633, -1.4775391, -0.31103516, 1.6787109, -0.09777832, 2.0957031, -0.32666016, 1.4931641, 0.30419922, -0.25, -1.0351562, -1.421875, 1.4277344, 1.1005859, 1.4335938, -0.87939453, -3.1777344, 1.0224609, 1.0117188, -0.05529785, -1.1132812, -0.3112793, 1.7802734, 0.54003906, 0.09320068, -0.8408203, 1.1201172, -2.8398438, -2.5761719, 1.7412109, -1.8125, -0.53564453, 1.6396484, -0.1763916, -0.9038086, 1.4238281, -0.06750488, 0.068115234, 2.7675781, -0.24389648, 1.6875, 0.43359375, 1.3125, 1.4960938, -2.8300781, 1.828125, -3.0898438, -2.4648438, 0.22131348, 2.6757812, 1.2646484, 2.9726562, 1.9707031, 1.5068359, 1, -0.6298828, 1.109375, 1.3144531, -1.5224609, -0.11450195, 0.42163086, 1.1103516, -2.6914062, -0.3540039, 0.31079102, -0.7426758, -0.039520264, -1.6894531, -0.9663086, 0.024490356, 0.8730469, -0.64941406, 1.6181641, 0.78222656, 2.4472656, -0.9243164, 0.8276367, 0.4975586, 0.8510742, 1.7724609, -0.7207031, -1.8105469, 4.1914062, -0.28735352, 0.80908203, -0.26782227, 1.8417969, -0.061401367, 2.8613281, -2.9042969, -1.6142578, -3.6972656, -1.5292969, 1.7490234, -3.0195312, -2.0039062, 1.4082031, -0.4597168, -2.390625, 0.31982422, -3.6074219, 0.48876953, 2.4296875, -3.3203125, 2.4511719, -1.1347656, 1.6884766, -2.1757812, 3.2734375, 1.0507812, 1.6923828, -0.8979492, 0.06915283, 1.0146484, 2.3105469, -0.8569336, -5.4296875, 1.2392578, -0.8911133, -3.1699219, 1.9433594, 1.4082031, -0.6020508, 1.1386719, 0.10266113, -1.9990234, 1.7304688, 0.034729004, -0.03466797, -2.4160156, 1.5771484, -0.36621094, 3.0292969, 0.9042969, -3.6679688, -1.6181641, -0.32250977, -0.73339844, 1.9736328, 0.8334961, -0.7866211, -1.6865234, 2.3789062, -0.9946289, -3.4238281, 1.3378906, -0.4831543, -1.4980469, -0.13183594, -2.8300781, -3.9492188, -0.5395508, 1.21875, 1.5517578, -0.22717285, -0.47045898, -0.3659668, 0.8774414, -1.8134766, -1.0957031, 0.9350586, -0.50097656, -0.8623047, 3.3339844, -1.0488281, 1.2294922, 1.8232422, -0.1907959, -0.2331543, -1.6552734, 1.8701172, 3.5234375, 1.0263672, -1.1738281, -0.39086914, 1.09375, 2.4082031, 0.14794922, 2.4765625, 0.17358398, 0.5185547, 0.03378296, -2.0859375, 0.02609253, 0.56640625, 1.7255859, 0.48461914, 0.69628906, -0.9477539, 1.4335938, -0.2763672, -0.953125, 0.34204102, 3.4960938, 1.7177734, 0.05795288, -1.1845703, -0.43847656, -1.5224609, 1.6337891, -0.5966797, 1.0556641, 1.7978516, -2.1054688, 1.0126953, -0.59375, -1.8222656, -1.6416016, 0.028961182, 0.75341797, 1.0605469, 0.4099121, 1.2958984, -2.2773438, 1.5791016, 0.55371094, 2.0761719, 1.4482422, -0.40185547, 0.13647461, -0.6508789, -0.5517578, 1.0996094, 0.7363281, -1.2509766, 3.0585938, 0.859375, -2.7304688, 1.21875, 1.8994141, -1.2070312, 1.0722656, -0.7998047, 0.74121094, 1.5527344, -0.16687012, 0.50341797, -3.1484375, 0.7871094, 1.8652344, 1.4199219, 1.6308594, -1.8632812, 0.2878418, 3.3984375, -1.046875, -0.6689453, 0.34106445, 3.7011719, -0.8569336, 1.3261719, -0.99560547, -0.27392578, -0.36816406, -0.4169922, -0.31201172, -1.484375, 1.2900391, 3.0605469, -1.1269531, 0.7426758, 0.8696289, 0.76464844, 0.6347656, 0.41577148, 0.5722656, -2.9902344, -0.3564453, -0.4934082, -1.5117188, 1.9208984, -1.9414062, -0.95751953, 2.7089844, -2.40625, -0.6489258, -1.1972656, -1.8066406, -0.3515625, 0.6611328, 0.55566406, 0.31079102, 2.5507812, 0.8330078, 0.22680664, -1.1132812, -0.29003906, -0.91748047, 0.6479492, 2.3496094, -0.92529297, -2.6777344, 0.6323242, -2.4003906, -0.9404297, -2.4472656, 0.15881348, 2.3300781, 3.1523438, 1.3867188, -1.1181641, -0.5253906, 1.3105469, -2.5957031, -1.0410156, 1.7988281, -0.5161133, -2.0351562, 0.41552734, -0.37768555, -0.18737793, 2.5097656, -0.97314453, -0.4765625, 0.65625, 1.4804688, 0.023651123, 0.6645508, -1.7666016, -0.18701172, 2.3769531, -3.7539062, -0.6455078, 0.8208008, 2.2089844, -2.4570312, 0.7988281, -0.30029297, -0.9433594, 0.54003906, -1.2363281, 0.58251953, 0.5541992, 0.875, -0.34423828, 0.18249512, -0.59765625, -1.3886719, -3.6328125, 0.001540184, 2.5097656, -0.82373047, 0.94628906, -1.4462891, -1.2050781, -0.7246094, -0.7988281, -0.23498535, -2.5625, -2.0878906, -0.0035820007, 2.1894531, -0.070129395, 1.1230469, 1.0957031, -0.8569336, -2.7089844, 0.2199707, 2.75, -0.9814453, -0.04916382, -0.92626953, -0.9580078, 0.19226074, -1.3193359, -0.6669922, 1.1464844, 0.6352539, 0.6953125, -1.2695312, -0.054229736, 0.9926758, -0.09655762, 2.6269531, -2.3613281, 0.30078125, -3.0585938, -1.0449219, 3.8359375, 1.1767578, 2.3554688, -2.0546875, -0.7451172, 0.2861328, 0.6328125, 0.7841797, 0.76660156, -1.8330078, 2.3203125, -3.0898438, -0.875, 1.4023438, 0.43725586, -2.3417969, 2.1269531, 1.4267578, -0.9633789, 3.5214844, 0.64941406, -0.6171875, -1.0986328, 2.9199219, 0.50634766, -0.38183594, -0.23095703, 1.4365234, -0.15246582, 0.5600586, -2.5351562, 0.9375, 1.3173828, 1.1621094, -0.17626953, -0.2956543, 2.6894531, -1.2089844, -0.37524414, -0.30810547, 0.82910156, -1.0498047, 2.4824219, -0.97753906, -0.1541748, -0.80029297, 0.72753906, 0.21704102, -0.6328125, -0.4453125, -0.08496094, 4.84375, -0.79003906, -0.7680664, -0.9301758, -1.1650391, 1.3085938, 1.6201172, 0.5703125, 0.21728516, -0.25268555, -1.7451172, 1.0917969, -2.0800781, 1.1796875, -1.2607422, 2.0449219, -0.9785156, -0.3659668, -1.2753906, -0.8696289, -1.1357422, -1.9394531, 0.17272949, 2.9785156, 1.3105469, -1.1386719, -0.0044021606, -0.5385742, 2.1679688, 0.46044922, 1.5947266, -1.3535156, 0.19995117, 0.7817383, 0.38012695, -1.8066406, 2.8339844, -1.2392578, -1.7167969, -0.14587402, -3.2265625, 0.6904297, 0.37768555, -0.23779297, -0.95996094, -0.10736084, -0.4716797, 1.7695312, -0.39404297, 3.8945312, -0.9248047, 1.6337891, 1.0898438, -2.6015625, -1.4482422, -2.1582031, -4.7734375, -0.6611328, -2.7734375, 0.5410156, 1.9199219, 0.55615234, 0.8642578, 0.33374023, 1.1669922, -3.4667969, -0.8383789, -0.8417969, 1.3017578, -2.0429688, 0.19470215, 0.63378906, 0.6899414, -1.2226562, -3.8085938, -1.8916016, -2.1953125, -2.3378906, -0.5727539, -0.65185547, 1.4003906, 0.86376953, 0.57666016, -0.9277344, -0.69189453, 0.10522461, -0.8173828, -1.3662109, -1.8300781, 2.1582031, -0.3371582, 0.19274902, -1.2333984, 2.7988281, 3.3027344, -0.890625, -1.8710938, 0.4675293, 3.0507812, -0.5498047, -2.2148438, -2.0234375, -1.2138672, 2.0800781, -1.1943359, -0.9238281, -0.043640137, 0.8227539, 0.6020508, 1.1679688, 1.8447266, 1.6582031, -0.82714844, -2.0742188, 3.0449219, 0.6953125, -1.0068359, 1.1894531, -1.9755859, -0.45532227, -2.0351562, 2.0332031, -0.8154297, -1.2001953, -2.0839844, -0.07519531, -3.1914062, 0.97314453, -1.3261719, 1.0234375, -1.5771484, -1.1337891, 0.2998047, 0.39501953, 2.625, -0.66503906, -0.4892578, -1.1933594, -1.0996094, -0.17919922, -0.5317383, 0.61816406, -0.9868164, 0.49047852, -1.0292969, -0.64941406, 0.8984375, -0.77001953, -1.0966797, -1.6162109, 0.8852539, 0.68847656, 3.3964844, -2.9804688, 0.8305664, 0.39013672, -1.8925781, -2.7089844, 1.2949219, 1.1914062, 2.9199219, -1.3144531, -0.20166016, 0.3251953, 2.2050781, 0.94873047, -1.9199219, 0.6166992, -1.9892578, -0.24853516, 0.7373047, 2.1953125, -0.2685547, -0.6777344, 0.9511719, 2.4453125, 1.4169922, -0.09240723, 1.1523438, 0.39941406, 1.75, -0.3930664, -0.7441406, -1.5009766, 2.0664062, -0.24560547, 2.1054688, -0.24475098, -2.5214844, -0.01828003, 2.1425781, -0.8129883, 1.34375, 1.5019531, 0.1194458, -1.734375, -2.3554688, -2.5859375, 0.062347412, 0.1730957, 2.4453125, -1.3505859, 0.06817627, -0.013427734, 1.5068359, 0.53027344, -0.74316406, 1.15625, -1.5917969, 0.85253906, -1.6787109, 0.37060547, -1.1025391, -3.1894531, 0.30419922, 0.6074219, 2.4101562, -0.2854004, 0.15209961, -1.5019531, 0.2097168, -1.8242188, -0.51904297, 1.1972656, 0.008842468, -0.38134766, 3.5136719, 1.0410156, -1.0292969, -0.4025879, -0.07104492, -2.8046875, 0.8413086, 1.2382812, 2.2597656, -0.5986328, 0.2866211, -3.0859375, -4.8945312, -0.6430664, 1.7089844, 1.2568359, 0.6816406, -2.2382812, -1.4990234, 1.5634766, -1.8925781, 0.020721436, -4.34375, 1.6767578, -1.4824219, -1.6416016, -1.0410156, 1.3242188, 0.13000488, 2.1269531, -0.23034668, -2.4921875, -1.1240234, -2.2421875, -0.5522461, 0.37939453, 0.042144775, 0.37939453, -0.72216797, -1.9951172, -0.97998047, 1.0673828, -0.25146484, -1.8808594, 0.78222656, -2.4785156, 0.1628418, 1.5625, -1.3144531, 0.66845703, 2.6367188, 0.5810547, 1.3134766, 2.9160156, 2.0429688, -0.68847656, -0.42285156, 1.1513672, 0.4091797, 0.0052108765, -0.6279297, 0.66503906, 2.0859375, 1.4638672, 2.4101562, -0.3310547, -1.1162109, -1.7900391, -1.9101562, 0.4658203, -1.8535156, 1.5830078, 0.09838867, 0.95214844, -0.7709961, -0.75, -0.3112793, -0.84375, -1.1865234, -0.16235352, 1.6552734, -1.6992188, 1.1855469, -0.6738281, -1.0068359, -2.59375, 0.16467285, 1.6669922, 0.028320312, -1.3896484, 2.5175781, 0.50634766, 0.29467773, 1.3964844, -2.0957031, 1.4179688, -0.7807617, 1.4003906, -2.7480469, -0.26660156, 0.68066406, 0.6533203, -1.1123047, 1.2294922, -3.6640625, -0.8725586, 0.08081055, 2.0976562, -1.3886719, -1.5361328, -0.3942871, -0.6875, -0.5810547, -1.0849609, 1.1894531, -2.3789062, 0.71777344, -0.8222656, -1.9804688, -3.7636719, 3.2011719, 0.12805176, -0.7841797, 1.4335938, 2.2636719, 0.65185547, -2.1855469, 1.8945312, 0.22668457, -0.1550293, -0.5102539, -1.3232422, -0.77001953, 0.76123047, -3.7207031, 1.2333984, 1.0175781, 2.0117188, -1.1162109, 0.2836914, -1.4013672, 1.3105469, 1.9462891, 1.1220703, 2.3554688, -0.1977539, 1.6582031, 1.5634766, 1.4638672, 3.6386719, -0.81152344, 0.75341797, -1.078125, 1.65625, 1.5585938, 0.9765625, 0.95996094, -2.84375, 0.046722412, 1.3349609, 1.3261719, -0.25219727, -2.5097656, 0.117614746, -1.0966797, -2.1992188, -2.2480469, 1.4462891, -2.4667969, -0.011138916, 0.6801758, -0.31225586, -1.6962891, 1.8789062, -0.8745117, -0.8984375, -0.6357422, 3.4726562, 1.4228516, -0.6196289, -2.2617188, -1.1660156, 0.79003906, 1.8261719, 0.8779297, 0.8286133, 0.47265625, -1.8457031, -1.0898438, 0.26708984, 1.2822266, -1.921875, -0.26489258, -1.7236328, 3.1113281, 4.4414062, 0.008758545, 2.6445312, 2.0839844, 0.6245117, -4.2773438, 0.7817383, -0.0021038055, 0.12219238, -1.421875, -3.4179688, 0.5776367, -2.0917969, -1.0429688, -2.1738281, 0.5473633, 0.44482422, -0.12878418, 0.53027344, -0.066345215, -1.3417969, 0.9433594, 2.4609375, 0.019378662, 0.36938477, 1.2246094, 0.5673828, 0.5551758, 1.9169922, -1.7636719, 0.46850586, 0.03878784, 2.2167969, 0.8935547, -0.54785156, -0.16027832, 1.8681641, -1.0458984, 1.1533203, 0.006717682, 0.71777344, 2.8535156, 1.1298828, -0.47753906, 2.2910156, -0.7080078, 0.86279297, 0.15698242, 0.7841797, 0.04296875, -0.9042969, -0.30078125, 2.6054688, -1.8271484, -1.5292969, 2.2734375, -0.25805664, 1.1669922, 0.14465332, 0.064697266, -0.2956543, -0.8276367, 0.9458008, -2.1953125, 0.9116211, -0.7836914, 0.9448242, 0.9326172, -3.3105469, -1.7675781, -0.47045898, -0.28027344, -0.060699463, 0.72558594, 0.7714844, -0.17785645, 0.1940918, -1.0341797, 1.3955078, 3.8105469, -0.9165039, 3.1796875, -1.7041016, -0.010826111, 1.2490234, -1.5419922, -1.6269531, 1.484375, 0.921875, -0.1303711, -1.0927734, -0.08465576, -0.43920898, 1.0146484, -4.3085938, 1.0478516, 0.3474121, -3.2675781, 1.0458984, 2.0078125, 1.3427734, 1.34375, -0.18811035, 0.111206055, -0.30249023, 1.5585938, -1.8125, 0.87158203, -0.46728516, -0.6640625, 1.2822266, 2.5898438, 2.0742188, -0.84716797, -0.5620117, 1.5175781, -1.4755859, -1.2490234, 0.31420898, -0.5058594, -1.4052734, 0.92626953, 2.5976562, 2.6757812, 1.7910156, -0.35791016, -1.8388672, 0.765625]}, "B0179IK62C": {"id": "B0179IK62C", "original": "Brand: Broil King\nName: Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nMake the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results\nDurable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready\nDo more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb\nMake your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space\n", "embedding": [-1.9296875, -0.7241211, 1.4824219, 1.5488281, 0.34570312, 0.19750977, 1.203125, -1.0429688, -0.51416016, 0.83496094, 1.6640625, -0.1348877, 0.14355469, -1.5175781, 0.22631836, -1.1396484, 0.09472656, 0.86865234, 0.86035156, -0.25854492, -0.09454346, 0.84814453, 1.6240234, -1.4824219, 0.5522461, 0.23535156, 2.8691406, -3.5898438, -1.8916016, -1.7607422, 2.3046875, 0.48950195, -0.8930664, 1.3789062, -1.6337891, -1.4990234, -1.421875, 0.57373047, -3.75, 1.1132812, 0.100097656, -1.5478516, -1.2480469, 0.13366699, -2.5078125, 0.86376953, 1.4970703, 1.8681641, -2.5566406, 0.4560547, 1.7304688, 1.8095703, -0.1763916, 2.3066406, -0.7480469, 0.84277344, -0.1953125, -1.7119141, 0.118652344, -1.5068359, 2.453125, -0.15966797, -0.82421875, 0.34521484, -1.2734375, 1.5351562, 0.75390625, 0.38061523, -1.0410156, 0.24414062, 1.3847656, -1.8203125, -0.8227539, 0.29248047, -0.41064453, -1.8193359, -2.9414062, 1.3398438, 0.22143555, -1.2802734, -2.453125, 4.0703125, 0.9628906, -1.4589844, 0.23217773, -0.02835083, -0.77441406, -0.75146484, 1.7666016, 0.6303711, 1.0205078, 0.59228516, -1.7324219, -3.546875, 2.4882812, -1.0478516, 0.6982422, 0.31762695, 1.2060547, 1.6572266, -0.022109985, -0.10601807, -0.5854492, -0.79296875, -2.1816406, -3.1015625, 2.2675781, -0.16516113, -3.1015625, -0.7163086, -1.3505859, 0.02696228, 1.5986328, 0.6279297, 1.2861328, 1.0664062, -0.10412598, 3.9667969, 0.8876953, 0.29589844, 2.5214844, -1.0371094, 2.2851562, -1.1015625, 0.3269043, 1.7539062, -1.7900391, 1.3173828, 4.2617188, -0.02784729, 0.58935547, -1.8847656, 2.6074219, -0.38232422, -1.1933594, -2.34375, -1.0068359, 0.037750244, -4.5, 0.36254883, -2.5058594, 1.6298828, 0.35253906, -0.81347656, -3.3378906, 1.1699219, -0.8544922, 0.56884766, -1.2646484, -1.5039062, 0.16223145, -0.6899414, 3.2539062, -3.7792969, 2.6777344, -0.4243164, -2.0351562, -2.2421875, 2.4765625, 0.74072266, 0.57373047, -1.8388672, -1.0302734, 0.85498047, -1.7021484, 0.20263672, -0.7519531, 1.4355469, 0.7597656, 1.6025391, -0.23828125, -1.3476562, -1.3212891, 0.09472656, 0.95654297, -0.21069336, -1.4296875, 1.2519531, -0.50878906, 0.49829102, -0.77001953, -3.9921875, 0.4638672, 0.86816406, 1.0107422, -1.6162109, 1.0927734, 0.7475586, 2.0488281, 0.10675049, -0.95410156, 0.03665161, 0.51464844, 0.22351074, -0.27246094, -0.85253906, -0.9614258, -2.3359375, 1.3574219, -0.16674805, -0.9394531, -1.1582031, 0.83496094, -0.39746094, -2.5429688, -2.7792969, 0.72753906, -2.3925781, 0.27075195, 2.3222656, 0.6479492, -1.4775391, 0.25219727, -1.1962891, 0.82910156, -3.7539062, 0.091552734, 1.3037109, 1.3251953, 3.6699219, 0.72314453, 0.3408203, 1.4082031, 0.69189453, 0.14367676, 1.1611328, -0.18920898, 1.6503906, -1.9130859, -1.8486328, 2.5136719, 0.08001709, -0.83740234, 1.1074219, -1.0117188, 2.1914062, -0.069885254, -0.8671875, 0.045440674, 0.19116211, -0.55810547, -1.9912109, -1.0498047, -2.28125, -0.9404297, -0.21936035, -0.55078125, 1.7050781, 1.4082031, -0.45825195, 0.7314453, 0.32373047, 0.9189453, 0.1706543, -0.5307617, 1.71875, -0.7270508, 0.5385742, -2.0371094, -2.78125, 0.97998047, 1.1201172, 0.04928589, -0.06359863, -0.05883789, -2.2128906, 3.1582031, 1.4990234, -1.6582031, -2.2890625, -1.5615234, -0.40014648, 2.0449219, -1.9189453, 0.5239258, 1.9658203, -1.4482422, 4.4101562, -0.14331055, 1.4941406, 1.1484375, -0.92285156, 1.4882812, -1.9599609, -0.26660156, 1.4189453, 1.9443359, -1.5449219, 1.1289062, 0.1652832, 5.6171875, -0.30664062, -1.6367188, 2.5136719, -0.8359375, -0.6635742, 3.8085938, -0.1328125, -1.2324219, -2.2167969, 2.015625, 0.7817383, 1.9873047, 0.07421875, -0.19348145, -1.4208984, 0.14086914, 1.8847656, -1.2871094, -0.020004272, -0.04901123, -0.43359375, -3.0957031, 0.3383789, -1.6113281, -1.4824219, 4.0742188, -2.75, 2.6464844, 0.94677734, 0.11566162, 1.71875, 0.9433594, -1.8613281, -0.11993408, 0.3930664, -0.041290283, -0.1607666, -1.5292969, -0.21289062, -0.026306152, -0.50683594, -1.3857422, -0.6459961, -3.3300781, 0.81103516, -2.9257812, -3.4003906, 0.48364258, -1.6279297, -1.1464844, 1.6015625, -1.6367188, -1.0869141, -0.45092773, -2.1503906, -0.8125, -1.6201172, 1.2822266, 0.074279785, 1.1533203, 0.45507812, 1.1337891, -3.8417969, -0.98535156, -1.2802734, -0.4272461, -0.28295898, 0.7470703, -1.8613281, 0.8076172, -0.46166992, -1.8085938, 0.4387207, 0.9350586, -0.6669922, 0.19140625, -2.2675781, 2.4863281, -2.6308594, 1.0966797, -1.9384766, 1.0986328, -2.9121094, -2.7246094, -2.703125, -0.9550781, 3.9101562, -0.74658203, 2.5, -1.3798828, 0.5317383, 1.453125, -0.5756836, -1.6064453, -0.5566406, 0.94677734, -1.8457031, 1.5039062, -1.9277344, 0.31103516, 1.2705078, -1.0957031, -1.9619141, 0.8964844, -1.9316406, 2.8320312, -1.6933594, -0.5390625, -0.69873047, 3, -0.9121094, -1.3056641, -1.140625, -1.2880859, -1.9023438, -2.0117188, 0.059295654, 1.2265625, -2.359375, 1.3466797, -0.042419434, -0.44213867, 2.0878906, -0.2244873, -3.9960938, 2.2050781, -0.26464844, -3.5996094, 4.2851562, -1.1367188, -0.2770996, -1.0537109, -0.16784668, 2.9433594, 0.52246094, 3.8203125, -0.12463379, 0.29956055, 1.5283203, 0.7163086, 0.5810547, -0.85595703, 0.82177734, 1.6757812, -0.5678711, -1.9697266, 0.7861328, 1.7958984, -3.0644531, 0.045959473, 2.2832031, 1.3115234, 2.9394531, 1.9082031, -0.5727539, 1.3613281, -0.51904297, 1.4521484, 1.2675781, 0.9111328, 0.33032227, -1.4130859, 0.5292969, 0.20983887, 1.4619141, 2.7539062, 0.6796875, 2.4824219, -0.9785156, -0.21984863, -0.54052734, 0.2746582, 0.9116211, 1.2695312, 0.32543945, 2.4746094, -0.9067383, 0.6201172, -0.5917969, -0.5595703, -0.15979004, -1.7167969, -0.61328125, 1.6337891, 0.113464355, 0.8984375, -0.39038086, 0.55615234, -0.13586426, -1.9345703, 1.9726562, -1.2587891, 0.26391602, 0.10675049, 0.08123779, -0.91552734, -2.4472656, 2.5234375, -1.6582031, -0.1194458, -0.24951172, 2.6582031, 0.28198242, -0.69970703, 1.5722656, 0.39672852, -1.8808594, 1.0244141, 0.6933594, -1.0517578, 2.703125, -2.0507812, 2.0332031, -0.0115356445, -1.5751953, 0.05493164, -1.3398438, 1.2041016, -0.5805664, -0.62597656, 1.7441406, 0.64746094, -0.8798828, 0.29956055, -4.4375, 1.6796875, -1.1396484, -1.015625, -0.88916016, 2.3007812, 1.5429688, 0.75341797, -0.38623047, 3.0253906, 0.11395264, -0.42578125, 1.0830078, -5.1679688, 0.33740234, -3.6601562, -2.578125, 0.55615234, -0.3178711, -0.515625, 0.30566406, -0.88378906, -0.09088135, 3.1953125, -1.0244141, -0.31689453, -0.4206543, 0.37158203, 0.06274414, -0.49951172, 0.070007324, 0.016815186, 1.4970703, -0.111083984, -3.9394531, -0.86865234, -1.15625, 2.1425781, 1.6611328, -3.7480469, 0.20446777, -1.1083984, 0.31860352, 0.2626953, -1.4267578, 1.4873047, -1.4746094, 0.7480469, -3.40625, 1.4345703, 0.53125, 1.2294922, 0.121398926, 0.6586914, 0.007423401, -1.0068359, -0.9296875, -0.53759766, 2.078125, 0.75927734, -2.890625, -2.515625, 0.4404297, 0.94921875, -2.5292969, 1.9404297, -1.5830078, -0.8261719, 0.64208984, 0.5463867, 1.1386719, 2.0800781, 1.171875, -0.17797852, -1.6708984, -0.019180298, -0.85595703, -0.026733398, -0.5517578, 1.0117188, -0.99902344, -0.099731445, -1.3417969, -1.3154297, -2.640625, -0.42163086, -4.21875, 2.8222656, 4.265625, 1.3964844, 1.6767578, -2.0507812, 0.4411621, -0.9638672, -0.044647217, -3.234375, 1.3349609, -1.2929688, 0.21166992, 1.6015625, 0.85498047, -1.1103516, -0.46850586, 2.5117188, -2.1191406, -1.3867188, -2.1660156, 0.75146484, -2.1171875, -0.6669922, 2.1953125, -0.12878418, 4.0703125, -1.2792969, -1.4462891, 0.7578125, 1.4638672, -1.4511719, -0.5683594, -1.1123047, 0.5761719, 1.8515625, 1.4443359, 2.3261719, -0.36621094, 0.2548828, -0.5024414, 2.3183594, -1.109375, 1.0146484, 0.8203125, 0.21679688, -1.7177734, -0.5449219, 1.5117188, 1.3388672, 0.81347656, 3.3984375, 1.3076172, -2.4941406, 1.453125, -0.4638672, -3.3535156, -0.001917839, 0.5131836, -1.5654297, 0.5966797, 0.2130127, -3.2988281, 0.05114746, 1.9082031, -0.3100586, 2.046875, -0.49682617, -1.8330078, 1.7089844, -0.22619629, -0.1928711, -0.98828125, 1.1181641, 1.5546875, 0.51464844, 1.7792969, -0.87353516, -0.23669434, 0.47705078, -0.26635742, -2.46875, 2.0761719, -0.1817627, -1.2431641, -0.34375, 0.5878906, -1.5693359, -1.0107422, 2.765625, -0.095581055, 1.5341797, -0.0826416, 2.8964844, -1.4736328, 0.84277344, -1.8740234, 2.3496094, -0.15820312, -2.234375, 3.0488281, -3.0839844, 1.2304688, -2.7363281, 0.61279297, 0.034942627, 1, 0.59277344, -1.0175781, -1.2138672, -0.22375488, -3.0859375, -4.2617188, -1.34375, 0.4951172, 1.4169922, -1.3232422, 1.1933594, -0.9321289, 0.9140625, -0.6069336, -1.6386719, -2.3242188, -0.60302734, -0.20739746, 0.014122009, -1.9238281, 1.8867188, -0.4560547, 0.14294434, 0.3449707, 1.421875, 1.1708984, -2.6796875, -1.0175781, 2.3222656, -2.8144531, 0.5214844, 0.6230469, -0.6279297, -2.1484375, -0.39916992, -0.4675293, -0.81689453, 2.6425781, -2.0839844, -0.036834717, 1.9765625, -1.5742188, -0.46850586, 0.9008789, -2.1035156, 1.3759766, -1.8867188, 1.2080078, 0.14855957, -0.55371094, 1.0576172, 0.76464844, -2.1230469, -0.1217041, 1.4824219, 0.44360352, 0.7216797, 0.73095703, -1.7089844, 0.50341797, -1.5126953, -2.484375, 0.60595703, -1.9423828, -0.5546875, -1.8134766, 0.96728516, 1.2998047, -0.89208984, 0.7270508, -0.43603516, -0.9511719, -1.2480469, 0.71435547, -2.1464844, 2.8496094, 2.5039062, -2.0507812, -0.27539062, 1.6962891, -1.0585938, 3.8632812, 0.11981201, -1.3730469, 0.17211914, -0.28833008, 0.39086914, 0.37109375, 1.5029297, 2.0566406, -0.1940918, 0.9511719, 1.1582031, 3.6660156, 1.0537109, 1.8164062, 0.8925781, -0.93847656, 0.28027344, 5.921875, 3.7539062, -2.7402344, 0.75878906, -1.4511719, 1.1181641, 2.8984375, -0.5395508, -1.4150391, -1.8876953, -0.40185547, -2.1582031, -1.2714844, -3.8945312, 0.61621094, -0.014846802, -1.8154297, -0.59033203, 1.5332031, 1.0507812, 2.2324219, 1.3466797, 0.91845703, 0.3840332, 1.0654297, 0.38745117, 0.39086914, 1.2822266, -2.1523438, 2.0410156, -0.3395996, -0.26904297, -1.2705078, 1.8085938, -0.28588867, 3.5058594, 2.7265625, 0.40576172, 4.3554688, 1.8974609, 3.1503906, 0.62597656, 1.7402344, 1.5986328, -0.8178711, -1.6640625, 1.2265625, 1.7695312, -0.06085205, 1.2431641, 1.9228516, -0.7114258, -0.9785156, 0.04840088, 0.09710693, -0.17700195, -0.08123779, 1.9941406, 1.6894531, -0.4248047, -1.5253906, -0.23242188, -0.83740234, -0.21960449, -0.24072266, -1.4335938, 3.4199219, -0.43530273, 1.7685547, -0.5263672, 1.0722656, 1.7734375, -1.7929688, -0.6899414, 0.69970703, -0.0289917, 0.88183594, 2.1914062, -0.25708008, -0.6298828, 1.0761719, 1.1337891, 0.99658203, 0.99658203, -0.077941895, -2.7890625, 0.84521484, 2.5195312, 3.2226562, -1.0761719, -1.3144531, 2.4785156, -0.20727539, -2.1289062, -2.7363281, 2.1933594, 2.1308594, 1.0048828, 2.7382812, -2.75, 2.3222656, 0.15490723, 1.0332031, -3.5195312, 0.3408203, -0.55859375, -0.87402344, -0.008415222, 1.8515625, -1.6162109, 1.5224609, 3.1367188, -0.58935547, 1.8339844, -1.0087891, 0.9980469, 1.4238281, 2.25, -0.7817383, 0.6826172, 0.031051636, 2.7949219, 1.2314453, -1.90625, -2.28125, 1.4023438, 0.7241211, 1.234375, 0.81689453, -1.2207031, -0.52197266, 0.40966797, 0.4814453, 0.8959961, -1.9873047, -1.2275391, -1.5175781, -0.38549805, -0.2902832, -3.6503906, 2.8183594, 1.9238281, 0.9423828, 0.053619385, 2.8496094, -1.0029297, 0.6411133, -0.033416748, 0.030258179, -1.5048828, -1.5664062, 1.2851562, 2.2480469, -2.3769531, 0.24047852, 1.5292969, 0.9008789, -1.5351562, 0.18151855, -0.6220703, 0.3408203, -0.1227417, 1.1660156, -2.6074219, -0.3088379, 2.3105469, -0.088256836, -0.8125, 2.3457031, 0.81884766, 1.171875, -1.0244141, -0.52685547, -0.8496094, 0.64160156, -1.2998047, -0.57421875, 0.9321289, 1.9208984, -0.29541016, -1.3017578, -3.4277344, -1.1298828, -2.9394531, 0.9765625, -2.8378906, 0.45385742, 0.77197266, 0.5551758, 2.3300781, 0.96728516, -1.3466797, 0.75097656, 0.29418945, -0.3371582, 0.74365234, 0.9404297, -0.5698242, 0.8964844, -1.4541016, 0.50634766, 2.8417969, 0.7006836, 0.9433594, 2.0839844, 0.24707031, -1.5019531, 1.4111328, 0.52734375, -1.1474609, -0.44433594, 0.609375, 1.2109375, -0.25317383, -0.6459961, -1.2675781, -2.8984375]}, "B08KSLN5VC": {"id": "B08KSLN5VC", "original": "Brand: GasOne\nName: GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag\nDescription: \nFeatures: EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle\nDIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck\nHIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage\nCONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation\nHIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease\n", "embedding": [-1.3476562, 1.0556641, 1.4580078, -0.0084991455, -0.8095703, 1.9316406, 0.5595703, -0.56347656, -0.9926758, 2.5449219, 1.8027344, -0.5292969, 0.30419922, -1.8886719, 0.5625, 0.30688477, -0.61279297, 1.2666016, 0.14550781, 1.2470703, 2.9921875, -0.12512207, 1.1835938, -0.12414551, 0.6166992, 2.0898438, 3.7246094, -2.4199219, 0.86865234, -0.15612793, 2.0703125, -0.62646484, 1.2587891, 2.9082031, -2.8066406, -1.2509766, -2.171875, 0.6479492, -2.5195312, -1.6103516, -1.2421875, 0.111572266, 1.4628906, 0.33154297, -1.8964844, -0.6982422, 0.52441406, 0.07208252, -0.7265625, 0.089782715, -0.35791016, 1.9208984, -1.4902344, 2.4121094, -2.6933594, -0.078063965, 1.0927734, -1.2578125, 1.9101562, -0.25805664, 0.36035156, 0.26538086, -0.6821289, -0.20263672, -1.8535156, -0.32177734, 0.6118164, -1.2109375, -2.4238281, 0.06365967, 2.3339844, 0.5517578, 0.6977539, -0.99072266, -0.8125, -0.013595581, -2.4726562, 1.9414062, 1.2900391, 0.36621094, -1.5527344, 2.8613281, -0.094055176, -0.2631836, 1.2607422, -0.58935547, 0.060028076, 0.43969727, -0.023544312, 0.8378906, -3.2421875, 3.2636719, -1.6142578, -5.046875, 1.2216797, -1.1611328, 1.4628906, 0.91015625, 2.5117188, 0.74072266, -0.78808594, -0.09112549, -0.004878998, 1.6220703, -2.1660156, -2.1855469, 3.1660156, 1.0029297, -2.2578125, 0.7519531, -2.2363281, -1.7666016, 0.734375, -0.4345703, 0.8203125, -0.10882568, -0.6484375, -0.2199707, 3.2597656, 0.10076904, 4.0976562, -1.2529297, 1.0361328, -1.0800781, -0.16992188, 1.4599609, -1.5605469, 0.16357422, 3.546875, -0.5942383, -1.5732422, 1.4033203, 1.2695312, -1.4199219, -0.6352539, -1.6650391, -1.8164062, -3.8632812, -3.2285156, -0.08026123, -2.4863281, 1.6875, 2.0527344, 0.075683594, -4.203125, -0.18432617, -1.7197266, 2.2285156, 1.2744141, -2.1269531, -0.03161621, -0.78271484, 0.23022461, -1.9453125, 3.2519531, 1.5253906, -1.2460938, -1.0810547, 2.3476562, 1.7480469, 1.2958984, -1.6503906, -2.2949219, 0.7265625, 1.78125, -2.09375, 0.9121094, 1.5830078, -1.4755859, 0.70458984, 0.7026367, -1.8046875, 0.3461914, 0.8144531, 1.5078125, -0.012107849, -0.37670898, 3.28125, -0.0287323, -1.6787109, -3.0957031, -3.7929688, 2.1464844, 0.81689453, 0.55322266, -1.6826172, -0.056518555, -0.66503906, -1.2216797, -1.8066406, -0.62402344, 1.0009766, -0.6870117, -0.5683594, 0.32080078, -2.1484375, -1.4892578, -0.89453125, -0.43017578, 0.578125, -0.0637207, 0.2746582, 0.6015625, 2.3359375, -1.6943359, -1.4492188, 2.4257812, -1.7060547, 1.5634766, 2.6972656, 0.099975586, 1.0195312, 2.3808594, 0.9658203, -2.2675781, -0.7910156, 2.4863281, 2.296875, 2.3867188, 0.8774414, 0.9135742, -1.8056641, 1.3730469, 1.1953125, -0.42333984, 2.7773438, 1.2158203, 0.4489746, -0.19689941, -2.3789062, 1.5800781, 0.9042969, 0.6479492, 0.4794922, 0.07910156, 3.2519531, 1.2041016, 0.33813477, -1.0429688, -1.0273438, -1.6357422, -0.5444336, -1.5146484, 1.0927734, -3.3828125, -0.5151367, 0.51953125, -1.2011719, 2.7167969, -0.8378906, 0.3022461, 0.25830078, 0.16052246, 0.5722656, -2.2421875, 0.4736328, 0.78271484, 0.9086914, -0.8544922, -0.43701172, 1.2167969, 2.5371094, 0.8413086, -0.12573242, 0.057769775, -0.9580078, 1.4355469, 0.9765625, -1.8876953, 0.18554688, 1.9638672, 1.5439453, 3.5390625, -1.6005859, 2.703125, 0.8574219, -1.5429688, 2.6679688, 0.33618164, 1.5859375, 0.65527344, -1.4326172, 1.9902344, -1.8349609, 0.03881836, 0.60595703, 3.015625, 0.37402344, -1.0869141, 0.2824707, 5.3203125, -1.1816406, -3.0507812, 1.9394531, -1.9716797, 0.33129883, 1.4560547, 0.15490723, 0.54052734, -0.30639648, 1.0927734, 0.08862305, -0.9638672, 0.6220703, -1.7705078, -0.80908203, -0.80078125, -2.1816406, 0.1430664, 1.0546875, -1.8740234, -1.2236328, 0.30126953, 0.61865234, -3.6210938, 0.19799805, 3.5625, -1.421875, 0.0059165955, 1.5869141, 0.80810547, 2.2460938, -0.63720703, -2.1679688, 0.67089844, 1.34375, -0.93310547, 1.9267578, -0.7602539, 0.28979492, 0.4909668, -2.3007812, 0.22521973, -0.88183594, -0.8564453, 0.011772156, -0.9941406, -3.4316406, 1.0546875, -1.1054688, -1.8212891, 1.3486328, -3.0136719, 1.9072266, -1.640625, -2.5976562, 0.2019043, -0.12414551, -0.28125, -1.3242188, 1.0322266, 1.6865234, 0.013832092, -2.4707031, -1.4990234, 0.5571289, 0.2631836, -1.1054688, -1.1503906, 1.203125, 2, 0.03930664, -0.63183594, 0.6201172, -0.37060547, -1.8486328, 1.3916016, -4.3203125, 1.5400391, -1.3017578, 1.0888672, -0.8671875, -0.5625, -2.5273438, -1.859375, 0.9243164, 0.016403198, 3.9199219, -0.85009766, 1.5898438, -0.44604492, -1.3671875, -0.5957031, -2.1230469, -1.4677734, 0.48266602, 1.1611328, -2.09375, 0.2446289, -4.203125, 1.8515625, -2.640625, -0.40625, -0.36889648, 1.1953125, -1.9638672, 1.5185547, -1.1728516, -0.38598633, -0.84716797, -0.47192383, -0.23327637, -3.4453125, -1.2685547, -0.3215332, -0.9770508, 0.7973633, 0.8330078, 1.2597656, 0.22924805, 0.30639648, 1.7636719, 0.01109314, 0.7729492, 1.5224609, -3.8398438, 2.5820312, 0.9194336, 0.28344727, 0.7163086, -1.0859375, -1.4638672, -1.171875, 0.7709961, 1.7021484, 0.23388672, 3.4628906, -0.26904297, -0.69970703, 1.3291016, 0.92089844, 0.5859375, -1.1757812, 0.7919922, 2.1953125, -1.6621094, -2.0136719, 0.49731445, 1.4414062, -3.1679688, -0.91552734, 0.41577148, -0.21911621, 1.0458984, 1.5146484, -1.1582031, -0.9067383, 0.32885742, 1.9433594, 1.328125, 0.53808594, -0.7216797, 0.05847168, -0.42382812, -0.8779297, 0.3149414, 0.78466797, 3.5605469, 1.5175781, 1.1455078, 1.1445312, -2.5527344, 0.2861328, 0.8339844, 0.14550781, 0.38208008, 3.1210938, 0.16516113, -0.9370117, -1.2705078, -0.6147461, 0.65478516, -0.38061523, 1.7089844, 0.7011719, 0.4453125, -0.61035156, 0.3544922, -1.6699219, -0.83984375, -2.5839844, 2.578125, -0.38378906, -1.4824219, 1.8964844, -0.9238281, -0.58203125, -1.3964844, 1.7119141, -0.17138672, -1.0419922, 0.089904785, 1.1298828, -3.5957031, -1.5585938, -2.0390625, -1.2578125, -0.030258179, 3.5683594, 1.3544922, -1.7451172, 1.8779297, -0.20288086, -0.21972656, 2.9355469, -0.578125, 0.09472656, -1.9599609, -0.15429688, -0.4946289, -0.15344238, 0.6982422, 1.6015625, -2.8769531, 1.0673828, -2.9277344, -0.24230957, 1.6660156, -1.5224609, 0.34521484, 0.5048828, -0.4885254, 2.6230469, -2.1933594, 3.9296875, 0.101623535, -1.4423828, 2.2324219, -2.453125, -1.0351562, -2.5742188, -2.2148438, 1.4248047, -1.0351562, 0.0501709, 4.125, 0.29296875, 0.15820312, 0.89453125, 1.578125, -2.1132812, -1.3027344, -0.6020508, 1.4091797, -2.0273438, -0.21936035, -0.77734375, 1.0458984, -2.2753906, -2.015625, 0.5024414, -0.6069336, 0.69384766, -0.26635742, -0.77685547, 0.18359375, -1.46875, 0.5444336, -0.9160156, -0.3408203, 0.2919922, -0.53759766, -1.0947266, -0.8647461, 2.3457031, 0.3305664, -0.29345703, 0.28149414, 3.7460938, 1.7958984, -0.8598633, -0.7763672, 1.3134766, 0.7084961, -0.5131836, -3.015625, -3.0351562, -1.9462891, 0.9482422, 0.0836792, 0.34716797, -2.4023438, -2.3046875, 1.5048828, 1.4248047, 0.3227539, 2.2070312, 0.859375, -1.5419922, 0.66064453, 0.15905762, -1.6162109, -2.8925781, 0.48754883, -0.07006836, -1.0820312, -0.07244873, -1.0195312, 0.22790527, -0.76220703, 0.030075073, -0.7714844, 1.234375, 0.99316406, 0.8383789, 2.9648438, -1.453125, -0.85546875, 1.1376953, -0.6621094, -0.5048828, 0.67578125, -0.23620605, -0.049591064, 2.3339844, 1.7666016, -2.3085938, -1.5673828, 1.7880859, -0.41796875, 0.23840332, -1.0712891, 0.89697266, -2.1367188, -0.5776367, -1.4755859, -1.0957031, 2.2246094, 0.5385742, 1.4785156, 0.46972656, 0.7739258, -2.4980469, -0.14697266, 0.6748047, 0.63183594, 0.7788086, 1.1855469, 0.8129883, -0.14147949, 1.5722656, -0.45166016, 1.6123047, 0.8486328, 1.1396484, 1.2070312, 2.1425781, -2.2578125, -0.09851074, 1.1699219, 2.7714844, 1.2021484, 2.2421875, 1.3115234, -1.0332031, 1.2304688, 0.3227539, -0.6201172, 0.059448242, -1.2470703, -1.3007812, 2.5527344, -1.8203125, -1.7021484, 0.14221191, 2.6035156, -0.8144531, 2.2890625, -0.3310547, -1.6425781, -0.5776367, -3.6738281, -1.6425781, -1.7421875, -1.328125, 0.24853516, -2.0273438, 0.6040039, 0.23461914, 1.7236328, 2.8554688, 0.8359375, 0.10180664, 1.8808594, -0.91748047, 2.2714844, 1.1191406, -0.7392578, -4.1210938, 1.203125, 0.78808594, 0.94628906, 0.88183594, 1.2050781, 0.69970703, -1.3740234, -1.6728516, -1.6083984, 1.46875, -3.1367188, -1.640625, 0.85595703, -0.32666016, 0.69433594, -0.94628906, -0.09112549, -0.30297852, 1.2617188, 0.7446289, 0.41455078, -1.1591797, -0.40576172, -3.3964844, -5.5117188, -1.4580078, 0.2578125, 0.42895508, -0.15344238, -0.9584961, -1.3642578, -0.28759766, 0.9423828, 0.11328125, -2.4589844, 0.6191406, 0.7109375, 0.029220581, -1.8701172, 0.29296875, -0.19274902, 1.4238281, 0.8310547, 0.26831055, 0.1005249, -0.91308594, -1.4892578, -0.14501953, -1.1923828, -1.0126953, 0.3527832, 0.12805176, -0.84521484, 0.32348633, -0.17138672, -2.8046875, 1.5908203, -1.125, -1.1367188, 0.25756836, -1.2226562, 1.2587891, 0.24865723, -2.0292969, 1.4023438, -1.2939453, 0.4543457, -1.109375, 1.90625, 1.7265625, 2.3183594, 0.101989746, -1.0009766, 3.1464844, 0.7055664, 0.13476562, 2.9160156, -0.37695312, -1.2558594, -2.7363281, -1.5253906, -0.8774414, -2.0527344, -0.20141602, -0.15551758, 0.44335938, 0.68115234, 0.76464844, 0.7631836, -0.28759766, 0.30419922, -0.8901367, 0.81103516, -1, 3.9335938, 0.171875, -0.86035156, -3.3164062, -2.6992188, 1.1191406, 0.62597656, -0.7270508, -0.06866455, 1.2460938, -1.2246094, -0.31225586, -0.23706055, 2.2636719, 1.0625, 1.8535156, -1.5732422, 2.2148438, 3.4902344, 0.69970703, 2.4375, 0.4423828, 0.9116211, -0.63183594, 1.9736328, -0.65722656, -1.1484375, 0.9658203, 0.30737305, 2.0800781, -0.17272949, -1.5439453, 2.0234375, -0.20446777, 0.010261536, -2.4746094, -0.9526367, -3.7910156, 1.7109375, 1.546875, -0.94189453, 0.8520508, 1.9277344, -1.1542969, 0.9238281, 2.59375, 1.5830078, -3.4003906, -0.22851562, 0.6669922, -0.47216797, 0.7548828, -0.9477539, 0.2692871, 2.9726562, 0.22131348, -0.43164062, 4.0664062, 1.0693359, 2.4511719, 1.7705078, 1.8623047, 3.0234375, 0.6352539, 2.9414062, 0.56152344, 0.04498291, 3.3261719, -0.8613281, 1.4736328, 2.328125, 0.66259766, 0.33251953, -1.2919922, 1.0332031, 0.48583984, -2.1035156, -0.08605957, 0.4633789, 0.36694336, -4.6289062, 0.56103516, -0.41381836, 0.08905029, 0.69384766, 1.8916016, -1.6005859, -1.3740234, 0.41992188, 0.7285156, 0.37329102, -1.0332031, -1.4267578, -1.2451172, 0.30688477, 1.7412109, -0.16845703, 0.67871094, -0.5786133, -2.2246094, -0.7158203, 1.7363281, 1.5859375, 0.87353516, -0.1932373, 2.3867188, 1.8662109, -0.7861328, 0.34985352, -2.6230469, 1.2167969, -1.2714844, 2.5566406, 0.17932129, -1.5107422, 2.7324219, -0.64501953, -2.1894531, -3.0488281, 1.8632812, 1.4707031, 1.265625, 1.4853516, -2.9140625, 1.5029297, 0.12756348, 0.5683594, -3.2324219, 1.3300781, 0.42895508, -1, -2.1015625, 0.8701172, -0.16174316, 3.078125, 1.3818359, -2.1816406, 0.44213867, 0.67626953, 1.1962891, -0.49121094, -0.007408142, 0.25390625, 2.8261719, -1.6904297, 2.734375, 0.69189453, -0.45654297, -1.4736328, 2.4804688, 2.234375, 0.92822266, 0.6176758, -2.1582031, 2.6328125, 0.89697266, 0.6689453, -0.024002075, -1.7734375, -1.0576172, -1.2363281, -1.0439453, -1.0683594, -1.7685547, 1.1162109, -0.47729492, -2.359375, 0.49731445, 2.0878906, -1.1289062, -0.88183594, 0.5805664, -0.60839844, -0.33569336, -1.6679688, 0.13171387, -1.6767578, -1.078125, 0.07696533, -0.63378906, -0.43823242, -2.3398438, 0.9482422, 0.1932373, 0.55859375, 1.4248047, 0.89453125, -0.58935547, 0.51123047, -0.4736328, 0.07788086, 0.3779297, 2.84375, -0.5805664, -1.1914062, 0.5854492, -2.3632812, -1.1054688, -1.8535156, 0.3947754, -0.13208008, 2.0546875, 0.59716797, 1.3027344, -2.3359375, -1.875, -0.34814453, -3.3535156, 0.34521484, 1.5507812, -0.9770508, -0.007194519, 2.5175781, 1.9277344, -1.453125, 0.23571777, -2.4726562, 1.1640625, 0.6308594, -0.9785156, 0.32080078, 1.1474609, -1.1630859, 0.19152832, 3.4804688, 2.3203125, -0.62646484, 1.4365234, 1.2490234, -1.2529297, -2.6347656, 1.21875, -1.8476562, 0.54003906, 0.34985352, -0.66015625, 2.3007812, 1.2861328, -1.3925781, -1.6767578, -1.4003906]}, "B083VS1N2M": {"id": "B083VS1N2M", "original": "Brand: Baja\nName: Baja 900-Watt Propane Powered Inverter Generator, BAI911LP\nDescription: \nFeatures: \n", "embedding": [1.2236328, -0.93896484, 2.0332031, 0.7128906, -1.6660156, 0.85498047, 0.6972656, -2.5976562, 1.3164062, 1.65625, 1.6865234, 1.1162109, -0.42504883, -1.5517578, 0.9277344, 1.0712891, 1.7626953, 1.9257812, 1.0019531, -1.03125, -0.25585938, 0.71777344, 0.38598633, -1.0517578, 1.8613281, 0.64697266, 7.0273438, -2.4492188, -2.0039062, 0.05795288, 0.50097656, 0.04196167, -2.0585938, 2.4316406, -1.0244141, 1.6015625, -0.18457031, 0.49072266, -2.7695312, -0.10498047, -1.4248047, -1.5488281, 1.0957031, 1.3828125, -2.3359375, -1.5488281, 0.5800781, 0.15966797, 0.118896484, -0.9658203, 0.8071289, 0.73828125, -0.8666992, -0.5078125, -0.26782227, 1.9140625, -1.1884766, -1.3291016, 1.8164062, 1.734375, 1.3271484, 0.4255371, -0.9453125, 0.72558594, -0.9423828, 0.9267578, -0.7739258, -0.828125, 0.14978027, 0.036499023, 3.390625, 0.6738281, -1.0175781, -1.2353516, 0.06414795, -0.29833984, -4.7734375, 1.0693359, 1.3847656, -0.07220459, -0.2097168, 0.14770508, 1.7880859, -2.3828125, 0.5385742, 0.09246826, -2.9316406, -0.6220703, 0.1274414, 2.625, -0.23498535, 2.4160156, -2.8691406, -6.1835938, 1.5712891, -0.033996582, -2.0898438, 0.5097656, 2.6523438, 1.6113281, 1.4111328, 1.2294922, 0.9428711, -0.10461426, -1.1699219, 1.8662109, 2.2695312, 0.27246094, -2.59375, 0.13366699, -2.2167969, -1.7949219, 1.0927734, 1.6933594, 0.54785156, -0.2709961, 1.2734375, 0.040130615, 3.5976562, 1.3115234, 3.7871094, -1.1113281, 1.2089844, 0.7866211, 0.21252441, 0.7133789, -0.9926758, 1.5, 4.7773438, -0.21166992, 2.1171875, 0.46191406, 2.1113281, -0.6904297, -0.29858398, -3.1894531, -2.1308594, -2.5644531, -2.0878906, -1.4853516, -2.8886719, -0.47607422, 3.0292969, -2.0195312, -3.703125, -1.4912109, -1.7382812, -1.6259766, -2.4824219, -2.1015625, 1.0966797, -0.3959961, -1.5859375, -0.41381836, 0.7373047, -0.55322266, -1.8212891, -2.5292969, 0.59814453, 0.61328125, 0.44555664, -0.5332031, 0.05404663, 1.5332031, -0.6791992, -1.2714844, 0.20251465, 0.5864258, 0.2121582, 1.6503906, -1.1962891, -3.4804688, -0.4091797, -2.8105469, 0.1652832, -0.7553711, 0.18615723, 1.3164062, 1.6875, -0.13085938, 0.55908203, -0.87158203, -0.2590332, 0.19274902, 0.7504883, -2.4609375, -0.18591309, -1.5761719, 1.53125, -1.6220703, 0.64160156, -0.29833984, -1.0068359, 0.5371094, 0.8959961, -2.4335938, -2.8183594, 0.23840332, 3.2167969, -0.20812988, -1.5712891, 0.35546875, 0.67089844, -0.21472168, -0.76171875, -3.0839844, 1.1005859, -0.30737305, -0.5917969, -0.15893555, 2.8691406, -0.17797852, 2.8164062, -0.011550903, -0.6459961, -3.9628906, -0.5961914, -0.27124023, 1.8408203, 1.765625, 0.22192383, -0.7192383, 1.59375, -1.7949219, 1.0136719, 0.4091797, -0.15478516, 0.48828125, -3.1113281, -0.91015625, 3.2578125, 1.3916016, -1.4199219, -1.1103516, 0.09472656, 1.7890625, 0.4284668, -0.35302734, 0.061950684, 0.06732178, 1.7265625, -1.3378906, -0.5957031, -0.64453125, -0.31689453, 0.18249512, -1.6484375, 0.36767578, 2.4570312, 1.3652344, 2.2578125, 0.027862549, -1.1826172, -0.6455078, -1.234375, 0.265625, -0.072021484, 0.7910156, -0.2775879, -1.5019531, 2.125, -0.8232422, 0.23669434, -1.8730469, -0.80371094, -1.8369141, 1.7617188, -0.6826172, -2.4863281, -0.78125, 1.3046875, 1.0273438, 1.3320312, -0.1385498, 1.1152344, 1.6386719, -1.3876953, 1.5888672, -0.37426758, 2.3652344, -1.6884766, -1.5654297, -0.9189453, -2.2734375, 0.20654297, -1.3574219, -1.6347656, -1.1474609, -2.1367188, 2.2558594, 2.203125, -2.0507812, -1.7167969, 4.7617188, 0.32910156, 1.2060547, 0.95214844, -0.48364258, -0.14282227, -0.16308594, 0.3046875, 1.7597656, -0.15429688, 1.9833984, -0.265625, -1.1630859, -1.3251953, -2.1132812, 1.2666016, 0.99316406, 1.4804688, -1.3740234, -0.8803711, 1.8173828, -1.6572266, -1.0859375, -0.109069824, -3.3359375, 0.23156738, 0.2421875, -1.0351562, 1.8974609, -0.06060791, 0.60839844, 1.0683594, -0.9345703, 0.17443848, 0.77490234, 1.3613281, -1.6835938, -2.0449219, 0.027023315, 0.6196289, -1.4716797, -0.4519043, -0.47851562, -2.5117188, -0.71435547, 2.3359375, -0.73583984, -0.32177734, -0.10180664, -0.80078125, -0.8144531, 0.08679199, -1.4267578, -1.1230469, 1.1738281, -0.5732422, -2.7363281, 1.1748047, 0.45703125, 0.60546875, -3.8457031, -1.3935547, 0.70751953, -1.5029297, 1.4267578, -0.056762695, 2.2890625, 0.47216797, -0.43408203, 1.7949219, -2.5039062, 0.9526367, -0.3178711, -0.74658203, -2.1542969, 2.3164062, -0.39111328, 2.0078125, 1.6962891, 0.24536133, -1.7558594, -0.6015625, -0.04776001, -0.1439209, 5.75, -0.050720215, 0.8828125, -0.094177246, -0.3959961, 1.0498047, -0.65966797, -0.93408203, 0.1953125, -0.9008789, 0.15332031, -0.8046875, -2.6894531, 0.27294922, 0.14208984, -0.7519531, -0.12158203, -0.3869629, -0.028274536, 0.62158203, -0.8979492, 0.7192383, -0.5395508, 0.021453857, 0.8095703, -0.77783203, -1.0566406, -1.1621094, -0.7348633, 0.92089844, -1.1025391, 1.53125, -0.07739258, -1.5498047, 1.7861328, -0.5058594, 1.3613281, 0.3840332, -2.5292969, 0.75, 1.8505859, -0.5839844, -2.4882812, -0.50390625, 0.828125, -1.2070312, 0.044677734, 4.6171875, 1.6835938, 3.2871094, 1.5810547, 2.5976562, -0.67871094, -0.27978516, 0.57714844, 0.52783203, -2.2265625, 1.4882812, -0.9838867, -1.3212891, -0.47583008, 1.6855469, -2.3769531, 0.75146484, 2.2519531, 1.8671875, 1.9863281, 0.36694336, -0.020065308, 1.9726562, 1.5117188, -0.25317383, 0.59716797, -0.5551758, 0.4387207, -0.87353516, -1.3896484, 1.0986328, 1.4677734, 0.66259766, -2.0820312, 1.109375, 1.2041016, 0.5576172, 0.2861328, 1.5136719, -0.2824707, -0.83691406, 3.2226562, 0.24707031, -0.6464844, 0.6767578, 1.4921875, -0.57470703, 0.48095703, -0.70996094, -1.4853516, 2.1484375, 0.04937744, -0.5332031, 0.57910156, 0.43432617, -0.0056991577, -0.62890625, -0.08050537, 0.097717285, -1.0888672, -0.64990234, -1.0449219, 0.63183594, -0.03173828, -0.7324219, 0.69384766, -0.7949219, -1.4746094, -0.062561035, 0.044799805, -1.5566406, -0.52197266, -0.95166016, 0.9838867, 0.025970459, 0.13574219, 0.42749023, 0.007827759, 0.7338867, 0.059570312, 1.8798828, -0.74853516, 0.5107422, -1.4511719, -1.1054688, 1.3642578, 0.40722656, 0.42651367, -0.34985352, -2.2695312, 1.265625, -1.9316406, -0.6743164, 1.8320312, -0.11468506, -0.17089844, 1.8105469, -0.8491211, 2.5253906, 0.46264648, 1.4375, -1.0458984, 0.3569336, 2.765625, -2.4628906, -1.1855469, -1.3818359, -3.1914062, -0.093444824, 0.46923828, 0.7817383, 1.6523438, 0.6611328, 1.171875, 0.8334961, -0.9951172, -1.8085938, -3.6191406, 0.8076172, 2.3613281, -2.2636719, -1.0078125, 1.4609375, 1.2080078, -2.0390625, -1.0644531, 0.8154297, -0.8510742, -1.3144531, 0.734375, -0.48461914, 1.6376953, -1.3222656, 0.68603516, -1.2490234, -1.6582031, 1.8525391, -0.13342285, -1.3554688, -0.7451172, 0.92089844, 0.9536133, -1.1191406, 0.3984375, 2.5742188, 0.010894775, -0.5805664, -0.81152344, 0.58447266, 1.6640625, -0.18395996, -1.0546875, -1.3242188, -0.42797852, -1.265625, -0.97998047, 0.65234375, -1.1123047, -0.5283203, -0.35961914, -0.33813477, -0.64160156, 1.7333984, 1.9257812, -0.5366211, 0.85595703, -0.059906006, -0.7319336, -0.3984375, 0.9736328, 1.8125, -0.6201172, 0.96777344, -1.4306641, -1.2226562, 1.0634766, -1.7294922, -1.3105469, 0.25195312, 0.65234375, 0.6586914, -0.9223633, -0.87597656, -1.5029297, -0.34985352, 2.0527344, 2.5976562, 0.39794922, -0.23071289, -0.24304199, -0.17077637, 3.1972656, -1.2578125, 0.04888916, 2.0976562, -2.1484375, 0.015838623, -2.8203125, -0.39746094, -1.0830078, -1.6689453, -2.7304688, -1.8115234, 1.4414062, -0.5761719, 0.2052002, 1.8212891, 0.7758789, -1.3818359, 1.0292969, 1.5732422, 2.1035156, 2.0703125, -0.36547852, 2.171875, -0.42919922, 0.7036133, 2.8652344, 0.5073242, -3.0214844, -0.9658203, -1.1689453, -1.1738281, -1.0126953, -0.7036133, 1.8818359, -0.6567383, 0.98779297, 1.2998047, 2.2949219, -0.4777832, 1.7822266, 1.6767578, 0.80859375, 0.0680542, -1.3173828, -1.1943359, 0.1541748, 0.30371094, -2.390625, -0.4033203, 0.44213867, -0.1739502, 2.734375, -0.5151367, 0.8964844, -3.53125, -2.2460938, -0.83447266, -0.390625, 0.2010498, 1.3134766, 1.0097656, 0.82910156, 0.047729492, 0.030349731, 2.1035156, -1.0292969, -0.72753906, 2.53125, -0.2619629, -1.7148438, -0.85546875, 0.008796692, -2.4492188, -0.7265625, 3.0058594, 0.8510742, 0.73046875, 1.8916016, -0.2644043, -2.1386719, -0.7480469, -1.3496094, 0.83496094, -0.20739746, -1.1074219, 1.2128906, -0.47924805, 1.9746094, -1.1933594, -0.85546875, -0.99609375, 0.38330078, 0.36669922, 0.09362793, 0.099975586, -1.8691406, -2.0917969, -3.7128906, -2.5449219, 0.13110352, 0.8486328, 0.70214844, 0.09484863, -0.58251953, 1.2265625, 0.28686523, 0.7895508, -1.4990234, 0.0030460358, -2.8105469, -0.31982422, 0.8388672, -0.875, -1.4111328, -0.15454102, -1.9433594, -1.2773438, 0.5883789, -1.2734375, -4.5703125, -0.3215332, -0.72021484, -0.0035934448, -0.41918945, 0.24267578, 1.9628906, 2.8789062, 3.5917969, -0.87939453, 0.3125, -1.2792969, -1.7275391, 0.69189453, -0.5058594, 1.3740234, 1.9746094, -1.2109375, 0.30273438, -0.2824707, 1.4863281, 0.9296875, 1.0273438, -0.71191406, 0.65527344, 0.6923828, 0.18322754, 0.47509766, 2.6660156, 2.7871094, 0.17956543, -2.3144531, -0.36621094, -0.43237305, -0.8256836, 0.6401367, -2.1386719, 0.6582031, -1.2294922, -0.078125, 2.0234375, 1.1083984, 1.5722656, 0.20007324, 2.609375, -0.47973633, 1.7578125, -1.3408203, 3.0488281, 2.8671875, -1.7617188, -3.6328125, -1.5195312, 0.5595703, 0.40844727, 1.1943359, -3.1757812, -1.0136719, -3.796875, -1.8339844, 0.6557617, 0.29882812, 2.2734375, 0.2006836, 0.79785156, 3.0957031, 0.37426758, 0.070739746, -0.08947754, -0.034484863, 1.3427734, -1.21875, 1.7353516, 2.0097656, 0.09588623, 1.4638672, -1.3261719, 0.68896484, -0.93115234, -2.6425781, 0.52246094, -3.5371094, 1.1533203, 0.57958984, -0.671875, -3.3046875, -0.4885254, 2.0097656, -0.5263672, -0.421875, 1.1464844, -0.3955078, 0.7089844, 1.921875, 1.9121094, -1.1083984, -0.04876709, -0.94433594, -0.89208984, 2.3476562, -2, 2.8574219, 0.06121826, 0.6933594, -0.6699219, -0.9199219, -1.9873047, 2.3515625, 3.5019531, 2.3964844, 1.2773438, 1.8183594, 1.4365234, 0.36108398, 2.7910156, 0.6074219, -2.8417969, 1.6552734, 1.1464844, 0.2709961, 0.6464844, -1.8427734, -0.07324219, 1.2363281, -0.19213867, 0.7475586, -0.4897461, 0.0949707, -2.2910156, 0.3642578, -0.5161133, 4.0351562, -1.3808594, -0.39526367, -1.5078125, 2.0585938, -0.24401855, -0.6064453, 1.0488281, -0.67626953, 1.7685547, 0.03338623, 0.036193848, -0.33203125, -1.1298828, 0.23278809, 0.9472656, -0.35229492, 0.10681152, -1.2939453, -0.19348145, 0.28564453, -0.7753906, 1.2324219, 0.98583984, 0.23254395, 0.41870117, -0.6826172, 1.5361328, 1.9648438, 2.5625, 0.18701172, 0.6870117, 2.7265625, 0.2685547, -1.9355469, -3.8457031, 2.5351562, -0.20141602, 1.4423828, 0.5888672, -1.3359375, 0.91015625, -0.65283203, 2.1640625, -0.24328613, 1.953125, 0.81396484, -0.86035156, -0.30810547, 1.8730469, -0.35913086, 2.4785156, 0.92041016, -0.53564453, 1.4775391, 0.037902832, 1.140625, 0.0078048706, 2.2109375, 0.013641357, 0.7294922, -1.8388672, 1.9863281, -0.04486084, -0.5307617, 0.26733398, 1.8154297, 2.3554688, 0.68603516, 2.1035156, -1.9628906, 1.9179688, 0.55078125, 0.041259766, -1.0019531, -2.4355469, -1.0869141, 0.640625, 0.48339844, -0.6723633, 0.21557617, 1.6982422, 1.0039062, 0.5727539, -0.5283203, 1.0859375, -1.6035156, -0.8125, -1.6767578, -0.65625, -3.1308594, -0.39672852, 0.93652344, -1.0429688, 0.6738281, 0.1784668, 1.2109375, 1.1367188, -0.6855469, -2.1152344, -0.92626953, -0.80859375, -1.2373047, 1.7978516, -1.5351562, 0.5107422, 0.9013672, -0.5419922, 0.27368164, 1.0546875, -0.3774414, 0.18347168, -0.9160156, -1.1748047, -1.3554688, 0.09094238, -1.0664062, 0.7919922, 2.265625, -1.4101562, 0.97802734, -4.6210938, -2.8730469, -1.6005859, -1.6757812, 1.7460938, 0.058166504, -0.05895996, 0.79785156, 1.9003906, 3.4824219, -0.3178711, -0.018081665, 0.043884277, -1.5625, 2.1894531, 1.8330078, -0.2397461, 1.4101562, 1.4990234, -0.36206055, 1.2158203, -1.0117188, 0.29711914, 0.0670166, 1.9443359, -0.28344727, -0.41992188, 1.2294922, 2.0429688, 0.921875, 0.6791992, -1.2333984, -0.049743652, -0.5234375, 0.0949707, -1.8466797, -2.171875]}, "B07PYV2NMZ": {"id": "B07PYV2NMZ", "original": "Brand: GASPRO\nName: GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range\nDescription: How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more\nFeatures: \u3010Standard Connector \u3011Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8\" Female Flare. 5/16\" diameter LP hose\n\u3010Well Gas Control \u3011Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances\n\u3010 Max BTU Flow\u3011Providing 11\" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow\n\u3010Compatibility\u3011Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more\n\u3010High Quality\u3011 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank\n", "embedding": [-0.3713379, 0.47924805, 0.6791992, 1.9833984, -2.4296875, 0.38891602, 0.95214844, -1.7265625, 2.2753906, 0.7783203, 0.72509766, 0.111450195, 1.2226562, -2.9804688, 2.2851562, 0.9814453, 0.6953125, 0.51904297, 1.3427734, 1.6484375, 1.2451172, -2.1132812, 3.4941406, -0.2154541, 1.640625, -2.0253906, 2.3300781, -2.5117188, -0.88378906, -0.040771484, 0.5498047, 0.7128906, -1.1425781, 1.3691406, -3.2910156, -0.38427734, -0.70410156, -0.12426758, -3.8417969, -1.4472656, -2.1621094, 0.70654297, 2.7539062, 0.51123047, -2.8144531, -0.06958008, 0.75097656, 1.4902344, -0.3642578, -0.26831055, -0.8022461, 0.18188477, -0.4802246, 0.15197754, -2.2226562, -0.09088135, -1.5478516, -2.6113281, 0.6635742, 1.5107422, 1.8681641, 0.71972656, -3.8945312, 0.49389648, -0.72558594, 1.0625, -0.19604492, -0.51904297, -0.29174805, 1.3398438, 0.60009766, 0.71875, 1.2949219, -1.4306641, -0.23950195, 1.4570312, -3.0097656, 0.2454834, 3.1972656, 1.0898438, -0.7548828, 3.3242188, 1.5302734, -2.7089844, 1.2177734, -1.2646484, -0.85839844, 0.03894043, 1.0039062, 1.9091797, -2.2304688, 2.8691406, -2.4960938, -2.40625, 1.3300781, 1.90625, 1.8339844, 2.1269531, 2.2421875, 0.24511719, -1.0009766, -0.29882812, 0.26782227, 1.1298828, -2.46875, -1.3935547, -0.44335938, 1.0009766, -2.5742188, -0.12408447, -0.12451172, -0.6982422, 2.0507812, -1.2949219, 0.3713379, -1.6894531, -2.0136719, -0.66259766, 3.1621094, 0.60595703, 2.046875, 0.31420898, 0.65625, -0.4555664, 1.9072266, 1.3876953, -0.012687683, 0.23278809, 3.1386719, -1.3535156, -0.3154297, -2.2558594, 3.0546875, -0.38598633, 1.0634766, -2.7734375, -0.8208008, -2.9609375, -1.6757812, -0.9121094, -3.7734375, -1.3232422, 1.5703125, 0.4399414, -4.578125, 1.4521484, -3.1171875, 0.9560547, 2.9746094, -3.6347656, 1.3681641, -1.5693359, -0.109191895, -2.15625, 2.5214844, 1.8076172, 0.86865234, -0.83984375, 1.9150391, 1.859375, 1.640625, -1.7451172, -2.6503906, 1.640625, -1.0322266, -2.5488281, 0.82666016, 1.2216797, -0.76660156, 0.34155273, -0.32080078, -3.2011719, 1.5283203, -0.37548828, -0.16491699, -1.0576172, 1.7919922, 1.3017578, 3.2753906, 0.7636719, -3.4238281, -3.3085938, 0.052947998, -0.74072266, 2.3769531, 0.734375, -1.7763672, -0.94140625, 2.1953125, -1.7480469, -2.5820312, 1.2421875, -0.14550781, 0.80566406, 0.64941406, -3.0410156, -2.9316406, -0.55615234, 0.65185547, 0.6855469, -2.2246094, -1.1044922, 0.15039062, 1.8769531, -1.6845703, -0.9345703, 1.0117188, 0.19213867, -0.14135742, 2.1308594, 0.06750488, 0.5966797, 1.9433594, -1.6396484, 0.09387207, -1.2509766, 2.6152344, 2.9257812, 2.0351562, -0.13500977, 0.20678711, 0.33276367, 0.34765625, 1.2558594, 1.9453125, -0.18017578, -0.359375, 0.7050781, -2.375, -2.0058594, 2.5078125, 1.1865234, -0.11468506, -0.7270508, -0.93847656, 2.109375, 0.75097656, 0.39648438, 0.68359375, 2.6386719, 0.22497559, -1.1826172, -2.9746094, -0.30078125, 0.5151367, 0.016799927, -0.9589844, 0.35864258, 2.6699219, -0.80810547, 1.6835938, -0.16601562, -1.0488281, -1.2675781, -1.1816406, -0.20178223, 0.021530151, 2.1757812, -0.47387695, -1.1933594, 1.4501953, 1.4570312, 0.56640625, 1.4951172, 1.1904297, 0.47387695, 0.9951172, -1.8095703, -0.82373047, 0.30322266, -1.4873047, 2.875, 1.7861328, -0.70654297, 1.3457031, 1.7451172, -1.3710938, 2.0097656, -0.6958008, 1.1855469, 2.0488281, -1.2128906, 0.75341797, -2.5957031, 0.9609375, 1.5751953, 1.6318359, -0.27954102, -1.6738281, 1.2666016, 4.1445312, -0.25683594, -1.3916016, 1.7167969, 2.4082031, 1.7626953, 1.7246094, 1.2783203, 0.53808594, -0.22485352, 0.11242676, 0.49682617, -2.4707031, 0.40307617, 2.9570312, -1.0380859, 1.0947266, -2.2695312, 0.99902344, 1.5673828, -0.96435547, 0.076538086, -2.6367188, 0.47875977, -1.1416016, -1.9873047, 1.59375, -1.0136719, -0.27807617, 2.125, -0.22839355, 0.27392578, 0.84375, -2.2695312, -1.0029297, 1.4873047, -1.0439453, 2.1210938, 1.5341797, 0.94433594, 1.4677734, -1.0400391, 0.1730957, -1.5908203, -1.1386719, 1.1621094, 0.09777832, -3.6933594, 1.5537109, -2.0742188, -1.2734375, -1.6757812, -0.15759277, 3.1601562, 0.73779297, 0.17114258, -1.0683594, 0.8574219, 0.36572266, 0.8173828, 0.16052246, 2.3183594, -0.55859375, -1.3076172, -0.29833984, -0.7895508, -0.5629883, 0.9238281, -1.7998047, 0.15344238, 1.6591797, 0.65722656, -0.09539795, 0.65478516, 0.27294922, -2.1230469, 1.0019531, -4.8007812, -0.69433594, 0.2722168, 2.1367188, -1.5380859, 0.45532227, -2.0664062, -1.6767578, -0.42358398, -2.1914062, 0.25610352, -0.7128906, 1.1582031, -1.8339844, 0.47021484, 0.63720703, -1.0029297, -3.2441406, -1.84375, 2.0664062, -3.0117188, -0.5517578, -2.8222656, 0.5341797, 0.31933594, 1.0556641, 0.32104492, -1.5253906, -2.2519531, -0.26123047, 0.07110596, -1.4755859, 0.40405273, 1.2011719, -0.09906006, -1.7119141, 0.8544922, -0.99902344, -0.69921875, 0.28515625, 0.2763672, -0.296875, -0.578125, -0.8417969, 1.15625, 0.23461914, 0.64160156, -0.3527832, -3.8730469, 0.35229492, 1.5283203, -1.0048828, 0.78271484, -1.5048828, -0.7680664, -1.7509766, -2.4101562, 2.5410156, 2.2890625, 2.8867188, -0.024795532, 0.15356445, 2.2695312, -0.14904785, -1.2939453, -1.6083984, -0.4975586, 4.8515625, -3.1347656, -0.91064453, 0.36279297, 0.19763184, -3.5136719, 0.16894531, 0.19885254, -1.0615234, 2.1347656, 1.3134766, 0.8745117, -1.0722656, 1.0996094, 1.1494141, 1.0546875, -0.6694336, 0.06744385, -0.3852539, -0.2631836, -1.7353516, 2.1621094, 1.6953125, 1.1376953, 1.2128906, -0.33520508, 0.43701172, -1.2939453, 0.6635742, 0.029129028, 1.7958984, 0.55078125, 1.7353516, 0.40844727, -0.9189453, -1.3505859, -0.039855957, 1.2490234, -1.9570312, -2.1074219, 0.93652344, 1.9609375, -0.31274414, -0.21044922, -1.2626953, 0.48266602, -0.27124023, -0.33422852, 1.0751953, 0.69189453, 2.1171875, -1.0664062, 0.44335938, -0.7885742, 2.1933594, -1.1494141, -0.42626953, -0.74365234, -0.27856445, -1.2695312, -1.1367188, 0.36035156, -2.6601562, -0.47802734, 3.8203125, 1.8525391, -2.5742188, 0.3815918, -1.1220703, 1.1943359, 1.5019531, -0.60058594, -0.17871094, -0.92089844, 1.3066406, 0.5288086, -1.953125, 2.2480469, -0.24108887, -2.1738281, 0.027923584, -1.8779297, -0.04067993, 0.06561279, 0.20629883, -3.0820312, 0.7246094, -1.796875, 0.59716797, 0.16015625, 3.3417969, -1.4345703, -0.58203125, 2.2714844, -3.0175781, -0.625, -2.7929688, -5.6054688, 1.0107422, -2.703125, -0.06964111, 2.5605469, 0.38989258, -0.13964844, 0.6933594, 0.32202148, -3.4042969, -1.3378906, -0.9223633, 1.5400391, -2.9179688, -1.4023438, 2.4003906, 1.4892578, -1.1113281, -1.4746094, 0.33520508, -1.8583984, -0.84472656, 0.6801758, -1.5927734, -1.0117188, -2.3867188, 0.9086914, -0.9560547, -1.8603516, 0.69433594, -1.1796875, -0.40161133, -3.8046875, 2.3574219, 1.2441406, 0.16796875, -1.2939453, 2.7421875, 2.3242188, -0.48779297, -0.5205078, 1.3896484, 3.0859375, -0.50439453, -3.1308594, -0.6713867, -0.15698242, 0.8408203, -0.8100586, -0.6435547, 0.2758789, -1.1181641, 2.2910156, 0.7084961, 1.3105469, 0.9941406, 0.53027344, -4.1992188, 0.9511719, 0.5957031, -1.0292969, 0.23632812, -0.49145508, -0.20715332, -2.2304688, 0.15307617, -1.5136719, -1.2695312, -1.6650391, 0.35107422, -3.4042969, 0.77783203, -1.2314453, -0.28271484, -0.53466797, -0.65234375, -0.91845703, -2.2714844, -0.86572266, -1.7041016, -0.3852539, -3.1289062, -1.2402344, 0.47827148, 1.1445312, -0.7495117, -0.111694336, -0.21484375, -2.6523438, -0.5576172, 0.68847656, 0.05645752, 0.88964844, -0.90625, 2.9550781, -0.15002441, 4.03125, -0.6542969, 1.2919922, 1.3505859, -0.050354004, -2.0195312, 1.7626953, 2.875, 2.5253906, 0.61865234, 0.8100586, 1.7832031, 2.8359375, 1.6162109, 0.39697266, 1.6582031, -0.04486084, 0.35961914, -0.8076172, 1.9375, -1.5253906, -0.27490234, 1.1035156, 1.7070312, 1.8066406, 2.1445312, 0.9550781, -1.6474609, 1.4287109, 0.035125732, -3.5253906, -1.1347656, -0.5756836, -1.2626953, 3.2070312, -0.46020508, -2.375, 1.5419922, 2.5957031, -0.390625, 1.8574219, 1.2402344, -1.1269531, -1.7324219, -3.1425781, -2.0371094, -1.484375, -0.6323242, 2.1425781, -2.9863281, 1.4736328, 0.29589844, 1.9472656, 2.0996094, -0.23596191, -1.2871094, -1.5712891, -2.0703125, 0.9394531, -0.7807617, -1.4482422, -3.1425781, 0.6845703, 1.1503906, 0.58203125, 0.48266602, 1.5146484, -0.96875, -2.046875, -2.1152344, -0.31396484, 1.0830078, 0.31298828, -0.92089844, 3.9023438, -0.7216797, -0.5800781, -0.4152832, -0.58154297, -1.9003906, 2.046875, 2.5058594, 1.7841797, -0.5942383, -0.5854492, -2.3300781, -6.4375, -0.18652344, 2.2519531, 0.74365234, 1.5, -2.2011719, -1.0410156, 2.3125, 0.30981445, -0.69873047, -3.6328125, 1.4101562, -0.36669922, 0.00034499168, -1.4521484, 1.3339844, -0.19873047, 0.5024414, -1.2568359, -0.1928711, 0.0059661865, -2.7363281, -2.1054688, 1.4853516, -1.7783203, -0.22460938, 2.6660156, -1.2861328, -1.8417969, 0.9165039, -0.56347656, -2.4335938, 0.5878906, -2.2792969, 0.50439453, 0.12219238, -1.8017578, 0.8745117, 1.5263672, 0.8076172, 0.60009766, 2.0761719, 3.0351562, -0.056762695, 0.3635254, 0.4008789, 1.7373047, -0.5986328, -1.9472656, 0.28588867, 0.68603516, 0.29370117, 3.1132812, -1.4990234, -1.9873047, -3.0234375, -3.1679688, 0.7060547, -2.2421875, 1.296875, 0.6069336, 1.6533203, 0.8071289, -0.6694336, 0.3708496, -0.086242676, 0.88671875, 0.6772461, 0.90625, -1.6816406, 2.8886719, 1.5400391, -1.2451172, -3.5058594, -0.15356445, 2.6445312, 3.8496094, 0.0044136047, 0.9941406, 0.17565918, -1.5458984, -0.17468262, -0.015975952, 0.99902344, 0.77490234, 0.3540039, -0.34814453, -0.27563477, 0.7314453, -2.1035156, 1.4121094, 1.0214844, -0.029785156, -1.0126953, 1.5322266, 1.5908203, -3.6835938, 0.6826172, -0.93896484, 0.8881836, -1.6337891, -1.5957031, 0.24841309, -2.8945312, -0.50634766, 0.25024414, -2.0859375, -3.3203125, 2.7265625, 1.0117188, -0.6196289, 0.24133301, 2.4785156, -0.7753906, -0.7495117, 2.0742188, -0.43579102, -0.6777344, 0.4243164, -1.9433594, -0.67529297, 1.0556641, -3.1992188, 1.0253906, 2.3515625, 0.7416992, 0.77441406, 1.1269531, 2.25, 2.8808594, 1.2607422, 2.0996094, 3.0976562, 0.42114258, 2.0136719, 1.2011719, 2.4101562, 1.4726562, -1.7402344, 1.9345703, 1.1621094, 0.265625, 1.1201172, -0.60009766, 0.1161499, -0.9189453, -0.6176758, -0.4020996, 1.3066406, 2.0195312, -2.7792969, -0.8886719, -0.19274902, -0.40063477, -3.4316406, 1.5302734, -2.5390625, -0.22131348, 0.54345703, -0.11224365, 1.2626953, 1.7734375, -1.46875, -0.09265137, 0.16821289, 3.9277344, 0.20239258, -0.34448242, -1.4375, -1.7011719, 1.5751953, 1.5566406, 0.81933594, 0.66064453, 1.5732422, 0.26098633, -1.0625, 1.2363281, 0.9897461, -2.9550781, 0.8354492, -2.3222656, 2.4941406, 1.9345703, -1.2568359, 1.5087891, 0.5917969, -1.7470703, -4.546875, 3.2558594, 0.21350098, -0.13439941, 0.10821533, -3.8945312, 1.8232422, -1.7558594, 1.0595703, -2.8847656, 0.006614685, 0.12023926, -0.52441406, 1.6142578, 0.30078125, -1.9267578, 2.7265625, 0.96972656, -2.0976562, -0.2097168, 1.2636719, 0.57421875, -0.61816406, 1.4296875, 0.8745117, 0.5756836, -0.06463623, 2.7226562, 0.7246094, -2.78125, 1.0732422, 2.8769531, 0.17370605, 0.9506836, -0.45458984, -0.2878418, 1.6298828, 0.24487305, 0.25268555, -0.5058594, -2.3242188, -0.5180664, 0.8149414, 0.53759766, -0.7993164, -0.7324219, -0.107055664, -0.14404297, -3.0429688, -0.014328003, 1.1162109, -2.2324219, 2.2246094, 0.82373047, -1.7167969, -0.7026367, 0.049926758, 0.9916992, -1.6152344, 0.022277832, 0.8925781, 0.9121094, 1.2617188, -2.375, -0.11187744, 0.6923828, -1.2011719, -1.1445312, 0.81640625, -0.33935547, -0.7597656, -0.59228516, -1.8417969, 0.85253906, 3.7011719, -0.16271973, 2.2792969, -1.6972656, -0.5786133, -1.0947266, -2.2089844, -0.9838867, 0.58984375, 2.6367188, 1.7128906, 1.7041016, -0.8310547, -2.6347656, 0.37695312, 0.265625, 1.875, -0.064331055, -0.4716797, 1.3847656, 1.1445312, 1.3193359, -0.82666016, 0.4543457, -0.2211914, 0.7241211, 1.4648438, -1.4433594, 2.3183594, -1.8925781, 0.5620117, 0.87646484, 3.9140625, 0.81689453, 0.57470703, 0.47705078, 2.0253906, 1.4453125, -0.98291016, 0.44580078, -1.1630859, -0.6616211, 0.8071289, 2.4296875, 3.3769531, 2.5253906, -0.94628906, -1.2626953, 0.63427734]}, "B082M8BYTK": {"id": "B082M8BYTK", "original": "Brand: BELLEZE\nName: BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze\nDescription: Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

          A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There's a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

          Your safety is our priority, and that's why we've equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30\u00b0, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

          Specifications:
          Heat Range: 175 Sq/Ft (15' Radius)
          Diameter of Dome Reflector: 31.9\"
          Support Pole Size: 2.9\" Diamter, 34.3\"Height
          Size of Burner: 11\"Diameter, 12\"Height
          Size of Base: 18.1\"Diameter, 3.39\"Height
          Overall Height: 7.25FT\nFeatures: [COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants.\n[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures.\n[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night.\n[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck.\n[LOVE-IT OR 100 DAY RETURNS] We guarantee that you\u2019ll love this product. If not, simply return within 100 days of purchase.\n", "embedding": [-1.2802734, 1.2011719, 1.2177734, 0.20324707, 0.38134766, 0.5366211, 1.0996094, -1.9423828, -0.29467773, 4.203125, 1.2900391, 0.3935547, -0.012435913, -1.796875, 0.28125, -1.6777344, 0.4909668, -0.17919922, 0.85058594, 0.7475586, 2.5996094, -0.23242188, 0.91015625, -0.33642578, -0.44384766, -0.26000977, 3.234375, -2.5390625, -0.23022461, -1.1074219, -1.3085938, -0.24865723, -0.81884766, 2.0429688, -2.4765625, -2.2304688, 0.02748108, 1.875, -2.5976562, -0.35888672, -1.4501953, -1.4296875, 0.5473633, 1.5361328, -1.8652344, -0.37280273, 2.28125, 0.28222656, 0.7993164, -1.6162109, 1.0410156, 0.044830322, -1.1396484, 0.30297852, -1.7070312, 0.73095703, 0.703125, -3.5800781, 2.7871094, 0.1743164, 0.09588623, 0.1673584, -1.4306641, 3.6816406, -1.5947266, 2.0039062, 0.1541748, -0.6855469, -1.5126953, 0.703125, 2.7929688, 0.049316406, -2.0351562, 2.0527344, -0.4555664, -0.24206543, -3.3359375, 1.2900391, 4.3867188, 0.6303711, -0.7392578, 0.75341797, 1.0683594, 1.2285156, -1.4335938, 0.2980957, -1.9980469, 2.0976562, 1.0820312, 1.8115234, -0.73046875, 2.3027344, -0.9223633, -2.9296875, 1.8662109, -3.359375, 0.44995117, 0.99853516, -0.85546875, 1.53125, -0.2932129, 1.3291016, -0.36743164, -0.7397461, -1.4257812, -2.0058594, 3.5, -0.0836792, -1.1357422, 2.0859375, -1.8613281, 0.60058594, 2.0253906, -0.7182617, -1.3505859, -1.078125, 0.953125, 2.6347656, 4.2226562, 2.0566406, 2.7480469, 0.073913574, 3.0507812, -1.6826172, 0.9667969, -0.36450195, -0.5541992, -0.066467285, 3.421875, -2.0390625, -0.38134766, -2.1660156, 0.7504883, -0.048950195, 1.2490234, -1.8925781, -2.09375, -0.2388916, -5.046875, -1.0878906, -1.2363281, 1.8574219, 1.5576172, 1.2539062, -3.8144531, 0.13085938, -0.31518555, 1.6083984, -1.4453125, -1.0820312, 1.9853516, -1.3291016, -0.47509766, -2.6503906, -1.6748047, 0.67089844, 0.11798096, -3.0117188, 4.5976562, 1.7255859, 2.3027344, -0.20031738, 0.2861328, 3.0292969, -0.88183594, -1.8662109, 1.796875, 0.94433594, 0.9951172, 2.1386719, -0.3076172, -2.6035156, 0.5541992, 0.9794922, 0.9121094, -1.9863281, -1.078125, 1.5, 0.2854004, -0.18164062, -3.7539062, -1.2382812, 0.4489746, 1.6435547, -0.7006836, -1.1933594, -0.3779297, -1.7246094, -0.1784668, -1.7548828, -0.057525635, 1.0371094, 0.10412598, -0.8588867, -0.65527344, -2.0898438, -1.7324219, -0.8598633, 2.2519531, -0.4050293, 1.4658203, -1.3339844, 0.07867432, -0.65234375, -2.2382812, -3.09375, -0.018112183, -1.359375, 0.09008789, 2.0371094, 1.3808594, -0.37768555, 1.3183594, -1.8886719, 1.3544922, -0.5019531, 2.6855469, -0.74853516, 0.2644043, 2.3125, 0.020019531, 0.43164062, 0.19885254, 1.8359375, -0.24951172, 1.5332031, 0.61376953, -0.39257812, -1.8339844, -2.3476562, 2.1914062, 1.2734375, 0.18029785, -0.52441406, -0.8876953, 3.78125, 1.6015625, -0.15710449, 1.8398438, -0.77246094, 0.2746582, -2.3164062, -0.78808594, -0.56396484, -0.0013465881, 0.74609375, -1.15625, 1.84375, -0.029388428, -0.66308594, 0.043884277, -0.22338867, 1.0302734, 0.5395508, -1.8544922, -1.3037109, 0.2668457, 1.3759766, -1.25, -2.9726562, 1.4755859, 1.2324219, -1.0576172, -0.4645996, 0.05517578, -0.03363037, 3.59375, 0.8911133, -3.0253906, 0.3317871, -0.16259766, 0.30297852, 2.3515625, 1.3173828, 0.35668945, 0.61816406, -1.8583984, 2.6660156, 0.40771484, 0.43139648, 1.0458984, -0.6542969, 1.3027344, -0.74658203, -0.8930664, 0.5239258, 0.5288086, 1.2871094, -0.3828125, 0.31225586, 5.0546875, -0.5161133, -3.0273438, 1.78125, -1.3925781, 2.2109375, 1.4619141, -0.8364258, 1.0537109, -2.4277344, 2.5351562, 1.0019531, -2.359375, 0.65185547, -1.9755859, -0.6713867, 0.6171875, -0.4584961, 1.171875, 0.007030487, -0.13549805, -0.90527344, -3.7226562, -1.6162109, -2.8789062, -1.6298828, 1.4882812, -2.2636719, 1.8867188, 1.453125, -0.50341797, 1.1992188, -0.9555664, -1.4638672, -0.90625, -0.099609375, -0.39331055, 0.06695557, -1.5761719, -1.1191406, -1.0390625, -2.1582031, 2.921875, -3.15625, -3.34375, -1.7529297, -0.3762207, -2.1152344, -0.55126953, -2.6152344, -1.2255859, 0.28637695, -0.5239258, 0.3701172, -1.7617188, -1.7421875, -0.34057617, 0.9003906, -1.3583984, 0.32885742, 1.6748047, 0.10662842, -1.8105469, -4.4609375, 0.4543457, 1.2080078, -0.9169922, 0.1986084, 0.04550171, 0.3564453, -2.3066406, -0.15441895, 0.45043945, -0.15100098, -0.17529297, -2.0078125, 0.32617188, -4.4335938, 1.8496094, -0.8574219, 0.7529297, -0.6845703, 0.98779297, -1.7558594, -0.41992188, 0.7836914, -1.6328125, 3.78125, 0.9658203, 1.5917969, -2.3320312, 0.24694824, 1.0605469, -0.08068848, -3.0117188, -0.18054199, -0.14099121, -0.8901367, -1.7822266, -2.6328125, 0.092163086, -1.5410156, -0.6152344, -0.66064453, -2.0195312, 0.29296875, -0.29467773, -3.0292969, -0.24267578, -1.0791016, -0.10601807, -1.3632812, -0.068481445, -3.6015625, -1.1025391, -1.0419922, 0.35888672, -0.45654297, 1.8408203, 0.3112793, 0.7055664, 2.3300781, -1.0039062, 0.46606445, -0.51708984, -4.2695312, -0.28686523, 2.1347656, -1.4355469, 0.56396484, -1.0380859, -1.0214844, -1.8916016, -0.9213867, 4.5, 0.55029297, 3.65625, -1.3222656, 0.38330078, 0.8623047, 1.1298828, -0.15344238, -1.0009766, -1.9550781, 1.9902344, -1.9560547, -0.53125, 1.0234375, 1.3447266, -1.9667969, -2.0957031, 2.5097656, 1.5771484, 2.0195312, 3.5371094, -0.15319824, 1.0898438, -0.19238281, -0.21789551, 3.6953125, 1.5253906, -1.8642578, -2.8164062, 0.96875, 1.6533203, 3.4648438, -0.08148193, 0.8691406, 0.48217773, 2.1992188, -0.91796875, -2.703125, 1.1484375, -0.08758545, 0.43847656, 0.42871094, 1.1708984, -0.50634766, -0.06439209, -0.77246094, 0.69628906, -0.6557617, -1.6992188, -1.6113281, 2.7714844, 2.0585938, -1.0546875, -1.6064453, -0.78466797, 0.15856934, -1.7412109, 1.1005859, 1.0322266, 0.9711914, 0.103637695, -1.6914062, -1.2392578, -0.0054397583, 1.3730469, 0.65185547, -2.4980469, 1.2216797, -0.15332031, -0.12939453, -2.2460938, -1.9052734, 0.027618408, -0.4555664, 3.0800781, -1.1767578, -0.59521484, -1.1816406, -0.2854004, 3.2519531, 0.52246094, -0.57421875, -2.2578125, -2.2929688, -1.5722656, 1.8310547, 0.4020996, 1.3242188, 1.5683594, -1.1308594, 1.0820312, -2.0996094, 0.7036133, 0.609375, -1.4023438, -1.1855469, 1.9960938, 0.32226562, 2.46875, 0.19360352, 1.84375, -1.6269531, -1.6191406, 1.8740234, -1.9091797, 0.21020508, -1.4541016, -5.703125, 1.6455078, -0.44262695, 0.40673828, 2.1445312, -0.8046875, 0.6196289, 0.25146484, -1.3818359, -3.1855469, -3.5488281, -1.0517578, 0.23400879, -3.2148438, 0.08898926, 2.4257812, -2.1308594, -0.08093262, -3.4140625, -0.6567383, -0.6777344, 0.022949219, 1.53125, -1.2490234, 1.3769531, -0.95947266, 0.57177734, 0.18322754, 0.33691406, 0.19042969, -1.8623047, 0.54003906, -1.6796875, 1.4814453, 1.1513672, 1.5078125, 0.6723633, 2.6386719, 1.2480469, -2.5195312, 0.5722656, 1.8125, 1.7001953, 0.25585938, -3.9550781, 0.1505127, 0.7348633, -0.34716797, -1.2548828, -1.1367188, 0.0446167, -2.1015625, 0.7163086, 1.8740234, -0.0067710876, 0.49609375, 1.4580078, -4.1445312, -0.23425293, -0.058502197, -3.3789062, -2.3925781, -1.3652344, -1.7304688, -1.2207031, 1.7724609, -2.2871094, -0.11816406, -1.2011719, -0.9194336, -1.5996094, 1.9824219, 2.84375, 3.3222656, 2.4433594, -2.578125, -0.32226562, -0.56933594, -0.72998047, 0.02015686, 2.90625, -0.3449707, 1.3115234, 1.3691406, 2.0136719, -0.74902344, 0.022521973, 1.0214844, -0.7314453, 0.8388672, -0.34228516, -0.67871094, -0.54003906, -0.94384766, 2.4277344, 0.37548828, 2.1542969, -2.2929688, -0.9453125, -0.14868164, -0.78027344, -2.4628906, 0.41992188, 0.09033203, -0.3359375, 2.1386719, 0.7392578, 0.43041992, -0.90771484, 0.8857422, 0.4958496, 1.7832031, -1.5791016, -1.3896484, -3.4453125, -0.35473633, -1.4882812, 1.609375, 2.5566406, 0.5102539, 0.890625, 2.3730469, 2.3398438, -0.7709961, 2.1855469, 1.2617188, -0.76464844, 0.95410156, 0.87646484, -1.6328125, -0.22790527, -0.3708496, -2.1269531, -0.13623047, 3.8261719, 0.3395996, 1.1806641, 0.21142578, -1.9765625, 0.25708008, -1.8115234, -1.5361328, -0.29614258, 1.3740234, -0.5859375, 0.2956543, -0.9663086, -1.2744141, 2.171875, 2.1816406, -1.0400391, -1.2802734, 2.421875, 1.1914062, -0.28442383, 0.97314453, -0.69873047, 0.24108887, 0.39038086, 0.72021484, 0.5883789, 2.234375, 1.2070312, 0.74365234, -3.2695312, 0.11999512, -1.9765625, 2.7597656, -2.2207031, -1.2832031, 1.2070312, 1.5664062, 1.1123047, -2.3652344, 0.38671875, -0.49023438, 1.7167969, -2.6054688, -1.4492188, 1.2646484, -2.1582031, -2.1269531, -4.4257812, -0.36669922, 0.8925781, -2.7382812, 0.12658691, -0.42407227, -2.3242188, -0.16455078, -0.33911133, -1.4013672, -0.6513672, 0.21240234, -2.9980469, 0.6933594, -0.052978516, 0.22387695, 1.1376953, 0.5395508, -0.8588867, -1.9179688, -0.58984375, -2.5722656, -0.84472656, 0.9482422, -0.07220459, 0.2602539, 1.5595703, -1.1279297, 0.7026367, 3.9199219, 0.5151367, -1.9658203, 1.1269531, 0.14025879, 0.4267578, 2.8027344, -0.65625, 2.2246094, -0.021865845, -0.3076172, -0.18249512, 0.30126953, -0.5107422, 0.47216797, 1.9228516, -1.3828125, 0.56884766, 0.20178223, 0.020568848, 0.8847656, -0.49023438, 3.046875, -0.3076172, -2.4160156, -0.23950195, -3.15625, -2.375, -0.97021484, -0.73291016, -1.4580078, -1.6884766, 1.3945312, 1.375, -0.20605469, 0.35375977, 1.1582031, 0.2548828, -1.4169922, -1.2382812, 0.82421875, 3.3378906, 0.89208984, -1.9072266, -3.3046875, -3.5351562, 1.1914062, -0.61279297, 0.97802734, -0.87841797, -0.5126953, -2.0917969, 2.28125, 0.3408203, 3.5292969, 1.9384766, 0.4650879, -1.8994141, 1.4189453, 0.9111328, 0.14929199, 2.4765625, -0.49023438, 2.6347656, -0.072143555, 3.6484375, 2.7558594, -0.98876953, 1.5556641, -0.88964844, 1.6591797, -0.25219727, -0.74853516, 1.8613281, -2.796875, 0.06414795, 1.1933594, -1.6953125, -3.9941406, 1.6767578, 1.5908203, 0.5834961, 0.61035156, 1.2109375, 1.0957031, 0.2175293, 1.0078125, 0.4272461, 0.26538086, 0.55859375, -0.66748047, -0.4453125, 3.0957031, -0.24804688, 0.096069336, -0.28564453, -0.8676758, 0.025741577, 1.2568359, -0.3022461, 1.0712891, 1.1826172, 1.9345703, 3.1464844, 0.93310547, 1.8671875, 0.90283203, 1.0615234, -0.27514648, -0.4560547, -0.64697266, 1.9921875, 3.0292969, -0.8720703, -0.72021484, 0.7290039, 0.42993164, -1.5205078, -2.9433594, 0.7104492, 1.34375, -1.6357422, 1.7529297, -0.23010254, 2.0644531, -2.0039062, -0.6894531, 0.6777344, 1.3173828, -1.3066406, 0.4243164, 2.1894531, -0.26879883, 1.5136719, -0.6328125, 0.7158203, 0.2553711, -2.5, 3.203125, -0.29223633, -2.015625, -1.7265625, 2.5820312, 1.5146484, 0.2097168, -0.08502197, 2.0664062, 1.7509766, 1.5996094, 1.6542969, 0.66259766, -1.9003906, -0.17468262, 2.9980469, 1.8408203, -1.0644531, -0.73095703, 0.2668457, -3.0703125, -1.5849609, 0.98095703, 0.8666992, -1.2734375, 1.0302734, -1.1064453, 2.4960938, -0.16674805, 0.8413086, -2.0488281, 1.9423828, 1.3251953, 1.5507812, -0.52490234, 0.77001953, 0.120788574, 3.0605469, 0.66552734, 0.2619629, 1.5839844, -2.078125, 0.77490234, 0.2919922, 0.88671875, -1.2109375, 1.0585938, -0.26489258, 2.7167969, 1.1142578, 0.5180664, 1.1064453, -0.8457031, 2.0683594, -0.89990234, -0.05899048, -0.047851562, 0.9223633, -0.1673584, -0.7817383, 0.66796875, -1.3320312, -2.1816406, 0.037353516, 0.6738281, -0.7114258, -1.4775391, 1.0253906, -0.5205078, -1.4970703, 1.5117188, 2.2480469, 0.5839844, 1.4257812, -0.72265625, -1.3955078, 1.6572266, 0.4050293, -0.51416016, -0.63916016, -0.86083984, 0.41674805, 0.7270508, 1.7119141, 1.1591797, 0.8652344, -1.1386719, -1.3916016, 2.421875, 2.8125, 0.19177246, 1.4394531, 0.34155273, -1.9824219, -0.17126465, 2.2089844, 2.0058594, 0.5600586, -1.0800781, -1.6289062, -1.0107422, 0.77783203, -0.7841797, 2.1855469, 3.4199219, 1.5332031, 1.8945312, -2.6855469, -1.9941406, -2.546875, 0.99609375, 1.3896484, -1.0947266, -1.0429688, -0.18640137, -0.6230469, 3.3574219, 1.5371094, 0.3828125, -0.016723633, -1.1621094, 1.5791016, 1.6914062, 0.8876953, 1.3017578, -1.0585938, -0.36132812, 1.5800781, 1.0410156, -0.079956055, 1.9628906, 0.33813477, 0.92626953, -4.2539062, -0.012542725, -2.265625, -0.55810547, -0.107910156, 2.7089844, 1.3691406, -0.66845703, 0.32885742, -3.390625, -1.2011719]}, "B08SBQJ7P1": {"id": "B08SBQJ7P1", "original": "Brand: Foinwer\nName: Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill\nDescription: It is an ideal substitute for the 16.4oz/1lb green camping small propane tank\nFeatures: \ud83c\udf81 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device.\n\ud83c\udfc6 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment.\n\ud83c\udf19 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank\n\ud83d\udd12Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage\n\ud83d\udce7 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use\n", "embedding": [-0.23571777, 2.2421875, 0.75390625, -0.41210938, -2.0683594, -1.4033203, 0.3076172, -1.1347656, -1.0087891, 1.6083984, 2.2988281, -0.8354492, 1.2714844, -3.5742188, 0.58935547, -0.52978516, 0.113586426, 0.50439453, 2.2792969, 2.1835938, 2.7734375, 0.32128906, 1.7441406, 0.5830078, 1.5087891, 0.84033203, 4.3671875, -2.4726562, -0.21765137, 0.5131836, 0.112976074, 0.13415527, 0.58203125, 0.46044922, -2.15625, -1.9482422, -0.4177246, 0.984375, -3.4394531, -1.8828125, -1.3837891, 2.0488281, 3.7167969, 0.9658203, -2.5644531, 1.1494141, 0.4946289, 0.49389648, 0.72265625, -1.1132812, -0.2763672, 0.7114258, -0.012771606, 0.92578125, -1.9853516, 0.3071289, -0.30932617, -2.75, 1.7294922, 0.09649658, 2.4902344, -0.3203125, -0.98876953, -0.19995117, -0.14428711, 0.31103516, -0.44506836, -0.57373047, 1.0273438, 0.41308594, 0.7285156, 0.50927734, -0.07519531, -0.7944336, -1.3554688, 1.4892578, -3.8984375, 0.8027344, 3.0058594, 1.4003906, -1.1201172, 1.7216797, -0.02722168, -1.4511719, 0.37841797, 0.51904297, -1.7421875, 0.7939453, 0.6958008, 2.4238281, -2.4746094, 3.1425781, -2.3066406, -3.1757812, 0.5136719, -0.49389648, 0.29956055, 1.7490234, 2.3945312, 0.30151367, -1.3662109, -1.3974609, -0.86865234, 1.4638672, -2.3378906, -0.3166504, 0.43774414, 0.16125488, -1.6933594, 0.51416016, -0.18457031, -0.7475586, 1.4589844, -1.5800781, 0.12359619, -2.0058594, 0.6826172, -0.7192383, 2.703125, 0.60302734, 3.3300781, -0.14489746, 1.3144531, 0.05154419, 1.0390625, 0.8100586, -1.8798828, 0.35351562, 1.8291016, -0.7324219, 0.8027344, 0.098083496, 1.9580078, 0.9448242, -0.65527344, -2.5175781, -0.5722656, -3.5546875, -2.4257812, -0.95703125, -2.8769531, 1.5527344, 0.8803711, 0.094055176, -4.2617188, -0.5175781, -2.0390625, 1.8261719, 1.7265625, -2.484375, 0.8564453, -2.4980469, -0.9291992, 0.18322754, 2.7324219, 2.1953125, 0.33520508, -0.75439453, 2.3300781, 2.4394531, 1.2011719, -0.8515625, -0.9941406, 0.9765625, -0.48291016, -2.9394531, 2.3574219, 0.29516602, -2.0527344, 0.5083008, 1.1435547, -3.484375, 0.55322266, 1.2675781, 0.049713135, -2.4941406, 1.6298828, 1.53125, 1.5429688, -1.0478516, -2.7128906, -2.5527344, -0.07116699, -0.37304688, 1.6396484, -1.5390625, -3.7910156, -1.171875, 0.7050781, -2.421875, -0.43115234, 0.55029297, 0.052093506, -0.5996094, 0.48779297, -2.4765625, -1, -0.2006836, 0.8227539, 1.4189453, -0.76123047, -0.93652344, 1.0478516, 0.6621094, -2.0214844, -0.5810547, 0.68896484, -0.41479492, -0.609375, 2.046875, -0.66259766, 0.33691406, 2.6679688, -0.36108398, -1.2958984, -2.1640625, 1.3974609, 1.9003906, 1.5107422, -0.3864746, -0.20922852, -1.2431641, 0.8461914, 1.1591797, 2.0839844, 0.6738281, -1.8261719, -0.24414062, -1.4042969, -1.3642578, 2.6699219, 2.1757812, -0.5654297, 0.5341797, -0.9145508, 2.2792969, 0.44555664, -1.2070312, 0.68310547, 1.765625, 0.42578125, 0.09436035, -1.4169922, -2.1601562, -2.0351562, 1.8847656, -0.77978516, 0.093933105, 2.8710938, -0.54833984, 1.0078125, 0.54785156, -2.1054688, -0.7480469, -1.3740234, 0.54296875, 0.43408203, 1.0039062, -0.6948242, -2.6367188, 1.7626953, 1.3457031, -0.34887695, 1.5058594, 1.8017578, 0.8310547, 2.0410156, -0.33618164, -0.89160156, 1.6386719, 0.29003906, 2.7460938, 1.578125, -0.9379883, 0.26904297, 1.9101562, -3.203125, 1.1181641, -0.64941406, 0.2290039, 0.81689453, -1.7470703, 2.1796875, -2.6660156, 1.5566406, 0.37329102, 2.5996094, -0.9560547, -2.8476562, 0.60009766, 5.34375, -1.0810547, -1.5449219, 1.6103516, 0.71777344, 2.7109375, 0.8364258, -0.61865234, -0.15222168, 0.57177734, 1.0009766, 0.114746094, -2.6230469, 0.6738281, 1.5410156, 0.39257812, 0.031707764, -2.9121094, 0.6723633, 1.3212891, -0.66552734, 0.44506836, -1.1796875, 0.93896484, -1.9970703, -1.4746094, 1.2070312, -1.6689453, 0.20825195, 2.4082031, 0.17175293, 0.8183594, -0.23535156, -0.7006836, -1.3378906, 1.8515625, -0.055877686, 1.9980469, 1.4628906, -0.25463867, 0.064575195, -1.1738281, 0.031341553, -1.7724609, -1.4970703, 0.3605957, -0.008712769, -2.5410156, 1.0234375, -0.1126709, -0.24365234, -0.51904297, -0.3046875, 3.3261719, 0.7636719, -0.84033203, -1.2167969, 0.82128906, 0.1060791, -2.3945312, 0.101623535, 2.1015625, -2.3261719, -3.328125, 0.15783691, 0.53027344, 0.009681702, 1.8486328, -1.7421875, 1.3701172, 0.9379883, 0.8598633, -0.3449707, 1.0126953, -0.84765625, -2.2851562, 1.1914062, -2.78125, 0.7871094, -0.5185547, 0.66064453, -0.4987793, -1.0751953, -1.8876953, -1.3945312, 0.15625, -0.34545898, 1.5371094, -0.2084961, 2.9726562, 0.0418396, -0.64208984, 0.47436523, -1.3535156, -3.4394531, -0.35107422, -0.9013672, -0.77490234, -0.57714844, -3.9511719, 1.5058594, -1.2402344, 0.0038433075, 0.2121582, 0.703125, -1.9951172, -2.1855469, 0.85498047, -1.3339844, -0.57910156, 1.8564453, 1.7675781, -1.6464844, -0.095581055, -0.73339844, -1.4648438, -0.44311523, -1.4775391, 0.48291016, -0.26513672, -1.7324219, 0.6582031, 0.21911621, -0.18847656, -0.8100586, -3.5507812, 1.1269531, 2.578125, -1.375, 1.3642578, -1.4755859, -0.99658203, -2.1933594, -1.5830078, 3.0039062, 0.8261719, 2.0488281, 0.55126953, 0.31420898, 0.6508789, 1.4628906, -1.8945312, -1.0859375, 0.18347168, 3.4394531, -2.984375, -1.1894531, -0.42211914, 2.2207031, -3.8730469, 0.88671875, 1.2070312, -0.44750977, 1.8515625, 1.1064453, 0.24597168, -0.6303711, 1.1181641, 0.41674805, 2.4179688, 1.125, -0.87060547, 0.8925781, -0.043884277, -1.0097656, 0.80615234, 0.02444458, 0.6347656, 1.2304688, 2.2929688, -0.2685547, -1.9511719, 0.24291992, -0.8696289, -0.05142212, 1.3212891, 1.5917969, 0.1739502, 0.56152344, -0.20178223, 0.6040039, 1.7919922, -0.91552734, -0.38012695, 1.5019531, 0.42944336, -0.59716797, 0.004470825, 0.31152344, -0.6489258, -0.6958008, 0.109313965, 1.484375, -0.453125, 0.15820312, -0.8203125, 0.8486328, -0.6191406, 1.4101562, -0.24572754, -0.72998047, -0.1026001, -0.4050293, -1.9003906, -1.7705078, -2.21875, -2.53125, -1.2871094, 2.7265625, 1.6582031, -0.79003906, 0.9868164, -0.8076172, 0.9584961, 0.06616211, -0.984375, -1.7226562, -1.0175781, -1.0927734, 1.0517578, 0.009292603, 1.4775391, 0.765625, -3.1132812, -0.26635742, -0.7685547, -0.5649414, 0.058441162, -0.6928711, -1.1435547, -0.48120117, -1.0644531, 2.0625, -0.17895508, 2.0234375, -1.8974609, -0.984375, 0.43481445, -1.8994141, -0.82958984, -0.068359375, -4.3710938, 0.5048828, -1.2324219, 1.6230469, 2.0820312, 0.65234375, 0.19396973, -0.26489258, 1.2480469, -2.9824219, -0.01537323, -1.0292969, 1.9384766, -1.5019531, 1.5585938, 2.8476562, 0.27172852, -2.515625, -1.734375, 1.2041016, -2.2246094, -0.86572266, 0.5151367, -1.7705078, 0.2355957, -0.7949219, 0.9658203, -1.1308594, 0.48217773, 1.9677734, -0.8613281, -0.60302734, -1.1025391, 1.7265625, 0.87353516, 0.9013672, -0.87646484, 3.328125, 2.5644531, -2.5742188, 0.9658203, 0.01878357, 3.1230469, -0.48339844, -1.6210938, -0.44873047, -1.0019531, -0.73876953, -0.13720703, 0.24243164, 0.40356445, -0.9926758, 0.7758789, 1.8222656, 2.1582031, 2.34375, 0.15844727, -2.5253906, 0.39282227, 0.80029297, -2.890625, -2.2792969, -0.64453125, -0.5234375, -2.4160156, 0.4494629, -1.6113281, -0.66064453, -0.703125, -0.019622803, -2.2792969, 1.5986328, 1.8505859, 0.7001953, 1.2910156, -1.8701172, -0.8222656, 0.35424805, 0.049591064, -0.77783203, 0.22961426, -2.1132812, -1.6308594, 1.6601562, 1.2939453, -0.17993164, 0.083984375, 0.2133789, -1.4941406, 0.28442383, -1.1640625, 2.3007812, -1.4501953, -0.67041016, -0.17492676, -2.4707031, 4.0625, -2.1425781, 0.6386719, 0.2290039, -1.171875, -1.5048828, 1.5078125, 1.6464844, 0.77490234, 0.50878906, 0.037841797, 0.74365234, 1.6611328, 0.68603516, 1.9248047, 1.3183594, -1.4248047, -0.75683594, -0.62158203, 1.2265625, -0.6386719, -0.071899414, 0.29296875, -0.22131348, 3.3203125, 2.09375, 0.09692383, -0.09057617, 1.3779297, 0.9038086, -1.3447266, -1.3671875, -0.62060547, -1.2421875, 4.0234375, -1.1806641, -2.3203125, 0.78759766, 2.5117188, 0.8779297, 1.1640625, 0.38183594, -0.40722656, -1.5332031, -2.7871094, -0.37280273, -1.0146484, -1.7275391, 0.36938477, -1.2216797, 0.94384766, 0.8754883, 3.0585938, 2.6054688, -0.75146484, 0.097229004, -1.1982422, -0.9267578, -1.2421875, -1.1884766, -1.3466797, -4.3164062, -0.12524414, -0.0993042, 2.0527344, 1.5888672, -0.3371582, -0.47143555, -1.0986328, -0.4645996, 0.3852539, 2.4101562, -2.2675781, -1.1884766, 1.6367188, 0.80566406, -2.1289062, -1.1503906, -0.12524414, -0.9033203, 1.4091797, 2.9863281, 1.5878906, -0.3154297, -1.8076172, -2.7480469, -4.765625, -0.28149414, 0.7919922, 0.7241211, 0.97216797, -0.9794922, -1.1669922, 0.5332031, -0.53808594, -1.1064453, -1.6191406, 0.7939453, 0.6098633, -0.21411133, 0.4597168, 0.27148438, -1.1835938, 1.1787109, -1.1054688, -0.23999023, -0.6503906, -1.5371094, -2.6308594, -0.3630371, -1.5546875, -0.8105469, 1.0371094, -1.3535156, -0.2861328, 1.6933594, 1.4921875, -1.1054688, 0.8144531, -2.3515625, 0.15576172, 1.5410156, -1.8994141, 1.1298828, 0.7392578, -0.8598633, 0.017349243, 1.9560547, 3.4628906, -0.2467041, -0.5605469, 1.3017578, 0.41674805, -0.5136719, 0.072021484, 0.8120117, -0.5048828, 1.2949219, 3.0058594, 0.5444336, -1.15625, -2.4238281, -1.7070312, 0.5991211, -2.2265625, 0.024795532, 0.07873535, 0.89160156, 2.6425781, -0.025680542, -0.08703613, 0.8149414, 0.70703125, -1.5976562, 0.70166016, -1.7246094, 2.9355469, 1.1474609, -1.3681641, -5.1953125, -1.3515625, 1.9882812, 2.2636719, -0.2006836, 0.88623047, -1.875, -1.3027344, 0.16357422, -1.2802734, 1.6855469, 1.1542969, 0.7783203, -1.0527344, -1.0498047, 2.2695312, -2.6464844, 0.66748047, 0.6699219, -0.043945312, -1.3457031, 1.0283203, 0.9267578, -0.8959961, -0.18469238, -2.2890625, 1.5146484, -1.1982422, -1.1064453, 0.014976501, -2.9746094, 1.7216797, -0.27368164, -1.6230469, -2.8085938, 2.0078125, -0.15515137, 0.09588623, 1.2001953, 1.2929688, -1.0263672, -1.5410156, 0.96240234, 0.46704102, -0.36450195, -0.29418945, -1.7802734, 0.7265625, 1.6435547, -1.6542969, 1.4511719, 2.6210938, 1.4238281, -0.1619873, -0.0015459061, 1.265625, 2.2421875, 0.6010742, 2.9335938, 3.7617188, -0.064819336, 2.5371094, 1.2207031, 2.2421875, 2.5078125, -1.3994141, 0.9423828, 2.671875, 0.40722656, -0.046844482, -1.6933594, -0.35888672, -0.39648438, -0.23718262, -1.1835938, 0.9111328, 2.9296875, -2.5625, -0.86328125, -1.5175781, -0.7192383, -1.6669922, 2.6757812, -0.7529297, 0.7055664, 2.0253906, 0.109313965, 1.3886719, 0.62158203, -0.7602539, 0.058776855, -0.86621094, 2.21875, -0.93408203, 0.50878906, -2.7929688, -1.8847656, 0.44921875, 2.3320312, 1.6826172, -0.28271484, 0.7397461, 1.0839844, 1.7626953, 1.5195312, 1.0175781, -2.1816406, 1.1728516, -1.4248047, 2.0253906, 3.0957031, -0.7817383, 2.1054688, 0.4645996, -2.9570312, -3.0351562, 1.2734375, 1.0712891, -0.93652344, -0.35717773, -3.1601562, 2.3964844, -1.6201172, 1.8847656, -1.5810547, -0.3088379, -0.04650879, -2.6328125, -0.5493164, -0.14038086, -1.3339844, 2.2910156, 1.1748047, -0.03805542, -0.07867432, 1.375, 1.3056641, 0.6557617, 0.17211914, -0.73339844, -0.06036377, -0.9770508, 2.7597656, -0.08105469, -0.30078125, -0.07556152, 3.8925781, 1.9433594, 0.5097656, 0.79052734, -1.8017578, 2.0234375, 0.43725586, 0.40429688, 0.48339844, -1.6005859, -1.2080078, 0.6459961, -0.5541992, -0.90625, 0.13134766, 2.4101562, 0.7758789, -1.3349609, 0.62109375, 0.89501953, -0.38354492, 2.5800781, 1.4033203, -1.0419922, -1.4550781, 0.62158203, 1.5195312, -3.1132812, 0.92529297, -0.12890625, -0.06347656, -0.77197266, -1.6337891, 0.04663086, -1.8925781, -1.234375, -1.6669922, 0.037628174, -1.9462891, -0.8046875, -0.42797852, -0.8041992, 1.0029297, 2.5429688, 0.19091797, 1.796875, -0.33325195, -0.6044922, 0.609375, -2.1445312, -0.14880371, 0.77001953, 2.2695312, 0.6801758, 1.1904297, -1.3544922, -3.4199219, -1.8369141, -1.1689453, 1.2431641, 1.3759766, -3.3613281, 1.1884766, 1.1923828, 1.5126953, -1.1298828, -1.4121094, 0.09454346, 1.7070312, 1.3417969, -0.7158203, 1.5917969, 0.3317871, 1.0029297, 0.53808594, 3.9023438, 2.4492188, 0.06945801, 0.25585938, 0.028930664, -0.38793945, -1.6494141, 0.86865234, -0.44091797, 0.5439453, 0.066223145, 1.5810547, 3.3046875, -0.0925293, -0.94140625, -1.1572266, 0.8388672]}, "B015S0VALO": {"id": "B015S0VALO", "original": "Brand: \nName: 71'' Propane Gas Stove Burner REGULATOR 71'' Hose 20,000 BTU Propane Regulator\nDescription: **Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.\nFeatures: Low pressure propane stove regulator\nHose length: 71'' long\n0-20 PSI ; BTU max: 20,000\n** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully**\nQuantity: 1 ; Shipping Weight: 1 lb\n", "embedding": [-1.5263672, 1.3017578, 2.4140625, 2.1953125, -1.6464844, 0.28515625, 1.3095703, -2.0332031, 0.6699219, -1.0615234, 2.8496094, -0.23730469, -0.5053711, -1.5908203, 2.5078125, 0.765625, 0.93603516, 0.9638672, 0.64746094, 0.8256836, 0.0075302124, 0.5283203, 3.9023438, -1.5859375, 0.1817627, 0.4140625, 3.125, -3.6132812, -0.9448242, -1.1904297, 1.3085938, 0.84228516, 0.51123047, 2.375, -2.609375, -1.7646484, -0.10040283, -0.41015625, -4.1992188, -0.4169922, -1.1523438, 2.3886719, 1.0185547, 0.65185547, -2.5957031, -0.8847656, 1.9169922, -0.8051758, -2.1699219, 1.2304688, 1.4570312, 0.41870117, -0.37768555, 0.66552734, -0.64990234, 1.9384766, -2.0078125, -2.0488281, 0.75146484, 0.077819824, 2.71875, 0.02142334, -2.0878906, 0.18310547, -0.3413086, 3.2226562, -0.43725586, 0.3322754, -0.66259766, 1.0488281, 2.0058594, 0.41796875, -0.2734375, -1.2548828, -1.140625, 0.36523438, -3.09375, -0.69189453, 2.8242188, -1.3232422, -0.9199219, 2.1308594, 1.4970703, -0.25219727, 1.6748047, 0.38012695, -1.0800781, -0.37939453, 1.3515625, -0.028030396, -1.5048828, 1.4326172, -2.5566406, -3.0351562, 0.2998047, 2.171875, 0.62939453, 1.2363281, -0.02130127, -0.9370117, -0.77197266, -0.13452148, 0.875, 1.1142578, -1.7373047, -0.16223145, 0.72314453, 1.4589844, -3.8359375, -0.72021484, -1.2294922, -0.9296875, 2.0097656, 0.15637207, 1.5332031, -0.3894043, -0.4411621, -0.44628906, 3.2988281, 0.4104004, 2.6054688, -0.8461914, -0.14587402, 0.1239624, -0.5629883, 0.13366699, -1.0107422, -1.2158203, 3.4335938, -0.92333984, 1.2519531, -1.6318359, 2.2753906, 0.5151367, -0.6484375, -2.421875, -3.0839844, -3.2890625, -2.6855469, -1.5664062, -3.0742188, -1.1474609, 0.13537598, 0.95703125, -3.7441406, -0.93115234, -2.2695312, 1.0341797, 2.2597656, -3.1601562, 2.1757812, -1.2587891, -0.29101562, -0.7729492, 1.1376953, 0.46923828, 1.1914062, -2.2070312, 2.5488281, 1.7041016, 0.0692749, -0.016967773, -1.5058594, 0.77685547, -1.1464844, -1.7050781, -0.39746094, 1.3505859, -2.6992188, 2.0117188, -0.94873047, -1.6708984, -1.3583984, -0.23632812, -0.3215332, 0.546875, -1.5195312, 2.0371094, 2.9238281, 0.22473145, -3.9003906, -3.0800781, 1.1748047, -0.8911133, 0.4453125, -0.7758789, -1.4902344, -2.9472656, 2.5449219, -0.18945312, -1.984375, 0.03604126, 0.5263672, -0.62597656, -1.6542969, -1.5234375, -3.03125, -2.7246094, 0.53125, 1.7226562, -1.7587891, -0.63720703, 1.3964844, 0.0869751, -0.5102539, -2.1445312, 0.5756836, -0.020080566, 0.30151367, 2.0859375, 0.6689453, -1.8574219, 2.453125, 0.1161499, -1.1220703, -2.578125, 2.7988281, 2.09375, 0.78125, 1.3378906, -1.1806641, 0.6489258, 1.9589844, 0.028442383, 1.2724609, 0.2565918, 0.36865234, 0.6816406, -2.7539062, -1.6025391, 2.6386719, 2.6640625, 0.34814453, -0.119384766, -0.4140625, 2.4453125, 0.51220703, 0.4350586, 1.6904297, -0.2919922, 0.5136719, -0.25952148, 0.47485352, -0.22290039, -0.4567871, 2.1328125, 0.17944336, 2.1152344, 3.0585938, 0.41430664, 1.1455078, 0.5292969, -0.9633789, -1.5712891, -0.46484375, -1.6269531, 0.83496094, 1.6582031, 0.44213867, -1.8642578, 4.3984375, 1.3779297, -0.6816406, 1.0380859, -0.48999023, -0.29760742, 2.2460938, -0.71875, -0.39282227, -0.20019531, 0.69677734, 2.0898438, 2.1542969, -0.9589844, 2.546875, 0.19091797, -1.65625, 3.0507812, -0.14660645, 0.63623047, 0.96875, -1.2207031, 3.1015625, -2.0898438, 1.9746094, 0.69140625, 2.8222656, -0.3647461, -4.0585938, 0.93408203, 3.7460938, -1.5185547, -0.58935547, 2.5839844, 1.2167969, -1.9121094, 0.63916016, -0.5307617, 0.38793945, -1.0029297, 2.9082031, -1.3408203, -0.7817383, -1.7851562, 1.5800781, -0.90771484, -0.64453125, -0.88720703, -0.96240234, 0.3803711, -1.8847656, -1.7109375, -1.1865234, 1.8935547, -2.2382812, 0.4152832, 1.8515625, -2.5175781, 1.2109375, 0.034332275, 0.26171875, 1.4902344, 0.07305908, 0.32250977, 1.5058594, 0.9765625, -2.5214844, 2.6152344, 2.0605469, 0.038269043, -1.9296875, -1.4746094, 0.6582031, -2.6953125, -2.2832031, 1.3789062, -1.4296875, -4.1796875, 0.7138672, -1.2734375, -0.5756836, 1.3154297, -2.8945312, 4.3398438, 1.0253906, -1.4775391, -0.26489258, 0.62402344, -0.9355469, -0.27954102, 0.14453125, 2.4433594, -0.054260254, -1.2119141, -2.0449219, -0.4650879, -0.15881348, 0.89746094, -1.0595703, 1.734375, 0.9082031, 0.29589844, -0.01789856, -0.08843994, 0.7973633, -1.9443359, 2.3574219, -3.84375, -0.4345703, -0.59716797, 1.2265625, -2.3691406, 0.49658203, -2.7363281, -0.85839844, -0.75634766, 0.21398926, 2.5371094, 0.0054969788, 2.0625, -1.0244141, 0.86816406, 0.3125, -2.7792969, -1.9169922, -0.15209961, 1.0605469, -1.1464844, -0.4440918, -3.1601562, 0.4140625, 0.7944336, -0.06585693, -0.29589844, -1.6376953, 1.1982422, -0.4970703, 0.38916016, -1.7167969, -0.81933594, 0.48876953, -0.82373047, -1.4492188, 0.3803711, 1.0488281, -2.7441406, -0.19689941, 1.5273438, 0.82470703, 0.13024902, 0.51904297, 0.69091797, 0.64208984, 1.9414062, -0.7260742, -2.8085938, -0.6269531, 2.2363281, -0.14453125, 1.6728516, -2.1425781, -0.18054199, -1.2441406, -2.1308594, 1.8115234, 1.3662109, 2.828125, 0.55859375, 0.2866211, -0.7182617, -0.7055664, -2.3105469, -1.4296875, -0.7763672, 4.4492188, -1.8769531, -2.140625, 0.22351074, 0.33203125, -3.4648438, -1.1669922, 0.9399414, -0.4116211, 3.0878906, 0.63134766, 1.1777344, -1.6826172, 1.4130859, 0.4892578, 2.3339844, -0.51660156, 1.2519531, 0.64404297, 2.2871094, -1.2734375, 1.6962891, 3.375, 1.0449219, 1.4160156, -0.44970703, 0.33862305, -0.73779297, 0.28588867, 1.3544922, 0.039245605, 0.8466797, 2.6660156, -0.23266602, -0.9091797, 0.25634766, 1.5947266, 1.6396484, -2.1074219, 0.2746582, 1.1152344, 1.3740234, -1.5761719, 1.3183594, -0.10845947, 0.8930664, -0.18945312, 1.5078125, 1.3779297, 0.03543091, 1.046875, -0.0079193115, 2.5332031, -2.9277344, 1.5722656, -1.5976562, -0.031021118, -0.95654297, 0.22277832, -3.6875, -1.5820312, 0.24499512, -2.0683594, -1.5332031, 1.9628906, 1.5966797, -0.42700195, 0.6230469, -0.48413086, 0.8046875, 1.5097656, -2.6269531, 0.09838867, 0.7705078, -2.0175781, -0.97998047, 0.28564453, 1.4726562, 0.51416016, -1.15625, -1.234375, -2.6035156, -0.045715332, 0.8769531, 0.7402344, -0.62402344, 0.8588867, -2.0039062, 1.7431641, -0.10180664, 3.6582031, -1.5693359, 0.09979248, 1.3496094, -1.5253906, -0.27856445, -3.375, -4.7851562, 0.40014648, -1.9052734, 0.7890625, 1.2050781, 0.234375, 0.98291016, 3.0703125, 3.5136719, -1.7177734, 0.6328125, -0.8613281, 0.25, -2.359375, -0.062194824, 1.6689453, 1.0839844, -1.1669922, -1.7646484, 0.75878906, -2.2324219, -0.9873047, 0.64501953, -4.0703125, -1.9072266, 0.037994385, 1.7207031, -0.95458984, -1.7080078, 2.3144531, -0.66552734, -1.6044922, -3.328125, 2.7148438, 1.1171875, 0.89746094, -0.089904785, 3.5957031, 1.9335938, -1.171875, 1.0917969, 0.2524414, 2.8378906, -0.63183594, -2.5839844, 0.059020996, -0.05517578, -1.9160156, 0.030303955, 0.7705078, -1.5058594, -1.2597656, -0.36010742, 0.1394043, 0.24633789, 2.25, 0.4831543, -1.6572266, 0.41064453, -0.4206543, -1.3515625, 0.97753906, -0.44213867, -1.4189453, -1.7783203, 1.0791016, -2.9375, -0.62402344, -1.9238281, -0.09472656, -1.9902344, 2.9726562, -1.0605469, -0.3779297, 1.6679688, -1.6298828, -0.38134766, -0.328125, 0.02027893, -1.4394531, -1.1279297, -1.1318359, -0.46020508, 2.6738281, 3.2285156, 0.22045898, -1.3359375, 0.4868164, -2.7949219, -0.024230957, 0.7055664, 0.8798828, 0.3774414, -1.171875, 2.2636719, -0.42016602, 3.9472656, -0.9995117, -0.38183594, 0.30322266, -0.58447266, -1.8427734, 1.2734375, 0.56103516, -0.29638672, 1.8300781, 0.45751953, 0.94433594, 1.6269531, 1.6513672, 0.21118164, 1.1376953, 0.1048584, 0.4494629, 0.66064453, 0.19714355, -1.0185547, 0.19580078, -0.14892578, 0.41479492, 2.96875, 4, 2.5859375, -1.8632812, 1.9892578, 0.6088867, -1.5820312, -0.47705078, -0.7885742, -2.1699219, 3.1699219, 1.1289062, -3.1835938, 0.51953125, 2.6679688, -0.64941406, 1.6845703, -0.17089844, -1.1738281, -0.5073242, -1.7304688, -1.4257812, -1.9267578, -1.421875, 0.96875, -0.6743164, 1.3007812, -0.47436523, 1.1875, 1.6992188, -0.056030273, 0.6645508, 0.2043457, -1.1083984, -0.11450195, -1.6367188, 0.17907715, -1.9414062, 1.3857422, 0.96191406, -0.58935547, 0.019760132, -0.18066406, 0.9584961, -2.234375, -0.06964111, 0.70166016, 1.7041016, -0.50634766, -0.59033203, 2.8417969, -1.3525391, -0.80908203, -2.3945312, -1.7783203, -1.3251953, 1.3945312, 1.7363281, 1.7304688, -2.2226562, -0.33691406, -2.4628906, -3.6328125, -0.043182373, 1.4658203, -0.053253174, 0.96875, -3.6425781, -1.4150391, 1.4453125, -1.5380859, -0.4255371, -2.5214844, 1.0332031, -1.0830078, 0.92626953, -0.09429932, -1.8496094, -0.41479492, 2.5957031, -0.026641846, -0.4128418, -1.1132812, -1.4482422, -3.1367188, 2.6484375, -3.2949219, 0.53027344, 2.296875, -0.7265625, -0.42993164, 0.89501953, 0.37524414, -0.28320312, 1.5585938, -2.2070312, 0.51123047, 1.0488281, -1.9619141, 2.7441406, 0.81103516, -0.61376953, 0.7158203, 1.8769531, 0.4543457, 1.2744141, 1.15625, 0.23120117, -0.63671875, -0.765625, -2.1445312, 0.8798828, -0.10900879, 0.4658203, 1.8945312, -1.5341797, 0.3815918, -2.1269531, -1.5029297, -0.15539551, -1.8662109, -0.031707764, 0.76660156, -0.49926758, 2.671875, -0.8833008, 0.24047852, 1.2167969, 0.5498047, 0.7163086, 1.0371094, -1.1318359, 2.828125, 2.6582031, -1.1982422, -1.3613281, -0.68603516, 0.69433594, 2.1621094, -0.68896484, -0.27270508, 0.6142578, -1.5703125, 0.8383789, -0.5732422, 0.640625, 2.0820312, 1.9990234, -0.7338867, -0.48217773, 3.5390625, -2.125, 0.62060547, 0.32739258, -0.90966797, -0.9223633, 2.4375, 2.8632812, -2.4042969, 1.7880859, -0.8642578, 2.0683594, -0.6772461, -1.0410156, 1.4335938, -1.2578125, -0.0703125, -0.17321777, -2.796875, -3.2890625, 0.94873047, 2.0546875, -1.6455078, 0.46118164, 3.5410156, -0.60595703, 0.6308594, 0.6699219, 0.13012695, 0.26708984, -0.70166016, -0.67285156, 1.0488281, 2.4316406, -1.9560547, 2.0957031, 1.6064453, 0.9145508, -1.8417969, -0.08630371, -0.6459961, 1.7011719, 2.8125, 2.0078125, 2.6132812, 0.04824829, 1.96875, 0.6035156, 2.3710938, 1.4560547, -0.19921875, 0.6357422, 1.6533203, -0.60058594, 0.28564453, -1.1347656, -1.5332031, -0.4423828, 0.0050735474, -0.15966797, 0.11395264, 1.328125, -3.8066406, -0.1340332, -1.8115234, 0.5317383, -2.0917969, 1.5722656, -0.54833984, 0.9926758, 1.6181641, 0.96191406, 0.9067383, 2.609375, -0.89404297, -0.5395508, -0.8339844, 1.1650391, -1.2060547, 0.6777344, -0.63671875, -3.2890625, 0.14770508, 1.4443359, 1.0292969, -0.31835938, 1.3251953, -0.0836792, -1.453125, 1.3417969, -0.7026367, -2.2480469, 0.93066406, 0.79541016, 0.89160156, 1.7363281, -1.8388672, 1.3251953, 0.1529541, -0.6074219, -3.2421875, 4.6796875, 0.49047852, 0.8105469, 0.78222656, -4.578125, 2.5527344, -0.21850586, -1.8486328, -1.578125, -0.7363281, -1.3193359, -0.6982422, -0.20031738, 0.55859375, -2.609375, 3.5800781, 1.1767578, -0.32739258, 0.37597656, 0.45361328, 1.4667969, 0.9091797, 1.1367188, 0.060180664, -0.45043945, -2.0488281, 2.6601562, 0.69384766, -3.6484375, -0.7529297, 3.0273438, 2.5742188, 0.23413086, 0.12176514, -0.9086914, -0.4934082, 2.0878906, 1.3574219, 0.8251953, -2.1289062, -0.45947266, -1.3417969, -1.3876953, -1.3867188, -2.6191406, 2.4511719, 2.1875, -2.7089844, 1.0546875, 2.7167969, -1.7929688, 0.6303711, 0.796875, -1.5, -2.984375, 0.6977539, 0.49731445, -2.3476562, -1.9365234, -0.20214844, 1.6269531, 1.0869141, -1.7255859, -1.2304688, -0.3737793, 0.64160156, -1.4521484, -0.6870117, -1.71875, -1.2363281, 0.66015625, -0.4091797, -0.7055664, 0.9536133, 0.10821533, 1.6074219, -0.4885254, -0.7651367, -0.66259766, -0.8208008, -1.0146484, 1.6835938, 2.2265625, 0.18835449, 0.9140625, 0.15966797, -2.7714844, -1.1308594, -1.1757812, 2.7792969, 1.4511719, -1.2265625, -0.9560547, 1.4140625, 2.6503906, -1.9111328, -0.052215576, 0.3713379, -1.7929688, 1.6621094, -1.1923828, 2.6054688, -1.2490234, 1.0322266, -0.5449219, 4.84375, 0.9667969, -0.4074707, -0.07128906, -0.32788086, 0.9145508, -3.0976562, 0.06896973, 0.85791016, -0.92041016, 1.4902344, 0.9448242, 3.1035156, 1.0439453, -2.2011719, -2.1503906, -0.41845703]}, "B07M6RMP1V": {"id": "B07M6RMP1V", "original": "Brand: ARC Advanced Royal Champion\nName: ARC, 339S Super Propane Burner Stove with Electron Strike,13\" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing\nDescription: \nFeatures: \ud83d\udd25Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances.\n\ud83d\udd25Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors.\n\ud83d\udd25Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious\n\ud83d\udd25High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included.\n\ud83d\udd25Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.\n", "embedding": [-1.7460938, 1.3271484, 2.5175781, 1.6806641, -1.5205078, 1.734375, 2.4550781, -1.5, -0.7919922, 0.98291016, -0.14880371, -1.5390625, 0.38378906, -2.9355469, 1.1298828, 0.60009766, -0.9003906, 0.50878906, 0.12719727, 0.043121338, 0.7089844, -0.12451172, 2.8476562, -0.9135742, 0.9711914, 0.86328125, 2.7714844, -3.2148438, -0.27490234, -1.4072266, 2.3671875, 0.32250977, 1.2792969, 1.8916016, -2.5625, 1.6591797, -1.3310547, 0.6191406, -2.3320312, 1.1425781, -0.08050537, -0.16711426, 2.1640625, -0.114746094, -1.7490234, 0.6850586, 0.6308594, 1.3632812, -0.7949219, 1.3876953, -0.74121094, 0.23950195, 0.12475586, 0.35473633, -1.6484375, 1.0839844, 0.80810547, -1.5537109, 1.2099609, -0.35888672, 1.3779297, 1.2050781, -1.9638672, 1.1953125, -0.7597656, 0.0914917, 1.0390625, -1.2060547, -0.2722168, -0.114990234, 1.2265625, -0.7451172, 0.10772705, -0.6958008, 2.3183594, -0.3647461, -0.97998047, 0.74365234, 2.2851562, -1.0703125, -2.1035156, 1.5791016, 0.08532715, 1.1757812, -0.070495605, 1.9375, -2.8007812, -1.4511719, 0.27270508, -0.43310547, -1.2763672, 1.2919922, -2.3554688, -4.2617188, 4.0820312, -0.37475586, 0.4831543, 0.27856445, -0.0026283264, -0.17675781, -0.5097656, -1.0498047, -1.3408203, 0.21118164, -1.6494141, 0.06695557, 1.6884766, 1.6503906, -2.2890625, -0.24853516, -1.6875, -0.23022461, 1.4072266, -0.48608398, 0.64208984, 0.33911133, -0.13012695, 0.359375, 3.2910156, -1.4355469, 3.6445312, -0.9819336, -0.90478516, -2.0488281, 0.47875977, 3.0253906, -0.83935547, -1.0986328, 3.4824219, -1.6142578, -0.421875, -1.0966797, 1.2128906, 0.47192383, -1.4824219, -1.1279297, -1.4941406, -0.67529297, -3.515625, 0.9296875, -3.2929688, 0.76171875, 0.5048828, 0.19018555, -4.1523438, -0.5209961, -0.25146484, 1.8320312, -1.5986328, 0.8964844, 0.44311523, -0.071777344, -0.4567871, -2.5449219, 1.7929688, -0.10882568, -1.3701172, -2.7792969, 3.1171875, 0.64160156, -0.45947266, -3.3242188, -0.1517334, 2.9433594, -1.2255859, -0.5576172, -1.8427734, 1.7783203, -0.64208984, 2.4375, -0.58691406, -3.0566406, -1.5546875, 0.81152344, 0.06994629, 0.0690918, -1.1640625, 2.2832031, 0.8881836, -0.4633789, -2.5761719, -2.7480469, 2.3515625, 1.7216797, 1.5839844, -2.1210938, -1.0957031, -1.2373047, -0.1529541, -1.2792969, -1.4248047, 0.19433594, 0.46289062, -0.5341797, -0.34936523, -1.4892578, 0.95996094, -3.296875, -0.4177246, 1.3984375, -2.2988281, -0.55029297, -0.6455078, 1.9794922, -2.9042969, -0.83984375, -0.49609375, -0.88183594, 1.9306641, 2.28125, 1.2841797, 0.13464355, 1.0498047, -1.3154297, -1.4423828, -2.2988281, 1.4042969, -1.3408203, 2.0683594, 2.078125, 1.4052734, -0.15344238, 1.9375, 1.1748047, 0.03427124, 2.9609375, 0.7885742, 0.049743652, -0.89160156, -2.2714844, 2.7871094, 0.5449219, -1.0488281, 0.9189453, -1.1123047, 1.8242188, 1.1152344, -0.5102539, 0.6328125, -1.4501953, -0.9790039, -1.3173828, -0.7446289, 0.22375488, -0.87158203, -1.6582031, 0.5019531, 1.7001953, 2.5566406, 0.5292969, -0.011482239, -0.6699219, -0.2548828, -0.14367676, 0.09429932, 0.83447266, 0.00088071823, 0.40600586, -2.0214844, -2.2597656, 1.5517578, 0.89746094, -1.4003906, -0.8671875, 0.11798096, -1.0332031, 2.6464844, 1.6435547, -1.4492188, 0.6845703, -0.2692871, -0.19396973, 2.9765625, 1.703125, 2.0859375, 1.0615234, -0.4802246, 2.953125, -0.7807617, 1.4638672, 0.41430664, -1.2392578, 2.3925781, -1.734375, 0.43286133, 0.3166504, 2.1464844, -0.50341797, -1.0205078, 0.0011091232, 4.7070312, -1.0673828, -2.1386719, 0.85498047, -1.5146484, 0.11260986, 1.0234375, 0.9316406, 0.39282227, -1.5585938, 0.8647461, -0.27661133, 1.5058594, 0.8642578, -2.3105469, -1.5, 0.9663086, -1.8330078, -1.4736328, 0.38061523, -0.2109375, -0.80078125, -2.0078125, 1.0292969, -3.9394531, -0.34179688, 2.4394531, -3.8476562, 1.5576172, 1.4677734, 0.12536621, -0.06750488, 0.14868164, -1.9697266, 0.7685547, 0.13757324, -0.50341797, 1.6923828, 0.6850586, -0.5366211, -0.64697266, -2.1074219, -0.6328125, -1.6699219, -0.69970703, 0.27124023, -0.20593262, -2.4550781, 0.83251953, -1.5947266, 1.1992188, 2.6542969, -2.3808594, 0.57666016, -0.79345703, -3.640625, -1.1962891, -0.61816406, -0.35253906, -0.5415039, 1.2753906, 2.6933594, -0.44799805, -3.6523438, -0.8417969, -1.0263672, 0.040222168, -0.08337402, -0.091552734, 1.9228516, 0.1348877, -0.012176514, 0.18493652, 1.4550781, 1.6259766, -1.9980469, 0.5058594, -3.6484375, 1.0136719, -3.1953125, 1.0087891, -0.2548828, 0.7216797, -1.0556641, -0.52783203, -0.11828613, -1.4404297, 3.1289062, -0.101989746, 2.7148438, -0.5527344, -0.9013672, 0.14099121, -0.07727051, -1.7597656, -0.3864746, -0.6767578, -2.5742188, -1.3115234, -3.9472656, -0.29296875, -0.99609375, 0.38598633, -0.70458984, 0.26489258, -1.2529297, 1.6533203, 0.16918945, -0.6611328, -0.35083008, -1.9384766, -1.1376953, -0.5449219, -1.0341797, -0.93310547, -1.0039062, 0.18566895, 3.0019531, 1.3515625, -0.90478516, 1.2617188, 1.4667969, 1.1269531, 0.94628906, 0.6875, -4.4296875, 2.8105469, 1.328125, -0.13928223, 3.4042969, -2.0585938, -0.79785156, -1.34375, -0.44433594, 2.1113281, 0.23730469, 1.9716797, 0.14624023, -0.09173584, 1.9775391, 2.9511719, -0.9707031, -1.7236328, -1.3701172, 4.0976562, -2.4863281, -2.1894531, 0.51171875, 3.6074219, -2.1269531, 0.12487793, 0.6010742, 0.6508789, 2.4394531, 1.8964844, -0.45703125, -0.6923828, -1.0488281, 0.8461914, 1.6699219, 1.4072266, 1.0888672, -0.33007812, 0.8364258, 0.1149292, -0.86621094, 2.6328125, -0.34057617, 2.3359375, 1.3867188, 1.9287109, 0.24450684, -0.16088867, 1.28125, 2.109375, -0.14086914, 0.4831543, -0.5336914, 0.39648438, -1.4384766, -0.13220215, 0.5131836, -2.7304688, -0.12451172, -0.23547363, 0.77490234, 0.30371094, -0.57128906, 0.92871094, 0.48217773, -1.7148438, 1.3955078, -0.77685547, 0.5229492, -0.34179688, -0.6074219, 0.4580078, -2.7402344, 1.7353516, -0.6298828, -2.3300781, -0.35546875, 0.99902344, -1.4355469, -1.84375, 0.48608398, 0.57958984, -0.38208008, 3.4238281, 0.8730469, 0.38354492, -0.00057792664, -2.2089844, 0.47509766, 0.1829834, -1.6767578, 0.19763184, -1.3583984, -0.9003906, -1.7714844, 0.8574219, 1.1484375, 1.6044922, -0.5932617, 0.8935547, -3.9921875, -0.13354492, -0.22949219, -2.6679688, -0.62109375, 2.1171875, -0.3071289, 0.027069092, -1.3896484, 4.34375, -1.7001953, -3.1289062, 1.453125, -2.4667969, -0.42456055, -4.015625, -2.1855469, 0.77978516, -0.63134766, -0.515625, 2.4765625, 0.13342285, -0.7807617, 0.7475586, -0.2890625, -1.84375, -2.2753906, 0.60009766, 0.7631836, -1.3144531, -0.4663086, 1.9921875, 1.5742188, -1.4589844, -2.25, 1.1455078, -1.8398438, 0.23535156, 1.6904297, -1.7998047, 0.7685547, -1.9560547, 0.8691406, -0.09753418, -2.609375, 2.1210938, -0.59521484, 0.18554688, -2.4511719, 1.0400391, 2.1425781, 0.35717773, 1.1523438, 3.2871094, 0.4428711, 0.3125, -0.64453125, 0.22912598, 2.0234375, 0.6582031, -2.5507812, -0.9526367, -2.375, -0.036254883, -1.0410156, 1.0820312, -1.5527344, -1.0703125, 0.5654297, 1.1025391, 1.2734375, 2.9492188, 1.1230469, -0.011413574, -0.8105469, 0.2614746, -0.52441406, -1.0458984, 0.19702148, 1.3076172, -0.66552734, 1.765625, 0.008644104, -0.9477539, -2.3789062, -0.5786133, -2.6425781, 1.6777344, 2.6191406, -0.5625, 1.046875, -1.7841797, -1.265625, 0.022659302, -0.7524414, -2.3066406, 1.6083984, -0.5810547, 0.4880371, -0.1394043, 0.37402344, -1.7050781, -1.8017578, 1.3574219, -1.9101562, -0.34423828, -1.3505859, 0.85253906, 0.097839355, -0.7050781, 2.2460938, 1.2753906, 1.0527344, -0.54003906, -0.47827148, 1.0068359, 0.7011719, -1.1914062, -0.63720703, -1.3964844, 0.8544922, 1.8789062, 0.09234619, 1.2314453, -1.3417969, 2.4179688, 0.45654297, 2.9257812, -0.68408203, 0.47338867, 0.42407227, 1.1806641, -0.15490723, -1.4384766, 0.8979492, 1.2382812, 0.53125, 4.140625, 1.5234375, -0.22521973, 2.2285156, -0.19018555, -1.6083984, -0.26123047, -0.6230469, -1.3701172, 1.1582031, -0.08312988, -3.0878906, -0.45996094, 3.5898438, 0.65625, 0.25683594, 0.31396484, -0.94970703, -0.60253906, -2.5644531, -0.93310547, -1.7001953, 0.06903076, 0.26708984, -0.30517578, 0.11651611, -1.6728516, 1.8916016, 2.2929688, -0.84228516, 0.11663818, 2, -1.2509766, 0.6303711, 0.7631836, -0.51953125, -1.484375, 1.6455078, 2.0917969, -0.072509766, 1.6328125, 0.85546875, 2.3847656, -0.04937744, 0.50439453, 0.113220215, 3.2265625, -3.4433594, -1.3457031, 1.8085938, -0.54541016, 0.9770508, -1.5908203, -1.6171875, -2.0253906, 2.4960938, 0.49243164, 1.1757812, -0.4008789, -0.62060547, -2.0214844, -3.4785156, -0.96972656, 1.6894531, -0.40112305, -0.8666992, 0.09387207, 0.6279297, 0.39233398, -0.56347656, -0.041625977, -1.3095703, 0.7578125, -0.3100586, 0.71875, -2.0429688, 0.8120117, 1.1162109, 1.6601562, 0.46533203, -0.028549194, -0.11730957, -2.1035156, -0.7973633, 1.8818359, -2.1601562, 3.2089844, 1.2382812, -1.5488281, 0.83691406, 1.0361328, -1.1855469, -0.43896484, 0.7573242, -0.34960938, 0.042816162, 1.2490234, -1.5732422, 1.3789062, 1.6640625, -1.6269531, 0.5053711, -1.390625, -0.5566406, 0.026351929, 0.69873047, 1.4619141, 0.65283203, 0.38989258, -1.0195312, 1.9902344, 0.35351562, 0.32836914, 0.7392578, -0.93896484, -0.7368164, -1.4267578, -2.9082031, -0.42578125, -0.74365234, 0.12548828, -0.6816406, 2.734375, 1.4511719, -0.9609375, 0.34765625, -0.8515625, 1.0683594, -0.017791748, 2.0273438, -2.4179688, 3.1640625, 0.62939453, -1.9941406, -1.6894531, -1.2080078, 0.2286377, 2.3300781, 1.0058594, -0.9921875, 2.2832031, -1.2167969, 1.0966797, 0.25341797, 1.1464844, 2.5996094, -0.0914917, -0.47558594, 1.7099609, 3.1738281, 0.5522461, -0.6660156, 0.09863281, -1.2978516, -1.2548828, 3.671875, 3.1816406, 0.3166504, 3.2988281, -2.8203125, 0.66064453, -0.45239258, -1.2324219, 0.7158203, -2.0371094, -1.0966797, -1.9365234, 0.4794922, -2.046875, 0.2980957, 2.2382812, -0.5136719, 0.98583984, 1.4287109, -0.41723633, 1.34375, 1.2988281, 1.7050781, 0.0032463074, 1.1777344, 0.6381836, 0.7734375, 2.46875, -1.9355469, 1.3398438, -0.094177246, -0.5263672, -0.4296875, 0.93652344, 0.9658203, 2.375, 2.8671875, 1.046875, 1.8125, 1.9960938, 2.5605469, -0.15942383, 1.9160156, 2.5820312, -0.21643066, 0.049560547, 1.1845703, 0.7558594, -0.60058594, -0.6713867, 1.0683594, -1.4443359, -1.1513672, -1.4824219, -0.9868164, 1.8964844, -1.0419922, 0.60253906, 0.54296875, 0.68310547, -0.78564453, 1.3183594, -1.0615234, -0.9707031, 0.7416992, 0.25585938, 0.55126953, -1.1503906, -0.68896484, -0.07635498, -0.082336426, 0.58154297, -3.0507812, 1.3515625, -0.8613281, -1.2294922, 0.77685547, 2.2617188, -0.40820312, 0.057647705, 0.81396484, 2.375, 0.10247803, -0.32739258, -0.18371582, -1.7060547, 0.45483398, 0.54003906, 3.7089844, -0.6411133, -1.5556641, 1.7265625, -1.3027344, -2.375, -2.6191406, 3.7734375, -0.19104004, 1.8046875, 2.1835938, -2.3632812, 2.6113281, -1.6230469, 2.3613281, -3.6230469, 0.95996094, 1.2128906, -1.9980469, -1.4365234, -1.171875, -0.27539062, 3.4804688, 1.3798828, -1.5693359, 0.027755737, -1.7041016, 1.0732422, 0.21862793, 1.6298828, -0.39135742, 1.8857422, -1.5429688, 2.7226562, 0.37304688, -3.171875, 0.2932129, 2.9023438, 0.45874023, 0.23217773, -0.1171875, -2.2402344, 0.67626953, 0.68066406, -0.6118164, -0.56347656, -1.3798828, -1.8144531, -0.4321289, -0.5625, -1.5214844, -1.1083984, 0.5097656, -0.91308594, -0.24853516, 0.7988281, 2.7792969, -1.0576172, 1.3105469, -0.18017578, -0.7441406, -2.3105469, -1.1015625, 1.4746094, -0.040618896, -2.53125, 0.42504883, 1.8623047, 2.1015625, -1.2041016, -1.5849609, -1.6142578, -0.32177734, -0.2548828, -0.070739746, -2.1445312, 0.42236328, 0.5546875, -0.6484375, -2.3457031, 2.375, -0.2680664, -0.6503906, -0.67626953, -2.9238281, -2.2089844, -0.80322266, 0.27905273, 2.2363281, 1.3554688, -0.97998047, -0.14453125, -0.90771484, -3.3886719, -1.2304688, -0.49560547, 1.1884766, 0.18408203, 0.6870117, 0.3737793, 2.1289062, 1.8203125, -1.0957031, -1.2460938, -1.2138672, 1.2128906, 0.6870117, -0.40966797, 1.1972656, 0.47436523, 0.67089844, -0.73828125, 2.1972656, 0.12359619, 0.17956543, 1.4648438, 2.9648438, -0.27148438, -1.5126953, 2.2695312, -1.0605469, 0.32470703, 0.046966553, -0.5175781, 2.953125, 2.3769531, -0.9765625, -2.3378906, -1.2851562]}, "B074BT57HG": {"id": "B074BT57HG", "original": "Brand: Renook\nName: Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black\nDescription: \nFeatures: 1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat\n2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "embedding": [-0.40893555, -0.22009277, 1.2480469, -0.6791992, 0.9916992, 0.09875488, 1.1513672, -0.41796875, -0.41186523, 0.8925781, 0.51171875, -1.7929688, 1.2275391, -2.8261719, 0.04827881, -0.44628906, -0.030090332, 2.375, 4.3007812, -0.025909424, -0.71777344, 0.21875, 1.5673828, -1.7958984, -0.26000977, 1.2236328, 3.1679688, -1.0019531, 0.011734009, 0.55566406, 1.9472656, 1.4746094, 0.89404297, 2.296875, -2.7578125, -0.9111328, -1.0947266, 2.5527344, -0.5527344, -0.6176758, -0.6069336, -2.0371094, 1.2753906, 1.5654297, -1.7841797, 0.19567871, -0.37597656, 1.3769531, -1.5820312, -3.3652344, 0.59814453, -0.24450684, 2.6445312, 0.25830078, -1.765625, 2.1582031, 0.91015625, -0.8232422, -0.26391602, -0.04763794, 0.24853516, -0.7133789, -1.3544922, -0.0037631989, -1.0488281, -1.2001953, 1.0908203, -1.3935547, 0.48266602, -2.1347656, 0.05731201, -0.3930664, -0.073913574, 0.16369629, -1.0927734, 0.98583984, -0.12414551, -1.1650391, -0.68652344, -1.7568359, 0.5605469, 2.3222656, 0.023895264, -1.0986328, -0.042419434, -1.2880859, -3.1972656, -0.9560547, 2.2773438, -0.074401855, 0.46728516, 3.4238281, -2.3945312, -4.140625, 0.8022461, -2.0800781, 0.2607422, 0.24645996, -1.2148438, 1.9052734, -1.6865234, -1.7197266, -0.85498047, 2.0527344, -3.125, -2.421875, 1.9033203, -0.18615723, 0.22485352, 0.23266602, 0.75097656, -0.5649414, 1.1601562, 0.11480713, 1.7607422, 0.50341797, 0.023254395, 1.1279297, 0.13928223, -0.42163086, 3.6152344, 0.2388916, 0.09039307, -2.71875, 0.45263672, -1.5654297, -0.12634277, 1.9013672, 2.7089844, -2.6601562, 0.5058594, -0.72802734, -0.58251953, -0.7993164, -2.6445312, -0.22485352, -1.7539062, 0.32714844, -2.7246094, 1.4931641, 0.101623535, -0.8647461, 1.5654297, -1.4462891, -2.2128906, 0.20947266, -1.8671875, 2.859375, -3.1015625, -1.6191406, 0.79248047, -1.1689453, 2.2226562, -1.1650391, 0.8989258, -1.0019531, 1.4892578, -0.1348877, 0.1920166, 1.7158203, 0.8378906, -2.0449219, -0.1784668, 0.3713379, 0.875, -3.4082031, -1.8125, 1.4492188, -0.04156494, 1.7568359, -0.048309326, -2.375, 0.9145508, -0.43530273, -0.7426758, -0.29589844, -0.032165527, 3.5664062, 0.13317871, -1.4375, 0.9897461, -3.9238281, -0.8857422, 1.8886719, -1.2929688, -0.1673584, -0.4741211, -1.265625, -0.22729492, -0.40844727, 0.2298584, 2.4335938, -1.3720703, 0.7402344, -1.7402344, -0.25585938, 0.5722656, -2.2324219, 0.89453125, -0.80371094, -0.59716797, -0.9116211, -0.80810547, -0.33447266, -2.5898438, -3.1074219, -2.4394531, 0.5131836, 1.015625, -0.8979492, 0.87158203, -2.6269531, 1.0693359, 2.359375, -2.2128906, -2.3222656, -0.8227539, -1.3378906, 0.1640625, 2.3886719, 0.53027344, -0.5644531, 0.6640625, 3.078125, -1.6328125, 2.6113281, 0.059326172, 1.3300781, 0.008346558, -0.4658203, 1.40625, 1.140625, -1.0546875, 0.09161377, 0.19238281, 1.6962891, 2.3457031, -0.6723633, -1.4248047, -0.3010254, -1.6044922, -0.90185547, -0.84814453, -3.6113281, -0.7910156, -0.05331421, -0.089416504, 2.6191406, 2.4707031, -1.4755859, 0.19104004, 4.3828125, 0.73291016, 0.34472656, -0.03375244, 1.1650391, -0.08416748, -0.8720703, -1.6503906, 0.47143555, 0.07171631, -0.47265625, -1.4980469, 0.43237305, -0.21813965, -0.07489014, 2.2578125, 2.0800781, -2.6679688, -0.7397461, -0.828125, -0.98046875, -0.14624023, -1.9804688, 1.1875, 1.1875, -1.5361328, 1.3671875, -0.1697998, -0.7939453, -0.04724121, 2.7539062, 0.7973633, -0.7885742, -2.9238281, -0.08453369, -2.5664062, -0.52685547, 1.828125, 2.4550781, 4.375, 0.5996094, -0.42895508, 2.1816406, -0.39672852, -0.53466797, 2.0957031, -0.49902344, -1.4150391, -1.8056641, -0.8232422, 2.5800781, 0.23852539, 0.3918457, -2.0292969, -0.6328125, 1.7490234, -0.6513672, -0.96728516, 3.21875, 1.0615234, -0.3557129, 1.2275391, 2.796875, -3.3046875, -0.7036133, 1.9365234, -1.7939453, 1.1035156, -2.3203125, -1.2753906, -0.76953125, -1.2958984, -2.125, -0.49853516, 1.5732422, -0.5996094, 0.8017578, 0.08911133, 0.09063721, -0.42407227, -1.8935547, -0.72998047, 0.10723877, -2.0292969, -1.7392578, -2.0546875, -0.6357422, -1.5068359, 1.4912109, -0.9067383, 0.57421875, -1.9257812, 0.55810547, -0.41333008, -2.6894531, -2.359375, -1.8271484, -0.25097656, 1.7753906, 0.09063721, 0.89697266, 0.09832764, -3.4980469, 0.117614746, -0.61035156, -1.6464844, 2.1445312, -2.5429688, -0.36279297, 1.3583984, -0.67822266, 0.22875977, 0.5732422, 0.116760254, 1.4257812, -1.8056641, -2.0703125, 0.42797852, -1.2324219, 1.2333984, -1.328125, 0.043670654, -1.2949219, -0.7524414, -1.7880859, 0.52734375, 3.359375, -0.3815918, 0.609375, -0.9941406, -1.0478516, 1.6611328, 1.0058594, -2.2636719, -1.2177734, 0.30981445, -2.8457031, -1.015625, -2.1425781, -0.9086914, -0.9213867, -1.3564453, -0.5209961, 2.2382812, -0.39111328, 3.3632812, -3.9433594, 0.095214844, 0.2770996, 1.4707031, -0.61083984, 0.46484375, -0.6748047, -0.7133789, -1.4785156, -3.140625, -0.09350586, 1.6875, -0.69384766, 0.8881836, 0.6220703, -0.3774414, -0.05618286, 0.5493164, -0.9086914, 0.58154297, -1.7216797, -1.0859375, 0.23120117, 0.57177734, -1.6162109, -1.1982422, -0.65234375, 3.5175781, -0.02305603, 1.2646484, 1.9570312, -0.089782715, 3.5332031, 2.2460938, -0.27246094, -0.29589844, 1.0917969, -0.04272461, -0.080322266, -2.4199219, 2.8730469, 0.7583008, -1.2197266, 0.4584961, 0.3857422, 0.3239746, 1.3486328, 0.5620117, 0.93066406, -0.3334961, -0.03237915, 3.5214844, -0.09350586, -0.22045898, 0.4326172, 0.46777344, -0.14953613, 0.9995117, 2.78125, 2.6308594, 0.5410156, 0.53759766, 0.5263672, -0.21508789, -1.6611328, 0.1628418, 2.7324219, 1.1953125, -1.4521484, 1.6552734, -1.0400391, 0.5234375, 3.8828125, 0.1640625, 0.46240234, -1.3134766, 0.5371094, 1.2158203, 0.09716797, -1.3769531, -1.8232422, -1.1308594, -1.1240234, -2.5292969, 1.4941406, -2.8613281, -4.3085938, 0.7055664, -1.3769531, -3.6308594, 0.3869629, 3.1386719, -1.0751953, -1.3134766, 0.27783203, 2.8203125, -1.1259766, -1.1962891, -0.1430664, 1.1210938, 0.10620117, 0.86572266, 0.44360352, 0.061553955, 2.1640625, -2.6972656, 0.07434082, 1.5058594, -2.953125, -1.1875, -1.7744141, -0.45947266, -0.99658203, -0.515625, 1.3544922, 1.1464844, -0.82666016, 0.72998047, -1.5654297, 1.3720703, 0.671875, -0.8823242, -0.4267578, 0.35180664, 1.0957031, -0.16833496, -0.25170898, 4.5625, 1.3271484, -1.9394531, 1.4736328, -2.1484375, -0.6142578, -0.47509766, -1.8974609, 0.5332031, 0.69433594, -2.1347656, 3.609375, 0.5991211, 1.2246094, 4.7734375, -0.10144043, 0.76464844, 1.0478516, -2.2226562, -0.875, 0.5263672, 1.4394531, 3.3847656, 1.5019531, -0.80908203, -1.265625, -0.7080078, -1.4355469, 0.20446777, 0.59228516, -0.84033203, -1.1962891, -2.6835938, -0.52490234, 0.38012695, 0.076171875, 0.121520996, -0.9609375, -0.11102295, 0.6254883, 2.6308594, -1.6611328, 1.8632812, 1.0107422, -0.3857422, -0.7558594, 0.49169922, -0.6166992, 0.108947754, 4.1757812, -0.81933594, -1.6513672, -0.22302246, -0.93310547, 0.5571289, -0.33813477, -1.6904297, 0.6298828, -1.5830078, 0.10662842, -0.06427002, 1.4570312, 1.7734375, -1.0869141, 0.75683594, -0.59033203, -0.8330078, -1.5390625, -1.3486328, 0.38891602, -0.103515625, 0.8955078, -1.2246094, -1.7744141, 2.65625, -2.0996094, 0.99902344, -2.0292969, 2.1757812, 0.9003906, 0.20214844, 4.8945312, -2.6367188, 0.27514648, 0.52783203, -2.9375, -0.56103516, 0.037109375, -0.8354492, -1.6015625, 1.7041016, 2.7441406, 0.43579102, -1.9472656, -0.33618164, 0.5703125, -0.6147461, -2.8300781, 1.4980469, -1.265625, 0.009162903, 1.5117188, -0.83496094, 2.8710938, -0.73779297, 2.0664062, 3.2148438, 0.16491699, 0.3762207, 1.4746094, 0.8930664, -0.11584473, 0.5288086, 0.7319336, 1.3320312, -1.9228516, -0.39501953, 0.5917969, 2.0371094, -2.3105469, 0.76708984, 0.5732422, 1.7236328, -1.1904297, -0.8833008, 2.1855469, 1.3037109, -0.9868164, 1.6748047, 0.9116211, -2.1289062, 0.80615234, 0.9794922, -0.8154297, 1.1630859, -0.8730469, -0.49829102, 2.625, -1.3203125, -2.9492188, -1.5185547, 0.68359375, 0.6791992, -0.01423645, -1.3818359, 0.93847656, 2.453125, -2.1503906, -0.97509766, -1.3046875, -0.34033203, 0.3630371, -0.08123779, 1.4365234, -0.7470703, 0.38085938, 3.5527344, -0.7890625, -1.7041016, 1.7548828, -0.2590332, -0.63916016, 0.6020508, -0.22912598, -1.9951172, -1.8251953, -1.7070312, 0.7861328, 1.4414062, 0.11529541, 1.5205078, -2.5507812, 2.3828125, -2.421875, 2.6601562, -0.9169922, -0.6147461, 4.5625, -4.6914062, -1.6142578, -0.93603516, 0.75927734, 0.28076172, 0.9682617, 2.0273438, -0.59277344, -2.0957031, 0.006855011, -0.7583008, -2.4335938, -1.4423828, 0.5864258, 1.9501953, -0.6669922, -0.46972656, -1.2480469, 0.9291992, 0.8496094, 1.7304688, -0.03918457, 0.17077637, -0.86572266, -1.6503906, -1.2197266, 0.3581543, 0.93847656, 0.6254883, -0.7089844, 4.1484375, -0.89160156, -1.5605469, -1.2236328, -0.7861328, -3.109375, -1.0917969, 1.3271484, 0.18737793, -0.47094727, 0.796875, -0.037353516, 0.7949219, 3.3789062, -0.48999023, -0.6166992, 1.8857422, -0.4555664, -0.83496094, -0.36767578, -4.3320312, 0.6347656, -2.9375, 0.82666016, 0.54833984, -3.3710938, 1.3476562, 1.1894531, -2.7578125, -1.8349609, 0.31420898, 0.9160156, -0.38476562, 0.25561523, -0.23791504, 1.3681641, -2.2324219, -1.7333984, 0.27734375, -2.1269531, -1.3544922, -1.4296875, -0.25317383, 3.6796875, -1.0683594, 1.6796875, 1.1435547, 1.1640625, -0.4387207, 2.0195312, -0.8256836, -0.6430664, 0.49291992, -0.23999023, -0.72558594, -1.7148438, 0.89208984, 0.14611816, 0.77490234, 2.1035156, -0.859375, -2.5722656, -2.2421875, -0.7285156, 0.8305664, 2.5, 0.73046875, 0.95996094, -0.89746094, 0.38012695, -1.7597656, 2.1386719, 1.4511719, 2.2539062, -1.8535156, 3.8007812, -1.2753906, -4.2617188, 2.1933594, -0.49023438, -0.21435547, 1.1425781, -0.7792969, -0.5444336, -0.7373047, -1.3642578, -0.97265625, 1.6259766, -3.0175781, 1.9707031, -0.09527588, 0.38842773, -0.10015869, 2.2578125, 1.0400391, 3.5566406, 2.9785156, 0.7470703, -1.3964844, -0.5761719, -1.4248047, 0.7285156, 1.6455078, 0.36523438, 1.4033203, -0.296875, -1.2070312, -1.78125, 0.9501953, -0.054901123, 1.6220703, 1.6083984, 0.6489258, 3.71875, 2.1074219, 2.0429688, 0.56347656, 1.7783203, 1.34375, 0.8144531, 0.72802734, 3.890625, 1.7304688, 0.78759766, -1.9121094, 2.0976562, -0.21313477, 0.63427734, 1.4638672, 0.22436523, 0.3083496, -0.62402344, 1.421875, -0.23535156, -0.070251465, 0.8725586, 0.9316406, -2.5761719, -0.7089844, -0.19604492, 1.1523438, 3.4003906, 0.2607422, 0.90722656, 1.5576172, 1.4267578, 2.7734375, -4.015625, 0.21118164, 0.9394531, 1.0117188, -0.19604492, 2.9570312, 0.09100342, 0.63916016, 0.77490234, 1.4716797, 0.57128906, 0.2578125, 0.6035156, 0.45581055, 0.6269531, -0.13354492, 2.046875, -2.3691406, -1.5380859, -0.17333984, 0.27319336, -1.1806641, -2.2851562, 0.5175781, 1.2412109, 2.5800781, 0.546875, -5.1523438, 0.14331055, -0.47070312, 0.3852539, -2.4765625, 0.26123047, -1.5996094, -4.1953125, -1.9169922, 1.6289062, 1.0263672, 1.7363281, 0.5986328, -0.86035156, 1.7861328, 1.03125, 1.2109375, 0.16125488, 2.09375, -2.1191406, 1.2441406, 0.033111572, 4.3828125, 1.6796875, 1.7041016, 0.5761719, 1.640625, 1.5410156, 1.0351562, 2.4433594, 1.0302734, 0.06604004, 0.03829956, 1.7109375, 0.12536621, -0.14892578, -2.9140625, -1.8955078, -0.34887695, -1.1152344, -1.9179688, 0.87402344, 1.0117188, 1.7939453, 2.2285156, 0.8105469, -2.1699219, 3.1113281, 2.0390625, -0.31225586, -1.2519531, -0.8833008, -0.16931152, -0.4189453, -1.9345703, 1.9345703, 2.046875, 0.26391602, -0.93066406, 0.07171631, -1.1757812, -0.4362793, -0.34887695, 1.5234375, -2.9589844, -1.7109375, 1.6826172, 0.8671875, 0.105651855, 1.9414062, -0.85009766, 0.056243896, -0.25976562, -2.21875, -1.5869141, -2.0078125, -1.1845703, 1.3574219, 3.9140625, 1.3662109, -0.77197266, -0.41503906, -2.8828125, 0.5991211, -0.88427734, 2.6777344, -0.059020996, -0.07928467, 0.5019531, -0.59033203, 2.8359375, -1.0205078, -2.6875, -0.5708008, -2, 0.51220703, -0.09869385, 0.91259766, 1.0839844, 1.3388672, -0.546875, 4.2109375, 3.9375, -0.42382812, 1.3642578, 0.88720703, 0.60546875, -2.7089844, 0.7729492, 0.05999756, 1.3671875, 1.0830078, -0.47558594, -0.17773438, -0.09185791, -1.7617188, -1.1035156, -0.6035156]}, "B07T6F3CWS": {"id": "B07T6F3CWS", "original": "Brand: GASPRO\nName: GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot\nDescription: Product description\uff1a
          Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
          Taking the regulator hose end connect to your 3/8\u2019\u2019 male flare connector propane appliance.
          Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8\"male flare connector
          0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
          This is an essential part of converting your fire pit/table to a larger flame

          Specification:
          Certificate : CSA
          Gas Type : LP/LPG
          Regulator Type : High Pressure
          Outlet Pressure : 0-20 PSIG
          Inlet Pressure \uff1a25-250 PSI
          Flow Capacity : 120000 BTU/Hr
          Hose Length : 8 feet/ 96 inch
          End Connector : 3/8\" flare swivel nut; Hose connection: 5/8\"-18UNF

          NOTE:
          1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
          2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
          3.Not suitable for appliances which need low pressure regulator

          Warning:
          Only for OUTDOOR Use.\nFeatures: \u3010Adjustable\u3011 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs\n\u3010Durable and Chew-proof\u3011 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose\n\u3010Perfect Fit\u3011 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more\n\u30108ft Length\u3011 Gives you adequate length for appliance and tank placement\n\u3010Brass Connector\u3011 QCC-1 Fitting (Acme Nut) x 3/8\u2033 Female Flare\n", "embedding": [-0.18041992, 2.8085938, 0.72265625, -0.11352539, -1.3554688, 0.07489014, 1.7539062, -1.4042969, 0.41552734, -0.25708008, 0.9477539, 0.18786621, 1.9287109, -1.8300781, 2.6367188, 0.8413086, 0.6484375, 0.061676025, 1.2167969, 3.5332031, 1.3525391, 0.80029297, 2.6816406, -0.30200195, 1.5986328, -0.4267578, 2.3847656, -2.4785156, -0.2927246, -1.5595703, 2.0410156, 1.3857422, -0.47094727, -0.26635742, -2.2851562, -0.68652344, -0.14257812, 0.9609375, -3.1679688, -1.1308594, -0.48828125, 0.18884277, 1.9257812, -0.97021484, -2.5039062, 1.5400391, 0.91503906, 0.3491211, -0.6113281, 0.9477539, 1.3398438, -1.0478516, -0.13452148, 0.1940918, -0.19262695, 0.3010254, 0.38012695, -1.5117188, 1.7792969, 1.7431641, 2.8164062, 1.1386719, -1.7304688, 0.23425293, -1.3671875, 0.13256836, 0.5419922, -0.15625, 0.8833008, 0.6479492, 1.4960938, 0.9223633, 1.1455078, -0.2368164, -0.34643555, 0.95410156, -2.5449219, -0.2836914, 4.078125, 0.9086914, -1.6074219, 0.8613281, 1.2011719, -2.3066406, 1.7070312, -0.6748047, -1.8398438, 0.83447266, 3.2988281, 0.5527344, -1.6591797, 2.9121094, -3.6367188, -3.7871094, 1.8505859, 2.1894531, 1.7353516, 0.63720703, 1.6357422, 0.14697266, -1.5771484, -0.9926758, -0.041229248, 0.7763672, -2.0898438, -0.53125, -0.43676758, 2.4316406, -3.1054688, 0.6347656, 0.3869629, 0.9790039, 2.46875, -2.1367188, 1.8515625, -2.8886719, -1.2529297, -1.2167969, 2.6269531, 1.6337891, 2.3535156, 0.11480713, -1.5234375, 0.3713379, 0.5004883, 0.42993164, -0.6586914, 0.08270264, 3.7089844, -1.6611328, 0.42626953, -3.9882812, 2.1835938, 0.4116211, 1.2851562, -2.9160156, -0.75390625, -2.3554688, -2.4667969, -0.4489746, -3.9257812, 0.74365234, 1.2060547, -0.42919922, -1.6757812, 1.0107422, -2.0234375, 0.9770508, 2.8359375, -1.8154297, 2.6679688, -1.4746094, -0.1060791, -1.0078125, 1.5566406, 1.0742188, 0.52685547, -1.1025391, 1.5175781, 1.5615234, 1.2617188, -2.0585938, -1.5644531, 1.9482422, -1.2177734, -2.2792969, 0.5229492, -0.06542969, -1.1318359, 1.5292969, -0.19238281, -1.9921875, -0.1697998, 0.53027344, -0.76171875, -1.7861328, 1.0273438, 2.3730469, 2.2597656, 1.1953125, -3.8730469, -2.6308594, -0.3017578, -0.55908203, 1.0224609, 0.17089844, -1.9453125, 0.18652344, 1.6992188, -1.5703125, -1.2734375, -0.034118652, 0.3022461, 1.3232422, -0.10357666, -2.328125, -3.3652344, -1.1240234, -1.5888672, 0.8251953, -2.4921875, -1.0839844, 0.49951172, -0.101501465, -1.8095703, -0.6333008, 0.6713867, -0.9477539, 0.79541016, 2.2832031, -0.9760742, -2.171875, 1.0380859, -0.40307617, 0.13024902, -2.5410156, 2.1015625, 1.9462891, 0.4482422, 0.74560547, -0.9946289, -0.26708984, 1.0263672, 1.5791016, 2.6132812, 1.03125, -1.5898438, 2.0214844, -1.6064453, -1.2412109, 3.2929688, 0.72753906, -0.6269531, -1.3378906, -0.7495117, 1.9296875, -0.9838867, 0.41601562, 0.828125, 1.40625, -0.062927246, -0.8828125, -1.5136719, -0.17126465, 0.005050659, 0.5986328, -1.984375, 1.2333984, 1.5087891, -0.4963379, 1.0654297, 0.45996094, -0.111450195, -1.6708984, -0.73828125, 0.17211914, 0.59033203, 2.9199219, -0.359375, -1.6318359, 1.1611328, 1.4257812, 0.064331055, 3.3984375, 0.26708984, 0.8881836, 1.9189453, -1.6835938, -0.46557617, 0.2548828, -0.49047852, 2.3867188, 2.6464844, -0.5913086, 0.74853516, 0.091430664, -3.2363281, 1.0947266, 0.57421875, 0.9067383, -0.22045898, -0.35791016, 2.3300781, -2.8125, 2.875, 1.8730469, 2.1679688, -0.1619873, -1.7910156, 0.55810547, 5.6953125, -0.15319824, -2.9511719, 0.90771484, 1.4960938, 0.32641602, 0.5605469, 1.9550781, 0.45996094, -0.28125, 0.53515625, 0.4868164, -1.1767578, -0.032043457, 2.1328125, -0.5810547, -0.24072266, -0.5307617, -0.6723633, 1.7988281, -1.46875, -0.48291016, -1.9121094, 1.4804688, -2.6269531, -2.15625, 0.6513672, -1.2626953, -0.40283203, 0.7138672, 1.8046875, 1.8212891, 0.59814453, -1.40625, 0.06616211, 1.5996094, -1.4160156, 1.6357422, 1.40625, -1.6230469, -0.9814453, -1.7255859, -0.94433594, -1.6201172, -2.9082031, 2.4042969, -2.3652344, -2.3105469, 0.18164062, -1.7148438, -3.3476562, -0.4453125, 0.12243652, 2.1660156, 0.7133789, -0.5292969, -1.2529297, -0.08459473, -0.31689453, -0.0017166138, 0.4819336, 2.3417969, -1.3798828, -2.59375, 0.18151855, 0.28930664, -0.5419922, -0.45166016, -2.4140625, 0.78222656, 0.42236328, 0.45776367, -0.047790527, 0.21179199, 1.734375, -3.3125, 1.7460938, -2.75, -1.3886719, -0.07873535, 2.25, -0.9067383, 1.1035156, -1.8730469, -0.8120117, 0.47509766, -2.5429688, 0.69970703, -1.7509766, 2.8398438, -2.5292969, 0.6191406, 1.1005859, -0.9038086, -2.9160156, 0.24536133, -0.18823242, -0.6386719, -1.0898438, -2.8417969, 0.37182617, 0.15966797, 0.42041016, 0.22973633, -1.4765625, -1.4208984, 0.7866211, 0.6098633, -2.3476562, -0.06161499, 0.64453125, 0.23986816, -0.82910156, 0.7895508, 0.26123047, -2.0507812, -1.2441406, 0.47753906, 1.4902344, -0.19189453, 0.45532227, 1.3320312, 1.2246094, 0.3137207, -2.6425781, -3.0722656, 1.0683594, 2.9277344, -2.859375, 1.2324219, -1.1953125, -0.5463867, -2.1367188, -2.4003906, 1.7373047, 2.0683594, 3.1777344, 0.5263672, 0.15466309, 0.095581055, 1.5205078, -1.1132812, -2.9199219, 1.2919922, 4.5625, -2.6796875, -0.85253906, -0.80566406, 1.90625, -3.1464844, -0.4189453, 1.6689453, 0.31445312, 2.5878906, 0.9428711, 2.8046875, -0.23986816, -0.3227539, 0.76953125, 0.28076172, -0.2536621, -0.014923096, -0.27954102, 0.8676758, -0.66259766, 2.0234375, 2.1503906, 0.5415039, 2.0234375, 0.7607422, 0.45776367, -0.9082031, 0.5961914, 0.3461914, 0.4711914, 0.6279297, 0.46777344, 0.6274414, -0.5917969, -0.7988281, -0.048461914, 1.59375, -2.0546875, 0.1977539, 0.7133789, 0.86328125, -0.8286133, -0.074645996, -0.6557617, -0.59375, -2.0761719, -0.4362793, 1.2919922, 1.8789062, 2.7539062, -0.59521484, 1.7119141, -1.6259766, 1.3085938, -0.30273438, 0.87158203, -0.35864258, 0.2980957, -2.2304688, -1.0830078, -0.3503418, -2.5332031, -1.8310547, 3.5097656, 2.0058594, -1.4414062, 1.1767578, -1.109375, 1.3720703, 1.3974609, -1.9814453, -0.28320312, 0.036376953, 0.33081055, -0.4736328, -0.671875, 1.8300781, -0.0209198, -3.6484375, -0.2854004, -1.8212891, 1.4199219, 0.86035156, 1.2617188, -3.4746094, 0.8955078, -0.14001465, 1.3642578, -0.14355469, 3.1191406, -0.25561523, -0.6123047, 2.5957031, -3.9453125, -2.1328125, -1.8837891, -5.2226562, -0.30541992, -1.9892578, 1.3164062, 2.8417969, -0.22045898, 0.8691406, 1.8925781, 2.1035156, -3.2363281, -0.703125, -0.27416992, 1.8066406, -2.7578125, -0.6245117, 2.9726562, 0.47998047, -0.054107666, -0.9711914, -1.3974609, -2.6894531, -1.3408203, 1.46875, -1.9951172, -0.3803711, -1.90625, -0.1508789, -0.99072266, -2.2421875, 1.7695312, -1.3251953, -1.0751953, -2.8769531, 2.2382812, -0.2442627, -0.036590576, -1.0849609, 3.4140625, 2.390625, -0.036621094, -0.33642578, 0.51171875, 2.4492188, 0.8125, -1.2802734, 0.39990234, 0.49682617, 0.37451172, 0.18054199, -0.83935547, -0.57177734, -0.95458984, 1.3251953, 2.2695312, 0.52490234, 1.2685547, 1.3125, -2.0175781, 0.85058594, -0.30664062, 0.2529297, 0.32739258, -0.1217041, -0.97216797, -3.0097656, 0.13671875, -1.7324219, -1.5908203, -0.46069336, 0.118652344, -2.1132812, 3.8730469, -0.03540039, -1.1865234, 1.2128906, -2.1757812, -1.4238281, -1.7714844, 0.8544922, -1.7460938, -0.8432617, -1.1503906, 0.5629883, 2.5761719, 0.95458984, -0.36914062, -0.9272461, 0.63916016, -3.6171875, 0.15734863, -0.09295654, 1.5644531, -0.23474121, 0.1821289, 1.8886719, -1.6376953, 3.6347656, 0.63427734, 0.28222656, 0.34594727, -1.3740234, -2.2890625, 0.94970703, 2.8535156, 1.1875, 0.921875, 1.1806641, 1.1425781, 2.7578125, 1.4658203, 0.21264648, 1.0917969, -0.82470703, 2.5273438, -1.5742188, 0.9633789, -1.6699219, 0.3696289, 0.31445312, 2.0117188, 2.7109375, 3.5488281, 1.0644531, -1.4736328, 1.2666016, 1.359375, -0.63720703, -1.1787109, 0.06286621, -1.8984375, 2.1445312, 0.19812012, -2.3554688, -0.09338379, 2.3359375, -0.91796875, 1.8818359, 0.17443848, -0.73876953, 0.14453125, -0.8432617, -1.0205078, -0.047302246, -0.4560547, 0.82470703, -1.8896484, 0.7167969, -0.11138916, 0.7661133, 1.0703125, 0.23999023, -0.94384766, -0.2788086, -1.5996094, 0.44311523, -2.0390625, -1.0585938, -2.9003906, 0.24353027, 2.9179688, 1.4199219, -0.13989258, -0.69970703, 0.086242676, -1.6962891, -1.1777344, 0.11444092, 1.6708984, 0.2824707, 0.43286133, 1.5126953, -1.0019531, 0.039031982, -1.5830078, -1.6835938, -1.3564453, 2.9921875, 2.578125, 1.7607422, -1.0009766, -1.0410156, -2.265625, -5.2734375, -0.6621094, 2.9042969, 0.0124053955, -0.14941406, -3.0859375, -0.33813477, 1.3857422, -1.0957031, 0.8173828, -2.7265625, 0.50927734, -0.8691406, -0.6801758, -1.7675781, 0.023132324, -0.24816895, -0.3010254, -1.2802734, -0.10247803, -0.059448242, -2.5703125, -3.109375, 2.0136719, -2.8710938, -1.7177734, 1.6767578, -1.6425781, -1.5908203, 1.8691406, 1.0400391, -3.0976562, 1.1572266, -3.5097656, 0.6879883, -0.3244629, -1.9189453, 2.6542969, 1.8505859, -0.6660156, 1.4189453, 2.046875, 1.2734375, -1.3505859, -0.63964844, 0.24938965, 0.08728027, -1.2265625, -3.0722656, -1.1142578, 0.2626953, 1.5683594, 1.8779297, -1.6679688, -1.390625, -1.1386719, -4.2929688, -0.4453125, -0.6669922, -1.078125, 0.07244873, 1.4267578, 2.6152344, -1.359375, 1.1376953, 1.2529297, -0.5908203, -0.5576172, 1.7265625, -0.70654297, 2.0878906, 1.3476562, -0.5830078, -3.0273438, -1.7138672, 3.3222656, 3.1738281, -0.8286133, 0.7397461, 0.27148438, -0.7290039, 0.21594238, -1.1259766, 1.1132812, 1.8730469, -0.15258789, -1.3544922, -0.4753418, 1.9746094, -1.5087891, 1.4462891, 0.7011719, -0.46313477, -2.1289062, 3.3242188, 1.8369141, -3.3398438, 0.7841797, -1.7666016, 1.7841797, -0.3894043, -2.2792969, -0.08850098, -3.1191406, -0.06329346, 0.7519531, -2.2949219, -1.8769531, 2.1445312, -0.20825195, -0.3803711, 1.015625, 3.3886719, 0.73876953, -0.26879883, 1.1054688, 1.1914062, -0.5473633, 0.1538086, -2.890625, -1.0556641, 1.4326172, -2.6914062, -0.3701172, 2.328125, 0.83251953, -1.8046875, 1.0195312, 1.7802734, 2.9707031, 0.25146484, 2.6835938, 2.9199219, 0.52246094, 2.2871094, 0.8149414, 2.1582031, 2.6542969, 0.25952148, 0.34643555, 2.625, -1.0800781, 1.1982422, -0.36694336, -0.14868164, -0.21520996, -1.5078125, 0.3955078, 1.1132812, 1.7226562, -3.0898438, -0.5932617, -1.2294922, -0.6376953, -3.0117188, 0.18066406, -0.24365234, 0.7988281, 0.46289062, -0.60253906, 1.8212891, 1.9902344, -1.7167969, -0.44628906, 0.27416992, 3.2128906, -1.7167969, 0.16479492, -0.76708984, -3.8847656, 1.5439453, 3.6015625, 0.67089844, 0.18249512, 1.1689453, -0.21557617, -0.74121094, 1.9287109, 2.3378906, -2.9042969, -0.13586426, -1.1367188, 2.5722656, 0.98046875, -1.7607422, 2.8242188, 0.23120117, -2.3828125, -3.1191406, 2.3652344, -0.62841797, -0.40356445, -0.37231445, -4.7851562, 2.9492188, -1.8544922, 0.8774414, -1.5927734, 0.08276367, -0.29882812, -0.7919922, 0.7885742, -0.13830566, -1.6308594, 3.3476562, 0.80029297, -1.9677734, 0.2421875, 2.0625, 2.2871094, 0.7988281, -0.40576172, 0.6411133, 0.38208008, -0.22143555, 2.8476562, -0.41259766, -2.3554688, 0.055389404, 3.2070312, 1.0078125, 0.87646484, -1.1933594, 1.2792969, 0.14233398, 0.5073242, -0.47973633, -0.8203125, -0.95947266, -1.0205078, -0.13146973, -0.37304688, -1.4316406, -0.9082031, 0.7236328, 0.64160156, -1.2138672, 0.5527344, 1.3251953, -0.76904297, 1.8417969, 1.7734375, -0.6376953, -1.5830078, -1.3837891, 0.12097168, -2.0507812, -1.4072266, 0.5527344, -1.0673828, -0.18225098, -1.5761719, -0.11834717, 0.28173828, -0.0032348633, -0.031799316, -0.20300293, -1.0205078, -1.2832031, -0.26953125, -1.4443359, 1.0917969, 2.9140625, -0.68115234, 3.0039062, -0.2746582, -1.5605469, -0.064819336, -1.9228516, -1.3037109, 0.51220703, 1.84375, -0.04321289, 1.4619141, -1.0214844, -2.1582031, -0.10772705, -1.6699219, 2.7753906, -0.7734375, -1.3066406, 0.59521484, -0.39501953, 3.1992188, -0.07281494, 0.58984375, 0.47998047, -0.9819336, 1.4814453, -1.9150391, 0.78808594, -1.3564453, 0.05999756, -0.08526611, 3.6601562, 2.0390625, -1.5585938, 0.6616211, 1.7539062, 0.36279297, -1.9375, 0.21972656, -0.9501953, -1.3066406, 0.32348633, 1.8789062, 1.5478516, 0.74072266, -1.0917969, 0.20251465, -0.03765869]}, "B07QBZN1HS": {"id": "B07QBZN1HS", "original": "Brand: Unicook\nName: Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe\nDescription: Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

          Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

          Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won't wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0\u00b0F, ensure superior performance and long-lasting.

          Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
          1. Constructed with new generation rip & fade resistant fabric and vinyl coating
          2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
          3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
          4. Fastening straps at bottom keep your bbq cover securely in place

          Care and Use:
          1. Allow grill to cool before covering
          2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
          3. Air Dry for next use.

          Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the \"Visit the Unicook Store\" button to get the proper cover you need.\nFeatures: \u3010Grill Cover Dimension\u3011- 60 inch grill cover measures 60\"W x 23\"D x 42\"H, fits most brands of grill with width between 54\" and 58\". \ufe61Measure your grill before purchasing to determine the proper cover.\n\u3010Fade Resistant\u3011- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection.\n\u3010No Water Leaking\u3011- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams.\n\u3010Handles and Straps\u3011- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days.\n\u3010Wide Selection\u3011 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "embedding": [-1.7060547, 1.6679688, 3.0097656, -1.4541016, 0.9614258, -0.066345215, -0.13110352, -2.0839844, 1.9941406, 1.3916016, -0.6328125, -2.0195312, -0.17736816, -3.734375, 0.2154541, -0.15478516, 0.14294434, 2.0761719, 3.265625, -1.1396484, 2.0429688, 0.46728516, 2.5, 0.01802063, 0.7270508, 0.8354492, 4.1796875, -3.6386719, -1.4267578, -0.13708496, 1.9736328, -0.15490723, 1.0722656, 1.3105469, -1.8144531, -2.046875, -0.9057617, 1.2304688, 0.39404297, -0.107910156, -0.20739746, -1.4785156, 0.8227539, 1.1855469, -2.1132812, 0.50390625, -1.4541016, 0.9008789, -1.7392578, -2.609375, 1.3623047, 1.5859375, 0.80078125, 0.7182617, -1.8964844, 4.0546875, 0.57666016, -1.4287109, -0.71435547, 0.11828613, 0.37719727, -1.6386719, -1.8105469, 1.2167969, -2.6757812, -0.9355469, -0.30029297, -0.91845703, 1.2832031, 0.0034503937, 2.0078125, 0.3166504, -1.9121094, 1.1533203, 1.8427734, -0.50097656, -1.7568359, -0.21350098, 0.85302734, -0.8276367, 0.14794922, 4.9921875, 0.6948242, -3.4277344, 0.765625, 1.0517578, -2.2285156, -2.5859375, 2.8671875, 0.9584961, 0.30566406, 1.5263672, -1.9423828, -3.9121094, -0.21032715, -2.4023438, 1.7373047, 1.2099609, 0.36279297, 0.0073242188, -0.9086914, 0.1348877, -2.3984375, -0.36572266, -2.8027344, -1.7773438, 1.6748047, -1.9570312, -2.1679688, -0.13513184, -0.10748291, -1.2929688, -0.9526367, 0.44262695, 2.7871094, 0.18408203, -0.65185547, 1.6152344, -0.80810547, 1.0537109, 2.9804688, -0.27246094, -0.8540039, -0.69677734, -0.20117188, -1.4306641, -0.9716797, 0.11529541, 4.7539062, -1.1123047, 1.1376953, 0.49682617, 1.2451172, 1.0126953, -1.921875, 0.8173828, -2.3808594, -0.9555664, -2.4785156, 2.8476562, -1.9775391, -2.1660156, 1.5976562, -1.0195312, -4.1289062, 0.06762695, -0.12634277, 3.3710938, -0.70410156, -1.7958984, 1.4521484, -2.5722656, -0.48095703, -1.7636719, 0.7524414, -1.7919922, 0.21496582, -3.8964844, 2.9609375, 3.1777344, 2.75, -2.6855469, 1.3730469, 1.3994141, 2.6269531, -1.2207031, -1.1064453, 0.37280273, -0.28710938, 1.3271484, -0.41015625, -0.20678711, 0.87353516, 1.6181641, 0.91796875, -0.7128906, 0.20983887, 2.2207031, -0.13769531, -0.33764648, 0.030380249, -0.8774414, -0.40405273, 2.671875, -2.7695312, -1.1103516, -0.33691406, -0.2746582, 0.41723633, -0.8203125, 0.3215332, 0.111328125, -1.2705078, 0.7060547, -1.6972656, -0.23876953, -1.5419922, -0.8701172, -0.5332031, -0.17907715, -0.671875, -2.7285156, -0.36645508, -0.31298828, -2.8945312, -2.9863281, -2.5722656, -0.6166992, 0.97998047, 0.45874023, 1.8085938, -1.4902344, 1.4775391, 2.8769531, -2.2773438, -0.05203247, 1.7675781, -0.6694336, 0.8847656, 1.2255859, -1.0185547, -1.6933594, 0.46655273, 3.2148438, 0.08905029, 3.2792969, 1.2138672, -0.1463623, -1.4785156, -1.7773438, 0.55908203, 0.24279785, 0.5727539, 0.78808594, -0.2770996, 0.7714844, 1.2197266, -2.6152344, -0.7890625, 0.3486328, -2.2753906, -2.34375, -2.5195312, -1.4697266, 0.6142578, 0.85058594, -1.4648438, 1.7119141, 0.8666992, -0.9272461, -2.1347656, 1.0566406, 0.5541992, -0.23486328, -0.28833008, 0.53271484, -0.5185547, -0.0869751, -1.5634766, -1.6728516, 0.63623047, 0.53222656, 0.048187256, 0.9975586, -0.40527344, -0.9526367, 0.9140625, 1.7089844, -2.7636719, -2.328125, 2.1953125, -0.28710938, -0.5761719, -1.7587891, 0.67529297, 0.57421875, 0.45947266, 0.6542969, 0.3034668, 1.1757812, -0.14367676, 1.6416016, 1.7724609, -2.6210938, 0.7866211, -1.8125, -1.4306641, -0.96777344, -0.17236328, 1.0058594, 3.046875, -0.50146484, -2.4570312, 3.3339844, -0.19702148, -0.5209961, 1.7441406, -0.36743164, -1.4443359, 0.66796875, 0.23718262, 0.96972656, -0.51953125, 1.6484375, -2.2597656, -0.72998047, 1.5537109, -2.03125, -0.4638672, 1.7001953, 0.4140625, 1.3261719, -0.6772461, 1.1318359, -1.5869141, -1.9541016, 1.9716797, -1.7910156, 0.38085938, 0.45385742, 1.1259766, -0.041870117, -2.4492188, -1.9912109, -0.73291016, 0.6772461, -1.1337891, -0.61035156, -0.009727478, -0.74902344, -0.23132324, -1.3554688, 1.2548828, -1.3466797, -0.27026367, -2.7128906, -3.7460938, -1.5917969, -0.28588867, -1.6035156, 1.4013672, -0.7944336, -2.9101562, 1.0722656, 0.6269531, -4.6289062, -0.35131836, 0.63134766, -0.8417969, 1.1962891, -0.24645996, -0.38012695, 0.9296875, -5.3671875, 2.453125, -1.3447266, -0.5917969, -0.6435547, -2.1757812, 0.89208984, 0.3569336, -0.43115234, 0.74609375, 1.8212891, 1.7128906, -0.14318848, 0.06781006, -3.1015625, 1.2519531, -3.3320312, 0.010421753, -1.0927734, 1.5732422, -4.5078125, -1.6044922, 1.1835938, -1.3505859, 2.53125, 1.2539062, 1.5097656, -0.79052734, -1.0966797, 0.5336914, -0.071899414, -0.9301758, 0.037506104, -0.7050781, -0.92626953, -0.010520935, -3.4863281, -2.3945312, -2.1660156, -0.5605469, 0.38671875, -0.20581055, -1.4628906, 2.5117188, -3.5761719, -1.6230469, -0.13769531, 0.3737793, -0.33081055, -1.5947266, -0.15307617, -3.2441406, -2.5234375, -0.76953125, -2.0175781, 3.4921875, -2.3027344, 0.117492676, 2.5351562, -1.4179688, 3.3007812, -1.6787109, -2.8105469, 1.1425781, 0.13635254, 0.6796875, 2.0546875, -0.58740234, 0.21594238, -0.4946289, 0.96972656, 2.2695312, 0.12042236, 0.31811523, 2.3164062, 2.0820312, 1.4121094, -1.5185547, 2.1972656, 0.5703125, 2.25, 2.3828125, -0.0635376, -1.0185547, 0.7158203, 0.55371094, -1.15625, 0.5019531, 0.41088867, 0.47314453, 0.29956055, 1.7792969, -0.8305664, 1.5859375, -0.734375, 1.9140625, -1.8310547, 1.5273438, 2.0820312, 0.390625, -0.30004883, -1.4882812, 1.8115234, 2.9511719, 0.9423828, 1.2285156, 2.0976562, -0.101989746, 0.2368164, -1.0810547, 1.3007812, 1.2265625, -0.048919678, 2.3183594, -1.4335938, -0.077697754, 0.73779297, -2.1503906, 1.5205078, -1.8457031, 1.1513672, 2.2714844, -1.7832031, 0.98046875, -0.3166504, 0.64941406, 0.33642578, -1.2041016, -0.52441406, -1.0527344, -1.625, 0.5839844, -3.7851562, -2.3789062, -2.4277344, 3.7753906, 0.033325195, -2.0820312, 0.41796875, 1.6835938, -2.0839844, -1.4560547, 1.0576172, 2.4101562, -0.8051758, 2.5957031, 1.5605469, -2.3652344, 2.078125, -2.8730469, 1.7480469, 0.5253906, -0.43066406, 0.17077637, 0.40234375, -0.59033203, -2.28125, 1.8974609, 1.65625, 1.9814453, -0.69384766, 1.6455078, -2.0449219, 1.1953125, 2.2988281, -0.56933594, -1.2851562, 1.7646484, 0.6303711, 1.3349609, 1.0585938, 2.2226562, -0.6191406, -0.007926941, 1.7998047, -2.7539062, -0.033416748, 0.5854492, -4.3242188, -0.9008789, -1.0253906, -0.93066406, 3.7421875, -0.93115234, 0.9355469, 2.265625, -1.4667969, 0.8701172, 0.049316406, -3.828125, -1.7734375, 0.0869751, -0.50683594, 2.3554688, 0.13146973, -1.8652344, -2.0214844, -2.3945312, -1.0966797, 0.40161133, 1.7978516, -1.4912109, -0.45947266, -2.4550781, 0.088256836, -2.0957031, 1.6142578, 2.3710938, 0.36669922, -0.25195312, -0.10168457, 1.2607422, -1.6826172, 1.3847656, 0.61621094, 1.4228516, -1.9228516, -1.4570312, 0.11602783, -1.1210938, 2.2929688, -0.7783203, -2.4980469, -0.8251953, 1.2978516, 2.0800781, -0.20141602, -0.31152344, -1.3222656, -0.90966797, 1.0253906, 0.42333984, 3.0605469, 2.1796875, -0.072631836, -1.8300781, 0.113342285, -1.7919922, -1.2783203, -1.4628906, 0.60595703, -0.19616699, 0.4597168, -1.5820312, -2.3515625, 0.61816406, 0.15722656, 0.3154297, -0.25341797, 3.2207031, 0.8569336, 0.84277344, 2.6523438, -1.7705078, 0.6352539, 1.6435547, -0.7944336, -0.20324707, 0.5625, -0.9501953, -0.6088867, 1.2529297, -1.6367188, -2.0195312, 0.001868248, -1.1552734, 1.1425781, -0.039215088, -4.296875, 2.4316406, 0.55322266, 0.7963867, 0.87841797, -3.0664062, 3.1738281, -1.6669922, -0.8154297, 2.0332031, -0.6113281, -1.9375, 1.6269531, 0.9433594, -0.9008789, -0.7397461, 0.10559082, -1.3427734, 0.58496094, 0.12805176, -1.8183594, 1.4492188, -1.3837891, -1.1728516, 1.6845703, 1.71875, -1.5908203, -0.16992188, 2.6777344, 2.1289062, -0.7734375, 1.765625, 1.7851562, -1.7285156, 0.7553711, 1.6308594, -1.578125, 0.8935547, 0.0770874, -0.40039062, 1.2041016, -0.90966797, -1.953125, 0.25927734, 1.7382812, -1.265625, 1.6523438, -1.5693359, -2.296875, 1.0507812, -2.8671875, -0.8486328, -1.0292969, 0.083862305, -1.5224609, -0.39331055, 1.0527344, -0.38793945, 1.0351562, 3.1484375, -2.0449219, -2.1992188, -0.52197266, 0.71533203, -1.53125, -1.3681641, -1.9804688, -3.3046875, -0.8959961, 1.9326172, 2.5800781, 2.1699219, -0.036987305, 2.0546875, -3.0507812, 1.4453125, -1.4042969, 3.3417969, -0.6875, -0.066833496, 2.3574219, -4.2460938, -3.125, -1.9042969, 1.2070312, 1.5205078, 2.3066406, 1.9140625, -0.5620117, 0.94384766, 0.08380127, -3.1992188, -1.4267578, -0.36523438, 0.27294922, -0.6611328, 1.7402344, 0.099243164, 1.9052734, 0.55566406, -1.6210938, -0.016433716, -0.81152344, -0.5083008, -1.5888672, -2.7539062, -0.050231934, -0.79589844, -1.8642578, 0.23291016, -0.40722656, 0.5341797, -0.052825928, -3.8183594, 2.1855469, 0.33642578, -2.46875, -0.6503906, 4.1679688, 1.4111328, 1.6328125, -0.5551758, -0.18896484, 1.0449219, 2.6757812, -2.515625, -0.9291992, 2.234375, -1.3261719, 1.3271484, -1.2246094, -1.1630859, 1.9912109, -2.2148438, 1.2841797, 0.89697266, 0.5864258, 3.9296875, 1.5654297, -0.6767578, -0.02267456, 0.6328125, 0.7944336, 1.7470703, 0.21313477, -1.3115234, 0.8730469, -1.0732422, -1.8173828, 1.6435547, -1.421875, -1.734375, -2.0332031, -0.20056152, 1.2929688, 2.6542969, 0.98046875, 0.6557617, 1.6484375, -1.7207031, 0.074157715, 0.32348633, 3.3535156, 1.5625, -2.9375, -0.9477539, -1.1640625, 1.6972656, 2.2832031, -0.4362793, -1.1337891, -0.39453125, 0.9379883, 1.0058594, 0.2692871, 3.3476562, 0.40698242, 1.8837891, 1.2050781, 0.80371094, 2.9472656, 0.18395996, 1.8779297, -0.07385254, 0.6411133, -0.85498047, 1.3105469, -0.038726807, -1.4746094, -0.11505127, -0.2602539, 0.4633789, 0.6069336, -2.1230469, -2.2871094, -0.51220703, -0.7680664, -2.5449219, 0.17443848, -4.2617188, 0.23486328, 0.7963867, -1.0605469, 0.00043964386, -0.054504395, 0.5395508, 2.8320312, 2.2226562, 1.8154297, -1.3671875, -1.5380859, -0.050933838, 0.32055664, 0.8979492, -1.0117188, 0.20617676, -1.5498047, 0.095458984, -0.9716797, 2.1875, 0.50390625, 0.35302734, -0.008850098, 2.3710938, 2.0839844, 1.3457031, 2.2304688, 0.9995117, 1.7177734, 0.62890625, -2.375, -0.5493164, 3.0019531, 3.0996094, 2.7382812, -0.1673584, 1.1201172, 0.6616211, -0.62939453, 0.30078125, 0.55615234, 2.6269531, -2.3476562, 1.0117188, 1.6865234, 0.6948242, 0.36010742, 1.3671875, -0.7236328, -0.49414062, 1.1835938, 0.67871094, 2.7988281, -0.84277344, 2.6757812, 0.08691406, 1.0507812, 2.2832031, -4.2695312, 1.5585938, 1.09375, -3.2539062, -1.4873047, 1.8789062, 1.9287109, 1.3173828, -0.8227539, 1.3681641, 1.5195312, 3.0625, 2.7011719, -1.5400391, 0.6352539, 0.5288086, 1.5390625, 0.11895752, -1.0078125, -1.8222656, -0.35424805, -3.015625, -2.0878906, 1.5849609, 1.9082031, 2.203125, 1.6298828, -4.0429688, 2.5058594, 1.2578125, 2.953125, 0.0848999, 1.2353516, -2.2539062, -2.8691406, 0.7241211, 0.83935547, -1.6523438, 0.32470703, 0.2163086, -0.47338867, 2.5722656, 0.984375, 1.1357422, 1.7089844, 2.7441406, 0.42651367, 1.1660156, 0.40649414, 2.3164062, 1.75, -0.36889648, -1.6484375, 1.0732422, 0.18273926, 0.09869385, 2.3730469, -1.1455078, 1.4003906, 2.5371094, 0.12310791, 1.2744141, -0.3852539, 1.1962891, 0.21704102, 0.3305664, -0.7919922, 0.3515625, 2.3398438, 0.9760742, 0.32421875, 1.0175781, -1.6582031, -0.8017578, 2.0820312, 0.117004395, -0.40356445, -1.6025391, -0.23327637, 0.7338867, -0.31518555, -1.5634766, -1.3173828, 0.9555664, -0.7363281, -1.3876953, 0.23962402, 0.40942383, 0.39111328, -0.5004883, 1.1044922, -1.7705078, -1.0332031, -0.54833984, -1.0556641, 0.5102539, 2.0078125, 2.5996094, -2.3554688, -1.1152344, -0.59814453, 0.9584961, -0.99658203, -2.4238281, 1.9003906, 3.0078125, 1.3935547, -1.7480469, -1.0820312, -2.0292969, -0.7504883, -1.9306641, 2.21875, 0.47998047, 0.46899414, -0.74365234, 1.0712891, 1.9042969, -1.3789062, -1.7734375, -0.81640625, 0.99560547, 2.1816406, -0.39160156, 0.30273438, -0.47021484, 0.5644531, 1.2490234, 1.2216797, 4.1953125, 0.40820312, 1.0585938, 1.7109375, -2.7441406, -3.3007812, 0.75878906, 0.5732422, 0.57910156, 0.1899414, 0.8100586, 2.7910156, -0.63427734, -0.89941406, 0.3408203, -0.4387207]}, "B07H5RHXJN": {"id": "B07H5RHXJN", "original": "Brand: Weber\nName: Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nGS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system\n4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.\n", "embedding": [-0.9560547, -0.034210205, 1.2607422, -0.62646484, 0.13220215, 0.83691406, -0.08013916, -2.2207031, 0.08728027, 1.0673828, 1.9052734, -0.66015625, 0.71728516, -3.0019531, -0.43676758, -0.14233398, 2.2519531, 0.8574219, -1.46875, 1.6601562, 1.2490234, -0.35766602, 2.671875, -2.0566406, 1.1923828, 1.2597656, 4.0429688, -5.2617188, -1.1298828, -2.1035156, 1.2753906, 0.35351562, 0.37597656, 2.1679688, -3.9570312, -1.8916016, -2.6523438, 1.8359375, -2.7382812, 1.2919922, 0.5083008, -1.8447266, -0.10656738, -0.76660156, -1.5341797, 1.8671875, 1.1201172, 0.7192383, -3.1035156, 0.34399414, 3.796875, 2.1855469, -0.40600586, 0.48291016, -0.6464844, 1.8447266, 0.5083008, -1.5341797, 2.2226562, 0.18701172, 2.3125, -0.484375, -1.9804688, -1.5244141, -1.1816406, -0.52246094, 1.2148438, 0.9140625, -0.44262695, -0.3017578, 3.8496094, -0.39111328, -2.6132812, 2.5742188, -1.0058594, -2.2792969, -2.8378906, 1.9550781, 0.13549805, -1.0898438, -1.828125, 2.765625, 3.015625, -2.8417969, 0.3701172, 0.74658203, 0.6923828, -2.9785156, 1.7353516, 0.734375, 0.012313843, 0.7207031, -1.5761719, -3.4394531, 2.125, -0.35107422, 0.65527344, 1.2353516, -0.96972656, 2.1054688, -1.2060547, 1.7509766, -0.2166748, -0.9296875, -3.2070312, -2.2851562, 1.9414062, -0.14697266, -2.8027344, -0.021331787, -1.3291016, -0.85058594, 1.3261719, 2.4707031, 1.5820312, 1.3017578, 1.8359375, 1.3564453, 0.61328125, 0.7734375, 3.1210938, -1.3212891, 0.64160156, -0.2401123, -0.8647461, -1.2734375, -1.2197266, 0.6201172, 3.4316406, -3.328125, -0.043060303, 0.18286133, 3.4238281, 1.1474609, -0.93115234, -1.9306641, -0.3774414, -1.5488281, -3.6992188, 0.87109375, -0.8798828, 0.23071289, 1.0410156, -1.7939453, -3.0976562, 1.2841797, -1.0400391, 0.43823242, -0.21618652, -1.5068359, 0.76904297, -1.0849609, 0.29736328, -2.7832031, 2.5839844, -0.4177246, -0.5288086, -0.27685547, 3.3339844, 1.7119141, 1.8525391, -1.3105469, -1.9111328, -1.7265625, 0.020889282, 0.1541748, 0.91308594, 1.9033203, -0.54345703, 1.7236328, -0.031799316, -1.5400391, -0.8129883, -0.6904297, 1.9921875, -1.6806641, -0.43432617, 0.9003906, -0.019577026, 0.24707031, -0.82373047, -1.4140625, 0.72753906, -1.8720703, -0.3232422, -0.27148438, 1.1484375, 1.2089844, 2.0078125, -1.0693359, -0.41503906, -1.2050781, 1.0839844, -0.6826172, 0.7324219, -1.4003906, -2.0664062, -0.76660156, 2.2617188, -1.3564453, -1.1875, -0.24414062, 1.0986328, 1.6259766, -1.4941406, -2.8652344, -0.83203125, -3.0878906, 0.66308594, 1.5673828, 2.3144531, -0.6826172, 0.7451172, -0.09161377, 0.22631836, -0.80859375, 2.4296875, 0.77783203, 0.099487305, 2.4414062, 0.17358398, -0.85791016, 1.6611328, 1.5175781, 0.14074707, 0.9091797, 0.81396484, -0.14099121, -2.8886719, -1.8720703, 3.2304688, -0.6245117, -0.25048828, 1.2304688, 0.6015625, 4.0625, 0.6948242, -1.0009766, 0.1282959, 1.1728516, -0.072143555, -0.7001953, -3.3554688, -1.0146484, -1.0966797, 0.4152832, -1.6953125, 2.953125, 0.9145508, 1.9003906, 1.0371094, -0.2919922, 1.4580078, 1.2001953, -0.52783203, 0.52490234, -0.9980469, 2.1152344, 0.31884766, -2.15625, 1.6884766, 1.0673828, -0.058410645, 1.1416016, 0.9746094, -1.9169922, 0.8886719, 1.7675781, -0.2199707, -2.5546875, 0.2763672, -0.17016602, 1.1953125, -1.9873047, 2.9609375, 1.5449219, -1.0097656, 3.125, 0.5913086, 1.1298828, -0.11706543, -1.4257812, 1.1035156, -2.9394531, -0.79052734, 1.2753906, 1.5927734, -1.1074219, -1.0859375, 0.13342285, 4.6484375, -1.2871094, -2.3789062, 2.5429688, -1.0136719, 0.25097656, 2.5273438, 0.71728516, -1.203125, 1.1962891, 2.2519531, 0.19140625, 1.5761719, 1.5, -0.27172852, -0.37475586, 0.7553711, -2.0625, 0.47680664, 1.0175781, 0.04257202, -0.8149414, -1.6054688, 0.76660156, -2.9707031, -0.8388672, 1.5195312, -2.5273438, 0.5942383, -0.7158203, 1.421875, 0.5234375, -2.0175781, -0.27124023, -0.7841797, -0.14868164, -1.0283203, 0.74853516, -0.36547852, -1.7128906, -0.50341797, -0.8286133, -1.0205078, -3.3847656, -1.8798828, -1.1972656, -1.6240234, -2.6992188, 0.9453125, -1.1689453, -0.55859375, 1.3134766, -1.609375, -0.57714844, 0.26464844, -1.1650391, -0.9638672, -0.44873047, -1.2675781, -0.54833984, 1.1064453, 1.1923828, -1.4072266, -1.6396484, -1.1005859, -1.3710938, 1.1855469, 0.51708984, -0.057128906, 0.2878418, 0.88134766, 0.72558594, -0.21862793, 0.5991211, 1.8837891, -0.013511658, 0.6269531, -3.3027344, -0.0435791, -2.7519531, 2.2207031, 1.7363281, 1.1552734, -3.3222656, -1.1318359, -0.8544922, -0.7949219, 3.8574219, 0.38964844, 1.7128906, 0.08984375, 0.65478516, -0.00440979, -3.0390625, -1.2802734, 0.43847656, 0.29638672, -2.0058594, -0.06402588, -0.71435547, -0.46899414, -1.0917969, 0.33764648, 0.06536865, -0.73583984, -1.1152344, 0.34228516, -2.3574219, -0.37231445, -0.58740234, 0.53222656, 0.52490234, -2.1914062, -2.7382812, -1.0908203, -1.8154297, -1.1738281, -2.3144531, 1.0761719, -0.20410156, 1.8046875, 1.4355469, 0.05883789, 0.59228516, 0.14709473, -3.1777344, 1.9765625, -0.26171875, -3.3964844, 2.6269531, -2.5195312, -0.42285156, -3.2382812, 0.9121094, 2.8769531, 1.1201172, 1.0332031, 1.1933594, 0.60058594, 0.5161133, -0.5107422, 1.3203125, -1.9863281, -0.20922852, 1.7607422, -1.8730469, -0.4716797, 0.37353516, -0.036499023, -2.6582031, -2, 3.0292969, 2.8886719, 1.9902344, 0.45385742, 1.2402344, 1.2314453, -1.2910156, 0.11383057, 0.13574219, -0.1685791, 0.29467773, -0.5600586, 1.5761719, -1.3271484, 2.1835938, 0.55859375, 1.1484375, 2.6074219, 0.8647461, 0.39575195, 0.5878906, -0.48364258, 0.15612793, 0.47094727, -0.34960938, 2.4960938, -1.0439453, 0.21447754, 0.86621094, -1.890625, 0.55322266, -0.39013672, -2.5488281, 1.5332031, -0.5151367, -0.29711914, -0.56689453, 1.0898438, 1.2363281, 0.40600586, -0.15368652, -1.2636719, -0.05178833, 1.8125, -0.5449219, -0.5756836, -1.8916016, -0.14562988, -0.51904297, -3.0820312, 0.21484375, 4.2226562, -1.6191406, -0.64501953, 1.3125, -1.5097656, -0.34204102, 2.4609375, -0.012809753, -0.20385742, 0.7709961, -1.7294922, 0.9526367, 0.37353516, 1.2226562, -1.6748047, -0.83203125, 0.5131836, -0.7963867, 0.78125, 1.9394531, 0.49047852, -2.78125, 0.6557617, -3.7324219, -1.3896484, 0.18334961, -2.1152344, -1.2587891, 2.9042969, 1.3212891, 0.43676758, -0.43676758, 3.3496094, -1.8447266, 0.9892578, 3.0058594, -3.5351562, 1.0517578, -3.5625, -2.6445312, 0.48461914, -1.6855469, 0.4411621, 0.4128418, -0.05041504, 0.5673828, 4.015625, 0.38549805, -1.8691406, -0.96972656, -0.109558105, -0.34472656, -0.08502197, 0.2043457, -1.1269531, -1.3378906, -1.5683594, -3.0195312, -0.44970703, 0.4633789, 0.95703125, 1.6435547, -4.46875, -0.34716797, -0.4855957, -1.2285156, -1.8798828, -0.9399414, 1.8720703, -0.67089844, 1.0019531, -2.8066406, 1.0537109, 1.9101562, -0.7973633, 2.671875, 2.2226562, 0.20300293, -3, 1.8759766, 0.23535156, 3.7167969, -0.8046875, -3.1640625, -1.7167969, 2.0390625, 1.0185547, -2.9394531, -0.03918457, 0.21276855, -1.3369141, 0.8442383, 1.5507812, 2.2558594, 0.8354492, -0.27929688, -2.3828125, -0.7480469, -0.5854492, -0.3034668, -2.3300781, -0.7055664, 2.0566406, -1.4082031, -0.79248047, -2.4570312, 1.5341797, -0.6723633, -1.0537109, -3.3417969, 1.9921875, 3.9433594, 2.5527344, 2.7207031, -1.3398438, 1.8837891, -0.18237305, 0.20690918, -1.5214844, 1.8759766, -1.1123047, -0.640625, 3.3554688, 0.9506836, -1.1474609, -0.24914551, 1.6191406, -2.34375, -0.68847656, -1.5107422, -0.71435547, -1.4736328, -0.30566406, 1.2753906, -0.83740234, 2.9921875, -0.06982422, -2.5878906, 0.7158203, 1.4560547, -0.98095703, 0.10119629, 0.70214844, -0.18591309, -0.21264648, 2.0683594, 2.7832031, 0.39892578, 0.5932617, -0.6074219, 0.765625, -0.073791504, 1.4316406, 1.8046875, -0.43310547, -1.125, -0.46069336, 2.0449219, 2.25, 2.3378906, 2.9570312, 0.98828125, -3.0839844, 2.0605469, 0.18762207, -3.8203125, 1.3427734, 1.3212891, 0.6850586, 0.44506836, 1.8417969, -3.8886719, -0.98828125, 1.3789062, -0.4501953, 1.7119141, -0.7246094, -0.40429688, 2.8515625, -0.024932861, -0.5263672, 0.26098633, -0.2980957, 1.8056641, 1.1279297, 0.7241211, -2.1875, 1.3320312, 1.8935547, -0.41967773, -2.2636719, 2.6972656, -0.2697754, 0.5390625, -1.828125, 0.36572266, -0.125, 0.53271484, 3.2304688, 1.6230469, 1.9804688, -0.1003418, 1.5351562, -2.3164062, 0.17138672, -2.2148438, 3.0136719, -1.4443359, -1.5957031, 0.83447266, -2.6367188, 1.1220703, -2.0195312, -1.8193359, -0.4272461, 0.71875, 1.0449219, 0.14465332, -2.2070312, -0.10632324, -1.5107422, -2.3007812, -0.05407715, 0.6948242, 0.91796875, 0.29956055, 1.25, -2.1894531, 0.42993164, -0.1977539, 0.49047852, -1.2988281, -0.42456055, -1.3955078, -0.8901367, -0.87890625, 0.45117188, -1.3828125, 0.52685547, 2.0117188, 0.03894043, 1.3935547, -2.0820312, -1.7949219, 0.5644531, 0.051574707, 0.24365234, 1.7441406, 1.3212891, -1.7392578, 1.8261719, 0.22973633, -1.7128906, 1.6650391, -3.3710938, -1.6513672, 2.4199219, -1.0693359, 2.0800781, -0.8613281, 0.07879639, -0.59228516, -0.96728516, 0.98291016, 1.5400391, -0.32080078, -1.5449219, 0.84375, -0.8017578, -2.0996094, 0.94677734, -0.77734375, 1.5107422, 0.31469727, -1.4306641, -0.87890625, -1.1660156, -1.3125, 1.8378906, -3.4863281, -1.1308594, -0.54589844, 1.4033203, 0.9345703, 0.3894043, -0.8198242, 3.2890625, -0.37841797, -1.1748047, -0.42285156, -0.8881836, 3.9101562, 3.59375, -0.18225098, -0.8251953, -1.9726562, 0.20812988, 0.64453125, 1.8876953, -1.5263672, 0.18395996, -0.89160156, -0.4411621, -0.85791016, 1.4628906, 1.4443359, 0.17150879, -0.47460938, 0.8798828, 3.3339844, -0.5864258, 0.6972656, 1.6083984, -1.0400391, -0.16052246, 4.8984375, 1.7167969, -2.6074219, 0.66259766, -1.7402344, 2.0839844, 0.85839844, -0.14953613, -0.095214844, -1.5009766, -1.796875, -2.2441406, -2.6757812, -2.8847656, 0.9902344, 0.9584961, -1.5126953, -1.6757812, 1.2373047, -0.16833496, 4.4804688, 0.5629883, 1.6503906, -1.8662109, 0.6044922, -1.2099609, 0.46044922, 0.8564453, -3.3476562, 0.91308594, 1.8759766, -1.6269531, -1.7871094, 0.79833984, 0.42285156, 3.9433594, 0.46679688, 1.8515625, 3.0253906, 2.1191406, 1.7392578, 1.1279297, 0.5996094, -0.23327637, -0.81347656, -0.87646484, 0.7553711, 0.57910156, 0.83203125, 0.16906738, 2.5292969, -1.6923828, -0.27490234, -0.32080078, -1.2509766, 0.68603516, -2.8222656, 0.8066406, 1.015625, 2.7265625, -1.6083984, -1.2871094, -0.07537842, 0.35351562, 0.51416016, -1.2148438, 1.8291016, 0.7519531, 0.5678711, -1.8701172, -0.022384644, 1.9726562, -4.1601562, 1.5097656, 0.035980225, -0.54052734, -1.4013672, -0.8852539, 2.09375, 0.5620117, 0.064453125, 1.6894531, 3.1640625, 0.6503906, 1.8115234, -3.4882812, -0.8413086, 0.47070312, 4.3164062, -0.34326172, -0.2849121, 1.4394531, -2.0859375, -3.8027344, -3.6035156, 3.453125, 1.890625, 1.1826172, 1.5126953, -0.77197266, 2.8203125, 0.024383545, 0.7807617, -2.2070312, 0.17333984, -0.5810547, -2.75, -0.88183594, 0.85791016, -1.7255859, 0.0068473816, 1.1347656, -1.0087891, 1.1894531, 1.6884766, 1.6083984, -0.06185913, 0.52685547, 0.80078125, 0.5209961, 0.2902832, 1.6689453, 0.9199219, -1.7353516, -1.9248047, 1.0068359, 1.7460938, 0.28198242, -0.71728516, -0.4975586, -1.2070312, -0.7397461, -1.1123047, 1.7148438, -1.4804688, -0.8779297, -0.061828613, 0.97265625, -2.3359375, -2.6074219, 3.1152344, 2.9726562, 0.109436035, 0.92578125, 3.2734375, -1.9453125, 0.2401123, 0.38354492, 0.62060547, 0.52441406, -0.4621582, -0.4008789, 0.65966797, -1.6367188, 2.3261719, 1.5439453, 0.17712402, -0.51953125, -0.037963867, -1.0234375, -0.14282227, 0.6357422, 1.9619141, -1.2060547, -1.4101562, 2.7832031, -0.30151367, -1.7949219, 2.5644531, -0.26757812, 0.66503906, -1.2246094, -3.0527344, -0.50341797, 0.27075195, -1.5644531, 0.27026367, 3.3828125, 1.6650391, 0.27392578, -3.1972656, -1.9824219, -1.9248047, -2.8652344, 1.2666016, -2.1933594, -1.6777344, -1.7011719, 0.44604492, 3.1640625, 0.1661377, 0.06738281, -0.5488281, -1.7988281, 1.0585938, 0.13452148, 1.8740234, -0.13269043, 0.12890625, 1.0107422, 1.6503906, 3.1835938, 1.2851562, 0.42895508, 2.2207031, -0.47753906, -1.9902344, -0.16723633, -0.18591309, -0.18115234, 0.027664185, -0.66748047, 1.1513672, -0.5703125, -1.1474609, 0.13684082, -2.4804688]}, "B018A484AK": {"id": "B018A484AK", "original": "Brand: Martin Grill Gadget\nName: Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long\nDescription: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nFeatures: EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.\nNO HARMFUL BRISTLES: Don't take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury.\nTOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There's a universal brass head that fits any grill grate rack and a wooden handle totaling 16\".\nUNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA.\nLIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.\n", "embedding": [-1.4824219, 0.0018424988, -0.060516357, 0.85595703, -0.4326172, 0.3947754, 0.3564453, -1.0556641, 0.33276367, -1.5195312, 0.019973755, -2.4316406, -0.95996094, -1.6435547, -1.9345703, -0.57666016, 0.56396484, 0.7373047, 2.0292969, 0.9838867, -0.9477539, 0.026519775, -0.07940674, 1.1132812, 0.48901367, 0.52441406, 2.4570312, -1.8964844, 2.4140625, 1.3203125, 0.8017578, 0.76171875, -0.0340271, 2.5175781, -2.9082031, 0.9765625, -1.3515625, 2.2089844, -0.27929688, -1.0927734, 0.06088257, -0.3413086, 1.4814453, 1.5185547, -3.3027344, 0.48779297, 1.7861328, 3.4335938, -1.4580078, -3.0351562, 2.1621094, 2.1582031, 1.2080078, 0.28930664, -2.078125, 2.1933594, -0.92578125, -2.3554688, 0.25976562, -1.6201172, 1.4375, 1.9580078, 1.5332031, 0.5078125, 0.6274414, -0.17456055, 0.10760498, -0.6748047, -1.6240234, -2.1660156, -1.2949219, 0.70703125, -0.16552734, -0.52734375, 0.6459961, -0.1640625, -1.2128906, -1.3808594, -1.4648438, -0.5805664, 0.33642578, 2.7695312, 1.265625, -2.9238281, 2.0332031, 0.8652344, -2.3886719, -0.1307373, 0.11077881, -2.6875, 0.7602539, 2.1015625, -2.9726562, -4.15625, 1.8359375, -1.890625, 1.421875, -1.1318359, 1.234375, 3.0976562, -1.0976562, 1.5390625, 0.6616211, 0.3269043, -1.6230469, -0.97265625, 0.6958008, -1.5126953, -2.578125, -1.3427734, -1.9287109, 1.4052734, -1.0966797, 0.44311523, -1.3359375, 0.40405273, 0.008804321, -0.32348633, 0.61376953, 2.4433594, 0.10083008, 0.010826111, 0.37963867, -0.3388672, -1.9589844, -1.1328125, -0.079711914, 2.90625, 2.6933594, -1.3876953, -0.1619873, -2.2792969, 3.0234375, 1.390625, -0.19165039, -2.4492188, -0.04748535, -1.4736328, -2.0351562, 0.68847656, 0.23522949, 0.6538086, 2.1054688, -0.4675293, -2.6054688, -0.13366699, -1.0527344, -0.66796875, -0.63427734, -2.4882812, -0.78564453, -0.484375, 1.015625, -0.49169922, 1.4414062, 0.095703125, -0.66552734, -0.25854492, 0.8901367, 0.11621094, 1.6181641, -1.765625, -0.1427002, 0.35546875, -0.6308594, -2.0703125, -2.4082031, 4.046875, 0.6689453, 2.0429688, 0.9013672, 0.04611206, -0.921875, -2.1445312, -0.7993164, -0.17529297, 1.3828125, 2.7695312, -1.8486328, -0.87597656, 1.6435547, -2.4296875, 0.004501343, -2.0136719, 0.40673828, -0.6098633, 2.4960938, -1.8164062, 1.2607422, 0.12902832, 3.4453125, 1.4541016, -0.06762695, 1.1494141, -0.76660156, -1.6347656, -2.1796875, -1.5292969, 1.1875, 0.8378906, -2.484375, -1.1113281, -0.77441406, -1.2470703, -0.53271484, -1.5693359, -2.2851562, 0.5239258, -0.34057617, 1.7119141, 0.21643066, -0.87060547, 2.1191406, -1.7890625, 2.0664062, -4, -0.15661621, -1.5390625, 1.4072266, 2.1640625, -2.2363281, 0.26049805, -0.19714355, 3.8417969, -1.1542969, -0.10040283, 0.060424805, 2.2421875, -2.6914062, -0.33618164, -0.9902344, 0.50146484, -0.98779297, -1.3037109, 0.13378906, -0.119140625, 0.81347656, -0.39233398, -1.8964844, 0.8100586, -0.76953125, -1.2548828, -0.28076172, -0.9248047, 0.73535156, -0.6333008, -0.8876953, 1.1552734, -1.3017578, -2.7773438, 0.25146484, 1.3837891, 1.3222656, 2.7070312, -0.22192383, 1.5605469, -1.5341797, -0.13977051, -3.7265625, -0.38989258, 0.054779053, 0.101623535, 1.4736328, -1.1777344, 1.5390625, 0.65185547, 2.3339844, -0.78564453, 0.8911133, -2.4492188, 1.109375, 0.7597656, -0.1920166, 1.1621094, 0.28930664, 0.7675781, -0.24206543, 1.1845703, 2.9628906, -2.0175781, -1.3789062, 1.8261719, 2.7011719, -0.7207031, -1.1279297, -2.859375, -1.0214844, -1.3066406, 1.7001953, -1.8867188, 4.015625, 2.1992188, -2.7832031, 2.71875, -1.8730469, 2.0078125, 2.7558594, -2.3359375, 0.2277832, -2.3417969, 3.4335938, 1.7548828, 0.60839844, 3.1542969, -1.7089844, 0.28442383, 1.3925781, -1.5351562, -0.9355469, 2.8808594, -1.9912109, -1.8222656, -0.3786621, 0.08874512, -3.6523438, 1.2041016, -2.640625, -0.98095703, -0.52783203, -0.2619629, 1.640625, 1.7529297, 1.2480469, -1.4521484, -2.453125, -0.86572266, 1.3769531, -0.15161133, 0.44384766, -1.6464844, 1.2421875, -0.12719727, 0.2479248, -0.47607422, -3.1035156, -1.0048828, 0.2722168, -3.4238281, 2.6386719, 1.5742188, 0.42456055, 2.2128906, -2.2324219, 2.359375, -1.8710938, -0.18896484, -2.6347656, -0.78271484, 2.0605469, 1.1298828, -0.57373047, 0.52783203, 0.17272949, -4.65625, 0.025421143, -0.0026760101, 0.32739258, -0.24938965, 0.92333984, -0.6557617, 0.5395508, 0.48828125, -0.43823242, -0.3203125, 0.5683594, 0.29858398, 0.8251953, -2.2460938, 0.099365234, -2.9902344, -1.0263672, -0.066467285, 0.9794922, -0.22949219, -1.1347656, -1.7470703, 0.90478516, -0.20422363, -0.67333984, 2.1660156, 1.1962891, -0.4189453, 1.0390625, -0.8066406, -0.38989258, -0.60839844, 1.2851562, 0.32958984, 0.046539307, -1.4824219, 1.0107422, -0.77978516, -2.3222656, -2.6855469, 3.3144531, -1.8701172, 1.0039062, -3.3671875, -0.17089844, 1.0634766, 1.0996094, -0.7675781, -0.5517578, -1.2910156, -0.107788086, -2.5625, -0.29077148, -1.8789062, -0.19165039, -1.5908203, -1.4765625, 1.1699219, -0.5566406, 0.6118164, 1.9013672, -2.3828125, 1.5322266, -3.3300781, -0.7885742, -1.0234375, 0.9682617, -0.28076172, -1.1298828, -1.7060547, 2.6113281, -0.8720703, 1.484375, -2.7675781, -1.3173828, 2.0527344, 1.953125, -0.47192383, 0.06933594, 0.17553711, 1.2470703, -0.7495117, -1.4443359, 1.3818359, 0.8623047, -0.5576172, 2.2851562, 1.5820312, 0.3449707, 0.8779297, 3.9824219, 1.8867188, -0.22363281, -1.2978516, 3.0117188, -0.14868164, 2.5273438, -0.47094727, 1.3291016, 0.9013672, -1.7177734, 0.6767578, -0.51904297, 0.23388672, 0.6010742, 1.3496094, -0.71191406, -1.8027344, 1.8183594, -0.38378906, 2.3007812, -1.1660156, -0.5810547, -0.061553955, -1.1777344, 1.4658203, -2.1757812, 1.1201172, -1.5009766, -1.3378906, 2.4589844, 0.055023193, 1.6777344, -1.4521484, 0.5683594, -1.4169922, -2.5332031, 0.92041016, -1.3642578, -1.7607422, 0.30200195, -1.3134766, -0.6791992, -0.49926758, 3.4003906, -0.15991211, -0.82177734, -1.2246094, 1.640625, -0.31030273, 0.40844727, 1.0214844, 3.4492188, 0.08972168, 2.0625, 0.5727539, -1.6982422, 2.3203125, -1.5458984, 0.8979492, -1.09375, -0.6171875, 0.08856201, -0.17211914, -0.0003979206, 0.7504883, 1.7724609, 0.065979004, -0.08392334, -1.3457031, 0.19250488, -1.6865234, 0.9921875, 0.2541504, -2.8945312, 0.16455078, 2.234375, 2.3964844, 1.9619141, 1.1191406, 3.2753906, 1.0546875, -2.53125, -1.2158203, -1.265625, -0.6894531, -1.2753906, -1.3222656, 0.88916016, 0.20300293, 0.6826172, 1.8623047, 0.6713867, 0.8959961, 5.3867188, -0.0209198, 0.81152344, -0.94921875, -0.07397461, 0.49609375, -0.14331055, 0.7089844, 0.82421875, -1.0136719, 0.5161133, 0.38183594, -0.68310547, -2.9824219, 0.94091797, 3.7929688, -1.9970703, 0.22216797, -1.0947266, 1.2871094, -0.6020508, 0.6850586, 2.7109375, 0.3408203, -0.7475586, -1.5107422, -1.1308594, 0.95996094, 2.4160156, -0.39501953, -1.3046875, -1.1738281, -1.9042969, -1.1650391, 0.032073975, 3.40625, -0.8149414, -0.96875, -2.4179688, -0.84375, -4.2148438, -0.9091797, 2.2011719, 0.50097656, -2.5371094, -0.26831055, -0.47875977, -1.2597656, 0.50146484, -0.36450195, -0.8725586, -2.9453125, 0.5253906, -2.6933594, -0.1550293, -0.16601562, -2.1386719, -0.62646484, -2.4335938, -2.7011719, -1.1933594, 0.19433594, -2.0566406, 1.0019531, 3.2480469, -0.9189453, 0.5444336, 3.0136719, -0.4650879, 1.4882812, 0.95996094, -2.0058594, -2.1953125, -1.1738281, 0.59228516, 0.5078125, 0.21264648, 1.3681641, -0.5317383, 0.08148193, -0.6982422, -0.8720703, -1.2001953, -3.2675781, 2.3808594, -0.9638672, 1.1816406, -0.14001465, -0.6035156, 1.2822266, -1.0458984, 2.7578125, 1.7910156, 2.0625, 0.3239746, 0.64990234, 1.0732422, -1.0283203, 1.5527344, 1.7695312, 2.7929688, -0.16833496, -0.11932373, -0.30371094, 1.2480469, -0.0020656586, -1.46875, 2.0839844, -0.103759766, -1.4921875, -0.3293457, 2.078125, 0.67333984, 0.45043945, 1.6982422, -1.6347656, -1.7617188, 2.0351562, 1.5488281, -4.2929688, 0.5727539, 0.2064209, -1.3876953, 2.8945312, -1.2080078, -1.5849609, 0.7607422, 0.6621094, -0.9248047, -1.1708984, -2.03125, 1.7177734, 1.7275391, 0.086364746, 0.22912598, 0.875, -2.0878906, 0.75683594, -0.009483337, -0.48486328, 1.6650391, 0.59716797, 4.6679688, -2.1113281, -1.1855469, 2.5449219, -1.1074219, -0.62597656, 0.42358398, -2.1367188, -3.2871094, 0.69970703, 0.8691406, 1.0244141, 0.17211914, 0.2109375, 1.6289062, 0.7895508, 0.9946289, -1.3779297, 1.9970703, -1.1777344, -1.6728516, 3.2851562, -3.1308594, 0.7885742, -1.5546875, 1.1689453, 0.007587433, 2.7578125, 2.15625, -0.4699707, -2.8574219, 1.0810547, -1.0996094, -1.0458984, -1.140625, -1.0898438, 1.1552734, 0.88720703, 2.0625, -0.6225586, 0.31591797, 0.96191406, -0.7788086, 0.8725586, -0.82958984, 0.63427734, 0.039642334, -2.0410156, -0.20837402, -0.51416016, -1.6777344, 2.03125, 1.5996094, 0.4807129, -1.8535156, -0.74658203, 1.1894531, -0.3659668, -3.9335938, 3.71875, 0.36450195, -0.8388672, -0.49658203, 1.6787109, -2.0976562, 0.8671875, -0.6088867, -0.54296875, 0.65478516, -0.39086914, 1.6464844, -2.2070312, -5.0820312, 1.6210938, -3.6933594, 1.1230469, 2.0839844, 0.85302734, 1.4902344, 0.92578125, -1.4541016, -1.7851562, -2.2539062, 1.1523438, 2.8417969, -1.0566406, -0.100097656, 2.7929688, -2.828125, -1.1708984, 0.98876953, -1.0595703, 2.2597656, 0.17333984, -0.9316406, 3.3339844, 0.67822266, 0.3474121, 0.08312988, 1.6513672, 1.2207031, -1.0732422, -0.82958984, 3.2675781, 0.45263672, 1.3701172, 0.9604492, 1.2041016, -0.23181152, 1.2509766, 0.45239258, -0.44433594, 0.48486328, -4.2734375, -0.34228516, 1.3984375, 2.7050781, 2.1191406, 0.21350098, 0.64941406, -2.4648438, -0.08734131, -1.0517578, 3.1425781, 1.0283203, 3.1425781, -0.08117676, 3.9882812, -0.78808594, -2.9082031, 1.171875, -2.0585938, 1.1738281, 0.3984375, -2.9433594, -0.7729492, -1.6259766, -0.4560547, -2.75, -1.2480469, -4.25, 1.3359375, -0.69384766, -2.2617188, -1.2802734, 1.5, -0.4753418, 4.2265625, 4.109375, -0.74072266, -1.7822266, 1.0830078, -0.4260254, 0.30615234, -0.4404297, -2.5234375, 1.484375, 0.24353027, 0.16357422, -1.2128906, 0.34887695, 3.1523438, 0.064575195, 0.9550781, 1.6875, 1.9404297, 2.8789062, 2.1660156, -0.11505127, 0.7211914, 1.7441406, 1.4140625, 0.06640625, 3.7636719, -1.1152344, 0.8955078, -1.4101562, 1.2978516, 0.69384766, 0.34960938, -0.82958984, 0.8183594, 0.8251953, -3.0761719, 1.9316406, 0.86376953, -0.83251953, -1.5175781, 0.49169922, -1.6347656, -0.453125, 0.8046875, 1.4658203, 2.8242188, 2.1289062, 0.14733887, 0.78125, -0.76953125, 0.76123047, -3.0507812, 1.7919922, -1.1738281, -0.0132369995, -0.24487305, 0.93847656, -0.82958984, 0.6513672, -0.028900146, 2.2773438, -0.36645508, -0.75097656, -2.5585938, 0.61572266, -0.35546875, 1.1210938, -1.1953125, -0.2849121, -1.4570312, -2.9960938, 0.68310547, -2.2441406, -0.11517334, 4.5664062, -0.116882324, 1.2753906, 2.4082031, -3.7421875, 1.2216797, -0.19396973, 0.52441406, -1.1181641, 1.2050781, -1.8046875, -0.62353516, -1.5996094, -0.013587952, 1.0214844, 0.85058594, -0.88916016, -0.54541016, 1.9677734, 0.4802246, 1.4921875, 0.11077881, 0.9135742, -0.31518555, -0.90478516, -2.4277344, 0.29663086, 1.8291016, 0.5805664, -0.23168945, 0.47192383, 0.34350586, 1.0136719, 3.5332031, -1.3056641, -1.0654297, 0.7729492, -0.6953125, -1.3007812, 0.103881836, -2.4140625, 0.051361084, -0.23278809, -0.4169922, -1.4267578, 3.8027344, 0.4321289, -0.58984375, 1.6230469, -0.4489746, -0.2163086, 1.7744141, 1.6396484, 0.23254395, -1.3886719, 0.9560547, -1.0791016, -0.9892578, -1.8623047, 1.0966797, 2.2929688, -1.890625, 0.14208984, 0.031341553, -0.38452148, 0.9711914, 0.8515625, -0.36254883, -1.5908203, -1.8984375, 1.4306641, 2.0078125, 2.0820312, 3.0234375, 0.66259766, -2.40625, -0.47998047, 0.38305664, -1.0742188, 0.7080078, -2.8242188, 0.4855957, 3.4433594, 0.097229004, -0.15148926, -1.0722656, 0.37036133, 1.1035156, -1.2832031, 2.1308594, 0.8691406, -2.109375, -1.2255859, -0.8857422, 0.65478516, 2.0234375, -1.0976562, -0.10443115, 1.1162109, -0.6801758, 0.1517334, 1.7197266, 2.1328125, 0.08392334, 1.1972656, 2.6054688, 1.0869141, -0.16125488, 1.3710938, 0.9326172, 2.0351562, -2.3671875, 2.5078125, -1.0185547, 2.5429688, -1.5449219, -1.4814453, 2.2714844, 0.59765625, 0.59472656, -0.6191406, -1.4541016]}, "B07WK2GZGD": {"id": "B07WK2GZGD", "original": "Brand: STYDDI\nName: STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut\nDescription:

          STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

          1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
          2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
          3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

          Product Instructions:
          1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
          2.Taking the regulator hose end connect to your 3/8\" male flare connector propane appliance.
          3.Checking this hose both ends must be fully tightened.

          Specification:
          Inlet\uff1aQCC-1 Tank Connection (ACME)
          Outlet: 3/8\" Female Flare Nut
          Flow Capacity: 80000 BTU/Hr
          Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
          Certificate: CSA
          Gas Type: LP/LPG
          Material: Rubber / Brass

          Attention:
          1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
          2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
          3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
          4.Keeping the hose away from HIGH TEMPERATURE.

          Note:
          Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

          \nFeatures: NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter.\nCSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8\" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8\" male flare connector propane appliance. It\u2019s compatible with your 20-50 lb propane gas tank.\nUNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills.\nA MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [-1.2919922, 1.5087891, 1.3916016, 0.90966797, -0.67529297, -1.0302734, 2.25, -1.6816406, 2.65625, 0.39941406, 0.18188477, 0.75, 2.5078125, -3.125, 2.7714844, 0.2626953, 1.4160156, -0.049224854, 1.9892578, 1.5820312, 1.4052734, -1.3144531, 3.0546875, -1.0078125, 1.7822266, -1.0898438, 3.4082031, -2.6113281, -1.1152344, -0.9946289, 1.3369141, 0.46923828, 0.051483154, 1.9101562, -3.7636719, -1.7197266, 0.7578125, 0.15637207, -3.5683594, -0.5761719, -2.9921875, 1.140625, 3.4375, 1.7060547, -2.7832031, 1.2109375, 1.4492188, 1.2255859, 0.89208984, -1.0839844, 0.20812988, 0.099731445, 0.48339844, 0.85253906, -1.5966797, 0.7504883, -0.7973633, -3.4628906, 1.4316406, 0.6875, 2.6191406, -1.0742188, -2.3691406, 1.2490234, -1.8427734, 1.7519531, 0.71972656, -0.25195312, 0.21166992, 1.1474609, 0.6743164, 1.2617188, 0.6713867, -0.64501953, 0.37231445, 0.5029297, -3.2949219, 0.5761719, 2.9960938, -0.7133789, -1.9638672, 2.7109375, 0.7885742, -1.515625, 0.91015625, 0.3713379, -1.5009766, 0.6166992, 1.96875, 2.3652344, -2.2558594, 2.1679688, -2.7929688, -3.8339844, 0.19750977, -0.16296387, 1.3876953, 0.5258789, 1.3085938, 0.6899414, -2.4746094, -0.10864258, 0.070495605, 1.0537109, -2.0859375, -0.89746094, -0.31323242, 1.8486328, -1.7646484, 0.26904297, 0.19384766, 0.9946289, 1.6337891, -1.3847656, 1.2978516, -0.59033203, -0.7060547, 0.41333008, 4.0117188, 1.9755859, 4.5664062, 0.7529297, 1.4003906, -0.48950195, 0.44262695, 0.33447266, -0.90722656, 0.7236328, 3.4726562, -1.8378906, 0.68603516, -2.2382812, 2.6152344, -0.67529297, -0.7363281, -3.1972656, -2.03125, -2.15625, -1.7109375, -1.4003906, -3.9765625, -0.4645996, 1.4814453, 0.16101074, -4.5039062, 1.3085938, -2.9042969, 1.3896484, 2.5351562, -2.3027344, 1.6884766, -1.5058594, 0.91015625, -1.2626953, 1.6982422, 1.0996094, -0.16845703, -0.67529297, 2.6152344, 2.1445312, 1.1152344, -1.4804688, -2.3085938, 1.1494141, 0.39941406, -2.4511719, 0.75146484, 1.0058594, -0.81591797, 0.42626953, -0.6948242, -3.0996094, -0.8120117, 0.30737305, 0.59277344, -0.89160156, 0.7973633, 2.0683594, 1.7167969, 0.16345215, -2.6152344, -2.234375, 0.5292969, -1.5068359, 1.453125, 0.36645508, -1.4931641, -1.7080078, 1.4619141, -1.3662109, -1.6855469, 0.98779297, -0.0073165894, 0.91503906, -0.6557617, -2.0136719, -3.9667969, -1.0917969, -0.08886719, 1.28125, -0.013870239, -2.03125, 0.7558594, 1.9492188, -1.4931641, -2.4980469, 1.1806641, 0.3527832, -0.23339844, 2.2617188, 0.19848633, -0.7138672, 2.0429688, -0.96240234, 0.0022907257, -1.578125, 2.2929688, 2.9179688, 1.4072266, 0.79296875, 0.26635742, -0.39086914, -1.2402344, 1.0332031, 2.3164062, 0.8666992, 0.12939453, 0.68359375, -2.4804688, -1.1650391, 1.7832031, 1.6533203, -0.4248047, -0.17480469, -0.73583984, 2.4746094, 0.88964844, -0.28076172, 0.98583984, 2.0703125, 0.022125244, -0.9042969, -1.46875, 0.007965088, -0.19030762, -0.46240234, -1.0751953, 0.38305664, 2.3652344, -0.83496094, 1.3398438, 0.13269043, -1.3691406, -1.4472656, -1.1181641, -0.44018555, 0.36132812, 0.6435547, -0.07336426, -1.4394531, 1.5390625, 0.4638672, 0.3857422, 1.6748047, 0.7158203, 0.37329102, 2.2558594, -1.1660156, -1.5634766, -0.025161743, -0.8720703, 2.0273438, 2.3144531, -0.018722534, 0.3359375, 1.6181641, -2.9375, 1.7431641, -1.8720703, 1.4804688, 1.03125, 0.002658844, 1.7841797, -1.9296875, 1.1865234, 1.890625, 0.8125, 0.22680664, -1.4658203, 0.051879883, 4.4726562, -0.6538086, -1.8476562, 2.3027344, 1.6152344, 0.6376953, 1.5078125, 1.1220703, -0.68310547, -0.36694336, 0.21252441, 1.0654297, -1.3701172, 1.0546875, 1.4638672, -0.08068848, 0.31689453, -1.0869141, 0.15637207, 1.5742188, -1.8994141, -1.3720703, -0.41259766, 1.4003906, -1.7099609, -3.2949219, 1.4335938, -1.8154297, 0.46142578, 0.16772461, 0.16113281, -0.39770508, -0.4519043, -0.7919922, -0.98339844, 1.8378906, -2.1835938, 0.8769531, 1.0136719, 0.60839844, 1.1328125, -0.010025024, 0.39160156, -3.046875, -1.5810547, -0.029708862, -2.0546875, -3.03125, 0.06585693, -1.6650391, -1.9296875, 0.048461914, 0.54248047, 4.3632812, 1.8164062, -0.21166992, -1.2568359, -0.012260437, -0.25708008, -0.039093018, -0.26342773, 2.1523438, 0.07647705, -1.4833984, 0.14477539, 0.4399414, 1.0771484, 1.46875, -1.7617188, 0.18200684, 1.2353516, 1.3056641, -0.4025879, -0.10888672, 0.9916992, -1.0917969, 0.1986084, -3.3554688, 0.006477356, 0.041259766, 1.4541016, -0.6098633, 1.5654297, -1.5117188, -1.1191406, -0.9301758, -1.5419922, 1.9804688, -1.1035156, 1.8007812, -1.5166016, 0.97753906, 0.5810547, -1.453125, -3.0625, -0.32836914, -0.1385498, -0.82666016, -0.546875, -2.46875, -0.19592285, -0.5527344, 1.7675781, -0.47875977, -0.32226562, -1.6923828, 1.4160156, 0.42871094, -1.1552734, -0.4074707, 1.9375, 1.0556641, -2.4882812, 0.7314453, 0.30932617, -0.62890625, -1.25, -0.35375977, 0.73779297, -0.54785156, -0.44433594, 1.6220703, 0.16796875, 1.859375, 0.27246094, -4.3789062, 0.59375, 1.4716797, -2.2890625, 2.0292969, -0.8979492, -1.4033203, -1.8574219, -2.296875, 2.6835938, 2.0566406, 2.6210938, -1.265625, 0.91845703, 0.02619934, -0.67041016, -1.7275391, -0.94384766, 0.21459961, 4.6015625, -4.0390625, -1.4501953, 0.7548828, -0.7104492, -2.7636719, 0.31396484, 0.9824219, -0.26220703, 0.97265625, 0.69091797, 1.2392578, -0.23632812, 2.2089844, 1.6669922, 0.38061523, -0.69628906, -0.22937012, -1.2412109, -0.5292969, -1.5195312, 1.5722656, 1.1894531, 1.4169922, 0.88964844, 0.089660645, -0.41723633, -2.203125, 0.7363281, -0.10809326, 0.80322266, 1.4208984, 1.6757812, -0.8066406, -0.15307617, 0.16577148, 0.4267578, 1.8173828, -3.6796875, -0.94091797, 1.4335938, 1.5068359, -1.7373047, -0.54345703, -1.1855469, -0.2512207, -1.546875, 0.14953613, 0.26342773, 0.13769531, 1.8642578, -0.60839844, 1.1591797, -1.2421875, 2.5859375, -2.0957031, -0.5058594, -0.9326172, -0.17297363, -1.6298828, -1.5009766, -0.94140625, -2.8964844, -1.1464844, 2.6757812, -0.052947998, -1.4570312, 0.44702148, -1.9648438, 1.4306641, 1.90625, -1.7236328, -0.1005249, 0.77197266, -1.65625, -0.006477356, -0.066101074, 2.3691406, 0.04937744, -2.6757812, 0.5136719, -2.3847656, 0.12109375, -0.83740234, 0.20410156, -2.9394531, 0.39135742, -0.038879395, 1.6513672, -1.3173828, 3.6269531, 0.2536621, -0.84765625, 1.6083984, -3.3339844, 0.35620117, -3.2714844, -5.8554688, -0.24853516, -2.8613281, 0.78125, 3.0878906, 1.34375, -0.55078125, 2.0253906, 1.9511719, -3.2128906, -0.52734375, -1.3574219, -0.16772461, -3.0742188, -0.50634766, 2.78125, 2.0429688, -1.4882812, -2.9882812, -0.019866943, -2.46875, 0.44580078, -0.11376953, -1.3623047, 0.49487305, -1.8320312, -0.28515625, -1.828125, -1.2714844, 1.4199219, -0.021881104, -0.48828125, -2.9394531, 2.6542969, 0.30615234, 1.2353516, -0.47607422, 3.3652344, 2.234375, -0.068237305, 0.7368164, 0.6616211, 4.0625, -0.020736694, -1.8759766, 0.18664551, -1.0830078, 1.0400391, -0.5415039, 0.0440979, 0.16137695, -1.4296875, 1.6835938, 0.02684021, 2.1660156, 1.734375, -0.69140625, -3.8398438, 1.4023438, 0.9160156, -1.6699219, -0.29223633, 0.31396484, -2.4257812, -0.8251953, 0.8339844, -1.3544922, 0.48828125, -2.2597656, -0.46362305, -2.0800781, 1.7636719, -0.421875, 0.21777344, 0.41088867, -2.4453125, -0.10211182, -0.30639648, -1.8212891, -1.1171875, -0.2788086, -2.4023438, -1.6621094, 2.7988281, 0.7626953, 0.35424805, -1.0742188, -0.6118164, -1.4375, -1.4335938, 1.0537109, 0.6586914, -0.2734375, -1.4453125, 0.70703125, -0.6430664, 3.71875, -1.5429688, 2.2539062, 1.7011719, -0.546875, -2.8925781, 2.2441406, 0.90478516, 3.5996094, 1.8339844, 1.0195312, 2.1503906, 1.9824219, 1.078125, 0.22619629, 0.9243164, -1.8330078, 0.59814453, -0.12060547, 1.5566406, -0.31420898, 0.2836914, 0.6621094, 1.7304688, 0.8754883, 0.9501953, 0.9399414, -2.40625, 1.9960938, -0.39990234, -1.5888672, -0.68359375, -0.18005371, -1.6748047, 4.8632812, -1.6279297, -2.6367188, -0.18981934, 2.2441406, -0.15893555, 1.1064453, 1.3310547, -1.8359375, 0.067993164, -2.9863281, -1.109375, -0.9140625, -0.87890625, 2.3867188, -2.5800781, 2.0097656, 0.5253906, 1.8496094, 1.9736328, -0.21154785, 0.1394043, -1.8125, -1.2441406, -0.07543945, 0.032287598, -0.48242188, -1.6708984, -0.20788574, 1.8613281, 1.7558594, 0.71875, 0.2590332, 0.40844727, -1.5126953, -1.7480469, -0.6220703, 0.99658203, -0.08557129, 0.08660889, 4.1757812, -1.2050781, 1.2226562, -0.56152344, -1.3320312, -0.18432617, 1.5908203, 0.7861328, -0.02229309, -1.1767578, 0.01953125, -2.6230469, -4.625, -0.7133789, 1.8193359, -0.98095703, 0.7998047, -2.0429688, -0.03302002, 0.76953125, -0.49047852, -0.23535156, -3.5507812, 1.6035156, -0.29052734, 0.49023438, -0.24401855, -0.012176514, 0.4099121, 0.3581543, -1.765625, 1.6015625, 0.27026367, -3.2285156, -1.6425781, 2.9941406, -1.7119141, -0.91748047, 1.6083984, -2.0117188, -1.4863281, 1.2685547, 0.12524414, -1.0332031, 1.8359375, -3.2636719, 0.640625, 1.0439453, -2.3066406, 0.8442383, 0.5732422, 0.2130127, 0.5708008, 0.82958984, 2.9628906, -0.14526367, -0.38745117, 1.2080078, 1.0166016, 0.49072266, -1.9111328, -0.59521484, 0.38549805, 2.0527344, 1.046875, -2.0410156, -1.2998047, -2.5957031, -1.8115234, 0.22875977, -0.87939453, 0.54003906, 0.6855469, 1.6289062, 0.59521484, -1.3945312, 0.47729492, 0.93115234, -1.3154297, -0.8828125, 0.93066406, -1.2128906, 2.234375, 1.0966797, -1.5214844, -3.3632812, -0.94873047, 1.4384766, 3.1054688, -1.1992188, 1.203125, -0.26660156, -0.51416016, 1.1572266, -0.6064453, 0.23510742, 0.9941406, 1.3457031, -0.97802734, -1.28125, 0.7836914, -2.1152344, 0.6171875, 1.4228516, -0.14331055, -0.45751953, 0.6152344, 0.79052734, -3.5742188, -0.19555664, -0.88916016, 0.87158203, -1.4482422, -1.4335938, 1.6142578, -2.5957031, 0.62939453, -1.6699219, -2.2128906, -2.3789062, 2.7636719, 0.38793945, 0.5126953, 0.6352539, 1.7070312, 0.83251953, -0.5024414, 1.1689453, -1.0048828, -0.7055664, -1.0976562, -1.2255859, 0.8574219, 1.7607422, -1.5888672, 0.56640625, 0.5263672, 1.1689453, 0.37060547, -0.5595703, 0.2590332, 2.6464844, -0.52001953, 2.0742188, 3.8320312, 0.41552734, 2.9492188, 1.0732422, 3.5625, 2.65625, -0.73828125, 2.4433594, 1.8955078, 0.36572266, 0.7495117, -0.9550781, 0.5732422, -1.2207031, 0.8417969, 0.17163086, 0.18701172, 2.9882812, -2.3339844, -0.68896484, -0.51904297, -0.92089844, -2.2890625, 0.80322266, -2.4785156, 0.4099121, 2.125, 0.609375, 0.5698242, 1.6220703, -1.3623047, 0.7314453, 0.5126953, 3.3261719, -2.6386719, 0.5209961, -1.8222656, -1.6308594, 0.7055664, 2.1035156, 0.9584961, 0.25561523, 0.88916016, -0.83203125, -0.56347656, 0.8642578, 0.7519531, -1.2890625, -0.5097656, -1.1914062, 1.5087891, 2.7128906, -2.3574219, 0.67626953, 0.9926758, -2.2773438, -4.09375, 2.3769531, 0.7163086, -0.018218994, 0.6147461, -4.890625, 0.8730469, -0.2709961, 0.8544922, -2.3046875, -0.5410156, 0.6435547, -2.8476562, -0.24645996, -0.08428955, -2.5214844, 1.9882812, 1.609375, -2.1894531, 0.5810547, 1.7236328, 1.5849609, 0.07067871, 0.7524414, -0.4345703, 0.42626953, -1.2265625, 3.1347656, 0.28955078, -2.9765625, 1.4130859, 3.3515625, 0.8417969, 0.6899414, -0.6611328, -1.0537109, 1.2851562, 0.63427734, -0.4309082, 0.6586914, -2.1152344, -0.2619629, 0.7373047, 0.05606079, 0.06225586, -1.5478516, 0.3256836, 2.0058594, -2.7246094, 0.8803711, 1.1601562, -1.1367188, 2.4140625, 1.0751953, -1.7089844, -0.8286133, 0.10632324, 1.0009766, -2.3945312, -0.5644531, 0.73828125, 0.4140625, 0.7910156, -1.6572266, -0.8251953, 1.046875, -1.2373047, -2.3007812, 0.18115234, -0.6118164, 0.112854004, 0.30688477, -1.7802734, 0.8017578, 3.6464844, 0.6328125, 0.90625, -1.0957031, -1.5458984, -0.2866211, -1.5253906, -0.7763672, 0.013198853, 2.4648438, -0.13049316, 1.0878906, -0.24902344, -3.5371094, -0.39990234, -1.0966797, 1.9443359, -0.31689453, -0.7949219, 0.78564453, 1.8896484, 2.4296875, -0.3540039, 0.66552734, -0.6503906, 0.64697266, 1.2402344, -1.4511719, 1.1884766, -1.9101562, 0.5786133, 1.7802734, 2.6503906, 1.2949219, -0.90722656, 0.09399414, 2.4355469, 0.66845703, -0.5102539, 0.4428711, -0.22509766, 1.1943359, 0.6875, 1.1289062, 3.0351562, 1.5302734, -1.1591797, -1.7246094, -0.20910645]}, "B001ABPB2U": {"id": "B001ABPB2U", "original": "Brand: Stansport\nName: Stansport Propane Appliance to Distribution Post, 5 Feet\nDescription: \nFeatures: Works on 30 inch distribution post\nWorks on all propane appliances\nHeavy duty quality hose\nBrass fittings for security to appliances and tanks\nBuy more than one to put on distribution post\n", "embedding": [-0.29345703, 0.5253906, 1.5947266, -0.8178711, -0.066589355, 0.5732422, 2.1152344, -1.3369141, 0.24047852, 1.7783203, -0.3359375, 0.6977539, -0.62841797, -3.2695312, -0.5703125, 0.77441406, 0.2915039, -1.0068359, 1.1074219, 0.42163086, 0.91552734, -0.3330078, 1.7412109, -2.3378906, -0.4645996, 0.2866211, 5.6835938, -1.0009766, 0.49682617, -0.625, -0.085510254, -0.4387207, 1.3222656, 2.1328125, -2.9140625, -0.15246582, 0.5185547, -0.69140625, -1.9472656, 0.59814453, -1.5761719, 1.7636719, 2.2128906, 0.9863281, -2.5371094, -1.4589844, 1.5263672, -0.64404297, 0.28833008, 0.73583984, 0.85302734, 0.42114258, 0.064453125, 1.5673828, 1.7177734, 0.11706543, 1.9130859, -1.2685547, 0.42773438, 1.3681641, 1.2792969, 0.42651367, -1.5419922, 0.61816406, -1.4794922, 0.9165039, 0.07525635, -2.9765625, -0.38916016, 0.70703125, 1.0810547, 0.5620117, -0.3046875, -1.0810547, 1.3847656, -0.12731934, -4.6328125, 0.9658203, 0.39282227, -2.1875, -1.4892578, 2.6933594, -1.3076172, 0.2607422, -0.19665527, -0.0128479, -2.7382812, -0.98095703, -2.015625, -1.0332031, -2.1171875, 3.1464844, -1.9433594, -4.8515625, 0.7192383, -0.028701782, 0.72802734, 1.0410156, -0.41748047, -0.79052734, 0.74902344, -0.17346191, 1.0537109, 2.3398438, -0.8618164, 1.0107422, 2.8769531, 0.47509766, -0.7495117, -1.2050781, 0.19177246, -1.5742188, 2.1835938, -1.1132812, 0.51904297, -0.7836914, -0.6333008, 0.59716797, 4.1679688, 1.3994141, 3.4414062, 0.15063477, 2.2246094, 2.6953125, 0.5385742, 2.4980469, -2.4394531, 3.21875, 3.2558594, -1.6689453, -1.3222656, -1.5712891, 0.79248047, 1.0146484, -0.034973145, -1.9404297, -2.15625, -1.1845703, -0.034301758, -1.9765625, -2.5800781, 0.05831909, 0.42797852, 0.081848145, -4.03125, -1.2021484, -0.8466797, 1.046875, -0.99902344, -2.03125, -0.01184845, -2.1875, -1.2675781, 0.5908203, 0.042297363, 1.1035156, -0.4729004, -1.5273438, 0.89697266, 1.09375, 2.4121094, -1.8496094, -2.671875, 1.1923828, 0.65771484, -5.2421875, 1.7167969, -0.18041992, 0.1973877, 1.2636719, -0.07659912, -0.76953125, -0.27441406, -1.6464844, -0.5942383, 1.1533203, 0.12609863, 0.52490234, -0.27856445, -1.5673828, -3.2324219, 0.026657104, -1.5576172, -1.8222656, 0.16442871, -0.9301758, -0.1541748, -0.097595215, 0.33691406, -0.7919922, -2.1464844, 1.0224609, -3.4941406, 0.24047852, 0.24572754, -2.7304688, -2.8066406, -3.0917969, 1.7539062, 2.8203125, -1.5068359, -0.96728516, -0.35913086, 1.1865234, 0.23046875, -0.41333008, 0.7993164, 3.4121094, -1.1748047, 1.6425781, 0.36938477, 0.7001953, 2.6777344, -2.8828125, -0.87109375, -2.4238281, 2.6152344, 0.055877686, 2.234375, 1.3564453, -0.38916016, 1.6845703, -0.74365234, -0.6196289, 1.1201172, 1.7216797, -0.47558594, 1.2128906, -2.1132812, 1.3378906, 1.4150391, -0.81347656, 0.3642578, 0.09301758, 0.734375, 2.6640625, 0.23962402, -1.4287109, 1.875, 3.5429688, 0.7416992, -0.24682617, 0.8510742, 0.609375, -0.421875, -1.6523438, -0.38110352, 0.17272949, 0.1940918, 2.9902344, 0.42163086, -0.28027344, 0.54785156, 0.48632812, 1.3808594, 1.2324219, 1.7900391, 1.0859375, -1.2314453, -1.4599609, 2.5566406, -1.4980469, -0.76708984, -1.5869141, 2.2890625, 0.5283203, 3.2988281, -1.7695312, -1.3349609, -0.9916992, -0.5576172, -0.12902832, 1.3730469, -0.6933594, 1.3222656, -0.02746582, -1.6503906, 2.8925781, 0.74316406, 1.2744141, -1.0878906, 2.2636719, 2.1972656, -1.1679688, 1.2568359, 0.28710938, 1.1230469, 0.6972656, -1.2236328, 0.03387451, 3.6035156, -1.2236328, -2.5234375, 1.2382812, 0.59472656, 0.29736328, 1.7099609, -0.12182617, 1.0517578, -1.0947266, 0.7011719, -0.014175415, -1.5283203, 3.1054688, 1.9980469, -0.24291992, 1.0185547, -2.1894531, -0.16467285, 0.1706543, -3.5351562, -2.0800781, 0.84814453, 1.0927734, -3.0039062, 0.953125, 2.1191406, -2.6367188, 0.6713867, 0.17199707, 0.16259766, 0.14916992, -0.47045898, 0.5541992, -1.7060547, 0.6118164, -0.23571777, 2.109375, 1.359375, 1.2060547, 0.042266846, 0.28173828, 0.2578125, -2.3125, -1.7216797, 1.2226562, -0.86083984, -1.1230469, 2.5273438, 0.6821289, -0.3708496, 1.8681641, -1.9316406, 1.2138672, -1.1210938, -2.0273438, -0.42089844, 1.5986328, -0.3034668, 1.1386719, 1.0214844, 3.2050781, 0.43774414, -1.5986328, -2.9589844, 0.37597656, 0.55810547, 0.12597656, -1.4912109, 0.49853516, 0.76953125, 0.96484375, -1.4921875, -1.3564453, -0.234375, -1.3691406, 1.3583984, -2.6855469, 0.4248047, 1.3808594, -0.91552734, -1.8554688, 1.3154297, -0.5239258, -1.6396484, -0.6875, -0.58203125, 2.0019531, -1.3320312, 0.9086914, -2.4257812, 0.70947266, -1.1904297, -0.30395508, -1.4560547, 0.6723633, -1.0898438, -1.125, 0.47045898, -3.0898438, 1.1054688, -0.8666992, 0.24279785, -0.22705078, 0.20471191, -1.4443359, 0.06994629, 1.0703125, 0.69091797, -0.084228516, -0.47338867, 0.30566406, 2.6191406, -1.2314453, 0.90478516, -1.0019531, -0.2944336, 1.2392578, 0.1149292, -1.8916016, -0.7446289, 2.7949219, -1.8603516, -0.08300781, 1.2324219, -0.6791992, 0.74609375, -0.2265625, -0.69189453, 3.28125, -0.27514648, -2.2128906, -0.52001953, 1.3457031, 2.1503906, 0.23486328, 2.4667969, 0.25854492, 0.48095703, 1.1289062, -1.0058594, -1.4833984, -2.3417969, -0.984375, 3.5839844, -0.7939453, -0.67285156, -0.33276367, -0.32739258, -1.0292969, 0.08062744, 0.11437988, 0.36083984, 1.6298828, 1.6923828, 0.2783203, -1.1835938, 0.6064453, -0.028457642, -0.3413086, 0.5942383, -1.078125, -2.5566406, 0.123535156, -2.1757812, -0.0021305084, 1.5322266, 1.2402344, 3.1699219, -0.69384766, 1.1425781, 0.7504883, 0.8256836, -0.53125, -0.67578125, 0.5517578, 1.9423828, 1.6669922, 1.0683594, -1.1386719, 1.4326172, 1.2734375, -1.0302734, -0.6904297, 2.2714844, -0.61572266, 0.08312988, 0.6123047, -0.7709961, -0.29736328, -1.2021484, 0.5175781, 0.42089844, -2.515625, 0.79589844, 0.7290039, 0.34423828, -1.9169922, -1.2880859, 0.38208008, 0.1887207, -2.9492188, 0.36401367, 0.2208252, -0.16052246, -2.9765625, -2.9140625, 1.4453125, 1.0048828, 1.1386719, 0.5654297, -1.4912109, -0.099609375, -0.3515625, 2.6074219, -0.546875, 0.63964844, 0.5439453, 0.4567871, 1.5908203, -2.3359375, 0.5683594, 0.29736328, -2.2265625, -0.101989746, -0.51416016, -0.38891602, -1.2617188, -0.59521484, 0.5048828, 0.9458008, -0.046691895, 1.0009766, -1.6269531, 2.4882812, -0.8691406, 0.44921875, 0.36083984, -3.9960938, 0.29882812, -1.8730469, -2.2519531, 0.69677734, -0.7001953, -0.6069336, 1.7919922, 2.2246094, 0.09301758, 1.3476562, 2.0722656, -3.4707031, -2.3378906, -0.5629883, -0.41064453, -2.9199219, -1.5712891, -0.035125732, 1.9345703, -2.265625, -0.734375, -0.40405273, -1.6767578, -0.31762695, -1.6601562, -0.68359375, 1.015625, 1.0488281, -0.9169922, -0.16687012, 0.2512207, 3.3164062, -2.1816406, -0.7128906, -0.24975586, 1.4033203, 2.7871094, 1.3652344, 0.2849121, 1.3798828, -0.77441406, -2.2226562, -1.1982422, -1.4013672, 0.47998047, -0.4958496, -1.5917969, -0.9267578, -1.9980469, 1.0917969, -1.3759766, 0.4555664, 0.05621338, -1.4453125, 1.2451172, -0.8071289, -1.5732422, 1.7216797, 0.34716797, -2.2382812, 1.796875, 1.1591797, -0.47680664, -2.8457031, -1.5957031, -1.015625, -1.1640625, 1.9384766, -2.4179688, 0.3347168, -2.1054688, -2.0097656, -1.140625, 0.93847656, -1.0820312, -0.61572266, 1.3085938, -0.3474121, -1.53125, 0.036346436, 0.2602539, -0.75439453, 1.3476562, -0.9663086, -2.1855469, 1.5751953, 1.9023438, -0.86572266, -2.6191406, -0.6098633, -0.23803711, -3.109375, -1.3300781, 1.4501953, -1.8144531, -2.5351562, 2.1992188, -0.8574219, 2.0214844, -0.4729004, 2.0546875, 1.5888672, 0.2668457, -0.9863281, 1.6435547, -1.1474609, 3.03125, 3.1269531, 1.3027344, -0.22436523, -0.45654297, 2.4160156, -0.35888672, 2.2851562, -0.9638672, 1.1982422, 1.7109375, 0.016616821, 1.1386719, -0.64453125, -0.5654297, 1.953125, 0.08099365, 0.80322266, 1.0058594, -3.1835938, -0.19641113, -1.4101562, -1.4423828, 0.73583984, 0.5463867, -2.328125, 2.6679688, -1.5849609, -2.8359375, 1.4462891, 2.9355469, -0.7553711, 1.9580078, -1.3164062, -0.796875, -0.32666016, -2.5039062, -1.6396484, 0.44213867, -0.60595703, 1.2314453, -1.9199219, 0.8652344, 0.20910645, 2.2109375, -0.89746094, -0.4741211, 0.8671875, -0.65527344, 0.0769043, -1.5, 0.7265625, -1.3564453, -2.8085938, 1.5175781, 0.87939453, 0.72509766, -0.9140625, 2.3886719, 0.18518066, -1.5117188, -0.8520508, -1.5634766, 1.2958984, -0.9375, 0.2529297, 3.3457031, 1.5410156, -0.67822266, 0.31030273, -1.640625, -0.9472656, 1.7099609, 2.8359375, 1.0019531, 0.4387207, 0.012748718, -1.1962891, -4.5351562, -2.1816406, -0.8901367, 0.030456543, -0.095703125, -2.5859375, -1.9765625, -0.21850586, 1.3134766, 1.3769531, -0.7373047, 0.7915039, 2.1289062, 1.7490234, 0.18969727, -1.6943359, -0.09875488, 0.41455078, -0.1472168, -1.3681641, 0.081604004, -0.8676758, -2.8828125, 2.0253906, -0.34985352, 2.0097656, 1.5517578, -0.13146973, 1.5244141, 1.8818359, 0.6894531, -2.5429688, 1.2587891, -4.1523438, 0.049804688, 1.2353516, -1.2001953, -0.6425781, 1.7558594, 0.056121826, 1.7441406, -0.6230469, 0.9267578, -1.5888672, -0.04019165, -1.0664062, 1.1455078, -0.36889648, 0.35131836, 1.0195312, 1.0654297, 2.2558594, 3.0234375, -1.2167969, -1.3300781, -2.4941406, -1.0712891, 0.36157227, -1.5615234, 0.7504883, 0.63671875, 2.2382812, -0.16674805, -0.60302734, 0.7192383, -0.62109375, 0.29541016, 2.5527344, 0.77734375, -1.7753906, 3.0878906, -0.8935547, 0.5732422, -2.3242188, -0.6196289, 0.41503906, 2.9882812, 0.8466797, 0.9091797, 1.7021484, -1.2744141, 0.3684082, 1.6826172, 0.3544922, 1.7773438, 2.7265625, -2.9003906, -0.48413086, 1.4863281, 0.9658203, 2.5761719, 1.2949219, 0.40649414, 0.34350586, -0.26171875, 1.3681641, 0.22058105, 1.3935547, -0.69091797, 1.7119141, 0.0206604, -3.1640625, 1.9814453, -1.7060547, 0.8354492, -0.06210327, -0.5073242, -2.4433594, 0.55908203, 0.7260742, -1.640625, 2.1777344, 1.0419922, 0.25317383, -0.82666016, 0.5180664, 1.4121094, -0.85302734, -0.52197266, -0.19763184, 2.2324219, 1.8496094, -1.7773438, -0.3125, 0.47680664, 1.953125, -2.2109375, -0.18041992, -0.8955078, 1.03125, -0.13208008, 0.859375, 2.8398438, 0.5097656, 1.7548828, -0.12573242, 0.97753906, 2.3125, -1.7958984, 1.1220703, -0.1977539, 0.027511597, -0.93310547, -1.6025391, -1.1269531, 0.88427734, 0.10760498, -0.734375, -0.23779297, 1.5439453, -2.140625, 1.5957031, 1.0205078, 0.8588867, -2.3417969, -0.22839355, -3.1523438, 0.09472656, 2.8125, 1.328125, -0.11047363, 1.2119141, 0.61035156, 1.0917969, -0.8520508, 0.23254395, -0.35205078, 0.46069336, -1.5742188, -0.60791016, -0.26489258, 2.25, 0.32373047, 0.7792969, 0.2529297, 0.85839844, 0.31811523, 0.24609375, -0.57714844, -0.5317383, 1.3691406, -0.12915039, 1.5439453, 1.234375, 0.94384766, 2.2539062, 1.8935547, -0.765625, -2.8125, 3.46875, -1.0986328, -0.53759766, -0.09954834, -3.7675781, -1.53125, -0.28564453, -0.8803711, -1.0761719, 0.3864746, 1.1923828, -0.9135742, 1.7099609, 1.171875, 0.9345703, 1.4667969, -0.099609375, -2.4746094, 2.71875, 1.1201172, 2.0429688, 0.7993164, 0.5449219, 1.0185547, 0.8339844, -2.2929688, 4.203125, 0.12988281, 0.38061523, 0.9609375, 2.2324219, 2.0820312, 0.02192688, -0.8618164, -2.2597656, 2.2597656, 1.9257812, -2.1542969, -2.9902344, -2.1386719, -1.2392578, 1.46875, -0.99658203, -0.42041016, -2.4980469, -3.0585938, 0.15441895, -1.6582031, 2.2089844, 0.19494629, -1.8144531, -0.75634766, -0.0680542, -0.7734375, -1.4394531, 1.0351562, 2.2890625, -1.3896484, -1.5273438, 1.1054688, 2.71875, 0.22729492, -1.6074219, 0.3581543, 0.7402344, -0.51708984, -1.0039062, -0.08703613, -0.5463867, 0.5942383, -1.0537109, -1.5439453, -0.007980347, 1.7958984, 0.59033203, -1.15625, -1.0673828, -0.64501953, 0.8828125, 0.23962402, -1.1787109, 1.5234375, 1.7568359, -0.8823242, -0.52978516, -0.6801758, -0.57421875, -1.734375, -0.5878906, 0.3955078, -0.7529297, 0.51171875, 0.7441406, 2.5625, 1.9785156, 0.93652344, 1.4599609, -1.1787109, 0.34277344, 0.5654297, 0.47143555, 0.9765625, -0.18884277, -0.44506836, 0.12915039, 3.8554688, 0.30419922, -0.7392578, 0.4555664, 2.734375, -0.9863281, -0.4140625, -1.1435547, -0.05657959, 0.9301758, -0.8222656, 0.20544434, 0.93847656, 0.42016602, -0.12731934, -3.8808594, -0.043884277]}, "B01N1RO9WG": {"id": "B01N1RO9WG", "original": "Brand: GasOne\nName: Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove\nDescription: \nFeatures: \u2713 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included)\n\u2713 PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame\n\u2713 EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness***\n\u2713 SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism\n\u2713 WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind\n", "embedding": [-2.2714844, -0.35229492, 0.7631836, 0.29003906, -0.82177734, 2.6425781, -0.0056495667, -1.265625, -0.4501953, 1.1816406, 1.0048828, -0.5078125, 0.099487305, -1.5634766, 1.1171875, -0.44628906, 0.95410156, 0.8461914, 0.17260742, 1.8486328, 2.3691406, -0.3203125, 1.7714844, -0.2607422, -0.6582031, 1.5703125, 3.8554688, -4.15625, 0.24853516, -0.99121094, 1.1210938, 1.2626953, -0.16772461, 2.0253906, -3.5039062, -2.1328125, 0.39819336, 0.10870361, -2.3457031, -1.5195312, -2.3261719, -0.74658203, 2.0410156, -0.11273193, -0.6064453, 0.039276123, 0.84277344, 0.3623047, -1.90625, 1.4169922, 1.3173828, 1.2451172, -1.3701172, 1.9980469, -0.5263672, 1.0712891, -0.18652344, -1.0732422, 1.875, 0.70947266, 1.8271484, 1.1318359, -1.0126953, -0.28344727, -1.46875, -0.81347656, -0.017028809, -0.14501953, -2.1875, 0.20703125, 2.7050781, 0.81152344, 0.15209961, 0.95166016, -1.1445312, -1.3955078, -3.2441406, 1.2734375, 1.7988281, -0.66796875, -0.58203125, 0.6333008, 1.2041016, -0.95166016, 0.3359375, 0.4921875, -0.23742676, 0.4633789, 0.085876465, 1.4384766, -2.09375, 1.6552734, -2.0761719, -2.6347656, 2.4433594, 0.18469238, 0.16625977, 1.1552734, 1.0107422, 0.9482422, -1.3222656, 1.21875, 0.46240234, 0.20715332, -1.5800781, -1.9248047, 3.3300781, 0.94384766, -3.7695312, 1.2744141, -2.1523438, -0.953125, 0.68359375, -0.63916016, 0.105773926, 1.4277344, -0.37280273, 0.72998047, 3.8632812, -0.028823853, 2.3378906, -1.5371094, 1.0791016, -1.6074219, 0.734375, 2.3183594, -1.5185547, 0.21398926, 4.6015625, -0.5859375, -0.05456543, 1.2646484, 2.5371094, -2.2597656, -0.51220703, -2.2734375, -1.515625, -2.3164062, -3.3027344, 0.9375, -3.3828125, 1.6865234, 0.1842041, -1.9375, -3.8476562, -1.1308594, -1.296875, 1.640625, 1.1894531, -0.77001953, 1.5507812, -1.9404297, 0.26611328, -2.9238281, 1.7373047, -0.70166016, -0.9824219, -1.1269531, 2.4785156, 1.6914062, -0.703125, -1.453125, -2.6347656, 1.5810547, 0.4086914, -1.1533203, 1.3466797, 1.6728516, -0.7910156, 1.3876953, 1.0771484, -0.6972656, -0.8535156, 0.016555786, -0.013893127, -1.0097656, -1.7138672, 2.1425781, -0.43725586, -0.4494629, -3.2871094, -2.7070312, 1.7070312, 0.2800293, 1.1464844, -1.9404297, 0.8886719, -0.5463867, 0.11016846, -2.0253906, -1.0322266, 1.2441406, 0.6923828, 0.22143555, 1.6591797, -1.5439453, -1.0371094, 0.15637207, -0.13684082, 1.078125, -0.01159668, -1.9121094, 0.5883789, -0.14099121, -2.3261719, -2.3359375, 0.82958984, -2.4570312, 1.6367188, 2.5957031, 1.7128906, 0.60302734, 2.109375, 0.1821289, -1.2958984, -1.9072266, 1.9619141, 2.3261719, 1.5244141, 1.8369141, 0.25708008, -1.9667969, 1.6132812, -0.28515625, -0.3696289, 2.9140625, 1.2617188, 0.18981934, -2.0136719, -3.0917969, 2.578125, 0.6333008, 1.3378906, 0.32861328, -0.5810547, 0.9223633, 1.4169922, -0.7529297, -0.03805542, -0.72558594, -0.56884766, -0.38134766, -0.6015625, -1.3173828, -2.296875, -0.36108398, 0.58984375, 0.18762207, 2.1191406, -0.17114258, -0.011962891, 0.72998047, 0.030334473, 0.9448242, -2.9863281, -0.23278809, 1.3681641, 1.3183594, -0.8676758, 0.19104004, 1.8505859, 1.6767578, 0.47802734, 0.23608398, -0.57421875, -1.5625, 2.1972656, 0.3515625, -1.1464844, 0.7553711, 0.9160156, 0.20422363, 3.3164062, -1.3583984, 1.8164062, 0.9814453, -1.4306641, 3.5820312, 0.6948242, 2.1621094, 1.0068359, -1.7421875, 0.43676758, -2.0019531, 1.7626953, -0.064453125, 3, 0.038360596, -2.6484375, -1.703125, 5.375, -0.95458984, -3.2851562, 1.6279297, -2.0742188, -0.18444824, 1.7763672, 0.34545898, 0.34423828, -1.1621094, 1.2792969, -0.6567383, -0.025146484, 0.9042969, -1.5947266, -0.6977539, -0.27514648, -1.8583984, 1.3632812, 0.7890625, -0.46264648, -0.1116333, -1.4648438, -0.7788086, -3.1152344, -1.0830078, 2.6894531, -1.3427734, 0.81396484, 1.2158203, 1.2265625, 2.5800781, 0.34692383, -2.1328125, 0.018814087, -0.19165039, 0.50634766, 2.0898438, -0.25732422, 0.14038086, -0.74316406, -1.9482422, 0.9277344, -2.2910156, -1.6962891, 0.7651367, -0.796875, -4.75, 1.2568359, -3.6835938, -0.49047852, 1.3701172, -4.109375, 1.2167969, -1.5810547, -3.0351562, -0.19445801, -0.7636719, -1.2910156, -0.78271484, 1.3720703, 2.2246094, 0.5253906, -2.296875, 0.66064453, 0.63671875, 0.14855957, 0.5986328, -0.5463867, 1.1474609, 0.6040039, 0.012016296, -1.9101562, 0.020446777, 0.61865234, -2.2089844, 1.5175781, -5.2578125, -1.0888672, -1.5400391, 0.8774414, 0.89208984, 0.023086548, -2.6289062, -1.5644531, 1.3759766, 1.4375, 2.75, -0.70751953, 2.7421875, -0.89501953, -0.578125, -0.103637695, -2.1953125, -2.8496094, -0.8925781, 0.13793945, -1.8632812, 0.34692383, -2.4453125, 0.9550781, 0.41625977, -0.35180664, -1.3291016, 0.50683594, -0.84277344, 1.1669922, -1.5556641, -0.8535156, 0.20349121, -1.5322266, -0.50390625, -4.2890625, -1.0146484, 0.05328369, -3.1230469, 0.22338867, 1.1513672, 0.6298828, 1.4726562, 0.9790039, 1.2597656, -0.23547363, 0.6010742, -0.23059082, -3.3652344, 2.3398438, 0.11694336, -1.1054688, -0.26367188, -2.2519531, -0.5722656, -1.3925781, -0.7470703, 2.8300781, 0.25683594, 4.3046875, -0.83691406, -1.1220703, 1.3359375, 0.62060547, -0.56396484, -2.3867188, -2.0878906, 3.0332031, -2.6113281, -1.3505859, 2.0722656, 1.7617188, -3.4375, -1.0517578, 1.8320312, 0.5336914, 2.1035156, 1.3769531, -0.5805664, -0.34399414, -0.21704102, 0.6411133, 2.7207031, -0.08843994, 2.5292969, -0.5371094, 1.1083984, -1.7675781, 1.4316406, 2.3984375, 2.1132812, 3.2441406, 1.2587891, 0.76220703, -2.3417969, -0.15344238, -1.2460938, 1.5839844, 1.4179688, 4.234375, 0.22058105, -0.3269043, -1.1425781, -1.4130859, 1.1708984, -1.8144531, 0.36645508, 0.8574219, 0.7602539, -1.0566406, 0.79541016, -1.0332031, -0.19226074, -1.1513672, 1.8417969, 0.11602783, 0.15539551, 2.0292969, -0.6074219, 0.8334961, -2.3867188, 0.7988281, -2.2675781, -0.11663818, 1.6699219, 0.031829834, -3.6328125, -1.0048828, 0.71240234, 0.18078613, 0.6464844, 2.6953125, -0.9941406, -1.7734375, 2.1132812, -0.7866211, -1.3193359, 1.1396484, -0.34423828, -0.07080078, -0.7104492, 1.3935547, -0.76220703, -1.1894531, 1.8193359, -0.026107788, -2.3710938, 3.0605469, -2.6582031, -0.82373047, 1.4433594, -1.9121094, 0.15661621, 1.2978516, -1.6269531, 2.140625, -1.3691406, 4.1484375, -0.9560547, -1.9199219, 2.4921875, -3.046875, -0.8803711, -2.5878906, -4.015625, 1.7929688, -1.234375, 0.23132324, 3.8164062, 0.9038086, 0.73046875, 1.4951172, 0.31152344, -2.0898438, -2.390625, -0.38500977, -0.5888672, -2.4453125, -0.93408203, 0.27612305, 1.3193359, -1.4023438, -0.65234375, 1.5390625, -0.42651367, 0.54003906, 0.50927734, -2.2734375, -0.2388916, -0.4321289, 1.3466797, -0.27075195, -1.5878906, 0.87402344, -2.7832031, 0.15161133, -3.0917969, 1.8857422, 2.3125, -1.6757812, -1.2988281, 3.359375, 2.1171875, -1.3984375, 0.053375244, 1.1865234, 0.62060547, -0.22314453, -2.2929688, -2.0527344, 0.5644531, 0.48168945, -0.17907715, 0.92529297, -3.2265625, -1.4902344, 3.4179688, 1.9277344, 1.4404297, 1.3271484, 1.4570312, -1.7158203, 1.2402344, -1.2324219, -1.8505859, 0.54833984, -0.49609375, 0.26733398, -0.29467773, 0.60253906, -2.5625, 1.4589844, -1.4667969, 0.21228027, -2.9902344, 2.2148438, 0.92578125, 0.25170898, 1.6679688, -0.22631836, -0.93652344, -0.2121582, 1.3505859, -0.76123047, 1.5449219, -0.72753906, -0.056793213, 0.5522461, 1.0986328, -1.671875, -0.9223633, 3.3984375, -0.671875, 0.91259766, -1.2246094, 0.7685547, -1.0097656, -0.5722656, 0.2939453, 0.59472656, 1.4228516, -0.9248047, 0.4038086, -0.052703857, 0.67529297, -2.0839844, -1.1982422, 1.4775391, 0.7348633, -0.1439209, 0.68652344, 0.94140625, -0.55078125, 1.3623047, 0.50878906, 1.7509766, 0.06451416, 0.040008545, 1.2412109, 1.7558594, -2.03125, -1.0205078, 1.84375, 2.6660156, 0.8857422, 3.4394531, 0.45141602, 0.40356445, 0.95996094, -1.0195312, -2.7402344, -0.15734863, -1.015625, -0.6665039, 1.4082031, 0.93310547, -1.8935547, 0.06573486, 3.1308594, -0.18786621, 0.39257812, -0.09979248, -2.0644531, -1.0292969, -4.234375, -0.4609375, -1.2080078, -0.049316406, 0.34765625, -1.5917969, 0.25390625, -0.5390625, 1.4169922, 1.1484375, -0.6933594, 0.031585693, 1.9619141, -1.40625, 1.7441406, -0.19921875, -1.1396484, -2.6933594, 2.7792969, 1.9013672, 0.51171875, 2.0429688, 1.6494141, 0.38061523, -2.3105469, -0.69677734, -1.2773438, 0.06750488, -1.6640625, -1.0507812, 1.7539062, -1.3388672, 0.9379883, -0.49365234, -1.4101562, 0.051849365, 2.1894531, -0.46484375, 1.2451172, -1.9707031, -0.7573242, -1.8300781, -5.3359375, -1.9208984, 1.9082031, -0.80615234, -0.3413086, 0.96240234, -0.24084473, -0.38964844, -0.5522461, 1.0019531, -2.40625, 1.4257812, -1.6972656, 0.48486328, -1.1572266, -0.50146484, -0.039733887, 1.0927734, 1.3251953, -0.7548828, 1.9423828, -1.2060547, -1.2353516, 0.59716797, -0.39794922, 1.0166016, -0.033203125, -1.6162109, -1.9111328, 2.0410156, -0.4309082, -2.8535156, 1.6787109, -0.7368164, -0.035125732, 0.97558594, -0.9013672, 0.76904297, 1.8398438, -0.30517578, 0.76953125, 0.49047852, 0.20349121, -0.89208984, 2.0683594, 1.359375, 0.47460938, -0.6303711, -1.5380859, 1.9726562, 1.0410156, 0.62890625, 1.2089844, -0.8623047, -2.0957031, -1.7871094, -1.2470703, -0.4975586, -0.92871094, -1.1210938, 0.27929688, -0.23791504, 1.0527344, 0.75878906, -0.52734375, -1.0117188, -0.6176758, -0.28051758, 1.2373047, -1.6083984, 3.3144531, 0.3869629, 0.390625, -3.046875, -0.9892578, 2.1210938, 1.0136719, 1.1835938, -0.44750977, 2.2441406, -0.63720703, 1.4755859, -0.6166992, 2.65625, 2.9511719, 1.90625, -1.3144531, 2.7011719, 2.1660156, -0.18273926, 1.1738281, 0.8442383, -0.8847656, -1.4404297, 2.8359375, 0.86865234, -0.6401367, 2.453125, -0.7392578, 1.6044922, -0.5786133, -1.5966797, 0.46606445, -0.66845703, -0.7817383, -1.0605469, -1.6123047, -1.7617188, 0.20397949, 2.1328125, -1.1083984, -0.38427734, 1.9707031, -0.8911133, 0.69921875, 2.2265625, 1.4628906, -2.2460938, 0.93896484, -0.24414062, -1.0966797, 1.3525391, -2.2441406, 0.6933594, 3.0878906, 0.3701172, 0.46972656, 1.9335938, -0.076049805, 2.5234375, 2.3457031, 1.6816406, 1.7099609, 0.99902344, 2.0019531, 1.7421875, 0.29541016, 0.98828125, -0.2578125, 1.3857422, 1.1044922, 1.3681641, -0.66064453, -2.2675781, 1.34375, -0.57373047, -1.6152344, -1.1884766, -0.03375244, 0.86865234, -4.703125, 0.10321045, 0.6166992, -0.11553955, -1.8203125, -0.81884766, -0.6088867, -0.1928711, 0.6772461, 0.046295166, 0.73535156, -1.2939453, -1.3173828, -1.4472656, 0.6850586, 1.9453125, -0.58691406, 1.078125, -1.1826172, -1.7363281, -0.055908203, 1.2744141, -1.0537109, 0.35083008, 0.1394043, 1.5888672, 1.40625, -1.5654297, 0.29296875, -2.2792969, 0.029144287, 1.1347656, 4.7890625, 0.4013672, 0.40942383, 2.0410156, -1.2666016, -2.9121094, -4.6796875, 2.5976562, 0.80859375, 1.4521484, 2.0644531, -2.0351562, 2.3691406, 0.66308594, 0.35009766, -3.5800781, 0.14978027, -0.37231445, 0.875, -0.35327148, 1.9824219, 0.16577148, 3.078125, 0.24023438, -1.375, 0.25317383, 0.27978516, -0.39404297, -1.0546875, -0.2956543, 1.5605469, 1.2939453, -1.1210938, 1.4648438, 0.36083984, -2.7929688, 0.52490234, 1.1015625, 2.2734375, 0.54541016, -0.30932617, -0.82373047, 1.7285156, -0.7348633, 1.4033203, 0.44091797, -1.2304688, -2.3320312, -2.015625, -0.048187256, -1.5361328, -2.6953125, 1.84375, -0.52978516, -1.4121094, -0.23046875, 2.0058594, -1.3955078, -0.4321289, 1.9003906, -0.41918945, 1.5595703, -1.0830078, -0.5673828, -2.1328125, -1.3867188, 0.14013672, -0.49267578, 0.89453125, -0.9951172, 0.011749268, -0.93652344, 0.7104492, 1.4824219, 1.1416016, -0.43945312, -0.0670166, -0.39257812, -0.99316406, 0.46435547, 3.2832031, -1.2597656, 0.29907227, 0.4416504, -1.7998047, -0.89453125, -0.8574219, -0.5683594, 0.3251953, 1.4580078, 0.42358398, 1.6367188, -1.21875, -2.203125, -1.4707031, -2.6074219, 1.5742188, -0.21496582, -1.078125, 1.0849609, 1.9921875, 2.4121094, -0.7578125, 0.30004883, -1.0400391, -0.4099121, 0.8569336, -1.6953125, 1.0048828, 0.53222656, 0.5493164, 0.26660156, 0.8388672, 2.0351562, 0.2055664, 1.3671875, 0.34399414, 1.7246094, -1.4404297, 0.95654297, -2.25, -0.37670898, 1.3320312, -0.8676758, 2.0566406, 1.8798828, -0.89453125, -1.65625, -0.7089844]}, "B0848RWBP7": {"id": "B0848RWBP7", "original": "Brand: GasOne\nName: GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black\nDescription: \nFeatures: \u2713 Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn\u2019t enough, gas one\u2019s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks!\n\u2713 Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one\u2019s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket!\n\u2713 Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency\n\u2713 EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time!\n\u2713 Safety 1st - top quality propane hose adapter\n", "embedding": [0.64208984, 1.5712891, -0.25390625, 0.9248047, -1.1787109, -2.0039062, 0.53808594, -0.36914062, 0.53808594, 1.2568359, 2.7695312, 1.2675781, 0.6191406, -1.5976562, 0.18725586, -0.8823242, 0.036010742, 0.21655273, 1.6142578, 2.2636719, 3.2265625, 1.6318359, 1.2509766, -1.1914062, 0.34692383, 0.85009766, 2.3398438, -1.9746094, -2.125, 0.9667969, 0.65527344, -0.26538086, -0.86865234, 0.5600586, -0.15478516, -2.0429688, -0.77685547, -0.18774414, -4.5859375, -2.0234375, -1.0966797, 2.8398438, 4.0273438, 0.06933594, -1.5488281, 0.5708008, 1.7548828, 0.3083496, 1.6123047, 0.32666016, -0.021881104, 1.3173828, -0.37817383, -0.12219238, 0.5439453, 0.9428711, 1.7675781, -3.0039062, 0.38305664, 0.93408203, 2.1484375, 0.7392578, -0.8276367, -0.116760254, 0.039367676, 1.0820312, -2.2734375, -0.18725586, -1.2822266, 0.68896484, 0.8598633, 1.4746094, 0.5258789, -1.7333984, -3.7285156, 1.2890625, -4.9140625, 0.1998291, 0.91064453, -0.24194336, -0.9765625, 1.4003906, 0.072509766, -0.5942383, -1.0517578, -0.24353027, -1.25, 2.5996094, 0.47265625, 1.0644531, -3.6835938, 3.0078125, -2.1621094, -2.5371094, -0.026000977, -0.5683594, 0.51708984, 3.1054688, 3.2441406, 0.28222656, -0.7504883, -1.8066406, -1.2128906, 2.7070312, -1.0722656, -1.4101562, -0.46850586, -0.8364258, -1.8125, 1.0136719, -0.6254883, -0.26782227, 2.4550781, -2.0605469, -0.37548828, -3.2636719, 0.96533203, -1.2939453, 2.390625, 0.23046875, 3.7519531, -0.14782715, 1.1259766, -0.3696289, 1.2822266, 0.94189453, -1.3134766, -0.022964478, 1.4189453, -0.40039062, 0.60498047, -0.46289062, 2.5625, -0.12145996, 1.0644531, -2.1914062, -0.6113281, -2.4121094, -0.94189453, -0.9848633, -4.2851562, 0.78125, 0.025863647, -0.22155762, -4.0546875, -0.022155762, -3.0605469, -0.9267578, 1.1542969, -1.9482422, 0.47460938, -3.3222656, -1.8984375, -1.6708984, 2.8730469, 0.65283203, 1.0917969, -1.7080078, 0.84521484, 2.1992188, 0.69921875, 0.42456055, -1.3681641, 1.1962891, -0.8066406, -2.1621094, 2.1933594, 0.6152344, -2.6484375, -0.2854004, 0.2006836, -0.92333984, 1.0820312, 1.0302734, -0.9135742, -1.8017578, 1.0419922, 0.8959961, 1.1015625, 0.56591797, -3.6542969, -2.2324219, -1.0019531, -2.7675781, 1.5693359, -0.65185547, -4.046875, -1.3662109, 0.23876953, -1.0488281, -0.84521484, 0.85791016, -0.35131836, 0.70654297, 0.3479004, -1.40625, -2.7636719, 0.40283203, 0.31591797, 2.2402344, -0.54541016, -0.95410156, 1.4902344, 0.75683594, -1.125, -1.6455078, 3.3027344, -1.2373047, -0.19567871, 1.8291016, -1.8046875, -0.105163574, 2.8496094, -1.1708984, -0.6152344, -1.4082031, 3.046875, 1.7001953, 0.78564453, 0.93066406, -0.9272461, -0.30151367, 1.6777344, -0.1352539, 1.8339844, 0.5341797, -1.6113281, 0.52978516, -2.1953125, -0.20727539, 1.6835938, 2.3007812, 0.7001953, 0.25756836, -0.36083984, 2.3457031, -0.43554688, 0.15283203, 1.1787109, 1.3681641, 2.2636719, 1.2236328, -2.9785156, -1.6611328, -1.8466797, 1.8046875, -1.0117188, 1.8310547, 3.7460938, -0.72314453, 0.25317383, -0.0769043, -1.9775391, -2.125, -2.640625, 0.20593262, 0.48217773, 2.5820312, -0.35327148, -1.6806641, 1.5068359, 0.45166016, 1.3945312, 0.3581543, 1.25, 0.83447266, 1.1777344, -1.6445312, -0.049224854, 1.7246094, -0.52734375, 1.3730469, 1.3183594, -2.578125, 0.53808594, 2.2167969, -1.7304688, 2.2265625, 0.78125, 0.14038086, 2.4824219, -2.9667969, 1.4023438, -3.5644531, 2.0136719, 1.9609375, 2.7324219, 0.52001953, -1.8398438, 1.3935547, 2.7539062, 0.2409668, -1.0117188, 1.7695312, 2.8417969, 1.3623047, 1.0205078, 0.18005371, 0.111083984, -0.4741211, -0.2602539, 0.8129883, -1.0488281, 0.96191406, 3.9941406, 0.61376953, -0.23205566, -0.5961914, 1.5957031, 0.9272461, -0.23449707, -1.0439453, -1.5263672, 0.5253906, -1.6787109, -0.19458008, 2.9453125, -0.8725586, -0.39794922, 2.3652344, 1.7900391, 0.4543457, 2.2636719, -0.8588867, 0.3479004, 2.1171875, -1.3828125, 0.62109375, 1.6123047, 0.57373047, 2.015625, -1.2988281, 1.9902344, -1.5712891, -0.17651367, 2.5761719, -0.62597656, -3.0253906, 1.09375, -1.1416016, -1.3398438, -0.004512787, 0.6040039, 2.7402344, 0.43310547, 1.1396484, -0.75, 0.6455078, -0.28808594, -3.5332031, -0.41064453, 1.8212891, -2.375, -0.81347656, 0.6425781, -0.4765625, -0.08404541, 2.96875, -0.72265625, 0.59228516, 2.2089844, 0.22485352, -1.4570312, -0.26098633, -2.6054688, -1.6738281, 3.328125, -3.3261719, -0.2783203, -1.6923828, 0.034240723, -1.9082031, -2.2460938, -1.3720703, -1.5507812, 0.6870117, -0.19433594, 0.76953125, -0.11126709, 1.2822266, 0.9345703, -1.109375, 1.6220703, -2.2167969, -3.3808594, -1.7011719, -0.36621094, -0.6147461, 0.4104004, -3.3554688, 0.87841797, -0.32592773, -0.67578125, 0.26538086, -0.22033691, -1.5117188, -2.1679688, 3.0390625, -2.0566406, 0.28955078, 2.2441406, -0.1887207, -2.6152344, 0.13000488, 0.42382812, -1.1865234, -0.82666016, -1.4355469, -0.453125, -0.9008789, -2.4472656, 0.47705078, 0.6767578, 0.39672852, -1.109375, -2.0761719, 0.36914062, 2.2734375, -0.8066406, 1.2011719, -1.9404297, -0.018325806, -4.0664062, -1.2802734, 1.8642578, 1.1005859, 3.8320312, 1.5722656, 1.7744141, 0.40161133, 0.61865234, -0.9941406, -0.4958496, -0.9428711, 2.6308594, -1.6835938, -0.83691406, -2.5566406, 2.5449219, -2.9765625, -0.5810547, 0.75683594, -0.53759766, 2.9589844, 0.6279297, 0.54052734, -0.94677734, 0.7583008, 0.7441406, 0.7001953, 1.4775391, 1.7255859, 3.4316406, 0.7114258, -0.22021484, 0.7602539, 0.47509766, 0.40014648, 1.4423828, 0.53125, -1.2978516, -2.8125, 0.3955078, -0.16638184, -0.1973877, 1.1181641, 1.203125, 0.26879883, 1.7519531, -0.05505371, 1.0019531, 1.4677734, -0.38964844, -1.2666016, 0.8564453, 1.4980469, -0.38623047, 1.1347656, -0.3918457, -0.48095703, -0.40673828, 0.39404297, 2.8964844, 0.8540039, 0.14672852, -0.19995117, 2.8808594, -1.4384766, 2.1347656, 0.6044922, 1.3193359, -0.6767578, 0.068847656, -1.6279297, -3.0800781, -1.0019531, -2.5644531, -0.26416016, 3.4550781, 1.6835938, -1.9970703, 0.7050781, 0.20861816, 1.9951172, 1.0820312, -1.4462891, -1.0673828, -2.6152344, -1.8359375, 0.48095703, -0.1619873, 2.0800781, 0.88134766, -2.4277344, -1.3496094, 0.5, 1.6162109, 0.32666016, 0.5463867, -1.1621094, -1.8867188, -2.609375, 1.8173828, -0.6772461, 2.9863281, 0.18395996, 1.4287109, 2.2480469, -2.8183594, -0.4609375, -0.15161133, -3.390625, 0.20910645, -2.3203125, 1.9052734, 3.8066406, 0.2553711, -0.43701172, 0.70654297, 1.7626953, -2.8125, -1.2246094, -0.7265625, 2.1992188, -2.1640625, 0.42895508, 2.1640625, 1.4794922, -2.0039062, -1.2246094, 0.23144531, -1.7998047, -1.7666016, -1.3447266, -1.7753906, 0.050201416, 0.12097168, 0.9741211, -2.0527344, -0.20227051, 1.9697266, -1.4365234, -0.81347656, -2.6738281, 1.3212891, -0.28979492, 0.113220215, 0.6699219, 3.3164062, 2.6835938, -3.0019531, 0.6308594, -1.1601562, 3.0761719, -0.55029297, -1.7128906, -0.7714844, -0.66748047, 0.81103516, -0.73535156, -1.7431641, -1.4541016, -0.12487793, 0.44848633, 1.2666016, 1.9511719, 1.9375, -0.05404663, -2.3378906, 0.70751953, 1.2802734, -1.9794922, -0.89941406, -1.1904297, 0.6904297, -1.8046875, 0.20617676, -2.8828125, -0.26904297, 0.6015625, 0.097473145, -3.0898438, 1.1083984, 0.33862305, 1.3955078, 0.37060547, -0.67285156, -0.0546875, 0.49560547, 3.4863281, -0.051879883, -0.56347656, 0.30908203, -0.3955078, 1.4609375, 2.0917969, 0.56591797, 0.79296875, 0.44995117, -0.5522461, -0.43310547, -0.3010254, 0.6845703, -1.5976562, -1.1884766, -1.0166016, -2.3417969, 5.015625, -1.9658203, 1.1054688, -0.30615234, -1.2363281, -2.5332031, 2.828125, 2.6484375, 0.81933594, 0.056915283, 0.14111328, 2.671875, 2.5351562, 1.4013672, 1.0439453, 0.58935547, -1.0673828, -1.3974609, -0.95166016, 1.4277344, -0.42944336, -0.13452148, 0.17480469, 1.1503906, 3.3613281, 2.1875, 1.6083984, -0.0033950806, 1.3261719, 0.2980957, 0.68115234, -2.0332031, 0.18225098, 0.21313477, 3.7539062, -1.5644531, -2.0078125, 1.1494141, 2.9296875, 0.6459961, 1.4482422, 1.8632812, 0.6069336, -1.2285156, -2.3925781, -1.4746094, -0.8852539, 0.06903076, -1.3671875, -1.7841797, 1.6708984, 0.94433594, 1.9160156, 1.796875, 2.0976562, 0.12005615, -0.50878906, 0.0826416, -2.1523438, -2.1015625, -0.43310547, -3.1386719, 0.5415039, -1.8642578, 2.2832031, 0.91845703, 0.50097656, -0.1907959, -1.6367188, -0.5620117, 1.6210938, 1.3105469, -0.2088623, -0.7392578, 3.7167969, 1.0654297, -0.7392578, -1.9228516, -0.9614258, -0.7866211, 1.0566406, 3.015625, 1.0458984, -1.4414062, -0.79296875, -2.2148438, -5.6875, 0.23583984, 0.9404297, 0.97265625, -0.19372559, -2.3691406, -1.1923828, -0.7324219, -1.2177734, -0.21411133, -2.5429688, 0.5131836, -1.9824219, -0.65283203, 0.9082031, -0.30810547, -0.6245117, 0.20666504, -1.3349609, -1.9628906, -0.112976074, -1.5175781, -2.9667969, -1.3964844, -0.86621094, -1.1552734, -0.15075684, -0.4074707, 0.10986328, 1.4257812, 1.7617188, -2.5722656, 1.7470703, -3.3808594, 0.77001953, 1.3916016, -1.6181641, 0.8095703, 1.5703125, 0.1583252, 1.4833984, 2.9199219, 3.578125, -2.0605469, -1.0634766, 0.027801514, -0.50341797, -0.024490356, 0.69628906, 1.5791016, -0.6870117, -0.11065674, 3.375, 0.21508789, -1.859375, -1.3974609, 0.31420898, 0.8808594, -1.7099609, -0.123291016, 0.9638672, 0.5786133, 1.65625, -1.0351562, 0.46533203, 0.3251953, -0.46289062, 0.15405273, 0.34301758, -2.6953125, 1.2666016, 1.1875, -1.6083984, -4.8671875, -0.13842773, 3.7773438, 1.4765625, -0.41601562, -0.093933105, 0.6425781, -0.7558594, 0.23388672, -0.4345703, 1.7675781, 1.1708984, 1.7871094, -1.6025391, -0.88378906, 2.4589844, -1.375, 0.34228516, -0.25805664, -0.89697266, 0.111572266, -0.39404297, 3.3105469, -2.3964844, -0.9267578, -1.7080078, -0.77197266, -1.8115234, 0.24963379, 0.21911621, -3.0253906, 1.1630859, 0.046569824, -3.2832031, -4.0585938, 2.640625, -0.0758667, -0.045318604, 1.4511719, 2.3378906, -2.0703125, -1.6484375, 0.38842773, 1.34375, 0.15905762, -1.1601562, -1.8095703, 0.22216797, 1.1865234, -2.8808594, 1.7568359, 1.7949219, 1.0576172, -0.19995117, -0.94433594, -0.27539062, 1.5888672, 0.5307617, 2.1894531, 3.6582031, 0.12390137, 1.4892578, 1.2001953, 0.93310547, 1.5341797, -1.4746094, 0.48706055, 0.9321289, 0.22033691, 1.4375, -2.3046875, -0.8959961, -0.8173828, -1.2695312, -1.0117188, 1.3496094, 2.5605469, -4.3867188, 0.036743164, -2.1347656, 0.3425293, -0.328125, 0.28881836, -1.1425781, -0.9604492, 0.22253418, 1.1445312, 1.3339844, 1.3330078, -1.0791016, 0.9145508, -2.2402344, 2.484375, 1.6425781, -0.16418457, -4.4296875, -1.7529297, 1.0957031, 0.64697266, 0.027526855, -0.19824219, 1.1123047, 1.3925781, -0.5883789, 1.1572266, 1.1171875, -0.9433594, 1.3378906, -2.078125, 2.390625, 2.6074219, -0.38378906, 2.6328125, -1.0410156, -0.8564453, -3.8964844, 0.8095703, 0.7416992, -1.4072266, -0.28637695, -2.3007812, 1.1357422, -2.3007812, -0.04510498, -3.3574219, -1.9609375, -0.24938965, -1.6435547, 0.7836914, 0.7636719, -1.578125, 0.78515625, 1.2607422, -1.2294922, 0.06994629, 1.7744141, 0.4140625, 0.57128906, -1.2753906, 0.80322266, 0.5107422, -1.5615234, 2.4921875, -1.7402344, 0.88964844, -1.6582031, 2.6074219, 1.5136719, 0.4140625, 1.6933594, -0.39526367, 0.7626953, -0.19848633, -1.1318359, 0.54541016, -1.5800781, 0.7607422, 0.19836426, -0.6645508, -0.84375, -0.19812012, 2.125, 1.6210938, -2.9277344, 0.2286377, 0.6645508, -2.1582031, 1.8076172, 1.6113281, -1.3212891, -0.64746094, 0.23583984, 0.34350586, -3.6289062, 1.3955078, -0.58740234, -0.0065345764, -2.234375, -1.1679688, -1.3603516, -0.31347656, -1.1875, -0.5498047, 0.22924805, -0.6748047, -0.52978516, -0.0552063, -1.1416016, 1.1132812, 0.6376953, -0.37841797, 1.4189453, -0.7163086, -0.93847656, 0.93408203, -1.4257812, 0.30493164, 1.5966797, 2.3378906, 2.2675781, 1.90625, -1.1347656, -1.5087891, -0.69873047, -2.6445312, 0.7114258, 0.0892334, -2.4023438, 0.83203125, 2.09375, 2.8808594, -2.3652344, -0.9589844, -0.9169922, 1.3222656, 1.5263672, -2.4960938, 1.6386719, -0.1776123, -0.07397461, 0.84521484, 4.7929688, 3.2460938, -1.0361328, -1.1796875, -0.2006836, -2.2929688, -2.1621094, -0.21386719, 0.09490967, -0.87646484, 1.0302734, 2.2871094, 3.4023438, -0.4819336, -0.74121094, -1.1308594, 0.83154297]}, "B083G4SNQX": {"id": "B083G4SNQX", "original": "Brand: ORIENT FAMULAY\nName: 58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black\nDescription: ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

          Features:
          -Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
          -Ccomes with a storage zipper bag. So it is very easy to fold when you don't need it
          -Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
          -With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

          Care and Use:
          1. Allow grill to cool before covering.
          2. The water repellent finish enables stain-preventing and easy cleaning
          3. Dry up the cover in the sun for next use or storage it to the bag

          What you could get?
          1 x 58inch grill cover
          1 x Storage bag
          Lifetime Product guarantee\nFeatures: \u3010WIDE COMPATIBILITY\u3011The bbq cover measures 58\"L x 24\"W x 46\"H inch, Check your grill's dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss\n\u3010Rip Resistant & UV Protection\u3011: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly.\n\u3010PORTABLE & CONVENIENCE\u3011The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle\n\u3010LIGHTWEIGHT BUT DURABLE MATERIAL\u3011:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new\n\u3010LIFETIME REPLACEMENT\u3011Any issues with the ripping or fading, please contact us and we'll make this right and give you the satisfied answer!\n", "embedding": [0.17089844, 2.1660156, 3.53125, -1.125, 0.2331543, 1.3798828, 0.40478516, -2.5664062, 1.4755859, 2.2597656, -0.55810547, -1.4326172, 1.0058594, -5.0390625, 1.2822266, 1.2236328, 0.70947266, 2.4726562, 3.0273438, -1.5800781, 1.3623047, 0.66308594, 0.72314453, 0.5996094, -0.079711914, -0.46020508, 4.421875, -3.0859375, -1.2539062, -1.8525391, 1.6630859, 0.3330078, 0.034362793, 1.8056641, -2.7128906, -1.5673828, -0.51660156, 0.99902344, 0.03488159, -1.1240234, -0.63623047, -2.5234375, 3.1054688, 1.1757812, -1.9707031, 1.3134766, -2.5644531, -1.0712891, -0.72265625, -2.515625, 1.3193359, 1.6914062, 2.8613281, 0.80371094, -2.7265625, 3.15625, 0.4333496, -1.3515625, -0.36816406, -0.31689453, 1.2939453, -0.5083008, -0.703125, 2.15625, -1.5517578, -1.7666016, 0.7607422, -0.48046875, 0.9770508, 0.5229492, 2.0273438, 0.23254395, -0.85546875, 0.4404297, 2.015625, -0.7128906, -1.6132812, 2.4589844, 2.1328125, -0.5185547, -0.9970703, 5, 0.3190918, -1.9755859, -0.86865234, -0.22424316, -2.0683594, -1.8681641, 2.3457031, 0.02330017, 0.40478516, 2.3496094, -1.8291016, -3.9238281, 1.9199219, -3.3632812, 3.5097656, 0.9477539, 1.1962891, 0.13378906, -1.3554688, 0.74072266, -2.0273438, 0.34814453, -3.9648438, -2.4042969, 1.6074219, -0.3239746, -0.064331055, 0.16186523, -0.9506836, -0.4411621, -0.43359375, 0.6196289, 2.2597656, 0.8310547, -0.9067383, 2.0976562, 0.3791504, 1.5556641, 2.8320312, 0.14562988, -0.47680664, -1.4785156, -0.18615723, -0.38354492, -0.72265625, 0.40722656, 3.2128906, -1.0810547, 1.0527344, -0.99072266, 2.0507812, 1.6523438, -1.1621094, -0.6245117, -2.1308594, -1.5400391, -4.2304688, 1.8066406, -2.65625, -2.0058594, 1.2167969, -2.9746094, -2.0664062, 0.36450195, -1.6503906, 3.015625, -1.8916016, -3.7167969, 1.3369141, -1.9677734, 0.11187744, -1.3349609, 0.80322266, -1.5615234, 1.3095703, -3.7246094, 3.3339844, 2.0585938, 3.1269531, -1.7597656, 1.4736328, 1.0556641, 1.4619141, -2.1132812, 0.3395996, 0.6279297, 0.5229492, 2.296875, 0.7109375, -1.3525391, 0.7314453, 1.1806641, 1.5605469, -1.2119141, -0.21008301, 1.2392578, 0.5229492, 0.9746094, -0.57128906, -2.6679688, -0.5058594, 1.03125, -1.4033203, -1.0693359, -0.037322998, 0.3088379, 1.1982422, -0.63671875, -1.2060547, 0.81347656, -1.1484375, -0.049621582, -2.4785156, -1.2158203, -1.2431641, -0.71191406, -1.171875, -0.20385742, -1.6113281, -2, -1.2060547, -0.15075684, -3.0332031, -2.6289062, -2.0996094, -0.018325806, 0.5732422, 1.5888672, 0.8100586, -2.8691406, 3.7734375, 1.3876953, -0.2722168, -0.27783203, 1.6396484, -1.0625, 1.4414062, 1.1621094, -1.5039062, -0.609375, 1.1318359, 4.3320312, -0.48339844, 2.0820312, 1.9697266, 0.33007812, -1.4853516, -1.9677734, 1.3544922, 0.17993164, -0.32080078, -0.5341797, -1.0419922, 0.87841797, 0.3647461, -1.2382812, 0.34155273, -0.62353516, -1.6630859, -2.3984375, -3.8886719, -1.7509766, 0.66845703, 1.8300781, -1.0126953, 1.7851562, 0.87597656, -1.0283203, 0.5073242, 0.5029297, 1.0888672, -0.60253906, 0.6171875, 0.68115234, 0.93896484, 0.49194336, -1.6357422, -0.9370117, 0.7866211, -0.64697266, -1.0566406, 1.7773438, -0.78222656, -1.0898438, 1.0488281, 1.1679688, -1.7871094, -2.1445312, 1.8867188, -0.7314453, 0.07659912, -1.4414062, 1.2958984, -0.006511688, 0.6357422, 1.1289062, 0.8276367, -0.6245117, 0.52001953, 0.8935547, 1.0654297, -2.0761719, 0.3503418, 0.22131348, 0.4946289, -1.0996094, -0.54541016, 0.01020813, 3.9394531, 0.390625, -1.4433594, 4.5742188, -0.5415039, 0.086242676, 2.3535156, -1.0361328, -1.1669922, 1.7363281, 0.6113281, 1.0429688, -0.63183594, 0.6948242, -1.2324219, -1.4677734, 1.4560547, -2.6523438, -2.1855469, 1.5556641, 0.59033203, 1.0761719, -0.049316406, 0.9379883, -2.1972656, -1.7548828, 1.9453125, -2.3027344, -0.015792847, 0.61816406, 0.11895752, 1.9121094, -1.7216797, -1.4267578, -0.60546875, -0.72558594, -1.671875, -0.2220459, 0.39941406, -0.3022461, -1.1279297, -0.984375, 0.71777344, -1.8466797, -1.2226562, -3.6015625, -3.1640625, -1.2558594, -0.67626953, -2.2695312, 0.1385498, -0.5019531, -3.0253906, 1.0888672, 0.6308594, -3.0507812, -1.8378906, 0.30517578, -1.1816406, 2.2265625, -1.0566406, 0.044311523, 0.4638672, -4.4648438, 1.3466797, -0.5649414, -1.3632812, -0.21240234, -1.0205078, 0.50878906, 0.1505127, 0.7089844, -0.20275879, 0.8623047, 1.4365234, 0.30200195, 0.012268066, -2.8515625, -0.27416992, -2.5488281, 0.8339844, -2.0136719, -0.08502197, -4.1875, -1.3212891, -0.3798828, -1.5898438, 3.5214844, -0.051574707, 0.5913086, -1.3857422, -1.1972656, 0.21618652, 0.17675781, -2.0976562, 0.6640625, 1.2314453, -0.7993164, -1.0908203, -3.0097656, -2.3222656, -1.0380859, -1.484375, 0.26367188, -0.6274414, -0.90722656, 1.9560547, -3.8925781, -1.5615234, -1.8632812, 1.1943359, -0.41503906, -0.6879883, -1.8535156, -4.2421875, -2.3222656, -0.4987793, -1.9892578, 2.1875, -2.3398438, 0.6308594, 1.4931641, -0.32299805, 3.6542969, -0.19055176, -3.6035156, 1.5771484, 1.8193359, -0.07305908, 2.9296875, -0.03604126, -1.1181641, -0.9121094, 0.42041016, 2.4472656, 0.7714844, 0.6669922, 2.3359375, 0.23986816, 0.86572266, -0.02722168, 1.0947266, -0.31396484, 0.78808594, 2.4296875, -1.0800781, -0.78759766, 0.72802734, 1.3066406, -1.8271484, -0.23181152, 3.6621094, 0.27075195, 0.34960938, 1.3251953, 0.35913086, 0.8022461, -0.31298828, 1.7978516, -0.064697266, 3.4101562, 0.43603516, -0.0579834, 0.7294922, -1.5810547, 2.2460938, 2.1386719, 0.4008789, 1.2578125, 1.2607422, 0.3256836, -0.30371094, 0.2841797, 0.8671875, 1.1464844, -1.2695312, 1.9931641, -1.0615234, 0.43359375, 1.9833984, -2.0136719, 1.2607422, -1.1074219, -0.5161133, 1.7382812, -1.0605469, 0.3708496, -0.42895508, -0.18933105, -0.9897461, -2.4160156, 0.060180664, -2.6660156, -0.6616211, 0.54345703, -3.4648438, -2.1210938, -1.3173828, 1.7255859, 0.4868164, -1.9121094, -0.2722168, 1.7265625, -1.5791016, -2.0683594, 2.0585938, 2.3125, -1.1005859, 1.9003906, 3.5136719, -0.9785156, 2.1777344, -3.3925781, 1.4619141, -0.115356445, -0.7158203, -0.4260254, 0.8354492, -0.18395996, -0.26586914, 1.7539062, 1.2441406, 2.0546875, -0.92578125, 0.31445312, -2.3691406, 0.36254883, 1.5097656, -0.40527344, -0.8046875, 1.8144531, 1.4667969, 1.0869141, 0.19848633, 2.6972656, -0.17407227, -1.6650391, 1.8242188, -2.5039062, -0.016357422, 0.022125244, -4.2695312, -0.32641602, -0.46728516, -1.7382812, 2.1914062, 0.5366211, 0.46020508, 1.6474609, 0.14233398, -0.63427734, -0.20800781, -2.6152344, -1.3994141, -0.5097656, -1.1552734, 2.3496094, -0.39892578, -2.0585938, -1.5859375, -1.6972656, -1.8916016, 1.125, 0.9746094, -1.1591797, 0.39135742, -1.96875, 0.3359375, -1.6591797, -0.01727295, 0.12805176, -0.15649414, -0.97021484, -0.35913086, 0.65283203, 0.19812012, 0.35888672, 0.5673828, 1.2080078, -0.8540039, -0.80126953, -0.8613281, 2.2871094, 3.1289062, -0.96777344, -4.0585938, -0.8520508, 1.0488281, 0.9243164, -0.13464355, -0.08911133, -0.8442383, -1.0263672, -0.37280273, 1.0693359, 2.5898438, 0.68115234, -1.3681641, -2.5, 0.5263672, -2.0585938, -2.1933594, -0.77441406, 0.29858398, 0.44018555, 1.2685547, -2.5175781, -3.0878906, 2.25, -0.8173828, 0.006351471, -2.0527344, 5.0625, 2.6015625, 2.1542969, 2.9082031, -2.1328125, 1.8134766, 0.85009766, -1.7666016, -0.41430664, 0.8857422, -0.640625, 1.0957031, 1.2900391, 0.35839844, -2.3535156, -1.0322266, 0.041534424, -1.1289062, -0.35791016, -2.2382812, 2.4960938, -0.9482422, 0.6489258, 0.89453125, -2.1269531, 3.609375, -0.5966797, -0.2487793, 2.2871094, -1.2753906, 0.23095703, 0.89697266, 1.5576172, -1.2119141, 0.19384766, 1.2802734, 0.1685791, -0.81152344, -1.3037109, -0.47851562, 1.4951172, -0.9555664, -0.32373047, 0.2890625, 1.3925781, -2, -1.1455078, 2.9023438, 2.4199219, -0.3161621, 1.2128906, 0.44091797, -1.4296875, 1.6523438, 1.4462891, -1.6816406, -0.016448975, -0.6508789, -0.080200195, 1.9824219, -0.31323242, -3.1738281, -0.6386719, 0.23852539, -0.63623047, 2.3457031, -1.2734375, -1.6464844, 2.5332031, -1.8554688, -0.6660156, 0.15539551, 0.3425293, -0.45043945, -0.1508789, 2.2304688, -1.1865234, 0.90527344, 3.4101562, -0.67822266, -4.03125, 2.5097656, -0.6352539, -0.35668945, -1.0175781, -1.1064453, -1.9804688, -0.36669922, 2.9921875, 1.5898438, 1.8291016, 0.29467773, 1.8994141, -1.4775391, 0.20251465, -0.3630371, 2.6796875, -1.8037109, -0.41577148, 2.2070312, -1.9365234, -0.5605469, -2.1210938, 0.5600586, 0.8852539, 2.0292969, 1.5517578, 0.7783203, -0.003894806, -1.1650391, -3.2070312, -2.8007812, -2.1914062, 1.3476562, -1.4169922, 1.4482422, -0.009063721, 0.7558594, 0.42944336, -0.2322998, 0.095214844, -1.2851562, -0.11590576, -1.3896484, -2.1816406, -1.1630859, -1.2021484, -0.4921875, 0.68115234, 0.5756836, 2.2070312, -0.045928955, -3.4746094, -0.5073242, 1.5390625, -3.8242188, -2.1152344, 2.1015625, 0.0008955002, 1.8886719, 0.6357422, 0.60302734, 0.87109375, 3.0839844, -1.2441406, 0.25805664, 2.4863281, -1.15625, 1.4873047, -0.71972656, -1.8193359, 1.3515625, -2.2558594, 0.70458984, 0.5595703, -0.6977539, 1.1572266, 2.2285156, -0.6508789, -1.4189453, 0.7788086, 0.99121094, 2.0390625, 0.4116211, -1.1669922, 0.44750977, -0.9926758, -2.7773438, 0.7373047, -2.0332031, -1.6962891, -2.8066406, -0.40844727, 2.1933594, 1.0195312, 2.015625, 1.3916016, 2.1328125, -1.734375, 0.54248047, 0.24182129, 3.2851562, 1.7724609, -2.9707031, 0.016525269, -1.84375, 0.8676758, 1.4160156, -0.47851562, -0.23474121, -0.45361328, -0.6230469, 0.111572266, 1.1972656, 1.3535156, 2.3105469, 0.27856445, 0.32202148, 1.1308594, 2.5703125, -0.6899414, 1.9599609, -0.44702148, 1.6826172, -1.7021484, 3.3652344, 0.76953125, -3.8691406, -0.28686523, -1.4833984, 0.84765625, 0.79003906, -1.9638672, -0.8256836, -2.4902344, -1.9121094, -2.9101562, -1.2607422, -4.59375, 1.3037109, 0.3269043, -0.70996094, -0.37182617, 1.8427734, 0.27563477, 3.5273438, 2.265625, 0.3466797, -0.91845703, 0.03265381, -1.59375, -0.7871094, 0.5029297, -2.84375, 1.2636719, -0.45996094, 0.16369629, -1.6025391, 1.5351562, 1.0878906, 1.4013672, 0.8676758, 2.5683594, 1.8388672, 1.2216797, 2.3476562, 0.62353516, 1.8955078, 1.2919922, -1.2148438, 0.7998047, 1.8525391, 2.1210938, 3.3164062, -1.0810547, -0.4345703, 1.7763672, -1.0996094, -0.51660156, -0.2298584, 1.4882812, -3.4941406, -0.014213562, 0.31567383, -0.53759766, -0.066589355, 0.94921875, -0.9482422, -1.3212891, 0.14624023, 0.19421387, 4.234375, -0.93847656, 1.6240234, 0.23132324, 1.6914062, 1.8193359, -3.3730469, 2.0195312, 2.8867188, -1.7451172, -1.6005859, 1.7138672, 1.5273438, 2.96875, -0.39941406, 1.6523438, 1.8300781, 2.2539062, 1.2373047, -1.3642578, 0.7861328, -0.1381836, 1.4541016, 0.9482422, -2.6210938, -1.3447266, -0.15112305, -2.28125, -2.8515625, 2.5195312, 1.3525391, 1.4511719, 2.0390625, -4.109375, 2.0273438, 0.31445312, 1.8535156, -1.5449219, 0.39453125, -0.88964844, -0.8828125, -1.1689453, 0.6748047, -1.6328125, 2.2460938, 0.94628906, -0.32617188, 2.6269531, 1.3447266, 1.75, 1.1337891, 0.8955078, 0.9116211, 0.5410156, 0.13952637, 1.5732422, 2.2246094, -0.8876953, 0.203125, 1.7617188, -0.050079346, 1.7861328, 2.5039062, -0.41479492, 0.8901367, 3.1875, 0.44970703, 2.1367188, -1.0146484, -0.67333984, -1.765625, 1.2275391, -1.1621094, -2.5546875, 1.4277344, 2.3496094, 0.22998047, 0.5463867, 1.4433594, -0.34106445, 3.4980469, 1.6962891, -0.5698242, -0.77734375, -0.54589844, 0.9628906, -0.9770508, -0.23168945, -1.9990234, 0.2854004, 0.66259766, -0.5966797, -0.13000488, 0.1776123, -0.32202148, -0.29125977, 1.6640625, -1.7636719, -0.69970703, 0.066711426, 0.4362793, -1.0654297, 2.3242188, 1.0859375, -0.98828125, -1.3886719, -0.9765625, 0.16235352, -2.09375, -2.9238281, 1.8662109, 3.0878906, 2.2929688, -2.4511719, -0.51123047, -3.2597656, -1.03125, -0.5888672, 1.8183594, 0.20996094, -0.70654297, -0.40356445, -0.4807129, 3.4921875, 0.079956055, -0.9638672, -0.5678711, -0.3256836, 2.3007812, 0.56689453, -0.12756348, -0.122924805, 1.3720703, 1.2597656, 2.1210938, 3.8789062, 0.24279785, 1.4433594, 2.4941406, -0.43847656, -2.7089844, 0.07330322, -0.117370605, 2.0195312, 0.28759766, 1.359375, 1.3496094, -0.4650879, -0.35351562, -0.014762878, -1.5664062]}, "B07Y5RY59R": {"id": "B07Y5RY59R", "original": "Brand: Lion Premium Grills\nName: Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal\nDescription: \nFeatures: Lion L75000 32\" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface.\nComponent package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit\nGourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover.\nBest of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17\" Spatula, 16\" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.\n", "embedding": [-0.05947876, 0.35888672, 1.0976562, -0.51660156, 0.19567871, 1.0166016, 2.359375, -1.3525391, -0.26367188, 1.2197266, -0.1182251, -0.78466797, -2.0253906, -2.8847656, -0.10321045, -0.9902344, 0.49438477, 1.1884766, 1.4726562, -1.3330078, -1.0673828, 0.61621094, 3.3554688, -0.53808594, -0.02482605, 0.50390625, 4.0898438, -3.4902344, 0.17553711, 0.54003906, 2.2402344, 0.6274414, -1.1005859, 2.4453125, -3.4023438, -1.7587891, 0.12084961, 1.9873047, -2.6289062, 0.31762695, 1.1044922, -0.06274414, 0.5883789, 0.40356445, -1.4238281, -0.3930664, -0.88623047, 1.2744141, -3.3554688, -1.1953125, 2.6640625, 1.2246094, -1.1064453, -0.008613586, -2.7382812, 2.4863281, 2.390625, -0.49926758, 1.2509766, -0.2163086, 2.4296875, 1.0966797, -0.5883789, -1.1767578, -1.3613281, -1.0810547, -0.6196289, -1.0224609, 0.609375, 0.05239868, 4.1132812, 1.6298828, -2.0117188, -0.3330078, -0.12756348, -1.171875, -3.375, 1.7832031, 0.52734375, -0.10461426, 0.15551758, 3.7773438, 2.609375, -3.359375, 0.34814453, 0.93066406, -1.9492188, -1.0771484, 1.75, -1.7460938, 0.1809082, 3.0683594, -2.078125, -3.3671875, 3.5292969, -0.17590332, 0.028747559, 1.4882812, -1.8203125, 1.1806641, 0.30371094, 0.96484375, -0.15905762, -0.21594238, 0.12335205, -2.4628906, 0.2265625, 0.87109375, -2.4511719, 0.36547852, -3.3105469, -2.015625, 2.1992188, 1.9882812, 1.5527344, 1.953125, 0.18859863, 1.2910156, 1.0107422, 1.1113281, 2.4511719, -1.6972656, 0.021865845, -0.16308594, 0.23303223, -1.7197266, -2.0019531, 2.5898438, 3.7910156, -2.2851562, -1.4853516, -1.7773438, 2.6015625, -0.20178223, -0.26489258, -1.3691406, -1.6621094, -0.41186523, -3.2929688, 1.2373047, 0.3527832, 1.1337891, 2.2675781, -1.2919922, -4.3671875, -0.8935547, -1.5703125, 1.1230469, 0.17175293, -3.8828125, -0.19104004, -1.6689453, 1.7041016, -2.6933594, 1.2890625, -1.1699219, -1.5507812, -1.1757812, 1.4375, -0.0473938, -0.0069389343, -2.5839844, -1.1601562, 0.80322266, -1.9492188, -2.0878906, -1.15625, 1.7744141, 1.0546875, 1.7578125, 0.4116211, -1.0517578, 0.3232422, -0.59375, 0.40576172, -0.7290039, -1.6269531, 0.60058594, 0.8149414, -0.9448242, 0.123291016, -3.2988281, -0.7973633, 0.35839844, -0.43652344, -0.26513672, 3.4980469, -0.31933594, 0.7998047, -0.1373291, 0.7993164, -1.2773438, -0.7207031, 0.33251953, -0.16625977, -0.6591797, -1.8886719, -0.57470703, 2.09375, -1.2011719, -0.41552734, 0.53027344, 0.4230957, 0.73291016, -2.9707031, -3.2539062, -2.921875, -2.1445312, 2.6015625, 0.3720703, 1.4580078, -1.5507812, 2.2714844, -0.37304688, -0.42993164, -2.9765625, 0.09283447, -1.1132812, 1.5605469, 2.3027344, 1.0009766, -1.2353516, -0.4987793, 3.6542969, -0.6586914, 1.3564453, 0.32592773, 0.8022461, -2.0703125, 0.05444336, 2.09375, 0.24743652, 1.0087891, 0.48779297, -1.1220703, 0.97314453, 0.7763672, -2.5722656, 0.017028809, 1.0332031, 0.13598633, -0.29052734, -0.89404297, 0.15356445, -0.70996094, 0.33007812, -1.5810547, 3.0058594, 2.8867188, 0.9350586, -0.26391602, -1.046875, 0.67285156, 1.546875, -0.70703125, 1.1826172, -0.47973633, 1.1621094, -0.5410156, 0.55859375, 1.3994141, -1.9921875, 1.953125, 0.9345703, 0.0262146, -2.3339844, 2.0878906, 0.10296631, -0.6513672, -2.3984375, -0.5913086, -0.5488281, 1.8857422, -1.0800781, 3.1464844, 1.0742188, 0.58984375, 1.921875, -0.5107422, 1.8457031, -0.5957031, 0.35107422, 1.6533203, -3.109375, -1.5722656, 1.0292969, -0.20666504, -0.5698242, -0.3022461, 2.4570312, 4.7304688, -0.21533203, -3.2128906, 2.7050781, -0.5102539, -0.09039307, 0.7167969, -1.4042969, 0.609375, 1.4990234, 1.0429688, -0.3071289, 2.1171875, 2.2421875, -1.0830078, -0.051116943, 0.59716797, -2.9003906, -0.61376953, 1.1210938, -0.35131836, -1.1181641, 0.5024414, 1.8759766, -1.4550781, 0.2602539, 2.8164062, -2.6777344, 2.3066406, 0.55029297, 1.5546875, 2.5449219, 0.010025024, -2.0371094, -0.99609375, 0.10406494, -1.3837891, 0.009147644, -0.7270508, -0.87939453, 0.9609375, -0.2524414, 1.0400391, -0.69384766, -1.4238281, 0.038848877, -1.0322266, -0.43530273, -0.4182129, 0.038360596, 0.34521484, 1.2314453, -1.2607422, 0.105773926, -0.9716797, -3.8027344, -2.2304688, -0.7167969, -0.24743652, 3.078125, -1.2919922, -0.55859375, -0.19140625, -4.1015625, 0.17370605, -0.87109375, 0.7402344, 0.18127441, -0.86376953, -2.5039062, 0.5839844, -0.41455078, -0.34326172, 2.0371094, 0.7602539, 0.07098389, 1.6083984, -3.0136719, 0.37670898, -4.2734375, 0.34204102, 0.8017578, 1.8222656, -2.2636719, -1.3154297, -2.0839844, -1.8779297, 3.9765625, -0.5317383, 1.8310547, 0.8120117, 0.3166504, 1.7744141, -2.6328125, -2.1855469, -0.49609375, 0.6401367, -0.6166992, -0.7519531, -3.0742188, 1.9619141, -2.2792969, -0.24365234, -1.8681641, 1.46875, -1.7880859, 3.1621094, -1.9072266, 1.0068359, 2.2617188, 0.62158203, -1.3212891, 0.45581055, -2.1015625, -0.2154541, -1.6806641, 0.22595215, -1.7910156, 1.9716797, -1.4257812, -0.4189453, -0.54785156, 0.39404297, -0.82373047, -0.81933594, -2.9765625, 4.0898438, 1.7734375, -1.1259766, 2.15625, -0.46240234, -1.2236328, -3.7929688, 1.5507812, 2.0742188, 1.8427734, 1.5722656, -0.86572266, -0.2927246, 0.8457031, -0.15441895, 1.3076172, 1.1953125, 0.7294922, 3.3476562, -0.5957031, -0.90527344, -0.16259766, 0.49145508, -3.2910156, -1.2382812, 2.3242188, 1.1669922, 2.8203125, 1.1474609, 4.1484375, 0.7685547, -2.3964844, 1.3886719, -1.8193359, 1.4755859, -1.2851562, 0.734375, 0.6635742, -2.2558594, 2.0058594, 1.9501953, 0.2919922, 1.5488281, 1.6376953, 1.1201172, 0.9921875, 0.94628906, -0.75146484, 1.7910156, -2.4296875, 1.9433594, -1.2392578, 0.8574219, 0.30639648, -1.0576172, -1.3007812, -1.5234375, -1.6103516, 2.671875, 0.22131348, 1.8105469, 1.1025391, -0.75146484, 1.3623047, -1.6660156, -0.4567871, -2.0097656, -0.9121094, -0.052856445, -0.30639648, -1.4511719, -0.8613281, 1.4277344, -0.32104492, -1.6347656, -0.9399414, 3.5234375, 0.6582031, -2.0566406, 2.6640625, -1.2060547, -2.2226562, 3.8925781, -1.1953125, -1.8691406, 0.87939453, -0.8774414, 2.7871094, 0.22924805, -0.7573242, -0.5678711, -2.8300781, 0.69091797, -0.6948242, -0.17260742, 1.3974609, -0.022460938, -0.72509766, 0.44335938, -1.0458984, -0.32543945, -1.4570312, -1.5263672, -2.46875, 1.3779297, 1.5537109, 2.3261719, 0.78808594, 3.7246094, -1.6337891, 1.0361328, 2.2207031, -2.0742188, 0.64746094, -3.2910156, -1.9716797, 0.9975586, -1.2548828, -2.1796875, 2.6894531, -0.33618164, 0.35888672, 2.28125, -0.9916992, -1.5039062, -1.0361328, -0.35180664, 0.88671875, -0.99853516, 0.6352539, -2.1425781, 0.6401367, -0.24768066, -1.1894531, -1.4550781, -0.9848633, 0.5234375, 1.8457031, -3.6054688, 1.6601562, -1.5693359, -1.0410156, -1.8261719, -2.1289062, 1.7949219, -1.0498047, 0.35498047, -2.2441406, 1.3818359, 0.77490234, -1.6201172, 2.5605469, 2.7363281, 0.20288086, -0.7265625, -0.09448242, 1.1103516, 3.0488281, 1.0830078, -1.9736328, -3.2617188, 1.3925781, -0.072265625, -1.6240234, -0.3330078, -0.87060547, -1.3847656, -0.4814453, 1.8779297, 0.37329102, 0.85839844, -0.3786621, -1.7226562, -0.5102539, 0.6254883, -1.6972656, -1.8779297, -0.16955566, 0.3095703, -0.9003906, 1.9541016, -0.5283203, 0.9589844, 0.7871094, 0.070251465, -1.0771484, 1.0498047, 0.29736328, 1.6416016, 3.1230469, 1.4912109, 0.73779297, 0.90966797, -1.3066406, -0.86328125, 1.1816406, -1.0800781, 0.4580078, -0.019714355, 0.5678711, -2.0488281, -0.7446289, 0.9926758, -2.4882812, -0.7324219, -0.4921875, -0.107910156, -1.5273438, -1.7353516, 0.5307617, -1.8818359, 2.0390625, -0.6352539, 0.06555176, 1.1894531, 1.9541016, 0.2043457, 1.3701172, 0.10321045, -0.26904297, -0.8881836, 2.0839844, 1.7294922, -0.2668457, 0.8652344, -1.0507812, 1.4072266, -0.5776367, 0.0009074211, 0.44140625, -0.43237305, -1.5185547, -2.4179688, 2.5820312, 2.1464844, -0.92089844, 2.2285156, 0.26171875, -1.9042969, 0.31274414, 0.11315918, -3.8613281, -0.09631348, 0.18029785, 0.4741211, 0.91503906, 1.4462891, -3.65625, -1.2021484, 2.0078125, -1.4033203, 1.5625, 1.7050781, -0.4050293, -0.084350586, -1.7353516, -0.98779297, -1.5029297, -0.8852539, 0.17675781, -0.87646484, -0.3334961, -3.4257812, 0.56103516, 1.7929688, 0.14038086, -0.9785156, 1.8818359, 0.6489258, 0.46655273, -1.5585938, 1.2587891, 0.3996582, 0.5185547, 1.6376953, 2.3164062, 0.25317383, -0.26367188, 1.9960938, -2.7539062, 0.7128906, -2.6523438, 3.6855469, -1.3730469, -0.019424438, 0.63378906, -2.5761719, 0.7636719, -3.4238281, 0.36816406, -0.7109375, 2.8925781, 0.55371094, -0.1796875, -1.7451172, 2.2128906, -0.2758789, -3.6835938, -2.8359375, -1.1572266, 2.3164062, -2.0253906, 0.2010498, -2.7636719, 1.7832031, -0.07543945, 0.41601562, -1.0351562, 0.043304443, -3.0761719, -1.6835938, -1.4570312, 0.27392578, -0.14550781, 0.1907959, 1.7373047, -0.071899414, 3.0371094, -3.5449219, -2.3300781, 1.4589844, -0.5058594, -0.5107422, 3.6699219, 1.9960938, 0.87109375, 0.59765625, 0.7524414, -3.2519531, 0.9975586, -1.8320312, -0.8442383, 1.7353516, -0.93896484, 0.34936523, 0.13757324, -4.2148438, 0.40600586, -0.30541992, 0.5917969, -1.3916016, -0.72509766, -1.4121094, 0.4008789, 0.4423828, -1.2119141, 1.1132812, 1.1142578, 0.12963867, 1.2587891, -0.82128906, -1.2236328, -1.1904297, -2.0195312, 0.9814453, -4.9804688, -0.15759277, -0.035095215, 1.4648438, 1.5898438, 0.41357422, 0.21691895, 2.7910156, -0.036102295, 0.62158203, 0.8496094, -1.9970703, 2.9101562, 2, -0.14001465, 0.028671265, -2.375, 0.44726562, 2.5332031, 0.64160156, -0.61865234, 0.17102051, -0.9580078, -1.1904297, -0.9550781, 1.5810547, 0.8364258, 0.5161133, -1.8701172, -0.3972168, 3.6992188, 0.6425781, 2.4394531, 0.49243164, 1.0019531, -1.8027344, 4.5273438, 0.4128418, -2.1875, 1.515625, -0.5205078, 1.2353516, 0.3996582, -1.6386719, -0.19714355, -0.95751953, -0.9770508, -2.359375, -1.0410156, -2.8203125, 0.15234375, -0.20153809, -0.41992188, -1.8115234, 2.4023438, -0.044708252, 3.9589844, 1.2646484, 0.099487305, 0.7246094, 0.02053833, -0.057006836, 0.28027344, 1.7041016, -0.9633789, 1.5029297, 1.1279297, -0.3713379, -1.796875, 3.7617188, 3.859375, 3.1796875, -0.2775879, 0.7832031, 0.9272461, 2.0546875, 0.69189453, -0.76904297, 0.8984375, 0.13757324, -0.17993164, 0.14221191, 1.6923828, 3.2675781, -0.11425781, -0.09301758, 1.6621094, -1.3271484, -1.3007812, -0.53271484, -0.3010254, 1.328125, -1.4667969, 2.2363281, 0.78515625, -0.7705078, -1.8085938, -1.2470703, -0.3959961, -1.2236328, 1.6972656, 1.328125, 0.3713379, 1.3466797, 2.2578125, -1.1572266, -0.38427734, 1.0400391, -2.6328125, -1.4804688, 0.6513672, -1.4033203, -1.9648438, 0.6333008, 1.8818359, 0.7158203, 2.03125, 1.3701172, 3.34375, 1.3496094, 1.3574219, -2.6152344, 0.091430664, -0.22558594, 3.6484375, -0.8383789, 0.9633789, 0.78515625, -1.2421875, -1.9013672, -2.4101562, 3.0976562, 0.091552734, 1.9111328, 2.2929688, -3.0546875, 2.328125, -0.63623047, 1.7158203, -2.6601562, 1.5351562, -0.5566406, -1.9667969, -2.140625, -0.38256836, 2.7246094, -0.5449219, -0.18688965, -1.3759766, 1.5087891, 0.67822266, 2.6757812, 1.8125, 3.1289062, 1.6162109, 1.1748047, 0.6044922, 1.0830078, -0.008857727, 0.65478516, -2.3398438, 1.5566406, 1.0380859, 0.29003906, 0.7285156, 0.80615234, -0.32006836, 0.48828125, -0.3100586, -1.1816406, -0.9003906, -1.5683594, -0.68115234, 1.0087891, -2.2910156, -1.7333984, 3.2519531, 1.6464844, 0.032165527, 0.1459961, 1.6386719, -0.8051758, 3.34375, -1.2998047, -1.2910156, 0.0045661926, -1.7529297, -0.33081055, 1.2919922, -2.9160156, -0.14050293, 1.6455078, -0.32250977, -2.0351562, 0.53027344, 0.18713379, 0.014503479, 0.5966797, -0.30371094, -1.4189453, -1.3105469, 3.5019531, 1.6005859, -0.37768555, 2.5761719, 0.117492676, 0.08074951, -1.5507812, -0.3088379, -1.4960938, -0.43139648, -0.37231445, 1.1650391, 3.46875, 2.5878906, -0.68896484, -2.3632812, -2.6601562, -1.6230469, -2.8984375, 2.2246094, -0.7753906, -0.05178833, 0.30200195, -2.1347656, 0.45947266, -2.3730469, -1.8496094, 0.44628906, 0.390625, 0.23266602, 0.41235352, 0.41723633, 0.56396484, -0.3227539, 2.59375, 0.6533203, 2.109375, 1.6611328, 1.5771484, 0.33764648, -0.038238525, -1.96875, -1.1816406, 0.42041016, 1.3603516, -1.53125, -1.3701172, -0.60839844, 0.6723633, 0.068237305, -0.16687012, -1.4355469]}, "B00Q9MF83M": {"id": "B00Q9MF83M", "original": "Brand: AZ Patio Heaters\nName: Tabletop Gas Patio Heater Finish: Stainless Steel\nDescription: HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30\". Overall Width - Side to Side: -12\". Overall Depth - Front to Back: -12\". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.\nFeatures: \n", "embedding": [-2.7597656, 1.5810547, 2.6972656, -0.4013672, -0.5229492, 0.8300781, 1.3339844, -1.3339844, 0.7265625, 2.9726562, -0.26733398, -0.75, -0.4543457, -2.7636719, 1.2587891, 0.57373047, 2.0195312, 0.984375, 1.6123047, 0.5961914, 0.9555664, -2.6914062, 0.15405273, -1.4277344, 0.24743652, 1.1025391, 2.8359375, -3.1875, 0.7319336, -2.4277344, -0.050689697, 2.7363281, -0.49145508, 2.3789062, -1.6367188, -1.2431641, -0.5722656, 2.4355469, -4.1601562, -1.7451172, -1.9326172, -2.53125, 0.5463867, 2.0449219, -2.1855469, -0.7207031, 2.2773438, 1.6328125, -1.3291016, -0.92578125, 0.32983398, 0.27246094, -1.1914062, 0.5800781, -0.23999023, -0.109680176, -1.2236328, -2.1875, 0.7246094, 0.2854004, 0.6713867, -0.91259766, -2.9941406, 2.7324219, -1.4345703, 1.9013672, 2.6484375, -1.5126953, -2.2207031, 1.2070312, 2.1328125, -0.8198242, -0.40185547, 0.63623047, 0.6640625, -1.1748047, -1.6552734, 1.5380859, 2.4238281, 0.74902344, -1.1982422, 1.3603516, 1.1884766, 0.9838867, -1.1992188, 0.038635254, 0.08911133, -0.37548828, 0.8041992, 2.0273438, -1.3554688, 2.9960938, -1.2724609, -1.5, -0.5966797, -2.1523438, 0.6411133, 0.8408203, -1.6708984, 2.5273438, -0.69921875, -0.51220703, -0.30395508, -0.111572266, -0.7651367, -0.9223633, 4.0039062, 0.7163086, -1.2402344, -0.55371094, -1.8984375, 0.47314453, 1.6298828, -1.2822266, -0.6064453, -0.38964844, 0.81689453, 2.4511719, 4.0820312, 2.5097656, 5.3632812, 1.7763672, -0.13256836, -3.078125, 1.0126953, 0.28564453, -0.63378906, 0.54785156, 3.0976562, -2.4902344, 0.26049805, -1.4287109, 1.1708984, -0.4868164, 0.31445312, -1.5566406, -2.2148438, -1.1230469, -5.1289062, 1.2382812, -2.8691406, 1.0849609, 2.453125, -0.072753906, -3.3652344, 0.7421875, -1.3730469, 3.1464844, -0.5048828, -0.7836914, 1.6005859, -0.45996094, 1.625, -2.4140625, 1.8105469, 0.32202148, 0.3100586, -0.65966797, 4.2851562, 2.4941406, 2.6953125, -0.7602539, -2.4941406, 0.16809082, 2.3828125, -0.46118164, 0.18359375, 2.4101562, 0.5078125, 1.4765625, -0.46020508, -2.1972656, -0.94921875, 0.94628906, -0.21618652, -1.9882812, -0.19885254, 2.328125, 0.9003906, 1.3623047, -0.8432617, -3.2617188, 0.54296875, 1.3388672, 0.6357422, -3.0761719, -2.4863281, -1.1816406, -0.55810547, -1.1464844, 0.07757568, 0.96240234, -0.18237305, -2.0390625, -0.82958984, -1.5283203, -5.6445312, -1.8867188, 0.37353516, -0.31103516, -0.30493164, 0.047088623, -1.0966797, -0.50878906, -2.8574219, -2.5878906, -0.4116211, -2.8671875, -0.87109375, 0.07269287, 1.9042969, 1.0908203, 1.75, -1.3876953, 0.40454102, -1.2304688, 2.8222656, 0.91259766, 1.1835938, 2.6621094, 0.38208008, -0.06555176, -1.5410156, 1.3193359, -0.6796875, 1.5751953, 2.6191406, 0.50634766, -2.3496094, -1.4101562, 2.7617188, 0.7651367, 1.1210938, 0.98046875, -1.265625, 3.4257812, 0.3659668, -0.41723633, -0.3894043, 0.05218506, 1.5664062, 0.005420685, -1.2441406, -0.5961914, -0.39453125, -1.1943359, -1.0234375, 1.5234375, 1.1484375, -0.28588867, -0.040893555, -0.20605469, 0.036346436, -0.39916992, -0.08862305, -0.01713562, 0.30541992, 1.8154297, 0.32641602, -2.4355469, 0.90966797, 1.0986328, 0.7104492, 1.3828125, -0.15930176, -0.83203125, 4.4765625, 0.3935547, -2.5253906, 1.8466797, -0.9038086, 1.2773438, 1.2802734, -0.88916016, 1.6308594, 0.91845703, -1.4550781, 4.0234375, 0.35229492, 2.0820312, 1.0820312, -0.7524414, 3.0136719, -2.6894531, -0.7246094, -0.73535156, -0.7163086, 0.55566406, -1.0419922, 1.9482422, 2.8769531, -0.87060547, -3.0429688, 1.9863281, 1.8056641, 0.099121094, 2.3359375, -1.4609375, -1.8105469, -0.5371094, 0.36401367, 1.5742188, -1.71875, 1.0009766, -2.6914062, -0.42138672, 0.46191406, -2.6660156, 0.68359375, 1.8671875, -1.4824219, -1.6259766, -2.6816406, -0.10998535, -3.1523438, -0.98583984, 3.8261719, -3.2167969, 1.1367188, -1.1591797, -0.5708008, -0.27368164, -2.4609375, -2.1992188, -0.07232666, 1.0341797, -0.7138672, 1.2949219, -1.6083984, 0.5439453, -0.9692383, -2.2578125, 1.0576172, -4.0546875, -2.9726562, -0.96972656, -2.1210938, -0.61279297, 0.9169922, -1.5908203, -0.66064453, 0.8515625, -1.5673828, 1.8466797, -1.3505859, -1.3378906, 0.7470703, 1.84375, -0.6972656, -0.18383789, 0.84033203, 0.8535156, -0.5317383, -3.2539062, 0.48510742, 2.4609375, 0.09790039, 1.5791016, -0.91552734, -1.3017578, -0.38183594, 1.4824219, 0.37426758, 0.15429688, 0.4169922, -0.67626953, -0.5957031, -4.8632812, 0.7714844, -0.9511719, 2.2578125, -0.11791992, 0.74658203, -1.2412109, -1.9101562, 1.0800781, -0.15661621, 3.3144531, -1.0166016, 2.9609375, -0.5102539, 0.56396484, 1.171875, -0.55908203, -1.5537109, -1.2255859, 0.2397461, -1.4658203, -0.734375, -1.8759766, -0.19030762, -1.4882812, 0.27368164, -0.2631836, -2.2519531, 0.9453125, 1.6884766, -1.4921875, 0.15405273, -1.3369141, 0.65722656, 1.046875, 1.5498047, -3.0019531, 0.4543457, -0.072143555, -1.0136719, -0.6503906, 1.7802734, 0.7817383, 0.7607422, 3.6308594, -0.45043945, 2.4316406, -0.2626953, -4.8554688, 1.3925781, 3.5449219, -0.38012695, -0.12597656, -1.6669922, -1.453125, -2.0898438, -0.7089844, 4.3828125, 1.2128906, 3.5253906, -1.3876953, 0.60595703, 2.5332031, 1.1220703, 0.16101074, -0.3400879, -1.4462891, 2.2597656, -4.09375, -1.5292969, 2.0019531, 2.8554688, -3.1894531, -2.8554688, 0.7211914, -0.6713867, 1.5009766, 0.34936523, 0.6118164, 0.95458984, 1.8603516, 2.71875, 0.4099121, 1.4833984, -0.38598633, -2.5839844, -0.39038086, 0.88183594, 3.0117188, 1.1083984, 1.6621094, 1.0693359, 0.3190918, -0.1027832, -3.0449219, 0.95166016, -0.10986328, -0.8041992, 0.091796875, 3.28125, -2.2988281, 1.1669922, 1.3671875, -0.6513672, 0.06744385, -3.3027344, -1.5927734, 3.015625, 0.8647461, 0.3203125, -1.2851562, -0.9926758, 0.34570312, -2.125, 0.6791992, -0.19958496, -0.91064453, 1.3427734, -1.9287109, -0.81640625, 0.80029297, 3.0058594, 0.69873047, -2.4609375, 0.7270508, 0.43017578, -0.7158203, 0.4128418, -0.16674805, -1.0976562, -0.53808594, 4.1601562, -2.5585938, -2.1386719, 0.69189453, -1.9365234, 0.79345703, 0.5649414, -1.6933594, -1.3671875, 0.7138672, -0.5966797, 0.0066337585, -0.99853516, 0.058654785, -0.42041016, -1.4316406, -0.85253906, -3.1308594, -1.5498047, 1.2558594, -1.2871094, -0.5805664, 1.9912109, 1.3691406, 2.828125, -2.0566406, 3.1757812, -1.9072266, -2.6347656, 1.2597656, -1.5146484, 0.36010742, -2.5195312, -6.1640625, 0.6713867, -1.9726562, -0.18225098, 2.8027344, 0.7578125, 0.47265625, 1.5791016, 0.5756836, -3.3925781, -2.0859375, -2.2597656, -0.98291016, -3.8359375, 0.51904297, 1.1308594, 1.1210938, 0.07861328, -4.3359375, 0.97802734, -0.92578125, -0.06463623, 0.46313477, -1.1074219, 2.3828125, -3.2753906, 0.5395508, -0.6220703, 0.38232422, -0.88916016, -1.0927734, 0.24267578, -1.9335938, 3.7363281, 0.97753906, -0.29956055, 2.1679688, 4.40625, 1.2617188, -0.034851074, 0.40966797, 1.4707031, 3.2558594, -1.1142578, -4.0507812, -0.9086914, -0.53271484, 0.2578125, -1.6523438, -1.4179688, 1.7724609, -1.5898438, 1.3994141, -0.96191406, 0.1986084, 2.6035156, 0.30639648, -4.1210938, 1.4423828, -0.49438477, -2.3066406, -2.2832031, 0.27270508, -2.0214844, -1.1132812, 1.5136719, -1.5722656, 1.9384766, -3.2695312, -0.7524414, -2.9179688, 0.5541992, 2.1386719, 3.0410156, 1.8300781, -2.8769531, -1.6611328, -0.47436523, -2.0039062, -0.3918457, 1.6591797, 2.4453125, 0.43188477, 2.7695312, 1.2070312, -2.4902344, 1.1054688, 2.6484375, -1.2792969, 0.41674805, -0.57128906, -1.0224609, -0.65722656, -3.2246094, 1.9785156, 0.7338867, 2.6171875, -0.8457031, 1.1621094, -1.5742188, -1.6191406, -2.5097656, 0.76464844, -1.2382812, 1.3876953, 1.2294922, 1.3691406, 1.5751953, -0.6274414, 0.61865234, -1.7646484, 3.25, -1.8554688, -0.85595703, -0.39697266, 1.8671875, -1.3574219, -0.31420898, 2.2246094, 1.7548828, -1.1132812, 2.6621094, 2.1738281, -2.0703125, 1.2128906, 1.4121094, -1.6699219, 0.61621094, 0.22387695, -0.5888672, 2.5195312, -0.9819336, -2.9609375, -0.41064453, 4.1523438, -1.1855469, 0.43066406, -0.089660645, -2.765625, -0.5708008, -3.7070312, -1.8330078, -2.0117188, -0.14538574, -0.86376953, -1.8134766, 0.2277832, -1.0576172, 4.703125, 4.4453125, -1.4921875, -1.1855469, 1.4492188, 0.3359375, -1.6113281, 1.5722656, 0.55908203, -1.3876953, 0.15429688, 0.6386719, 0.7314453, 0.59814453, 1.6787109, 0.6533203, -0.9145508, 0.6723633, -2.6914062, 2.96875, -2.3535156, 0.6298828, 2.1601562, -0.17858887, 0.6191406, -3.4648438, -0.29296875, -0.8457031, 1.0019531, -0.5161133, -1.2548828, -0.4711914, -2.1269531, -1.3974609, -3.6015625, -0.48950195, 0.41308594, -1.6904297, -0.17578125, -1.8232422, -2.0722656, -2.4023438, 0.49438477, 1.6425781, -0.8569336, -0.95654297, -0.4189453, 0.4951172, 1.9609375, 0.47216797, -0.39013672, 1.7919922, -0.38085938, 1.1132812, -0.65771484, -3.6367188, -2.2167969, 1.5810547, -0.27026367, 1.8222656, -0.30517578, -0.61816406, -0.0036621094, 3.4960938, -0.26660156, -2.3496094, 1.3339844, 1.1972656, 0.95947266, 3.1621094, -0.23046875, 2.296875, 0.79345703, -2.7363281, -1.0214844, -0.062561035, 0.921875, 0.27441406, 2.6152344, 0.03173828, 1.8457031, -0.7451172, -0.75439453, 1.96875, 0.75683594, 1.5566406, 1.9833984, -1.5966797, -0.3190918, -3.8515625, -1.1982422, -2.203125, -1.3896484, -1.0322266, 0.35913086, 1.0488281, 0.50683594, -1.1416016, 0.15881348, 1.3027344, -0.91308594, -3.1191406, 1.6416016, 1.0097656, 1.6982422, 0.40673828, -0.9794922, -3.1972656, -3.015625, -1.0517578, -1.4560547, 0.036346436, -1.5664062, 0.12438965, -1.4326172, 1.1240234, 0.013633728, 0.81591797, 0.5932617, 0.25732422, -3.2246094, 2.6328125, 2.0820312, 0.3149414, 0.11883545, 0.045196533, 2.3710938, -0.8774414, 3.7167969, 1.7226562, -0.7104492, 0.86816406, 1.2861328, 1.8681641, -0.62939453, -0.13781738, 2.3613281, -3.7695312, -0.27246094, -1.2519531, -2.46875, -1.5224609, 1.4179688, 2.2929688, 0.6904297, 0.09161377, 2.3808594, 0.28930664, -0.19604492, 1.8613281, -0.014549255, -2.7070312, -0.18188477, 0.03491211, 0.2590332, 2.4101562, -0.19958496, 0.13891602, 1.9580078, 1.8945312, -0.9033203, 2.1035156, -0.10308838, 1.3447266, 2.0898438, 1.0322266, 2.6503906, 0.7817383, 2.5917969, 0.23132324, 1.0410156, 0.36401367, -2.4589844, 0.57958984, 1.3144531, 1.9248047, 0.56103516, -0.71728516, 1.4882812, 0.5317383, -0.8544922, -2.8671875, -0.7270508, 1.7558594, -1.5683594, 0.1595459, 0.43188477, 1.7363281, -1.9238281, -0.1977539, -1.7744141, 0.59521484, 0.6166992, -0.43969727, 2.453125, -0.36376953, -1.6962891, -1.203125, 2.0117188, 3.3085938, -3.0117188, 1.7998047, -0.70947266, -1.4072266, -1.1669922, 1.5087891, 2.3085938, 0.92626953, 1.5595703, 0.55566406, 2.8535156, 2.0449219, -0.50097656, 1.015625, 0.8330078, 0.6069336, 2.3886719, 2.0195312, -0.8544922, -0.515625, -0.0031356812, 0.64208984, -1.78125, 2.0292969, -0.35986328, -0.5727539, -0.048919678, -1.9091797, 1.0664062, 0.5390625, 0.022399902, -2.5722656, 0.7788086, 1.3251953, -0.45947266, -1.0195312, -0.025863647, -1.1191406, 3.7382812, 0.77978516, -0.5229492, 1.3115234, -0.5415039, -0.47045898, 0.08392334, 0.8984375, -1.7744141, 3.046875, 0.23425293, 3.59375, 1.2802734, 0.6977539, 2.3808594, -1, 0.9160156, -0.80615234, 0.37548828, -1.6455078, 1.7861328, -0.09063721, -0.9038086, 0.10620117, -1.5136719, -0.15893555, 0.66308594, 0.35351562, -1.0654297, -2.3691406, 2.2890625, 0.2939453, -1.9169922, 2.515625, 2.1210938, -1.4941406, 1.5888672, -0.86279297, -1.8378906, 2.3789062, 0.8496094, 1.7705078, -1.0791016, -1.7578125, 0.39013672, 0.0947876, 1.9033203, 0.08026123, -0.28173828, -1.4306641, -3.1054688, 0.029251099, 1.7734375, -0.11645508, 1.8251953, 1.0507812, -1.8085938, -1.6347656, 0.7758789, 0.6484375, 0.8256836, -2.7089844, -3.8535156, -1.703125, -0.7426758, -0.77197266, 0.72509766, 4.28125, 0.15710449, 2.2324219, -1.3339844, -3.1523438, -0.7011719, 0.06756592, 0.96728516, -0.8955078, -0.73535156, -0.12524414, 0.91259766, 1.421875, 0.81933594, 0.30200195, -1.0546875, -1.1074219, -0.18383789, -1.5341797, 2.0332031, -1.4326172, -1.2324219, 1.4824219, 0.8515625, 0.85253906, 1.7998047, 1.8320312, 2.1503906, 0.3798828, -3.4941406, -0.32373047, -0.921875, 1.2353516, 1.8398438, 0.37304688, 2.2402344, 0.7182617, -0.94873047, -3.3554688, -1.6923828]}, "B0024ECC3S": {"id": "B0024ECC3S", "original": "Brand: Camco\nName: Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)\nDescription: \nFeatures: Easy access to gas valves\nHeavy-duty polypropylene\nPolar White\nFor two 20 lb propane tanks\nEasy to install and highly durable\n", "embedding": [1.1933594, 1.6259766, 3.453125, -0.5053711, -1.1308594, -2.0546875, -0.13708496, -0.17565918, 0.93310547, 1.0488281, -0.68115234, 1.2304688, 0.9501953, -2.8027344, 1.4316406, 0.8022461, -0.45629883, 2.3769531, 2.3417969, 0.74121094, 3.7519531, 1.0097656, -0.6557617, 0.010688782, 1.1679688, -0.80615234, 2.6308594, -1.7226562, -1.3808594, 0.42041016, -0.33813477, -0.41186523, -1.1474609, 1.0664062, 0.61328125, -0.59814453, -0.9902344, 0.0625, -4.0898438, 0.37182617, -4.7734375, -0.17041016, 2.3125, 0.1538086, -0.9111328, -0.78759766, -1.2509766, -3.6074219, 0.9248047, -2.8691406, -0.9765625, 1.3847656, 2.4414062, -0.020233154, -1.4746094, 0.32250977, 0.7026367, -1.7675781, 0.20227051, 1.5683594, -1.8623047, 0.3076172, -1.7861328, 2.96875, -0.8261719, 0.98876953, -1.890625, -1.6503906, -0.1217041, 2.5644531, 2.4101562, 1.6621094, 0.3190918, -1.6445312, 0.27124023, -0.14978027, -1.4941406, 2.0253906, -0.40649414, -1.7607422, 1.2802734, 1.0566406, -2.4921875, -2.3964844, -1.1240234, -1.0615234, -1.015625, 0.58251953, -0.41748047, -0.6933594, -0.5859375, 1.8759766, -2.0117188, -3.4863281, -1.1572266, 0.8208008, 1.5205078, 1.4101562, 1.7568359, 1.1445312, 0.12310791, -0.26000977, -0.7949219, 0.3388672, -2.3710938, -1.2490234, 1.6044922, -2.0019531, -1.1162109, 0.62939453, 1.4433594, -0.2956543, 0.7583008, -1.5058594, -0.5180664, 1.1943359, 0.9667969, 0.59033203, 2.2949219, 1.5947266, 4.0898438, -0.2902832, 1.5429688, -0.6542969, 1.1035156, 1.1162109, 0.39160156, -0.2705078, 2.6210938, 0.68310547, 2.2695312, 0.609375, 0.52246094, -0.39208984, -0.69189453, -0.82910156, -0.6347656, -1.4541016, -1.4912109, -0.13586426, -3.2949219, -1.3789062, 0.8730469, 0.31152344, -3.2480469, -0.75341797, -1.1835938, 2.3417969, -0.4013672, -0.6923828, 0.9160156, -1.8388672, -0.027740479, -1.234375, 1.2070312, 1.3847656, 0.359375, -4.2265625, 3.2304688, 2.1269531, 2.953125, 0.11663818, 0.14208984, 0.7915039, 1.1884766, -2.7070312, 0.74316406, -0.34448242, -1.0136719, 1.2705078, -0.10772705, -2.3300781, 1.0576172, 1.2851562, -1.1757812, 0.017410278, 1.7138672, 1.5419922, 1.1826172, -0.36572266, -3.9160156, 0.2232666, -0.2479248, -0.24328613, 0.90478516, -0.5727539, -1.6054688, -2.8554688, -0.18737793, 0.19335938, -2.2402344, 1.4179688, -1.1298828, -0.4951172, -1.2617188, -4.6757812, -2.5976562, -1.4335938, 0.21203613, 2.6777344, -1.0673828, -0.97314453, -1.6542969, 0.9707031, -1.5517578, -0.8964844, 1.7138672, 1.4482422, 1.0410156, 1.2021484, 0.52246094, -1.0136719, 2.8378906, -1.8378906, -1.1445312, -1.1865234, 0.92285156, 0.83740234, 1.8496094, 0.8564453, 1.1689453, 1.3222656, -1.2099609, 0.6455078, 1.5126953, 2.3730469, 1.9248047, 0.66796875, -1.6669922, -0.83251953, 0.47192383, 1.2578125, -2.2265625, -0.6435547, -0.8984375, 0.9370117, -0.39038086, -1.0302734, -0.15551758, -1.7197266, 0.33081055, -0.023986816, -1.2197266, 0.45654297, 0.9453125, 1.6582031, -1.1025391, 0.4892578, 0.2142334, -0.35229492, 1.1650391, 1.0966797, 0.09893799, -0.86621094, -1.1513672, 2.5703125, 1.6572266, 0.0927124, 0.6098633, -2.9335938, 0.18469238, 2.1601562, -1.2558594, -0.0345459, -0.070617676, 0.81103516, 0.15319824, -0.98876953, -3.3222656, 0.5449219, 0.515625, 1.2148438, 0.37060547, 0.31323242, 1.1933594, 1.0966797, -1.6210938, 1.8378906, 1.3154297, 2.5683594, 1.4824219, 0.0028648376, 0.9550781, -2.1171875, 0.71435547, 0.40771484, 2.7753906, 1.0615234, -2.4375, 0.5473633, 2.234375, 0.064575195, -1.7597656, 1.6503906, 3.3164062, 0.9501953, 1.9375, 0.9199219, -0.96875, 0.48217773, -0.1015625, 0.671875, -0.1940918, -0.2142334, 0.6459961, -0.7285156, -1.0771484, -1.7236328, 1.3769531, 0.0009737015, 0.5175781, -0.5883789, 0.26831055, 0.7998047, -0.6074219, -0.97509766, 4.3359375, -2.2128906, -0.37231445, 1.6669922, 0.10406494, 2.5175781, 0.8173828, -0.42529297, 0.71191406, 0.9902344, -3.40625, 2.0820312, 0.28027344, -0.18188477, 1.2675781, -2.4023438, 2.6640625, -2.0292969, 0.9394531, 0.96191406, -1.1630859, -0.7495117, 1.4365234, -1.2353516, 0.19946289, -1.1855469, -1.5527344, 2.8398438, 1.1328125, -0.484375, -0.67626953, 1.4287109, -1.0283203, -2.1171875, 0.8022461, 1.7919922, -0.8828125, -2.8066406, 0.2861328, 0.7910156, -1.4863281, 2.0585938, -0.54589844, -0.8388672, 0.9716797, 1.3837891, 1.8525391, -1.4541016, -1.9287109, -1.6289062, 1.0195312, -3.7148438, 3.0078125, -2.1953125, 1.2871094, -2.7089844, 0.43359375, -0.5332031, -2.2207031, 3.2714844, -0.9477539, 2.9785156, 1.2304688, 0.7060547, 0.10028076, -2.7226562, -0.12512207, -2.5039062, -2.3066406, 2.1074219, 1.0224609, -0.9682617, -0.35375977, -3.6601562, -1.2148438, -1.125, 0.31054688, 0.24108887, -1.8427734, -0.29077148, -0.7895508, 0.9277344, 0.43115234, -0.00020611286, 1.3417969, -1.1523438, -0.94921875, -0.5546875, -0.10656738, -0.39868164, -0.6821289, -1.8359375, 0.6513672, 0.5991211, -0.71435547, 1.3515625, -0.5830078, 1.4990234, -0.86376953, -3.6269531, 0.095825195, 2.9980469, 1.6279297, 2.3144531, -1.6582031, -1.2480469, -1.5722656, 0.24169922, 2.3183594, 3.2753906, 2.15625, 1.7597656, -0.59521484, 0.97753906, 0.37329102, 0.32836914, 0.19824219, 1.0029297, 4.0703125, -0.1451416, -0.021057129, 0.8383789, 3.0546875, -2.8925781, -0.1739502, 0.26708984, -1.1337891, 2.4746094, 2.0605469, -2.8007812, 0.44311523, 0.66064453, 2.640625, -0.5, 0.8598633, 0.75439453, -0.40698242, 1.3691406, 1.5888672, 0.4975586, 0.59521484, 1.0908203, -2.203125, 1.1640625, 0.8779297, -0.6015625, 0.4350586, 1.2480469, -2.2285156, 0.107055664, 1.7109375, -1.21875, 3.4472656, 2.5585938, 0.6748047, -0.14855957, -2.2675781, 1.234375, 0.00055360794, 0.73339844, -0.42749023, -1.0732422, -0.8535156, 0.6430664, -1.3798828, 2.8476562, 0.14953613, -0.57421875, 0.10827637, -2.2421875, -0.8071289, -2.5117188, 3.9667969, -0.48120117, 0.3659668, -0.6796875, 2.4316406, -0.9057617, -4.4453125, -0.79248047, -0.080444336, -2.0273438, 3.4785156, 1.7441406, -1.0058594, 0.01234436, -1.3232422, 1.6240234, 2.2773438, -2.1386719, -1.1240234, -2.125, 1.0458984, -3.203125, 0.29174805, 1.4375, 2.6523438, -3.34375, -0.0006508827, -0.38232422, 1.734375, -0.11657715, 0.40454102, -0.062805176, -0.3005371, -2.1171875, 1.2011719, 0.77685547, 1.703125, 1.6601562, 0.84814453, 0.6542969, 0.3461914, 0.50683594, 0.9423828, -3.9980469, 0.42211914, -0.23840332, -0.64453125, 2.78125, -0.3310547, 1.8115234, 0.8979492, -0.11291504, -3.8535156, -1.296875, -1.7167969, 1.3544922, -2.2441406, -2.0449219, -0.06945801, 0.2578125, -2.8808594, -1.0986328, -0.6088867, -2.4707031, -1.5712891, -0.6347656, 1.7509766, 1.0126953, -0.026275635, -0.6621094, 0.18579102, -0.03466797, -0.5288086, 0.34570312, -0.8911133, -1.8837891, 3.4726562, 1.2089844, -0.047821045, 0.12927246, 2.3261719, 2.1367188, -1.5097656, 0.18005371, -1.4101562, 0.1394043, -0.9951172, -2.7285156, -0.75439453, -1.8544922, 1.5263672, -1.7705078, -0.008987427, 0.8852539, 2.3144531, -0.13061523, -0.20837402, 1.5419922, 0.6220703, -2.7148438, -1.7675781, 2.1679688, -0.5004883, -1.1210938, 0.86035156, -1.6083984, 0.8618164, -0.19787598, -1.8681641, -2.7050781, -0.095458984, -0.056030273, 1.3417969, -4.6914062, 1.2226562, 2.203125, 3.3417969, 0.9291992, -1.4462891, -2.0605469, 1.5615234, 1.8710938, 1.8066406, -1.6083984, 0.80126953, -0.35864258, -1.0888672, 1.3662109, -3.3007812, -1.3271484, -0.16845703, -1.1025391, 0.13500977, -0.6245117, 1.4501953, -1.9511719, 0.95703125, -0.37670898, -1.4443359, 3.3085938, -1.1777344, 1.0234375, -1.0761719, -1.1757812, -1.890625, 2.2285156, 1.1025391, 0.1940918, 1.7890625, -1.3808594, -1.3837891, 0.7939453, 1.4726562, 0.10827637, 1.3945312, -1.0849609, -0.5136719, 0.6582031, -0.09729004, -0.7084961, -1.3847656, 2.28125, 2.7421875, 0.9013672, 0.91503906, 1.4609375, 0.33251953, 1.9101562, 0.94189453, 0.8388672, -1.2275391, -0.38964844, 0.9916992, 2.1542969, -2.4023438, -2.7363281, 1.4863281, 0.47387695, -0.89453125, 2.4824219, 0.37402344, -1.0810547, -1.1523438, -2.1035156, -2.7285156, -0.56689453, 1.0869141, -1.6347656, -1.2988281, 0.35595703, 1.1191406, 0.3413086, 2.4570312, 0.4177246, -0.71435547, -1.1943359, 0.5600586, -1.2978516, -1.6025391, -1.7929688, -3.2558594, -0.018569946, -0.41186523, 0.6503906, -0.81689453, 1.9462891, 1.3935547, -2.6035156, -1.3359375, -0.92285156, 0.01689148, -1.7753906, -1.0732422, 2.0917969, -0.31176758, -0.14624023, 0.19152832, 0.6269531, 0.16564941, 3.0722656, 1.8232422, 0.5102539, -0.1270752, -0.4885254, -3.6582031, -3.3574219, -0.80078125, 0.6376953, -1.5087891, 1.0634766, -2.0410156, -2.0410156, 1.1826172, -2.4960938, 0.34228516, -1.3623047, 0.5229492, -0.86816406, -1.4941406, -0.3383789, 0.003168106, -1.5292969, 0.27856445, -1.4443359, -0.9511719, -2.3164062, -3.9140625, -2.6699219, 0.9326172, -1.2509766, -0.9213867, 0.66064453, -0.67626953, 1.140625, -0.113098145, 1.2900391, -2.1328125, 1.6650391, -0.9033203, 0.57128906, 2.5820312, -0.35058594, -2.1738281, 1.3427734, 0.33520508, 2.0703125, 2.7578125, 0.9057617, -3.1328125, 1.9082031, 0.5102539, 0.1274414, 0.3701172, 1.7626953, 1.5615234, 0.5751953, 2.4492188, 1.4990234, -1.2832031, -1.2294922, -2.3085938, -2.3769531, -0.8071289, -1.2158203, -1.625, -0.81103516, 1.6542969, 1.1865234, -0.19042969, 0.32006836, 0.60009766, 0.69091797, -1.8662109, 1.1298828, -1.9970703, 1.1621094, 1.1962891, -1.7597656, -2.7519531, -2.796875, 2.8339844, -0.15881348, -0.5498047, 0.77441406, -0.10913086, -0.30981445, 1.3398438, 0.4892578, 1.7529297, -0.16101074, 2.15625, -0.53564453, 1.4902344, 3.5195312, -0.86376953, 0.15112305, -0.72753906, 0.95410156, -1, -0.14440918, 2.6445312, -2.5605469, -0.5366211, 0.34960938, 0.52783203, -0.25341797, -0.5883789, 0.6772461, -1.7890625, 0.65771484, -0.3635254, 0.021911621, -3.3574219, 2.8691406, -0.9345703, 0.46972656, 1.5068359, 0.55322266, -1.4404297, -1.1523438, 2.1132812, -0.37939453, -0.07501221, -0.8491211, -0.57958984, 0.6347656, 2.5742188, -3.7695312, 0.08312988, -1.5517578, 1.4570312, -0.17492676, 0.8852539, 0.111206055, 0.05532837, 1.4794922, 2.5820312, 4.0898438, -0.25561523, 2.5175781, 0.9848633, 1.1113281, 3.0664062, -1.0849609, 1.6074219, -0.1854248, 0.64746094, 2.7851562, -1.3964844, -0.93310547, 1.515625, -0.88964844, -2.34375, 0.72558594, 1.1796875, -3.8085938, -0.5073242, -0.0904541, -1.25, 1.1728516, 3.0019531, -1.2568359, -2.21875, 0.30908203, -1.4111328, 2.9863281, -0.421875, 0.80126953, 0.79248047, 0.85546875, 1.1064453, 0.9995117, 0.1048584, -2.6367188, -1.9628906, -0.25756836, 0.86376953, 0.107666016, 2.4804688, -1.1767578, -0.055908203, -0.7661133, 1.578125, 0.07470703, -1.3369141, 2.9003906, -1.3857422, 2.9335938, 2.1621094, -0.7011719, -0.1973877, 1.8183594, 0.12731934, -2.5703125, -0.31274414, -0.22875977, 0.71533203, 0.35424805, -3.3554688, 0.31396484, -1.0263672, 0.7216797, -4.2539062, 0.54003906, 0.68847656, -2.0117188, 1.8496094, 1.0986328, -0.08831787, 4.1015625, 0.76123047, -0.3479004, 1.7558594, -0.84375, -0.1875, -0.44921875, 0.01612854, 0.43432617, 1.1025391, -1.1210938, 3.0527344, 2.2148438, -0.26782227, -1.2177734, 2.0117188, 0.38720703, 0.9897461, 0.78564453, -0.6933594, 2.6757812, 0.4128418, -0.5234375, -0.79003906, -2.0351562, 1.0615234, -0.029754639, -0.68359375, 1.0634766, -0.30200195, -0.84814453, 2.5175781, -4.4492188, -0.31518555, -0.027435303, -0.97314453, 0.8203125, -0.24511719, -1.9150391, -3.6601562, -0.30566406, 0.62939453, -1.8916016, 0.8754883, -2.1816406, 0.90185547, -0.55078125, -1.2539062, -0.9140625, 0.7207031, -1.3037109, -0.12207031, 1.015625, 0.34960938, -0.59521484, -0.6713867, -1.4306641, 1.484375, -0.40039062, -0.7270508, 0.7319336, 0.9584961, -0.4260254, 1.1738281, -0.26098633, 0.26953125, 0.6113281, 1.7148438, 1.3134766, 0.77246094, 1.3007812, -1.4121094, -0.50439453, -3.0078125, 2.5078125, 1.5595703, -1.9677734, 0.23596191, 1.3193359, 3.0917969, -2.2285156, -0.20837402, 0.49023438, 0.36206055, 1.5517578, -1.9111328, 0.64746094, 1.3144531, -0.5834961, 1.5058594, 3.4785156, 3.2832031, -1.4472656, 0.14916992, 2.1367188, -2.4238281, -1.9414062, -0.58251953, -2.0175781, -3.0527344, 0.015220642, 2.9746094, 3.4667969, -0.07745361, -1.203125, -2.1601562, -0.93408203]}, "B07GRFTR4S": {"id": "B07GRFTR4S", "original": "Brand: GasOne\nName: GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC\nDescription: \nFeatures: \u2713 MEASURE YOUR PRESSURE \u2013 Use Gas One\u2019s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One\u2019s Pressure Gauge lets users control their heat with a precise level of accuracy\n\u2713 USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable\n\u2713 DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners\n\u2713 COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow\n\u2713 STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI\n", "embedding": [-1.4394531, 1.3115234, 1.2314453, 1.0429688, -0.55908203, -0.2993164, 1.2363281, -0.9067383, 1.9658203, -0.25756836, 2.1132812, 1.5800781, 0.66308594, -0.79345703, 2.5527344, -0.5131836, 0.6455078, 1.1835938, 0.53808594, 2.9746094, 1.1611328, 0.24121094, 2.5742188, -1.8310547, 0.3720703, 1.3544922, 3.5, -3.1796875, -1.3603516, 0.1875, 1.9580078, 2.2480469, -0.27807617, 0.7421875, -1.3330078, -1.0566406, -0.46728516, -0.62939453, -2.8984375, -1.5009766, -1.0517578, 1.9648438, 1.3837891, 0.2607422, -1.4658203, 1.9267578, 1.625, 1.2763672, 0.69091797, -0.06768799, 0.5180664, -0.15014648, 0.13061523, 0.26831055, 0.7006836, -0.1907959, 1.3291016, -2.0839844, 1.2314453, 1.9970703, 2.3515625, 1.0341797, -1.7265625, -1.6474609, -0.9482422, 0.7216797, -0.0848999, 0.74316406, -0.84472656, 0.5888672, 2.3476562, 2.5976562, 0.99072266, -0.07525635, -1.3554688, 0.83496094, -2.4824219, -0.46484375, 3.3964844, -0.2644043, -0.5854492, -0.3474121, 0.28515625, -2.2949219, 0.47509766, 0.5341797, -0.59228516, 1.1992188, 0.31884766, 0.95703125, -2.9746094, 3.0585938, -3.4023438, -4.4804688, 0.9423828, 0.2631836, 0.4350586, 0.98828125, 1.4423828, 0.19763184, -2.125, -2.1308594, 0.26513672, 2.40625, -0.9375, -1.3183594, 0.15478516, 1.5009766, -4.4335938, 1.0488281, -0.50097656, -0.29077148, 0.8574219, -1.6787109, 0.81884766, -3.1621094, 0.75341797, -0.96191406, 3.1425781, 0.87158203, 1.7509766, 0.47460938, 0.55078125, 0.46142578, -0.093933105, 0.73046875, -0.6533203, -1.2802734, 3.1269531, -1.1171875, 0.90234375, -2.6152344, 1.484375, 0.78222656, 0.9873047, -2.1210938, 0.19470215, -3.3925781, -2.2382812, -0.8095703, -3.390625, 1.3115234, -0.4958496, 0.03503418, -2.8144531, 0.8417969, -2.7753906, 0.9970703, 2.7480469, -1.0546875, 1.2509766, -1.6884766, -1.3427734, -1.0976562, 0.41845703, 0.7294922, 0.17919922, -1.5585938, 2.4023438, 1.7314453, 0.46875, 0.11956787, -3.0644531, 0.61816406, 0.54833984, -0.8066406, 0.68066406, -0.19592285, -1.2539062, 0.41845703, -0.61279297, -1.5322266, -0.8720703, 2.1523438, -0.6933594, -0.77197266, 0.58691406, 3.0761719, 1.2783203, 0.021850586, -4.0273438, -2.5058594, -0.43725586, -2.5644531, 2.5, -0.2590332, -2.2480469, -0.5151367, -0.24243164, -1.2451172, -1.0166016, -0.16894531, 0.090148926, 2.0605469, -0.4440918, -0.7626953, -3.1660156, -0.48339844, -1.1123047, 1.3632812, 0.027633667, -1.5859375, 1.2246094, 0.13684082, -0.7416992, -2.1855469, 1.3603516, -1.8164062, -0.5708008, 1.9707031, 0.7338867, -1.2783203, 1.3447266, -0.40234375, 0.7519531, -2.3339844, 1.7695312, 2.6757812, -0.061798096, 1.2578125, -1.28125, 0.012901306, 0.5209961, -0.17175293, 1.2861328, 1.0898438, -0.93896484, 1.015625, -1.3085938, -2.5058594, 2.8652344, 1.5195312, 0.32080078, -1.4414062, 0.21447754, 1.2978516, -0.22143555, -0.5058594, 0.6870117, 1.1328125, 0.35839844, -0.22839355, -2.9296875, -0.96484375, -1.9013672, 0.7133789, -1.6416016, 1.2548828, 2.4277344, -0.3334961, 1.4423828, -0.054260254, -2.1113281, -0.4255371, -2.7285156, -0.36376953, 0.073791504, 2.2929688, -0.22070312, -1.4482422, 1.9316406, 1.6386719, 1.0410156, 1.5683594, 0.39404297, 0.69433594, 1.0966797, -1.40625, -0.48242188, 0.1385498, 0.77246094, 1.8554688, 1.4169922, -0.57666016, 0.5605469, 1.6728516, -2.4453125, 2.203125, -0.099731445, -0.2614746, 2.3632812, -1.5087891, 0.53466797, -2.09375, 3.0332031, 1.1523438, 1.6884766, -0.19995117, -2.3769531, 0.087402344, 3.9160156, -0.15734863, -3.0449219, 2.1347656, 1.6669922, -0.33398438, 1.5380859, 0.77197266, 0.35717773, -1.0751953, 1.2431641, 0.8989258, -1.8271484, -0.10076904, 3.2695312, 0.8354492, -1.4677734, -0.14355469, -0.68847656, -0.0016489029, -1.5927734, -1.3759766, -1.3710938, 2.0566406, -1.5869141, -1.5322266, 0.0040664673, -2.4257812, -0.39282227, 1.0263672, 2.3730469, 2.1660156, 1.9365234, -1.4101562, 0.4638672, 2.5371094, -1.1611328, 0.5996094, 0.049560547, -0.7451172, 0.41357422, -1.2558594, 0.33154297, -3.0644531, -2.3320312, 2.0449219, -1.9453125, -2.5761719, 1.6083984, -2.5917969, -2.9570312, -0.20605469, -1.5488281, 1.8974609, 1.3359375, 0.76953125, -1.4550781, -1.1601562, 0.04888916, -1.0449219, 0.4729004, 2.8535156, -0.8383789, -0.69628906, -0.21191406, 0.0635376, -0.6582031, 1.1162109, -2.265625, 0.9379883, 1.3710938, 0.17797852, -0.23205566, -0.12768555, -0.64990234, -1.4785156, 2.4453125, -3.4082031, -1.2509766, -0.81396484, 0.9296875, -0.99658203, 0.027038574, -2.6875, -1.2890625, 1.0859375, -0.98291016, 1.203125, -1.359375, 3.3476562, -1.3261719, 0.23486328, 2.1191406, -1.9550781, -2.9726562, 0.08807373, -0.43774414, -0.57177734, -1.1738281, -2.0976562, 0.81884766, 0.48413086, 0.7470703, -0.07733154, -0.113586426, -2.171875, -0.030197144, 1.8330078, -2.1269531, -0.5078125, 1.6132812, -0.34472656, -3.3398438, 0.054595947, 0.27539062, -3.0390625, -1.0273438, -0.42138672, 0.16418457, -0.3413086, 0.51953125, 0.8378906, 1.0136719, 0.75, -2.5566406, -2.7011719, 1.4736328, 1.8623047, -2.2871094, -0.3256836, -1.1425781, -0.5708008, -1.4414062, -2.2460938, 2.0996094, 1.5117188, 2.328125, -0.78027344, 0.62597656, 0.006958008, 0.82373047, -1.1367188, -2.1738281, 0.56152344, 2.21875, -2.4199219, -1.4746094, -0.34448242, 1.5673828, -2.0898438, 0.24438477, 2.1796875, -0.5629883, 2.34375, 2.1621094, 1.2412109, -0.2746582, 0.09509277, 2.2382812, 0.020217896, -1.6367188, 0.15759277, 0.76904297, 0.67871094, -1.5703125, 1.1962891, 1.5644531, 1.1757812, 2.3378906, 0.28588867, -0.59814453, -1.53125, 0.23474121, 0.69189453, 0.6777344, 0.93896484, 0.79833984, 0.86083984, 0.1751709, 0.62402344, -0.26342773, 1.6240234, -2.3476562, -0.39208984, 1.1308594, 0.37280273, -0.4086914, 0.7402344, -0.7470703, -1.0185547, 0.14855957, 1.0341797, 1.8212891, 1.6367188, 2.5175781, -0.5102539, 1.9365234, -1.1708984, 1.6884766, 0.2578125, 1.6210938, -0.41967773, 0.010185242, -3.0117188, -1.8964844, -0.38305664, -2.7207031, -1.0283203, 1.65625, 0.8540039, -1.0537109, 1.2060547, -0.1986084, 1.4248047, 0.9116211, -2.0253906, 0.10131836, -1.8076172, -1.0048828, 0.37597656, -0.9550781, 1.9912109, 0.8330078, -2.9472656, 0.3293457, -2.2578125, 0.43579102, 0.69970703, 1.0439453, -2.1425781, -1.5683594, -1.2949219, 2.3300781, 0.10583496, 3.1992188, 1.0859375, -0.2709961, 1.5957031, -3.4628906, -0.9472656, -0.76171875, -4.59375, 0.70166016, -3.3574219, 1.1279297, 3.2675781, 1.1640625, 0.1694336, 1.1064453, 1.6689453, -3.453125, -1.4140625, 0.6254883, 1.1308594, -2.4414062, -0.5131836, 1.7089844, 0.5083008, -0.3022461, -2.0820312, -0.34570312, -2.625, -0.58447266, -0.6694336, -1.5791016, -0.42797852, -1.4716797, 1.2177734, -1.4335938, -0.7817383, 0.35180664, -0.7158203, -1.0888672, -4.1640625, 2.1816406, -0.6743164, 0.9770508, -0.7529297, 3.7128906, 2.2167969, -1.2558594, 0.3774414, 0.060821533, 1.7939453, 0.08270264, -0.2692871, 0.76904297, 0.88427734, 0.54345703, -0.8671875, -1.0332031, -1.9580078, -0.75439453, 1.1035156, 0.44311523, 1.5322266, 0.92822266, 1.1494141, -1.9541016, 1.3935547, 1.1835938, -0.46875, -0.13671875, -1.4072266, -1.1689453, -1.1464844, 1.1464844, -2.4121094, -1.4736328, -0.9868164, 0.36083984, -3.5078125, 2.3671875, 0.42333984, -0.40600586, -0.6616211, -1.2207031, -0.20275879, -1.0615234, 0.56347656, -1.4150391, 0.2841797, -0.890625, 0.19555664, 1.9208984, 2.3027344, -0.4128418, -0.41015625, 0.83447266, -1.5322266, 0.46069336, -0.53515625, 1.6572266, 1.8662109, -0.9770508, -0.07086182, -1.1953125, 4.8007812, 0.82666016, 0.7739258, 1.03125, -1.3291016, -2.8574219, 1.8876953, 2.4453125, 2.8203125, 1.3496094, -0.2902832, 1.5292969, 2.4121094, 0.68310547, 1.4941406, 0.46777344, 0.24597168, 0.5390625, -0.7060547, 1.5986328, -2.1445312, -0.40844727, 0.56640625, 1.6083984, 2.4726562, 3.296875, 1.5351562, -1.3105469, 0.47973633, 0.50683594, -0.2915039, -0.8120117, -0.5444336, -0.98876953, 2.6367188, -0.0725708, -1.9091797, 0.6118164, 3.3476562, -0.2052002, 1.7304688, 0.7836914, -0.34545898, -0.48632812, -1.3066406, -2.0449219, 0.009796143, -0.5942383, 1.1191406, -2.5722656, 1.3828125, -1.0341797, 1.0410156, 1.6025391, 0.6582031, 0.5786133, -0.24682617, -1.7958984, 0.70947266, -1.78125, -0.44628906, -2.4902344, 0.4543457, 1.2255859, 1.3144531, -0.9916992, 0.6953125, 0.3461914, -0.73583984, -0.89404297, 0.86083984, 1.65625, 0.29589844, -1.0498047, 1.4658203, 0.4416504, 0.3984375, -0.75927734, -0.5209961, -0.8876953, 2.4902344, 3.6992188, 1.5996094, 0.07348633, -1.3144531, -1.4990234, -5.296875, -0.48461914, 2.2578125, -0.3557129, -0.28295898, -2.8535156, -0.1348877, 1.0322266, -0.69189453, -0.44458008, -3.0253906, 0.06628418, -1.6289062, -0.76416016, -0.60058594, -0.22509766, -0.06774902, 0.09161377, -1.2460938, -0.014640808, -0.060302734, -0.076416016, -1.5039062, 0.022537231, -1.2041016, -0.37426758, 1.7792969, -1.6445312, -0.83203125, 1.8066406, 1.4238281, -2.5390625, 2.6347656, -3.7558594, 0.47827148, 0.5932617, -1.84375, 1.9990234, 1.9814453, 0.0152282715, 1.515625, 1.6816406, 2.1660156, -0.63427734, -1.5830078, 1.6484375, 0.6801758, -0.92578125, -1.9316406, 0.875, -0.6767578, 0.96191406, 2.0839844, -0.80566406, -2.0527344, -1.3515625, -2.7070312, 1.0117188, -0.8510742, -1.8984375, 0.95947266, 0.50634766, 2.2480469, -1.5839844, 1.3808594, 1.5126953, 0.17480469, -0.36206055, 0.91015625, -0.9243164, 1.5009766, 1.1494141, -0.7680664, -3.4121094, -1.1767578, 2.2617188, 2.7265625, -0.6850586, -0.23669434, 0.19799805, -0.5361328, -0.52490234, -1.1923828, 2.0527344, 0.8745117, 0.8588867, -0.4572754, -0.8691406, 2.7558594, -0.93603516, 0.054779053, 0.8769531, 0.1295166, -1.1337891, 2.4433594, 2.859375, -2.1308594, -0.040039062, -2.5625, 1.3798828, -1.2783203, -0.84277344, 0.47607422, -2.5546875, 0.4033203, 0.31689453, -2.1679688, -3.2519531, 1.6025391, 0.052459717, -1.7529297, 2.0039062, 2.2675781, 0.3256836, -0.7548828, 1.9492188, 1.390625, -0.39526367, -0.5732422, -1.2539062, -0.19763184, 1.2470703, -0.5175781, -0.9453125, 3.5722656, 1.6181641, -0.6201172, -0.35913086, 0.058563232, 2.4179688, 0.80126953, 1.6503906, 3.9570312, -0.60302734, 1.0830078, 1.6416016, 1.1914062, 3.4570312, -0.85595703, 0.62841797, 0.45214844, 0.7792969, -0.06890869, -0.1895752, -0.09161377, -0.6982422, -0.22436523, -0.36767578, 2.7617188, 0.9902344, -3.4296875, -1.6503906, -1.0976562, 0.1373291, -3.1347656, -0.30639648, -2.1484375, -0.20422363, 0.68408203, 0.70703125, 1.3134766, 0.5292969, -1.6367188, 0.03753662, -0.3383789, 2.4726562, -0.6401367, 0.073791504, -1.1640625, -2.3378906, 1.3916016, 2.6953125, 0.29760742, 0.3515625, 1.2636719, -0.2401123, -0.91015625, 0.8232422, 1.0371094, -2.3027344, 0.6801758, -0.99316406, 2.8378906, 1.8632812, -1.5927734, 2.9414062, -0.08929443, -0.2705078, -4.71875, 1.7431641, -0.0055999756, -0.09857178, -1.2509766, -5.1601562, 1.6123047, -2.0332031, -0.16418457, -2.1777344, -0.0027809143, 0.5317383, -1.4248047, 0.63671875, 0.75146484, -2.0820312, 3.4433594, 1.359375, -1.7246094, -0.5395508, 2.6621094, 1.6416016, -0.79785156, -0.49194336, 0.88183594, -0.5751953, -2.3222656, 2.5859375, -1.65625, -1.1464844, 0.2619629, 1.1660156, 0.09173584, 0.62158203, 0.07208252, 1.3642578, -0.5678711, 1.1953125, -0.2322998, -0.88623047, -2.0722656, -0.043151855, 0.39038086, 0.5283203, -0.74365234, -0.78515625, 1.0361328, 0.2861328, -2.2832031, 0.98828125, 1.9560547, -0.87646484, 0.6230469, 0.96191406, -1.1533203, -1.5996094, -0.8808594, 0.10192871, -2.1582031, -0.18383789, -0.6333008, 0.10595703, -1.1962891, -0.6694336, -1.9003906, 0.5341797, 0.35717773, 0.85595703, -0.1907959, -1.1240234, 0.16491699, 0.23083496, -0.9746094, 1.1943359, 1.5087891, -1.4257812, 1.8359375, -0.07110596, -0.23486328, -0.86035156, -1.0849609, 0.76708984, 1.8232422, 2.8984375, 1.6015625, 3.2050781, -2.1484375, -2.8632812, -1.3183594, -2.921875, 1.859375, -0.42236328, -0.8076172, -0.16320801, 2.0292969, 2.4667969, -0.7060547, 1.9072266, -0.90722656, -0.014915466, 1.8037109, -0.96777344, 0.6801758, -0.94873047, -1.0966797, -0.4013672, 3.6601562, 2.5273438, -1.3720703, 0.32128906, 1.0820312, -0.5439453, -1.6669922, 0.6933594, -0.4802246, 0.2553711, 0.85253906, 1.3427734, 2.8691406, 1.1289062, -1.6533203, 0.2487793, -0.22790527]}, "B01BEOULUE": {"id": "B01BEOULUE", "original": "Brand: BootYo!\nName: BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single))\nDescription: Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.\nFeatures: Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders\nPerfect for lanterns, single burner stoves, grills, heaters and other propane appliances\nGreat to take camping, hunting, on construction jobs, work, tailgating!\nLightweight, sturdy, long lasting.\nMade in the USA!\n", "embedding": [-0.58935547, 1.3310547, 0.040893555, 0.7246094, -0.0018234253, -0.59765625, -0.7167969, -0.09564209, 2.4316406, 3.6601562, 0.06555176, 0.5810547, 1.4902344, -4.015625, -0.13977051, -0.6430664, -0.8364258, 3.875, 2.0390625, 0.88378906, 0.95654297, -0.16320801, -0.97998047, -2.4003906, 0.6669922, 1.0810547, 3.6679688, -0.18933105, -0.09326172, -0.4650879, -0.28710938, -0.17785645, 0.3486328, 2.296875, -1.0712891, -0.23400879, -0.1505127, -0.21459961, -2.0761719, -2.0898438, -1.5732422, 1.3798828, 1.4814453, 1.4296875, -1.2900391, -0.72558594, -2.3886719, 1.6396484, 0.11022949, 0.28295898, 0.7861328, 0.6010742, -0.9399414, 0.578125, -0.56591797, -0.71533203, -0.24816895, -2.3046875, 2.5546875, -0.3803711, -0.29052734, -1.0097656, -1.3867188, 0.84521484, -0.0657959, 3.1191406, -1.171875, -2.1015625, 1.5449219, 1.2890625, 1.7324219, 0.875, 0.61083984, -2.2070312, -0.9506836, 2.4199219, -1.0449219, 0.89941406, 0.5361328, 1.5957031, -1.2861328, 1.6611328, 0.25732422, -0.47216797, -0.6611328, -2.0234375, -1.1279297, -0.1472168, -0.6425781, 1.6552734, -1.3085938, 1.5800781, -1.9345703, -4.4375, -0.8178711, 0.79785156, 0.95214844, 1.03125, 3.109375, 0.19299316, 0.40063477, -0.34716797, -0.71875, 1.0302734, -1.7431641, 1.296875, 0.96191406, -0.30810547, -1.1445312, -0.24829102, -1.1279297, -1.9179688, 2.6503906, -1.6972656, -1.0449219, -0.96875, 0.48828125, 1.7617188, 1.6464844, 1.5283203, 1.9960938, -2.203125, 1.4746094, -1.4072266, 1.5410156, 1.4160156, 0.36791992, -0.099731445, 2.140625, 1.3945312, 1.140625, 0.19067383, 2.2460938, -3.1035156, -0.51464844, -1.0029297, -0.1907959, -3.4648438, -1.4892578, -1.3486328, -2.2734375, 0.22851562, 1.0361328, -0.19311523, -2.5136719, 0.5078125, -2.7070312, 1.9599609, 1.1845703, -1.7216797, 1.9550781, -1.2666016, -0.51708984, 1.3027344, 1.1757812, 4.0273438, 1.0351562, -0.4206543, 2.0722656, 0.66503906, 0.7182617, -2.2011719, 0.9121094, 3.8066406, -0.13452148, -2.5976562, -0.22058105, -1.6533203, -0.6113281, -0.35327148, 1.3935547, -2.4296875, 0.22045898, -0.51416016, -1.5771484, -3.0429688, 0.18383789, 2.2871094, -0.01625061, -2.6601562, -3.1113281, -1.9716797, 1.6611328, 1.3847656, -0.14147949, -0.2548828, -2.5097656, -2.0527344, -1.4951172, -1.6064453, -0.7626953, 0.087768555, -0.69628906, 0.9086914, 0.89941406, -2.9023438, 0.03086853, -1.9755859, 2.0351562, 2.6445312, -0.8564453, -1.3203125, -0.009292603, 1.1103516, -1.3740234, -1.5048828, 0.26733398, 0.23718262, -0.9951172, 0.32788086, 0.79541016, -1.0986328, 2.9042969, 1.1152344, 0.14001465, -3.1601562, 0.65722656, 0.1315918, 2.7011719, 1.8681641, 0.7036133, -1.9824219, -0.3815918, 0.26953125, -0.34106445, 0.9501953, 0.875, -1.0517578, -1.828125, -1.2841797, -0.48779297, 0.62841797, 0.3876953, 0.17907715, -0.03050232, 2.6523438, 0.41479492, -0.29614258, 0.108947754, -0.6455078, 0.30786133, 0.05718994, -2.8457031, -0.84716797, 0.24267578, 0.8432617, -0.8535156, -0.39794922, 1.5048828, -1.7392578, 2.1191406, -1.0712891, 1.3339844, 0.29956055, 0.17199707, 0.6928711, 0.3269043, 0.48242188, -0.3317871, -1.5244141, 1.5175781, 2.4375, -0.5048828, -0.7807617, 0.76416016, -0.4506836, 0.8496094, 1.0800781, -1.765625, 0.32421875, 1.6542969, 0.89941406, 1.7949219, -0.45141602, 1.6464844, 2.8320312, -2.5351562, 2.1484375, -0.44970703, 1.5400391, 1.2558594, 1.0029297, 1.6220703, -4.6210938, 0.3642578, 0.75390625, 1.5302734, -0.59765625, -3.0859375, 0.62402344, 3.2988281, -0.0038280487, 0.16430664, 1.4492188, 0.07574463, 1.0166016, 0.9526367, 0.4584961, -0.1986084, -0.91503906, 1.2910156, 0.6586914, -1.3564453, 0.49609375, 2.5019531, 1.2197266, 0.8798828, -0.23803711, 2.1777344, -0.3972168, -0.57128906, -0.375, -1.2509766, 1.6005859, -0.05621338, -1.7099609, 1.1376953, -1.6796875, 1.9423828, 2.2480469, 1.9365234, 2.0683594, 0.30786133, -1.2939453, -0.078063965, 3.59375, -2.2734375, 0.29614258, -0.09033203, -1.4306641, -1.359375, -2.1152344, -0.004600525, -0.030685425, 0.78466797, -0.5180664, -1.2636719, -1.3222656, 1.7646484, -1.9423828, 0.4963379, 1.2402344, -2.2421875, 1.3056641, -0.8017578, -2.4589844, 0.054718018, 1.9511719, -0.1282959, -3.4609375, 0.3190918, 1.8339844, -1.4042969, -5.3359375, -0.12902832, -0.58935547, -1.3652344, 1.5634766, -2.3613281, 0.51708984, 0.4650879, 0.00011944771, 0.93359375, -0.8676758, -1.3554688, -1.2109375, 0.38134766, -3.8183594, 1.1123047, -0.8486328, 0.87158203, -2.7070312, 1.1738281, -0.6660156, -2.2753906, -1.0029297, -0.6894531, 4.4453125, -0.28637695, 1.6582031, -1.8720703, -0.74658203, 0.10003662, -0.5698242, -4.3164062, 1.0185547, -0.3725586, -0.9038086, 0.49804688, -5.5273438, 0.88964844, -3.0527344, 0.27734375, -0.029052734, 0.9794922, -1.6289062, -1.9902344, 1.2939453, 0.05630493, -0.72802734, -0.98095703, 1.0742188, 0.007282257, 0.63378906, -0.38061523, -1.2597656, 0.08380127, -1.5839844, 0.6923828, -0.80126953, -0.5732422, -0.0052833557, 0.06933594, 0.9267578, 1.0283203, -2.203125, 1.0546875, 3.5078125, -0.34838867, -0.92822266, -0.94970703, 1.8486328, -1.0498047, -1.9785156, 2.9472656, 0.47705078, 2.1347656, 1.6679688, 1.2216797, 0.453125, 0.44604492, -0.5703125, 0.82714844, 1.5761719, 3.0898438, -1.4707031, -0.85595703, -0.44018555, 1.9267578, -2.5488281, -0.11395264, 0.1508789, 0.75146484, 0.48364258, 2.296875, -0.52441406, -1.3486328, 1.0869141, 0.9873047, -0.036071777, -1.7128906, 3.0429688, -1.1992188, 0.009414673, 1.8652344, 1.2011719, 0.53759766, -0.2998047, 0.69628906, 2.7929688, 0.4650879, -0.34936523, 0.26464844, 1.2910156, -0.015716553, -0.5214844, 2.078125, -0.8066406, 0.38208008, -0.43115234, 1.1220703, 1.328125, -0.67626953, 0.8598633, 0.2446289, 0.6665039, -1.8701172, -0.081848145, -1.0371094, -2.8144531, -1.7158203, 0.9814453, 1.4824219, -1.0068359, -1.0107422, -0.7055664, 1.4716797, -2.125, 0.15124512, -0.91552734, -1.7275391, -0.9741211, 0.99658203, -1.0654297, -2.484375, -1.5849609, -0.75927734, -0.49291992, 3.8183594, 2.8144531, -0.56591797, -0.4711914, -0.32421875, 0.46044922, 1.9589844, -2.2460938, -1.7314453, -0.8276367, -0.60546875, -0.5629883, -1.8378906, 1.3818359, 0.6611328, -2.9628906, -0.8696289, 0.058441162, 2.1777344, -0.3149414, -0.9741211, -1.6689453, -0.41333008, -2.7363281, 1.7490234, 1.4863281, 0.49438477, -0.83984375, 2.5253906, 0.6035156, 0.7294922, -0.1227417, -0.5834961, -2.84375, 0.54541016, -0.8730469, -0.00022339821, 3.3691406, -2.0957031, -0.9848633, -0.53808594, 0.23632812, -0.35229492, -0.59521484, 0.9589844, 3.6777344, -2.0566406, -1.4667969, -0.79052734, 1.0820312, -2.1347656, -1.390625, 0.85498047, -0.5703125, -0.8935547, 1.1806641, -0.78466797, 1.109375, 0.8588867, -0.5576172, 0.2890625, 0.8989258, 1.5761719, -1.7099609, -1.5400391, -0.9042969, 1.0625, -0.16992188, 0.44091797, 1.4814453, 1.8740234, 3.0195312, 0.65478516, -1.5478516, -0.5629883, 0.8100586, 0.38354492, -2.2285156, -0.7055664, -2.3847656, 0.029693604, -0.578125, -0.5541992, 0.112854004, 0.8935547, 1.0029297, 0.9921875, -0.7758789, 1.609375, 0.62646484, -0.75878906, 2.8691406, 0.87158203, 0.28271484, 0.51904297, 0.28564453, 0.6176758, -1.1035156, 1.4746094, -1.1044922, 0.010353088, 0.25854492, 1.4902344, -0.82128906, -2.2773438, 1.9228516, 0.8105469, 2.2304688, -0.36547852, -3.3945312, -0.8198242, 0.5449219, 0.6640625, 0.30664062, 0.22045898, 0.23999023, -0.82128906, 1.1943359, 0.76123047, 0.1538086, -1.7285156, -0.042541504, -0.74316406, -1.3486328, 0.8046875, -4.4804688, 0.7998047, -1.9443359, -1.6220703, 1.9960938, -3.8945312, 0.3798828, -0.6826172, 0.3395996, -0.3232422, 0.09509277, 1.0478516, 2.5195312, 1.4638672, -0.2614746, -0.46020508, 1.4365234, 3.2714844, -1.2978516, 0.70214844, -0.19958496, 2.2675781, -1.1523438, 1.5429688, 0.39404297, -0.27124023, 0.5239258, 1.2685547, 2.6015625, 1.1572266, 1.1347656, -2.2695312, -0.7182617, 2.3886719, -1.5263672, 0.87353516, 0.16345215, -0.71875, 2.8398438, -0.6567383, -1.9560547, 0.42260742, 1.4111328, -0.9892578, 1.6103516, 0.2142334, 0.7944336, -1.2470703, -1.7451172, -1.8779297, -2.65625, -0.34643555, 0.085754395, 0.022232056, -0.52246094, 0.24414062, 1.1425781, 0.6381836, 1.8886719, -0.9433594, -0.06829834, 0.8105469, 0.1418457, 1.7597656, -1.0625, -2.5234375, 1.4365234, -1.2070312, 1.8574219, 0.73876953, 1.234375, 2.1914062, -2.6113281, -1.4619141, -1.2431641, 1.5664062, -1.15625, -0.026885986, 1.9570312, 1.7275391, -0.453125, -1.3115234, -1.1054688, -1.6142578, 0.93066406, 1.7783203, 0.3383789, -1.3125, -0.47070312, -4.4101562, -4.1796875, -0.7036133, 1.0947266, 1.6542969, 1.0556641, -1.3613281, -1.4931641, -0.62353516, -4.1289062, -1.1884766, -0.89160156, 1.5449219, -0.5527344, -1.4296875, 0.23706055, -0.99609375, 0.34985352, -1.5849609, -2.4042969, -0.23071289, -0.65625, -2.0019531, -3.3691406, 0.60253906, 0.5449219, -0.5385742, 1.1708984, -0.26757812, 1.6533203, 2.65625, 1.6025391, -1.4560547, 1.5585938, -1.6494141, -0.62841797, 0.2998047, -0.6191406, -1.2822266, -0.11517334, 0.2800293, 1.5361328, 0.53808594, 1.8789062, -1.3720703, -0.6928711, -1.421875, -0.45922852, 2.0742188, 0.9941406, 3.4433594, -0.3840332, 1.4423828, 2.4433594, -0.73583984, -1.8310547, -0.70751953, -1.2871094, -0.5810547, -1.3027344, -1.2255859, 0.47045898, -0.04373169, 0.42626953, 1.4267578, 0.69140625, 0.8383789, 0.22937012, -1.4199219, 2.1113281, -0.44580078, 2.7597656, 0.30395508, -1.5849609, -2.1855469, -3.2128906, 3.1835938, 1.9365234, -2.4335938, 0.13415527, 0.77441406, -0.5834961, 0.07873535, -1.2236328, 2.9199219, 1.3349609, 1.9365234, -2.7128906, -0.66845703, 1.1220703, -0.3996582, 0.44091797, -0.030914307, -0.5878906, -0.20251465, -1.7138672, 0.19885254, 0.61572266, -0.80371094, 0.6508789, 1.9736328, 0.08270264, -1.1826172, 0.082458496, -1.0361328, 0.12438965, -0.86035156, -0.7739258, -2.6660156, 0.75341797, -0.81103516, -1.4111328, 1.4658203, 2.359375, -2.5820312, -0.40698242, 0.44213867, 2.1191406, -0.84765625, -1.8603516, 0.6879883, 0.115600586, 2.6425781, -1.2421875, 2.03125, 0.5913086, -1.3886719, -1.1865234, -0.11328125, 0.9057617, 0.39892578, 3.2128906, 1.0771484, 2.8378906, -0.24438477, 2.4453125, 0.09234619, 0.97802734, 3.03125, -0.82373047, 1.8671875, 2.59375, -1.2587891, 0.34570312, -1.4453125, -0.61083984, -1.5332031, -2.0605469, 1.2470703, 1.2216797, 1.1845703, -2.5058594, 0.18334961, -1.6826172, 0.8876953, 1.9091797, 1.7802734, -1.2792969, -0.55859375, -0.06665039, 1.984375, 1.2675781, 0.23901367, 0.7348633, -0.97216797, 0.5292969, -0.2998047, -1.9160156, -2.0917969, -2.1191406, -1.5449219, 0.6669922, 2.0449219, 3.0957031, 0.35668945, 1.859375, -0.45703125, 0.5205078, -0.28759766, 0.22009277, 0.6777344, -1.1689453, 0.24804688, 1.4882812, 2.4042969, 0.18688965, 0.77978516, 0.9326172, -1.1132812, -3.5292969, 1.3505859, 1.5380859, 1.3203125, -0.21911621, -1.8681641, 0.9589844, -2.859375, 1.3564453, -1.1513672, -0.22302246, -0.57666016, -0.13513184, -0.49389648, -0.28930664, 1.5507812, 1.8242188, 2.2070312, -0.7026367, 1.046875, 0.98291016, 1.7695312, -1.1835938, 0.8588867, -1.3681641, 2.5722656, -0.68359375, 2.2871094, 1.3564453, 0.48461914, -0.016616821, 2.0292969, 1.5966797, -0.27270508, 1.0556641, -1.4882812, 3.4355469, -1.2851562, 1.7841797, -0.3544922, -2.1796875, -1, 1.8896484, 0.3269043, 0.6333008, -0.0574646, 0.025680542, 0.5131836, -1.5556641, 1.3134766, 1.5039062, -1.5507812, 0.7578125, 0.6538086, -0.6796875, -0.5229492, -0.4633789, 0.5888672, -2.578125, 0.3173828, 1.5048828, 1.5439453, -0.7524414, -1.5820312, -0.64746094, -0.79833984, -0.51220703, 0.07757568, 0.64208984, 0.9140625, 0.08532715, 2.1894531, -0.1352539, -0.44018555, -0.54833984, 0.29711914, -0.18762207, 2.3730469, -2.0703125, 3.3847656, 0.4741211, -0.49243164, 2.3144531, 2.765625, -2.1035156, -0.18762207, -1.3183594, -3.75, -0.7993164, -1.8320312, 0.12719727, 1.7714844, -1.1416016, 1.9296875, 0.94873047, 0.4086914, -1.5996094, 0.8144531, 0.5390625, 1.1259766, 3.0273438, -0.6621094, 1.6914062, 0.8051758, -0.14135742, -1.140625, 3.7558594, 1.5908203, -0.7661133, -0.05328369, 2.234375, -0.39233398, -3.0722656, 0.5161133, -1.8115234, -1.0458984, -0.6611328, 0.46948242, 1.6220703, -0.7163086, -1.0527344, -1.8320312, -1.4628906]}, "B06XTGCQ7P": {"id": "B06XTGCQ7P", "original": "Brand: GasOne\nName: GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects\nHigh heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU)\nConvenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box\nHeavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSafety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\n", "embedding": [-2.0507812, 1.2529297, 1.34375, 0.93310547, 0.7114258, 1.2685547, 1.0351562, -1.3730469, -1.4609375, 0.94189453, 1.2373047, 0.049438477, 0.21081543, -1.4921875, 1.0126953, 0.10443115, -0.70996094, 1.4648438, -0.1138916, 0.9741211, 2.6972656, 0.026138306, 1.7109375, -1.1894531, -0.6542969, 0.8588867, 2.7246094, -2.6347656, -0.9980469, -1.0791016, 2.5488281, 0.6665039, 0.07299805, 1.0263672, -2.9042969, -0.49853516, -0.99072266, 1.0400391, -3.7402344, -0.38012695, -1.1083984, -0.63134766, 2.28125, 0.032073975, -1.9013672, -0.3347168, 0.71191406, 0.3317871, -1.4628906, 0.3647461, -0.01889038, 1.6767578, -1.3330078, 0.6455078, -1.0292969, 0.083618164, 1.7041016, -2.5878906, 1.1171875, 0.6044922, 2.4414062, 0.7368164, -1.0068359, 0.4951172, -2.4492188, -0.06707764, -0.018356323, -0.35107422, -1.1533203, -0.37646484, 3.0839844, -0.10784912, 0.32348633, 0.18041992, -1.5605469, -0.16540527, -3.4277344, 0.7216797, 3.1074219, -0.4951172, -0.8183594, 1.1201172, 1.4492188, -0.3178711, -0.59521484, 1.0800781, -1.4931641, -1.7929688, 1.3466797, 0.8432617, -2.4726562, 3.2089844, -2.2578125, -4.0664062, 1.6689453, 0.22692871, 0.5913086, 1.6728516, 0.5986328, 0.45947266, -0.74560547, -1.25, -1.6269531, 0.91503906, -1.3564453, -0.9277344, 2.2050781, 1.390625, -3.4082031, 2.0058594, -2.7636719, -1.1035156, 1.0947266, -0.5839844, 1.4072266, -0.89501953, -0.8857422, 0.11114502, 3.1914062, 0.4399414, 3.6386719, -0.6357422, 0.70654297, 0.05633545, 0.76708984, 1.1025391, -1.3466797, 0.3239746, 2.8554688, -1.2050781, -0.7294922, -1.4169922, 1.8359375, -0.28881836, -0.9604492, -1.2978516, -0.61621094, -3.0371094, -2.71875, -0.10620117, -2.6894531, 2.328125, 0.80566406, -0.046142578, -3.859375, -0.37695312, -0.5864258, 2.5957031, 1.9013672, -1.7705078, 0.70996094, -1.3671875, -0.009307861, -2.265625, 1.6796875, -0.14160156, -1.2050781, -1.9716797, 2.2617188, 1.4619141, 0.5727539, -1.1308594, -2.609375, 1.5341797, 0.13647461, -1.4716797, 1.0048828, 0.1451416, -2.6523438, 0.52197266, 0.087768555, -1.7197266, -0.48046875, 0.60839844, 0.20178223, -1.2587891, 0.28955078, 2.7167969, 1.6767578, -1.0195312, -2.6953125, -3.0996094, 0.6191406, 1.2421875, 0.6020508, 0.054016113, -0.1673584, -0.29101562, 0.9326172, -1.3759766, -0.5932617, 0.10687256, 0.12658691, 0.9614258, -0.12261963, -2.3925781, -1.9277344, -0.9995117, -0.119262695, 1.3476562, -0.29711914, -0.27807617, -0.38330078, 0.8510742, -1.8017578, -1.2050781, 0.23364258, -2.3300781, 2.1132812, 2.2421875, 0.7895508, -0.24072266, 1.5136719, 0.83203125, -1.3496094, -0.921875, 3.203125, 0.8828125, 0.89941406, 1.7978516, 1.0224609, -1.3603516, 1.9521484, 0.47802734, 0.2565918, 2.3183594, 0.8227539, 0.77783203, -2.3886719, -1.7412109, 3.7890625, 0.40966797, 0.0035095215, 1.0283203, -0.57958984, 2.4121094, 1.3339844, -0.5854492, -0.046081543, 0.5151367, 0.30786133, -1.3564453, -1.0234375, -0.3100586, -1.9873047, 2.0214844, -0.6166992, 0.29370117, 2.3945312, 1.0712891, -0.20812988, 0.60791016, -0.5341797, -0.59765625, -1.2919922, 0.42919922, 0.40698242, 1.5097656, -0.93310547, -2.2167969, 1.7128906, 1.7861328, -0.67626953, 1.3613281, -0.4855957, -1.4882812, 3.2910156, 0.9243164, -2.3574219, -0.33007812, 0.6459961, 0.6923828, 4.1132812, -1.6943359, 1.9990234, -0.5942383, -1.8037109, 3.5488281, -0.17919922, 2.5703125, 0.70214844, -2.0644531, 1.9814453, -1.5322266, 1.40625, 0.91796875, 2.3769531, 0.18408203, -1.3720703, -0.31445312, 5.6289062, -0.7583008, -2.7851562, 1.8408203, -0.6435547, 0.6381836, 0.5703125, 0.27075195, 0.6171875, -0.3491211, 2.1210938, 0.10333252, 0.10620117, 0.98828125, -0.24829102, -1.0107422, -0.21936035, -1.1845703, -0.32714844, 0.5234375, -0.21838379, -0.53759766, -1.3886719, 1.0224609, -2.3183594, -0.4099121, 1.9111328, -2.6328125, 0.55078125, 1.3349609, 1.3408203, 2.5703125, 0.72021484, -0.7631836, 1.3535156, 0.3635254, 0.26464844, 1.4912109, 0.21472168, -1.7558594, -1.3505859, -2.0195312, 0.13354492, -0.74072266, -1.6298828, 0.515625, -1.3007812, -2.9042969, 1.2792969, -2.3652344, -1.4433594, 1.5078125, -2.140625, 1.6308594, -1.3828125, -2.4375, -1.1025391, 0.60595703, -0.9394531, -0.84033203, 1.1904297, 2.3125, -1.3642578, -2.7226562, -1.0751953, 0.07055664, -0.51416016, 0.030380249, -0.953125, 1.4765625, 1.1113281, -0.009521484, -0.035949707, 0.05783081, -0.2475586, -3.0195312, 1.5029297, -4.0429688, -0.3227539, -1.6376953, 0.16577148, -0.12878418, -0.8745117, -2.5683594, -1.6884766, 0.26708984, -0.8911133, 3.5605469, -1.4033203, 1.7871094, -0.17041016, -1.6816406, -0.2644043, -1.8632812, -3.5078125, 0.5551758, -0.2590332, -1.9326172, -0.4140625, -4.0078125, 0.65478516, -1.6982422, 0.048614502, -0.8676758, 0.69091797, -1.5478516, -0.2692871, -0.5107422, -1.0361328, -0.39916992, -1.1660156, -0.90722656, -2.0175781, -1.1367188, -0.07269287, -1.6513672, 0.18286133, 0.95410156, 1.2597656, 0.65966797, -0.1616211, 2.3515625, 1.0146484, -0.0574646, -0.4951172, -3.1816406, 3.0878906, 0.87402344, -1.0644531, 0.40405273, -2.1621094, -1.2822266, -2.4335938, -0.26098633, 3.1269531, 1.2304688, 3.140625, 0.6923828, -0.5961914, 0.86621094, 1.7910156, -0.55615234, -2.4492188, 0.014183044, 3.4726562, -1.4785156, -0.47998047, 0.8510742, 2.515625, -2.328125, -0.5029297, 1.3291016, 1.9140625, 2.2441406, 1.6503906, 0.92822266, -1.0664062, -1.0410156, -0.16662598, 1.3984375, -0.17785645, 0.39819336, 0.65478516, 0.98535156, -0.34521484, 1.5517578, 1.1542969, 1.6679688, 3.2421875, 0.7080078, 1.0097656, -2.0390625, -0.171875, -0.07635498, 1.0273438, -0.3684082, 1.8505859, 0.17272949, -1.3261719, -1.3183594, -1.2060547, 1.5849609, -1.7695312, 0.3552246, 1.0664062, -0.6713867, 1.2207031, 0.88134766, -0.4650879, 0.75146484, 0.32910156, 2.21875, 0.9692383, -0.13513184, 1.8339844, -0.113098145, 0.23937988, -2.6171875, 1.4746094, -1.0146484, -0.9404297, 1.1044922, 1.7236328, -3.234375, -2.1289062, -0.51708984, -1.1396484, -0.80859375, 3.2246094, -0.14672852, -2.3183594, 0.6513672, 0.29052734, -0.42456055, 2.3144531, -1.0146484, 0.1171875, -2.1757812, -0.33422852, -1.1132812, 0.828125, 1.3095703, 1.5927734, -3.0136719, 0.6953125, -3.3320312, -0.35009766, 0.9003906, -1.0166016, -0.20629883, 2.3222656, -1.0976562, 1.0947266, -0.9301758, 3.9628906, -1.9570312, -1.4345703, 3.0449219, -3.1054688, -0.765625, -2.1074219, -3.8515625, 1.6435547, -1.4990234, -0.5019531, 2.9804688, 0.41674805, -0.59472656, 1.3212891, 1.9824219, -1.2548828, -1.3886719, -0.48266602, 1.7958984, -2.2265625, -0.6777344, 0.73779297, 0.7363281, -2.0058594, -0.83984375, -0.20947266, -0.18371582, 0.10876465, 1.1337891, -3.6386719, -0.33520508, -0.7661133, -0.22961426, -0.52441406, -1.0810547, 1.5595703, -1.1845703, -0.3725586, -1.1582031, 1.5908203, 0.43359375, 0.31958008, 0.5395508, 4.640625, 0.8129883, -0.09680176, 0.61816406, 0.5292969, 1.4804688, -0.16540527, -1.8007812, -2.6015625, 0.18835449, -0.5292969, 0.38085938, 0.06854248, -1.7255859, -1.3876953, 1.8945312, 2.5117188, 1.8056641, 1.359375, 1.5771484, -0.7597656, 1.1328125, 0.38330078, -1.6679688, -1.0371094, -0.19189453, 0.64160156, -1.8769531, 0.9941406, -1.2744141, -0.5810547, -0.30859375, -0.9902344, -1.5107422, 1.5976562, 1.1386719, 0.24621582, 2.4921875, -0.90283203, -2.4628906, 0.41845703, 1.1445312, -0.49780273, 0.7026367, -0.17358398, -0.73046875, 2.1699219, 0.57470703, -0.43676758, -2.0078125, 1.8300781, -1.0488281, 0.024887085, -1.0498047, 0.9746094, -0.4128418, -0.9345703, 0.23803711, -1.0302734, 1.9970703, 0.011856079, -0.65966797, 0.1459961, 0.11242676, -2.5390625, -0.3618164, 0.67578125, 0.3461914, 0.11401367, 1.3808594, 0.7475586, 0.6425781, 1.9365234, -0.053222656, 1.8271484, 1.4472656, 1.1572266, 0.42797852, 0.94873047, -1.2460938, -1.5556641, 1.5458984, 1.5693359, 1.5087891, 4.5195312, 1.7822266, -0.41918945, 1.1748047, 1.3173828, -1.2841797, -1.4355469, -0.29882812, -1.1621094, 1.625, -0.07116699, -1.8085938, 0.38793945, 3.8671875, -0.14074707, 1.5175781, 0.23254395, -0.5722656, -1.4013672, -2.8105469, -0.95751953, -1.4140625, -0.18530273, -0.2541504, -1.7421875, 0.66796875, -1.1474609, 0.3173828, 2.0214844, -1.3583984, 0.46191406, 2.6621094, -0.6958008, 1.578125, -1.2128906, -0.0076904297, -2.3964844, 1.4873047, 2.4882812, 1.5742188, 1.4140625, 0.3359375, 0.41918945, -1.6748047, -1.8691406, -0.5966797, 1.5214844, -2.2246094, -2.1367188, 1.2792969, 0.8178711, 0.83496094, -1.2929688, -1.3759766, -1.9726562, 2.9804688, 2.1503906, 1.6025391, -0.07861328, 0.12176514, -1.5869141, -4.2929688, -0.48291016, 0.98535156, 0.32763672, -0.94921875, -0.8417969, -1.2871094, -0.23278809, -1.1679688, 0.55126953, -2.515625, 0.57470703, 0.18444824, -0.56933594, -0.55859375, -0.13293457, -0.45214844, 1.0029297, 0.77783203, -0.6489258, 0.8208008, -1.484375, -1.7285156, -0.37597656, -1.7880859, 1.4414062, 0.6723633, -0.2553711, 0.80029297, 2.53125, -0.4111328, -2.9746094, 2.3691406, -1.8955078, -0.32348633, 1.1455078, -1.1416016, 1.1738281, 0.85839844, -1.7265625, 1.5605469, -1.5966797, 0.16430664, -0.09020996, -0.35498047, 0.7260742, 1.5332031, -0.76220703, -1.6015625, 2.0566406, -0.33935547, 1.1416016, 2.6035156, -1.1845703, -1.5019531, -1.5419922, -2.390625, 0.58251953, -1.4111328, -0.53271484, -0.23388672, 0.18981934, 0.73291016, -1.0976562, -0.006011963, 1.0556641, 0.18969727, -0.2788086, 2.0605469, -0.9223633, 3.4882812, 1.1484375, -0.005493164, -3.6152344, -2.7617188, 0.7246094, 1.3642578, 1.1318359, -1.484375, -0.037872314, -0.6538086, -0.16491699, -0.9692383, 1.4169922, 2.4707031, 1.1835938, -0.54833984, 1.7509766, 2.6269531, -0.6538086, -0.10803223, 0.018371582, -0.36865234, -0.9267578, 3.3496094, 2.2578125, 0.44921875, 1.625, -1.4921875, 2.7578125, -0.78271484, -1.8076172, 0.6118164, -2.0371094, -0.9716797, -2.1894531, -1.7802734, -2.25, 1.6181641, 2.1738281, -0.047668457, -0.04837036, 2.171875, -0.49121094, 0.70214844, 1.4736328, 1.8261719, -0.8486328, 1.3720703, -1.0019531, -1.1455078, 1.65625, -2.1328125, 0.7373047, 2.8632812, 0.27685547, -1.1142578, 3.0546875, 0.4921875, 2.8554688, 1.8300781, 0.828125, 2.3828125, 0.65771484, 1.9511719, 0.77783203, 1.1201172, 3.0019531, 1.4277344, -0.33544922, 2.4785156, 0.8203125, 0.12939453, -0.83691406, 0.64746094, -0.5332031, -1.6826172, 0.08673096, 0.24023438, 0.73583984, -3.6875, 1.4453125, -1.2158203, 1.2919922, -1.2177734, 1.0761719, -0.69677734, -2.0078125, 0.4609375, -0.6933594, -0.4326172, -0.61035156, -0.5493164, -1.4140625, -0.65771484, 1.7910156, -2.6054688, 0.72753906, -2.5605469, -3.1621094, -0.29663086, 1.4267578, 0.28979492, 1.0185547, 0.43017578, 1.5244141, 0.33129883, 0.15307617, 1.2412109, -2.3613281, 0.8491211, -0.16625977, 2.5195312, 0.48388672, -0.8388672, 3.359375, -1.6552734, -2.2597656, -4.671875, 2.7734375, -0.22131348, 0.57373047, 1.3105469, -2.4902344, 3.7675781, -0.1595459, 1.1289062, -2.9023438, 1.1513672, 0.6791992, -1.4033203, -1.5146484, 0.9770508, 0.0236969, 4.1679688, 0.53222656, -1.4501953, 1.0693359, 0.6977539, 0.99072266, -0.4729004, 0.8066406, 0.80566406, 0.62158203, -1.2685547, 2.5722656, 0.9638672, -1.9082031, -0.9272461, 1.8857422, 1.8417969, 1.09375, 0.6386719, -1.4765625, -0.4736328, 1.0419922, -0.46655273, -0.08068848, -0.8984375, -1.78125, -1.6347656, -0.97558594, -2.2246094, -2.6914062, 1.4287109, 0.87353516, -0.5205078, 0.4790039, 2.9296875, -0.7001953, 0.54541016, 0.84277344, 0.06323242, -1.2890625, -0.8276367, 0.63916016, -2.3613281, -2.0078125, 0.2211914, -0.10845947, 0.36572266, -0.49804688, 0.43188477, -0.6503906, 0.2980957, 1.6738281, 1.4824219, -0.93652344, -0.3095703, 0.26342773, -0.91552734, -0.81152344, 2.7714844, -1.1367188, 0.4584961, -0.036743164, -2.9199219, -1.3095703, -0.8833008, -0.23620605, 1.1904297, 3.4277344, 0.57421875, 1.8925781, -3.2558594, -3.5214844, -1.4365234, -1.8242188, 1.7226562, 0.027435303, -0.30932617, 0.5649414, 1.5029297, 1.4121094, -1.3798828, 0.22607422, -0.73828125, -0.32495117, 0.7626953, -0.99316406, 1.6386719, 0.07098389, 0.87353516, -1.0927734, 3.484375, 2.0820312, -0.37670898, 0.6113281, 0.74902344, -0.018844604, -2.6875, 0.7910156, -1.7177734, -0.59228516, 0.6699219, -1.2910156, 2.4804688, 1.7802734, -1.8144531, -1.6689453, -1.2519531]}, "B07D6FSMX3": {"id": "B07D6FSMX3", "original": "Brand: ISUMER\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill\nDescription: Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking\nFeatures: Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\nFirm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting.\nEasy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean.\nAdjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill\u2019 height and balance.\nGrill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.\n", "embedding": [-2.1679688, 2.3476562, 0.7446289, 0.71240234, -1.7001953, -0.44213867, 0.9350586, -1.5527344, -2.2832031, 3.1699219, 0.4790039, -1.8671875, 0.26660156, -3.2734375, -0.56152344, 0.06640625, 2.5664062, 0.4658203, 3.8261719, 1.0429688, 0.9667969, -0.59228516, 0.96777344, -0.06530762, 2.3398438, -1.2558594, 4.0195312, -1.7382812, 0.69140625, -1.8427734, 2.4667969, -0.032928467, 0.8745117, 1.3720703, -1.1123047, -0.2006836, -2.4140625, 1.9580078, -0.734375, 0.5317383, 0.3791504, -1.9365234, 3.0488281, -1.390625, -3.140625, 0.3864746, -0.74658203, 1.6699219, 0.28295898, -3.8398438, 1.6806641, 0.42163086, 0.7055664, 2.3554688, -2.1640625, -0.03591919, -1.4941406, -2.3886719, 2.2851562, -2.125, 1.6367188, -0.77441406, 0.39526367, 1.1630859, -0.26123047, -1.8652344, -1.3789062, -0.7392578, 0.23583984, -0.6352539, 0.23583984, -1.78125, -2.4882812, 0.020324707, 1.2285156, -1.3427734, -1.5, 2.2089844, 0.5566406, 0.9116211, -2.4609375, 2.6445312, 0.95947266, -0.49804688, -0.053833008, 0.11975098, -0.5805664, -1.1425781, 1.4853516, 1.4970703, -1.0820312, 1.5029297, -0.7675781, -3.5976562, 2.3222656, -2.1777344, 2.3203125, -1.2675781, -1.5917969, 2.03125, -1.6962891, 0.50146484, -0.0031909943, 0.071899414, -2.4453125, -1.2695312, 2.6113281, -0.22351074, 0.49902344, 2.3007812, -1.1992188, 0.3647461, 0.25073242, 1.2861328, -0.15393066, -0.1998291, 0.14660645, 2.7617188, 1.9882812, 2.6054688, 5.3320312, 1.2333984, -0.30004883, -3.703125, -0.99658203, -0.17602539, -0.3154297, 1.7558594, 4.125, -0.6113281, 0.2680664, -0.96484375, 0.8120117, 1.4814453, -2.5136719, -2.1796875, -1.5341797, -0.6220703, -3.6289062, 2.1054688, -2.3222656, 2.7207031, 3.0976562, -1.6933594, -3.2832031, -0.47338867, -0.6801758, 2.1425781, -0.8256836, -0.74121094, -0.043762207, -1.796875, -0.7729492, -0.5180664, 1.578125, -0.36279297, -1.0341797, 0.484375, 2.7890625, 0.58740234, 1.671875, -1.9785156, -1.1367188, 1.1064453, 1.7666016, -2.7382812, 0.08178711, 1.8427734, -0.6972656, 2.7441406, 1.1171875, -2.3496094, 1.1630859, -0.17858887, 2.0722656, -1.4941406, -1.3125, 1.796875, -0.47680664, -1.1220703, -0.035064697, -3.296875, 2.5644531, 0.80322266, 0.0042495728, -0.9296875, -0.34301758, -0.64208984, -0.31201172, -1.6865234, 0.4013672, -0.16503906, -0.67089844, -0.12432861, 0.57373047, -0.48266602, -1.0712891, -1.7998047, -1.1191406, 0.67871094, -1.1298828, -0.5136719, -1.7089844, -1.4716797, -1.7988281, -2.0839844, -0.52783203, 1.0654297, 1.8066406, 1.7607422, 0.17150879, -0.59033203, 1.2871094, 1.7910156, -0.2529297, -0.55908203, 0.8203125, -1.4365234, 0.92626953, 2.0644531, -0.51904297, -0.8623047, -0.3076172, 3.6289062, -0.24194336, 3.2539062, -0.19152832, 0.40698242, -0.45092773, -1.6748047, 2.8183594, 1.3300781, 0.08416748, -0.24328613, -1.0097656, 2.7128906, 2.3769531, -0.6933594, -1.7246094, -0.07147217, 0.24645996, -2.2910156, -0.95996094, -2.4082031, -1.8339844, -1.6279297, -0.62353516, 1.7578125, 0.9042969, -0.5332031, -0.71533203, 1.1582031, 0.009307861, 1.1914062, 0.39770508, 2.5292969, 0.30859375, -0.2133789, -1.203125, -2.2148438, 0.041534424, 1.2871094, 0.5649414, 0.59716797, 1.2294922, -2.2675781, 2.3496094, 1.9755859, -3.1835938, -0.14257812, 3.2753906, 1.8300781, 0.8413086, -0.8330078, 1.9658203, -0.80810547, -0.18603516, 0.4189453, 3.1542969, -0.43164062, 0.3642578, -0.09844971, 1.9863281, -1.953125, -2.4882812, -2.7167969, -0.5029297, -0.13647461, 0.64453125, 1.3222656, 3.8457031, 0.48950195, -2.1464844, 3.6640625, -2.6425781, 0.7338867, 1.8671875, -1.3164062, 1.1279297, 1.2421875, 1.3476562, 2.4355469, -0.12902832, 1.4863281, -2.6230469, -0.7163086, 0.23327637, -1.046875, 0.9243164, 2.0722656, -0.07940674, 1.0224609, -1.3583984, 0.7836914, -2.1777344, -1.4726562, 1.046875, -1.8544922, 0.6430664, 3.0585938, 0.8979492, -1.0185547, -0.46923828, -3.4804688, -0.74121094, 1.1679688, 0.33251953, 1.0664062, 3.0722656, -0.6948242, 0.73291016, -0.43823242, 0.59375, -2.4980469, -2.5351562, -1.9814453, -0.6796875, -3.0683594, 0.93310547, -0.9589844, -0.07965088, 0.28930664, -2.4628906, -0.008300781, -0.7558594, -4.28125, -0.5527344, 0.6582031, -0.54248047, -0.01512146, -1.1455078, 0.64746094, 1.3945312, -5.6992188, -0.7426758, 1.0800781, 1.4199219, 0.32470703, -1.8457031, 1.6279297, -0.2166748, 2.1835938, 0.32666016, 1.9179688, 0.5683594, -0.5024414, -1.4853516, -3.5019531, 0.92285156, -1.0146484, -0.51416016, -0.42871094, 0.3232422, -2.6054688, -1.5058594, -0.11151123, -1.5410156, 4.6796875, -0.71240234, 1.2666016, -1.1464844, -0.70654297, -0.6171875, 1.4541016, -2.2441406, -3.0644531, 0.45043945, -0.79052734, -1.1357422, -2.0722656, -0.7216797, 0.12030029, 0.087768555, -0.42944336, 0.88671875, -1.8945312, 2.7558594, -2.6699219, -0.81689453, -1.1806641, 0.7890625, 0.47875977, 0.08935547, -1.7666016, -0.5751953, -0.72216797, 0.41625977, -0.54003906, 1.6152344, -1.5908203, -0.15441895, 0.38134766, 0.8979492, 0.64453125, -1.6787109, -2.3769531, 2.9765625, 0.12371826, -1.9013672, 1.3056641, -0.52490234, -1.7177734, -3.4296875, -1.1679688, 2.5917969, 0.10217285, 1.6962891, -0.5361328, -0.09484863, 1.0751953, 0.34521484, -0.5830078, -0.20678711, 1.4121094, 1.4013672, -2.4414062, -1.6162109, 1.8320312, 2.9140625, -3.3867188, 1.3105469, 2.3671875, 2.1621094, 0.32763672, 0.36035156, 0.38623047, 0.2130127, -1.1357422, 1.0439453, 1.3525391, 1.0751953, -0.093933105, -0.36108398, -0.04135132, -1.1435547, 1.6621094, -0.48120117, 0.3881836, 2.7910156, 2.203125, -0.070129395, -4.390625, 0.17272949, 0.04663086, 2.296875, -0.16625977, 2.1503906, -2.3261719, -0.70214844, -0.48754883, -1.2480469, 1.15625, -1.1894531, -1.0380859, 0.6176758, 0.8574219, 0.75341797, -0.96435547, -0.23144531, -1.9414062, -1.9091797, 1.4160156, -2.2539062, -3.0488281, 0.5058594, -2.7792969, -2.5507812, 0.11291504, 1.1503906, -0.41723633, -1.4072266, 0.8183594, 1.9365234, 0.6923828, -1.1513672, -2.9785156, 1.7294922, 0.28979492, 2.1660156, -0.05041504, -2.2070312, 2.8300781, -2.1738281, 1.6230469, 0.31176758, 1.4658203, -0.90625, -0.5761719, -1.4882812, 1.3242188, 1.0205078, 0.86035156, -0.99658203, -2.1289062, -0.4814453, -4.1953125, 0.029922485, 1.7509766, -1.546875, -0.5883789, 1.0957031, 3.1054688, 1.5009766, -2.0976562, 3.5722656, 0.19262695, -2.0566406, 0.9663086, -3.3710938, -1.8447266, -2.4492188, -3.5761719, 1.9941406, -0.5551758, 0.6123047, 2.0507812, -0.31518555, -0.5307617, 1.9765625, 0.15429688, -1.4296875, -0.60253906, -2.7910156, -1.015625, -0.6245117, 1.1240234, 2.2128906, -0.06060791, -1.9716797, -2.4335938, 0.625, -0.98046875, 1.9111328, 0.84033203, -1.7138672, 1.2451172, -0.70947266, 0.6621094, -1.4794922, 0.09246826, 0.6196289, -1.7529297, 0.37329102, 0.032104492, 2.2910156, -1.5175781, 0.018432617, 0.30981445, 0.97753906, 0.1661377, -0.65185547, -1.7880859, 1.7070312, 2.0097656, -0.48657227, -0.5839844, 0.58447266, -0.35620117, -1.3427734, 0.9560547, -0.101501465, -0.054595947, -2.7226562, 2.1210938, -0.56103516, 2.3671875, 3.4238281, 0.54003906, -1.6015625, -0.9785156, -0.84277344, -1.7158203, -2.4453125, -0.015182495, -0.6069336, -0.91064453, 0.9160156, -1.4541016, 1.2646484, -0.23461914, -0.36328125, -0.99316406, 2.2421875, 1.8095703, 2.9453125, 4.8554688, -1.8662109, -0.4399414, 0.75927734, -1.7265625, -2.3828125, 2.9628906, 0.061706543, 0.64746094, 1.6162109, 1.7109375, -1.3701172, -0.62402344, -0.16333008, -1.1308594, -0.44091797, -1.0039062, 3.4355469, -1.0537109, -1.1103516, -0.4206543, -0.14025879, 2.2949219, -0.27148438, 1.0996094, -0.20373535, -0.19140625, -0.90185547, 0.3725586, 1.0058594, 0.80126953, 0.38452148, 0.05218506, 0.04763794, -1.6054688, -1.9853516, -0.109313965, 2.3222656, -1.5634766, -0.40576172, 0.47509766, -0.4790039, -0.7583008, -0.10864258, 1.5869141, 1.5322266, 0.28857422, 2.3789062, 0.018829346, -1.1503906, 1.1943359, 1.9443359, -2.53125, -1.1943359, -0.6010742, -2.3671875, 1.3632812, 0.49658203, -3.9667969, -0.7397461, 1.3574219, -1.0253906, 0.9667969, -2.0019531, -1.75, 2.0175781, -2.734375, 0.3503418, -0.34570312, -2.5820312, 0.84033203, -1.7402344, 0.49291992, 0.046783447, 1.7666016, 2.5527344, -1.0996094, 0.45629883, 1.8349609, -0.2006836, -0.23840332, -0.53564453, -2.0429688, -2.515625, -1.0302734, 2.9941406, 3.953125, 3.3945312, 0.20898438, 1.4726562, -0.91845703, 0.38110352, -2.5429688, 2.7558594, -2.8242188, 0.6269531, 1.7402344, -0.79785156, -0.49023438, -1.2099609, 1.9150391, 1.2304688, 2.6542969, 1.4648438, 0.74658203, -1.1318359, -0.7470703, -2.3925781, -3.9140625, -0.88916016, 0.35668945, 1.3369141, 1.1914062, 1.3359375, -2.0820312, -1.2421875, 0.68847656, 0.8857422, 0.40771484, -0.7729492, 1.0664062, 0.17687988, -1.4433594, -0.16967773, -1.8769531, 1.7958984, 0.95410156, 3.0566406, -0.8696289, -4.171875, -0.6484375, 0.42236328, -1.6865234, -0.65771484, -1.359375, 0.22314453, 0.7006836, 1.3388672, 1.578125, -0.61328125, 2.3222656, -0.6904297, -0.05758667, 0.44458008, -0.33740234, 1.9570312, -1.2089844, -2.1308594, 0.51464844, -4.0664062, 2.7910156, 1.0048828, 0.17126465, 1.8554688, 2.03125, -0.9506836, -0.35229492, 0.24731445, 0.15673828, 0.89990234, 0.68310547, 0.6689453, 0.85058594, -2.8652344, -3.6777344, 0.44555664, -0.08300781, -1.5556641, -3.0019531, 0.9916992, 0.6801758, 0.7495117, 0.7114258, 0.28320312, 0.89453125, -2.2792969, 1.3896484, 0.6015625, 1.5390625, 3.3886719, -1.3671875, -2.3007812, -1.6572266, 0.4489746, 0.33935547, -0.8588867, -1.4746094, 0.17883301, -1.9726562, 0.51708984, 0.68896484, 2.3886719, 2.9355469, 0.36767578, -0.91503906, 1.2890625, 1.3115234, -1.9121094, 0.026397705, 0.65185547, 3.0625, -1.3427734, 3.2265625, -0.75683594, -0.9526367, 2.7734375, -2.2949219, 0.53027344, -0.5083008, -1.9335938, -0.2722168, -1.7666016, -1.0859375, -2.7441406, -0.5805664, -2.4101562, 1.5273438, -0.07342529, -2.0644531, 0.97216797, 3.3164062, -1.1005859, 3.125, 1.4052734, 1.7929688, 0.29638672, 0.66308594, -1.7949219, 0.38305664, 0.5419922, -1.21875, -0.010185242, 0.4724121, 0.44555664, 0.109802246, 2.6425781, 1.2089844, 1.1933594, 0.64404297, 0.80078125, 0.7832031, 2.2988281, 4.3203125, 0.003894806, 0.92626953, 2.8925781, -1.8388672, -0.60595703, 2.7890625, 1.0234375, -0.17749023, -0.9370117, 1.7148438, -0.3154297, -0.94677734, -1.5908203, 0.08929443, 0.7910156, -2.4511719, 1.7001953, 0.119018555, 1.6064453, -1.5097656, -0.63964844, -1.1835938, -0.26171875, -1.6865234, -2.1445312, 1.3388672, 0.008079529, -0.6904297, -0.18981934, 0.81103516, 0.42578125, -3.5917969, 2.0644531, 0.88964844, 0.44726562, -1.8242188, 2.8261719, 2.1777344, 1.4716797, -0.40673828, 1.3496094, 1.0253906, 0.68359375, 1.9335938, 0.79003906, 0.80810547, 0.19458008, 2.6113281, 0.2644043, -2.3398438, -1.4335938, -0.41381836, -2.015625, 0.12036133, 0.65625, 0.8046875, 1.5800781, 0.5229492, -3.0371094, 0.9453125, 1.1308594, 2.0253906, 0.24694824, 0.50878906, -1.6875, -2.8164062, -2.2890625, -0.2607422, 0.14294434, 2.5683594, 2.0410156, -0.3161621, 0.8076172, 1.7714844, 1.4160156, 0.81152344, 0.34277344, -1.1689453, 1.7470703, -1.2285156, 1.4814453, -0.80615234, 1.4121094, 0.023010254, 1.4023438, 1.7382812, 0.8203125, 1.9970703, -1.1289062, -0.21520996, -1.2050781, 0.1607666, 0.32495117, -0.43481445, -1.8339844, -1.1064453, 0.38964844, -1.5136719, 0.5625, 0.45239258, 0.7636719, 0.86816406, 0.54345703, -1.0292969, -0.9194336, 1.4130859, -0.6035156, -0.79785156, -0.7866211, -0.18017578, 0.74316406, -0.10845947, -1.1748047, -0.1817627, -0.085632324, 1.1064453, 0.44628906, 2.2871094, -0.859375, 0.38745117, -0.94873047, 0.22167969, -1.9501953, -1.7636719, 1.2773438, 0.09399414, -0.5708008, 3.4003906, 1.2949219, -1.6650391, 0.6923828, -0.7661133, 0.20080566, -1.0908203, -2.0273438, -0.05505371, 2.6464844, 1.6835938, -0.23498535, -2.5644531, -3.5273438, 0.54345703, 0.3642578, 2.6601562, -0.15698242, -3.2558594, 0.9770508, 0.3544922, 1.8564453, 1.1132812, -1.4960938, -0.09411621, 1.1992188, 0.70458984, 0.121276855, 1.3955078, 1.5458984, -0.28955078, -0.5595703, 2.84375, 1.2490234, 2.3808594, 1.8417969, 0.45043945, 2.6230469, -3.6953125, -0.90625, -0.59375, 1.4072266, 1.0712891, -0.38793945, 2.4003906, 0.030914307, -0.04046631, -2.8730469, -0.9741211]}, "B07PHKT5XC": {"id": "B07PHKT5XC", "original": "Brand: GasOne\nName: GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black\nDescription: \nFeatures: Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements\nHigh heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control\nConvenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection\nHeavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting\nSteel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas\n", "embedding": [0.23352051, 2.46875, 1.5527344, -0.74658203, -0.27197266, 0.33691406, 0.94140625, -1.8955078, 1.3896484, 1.9003906, -0.06781006, -0.39135742, -0.14440918, -3.7011719, 2.484375, -0.69384766, 0.59375, 2.3300781, 2.3066406, 0.80615234, 3.3027344, 0.7373047, 1.8242188, -0.5883789, -0.37231445, 1.1904297, 4.3554688, -3.7246094, -1.6054688, -0.37646484, 1.6445312, 0.20080566, 0.16699219, 1.3359375, -2.8007812, -1.5917969, -1.1259766, 0.4333496, -2.1816406, -0.6508789, -1.3818359, -0.91015625, 1.3544922, 1.59375, -1.5869141, 0.13806152, -0.01134491, -0.6894531, -0.9921875, -0.90966797, 0.34692383, 1.6630859, 0.5708008, 1.1591797, 0.41333008, -0.0017328262, 0.87402344, -2.2695312, 0.31567383, 0.94433594, 1.1416016, -0.23815918, -2.2304688, 1.0742188, -2.7949219, -0.29101562, -0.8305664, -0.09729004, 0.16552734, 1.3554688, 1.8945312, 0.7993164, -0.35766602, 0.14941406, 1.0996094, -0.9628906, -2.5664062, 2.2519531, 1.7666016, -0.8149414, -0.6635742, 3.3652344, 0.31860352, -1.7207031, -1.1113281, -0.30859375, -2.0644531, -1.8720703, 0.62890625, 0.41723633, -0.7480469, 2.9296875, -3.1054688, -5.09375, 0.8798828, -0.46557617, 1.2138672, 0.7675781, 3.0625, 0.44921875, -0.7529297, -0.6347656, -1.609375, 1.9638672, -1.6962891, -1.4814453, 1.6357422, -0.9223633, -1.5888672, 0.5854492, -1.4492188, -1.6865234, 0.38354492, -0.3618164, 0.8574219, -0.6694336, -0.31298828, 1.2734375, 2.7246094, 1.0273438, 2.8164062, -0.81103516, 0.5854492, -1.1650391, 0.39208984, 1.7011719, -1.3291016, 0.49267578, 3.0449219, -1.7421875, 1.4189453, -1.0224609, 0.030685425, 1.1230469, -0.66748047, -0.33398438, -1.3369141, -2.6269531, -3.2910156, -0.39770508, -2.3457031, 0.63623047, 1.4306641, -1.15625, -2.8222656, -0.19592285, -1.5605469, 2.4882812, -0.64160156, -1.8349609, 0.5683594, -2.453125, -1.2197266, -1.7548828, 0.50097656, 0.2553711, -0.13671875, -3.765625, 3.2792969, 1.0429688, 2.1816406, -1.1416016, 0.11584473, 2.3964844, 0.09448242, -1.4775391, 0.8354492, 0.35083008, -2.3203125, 1.7021484, -0.45361328, -2.125, -0.31860352, 0.7260742, 0.25341797, -1.6259766, 1.1337891, 2.4316406, -0.24975586, 0.06402588, -2.2226562, -2.3632812, -0.02734375, -0.19128418, 0.43579102, -0.5283203, -0.6464844, -2.2441406, -0.3371582, -0.7128906, -1.7363281, 0.30517578, 0.27197266, 1.1982422, -1.1269531, -2.1035156, -2.0410156, -1.5009766, 0.06677246, 1.453125, -0.734375, -1.5078125, -0.61035156, 0.6196289, -2.0136719, -1.9697266, 0.33544922, -0.8491211, -0.51220703, 0.9091797, 0.8203125, -0.6142578, 2.2910156, 0.3046875, -1.4228516, -1.4306641, 2.3652344, -0.18701172, 1.6816406, 1.7734375, -0.04071045, -0.0006327629, 1.9921875, 2.3417969, 0.79833984, 1.9550781, 1.0771484, 0.0680542, -2.3105469, -1.4599609, 1.5742188, 0.8886719, -1.3505859, 0.40673828, -0.20800781, 1.7363281, -0.52685547, -2.0703125, 0.11254883, -0.7216797, -0.23303223, -1.5126953, -2.484375, -1.6435547, -1.1035156, 3.4277344, -0.96533203, 1.5654297, 0.7314453, 0.44726562, 1.5390625, -0.89160156, -0.10974121, -0.95654297, -1.4609375, 0.69970703, 2.0546875, 0.27612305, -0.265625, -2.125, 1.0556641, 0.6484375, -1.5351562, 0.11413574, 0.085754395, -1.3203125, 1.8046875, 0.6386719, -2.2226562, -1.1855469, 1.7851562, 0.67333984, 1.8828125, 0.21020508, 2.3398438, 0.5888672, -1.4638672, 3.3632812, -0.51660156, 1.3203125, 0.45751953, -0.31152344, 1.3271484, -1.7617188, 2.3046875, 0.4814453, 1.5175781, 0.73339844, -1.8994141, -0.73828125, 2.4902344, -1.0683594, -1.8955078, 3.1132812, 0.46240234, 0.5703125, -0.36132812, 0.12658691, -0.5996094, -0.79589844, 2.0273438, 0.22070312, -0.029083252, 0.6826172, -0.23352051, -0.9350586, -0.14111328, -1.3242188, -0.22839355, 0.81884766, 1.1171875, -1.3535156, -1.2148438, 1.4833984, -1.7607422, -1.3027344, 1.1386719, -3.4414062, -0.09753418, 1.3798828, 1.4990234, 3.9785156, -0.11456299, -0.6567383, 1.9111328, 0.58740234, -0.46313477, -0.09942627, 0.23620605, -1.0888672, -1.2255859, -2.171875, 1.1025391, -1.6933594, -0.6455078, -1.2324219, -2.0566406, -1.9785156, 1.4140625, -2.7441406, 1.1210938, 0.71240234, -2.8378906, 1.8564453, 0.34887695, -2.3789062, -0.6538086, 0.8857422, -1.8623047, -1.4785156, 1.3994141, 0.8100586, -0.44091797, -3.6699219, -0.69970703, -0.28930664, -0.9194336, -0.10559082, -0.2763672, 1.0830078, 0.067871094, 0.546875, 1.1679688, 0.036315918, -0.45214844, -1.6357422, 1.6894531, -4.4609375, 0.42578125, -3.3730469, 0.31445312, -0.9042969, -0.44384766, -3.5039062, -0.84765625, 0.61865234, -1.0283203, 3.640625, 0.94677734, 0.8955078, -0.30126953, -1.3730469, 0.6044922, -0.8232422, -2.59375, 0.98876953, -0.34570312, -1.7949219, -1.0087891, -4.7070312, -0.6894531, -1.7900391, -0.62109375, -0.69384766, -0.6977539, 0.1751709, -1.3427734, -1.8193359, -1.2685547, -1.1025391, -0.15576172, -0.59521484, -2.0175781, -0.83154297, -1.4541016, -2.1699219, -0.6738281, -0.5517578, 2.7324219, -0.4506836, 0.3544922, 3.1992188, 0.07446289, 1.8144531, -0.57666016, -3.1015625, 2.1640625, 3.1210938, -0.47827148, 0.078552246, -1.7802734, -1.4609375, -1.0820312, 0.59375, 3.5859375, 1.1064453, 1.7695312, 1.8769531, 0.37353516, 0.38256836, 0.1508789, -0.30639648, -1.8828125, -0.07800293, 3.2167969, -1.2363281, -0.35180664, 1.2421875, 2.453125, -1.9638672, -0.68896484, 3.1972656, 0.23352051, 1.5791016, 3.0859375, -0.20947266, 1.0644531, 0.33447266, 0.4880371, -0.4946289, 0.16418457, 0.27075195, 1.2441406, 1.0585938, 0.02204895, 1.8886719, 2.171875, 0.34643555, 1.4697266, 2.7636719, 0.52734375, -0.66552734, -0.92089844, 0.8041992, 0.32177734, -0.45947266, 1.4814453, -0.38793945, -0.13000488, 0.003824234, -1.1064453, 0.65625, -3.1152344, -0.15332031, 1.5878906, -1.6503906, 0.82177734, 0.10290527, -0.45361328, -0.42260742, -0.5751953, 1.0517578, -0.76464844, -0.24768066, 0.5698242, -2.0683594, 0.06640625, -2.0429688, 1.6689453, 1.5009766, -1.4492188, 0.13891602, 1.5302734, -3.2167969, -2.1464844, 0.122924805, 0.12030029, -0.65771484, 2.4902344, 1.5078125, -1.8085938, 0.5908203, -1.2402344, 0.8310547, 2.0078125, -1.0244141, -1.2734375, -2.0449219, 0.31835938, -0.49609375, 1.5302734, 0.90185547, 1.6269531, -2.5351562, 0.7470703, -2.7441406, 0.43945312, 0.59228516, -0.5625, -0.72558594, 2.6894531, -0.7714844, 1.0761719, 0.31567383, 1.8837891, -1.1914062, -0.021438599, 1.8349609, -2.1191406, 0.3515625, -0.15759277, -4.0351562, 0.3701172, -0.22607422, -0.16259766, 3.4804688, 0.53808594, 0.94677734, 0.5361328, 0.5341797, -3.1054688, -0.94189453, -0.29077148, -0.0692749, -1.4482422, -1.9199219, 0.23693848, 0.12036133, -1.6435547, -1.3271484, -1.4824219, -0.55810547, -0.47924805, 1.0966797, -1.0166016, 0.51123047, -0.04901123, 0.67089844, -0.84228516, -0.46118164, 1.1904297, -0.6694336, -1.1630859, -1.8671875, 1.3378906, 0.98339844, -0.07470703, -1.1796875, 3.7421875, 0.81884766, -1.3847656, 0.15539551, 0.33032227, 1.8408203, -0.7709961, -2.7167969, 0.060455322, 0.3798828, 0.95654297, 0.51953125, -0.13220215, -2.5117188, 0.04598999, 0.9711914, 2.0683594, 2.609375, 0.7607422, -0.54345703, -2.2285156, 1.9511719, -0.2052002, -1.3408203, -0.54345703, 0.33691406, 2.0371094, -0.54541016, -0.30859375, -2.7558594, 0.14660645, 0.92626953, 0.31274414, -2.1503906, 2.4550781, 2.5976562, 2.09375, 1.6328125, -1.4609375, -0.69970703, 0.6567383, 0.9038086, 1.1064453, 1.1367188, 0.46411133, 1.0810547, 0.8100586, 1.4492188, -1.4365234, -0.39916992, 1.5917969, -1.2548828, 0.7011719, -0.91845703, -0.12524414, -0.5961914, -0.18847656, -1.0488281, -1.5390625, 2.859375, -0.67822266, -0.2836914, 0.7548828, -0.3791504, -0.82177734, 1.2783203, 0.030944824, -0.11260986, 1.5458984, -0.18151855, -0.57666016, -0.1628418, 0.99316406, 0.89746094, 0.57421875, 0.7988281, -1.1347656, -0.03378296, 1.1787109, -1.5859375, -0.77734375, 2.2929688, 1.2978516, -0.31445312, 3.6660156, 2.4960938, 0.114868164, 0.8857422, 2.1308594, -0.76171875, -0.56396484, -0.98046875, 0.016921997, 1.4257812, -0.7011719, -1.8105469, 0.83154297, 3.0898438, -0.9003906, 1.2392578, -0.25, -1.28125, 0.80029297, -2.1953125, -1.34375, -0.8129883, 0.014083862, 0.0027675629, -1.1308594, 2.0371094, 0.24255371, 1.4423828, 2.9765625, -0.94140625, -1.5595703, 2.3007812, -0.19836426, 0.3876953, -0.96533203, 0.2536621, -2.15625, 1.1865234, 1.8408203, 1.0029297, 0.7314453, 1.2158203, 0.3071289, -2.7460938, -0.19543457, 0.7597656, 2.0078125, -2.0097656, -1.0546875, 2.8945312, 0.14807129, -0.06964111, -2.0214844, -0.12237549, -0.80908203, 2.0371094, 1.9785156, 0.91796875, 0.13549805, -0.6645508, -3.0898438, -3.6621094, -0.9970703, 0.4958496, -1.3554688, 0.5708008, 0.0015239716, 0.2064209, 0.27197266, -1.7714844, -0.42578125, -2.3027344, -0.36645508, -1.4990234, -1.6669922, -0.47045898, -0.7480469, -0.91064453, 1.046875, 0.1628418, -0.6538086, -0.08605957, -2.0058594, -1.8261719, 0.23303223, -2.6425781, 0.23205566, 2.03125, -0.7446289, 1.9404297, 2.7519531, 0.75634766, -2.3320312, 1.6572266, -0.90771484, -1.5332031, 1.7958984, -0.26245117, 0.16003418, 0.96435547, -0.33129883, 1.8447266, -0.50097656, 0.20300293, -0.41455078, -0.12536621, 1.3642578, 1.0830078, -0.6166992, 0.5107422, 2.0019531, 0.70947266, 1.5244141, 2.0742188, -1.6699219, -0.3798828, -1.0126953, -1.7021484, 0.2590332, -1.6230469, -1.5175781, -0.6723633, -0.48779297, 2.0332031, 0.65771484, 1.4765625, 2.1386719, 1.3544922, -1.5517578, 1.3828125, -0.65966797, 2.5507812, 0.9790039, -0.8017578, -2.4882812, -3.015625, 1.4541016, 1.2714844, 0.5185547, -1.0478516, 0.8696289, -1.4140625, 0.96728516, -0.122558594, 0.24536133, 2.1191406, 1.8789062, 0.26367188, 2.9960938, 3.0507812, 0.047729492, 0.9951172, -0.107299805, -0.29736328, -0.99902344, 1.7900391, 1.84375, -1.8232422, -0.6958008, -1.6953125, 1.3896484, 0.24365234, -0.1772461, -0.47802734, -2.3066406, -0.84521484, -0.96435547, -0.98828125, -3.2050781, 1.2851562, 1.4960938, -0.93847656, 0.16210938, 1.234375, -0.4621582, 1.4121094, 1.8251953, 1.5253906, -1.3300781, -0.23742676, -1.3037109, -0.7788086, 2.0957031, -2.8222656, 1.2841797, 1.4541016, 0.17749023, -1.5947266, 1.6064453, -0.43432617, 0.5058594, 2.0722656, 1.9667969, 2.3867188, 0.41992188, 1.2363281, 0.84033203, 2.2089844, 2.1816406, -0.2685547, -0.2043457, 2.2421875, 1.8935547, 1.2978516, -0.4572754, 0.031829834, 0.85791016, -1.9082031, 0.32470703, 0.36743164, 0.056152344, -3.6503906, 0.69970703, -1.65625, 0.68896484, -0.59277344, 0.5722656, -0.94433594, -0.59277344, 0.8754883, -0.36767578, 2.1835938, -1.1396484, 1.2138672, -0.48168945, -0.8701172, 1.4003906, -2.0019531, 1.8613281, -0.1628418, -1.9814453, 0.4350586, 1.2802734, 0.7207031, 1.6650391, -0.40576172, 0.578125, 0.90185547, 0.5048828, 0.30810547, -2.5957031, 1.7392578, 0.15356445, 2.1035156, 1.8837891, -1.4863281, 1.2744141, -0.21276855, -1.1396484, -4.8828125, 3.3125, 0.9394531, 0.8022461, 0.2446289, -1.6894531, 1.3007812, -1.0273438, 1.4394531, -2.640625, 0.2232666, 0.6376953, -2.59375, -0.74365234, 1.5, -1.6054688, 4.8632812, -0.18920898, -0.69091797, 1.2919922, 0.93603516, 1.0273438, 0.11853027, 0.95654297, 1.2275391, -0.012573242, -1.2216797, 2.03125, 1.1933594, -1.2666016, -1.2216797, 1.9755859, 0.93847656, 1.8681641, 1.9824219, 0.12042236, 0.7558594, 1.1005859, -0.7182617, 0.5258789, -2.6210938, -0.4501953, -1.4804688, 0.40014648, -1.0683594, -1.5419922, 2.0449219, 0.28295898, -1.8505859, 0.13342285, 2.1074219, -0.6928711, 0.51953125, 0.69091797, -0.5605469, -1.2080078, -1.0175781, 1.2773438, -1.6152344, -0.8833008, -1.2617188, 0.25439453, -0.27954102, 0.3852539, -1.0302734, -0.90722656, -0.49951172, 0.95751953, 1.5771484, -1.1152344, 0.96484375, 0.11767578, -0.38110352, -0.91748047, -0.0044822693, 1.0898438, -0.61035156, 0.2697754, -1.6464844, -0.7285156, -0.48364258, 0.16784668, 2.5488281, 3.0800781, 1.2988281, 0.6455078, -0.9399414, -4.125, -1.1474609, -1.5869141, 0.48632812, -0.22766113, 0.123046875, -0.21386719, 1.9267578, 3.1757812, -1.25, -0.47583008, 0.64453125, -0.5595703, 1.7744141, 0.44213867, 1.2636719, 0.43896484, 0.24401855, 0.09106445, 2.59375, 1.4208984, -1.5966797, 1.0517578, 1.5546875, -1.0458984, -2.4199219, 1.2197266, -1.0576172, -0.3137207, 0.3635254, -0.23925781, 2.9882812, 0.97998047, -0.9194336, -1.4667969, -1.2148438]}, "B088YP9G4N": {"id": "B088YP9G4N", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker\nDescription:
          Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

          With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

          Technical Details:
          Premium Material: Solid iron support + Chrome plated BBQ wire mesh
          Color: Black\nFeatures: The grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE\u2019S GATHERING]\n", "embedding": [-2.2089844, 2.2148438, 1.4072266, -0.72753906, -0.5415039, -1.5126953, 1.0927734, -1.5498047, -1.6494141, 1.4726562, -0.41918945, -2.1367188, -0.059387207, -3.1503906, 0.953125, 0.42919922, 2.1992188, 1.0429688, 2.0253906, 1.1357422, -0.4794922, -0.6323242, 0.86083984, 0.6875, 2.5390625, -1.125, 3.609375, -2.3300781, 0.9790039, -3.9648438, 2.6523438, 1.0009766, 1.0605469, 1.4951172, -1.8828125, -0.64990234, -2.0839844, 1.8330078, -1.0410156, 1.3027344, 1.1142578, -2.3847656, 2.2890625, 0.79785156, -2.984375, 0.57128906, -1.0078125, 1.4140625, -0.2890625, -2.7792969, 2.7363281, 2.2851562, 1.7714844, 0.15307617, -2.2246094, 0.46948242, -2.0800781, -3.8789062, 1.7548828, -1.4287109, 1.5019531, 0.022506714, -0.546875, 3.3632812, 0.2553711, -1.8105469, -0.20349121, -0.6972656, -0.37280273, -1.3994141, 1.8349609, -1.5117188, -1.7519531, 1.4902344, 1.2626953, -2.3222656, -2.0722656, 1.0683594, 0.65625, 0.73339844, -1.3671875, 2.5859375, 2.1953125, -1.3759766, 0.10656738, 1.3740234, -1.2841797, -0.113220215, 1.9550781, 1.8583984, -0.3461914, 2.0996094, -1.4560547, -3.5136719, 2.0722656, -2.6289062, 1.4306641, -0.44458008, -2.3730469, 1.7011719, -0.5366211, 1.0263672, -0.6069336, -1.0820312, -3.3652344, -1.5488281, 1.1083984, -1.1152344, -0.5756836, 2.109375, -1.6865234, 1.6611328, -0.0021305084, 1.4628906, 1.5693359, 0.6791992, -1.2949219, 2.7167969, 1.4511719, 1.4160156, 5.5195312, 0.48291016, 0.17944336, -4.5664062, -0.72265625, -0.37817383, -0.6713867, 1.8935547, 2.8691406, -1.7822266, 0.2944336, -0.64208984, 0.09387207, 1.0849609, -2.4707031, -1.6953125, -1.4873047, -0.5673828, -2.7011719, 1.8623047, -1.8046875, 0.18603516, 3.5195312, -1.3134766, -2.4882812, -0.09008789, 0.037841797, 2.765625, 0.4140625, -1.7255859, -0.4873047, -0.99658203, -0.2388916, -1.1386719, 1.6367188, -1.6728516, -0.5126953, -1.4375, 2.2890625, -0.04623413, 2.0820312, -3.1855469, -0.6176758, 2.0625, 0.67578125, -0.7246094, -0.4855957, 2.8144531, -0.5239258, 1.8447266, 0.39208984, -1.8447266, 0.7895508, -1.3740234, 1.9316406, -1.4111328, 0.17663574, 3.296875, 0.625, 0.2529297, 0.1730957, -2.0078125, 0.85791016, 1.2666016, 0.19152832, -0.94873047, 0.52197266, 0.23474121, 1.0703125, -1.15625, 0.6826172, -0.29003906, -0.8623047, -1.2714844, -0.61035156, -0.8745117, -1.6533203, -1.1318359, -0.07434082, 0.8413086, -1.0839844, -1.1025391, -1.7705078, 0.22363281, -1.9824219, -2.5507812, -1.6181641, 0.05014038, 1.8515625, -0.021606445, 0.40820312, -0.45043945, 1.4580078, 1.15625, 0.30566406, 0.025756836, 2.328125, -1.4794922, 1.8261719, 2.0019531, -1.7080078, -1.0771484, -0.19433594, 4.6015625, -0.06945801, 1.9736328, -0.65966797, 0.28442383, -0.2388916, -1.0283203, 2.1855469, 0.0914917, 0.32543945, 1.1015625, -1.0146484, 2.6445312, 0.9267578, -1.0849609, -2.2773438, 0.6220703, 1.0126953, -3.5117188, 1.3798828, -1.1552734, 0.70214844, -1.9755859, -1.4433594, 3.3378906, 0.82910156, -0.59521484, 0.99316406, 1.5732422, -0.6230469, 0.8544922, 0.025375366, 1.5351562, -2.4042969, 0.5371094, -2.3789062, -1.9404297, -0.02734375, 0.49169922, 0.67529297, 1.359375, 0.48217773, -2.5214844, 1.7958984, 1.1025391, -2.4824219, -1.1523438, 2.0253906, 0.7470703, 0.171875, 0.027709961, 2.1191406, -1.4638672, -0.9121094, -0.9921875, 1.3525391, -0.1394043, -0.97216797, -0.34375, 2.6816406, -0.89160156, -2.09375, -2.7089844, -0.7548828, -1.2353516, 1.8466797, 2.2636719, 3.7597656, 1.4824219, -2.3652344, 2.6464844, -2.5664062, 0.20422363, 1.7832031, -0.76660156, -1.3759766, 2.1347656, 0.8852539, 1.4033203, 0.43920898, 1.0625, -2.8359375, -0.3618164, 1.3642578, -1.7460938, 0.34375, 2.5820312, -0.6435547, 0.69970703, -0.93115234, -0.70410156, -1.9804688, -2.5410156, 1.0458984, -2.2363281, 1.3261719, 2.1972656, 0.7763672, 0.3701172, -0.7236328, -3.0078125, -1.4316406, -0.61328125, -0.1340332, 1.2167969, 0.79248047, -0.7270508, 1.1953125, -0.45166016, 1.5136719, -2.3515625, -1.1826172, -1.6289062, -0.049835205, -2.0644531, -0.62890625, -0.37402344, 0.44262695, 0.3959961, -2.8476562, -1.1748047, -0.65185547, -3.0097656, 0.5053711, 1.7890625, -0.7739258, 1.1552734, -0.6953125, 0.20080566, 0.1607666, -5.5742188, 0.7988281, 0.4873047, 1.1337891, 0.42700195, -1.2841797, 1.4482422, -2.15625, 1.6416016, 0.21862793, 1.1044922, 0.7607422, -2.0546875, -1.1113281, -1.9335938, 2.3515625, 0.042297363, 1.75, -0.056243896, 0.59472656, -2.5273438, -1.8027344, -1.6679688, -1.0703125, 3.5507812, -0.6796875, 2.3046875, -1.2988281, -2.1132812, 0.7446289, 1.5341797, -2.0117188, -2.2167969, -0.0096206665, -0.6430664, -1.5566406, -2.7382812, -0.9008789, -0.16894531, -1.7792969, 0.4321289, 2.1523438, -0.54785156, 2.1582031, -1.515625, -1.4130859, -0.90527344, 1.8154297, 0.35009766, 0.20507812, -1.1054688, -0.64746094, 0.94433594, -0.2310791, -0.20788574, 2.0429688, -1.4912109, 0.12426758, 1.2548828, 0.5253906, -0.26708984, 0.1484375, -1.8203125, 1.1787109, -0.18591309, -0.84375, 1.6035156, -0.5444336, -1.3457031, -3.0820312, -0.06628418, 3.40625, 0.56103516, 0.7602539, 0.09509277, 0.26904297, 0.9042969, -1.3837891, -0.13598633, 0.51904297, 0.8125, 1.7705078, -2.8867188, -0.8388672, 0.73876953, 1.7705078, -2.8203125, 1.2050781, 1.125, 1.2851562, 0.9223633, 0.15270996, 1.5488281, 0.5800781, -0.2454834, 1.6054688, 1.734375, 1.6308594, 0.2244873, -1.2792969, -0.21264648, 0.15771484, 0.4128418, 1.296875, 0.6074219, 3.078125, 2.5117188, -0.13061523, -3.2382812, 0.11236572, 1.2617188, 2.7695312, 0.3408203, 3.1601562, -1.7841797, -2.5839844, -0.10247803, -0.59033203, 1.8466797, -1.4492188, -0.2993164, 2.3125, -0.63916016, 0.78125, -1.1005859, -1.0078125, -0.33325195, -1.8671875, 0.74658203, -1.5458984, -2.5722656, 0.23278809, -1.7587891, -3.2285156, 0.27124023, 2, 0.40356445, -2.59375, 0.050994873, 3.25, 0.6142578, -1.0244141, -1.6865234, 2.0722656, -0.22631836, 1.3964844, -1.0390625, -2.4414062, 1.7490234, -1.5683594, 1.7490234, 0.39526367, 0.33203125, -2.1171875, 0.07336426, -2.0390625, 0.97802734, 0.3203125, 0.6225586, -0.93652344, -2.7109375, -0.33398438, -3.7734375, 0.8730469, 0.86865234, -1.7011719, 0.1583252, 0.8808594, 2.7617188, 0.42407227, -2.3183594, 2.5683594, -0.06793213, -2.9921875, 1.2998047, -2.3925781, -1.5927734, -3.0058594, -4.0898438, -0.12194824, 0.06677246, 0.5292969, 1.2460938, 0.20922852, -0.5493164, 2.6015625, 0.74072266, -0.6982422, -1.1005859, -3.234375, -1.3173828, -2.0253906, -0.20214844, 2.0273438, 1.4589844, -1.1621094, -2.0878906, -0.7475586, 1.21875, 1.8486328, 1.2324219, -2.046875, 0.5341797, -2.9042969, 0.10803223, -0.02003479, -0.3408203, 0.671875, -1.1865234, 1.0039062, -0.51220703, 2.0097656, -0.78222656, 0.29345703, -0.012466431, 1.5800781, -0.5961914, -0.11102295, -0.8208008, 1.3222656, 3.5742188, -1.5566406, -2.9492188, -0.00844574, -0.60302734, -0.09716797, -1.1445312, -0.6430664, 0.4345703, -1.9287109, 1.0664062, -0.2980957, 1.5761719, 2.6503906, 1.0751953, -2.8789062, -0.9345703, -0.11022949, -2.8945312, -3.1523438, -0.10284424, 0.064941406, -0.5292969, 1.0283203, -0.5883789, 1.3769531, -0.5576172, -1.1621094, 0.026779175, 2.9179688, 2.7832031, 2.2207031, 3.9375, -1.9580078, -0.8618164, 2.2324219, -2.125, -2.0234375, 2.6015625, 0.8027344, 0.8198242, 2.3886719, 0.51660156, -0.9980469, -0.18579102, -0.27929688, -0.5390625, -0.89160156, -1.0595703, 2.6328125, -0.6767578, -1.6630859, 0.85253906, 0.18713379, 3.4667969, -1.3837891, 0.57470703, -1.4765625, -0.5629883, -0.73779297, -0.59228516, 0.036468506, 0.13391113, -0.46899414, 0.18469238, 0.20336914, 0.30615234, 0.093322754, -1.7958984, 2.9277344, -1.7246094, -1.4902344, 1.7275391, -0.5097656, -0.25146484, -1.8066406, 2.34375, 2.0683594, -0.55859375, 2.375, 0.13366699, -1.8515625, 1.4150391, 1.7978516, -2.1113281, -0.97314453, -0.78222656, -1.3671875, 0.33032227, -0.49487305, -2.9160156, 0.012519836, 0.515625, -1.7910156, 1.1503906, -0.48095703, -2.453125, 1.9160156, -2.5820312, 1.0117188, -1.3105469, -1.5722656, 0.41308594, 0.22583008, 0.11608887, -0.27197266, 1.0693359, 2.4785156, -2.0117188, -1.1552734, 1.4560547, -0.35058594, 0.8125, 0.59228516, -2.1171875, -2.8671875, -0.82666016, 2.6132812, 2.6347656, 2.7871094, -0.30249023, 1.4052734, -1.6289062, 1.2958984, -1.8486328, 2.6503906, -1.9423828, 1.0654297, 4.6914062, -1.5908203, -0.5546875, -2.5585938, 2.4042969, 1.4746094, 1.4335938, 0.34301758, 0.2619629, -1.1435547, -0.5683594, -2.8632812, -3.5273438, -0.8833008, -0.44506836, 0.38305664, 0.4104004, 1.0439453, -0.7631836, -0.9946289, 0.3869629, 1.5527344, 0.07513428, -1.5380859, -0.2142334, 0.47485352, -1.2402344, 0.35742188, -0.022521973, 2.921875, 1.4716797, 2.6855469, -1.6660156, -2.8886719, -0.13806152, 0.8828125, -2.2890625, -0.20031738, 0.99316406, 0.47998047, -0.015472412, 1.5185547, -0.37890625, -0.57373047, 1.9667969, -0.60009766, -0.3696289, 1.3066406, -0.42138672, 1.7490234, -1.5351562, -0.9013672, 0.09039307, -3.6972656, -0.09283447, 2.1210938, 0.7758789, 0.77978516, 1.7832031, -1.0273438, -0.17871094, -0.44555664, 0.30395508, 0.66308594, 0.5498047, 0.49609375, 0.4909668, -3.7382812, -3.578125, -0.8486328, -0.3046875, -0.29125977, -2.0917969, 0.73583984, 0.48120117, 0.38500977, 1.7382812, -0.16564941, 1.3505859, -3.4589844, 1.5654297, 1.3583984, 1.6904297, 1.1201172, -2.2226562, 0.13562012, -2.0273438, -1.5869141, 0.044677734, -0.018539429, -0.7426758, 0.34204102, -1.03125, -0.04309082, 1.1445312, -0.14013672, 1.2529297, 0.8105469, -0.6166992, 0.93115234, 0.6352539, -2.0976562, 0.41381836, 0.98095703, 2.6308594, 0.064941406, 3.8847656, -1.1171875, -1.2802734, 2.3242188, -0.69189453, 1.953125, -0.29467773, -1.90625, 0.60595703, -3.296875, -2.2109375, -2.4140625, -0.7001953, 0.18200684, 0.88427734, 0.70654297, 0.4633789, -0.5371094, 3.9414062, -0.68408203, 0.5463867, 1.6806641, 0.5214844, -0.21374512, 0.4033203, -1.0634766, 0.6958008, 1.1679688, -1.0058594, -0.042541504, -0.41259766, -0.087646484, -0.8276367, 2.8671875, 1.7255859, 1.4238281, 1.2851562, 1.8378906, 1.8447266, 2.5800781, 4.6757812, -0.5317383, 1.4521484, 2.0410156, -1.4326172, 1.1328125, 2.765625, 1.8574219, -0.80029297, -0.32543945, 1.7929688, 0.54052734, -0.28222656, -1.2226562, -1.0283203, 0.80029297, -1.53125, 2.8632812, 0.25830078, 0.11791992, -1.6992188, -0.89990234, -0.92871094, -0.390625, -1.3847656, -0.9868164, 0.81689453, 0.007701874, -0.39379883, 0.703125, 0.52978516, -0.15527344, -3.5625, 1.8974609, -0.12109375, 1.4541016, -0.625, 2.1699219, 2.9375, 0.91015625, 0.033416748, 2.2246094, 1.5419922, 1.3642578, 2.9394531, 0.42089844, 1.1191406, 1.0439453, 1.9306641, -1.9404297, -1.90625, -1.8222656, 0.99658203, -0.9399414, -0.7915039, 1.7021484, 0.33618164, 1.7724609, 1.5800781, -1.4453125, 2.2207031, 2.5078125, 1.0449219, -0.6479492, 0.48291016, -0.19299316, -3.2617188, -0.60058594, -0.4555664, -0.085510254, 2.6679688, 2.265625, 0.16357422, 3.3007812, 1.5253906, 0.80908203, 0.84033203, 0.29541016, -1.9619141, 0.73876953, -0.1303711, 2.0761719, 0.69921875, 0.26757812, -0.96533203, 1.7177734, 0.23474121, -0.09741211, 1.7138672, -0.2175293, -0.64746094, -0.14025879, -1.3720703, 0.49291992, -0.8955078, -1.3115234, -0.43969727, -0.21411133, -0.59814453, -1.1962891, 0.8881836, 1.2763672, 1.4257812, 0.7895508, -0.66552734, -2.1074219, 1.7822266, 0.17895508, -0.23999023, -0.47827148, 0.6113281, 1.1357422, -0.24084473, -0.65283203, -0.49169922, 0.7089844, 1.0761719, 1.1220703, 1.4638672, -0.020690918, -0.031951904, -0.5361328, 1.5634766, -1.4316406, -1.8691406, 0.85546875, 0.27929688, -0.20410156, 2.5078125, 0.31103516, -2.4492188, -0.35888672, -2.5351562, 0.09326172, -0.55371094, -3.4277344, -0.5180664, 3.6269531, 0.7885742, -0.984375, -3.578125, -3.0078125, 0.52978516, 0.010513306, 3.0605469, -0.9042969, -1.8583984, 0.004714966, -1.0117188, 2.6777344, 0.69677734, -2.2011719, 0.6791992, -0.25878906, -0.3010254, -1.3535156, 1.125, 1.4462891, -0.18444824, -1.2958984, 1.3486328, 2.2207031, 2.5078125, 1.8554688, 0.97558594, 1.1308594, -4.5859375, 0.11566162, 0.15551758, 2.0351562, 0.07965088, 0.5708008, 0.96875, -0.7167969, -0.23864746, -2.6074219, -2.2226562]}, "B07JPZXW51": {"id": "B07JPZXW51", "original": "Brand: TECHOST\nName: WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required\nDescription: \nFeatures: \n", "embedding": [-2.1328125, -0.8847656, 2.2558594, 0.024765015, -1.4228516, 1.9296875, -0.8203125, 1.2880859, -0.096191406, 0.77246094, 0.58251953, 2.6054688, 0.9321289, -2.2753906, -0.15014648, 0.27856445, 0.85058594, 0.86816406, 0.7109375, 1.5419922, 2.609375, 0.7373047, 0.42626953, -2.1855469, -0.5048828, 0.9711914, 4.71875, -0.90234375, -1.2744141, -2.3496094, 0.69140625, -0.5151367, -0.43286133, 1.9560547, -1.7792969, -0.8027344, -0.30859375, -0.69970703, -0.5102539, 0.6899414, -1.2792969, 0.75390625, -1.0019531, 0.7661133, -4.375, -2.0742188, -0.90185547, -0.6611328, 1.2275391, 1.4384766, -0.33935547, 1.9511719, -0.27368164, -0.46142578, 1.6923828, 0.62353516, 1.8662109, -1.2578125, -0.23596191, 1.7226562, 3.1054688, -1.4970703, -1.3515625, -1.0371094, 0.56396484, 0.2668457, 0.84765625, -1.8037109, 0.033447266, 1.4599609, 0.01713562, 0.49560547, 0.28857422, 0.37060547, -1.2011719, -0.007736206, -2.5898438, -0.88134766, 0.06781006, -2.3203125, 0.88183594, 0.6484375, 0.38427734, -1.7060547, 0.29223633, -2.3046875, 0.7207031, -1.2089844, -0.26708984, -1.8886719, -3.1191406, 1.9921875, -1.2490234, -4.0820312, 1.5800781, 0.16223145, -0.00982666, -2.2011719, -0.44995117, 1.1738281, 1.1376953, -2.46875, 2.5058594, -0.3125, -2.0351562, -1.9238281, 3.1855469, 1.9853516, -0.9526367, 0.37573242, -1.3876953, -1.8017578, 0.2553711, -0.9667969, -0.55322266, 1.125, 2.5898438, 0.45874023, 1.8828125, 0.52685547, 1.2832031, -1.5849609, 1.375, -0.05783081, -0.033477783, 0.4711914, 0.85009766, -0.04586792, -0.38183594, -0.033691406, 1.6494141, 1.0859375, 0.55566406, -0.06793213, 1.8603516, -0.6191406, -0.12878418, -2.109375, -1.7314453, -1.7509766, -2.9941406, -0.61035156, -0.022735596, -0.85791016, -1.6357422, -0.7788086, -1.234375, -0.14587402, -1.0117188, 0.47680664, -0.48657227, 0.58984375, 1.2626953, -1.3476562, 1.0947266, 0.7714844, -2.7011719, -1.4023438, 2.421875, 0.4724121, 0.5463867, -0.4025879, -3.6347656, 1.2607422, 0.17407227, -2.9296875, -1.4189453, 0.5541992, -0.5341797, 2.96875, 0.1484375, -0.5473633, -0.68310547, 0.24926758, -0.08300781, -1.1191406, 2.671875, 1.0351562, 1.0615234, 0.9189453, -1.4248047, 1.0439453, 1.5048828, -1.8828125, 0.13391113, -1, -1.7363281, -0.5214844, -0.36621094, -2.1113281, -1.2841797, 0.40063477, -0.103027344, 2.078125, 0.9785156, -1.7675781, -0.20422363, 1.8574219, 2.1777344, 1.9238281, -0.6879883, -0.8227539, -1.5810547, -0.95751953, -0.72314453, -1.0830078, 0.7158203, 1.2285156, -1.3623047, 0.34350586, 0.14611816, 1.2734375, 0.69384766, -1.1376953, 2.421875, -0.34765625, 1.6396484, 0.9511719, 0.5463867, -0.35327148, 0.60498047, 1.3457031, 1.6308594, -0.32177734, 0.265625, 1.7275391, -1.6240234, 0.83935547, -1.1953125, -2.015625, 3.5195312, 1.1298828, -0.060394287, -0.7939453, 1.7207031, 2.7558594, 0.94189453, 0.08331299, 1.0107422, 1.2158203, -0.10369873, -0.9345703, -0.58984375, 0.011390686, -1.2158203, -1.2792969, -0.74121094, 1.9296875, 2.2382812, 1.7470703, 3.4589844, 0.55078125, 0.08081055, 1.8886719, -0.5336914, 1.8310547, 1.4423828, 2.3007812, -1.5322266, -2.4179688, -1.3857422, -1.9365234, -0.79003906, 1.4873047, 0.7792969, 0.38500977, 1.6455078, 0.8359375, 0.32226562, 0.7314453, -0.17932129, -0.7001953, -1.1074219, 0.6894531, 1.7207031, 1.0009766, -0.1270752, 0.021102905, -1.1689453, 0.17126465, -1.7832031, -1.1044922, -1.2685547, -0.34765625, -0.07672119, 0.39892578, -0.97509766, 0.5932617, -3.3671875, 0.041137695, 2.5488281, -0.6567383, -3.09375, 4.3203125, 0.023788452, 0.8300781, -0.6303711, -0.32373047, 0.21691895, -1.0957031, 2.3691406, 1.7900391, -1.2177734, 1.6279297, 1.8886719, -0.44384766, -2.0058594, 0.64208984, 0.77734375, -0.083862305, 0.25805664, -0.071777344, -1.0859375, -0.42529297, -0.98535156, -2.6894531, -0.0053215027, -1.7207031, -1.6484375, 0.7182617, -0.54248047, 2.4589844, 2.2734375, 1.2539062, 0.8823242, 1.1015625, 1.8925781, -0.6015625, 0.35546875, -0.35864258, 1.4199219, 0.20483398, -1.4365234, -3.0566406, -1.5371094, 0.38354492, -2.359375, -4.3867188, 2.0976562, -0.39086914, -1.1308594, 0.8803711, 0.10235596, 0.109375, 1.4189453, -0.7290039, -1.2490234, 0.09790039, 0.036590576, -2.9921875, 0.7480469, 2.9707031, -1.2470703, -1.6748047, -1.1113281, -0.18383789, 0.07550049, 0.30395508, -0.6147461, 0.27441406, -1.6523438, -0.6298828, 0.7373047, 0.6894531, -1.4667969, 0.9033203, -0.2770996, -1.4248047, 0.58984375, -1.1699219, 2.9980469, -1.4003906, 0.15783691, -0.59521484, -1.7695312, 0.9301758, 2.3964844, 2.4453125, 0.72314453, 3.8808594, -1.0078125, -0.6411133, -0.29174805, -1.0058594, -2.0996094, -0.81933594, -2.1132812, -1.7871094, -0.97802734, -3.1445312, 1.3525391, 0.78515625, 1.9101562, -0.86376953, 1.3398438, -0.25512695, 1.5371094, -0.6323242, 0.39086914, -0.43823242, -1.0400391, 0.02255249, -2.1523438, -0.77685547, -0.36132812, -1.3359375, -0.5654297, 1.0205078, 0.028381348, 1.5136719, 1.6875, 1.5683594, 0.18444824, -0.9277344, 3.7128906, -1.6484375, 0.12573242, -0.15612793, -1.1865234, 0.25317383, -0.83203125, -0.8095703, -1.1962891, 1.3330078, 3.3847656, 0.9760742, 2.0175781, 1.8671875, 0.03744507, 1.0957031, 3.1738281, -0.8540039, 0.12145996, -0.21105957, 0.06616211, -2.8105469, 0.14025879, 0.52978516, -0.08148193, 0.055847168, -2.3222656, 0.27197266, 3.0664062, 2.4746094, 1.1328125, -2.65625, -1.3085938, 0.7714844, -0.23303223, -1.3398438, -2.25, 0.04928589, -1.0107422, 0.67089844, 1.0136719, 1.6630859, 3.9199219, -0.9140625, 1.2441406, -0.5234375, 0.52734375, 1.4023438, -2.6816406, -1.9228516, 2.5175781, 0.52001953, 0.010375977, 1.6689453, -0.89941406, 1.7802734, 0.95996094, -0.6074219, -0.9238281, -0.17797852, 0.60058594, 0.50634766, 1.4599609, -0.17016602, -1.5546875, 1.5517578, -0.4206543, 0.016311646, -0.8457031, -1.3310547, -1.2773438, -1.046875, -2.3671875, -3.1699219, -0.7421875, -0.033996582, -0.17016602, -0.34179688, 0.3894043, -2.2246094, -1.8095703, 0.6586914, -0.18933105, 2.0332031, -0.27905273, -1.4550781, 0.5541992, 1.2558594, 1.8701172, -1.4052734, 4.4726562, -2.6523438, -1.0371094, 1.1835938, -0.16345215, 1.1923828, 0.13964844, 0.4182129, 0.09893799, -2.296875, -0.011146545, -3.5273438, -3.3847656, 0.26904297, -1.1279297, 1.4765625, -3.109375, -0.88671875, 0.21911621, -0.15002441, 0.91796875, 0.084472656, 0.6567383, 0.4519043, -2.3652344, 0.30249023, -1.3759766, -3.0585938, 0.45581055, -2.5664062, 0.43237305, 0.71875, -1.7001953, 1.0751953, -1.2998047, 0.7211914, -2.2148438, -1.875, -0.27416992, 0.12133789, 0.38330078, -0.69970703, 2.5449219, 1.2021484, 0.10986328, -0.90234375, 0.055541992, 0.89697266, 1.6279297, -0.003522873, 1.9365234, -0.99560547, 0.89697266, -0.04711914, -1.7148438, -1.1523438, 0.5439453, -1.7080078, 0.18737793, -0.98095703, 4.1875, 0.58935547, 0.13891602, -1.828125, 2.0605469, -0.81396484, -0.63671875, -0.5678711, 0.6845703, -0.6298828, 1.1113281, -3.5488281, -0.097717285, -2.2363281, 2.421875, -0.41992188, 0.50683594, -0.83984375, 0.46020508, -0.2932129, 0.62646484, 1.9609375, -0.60791016, 2.203125, -0.91503906, 1.1455078, 0.5234375, -1.0947266, -0.6772461, -2.4746094, 1.0751953, 1.2509766, 1.3417969, -0.7158203, 0.32299805, 0.8149414, -0.40234375, -1.5712891, -1.6025391, 3.0859375, 0.2763672, -0.41967773, -0.13232422, 0.12445068, -0.7241211, 3.4589844, -0.20214844, 1.2050781, 0.47436523, -0.88623047, -0.20446777, 1.9091797, -1.1582031, -1.8984375, -0.609375, 1.8134766, 1.5830078, -0.7602539, -0.5625, -0.74316406, -0.22460938, 0.30859375, 0.7734375, 2.15625, -2.78125, -0.08642578, 2.1816406, -0.09863281, 0.4807129, 1.4365234, 1.3505859, 2.4785156, 1.2460938, -0.5644531, 2.8925781, 1.5302734, 0.7529297, 2.0332031, 0.62353516, -1.6982422, 1.2626953, 2.6757812, 0.055145264, -0.25634766, -1.2919922, 2.1933594, 1.4951172, 2.4003906, 3.1425781, -0.21154785, 0.89941406, -0.9038086, 2.3945312, -0.8540039, 0.13806152, -1.9941406, -1.578125, 1.3466797, -2.1152344, -1.3251953, 0.07312012, 3.9589844, -0.029022217, 2.5097656, 0.6928711, 0.6689453, -0.86376953, -2.6191406, -2.1640625, -0.40039062, -1.4560547, 2.7949219, 0.9394531, 0.70703125, 0.27734375, 0.89990234, 0.4387207, -1.6425781, 1.0986328, 1.7207031, -2.7949219, -0.93603516, -0.066467285, -0.9477539, -2.2734375, 0.08514404, -1.4716797, -0.875, -0.15917969, 0.7011719, 1.4775391, -1.6875, -0.6040039, 1.4951172, -0.39990234, -3.6191406, -2.3183594, 2.6152344, 0.98779297, -0.19812012, 0.29833984, 0.16455078, -0.67871094, 1.5283203, 2.296875, 0.6230469, 0.81640625, -0.30541992, -1.6435547, -2.1074219, -1.5078125, -0.8095703, -0.8486328, 0.75146484, -0.7792969, 0.08892822, -0.19421387, -2.265625, -0.3112793, -0.7207031, 1.5244141, -1.0742188, 2.453125, 0.1953125, -0.29296875, -0.8173828, 1.1210938, 1.1669922, -0.8276367, -0.6665039, -1.3408203, -3.9414062, -1.0019531, -1.2353516, 0.91796875, 1.2148438, -0.07128906, 1.4287109, 2.9453125, 1.4033203, -3.5605469, 1.6865234, -1.3740234, -2, 2.0996094, 0.50878906, 1.0703125, -1.0712891, 0.79833984, -0.9165039, 1.8447266, 2.2050781, -0.08807373, -1.1357422, 0.56640625, 0.72265625, 0.61865234, -1.0605469, 1.8554688, 0.32373047, 2.6914062, -1.7929688, -1.7919922, 0.083862305, -0.88720703, -3.0546875, -0.043426514, -0.54541016, 0.7324219, 0.3630371, 2.65625, -1.3945312, 0.97802734, -0.13110352, -1.2783203, 1.2021484, -0.9116211, -0.75, 0.07751465, 1.3330078, 0.52441406, -1.4472656, -3.078125, 0.040222168, 1.9765625, 2.765625, 0.53125, -2.6054688, -1.3466797, -2.2148438, -0.48364258, 0.85009766, 1.7070312, 1.0878906, 0.044281006, 0.7709961, 0.44921875, 0.9536133, 0.3869629, -0.99365234, -0.011619568, -0.27539062, -0.56689453, -0.11590576, 0.89453125, 0.234375, -0.37768555, -0.80859375, -0.5415039, 0.7363281, -0.7001953, 0.3173828, -3.0507812, 0.13513184, 1.453125, -1.3554688, -2.7148438, 0.9536133, -0.21569824, -0.6274414, -0.12164307, 2.9433594, -1.1943359, 2.0117188, 0.26513672, 0.69433594, -1.3320312, -1.3095703, -1.1435547, -1.0234375, 0.73291016, -2.9335938, 1.8183594, 0.16052246, 2.53125, -1.4648438, 1.0556641, -2.1367188, 1.9091797, 3.4003906, 2.5703125, 3.3261719, 0.9296875, -0.33666992, 0.87060547, 2.2871094, 2.2011719, -1.5097656, 1.1865234, 1.8564453, 0.7553711, 1.8974609, -1.3671875, 0.64941406, -0.5385742, -0.6484375, 1.1259766, 1.2988281, -0.7114258, -0.24450684, 0.33081055, -1.1455078, 0.15405273, -2.8964844, 1.625, -1.9101562, 0.8491211, -0.30151367, 2.0214844, 0.023010254, -2.234375, 0.9741211, 2.0566406, -2.2265625, 2.6308594, -0.6269531, 0.82714844, -0.010932922, 0.4580078, -2.2597656, -1.421875, -0.9550781, -0.55615234, -0.7167969, -0.8847656, -0.35205078, -1.7460938, -0.45703125, -3.1445312, -1.2070312, 0.24694824, -0.59033203, 0.7661133, 0.46484375, 1.5195312, 0.064086914, -1.546875, -3.8007812, 1.8623047, -0.89404297, 0.5776367, -1.0195312, -1.390625, -0.38720703, 0.01751709, 0.94628906, -2.3398438, 0.5332031, 0.6508789, 2.3730469, 0.6928711, 2.703125, 0.7553711, 0.8461914, -0.37402344, 0.017745972, -0.2397461, -0.03970337, 2.4238281, -0.07489014, -0.32666016, -1.1748047, -0.5234375, -0.38134766, 0.15917969, 0.7265625, -0.35205078, 0.19909668, 2.5507812, 0.35180664, 0.6723633, -0.8730469, -1.8808594, -0.91064453, -0.27197266, -0.77685547, -0.6928711, -0.57666016, 0.14855957, 0.61376953, -2.0839844, -1.2246094, -1.2119141, -0.5917969, 0.27661133, -1.2109375, -0.089660645, 2.1738281, 0.20593262, -1.1035156, -1.4121094, -1.6298828, -0.5107422, -0.5078125, 2.9335938, -0.55859375, 0.72558594, -1.2226562, -0.5, 0.33325195, -0.56103516, -2.1445312, 1.8134766, -0.024780273, -1.328125, 2.6699219, -1.1083984, 1.3027344, -1.0898438, -2.109375, 0.6640625, -0.36157227, 1.8203125, -0.7265625, -1.0488281, 1.8417969, -2.0253906, 0.71240234, -0.20056152, 0.04901123, 0.45922852, 0.7158203, 1.3505859, -0.9321289, -1.3398438, -1.7353516, -0.42504883, -1.0341797, -1.0917969, 2.8398438, 1.7314453, 1.8476562, 2.2324219, -1.7109375, 0.91845703, -0.78515625, -1.1787109, 1.2324219, 0.83984375, 1.7011719, -0.4975586, 0.33203125, -0.7651367, 1.7050781, 3.0800781, 0.87646484, 1.7470703, 2.6445312, -0.609375, 0.42919922, 1.6171875, -0.39648438, 0.45336914, 1.8125, 0.41577148, 0.7602539, 0.6166992, -1.1699219, -1.234375, -0.67578125]}, "B00WLYOAB8": {"id": "B00WLYOAB8", "original": "Brand: onlyfire\nName: Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black\nDescription: Specifications:\u00a0
          Onlyfire 14451 Electric Push Button Igniter
          One \"AA\" Battery Is Needed. (Battery Not Included)
          4 Male Spade Connector Outlets

          Original Part Numbers: \u00a0 03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

          Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

          Uniflame Part Numbers: 55-07-448;

          Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

          Amana Part Numbers: FCTG3007029;

          Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

          Suitable Models of BBQ gas grills:
          Fits Various gas grill models of\u00a0BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

          Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

          Exact-fit parts !Cooks better! Durable construction and Lasts longer!

          A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

          NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

          Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

          \nFeatures: CSA Certified, Requires 7/8\" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt \"AA\" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001,\nOriginal Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1\nFits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP\nFits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720\nKenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371\n", "embedding": [-3.7148438, 1.3730469, 0.8823242, -1.7216797, 2.3613281, -0.9423828, 1.7890625, -1.0419922, 0.33666992, -0.22045898, 2.6328125, -0.99609375, -0.013420105, -2.5371094, 1.1787109, 2.7421875, 2.171875, -1.3349609, 1.3232422, 1.7871094, 0.18054199, 2.1621094, 1.2998047, -1.9794922, 0.7348633, 1.8271484, 3.4550781, -3.8164062, 1.2578125, -1.9824219, 1.7519531, -2.2949219, -1.6376953, 1.3613281, -3.6621094, 1.6298828, -0.0758667, 1.5195312, -3.7714844, 1.3798828, 0.09265137, 1.2988281, 2.1523438, -1.0029297, -2.1894531, -0.6582031, 1.5625, 0.68066406, -1.4033203, -1.3222656, 2.1933594, 1.4794922, 0.23950195, 1.0498047, -1.5800781, 3.1582031, -1.4257812, -1.7539062, -0.19091797, 0.6230469, 4.5820312, 0.24633789, -1.6025391, 2.84375, -1.8720703, 0.5541992, -0.68896484, 0.7055664, 0.84472656, -0.81152344, 1.0458984, 0.5205078, 0.44970703, 0.33813477, 0.19311523, 1.0146484, -5.1914062, 2.0546875, -0.7397461, 0.3876953, -0.24890137, 1.1982422, 1.1347656, -2.7792969, 1.8046875, -0.52783203, -1.2089844, -0.009971619, 2.46875, 2.0371094, -0.8071289, 0.8125, -2.0273438, -3.1347656, 3.03125, -0.70703125, -0.2788086, 0.2512207, -1.0966797, 1.7265625, -2.4179688, 0.62109375, -1.1123047, -0.8618164, -0.29003906, -0.2467041, -0.22607422, 1.8300781, -3.0800781, 1.2988281, -0.24951172, 1.3876953, 2.3554688, -0.9819336, 0.13342285, -1.0107422, 1.3652344, -0.9355469, 3.0078125, 1.2910156, 4.6875, 0.058410645, 1.2128906, -2.7304688, -0.81884766, -0.90625, -1.5361328, -0.02822876, 5.296875, 0.46899414, 0.14404297, -3.1035156, 3.4199219, 0.5317383, -0.59716797, -3.7949219, -0.94140625, -3.2617188, -1.9619141, -0.37426758, -2.5292969, -0.421875, 1.7470703, -2.8867188, -2.4179688, 1.8417969, -0.83203125, 0.8232422, -1.2568359, -1.9824219, 3.1835938, -1.6933594, -1.0771484, -3.8125, 3.0175781, 1.5244141, -2.2246094, -2.1191406, 2.6660156, 0.7783203, 0.3232422, -3.5, -0.42382812, 0.875, -0.86035156, -1.6005859, -0.6972656, -0.52441406, 2.328125, 2.078125, -1.0888672, -2.1972656, 1.1074219, 0.87402344, 0.013832092, -1.6875, -2.3964844, 3.7558594, 0.84814453, 1.4404297, -2.6308594, -0.8886719, 0.5727539, 1.2265625, 0.9501953, -0.7915039, 0.7675781, 0.09661865, 0.5136719, -0.31835938, 1.5507812, 0.82910156, -0.26660156, 0.9008789, -0.82177734, -1.2783203, -0.97314453, -0.6870117, 0.118896484, 0.9238281, -0.8222656, -0.83496094, -0.42578125, -0.16064453, -1.8369141, -1.9589844, -1.0263672, -0.8017578, 1.1728516, 0.21643066, 0.9291992, -0.14123535, 2.1855469, -1.6660156, 1.9521484, -2.5996094, 1.1757812, -0.26904297, -0.1239624, 2.7226562, 0.6098633, -1.0273438, 1.4912109, 3.5703125, 1.0253906, 2.9902344, 0.08538818, 1.3056641, -2.2109375, -1.8251953, 2.6972656, 0.26391602, -1.3837891, -0.44262695, -0.7109375, 1.6298828, 2.2910156, -1.640625, 2.0664062, 0.80371094, -1.6904297, -3.234375, 1.2822266, -0.35498047, -1.7373047, -0.81640625, -3.2382812, 0.6977539, 2.0585938, 0.04373169, -0.4650879, 2.5, 0.0007753372, 1.1650391, -3.3730469, -0.45288086, 0.2770996, 1.2060547, -1.7587891, -2.8007812, 2.2070312, 0.45629883, -1.3017578, 1.9365234, -0.56884766, -2.5175781, 2.90625, 0.15942383, -1.53125, -0.9926758, -0.03781128, 0.5625, 1.4570312, -0.15234375, 1.578125, -0.06707764, -1.3935547, 1.6748047, 3.125, -1.7392578, -1.2373047, -1.8046875, 3.8222656, -0.13769531, -0.75146484, -0.43139648, -1.5195312, -1.296875, -0.5703125, 2.1171875, 4.1679688, -1.0800781, -4.2929688, 3.9941406, -1.9785156, 1.7001953, 1.6738281, -1.2392578, 0.64697266, -0.4321289, 1.0517578, 2.2480469, 2.1835938, 1.8095703, 1.6621094, 0.47485352, 1.8134766, -1.9179688, 0.6455078, 2.0761719, -0.96435547, -0.12695312, -0.8466797, 1.125, -1.6015625, -2.640625, -1.2646484, -2.3222656, 2.5371094, -2.2871094, -0.8881836, 2.0449219, -0.21069336, -1.5097656, -1.0996094, -0.17822266, -0.9506836, 0.057250977, -0.27416992, -0.7084961, -0.7949219, 0.068603516, 1.1220703, -5.9492188, -2.546875, 0.53027344, -3.6660156, -3.4824219, -0.7338867, -0.50341797, -2.4570312, 0.78271484, -3.328125, 2.046875, 0.7104492, -0.8203125, -0.8105469, -1.6318359, -0.3425293, -0.92089844, -0.93896484, 2.2265625, 2.4882812, -2.6582031, 1.3164062, -0.2861328, 3.1757812, 2.0859375, -1.3798828, 0.25390625, -0.070495605, -0.27319336, -1.4970703, 0.24768066, 0.54345703, -2.1796875, -0.62353516, -1.7226562, -2.0175781, -1.5273438, 1.3886719, 0.82958984, 1.7558594, -2.5625, -0.8847656, 0.85498047, -0.8642578, 2.875, -1.2099609, 1.4248047, -1.9189453, 0.296875, 1.3632812, -2.5136719, -2.5234375, -1.5429688, 1.3496094, 0.5239258, -1.8662109, -0.95458984, -0.6196289, 0.7753906, -1.2285156, -2.0878906, -1.0126953, -2.0527344, 2.8417969, -0.73535156, 1.6191406, 0.10064697, 0.38793945, 0.4296875, -2.0410156, -0.00041484833, -1.2724609, -2.2675781, -0.42797852, -2.5546875, 1.2871094, -0.05206299, -0.018493652, -0.80371094, 1.1630859, -0.39672852, 1.2060547, -3.0371094, 2.3378906, 0.5229492, -3.9550781, 0.15881348, 0.20166016, 0.5605469, -5.0117188, 0.83691406, 3.1757812, 1.5654297, 3.078125, 0.047546387, -0.49658203, 0.6479492, 1.2607422, 0.2626953, -0.6425781, 0.23364258, 1.5224609, -1.6855469, -2.5449219, 0.7973633, 1.6601562, -1.8505859, -0.1763916, 0.81103516, 1.3125, 3.5742188, 1.3066406, 1.6445312, 1.6308594, 0.59716797, 0.08074951, -0.015167236, 0.6064453, -2.4257812, -1.0400391, -0.62402344, -1.6191406, 4.2578125, 1.2070312, -0.6303711, 1.3642578, 1.9873047, 1.0869141, -1.7060547, -0.38671875, -0.49926758, 2.4238281, -0.0038967133, 1.7207031, -0.2541504, -0.07446289, 0.1940918, 1.1142578, -1.0732422, -2.7480469, -1.7490234, 2.5957031, 2.4609375, -1.0839844, 0.04537964, 0.8300781, 0.7919922, -0.81884766, 0.34594727, -0.97558594, -1.7626953, -1.8125, 1.7519531, -0.19006348, -2.875, 0.8046875, -0.2524414, -0.20214844, -1.3339844, 0.57470703, -2.2167969, -0.7636719, -0.13659668, 2.1523438, 0.73291016, 0.026550293, -0.52197266, -1.9306641, 2.1816406, -0.4152832, -0.3251953, 1.4101562, -2.2226562, 1.0751953, -0.16809082, 0.111816406, 0.7260742, 1.3232422, 3.6035156, 1.0439453, -2.1640625, 0.8876953, -2.6484375, -1.1572266, -0.24731445, -2.3476562, -0.89746094, 4.2304688, 1.3867188, 1.1884766, -1.2519531, 2.5957031, -1.4873047, 1.2558594, 3.9570312, -3.6953125, -1.7089844, -1.4902344, -6.2695312, 3.4570312, 1.3525391, 0.51220703, 0.5722656, 1.4052734, 0.40185547, 3.859375, -0.9482422, -2.78125, -1.1572266, -2.0195312, 1.7607422, 1.4111328, -2.2832031, 3.0175781, 1.1015625, -2.53125, -3.0722656, -0.69628906, -2.1191406, 0.984375, 1.0605469, -4.9296875, 1.7548828, -0.4675293, 0.40405273, -0.9707031, -1.9316406, 1.9570312, -0.7089844, 0.21557617, -1.5664062, 2.6113281, 1.0527344, 1.4697266, -0.2163086, 2.5449219, 2.203125, -2.4921875, 0.3293457, 1.1601562, 1.2744141, 0.2548828, -3.4238281, -1.8837891, 1.4433594, -0.73876953, -0.84814453, 0.7011719, -1.4785156, -3.6816406, 0.35058594, 0.4050293, 1.4238281, 3.0058594, 0.84814453, -1.3623047, -0.7338867, -1.5761719, -1.4951172, 0.17944336, -1.3789062, -0.23388672, -1.8300781, 0.8574219, -1.9365234, 1.1796875, -1.0673828, -4.4648438, -3.84375, 2.9375, 0.14123535, 1.1943359, 2.6054688, -0.61376953, 1.2294922, -1.6679688, -0.6430664, 0.5722656, -0.052856445, -0.67578125, 0.7861328, -0.6850586, 0.3095703, 0.95947266, -0.8256836, 1.5429688, -0.56933594, 0.20056152, -1.6953125, -1.2841797, -3.1386719, -0.3876953, 2.9355469, 0.47070312, 2.3867188, -0.52246094, 2.2773438, 1.5732422, -1.2861328, -0.58691406, 0.27319336, 2.9667969, 0.19360352, 1.5361328, 4.0273438, 3.4824219, 0.030899048, -0.4074707, 0.7680664, 0.7314453, -2.7460938, -0.12213135, 2.0429688, 0.7050781, -0.0013036728, -0.061767578, 3.34375, 1.9443359, -1.0537109, 1.6640625, 0.66259766, -1.7128906, 2.5351562, 0.21899414, -3.4335938, 0.53808594, -1.1738281, -1.2734375, 0.76708984, 0.5644531, -1.46875, -1.5878906, 3.6835938, -1.4228516, -0.43310547, 0.5029297, 0.21911621, 1.4658203, -2.6640625, -1.2285156, -0.3383789, 1.640625, 1.2412109, -1.7285156, 0.38354492, 0.35498047, 1.6611328, 0.81152344, 0.14233398, -1.109375, 1.6650391, 0.28442383, -1.1894531, -0.16601562, -2.2207031, -0.7036133, 2.1796875, 3.0957031, 0.4189453, 3.0488281, -0.05807495, 1.5576172, -1.8222656, -0.6484375, -2.1796875, 1.4736328, -0.8144531, 1.6992188, 1.6181641, -0.8725586, 1.4707031, -1.6240234, 1.4658203, -0.76416016, 3.6035156, 0.33203125, -0.08868408, -1.7128906, -0.8676758, -0.8256836, -4.1601562, -3.4550781, 1.0136719, 1.5478516, 1.0615234, 0.36547852, -0.03378296, 0.35913086, 0.34765625, -0.05114746, -2.5292969, 0.48779297, -1.6445312, 0.4296875, 2.5351562, -0.38916016, -2.125, 0.4868164, -0.37597656, -0.059295654, 1.7207031, -2.6738281, -0.7988281, 1.6650391, -1.6240234, -0.18151855, 1.9892578, -0.4177246, -0.45751953, -0.43579102, 0.2866211, -3.3222656, 0.78027344, -2.9941406, -1.9140625, 1.0664062, 0.65966797, 1.0029297, -0.008804321, -0.95458984, 1.6777344, -1.2705078, 1.0654297, -1.8564453, 0.10986328, 0.08880615, -1.9228516, -1.4033203, -2.2382812, -0.8310547, 0.79541016, 1.7900391, 0.33984375, -1.4628906, 1.0166016, -3.9433594, -1.6103516, -0.4892578, -1.0664062, 1.5859375, -1.6455078, 2.140625, 0.5385742, -0.51123047, 0.032043457, 2.4316406, -1.0869141, -1.1152344, 0.0637207, -0.4255371, 2.4160156, -0.09741211, -1.5849609, -0.18432617, 0.4111328, -0.10784912, -1.7275391, 0.75146484, -0.93408203, -0.55615234, -1.2285156, 0.042938232, -0.75146484, 1.9609375, 4.03125, -1.8691406, 0.43579102, -0.56591797, 1.5244141, 1.2265625, 1.4882812, 1.5253906, 0.7114258, 0.48999023, 3.6171875, -1.7587891, -2.5488281, 0.44750977, -2.1855469, 0.5708008, 1.1933594, -3.4824219, -0.82910156, -1.2412109, 0.06567383, 0.04232788, -1.4287109, -1.2216797, 3.1347656, 1.8671875, 0.5908203, 0.56103516, 2.4550781, 2.0214844, 1.4941406, 1.703125, 2.6738281, -0.56933594, -0.13598633, 0.13659668, 0.74853516, 1.0058594, -2.8789062, -0.29370117, -0.48535156, 0.7480469, -0.27783203, 3.2265625, 1.1601562, 1.3173828, 0.5957031, 2.5605469, 0.42529297, 2.5214844, 1.5859375, 0.19885254, -0.8964844, 2.9296875, -0.5229492, 1.6005859, 0.72998047, 0.6513672, 0.6743164, -3.4394531, 1.1220703, -2.6289062, 0.101135254, -0.89941406, -0.3791504, 0.43115234, -2.4355469, 0.34423828, 0.30664062, 3.0507812, -4.2851562, 0.4284668, -0.7763672, 1.0136719, 1.4824219, 0.55371094, 3.7636719, -1.0439453, 1.2509766, 0.8022461, 1.2900391, 2.1542969, -2.6035156, 0.59521484, -0.51708984, 0.8198242, 0.31713867, 0.68652344, 0.2705078, 0.5288086, 0.024597168, 1.6748047, 1.3828125, -1.6523438, 2.3828125, -4.4375, 2.8730469, -0.41845703, 4.4648438, -0.6508789, -1.7158203, 2.7636719, -1.0615234, -4.5351562, -3.9726562, 2.7226562, -0.13024902, 0.22961426, 0.3864746, -3.7324219, 2.0605469, 2.5957031, 1.2060547, -2.2109375, 2.2753906, -1.0507812, -1.0908203, 0.5571289, -0.10644531, 0.032714844, 1.1347656, -0.6123047, -2.6796875, -0.7426758, 2.8359375, 3.1210938, 0.14501953, 1.2138672, -0.28149414, -1.6113281, -1.0615234, 1.3964844, -0.6796875, -0.12768555, -0.18786621, 1.6894531, 1.6660156, 2.3632812, 0.68847656, -2.7363281, -1.34375, -0.25610352, -1.2148438, 0.5991211, -1.5, -2.9746094, -0.3491211, 1.3994141, -1.0947266, -1.8427734, 1.2851562, 1.6845703, 0.8808594, -1.5566406, -0.48876953, -1.5722656, 3.1738281, -1.0341797, -2.5273438, -0.7285156, -2.0371094, -0.46289062, 0.52197266, -1.4111328, 2.8808594, -0.33007812, 2.5410156, -1.4736328, -0.12939453, 1.1474609, 0.03326416, 0.046936035, 2.1074219, -0.24914551, -2.1894531, 1.0478516, -1.9345703, 0.31420898, 2.9628906, -0.9121094, 1.4169922, -2.6542969, -0.84277344, -0.9736328, -1.3017578, -3.0449219, 0.08312988, 2.3691406, -0.5053711, 1.0195312, -2.2128906, -2.3847656, -0.31079102, -1.0634766, 2.2363281, 0.8227539, -1.4599609, 1.3710938, -2.1191406, 4.1875, -0.8520508, -1.3095703, -1.6220703, -1.5244141, -0.1842041, -0.14916992, 1.2099609, 0.55810547, 1.9287109, 1.4277344, 2.1425781, 2.2070312, -1.3398438, 2.0507812, 3.3417969, 1.1171875, -2.125, 0.953125, -2.3027344, 0.88916016, 0.2397461, -1.1982422, 0.7988281, -0.06677246, 1.2119141, -0.7734375, -0.93115234]}, "B09B48Y5JB": {"id": "B09B48Y5JB", "original": "Brand: H0MEpartss\nName: H0MEpartss 200lb / 420lb Propane Tank Lid 16\" Diameter Cover Top Above Ground Black Plastic\nDescription: Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~\"\nFeatures: \u2705 Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid\"\n\u2705 We have only quality products.\n\u2705 High quality- save your time and your money.\n\u2705 Ensure long-lasting and effective performance.\n", "embedding": [-0.6357422, 1.2695312, 2.03125, -1.2753906, -0.7080078, -1.0800781, -1.7880859, -1.90625, 1.1796875, 1.0429688, -0.39672852, 0.5654297, 1.6308594, -3.0507812, 1.2431641, -1.0458984, -0.06762695, 1.1962891, 3.2753906, -0.27294922, 3.2207031, -0.22399902, -0.7470703, -0.50097656, 1.4980469, 0.88427734, 4.1914062, -2.2792969, -2.234375, 0.9013672, 0.63720703, 0.7739258, -1.0019531, 3.2734375, 0.9892578, -1.1103516, -0.28759766, -0.9580078, -4.796875, -0.24975586, -3.421875, 0.010414124, 3.4511719, 0.56884766, -1.0703125, -0.7841797, -0.63134766, -2.1445312, -0.5048828, -0.5097656, 0.69433594, 0.88427734, -1.1074219, 0.23950195, 0.6611328, 1.3857422, 0.15698242, -2.0214844, 0.2980957, 1.4736328, 0.091796875, -0.6455078, -1.8740234, 1.2011719, -0.5683594, 1.8027344, -1.3066406, -0.5180664, 0.39868164, 2.8300781, 0.05319214, 0.1784668, 0.82470703, -2.0507812, 1.1357422, -1.9023438, -2.7070312, 1.5859375, 0.87060547, -0.5332031, 0.7104492, 3.3945312, -0.1427002, -1.4150391, -1.2255859, -2.6132812, -0.23571777, 0.1685791, -1.0371094, -0.1015625, -0.46313477, 2.4726562, -2.3261719, -4.0195312, -0.28100586, -0.7470703, 1.4003906, 2.0058594, 3.2988281, 0.9536133, 0.65234375, -0.14538574, -0.05050659, 0.075927734, -1.9384766, -1.4648438, -0.37963867, 0.37963867, 0.08660889, 0.3630371, -0.12219238, -1.1630859, 1.9492188, -1.9931641, 0.6879883, 0.5517578, 1.1191406, -0.8046875, 1.6689453, 2.2011719, 4.078125, -1.7714844, -0.53027344, -0.45385742, 0.7475586, 0.8154297, 0.7192383, -0.22070312, 1.4052734, -0.26220703, 1.9296875, -0.36889648, 2.3554688, -1.5947266, -0.58447266, -0.15637207, -2.0019531, -1.5351562, -1.1328125, -0.6459961, -3.0507812, 0.28930664, 0.79833984, -0.6044922, -1.0537109, -0.05609131, -2.3769531, 0.9511719, 0.057556152, -1.2910156, 0.68359375, -2.6699219, -0.17529297, 0.3569336, 1.7958984, 0.6772461, 1.3613281, -1.1328125, 1.2880859, 3.7265625, 1.8417969, -0.6323242, 0.030822754, 0.78515625, 0.93408203, -1.6240234, 2.6074219, -2.0234375, -2.6816406, 0.86621094, 1.7324219, -0.4831543, 0.50146484, 1.6455078, -0.124694824, -2.3964844, 2.4785156, 1.3994141, -0.6899414, 0.36865234, -5.0703125, -1.2978516, -0.07293701, -0.2824707, 1.1386719, -0.6875, -3.7792969, -3.3339844, 0.035003662, -0.33764648, -1.7236328, 0.5463867, 0.6328125, -1.5615234, 0.048095703, -3.5214844, -1.8085938, -2.6308594, 1.1474609, 0.90527344, -0.5527344, 0.86279297, -0.8105469, -0.84814453, -1.5546875, 1.0253906, 0.54833984, -1.2119141, -0.44555664, 0.1619873, 0.43432617, -0.23278809, 1.9091797, -0.47314453, -0.19299316, -2.5976562, 2.5175781, 2.3027344, 1.3095703, -0.023773193, 1.3242188, -0.44799805, 0.13378906, 2.2011719, 0.76123047, 0.17382812, 1.0322266, -0.05230713, -2.6484375, -0.06573486, 2.2617188, 2.0546875, 0.016921997, 2.1660156, -1.046875, 1.9941406, 0.2590332, -0.92871094, 0.07348633, 1.2753906, 2.5878906, -0.35058594, -1.9238281, -0.49902344, -0.54833984, 3.1757812, -0.44262695, 0.13110352, 0.8359375, -1.2011719, 0.15344238, -0.81640625, 0.35180664, -0.17028809, 0.49536133, 1.5634766, 1.046875, 0.35546875, 0.49438477, -3.4101562, -0.18017578, -0.7504883, 1.9755859, 1.3339844, 0.007904053, 0.22460938, 1.9404297, 0.5883789, -1.2021484, -0.9355469, -0.5761719, 1.2685547, 1.6992188, -1.2119141, 2.1601562, 2.0273438, -0.93310547, 2.1035156, -0.7788086, 1.1376953, 0.95654297, -0.69970703, 0.93408203, -3.7714844, 2.0097656, 0.7236328, 0.46606445, 0.3449707, -3.3320312, 1.0644531, 2.9511719, -1.1376953, -1.46875, 2.6660156, 1.7675781, 0.11968994, 0.8388672, -1.2255859, -0.7241211, 0.4477539, -1.9619141, -0.19799805, -0.1427002, 2.0859375, 2.0546875, -0.6772461, -1.8408203, -0.828125, -0.78564453, 1.0458984, 0.06298828, -0.19152832, -0.9536133, -0.18774414, -0.33984375, 0.10229492, 3.3027344, -1.3525391, 0.21606445, 0.72998047, 0.42089844, -0.5527344, -0.25390625, -0.234375, 0.14953613, 1.2373047, -1.1455078, 0.47045898, -0.07550049, 0.4111328, 0.78027344, -2.2949219, -0.21875, -0.7783203, 0.4387207, 0.8432617, -2.1054688, -0.6254883, 1.6572266, -1.3925781, 1.3476562, -0.82910156, -1.4199219, 3.3828125, 0.22436523, -1.0478516, 0.18798828, -0.37768555, 0.7817383, -3.0742188, -0.5605469, 3.1152344, -1.3144531, -4.3046875, 1.3525391, -0.7260742, 0.38623047, 0.97998047, -0.8203125, 0.8588867, 0.5498047, 0.06561279, 1.5341797, -1.5546875, -1.7275391, 0.3359375, 1.8867188, -4.9648438, 0.04623413, -3.2851562, -1.1953125, -1.2431641, -1.4394531, -1.9277344, -1.4716797, -0.33740234, -0.7861328, 2.5253906, -0.39404297, 1.0517578, 0.26000977, 0.9902344, 0.30737305, -2.5273438, -2.2558594, -0.49951172, 0.34985352, -0.6123047, -1.4619141, -5.6289062, 0.23937988, -1.96875, 0.15527344, 2.1386719, -2.3300781, -1.5039062, -0.37036133, 0.45410156, -2.0292969, -0.29467773, 0.38867188, 0.5385742, -0.5883789, -0.56103516, -0.9477539, -1.5859375, -1.1669922, -2.578125, 1.4072266, -1.5419922, -0.30493164, 0.19494629, 0.79589844, 2.7675781, -0.54785156, -3.7460938, 1.5078125, 2.7089844, -0.012329102, 1.1933594, -2.2734375, -1.8701172, -2.0878906, -0.5258789, 2.5292969, 1.7958984, 1.4980469, 1.7109375, -0.5991211, -0.06829834, 0.026748657, 1.4726562, 0.9301758, 1.7431641, 3.4765625, -2.9628906, 0.23242188, -1.4238281, 2.5683594, -2.4570312, -1.1025391, 1.7568359, 0.9370117, 2.8164062, 0.105529785, -1.7128906, -0.3696289, 1.2041016, 1.7382812, 0.62890625, 2.6464844, 2.21875, -0.7817383, 3.3515625, 0.98339844, 1.7363281, 3.3242188, 0.0049438477, -0.05429077, 1.7841797, 0.0071868896, -0.74560547, 0.08355713, 0.8769531, -0.5332031, 0.4177246, 1.4814453, -1.6855469, 1.9794922, 0.39086914, -0.8149414, 0.20690918, -1.9345703, 0.5727539, 0.8413086, 1.7148438, -0.11816406, 0.6357422, -0.13830566, -0.953125, -1.4277344, 2.5664062, 0.9897461, 0.18286133, 1.2871094, -2.5449219, 1.1396484, -1.7089844, 4.1914062, 0.8027344, 1.0712891, 0.90771484, 1.9433594, -1.4326172, -3.2636719, -0.5239258, -0.2644043, -1.1826172, 2.8125, 0.54833984, -1.9980469, 0.22070312, -2.0605469, 2.7734375, 0.7504883, -0.50146484, -1.1005859, -0.8496094, 0.9404297, -0.3684082, 0.8696289, 1.8085938, 0.92041016, -2.6855469, -2.4882812, -0.021087646, 1.5791016, 1.3447266, -1.3017578, -0.7949219, 1.4082031, -2.1132812, 3.7519531, 0.86572266, 2.8398438, -0.11279297, 1.7099609, 2.2285156, 0.09680176, 1.53125, 0.10235596, -4.2773438, -0.78564453, -0.7470703, -0.3713379, 3.1464844, 0.1776123, 0.2734375, 0.78515625, 0.9453125, -3.4707031, -0.4638672, -1.4775391, 1.6396484, -1.3300781, -2.3730469, 0.8588867, 0.30249023, -3.5644531, -2.5820312, 0.37939453, -1.5244141, -0.7373047, -1.7158203, -3.109375, 1.5976562, 1.6113281, 0.39111328, -1.0673828, -0.24743652, 1.5810547, -1.0009766, -1.4824219, -1.2832031, 3.2910156, -0.25341797, -1.0556641, 0.72021484, 1.7089844, 1.9013672, 0.27270508, 1.1181641, -0.62402344, 1.7919922, 0.38110352, -2.4609375, 0.006275177, -0.5336914, 2.1191406, -0.6586914, -0.032226562, 0.5004883, 0.34399414, -0.31201172, 1.7490234, 0.6230469, -0.10723877, 0.29418945, 0.6425781, 3.171875, 1.8867188, 0.12573242, -0.18286133, -0.18652344, 0.8881836, -0.8852539, 0.23132324, -2.7050781, 0.23852539, 0.7290039, 0.41796875, -2.4257812, -0.7241211, 0.9814453, 2.1347656, -0.46923828, -2.4882812, -1.2548828, 0.22851562, 2.4179688, 1.9677734, -1.0185547, -1.0507812, -0.56347656, 0.83691406, 0.70947266, -1.8486328, -0.32592773, -0.76220703, -0.8388672, 1.2460938, 0.6142578, 1.9404297, -1.5302734, 1.4326172, -1.3173828, -2.2304688, 3.2851562, -3.4960938, 1.8710938, -1.2773438, -0.8334961, -2.65625, 3.4824219, 1.9521484, -0.32226562, 0.5395508, -1.4296875, 0.60839844, 0.24047852, 0.17321777, 0.54833984, 1.2167969, -2.0703125, -0.9140625, -0.25024414, 2.6796875, -1.0517578, 1.1269531, 0.99316406, 2.4863281, 1.5849609, 1.40625, 1.9492188, -2.3867188, 1.5917969, 1.3476562, -1.203125, -0.48339844, 0.5341797, 2.0292969, 3.9707031, -1.4189453, -4.578125, 0.26342773, 0.82958984, -0.7338867, 1.2841797, 0.85839844, -2.7011719, -0.72265625, -2.4960938, -1.2832031, 0.15771484, -1.3222656, -0.71484375, -1.25, 0.2993164, 1.1035156, 0.9370117, 1.8857422, -0.31201172, -1.2539062, -0.020980835, 2.0878906, -1.1289062, -2.5839844, -0.09692383, -1.8837891, 1.5019531, 0.117126465, -1.4814453, -0.9863281, 1.7060547, 3.7011719, -2.8007812, 0.13256836, -0.48168945, 0.34423828, -2.3339844, 0.24902344, 2.6035156, -1.953125, -2.9472656, -0.49316406, 0.18164062, -2.3925781, 2.9707031, 2.125, -0.15930176, 0.7529297, 0.5385742, -3.4492188, -3.9160156, -0.5151367, 0.051605225, 0.67041016, 0.6875, -0.31445312, -0.12902832, -0.92529297, -1.6835938, -0.7519531, -1.2148438, 1.015625, 0.87060547, -1.7275391, 2.40625, -0.04949951, -0.79541016, 0.5800781, -1.1738281, -1.1767578, -2.7148438, -2.8984375, -3.9082031, -0.22961426, 0.113342285, 0.18933105, -1.4755859, -1.9121094, 2.9023438, 0.18395996, 0.8774414, -3.0488281, 1.4521484, -1.5742188, 0.2319336, 1.4423828, -1.7148438, 0.7504883, 1.4804688, 1.2363281, 1.6113281, 1.0566406, 2.4882812, -2.0292969, -0.5385742, 0.45507812, -0.0063285828, 0.7324219, 0.49853516, 2.9316406, 0.33496094, 0.61572266, 2.3105469, 1.8271484, 0.8178711, -1.5742188, -0.10461426, 0.3503418, -2.2773438, -2.1992188, -0.49365234, 0.49438477, 1.5039062, -0.11102295, 0.37939453, 2.1308594, 0.013114929, -1.5380859, 1.8671875, -2.1484375, 1.1904297, 2.3398438, -1.84375, -2.7011719, -1.6113281, 2.3261719, 1.6435547, -1.4130859, 0.6870117, -1.0751953, -1.2548828, 2.2402344, 0.36376953, 0.69189453, 0.0077323914, -0.17456055, -2.2949219, -0.4309082, 3.9707031, -0.91796875, 1.2021484, 0.064697266, -1.4404297, -1.2148438, 0.04324341, 1.2099609, -1.1552734, -0.33984375, -0.22851562, -0.9296875, -1.109375, -0.5073242, 0.015060425, -2.8320312, -0.117492676, -0.59277344, -1.0048828, -4.0859375, 1.7275391, -0.74316406, 0.00919342, -0.10015869, 0.4362793, -0.9536133, 0.60498047, 0.28173828, 0.07043457, 0.48461914, -0.9824219, -0.57470703, -0.1586914, 0.23461914, -2.8242188, 1.4189453, -0.91015625, 0.5209961, -2.7382812, 0.4790039, -1.9667969, 1.7236328, 2.0957031, 2.8828125, 2.1621094, -0.6538086, 1.5332031, 0.5761719, 2.4785156, 2.6308594, -0.890625, 0.27490234, 1.3496094, -0.37939453, 0.8129883, -0.3947754, -0.49536133, -0.6152344, -1.46875, -0.7524414, 0.8310547, 2.7636719, -1.7636719, 0.20043945, -1.8876953, 0.4855957, 1.0371094, 0.56347656, -2.0957031, -1.6699219, 0.83251953, -2.5429688, 2.1796875, 0.24780273, 0.48168945, 1.0839844, -1.1513672, 1.2783203, 0.6665039, -0.46606445, -2.8632812, -2.6328125, -0.35375977, 2.0742188, 2.3125, 1.84375, -0.24499512, -1.6640625, -0.7895508, 0.8432617, -0.34326172, -1.2714844, 1.5654297, -0.23266602, 2.3105469, 1.7119141, -0.8334961, 1.6425781, 0.034851074, -0.9550781, -2.2460938, 0.13598633, 1.578125, 1.8925781, 0.52246094, -3.8261719, -0.18933105, -0.85058594, -0.3293457, -2.6855469, -1.2617188, -2.1289062, -0.45361328, -0.27490234, 0.99121094, -1.3769531, 1.9101562, 0.5517578, 0.8808594, 0.6821289, 0.52685547, 1.0654297, -0.35375977, 1.3535156, 1.7617188, 1.8574219, 1.2412109, 1.4521484, 0.4831543, -0.36547852, 0.035308838, 2.6484375, 1.2080078, 1.4599609, 1.8007812, -3.1835938, 2.5234375, 0.0082092285, 1.0546875, 1.1328125, -1.2578125, 1.6367188, -0.93408203, 0.078430176, 0.70996094, -0.18273926, 0.46899414, 3.0878906, -1.7148438, -0.9692383, 1.3671875, -0.6640625, 1.1855469, -0.4140625, -1.2822266, 1.3886719, -0.4658203, 1.2158203, -3.7109375, 2.6816406, -0.09375, 1.6533203, -0.5488281, -1.0615234, -0.9472656, -0.20617676, -0.5317383, -1.1132812, 0.6772461, -0.06323242, -0.49731445, -0.013580322, 1.4521484, 0.5776367, -0.8520508, 0.085510254, -0.4326172, -1.3164062, -0.5004883, 0.77246094, 1.4746094, -1.1025391, 1.1679688, 2.5019531, -0.45581055, -0.18688965, -0.18493652, -3.2363281, -1.1318359, -2.7480469, 0.9770508, 0.3334961, -0.22692871, 0.43066406, 1.5478516, 2.3457031, -0.7446289, -0.75390625, -0.42822266, 1.9130859, 3.1621094, -1.9824219, 0.5078125, 0.35302734, -1.0253906, 1.2587891, 3.65625, 1.8046875, 0.009109497, -0.12597656, 5.1679688, -1.4882812, -2.2871094, -0.8334961, -0.30200195, -1.8613281, 0.17944336, 0.69140625, 2.8339844, -1.3554688, -1.9746094, -0.6953125, 0.5473633]}, "B0783GVCFV": {"id": "B0783GVCFV", "original": "Brand: Weber\nName: Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches\nBoasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system\nPorcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D\n529 Square inches of cooking space over three burners\n", "embedding": [-1.9462891, 0.2866211, 1.8671875, -0.6196289, -0.32177734, 1.0791016, 0.74853516, -1.6259766, 1.2597656, 1.1181641, 2.6894531, 0.89160156, 0.35131836, -3.59375, 0.074523926, 0.703125, 2.3789062, 1.0117188, -0.32080078, 1.1982422, 0.7133789, -0.056488037, 3.0019531, -2.3496094, 1.0625, 0.5878906, 3.2949219, -4.5585938, -1.0996094, -3.2617188, 1.0371094, 0.359375, 0.13476562, 2.0332031, -4.5664062, -1.3671875, -3, 1.6494141, -1.9375, 0.6621094, 0.41186523, -1.8613281, 0.64160156, -1.4179688, -1.65625, 1.4082031, 1.0878906, 1.0546875, -2.3828125, -0.028366089, 3.0722656, 1.8056641, -0.4794922, 0.5024414, -1.3085938, 1.7763672, 1.3095703, -1.7832031, 1.6445312, 0.31225586, 2.8984375, 0.1821289, -1.9033203, -2.1757812, -1.2353516, 0.17224121, 1.0429688, 0.7319336, -1.1640625, -0.020584106, 3.4589844, -0.2998047, -1.7724609, 2.8789062, 0.078186035, -1.7636719, -3.0527344, 2.875, 0.37524414, -1.0976562, -1.5117188, 2.5703125, 2.3203125, -1.3417969, 0.8300781, 0.63720703, -0.19384766, -2.328125, 1.4541016, 1.0048828, -0.3696289, 1.1640625, -1.9375, -3.3828125, 2.2832031, -0.15979004, 1.3076172, 1.2275391, -1.0625, 1.4599609, -1.0097656, 1.9248047, -0.5366211, -0.80859375, -2.3535156, -1.2919922, 1.3984375, 0.9658203, -2.0957031, -0.21643066, -0.88378906, -0.6669922, 0.81396484, 1.5292969, 1.1298828, 1.7851562, 1.3232422, 1.9160156, 0.9379883, 0.6323242, 3.3203125, -0.78027344, 0.2322998, 0.48339844, -1.2275391, -1.2460938, -0.47485352, 1.1113281, 2.6855469, -2.9433594, -0.6621094, -0.21789551, 2.8339844, 1.0917969, -1.390625, -1.9316406, -0.6381836, -1.4121094, -2.9179688, 0.17297363, -1.3271484, -0.055725098, 1.6816406, -2.1679688, -2.7597656, 1.0283203, -0.35327148, -0.002746582, 0.44360352, -1.1660156, -0.75927734, -0.78808594, -1.2753906, -3.0429688, 2.0332031, -0.26464844, 0.3720703, -0.22070312, 3.203125, 2.5195312, 1.8554688, -1.3046875, -2.7675781, -1.1806641, 0.22424316, -0.43725586, 1.2695312, 1.1708984, -0.4946289, 1.6494141, 0.22509766, -0.44921875, -0.7495117, 0.17211914, 1.4492188, -1.6660156, -0.484375, 0.9560547, -0.027908325, -0.83935547, -0.43920898, -1.1787109, 0.29638672, -1.5224609, -0.77197266, -0.55908203, 0.3857422, 0.80029297, 1.6308594, -1.4501953, 0.71875, -1.1796875, 1.3632812, 0.11767578, 1.4814453, -1.1572266, -2.1699219, -1.5361328, 2.0898438, 0.09649658, -1.5986328, -0.4489746, 1.078125, 1.3486328, -1.3398438, -2.8125, -0.5395508, -2.7539062, 0.40014648, 2.0917969, 1.5917969, -1.1171875, 0.81640625, -0.6352539, 1.8359375, -0.8955078, 2.1699219, 0.81103516, 0.55908203, 2.6464844, 0.36254883, -0.35205078, 1.2041016, 2.6386719, 0.8076172, 0.625, 0.3232422, 0.49658203, -2.3925781, -1.4013672, 3.5878906, -0.57910156, -0.33984375, 1.1376953, 0.8461914, 3.6757812, 0.8173828, -1.1396484, -0.048950195, 1.5556641, 0.20593262, -0.17626953, -3.8535156, -0.2614746, -1.1298828, -0.78271484, -1.3388672, 2.5390625, 1.9443359, 1.2470703, 1.2851562, -0.22961426, 1.3037109, 1.7792969, -0.8798828, 0.69433594, -1.1240234, 2.5800781, 0.5053711, -0.8598633, 0.9057617, 0.7285156, 0.13391113, 1.0009766, 0.73535156, -1.2285156, 1.0595703, 2.1289062, -0.73876953, -1.8037109, 0.15771484, -0.35791016, 0.6118164, -1.3994141, 2.7617188, 0.74853516, -1.0058594, 2.9921875, 0.6777344, 1.1455078, 1.2167969, -1.640625, 1.40625, -3.6074219, -0.6352539, 1.2792969, 1.0693359, -1.7929688, -1.1806641, -0.22509766, 4.5703125, -1.7138672, -1.8125, 2.9726562, -1.6982422, 0.43237305, 2.7402344, 1.0673828, -1.2167969, 1.6298828, 2.8496094, 1.2919922, 1.0273438, 2.0761719, 0.6923828, -1.0029297, 1.1933594, -2.78125, 0.21691895, -0.036743164, -0.1920166, -0.9296875, -0.5307617, 0.8100586, -3.0605469, -1.3339844, 1.90625, -2.1074219, 0.014015198, -0.4165039, 1.5068359, -0.07678223, -0.83691406, 0.33544922, -1.3623047, -0.4338379, -1.6738281, 1.0859375, -0.18530273, -1.0820312, -0.6748047, 0.33496094, -0.5229492, -3.1210938, -2.1328125, -0.9868164, -1.2255859, -2.7773438, 1.5332031, -1.5390625, -0.9692383, 1.4199219, -1.9179688, -0.8173828, 0.045715332, -1.6962891, -0.62890625, 0.17333984, -0.84033203, 0.021560669, 0.828125, 1.2148438, -1.8974609, -2.1113281, -1.2070312, 0.22363281, 1.5185547, 0.8623047, -1.3691406, -0.06719971, 0.7006836, 1.1005859, -0.7685547, 0.88964844, 1.9355469, -0.9770508, 0.1706543, -3.671875, -1.2070312, -2.3710938, 1.5605469, 0.6538086, 1.4355469, -3.1875, -1.7197266, -1.5039062, -0.5834961, 4.4492188, -0.62109375, 1.8837891, -0.1274414, 0.38134766, 0.66748047, -3.0742188, -1.5146484, 0.17602539, 0.63916016, -1.984375, -0.5058594, -1.140625, -0.3022461, -1.9951172, -0.15759277, 0.07196045, -0.81152344, -0.53125, 0.067871094, -2.6015625, -1.1582031, -1.0107422, 0.55078125, 0.0038375854, -0.90771484, -1.9335938, -1.8212891, -1.5263672, -0.8828125, -2.21875, 0.47827148, -0.17248535, 1.8583984, 1.640625, -0.09692383, 1.0820312, -0.49121094, -3.0917969, 1.8369141, 0.16430664, -3.6816406, 1.2070312, -2.2050781, -0.6899414, -2.6386719, -0.021514893, 1.8691406, 1.8105469, 0.92626953, 1.0625, 1.2939453, -0.02722168, -0.8701172, 0.80029297, -1.5791016, 0.9111328, 3.484375, -2.1933594, -0.17199707, 0.9243164, -0.42456055, -3.0878906, -1.0585938, 2.6386719, 2.2128906, 1.6855469, 0.45043945, 1.8652344, -0.3383789, -1.4228516, 0.7089844, -0.11193848, -1.3574219, -0.020996094, -0.33276367, 1.2919922, -1.3291016, 2.0175781, 0.90283203, 1.5009766, 2.9277344, 0.2788086, -0.46899414, -0.32250977, -0.115478516, -0.31445312, 1.6425781, -0.61572266, 1.8974609, 0.3251953, 0.018966675, -0.70654297, -0.6464844, -0.15246582, -0.6459961, -3.2304688, 2.4960938, 0.08135986, -0.77197266, -0.19018555, 0.49804688, 1.8574219, -0.18737793, -0.07104492, -1.328125, -0.105041504, 2.2597656, -1.4746094, -0.35083008, -2.3203125, 0.5571289, -0.6503906, -1.9951172, 0.59716797, 3.6894531, -2.1152344, -1.2021484, 1.4414062, -1.1845703, -0.28710938, 2.1289062, -0.35766602, 0.33569336, 0.99658203, -2.2441406, 1.0712891, 0.9423828, 0.7919922, -1.4560547, -0.082214355, 0.88720703, -0.6381836, 0.50878906, 2.1132812, -0.7294922, -2.8320312, 0.8046875, -3.1796875, -1.3662109, 0.87353516, -2.1992188, -1.0947266, 2.9726562, 1.1748047, 0.4321289, -0.15258789, 3.7089844, -1.2802734, 0.7446289, 2.7265625, -3.2148438, 1.2275391, -4.203125, -3.515625, 1.0244141, -1.8359375, 0.41015625, 0.796875, 0.22241211, 0.099243164, 4.0546875, 0.8417969, -2.1835938, -1.6777344, -0.26538086, -0.17260742, -0.9785156, -0.4716797, -0.33496094, -1.2685547, -2.2480469, -3.2246094, -0.84375, 1.0986328, 1.9462891, 1.796875, -4.0351562, -0.90771484, -1.4775391, -1.8105469, -1.8671875, -0.6074219, 1.9501953, -0.7348633, 0.6508789, -3.4804688, 0.86816406, 1.8486328, -0.8383789, 2.4882812, 2.8710938, 0.45385742, -1.90625, 3.3476562, -0.16503906, 3.5664062, -0.67285156, -2.8417969, -1.6806641, 0.60302734, 0.6645508, -1.9316406, 0.2927246, 1.0644531, -1.2958984, 1.6328125, 1.2363281, 1.4775391, 0.10235596, 0.5107422, -3.3203125, -0.38232422, -0.57421875, -0.15026855, -1.9267578, -1.0585938, 1.2470703, -0.9638672, 0.5463867, -2.609375, 1.0654297, -1.2763672, 0.04107666, -2.9277344, 2.5507812, 2.921875, 3.1875, 2.6582031, -1.4423828, 0.62158203, -0.62841797, -0.22766113, -1.953125, 2.0410156, -1.0263672, -0.52978516, 3.2753906, 1.0009766, -0.875, -0.014099121, 0.5625, -2.578125, -1.5761719, -1.9541016, -1.1386719, -1.7236328, -0.99316406, 1.5605469, -0.36401367, 3.2167969, -0.80859375, -1.7392578, 0.03125, 1.2490234, -1.1259766, -0.21044922, 0.46533203, 0.29052734, -0.2154541, 2.0253906, 1.8798828, 0.68847656, 0.91845703, -1.0429688, 1.5771484, 0.14978027, 1.4384766, 2.1992188, -0.9135742, -0.5292969, -0.7602539, 1.3359375, 2.7910156, 1.6328125, 3.4921875, -0.019897461, -2.9628906, 1.7148438, 0.90234375, -3.9355469, 1.3037109, 1.6347656, 0.8310547, 1.203125, 1.1386719, -4.5898438, -0.5205078, 1.5605469, -0.9707031, 1.140625, -1.2626953, -0.00623703, 2.4667969, -0.47851562, -0.15783691, -0.43945312, -1.4423828, 1.7763672, 1.9501953, 0.73779297, -1.7392578, 1.2636719, 2.4589844, -0.3852539, -1.9755859, 1.7675781, -0.81347656, 0.71728516, -2.328125, 0.5097656, -0.16149902, 0.32910156, 2.8242188, 1.2626953, 1.9814453, 0.32910156, 2, -2.6425781, -0.19067383, -2.2148438, 2.6328125, -1.1152344, -0.5566406, 0.81347656, -2.1875, 1.0693359, -2.8261719, -2.2011719, -0.15270996, 2.1191406, 1.21875, 0.37890625, -2.0058594, 0.17041016, -0.96777344, -2.5917969, -0.5332031, 0.32495117, 0.47851562, 0.46899414, 1.6591797, -2.1230469, 0.84716797, 0.016586304, 0.6484375, -1.5556641, -0.24047852, -1.1425781, -0.60302734, -0.7158203, 0.09631348, -1.3388672, -1.0917969, 1.1875, 1.171875, 1.2041016, -2.1933594, -1.3486328, 1.1181641, -1.078125, 0.21240234, 2.2207031, 1.5732422, -0.3322754, 1.5898438, 1.2060547, -1.6552734, 1.7822266, -3.5859375, -1.5654297, 1.9335938, -1.7958984, 2.6132812, -1.5410156, -0.5102539, -0.08917236, 0.014465332, 1.2744141, 1.2529297, -0.99853516, -1.4199219, 0.17675781, -1.1513672, -2.3613281, 0.24560547, -0.3317871, 1.4970703, 0.41015625, -1.6171875, -0.45263672, 0.08496094, -1.4423828, 1.1953125, -2.4628906, -1.7617188, -0.062927246, 1.3837891, 0.5029297, 0.19897461, -0.81689453, 3.1074219, -0.8774414, -1.5400391, 0.7788086, -0.95458984, 3.8964844, 3.0136719, -0.21972656, -1.3974609, -2.0195312, 0.46801758, 1.6494141, 0.86816406, -1.1875, 0.42822266, -0.796875, -0.5083008, -0.1685791, 1.1787109, 1.7539062, 0.30371094, -0.027816772, 1.5869141, 2.7558594, -1.0722656, 0.7026367, 1.1865234, 0.98046875, -0.3852539, 4.9375, 2.0273438, -2.46875, 0.24682617, -1.9023438, 2.171875, 0.13244629, -0.65722656, -0.3112793, -0.7895508, -1.5556641, -2.5820312, -1.9960938, -2.984375, 1.4755859, 0.3330078, -2.0527344, -1.8837891, 0.5595703, -0.24060059, 4.125, -0.13110352, 1.5722656, -1.6044922, -0.35058594, -1.1328125, 0.20739746, 0.8823242, -2.9433594, 0.9980469, 1.8046875, -1.4375, -1.4394531, 0.8535156, 1.4746094, 3.875, -0.33544922, 2.4804688, 3.3574219, 1.9775391, 1.8291016, 1.0878906, 1.9609375, 0.80615234, -1.3378906, 0.09039307, 1.0664062, -0.12658691, 0.7480469, -0.64990234, 2.2714844, -1.1904297, -0.28930664, -1.1269531, -0.3149414, 1.5429688, -2.6113281, 1.2792969, 1.3564453, 3.2011719, -1.5693359, -1.0927734, -0.8623047, -0.5126953, 0.92578125, -1.1357422, 1.4140625, 0.47729492, -0.6298828, -1.484375, -0.14196777, 1.6416016, -4.34375, 1.4541016, 0.08135986, -1.5244141, -1.3525391, -0.036193848, 2.0332031, 0.8203125, 0.08001709, 0.7949219, 4, 0.27783203, 2.171875, -2.7832031, -1.0332031, -0.09442139, 3.2226562, 0.18554688, -1.3378906, -0.088378906, -2.1933594, -4.140625, -3.4492188, 3.5820312, 1.6376953, 0.8691406, 2.1796875, -0.42993164, 3.0820312, 0.8623047, 0.97314453, -1.59375, -1.5146484, -0.76464844, -2.7324219, -0.05569458, 0.26000977, -1.0429688, 0.28710938, 0.88183594, 0.40942383, 1.6386719, 1.8085938, 1.6630859, 0.20690918, 0.59472656, 1.9482422, -0.33984375, -0.8491211, 0.68066406, -0.20300293, -2.3496094, -1.7705078, 1.9228516, 1.6679688, 0.54589844, -0.57714844, -0.8598633, -1.0712891, -1.7509766, -0.13500977, 0.3251953, -1.4667969, -0.86035156, 0.28979492, 1.3671875, -2.9648438, -1.2802734, 2.5507812, 1.4541016, -0.53125, 2.1074219, 2.8964844, -1.3417969, -0.14196777, 1.3369141, 0.9707031, 0.39672852, -0.45410156, 0.41479492, 0.26220703, -1.1005859, 2.0722656, 1.7255859, 1.0996094, -0.1439209, -0.25512695, -0.41308594, -0.7294922, 0.101501465, 1.6601562, -0.051513672, -1.7675781, 2.265625, -0.28344727, -2.4082031, 2.0566406, -0.29467773, 1.0800781, -1.0869141, -2.8398438, -1.2822266, -0.58740234, -1.7294922, 0.9584961, 3.7832031, 0.9135742, 0.5449219, -2.7304688, -2.5429688, -1.5361328, -2.2597656, 1.6992188, -1.5390625, -1.4882812, -0.7729492, -0.059936523, 3.0273438, -0.1472168, -0.03488159, -0.62646484, -1.3759766, 1.1806641, -0.49975586, 1.8193359, -0.11352539, -0.43041992, 1.484375, 1.40625, 3.0878906, 1.6513672, 0.22729492, 2.1542969, -0.72802734, -2.8710938, -0.6123047, -0.029342651, 0.086120605, 0.1776123, -1.0371094, 1.2480469, 0.08496094, -1.4121094, -0.025009155, -2.8886719]}, "B088YRD1WT": {"id": "B088YRD1WT", "original": "Brand: LETION\nName: Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ\nDescription:
          Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

          With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

          Technical Details:
          Premium Material: Solid iron support + Chrome plated BBQ wire mesh
          Unfolded Product Dimensions :14.96''x10.62''x7.87''
          Folded Product Dimensions : 13.77''x9.4''x2.36''
          Product weight: 3.53 lb
          Color: Black\nFeatures: \u25baThe barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.\n", "embedding": [-2.4453125, 2.6367188, 2.0429688, -0.4958496, -1.2441406, -1.5419922, 0.9355469, -1.5302734, -2.1914062, 1.9335938, 0.013183594, -2.3984375, -0.5019531, -3.0351562, 0.7138672, 0.6953125, 2.3945312, 1.0146484, 2.375, 1.1708984, -0.14855957, -0.9458008, 0.37719727, 0.74072266, 2.2890625, -0.96972656, 3.4023438, -2.4179688, 0.9038086, -3.7617188, 2.8476562, 1.0664062, 1.6679688, 1.9863281, -1.9863281, -0.91552734, -2.1796875, 2.0117188, -1.0908203, 1.1640625, 1.2529297, -2.3886719, 2.7578125, 0.5830078, -3.203125, 0.6904297, -0.77978516, 1.1591797, 0.21069336, -2.4023438, 3.0058594, 1.6572266, 1.8847656, 0.40527344, -2.3867188, 0.28564453, -1.5458984, -4.1289062, 1.6572266, -1.9619141, 1.8427734, 0.15771484, -0.6611328, 3.0644531, 0.20605469, -1.7207031, -0.6279297, -0.38452148, -0.2783203, -1.4160156, 1.9248047, -1.2470703, -2.0917969, 1.3808594, 1.0722656, -1.8867188, -1.8242188, 0.8432617, 0.703125, 1.2050781, -1.2949219, 2.7597656, 2.125, -1.4228516, -0.14282227, 0.99560547, -1.1708984, -0.42163086, 1.7744141, 2.2402344, -0.011184692, 2.546875, -1.2998047, -3.1914062, 2.1347656, -2.6933594, 1.7958984, -0.29296875, -2.2636719, 2.0175781, -0.50439453, 0.70458984, -0.7241211, -1.4306641, -2.3769531, -1.6308594, 1.46875, -1.0078125, -0.6923828, 2.2109375, -1.6816406, 1.9462891, 0.30932617, 1.4423828, 0.82421875, 0.27026367, -1.4160156, 2.9941406, 1.7490234, 1.1777344, 5.3867188, 0.46948242, 0.24291992, -4.4765625, -0.24963379, -1.0205078, -0.8359375, 2.0566406, 2.84375, -1.3183594, -0.19042969, -0.44604492, -0.25708008, 0.6118164, -2.5507812, -1.7509766, -1.6015625, -0.5986328, -3.2929688, 1.90625, -2.0527344, 0.33789062, 3.8730469, -1.2851562, -2.2460938, -0.4987793, 0.1538086, 2.03125, 0.39990234, -1.5058594, -0.7636719, -0.90234375, -0.5263672, -1.2597656, 1.625, -1.4335938, -0.9082031, -1.2207031, 1.8896484, 0.14941406, 2.234375, -3.2539062, -0.47460938, 2.1796875, 0.8256836, -0.5996094, 0.019622803, 2.9082031, -0.21923828, 1.9130859, 0.6411133, -1.8515625, 1.2529297, -0.7998047, 2.25, -1.7929688, -0.48168945, 3.4707031, 0.61572266, 0.2512207, 0.33081055, -2.3007812, 1.4384766, 1.4199219, 0.06756592, -1.0908203, -0.06488037, -0.21618652, 0.8198242, -1.4423828, 0.94921875, -0.9003906, -0.47583008, -1.2695312, -0.5239258, -0.19702148, -1.5439453, -1.03125, -0.6176758, 1.0537109, -0.62109375, -0.8125, -1.2587891, -0.1763916, -2.3671875, -2.2851562, -1.2294922, -0.46289062, 1.4873047, 0.4465332, 0.061828613, -0.98339844, 1.5703125, 0.6542969, 0.2487793, 0.32788086, 2.1308594, -1.125, 1.7373047, 2.0878906, -1.3076172, -1.1396484, -0.8881836, 4.6132812, -0.39770508, 2.1816406, -0.578125, 0.1239624, -0.036254883, -0.9316406, 2.390625, -0.00617218, 0.8720703, 1.1591797, -1.21875, 2.28125, 0.9038086, -1.2412109, -2.3027344, 0.7211914, 0.9057617, -3.0371094, 1.2285156, -1.1162109, 0.09631348, -1.8681641, -1.4609375, 3.7148438, 1.3652344, -0.26489258, 0.4111328, 1.3955078, -0.67578125, 1.1484375, 0.48046875, 1.5654297, -1.8007812, 0.7055664, -2.2929688, -1.9501953, 0.0023288727, 0.47753906, 0.46948242, 1.2294922, 1.0429688, -2.1621094, 2.1582031, 0.6347656, -2.8203125, -0.47485352, 2.4375, 1.1894531, 0.0345459, 0.28344727, 1.7353516, -1.9013672, -0.88134766, -1.0380859, 1.7070312, -0.10394287, -0.9316406, -1.0185547, 3.0644531, -1.2089844, -2.5449219, -2.8007812, -0.640625, -1.2119141, 1.8710938, 2.2050781, 3.71875, 1.4765625, -2.3300781, 2.7304688, -2.9550781, 0.3564453, 1.2324219, -0.9707031, -0.5600586, 1.9980469, 0.31762695, 1.0341797, 0.46948242, 1.1425781, -2.6367188, -0.48120117, 1.0957031, -1.9794922, 0.78222656, 2.1386719, -0.6484375, 0.7739258, -1.203125, -0.36279297, -1.8242188, -2.3574219, 1.2675781, -1.9853516, 1.5009766, 2.3671875, 1.0410156, 0.33129883, -1.0585938, -3.6425781, -1.2041016, -0.37573242, -0.41015625, 1.3408203, 0.7050781, -0.9013672, 1.0527344, -0.5419922, 2.2382812, -2.6113281, -1.7509766, -1.7626953, -0.765625, -1.6455078, -0.8198242, 0.18469238, 0.27783203, 0.33276367, -3.3710938, -1.3027344, -0.6635742, -3.5996094, 0.49121094, 1.7880859, -0.83447266, 0.82128906, -0.5996094, 0.28051758, -0.012962341, -5.6171875, 0.4724121, 0.5029297, 1.2871094, 0.3474121, -1.5605469, 1.5957031, -2.4335938, 1.4560547, -0.2541504, 1.4482422, 0.56591797, -1.9277344, -1.1650391, -2.0585938, 2.1191406, -0.1977539, 1.6279297, -0.3449707, 0.13769531, -2.3203125, -1.5761719, -1.375, -1.1298828, 3.765625, -1.0439453, 2.0292969, -0.90478516, -1.9580078, 0.79248047, 1.2646484, -2.046875, -2.8535156, -0.1182251, -0.5498047, -1.7695312, -3.296875, -1, -0.1538086, -1.7529297, 0.03479004, 2.125, -0.8125, 1.9150391, -1.6298828, -1.3632812, -1.1113281, 1.7373047, 0.2697754, 0.1015625, -1.2265625, -1.1142578, 0.7705078, -0.07519531, -0.43652344, 2.1132812, -1.5117188, 0.42578125, 1.2470703, 0.3010254, -0.43432617, -0.08770752, -1.7158203, 1.1953125, -0.057006836, -0.9213867, 1.671875, -0.4699707, -1.234375, -3.3945312, -0.25219727, 3.1328125, 0.34716797, 1.2226562, 0.106933594, 0.43847656, 0.7158203, -0.73876953, -0.50927734, 0.57910156, 0.9765625, 1.9042969, -3.296875, -0.57421875, 0.6230469, 1.9082031, -3.0429688, 1.1669922, 1.2724609, 1.5341797, 0.74853516, 0.2479248, 1.8945312, 0.26660156, -0.33789062, 1.4238281, 2.4765625, 1.1582031, 0.47607422, -0.96240234, 0.15905762, 0.22619629, 0.74902344, 1.1162109, 0.33081055, 3.15625, 3.1464844, 0.019729614, -3.4199219, 0.00920105, 0.9633789, 2.4785156, 0.5361328, 3.3613281, -1.6865234, -2.6640625, -0.4765625, -0.45532227, 1.7626953, -1.2070312, -0.21838379, 2.0488281, -0.15002441, 0.8881836, -1.0742188, -0.68310547, -0.7832031, -2.3203125, 0.50341797, -1.046875, -3.0136719, 0.28149414, -2.0527344, -2.7421875, 0.19421387, 1.9160156, 0.06213379, -2.1953125, 0.43969727, 2.9804688, 0.25219727, -1.2246094, -2.125, 1.6074219, -0.053771973, 1.6542969, -0.84472656, -2.7285156, 2.2714844, -1.6542969, 1.7080078, 0.47460938, 0.24169922, -2.2382812, 0.3786621, -1.8847656, 0.9111328, 0.21948242, 1.1884766, -0.8022461, -2.0058594, -0.4716797, -3.8222656, 0.7368164, 0.91796875, -1.9560547, -0.30297852, 0.44140625, 2.5585938, 0.6660156, -2.4824219, 2.4335938, -0.34057617, -2.5371094, 1.3544922, -1.9316406, -1.0576172, -3.0371094, -4.2070312, 0.20092773, 0.43237305, 1.0058594, 1.6699219, -0.35473633, -0.49047852, 2.4042969, 1.1572266, -0.5395508, -0.6020508, -3.2558594, -0.92626953, -2.2773438, 0.18713379, 2.484375, 1.0576172, -1.2714844, -1.9296875, -0.24267578, 1.1630859, 2.0566406, 1.2294922, -2.5449219, 0.43676758, -2.9238281, -0.20178223, -0.57373047, -0.2705078, 0.9057617, -1.4111328, 0.66796875, -0.84716797, 2.625, -1.3974609, 0.009094238, -0.11791992, 1.4267578, -0.30297852, -0.16699219, -1.0751953, 2.0253906, 3.6855469, -1.484375, -2.6757812, -0.37670898, -0.4555664, -1.0029297, -0.32055664, -0.92578125, -0.013130188, -2.4257812, 1.4238281, -0.6743164, 1.4384766, 2.7714844, 1.3867188, -2.4375, -0.73583984, -0.35424805, -2.4589844, -3.1445312, -0.03793335, -0.31518555, -0.43969727, 1.0791016, -1.0097656, 1.671875, -0.9199219, -0.62109375, 0.16894531, 3.1582031, 2.9453125, 2.5253906, 4.4726562, -1.6162109, -1.1591797, 2.015625, -2.2539062, -2.0722656, 2.9726562, 0.24230957, 1.1933594, 2.8300781, 0.6411133, -1.1523438, 0.22595215, 0.0029239655, -0.80371094, -0.79785156, -0.8696289, 2.4140625, -0.70654297, -1.9316406, 1.1972656, 0.11895752, 3.3222656, -1.2939453, 0.4584961, -1.9550781, -0.53271484, -0.9086914, -0.22717285, 0.58984375, 0.38232422, -0.1204834, -0.34423828, 0.22033691, 0.1619873, -0.31225586, -1.4970703, 3.25, -1.9296875, -1.5498047, 0.99902344, -0.41333008, -0.26245117, -1.6416016, 1.8828125, 2.234375, -0.50146484, 2.21875, 0.5732422, -1.8212891, 1.6386719, 1.8310547, -1.9179688, -1.4121094, -1.0654297, -1.5498047, 0.79003906, -0.57714844, -3.1816406, 0.23657227, 0.97558594, -1.9980469, 1.3476562, -0.7426758, -2.1328125, 1.9199219, -2.4472656, 1.0234375, -1.265625, -2.2773438, 0.4194336, 0.27978516, -0.20666504, -0.45239258, 1.5371094, 3.015625, -1.7675781, -1.1035156, 1.578125, -0.4116211, 0.6323242, 0.4230957, -2.3085938, -3.3964844, -0.8261719, 2.2050781, 2.7617188, 2.703125, -0.3317871, 1.5761719, -1.7392578, 1.2597656, -2.0585938, 2.5390625, -2.171875, 1.3378906, 4.0898438, -1.3173828, -0.88623047, -2.5390625, 2.1054688, 1.6787109, 1.6464844, 0.54541016, 0.4326172, -1.359375, -0.90283203, -2.8066406, -3.5488281, -1.0830078, -0.29711914, 0.12976074, -0.07110596, 1.1884766, -1.3984375, -1.3330078, 0.20898438, 1.5791016, -0.47827148, -1.5527344, 0.22387695, 0.053466797, -1.0458984, -0.03366089, -0.048950195, 3.2167969, 1.7460938, 2.7050781, -1.9599609, -2.9902344, 0.08874512, 1.1923828, -2.4726562, -0.47192383, 0.80615234, 0.5932617, 0.23937988, 1.2158203, 0.18518066, -0.43652344, 2.546875, -0.80078125, -0.31225586, 0.9121094, -0.40551758, 2.4746094, -1.7998047, -0.85595703, 0.39575195, -3.7226562, 0.8095703, 1.8808594, 0.37768555, 0.55078125, 1.4423828, -0.71875, 0.22509766, 0.20739746, 0.25024414, 0.30297852, 0.9926758, 0.42041016, 0.50146484, -3.71875, -3.4375, -0.87060547, -0.05090332, -0.8730469, -2.171875, 0.5595703, 0.9248047, 0.23510742, 1.2929688, 0.07513428, 1.0771484, -2.8164062, 1.7324219, 1.2470703, 1.6542969, 1.1796875, -2.8378906, 0.10583496, -1.7089844, -0.88378906, -0.112976074, -0.9667969, -1.1152344, 0.43896484, -1.3994141, 0.41137695, 0.7397461, -0.07543945, 1.6738281, 0.9916992, -0.60302734, 1.0761719, 1.1357422, -1.7021484, 0.453125, 0.53515625, 2.3066406, -0.36254883, 3.9824219, -1.5693359, -1.6445312, 2.1308594, -1.1689453, 2.2304688, -0.69433594, -1.6650391, 0.4338379, -2.8125, -1.6123047, -2.2324219, -1.5234375, -0.16906738, 1.2138672, 0.5161133, 0.49194336, -0.4033203, 3.6796875, -0.46020508, 0.47875977, 1.5888672, 0.9614258, -0.070373535, 0.8408203, -1.0869141, 1.1523438, 1.1679688, -0.6669922, 0.48901367, -0.32666016, 0.07543945, -0.57910156, 2.6660156, 1.7861328, 1.6484375, 0.85302734, 1.7675781, 1.2880859, 2.0703125, 4.9335938, -0.44189453, 1.0615234, 1.7939453, -1.4560547, 0.9868164, 3.0644531, 1.5048828, -1.2109375, -1.2011719, 1.6162109, 0.5073242, -0.1439209, -1.9394531, -0.35253906, 0.6816406, -1.8027344, 2.8242188, 0.032104492, 0.82910156, -1.4736328, -0.9658203, -0.65283203, -0.3540039, -1.3984375, -0.41064453, 1.0878906, -0.119140625, -0.765625, 0.24523926, 1.2470703, -0.12121582, -3.1855469, 1.9228516, 0.08880615, 1.203125, -0.9716797, 2.6289062, 3.3203125, 0.98095703, -0.17382812, 2.5878906, 2.2558594, 1.2353516, 3.0253906, 0.34643555, 1.6542969, 0.5136719, 1.8359375, -1.7412109, -1.9013672, -2.1796875, 0.6269531, -1.5732422, -0.20336914, 1.2646484, 0.027954102, 1.7675781, 1.2177734, -1.6308594, 2.2441406, 2.9824219, 0.9296875, -0.4807129, 0.77783203, -0.6933594, -3.3242188, -1.0957031, -0.24389648, -0.37963867, 2.4707031, 2.0761719, -0.072509766, 2.8359375, 2.0019531, 1.4199219, 1.2949219, 0.3149414, -1.6347656, 0.9111328, -0.19311523, 2.0742188, 0.2902832, 0.17565918, -0.36987305, 1.8144531, 0.38964844, 0.017349243, 2.2929688, -0.5126953, -0.5395508, 0.032287598, -0.85302734, 0.42651367, -1.2373047, -1.3398438, -0.4724121, -0.1439209, -0.74072266, -0.44726562, 1.1074219, 1.5302734, 1.0029297, 0.92626953, -1.1982422, -1.8076172, 2.1445312, 0.058410645, -0.16870117, -0.0859375, 0.61279297, 1.1025391, -0.3083496, -0.7285156, -0.47070312, -0.06958008, 1.2490234, 1.21875, 1.6308594, -0.44140625, -0.32617188, -0.7104492, 1.2978516, -1.2119141, -2.0273438, 0.81689453, 0.11352539, 0.004737854, 3.1015625, 0.06774902, -2.3671875, -0.38256836, -1.7861328, 0.5307617, -0.8051758, -3.3066406, -0.88378906, 3.9433594, 0.6381836, -0.7973633, -3.4003906, -3.4941406, 0.14550781, 0.06500244, 2.2753906, -0.5097656, -2.09375, 0.09899902, -1.2236328, 2.4804688, 0.7241211, -1.6914062, 0.45996094, 0.17016602, -0.06036377, -0.69433594, 1.3515625, 1.8779297, -0.5, -1.6240234, 1.8193359, 2.1894531, 2.5625, 1.8115234, 0.6855469, 1.7392578, -4.8984375, 0.047424316, 0.12756348, 2.34375, 0.05340576, 0.6088867, 1.1171875, -1.3007812, 0.24682617, -2.859375, -2.4355469]}, "B0009PUQAK": {"id": "B0009PUQAK", "original": "Brand: Coleman\nName: Coleman High-Pressure Propane Hose and Adapter\nDescription: \nFeatures: 5-foot hose and adapter attaches propane appliances to 20-pound propane tanks\nGreat for use with Coleman grills, stoves, lanterns, heaters, and more\nA cost-efficient solution to regularly replacing 1-pound canisters\nAllows propane devices to last up to 20x longer without refueling\nHand tighten counterclockwise\n", "embedding": [0.7675781, 0.35229492, -0.4880371, 1.5966797, -0.65625, 0.31982422, 1.2382812, -0.75927734, 0.60302734, 2.65625, 1.4365234, -0.21496582, 0.9707031, -2.9003906, -0.93066406, -1.1884766, 0.7480469, 0.5258789, 0.8442383, 0.8535156, 2.171875, 0.8671875, 0.0022602081, -1.1474609, -0.097595215, 0.23022461, 2.59375, -2.7753906, -0.64941406, 1.0136719, -0.41064453, -0.16027832, -1.2841797, 1.0498047, -2.1484375, -1.2197266, -1.8037109, 1.0234375, -4.0546875, -2.5644531, -2.2949219, 2.0214844, 2.3496094, 0.14550781, -1.4228516, 0.65771484, 2.7792969, -0.97558594, -0.20874023, -0.89404297, 1.0029297, 0.40039062, 0.14953613, 0.059173584, -0.13562012, -0.02709961, 0.609375, -1.625, 1.0361328, 0.56103516, 1.4570312, 0.16223145, -1.8925781, 0.57714844, -0.012672424, 1.4501953, -0.16235352, -0.9980469, 0.51660156, 1.7900391, 0.27148438, 0.2680664, -1.046875, -2.2109375, -2.5878906, 0.50146484, -4.0195312, -0.5185547, 1.4345703, -0.58984375, -2.4414062, 1.2822266, 0.6689453, -1.5722656, -0.74853516, -1.2050781, -2.8554688, 0.6821289, 1.8398438, 0.6713867, -2.6425781, 2.6621094, -2.4023438, -2.3007812, 0.79541016, -0.22363281, 0.70458984, 1.2470703, 2.2714844, -0.7182617, -1.8349609, -2.3144531, -1.4335938, 1.2548828, -2.6035156, 0.08483887, 0.68066406, 0.17407227, -1.6357422, 0.7446289, -0.41479492, -1.9619141, 3.515625, -0.42773438, -1.3076172, -2.0644531, 1.0927734, -1.8505859, 3.3769531, 0.5004883, 3.6503906, -0.29663086, 0.8925781, -0.06561279, 0.52246094, 2.2714844, 0.6821289, -0.49169922, 1.3164062, 0.8198242, 0.15393066, -1.2246094, 2.1894531, 0.27856445, 0.042022705, -2.0605469, 0.5283203, -1.5126953, -1.1601562, -1.5488281, -2.7792969, -0.37182617, 1.7675781, 1.5390625, -5.1328125, -0.5126953, -0.56591797, 0.70703125, -0.57373047, -1.8251953, 0.23339844, -2.4277344, -0.6303711, 0.81933594, 2.8261719, 2.5742188, 1.0761719, -1.4267578, 2.625, 1.8476562, -0.52490234, 0.20275879, -0.55615234, 2.5898438, 1.0546875, -1.4072266, 0.6191406, -0.5864258, -1.4580078, 1.4248047, -0.5498047, -3.9433594, 1.0244141, 0.91015625, -1.0449219, -0.5307617, 2.4941406, 2.9707031, -0.33935547, 1.0673828, -4.4257812, -2.9824219, -0.3918457, -3.0117188, 1.1523438, -2.1308594, -2.09375, -1.6220703, 0.012214661, -0.5800781, -0.11053467, -0.50683594, -0.24645996, 0.40625, -1.4296875, -1.9287109, -1.3154297, -0.04446411, 1.0800781, 2.2792969, -1.9658203, -0.82958984, 1.1142578, 0.7973633, -2.0195312, -0.5366211, 1.4345703, 0.09454346, -0.71240234, 2.8632812, 0.03225708, 0.8564453, 2.1289062, -0.9472656, -1.5283203, -2.7128906, 1.6972656, 0.35791016, 3.1914062, 0.38378906, 0.08062744, -0.26733398, 0.41552734, -0.4975586, -0.11608887, 1.8378906, -1.0087891, 0.7338867, -0.7363281, -0.48364258, 1.7675781, 3.4355469, -2.2148438, -0.7109375, 1.2294922, 3.0878906, 0.3942871, -1.1689453, 0.83496094, 1.4648438, 1.3720703, 0.2866211, -0.6269531, -1.8320312, -0.09649658, 1.1738281, -0.015327454, 0.08465576, 3.0078125, 0.074645996, 0.99853516, 0.42578125, -3.3457031, -0.8198242, -2.0039062, 1.0625, -0.27270508, 1.7226562, 0.06616211, -2.2480469, 0.8730469, -0.17260742, 0.5776367, 0.47338867, 0.5151367, 0.96191406, 2.1582031, -1.5576172, -2.0039062, 0.85302734, -0.5527344, 2.96875, 1.3251953, -0.084472656, 1.0126953, -0.1541748, -3.0742188, 1.0039062, -0.070373535, 0.88623047, 1.3359375, 0.15625, 2.2167969, -2.640625, 0.6923828, 1.7939453, 2.7226562, -1.1601562, -2.4648438, 2.2519531, 3.4316406, -0.7709961, -2.0625, 2.515625, 0.59765625, 2.0253906, 0.23657227, 1.9228516, -0.40625, -1.2636719, 1.0185547, -0.71728516, -2.4140625, 2.1757812, -0.104003906, 0.89697266, -0.8227539, 0.06756592, 1.8701172, -0.7241211, -1.1669922, -1.2480469, -2.7421875, 0.61621094, -1.6787109, 0.07537842, 2.53125, -2.0136719, -0.4987793, 1.25, -0.61035156, -0.48706055, 1.9453125, -0.375, 0.81396484, 1.6289062, -1.5878906, 1.2832031, 1.9414062, 1.2041016, 1.5048828, -1.8955078, 0.33862305, -0.8901367, -2.6503906, 0.625, 2.2539062, -3.0976562, 2.1035156, 0.40014648, -2.6621094, 0.5678711, 2.1582031, 6.0351562, -1.0068359, 0.9160156, -0.6303711, 2.3007812, 1.5634766, -1.7119141, -0.57421875, 1.8564453, -2.265625, -2.6230469, 0.85595703, 0.12597656, -0.2775879, 0.7475586, -0.8129883, 1.0830078, 3.3828125, 1.5078125, 0.47143555, 0.9824219, -1.4951172, -1.2939453, 2.0664062, -3.09375, 0.28588867, -0.78271484, 0.5161133, 0.39916992, 0.049865723, -1.0722656, -1.203125, 2.5839844, -0.46142578, 2.4121094, 0.5258789, 2.2050781, -0.5263672, -0.7026367, 2.2714844, -0.8051758, -3.6699219, 0.8388672, -0.20056152, 0.01763916, -0.70166016, -4.3203125, 0.80810547, -1.7822266, -0.49487305, 0.3701172, -0.6821289, -1.5722656, -0.70214844, 0.5449219, -0.89697266, 0.3083496, 1.1865234, 0.7050781, -1.7373047, 0.22888184, 0.8886719, -1.5771484, 0.4326172, -0.69921875, 0.19726562, -0.60302734, -1.9902344, 1.5771484, 0.8852539, 1.5292969, -1.2226562, -4.3320312, 1.5908203, 2.9101562, -0.8623047, 1.9902344, -0.6323242, -1.5898438, -4.6875, -1.0361328, 1.765625, 1.6542969, 2.7890625, -0.057373047, 1.8359375, 1.7402344, 2.2089844, -0.95410156, -0.44213867, -1.0859375, 2.5683594, -1.4140625, -3.1640625, -0.8696289, 2.4199219, -3.2402344, -0.73291016, 0.20117188, -1.0107422, 2.1386719, 3.2207031, -0.16894531, -0.4255371, 0.8120117, 0.5732422, 3.0175781, -0.27368164, -0.0013399124, 1.0585938, -1.0078125, 1.3740234, 0.34521484, -0.3701172, 0.4255371, 0.38110352, 1.6103516, 1.5732422, -0.44677734, 0.6948242, -0.27954102, 0.47387695, 0.6279297, 1.5947266, 0.4099121, 0.5678711, 0.4987793, -0.24023438, 1.8134766, -1.7119141, -0.06365967, 1.6455078, 1.2314453, -1.1416016, 0.5463867, -1.1787109, 0.1862793, -0.40112305, -1.0488281, 1.2685547, 1.1142578, -0.94140625, -1.3359375, -0.77197266, -0.23937988, 2.9042969, -0.07446289, -0.55371094, -0.86572266, 0.5151367, -0.84521484, -1.7949219, -3.6464844, -2.5058594, -1.5996094, 2.6660156, 1.8701172, -1.9619141, 0.041809082, 0.47314453, 2.0507812, 1.9365234, -2.0878906, -2.0019531, -2.2050781, -0.8901367, 1.0654297, 0.09173584, 1.5820312, 1.1386719, -1.7324219, -0.82910156, -0.94921875, 1.7587891, -0.5727539, -0.35473633, -1.2597656, 0.16052246, -1.6679688, -0.24633789, -0.39624023, 2.0800781, -1.4072266, -1.0683594, -0.10571289, -1.2900391, -1.3398438, -0.58935547, -3.890625, 0.6074219, -1.1669922, 1.2802734, 1.0087891, -0.5800781, 0.6196289, 0.27246094, 0.62109375, -3.1992188, -2.2988281, -1.1376953, 1.1650391, -2.03125, 0.6411133, 3.1933594, -1.0966797, -2.8535156, -2.5273438, -0.26611328, -3.2128906, -0.3449707, 0.66552734, -1.5957031, 0.7050781, -0.68896484, 2.5644531, -1.0498047, 0.53564453, 1.4599609, -1.109375, 0.27734375, -3.8066406, -0.38476562, 0.5097656, 0.34814453, 0.67285156, 2.7695312, 2.4589844, -2.5488281, 1.4326172, -0.43408203, 1.1455078, -0.18383789, -1.21875, 1.4130859, -2.2949219, -0.64941406, -0.1430664, -0.82714844, -1.1347656, -1.1542969, 0.72021484, 3.1074219, 1.3378906, 2.40625, -0.35595703, -2.7324219, -0.06585693, 2.6796875, -2.515625, -1.2880859, -1.21875, -2.0664062, -2.5683594, -0.34472656, -0.8876953, -1.3330078, 1.3125, -0.59228516, -2.0253906, -0.8129883, -0.50390625, 1.1835938, 0.1652832, -0.29785156, -2.0546875, -0.56591797, 0.013923645, -0.72753906, -1.1416016, 0.30859375, -0.7446289, 3.8325787e-05, 1.5087891, -0.37939453, -0.8359375, -0.52441406, -1.3974609, 0.49145508, -1.1542969, 0.37280273, -0.36914062, 1.4580078, -0.7529297, -1.4765625, 3.2871094, -1.7167969, 0.46166992, 0.21142578, -0.23852539, -0.37817383, 2.0703125, 1.8134766, 1.4921875, 0.70654297, -1.2285156, 0.55566406, 2.4589844, 1.6494141, 2.0449219, 0.21557617, 0.17626953, -1.3154297, -0.25048828, 0.97998047, 0.018493652, 1.8857422, -0.15393066, -0.39575195, 2.8105469, 1.9238281, 1.7197266, -0.2043457, 0.8227539, 1.1035156, 0.6875, -0.40112305, 0.6064453, -0.39160156, 3.265625, -2.6855469, -1.5527344, 0.7050781, 3.0117188, -0.35595703, 2.2226562, 1.1376953, -0.014472961, -2.3671875, -2.2832031, -1.1240234, -0.33032227, 0.26342773, 0.47851562, -3.2597656, 0.95654297, 0.8251953, 2.3300781, 2.2011719, 1.5009766, -1.6542969, -0.9277344, -2.8046875, -1.0693359, -2.171875, -2.78125, -3.4003906, -0.5263672, -0.45629883, 1.4199219, -1.1533203, 0.4099121, -0.24084473, -0.93310547, -0.6738281, 0.92089844, 0.46557617, -1.1806641, -0.9394531, 1.4101562, 0.97753906, -1.0244141, -2.4648438, -0.46020508, -1.0087891, 0.5620117, 1.359375, 1.8154297, -0.85253906, -0.6386719, -1.9169922, -4.3398438, 0.7988281, -0.0018386841, 0.7988281, -0.36376953, -1.5302734, -1.3525391, -0.578125, -0.71875, -2.6621094, -1.4716797, 0.41235352, -1.2470703, 0.33129883, 0.41625977, 0.96240234, -1.1699219, 0.69140625, -1.1308594, 1.265625, -0.28588867, -1.8525391, -4.0351562, 0.80859375, -1.7695312, -0.92089844, 1.7939453, -1.7128906, 0.15393066, 1.4042969, 1.0283203, -1.3789062, 1.8212891, -0.81396484, 0.05593872, 0.8515625, -0.7480469, 0.3544922, 1.6689453, -0.41455078, 0.73828125, 1.9365234, 2.6835938, -0.79785156, 0.72314453, 0.11627197, -0.21655273, 1.3222656, 0.022140503, 0.98095703, -1.5097656, 2.7910156, 1.9433594, 0.60253906, -1.4658203, -2.1894531, -0.46044922, 0.20129395, -2.0253906, -0.41210938, 0.5517578, 2.140625, 1.3652344, 1.9199219, 1.1855469, -0.26635742, 2.4121094, 0.001627922, -0.58740234, -2.125, 2.0742188, -0.23596191, -1.3320312, -3.4648438, 0.21740723, 2.5703125, 1.1582031, 0.8076172, 1.0947266, -0.5151367, -1.0732422, 0.5214844, -1.0058594, 1.7744141, 2.0019531, 2.03125, -2.6035156, 0.8383789, 2.734375, -0.72998047, -1.3310547, 0.79345703, -1.6679688, -1.2939453, 0.67285156, 1.6640625, -2.3613281, 0.14587402, -1.2626953, -0.025115967, -0.54003906, -0.93896484, 1.5517578, -2.0644531, 0.36743164, 0.421875, -2.3242188, -2.7519531, 2.8183594, -0.35498047, -1.9912109, 1.8525391, 1.5585938, -1.6005859, -2.0449219, 1.1591797, 1.0556641, -0.8798828, -0.6777344, -2.1601562, -0.084228516, 2.7792969, -2.0429688, 2.6601562, 0.8564453, 0.52441406, 0.63916016, 0.41259766, 1.5654297, 2.2089844, 1.6123047, 3.6699219, 3.2226562, 1.2480469, 2.0527344, 1.4960938, 1.3574219, 0.20373535, -1.6123047, -0.8769531, 2.1738281, -1.3183594, 0.4399414, -0.8935547, -1.0224609, 0.5703125, 0.42773438, -0.51660156, 2.3867188, 2.3710938, -2.2695312, -1.8466797, -0.6772461, 0.3413086, -1.984375, 2.3066406, 0.14892578, 0.5761719, 0.24060059, 0.010566711, -0.20129395, 2.171875, -0.24255371, 1.046875, -1.4072266, 2.8554688, 0.45336914, -0.51953125, -3.625, -0.5058594, 1.0400391, 0.9790039, -1.0126953, -0.73876953, 0.92822266, 0.6904297, -0.03765869, 0.6508789, 0.3544922, -1.4902344, -0.023345947, -0.119018555, 1.2216797, 3.5371094, -1.2939453, 1.7353516, 1.2539062, -1.5234375, -3.6640625, 0.98535156, -0.28027344, -0.27270508, -1.4287109, -2.4003906, 1.4628906, -2.3964844, 1.6552734, -1.6425781, 0.76171875, 0.3894043, -0.46850586, -2.0429688, -1.1767578, -0.62890625, 2.5488281, 1.6484375, -1.2783203, 0.4506836, 1.4667969, 1.3896484, -0.35107422, 0.019973755, 0.2619629, 0.5029297, -1.6220703, 3.4492188, 0.3034668, 1.6044922, 0.8046875, 4.640625, 2.2128906, 0.6591797, -0.49267578, -0.76464844, 2.3925781, 2.2128906, 0.7011719, -0.6772461, -1.5654297, -0.9711914, 3.1816406, 1.3154297, 0.037872314, -0.70947266, 0.09185791, 0.27954102, -1.9755859, 2.1855469, 0.75390625, -1.7558594, 0.5214844, -0.87890625, -1.4853516, -1.0595703, 0.26635742, 1.5488281, -2.3535156, 1.8417969, 0.7861328, 0.6557617, -2.1582031, -1.0205078, 0.43408203, -0.86816406, -2.7089844, -3.4296875, -0.7363281, -0.8022461, -0.3149414, -2.1269531, 0.60595703, 1.7724609, 0.98779297, 0.035003662, -0.3095703, 0.4807129, -2.0683594, 0.08569336, -1.9091797, -0.4230957, 2.6152344, 2.1601562, -1.1796875, 1.671875, -2.0410156, -0.11999512, -1.5, -1.5283203, 2.203125, 1.0068359, -1.9628906, 1.5751953, 1.2529297, 1.6386719, -0.30444336, -1.6152344, -0.5751953, 1.328125, 1.9287109, -1.6376953, 0.31713867, 0.36547852, -1.3544922, 0.91308594, 3.7089844, 1.7441406, -0.9736328, 0.016525269, 0.31884766, -0.5283203, -1.5439453, 0.07745361, 0.41503906, -0.98291016, -1.2128906, 3.6660156, 2.6933594, 0.7241211, -0.97802734, -2.6171875, 1.2021484]}, "B08FQY2LBK": {"id": "B08FQY2LBK", "original": "Brand: GasSaf\nName: GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8\" Male Connector Suitable for Turkey Fryer\uff0cFish Fryer\uff0cPropane Burner\uff0cFire Pit and More- CSA Certified\nDescription: GasSaf Adjustable Propane Regulator Hose
          Product features
          The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
          Specifications: Hose length: 4 feet / 48 inches
          Regulator type: high pressure
          Gas type: LP / LPG
          Inlet pressure: 25-250 PSI
          Outlet pressure: 0-10PSIG
          Capacity: 122000 BTU/Hr
          Tail connection: 1/8-inches male connector
          Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
          \nFeatures: \u3010Product Parameters\u3011\uff1aAdjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector\n\u3010Flame Control\u3011: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI)\n\u3010More Reliable\u3011: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment\n\u3010Scope of Application\u3011: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice\n\u3010Easy to install\u3011: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working\n", "embedding": [0.6225586, 3.125, 2.3984375, 0.30151367, -0.6196289, 0.38134766, 1.1933594, -0.38989258, 0.12646484, 0.32763672, 1.3417969, 0.83251953, 2.5214844, -0.9868164, 2.3789062, 0.24230957, 0.34814453, 0.23791504, 1.1787109, 3.2734375, 1.8837891, -0.40234375, 2.3183594, -1.3242188, 1.0351562, -1.0703125, 2.6269531, -2.0722656, -0.3544922, -1.3886719, 0.95947266, 1.4365234, 0.2722168, 0.19970703, -1.6933594, -0.92529297, 0.4814453, 0.30078125, -2.7011719, -1.1875, 0.6977539, 0.30273438, 1.5898438, -0.8774414, -2.25, 1.2001953, 0.99316406, 0.55078125, -0.76171875, 0.88964844, 0.6533203, -1.3642578, 0.034179688, 0.71875, -0.38232422, 0.111572266, 0.70166016, -2.6484375, 1.6318359, 1.8164062, 2.2597656, 2.3867188, -1.4931641, 0.19348145, -1.1279297, -0.27441406, 0.93066406, -0.52197266, 0.96533203, 0.60839844, 0.6894531, 0.20275879, 0.41967773, -0.40234375, -1.0849609, 1.0429688, -3.3554688, 1.1386719, 3.7382812, 0.18786621, -2.2578125, 0.82910156, 0.35498047, -2.796875, 0.2692871, -0.390625, -1.0253906, -0.5102539, 2.2832031, 2.0019531, -2.5390625, 2.5566406, -3.65625, -3.8515625, 2.5996094, 1.9775391, 0.4362793, 1.046875, 2.6835938, 0.68066406, -2.3339844, -1.8632812, -0.7504883, 1.9560547, -1.3769531, -0.8666992, -1.1855469, 1.8642578, -3.0117188, 1.1533203, 0.32666016, 0.29003906, 1.703125, -1.9511719, 1.0146484, -2.78125, -0.32421875, -2.2519531, 3.2714844, 0.16113281, 2.4824219, 0.08618164, -0.80029297, 1.9130859, 1.3769531, 1.0917969, -0.80566406, 0.34179688, 3.4824219, -1.4746094, 0.9394531, -2.9941406, 1.1972656, -0.9355469, 0.57666016, -3.15625, -0.82666016, -3.578125, -2.4804688, -1.2548828, -3.7480469, 0.43530273, 0.86279297, -0.9633789, -2.3945312, 1.2949219, -2.6054688, 1.6962891, 2.0292969, -2.1328125, 3.078125, -1.4042969, 0.004535675, -1.4804688, 3.0449219, 0.9345703, 0.33740234, -1.1796875, 2.1347656, 2.2402344, 1.1347656, -1.0371094, -1.6904297, 1.2871094, -0.04852295, -2.5625, 0.45239258, 0.2927246, -1.1914062, 0.10559082, 0.07635498, -2.8242188, 0.3581543, 0.35986328, -1.3037109, -1.1982422, 1.2753906, 2.0292969, 0.4814453, 0.9511719, -3.3964844, -3.7851562, 0.26782227, -0.6538086, 1.6777344, 0.36669922, -1.4375, -1.8261719, 0.50439453, -1.2119141, -2.5429688, -0.2956543, 0.32421875, 1.1796875, 0.40625, -3.5253906, -3.0332031, 0.5239258, -1.0634766, 0.67822266, -2.7792969, -0.9916992, 0.5175781, 0.43725586, -2.4648438, -1.4492188, 0.03640747, 0.059326172, 0.95166016, 2.6484375, -0.5883789, -2.1113281, 0.76660156, 0.043518066, -0.49536133, -2.4550781, 1.4023438, 2.0507812, 1.4306641, 0.3779297, -0.7426758, -0.23217773, 1.1308594, 0.8564453, 1.5058594, 2.0527344, -1.2314453, 1.0087891, -1.3955078, -1.5800781, 3.0058594, 0.84716797, -0.17810059, -0.60058594, -0.7368164, 2.5722656, -0.5961914, 0.19372559, 0.70410156, 1.6894531, 0.6850586, -0.8354492, -2.4433594, -0.28442383, -1.4013672, 0.65527344, -0.2763672, 0.3815918, 1.5605469, -0.8876953, 1.6367188, 0.43847656, -1.265625, -1.3740234, -1.0830078, 1.0429688, 1.2353516, 2.5585938, 0.20141602, -1.1005859, 1.7880859, 1.9238281, -0.7832031, 3.3203125, 0.62109375, 1.0976562, 1.3408203, -1.875, -0.11413574, -0.0340271, 0.12963867, 2.1464844, 3.1757812, 0.0050735474, 0.44677734, 0.69970703, -2.875, 1.5419922, 0.90625, 1.5332031, 0.36743164, -1.2832031, 2.4648438, -2.9257812, 2.9941406, 1.7041016, 2.9140625, 0.24853516, -1.9160156, 0.4489746, 4.5859375, -0.8701172, -2.7089844, 1.7412109, 2.7714844, 0.65478516, 1.4638672, 1.1230469, 0.79541016, -1.1601562, -0.45043945, 1.4042969, -0.6640625, 0.7753906, 1.6650391, 0.2553711, -1.0771484, -0.32666016, -0.6855469, 1.5322266, -0.47998047, 0.41210938, -0.9609375, 3.1289062, -2.9882812, -1.7880859, 1.5751953, -1.5146484, -1.1513672, 1.7207031, 0.68847656, 1.3369141, 0.57666016, -2.0195312, 0.38500977, 1.0654297, -1.5761719, 1.4658203, 1.2128906, -1.2480469, -1.5800781, -1.2392578, -1.09375, -2.0898438, -2.3789062, 2.046875, -2.9453125, -1.3378906, 1.8369141, -1.890625, -1.8261719, -0.30517578, 0.95458984, 2.3554688, 0.8666992, -1.0664062, -2.2382812, -0.00095939636, 0.5957031, 0.5366211, 0.05355835, 2.2890625, -0.4675293, -2.5019531, -0.69384766, 0.39379883, -0.6513672, 1.0126953, -2.4941406, -0.29760742, 1.0253906, -0.52441406, 0.9550781, 0.88671875, 1.2373047, -2.5351562, 0.082092285, -3.8984375, 0.7006836, -0.33618164, 1.4912109, -0.97998047, 0.85253906, -1.8544922, -1.8720703, -0.2109375, -1.0458984, 0.6972656, -1.8291016, 2.9746094, -1.7412109, 0.57421875, 0.60058594, -0.7167969, -2.8925781, 1.2421875, -0.30273438, -0.8540039, 0.056549072, -2.6347656, 0.71484375, -1.0332031, 0.22058105, 0.49267578, -0.99560547, -1.6357422, -0.23059082, 1.0322266, -2.3613281, 0.5708008, 0.22180176, 0.5986328, -0.20581055, 0.43676758, -0.39941406, -2.1035156, -0.9223633, 0.51464844, 2.0996094, -0.1439209, 0.28100586, 1.125, 0.8808594, 0.29345703, -1.1660156, -2.5507812, 1.2255859, 2.2480469, -3.3320312, 1.5429688, -2.0507812, -0.42285156, -0.63964844, -2.5898438, 1.7919922, 1.5136719, 2.5585938, 1.1806641, -0.44311523, 0.010719299, 2.6054688, -0.93847656, -2.6191406, 1.2207031, 3.5117188, -1.2529297, -0.53466797, 0.34887695, 2.4277344, -2.6835938, -0.1361084, 0.93896484, -0.16723633, 1.6689453, 0.51416016, 1.3613281, -0.6738281, -0.25732422, 1.1621094, 0.34106445, 0.059753418, 0.60253906, -0.051574707, -0.8173828, -0.7939453, 1.4189453, 1.8300781, 0.34765625, 2.8769531, 1.1210938, 0.46411133, -0.5957031, -0.19372559, 0.33251953, -0.82666016, -0.16760254, 1.609375, -0.035736084, 0.59716797, 0.080566406, -0.8125, 0.30639648, -1.3291016, 0.82910156, 0.84716797, -0.13439941, -0.066711426, -1.8623047, -0.21728516, -0.7817383, -1.7646484, 0.26416016, 0.8417969, 0.75927734, 1.8964844, -1.0097656, 2.2421875, -1.59375, 1.1982422, -0.06970215, 0.6879883, -0.2006836, 0.42700195, -4.2148438, -0.22314453, -1.6416016, -2.7949219, -1.6767578, 1.8945312, 2.3066406, -1.2744141, 1.5302734, -0.56347656, 1.2578125, 0.8857422, -1.7001953, 0.024719238, -0.5029297, 0.8208008, -0.4086914, -1.109375, 0.6821289, 0.91552734, -3.9765625, 0.80078125, -1.2148438, 1.8076172, 0.09112549, 0.90185547, -2.0117188, -0.26367188, 0.47924805, 2.2519531, -0.32421875, 2.8222656, -0.9477539, -0.56591797, 0.63427734, -4.1875, -1.9707031, -1.4833984, -5.0234375, -0.20739746, -1.8349609, 0.41992188, 3.3691406, -0.49853516, 1.2216797, 1.7011719, 2.0859375, -2.5351562, -0.8925781, 0.6064453, 2.109375, -2.2695312, -0.64501953, 3.4257812, 0.7348633, 0.20471191, -1.3105469, -0.21008301, -2.4960938, -1.0507812, 2.1425781, -1.4248047, -1.7197266, -0.7988281, 0.66015625, 0.22009277, -2.625, 0.8666992, -1.3300781, -1.4521484, -3.2597656, 1.6572266, 1.0693359, 0.75439453, -1.5185547, 5.0039062, 2.625, 0.3774414, -1.1318359, 0.6225586, 1.7724609, 0.9145508, -2.1308594, 0.29077148, 0.8457031, 0.30639648, -0.19799805, -0.00844574, -0.14697266, -1.9628906, 1.4091797, 1.9033203, 0.17260742, 1.5361328, 0.69628906, -0.7426758, 0.18395996, -0.8227539, -0.7192383, 0.55078125, 0.21691895, -0.6035156, -2.3261719, -0.1640625, -1.6708984, -2.015625, -0.51220703, 0.44702148, -0.55126953, 2.8730469, 0.09918213, -1.0332031, 0.69091797, -0.061553955, -1.3339844, -1.5410156, 1.1503906, -1.4257812, -0.49316406, -1.0888672, 0.0040512085, 1.6777344, 0.9970703, -0.41918945, -1.0410156, 0.671875, -2.046875, 2.1171875, -0.08483887, 1.9980469, -0.7832031, -0.84521484, 0.8486328, -0.8496094, 2.9394531, 1.1494141, -1.2050781, 1.1376953, -1.9433594, -0.98046875, 0.9892578, 3.1933594, 0.37695312, 0.55615234, 1.0322266, 0.4970703, 2.9082031, 0.5288086, 1.2958984, 0.70654297, -0.34423828, 2.5800781, -1.1259766, 1.7919922, -2.3183594, 0.13061523, -0.09069824, 2.0820312, 2.6289062, 3.0957031, 0.39892578, -1.5761719, 1.4189453, 0.10443115, -1.3583984, -2.0351562, -0.6816406, -1.7041016, 1.6572266, -0.7216797, -2.0566406, -0.5385742, 2.8046875, -0.14904785, 1.7919922, -0.71875, -0.8251953, -0.50878906, -1.8017578, -0.80810547, -0.5361328, -0.44458008, 0.70410156, -2.6601562, 1.3164062, 0.14172363, 1.1777344, 1.21875, -0.1628418, -0.6245117, -0.19604492, -2.4082031, 1.6113281, -0.4897461, -0.35839844, -2.515625, 1.6503906, 2.1328125, 0.953125, 0.3088379, 0.21911621, 0.014541626, -0.6279297, -0.29248047, 0.4729004, 1.5166016, 0.09887695, -0.35302734, 1.2080078, -0.35791016, -0.53027344, -2.0039062, -1.4697266, -1.7949219, 3.3183594, 2.859375, 1.0693359, -0.9863281, -0.953125, -2.0351562, -4.6484375, -0.56884766, 2.2617188, 0.20031738, 0.41479492, -3.2578125, -0.9477539, 1.9023438, -1.2900391, 0.69921875, -3.3984375, 0.26220703, -0.15234375, -1.09375, -1.8613281, 0.7548828, -1.0195312, 0.13903809, -2.2480469, -0.85302734, -0.3161621, -2.7578125, -3.9277344, 1.9833984, -2.6308594, -0.5620117, 2.1757812, -1.4199219, -1.2177734, 1.6904297, 1.9814453, -3.0058594, 1.5546875, -3.1347656, 0.8417969, 1.0107422, -1.4589844, 1.2285156, 1.6533203, -1.0097656, 2.0761719, 0.5366211, 1.9677734, -1.4248047, -1.6494141, 1.8740234, 1.1337891, -0.93603516, -2.9824219, 0.083862305, -0.12854004, 1.3037109, 1.9570312, -1.0673828, -1.3691406, -0.8173828, -3.6933594, 0.8310547, -0.13366699, -0.29760742, -0.6982422, 1.1972656, 1.8466797, -0.9277344, 1.6484375, 0.09472656, 0.34423828, -0.14465332, 2.5585938, -0.7705078, 1.8925781, 1.9775391, -1.7373047, -2.5390625, -2.7128906, 2.9355469, 3.3378906, -2.03125, 0.07141113, -0.12524414, -0.39331055, 0.76464844, -0.13952637, 0.7910156, 2.5390625, 0.89746094, -0.81103516, -1.0107422, 1.2412109, -1.6240234, 1.4804688, 0.9423828, -1.7177734, -1.6171875, 2.3867188, 1.0390625, -2.375, 1.0996094, -1.7207031, 1.3613281, -0.6323242, -2.6757812, 0.49243164, -3.8320312, 0.31884766, 0.09680176, -1.2900391, -2.6132812, 0.8388672, -0.35131836, -0.44360352, 1.0332031, 2.2167969, -0.23474121, -0.9658203, 1.0009766, 1.078125, -0.7294922, -0.06542969, -2.9746094, -1.1347656, 2.2695312, -2.4414062, -0.5317383, 2.1679688, 1.6865234, -2.0117188, 1.6005859, 0.8833008, 2.515625, -0.052246094, 1.2314453, 3.8984375, 0.073791504, 2.1386719, 0.55371094, 2.7304688, 3.1640625, 0.15344238, 0.6948242, 2.0292969, -1.8330078, 1.3710938, 0.12695312, -0.29785156, 0.030471802, -1.0576172, -0.014404297, 2.4160156, 2.5214844, -2.8300781, -0.044311523, -0.53466797, -2.3847656, -2.9765625, 1.2402344, -1.625, 0.07183838, 1.6523438, -0.27929688, 1.3496094, 1.21875, -0.66503906, -2.2167969, -0.3557129, 3.1269531, -1.4736328, 1.4287109, -0.124938965, -2.6347656, 1.4160156, 3.3300781, -0.38012695, -0.48266602, 0.7426758, -0.4724121, -0.6347656, 2.171875, 1.2578125, -3.7011719, 0.70410156, -0.85839844, 2.3671875, 1.828125, -1.1220703, 2.7851562, 0.47045898, -0.94091797, -3.21875, 3.0097656, -0.21057129, -0.90771484, -0.7011719, -4.3398438, 1.4746094, -3.375, 1.046875, -2.4375, -0.4958496, -0.25561523, -0.62109375, 1.2529297, -0.05859375, -2.1308594, 3.3515625, 0.3762207, -1.0712891, -0.27124023, 1.2607422, 0.8486328, -0.025756836, 0.27416992, 0.7675781, 0.9013672, -0.68066406, 2.9667969, -0.012756348, -1.1367188, 0.22570801, 2.9414062, 0.06555176, 1.2392578, -0.9086914, 0.29052734, 0.59228516, 1.3027344, 0.048797607, -0.29956055, -1.3369141, -1.7197266, -1.3955078, -0.065979004, -1.0341797, -0.55371094, 1.6484375, -0.12200928, -1.625, 1.0703125, 1.6865234, -1.0488281, 2.2089844, 1.7119141, -1.3017578, -2.8242188, -2.578125, -0.48657227, -2.8535156, -0.7192383, 0.024810791, -0.54785156, -1.015625, -1.7001953, -0.22363281, -0.92333984, 0.05783081, 0.0003798008, 0.08416748, -1.2382812, -1.2783203, -0.19628906, -0.98828125, 0.140625, 1.8203125, -0.8198242, 3.1894531, -0.1586914, -2.1464844, 0.91845703, -1.9033203, -1.4833984, 1.1298828, 1.9375, 1.2949219, 0.5961914, -1.6074219, -2.1132812, -0.6972656, -1.6191406, 1.9873047, -0.8310547, -1.4863281, 1.0546875, 1.5283203, 2.5078125, -0.111816406, 0.38256836, 1.1572266, -0.41430664, 1.7001953, -2.1484375, 1.2587891, -0.20117188, 0.2763672, -0.058380127, 3.2929688, 2.78125, -0.9003906, -0.10333252, 2.1171875, -1.0703125, -2.0683594, -0.035980225, 0.27490234, 0.2644043, 0.8823242, 0.65478516, 2.4921875, 1.0087891, -2.125, 0.4025879, -0.3605957]}, "B00NCSUZHK": {"id": "B00NCSUZHK", "original": "Brand: Magma\nName: Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size\nDescription: \nFeatures: New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system\nMade in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer\nEquipped with integrated fold-away legs Locking front access grease tray 9\"x18\" (162 Sq. In.) grilling area\nUses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems\nNew electronic ignition Infrared radiant screens\n", "embedding": [-0.09851074, -1.0195312, 2.0742188, 2.4726562, 1.3837891, 1.9882812, -0.7993164, -1.6591797, -0.25146484, 1.34375, -0.41333008, 1.4189453, -0.2163086, -1.3251953, 1.4570312, 1.7529297, 1.0664062, 1.0683594, 0.8173828, -1.9863281, 1.3154297, 0.2619629, 0.71191406, -0.55371094, 2.8574219, 1.2314453, 3.8007812, -2.4628906, 0.37402344, -1.6298828, 0.97753906, 2.0917969, -0.31982422, 1.0800781, -2.03125, -0.5864258, -1.1474609, 1.2695312, -0.9633789, 0.38232422, -0.87597656, -0.49951172, 2.0839844, -0.1472168, -4.0664062, -0.83984375, 0.8125, 1.6044922, -2.5195312, -2.921875, 1.9619141, 0.06933594, -1.0419922, 0.6464844, -1.3691406, 2.2910156, 1.390625, -0.8847656, 0.91845703, 0.9399414, 1.0878906, -1.2236328, -1.1425781, -1.1386719, -1.6279297, 0.064697266, 0.85498047, -0.015335083, 0.4663086, -1.2246094, 2.0410156, 0.95996094, -1.8486328, 0.60595703, -0.5385742, -0.3256836, -3.9296875, 2.0605469, 0.5517578, -0.5649414, -2.4453125, 3.2929688, 0.32714844, -1.3378906, 0.26123047, 0.25439453, -1.7431641, -0.17382812, 1.3564453, 0.42797852, -0.7446289, 0.11206055, -1.1396484, -4.71875, 1.8164062, -1.0849609, -0.08483887, 1.6435547, -1.0556641, 1.4677734, -0.828125, -0.6152344, -1.2148438, -0.09649658, -2.7128906, -0.8881836, 1.3222656, 0.2644043, -2.9023438, -2.3105469, -1.8847656, -1.1835938, -1.0175781, 0.59033203, 2.7558594, 0.104003906, 1.3779297, 0.3642578, -0.025421143, 2, 1.8320312, 1.2236328, 0.7416992, -0.119506836, -0.5957031, -0.74853516, 0.3774414, 2.5390625, 4.21875, -2.0117188, 0.48168945, 0.13183594, 3.3710938, -0.44506836, -1.2744141, -3.5136719, -1.0410156, -2.7636719, -2.2441406, -0.11657715, -2.8710938, 1.4833984, 1.1064453, -0.93896484, -3.3867188, -0.058746338, -0.73535156, 1.0419922, -0.8461914, -0.6113281, 0.3713379, -1.8300781, 0.050476074, -0.89746094, 2.203125, -0.8198242, -0.42285156, -2.1425781, 2.9023438, 0.69873047, 1.2460938, -0.5341797, -0.77978516, -0.21130371, -0.59228516, -0.6821289, -1.3125, 1.2880859, 1.0166016, 1.7246094, 0.3864746, -0.75146484, 1.3300781, 0.37573242, -0.09136963, -0.78564453, -0.44921875, 0.88427734, 0.67822266, -0.7578125, -2.3945312, -1.9384766, -0.65234375, 0.40234375, 2.3359375, -0.12976074, -1.3037109, 0.49414062, 0.5727539, -0.17956543, 2.2597656, 0.61083984, -1.5029297, 1.3779297, -0.07006836, -2.2460938, -3.5527344, -0.12384033, 3.1230469, 0.1439209, 0.1616211, 1.0654297, -0.5234375, 1.15625, -1.8652344, -3.9003906, -1.7871094, -1.2275391, 0.12561035, 1.5732422, 3.3828125, -2.8398438, 1.1757812, -1.2646484, 0.47998047, -2.6152344, 0.97314453, -0.6611328, 1.609375, 1.5078125, -1.1787109, 0.27685547, -0.19018555, 3.0722656, 0.13903809, 1.4648438, -0.67089844, 1.7617188, -3.2167969, -0.6816406, 2.2890625, 0.57373047, -1.1503906, -0.16271973, 0.9765625, 2.3964844, -0.105163574, -0.7504883, -0.50146484, -2.3515625, -2.1757812, -1.5966797, -1.9697266, -1.1728516, 0.051818848, 0.3955078, -2.0898438, 0.62060547, 2.0117188, 1.2041016, -0.4338379, 1.9765625, -0.05319214, 1.0927734, 0.5727539, 1.3720703, -0.5888672, 0.11053467, -1.1328125, -2.453125, 2.4824219, 1.8720703, -1.2138672, 0.8051758, 0.4326172, -0.8378906, 2.8125, 0.97265625, -0.56640625, -1.4521484, 0.9658203, 0.7675781, 3.2773438, -0.12792969, 2.0625, 2.7636719, 0.42041016, 2.3710938, 1.3603516, 1.0371094, 1.5595703, -0.016143799, 1.4648438, -3.140625, 1.0146484, -0.4580078, 0.9584961, -1.3828125, -1.3017578, 0.99902344, 3.2636719, 0.24255371, -3.3457031, 4.4648438, 0.1850586, 0.27929688, 1.7851562, -0.9506836, -1.2236328, -0.0022068024, 2.3613281, 1.0859375, -0.25512695, 1.8447266, -0.17358398, -1.6181641, 0.21032715, -1.7246094, -0.5410156, 1.5078125, 0.08728027, -0.4699707, -1.0029297, 0.35351562, -0.29589844, -1.1816406, 1.1679688, -1.8154297, 1.7304688, 0.66064453, 3.3300781, 0.3630371, -1.0800781, -0.3798828, -1.2421875, 0.059906006, -0.78564453, 0.99853516, 0.1616211, 0.71191406, 0.1977539, -0.12438965, 0.7553711, -1.5292969, -0.41137695, -0.7529297, -2.0625, -1.59375, 0.40625, -1.9179688, 0.2487793, 1.5283203, -1.4023438, 0.44750977, -0.6435547, -1.6220703, -2.6738281, 0.114990234, 1.5410156, 0.22961426, 1.15625, 0.02104187, 0.8051758, -6.1367188, -0.71484375, 0.26367188, -2.1777344, 1.1962891, -2.8378906, -0.0647583, 1.2509766, -0.38745117, -0.077941895, -0.5732422, 0.4741211, -0.5571289, -0.25317383, -2.9257812, 0.20495605, -3.6796875, -0.10876465, -2.7539062, 0.8989258, -3.1503906, -1.9804688, -0.38867188, -0.7026367, 5.3554688, -1.5380859, 0.79296875, 0.12310791, 1.5761719, 1.3007812, -2.203125, -2.5410156, -1.3134766, 0.7807617, -1.3759766, -3.1015625, -3.7441406, 0.34277344, 0.25390625, 0.24255371, 0.9375, 0.9926758, -1.3486328, 1.2041016, -1.1552734, -1.4746094, 1.2392578, -0.011383057, 0.35839844, -0.87939453, 1.1943359, -2.7421875, -0.09313965, -1.4003906, -0.40014648, 1.6435547, -0.9785156, 1.5185547, 0.3022461, 0.004119873, 0.6982422, -0.76123047, -3.078125, 1.3271484, 0.23608398, -2.5, 0.54785156, -0.5527344, -2.21875, -1.875, -0.65527344, 1.7636719, 1.3583984, 3.03125, 0.57373047, 0.95996094, 0.6166992, 1.4316406, 0.1005249, 0.6015625, -1.0898438, 4.3046875, -1.4052734, -1.6445312, 0.2331543, 2.1835938, -4.1601562, -1.9521484, 0.5683594, 0.07397461, 3.640625, -1.3730469, 1.7216797, -0.13745117, -0.056152344, 2.4980469, -1.2900391, -1.2402344, 0.8491211, -1.0556641, 0.62060547, 0.27441406, 0.8510742, 1.7382812, -1.3056641, 1.7314453, -0.6435547, 0.5600586, -1.1679688, 0.003665924, -0.8222656, -0.009216309, -1.4335938, 3.2011719, -0.19433594, 0.44677734, 0.8149414, 0.6508789, 1.1162109, -1.3388672, -0.52978516, 1.0087891, -0.03265381, 0.6308594, -0.9042969, 1.8867188, 1.3046875, 0.41430664, -0.03274536, -3.2929688, 0.19458008, 1.7480469, -1.3486328, -2.3496094, -3.2207031, 3.0292969, -0.6147461, -0.6567383, -0.7290039, 1.8935547, -1.5742188, -1.7919922, 1.0527344, 0.8388672, -0.3840332, 0.6977539, -0.88916016, -1.2871094, 1.2070312, -1.6103516, 0.22753906, 1.3652344, 1.2236328, 0.8095703, -1.1113281, 1.1162109, -0.2166748, 0.13110352, 1.0322266, -0.49047852, -2.0117188, -0.28076172, -2.0859375, -0.011634827, -0.4152832, 0.03643799, -1.2128906, 1.9316406, -0.12988281, 1.1210938, -0.9506836, 2.9941406, 1.5195312, -1.8398438, 2.2109375, -2.9765625, -2.2207031, -2.7011719, -4.5195312, 0.9472656, -1.2705078, -1.1103516, 3.4238281, 0.51953125, -1.15625, 2.1601562, -0.2578125, -2.6074219, -2.8632812, 0.38427734, -0.27416992, -0.29882812, -2.7324219, 2.3554688, 0.19628906, -4.3945312, -1.3603516, 0.57373047, 0.34765625, 1.3173828, 0.62841797, -2.1289062, -1.3349609, -1.0927734, 0.90478516, -0.65185547, -0.0014457703, 1.2519531, 0.83447266, 0.20129395, -1.4990234, -0.84716797, 0.4104004, -1.8251953, 1.2519531, 1.7597656, -0.7050781, -0.85595703, 0.18615723, 0.3334961, 2.0507812, 0.23754883, -1.0771484, -3.2363281, 0.2956543, 0.78222656, -0.30664062, 0.8442383, -7.814169e-05, -1.9912109, 0.8256836, 1.1787109, 2.2421875, 2.8925781, -0.43579102, -1.7783203, -0.19677734, 0.26611328, -2.3613281, 0.9790039, 0.7319336, -0.5605469, -0.007881165, 0.16320801, 0.7626953, 0.7729492, -1.6357422, -0.111328125, -2.7109375, -0.061767578, 1.046875, 0.5541992, 1.9746094, -0.51464844, -0.34375, 0.34375, -1.3427734, 0.6826172, 0.13061523, -0.15197754, -0.15515137, -0.9707031, 1.2382812, -1.1416016, 0.5917969, 2.546875, -0.7631836, -0.32739258, -1.3779297, -0.3400879, -2.3457031, -1.1318359, 0.9707031, 0.25219727, 2.7695312, -2.2890625, 0.9482422, -1.3837891, -0.088256836, 0.29589844, 1.9287109, 0.9560547, 1.25, 1.1552734, 0.95166016, 0.5253906, 0.79248047, 0.2052002, -0.3227539, 2.2324219, 0.16931152, 0.8833008, 1.0078125, -2.046875, 0.36010742, -1.2148438, 2.0742188, 3.0371094, -0.23413086, 2.203125, 0.004940033, -2.28125, 3.7871094, -0.3996582, -1.3603516, 1.3671875, 0.13183594, -0.7973633, 0.28051758, 0.25219727, -2.8554688, -1.0195312, 0.86328125, -2.6523438, 1.2871094, 1.4560547, -1.1767578, -0.8510742, -1.5986328, -0.25219727, -0.41577148, -0.8105469, -0.84228516, -1.4248047, 1.0595703, -1.0302734, 1.8046875, 2.6835938, -2.1933594, -0.82177734, 1.90625, -1.2021484, 1.2792969, -0.5498047, -0.00057935715, -0.765625, 0.3515625, 3.1425781, 0.60791016, 0.11468506, -0.41674805, 0.57128906, -2.1621094, 0.4428711, -0.640625, 0.81396484, -0.8876953, -0.9951172, 1.8916016, -2.7988281, -0.0029392242, -1.5498047, -0.033447266, -0.0069389343, 2.1289062, 2.7109375, 1.0986328, -0.94921875, 0.66845703, -2.1757812, -3.0742188, -2.015625, -1.0087891, 0.1104126, -0.11779785, 0.984375, -1.0390625, 0.38793945, 1.8251953, 0.35839844, 0.14575195, -1.0556641, -0.90185547, -0.76123047, -0.94433594, -0.7402344, -0.91503906, 0.30981445, 3.1601562, -0.11981201, 0.30541992, -2.9707031, -1.7304688, 0.9033203, -1.1386719, -1.4150391, 1.4804688, 2.3242188, -0.060058594, 1.4658203, 0.9824219, -2.2324219, 0.7338867, -2.1894531, 0.9941406, 1.8486328, -0.21435547, 1.7617188, 0.3010254, -1.6611328, 0.7919922, -2.5507812, 2.3417969, -0.8823242, -1.15625, -0.14624023, 0.73095703, -0.8515625, -2.4667969, 0.18725586, -0.63427734, 1.046875, 0.42871094, -0.7319336, -0.45336914, -1.390625, -4.4921875, 0.40844727, -1.5253906, 0.10638428, -0.39038086, 0.32177734, -0.45288086, 2.4941406, 2.2109375, 1.8798828, 0.5839844, -1.3144531, 0.15319824, 0.24914551, 2.7617188, 2.3515625, -1.6181641, -1.0673828, -1.5146484, 0.028457642, 0.56591797, -0.3713379, -1.3623047, -0.11627197, -1.4755859, -1.2216797, 0.7104492, -0.24975586, 2.0800781, -0.9301758, -2.4003906, 1.9980469, 1.7646484, -1.5878906, 2.8789062, 1.8447266, 3.59375, -2.5273438, 1.6357422, -1.2998047, -1.203125, 2.4042969, -0.59228516, 1.2412109, -0.6591797, -1.5761719, 1.1025391, -0.8149414, -1.1337891, -1.359375, 2.0195312, -0.9223633, 2.8867188, 1.4970703, -1.2568359, 0.54003906, 0.6303711, -0.03277588, 1.3496094, 1.4101562, 1.4462891, 0.89404297, -0.083618164, -1.9345703, -1.5263672, 1.4208984, -1.0849609, 1.0332031, 1.9697266, 0.3486328, 0.099487305, 1.5595703, 0.19433594, 1.6210938, 1.1308594, 3.453125, 1.1318359, 1.2314453, 0.4638672, 1.6972656, 1.3173828, 2.0683594, -1.7236328, 0.7583008, 1.0478516, 2.2519531, 1.7714844, -1.6357422, 1.8583984, -1.0048828, -1.1279297, 0.38623047, -0.15075684, -1.0839844, -3.2617188, -0.55078125, 0.87939453, 0.16442871, -2.8496094, -0.2290039, -2.2304688, -0.73046875, -1.375, 0.2578125, 2.7070312, 0.45629883, 0.23620605, 0.703125, -1.9130859, 2.0410156, -3.5996094, 1.3076172, 2.9589844, -1.1328125, 0.33032227, 0.3708496, 1.6289062, -0.5488281, 0.49536133, -0.24414062, 0.41967773, 2.3242188, 0.87158203, -0.046081543, 0.93896484, 0.17028809, 1.0029297, -0.4091797, -0.0132369995, 1.5263672, -2.375, -2.5019531, -3.0117188, 2.5683594, 1.5185547, 0.7675781, 1.2490234, -2.6328125, 1.1367188, -0.59375, 1.4970703, -2.65625, 1.4804688, 0.23022461, -1.2304688, -0.5449219, 0.73291016, 0.35717773, 1.9667969, 0.8774414, -1.7236328, 2.1914062, 1.3115234, 2.1660156, 0.011650085, 1.8798828, 0.39990234, 0.53515625, -0.68310547, 1.7480469, 0.29003906, -0.9160156, -3.6230469, 2.7109375, 1.5488281, -0.0084991455, 1.0537109, -0.46289062, -0.5385742, 0.28051758, 0.38305664, -1.6298828, -0.7294922, 1.0527344, -0.2055664, 0.27246094, -1.25, -0.38085938, 0.6748047, 2.9492188, -0.40673828, -0.99658203, 0.77783203, -1.1328125, 2.8945312, 0.8691406, -1.3925781, -0.45629883, -1.6572266, 1.0537109, 0.69970703, -2.4824219, 0.04989624, 2.6601562, 0.6713867, -0.8984375, 1.4150391, -0.032958984, 1.4785156, 1.5058594, 0.37109375, -0.5683594, -2.5058594, 1.3535156, 0.050079346, 0.75, 2.8027344, -1.2841797, 1.3818359, -2.1210938, 0.48754883, 0.4658203, 0.27612305, -1.1269531, 1.7695312, 3.3066406, 1.5595703, 0.6772461, -2.2109375, -3.8066406, -0.60791016, -1.4140625, 2.6425781, -1.0527344, 0.75634766, -0.17651367, -0.3635254, 3.453125, -0.09674072, -0.4880371, -0.83154297, -0.21520996, 1.4433594, -0.7421875, 1.2734375, -0.5185547, 1.0566406, 2.1308594, 1.0878906, 0.15478516, 1.9316406, 1.8945312, 2.3007812, -0.3527832, -1.6191406, 2.1582031, -1.5771484, 0.99072266, 1.4794922, -0.7138672, 1.3320312, 0.16418457, 0.037597656, -1.2939453, -1.6699219]}, "B0817KW1JV": {"id": "B0817KW1JV", "original": "Brand: All Power America\nName: All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red\nDescription: \nFeatures: 12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG)\n18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load\nFuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start\n2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit\nEPA Certified. Non C. A. R. B. Compliant, not available to ship to California\n", "embedding": [0.26245117, -0.70703125, 0.6435547, 1.0400391, -1.9208984, 0.39331055, 3.0253906, -0.9121094, -0.8496094, 0.90527344, 0.34423828, 0.29492188, -1.25, -1.7128906, -0.45898438, 0.14624023, 0.25146484, 2.1152344, -0.38183594, -0.39208984, 0.69970703, -0.6176758, 1.9794922, -0.73828125, 0.61865234, -1.0019531, 4.7460938, -1.9013672, -1.6962891, 0.36572266, 0.24072266, -1.3457031, -2.6328125, 1.7919922, -1.3564453, 1.2265625, 1.0742188, 1.4921875, -1.7919922, 1.3251953, -0.18383789, -0.7597656, 1.4736328, -0.63964844, -1.1738281, -1.6796875, 0.7661133, -0.6152344, 1.3691406, 1.0976562, 1.9648438, 0.3876953, 0.53027344, -0.5932617, 1.3212891, 0.37670898, -0.12414551, -1.3271484, 2.4726562, 2.8242188, 0.97558594, 0.8408203, -0.23718262, 1.1201172, -2.7773438, -0.6879883, 0.23132324, -0.7270508, -0.058441162, -1.7832031, 2.8203125, 1.1884766, -0.25756836, -0.31567383, -0.99560547, 2.2714844, -4.9921875, 1.8085938, 3.4121094, 1.1259766, -1.2099609, -0.29467773, 1.5439453, -1.3759766, 1.3798828, 0.26245117, -1.6503906, -0.64453125, -2.4628906, 1.5058594, -1.9453125, 2.1328125, -4.3359375, -4.296875, 2.75, 1.0771484, -1.9296875, 0.7524414, 2.9160156, 3.171875, 1.4755859, 0.25146484, -0.29077148, -0.7475586, -0.08148193, 0.9086914, 2.5390625, 0.0769043, -2.5722656, 1.1171875, -1.7207031, -0.98828125, 1.25, -0.14050293, -0.875, -1.7236328, 2.8964844, -0.12780762, 4.15625, 1.4179688, 2.9980469, -1.3828125, 0.99609375, -0.44726562, 1.4248047, -1.7060547, -0.016189575, 3.3867188, 4.1171875, -0.6616211, 0.45336914, 0.734375, 1.2587891, -0.5205078, 1.4541016, -1.1464844, 0.48608398, -2.234375, -1.8193359, -0.0029296875, -2.4785156, 0.09234619, 3.1113281, -2.6230469, -4.4101562, -1.90625, -2.3046875, -0.13122559, -1.0712891, -0.87158203, 1.1591797, -3.2089844, -1.7880859, -3.3730469, -0.60302734, 0.6816406, 0.021606445, -1.2558594, 1.0673828, 0.9916992, 0.48535156, -0.79589844, -1.4453125, 0.12426758, 0.87060547, -1.9736328, 2.2558594, -0.19555664, -0.15515137, -0.5371094, -1.7900391, -2.5039062, 0.7397461, -0.83251953, -0.06713867, -1.6142578, -1.2050781, 0.31811523, 0.24743652, -1.3896484, 0.6308594, 0.671875, -0.35302734, -0.88378906, 0.8496094, -1.1757812, 1.1630859, -2.5605469, -0.8276367, -2.6269531, -0.95996094, -0.94970703, -1.5957031, 0.05227661, 2.0585938, -2.7773438, -2.9550781, -1.2412109, 2.7714844, 0.25854492, 0.42504883, 0.21411133, 0.2614746, -1.4765625, -1.2363281, -4.328125, -0.32470703, -2.0761719, -1.0673828, -0.23461914, 1.2509766, 0.8564453, 3.7402344, -0.93115234, -2.5410156, -3.8847656, 0.07495117, -0.43310547, -0.4182129, 1.6289062, 0.45141602, -0.5205078, 2.9394531, -1.3251953, -0.20373535, 0.7529297, 0.4230957, 0.3232422, -2.6523438, -1.2851562, 1.4023438, -0.40600586, 0.8154297, -1.1943359, -0.09991455, 0.10687256, -0.42529297, -0.25585938, 0.8676758, 0.27392578, 0.8041992, -0.02015686, 1.0214844, 0.66015625, -0.4255371, -1.2431641, -2.9160156, 1.8271484, 0.78808594, 0.074157715, 0.35498047, -3.0996094, 0.25195312, -0.8457031, -1.7373047, 2.2539062, 0.2578125, 1.0957031, 0.52490234, -2.0136719, 2.5976562, 1.0146484, 1.3320312, -1.0673828, 0.58496094, -2.0058594, 2.1289062, -0.36865234, -0.9394531, 0.48486328, 0.9682617, 1.2226562, 0.4807129, 1.2382812, 0.95410156, 0.46191406, 0.5800781, 3.6660156, 0.68066406, 2.5585938, -0.3449707, -2.796875, -0.61376953, -2.9394531, -0.5107422, -0.35620117, -1.0390625, 0.6855469, -1.7519531, 2.0078125, 2.984375, -2.2792969, -3.8144531, 2.015625, -0.101989746, 2.6210938, 3.3457031, -0.6772461, 0.29907227, 0.29785156, 1.0693359, 0.22998047, -0.1348877, 2.9453125, -0.15612793, -0.32226562, -0.21984863, -4.2460938, 1.1455078, 0.6035156, 0.6635742, -1.2519531, -0.34179688, 1.8046875, -3.7753906, 0.8354492, 0.93359375, -3.078125, 0.29956055, 1.625, -0.10272217, 0.9238281, 0.01663208, -0.14624023, -0.69091797, -0.91796875, -0.7753906, -0.5019531, -1.1494141, -3.1015625, -0.8276367, -1.2353516, 0.63378906, -2.5175781, -1.1533203, 0.33496094, -1.6025391, -0.8618164, 2.6074219, -1.4990234, 0.6269531, 0.7089844, -2.3085938, -1.7988281, -0.3400879, -2.4960938, -0.22790527, -1.7324219, -1.3945312, -1.6875, 1.6630859, 2.1386719, 1.5478516, -2.6074219, -0.6279297, 0.38916016, -0.7597656, 3.7851562, -0.6635742, 0.97265625, -0.3244629, 0.63378906, 0.12780762, -0.48242188, 0.65527344, -3.5800781, 0.3544922, -3.5722656, 1.8330078, -1.4316406, -1.1230469, -0.67626953, 0.11260986, -1.1513672, -0.059631348, 0.8432617, -0.62890625, 3.5488281, -0.28222656, 1.9912109, 0.6621094, -1.8037109, 1.2001953, -1.6611328, -1.0800781, 1.1054688, -1.1074219, -0.6069336, -0.57177734, -1.6074219, 0.77001953, 1.4130859, -2.8789062, -0.6542969, -0.16394043, -1.0292969, 0.5800781, -0.9995117, 2.4667969, 2.7324219, 1.2011719, -0.4284668, -0.9604492, -2.6035156, -1.0664062, -0.7158203, 0.5288086, -2.0605469, 0.75, 2.1152344, 0.9301758, 1.6123047, -0.13684082, -1.5253906, 0.59277344, -3.8867188, 2.1484375, 1.8574219, -0.88427734, -0.07171631, -0.066101074, -0.10357666, -3.2714844, -0.8959961, 4.4140625, -0.20239258, 3.7324219, 0.90966797, 0.7553711, 0.6723633, 1.8925781, -0.5180664, -1.2265625, -3.6171875, 4.5664062, -0.51220703, 1.0751953, 1.21875, 1.5888672, -2.4746094, 0.65625, 2.8242188, 2.4101562, 2.8222656, 2.2089844, 2.015625, 1.6474609, 1.1796875, 0.85839844, 0.06738281, -0.4724121, 0.23657227, -0.35913086, -0.98779297, -1.6865234, 1.5107422, -0.6621094, -1.1679688, 0.12005615, 3.1699219, 0.5786133, -1.7890625, 0.42358398, 0.040374756, -1.4707031, 4.3359375, 2.3476562, -1.5742188, 1.6982422, -0.62597656, 1.3173828, -0.6972656, -0.39697266, -0.036895752, 2.5800781, 1.4638672, -0.25854492, 0.40942383, 0.77246094, -0.52783203, -0.85058594, -0.39868164, -1.2822266, 0.10229492, -0.1517334, -0.8925781, 1.7490234, -0.8774414, -0.51953125, -0.64941406, 0.000729084, 0.052612305, 0.5498047, -1.1933594, -1.0224609, -1.6552734, -0.32543945, 0.70996094, 3.3964844, 0.61328125, -0.42089844, 0.75390625, -1.1005859, 1.6318359, -0.6899414, 0.23937988, 0.36035156, -0.21484375, -1.3251953, -0.64404297, -0.38867188, 1.5146484, -0.99560547, -1.4921875, 1.6894531, 1.0732422, -0.22509766, 0.6035156, 1.0244141, 0.019515991, -0.42089844, -1.6689453, 2.7324219, 0.8149414, 0.6459961, -1.5878906, 1.5498047, 2.5996094, -2, -0.16296387, -1.8300781, -2.015625, 0.22216797, -0.6098633, -0.23449707, 4.1601562, 1.8105469, 0.59716797, -0.66503906, 0.042938232, -3.3671875, -1.2724609, 0.7817383, 2.5859375, -3.2109375, -1.6816406, -0.59814453, 1.6142578, -0.5073242, 0.40893555, -1.8007812, 0.67822266, -0.9980469, -0.40942383, -0.57470703, 3.0546875, -0.3154297, -1.8476562, -1.0634766, -0.34179688, 2.6796875, -0.013114929, -0.7949219, -1.2333984, 0.88623047, 0.2668457, -0.83496094, 2.3203125, 3.5546875, -1.6113281, -1.8164062, -0.79589844, 1.5498047, 2.0175781, -0.022781372, -2.3203125, -2.4296875, 1.6484375, 0.018295288, 0.41064453, 0.20495605, -0.91308594, -0.57666016, -1.6865234, 0.36987305, 1.6923828, 1.4082031, 3.4257812, -0.41992188, 1.8369141, 1.9677734, -1.7646484, -0.61376953, -1.5927734, 0.5991211, -2.0097656, 1.9570312, -0.6777344, -1.3066406, 0.6713867, -0.15014648, -0.7583008, 3.4003906, -1, 0.44091797, 0.23144531, 1.0234375, 0.5727539, -0.6347656, 3.2949219, 1.1181641, 1.8427734, 1.3134766, -0.5053711, -1.6445312, 2.7832031, -1.3291016, -0.3713379, 1.2666016, -1.3496094, -1.0087891, -0.5605469, -0.28637695, -2.9707031, -1.5976562, -1.1738281, -0.38867188, 1.3330078, -1.0556641, 2.0019531, 0.8618164, 0.18139648, -2.6523438, 0.20251465, 0.46923828, 1.1113281, 2.5175781, -1.4414062, 3.2597656, 0.12414551, 0.45629883, 0.85595703, 1.7832031, -3.5097656, -1.1289062, -0.9379883, -1.2539062, -1.6269531, 1.3066406, -0.027954102, -0.5546875, 2.1035156, -0.21533203, 1.0888672, -1.0039062, 2.1933594, 1.3662109, -1.3671875, -0.65527344, 0.9995117, 0.21008301, 0.73046875, -0.44018555, -0.9272461, 1.2880859, 1.5488281, 1.1005859, 1.4560547, 0.28466797, 0.40039062, -3.4902344, -0.75390625, -1.7109375, -0.10638428, 0.45141602, 0.3791504, -1.6787109, 0.58447266, -0.5888672, 0.49682617, 1.4355469, 0.33544922, -1.2275391, 1.7255859, 1.2734375, -1.3808594, 0.27441406, 1.1884766, -3.7792969, 0.0836792, 0.81591797, 0.07885742, 2.5839844, 2.9199219, -1.0859375, -1.7763672, -0.90234375, -1.9248047, 2.0488281, -1.2431641, -0.6875, 1.2226562, 0.67626953, 3.8730469, 0.67089844, -2.7167969, -0.6567383, 1.3730469, -0.7001953, -0.31225586, 0.15014648, -1.015625, -1.7519531, -4.453125, -2.7753906, -0.46289062, -0.4921875, 0.984375, 0.7885742, -2.2226562, -0.011734009, 1.4628906, 1.6201172, -1.0830078, 0.9448242, -2.7910156, 1.0029297, 0.3395996, -1.4814453, -1.5898438, 0.5756836, 1.1025391, -1.3164062, 2.2773438, -2.4375, -2.7246094, -2.5449219, 2.3632812, -0.9428711, 1.1044922, -1.1210938, 1.2509766, 1.7099609, 1.6982422, -2.0859375, 0.9355469, -2.6210938, -2.7617188, 1.8623047, 0.031951904, 0.1538086, 0.1439209, -2.4335938, 1.6425781, 1.2421875, 0.99560547, 1.4560547, 1.6494141, -2.2695312, 0.8125, -0.04421997, -0.3400879, 0.117126465, 2.4199219, 2.0546875, -0.33789062, -1.2021484, -1.2177734, 1.3710938, 0.025878906, 0.94677734, -1.1357422, -0.8574219, -0.088378906, -0.36450195, -0.32128906, 2.3652344, -0.74560547, 0.31518555, -0.37719727, 0.7050781, 0.18408203, -2.1328125, 3.2167969, 2.2480469, -0.99560547, -3.171875, -0.1895752, 1.7236328, -0.093811035, 1.6523438, -1.7119141, -0.92529297, -1.8681641, -1.5107422, -0.4724121, 1.5146484, 2.3984375, 0.22155762, -2.2128906, 1.3955078, 0.52490234, -0.07299805, -1.2099609, 0.16064453, -0.69384766, -1.3251953, 2.1777344, 1.6699219, 0.63183594, 0.8100586, -0.72998047, 2.7402344, -0.8286133, -2.8496094, 0.29125977, -2.6777344, -0.20178223, -0.12298584, 1.3945312, -1.9736328, -0.6977539, -0.10559082, -1.1533203, 1.6894531, 1.1083984, -1.9287109, 1.4648438, 2.5527344, 1.2792969, -2.1347656, 0.6738281, -1.40625, -0.79296875, 3.2988281, -3.6835938, 2.9511719, 1.3203125, 0.2866211, -2.1660156, -0.36547852, 0.02406311, 0.42749023, 1.6806641, 1.5703125, 1.9130859, 2.0605469, 0.43701172, 1.6367188, -1.2900391, 0.77734375, 0.17834473, 1.3828125, 1.0390625, -0.09765625, 0.96875, -3.3925781, -0.60058594, -0.64697266, -1.5517578, -1.4931641, 0.63427734, 1.0351562, -2.9726562, 0.3720703, 0.37329102, 1.7880859, -2.2558594, -1.1142578, -0.21655273, 0.98876953, 0.62597656, 0.34716797, 1.9746094, -0.10144043, -1.6367188, 1.4208984, -0.07550049, 0.26123047, -0.21191406, 0.79052734, -0.45263672, -2.1972656, 0.7597656, -0.17016602, -1.1054688, 0.4074707, 1.4853516, 1.1494141, 2.2949219, 0.1373291, 2.2304688, -0.56640625, 1.0976562, 0.6074219, 4.265625, 1.6650391, 0.8354492, 2.1640625, -0.40454102, 0.171875, -2.2714844, -0.8227539, -0.34277344, -1.4267578, 0.62402344, -1.2421875, 0.11437988, 0.7011719, 1.4794922, -2.1269531, 2.0839844, -0.19140625, -1.1679688, 1.4804688, 1.8681641, 1.0283203, 2.3007812, 0.8959961, 1.3017578, 2.0605469, 2.0292969, -0.72509766, -1.1953125, 0.56884766, 0.59716797, 2.1328125, -0.58496094, 1.5556641, 0.27075195, -0.6459961, -0.8066406, -0.68115234, 3.203125, 0.50634766, -0.07196045, -2.1015625, 2.6484375, -0.26342773, -2.1328125, -1.2871094, -0.9165039, -1.8427734, 0.6401367, -1.6855469, -0.8095703, 0.18798828, 2.8261719, 2.4414062, -1.5205078, -0.52783203, 1.1162109, 0.6430664, -0.27929688, -0.23022461, -0.3864746, -2.7050781, -2.5332031, -0.25146484, -2.1484375, 0.35058594, 0.33911133, 1.25, 0.1239624, -1.9101562, -1.0820312, -2.0507812, -0.85498047, 1.4326172, 1.5273438, -2.6953125, 1.1943359, 0.37963867, -1.5117188, 0.66748047, 1.5810547, -1.0947266, 1.5634766, -1.0517578, -2.7949219, 0.19665527, -2.9960938, -0.99072266, 2.5097656, 1.0644531, 1.7060547, 0.9165039, -4.4101562, -0.8676758, -1.9013672, -1.8183594, 1.8691406, -0.16870117, -1.7119141, 0.8623047, 0.7475586, 2.4472656, 0.22827148, -0.9926758, 1.0712891, -0.07336426, 1.6699219, 1.0791016, -1.3828125, 3.7792969, 0.88720703, -0.78515625, -0.036834717, 1.71875, 0.27685547, 1.4326172, 1.2890625, -0.93847656, -0.77734375, 1.1650391, -0.20800781, -1.3271484, 0.5449219, 0.45874023, 1.3544922, 0.78808594, 1.0087891, -1.9833984, -2.9902344]}, "B010O0ZWWQ": {"id": "B010O0ZWWQ", "original": "Brand: SHASTA VENT\nName: Shasta Vent 8\" Dia. I.D. Class A, All Fuel, SS \"Chimney Cap\" for 8\" Shasta Vent Chimneys\nDescription: \nFeatures: Oil, coal, natural gas, propane burning appliances\nNatural drafting building heating appliances\nZero-clearance factory-built fireplaces\nDouble wall chimney system for residential and building heating appliances\n", "embedding": [-1.6787109, 1.515625, 2.5019531, -2.4316406, -0.16064453, 0.36523438, 1.4570312, -1.2890625, 2.5625, 2.296875, -0.14624023, -0.5097656, -2.3398438, -2.7246094, 1.0566406, 1.9013672, 0.54003906, 0.8286133, 0.9472656, 0.8535156, 1.6513672, 1.2148438, -2.4550781, -1.6777344, 1.9082031, 0.7758789, 2.2519531, -2.4980469, -1.4169922, -2.3125, -1, 0.52685547, -0.99121094, 2.4667969, -0.9326172, -0.57373047, -0.3725586, -2.4023438, -1.6523438, -2.0898438, -0.8417969, 1.0927734, 0.41503906, 1.9248047, -3.3613281, -1.0810547, 1.9433594, -0.13928223, 0.71191406, 0.40698242, -0.48999023, 1.1123047, -1.3837891, 0.8076172, -0.37597656, -0.1875, -0.7631836, 0.25976562, 2.2773438, 1.8193359, 0.90625, -2.0546875, -1.0449219, 1.6416016, -0.6411133, 2.2441406, 0.7402344, -0.80371094, 0.20605469, 2.2226562, 0.80078125, -0.07312012, -0.42944336, 0.12963867, -0.7583008, -1.7197266, -6.1796875, 2.0761719, 1.6455078, -2.2734375, -0.8652344, 0.09875488, 0.2626953, -0.058807373, -0.91259766, 1.8164062, -1.5175781, -1.1650391, -2.0800781, -1.8212891, -1.3701172, 2.0351562, 0.8432617, -2.8476562, -1.1025391, -2.2050781, -0.23364258, 0.62841797, -2.1523438, 0.16467285, 0.17932129, 2.4414062, 1.8476562, 2.5117188, -2.2207031, 1.4990234, -0.28857422, 0.45825195, -0.77783203, -0.6191406, -0.9223633, -2.0175781, 0.003238678, -0.18457031, 0.6767578, -1.8125, 0.33618164, -2.3730469, 3.71875, 0.27001953, 2.6757812, 0.7890625, 0.13842773, -1.3837891, 1.2822266, 1.3691406, -1.2490234, 1.2724609, 3.9804688, -2.1210938, 0.3322754, -1.7529297, 2.96875, -1.6835938, -1.328125, -2.2675781, -0.6635742, 0.30810547, -1.9482422, 1.0029297, -3.2285156, 0.8696289, 1.9609375, 1.1835938, -3.0507812, -1.9804688, 0.24560547, 2.3964844, 0.3022461, -4.125, 1.7802734, -0.13989258, -0.48535156, -2.9199219, 2.6660156, -0.8417969, -0.61621094, -3.8632812, 1.3886719, 0.69921875, -0.0051612854, -0.24682617, -2.7148438, 1.2871094, 1.1289062, -3.1269531, 0.53027344, 0.98876953, -2.5058594, 2.953125, -0.72509766, -2.125, -1.5527344, -0.84521484, 0.32910156, 0.25, 0.33789062, 1.4707031, 0.5698242, 0.037750244, -1.9541016, -0.42456055, 1.7636719, -1.5302734, -1.6425781, -0.42333984, 1.4462891, -0.91259766, -0.5053711, 0.079711914, -0.8569336, 3.1855469, -0.5341797, -0.49902344, 1.3808594, -0.89453125, 0.56591797, -2.3652344, 2.0117188, 0.32958984, 0.26708984, 1.6542969, -1.6699219, 1.3847656, -0.35302734, 1.1210938, 0.15063477, 0.53564453, 0.2479248, 1.6699219, -0.2142334, 0.80908203, 1.1533203, -0.12963867, 0.88134766, -1.6738281, 0.0014209747, -1.3212891, 0.78466797, -0.08026123, 2.7265625, 0.9824219, -1.2675781, 0.4399414, 1.25, 0.8598633, 0.3479004, -0.9453125, -2.8632812, -1.7294922, 3.6171875, 1.7861328, -2.9023438, -0.13232422, 0.27954102, 4.3046875, 2.5839844, 0.72216797, 1.3007812, 0.46069336, 1.3398438, -1.2529297, -0.5126953, 2.9023438, 0.42749023, -0.29956055, 1.109375, 1.6777344, 2.0507812, 2.1679688, 0.9042969, 0.5209961, -0.62939453, 3.59375, 0.8925781, 0.87939453, 0.5913086, 0.030578613, 0.21496582, -0.35205078, 1.5566406, -1.3583984, 0.08331299, -1.3134766, -0.57714844, -0.38623047, 0.19372559, 1.3886719, -1.5683594, -1.5371094, 0.38378906, 2.2753906, 1.6699219, -0.54541016, 1.9052734, 1.1494141, 2.0703125, 1.4667969, 1.3964844, 0.9604492, -0.29248047, 0.61035156, 1.6015625, -1.3310547, -0.32373047, 0.60058594, -0.9423828, 0.8911133, -0.25854492, -0.9501953, 3.3925781, 0.20019531, -1.3076172, 2.640625, 1.6181641, -0.4086914, 0.515625, 1.0957031, -0.39501953, 1.6503906, -1.3652344, 0.97216797, -0.5004883, 1.2753906, -2.0117188, -0.36035156, 0.7680664, -0.80371094, -1.6748047, 0.9707031, 0.018814087, -3.6308594, -0.13684082, -1.2607422, -3.2167969, -0.84814453, 0.7890625, -0.7792969, -0.63720703, 1.4042969, 0.7368164, 0.032562256, -0.8847656, -1.015625, 0.14855957, 3.5195312, -0.17492676, 2.4003906, 1.7890625, 1.4570312, -2.0625, -2.0683594, -1.2539062, -2.8476562, -2.3671875, -1.2382812, -1.6425781, 1.1621094, 1.3564453, -1.7148438, 0.049316406, 0.08642578, -0.68603516, -0.57958984, 1.3183594, -1.0078125, -1.1289062, 1.0996094, 0.5961914, 0.08337402, 0.45947266, 2.34375, -1.1289062, -2.2714844, -1.1113281, -1.8974609, -0.6977539, 1.2802734, -0.057891846, 1.3955078, 0.6557617, -0.7680664, 2.4667969, -1.3017578, 1.2441406, 1.9316406, -1.4541016, -2.5703125, -0.39941406, 1.0869141, 0.34521484, -0.45092773, 0.8261719, -0.85546875, -2.1972656, 0.7265625, 0.6567383, 4.328125, -0.045928955, 4.59375, -2.7734375, 0.90771484, -0.65722656, -2.6015625, -1.9404297, -0.22497559, -0.84033203, -0.36987305, -1.7529297, -2.1523438, -0.18798828, 0.6386719, 2.7617188, 0.41552734, -0.45874023, 0.13439941, -0.09088135, -0.91748047, -1.2558594, 1.0351562, -0.41186523, -0.4399414, -0.43237305, -0.47436523, 0.59765625, -1.8779297, -1.234375, 1.2929688, 0.24914551, 0.062561035, 1.3759766, 2.5253906, 1.8359375, 3.3300781, 1.6083984, -2.1347656, 1.4023438, 0.97509766, 1.2041016, -1.7958984, -1.2695312, -2.9648438, -1.9072266, 0.42358398, 2.9785156, 1.0205078, 2.0546875, -1.1503906, -1.28125, -1.0810547, -0.5571289, 0.28466797, -1.109375, 0.7939453, 1.6865234, -1.5898438, -1.3662109, 0.9511719, 0.94189453, 0.25756836, -0.91064453, -1.4121094, -2.1992188, 0.23034668, 1.3144531, -1.3876953, 0.85839844, 0.8520508, 1.1650391, 1.1914062, 1.2773438, -0.24023438, -1.9667969, 1.3808594, -0.049621582, -0.6298828, 1.8779297, 1.4775391, 0.7553711, 1.2148438, -1.1005859, -1.5253906, 1.0400391, 0.5126953, 0.22729492, 1.6552734, -0.080078125, -0.7001953, -1.0429688, -3.7324219, -0.7480469, 0.515625, 0.75146484, -1.453125, 3.4023438, -0.9238281, -0.28125, -2.0957031, -0.25512695, 0.7314453, -2.3632812, 0.37329102, -0.29003906, 1.1044922, 3.1328125, -3.0214844, -0.15405273, -1.9746094, 2.1640625, 0.9160156, 1.5195312, -3.1972656, -0.73339844, -0.69970703, -0.9091797, -0.27075195, -1.2988281, 1.7568359, -0.23181152, 0.8886719, -0.70654297, -0.5986328, -0.9370117, -0.52978516, 3.5390625, -0.7270508, 0.03555298, 0.07800293, -0.40112305, -0.9682617, 1.3183594, -0.2915039, 0.0015192032, -0.69970703, 0.38427734, -0.5488281, -1.0419922, 1.2998047, 0.2208252, 0.14550781, 1.3505859, 1.9550781, 0.9213867, -0.35839844, 1.9179688, -0.032989502, -0.43115234, 1.5175781, -0.97753906, -0.05343628, -0.49926758, -3.9648438, 2.0839844, -2.5253906, 0.88183594, 2.2851562, -0.0491333, -0.7861328, -0.2166748, -0.08905029, -3.90625, -1.9042969, 1.0898438, 0.051727295, -1.0449219, -2.1269531, -1.1210938, 0.10443115, -2.25, -0.025909424, -0.8486328, -0.16467285, -0.14526367, -0.05218506, -1.2949219, -0.0892334, -2.3867188, 2.3496094, -1.2070312, -0.8251953, 1.2851562, -1.4335938, 0.17529297, -2.7324219, 0.5644531, 1.2207031, -1.0419922, 1.5751953, 3.0996094, 0.85546875, -1.5429688, 0.41845703, -1.1572266, 1.4628906, -0.8652344, 0.28710938, 0.6689453, -0.8515625, 1.2763672, -3.046875, 1.0576172, 1.3535156, -3.0898438, 0.6958008, -2.1503906, 0.31835938, 0.85253906, -0.20715332, -3.328125, 1.890625, -1.3652344, 1.4111328, -1.8486328, 0.91796875, -2.1425781, -0.86376953, 1.109375, -2.5371094, 0.30322266, 1.8496094, -0.108947754, -0.7026367, -4.0546875, 0.022415161, 0.8564453, 0.7631836, -2.0117188, -3.4941406, -0.5810547, 0.73535156, 1.0234375, -0.11608887, 0.3100586, 0.28466797, -0.5463867, 0.47045898, -2.5742188, -1.7597656, -2.0625, 1.5527344, -0.98876953, -1.4404297, 0.8071289, 0.008415222, -1.2587891, 0.080444336, -0.123535156, 0.7402344, -1.0253906, -0.58203125, -0.50146484, 2.4804688, -3.6464844, 1.7197266, 0.5136719, -0.2154541, 2.9667969, 0.27172852, -0.34228516, 2.5839844, 0.39941406, 0.19824219, 2.28125, 2.0019531, 1.2490234, 1.1230469, -0.6401367, -1.6787109, -0.7661133, 0.9057617, 1.6865234, -1.015625, 3.1972656, 0.47998047, -2.1933594, 1.0986328, 1.6191406, -2.9277344, 0.07067871, -2.0527344, -1.4902344, 2.9824219, -0.72998047, -1.1699219, -1.7412109, 2.5273438, -2.1699219, -0.33496094, -0.54248047, -0.6557617, -1.4345703, -3.2636719, -0.20031738, 1.1005859, -1.3115234, 1.0664062, -0.58740234, -0.12683105, 0.49853516, 0.47436523, 4.5976562, 0.50146484, -1.4169922, 2.8476562, 0.26464844, 0.44140625, -2.03125, -0.5888672, -0.8120117, -0.65185547, 1.3525391, -0.19665527, 0.0262146, 0.71435547, 3.7382812, -0.5185547, -0.41308594, -0.087768555, 0.36669922, -1.3847656, 0.7373047, 3.1386719, 0.01008606, 0.5131836, -1.5693359, 0.6425781, -1.9628906, -1.7109375, -0.35717773, -0.6459961, -1.5166016, -0.41210938, -1.8515625, -4.71875, -0.42285156, -1.5986328, -1.7958984, -0.52001953, 0.21887207, 0.6743164, -1.1933594, 1.3876953, 1.9072266, 0.40698242, 0.38623047, -0.026229858, 2.0273438, -0.6386719, -2.2832031, 0.5415039, -0.34765625, 0.8876953, -1.4580078, 0.25146484, -1.1699219, -1.2919922, 0.96191406, -1.3330078, 3.40625, 0.50439453, -0.018203735, 2.0078125, 2.7578125, 0.78759766, -1.4414062, -0.9404297, -0.02961731, 0.18835449, 0.9067383, -1.5927734, 0.7504883, -0.7167969, -0.44970703, 0.8964844, 1.4804688, 0.08856201, 0.6010742, 2.0097656, 1.7929688, 1.6044922, 0.93896484, -1.4628906, 2.0800781, 1.7539062, 0.9785156, 1.0849609, 0.9404297, 0.91259766, -1.4648438, 1.2822266, 0.8105469, -2.0214844, -0.9291992, -0.36083984, 3.5117188, 0.7680664, 0.6279297, 1.1376953, 1.0517578, -0.31420898, -0.49194336, 1.9794922, -1.9824219, 3.4140625, 1.6357422, 0.5942383, -3.2089844, -3.0351562, 1.4101562, 1.0039062, 0.48461914, -1.3564453, 1.7324219, -2.1230469, -0.4580078, -1.5, 0.49975586, 0.58251953, 0.48461914, -0.7553711, 1.5664062, 0.6660156, -0.77685547, 1.6425781, 2.0664062, 3.7578125, 0.6220703, -0.38085938, 5.1601562, -0.064086914, 2.7871094, -0.015136719, -2.3632812, -1.1679688, 0.3269043, 1.3789062, -1.9794922, -0.6201172, 0.07904053, 0.21228027, -2.7871094, 1.5322266, 0.5859375, 0.14404297, 0.05831909, 0.21350098, 0.054901123, 0.9638672, 1.8291016, 0.2368164, -3.546875, 0.3798828, -2.4296875, -0.65625, 0.71191406, -1.7509766, 0.26538086, -0.85058594, 1.1865234, 2.2109375, -0.6308594, 0.1538086, 1.9648438, 2.6894531, 1.9765625, -0.75146484, 2.6738281, 1.3769531, 0.6796875, 3.3808594, 0.06854248, -1.9541016, 0.27563477, 1.3564453, 0.2409668, -0.024307251, -2.1035156, 0.5986328, 0.96533203, 1.9912109, -0.48706055, 0.8203125, 2.6953125, -4.0625, 0.28759766, 0.9379883, 0.6269531, -1.8876953, 1.0175781, -0.93603516, -1.5878906, 1.7294922, -2.1640625, 2.1074219, -0.11383057, -1.6279297, -0.045562744, -1.7988281, -0.3659668, -1.6972656, -0.8574219, -0.4243164, -2.3105469, -0.74316406, -0.74560547, 1.3447266, 0.30126953, 0.5761719, -2.7011719, 1.1982422, 0.06149292, -0.65771484, -0.9560547, 0.123413086, 0.8334961, 0.8647461, 0.6113281, -1.6865234, -0.31274414, -1.4365234, -1.8984375, -3.7089844, 2.2460938, 0.0791626, 0.47045898, 0.113342285, -0.97998047, 0.9013672, 1.5615234, 0.99365234, -2.3769531, -1.9804688, 1.2460938, -1.3183594, -1.2441406, -1.3369141, -0.122802734, 3.0996094, 1.3535156, 1.5224609, -0.63134766, 0.072509766, 0.90771484, 1.1992188, 1.6572266, 0.6821289, -0.16271973, -2.0800781, 1.828125, 1.0761719, -2.2363281, -0.8984375, -0.33447266, 0.78125, 0.9458008, 2.5546875, -0.76660156, 0.74316406, 0.5498047, -0.38061523, -1.5419922, -2.46875, 0.057281494, -2.4277344, 0.5566406, -0.8339844, -1.4208984, -1.0244141, 1.1767578, -2.1738281, 2.2324219, 1.1816406, -3.6132812, -1.9902344, -0.07952881, -0.50683594, -0.5, 0.078186035, 3.3105469, -0.96191406, -1.1552734, 0.038482666, 2.0605469, 2.0117188, 0.33154297, 1.3007812, 3.6464844, 0.08148193, -2.7832031, 0.79296875, -0.19787598, -0.022033691, 1.7587891, -1.3164062, 0.11047363, -1.0927734, 1.7138672, -1.5371094, -0.13269043, 0.6513672, 0.14453125, 1.5009766, -2.5742188, 1.5449219, 1.9707031, -2.0898438, 0.57128906, -2.515625, -1.4707031, -0.25854492, -0.11798096, 1.4677734, 1.5722656, -1.4345703, -0.01638794, 1.7695312, 0.43823242, -0.22363281, 1.3085938, -0.9511719, -1.6914062, 0.13684082, -1.4345703, 0.066345215, -0.69140625, 1.9570312, 1.1552734, 3.1582031, -1.9267578, 0.03677368, 0.6401367, 1.2509766, 1.265625, -1.3759766, 0.87158203, -0.36157227, 2.5996094, 2.2617188, -2.1542969, 0.20935059, 0.42163086, -1.2392578, -2.3476562, 0.3947754]}, "B072JYD7MC": {"id": "B072JYD7MC", "original": "Brand: Unicook\nName: Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More\nDescription: Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

          Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection\uff1a

          \u25cf Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

          \u25cf Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

          \u25cf Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

          \u25cf Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

          Care and Use
          \u25ba Allow grill to cool before covering.
          \u25ba To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
          \u25ba Air dry for next use.

          Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the \"Visit the Unicook Store\" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.\nFeatures: \u3010Fade Resistant Grill Cover\u3011- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt.\n\u3010Fabric Handles\u3011- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage\n\u3010Fastening Straps\u3011- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off\n\u3010Small Grill Cover Dimension\u3011- 2 burner grill cover measures 32\" width by 24\" depth and 43\" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. \ufe61Be sure to measure your grill first to determine the proper cover size\n\u3010Wide Selection\u3011 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click \"Visit the Unicook Store\" button on top to find the right cover to protect your grill.\n", "embedding": [-1.8378906, 2.2695312, 2.6699219, -1.3164062, 0.9863281, -0.2130127, 0.060302734, -1.8945312, 1.4414062, 1.890625, -0.4892578, -1.1806641, 1.0097656, -3.5644531, -0.2956543, -0.021133423, -0.45263672, 2, 2.9140625, -0.5703125, 1.8222656, -0.2109375, 2.0214844, -0.8046875, 1.0097656, 1.1259766, 3.5625, -3.3066406, -1.7792969, -0.50683594, 1.7529297, -0.8496094, 0.71533203, 1.7910156, -2.515625, -1.2060547, -0.23022461, 0.78808594, 0.2208252, 0.21105957, -0.11706543, -1.8964844, 1.1826172, 0.5913086, -2.2480469, 1.3027344, -1.625, 0.75, -1.5644531, -2.4453125, 1.2626953, 1.625, 2.0390625, 0.8535156, -2.0878906, 3.71875, -0.31591797, -1.5976562, -0.2055664, -0.24450684, 1.1318359, -1.6669922, -1.8525391, 2.1054688, -2.1796875, -0.87939453, -0.22631836, -0.42504883, 0.34643555, 0.26879883, 2.0820312, -0.10498047, -2.4316406, 1.3710938, 1.4140625, -0.85302734, -2.2832031, 0.84228516, 1.5791016, -0.97558594, -0.52441406, 4.484375, 0.55859375, -2.4785156, 0.6875, 1.1845703, -1.7714844, -2.0957031, 2.9941406, 1.3330078, -0.3046875, 1.3730469, -1.7832031, -4.5898438, 0.07763672, -2.0839844, 1.5712891, 0.95410156, 0.3930664, 0.57714844, -1.5039062, 0.7714844, -2.0742188, -0.5341797, -3.0683594, -1.4912109, 2.2519531, -1.2744141, -0.82910156, 0.2397461, -0.46289062, -1.3349609, -0.8178711, -0.13439941, 2.1269531, 1.0429688, -1.2011719, 1.8720703, -0.07507324, 0.61328125, 4.4726562, -0.41357422, -0.09222412, -1.1269531, -0.18347168, -1.0087891, -0.47460938, -0.74072266, 4.4257812, -1.1806641, 1.7548828, 0.5649414, 0.42919922, 1.6826172, -2.265625, -0.21826172, -3.390625, -1.5410156, -2.4257812, 2.359375, -1.2294922, -1.7382812, 2.3046875, -1.8271484, -3.7109375, 0.19665527, -0.4794922, 4.25, -0.7519531, -2.6171875, 1.0898438, -2.5449219, -0.2932129, -1.4404297, 0.67871094, -0.4086914, 0.51171875, -4.265625, 4.625, 2.0019531, 2.328125, -3.9453125, 1.3691406, 0.8730469, 1.5390625, -0.8300781, -0.50097656, 0.6376953, -1.6269531, 1.6035156, -0.8911133, -0.84033203, 0.7158203, 0.62597656, 0.8027344, -0.8642578, 0.34570312, 1.9873047, 0.06549072, -0.4482422, -0.9658203, -1.1884766, 0.056030273, 2.5742188, -2.4960938, -1.3935547, -0.50683594, 0.16564941, 0.5727539, -1.078125, -1.0244141, -0.073913574, -1.1289062, 0.69921875, -1.6826172, -0.6245117, -1.2939453, -0.7841797, -0.7026367, -0.07159424, -0.7607422, -2.7792969, -0.7001953, 0.98535156, -3.6054688, -2.0488281, -2.0253906, 0.020568848, 1.4931641, 1.2421875, 1.3740234, -1.7832031, 1.6445312, 3.7480469, -2.1074219, 0.7163086, 1.7880859, -0.72509766, 1.0634766, 1.2128906, 0.023254395, -2.6679688, 0.03137207, 4.0976562, 0.051849365, 3.8457031, 1.4121094, -1.3818359, -0.88720703, -0.9428711, -0.02444458, 0.3413086, 1.1933594, 0.9272461, -1.3017578, 0.875, 1.3310547, -2.9921875, -0.8334961, -0.21472168, -1.4912109, -3.1738281, -2.4902344, -1.0556641, 0.49902344, 1.8515625, -0.8486328, 2.1503906, 0.57421875, -1.0117188, -0.92626953, 0.5415039, 1.4121094, 0.01663208, -0.45532227, 0.8286133, 0.011985779, -0.97021484, -1.8320312, -1.9072266, 0.5175781, 1.0185547, 0.54248047, 0.37573242, -0.24194336, -1.0869141, -0.042938232, 2.3574219, -2.7128906, -1.5537109, 2.078125, -0.23205566, -0.026687622, -1.2792969, 1.2226562, 0.35302734, -0.30493164, 0.78222656, 0.09289551, 0.84228516, -0.21850586, 0.90478516, 2.3164062, -2.015625, 0.8046875, -0.79248047, -0.20129395, -0.3449707, -0.5131836, 0.4309082, 4.1875, -0.8125, -1.71875, 2.4785156, -0.7944336, -0.265625, 0.17419434, -0.052520752, -1.5693359, 1.5322266, 1.1777344, 0.77734375, -0.6269531, 1.2832031, -2.6582031, -1.4375, 2.5117188, -2.3476562, 0.001373291, 2.6015625, 0.8100586, 1.4199219, -1.1533203, 0.70751953, -2.8808594, -2.7519531, 1.75, -1.6513672, 0.9121094, 1.2070312, 1.3671875, -0.08514404, -2.6191406, -1.8095703, -1.7509766, -0.25878906, 0.44750977, -0.3017578, 0.8935547, -1.1289062, -0.7919922, -1.5615234, 0.53515625, -2.109375, 0.2265625, -1.9550781, -1.9765625, -2.1777344, -0.5292969, -1.546875, 1.4169922, -0.24719238, -2.4375, 0.9897461, 0.87597656, -3.875, -0.30981445, 1.3974609, -1.4941406, 0.35302734, 0.38110352, -0.7861328, -0.49926758, -6.2695312, 1.7041016, -1.53125, -0.2866211, -0.68847656, -1.2412109, 0.62841797, -0.16210938, 0.04574585, 0.71728516, 0.80371094, 1.0869141, 0.03277588, 0.30078125, -2.5058594, 1.1757812, -2.5136719, 0.6245117, -1.0722656, 1.78125, -3.6875, -1.4013672, 0.7861328, -1.5166016, 2.8359375, 1.0166016, 1.0576172, -0.6816406, -1.1738281, 0.04675293, -0.82128906, -1.4716797, 0.1685791, -0.9863281, -0.61572266, 0.18811035, -2.828125, -2.4589844, -2.4746094, -0.8881836, 0.058044434, 0.39135742, -0.77490234, 2.3183594, -3.0976562, -1.2929688, 0.036712646, 0.97558594, 0.2783203, -2.2519531, -0.11669922, -2.6054688, -1.4199219, -0.44702148, -1.8964844, 3.7792969, -1.90625, -0.37402344, 2.7109375, -0.89208984, 2.8828125, -0.93115234, -3.2109375, 0.87939453, 0.44213867, 0.21801758, 2.5507812, -1.0498047, 1.1435547, -1.4375, 0.84765625, 2.8457031, -0.38891602, -0.068115234, 2.2226562, 1.7392578, 1.9755859, -0.9638672, 1.6523438, 0.42407227, 1.8701172, 2.3183594, -0.84521484, -1.2304688, 1.1464844, 1.4384766, -1.0039062, 1.8261719, 0.5371094, -0.079956055, 0.07635498, 1.0214844, -0.84375, 1.5634766, -1.2441406, 0.39013672, -1.2324219, 1.6210938, 1.3330078, -0.6767578, -0.20129395, -0.17333984, 2.0019531, 1.5136719, 1.6621094, 0.97558594, 3.0878906, 0.69921875, -1.1044922, -0.42358398, 1.1416016, 0.9892578, -0.6010742, 2.4492188, -1.9003906, -0.31640625, 0.46264648, -1.6162109, 1.5556641, -1.5058594, 1.0654297, 2.2636719, -1.3505859, 0.4194336, -1.3623047, 0.3466797, 0.43920898, -1.3095703, 1.2128906, -1.6220703, -2.4121094, 0.74316406, -3.703125, -2.8320312, -2.6152344, 3.2773438, -0.06774902, -2.2460938, 0.5, 2.1796875, -1.6953125, -2.484375, 0.41430664, 2.6738281, -1.1699219, 3.4042969, 1.7578125, -2.2148438, 1.2109375, -2.3261719, 1.4101562, 0.061279297, -0.3232422, -0.85058594, 0.30249023, -1.0380859, -2.5859375, 2.4277344, 2.2539062, 1.9052734, -1.2099609, 1.671875, -2.4628906, 0.3623047, 2.7148438, -0.88427734, -1.9824219, 2.1230469, 0.73876953, 0.4638672, 0.8066406, 3.3476562, -1.6689453, -0.1743164, 1.5009766, -2.359375, -0.35620117, 0.74560547, -3.8125, -0.98095703, -0.4885254, -1.0292969, 4.3984375, -0.7729492, 0.8613281, 2.3007812, -2.0917969, 0.35229492, 0.35107422, -3.7460938, -1.5537109, -0.9238281, -0.25195312, 2.5136719, -0.33740234, -1.8515625, -2.1015625, -1.8212891, -0.13415527, -0.0143966675, 2.4707031, -1.7617188, -0.1586914, -1.4736328, -0.53125, -1.2783203, 1.0234375, 1.9941406, 1.2783203, 0.11151123, -0.30126953, 0.8930664, -1.6279297, 1.5615234, 0.024673462, 2.5214844, -1.5166016, -0.6611328, 0.49853516, -0.6245117, 1.8242188, -0.9160156, -2.7011719, -1.1542969, 1.4375, 1.6513672, -0.22265625, -0.35473633, -1.5498047, -0.9379883, 1.3310547, 0.9819336, 3.46875, 2.2832031, -0.25854492, -2.6503906, 0.09307861, -1.6650391, -1.5585938, -2.0898438, 0.5991211, 0.43725586, -0.17443848, -1.3173828, -1.7285156, 0.49829102, 0.6123047, 0.7685547, 0.16101074, 2.7910156, 1.4160156, 1.7363281, 2.5058594, -2.5332031, -0.31079102, 2.9121094, -1.1005859, 0.25073242, 0.29248047, -1.0283203, -0.5004883, 1.7958984, -1.5615234, -1.8486328, -0.025604248, -0.98046875, 0.60839844, 0.30859375, -3.03125, 1.9599609, 0.19445801, 0.17980957, 2.0273438, -2.3476562, 2.7753906, -1.7519531, -1.3339844, 1.2441406, -0.42919922, -1.2128906, 0.46240234, 0.4020996, -0.55908203, -1.0136719, -0.26098633, -1.0351562, -0.25024414, 0.85302734, -1.6376953, 1.2871094, -0.60009766, -0.78515625, 1.1123047, 0.8149414, -1.3232422, 0.17932129, 2.734375, 2.5429688, -0.91015625, 2.0234375, 1.6875, -0.65234375, 0.7421875, 1.390625, -2.5800781, 0.014724731, 0.06304932, 0.56591797, 1.0273438, -0.5932617, -1.6337891, 0.029205322, 2.3105469, -1.3232422, 1.3955078, -1.296875, -1.7939453, 1.5107422, -2.3925781, -0.36547852, -2.0546875, 0.49389648, -1.6582031, -0.88183594, 1.4677734, -0.26660156, 0.9609375, 3.0546875, -1.6279297, -2.7148438, -0.5698242, 0.4255371, -0.8183594, -0.7036133, -2.2734375, -2.9824219, -0.86572266, 1.7207031, 3.3359375, 2.5410156, -0.08782959, 1.5273438, -2.6386719, 1.7539062, -1.1894531, 3.2617188, -1.4951172, -1.1591797, 2.7578125, -2.9882812, -1.9609375, -2.34375, -0.14672852, 1.9755859, 2.6425781, 1.2314453, -0.8569336, 0.1595459, 0.03479004, -3.4824219, -2.1113281, 0.16113281, 0.18774414, -0.73046875, 1.1171875, 0.13574219, 1.2734375, 0.3544922, -2.0976562, 0.34545898, -0.54589844, -0.38232422, -1.3583984, -2.0507812, -0.056152344, -0.91503906, -1.2373047, -0.08642578, -0.7036133, 0.9628906, 0.45043945, -3.0683594, 1.6904297, 0.5991211, -2.2832031, 0.20471191, 2.9863281, 1.2011719, 0.9970703, -0.42456055, -0.953125, 0.06365967, 1.7744141, -2.640625, -1.0292969, 2.4296875, -1.6220703, 1.1484375, -1.2216797, -1.5175781, 1.65625, -2.6679688, -0.3479004, 1.1904297, 0.105041504, 3.7578125, 2.0351562, -0.8154297, -0.3581543, 0.12976074, 1.1660156, 1.9853516, -0.025421143, -0.62158203, 1.2539062, -2.2480469, -2.03125, 2.28125, -1.0820312, -1.1416016, -1.9023438, 0.7651367, 1.4931641, 1.8427734, 1.0410156, 0.12939453, 1.2734375, -2.9453125, 0.089538574, 1.0693359, 3.6816406, 1.1132812, -1.5263672, -1.0449219, -2.3378906, 0.8232422, 0.9663086, -0.025268555, -1.0722656, -0.08001709, 0.5917969, 0.7998047, 0.40942383, 3.2695312, 1.1679688, 2.3183594, 0.97265625, 1.0361328, 3.5, -0.19995117, 1.1035156, 0.16333008, 0.7890625, -0.3005371, 1.9082031, 0.6279297, -2.0390625, -0.70214844, 0.121398926, 0.31396484, 1.2597656, -1.8535156, -1.5957031, -0.36401367, -1.3867188, -3.0859375, 0.21960449, -3.3320312, 1.1904297, 1.7285156, -0.42700195, 0.036315918, 0.23254395, 0.5776367, 2.9414062, 2.5449219, 2.3007812, -0.9584961, -1.0341797, -0.13757324, -0.42773438, 0.2529297, -1.2070312, -0.38867188, -1.2294922, 0.2512207, -0.7729492, 2.2226562, 0.0690918, 1.5742188, 0.30737305, 2.5390625, 1.7861328, 1.8134766, 3.0957031, 0.7368164, 2.0917969, 1.2089844, -1.7597656, -0.9243164, 2.5527344, 2.390625, 2.5859375, 0.57373047, 1.0439453, 0.6074219, -1.2460938, 0.37890625, -0.49194336, 2.7363281, -2.7382812, 1.3691406, 1.1865234, 0.98828125, 0.82910156, 2.0625, -0.34057617, -0.20593262, 0.69921875, 0.20251465, 2.5019531, -1.0986328, 2.3046875, -0.33666992, 1.2558594, 2.4179688, -4.3710938, 2.2382812, 0.0054969788, -3.2675781, -0.6069336, 2.1894531, 2.0761719, 1.7207031, -0.15759277, 1.5087891, 1.578125, 1.8955078, 2.765625, -2.2792969, 0.10101318, 0.078308105, 1.6162109, 0.15612793, -1.1376953, -1.7695312, -0.39770508, -3.3691406, -2.1894531, 1.6269531, 2.5507812, 2.9492188, 1.7841797, -1.9931641, 2.3457031, 0.6582031, 3.5546875, -0.26464844, 1.4726562, -2.1699219, -2.5292969, 0.3581543, 0.3630371, -1.7353516, 1.0839844, 1.0117188, -0.2286377, 2.890625, 0.7089844, 0.51416016, 1.5947266, 2.7695312, 0.30664062, 1.0800781, 0.47729492, 1.5869141, 2.5703125, -1.5625, -1.8564453, 1.0595703, -0.13085938, 0.03640747, 2.6503906, -0.9814453, 1.7246094, 1.7890625, 0.33325195, 1.1484375, -0.8569336, 0.7006836, -0.4099121, -0.50341797, 0.14660645, -0.44726562, 1.1943359, 0.91015625, -0.3334961, 0.4645996, -0.40649414, -0.3461914, 1.6162109, 0.42236328, 0.16174316, -1.8701172, -1.2197266, -0.19909668, -0.65966797, -2.1210938, -1.4306641, 0.6401367, -0.44482422, -0.8847656, 0.17626953, -0.060394287, -0.005065918, 0.7192383, 1.9121094, -0.95703125, -0.08496094, -0.71533203, -1.4189453, -0.9980469, 2.1328125, 1.7216797, -2.4882812, -0.890625, -1.7695312, 1.1494141, -0.60839844, -2.203125, 1.8369141, 2.9140625, 1.8886719, -1.4501953, -1.4013672, -3.2753906, -1.1503906, -1.8457031, 2.1953125, -0.18688965, -0.12536621, -0.73291016, 0.55566406, 2.4042969, -1.8701172, -1.7695312, 0.04812622, 1.4072266, 1.4697266, -0.115478516, 0.25561523, -1.0761719, 1.9013672, 0.79248047, 1.3007812, 4.6757812, 0.24035645, 1.2119141, 2.0566406, -2.0703125, -3.6152344, 0.8901367, 0.40844727, -0.23510742, 0.5541992, -0.045532227, 2.484375, -0.36450195, -0.76220703, -0.9472656, 0.014541626]}, "B08P38XD3T": {"id": "B08P38XD3T", "original": "Brand: CEMGYIUK\nName: Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)\nDescription:
          FEATURES:

          -Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
          -Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
          -Water-Resistant,All Weather Protection
          dual propane tank cover rv
          rv propane tank cover double
          travel trailer double propane tank cover
          travel trailer propane tank cover
          \nFeatures: \u2665FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28\"x 12\"x 18\"inch ( (71cm x 30.5cm x 45.7cm)\n\u2665Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank.\n\u2665propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal.\n\u2665EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements\n\u2665100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.\n", "embedding": [1.0537109, 1.9912109, 2.1972656, -0.25854492, -0.71240234, -0.94873047, 0.5107422, -2.3671875, 1.7050781, 2.3417969, 0.41625977, -0.066711426, 1.2792969, -3.9453125, 1.0332031, -1.1738281, 0.2565918, 1.7470703, 3.71875, 0.9267578, 2.5195312, -0.047943115, 1.2802734, 0.47851562, 0.39892578, -1.6679688, 3.3164062, -2.0546875, -2.0371094, 1.046875, 0.9819336, -0.8925781, -0.18078613, 2.5742188, 0.14782715, -1.1035156, -1.1240234, -0.1538086, -2.3691406, -0.27368164, -3.8613281, -2.3515625, 4.3945312, 0.32739258, -0.52685547, -0.8354492, -1.4658203, -1.7978516, 0.8598633, -0.921875, 0.4296875, 0.76953125, 1.7021484, 1.4882812, -2.1484375, -0.61816406, 0.015312195, -0.16516113, 0.48583984, 1.78125, -1.1640625, -0.92285156, -1.6845703, 3.1679688, -0.4267578, -0.2998047, -2.0722656, -1.4775391, 0.08337402, 1.9287109, 1.6152344, 0.5131836, 0.6171875, -1.03125, 0.29663086, 1.3056641, -2.1445312, 1.3642578, 2.5605469, -1.4980469, 1.0283203, 2.9394531, -2.34375, -1.6396484, -0.31347656, -0.63964844, -1.2392578, 0.04034424, 0.6323242, -0.32788086, -2.765625, 1.3105469, -1.6494141, -3.5800781, -1.3476562, -0.03552246, 3.0996094, 1.2470703, 3.0117188, 1.1386719, -0.38085938, 0.46704102, -1.2880859, 1.1669922, -3.2578125, -1.8896484, 1.3759766, -2.1484375, -1.3984375, 1.3535156, -0.31469727, -0.6621094, 0.23986816, -1.3427734, -0.22924805, 0.0703125, -0.70703125, 0.6435547, 2.5351562, 1.8808594, 3.5175781, -0.17810059, 1.2314453, -1.6640625, 2.1933594, 1.5791016, -0.32910156, 1.1884766, 2.9589844, -0.16357422, 1.4550781, 0.27490234, 0.34326172, 0.8256836, 1.0039062, 0.39111328, -1.1982422, -1.6289062, -2.5449219, 1.9980469, -2.28125, -1.0605469, 0.8979492, 0.2548828, -2.8554688, -0.3083496, -0.9614258, 3.1972656, -0.6826172, -1.9921875, 0.31469727, -2.1132812, -0.6796875, -0.8027344, 0.48046875, 1.5244141, -0.013313293, -3.8046875, 1.5048828, 3.1542969, 2.5820312, -1.2636719, 0.00084877014, 0.90478516, 0.043182373, -2.9785156, 0.73095703, -0.84228516, -1.2714844, 2.1445312, 0.16601562, -2.7714844, 1.5556641, 0.4350586, -1.1542969, -1.1982422, 2.1132812, 1.1806641, 1.7753906, -0.21130371, -3.6582031, -0.77246094, -1.5908203, 0.1784668, -0.6567383, -0.10736084, -0.6484375, -0.87597656, -0.25390625, -1.2333984, -2.5664062, 0.9506836, -1.6738281, -0.63378906, -2.1640625, -2.2285156, -1.9980469, -1.7353516, -0.17028809, 1.40625, -1.5859375, -1.5439453, -2.1074219, 0.18334961, -2.9765625, -1.9277344, 1.4785156, 0.61621094, 1.7705078, 0.3022461, -0.03289795, -0.29345703, 1.9746094, 0.031433105, -1.4316406, 0.7885742, 0.70166016, 1.375, 1.828125, 1.8300781, -0.10876465, 1.3818359, 1.4375, 1.9121094, 0.39038086, 2.6855469, 1.0283203, 0.043304443, -0.64501953, -0.0725708, -0.7211914, 1.4609375, -2.3671875, -0.4338379, -1.2910156, 1.2509766, 0.1340332, -1.8144531, 0.15856934, -0.070617676, -0.9116211, -1.0458984, -1.9941406, -0.6347656, 1.7148438, 1.7695312, -0.18334961, 0.3330078, 1.9208984, -0.04724121, 0.79785156, -0.83203125, -0.69091797, -1.5351562, -1.0341797, 1.2207031, 2.0957031, -0.19372559, 0.5214844, -2.6230469, 0.41601562, 1.0820312, -1.8886719, 0.7207031, -0.29101562, 1.0039062, 0.19116211, -0.15368652, -3.3574219, 1.2880859, 0.60839844, 0.7553711, -0.52978516, -1.234375, 2.1269531, 0.084350586, 0.093444824, 1.4365234, 0.26611328, 2.2773438, 0.72802734, -0.121520996, 1.3291016, -1.8320312, 1.2929688, 1.578125, 1.4765625, 0.36645508, -2.0214844, 0.37182617, 2.9414062, -1.1923828, -0.9082031, 1.53125, 2.84375, 1.0771484, 3.4433594, 0.32250977, -0.050628662, 1.5507812, -0.55810547, -0.29492188, -0.8432617, 0.36816406, 0.7236328, -1.3896484, -0.69091797, -1.2128906, 0.5708008, 1.4609375, 1.5019531, 0.16955566, -2.0917969, -1.1015625, -0.4177246, -1.2001953, 3.5996094, -2.6757812, -0.79052734, 3.1757812, -0.63623047, 0.12792969, 0.703125, -2.1523438, 0.07269287, 0.69677734, -2.90625, -0.048858643, 0.5776367, 0.71484375, 1.2060547, -2.7890625, 2.2519531, -0.29125977, 0.5698242, -0.15356445, -1.7285156, -1.1982422, -0.48583984, -0.8779297, 0.8100586, -1.9414062, -0.84521484, 2.6933594, 2.5410156, -1.1708984, -0.49780273, 2.0976562, -1.4199219, -0.6489258, 0.27319336, 2.8554688, -1.1064453, -2.9140625, 0.1496582, -0.10058594, -1.2792969, 1.7783203, -1.3291016, -0.09649658, -0.625, 0.5341797, 1.4326172, -0.8120117, -1.5800781, -0.66308594, 0.41259766, -4.3554688, 1.9248047, -2.0058594, 0.21899414, -3.2871094, 0.16772461, -1.3427734, -1.21875, 2.8613281, -2.109375, 4.0273438, 2.6875, -0.14038086, -0.99902344, -1.5332031, -0.23913574, -1.6337891, -2.4082031, -1.2695312, 0.14013672, -1.7314453, -0.21020508, -4.515625, -1.7695312, -0.9379883, -0.11437988, -0.5883789, -1.625, -0.3894043, 0.578125, -1.5712891, 0.2368164, -0.7753906, 2.3046875, -2.2246094, -1.7783203, 0.1348877, -0.31567383, -0.89160156, -0.7446289, -1.6630859, 0.69433594, -1.3925781, -0.67089844, 0.9169922, -1.2705078, 1.9658203, -1.7929688, -3.7617188, 0.23217773, 3.2519531, 3.0546875, 3.0234375, -0.3701172, -1.7265625, -1.0517578, -0.3305664, 3.2832031, 2.7695312, 0.6645508, 2.296875, 0.20654297, 0.6616211, -0.7915039, 0.15637207, 0.48046875, 0.5546875, 3.4296875, -0.9082031, -0.3239746, 1.0263672, 2.4589844, -2.4394531, -0.051116943, 0.79345703, -0.9584961, 2.6152344, 1.5390625, -2.7890625, -0.21984863, 0.6010742, 0.91308594, -0.3322754, 1.8671875, 0.9321289, 0.59472656, 1.4287109, -0.00730896, 1.0751953, 1.4472656, 0.7080078, -3.0332031, 1.4179688, 0.55322266, -1.78125, 0.053985596, 0.69873047, -0.52734375, -0.33789062, 1.015625, -0.64160156, 0.7207031, 1.1484375, -0.8647461, -0.25170898, -1.1347656, 0.2541504, -0.21850586, 2.4980469, -0.36083984, -0.8701172, -3.0488281, 0.54833984, -1.4433594, 1.5390625, -2.03125, -0.20178223, 1.6269531, -3.6230469, -0.43188477, -1.9707031, 2.7480469, -1.2597656, 0.039489746, 0.012802124, 1.0097656, -1.8447266, -2.2910156, 0.26757812, 0.8520508, -2.5390625, 4.0507812, 4.1367188, -1.9960938, -0.1550293, -1.1210938, 3.5078125, 2.5585938, -0.8208008, -1.3076172, -1.8896484, 1.3173828, -1.3105469, -0.38305664, 0.4736328, 2.375, -1.7529297, -0.8076172, -1.3339844, 0.9111328, 1.4667969, -0.0025234222, 1.0878906, 1.359375, -1.1738281, 2.265625, 0.70996094, 3.5566406, -0.042816162, 1.3916016, 1.2509766, -0.51660156, 1.1962891, 0.12780762, -4.1601562, 0.028671265, 0.23815918, -1.3769531, 3.7070312, 0.33081055, 1.5810547, 0.39013672, -0.05178833, -2.4667969, -0.8046875, -3.3203125, 1.3310547, -2.5058594, -0.5517578, 1.0205078, 0.10961914, -2.265625, -1.5996094, -1.5322266, -3, -0.8330078, -0.20605469, 1.1279297, 1.4521484, -1.0039062, -0.30615234, -0.51660156, 0.86083984, -0.93066406, 0.3371582, -1.0039062, -1.0830078, 2.6816406, 0.4621582, 0.609375, 0.49536133, 3.0996094, 0.91503906, -0.9824219, -0.93847656, -0.90478516, 1.8583984, -1.265625, -3.5957031, -1.09375, -0.49804688, 0.7636719, 0.7607422, -0.71484375, 0.53515625, 0.7944336, 1.7763672, 0.9067383, 2.8320312, 1.0205078, -1.6367188, -2.4160156, 2.1757812, -0.5883789, 0.08239746, -0.54345703, -2.5917969, 1.0517578, 0.027114868, -2.2265625, -2.0214844, -0.46923828, 1.203125, 1.5332031, -2.5351562, 2.6542969, 2.1074219, 2.1621094, 1.9931641, 0.1430664, 0.10333252, 0.47436523, 2.1074219, 1.1679688, -0.23864746, 0.74853516, 0.57470703, -0.34838867, 0.1496582, -3.0019531, -2.0078125, -0.85546875, -2.3359375, 0.42041016, -0.66552734, 2.7148438, -0.25878906, -0.9609375, 0.37451172, -1.9140625, 4.5234375, -2.4277344, 1.1435547, 0.125, -1.7226562, -0.44213867, 2.3398438, 2.4472656, 0.4543457, 1.2617188, -1.3623047, -1.8007812, -0.36791992, 1.1005859, 1.5029297, 0.9941406, -1.9462891, -0.91552734, 0.2680664, 1.9394531, -0.42407227, -0.8618164, 1.5917969, 2.0351562, 0.24682617, 1.0419922, 1.9179688, 1.4765625, 1.6064453, 1.7890625, -0.12097168, -1.5039062, 0.8022461, 1.2216797, 2.4472656, -2.3964844, -3.21875, 1.5722656, 0.41845703, 0.546875, 2.1308594, 0.046905518, -0.9560547, -0.25756836, -2.8535156, -1.3261719, -0.5439453, 0.33618164, 0.28100586, -0.75634766, 1.4814453, -0.72558594, 0.55566406, 2.78125, 0.35253906, -0.6508789, -0.23461914, -0.027191162, -0.53808594, -2.8984375, -0.7055664, -4.5898438, -1.4160156, -0.609375, 0.56591797, -0.3251953, 1.6816406, 1.34375, -2.125, -0.4621582, -1.0087891, 0.7871094, -2.0253906, -0.35473633, 1.8291016, 1.3720703, 0.7416992, 0.11871338, -0.115112305, -0.2019043, 2.8183594, 2.4472656, -0.46044922, 0.578125, -0.24328613, -3.9023438, -5.515625, -0.7763672, 0.92822266, -0.47265625, 0.96191406, -0.9038086, -0.48950195, 0.62890625, -1.4287109, 0.34057617, -1.890625, 1.0419922, -2.2382812, -1.5966797, -0.9145508, -0.38110352, -0.113342285, 1.0361328, -1.828125, 0.06939697, -1.9287109, -3.1601562, -2.796875, -1.0751953, -1.4384766, -0.12261963, 0.86621094, -1.140625, 2.1855469, -0.09246826, 1.6914062, -0.5332031, 1.4746094, -0.031234741, -0.24658203, 1.8535156, -0.20227051, -1.4658203, 2.2128906, -0.4724121, 2.4335938, 1.8066406, 0.71533203, -2.6308594, 0.78027344, 1.1572266, 0.8334961, -0.72021484, 0.6455078, 1.5898438, 1.7060547, 2.8242188, 1.125, -2.7246094, -1.7705078, -1.3320312, -1.5986328, -0.2614746, -2.5976562, -3.0078125, 0.05154419, 2.6757812, 1.546875, 0.85253906, 1.4882812, 1.6376953, 1.2998047, -2.2265625, 0.36499023, -2.5566406, 1.3349609, 0.2722168, -1.3867188, -2.6777344, -2.234375, 3.7617188, 1.9208984, 0.5727539, 0.8647461, 0.3227539, -0.33935547, 1.6181641, -0.029327393, 1.1835938, 1.4697266, 2.28125, -0.8955078, 2.0898438, 3.328125, -0.006088257, -0.5996094, -1.8154297, -0.6196289, -0.59277344, 0.80322266, 1.9316406, -3.1640625, -0.3544922, 1.4755859, 0.4296875, -0.08459473, -1.4804688, -0.0042381287, -2.8574219, -1.1757812, -1.5263672, 0.328125, -4.6523438, 3.4179688, -0.2602539, 0.2836914, 0.7421875, 1.8085938, -0.5908203, -0.15405273, 2.7285156, -0.7944336, -0.71484375, -1.2324219, -0.34350586, -0.61035156, 1.4003906, -3.3183594, 0.20129395, -1.2529297, 0.58691406, 1.2958984, 1.1474609, 0.10949707, 0.80126953, 2.0253906, 1.9980469, 4.296875, -0.2064209, 1.4589844, 0.90527344, 1.3652344, 2.5585938, -1.6318359, 0.16320801, 2.0136719, 1.9638672, 3.4160156, -1.4208984, -0.5004883, 1.1005859, -0.91552734, 1.2792969, -0.328125, 0.93066406, -3.2929688, -1.0302734, 0.81884766, -0.42456055, 0.89453125, 2.4746094, -1.2490234, -1.8349609, -0.17932129, -1.4619141, 1.1992188, -1.0556641, 1.6132812, 1.5498047, 0.85839844, 2.1621094, -1.1035156, 0.34155273, -2.2734375, -3.0058594, -0.8857422, 2.1835938, 0.83984375, 1.6679688, 0.2709961, 1.6855469, -0.6425781, 1.1142578, -0.046936035, -0.013496399, 1.8925781, -3.0722656, 1.8447266, 2.8652344, -1.75, -0.27294922, 0.28930664, 0.5805664, -3.9589844, -1.3603516, -0.51416016, -0.042266846, 0.28027344, -3.6894531, 0.06878662, -0.84765625, 2.0078125, -2.6113281, 0.015380859, -0.3762207, -4.8867188, -0.04144287, 1.3515625, -0.6269531, 4.3710938, 0.59472656, -0.5073242, 1.6601562, 0.44213867, 0.62060547, 0.1932373, 0.10479736, -0.37109375, 1.7783203, -0.18200684, 2.0625, 1.2666016, -1.0185547, 0.11987305, 2.3515625, 0.37060547, 1.0878906, 0.34643555, -2.0625, 3.5039062, 0.24694824, -0.97998047, 0.89160156, -1.6650391, 0.22167969, -0.8803711, 0.6333008, 0.18688965, 0.4008789, -1.9501953, 0.9199219, -3.875, -0.042541504, 1.1552734, 0.7680664, 0.87060547, -0.15393066, -1.6357422, -1.0224609, -0.6855469, 1.28125, -3.3554688, 0.16210938, -1.9267578, 0.6738281, -0.44384766, -1.53125, -1.2949219, 0.90771484, -1.7373047, 0.9453125, 1.3632812, -1.0791016, -0.076416016, -0.26342773, -2.2285156, 0.4086914, 1.8818359, 0.6323242, -0.5800781, -0.2290039, -1.3408203, 0.52001953, -0.55566406, -0.3659668, 1.8388672, 1.4511719, 2.5585938, -0.19873047, 1.0371094, -1.7324219, -1.0322266, -2.9511719, 2.4296875, 1.0078125, -1.1767578, 0.77978516, 2.0878906, 2.6582031, -1.4824219, -0.5883789, -0.095336914, 1.1113281, 1.4736328, -0.9765625, 0.57373047, 1.2685547, -1.3632812, 1.3261719, 3.3359375, 2.421875, -2.8632812, 1.2294922, 1.0087891, -2.5117188, -0.91308594, -0.14831543, -1.1396484, -1.8857422, 0.9667969, 2.9785156, 4.1679688, 0.3425293, -0.9375, -3.421875, -0.20178223]}, "B07F2VP353": {"id": "B07F2VP353", "original": "Brand: Fire-Maple\nName: Fire-Maple \"Fixed Star 1\" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use\nDescription: Portable Propane Stove Burner for Camping
          The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

          Specifications:
          Materials: Aluminum, stainless steel, copper, silicone
          Open: \u0424128x173mm
          Weight: 1.13Ib/511g

          \nFeatures: HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves.\nCOMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz!\nINTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly.\nSAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure.\n30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!\n", "embedding": [-1.3603516, 1.5683594, 3.0722656, 1.0898438, 1.1757812, 1.3388672, 2.1796875, -0.9086914, -1.1259766, 1.2324219, 0.10144043, 0.30615234, -0.5883789, -1.8945312, 1.5048828, 1.0712891, -2.0585938, 0.20532227, -1.2607422, -1.3476562, 3.0195312, 0.64746094, -0.6171875, -0.56396484, 0.9350586, -0.36914062, 3.0664062, -2.8652344, 0.21240234, -0.59716797, 2.3203125, 1.3037109, 0.3618164, 2.6796875, -3.6367188, 0.83691406, -0.5253906, 0.5498047, -2.9609375, -1.3427734, -0.77490234, -0.9243164, 3.1035156, -0.9946289, -2.2480469, -2.3789062, 0.98535156, 0.34301758, -2.4355469, 0.022262573, 0.7006836, 1.7529297, 0.25561523, 2.0136719, -3.1875, -0.14489746, -0.40722656, -1.7558594, 2.9707031, -1, 2.3242188, 0.019439697, -1.078125, 1.40625, -2.2753906, -0.20288086, 1.6494141, -0.38256836, -0.90478516, 0.3701172, 1.3339844, -0.81591797, 1.5351562, -0.95410156, -0.77783203, 0.014328003, -3.0957031, -0.7817383, 1.7128906, 0.3034668, -1.3242188, 1.7177734, 0.48339844, 0.40795898, 0.22827148, 1.4404297, -1.8857422, 0.13000488, 1.0449219, 2.03125, -2.0898438, 1.6806641, -0.8300781, -3.9550781, 2.6210938, -1.0332031, 0.8852539, -1.5146484, 0.36743164, 0.89697266, -1.8027344, 1.3339844, -0.61279297, 0.46069336, -3.7695312, 0.5415039, 2.6621094, 1.296875, -1.4648438, -0.13842773, -3.1210938, -1.5478516, -0.08123779, -0.35083008, 1.7177734, 2.28125, -1.0371094, -0.6772461, 3.03125, -0.3725586, 4.1484375, -1.0615234, 1.1005859, -1.1464844, 1.6103516, 1.0693359, -2.6523438, -1.1806641, 1.9785156, -0.5234375, -0.8149414, -0.4658203, 1.1328125, -0.43164062, -2.4082031, -1.1455078, -2.5195312, -2.2617188, -2.3242188, -0.39770508, -0.7758789, 2.0292969, 1.7929688, 1.6035156, -4.4296875, -1.3115234, -1.203125, 3.640625, 0.29467773, -1.9707031, 1.7949219, -1.8154297, -0.9970703, -2.2890625, 1.8183594, 0.7260742, -1.0429688, -0.21008301, 2.7617188, -1.1269531, 0.8955078, -0.67578125, -1.8320312, 1.6269531, -0.35083008, -1.0742188, 1.2255859, 0.24719238, 0.52001953, 1.5839844, -0.060272217, -0.7470703, 0.36987305, 0.75341797, 0.62353516, -1.1816406, -1.0146484, 2.1777344, -0.008529663, -1.9560547, -2.2890625, -1.7607422, 1.9072266, 1.2832031, 1.0214844, -0.28808594, 0.20739746, -0.03125, -0.7001953, -1.734375, -1.9677734, 1.7324219, -2.2558594, -0.20092773, -0.7314453, -2.9101562, 1.4169922, -3.0644531, -0.25927734, 1.2128906, 0.6743164, 0.07873535, -0.6425781, 0.92333984, -2.1386719, 1.0771484, -0.6386719, 0.18933105, 2.1953125, 4.234375, 0.5913086, -0.29907227, 0.7036133, 0.77783203, -3.3613281, -2.2792969, 0.81152344, 1.8681641, -0.13989258, 2.0644531, 1.3613281, -0.79248047, 1.1816406, 1.2373047, -1.6972656, 1.8271484, 0.90527344, -1.2167969, -1.7304688, -1.7714844, 1.2216797, 0.625, -0.8652344, 1.0537109, -1.4521484, 2.9785156, 2.8828125, -0.08294678, 0.08654785, -1.4150391, -0.03439331, -2.9667969, 1.2451172, 0.5053711, -2.65625, 1.2451172, 0.9013672, -0.45776367, 1.1767578, -0.09655762, -0.89990234, 0.99853516, 1.5058594, 2.0800781, -1.5761719, -1.1445312, 0.14404297, -0.83984375, -1.0830078, -0.1270752, 3.0410156, 3.2734375, -1.53125, 3.0332031, -0.20227051, 0.8256836, 2.078125, 1.4472656, -2.6484375, 2.0039062, 1.8710938, -0.18469238, 4.0117188, -1.2265625, 1.5888672, -1.8574219, -0.19421387, 0.8251953, -0.24987793, 0.94677734, 0.14123535, -0.050476074, 2.7988281, -2.7363281, 1.2519531, -1.3125, 4.1210938, 0.49926758, -0.7729492, -0.59228516, 6.171875, -0.7060547, -1.5966797, 0.63623047, -2.0664062, 1.3398438, -0.77734375, 0.7753906, 1.2333984, -0.8676758, 1.8398438, 1.4833984, 0.40771484, 0.40844727, -1.3300781, 0.15917969, 1.65625, -0.23498535, -0.5161133, -0.36669922, 0.7729492, -1.8964844, -0.8798828, 0.25048828, -1.4804688, -1.3378906, 2.8339844, -2.015625, 0.69628906, 1.9375, -0.18249512, 1.6533203, -1.4072266, -1.3701172, 0.08654785, 2.1914062, 0.12805176, 3.6015625, -0.028778076, 1.4462891, -1.4648438, -3.015625, 0.45776367, -0.21606445, -0.9736328, -1.6074219, 0.68896484, -2.8886719, 1.3535156, -1.5214844, -0.5708008, 1.7373047, -1.6669922, 1.9599609, -1.6748047, -3.046875, 1.9042969, 1.4775391, -1.4609375, 1.4033203, 0.34106445, 1.3027344, -2.328125, -2.3183594, -2.2714844, 0.43481445, -1.1269531, -0.5654297, -1.7255859, 2.7480469, 0.13269043, 0.5708008, -0.18908691, -0.16271973, 0.9736328, -2.5039062, 0.7192383, -2.484375, -0.5600586, 0.41210938, 1.5878906, 0.6894531, -1.2880859, -1.4111328, -1.3427734, 0.07336426, 0.17053223, 3.140625, -0.026489258, -0.4338379, -2.3066406, -0.17358398, -0.7260742, -1.3505859, -1.8681641, 0.5205078, -0.70947266, -0.46362305, -1.8378906, -3.5625, 0.64160156, -1.8398438, -0.3803711, -1.453125, 1.9697266, 0.058166504, 1.2304688, 0.47680664, 0.17272949, -1.3125, -2.609375, -0.43164062, -2.0214844, -0.14172363, 0.5957031, -1.1826172, -1.7744141, 3.796875, 1.1220703, 1.2822266, 1.5410156, 2.3808594, 0.44335938, -0.24609375, 0.5678711, -2.7226562, 1.3183594, 1.0029297, -0.29760742, 0.47192383, -0.6225586, -0.62890625, -1.1103516, 0.8027344, 3.4824219, 0.16381836, 1.9414062, -0.6196289, -1.2333984, 1.6347656, 1.7392578, -3.1796875, -1.5361328, 0.48901367, 3.1054688, -1.6464844, -1.5380859, 2.2480469, 1.6650391, -2.2773438, 0.5185547, -0.45776367, 0.44433594, 2.4648438, 1.1298828, -0.024765015, -1.2207031, 0.73876953, 0.007801056, 2.3828125, 1.4462891, 0.039276123, -1.2216797, -0.9663086, 1.7529297, -0.83935547, 1.5976562, 1.90625, 1.2890625, 2.1855469, 1.7216797, -1.9941406, 0.87060547, -0.018356323, 0.22595215, -0.61279297, 2.1191406, -0.6933594, -1.4824219, -2.6210938, 0.79785156, 1.6728516, 0.05697632, 2.1796875, -0.19921875, 0.4951172, -0.22375488, 2.1386719, 0.3293457, 0.67529297, -0.76464844, 3.6933594, 0.3347168, -1.9404297, 0.7265625, 0.68847656, -1.1191406, -4.2460938, 1.0214844, -1.4003906, -0.71484375, 1.6523438, 0.40942383, -1.2871094, -2.4179688, -2.3925781, 0.28442383, -2.4550781, 1.4541016, 0.9580078, -1.9541016, 0.007686615, -1.4228516, -1.1699219, 2.0332031, -0.20751953, 0.2763672, -1.3847656, 0.68115234, -2.1894531, 1.296875, 1.109375, -0.39160156, -0.37060547, 1.3378906, -3.5273438, -2.6601562, 1.078125, -2.6835938, 0.47753906, 0.9511719, -0.3071289, 0.4272461, -1.4453125, 3.65625, -0.83496094, -1.6484375, 1.2783203, -2.4648438, -1.8574219, -1.3173828, -3.8476562, 2.1113281, -1.2480469, -0.20947266, 1.9833984, 0.06774902, -0.9921875, -1.0751953, 0.74658203, -0.24780273, -0.5058594, 0.1484375, 1.2509766, -3.2226562, -0.6879883, 0.48632812, -1.203125, -3.3046875, -0.2512207, 0.7993164, 0.8535156, 0.8911133, 1.2216797, -3.7988281, 1.3427734, 0.7338867, 1.3242188, 1.0380859, -1.1650391, 0.6035156, -0.58251953, -0.16503906, -0.94384766, 1.2714844, 0.47314453, 0.8261719, 0.734375, 3.3535156, 1.2597656, 0.8383789, 3.1769276e-05, 3.1953125, 1, -0.37573242, -2.2441406, -2.2636719, -1.7324219, -1.4755859, 1.0566406, -0.7236328, -0.035736084, -1.7861328, 1.6621094, 1.7626953, 0.28979492, 0.74658203, -0.29101562, -1.0117188, 0.73779297, -1.0449219, -2.1015625, -1.125, -1.0537109, -0.73583984, -1.8847656, -0.14746094, -0.7949219, 0.057006836, -1.9033203, -0.79052734, -0.4958496, 2.59375, 1.7587891, 2.265625, 3.0722656, -0.73583984, -2.2402344, 1.9072266, -2.5585938, -2.2363281, -0.43432617, -0.6044922, -0.8300781, 2.2421875, 1.2958984, -0.66796875, -1.578125, 1.3164062, 1.015625, -1.0849609, -1.5126953, -0.3955078, -2.8242188, 1.078125, 0.9707031, -0.07305908, -0.4892578, -0.2553711, 0.20202637, -0.31176758, 2.0214844, -0.08251953, -1.2451172, -0.122924805, 0.2166748, 0.014343262, 0.34228516, -1.2978516, 0.5185547, 1.5009766, 1.8388672, 0.8408203, 0.6538086, 0.24072266, 1.6582031, 1.4589844, -0.9741211, 0.17028809, -0.16723633, -0.27856445, 0.31323242, 2.7460938, 0.6513672, -0.080078125, 1.0185547, -0.14660645, -3.0117188, -0.6694336, -0.7729492, -2.6875, 2.5644531, -0.48046875, -2.4707031, -1.4541016, 2.4785156, 0.027938843, 0.5, -0.7573242, -1.8427734, -1.6894531, -3.1777344, -0.57421875, -0.9916992, -1.703125, -0.15527344, -1.0087891, 1.0429688, -1.2294922, 0.3803711, 2.2070312, -0.28320312, 0.5913086, 1.65625, -2.109375, 1.4423828, -0.578125, 0.24621582, -3.0117188, 1.6435547, 1.3173828, -0.45751953, 0.6123047, -1.5527344, 2.59375, 0.06427002, -0.15441895, -1.7666016, 0.81103516, -3.4648438, -1.0439453, 1.2587891, 0.7060547, 2.4199219, -0.26245117, -0.8774414, -1.6035156, 2.3515625, -1.3710938, 1.6191406, -0.9301758, 1.0146484, -1.7207031, -2.4960938, -2.3339844, -0.20483398, -2.8652344, -1.2675781, -0.17700195, -2.0957031, -0.109375, 0.1685791, -0.06774902, -0.4411621, 1.7324219, 2.2910156, 0.9951172, -1.4257812, 1.0478516, 0.63134766, -0.004096985, 2.2207031, 0.77490234, 1.9238281, -1.7138672, -0.7270508, 1.3808594, -1.9091797, 2.125, -0.6323242, -0.78466797, 1.0478516, 3.4863281, -1.1201172, -1.3076172, 2.6367188, -0.6933594, -0.6591797, 0.21948242, -0.97509766, 1.5458984, -0.3112793, -2.3457031, 1.0527344, -2.7167969, -1.8662109, -1.1679688, -0.56591797, 1.6054688, -0.57421875, -0.38745117, -1.4082031, 1.7558594, -0.37280273, -0.1619873, 1.6416016, -0.38500977, -0.3388672, -3.0761719, -3.2128906, 1.2626953, -0.13806152, -0.6616211, 0.030059814, 0.66748047, 0.92822266, -1.21875, -0.16577148, -0.1796875, 0.42163086, -1.6279297, 1.3105469, -0.78271484, 3.8847656, 1.1621094, -1.2226562, -3.3007812, -3.0097656, -0.47753906, 0.65234375, 0.6933594, -2.4492188, 0.7001953, -1.0605469, 0.7753906, -0.54296875, 3.7753906, 1.1259766, 0.7260742, -0.74609375, 1.3544922, 3.125, -0.09954834, 2.5136719, 0.26733398, 0.8432617, -0.23034668, 0.8642578, -0.79589844, -0.828125, 2.1113281, -0.9116211, 0.10089111, -1.1660156, -1.8417969, 2.3125, 1.1494141, -0.6879883, -2.1796875, -1.1865234, -0.46972656, 0.84375, 2.9257812, 1.1005859, -1.2363281, 1.7578125, -0.7963867, 1.5097656, 2.5917969, 0.3334961, -1.0517578, 0.3852539, -1.0175781, -0.6928711, 2.25, 0.97021484, 0.45043945, 0.9394531, 1.6435547, 0.066589355, 2.6816406, 1.0166016, 1.8984375, 2.34375, 2.5273438, 1.7363281, 0.53027344, 2.7070312, 0.8984375, 1.5966797, 3.2460938, 1.8740234, -0.54052734, 1.4111328, 1.8164062, 0.8051758, 0.59472656, 1.984375, -0.16381836, -0.41235352, -1.0273438, -0.23999023, 1.5595703, -2.5, 2.6542969, -0.7158203, -0.058898926, 0.0053863525, 1.3779297, -1.5302734, -0.53125, 1.0107422, -1.6269531, -0.099487305, -1.7363281, -0.1194458, 0.26635742, 1.1259766, 0.82958984, -3.4003906, 1.8779297, -1.1845703, -2.1933594, -0.72802734, 3.3320312, 0.92333984, 0.40844727, 0.7421875, 2.421875, 0.9667969, 0.20239258, 1.4160156, -0.8779297, 0.20007324, -0.27734375, 1.7890625, -0.2939453, -1.9238281, 0.75146484, -0.55371094, -4.6445312, -4.3125, 1.03125, 0.13830566, 1.9775391, 1.7060547, -1.7949219, 3.9433594, -0.2709961, 1.4697266, -2.2441406, 1.7851562, -0.26611328, -1.71875, -2.6269531, 0.014961243, 1.3427734, 2.828125, -0.96435547, -1.9873047, -0.28637695, -0.33764648, 2.6386719, -0.36376953, 0.6699219, 0.46948242, 0.43774414, -2.046875, 2.8613281, 1.4267578, -1.765625, -1.6904297, 2.0410156, 2.6054688, 1.9638672, -0.4951172, -1.7128906, 0.84033203, 1.0029297, -1.3847656, 0.36108398, -0.86083984, -3.3925781, -2.8183594, -1.2949219, -0.7602539, -2.9199219, 0.47998047, 2.6269531, 1.6484375, -0.109313965, 1.8173828, -1.9599609, 0.44018555, 2.5390625, 0.13378906, -0.890625, 0.70410156, 1.5517578, -2.6699219, -2.59375, 0.5595703, 1.1884766, -0.6328125, -1.5302734, 0.5834961, -0.1977539, 1.2773438, 0.38110352, 1.2373047, 0.68847656, -0.53515625, -0.44360352, 0.37890625, -1.0996094, 3.5175781, -0.71728516, -1.2753906, 2.2949219, -1.65625, -1.2978516, -2.2636719, -0.8964844, -1.3486328, 2.359375, 0.63671875, 0.7548828, -1.7304688, -2.09375, -0.9975586, -1.3300781, -0.24719238, 1.0126953, -1.1503906, 0.045410156, 1.2148438, 2.640625, -0.9482422, -0.11785889, -0.8754883, -0.7001953, 0.875, -0.65625, 1.7587891, 2.2167969, 1.2285156, 0.20837402, 3.0996094, 0.54345703, -0.87353516, 0.9091797, -0.20996094, 0.34594727, -2.1953125, 1.7128906, -0.3449707, 1.2929688, -0.3317871, -1.4941406, 1, 1.3232422, -0.7553711, -3.7128906, -0.93603516]}, "B07VHP3M9L": {"id": "B07VHP3M9L", "original": "Brand: MESMART\nName: Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART\nDescription: \nFeatures: Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires\nWiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required\nSimple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48\u201d, height 2.1cm/0.83\u201d, nice decoration, install it in kitchen or anywhere refers to gas leaking\nFireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use\nPackage Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.\n", "embedding": [-1.8535156, -0.12890625, 2.6894531, 1.0615234, -1.3154297, 2.4199219, -1.0097656, 0.99316406, -0.6772461, 0.5600586, 0.23693848, 0.5151367, 0.069885254, -1.1162109, -0.40722656, -0.44335938, 0.051208496, 0.6147461, 1.2519531, 1.7802734, 3.1308594, 0.61572266, -1.7519531, -0.56591797, 1.78125, 0.38989258, 3.8183594, -1.0869141, -0.9921875, -1.3105469, 0.2631836, 0.08782959, -2.0058594, 1.7734375, -1.4550781, -0.34204102, -0.43969727, -0.18103027, -0.5097656, -1.7480469, -0.27270508, 0.3791504, 0.26489258, -0.8779297, -3.609375, -2.1328125, -0.14733887, -1.0634766, 0.1829834, -0.5151367, -0.77978516, 0.98828125, -1.5410156, 0.17736816, -0.39453125, 0.32299805, 2.5, -0.33203125, 0.44604492, 0.7470703, 1.3759766, 0.75439453, -0.31835938, -0.8598633, -0.031051636, -0.021636963, 0.81933594, -0.78759766, 0.30493164, 1.2412109, -0.50683594, -1.0380859, 0.6875, 0.3503418, -2.2265625, 1.0214844, -1.5927734, 1.2871094, 0.26416016, -1.5615234, 0.3095703, 2.0351562, -1.3173828, -1.5615234, 0.30126953, -2.7851562, -0.2722168, 0.40234375, -1.6074219, -0.003353119, -2.9160156, 3.3105469, -2.4140625, -4.1992188, 2.6308594, -1.2939453, 0.87841797, -0.94091797, -0.21154785, 1.9433594, 0.89990234, -0.8652344, 1.1865234, 2.6679688, -1.5605469, -1.9804688, 1.3896484, 2.1699219, -0.15454102, -0.72753906, 0.39990234, -0.76953125, -0.80078125, -0.029800415, -1.0712891, 0.18774414, 2.4199219, -1.3662109, 4.2617188, -0.059753418, 2.0625, -1.0380859, 1.5712891, 1.4101562, 1.3574219, 0.1895752, -0.82373047, 0.76708984, -1.6142578, -0.16149902, 0.58447266, -0.2175293, 0.55810547, 0.24328613, 0.08251953, -0.28320312, 0.3876953, -2.8945312, -3.7753906, -2.6074219, -3.5292969, -0.123291016, -1.0751953, -0.8769531, -1.6279297, -0.16052246, -1.7832031, 1.7841797, -0.58740234, -0.99560547, 0.42993164, 0.24475098, 1.9550781, -2.4023438, 0.8232422, -0.105407715, -2.2792969, -1.9443359, 2.5507812, 2.1191406, 1.3027344, 0.6557617, -3.1875, 0.3347168, 0.79052734, -4.3632812, -0.2548828, -0.065979004, 0.7792969, 1.8769531, 0.40771484, -0.8730469, 0.44848633, 0.8413086, -0.28051758, -2.1347656, 1.8183594, 0.72802734, -0.4519043, -0.26049805, -3.1074219, 0.44067383, 0.92285156, -2.0136719, -0.5317383, 0.026031494, -0.5991211, -1.9814453, -0.8823242, -2.5898438, -2.546875, 1.1054688, -0.7763672, 2.4824219, -0.42260742, -2.5644531, -2.3183594, 0.5732422, 1.2548828, 1.5146484, 0.19226074, 0.35913086, -1.3945312, 0.38598633, -1.1523438, -0.69091797, 1.0449219, 0.8676758, 0.52978516, 2.4960938, 0.093933105, -1.5712891, 2.140625, -1.1611328, 0.89404297, -0.6953125, 0.24328613, 1.5683594, -0.5878906, 1.1044922, 1.2070312, 1.5126953, 3.2421875, 1.9804688, 0.9277344, 2.171875, -1.1542969, 1.8388672, -1.53125, -4.4179688, 2.5957031, 0.27197266, -1.1796875, -1.9472656, 0.88671875, 3.1992188, 0.12768555, 0.22436523, 1.1601562, 2.9101562, -0.6796875, -0.8076172, -2.8066406, -0.85302734, -1.2158203, -0.12939453, 0.83447266, 0.5932617, 3.0664062, 1.6679688, 1.2363281, 1.0146484, -0.5444336, 1.8369141, -3.3105469, 1.9541016, 1.46875, 0.9868164, -0.019515991, -2.5839844, -0.88623047, 1.3896484, -1.7568359, 2.5917969, 0.9086914, -0.1829834, 1.5146484, 1.4492188, -0.43579102, -0.14111328, 0.42236328, 0.07800293, -0.5107422, 1.6865234, 1.0458984, 0.8383789, 0.5205078, 1.6601562, 1.5488281, -0.10064697, -0.90234375, -1.5888672, -1.7880859, -0.8745117, -0.4819336, 0.95166016, 0.101135254, 0.41455078, -1.5351562, 0.30664062, 3.8222656, 0.6767578, -2.84375, 2.8085938, -0.7739258, 1.3935547, -0.51171875, 0.5698242, -0.060913086, -2.3222656, 2.0332031, 2.90625, -1.7216797, 1.625, 1.2509766, -0.42895508, -1.5859375, 1.3652344, -0.57177734, -0.2529297, 0.69873047, 0.5966797, -1.828125, 1.0039062, -0.61865234, -2.4902344, 0.6269531, -1.2216797, -1.1914062, 1.1962891, 0.013725281, 3.7441406, 1.4619141, -0.46777344, 1.2128906, 1.0322266, 2.7753906, 1.7167969, 0.5332031, 0.08673096, 1.3466797, -1.7011719, 0.4868164, -2.703125, -2.6914062, 0.625, -3.2792969, -2.5058594, 1.6308594, -0.07196045, -1.1171875, 1.6074219, 1.2099609, 1.1582031, 0.6923828, 0.13024902, -1.4433594, -0.78515625, 2.0800781, -1.9658203, 1.578125, 3.6269531, -0.5800781, -3.0566406, -2.2734375, -0.06689453, -0.51904297, 1.6015625, -0.5385742, -1.0117188, -2.0742188, 0.06201172, 0.5991211, 1.2998047, -1.0146484, 0.023773193, -0.57421875, -1.7949219, -0.57470703, -2.5, 1, -1.2744141, -0.5571289, -0.28222656, -1.5498047, 0.6870117, 0.1270752, 1.3349609, 0.35473633, 3.234375, -1.1240234, 0.011405945, -1.4433594, -0.7915039, -2.2578125, -1.2939453, -0.63720703, -1.9580078, -0.27661133, -2.3652344, 1.3935547, 1.703125, 1.3808594, -0.25854492, 1.7480469, -0.106933594, 1.7050781, -0.95458984, 1.3945312, 1.3144531, -0.3762207, 0.42333984, -2.0898438, -1.1455078, -0.56640625, -1.5986328, 0.11175537, -0.28125, 1.3291016, 1.0351562, 2.0683594, 1.2705078, 0.9067383, -2.5175781, 2.2929688, -4.5117188, -0.034942627, 0.43237305, -4.2851562, -0.4411621, -0.5678711, 0.96484375, -0.9746094, 0.5463867, 1.8291016, -0.3347168, 2.1914062, 0.74658203, -1.8632812, 2.1054688, 4.4492188, -0.45532227, -0.2770996, 0.73339844, 0.47045898, -2.5292969, 0.4272461, 1.9384766, 0.6816406, -1.546875, -3.7792969, 1.1210938, 0.9345703, 2.3222656, -0.52734375, -2.1894531, -0.8339844, 1.0878906, 0.4050293, 0.27563477, -0.87841797, 0.8901367, -1.7753906, 0.30664062, 1.3251953, 1.1533203, 2.7207031, -0.16772461, 1.2558594, 1.7216797, 0.4008789, -0.74560547, -1.2353516, -1.140625, -0.43310547, -1.7705078, 0.8955078, 1.5205078, 1.0771484, -0.1763916, -0.6821289, -0.39819336, -1.0742188, 0.20263672, 0.36547852, -0.048919678, 0.3852539, -0.61328125, -0.6411133, 1.9199219, -2.4375, -0.8046875, 0.5839844, -0.62402344, -0.6796875, -1.125, -1.9707031, -2.5058594, 0.9692383, -1.1025391, -0.2631836, -0.6982422, 0.5097656, -3.3691406, -1.8476562, -0.8251953, -0.53515625, 0.5698242, 0.3239746, -1.2558594, -0.23828125, 1.0654297, 0.10864258, -0.8623047, 3.2890625, -0.7089844, -0.33251953, -1.2695312, 1.1044922, 1.2675781, 0.39453125, 0.74560547, 1.4257812, -2.046875, 0.09350586, -2.5742188, -0.6347656, -0.28735352, -0.68896484, 0.5463867, -1.7119141, -0.6069336, 1.3535156, 0.38134766, 0.85546875, 0.99072266, 0.43310547, -0.3828125, -3.9960938, 0.81152344, -0.703125, -3.5078125, 2.0019531, -1.71875, 0.16833496, 0.81152344, -1.1181641, 1.3642578, -2.4960938, 1.2558594, -2.3515625, -2.0488281, 0.21252441, 2.2597656, 0.9975586, -1.2597656, 2.1289062, 0.19946289, -0.34375, 0.7036133, -1.6435547, 0.51220703, 1.9121094, 0.8051758, 1.5800781, 0.3618164, 0.7470703, 1.4658203, 0.20825195, -2.3652344, -0.36987305, -1.1484375, 0.046051025, -1.7939453, 3.2832031, 1.3789062, 0.7207031, -0.54589844, 1.3212891, 0.66015625, -1.3154297, -1.4375, 0.7597656, 0.17602539, 0.37695312, -2.7578125, -0.7084961, -2.3027344, 2.8789062, -0.05203247, -0.33764648, -0.7993164, -0.9160156, -0.34106445, 0.25585938, 2.4472656, 0.28979492, 1.0888672, -0.5625, 0.63134766, 1.7802734, -2.7617188, -0.75146484, -0.98828125, -1.078125, -0.06707764, 0.7753906, -0.52246094, 0.80908203, -0.28149414, -0.6015625, -2.09375, -1.9433594, 2.8105469, 1.4902344, 1.0341797, 0.7753906, -0.20581055, 0.60595703, 1.2519531, 0.54785156, 1.1865234, -1.1552734, -0.5151367, -0.11431885, 2.3535156, -1.4580078, -1.296875, 0.43066406, 0.3215332, 1.9472656, -0.43920898, -0.064819336, -1.5244141, 0.14465332, -0.27954102, 0.72021484, 1.3203125, -1.3964844, 0.12854004, 1.0947266, 0.4650879, 0.26586914, 0.99072266, 2.1347656, 1.4658203, 1.0263672, 0.6591797, 3.6210938, 3.0117188, 0.55566406, 1.7441406, 0.5620117, -1.5927734, 1.9726562, 1.265625, 0.08508301, -2.4160156, -0.07165527, 1.6015625, 1.2001953, 0.515625, 1.3066406, -0.028335571, 0.18933105, 1.2626953, 0.7680664, -0.64160156, 1.1113281, -2.6015625, -0.10845947, 1.7294922, -0.9975586, -1.2285156, -1.1191406, 2.6796875, 0.23828125, 2.09375, 0.7363281, -0.14013672, 0.17565918, -2.6269531, -3.7226562, 0.5229492, -2.8046875, 1.4453125, -0.72998047, -0.37597656, -1.0234375, 2.9082031, 1.7431641, -0.98828125, -0.68066406, 2.4121094, -2.6542969, -0.22790527, -1.1787109, -1.1972656, -0.8051758, 1.3798828, 0.4345703, -1.0244141, 1.0371094, -0.10290527, 2.0976562, -1.9150391, -1.390625, 1.1386719, -0.48046875, -2.4667969, -2.9609375, 1.3476562, 0.105407715, 0.28173828, 0.4543457, 0.6640625, -1.0546875, 2.1035156, 1.2470703, -0.29223633, -0.28759766, 0.77685547, -1.4511719, -2.3359375, -2.5683594, -1.7197266, -0.12536621, 1.34375, -1.3359375, -1.8632812, 1.0273438, -0.5097656, -1.2148438, -1.4072266, 0.8251953, -0.31689453, 1.4238281, -1.6865234, 0.49951172, -1.2773438, -0.6508789, 2.5390625, -2.4648438, -0.7807617, -2.265625, -3.9609375, 1.0126953, 0.32202148, -1.2041016, 0.8286133, 0.19567871, 0.7583008, 3.2128906, 2.0546875, -3.2089844, 1.4482422, -0.98779297, -1.2910156, 1.5419922, 0.55029297, 0.33862305, 0.56591797, -0.021987915, 1.1181641, 0.48608398, 1.2802734, -1.5019531, -0.31176758, 0.38085938, -0.9145508, 1.2246094, -0.89453125, 1.4677734, -1.4394531, 1.6445312, 1.1103516, 0.021575928, -0.23156738, -1.4570312, -3.2890625, 0.82373047, -0.11175537, 1.0478516, 0.24401855, 2.2890625, -2.0859375, 1.7773438, 0.85839844, 2.3085938, 0.3696289, -0.11694336, 0.0082092285, 0.74316406, 1.6542969, 1.0654297, -1.1777344, -2.4785156, -2.3476562, 2.3867188, 4.390625, 0.10449219, -1.8740234, -0.93408203, -2.7949219, 0.0020694733, 0.5786133, 2.34375, 0.77734375, 0.35473633, -0.40454102, 1.8896484, 0.5805664, -0.86083984, 0.97314453, 1.7568359, -0.21582031, -2.6191406, -0.20544434, -0.31298828, 0.13830566, 1.0996094, -1.6933594, -1.4335938, 0.25830078, -2.1621094, -0.42504883, -3.0839844, -0.8432617, 1.4248047, -1.7568359, -2.3867188, 2.5390625, -0.085632324, -1, -0.34204102, 3.640625, -1.3974609, 1.7695312, 0.51953125, -1.7666016, -2.8144531, -0.20178223, -2.171875, -1.4589844, 1.0527344, -1.9628906, 0.99072266, 1.5605469, 0.53515625, -1.4238281, 2.2929688, 1.2011719, 2.3222656, 2.7675781, 2.8535156, 2.3300781, 0.79541016, 0.7836914, 1.5263672, 0.9736328, 2.5664062, -0.3544922, -0.022964478, 2.2851562, 0.07574463, 1.9863281, -1.7138672, 0.36401367, 0.2052002, -1.5136719, -0.15283203, -0.022949219, -1.359375, -0.859375, 1.3818359, -2.0546875, 0.061584473, -4.4140625, 1.1220703, -0.48388672, 0.8071289, -0.35229492, 1.1181641, 0.21655273, -3.3691406, 0.8198242, 2.3105469, -0.8359375, 1.8535156, -1.7939453, 2.5566406, 0.4272461, -0.45581055, -0.39526367, 1.8310547, -0.24206543, -0.42578125, 0.068359375, 0.66748047, -1.7880859, -0.52734375, 0.62060547, -2.4882812, -0.37280273, -0.14294434, -0.10247803, 1.4814453, -1.0039062, 1.0927734, -1.3837891, -1.5361328, -2.2148438, 1.3320312, -0.07550049, -0.067993164, -1.8173828, -1.9013672, -1.4990234, -0.41186523, 0.4104004, -2.03125, 1.7119141, 0.047790527, 1.6523438, 0.24902344, 3.5664062, 0.55322266, 1.0058594, -0.46801758, -2.1679688, -0.13427734, 0.6826172, 2.4179688, -0.12084961, -0.8808594, -0.62646484, 0.21191406, -1.1904297, 0.7583008, 1.6572266, 0.85302734, -1.7460938, 1.7880859, 1.2148438, 1.6210938, -1.4248047, -2.4101562, -0.26660156, 0.016815186, -1.7080078, -1.8212891, -0.5307617, 0.28100586, -0.21862793, -0.85009766, -1.0849609, -1.671875, -0.17883301, 0.7416992, -1.4267578, 0.1104126, 1.0732422, -0.71728516, -1.4736328, 0.59277344, -0.1352539, 0.21496582, -1.1289062, 0.8955078, -0.9770508, -0.2355957, -0.9067383, -0.053741455, -0.5024414, -0.006023407, 0.55566406, 1.5742188, -1.1542969, 1.0175781, 1.8613281, -0.47045898, 1.2783203, -0.31469727, -0.39379883, 1.1533203, -0.013031006, 0.7631836, 0.9760742, -0.028900146, 2.7578125, 0.22387695, -1.0195312, 0.33911133, 2.6640625, 2.2753906, 1.0556641, 0.97998047, -0.33374023, -0.32910156, -0.9584961, -1.4384766, 0.7373047, -2.3808594, 1.1884766, 1.1757812, 1.6386719, 2.8574219, -0.3605957, 1.7910156, -1.203125, 0.10510254, 0.6748047, 0.62597656, 1.1210938, 0.20751953, 0.5307617, -1.2011719, 1.0117188, 4.2890625, -0.27905273, 1.2773438, 1.3164062, -0.78466797, 0.54785156, 0.7529297, -0.94921875, 0.46533203, 2.4609375, -0.6230469, 1.1035156, -1.6259766, -0.6738281, -2.546875, -0.3071289]}, "B07QG6QCLD": {"id": "B07QG6QCLD", "original": "Brand: APG outdoor\nName: APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking\nDescription: This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
          Features:
          Made of stainless steel for durability.
          Mounts to a gas stove and requires no electricity Rust proof emitter guard.
          Adjustable safety valve controls gas flow and heating power.
          Weighs 320G and comes in a storage bag, convenient to carry.
          Specifications:
          Material: Stainless steel & Aluminum alloy & Copper
          Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
          Net Weight: 320g
          Package List:
          1 * Heater
          1 * Canister Stand
          1 * Storage Bag
          \nFeatures: Note: Propane Tank Need Mapp Adapter to use \uff08product don't contain adapter\uff09\nWeighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)\nPackage List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn't contain gas tank)\nMaterial: Stainless steel & Aluminum alloy & Copper\n", "embedding": [0.25976562, 2.8535156, 1.9697266, 1.8662109, -0.11810303, 2.0722656, 2.1738281, -1.3515625, -0.31323242, 2.1171875, 0.18920898, -0.006061554, 1.6083984, -3.2480469, 1.5595703, 2.2578125, 2.3183594, 1.6132812, 0.59716797, 1.3183594, 1.2285156, 0.08703613, 0.46850586, -1.1796875, 0.40039062, -0.19311523, 3.5605469, -2.4277344, -1.3056641, -2.4257812, -0.024642944, 1.3134766, -0.07702637, 1.2646484, -2.2988281, -1.3603516, -2.9140625, 2.1484375, -2.5761719, -1.2685547, -1.0429688, -2.7597656, 1.0839844, -0.7895508, -0.19628906, -0.2890625, 2.5175781, 0.5854492, 0.9838867, -1.0253906, -0.26049805, 0.6069336, -0.8642578, 1.6386719, -1.9580078, -2.4667969, -0.54589844, -2.8730469, 1.7470703, 1.8476562, 0.12878418, -1.6123047, -1.3339844, 2.3554688, -0.8408203, 0.068847656, -0.24816895, -0.83496094, -1.8662109, 0.1796875, 2.6035156, 0.12585449, 0.6621094, 0.80615234, 0.09490967, -0.22314453, -2.7675781, 0.8935547, 2.7089844, 1.7714844, -0.9765625, 0.58496094, 0.9589844, -0.018829346, -1.7050781, -0.72998047, -0.77490234, 0.14428711, 0.640625, 2.46875, -0.8173828, 2.078125, -2.4765625, -2.4492188, 0.8496094, -0.9277344, 1.3017578, 0.36132812, 1.0986328, 2.4316406, 0.31079102, -0.96484375, 0.15319824, -0.13952637, -2.3359375, -0.5961914, 2.4472656, -0.15698242, -1.7949219, 1.2314453, -2.2714844, -0.88916016, 1.5966797, -1.6708984, -2.296875, -1.1582031, 0.43676758, 0.953125, 3.8457031, 2.875, 3.9492188, -0.16174316, 2.0957031, -2.7753906, 0.9394531, 0.21289062, -0.67089844, -0.11212158, 2.9941406, -2.4492188, 1.1582031, -0.3623047, -0.009986877, -0.14978027, 0.46020508, -1.5566406, -0.1430664, -1.8759766, -3.2128906, 0.078186035, -2.6347656, 0.8222656, 2.171875, -0.6166992, -3.6503906, -0.86572266, -2.9375, 2.8359375, 0.55078125, 1.5224609, 0.86328125, -2.3710938, 0.15563965, -0.43408203, 1.0205078, 2.3007812, 0.44628906, -2.0488281, 3.6875, 2.2324219, 2.4765625, -1.7285156, -1.5126953, -0.48608398, -0.43164062, -1.6015625, 1.3955078, 0.6977539, -1.2734375, 1.0478516, 2.3046875, -2.6347656, 0.4033203, -0.6772461, -0.34594727, -2.3242188, -0.17114258, 0.73828125, 1.2792969, -0.8305664, -3.0488281, -2.3789062, 0.6801758, -0.048217773, 0.8120117, -2.3808594, -2.7949219, -1.4414062, -1.8134766, -0.8881836, -2.6113281, 0.11578369, 0.4404297, 0.047973633, -1.7353516, -3.2207031, -2.5136719, -2.2050781, 0.51660156, 1.3613281, -1.6044922, -1.8183594, -0.50439453, -0.42651367, -4.203125, -3.2207031, -0.017608643, 0.46899414, 0.008583069, 1.5791016, 0.7426758, 0.5, 2.5585938, 0.5522461, -0.34448242, -0.5073242, 2.2421875, 1.2880859, 2.4394531, 1.7265625, -0.29003906, 1.140625, -0.24328613, 0.33398438, -0.26879883, 2.7441406, 0.90771484, 0.54052734, -1.2988281, -3.1660156, 2.2070312, -0.07733154, 0.18164062, 0.4404297, -0.4987793, 3.1015625, -0.4958496, 1.3115234, 0.74658203, -0.92626953, -0.71435547, -1.2128906, -1.390625, -0.5385742, -1.4199219, -0.8276367, 0.12072754, 0.15209961, 0.025772095, 0.3251953, 1.6113281, -1.2636719, -0.953125, -0.37695312, -1.5195312, 1.6875, 0.8618164, 2.9394531, -2.0957031, -2.1484375, 2.1386719, 3.2714844, -0.82910156, 2.0859375, 1.8554688, -0.49023438, 1.7470703, 0.12438965, -2.3183594, 2.3203125, -0.33764648, 2.3164062, 1.8994141, 0.84228516, 2.546875, -0.52734375, -0.8647461, 3.2265625, -0.18139648, -0.25, -0.0546875, -1.1152344, 1.9716797, -2.0097656, -0.4724121, -0.18249512, 1.1318359, 0.17443848, -2.0371094, 0.99902344, 3.6972656, -1.0800781, -3.1132812, 0.6176758, -0.29541016, 0.953125, 3.2792969, 0.049926758, 0.1328125, 1.7734375, 2.1796875, 0.19262695, -2.4746094, 0.70703125, -0.39379883, -1.7138672, 1.2998047, -3.0566406, 1.4755859, 0.6928711, -0.38964844, -0.296875, -3.8359375, -0.484375, -3.4941406, -1.0380859, 3.3964844, -3.4941406, -0.76220703, 2.4804688, -0.9272461, 1.1132812, -0.31030273, -3.4296875, 0.04736328, 0.51416016, -1.3525391, 1.4638672, -1.2714844, -0.61621094, 0.4416504, -1.7705078, 1.5615234, -2.7792969, -2.1425781, -0.89697266, -2.4980469, -1.2695312, 0.95654297, -1.9628906, -0.67822266, -0.84716797, -1.6855469, 0.6142578, -0.27441406, -1.1630859, -0.093566895, 1.3789062, -1.0371094, -1.9550781, 1.3476562, 2.390625, -1.0976562, -3.2382812, -0.75146484, 2.3476562, 0.6381836, 0.7504883, -2.5195312, 0.22546387, -0.6796875, 0.1027832, -0.1986084, -0.23718262, -0.34155273, -2.8769531, 1.59375, -5.5390625, 1.3359375, -0.80810547, 2.0546875, -0.25805664, -1.28125, -2.3867188, -1.109375, 2.6816406, -0.99902344, 4.1289062, 0.80908203, 1.2773438, -1.7148438, -0.71484375, 0.6425781, -1.5273438, -2.6484375, -0.053375244, -2.3300781, -0.9951172, -1.9023438, -2.8984375, 0.20007324, -0.021514893, -1.3222656, -0.4572754, -0.4375, 1.1142578, 0.14172363, -0.9580078, 1.0742188, -0.22814941, 1.0390625, -0.07147217, -1.3271484, -2.1601562, -1.4189453, -0.52441406, -0.08502197, -2.6621094, 1.4853516, 1.1767578, -0.05682373, 2.53125, -0.119628906, 1.7451172, -0.5029297, -4.5, 2.7421875, 3.7324219, 0.42041016, -0.7763672, -0.8642578, -0.3190918, -1.9765625, 0.17333984, 2.9824219, 1.4375, 2.6171875, 0.040161133, -0.33642578, 0.6821289, 2.2929688, -0.4963379, -2.2207031, -0.35424805, 3.5332031, -2.4023438, -1.2119141, 1.8671875, 3.0078125, -4.2539062, 0.17980957, 1.6367188, 0.44506836, 1.8544922, 0.7963867, 0.98583984, 1.8085938, 1.6669922, 1.0361328, 1.2470703, 0.95703125, -2.2304688, -0.2746582, 0.3239746, 1.0517578, 2.1777344, -0.17980957, 0.5175781, 0.61328125, 2.9042969, -0.07940674, -3.7988281, -0.3317871, -1.0976562, 0.9135742, 0.6484375, 2.5058594, 0.26733398, 1.09375, 1.2802734, 1.0263672, 0.8798828, -2.3046875, -0.3947754, 1.4140625, 1.6513672, -1.2021484, -0.7504883, -0.64941406, -1.6503906, -2.3925781, 1.5791016, -1.1328125, 0.31274414, 0.7265625, -2.2050781, -2.1523438, -0.011352539, -0.3310547, -0.90527344, -1.8271484, 1.6982422, -0.53564453, -2.2617188, -0.91015625, -0.41015625, -3.2402344, -0.88916016, 3.9160156, 0.15734863, -0.94873047, 0.7783203, -0.8408203, 1.8623047, 3.3164062, 0.017532349, -2.2226562, -0.40698242, -1.25, -0.105651855, -1.3886719, 0.5673828, 1.1835938, -3.5410156, 1.0273438, -2.0410156, -0.79589844, 2.1484375, -1.4667969, 0.61816406, 1.5390625, 1.4111328, 2.4335938, -0.55371094, 4.2421875, -1.9375, -0.7680664, 2.3300781, -1.2080078, 0.6582031, -1.8134766, -6.2734375, 2.1367188, -1.9492188, 0.86083984, 3.6074219, 0.4338379, 0.17419434, -1.4140625, 0.2076416, -1.3349609, -3.7949219, -0.77001953, 2.3886719, -4.734375, 1.3017578, -0.11590576, -0.57421875, -2.4355469, -2.5527344, -0.5834961, -0.70996094, 0.4248047, 0.017303467, 0.8071289, 0.35498047, -1.3310547, 0.80322266, -0.5317383, 1.4443359, -1.7294922, -0.07086182, 0.22546387, -2.1152344, 4.3945312, 0.46655273, 0.43041992, 0.7685547, 4.7421875, 1.9482422, -1.0839844, 0.28344727, 1.5986328, 2.421875, -0.5683594, -5.015625, 0.80371094, -1.1269531, -1.3574219, -1.3779297, -1.7167969, -0.8774414, -1.1347656, 1.3164062, 1.8408203, 3.2910156, 1.6074219, 0.5390625, -3.046875, 1.7705078, 0.14355469, -2.3515625, -1.7753906, -2.3046875, -2.2871094, -0.58154297, -0.08734131, -1.8125, -1.3427734, -0.8959961, -0.23474121, -1.5849609, 2.6914062, 1.7763672, 3.2910156, 1.6210938, -1.5117188, 1.0048828, -1.4902344, -0.03579712, -0.11218262, 0.72265625, 3.3359375, 1.1650391, 1.8154297, 2.5800781, -3.1425781, -1.2773438, 3.7148438, -1.7480469, -0.7236328, -0.71972656, 2.0078125, -0.9589844, -1.9746094, -0.4345703, -0.20776367, 3.6367188, -2.0859375, 1.0673828, 0.84521484, -0.21557617, -2.5742188, 0.31884766, 0.9663086, 0.7871094, 0.39233398, 0.042999268, 1.3076172, -0.16113281, 0.9716797, -0.87060547, 2.46875, -2.0898438, 0.17712402, -0.53222656, 1.2382812, -0.65966797, -0.46142578, 1.3037109, 0.7402344, 1.0898438, 2.5820312, 0.27124023, -0.05645752, 0.34570312, 2.1621094, 0.26391602, 0.6796875, 0.67285156, -0.11480713, 1.4804688, -0.5654297, -2.5683594, 0.9707031, 1.6259766, 0.7763672, 3.1269531, 0.36914062, -1.3486328, 0.7182617, -2.3964844, -1.640625, -0.57714844, 0.6621094, 0.6323242, -2.0351562, 1.5166016, -0.14050293, 2.6425781, 3.6640625, 0.58203125, 0.671875, 2.6542969, -2.1835938, -0.4501953, 0.9892578, -1.5263672, -1.7548828, -0.6123047, 0.44335938, 1.7412109, 1.6279297, 2.171875, -0.13208008, -2.21875, -1.2333984, -2.7167969, 1.8691406, -2.4199219, -1.2226562, 0.3425293, 3, 1.1044922, -2.1171875, -2.359375, -1.3378906, 1.1523438, 0.2064209, 2.734375, -0.24072266, -2.4082031, -3.7148438, -4.7460938, -1.4228516, 0.7866211, -1.2333984, -0.32861328, -0.35668945, -2.9511719, -1.2490234, 0.06311035, 1.1777344, -1.7333984, 0.60058594, 0.23779297, 0.99072266, -0.6230469, -0.024505615, 0.46313477, 1.8876953, 0.17944336, 1.0400391, -1.3876953, -2.2734375, -2.8476562, -0.46948242, -1.7753906, -0.53125, -0.3852539, -1.1455078, -0.23474121, 5.0039062, 1.6679688, -1.1132812, 2.6835938, -0.7294922, -1.4414062, 1.8671875, -1.5019531, 3.3867188, 0.5126953, -2.625, 0.15661621, 1.8242188, -0.84472656, 0.2553711, 2.0664062, -0.5253906, 1.4492188, 0.31420898, 0.5058594, 0.64990234, -0.85253906, 3.5429688, 2.2597656, -1.2207031, 0.63183594, -2.1425781, -1.3300781, -0.15917969, -0.7446289, -1.2441406, 0.26000977, 0.9511719, 0.83203125, 0.85009766, 1.8134766, -0.5600586, 1.0048828, -3.1367188, 0.30541992, -1.6542969, 2.9550781, 1.3388672, -0.19433594, -3.2734375, -2.9472656, 0.8100586, 1.6865234, -0.3671875, -1.4082031, 0.5913086, -0.50439453, -0.5878906, -1.8974609, 2.3828125, 3.6640625, 0.48706055, -3.0605469, 2.9707031, 2.9746094, 0.8208008, -0.06713867, 0.91845703, -0.115356445, -0.70996094, 2.8847656, 1.2753906, 0.0116119385, -0.19494629, 0.16442871, 1.8242188, -1.7871094, -1.5205078, 1.8525391, -4.1132812, -0.56103516, -0.9355469, -2.2578125, -3.2949219, 1.6816406, 0.5703125, -0.8071289, 2.6679688, 4.1523438, -1.6308594, -0.27490234, 1.7431641, 0.33935547, -0.52734375, -0.2993164, -0.89941406, -0.43041992, 3.5742188, -0.58203125, 2.0996094, 2.5566406, 1.4716797, -0.046417236, 2.2246094, 1.5712891, 0.56103516, 1.8662109, 1.2109375, 2.4121094, -0.47021484, 1.5410156, 1.3291016, 0.3125, 2.2929688, -2.0917969, 1.7148438, -0.5600586, 1.7148438, -1.0986328, -1.7070312, 0.90771484, 0.5986328, -1.671875, -1.3554688, -0.95703125, 0.7363281, -3.3945312, -0.75, -0.082092285, 0.69873047, -1.0527344, 1.6962891, -1.1894531, 0.3618164, -1.4638672, -0.046020508, 2.3632812, -0.46362305, -0.6118164, 0.7216797, 0.61376953, 2.2324219, -1.9042969, 1.9257812, -1.1328125, -1.8808594, 0.34985352, 3.3574219, 1.8974609, 2.2578125, -0.51904297, 1.6386719, 1.4101562, -1.1328125, 1.4873047, 1.6894531, 1.0048828, -0.70703125, 3.4179688, 3.2441406, -0.04232788, 0.92626953, -0.1907959, -0.5366211, -3.5195312, -0.106933594, -1.3564453, -1.5800781, 0.49121094, -2.5527344, 2.2714844, -0.04525757, 1.59375, -3.859375, 1.1494141, 1.1787109, -2.1503906, -1.0029297, 1.3466797, -0.25390625, 2.4824219, 0.8232422, -0.4794922, 0.020553589, 1.3017578, -0.1619873, -1.0283203, -0.9707031, -1.59375, 0.8461914, -1.9375, 1.6738281, -0.056671143, -0.75439453, -0.29052734, 0.4987793, 2.1894531, 1.4150391, 0.21557617, -1.8300781, 1.1308594, -0.3737793, -0.88916016, -1.8486328, -1.3789062, -0.21850586, 0.5649414, -0.26513672, -1.9736328, -0.07080078, 1.3720703, 0.44384766, -4.671875, 0.77685547, 1.2353516, -0.5439453, -0.036743164, 1.5859375, -2.3261719, 0.43115234, -2.1953125, -0.52978516, -1.7832031, -0.052215576, -1.3671875, -0.2614746, 0.8388672, 0.3166504, 2.0449219, -0.4765625, -0.3630371, 0.55810547, 2.4277344, -0.3088379, 0.024124146, -0.7998047, -1.6103516, 0.7993164, 1.8740234, 1.6494141, 0.5371094, 1.40625, -2.7871094, 0.6977539, -2.4453125, 0.46850586, 2.2109375, 2.1289062, 1.7236328, 0.35009766, -2.421875, -2.2167969, -0.2397461, -1.4365234, 1.4853516, 0.8442383, -2.2949219, 0.828125, 0.5415039, 2.8652344, -0.85839844, -1.0449219, 0.08270264, -0.08276367, 1.3505859, -0.020599365, -0.29101562, 3.3378906, -0.080444336, -0.6772461, 1.4677734, 2.7558594, -1.0009766, 2.9199219, -0.38012695, -0.0040512085, -2.9199219, 0.64453125, -2.1191406, 0.19750977, -0.96484375, 1.8154297, 2.5917969, -0.83251953, -0.016220093, -4.3242188, -0.35620117]}, "B07C1KZK5W": {"id": "B07C1KZK5W", "original": "Brand: DOZYANT\nName: DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified\nDescription: \nFeatures: CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel\nCOST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks.\nWEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [0.7519531, 1.8466797, 0.7446289, 0.33325195, -0.91259766, -1.0009766, 0.79052734, 0.35742188, -0.6376953, 2.453125, 2.65625, 0.57373047, 1.4277344, -2.3828125, 0.28686523, -0.8911133, -0.12445068, 0.18322754, 2.453125, 1.2255859, 3.2695312, 0.9746094, 0.4091797, -0.7402344, 0.78125, -0.68896484, 3.3808594, -1.2792969, -1.7871094, -0.4416504, 0.08343506, -0.29125977, 0.04916382, -0.21008301, -0.75878906, -1.1230469, 0.29858398, 0.1340332, -3.4550781, -1.2041016, -2.4550781, 2.3730469, 3.4003906, 0.79589844, -1.9863281, -0.90625, 0.26660156, -0.3876953, 2.1738281, 0.6801758, 0.1895752, 1.3515625, 0.8666992, 0.4375, -1.8349609, 0.64453125, 0.7050781, -4.2148438, 1.1748047, 0.7763672, 1.8388672, 0.80615234, -0.046051025, 0.7260742, 0.9589844, -0.18469238, -2.0722656, -0.49023438, 0.66845703, 0.7792969, -0.47070312, 2.0058594, 0.61816406, -1.6738281, -2.2773438, 1.7568359, -4.625, 1.3164062, 1.9355469, -0.47583008, -0.91064453, 1.2314453, 0.3930664, -0.30639648, -0.6743164, 0.12866211, -1.7753906, 2.2109375, 0.23571777, 1.6855469, -4.6015625, 3.1386719, -1.8212891, -3.3242188, 0.53466797, -0.14257812, 0.5102539, 1.7792969, 2.984375, -0.10632324, -1.0556641, -1.5556641, 0.20996094, 1.7724609, -1.7929688, -0.8833008, -0.8955078, -0.34375, -0.92089844, 0.5102539, -1.1318359, 1.1591797, 2.8183594, -1.7275391, -0.9550781, -3.6328125, 1.8056641, -0.69433594, 2.5058594, 1.6308594, 2.3671875, -0.6923828, 1.2041016, 0.26538086, 2.8164062, 2.0664062, -1.1777344, 0.21203613, 2.1484375, -0.4267578, 0.18115234, -0.6538086, 1.1689453, 0.68652344, 2.0058594, -2.9277344, 0.45629883, -2, -0.3232422, -1.359375, -3.3828125, 0.94140625, 0.36547852, 0.022506714, -3.765625, -0.121154785, -2.1777344, -0.13427734, 0.7993164, -2.1777344, 0.25268555, -2.6777344, -0.8876953, -1.3740234, 2.3457031, 1.7519531, 0.87060547, -1.0429688, 1.2509766, 1.4560547, 0.6098633, 0.14929199, -0.7158203, 2.0507812, 0.10760498, -3.7929688, 2.1347656, 0.30786133, -1.6386719, 0.21008301, -0.48266602, -3.4707031, 1.9560547, -0.08282471, -0.14428711, -1.6787109, 1.6025391, 0.051727295, 1.1552734, 0.9116211, -3.546875, -1.7958984, -0.40600586, -1.8193359, 1.1220703, -1.6757812, -2.3613281, -1.3027344, 0.4399414, -2.140625, -1.1640625, 1.8925781, -0.12792969, 0.9814453, 0.1875, -1.8964844, -2.0800781, -1.4902344, 0.28686523, 2.875, -0.14660645, -1.5234375, 0.8798828, -0.24914551, -1.0556641, -0.81884766, 2.2050781, 1.1601562, -0.3647461, 1.7871094, -1.2880859, 0.28979492, 3.0996094, -1.3271484, -1.6582031, -1.9443359, 1.4716797, 2.0449219, 1.7177734, -0.20178223, -1.7958984, -0.5761719, 1.0439453, 0.99658203, 0.80566406, 1.3017578, -1.5908203, 1.2939453, -1.5839844, -0.67578125, 1.5478516, 2.1191406, -0.19921875, 0.1472168, -0.7451172, 2.3925781, 1.0546875, 0.3557129, 1.765625, 2.0097656, 1.9316406, 0.20922852, -1.90625, -1.265625, -1.9013672, 0.5551758, -1.3525391, 1.6708984, 1.9423828, -0.7910156, -0.24963379, -0.28173828, -2.2832031, -2.3359375, -1.625, -0.2310791, -0.26245117, 1.5458984, -0.2244873, -1.1376953, 2.3339844, -0.3881836, 0.7011719, -0.028427124, 0.9555664, 1.4306641, 2.2167969, -2.5585938, -0.04446411, 1.4111328, -0.27514648, 3.2988281, 1.3564453, -2.265625, -0.4152832, 1.9882812, -2.1757812, 1.7314453, 0.007095337, 0.011230469, 3.0117188, -1.2714844, 0.9692383, -2.6933594, 1.3017578, 1.2548828, 1.4755859, -0.1083374, -2.6503906, 0.086242676, 3.1933594, 0.26635742, -1.3320312, 1.8994141, 2.1914062, 2.7011719, 1.2929688, -0.6816406, 0.3857422, -0.2614746, -0.4489746, 0.7089844, -3.0253906, 0.25, 2.7480469, -0.051696777, -0.5527344, -0.7529297, 0.78808594, 0.90478516, -0.5395508, -0.3461914, -2.1582031, -0.79052734, -2.1757812, -2.0683594, 0.79541016, -1.7294922, -0.8676758, 2.0292969, -0.52783203, 0.3461914, 1.2714844, -0.29907227, 0.08709717, 1.1572266, 0.07183838, 0.3642578, 2.6113281, 0.011436462, 1.5595703, -0.5961914, 1.7216797, -1.9541016, -1.1142578, 1.2373047, -0.4416504, -3.125, 0.76660156, -1.8212891, -1.0351562, -0.8457031, 1.9658203, 3.1445312, 0.95166016, -0.1026001, -2.3789062, 0.65283203, -0.2980957, -2.7675781, 0.06036377, 2.046875, -2.0371094, -3.4863281, 0.6484375, 0.0060310364, -0.6352539, 2.7421875, -2.375, 1.0439453, 1.4570312, -0.44848633, -0.5566406, 1.0410156, -1.2060547, -1.6992188, 1.1298828, -3.6191406, 0.6660156, -0.89990234, 0.08325195, -0.8833008, -0.94140625, -0.92089844, -0.5541992, 1.15625, -0.90625, 1.2988281, -0.32641602, 1.9443359, 1.0263672, -1.1542969, 1.4902344, -1.0615234, -3.4335938, -0.88623047, -0.9355469, -0.7416992, 0.92089844, -3.9960938, 0.6088867, -0.7270508, 0.12438965, 0.9082031, -0.29492188, -0.4465332, -0.71777344, 2.2148438, -0.50878906, -0.21911621, 1.5097656, 0.1459961, -1.2001953, 1.3398438, 1.046875, -1.4921875, -1.1738281, 0.8725586, 0.068359375, -0.086364746, -1.9355469, 0.57470703, 0.56152344, 0.4033203, -0.10870361, -3.0527344, -0.54833984, 2.4082031, -1.09375, 2.1132812, -0.30688477, -0.6381836, -4.09375, -0.9692383, 3.1289062, 1.0605469, 3.9960938, 0.2709961, 1.5117188, -0.60498047, 1.1279297, -1.6943359, -0.56103516, -0.79785156, 2.2695312, -2.7539062, -0.42822266, -1.8574219, 2.2773438, -3.1171875, 0.3552246, 0.9243164, -0.38891602, 2.828125, -0.44726562, -0.38476562, -0.18615723, 1.40625, 1.234375, 1.4404297, 0.77441406, 0.65966797, 1.4599609, -0.03427124, -0.8701172, 0.26879883, 0.63378906, 0.9794922, 1.4697266, 0.76171875, -0.5498047, -2.078125, 0.0758667, -0.0993042, -0.5161133, 1.2998047, 1.1337891, -0.059631348, 1.5458984, -0.85009766, 0.60498047, 1.5068359, -0.48095703, -1.0302734, 1.2460938, 1.4931641, -1.0664062, 0.11627197, -0.31176758, -0.7709961, -0.6640625, 0.08001709, 2.296875, 1.6142578, -0.09307861, -0.7241211, 0.58154297, -1.1416016, 0.49072266, 0.5419922, 0.86572266, -0.99902344, -0.77685547, -1.7890625, -2.0996094, -1.4638672, -3.4414062, -1.1943359, 1.921875, 1.8994141, -0.58447266, 0.96240234, 0.11798096, 2.9824219, 1.9248047, -1.7099609, -1.3759766, -1.8720703, -1.2236328, 0.6459961, -0.47143555, 1.9130859, 1.4560547, -3.5917969, -1.5664062, 0.1418457, 0.5961914, -0.79785156, 0.28735352, -0.96533203, -2.3417969, -0.8574219, 1.6591797, -0.5053711, 2.453125, -0.5083008, -0.7211914, 1.1708984, -2.203125, -0.4169922, 0.45629883, -4.0390625, 0.16186523, -2.0117188, 1.6894531, 2.8515625, -0.13977051, -0.9873047, 0.41235352, 2.0664062, -3.390625, -0.88623047, -1.7998047, 1.8505859, -2.4277344, 1.1923828, 2.7929688, 0.87841797, -1.4091797, -1.4902344, 0.3857422, -1.4667969, -1.1669922, -0.7089844, -1.2324219, 1.1298828, -0.24487305, 1.1972656, -3.1835938, 1.0341797, 2.1875, -1.1328125, -0.6660156, -1.5390625, 1.4052734, -0.20336914, 0.42016602, -0.036987305, 3.4375, 2.0722656, -1.0966797, 0.21325684, -0.49414062, 3.3027344, -0.3034668, -2.0371094, 0.0770874, -0.95996094, 0.3972168, 0.33789062, -0.84228516, -0.7207031, -0.5410156, 1.2998047, 1.2207031, 1.375, 1.9101562, -0.14624023, -2.4707031, 0.0015382767, 1.3457031, -2.5175781, -1.4707031, -0.33422852, -0.87402344, -1.0820312, -0.32470703, -1.7792969, -0.095214844, -0.072143555, -0.20166016, -0.94628906, 1.1972656, 1.1035156, 0.99072266, 0.03643799, -1.3515625, -1.1445312, -0.27148438, 2.421875, -0.13134766, -0.69140625, -0.8569336, -1.1367188, 1.1171875, 2.2539062, 0.5629883, -0.49145508, 0.0982666, 0.00028395653, -0.55126953, -0.47607422, 1.8623047, -1.3535156, -2.078125, -1.4277344, -1.9042969, 3.8847656, -2.3886719, 0.62109375, -0.032165527, -1.2167969, -2.3417969, 1.6015625, 2.4414062, 0.08892822, 0.84765625, -0.10858154, 2.375, 1.8671875, 0.5473633, 2.7265625, 0.66796875, -0.7167969, -0.58691406, -0.93359375, 1.6806641, 0.21984863, 1.4833984, 0.5991211, 0.35766602, 2.6679688, 0.8364258, 0.7182617, -0.12200928, 1.8486328, 0.70703125, 0.34692383, -1.7871094, 0.19909668, -2.7207031, 3.5097656, -2.1601562, -2.4882812, 0.6791992, 1.9931641, 0.5673828, 1.4580078, 0.2763672, -0.091552734, -1.9912109, -2.5859375, -1.4628906, -0.011444092, -0.1459961, 0.1965332, -1.1708984, 0.9370117, 1.7792969, 2.0546875, 2.5078125, 1.2236328, 0.7631836, -1.1171875, -1.1347656, -1.9541016, -1.2529297, -1.4345703, -3.3828125, 0.52197266, -0.9199219, 2.9335938, 0.9194336, 1.1044922, -0.13574219, -1.1826172, -1.1591797, 1.2167969, 1.6992188, -1.6757812, -1.3847656, 3.1503906, 1.3164062, -1.5029297, -1.8945312, -0.73339844, -0.78808594, 0.66845703, 2.1835938, 1.1152344, -0.9711914, -0.4868164, -1.9609375, -4.859375, -1.5478516, 1.0410156, 0.8979492, -0.4091797, -1.2734375, -1.0927734, -0.5966797, -1.3759766, -1.1699219, -1.2373047, 1.1123047, -1.2783203, -0.4025879, 1.015625, 0.26538086, -0.021514893, 0.4165039, -0.8911133, -2.3339844, -0.18444824, -2.3847656, -3.4804688, 0.107543945, -2.3964844, -0.9785156, 0.76660156, -0.83496094, 0.79589844, 2.5097656, 1.1972656, -1.8847656, 3.25, -1.6708984, 1.3076172, 0.20349121, -2.2929688, 0.97216797, 0.9609375, -0.21350098, 0.2854004, 2.9863281, 4.5703125, -1.9375, 0.24169922, -0.47705078, -0.038513184, 0.054901123, 0.86376953, 0.62158203, 0.25732422, 1.0107422, 2.625, 0.050842285, -1.0712891, -2.9472656, 0.2590332, 0.060058594, -1.7480469, -0.15942383, 0.48120117, 0.67529297, 1.2421875, -0.59375, 0.4987793, -0.15539551, -0.21520996, -1.3642578, 0.43823242, -1.5664062, 1.5693359, 1.3447266, -1.9833984, -4.9414062, -0.6040039, 3.1777344, 2.375, -1.1933594, 1.0888672, 0.066467285, -0.81396484, -0.28344727, -0.3400879, 2.1367188, 0.8051758, 0.9916992, -1.5136719, -1.1748047, 1.7998047, -2.5507812, 0.0040512085, 0.3137207, -0.9921875, -0.67822266, 0.76464844, 2.1835938, -1.5498047, 0.28051758, -0.65966797, -1.2929688, -2.3769531, -1.0410156, 0.66308594, -3.5996094, 1.9863281, 0.84277344, -2.9804688, -2.6738281, 2.5976562, -1.4482422, 0.8027344, 1.5126953, 2.4121094, -1.6533203, -2.5683594, 0.35717773, 0.2890625, -0.1361084, 0.26171875, -2.3300781, 0.59375, 1.9199219, -1.0976562, 1.7402344, 1.1748047, 1.4052734, -0.8544922, -1.3964844, 1.0019531, 1.9199219, 0.875, 3.6230469, 2.6777344, 0.18652344, 1.0029297, 1.2607422, 1.6279297, 2.7929688, -2.5332031, 0.8701172, 1.5566406, -0.3544922, 1.3017578, -1.6494141, -0.14880371, 0.41625977, -0.56396484, -1.2578125, 1.4306641, 3.703125, -2.3222656, -0.66503906, -2.0859375, -1.0537109, -1.4003906, 0.71728516, -0.92089844, -0.6699219, 0.4794922, 1.5527344, 0.8876953, 2.0566406, -0.6616211, 1.3808594, -1.7685547, 1.9570312, 0.6479492, -0.5517578, -2.9003906, -0.8413086, 0.4104004, 2.0449219, 0.57421875, -0.7441406, 1.5556641, 1.4072266, -0.48339844, 0.83154297, 1.2265625, -0.5708008, 0.50683594, -1.7050781, 1.6220703, 4.34375, -0.7265625, 2.3417969, 0.6660156, -0.65478516, -2.2695312, 0.23083496, 0.14343262, -0.6616211, -0.43969727, -2.5761719, 0.7104492, -2.7089844, 0.09674072, -2.6132812, -1.5791016, 0.14489746, -2.0898438, 0.43798828, -0.8354492, -0.80078125, 2.09375, 2.0195312, -0.99853516, 0.7373047, 1.8720703, 1.3935547, 0.78515625, -1.0859375, -0.48754883, -0.2565918, -1.1533203, 3.8496094, -0.7573242, -0.6455078, -0.5605469, 3.40625, 0.6645508, 0.34936523, 1.2988281, -0.71972656, 1.7939453, 0.85839844, -0.5175781, -0.7216797, -0.98291016, -0.1842041, -0.01890564, -2.2910156, 0.3388672, -0.09710693, 0.82421875, 1.7353516, -1.9746094, -0.23278809, 1.3066406, -0.8701172, 1.5712891, 1.7802734, -1.5302734, -0.671875, 1.2802734, 1.4648438, -3.2695312, 1.9794922, -0.060424805, -0.30126953, -1.8466797, -1.7548828, -0.9770508, -0.26220703, -0.81591797, -0.94628906, 0.27148438, -0.54345703, -0.5595703, 0.7109375, -1.7197266, 1.9033203, 2.6191406, 0.26733398, 1.2695312, -0.3942871, -0.60058594, 1.8164062, -0.88964844, 0.11682129, 1.1669922, 1.4941406, 0.45922852, 0.51171875, -2.0410156, -3.0585938, -1.6386719, -2.4160156, -0.18127441, 0.40478516, -2.0644531, 1.0078125, 1.3925781, 2.2988281, -0.44848633, -0.70214844, -0.5517578, 1.3984375, 2.1640625, -0.9082031, 0.76708984, -0.033111572, 0.30615234, 1.9355469, 4.6445312, 3.3007812, -1.5341797, -0.74609375, 1.1796875, -1.6416016, -2.1328125, -0.6455078, -0.2241211, -0.4650879, 1.4882812, 2.6621094, 2.2207031, 0.34838867, -1.1796875, -1.0087891, 0.5595703]}, "B072559N4L": {"id": "B072559N4L", "original": "Brand: LOOCH\nName: LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch\nDescription:

          Each set has 6 of the highest quality grill mats that makes grilling anything easy!

          Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

          Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

          You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

          They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

          For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

          These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

          These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

          -Veggies
          -Shrimp
          -Fish
          -Bacon
          -Pizza
          -Pancakes
          -Eggs
          -Anything else you want to put on the grill!

          BBQ Grill Mats Size: 15.75\" x 13\"

          \nFeatures: 100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill!\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit!\nSECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!\n", "embedding": [-1.0332031, 1.1376953, 1.5283203, -1.3466797, 0.6010742, -0.017044067, 1.0390625, -0.6074219, -0.48876953, 1.2910156, -0.48461914, -0.6982422, 0.9091797, -3.2832031, 0.85546875, -1.3613281, 0.41601562, 2.4921875, 2.6269531, 0.6669922, 0.44067383, -0.6870117, 0.6855469, -2.3007812, 1.3681641, 1.4287109, 3.03125, -0.40527344, 0.029571533, -0.24633789, 1.8203125, 1.3740234, 0.09979248, 1.90625, -3.8242188, -2.0488281, -0.56591797, 3.5488281, -1.109375, -0.8364258, -1.5341797, -3.1015625, 1.4511719, 2.8769531, -3.0253906, -0.5888672, -0.7807617, 2.359375, -0.76464844, -2.2539062, 3.1484375, -0.0028190613, 2.3085938, -0.029724121, -1.9130859, 1.7890625, -0.70654297, -1.8076172, 0.49267578, 0.06768799, -0.018585205, -0.54345703, -1.9326172, 1.1699219, -1.4638672, -1.8955078, 0.016281128, -3.0273438, 0.38354492, -1.4589844, -0.18688965, -0.66845703, -0.07745361, 0.22680664, -0.90283203, 0.86865234, -0.66796875, -0.7006836, 0.32348633, -1.9404297, 0.74316406, 3.0644531, 0.38061523, 0.18127441, 0.21862793, -1.5722656, -3.0039062, -0.13513184, 2.1445312, 0.39575195, -0.21252441, 3.1601562, -1.3632812, -4.3476562, -0.1784668, -3.0527344, 0.5576172, -0.8901367, -1.4140625, 1.6640625, -1.4882812, 0.059509277, 0.18054199, 1.3144531, -2.6933594, -2.4179688, 2.2148438, 0.38623047, 0.5708008, -0.015396118, 0.22387695, 0.020935059, 0.5053711, 1.0761719, 1.8525391, 2.0644531, -0.9189453, -0.004272461, 1.0800781, 1.3291016, 4.0390625, 1.1787109, 0.049468994, -2.0722656, 1.5224609, -0.46606445, -0.34521484, 2.4453125, 1.8144531, -1.9570312, -0.9638672, -1.4892578, -0.30981445, -1.1308594, -2.1992188, -1.5058594, -0.39672852, -0.25854492, -1.8496094, 1.4140625, 0.35961914, -1.6914062, 1.9365234, -0.84375, -2.7539062, -0.5649414, -2.2148438, 3.6933594, -1.2431641, -2.2988281, 0.48632812, -1.3154297, 2.4003906, -1.8759766, 1.3525391, -0.78125, 1.1699219, 0.5473633, 0.7573242, 1.2402344, 0.2619629, -1.9023438, -2.1425781, 0.22375488, 0.68896484, -3.2089844, -1.0322266, 1.6445312, -0.21459961, 2.6308594, -0.6010742, -2.2402344, 1.703125, -0.38623047, 0.09362793, -1.6259766, 0.1973877, 3.4042969, -1.0117188, -1.5478516, 0.90625, -3.2636719, -0.5390625, 2.9316406, -0.7871094, -0.47827148, 0.69873047, -0.8251953, 0.5722656, -1.1933594, 0.27416992, 2.2285156, -0.5283203, 0.37036133, -2.7519531, -0.9091797, 0.82714844, -2.1523438, 1.9296875, 0.13171387, -0.33398438, -1.0097656, -0.28833008, -0.44848633, -2.1699219, -2.6347656, -2.0019531, 1.4980469, 1.8320312, 0.41870117, 0.13708496, -1.0595703, 2.1542969, 2.34375, -1.4453125, -2.0917969, 0.16357422, 0.68847656, 1.3007812, 2.3613281, -0.5263672, -0.51416016, -1.0712891, 3.4921875, -1.4335938, 1.2441406, -0.32861328, 0.5126953, -0.2421875, -0.50634766, 1.5507812, -0.11413574, 0.40429688, 0.30517578, -0.18225098, 2.0644531, 2.3613281, -1.6074219, -1.09375, -0.25170898, -0.54785156, -1.15625, -1.6171875, -1.8662109, -1.1455078, -0.42260742, -0.45166016, 2.203125, 1.9697266, -2.1660156, -2.0644531, 4.2070312, 1.5742188, 0.08569336, -0.37939453, 0.30322266, 0.36572266, -0.72802734, -2.3085938, 0.47265625, -0.9272461, -0.091308594, 0.1595459, 2.5625, 1.0869141, -0.2668457, 1.9736328, -0.54003906, -2.1289062, -0.6459961, -0.28686523, -0.77685547, 0.5908203, -1.2734375, 1.1972656, -0.98095703, -2.1738281, 0.68066406, 0.7680664, 0.81347656, -0.58447266, 4.3632812, 1.8212891, -2.2988281, -4.390625, 0.6171875, -3.2617188, -1.5302734, 1.0683594, 0.6220703, 3.7753906, 0.7807617, -1.4492188, 2.8144531, -1.2753906, 0.06817627, 1.3066406, -1.671875, -2.2558594, -0.20715332, -0.3774414, 3.8144531, -0.5698242, 1.8583984, -1.3007812, -0.20776367, 2.0117188, -2.4414062, -0.63964844, 2.1054688, 0.005317688, 0.096069336, 1.7226562, 1.6992188, -2.2226562, -0.9375, 1.3994141, -1.2763672, 0.20507812, -2.0644531, -1.3583984, -0.6484375, -0.86328125, -2.4609375, 0.12487793, 1.8193359, -0.27392578, 0.52001953, -0.1619873, -0.36743164, 0.4814453, -1.2802734, 1.0390625, 0.09698486, -1.46875, -2.1894531, -2.6542969, 0.31518555, -1.2373047, 0.49389648, -1.0117188, 1.1064453, -1.7919922, 0.7397461, -1.7177734, -2.5117188, -1.9130859, -1.6347656, -0.24938965, 2.1367188, -1.0205078, 0.34643555, 0.7963867, -4.5273438, 0.46069336, 0.64501953, 0.13781738, 0.8881836, -3.1835938, -0.88916016, -0.15039062, -0.19726562, 0.22351074, -0.23815918, -0.3256836, 2.1523438, -2.3886719, -2.7089844, 1.3896484, -0.1829834, -0.107299805, -2.1484375, 0.82470703, -1.8457031, -0.52441406, -1.34375, 1.0390625, 2.7734375, -0.98876953, 0.70410156, 0.4934082, -0.8041992, 0.021499634, 1.3173828, -1.3056641, -2.2109375, 0.044128418, -2.1054688, -0.58984375, -2.7304688, 0.23339844, -2.0429688, 0.28735352, -1.1865234, 2.9726562, -0.35913086, 3.6621094, -2.6914062, -1.0986328, -0.35473633, 0.97558594, -0.8310547, 0.8959961, -0.35864258, 0.11694336, -0.67041016, -2.8964844, -0.9614258, 1.6416016, -0.5229492, 0.8178711, 2.1347656, 0.54785156, -1.2626953, 0.34350586, -0.97509766, 0.32495117, -1.0292969, -1.6005859, -0.22888184, 0.125, -0.8125, -1.5664062, -2.0800781, 3.9160156, 0.085632324, 1.3212891, 0.38476562, -0.4560547, 4.4179688, 1.7148438, 0.4033203, 0.5415039, 1.1152344, 0.86328125, -2.0820312, -1.4892578, 0.93066406, 1.4794922, -1.6015625, 1.5693359, 0.45361328, 1.8173828, 0.52978516, 0.19812012, 0.66748047, -1.1435547, -0.5942383, 3.8808594, -0.91748047, -0.78027344, -1.359375, 0.52441406, -0.37841797, 2.0292969, 3.171875, 2.3457031, 1.6210938, 0.6538086, 1.2666016, 0.23571777, -2.9609375, 0.93359375, 1.5390625, 0.9355469, -0.17736816, 2.1132812, -0.026916504, -0.061157227, 2.9453125, -0.29125977, -0.3083496, -1.5791016, -0.10272217, 2.8496094, -0.43847656, 0.18688965, -0.8276367, -1.0488281, -0.59033203, -1.1923828, 1.328125, -2.4628906, -2.9746094, 1.7324219, -0.8178711, -3.1503906, 1.4208984, 4.125, -1.4423828, -0.9614258, -1.0976562, 3.1210938, -0.98779297, -1.0224609, -0.76220703, 2.609375, 0.018737793, 1.8476562, -0.5961914, -0.5571289, 1.1669922, -2.09375, 1.4667969, 0.86279297, -2.7675781, -2.421875, -2.0234375, 0.35375977, -0.02279663, -0.62402344, 0.5439453, 0.54541016, -1.7089844, 0.7685547, -1.4501953, 0.2298584, -1.046875, -2.3320312, -0.70947266, 1.0322266, 1.0927734, -0.23522949, -0.049621582, 4.3320312, 1.3183594, -2.1855469, 0.99609375, -2.6933594, 0.074157715, -0.9433594, -2.7539062, 0.46118164, 0.56640625, -1.5302734, 4.6914062, 0.90527344, 1.2314453, 3.2089844, -0.59716797, -0.99072266, 1.0097656, -2.2773438, -0.3083496, -0.87597656, 0.35864258, 3.0058594, 2.0703125, -0.25073242, -0.8823242, -1.0517578, -1.09375, 0.78271484, -0.6308594, -0.1887207, -0.47973633, -2.40625, -0.16125488, -0.45117188, 1.4570312, -0.90625, -0.027908325, 0.47851562, 1.5585938, 2.9199219, -1.6191406, 2.125, 0.7705078, -0.41186523, -0.6333008, 0.96484375, -0.6767578, 1.1015625, 3.375, -0.6245117, -1.4628906, -0.36669922, 0.4790039, 1.8867188, -0.99560547, -2.2910156, 0.54248047, -2.0195312, 0.9375, 0.21020508, 1.5986328, 1.2001953, -1.4453125, -0.59521484, 0.87402344, 0.70996094, -2.1386719, -1.8613281, 0.32226562, -0.71191406, -0.82910156, -1.03125, -2.2246094, 2.3925781, -1.9287109, 0.54296875, -1.2402344, 1.9052734, -0.28222656, 0.056152344, 4.9609375, -2.8554688, -0.7006836, 1.8710938, -3.5097656, -0.70947266, -1.4765625, -0.21057129, -2.7617188, 1.4472656, 1.9423828, -0.5390625, -1.1982422, -0.6567383, 1.125, -1.859375, -2.5800781, 0.49731445, -1.6816406, 0.14294434, 0.7548828, -0.7265625, 3.4785156, -1.5859375, 2.0605469, 1.9638672, -0.65722656, 0.27441406, 0.7890625, -0.40942383, 0.07043457, 0.67578125, 1.2226562, 0.9980469, -0.8178711, -0.76660156, 0.8041992, 2.0097656, -3.0644531, 1.0976562, 0.61572266, 2.2128906, -1.2050781, -0.9658203, 2.5390625, 2.1503906, -0.80029297, 1.9033203, 0.6357422, -1.5654297, 1.6220703, 1.7275391, -1.6191406, -0.29638672, -0.26904297, -1.203125, 2.0566406, -1.5341797, -2.6132812, -0.31323242, 0.04107666, 0.26831055, 0.34448242, -0.4243164, 0.86816406, 0.42993164, -0.6899414, -0.73291016, -2.3242188, -1.5820312, 1.2841797, -1.3662109, 0.86083984, 0.11645508, 0.1508789, 4.2851562, -1.1318359, -1.0400391, 1.6933594, 0.17102051, 0.31469727, 0.7084961, -2.3847656, -2.2363281, -1.3427734, -1.4189453, 1.0820312, 2.5136719, -0.14123535, 2.6074219, -2.7832031, 2.0371094, -3.25, 2.4453125, -2.7363281, 0.24353027, 4.3867188, -4.453125, -2.0371094, -1.515625, 2.5703125, 1.0693359, 0.7402344, 1.71875, -2.46875, -1.7490234, 0.9448242, -1.3398438, -1.5966797, -0.55371094, -0.26098633, 0.9165039, -0.5029297, -1.0546875, -0.9194336, -0.1307373, 0.80810547, 0.16467285, 0.40942383, 0.07977295, -0.72509766, -1.1601562, -1.6992188, 0.21154785, 0.39526367, 0.5883789, 0.20788574, 3.6992188, -1.2548828, -2.4023438, 0.6713867, -0.13110352, -2.2753906, -1.6865234, 0.4128418, 0.40576172, 0.21276855, 0.5229492, -0.2175293, -0.63720703, 3.1054688, -1.3037109, 0.8417969, 1.0068359, -0.5253906, -1.0234375, -0.45922852, -3.8964844, 0.6982422, -3.6621094, 1.4394531, 0.74316406, -2.8046875, 1.0947266, 0.7915039, -1.3710938, -0.9067383, 0.06329346, 1.1455078, 0.37768555, 1.28125, 0.82666016, -0.39453125, -2.609375, -2.3066406, 0.36279297, -0.7192383, -1.6904297, -1.1005859, 0.5131836, 2.5449219, -0.63671875, 1.6464844, 0.015823364, 0.6777344, -0.9189453, 0.86621094, 0.20458984, 0.3972168, 0.051818848, 0.55078125, -1.0595703, -1.4951172, 1.9892578, -0.3244629, -0.52197266, 3.1679688, -1.8222656, -2.9179688, -0.69970703, 0.28759766, 1.1337891, 1.9658203, 1.5039062, -0.3479004, -0.98046875, 0.69384766, -1.8925781, 2.15625, 1.1582031, 3.546875, -1.6484375, 4.109375, -2.0507812, -4.0664062, 1.453125, -0.117126465, -0.7807617, -0.6699219, -1.6152344, -0.67285156, -0.12451172, -0.69921875, -1.4335938, 0.83984375, -1.1767578, 3.0820312, -0.42163086, 1.2714844, -0.49536133, 2.8828125, 0.6777344, 2.09375, 2.5078125, 0.54541016, -2.0039062, -0.41430664, -0.1352539, 0.85839844, 1.09375, -0.6225586, -0.71728516, -0.2487793, -1.1298828, -1.2167969, 1.3027344, 1.8066406, 1.3212891, 0.31567383, 1.71875, 4.0507812, 1.7548828, 2.734375, 0.68310547, 2.6914062, 0.49023438, 0.7495117, 0.18786621, 3.1230469, 0.34814453, 0.89697266, -0.10205078, 2.0039062, 0.32788086, -0.4091797, 0.4050293, 1.5332031, -0.44506836, -0.92041016, 3.7226562, 1.0214844, 0.3881836, -0.26513672, 0.9794922, -3.2421875, -0.1517334, -1.0654297, 0.2685547, 3.53125, 1.0195312, 0.79345703, 1.4541016, 1.4267578, 2.140625, -2.3066406, -1.0146484, 1.1494141, -0.42382812, -2.0351562, 1.7724609, 0.88671875, 2.4433594, 1.4462891, 0.5253906, 1.5195312, 1.0634766, 0.8745117, 0.29003906, 0.5102539, -0.5307617, 2.4726562, -2.2871094, -1.7910156, -1.6933594, 0.8569336, -2.1269531, -1.1875, -0.1104126, 1.9892578, 2.4589844, -0.29833984, -4.5429688, 0.41479492, 0.5307617, 1.8505859, -2.7441406, 0.28466797, 0.023239136, -3.1347656, -1.9287109, 0.34960938, 2.1835938, 0.26879883, 0.546875, -1.3535156, 1.1083984, 1.7109375, 2.4433594, 1.1201172, 0.3642578, -1.2011719, 1.9658203, -0.13024902, 4.5976562, 2.2832031, 3.484375, 0.8901367, 0.7475586, 3.0839844, 0.19042969, 0.9628906, 1.2841797, -0.77685547, -0.78125, -0.032348633, -0.97558594, 0.63964844, -1.6318359, -2.1914062, 0.05899048, -0.32104492, -1.3271484, 0.44067383, 0.9638672, 1.8769531, 1.8388672, 0.12658691, -1.3193359, 1.8984375, 2.4355469, -0.7705078, -0.45751953, -0.14318848, 0.49389648, -0.7451172, -2.1738281, 1.0751953, 1.1845703, 1.0703125, -1.7304688, 0.85839844, -0.7714844, -0.34204102, 0.14794922, 0.9633789, -2.0058594, -2.0527344, 1.2236328, 0.72216797, 2.2539062, 2.3964844, -0.9951172, -1.8300781, 0.40600586, -1.7265625, -1.3525391, -0.8833008, -2.6796875, 0.37109375, 4.6835938, 0.8071289, 0.46606445, -1.9902344, -2.1777344, 1.1132812, -1.5625, 2.3925781, 0.3474121, -0.6616211, 0.46191406, -3.5546875, 1.6376953, 0.083740234, -2.2695312, -0.4104004, -0.6074219, 0.38427734, -0.7895508, 1.0947266, 1.640625, 0.39111328, -0.2878418, 3.0292969, 3.9863281, 1.4140625, 1.5625, 2.0273438, 1.2333984, -3.265625, -0.17578125, -0.8417969, 1.5908203, 1.4492188, -0.5439453, -1.0361328, -1.1845703, -0.3544922, -0.90478516, -1.09375]}, "B07C2KCQXX": {"id": "B07C2KCQXX", "original": "Brand: Cuisinart\nName: Cuisinart CGG-750 Portable, Venture Gas Grill, Red\nDescription: \nFeatures: 154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\n9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control.\nCOMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nPROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure.\nLARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.\n", "embedding": [-2.6347656, 1.5166016, 2.7617188, -0.09350586, -1.1591797, 0.42456055, 0.9511719, -2, -0.6542969, 1.9091797, 1.1953125, -0.56591797, 0.08782959, -2.7265625, 1.0957031, 1.0410156, 2.2480469, 0.62646484, -0.3791504, 0.72998047, 1.6191406, 0.99658203, 2.1484375, -0.52197266, 0.59277344, 1.703125, 3.8496094, -3.2148438, -0.3173828, -1.3154297, 2.2539062, 0.004501343, 1.2470703, 1.59375, -2.625, -2.03125, -1.3779297, 1.5322266, -1.0126953, -0.09686279, -0.022857666, 0.2175293, 1.7597656, 0.036193848, -3.1738281, -0.51904297, 1.0400391, 2.1621094, -0.18261719, -0.53564453, 2.484375, 0.47314453, 0.5419922, 1.0419922, -1.4072266, 2.8710938, -0.49414062, -1.7880859, 1.2978516, -0.16369629, 1.2626953, -0.63916016, -1.6728516, 0.31103516, -1.3466797, -2.0351562, -1.0722656, 1.5566406, 0.63671875, 0.8378906, 3.0332031, -0.6777344, -1.1748047, 1.0664062, -0.43530273, -1.3574219, -1.328125, 2.5839844, 0.4411621, 0.4416504, -1.4882812, 2.0898438, 1.1025391, -2.0605469, -0.44970703, 0.3088379, -0.5004883, -0.5888672, 1.5771484, 0.9667969, -0.1541748, 3.7988281, -3.3007812, -3.4003906, 0.9121094, -1.2255859, 0.21044922, 2.1972656, 0.06951904, 1.5644531, -0.8461914, 0.07006836, -0.7290039, -0.8564453, -2.1425781, -0.7006836, 1.9042969, -0.34692383, -2.9746094, 1.3476562, -1.0273438, -1.4453125, -0.1607666, 0.32592773, 1.5234375, -1.3203125, -0.15014648, 0.9609375, 2.0078125, 0.04559326, 3.4257812, 0.84472656, 0.01838684, -0.69189453, -0.52734375, 0.83447266, -0.44848633, 2.734375, 5.0507812, -2.2792969, -1.4091797, 0.00819397, 2.8183594, 0.35107422, -1.8242188, -3.2070312, -1.5019531, -2.7070312, -3.1601562, 1.8769531, -3.0429688, 1.1445312, 1.6787109, -0.43359375, -3.7128906, -1.5361328, -0.14147949, 2.7128906, 0.15649414, -1.5800781, 0.2602539, -1.6992188, -0.94189453, -1.625, 2.234375, -0.88671875, -1.9228516, -1.7802734, 3.6796875, 0.27124023, 2.7304688, -1.7919922, -1.3183594, 0.27270508, 1.7919922, -1.6337891, 0.8486328, 2.59375, -1.6376953, 0.89746094, -1.0244141, -2.0332031, 0.890625, -0.12145996, 1.2128906, -1.5283203, -0.8833008, 1.9570312, 1.5722656, -1.8408203, -0.90722656, -2.9121094, 1.3886719, 0.99658203, -0.029922485, -1.8603516, 0.15014648, -0.27026367, -0.58154297, -1.8125, 0.9404297, 0.7167969, -0.6503906, -1.2744141, 0.31591797, -1.5957031, -0.8720703, -1.7285156, -0.46118164, 0.9169922, -0.30493164, 0.38623047, 0.14697266, 0.48388672, -1.5869141, -2.5761719, -1.3925781, -1.7080078, 0.81689453, 1.1103516, 2.0253906, -1.0673828, 1.8125, -1.0390625, -0.23742676, -1.6259766, 1.7666016, -0.37231445, 1.7011719, 1.3613281, -0.8798828, -0.6035156, 0.4777832, 2.7929688, 0.6694336, 1.4970703, 0.20227051, -0.22351074, -1.6572266, -1.4335938, 2.9511719, -0.30004883, -1.6083984, 0.29663086, 0.26464844, 3.3730469, 0.5756836, -0.04345703, -1.3964844, -0.9692383, -0.83984375, -0.5048828, -2.2324219, -0.30371094, -0.8588867, 0.15600586, -2.3164062, 3.1445312, 2.4179688, -0.074035645, -2, 0.2109375, -0.2019043, 1.7011719, 0.19055176, 0.51464844, -0.84277344, 1.7646484, -0.62109375, -2.390625, 1.171875, 1.0361328, 0.10510254, 0.6591797, 0.93359375, -0.96484375, 2.6132812, 0.78515625, -2.0507812, -0.74121094, 1.8671875, 0.27954102, 2.0605469, 0.69091797, 2.0605469, 0.47094727, -0.48632812, 1.9863281, 0.18566895, 1.3798828, 1.0976562, 0.203125, 2.625, -2.6777344, -0.8330078, -0.84375, 0.6118164, -0.30395508, 0.78027344, 0.4855957, 4.3125, -1.1005859, -3.4492188, 4.1914062, -1.0097656, 0.43847656, 1.4853516, -0.88916016, -0.21044922, -0.06542969, 1.7431641, 0.20825195, -1.9677734, 1.7763672, -1.5234375, -1.2460938, -0.16235352, -1.8876953, -1.1201172, 0.17932129, -1.9423828, -0.33935547, -1.7158203, 1.4052734, -1.6308594, -0.4128418, 1.8603516, -1.5126953, 0.5864258, 0.96777344, 1.1171875, 1.328125, -1.7900391, -0.99560547, -0.5786133, 1.2714844, -1.5625, 0.34301758, -0.7260742, -1.5234375, -0.9316406, 0.1430664, 1.8564453, -2.4433594, -2.5839844, -1.7666016, -1.2226562, -2.7382812, 0.28295898, -1.8876953, -1.4287109, -0.040161133, -0.83251953, -1.3125, -1.5087891, -2.8867188, -0.70166016, -0.73876953, -1.7373047, -0.7871094, 0.84033203, 0.22741699, 0.25439453, -4.2382812, 0.71240234, 0.65185547, 0.5498047, 0.6850586, -1.5429688, -0.5107422, -0.2626953, -0.30444336, -0.71191406, -0.053466797, 0.4555664, -1.3535156, -0.52734375, -3.2167969, 0.84033203, -2.9648438, -0.95996094, 0.13793945, 0.86621094, -3.5117188, -0.7128906, -0.66845703, -0.7138672, 4.4335938, -0.59277344, 1.5576172, 0.64208984, 0.70996094, 0.3671875, -1.9335938, -2.0039062, -0.5957031, 1.0351562, -1.1611328, -3.0058594, -3.5605469, -1.9560547, -1.4013672, -0.2512207, -1.1904297, -0.8588867, -2.0371094, 0.53759766, -2.6132812, -0.35058594, -0.20056152, 0.5541992, 0.091796875, -0.8847656, -2.5683594, -0.52001953, -1.5488281, 0.43652344, -0.90185547, 1.3486328, -0.7138672, 1.4873047, 1.4697266, -0.5366211, 0.72998047, -0.16577148, -3.3886719, 1.2626953, -0.006752014, -1.3320312, 2.9550781, -0.08087158, -2.2148438, -2.8457031, -0.03829956, 2.3183594, 1.3105469, 1.7744141, 0.52441406, -0.12536621, 1.0878906, 0.83251953, 0.5834961, 0.047973633, -0.29467773, 3.6523438, -1.8837891, -0.42138672, 1.0888672, 2.3710938, -1.8408203, -1.1992188, 2.1542969, -0.018859863, 1.9091797, 2.2363281, 3.3789062, 1.0751953, -1.8310547, 1.8769531, 3.2539062, 2.1210938, -1.4199219, -0.52197266, -0.58935547, -0.7314453, 1.328125, 0.7441406, -0.54248047, 3.0351562, 1.3730469, 0.12805176, -2.4609375, 0.2758789, 0.171875, 0.14208984, 0.8066406, 2.5410156, -0.54003906, -0.9897461, 0.2939453, -1.6640625, -0.36938477, -0.18115234, -0.5078125, 2.5507812, 0.58935547, 0.113586426, -0.47998047, 0.042419434, 0.42822266, -0.6088867, 0.67041016, 0.092041016, 0.51220703, 1.1308594, -2.4941406, -1.5957031, -0.9975586, 0.9794922, -0.0848999, -2.4511719, 0.6772461, 2.578125, -1.8476562, -2.4941406, 1.2919922, 0.81933594, -0.4645996, 1.2216797, 0.7919922, -2.3808594, 2.3828125, -1.2871094, 0.2939453, 0.81591797, -0.17443848, -0.87109375, -0.70458984, -1.5751953, 1.2666016, 0.9785156, 1.3564453, 0.5205078, -2.6484375, 0.07196045, -2.0078125, -0.60302734, -0.21606445, -0.3935547, -0.20629883, 1.3574219, 1.9228516, 1.1728516, -1.3857422, 2.8710938, 0.44335938, -1.7314453, 1.5039062, -1.6542969, -0.46362305, -2.8027344, -3.625, 1.8339844, -0.84277344, -0.7583008, 3.3144531, 0.29614258, 0.31640625, 2.2597656, -0.053863525, -2.5996094, -2.1523438, -2.0585938, 0.65234375, -2.1425781, 0.21118164, 1.1621094, -0.2529297, -1.1855469, -1.6074219, 0.3857422, 0.36376953, 1.5849609, 2.0292969, -2.0351562, 0.8959961, -1.8808594, 0.35498047, -0.6435547, 0.4440918, 2.6699219, -0.8261719, -0.33691406, -2.0722656, 0.5678711, 1.2753906, -0.66503906, 1.5283203, 1.6074219, 0.9223633, -1.0527344, 1.3681641, 1.7001953, 2.3808594, 0.12597656, -2.3222656, -2.5292969, -0.032409668, -0.6796875, -0.038085938, -0.7011719, -0.63427734, -2.4355469, 0.42285156, 0.4987793, 1.8222656, 1.15625, -0.84765625, -1.9980469, -0.19592285, 0.19628906, -3.1015625, -0.90283203, -0.75927734, -0.07531738, -1.0380859, -1.2060547, -2.2480469, 0.4091797, -0.53125, -0.9873047, -1.6025391, 3.6855469, 0.6777344, 2.1367188, 2.3886719, -1.6503906, 0.25146484, 1.0341797, -0.21838379, 0.22717285, -0.18554688, -0.27807617, 1.7783203, 1.0517578, 1.0585938, -2.5058594, 0.07336426, 0.6723633, -1.5878906, -0.26831055, -2.3613281, 1.1699219, -1.2675781, -1.0058594, 0.6044922, -1.5859375, 2.0566406, -1.2587891, -0.41601562, -1.3037109, 0.0914917, -2.0058594, 0.75927734, -0.2998047, 1.0390625, 1.0009766, 0.07537842, 1.2119141, -0.8334961, 0.030578613, -1.5771484, 2.265625, -0.3984375, 0.26342773, -0.044189453, -1.0029297, -2.3515625, -0.60595703, 1.7744141, 3.2832031, -0.43164062, 2.9785156, 0.53271484, -2.4667969, 1.8310547, 1.0117188, -2.3789062, -0.6464844, -0.83154297, -0.31176758, 0.82666016, -0.8354492, -2.8710938, 0.14245605, 0.35083008, -1.2841797, 0.95458984, -0.5854492, -0.5126953, -0.19348145, -2.0332031, -0.7919922, -0.10467529, -1.1279297, -1.1347656, -1.4755859, 0.5083008, -0.70214844, 2.0527344, 2.9316406, -0.5263672, -0.40649414, 2.8261719, -0.67041016, 1.2402344, -0.7314453, -1.2167969, -3.5878906, -0.57958984, 1.9365234, 1.0283203, 1.828125, -0.7158203, 1.0947266, -1.8681641, -1.1367188, -2.4101562, 2.8671875, -1.6679688, -0.4873047, 0.41064453, -1.9287109, 0.3791504, -3.2773438, 0.31567383, 1.1992188, 1.8652344, 0.8745117, -0.80566406, -1.3203125, -0.48291016, -1.6259766, -4.421875, -0.47705078, 0.9746094, 0.6035156, 0.32763672, 2.2734375, -0.84765625, 0.49780273, 1.3691406, 0.69384766, -2.1875, -1.1699219, -0.99316406, -1.0136719, -1.1982422, 1.6181641, -0.9785156, 1.9609375, 2.59375, 0.47265625, -0.012954712, -2.1835938, -1.1445312, 0.34033203, -1.9433594, -0.7314453, 2.65625, -0.25390625, 0.4255371, 1.5371094, 2.4042969, -1.484375, 1.7138672, -1.6523438, -1.6142578, 0.11315918, -0.60546875, 1.3242188, -1.0771484, -2.0410156, 1.0449219, -1.7539062, 2.6113281, 1.3037109, 0.95214844, -0.39648438, 3.3769531, -0.5180664, -0.56591797, 1.0185547, 0.9916992, 2.0214844, 1.0332031, -2.4472656, -0.8881836, -0.8461914, -2.921875, -0.6821289, -1.8671875, 0.068115234, -1.7353516, 0.9746094, 1.0439453, 1.4130859, -0.52783203, 0.2783203, 0.3959961, -0.121154785, 2.4316406, -0.20654297, 3.1445312, 3.2851562, -1.2402344, -1.6835938, -2.4785156, 1.1113281, 1.0507812, 0.64160156, -1.0615234, -0.048553467, -1.1933594, 0.9267578, -1.2705078, 1.8037109, 1.7255859, -0.3479004, -0.76123047, 0.9477539, 3.2363281, -0.6333008, 1.9384766, 1.6591797, 3.0664062, -0.625, 4.03125, -0.37280273, -2.171875, 2.5761719, -1.4423828, 2.1933594, -1.4980469, -0.7241211, 1.8125, -0.6899414, 0.29956055, -2.6894531, -0.97265625, -3.0605469, 2.5058594, 0.8383789, -0.94628906, 0.48388672, 2.7402344, -0.3425293, 2.1621094, 1.4316406, 1, -0.69433594, 1.3837891, -1.6972656, -0.40893555, 1.0410156, -3.4101562, 1.8447266, 1.6787109, -2.1328125, -0.12963867, 3.7304688, 1.0224609, 2.6191406, 1.5595703, 1.8837891, 2.2675781, 1.2324219, 4.0273438, 0.7036133, 1.6220703, 1.5507812, -0.61376953, 0.7890625, 2.8046875, 2.9160156, -0.24487305, -2.125, 2.8476562, 0.25146484, -1.2734375, -0.53466797, 1.1464844, 0.9692383, -5.109375, 2.1347656, 0.7583008, 0.43847656, -2.2792969, 0.3491211, -0.7011719, -0.5024414, -0.57421875, 0.9370117, 2.421875, -1.0009766, -0.09063721, -0.6538086, 0.60302734, -0.015991211, -2.2988281, 0.60839844, 1.0097656, -2.4726562, -0.54833984, -0.7285156, 1.2011719, 0.9301758, 0.20007324, 1.9638672, 2.0429688, 1.7802734, 2.0683594, -0.61621094, 2.7304688, -0.98046875, 2.4101562, 0.64160156, -1.0244141, 0.79541016, -2.6347656, -2.0449219, -2.4667969, 1.5712891, 1.4882812, 0.82470703, 0.8544922, -2.1777344, 2.0761719, 0.6748047, 1.4052734, -1.3398438, 3.3320312, -0.44458008, -3.953125, -1.890625, -1.4746094, 0.43164062, 3.6074219, 1.4609375, -1.5283203, 2.546875, 0.5253906, 1.9287109, 1.4287109, 1.0712891, 0.4572754, 1.7011719, -1.3232422, 1.0087891, -1.2529297, -0.421875, -0.5522461, 2.6191406, 1.0488281, -0.8959961, 0.46289062, -1.0078125, -0.1496582, 0.3515625, -0.023391724, -0.6230469, -1.8007812, -0.30932617, -0.59765625, 1.2265625, -0.9609375, 0.24597168, 2.7285156, 0.64697266, -1.6289062, 0.7753906, -0.3713379, 1.0693359, 3.2226562, -0.7807617, -0.41455078, -0.7314453, -0.12561035, 1.1318359, -0.35913086, -1.6484375, 0.6323242, -0.72509766, 0.5761719, -0.3605957, -0.42041016, 0.16809082, 0.54541016, -0.020904541, 0.31079102, -2.8769531, -1.0439453, 1.2919922, 0.018875122, 1.0126953, 3.5488281, -0.8178711, -0.24401855, -2.9921875, -1.375, 0.9511719, -1.5019531, -0.9326172, 1.1972656, 5.4414062, 1.7402344, 1.2041016, -2.6835938, -2.2792969, -0.60498047, -1.4804688, 3.2832031, 0.057373047, -1.390625, 1.0664062, -0.11883545, 0.6791992, -1.4082031, -0.56347656, -1.1826172, -0.7988281, 1.3964844, -1.1152344, 1.1425781, 2.859375, 0.21289062, 1.2421875, 2.9199219, 1.875, 0.119018555, 1.0390625, 2.5898438, -0.37402344, -2.046875, 2.7636719, -1.2138672, 1.296875, 0.20983887, -0.14318848, 2.5878906, 0.15063477, 0.4194336, -1.5947266, -3.0351562]}, "B077GDYMCX": {"id": "B077GDYMCX", "original": "Brand: Weber\nName: Weber 7137 Tank Cover\nDescription: \nFeatures: UV inhibitors in fabric resists fading\nBreathable, weather resistant fabric\nProtects cylinder from the elements\nDrawstring keeps the cover in Place\nFits standard size 20Lb liquid propane tank (Sold Separately)\n", "embedding": [1.0439453, 2.2402344, 4.09375, -2.9902344, -0.9819336, 0.70166016, 0.5805664, -1.7011719, 2.8046875, 2.71875, 1.0761719, -0.17919922, 0.048461914, -5.1445312, 1.0683594, -0.92822266, 2.3867188, 1.9042969, 2.1660156, 0.6533203, 1.5888672, 0.45458984, 1.2705078, -0.97802734, 1.9189453, 1.0009766, 4.4453125, -3.6152344, -2.8652344, -1.3505859, 0.1508789, 0.02104187, 0.6171875, 0.97558594, -1.1357422, -2.5234375, -1.7275391, 0.5209961, -1.3505859, 0.49804688, -1.2460938, -2.1933594, 0.9536133, -0.2286377, -0.7973633, -0.08770752, -0.85595703, -1.3994141, -0.56640625, -1.2763672, 1.6835938, 1.6337891, 2.6171875, 1.7929688, -0.74365234, 1.109375, -0.71484375, -1.4414062, 0.6279297, 0.99072266, 0.953125, -1.8623047, -2.8378906, 0.5097656, -0.021072388, 0.5019531, -1.6269531, 0.54833984, 1.6259766, 2.5253906, 2.8652344, -1.0361328, 0.18066406, -0.3791504, 1.5625, -0.59228516, -1.7001953, 2.2949219, 0.76904297, -2.5742188, 0.22924805, 4.0546875, -0.05682373, -1.3867188, -0.68066406, -1.4355469, -2.1933594, -2.4160156, 0.26049805, -0.6411133, -0.9604492, 0.73535156, -2.7460938, -4.515625, -0.042419434, -0.81591797, 2.1953125, 1.7578125, 2.40625, 0.5732422, -0.828125, 1.5947266, -0.5258789, -0.5419922, -3.7226562, -2.6269531, 1.9394531, -1.4296875, -0.33276367, -1.0234375, -1.1289062, -0.53564453, -0.23632812, 0.6298828, 0.9707031, 0.3803711, -0.9453125, 0.9580078, 0.7475586, 0.7363281, 3.9121094, -1.7539062, 0.4807129, -0.6303711, 0.2619629, -0.5102539, -1.375, 0.39208984, 2.4648438, -2.3535156, 1.1708984, 0.8222656, 0.78759766, 0.9682617, 0.9868164, -0.6542969, -1.3828125, -2.1035156, -2.6816406, -0.22912598, -0.69384766, -1.1875, 1.3974609, -1.0566406, -3.0175781, -0.44873047, -0.9746094, 2.1601562, -1.8847656, -1.8730469, 1.1289062, -2.4472656, -0.71240234, -0.40063477, 1.5205078, 0.6977539, 0.18847656, -1.4238281, 1.3369141, 3.34375, 4.6328125, -0.06072998, 0.98291016, -0.13537598, 1.9023438, -1.1318359, 1.2636719, 0.23071289, -2.2285156, 3.1894531, 0.68310547, -1.0888672, -0.013870239, 1.4873047, 0.8857422, -1.5839844, 1.390625, 2.3203125, -0.12249756, -0.22021484, -1.7646484, -2.0175781, -1.1142578, -1.0722656, -0.08227539, 0.3762207, -1.3085938, -0.9067383, 0.8432617, -0.7397461, -1.8466797, 0.5913086, 0.11352539, -1.3466797, -0.5288086, -2.1796875, -2.6699219, -2.28125, -0.11767578, -0.17578125, -2.3867188, -1.15625, 0.09631348, 1.1142578, -1.8398438, -1.1572266, 1.0947266, 0.84765625, 0.9589844, 0.9980469, 0.7104492, -1.4628906, 2.484375, 0.90283203, -1.7353516, 0.46435547, 2.4414062, -0.5527344, 1.1572266, 0.8173828, -1.6914062, 0.28320312, 0.93408203, 3.6601562, 0.71484375, 1.7402344, 0.7763672, 0.2824707, -2.0585938, 0.034484863, 1.7626953, 0.5854492, -0.8959961, 1.1455078, 0.16625977, 2.4199219, -0.75878906, -1.4912109, 0.9248047, -0.42919922, 0.18518066, 0.35351562, -1.6083984, -0.75927734, 0.7866211, 0.62646484, -0.21240234, 1.3457031, 0.9379883, -0.05065918, 0.90234375, -0.9819336, 1.4902344, -1.0107422, -0.5908203, 1.7138672, -0.4074707, 1.7998047, 0.5234375, -1.3134766, 0.66015625, 0.57714844, -0.94970703, 1.2470703, -0.41137695, -1.0390625, -0.5834961, 1.7675781, -0.6035156, -1.0488281, 0.009155273, -0.10644531, -1.1806641, -1.1005859, 2.8574219, 1.2021484, -0.7192383, 1.2402344, -0.30639648, -0.035247803, -0.6166992, 0.26831055, 1.1816406, -2.4375, 1.578125, 0.796875, 1.7119141, -1.2431641, -3.09375, -0.8798828, 2.7167969, -0.6254883, 0.0042381287, 3.1738281, 0.9453125, 0.70410156, 3.0019531, -0.93603516, -0.5986328, 1.4560547, -0.039642334, 0.5390625, -0.7729492, 0.84521484, 0.41064453, -1.2177734, 1.1865234, -2.8574219, -0.86083984, 1.2617188, 0.036834717, -1.0673828, -0.1907959, 1.4228516, -3.3457031, -3.1347656, 1.8759766, -3.4492188, -0.29882812, 0.017547607, 1.1572266, 1.1660156, -2.0683594, 0.03277588, -0.16174316, 0.04171753, -1.6289062, 1.2568359, 1.4140625, 0.13574219, -0.32543945, -1.6650391, 0.50390625, -0.8808594, 0.54296875, -0.59765625, -2.3496094, -1.5429688, 1.046875, -1.5097656, 2.3105469, -0.061920166, -2.2226562, 2.0839844, 2.8398438, -3.0253906, -0.08129883, 1.1884766, -2.0761719, -1.7226562, 0.7973633, 2.7324219, -1.0234375, -4.859375, 0.05517578, 0.72558594, -0.37597656, -0.35424805, -0.45825195, 0.21203613, 0.2368164, 1.1318359, 1.3720703, 0.3786621, 0.80322266, 1.0849609, 0.70166016, -2.4882812, 2.2695312, -1.6201172, 1.8554688, -1.4785156, 0.89160156, -2.65625, -1.4521484, 1.0878906, -1.8564453, 5.2617188, 2.6835938, 2.2421875, -0.9951172, -0.52197266, 0.040527344, -2.2402344, -1.8730469, 1.8945312, -0.44873047, -0.9296875, 0.38549805, -4.0976562, -0.9980469, -4.3828125, 0.13952637, 1.5830078, -1.6943359, -0.43139648, -1.4472656, -1.7753906, -0.68847656, -1.515625, -0.13964844, -0.12298584, -2.5996094, -0.7939453, -1.0224609, -1.0585938, 1.3662109, -1.3212891, 3.0722656, -0.83691406, 0.5073242, 2.4609375, -0.8623047, 3.3808594, -0.53125, -3.2578125, 0.8173828, 1.9833984, 1.8535156, 1.9560547, -1.8525391, -1.3349609, -0.20959473, 1.1074219, 2.6464844, 1.84375, -0.20153809, 3.3808594, 1.8779297, -1.4492188, -2.3398438, -0.11920166, -0.7036133, 2.046875, 2.6425781, -2.1777344, -0.29785156, 1.5966797, 0.12646484, -3.4492188, -0.08959961, 1.7294922, 0.32739258, 1.8808594, 1.0625, -1.0517578, -0.9277344, 0.6245117, 2.3085938, -0.29589844, 1.5517578, 0.2626953, 1.2382812, 1.3847656, -0.46533203, 1.765625, 1.9013672, 0.6430664, -1.2226562, 1.2705078, 1.1826172, 0.6381836, -0.8935547, 0.43359375, -0.18005371, -0.20507812, 1.5996094, -0.20458984, 0.37817383, 0.78466797, -1.3466797, -0.084350586, -1.3212891, -0.28857422, 2.3574219, -0.0049438477, -0.9916992, -0.80566406, -0.54052734, 0.9277344, -1.8007812, 0.3947754, -1.3505859, -0.96728516, 1.3828125, -4.1796875, -0.3400879, -1.921875, 1.2597656, 1.890625, -2.9277344, -0.040893555, 1.4443359, -3.5175781, -2.3125, -0.45385742, -0.93115234, -0.68115234, 1.8271484, 2.265625, -1.8759766, 0.17736816, -3.0898438, 1.2246094, 1.6748047, -0.61621094, -1.6152344, 0.62158203, 0.28833008, -1.0576172, 1.4140625, 1.1318359, 1.4638672, -3.6875, 0.75097656, -2.09375, -0.63720703, 3.1914062, -1.5791016, 0.66503906, 0.06744385, -0.5131836, 0.8774414, 0.54248047, 3.125, -1.4824219, 0.8173828, 1.4755859, -0.24499512, 0.064086914, -1.5869141, -2.9648438, -2.09375, -0.6660156, 0.09863281, 3.2109375, 0.77197266, 1.4726562, 1.4873047, 0.42651367, -1.0410156, -1.5380859, -2.0703125, 1.1054688, -0.9003906, -0.27441406, 1.671875, -0.7988281, -1.7158203, -2.9394531, 0.23986816, -0.8222656, -0.7290039, 0.29003906, -1.1142578, -0.34936523, -0.9370117, -0.6791992, -1.2939453, -0.6166992, -0.65771484, 1.4814453, -0.44995117, -0.83984375, 2.6914062, -0.016540527, -1.1523438, 0.7104492, 4.0078125, -0.1373291, -1.4121094, 0.5102539, -0.45898438, 2.2695312, -1.8701172, -4.0078125, 0.77001953, 0.2286377, 1.2041016, 0.04727173, -0.19055176, 2.2792969, 0.31347656, -0.22070312, 1.8994141, 2.5195312, 0.094177246, -0.5732422, -2.03125, 2.6679688, -2.046875, -1.1591797, -1.9277344, -0.81347656, 1.6494141, -0.87158203, -0.35498047, -2.6289062, 2.7519531, 0.74316406, 1.4433594, -3.5605469, 2.0839844, 3.2128906, 2.4472656, 1.1982422, -2.5839844, 1.03125, -0.8569336, 0.14465332, 1.2695312, -0.07501221, 0.27392578, 0.10498047, 1.9560547, 1.578125, -1.9267578, 0.17297363, -1.1464844, -1.0703125, 0.19750977, -0.7910156, 0.5083008, -0.29101562, -0.07714844, -0.78808594, -0.69628906, 2.5332031, -0.21923828, 0.35009766, 0.5439453, -0.17602539, -1.0820312, 2.3515625, 1.6767578, -0.6953125, 0.44628906, -1.5048828, -0.80566406, -1.0107422, -0.06549072, 1.6748047, -0.013542175, -1.2890625, -0.61035156, 2.2382812, 1.8486328, -0.8881836, -0.8466797, 1.625, 3.4296875, 0.82958984, 1.203125, 2.0019531, -1.2119141, 0.95214844, 1.8759766, -1.0527344, 1.3632812, -1.0957031, 0.07232666, 3.3730469, -0.7939453, -3.4804688, 0.5517578, 0.63720703, -1.0351562, 1.4785156, -1.4804688, -0.6958008, 1.1181641, -2.2167969, -1.1748047, 0.28955078, -0.69189453, 1.6416016, 0.7553711, 1.3271484, -0.71728516, 0.51953125, 3.2480469, -0.23742676, -2.265625, 1.3945312, -0.57421875, -0.99902344, -2.2460938, -1.0722656, -1.828125, 0.11193848, -0.37158203, 2.0058594, 0.16833496, 0.36816406, 2.3398438, -1.9267578, -0.18041992, -0.86035156, 0.7207031, -2.9492188, -0.04071045, 2.2265625, -2.1015625, -0.4020996, -0.29125977, -0.9580078, 0.41430664, 0.7944336, 1.1708984, 1.8632812, 0.037994385, 0.60839844, -4.4921875, -2.4570312, -1.7021484, 0.46948242, 0.10852051, 1.8339844, 0.07446289, -0.24133301, 0.69384766, -1.90625, 1.1259766, -1.6923828, 0.6459961, 0.31640625, -1.5087891, -0.73779297, -0.95458984, -1.0175781, 0.60009766, -0.69873047, 1.7402344, -2.1582031, -1.2880859, -1.7275391, -0.10650635, -2.3320312, -0.8232422, 2.5, 0.9609375, 1.6611328, 1.3984375, 1.5517578, -1.3515625, 0.6640625, -1.0683594, -1.4667969, 2.4003906, -1.515625, 1.1484375, 0.5834961, -0.23486328, 1.1474609, 1.2392578, 0.9423828, -0.59765625, -0.7011719, 1.2607422, -0.1854248, 1.7597656, -0.6484375, 0.74316406, 0.8339844, 1.3007812, 1.6103516, -1.2675781, -1.1142578, -1.0820312, -1.6298828, 0.5214844, -2.0410156, -2.1503906, -0.2685547, 0.80126953, 2.9140625, 1.6601562, 0.6821289, 2.0585938, 1.7255859, -2.0566406, 0.34155273, -1.0742188, 3.3066406, 1.8164062, -0.90722656, -0.25683594, -2.9296875, 2.5742188, 2.1679688, -0.38305664, -0.52734375, 0.39916992, -1.7402344, 0.31933594, -0.35913086, 1.171875, -0.2631836, 1.5244141, -0.43432617, 2.0605469, 2.9121094, -2.28125, 1.1865234, 0.024658203, 0.2631836, -1.34375, 1.3007812, 1.3046875, -3.1542969, -0.54833984, -0.72021484, 0.5703125, 0.9213867, -0.9506836, -0.60791016, -1.0117188, -1.359375, -1.8222656, -1.1630859, -3.4121094, 0.39282227, 0.7597656, -1.4521484, -0.6035156, 0.6196289, -0.7207031, 1.4580078, 2.2753906, -0.3671875, -3.1445312, -0.89453125, -0.3400879, 0.07244873, 1.0332031, -3.5742188, 1.2421875, 0.16064453, 0.7006836, -1.1181641, -0.31689453, 0.012893677, 1.046875, 0.6254883, 3.2363281, 2.9785156, 0.76708984, 1.5693359, 0.8984375, 3.3945312, 1.9023438, -1.2431641, -0.3227539, 1.3212891, 0.8774414, 3.21875, -0.79248047, -1.0996094, 0.45043945, 0.3232422, 0.3017578, -0.26635742, 1.2988281, -2.0566406, -0.54589844, 0.1854248, 0.9199219, 1.46875, 1.1826172, -1.5527344, -0.9238281, 1.2548828, -0.20092773, 2.1503906, 0.089660645, 1.0673828, 0.2084961, 0.048461914, 1.7226562, -1.1982422, 2.2441406, 0.014045715, -1.1767578, -1.8955078, 0.99609375, 1.8378906, 1.9453125, -1.4052734, 0.2401123, 2.8769531, 0.2915039, 0.1607666, -1.9296875, -0.2253418, -1.2363281, 1.9316406, 2.46875, -1.1083984, -1.3964844, 0.66552734, 0.40625, -3.0761719, 1.7158203, 1.5429688, 0.8984375, 1.1103516, -2.5839844, 0.95996094, -0.9628906, 0.07220459, -1.6689453, -0.3371582, 0.19104004, -4.3203125, 0.23339844, 0.9506836, -3.1484375, 2.3085938, 0.02658081, 0.95410156, 1.6767578, 1.0673828, 0.31860352, 0.69921875, 0.30126953, 0.42163086, -0.20715332, -1.4150391, 3.5175781, 1.0917969, -2.6308594, -0.9848633, 2.2304688, 1.4072266, 0.88183594, 1.5039062, -0.10430908, 1.4658203, 0.23425293, 0.20397949, 1.3242188, -1.0224609, 1.1845703, -1.5253906, 1.3613281, -0.3137207, 0.0055770874, 0.3100586, 1.8203125, -1.1396484, 1.6552734, 1.7353516, -0.17797852, -0.06567383, -0.26660156, -0.5161133, -0.2980957, -0.5605469, 1.2363281, -2.03125, 0.87402344, -2.6738281, 0.6333008, -1.5917969, -1.6347656, -1.2548828, -0.20507812, -1.4394531, -0.73779297, 1.6152344, 0.2841797, -2.0722656, 0.56884766, -0.7885742, -1.0849609, 0.47143555, 1.6416016, -1.1455078, -1.4560547, -2.7910156, -0.7211914, 0.4958496, -0.12854004, 2.2929688, 2.796875, -0.2524414, -1.3837891, -0.10168457, -2.9804688, 0.092285156, -3.4316406, 2.2617188, 0.45898438, -1.7460938, -1.2607422, 1.9863281, 3.0019531, -1.203125, -1.7626953, -0.8022461, -1.4951172, 2.5527344, -1.7138672, -0.7558594, -0.69628906, 0.31103516, 3.3164062, 3.1914062, 2.1425781, -0.20788574, -0.3713379, 2.796875, -2.5078125, -2.3398438, -1.2255859, 0.7368164, 0.07183838, 0.046539307, 0.99609375, 2.5253906, -0.18518066, -0.18395996, -1.0771484, -1.1630859]}, "B00T95H1PE": {"id": "B00T95H1PE", "original": "Brand: Alpha Grillers\nName: Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types\nDescription: The Best Grill Brush For Cleaning Your BBQ. Here\u2019s Why:

          Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18\" Long Handle.

          Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

          Ready For Cleaning That's So Quick & Easy You May Even Enjoy It?

          Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you'll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

          Hard On Grime - Gentle On Grates

          This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

          So What Are You Waiting For? Click The \"Add To Cart\" Button Above To Get Your Brand New Brush Delivered Today.

          Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it's time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.\nFeatures: GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it\u2019ll bend or break.\nSAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that\u2019ll get your grill looking good as new, but don\u2019t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types.\nEASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you\u2019ll be done in a flash.\n18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time.\nBBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they'll love! Backed by Alpha Griller's 90-Day Satisfaction Guarantee.\n", "embedding": [0.48388672, 2.1152344, 1.0097656, 0.31713867, 0.3034668, -0.16516113, 1.5927734, -2.2871094, 0.80126953, 0.6767578, -2.0507812, -0.63427734, -0.049346924, -1.5332031, -2.4785156, 0.31347656, 1.7167969, 2.0527344, 3.2070312, 3.4609375, 1.1591797, -0.6660156, 1.1162109, 0.07952881, 0.84521484, 0.069885254, 2.0957031, -0.46875, 2.2695312, -0.5175781, 1.2138672, -0.11053467, -1.1425781, 1.1601562, -3.6191406, 1.578125, 0.6464844, 2.0761719, -1.7011719, -0.36645508, -1.1806641, -0.44262695, 2.1328125, 0.69677734, -2.1582031, 3.6875, -0.8232422, 3.5820312, 0.20019531, -3.9863281, 1.6298828, 0.3605957, 2.4707031, -0.5371094, -1.9423828, 1.1513672, -0.18762207, -2.5800781, -0.7338867, -1.1445312, 2.78125, 1.4443359, -0.9194336, 1.6425781, 0.84521484, 0.77197266, 1.1865234, -1.4775391, -1.8056641, -1.9394531, -0.6503906, 0.60546875, 0.82666016, 0.5878906, 0.20007324, 1.8076172, -1.640625, -1.5644531, -1.3310547, 0.55566406, -0.7866211, 2.3046875, -0.9316406, -2.0410156, 1.9550781, 1.4472656, -3.7011719, -1.6835938, 1.3027344, -2.328125, 0.14624023, 1.0146484, -1.6376953, -4.0976562, 1.7578125, -1.1103516, 0.23266602, -1.7792969, -0.60302734, 2.0253906, -3.1542969, -0.53222656, -2.59375, -0.6166992, -3.1855469, 0.09173584, 2.0039062, 0.73779297, -3.9414062, 0.030456543, -0.98095703, 1.2070312, -0.45239258, 1.4833984, 1.3320312, -0.75146484, -0.52001953, -0.41967773, 1.3867188, 2.4960938, 1.2832031, -1.125, -1.5761719, -0.69873047, -0.96972656, -0.7373047, 1.2041016, 2.0214844, 4.0195312, -1.1982422, 0.23693848, -3.0800781, 1.6289062, 0.5097656, 0.9316406, -1.8964844, -0.9033203, -0.8745117, -2.4453125, 1.1298828, 0.3383789, -1.3476562, 2.7324219, -0.78271484, -1.5664062, 1.0654297, -1.2978516, 0.099243164, -0.34765625, -0.52001953, 2.2988281, -0.4506836, 2.2226562, -0.11779785, 1.7470703, 0.7607422, 0.4638672, -1.5625, 2.75, 1.4755859, 0.5859375, -3.6328125, 1.0263672, -1.2753906, 0.4645996, -2.015625, -3.0488281, 3.5078125, 0.38110352, 1.7216797, -1.7470703, -1.6142578, -0.13220215, 0.86328125, -0.008583069, 0.42016602, 0.5283203, 0.8354492, 0.4873047, -0.40063477, 2.734375, -2.2832031, 2.6113281, 0.6611328, -0.20178223, -0.6357422, 2.59375, 1.1386719, 2.421875, -1.4091797, 3.8554688, 2.0820312, 1.8818359, 2.625, -2.3847656, -0.72314453, -0.5053711, 0.36279297, 0.8125, -0.5732422, -2.0800781, -2.8164062, -1.1152344, -1.0341797, -1.5234375, -3.0859375, -0.22375488, 0.3010254, -0.67089844, 0.024719238, 0.002696991, -0.28466797, 2.4101562, -0.20495605, -0.54833984, -1.9052734, 1.0771484, -2.3671875, 2.4921875, 1.9941406, -0.12420654, -1.4482422, -2.8125, 1.65625, 2.3359375, 2.0175781, 0.111450195, 1.6064453, -0.13232422, 0.30859375, -0.03656006, 2.5585938, -0.73046875, -1.234375, -0.12866211, -1.3789062, 1.4746094, -2.3105469, -2.0273438, -0.5229492, -1.3740234, -0.7109375, -1.8779297, -1.09375, 0.57421875, -2.171875, -1.4882812, 0.74072266, 1.3925781, -2.4902344, 0.70751953, 3.546875, 1.3808594, -0.05657959, 1.6982422, 1.3310547, -0.36206055, 0.60595703, -2.9003906, -0.60009766, 0.62158203, -1.0986328, 2.6542969, -0.15063477, 1.0214844, 1.4003906, 2.3730469, -0.2454834, -1.0263672, -1.4765625, -0.20581055, -0.66552734, -0.6586914, -0.72998047, -0.49804688, 2.2167969, 0.06188965, 0.2939453, 1.0253906, -1.8837891, -1.5673828, 0.32983398, 2.3515625, -1.9667969, -1.0664062, -1.0185547, -3.0800781, -2.671875, 1.2236328, -0.09210205, 5.09375, 0.68896484, -2.2167969, 1.1220703, -1.2988281, -0.46289062, 3.8945312, -0.63720703, -0.62158203, -0.39160156, 4.2304688, 0.27124023, -0.50390625, 0.5649414, -0.9794922, -0.02758789, 0.328125, -2.8046875, -0.13757324, 2.4921875, -2.5898438, -1.3818359, 2.7871094, 0.1928711, -3.3671875, 1.4970703, -1.7255859, -1.4462891, 1.4072266, -0.24841309, -1.1269531, 1.03125, 1.5800781, -1.8378906, -3.1445312, 0.80908203, -1.6699219, -1.3320312, 1.6162109, -2.7148438, -0.57958984, 1.28125, 0.1138916, -1.296875, -1.2080078, -1.4921875, 0.4128418, -2.625, 1.8935547, -2.6171875, -0.92285156, -0.24401855, -2.6738281, 3.3183594, -0.4970703, -0.025009155, -2.1542969, 0.14868164, -0.85839844, 1.9863281, -1.4365234, -0.34545898, 1.0859375, -0.98046875, 1.1152344, 1.03125, -0.6503906, 0.9711914, 1.953125, 1.5878906, -0.97216797, 0.38110352, -0.4309082, 1.6123047, 0.99853516, 1.5117188, 0.63916016, -2.6074219, 0.6425781, -2.8867188, 2.09375, -1.375, 1.6640625, -1.5078125, 0.13745117, 0.35131836, -0.5600586, 0.5551758, -1.0625, 1.9521484, -0.2548828, -2.5722656, 0.42944336, 0.74072266, -1.0097656, -1.0205078, 1.3466797, 0.9145508, 0.8027344, -1.7304688, 0.45996094, 1.0693359, -1.5009766, -0.13867188, 3.1171875, -0.21765137, 1.1533203, -3.3886719, -0.34936523, 2.4335938, 0.49072266, -0.9326172, -1.8994141, -0.83447266, -0.018875122, -3.515625, 0.044891357, -1.8125, -0.46655273, -0.94873047, -2.5898438, 2.5644531, 1.4375, 0.7919922, 1.4599609, -3.3359375, 1.7675781, -1.1816406, -2.8320312, 0.1182251, 0.0137786865, 0.8774414, -0.8876953, -1.6845703, 2.953125, 2.2050781, 0.22668457, -1.4130859, 0.21838379, 1.1308594, 1.2568359, -0.54833984, -0.703125, 1.0585938, 2.9570312, -1.8134766, -1.7773438, -0.01171875, 0.34472656, 0.4807129, 1.7568359, 2.0429688, 2.5898438, 1.9121094, 2.8339844, 1.9248047, 1.9951172, -0.51416016, 0.42211914, -1.2158203, 0.42993164, -1.7958984, 0.5576172, -1.3671875, -1.9970703, 0.9604492, -0.7709961, -0.36157227, 0.8774414, 0.59814453, -1.1074219, 0.46704102, 0.30786133, -0.7998047, 3.6464844, -0.9423828, 0.08605957, -0.5913086, -1.7148438, 1.6240234, -1.7148438, 1.4414062, -2.921875, -2.4414062, 1.7939453, 0.6821289, 0.74560547, -2.1835938, 0.64941406, -0.85791016, -1.8867188, -0.30419922, -2.6679688, 0.12158203, -0.4326172, -0.7607422, -1.9824219, 0.3334961, 2.0058594, -1.1513672, -2.1757812, -2.4960938, -0.4189453, 1.5175781, -1.3203125, 1.1650391, 2.5566406, -1.6357422, 2.8457031, 0.19470215, 0.86376953, 3.2617188, -1.8769531, 1.3056641, -1.7851562, -3.3730469, 0.36157227, -2.8164062, 0.6533203, -0.38842773, 1.7744141, -0.05014038, 0.8959961, 0.15771484, 2.2421875, -2.9101562, 0.71875, -0.5527344, -1.4208984, -0.57470703, 1.2363281, 0.984375, 1.3408203, 1.1630859, 3.5273438, 1.9433594, -2.1914062, 0.47265625, -4.3398438, -0.8491211, -1.4941406, -3.625, 0.62597656, -0.41088867, -0.47045898, 1.8984375, 1.6689453, 0.25854492, 2.7675781, -0.43359375, 1.6152344, 0.26879883, -0.45532227, 1.6992188, 1.4101562, -1.0742188, 3.0703125, 1.1357422, -1.8671875, -1.4863281, -1.6875, -4.2304688, 0.04949951, 2.359375, -0.038635254, 1.0302734, -2.8144531, 0.46240234, -0.4790039, 0.84716797, 0.7583008, -2.4882812, -0.12225342, -1.0820312, 0.24084473, -0.7114258, 0.9716797, -0.014297485, 0.43066406, -1.8583984, -0.80859375, -1.3349609, 0.59521484, 3.5097656, 0.40283203, -2.4609375, -0.3088379, 1.0078125, -1.1796875, -0.24780273, 0.7729492, -0.50439453, -2.5292969, -0.025222778, 0.26586914, 0.14855957, 1.2431641, 0.4020996, -3.4082031, -2.4433594, 0.76904297, -3.5449219, -1.4853516, 0.82177734, -0.33276367, 0.041748047, -0.671875, -1.5205078, 1.0009766, 0.98535156, -1.0917969, -0.54833984, 3.6914062, 1.2041016, -0.7998047, 4.5664062, -1.9912109, 0.99121094, -0.59228516, -2.1054688, -2.8789062, -0.19421387, -0.9916992, -0.6323242, -1.2128906, 1.4648438, -0.90966797, 0.018615723, -0.29638672, -1.7294922, -0.57373047, -3.2988281, 2.2773438, -1.4316406, 0.70458984, 1.9033203, -1.1035156, 2.7832031, -1.2714844, 1.2763672, 3.0703125, 0.5571289, 0.14916992, -0.054382324, -0.6464844, 1.6123047, 1.203125, 1.5371094, 4.2578125, -2.9160156, 0.609375, -0.0002861023, 1.8320312, -4.46875, -1.5009766, 1.5390625, 1.0898438, 0.6176758, -1.0771484, 2.3359375, 1.25, 2.1386719, 1.8222656, -0.14770508, -0.017150879, 0.8642578, 1.3291016, -4.6171875, 0.67871094, 0.18518066, -1.4414062, 2.0019531, -1.3408203, -1.640625, 2.171875, 2.0742188, 1.0136719, -0.21435547, -1.3154297, 0.5566406, 0.7236328, -0.27001953, 0.50097656, -1.3710938, 0.28198242, 1.7373047, 1.734375, 0.22277832, 0.48120117, 0.9707031, 3.7910156, -1.4863281, -1.3408203, 1.5546875, -0.90478516, 1.8847656, 0.089660645, -2.9511719, -1.9453125, -0.48217773, 1.5732422, 2.7636719, 0.9682617, 0.86621094, 0.8989258, -1.1650391, 2.3203125, -2.0058594, 3.4082031, -0.8461914, -1.1748047, 2.0507812, -2.2792969, 0.29296875, -1.4169922, 1.0683594, 0.5390625, 2.4023438, 2.6425781, -1.2548828, -2.8710938, -1.4589844, -2.2460938, -4.3320312, -0.31420898, -0.07739258, 0.013618469, 1.2070312, -0.19006348, 0.88183594, -0.68408203, 0.46728516, -0.6958008, 0.7836914, -0.640625, 0.3479004, -1.1464844, -0.671875, -0.33642578, -0.44970703, 1.0019531, 0.7919922, 3.6855469, 3.078125, -2.5625, -0.52197266, 0.66259766, -4.3007812, -2.4238281, 3.5292969, -1.5615234, -0.67529297, 0.064697266, -0.76220703, -2, 1.5361328, -1.1933594, -0.28295898, 0.11895752, 0.5751953, -1.5742188, -2.0136719, -2.6835938, 0.67333984, -2.4394531, 0.53222656, -0.22167969, -0.59716797, 1.4648438, 2.0390625, -2.8632812, -0.6069336, -1.6542969, 1.6767578, 2.1210938, -0.87890625, -1.4960938, 2.890625, -1.5126953, -2.8535156, 1.0634766, -0.61376953, 1.0351562, 0.64697266, -0.8105469, 0.91748047, 0.34594727, 0.9902344, -1.3115234, 0.27441406, -0.49658203, -2.1191406, 1.5107422, 2.4257812, 1.7373047, 0.984375, -2.0878906, -0.80029297, -2.0253906, -0.9589844, 0.734375, -0.6923828, 0.38476562, -1.6523438, -2.0273438, 0.109375, 1.8300781, 3, 2.03125, -0.18225098, -3.203125, 2.8925781, -0.16552734, 2.0683594, 0.578125, 1.1972656, -0.41796875, 5.8476562, 0.15270996, -3.0585938, -0.44750977, -1.8398438, 1.2412109, 1.5761719, -3.34375, -1.6474609, -2.8261719, -2.0117188, -3.9628906, -0.28686523, -2.3808594, 0.20996094, -0.85253906, -0.12866211, 1.4433594, 3.8457031, -0.15393066, 2.0136719, 2.9550781, 1.3339844, -1.0410156, -0.796875, -1.0605469, 0.34570312, 0.7421875, -2.9921875, 2.4414062, -0.59814453, 0.55615234, -1.2041016, 0.78808594, 3.484375, 0.17382812, -1.3935547, 2.90625, 1.9042969, 2.7265625, 1.9345703, -0.04852295, 0.5073242, 0.8383789, -0.16552734, 0.43823242, 3.734375, 0.2524414, 1.6923828, -0.22155762, 0.7163086, -1.734375, -0.7285156, -0.1071167, -0.24377441, 1.2167969, -3.8535156, 2.046875, 0.10644531, -0.91064453, -0.63964844, 0.74853516, -2.2734375, -2.1816406, -0.83496094, 0.2902832, 4.1367188, 1.9111328, 0.6611328, 1.4072266, -0.5493164, 1.6777344, -3.6074219, 0.72216797, -0.44189453, 1.3154297, -0.9301758, -0.7011719, -0.65234375, -0.03439331, 1.0332031, 2.671875, -0.49731445, 1.1933594, 2.6191406, 0.35351562, 0.14013672, -0.51708984, 1.9042969, -2.6464844, -1.9570312, -0.32202148, 0.028427124, -1.5371094, -2.0605469, 2.2089844, -0.5727539, 1.2011719, 2.9804688, -3.3554688, -0.83203125, 1.8291016, 2.9960938, -1.2822266, 2.9394531, -0.17285156, -0.9355469, -1.4746094, 0.6899414, 2.0390625, 3.3164062, 2.3808594, -3.5996094, 0.064331055, -0.5395508, -0.9868164, -1.3476562, 0.8496094, -1.4160156, -1.359375, -1.6650391, 1.25, 1.5947266, 0.82666016, -0.5102539, 1.6992188, -1.3974609, 2.125, 2.7089844, 1.2675781, -0.08721924, -0.4152832, 0.56396484, 0.31835938, 1.7265625, -1.2636719, 2.140625, -0.94921875, -0.65771484, -0.19116211, 1.421875, 0.35180664, 0.78027344, 0.23962402, 0.7426758, 0.15759277, 0.27539062, 2.1796875, -1.7373047, -1.9951172, 0.68408203, -1.5126953, -1.0322266, -1.2089844, -0.3894043, 0.3798828, -0.31884766, -2.0195312, 0.07714844, 0.23022461, 1.9101562, 0.3088379, -0.11859131, -3.7617188, 0.42041016, 0.85058594, -0.45361328, 0.80322266, 2.328125, -0.00043296814, -2.9257812, 0.105895996, -0.34057617, -1.4179688, -2.5605469, -2.1015625, 0.6425781, 3.2832031, 3.5488281, 1.1152344, -3.3085938, -0.50390625, 2.9375, -0.5073242, 0.042877197, 0.9140625, -2.9707031, 0.03213501, -1.4882812, 2.2382812, -0.61328125, -1.5957031, -0.1829834, 0.17956543, -1.1513672, 1.7226562, 1.0888672, -0.32666016, -1.8730469, 0.9277344, -0.3720703, 1.2363281, 1.0214844, 2.8769531, 0.69628906, 2.6445312, -0.9868164, 0.45166016, -0.16540527, 1.5234375, 0.31274414, 0.9692383, 1.5273438, 1.5507812, -1.0546875, -0.3256836, -0.9399414]}, "B07PFQHD1W": {"id": "B07PFQHD1W", "original": "Brand: USA Network\nName: Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt\nDescription: \nFeatures: This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you're a fan of Mr. Robot as well as the hit BBQ restaurant.\nOfficially Licensed USA Network Mr. Robot Tee.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.4501953, 2.0664062, 0.2734375, -0.78808594, -1.7363281, -1.6191406, 0.31518555, 0.2697754, -0.41308594, 0.1005249, -0.26635742, 1.6923828, 1.8740234, -4.078125, -0.33325195, 1.2138672, -1.4814453, -0.22351074, 0.15881348, -0.8569336, -0.61328125, -0.4753418, 2.828125, 0.37475586, 0.1928711, 1.4697266, 3.4511719, 2.0429688, -0.1784668, 0.32299805, 2.1875, 0.8666992, 1.0390625, 2.4980469, -1.6865234, 0.3618164, -2.0390625, 1.453125, 1.0976562, 0.8256836, -2.2109375, -2.4609375, 0.7324219, 1.953125, -2.828125, 1.2880859, -1.3994141, 0.859375, -1.0449219, -2.9902344, 1.6210938, 1.9921875, 1.1025391, 0.6411133, -0.69677734, 1.4863281, -0.69873047, -0.62109375, 1.484375, -0.46411133, 2.2949219, 0.8105469, -0.5175781, -1.2792969, 2.0800781, 1.359375, -1.5888672, 1.9746094, 1.0224609, -1.4130859, 2.7265625, 0.2536621, -3.53125, 0.71972656, 0.99316406, 1.0136719, -1.8349609, -0.73046875, 0.6298828, -3.8300781, 2.8164062, 2.1269531, 0.72802734, -1.6455078, -0.10784912, 0.6381836, -2.484375, 0.01828003, 2.9394531, -0.27685547, 0.31762695, 0.4074707, -0.65283203, -3.640625, 0.84716797, -0.23120117, 1.3261719, -2.734375, -1.3232422, 3.5527344, 0.06555176, -3.1660156, 0.7988281, -0.80810547, 2.0664062, -0.9663086, -1.0361328, -1.8525391, -2.2988281, -0.22143555, -2.0527344, 2.9667969, 1.1484375, 0.21459961, 1.2470703, -2.09375, -0.28051758, 1.9775391, 2.1972656, -0.8120117, 0.92871094, -2.0507812, 2.3984375, -1.4726562, -0.014587402, -0.27734375, -0.097473145, 2.7304688, 1.5273438, -1.2060547, 1.5419922, 2.3808594, -1.6435547, -0.6386719, 1.03125, -0.48242188, 0.88134766, -1.5136719, 1.3027344, -0.33496094, -1.2792969, -0.9897461, -0.5683594, -2.4550781, -1.5556641, 1.4492188, 0.19384766, 0.7993164, -1.5205078, 0.92626953, -0.5888672, -3.0058594, -1.2685547, -1.2910156, 0.8256836, 0.63378906, -2.0917969, -0.6176758, 0.43896484, -3.1289062, 0.5136719, -0.46533203, 1.7744141, 2.3789062, 0.17285156, 0.6894531, -3.1289062, 0.063964844, -3.4511719, 2.0019531, 0.40771484, -0.28735352, 2.7265625, -2.9472656, 2.0839844, -1.3369141, -0.7285156, 1.7558594, -0.25732422, -1.4316406, -1.2099609, -0.30908203, 1.7636719, 1.1884766, 0.6464844, -0.5854492, -0.4399414, -0.078125, 2.3945312, 0.70214844, 0.99609375, -1.5185547, 1.4541016, -0.58691406, 2.7597656, 0.9091797, -0.31762695, -0.44067383, 0.8774414, 2.4726562, -1.7333984, -0.79345703, -0.60498047, -1.0908203, -0.80810547, -1.0244141, 1.1142578, -0.64404297, -0.98779297, -1.8613281, 0.3935547, -0.9326172, -1.1611328, 1.6679688, -0.96484375, -1.1025391, 1.4101562, -1.3671875, 1.8242188, 1.4316406, -1.5087891, 0.1439209, -1.7167969, 0.31835938, -1.7158203, 0.38500977, -0.24145508, -0.30200195, -1.1044922, -0.58447266, 0.30371094, 2.59375, 0.42749023, -1.3056641, -1.2890625, 0.9267578, 2.9375, -0.3010254, -0.8466797, -0.96972656, -2.1875, -1.1230469, -2.9082031, -2.2441406, 1.078125, 1.5732422, -2.0800781, 5.2226562, 0.42114258, 1.5732422, 0.6772461, -0.018508911, 0.42919922, 0.44189453, -0.7050781, 0.92822266, -1.8886719, -0.75146484, -2.0878906, 0.42578125, 1.3652344, 0.8144531, -3.9726562, 0.4567871, 0.46655273, 1.3203125, 1.6025391, 4.9609375, -2.3085938, -2.7929688, 1.2470703, 2.5019531, -1.3232422, -2.0234375, 1.8613281, 1.1865234, -0.66308594, 0.57666016, -1.2011719, 0.2290039, -0.0012302399, 1.046875, -0.39135742, -0.09246826, 0.57470703, -0.95947266, -3.1289062, 0.89160156, -1.5576172, 1.1455078, 1.6816406, 1.3115234, 1.1660156, 1.7529297, -0.6870117, 1.2636719, -0.5546875, -3.359375, 1.2744141, 0.5253906, 1.1191406, 0.89160156, -0.050354004, -0.45263672, 1.2763672, -1.4990234, -2.7695312, -0.38061523, -0.29003906, 0.20385742, 1.3916016, -1.0634766, -0.05895996, 1.078125, -0.98339844, -0.26416016, 0.07757568, -0.859375, 2.203125, 2.5332031, 1.5654297, 0.4482422, 1.0458984, -0.03366089, -0.053466797, -0.8461914, -1.3261719, 1.171875, 0.8730469, -0.10992432, 1.0585938, 0.18786621, 1.9511719, -0.45922852, -1.1171875, 0.9892578, -0.5488281, -1.4521484, 0.8691406, 1.2080078, 0.5078125, 1.7529297, -0.546875, 1.1552734, 0.06616211, -2.2753906, -1.078125, 0.5576172, 0.65722656, -2.0214844, 1.2841797, -1.4873047, -0.5527344, -4.0390625, 0.5546875, -2.6894531, -2.4003906, 0.30493164, -2.4980469, -2.2402344, -1.5166016, -3.265625, 0.75683594, -0.43847656, 0.5546875, 2.5703125, -0.62109375, -3.1113281, 3.1992188, -1.3417969, -0.4885254, -0.11047363, 1.4736328, -1.2138672, -0.020950317, 0.78466797, 0.16125488, 5.7578125, -0.6274414, -0.56103516, 0.7783203, 0.4814453, 1.3330078, -0.39648438, -0.64697266, -0.3869629, -0.4020996, -2.1621094, 0.02432251, -4.2539062, 1.0195312, -1.0527344, -0.6010742, 1.8779297, 2.7441406, 1.9111328, -2.1425781, -0.11291504, 0.43652344, 0.29296875, 2.4160156, -0.7993164, -0.4140625, -1.4794922, 0.18652344, -1.4736328, -3.8652344, -1.828125, 2.1699219, 0.77001953, 0.8442383, 0.70751953, -0.5830078, -0.24768066, -0.0914917, -2.7480469, 1.2792969, 1.7529297, -0.010681152, -1.2988281, 2.2871094, -1.2734375, 0.13427734, -0.5678711, 1.1816406, -1.9003906, 1.4189453, 1.0527344, 1.1621094, -2.7753906, 2.8789062, -0.8725586, 4.0664062, 2.28125, 1.3613281, -0.09539795, 0.16369629, 0.9477539, 2.3808594, 0.105407715, -0.8388672, -1.6630859, -0.06976318, -0.16870117, 0.7348633, -0.09295654, -0.9145508, -3.515625, 2.6308594, -0.5522461, -1.3222656, 0.7441406, 1.8740234, 0.22131348, -0.43823242, 2.7441406, 2.0234375, -1.6816406, 2.2480469, -0.15124512, 0.7885742, 1.5029297, -0.15917969, -0.018630981, -1.5087891, 0.73095703, 0.60839844, 0.5258789, 1.0810547, 2.1367188, 0.7753906, 0.8808594, -1.234375, -0.05621338, -0.07269287, -0.8520508, -0.61035156, 1.7236328, 0.6484375, 0.3684082, -1.9345703, -3.9238281, -1.6367188, -1.6279297, -0.5683594, -1.4609375, -2.6894531, -2.0488281, 1.1376953, -3.96875, -2.125, -0.012199402, 1.640625, -1.3613281, 0.1706543, -0.5019531, 2.0683594, 0.85546875, 0.5263672, 0.98339844, -1.9296875, 0.75878906, 0.15820312, -1.2167969, -0.22290039, -1.6923828, -1.6367188, -0.2548828, -1.7890625, 2.6621094, -1.9306641, 0.96777344, 1.4755859, 0.11767578, -2.3417969, -3.0664062, 0.41674805, 1.6435547, -1.3173828, -1.0175781, 1.3457031, -1.7138672, -0.16149902, -1.0371094, 3.9980469, -0.8041992, -2.5136719, 2.0117188, 1.9648438, 0.4194336, -1.3535156, -2.4296875, -1.3671875, 2.0976562, 0.35351562, 4.4648438, 0.7495117, 0.12371826, 2.6738281, 1.2255859, 4.0820312, -1.0488281, -0.2446289, 0.31982422, 1.1328125, 0.14294434, 2.5957031, -1.1738281, 0.58447266, -0.13232422, -0.24682617, 0.14294434, 1.1865234, 0.9526367, -1.5595703, 0.82958984, -1.3779297, -0.24121094, -0.12780762, 0.21008301, -0.16992188, 0.51171875, -0.6074219, 0.22644043, 2.5097656, 1.2216797, 0.8989258, -2.8652344, 1.0830078, 0.14477539, 0.5463867, -1.1083984, -0.74072266, 1.3740234, 0.87890625, -2.2304688, 0.0082092285, -0.29223633, -1.3134766, 0.017333984, 1.2792969, -0.22155762, -0.66015625, -1.6865234, -0.41723633, 1.2958984, 0.95703125, 2.6542969, -1.3828125, -0.6381836, 0.7949219, -0.7558594, 0.03048706, -1.9316406, 1.5898438, 0.87939453, 1.2021484, 0.008560181, -0.9951172, -1.2724609, 0.42456055, 0.20141602, 0.91552734, 4.59375, -1.7880859, 2.1386719, 0.44189453, -0.6875, -2.9316406, 0.26464844, 1.8613281, 0.04763794, -0.7636719, -1.5273438, -1.7578125, 1.2490234, 0.9897461, 1.0664062, -2.9667969, -1.5214844, -0.14782715, -0.16101074, -0.072265625, 0.014389038, 0.16760254, -1.0976562, -0.56933594, 0.17138672, -1.8046875, 0.8901367, 3.6054688, 2.6542969, -0.0019330978, 3.0917969, 2.8632812, -0.6430664, 1.140625, 0.3083496, 0.47607422, -1.4697266, -1.9638672, 1.7382812, -0.7607422, -2.0878906, 0.52490234, 0.5834961, -1.3837891, 0.79589844, -1.8017578, 0.3239746, 2.53125, 1.8740234, 2.3183594, 2.4902344, -0.5048828, 2.8417969, 2.2832031, -1.2285156, 2.4804688, -1.3183594, -0.45703125, 1.6777344, -0.68066406, -2.3652344, -0.7163086, -0.17602539, 3.1972656, 1.4296875, 1.0009766, -0.38989258, -1.7021484, -1.0419922, -2.2871094, 0.016326904, -0.18261719, 1.2568359, 0.7236328, 0.8491211, -2.7167969, 2.3730469, 0.5961914, 0.112854004, 2.8359375, -1.5732422, 0.39453125, -0.45825195, 0.16052246, -0.7841797, 0.00699234, -1.0078125, 1.3916016, 0.8666992, -0.17553711, 0.54833984, 0.99609375, -3.6796875, 2.2792969, 0.23925781, 2.3261719, -2.8632812, 1.7041016, 2.4296875, -2.9199219, 1.1455078, -2, 1.5341797, -0.39233398, 0.45361328, -0.84716797, -0.22290039, 1.4140625, 1.4384766, -2.328125, -0.25195312, -3.8945312, -0.62841797, 2.2519531, -1.1826172, -1.6503906, 1.0136719, 2.4804688, -0.13183594, 0.7011719, 2.0097656, 1.7294922, -0.14135742, -0.5756836, 0.09814453, -0.52001953, -0.45581055, 0.43676758, 2.2636719, -0.2734375, -0.6425781, -2.8515625, -1.9775391, -1.2236328, -4.0976562, -1.0791016, 1.0126953, 0.80371094, 1.2832031, 1.8525391, 2.3476562, -0.27539062, 1.8222656, -2.3222656, 0.5229492, 0.6464844, -0.77441406, 0.09436035, -3.0605469, -0.8979492, -0.28735352, -0.6826172, 0.16540527, 0.2175293, 0.17797852, 0.85058594, -0.07128906, -1.3974609, -2.0097656, 0.36206055, -0.26757812, 2.109375, 0.3864746, -1.7958984, 1.0175781, -2.21875, -2.6054688, -1.4384766, -1.4169922, -2.3144531, 0.10205078, -1.6640625, -1.2861328, 2.0234375, 0.5800781, -1.3994141, 3.3359375, -0.5283203, -0.94433594, -0.1665039, 1.9570312, 0.39575195, -0.8886719, -2.6054688, 1.4404297, 2.7441406, 0.50097656, -0.030059814, -0.53222656, -1.6064453, -1.296875, -2.5058594, -0.74853516, 0.37426758, 1.7451172, 0.7441406, 0.11798096, -1.4990234, 0.52197266, -1.6855469, -1.6894531, -0.95703125, 1.0146484, -0.50878906, 2.9316406, -0.28149414, -0.83984375, 1.2070312, 0.051635742, 0.99560547, 2.1621094, -1.4873047, 0.5830078, -2.2617188, -0.48486328, 0.84472656, -3.2226562, -1.1064453, -0.40698242, 1.078125, 0.95947266, 0.91308594, 2.1074219, -1.7851562, 0.4038086, 1.2763672, -1.9404297, -1.0498047, -0.58251953, -0.059906006, -0.095703125, 0.7636719, -0.64941406, 1.4169922, -0.53271484, 1.0634766, 1.1845703, -2.6816406, 0.52246094, 0.72802734, 2.3476562, 0.38061523, 0.55029297, 4.078125, -1.6435547, -0.22424316, 1.296875, -0.4140625, -0.5727539, -0.018463135, 2.2675781, 0.40405273, 0.8144531, -2.4609375, -0.7006836, -0.9121094, -0.23046875, -0.25683594, -1.0410156, 0.80810547, 0.8647461, 3.2988281, -0.5136719, 1.3017578, -2.296875, 0.07574463, -0.9433594, -2.9492188, -0.5810547, 2.0878906, 3.3222656, 2.4199219, -0.6723633, 1.140625, 1.7626953, 0.78271484, -2.7265625, 0.24389648, 1.5517578, -1.2724609, 1.2216797, 1.09375, 2.1523438, -0.61376953, -0.11669922, -1.9042969, -0.44506836, -0.5498047, -0.44091797, -0.37890625, -1.4873047, 2.7226562, -0.46533203, -0.15856934, -0.70703125, -1.0146484, -2.0859375, 0.3515625, -0.5961914, 2.40625, 0.23510742, 0.39868164, 1.1845703, -2.8183594, -1.1328125, -0.49169922, 1.1738281, 2.0683594, 1.0244141, 0.29541016, -1.7880859, 2.4433594, -0.32348633, 2.1484375, 2.1835938, -0.6591797, 0.22595215, -0.32470703, -1.6298828, 0.9897461, 0.5161133, 2.4726562, -2.5253906, 2.3691406, 0.009552002, 2.6953125, 0.13220215, -1.4365234, 0.9086914, -0.86816406, -0.28515625, 0.39526367, 2.7441406, -2.0019531, -1.5458984, -0.16235352, 2.171875, -2.0449219, 0.72802734, -0.4182129, -1.3447266, -1.9306641, 1.2597656, -0.4333496, -1.9912109, 1.8349609, 1.8105469, 2.0976562, 0.27514648, -2.5800781, 1.3398438, -1.0068359, -1.1474609, 0.4868164, -0.34375, 0.9555664, 0.6376953, -1.2128906, 1.7109375, 1.7197266, -1.4970703, 1.8183594, -1.8271484, -3.1816406, -1.4472656, -0.49609375, 0.16210938, 0.99560547, -4.109375, 2.3222656, -0.06112671, 0.84472656, 1.6035156, 1.8808594, -2.09375, -1.6279297, -2.6152344, -3.0722656, 2.4179688, 0.11871338, 3.1230469, -0.74853516, -1.3203125, -1.1923828, -2.3886719, -2.7675781, 1.5693359, -2.1132812, 0.19335938, -1.7509766, 0.51904297, -0.98876953, -0.8730469, -0.11663818, 0.27539062, 0.66845703, 2.0429688, -1.7890625, 2.0917969, 0.8486328, 0.16540527, -1.4951172, -2.0703125, -0.8041992, 1.171875, 3.6777344, 1.6367188, -0.061309814, -0.1550293, 0.10668945, -1.1582031, 0.51464844, 2.0117188, -0.15405273, -2.8359375, -2.0390625, 1.0966797, 2.6035156, 1.5244141, -0.43896484, -2.3222656]}, "B071ZM8YVC": {"id": "B071ZM8YVC", "original": "Brand: GasOne\nName: GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep\nDescription: \nFeatures: Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects\nHigh heat output- fully adjustable heat-control regulator knob, power with Control\nHeavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting\nSafety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)\nSteel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank\n", "embedding": [-1.15625, 1.6777344, 1.2617188, -0.3293457, 0.15917969, 1.1103516, 1.1230469, -0.8051758, -0.14111328, 0.65478516, 1.3417969, -0.48779297, 0.62841797, -0.79296875, 1.0292969, -0.12109375, -0.37304688, 1.4404297, 0.85302734, 2.3007812, 2.5566406, -0.54589844, 1.421875, -2.0898438, 0.15771484, 1.203125, 3.0683594, -3.1503906, -0.69628906, -0.73583984, 2.484375, 0.6435547, 0.33935547, 0.80615234, -3.0136719, -0.3203125, -0.3840332, 1.1054688, -3.4726562, -1.46875, -1.2539062, -0.028411865, 1.7822266, 0.20800781, -1.8173828, 1.2314453, 1.5878906, 0.5913086, -2.2011719, 1.2128906, 0.113464355, 1.1181641, -0.52783203, 1.2568359, -1.2734375, -0.86865234, 1.9453125, -2.6875, 1.5615234, 0.3815918, 2.4902344, 1.1240234, -1.4765625, -0.106933594, -2.2421875, 0.053588867, -0.14331055, -0.45410156, -0.91845703, -0.36254883, 1.8876953, 0.38671875, 0.87597656, 0.22692871, -0.19494629, -0.14465332, -2.5488281, 0.9873047, 2.3378906, -1.1083984, -1.3408203, 0.38842773, 0.34326172, -0.09832764, -0.20593262, 0.7216797, -1.2246094, -1.8105469, 1.6523438, 0.25585938, -2.9394531, 3.6230469, -2.1933594, -4.0585938, 0.9423828, 0.064331055, 1.0009766, 0.9213867, 0.21777344, 0.0703125, -2.0878906, -0.6879883, -1.0322266, 1.1777344, -1.7890625, -1.4433594, 1.3583984, 1.6601562, -3.0527344, 1.2890625, -1.3544922, -1.0263672, 0.33276367, -0.6069336, 1.6162109, -1.2080078, -1.1191406, -0.08190918, 3.046875, 0.1274414, 3.8945312, -0.074157715, 0.47827148, -0.19787598, 0.4650879, 1.8544922, -1.6152344, 0.38134766, 3.1953125, -1.4921875, -0.6123047, -1.8916016, 2.3515625, -0.03540039, -0.7792969, -1.3925781, -0.32788086, -2.4863281, -2.4785156, -0.19433594, -2.484375, 1.7539062, 1.0263672, -0.27197266, -3.5410156, -0.34448242, -0.38085938, 2.9140625, 2.2714844, -1.0771484, -0.18688965, -0.93066406, 0.7314453, -2.046875, 1.8681641, 0.61376953, -1.09375, -2.2617188, 1.859375, 1.8095703, 0.86865234, -0.5366211, -1.859375, 1.5009766, 0.6801758, -1.8369141, 0.7324219, 1.3105469, -2.9394531, 0.6503906, 0.099609375, -1.8603516, -0.53466797, 1.0566406, 0.18041992, -0.8046875, -0.3322754, 2.6347656, 0.9584961, -1.1933594, -3.8046875, -3.5898438, 1.6201172, 0.21887207, 1.8105469, -0.3293457, 0.25170898, -0.40307617, 0.27319336, -0.5175781, -1.7783203, 0.3317871, 0.52783203, 0.9868164, -0.28955078, -2.0566406, -1.4023438, -1.2138672, -0.6923828, 1.8251953, -1.1230469, -0.6098633, 0.6245117, 1.3310547, -2.1757812, -0.76708984, 1.1582031, -2.3886719, 1.8427734, 1.5234375, 0.41503906, -0.18908691, 1.4550781, 0.7109375, -1.0058594, -0.99316406, 2.671875, 2.2128906, 1.6328125, 1.7080078, 0.2376709, -1.6201172, 1.5810547, -0.123413086, 1.0908203, 1.9775391, 0.33422852, 1.5097656, -2.4511719, -2.1054688, 3.8515625, 1.4902344, -0.7626953, 1.1660156, -1.1992188, 2.4882812, 0.9604492, -0.9746094, -0.14038086, 0.3154297, -0.42773438, -0.9628906, -1.2402344, -1.3427734, -1.8857422, 1.3554688, -0.5620117, -0.2541504, 3.1054688, 0.34448242, -0.9848633, 0.7109375, -0.6801758, -0.47827148, -2.1054688, 0.060913086, 0.7597656, 1.3378906, -0.4194336, -1.53125, 0.84472656, 1.8193359, -0.36450195, 1.4570312, -0.26245117, -1.25, 2.2636719, -0.79052734, -2.4296875, -0.37646484, 0.17346191, 1.1542969, 3.8808594, -1.5849609, 1.3378906, 0.041107178, -2.1855469, 3.3027344, -0.09436035, 1.890625, 1.7607422, -1.6425781, 1.65625, -1.1152344, 1.5693359, 0.7915039, 2.0683594, 0.3552246, -0.9941406, 0.028701782, 6.1875, -0.038116455, -2.0644531, 1.9980469, -0.25756836, 0.29003906, 0.6459961, 0.16516113, -0.25634766, -0.8076172, 1.2558594, 0.7216797, -0.15917969, 1.7988281, -0.24414062, -0.3930664, -0.7050781, -0.9238281, -0.21557617, -0.1307373, -0.94628906, -0.2866211, -1.2255859, 1.5244141, -3.1933594, 0.27954102, 2.2753906, -2.5195312, 0.44189453, 1.0078125, 1.5605469, 2.0566406, 1.4755859, -1.8037109, 1.609375, 1.4121094, 0.5493164, 1.4619141, 0.6118164, -1.0537109, -1.6328125, -1.796875, -0.37402344, -1.0927734, -1.71875, 0.58935547, -1.7792969, -2.9375, 1.5078125, -2.1113281, -1.75, 1.7675781, -2.1347656, 1.9677734, -1.2480469, -1.7988281, -0.9321289, -0.67626953, -0.3112793, -0.89404297, 0.8442383, 2.1855469, -1.3164062, -2.6875, -0.7001953, 0.38208008, -0.45581055, -0.43701172, -1.3974609, 0.74365234, 1.0771484, 0.78466797, -0.52978516, 0.07672119, -0.1237793, -2.8730469, 1.3730469, -3.7246094, 0.023406982, -0.6665039, 0.4423828, -0.5371094, -0.4934082, -2.4902344, -2.2246094, 0.7871094, -1.0830078, 4.1367188, -1.2490234, 2.1992188, -0.52441406, -0.92871094, 0.21008301, -1.8652344, -2.9414062, 0.58154297, 0.5395508, -1.3037109, -0.22973633, -4.2070312, 1.5810547, -1.5732422, -0.25390625, -1.453125, 0.6972656, -1.8525391, 0.50634766, -0.48657227, -1.8398438, 0.13842773, -0.7680664, 0.32006836, -2.2460938, -0.3942871, -0.5283203, -1.6220703, 0.09918213, 0.81689453, 1.2333984, -0.19506836, -0.7807617, 2.1835938, 0.3215332, -0.24560547, -0.23413086, -3.6660156, 2.328125, 1.1269531, -0.92333984, 0.9291992, -1.8115234, -0.5595703, -2.0253906, -0.8022461, 2.7675781, 0.5786133, 2.5078125, -0.24414062, -1.4892578, 0.5449219, 1.2021484, -0.38842773, -2.40625, 0.06970215, 2.5839844, -1.8759766, -0.6010742, -0.072509766, 1.6787109, -3.2519531, -0.2602539, 1.6279297, 1.0849609, 1.6484375, 1.0175781, 0.98583984, -1.5625, -1.3623047, 0.43188477, 1.2138672, -1.1542969, 0.17443848, 1.0390625, 0.15075684, -0.50878906, 1.1611328, 1.6035156, 1.953125, 3.4160156, 0.78027344, 0.7368164, -1.6884766, -0.56347656, -0.1484375, 1.4248047, -0.12976074, 2.2851562, 1.0732422, -0.9736328, -1.0166016, -1.6708984, 2.4238281, -1.6015625, 0.027832031, 1.6201172, -0.63720703, 0.6303711, 1.0654297, -1.1064453, 0.004333496, -0.62890625, 0.86279297, 1.0107422, 0.59375, 1.8613281, -0.5786133, 0.21472168, -3.0527344, 1.7890625, -0.26049805, -0.9975586, 0.7524414, 1.3115234, -3.8378906, -1.4892578, -0.24975586, -1.7792969, -0.33276367, 2.7363281, 0.20495605, -2.7753906, 1.328125, -0.0023174286, -0.6376953, 1.9042969, -1.2314453, -0.2536621, -1.9707031, -1.4677734, -1.2324219, 0.35327148, 1.2705078, 1.6875, -3.0351562, 0.9633789, -3.421875, -0.828125, 1.1386719, -0.72216797, -0.72021484, 1.4453125, -1.5498047, 1.0859375, -0.6464844, 4.3085938, -1.7890625, -2.4785156, 2.3203125, -2.9003906, -0.8486328, -1.9892578, -3.9648438, 2.0253906, -1.1748047, 0.6333008, 3.0761719, 1.0371094, -0.23535156, 1.640625, 1.5488281, -1.7011719, -1.140625, -0.11883545, 1.1767578, -1.9746094, -1.1230469, 1.3798828, 1.0722656, -1.0078125, -1.2890625, -0.27148438, -1.3232422, 0.33935547, 1.3740234, -3.2304688, -1.2089844, -1.1904297, 0.4206543, -0.58740234, -1.6601562, 0.9946289, -1.5068359, -0.15527344, -1.3115234, 1.7197266, 0.9140625, 0.06390381, -0.13513184, 5.1054688, 1.1542969, -0.12298584, 0.93408203, 0.3852539, 1.5996094, -0.32226562, -1.5527344, -1.3115234, -0.3149414, 0.65234375, 0.14624023, 0.45288086, -1.5263672, -1.7177734, 1.9277344, 2.6660156, 1.8554688, 1.4130859, 0.90478516, -1.4589844, 0.4482422, 0.1348877, -2.3808594, -0.3371582, -0.25805664, 0.5957031, -1.4716797, 0.3791504, -1.4931641, -0.3383789, -0.75097656, -0.5307617, -2.8164062, 1.0078125, 1.2451172, 0.09033203, 2.4726562, -1.0449219, -1.9365234, -0.25170898, 0.20751953, -1.15625, 0.068115234, -1.4824219, -0.026657104, 1.3007812, 0.71435547, -0.8798828, -1.2207031, 1.8974609, -0.9267578, -0.04324341, -1.1259766, 1.59375, -0.024597168, -1.2539062, 0.29833984, -1.3623047, 1.5566406, 0.7236328, 0.24768066, -0.18688965, 0.5205078, -2.4589844, 0.10095215, 1.0498047, -0.1550293, 0.79052734, 1.3964844, 0.91503906, 1.0751953, 1.40625, 0.3774414, 1.8164062, 0.9785156, 1.4833984, 0.8383789, 1.4570312, -1.1875, -1.0292969, 0.9086914, 2.2304688, 0.7680664, 4.1757812, 1.4306641, -0.92041016, 1.5722656, 1.1533203, -0.98779297, -1.2978516, -0.32348633, -1.1630859, 1.3544922, -0.7036133, -1.9902344, 0.44873047, 3.4589844, -1.5449219, 1.3857422, 1.2177734, -0.88916016, -0.9370117, -2.5703125, -0.77783203, -1.0732422, -1.4775391, 0.4711914, -2.5644531, 1.3730469, -1.9189453, 0.7285156, 1.8945312, -0.6376953, -0.10095215, 1.3818359, -1.7070312, 1.4941406, -0.9296875, -0.57128906, -2.2539062, 1.3125, 1.6279297, 1.6757812, 1.5322266, 0.26538086, 0.8754883, -1.1328125, -1.6640625, 1.0908203, 1.8798828, -1.4580078, -1.5185547, 1.828125, 0.13696289, 0.29296875, -0.89990234, -0.4724121, -1.2011719, 3.0742188, 1.9345703, 1.5283203, -0.57373047, -0.5136719, -1.8984375, -4.5234375, 0.21264648, 1.2539062, -0.52246094, -0.47094727, -1.5957031, -0.46069336, 0.52978516, -1.0732422, -0.044281006, -2.1542969, 0.025177002, 0.67333984, -0.30126953, -0.25170898, -0.6791992, -0.5239258, 1.0625, 0.043395996, 0.39453125, 1.0507812, -1.0322266, -1.6582031, 0.8574219, -1.6533203, 0.80126953, 1.3310547, -1.1894531, -0.18908691, 2.2734375, -0.96728516, -2.6660156, 1.5390625, -1.6621094, 0.20446777, 1.6113281, -1.4267578, 0.65625, 1.1103516, -1.9560547, 1.9306641, -1.3310547, 0.7285156, -0.07397461, -0.8457031, 1.4677734, 2.2382812, -0.8256836, -1.8164062, 2.6328125, -0.7006836, 0.43701172, 2.5898438, -1.0751953, -1.6113281, -1.3164062, -2.3085938, 0.38208008, -1.1679688, -1.1142578, 0.6748047, 1.1494141, 1.5283203, -0.86035156, 0.27172852, 0.066711426, 0.7524414, 0.059295654, 1.34375, -1.2480469, 3.1953125, -0.050689697, -0.31835938, -3.8398438, -2.2246094, 1.6220703, 2.6015625, 0.27783203, -1.3291016, -0.19030762, -0.09667969, 0.49072266, -0.875, 1.1191406, 2.234375, 1.0966797, -0.1809082, 1.5019531, 2.0019531, -0.9111328, 0.7661133, 0.45532227, -0.7319336, -1.1445312, 2.7773438, 2.4375, 0.29858398, 2.375, -2.34375, 2.6054688, -0.5732422, -0.81640625, 0.51220703, -1.8193359, -0.9790039, -2.265625, -2.5136719, -2.5722656, 1.1875, 1.1230469, -0.2331543, -0.20703125, 2.5234375, -0.51171875, 0.5073242, 1.9462891, 1.9960938, -1.4804688, 0.21350098, -1.5537109, -0.61035156, 1.6660156, -1.5595703, -0.30908203, 3.0644531, 1.0507812, -0.64697266, 1.7421875, 1.2275391, 3.0976562, 1.3271484, 1.0371094, 2.3535156, 0.27685547, 1.6425781, 0.6098633, 1.0234375, 2.7753906, 0.6953125, -0.74365234, 2.4980469, 0.3840332, -0.2705078, -0.9584961, 0.6635742, -0.1595459, -1.4228516, 0.30639648, 1.3740234, 1.4677734, -3.6601562, 0.75683594, -0.23425293, 0.32958984, -0.5385742, 1.6083984, -1.2617188, -1.4169922, 1.6162109, -0.3395996, 0.24157715, -0.7128906, -1.7070312, -0.9243164, -0.49536133, 1.9609375, -2.421875, 1.0419922, -1.7705078, -2.6660156, 0.16491699, 1.3056641, 0.4296875, 0.30932617, 0.26733398, 0.7246094, 0.8041992, 0.10095215, 1.5371094, -2.4121094, 0.37158203, -1.1289062, 2.8652344, -0.28979492, -1.1074219, 2.1699219, -1.3496094, -1.9072266, -3.6660156, 2.71875, 0.049621582, 0.35839844, 0.28442383, -2.6445312, 2.3203125, -0.3256836, 0.54541016, -2.9921875, 0.93310547, 1.1123047, -1.5234375, -0.5678711, 0.10583496, -0.8984375, 3.7207031, 0.51953125, -1.609375, 0.88427734, 0.7739258, 1.2119141, 0.12451172, -0.21166992, 0.5678711, 0.99658203, -1.1259766, 3.2949219, 0.3503418, -1.9521484, -0.35009766, 1.3710938, 1.8310547, 0.8955078, 0.72216797, -0.14245605, 0.059783936, 1.0234375, -0.54003906, -0.20324707, -0.75097656, -1.0625, -1.4082031, -0.5161133, -1.5185547, -2.5488281, 1.9414062, -0.11016846, -0.13879395, 0.8256836, 2.4785156, -0.8798828, 0.92333984, 1.0615234, -0.20471191, -1.8154297, 0.07470703, 1.2646484, -2.1054688, -1.3349609, 0.33862305, 0.32226562, -0.35424805, -0.7895508, 0.20471191, -0.25854492, -0.45288086, 1.2685547, 0.5, -0.98779297, -0.37329102, 0.61083984, -0.5253906, -0.017730713, 3.0078125, -0.81640625, 0.32055664, 0.12451172, -1.2255859, -0.48779297, -1.6337891, -1.0283203, 0.6894531, 2.5839844, 0.45483398, 1.7421875, -2.0175781, -2.7714844, -1.3583984, -2.6425781, 1.7207031, -0.25634766, -1.0039062, 0.52978516, 2.5371094, 2.1582031, -1.6171875, 1.1279297, -0.6098633, 0.43603516, 1.1445312, -1.8193359, 0.9633789, 0.3022461, 0.32641602, -0.41577148, 3.0820312, 2.3691406, -0.48632812, 1.2978516, 0.6015625, -0.41723633, -3.2441406, 1.4013672, -1.2128906, 0.27856445, 0.45141602, -1.2431641, 1.8007812, 2.1054688, -1.3847656, -1.3378906, -0.95458984]}, "B0098HR10I": {"id": "B0098HR10I", "original": "Brand: Weber\nName: Weber 47510001 Spirit E310 Natural Gas Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nPerfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000\nPorcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food\nBuilt to last with heavy duty, porcelain-enameled lid and cookbox that won\u2019t rust or peal over time\nSix tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system\n", "embedding": [-1.4052734, 0.23425293, 1.4042969, -0.26342773, -0.2401123, 0.85302734, -0.23657227, -1.5917969, 1.1132812, 1.0625, 2.4414062, 0.55322266, 0.30078125, -4, 0.24084473, 0.23266602, 2.4804688, 1.6708984, 0.21789551, 1.0644531, 0.5449219, 0.7705078, 2.4492188, -1.6640625, 0.8120117, 0.59033203, 3.0566406, -3.96875, -0.57177734, -2.8613281, 0.95996094, 0.53222656, -0.26953125, 2.0839844, -4.0546875, -2.0761719, -3.0742188, 1.9804688, -2.3339844, 1.4072266, 0.10498047, -1.6103516, 0.22033691, -1.0546875, -2.0917969, 1.2988281, 1.1601562, 1.0439453, -2.0664062, -0.86035156, 2.0175781, 2.6503906, -1.1367188, 0.5024414, -1.5390625, 1.3847656, 1.421875, -2.3007812, 1.3847656, 0.2644043, 2.8066406, 0.013916016, -1.7148438, -1.6171875, -0.8876953, -0.21044922, 0.61621094, 0.8544922, -0.86083984, 0.09039307, 3.46875, -0.20410156, -1.4423828, 2.8554688, -0.98095703, -1.7255859, -2.2910156, 3.0371094, -0.16088867, -0.7709961, -1.0751953, 2.34375, 2.5917969, -2.0058594, 0.50683594, 1.078125, 0.07098389, -2.1894531, 1.2128906, 0.5107422, -0.68310547, 1.3994141, -2.796875, -4.1875, 2.4765625, 0.24206543, 0.5385742, 1.0986328, -0.66796875, 1.3349609, -1.3339844, 1.9335938, -0.55029297, -0.9003906, -2.8691406, -1.4580078, 1.5732422, 0.54003906, -2.9667969, 0.03161621, -0.93310547, -0.4296875, 0.79003906, 1.5751953, 1.1953125, 1.5751953, 1.5263672, 2.0449219, 0.42089844, 0.72509766, 3.3105469, -1.1484375, 0.5830078, 0.16101074, -1.3798828, -0.4033203, -1.0488281, 1.3173828, 2.0742188, -2.3183594, -0.53027344, -0.5683594, 2.9804688, 0.9301758, -0.8828125, -1.7207031, 0.0859375, -1.8076172, -3.1152344, 0.0725708, -1.6933594, 0.6586914, 1.3789062, -2.0175781, -3.3144531, 1.1875, -0.50146484, 0.42797852, 0.028518677, -0.5463867, -0.42382812, -0.8745117, -1.1582031, -3.1699219, 2.1835938, 0.14819336, 0.1439209, -0.22546387, 3.1914062, 2.7558594, 2.1445312, -0.81591797, -2.765625, -0.64453125, 0.42773438, -1.2333984, 1.2666016, 0.65771484, -0.8754883, 1.2695312, 0.32910156, -1.3310547, -0.92529297, 0.4555664, 1.3164062, -1.4033203, -0.25219727, 1.5439453, 0.2064209, -1.1523438, -0.50097656, -1.3857422, 0.28100586, -1.4365234, -0.7060547, -0.38623047, 0.64208984, 1.1386719, 0.9584961, -2.2558594, 0.4802246, -0.3564453, 0.7944336, -0.38110352, 1.7333984, -1.46875, -1.6845703, -1.6650391, 1.6923828, 0.109191895, -0.8564453, -0.7324219, 0.71728516, 1.4453125, -0.9111328, -2.5527344, -0.18945312, -3.078125, 0.08905029, 1.2880859, 1.9902344, -1.0722656, 0.90771484, 0.28637695, 1.578125, -0.9951172, 1.8955078, 0.67285156, 0.51953125, 2.7578125, 0.9165039, -0.17138672, 1.2363281, 2.3886719, 0.9526367, 0.76123047, -0.058044434, 1.2294922, -2.859375, -1.9960938, 4.5585938, -0.17175293, -1.3251953, 0.8286133, 0.6713867, 3.0234375, 0.12902832, -0.2619629, -0.13769531, 1.4833984, 0.12109375, -0.8510742, -3.3613281, -0.89404297, -1.0751953, -0.96972656, -1.2392578, 2.2207031, 1.6796875, 1.1123047, 1.3154297, 0.41918945, 0.91748047, 2.0507812, -0.71875, 0.69384766, -1.3662109, 2.7304688, -0.053985596, -0.4897461, 1.1640625, 1.1289062, -0.32006836, 1.2998047, 0.7597656, -1.6005859, 0.80029297, 1.9746094, -0.48632812, -1.7841797, 0.1977539, -0.2401123, 0.76416016, -1.7851562, 2.6972656, 0.9394531, -1.3837891, 3.4746094, 0.6767578, 1.1650391, 0.9038086, -2.3183594, 1.046875, -3.1523438, -0.44213867, 0.8671875, 0.85009766, -2.0585938, -1.4609375, -0.13134766, 4.78125, -1.4931641, -1.9501953, 2.5742188, -1.2333984, 0.85253906, 3.3476562, 0.82470703, -1.6132812, 1.5976562, 3.0996094, 1.3574219, 0.9111328, 1.7431641, -0.19421387, -1.5498047, 0.42822266, -2.9003906, -0.2409668, 0.2788086, -0.5419922, -0.9291992, -0.85595703, 0.73535156, -2.65625, -1.6904297, 1.0009766, -2.2304688, -0.45410156, -0.29858398, 1.6542969, 0.13500977, -0.73779297, 0.046691895, -0.7836914, -0.6201172, -1.2128906, 1.7314453, -0.32055664, -1, -0.9111328, -0.012489319, -0.6567383, -2.7363281, -2.4511719, -1.2177734, -1.5917969, -2.2011719, 1.5527344, -1.3662109, -0.64404297, 0.8515625, -2.0800781, -0.66552734, -0.07556152, -1.2539062, -0.65283203, 0.21362305, -0.6611328, -0.09637451, 1.0263672, 1.3789062, -1.6318359, -2.0917969, -1.7177734, 0.3527832, 0.93408203, 1.0595703, -0.5839844, -0.09991455, 0.57373047, 1.1064453, -0.44604492, 0.6411133, 1.7060547, -1.5664062, 0.035980225, -3.8867188, 0.14648438, -2.2636719, 1.8173828, 0.9379883, 1.1113281, -3, -1.4619141, -1.7636719, -0.26171875, 4.9726562, -0.32836914, 2.5820312, -0.12780762, -0.13806152, 0.12756348, -2.9628906, -1.7333984, 0.4494629, 1.0166016, -2.5976562, -0.27075195, -1.5888672, -0.09429932, -1.7128906, -0.13879395, 0.1784668, -0.61816406, -0.51953125, 0.6386719, -1.984375, -0.42822266, -0.9223633, 0.5551758, 0.1484375, -1.6289062, -2.34375, -1.5507812, -1.0371094, -1.2382812, -1.7089844, 0.7763672, -0.19885254, 1.4873047, 2, 0.8354492, 0.7944336, 0.45166016, -3.5625, 2.40625, 0.100097656, -3.8925781, 1.1748047, -1.8671875, -0.51220703, -2.3027344, 1.0371094, 2.2382812, 1.5546875, 1.7714844, 1.6083984, 1.0898438, 0.3149414, -1.4716797, 0.8574219, -1.6669922, 1.4121094, 2.8554688, -1.9042969, -0.5214844, 1.0039062, -0.5708008, -2.3886719, -1.0986328, 2.6640625, 2.4472656, 2.5253906, 0.93359375, 1.4833984, -0.17797852, -1.3027344, 1.2441406, 0.4831543, -1.4628906, -0.36572266, 0.31469727, 1.7470703, -1.1875, 1.7236328, 0.8417969, 1.2509766, 2.5585938, 0.13745117, -0.19372559, -0.19934082, -0.11785889, 0.20568848, 1.5791016, -0.9140625, 1.5136719, 0.18469238, -0.34350586, -0.08508301, -0.8857422, -0.054107666, -0.8305664, -2.5644531, 1.9306641, -0.6713867, -0.4921875, -0.5908203, 0.0625, 1.9785156, -0.066833496, -0.48266602, -1.2011719, 0.19897461, 2.0371094, -1.7890625, -0.09655762, -1.4111328, 0.4970703, -0.21350098, -2.3164062, 0.43530273, 3.7890625, -2.5019531, -1.0927734, 1.6845703, -1.0576172, 0.14233398, 1.9169922, -1.0439453, 0.14343262, 1.4394531, -2.1621094, 0.36791992, 1.0429688, 0.32495117, -1.2890625, -1.4414062, 1.3554688, -0.54296875, 0.96484375, 2.0019531, 0.020889282, -3.234375, 0.055603027, -3.4042969, -0.8881836, 0.12805176, -1.5419922, -0.24768066, 3.1386719, 1.1542969, 0.48754883, 0.2783203, 2.9882812, -1.1279297, 0.103027344, 2.5527344, -3.4570312, 0.70996094, -4.1171875, -3.3535156, 0.90527344, -1.8378906, 0.1965332, 0.22875977, 0.5366211, -0.16821289, 3.9804688, 1.0537109, -1.8632812, -1.2441406, -0.14282227, 0.41870117, -0.08905029, -0.010627747, -0.47094727, -0.8227539, -1.7412109, -3.1757812, -1.2998047, 0.9667969, 1.7978516, 1.2773438, -3.9804688, -0.080200195, -1.2109375, -1.6230469, -1.9912109, -1.0341797, 1.6445312, -0.8754883, 0.66503906, -3.234375, 1.3613281, 1.4277344, -0.33447266, 1.8134766, 3.0957031, 0.4111328, -2.1347656, 2.8027344, -0.50439453, 3.0703125, -0.7529297, -2.7675781, -1.1972656, -0.2956543, 0.5332031, -2.2617188, 0.54589844, 0.9663086, -0.9760742, 1.7001953, 1.5283203, 1.5224609, 0.52978516, 0.10723877, -2.4589844, -0.3774414, 0.06719971, -1.0625, -2.4082031, -1.0869141, 0.93066406, -1.1982422, 0.036956787, -2.375, 0.9941406, -0.8339844, -0.43408203, -3.0527344, 2.7773438, 3.2519531, 3, 2.3671875, -1.3652344, 0.79541016, -0.87646484, 0.2644043, -1.6845703, 1.6240234, 0.18286133, -0.40283203, 3.0839844, 1.5693359, -1.1923828, 0.064086914, 0.5566406, -2.1660156, -1.328125, -2.5214844, -1.1191406, -1.6904297, -0.06506348, 0.59375, -0.40893555, 2.9316406, -0.24914551, -1.6240234, -0.06817627, 1.0087891, -1.5380859, -0.72753906, 0.97265625, -0.12548828, 0.08465576, 1.6523438, 2.1054688, 0.7050781, 1.0068359, -0.44067383, 1.4912109, 0.45751953, 0.8574219, 2.4980469, -0.3869629, -0.9428711, -0.4099121, 1.8330078, 2.5273438, 1.3740234, 3.2734375, 0.0057640076, -2.2070312, 1.390625, 0.9086914, -3.4921875, 1.34375, 1.171875, 0.64746094, 1.2451172, 0.9511719, -4.0703125, -0.39941406, 0.8198242, -0.6425781, 0.50097656, -1.2402344, -0.33154297, 2.2441406, -0.11236572, -0.12475586, -0.19055176, -0.33911133, 1.7382812, 2.5683594, 0.7260742, -1.0605469, 1.34375, 2.2460938, -0.62939453, -1.7890625, 1.9716797, -0.50634766, 0.5859375, -2.609375, 0.50390625, -0.11920166, 0.12512207, 2.6386719, 1.4462891, 2.0273438, -0.32714844, 1.7792969, -2.8183594, -0.79541016, -1.7177734, 2.2773438, -1.5224609, -0.41748047, 0.9086914, -2.7304688, 1.7119141, -2.2832031, -1.7236328, 0.06951904, 1.5068359, 1.0380859, -0.5708008, -1.9082031, 0.30322266, -1.0996094, -3.09375, -0.6508789, 0.10357666, 0.6435547, 0.77685547, 1.2373047, -1.4453125, 0.8925781, -0.34326172, 0.9682617, -1.5664062, 0.26367188, -1.1904297, -0.4074707, -0.45825195, 0.4873047, -1.1542969, -1.1542969, 1.4179688, 1.0361328, 1.8095703, -2.5019531, -1.4804688, 0.4033203, -0.7109375, -0.027526855, 2.4394531, 1.8867188, -0.8359375, 1.4345703, 1.2783203, -1.7363281, 1.6894531, -3.0898438, -1.4091797, 1.6298828, -1.4589844, 1.5419922, -0.8149414, -0.7050781, 0.10797119, -0.014961243, 1.3203125, 0.55908203, 0.029678345, -1.3056641, 0.43115234, -1.4716797, -1.4619141, 0.6386719, 0.016677856, 1.7373047, 0.86083984, -1.2685547, -1.3076172, -0.5786133, -1.9931641, 1.3359375, -2.421875, -1.1347656, -1.2314453, 1.9736328, 0.2758789, 0.32373047, -0.5541992, 3.6582031, -0.55908203, -2.0019531, 0.97021484, -0.6166992, 3.6835938, 2.6347656, 0.13061523, -1.6074219, -2.5, -0.03768921, 1.3818359, 0.6743164, -1.3046875, 0.6479492, -0.21765137, -0.35546875, -0.70703125, 2.2226562, 1.5263672, -0.07196045, 0.1907959, 1.5195312, 2.3964844, -1.3613281, 0.78271484, 1.3027344, 1.6103516, 0.0017681122, 4.4335938, 2.1464844, -2.2734375, 1.3359375, -1.6142578, 2.2929688, 0.13476562, -0.7993164, -0.6767578, -1.2949219, -1.4414062, -2.15625, -1.7744141, -3.1015625, 1.3007812, 0.43652344, -1.7763672, -1.9238281, 0.9472656, 0.0101623535, 3.7167969, -0.09259033, 1.1162109, -1.7363281, -0.21826172, -0.14587402, 0.7661133, 1.1904297, -2.84375, 1.2792969, 1.6582031, -1.4550781, -1.6005859, 0.50097656, 1.34375, 3.4921875, -0.023498535, 2.7988281, 3.8222656, 2.0019531, 2.4570312, 0.64160156, 1.6611328, 1.8076172, -1.0947266, 0.29882812, 0.8466797, -0.33081055, 0.56103516, -0.86035156, 2.2578125, -0.76953125, -0.9267578, -0.4404297, -0.17016602, 0.60009766, -2.0527344, 1.1826172, 0.9663086, 2.5664062, -1.9248047, -0.58251953, -1.1953125, -1.0322266, 0.93066406, -1.6464844, 1.3818359, 0.61035156, -0.33618164, -1.6132812, -0.09710693, 2.2480469, -4.5976562, 1.4267578, -1.1142578, -1.2246094, -1.1025391, -0.6665039, 2.4121094, 1.0615234, 0.12915039, 1.2958984, 4.078125, -0.42822266, 2.5136719, -2.7519531, -1.0244141, 0.15905762, 3.0761719, -0.0069389343, -1.3056641, 1.1494141, -1.7568359, -3.7089844, -3.7285156, 3.6328125, 1.8164062, 0.77197266, 2.0976562, -1.0507812, 2.9824219, 1.0419922, 1.2988281, -1.3398438, -1.3417969, -0.37524414, -3.3144531, -0.453125, 0.12322998, -1.4863281, 1.1806641, 0.3828125, 0.29296875, 1.234375, 1.3134766, 1.4902344, -0.30371094, 1.3857422, 1.3623047, -0.52441406, -0.51464844, 1.3388672, 0.22192383, -2.0800781, -2.5449219, 1.5849609, 1.96875, 0.5288086, -0.96484375, -0.6743164, -0.99316406, -1.8076172, -0.54833984, -0.38305664, -0.7109375, -0.88183594, 0.0635376, 1.5039062, -2.8027344, -1.1503906, 2.1699219, 1.5380859, -0.35620117, 1.9335938, 3.0703125, -1.9423828, -0.5522461, 0.66796875, 0.58251953, 0.38378906, -0.45703125, 0.95458984, 0.11932373, -0.6508789, 1.3583984, 1.6337891, 0.7583008, -0.21398926, 0.25878906, -0.5239258, -0.88916016, 0.2680664, 1.4228516, -0.54785156, -1.765625, 2.546875, 0.12121582, -2.2617188, 1.4238281, -0.51660156, 1.0947266, -0.75146484, -2.6054688, -0.9370117, 0.0029525757, -1.2382812, 1.2871094, 4.1328125, 0.7705078, 0.5161133, -3.1914062, -3.0273438, -1.1494141, -3.1582031, 1.7568359, -1.1582031, -1.6484375, -0.42260742, -0.059417725, 3.3925781, -0.79541016, -0.5292969, -0.9873047, -1.6044922, 1.0527344, -0.4958496, 2.09375, -0.10107422, -0.6958008, 1.2519531, 1.5068359, 2.8261719, 1.4140625, 0.21594238, 2.0839844, -0.8754883, -2.3496094, -0.53027344, 0.062286377, -0.3701172, 0.32495117, -1.0625, 1.4970703, 0.51220703, -1.2158203, -0.010559082, -2.4101562]}, "B005EOSOIW": {"id": "B005EOSOIW", "original": "Brand: Mr. Heater\nName: Mr. Heater MH15 Single Tank Top Outdoor Propane Heater\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "embedding": [0.28051758, 0.21325684, 1.9150391, 0.61328125, -1.0537109, 0.21264648, 1.1044922, -1.3496094, -0.40234375, 0.8364258, 0.79785156, 0.38549805, -0.84375, -2.875, 1.109375, -1.4023438, 1.4023438, 0.74365234, 2.0976562, -0.64990234, 0.43554688, 0.044281006, 0.30078125, -2.2402344, 1.8623047, 2.0898438, 4.2734375, -1.9316406, -0.47509766, 0.29882812, -0.33618164, 1.5996094, -0.82714844, 1.9404297, -0.004776001, -0.92285156, -3.8242188, 1.546875, -3.4003906, -0.7348633, -1.4863281, -0.23400879, -1.0634766, 1.5625, -1.578125, -2.0117188, 0.48876953, -1.4238281, -0.3100586, -1.1591797, -0.8598633, -0.7475586, -0.40478516, 0.31225586, -2.5039062, -1.1796875, -1.3847656, -3.6992188, 1.7646484, 0.6616211, 0.8598633, -2.03125, -2.1933594, 0.9326172, 0.6220703, 1.0439453, 0.09490967, -1.0029297, -0.18322754, 1.2011719, 2.0996094, -0.06829834, -0.6196289, -0.8598633, 0.119384766, -0.60498047, -1.9951172, 0.030136108, 2.8496094, -0.71875, -0.82421875, 2.59375, -0.41333008, 1.5195312, -1.2978516, -2.0234375, -1.2871094, 0.29760742, 2.1015625, 0.13024902, -2.6992188, 1.9648438, -0.21020508, -4.2617188, 0.9375, -1.6074219, -0.072021484, 0.4338379, -0.22497559, 2.8164062, 1.2734375, 0.9008789, 0.67822266, -1.0351562, -1.640625, -1.2294922, -0.79052734, 1.1689453, -0.7050781, 1.2207031, -2.1113281, -0.19104004, 2.1875, 0.10235596, -2.5605469, -0.70751953, 0.74072266, 2.9746094, 5.0078125, 1.7978516, 3.359375, -1.6425781, 2.9355469, -1.2246094, 0.5761719, 0.28979492, 0.41308594, 0.91503906, 1.1171875, -2.5664062, 3.1796875, 0.06378174, 0.46777344, 0.17932129, 0.34375, -1.1669922, -1.4726562, -1.8027344, -3.1191406, -2.0996094, -0.78271484, 1.0224609, 1.734375, 0.05429077, -3.2304688, -1.4267578, 0.21154785, 0.36401367, -0.7348633, -1.4414062, -0.15734863, -2.9160156, -0.35327148, 1.2705078, -0.2084961, 2.578125, -0.67822266, -0.23754883, 1.7880859, 2.4804688, 2.1757812, 1.1328125, -0.8149414, 0.9501953, -0.0044441223, -2.8808594, 0.85595703, 0.6772461, -0.89208984, 2.4707031, 0.30566406, -2.5078125, -0.16638184, -1.3701172, 0.075683594, -1.9433594, 0.84765625, 1.6044922, 0.046966553, -0.9863281, -4.0820312, -0.96875, 0.5449219, -0.9189453, 2.2578125, -1.2167969, -1.6816406, -1.1123047, -0.5698242, 0.14343262, -1.0273438, -0.17248535, -0.33544922, 0.16113281, -0.6328125, -2.3125, -2.3339844, -2.7304688, 2.9257812, -0.045532227, -1.7412109, 1.6396484, -1.4960938, -1.1455078, -1.9814453, -1.8261719, 0.95947266, -0.0042381287, 0.49682617, 1.9765625, 0.17834473, -0.56347656, 1.7871094, -0.3425293, -0.44482422, -2.2285156, 1.6669922, -0.77978516, 2.34375, 3.2246094, -0.88183594, 0.57373047, -0.15856934, 1.0537109, -1.9873047, 3.5605469, 0.9379883, 1.6259766, -1.8232422, -1.8408203, 3.0292969, 1.8398438, 0.9301758, 1.5185547, -0.07897949, 1.9970703, 1.0126953, 0.6660156, 0.3544922, 0.51220703, 0.96484375, -1.0908203, -0.13061523, -0.53564453, 0.5522461, 2.4492188, -0.68603516, 0.68310547, 0.67285156, 0.8491211, 0.42749023, -1.7744141, -0.04006958, -1.2753906, -2.5390625, 1.3564453, 1.0683594, 0.5175781, -0.10449219, -2.0351562, -0.41064453, 1.0400391, -0.16577148, 0.34155273, -0.7314453, -0.12231445, 3.1074219, 1.9453125, -0.94140625, -0.3125, 1.4033203, 3.7792969, 0.9223633, 0.9140625, 1.8066406, 1.4414062, 0.51123047, 3.9785156, -0.9741211, 0.06854248, 1.1113281, 0.020431519, 0.39526367, -0.39990234, -0.8388672, -0.36010742, -0.13244629, 0.35864258, -1.3046875, 0.35864258, 4.2539062, 0.5517578, -0.22521973, 1.5683594, -0.27856445, 2.4003906, 2.9511719, -2.1230469, -0.61621094, 0.072143555, 1.1855469, 1.3369141, -2.0859375, 0.5415039, -1.2998047, -1.6640625, 0.17834473, -0.6894531, -0.94970703, 1.0361328, 2.6738281, -1.7460938, -2.3476562, -1.1669922, -4.3671875, 0.37036133, 1.7148438, -4.96875, 1.3183594, 1.6005859, 1.4140625, 0.8149414, 0.7597656, -0.55371094, -0.072753906, -0.0041160583, 0.050689697, 2.8300781, -0.51660156, -0.64453125, 0.9213867, -0.9067383, 1.3203125, -0.94433594, -2.40625, 0.22106934, -0.24572754, -1.5039062, 2.4804688, -1.0664062, 0.7861328, 1.8330078, -1.9033203, 2.3964844, -0.5415039, -2.2148438, -1.4384766, 0.4206543, -0.16308594, -2.9882812, 0.20300293, 0.1451416, -2.1113281, -5.8398438, -0.09613037, 2.2324219, -1.9345703, 0.07965088, -1.0498047, 0.7324219, 1.2519531, -1.1152344, 0.41601562, -1.3896484, -0.9692383, -1.2744141, 0.64697266, -2.5898438, 1.6396484, -2.2480469, 0.39160156, -1.6826172, -1.2363281, -0.52441406, -1.8837891, 3.5273438, 0.47216797, 3.8085938, 0.65185547, 2.2753906, 0.2409668, 1.1884766, 1.1582031, -1.6445312, -2.0507812, -0.5258789, -1.8427734, -1.9091797, -0.43823242, -4.7578125, 0.27392578, -0.6098633, -1.2490234, 0.43481445, 0.27026367, -0.7553711, -0.8769531, -0.15014648, -1.0107422, -0.73876953, -1.3613281, -0.087768555, 0.21057129, -1.6669922, 0.9995117, 1.2255859, -0.36987305, -0.88671875, 1.2109375, 1.1767578, 0.42260742, 1.4277344, -0.5761719, 2.3378906, 1.3017578, -4.6796875, 2.3398438, 2.0292969, 0.6245117, -1.1601562, -1.7548828, -2.2207031, -1.9912109, -0.33740234, 2.3652344, 0.6171875, 2.828125, 0.8105469, -0.46362305, 0.9428711, 2.0644531, -0.6196289, 0.30078125, -1.3085938, 1.1591797, -0.79296875, -1.4814453, 1.5087891, 2.4804688, -2.7675781, -1.8359375, 2.7480469, -0.9082031, 0.7470703, 1.3496094, -0.6484375, 0.29223633, 3.5664062, 0.46362305, 1.2353516, -0.7841797, -1.2441406, -1.4169922, 0.8876953, 2.6699219, 3.6757812, -0.63720703, -0.42797852, 0.69433594, 0.4736328, 0.5698242, -1.2695312, -0.47973633, 0.79296875, 0.5185547, -0.015411377, 2.796875, 0.24633789, 1.5087891, 0.30371094, 0.70166016, 0.87109375, -0.37573242, -0.61083984, 2.6425781, -0.9111328, 0.010513306, 0.004837036, -0.47607422, -0.22399902, -0.5317383, 0.41259766, -0.73291016, 0.6723633, 1.0234375, -1.5332031, -3.5273438, -1.1953125, 1.5224609, -0.21032715, -1.1503906, -0.028869629, 1.4140625, -1.2646484, 0.029174805, -2.7558594, -1.3398438, -1.6748047, 1.1738281, -1.0498047, -2.5664062, -1.7402344, 0.14233398, -0.1875, 1.9150391, -0.38061523, -0.87109375, -0.99072266, -2.5800781, 1.4287109, -0.5834961, 1.7050781, 2.3632812, -1.9726562, -0.39916992, -2.6425781, -1.7978516, 2.6855469, -1.3164062, -0.53759766, 1.5664062, -1.3037109, 3.3769531, -1.5634766, 3.9355469, -0.8798828, -0.48461914, 1.3642578, -0.6269531, 0.8852539, -1.4287109, -4.0585938, 0.3232422, -1.4863281, -0.18884277, 4.0703125, 0.33789062, 0.49267578, -1.6328125, 1.3808594, -1.4296875, -3.1640625, -0.82666016, 0.5546875, -2.1425781, 0.53564453, 3.1269531, 1.140625, -4.8632812, -2.3535156, 0.1928711, -1.4658203, 0.3725586, 0.7314453, 1.1669922, 1.390625, -0.91015625, 2.3300781, -1.9345703, 0.91552734, -0.71240234, 0.5283203, -1.3017578, 0.039764404, 2.0117188, 0.5131836, 1.2158203, -0.124938965, 3.2382812, 1.0947266, 0.25683594, -0.19421387, 0.6533203, 0.18383789, -0.091552734, -2.6992188, -2.0292969, -1.2324219, 0.013748169, 0.91796875, 0.19592285, 0.55029297, -1.0976562, -0.8388672, 0.18127441, 1.6435547, 1.9746094, 2.3945312, -0.20898438, 1.4277344, 0.088378906, -3.0253906, -1.1835938, 0.11779785, -0.9277344, -2.0195312, 1.0126953, 0.3449707, 0.40820312, -2.3105469, -0.8022461, -0.25073242, -0.5678711, 2.9882812, 1.8837891, 0.29589844, -1.5439453, -2.2929688, -0.94628906, -0.5654297, 0.7548828, -1.4169922, 0.89501953, -0.7661133, -0.099487305, 2.8808594, -2.4980469, 1.7451172, 0.5078125, -0.05682373, 0.19726562, -1.0322266, 0.16052246, -0.59228516, -1.1386719, -0.5317383, -1.3925781, 4.203125, -0.08703613, 1.0058594, 0.3137207, 0.97753906, 0.57910156, 0.4169922, -0.2927246, -1.6474609, 3.2324219, -0.32958984, 0.5498047, -1.9814453, 0.071777344, 3.4746094, 1.9550781, 0.34936523, -0.44506836, -0.38452148, 1.4599609, -1.7373047, -0.9355469, 2.2148438, -0.76171875, -0.83251953, 3.359375, 2.0546875, 0.30737305, 0.94873047, 1.7832031, -0.40771484, 1.0644531, 0.023452759, -0.41186523, 2.0878906, -0.54296875, -4.1132812, -0.53466797, 2.3691406, -0.9453125, 2.1621094, -0.77978516, -2.1523438, -1.7675781, -2.9042969, -3.3007812, -2.0644531, -0.20507812, -0.39819336, -1.4042969, -0.17468262, -1.5722656, 1.5673828, 3.8378906, 0.15661621, -0.68066406, 0.83935547, -0.80126953, -0.89501953, -0.5991211, 0.5229492, -1.5527344, -0.5654297, 0.7998047, -0.07354736, 0.08178711, 1.9042969, 0.62060547, -1.4951172, -1.5449219, -0.2680664, 2.609375, -2.1953125, -1.8369141, -0.016967773, -0.50634766, -0.19750977, -1.1650391, -2.2519531, -1.4052734, 1.0947266, -0.3737793, 0.9238281, 0.75634766, -0.11627197, -4.0351562, -1.7490234, -2.1445312, -0.2631836, 0.18969727, 0.27148438, -0.14196777, -2.171875, 0.25341797, 1.3496094, 0.91748047, -0.47216797, 1.3710938, -1.2246094, 1.7148438, 0.43237305, -1.1914062, 0.69384766, 0.47094727, 0.40649414, 1.3085938, -0.84375, -1.8417969, -3.5800781, -1.4716797, 0.21228027, -0.8120117, 0.73535156, 0.9995117, 0.8925781, 3.9941406, 0.07489014, -2.3632812, 1.0107422, -1.0791016, -0.83203125, 2.9316406, -2.0371094, 1.9619141, 1.7734375, -2.1289062, -0.70703125, -0.5620117, 2.2109375, -0.23693848, -0.08105469, 0.12322998, 0.5913086, 0.4675293, 0.3413086, 1.8359375, -1.2265625, 1.5898438, 0.77441406, 1.3857422, -0.19128418, -3.1367188, -0.96875, 0.3137207, -1.9326172, -0.64501953, -0.5991211, 0.71240234, 0.88378906, 1.0253906, 3.1425781, 0.5161133, 1.6601562, -1.2099609, 0.34887695, -0.2919922, 0.6850586, 1.3710938, -1.9472656, -3.4296875, -2.0859375, -1.078125, 2.0566406, 1.3808594, -0.78808594, 0.6972656, -1.0898438, -0.7133789, 0.057525635, 2.296875, 0.18188477, 1.0185547, -2.6640625, 2.2441406, 1.6796875, -1.5800781, -0.6738281, -0.63671875, 2.7949219, -1.7080078, 1.8496094, 3.0683594, 0.35546875, -0.24743652, -0.46142578, 1.0488281, 1.4912109, -2.0214844, 2.6054688, -3.8535156, -1.1816406, -0.053894043, -2.171875, -3.234375, 0.30322266, 0.76953125, -0.7290039, 1.671875, 1.4472656, -0.09649658, 1.0253906, 2.6835938, -0.22351074, -0.6591797, 1.3398438, -1.3027344, -0.96728516, 3.0839844, 0.06427002, 3.5273438, 1.5859375, 1.3740234, -0.58251953, -0.28588867, -0.8457031, 1.1933594, 4.8984375, 1.5898438, 1.9990234, 0.43652344, 0.46020508, 2.3144531, 0.30273438, 3.3105469, -2.6425781, 0.116882324, 0.80029297, 0.7949219, -0.25512695, -0.30273438, 0.12817383, 0.8413086, -0.36547852, -2.4824219, -0.13586426, 1.6347656, -0.34179688, -0.70214844, 0.14892578, 0.6777344, -2.4472656, 2.1738281, -0.18383789, -0.43945312, 0.8149414, 0.41748047, 1.9267578, 0.6855469, 0.6738281, 1.8330078, -0.25878906, 3.5175781, -1.7275391, 0.85253906, 1.8886719, -0.6323242, 0.31469727, 1.4404297, 0.6953125, 1.4472656, -0.4099121, -1.8398438, -0.9785156, -1.9462891, -1.4921875, -0.7519531, -0.94433594, 0.105163574, -0.2355957, 2.3300781, 0.19592285, 1.5810547, -0.47607422, 2.2089844, -1.8173828, 2.25, 0.07122803, -1.3505859, 0.22558594, -1.4101562, 1.3046875, -1.6533203, 0.17004395, -2.203125, 1.5332031, 1.1669922, -1.109375, -0.5761719, 0.14794922, -0.98095703, 3.3632812, -1.5126953, 0.8286133, 1.6591797, -0.35546875, 0.02658081, -0.7524414, 0.57373047, -0.7866211, 1.4453125, -0.33251953, 2.6894531, 1.2109375, -0.6489258, 0.30029297, 0.8276367, 1.1816406, 0.55371094, 1.9794922, -0.80322266, 1.5175781, 0.25219727, -0.9272461, 0.5126953, -0.6015625, 0.14123535, -1.4169922, -0.9140625, -1.1767578, -1.5039062, 0.55126953, 0.6303711, -1.5048828, 0.8076172, 2.6523438, 0.15368652, -0.24951172, -1.8662109, -1.5234375, -0.3701172, -1.5585938, -0.94433594, -0.3059082, 1.5039062, 0.31347656, 0.8540039, 0.5336914, 0.29052734, -0.3557129, -1.8847656, -1.5029297, 0.8984375, 2.1230469, -0.57373047, 0.84228516, 0.101379395, -0.34960938, -0.6845703, 2.0019531, 1.1484375, 1.0449219, -1.4003906, -0.6777344, -1.8603516, 1.0605469, 0.5463867, 2.9804688, 1.3710938, -0.52685547, 1.6582031, -2.2246094, -2.7792969, -2.2578125, -2.0742188, 0.6748047, -0.42333984, -0.89453125, 0.13085938, 2.4863281, 1.9511719, 1.2705078, 0.37719727, 0.51171875, 0.088378906, 1.7099609, 1.5810547, 1.0019531, 0.5161133, 1.0644531, 0.20263672, 1.3496094, 0.28857422, -0.08795166, 2.1542969, 0.7504883, -0.15332031, -3.0996094, 0.28442383, -1.7255859, -0.66064453, 0.023345947, -0.48583984, 0.9658203, 1.1904297, -1.7822266, -4.40625, -0.89990234]}, "B07VW6QZF5": {"id": "B07VW6QZF5", "original": "Brand: GQC\nName: GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)\nDescription: \nFeatures: \u3010Healthy and Safe Choice\u3011These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture.\n\u3010High Temperature Resistance\u3011Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500\u2109, won't burn or shrink, go through microwave quite well\n\u3010A Good helper to BBQ & Baking\u3011Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg.\n\u3010Secret to Save Money\u3011Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities\n\u3010No Mess, Easy to Clean\u3011Dishwasher safe means clean-up is a breeze! Don't waste anymore time scraping the \"crud\" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!\n", "embedding": [0.30029297, 0.4633789, 0.35839844, -0.5600586, 0.49365234, -0.8256836, 1.40625, -0.88720703, -0.08557129, 2.1289062, 0.1295166, -1.0703125, 0.7524414, -3.5898438, 2.2519531, -0.27978516, 0.9741211, 2.4648438, 2.2753906, 0.9370117, 0.77197266, 0.19934082, -0.40942383, -1.3769531, 0.03942871, 1.7109375, 3.1542969, -1.1044922, 0.6303711, -1.3818359, 2.4589844, 1.1601562, 0.6123047, 2.0078125, -3.6289062, -1.6455078, -1, 3.671875, -0.037994385, -0.45874023, -1.2109375, -4.03125, 1.4228516, 1.5615234, -2.7792969, 1.4013672, -0.5131836, 2.3730469, -0.086242676, -4.3828125, 1.8300781, 0.2980957, 1.9433594, -0.24438477, -2.1796875, 1.6103516, -0.94384766, -1.2167969, 0.07269287, -0.20617676, 0.67041016, -1.359375, -0.12902832, 1.5673828, -0.77197266, -2.1347656, -0.01373291, -2.6230469, 0.03955078, -2.6738281, 0.5600586, 0.29492188, -0.78515625, 0.45581055, -0.92871094, -0.011734009, -1.6113281, 0.0826416, -0.40893555, -1.578125, -0.16064453, 2.5820312, -0.041381836, -1.75, -0.75, -1.5527344, -1.6269531, -0.0446167, 1.8955078, 0.20056152, -0.4194336, 4.0625, -2.3789062, -3.3125, 0.30249023, -2.7675781, 1.0009766, -0.19726562, -0.7685547, 1.9160156, -1.9238281, -1.0546875, -0.21789551, 2.7480469, -4.015625, -3.1738281, 2.4726562, -0.5175781, -0.22937012, 0.60595703, 0.028564453, 1.03125, -0.7519531, 0.41333008, 2.265625, 1.3046875, 1.1923828, -0.26782227, 1.875, 1.2587891, 3.8046875, 1.6767578, -0.21923828, -3.6191406, 0.83203125, -0.20544434, -0.43530273, 1.0546875, 2.6074219, -3.1523438, 0.5566406, -0.45043945, -1.2363281, -1.5517578, -1.3789062, -1.7587891, -0.34423828, 0.51220703, -2.7910156, 1.5019531, -0.21032715, -0.85058594, 1.2314453, -1.4082031, -1.4863281, 0.17468262, -1.796875, 2.5820312, -1.0322266, -1.4736328, -0.24255371, -0.25756836, 2.6953125, -0.78515625, 0.92871094, -0.52685547, 0.2368164, -0.5654297, 0.7207031, 1.1621094, 0.63378906, -2.6894531, -1.0957031, 0.050445557, 1.2919922, -2.1269531, -1.625, 1.7822266, 0.28710938, 2.3769531, -0.671875, -2.0703125, 0.9433594, -0.73095703, 1.1503906, -0.9213867, -0.3137207, 3.0976562, 0.20495605, -1.2578125, -0.47851562, -3.3242188, -0.89501953, 1.6269531, -0.77197266, 0.26000977, 0.20043945, -1.3398438, 0.27319336, -1.6367188, -0.019515991, 3.0742188, 0.88916016, 0.6328125, -1.7363281, -0.6557617, -0.22619629, -2.0371094, 1.5898438, -0.9038086, -0.39794922, -0.66552734, -1.1787109, 0.109313965, -2.46875, -2.8769531, -0.55126953, 0.72314453, 2.5253906, -0.6821289, -0.15197754, -1.5390625, 1.6845703, 2.1777344, -1.0732422, -0.63427734, -0.79003906, 0.1027832, 1.0712891, 2.2675781, -1.1972656, 0.25878906, 0.05645752, 4.5429688, -2.0898438, 1.3857422, 0.16430664, 2.5703125, -0.83203125, -1.5527344, 2.3320312, 0.060668945, -0.010398865, -0.80371094, -0.3071289, 1.8115234, 1.7304688, -1.5996094, -1.1835938, -0.5996094, -1.6054688, -0.7167969, -2.7480469, -1.9345703, -0.51708984, -0.060424805, -0.28051758, 2.1308594, 2.0546875, -1.5439453, -0.014045715, 4.1289062, 0.5527344, -0.109802246, -0.7519531, 0.3474121, 0.96972656, -0.23046875, -3.1074219, -0.8442383, -3.1171875, -0.26611328, -1.265625, 1.8095703, 1.3623047, -0.22314453, 2.6699219, 0.13830566, -1.8642578, -1.1259766, 0.54248047, -1.2275391, -0.47045898, -0.48364258, 1.5390625, -0.07904053, -1.7148438, 0.6845703, 0.7651367, -1.0761719, -0.39453125, 1.5478516, 0.8227539, -0.40942383, -3.21875, 0.5292969, -2.3242188, -0.7392578, 1.6318359, -0.30029297, 2.7851562, 0.54541016, -1.8427734, 2.7382812, -0.39038086, 0.37597656, 2.0078125, 0.10058594, -2.4179688, -1.0332031, 0.7553711, 3.6230469, -1.2626953, 0.9790039, -0.89697266, 0.097351074, 2.5546875, -2.0644531, -0.7290039, 2.7753906, 1.1787109, 0.25854492, 1.3134766, 0.18835449, -2.96875, -1.8857422, 0.7207031, -1.9980469, 0.109313965, -1.5810547, 0.11029053, 0.45751953, -0.09033203, -3.3046875, -0.42626953, 2.140625, -0.16235352, -0.69873047, 0.1394043, 0.3881836, 1.2382812, -1.8291016, 0.9848633, -0.2541504, -2.2519531, -1.4599609, -1.3564453, -1.0761719, -1.4355469, 0.4255371, -1.1933594, 0.027923584, -1.546875, 0.11816406, -1.3339844, -2.3007812, -2.7792969, -0.9663086, 0.21496582, 0.72753906, 0.7607422, 0.73876953, 0.38378906, -3.9550781, 1.2431641, 1.1699219, 0.38012695, 1.4345703, -1.9804688, -0.26123047, 0.97021484, 0.34692383, 0.734375, -0.116760254, -0.012641907, 1.2382812, -3.4335938, -3.2988281, 0.5859375, -1.4169922, 0.35180664, -0.3984375, -0.9003906, -1.3554688, -0.13977051, -1.4658203, 1.0742188, 3.7402344, -0.13671875, 1.2197266, -1.0888672, -0.5776367, 1.1308594, 0.28979492, -0.546875, -2.2871094, 0.121032715, -2.0078125, -2.0625, -1.859375, -1.1513672, -0.66308594, 0.08483887, -0.08337402, 2.6425781, 0.8574219, 4.6640625, -2.6210938, -0.07989502, 0.019256592, 1.0830078, -2.0507812, 0.04763794, -0.5371094, -1.2910156, -1.2822266, -3.3339844, -1.2392578, 1.2226562, -0.8696289, 1.0244141, 1.1757812, 0.37353516, -0.21289062, 0.7426758, -1.2167969, 0.7080078, -1.5869141, -0.9609375, 0.63720703, 0.8222656, -3.1464844, -1.5078125, -1.2695312, 3.5371094, 0.105773926, 0.88720703, 1.9023438, 0.40771484, 2.7851562, 1.9101562, 0.63378906, -0.6010742, 1.8037109, -0.30395508, -0.9316406, -2.6230469, 1.5458984, 0.66845703, -1.5185547, 0.45703125, 1.1621094, 1.328125, 0.7675781, 0.5566406, 0.15698242, 0.09320068, 0.08648682, 4.1640625, -0.7861328, 0.33666992, -1.1201172, -0.020187378, 0.6015625, 0.57910156, 3.0078125, 1.6826172, 1.0888672, 0.53759766, 1.2626953, -1.5576172, -2.9824219, 0.52734375, 1.7021484, 0.9604492, -1.1074219, 2.75, -0.18615723, 0.36279297, 5.0742188, -1.1669922, -0.42089844, -2.015625, -0.52978516, 0.89501953, -0.054870605, -0.3486328, -1.4433594, -2.0917969, -0.8178711, -2.9121094, 0.80615234, -2.3476562, -1.7558594, 1.4980469, -1.8574219, -3.9882812, 0.96777344, 3.1738281, -0.9604492, -1.0673828, -1.4853516, 2.6679688, -1.8017578, -1.2910156, 0.49365234, 2.8476562, 0.65478516, 2.3535156, -0.6118164, -1.7958984, 1.7285156, -2.6054688, 1.3164062, 1.6142578, -3.0488281, -1.5107422, -1.9755859, 0.10076904, 0.15454102, -0.7631836, -0.22619629, 2.0039062, -0.9375, 1.203125, -1.5859375, -0.017562866, -0.2154541, -1.7773438, 0.12390137, 0.26123047, 1.6894531, 0.32055664, -0.32958984, 3.6660156, 2.1738281, -2.0488281, 1.3212891, -2.8066406, -0.9321289, -1.0039062, -3.4902344, -0.4140625, -0.51123047, -1.2763672, 3.9433594, 0.3305664, 1.5136719, 4.2148438, -1.0488281, -1.2011719, 0.6171875, -2.7324219, -1.0996094, -0.21020508, 1.1064453, 2.9707031, 1.9023438, -0.6611328, 0.24499512, -1.2949219, -2.2148438, 0.9765625, -0.63378906, 0.8847656, 0.12915039, -2.8984375, 0.12451172, 0.64697266, 0.8022461, -1.2177734, 0.9033203, 0.5761719, 0.61279297, 3.6367188, -1.4404297, 1.2783203, 0.29614258, 0.10021973, 0.28930664, 0.47021484, -0.3010254, 1.0664062, 3.9863281, -0.47875977, -1.8837891, -0.48364258, -0.029876709, 1.6835938, -1.1484375, -1.2373047, -0.70947266, -1.40625, 0.22546387, -0.26586914, 2.3359375, 1.0048828, -0.66845703, -2.1464844, -0.76123047, -0.77734375, -2.96875, -1.6972656, -0.10772705, -0.009719849, 1.6933594, -1.1445312, -1.5966797, 1.4169922, -1.3046875, -0.09118652, -2.9394531, 2.7910156, 0.29882812, 1.5664062, 5.0976562, -4.3710938, 0.75341797, 1.0449219, -3.8867188, -0.54785156, -0.023040771, 0.3071289, -1.53125, 2.7753906, 2.3242188, -0.6484375, -1.4433594, 1.4208984, -0.21875, -1.2988281, -2.4609375, 2.4257812, -1.2587891, 0.14367676, 1.0615234, -0.38208008, 3.0214844, -0.44750977, 1.7587891, 2.390625, -1.4414062, -0.3552246, 0.69873047, 0.04626465, 0.37475586, 1.3017578, 0.42236328, 1.7363281, -1.0761719, -0.69970703, 0.119262695, 1.2080078, -2.4238281, 1.84375, -0.5576172, 1.8886719, -1.28125, -1.453125, 2.3242188, 2.8769531, -0.33276367, 1.2509766, -0.10571289, -1.5791016, 1.1201172, 1.5058594, -0.54833984, 0.44750977, -1.0820312, -1.1201172, 1.7841797, -2.0117188, -1.4980469, -0.65527344, 0.5058594, 1.1533203, 0.22912598, -0.16357422, 0.24047852, 1.8408203, -1.9580078, -1.5996094, -1.5419922, -1.421875, 0.20776367, -0.85791016, 1.6591797, -0.36523438, -0.26464844, 3.65625, -0.56933594, -1.6132812, 1.6064453, -1.4960938, 1.0761719, 0.40625, -1.0419922, -2.1738281, -0.93847656, -1.8164062, 0.21289062, 2.1132812, 0.7504883, 0.3449707, -2.3242188, 2.7382812, -3.1523438, 1.8408203, -1.9736328, -0.44921875, 4.2578125, -4.3554688, 0.19213867, -2.234375, 1.765625, 1.6123047, -0.0769043, 2.7011719, -2.2851562, -1.1357422, -0.61816406, -1.0351562, -1.6972656, -1.2714844, 1.1015625, 1.8066406, -1.4199219, -1.0341797, 0.042114258, -0.95410156, 0.30297852, 1.4365234, -0.30908203, -0.14697266, -2.0273438, -2.1445312, -2.3203125, 0.42260742, -0.29663086, 0.9448242, -1.1015625, 3.9199219, -0.9091797, -1.6757812, -1.1650391, -0.69677734, -3.609375, -0.81591797, 1.6318359, 0.5332031, 0.44848633, -0.0076942444, -0.5366211, -1.0009766, 4.2226562, 0.3569336, -0.13232422, 2.0507812, 0.49243164, -0.91845703, -1.1884766, -3.4570312, 0.6044922, -3.96875, 0.4560547, 0.33447266, -3.6542969, 0.45874023, 2.6347656, -1.7646484, -0.20214844, 0.10369873, 1.6464844, 0.7871094, 1.0722656, -1.1171875, 0.041259766, -2.6132812, -3.171875, 0.11212158, -1.1113281, -1.5966797, -1.1757812, 0.5908203, 2.4023438, 0.2626953, 1.6494141, 1.1289062, 0.8256836, -1.2568359, 1.6240234, 0.47070312, 0.09509277, 0.33203125, 0.32006836, -1.3359375, -2.6660156, 2.6835938, 0.5390625, 0.7006836, 1.6328125, -1.7246094, -2.1523438, -1.0947266, -0.62158203, 0.63183594, 2.8828125, 1.3955078, 0.3996582, 0.47265625, 0.65185547, -2.7421875, 1.3212891, 1.7705078, 2.7988281, -1.3007812, 4.703125, -0.5185547, -4.09375, 1.4238281, -0.2097168, -0.37524414, -0.76123047, -0.91796875, 0.3894043, -1.5478516, -1.1972656, -0.4831543, 0.34106445, -2.4765625, 1.9228516, -0.6044922, 0.9716797, -0.43530273, 2.4765625, 0.74072266, 2.2128906, 3.7382812, -0.5332031, -1.0976562, -0.9482422, -1.0224609, -0.040161133, 1.6601562, -0.55126953, -1.1982422, 0.23461914, -0.94433594, -0.48657227, 0.69628906, -0.14465332, 1.46875, 1.4130859, 1.7060547, 4.5429688, 1.8212891, 2.2382812, 1.4628906, 2.7421875, 2.0820312, 1.4033203, 0.66015625, 3.2207031, 1.8476562, 1.0546875, -1.4853516, 2.4101562, 1.2724609, -0.027145386, 0.55810547, 0.43725586, -0.43530273, -1.5078125, 1.5410156, 0.52246094, 0.7861328, 0.5439453, 0.4897461, -2.4648438, -1.2705078, -1.7324219, -0.072753906, 3.984375, -0.33618164, 1.0732422, 1.9140625, 1.8759766, 2.5820312, -2.9375, 0.23388672, 1.6640625, -0.010421753, -0.13134766, 2.2304688, -0.30200195, 1.3408203, 1.2763672, 1.2705078, 0.68115234, 1.1923828, 1.1884766, 0.81591797, 1.4335938, -1.4648438, 2.1230469, -1.7783203, -1.4287109, -0.43579102, -0.6689453, -0.703125, -1.9814453, -0.17993164, 1.359375, 1.9208984, 0.97265625, -4.125, -0.15319824, 0.8676758, 2.2910156, -3.4746094, 0.4033203, 0.104003906, -4.3085938, -1.4023438, 1.765625, 0.77978516, 2.6855469, 1.3310547, -2.3652344, 1.3964844, 0.8496094, 1.3994141, 1.2421875, 0.49902344, -1.3603516, 1.8955078, 0.3239746, 4.0703125, 1.6894531, 1.8808594, 0.69189453, 0.79345703, 2.4824219, 1.6123047, 0.7011719, 1.4414062, -0.27246094, -0.6582031, 0.76123047, -0.8154297, -1.28125, -1.7236328, -2.3554688, -0.7084961, -0.5932617, -2.5488281, 0.16369629, 0.2763672, 0.7607422, 0.67626953, 0.44433594, -1.984375, 1.9345703, 1.8828125, -1.1308594, 0.40014648, -1.1025391, -0.0132751465, -2.1796875, -1.4980469, 1.8398438, -0.0262146, 0.7060547, -1.0175781, -0.23742676, 0.8330078, 0.010528564, 0.5073242, 1.5859375, -2.9648438, -1.1455078, 1.0693359, -1.5009766, 1.8076172, 1.8974609, -0.99609375, -0.7866211, 0.11608887, -2.7421875, -1.5517578, -0.34570312, -1.7490234, 0.69628906, 3.6289062, 2.4960938, 0.33081055, -1.6835938, -1.3291016, 2.0136719, -0.3720703, 2.1328125, -0.07977295, -0.72802734, 1.1796875, -1.8164062, 2.5097656, -0.4074707, -2.2324219, -1.0214844, -0.30078125, 0.3564453, -1.7382812, 1.5878906, 1.1171875, 0.45117188, -0.3918457, 2.7539062, 3.5820312, -0.5878906, 2.7011719, 1.9726562, 0.8486328, -1.9423828, 0.51220703, -0.6015625, 1.9492188, 2.1660156, -0.3894043, -0.06707764, -0.47875977, -0.8725586, -2.4648438, -0.79003906]}, "B081J6T3BZ": {"id": "B081J6T3BZ", "original": "Brand: ThermoPro\nName: ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat\nDescription: \nFeatures: 4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill\u2019s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe\n500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard\nStandalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance\nOptimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of \u00b11.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required\nSmart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat\n", "embedding": [-4.2851562, 1.3417969, 4.0429688, 1.4638672, -0.6875, 0.92871094, -0.33813477, 0.97558594, -0.31835938, 0.8339844, 0.8984375, 0.35913086, 0.05505371, -1.1152344, 0.60595703, 0.5986328, -0.45654297, -0.022415161, 1.7509766, 3.1289062, 0.7836914, 1.0341797, -0.6376953, -0.94628906, 1.5234375, -1.1064453, 2.1953125, -1.9316406, -0.5151367, -1.5683594, 2.2480469, 3.0898438, 0.93066406, -0.13256836, -0.89404297, -1.3964844, -1.0136719, -0.5683594, 1.6103516, -0.18029785, -0.35668945, 1.6445312, 1.1767578, 1.6484375, -2.9921875, -2.2558594, -0.8261719, 2.7832031, -1.2880859, 0.117370605, 0.1607666, 1.4912109, -1.7685547, -0.11413574, 0.76904297, 0.2290039, 0.5463867, -2.453125, 0.41357422, 0.75, 1.0751953, 0.2277832, -1.8476562, -0.09863281, 1.6513672, 0.15686035, 1.4316406, -3.6171875, -0.2631836, -0.46264648, 0.4453125, 1.4111328, 0.33325195, 0.62939453, 1.1455078, -1.2783203, -1.6933594, -0.1427002, 1.6103516, 0.41992188, -0.6660156, 2.7285156, -0.81933594, -1.4960938, 0.90185547, -1.9033203, -0.7788086, 0.9189453, 2.421875, -0.28027344, -1.0673828, 3.0917969, -1.9150391, -3.2011719, 2.0273438, -1.1767578, -1.3369141, -0.39624023, -1.3261719, 2.2109375, -0.05203247, -1.8486328, 0.68359375, 1.7021484, -2.21875, -2.3476562, 1.6347656, 1.2441406, -3.4648438, -1.2763672, -1.9248047, 1.390625, -0.5957031, 0.8066406, -1.1621094, -0.41357422, -0.22473145, 0.25195312, -0.48217773, 1.4228516, 2.8652344, -1.2597656, 0.49609375, 0.55615234, -0.45947266, 0.9790039, 1.7998047, 0.0647583, 1.6025391, 0.7182617, -2.3105469, -1.0966797, -0.06726074, -0.93359375, 2.4628906, -2.2617188, -2.2617188, -1.9960938, -2.3164062, -1.2929688, -1.9091797, 0.4465332, 0.06518555, 1.5039062, -1.8994141, -1.3896484, 0.72265625, 0.3022461, 1.5234375, -0.64404297, 1.4902344, -1.6865234, 0.35327148, -0.22473145, 1.8408203, 0.8642578, -0.31225586, 0.21569824, 3.3242188, 1.0693359, 0.8095703, -1.5039062, -1.2324219, 0.33911133, 1.3847656, -0.1640625, -2.9140625, 1.7978516, 1.8095703, 2.4609375, 1.7070312, -1.2958984, 0.9482422, -0.2043457, -0.032806396, -3.2128906, 2.7890625, 2.2402344, 0.2253418, 1.2441406, -0.38330078, -1.1054688, 0.7548828, 1.1591797, -1.1367188, -2.2363281, -1.1298828, 1.0546875, 2.5917969, -2.8632812, 2.4726562, 1.9677734, 1.2363281, 0.72558594, 0.20251465, -0.099365234, -0.62939453, -2.46875, 0.045288086, 0.57666016, -1.1552734, 0.68847656, -1.5351562, -2.0976562, -1.4873047, -1.7382812, 0.1262207, 0.93066406, 0.58740234, 2.0117188, -0.030090332, -2.4785156, 0.49780273, -0.94189453, 0.29663086, -2.7890625, 1.5976562, 0.7084961, -0.11090088, 1.7841797, -0.90527344, 0.85498047, 0.44750977, 2.6308594, -1.3808594, 2.8378906, -2.1953125, 1.2998047, -0.80810547, -1.8701172, 3.1230469, -1.078125, 0.99072266, -1.796875, -0.21826172, 1.703125, 1.4589844, -1.6279297, -0.4050293, 0.8979492, -0.09954834, -1.6347656, -0.56640625, -2.0839844, -1.5839844, -1.7070312, -1.3154297, 2.953125, 2.0664062, -0.3095703, 1.0361328, 0.58935547, 0.3798828, 0.2993164, -0.8046875, -0.4296875, -1.2861328, 1.6640625, -3.7792969, -0.8208008, 2.4121094, 0.24243164, -1.3662109, 1.7197266, 2.4628906, 0.6777344, 5.0859375, 2.765625, -0.25341797, -1.2275391, -0.17773438, -0.7285156, -1.6230469, 0.44702148, 1.8925781, 0.25463867, 0.55615234, 0.47338867, 1.1845703, -2.5722656, 0.01486969, 1.9003906, -1.0263672, -0.2993164, 0.8725586, 0.27197266, -1.3417969, -1.9580078, -0.39013672, 1.4130859, 2.9882812, 0.7553711, -2.5625, 2.0117188, -3.1035156, 1.2988281, -0.18103027, -0.42578125, 1.8007812, -2.4570312, 2.0371094, 0.36767578, -2.1835938, -0.7841797, 0.8466797, 0.5625, 1.3603516, -1.2871094, 1.8574219, 0.50683594, 1.3330078, -1.5703125, -2.71875, 0.34545898, -1.3105469, -3.5605469, 0.14013672, -1.7158203, 1.1005859, -0.71972656, 1.2929688, 1.8447266, 1.8652344, -1.5683594, 0.4868164, 2.4492188, 0.29589844, 1.171875, 1.328125, -0.17895508, 1.5976562, -2.0839844, 1.0732422, -0.94628906, -2.9570312, 0.3828125, -0.56103516, -2.2441406, 1.5126953, 0.39624023, -2.59375, 2.5957031, -1.4804688, -0.003818512, -1.0908203, -2.6269531, -0.24389648, -0.6777344, -0.7084961, -0.41430664, 0.53222656, 0.35864258, -0.06951904, -2.1757812, 1.4990234, 0.5761719, -1.0517578, -0.3178711, -2.3203125, 0.97558594, -1.8486328, -0.2788086, -0.38134766, 1.3212891, 0.5415039, -1.8134766, 1.7636719, -0.74316406, -0.4453125, -2.6855469, 0.30297852, -2.0917969, -0.46118164, -1.9443359, 0.19274902, 1.1064453, 0.3857422, 1.0019531, -1.2558594, 4.1445312, -2.6855469, 1.3212891, 1.984375, 1.5058594, -1.6279297, -2.0488281, -0.43237305, -2.2246094, -0.74853516, -3.5742188, 0.22583008, 0.08258057, 2.2519531, -0.07458496, 0.070007324, -1.4638672, 0.8496094, -1.9101562, -2.5664062, -0.5546875, 1.3535156, -1.5351562, -1.1171875, -2.2441406, -0.40649414, -1.4775391, -2.1210938, 1.0791016, 1.6103516, 0.6821289, 3.5097656, 1.7441406, 0.23034668, -1.0195312, 0.21142578, -4.1484375, 0.22460938, -0.002828598, -2.9609375, 0.036712646, -0.09802246, -0.9082031, 2.2285156, 0.19384766, 3.78125, 1.2851562, 4.1445312, 0.013656616, -0.06414795, 2, 2.0117188, -0.52734375, -0.06121826, 1.5029297, 1.3007812, -3.6367188, -1.7412109, -0.09979248, 1.0136719, -1.9970703, -2.5175781, 0.30908203, 2.2109375, 3.6894531, 1.0585938, -1.2470703, -0.78759766, -1.9453125, 1.6064453, -0.8027344, -1.1630859, -1.4736328, -0.28173828, 0.8691406, 1.6201172, 0.10498047, 3.5917969, -0.47973633, 2.4921875, 0.21679688, 0.7373047, -1.9912109, -1.6777344, 0.024398804, 1.1513672, 1.5263672, 1.4785156, 0.8725586, -0.88671875, 0.8066406, 0.45263672, 1.1132812, -1.8613281, -0.8178711, 0.79248047, 0.3527832, 0.46679688, 0.82958984, -0.15698242, -1.4814453, -2.0390625, -1.2685547, 0.37597656, -0.63134766, 2.0234375, -0.45166016, -1.3710938, -2.2402344, 1.1992188, -0.029876709, -0.051635742, -0.9970703, 0.7788086, -2.15625, -1.4335938, 1.1201172, 1.1035156, -0.28222656, -0.9609375, -0.48706055, 0.5004883, -1.0039062, -1.1591797, 0.63671875, 1.4970703, -2.4882812, -2.1914062, -0.060516357, 2.4121094, 1.5527344, 0.32177734, -0.023376465, -0.11828613, 0.24401855, -1.2626953, -4.1132812, 0.49047852, 0.8828125, -2.03125, 1.6582031, 0.33276367, 2.5839844, 0.9794922, -1.3652344, 1.2539062, 0.76660156, -2.2109375, 0.2578125, -3.6015625, -1.2226562, -2.8964844, -3.7246094, 1.7392578, -0.23181152, 2.1386719, 1.7773438, 0.47875977, 0.8930664, 2.3183594, 1.9355469, -1.5390625, -1.6679688, -1.0751953, -1.3808594, 0.2475586, -0.95751953, 6.21875, 0.9238281, -0.8208008, -1.3085938, -0.9375, 0.33032227, 1.8164062, 1.2578125, 0.69921875, -0.18591309, -0.029037476, -0.40722656, -0.1616211, -0.33813477, 0.5288086, -1.6767578, 0.50683594, -0.45874023, 0.92041016, -1.8837891, 1.1210938, -3.0332031, 1.6816406, -0.7529297, -0.010307312, -0.65185547, 1.7519531, 2.3398438, 0.07989502, -1.0488281, -0.8881836, -1.3183594, 1.4443359, 0.5175781, -1.3496094, 0.2607422, -3.4003906, -1.1982422, -0.9404297, -0.7885742, 0.85302734, 2.3789062, -3.1425781, -0.7758789, 0.15515137, -0.69628906, -2.515625, -1.8710938, -1.6640625, -0.8457031, 0.93847656, 1.5488281, 1.0371094, -1.4785156, -0.36450195, -3.3339844, 2.5859375, 3.0371094, 1.3964844, 3.2792969, 0.5229492, -0.98828125, -0.6455078, -1.0380859, -1.0732422, -0.6303711, 1.3183594, 0.097229004, 0.35327148, 1.6005859, -1.1328125, -1.6708984, 1.1347656, 0.43530273, 1.2783203, 0.17749023, 1.1035156, -1.4042969, 1.3007812, 4.546875, 0.039764404, 4.5117188, -0.4345703, 2.546875, 0.31469727, -1.0927734, 0.6152344, 0.3425293, -0.08453369, 1.2451172, -0.37353516, -0.24804688, 2.9628906, -1.6386719, 0.23400879, 0.2758789, -0.010223389, 0.6347656, 2.390625, 0.48779297, 0.890625, -2.3261719, -1.7255859, 2.9667969, 1.9707031, 0.35864258, 4.5, -0.4855957, -1.4033203, -0.14819336, 2.59375, -1.609375, 1.9169922, -1.4423828, -2.2148438, 0.79345703, -0.40649414, -3.2519531, 0.72558594, 4.0234375, -0.27270508, 2.3535156, -1.8164062, -1.1845703, 2.2148438, -3.5175781, -0.4296875, 0.4104004, -1.0439453, 2.9101562, -0.7338867, -1.7441406, -1.3798828, 2.6894531, 1.6894531, -2.1210938, -1.6611328, -0.22351074, -3.8046875, -1.6699219, 0.38964844, -1.9902344, -3.9277344, -0.15270996, 0.3942871, 0.11291504, -1.28125, 0.375, 1.6494141, -0.5332031, -0.30395508, -0.6323242, 2.8789062, -1.3076172, -0.41674805, 0.59472656, 1.0976562, -0.86279297, 0.6928711, 0.03527832, -1.2861328, 1.5849609, 1.5029297, -0.19763184, -0.66748047, -0.13134766, -2.2109375, -3.3671875, -1.7265625, 0.89697266, 1.7324219, -0.79541016, -0.11553955, -0.71484375, -1.0771484, -0.54248047, -0.58691406, 0.6069336, 0.72753906, -0.74072266, 0.7519531, -2.0507812, 0.41430664, -0.9350586, 1.9345703, 0.86083984, 1.6933594, -1.3847656, -2.046875, -1.265625, -0.5136719, -2.3105469, -2.5664062, 2.0136719, 1.8623047, -2.7929688, 1.0742188, 0.41235352, -2.0878906, 2.8203125, -0.9350586, 0.0262146, 0.0579834, 0.16552734, 1.7421875, -2.6445312, 1.5966797, 0.7338867, -1.3388672, 1.7685547, 0.8173828, -2.8261719, 0.96240234, -0.1694336, -3.1992188, -1.7539062, -1.1240234, -0.28857422, 0.18334961, 0.46533203, -0.7211914, 1.7412109, -2.4296875, -5.3789062, -0.3059082, -1.1103516, 0.6254883, -1.6289062, -0.006778717, 2.6757812, -0.93066406, 1.4677734, 0.33325195, 1.1347656, -2.7109375, -0.54003906, 1.5517578, 1.6298828, 0.87060547, -1.1572266, -0.8486328, -2.8476562, -1.0175781, 3.2558594, -0.41430664, -2.5527344, -0.58984375, -2.8710938, -1.4482422, 1.9638672, 2.4609375, 0.07659912, -1.6191406, 1.0136719, -0.86621094, 2.3144531, -1.4541016, 0.16088867, 0.88916016, 2.9667969, -1.0175781, 3.84375, -0.40893555, -2.1660156, 0.13378906, -1.2861328, 0.28808594, 0.2142334, -1.2158203, 2.1699219, -0.33740234, 0.031555176, 1.5009766, -3.9023438, -0.9980469, 0.79052734, 2.359375, 0.10882568, -0.96435547, 3.75, 1.2607422, 0.55566406, 1.3242188, -0.93359375, 0.7583008, -0.27075195, -0.9560547, -1.5322266, 1.5927734, -1.4609375, 0.27954102, 1.4638672, 0.0015649796, -2.7675781, 2, -0.6020508, 2.5898438, 0.5317383, 2.3027344, 3.0195312, 2.3339844, 2.0800781, 0.5361328, 2.7304688, 0.4506836, -2.3144531, -0.04876709, 2.25, 0.84472656, 0.7915039, -2.3105469, 1.2451172, 0.5019531, 0.3359375, -0.00907135, 1.4873047, -0.53515625, -0.35595703, 1.4150391, 0.5053711, 0.057891846, -4.0429688, 0.17492676, -1.5517578, 1.5234375, -2.4101562, 2.9863281, 0.7626953, -1.5195312, 1.59375, -0.5029297, 0.25732422, 1.9101562, -2.5019531, 1.2373047, 1.8544922, -1.3671875, -1.4619141, 1.625, -0.58935547, 0.2668457, 3.1347656, -0.33764648, -0.16723633, 0.7211914, 1.3134766, 0.053253174, -2.5019531, -0.24438477, 2.0976562, -1.5410156, -0.19812012, 0.013763428, -0.69628906, -3.6015625, 0.123046875, 1.7646484, -0.8642578, 2.3984375, -1.0556641, -2.7246094, 1.6845703, 0.5625, -0.34326172, -0.35546875, 0.4411621, 0.6401367, 0.9160156, 2.5078125, 2.3066406, 0.43969727, 2.1484375, -2.1933594, -2.4667969, 0.21777344, -0.70214844, 1.1503906, 1.4101562, -0.26879883, -1.3798828, -0.75, 0.7324219, 3.1660156, -0.98876953, -1.234375, -2.3476562, 1.2607422, 0.21276855, 1.4052734, -0.8173828, -4.609375, -1.3007812, -0.83496094, -2.0253906, -1.5458984, -0.8745117, 0.3798828, 0.68847656, -1.5556641, 1.0214844, 0.6586914, 1.1142578, 2.0371094, 0.8354492, 3.2128906, 1.6416016, -2.4726562, 2.9238281, 2.7871094, -1.4472656, 1.3876953, -0.37890625, 1.0429688, -0.014511108, 0.51708984, -0.12072754, 0.6191406, -0.79052734, 0.4038086, 0.3100586, 1.7558594, 0.61328125, -0.43310547, 1.0185547, -1.5742188, 1.0009766, -2.0019531, -3.7089844, 0.6616211, 1.8613281, 0.82470703, -0.03729248, -0.8334961, -0.5336914, -1.2958984, 0.75683594, 0.9370117, 1.890625, 2.5273438, 1.4912109, -0.08514404, -0.077819824, -1.5, -2.25, 0.09307861, -2.0722656, 0.15710449, -0.025344849, 1.4072266, -0.8935547, 1.3027344, 0.5239258, -0.9423828, -0.71728516, -2.2734375, -0.32958984, -1.5976562, 1.9003906, -0.7285156, 0.5698242, -0.27075195, 0.7866211, 1.1796875, 1.8710938, 3.0703125, 1.9130859, 1.0683594, -1.9736328, -1.7089844, 3.2148438, 2.53125, -0.38134766, 1.8408203, 0.12011719, -0.5463867, -0.6713867, -1.4863281, -0.43310547]}, "B07N24FPJ1": {"id": "B07N24FPJ1", "original": "Brand: Home State Texas Shirts\nName: Home State Texas Gift T-Shirt Men And Women\nDescription: \nFeatures: Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more\nWear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.15466309, 3.3242188, -0.60058594, 0.16967773, -0.21435547, 0.4975586, 1.4960938, -0.9604492, 3.0410156, -1.5683594, -0.7104492, 0.35668945, -0.28588867, -3.3242188, -0.22436523, 0.27392578, 3.6308594, 2.703125, 0.5566406, -0.086364746, -0.31469727, -1.2724609, 1.0214844, -1.6064453, 1.2822266, 1.4648438, 3.3476562, -1.1748047, -0.26342773, 0.42285156, 1.9746094, 1.5976562, 0.67871094, 4.2304688, 0.54785156, 0.8901367, -0.99072266, -2.2148438, -1.2138672, 0.38305664, -0.9091797, -2.359375, 1.8359375, 3.2089844, -1.9482422, -0.7529297, -0.57373047, 1.3916016, -3.1445312, -0.91308594, 1.2314453, 0.05130005, -1.2871094, 1.9716797, 0.6088867, -0.6645508, -2.1542969, -0.69628906, -0.8198242, 0.23474121, 1.1767578, -2.0957031, -0.93359375, -0.6254883, 1.2714844, 2.4980469, 1.0185547, -0.16833496, -2.1894531, 1.5244141, 4.3789062, -0.33129883, -3.5136719, 0.56103516, -0.46801758, 2.8417969, -0.8647461, -0.34521484, 0.5239258, -2.4589844, 3.2128906, 0.41381836, -0.84033203, 0.77734375, 0.46899414, -0.15698242, -3.5, -1.2900391, -0.453125, -0.01373291, -1.1376953, 3.0253906, -1.2753906, -4.5351562, 0.18615723, -1.9433594, 2.0507812, -0.3400879, 0.1496582, 1.1347656, -0.12371826, -0.8520508, 1.6240234, 1.3046875, -1.1015625, -0.4428711, -0.69189453, 0.57177734, -1.2294922, -0.04840088, -2.9042969, -1.3232422, -0.94921875, 1.4238281, 4.6757812, -0.48754883, 0.57958984, 0.48754883, 3.0703125, 0.31201172, -0.61083984, -3.1503906, 0.50146484, -1.390625, 1.4755859, 2.4746094, 0.3347168, 3.0117188, 0.13452148, -0.2836914, 3.3457031, 1.5771484, -1.6943359, -0.024475098, -0.9345703, -2.3144531, -0.79541016, -0.2758789, 0.5004883, 0.88916016, -0.96533203, -1.8574219, -0.020233154, 0.8666992, -1.2421875, 0.42504883, -1.2080078, 0.15979004, -0.8442383, -2.328125, -0.64453125, -1.4052734, 0.7573242, -1.2128906, 0.79296875, 1.9677734, 0.6455078, -2.0058594, 1.6777344, -0.9741211, 0.16882324, 0.8769531, 0.8251953, 0.5336914, 0.4177246, -1.9267578, -1.4814453, -2.3554688, 1.1054688, 2.2304688, -2.5546875, 0.12634277, 1.1796875, -2.953125, 0.89453125, -1.7431641, -1.3867188, 0.3034668, -0.34521484, 0.12878418, 2.2929688, -0.21105957, 1.7060547, 1.3818359, 0.6948242, -1.4453125, 0.2692871, -0.42456055, -1.4228516, -2.5546875, -0.08178711, 0.54833984, 1.2871094, 1.2919922, 1.34375, -0.3713379, -1.6318359, -1.4267578, 0.6894531, 2.5253906, 0.79052734, 1.0234375, -0.79052734, 1.2871094, 0.78808594, -3.7070312, 3.125, -0.4038086, 0.2849121, -0.3413086, 0.6015625, 0.8857422, 0.54345703, 4.8515625, -1.1240234, -1.6621094, 1.6279297, -1.3779297, 0.8364258, 2.4238281, -0.7919922, 0.96728516, -0.7001953, 2.1269531, -1.2939453, -0.07098389, 0.75146484, 1.6738281, 0.8911133, 0.43603516, 1.1591797, 3.4648438, 0.5810547, 0.6430664, 0.08123779, 2.7871094, -0.4609375, -0.5283203, -2.5195312, 1.6572266, 0.46435547, 1.2646484, -4.796875, -1.3681641, 1.9238281, 1.5107422, -1.5556641, 2.6269531, 1.9833984, 0.46899414, 0.19750977, -0.033599854, 1.6464844, 2.4433594, -1.9628906, 1.6835938, 0.68408203, -0.5488281, -2.2382812, -0.92822266, -0.45751953, 0.49316406, -2.7128906, 0.59716797, -0.28051758, 0.7915039, 3.2207031, 0.49853516, -0.91796875, -2.8242188, 1.7753906, 2.0449219, -3.3964844, -2.8945312, 1.5166016, 2.0292969, -0.24304199, -0.7861328, 1.4619141, 0.26293945, 0.5073242, 1.1328125, -1.7666016, 0.07550049, -0.92822266, 1.5322266, -2.5957031, -2.234375, -0.37158203, 2.3652344, 1.4941406, 0.5205078, 2.2597656, -0.08380127, -1.5996094, 1.2773438, -2.3730469, -1.5449219, -3.6738281, 2.4746094, 0.16357422, 0.82421875, -2.7871094, 0.7270508, -1.0458984, 1.3310547, -0.73291016, 1.6240234, -2.109375, -2.7128906, 1.6621094, -3.7558594, 0.7192383, 2.4394531, -1.1875, -1.1708984, -2.53125, -1.8710938, 1.0234375, 0.8935547, 2.4628906, 1.6464844, -0.006374359, -0.6298828, -0.3317871, 1.5371094, -2.8046875, 1.3066406, 0.84228516, 1.2246094, 0.97509766, 0.003955841, -1.71875, -1.0166016, -1.3955078, 0.14794922, -2.984375, 0.47631836, 1.0966797, -0.101745605, -1.2216797, -0.61865234, -0.71533203, 0.5678711, -0.6435547, 0.20568848, -0.042266846, 0.4243164, -0.6166992, 0.046447754, -1.1269531, -1.5722656, 0.52734375, -3.3828125, 0.030441284, -0.38720703, 0.32495117, -0.7988281, -1.4169922, -1.2441406, 0.875, 1.4931641, 1.3056641, 1.4511719, 0.82421875, 1.0341797, 1.5634766, -3.5410156, 2.2617188, -1.2177734, -1.9365234, -1.0644531, 1.1923828, -1.0751953, 0.39575195, 1.1816406, -0.16687012, 3.5957031, -1.9248047, 1.4121094, -0.8989258, 0.50683594, 0.21484375, 0.60302734, -0.28149414, -1.3251953, 1.3154297, -2.2226562, 0.37597656, -3.3496094, 2.1894531, -1.5546875, -0.27026367, 0.66748047, 1.1572266, 2.265625, -0.25878906, -0.31054688, 1.0253906, 0.50146484, 0.32885742, 2.0253906, 2.4746094, -2.3476562, 3.0546875, -1.8378906, -1.0341797, 0.32592773, 0.9584961, -0.9550781, 2.1015625, 0.9345703, 0.890625, 0.8642578, -0.82177734, -3.2304688, -1.1806641, 2.6699219, 1.0498047, -1.3876953, -0.3557129, -1.1523438, 1.2128906, 1.5009766, 1.6259766, -0.15979004, 1.7333984, 0.20922852, 2.234375, -3.2695312, 0.24597168, -1.3203125, 1.2626953, 2.9394531, -1.1728516, -1.875, -1.1181641, 2.0644531, -1.2226562, 0.07067871, -0.796875, -0.037506104, -0.73095703, 0.25341797, 0.21130371, 0.44995117, -0.93115234, 0.63916016, 1.2734375, -1.0722656, -1.2978516, -1.3603516, 0.7729492, -0.296875, -1.0195312, 0.19189453, 1.1259766, 0.046020508, 3.0996094, -1.6699219, -0.24353027, -1.0009766, 1.9931641, 2.1621094, 1.1298828, 0.7709961, 0.17016602, 0.6870117, -0.25805664, 1.5009766, -0.3449707, 2.0546875, -1.0322266, -1.0888672, 3.1445312, -2.6015625, -0.86279297, 1.4580078, -1.7871094, 2.7304688, -2.140625, -1.3701172, 0.23571777, -2.0292969, 1.9648438, -1.1572266, -1.9335938, -1.7675781, 0.00075387955, -3.1445312, -1.0283203, -1.1738281, -1.1816406, -1.8955078, 1.0419922, 0.1875, 1.9658203, -1.4873047, 0.79541016, -1.2158203, -0.9951172, 0.72509766, -0.8798828, 1.4248047, 1.5146484, -1.4375, -3.4628906, 0.56103516, 0.8208008, 1.9580078, -1.6943359, -1.5947266, 2.65625, 1.3808594, 1.7246094, -1.6943359, 1.3496094, 1.8017578, -2.4667969, -0.8876953, 2.484375, -2.7226562, -2.7675781, -0.5185547, 3.8945312, -0.14477539, -2.359375, 3.2285156, -0.14160156, 3.2441406, 0.8886719, -2.8398438, -2.453125, 1.2421875, -0.9082031, 2.4199219, 0.19445801, 1.2421875, 3.1308594, -0.22167969, 1.2441406, 0.35180664, -0.62060547, -0.56591797, -1.4746094, -2.1289062, -0.031158447, 1.2685547, -0.29956055, -1.5839844, -2.8867188, -2.8945312, 0.71484375, 1.0390625, -1.3300781, 1.2324219, -3.4003906, -0.3449707, -0.54052734, -0.4868164, 0.26708984, -2.0859375, -1.1367188, -0.29882812, 1.8681641, 1.5185547, 1.5419922, 0.18566895, 1.6191406, -0.16503906, -0.38891602, 0.49316406, 1.4697266, -0.88427734, -0.30371094, -1.4521484, 0.6557617, -2.5820312, 0.6352539, -1.3808594, 1.9580078, -1.1123047, -0.99658203, 0.47583008, 0.16601562, 2.1035156, 1.7373047, 1.9716797, -2.1445312, 2.3730469, -0.32348633, 0.9082031, -0.51660156, -2.7011719, 0.14611816, 1.9335938, 2.140625, -0.42260742, -1.0947266, -0.49853516, 1.9794922, 0.22961426, 0.8989258, 0.9013672, -0.55615234, 1.1748047, -0.16223145, -1.5, -0.016540527, 0.9658203, 0.25146484, 1.3378906, -0.020889282, -0.6303711, 0.13098145, -0.08947754, 0.9355469, -1.6464844, -1.9345703, -0.075805664, 0.77978516, -2.015625, -1.3046875, 0.20092773, 0.16235352, 0.052215576, -1.78125, 4.1875, -1.0527344, 0.17480469, 3.9511719, 0.44384766, -1.8369141, 0.41430664, 1.1923828, 1.5126953, 0.7866211, 0.35498047, 0.55615234, -2.5566406, -0.36254883, 1.4482422, 1.53125, 0.06768799, 1.71875, 0.53125, 0.5283203, 2.4101562, -2.2832031, 0.41577148, 2.1308594, -1.4101562, 1.6601562, 2.1503906, -3.7773438, 1.625, 2.359375, -3.0488281, -0.6044922, -2.0195312, 1.7421875, 1.0986328, 0.21020508, -2.3320312, 0.30200195, 1.3310547, 1.2421875, 0.8540039, 1.3876953, -0.72509766, -0.77734375, 0.41235352, -1.3447266, 0.21911621, -2.6210938, 2.2558594, -0.6743164, 0.5024414, -2.8769531, 0.2097168, 1.0410156, -1.1015625, 1.0078125, -2.0429688, 0.23962402, -1.3076172, -3.3632812, -0.61328125, 0.36547852, -2.859375, 1.2089844, 0.03555298, -1.7910156, 2.0839844, -0.48242188, -3.7089844, 2.4394531, -2.4511719, 0.29760742, -1.2353516, 1.0996094, 4.3164062, -2.6445312, 1.8955078, -2.4511719, -1.5625, 0.5854492, -4.3125, -0.1895752, -1.9003906, -0.4038086, 0.7397461, -2.4277344, -1.2041016, -0.46679688, -0.06149292, 3.453125, 0.103149414, -3.234375, 2.8867188, -0.60058594, -0.46899414, 1.0830078, 0.08465576, 0.38134766, 1.7226562, -1.2138672, 0.16699219, -1.7607422, 0.3154297, -0.7084961, 0.86621094, -0.34228516, 0.8144531, -0.7036133, -4.2539062, -4.1835938, -4.2148438, 0.43310547, -0.12420654, 0.15124512, 1.6103516, 1.5371094, 1.6386719, 1.0576172, 0.96728516, 0.39404297, -0.4609375, -0.6479492, -1.7158203, 0.2614746, -2, 0.51171875, 2.296875, -1.5351562, 2.6582031, 1.0458984, 0.75146484, 0.20483398, 2.7871094, -2.2753906, 2.2753906, 1.2734375, -0.43408203, 0.21862793, 1.6279297, 0.8017578, -1.84375, -2.1269531, -0.92822266, -0.6875, -2.546875, -1.0078125, 0.99609375, 1.8222656, 1.5136719, 0.29077148, 1.9902344, 2.1347656, 1.9472656, -1.2470703, -1.3828125, -1.3330078, 1.0683594, -0.54003906, 0.7373047, -2.6835938, -0.4946289, 2.2148438, -0.15905762, -0.8588867, -0.12634277, -2.7910156, -0.89697266, -2.9375, -0.4243164, 1.1572266, 1.3876953, 1.7158203, 0.44848633, 2.25, 0.86816406, -0.11456299, -0.47485352, -0.77441406, 3.4628906, -1.3095703, 3.2128906, 1.2617188, 0.69677734, -2.9023438, 1.2734375, -2.4355469, 1.5097656, -1.1171875, -0.2734375, -1.3515625, 0.052703857, -0.37426758, -1.6972656, 0.47216797, -0.24865723, 0.2854004, 0.9667969, -0.12878418, 1.1982422, -1.8935547, -0.9345703, -0.7470703, -1.7421875, -2.8105469, -1.9414062, 0.42260742, -0.38354492, 2.3769531, 1.1914062, 1.2070312, -0.36254883, -1.0009766, 1.7988281, -0.22363281, -1.0654297, 1.1972656, 1.9658203, 2.1132812, 1.0166016, 3.8125, 1.1064453, -0.3713379, 2.5253906, -1.1542969, 0.46850586, -0.19482422, 1.1884766, -0.8095703, 1.1210938, -1.9824219, 1.9677734, 0.42504883, -0.5209961, -0.20275879, -0.27197266, -0.390625, -0.19934082, 1.3037109, -0.23779297, 2.8828125, -2.0390625, 1.2685547, -1.7636719, -2.140625, -0.21606445, -1.8505859, 1.875, -1.1992188, 0.5341797, -1.7353516, 0.76220703, 0.9404297, -2.6875, -0.8300781, 2.5917969, -1.6621094, 0.10852051, 1.2099609, 3.5273438, -1.3994141, 1.6533203, -1.9414062, -0.30786133, 1.8505859, -0.45458984, -1.6191406, 0.27490234, 0.8676758, 0.3095703, 0.9970703, -2.6367188, -0.061187744, -1.1660156, 2.7246094, -1.6044922, 1.3808594, 0.16186523, 0.5263672, -1.1660156, -3.7304688, -0.21105957, 3.0292969, 1.4228516, 0.77441406, 0.81640625, 3.5605469, -2.46875, 1.8789062, 0.33154297, 0.5776367, 1.0898438, -1.6142578, -1.4941406, -1.7880859, -0.74365234, 1.9785156, 2.4394531, 1.3701172, -1.2871094, 2.15625, 1.0068359, -0.09399414, -0.47729492, -4.5195312, 1.8232422, -0.5888672, 0.13903809, 1.8046875, 1.7919922, -1.7851562, -0.39257812, -1.2490234, -0.060150146, -1.7314453, 0.5786133, -1.9541016, 0.77978516, 0.43676758, -3.0195312, 0.5283203, -1.1679688, 3.0878906, 2.1132812, 2.6269531, 2.2539062, -3.5292969, -0.8833008, -1.7841797, -0.047729492, 1.4003906, -1.0927734, 1.8447266, -1.6640625, -2.2988281, -1.7578125, 2.5585938, 1.5878906, -0.4885254, -1.7607422, -0.9199219, 1.2216797, 0.40014648, 1.5478516, 0.1270752, -0.78808594, 1.6152344, 0.20471191, 0.109191895, 0.59277344, 2.1230469, -4.140625, -0.35424805, -1.4853516, -2.2871094, 2.4921875, 0.43896484, 0.082214355, 1.1640625, 0.37329102, -1.3857422, -1.7373047, -1.9404297, 2.8320312, -1.7958984, -0.35180664, -0.47753906, -0.023483276, -0.18591309, 0.21008301, 0.7832031, -0.58984375, -1.1503906, 1.5839844, -0.7207031, -0.45043945, -0.7626953, 0.9916992, -1.2509766, -4.28125, 0.31982422, 1.6630859, -0.0064315796, 1.7988281, 1.2236328, 0.11853027, 2.9394531, 0.7060547, 0.022018433, 1.6240234, -0.1932373, -1.4746094, -2.5546875, 3.1503906, 3.3320312, 0.19799805, -1.8330078, -1.0527344]}, "B07FSJ3FNJ": {"id": "B07FSJ3FNJ", "original": "Brand: HERSENT\nName: 20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches\nDescription:
          Product Features:
          Size: 12.5 x 12.5 x 24 inches.
          Material: Heavy Duty Polyester UV coated nano environmental protection materials.
          Durable, scratch resistant polyester with UV protection all year round.
          Easy to Clean: Low Circle Machine Wash & Handwash.
          Upgrade Your Patio or Garden D\u00e9cor.
          SHIPMENT TIME

          1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
          2.The normal arrival time of Dispatched from Seller is between 10-15 days
          3.Holiday Season Peak time maybe longer than normal delivery.\nFeatures: This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nConvenient side velcro and magic tape allows for easy set up.\nEasily clean this 20lb propane tank with damp duster or by hosing with clean water.\nPERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb.\n100% RISK FREE BUY: A necessary great father\u2019s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!\n", "embedding": [1.4082031, 2.390625, 2.6074219, 0.14416504, -0.99658203, 0.8720703, -0.25073242, -1.265625, 2.0898438, 1.2177734, 0.41552734, 0.6088867, 1.40625, -3.6699219, 1.6210938, -0.60839844, -0.4645996, 3.15625, 3.2734375, 0.11602783, 2.8613281, 1.265625, 0.0725708, -0.4802246, 0.68603516, -0.5708008, 3.5976562, -2.7167969, -1.3564453, 0.6118164, 0.62158203, 0.11425781, -0.13659668, 3.078125, -0.099243164, -2.3925781, -2.1289062, -0.22290039, -2.4726562, -2.0214844, -2.9960938, -1.5292969, 3.6484375, 0.6791992, -0.6542969, 0.035186768, -1.25, -1.7041016, 0.24987793, -1.4375, -0.25097656, -0.087890625, 2.109375, 0.7788086, -1.0498047, -0.5263672, 0.07513428, -0.9628906, 0.26635742, 1.5283203, -1.3837891, -1.5996094, -1.5673828, 1.6845703, 0.09307861, 0.3256836, -0.40112305, -1.1337891, 0.40063477, 1.9394531, 1.59375, -0.14672852, 1.4667969, -0.90478516, 1.1494141, -0.20092773, -1.8076172, 1.4345703, 1.9951172, -0.5361328, 1.3789062, 3.5703125, -1.7939453, -2.0605469, -0.90625, -1.3789062, -1.8466797, -0.75, 0.80615234, -0.7817383, -2.1523438, 2.5, -1.6757812, -4.609375, -0.64453125, -0.64501953, 2.4355469, 0.76220703, 3.3066406, 0.87402344, 0.46484375, 0.2734375, -1.2236328, 1.1152344, -1.6425781, -1.4257812, 0.7578125, -1.0615234, 0.014205933, 0.65966797, 0.32080078, -1.0732422, 0.69384766, -1.3222656, 0.08758545, -0.20117188, 0.21582031, -0.40283203, 2.8125, 0.85595703, 3.4238281, -0.80322266, 0.7895508, -0.51904297, 1.6416016, 0.87402344, -0.63720703, 1.3623047, 1.5878906, -1.6767578, 2.7734375, 0.19360352, 0.002910614, -0.7553711, -0.22229004, -0.5854492, -1.7695312, -0.99072266, -3.1640625, 0.34277344, -1.5498047, -1.2236328, 0.6489258, -0.27026367, -2.4726562, -0.14868164, -2.2675781, 1.7988281, -0.69384766, -1.8671875, 0.7861328, -1.8876953, -1, -0.7895508, 1.1083984, 0.73291016, 1.2294922, -3.4042969, 2, 3.6640625, 3.6542969, -0.6772461, -0.41918945, 1.2041016, 1.3632812, -3.6992188, 1.7353516, -0.4033203, -1.2148438, 1.4736328, 0.40820312, -1.5146484, -0.2578125, 1.5166016, -0.15625, -1.9951172, 2.390625, 1.1914062, 0.47338867, -0.28442383, -3.1269531, -0.5336914, -1.1953125, -1.1943359, -0.1821289, -0.46557617, -1.5546875, -2.1132812, -0.21643066, -0.93408203, -2.625, 0.58496094, -0.7988281, -0.33325195, -1.7050781, -3.3496094, -1.7988281, -1.8417969, 0.78759766, 2.0996094, -1.5439453, -0.71875, -1.5429688, 1.0683594, -2.1699219, -0.5629883, 1.7753906, 0.16552734, 0.7270508, 1.6972656, 0.11437988, -0.43286133, 2.6601562, -0.007347107, -1.1708984, -0.8408203, 2.3652344, 0.96777344, 0.63183594, 0.9477539, -0.34643555, 1.6386719, 0.70654297, 2.1425781, 1.0166016, 2.5878906, 0.6713867, -0.07434082, -2.1269531, -1.1083984, 0.78515625, 2.0761719, -1.234375, 1.2216797, -0.80810547, 2.0078125, -1.2792969, -0.56591797, -0.12487793, 1.3955078, 0.44213867, -0.3239746, -1.8095703, -0.72265625, 0.1776123, 2.8945312, 0.07897949, 1.28125, 1.7646484, 0.12841797, 0.31469727, -1.6386719, -0.12927246, -1.0585938, 0.23327637, 2.0410156, 1.9472656, 1.1503906, 1.0029297, -1.2910156, -0.53515625, 1.4892578, -0.93896484, 0.13647461, -0.9663086, 1.1796875, 1.0498047, -0.24731445, -2.1347656, 0.29760742, 0.34155273, 0.3269043, -0.44848633, -0.8276367, 1.7568359, -0.29589844, -1.1796875, 1.2685547, 0.16101074, 1.4833984, 1.6328125, -1.1865234, 1.7939453, -3.4785156, 1.7294922, 0.8833008, 2.2109375, 0.5493164, -2.1875, 0.19897461, 2.8066406, 0.019561768, 0.35058594, 1.9375, 2.5195312, 0.37597656, 2.2050781, -0.5444336, -0.8183594, -0.03152466, 0.36254883, -0.17272949, -0.48291016, 0.30126953, -0.10180664, -1.4599609, -0.31225586, -0.88720703, -0.33666992, 0.4885254, 0.5678711, -2.0605469, -1.1464844, -0.0007171631, -2.7929688, -1.6992188, 4.03125, -2.9101562, -0.9536133, 1.9404297, -0.6748047, 1.5107422, -1.1835938, -1.2070312, -0.037322998, 0.9501953, -2.3300781, 1.2001953, 1.0458984, 0.3173828, 0.8979492, -2.9804688, 2.0019531, -1.3769531, -0.18688965, -0.48779297, -2.7246094, -0.4909668, 0.48876953, -1.6806641, 1.0048828, -1.0986328, -1.4296875, 1.40625, 1.2167969, -0.0024108887, -0.20227051, 1.859375, -0.98828125, -1.3125, 0.3491211, 1.7011719, -1.6855469, -2.9433594, -0.5996094, 0.6713867, -1.9404297, 0.9824219, -1.6435547, -0.2166748, 0.18078613, 1.0498047, 2.4335938, -1.3564453, -0.85839844, -0.12182617, 0.66845703, -4.7421875, 0.7739258, -1.9736328, 0.8642578, -3.5078125, -0.061309814, -1.7695312, -1.0849609, 1.4365234, -0.92089844, 3.03125, 1.4052734, 0.8203125, -0.9824219, -0.70166016, 0.06512451, -0.91503906, -2.3105469, 0.8129883, 0.8457031, -2.4179688, -0.5019531, -4.5351562, -0.42504883, -2.0898438, -2.0273438, 0.84814453, -1.8886719, -1.1660156, -0.119506836, -0.45703125, -1.2792969, -1.5683594, 0.8261719, -0.019638062, -1.8935547, -0.30493164, -0.7495117, -1.3623047, 0.051116943, -2.0761719, 1.8779297, -1.0917969, 0.65625, 2.078125, -1.3623047, 2.6347656, -0.37719727, -4.3398438, 0.089416504, 3.71875, 1.1064453, 1.4306641, -0.5649414, -1.1669922, -1.2998047, 0.21386719, 1.6621094, 1.9550781, 0.9404297, 2.2734375, -0.13598633, 0.63671875, 0.54248047, 0.095947266, 0.10266113, 1.5, 2.4765625, -0.35083008, 0.53027344, 0.67626953, 2.8203125, -2.5898438, -1.8496094, 1.8056641, -0.6357422, 2.7089844, 1.4541016, -2.0332031, -0.45825195, 1.1308594, 1.9023438, -0.4597168, 1.4277344, 0.11065674, 1.1513672, 1.890625, 0.42993164, 1.2363281, 2.8027344, -0.07116699, -1.8417969, 1.5888672, 0.86572266, -1.9257812, -0.07611084, 0.9873047, -0.5605469, 0.19189453, 1.4794922, -0.8779297, 1.8222656, 1.3525391, -0.5107422, 0.7089844, -0.30249023, 0.84472656, 0.5029297, 1.1708984, -1.0800781, -1.0605469, -1.3828125, -0.6430664, -1.9492188, 1.5009766, 0.33007812, -0.18310547, 1.6015625, -3.0292969, -0.057495117, -2.0566406, 2.5273438, -0.11895752, -0.86035156, -0.3322754, 1.5283203, -3.5976562, -2.3691406, -0.2644043, -0.7519531, -1.59375, 3.4707031, 3.203125, -2.0253906, 0.13781738, -2.1953125, 2.0214844, 2.5019531, -0.20776367, -0.32006836, -0.6401367, 0.2709961, -0.9760742, -0.12036133, 1.2109375, 1.7929688, -2.7421875, -0.5727539, -0.47509766, 1.2099609, 1.7460938, 0.4572754, -0.20581055, 0.13330078, -1.1357422, 2.96875, -0.05038452, 2.2890625, 0.3227539, 0.6020508, 1.0917969, -0.21447754, 1.2050781, 0.46362305, -3.6542969, -0.19616699, -0.50634766, -1.1367188, 3.1308594, 0.025802612, 0.2553711, -0.75341797, 0.9980469, -2.9140625, -0.484375, -1.7333984, 1.6035156, -2.1210938, -1.2939453, 0.56152344, 0.09466553, -2.4589844, -1.4716797, -0.36645508, -2.3320312, -0.8046875, 0.058166504, 0.12573242, 1.1630859, -0.6567383, 0.3947754, -1.9394531, 0.5449219, -0.4008789, -0.28393555, -1.171875, -1.3525391, 3.3554688, 0.40307617, 0.37451172, 0.46655273, 3.1015625, 0.23059082, -0.9980469, -0.40185547, -0.41625977, 2.46875, -1.3740234, -2.6992188, -0.9394531, -1.2441406, 1.4121094, -0.1303711, -1.1630859, 0.29956055, -0.032928467, 0.5292969, 1.1943359, 1.5058594, 0.90771484, -0.54589844, -1.8378906, 3.0585938, 0.25268555, -0.69677734, -0.47216797, -2.3066406, -0.19543457, -0.8461914, -2, -2.8125, 0.15771484, 0.50439453, 1.5136719, -2.1914062, 2.0195312, 2.1660156, 2.2636719, 1.3330078, -1.4150391, 0.13964844, 0.93603516, 1.6865234, 1.7792969, -0.07684326, 0.60546875, 1.2753906, 0.5371094, 1.1435547, -2.7539062, -0.765625, -0.80810547, -1.2441406, -0.33935547, -0.05734253, 1.7265625, -1.28125, -1.1875, -0.50878906, -2.2324219, 4.0898438, -2.0273438, 1.1191406, 0.7910156, -1.4707031, 0.15148926, 2.3046875, 1.8173828, 0.78466797, 2.6367188, -0.8129883, -1.015625, 0.3623047, 0.9970703, 0.74658203, 1.2050781, -2.0703125, -0.31347656, -0.20092773, 1.0087891, -0.7480469, -0.23754883, 1.4111328, 3.1503906, 0.5522461, 1.9130859, 2.4960938, 0.21557617, 2.0683594, 1.0234375, 0.11621094, 0.22302246, 0.7368164, 1.5771484, 3.0234375, -1.8349609, -2.2753906, 0.96533203, 0.9482422, -0.76660156, 1.8535156, -0.4658203, -2.1445312, -0.0132751465, -2.625, -2.2460938, -0.0736084, -0.9140625, -0.89697266, -1.2451172, 2.0273438, 0.8544922, 1.9755859, 2.65625, 0.02758789, -1.6074219, 1.2070312, 1.2558594, 0.035064697, -2.3652344, -0.2866211, -3.8710938, 0.8671875, -0.51904297, -0.4440918, -0.27929688, 0.95751953, 1.6474609, -2.4804688, -0.703125, 0.01360321, 0.9946289, -2.1210938, -0.73291016, 3.0175781, 0.010604858, 0.09539795, -1.4951172, -1.3027344, -0.62353516, 2.1464844, 2.3027344, 0.9770508, -0.1295166, -0.9682617, -4.1015625, -4.6523438, -1.0791016, 0.36279297, -1.7363281, 1.0234375, -0.87597656, -1.4609375, 0.5390625, -1.3300781, 0.85546875, -1.75, 0.88671875, -0.5239258, -1.3613281, -0.86035156, -0.4375, 0.07312012, 0.6074219, -1.2001953, -1.3544922, -1.8916016, -2.2011719, -3.6503906, -0.18078613, -1.7792969, -0.05014038, 0.87597656, -0.7817383, 1.9892578, 1.0380859, 2.1933594, -0.26391602, 2.0429688, -0.56689453, -0.94091797, 1.9003906, -1.4648438, -0.32958984, 1.9082031, -0.5620117, 2.234375, 2.2714844, 1.7685547, -2.46875, 1.1054688, 1.5166016, 0.72314453, -0.44262695, 1.6162109, 2.0898438, 0.23059082, 1.2382812, 1.8232422, -0.67578125, -1.7900391, -1.4179688, -1.3574219, -0.23474121, -1.7705078, -2.1386719, -0.36767578, 0.4790039, 1.3037109, 1.0458984, 1.5634766, 1.9414062, 0.8730469, -2.1054688, 0.9638672, -2.7089844, 1.8984375, 0.93359375, -2.0605469, -3.1464844, -2.7558594, 2.9335938, 1.171875, -1.09375, 0.9873047, -0.1842041, -1.15625, 1.3720703, 0.21801758, 1.3916016, 1.0185547, 2.3027344, -1.8339844, 1.1777344, 1.84375, 0.035827637, 0.61328125, -1.2001953, 0.20361328, -1.1328125, 0.07550049, 1.4082031, -2.8710938, -1.2402344, 0.0012683868, 0.5727539, 0.13439941, -1.1083984, 0.40161133, -2.3164062, 0.05117798, -1.359375, -0.9453125, -4.6132812, 2.0136719, 0.109375, 0.1928711, 1.0585938, 1.1660156, -1.5205078, -0.39453125, 0.98535156, -0.5126953, -1.7412109, -1.2167969, -0.5961914, 0.04171753, 1.1689453, -2.9121094, 2.1328125, 0.24694824, 1.4453125, -0.91748047, 0.6489258, -0.7246094, -0.30371094, 1.9443359, 3.5273438, 3.9902344, 0.1628418, 1.4707031, -0.2619629, 1.8349609, 2.3085938, -2.203125, 0.23583984, 1.5791016, 1.7363281, 3.46875, -0.0541687, -0.16564941, 1.0185547, -0.9111328, -0.36499023, 0.8339844, 1.1064453, -2.9765625, 0.6748047, -0.2915039, 0.24194336, 1.9863281, 1.6083984, -1.9638672, -1.8759766, 0.85839844, -0.97216797, 2.4140625, -0.63916016, 1.4882812, 0.9248047, -0.6748047, 2.0175781, -0.3076172, 1.4277344, -1.4404297, -2.7558594, -0.421875, 2.5429688, 0.80908203, 2.4140625, -1.8974609, 0.050567627, -1.0966797, 1.6582031, 1.0507812, -0.18566895, 2.1679688, -1.8271484, 2.015625, 3.1113281, -1.7001953, -1.1865234, 0.609375, 0.81103516, -4.296875, 0.12695312, 0.74902344, 1.1787109, -0.8876953, -3.5625, -1.0146484, -2.2285156, -0.11151123, -3.203125, -1.3935547, -1.0820312, -3.8710938, 0.095825195, 0.7910156, -1.9101562, 3.4902344, -0.31591797, 0.8461914, 1.5449219, 0.54248047, 0.15637207, -0.052825928, 0.92089844, 1.3291016, 0.6689453, -1.1826172, 1.5585938, 1.5537109, -1.0693359, 0.042877197, 2.2773438, 0.027633667, 1.1552734, 0.8071289, -1.3681641, 3.2246094, 0.53222656, -1.7431641, 1.6582031, -0.0927124, 0.56347656, -0.023620605, 0.75927734, -0.033081055, -0.2841797, -0.42773438, 1.8095703, -4.8515625, 0.056549072, 1.4101562, -1.0283203, 1.0751953, 0.38623047, -0.6894531, -0.51464844, -0.88720703, 1.5537109, -2.9277344, 0.80908203, -2.1953125, 1.0986328, -1.0019531, -0.68115234, -1.4072266, 1.3388672, -1.5605469, 1.0683594, 1.6230469, 0.22021484, 0.03604126, -0.41748047, -0.03933716, 0.5126953, 0.9482422, 1.2460938, -0.20629883, -0.79833984, -1.4853516, 0.65966797, -1.1191406, -0.36791992, 2.7675781, 2.7753906, 1.1240234, -0.25512695, 0.78125, -2.7929688, -0.52978516, -2.5683594, 0.2442627, 0.38964844, -0.14941406, 0.060028076, 1.3369141, 2.8417969, -0.53027344, -1.3085938, 0.19714355, 0.6743164, 2.421875, -0.60498047, 0.8828125, 1.4472656, -0.45458984, 1.3828125, 2.9335938, 3.1015625, -2.140625, 0.7050781, 2.0625, -2.6640625, -2.0683594, -0.7705078, -0.25878906, -1.078125, 0.4794922, 2.8261719, 3.15625, 0.44970703, -0.035217285, -1.2431641, -0.359375]}, "B00NO1O6ZC": {"id": "B00NO1O6ZC", "original": "Brand: GASONE\nName: Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks\nDescription: \nFeatures: \u2713 User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers\n\u2713 LONG LASTING AND DURABLE - Gas One\u2019s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance\n\u2713 READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection)\n\u2713 MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside \u215c-inch flare fitting and has an outside diameter of \u215d inches\n", "embedding": [-0.56152344, 1.9785156, 1.1455078, 0.59814453, -1.2988281, -1.5048828, 0.33007812, -0.6977539, 1.7265625, -0.56591797, 1.5517578, 0.85595703, 0.91748047, -0.8286133, 2.3632812, -0.9033203, 1.6455078, 1.6552734, 1.1699219, 3.4082031, 1.0234375, -0.091430664, 2.4433594, -0.9633789, 0.095825195, 0.66552734, 2.828125, -2.9589844, -1.7001953, -0.038391113, 1.5283203, 1.3662109, -1.2910156, 0.7558594, -0.7319336, -0.032165527, -0.2109375, 0.06762695, -3.7890625, -1.8154297, -1.4414062, 3.1328125, 1.4697266, 0.54833984, -1.5205078, 1.7197266, 1.8251953, 0.38427734, -0.019165039, 0.9873047, 0.5678711, 0.11187744, -0.3791504, 0.3659668, 1.3652344, 0.88964844, 1.1162109, -1.8974609, 0.80126953, 1.0908203, 1.9482422, 0.89453125, -2.6601562, -0.7993164, -0.80810547, 0.5048828, -0.95410156, 0.6357422, -0.99902344, 0.91748047, 0.6870117, 2.0253906, 0.69091797, -0.71972656, -1.5703125, 0.78466797, -3.2304688, 0.6669922, 1.8710938, -0.2277832, -0.8046875, 0.7241211, -0.43652344, -2.4804688, 0.31103516, 0.11480713, -0.3466797, 0.98291016, 0.6489258, 0.5839844, -4.1835938, 3.7304688, -3.4316406, -3.4082031, -0.16125488, 1.234375, 0.39233398, 2.7402344, 2.1367188, 0.103393555, -2.4121094, -1.8300781, -0.48706055, 2.3320312, -0.9848633, -2.1230469, -1.3554688, 1.5615234, -3.3886719, 0.9838867, -0.30004883, -0.8256836, 1.2841797, -1.1757812, 1.4716797, -3.6855469, -0.3190918, -0.7290039, 3.4589844, -0.4597168, 1.7724609, 0.2064209, 0.48754883, 0.36279297, 0.66308594, 0.95166016, -0.9711914, -1.0117188, 3.1445312, -0.9291992, 1.1464844, -2.1523438, 2.1113281, 0.9140625, 1.3828125, -2.4472656, -0.6328125, -3.125, -1.6767578, -0.7885742, -4.7460938, 1.5917969, 1.0810547, 0.5649414, -2.8046875, 0.30371094, -3.0136719, 0.24328613, 2.5625, -1.8037109, 1.2041016, -1.8037109, -0.25146484, -1.5595703, 1.6796875, 1.1396484, 1.3164062, -1.7841797, 1.8974609, 2.75, 0.21081543, 0.42138672, -1.46875, 1.0166016, -0.25732422, -1.9248047, 0.22106934, -0.21923828, -1.7822266, 0.06439209, -2.2578125, -2.2578125, -1.0419922, 1.3466797, -0.8051758, -1.0009766, 0.20300293, 1.9765625, 1.6425781, 1.0537109, -5.53125, -3.171875, 0.34448242, -3.5078125, 2.0351562, -0.18273926, -2.1015625, -1.4257812, 0.17541504, -1.6435547, -0.5703125, -0.060424805, -0.22631836, 0.8510742, -0.090026855, -0.9526367, -2.4921875, -0.054138184, -0.82421875, 1.6738281, -0.5307617, -1.8759766, 1.2236328, 0.4909668, -1.0400391, -1.3623047, 1.1298828, -2.4414062, -0.87060547, 1.7724609, -0.33325195, 0.052459717, 0.98095703, -0.4272461, 0.14013672, -1.7734375, 2.4433594, 2.8339844, 1.0917969, 0.38891602, -0.80322266, -0.0056610107, 0.5576172, -0.7553711, 2.0566406, 0.30908203, -0.73779297, 0.8359375, -1.0830078, -2.5039062, 1.78125, 2.484375, 0.36523438, -0.5625, 0.5058594, 2.2109375, -0.17736816, 0.22937012, 0.9355469, 1.8115234, 0.77783203, 0.2541504, -3.734375, -0.23339844, -1.6191406, 1.2646484, -1.6386719, 0.54248047, 2.7324219, -0.59521484, 1.5, -1.2783203, -2.5214844, -1.9179688, -1.8457031, -0.7836914, -0.06237793, 2.4140625, 0.7783203, -1.5830078, 1.9931641, 0.78222656, 1.2441406, 0.91015625, 1.015625, 1.0898438, 0.6176758, -1.4296875, -0.3269043, 0.01828003, -0.4958496, 2.28125, 2.7109375, 0.06555176, 1.0126953, 2.6699219, -2.5722656, 1.3300781, -0.37939453, -0.08270264, 2.515625, -1.6611328, 1.1464844, -2.9980469, 2.5078125, 1.2587891, 1.1582031, -0.009811401, -2.46875, 0.72998047, 2.6308594, -0.21276855, -2.8710938, 2.0097656, 1.8945312, 0.10223389, 1.5195312, 0.40966797, 0.6113281, -0.49243164, 0.31274414, 0.14660645, -3.2167969, 0.033996582, 2.9726562, 1.7353516, -1.7226562, 0.4633789, -0.76660156, 0.26782227, -1.1083984, -1.4726562, -1.1826172, 1.5830078, -1.9160156, -0.43041992, 1.1953125, -2.1464844, -1.53125, 1.1630859, 2.0507812, 1.8105469, 2.2597656, -1.9375, 1.515625, 2.0683594, -1.6474609, 0.4807129, 0.6713867, -0.33374023, 1.0683594, -1.0341797, 0.19702148, -2.53125, -1.4482422, 2.3144531, -1.4882812, -3.4882812, 1.609375, -2.4296875, -3.3222656, 0.15405273, -0.7138672, 3.3300781, 1.0078125, 0.11114502, -1.1855469, 0.42578125, -0.1303711, -0.3623047, 0.91552734, 2.9199219, -1.0136719, -1.2236328, 0.53222656, -1.2382812, -0.2998047, 2.0917969, -1.078125, 0.9272461, 1.8203125, -0.06097412, -0.35742188, -0.36083984, -0.2685547, -0.7915039, 1.3339844, -3.2636719, -0.6533203, -1.1875, 1.0722656, 0.07800293, 0.052490234, -1.9248047, -0.77978516, 0.8803711, -1.1679688, -0.092285156, -1.6025391, 2.8945312, -1.3789062, 0.17407227, 2.1894531, -2.6738281, -2.65625, 0.8442383, -0.091430664, -0.31762695, -0.74609375, -2.265625, 1.4707031, -0.3701172, 0.48217773, -0.55322266, -1.5761719, -1.5146484, -0.5332031, 1.4589844, -2.3769531, -0.67626953, 1.1699219, -0.6088867, -3.2480469, 1.1953125, 0.8256836, -2.0742188, -0.9121094, -1.1533203, -0.69189453, -0.24731445, -0.9267578, 0.69677734, 2.1015625, 0.8178711, -1.6035156, -2.9023438, 0.7324219, 2.6328125, -2.6230469, 0.7529297, -2.2070312, -0.4892578, -2.6308594, -2.3925781, 0.99121094, 1.2275391, 2.9082031, 0.68310547, 1.4101562, 0.67626953, 0.78271484, -0.50341797, -2.1894531, -0.2331543, 2.640625, -1.7509766, -1.1533203, -1.2011719, 0.99365234, -3.015625, 0.52001953, 2.6308594, -1.0195312, 1.4931641, 0.8828125, 1.1533203, -1.1943359, 1.0800781, 2.0488281, 0.9267578, -1.1113281, 0.9267578, 1.3164062, -0.12561035, -0.8432617, 1.2089844, 0.20117188, 1.5498047, 2.0117188, -0.09790039, -1.3574219, -0.79541016, 0.49365234, 0.5625, 0.9433594, 0.7104492, 1.5927734, 0.35717773, -0.6791992, -1.0927734, 0.17675781, 0.9267578, -2.2871094, -1.2177734, 0.92285156, 0.48754883, -0.26171875, 0.8779297, -0.5732422, -1.2617188, 0.18835449, -0.66748047, 2.328125, 1.6757812, 1.3251953, -1.2070312, 2.2988281, -1.7451172, 2.3125, -0.072143555, 1.9404297, -0.099609375, 1.1533203, -2.7578125, -1.8242188, -0.9506836, -3.4550781, -0.6425781, 1.9375, 1.3974609, -2.5351562, 2.0742188, 0.043884277, 1.5380859, 1.5380859, -1.9160156, -0.5576172, -1.3837891, -0.55029297, 0.2849121, -0.60058594, 2.0078125, 0.24255371, -2.6015625, -0.057006836, -1.8242188, 0.8691406, 0.59033203, 0.10394287, -2.8417969, -2.3457031, -2.1484375, 1.1728516, -0.484375, 3.1835938, 0.8491211, 0.75439453, 1.9765625, -2.4980469, -1.1318359, -1.3232422, -4.8320312, 0.13964844, -2.6699219, 1.0761719, 3.0214844, 0.8066406, 0.58447266, 1.9082031, 1.6591797, -3.09375, -0.47583008, -0.12084961, 0.46777344, -1.8408203, -1.3505859, 2.6855469, 0.9160156, -0.9658203, -1.9082031, -0.83984375, -2.5117188, -0.87109375, -0.7553711, -2.7226562, -0.089416504, -1.7490234, 1.1416016, -1.1435547, -1.1328125, 0.5341797, -1.5527344, -0.8979492, -3.2714844, 1.8837891, 0.051483154, 0.67529297, -0.86083984, 4.2226562, 2.3828125, -1.0253906, 0.92285156, 0.19165039, 2.4707031, 0.042022705, -0.8388672, -0.5942383, 0.76171875, 0.37109375, -1.5556641, -1.1279297, -1.9033203, -0.56884766, 0.7319336, 0.9589844, 1.3857422, 1.7792969, 0.26757812, -2.7285156, 0.6376953, 0.37573242, -1.515625, 0.12719727, -1.0742188, -0.027938843, -0.91748047, 0.91015625, -1.7089844, -1.2539062, -0.52734375, 0.48828125, -4.09375, -0.23925781, -0.3408203, -0.42041016, -0.7963867, -2.0625, -0.17993164, -0.8129883, 0.6484375, -1.1992188, -0.3413086, -1.3183594, -0.12463379, 1.9394531, 2.5644531, -0.13598633, 0.22045898, 0.25878906, -1.2128906, 1.2109375, 0.0154418945, 1.8115234, 0.73535156, -1.8925781, -0.1842041, -0.93652344, 4.6835938, -0.85791016, 0.69091797, -0.19470215, -1.2509766, -3.6542969, 2.6757812, 2.9785156, 2.7207031, 0.9589844, -0.08758545, 1.6044922, 2.0859375, 0.7246094, 0.6948242, 0.82373047, 0.28881836, -1.0771484, -0.8017578, 1.7324219, -1.8242188, 0.35620117, 1.0878906, 1.6533203, 2.4980469, 2.4296875, 0.83203125, -1.4042969, 0.1149292, 0.20776367, -0.31640625, -1.2246094, -1.5126953, -0.19030762, 3.4960938, -0.17541504, -2.5214844, 0.7392578, 3.25, -0.3647461, 1.4814453, 2.5410156, -0.4189453, 0.4633789, -0.8564453, -1.8867188, -0.5371094, -0.9453125, 0.9926758, -3.0585938, 2.0703125, 0.31347656, 1.4462891, 1.3105469, 1.0605469, -0.6582031, -1.0087891, -2.0273438, -0.17138672, -2.0644531, -1.8330078, -2.453125, 0.97021484, 1.1972656, 2.4492188, -0.68408203, 0.35058594, 0.42944336, -1.7880859, -0.8652344, 1.2412109, 0.49023438, 0.7397461, -0.91552734, 2.296875, -0.2619629, -0.45385742, -1.5546875, -0.75634766, -0.6616211, 1.1904297, 2.5292969, 1.6259766, -0.6274414, -1.2158203, -2.6777344, -5.3164062, 0.28076172, 1.0546875, -0.29785156, -0.21057129, -2.8378906, -0.7050781, 0.6845703, -1.5244141, -0.5263672, -3.21875, -0.23120117, -1.1660156, -0.77783203, -0.033843994, 0.6489258, -0.64941406, 1.1796875, -1.7763672, -1.0869141, 0.5517578, -1.4599609, -2.0996094, 0.6767578, -1.0205078, 0.06365967, 2.640625, -2.1621094, -0.68115234, 2.3242188, 0.5136719, -3.2207031, 2.4257812, -3.5566406, 0.79589844, 1.3115234, -2.1210938, 1.9697266, 2.7617188, 1.2011719, 1.7871094, 1.375, 3.3476562, -0.6040039, -1.8222656, 1.9267578, 0.6328125, 0.10882568, -1.6796875, 1.4345703, -1.0810547, 0.05795288, 2.5625, 0.10015869, -1.7109375, -1.3505859, -1.7880859, 0.36694336, -0.089904785, -0.4736328, 0.5571289, 0.6176758, 1.9511719, 0.20300293, 1.6513672, 1.0791016, 0.6767578, 0.21228027, 1.7070312, -1.3935547, 1.8515625, 0.42041016, -1.3017578, -2.6230469, -0.9038086, 1.5791016, 2.8144531, -0.7475586, 0.3251953, 0.18884277, -0.7133789, 0.23303223, -1.5380859, 1.9697266, -0.1965332, 1.9873047, -0.57470703, -0.4650879, 2.6191406, -2.5273438, 0.10443115, 0.1303711, -0.94970703, -0.73095703, 1.2011719, 3.2441406, -2.2109375, -0.78125, -2.5058594, 0.6821289, -1.6142578, 0.019378662, 1.703125, -1.5810547, 1.1015625, 0.43066406, -1.7148438, -3.3378906, 1.0595703, 0.14233398, -1.5927734, 1.6972656, 2.4707031, -0.21252441, -1.1748047, 2.3496094, 1.7167969, 0.115722656, 0.024765015, -3.1796875, 0.19885254, 1.4404297, -1.5703125, 0.41503906, 3.2050781, 1.7939453, 0.42504883, -1.4638672, -0.21008301, 2.1308594, 1.6474609, 2.2617188, 2.9902344, -0.29711914, 1.9638672, 1.8203125, 2.3613281, 2.1855469, -0.6933594, 1.1855469, 0.62109375, -0.057800293, 0.2836914, -0.3203125, -0.63916016, -0.24572754, -0.27026367, -0.020446777, 2.7988281, 1.2353516, -3.6621094, -1.3408203, -0.5683594, 0.028762817, -3.9785156, 0.61083984, -2.4550781, -0.6977539, 1.7958984, 0.064086914, 0.38500977, 1.359375, -1.9335938, 1.140625, -0.4128418, 3.3574219, 1.1123047, -0.43676758, -1.6357422, -2.6269531, 2.2070312, 1.0654297, 0.39746094, 0.4296875, 1.2431641, -0.9580078, -1.7753906, 2.0214844, 1.5976562, -2.6503906, 0.72802734, -0.6948242, 2.8613281, 3.1640625, -1.3369141, 2.3164062, -0.14404297, 0.26293945, -3.78125, 1.6845703, -0.054107666, -0.67089844, -0.7290039, -4.296875, 0.9194336, -1.4160156, 0.2331543, -2.3378906, -0.3413086, 0.10992432, -0.55078125, 0.5883789, 0.83251953, -2.84375, 3.3554688, 1.5820312, -1.2548828, 0.070129395, 3.0820312, 1.6894531, -0.01007843, 0.19628906, 0.22033691, -1.4873047, -1.9609375, 3.1035156, -0.32348633, -1.2529297, 1.0566406, 2.5, 0.4794922, 1.6308594, 0.62646484, 1.5166016, 0.5180664, 1.3242188, -0.46142578, 0.28198242, -1.7314453, -0.39624023, 0.8666992, -0.2836914, -1.3183594, -0.70410156, 1.3105469, 0.91748047, -1.84375, 1.0009766, 1.0947266, -0.43237305, 1.1484375, 0.22021484, -1.0683594, -1.1396484, 0.54296875, 0.5913086, -3.65625, 0.26904297, -0.1953125, 0.06994629, -0.63378906, -0.8286133, -1.4228516, 0.8959961, 0.055786133, 0.19274902, -0.22399902, -1.1494141, 0.7241211, 0.34716797, -0.51660156, 2.0625, 1.7119141, -1.6201172, 2.5996094, -0.3095703, -0.76123047, 0.026824951, -2.4140625, 0.11138916, 1.4228516, 1.8457031, 1.6865234, 2.1503906, -2.09375, -1.5478516, -0.7270508, -3.4179688, 1.6806641, -0.27270508, -1.6044922, 0.6982422, 1.6181641, 2.3164062, 0.14379883, 1.1630859, -0.51416016, 0.75097656, 1.84375, -2.0214844, 1.1582031, -0.6479492, -1.2441406, 1.0390625, 4.6015625, 2.4238281, -1.1757812, -0.49291992, 1.3037109, -0.97314453, -2.8847656, 1.1689453, -0.5473633, 0.265625, 0.38183594, 1.9931641, 3.6425781, 2.1074219, -1.7324219, -0.515625, 0.11627197]}, "B08D8S7BK1": {"id": "B08D8S7BK1", "original": "Brand: KILILIUN\nName: KILILIUN 2 Pack 15 inch 1/4\" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4\" Male NPT and QCC1 Connector for Standard 2-Stage Regulator\nDescription:

          Package Included:

          2Pcs x 1/4\" NPT RV Propane Pigtail Hose with Gauge

          1Pc x Thread Seal Tape

          2Pcs x PVC Dust Covers


          Feature:

          Material: Durable 100% solid brass fitting and Stainless steel braided hose

          Inlet connector: QCC1

          Outlet connector: 1/4\" Male NPT


          Convenience:

          You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


          Installation:

          Easy to install and No extra tools needed.


          Display:

          The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


          Kindly Note:

          1/4'' Male NPT(Not 1/4\" male inverted flare). Please check your connector before you order.

          \nFeatures: [Package included] 2 pack 15inch QCC1 1/4\" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4\" inverted flare).\n[Durable Material] 1/4\" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather.\n[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks.\n[Extensive Application] You can connect the RV propane pigtail hose 1/4\" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking.\n[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.\n", "embedding": [-0.9116211, 2.1914062, -0.048034668, 2.1484375, -0.9316406, -1.015625, -0.52246094, -0.52978516, 2.2792969, 0.8305664, 1.5185547, -0.93652344, 0.890625, -2.4472656, 1.1796875, -0.16015625, -0.76416016, 2.0722656, 2.0039062, 1.3779297, 2.2011719, -1.7050781, 1.1152344, 0.50634766, 1.5986328, 0.6245117, 3.9355469, -1.9082031, 0.29882812, -0.42578125, 0.091796875, 0.65625, 1.1611328, 0.34814453, 0.065979004, -1.5732422, -1.453125, -1.0078125, -3.4824219, -1.5058594, -2.4316406, 2.3261719, -0.16992188, 0.8828125, -2.7402344, -0.26000977, 1.0117188, -0.13171387, -0.42871094, -0.37475586, -0.90966797, -1.0322266, 0.09246826, 1.7324219, -2.4160156, -0.6616211, -0.57177734, -1.1689453, 1.0839844, 0.91259766, 0.41601562, -0.8173828, -2.109375, 1.0820312, -1.0683594, 1.5371094, -0.054595947, 0.36767578, 2.1582031, 0.5439453, 2.7832031, 2.0742188, -0.6269531, -1.3837891, -0.67871094, 0.51953125, -2.5800781, 1.2050781, 2.8339844, 1.6689453, 0.59228516, 0.8330078, -0.60791016, -1.5595703, 0.9379883, -0.9472656, -1.7041016, -0.056854248, 1.0117188, 0.68066406, -2.9921875, 2.6914062, -2.2617188, -3.2792969, -0.69628906, 0.10852051, -0.017211914, -0.8823242, 2.6464844, 0.57714844, -1.546875, -1.7167969, 1.3525391, 1.2041016, -0.98095703, -0.49853516, -0.6435547, -1.0039062, -2.7753906, 1.3886719, -0.9194336, -0.32104492, 1.3886719, -2.3886719, 0.22631836, -1.6708984, -0.4333496, -1.2666016, 1.5498047, 1.0820312, 1.9130859, 1.4794922, 0.9814453, -0.045806885, 1.5722656, 1.6660156, -1.2451172, 0.4255371, 2.4082031, -0.98779297, 2.8964844, -0.7519531, 1.9453125, 1.3652344, 0.15979004, -2.8964844, -0.21557617, -2.7148438, -1.9130859, -0.43188477, -3.1796875, -0.93896484, 1.9375, -1.1113281, -4.59375, 1.4550781, -2.1289062, 1.1220703, 1.9755859, -1.7539062, 2.7070312, -1.4257812, 0.90722656, -0.15979004, 2.7109375, 2.0820312, 1.3466797, -1.6865234, 1.9765625, 2.1542969, 1.0166016, 0.02772522, -1.7568359, 1.5253906, -1.28125, -2.859375, 1.1455078, 0.032348633, -0.6298828, 0.1463623, -0.38183594, -2.4804688, 0.14221191, 0.016983032, -0.9921875, -2.5507812, 0.72558594, 0.91796875, 2.7949219, 1.09375, -4.09375, -2.6210938, -1.0761719, -1.5390625, 2.2988281, 1.4345703, -0.70166016, -2.53125, 1.3037109, -0.56103516, -2.2578125, 0.17199707, -0.41186523, 0.62597656, -1.7783203, -1.8798828, -2.1523438, -0.9609375, 0.32592773, 0.65527344, -0.5996094, -1.7519531, 0.00017213821, 0.39501953, -1.3232422, -0.4230957, 0.19421387, -0.48876953, -0.33374023, 2.5761719, 0.77734375, -0.21655273, 4.0078125, -0.25268555, -1.0332031, -1.4658203, -0.30322266, 3.0625, 1.6835938, 0.3305664, 1.0556641, 1.2871094, 0.37890625, 0.2154541, 1.1337891, 1.1201172, -0.38842773, 1.0517578, -2.0195312, -1.1630859, 1.9482422, 2.2441406, -1.4824219, 0.6464844, -0.09716797, 2.2050781, 0.5004883, -1.3613281, -0.4350586, 2.21875, -1.4023438, -2.3242188, -0.9135742, -1.7304688, 0.34716797, 0.6738281, -1.7177734, -1.1230469, 1.7939453, -0.84521484, 1.546875, -1.1376953, -1.75, -0.24975586, -0.86328125, 0.06518555, 0.5859375, 1.2207031, 1.3564453, -2.4941406, 2.5351562, 1.9746094, 0.86035156, 1.109375, 1.7382812, 1.8720703, -0.39013672, -1.7548828, -1.1953125, 2.2753906, -1.8818359, 3.390625, 1.5595703, -2.125, 0.42871094, 1.3427734, -2.0957031, 2.5605469, -1.3759766, 2.3671875, 2.546875, 0.05303955, 1.1660156, -3.75, 2.1484375, 0.042419434, 2.0527344, 0.8149414, -1.6630859, 1.9365234, 4.625, -1.5634766, -2.0976562, 2.609375, 3.7929688, 1.6376953, 2.0800781, 0.6479492, -1.7470703, -0.091430664, -0.45483398, 0.62646484, -2.0253906, 0.76464844, 1.9355469, -0.29541016, -0.15686035, -1.5371094, 1.1982422, 0.04812622, -0.18579102, 0.22351074, -3.3046875, 0.8613281, -0.5541992, -2.7070312, 2.03125, -2.1210938, -1.9453125, 1.0517578, -1.75, 0.71191406, -0.23034668, -2.578125, -1.1962891, 1.5800781, -1.7998047, 0.2939453, 0.93896484, 3.2773438, 0.15441895, -1.6757812, 0.7397461, -2.0683594, -0.8203125, -0.018478394, -0.98535156, -2.3359375, 0.953125, -2.0742188, -1.9814453, 0.22875977, 1.8916016, 4.9765625, 1.921875, -1.0292969, -1.3544922, 1.1181641, -0.30566406, -1.0498047, 0.27734375, 1.7763672, -0.44580078, -3.1933594, -0.4177246, -0.52490234, -1.8847656, 0.52441406, -2.4589844, -0.5649414, 2.0800781, 0.89990234, 0.7583008, -0.30322266, -1.1445312, -2.3339844, 2.1484375, -3.0957031, 0.9345703, 0.03994751, 3.0820312, -1.3847656, 0.5527344, -2.0722656, -2.1074219, -0.7006836, -1.5273438, 2.8164062, -0.05126953, 0.7993164, -2.0332031, -0.74121094, -0.28930664, -0.4440918, -4.3554688, -0.19506836, 1.2617188, -1.6728516, -1.4550781, -3.3144531, -0.57421875, -0.4753418, 0.7651367, -0.2088623, -0.78564453, -1.1083984, 0.9824219, 0.52734375, -0.16748047, 0.9633789, 2.6699219, -0.013175964, -2.34375, 0.4645996, -0.7260742, -1.4013672, -1.8125, 0.082336426, 0.36499023, -1.2978516, -1.1484375, 0.036346436, -0.27197266, 1.3544922, -0.7871094, -3.5214844, 0.4453125, 3.359375, -1.0351562, 1.5380859, -1.9736328, 1.1914062, -0.87109375, -1.3837891, 3.0351562, 2.6914062, 1.6289062, -1.8583984, 1.0390625, 0.1685791, 0.11212158, -0.41333008, -0.6489258, 0.34936523, 1.0478516, -1.6914062, -1.5136719, -0.12768555, -0.6616211, -3.9589844, 2.0625, 0.71875, -1.9228516, 1.5644531, 0.7895508, 0.71777344, -0.72314453, 1.078125, 0.7739258, 0.13232422, -0.29003906, -0.3774414, 1.3310547, 0.29003906, -1.0869141, 0.9863281, 1.625, 1.9453125, 0.026519775, 1.3408203, 1.1367188, -0.8696289, 0.12976074, 0.051879883, 0.07696533, -0.31469727, 2.9707031, -0.3232422, 0.13891602, 1.4619141, -0.7993164, 3.1933594, -1.8027344, 0.0048980713, 2.0839844, 1.9599609, -1.3554688, -1.2148438, -1.7050781, -1.2685547, -0.101501465, -0.40722656, 0.71191406, 0.9692383, 1.5566406, -1.2910156, 0.8989258, -0.60253906, 2.734375, -0.66015625, 0.7807617, -0.96435547, -1.7236328, -1.7089844, -2.2714844, 0.19360352, -2.3320312, -2.2910156, 1.4482422, 2.125, -1.8349609, 1.4208984, -0.23400879, 2.0039062, 1.3349609, -0.027709961, -0.051574707, -0.96484375, 0.39038086, 0.6411133, -0.7988281, 1.8242188, -1.3398438, -1.2763672, -0.29101562, -1.3779297, 0.73291016, -0.025726318, 2.9746094, -2.6914062, -0.37451172, -0.26489258, 2.1074219, 1.2666016, 2.8105469, 0.24267578, 2.7851562, -0.23388672, -2.8144531, -0.4633789, -0.0635376, -4.3007812, 0.3359375, -1.6230469, 1.3554688, 2.6621094, 0.6953125, -1.2744141, 1.3212891, 2.2246094, -2.890625, -1.0449219, -2.0859375, 1.0957031, -2.3515625, -0.23303223, 1.5732422, -0.75878906, 0.42651367, -3.2460938, -0.40161133, -0.26635742, -1.4394531, -0.5214844, -1.7792969, -0.82373047, -0.7963867, 0.2841797, -1.3769531, 0.0014343262, 1.4960938, -0.5336914, -0.56640625, -2.4199219, 1.1015625, 0.15026855, 2.2675781, 0.65625, 4.3984375, 2.6367188, 0.83740234, -0.47387695, -1.9394531, 4.1015625, 0.015449524, -2.3007812, -0.113464355, -0.19519043, -0.5595703, 0.5131836, 0.28930664, -0.7114258, 0.6484375, 3.0390625, 0.22216797, 1.6796875, 1.8378906, -2.4003906, -2.5800781, 1.5332031, 1.3564453, -1.8222656, 1.9443359, -1.359375, -1.1474609, -2.2519531, -0.14489746, -1.1396484, -0.27319336, 0.099487305, 0.35253906, -2.9199219, 0.8876953, 2.6777344, 0.1706543, 1.2705078, -1.2451172, 0.40527344, -0.9003906, -0.08666992, -0.5805664, -0.7504883, -1.6445312, 1.5400391, 1.4257812, -0.043182373, 0.8251953, -0.2939453, -0.9897461, 0.33203125, -0.7607422, 0.07623291, 2.4902344, 0.48535156, -2.8945312, 0.7060547, -2.2480469, 4.6953125, -0.9814453, 1.3007812, 0.9433594, -0.9946289, -3.5664062, 2.171875, 1.4013672, 2.546875, -0.43481445, -1.2695312, 1.9042969, 2.5839844, 1.0585938, 0.12426758, 1.546875, -2.7910156, -0.54296875, -1.0419922, 2.6601562, -3.0742188, 2.3125, 1.4863281, 0.6166992, 0.75146484, 2.5351562, 0.7368164, -0.8227539, 0.6010742, 0.84375, 0.75634766, -1.9912109, 0.9008789, -1.6513672, 1.8427734, -2.2050781, -1.4521484, 0.071899414, 2.2089844, 0.019683838, 3.046875, 1.3925781, -0.007648468, -1.9023438, -3.0058594, -1.7441406, 0.14086914, -0.7973633, -0.21691895, -2.2832031, 1.5966797, 1.9179688, 1.7724609, -0.26000977, -1.75, -0.89208984, -2.1328125, -0.2866211, -1.9189453, -1.5117188, -0.53222656, -4.1875, -0.6484375, 0.06542969, 1.3369141, -0.8754883, -0.0035800934, -0.328125, -0.74658203, -1.1074219, -0.51171875, -0.7949219, -1.1074219, -0.18518066, 2.1738281, 1.9550781, 0.17663574, -1.1123047, 0.49194336, -0.7133789, 1.6953125, 2.8398438, -0.8535156, -0.8779297, -0.9375, -1.8457031, -3.8203125, -0.17321777, 2.1367188, 1.2773438, 1.0507812, -1.8837891, 1.0947266, 0.8051758, -1.1738281, -2.1289062, -2.6074219, 1.0263672, -0.96435547, -0.12817383, 0.78759766, 0.98828125, -1.2792969, -2.5507812, -3.5585938, -0.36621094, -0.6933594, -0.90771484, -1.2626953, 2.0292969, -0.87646484, -0.64697266, 2.5410156, -1.2431641, -0.26171875, -0.1463623, 0.95214844, -1.4697266, 1.1357422, -2.8535156, -0.064575195, 1.8427734, -1.9921875, 1.6806641, 1.4023438, -2.1542969, 0.78125, 2.9101562, 2.5175781, -1.890625, -0.23791504, 1.9599609, 0.25585938, -0.15612793, 0.23669434, -0.05908203, -0.103881836, 1.1523438, 1.9794922, -0.52001953, -1.1621094, -1.6152344, -2.5878906, 1.1435547, -2.4609375, -1.0527344, 0.5800781, 2.4335938, 1.7041016, 0.6791992, 0.27148438, 1.0146484, -0.73095703, -2.4667969, 3.4238281, -2.7988281, 3.1816406, 1.5009766, -2.7109375, -3.9492188, -0.1038208, 4.953125, 1.171875, -1.8417969, 0.34570312, 0.96777344, 1.0263672, -0.11743164, -0.7993164, 0.7241211, 0.78564453, 2.6855469, -1.5927734, -0.28930664, 0.78515625, -1.8769531, 1.2392578, 0.7709961, -0.93896484, -1.0009766, 0.72998047, 1.8554688, -2.4082031, 0.8227539, -0.08258057, 0.82128906, -0.94384766, -0.7973633, -0.27685547, -2.2753906, 1.2617188, 0.21936035, -0.9165039, -2.5507812, 4.7109375, -0.46142578, 0.90722656, 2.6074219, 0.48413086, 1.1796875, -1.8105469, 2.6835938, 0.6401367, 0.07952881, -2.359375, -2.5097656, 1.9033203, 0.76953125, -0.38378906, 0.7529297, 0.28125, 2.4023438, 0.73535156, 1.515625, -0.023529053, 0.8925781, -0.875, 2.7578125, 2.8574219, -1.0673828, 2.1230469, 1.1992188, 2.0957031, 2.9550781, -1.9335938, 0.46435547, 0.25317383, 1.0224609, 0.6279297, 0.9370117, -0.016525269, -0.15441895, 0.7260742, -0.39697266, 1.4570312, 0.5991211, -3.0976562, -1.3476562, -1.3251953, -2.8945312, -1.9355469, -0.025985718, -2.4277344, 1.3154297, 1.5214844, -1.7519531, 0.85791016, 1.5566406, -0.85595703, 0.7368164, -0.89990234, 3.1738281, -2.4492188, -0.8955078, -2.4023438, -3.3925781, 0.45239258, 2.90625, 2.3964844, 0.04727173, 0.9736328, -0.14660645, 1.2597656, 2.0058594, 0.56689453, -1.3710938, 2.2675781, 0.07543945, 1.5253906, 1.2548828, -1.0722656, 0.041931152, 1.7216797, -2.3105469, -5.21875, 0.012763977, 0.9580078, -0.21923828, -1.4404297, -4.21875, 0.97753906, -4.2226562, 0.6542969, -1.6923828, 0.10473633, -1.0751953, -2.0898438, 1.4560547, 0.43066406, -1.7050781, 2.21875, 0.93359375, 0.8930664, 1.1113281, 2.1132812, 2.1796875, 0.33666992, -0.05130005, -1.1025391, 0.28930664, -2.0195312, 3.0898438, -1.7109375, -0.34643555, 0.23059082, 1.3603516, 0.0859375, 0.7055664, 1.25, 0.25439453, 1.4257812, 0.3881836, 0.7080078, -1.5087891, -1.6445312, -1.3525391, 1.1083984, 0.022018433, 0.39257812, -1.015625, 2.2089844, 1.8964844, -2.5195312, -0.96240234, 0.5488281, -0.7109375, 1.0302734, 0.84472656, -1.6279297, -2.109375, -0.24365234, 2.4765625, -0.78515625, 0.05923462, 0.22192383, 1.7558594, -1.2529297, -1.6201172, -0.71191406, 0.46142578, -1.265625, -0.03277588, 0.6791992, 1.6181641, -1.0517578, 0.9682617, -1.9013672, 2.8222656, 2.8613281, 0.34033203, 2.5625, -0.30981445, 0.56591797, -0.16577148, -1.0087891, -0.9863281, 0.8852539, 1.6318359, -0.32348633, 2.0292969, -0.1315918, -2.9335938, -1.2294922, -2.5234375, 0.75341797, 1.0273438, -1.3046875, -0.53271484, 1.5019531, 0.67871094, 0.08782959, 1.8017578, 1.5, 1.7802734, 1.1835938, -1.7119141, 0.45654297, -2.0351562, 0.7714844, -0.3779297, 2.8515625, 1.6425781, -2.53125, 0.34106445, 1.28125, -0.19763184, -0.10144043, -1.4023438, -0.81591797, -0.16027832, -0.23596191, 1.1933594, 2.7558594, 0.7001953, -2.2246094, -0.3894043, 0.6386719]}, "B07Q4DMHK9": {"id": "B07Q4DMHK9", "original": "Brand: MR. TORCH\nName: BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY\nDescription: \nFeatures: Max Temperature heat up to 2642\u00b0F (1450\u00b0C), Powerful Supper Swirl Cyclone Flame\nTrigger Start Piezo Ignition, Anti-flaring\nUse standard propane or MAPP or MAP/Pro gas cartridge\nIdeal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers;\nMade in Taiwan, with the highest quality control.\n", "embedding": [-1.4892578, 2.3867188, 1.2773438, -0.50341797, -0.13098145, -0.8623047, 0.040985107, 0.22692871, 1.0390625, -0.7861328, -0.5161133, -0.8964844, 0.45654297, -2.5742188, -0.17871094, 1.8417969, 0.16027832, 1.8681641, 0.21520996, 1.1738281, 1.3095703, 0.28515625, 1.8896484, 0.50927734, 1.1738281, -1.4199219, 2.8417969, -2.671875, -0.45166016, -0.80908203, 0.8486328, 0.77685547, -1.4375, 0.8876953, -3.2207031, 0.03918457, -0.82177734, 0.2788086, -2.5273438, -0.4375, -2.8144531, 1.5820312, 1.1972656, 1.2001953, -2.7714844, 0.4453125, -1.5957031, 0.2475586, -1.1650391, -1.3525391, 0.5283203, 0.041534424, 0.84033203, 0.023101807, 1.3349609, -0.5053711, -1.9023438, -2.296875, 2.9765625, -0.11785889, 1.0820312, 0.20996094, -4.109375, 0.41992188, -0.24890137, 2.8085938, -1.1132812, -2.3710938, 0.8100586, 0.13708496, 1.8681641, 3.3710938, 1.9375, 1.09375, 1.4326172, -1.1669922, -2.5800781, -1.4111328, 0.5605469, 0.49072266, 2.3359375, 1.9726562, 1.1083984, -0.75097656, -0.72509766, -1.4921875, -0.7480469, 0.90722656, 2.3476562, 2.6132812, -1.6230469, 1.1298828, -0.033111572, -3.4550781, 2.1308594, -1.3417969, 0.0064430237, 0.31298828, 1.0634766, 0.40893555, -0.6459961, -0.40307617, -0.4482422, 1.0371094, -2.6425781, 1.3173828, -0.32006836, 0.65625, -2.8398438, -0.92578125, -2.96875, 0.03036499, 0.32983398, -0.18493652, -2.1914062, -0.6044922, 1.7666016, -0.50878906, 1.7529297, 0.05328369, 1.1367188, -0.34326172, -0.22619629, -1.2294922, 0.4494629, 0.5415039, 0.27001953, 0.66064453, 0.74609375, -0.93359375, -0.42993164, 0.63916016, 1.5615234, -1.6679688, -0.63378906, -0.78466797, -0.4873047, -0.98583984, -2.4804688, -1.6376953, -2.828125, 1.5810547, -0.20690918, -1.2294922, -4.1328125, 1.53125, -0.23901367, -0.36010742, 0.38623047, -0.90283203, 1.2324219, -1.1855469, -0.79248047, -2.7597656, 1.8671875, 2.265625, -2.4160156, -0.36010742, 3.7460938, -0.8666992, 0.22290039, 0.5986328, -1.3173828, 2.2714844, -1.453125, -0.7651367, -0.13598633, 0.55126953, 0.24926758, 1.8095703, 0.5698242, -1.0458984, 0.48120117, 0.5698242, -0.09674072, -2.7089844, 0.3461914, 3.59375, 0.6303711, 0.7602539, -1.9570312, -0.5595703, 0.6376953, 0.9238281, 1.1699219, -1.2197266, -0.7138672, -0.9609375, 1.4824219, -0.8144531, 0.30322266, 1.6650391, 1.1298828, 1.6347656, 1.8769531, -1.6796875, -0.33447266, -2.1328125, 0.4819336, -0.62353516, -3.3085938, -0.77001953, 0.6484375, 0.5175781, -1.9472656, -1.7773438, -0.2265625, 0.6767578, 0.3413086, 1.0976562, 0.7910156, -0.7973633, 0.9863281, -1.4814453, 0.5415039, -2.8867188, 0.43237305, -0.06750488, 0.9873047, 0.20336914, 0.47314453, 0.42016602, 0.23876953, 1.9501953, 2.1484375, 0.54248047, -1.3447266, -1.0234375, -2.1523438, -1.7021484, 1.3525391, 0.9560547, -0.52783203, -1.4794922, -0.5620117, 0.32666016, -0.9169922, -1.34375, 2.1503906, -0.47265625, 0.81884766, -2.8574219, -1.0976562, -0.38085938, 1.8896484, 0.55810547, -0.8383789, -0.51171875, 0.7836914, -0.72998047, 2.3691406, 1.3105469, 1.9306641, 1.28125, -2.1953125, -0.34472656, -0.4177246, 0.4248047, -2.1992188, -1.5234375, 3.0351562, 2.1875, 0.13244629, 0.9580078, 0.89208984, -1.1845703, 2.1777344, -0.4086914, -0.3173828, -0.4099121, 0.52734375, 0.82421875, 0.84716797, 1.3417969, 1.4980469, 3.0097656, -1.8056641, 2.2109375, 0.47802734, 0.91259766, 0.032562256, 0.5415039, 0.82910156, -2.6894531, -0.22229004, -0.93408203, 1.0927734, -0.23571777, -1.4990234, 0.3947754, 3.5273438, 0.04147339, -2.4082031, 3.6113281, 0.006340027, 2.3417969, 0.7919922, 2.1113281, -0.95214844, -2.4980469, 1.4150391, 1.7158203, -0.7524414, -0.08569336, 0.69433594, 0.7060547, 1.0302734, -2.0214844, 1.8505859, 0.2775879, 0.26245117, 1.5019531, 0.15527344, 0.66845703, -1.9277344, -1.8056641, 1.4072266, -4.3789062, 0.80029297, -1.1621094, 0.33666992, 2.2011719, 2.2285156, -0.06561279, 0.7963867, 0.73583984, -0.8276367, 2.7070312, 0.38476562, -0.55322266, -1.1162109, -1.0976562, 1.1416016, -2.15625, -0.080566406, 0.87109375, 1.0107422, -4.6445312, 1.0849609, -2.9375, -0.8144531, 2.4335938, -0.12347412, 2.1835938, -0.9785156, -1.3798828, -1.0009766, -0.22058105, -0.67529297, -0.7836914, 1.3916016, 3.4277344, -0.3449707, -3.3378906, 1.9492188, -1.3857422, -0.71533203, 0.72314453, -0.79052734, 1.0537109, -1.3837891, 0.59033203, 0.6899414, -0.9580078, 1.0244141, -2.5175781, 2.4707031, -2.28125, 0.5727539, -1.3349609, 1.5419922, 1.5107422, 0.07684326, -1.7021484, 0.04638672, 0.6958008, 0.63427734, 2.4335938, -1.1914062, 3.3886719, 0.33398438, -2.6582031, 0.59814453, -1.3857422, -1.7021484, 0.42822266, -1.0849609, -1.8066406, -2.3164062, -2.859375, 0.17028809, -0.42211914, 0.34985352, 0.61083984, -0.029327393, 0.23535156, 1.8603516, -1.1943359, -1.3964844, 1.4345703, -1.2236328, -0.32983398, -1.9208984, 1.4785156, -0.51904297, -3.0292969, -1.2089844, -1.171875, 0.42822266, 0.48364258, 1.0322266, 0.8676758, 1.7275391, 0.5625, 0.6777344, -3.9433594, 1.1835938, -0.038635254, -1.7841797, 0.1071167, -0.62353516, 0.61083984, -1.5917969, -0.7236328, 3.8085938, -0.6166992, 1.5419922, -0.019363403, 0.37817383, 1.2841797, 0.61621094, -1.4492188, -0.56152344, 0.6923828, 1.5078125, -3.2089844, -0.68359375, 0.34326172, 0.97314453, -2.7753906, -0.6352539, 0.72265625, 0.037750244, 0.5283203, 2.0703125, -1.0527344, 0.4411621, 0.34643555, 0.8691406, 0.77246094, -1.2919922, 0.26000977, 0.15393066, -0.8652344, 2.4492188, 0.58496094, 1.6210938, 0.41625977, 2.3613281, 1.9414062, 1.3095703, -1.6582031, -1.0625, -0.21838379, 1.1289062, 1.0019531, 1.7441406, -0.55615234, -0.08502197, 1.453125, 0.859375, 1.7802734, -1.2363281, 0.03353882, 0.6166992, 0.8515625, -1.0625, 0.06335449, 0.83447266, 0.03665161, -2.09375, 1.2148438, -1.2060547, -1.2197266, 0.32910156, -0.75097656, -0.13684082, -1.7197266, 2.203125, -0.31860352, -0.5449219, 0.01058197, -0.34106445, -1.4882812, -0.52490234, -0.8564453, 0.6020508, -0.92871094, 2.6953125, 0.7348633, -0.8051758, -1.5654297, -1.1953125, -1.8515625, 0.5292969, -2.8613281, -1.2734375, -1.140625, -0.31518555, -0.34326172, 0.88378906, -0.18005371, -0.2097168, 0.0552063, 2.3359375, -2.6503906, 1.7646484, 0.5073242, -2.0859375, -0.25830078, 0.38330078, -1.9375, -0.47143555, 1.4414062, 3.5039062, -0.18481445, -1.5566406, 1.7333984, -1.6914062, -1.7021484, -3.5214844, -3.7988281, 0.76416016, -0.37231445, 0.7714844, 3.140625, 0.3371582, 1.2792969, -0.67822266, 0.6772461, -1.3496094, -2.6289062, 1.5136719, 2.4257812, -1.2802734, -2.9277344, 3.0664062, -1.1640625, -0.43798828, 1.2792969, 0.6669922, -0.06124878, 0.7397461, 1.9052734, -0.84521484, 1.15625, 0.58740234, 0.8339844, -0.07336426, 0.103637695, 1.0947266, 0.22155762, 0.2932129, -2.8925781, 2.1679688, 2.421875, -0.92871094, -0.7739258, 0.42919922, 2.3222656, 0.90625, 0.52001953, -0.15551758, 2.53125, 1.5869141, -2.5214844, 0.70703125, -1.9130859, 1.4072266, -0.7519531, 0.30395508, -1.6582031, -2.2421875, 2.5605469, -0.78759766, 0.97753906, 0.7324219, 0.87890625, -1.3730469, 0.37768555, -1.4443359, -2.5097656, 0.76708984, 1.4052734, 0.5444336, 0.12866211, 1.5693359, -1.1689453, 0.7270508, -0.17126465, 0.19482422, -2.1953125, 0.017959595, 2.3046875, 0.047607422, 1.5322266, -0.9370117, -1.6630859, -2.8046875, -0.21655273, -0.84814453, -0.44458008, 1.6123047, 0.44091797, 0.7861328, -0.23913574, 1.1386719, 0.6845703, 1.3251953, -1.1572266, -0.045318604, -0.2553711, 0.13757324, -1.6357422, 1.0214844, 1.8759766, 0.35302734, 1.4140625, -1.453125, -0.43676758, -1.3496094, -0.024719238, -1.1855469, -0.44018555, 0.93847656, -0.027877808, 1.5292969, 0.4819336, 2.40625, 0.12634277, 0.23022461, 1.2001953, 0.14440918, -0.2602539, 1.2802734, 0.93115234, 0.40576172, -1.3818359, -2.5820312, 2.4257812, 1.3125, 0.2019043, 3.0683594, -0.25756836, -2.6679688, 1.4345703, 1.9267578, -2.3554688, -0.5620117, -2.875, -2.0429688, 1.4160156, 1.2607422, -1.1669922, -0.4333496, 1.4316406, -0.110961914, 2.0625, -1.0332031, -0.06915283, 0.12890625, -1.7636719, -1.5371094, -0.2980957, 0.9580078, 0.26391602, -0.9399414, 1.0078125, 1.3730469, 2.4980469, 0.072265625, 0.05493164, -0.32128906, -1.3916016, -1.4638672, 1.2568359, 0.19873047, -1.8339844, -2.5136719, 1.4365234, 1.6572266, -0.20227051, 0.7836914, 0.8535156, 0.9765625, -1.9863281, 0.13244629, -0.7626953, 0.21008301, -1.7128906, -0.54541016, 3.6445312, -0.38305664, 1.0917969, 0.02116394, -0.68652344, -0.7949219, 0.9086914, -0.16674805, -0.32250977, -2.4941406, 0.39672852, -2.6328125, -3.9042969, -2.1953125, 0.51904297, -1.1191406, 1.4863281, -0.21179199, -0.9423828, 0.017654419, -0.6225586, 0.9975586, 0.053833008, 2.2773438, 0.22583008, 0.78125, -0.6791992, 1.0556641, 0.53759766, -0.90771484, 0.13317871, -1.328125, -0.3696289, -2.4296875, -3.0351562, 0.28076172, -0.83447266, 0.28881836, 0.46362305, -0.83691406, -0.5205078, 3.046875, -0.17102051, -1.6396484, -0.5, -1.6884766, 0.32421875, -0.39233398, -1.796875, -0.5942383, -0.4165039, 0.39697266, -0.22644043, 2.1679688, -0.37768555, -1.6044922, -0.18164062, 0.57714844, 0.32885742, 0.14941406, -2.0644531, 0.84375, -0.6171875, 1.3798828, 0.7084961, -0.20019531, -1.4921875, -1.4746094, -2.2675781, 0.08258057, -0.9238281, 1.1865234, -1.2314453, 0.39941406, 0.089660645, 1.2646484, 1.6464844, 0.5786133, 2.1699219, -0.6196289, 0.43188477, 0.3955078, 2.9628906, -0.17248535, -2.7929688, -1.6552734, -0.88916016, 3.4882812, 1.3007812, 0.011077881, -0.72216797, 0.5336914, -1.3320312, -0.58984375, -1.0107422, 0.46044922, 0.8666992, -0.7368164, -4.1523438, 1.4951172, -0.057434082, -1.2451172, -0.5180664, 1.3232422, -0.11706543, -0.82421875, -0.6894531, 0.1694336, -3.6503906, 1.8339844, 0.46826172, -0.734375, 0.26953125, -1.4960938, -0.052124023, -1.1748047, -0.06762695, 1.4306641, 0.28588867, -1.7363281, 0.24511719, 2.1152344, 2.6289062, 1.5371094, 1.3056641, -0.74658203, -0.5810547, 3.1640625, 1.6074219, -1.3632812, 0.77978516, -0.07373047, 0.30444336, 0.8339844, -2.6640625, 1.3164062, 0.9272461, 1.3867188, 1.0068359, 0.18054199, -0.11834717, 1.1640625, 1.9804688, 3.28125, 0.99902344, 1.4638672, 0.29638672, 1.0810547, 2.2324219, 1.4345703, 1.1142578, 2.5742188, 1.2333984, 0.5102539, -0.4416504, -0.81347656, 0.55810547, -0.114990234, -0.9692383, -2.0683594, -0.012535095, 0.07098389, -2.3613281, 1.1171875, -2.1660156, -1.2519531, -1.4814453, -0.113708496, -2.4824219, -0.6088867, -1.2578125, 1.8652344, 0.19128418, 0.87402344, -1.0244141, 1.6152344, 0.36083984, 0.0056419373, -2.8945312, 0.2553711, 0.103881836, -0.010726929, 1.0527344, 1.6738281, 0.27685547, 0.6230469, 0.96533203, 1.9804688, -0.8803711, -0.30932617, 0.21032715, -0.4362793, -0.053649902, 2.5351562, 3.6113281, 0.81640625, 0.6333008, 0.6328125, -0.24963379, -0.5966797, -3.8164062, 2.4667969, -0.009429932, -1.1455078, 1.6513672, -1.7519531, 1.3398438, -1.484375, 0.77246094, -1.6855469, 1.0273438, 1.8427734, -0.22717285, 0.83447266, 2.4941406, 2.4941406, 2.9394531, -0.68115234, -0.72998047, 0.37768555, -0.20373535, 1.5898438, -0.031219482, 0.9589844, 0.40722656, -0.16821289, -2.4101562, 3.4394531, 0.25927734, -1.8515625, -1.2548828, 3.9101562, -0.73339844, 1.2705078, -0.7734375, -0.6088867, 0.2541504, -2.0332031, 0.28027344, -0.09954834, 0.9086914, -2.0976562, -0.8203125, 0.6308594, -0.32983398, -0.8120117, -1.0820312, 2.40625, -3.2480469, -0.40039062, 1.4042969, -2.7792969, 0.54589844, 1.609375, -1.609375, -0.7753906, 0.25512695, 2.171875, -2.7792969, -3.0136719, 1.6650391, 1.296875, -1.640625, -0.7480469, 0.019302368, -0.64501953, 0.18225098, 0.26733398, 1.0820312, 0.31103516, -1.4863281, -0.0015106201, -0.18017578, -1.3496094, -0.9633789, -0.7919922, 0.81347656, 0.11602783, -4.796875, -2.9960938, -0.52783203, -1.4091797, 0.2734375, 2.7539062, -1.0830078, 0.94970703, -1.8447266, -3.4316406, 1.5302734, -0.7290039, 0.85839844, 0.27294922, -0.96240234, 1.3115234, 1.0380859, 3.5351562, -1.7138672, -1.0400391, 0.0060577393, -1.5869141, 0.6298828, -0.15002441, 1.9697266, 0.9765625, 1.5820312, 0.5366211, 1.4111328, 0.8930664, -1.2236328, 1.2109375, 1.8955078, 2.5722656, -0.1060791, 0.033172607, -3.4160156, 0.3959961, 0.9448242, -0.9580078, 1.2363281, 0.63378906, -0.9946289, -2.1269531, -1.3662109]}, "B009V11U6C": {"id": "B009V11U6C", "original": "Brand: Dr. Shrink\nName: Shrink RapidShrink 100 Propane Heat Tool\nDescription: \nFeatures: It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors\nOur product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition\nManufactured in United States\n", "embedding": [0.44580078, 1.5976562, 1.0273438, 0.32666016, -0.19726562, 1.8779297, -1.3691406, -0.59228516, -0.24780273, 2.2285156, -0.2208252, 1.1679688, 0.8935547, -2.0078125, 0.44018555, 1.4355469, -1.3271484, 1.9638672, 0.9707031, 1.0546875, 1.8476562, 0.07952881, 0.61621094, -2.3300781, 2.6464844, -0.5239258, 1.796875, -0.3330078, -0.16015625, 1.3505859, 0.22351074, -0.41381836, 0.32666016, 2.6230469, -0.3203125, 0.859375, -1.6923828, -0.59765625, 0.82714844, 0.3244629, -1.2880859, 1.6474609, 1.5146484, 0.8378906, -3.0058594, -0.90722656, -0.8105469, -0.7636719, -0.05480957, -1.5244141, 0.32836914, -0.9946289, -1.6494141, 1.4423828, -1.4130859, -0.88378906, -1.6865234, -3.0761719, 1.2929688, -0.7890625, -1.7695312, -0.06359863, -1.7529297, 0.093811035, -1.4804688, 1.2646484, -0.9970703, -0.49853516, -0.5620117, 0.67871094, 0.013725281, 3.1035156, -1.1142578, -2.8867188, -0.69384766, 1.5224609, -2.9394531, 0.029891968, 2.0996094, 0.7128906, -0.8222656, 1.3486328, -0.13684082, -0.8051758, 0.42382812, -1.9492188, -1.2861328, -0.82373047, 1.5605469, 0.5185547, -1.1953125, 2.4375, 0.58154297, -6.4882812, 0.515625, -1.8681641, -0.049957275, 1.5673828, 0.64160156, 0.24621582, 0.8652344, -0.265625, 1.4570312, 0.90722656, -0.50341797, 0.43823242, 0.16357422, 1.8740234, -2.3398438, -0.83496094, -2.2695312, -1.2910156, 0.6801758, -0.60009766, -3.5019531, 0.026504517, -0.2310791, 1.2294922, 2.1035156, 0.1352539, 1.0595703, 0.28271484, 2.1289062, 0.048583984, 1.8212891, 0.018463135, -0.45043945, 0.16918945, 0.7792969, 0.14135742, -0.6142578, -0.07977295, 0.73095703, -0.79052734, -0.20593262, -1.0029297, -0.49902344, 0.55371094, -0.8886719, -0.48632812, -2.3242188, -0.98779297, 0.58154297, 0.14379883, -2.46875, 1.4765625, -0.9291992, 0.5595703, 1.2695312, -1.0761719, -0.024749756, -2.2285156, 1.4316406, -1.1552734, 1.5732422, 1.96875, -2.9394531, -1.9414062, 1.2255859, 1.3232422, -0.089538574, 0.56347656, 0.9086914, 1.1650391, 0.023071289, -4.96875, -0.7817383, -0.40551758, -0.9609375, 1.4082031, 1.3017578, -3.3652344, 0.6972656, -2.2988281, -1.1279297, 0.1071167, 3.9667969, 2.3261719, 0.75, -1.1474609, -1.2412109, -0.46777344, -0.8198242, 0.2084961, 1.5771484, -1.5380859, -1.3847656, -0.7182617, -2.4707031, -1.6748047, -0.55810547, -0.4111328, -3.1464844, 2.125, 2.6132812, -1.9433594, -1.3867188, -1.0292969, 2.5800781, 2.390625, -1.0839844, -0.32348633, 0.51220703, -0.92578125, -1.2529297, -2.1699219, 1.5957031, -0.74658203, -0.31591797, 1.1591797, 0.6821289, -3.2089844, 0.9003906, -1.4423828, 0.6855469, -3.8984375, 1.2460938, -0.9794922, 3.453125, 0.25439453, -1.6318359, 1.0507812, 0.52734375, -2.0996094, 0.8984375, 0.8095703, 0.013069153, 1.6074219, -0.89404297, 0.25097656, 2.4492188, 0.36206055, 0.6479492, -0.23352051, -0.7241211, 1.2275391, 1.5039062, -0.91015625, 1.1171875, 0.2697754, -0.17895508, -0.13647461, -2.6113281, -1.4453125, -0.88720703, -0.4025879, -0.6245117, 1.9892578, 1.9902344, 0.012016296, 0.05117798, -0.93603516, -0.2220459, 0.671875, -1.2685547, 1.5205078, -0.6699219, -1.0175781, -1.4638672, -1.3408203, 1.3154297, 2.640625, -0.9506836, -2.0683594, 0.6850586, -0.65234375, 3.1015625, -0.8178711, -0.7319336, -1.6757812, 0.6376953, 2.5839844, 1.5712891, 0.09222412, 0.8515625, 1.6494141, -1.2597656, 2.375, 0.43774414, 3.2363281, 0.91748047, 1.4160156, 1.5068359, -1.1933594, 0.45776367, -0.5053711, -0.034698486, -0.76708984, 0.48461914, 0.040252686, 2.9785156, -0.07952881, -1.8974609, 1.90625, 1.0146484, 1.2167969, -0.27856445, 1.2998047, 1.3525391, 0.14257812, 0.39892578, 1.8066406, -1.171875, 1.4697266, -1.3623047, -0.7841797, -0.234375, -0.21142578, 1.3955078, 2.0820312, -0.16918945, 0.0715332, -2.5761719, 1.0810547, -3.046875, -0.48291016, 0.13232422, -0.6791992, -0.13012695, 0.74658203, -0.09881592, 0.16772461, 1.8388672, -1.0820312, -1.5546875, 1.3378906, -1.5273438, 0.85253906, 0.22387695, -0.4165039, -0.11126709, -2.2246094, 0.07739258, 0.042633057, -1.0341797, 1.1835938, -3.8320312, -1.71875, -0.9741211, 0.33447266, -1.5605469, 0.35913086, 0.88671875, -0.640625, 1.0146484, 0.028503418, -1.3955078, 1.6982422, 1.9013672, -1.7539062, 0.034606934, 2.0351562, 1.1054688, -2.6464844, -0.39526367, -0.8613281, -0.11553955, -0.17919922, -1.1210938, -0.0063323975, 0.86376953, -2.4492188, 1.1826172, -0.60791016, -0.9057617, -0.33422852, 1.3623047, -1.5498047, 3.0585938, -0.8408203, 1.03125, -1.4941406, -0.42749023, -0.0069122314, 0.56347656, 2.2050781, 0.18591309, 1.4335938, 0.029525757, -0.22167969, -0.61083984, -0.5332031, 0.4621582, -0.14611816, -2.8847656, 0.9526367, 0.93603516, -0.79785156, -1.4423828, -3.9804688, 0.20898438, 0.090148926, -1.7724609, 0.79248047, -0.42211914, 0.7597656, -0.72998047, 0.7519531, -0.5810547, 2.765625, -0.6352539, 0.0418396, 0.515625, 1.0039062, 2.3320312, -0.6191406, 0.08105469, 0.30322266, 0.33032227, -2.1484375, -0.2142334, 1.6542969, -0.7216797, 0.46435547, 0.7207031, -1.2255859, 0.734375, -0.87353516, -1.5507812, -0.859375, 2.3457031, -1.4316406, -0.6767578, 1.9902344, 1.3085938, 0.5029297, 2.8222656, 1.6328125, -1.0546875, 0.34423828, 2.4042969, -0.7446289, 0.34521484, 0.7890625, 0.5722656, 0.24353027, -0.51953125, 0.7011719, 1.9023438, -2.7617188, 0.87890625, 1.6689453, -0.07281494, 1.1416016, 2.7753906, -0.9926758, 0.48901367, -0.11260986, 1.2626953, 0.61865234, -1.90625, 0.6166992, -1.78125, -1.5800781, -0.39160156, 2.9804688, -0.22290039, -1.9394531, 1.1748047, -0.17895508, -0.13244629, -1.1074219, 0.6567383, 1.8583984, -0.2849121, -0.20996094, 1.0449219, 1.1933594, 0.4975586, 1.0917969, 1.4296875, -0.76708984, -1.0478516, 0.20617676, -0.07128906, 0.4736328, -1.6005859, -0.3317871, 0.9814453, -1.0810547, -2.2890625, 2.015625, -0.3972168, -0.5258789, 0.7817383, -2.0175781, -0.69189453, -1.3759766, 0.48828125, -0.3786621, 0.90185547, -1.3203125, -1.1425781, -2.703125, 0.29760742, -2.5898438, -0.7890625, 1.1816406, 1.7646484, 2.6503906, 1.8544922, 0.70751953, 0.30249023, 0.4729004, 1.1005859, -1.1865234, -0.13537598, 0.5732422, -0.87109375, -1.8017578, -0.8823242, 1.4228516, 2.0898438, -0.67333984, -0.03781128, -0.48120117, 2.0722656, 0.7939453, -1.8212891, 2.1171875, 0.8852539, 0.31811523, 1.6894531, 0.5053711, 3.0273438, -1.15625, -0.16101074, -0.12768555, -1.1855469, -0.24987793, -0.43896484, -2.0488281, 0.7348633, -0.10620117, 0.61376953, 2.5097656, -0.19384766, 0.57373047, 0.83496094, 1.0849609, -0.17822266, 0.5332031, 0.3708496, 1.0878906, -0.609375, 0.88671875, 1.7304688, -0.5126953, -2.0527344, 0.95751953, 0.6333008, -2.2011719, 0.28881836, -1.6923828, -0.21484375, -1.1005859, -0.78564453, 1.0146484, -1.921875, -0.36743164, 0.3161621, -0.11230469, -0.57128906, -2.5898438, 0.55322266, -2.1269531, 0.06286621, -2.3613281, 1.7607422, 0.52490234, -0.5410156, -1.6171875, -0.40893555, 0.36035156, 0.0713501, -0.9321289, 0.66748047, -4.609375, 0.027664185, -0.04537964, 1.0117188, -0.06933594, -0.59716797, -0.0025978088, -0.80615234, 0.1616211, 0.46899414, 1.5429688, -1.4765625, 0.5019531, -0.015853882, -0.25268555, -0.05529785, 0.03894043, -2.1152344, -1.5888672, 2.0214844, 1.2607422, -0.33911133, -0.19934082, -0.6977539, 2.2949219, 1.0029297, 1.6054688, 0.7480469, 0.52734375, 1.3017578, -1.2460938, -1.5742188, 0.8041992, 1.7050781, -1.2373047, -1.4775391, 0.5517578, -0.703125, 0.28271484, -0.25610352, -0.62109375, 0.97753906, 0.5332031, 0.828125, 0.54248047, 3.359375, -1.3085938, -0.5673828, 0.17370605, -2.7050781, 2.6640625, 0.6015625, 0.8618164, 3.2558594, 0.6591797, -1.9755859, 2.0664062, 1.8066406, -1.796875, 1.0517578, -0.515625, 2.3828125, 0.8466797, -0.5595703, 1.7363281, 0.7451172, -0.6904297, 1.9257812, -0.19384766, 1.3808594, 0.7685547, 1.7070312, 0.32788086, 0.7285156, -1.9990234, 1.9570312, 1.7226562, -2.9375, 1.2490234, 1.1386719, -0.55566406, 1.4111328, -0.82958984, -1.0683594, 1.2011719, -0.2163086, -0.52734375, 1.1328125, -0.1270752, 0.43432617, 2.5566406, -1.0527344, 0.3005371, 1.9628906, -2.6582031, -1.5751953, 1.1044922, 1.0117188, 1.9316406, -0.33007812, -0.7910156, -0.96972656, 1.140625, 0.12780762, -1.3164062, -0.8652344, -0.5097656, -2.5371094, -0.7416992, -1.7304688, -1.1191406, -2.9589844, -1, 0.55126953, 1.9414062, 0.5214844, 0.84814453, -0.46435547, -1.3173828, -1.3105469, -1.25, 0.05529785, -1.8623047, 0.35375977, 2.1386719, -2.6132812, -0.24841309, -1.5800781, -1.1103516, -1.3017578, 1.71875, 0.8330078, -1.2460938, -1.0585938, -0.20263672, -4.5976562, -5.1992188, 0.5913086, -0.81396484, 0.69970703, -1.2822266, -0.26098633, -0.8041992, 0.5341797, -1.1328125, 2.1601562, -2.6328125, 1.0302734, 1.7861328, -0.72265625, -2.0371094, -0.4465332, 1.2119141, -1.4248047, -0.111083984, 0.11126709, 0.52490234, -1.3339844, -0.7817383, -0.10028076, 1.3212891, 0.54248047, -0.41992188, -0.96435547, 0.640625, 1.3925781, 1.7119141, -2.8320312, 2.4667969, -1.3115234, -1.9150391, 0.68359375, -1.7226562, -1.6054688, 0.31762695, -0.30297852, 0.91748047, 0.51660156, 2.6425781, -0.6855469, 0.59716797, -0.16210938, -1.6816406, 1.5908203, 1.5439453, 1.0683594, 0.25708008, 0.54296875, -0.22509766, -0.3203125, -0.0418396, -2.1523438, -0.60839844, 1.9355469, -2.0488281, -0.97509766, -0.52490234, 1.7861328, 1.6767578, -1.2226562, 2.4570312, 2.3496094, 1.2177734, 0.08929443, 0.6933594, -2.5292969, 3.7519531, -0.17956543, -2.5019531, -0.19543457, -0.6308594, 1.5507812, 1.7470703, -1.4804688, 0.71972656, 0.45166016, -2.2949219, -0.7451172, 0.13378906, 2.5664062, 0.8208008, 0.33618164, -0.8652344, -0.5151367, -1.1835938, -0.05291748, -0.12683105, 1.6689453, 2.5253906, 1.5439453, 1.0195312, -0.38793945, -2.6464844, -1.0800781, 0.3630371, -0.2722168, 0.81591797, -2.6777344, 0.5239258, -1.5361328, 1.8476562, 0.6152344, 1.0732422, -2.4238281, -0.22961426, -0.16333008, 0.6484375, 2.2167969, 0.16931152, -1.2353516, 1.5917969, 2.1914062, 0.62890625, -0.81396484, 1.3320312, -0.8701172, 0.7246094, 0.3503418, -0.59277344, 0.28588867, 0.640625, 2.2675781, 0.76123047, 1.2978516, -1.9316406, 1.28125, 1.921875, 2.3867188, 0.40771484, 1.4824219, -0.64404297, 2.0996094, 2.0136719, 2.2617188, -1.0664062, 1.6416016, 2.6914062, -0.4104004, 0.52490234, -1.1748047, -0.080200195, 0.6489258, 1.0175781, -1.2626953, 1.6416016, 1.2900391, -1.234375, -0.89990234, -0.43164062, 0.2578125, -0.49243164, 2.2578125, -1.4453125, 0.12017822, 1.9453125, 1.1308594, 0.22216797, -0.2607422, 1.0214844, 0.77001953, -1.3896484, 1.8603516, -2.3125, -2.1347656, -0.3310547, -1.0683594, 1.7099609, 2.0585938, 0.14782715, 2.1074219, -0.3515625, -1.4726562, 1.5888672, -1.7197266, -0.9628906, 1.8476562, -0.95654297, -1.1425781, 2.3027344, 1.1210938, 0.28125, -1.2177734, 1.5429688, -0.9658203, 0.26367188, 1.9599609, 0.062805176, 0.21594238, -2.1777344, -5.1289062, 1.5585938, -0.83935547, 0.75683594, 0.4038086, -0.23901367, 0.58740234, -2.1679688, -1.1582031, -0.032958984, 1.3603516, 2.7109375, -0.7636719, -0.13830566, -0.56933594, 0.09100342, 0.9560547, -0.68896484, 2.7480469, 0.38427734, 2.6328125, -0.5317383, 3.6640625, 1.7998047, -0.35327148, 0.32470703, 1.4521484, 1.6083984, 1.6894531, 0.9038086, -1.3085938, 1.9492188, 0.0118255615, -0.17810059, -0.6098633, -1.3691406, -0.41552734, 1.3095703, -1.7841797, 0.9682617, -1.4160156, -1.328125, 1.8603516, -1.78125, 1.4599609, 1.2578125, -1.6210938, 0.9370117, 1.5664062, -1.4619141, -1.3808594, -0.12207031, -1.0205078, 0.24291992, -0.76171875, -1.1660156, 1.8447266, -2.4609375, -1.4794922, 0.07922363, -1.6953125, 0.69873047, -1.1865234, -0.5234375, 0.44702148, 0.41723633, 1.0009766, -0.94628906, 0.060180664, -0.2680664, 0.3623047, 1.6796875, -0.65966797, -1.5126953, 0.15576172, 0.9189453, -1.8876953, 2.0566406, 0.859375, -1.3984375, -0.103515625, -0.083618164, -1.6542969, -1.5429688, -1.4394531, 0.1529541, 1.5380859, -1.3994141, 0.23388672, 1.1123047, 2.0585938, 0.09295654, -0.06451416, -2.0292969, -0.053833008, -0.18762207, 0.86035156, -0.013801575, -0.2487793, 0.36254883, 0.87646484, 3.734375, -1.5498047, 1.4873047, 0.9135742, 3.3671875, -0.24035645, -0.054351807, -0.2626953, -2.0449219, 1.7949219, 0.83154297, -1.2773438, -0.53759766, 1.0917969, -1.7128906, -3.5761719, -0.9506836]}, "B00004Z2FP": {"id": "B00004Z2FP", "original": "Brand: Red Dragon\nName: Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder Works great)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2, 000-degrees F\nThe weed Dragon has received the National home gardening club member tested seal-of-approval.\nMade in the U.S.A.\n", "embedding": [-0.28076172, 2.0976562, 3.7695312, -0.43774414, -0.23144531, -0.62646484, 1.1298828, -0.59765625, -0.033325195, -0.42504883, -0.86572266, 1.3251953, 0.37768555, -4.140625, 0.9433594, 1.6914062, -0.26513672, 2.3808594, 1.3154297, -1.28125, 1.4560547, -0.10571289, 1.6513672, -1.0087891, -0.27856445, -1.2578125, 3.703125, -2.1171875, -0.7426758, 1.703125, 2.0839844, -0.59521484, 1.4814453, 0.74609375, -1.4384766, -0.50341797, -1.6132812, -0.19262695, -2.9355469, -0.2548828, -0.44506836, 2.0273438, 0.59765625, 0.66552734, -3.1660156, -0.30932617, -0.10510254, 0.38549805, -0.11578369, -0.4345703, 3.1074219, 0.86279297, -1.0703125, -0.58496094, 0.7241211, 2.1269531, -0.6723633, -3.4121094, 1.296875, 0.57177734, 1.3964844, -1.0361328, -2.1640625, -0.06262207, 1.3222656, 1.25, -1.3613281, 1.7832031, 1.0703125, -1.3378906, 3.4707031, 1.8261719, 0.7324219, -0.82128906, -0.14575195, -0.5239258, -4.3554688, 1.2607422, 1.4589844, -1.3330078, 1.0449219, 3.0507812, 0.19421387, -2.0019531, 0.6738281, -1.8388672, -0.5629883, -0.10638428, 1.1044922, 0.76171875, -2.8671875, 3.1972656, -0.7939453, -4.6640625, 1.4228516, 0.056884766, -0.7675781, -0.36694336, 1.6982422, 1.0380859, 0.6435547, -0.81884766, -0.050445557, -0.18359375, 0.4506836, 1.1064453, 0.57128906, 0.12695312, -1.6259766, 1.6220703, -3.1582031, -2.2871094, 0.37719727, 0.7841797, -1.4462891, -1.6787109, 0.21008301, -0.6801758, 3.3144531, -1.5654297, 3.6542969, -0.95703125, 0.19897461, 0.51464844, 3.0195312, -0.30639648, -0.8852539, 2.8964844, 4.484375, -1.0380859, 1.5019531, 2.1191406, 1.8759766, -1.6699219, 0.40722656, -1.8964844, -0.62646484, -1.8496094, -0.99316406, -1.2724609, -1.4785156, -0.7480469, 1.4785156, -1.5, -4.3242188, 0.074645996, 0.73046875, -0.9326172, -0.27368164, -1.0996094, 1.2392578, -2.1601562, -1.2675781, -2.9628906, 0.79003906, 2.7753906, -1.0058594, -1.9638672, 2.3457031, 0.78222656, 0.83740234, -0.3881836, -0.08642578, 1.8671875, 0.5834961, -1.9472656, 0.21508789, 0.17443848, -0.3840332, 1.390625, -0.23156738, -1.5380859, -1.1816406, -0.43969727, -0.68603516, -2.671875, 0.67578125, 2.5625, -0.29077148, -0.7763672, -2.2792969, 0.17126465, 0.3178711, -0.35839844, -1.0615234, 1.0644531, -2.9003906, -0.4194336, 0.9604492, -0.43652344, 0.22314453, 0.33032227, -1.6445312, -0.3852539, 3.1660156, -0.83154297, -1.3798828, -0.4013672, 1.8398438, 0.87597656, -1.2050781, -1.5224609, 1.6396484, 0.40649414, -1.7685547, -1.6464844, 0.082336426, -0.01259613, -0.3798828, -0.6401367, 1.1660156, -0.6870117, 1.6669922, 0.6982422, -0.9560547, -2.0449219, -1.0087891, -0.017944336, 0.47265625, 0.60058594, 1.9882812, -0.57373047, 1.203125, -0.7104492, 1.1152344, 0.9042969, -1.3720703, -0.10076904, -2.7578125, -0.4038086, 0.18737793, 0.2668457, 0.9472656, 1.4501953, -1.5488281, 1.8134766, -0.1616211, -2.1542969, -0.22961426, -0.2836914, 0.8881836, 0.85791016, -2.3828125, 0.5473633, -0.046020508, 1.3671875, 1.9267578, 3.6679688, -1.0029297, -0.703125, -0.14892578, -1.2421875, 1.1923828, -0.45166016, 0.18579102, -0.14611816, -0.5385742, -0.53466797, 0.45361328, 0.87646484, 3.8496094, 1.0517578, -2.9980469, -0.45410156, -0.49829102, -1.0253906, 0.9511719, 1.5292969, 0.4951172, -0.79589844, -1.4433594, 1.8544922, 0.52441406, 0.49926758, 3.5722656, 2.0019531, -1.1708984, 1.1152344, -0.45092773, 1.2773438, 0.5517578, -0.7973633, 0.95410156, -2.1640625, 2.3632812, -0.50683594, 0.77978516, -1.5859375, -1.3574219, 1.6796875, 4.2382812, 0.14123535, -3.7011719, 2.4472656, -0.49731445, 1.1621094, -1.4619141, 0.55029297, 1.6796875, -0.92041016, 0.37451172, -1.0273438, -3.5390625, -0.5854492, -0.17053223, -0.6816406, 1.0556641, -1.140625, 3.1816406, 0.50927734, 1.2431641, -0.23156738, -0.2631836, 0.5649414, -0.6723633, -0.5214844, 1.4648438, -3.8808594, 0.7363281, 0.9736328, 1.6787109, 1.3398438, 0.76123047, -2.109375, -0.36376953, -0.7480469, -1.9785156, 1.2236328, 0.48535156, -0.32788086, 0.6591797, -0.1743164, 0.37451172, -0.6699219, 0.028945923, 0.73046875, 0.98046875, 0.15600586, 0.013153076, -1.7480469, -1.2011719, 0.42041016, 0.93066406, -0.56933594, 2.9960938, -1.5322266, -0.9008789, -0.18640137, -2.3105469, -0.7734375, 1.4619141, 2.4726562, 0.6772461, -3.0546875, 0.65234375, -0.7138672, -1.3388672, 1.3486328, -2.1621094, 0.26586914, 0.9008789, -1.1972656, 1.9921875, -0.36206055, -0.013366699, -2.0019531, 2.7480469, -0.042266846, 1.7978516, -0.8203125, 2.7246094, 2.8320312, 0.87402344, 0.80859375, -1.7763672, -0.16430664, -0.20166016, 2.328125, 0.61572266, 1.9775391, -1.5195312, -1.2607422, 3.0957031, -0.85253906, -2.359375, -0.79003906, -1.5771484, -1.4667969, -2.3046875, -2.7636719, -1.796875, -1.6542969, -1.015625, 0.1459961, -2.0390625, 1.4736328, -1.03125, 0.25317383, -0.94140625, 1.2255859, -1.7236328, 0.085754395, -3.8574219, -0.15026855, 0.5625, -1.6445312, -2.3789062, -2.1386719, 2.3203125, -1.1796875, 0.84765625, 0.87402344, -0.21984863, 2.109375, 1.4824219, -2.4863281, 3.7675781, 0.38598633, 2.4707031, 0.6953125, -1.4638672, -0.73779297, -2.0175781, 1.0761719, 3.7148438, 0.13562012, 1.0917969, 1.3076172, 1.0517578, -1.9384766, 1.2431641, -1.4121094, -0.2614746, 0.17175293, 2.7441406, 0.50878906, 0.59814453, 0.5209961, 2.3242188, -2.5371094, -0.37841797, 0.3630371, -1.4892578, 2.7109375, -0.19299316, 0.109375, -0.9760742, 0.079711914, -0.3293457, 2.2734375, -0.095458984, -1.3994141, -1.8984375, -1.3769531, 0.35229492, -1.3037109, 1.9804688, -0.8984375, 1.8515625, 3.421875, -1.6503906, 1.1806641, -1.0361328, -1.1523438, -1.1269531, 0.5473633, 0.33081055, -1.0048828, -1.2197266, 0.37231445, -1.3681641, 0.99072266, -0.6118164, 0.076049805, 1.9990234, 0.59033203, -1.3994141, -0.7841797, 1.9082031, -1.25, -1.6132812, 1.9414062, -0.94140625, -0.53271484, -0.2154541, -1.7275391, 2.3222656, -5.8359375, 1.2763672, 0.40039062, -1.7724609, -0.5102539, 0.5625, -2.2910156, -0.8774414, 1.1386719, -1.5605469, -2.8554688, 3.03125, 0.39697266, -1.9960938, -0.3408203, -2.5839844, -0.6923828, 2, 0.30639648, -1.2451172, 1.2861328, -1.3525391, 0.036468506, -0.14099121, 0.9316406, 0.27148438, 0.12927246, 1.4921875, -1.9355469, 1.171875, 1.6289062, -0.0023670197, -1.7158203, -0.29663086, -1.4580078, -1.0625, 0.6386719, 3.9277344, -0.5991211, 1.15625, 1.1855469, 0.1303711, -1.0214844, -1.3701172, -2.234375, -0.08074951, -1.2177734, -0.5834961, 2.9472656, 0.083984375, 0.6088867, 1.8203125, 1.8486328, -0.048614502, -1.9609375, 1.5087891, 2.9550781, -1.9394531, 0.98828125, 0.71533203, 0.29101562, -2.0878906, 0.07702637, 0.578125, 1.5292969, 1.6767578, 2.1464844, -0.50927734, -0.40722656, -0.18041992, -0.79345703, -1.8271484, 0.6196289, 3.7578125, -0.0637207, -0.2097168, -1.5361328, 0.9082031, 1.6230469, 0.043182373, 0.9951172, 2.9023438, 0.91259766, 0.13867188, 1.5263672, -1.8554688, 1.9804688, 0.24328613, -1.0351562, -0.47924805, 0.22131348, -0.6479492, -0.6933594, -1.0703125, 0.31201172, 0.2631836, 0.8935547, -0.62158203, 1.3115234, 2.8828125, 0.71435547, -1.8603516, 1.2724609, -1.0859375, -1.4863281, -0.5336914, -0.46606445, 0.3474121, -1.0341797, 1.4228516, -1.1943359, -0.62939453, 0.35791016, 0.20544434, -1.2138672, 0.6816406, 1.8515625, 0.14587402, 1.1904297, 1.046875, -0.8930664, -1.03125, 1.4541016, 0.20568848, -0.7324219, 0.703125, -1.2607422, -0.07824707, 0.1352539, -0.1986084, 2.1464844, 1.4248047, -1.5263672, 0.15649414, -0.7084961, 0.8613281, -0.12365723, -0.5932617, 1.9804688, -0.71533203, 2.4765625, -0.2734375, -1.2353516, 0.7060547, 0.107421875, -2.4589844, 1.6044922, -0.8535156, 0.03253174, 0.16247559, -0.24841309, 2.8105469, 0.8774414, 2.9980469, 1.1494141, 1.15625, 1.6552734, 0.4321289, 0.77978516, -1.5009766, 0.023330688, 0.9814453, -0.32104492, -0.4880371, 0.35180664, 1.0947266, 2.4648438, -2.2773438, 0.85791016, 2.2734375, -2.921875, 1.0693359, -1.8027344, -1.5859375, 1.9453125, -1.078125, -0.4086914, -0.58447266, 3.25, 0.8823242, 1.5996094, -1.8017578, -0.9892578, -2.5390625, -1.1289062, -1.3232422, -3.4980469, 0.03765869, 0.81884766, 0.7714844, -0.33520508, -1.6005859, 1.3789062, -0.8129883, 0.055725098, 0.8574219, 0.058441162, -3.1132812, -2.4746094, -1.2451172, 0.2512207, -3.9589844, 1.9277344, -1.0556641, 0.44580078, 0.09613037, 1.5478516, 0.2553711, -2.15625, -0.6040039, -0.62841797, -0.52246094, -1.0380859, 0.28808594, 2.4101562, -0.52441406, 2.1035156, -1.7285156, -2.78125, -2.2871094, 0.3227539, 0.84814453, -2.859375, -0.8564453, 0.14172363, -2.6835938, -2.0859375, -2.5703125, 0.6308594, 0.17871094, 0.37109375, -1.1699219, -0.7475586, 0.56884766, -0.41723633, 0.44995117, 0.19140625, 0.37890625, -0.8598633, -0.8613281, -2.0585938, 0.12792969, 0.9897461, 0.62646484, 1.4248047, -0.6923828, -0.6582031, 1.078125, -3.0019531, 0.51953125, -0.6826172, 1.3310547, 1.2275391, -0.32641602, 1.3046875, 3.7226562, -0.34887695, -1.9697266, 0.37670898, -4.421875, -0.0657959, -0.31079102, -1.9785156, -0.34057617, 0.97216797, 0.2536621, -1.1572266, 3.7890625, 1.9755859, -0.63183594, -0.46801758, 0.15441895, 0.40185547, 0.30664062, -0.84521484, 1.5605469, 0.38671875, 1.0302734, 0.2578125, -0.49267578, -0.54296875, 0.3215332, -1.1445312, 0.7963867, -2.0820312, 0.80859375, 0.11981201, 0.15319824, -1.3066406, 1.6669922, -0.06829834, 0.7001953, 0.48632812, -2.3925781, 1.3925781, -1.0595703, 4.4804688, 0.28466797, -2.3574219, -0.97802734, -2.7402344, 2.6035156, 1.8017578, -2.0859375, -1.6845703, 1.0761719, -2.0507812, -0.94384766, -3.3730469, 1.3857422, 0.0039405823, 0.47753906, -2.40625, -1.1621094, 2.7011719, -2.1445312, -0.64697266, 0.43847656, 0.37548828, 0.33984375, 0.8691406, 2.8105469, -2.65625, -0.953125, 0.6645508, 0.13366699, -0.7402344, -0.92041016, 1.9501953, -0.5859375, -0.84716797, 0.39990234, -1.1826172, -2.1269531, -0.47265625, 2.0097656, -0.7285156, -0.08148193, 1.9111328, -0.83740234, 2.0039062, 2.1777344, -0.6455078, -0.96777344, -0.056610107, -2.9335938, 0.7397461, 2.5214844, -2.0839844, 3.0703125, 1.2539062, -0.07952881, -1.4658203, -0.8364258, -2.9101562, 0.23803711, 2.8183594, 2.5253906, 2.2753906, 1.0732422, 0.054107666, 0.5439453, 1.9462891, 3.4355469, -0.8076172, 2.3164062, 1.3955078, 3.2128906, -1.9658203, -1.90625, -0.3779297, -0.6616211, 2.0292969, -0.0670166, -0.49926758, 0.90966797, -2.2148438, 0.42089844, -1.4414062, -0.76123047, -1.4013672, 1.609375, -1.1064453, 0.05883789, 1.8339844, 0.8828125, -0.57421875, 0.609375, 0.91845703, -1.4824219, -2.2734375, 0.4819336, -1.6074219, 0.038360596, -0.8227539, -2.2363281, 0.73779297, 1.7011719, 0.5571289, 0.94873047, -0.07489014, -0.8051758, -1.1298828, 1.6591797, 1.8271484, 0.2783203, -0.11047363, 0.81396484, -0.68896484, 1.2587891, 0.14624023, 2.0644531, 0.27734375, -1.5332031, -2.6425781, 2.7285156, -0.46435547, -1.1669922, -0.2553711, -3.5722656, -0.19445801, -2.5214844, 1.8339844, 0.44506836, 1.2744141, -1.0039062, -1.9804688, 2.4628906, 0.78466797, 1.2314453, 3.5820312, 0.2475586, -1.1455078, 0.5839844, 0.13647461, 0.7714844, 0.15893555, 3.640625, -1.2763672, 0.5234375, -0.29736328, 2.8789062, -0.4934082, -2.8945312, -0.8232422, 3.5214844, -1.3476562, 0.39794922, 1.6298828, -0.47314453, 1.1982422, 0.5058594, 0.22827148, 1.0839844, -1.0097656, -1.6269531, 0.121520996, -0.9770508, -0.0446167, 1.6220703, -1.8037109, 4.2304688, -0.19787598, 0.98095703, 2.9101562, -0.15930176, 0.6201172, 0.50439453, -2.5429688, -2.2929688, 0.17468262, 0.9555664, -1.5644531, -1.9775391, 1.515625, 3.0625, -1.5703125, -0.5229492, -2.9277344, -1.1347656, 0.92578125, -0.32470703, -0.06951904, -1.2646484, 0.65527344, 3.1269531, 1.0175781, -0.40234375, 0.72021484, -0.0019874573, 1.2744141, -0.24255371, -3.4609375, -0.39379883, 1.2578125, 0.6298828, 2.1914062, 1.0634766, -1.1835938, 0.023376465, -1.7792969, -2.1035156, -1.3291016, -1.3076172, 0.28051758, 0.88964844, 0.09643555, -0.105041504, -0.33422852, 0.9057617, 0.55322266, 0.7290039, 0.13903809, -1.2304688, 2.1679688, 0.6723633, 0.41210938, -1.0351562, 1.0185547, 0.30200195, 3.453125, 0.5, 0.5004883, -0.107055664, 0.44384766, -1.5556641, -1.1796875, -0.5410156, 0.76904297, 3.1992188, 0.32055664, 0.80859375, 1.3818359, 0.79345703, -1.0126953, -1.453125, -2.8574219]}, "B07G4899R5": {"id": "B07G4899R5", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry\nDescription: What are The Benefits of Using Camplux Single Burner Camping Stove ?

          1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What's more,the powder coating makes it is waterproof and anti-rust.
          2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
          3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
          4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
          5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it's more safety to use wrench in order to tighten).
          6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
          7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
          8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

          Specifications:

          Color: Black
          Product Type: Single Burner
          Material: Cast Iron
          Product Extension Size:15.75\u00d715.75\u00d728.8 Inch\uff0840*40*73cm\uff09
          Product Size without Extension:15.75\u00d715.75\u00d716.9\uff0840*40*43cm\uff09
          Type of Gas:Propane
          Heat Output:200,000 BTU/HR
          Regulator Length: 5 feet / 60 inch/152.5 cm
          Usage Condition:Normal Outdoor

          What You Will Get:

          1 x Propane Gas Camp Stove
          1 x High Pressure CSA Certified Regulator
          1 x User Manual

          Inquiry & after sales service: support@camplux.com
          Service hotline: (844)-538-7475\nFeatures: 200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time\nDetachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking\nEasy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb\nHigh Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It's hard to destroy and has a long service life\nWok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services\n", "embedding": [-1.2705078, 2.21875, 1.6582031, 0.44726562, -0.3996582, 0.75390625, 0.9082031, -1.7236328, -2.1601562, 2.4550781, 1.1289062, -0.38330078, 1.1875, -2.4960938, 0.84033203, 0.21875, -0.9785156, -0.54003906, -0.4296875, 0.7397461, 3.0566406, 0.42407227, 1.6132812, -1.0517578, 1.2607422, -0.16345215, 3.3203125, -2.3203125, -0.30859375, -2.28125, 1.8017578, 0.36889648, 0.15686035, 1.1269531, -3.2050781, -0.14916992, -0.97021484, 1.0458984, -3.6464844, 0.38183594, 0.29516602, -1.328125, 3.9023438, -0.85058594, -1.1103516, -1.3740234, 0.4326172, 1.3896484, 0.6538086, -0.76464844, -0.33422852, 0.22094727, -0.38500977, 0.8623047, -2.5429688, 0.96191406, 0.9160156, -2.1660156, 1.5341797, 0.11816406, 1.2802734, 1.6699219, -1.6855469, 2.2890625, -1.7167969, -0.60302734, 1.5800781, -1.9384766, -0.010131836, -0.16271973, 2.5722656, 0.67089844, -0.1538086, -0.22399902, -0.6928711, -0.17980957, -3.296875, 0.93408203, 3.8867188, 0.53027344, -2.3046875, 1.7900391, 2.7519531, -0.98339844, -1.2861328, 0.6953125, -0.96972656, 0.09094238, 1.6777344, 0.6640625, -1.1601562, 1.0332031, -2.2929688, -4.1523438, 2.1230469, -0.63623047, 0.66259766, 0.9736328, 1.0986328, 0.96533203, -1.5605469, -0.42407227, -1.5517578, -0.2397461, -2.8339844, -0.24328613, 2.0097656, 1.6699219, -3.1835938, 2.3242188, -2.8554688, 0.2454834, 1.4853516, -0.4501953, 1.6083984, -0.71533203, -1.5673828, -0.5234375, 3.2695312, 0.36279297, 3.7421875, -0.9526367, 0.2763672, -1.0390625, 1.8349609, 1.7011719, -0.80322266, 0.55322266, 3.0214844, -1.78125, -1.9423828, -1.5888672, 1.5742188, -0.2866211, -1.78125, -1.9130859, -1.2695312, -1.9707031, -2.546875, 0.27612305, -3.0566406, 1.0996094, 1.5908203, 0.1373291, -4.1640625, -0.5761719, 0.17456055, 2.4375, 1.2060547, -1.7324219, 0.22106934, -3.078125, -0.73046875, -1.2763672, 1.2119141, 0.099121094, -2.2148438, -1.9160156, 3.1171875, 1.1191406, 0.5854492, -3.4160156, -1.9560547, 2.6015625, -1.8466797, -2.6015625, 0.50146484, 0.50097656, -1.4824219, 1.0986328, 0.3942871, -1.7880859, 0.5644531, 0.72509766, -0.52001953, -1.1621094, -0.25048828, 2.6425781, 1.7470703, -0.63671875, -1.8369141, -1.7949219, 0.94970703, 2.6386719, 0.40356445, -0.6591797, -0.33081055, 0.47070312, 0.71435547, -2.1582031, -1.9912109, 1.4931641, -0.7871094, 0.20043945, -0.70458984, -1.9824219, -1.5126953, -1.6953125, 0.105895996, 0.9350586, -0.8808594, -1.1621094, -0.9194336, 0.859375, -2.9648438, -1.0507812, -0.38061523, -0.22583008, 2.7402344, 2.5878906, 1.2382812, -0.9868164, 2.3144531, 0.27807617, -0.84814453, -0.68310547, 2.8769531, -0.56640625, 1.859375, 1.8779297, 0.12854004, -1.6953125, 1.1044922, 2.7011719, 1.8535156, 2.25, 0.32543945, 0.57177734, -1.6992188, -1.4658203, 2.2910156, 0.15478516, -1.1523438, 0.67089844, -1.3242188, 3.2128906, 1.1376953, -0.4946289, -0.04916382, -1.0527344, 0.081848145, -1.6455078, 0.41430664, -0.5205078, -0.37768555, 0.72021484, -0.5263672, 1.6542969, 2.7089844, 1.4541016, 0.5341797, -0.056640625, -0.10424805, -1.8017578, -0.5600586, 0.73876953, 1.6171875, 0.09112549, -1.5966797, -3.5488281, 2.0703125, 1.7480469, -1.1865234, 1.9306641, -0.079833984, -0.04937744, 2.9160156, 0.85546875, -2.6367188, 0.09887695, 1.1533203, 0.41796875, 4.1835938, -0.2631836, 1.4355469, -1.5478516, -0.7709961, 1.9648438, 0.36523438, 2.578125, 0.3232422, -2.7460938, 1.71875, -2.2011719, 0.7631836, 0.65478516, 2.4511719, -0.28442383, -1.0664062, 0.80566406, 6.3671875, -1.4609375, -2.9414062, 1.8388672, -1.1513672, 1.6396484, 0.9453125, 1.1425781, 0.21801758, 0.5551758, 1.2539062, 0.16430664, 0.0012245178, 0.97558594, -0.59521484, -1.6269531, 1.0810547, -2.1777344, 1.4277344, 1.296875, -0.35717773, 0.19067383, -2.1132812, 1.0878906, -1.46875, -0.81591797, 1.6103516, -2.2890625, 1.6669922, 1.6855469, 1.2802734, 2.3886719, 0.37231445, -1.6865234, 0.7661133, -0.0096588135, -0.05505371, 1.3857422, 0.6635742, -1.6806641, -1.3105469, -1.5244141, 0.5864258, -1.5800781, -1.6601562, -0.20617676, -0.60058594, -2.0039062, -0.13354492, -1.8515625, -0.7758789, 0.07128906, -2.4414062, 0.35473633, -1.7919922, -2.6503906, -0.83935547, 0.10974121, -1.1875, -0.084350586, 0.64697266, 1.9433594, -1.0898438, -4.6171875, -0.88964844, -0.43310547, -0.6196289, -0.2980957, -1.5292969, 1.6738281, -1.4072266, -0.14916992, -0.025405884, 0.45117188, 0.16723633, -2.4042969, 1.0488281, -2.5039062, 1.0400391, -0.43115234, 1.0458984, -0.49243164, -0.18969727, -2.703125, -1.1132812, 0.15527344, -1.9179688, 3.3261719, -1.3310547, 0.69628906, -0.35375977, -2.6289062, -0.71875, -1.0927734, -3.3378906, -0.43798828, -1.2832031, -1.7490234, -2.046875, -4.8671875, -0.00868988, -0.9526367, 0.21374512, -1.0439453, -1.1279297, -0.90185547, 0.2614746, -1.2753906, -0.25830078, -0.33325195, -0.7050781, -1.8583984, -1.390625, -0.35009766, -0.57958984, -0.625, 0.03074646, 2.0625, 1.2939453, 0.8803711, -0.5097656, 2.2128906, 0.4584961, -0.40161133, -1.0849609, -3.9179688, 2.4316406, 1.9140625, 0.1850586, 0.79003906, -1.2294922, -1.6318359, -1.4541016, -0.5083008, 2.8984375, 1.5595703, 3.8984375, 0.83984375, -0.14086914, 0.74316406, 1.21875, -0.7055664, -2.7675781, 0.52685547, 5.3046875, -2.0820312, 0.000289917, 2.0078125, 2.6542969, -2.5273438, -0.1751709, 0.35327148, 1.75, 2.4492188, 2.2089844, 1.7685547, -0.4975586, -0.75390625, -0.8823242, 2.8183594, -0.015594482, 0.47558594, -0.43847656, 0.7265625, 1.0068359, 1.0585938, 0.56884766, 1.71875, 2.1816406, 2.3144531, 2.9140625, -2.3671875, 0.26000977, 0.13317871, 0.9243164, 0.15783691, 2.1855469, -0.48266602, -0.04977417, -1.1982422, -0.6723633, 0.9863281, -1.8193359, 0.81689453, 0.72216797, 0.67333984, 1.2744141, 0.35986328, -0.007789612, 0.92285156, -0.39868164, 2.5019531, -0.12609863, 0.07110596, 2.7421875, -0.8828125, -1.2705078, -1.8125, 0.85839844, -1.3876953, -1.3085938, 0.90722656, -0.16430664, -0.17224121, -2.1269531, -1.3261719, 0.60595703, -2.3496094, 4.2734375, 1.6738281, -0.7036133, -1.1503906, 0.06286621, 0.41918945, 1.6162109, -1.015625, -0.92578125, -2.8632812, 0.18408203, -0.10449219, 0.3479004, 1.5810547, 1.6738281, -2.1210938, 0.8227539, -2.625, -0.35717773, -0.5864258, -2.1464844, -0.5966797, 1.6601562, 0.39672852, 1.1240234, -0.3696289, 3.4414062, -3.7382812, -0.86621094, 2.7558594, -3.21875, -0.6850586, -1.8232422, -4.0039062, 3.3242188, 0.0009727478, -1.0898438, 2.34375, -0.6152344, 0.018814087, 1.1757812, 0.8129883, -1.9589844, -1.8496094, -1.2910156, 2.1679688, -3.2148438, -0.51220703, 1.9003906, -0.09295654, -2.0820312, -0.24438477, 0.11883545, -0.48608398, 0.7758789, 2.0488281, -2.6308594, 0.98535156, -0.41503906, -0.3383789, 0.6513672, -0.41723633, 2.3320312, -0.9433594, -0.116760254, -1.3046875, 0.49414062, 1.3261719, 0.61279297, -0.13635254, 2.8535156, 1.6689453, 0.87597656, -0.57421875, 1.2236328, 1.3710938, 0.6069336, -2.8828125, -2.171875, -0.33154297, -0.8823242, 0.1237793, -0.38745117, -0.75683594, -1.9951172, 2.0800781, 1.3427734, 1.1132812, 2.3183594, 0.41674805, 0.28955078, 1.8515625, 0.23937988, -1.8398438, -1.0097656, 0.19665527, 0.4831543, -1.8857422, 0.14538574, -0.60058594, -1.3564453, 0.96728516, 0.5517578, -1.0634766, 2.6269531, 1.4345703, 0.6508789, 2.8554688, -1.9619141, -3.421875, 0.35498047, 0.390625, 0.9223633, 1.1396484, 0.12939453, -0.32910156, 3.3515625, -0.28955078, -0.6503906, -1.3779297, 1.6240234, -2.0078125, 0.79541016, -0.9267578, 2.1601562, -1.2109375, -0.63916016, 2.4335938, 0.10131836, 2.5566406, -0.88427734, -1.2724609, -0.27685547, -0.27026367, -1.9150391, -1.3173828, 0.70751953, -0.92871094, -1.1132812, -0.07763672, -0.0869751, 0.32910156, 2.8242188, -0.12176514, 3.0214844, 1.1181641, 0.28564453, -1.5458984, 0.2578125, -0.76220703, -1.3964844, 1.265625, 1.3505859, 1.2988281, 4.5859375, 2.0371094, -0.18225098, 2.1621094, 0.45898438, -0.9506836, -2.2089844, 0.42285156, -1.5234375, 0.9760742, -0.04031372, -2.765625, 0.8100586, 2.7617188, 0.35107422, 1.2412109, -0.40600586, -0.23840332, -0.7036133, -2.4199219, -0.029403687, -1.5322266, 1.1630859, 1.1552734, -1.3398438, -0.09899902, -0.23583984, 0.17553711, 2.2050781, -0.62109375, 0.15527344, 2.5976562, 0.7260742, 0.9589844, -0.31835938, -0.95947266, -2.3574219, 0.16833496, 2.8378906, 1.2128906, 2.0292969, 0.22949219, 0.79833984, -1.2851562, -1.7275391, -1.9316406, 1.8808594, -2.9101562, -0.4921875, -0.13342285, 1.3261719, -0.15905762, -0.6958008, -1.2304688, 0.078125, 3.5449219, 0.67041016, 0.23706055, -0.8876953, -0.23022461, -1.65625, -5.2421875, -0.3864746, 2.1367188, 0.45117188, -0.9213867, -0.78027344, -0.9824219, 1.0585938, -0.8173828, 1.3857422, -2.8789062, 0.49536133, -0.18041992, -0.24279785, -1.0810547, 0.35620117, 0.43188477, 0.7114258, 1.2216797, -0.06500244, -0.38891602, -1.9501953, -1.0595703, 1.5644531, -2.2558594, 0.6328125, -0.41430664, -1.3798828, 0.8364258, 3.6679688, 0.16516113, -2, 1.1699219, -1.6875, 0.44750977, -0.39453125, -1.1279297, 1.7792969, 1.0693359, -0.17578125, 1.2802734, 0.02116394, -0.61376953, -0.6635742, 0.74560547, 0.09716797, 0.53466797, -0.5366211, -1.3320312, 0.4033203, 0.042419434, 1.2783203, 1.8544922, 0.20117188, -2.4257812, -1.8652344, -3.8691406, -0.1439209, -0.9326172, 0.059631348, -1.5722656, 2.140625, 0.7128906, -1.1269531, 0.26464844, 0.1182251, -0.5830078, -0.94091797, 2.0625, -1.0019531, 2.3671875, 1.1318359, -1.4326172, -3.6816406, -3.6601562, 2.0136719, 0.5698242, 1.4941406, -1.7285156, 1.3320312, -1.2148438, 0.9550781, 0.33154297, 1.2763672, 2.5722656, 0.82958984, -1.0761719, 2.6992188, 2.9199219, 0.5463867, 0.91064453, 0.08544922, -0.026443481, -1.2666016, 3.9765625, 1.4023438, -0.5253906, 2.265625, -1.421875, 2.5234375, -1.4003906, -2.1855469, -0.52001953, -2.4140625, -1.3447266, -1.2851562, -0.6455078, -0.5600586, 2.5761719, 0.5180664, 0.42700195, 1.0693359, 2.2109375, -0.8388672, 0.64160156, 1.5830078, 1.7626953, 0.29052734, 1.8447266, 0.013298035, -0.60839844, 1.6894531, -2.4707031, 0.05960083, 1.5507812, -0.010505676, -1.1806641, 3.4804688, 2.03125, 2.7675781, 0.7626953, 1.9042969, 1.578125, 0.84716797, 3.0820312, 0.42749023, 1.7167969, 2.5664062, 1.4794922, -1.2871094, 3.03125, 0.19616699, -0.11010742, -0.9482422, 0.68603516, -1.0556641, -1.9404297, -0.91503906, -2.3339844, 0.8774414, -5.3242188, 0.75634766, -1.2861328, 1.0595703, -1.2167969, 1.0253906, -0.20947266, -0.80029297, -0.62402344, -1.96875, -1.6533203, -0.8120117, 1.5009766, -0.7128906, 1.1015625, 0.5180664, -4.0507812, 0.19702148, -2.5273438, -2.5605469, 0.0345459, 3.1523438, 1.1757812, 1.3994141, 0.7573242, 1.8037109, 2.265625, 0.1116333, 2.2128906, -1.8222656, 1.1474609, -0.7714844, 3.7207031, -0.5151367, -0.87646484, 2.7695312, -0.61572266, -3.3964844, -3.6503906, 1.8056641, -0.44482422, 0.6503906, 2.7460938, -2.9140625, 3.8632812, -0.65771484, 2.5742188, -2.4023438, 1.9736328, -0.073913574, -3.4238281, -1.4199219, 0.19580078, 0.7128906, 4.1757812, 1.9121094, -1.6611328, 0.97753906, -1.1962891, 1.6347656, -0.59277344, 0.1340332, 1.15625, 1.4228516, -1.6142578, 2.3574219, 1.0732422, -1.0605469, -0.5864258, 3.203125, 2.0214844, 0.21484375, -0.89697266, -1.9648438, 0.51953125, 0.21105957, -1.2167969, -0.20385742, -0.69091797, -2.265625, -1.5908203, -0.095825195, -2.3105469, -1.7617188, 0.6669922, 1.0068359, -2.6972656, 0.38720703, 1.9580078, 0.21289062, 1.3134766, 0.85302734, -1.0039062, -1.1162109, -2.2207031, 0.34106445, -1.6923828, -2.8652344, -0.24121094, -0.6455078, 1.8417969, -0.34643555, 1.4677734, -1.0322266, 0.33129883, 0.79589844, 1.1191406, -1.3916016, -1.3613281, -0.13452148, -1.5068359, -1.46875, 2.3320312, -0.37158203, 1.2988281, -0.44482422, -2.6855469, -1.5917969, -1.0595703, -0.8071289, 1.6738281, 2.6367188, 0.91015625, 1.4550781, -1.6738281, -3.4609375, -2.0957031, -1.1337891, 2.2070312, 0.36254883, -0.3930664, 0.23498535, 0.5961914, 2.046875, -1.5419922, -0.89160156, 0.021774292, -0.078125, 0.9897461, -0.3815918, 1.1533203, 0.035247803, 1.0097656, -1.3017578, 2.6992188, 2.4238281, -0.42993164, 0.6557617, 1.4511719, 0.11627197, -2.4121094, -0.13500977, -2.6328125, -2.1054688, 0.81347656, 0.22595215, 3.3515625, 0.28076172, -1.9990234, -3.5195312, -1.2080078]}, "B07XDJKQ22": {"id": "B07XDJKQ22", "original": "Brand: VIVOHOME\nName: VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

          Features:
          -The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
          -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
          -The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
          -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
          -Great stove for camping; It will really simplify your canning process

          Product Specification:
          -Rated output: 36,000 total BTU/hr, for 18,000 BTU each
          -Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
          -Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
          -Note: The product is equipped with a 10 PSI regulator, and it's also suitable for the 20 PSI regulator.
          -Stove Height: 29\" without windscreen /35\" total

          Package Includes\uff1a
          -1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

          Product Warranty:
          -We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended\n2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "embedding": [-1.4570312, 1.8369141, 3.1972656, 0.83496094, -0.59472656, 1.4287109, 0.54345703, -1.1074219, -2.2988281, 3.3183594, -0.26367188, -0.15527344, -1.4169922, -2.359375, -1.2841797, 0.71435547, -1.9140625, 0.2512207, 0.20812988, -0.22265625, 1.7744141, 1.3642578, 0.25634766, 1.1533203, -0.14990234, -1.1757812, 3.3242188, -3.7011719, -0.60058594, -1.4042969, 1.6435547, 2.0996094, 1.0273438, 2.2714844, -4.015625, 0.2763672, -1.1230469, 0.63134766, -2.3515625, -1.3066406, -1.1220703, -1.71875, 4.4609375, 0.16333008, -2.4589844, -1.4345703, 1.5224609, 0.10595703, -0.14538574, 0.27246094, 0.4284668, 1.2695312, 0.06137085, 1.7050781, -2.9785156, 1.8730469, -1.2128906, -2.2871094, 2.9316406, -0.15795898, -0.10211182, -0.28588867, -2.5527344, 1.7988281, 0.50439453, 0.49121094, 2.3378906, -1.1474609, -0.69677734, -0.63134766, 0.74121094, -0.9433594, -1.2744141, 0.3149414, -0.59228516, -1.3681641, -2.2988281, 2.0976562, 3.7382812, 0.21166992, -1.5644531, 3.5078125, -0.057128906, 0.74853516, 0.07543945, 0.81591797, -1.1240234, 0.40600586, 3.328125, -0.10760498, -1.2607422, 1.1767578, -2.5175781, -4.2382812, 0.11907959, -0.3894043, 1.5537109, -1.3691406, -1.4130859, 0.8798828, -1.3505859, 2.0527344, -0.6489258, 0.19165039, -1.6171875, 0.36376953, 3.3027344, 1.1884766, -1.9179688, 1.9365234, -3.140625, -1.1669922, -0.87646484, 0.19128418, 1.4013672, 1.4296875, -1.6074219, -0.1920166, 3.7539062, 0.16259766, 4.2773438, -0.02331543, 0.92529297, -1.2636719, 1.9570312, 2.2265625, 1.5019531, 0.5629883, 3.8203125, 0.3996582, -1.5634766, -1.0302734, 1.9365234, 0.10443115, -1.3496094, -1.3339844, -1.3427734, -2.2167969, -5.65625, 0.12988281, -1.8574219, 0.5234375, 1.2939453, 0.056915283, -3.4355469, -2.4648438, 1.1376953, 3.6210938, 0.6923828, -2.8574219, 0.68115234, -1.8652344, -0.68066406, -1.7412109, 2.640625, 0.45166016, -0.8305664, -1.9873047, 2.5253906, 0.85009766, -0.4543457, -3.2890625, -2.0800781, 1.1464844, -0.26513672, -2.9921875, 0.67529297, 0.6269531, -0.15161133, 2.2304688, -0.12237549, -2.2050781, 0.67333984, -1.1611328, 1.1884766, -0.7451172, -1.1103516, 2.1367188, 1.2998047, -0.3544922, -3.3964844, -2.4453125, 0.39916992, 3.5839844, -0.7651367, -1.5976562, 1.0253906, -0.28759766, 1.4726562, -1.3779297, -0.7421875, 0.64501953, 0.5395508, -0.23535156, -0.001701355, -1.8613281, 0.3864746, -3.4550781, 0.4873047, 2.0742188, 0.06060791, -1.6279297, 0.090270996, 0.1685791, -3.1503906, 0.45117188, -2.4199219, 0.3881836, 1.5957031, 3.0917969, 1.3525391, -0.42773438, 3.2324219, 0.86865234, -1.3720703, -1.5976562, 1.8085938, 0.11065674, 0.86572266, 1.4208984, 0.42114258, -1.0058594, 1.328125, 1.7333984, -0.9970703, 1.7529297, 0.64453125, -0.75097656, -1.3798828, -1.1923828, 2.6425781, 1.6914062, -0.10723877, 0.60302734, -1.6435547, 2.7167969, 2.7089844, -1.1435547, -0.18920898, -0.4008789, 0.03189087, -1.4794922, 1.2773438, 1.1660156, -1.9902344, 0.6323242, -0.33642578, 1.6015625, 2.3222656, -1.0644531, -1.5908203, 0.012329102, 0.2980957, -0.5024414, 0.35107422, 0.20373535, 1.1826172, -1.6894531, -1.1894531, -1.6865234, 2.2753906, 0.48583984, -0.8691406, 0.9194336, -0.12719727, -1.4023438, 2.4355469, 1.9033203, -3.5078125, 0.7783203, -0.008460999, 1.1884766, 3.3339844, -0.25878906, 2.9726562, -0.65283203, -1.3007812, 2.28125, 1.203125, 1.78125, 1.1025391, -0.8754883, 2.2636719, -1.9111328, 0.29223633, 0.16687012, 2.5976562, 0.14562988, -1.5908203, -0.21936035, 5.46875, -0.93115234, -2.4140625, 1.8857422, -3.5410156, 0.010986328, 0.9980469, 0.27856445, 0.91064453, -0.12225342, 1.0537109, -2.3339844, -0.21777344, 1.2060547, -2.6855469, -1.4580078, 1.234375, -3.3398438, 1.1103516, 0.6801758, -0.6767578, -0.5517578, -1.7949219, -1.3730469, -1.8867188, 0.10424805, 3.21875, -2.640625, 3.203125, 1.8632812, -0.64453125, -0.042663574, -2.2011719, -2.0527344, 0.35620117, 0.6274414, 1.109375, 1.8798828, 0.4807129, -0.79589844, -1.2197266, -2.9199219, -0.1459961, -0.69628906, -0.6015625, -1.7822266, 0.32592773, -1.6074219, 0.46875, -0.5605469, 0.21569824, 0.5361328, -2.875, -1.2792969, -1.625, -3.671875, -0.076538086, -0.703125, -1.2246094, -0.39648438, 1.5332031, 1.2373047, -0.796875, -4.65625, 0.14648438, -0.6640625, -1.6757812, -0.50634766, -3.03125, 0.44750977, -0.5854492, 0.7792969, 0.6298828, 0.79541016, -0.6772461, -1.5615234, -0.60595703, -3.7753906, 0.6308594, -0.08526611, -0.33032227, -0.14904785, 0.9169922, -1.6992188, -0.8886719, 0.3334961, 0.6020508, 2.2246094, -0.34326172, 0.99560547, 0.22045898, -1.9277344, -1.4267578, -1.6669922, -2.1132812, -0.47924805, -0.6254883, -1.2949219, -0.7763672, -5.0625, -1.0244141, -1.4169922, -0.40649414, -0.9472656, 1.2832031, 0.640625, 0.5126953, -1.4335938, -1.703125, -0.4609375, -0.33496094, -1.7314453, -0.08917236, -2.1425781, -0.55908203, -0.65185547, -0.24243164, 0.83203125, 1.0751953, -0.14489746, 0.7651367, 0.50097656, 0.02961731, 0.95458984, -1.2109375, -2.4023438, 2.5390625, 2.2207031, 1.9833984, 0.70703125, -1.8564453, 0.6401367, -1.8320312, -1.2558594, 3.2109375, 1.4414062, 2.7734375, -0.18981934, -1.2285156, 1.0429688, 1.9580078, 0.29589844, -0.25024414, -0.1385498, 3.4199219, -1.8857422, -1.4951172, 2.4746094, 2.1835938, -3.59375, 0.014442444, 1.1796875, 0.2878418, 2.8378906, 1.3261719, 0.54541016, -1.4140625, -0.76660156, -1.2763672, 3.9863281, 1.9277344, -0.1920166, -2.5878906, 1.0166016, -0.42260742, 0.2409668, 3.2636719, 0.3918457, 0.98583984, 3.0371094, 1.5957031, -2.6953125, -0.084228516, 0.06774902, 0.5488281, 1.1416016, 3.4921875, -0.8979492, -0.73339844, -1.8095703, -0.58251953, 2.359375, -0.4482422, 1.5058594, 0.72509766, 1.0078125, 0.7006836, -0.93066406, 0.2006836, 1.2910156, -0.7636719, 3.0117188, 0.24829102, -1.2060547, 1.9042969, -1.9697266, -1.2255859, -2.2226562, 2.6757812, -0.6933594, -0.14245605, 0.13830566, 0.91259766, -2.0136719, -2.1699219, -0.1472168, 0.42211914, -0.28930664, 2.4785156, 1.4902344, -1.2451172, -0.16564941, -2.2460938, 0.6147461, 1.46875, 0.6274414, -0.67578125, -0.03604126, 0.55908203, 0.20703125, -0.75097656, 1.8300781, 1.7441406, 0.6616211, -0.7080078, -2.1269531, -1.3662109, 2.0332031, -1.3388672, -0.3293457, 3.1875, 0.09161377, 0.50878906, 1.1289062, 3.5058594, -2.7890625, -1.7294922, 0.97558594, -2.203125, 0.06640625, -1.7382812, -3.3808594, 1.1367188, 0.671875, -0.69189453, 2.34375, -0.8881836, 0.43286133, 0.19421387, 0.5698242, -1.8710938, -1.1298828, -1.8798828, 0.9916992, -3.0761719, 1.28125, 0.9682617, -1.0146484, -3.6796875, -0.7104492, 0.68652344, 0.40454102, 2.2597656, 2.5078125, -2.0800781, 0.025512695, -0.5727539, 0.65722656, -0.08282471, 0.33569336, 1.8574219, -0.859375, 1.1142578, -0.765625, 1.7285156, 1.2148438, 0.6669922, 1.3603516, 3.1152344, 0.6430664, 1.1708984, -1.7900391, 2.3007812, 2.1640625, -0.7529297, -1.2880859, -1.8251953, 0.26586914, -1.5039062, -0.09680176, 0.43969727, -0.5004883, -2.2285156, 1.4599609, 1.4023438, 0.98095703, 1.9443359, 0.6923828, -1.7958984, 0.5961914, -0.609375, -1.1611328, -1.8613281, 0.57421875, -0.23669434, -2.71875, 0.1887207, -0.6855469, -0.8383789, 1.0019531, -0.57421875, -0.23132324, 2.7421875, -0.17150879, 2.3710938, 3.3867188, 0.03677368, -2.5332031, 1.6845703, -1.3457031, -0.24169922, 0.077819824, -0.68066406, -0.48535156, 1.0839844, 2.1757812, -1.9951172, -1.0761719, -0.84716797, 0.97314453, -1.9511719, -2.3320312, 1, -0.42993164, -1.4423828, 2.6445312, -0.026626587, 1.484375, -2.8417969, -0.41235352, -0.88964844, 1.1855469, -1.4267578, -1.4667969, -0.48999023, 0.29003906, -0.31201172, 0.2388916, -0.9770508, -0.4375, 1.5761719, 0.6694336, 3.5957031, 0.36132812, 0.9189453, -0.5566406, 0.54003906, -0.7583008, 0.32348633, 0.45581055, -0.48535156, -1.2431641, 2.9179688, 1.3017578, -0.3544922, 3.5644531, -1.1679688, -1.1435547, -0.21643066, 1.0800781, -1.6855469, 1.6318359, -0.77246094, -1.6162109, 1.2626953, 2.875, 0.3671875, 0.21154785, -1.5849609, -0.04537964, 0.035491943, -3.3242188, 1.1630859, -0.8911133, -0.6196289, -0.5288086, -2.2597656, -0.8076172, -1.1630859, 1.7363281, 2.09375, -0.6533203, 0.011398315, 2.4160156, -1.3662109, 0.1875, -0.34326172, -0.484375, -4.5859375, -0.1126709, 2.1914062, -0.8955078, 2.4628906, -0.70751953, -0.09436035, -0.6245117, -0.7495117, -1.2197266, 3.4863281, -2.7792969, -0.6748047, 1.2070312, -0.26586914, -1.7197266, -0.28979492, -2.2519531, -1.9814453, 2.2890625, 1.1845703, -0.43139648, 0.44726562, -0.41479492, -1.6728516, -3.8085938, 0.040618896, 0.50927734, -0.89941406, -0.7446289, 0.7519531, -1.1416016, -2.5976562, 0.98291016, -0.29492188, -1.4658203, -0.22802734, -0.19787598, 0.49536133, -0.99316406, -1.2568359, 0.9980469, 3.0644531, 1.1289062, -0.03652954, -0.5942383, -2.8515625, -0.46118164, 0.33129883, -1.5625, 1.7529297, 0.6176758, 0.42163086, 0.61035156, 1.8974609, -0.8540039, -0.76220703, 2.640625, 0.47143555, 0.88964844, -1.0283203, -1.5800781, 2.21875, 0.28686523, -1.9775391, 0.6035156, -0.9321289, -1.6103516, 1.4013672, 0.8388672, -0.063964844, 1.7294922, 0.125, -1.9707031, 1.2666016, 0.9345703, 0.86279297, 1.3251953, 1.5332031, -0.9091797, -2.8769531, -3.6621094, -0.74902344, -2.1542969, -0.7866211, 0.077819824, 0.88134766, 1.0644531, 1.2216797, 0.27197266, -0.92626953, 0.27929688, -1.5664062, 1.1601562, -0.0024223328, 4.2539062, 2.7871094, -0.93847656, -2.3574219, -1.8769531, -0.80371094, -1.0605469, 1.1191406, -0.88623047, 2.0644531, -3.0703125, -0.07562256, -0.50390625, 2.6386719, 2.7675781, 0.9472656, -1.3007812, 1.3974609, 2.1660156, -0.26586914, 0.78759766, 0.07019043, 0.5102539, -0.95996094, 2.8574219, 0.66259766, -0.27197266, 3.6699219, -1.2324219, 2.0488281, -1.3623047, -1.8457031, 0.84228516, -0.19592285, -2.2890625, -2.6367188, -1.0712891, -1.1005859, 2.9375, 0.8833008, -0.2298584, -0.79345703, 2.7070312, -0.3322754, 2.0351562, 2.3261719, 1.2324219, 1.0625, 1.2587891, 0.2614746, 0.13171387, 3.0585938, -0.7055664, 1.8066406, -1.0322266, -1.3378906, -0.61572266, 1.6474609, 0.77490234, 1.9941406, 2.9101562, 1.4785156, 1.0234375, 0.9453125, 2.1601562, 0.07409668, 1.3125, 1.8652344, 0.7763672, -2.2148438, 1.5205078, 1.0449219, -1.1953125, -1.5751953, -0.09625244, -0.578125, -0.20263672, 0.33642578, -0.69873047, 1.6689453, -4.9335938, 1.6308594, -0.87890625, 2.5664062, 0.16174316, 0.9038086, 0.5541992, -0.48242188, -1.0888672, -1.78125, -0.33618164, -0.9272461, 1.2832031, -0.8598633, 0.2668457, -0.6142578, -3.4726562, 0.6166992, -0.52685547, -2.4824219, -1.0615234, 1.2373047, 1.0761719, 1.21875, -0.5913086, 0.30078125, 1.3300781, 0.45043945, 0.8251953, -1.0361328, 1.0361328, 0.23547363, 3.0996094, 0.6040039, 0.07495117, -0.1038208, -0.1850586, -3.9101562, -4.5273438, 0.93652344, 1.4130859, 2.2480469, 1.0166016, -3.0976562, 3.3808594, 1.3681641, 2.1933594, -0.9897461, 2.1835938, -1.1601562, -0.8833008, -1.1337891, 0.11077881, -0.04537964, 4.5195312, 1.4257812, -0.054748535, 2.0488281, -1.1542969, 0.25146484, 0.5263672, 1.0078125, 0.107788086, 0.11047363, 0.84375, 0.4753418, 1.8398438, -1.6044922, 0.2697754, 2.3144531, 1.5, 0.107788086, 2.2167969, -1.2734375, 2.6582031, 0.45629883, -0.42333984, -0.54345703, -1.3701172, -1.4453125, -1.2099609, -0.27319336, -1.5439453, -1.5019531, 0.9291992, 0.64160156, -0.90527344, 0.81152344, 1.0732422, -0.0025730133, 1.7128906, 0.70947266, -0.5136719, -1.5859375, -0.7060547, -0.12695312, -1.4150391, -2.3261719, 0.13671875, 1.2929688, 2.2246094, 0.6616211, 0.64501953, -1.0498047, -0.4169922, 0.44555664, 0.8613281, -0.6982422, 0.038635254, -0.24975586, 0.84228516, -1.2138672, 3.5214844, -0.66308594, -0.9003906, -0.1361084, -2.6855469, -0.41577148, 0.32104492, -1.2939453, 1.9931641, 2.3300781, 1.4775391, 1.1103516, -2.5878906, -1.7880859, -2.3496094, -0.6538086, 1.5585938, -0.0011558533, -0.20898438, 0.55322266, -0.3791504, 1.4248047, -0.6513672, -0.18151855, 0.2602539, -1.7949219, -0.20703125, 0.49438477, -1.2246094, 0.4506836, 2.7832031, -0.75439453, 2.8027344, 0.8881836, -1.1777344, 2.7539062, 1.8261719, 1.2138672, -2.7988281, 0.11352539, -1.7548828, -0.49267578, 0.4868164, -0.16271973, 2.2910156, 1.2695312, -1.65625, -3.9257812, -2.5996094]}, "B01DAOM5SW": {"id": "B01DAOM5SW", "original": "Brand: AmazonBasics\nName: Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set\nDescription: \nFeatures: Durable, charcoal grey finish patio heater with heat output of 46,000 BTU's\nHeater features a piezo ignition and safety auto shut-off tilt valve\nStandup patio heater cover protects against rain, snow and other outdoor elements\nUsing click-close straps, cover easily snaps around heater to secure the cover on windy days\nCover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater\n", "embedding": [0.7758789, 0.6220703, 3.5820312, -0.7817383, -1.1210938, 0.8208008, 0.69140625, -3.234375, -0.04611206, 2.0039062, 1.0732422, -0.20703125, -0.73583984, -3.8261719, 1.8955078, -1.2626953, 0.7788086, 1.9121094, 2.0898438, -2.4140625, 2.9277344, 0.1821289, -0.51416016, -0.7060547, 0.03277588, -1.2412109, 2.9472656, -1.3427734, -0.3552246, -1.3789062, -0.1394043, 2.2265625, -1.2939453, 1.8134766, -0.4296875, -2.4414062, 1.2353516, 2.0703125, -3.65625, -1.0292969, -0.90234375, -1.5351562, 0.42211914, 1.2900391, -1.4267578, 0.29907227, 2.28125, 1.1621094, 0.2644043, -0.43041992, 0.9589844, 0.46923828, 0.5341797, -0.97802734, -1.1113281, 1.1953125, -1.8671875, -3.6230469, 0.95458984, -0.33666992, -0.9868164, -1.8769531, -2.0742188, 3.1386719, -0.06088257, 1.4755859, -0.46142578, 1.1445312, -1.8408203, 0.7504883, 2.1855469, 0.11828613, -2.3398438, -0.6459961, 0.54833984, -0.7368164, -1.8662109, 1.8134766, 4.0976562, -1.8603516, -1.0732422, 0.46069336, -0.16088867, 1.6279297, -1.3564453, 0.6245117, -0.95166016, -0.9589844, 1.6865234, -0.52490234, 0.41845703, 1.1816406, -1.8925781, -1.5380859, -1.4658203, -1.4179688, 0.0009422302, 0.75683594, 0.033691406, 1.7988281, 0.4609375, -0.39672852, -0.016845703, -1.6621094, -1.1298828, -0.58691406, 2.84375, -0.38867188, 0.24304199, 1.9091797, -3.1914062, 0.22241211, -0.08886719, -2.0078125, -0.96484375, 0.76464844, 0.41137695, 1.6953125, 2.6230469, 1.9882812, 2.7050781, -1.6230469, 1.21875, -4.1367188, 1.1611328, -0.5786133, 0.14257812, -0.3544922, 3.1464844, -0.80126953, 2.1621094, -0.46728516, 0.4411621, 1.4804688, -1.2666016, -0.7290039, -1.2871094, 0.13977051, -4.0898438, -0.8647461, -1.5644531, -0.04660034, 0.2241211, 1.1767578, -3.5742188, -1.7851562, 0.27856445, 2.1210938, -2.8398438, -0.9458008, -0.052581787, -2.2792969, -1.4033203, -2.1367188, -0.09649658, 1.0107422, 1.9746094, -4.1523438, 2.6601562, -0.107055664, 1.2089844, -0.5996094, -0.58691406, 2.7089844, 0.8442383, -1.9570312, 0.6669922, 1.3544922, 0.57666016, 3.5039062, -0.47021484, -3.7285156, -1.8349609, 0.32250977, -0.38378906, -0.1439209, -2.2929688, 0.8417969, -1.7666016, 2.0839844, -1.2363281, -0.57177734, 1.2783203, 2.6855469, -0.328125, -2.0078125, -2.8339844, -3.8144531, -0.3605957, -0.12780762, 0.11883545, -0.08135986, -0.52246094, -1.6572266, -1.6201172, -3.7558594, -0.24389648, -2.0410156, 1.4453125, 0.8256836, -1.7470703, 0.36865234, -1.1445312, -0.4951172, -2.1152344, -1.4570312, -0.53027344, -0.41210938, 0.3881836, -0.14404297, 1.3583984, 0.03552246, 1.4355469, 0.6669922, 2.1582031, -0.8852539, 1.6503906, -2.4101562, -1.3671875, 2.5546875, -0.39379883, -0.2890625, 0.31445312, 1.0400391, -2.4902344, 3.1035156, 1.3007812, -0.11077881, -3.5878906, -1.4052734, 1.3173828, 2.0175781, -0.28076172, 1.2041016, -0.72265625, 2.8339844, 0.37451172, -0.26416016, 1.4716797, -1.8574219, 0.6586914, -1.5517578, -0.49951172, -0.12451172, 0.42944336, 3.7832031, 0.42382812, 1.7041016, 0.051483154, -1.2021484, -0.45263672, -2.0976562, 0.56591797, -2.0507812, 1.3740234, 1.4150391, 1.0009766, 1.8554688, 0.13464355, -1.7900391, 1.8867188, 0.38720703, -1.7939453, 0.00013494492, -1.4394531, -0.9399414, 3.546875, 1.3105469, -1.953125, -0.23254395, 0.20349121, 1.2285156, 1.4199219, -0.18249512, 1.2822266, 1.375, 0.79345703, 2.4980469, -0.44677734, 1.2958984, 2.125, 1.5849609, 2.796875, -1.3583984, 0.039611816, -1.2158203, 0.18029785, 1.4951172, -0.64990234, 1.8583984, 1.5869141, 0.14562988, -1.9833984, 3.6445312, -0.25878906, 1.9589844, -0.16223145, -1.2421875, -0.15649414, -2.4238281, 2.8710938, 0.022979736, 0.41870117, 1.6914062, -2.4082031, -0.19372559, 0.22570801, -2.1171875, 0.18103027, -1.0449219, -0.38964844, -3.2734375, -2.6113281, -0.7788086, -2.9199219, -0.76464844, 0.6767578, -3.9902344, 1.171875, 0.3881836, 0.4802246, -0.34326172, -1.2919922, -1.7734375, 3.0761719, 1.4462891, -1.6855469, 1.546875, 0.40551758, -1.3076172, -1.015625, -0.9277344, 2.4707031, -2.5683594, -2.71875, -1.1845703, 0.0413208, -0.2211914, 0.14672852, -0.6748047, 2.0175781, 0.8574219, -2.8007812, 1.5146484, -2, -3.2558594, -0.95947266, 1.8525391, -1.6357422, 1.2744141, -0.046875, -0.09588623, -2.2753906, -3.8613281, -0.051116943, 1.1748047, -1.8486328, 0.43115234, -0.5258789, 1.1787109, -0.8935547, 0.86621094, 0.5097656, -0.32006836, -0.028717041, 0.0758667, 0.09777832, -4.4179688, 1.5048828, -2.4257812, 0.23876953, -0.16723633, 2.2246094, -2.6054688, -0.43237305, 3.1679688, -0.27929688, 4.9375, 1.3261719, 1.9677734, 0.19689941, 0.0018444061, 2.015625, -0.30395508, -2.5859375, -0.28979492, -1.3525391, -1.9501953, -1.0537109, -2.6972656, 0.5332031, -1.6132812, -0.98291016, 0.69873047, -1.4462891, -0.2578125, -1.4941406, -2.6757812, 0.08117676, -2.3066406, -1.40625, 0.1015625, 1.0722656, -2.2929688, -1.0380859, -1.9648438, -1.2929688, -0.66015625, 2.2734375, 1.2890625, 0.68359375, 2.5410156, -0.41210938, 3.5820312, 0.8925781, -4.4804688, 2.0566406, 4.015625, 1.625, -1.2851562, -1.5605469, -2.4433594, -0.8491211, -0.9038086, 2.1523438, -0.76464844, 1.7675781, 0.11627197, -0.25219727, -0.30615234, 1.1767578, 0.076660156, -0.86621094, -0.75390625, 2.2597656, -1.5009766, -1.1660156, 2.6757812, 2.46875, -1.8583984, -1.0224609, 1.5195312, -0.28442383, 1.9951172, 0.8535156, -2.4296875, 0.92626953, 3.7597656, 1.8808594, -0.15393066, 1.1230469, -2.3320312, -1.0146484, 1.5175781, 1.8085938, 2.9277344, 0.13659668, 0.57373047, 1.6191406, -0.057128906, -0.07904053, -1.2978516, 0.5078125, 1.2128906, 1.3662109, 0.15625, 1.3066406, -0.79785156, 1.8115234, 1.9746094, 1.3896484, 0.26416016, -1.15625, 1.0878906, 2.6738281, 0.33789062, -1.3320312, 0.24194336, -0.23120117, 0.5913086, -1.1630859, -0.39160156, -0.6328125, 0.61572266, 0.10986328, -2.1347656, -1.46875, -1.6054688, 3.4882812, 0.28173828, -2.984375, -0.09942627, 2.1699219, -0.63623047, -0.17407227, -1.5253906, 0.16699219, -0.72558594, 1.9589844, 0.4074707, -1.328125, 0.059387207, -3.5390625, 1.0449219, 0.035369873, -0.8486328, -2.1152344, 0.33862305, -2.1445312, 1.4863281, 0.36645508, -0.6274414, 1.9003906, -1.1884766, -1.0703125, -2.1738281, -2.1230469, 2.4492188, -1.2285156, -0.9536133, 1.9794922, -0.09051514, 1.7792969, -1.4921875, 3.0742188, -0.9916992, -3.4472656, 0.29516602, -0.19519043, 1.3007812, -1.1767578, -5.0898438, 0.19848633, 1.65625, -1.0820312, 1.1767578, 0.93896484, 0.33691406, -0.57666016, -1.0957031, -2.2617188, -2.5097656, -2.0371094, -0.82421875, -3.0332031, -0.76464844, 0.9770508, -2.4316406, -2.2519531, -2.9726562, -0.045440674, -1.1787109, 0.076538086, 2.5019531, -0.6015625, 0.15625, -0.2319336, 2.0996094, -0.030426025, 1.0517578, -0.53759766, 0.40063477, 0.23657227, 0.99609375, 1.7177734, 0.4140625, 1.1757812, 1.5078125, 2.5449219, -0.014083862, -2.46875, 0.7260742, 1.8076172, 1.7294922, -0.17822266, -2.5527344, 1.0644531, -0.63183594, 0.89208984, -1.4931641, 0.3359375, 1.0537109, -1.2666016, 0.33520508, 2.359375, 0.5366211, 3.0078125, 0.64697266, -3.4707031, 0.30566406, -1.1435547, -1.2197266, -1.9707031, 0.51171875, -0.8911133, -0.5439453, 0.48388672, -0.5415039, 0.8696289, -1.8837891, -2.4960938, -0.44189453, 1.0507812, 2.1542969, 2.8242188, 0.9067383, -2.7460938, -0.72265625, -0.26904297, -1.4697266, 0.06573486, 0.4831543, 1.0966797, 2.4882812, -0.9272461, 1.3916016, -2.6289062, 0.54833984, 0.72265625, -0.5151367, -0.6098633, -2.2148438, -1.4199219, -0.30615234, -2.0800781, 0.7416992, 0.77783203, 2.2207031, -1.9941406, 0.11480713, -2.1132812, -0.6713867, -0.7939453, 0.09387207, -1.8261719, -0.7182617, 2.1210938, 0.85791016, -0.89404297, -0.5078125, 0.9086914, -1.5322266, 2.7480469, -0.09240723, -2.2539062, -0.26635742, 0.58984375, 0.82958984, -1.6230469, 1.1279297, 0.68066406, -0.28198242, 2.1914062, 2.109375, 0.49804688, 2.2460938, 0.8666992, 0.12683105, 1.3554688, 1.1884766, 0.03414917, 1.6298828, -1.4179688, -3.5214844, -0.37451172, 4.640625, -1.1171875, 0.44091797, -1.1171875, -2.78125, -0.296875, -1.5634766, -2.1582031, -1.3017578, 1.6103516, -1.1689453, -0.45288086, 0.74072266, -1.9951172, 1.7705078, 4.7304688, 0.17407227, -1.2851562, 3.734375, 0.31396484, -2.8496094, -0.032287598, 0.22094727, 0.15795898, 0.1541748, 1.0722656, 1.03125, 1.5732422, 0.81640625, 0.4387207, -2.1523438, 0.22607422, 1.3486328, 3.1855469, -2.4082031, -0.8022461, 1.6142578, 0.4099121, 0.63720703, -1.4130859, -0.3178711, 0.3552246, 0.5263672, -1.2705078, 0.33618164, 1.4179688, -1.6367188, -1.9101562, -1.4208984, -0.06854248, 0.3786621, -2.6328125, 0.92333984, -1.3828125, -1.0595703, -0.671875, -0.08898926, -0.5859375, 1.7294922, -1.4873047, -1.8056641, 0.028884888, -0.30566406, -1.25, 1.1728516, 2.9824219, -0.6738281, 0.5722656, -0.87109375, -2.2050781, -1.6894531, 0.025466919, -1.4345703, 2.0449219, 0.4453125, 0.3017578, 3.6210938, 3.3476562, 1.5439453, -1.2304688, 1.9335938, 0.7089844, 1.34375, 3.1699219, -0.8300781, 1.5117188, 0.93652344, -1.3261719, -0.19726562, 0.7504883, 0.023132324, 0.15905762, 3.0039062, 0.9013672, 0.5527344, -0.3918457, 1.7910156, 0.23571777, 0.42285156, 2.3574219, -0.3955078, -1.9677734, -1.1103516, -2.3242188, -0.51171875, -3.6464844, -2.1699219, -2.6875, -1.1240234, 1.3085938, 0.8779297, 0.19116211, 1.1660156, 0.9970703, 1.7666016, -1.7753906, -0.25830078, 0.6230469, 2.1523438, 0.48095703, -0.8149414, -3.453125, -2.5917969, -1.1083984, -0.42578125, 1.6269531, -2.0742188, -0.4091797, -3.9023438, -0.110839844, 0.35839844, 2.2617188, 1.2402344, -0.2626953, -2.1308594, 2.1210938, 2.9941406, -0.48632812, -0.112854004, -1.1044922, 3.5703125, -2.0800781, 3.2109375, 2.8828125, -0.0033283234, 1.0761719, 0.45581055, 0.96972656, -0.24194336, -0.87109375, 1.9853516, -2.2460938, -0.18188477, -0.6020508, -0.71777344, -3.0449219, -0.51123047, -0.14831543, 0.4753418, 0.05053711, 1.4912109, 0.6123047, 1.1308594, 1.5556641, -0.5053711, 0.8125, -1.5283203, -1.5996094, -0.121520996, 3.5585938, 0.084350586, 1.5791016, -1.1640625, 0.05078125, -1.5283203, 1.0166016, -2.3105469, 0.053588867, 5.0234375, 3.2539062, 2.5742188, 1.0419922, 0.5625, 1.0605469, 1.03125, 1.3066406, -1.9892578, -0.48486328, 1.203125, 3.1464844, -0.6376953, -0.93847656, -0.6660156, 3.4589844, -1.2841797, -0.91308594, 1.8798828, 0.2052002, -0.8071289, 0.18896484, -1.2119141, 2.0097656, -0.97998047, -0.8354492, 0.47021484, 2.1328125, 0.64746094, -1.1923828, 1.8144531, -1.5283203, -0.7446289, 0.12536621, -0.5576172, 1.0976562, -2.1503906, 1.9824219, 1.1826172, -0.61376953, -0.6933594, 0.91845703, 1.5693359, 1.6542969, -0.15991211, 1.6953125, 0.9272461, 1.578125, -1.5458984, 0.037109375, -1.7207031, 0.7373047, 1.3583984, 2.3652344, -1.0029297, -1.6044922, -1.5878906, -0.57714844, -2.3164062, 0.74072266, 1.4296875, -0.79833984, 1.5410156, 0.3166504, 1.0878906, -0.21972656, 1.8115234, -0.9013672, 0.55078125, 1.4042969, 0.1394043, -1.1826172, 0.5288086, -2.0683594, 3.0585938, -0.009216309, 0.08679199, 1.4101562, -2.2734375, 0.09338379, 1.4111328, 1.5898438, -1.6396484, 1.6953125, -1.2841797, 0.90234375, 2.6757812, 1.3574219, 0.4819336, 0.105529785, 2.0703125, -0.49121094, 1.3271484, -1.2158203, 0.9189453, 2.0625, 0.546875, 0.32861328, -1.0556641, -1.5517578, 0.51464844, 1.3857422, -0.31030273, -1.2392578, 2.0175781, 0.0869751, -0.16906738, 1.5117188, 1.8662109, -1.2148438, 1.2783203, -0.37060547, -2.3925781, -0.017913818, -1.1865234, -0.5371094, -0.19140625, -0.93066406, -0.61376953, 1.0371094, 1.3583984, 1.71875, 1.3417969, -0.83251953, -2.3007812, 0.9458008, 0.73291016, -1.0253906, 0.8535156, -0.4309082, 0.33251953, -2.3417969, -0.40820312, 3.265625, -1.3671875, -1.1464844, -1.7519531, -2.0195312, 1.4541016, 0.07714844, 3.3359375, 2.8828125, 0.7397461, 1.3134766, -1.3935547, -2.8476562, -2.0351562, 0.734375, 3.0625, -0.8833008, 0.6225586, 0.8417969, -1.0546875, 3.0410156, 0.97509766, -1.1875, -1.4707031, -1.1054688, 2.6953125, -0.26391602, 1.7246094, -0.48242188, 0.98583984, 0.4987793, 2.4746094, 0.035980225, 0.6376953, 1.2011719, 1.3271484, 0.6113281, -3.8261719, 0.8696289, 0.9169922, 1.0673828, 0.9404297, 0.20935059, 0.19946289, 0.3088379, -0.33740234, -3.2675781, -1.8701172]}, "B01HQSUMII": {"id": "B01HQSUMII", "original": "Brand: ProCom\nName: ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black\nDescription: \nFeatures: TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft.\nDEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room.\nECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.\nSAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected.\nDIMENSIONS: 25\u201d H x 33.5\u201d W x 13\u201d D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900\n", "embedding": [-2.2050781, -0.57373047, 2.1582031, 2.6113281, -2.4042969, -0.81152344, 0.1842041, -0.017181396, -1.4042969, 2.7597656, 2.671875, 0.48120117, -0.89208984, -1.3916016, 0.45825195, -0.41625977, 0.6274414, 0.51171875, -1.0214844, 0.8642578, 0.6542969, 0.42285156, -0.85253906, 1.0634766, -0.70996094, 1.1699219, 3.0820312, -2.2050781, -1.0585938, -2.0507812, -0.45141602, 0.33251953, 0.73535156, 2.0234375, -1.6953125, -0.9379883, -2.4472656, 1.1220703, -1.4814453, -0.14562988, -1.4755859, 0.4975586, 1.84375, 0.45825195, -3.0117188, -2.4628906, 0.9238281, 0.5649414, -0.8828125, 1.7763672, 1.1240234, 1.8447266, -2.3828125, 1.2041016, 0.1303711, 1.3896484, 0.3154297, -0.8457031, -0.23168945, 0.64453125, 0.32177734, -0.06317139, -1.4482422, 0.2277832, -0.30639648, 0.50634766, 0.001156807, -0.92871094, -1.1953125, -0.90185547, 2.8574219, 0.92529297, 0.18652344, -0.6948242, -1.4550781, -0.82958984, -4.0664062, 0.7709961, 3.2773438, -0.059173584, -0.91845703, 1.1894531, 0.68847656, -0.36694336, -0.02178955, 0.98828125, 0.62353516, -0.31469727, 0.54541016, 1.3330078, -1.9824219, 1.2685547, -0.34814453, -2.9765625, 0.72265625, 0.65771484, 1.4384766, 1.4912109, -0.92089844, 0.4609375, 1.4833984, 1.4990234, 0.84765625, -0.31518555, -1.1953125, -1.203125, 2.6582031, 1.7978516, -2.9667969, 1.0341797, -1.8916016, -0.45703125, 1.0576172, -0.97509766, 0.21557617, 0.65185547, 1.0429688, 1.1201172, 2.2011719, 0.34643555, 1.8251953, -0.8833008, 1.1992188, 0.19763184, 1.5478516, 2.1367188, -2.2226562, -1.3828125, 1.8007812, -0.48901367, -1.6357422, -1.1142578, 3.2578125, -1.2490234, 0.9511719, -1.0751953, -1.9824219, -2.2597656, -3.2851562, -1.2949219, -1.6835938, 1.1689453, -2.296875, 0.6269531, -4.4804688, -1.25, 0.80859375, 0.23327637, 2.7480469, -1.0537109, 2.7890625, -3.296875, 0.9868164, -2.8535156, 1.2080078, -0.890625, -0.44580078, -1.0410156, 2.2167969, 2.1621094, 0.9116211, -1.0996094, -3.2324219, 2.1210938, 0.6303711, -1.4785156, 0.6791992, 0.29101562, -1.8017578, 1.7119141, -0.2290039, -1.8300781, -1.4941406, -0.35766602, -0.008148193, -0.8383789, -0.6298828, 2.9804688, 1.4677734, 0.29248047, -3.0585938, -0.4008789, 0.7089844, 1.34375, -0.7885742, 1.0585938, -0.07659912, -0.3942871, 1.984375, -2.4453125, 0.16906738, 2.3125, 0.40478516, -1.2626953, 0.009147644, -1.7626953, -0.3737793, -2.890625, 2.2519531, 0.31201172, 0.39770508, 0.47802734, 0.6738281, 0.42138672, -1.2880859, -1.0810547, -0.15795898, -0.98828125, 1.1396484, 2.53125, 1.8310547, -0.74365234, 3.0625, -2.46875, -0.5292969, -1.2285156, 2.1210938, 1.8095703, -1.546875, 1.9824219, 0.26538086, -0.1171875, 1.5615234, 1.8505859, -1.2421875, 2.1601562, 1.7412109, 0.028121948, -3.8671875, -2.8789062, 2.6035156, -0.20178223, -0.73339844, -0.5317383, -0.45751953, 2.2871094, 1.1416016, -0.7714844, 0.84472656, 0.41748047, 0.80371094, -0.014015198, 0.25024414, 1.8476562, -0.99560547, 1.8144531, -0.30004883, 2.0253906, 1.6494141, 1.4033203, -0.5107422, -0.8413086, -0.3173828, -0.73339844, -1.578125, -1.4736328, 0.69384766, -1.3935547, -1.3564453, -3.3320312, 1.7646484, 1.2041016, -1.6425781, 0.038146973, -1.3798828, 0.26586914, 3.4101562, 0.038757324, -1.8876953, 0.26708984, 1.5039062, 1.7763672, 1.4179688, 1.4482422, 1.0947266, -0.83154297, -0.37524414, 3.3828125, 0.37060547, 1.4091797, 0.7895508, -2.5683594, 2.0019531, -0.921875, 0.24780273, 0.76220703, 1.2412109, 0.9169922, -2.9199219, -2.4003906, 3.5039062, -0.734375, -3.8984375, 2.8320312, -2.3925781, 0.16955566, 0.65722656, 1.1503906, 0.79003906, -2.3144531, 1.4912109, 0.89404297, -1.859375, -0.79833984, 0.5517578, -1.28125, 0.008651733, 0.28442383, 0.22888184, -0.39257812, 0.095703125, -2.5917969, -2.3945312, -0.14025879, -3.7109375, 0.13745117, 2.9257812, 0.30932617, 2.4082031, 0.96728516, -0.0048294067, 0.7504883, -0.8989258, -1.8037109, -0.07891846, 0.24902344, 2.234375, 2.9980469, -0.091308594, -0.8339844, -0.9580078, -2.4414062, 1.0351562, -1.4501953, -1.9130859, -0.03152466, -0.79052734, -3.78125, 0.27270508, -0.14587402, -0.09411621, 1.6289062, -2.6972656, -0.7895508, -0.60498047, -2.3242188, -0.120788574, -2.5292969, -0.32177734, -0.80029297, 3.4179688, 0.8623047, -1.2548828, -2.1914062, -0.90234375, 0.124694824, -2.96875, -1.8417969, -1.7324219, 1.0722656, -0.72802734, 0.06536865, -1.1923828, -0.14086914, -0.08605957, -0.5253906, 1.2744141, -2.6289062, 0.9506836, -2.1953125, 0.6171875, -0.3071289, 0.2277832, -1.5273438, -2.3105469, 0.70458984, -0.9868164, 2.5625, -0.6274414, 2.2246094, -0.013084412, 0.43945312, -0.69873047, -2.9726562, 0.011550903, -1.1132812, -1.0722656, -2.0722656, -1.5400391, -2.1699219, -0.30297852, -0.03756714, -0.9145508, 0.3857422, -1.0859375, 0.8354492, -1.0605469, 1.8632812, -0.8774414, 1.2285156, -0.31884766, -2.7382812, -1.1171875, -0.58740234, -1.2226562, -1.0546875, -1.1328125, 1.2558594, -0.039855957, 2.2773438, 1.1679688, 1.5830078, -0.9770508, -0.13842773, 0.10003662, -3.8417969, 1.0957031, 0.7158203, 0.41479492, 0.013702393, -0.7626953, -2.0761719, -1.1787109, -0.6635742, 2.1445312, 3.1210938, 3.2050781, 0.117126465, -2.1503906, 1.9414062, 2.09375, 0.07342529, -1.8105469, -0.7416992, 3.7382812, -3.3789062, -0.41430664, 1.296875, 0.83496094, -1.0644531, -2.96875, 0.15197754, -0.6376953, 4.3789062, 1.3935547, -0.13916016, 0.76708984, 0.2619629, 3.0527344, 2.0917969, 0.024734497, -0.5048828, -2.7695312, 1.5146484, 1.2783203, 1.7509766, 5.1328125, 0.012626648, 0.09631348, -0.14929199, 0.4104004, -2.4316406, 0.20825195, -0.21154785, 0.12213135, 0.55810547, 4.3867188, 0.5180664, -0.17871094, -1.7558594, 0.5551758, -0.7993164, -1.6835938, 0.8901367, 2.4414062, 1.1337891, -0.037872314, 1.5849609, -0.6777344, 1.8046875, 0.5053711, 2.4746094, 1.1933594, 0.29882812, 2.6875, -1.8203125, -0.54345703, -2.0625, 1.9013672, -1.1152344, 0.7192383, 0.6953125, 1.6240234, -2.0429688, -1.8916016, -0.05758667, 0.8598633, 1.5380859, 2.7148438, -0.061431885, -1.4052734, -0.9760742, -1.3369141, -0.45239258, 2.1542969, -1.5332031, 0.97314453, 0.90966797, 2.6152344, -0.61621094, -0.7939453, 1.0791016, 0.46875, -0.3125, 0.2142334, -3.4550781, -2.3945312, -0.029449463, -0.6723633, 1.6669922, 3.5644531, 0.31347656, 1.4365234, -0.51171875, 0.9506836, -1.6777344, -1.6123047, 1.5791016, -2.1269531, 0.3564453, -1.9150391, -2.7851562, 1.0019531, -0.46728516, -0.05307007, 1.4677734, 0.3630371, -0.54589844, -0.14404297, 0.31347656, -2.9980469, -2.2792969, 0.47631836, 0.64453125, -1.6933594, 0.9433594, 1.9960938, -0.7597656, -1.1591797, 0.62109375, 0.28393555, 0.054870605, 1.4970703, 1.5615234, -2.2265625, 0.5595703, -0.4440918, 0.2590332, 0.14526367, -1.1513672, 3.4980469, 0.9277344, 0.47924805, -1.7089844, 0.1730957, 1.78125, -1.3847656, 0.11254883, 2.9140625, 0.8569336, -0.8911133, -0.33251953, 2.6816406, -0.015274048, -0.25976562, -1.7197266, -1.4492188, -2.0605469, 0.7631836, -0.5644531, -1.3193359, 0.75439453, -2.4765625, 0.09509277, 1.0917969, -0.5263672, 1.9179688, 2.2128906, -1.6904297, 1.0087891, 0.7739258, -3.359375, -1.2724609, -0.5385742, -1.6337891, 0.6196289, 0.13647461, -0.4104004, -0.13244629, -0.49536133, -1.3925781, -3.25, 1.7109375, 1.3896484, 1.7421875, 1.7666016, -2.0898438, -1.5878906, -0.14550781, 0.3166504, 1.2421875, -0.3256836, 0.61279297, 0.3088379, 2.3066406, 3.2597656, -2.5078125, 0.11584473, 1.6669922, -0.75634766, 0.57470703, -1.0146484, -0.14904785, -0.7416992, -0.078430176, 4.71875, 1.0009766, 1.265625, -2.4550781, 0.5805664, -0.27856445, -0.64404297, -2.1386719, 1.8583984, 0.21032715, 0.56103516, 1.0830078, 1.0712891, -0.09661865, 0.4494629, 1.1445312, 0.105773926, 2.21875, 1.2773438, 1.3232422, -0.19616699, 0.39648438, -1.2841797, -0.8339844, 1.1367188, -0.67333984, -1.3994141, 3.9628906, 1.6103516, -1.5214844, 1.5644531, -1.9746094, -3.0507812, 0.46533203, -0.24645996, -0.54589844, 0.6098633, 1.6142578, -2.765625, -0.6303711, 2.5273438, -0.6972656, -1.6132812, -1.3710938, -2.1894531, 0.9785156, -3.3320312, -1.2207031, 0.012908936, -1.0976562, 0.113098145, -1.5097656, -1.4277344, -1.71875, 1.0019531, 2.0019531, 0.33520508, -0.8774414, 0.8129883, 0.26611328, 1.4472656, -1.2714844, -0.12963867, -2.2421875, 0.06329346, 1.4023438, -2.2929688, 2.3359375, 0.40722656, -0.8198242, -1.2363281, -2.4238281, -0.4814453, 0.85498047, -2.2792969, -1.3574219, 2.4960938, -0.96240234, -0.46289062, 0.49975586, -2.0527344, -1.0703125, 2.1914062, -0.5390625, -0.23327637, 0.32006836, -0.8017578, -1.5703125, -3.8925781, -2.5957031, 0.9472656, -2.0664062, -1.3310547, -0.24963379, -1.1953125, -0.48413086, -0.28173828, 2.1660156, -2.7617188, -0.50634766, -1.5810547, -0.1529541, 0.45263672, -0.47460938, 0.044769287, 1.5107422, 1.4111328, -0.9169922, -0.09918213, -3.6464844, -0.3815918, 0.011405945, 0.5942383, 2.0683594, 0.9350586, 0.8886719, 0.6669922, 1.6728516, -1.0390625, -2.6679688, 2.1660156, 1.15625, 0.8725586, 1.2587891, -0.8564453, 0.036895752, 0.22875977, -0.3088379, 1.1982422, 0.75927734, -0.066711426, -0.32983398, -0.14624023, 0.45874023, -0.75683594, -0.01121521, -1.2451172, 0.008293152, 0.8774414, 0.7133789, 0.29760742, -0.88720703, -1.0458984, -3.7324219, -2.0449219, -0.7919922, -1.7822266, -0.7338867, -1.2177734, 1.3837891, 0.6118164, 1.0839844, -1.6396484, 1.2265625, -1.3525391, -1.3134766, 1.0048828, -2.0273438, 2.0761719, 0.8642578, 0.24438477, -2.6054688, -0.14160156, 2.3261719, -1.4023438, 1.5996094, -0.6303711, 1.2070312, -1.84375, 0.8354492, 0.5131836, 2.2773438, 0.5097656, 1.4228516, -1.1074219, 0.45532227, 1.4765625, -0.27563477, 1.1191406, 1.1103516, 2.2949219, -0.7138672, 3.5507812, 1.2558594, -0.51171875, -0.037231445, -0.6230469, 0.4399414, -1.7822266, -1.1123047, 2.28125, -1.1328125, -0.97216797, 0.2097168, -2.1152344, -1.6220703, 2.9824219, 1.1132812, 0.48120117, -1.1816406, 2.4707031, 0.43432617, -0.64746094, 1.359375, -0.6923828, -0.14477539, 0.31201172, -0.58935547, -0.57958984, 3.0957031, -0.4609375, 0.33642578, 0.65234375, 1.3945312, -0.83740234, -0.6567383, -1.0087891, 3.2695312, 2.5527344, 1.6855469, 2.84375, 0.84716797, 0.5932617, 1.1025391, 1.8535156, 0.43286133, 1.2978516, -0.6621094, 1.9277344, 0.42749023, -0.21484375, -2.390625, 1.2470703, -0.013328552, 0.5888672, -1.7255859, -0.19226074, 0.859375, -3.84375, 1.3320312, 0.07116699, 0.37695312, -0.7348633, -0.36523438, 0.14953613, -0.021057129, 1.4179688, -1.1728516, 0.042907715, -0.66015625, 0.34716797, 0.23535156, -1.5107422, 2.421875, -0.5605469, 1.5917969, -1.1210938, -1.8378906, 1.6816406, -1.828125, 0.50878906, -0.026824951, 0.31201172, 1.4580078, 2.4804688, 0.22790527, -0.7597656, -1.6816406, 1.1435547, -0.49658203, 2.6875, 1.9042969, 2.59375, 1.4736328, -0.1887207, -3.1660156, -2.7402344, 0.78222656, -0.26416016, 0.6274414, 1.3017578, -2.8867188, 4.3242188, 1.8066406, 0.9526367, -3.2246094, 1.1376953, 0.36865234, -1.1582031, 1.5263672, 2.3652344, -1.3837891, 2.5585938, 0.38623047, -0.030044556, 2.484375, -1.8388672, 1.1689453, 1.4667969, 0.40063477, 1.71875, 1.3330078, 0.30786133, 1.1679688, 1.625, -0.93359375, -1.1640625, 0.5932617, 2.4042969, -1.2773438, -0.60498047, -0.8598633, 0.8261719, -0.37890625, -0.609375, -0.6191406, -1.8779297, 0.024917603, -1.5234375, -1.3642578, -0.36572266, -1.3095703, 0.9033203, 0.25048828, -3.3886719, 0.6118164, 3.3710938, -0.74121094, 1.9003906, 0.64208984, -0.75390625, 0.56640625, 0.91845703, 2.1152344, -1.3974609, -1.2900391, -1.1767578, 0.23608398, 2.3515625, -0.19799805, 0.12976074, 2.0664062, -0.68652344, 1.765625, 1.0683594, 0.23388672, 0.6411133, -0.2915039, -1.6464844, -0.52734375, 2.2421875, -0.6748047, 0.49047852, -1.6708984, -1.7587891, -2.5039062, 0.41967773, 0.13220215, 2.5742188, 1.3925781, 0.5415039, 0.8120117, -1.1533203, -2.0429688, -2.9824219, -0.11260986, 1.4335938, 0.5390625, -0.070251465, 0.171875, -0.07788086, 0.67529297, -0.13916016, -1.0087891, -0.79003906, -0.3791504, 0.0063667297, -0.43286133, 0.4326172, -0.5942383, 2.5683594, -0.49951172, 2.6738281, 0.7734375, -0.94433594, 1.7089844, 1.1484375, 0.6972656, -1.6474609, -0.6953125, -2.9082031, -1.0029297, 0.36669922, -0.75097656, 2.3457031, 0.10333252, -0.640625, -2.1367188, -0.5541992]}, "B07S2KQ8PL": {"id": "B07S2KQ8PL", "original": "Brand: C-M Propane Fuel\nName: Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack\nDescription: Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.\nFeatures: \n", "embedding": [0.21984863, 1.1142578, 0.2421875, 1.5810547, 0.7265625, -1.7958984, 0.2722168, -1.5224609, -0.45825195, 3.125, 0.4765625, -0.010765076, 1.7744141, -3.1191406, -0.57128906, -1.390625, -2.1699219, 1.9931641, -0.49487305, -0.028518677, 2.6484375, -0.4658203, -0.27416992, -2.2207031, 1.7851562, 0.7910156, 2.2070312, -3.4296875, -1.4960938, -0.38378906, 0.52490234, -1.5, -1.6005859, 1.4296875, -2.4121094, 0.9370117, -1.3408203, -0.32299805, -3.2910156, -1.2109375, -1.421875, 1.9794922, 4.1875, -1.1357422, -0.38500977, -1.3564453, 0.53515625, 0.56347656, 1.0214844, -1.2177734, 0.89501953, 1.2353516, 0.09942627, 0.1595459, -1.6044922, 0.36450195, 1.0029297, -0.51904297, 2.3691406, 0.04711914, 1.0537109, 0.11383057, -2.1894531, 1.4873047, -1.3798828, 1.5888672, -0.62841797, -0.17675781, -0.13342285, 1.2158203, 4.9414062, 1.2675781, -0.9506836, -1.8154297, -2.1914062, 0.054351807, -4.3164062, 0.98876953, 0.3215332, 0.17285156, -0.91259766, 1.3476562, 0.32299805, -1.6591797, -0.64404297, -0.24255371, -0.06323242, 2.4628906, 0.42016602, 1.1103516, -1.6572266, 0.2998047, -0.7871094, -2.1914062, 1.1806641, -1.5302734, 0.59814453, 1.75, 1.3701172, -0.91748047, -1.6357422, -0.21386719, -2.0332031, -0.15148926, -2.7988281, 0.7167969, 1.2705078, 0.484375, -1.9257812, 2.8964844, -1.9658203, -1.9716797, 2.2753906, 0.62890625, -1.8408203, 0.3815918, -1.1865234, -1.1064453, 4.0820312, -0.29956055, 4.15625, -0.9008789, 1.2226562, -1.4794922, 0.7734375, 3.4589844, 0.7026367, -0.14208984, 1.0400391, -0.052764893, -0.671875, -0.019729614, 2.7753906, -1.5390625, -3.0058594, -1.6005859, -0.41088867, -0.92578125, -3.1953125, -1.2451172, -2.2128906, -0.34277344, 2.0566406, 1.0380859, -5.40625, -0.70751953, -0.07696533, 1.921875, -0.3190918, -1.9921875, 1.9414062, -1.5898438, -1.6445312, 0.56884766, 2.3808594, 0.1381836, -1.5537109, -2.3808594, 5.296875, 1.4384766, -0.19726562, -1.4492188, 0.118652344, 1.0537109, -1.6357422, -2.9121094, 2.1015625, -0.48339844, -2.234375, 0.2956543, 0.5864258, -2.9589844, 0.3154297, 1.9873047, 0.07537842, -1.5703125, 1.1923828, 3.171875, 1.2988281, -0.5517578, -3.3691406, -1.6982422, 0.80126953, 0.75927734, 1.0966797, 0.29296875, -1.0966797, -0.6738281, -0.5439453, -2.3847656, -2.3554688, 0.8535156, -1.640625, -0.55566406, -0.8066406, -1.7314453, 0.7871094, -0.4482422, 0.19433594, 0.75439453, -0.87109375, -0.18273926, 0.13769531, 2.8652344, -3.3183594, -2.0488281, 2.1191406, -1.6005859, 2.0214844, 2.765625, 1.1044922, 0.80908203, 2.3339844, -0.47583008, -0.6386719, -1.3134766, -0.27416992, 0.29541016, 1.5742188, -0.15539551, 1.4648438, -0.5463867, 0.4777832, -1.125, 1.3388672, 2.4277344, -0.21435547, -1.578125, -0.80908203, -2.4824219, 0.4724121, 2.3144531, -2.0957031, 0.5161133, 0.6699219, 4.0507812, 0.15490723, -1.4726562, 0.36547852, -0.9165039, -0.8359375, -0.26953125, -2.015625, -0.8515625, -0.31323242, 0.76953125, 1.1035156, 0.40527344, 3.0761719, 0.46679688, 0.68408203, -1.1884766, -0.86083984, -0.39160156, -1.9912109, 1.4257812, 0.48120117, 0.91796875, -0.5649414, -3.6171875, 1.3671875, 2.7089844, -0.80078125, -0.7084961, -1.2695312, 0.36499023, 1.21875, -0.66064453, -2.0253906, 1.6943359, 1.1240234, 0.90966797, 2.0917969, 0.74658203, 2.0332031, -0.12963867, -0.070251465, 1.5283203, -0.021133423, 2.1269531, 1.4326172, -0.5463867, 1.9921875, -4.8320312, -0.72216797, 0.1274414, 2.3339844, -0.39746094, -0.91796875, 0.4296875, 4.9257812, -2.28125, -2.2324219, 3.0390625, -0.68310547, 3.1777344, 0.67529297, 0.39233398, 0.24450684, -0.52246094, 1.625, -0.8652344, -2.4570312, 1.5, -2.1875, 0.35473633, -0.052856445, -0.5864258, 1.546875, -1.6396484, -0.61083984, 0.115234375, -1.0537109, 1.3984375, -0.3112793, 0.27124023, 3.6074219, -2.5117188, 1.9140625, 1.8134766, 0.24572754, 2.2949219, 1.140625, -2.0566406, 0.17443848, 1.6025391, -3.2597656, 1.8671875, 0.24255371, -0.09307861, 2.1230469, -1.9619141, 2.0117188, -0.5541992, -1.0205078, -1.0634766, 0.90771484, -3.3671875, 0.87109375, -0.5961914, -0.86572266, 0.61572266, -0.39648438, 2.6523438, -1.8076172, -0.49804688, 1.3505859, 1.5546875, -0.66552734, -0.7006836, 0.73828125, 2.7792969, -1.0185547, -2.9707031, 0.023513794, -0.51416016, 0.42700195, -0.6928711, -0.30004883, 1.5400391, -1.2900391, 0.2130127, -0.61035156, 0.11352539, -1.1923828, -1.7607422, 1.1083984, -2.5, 2.1757812, -1.6376953, 1.5556641, -0.37402344, 0.68115234, -1.8056641, -0.5180664, 2.6191406, -1.6455078, 4.0820312, -1.1699219, 0.17419434, -0.75341797, -1.3603516, -0.0021305084, -1.1552734, -4.1796875, 0.78466797, 2.4980469, 0.16516113, -3.0097656, -4.3945312, 0.12658691, -2.3027344, -0.7128906, -0.3996582, 0.45092773, -1.8193359, 0.11578369, -1.1650391, 0.1381836, 0.26635742, 0.9975586, 0.45092773, -2.3457031, -0.5102539, 1.09375, -1.8505859, 0.69921875, -2.0097656, -0.37670898, -0.7036133, -0.56591797, 0.11254883, -0.52490234, 1.3642578, -1.0556641, -3.9902344, 2.0761719, 1.0537109, 0.3005371, 2.8378906, -2.8847656, -0.08880615, -4.4101562, -1.9228516, 1.6826172, 2.3046875, -0.16235352, 1.6005859, 1.0927734, 1.8271484, 0.8071289, 0.171875, 0.8540039, -0.16479492, 2.4824219, -2.2089844, -2.8203125, 1.4853516, 2.6308594, -3.640625, -1.5429688, 0.028518677, 1.0517578, 1.1044922, 3.4316406, 0.27270508, -0.15808105, 0.27514648, -1.2519531, 2.1035156, -0.80615234, -0.1439209, -0.6166992, -1.0224609, 1.9228516, 0.37475586, -1.6611328, 1.640625, 0.64990234, 3.2597656, 0.6303711, -1.7001953, 1.3544922, -1.2431641, -0.44506836, 0.53759766, 2.5175781, -1.8369141, -0.21765137, -0.24255371, -1.2783203, 2.1191406, -1.1416016, 1.9296875, 1.8564453, 1.7119141, -1.4726562, 0.92578125, -0.23327637, 1.1660156, -0.37597656, 1.7021484, 0.38793945, 1.3212891, 0.9003906, -1.5654297, -1.0478516, -1.5302734, 2.8203125, -0.921875, -0.6567383, 0.79296875, 0.98779297, 0.9628906, -3.1894531, -4.0976562, 0.35913086, -2.6230469, 2.9628906, 1.9169922, -2.4277344, -1.1630859, -0.7583008, 1.0791016, 2.2949219, -0.36523438, -0.8666992, -1.9775391, -1.5986328, 0.41992188, 0.10424805, 1.1367188, 1.2929688, -2.3046875, 1.5419922, -1.7705078, 2.6542969, -1.0625, -1.3310547, 1.5595703, 0.64746094, -1.2626953, 1.8642578, 1.6914062, 3.2890625, 0.15539551, 2.2832031, 2.1425781, -1.2099609, 0.0065460205, -1.6025391, -2.7636719, 1.6523438, 0.020523071, -0.6142578, 2.1113281, -1.2402344, 0.18347168, -0.59814453, 0.64208984, -1.7646484, -2.3183594, -0.7524414, 1.3408203, -2.1796875, -0.19812012, 2.1230469, -1.0927734, -3.109375, -2.4414062, -0.6196289, -1.1787109, -0.69091797, 0.47583008, -0.30639648, 3.0917969, 0.09124756, 0.7338867, 0.8833008, 0.18103027, 2.0195312, -0.9086914, -0.4567871, -2.3808594, 0.48754883, 2.5136719, 0.9165039, 1.0732422, 0.86572266, 2.3613281, -2.0957031, 0.20751953, 0.37890625, 0.9550781, 0.9785156, -1.5302734, 0.10687256, -1.0585938, -0.09320068, -1.8994141, -2.1523438, 1.5439453, -1.6064453, 1.7880859, 1.0244141, 2.9238281, 2.328125, 0.048431396, 0.79296875, 2.0957031, 2.7207031, -1.4453125, -1.5341797, -1.9013672, -0.64404297, -2.2246094, 0.8666992, -0.7871094, -1.5791016, 1.1630859, -0.7026367, -3.1796875, -0.67626953, 2.1953125, 2.1328125, 1.0439453, 1.8134766, -2.6601562, 2.3730469, -0.7128906, 1.1748047, -0.09100342, -1.5185547, -0.8676758, 0.5678711, -1.0126953, -0.5395508, -0.91015625, -0.4880371, -1.7236328, -1.1787109, -0.27294922, 1.4013672, -1.9541016, 1.3046875, -2, -0.6230469, 2.1035156, -2.5136719, -0.98046875, -0.8022461, 0.20153809, -1.4814453, 0.17102051, 0.24230957, 1.0498047, 0.40454102, -0.38378906, 2.3652344, -1.9521484, 2.3378906, 0.29077148, 1.5263672, -1.3779297, 0.94384766, -1.1337891, 0.48657227, -0.81103516, 0.9550781, 0.98876953, 1.1533203, 1.3818359, 1.9091797, 1.9375, -0.5463867, 0.5546875, -0.44604492, 0.19042969, -1.109375, 0.18786621, -0.5708008, 1.7392578, -1.859375, -2.7890625, 0.47094727, 0.77783203, 1.3525391, 3.2910156, 1.3544922, -1.6357422, -2.2773438, -1.6123047, -1.3330078, -1.0849609, 0.5595703, -0.20568848, -1.2666016, 0.1854248, -1.0527344, 0.8618164, 2.8925781, 1.4833984, -1.8623047, 0.29785156, -0.5449219, 1.4267578, -1.6992188, -1.5742188, -4.0585938, 0.1015625, -1.0878906, 0.8383789, 1.7382812, 0.11956787, 3.7597656, -1.5068359, -1.5703125, -2.1289062, 0.76123047, -2.3496094, -1.3320312, 1.6162109, 2.1289062, 1.546875, -1.7373047, -0.5644531, 0.38012695, 0.4375, 0.8066406, -1.1757812, -1.2314453, 1.3779297, -3.625, -5.015625, 0.2626953, -1.1650391, 1.3349609, -0.69091797, 0.9428711, -1.4873047, 0.7211914, -1.2832031, -0.94384766, -2.7949219, 0.7836914, -1.0195312, 0.7553711, -1.703125, 3.1933594, -1.0419922, -0.5541992, -0.32299805, 1.2431641, -0.13720703, -3.71875, -2.8261719, -0.099121094, 1.0917969, 0.49194336, 0.99609375, -1.8789062, 1.5361328, 1.7070312, 2.0683594, -0.96728516, 1.2197266, -0.57666016, -0.7597656, 0.86083984, -2.5273438, -0.5776367, 1.5439453, 0.68603516, 1.734375, 1.9101562, 1.7744141, -2.7734375, -0.81396484, -0.09954834, 0.97314453, 2.7714844, 0.9272461, 3.0566406, -0.7241211, 2.2382812, 1.6201172, 0.67578125, -2.9589844, -1.2724609, -0.2697754, -0.068237305, -0.14489746, -0.7788086, -2.0214844, 3.1074219, -0.32739258, 1.5039062, 0.055633545, -0.20080566, 0.86376953, -0.051727295, 2.3964844, -2.8300781, 3.3417969, 1.3945312, -3.4453125, -3.4316406, -2.5214844, 3.7558594, 0.421875, -0.1743164, -0.32006836, -1.0761719, -0.95703125, 1.2900391, -1.6181641, 4.1875, 1.8662109, 2.6816406, -2.0136719, 2.078125, 3.9453125, -0.8886719, 1.2080078, 1.2119141, -1.3291016, -1.4638672, 0.7055664, 0.2590332, -2.6640625, 0.8886719, -0.48828125, -0.90625, -1.5195312, -0.49609375, 0.5991211, -0.45092773, 0.28393555, -1.1630859, 0.53564453, -1.9492188, 3.0859375, -0.20227051, -0.4597168, 1.6005859, 1.3144531, -3.0625, -0.6738281, 0.06878662, 0.66796875, -2.28125, -0.39257812, -0.7680664, 1.6923828, 1.2021484, -2.375, 2.7089844, -0.3630371, -2.1328125, 0.9370117, 3.4921875, -0.3869629, 1.7705078, 0.78515625, 1.7607422, 3.1953125, 0.79296875, 2.8964844, 0.31567383, 1.2255859, 1.1865234, -0.13696289, -0.007171631, 2.2714844, 0.8652344, -0.5649414, 0.50146484, 1.0380859, -0.51220703, 0.3955078, -1.8632812, 1.9882812, 1.0107422, -4.0664062, 1.7158203, -0.21838379, 0.7270508, -1.640625, 0.45288086, 1.0566406, -1.5546875, -1.71875, 0.4609375, 0.6196289, -1.2880859, 1.2558594, 0.1171875, 0.2824707, 1.0966797, -0.9321289, -1.8134766, -3.2558594, -2.6445312, -0.77734375, 0.8461914, 0.36938477, 0.8051758, 1.0429688, 2.9511719, -0.48120117, 1.4013672, 1.7109375, -0.2290039, 0.8198242, 0.58691406, 3.8300781, 2.2050781, -2.375, 2.1464844, -0.089904785, -1.3466797, -3.3808594, -1.1347656, 1.3408203, 0.8203125, -0.01826477, -3.734375, 1.6826172, -1.5341797, 3.7246094, -1.7900391, 1.9726562, 1.1396484, -3.8046875, -0.46972656, 0.58740234, 1.2294922, 3.2890625, 2.0175781, -2.5859375, 1.7070312, 0.5727539, 1.3398438, -0.11578369, -1.2724609, 1.3623047, 2.6347656, -2.6621094, 1.4726562, -0.53222656, 3.015625, 0.50439453, 3.5527344, 1.8408203, 0.3515625, -3.5332031, -1.390625, 2.5332031, -0.21984863, -0.9897461, 0.27172852, 0.43725586, -0.7241211, 0.5678711, 0.56591797, 0.3894043, 1.0224609, -1.4023438, 3.125, -2.7519531, 0.19909668, 0.6645508, -0.07098389, 0.60058594, -1.671875, -0.82666016, -1.8955078, -0.35327148, 0.94384766, -2.5019531, 0.060272217, 1.8710938, 2.5175781, 0.1439209, -1.3955078, 1.6318359, -0.5463867, -0.5605469, -1.3828125, -0.57470703, 0.24523926, -0.7480469, 0.8540039, -0.21594238, 0.085632324, 0.9433594, 0.3347168, -1.4033203, 0.8930664, -2.421875, -0.3737793, -3.0292969, -0.33129883, 1.0888672, 3.3457031, -0.08355713, 0.57177734, 0.07080078, -2.4785156, -2.2089844, -2.8378906, 2.109375, 1.3935547, -1.0253906, 1.6523438, 0.9301758, 0.4650879, -0.77978516, -0.9848633, -1.0068359, 1.4804688, -0.53466797, -1.03125, 0.7895508, 2.1015625, 0.1595459, -0.4033203, 3.5996094, 2.9628906, -0.4230957, 0.27856445, -0.30200195, -1.4658203, -0.30493164, 0.0038394928, -1.0615234, -2.0722656, -2.5898438, 2.1542969, 2.2363281, -1.2753906, -1.3212891, -3.4765625, -0.21716309]}, "B001H1HL76": {"id": "B001H1HL76", "original": "Brand: Bond Manufacturing\nName: Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone\nDescription: \nFeatures: Throw the ultimate s\u2019mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl!\n40,000 BTU heat output provides warmth and light\nNatural lava rock included to cover the stainless steel burner.\nProtective cover included to preserve the fire pit's integrity.\nConstructed of durable and lightweight Envirostone for outdoor use\n", "embedding": [-0.10571289, 0.7324219, 0.77441406, -0.31201172, 1.5683594, -0.10272217, 1.5849609, -3.5957031, -1.03125, 2.0019531, -0.29760742, 0.1373291, 0.5131836, -2.9785156, 0.6855469, -1.8964844, -0.46606445, 1.3779297, 0.54589844, 1.2783203, 2.4960938, -0.5078125, 0.97753906, 0.10809326, 0.48242188, 1.2480469, 3.0507812, -4.203125, -0.9526367, -1.0966797, 1.3769531, 0.9121094, 0.7480469, 1.4462891, -2.2539062, -0.8095703, -2.0566406, 2.5664062, -3.6972656, 0.33740234, -3.0351562, -0.7553711, 1.8671875, 2.1386719, -2.4316406, 0.3881836, 0.8383789, -0.8540039, -0.0340271, -0.8486328, 0.8154297, 1.0507812, -0.43286133, 0.38330078, -1.4970703, 1.3496094, -0.25146484, -2.7089844, 2.9628906, -0.043701172, 2.2285156, -0.9536133, -0.96972656, 2.1289062, -0.28466797, 2.8828125, -2.6679688, 0.14941406, -0.55126953, 0.1430664, 1.4414062, 1.7978516, 0.031463623, 0.2446289, -0.015625, -1.7685547, -1.8291016, 0.54345703, 0.6894531, -1.0146484, 0.4008789, 2.5507812, 1.0693359, -0.4375, -0.8964844, -0.90771484, -0.9189453, -1.4765625, -0.45263672, 1.9306641, 1.0849609, 2.2421875, 0.034942627, -3.0214844, 0.48535156, -2.1738281, -0.9716797, 1.6269531, -0.7216797, 1.0107422, 0.56103516, 0.76708984, -0.6503906, -0.22497559, -2.9570312, 0.052520752, 1.3203125, 1.0009766, 1.4023438, 0.056671143, -3.1855469, 0.20568848, 1.9462891, -0.113464355, 0.9165039, 0.8989258, 0.62109375, -0.5917969, 3.8554688, 1.0625, 5.015625, 0.18237305, 1.78125, -2.1464844, 0.6567383, -1.0498047, -3.4160156, -0.5361328, 0.81347656, -2.359375, 1.3154297, -1.2304688, 1.7587891, 1.8066406, -2.5761719, -1.4199219, -1.5048828, -1.9794922, 0.07409668, -0.453125, -0.8769531, 2.3066406, 0.59521484, -0.13867188, -3.4550781, -0.11602783, -1.7158203, 2.7109375, -1.1474609, -2.4335938, 0.064331055, -1.6640625, 0.02293396, 0.7519531, 0.4802246, 0.2722168, 0.49658203, -2.046875, 2.8398438, 1.8134766, -0.53808594, -2.71875, 0.09411621, 1.9599609, -2.7617188, -1.1914062, 0.70751953, 0.54248047, -0.98339844, 2.3203125, -0.6279297, -1.8789062, 0.4807129, -0.75439453, -0.41796875, -0.96728516, -0.50927734, -0.31689453, 0.4892578, 1.8789062, -1.8759766, -2.1425781, 1.4746094, -0.45874023, 0.55078125, -1.4599609, -1.6054688, -1.8779297, -0.96972656, -0.45043945, 0.2454834, 0.8798828, -1.6904297, -0.47924805, -0.7651367, -1.8515625, -2.3613281, -2.8457031, 3.671875, 0.28051758, -0.3334961, 1.8173828, -1.8105469, 0.7998047, -2.6191406, -2.7851562, -0.78808594, 2.6972656, 2.0410156, 0.61035156, -0.38598633, -0.08343506, 0.98291016, 0.88378906, -0.42651367, -0.4296875, 0.3852539, -0.46557617, 1.2353516, 1.6181641, 0.013587952, 0.34350586, 0.19970703, 1.9150391, -1.1210938, 0.9819336, 0.56396484, 0.6386719, -2.4921875, -0.43115234, 2.3222656, 0.036865234, -0.20861816, 0.9863281, -1.0917969, 3.5117188, 0.24743652, -0.69433594, 3.4902344, -1.4541016, -0.7885742, -2.4335938, -1.4423828, 1.1982422, -0.23083496, 2.1445312, 0.23120117, 0.6274414, 1.96875, 1.7744141, -0.9760742, -0.44384766, 0.61035156, 0.4724121, -1.5224609, -0.8022461, -0.89501953, 0.22473145, 1.0966797, -2.5390625, 1.0029297, 0.8178711, -2.3808594, 0.1694336, -0.36572266, -2.0410156, 0.88427734, 0.5908203, -2.7851562, 0.034210205, 0.4638672, 1.4150391, 1.9394531, 0.9404297, 1.3740234, 0.9086914, -0.9448242, 3.2539062, -0.12475586, 4.1054688, -1.328125, -1.0576172, 1.2705078, -1.5957031, 0.17077637, 0.47851562, -0.2980957, 0.12133789, -1.4355469, 0.5527344, 4.6328125, -1.1494141, -0.5205078, 0.5673828, -1.1220703, 1.6142578, -0.92333984, -1.7724609, 0.1842041, 0.21252441, 1.2060547, 1.0175781, -0.21032715, 0.9394531, -2.3378906, -0.40405273, 2.0742188, -2.8828125, 0.12866211, 0.013710022, 0.0059013367, 0.13293457, -0.8300781, -1.3066406, -2.6289062, -1.3398438, 1.1816406, -4.1445312, 1.6660156, 1.0644531, 1.8642578, 0.86621094, -1.3544922, -1.8779297, 1.1738281, 2.6289062, -2.3867188, 1.4091797, -0.6791992, -0.03250122, -0.3996582, -2.4121094, 1.1826172, -3.9199219, -1.5488281, -1.4619141, -0.47875977, 0.16992188, -0.9448242, -1.8193359, 0.9707031, 2.7265625, -1.6953125, -0.17138672, -1.5214844, -0.82714844, -0.43481445, 2.5371094, -1.3613281, 0.14172363, 0.76123047, 1.0273438, -1.2753906, -3.2050781, 0.29882812, -0.070739746, 0.55078125, 0.4724121, -0.5332031, -1.1630859, -1.7099609, 0.5019531, -0.0044555664, -2.0507812, 0.94384766, -2.046875, -0.8364258, -2.859375, 1.8789062, -2.2539062, 0.80810547, -0.00025582314, 0.2286377, -1.4257812, -1.7041016, 1.4003906, -0.28295898, 5.2578125, 0.23669434, 2.5996094, -0.7783203, -0.80615234, -0.25732422, -1.3037109, -2.8066406, 0.50927734, -2.2792969, -1.0136719, -1.1699219, -3.4511719, 1.53125, -2.359375, -0.1685791, 0.32080078, 0.25073242, -0.8676758, 0.34838867, -0.51953125, 1.1884766, -1.7148438, -0.00983429, 0.047058105, 2.2246094, -1.109375, -2.140625, 0.49389648, -2.1367188, -0.052978516, 1.2724609, -0.38916016, 1.4746094, 0.37451172, -0.5625, 2.0566406, 2.0957031, -4.9726562, 0.012550354, 3.3496094, -0.8129883, 1.9746094, -1.8623047, -2.4003906, -2.5625, 0.35888672, 2.3730469, -0.23425293, -0.29760742, 0.84814453, 0.05441284, 0.38916016, 0.36254883, -0.07220459, -0.04727173, -0.012107849, 2.3457031, -2.140625, -2.0410156, 0.39135742, 3.21875, -3.1933594, -0.26123047, 1.9755859, 1.7460938, 0.12432861, 0.11968994, 0.3803711, 0.72021484, 0.57128906, 0.6484375, 1.6298828, 2.5664062, -0.78564453, -0.019821167, 2.828125, 1.3876953, 1.28125, 1.8564453, 0.7426758, 0.2310791, 1.4921875, -0.8413086, -1.5888672, 0.6074219, -0.014846802, 1.0458984, -0.5292969, 2.078125, -1.5791016, -0.83984375, 0.42016602, 1.1992188, 2.2988281, -1.7861328, 0.77978516, 1.8896484, -0.9526367, -1.1582031, -1, 0.38305664, -0.6411133, -0.9614258, 0.62402344, 0.5917969, 0.7324219, 2.0136719, -0.82177734, 0.44213867, 0.82714844, 2.2011719, -2.2089844, -2.8886719, 0.41259766, 2.828125, 0.65234375, -1.2646484, -1.3535156, -2.078125, -0.95410156, 3.8925781, -0.9277344, -0.484375, -1.703125, -1.8945312, 1.3935547, 0.80859375, 0.19519043, 0.7763672, 0.22888184, -0.35498047, -0.049041748, 1.5175781, 0.1439209, 1.046875, -2.7421875, 0.48242188, -1.0830078, -1.0009766, 1.5322266, -0.7373047, -0.8701172, 3.6269531, -0.85253906, 0.38476562, -0.82910156, 3.3339844, -0.75146484, 0.10925293, 4.0039062, 0.31591797, 0.5253906, -2.046875, -3.5371094, 0.07055664, -2.0976562, 0.5830078, -0.25683594, 0.48754883, 0.079589844, 1.1464844, -0.20715332, -4.1132812, -1.7773438, -2.0664062, -0.13452148, -2.5957031, -1.0478516, -0.63134766, 1.3935547, -1.9189453, -1.3789062, 0.3178711, 0.51904297, 1.3701172, -0.10418701, -0.55371094, 0.5053711, -2.7910156, -0.36938477, -0.2565918, -0.12286377, -0.81640625, 0.5913086, 0.08251953, -0.13293457, 2.0507812, 0.14294434, -0.8930664, 2.3886719, 2.7714844, 1.7011719, 0.3630371, 2.4238281, -0.3322754, 4.0664062, 0.3996582, -2.0410156, -1.2392578, -0.32080078, 2.4042969, -0.82177734, 0.71777344, -0.05545044, -2.3144531, 0.7685547, 1.4003906, 1.75, 1.5029297, 0.5463867, 0.22375488, 0.19433594, 0.16003418, -1.7617188, -0.4086914, 0.40112305, 0.28466797, -1.9453125, -0.52490234, -1.7548828, 0.49951172, -1.3769531, -0.27001953, -0.6196289, 1.1503906, 2.3359375, 1.7675781, 2.6835938, -3.3847656, -1.1083984, -0.44018555, -0.77490234, 0.86572266, 0.26293945, 0.68310547, -1.3652344, 3.0371094, 0.99560547, 0.36499023, 0.11810303, 1.6777344, -0.22753906, -0.97265625, -0.6123047, -1.2236328, -2.3710938, -0.06173706, 1.0224609, -1.9150391, 0.9086914, -1.0009766, -0.04055786, -1.078125, 1.0595703, -0.69384766, 0.62939453, -0.57177734, -0.96875, 1.3378906, 2.328125, 1.2207031, 0.6230469, 3.6171875, 0.99121094, 2.0292969, 0.3942871, 0.6894531, -1.6923828, 0.42919922, -2.4492188, -1.4013672, 1.4150391, 0.7338867, -0.91015625, 1.7558594, 0.2331543, -1.6142578, 1.5898438, 1.2871094, -3.359375, -0.3918457, -0.43286133, -1.9521484, 0.98876953, 0.79248047, -3.3066406, -0.578125, 2.9492188, 0.37719727, 4.2773438, 0.70947266, -0.10821533, 0.9008789, -1.2177734, -1.1132812, -0.9765625, 0.75878906, -0.2578125, -0.48632812, 0.064697266, -1.4160156, 0.42333984, 0.7861328, 1.2060547, -1.1933594, 1.0449219, 1.1210938, -0.29052734, 1.109375, 1.2587891, 1.7675781, -0.89208984, 0.8144531, -0.484375, 1.9550781, -0.9008789, 2.28125, -2.5546875, -0.066589355, -1.4980469, 1.0126953, -3.0058594, -0.5073242, 1.3310547, 0.48486328, 0.06744385, -1.9003906, -0.91015625, -0.6533203, 1.6855469, 0.5517578, 0.032806396, -1.0351562, -0.78759766, -2.9941406, -0.31811523, -1.1152344, -0.27294922, -0.072631836, -0.033691406, -2.7578125, 0.15527344, -1.1103516, 2.3339844, -0.79052734, -0.35253906, -0.4404297, -1.25, -0.22216797, -1.3632812, 0.0904541, 1.1533203, -0.21276855, 0.8183594, -1.4736328, -1.5605469, -2.0683594, -0.17358398, 1.3945312, -2.1289062, 2.0644531, -0.17248535, 0.70751953, 1.1767578, 4.6054688, -0.7260742, -0.6376953, 1.5449219, -0.21557617, -1.1318359, 2.578125, -1.8134766, 2.3671875, 1.4179688, -0.63427734, 1.5234375, -0.9291992, 0.30566406, -1.1689453, 0.3630371, 0.7133789, -0.02406311, 0.45898438, 1.5761719, 0.69189453, -0.46777344, 1.3935547, 1.4521484, 0.07470703, -0.37060547, -1.7539062, -0.8305664, -0.9550781, -2.9394531, -0.12731934, -0.87646484, 0.14477539, 1.7236328, 1.1503906, 2.9042969, 4.2109375, 0.6303711, -0.7890625, 1.1220703, -0.33081055, 0.64990234, 0.2788086, -2.4707031, -3.2753906, -2.0058594, 0.42016602, 0.9428711, -0.84375, -0.7128906, -0.32617188, -3.2265625, -0.26513672, 0.4753418, 0.7988281, 2.8007812, 1.5966797, -2.1328125, 0.76416016, 2.4199219, -0.61083984, 1.4785156, -0.21411133, 2.2265625, -0.9355469, 2.0625, 3.7285156, -0.9584961, 0.9638672, -0.71484375, -0.06964111, -1.6357422, -0.3569336, 0.82177734, -2.3632812, -0.68115234, -1.0166016, -1.0380859, -1.2753906, 1.3359375, 1.3417969, 0.2512207, 0.52197266, -1.0068359, 0.55029297, 0.69384766, 0.7036133, 0.08154297, 0.014793396, -1.6806641, -1.4101562, 0.70751953, 1.7128906, -0.5644531, -1.8105469, 0.22290039, -1.0449219, -1.5400391, -0.51904297, -1.5927734, 1.2607422, 0.90771484, 3.2578125, -0.34399414, 0.96533203, 2.0664062, -0.31958008, 0.5058594, 1.0693359, -0.7807617, -1.1552734, -0.38867188, 3, 0.061920166, -0.13928223, 0.5292969, 1.3203125, -1.8203125, -0.118774414, -3.0800781, 0.88378906, -3.609375, 1.8046875, -0.040863037, 0.6333008, -1.4296875, 1.7841797, -0.7270508, 0.9765625, -0.5488281, -2.0664062, 1.2167969, 2.1992188, 1.6738281, 1.5712891, -0.015609741, 1.1884766, -3.1035156, 0.51953125, 0.58251953, -3.2324219, -0.89208984, 4.421875, 2.9492188, -0.47509766, -1.2021484, 1.5917969, -0.02671814, 0.6616211, -0.2166748, -0.051818848, -0.3178711, 0.61572266, 2.1933594, 0.9042969, -1.1953125, 0.97753906, -0.1361084, -1.8066406, -2.4628906, 1.3378906, -0.0042877197, 1.3046875, 1.6503906, 0.51171875, 2.15625, 0.34838867, 2.3105469, -3.5957031, -0.022628784, 1.7568359, -0.55810547, -1.5566406, -0.7675781, 0.9326172, 0.7451172, 2.2519531, 0.10632324, 1.0458984, 0.74658203, 1.9433594, 1.1015625, 1.5537109, -0.90234375, 0.114868164, -0.83154297, 1.9482422, 1.1259766, -0.99316406, -0.99121094, 2.7109375, 2.8300781, -0.024887085, 1.4472656, -2.7460938, -0.7861328, -0.7714844, -1.6279297, -1.2216797, -0.60839844, -2.4726562, -0.59375, 0.26464844, -0.44750977, -0.5571289, 1.0166016, 1.4980469, 0.13061523, -0.9741211, 3.0917969, -2.3398438, 0.15014648, 0.21716309, -0.36669922, -0.11218262, 0.42797852, 0.6196289, 0.75097656, -1.5146484, 0.70947266, 1.5996094, 0.296875, 0.072509766, 1.5478516, -0.45996094, 0.5605469, 0.17687988, 2.8808594, -0.90771484, 0.28100586, 1.65625, 0.18322754, 0.35717773, 0.8676758, -0.066711426, -1.3349609, 0.53222656, -3.0175781, 0.40039062, 1.1484375, -2.2304688, 0.16308594, 3.703125, 0.83154297, 0.076538086, -1.7900391, -5.0703125, -1.6611328, -0.027633667, 2.4277344, -0.9663086, -1.0820312, 0.2421875, -0.58251953, 2.5195312, -0.1850586, 0.22009277, -0.16784668, -0.18884277, 1.0947266, -1.5332031, 4.5195312, -0.984375, 1.7949219, -0.57714844, 1.9228516, 1.3417969, -0.26293945, 0.7216797, 2.0917969, -0.08666992, -3.2402344, 0.02267456, -0.11419678, -0.17736816, 0.44604492, -2.2128906, -0.1550293, -1.8378906, -1.4345703, -3.2578125, 0.10723877]}, "B07FJQ3KNK": {"id": "B07FJQ3KNK", "original": "Brand: GasOne\nName: Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies\nDescription: The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.\nFeatures: \u2713 DUEL FUEL PORTABLE GAS STOVE \u2013 Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove\u2019s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED)\n\u2713 PREMIUM GOLD DESIGN \u2013 The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures.\n\u2713 SAFETY FEATURES \u2013 Gas One\u2019s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner.\n\u2713 HIGH HEAT OUTPUT \u2013 Gas One\u2019s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove\u2019s control knob.\n\u2713 AUTO PIEZO IGNITION \u2013 The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to \u201cspark\u201d an ignition with a click. Simple to use, and fitting for any and every outdoor setting.\n", "embedding": [-1.421875, 0.7373047, 1.5371094, 0.6777344, 0.20373535, 2.9199219, -0.3659668, -0.5961914, -0.118774414, 2.0761719, 1.3349609, 0.30419922, 0.25634766, -2.0546875, 0.86376953, 0.27124023, 0.37890625, 0.26367188, -1.2011719, 1.8769531, 3.6035156, -0.8725586, 1.59375, 0.058624268, -0.04336548, 0.6894531, 3.1601562, -3.9511719, 0.4765625, -0.42529297, 1.8496094, 0.7714844, -0.17822266, 1.9619141, -3.7265625, -0.24572754, -0.7709961, 0.027023315, -2.6855469, -1.5625, -2.1484375, -1.0595703, 1.6542969, -1.0058594, -0.07244873, 0.41967773, 0.8803711, -0.60791016, -1.6279297, 1.4335938, 0.8588867, 0.9663086, -1.6474609, 3.296875, -1.2431641, 0.50146484, -0.40771484, -0.69091797, 1.8867188, 0.9238281, 1.4804688, 0.28100586, -0.14807129, 0.22265625, -2.3574219, -1.0742188, 0.27368164, -0.15283203, -2.4960938, -0.013938904, 3.0605469, 0.07775879, -0.61035156, 0.020507812, -1.4267578, -0.11212158, -3.28125, 3.1289062, 2.6035156, 0.3996582, -0.6640625, 2.0410156, 0.9165039, 0.050323486, 1.8984375, 0.28125, -0.20825195, 0.7709961, 0.6176758, 1.3193359, -2.2265625, 2.0292969, -1.0751953, -3.0117188, 0.6298828, -1.3232422, 0.12005615, 1.1503906, 1.8642578, 2.015625, -0.91015625, 0.56591797, -0.0748291, 0.77246094, -1.3730469, -2.15625, 3.6484375, 0.72509766, -4.234375, 0.43188477, -1.5048828, -0.21325684, 0.7597656, -1.8798828, 0.54833984, 1.5410156, -0.1081543, -0.13195801, 3.8476562, -0.2548828, 4.28125, -0.5, 1.1308594, -2.2460938, 1.3916016, 1.2695312, -2.2050781, 0.99658203, 4.078125, 0.23901367, -1.0517578, 2.1679688, 1.0410156, -1.7773438, -0.06173706, -1.25, -1.6269531, -1.9951172, -4.21875, 0.80126953, -3.5214844, 1.5712891, 1.2148438, -0.89453125, -4.4726562, -0.85302734, -2.5703125, 2.3457031, 2.7011719, -0.56396484, 0.13000488, -1.9970703, 0.2133789, -2.7851562, 2.7695312, 0.40844727, -1.0556641, -0.4206543, 3.4765625, 2.2148438, -0.80371094, -1.9189453, -2.3515625, 0.03845215, 2.109375, -1.0390625, 1.1699219, 1.6279297, 0.124938965, 1.125, 0.73535156, -1.0556641, -0.90527344, 0.5839844, 0.64501953, -0.45898438, -2.4160156, 2.7949219, 0.62597656, -1.1074219, -3.609375, -3.1425781, 2.1679688, 0.6489258, -0.064208984, -3.2714844, 0.6035156, -0.8388672, -0.16357422, -2.2148438, -0.52734375, 1.484375, -0.29052734, 0.22680664, 0.23571777, -2.1386719, -1.6210938, -0.2849121, -1.1884766, 1.1933594, -0.29174805, -1.2265625, -0.86865234, 0.18151855, -3.1347656, -1.4580078, 1.2998047, -2.3417969, 0.49316406, 2.4707031, 2.21875, 0.9160156, 1.8994141, 0.8696289, -1.8564453, -1.6816406, 1.5273438, 4.5859375, 1.3603516, 2.421875, 0.79589844, -1.3017578, 0.037322998, 0.2919922, -0.28344727, 3.3417969, 1.5546875, -0.4958496, -1.2226562, -2.9980469, 2.0507812, 0.50634766, 0.6430664, -0.111816406, -0.3149414, 2.28125, 1.9150391, -0.3857422, -0.4970703, -1.3574219, -0.9458008, -0.6791992, -0.49121094, 1.0371094, -2.2167969, 0.6923828, 1.2958984, -1.1796875, 2.390625, -0.9394531, -0.9975586, 0.90185547, -0.12780762, 2.0429688, -2.6054688, -0.35620117, 1.7753906, 1.5576172, -0.91015625, -0.09088135, 1.5605469, 3.2714844, 1.4609375, -0.47851562, 0.6171875, -0.49536133, 1.5302734, 0.1895752, -2.2011719, 0.7080078, 0.36157227, 1.4677734, 4.0664062, -1.7910156, 2.2050781, 1.0253906, -2.3945312, 3.375, 0.81591797, 2.96875, 1.8154297, -0.62402344, 1.5302734, -2.0253906, 1.8876953, -0.20739746, 3.1015625, 0.47729492, -0.4802246, -1.1884766, 5.1289062, -0.4638672, -3.0234375, 0.54541016, -2.4667969, -0.78564453, 1.4697266, 0.18334961, 0.47216797, 0.21777344, -0.08959961, -1.1230469, -0.7993164, 0.24816895, -1.3535156, -0.4477539, -1.2988281, -1.6035156, 0.7626953, 1.5146484, -1.7109375, -1.4072266, -0.67285156, 0.015525818, -2.3847656, -0.48657227, 4.4726562, -1.4951172, 0.34692383, 2.4375, 1.3876953, 1.703125, -0.030639648, -3.0429688, -0.6113281, 0.45629883, 0.48266602, 1.8154297, -1.6113281, -0.25146484, 1.4277344, -2.171875, 0.7104492, -1.4501953, -1.4335938, -0.093811035, -1.9072266, -3.5859375, 0.82958984, -1.9902344, -2.5175781, -0.4345703, -4.640625, 1.9599609, -1.4101562, -2.4082031, 0.59814453, -0.16333008, -0.2133789, -0.94433594, 1.4814453, 1.9462891, 0.5410156, -2.9648438, -0.703125, 0.30664062, 1.5380859, -0.54345703, -0.9091797, 1.3583984, 1.25, 0.24401855, -1.0224609, 0.79296875, -0.5307617, -3.1035156, 0.5371094, -5.5898438, -0.61816406, -1.5048828, 1.1640625, 0.75341797, -0.23522949, -2.4160156, -1.8876953, 1.5634766, 0.44995117, 1.8789062, -0.60839844, 0.4177246, -1.171875, -0.26708984, -0.6113281, -1.7363281, -2.5898438, -0.39941406, 0.33789062, -1.8115234, 1.0136719, -1.5078125, 1.8339844, -0.8466797, -0.42236328, -1.6699219, -0.22680664, -1.359375, 1.2138672, -1.2148438, -1.4443359, -0.2644043, -0.45117188, -0.27856445, -5.078125, -1.1894531, 0.015083313, -2.1679688, 0.10595703, 0.03805542, 0.14672852, 0.7626953, 0.5234375, 1.453125, 0.5571289, 0.31469727, -0.5605469, -4.4101562, 3.2871094, 0.66064453, -1.6015625, 0.58447266, -1.9287109, 0.12609863, -1.4316406, -0.83935547, 1.8066406, 1.2958984, 3.4746094, -0.6557617, 0.15979004, 1.2119141, 1.9169922, 0.06713867, -2.5546875, -1.1416016, 3.234375, -2.9394531, -2.2089844, 1.0214844, 2.1679688, -2.8945312, -0.80859375, 0.16711426, -0.36254883, 1.3691406, 0.9291992, -1.3730469, 0.15441895, -0.5024414, 0.37646484, 1.9423828, 1.53125, 2.0292969, 0.26782227, 1.4472656, -0.81347656, -0.061553955, 1.6181641, 3.3925781, 1.5, 0.9091797, 2.1523438, -3.0917969, 0.23010254, 0.4555664, 0.95214844, 1.2285156, 4.1679688, 0.34838867, -0.6201172, -2.1542969, -0.44677734, 1.4589844, -0.96777344, 0.9926758, 0.19311523, 0.57666016, -0.3166504, 0.38598633, -0.8774414, 0.0026245117, -2.1484375, 3.1679688, -0.10870361, -0.3828125, 1.5546875, -1.3076172, -0.37280273, -1.9658203, 1.3085938, -1.2373047, 0.6020508, 0.91308594, 0.46850586, -3.2714844, -1.8144531, -1.1113281, 0.19421387, 0.25683594, 3.9589844, -1.2304688, -2.7792969, 1.8554688, -0.86572266, -1.0078125, 3.4824219, -0.9526367, 0.37597656, -2.609375, 0.6401367, -0.3774414, -1.5224609, 1.6591797, 1.3232422, -2.2089844, 2.046875, -3.125, -0.8925781, 2.3398438, -2.7441406, 0.12988281, 1.6171875, -0.63720703, 1.6142578, -2.1875, 4.0078125, 0.33935547, -2.4746094, 2.8046875, -4.0546875, -0.018432617, -1.8515625, -4.015625, 2.0605469, -0.24853516, -0.68359375, 3.7089844, 1.0068359, -0.33203125, 1.1386719, 0.22851562, -1.5009766, -1.3935547, -0.58691406, 0.88427734, -3.21875, 0.030151367, -1.7216797, 0.80566406, -1.9121094, -0.6069336, 0.30322266, -0.703125, 0.034454346, -0.4658203, -2.7773438, 0.52490234, -2.7636719, 1.3740234, -0.11340332, -1.140625, 0.27172852, -1.4345703, -0.13146973, -2.015625, 1.4863281, 2.0507812, -0.20324707, -1.2119141, 2.6210938, 1.8378906, -1.8046875, -0.47631836, 0.50683594, 1.828125, -0.14807129, -2.4160156, -2.2128906, 0.64453125, 0.28466797, -0.48999023, -0.061584473, -2.4921875, -2.1699219, 3.2636719, 1.5322266, 2.4746094, 2.0390625, 0.5800781, -1.3867188, 0.5341797, -0.62939453, -2.5546875, -1.9179688, -0.52246094, -0.78564453, -0.97509766, -1.8144531, -1.9433594, -0.16882324, -1.5800781, -0.5439453, -2.09375, 1.2304688, 0.7241211, 0.29370117, 1.5009766, -1.0625, -1.2050781, 0.6513672, -0.13171387, -0.81884766, 1.6474609, -0.54248047, 0.69970703, 2.234375, 0.15258789, -1.3730469, -1.4121094, 3.6132812, -0.7553711, 0.81396484, -1.2177734, 1.1152344, -1.7216797, -0.9589844, -0.35107422, -0.083862305, 1.1064453, -1.4638672, 1.3339844, 0.27294922, 1.0507812, -3.0449219, -0.8857422, 1.3398438, 1.3759766, -0.007949829, 0.9428711, 1.7431641, -1.4384766, 0.9741211, 0.08215332, 1.5673828, -1.1201172, 0.08569336, 1.171875, 2.140625, -2.8320312, -0.7421875, 2.875, 2.5917969, 1.1640625, 2.7910156, 1.5117188, -0.061584473, 1.3017578, -0.56884766, -1.6660156, 0.10913086, 0.47753906, -0.25439453, 2.4824219, -0.5395508, -1.9990234, 0.38916016, 4.3007812, -0.52685547, 1.453125, 0.97558594, -2.4511719, -0.19750977, -3.6757812, -0.7050781, -1.4121094, -0.45263672, 0.22265625, -1.6972656, 1.1708984, 0.4260254, 2.5878906, 2.9648438, -1.4042969, 0.047943115, 1.734375, -1.1425781, 2.0625, 1.2285156, -0.5878906, -4.2109375, 2.1992188, 1.453125, 0.55810547, 2.0351562, 1.0908203, 1.7509766, -2.0507812, -0.40405273, -1.1074219, 0.5629883, -2.4765625, -1.5791016, 0.87158203, -0.9057617, 1.1435547, -0.11352539, -0.28588867, -0.40429688, 1.7617188, 0.047576904, 1.6904297, -1.1113281, -0.30639648, -2.9316406, -4.59375, -1.6357422, 1.2636719, -0.045776367, -1.0869141, 0.27905273, -1.0224609, 0.73095703, 1.2421875, 0.7084961, -2.5273438, 0.58691406, 0.42016602, 0.8569336, -2.0722656, -0.18701172, -0.8095703, 1.0927734, 1.2910156, -0.5415039, 0.39819336, -0.89160156, -0.97998047, 0.12335205, -0.8642578, 0.51171875, -0.67333984, -1.1738281, -2.5527344, 1.0830078, -1.1503906, -2.4414062, 1.5556641, -1.765625, -0.37451172, 0.99902344, -0.8647461, 1.2841797, 1.8017578, -0.74560547, 1.3945312, 0.43066406, 1.3066406, -1.6308594, 1.8681641, 1.5078125, 1.3486328, -1.1904297, -2.0546875, 1.8662109, 0.28320312, 1.2382812, 2.5117188, -0.3581543, -0.091430664, -2.6191406, -0.7348633, -0.6928711, -0.91796875, -0.3828125, -0.20275879, 0.85595703, 0.37670898, 0.61816406, -0.62646484, -0.6533203, -0.09259033, -0.7739258, 0.68847656, -2.2480469, 4.5820312, 0.04144287, 0.15270996, -2.2539062, -2.4550781, 2.1875, 0.67089844, 0.59228516, -0.7817383, 2.2421875, -0.3227539, 1.7568359, -1.0595703, 2.6855469, 2.3671875, 1.3857422, -1.0693359, 2.4140625, 3.6582031, -0.2211914, 1.6533203, 0.17126465, 0.054718018, -0.5185547, 2.328125, 0.75683594, -0.7104492, 2.0351562, -0.40283203, 2.2578125, 0.011367798, -1.9960938, 2.4042969, 0.3552246, -0.8779297, -1.4560547, -0.5024414, -2.0585938, 2.1210938, 2.8730469, -1.8056641, 0.11029053, 1.421875, 0.3190918, 0.38330078, 2.2792969, 2.1640625, -2.9335938, 1.1904297, -0.19055176, 0.16601562, 0.55908203, -0.46728516, -0.7055664, 2.5820312, 1.1425781, 0.8364258, 3.4902344, 0.32861328, 3.3691406, 2.4199219, 1.2929688, 2.7363281, 1.5976562, 1.3828125, 1.2421875, 0.5473633, 2.4824219, -0.8671875, 0.546875, 1.1396484, 1.5957031, -0.35668945, -0.28710938, 1.7148438, -0.39331055, -2.0195312, -1.4550781, -0.024337769, 1.5722656, -4.4101562, -0.6464844, 1.0039062, 1.0615234, -1.5644531, 0.47485352, -1.7773438, -0.046844482, 0.46728516, -0.023773193, 0.34375, -0.7763672, -2.6835938, -1.640625, -0.58447266, 2.078125, -1.0009766, 0.47802734, -2.2167969, -2.765625, -0.18603516, 0.25952148, 0.20605469, 0.6010742, -0.5957031, 2.3828125, 1.3876953, -0.87158203, 1.1220703, -3.28125, 0.54003906, -0.112854004, 4.265625, -0.26245117, -0.44921875, 1.9208984, -0.6777344, -4.3554688, -3.8613281, 0.97998047, 1.1748047, 1.8740234, 1.8476562, -2.5390625, 2.8828125, 0.77783203, 1.3017578, -3.7363281, 0.5131836, -0.44262695, -0.36450195, -1.2949219, 1.6621094, 0.12585449, 3.5253906, 0.12817383, -1.8720703, -0.20117188, 0.24487305, -0.11102295, -0.9272461, -0.5566406, 0.49414062, 1.6962891, -1.2773438, 2.1953125, 0.97265625, -1.8574219, -0.9379883, 1.4902344, 2.5742188, -0.028640747, -0.23486328, -2.0332031, 1.4179688, -0.84375, -0.19226074, -0.6772461, -0.7871094, -2.2734375, -1.2324219, -1.7226562, -2.1699219, -2.9824219, 1.4130859, -1.7382812, -3.625, -0.37280273, 1.2060547, -0.6723633, -0.5683594, 1.640625, -0.20080566, 1.4580078, -1.2441406, -0.86279297, -1.890625, -1.5507812, 0.19787598, -0.7792969, 0.95214844, -2.1328125, 1.8681641, -0.7373047, 0.72802734, 1.4335938, 1.1533203, -0.1315918, -0.7426758, 0.77441406, -0.6279297, 1.2851562, 3.3886719, -1.5625, 0.16662598, 1.71875, -2.3652344, -0.5361328, -1.6640625, -0.16760254, 0.19445801, 1.6982422, 1.9101562, 1.5078125, -1.5888672, -2.1855469, -0.16088867, -4.078125, 1.3291016, -0.048339844, -0.83496094, 0.9145508, 2.1777344, 2.4824219, -0.6933594, 0.8652344, -2.0058594, 1.9726562, -0.5864258, -1.8115234, 0.26489258, 0.8022461, -0.9902344, 0.83984375, 1.7607422, 3.1894531, -0.7529297, 1.0322266, 0.93066406, -0.1027832, -2.7636719, 1.6708984, -3.2363281, -0.48266602, 0.6376953, -0.47851562, 3.3046875, 0.65771484, -0.084106445, -2.3457031, 0.028015137]}, "B088HCDXVP": {"id": "B088HCDXVP", "original": "Brand: Smaid\nName: Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill\uff0cEasy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black\nDescription: 1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG's non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.\nFeatures: 100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500\u2109, Keep your family safe while enjoy delicious grilling food.\nMULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need.\nNO MESS - With our grill mats, you won't have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze!\nEasy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don't waste your time scraping the \"crud\" off your grill - get back to enjoying the BBQ with your friends and family!\n", "embedding": [-0.3623047, 1.3789062, 1.7626953, -0.73828125, -0.13122559, 1.2587891, 0.38012695, -0.3918457, 1.4169922, 1.7734375, -1.7460938, -0.8232422, 1.2324219, -3.3828125, 0.19482422, -1.0380859, 0.4272461, 2.0449219, 2.828125, 1.6152344, 0.9628906, 0.32861328, 0.6088867, -1.8330078, 1.5986328, 0.28686523, 2.4238281, -0.8276367, 0.27172852, -0.17736816, 2.0820312, 1.1152344, -0.32006836, 2.5, -3.8710938, -1.4560547, -0.9897461, 2.4785156, -0.40454102, -1.5126953, -0.7871094, -3.3574219, 0.7939453, 1.3847656, -2.6914062, 1.5195312, 0.42529297, 1.8193359, 0.33251953, -4.0585938, 1.4189453, 0.23901367, 2.796875, 0.5605469, -2.6953125, 2.0878906, -0.65527344, -1.7333984, 1.0771484, 0.5258789, -0.01234436, -0.9633789, -0.6748047, 1.1416016, 0.20495605, -3.1347656, -0.036865234, -2.2832031, 0.053741455, -2.6113281, -0.80908203, -0.7685547, -0.88671875, 1.7763672, -0.53808594, -0.12042236, -0.6328125, 0.30297852, 0.6015625, -2.1621094, -0.24865723, 2.0078125, 0.14233398, -0.97265625, 0.06500244, -1.4863281, -2.1992188, -0.90966797, 2.1816406, -0.13659668, 0.34838867, 3.0722656, -1.4746094, -4.1171875, 0.35961914, -2.7421875, 1.8496094, -0.6376953, -0.703125, 1.4208984, -2.2890625, -0.10839844, -0.38085938, 2.3964844, -3.6640625, -3.1738281, 2.140625, 0.77783203, 0.8496094, 0.97802734, 1.2880859, 0.9667969, -0.10040283, 0.79248047, 2.4003906, 0.9663086, 0.5283203, 0.054840088, 1.9541016, 1.9765625, 3.7480469, 2.0253906, 0.19702148, -1.9599609, 0.40454102, -0.4243164, 0.14648438, 2.2402344, 3.2324219, -2.5722656, -0.2019043, -1.8759766, -0.93603516, -1.5048828, -1.0273438, -1.3828125, -0.1763916, -0.22387695, -3.4609375, 1.4755859, 0.13122559, -2.0253906, 1.5585938, -2.1582031, -2.5136719, 0.4716797, -2.25, 2.8515625, -0.9550781, -2.0039062, -0.2524414, -0.31958008, 2.9140625, -1.1494141, 1.4023438, -1.0908203, 1.0029297, 0.171875, 1.6435547, 2.4570312, 1.2001953, -2.7382812, -1.9941406, -0.66259766, 1.8857422, -4.0546875, -1.1962891, 0.54785156, -0.35375977, 2.4726562, 0.03564453, -2.0117188, 0.66552734, 0.3305664, -0.0029010773, -0.15075684, 0.80322266, 2.2285156, -0.5961914, -1.1035156, 0.9355469, -3.5078125, 0.07287598, 0.89746094, -1.2675781, -1.0537109, 1.0703125, -0.7348633, 1.0761719, -0.68847656, -1.0263672, 2.5644531, -0.40576172, 0.6484375, -2.4648438, -0.78564453, 0.0061187744, -2.0214844, 0.21911621, -0.6484375, -0.88964844, -1.0136719, -1.921875, 0.095947266, -2.3398438, -2.2929688, -2.0253906, 2.3808594, 2.2011719, 1.0966797, -0.3930664, -2.0175781, 1.9277344, 2.6796875, -0.796875, 0.04776001, 0.4020996, 0.21606445, 0.8330078, 2.4433594, -0.9633789, -0.49145508, -0.28759766, 3.5, -0.97998047, 2.1640625, -0.56884766, 1.7255859, -1.0449219, -1.9902344, 1.9775391, 0.44213867, 0.19897461, -1.3564453, -0.08337402, 2.3046875, 1.859375, -1.2685547, -1.5966797, 0.75878906, -1.9560547, -2.0703125, -1.9628906, -1.9072266, -1.8369141, -0.6274414, -0.18371582, 2.3320312, 0.8515625, -1.3193359, -1.2363281, 4.1210938, 2.2167969, 0.11706543, -0.97021484, 0.72802734, 0.5600586, -0.38305664, -2.8847656, 0.40673828, -1.4707031, -0.07647705, -0.15930176, 2.1601562, 1.375, -0.984375, 1.4384766, 0.47705078, -1.9892578, -1.0009766, 0.29858398, -1.5400391, -0.62402344, -1.4619141, 0.72558594, -0.22827148, -1.7177734, 0.9111328, 1.6113281, -0.76953125, -0.13391113, 2.2890625, 1.2011719, -0.9042969, -2.765625, 0.15270996, -1.0341797, -1.6787109, 1.6064453, -0.80029297, 4.03125, 1.8046875, -1.1884766, 2.546875, -0.124938965, 0.34570312, 2.8300781, 0.26538086, -2.3300781, -0.5449219, 0.70410156, 3.5625, -0.8613281, 2.171875, -1.0117188, -0.5800781, 2.4355469, -2.1113281, -0.9194336, 2.4472656, 0.74365234, -0.47143555, 1.4697266, 1.8583984, -3.0136719, -1.4921875, 1.0556641, 0.057617188, -0.5078125, -1.4755859, -1.6757812, -0.7426758, -0.6689453, -2.3378906, -1.21875, 1.7646484, 0.18261719, -0.109680176, 0.5595703, 1.046875, 1.0732422, -1.3027344, 0.080566406, 0.34570312, -2.2070312, -2.0859375, -2.5976562, -0.91064453, -0.8286133, -0.9013672, -0.34472656, 0.20324707, -2.1367188, 1.1445312, 0.11242676, -2.2929688, -1.8818359, -1.4179688, 0.17297363, 1.328125, -0.27539062, 1.0634766, -0.061462402, -3.6601562, -0.45141602, 0.94873047, 0.11352539, 0.8779297, -1.2597656, 0.390625, -0.045410156, 0.61376953, 0.8154297, 0.13671875, 0.69677734, 2.4609375, -3.4101562, -3.1660156, 0.26342773, -0.46020508, -0.5493164, -1.9716797, -0.27148438, -1.1826172, -1.1005859, -1.2871094, 1.0908203, 3.4433594, -0.1385498, 2.2636719, -1.9414062, -0.45410156, -0.037109375, 1.5576172, -1.0283203, -0.9536133, 0.85546875, -1.6835938, -0.88720703, -1.2460938, -0.95654297, -0.2800293, -0.31420898, -0.31103516, 2.9511719, 0.5488281, 3.6328125, -3.234375, -0.3112793, -0.6796875, 1.6025391, -0.63671875, -0.48999023, -0.88427734, -0.86328125, -1.0966797, -1.4775391, 0.3798828, 0.32763672, -1.6210938, 0.7441406, 1.0263672, 0.39770508, -0.4020996, 0.09051514, -0.20397949, 0.7133789, -1.5976562, -1.7919922, 1.0166016, 0.6435547, -1.2744141, -1.2958984, -2.2050781, 3.2441406, 0.15551758, 0.8027344, 0.6904297, 0.79541016, 3.3417969, 0.9589844, 1.1269531, -1.2519531, 1.6660156, -0.08496094, -0.6113281, -1.0400391, 2.1152344, 0.69921875, -2.0976562, 1.5234375, 1.4462891, 1.7412109, 1.3144531, 0.020355225, -0.80322266, 0.026031494, -0.5932617, 4.1914062, -0.27246094, 0.8173828, -1.484375, -0.5229492, 0.2783203, 0.88134766, 3.4550781, 1.4248047, 1.2089844, -0.10253906, 0.8339844, -1.5429688, -3.671875, 0.20568848, 1.796875, -0.022201538, -1.5351562, 0.74121094, -0.36401367, 0.58984375, 4.625, -1.078125, 1.7177734, -2.5429688, -0.07055664, 0.90966797, -0.69433594, -0.5307617, -1.8574219, -1.8974609, -0.26293945, -2.5527344, 1.0400391, -2.3339844, -2.2988281, 1.3691406, -2.2324219, -4.2421875, 0.9213867, 3.3222656, -0.8222656, -1.296875, -1.3623047, 2.2988281, -1.6904297, -0.6953125, -0.7163086, 1.6982422, -0.35083008, 2.0917969, -0.09277344, -0.23425293, 2.6757812, -2.4804688, 1.2167969, 0.74072266, -2.2617188, -1.5595703, -1.9052734, -0.17480469, 1.0097656, -0.73046875, 0.7011719, 1.8876953, -1.1738281, 0.08081055, -2.7851562, 0.78027344, 1.5615234, -1.7109375, 0.26171875, 1.1503906, 1.9746094, -0.27172852, -0.007598877, 4.7695312, 1.8251953, -2.2226562, 0.18078613, -3.1582031, -0.89404297, -0.40356445, -1.9814453, -0.0038318634, -1.1191406, -1.3632812, 2.9550781, 1.1787109, 1.7060547, 3.1855469, -0.7631836, -1.1777344, 0.24731445, -2.6523438, -0.95996094, -0.55615234, 0.9550781, 2.671875, 1.0634766, -0.25073242, -0.1538086, -1.4121094, -1.0673828, 0.9472656, -0.58935547, 0.8100586, -0.4243164, -3.0761719, -0.2631836, -0.28149414, 0.72998047, -1.5732422, -0.59228516, 0.34472656, 0.3232422, 2.796875, -1.4472656, 1.3662109, -0.9975586, 0.15612793, -0.9091797, -1.0683594, -0.5258789, 0.18395996, 2.4101562, -1.5615234, -1.7294922, 0.45532227, -0.34057617, 1.7880859, -1.2900391, -1.8105469, 0.9140625, -1.5810547, 0.6723633, 0.14074707, 2.40625, 0.29956055, -1.1191406, -1.7734375, -0.8276367, -0.15795898, -2.78125, -1.9179688, -1.3691406, -1.6933594, 0.86376953, -0.81396484, -2.2304688, 2.2714844, -0.33618164, 0.3503418, -2.0410156, 2.4042969, 0.033599854, 0.5107422, 5.8164062, -3.3046875, 0.59375, 1.609375, -3.0976562, -0.9350586, 0.85302734, -0.9838867, -2.2558594, 1.5146484, 1.9492188, -1.5410156, -1.8896484, 0.2932129, -0.2265625, -1.4375, -2.4472656, 2.4746094, -0.7988281, 0.5292969, 0.92333984, 0.12841797, 2.6503906, -0.82177734, 2.9453125, 3.2890625, -0.8964844, -0.32543945, 0.86572266, 0.9511719, 0.13134766, 1.0283203, 2.0898438, 1.2802734, -1.3359375, -1.015625, 0.20275879, 1.2958984, -3.7714844, 1.6865234, 0.37548828, 1.5273438, -1.5166016, -0.9140625, 1.9433594, 2.1855469, -0.17810059, 1.4296875, -1.2138672, -2.0292969, 1.3125, 1.6132812, -0.69677734, 1.6367188, -0.25732422, -0.9350586, 1.5771484, -1.8212891, -1.6484375, -0.29956055, 0.30004883, 0.8076172, 0.45361328, -1.0146484, 0.8823242, 2.1894531, -1.0048828, -1.0634766, 0.0077056885, -1.4023438, 0.7080078, -1.0830078, 0.76953125, -0.026550293, 0.10974121, 4.015625, -1.7851562, -1.2363281, 2.3632812, -0.8413086, 0.43579102, -0.34838867, -2.2890625, -3.1757812, -0.83447266, -1.7099609, 1.1611328, 1.9833984, 0.4975586, 0.43774414, -1.734375, 1.4238281, -2.7539062, 1.3369141, -1.5654297, -0.7963867, 4.3867188, -4.8007812, 0.98095703, -0.57373047, 1.6503906, 1.4091797, 0.96777344, 2.7402344, -1.0585938, -1.4423828, 0.38354492, -1.5087891, -1.3476562, -0.27319336, -0.16027832, 0.43188477, 0.14648438, -0.075805664, -0.1986084, 0.015563965, 1.6523438, 0.7026367, 2.4257812, -0.21325684, -0.3623047, -1.4179688, -1.7480469, 0.1439209, -0.61376953, 0.39038086, -0.3071289, 4.5546875, -0.39819336, -1.671875, -0.86279297, -0.0053482056, -3.2089844, -1.5712891, 1.0693359, -0.26831055, -0.2541504, 0.0690918, 0.08807373, -0.6694336, 2.3476562, 0.37329102, 0.8041992, 2.0253906, -0.37841797, -1.0029297, -0.41577148, -4.171875, 1.4755859, -3.171875, 1.1298828, 1.2480469, -3.2167969, 1.2724609, 2.7304688, -1.8740234, -0.6347656, -0.2878418, 0.49975586, 1.4443359, 0.8066406, 0.23474121, 0.6586914, -2.5800781, -2.734375, 1.2265625, -1.2490234, -1.7685547, -1.2607422, 0.091674805, 2.0117188, -0.30493164, 1.875, 1.0429688, 0.93066406, -0.54785156, 0.8959961, -0.2763672, 0.7680664, 0.42114258, 0.5864258, -1.3671875, -2.03125, 1.8515625, 1.4326172, 1.4677734, 1.7041016, -1.8125, -2.5957031, -1.0869141, -0.05722046, 0.96972656, 3.7695312, 0.9428711, -0.2434082, -1.3642578, -0.15039062, -2.2597656, 2.5976562, 2.046875, 4.3789062, -2.0996094, 4.6601562, -0.4741211, -4.3632812, 2.1347656, -1.3925781, -0.4494629, -0.045928955, -1.4335938, -0.37670898, -1.5800781, -2.6132812, -1.0195312, 0.39379883, -1.9511719, 2.3886719, -0.3215332, -0.29882812, -0.40161133, 3.6386719, -0.03665161, 2.4316406, 3.8535156, -0.06842041, -0.21850586, -0.77978516, -2.2207031, -0.093688965, 0.39331055, -1.5712891, -0.94384766, 0.71728516, -0.8261719, -0.69970703, 0.52734375, 1.0068359, 0.88134766, 0.9238281, 2.1542969, 4.3203125, 1.2060547, 2.3457031, 1.0009766, 2.0078125, 1.8505859, 1.328125, 0.36743164, 3.2617188, 0.3408203, 0.7128906, -0.8857422, 1.9697266, 0.27124023, -0.02130127, 0.35473633, 0.37719727, -0.30908203, -0.78222656, 1.328125, 0.75341797, 0.6166992, 0.5620117, 0.7368164, -3.3339844, -0.70214844, -0.8955078, -0.14233398, 3.4863281, 0.28125, 0.8847656, 1.3730469, 0.7988281, 1.96875, -3.6328125, 1.8544922, 0.9082031, -0.07006836, -0.5776367, 3.2460938, 0.38842773, 2.2109375, -0.47583008, -0.17687988, 0.7807617, 0.8378906, 0.89160156, 1.4414062, 0.9189453, -2.0703125, 0.7631836, -1.4580078, -2.5839844, -1.2490234, 0.19421387, -1.7246094, -1.5537109, -0.058258057, 1.5722656, 1.1806641, 1.4746094, -4.9296875, -1.0478516, 0.33081055, 1.3164062, -2.7089844, -0.26953125, -1.7119141, -3.265625, -1.7363281, 2.0117188, 0.81689453, 1.5068359, 1.0166016, -1.3007812, 1.3066406, 1.0849609, 1.4423828, 0.9267578, 0.3269043, -1.3769531, 2.0585938, -0.25268555, 3.6757812, 2.4003906, 2.1523438, -0.5444336, 1.0820312, 2.8574219, 1.1806641, 1.6259766, 0.9682617, -1.4912109, -0.8808594, 0.31054688, -0.95214844, -0.18481445, -1.8164062, -2.6796875, -0.032592773, -0.56689453, -2.2011719, -0.19848633, 0.35180664, 0.027786255, 1.7490234, 0.57128906, -0.81152344, 1.1904297, 2.2636719, -0.9785156, -0.91748047, -2.1425781, -0.20251465, -1.8974609, -0.5283203, 0.7939453, 0.8334961, 1.5839844, -0.7138672, 1.0117188, -0.46142578, 0.030151367, 0.63623047, 1.6191406, -1.359375, -2.3300781, 0.9716797, 0.11810303, 1.5849609, 1.7607422, -0.5493164, -1.3925781, 0.18334961, -2.4296875, -0.6635742, -1.0810547, -1.7509766, 1.2861328, 2.9101562, 2.7714844, -0.67822266, -1.4658203, -0.6123047, 2.0332031, -0.10827637, 2.3984375, -0.43603516, -2.1425781, -0.13244629, -1.3232422, 1.6972656, 0.7314453, -1.8496094, -1.4873047, -0.38110352, 0.6176758, -0.9584961, 0.26831055, 1.6347656, 0.29760742, -0.35375977, 2.6835938, 4.5546875, 0.5, 1.9521484, 1.6328125, 1.0439453, -1.4375, 0.09698486, 0.009796143, 1.4521484, 2.8320312, -0.19384766, -0.0022850037, -0.7573242, -1.4785156, -1.2802734, -0.3840332]}, "B091YNGC2Y": {"id": "B091YNGC2Y", "original": "Brand: iClanda\nName: BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs\nDescription: \nFeatures: \ud83e\udd69Greatly Fits Various Grills\ud83c\udf56: 58\"L x 24\"W x 44\"H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing.\n\ud83e\udd69600D Super Heavy-Duty Materials\ud83c\udf56: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant.\n\ud83e\udd69Distinct Design Features\ud83c\udf56: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use.\n\ud83e\udd69Wind-Resistant gas grill covers\ud83c\udf56: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away.\n\ud83e\udd69Hassle-Free Cleaning\ud83c\udf56: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.\n", "embedding": [1.0068359, 1.8007812, 3.0605469, -1.8769531, -0.7998047, 1.4619141, 1.0458984, -2.7167969, 2.2695312, 2.703125, -0.5649414, -0.45996094, 1.1650391, -5.1171875, 1.1845703, 0.9902344, 1.7988281, 2.5058594, 2.9921875, -1.4472656, 2.3300781, 0.32080078, 1.3046875, 1.1689453, 0.3684082, -0.36108398, 4.4570312, -3.2636719, -1.0908203, -0.7495117, 2.0371094, 0.5136719, 0.00060653687, 1.765625, -2.8867188, -1.5039062, -1.2421875, 1.7890625, 1.5244141, -0.5209961, -1.1162109, -2.4609375, 2.2734375, 0.96728516, -2.0664062, 1.1337891, -2.4277344, 0.22753906, -0.6044922, -1.9765625, 1.4404297, 1.9023438, 2.2714844, 0.87597656, -3.2949219, 2.6621094, -0.33789062, -1.5556641, -0.3190918, -0.88134766, 1.515625, -0.73535156, -0.93408203, 1.9355469, -1.2128906, -1.6533203, -0.0016765594, -1.2392578, 1.3515625, 0.6894531, 2.421875, -0.3334961, -1.3701172, -0.018692017, 1.1035156, -0.9213867, -1.3632812, 2.0117188, 0.59814453, -1.9462891, -1.0322266, 5.0039062, -0.32202148, -2.609375, -0.49047852, 0.24621582, -2.6816406, -1.8261719, 1.8085938, -1.5585938, -0.50097656, 2.0957031, -2.8867188, -4.3515625, 0.11444092, -3.1953125, 3.4453125, -0.01776123, 0.83447266, 0.35205078, -2.2988281, 0.3466797, -1.5927734, 0.2590332, -3.0273438, -2.0605469, 2.5605469, -0.8666992, 0.4650879, -0.7006836, -1.4902344, -0.6245117, -0.68603516, 1.3261719, 2.421875, 0.29077148, -0.53125, 2.0332031, 0.18847656, 2.0136719, 2.96875, -0.8613281, -0.7246094, -2.0058594, 0.5258789, -0.5576172, -0.2019043, 1.4355469, 3.1738281, -0.64990234, 0.9316406, -0.059417725, 1.6943359, 2.015625, -0.69140625, -0.34326172, -1.1914062, -0.17004395, -3.0097656, 2.8125, -1.2714844, -2.2109375, 1.4765625, -1.6435547, -2.8515625, 0.16259766, -1.1582031, 3.5585938, -1.7519531, -3.234375, 0.5625, -1.2001953, -0.50927734, -0.52734375, 1.2167969, -0.027175903, 1.6601562, -3.4628906, 2.8964844, 2.0703125, 2.4257812, -2.5019531, 2.15625, 0.9511719, 2.203125, -1.8115234, -0.0054626465, 0.8041992, -0.36401367, 2.140625, 0.6489258, -1.4667969, 1.2353516, 1.0869141, 1.8085938, -1.4492188, 0.44311523, 0.8364258, -0.5834961, 0.3881836, -0.49438477, -1.6201172, -0.33618164, 1.2646484, -0.6152344, -0.9707031, 0.09729004, -0.12432861, 0.18945312, -0.81640625, -0.70410156, -0.037841797, -0.74658203, 0.23986816, -0.99316406, -0.83251953, -0.84716797, -0.39990234, -0.7363281, 0.05480957, -1.2070312, -2.0371094, -1.1845703, 0.703125, -2.7441406, -1.1308594, -1.0332031, -0.26123047, 1.3583984, 0.75927734, 0.21386719, -1.4189453, 2.4941406, 1.5683594, -1.5966797, 0.5029297, 1.4091797, -0.55322266, 1.2255859, 0.80078125, -1.2792969, 0.09234619, -0.2319336, 4.1328125, -1.0126953, 1.2275391, 1.4931641, -0.18310547, -0.81884766, -1.4931641, 0.96533203, 0.6035156, -0.08770752, 0.4111328, -0.78808594, 1.1425781, 0.08306885, -1.3886719, 0.2705078, -0.89160156, -1.8173828, -1.7353516, -3.7890625, -1.0556641, 1.4726562, 1.0996094, -1.2304688, 2.0214844, 0.9951172, -0.6899414, -0.17626953, 1.0712891, -0.48901367, 0.43701172, 0.31640625, 0.7597656, 0.5517578, 0.5551758, -1.4658203, -1.2226562, -0.8647461, -0.91064453, -1.1943359, 0.9472656, -0.15039062, -0.77197266, 0.087890625, 0.6699219, -2.09375, -1.6972656, 1.8671875, -0.76416016, -0.007259369, -2.0234375, 1.3662109, 0.15881348, 0.97753906, -0.36669922, 0.3881836, -0.6381836, 0.1508789, 1.1308594, 1.0654297, -1.7998047, 0.77001953, 0.24353027, -0.48828125, -1.7910156, -1.0820312, -0.49731445, 3.1425781, -0.2376709, -1.7636719, 3.796875, -0.6748047, -0.14526367, 1.2832031, -0.7011719, -0.70458984, 1.6943359, 1.0820312, 0.96191406, -0.98046875, 1.3867188, -1.5195312, -1.9082031, 0.84814453, -3.3320312, -2.1054688, 1.8574219, 0.93408203, -0.18395996, 0.080566406, 0.28442383, -2.4824219, -2.5214844, 1.1132812, -2.4335938, -1.1484375, 0.009239197, 0.2849121, 0.9399414, -2.1464844, -1.9433594, -0.73779297, 0.30444336, -2.4414062, -0.10992432, 1.3349609, -0.1472168, 0.03262329, -1.8623047, 0.64697266, -1.7998047, -0.93847656, -3.5585938, -2.9003906, -1.4541016, 0.62060547, -1.5693359, 0.46801758, -0.6147461, -2.28125, 1.1318359, 1.2753906, -2.9960938, -1.1621094, 0.8642578, -1.4726562, 0.9345703, -0.62890625, -1.1611328, -0.49975586, -4.4414062, 1.7949219, -1.1347656, -0.0039520264, -0.7480469, -0.5522461, 0.8417969, 0.7895508, 0.6748047, 0.29467773, 1.3427734, 1.8232422, 0.7836914, 0.13317871, -2.9316406, -0.3474121, -2.3320312, 0.45776367, -1.1269531, 0.74072266, -4.171875, -0.6933594, 0.90771484, -1.2851562, 4.078125, 0.23339844, 1.8515625, -0.66064453, -0.6196289, 0.8876953, -0.13305664, -1.8164062, 0.5576172, 1.9042969, -0.87890625, -0.54541016, -3.484375, -2.3242188, -1.7275391, 0.40625, 0.09277344, -0.81933594, 0.28466797, 2.2460938, -4.1679688, -1.3828125, -1.1337891, 0.99365234, -0.31225586, -0.7631836, -0.6616211, -3.3710938, -2.6679688, -0.26733398, -2.0957031, 2.0078125, -1.7285156, 0.1116333, 2.0097656, -0.75390625, 4.5195312, -0.14770508, -3.6816406, 0.8178711, 1.6171875, 0.17468262, 2.5214844, -0.32373047, -0.8671875, -1.0273438, 0.29125977, 1.8789062, 0.5620117, 0.49438477, 2.2695312, 0.8618164, 0.0769043, -0.5131836, 0.69921875, -0.39208984, 1.3828125, 2.9238281, -1.125, -1.5117188, 0.7734375, 0.59277344, -1.3779297, 0.6254883, 1.9121094, 1.1621094, 0.21679688, 1.2041016, 0.050079346, 1.2753906, -0.7319336, 2.1171875, -1.1445312, 2.3984375, -0.15185547, 0.05203247, 1.1162109, -1.3964844, 2.6132812, 2.1191406, 0.8828125, 1.4882812, 0.9580078, 0.38256836, 0.5136719, 0.76464844, 1.9648438, 1.3623047, -1.1884766, 0.8745117, -1.2548828, -0.60302734, 1.9824219, -2.7851562, 0.89160156, -1.0068359, -0.17248535, 1.8212891, -1.6835938, 0.42089844, -0.56933594, -0.8828125, -0.62841797, -3.0097656, -0.54345703, -1.8378906, -0.68310547, -0.22290039, -3.984375, -1.9130859, -1.7685547, 3.9472656, 0.65185547, -1.7246094, -0.859375, 1.9492188, -1.4560547, -1.7910156, 1.5224609, 2.7832031, -0.7495117, 2.2207031, 3.2167969, -0.79003906, 2.5527344, -3.5078125, 2.296875, 0.98583984, -0.7319336, -1.0908203, 0.29345703, 0.09277344, -0.56640625, 1.796875, 0.9868164, 1.0488281, -1.5878906, 0.54541016, -1.9931641, 0.014083862, 2.015625, -1.0615234, -0.06573486, 1.7919922, -0.026733398, -0.70458984, 0.16821289, 2.2402344, 0.25195312, -1.9873047, 1.3388672, -1.3613281, 0.6064453, -0.29296875, -3.6757812, -1.2353516, -1.3964844, -0.71728516, 3.1015625, 0.03640747, 1.4101562, 2.4238281, 0.103759766, -0.4736328, -0.084472656, -2.8886719, -2.2851562, -0.30151367, -0.6010742, 1.9296875, 0.018844604, -2.1171875, -2.0917969, -2.7675781, -1.8662109, 1.390625, 1.1074219, -0.6557617, -0.05050659, -2.3574219, 0.2626953, -1.7578125, 0.43652344, 1.1416016, 0.08331299, -0.54833984, -0.2454834, 0.9277344, -0.86279297, 0.32006836, 0.79589844, 2.0644531, -0.9824219, -1.203125, 0.25048828, 1.6552734, 1.84375, -1.2646484, -2.5664062, 0.061767578, 0.2541504, 2.7480469, 0.3466797, -0.76660156, -0.5966797, -0.84375, -0.11767578, 1.0869141, 2.7207031, 0.68408203, -1.1396484, -2.8535156, 1.2148438, -1.7001953, -1.3789062, -1.8671875, -0.13891602, 0.6669922, 1.5234375, -1.8867188, -2.0585938, 1.9921875, -0.10168457, 0.6503906, -1.4003906, 3.1738281, 1.3769531, 1.7880859, 2.6855469, -2.6113281, 0.7807617, 1.6552734, -1.2041016, -0.33789062, 0.6411133, -1.5, 0.73339844, 0.21032715, 0.8833008, -2.3515625, -1.9980469, -1.2539062, -1.2353516, -0.83691406, -2.7226562, 1.9306641, 0.5600586, 1.4980469, 0.28173828, -1.5449219, 2.3867188, -0.6582031, -0.089904785, 2.2148438, -0.48876953, -0.67529297, 1.5986328, 1.5195312, -0.49243164, 0.75683594, -0.3330078, 0.091674805, -0.37158203, -0.953125, 0.7548828, 1.2207031, -1.2021484, -0.3010254, 1.0507812, 0.9145508, -1.3056641, -1.8964844, 1.7988281, 1.9863281, -0.56933594, 1.2226562, 0.054016113, -1.5273438, 1.6386719, 2.1289062, -1.3886719, 0.4038086, -0.32299805, -0.46728516, 2.109375, -1.1787109, -2.1738281, 0.0073165894, 0.82421875, -0.7675781, 1.8154297, -1.5625, -1.1347656, 2.1523438, -1.8779297, -0.6171875, -0.3449707, -1.2138672, 0.5786133, -0.3984375, 2.0898438, -0.88427734, 0.49560547, 3.7265625, 0.08874512, -3.4707031, 1.0302734, -1.2246094, -0.56396484, -1.7353516, -1.2294922, -2.9921875, -1.4755859, 2.2617188, 1.8369141, 0.36547852, 1.2607422, 2.6894531, -1.5742188, 1.2431641, -0.9477539, 1.6591797, -1.5644531, -0.46264648, 2.703125, -1.8798828, -1.0917969, -2.9179688, 1.0712891, 1.9208984, 1.1289062, 1.8066406, 0.018127441, 0.30908203, -0.35620117, -3.2265625, -2.6367188, -1.2314453, 0.0058288574, -0.74658203, 1.1513672, -0.20373535, 1.2128906, 0.009605408, -0.6201172, -0.4025879, -0.09020996, 0.27490234, -1.4619141, -1.5078125, -1.3574219, -2.0078125, -1.1337891, 0.8227539, -0.19116211, 1.8310547, -0.21716309, -4.1914062, 0.2619629, -0.5961914, -2.6347656, -0.71875, 2.5703125, 0.3486328, 2.1425781, 0.070617676, 0.05456543, 0.90185547, 2.6425781, -0.71435547, -0.8071289, 0.74365234, -1.1660156, 1.0175781, -1.1533203, -1.5576172, 1.8066406, -2.0878906, 1.2421875, 0.9692383, -0.5371094, 1.7490234, 2.2695312, -0.18603516, -1.3056641, 0.89160156, 1.4296875, 1.7890625, 0.40063477, -1.9013672, 0.8125, -1.0410156, -2.140625, 0.98779297, -2.6132812, -2.5175781, -1.9345703, 0.4140625, 3.171875, 2.3769531, 1.0693359, 2.0273438, 1.6269531, -0.96728516, 0.16101074, 0.5595703, 2.8710938, 1.5361328, -1.6308594, -1.2685547, -2.1308594, 1.4560547, 2.6484375, 0.032196045, -0.2788086, -0.0074768066, -1.8232422, -0.3010254, 0.7182617, 1.8916016, 1.4082031, 0.61865234, 0.19177246, 1.9726562, 3.2539062, -0.94189453, 1.2773438, 0.0049972534, 1.7080078, -1.8740234, 2.4511719, 0.5341797, -2.75, -0.10491943, -1.203125, 1.1171875, -0.29467773, -1.4716797, 0.05319214, -0.11419678, -0.5131836, -2.5273438, -0.69189453, -4.3476562, 0.8154297, -0.13928223, -0.89404297, -0.8198242, 1.7792969, 0.4946289, 3.140625, 1.2363281, -0.038848877, -1.2236328, -0.81152344, -1.5068359, -0.8769531, 0.453125, -1.7089844, 0.77783203, 0.46972656, 0.3215332, -0.77197266, 0.65771484, -0.049804688, 1.0068359, 1.671875, 2.1914062, 1.3583984, 2.6894531, 2.5136719, 0.86572266, 2.4570312, 0.018218994, -1.2753906, 0.23583984, 2.7382812, 2.234375, 2.515625, -1.0869141, -0.17150879, 2.2714844, -0.359375, 0.8227539, 0.89453125, 1.7148438, -2.7578125, -0.73291016, 1.9785156, 1.1757812, 0.20861816, 2.1855469, -0.98339844, -1.2050781, 0.18029785, -0.115356445, 3.9902344, -0.7495117, 2.8183594, 0.7636719, 1.5898438, 2.1582031, -2.421875, 1.3046875, 2.2226562, -2.2148438, -2.4726562, 1.1103516, 1.9208984, 2.2109375, 0.03086853, 1.5595703, 1.5117188, 2.3007812, 1.3662109, -1.6279297, 0.72802734, -0.2208252, 1.8613281, 1.0458984, -2.1425781, -1.7880859, -1.0253906, -2.7832031, -1.7753906, 0.36523438, 1.3701172, 1.9697266, 1.6435547, -3.8242188, 1.1220703, 0.4482422, 2.8066406, -0.5698242, -0.29516602, -1.3603516, -2.1953125, -1.0810547, 0.007850647, -1.2080078, 1.7236328, 1.1357422, -1.0517578, 1.7128906, 1.421875, 1.6572266, 1.0390625, 1.8984375, 0.6850586, 1.4736328, 0.28930664, 0.56152344, 1.2138672, -0.7392578, -0.16796875, 2.34375, 0.63183594, 1.265625, 2.0585938, -0.9711914, 1.3115234, 2.4375, 0.5932617, 1.0224609, -0.87158203, 0.07611084, 0.26245117, 0.83984375, -0.54248047, -1.2001953, 0.7270508, 2.1289062, 0.8046875, 1.6054688, 1.4648438, -0.4584961, 1.71875, -0.087890625, -0.75097656, -0.87890625, -0.7631836, 1.3955078, -0.44799805, -0.14465332, -0.9243164, 0.5683594, -0.3725586, -0.8300781, -0.9472656, -0.08337402, 0.115356445, -0.111694336, 0.7729492, -1.1132812, 0.020889282, -0.6069336, -1.1835938, -0.5229492, 1.3574219, 1.6591797, -2.1757812, -2.1914062, -1.8632812, -0.5595703, -1.5527344, -1.5390625, 2.0761719, 3.3007812, 2.0097656, -1.6357422, -2.0820312, -2.4238281, 0.32373047, -1.6611328, 1.8427734, 1.1367188, -0.11456299, -0.2121582, 0.12512207, 2.6875, -0.4501953, -0.6933594, -0.5883789, -0.37524414, 2.1035156, -0.79052734, -0.16040039, -0.23791504, -1.6445312, 2.109375, 2.203125, 3.0761719, -0.0050354004, 0.78564453, 3.2304688, -0.54541016, -2.6367188, 0.87597656, 1.3466797, 1.0751953, 0.47973633, 1.5527344, 1.0351562, -1.1757812, -0.076538086, -0.21923828, -1.5732422]}, "B07W64SGBK": {"id": "B07W64SGBK", "original": "Brand: DOZYANT\nName: DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color\nDescription: \nFeatures: For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners.\nMonitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low.\nHigh quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up.\nAcme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need.\nThe Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.\n", "embedding": [-1.0947266, 1.2509766, 0.8569336, 0.8876953, -0.59033203, 1.7753906, 0.7216797, 0.6308594, 0.5673828, 1.2021484, 2.4785156, 1.2314453, 2.8417969, -2.2832031, 0.7285156, 2.1074219, 0.45898438, -0.7402344, 1.984375, 1.9667969, 4.8554688, 2.2851562, 0.5566406, -1.1796875, 1.5791016, -0.7636719, 2.6074219, -2.3867188, -1.6357422, -0.041137695, -0.07989502, -1.9433594, -0.15856934, -0.38745117, -2.65625, 1.6386719, 0.796875, 0.8623047, -0.2734375, -0.80078125, -1.1279297, 0.6738281, 2.6542969, 0.60302734, -2.0234375, -2.8925781, -0.13305664, -0.6166992, -1.3095703, 0.7680664, 0.6796875, 3.25, -0.105163574, 2.1152344, -1.5498047, 1.4111328, 0.96435547, -3.5625, 1.6201172, 1.1865234, 1.8583984, 1.1865234, -2.8554688, -0.18225098, 0.6958008, -1.3300781, -0.43725586, -0.3388672, 0.21789551, -0.36889648, -0.82128906, 1.8115234, 0.4296875, -1.1738281, -1.9970703, 1.2138672, -3.3613281, -0.22705078, 2.6777344, -1.0087891, -3.234375, 0.6430664, 1.6445312, -0.79345703, -0.30615234, -0.51904297, -0.8647461, -0.39086914, 1.7919922, 1.3056641, -1.625, 0.24829102, -4.3085938, -3.3984375, -0.15344238, 0.515625, 1.9023438, 2.2460938, 3.921875, 1.625, -0.42407227, 1.0839844, 1.6386719, 0.99560547, -3.3320312, -0.24169922, 0.37670898, 1.5576172, -1.5498047, -1.0625, -1.421875, 2.2988281, 2.8046875, -1.8447266, -0.9941406, -1.0605469, 1.0146484, -1.0996094, 1.5019531, -0.30566406, 1.875, -1.1298828, -0.69091797, 0.34204102, 1.6914062, 1.7070312, -0.42626953, 2.0449219, 2.421875, 0.05291748, -0.17321777, 1.4296875, 2.3808594, -1.6660156, 3.0371094, -2.9765625, -2.9707031, -3.0703125, -1.5292969, -0.10687256, -2.515625, 0.38232422, 0.55029297, -1.0429688, -3.4375, -0.020523071, -2.3691406, -0.32910156, 0.6220703, -1.4941406, -0.19165039, -2.8105469, 0.0015821457, 0.2668457, 3.1269531, 0.796875, -0.22375488, 0.59521484, -0.22302246, 0.20214844, 0.5883789, -1.0175781, -2.4355469, 2.671875, -0.101135254, -4.296875, 0.07672119, 0.3737793, -1.3085938, 1.1953125, -0.41992188, -2.0039062, 1.7900391, -2.4785156, 1.1337891, -1.3505859, 1.7792969, 0.91259766, 1.3486328, 0.010055542, -4.0820312, -0.67089844, 0.02859497, -0.20898438, 1.59375, 1.4345703, -0.50439453, 0.2932129, 2.0039062, -0.68066406, -1.3535156, 0.8413086, 0.123168945, 2.0996094, 0.38867188, -1.1044922, -5.1953125, -1.1630859, 0.5576172, 2.1367188, -1.4638672, -1.1875, 0.7260742, -1.1425781, -0.96875, -0.015975952, -0.30688477, -0.82910156, 1.5839844, 0.39892578, 0.1928711, -0.24353027, 2.5039062, -2.0664062, -1.2587891, -1.3896484, -0.02911377, 1.2353516, 1.5800781, 1.6425781, -2.7128906, 0.35742188, 2.0566406, 1.6503906, 1.6855469, -0.089904785, -0.24523926, 2.6601562, -2.7050781, -0.45092773, 1.4365234, 1.0126953, -0.38134766, -0.042419434, -2.4902344, 3.75, 0.96435547, -1.0527344, 0.07141113, 2.6796875, 1.3046875, 0.56152344, 0.015541077, -1.9375, -1.234375, -1.7792969, -0.14562988, 2.375, -1.6972656, -0.8730469, 0.7421875, -0.5605469, -0.17797852, -3.5742188, -1.8134766, -0.52490234, -0.032684326, 0.2142334, 1.0751953, -1.1884766, 2.9082031, -2.2304688, 2.2597656, 0.28149414, -0.041046143, -0.2479248, 2.3945312, -2.2363281, -0.5600586, 0.35986328, 1.2890625, 1.8544922, 0.7475586, -1.0498047, 0.22717285, 1.9472656, -1.0048828, 2.9355469, 0.62402344, 2.0195312, 1.5507812, -1.5654297, 2.4277344, -1.3896484, 1.0068359, 1.3349609, 2.2363281, -0.17285156, -1.1572266, -0.24511719, 1.9882812, 0.9604492, -1.8134766, 2.6289062, 3.6132812, 0.7416992, 1.8544922, 1.1162109, -0.45922852, 1.1142578, -0.86083984, 0.32836914, -2.5507812, 1.7275391, 2.375, 0.22875977, -0.3852539, -1.7763672, 0.54003906, 2.8320312, -1.3574219, -0.3564453, -1.1884766, -1.3730469, -3.1464844, -1.5712891, 2.1738281, -1.0195312, -0.3737793, 1.171875, 0.056762695, 1.1230469, 0.484375, -0.097351074, -0.48901367, 0.10601807, -1.7236328, 0.3720703, 0.49316406, 0.46923828, 1.2402344, -1.2109375, 0.09625244, -0.5727539, -1.4960938, 2.3085938, -2.3964844, -3.7695312, -0.22302246, -1.2890625, -0.3466797, -1.9501953, -1.265625, 1.0869141, 0.7636719, -0.5317383, -0.04071045, 1.4990234, 0.5600586, -2.4296875, 0.40722656, 2.0761719, -1.2675781, -3.0644531, -0.11437988, 0.7026367, -0.47387695, 2.4355469, -2.0644531, 0.77490234, 0.35961914, 2.1679688, -0.8979492, -0.7680664, -0.6044922, -0.8334961, 0.4165039, -1.7294922, -1.1591797, -0.5571289, 0.7705078, -0.78027344, 1.8164062, -0.4345703, -1.5087891, -0.42163086, -0.6401367, 1.4853516, 1.1767578, 0.2734375, -0.12890625, -0.5566406, -0.22155762, -2.0585938, -2.6640625, -1.5322266, 1.2119141, 0.026306152, 0.3317871, -4.0273438, 0.09301758, -1.3632812, 0.5336914, -0.671875, -0.83447266, 0.3635254, -2.0996094, 2.0917969, -0.21582031, 0.74560547, -0.25048828, -0.42749023, -0.9785156, 0.5654297, 3.2890625, -0.5810547, -1.6064453, 0.8535156, -0.9604492, 1.0615234, -2.9277344, 1.1660156, -0.010818481, -0.15917969, 0.70458984, 0.52734375, 0.97558594, 1.734375, -0.07751465, 2.9414062, -0.39819336, 0.3635254, -4.1289062, -1.1044922, 2.7734375, 3.0429688, 2.4746094, 1.5224609, 0.16821289, 0.3894043, 1.1269531, -0.58496094, -0.34716797, -2.34375, 2.25, -3.1425781, -0.6958008, -0.8388672, -0.20898438, -3.5195312, -0.06616211, 0.8442383, 0.31225586, 3.4199219, -1.1074219, 1.0566406, -1.5478516, -0.8691406, 1.1855469, 0.50341797, 0.31347656, 0.123413086, -0.8388672, -0.105407715, -0.9873047, -0.3491211, 1.2431641, 0.83154297, 0.15454102, 0.49731445, 1.265625, -0.8623047, -0.3720703, -1.3369141, 0.6308594, 0.56591797, 1.7587891, -0.4946289, 0.24121094, -1.9394531, -0.80615234, 0.6323242, 1.2753906, -1.5263672, 0.06530762, 2.7265625, -0.7084961, 0.3010254, -0.76123047, 0.7548828, -0.27783203, 1.7412109, 1.3193359, 1.2431641, 0.20800781, -1.5449219, -1.5087891, -1.6533203, 0.75683594, -0.33764648, 1.7158203, -1.2988281, -0.5024414, -1.7373047, -1.1630859, -1.7675781, 1.0273438, 0.15185547, 0.72558594, 2.2050781, 0.36499023, -0.6923828, -0.86376953, 0.39746094, 1.1943359, -0.07397461, -1.0068359, 0.24206543, 0.7319336, -0.7885742, -0.42407227, 0.07696533, 0.9013672, -3.03125, -1.2451172, -0.62353516, -0.07159424, -1.1875, -0.89990234, 0.7758789, -0.8154297, -1.71875, 1.5185547, -0.5673828, 1.9609375, 1.1298828, -1.0527344, 0.78271484, -3.1152344, -0.83496094, -0.4970703, -5.71875, 1.2939453, -0.11016846, 1.2734375, 3.4707031, 0.54003906, 0.9682617, 2.2304688, 1.4365234, -5.0273438, -1.0732422, -1.4951172, 0.9140625, -2.6992188, -1.2753906, 2.0722656, 3.4101562, 0.75439453, -0.16516113, 0.02330017, -2.1191406, -0.9316406, -0.3215332, -0.7270508, 2.2578125, 1.5576172, -0.5698242, -0.78515625, -1.7783203, 2.1132812, -0.05831909, -2.1953125, -1.9619141, 1.6914062, 1.0732422, 0.28808594, -0.8725586, 2.0625, 1.7207031, -0.3449707, -2.4023438, -0.2770996, 3.2949219, -0.62597656, -2.4082031, -2.0507812, -0.9223633, 0.2709961, -0.25170898, 0.859375, 1.3730469, -0.5986328, 0.13671875, 0.19445801, -0.5258789, 2.2871094, -1.1757812, -2.8730469, -0.35205078, 0.3876953, -2.3945312, 0.06640625, -0.11077881, 1.5683594, -2.0019531, 0.26733398, -1.6582031, 2.5253906, 0.8457031, -2.3046875, -2.2988281, 1.5292969, -1.1816406, 1.2109375, 0.93066406, -1.6855469, -0.86572266, 1.2382812, 0.6621094, -0.48632812, -1.2109375, -0.7026367, -1.8583984, -1.2177734, 2.7832031, 1.2685547, -1.7822266, 0.39770508, 0.54052734, -0.73046875, 0.91503906, 2.03125, -2.421875, -1.2714844, 0.77001953, -0.5805664, 3.6171875, -3.0332031, 1.4814453, -1.1181641, -0.22131348, -3.1523438, 0.9604492, -0.03643799, 0.11578369, -0.45214844, 1.1787109, 1.6455078, 0.39282227, 0.6020508, 1.4501953, 0.25439453, -0.10296631, 0.71435547, -0.32543945, 1.9755859, 1.2929688, 3.5078125, 2.1191406, 2.0332031, -0.099853516, -1.1933594, 0.5395508, -1.4335938, 1.4912109, -0.19177246, 0.06921387, -2.1347656, -0.28808594, -0.85009766, 0.7871094, -0.2800293, -2.2324219, 1.9179688, 3.046875, -0.46728516, -0.9169922, -0.89208984, -1.7919922, -1.8710938, -2.3730469, -1.84375, 0.61035156, -1.5849609, 0.45336914, 0.22058105, 0.22607422, 0.011581421, 1.5839844, 2.2109375, -0.45483398, -0.19543457, 0.008094788, -0.96191406, -2.6699219, -0.41796875, -2.0859375, -1.5019531, 1.4658203, 1.8007812, 3.7441406, 0.34985352, 1.0566406, -1.1083984, 1.1533203, -1.2431641, 0.5439453, 2.625, -0.3317871, -0.31201172, 3.0703125, -1.1210938, -1.984375, -0.24890137, 0.48583984, -0.2854004, 1.5322266, 1.4570312, -0.22167969, -1.6357422, 0.6567383, -2.3808594, -6.3046875, 0.5053711, 2.0507812, 1.3476562, 1.2910156, -1.1875, -1.7373047, 0.13452148, -0.47387695, 0.20324707, -1.8769531, 1.7128906, -2.5722656, -1.0800781, -0.8774414, -0.41479492, 0.72216797, -0.6748047, 1.6181641, -2.4824219, 0.9765625, -3.8847656, -0.96972656, 0.6796875, 0.31445312, -0.5996094, -0.34179688, -2.53125, 0.47485352, -0.07519531, 1.2626953, -3.4101562, 0.5288086, -2.6953125, 2.1601562, -0.5107422, -1.09375, 1.2324219, 0.04626465, 0.7788086, -0.4206543, 2.8984375, 2.0761719, -1.3935547, -0.86572266, -1.6113281, -0.14819336, 0.20227051, -0.4206543, 0.8208008, 0.5058594, 1.5712891, 2.0410156, -2.2929688, -2.3320312, -2.5351562, -0.5644531, -0.37768555, -2.0253906, 2.5, -0.24389648, 1.1308594, 0.7558594, 0.46704102, -0.108947754, -1.1279297, -1.9072266, 0.03933716, 1.2919922, -1.4677734, 3.6953125, -1.015625, 0.023834229, -1.5283203, -1.3759766, 1.0400391, 1.9091797, -0.67333984, 1.0390625, -0.18225098, 1.0839844, -0.5605469, 0.89208984, 2.5019531, 1.0576172, 1.5498047, -1.8847656, -0.69873047, 1.4404297, -2.2089844, -1.234375, 1.8310547, -0.56396484, -1.4023438, -0.86865234, -0.7080078, -3.6464844, 1.0263672, 0.8129883, 0.17749023, -1.1669922, 0.8701172, 0.6875, -3.140625, 0.7050781, 0.6850586, -3.4863281, 0.06286621, 3.4199219, 0.49609375, 0.60253906, -1.4824219, 3.3125, -1.4941406, 0.06982422, -0.51660156, -1.2539062, -1.5703125, -1.1386719, -0.048950195, -0.63183594, 0.5234375, -1.4609375, 0.6171875, 0.78564453, 0.27929688, 0.49169922, -0.83496094, 1.8056641, 0.88964844, -0.07348633, 3.0546875, 1.7861328, 1.5087891, 1.046875, 1.4228516, 1.8330078, 2.34375, 0.38793945, 0.3215332, 0.048431396, -1.3583984, 1.6455078, -1.2490234, 1.9814453, -0.9580078, 1.9863281, 1.5371094, -0.24584961, 2.0917969, -4.1328125, -0.08886719, -1.4199219, -0.40429688, -2.7128906, 0.55126953, -0.87402344, 0.30786133, -0.10827637, 2.1582031, -1.0517578, 3.1757812, -0.17687988, -0.038757324, -0.2565918, 2.7167969, -0.2241211, -0.7036133, -0.06121826, -0.29882812, -0.37036133, 0.5410156, -0.8017578, 0.2578125, 0.7050781, 0.82666016, -0.09088135, -0.69091797, -0.38891602, 0.19836426, -0.8769531, -1.2822266, 2.8164062, 1.6835938, 1.4033203, 3.8203125, 1.0009766, 0.25805664, -2.1660156, 0.9902344, -0.4506836, 0.09576416, 0.062347412, -4.6132812, 1.4521484, -0.6411133, -1.8769531, -2.0332031, 0.36669922, 2.0664062, -1.5351562, 1.9638672, 0.70166016, 0.16564941, -0.3215332, 0.74072266, -1.15625, 1.7929688, -0.76123047, -0.38476562, 1.9511719, 1.7919922, 1.25, -0.6738281, -1.7724609, 4.2382812, -0.22583008, -0.5722656, -0.05291748, 0.73291016, 1.8203125, 0.38598633, -0.34570312, -0.82666016, 1.6523438, 1.1181641, -0.20568848, 0.42333984, -1.0263672, 1.0361328, -1.3183594, -1.609375, -0.02645874, -2.7324219, 0.73876953, 0.8388672, -1.7871094, -0.26586914, 1.8681641, -1.7373047, 2.6972656, 2.8789062, -0.5024414, -0.14355469, -1.2304688, 1.8222656, -2.4570312, 1.4404297, 1.2822266, -1.5087891, -1.4287109, -3.3554688, -0.5078125, 0.066223145, -1.0322266, -0.66796875, 1.1650391, -0.4399414, -0.42700195, -1.2177734, -1.3056641, 1.4121094, 3.4980469, 1.109375, 0.3996582, -0.008872986, -0.48510742, 2.2851562, -0.040893555, -1.6748047, 1.265625, 0.8510742, 1.0634766, 2.5214844, -0.99853516, -2.2441406, -0.4309082, -2.7226562, 2.3105469, 0.12121582, -2.6230469, -0.12561035, 2.671875, 1.0595703, 1.8193359, 0.5991211, -0.20861816, -0.49169922, 0.46777344, -1.6171875, -1.1484375, 0.4494629, 0.62597656, -0.25048828, 4.21875, 0.70654297, -0.84033203, 0.25561523, 3.7109375, -1.5009766, -1.2998047, 1.3291016, -1.1835938, 0.17077637, 2.4628906, 0.89501953, 1.0341797, 0.46777344, -1.3300781, -2.5976562, 1.0458984]}, "B07H5RJ8YJ": {"id": "B07H5RJ8YJ", "original": "Brand: Weber\nName: Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nEquipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000\nPorcelain-enameled, cast-iron cooking grates provide superior heat retention\nAmple Cooking Surface. Up to 669 sq in, including the tuck-away warming rack.\niGrill 3 compatible, for perfectly grilled food (accessory sold separately)\n", "embedding": [-0.5678711, -0.14807129, 1.3007812, -0.46557617, -0.12200928, 0.39208984, -0.009208679, -1.6914062, 0.67529297, 0.6020508, 1.4111328, -1.1630859, 0.42041016, -3.0878906, 0.42211914, 0.28344727, 2.5117188, 0.85253906, -1.34375, 0.7944336, 1.4394531, 0.27954102, 2.3574219, -1.9833984, 0.9248047, 0.8989258, 4.1601562, -5.5195312, -1.1396484, -2.0625, 1.6298828, 0.4375, 0.5732422, 2.5449219, -3.8613281, -2.4023438, -2.5742188, 2.0078125, -2.1386719, 1.5400391, 0.12939453, -1.859375, 0.38256836, -0.72753906, -1.9589844, 1.5244141, 1.0800781, 1.0664062, -3.1933594, 0.09655762, 3.6386719, 2.09375, -0.39526367, -0.06555176, -0.90722656, 2.7617188, 0.54541016, -1.6220703, 1.96875, 0.19140625, 2.046875, -0.4116211, -2.3027344, -1.828125, -1.9189453, -0.67822266, 0.7363281, 1.1689453, -0.103393555, -0.29882812, 4.1523438, 0.2084961, -1.7714844, 1.7333984, -0.5678711, -1.7841797, -2.4746094, 1.53125, -0.13989258, -1.0341797, -1.4941406, 2.5566406, 2.9667969, -2.4511719, 0.6953125, 0.84472656, 0.06210327, -2.5800781, 1.8486328, 0.61865234, -0.3935547, 0.4814453, -1.9658203, -3.6972656, 2.1367188, -0.18200684, -0.15185547, 1.1894531, -1.2900391, 2.1972656, -1.1347656, 1.453125, -0.31079102, -0.64404297, -3.34375, -2.0820312, 1.9599609, 0.34399414, -2.9453125, -0.49291992, -1.3769531, -0.5336914, 1.5058594, 2.3417969, 2.0019531, 1.1503906, 1.5058594, 1.7470703, 1.2011719, 0.6767578, 3.5800781, -1.5234375, 0.32104492, -0.56933594, -1.2236328, -1.5439453, -0.8286133, 0.40429688, 3.6894531, -3.2382812, 0.114990234, 0.29956055, 3.5410156, 1.3310547, -2.1113281, -1.7294922, 0.044708252, -1.1289062, -3.5800781, 0.24963379, -1.2568359, 0.23840332, 1.5332031, -1.9853516, -3.2539062, 1.2558594, -1.2431641, 1.0195312, -0.031585693, -1.0146484, -0.07574463, -1.3671875, -0.50878906, -2.6035156, 2.0507812, -0.5625, -0.88378906, 0.20031738, 3.1835938, 2.0058594, 1.4853516, -0.84277344, -2.0957031, -1.6894531, 0.9658203, 0.30932617, 0.6738281, 1.4345703, -0.9194336, 1.8945312, -0.42749023, -2.0605469, -0.68896484, 0.45532227, 1.7353516, -2.1191406, -0.09124756, 0.9189453, 0.117004395, -0.15002441, 0.18188477, -1.3144531, 0.57373047, -1.6445312, -0.18151855, -0.36816406, 0.9345703, 1.0283203, 1.8349609, -1.3310547, 0.8256836, -1.1259766, 1.2382812, -0.020019531, 0.84228516, -1.3964844, -2.1640625, -0.6982422, 2.5273438, -1.0800781, -0.90527344, -0.6381836, 1.2402344, 1.2021484, -0.7753906, -3.2382812, -1.4052734, -3.2128906, 0.7788086, 1.0244141, 2.0996094, -0.86279297, 0.55078125, -0.33398438, 0.53271484, -1.0537109, 2.0117188, 0.53222656, 0.02835083, 2.4589844, 0.032226562, -0.95214844, 0.9370117, 1.4853516, 0.4428711, 1.0878906, 0.8696289, 0.087402344, -2.9570312, -1.8291016, 3.5078125, -0.47338867, -0.77246094, 0.96240234, 0.93603516, 3.6152344, 1.2529297, -1.1396484, 0.13537598, 1.0410156, -0.5390625, -0.8881836, -3.0117188, -0.94921875, -1.2353516, 0.08013916, -1.5371094, 2.3242188, 0.96972656, 1.9804688, 0.7890625, -0.5151367, 0.9892578, 0.6982422, -0.10406494, 0.32714844, -1.1123047, 2.2304688, 0.41601562, -1.4785156, 1.2529297, 1.3964844, 0.016433716, 1.5722656, 1.0634766, -1.9931641, 1.0283203, 2.0292969, -0.67041016, -2.7792969, 0.6870117, 0.107421875, 1.1738281, -0.86328125, 3.2265625, 1.5537109, -1.0390625, 3.0136719, 0.085754395, 1.7128906, 0.0680542, -1.7373047, 0.95703125, -2.8847656, -0.6328125, 1.1455078, 0.55810547, -1.3896484, -1.0566406, 0.41674805, 4.6875, -1.2509766, -2.3300781, 2.9746094, -1.2431641, 0.6459961, 2.4433594, 0.45141602, -1.3730469, 1.1396484, 2.1660156, 0.76660156, 1.4765625, 1.8037109, -0.7294922, -0.4572754, 0.4819336, -1.9189453, 0.0128479, 1.0947266, -0.4494629, -0.94384766, -1.2626953, 0.9628906, -2.8007812, -0.3671875, 1.5302734, -2.5273438, 0.6621094, -1.1083984, 1.0810547, 0.33813477, -2.1347656, 0.095214844, -1.3525391, -0.28710938, -1.1455078, 0.26611328, 0.07507324, -1.7490234, -0.53027344, -0.35766602, -0.8515625, -3.2675781, -1.6582031, -1.4462891, -1.3261719, -2.9648438, 0.31274414, -1.0537109, -1.3388672, 1.4345703, -1.2792969, -0.29516602, 0.31396484, -1.6230469, -0.4645996, -0.40942383, -0.9453125, -0.13098145, 0.76904297, 0.6713867, -1.3740234, -2.09375, -0.36914062, -1.3232422, 1.1123047, 0.2512207, -0.35205078, 0.421875, 0.8886719, 0.95947266, -0.026016235, 0.87890625, 1.7490234, -0.52441406, 0.43481445, -2.8222656, -0.50683594, -2.9238281, 1.8935547, 1.6542969, 0.97998047, -3.3164062, -0.640625, -0.41967773, -0.45092773, 3.9667969, 0.27978516, 1.4873047, 0.09454346, 0.14331055, 0.67529297, -2.4707031, -1.4462891, -0.012031555, 0.32983398, -2.2109375, -0.34179688, -1.1132812, -1.0585938, -1.4648438, 0.56152344, 0.2043457, -1.0224609, -1.7636719, 1.5410156, -2.1347656, 0.27124023, -0.73779297, 0.5029297, 0.73291016, -1.6621094, -2.546875, -0.5805664, -1.6103516, -1.4892578, -2.0742188, 1.1474609, -0.19396973, 1.2011719, 1.4355469, -0.6269531, 0.7050781, 0.28833008, -3.6308594, 1.8603516, 0.080078125, -3.4335938, 2.4511719, -2.0839844, -0.4975586, -3.3417969, 0.7739258, 3.1308594, 0.6972656, 0.9399414, 1.546875, 0.9765625, 0.44189453, -0.88378906, 0.5620117, -1.8662109, 0.15490723, 2.3339844, -2.28125, -0.76660156, 1.1933594, -0.047088623, -2.5449219, -1.8964844, 3.3886719, 2.5253906, 1.7373047, 0.7050781, 2.3554688, 0.9423828, -1.3955078, -0.20410156, -0.20410156, -0.7470703, 0.23510742, -0.7734375, 0.35375977, -1.0693359, 2.625, 0.4580078, 1.0966797, 2.4140625, 0.8154297, 0.11407471, 0.9506836, -0.32080078, 0.09185791, 0.51660156, -0.15075684, 2.1484375, -0.96240234, -0.31860352, 0.4736328, -1.3349609, 0.7128906, -0.70166016, -2.4472656, 2.0800781, -0.78027344, -0.9370117, -0.93603516, 0.89501953, 2.1738281, 0.14245605, -0.2084961, -1.8193359, -0.25, 1.6992188, -0.81347656, -0.7246094, -1.9140625, 0.06585693, -0.7998047, -3.1152344, 0.5517578, 4.6289062, -1.5068359, -0.89697266, 0.93603516, -1.1894531, -0.4501953, 2.1445312, -1.0126953, 0.12561035, 0.9472656, -1.8720703, 0.7573242, 0.7548828, 0.91796875, -1.3652344, -0.87158203, -0.2199707, -1.0107422, 1.2128906, 1.7226562, -0.17687988, -3.0839844, 0.6767578, -3.2050781, -1.5507812, 0.057556152, -1.5302734, -1.3916016, 3.3242188, 1.1103516, 0.5541992, -1.0644531, 3.4453125, -1.4150391, 0.46118164, 2.7792969, -3.671875, 0.8847656, -3.6484375, -2.8066406, 0.6064453, -1.6484375, 0.5439453, 1.2148438, 0.4958496, 0.46069336, 3.5253906, 0.4333496, -1.5273438, -1.3046875, -0.2668457, -0.40039062, -0.36328125, 0.13195801, -0.9433594, -1.2529297, -1.8740234, -2.6875, -1.4765625, 0.09112549, 0.5996094, 1.9257812, -3.7695312, 0.02079773, -0.72753906, -1.234375, -2.0683594, -1.2216797, 1.7558594, 0.038330078, 0.94140625, -3.0957031, 1.0830078, 0.8310547, -0.6069336, 2.4824219, 2.7460938, -0.3388672, -2.5175781, 2.3378906, 0.22302246, 3.5136719, -0.60058594, -2.6699219, -1.3837891, 1.1816406, 1.0371094, -2.0605469, 0.35302734, 0.48876953, -1.3339844, 0.85058594, 1.5136719, 2.125, 1.5927734, 0.008514404, -1.6640625, -0.5185547, 0.13195801, -0.16137695, -2.1894531, -0.46411133, 1.4072266, -1.2490234, -0.19140625, -2.3242188, 1.9238281, -1.078125, -1.0810547, -3.1796875, 2.3261719, 3.3828125, 2.4746094, 2.4902344, -1.9736328, 1.6689453, 0.0044059753, -0.11541748, -0.9453125, 1.4990234, -1.3730469, -0.7426758, 2.8886719, 1.0332031, -0.9663086, -0.10321045, 1.2099609, -1.8916016, -0.12030029, -1.5966797, -0.6669922, -1.3876953, -0.39648438, 1.0439453, -0.7158203, 3.5976562, -0.14245605, -1.8017578, 0.9350586, 1.453125, -0.4963379, 0.2775879, 0.3684082, -0.10205078, -0.1352539, 1.8447266, 2.296875, 0.60546875, 1.2001953, -0.59814453, 0.82421875, -0.57910156, 1.1826172, 2.3691406, -0.45043945, -1.2998047, -0.3034668, 2.0566406, 2.59375, 2.3984375, 2.7363281, 0.76220703, -2.9394531, 2.6757812, 0.41259766, -2.984375, 1.7509766, 0.5629883, 0.37695312, 1.2402344, 1.5585938, -3.7128906, -1.2558594, 2.171875, -0.6855469, 1.6875, -0.7211914, -0.1887207, 2.515625, -0.40161133, -0.59375, -0.18273926, -0.5522461, 1.6445312, 1.1972656, 0.31103516, -2.0351562, 1.7431641, 1.5996094, -0.6791992, -2.2070312, 2.734375, -0.33374023, -0.007675171, -1.7363281, 0.07305908, 0.42358398, 0.30786133, 3.4199219, 1.5039062, 2.359375, -0.5883789, 1.4443359, -2.1601562, -0.4819336, -2.1835938, 2.6347656, -1.6240234, -1.2802734, 0.7753906, -2.90625, 1.0478516, -1.8388672, -2.0332031, -0.38842773, 1.3828125, 1.0986328, 0.2685547, -2.0078125, -0.066223145, -1.1689453, -2.5195312, 0.1862793, 0.5385742, 0.7036133, 0.42358398, 1.265625, -2.0214844, -0.008049011, -0.021743774, 0.3725586, -1.5009766, 0.07476807, -1.6376953, -1.0527344, -0.9345703, 0.4501953, -1.9521484, 0.25561523, 1.5605469, -0.03692627, 1.3105469, -2.7363281, -0.78125, 0.4025879, -0.5371094, 0.048034668, 1.7060547, 1.3447266, -0.7915039, 2.2070312, 0.54541016, -1.703125, 2.2695312, -2.7441406, -1.3554688, 2.0644531, -1.4599609, 2.375, -0.7163086, 0.36035156, -0.65966797, -1.2304688, 1.5214844, 1.5537109, -0.016967773, -0.86083984, 0.57177734, -0.859375, -1.5917969, 0.80615234, -0.16503906, 1.8115234, -0.13879395, -1.5029297, -0.6201172, -1.0693359, -1.6464844, 1.4560547, -2.7324219, -1.1855469, -0.7084961, 1.3876953, 1.1582031, 0.47192383, -0.9423828, 3.4804688, -0.8066406, -1.7470703, 0.012680054, -0.48632812, 3.5957031, 3.4589844, -0.21411133, -0.7841797, -1.8623047, -0.12817383, 0.39794922, 1.4414062, -1.7285156, 0.38500977, -1.2832031, -0.35864258, -0.5292969, 1.2314453, 1.1064453, -0.0031757355, -0.084106445, 0.9848633, 2.9023438, -0.9194336, 0.49804688, 1.4443359, -0.77001953, -0.90234375, 4.6367188, 0.51660156, -3.0273438, 0.9824219, -2.0566406, 1.9765625, 0.8857422, -0.67578125, 0.10064697, -1.0859375, -1.671875, -2.3164062, -1.8007812, -3.1152344, 1.3847656, 0.8803711, -1.4414062, -1.9628906, 1.1269531, 0.1763916, 4.7421875, 0.64941406, 2.0410156, -1.5263672, 0.12878418, -0.49243164, 0.5961914, 0.81396484, -2.9199219, 1.1083984, 1.9121094, -2.0605469, -1.4921875, 1.2617188, 0.09051514, 3.6015625, 0.88134766, 2.2519531, 3.1835938, 2.0390625, 1.7568359, 1.1513672, 0.60253906, 0.22058105, -0.7495117, -0.8334961, 1.0029297, 0.51660156, 1.3916016, -0.81347656, 2.8613281, -1.4492188, -0.23168945, -0.44799805, -0.8833008, 0.83935547, -2.0390625, 0.9746094, 1.2900391, 2.9023438, -1.6435547, -1.1289062, -0.16516113, 0.69677734, 0.65234375, -0.7211914, 1.4101562, 0.7084961, 1.1279297, -1.2451172, 0.12390137, 2.2792969, -4.7773438, 1.3310547, 0.41430664, -0.55371094, -1.2216797, -1.2011719, 1.6191406, 0.8251953, -0.11456299, 1.0986328, 3.1621094, 0.49560547, 1.6416016, -3.3554688, -0.81689453, 0.6254883, 3.7246094, 0.025787354, -0.6660156, 1.3193359, -1.7119141, -4.2890625, -3.9472656, 3.8789062, 0.8852539, 0.8803711, 1.5751953, -0.7915039, 3.2558594, 0.39990234, 1.3505859, -1.7568359, 0.7290039, -0.8857422, -3.265625, -1.2060547, 0.8310547, -1.6669922, 0.16247559, 0.7055664, -0.7207031, 1.1025391, 1.7197266, 2.0058594, -0.38891602, 0.7583008, 1.4804688, 0.3701172, 0.34277344, 1.6162109, 0.7895508, -1.5068359, -1.5927734, 1.1279297, 2.2695312, -0.08337402, -0.18798828, -0.7104492, -1.03125, -0.7709961, -1.3964844, 1.7529297, -1.4150391, -0.6459961, 0.3215332, 0.73339844, -2.3046875, -1.703125, 3.1914062, 2.8105469, 0.85058594, 1.0058594, 2.5019531, -1.4804688, 0.47192383, 0.84765625, 0.09844971, -0.36572266, 0.10900879, -0.20202637, 0.93603516, -1.3710938, 2.1210938, 1.5449219, 0.45361328, -0.18225098, -0.45996094, -0.2956543, -0.453125, 0.15429688, 1.5878906, -1.4970703, -1.6367188, 2.1699219, 0.21923828, -2.0683594, 2.9863281, -0.359375, 0.67285156, -1.4140625, -2.8652344, -1.203125, -1.1923828, -0.6459961, 0.76660156, 3.0625, 0.40551758, 0.8232422, -2.3945312, -2.9375, -1.9414062, -2.2832031, 1.8417969, -2.265625, -1.71875, -1.4257812, 0.9086914, 3.0488281, -0.7944336, 0.1529541, -0.67285156, -2.4042969, 1.7373047, -0.22509766, 1.4921875, -0.38354492, 0.09118652, 1.0800781, 0.9638672, 2.2109375, 1.4345703, 0.6845703, 2.4941406, -0.77734375, -1.7402344, -0.31567383, -0.12780762, 0.048797607, 0.33447266, -1.0302734, 0.7260742, -0.5239258, -1.4960938, 0.68603516, -2.0078125]}, "B093BP356D": {"id": "B093BP356D", "original": "Brand: BALI OUTDOORS\nName: BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze\nDescription: BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night\nFeatures: \u25b6MULTI-PROTECTION\u25c0 BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won\u2019t be affected by the windy weather\n\u25b6NICE AMBIANCE\u25c0 Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame\n\u25b6OPTIMIZED PRODUCT STRUCTURE\u25c0 Wheels are different from the usual smooth surface wheels, it uses gear design, won't out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater\n\u25b6REASONABLE AND HIGH-EFFICIENCY\u25c0 Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition\n\u25b6BLENDING OF CLASSICAL AND MODERN BEAUTY!\u25c0 Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night\n", "embedding": [-0.59472656, 1.9541016, 1.9023438, -0.35742188, 0.0129470825, 1.6601562, 1.484375, -2.6855469, 1.234375, 2.9199219, -1.0488281, 0.6772461, 0.55566406, -3.3183594, 1.9892578, 0.8701172, 0.7504883, 0.6743164, 2.2109375, 1.0068359, 2.1933594, -0.9951172, -0.7504883, -1.2285156, 0.16882324, 0.9057617, 3.1621094, -1.4248047, 0.6401367, -2.0332031, -0.27319336, 1.2294922, -0.24926758, 1.953125, -2.515625, -3.3085938, -0.6044922, 2.6015625, -3.6914062, 0.3540039, -2.421875, -2.0371094, 1.0097656, 1.8388672, -1.5166016, 1.5732422, 0.99365234, 1.3408203, 0.32080078, -0.99316406, -0.40454102, 0.29638672, -1.0126953, 0.5107422, -1.7783203, -0.25634766, -0.50927734, -1.5351562, 1.8144531, 0.57128906, -0.8745117, -0.20861816, -2.7988281, 3.6054688, -0.2824707, 0.06311035, -1.0703125, -0.4501953, -0.90722656, 0.68408203, 1.7617188, -0.7919922, -1.1210938, 0.92089844, 1.7490234, -1.8222656, -1.1640625, 1.6650391, 3.0332031, -0.47143555, -0.6557617, 0.34936523, 2.2304688, 1.4863281, -2.3730469, 0.43945312, -0.30249023, 0.35180664, -0.58691406, 1.1865234, -1.3994141, 1.7060547, -1.1152344, -3.4785156, -0.40771484, -3.7910156, 2.5527344, 0.042541504, -1.5693359, 0.80078125, 0.060546875, 0.4645996, -1.2158203, -0.59716797, -0.5595703, -0.41308594, 3.546875, 0.053588867, -0.5859375, 0.09460449, -1.1328125, -0.5571289, 1.4873047, -0.33007812, -0.30151367, -0.015701294, 1.7998047, 3.2617188, 3.6601562, 2.9453125, 3.5644531, 0.72216797, 0.27685547, -2.5664062, -0.20959473, 0.48828125, -0.7138672, -1.4892578, 3.7089844, -2.7539062, 1.2382812, -2.1542969, 0.22045898, 1.375, -1.1552734, -0.7138672, -1.2880859, -0.84765625, -3.5, -1.3955078, -1.3144531, -0.18920898, 1.1689453, -0.12335205, -4.3632812, 0.45507812, -0.8618164, 4.0507812, -0.83984375, -0.2421875, 1.8847656, -0.47607422, -0.49975586, -2.2519531, 0.92626953, 1.7324219, -0.0138549805, -2.8847656, 4.1210938, 1.4677734, 2.0761719, -0.79296875, 0.95458984, 1.8408203, 0.0038871765, -1.3251953, -0.04208374, 1.1503906, 1.1455078, 0.05053711, 0.40063477, -3.4902344, 0.60595703, 0.68115234, 0.16418457, -1.5039062, -0.52783203, 0.83691406, -0.70410156, 0.8574219, -2.4394531, -2.3710938, 1.328125, 0.64404297, 0.88671875, -1.1914062, -0.59521484, -1.5175781, -0.3725586, -0.5859375, -1.1767578, 1.3847656, 0.82470703, -1.6474609, -0.8261719, -2.3925781, -3.9433594, -1.8847656, 2.3046875, 0.111572266, -1.1533203, -2.0703125, -0.91015625, -0.50927734, -2.6523438, -2.9628906, -1.1123047, 0.4050293, -0.30639648, 1.1210938, 1.1845703, 0.72802734, 1.8466797, -2.6738281, 1.2255859, -1.1035156, 1.9375, -0.67822266, 2.3945312, 2.6796875, -0.47021484, 0.50878906, -0.28857422, 1.7197266, 0.4248047, 1.7001953, 1.9365234, -0.6591797, -1.3222656, -0.42529297, 3.0117188, 1.3310547, -1.6357422, 1.453125, -2.0859375, 2.6015625, 0.83154297, -1.1210938, 1.6230469, -2.1132812, 0.64746094, -2.4667969, -0.48901367, 0.328125, -0.6904297, 2.1074219, 0.34179688, -0.36279297, 1.5322266, -0.95996094, 0.8955078, 0.20300293, 0.72216797, -1.7148438, -0.63427734, 0.33251953, -0.57714844, 1.9140625, -1.4921875, -0.9536133, 2.4726562, 0.8574219, -0.5576172, 0.030380249, -0.60498047, -1.4882812, 2.0820312, 0.86328125, -4.8046875, -0.56347656, 0.9394531, 0.6040039, 0.80371094, 0.94091797, 1.8056641, 1.0498047, -2.0351562, 2.8828125, 0.31518555, 1.0966797, 1.1152344, -1.3398438, 2.1582031, -1.5019531, -1.0927734, -0.070739746, -0.6567383, 0.9794922, -0.6816406, 1.6455078, 3.9882812, -1.4326172, -1.5888672, 2.0976562, -0.15759277, 0.13684082, 2.0488281, 0.5336914, -1.1806641, -3.078125, 2.5117188, 1.2363281, -0.36279297, 1.0800781, -1.484375, -0.046875, 0.21496582, -2.4023438, -0.42285156, -0.4404297, -0.8461914, -1.1044922, -2.9628906, -0.5078125, -3.2910156, -1.1103516, 3.3300781, -1.4716797, 2.5253906, 1.0273438, -0.018981934, 0.2487793, -0.3527832, -2.203125, -0.016082764, 0.034210205, 0.48168945, 0.0026855469, -0.7729492, -0.05847168, -1.4501953, -0.89746094, 2.703125, -1.9960938, -2.0488281, -0.96191406, -1.3974609, -0.5083008, 0.9038086, -2.296875, 0.27856445, 1.1347656, -0.44189453, 0.45898438, -1.2021484, -0.9716797, -0.08129883, 1.2958984, 0.7182617, -0.72558594, 1.5361328, -0.16003418, -0.89746094, -5.4726562, -0.63134766, 0.8691406, -2.8339844, -0.09326172, 0.54052734, 0.31689453, -0.83251953, 1.6992188, 0.13977051, -0.13598633, -0.39526367, -1.6425781, -0.84765625, -6.0429688, 2.2246094, -0.72558594, 0.74609375, -0.7915039, 1.6044922, -2.8300781, -1.3525391, 1.625, -1.3085938, 4.6171875, 0.4362793, 2.4648438, -1.5898438, -0.92626953, 0.38476562, 0.76904297, -1.9277344, -1.1777344, -2.1035156, -0.46899414, -0.054260254, -2.46875, 0.09094238, -1.2724609, -1.6552734, -0.15246582, -0.40600586, 0.6767578, 0.7441406, -1.1054688, -0.7675781, -0.036895752, -0.06347656, 0.42211914, 1.9931641, -2.5898438, -2.1816406, -1.0117188, 1.0634766, -0.70947266, 1.8759766, -0.95703125, -0.7397461, 1.515625, 0.047058105, 1.1611328, -0.21655273, -3.4648438, 1.5302734, 1.9248047, -0.50341797, 1.5097656, -0.6699219, -0.10583496, -1.2666016, -1.5283203, 2.8066406, -0.2265625, 2.7246094, -2.0410156, 0.5209961, 0.5073242, -0.09326172, 0.25146484, 0.109680176, -0.9326172, 1.6953125, -2.0136719, -0.5024414, 1.0048828, 1.7636719, -1.9150391, -0.39526367, 0.9536133, 0.17114258, 1.9960938, 0.12145996, -0.33666992, 1.9072266, 1.0917969, 0.8144531, 1.1230469, 1.4072266, 0.15673828, -3.2910156, 0.31103516, 1.3251953, 1.8125, 1.3857422, 0.4741211, 1.5263672, 0.38378906, 0.8461914, -2.6289062, 1.2558594, -0.52001953, 1.3164062, -0.08721924, 3.3789062, -2.1035156, -0.35986328, 1.2207031, 1.2998047, 0.3125, -2.7480469, -2.0527344, 2.8222656, 0.91308594, -0.9067383, -2.6601562, -1.046875, -0.6953125, -0.15478516, -0.15637207, -0.34692383, -1.2626953, -0.21704102, -1.1435547, -0.19677734, 0.05206299, 2.9414062, 0.83984375, -4.9453125, -1.1386719, 0.5913086, -0.5209961, -0.9609375, -1.5869141, -0.98876953, -0.14135742, 3.6132812, -0.95214844, 0.81640625, 0.93408203, -1.5185547, 1.5498047, -0.16357422, 0.49560547, -0.9628906, -0.5053711, -1.9677734, 1.1425781, -0.15551758, 1.8388672, -0.30664062, -3.1796875, -0.39233398, -2.4121094, -0.83203125, -1.1601562, -0.38183594, -1.2402344, 2.375, -0.12719727, 2.6660156, 0.8491211, 3.3535156, -1.9775391, -1.8330078, 0.5600586, -1.4375, 0.6147461, -1.1386719, -5.5195312, 0.6298828, -1.4501953, -0.31396484, 1.1455078, -0.6401367, 0.60839844, -0.51464844, 0.31567383, -3.1386719, -3.2578125, -0.11413574, 0.44091797, -1.6650391, -0.7006836, 2.2519531, -1.5068359, -0.66308594, -2.7539062, 1.5888672, -0.19091797, -0.065979004, 1.8339844, 0.16845703, 0.9326172, -2.5878906, 0.55078125, 0.8066406, 0.5805664, -0.8544922, -0.1529541, 0.13183594, -0.9584961, 3.5800781, 0.6074219, 1.0107422, 1.7324219, 2.8027344, 1.2705078, -0.91845703, 0.375, -1.0908203, 2.4863281, 0.03942871, -3.2636719, 1.0078125, -0.97753906, 1.0722656, -1.8925781, -0.5678711, 0.67089844, -0.6933594, 0.07739258, 2.2148438, 0.48632812, 1.0292969, 1.0859375, -3.8535156, 0.8149414, 0.45336914, -3.3085938, -2.109375, -0.74902344, -0.7421875, -1.8339844, 1.4951172, -1.3818359, 1.6367188, -0.5463867, -1.9277344, -2.2597656, 1.1259766, 2.7070312, 2.0253906, 1.0322266, -3.0488281, -1.3769531, -0.8642578, -0.8720703, -0.2524414, 1.5556641, 0.5463867, 0.42358398, -0.08215332, 2.1425781, -0.56396484, 0.28955078, 1.0009766, -1.1181641, 0.39575195, -0.79541016, -0.17358398, -0.8413086, -2.6679688, 1.2167969, 1.7363281, 1.7519531, -2.4921875, 0.5727539, -0.2788086, 0.46777344, -2.4433594, 0.31982422, -2.0546875, 1.8476562, 1.4033203, 2.0917969, 2.0058594, -2.1152344, 0.28393555, -1.2294922, 3.1484375, -3.4472656, -0.3310547, -0.3310547, -0.17663574, -0.019241333, -0.22387695, 2.3457031, 1.3984375, -0.84277344, 1.8173828, 1.8955078, -1.8300781, 0.3491211, 0.32006836, -1.9814453, 1.4736328, 0.15539551, -1.8251953, 0.94873047, -0.28686523, -1.8710938, 0.14562988, 3.6464844, 0.01058197, 1.1308594, -0.43554688, -1.2001953, 0.15466309, -2.3359375, -0.8745117, -1.0976562, 0.35205078, 0.5341797, -0.47680664, 0.21862793, -0.67529297, 2.515625, 0.98339844, -0.58447266, -1.0498047, 3.0585938, 0.34472656, 0.44750977, 0.37670898, -1.9921875, 1.140625, 0.1998291, 1.4765625, 0.7368164, 1.5839844, 1.5390625, 0.9321289, -2.1035156, 0.16455078, -1.2548828, 3.9765625, -1.5, 1.0576172, 2.8984375, 0.5371094, 0.44555664, -2.8632812, 0.89453125, -0.5336914, 1.5517578, -1.359375, 0.02128601, 0.45703125, -1.7148438, -2.3691406, -3.2304688, -0.78466797, -0.5048828, -1.4833984, 0.56640625, -1.4433594, -1.7841797, -0.47192383, -1.1113281, 0.35327148, 0.5888672, 0.44726562, -1.3974609, -0.4165039, 1.3105469, 0.054473877, 1.0839844, 1.0546875, -1.7314453, -0.57177734, -0.89990234, -3.34375, -0.34277344, 0.8540039, -0.124938965, 1.4824219, 0.89404297, -1.3134766, 1.1835938, 2.3476562, -0.52001953, -1.5458984, 1.1923828, 1.2734375, 1.2841797, 2.3320312, 0.27075195, 1.3251953, 0.1673584, -1.7626953, 0.78222656, 0.42504883, -1.6240234, 0.22827148, 1.2314453, 1.5849609, 0.93066406, 0.30932617, -0.3022461, 1.4560547, -0.22680664, 2.5078125, -0.44702148, -2.1914062, -0.15991211, -3.1015625, -1.9619141, -2.4296875, -0.50097656, -0.9951172, -0.4387207, 1.4091797, 1.4677734, 0.6611328, 1.1259766, 0.14123535, 0.58203125, -2.6171875, 0.6923828, 0.6269531, 3.1132812, -0.27246094, -0.97216797, -3.5273438, -2.9453125, 0.4104004, 0.0052375793, 0.70703125, -1.4941406, 0.017059326, -0.47827148, 1.9238281, -0.50097656, 1.0488281, 1.8525391, 1.9863281, -1.7382812, 2.296875, 1.9257812, -0.63720703, 0.67822266, -0.13806152, 2.7460938, -1.0761719, 4.21875, 1.5673828, 0.5722656, 2.2539062, 0.23864746, 1.9677734, -0.5991211, -0.4248047, 1.1552734, -3.4746094, -0.28881836, -0.97998047, -0.3647461, -3.5039062, 0.4621582, 1.5, 0.21777344, -1.0527344, 1.4394531, 1.4375, -0.15246582, 3.0996094, 1.0556641, -0.54052734, -1.15625, 0.05731201, 1.4492188, 3.3515625, 0.8354492, 0.00058174133, 0.7446289, 0.61279297, -0.83496094, 0.9213867, -1.578125, 1.7294922, 1.5410156, 1.4775391, 2.7128906, 0.29736328, 2.1445312, 0.5883789, 1.8867188, 1.3808594, -1.4042969, -0.47045898, 0.8305664, 1.7949219, -0.50878906, -1.3857422, -0.33154297, 1.2773438, -2.1015625, -1.1064453, 1.1064453, 0.7441406, 0.61376953, 1.0664062, -0.50878906, -0.30297852, 0.123535156, 0.26635742, 0.57128906, -0.22631836, -0.3635254, 1.2783203, 1.6796875, -0.39379883, -0.13769531, 0.87158203, -0.35595703, 0.47924805, -1.7226562, 1.5400391, -0.39453125, 0.11004639, -0.013008118, 2.7285156, 3.1015625, 1.5664062, -0.06964111, 1.1269531, 1.3789062, 0.08544922, 0.83203125, 0.39208984, -0.41357422, -0.5253906, 2.5, 1.6953125, -0.4038086, -1.3417969, -0.375, -0.72753906, -2.0214844, 1.9667969, 1.1435547, -0.36499023, 1.3632812, -0.0027599335, 0.8852539, -0.25439453, 1.9150391, -3.0917969, 1.9980469, 0.50390625, -0.41210938, -0.5151367, 0.20544434, -0.07727051, 1.8417969, 1.375, -1.0390625, 0.7807617, -1.9443359, -1.6367188, -0.20141602, 1.4873047, -1.7285156, 1.8701172, -1.6826172, 3.3144531, 1.5, -0.10235596, -1.4902344, 0.7553711, 2.4863281, -0.39160156, 0.28100586, -0.6542969, 1.2255859, 0.39624023, -0.004634857, 0.16125488, -1.5634766, 0.12939453, 0.18188477, -1.0996094, -0.09399414, -0.27001953, 0.25317383, -1.2890625, -0.75097656, 0.6191406, 1.1103516, 0.4260254, 0.43286133, -1.1845703, -3.140625, 0.23168945, 0.123535156, 1.0048828, -0.54052734, -0.6738281, -0.63183594, 0.79248047, 2.4316406, 1.0234375, 1.4082031, -1.3134766, -2.1230469, 0.45410156, 1.9130859, -0.34399414, 0.5336914, 1.3466797, -0.82910156, -2.1542969, 1.1464844, 0.45043945, -0.40722656, -0.40478516, -2.7011719, -0.8149414, 0.041900635, -1.9248047, 0.7680664, 2.5566406, 1.2255859, 1.0908203, -2.2226562, -2.4960938, -0.44433594, 0.27929688, 2.1074219, -1.3574219, 0.19628906, -0.20214844, -0.58447266, 2.609375, 1.5302734, -0.99072266, -0.44458008, 0.17016602, 1.5, -0.6796875, 2.9921875, 0.18688965, -1.9150391, -0.3322754, 0.5805664, 2.7851562, -0.19665527, 1.2275391, 0.60009766, 0.5473633, -4.6328125, -0.25830078, -2.0605469, 1.1416016, 0.24279785, 1.8632812, 0.8925781, -0.2644043, 0.23864746, -3.7695312, -1.6699219]}, "B003K6SI7S": {"id": "B003K6SI7S", "original": "Brand: Texsport\nName: Texsport Sportsmate Portable Propane Heater\nDescription: \nFeatures: Ideal for golf carts\nDurable stainless steel burner\nPressure regulator on/off control valve adjusts burners up to 3,000 BTUs\nIncludes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included)\nAuto shut off valve shuts off fuel if flame goes out\n", "embedding": [-1.6699219, 3.1855469, 1.9277344, -0.4807129, -1, 0.6171875, 0.88964844, -1.4550781, 0.24194336, 1.7832031, 1.0732422, 0.24511719, 0.12939453, -3.5136719, 1.2646484, -0.25732422, 1.4951172, 1.5244141, 0.13647461, 0.3486328, -0.42016602, -0.29052734, 1.453125, -2.7324219, 1.3759766, 1.7109375, 3.2890625, -2.5605469, -0.078125, -0.6142578, 0.8754883, 0.7114258, -1.2490234, 1.8457031, -1.5283203, -0.1628418, -1.4912109, 1.5976562, -3.453125, 0.48217773, -1.3828125, -1.2050781, 1.1591797, -0.578125, -2.234375, -1.1347656, 2.1933594, 0.8022461, 0.50878906, -0.16369629, 0.8125, 0.12200928, -1.0068359, 0.97314453, -2.6679688, 0.3449707, -0.6611328, -1.4628906, 0.95214844, 2.546875, 1.9716797, -2.4902344, -1.1972656, 2.5175781, -0.91796875, 0.7524414, -0.18151855, -1.46875, -1.8388672, 2.2011719, 2.4257812, -0.6425781, 0.39892578, -0.5527344, 0.1274414, 0.8808594, -4.4882812, 1.3896484, 2.4726562, 0.9658203, -1.2753906, 0.4946289, 1.1835938, 0.81591797, -0.23474121, -1.53125, -1.3837891, 0.88134766, 1.5253906, 2.7480469, -2.3886719, 3.1777344, -1.2285156, -3.7207031, 0.92871094, -1.0517578, 1.1757812, 1.3457031, 1.5595703, 0.75439453, 0.6347656, 0.15966797, 0.44140625, 1.0410156, 0.8964844, 0.11828613, 1.3134766, -0.43115234, -1.0449219, -0.07556152, -1.7734375, 0.36157227, 1.2363281, 0.0068473816, -2.6933594, -0.7763672, -0.93408203, -0.5683594, 3.6835938, 1.8964844, 4.0117188, 0.12145996, 2.0722656, -2.8554688, 1.8964844, 1.6650391, -0.3798828, 0.69628906, 2.1542969, 0.20129395, -0.12225342, -0.2290039, 1.5351562, -0.4658203, -0.05203247, -2.5058594, -2.0390625, -2.6503906, -2.2597656, -1.1259766, -1.9111328, -0.7885742, 2.1953125, 0.77441406, -3.4648438, 0.38085938, 0.38745117, -0.16687012, 0.19006348, -2.4101562, -0.15942383, -2.203125, -0.23498535, -0.84033203, 1.4677734, 0.7788086, 0.078552246, -1.2001953, 3.0488281, 1.3505859, 2.5019531, -1.5205078, -1.1015625, 0.67529297, -0.24853516, -3.703125, 0.29101562, 0.8125, -1.4121094, 1.65625, 0.7080078, -1.3359375, 0.12188721, -0.90185547, 0.21154785, -2.1835938, 1.1289062, 3.3945312, 0.9941406, -0.5722656, -2.3925781, -0.36865234, -1.2832031, 1.3261719, 1.6777344, -1.8115234, -1.4794922, -0.035888672, 0.32788086, -1.3603516, -1.4394531, 1.6484375, -0.8515625, -0.72753906, 1.4873047, -3.0078125, -1.8232422, -2.2636719, 1.1914062, 0.21435547, -0.30810547, -0.82910156, -0.50341797, -1.0732422, -2.4550781, -2.8476562, 1.3603516, -2.0917969, -0.4897461, 1.1582031, -0.46801758, -0.81884766, 1.4990234, -0.4453125, -0.4033203, -2.6933594, 2.1679688, 0.13464355, 2.4921875, 2.8789062, -1.1621094, 0.4868164, 1.1972656, 0.52783203, 0.49023438, 2.0742188, 0.46191406, 0.44970703, -1.5957031, -1.6962891, 1.8027344, 0.8535156, -0.051940918, -0.7885742, -0.107788086, 1.8779297, 0.92333984, -1.390625, -0.22998047, 0.46191406, 0.28564453, 0.33129883, -0.72802734, -0.29077148, 0.60546875, 0.061523438, 0.06384277, 0.7758789, 2.2578125, 0.921875, 0.86865234, -0.93408203, 2.1542969, 0.83496094, -1.9443359, -0.0009365082, 1.0351562, -0.6152344, -0.6699219, -5.1054688, 2.0898438, 1.5292969, -1.2460938, -0.8261719, 0.3088379, -0.25073242, 4.9296875, 0.8466797, -1.4160156, 0.7661133, -0.31274414, 1.7900391, 1.8720703, 0.9863281, 2.0703125, 0.99658203, -1.3154297, 2.8007812, -0.57910156, 1.4892578, 1.6660156, -0.14501953, 1.4990234, -2.2402344, -0.38085938, -0.091796875, 0.6640625, -0.86328125, -1.7138672, 0.6669922, 3.6210938, -1.0849609, -0.55810547, 1.4277344, 0.0501709, 2.1269531, 1.4501953, 0.9189453, -2.9042969, -0.6821289, 1.3300781, 1.8398438, -2.1875, 0.36376953, -0.72314453, -0.64453125, 1.2470703, -0.9033203, 0.3642578, 1.8828125, -0.29125977, -2.0859375, -1.4501953, 0.20227051, -2.4375, -1.0751953, 1.9150391, -1.7529297, 1.53125, 1.2695312, -1.6357422, 1.0849609, 1.3271484, -1.3574219, -1.0556641, 1.328125, -1.5175781, -0.70214844, -0.59033203, 0.23535156, -0.70166016, -1.9082031, 2.0273438, -2.5996094, -0.78222656, 0.9785156, -0.19750977, -0.7705078, 2.0019531, -1.9404297, -0.12011719, -1.0380859, -1.3251953, 1.7431641, -0.94140625, -3.1425781, 0.027709961, 0.012275696, -1.4072266, -2.8867188, 0.98828125, 0.6850586, -0.2626953, -4.4648438, 1.0527344, 0.65527344, -1.0576172, 0.6879883, -1.7373047, -0.6635742, -0.5288086, -0.42041016, 0.8232422, 0.5498047, -0.08502197, -2.125, 2.9980469, -5.1757812, 2.5566406, -0.41430664, 1.40625, -1.8261719, -0.20959473, -0.6513672, -1.5839844, 2.578125, 0.40454102, 3.2246094, 1.4042969, 1.5039062, -1.1201172, -0.70947266, 0.3701172, -0.8671875, -2.0214844, 0.91552734, -0.43017578, -0.57666016, 0.6611328, -1.1708984, -0.3305664, -2.1699219, 1.4365234, 0.29711914, -2.0214844, 0.13476562, 0.05847168, -0.7519531, -0.19506836, -1.7607422, -0.11828613, 1.2783203, 0.3972168, -1.4638672, 1.4804688, -0.515625, -0.33081055, -0.69140625, 1.4140625, -0.6748047, 0.23352051, 3.0566406, -1.6748047, 1.0048828, 0.7421875, -3.765625, 0.19799805, 2.9707031, 0.96435547, -0.59521484, -1.5146484, -2.8691406, -0.91064453, -0.26513672, 2.7890625, 0.23303223, 3.171875, 0.5800781, -0.06878662, 1.4853516, 1.921875, -0.796875, -0.72314453, -1.1054688, 1.9599609, -3.6855469, -0.37573242, 0.3046875, 1.9072266, -3.9824219, -0.40844727, 0.45141602, -0.09118652, 2.359375, 2.4765625, -2.7167969, -0.35351562, 1.5283203, 1.6855469, 3.1445312, 0.34277344, -1.8115234, -0.43237305, 0.73779297, 1.3554688, 3.3476562, 0.40234375, -0.4638672, 0.3515625, 0.17407227, 1.90625, -1.5146484, 0.91748047, 0.8852539, -1.0771484, 1.0830078, 2.1699219, -0.82470703, -0.16491699, -1.3789062, 0.76464844, -0.19519043, -3.265625, 0.26611328, 2.6757812, 0.13171387, -0.0949707, 0.65283203, -2.6855469, -0.1940918, -0.46704102, 2.4375, -0.21374512, -1.484375, 0.95214844, -3.3222656, -0.52734375, 0.17932129, 1.5888672, -0.22009277, -0.43969727, -0.765625, 0.15942383, -0.57128906, -2.03125, -1.4404297, -1.9677734, 0.4099121, 3.8476562, 1.4677734, -1.6601562, -1.0263672, -1.1396484, 2.3613281, 2.3046875, -1.1240234, -1.5976562, -0.25561523, -0.9248047, 2.5859375, -0.060333252, 0.4050293, 0.95703125, -2.09375, 0.85058594, -1.2402344, 1.5322266, 2.0703125, -1.7792969, 0.8852539, 3.4023438, 0.12524414, 2.375, 0.35913086, 2.5039062, -2.5292969, -1.9970703, 2.1015625, -1.7851562, -0.76464844, -1.8779297, -3.4492188, -0.054718018, -0.89453125, -0.23950195, 3.4902344, 0.72216797, 1.0742188, 1.1787109, -0.10064697, -2.5078125, -3.2480469, -1.640625, 0.65771484, -3.6308594, -0.26879883, 1.5322266, -0.828125, -1.6210938, -1.6806641, -0.42333984, -0.28173828, -0.2163086, -1.78125, -1.0527344, 2.0839844, -1.5078125, 0.8564453, -0.39453125, 0.75146484, 0.5419922, -0.3569336, -0.6669922, -0.72753906, 2.203125, 0.4416504, -0.14245605, -1.609375, 3.8789062, 1.3720703, -1.1884766, 0.7421875, 0.671875, 0.26953125, 0.6611328, -1.7460938, -1.2050781, -2.203125, 2.1425781, -1.1542969, -1.3632812, 0.52978516, -0.4033203, -0.61621094, 0.7861328, 1.0869141, 2.9609375, 1.3339844, -1.9609375, 2.671875, -0.086364746, -0.97509766, -0.71777344, -2.3808594, -1.6044922, 0.07867432, -0.07720947, 0.6875, -2.6679688, -1.7587891, -1.3671875, 0.24279785, 2.0195312, 1.9140625, 1.765625, 2.5097656, -1.9072266, -0.59472656, -0.24133301, -0.028793335, 1.2431641, 0.14050293, 0.10003662, -0.8613281, 1.3271484, 2.1464844, -2.0898438, -0.6777344, 1.4511719, -0.9277344, -0.61572266, -2.2050781, 0.7080078, -1.5673828, -1.0693359, 1.8945312, -0.9663086, 2.7558594, -0.8510742, -0.35888672, 0.14685059, -1.7587891, -2.3359375, 0.70751953, -1.0332031, 1.5556641, 1.6962891, -0.21032715, 1.3232422, -1.4746094, 0.63720703, 1.6582031, 2.1972656, -2.3105469, 0.7011719, -0.5126953, 1.546875, -1.2646484, -0.4736328, 1.5410156, -1.1376953, 0.34545898, 4.4882812, 2.3613281, -0.013008118, -0.34960938, 0.96191406, 0.8745117, -0.18383789, -0.52685547, -0.61865234, 1.1220703, -1.6181641, -2.6289062, -0.96240234, 1.75, -1.0507812, 2.515625, -2.0507812, -1.3515625, -0.41333008, -3.2929688, -2.0429688, 0.23474121, 0.88916016, 1.8378906, -1.3212891, 1.5068359, 0.09350586, 2.1875, 3.8496094, 0.43481445, 0.4099121, 0.48364258, 0.32299805, -0.24597168, 1.4990234, 0.09326172, -3.0546875, -1.984375, 0.9316406, 0.28344727, 1.7470703, 0.55371094, 0.35351562, -2.3730469, -0.11340332, -2.2324219, 2.3203125, -3.546875, -0.1875, 1.5439453, -0.21020508, 1.3173828, -1.1914062, -2.0390625, -1.65625, 0.51953125, 0.71728516, -1.0439453, -0.87060547, -1.6162109, -2.9257812, -5.1640625, -1.3466797, 0.20349121, 0.24084473, -0.52001953, -0.66503906, -1.4140625, -0.70947266, -0.46240234, -0.064575195, -1.3144531, -0.13476562, -1.6445312, 1.4785156, -1.21875, 0.13415527, -0.8671875, 2.9746094, 0.38476562, 0.70214844, -0.86865234, -1.2128906, -3.9511719, 0.6933594, -1.2646484, -0.18481445, 0.64697266, -0.2607422, -0.45361328, 2.6347656, 0.56103516, -2.7851562, 0.20373535, 0.703125, -1.5244141, 1.2041016, -1.8476562, 0.33984375, 0.93408203, -0.74560547, 0.4970703, -0.18688965, 2.2460938, 1.8476562, 0.15002441, 0.13134766, 0.60595703, 0.90527344, 1.1953125, 0.6953125, -0.049987793, 1.7626953, 1.1816406, 0.4267578, -1.4121094, -3.1464844, -3.2792969, -0.29003906, -0.9199219, 0.39208984, 0.31079102, 0.7866211, 1.2304688, 0.7519531, 1.6259766, 0.35717773, 0.33691406, -1.9726562, -0.35717773, -1.6582031, 1.5351562, 1.2441406, -1.7792969, -1.6396484, -2.6210938, -0.60791016, 1.1308594, 0.9448242, 0.2775879, -0.7089844, 0.10064697, 0.35668945, -1.6542969, 4.1132812, 2.1640625, 1.7050781, -1.9423828, 1.1171875, 0.49780273, -0.44433594, -1.9755859, 0.77246094, 2.75, 0.05810547, 2.4648438, 0.7397461, -0.9663086, 1.3359375, 1.0107422, -0.6557617, 0.5913086, -1.9238281, 2.7675781, -1.9423828, 0.9399414, 0.6254883, -0.78808594, -1.9082031, 0.07122803, 2.7324219, -0.2548828, 1.1914062, 2.9453125, 0.08441162, -1.2978516, 0.44921875, 0.15808105, -1.3037109, 0.23083496, 1.578125, 0.24206543, 1.4765625, 0.02218628, 3.7832031, 0.71435547, 1.9033203, 0.109558105, 1.4765625, -1.9589844, 1.6279297, 0.60253906, 1.8115234, 3.5, 0.89941406, 2.1269531, 1.4589844, 0.8413086, 1.4023438, -1.640625, 1.1191406, 1.7216797, 0.29956055, -1.2509766, -2.2050781, 0.32495117, 0.43920898, -1.4628906, -1.4804688, 1.0527344, 0.16882324, -1.8779297, 0.53808594, -0.45166016, 1.8027344, -3.1152344, 1.0898438, -1.3212891, 0.13879395, -0.13928223, 0.29516602, 1.6611328, 0.033599854, -0.8989258, -0.17248535, 0.13269043, 0.28759766, -2.234375, -1.4785156, -0.35253906, -2.4472656, -0.92333984, 1.5283203, 0.41455078, 1.0585938, -0.78564453, -0.2541504, 1.7822266, 0.013267517, 1.0517578, 0.46069336, 0.064208984, -0.28271484, 1.4248047, 3.703125, -1.2304688, 2.921875, 0.37426758, 0.83496094, -1.9589844, 0.3869629, -1.2763672, -0.6894531, -0.5024414, -3.421875, 1.1494141, -0.23693848, 0.27197266, -2.1621094, 0.48266602, 1.625, -1.9072266, 0.024276733, 1.359375, -1.4023438, 4.5703125, -0.69970703, -0.21508789, 1.4560547, -0.3166504, 1.4785156, -1.0224609, 0.61035156, -0.34765625, 0.79052734, 0.32177734, 2.4882812, 0.11187744, -1.234375, 0.96533203, 2.015625, 0.0690918, -0.21826172, 0.9135742, -1.6767578, 3.0566406, 0.2927246, -0.5229492, -0.19812012, -3.3300781, -0.096191406, -0.068115234, -0.6386719, -0.5576172, -0.032226562, 1.2285156, 1.9765625, -1.1337891, 1.0742188, 0.44018555, -1.0351562, 1.2685547, -1.3134766, -1.4228516, 1.1425781, 0.49804688, 0.77978516, -0.49975586, -0.43041992, 1.0898438, 1.6572266, -0.091552734, -1.3300781, -0.30688477, 0.23388672, -1.0371094, 0.5151367, 0.58691406, 0.5566406, -0.47509766, -0.50878906, -3.0332031, 1.0429688, 1.265625, -0.021743774, 0.8071289, -2.921875, -2.7832031, 0.2824707, 1.2099609, -1.1162109, 0.28344727, 2.3476562, -0.82421875, 1.5976562, -2.5175781, -2.9121094, -1.328125, -0.42211914, 0.515625, -0.10986328, 0.32006836, 1.2919922, -0.103515625, 0.46972656, -0.039001465, -0.08868408, 0.6616211, 0.91503906, 0.13842773, 0.23339844, 1.5390625, 1.0751953, 0.17089844, 0.093566895, 2.3632812, 0.053131104, 1.5478516, 1.8623047, 1.5517578, -1.0556641, -2.21875, -1.4501953, -1.8056641, -0.064453125, -0.03845215, -0.015281677, 0.98535156, 0.4050293, -0.093811035, -3.3359375, -1.2763672]}, "B097LDZ1W2": {"id": "B097LDZ1W2", "original": "Brand: BeadChica\nName: RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer\nDescription: RV Propane Tank Cover\nFeatures: \u3010 FITS TANK\u3011Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch.\n\u3010ZIPPER DESIGN\u3011zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal.\n\u3010CUSTOM YOUR TANK\u3011The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls.\n\u3010WITH ELASTIC BAND \u3011 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days.\n\u3010HIGH QUALITY\u3011Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.\n", "embedding": [1.3232422, 1.8173828, 2.1035156, -0.107666016, -0.40405273, 0.5053711, -0.47460938, -0.46679688, 2.5429688, 1.3496094, 0.4716797, -0.12322998, 0.27734375, -3.65625, -0.11859131, -0.11364746, 0.4416504, 1.2841797, 3.6484375, 1.4072266, 2.6347656, 0.29052734, 0.14807129, 0.4169922, -0.06286621, -0.5385742, 2.5292969, -2.3222656, -2.5410156, 2.1640625, 1.4316406, -1.4091797, -0.3564453, 2.6347656, 0.31958008, -1.8154297, -1.3242188, 0.60498047, -3.5898438, -1.5234375, -3.2089844, -1.7070312, 3.84375, 1.2421875, -0.5175781, -1.7480469, -0.8095703, -2.2578125, 0.20898438, -1.5537109, 0.7080078, 1.4775391, 2.3710938, 2.03125, -1.4746094, -0.2841797, -0.06536865, -0.5385742, 0.24902344, 2.1503906, -0.78125, -1.2138672, -2.9375, 2.140625, -0.43530273, 0.17602539, -2.1972656, -0.6196289, 1.21875, 1.8671875, 1.2412109, 0.9970703, 1.5400391, -1.1708984, 0.7475586, 0.17785645, -2.2382812, 1.0478516, 2.0410156, -1.1435547, 0.69873047, 2.9863281, -3.2832031, -0.6738281, -0.39990234, -0.22253418, -1.0839844, 0.6376953, 0.67041016, -0.09112549, -2.9707031, 1.3964844, -2.1210938, -2.6210938, -1.9472656, 0.7036133, 2.515625, 1.7109375, 3.1425781, 1.7070312, 0.29125977, 0.3173828, -1.2705078, 1.2294922, -3.5390625, -2.0957031, 0.4116211, -2.0390625, -1.7792969, 0.029693604, -1.5078125, -0.59472656, -0.16381836, -0.93896484, -0.33740234, 0.28027344, -0.29956055, -0.92089844, 1.5175781, 2.4550781, 3.0683594, -0.21716309, 1.2265625, -2.2285156, 2.6289062, 0.9423828, -1.0732422, 1.4960938, 2.3574219, -0.82373047, 0.39331055, 0.4177246, 0.6870117, 1.1767578, 1.7324219, -0.0016889572, -1.3544922, -1.0273438, -1.0419922, 1.8349609, -1.5292969, -1.5371094, 0.8808594, 0.7055664, -2.5761719, -0.6665039, -0.25439453, 2.4238281, -0.24780273, -2.5800781, 0.6357422, -3.0722656, -0.45874023, -1.2705078, 1.5097656, 1.234375, -0.082092285, -3.6171875, 2.25, 3.1445312, 3.2421875, -1.4052734, 0.13146973, 1.5019531, -0.16992188, -3.2773438, 1.3339844, -0.10925293, -0.93652344, 1.1523438, -0.4753418, -1.8916016, 1.3623047, 0.70751953, -0.27368164, -1.8525391, 1.7167969, 0.82958984, 0.5410156, 0.0513916, -4.8476562, -1.0419922, -2.0136719, 0.048309326, -0.75683594, 0.4182129, -1.4462891, -0.95214844, -1.1123047, -1.4179688, -2.7675781, 1.7802734, -0.71484375, -0.67333984, -1.2587891, -2.3164062, -2.7089844, -1.2636719, -0.2163086, 1.4541016, -1.5595703, -0.88134766, -1.9150391, 0.65625, -2.1582031, -0.98095703, 1.6796875, 0.8466797, 1.1269531, 0.89208984, -1.0078125, 0.5727539, 3.6894531, -0.12097168, -2.3769531, 1.0224609, 0.86035156, 1.7460938, 2.1503906, 0.88427734, -1.6396484, 0.859375, 2.5234375, 1.9794922, 1.6054688, 2.4492188, 0.99609375, -0.84716797, -1.3525391, 0.03793335, -0.5810547, 1.9072266, -1.8544922, -0.005203247, -0.6352539, 2.0039062, -0.13635254, -2.8789062, -0.13671875, 0.3515625, 0.4008789, -0.8647461, -1.15625, -0.4880371, 1.1933594, 3.7363281, -0.16809082, 1.2597656, 2.1464844, -0.8959961, -0.1340332, -0.48486328, 0.4807129, -1.8662109, -0.43603516, 1.3427734, 0.9819336, 0.5888672, 0.46118164, -2.2421875, 0.6323242, 1.3613281, -1.3603516, -0.33569336, -0.6269531, 1.1542969, -0.2800293, -0.13598633, -2.4140625, 2.0351562, 0.43188477, 0.6928711, -0.9199219, -1.6728516, 2.1445312, -0.30981445, -0.046936035, 1.5791016, -0.6640625, 2.9882812, 1.7177734, -0.5288086, 0.6904297, -2.3378906, 0.33862305, 1.5908203, 1.9619141, 0.4765625, -2.6289062, 0.7675781, 2.953125, 0.12902832, -0.65722656, 3.1152344, 2.796875, 0.037750244, 3.2089844, -0.36108398, -0.066223145, 1.4951172, -1.7617188, -0.2454834, -0.7895508, 0.12359619, 0.9350586, -1.2734375, -0.47314453, -0.8979492, 1.3056641, 0.9609375, 1.4296875, -1.2099609, -2.6796875, -1.3349609, -1.1894531, -0.5571289, 3.7324219, -2.5292969, -0.9941406, 3.1308594, -1.2734375, 0.6479492, -0.3173828, -1.53125, 0.6591797, 1.1298828, -1.9980469, -0.11871338, 1.4482422, 0.8623047, -0.11114502, -2.7773438, 2.1054688, 0.17578125, 0.0048675537, -0.5756836, -1.5683594, -2.0957031, 0.060455322, -2.140625, 0.9355469, -2.1113281, -0.62060547, 3.0292969, 1.6152344, -0.55322266, -0.42016602, 1.8984375, -0.6640625, -0.7871094, -0.12390137, 1.3681641, -0.9609375, -2.9726562, 0.20727539, -0.9897461, -2.1503906, 1.9091797, -0.61376953, 0.016830444, -1.4355469, 1.3710938, 2.2851562, 0.29858398, -1.7763672, 0.24084473, 2.0175781, -4.84375, 0.60253906, -1.4775391, -0.34228516, -2.9316406, -0.55859375, -1.3212891, -1.9375, 3.1855469, -1.8828125, 2.5039062, 2.4824219, 1.0664062, -1.6494141, -1.4892578, -0.49487305, -1.2509766, -2.9550781, -1.3105469, 1.0546875, -1.7236328, -0.9628906, -4.1953125, -1.3632812, -1.3300781, -0.6479492, -0.40795898, -2.1777344, -0.41625977, -1.3222656, -2.1425781, -0.4111328, -0.4482422, 2.609375, -1.1699219, -1.8515625, -0.11590576, 0.29589844, -1.3496094, -0.94873047, -1.5146484, 1.8945312, -1.7890625, 0.52734375, 0.24450684, -0.96972656, 2.2949219, -1.4326172, -3.7617188, -0.31762695, 3.2597656, 2.5703125, 3.2246094, 0.33325195, -1.5644531, -2.3808594, -0.7285156, 2.6191406, 3.3417969, -0.005874634, 0.8647461, 0.49243164, -0.35473633, -0.35375977, 1.0429688, -0.08654785, 0.83691406, 1.8027344, -1.3212891, 0.7138672, 1.5595703, 3.4179688, -1.8457031, 0.07165527, 1.1923828, -1.8544922, 3.375, 1.7431641, -1.9404297, -0.56103516, 0.30273438, 0.91503906, 0.07336426, 1.5361328, 1.3203125, 1.6269531, 0.56396484, 0.37939453, 0.36572266, 1.2539062, 1.1855469, -3.328125, 1.5419922, 1.3789062, -2.5839844, 0.59033203, -0.7729492, -1.2109375, -0.6845703, 1.4921875, -1.6083984, 0.6196289, 1.1035156, 0.71875, -0.55371094, -0.27978516, -0.29711914, 0.48510742, 3.0351562, -0.23596191, -0.5073242, -2.3652344, 0.17834473, -2.2910156, 1.8535156, -1.7724609, -0.85839844, 1.1699219, -3.4609375, -0.08227539, -1.8310547, 2.4179688, -0.77783203, -0.2932129, 0.17443848, 0.7216797, -2.5507812, -2.8886719, 0.86816406, -0.23461914, -2.1679688, 4.2695312, 3.7089844, -2.6191406, -0.32177734, -0.91015625, 3.5546875, 2.4101562, -0.12805176, -1.9345703, -0.98291016, 1.1347656, -0.9658203, 0.35498047, 1.0390625, 2.4394531, -1.3710938, -0.2722168, -0.63623047, 1.6123047, 1.3701172, -0.6953125, 0.7714844, 0.51464844, -0.44482422, 1.6777344, 1.0009766, 2.6875, -0.6323242, 2.4492188, 1.1152344, -0.037750244, 1.8789062, 0.89746094, -2.78125, -1.09375, 0.55566406, -0.88964844, 2.984375, 0.7319336, 0.8017578, 0.11407471, -0.66015625, -3.4296875, -1.7753906, -3.25, 1.6679688, -3.0507812, -0.3371582, 0.7402344, -0.111083984, -2.0117188, -1.8476562, -1.4111328, -2.4355469, -0.4050293, 0.14099121, 1.0146484, 1.9033203, -1.7919922, 0.36816406, -1.0253906, 1.1748047, -0.49951172, -0.17932129, -0.9477539, -1.6025391, 2.5742188, 0.28637695, -0.625, 0.4091797, 3.296875, 0.3137207, -1.1230469, -0.21850586, -0.67578125, 1.9824219, -1.7929688, -3.3730469, -1.5703125, -0.32592773, -0.9135742, 0.70996094, -0.9477539, 0.28271484, 0.7441406, 1.5039062, 1.9472656, 2.4882812, 0.75390625, -1.5380859, -2.7421875, 2.5625, -1.6171875, 0.043273926, -0.12854004, -1.8876953, 0.9838867, 0.028182983, -2.0664062, -2.8808594, 1.1074219, 0.9423828, 1.3427734, -3.609375, 2.0195312, 2.109375, 1.9921875, 1.3193359, 0.38330078, -0.33081055, 1.0322266, 2.2128906, 1.3066406, -0.8642578, 0.14855957, 0.6621094, 0.17016602, -0.3293457, -1.7666016, -2.0976562, -1.8017578, -2.484375, 0.53125, 0.48046875, 1.5673828, -0.51660156, -1.8583984, -0.26220703, -1.3349609, 4.0117188, -3.5742188, 0.90722656, -0.26831055, 1.4902344, -0.22827148, 2.1640625, 2.1777344, -0.22961426, 0.3251953, -1.0214844, -1.5185547, -1.2929688, 1.4726562, 2.4804688, 1.7988281, -1.6123047, -1.7021484, 0.10357666, 1.9658203, 0.23486328, -1.1699219, 1.9160156, 2.8535156, 0.7680664, 0.30395508, 2.03125, 0.12780762, 2.34375, 1.4921875, -0.55566406, -0.8803711, 0.5229492, 1.2763672, 2.7265625, -1.5302734, -3.9160156, 2.0390625, 0.27270508, 0.7895508, 1.6953125, -0.24829102, -0.27172852, -0.8745117, -3.2910156, -1.8583984, -0.55566406, 0.14794922, -0.5913086, -0.81347656, 0.5888672, 0.09979248, 1.4492188, 2.2597656, 0.9042969, -1.546875, 0.45336914, 1.5332031, -1.6132812, -3.8867188, -1.1015625, -4.1953125, -0.4169922, -1.2802734, 1.4521484, 0.015945435, 1.3974609, 1.6523438, -2.3378906, 0.52441406, -0.59716797, 0.006477356, -1.7900391, 0.41333008, 1.6201172, 1.2646484, -0.71728516, -0.40625, -0.06982422, -1.2460938, 2.7246094, 1.6269531, 0.49853516, -0.05630493, 0.7504883, -3.8203125, -5.0351562, -0.8066406, 1.5947266, -0.3203125, 0.7578125, -0.15881348, -0.81689453, 0.77197266, -2.3085938, -0.038024902, -1.7617188, 1.6357422, -0.59228516, -1.9306641, 0.5600586, 0.0947876, -0.30981445, 0.6713867, -1.1162109, -0.5751953, -3.1152344, -2.2734375, -1.7460938, -1.0224609, -1.8720703, 0.74316406, 0.68603516, -0.81591797, 2.0996094, 0.23510742, 2.4042969, -0.16210938, 1.6630859, -0.7338867, 0.5488281, 2.0859375, 0.39331055, -0.45581055, 1.2363281, -0.29858398, 2.5117188, 2.7597656, 0.8251953, -3.1171875, 1.8525391, 1.0888672, 0.30395508, -0.79296875, 0.082458496, 2.0195312, 0.6459961, 1.9541016, 0.55810547, -1.6171875, -2.1210938, -1.2880859, -1.0048828, -0.42797852, -3.4160156, -2.4746094, -0.70751953, 1.7646484, 1.6933594, 1.2158203, 1.5185547, 0.66015625, 0.30981445, -1.9736328, 0.023162842, -2.1640625, 2.0800781, -0.08306885, -1.0517578, -2.5996094, -2.2675781, 4.9023438, -0.31811523, 0.7758789, 1.2275391, 0.24719238, -0.66845703, 1.3330078, -1.0810547, 0.7182617, 1.7832031, 2.0839844, -2.5546875, 1.6640625, 3.1582031, -1.1640625, -0.40576172, -1.4423828, -1.2412109, -0.88427734, 0.45654297, 2.28125, -2.7050781, -0.2434082, 1.0390625, -0.24621582, -0.46948242, -0.65625, -0.99609375, -2.8847656, 0.4309082, -2.0058594, -0.7182617, -4.9726562, 3.2695312, 0.57177734, 0.14624023, 1.6083984, 1.6503906, -1.4570312, 0.95996094, 2.8789062, -0.20544434, -0.59765625, -0.5136719, -1.9863281, 0.121398926, 1.4697266, -3.9433594, 0.84277344, -0.88916016, 1.1416016, 0.29223633, 2.0722656, 0.44726562, 0.9628906, 1.8623047, 3.4589844, 3.3125, -0.91064453, 0.56591797, 0.7314453, 1.2773438, 2.4414062, -1.4980469, -0.6923828, 1.2099609, 2.2871094, 3.59375, -2.1132812, -0.20825195, -0.26489258, -0.47070312, 0.7919922, 0.42749023, 1.28125, -3.5292969, 0.6850586, -0.8491211, -1.2285156, 1.1533203, 1.6035156, -1.4990234, -2.1230469, -0.9501953, -0.60302734, 1.9775391, -1.1289062, 1.9980469, 0.83496094, -0.9477539, 1.6914062, 0.7089844, 0.56591797, -3.3945312, -3.2109375, -0.8652344, 1.8691406, 0.51220703, 1.2373047, -1.1376953, 1.1894531, -0.101867676, 0.63720703, 0.16796875, -0.039489746, 1.4042969, -2.8671875, 1.5009766, 4.4296875, -2.5214844, -0.6826172, 0.6347656, 0.69384766, -3.7949219, -1.1015625, 0.51123047, 0.23205566, 1.0224609, -3.4589844, -0.39526367, -0.5161133, 0.8642578, -1.9658203, 0.30810547, -0.1026001, -4, 0.07775879, 1.2617188, -0.4333496, 3.2089844, 0.4260254, -0.039123535, 2.4160156, 0.72509766, 0.6152344, 0.9609375, 0.55322266, -0.94091797, -0.032470703, -0.6010742, 2.9433594, 2.4765625, -2.0410156, 0.10180664, 1.8007812, -0.67578125, 1.1992188, -0.07684326, -1.7558594, 3.390625, -0.5214844, -0.3449707, 0.6411133, -1.2714844, 0.6821289, -0.8984375, 0.29858398, 0.55322266, 0.7192383, -1.1923828, 1.8154297, -5.2109375, -0.13867188, 1.5410156, -0.1274414, 2.3339844, -0.5214844, -0.9848633, -0.7402344, 0.79833984, 1.9052734, -2.8691406, 0.35058594, -1.3916016, 0.8598633, -0.16381836, -1.8789062, -0.80322266, 1.2001953, -0.34301758, 0.5551758, 0.7597656, 0.29760742, -0.4013672, -0.47070312, -1.1376953, 1.2177734, 2.3144531, 1.0537109, -1.5751953, -0.515625, -1.3457031, 0.87060547, -0.6064453, -0.47680664, 2.2597656, 1.8564453, 2.8339844, 0.041625977, 1.4921875, -2.0253906, -0.76416016, -2.5, 1.6171875, 1.4111328, -2.1699219, 0.62939453, 1.1728516, 2.1367188, -1.0742188, -2.0234375, -0.1361084, 1.2783203, 2.4375, -0.88964844, 1.3789062, 0.9746094, -1.3710938, 1.2988281, 3.9609375, 2.34375, -2.9921875, 1.2060547, 0.46704102, -2.5117188, -1.8183594, -1.7568359, -0.9477539, -1.3955078, 1.2597656, 2.5527344, 4.5, 1.1455078, -0.107421875, -2.5761719, -0.05178833]}, "B06Y5XFF6F": {"id": "B06Y5XFF6F", "original": "Brand: DOZYANT\nName: DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank\nDescription: \nFeatures: Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel\nCost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks.\nSturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency\nBRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use\nMulti-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.\n", "embedding": [0.35107422, 1.8544922, 0.9560547, 0.40795898, -0.85498047, -0.8720703, 1.0400391, 0.3112793, -0.95751953, 2.9394531, 2.7753906, 0.6142578, 1.4511719, -2.1035156, 0.1821289, -0.95751953, -0.08728027, -0.19702148, 2.6738281, 1.546875, 3.4667969, 0.7709961, 0.18005371, -0.9370117, 0.95947266, -0.6845703, 3.4570312, -1.3251953, -2.0644531, -0.60058594, 0.19372559, -0.5732422, 0.070495605, 0.15808105, -0.8574219, -0.85791016, 0.23486328, 0.25170898, -3.7050781, -1.3701172, -2.28125, 2.1972656, 3.7753906, 0.58691406, -1.9873047, -1.203125, 0.110839844, 0.23876953, 2.0976562, 1.0341797, 0.36279297, 1.5263672, 0.80810547, 0.49023438, -1.5615234, 0.9863281, 0.9267578, -3.6933594, 1.4765625, 0.5332031, 2.3046875, 0.9980469, -0.05569458, 0.54003906, 1.1660156, 0.21972656, -2.0683594, -0.49853516, 0.13146973, 0.053955078, -0.62060547, 1.5673828, 0.60791016, -1.3222656, -2.7792969, 1.7128906, -4.8320312, 1.40625, 1.9765625, -0.1328125, -1.0351562, 1.265625, 0.5283203, -0.18005371, -0.6567383, -0.026855469, -1.1865234, 2.0234375, 0.21972656, 1.7265625, -4.40625, 2.703125, -1.6425781, -3.2050781, 0.3005371, -0.44311523, 0.58447266, 2.1621094, 3.2304688, 0.23413086, -0.91552734, -1.3701172, 0.13269043, 1.5742188, -1.9853516, -0.5859375, -1.0742188, -0.38598633, -0.94189453, 0.7841797, -1.4560547, 1.2060547, 2.8515625, -1.6494141, -1.0117188, -3.4277344, 1.2861328, -0.46411133, 2.40625, 1.5458984, 3.0664062, -0.6191406, 1.1289062, -0.14807129, 2.328125, 1.8671875, -1.2548828, 0.33325195, 2.1875, -0.66308594, -0.19946289, -0.35058594, 1.3505859, 0.41967773, 1.5878906, -3.0429688, -0.09039307, -2.1308594, -0.70947266, -1.2382812, -3.6367188, 0.96777344, 0.69433594, -0.13964844, -3.8417969, -0.55908203, -2.2734375, -0.37060547, 0.6220703, -2.3691406, 0.47436523, -2.7890625, -0.8642578, -1.6054688, 2.296875, 1.4638672, 0.66796875, -0.83154297, 0.79541016, 1.4609375, 0.40039062, -0.53759766, -0.5673828, 1.6484375, -0.44262695, -3.6992188, 2.4335938, 1.1328125, -1.3623047, 0.09124756, -0.095458984, -3.0429688, 1.7646484, -0.2199707, -0.024108887, -1.9296875, 1.1328125, 0.107055664, 1.1748047, 0.44970703, -3.2695312, -2.1367188, -0.6796875, -1.5712891, 1.0126953, -1.1953125, -2.8242188, -1.1982422, 0.7426758, -2.1230469, -1.1630859, 2.0527344, 0.09564209, 0.81591797, 0.25976562, -1.9941406, -2.1464844, -1.0380859, 0.22741699, 2.7949219, -0.0011911392, -1.4501953, 0.69970703, -0.24108887, -1.2460938, -1.0615234, 2.2792969, 0.7915039, -0.2680664, 2.4257812, -1.3779297, 0.105651855, 3.1328125, -1.5136719, -1.3466797, -1.9853516, 1.4482422, 1.9023438, 1.6962891, -0.15393066, -1.5898438, -0.6386719, 1.3027344, 0.6826172, 0.5332031, 1.015625, -1.4951172, 1.1679688, -2.1523438, -0.4267578, 1.8115234, 2.0605469, -0.03050232, 0.3083496, -1.3007812, 2.3828125, 0.7260742, 0.28710938, 1.8173828, 1.6806641, 2.140625, 0.28833008, -1.5683594, -1.3076172, -2.0644531, 0.55322266, -1.1914062, 2.1523438, 2.1757812, -0.8925781, -0.22375488, 0.0073547363, -1.9873047, -2.4277344, -1.9003906, -0.123168945, -0.13720703, 1.3466797, -0.37548828, -1.1132812, 2.0996094, -0.4140625, 0.74072266, 0.20166016, 1.1191406, 1.3515625, 2.5898438, -2.0957031, -0.09033203, 1.5986328, -0.21142578, 3.4628906, 1.4628906, -2.1640625, -0.2783203, 2.015625, -1.7871094, 1.6953125, -0.2199707, 0.1619873, 3.0039062, -1.4882812, 1.0820312, -2.9003906, 1.2529297, 1.4580078, 1.5722656, 0.06896973, -2.2714844, 0.100097656, 3.2070312, 0.11242676, -1.5224609, 1.8251953, 2.0117188, 2.5585938, 1.0722656, -0.86572266, 0.35083008, -0.14135742, -0.5708008, 0.7260742, -2.8984375, 0.49731445, 2.8828125, 0.17053223, -0.41992188, -0.7949219, 1.0478516, 1.2421875, -0.515625, -0.47802734, -2.1523438, -0.7714844, -2.3339844, -1.8789062, 0.85009766, -1.859375, -0.72753906, 2.40625, -0.30004883, 0.1743164, 1.4580078, -0.60546875, 0.2705078, 1.3720703, 0.21801758, 0.25195312, 2.3046875, 0.042907715, 1.2998047, -0.49487305, 1.7490234, -1.7285156, -1.0234375, 1.1708984, -0.15551758, -3.1601562, 0.8515625, -1.6933594, -0.94189453, -0.9404297, 1.7148438, 2.5878906, 0.6035156, -0.0713501, -2.4453125, 0.5917969, -0.79541016, -2.9765625, -0.24316406, 1.9316406, -1.7783203, -3.7714844, 0.7246094, -0.03564453, -0.2692871, 2.5410156, -2.3515625, 1.2636719, 0.9770508, -0.19763184, -0.70703125, 1.1650391, -1.40625, -1.6503906, 1.2226562, -3.5898438, 0.65234375, -0.6821289, -0.059173584, -0.8652344, -1.1630859, -0.94140625, -0.31079102, 1.1591797, -0.5161133, 1.8007812, -0.38305664, 1.9208984, 1.1210938, -1.3515625, 1.5234375, -0.828125, -3.4824219, -1.3935547, -0.97314453, -0.7910156, 1.1005859, -4.0195312, 1.1015625, -0.7451172, -0.11657715, 0.46704102, -0.14074707, -0.40356445, -0.9658203, 2.1113281, -0.1751709, -0.39746094, 1.1757812, 0.013504028, -1.2792969, 0.95410156, 1.1201172, -1.7841797, -1.2910156, 0.64453125, 0.07128906, 0.06530762, -2.1054688, 0.35009766, 0.52783203, 0.26611328, -0.057159424, -2.7949219, -0.61621094, 2.2285156, -0.6513672, 2.1308594, -0.5498047, -0.5048828, -4.1875, -1.0332031, 3.3535156, 1.0517578, 4.375, 0.4387207, 1.3007812, -0.58251953, 1.2548828, -1.8144531, -0.48217773, -1.2412109, 2.5507812, -2.4824219, -0.49731445, -1.7646484, 2.0625, -3.0839844, 0.4260254, 1.2324219, -0.0029582977, 2.7539062, -0.35229492, -0.13134766, -0.5444336, 1.3828125, 0.8022461, 1.5429688, 0.7895508, 1.2158203, 1.6064453, 0.23242188, -0.8256836, 0.39941406, 0.38354492, 0.9448242, 1.9023438, 1.0302734, -0.5107422, -2.3886719, 0.25170898, -0.5283203, 0.19042969, 1.1044922, 1.0703125, -0.625, 0.9667969, -0.9658203, 0.53222656, 1.5, -0.28637695, -0.98339844, 1.2246094, 2.0332031, -0.83251953, 0.4177246, -0.16308594, -0.9169922, -0.7089844, 0.20532227, 2.1191406, 1.4951172, -0.3125, -1.0605469, 0.44140625, -1.5117188, 0.62060547, 0.7402344, 1.2236328, -0.6567383, -0.7739258, -1.2734375, -1.8466797, -1.6621094, -3.03125, -1.0078125, 1.9580078, 1.8310547, -0.7675781, 0.70214844, 0.2310791, 2.6582031, 1.7255859, -1.2978516, -1.296875, -1.4912109, -1.3662109, 0.71533203, -0.5908203, 2.0859375, 1.4033203, -3.453125, -2.0976562, -0.019638062, 0.5986328, -1.0332031, -0.026000977, -0.88134766, -2.1113281, -0.5341797, 1.8144531, -0.6586914, 2.7148438, -0.76171875, -0.3322754, 1.6113281, -2.453125, -0.45361328, 0.17578125, -4.1328125, 0.75634766, -1.9648438, 1.9482422, 2.8984375, -0.37353516, -1.0166016, 0.2746582, 1.9150391, -3.5625, -1.0488281, -1.7070312, 2.0800781, -2.4394531, 1.3808594, 2.9140625, 1.4238281, -1.3330078, -1.2001953, 0.56591797, -1.4042969, -0.953125, -1.0556641, -1.2519531, 0.97509766, 0.026626587, 1.140625, -3.2128906, 0.9091797, 2.3007812, -1.2744141, -0.57177734, -1.2763672, 1.8193359, -0.14099121, 0.21081543, -0.18566895, 2.8710938, 2.1367188, -1.3720703, -0.24682617, -0.28710938, 3.2265625, -0.38842773, -2.2050781, 0.08654785, -0.7211914, 0.30126953, 0.39111328, -0.92041016, -0.7026367, -0.8486328, 1.2060547, 1.1279297, 1.4765625, 2.515625, 0.13049316, -2.3320312, 0.24584961, 1.0087891, -2.4414062, -1.59375, -0.043182373, -0.44458008, -1.3984375, -0.08868408, -1.7910156, 0.020935059, -0.08135986, -0.9165039, -1.4921875, 0.9614258, 1.2216797, 0.73828125, 0.3317871, -1.4355469, -0.8886719, -0.2166748, 2.3789062, -0.37280273, -0.4880371, -0.7319336, -1.2734375, 1.0126953, 2.1210938, 0.7216797, -0.33764648, 0.052001953, -0.110961914, -1.0810547, -0.21191406, 1.7480469, -1.75, -2.4257812, -1.2714844, -1.7851562, 3.8925781, -2.7226562, 0.20141602, -0.4416504, -1.1865234, -2.671875, 1.7412109, 1.7373047, 0.33276367, 0.77734375, -0.053833008, 2.4863281, 1.7597656, 0.78125, 2.4980469, 0.92578125, -1.2275391, -0.81884766, -1.1298828, 1.8691406, 0.25561523, 1.3857422, 0.2800293, 0.45239258, 2.9511719, 0.7426758, 0.95703125, 0.06628418, 2.1875, 0.65283203, 0.37304688, -1.7568359, -0.11175537, -2.640625, 3.5703125, -2.2382812, -2.4082031, 0.734375, 2.0859375, 0.80810547, 1.3427734, 0.23474121, 0.28710938, -2.46875, -2.8710938, -1.1201172, -0.19567871, -0.22106934, 0.32617188, -1.1113281, 0.9194336, 1.9248047, 1.7675781, 2.3964844, 0.9980469, 0.78466797, -0.45361328, -0.74121094, -2.5058594, -0.8876953, -1.25, -3.0878906, 0.6347656, -1.0175781, 2.9746094, 1.4072266, 1.4765625, -0.00982666, -1.1171875, -0.77246094, 1.1259766, 2.2089844, -1.1396484, -1.2431641, 2.984375, 1.2265625, -1.6123047, -2.125, -0.48535156, -1.3203125, 0.68652344, 2.1152344, 1.1005859, -1.4990234, -0.35009766, -2.1074219, -4.8710938, -1.3525391, 0.82470703, 1.3632812, -0.26293945, -1.1201172, -1.4482422, -0.79541016, -1.3105469, -1.0703125, -1.4541016, 1.0673828, -1.3574219, -0.52685547, 0.9135742, 0.27685547, 0.38183594, 1.1162109, -0.35009766, -2.4316406, -0.11401367, -2.1152344, -3.5058594, 0.24719238, -2.0429688, -0.81640625, 0.2705078, -1.1943359, 0.6196289, 2.4707031, 1.1503906, -2.1523438, 2.8515625, -1.5419922, 1.3320312, 0.21020508, -2.3144531, 1.1328125, 1.2353516, -0.3227539, 0.3544922, 3.3730469, 4.5703125, -1.8037109, -0.08569336, -0.6484375, 0.0044517517, -0.056793213, 0.53466797, 0.5605469, 0.16357422, 0.99365234, 2.2128906, -0.049621582, -0.6699219, -2.8652344, 0.53271484, 0.17480469, -1.8017578, 0.17297363, 0.71435547, 0.23754883, 1.03125, -1.0107422, 0.13623047, -0.58691406, -0.5361328, -1.3642578, 0.2927246, -1.7109375, 1.7695312, 1.4267578, -1.5888672, -4.7421875, -0.98046875, 3.265625, 2.3359375, -0.75097656, 0.96777344, -0.039031982, -1.2470703, 0.15234375, -0.4362793, 2.3164062, 0.96484375, 0.7836914, -1.1660156, -1.0205078, 1.6679688, -2.703125, -0.20214844, 0.48901367, -1.0742188, -0.56396484, 1.1484375, 2.5175781, -1.7607422, 0.044281006, -0.75341797, -1.2939453, -2.5839844, -0.75878906, 0.59521484, -3.75, 1.9150391, 0.5908203, -2.859375, -2.6542969, 2.6484375, -1.2314453, 0.7475586, 1.3603516, 2.4414062, -1.7216797, -2.5019531, 0.08520508, 0.14208984, -0.18432617, 0.33935547, -1.8828125, 0.8491211, 1.8154297, -1.1015625, 2.0195312, 1.1083984, 1.2880859, -1.0136719, -1.1953125, 0.6279297, 1.8857422, 0.78222656, 3.234375, 2.6894531, 0.036712646, 1.0595703, 1.15625, 1.4521484, 3.1484375, -2.1308594, 0.6538086, 1.3496094, -0.13635254, 0.7558594, -1.7744141, -0.30273438, 0.24951172, -0.7402344, -1.0234375, 1.2587891, 3.3710938, -2.6445312, -0.47705078, -2.1503906, -0.43896484, -1.5664062, 0.16210938, -0.6982422, -0.44580078, 0.16882324, 1.4755859, 0.98535156, 1.9414062, -0.48583984, 0.8261719, -1.8388672, 1.8603516, 0.3466797, -0.90527344, -3.140625, -0.31835938, 0.32861328, 2.140625, 0.49121094, -0.93066406, 1.203125, 1.6337891, -0.19055176, 0.5053711, 1.6357422, 0.03555298, 0.2524414, -1.7910156, 1.7939453, 4.1835938, -0.32983398, 2.4667969, 0.39794922, -0.7890625, -2.4570312, -0.3317871, 0.33447266, -0.34960938, -0.40454102, -2.4902344, 0.48632812, -2.3925781, 0.28295898, -2.5371094, -1.7011719, 0.27734375, -1.9082031, 0.15368652, -0.39208984, -0.390625, 1.7607422, 1.9355469, -1.2099609, 0.64453125, 1.5244141, 1.0839844, 0.43359375, -1.2929688, -0.79052734, 0.107666016, -1.3046875, 3.6425781, -0.5854492, -0.24707031, -0.83984375, 3.4941406, 0.9760742, 0.37695312, 1.1982422, -0.8798828, 1.9316406, 0.95703125, -0.40527344, -0.46362305, -0.72265625, -0.20178223, -0.26416016, -2.0351562, 0.17834473, 0.020736694, 1.1240234, 1.9248047, -2.0292969, -0.3684082, 0.8178711, -0.83203125, 1.8554688, 1.6816406, -1.4716797, -0.40673828, 1.1337891, 1.4882812, -3.2734375, 1.8974609, 0.42382812, -0.22363281, -1.2666016, -1.7431641, -1.3242188, -0.025421143, -0.7026367, -0.7705078, 0.5864258, -0.49365234, -0.48388672, 0.7080078, -1.8486328, 1.8417969, 2.4628906, 0.44384766, 1.1699219, -0.35253906, -0.51123047, 1.6308594, -0.6152344, 0.3137207, 1.3896484, 1.7753906, 0.5517578, 0.55859375, -1.9921875, -2.7578125, -1.8222656, -2.453125, 0.17895508, 0.13989258, -2.0703125, 1.0869141, 0.8496094, 2.3417969, -0.9140625, -0.85302734, -0.63183594, 1.1904297, 1.7998047, -0.72265625, 0.76171875, 0.3408203, 0.41992188, 1.9414062, 3.9882812, 3.3007812, -1.5556641, -1.0703125, 0.8300781, -1.4902344, -1.7011719, -0.7895508, -0.5385742, -0.6386719, 1.5039062, 2.6992188, 2.328125, 0.5761719, -1.0410156, -1.2802734, 0.4580078]}, "B07FP4WHML": {"id": "B07FP4WHML", "original": "Brand: only fire\nName: Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch\nDescription: Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

          Steel construction with easy grip handles

          Black mesh pattern naturally creates 'x marks' in steak and other grilled foods

          Use as serving tray after grilling is done. Great camping accessory

          Creates perfect grill marks on food without any hassle.

          \nFeatures: 36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings\nSturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood\nIt is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate!\nSteel construction for warp resistance.\nCreate perfect grill marks in your food, making the BBQ more fun.\n", "embedding": [-0.12194824, 0.09320068, 0.09240723, -0.32128906, -0.15637207, 0.77734375, 2.5488281, -2.2460938, -0.7480469, 2.1601562, -1.2744141, -0.97802734, -1.0058594, -3.7890625, 1.3486328, 0.48046875, -0.60791016, -0.4897461, 0.4350586, -0.7626953, 1.0224609, 0.82714844, 0.48461914, -0.8208008, 2.015625, -0.2697754, 3.5351562, -2.90625, 0.3474121, -1.7197266, 1.8828125, 2.4589844, 0.75146484, 0.78271484, -2.5878906, 0.70458984, -2.0839844, 2.4492188, -1.1171875, -0.2841797, -0.51171875, -2.5429688, 2.3769531, 1.4013672, -2.7246094, 1.140625, 2.8457031, 0.5913086, -1.2421875, -3.7871094, 0.5283203, 2.6269531, 1.4257812, 1.0390625, -1.8222656, 1.1542969, -1.3046875, -2.7148438, 1.4033203, -1.1269531, 3.0234375, -0.58740234, -0.46704102, 1.3867188, -1.4121094, -0.2915039, -0.20861816, 0.044433594, 0.30639648, -1.2255859, -0.03564453, -1.5419922, -1.8242188, -0.5341797, 3.640625, -2.8710938, -1.2451172, 1.03125, 0.2479248, -1.1455078, -1.4726562, 3.3632812, 0.22912598, -1.9980469, 0.9980469, -0.4501953, -0.53515625, -0.8623047, 1.1650391, 1.8291016, 1.5478516, 2.0234375, -2.2421875, -2.5605469, 2.453125, 0.38842773, 2.2148438, 0.18347168, -2.4433594, 1.1132812, -1.8046875, 1.9394531, -1.2119141, 0.85058594, -4.0585938, -0.64501953, 0.5649414, -0.45947266, -0.39819336, 1.8964844, -2.0917969, 2.5078125, -0.1550293, 0.32836914, 2.5371094, 0.9790039, 0.4958496, 0.42236328, 2.625, 1.2753906, 5.2109375, 2.2324219, 0.76123047, -3.2011719, -0.06213379, 0.71972656, -0.2553711, 0.9863281, 1.8691406, -0.6171875, -0.84033203, -3.3574219, 2.1640625, 0.8251953, -2.453125, -0.9663086, -2.9902344, 0.33569336, -1.8876953, 1.5478516, -1.8222656, 1.7548828, 2.6855469, -0.68603516, -4.8984375, -0.91259766, -1.6816406, 1.8125, -0.9189453, -2.7304688, 1.4169922, -0.9003906, 0.17150879, 0.0184021, 1.3134766, -0.8261719, -1.3369141, -2.1269531, 3.140625, 0.49682617, 1.4716797, -2.1855469, 0.21875, 1.7402344, 0.38305664, -1.4296875, -1.5722656, 1.7851562, 0.029037476, 1.9931641, 0.7949219, -1.6933594, 1.8886719, 0.8574219, 1.8076172, 0.19152832, -2.7792969, 2.0039062, 1.1054688, 0.04940796, -0.6748047, -1.5273438, 2.5253906, 1.5917969, 0.3334961, 0.34179688, 1.7226562, 0.8417969, 1.7353516, -1.0898438, -2.2246094, 1.0458984, -0.38354492, 0.6875, -0.41748047, -1.2373047, 0.041503906, -3.5703125, -0.5, -1.0478516, -1.8066406, -1.5097656, -1.2441406, 0.53564453, -1.6933594, -0.88916016, -1.1386719, 0.5942383, 4.1367188, 0.5810547, 0.4794922, -1.8496094, 0.83154297, 1.1074219, -0.22473145, -1.1894531, -0.9511719, -0.023727417, 2.2949219, 2.5136719, -1.1396484, 1.2265625, -0.24621582, 2.3945312, -1.4580078, 1.1298828, -0.09790039, 0.7050781, -1.0751953, -2.3417969, 1.9570312, 0.95166016, -0.8300781, 1.4423828, -1.5371094, 3.2792969, 1.9677734, -0.3408203, 0.32714844, -1.1298828, 0.13806152, -1.1894531, -0.03857422, -1.4697266, -0.3815918, -0.4645996, -1.5771484, 1.3085938, 1.2148438, -1.7998047, -1.5361328, 2.1640625, 2.0839844, 1.0498047, 0.087402344, 0.03845215, -1.1455078, -1.2070312, -2.1289062, -2.5332031, -0.64990234, -0.24682617, -0.2709961, 1.2919922, 1.5839844, -0.9267578, 2.7851562, -0.61621094, -2.5507812, -1.1220703, 1.3769531, -1.0605469, 0.9736328, 1.0458984, 2.15625, 0.16455078, 0.63183594, 0.83984375, 1.5673828, -0.6665039, 0.44482422, 0.8569336, 2.9882812, -0.70654297, -1.2109375, -1.8886719, -0.57470703, 0.069885254, 1.0712891, 0.7573242, 4.8164062, 1.3896484, -1.640625, 3.5917969, -2.421875, 2.2265625, 2.46875, -1.1884766, 0.26586914, 0.3256836, 1.9150391, 2.1757812, 0.92089844, 2.6972656, -1.3164062, 0.6435547, 1.8310547, -3.4453125, 1.0126953, 3.4296875, 0.58496094, -0.27539062, -0.4699707, 0.28588867, -1.3134766, -1.2197266, 1.8847656, -3.5078125, 2.0410156, 1.3476562, 1.6845703, 1.3623047, -0.6245117, -2.7617188, -1.0380859, 3.1816406, -1.4824219, 2.4003906, 1.0136719, -1.6347656, -1.2011719, -1.7021484, 0.5708008, -0.58740234, -1.8964844, -3.265625, 0.42041016, -0.13562012, -0.023086548, -1.5361328, 0.16479492, 0.65966797, -3.2773438, -1.8525391, -1.9365234, -2.9082031, -0.7314453, -1.9775391, -1.4736328, 2.0722656, -1.4072266, 1.4736328, 0.5410156, -3.3105469, 0.2763672, 0.018600464, 0.40454102, 1.171875, -3.3496094, 0.99853516, -0.62158203, 2.0683594, 0.37426758, 0.20129395, 1.1337891, -1.6259766, -0.5864258, -2.2910156, -0.17175293, -1.5966797, -1.6865234, -1.5839844, 0.004562378, -1.3115234, -3.8476562, -1.0234375, -0.27124023, 2.6855469, 0.040405273, 2.7539062, -1.6953125, -0.38671875, 1.546875, 1.0175781, -1.1796875, -2.5136719, 0.92529297, 0.71777344, -2.4257812, -2.0546875, -1.9160156, -0.7714844, -0.47387695, -0.55126953, 0.1418457, -1.1484375, 0.13012695, -1.4375, -0.63378906, 0.36157227, 0.38452148, -0.3466797, -0.19238281, -2.2578125, -1.2060547, -0.4543457, -1.7890625, 1.4414062, 2.2675781, -1.4882812, 0.21069336, 1.4082031, -0.96777344, 0.6225586, -0.26953125, -3.0566406, 2.0878906, -0.81689453, -1.2539062, 1.9189453, -2.1113281, -0.5498047, -4.1132812, -0.21618652, 3.5351562, -0.2685547, 0.9111328, 0.15246582, -1.203125, 0.64697266, 1.1601562, -0.6254883, -1.1933594, 1.8388672, 2.8359375, -2.0996094, -2.2578125, -0.6748047, 2.5449219, -2.9453125, 0.77685547, 1.7939453, -0.09033203, 0.70410156, 1.9658203, 1.5429688, 0.2626953, -1.8466797, 2.5664062, 1.3828125, 1.4199219, -0.22460938, -1.3378906, 1.2705078, 1.1845703, 1.0332031, 2.7265625, 0.9399414, 2.8691406, 3.3261719, 0.16394043, -0.7373047, -0.5283203, 0.42529297, 1.3427734, -0.11419678, 2.5898438, -1.7167969, -1.0117188, 1.5097656, -1.6132812, 2.7421875, -1.1386719, -2.1386719, 1.4667969, -0.25976562, 0.5761719, 0.15014648, 0.5161133, -1.6445312, -1.8974609, -0.14123535, -2.5839844, -1.4814453, 1.8925781, -0.054718018, -3.1113281, -1.9941406, 1.3847656, -1.7050781, -2.25, -0.3955078, 3.3808594, 1.5166016, -0.17736816, -1.0644531, 1.2041016, -1.2783203, 2.0585938, 1.0585938, -2.7890625, 1.5185547, -2.8828125, 2.1699219, 0.07312012, -1.0078125, -0.36889648, -1.0585938, -1.1494141, 0.22436523, 1.8417969, 0.99853516, 0.28588867, -1.0458984, -0.2915039, -2.0722656, -0.9892578, 0.9160156, -3.7441406, -0.14624023, 1.2919922, 0.6254883, 0.25439453, -0.91015625, 3.1289062, -0.60498047, -1.8808594, 1.9033203, -2.1503906, -0.033691406, -1.6914062, -3.0839844, -0.18530273, -3.0527344, 0.8886719, 1.3388672, 0.89501953, -0.03793335, 2.0605469, 0.029907227, -2.1992188, -0.7104492, -2.8847656, 0.5234375, -2.578125, 0.15917969, 0.61083984, 1.6933594, -0.8808594, -1.3525391, -0.51660156, 0.27246094, 2.0488281, 0.47314453, -1.7548828, 1.0087891, -2.0800781, 0.0546875, 0.58691406, -0.7685547, -1.0498047, -0.55615234, 0.46289062, 0.30688477, 0.28198242, -0.54296875, 0.76464844, 2.5507812, 0.45898438, 0.14733887, -0.5859375, 0.15905762, 0.16564941, 2.5390625, -0.5932617, -2.359375, -0.17102051, 1.1933594, -0.4790039, -0.7583008, -0.5859375, 1.7333984, -2.4960938, 1.5800781, -2.6152344, 1.1044922, 1.4814453, 0.46777344, -1.2451172, -2.5351562, -0.8466797, -2.765625, -1.3398438, 0.22717285, 0.61035156, -0.81152344, -0.1138916, -0.8652344, 2.375, -2.3203125, -1.0703125, -3.1542969, 3.5351562, 2.53125, 1.0859375, 4.6796875, -0.5390625, -0.7348633, 2.4160156, -3.8398438, -2.5019531, -0.2043457, -1.5625, 1.3515625, 1.5585938, 0.43896484, -0.78027344, -1.6513672, 1.4130859, -1.1855469, -1.4101562, -3.0292969, 1.7373047, -1.4560547, 1.4765625, -0.25976562, -0.3630371, -0.32739258, -0.12866211, -1.0019531, 0.88720703, 2.3808594, -2.4746094, 0.6557617, -0.21008301, -1.375, 0.86621094, 0.8461914, 1.0380859, -0.71875, 0.62597656, 0.43066406, 2.6171875, -2.2617188, 0.75341797, -0.24157715, 1.2910156, -1.6962891, -2.8320312, 1.9677734, 2.9921875, -1.8896484, 0.9477539, -0.21240234, -1.4443359, 1.1992188, 2.1699219, -5.3554688, -0.44262695, -0.66748047, -1.4433594, 0.9560547, -0.09863281, -3.6054688, -1.1113281, 1.4052734, -0.21887207, 2.3222656, -0.28344727, -1.8818359, 0.98535156, -2.4082031, 0.22888184, -0.83935547, -2.6757812, 0.87158203, -1.6582031, -0.07318115, -2.2753906, 2.1640625, 3.0449219, -0.18078613, -2.6484375, 2.65625, -1.8251953, 0.48876953, -0.5932617, -0.94091797, -1.1240234, -1.7001953, 2.2109375, 0.53125, 2.234375, 0.24121094, 1.9609375, -0.40405273, 1.4394531, -1.2353516, 2.8457031, -1.7431641, 0.80371094, 2.8632812, -1.7265625, -2.0546875, -1.6728516, 2.1757812, -0.53222656, 1.2646484, 1.2207031, 0.48291016, 0.046569824, 1.4355469, -1.4541016, -3.3515625, -0.53466797, -0.14147949, -0.7998047, 1.3681641, 0.83496094, -0.2232666, 0.1616211, 1.6191406, -1.5634766, 1.6064453, 1.2373047, 0.5800781, 0.6669922, -2.4335938, -0.0960083, 0.9926758, 0.3161621, 1.5576172, 1.6611328, -1.4384766, -2.6074219, 1.0830078, 3.3046875, -2.8457031, 1.4511719, 2.5800781, 0.40795898, 1.0507812, 2.7011719, 0.52441406, 0.29541016, 2.1503906, -0.09039307, 0.030929565, 3.7617188, 0.49902344, -0.33935547, -0.51171875, -0.47265625, 0.120910645, -4.1054688, -1.3251953, -0.17785645, -2.9140625, 0.47387695, 1.1416016, -0.9067383, -0.55615234, 1.2119141, 1.4609375, 0.4807129, 0.39086914, -1.3134766, -0.61816406, -2.9296875, -3.4277344, -0.10534668, -2.0351562, -0.3256836, -1.9355469, 1.6640625, 1.7753906, 0.3371582, 1.4970703, 0.76220703, 2.5996094, -0.4777832, 1.7792969, 0.2631836, 1.7285156, 1.0234375, -1.3916016, -0.85058594, -2.0507812, -0.74365234, 1.3701172, -0.5708008, -1.9072266, -1.7519531, -0.65771484, -0.69140625, 1.1835938, 1.2529297, 1.3066406, 0.32910156, -1.3339844, 0.56689453, 1.7763672, -1.296875, 3.0390625, 0.24108887, 0.63916016, 0.12054443, 2.6171875, 1.4814453, -2.3085938, 3.046875, -1.2753906, -0.7529297, 0.04510498, -0.9868164, -0.94628906, -1.7880859, -0.6357422, -2.953125, -3.0703125, -1.7373047, 1.0830078, 0.30249023, -0.45141602, -0.37890625, 1.0449219, -1.5605469, 4.109375, 3.2851562, 0.11456299, 0.67333984, 1.2402344, -2, -0.5493164, 2.6054688, -0.7475586, 0.1652832, -0.26464844, -1.7890625, -0.1706543, 0.93359375, 1.421875, 2.1015625, 1.9833984, 2.1210938, 1.6699219, 1.3359375, 2.0253906, -1.1181641, 2.7695312, 3.0644531, -0.78808594, -0.6899414, 2.2421875, 3.3945312, 1.0654297, -0.30517578, 1.4121094, -0.7714844, -0.5175781, -0.5288086, -0.3869629, 1.4355469, -3.1738281, 1.828125, 0.07305908, 0.13085938, -2.7441406, -0.056762695, -2.5566406, -0.9316406, -1.5615234, 0.28710938, 2.9980469, -1.0976562, -0.5336914, -0.39135742, 0.7651367, -1.4599609, -4.3476562, -0.69189453, 2.3242188, -0.65966797, -0.5756836, 3.3789062, 0.45214844, 1.5234375, 1.2431641, 1.2841797, 1.4091797, 0.5463867, 0.75927734, 0.22497559, -0.2401123, 1.6552734, 2.5488281, -2.9921875, -2.3007812, 0.13427734, -0.97509766, -1.6103516, -2.1367188, 1.2011719, 1.6035156, 1.2041016, 2.015625, -1.2255859, 1.6298828, -0.63671875, 2.71875, -2.4941406, 1.5673828, 0.00096035004, -3.5566406, -1.390625, -0.7363281, 1.9658203, 1.9853516, 0.3779297, -1.9609375, 1.7919922, 0.9902344, 0.64404297, 1.4003906, 0.26049805, -1.3046875, 0.6977539, -0.92089844, 1.9013672, 0.7392578, -0.51660156, 0.15881348, 0.30786133, 0.10235596, 0.6142578, 2.03125, -0.9921875, -1.5234375, -1.9560547, -1.7910156, -0.5126953, -1.4746094, -1.9111328, -1.2421875, 0.82666016, -0.48828125, -0.81933594, 1.3417969, 2.1484375, 2.8574219, -0.53222656, -0.64941406, -2.0605469, 3.2363281, -0.25683594, -1.3183594, 0.7480469, 0.6298828, 1.8183594, -0.14428711, -0.6933594, 1.4140625, 2.9394531, -0.17565918, -1.6230469, -0.15539551, 1.1542969, 0.2692871, -0.6298828, 1.2304688, -0.54248047, -0.48120117, 1.1347656, -0.7685547, 0.37402344, 1.8798828, -0.117370605, -1.0371094, 0.21850586, -0.59521484, -1.0185547, -0.8276367, -1.7314453, -0.11029053, 5.0664062, 2.9765625, -0.27929688, -1.0195312, -4.0117188, -0.8964844, -0.8276367, 1.6171875, -0.54052734, -2.0722656, -0.18493652, 0.65722656, 1.5146484, -1.2832031, -0.046142578, -0.61035156, -1.1445312, -2.1367188, -2.0195312, 3.5410156, 1.8261719, 1.4726562, -0.8676758, 1.2167969, 1.6318359, 0.40966797, 2.6269531, 2.8769531, 0.6767578, -2.4941406, 2.1972656, -0.94970703, 1.4091797, 0.46679688, -0.24963379, 1.5126953, 0.7207031, -1.7763672, -2.9902344, -0.26367188]}, "B071NL9D7J": {"id": "B071NL9D7J", "original": "Brand: GasOne\nName: Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)\nDescription: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\nFeatures: 2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only\nCompatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P\nTo be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves\n", "embedding": [-1.2880859, -1.1875, 0.3359375, -0.5566406, -0.0062446594, 1.8916016, 0.7451172, -1.0332031, 3.3125, -0.26733398, 1.7783203, 1.8964844, 1.6972656, -1.8242188, 1.4082031, -1.1484375, 0.10644531, 0.8100586, 0.28735352, 3.7695312, 1.7861328, -0.41430664, 2.3496094, -0.9682617, -0.65478516, 0.6928711, 3.0898438, -2.3652344, 0.22399902, 0.51464844, 0.6430664, 1.1591797, -1.6689453, 0.82421875, -4.1875, -1.5498047, 0.9140625, -0.55810547, -4.1054688, -1.6953125, -2.0039062, 3.0292969, 1.875, 0.8251953, -1.765625, -0.4946289, 3.1191406, -0.18774414, -1.7822266, 0.9277344, 1.6308594, 3.3984375, -1.7128906, 0.91552734, -0.50683594, 2.5390625, 2.2988281, -0.43481445, 1.8759766, 1.9833984, 2.0332031, 1.3085938, -1.5166016, -0.2705078, -0.8496094, 0.43701172, 0.15136719, 0.5415039, -3.0761719, -0.32739258, 0.8989258, 3.0664062, 0.53222656, 1.9326172, -2.7304688, -0.92626953, -5.1171875, 1.4785156, 0.5522461, -1.71875, -0.9667969, 0.6064453, 1.2792969, -0.42700195, 2.1210938, -1.9619141, -0.49291992, 1.3554688, 1.3095703, 0.99560547, -3.4472656, 3.5898438, -1.7617188, -1.9326172, -0.12890625, 0.19433594, -0.4140625, 2.0507812, 3.03125, 0.5864258, -2.7597656, -1.9560547, -0.29467773, 2.6601562, -2.0234375, -2.2675781, 0.27392578, 0.5888672, -3.6152344, 1.3876953, -0.6254883, -0.47143555, 2.5878906, -2.3984375, 0.8286133, -0.625, -1.1464844, -1.5273438, 2.4902344, -0.5605469, 3.2460938, 1.0322266, 0.4050293, -0.23925781, 1.2871094, 1.3691406, -2.1425781, 0.91015625, 4.1601562, -0.21862793, 0.33032227, -2.0429688, 2.2148438, -1.4042969, 2.7675781, -1.7011719, -0.7998047, -4.09375, -1.4873047, -1.5439453, -3.6640625, 0.124938965, 0.82421875, -0.6972656, -4.1992188, 1.3623047, -3.0644531, 0.7504883, 3.6074219, 0.3696289, 2.1894531, -2.3828125, -0.5649414, -3.9667969, 3.6210938, 1.1171875, 1.1943359, -0.6269531, 0.21520996, 3.1660156, -0.8769531, -0.30664062, -2.7363281, -0.91064453, 0.88378906, -2.6386719, 0.6166992, 0.79248047, -2.5566406, -0.26660156, -1.5908203, -0.18481445, -0.32495117, 1.1435547, -0.33154297, 1.1494141, 0.2709961, 2.7519531, 0.070007324, 1.109375, -3.4589844, -1.9667969, 1.2666016, -2.8144531, 2.5214844, -0.8496094, -0.89160156, -1.3632812, 2.5, -0.18359375, -0.4934082, 1.7382812, -0.81689453, 2.7402344, -0.5161133, -0.8935547, -1.9570312, 1.4150391, 0.5703125, 1.0263672, -3.0390625, -1.7539062, 0.08618164, -0.66552734, -1.0996094, -4.0351562, 1.3789062, -0.57910156, -1.3876953, 1.359375, -0.8959961, 1.1181641, 2.6875, -0.0519104, -0.51708984, -1.6132812, 3.7675781, 3.8925781, 0.29663086, 0.021896362, -0.08251953, -0.6064453, 1.609375, -0.9501953, 1.0742188, 1.8642578, -1.2050781, 0.9506836, -3.4804688, -2.6347656, 2.8066406, 0.66748047, 1.0263672, 0.3713379, -0.34326172, 1.3974609, 2.3789062, -0.95996094, 0.7285156, 2.0390625, 0.97265625, -1.5390625, -2.9316406, -0.84765625, -2.6757812, 3.6914062, -0.5126953, -0.8041992, 1.6689453, -1.1923828, 1.5957031, 1.5722656, -1.1152344, -2.0664062, -3.7734375, 0.86621094, 1.2792969, 2.1835938, 0.4741211, 1.3876953, 1.8476562, -0.2824707, 2.2109375, 0.46875, 1.7001953, -0.9038086, 1.9013672, -2.2148438, -0.9477539, -1.3623047, -0.9140625, 2.203125, 2.0859375, -2.8730469, 2.1601562, 2.2988281, -3.1914062, 2.3535156, 0.47851562, -0.43066406, 2.6699219, -2.3027344, -0.19165039, -1.0039062, 3.8339844, 1.6318359, 2.2382812, -1.6425781, -0.8095703, -0.1116333, 4.2851562, -0.17529297, -1.8154297, 1.4550781, 2.0390625, -0.6230469, -1.1708984, 0.61083984, -0.78515625, -0.75097656, -0.17102051, 0.8769531, 0.20043945, 1.4228516, 2.8066406, 2.3457031, -1.8789062, -0.28979492, 1.8261719, 1.53125, -1.8037109, -1.9902344, -0.88134766, 0.49414062, -2.7265625, -0.8833008, 2.5253906, 0.6484375, 0.13903809, -1.9824219, 1.2841797, 1.3583984, 1.4140625, -2.2519531, 0.6176758, 1.1455078, -0.08654785, 1.8457031, 0.38134766, 1.1113281, 1.6611328, -0.09893799, -0.7416992, -2.6425781, -2.4101562, 1.6943359, 0.0093688965, -2.7675781, -0.34399414, -1.9960938, -2.3242188, -0.578125, -2.0742188, 3.3125, -0.13879395, -0.66796875, -0.7495117, -0.18591309, -0.6660156, -1.3974609, 0.78222656, 2.4570312, -1.109375, -0.42529297, 0.54589844, -1.3652344, 0.09429932, 2.1074219, -0.95654297, 0.17810059, 1.9414062, -0.22961426, -2.0410156, -0.8041992, -0.12561035, -0.44262695, 2.8808594, -4.3632812, -1.7714844, -0.122924805, 0.20581055, -0.05267334, -0.43896484, -2.1308594, -2.1074219, 1.9443359, 1.1357422, 1.2353516, -1.2011719, 1.6357422, 0.45410156, -1.2988281, 1.1923828, -4.75, -2.5722656, 0.027862549, 0.10839844, -1.4238281, 1.4091797, -1.9169922, 1.3046875, 0.6640625, 0.37719727, -0.89941406, -0.57666016, -0.41748047, -0.03289795, 1.4003906, -1.3955078, 0.08905029, 1.1972656, -0.3190918, -3.2539062, 1.8681641, -0.63964844, -2.8730469, -0.2758789, -1.3515625, 0.103027344, 0.26879883, -1.6542969, 0.6958008, 0.77978516, -0.033843994, 0.30810547, -1.3193359, 1.6542969, 1.4453125, -2.4492188, 1.5644531, -1.8251953, -0.008712769, -2.5546875, -0.9453125, 3.5957031, 1.2695312, 4.7695312, -0.23706055, 1.0888672, 1.4824219, 0.79345703, -0.015556335, -3.0507812, -0.97265625, 2.4824219, -1.7597656, 0.56640625, 0.09173584, -0.33569336, -3.7050781, -0.45507812, 1.6367188, -1.7304688, 2.5898438, 0.13452148, 0.54345703, 0.3876953, -1.1669922, 2.2285156, 0.15551758, -0.92578125, 1.5068359, 1.8037109, 0.26098633, -1.0673828, 1.1074219, 1.5498047, 2.4765625, 2.2246094, 0.63671875, -0.9477539, -1.8583984, -0.43359375, -0.44873047, 0.9814453, 2.0410156, 1.2841797, 1.0048828, 0.21325684, -0.5161133, -0.3798828, 1.4023438, -2.0195312, -0.36645508, 1.4003906, -1.03125, -0.92041016, 0.7314453, -1.6289062, -0.6582031, -0.106933594, -0.2055664, 0.8203125, -0.18164062, 1.0009766, -0.29174805, 1.3740234, -0.51953125, 1.2216797, -0.4440918, 1.3857422, -0.26098633, -0.14135742, -3.6757812, -0.8203125, -1.2900391, -2.7304688, 1.5507812, 1.9296875, 1.1650391, -2.4375, 2.9199219, 0.9916992, 0.016189575, 2.6738281, -0.1809082, -0.9902344, -3.8085938, -0.8178711, 0.5629883, -0.7680664, 1.4638672, 0.8803711, -2.9882812, 0.6611328, -1.7021484, -1.1884766, 1.4345703, -0.52246094, -1.9394531, -0.8183594, -1.0830078, 2.171875, -1.6914062, 3.7695312, -0.14453125, -1.3193359, 2.8066406, -3.9960938, -0.09979248, -0.76953125, -3.8300781, 2.5097656, -1.5371094, 1.2988281, 3.6855469, 3.2460938, -0.72998047, 3.2480469, 0.8100586, -4.2421875, -0.94189453, -0.78466797, 0.18762207, -3.0585938, -3.5449219, 1.7207031, 1.5771484, -0.34228516, -1.2490234, 0.95214844, -1.8134766, -0.64697266, -1.140625, -3.09375, -1.6962891, -0.35302734, 1.2783203, -0.2758789, -0.6982422, 0.95947266, -1.5634766, 0.31298828, -4.1054688, 3.5683594, 1.4287109, 0.71728516, -1.3154297, 5.0039062, 2.0078125, -1.9257812, 0.98828125, -1.7011719, 1.9560547, -0.017974854, -1.3916016, -1.5019531, 1.0595703, 1.6748047, -0.028640747, -1.2158203, -2.1503906, -0.83251953, 1.7861328, 2.5507812, 1.765625, 1.5751953, 0.2746582, -2.8554688, 1.6376953, 0.234375, -3.0878906, -0.17480469, -0.22839355, -0.08465576, -1.1396484, -0.44384766, -3.890625, 1.2724609, -0.20812988, 0.054351807, -3.4882812, 1.0751953, -1.5664062, -0.23864746, 1.0292969, -2.9570312, -0.5214844, -0.51660156, 1.3164062, 0.2319336, 0.18017578, -1.2626953, -0.78515625, 0.33251953, 1.1318359, -0.7988281, -0.91552734, 1.3847656, 1.0263672, 1.5996094, 0.83740234, -0.33398438, -1.375, -2.9902344, -1.6269531, -0.3803711, 3.359375, -1.6181641, 1.6396484, 1.1474609, -1.0039062, -3.5390625, 2.2753906, 3.1328125, 1.7236328, -0.095703125, 1.0966797, 1.8808594, 3.0761719, 1.4423828, 1.625, -0.03475952, -0.45654297, 0.6196289, 1.1630859, 1.8916016, -1.5634766, 0.27416992, 1.6123047, 1.9619141, 2.1484375, 2.1054688, -0.9111328, -0.8227539, 1.1542969, -0.2631836, -2.5039062, -0.43481445, 0.3930664, 1.0800781, 2.3457031, -1.3574219, -0.67333984, 0.07836914, 3.9609375, 1.0830078, -0.7558594, 1.3574219, -0.6176758, -0.45288086, -4.1875, -1.2138672, -0.8359375, 0.04977417, 2.4433594, -2.4785156, 0.9321289, -0.16967773, 1.421875, 1.5800781, -0.34277344, -0.77978516, -0.8720703, -1.1914062, 0.07067871, -0.99560547, -0.67871094, -2.3027344, 1.0947266, 1.7353516, 1.7402344, 0.52001953, 1.484375, -1.2441406, -2.1503906, 0.23095703, 1.1298828, -0.44018555, -1.1005859, -0.88916016, 3.3066406, 0.23144531, 0.63916016, 0.035980225, -0.6328125, 0.5673828, 1.7587891, -0.35961914, 1.9628906, -1.2939453, -0.24853516, -1.5322266, -5.0507812, -1.5585938, 1.0146484, 1.21875, -1.1376953, -1.5019531, -0.6386719, 1.9853516, -0.099853516, 0.6801758, -2.5527344, 0.99560547, -2.0175781, 0.4921875, 0.56347656, -0.79003906, -1.0605469, -0.060150146, 0.23156738, -0.54541016, 1.9824219, -1.5068359, -2.5136719, 1.1953125, -0.95410156, -1.0498047, 0.121276855, -1.5673828, -2.75, 0.37646484, -0.6166992, -3.2539062, 1.6103516, -2.7636719, 0.27124023, 2.1054688, 0.52734375, 1.4082031, 1.4599609, -0.39233398, 1.3574219, 2.2246094, 3.4765625, 0.038146973, 0.07110596, 2.1503906, 0.72558594, -1.7490234, -1.9707031, 0.7578125, -0.8652344, 1.4169922, 1.6542969, -0.7573242, -0.44433594, -3.0390625, -0.9326172, 0.56640625, -2.5078125, 0.63671875, 1.6689453, 0.4951172, 0.8261719, 0.9638672, -0.39892578, -1.65625, 0.3215332, 0.64697266, -0.33325195, -3.1347656, 2.6738281, -0.7236328, 1.4111328, -3.703125, 0.64746094, 1.3789062, 1.8535156, 1.3867188, -0.16967773, 1.3300781, -0.11773682, -0.05706787, -1.8642578, 2.2089844, 1.2128906, 2.3828125, -0.62841797, 0.46728516, 2.328125, 0.123413086, 0.828125, -0.04736328, -0.63671875, -0.76171875, 2.2421875, 2.5234375, -3.0097656, -0.62402344, -0.09667969, -0.609375, -0.5629883, 0.14135742, 0.47924805, -1.9492188, -0.30322266, -1.2900391, -3.1816406, -1.7705078, 1.0439453, -0.19091797, -1.0146484, -0.08148193, 2.1542969, -1.5097656, -1.2304688, 2.2148438, 1.0898438, -2.8496094, -1.4892578, -2.4023438, -1.4619141, 7.2062016e-05, -1.0976562, -0.9121094, 2.5429688, 1.8583984, 1.0908203, -0.9379883, -0.35375977, 2.3574219, 1.7441406, 2.5527344, 2.1972656, 0.45654297, 0.19580078, 2.1347656, 0.90283203, 0.3491211, -0.8696289, 0.37231445, 1.0693359, -0.37817383, 1.2265625, -1.9609375, 1.4248047, -1.5976562, -0.47729492, 0.82958984, 1.0234375, 2.03125, -4.09375, -1.6513672, -1.1992188, 0.5161133, -3.2910156, 0.10797119, -1.8769531, -0.19592285, 3.2753906, 0.94091797, -0.6147461, 0.34472656, -3.1777344, 0.8876953, -1.2978516, 4.1875, -0.17858887, 0.9301758, -1.4091797, -2.1347656, 0.5078125, -0.37524414, -1.0839844, 0.3034668, 0.81152344, 0.4416504, 0.45507812, -1.6025391, -0.19042969, -3.5761719, 2.1757812, -1.0234375, 1.5976562, 1.9599609, -1.25, 2.9140625, -0.84228516, -4.234375, -5.3945312, 1.9716797, 0.49780273, -0.8803711, 0.3400879, -3.0449219, 2.9003906, 0.0115356445, 0.36523438, -3.53125, -0.8378906, 0.87402344, 1.7021484, 0.05480957, 2.0058594, -1.1855469, 1.9521484, 0.24206543, -2.6015625, -0.19470215, 2.7519531, -0.9121094, -0.038909912, -0.2849121, 1.0664062, 0.78564453, -1.6904297, 2.796875, 0.12023926, -0.36010742, -1.1181641, 0.7885742, 2.5332031, 1.1474609, 0.5410156, -0.42211914, 0.16223145, 0.40576172, 0.8774414, 0.23486328, -1.6318359, -1.6318359, 0.4819336, -0.12878418, -1.8476562, -2.1289062, 2.6289062, -1.1455078, -2.9785156, 1.4794922, 1.5585938, -0.6298828, 0.064941406, 2.0683594, -1.1132812, -0.76904297, -1.9726562, 0.30615234, -2.8144531, -0.85595703, 1.5048828, -1.2451172, -1.359375, -2.1503906, -0.77978516, 1.1660156, -1.5195312, -0.65185547, 1.1728516, -0.5883789, -0.35205078, 0.27563477, -0.8120117, 1.9716797, 2.4492188, -1.2441406, 0.5649414, -0.8642578, -1.0332031, -1.1416016, -1.9296875, -1.5048828, -1.0234375, 1.7177734, 2.3027344, 2.7617188, -3.2382812, -0.9316406, -0.2919922, -2.7851562, 1.9951172, -0.74365234, -0.39379883, 0.36035156, 2.7519531, 1.9824219, -0.90478516, -0.9692383, -2.2226562, -0.5229492, 1.4394531, -2.4257812, 0.80908203, -1.765625, 1.4072266, 0.7285156, 2.6601562, 3.9101562, 0.41870117, 0.001543045, 0.83251953, 0.5024414, -2.2460938, 1.6738281, -0.077819824, -0.20056152, 0.77441406, -0.9584961, 1.5322266, 2.5644531, -1.0634766, -1.03125, 1.7929688]}, "B07F8N2WQS": {"id": "B07F8N2WQS", "original": "Brand: Ruutcasy\nName: Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24''x13''x9''\nDescription: What\u2019s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

          Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

          Portable Camping Grill Details
          L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
          Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
          Weight:2.5Kg
          Material: Rolled and stainless steel

          Luxury Travel Grill
          Quickly assembled BBQ
          Lightweight fold design
          Ventilation holes and Drawer type dust box

          Travel Camping Barbecue Grill
          For picnics in the park
          For sociable hours during camping
          For the lunch break during hikes
          Great when you get the munchies at a festival
          \nFeatures: \u3010Brilliant Camping & Party BBQ Tool\u3011Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families.\n\u3010Lightweight & Portable\u3011Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up.\n\u3010Perfect For Outdoor\u3011This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It's perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group\n\u3010Best BBQ Grill For You\u3011The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact\n\u3010QUALITY GUARANTEE\u3011: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.\n", "embedding": [-1.8056641, 2.578125, 0.7373047, -0.38085938, -1.4853516, 0.28759766, 1.2041016, -2.1386719, -2.1660156, 1.6865234, 0.36621094, -2.328125, 1.2353516, -3.3925781, -0.8354492, 1.0693359, 0.89990234, 1.1416016, 2.4765625, 0.070373535, 0.15759277, 0.6171875, 1.7910156, 1.1142578, 1.4072266, -1.5478516, 3.3320312, -2.0898438, 1.3701172, 0.27392578, 2.6835938, 0.3708496, 1.7041016, 2.6914062, -2.296875, 0.51171875, -2.0488281, 1.2441406, 0.30737305, -0.20983887, 0.4086914, -3.1933594, 4.0390625, -1.3300781, -2.3320312, -1.1904297, 0.2487793, 0.77246094, 0.9169922, -3.5039062, 1.8291016, 1.0498047, 2.0761719, 1.6621094, -3.140625, -0.68066406, -1.1445312, -2.0234375, 1.6796875, -1.4316406, 1.8154297, 0.1204834, -0.63427734, 1.2011719, -0.13049316, -2.4082031, -0.19470215, -0.5473633, 0.05731201, -1.2285156, 0.20324707, -1.0878906, -2.3769531, 0.40820312, 1.4589844, -0.33081055, -0.55029297, 1.5429688, 1.4931641, 1.9248047, -2.7636719, 4.7929688, 0.95166016, -1.0810547, 0.3017578, -0.14135742, -2.2773438, -1.4208984, 2.9667969, 1.1044922, 0.05831909, 2.6367188, -1.7382812, -4.0859375, 1.2011719, -2.4863281, 2.2851562, -0.2783203, -0.7416992, 2.3417969, -0.97753906, -0.08026123, -0.15722656, 0.00907135, -2.4472656, -0.49365234, 2.1855469, -1.0380859, -0.39892578, 3.0664062, -2.1835938, 0.8173828, 1.6337891, 0.78466797, -0.04309082, -0.4584961, -1.6181641, 2.4765625, 1.9433594, 1.5273438, 4.3242188, 1.4267578, 0.59033203, -3.7382812, -0.5341797, -1.7285156, -0.95458984, 2.6054688, 2.515625, -0.53808594, -0.46435547, -0.6430664, -0.67333984, 0.6948242, -2.765625, -2.3496094, -2.1972656, -0.3708496, -4.0625, 3.0839844, -1.2451172, 0.61621094, 4.4609375, -1.4492188, -2.9238281, 0.4819336, -0.6166992, 2.59375, -0.09869385, -1.7978516, -0.36987305, -2.2460938, -0.92333984, -0.7910156, 1.9335938, -0.06085205, -1.0185547, -1.5712891, 2.8847656, 0.17773438, 1.6298828, -3.0917969, -0.9926758, 1.1074219, 1.4257812, -3.1132812, 0.22277832, 3.1191406, 0.26123047, 2.6015625, 1.0830078, -1.640625, 1.7460938, 0.7260742, 2.5605469, -1.8027344, -1.1425781, 2.7460938, 0.74902344, -1.1689453, 0.93115234, -0.8466797, 0.7294922, 2.2519531, -0.0770874, -1.0400391, 0.49560547, -0.1665039, -0.75634766, -2.2832031, 0.18395996, -0.81103516, -2.2148438, 0.17944336, -0.58691406, -0.64941406, 0.03186035, -1.0878906, -1.3613281, 1.7392578, -0.4921875, -0.39331055, -1.0771484, -0.31445312, -2.7753906, -2.0214844, -0.29467773, -0.5786133, 2.8769531, 0.8774414, -0.9902344, -1.1132812, 2.3847656, 1.5224609, 0.3491211, -0.6381836, 0.65625, -1.3339844, 1.1435547, 1.9472656, 0.16467285, -0.8935547, -1.3994141, 4.2148438, -0.68896484, 2.234375, -0.7910156, -0.9042969, 1.4208984, -0.3894043, 2.3007812, 0.53515625, -0.6982422, 0.23730469, -1.5556641, 1.8574219, 0.8022461, -2.3046875, -1.8779297, -0.30737305, -0.1307373, -1.9072266, 0.17553711, -1.5830078, -0.45874023, -1.5908203, -1.2792969, 3.2773438, 2.0820312, -1.1953125, -0.50878906, 1.1679688, -0.32104492, 2.1386719, 0.7558594, 2.2421875, -0.40185547, 0.43847656, -2.3671875, -1.1494141, 0.27514648, 2.9140625, 0.44189453, 0.58984375, 1.7832031, -0.9741211, 1.9853516, 1.0166016, -2.5664062, 0.6425781, 1.6914062, 1.9384766, 0.9946289, -0.25341797, 1.6123047, -2.4453125, -0.46899414, -0.9902344, 2.0136719, -0.14880371, 0.13989258, 0.19238281, 1.7480469, -1.4013672, -1.9804688, -2.2675781, 0.28173828, -0.6689453, 1.8759766, 1.5859375, 4.1953125, 0.2536621, -1.4423828, 3.6972656, -3.3730469, 1.0927734, 1.5585938, -0.29760742, 0.003768921, 1.2763672, 0.21069336, 1.1904297, 0.63378906, 1.7207031, -3.2441406, -1.5126953, 1.6660156, -3.9433594, -0.33081055, 2.6835938, -0.48950195, -0.17700195, -1.1962891, -0.67333984, -2.0625, -1.3710938, 0.13012695, -1.6865234, 1.1425781, 3.28125, 0.7114258, -0.1381836, -0.83251953, -4.2109375, -1.4257812, 0.9458008, -1.3408203, 0.9794922, 2.1953125, -0.62939453, 0.3388672, -0.52490234, 1.7041016, -1.7265625, -2.5664062, -2.6171875, -0.20581055, -1.5976562, 0.4609375, 0.5229492, -0.40625, -0.9428711, -2.6992188, -0.78271484, 0.2541504, -3.7363281, -0.058746338, 0.9746094, -0.6142578, 0.7661133, -2.0175781, 0.1274414, 0.6713867, -4.7460938, 0.10369873, 0.08929443, 2.4042969, 0.37060547, -2.1445312, 0.61572266, -1.5166016, 0.77001953, -0.71728516, 2.1269531, 0.051635742, -1.7695312, -0.3918457, -2.4472656, 0.97998047, -0.117492676, -0.3942871, -1.4345703, 1.4306641, -2.8496094, -1.9072266, 0.14477539, -1.2578125, 4.3085938, -1.1933594, 0.70703125, -0.6694336, -1.6044922, -0.7915039, 0.28222656, -2.9042969, -2.6171875, 1.2128906, -1.0810547, -2.2050781, -2.2714844, -0.26416016, 0.36889648, -1.5332031, -0.88623047, 1.9121094, -1.8144531, 2.1425781, -2.9160156, -0.4362793, -0.46313477, 2.4414062, -0.110839844, -0.76953125, -1.7832031, -0.91552734, -1.0800781, -0.46313477, -0.89501953, 1.9599609, -1.0332031, -0.14672852, 1.3222656, -0.45898438, -0.4909668, -0.20532227, -2.6875, 1.515625, 0.70166016, -1.6796875, 1.6445312, 0.090148926, -0.83154297, -3.7148438, -0.71240234, 2.9863281, 0.91259766, 1.1904297, 0.60009766, -0.19641113, 0.6176758, 0.7734375, -1.3847656, 0.17150879, 1.3603516, 2.7988281, -2.15625, -1.7109375, 1.3671875, 2.5878906, -2.8867188, 2.1210938, 1.9160156, 0.70751953, 1.8378906, 2.9609375, 1.6484375, 0.47705078, -0.62109375, 0.6269531, 2.1503906, 0.7050781, -1.5488281, 0.4338379, -0.5205078, -0.48950195, 1.2119141, -0.5576172, 0.042419434, 2.5078125, 2.4785156, 0.7260742, -2.8789062, 1.3125, 1.7070312, 1.7470703, 0.80908203, 1.7539062, -1.015625, -1.7177734, -0.14001465, -0.44189453, 0.40625, 0.008918762, 1.1025391, 1.4550781, 0.80029297, 0.4855957, -0.0748291, -0.234375, -2.2773438, -1.4892578, 0.53222656, -2.8242188, -2.9101562, 0.5698242, -3.7089844, -3.1132812, 0.057037354, 2.0546875, -0.91308594, -1.3251953, 1.1630859, 2.5859375, 0.3022461, -1.8378906, -3.2324219, 2.1699219, -0.21435547, 3.2558594, 2.3339844, -1.0859375, 1.8066406, -1.0546875, 2.3789062, 0.3449707, 0.21960449, -1.6894531, -1.1757812, -2.1289062, 1.1064453, 0.45654297, 1.2011719, 0.41235352, -2.2558594, -0.1616211, -2.8828125, 0.8051758, 2.4335938, -1.4228516, -0.51123047, 1.0009766, 2.1855469, 0.72216797, -2.4394531, 3.4492188, 0.16271973, -1.9140625, 1.2255859, -2.3886719, -1.4677734, -2.203125, -4.0273438, 1.4755859, 0.84472656, 0.4025879, 2.2890625, -0.081726074, -1.4755859, 2.7890625, -0.021972656, -0.17602539, 0.27075195, -3.2226562, -0.30981445, -1.9140625, 1.0449219, 1.6582031, -0.30541992, -1.3222656, -2.0136719, -1.6220703, -0.07775879, 2.4042969, 1.6005859, -1.3056641, 0.17236328, -1.4140625, 1.0283203, -1.5527344, 0.21911621, 0.047851562, -1.6728516, 0.0008621216, -1.2128906, 1.4169922, -1.5322266, 0.47924805, -0.2841797, 1.3027344, -0.0149002075, -1.0205078, -0.97265625, 2.2890625, 2.8300781, -1.2236328, -2.7617188, -1.5498047, -0.5107422, -2.2109375, 1.0878906, -0.5649414, -0.4567871, -3.4375, 1.1572266, 0.22619629, 1.5507812, 2.0351562, 0.48999023, -1.4140625, -0.8173828, 0.12200928, -2.1445312, -3.4257812, -1.4453125, -1.0390625, -0.35327148, -1.3466797, -1.6503906, 1.1210938, -0.6074219, -0.47729492, 1.1347656, 2.7402344, 1.2617188, 2.5136719, 4.3398438, -0.43432617, -0.06970215, 1.8642578, -2.3027344, -1.6962891, 1.6503906, -0.48364258, 1.3681641, 2.3359375, 1.359375, -1.3486328, -0.98583984, -0.33569336, -2.4003906, -1.3291016, -1.578125, 3.3359375, -1.3789062, -1.2236328, 0.9379883, -0.9790039, 2.6640625, -0.046844482, 0.7553711, 0.4309082, 0.61572266, 0.6088867, -0.45483398, 1.3466797, 0.60791016, 0.42138672, -0.75146484, -0.7705078, -1.1210938, -0.7402344, 0.09460449, 2.5585938, -2.1601562, -1.9550781, 0.47338867, -0.72265625, -0.8417969, -1.5302734, 0.9321289, 2.0058594, 0.4099121, 2.2578125, -0.6801758, -0.62890625, 2.703125, 1.2382812, -2.2128906, -1.0087891, 0.36694336, -1.0849609, 0.23791504, -0.52685547, -3.5585938, 0.67333984, -0.055480957, -0.7055664, 1.4208984, -2.4648438, -0.6064453, 1.1123047, -2.6328125, -0.00040960312, 0.42895508, -2.40625, 0.7607422, -1.0878906, 1.1699219, -0.34106445, 2.5957031, 3.53125, -0.8725586, -0.2861328, 0.69873047, -1.2978516, 1.3242188, 0.3869629, -1.4599609, -4.6796875, -2.2539062, 1.6416016, 2.5644531, 2.6289062, -0.075927734, 0.42529297, -1.3867188, 0.27270508, -2.5351562, 3.3984375, -1.4355469, 0.8149414, 3.0371094, -1.0117188, -0.91845703, -1.8320312, 1.8759766, 1.5009766, 2.9980469, 1.5927734, -0.1048584, -1.3613281, -0.82373047, -1.8955078, -5.5859375, -1.75, -0.50439453, 0.5332031, 1.0400391, 0.8828125, -1.4980469, -0.45458984, -0.02041626, 1.7988281, -0.5185547, -0.90966797, 0.17456055, -0.027511597, -1.3330078, -0.50927734, -0.51220703, 2.4511719, 2.4609375, 1.5058594, -1.3916016, -2.6347656, -0.20141602, 0.8378906, -3.2050781, -1.0673828, 0.11730957, -0.5205078, -0.055419922, 0.6098633, 1.5771484, -0.060150146, 2.0175781, -1.2998047, -0.058013916, 0.06488037, 0.19787598, 1.7480469, -1.6083984, -1.5195312, 1.7158203, -3.4257812, 1.9541016, 1.3134766, 1.1005859, 1.0771484, 0.9609375, -1.2158203, 0.6821289, 0.38623047, 0.51464844, 0.95214844, -0.0158844, 1.0332031, -0.3786621, -2.9433594, -2.65625, 0.53759766, -1.2597656, -1.1669922, -2.8046875, 1.0097656, 1.5976562, 0.56347656, 1.5078125, 0.8833008, 0.359375, -1.6513672, 1.03125, 0.89453125, 2.3085938, 1.9804688, -1.8095703, -1.1933594, -1.6982422, -0.32617188, 0.12683105, -1.1357422, -0.17175293, 0.09893799, -1.7255859, -0.4013672, 0.7753906, 1.9960938, 2.5507812, 0.5493164, -0.31884766, 1.6855469, 1.390625, -1.2724609, -0.24609375, -0.06536865, 2.0214844, -0.51416016, 3.0605469, -1.6132812, -2.1425781, 1.3730469, -1.4785156, 2.5546875, -0.86816406, -2.5390625, -0.16467285, -1.1230469, 0.16455078, -2.9101562, -1.3710938, -1.3798828, 2.4453125, -0.023727417, -0.8574219, 1.6552734, 4.0703125, -1.7246094, 2.1464844, 2.0292969, 0.3557129, -0.08917236, 0.82714844, -1.875, 0.05255127, 0.59814453, -1.375, 1.3310547, -0.3330078, -0.3251953, 0.33935547, 4.0703125, 2.3085938, 2.375, 0.99365234, 1.1386719, 1.6914062, 2.6855469, 4.8125, -0.012786865, 0.33862305, 2.8378906, -2.4316406, 0.73828125, 4.34375, 2.3027344, -1.1630859, -1.03125, 0.73779297, 0.2133789, 0.17260742, -1.7158203, 0.82421875, 0.07421875, -3.1953125, 3.5039062, 0.67529297, 0.87353516, -0.4260254, 1.9794922, -1.2666016, -0.4099121, -1.8300781, -1.3945312, 2.4648438, -0.8276367, -0.73876953, -0.9785156, 1.7392578, 1.6367188, -3.3300781, 0.108947754, 1.5185547, -0.5708008, -1.6474609, 2.8613281, 2.2109375, 1.6201172, 0.2919922, 2.6308594, 1.9091797, 0.15368652, 2.2714844, 1.3886719, 1.6855469, -0.36401367, 2.5078125, -1.3144531, -3.359375, -2.5859375, 0.1459961, -1.8603516, -0.39404297, -0.20910645, 0.28881836, 1.4033203, 0.98828125, -2.5390625, 1.3222656, 2.0019531, 2.1621094, -1.0029297, 0.8540039, -1.5390625, -3.9238281, -2.5976562, -0.9482422, 0.9003906, 2.4082031, 1.7265625, 0.21765137, 2.2402344, 2.4570312, 1.7988281, -0.13330078, 0.92871094, -1.4589844, 0.3256836, -1.4580078, 1.5830078, -0.96484375, 1.1669922, -0.83251953, 0.9794922, 1.2841797, 0.7626953, 2.1269531, -1.1474609, 0.46020508, -1.3896484, -0.1928711, -0.36132812, -1.0283203, -2.3125, -0.19128418, 0.33764648, -1.5507812, 0.69091797, 1.2324219, 2.3632812, 0.3955078, 0.17504883, -0.55371094, -0.48168945, 1.4716797, 0.37768555, -0.6152344, -1.7480469, -0.043029785, 0.9145508, -0.15490723, -1.1777344, 0.04458618, 0.3857422, 0.3540039, 0.28295898, 2.1289062, -1.6523438, 0.91015625, 0.05078125, 0.36767578, -1.8017578, -2.3417969, -0.57470703, 0.101867676, 1.0693359, 3.625, 1.3261719, -2.7910156, -0.328125, 0.32592773, 0.19689941, -1.8554688, -1.2939453, 0.026855469, 4.2226562, 2.6328125, -0.74316406, -2.5351562, -3.0214844, 0.7426758, -0.23461914, 1.9560547, 1.1386719, -2.7402344, 0.16540527, -1.9501953, 2.6953125, -0.9404297, -1.2021484, 0.49194336, 0.8334961, -0.58691406, 0.9736328, 1.4521484, 2.9746094, -0.9736328, -0.61865234, 2.9609375, 1.4345703, 2.1875, 2.375, -1.2890625, 1.2958984, -3.53125, -0.4753418, -1.2666016, 1.3583984, -0.4951172, 0.9658203, 1.4453125, 0.4580078, 1.3925781, -2.3828125, -0.9448242]}, "B07RKYMBCN": {"id": "B07RKYMBCN", "original": "Brand: Kaluns\nName: Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories\nDescription: \"Easily Switch Wood Chips

          The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

          Premium Features

          Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

          Great Gift Idea

          Surprise your Friends and Family with a Kaluns\u00ae smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

          Warning:

          Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

          Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns\u2122 You made the right choice, don't hesitate, Click the 'Add to Cart' Button Now!

          \"\nFeatures: Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey\nDeluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust\u00a0 and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast.\nConvenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard.\nA New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.\n", "embedding": [-2.21875, 2.4609375, 2.2148438, -0.27954102, 0.90527344, -0.4892578, 1.6318359, -0.8354492, -0.81591797, 0.84472656, 0.2685547, -0.8774414, -0.37573242, -1.9902344, 0.48535156, -1.421875, -0.51708984, 0.7446289, 3.6035156, 0.18737793, 1.0996094, 0.14282227, 1.9814453, -0.74658203, 3.4082031, 0.22973633, 3.796875, -1.1464844, 2.3613281, -0.15991211, 0.7104492, -1.1962891, 0.79052734, 0.5834961, -0.90722656, 0.42456055, -0.18005371, -0.5629883, -0.44921875, 1.2412109, -0.28198242, -1.1845703, 0.7949219, 2.0351562, -2.6191406, -2.7402344, -0.56347656, -2.0117188, -2.21875, -0.22924805, -0.1986084, 1.6621094, -0.3515625, 1.0537109, -1.9833984, 4.0507812, 0.6972656, -1.9296875, 1.3710938, 0.10461426, -0.7475586, 0.44091797, -0.048095703, 2.2089844, -1.2685547, 0.07739258, -1.2705078, -0.59277344, 0.43432617, -0.07269287, 0.68408203, -1.1572266, -0.5283203, 0.98779297, -1.9003906, -1.3291016, -0.8701172, 1.6708984, -1.5087891, -0.038909912, -0.026428223, 2.5332031, -0.13671875, 0.19970703, -0.14855957, -1.2714844, -1.2548828, -0.21740723, -0.16589355, 0.6743164, 1.1796875, 1.7578125, -0.53466797, -5.2382812, 1.3466797, -2.3242188, -0.17944336, -0.27246094, -0.4375, -0.72216797, -1.3935547, 0.25512695, -0.8339844, -0.5263672, -1.3691406, -0.31713867, 0.35864258, 1.5322266, -2.2167969, 0.5385742, 0.03125, 1.0136719, 1.2636719, 1.2255859, 2.8671875, -0.04498291, -0.93896484, 0.46484375, 1.1582031, 0.7739258, 2.65625, -0.43652344, 0.6586914, -1.1191406, 0.84521484, -0.14782715, -1.6445312, 1.1669922, 4.90625, -0.6123047, 2.0976562, -1.3085938, 0.8305664, -0.33276367, -1.2675781, -1.6142578, -0.3203125, -0.47436523, -1.0820312, 0.36010742, -0.49267578, 2.9414062, 1.8447266, -1.3945312, -3.625, 0.26831055, -1.0078125, 0.6435547, -0.47460938, -1.8886719, 1.7490234, -1.9296875, 3.0078125, -0.95703125, 2.1445312, -0.96533203, 0.32788086, -2.5683594, 0.8984375, 1.0693359, 0.94677734, -1.4179688, -0.5029297, 1.9316406, -0.95703125, -3.7441406, -0.91259766, 0.015914917, -0.9243164, 2.3417969, 0.22277832, 0.16003418, 0.7734375, -0.18762207, 0.12573242, -2.7675781, 0.059417725, -0.06500244, 0.41015625, -0.2319336, 0.6948242, -1.6669922, 0.79541016, 0.3659668, -1.5146484, 0.5488281, 2.3339844, -0.6279297, -0.57714844, -0.77246094, -0.76416016, 2.3359375, -1.7089844, 1.5800781, -1.7373047, -2.0957031, -1.8583984, -1.5498047, 1.6503906, -0.4663086, -0.6479492, -0.32666016, -0.8833008, -1.0205078, -2.2207031, -1.5078125, -0.546875, -1.7441406, 2.0878906, 2.8066406, 1.2597656, -1.0576172, 0.44433594, 1.4169922, -1.9052734, -2.4316406, 0.6669922, -0.7167969, 2.0996094, 1.2617188, 0.76416016, -1.4951172, 0.028930664, 2.7519531, 2.0644531, 3.7265625, 1.1953125, 1.3769531, 0.10803223, 0.017822266, 0.5078125, -0.41015625, -0.54541016, 1.3183594, 0.6040039, 0.95654297, 1.3808594, -0.22009277, -1.4482422, -1.0117188, -0.26049805, -1.5683594, 0.46411133, -0.8144531, -1.3789062, -1.1005859, 0.8286133, 0.18359375, 0.2944336, -1.046875, -2.5761719, 2.1621094, 0.29833984, 1.0185547, -0.34204102, 2.1230469, -1.5224609, 0.23718262, 0.9584961, -0.99609375, 2.9609375, 1.4306641, 0.5151367, 1.6201172, -0.00042200089, -0.546875, 1.0087891, -0.72216797, -1.8583984, -0.25732422, 0.8588867, -0.5854492, 3.6640625, -1.5478516, 0.7651367, 0.09240723, -0.27392578, 1.8886719, 3.3496094, 0.60498047, -0.6166992, 2.6269531, 1.3564453, -3.3261719, -1.1142578, -1.1181641, 0.30395508, -0.296875, 1.7988281, 0.93408203, 5.1445312, -0.29956055, -1.2080078, 2.2226562, 0.3112793, -0.30126953, -0.84765625, -1.5283203, -1.1025391, -1.7304688, 0.09613037, 1.3017578, 0.8286133, -1.0908203, -1.9667969, -0.8588867, 2.1777344, 0.7832031, 0.49072266, 0.60058594, -0.68310547, -0.6435547, -0.24597168, 1.4775391, -2.1972656, -0.3359375, 1.4667969, -0.9067383, -0.5336914, -0.0569458, 0.7915039, 0.48266602, 0.047027588, -1.609375, 0.921875, 1.9873047, -1.6474609, 1.890625, -1.5527344, -0.089538574, 0.76464844, -0.94873047, 0.79833984, -0.8564453, -0.5366211, 0.4099121, -2.03125, -2.4316406, -0.8095703, -0.23205566, -0.13122559, -0.2783203, -1.8066406, 0.7651367, -1.0839844, -3.0449219, -0.6459961, -0.7348633, -0.9355469, 2.6171875, -1.6904297, 2.8378906, 2.2617188, -5.8125, -0.7480469, 1.7128906, 0.9692383, -0.46826172, -2.2246094, -0.7758789, 0.35327148, -0.16418457, -1.0820312, 0.46069336, 1.2451172, 1.2773438, 0.9169922, -1.9794922, 1.6445312, -2.7265625, 0.484375, -1.3466797, 1.1494141, 0.44067383, -3.0761719, 0.20495605, 0.42700195, 3.5136719, -0.5205078, -0.5151367, -1.4794922, -1.3574219, -1.3222656, 0.1574707, -2.2792969, -1.8310547, 0.12878418, -1.0419922, 0.3095703, -2.4746094, 0.10021973, -1.0058594, -1.7109375, -1.6699219, 3.8144531, -1.9619141, 2.421875, -2.1542969, 0.37548828, 0.32006836, -1.3623047, 0.43676758, -0.2097168, -0.45166016, -1.4130859, -0.68359375, -2.78125, 1.1572266, 2.484375, 0.39941406, 0.070373535, 2.0273438, 1.0634766, -0.56933594, -0.044311523, -0.52441406, 2.7597656, 0.5566406, -3.234375, 1.0244141, -0.8774414, -0.53515625, -2.5058594, 1.453125, 3.703125, 2.4570312, 2.1933594, -1.2988281, 0.8461914, 1.28125, 0.54003906, -0.4716797, -0.86621094, 0.87597656, 3.1523438, -1.2792969, -1.2041016, 1.4736328, -0.2705078, -2.3203125, -1.2070312, 3.453125, -0.4741211, 1.5117188, 1.8701172, 1.2587891, 1.2568359, -0.94433594, 1.578125, 0.56640625, -0.92578125, 1.1005859, -0.7109375, -0.9008789, 1.6396484, -0.54248047, 1.1289062, 1.2050781, 3.2265625, 1.9941406, 1.1162109, 0.08935547, -0.54296875, -1.0380859, 1.8310547, -0.96484375, 3.046875, -1.4560547, 1.0244141, -1.6796875, -0.5888672, 1.7880859, -2.9453125, 1.2988281, 2.1757812, -1.5449219, 0.2529297, -0.37451172, -0.59228516, -0.3942871, -2.6289062, 2.2578125, -1.9326172, -1.9160156, 0.46704102, -0.16027832, -2.7753906, -1.0742188, 2.2363281, -1.3994141, 1.21875, -1.2558594, 1.3623047, 0.022964478, -1.7402344, -0.2208252, 2.0195312, -1.2734375, 1.3623047, -0.3647461, -0.8701172, 2.5703125, -3.3320312, 2.2167969, 0.93847656, 1.4941406, 1.2900391, -0.62060547, 1.4833984, -0.57666016, 0.49560547, 1.8994141, -1.3730469, -0.90185547, -0.56347656, -2.1621094, 1.046875, 0.41748047, -1.6728516, -0.16308594, 1.71875, 2.1210938, 1.2197266, -1.2509766, 4.0273438, 0.38378906, -1.3183594, 2.2167969, -1.8964844, -0.66064453, -1.9970703, -3.0644531, 0.40112305, -1.4599609, -0.5864258, 3.4199219, 1.8046875, -0.093566895, 1.3232422, 1.7539062, -0.59033203, 1.0585938, -3.6367188, -0.6166992, 0.33032227, -1.6542969, 0.8027344, 1.1826172, -1.5087891, -1.6660156, -0.14282227, -0.35546875, 1.3173828, -0.010955811, -2.0800781, 0.50927734, -1.5605469, 0.8666992, -0.4946289, -1.4648438, 1.3027344, -1.0556641, -0.05908203, 0.2980957, 2.6445312, 1.5556641, 0.6074219, 0.46704102, 1.1542969, -0.10949707, -0.40039062, -2.0683594, -0.37890625, 2.2910156, -0.5732422, -1.4375, -1.8837891, -0.9453125, -0.3552246, -0.6020508, 0.65283203, -0.080078125, -0.9277344, 1.1806641, 1.0966797, 1.3388672, 1.9140625, -1.3251953, -0.045410156, -0.06970215, -0.24707031, -3.1367188, -1.2177734, 0.625, -0.64404297, -0.7783203, 0.27392578, -1.9199219, 2.5800781, 0.4501953, 0.25073242, 1.0800781, 1.0546875, 1.7832031, 2.5019531, 3.953125, -0.73828125, -0.1361084, 1.6699219, -1.0439453, 0.46948242, -0.72021484, 0.52001953, -0.54541016, 1.7265625, -0.3791504, -0.7705078, -0.043884277, 0.5439453, 3.734375, 1.5400391, -0.30444336, 2.0625, -3.1953125, 0.19213867, -1.3037109, -0.7973633, 0.8828125, 0.5888672, -0.8808594, 1.1083984, -1.3955078, -2.9785156, -0.15161133, -1.1484375, -0.04309082, 0.62890625, 0.78271484, 0.60791016, -0.8232422, 0.78759766, -0.68896484, 2.234375, -1.5146484, 2.1855469, 2.5800781, 0.30395508, -1.4785156, 2.2207031, 3.7890625, 2.53125, -2.5566406, 4.234375, 1.2587891, -2.0566406, -1.8876953, -0.49560547, -1.1484375, 0.59033203, -0.043945312, -2.6035156, -0.0048561096, -1.2226562, -2.0078125, -1.9560547, 0.7558594, -0.7529297, 2.1621094, -0.5698242, -3.5839844, 1.9082031, -1.8681641, -1.7519531, 0.008605957, -1.1152344, 0.09869385, -1.2597656, -0.5673828, 0.29174805, 0.31811523, 2.1191406, -2.2734375, -1.7138672, 0.9628906, -1.1464844, 0.49560547, -1.4179688, -1.7929688, -1.5537109, -1.5732422, 0.78222656, 1.7861328, 1.1132812, 0.21716309, 2.7226562, -1.0742188, 1.2089844, -3.046875, 0.6923828, -2.8789062, 0.5839844, -0.015541077, -3.9433594, 0.37158203, 0.60595703, 1.0410156, 1.3876953, 3.7773438, 0.30908203, -1.5839844, -0.96777344, 1.9306641, -3.6601562, -3.0527344, -2.4335938, -0.48779297, 2.4433594, 0.5498047, 1.4335938, -0.88671875, 1.7685547, -0.16552734, 0.07342529, -2.1679688, 0.3046875, 0.5336914, -1.0322266, -1.5214844, 1.6455078, -0.41479492, -1.3613281, 2.5429688, 1.484375, -0.07550049, -2.8515625, 0.15917969, 1.6972656, -0.6738281, -1.6777344, 0.34521484, 1.1650391, 1.0283203, -1.4394531, 1.1328125, -1.7041016, 1.9160156, -3.4199219, -1.5302734, -0.6875, -0.5571289, 0.92871094, -0.09637451, -2.5078125, 1.296875, -1.515625, 1.6318359, -0.7636719, -0.019210815, 0.42016602, -0.5991211, 0.3203125, -1.2480469, -0.07373047, 0.08770752, -0.19885254, 0.19689941, 0.9082031, -0.9008789, -3.1484375, -2.8046875, -0.101379395, -0.27514648, -0.06161499, -2.3964844, 0.8886719, -0.09185791, -0.8642578, 1.6201172, 1.5351562, -1.4306641, -0.08532715, 2.0429688, -1.2558594, 1.8359375, 1.5742188, -1.8720703, -0.7705078, -2.0546875, -0.73535156, -0.33618164, -2.9316406, -0.25756836, 0.26611328, 1.9345703, 1.6416016, 1.6347656, 2.3828125, 2.3808594, 0.8120117, -0.35742188, 1.9345703, 2.3339844, -0.5703125, 3.2402344, 0.8413086, 0.88720703, -2.0351562, 0.9135742, -3.9960938, -0.18920898, 1.6425781, -0.91259766, -0.2866211, 2.6855469, -2.0410156, 0.92089844, 0.017562866, -2.375, -1.2490234, 1.5869141, 0.36669922, 0.85791016, 0.19995117, -0.75390625, 0.5966797, 1.9492188, 0.79833984, 1.0107422, 3.2734375, 0.39746094, -1.4667969, -1.3017578, -1.7539062, 0.9213867, 0.40893555, -1.1611328, -0.25878906, 0.06518555, 0.40844727, -1.7929688, 3.9414062, 0.02130127, 0.9506836, -0.059295654, 0.64453125, -0.6616211, 2.4414062, 2.9902344, -0.08380127, -0.31860352, 3.0566406, -1.4072266, 1.1699219, 2.1640625, 2.1738281, 1.4384766, 0.84228516, 1.8310547, 0.23095703, 1.5126953, -1.0712891, 0.08947754, -1.1279297, -2.2558594, 3, -0.12145996, -1.4882812, -1.78125, -0.92822266, -1.5458984, -0.21508789, -0.46020508, -0.9692383, 2.390625, -1.4912109, 0.9301758, -0.32104492, 0.8178711, 0.609375, -4.3164062, -0.07611084, 0.24841309, -0.56396484, -0.6381836, 1.7529297, 1.3017578, 2.1269531, -1.1494141, 1.0986328, 1.4667969, 0.47314453, 2.25, -0.92529297, 0.046936035, 0.6254883, 1.1152344, -1.9248047, -2.0664062, -0.28637695, 0.66064453, -2.5683594, -2.5273438, -0.8071289, 1.2080078, 3.625, 1.1972656, -3.9746094, -0.5683594, -1.2275391, -0.3244629, -1.6337891, -0.055236816, -0.46728516, -0.23046875, -1.8935547, 0.9248047, 2.0507812, 2.0039062, 1.6796875, -0.09075928, 1.5878906, 2.1464844, 2.0136719, 1.4423828, 2.5859375, -0.84277344, 0.56689453, -1.1777344, 4.0976562, -0.765625, 2.0566406, -1.4101562, 1.9248047, 0.91308594, 1.8603516, 1.2900391, 1.5625, -0.036376953, 0.22839355, 0.79248047, -0.3425293, 0.33691406, -2.3554688, -2.6269531, -1.5869141, 0.05621338, 0.43603516, 2.7695312, 1.0996094, 0.1348877, 0.12060547, -1.6484375, -2.0136719, 0.5444336, -1.5742188, -1.1318359, -1.2871094, -0.21826172, 1.4101562, -1.0927734, -3.4296875, 0.33666992, 1.8925781, 0.43481445, -0.31811523, 1.7763672, 0.33984375, 1.1367188, -0.17700195, -0.24072266, -0.8027344, -2.7402344, 1.9326172, -1.8876953, 0.10998535, 0.67041016, 1.2539062, -1.3085938, 0.8286133, -1.1474609, 1.0449219, -0.39770508, -2.1445312, 0.65966797, 2.1210938, -0.30517578, 0.06347656, -1.2402344, -3.9414062, 0.6738281, -3.2148438, 1.4404297, -0.7158203, -1.9707031, -0.34936523, 1.3261719, 2.0195312, 2.1191406, -2.2402344, 0.31103516, -0.69921875, -0.50390625, -0.7270508, 0.8540039, 1.9873047, 0.4794922, 0.05026245, 1.1621094, 0.89697266, 0.39282227, 0.75341797, 2.1308594, 0.6279297, -2.546875, -0.85498047, -0.24084473, 1.9150391, -0.5366211, -2.5371094, -0.6713867, -0.45581055, -1.5751953, -2.1015625, -2.1777344]}, "B00FLRBXEO": {"id": "B00FLRBXEO", "original": "Brand: Weber\nName: Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart\nDescription: \nFeatures: Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut\nGenuine Weber part for Genesis 300-series gas grills\nRegulates liquid propane flow for consistent, uniform heat distribution\n2-year limited warranty\n", "embedding": [-1.0078125, 0.6303711, 0.20898438, -0.010421753, -2.5273438, -0.5263672, 0.29711914, -1.6972656, 1.4335938, -0.96533203, 1.4658203, -1.8222656, 0.4621582, -3.7949219, 1.8466797, -0.4580078, 2.9257812, 0.44750977, -0.18115234, 1.2050781, 0.49926758, -1.2451172, 1.8671875, -0.11968994, 1.6201172, 1.453125, 4.40625, -4.765625, -0.30859375, -0.31884766, 1.6367188, 1.0273438, 0.7788086, 2.1289062, -2.1308594, -1.2675781, -1.1494141, 2.3476562, -1.8789062, 0.5371094, -1.2910156, 1.6796875, 1.3359375, 0.2607422, -0.9370117, 1.9824219, 0.75390625, 2.0292969, -0.89746094, -1.1923828, 2.8476562, 1.1699219, -0.5205078, -0.0028266907, -0.45507812, 1.6757812, -1.703125, -1.0527344, 1.0732422, 0.28222656, 2.6953125, -1.765625, -2.6503906, -1.4511719, -0.92089844, 0.6142578, 0.63378906, 0.9423828, -0.009933472, 0.5683594, 2.2734375, 0.7163086, -2.2558594, 0.06414795, -1.3408203, -0.10272217, -2.8515625, -0.060516357, 0.5024414, -2.4023438, -1.7978516, 3.3398438, 1.0117188, -4.0625, 0.18286133, 0.07348633, 0.42797852, -2.0527344, 1.3505859, 0.3779297, -2.8476562, 0.7578125, -1.8007812, -2.8652344, 0.41088867, 0.09448242, -0.74609375, 1.1386719, 0.9472656, 0.9301758, -2.546875, -0.05218506, 0.36572266, 1.4853516, -2.7285156, -2.453125, -0.2619629, -0.1842041, -2.0019531, -0.24499512, -1.7978516, -0.2836914, 0.7265625, 1.9082031, 1.0917969, -1.7509766, 0.18054199, 1.2216797, 0.38061523, 1.4628906, 2.8964844, -0.1665039, -0.066467285, -0.8725586, -1.0214844, -1.1142578, -0.4794922, 0.34814453, 2.4296875, -3.390625, 1.0517578, -0.5419922, 3.9707031, 1.8564453, 1.7167969, -3.03125, -1.1513672, -1.2646484, -1.9228516, 0.62353516, -1.6318359, 0.27172852, 1.4960938, -0.008010864, -3.96875, 0.8876953, -1.4492188, 0.13452148, 1.2978516, -1.7724609, 0.9248047, -1.1816406, -0.039733887, -1.0869141, 1.7939453, -0.5517578, 0.13317871, 0.21179199, 1.7939453, 2.5683594, 1.6650391, -0.08380127, -1.09375, -1.5615234, 0.3227539, 0.04827881, 0.47314453, 1.3427734, -2.2441406, 2.0429688, -1.0878906, -2.0644531, -0.7998047, 0.6357422, 1.7949219, -1.4375, 0.08795166, 1.6279297, 0.41015625, 2.1074219, -1.4804688, -2.7871094, -0.070373535, -3.2070312, 0.98779297, 0.18847656, -0.13745117, -0.3137207, 2.4101562, -0.4892578, -0.9448242, 0.13793945, 0.52783203, 0.31445312, 0.6611328, -0.44848633, -2.5117188, -0.33911133, 0.2866211, -1.6953125, -2.4746094, -1.2568359, 3.2207031, 2, -1.5986328, -2.2988281, 0.64697266, -0.7788086, -0.46704102, 1.0371094, 0.89208984, -0.5341797, 0.6118164, 0.23254395, -0.10876465, -0.31811523, 3.4609375, 1.0175781, 1.6347656, 0.008430481, -1.0039062, 0.081604004, 0.15014648, -0.26098633, 1.5654297, 0.23205566, 0.2487793, 0.34350586, -3.1464844, -2.2773438, 1.3681641, 0.8144531, 0.7680664, 0.1665039, 0.5644531, 2.2285156, 1.6884766, -0.6953125, 1.9306641, 0.91015625, 0.089782715, 0.24682617, -4.2382812, -1.4423828, -0.4230957, 0.95654297, -1.7324219, 2.9550781, 0.46972656, 0.3840332, 1.5136719, 0.019744873, -0.51220703, -1.7089844, -0.56591797, -0.3491211, -1.2197266, 2.6796875, 0.6074219, -2.53125, 1.4628906, 0.5932617, 0.11468506, 0.9682617, 2.2910156, -1.3212891, 0.17553711, -1.0205078, 1.0527344, -1.4472656, -0.52246094, 1.8320312, 1.046875, -1.4492188, 2.7265625, 2.5175781, -0.97753906, 1.4658203, 0.43310547, -0.75683594, 0.25390625, -1.0683594, 1.2636719, -2.0488281, 0.5649414, 0.041931152, 0.05731201, -0.95947266, -2.5234375, 0.18933105, 2.4511719, -0.52441406, -2.7050781, 2.4335938, 0.26220703, 1.3261719, 2.3300781, 0.05218506, -0.86572266, 1.7255859, 1.0341797, 0.20324707, -1.2255859, 1.390625, 1.9853516, 1.6259766, 0.5576172, -3.8085938, -0.15649414, 1.8056641, -2.484375, -2.2539062, -0.8076172, 1.5332031, -2.8535156, -0.53271484, -0.9355469, -3.8984375, -0.82714844, -1.7089844, 1.8681641, 0.011199951, -0.38793945, -1.9775391, -0.73876953, 2.2363281, -1.1943359, 0.1060791, 1.4189453, -1.1230469, 2.1015625, -0.96875, -0.16577148, -2.515625, -1.8349609, -1.5742188, 0.5048828, -4.0273438, 2.1484375, -0.30297852, -0.25097656, -0.5473633, -0.2064209, 2.59375, 2.4179688, -1.5761719, -2.0820312, -0.43920898, -1.5039062, -0.32739258, 0.17333984, 2.6933594, -0.4194336, -1.6357422, 0.20251465, -0.7890625, 2.1816406, -0.25610352, 0.8515625, -0.2076416, 3.8554688, 0.3647461, -0.9746094, 1.6132812, 2.2558594, 0.2368164, 2.4765625, -1.9863281, 0.20812988, -1.4902344, 1.7841797, 0.6816406, 0.89941406, -4.171875, -1.3486328, 1.609375, -2.8984375, 3.3652344, -1.0839844, 2.65625, -0.79345703, 1.0458984, 1.5449219, -3.7597656, -1.2246094, 0.6411133, 0.8183594, -0.80859375, 1.3291016, -0.38623047, -1.8115234, -1.2929688, 1.1591797, 0.52441406, -3.515625, -2.125, -0.78125, -0.3474121, -1.1191406, -0.22009277, 0.27124023, -0.5649414, -3.0507812, -0.08099365, -1.1875, -2.5976562, -0.33618164, -1.2480469, 0.89160156, -0.58251953, -1.1621094, 0.9736328, -0.041503906, 2.1191406, 0.1616211, -4.0898438, 2.1855469, 0.2939453, -2.8007812, 1.3867188, -1.4472656, -0.9995117, -2.5488281, -1.0146484, 1.4863281, 0.96728516, -0.14904785, 1.6826172, 2.4628906, -0.018753052, -0.81591797, 0.23486328, -2.0683594, 0.54589844, 2.6777344, -2.71875, -2.0664062, 0.31420898, -1.9550781, -3.4042969, -0.66845703, 2.5644531, 1.203125, 1.7285156, 1.0361328, 1.8007812, 1.1933594, 0.011024475, 1.7275391, 0.22375488, -0.8256836, -1.1972656, 2.0722656, 0.3972168, -0.7138672, 3.1699219, 0.38598633, 1.8535156, 2.6679688, -1.3378906, 0.22094727, 0.7128906, -0.04916382, -0.00308609, 2.2011719, 0.26391602, 1.5771484, -1.0839844, -1.265625, 2.6035156, -2.4921875, 2.4472656, -1.2197266, -2.4609375, 3.1113281, 0.060516357, -1.8017578, -0.12634277, 0.23010254, -0.2709961, 0.70458984, -1.6972656, -0.67822266, 0.16101074, 2.0585938, -2.1347656, 0.9394531, -0.8881836, 1.0009766, -0.78466797, -1.8154297, 0.5390625, 1.9082031, -2.1933594, -1.0097656, 1.1738281, -2.96875, -0.7207031, 2.984375, 1.5195312, -2.84375, 1.3232422, -2.1191406, 1.6513672, 1.0136719, -0.578125, -1.1132812, 0.13549805, -1.1826172, 0.92089844, 1.3896484, 2.1425781, 0.13806152, -1.0263672, 0.8901367, -2.1972656, -2.4199219, 0.75683594, -0.8461914, -0.68066406, 0.20458984, 0.23583984, -0.5961914, 0.117614746, 3.8222656, -0.62841797, 0.6455078, 2.640625, -2.2988281, 0.6582031, -3.1816406, -2.7285156, -0.8823242, -3.28125, 1.4111328, 0.38134766, 1.9130859, 0.18334961, 3.5976562, 2.4511719, -1.3447266, -0.045928955, -0.8203125, -0.46118164, -0.6015625, 1.7363281, 0.42382812, -0.39916992, -0.09527588, -2.7636719, 0.09790039, -3.4042969, -0.31469727, 0.40795898, -3.890625, -0.8364258, -0.4338379, 0.48168945, -1.7207031, 0.059539795, 2.2324219, -0.14990234, 0.4975586, -2.9570312, 1.5947266, 0.8730469, 0.6088867, -1.0322266, 2.875, 0.5419922, -1.4443359, 1.9072266, 0.39038086, 4.1679688, -0.5341797, -2.7792969, -0.13708496, 1.1542969, -0.30126953, -2.1855469, 0.33447266, 0.22229004, -0.95751953, 0.69628906, -0.31689453, 2.9472656, 1.6435547, -0.5053711, -1.8964844, 0.11584473, -0.53222656, -0.4880371, -1.3710938, -0.87890625, 0.29248047, -0.71191406, 0.038146973, -2.4140625, 3.2070312, -1.9306641, 0.09307861, -3.8535156, 1.1054688, 0.20739746, 0.32495117, 0.9707031, -3.0859375, 2.5253906, -1.3554688, -1.8300781, -0.3293457, 0.8754883, -2.0234375, -0.5932617, 3.6191406, 1.8925781, -0.91845703, 0.06890869, -0.6201172, -0.91015625, -1.265625, -0.9482422, 1.4990234, 1.5371094, -0.3798828, 0.44970703, -1.7011719, 2.9394531, 1.4042969, -0.53222656, 2.6914062, -0.6298828, -2.1445312, 1.8798828, 2.328125, 1.7070312, 0.014801025, 1.0634766, 3.0664062, 1.0791016, 0.09106445, 0.8203125, 0.09210205, -0.6298828, -0.27856445, 0.7871094, 1.7050781, -2.4160156, -0.26367188, 1.0947266, 1.4990234, 2.1035156, 1.5878906, 0.98095703, -3.1640625, 1.7578125, 0.83447266, -2.1035156, 1.7597656, -0.7241211, -0.9140625, 3.8613281, 0.7285156, -3.2148438, 0.2902832, 1.8173828, 0.1661377, 2.0175781, -0.5727539, 0.8691406, 2.0410156, -1.2490234, -0.8569336, 0.066223145, -0.78466797, 2.2988281, -1.671875, 1.6835938, -1.5146484, 1.7802734, 1.7275391, -0.09185791, -2.4179688, -0.47045898, -2.8476562, -1.0839844, -1.8369141, -1.7392578, -2.1738281, -0.6508789, 1.6679688, 2.7597656, 1.4042969, 0.19335938, 1.5185547, -1.1259766, -0.15454102, -1.2431641, 0.81933594, -0.63623047, -0.5419922, 0.9536133, -1.796875, -0.66503906, -1.8369141, -1.2431641, -0.11651611, 0.15893555, 1.0117188, 1.1474609, -0.8496094, -0.48266602, -1.578125, -2.0488281, -0.5258789, -0.059936523, 1.2138672, 0.38208008, -0.29370117, -0.49389648, 0.35839844, -0.6972656, -1.1259766, -1.453125, -0.6894531, 0.21325684, -0.37768555, -0.82666016, -0.95410156, -2.1933594, 1.8457031, 0.02671814, 2.0292969, 0.3623047, -0.91503906, -0.6513672, 0.23266602, -1.21875, 0.19335938, 2.3945312, -0.0126571655, -0.7314453, 1.3349609, 0.042388916, -1.6923828, 1.9082031, -2.5566406, -1.09375, 1.4892578, -2.1152344, 3.5195312, 0.08660889, 0.123168945, -0.28564453, 0.49609375, 2.5605469, 2.171875, -1.0878906, 2.0800781, 1.765625, 1.0888672, -2.8398438, -0.15039062, 0.3630371, 1.3027344, 0.96875, -1.8466797, -0.7163086, -2.0898438, -2.1894531, 3.2265625, -3.5820312, -0.37841797, 1.3779297, 1.0058594, 2.2792969, 0.4819336, -0.78271484, 1.7402344, 1.9404297, 0.3190918, -0.12854004, -1.0693359, 2.734375, 3.109375, -1.3457031, -1.7763672, 0.62841797, 1.7070312, 3.8144531, 1.5888672, -0.31591797, 0.24316406, -2.2929688, -0.7446289, -0.85595703, 1.4960938, -0.23571777, 0.7006836, 0.56591797, -0.48266602, 2.7988281, -1.8642578, 1.1425781, 1.4003906, -1.296875, -0.98876953, 3.5136719, 1.3085938, -3.3886719, -0.33691406, -2.4140625, 1.7578125, -0.8222656, 0.15625, 0.45214844, -0.41455078, -0.15637207, -1.265625, -2.5898438, -3.8242188, 0.4584961, 0.15710449, -2.7871094, -0.23217773, 0.92333984, -0.21875, 2.8105469, 0.73876953, 0.6279297, -0.95654297, -0.7963867, -2.6972656, 0.44140625, 0.43945312, -3.8535156, 0.19128418, 3.6308594, -0.33447266, 0.23913574, -1.5732422, 0.77783203, 2.78125, -0.30029297, 2.9628906, 1.9707031, 0.85791016, 2.125, 2.2460938, 3.4726562, 0.27807617, -1.8222656, 0.94677734, 2.1054688, 0.6098633, 1.1601562, 0.097717285, 0.4230957, -1.2216797, 1.5927734, -0.75927734, 1.0361328, 0.2915039, -1.6445312, -2.2324219, -0.56396484, 2.3574219, -2.5976562, -0.55908203, -1.2304688, 0.064208984, 1.1181641, 0.3088379, 0.92822266, 2.3789062, -0.23950195, -0.6772461, -0.3095703, 4.671875, -2.1660156, 0.00617218, -0.2331543, -2.0898438, -1.0332031, -1.3076172, 2.0527344, 0.3491211, 1.0429688, 0.65283203, 1.9404297, 1.4423828, 0.44970703, -2.0664062, 0.5419922, -0.2565918, 1.7167969, 2.4453125, -0.9682617, 0.074157715, -0.7504883, -2.9863281, -2.4316406, 2.7265625, 1.1132812, 0.7573242, 0.8232422, -3.8164062, 2.03125, -0.13293457, 1.7900391, -0.9111328, -0.39770508, -0.5209961, -3.4609375, -0.42260742, 0.13842773, -2.8359375, 1.3642578, 2.1503906, -1.0195312, 0.89746094, 2.2734375, 1.0791016, -0.6513672, 0.5595703, 0.97021484, 0.9448242, -0.9448242, 3.09375, -0.4189453, -1.1289062, -0.014671326, 1.8740234, -0.19250488, 1.2744141, -0.8496094, 0.11968994, -0.5410156, 1.6425781, -0.5385742, 1.3232422, -2.7304688, -1.3378906, 1.1591797, 1.4658203, -2.578125, -0.83154297, 2.3847656, 2.6269531, -1.2011719, 1.1425781, 1.9814453, -1.0996094, 2.75, -0.5932617, -1.3125, -0.5371094, 0.4152832, -0.5058594, -0.8876953, -0.18530273, 2.3476562, 0.32885742, -1.7460938, -2.0253906, -1.4931641, 0.63134766, -0.30541992, -1.2363281, -1.3574219, -1.0908203, -1.8496094, 0.66748047, -0.6791992, -0.3059082, 2.2109375, 0.92041016, 0.7026367, -3.2578125, -2.4648438, -1.5292969, -1.6357422, -0.9086914, 1.5585938, 2.6855469, 1.0888672, -0.15649414, -1.3427734, -1.7314453, -1.1474609, -1.0097656, 1.9326172, -1.2910156, -2.8144531, -0.6821289, 1.8652344, 1.6396484, -0.32641602, 1.0097656, -1.6132812, -0.53808594, 1.7421875, -1.3007812, -0.38989258, -1.5341797, 0.09442139, 2.8085938, 3.65625, 0.2590332, 1.2324219, -1.1259766, 1.4228516, 1.6738281, -0.73339844, -0.5024414, 1.4277344, 0.7788086, -0.18786621, 0.36206055, 2.3984375, 0.96484375, -0.90625, 0.35595703, 0.42797852]}, "B000BRJOV8": {"id": "B000BRJOV8", "original": "Brand: ADCO\nName: ADCO 2111 White RV Propane Tank Cover, Single 20\nDescription: \nFeatures: ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank )\nProtect propane bottles while in storage with this deluxe heavy-duty vinyl cover\nVelcro closure at top, elasticized bottom for a neat tailored fit\nSingle tank cover, fits 20 pounds ( 5 Gallon tank )\nPolar White\n", "embedding": [1.9072266, 0.81640625, 2.5664062, -0.44067383, -0.090026855, -0.84765625, 0.7685547, -0.23840332, 1.2919922, 2.6503906, 1.2285156, 0.79003906, 0.03250122, -3.4589844, 0.9296875, 0.093322754, 0.35742188, 1.5488281, 2.9824219, 0.28149414, 3.265625, 1.3251953, -1.1269531, 0.6850586, 0.7348633, -0.43920898, 2.4023438, -1.1533203, -2.0234375, 0.43676758, -1.0478516, -0.16027832, -0.43041992, 1.2333984, 0.6640625, -1.3027344, -0.84765625, -0.4169922, -2.6386719, -0.37109375, -3.1074219, -0.039031982, 1.7050781, 1.8789062, -0.84765625, -2.5273438, -0.97314453, -3.1230469, 0.7392578, -0.33642578, 0.15588379, 2.1503906, 2.578125, 0.18737793, -0.88720703, 0.24523926, 0.3581543, -1.4082031, -0.33569336, 1.9169922, -2.2929688, -0.9838867, -2.0761719, 1.6494141, -1.0595703, 1.9414062, -1.2128906, -0.2130127, -0.18457031, 2.0390625, 2.4902344, 2.28125, -0.2512207, -1.8544922, -0.3178711, 0.5263672, -2.4511719, 1.2265625, 2.1894531, -1.6914062, 0.8486328, 1.9326172, -2.40625, -1.2578125, -0.19885254, -0.5058594, -0.6582031, -0.23498535, -0.6376953, -1.5332031, -0.68066406, 0.98291016, -2.0605469, -2.7480469, -2.359375, 0.33203125, 1.1445312, 2.1210938, 1.5175781, 1.5693359, 0.42358398, 0.2915039, -0.8276367, -0.7558594, -2.5488281, -1.2548828, 1.4960938, -3.1933594, -1.2871094, 0.37109375, -0.26489258, -0.9794922, 1.3623047, -1.6621094, -0.049987793, -0.12213135, 1.2304688, 0.54052734, 1.4863281, -0.12548828, 1.9736328, -1.0478516, 1.4863281, -0.0059280396, 2.5898438, 1.1181641, -0.9848633, 0.24475098, 1.2802734, -0.28710938, -0.1496582, 0.45947266, -0.5058594, -0.8310547, 0.44799805, -0.13476562, -1.3027344, -1.2226562, -2.0117188, -0.045837402, -3.109375, -1.3544922, 0.5024414, 1.2167969, -2.7011719, -1.1445312, -1.671875, 1.9287109, -1.0439453, -0.83740234, 0.95654297, -3.2597656, -0.38330078, -0.5493164, -0.31201172, 0.95458984, 0.37182617, -4.0546875, 1.5791016, 2.2617188, 1.9697266, -1.5869141, 0.38745117, 1.4277344, 0.3696289, -2.2011719, 1.0703125, -0.16003418, -1.8964844, 0.18225098, -1.0566406, -1.9658203, 2.1972656, 0.8671875, -1.0068359, 0.0009965897, 0.98535156, 0.1239624, 0.44067383, 0.96728516, -4.7617188, 0.84375, -0.5336914, -1.1035156, 1.1416016, 0.020263672, -1.515625, -2.9433594, -0.65478516, -0.6166992, -2.9414062, 1.7910156, -1.3828125, -0.1895752, -1.6875, -2.5527344, -3.2695312, -1.734375, 1.5322266, 1.6884766, -1.2802734, -0.7392578, -1.5634766, 1.2617188, -1.1240234, -0.9111328, 1.0058594, 0.5546875, 0.08538818, 0.47729492, 0.13549805, 0.062927246, 4.4492188, -1.7802734, -1.9677734, -0.75, 1.5703125, 0.20263672, 1.2675781, 1.5126953, 0.58691406, 2.0664062, 0.060058594, 2.2558594, 0.28979492, 2.703125, 2.4628906, 1.5048828, -2.4785156, 0.19519043, 0.39501953, 1.1494141, -2.4472656, 0.3071289, -0.60595703, 0.19274902, -0.46362305, -1.3505859, 0.0066375732, -1.4365234, 0.9584961, -0.13024902, -1.3789062, -0.21032715, 1.8037109, 2.1816406, -1.859375, 1.0429688, 1.8046875, -0.028503418, 0.6879883, -1.4902344, -0.101257324, -2.1582031, -0.74658203, 1.8154297, 0.01739502, 0.24572754, 1.0175781, -3.4160156, 0.11071777, 1.4091797, -1.4638672, -1.6943359, -0.7451172, 0.82666016, 0.61328125, -1.0507812, -1.6376953, 0.7163086, 0.54296875, 1.5556641, 0.24389648, -0.38452148, 0.4543457, 0.9638672, -1.2568359, 1.1113281, 0.09033203, 2.8925781, 3.34375, 0.66064453, 3.0722656, -2.3222656, 0.7373047, 1.8427734, 2.6582031, 0.5410156, -1.9453125, 1.3251953, 1.8134766, 0.3918457, -2.3671875, 4.1640625, 1.7929688, 1.6035156, 2.1054688, -1.2226562, -2.6601562, 0.36743164, -2.5175781, -0.74316406, -0.98291016, 0.35546875, 0.076660156, -0.85546875, -0.5522461, -0.80029297, 0.9536133, 0.47045898, 0.51904297, -2.5507812, -2.3691406, -1.3789062, -1.2285156, 0.40942383, 3.9609375, -1.9082031, 0.32836914, 1.8671875, 0.14440918, 1.0546875, -0.6953125, -0.42822266, 1.0449219, 0.010406494, -2.2851562, 1.1298828, 0.40039062, -0.6748047, 1.1533203, -1.2363281, 3.5644531, -2.0019531, 1.0302734, 0.77490234, -0.6503906, -0.58203125, 0.2286377, -1.8544922, 1.9179688, -0.7680664, -1.1132812, 4.6210938, 1.9716797, -0.30126953, -0.6977539, 2.2109375, -1.0478516, -1.0341797, 0.2680664, 1.5029297, -0.82128906, -2.8398438, 0.5493164, 1.0058594, -2.0644531, 1.1699219, -1.4873047, -0.3623047, 0.83154297, 1.296875, 1.7792969, -1.1884766, -2.0996094, -0.21789551, 1.5253906, -4.5, 1.9960938, -2.4726562, 1.0869141, -2.78125, 1.0488281, -1.75, -1.8466797, 3.1503906, -2.1113281, 4.21875, 1.7597656, 0.6621094, 0.87646484, -2.4394531, 0.36914062, -1.2880859, -3.1113281, 0.68310547, -1.5078125, -1.8789062, -0.6503906, -4.203125, -0.7441406, -1.3164062, 0.10858154, 0.11224365, -2.125, -0.41064453, -1.8867188, -0.74316406, -0.2763672, 0.47802734, 2.5742188, -1.6494141, -1.0517578, 0.2331543, -0.42382812, -0.38085938, -0.40722656, -1.0019531, 1.8115234, 1.1445312, -0.13085938, 1.1279297, -1.0117188, 1.6240234, 0.14221191, -4.1289062, 0.61572266, 2.6738281, 2.7910156, 2.1347656, -1.6074219, -1.1835938, -1.0117188, -0.2956543, 2.390625, 3.3574219, 2.4238281, 2.03125, 0.057434082, 1.3515625, 0.7416992, 0.34155273, 0.0871582, -0.66064453, 2.1875, -0.34448242, -0.051513672, 0.1776123, 2.2519531, -1.6777344, -1.5283203, 0.011627197, -2.2792969, 3.6660156, 2.078125, -1.9492188, 0.13708496, 0.20117188, 2.71875, -0.8647461, 1.6748047, 1.6660156, 0.9086914, 2.3789062, 1.7470703, -0.91259766, 1.2890625, 0.7036133, -1.1806641, 0.80859375, 1.5878906, -1.2529297, -0.34716797, 1.1005859, -2.8222656, 0.04788208, 1.9345703, -0.45214844, 3.0429688, 1.6962891, 1.6962891, -1.7988281, -0.99365234, 1.4707031, 1.0322266, 1.7626953, 0.045806885, 0.0087509155, -1.0976562, 0.19482422, -1.0087891, 2.1425781, -0.5336914, 0.5263672, 0.32714844, -1.0703125, 0.33032227, -2.2890625, 2.625, 0.2758789, 0.5390625, -0.9790039, 2.2890625, -2.8183594, -3.3183594, -0.26391602, 0.84228516, -3.421875, 3.6269531, 2.6601562, -0.6220703, -0.18029785, -2.3300781, 1.8447266, 2.3847656, -1.4306641, -0.03994751, -1.8164062, 1.0283203, -1.6113281, 1.3457031, 1.4199219, 4.2109375, -2.6660156, -1.1630859, 0.32617188, 1.4208984, -0.95410156, 1.0859375, 0.4465332, -0.3330078, -1.4501953, 1.9580078, -0.2993164, 2.9902344, -0.38305664, 0.62646484, 1.6845703, 0.40820312, 1.8652344, 0.32373047, -2.6601562, 0.41479492, -0.29077148, -0.6772461, 3.6738281, 0.90185547, 0.60791016, -0.034484863, -0.30981445, -2.7324219, -1.3623047, -1.7919922, 0.5605469, -1.5498047, -1.9296875, -0.115356445, 0.7890625, -1.9589844, -1.4882812, -0.52441406, -1.7734375, -0.92529297, -0.29101562, 1.0185547, 1.3447266, -1.625, 0.12597656, -1.2070312, 1.6318359, 0.27368164, 0.6201172, -1.3134766, -1.671875, 3.2480469, 0.5722656, 0.2208252, 1.5615234, 3.1230469, 1.6708984, -2.1679688, -1.3955078, -0.7416992, 1.8632812, -1.8115234, -4.5664062, -0.8598633, -1.375, -0.37719727, -0.094055176, 0.20922852, 1.3164062, 1.1455078, -0.76660156, 0.8120117, 1.0576172, 1.3886719, -2.6308594, -1.5908203, 2.2558594, 0.42993164, -1.9296875, 0.13916016, 0.3779297, 0.7207031, -1.0361328, -2.09375, -2.3730469, 0.89941406, -0.7265625, 1.4208984, -4.4453125, 1.6123047, 2.4003906, 1.8242188, 1.8447266, -2.0507812, -0.90771484, -0.3466797, 1.6494141, 2.109375, -1.3955078, -0.2536621, 1.1904297, -1.6005859, 0.8173828, -2.6425781, -1.3496094, -0.17797852, -0.97021484, 1.1113281, -0.8256836, 0.030029297, -1.1357422, -1.0195312, 0.5253906, -1.6376953, 4.3476562, -2.7988281, 2.1210938, 0.12976074, -0.6147461, -1.5263672, 4.203125, 0.28735352, 0.2788086, 0.91796875, -0.82910156, -0.12768555, 0.2841797, 1.4912109, 1.484375, 0.9472656, -0.81396484, -2.578125, 1.4541016, 0.9951172, 0.6220703, -0.97021484, 1.8037109, 2.3886719, -0.2697754, 0.08331299, 1.2597656, -0.63183594, 1.4794922, 0.3395996, 0.4128418, -1.3574219, -0.5395508, 1.7636719, 2.6972656, -2.7675781, -2.3046875, 1.9736328, 1.0507812, 0.00087690353, 1.3300781, 0.6694336, -2.1308594, -1.7050781, -3.1328125, -3.5820312, 0.27685547, 0.09094238, -1.9111328, -1.4140625, 0.91259766, 1.5869141, -0.10650635, 2.5683594, 0.09899902, -2.4960938, -0.8754883, 1.4716797, -2.8066406, -2.8847656, -2.2929688, -3.1640625, -0.35107422, -0.98095703, 0.48046875, -0.19152832, 3.5585938, 2.1113281, -2.4902344, -0.7006836, -0.9223633, 0.17822266, -2.3398438, -1.1279297, 2.3378906, 0.26953125, -0.7314453, -0.06173706, 0.08062744, -0.3071289, 2.6386719, 1.1601562, 1.2314453, 0.4350586, 0.6567383, -4.5625, -4.3789062, -1.1494141, 0.83984375, -0.8076172, -0.5151367, 0.15002441, -1.3662109, -0.67333984, -2.21875, 0.7026367, -1.9501953, 0.5097656, -1.6845703, -2.3222656, 1.9257812, 0.30859375, -0.47924805, 0.38745117, -0.64453125, 0.21704102, -2.734375, -2.8320312, -2.0253906, 0.1496582, -1.2929688, -0.56103516, 1.2412109, 0.22131348, 1.765625, 0.5107422, 1.9863281, -1.0927734, 1.9882812, -1.4375, 0.64746094, 2.2128906, -0.062683105, -1.5068359, -0.109375, -1.6132812, 1.7011719, 2.8007812, 2.6386719, -3.4101562, 1.5126953, 0.8798828, -1.2841797, -0.64208984, 2.5898438, 1.1845703, 1.203125, 2.171875, 1.5703125, -1.5263672, -1.2158203, -1.9628906, -0.46679688, -0.9316406, -2.7148438, -2.2402344, 1.4365234, 0.57177734, 0.5078125, 0.62939453, 1.3710938, 1.0029297, 0.9350586, -1.5087891, 0.5649414, -2.421875, 0.94970703, 0.4741211, -1.7705078, -1.7783203, -2.15625, 3.6992188, -0.74853516, 0.8881836, 2.3554688, 0.4951172, -1.3046875, 0.09875488, 0.14440918, 2.1289062, 1.3164062, 1.7626953, -1.578125, 0.53564453, 3.1171875, -0.38623047, 0.03491211, -0.7651367, 1.4013672, -0.056640625, 0.7416992, 2.4921875, -2.5546875, -0.46777344, 0.77783203, -1.2832031, -0.5991211, 0.52685547, 0.03491211, -3.7558594, -0.39257812, -0.9892578, -0.7441406, -4.4257812, 3.1308594, -1.2421875, 0.6933594, 1.6376953, 0.30786133, -0.99316406, -0.2705078, 2.5195312, 0.7270508, -1.296875, -1.3759766, -0.8588867, 0.17907715, 2.625, -2.3046875, 0.052246094, -2.1738281, 2.3398438, -0.18371582, 1.1630859, 0.2064209, -0.1083374, 2.8105469, 3.3828125, 3.90625, 0.21362305, 0.9873047, 0.61279297, 0.8305664, 1.0029297, -1.1972656, 1.2617188, 1.6943359, 2.2558594, 3.8144531, -2.5820312, -1.0400391, 2.2792969, -0.28198242, -0.9223633, 0.8544922, 1.6796875, -2.9433594, -0.5161133, -1.3681641, -1.4287109, 1.4277344, -0.07122803, -0.14123535, -1.2421875, 0.025985718, 0.46264648, 2.4375, 0.4326172, -0.13427734, 1.8632812, -0.9057617, 2.90625, 0.18945312, 0.99365234, -2.4511719, -1.171875, 0.11242676, -0.12213135, 0.33032227, 1.0927734, -1.4970703, 2.4980469, -0.7338867, 1.3408203, 0.30688477, -0.008842468, 3.4804688, -2.2890625, 1.6835938, 1.5449219, -1.8193359, -0.5048828, 0.89160156, 0.5751953, -2.8925781, -0.39672852, 0.042938232, -0.29296875, -0.67529297, -4.3828125, 0.8330078, -0.16320801, 0.078063965, -3.6113281, -0.47680664, -0.15612793, -3.1914062, 2.4023438, 0.1965332, -1.0546875, 3.1601562, 0.78466797, -0.7685547, 2.0136719, 0.17224121, 0.22290039, 0.8027344, 0.11254883, -0.09423828, -0.019500732, -0.42211914, 2.7578125, 1.9541016, -1.2548828, -0.5654297, 2.0527344, 0.13012695, 0.5620117, 1.1914062, -2.0859375, 3.6445312, 0.05493164, -0.36450195, -0.14465332, -1.9287109, 0.6088867, -0.59033203, -1.2451172, 0.03225708, 0.9013672, -0.42504883, 1.8212891, -4.9726562, -0.46533203, 2.0546875, -1.0742188, 0.63671875, 0.90234375, -0.49487305, -0.93115234, 0.19592285, 2.1464844, -2.140625, 0.19702148, -2.0097656, 0.29760742, -1.3203125, -1.9785156, -1.4960938, 0.87890625, -2.046875, 0.024017334, 1.7451172, -0.3552246, 0.2199707, 0.6542969, -1.1240234, 0.17773438, 0.22570801, -0.0423584, -1.1435547, 0.117004395, -1.0419922, 0.013999939, 0.43432617, 0.6972656, 2.4472656, 3.2578125, 1.9365234, 0.039154053, 0.30664062, -1.5800781, -1.5214844, -3.6582031, 2.2265625, 1.4384766, -1.1884766, -0.20300293, 0.9326172, 2.7226562, -1.7158203, -1.1005859, 0.81933594, 0.61865234, 1.2050781, -0.11871338, 1.1992188, -0.07220459, 1.7177734, 2.2324219, 2.7578125, 2.2363281, -1.4619141, 0.22546387, 1.5361328, -2.9941406, -2.484375, 0.123168945, -0.45288086, -2.4355469, -0.32910156, 4.0703125, 2.6640625, -0.15197754, -0.27319336, -1.8623047, -0.022964478]}, "B000WEMH32": {"id": "B000WEMH32", "original": "Brand: Weber\nName: Weber 7502 Hose and Regulator Kit (21-Inch),Assorted\nDescription: \nFeatures: Hose and regulator replacement kit for Weber propane grills\nProvides secure, airtight connection between grill and tank\nFits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold\nIncludes 21-inch QCC1 hose, regulator, and instruction sheet\nGenuine Weber replacement part\n", "embedding": [0.19104004, 0.81591797, 1.2441406, -0.26904297, -2.5976562, 1.3710938, 0.1763916, -1.9541016, 2.375, -0.2142334, 1.6992188, -0.39770508, 0.4362793, -4.171875, 1.4785156, -0.6171875, 3.9648438, -0.027236938, 0.9145508, 1.6640625, 0.050567627, 0.1706543, 2.0664062, -0.80566406, 1.7412109, 0.7285156, 4.4648438, -4.1484375, -0.6064453, 0.07293701, 0.71435547, 1.4423828, 0.1295166, 1.8291016, -2.3925781, -1.1152344, -1.1005859, 1.6923828, -2.5234375, 0.06726074, -0.40405273, 1.9404297, 0.49023438, -0.8588867, -0.6933594, 0.79589844, 1.7949219, 0.8066406, -1.3164062, -0.6386719, 2.8886719, 1.0820312, 0.2006836, 0.43115234, -1.2490234, 3.2089844, -1.6162109, -1.6416016, 2.2519531, 0.19104004, 2.9863281, -1.0302734, -2.4472656, -2.2441406, 0.9477539, 0.9892578, 0.13720703, 0.7495117, 0.5214844, 0.86816406, 2.4804688, -1.3076172, -1.6494141, -1.1083984, -0.40405273, -0.78564453, -1.4365234, 0.70410156, -0.0039749146, -0.8798828, -2.5117188, 3.5820312, 0.8100586, -3.0683594, 1.2070312, -1.1337891, -0.024291992, -2.1894531, 2.4785156, 0.27856445, -3.0664062, 1.3994141, -2.6015625, -2.109375, 0.5649414, -0.18664551, -0.5541992, 0.5859375, 2.703125, 0.42407227, -3.0917969, -0.060791016, 0.9536133, 1.2070312, -2.4726562, -2.3261719, 0.15844727, 0.3864746, -1.5048828, -2.0859375, -0.8305664, -0.7451172, 0.9589844, 1.2529297, -0.1550293, -1.8779297, -0.47387695, 0.640625, 0.94140625, 0.6660156, 2.1621094, -0.22851562, -0.13024902, -1.2041016, -0.43139648, -0.6098633, 0.19482422, 1.0449219, 2.3457031, -1.5488281, 0.9472656, -1.5703125, 3.7597656, 2.5820312, 2.3398438, -3.4589844, -2.1210938, -1.6835938, -1.2871094, -0.50927734, -1.0488281, 0.49902344, 2.046875, -0.83154297, -3.9609375, 0.86279297, -2.7851562, -0.1920166, 1.4580078, -0.87353516, 1.1035156, -2.0820312, -0.18688965, -0.97509766, 2.3320312, -0.5097656, 1.3535156, 1.1435547, 1.1191406, 4.0390625, 2.4785156, 0.8461914, -0.28588867, -1.4121094, 0.6855469, -1.5625, 0.9536133, 1.3740234, -2.3105469, 2.328125, -0.6088867, -0.52978516, -0.80566406, 0.61865234, 0.51171875, -0.8642578, 0.10449219, 1.9931641, 0.1303711, 0.8496094, -2.5117188, -2.4453125, -1.0390625, -2.90625, 0.46044922, -0.4104004, -0.69628906, -1.4804688, 3.2636719, 0.30810547, -1.1279297, -0.18457031, 0.9482422, -1.0009766, -0.77441406, -1.8261719, -3.1445312, -1.2939453, -0.101135254, -0.5961914, -2.7519531, -1.5712891, 3.515625, 0.8569336, -1.7089844, -1.8369141, 0.65234375, 1.4287109, 0.34448242, 1.0849609, -0.15661621, -1.4326172, 0.8959961, 0.7421875, 0.3251953, -0.8149414, 3.4238281, 1.4423828, 0.7441406, 0.22961426, -0.6088867, -0.56640625, 1.2236328, 2.0761719, 1.8652344, 0.20202637, -0.6152344, 0.11804199, -2.3886719, -1.9414062, 1.8925781, 0.9453125, -0.12658691, 0.89746094, 0.93603516, 2.0527344, 1.1845703, -0.96533203, 1.9472656, 0.85546875, 0.5961914, -0.45239258, -3.484375, -0.89160156, -0.55078125, 0.2590332, -0.6899414, 2.5507812, -0.19567871, -1.3916016, 1.7490234, 0.8413086, 0.40112305, -1.8496094, -0.06555176, 0.27368164, -1.6962891, 2.8808594, 0.7709961, -1.0830078, 2.0039062, 0.08569336, 0.9785156, 1.0908203, 1.8095703, -1.375, 0.2619629, -0.9868164, 1.0058594, -1.4208984, -1.484375, 2.0371094, 0.039733887, -1.8173828, 3.5976562, 2.5273438, -2.0820312, 1.3847656, 0.02609253, -1.4335938, 1.1308594, -0.45825195, 1.9580078, -2.2734375, 2.3808594, -0.1661377, 0.15881348, -2.3984375, -2.2089844, 1.4765625, 2.21875, 0.0021133423, -2.2480469, 2.3359375, 0.8149414, 0.08728027, 2.2050781, 0.12475586, -1.3046875, 1.7490234, -0.1616211, -0.43237305, -1.2451172, 0.2866211, 1.9384766, 1.9072266, 0.0026836395, -2.9335938, 0.19360352, 2.6035156, -2.8085938, -2.1113281, -0.92089844, 3.0742188, -1.9951172, -1.1035156, 0.3161621, -3.7773438, -0.29248047, -2.0195312, 2.1171875, -0.9291992, -1.109375, -1.2197266, 0.105773926, 0.21704102, -2.0761719, 0.87939453, 2.375, -1.0527344, 0.84228516, -0.38256836, -0.85009766, -1.8671875, -1.6748047, -0.07421875, 0.35180664, -2.6347656, 1.7460938, -0.7138672, -1.0019531, -0.96240234, 0.3232422, 2.5644531, 2.1152344, -1.046875, -2.4902344, -0.08093262, -0.16137695, -1.1826172, -0.04977417, 3.0898438, -1.3837891, -2.0234375, 0.018798828, -0.8125, 1.5986328, -0.8149414, -0.7753906, 0.5415039, 2.9277344, 0.41748047, -0.7163086, 2.0761719, 2.7402344, 0.012413025, 3.5390625, -3.0078125, 0.50683594, -1.3818359, 1.3554688, -0.49902344, 1.0292969, -3.65625, -2.2558594, 1.7666016, -2.3867188, 3.0644531, -0.71533203, 2.7246094, 0.38305664, 1.0859375, 0.54833984, -4.8359375, -1.7167969, 1.6337891, 1.9453125, -1.4257812, 1.3457031, -1.0820312, -1.6748047, -1.7734375, 0.33740234, 0.625, -4.1523438, -0.9819336, -0.34301758, -0.5214844, -0.76904297, 0.5751953, 1.0429688, -0.5473633, -2.9980469, 0.055633545, -1.2900391, -1.9375, -0.08251953, -1.8212891, 2.3632812, -0.6069336, -1.4111328, 0.92041016, 0.59472656, 2.0664062, -0.026519775, -3.0585938, 1.1679688, 0.7060547, -1.6113281, 2.1875, -1.6542969, -0.79296875, -2.1308594, -0.85595703, 1.7070312, 1.4580078, 0.57666016, 1.0429688, 2.5605469, -0.08880615, -1.265625, -0.47851562, -1.5830078, 1.0615234, 3.3144531, -1.5292969, -1.4912109, 0.6850586, -2.140625, -2.9980469, 0.35083008, 3.3242188, 0.4020996, 3.109375, 0.46435547, 0.6713867, 1.1259766, 0.97509766, 1.2724609, 1.3359375, -1.0625, -1.3583984, 2.1816406, 1.5283203, -0.78271484, 2.8183594, 0.9165039, 2.2480469, 1.7236328, -0.92578125, 0.10888672, 1.1660156, 0.39916992, 1.8369141, 1.7695312, -0.50341797, 1.4160156, -0.81933594, 0.27368164, 1.6044922, -1.8925781, 1.4912109, -1.7919922, -2.4433594, 2.2714844, 0.41796875, -2.6582031, -1.1005859, -0.08496094, 0.07800293, -0.7915039, -1.5214844, -0.5683594, -0.011459351, 1.1894531, -1.4589844, 0.8901367, -0.16442871, 2.3261719, 0.75146484, -1.7705078, -0.5629883, 1.2529297, -2.6601562, -1.5341797, 0.5595703, -3.5605469, -1.5175781, 1.6445312, 2.4042969, -2.3320312, 2.1484375, -2.8320312, 1.3339844, 0.76416016, -0.83984375, -1.3535156, -0.21765137, -1.4414062, 1.4277344, 2.1972656, 1.7763672, -0.44091797, -1.8632812, -0.9399414, -3.2675781, -1.6464844, 2.2832031, -0.6298828, -0.34472656, 0.29614258, -0.22851562, -0.103149414, -0.7807617, 3.5664062, -1.6054688, -0.10668945, 1.5507812, -2.8144531, -0.60595703, -3.1015625, -3.6914062, -0.94921875, -3.1328125, 1.6630859, 0.20800781, 1.9111328, 1.3916016, 4.09375, 2.4941406, -1.8818359, -0.5493164, -0.13085938, 0.6333008, -0.93896484, 0.2685547, 0.2680664, -0.5942383, -0.25952148, -3.3886719, 0.14208984, -3.2929688, -0.28100586, -0.48950195, -3.2480469, -1.3251953, -0.94140625, 0.56640625, -1.7128906, 0.20422363, 1.3378906, 0.23864746, 0.5996094, -2.7773438, 2.5292969, -0.6201172, 1.0107422, -1.2617188, 2.8613281, 1.0214844, -2.2734375, 1.390625, 0.42822266, 4.8007812, -0.71728516, -2.5722656, 0.5932617, 0.042175293, -0.53271484, -1.3115234, -0.2705078, 1.8964844, -1.7011719, -0.10021973, 0.5253906, 2.1269531, 1.7910156, -0.07556152, -2.4394531, 0.55908203, 1.4990234, -0.32055664, -2.203125, -0.8833008, -0.20214844, -1.4013672, -0.23352051, -2.7480469, 2.96875, -1.4169922, 0.7128906, -3.8164062, 1.1992188, -0.5776367, -0.30566406, 1.3828125, -3.1992188, 1.6240234, -1.2919922, -1.1152344, -0.76953125, 0.33422852, -0.6357422, -0.033294678, 3.2636719, 2.109375, -1.5996094, 0.010719299, -0.6069336, -1.0683594, -1.0097656, -0.79589844, 1.0195312, 1.4511719, -0.60253906, 0.18811035, -0.36865234, 3.578125, 1.9453125, 0.23120117, 1.0908203, -0.71533203, -2.5410156, 2.2460938, 2.3417969, 0.39648438, 0.113342285, 0.45703125, 3.1484375, 1.9785156, -0.7871094, 0.7753906, -0.71533203, -1.5380859, -0.8588867, 2.0332031, 1.4785156, -2.1113281, 1.0839844, 1.0263672, 1.0410156, 2.4902344, 2.4550781, -0.3125, -4.2304688, 1.5673828, 1.0380859, -2.0273438, 1.8076172, 0.65771484, -1.2851562, 3.7246094, 0.48779297, -3.0683594, -0.016860962, 1.4492188, 0.053497314, 1.3427734, -2.8515625, 0.072631836, 1.4765625, -0.7895508, -0.49902344, 0.13586426, -0.39672852, 3.8769531, -0.80615234, 1.2304688, -0.01902771, 2.5585938, 1.2050781, -1.5507812, -2.7324219, -0.44873047, -3.1855469, -1.8535156, -2.3808594, -1.4072266, -2.7246094, -1.3837891, 2.0332031, 2.1542969, 1.140625, -0.47827148, 1.4863281, -1.3125, 0.22436523, -0.1998291, 1.0048828, -0.024658203, -0.5058594, 1.3320312, -3.0058594, -0.7734375, -1.5673828, -0.62158203, 0.19116211, -0.11022949, 0.49145508, 1.9960938, -0.4020996, 0.046325684, -1.3847656, -3.5917969, -0.32470703, -0.46875, 1.6806641, 1.5908203, -0.4543457, -0.6098633, 1.6542969, -0.7680664, -0.6923828, -0.6298828, -0.7167969, -0.36572266, 0.035705566, -0.88134766, -1.2597656, -1.828125, 1.9111328, 0.124572754, 1.9121094, -1.6845703, -0.67333984, -1.3173828, 0.9848633, -2.2929688, -0.43945312, 1.8955078, 1.0410156, -0.6069336, 1.5292969, 0.81591797, -2.0839844, 0.74121094, -3.328125, -1.2470703, 0.0015544891, -2.7246094, 4.0273438, 0.95458984, -0.32885742, 0.8105469, 1.6835938, 3.2519531, 1.7216797, -0.9916992, 1.0361328, 1.171875, 0.85791016, -2.4394531, -0.65625, 0.34179688, 0.5703125, 0.9038086, -1.1816406, -0.3173828, -2.765625, -2.328125, 2.703125, -3.0566406, -0.11254883, 1.6210938, 0.25463867, 2.8828125, 0.3708496, -0.9082031, 1.1269531, 1.9404297, -0.55615234, -0.3864746, -0.05706787, 3.4492188, 2.5175781, -1.3955078, -1.0839844, 0.46801758, 1.7783203, 3.7265625, 1.0224609, -0.22607422, 0.9916992, -1.1269531, -0.81396484, -0.57421875, 1.5986328, -0.47631836, -0.39819336, 0.15454102, -0.47460938, 3.140625, -1.1328125, 2.2363281, 0.6586914, -1.5595703, -1.8417969, 3.5859375, 1.4248047, -3.9394531, -0.27539062, -2.5859375, 1.0878906, -0.14294434, -1.3154297, -0.42163086, -0.17126465, -0.4416504, -0.5419922, -2.3710938, -3.3105469, 0.11010742, 0.005580902, -3.3515625, -0.21191406, 2.4492188, -1.0361328, 1.7451172, -0.010925293, -0.4404297, -1.8544922, -1.2880859, -2.9570312, 0.60498047, 0.13415527, -3.3359375, 1.6757812, 2.7890625, -0.30541992, -0.9580078, -0.9667969, 0.8911133, 1.7119141, -0.5253906, 2.2441406, 1.5039062, 0.8598633, 1.4033203, 1.5595703, 3.7246094, -0.0061950684, -1.3720703, 1.1738281, 2.2597656, -1.0380859, 1.4414062, -0.30029297, -0.32104492, -1.6708984, 2.3730469, -0.66796875, 1.5800781, 0.53271484, -1.7578125, -2.3300781, -1.4013672, 1.7578125, -2.1015625, -0.80908203, -1.9140625, 0.33544922, 0.9873047, 1.3291016, 1.1171875, 3.3886719, -1.3740234, -0.7504883, -1.4257812, 4.296875, -1.7304688, 0.34057617, -0.24414062, -0.98828125, -0.78564453, 0.40039062, 1.9013672, 0.34545898, 0.89208984, -0.34301758, 1.7421875, 1.3486328, 0.3918457, -2.6308594, 0.1640625, -0.5048828, 1.8671875, 3.6015625, -1.7509766, 0.3815918, -0.44921875, -2.8066406, -2.1445312, 3.1503906, 2.7597656, 0.47045898, -0.8569336, -4.0078125, 1.9238281, -1.2949219, -0.18322754, -2.1503906, -0.24963379, 0.37841797, -2.4238281, -1.2529297, -0.79541016, -3.0859375, 1.4541016, 1.2382812, 0.06945801, 0.42919922, 3.1386719, 0.7128906, -0.34594727, 1.3847656, -0.0993042, -0.028518677, -1.2001953, 3.1660156, -0.35620117, -0.9350586, -1.6660156, 2.4804688, -0.6503906, 0.42822266, 0.60546875, -0.08227539, -1.2197266, 1.7568359, 1.2265625, 2.6640625, -2.6445312, -0.8354492, 2.0585938, 1.6015625, -1.5498047, 0.38671875, 2.6269531, 2.484375, -0.22253418, 2.4609375, 2.0507812, -1.4677734, 1.7246094, -0.27514648, -1.6416016, -0.9794922, 0.116882324, 0.02420044, -1.6259766, 0.32788086, 1.0908203, 0.67333984, -1.3369141, -2.828125, -1.5419922, -0.83740234, -0.056915283, -1.2861328, -1.3916016, -0.7919922, -2.2460938, 1.2871094, -0.7104492, -0.69921875, 2.234375, 0.51171875, 0.9916992, -3.5722656, -1.7216797, -0.8852539, -1.1152344, 0.27270508, 2.8671875, 2.6816406, 1.3339844, 0.33032227, -1.6181641, -1.9677734, 0.94433594, -1.4794922, 2.359375, -1.0966797, -2.8066406, -1.6386719, 1.2001953, 2.6679688, 0.96875, -0.59765625, -1.4794922, -1.8154297, 2.5117188, -1.8535156, 0.046142578, -1.7919922, -1.2832031, 2.3457031, 4.6640625, 1.3300781, 1.328125, -0.81689453, 2.4277344, -0.0012111664, -1.4238281, -0.48632812, 1.7714844, 0.5878906, -0.07647705, 0.2763672, 2.5507812, 0.5522461, 0.08782959, 0.8808594, 1.2929688]}, "B00I8IY6I8": {"id": "B00I8IY6I8", "original": "Brand: Flame King\nName: Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant\nDescription: \nFeatures: Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical\nSafety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\n", "embedding": [-1.9384766, 1.78125, 2.0175781, -0.5253906, 1.4814453, -3.1816406, 0.80810547, 0.65185547, 1.015625, 0.8413086, 2.5488281, -0.16870117, -0.87109375, -4.34375, 1.1259766, 0.6503906, -1.1103516, 1.8935547, 1.0146484, 0.8676758, 2.2929688, 0.47436523, -0.4182129, -1.8037109, 0.39648438, -0.11395264, 2.8535156, -2.6132812, 1.5292969, 0.14758301, 0.9267578, -1.4082031, 1.2675781, 0.8901367, -0.6616211, -1.2148438, 0.022613525, -0.78466797, -4.90625, 0.6333008, -2.7929688, -2.0214844, 1.25, 0.9633789, -0.79003906, 0.74072266, -0.26733398, -0.111572266, -0.7050781, -0.40307617, 1.2285156, 1.3017578, -1.515625, 1.0615234, 0.54248047, 0.6767578, 0.8925781, -3.7597656, 0.14038086, -0.9296875, 2.4941406, -0.4206543, -2.7714844, 1.8027344, -0.7138672, 1.4482422, 0.18884277, -0.16906738, 0.90185547, 1.90625, 2.2714844, 1.2509766, 1.2207031, -1.4609375, -0.6357422, 1.6728516, -2.8203125, 0.83935547, 0.101745605, 0.73828125, -1.3271484, 2.6835938, 0.2434082, -2.8574219, -0.8256836, -0.7758789, 1.40625, 0.020339966, -0.8754883, 2.0097656, -1.4648438, 2.8203125, -0.82373047, -3.8105469, 3.2558594, 1.0761719, 1.1503906, 2.4003906, 2.8417969, 0.7050781, -0.24902344, -0.22973633, -0.4638672, 0.9658203, -1.4814453, -1.7802734, 0.9399414, 0.52441406, -3.1054688, 1.3076172, -0.20080566, -0.010437012, 0.91796875, -0.4724121, -1.2744141, -0.12512207, 0.82910156, 1.6074219, 1.0966797, 0.14331055, 4.6992188, -2.8964844, 1.9160156, -0.0029735565, 1.6181641, 0.87158203, -0.37475586, 2.1152344, 5.578125, 0.049835205, 1.1484375, 0.8203125, 2.5253906, -2.4257812, 0.70214844, -2.2207031, -0.4506836, -2.3398438, -2.3730469, -1.0859375, -3.28125, -0.5385742, 0.67822266, 0.07330322, -2.5175781, -0.7763672, -0.25024414, -0.13793945, -0.7080078, -1.625, 0.43115234, -1.0478516, 0.61328125, -0.46435547, 2.6191406, 0.9692383, -1.2353516, -1.8945312, 0.51660156, 1.5273438, 2.0117188, 0.54785156, -0.54589844, 2.0820312, -0.8803711, -1.7792969, 0.3996582, 0.28027344, -1.4003906, 1.1748047, 0.2548828, -2.4316406, -0.6713867, 1.3173828, -0.7373047, -1.0996094, 0.5444336, 1.1396484, 1.1191406, 0.38452148, -2.9648438, -0.83935547, 0.044067383, -1.0478516, 1.3222656, 0.6113281, -1.5771484, -1.3271484, 0.9863281, -1.1240234, -1.2070312, 2.3496094, -1.5634766, 0.21105957, 0.80078125, -1.7207031, -3.234375, -2.7636719, 1.8662109, 0.77783203, 1.046875, -0.56640625, 1.8144531, -0.13464355, -2.6367188, -2.0605469, -0.24523926, -1.2392578, 0.82421875, 0.71972656, -0.039276123, 0.34350586, 1.4121094, -3.5351562, -0.9560547, -2.3125, -0.6948242, 1.5595703, 1.7529297, 1.0673828, 0.7138672, -1.0429688, 1.4130859, 1.3076172, 0.7836914, 0.09991455, 0.6645508, 2.1113281, -3.6113281, -0.84472656, 0.88671875, 0.90966797, 0.6010742, 1.5693359, -1.6669922, 0.96240234, -0.3557129, -1.1396484, 0.32373047, 0.56884766, 1.3291016, 1.1523438, -0.5107422, -1.4306641, -1.9482422, -1.5273438, 1.4042969, 0.6801758, 0.5600586, -1.109375, 1.1396484, -0.5522461, 0.23815918, 0.30639648, 1.0126953, 1.3925781, 0.6298828, 1.1728516, 0.5751953, -2.5019531, 1.8037109, -1.2949219, -0.6479492, 1.0332031, -1.1757812, 0.9165039, 3.2109375, -0.43652344, -1.1201172, 0.44384766, -1.6279297, 0.1743164, 0.9135742, -0.93310547, 0.97509766, 3.3496094, -2.2675781, 4.7304688, -1.2666016, 1.1083984, -0.2668457, -1.0732422, 0.20654297, -2.3105469, 0.17626953, 0.18847656, 0.74609375, -0.28051758, -1.1376953, 0.07348633, 4.9882812, -0.89746094, -1.375, 2.1738281, 2.3007812, 1.9951172, 4.0117188, -0.18737793, 1.3935547, -1.4814453, 0.5678711, 0.27416992, -1.0947266, 0.4736328, -0.094055176, -1.4892578, 1.7128906, 0.11010742, 1.6484375, 0.005531311, -1.9550781, 1.2363281, -0.6767578, 1.40625, -0.5498047, -1.0390625, 3.5742188, -2.5859375, 1.3896484, 1.4277344, -0.14733887, 1.9082031, 1.5419922, -0.13391113, -1.3984375, 1.9824219, -0.29345703, 2.1582031, -0.10827637, 1.2246094, -0.18896484, -2.046875, -0.17297363, -0.9975586, -0.2097168, 2.0625, -0.90185547, -2.5175781, 0.27246094, -2.1875, 0.1772461, 0.45898438, -0.39013672, 1.8261719, -0.43530273, -1.9316406, 0.42504883, 0.46411133, 0.21826172, -2.2421875, 0.5131836, 3.8320312, -1.2607422, -1.7460938, 0.90478516, 0.78271484, 1.2392578, 3.3027344, -0.6274414, -0.2241211, 1.0615234, -0.46411133, -0.9238281, -0.640625, -0.81689453, -2.5917969, 2.203125, -2.6738281, 2.3105469, -1.9648438, 0.9355469, -0.4404297, -0.96191406, -0.98876953, -2.5664062, -2.0351562, -0.69384766, 1.1337891, 1.8037109, 1.8144531, -1.1552734, -0.37573242, 0.89453125, -0.3310547, -1.0244141, -1.2392578, 0.4111328, -1.1152344, -1.7470703, -4.9960938, 0.5053711, -1.90625, -0.24243164, 0.25390625, 2.234375, -3.1738281, -0.90283203, -0.7866211, -0.12420654, -0.78466797, 0.7714844, -0.29858398, -2.4042969, -0.43920898, 0.6777344, -0.20751953, -1.6318359, -0.41088867, 0.50878906, -1.0576172, -0.8520508, 0.6435547, -1.4541016, 1.4121094, 0.7158203, -3.2890625, 1.5712891, 1.5458984, 0.10632324, 2.3242188, -3.3574219, -1.1679688, -2.5546875, -0.14562988, 4.2382812, 1.5761719, 1.0371094, 0.097839355, -1.1201172, 1.3671875, -0.26220703, -1.0605469, 0.3400879, -0.35961914, 2.8339844, -1.5273438, -0.24035645, 0.94140625, 2.4707031, -3.9921875, 0.6796875, 1.3134766, -0.1842041, 1.3681641, 1.4765625, 0.17333984, -1.3134766, 0.13793945, 1.6982422, 2.9238281, 1.1845703, 1.2070312, -1.5917969, -0.24133301, -1.0888672, 0.24841309, 3.2324219, 0.5551758, 1.9990234, 2.9570312, 0.77783203, -1.3378906, -1.1669922, -0.63720703, 0.5620117, 0.9057617, 2.6425781, -1.1767578, 0.58691406, -2.3847656, -0.092041016, 0.13647461, -1.1728516, -0.17749023, 1.1298828, 2.4980469, -0.14575195, -0.26782227, -0.94189453, -1.4589844, -2.1738281, 4.2617188, -1.3564453, 0.61279297, -0.5107422, -0.35961914, 1.5146484, -4.0976562, 1.7851562, 0.070007324, -0.16296387, -0.35009766, 1.9550781, -1.3193359, -2.1347656, 0.21398926, -1.5410156, -1.6933594, 1.8183594, 0.03265381, -3.3632812, 0.015151978, -2.9375, 0.88623047, -0.010749817, -1.1191406, 1.4501953, 1.3945312, 0.3317871, -0.3569336, -1.0966797, 0.6699219, 1.0878906, -2.5820312, 1.5908203, -1.2509766, 2.7636719, 0.40307617, 0.7939453, -1.5263672, -0.029953003, -1.4287109, 3.3457031, -0.021713257, 3.4003906, -0.030227661, 0.8027344, 1.2412109, -1.8212891, -0.37670898, -1.5869141, -3.1035156, -0.5576172, -2, -0.22106934, 2.953125, -1.8095703, -0.30932617, 0.5151367, 1.9824219, -1.1806641, -0.37890625, -1.0537109, 1.6806641, -2.5214844, 0.10668945, 0.58447266, 2.1386719, -3.1132812, -2.6816406, 0.5839844, -1.4345703, -0.13916016, 1.5712891, -1.5087891, 0.44189453, 2.2890625, -0.85839844, -0.0184021, -1.0253906, 3.0019531, -1.0878906, -1.2558594, -1.5371094, 1.3134766, 1.8066406, 0.4296875, 1.6240234, 1.7304688, 1.2988281, -1.5498047, -1.8623047, -0.40649414, 1.5, 0.6616211, -3.9941406, -2.1230469, 0.33911133, 0.15734863, -2.6875, 1.4433594, -0.7011719, -0.037261963, 3.5253906, 0.73876953, 0.7788086, 1.8720703, 0.57910156, -1.8027344, -0.06359863, 1.4306641, -1.0537109, 0.9736328, -0.58496094, -0.35888672, -1.6298828, 1.8212891, -2.9472656, -1.9482422, -2.9238281, 0.53759766, -3.5546875, 1.5791016, 3.8710938, 3.1523438, -0.78808594, -0.61035156, -0.50878906, -0.25708008, -0.028305054, -1.3173828, 1.28125, -1.1748047, -2.1347656, 0.61279297, 0.054473877, -0.1574707, 1.3974609, 1.0605469, -1.0390625, -1.6601562, 0.7241211, 0.77978516, -2.1855469, 0.14147949, -0.59814453, 0.011680603, 3.2636719, -2.1425781, -1.1396484, 1.90625, 0.9248047, -0.7807617, 0.5307617, -0.3605957, 0.9614258, 2.5351562, 0.38452148, 1.5605469, 1.3974609, 2.1347656, -0.8642578, 1.1884766, -1.1904297, 1.4199219, 0.6855469, 1.359375, -0.52490234, 1.5, 1.6367188, 0.12243652, 0.2763672, 0.36669922, -0.6176758, -0.80371094, 0.6352539, 0.8828125, -3.6640625, -2.8691406, -0.8730469, -0.75341797, 3.3476562, -1.28125, -3.1757812, -0.6928711, 2.203125, -0.42871094, 0.734375, 0.9794922, -0.7636719, -1.9570312, -1.9814453, -1.8925781, -1.3066406, -0.06732178, 1.1445312, 1.1210938, -0.12890625, -2.1230469, 0.8149414, -0.49414062, 1.3173828, 1.7246094, -1.4511719, -0.80859375, -0.3022461, 0.5932617, 1.1210938, -2.6777344, 1.0957031, -1.3232422, 0.76953125, -0.17749023, 0.07055664, 2.2148438, -1.1347656, 0.3071289, -2.1015625, 1.4472656, -0.55126953, -0.93603516, 2.734375, -1.3925781, 2.2832031, -1.1318359, 0.25048828, -1.2470703, 1.4824219, 2.28125, -0.8017578, -0.9086914, -0.051940918, -2.8125, -5.265625, -2.4863281, 1.1269531, 0.8535156, 0.041778564, -1.0898438, -2.8496094, -0.60839844, -1.7285156, -1.2294922, -1.0976562, -0.028167725, 0.04626465, -0.65722656, -1.2832031, 1.9580078, 0.29077148, 1.25, 0.88134766, -1.4052734, 0.28955078, -2.0507812, -2.8613281, 1.9990234, -1.4228516, 0.97509766, -0.05596924, -1.40625, 1.0537109, 1.5146484, -0.034332275, -4.34375, 2.2324219, -3.2597656, -0.44702148, 2.6601562, -3.1152344, -2.1269531, 0.8613281, -0.6269531, 0.29248047, 1.0595703, 2.0703125, -3.2675781, -1.8291016, -1.9443359, 2.2832031, -1.6123047, 0.9511719, 2.3125, 2.1855469, 0.20178223, 1.8095703, -1.1806641, -1.7128906, -2.1464844, -0.78564453, -0.6464844, -2.671875, -0.4128418, -1.1230469, 0.9550781, -0.5732422, -0.8046875, -0.85546875, -0.15307617, -1.6074219, -0.9038086, 2.5253906, -2.7207031, 2.6679688, 3.0429688, -2.1367188, -2.0703125, -1.1542969, 0.8823242, 1.4404297, -3.3496094, -1.078125, 0.26538086, 0.15991211, 2.203125, -1.0791016, 0.93603516, 0.2244873, 1.8496094, -1.4628906, 0.26586914, 3.5761719, -1.1074219, 2.4785156, 0.58740234, -1.6962891, 1.0927734, 2.5117188, 1.1621094, -2.6386719, 0.50878906, 0.0859375, -0.7553711, -0.5053711, -0.5883789, 0.66259766, -2.8320312, -0.75390625, 0.19189453, -1.2568359, -4.8828125, 0.20983887, 0.3239746, -1.3681641, -0.24145508, 0.41186523, -0.30639648, 0.44604492, 1.8291016, 1.8671875, -1.9501953, -0.061401367, 1.0957031, 0.96191406, 2.6113281, -1.7695312, 1.9482422, 1.1425781, 0.03451538, -1.2373047, 0.5185547, -0.8803711, 3.1308594, 1.4404297, 1.2333984, 3.7363281, -0.8105469, 1.7890625, -0.5439453, 1.7675781, 4.3671875, 0.056671143, 1.1171875, -0.4543457, 2.0253906, 0.6176758, -0.57421875, 1.9345703, -0.8754883, 0.71533203, -0.54785156, 1.2558594, 2.0136719, -1.0751953, 1.96875, -0.64453125, -1.4169922, 0.30810547, 0.19030762, -1.5498047, -1.0449219, 1.4804688, 2.0390625, 0.8691406, -0.44580078, 0.49243164, -0.17663574, 0.80859375, 1.1347656, -0.6699219, 0.34301758, -1.8574219, -1.0839844, 0.0317688, 2.2246094, 0.828125, 0.3881836, 1.0634766, -0.18908691, 0.35205078, 1.3974609, -0.11035156, -2.1875, 0.4111328, 1.0761719, 1.1240234, 2.0625, -0.8222656, 3.8085938, 1.6054688, 0.36914062, -2.7675781, 3.28125, -0.8339844, -0.82128906, 1.3417969, -1.7128906, 0.34545898, -1.2792969, 1.3417969, -4.2695312, 1.1074219, 0.3022461, -2.3847656, 2.0371094, 0.81396484, -1.2617188, 4.453125, 2.1367188, -1.1855469, 0.34960938, -0.9511719, 1.1894531, 0.64404297, 0.4453125, -0.3154297, 1.7929688, -0.8017578, 4.3046875, -1.6328125, -1.0107422, -1.1904297, 1.2851562, 0.20471191, 0.18603516, -0.008102417, -1.9433594, 1.1699219, 0.38256836, 0.45825195, 0.43652344, -1.5332031, -0.35668945, -2.2070312, -0.21008301, 1.2431641, -1.9248047, 0.4489746, 1.2929688, -0.765625, -1.9589844, 3.6640625, -0.22485352, 0.8598633, 0.15405273, -1.6777344, -0.5551758, 0.22692871, 1.5996094, -2.9042969, -0.92285156, 0.4482422, 2.7324219, -0.37060547, -2.7734375, -0.9379883, -0.19030762, -0.15405273, -2.2773438, 1.046875, -1.4160156, -0.61865234, 1.7871094, -0.42236328, 0.30639648, 1.4042969, -0.49438477, 1.5615234, 0.22631836, -1.2128906, 1.4785156, -0.1496582, -0.9433594, -1.3496094, 0.9277344, 0.8754883, 0.15686035, 0.20629883, -3.703125, -1.9550781, -1.9345703, 1.0527344, -1.0908203, -2.3671875, 0.22631836, 1.3466797, 1.4912109, -0.3466797, 0.1541748, -0.50927734, 1.7587891, 1.3300781, -0.6381836, 2.2382812, -0.64746094, -0.43920898, -0.49267578, 3.0390625, 1.2236328, -0.29101562, -0.92089844, 0.9711914, -1.9589844, -0.50683594, -0.78271484, 0.0015935898, 1.1865234, 0.6254883, 1.7773438, 2.3808594, 1.0595703, -0.03768921, -1.6767578, -2.0136719]}, "B08C92F6KZ": {"id": "B08C92F6KZ", "original": "Brand: CitruSafe\nName: CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills\nDescription: Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill\u2019s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone\nFeatures: 1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner.\nFormulated to safely clean burnt food and grease off of BBQ grill cooking surfaces.\nWorks great on grill grates, smokers, ovens, microwaves, and more.\nPair with our Citrusafe BBQ Grill Scrubber for optimal results.\n", "embedding": [1.5273438, 1.1513672, 3.2675781, -0.4633789, 0.40039062, 0.13122559, 1.3759766, -3.3632812, 0.19189453, 2.1523438, -1.7304688, -0.6123047, 0.2536621, -1.9423828, 1.4931641, -0.12017822, -0.28442383, 2.6289062, 2.7910156, 0.9482422, 1.0283203, 1.1181641, 1.0390625, 1.3935547, 1.3671875, 0.64453125, 2.6875, -2.4746094, -0.19921875, -3.7597656, 0.13439941, 0.0524292, -1.2753906, 0.8022461, -3.3867188, 0.49121094, 0.07672119, 0.29760742, -1.6259766, -0.105407715, -0.66552734, 0.9692383, 1.5048828, -0.28808594, -3.7070312, 1.3134766, -0.28466797, 1.859375, 0.17211914, -2.7324219, 0.40844727, 0.7993164, 1.8984375, -1.890625, -1.4501953, 2.8476562, 0.29736328, -1.9091797, 0.7397461, 1.0693359, 2.1074219, 2.4960938, 0.73779297, -0.46484375, 0.37475586, -1.8193359, 0.10736084, -0.6098633, 1.484375, -1.6630859, 0.2849121, 0.5576172, -2.1132812, 0.14819336, -0.2824707, 1.0507812, -0.53759766, 2.4550781, -1.2314453, 0.16503906, -0.2524414, 1.2265625, 0.7475586, -2.8554688, 0.27441406, 1.2548828, 0.82470703, 0.14624023, 1.8076172, -1.0449219, 0.18664551, 3.2226562, 0.0027866364, -2.7207031, 3.0214844, -2.6796875, 0.14038086, 0.6323242, -0.3671875, 1.5527344, -1.9501953, -1.3095703, -0.67822266, 0.36694336, -3.5839844, 0.3413086, 1.5341797, 0.6723633, -1.8847656, 0.39160156, -0.1619873, 0.92822266, -1.8085938, -0.8911133, 1.1171875, 0.53515625, 0.95410156, -0.01335144, -0.40673828, -0.10040283, 1.8027344, -0.9301758, 0.88378906, -1.1123047, -0.6772461, 0.36865234, 0.9848633, 1.859375, 2.3144531, -0.79785156, -0.46948242, -0.9086914, -0.7241211, 0.33764648, -1.0078125, -1.9306641, -2.1269531, -2.7207031, -1.5566406, 0.4892578, -3.7929688, -0.5649414, 1.1904297, -1.4570312, -2.0039062, 0.022628784, 0.73291016, -0.16821289, 0.15686035, -0.4970703, 1.5839844, 0.027740479, 0.3359375, -1.4101562, 1.7734375, -1.3828125, -1.5498047, -2.4863281, 1.7255859, 1.4580078, 0.69384766, -1.5839844, -0.10772705, -0.24975586, 0.80322266, -0.9892578, -0.9301758, 2.0253906, 0.33276367, 0.63378906, -0.3400879, -1.9960938, 1.5390625, 0.8515625, 1.7451172, 0.3894043, -0.5805664, 2.0292969, 0.25610352, -1.8164062, 1.0273438, -1.8300781, -0.3017578, 0.9008789, -1.2167969, -0.72314453, 0.8569336, 0.28955078, -0.066467285, -2.2363281, 2.0058594, 3.5898438, -0.86279297, 0.7993164, 0.09429932, -0.52490234, -0.5024414, 0.14147949, -1.4267578, -0.34570312, -2.2792969, -1.6982422, -0.3720703, 0.88378906, -0.51220703, -3.7519531, -1.1982422, 1.3574219, 1.0703125, -0.52246094, 1.2236328, -3.5488281, 2.5214844, -0.7050781, 0.30200195, -1.4111328, -2.8789062, -0.7758789, -0.37841797, 0.34375, -0.85058594, -0.5810547, -0.43920898, 4.3789062, 0.2932129, 1.1269531, 1.203125, 0.10852051, -1.2314453, -1.5859375, 0.8120117, 1.6074219, -0.51708984, -0.8466797, -1.2060547, 1.1865234, -0.9140625, 1.8261719, -1.3857422, -0.73095703, -0.15283203, 1.1933594, -2.6816406, 1.8369141, 0.14428711, -0.9140625, 0.75390625, 3.5410156, -0.7084961, -1.5800781, -0.9892578, 2.15625, 0.4267578, 1.4541016, 0.8066406, 0.035125732, 0.038116455, 0.6225586, -3.4726562, -0.085998535, 0.09246826, 2.171875, 0.35888672, -0.3701172, -0.41430664, 0.054626465, 1.4335938, 0.32885742, -1.2382812, -3.0371094, 2.0390625, 0.84521484, 0.29174805, 0.41308594, -1.4228516, 1.6142578, -0.061187744, -0.5136719, 1.1064453, -0.77685547, -0.87109375, 1.1201172, 4.0390625, -1.7763672, 1.4511719, -0.8491211, -1.4121094, -0.002084732, -0.3017578, -3.1953125, 3.9023438, 0.070739746, -4.0820312, 3.1582031, -0.6533203, 0.52783203, 1.4785156, 0.10235596, -1.8378906, -0.28955078, 2.5253906, 1.4189453, -0.43310547, 3.0253906, -3.2304688, -1.1230469, 1.6123047, -2.46875, -1.2109375, 4.2734375, 1.4980469, 1.1884766, 1.7041016, 1.3789062, -1.4550781, 0.4934082, -0.3828125, -0.21313477, -0.28735352, -1.6386719, 0.2529297, 2.1230469, -2.46875, -1.34375, -2.3457031, 1.1660156, -0.51953125, 0.57470703, 0.41186523, -1.4345703, -0.20898438, 2.0996094, -0.0131073, -0.71435547, -2.0996094, -1.453125, -0.19995117, -1.2958984, 0.71728516, -1.9580078, 0.13647461, -0.6777344, -0.7446289, -3.0351562, -0.796875, -2.1074219, -3.8867188, -2.9355469, -1.4619141, -0.47314453, -0.5175781, -0.3486328, -1.4882812, -1.5439453, -0.03451538, -1.8134766, -1.0019531, 0.13110352, -1.1796875, 1.3076172, -1.0791016, -0.77490234, 0.2890625, 1.3955078, 1.2392578, 0.3959961, -2.0332031, -2.828125, 0.44189453, -3.0449219, 0.39331055, -1.3984375, 2.6347656, -1.9775391, 0.04714966, 0.16662598, 0.50390625, 0.92822266, 0.34985352, 2.2890625, 1.4853516, -1.7167969, 1.3476562, -0.45288086, -1.6835938, -1.0566406, 2.3222656, -0.33740234, -2.5058594, -1.4423828, -0.23352051, -0.37158203, -2.1230469, -0.33569336, 2.8359375, -0.21691895, 2.1464844, -1.5439453, -0.3779297, 2.34375, 1.2851562, -0.8125, -1.4355469, -0.86279297, -0.0074310303, -2.2929688, -1.8417969, -1.5078125, 1.59375, 0.1295166, 0.5107422, 0.3317871, -0.13146973, -0.62402344, 1.4794922, -3.0722656, 3.1230469, -1.1474609, -3.5039062, 3.0292969, 0.4794922, 0.8183594, -2.6992188, -0.56103516, 1.3867188, 0.8027344, 1.5185547, 2.1640625, -1.4951172, 3.5410156, 1.9335938, -1.9501953, 0.60791016, 2.1953125, 1.3310547, -0.26586914, -3.3554688, 2.4511719, 1.4052734, 0.19946289, -0.2578125, -0.7363281, -0.0016918182, 2.8085938, 3.2578125, 1.3173828, 1.4482422, 0.48461914, 3.1308594, -0.94677734, -0.81884766, 0.24206543, -0.74853516, -2.2539062, 0.6586914, 1.1601562, 0.56689453, 1.6865234, 2.6367188, 4.0625, -1.578125, -2.4707031, -0.40649414, 1.2490234, 1.2802734, -2.7109375, 0.32910156, -1.0810547, -1.1933594, 0.1875, -0.3618164, -0.70947266, -0.4423828, 1.7880859, 0.7495117, -1.1738281, 0.84716797, -1.3603516, 0.73095703, 1.2919922, -1.0810547, 0.85791016, 0.41723633, -0.9785156, 0.68408203, -3.8164062, -0.91259766, -2.7480469, 2.2558594, -0.56152344, -3.15625, -1.6787109, 2.84375, -1.6611328, -2.0410156, 1.2998047, 4.1445312, -0.9042969, 1.5761719, -0.45629883, -0.71240234, 3.4765625, -1.3544922, -1.6181641, 1.3964844, -4.1640625, -0.7426758, -3.0195312, -0.14367676, -0.16723633, 0.5136719, 0.10876465, 1.1386719, -1.3955078, 1.5712891, -1.1201172, 0.8486328, -1.3115234, 0.23742676, -1.6513672, 0.71191406, 1.7519531, 0.21813965, 0.14172363, 3.6289062, 2.953125, -1.3291016, -0.25, -2.3847656, -0.71240234, -0.64453125, -3.4296875, 0.059753418, 0.7680664, -0.5288086, 2.7304688, 1.6181641, -0.97509766, 3.1582031, -0.16418457, 0.98876953, -0.8808594, -1.2509766, 1.8515625, 0.06677246, 0.6933594, 2.2246094, 0.8125, -2.0742188, -1.4951172, -2.1171875, -1.9570312, 0.6376953, 2.1230469, 0.7885742, 0.4260254, 0.8051758, 0.4152832, 0.8701172, -0.78808594, 1.9414062, 0.6777344, 0.3942871, -1.9208984, -0.34545898, 0.59033203, 0.59521484, 0.26416016, -1.2373047, 1.9179688, 0.5917969, -2.2539062, -1.0898438, 1.4980469, 0.24145508, -0.32104492, 0.6245117, -0.69091797, 0.72509766, -0.82714844, -1.0195312, -0.8769531, -1.8339844, 0.19494629, -1.8798828, 1.8378906, -0.22766113, 0.2668457, -0.53271484, -1.2080078, -0.16223145, -3.4960938, -0.44067383, 0.46679688, -0.5673828, 0.03466797, -2.2871094, -2.4121094, -2.359375, 0.94384766, -1.2763672, 0.80615234, 3.0957031, 1.4775391, 0.007209778, 1.0556641, -1.8320312, -0.9375, 0.87890625, -2.3847656, -0.45336914, -0.14245605, -0.8989258, 0.48632812, -1.2314453, -0.22192383, 0.3857422, -0.086120605, -0.39111328, -4.3320312, 0.20568848, -3.0839844, 1.7714844, -0.25512695, 1.2353516, -0.06652832, 1.7080078, 0.16442871, -2.2929688, -1.0253906, 0.5522461, -0.39208984, -1.203125, -0.60791016, 2.2636719, 1.2070312, 3.4609375, 2.2539062, 2.7636719, -0.96240234, 0.80029297, -2, 0.25341797, -0.93603516, 1.8320312, 1.953125, -0.3112793, -1.1386719, -1.1337891, 2.3496094, 1.7304688, -1.2050781, 0.32006836, 0.19116211, -4.3085938, 0.34033203, 0.27856445, -1.9052734, -0.04788208, -0.90234375, -2.4707031, 1.484375, -0.38232422, -2.1269531, 0.009048462, 0.7675781, -1.3222656, 1.8486328, -2.359375, 2.4980469, -0.009857178, -0.05596924, -0.9682617, -1.3076172, -0.9033203, -1.2792969, 0.93310547, -0.36743164, 1.7509766, -0.12408447, 3.546875, -1.2568359, -1.0878906, 1.5273438, -0.24963379, 2.4160156, -0.17236328, -1.7705078, -1.7529297, -2.2695312, 0.57470703, 1.4462891, 3.0683594, -0.7363281, 1.1474609, -1.0136719, -0.6123047, -2.5996094, 1.4726562, 0.9614258, -1.3330078, 3.015625, -3.8417969, -0.79345703, -3.4785156, 0.3408203, 1.8720703, 0.6074219, 2.3691406, -2.8691406, -2.1464844, 0.8925781, -0.8330078, -3.9101562, -2.4648438, -0.7265625, 1.2412109, -0.13623047, -1.4023438, -0.09539795, 0.7607422, 1.2080078, 1.8017578, -1.6943359, 0.36328125, -0.8457031, -1.6484375, -0.65185547, -0.16247559, -0.80859375, -0.07196045, 0.22094727, 0.9536133, 0.48046875, -3.2910156, -0.859375, 0.8671875, -2.6191406, -2.4472656, 3.1503906, 0.86572266, -1.1064453, 1.3603516, 0.61621094, -2.5371094, 3.0722656, -1.2734375, -0.26171875, 0.73339844, -1.5146484, 0.3388672, -1.6474609, -1.2011719, 2.7421875, -1.8857422, 1.7910156, 1.2841797, 0.26757812, 2.1191406, 1.2988281, -0.16003418, -1.3652344, -0.7626953, 3.5175781, 3.0019531, -1.4072266, -2.4316406, 1.3613281, -3.7226562, -2.7441406, -0.68603516, 0.30322266, 1.0996094, -3.4335938, 1.7753906, 0.61035156, 0.08642578, -0.0904541, 1.0537109, -0.60302734, 0.99658203, 3.5351562, 1.3496094, 3.25, 3.5742188, 0.6274414, 0.4753418, -2.6953125, 0.50683594, 1.1699219, 0.43652344, -0.78515625, 0.051696777, -1.3847656, -0.31518555, -0.63720703, 2.921875, -1.2128906, 1.4550781, 0.6586914, 1.1748047, 1.4755859, -3.8652344, 3.3789062, 0.32763672, 2.9160156, -0.7709961, 1.9384766, -1.2919922, -1.6201172, 1.6972656, -1.4072266, 0.20141602, -0.10272217, -2.3496094, -1.5039062, -1.9169922, -0.02961731, -1.3388672, 0.8359375, -3.1738281, 1.5039062, 0.6821289, -0.8276367, -0.88720703, 3.5703125, -0.40893555, 1.8271484, 1.6201172, 0.8383789, -1.8183594, -0.36206055, -0.87402344, -1.484375, 0.95947266, -3.4941406, -0.94677734, -0.6298828, -0.62841797, -1.3251953, 0.21020508, 0.5126953, 0.29467773, -0.82470703, 2.5195312, 0.36035156, 2.5078125, 3.1640625, 1.1669922, 5.0351562, 2.7089844, 0.082336426, 3.2558594, 4.2890625, 1.3056641, 0.037902832, -2.0078125, 2.3554688, 1.09375, -0.48632812, 0.8564453, 1.0263672, 3.8164062, -3.203125, 0.7348633, 0.41870117, 1.0673828, -1.6738281, 1.9521484, -2.8027344, -1.1181641, -0.16442871, 1.0019531, 1.5371094, 0.7441406, -0.3503418, -1.5146484, 0.17468262, 2.0136719, -5.5859375, 1.0585938, 2.2207031, -0.14477539, 0.69433594, 1.6279297, 0.7792969, 2.4003906, -1.1865234, 2.8730469, -1.2714844, 2.9570312, 2.9296875, -2.1816406, -0.12695312, 1.4091797, 0.8647461, -2.4140625, -0.9692383, -0.3383789, -0.54003906, -0.5366211, -0.2722168, 1.3769531, 0.08959961, 1.9501953, 2.3554688, 0.8129883, 0.49267578, 0.5463867, 3.0957031, -0.625, 1.2412109, -2.8789062, -2.2734375, -0.17199707, -0.0524292, 1.4677734, 2.0214844, 0.09466553, -3.5253906, 1.9072266, 0.2956543, 0.41723633, -0.92871094, 2.6367188, 1.6679688, -0.8354492, -2.4335938, -0.29858398, 0.6933594, 1.0996094, -2.6972656, 2.4804688, -0.57958984, -0.31054688, 1.3408203, 0.5205078, 0.7885742, -0.41870117, -0.029083252, -0.6147461, -1.4023438, -2.1054688, 1.5263672, -1.0097656, -0.29467773, -1.0039062, 0.71728516, 3.1308594, -1, 0.91503906, 0.94189453, 0.6328125, 2.2441406, 0.13891602, 1.0410156, -2.4238281, -1.6884766, -0.5864258, -0.9741211, -0.033721924, 0.75634766, 1.0537109, -1.2871094, -1.0517578, -1.03125, 0.77734375, 0.114868164, 0.2824707, 0.6582031, -3.5605469, 0.30419922, 1.8085938, -0.86816406, 2.4746094, 0.6777344, -0.041046143, -0.58496094, 0.055541992, -1.5654297, -1.1582031, -1.8720703, -1.0605469, 0.051940918, 5.7578125, 4.5039062, 1.3994141, -2.4824219, -0.2619629, 1.4130859, -0.2310791, 1.0244141, -0.064575195, -0.44018555, 0.21081543, -0.5629883, 1.9345703, -1.3613281, -1.4140625, -1.2744141, -0.94921875, 0.7631836, 0.09564209, 2.1621094, -0.7504883, 0.17565918, 2.8085938, 1.1074219, 3.7207031, 0.76708984, 0.61035156, 0.36450195, 0.3864746, -1.3945312, 3.4316406, -1.6953125, 0.89746094, -0.70410156, -0.31933594, 0.82128906, 0.21484375, 0.7373047, 0.45751953, -1.1074219]}, "B089NMPKBV": {"id": "B089NMPKBV", "original": "Brand: Techwood\nName: Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.\nFeatures: [\u2668 LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it's space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It's compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it's a perfect size for camping.\n[\u2668 FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food.\n[\u2668 HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n[\u2668 APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n[\u2668 GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.\n", "embedding": [-2.6582031, 0.69677734, 1.3730469, -0.3269043, 0.8359375, -0.78222656, 1.9902344, -0.35766602, -1.7070312, 1.3671875, 0.27929688, 1.640625, -1.1083984, -3.3085938, -1.4248047, 0.41088867, 0.74121094, 0.37353516, 0.67285156, -0.5004883, 0.4338379, 0.014831543, -0.2927246, -1.7880859, 0.045166016, -0.87841797, 2.5859375, -1.9550781, 0.80810547, -0.72314453, 1.1220703, -0.53466797, 0.0054473877, 1.9414062, -2.0898438, 0.6386719, -0.7939453, 2.3554688, 1.0976562, 0.08380127, -1.4130859, -2.9472656, 1.5253906, 2.1210938, -4.1210938, -0.36083984, -0.29296875, 3.6523438, 0.21484375, -0.3269043, 2.0722656, 1.4277344, 0.7246094, 0.060058594, -1.4638672, -0.09753418, -0.78759766, -3.5390625, 0.8930664, -1.6357422, 2.2148438, -1.8789062, 1.1210938, 2.3808594, -1.6230469, -2.0371094, 0.26538086, 0.11651611, -1.1181641, -0.9921875, 3.0664062, -0.9501953, -1.3818359, 1.0927734, -1.0048828, -0.37353516, -2.1015625, 2.0800781, 0.87402344, -1.0634766, -2.0839844, 2.7128906, 1.1279297, -1.9365234, 0.6166992, 1.0351562, -2.265625, 0.18188477, 1.7705078, 1.7617188, 1.1240234, 0.98339844, -1.7412109, -4.3671875, 1.9345703, 0.099853516, 0.01991272, -0.9814453, -0.7470703, 3.1523438, 1.5488281, 1.046875, -1.1123047, 0.31445312, -2.5859375, -1.4619141, 2.5058594, 1.2851562, -1.0644531, 1.1542969, -1.0957031, 1.5595703, -0.23657227, 1.4150391, 2.3085938, -0.56347656, -0.578125, 0.56884766, 2.7226562, 3.2167969, 3.5878906, 0.25146484, 1.3183594, -2.0058594, -0.27172852, -0.58447266, 0.51464844, 1.8037109, 3.3867188, -1.3710938, -1.3613281, -0.2286377, -0.28466797, 1.9521484, -1.3955078, -2.2675781, -1.1064453, -0.7836914, -1.6738281, 0.29785156, -1.3447266, 1.5478516, 2.2089844, -0.6904297, -2.4628906, 0.4934082, -0.265625, 0.17358398, -0.6196289, -1.7548828, 0.09039307, -1.8984375, -1.4912109, -3.0292969, 0.93408203, -0.099853516, -1.4023438, -0.2614746, 1.7636719, -0.8496094, 0.8310547, -1.9287109, -1.6064453, 0.011299133, -0.17504883, -2.4277344, -0.8378906, 1.4130859, -0.013694763, 1.7333984, 1.1035156, -1.4931641, 0.30419922, -0.97314453, 1.9921875, -1.9257812, -0.57666016, 2.8632812, 0.50390625, -1.3320312, 1.3613281, -0.453125, 1.2050781, 1.3095703, -0.71875, -0.002248764, 2.2109375, 0.3798828, 0.22680664, -2.1875, 1.5947266, 0.31860352, -0.5527344, -1.1416016, 1.2548828, -0.6298828, 0.5756836, -1.6503906, 2.2421875, 0.2854004, 0.8208008, 0.77197266, -0.7583008, -0.7348633, -1.7714844, -1.2158203, -2.6269531, -0.43066406, -1.6865234, 1.2900391, -0.042510986, -0.90625, 0.8647461, -0.7597656, 0.80908203, -3.4804688, 1.9199219, -1.9433594, 1.1103516, 2.7636719, -0.58496094, -0.10870361, -0.38671875, 3.1953125, -1.5693359, -0.049835205, -1.2373047, -0.5288086, -0.21264648, -0.38305664, 0.96240234, 0.022659302, 1.2304688, 0.19787598, -1.5429688, 1.3027344, 1.6005859, -0.031341553, -0.8828125, 1.6269531, 0.2076416, -2.1914062, -0.02519226, -0.14697266, -2.0722656, -1.0917969, -3.7519531, 4.0429688, 0.21240234, -1.9628906, -1.1201172, 0.45214844, 1.5175781, 2.7773438, 0.92822266, 0.3203125, -0.8535156, 0.4025879, -4.3085938, -1.5722656, -0.13769531, 1.6660156, -0.6611328, 1.0234375, -0.68359375, -1.0410156, 3.0976562, 0.44726562, -2.7714844, -2.4960938, 0.82177734, 0.115478516, 0.16381836, 1.0791016, 2.2070312, -0.42016602, -0.6796875, 0.005176544, -0.6508789, -0.8984375, 1.0498047, 1.5292969, 3.1347656, -0.45581055, -0.4272461, -1.6806641, -0.74121094, -0.7578125, 1.6269531, -0.2783203, 4.9101562, 0.23693848, -3.3417969, 3.5195312, -4.7890625, 0.51464844, 1.0830078, -1.0839844, 0.4321289, 0.6850586, 2.7109375, 0.92285156, -1.1181641, -0.45922852, -2.5351562, -0.77783203, 0.27978516, -2.2167969, -0.10064697, 1.4257812, -0.95654297, -1.9892578, -1.6591797, -0.3762207, -3.2578125, 0.13745117, 0.58740234, -1.7285156, 1.3994141, 2.4726562, -0.72021484, 1.1289062, 0.36791992, -1.6152344, -2.2949219, -0.37524414, 0.5883789, -0.12524414, -0.23876953, -3.34375, 0.33813477, -1.7050781, 1.1884766, -0.97509766, -1.0742188, -2.0449219, -2.2304688, -3.1992188, -0.23095703, 0.56103516, -1.6240234, 0.3935547, -1.5566406, -1.6132812, -0.77783203, 0.008850098, -0.9082031, 0.33081055, 0.13977051, 3.0390625, 0.85546875, -0.02128601, 2.1191406, -4.15625, -1.0341797, 0.6611328, 0.82128906, 0.6279297, -3.1015625, 0.24035645, -0.55859375, 1.0800781, -0.43481445, 0.44799805, 1.1630859, -0.5498047, -1.4306641, -3.296875, -0.17834473, -1.1074219, -1.4375, 0.32177734, 0.010047913, -1.4765625, -1.65625, -0.7504883, -0.04144287, 2.9277344, 0.8520508, 3.2441406, -0.42089844, 1.1279297, -0.051879883, 0.18286133, -0.8828125, -2.4824219, -0.92871094, -1.7988281, 0.2705078, -1.5537109, 0.9296875, -1.2871094, -0.54052734, -1.3222656, 1.9570312, -0.6401367, 0.10821533, -1.6337891, -0.32739258, 0.37280273, -1.6396484, -1.1904297, 0.1953125, -2.7207031, 0.5332031, -1.5976562, -1.4755859, 0.17993164, 1.0488281, -0.3935547, 2.8007812, 0.8051758, -0.1541748, -0.03741455, 1.9296875, -2.5234375, 2.9453125, 0.44335938, -1.8125, -0.32836914, 0.28393555, -0.61083984, -1.2080078, 1.3417969, 3.0546875, 0.76904297, 0.97265625, -0.043273926, -0.62109375, 1.7910156, 2.0039062, 0.31689453, -0.42822266, 0.3713379, 2.3476562, -3.5859375, -0.46606445, 1.3046875, 2.09375, 0.6298828, -0.18688965, 1.5107422, 1.9423828, 1.7246094, 2.6035156, 2.3457031, 0.82666016, -1.9082031, 1.7753906, 0.043640137, 0.265625, 0.75390625, -1.2089844, 0.45141602, 0.16210938, 2.0625, 1.4335938, -0.29492188, 1.4394531, 2.1308594, 0.5205078, -0.6855469, -1.0966797, 0.30004883, 1.3789062, 0.8071289, 1.6972656, -0.18395996, -3.0195312, 0.10131836, 1.328125, 0.19689941, 0.62890625, -1.8095703, 3.0722656, -0.7553711, 0.80566406, 0.42163086, 0.70947266, -0.82666016, -2.4492188, 0.7089844, -2.6308594, -1.2099609, 0.67529297, -1.8916016, -3.1777344, -3.2539062, 1.7871094, 0.060424805, -1.3486328, 1.2128906, 3.4414062, 0.48046875, -1.3251953, 0.12976074, 2.1777344, 0.57958984, 1.5283203, -0.31958008, -1.0126953, 0.9580078, -2.4394531, 2.1386719, 1.3027344, 1.1630859, -1.5546875, 0.73779297, -0.39990234, 0.023025513, 1.4277344, 1.7060547, -1.4511719, -1.4980469, 0.71533203, -2.5976562, -1.0664062, 0.064453125, -2.2128906, -0.32104492, 1.9316406, 0.28051758, 1.4804688, -0.5, 1.4160156, -1.6757812, -2.7402344, 2.1328125, -2.5371094, 0.09063721, -2.3105469, -4.75, 0.79003906, 0.099243164, -0.6430664, 2.9023438, 0.083984375, 0.9448242, 3.046875, 0.609375, -0.22290039, -0.37353516, -3.0078125, 0.32348633, -2.1601562, 1.1708984, 0.07409668, -0.11920166, -2.4609375, -1.6220703, -0.7685547, 0.4946289, 3.3242188, 2.5410156, -0.7685547, 1.2470703, -2.7617188, -1.3339844, -0.63378906, -0.45117188, 0.60253906, 0.16894531, 0.36743164, 2.0976562, -0.8989258, 1.3808594, -0.09320068, 0.8100586, 0.8959961, -1.6533203, -3.2363281, -0.64941406, 2.4160156, 1.4345703, -0.5449219, -2.1054688, -2.0546875, 0.87841797, -1.4541016, -1.0234375, -0.84033203, -0.4169922, -2.5664062, 1.7998047, 1.3447266, 0.8198242, 0.953125, 0.022155762, -3.2597656, -1.8505859, -0.17333984, -2.2929688, -3.078125, -1.5976562, -0.042419434, -1.0068359, -1.4277344, -0.6020508, -2.1074219, -1.0019531, -1.6386719, -0.71191406, 3.1445312, 3.0742188, 3.4316406, 4.6914062, -1.2558594, -0.36791992, 2.0703125, -1.5498047, 0.04373169, -0.27929688, -0.09088135, -1.5361328, -0.11968994, 1.9589844, -2.1640625, -1.0410156, -1.2685547, 1.4707031, -0.12017822, -2.6933594, 1.5019531, -0.19824219, -0.1194458, 1.1337891, -1.8388672, 1.7353516, -1.7988281, -0.04373169, 0.52734375, 0.9633789, -1.0996094, 0.0869751, -0.16662598, 1.1025391, 1.2207031, 1.3251953, 1.0410156, -1.0527344, 0.11462402, 1.1074219, 3.1816406, -0.62353516, -0.1697998, 0.9375, -1.2978516, 2.53125, 0.07122803, 2.5273438, 1.3476562, 0.4580078, 2.25, -0.5371094, -1.5351562, 0.38378906, 0.04650879, -1.7089844, 1.5878906, 1.3496094, -1.3242188, 2.8261719, -0.1776123, -2.953125, -1.4726562, 0.71972656, -1.0019531, 0.5209961, -1.2802734, -1.1298828, 1.7128906, -1.7294922, 0.6611328, -0.27539062, -0.94433594, 3.359375, -0.30859375, -0.3798828, -1.3173828, 1.2128906, 2.4414062, -1.8544922, -1.1484375, 2.3828125, 0.13476562, 2.1914062, 0.97021484, -0.19445801, -2.1484375, -3.0488281, 1.8173828, 0.36108398, 2.8808594, 0.19494629, 1.1728516, -1.5771484, 2.2480469, -4.5546875, 4.890625, -3.5917969, -0.5917969, 2.25, -3.0214844, 1.453125, -1.5498047, 0.15930176, 0.94921875, 2.4355469, 2.1992188, -1.9179688, -0.7548828, -0.0647583, -1.9472656, -3.5625, -1.7919922, -0.24157715, -0.53027344, -0.6479492, 2.9707031, -2.5117188, -1.6425781, 1.9492188, -0.26416016, -0.27539062, -0.62890625, -0.44628906, -1.9951172, -1.8271484, 0.6152344, -0.011161804, 2.1113281, 3.1796875, 1.0107422, 0.10430908, -4.8945312, 0.7919922, 0.13256836, -1.1083984, 1.0107422, 1.2988281, 1.5615234, 0.19519043, 1.2675781, 0.62402344, -1.5068359, 3.4550781, -1.8964844, -0.18896484, 1.6083984, 0.31420898, -0.09454346, -2.6796875, -1.5595703, 0.42285156, -2.7402344, 1.4375, 0.21850586, -2.3554688, 0.5283203, -0.43603516, 0.62939453, -0.89404297, 0.89941406, 1.4609375, 1.7324219, -0.56103516, 0.22497559, 0.04107666, -2.8847656, -3.2148438, -0.8364258, -1.1074219, 0.35766602, -2.9667969, 0.3557129, 2.4550781, 0.22595215, 1.2138672, 0.14746094, -0.064453125, -2.5371094, -0.41137695, -0.20605469, 2.0371094, 0.5629883, -2.4492188, -1.5429688, 0.20007324, -0.23718262, -0.18115234, -1.1152344, -0.8881836, -0.66015625, -1.1142578, -0.84765625, 1.8144531, 3.625, 2.4140625, 0.103515625, 1.1210938, 0.35498047, 1.3876953, -1.8300781, 0.4970703, -0.5292969, 3.3105469, 0.21484375, 3.4960938, -0.41674805, -1.0820312, 1.53125, -0.6953125, 2.4589844, -0.4111328, -4.8671875, 0.87841797, -0.6357422, -0.6411133, -2.7363281, -0.3166504, -3.8085938, 1.7597656, 1.1982422, 0.13305664, -2.2792969, 4.0703125, 0.7163086, 4.875, 2.8027344, 0.6743164, 1.0712891, 1.34375, -0.421875, 0.24035645, 2.953125, -0.93652344, -0.09436035, -0.8022461, -1.4951172, -1.2646484, 1.6904297, -0.6333008, 2.7714844, 1.5302734, 1.2939453, 2.71875, 2.0273438, 1.6552734, 0.33007812, 0.13708496, 2.3164062, -0.2644043, 0.32617188, 3.2109375, 3.2480469, 0.32885742, -0.8408203, 2.1699219, 0.60839844, 0.17028809, 0.006816864, 1.2236328, 0.2475586, -4.7695312, 2.2304688, 1.0458984, 0.4633789, -1.1542969, 0.21716309, -2.0722656, -0.97021484, 0.08392334, 1.1005859, 1.9365234, 0.64697266, 0.7104492, 0.6230469, 0.3269043, -1.2773438, -3.6738281, 0.47509766, 0.98876953, 0.30444336, -1.0224609, 1.9492188, 0.98046875, 1.2773438, -0.7167969, 0.67041016, 2.3222656, 0.06573486, 2.921875, -1.0800781, -0.43041992, 0.22436523, 2.5625, -0.6899414, -0.39086914, -0.6777344, -0.92285156, -2.7148438, -2.8886719, 1.7177734, -0.7475586, 2.6289062, 2.1894531, -2.3242188, 0.6689453, 1.4248047, 2.2246094, -1.4003906, 1.8886719, -1.7304688, -1.2216797, -0.6196289, -0.6586914, 1.5595703, 2.921875, -0.34838867, -0.6538086, 2.6582031, 0.5854492, 2.1972656, 0.6201172, 0.10418701, -0.83935547, 0.08795166, -0.20214844, 0.7714844, 2.8144531, -1.2753906, 0.13415527, 0.86376953, 1.4394531, 0.27783203, 0.9511719, -2.1835938, -0.45922852, -0.6489258, -1.5732422, -0.9033203, 0.06536865, -3.2734375, -1.2587891, 0.67871094, -0.32641602, -1.7958984, 0.83935547, 1.0585938, 2.3964844, 1.0751953, -0.039978027, -0.8955078, 0.49438477, 0.8144531, 0.46142578, -0.034332275, 1.7177734, 0.9980469, -1.2548828, -0.5600586, 0.6411133, 2.1347656, 1.3330078, 0.29760742, 0.9013672, 1.4638672, 0.33691406, 2.4316406, -0.1652832, -1.6689453, -1.4785156, 1.2333984, -0.0871582, 1.2324219, 3.8417969, 1.2998047, -1.7578125, -1.8984375, -2.6191406, 0.64160156, 1.0195312, -1.7900391, 1.3544922, 3.1855469, 1.5410156, -1.1738281, -4.046875, -1.6699219, -0.70996094, -1.2109375, 2.6777344, 0.028244019, -1.3925781, 0.4609375, -1.6933594, 1.1845703, 1.0605469, -0.5385742, 0.9951172, -0.04425049, 0.74072266, 1.2197266, 2.3359375, 2.1894531, 0.7338867, -0.13317871, 2.4863281, 1.3583984, 0.17480469, 1.5898438, 1.7519531, 0.59472656, -3.1894531, 0.66503906, -0.2253418, 1.9404297, 1.0292969, 0.3737793, 0.7368164, 0.1529541, 0.16882324, -2.2929688, -3.453125]}, "B001AUPQVM": {"id": "B001AUPQVM", "original": "Brand: Weed Dragon\nName: Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit\nDescription: \nFeatures: Quickly hooks up to any refillable propane tank (20lb cylinder recommended)\nComes with a hand-tighten tank fitting\nThis torch kit has plenty powerful and generates heat up to 2,000-degrees F\nThe Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval.\nMade in the U.S.A.\n", "embedding": [-0.15283203, 2.1992188, 3.7480469, -0.87402344, 0.11016846, 0.16516113, 1.6269531, -0.032318115, 0.24023438, -0.2919922, -0.8510742, 0.9038086, 0.6269531, -4.3085938, 0.9580078, 1.3388672, -0.06359863, 2.3671875, 0.6665039, -1.3632812, 1.5644531, 0.011726379, 1.7265625, -0.7060547, -0.25830078, -0.77490234, 3.828125, -2.2890625, -0.890625, 1.5039062, 1.9169922, -0.65771484, 1.6884766, 1.0527344, -1.71875, -0.67626953, -1.8027344, 0.030090332, -3.0585938, -0.48461914, -0.61572266, 2.2734375, 0.26953125, 0.8725586, -3.3203125, -0.2454834, 0.3935547, 0.23937988, 0.12561035, -0.4794922, 3.0351562, 0.7163086, -1.0068359, -0.5385742, 0.9819336, 2.203125, -0.5107422, -3.2558594, 0.93066406, 0.74365234, 1.6416016, -0.63134766, -2.4140625, -0.10675049, 1.0205078, 1.4902344, -1.3564453, 1.9667969, 0.9667969, -1.5410156, 3.7460938, 1.5244141, 0.6513672, -0.85839844, -0.15039062, -0.8129883, -4.2382812, 1.5117188, 1.8964844, -1.078125, 1.2890625, 2.5859375, -0.2166748, -2.1933594, 0.42700195, -1.7900391, -0.28979492, -0.4182129, 0.7163086, 0.7036133, -2.8222656, 3.3144531, -0.56103516, -4.4335938, 0.90234375, 0.058410645, -0.78759766, -0.56640625, 1.1933594, 1.0380859, 1.0283203, -0.29541016, 0.2590332, 0.39233398, 0.31201172, 1.03125, 1.3701172, 0.2902832, -1.8330078, 1.3349609, -2.7617188, -2.0820312, 0.14025879, 0.6777344, -0.8076172, -1.1591797, 0.31445312, -0.8154297, 3.0234375, -1.2558594, 3.6386719, -0.91748047, 0.5048828, 0.43896484, 2.6894531, -0.5385742, -1.0527344, 2.9785156, 4.7265625, -1.0878906, 1.4306641, 1.9453125, 1.6757812, -2.1484375, 0.48999023, -1.3144531, -0.79296875, -1.5166016, -1.2021484, -1.5878906, -1.6787109, -0.8959961, 1.2138672, -1.8925781, -4.1289062, 0.26879883, 0.65283203, -0.73535156, -0.13598633, -1.0859375, 0.7753906, -1.6865234, -0.7080078, -3.0371094, 1.1933594, 2.6816406, -1.1445312, -1.7919922, 1.5498047, 1.1992188, 0.9404297, -0.50146484, -0.24658203, 1.7792969, 1.1201172, -2.0917969, 0.31640625, 0.03829956, 0.17480469, 1.46875, -0.21899414, -0.8925781, -1.0322266, -0.16967773, -0.4716797, -2.2890625, 0.99072266, 2.140625, -0.23803711, -0.8457031, -1.5947266, 0.2121582, -0.13452148, -0.0362854, -1.4726562, 0.9086914, -2.3632812, -0.05899048, 1.2109375, -0.5839844, 0.086120605, 0.25024414, -1.3359375, -0.43310547, 3.1542969, -0.6035156, -2.1386719, -0.67089844, 1.7617188, 0.3618164, -0.56396484, -1.8994141, 1.9765625, 0.13586426, -1.6835938, -1.4931641, -0.064819336, -0.42797852, -0.13354492, -0.95947266, 1.3574219, -0.6323242, 1.4511719, 0.9296875, -0.64404297, -2.2402344, -1.0615234, 0.13879395, 0.086242676, 0.32983398, 1.8310547, -0.5546875, 1.1191406, -1.2568359, 0.89404297, 0.6308594, -1.25, -0.16259766, -2.4628906, -0.7597656, -0.23095703, 0.19104004, 0.7675781, 1.3144531, -1.6640625, 1.8085938, -0.023864746, -2.0371094, -0.16003418, 0.29174805, 1.1269531, 1.3457031, -2.5878906, 1.1650391, -0.3840332, 0.9057617, 1.640625, 3.8046875, -1.2226562, -1.0292969, 0.091674805, -1.3994141, 1.4150391, -0.30859375, 0.07751465, -0.12249756, -0.32861328, -0.5029297, 0.18688965, 0.69433594, 3.4140625, 0.61328125, -3.1035156, -0.36621094, -0.10998535, -0.7607422, 0.96435547, 1.4853516, 0.80029297, -1.3173828, -1.5908203, 1.4003906, 0.08392334, 0.43896484, 3.4980469, 2.4003906, -1.296875, 1.359375, -0.45532227, 1.3349609, 0.5473633, -0.765625, 0.7558594, -2.0351562, 2.4902344, -0.059173584, 0.5463867, -1.359375, -1.6757812, 1.1582031, 4.1640625, 0.15319824, -3.6425781, 2.3769531, -0.39453125, 1.0703125, -0.94921875, 0.9121094, 1.0722656, -0.50390625, 0.05114746, -0.9897461, -3.3964844, -0.31298828, -0.41845703, -0.43603516, 1.3759766, -1.4248047, 2.8945312, 0.7495117, 0.81591797, -0.2541504, -0.20544434, 0.34057617, -1.2910156, -0.38183594, 1.9765625, -3.3417969, 0.54785156, 0.2861328, 1.0585938, 0.79345703, 0.62597656, -1.96875, -0.3737793, -0.828125, -1.4619141, 1.2128906, -0.25561523, -0.36206055, 0.37329102, -0.061798096, 0.3876953, -0.42285156, -0.2277832, 0.25390625, -0.007507324, 0.027709961, 0.31933594, -1.5185547, -1.2382812, -0.09423828, 0.6801758, -0.8666992, 3.09375, -1.4023438, -0.79052734, -0.42895508, -2.1269531, -0.8588867, 1.4433594, 2.7441406, 0.5317383, -2.8476562, 0.6308594, -0.6147461, -1.7373047, 1.0009766, -2.8378906, 0.43847656, 0.7114258, -1.0517578, 2.0566406, -0.28515625, 0.2770996, -1.7216797, 2.5097656, -0.41381836, 1.3916016, -0.81347656, 2.6074219, 2.7148438, 1.4355469, 0.6533203, -2.2402344, -0.14562988, 0.062683105, 2.15625, 0.8730469, 1.9296875, -1.7304688, -1.6689453, 2.9628906, -1.0283203, -2.515625, -0.47973633, -2.2441406, -1.1455078, -1.9033203, -2.65625, -1.6142578, -1.7998047, -0.82470703, -0.1237793, -1.6152344, 1.2900391, -1.265625, -0.0446167, -0.39233398, 1.3359375, -1.7255859, -0.13122559, -3.6015625, -0.12414551, 1.0527344, -1.8427734, -2.8125, -1.9560547, 2.6269531, -1.6679688, 0.7729492, 1.0859375, -0.43847656, 2.1132812, 1.2773438, -2.5097656, 3.765625, 0.16052246, 2.4375, 0.54833984, -1.7529297, -0.73095703, -2.0761719, 1.4257812, 3.5488281, 0.37329102, 0.91552734, 0.95751953, 1.4453125, -1.6689453, 1.5927734, -1.4277344, -0.63671875, 0.4946289, 2.7148438, 0.6538086, 0.8310547, 0.7548828, 1.8408203, -2.2480469, -0.44995117, 0.31689453, -1.1923828, 2.9492188, -0.36987305, -0.20056152, -0.45654297, -0.017242432, -0.3474121, 1.9169922, -0.47631836, -1.4472656, -2.3886719, -1.625, 0.38793945, -1.3203125, 1.6455078, -0.3474121, 1.4902344, 3.3007812, -1.6552734, 1.3310547, -0.73876953, -1.1171875, -1.3789062, 0.7661133, 0.6713867, -1.0742188, -1.2480469, 0.020736694, -1.6542969, 0.86816406, -0.7685547, 0.5073242, 2.0429688, 0.20581055, -1.3964844, -0.5419922, 1.5771484, -0.8598633, -2, 1.9833984, -1.0585938, -0.6357422, 0.07409668, -2.2285156, 2.4511719, -6.0507812, 1.3046875, 0.4038086, -1.8037109, -0.43066406, 0.4975586, -2.4941406, -0.99121094, 1.1054688, -2.1113281, -2.8613281, 3.3183594, 0.13378906, -1.9208984, -0.31591797, -2.8125, -0.8671875, 2.3867188, 0.31420898, -1.7548828, 1.6171875, -1.7207031, 0.29711914, -0.33642578, 0.5942383, 0.68603516, -0.118896484, 1.640625, -1.8710938, 0.9663086, 2.0136719, -0.46411133, -1.9902344, -0.50927734, -0.6333008, -0.77783203, 1.2548828, 4.2734375, -1.0898438, 1.1767578, 0.95703125, -0.016296387, -0.84277344, -1.1953125, -1.984375, -0.29785156, -1.4853516, -0.6142578, 2.8378906, 0.51464844, 0.765625, 1.7890625, 1.8251953, -0.3017578, -2.1660156, 1.2685547, 3.1386719, -2.3164062, 1.3037109, -0.23132324, -0.20458984, -2.1542969, -0.09729004, 0.19348145, 1.6621094, 1.9228516, 2.2148438, -0.12084961, -0.55029297, -0.1105957, -1.3330078, -1.9746094, 1.0195312, 3.8144531, -0.08190918, -0.15881348, -1.4443359, 1.1132812, 1.3789062, 0.21716309, 1.2197266, 3.109375, 0.75927734, 0.13122559, 1.3554688, -1.8222656, 1.8212891, 0.56396484, -0.72998047, 0.10864258, 0.64453125, -0.61621094, -1.0771484, -1.2929688, 0.7519531, 0.47631836, 0.4873047, -0.52783203, 0.7416992, 2.8222656, 0.8745117, -2.2011719, 1.3261719, -1.4130859, -1.3330078, -1.0576172, -0.38500977, 0.072021484, -1.5224609, 1.5527344, -1.2832031, -0.80029297, 0.38256836, 0.7739258, -0.6611328, 0.1977539, 2.140625, 0.35986328, 0.5859375, 0.7866211, -0.63183594, -1.2001953, 1.4609375, 0.51171875, -0.19494629, 0.8486328, -1.2304688, -0.0715332, -0.18334961, -0.26708984, 1.9277344, 1.4091797, -1.6132812, -0.22680664, -1.0009766, 0.9765625, 0.2932129, -0.31274414, 1.7373047, -0.41333008, 3.1230469, -0.63378906, -1, 1.2910156, 0.54833984, -2.9238281, 1.6855469, -0.45166016, 0.22180176, 0.31079102, -0.16564941, 3.0996094, 0.77685547, 3.1191406, 1.4716797, 1.2207031, 1.2070312, 0.6196289, 1.0273438, -1.0693359, -0.018371582, 1.0859375, -0.24365234, -0.54785156, 0.3935547, 1.0400391, 2.5488281, -3.0703125, 0.8051758, 2.6796875, -2.8515625, 1.2880859, -1.4951172, -1.3759766, 2.0839844, -1.0566406, -0.55566406, -0.77783203, 3.4355469, 0.7714844, 2.1445312, -1.78125, -0.92871094, -2.3144531, -1.1025391, -1.6015625, -3.5683594, -0.17114258, 0.37036133, 0.90234375, -0.5551758, -1.3710938, 1.2900391, -0.8623047, 0.14709473, 0.6489258, 0.15466309, -3.5292969, -2.4394531, -1.3505859, -0.054229736, -4.2851562, 1.4882812, -0.76953125, 0.86279297, 0.040740967, 1.8808594, 0.30541992, -1.9765625, -1.1210938, -0.88134766, -0.5102539, -0.48901367, 0.46557617, 2.1796875, -0.66748047, 2, -1.9746094, -2.6757812, -2.0957031, -0.09301758, 1.0068359, -2.8476562, -0.26879883, 0.27978516, -2.5722656, -2.0019531, -2.6796875, 0.5341797, 0.3388672, 0.00073862076, -1.4863281, -0.81933594, 0.13562012, -0.29882812, 0.5415039, 0.14831543, 0.15539551, -0.6040039, -1.0410156, -1.9589844, 0.049987793, 0.890625, 0.75390625, 1.0566406, -1.1386719, -0.7890625, 0.9916992, -2.2773438, 0.54296875, -0.60498047, 1.5332031, 1.0078125, -0.051757812, 1.1240234, 3.015625, -0.3696289, -1.5839844, 0.5395508, -4.515625, -0.18005371, -0.50390625, -1.8183594, -0.43823242, 0.7167969, -0.10119629, -1.2880859, 4.7851562, 1.9394531, -0.09326172, -0.37573242, 0.099487305, 0.04638672, 0.76123047, -0.8178711, 1.2197266, 0.24072266, 1.4599609, -0.076660156, -0.51953125, -0.40014648, 0.5488281, -1.0595703, 0.6870117, -1.6181641, 0.91748047, 0.34692383, 0.0513916, -1.3505859, 1.8720703, 0.03665161, 0.67822266, 0.059661865, -2.265625, 1.1738281, -0.8930664, 4.8671875, 0.16711426, -2.1660156, -1.3193359, -2.8007812, 2.453125, 1.9462891, -1.9726562, -1.8544922, 1.3359375, -2.3007812, -0.8095703, -3.3476562, 1.2451172, -0.3232422, 0.61279297, -2.5351562, -1.1835938, 2.6699219, -2.2167969, -0.019302368, 0.3701172, 0.28393555, 0.06213379, 0.9760742, 3.2519531, -2.5703125, -0.89697266, 0.59228516, 0.44482422, -0.51953125, -1.2148438, 1.9101562, -0.41577148, -0.4272461, 0.08868408, -1.3564453, -1.9609375, -0.07696533, 1.8232422, -1.0107422, -0.0047302246, 2.1015625, -1.0205078, 1.7724609, 2.3554688, -0.86621094, -1.0761719, 0.16833496, -3.0429688, 0.95458984, 2.2050781, -1.9179688, 3.0839844, 0.99853516, 0.36450195, -1.0927734, -1.1650391, -2.6679688, 0.5107422, 2.84375, 2.3007812, 2.1328125, 0.98535156, -0.37329102, 0.79541016, 1.8388672, 3.2265625, -0.48657227, 2.3789062, 1.5976562, 3.2539062, -1.8935547, -1.7822266, -0.20654297, -0.5053711, 2.4121094, 0.5175781, -0.3581543, 1.7324219, -2.4199219, 0.05734253, -1.9443359, -0.18920898, -1.1142578, 1.2646484, -1.1611328, 0.13879395, 2.2753906, 0.6977539, -0.6166992, 0.51171875, 1.1005859, -1.3857422, -2.3066406, 0.40039062, -1.6171875, -0.31445312, -0.96777344, -2.5957031, 0.62402344, 2.1367188, 0.66552734, 1.2607422, -0.6479492, -1.2822266, -0.70703125, 1.34375, 1.9960938, -0.13452148, 0.041809082, 0.82714844, -0.7871094, 1.2490234, 0.06854248, 1.9423828, 0.51123047, -1.8701172, -2.9453125, 2.5058594, -0.009994507, -1.1582031, -0.7607422, -3.5097656, -0.27075195, -2.3613281, 2.0566406, 0.0814209, 1.1962891, -1.3535156, -1.9941406, 2.4199219, 1.0576172, 1.0566406, 2.8769531, 0.41455078, -1.0039062, 0.7314453, 0.64990234, 0.7109375, -0.14367676, 3.3730469, -1.3212891, 0.58740234, -0.47851562, 2.6542969, -0.18688965, -3.0019531, -1.5019531, 3.8066406, -1.7021484, 0.16174316, 1.2529297, -0.6347656, 1.6376953, 0.4868164, 0.2915039, 1.1474609, -1.40625, -2.2050781, 0.44311523, -0.8876953, 0.01525116, 2.0195312, -1.5273438, 4.2109375, -0.37231445, 1.1318359, 3.15625, -0.045928955, 0.19226074, 0.5546875, -2.3261719, -2.0039062, 0.014892578, 0.5996094, -1.4658203, -1.5322266, 2.0273438, 3.2441406, -1.1494141, -0.84228516, -2.9863281, -1.1191406, 0.41577148, -0.34448242, 0.2368164, -0.9760742, 0.56640625, 3.3886719, 0.6020508, -0.33862305, 0.24072266, 0.4790039, 1.3232422, -0.12780762, -3.203125, -0.16870117, 1.2666016, 0.7363281, 2.4667969, 1.0097656, -1.1386719, 0.54052734, -1.9892578, -1.8876953, -0.9716797, -0.9584961, -0.1138916, 0.9560547, 0.41381836, -0.06335449, -0.33374023, 0.5917969, 0.13146973, 0.6323242, 0.53808594, -1.296875, 2.2265625, 0.57714844, -0.12249756, -1.1259766, 0.9082031, 0.56640625, 3.1484375, 0.5307617, 0.51708984, -0.14990234, 0.7055664, -1.7060547, -1.2666016, -0.7817383, 0.828125, 3.3515625, 0.71728516, 1.0664062, 1.3242188, 0.89208984, -0.5839844, -1.3134766, -3.1015625]}, "B07Z4H47Z2": {"id": "B07Z4H47Z2", "original": "Brand: STYDDI\nName: STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More\nDescription: STYDDI let you eat like a king!

          The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

          If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

          The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

          This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


          Specification:
          Material: Rubber PVC + Brass
          Length: 4 feet / 48 Inch/122 cm
          Gauge reading: 0 \u2013 60 PSI (1- 400kpa)
          Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
          Fryer Accessory Type: High Pressure Regulator
          Outdoor Living Product Type: Fryer Accessory
          Inlet Pressure: 25-250PSIG
          Outlet Pressure: 0-30PSIG
          Certificate: CSA\nFeatures: ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners.\nBUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy.\nA MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8\"-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It\u2019s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout.\nEXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically.\nEASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.\n", "embedding": [-1.0693359, 2.3066406, 2.0507812, 0.4633789, -0.45825195, 0.5727539, 1.9111328, -0.28466797, 0.8027344, -0.19396973, 1.3994141, 0.6826172, 1.8291016, -0.1743164, 2.0878906, -0.14038086, 0.57177734, -0.68652344, 0.2368164, 3.3769531, 0.79296875, 0.40185547, 1.9453125, -0.8120117, 1.9492188, -0.6904297, 3.7558594, -2.7734375, -0.32885742, -1.5820312, 1.6308594, 1.3671875, 1.2988281, 0.5629883, -1.9248047, -1.4404297, 0.64697266, -0.89208984, -2.8867188, -0.3059082, -0.96972656, 0.59814453, 1.1220703, -0.07928467, -2.5410156, 0.9736328, 0.8666992, -0.024856567, 0.17016602, 0.93603516, 1.5732422, -1.2158203, -0.36254883, 1.4882812, -0.15344238, -0.4494629, 0.40234375, -2.3339844, 1.8037109, 1.3164062, 1.6953125, 0.7832031, -2.0722656, -0.18981934, -1.0458984, 0.4489746, 0.40576172, -0.17382812, 0.59375, 0.6767578, 1.3505859, 0.23486328, 1.25, -0.5673828, -0.1743164, 0.2685547, -2.2597656, 0.70458984, 5.2421875, 0.21740723, -1.2734375, 0.6850586, 0.3269043, -1.3847656, 1.6953125, 0.050689697, -0.50634766, -0.30810547, 2.5898438, 1.8515625, -2.5722656, 2.0449219, -2.5566406, -5.078125, 1.1025391, 0.94384766, 1.6337891, -0.03265381, 0.90966797, -0.16430664, -1.5009766, -1.0048828, 1.0947266, 2.2539062, -1.0673828, -0.19299316, 0.3647461, 2.8203125, -3.6484375, 0.5517578, 0.25317383, 1.0117188, 1.1220703, -2.2109375, 1.5039062, -2.8300781, -0.40234375, -1.4912109, 3.7851562, 1.8515625, 2.796875, 0.30444336, 0.15209961, 1.0898438, 0.7915039, 1.1367188, -0.7128906, -0.6347656, 4.3398438, -1.3447266, 0.23999023, -2.9042969, 1.4189453, -0.23205566, 0.41259766, -2.3496094, -1.3339844, -1.7216797, -2.921875, -1.3046875, -3.34375, -0.48706055, 0.8364258, 0.64208984, -2.2695312, 0.6635742, -1.4042969, 0.7680664, 2.1503906, -2.5390625, 2.6875, -1.6806641, -0.023529053, -0.23510742, 2.1523438, 0.6484375, 0.12597656, 0.02418518, 1.4375, 2.2050781, 1.0615234, -1.6640625, -1.8554688, 2.0410156, 1.3027344, -2.2851562, 0.83935547, 0.0043640137, 0.26611328, 1.6074219, -0.19812012, -2.2011719, -1.1669922, 0.6323242, -0.5126953, -1.1191406, 0.010139465, 3.0742188, 1.4384766, -0.10290527, -3.0683594, -1.9941406, 0.037200928, -0.5683594, 1.0732422, -0.2388916, -0.64453125, 0.1104126, 1.2744141, -1.7060547, -1.8613281, 0.74121094, 0.10192871, 1.4492188, -0.053466797, -2.0566406, -2.7207031, -1.9882812, -1.4414062, 0.5136719, -0.28881836, -1.8154297, 0.97802734, -0.24389648, -1.8310547, -1.5390625, 1.0009766, -1.2734375, -0.55322266, 3.0253906, 0.72998047, -1.6689453, 0.9560547, -1.1347656, 0.076538086, -2.8300781, 0.6542969, 3.3691406, 0.49389648, 0.24023438, 0.117370605, 0.21081543, -0.43188477, 0.59277344, 0.9711914, 1.1376953, -0.74658203, 1.4560547, -1.0273438, -0.25512695, 2.0527344, 0.8959961, -0.9140625, -0.97753906, -0.91552734, 2.0839844, -0.1104126, 0.48876953, 0.45507812, 1.7128906, 0.47265625, -0.09655762, -0.38354492, 0.17834473, -1.1152344, -0.8769531, -0.7133789, 1.2294922, 1.5615234, -0.29125977, 0.6894531, 1.0390625, -0.10131836, -1.0136719, -0.2788086, -1.1494141, 0.7241211, 0.63720703, -0.28076172, -1.1992188, 3.3066406, 0.6845703, 0.040405273, 1.8925781, -0.41308594, 1.328125, 2.3359375, -1.3916016, -0.6142578, -0.5366211, 0.29345703, 2.1210938, 1.9746094, -0.5839844, 1.3203125, 0.3088379, -2.4804688, 0.83984375, -0.5673828, 0.93652344, 1.1396484, 0.37231445, 1.6464844, -2.3339844, 2.734375, 1.4023438, 1.5722656, 0.53808594, -1.7802734, -0.59033203, 4.6601562, -1.5820312, -3.25, 1.4042969, 0.9042969, -0.25561523, 0.4855957, 2.3808594, 0.85253906, -1.9599609, -0.32495117, -0.48779297, -1.9824219, -1.2705078, 1.3994141, -0.12792969, 0.025787354, 0.23168945, -0.9243164, 0.9423828, -2.15625, -0.35620117, -1.5146484, 1.4179688, -2.203125, -1.34375, 0.94873047, -1.7304688, -0.22375488, 0.68847656, 0.8256836, 0.45825195, 0.15429688, -0.6669922, -0.06549072, 1.5214844, -0.2133789, 1.3525391, 0.46484375, 0.2541504, -1.0966797, -0.4873047, -0.3659668, -2.9628906, -2.8046875, 1.7636719, -2.8691406, -1.9912109, 0.4272461, -2.0488281, -2.2597656, 0.2915039, -0.25805664, 2.0214844, 2.6757812, -1.1542969, -0.9003906, -0.7080078, -0.067993164, 0.09698486, 0.4189453, 2.7109375, -0.3959961, -2.0820312, -1.1777344, 0.3474121, 0.18310547, -1.4296875, -3.2695312, 1.5839844, 0.52978516, -0.051818848, 0.4362793, 0.36938477, 1.0947266, -2.9160156, 1.9199219, -2.9453125, -0.004673004, 0.8496094, 0.89746094, -0.52685547, 1.5595703, -1.3994141, -0.8808594, -0.6899414, -0.7265625, 1.1962891, -1.0292969, 3.1386719, -1.7998047, 1.1035156, 0.8203125, -0.77246094, -2.8046875, -0.22009277, -1.3037109, 0.03591919, 0.038208008, -2.5253906, 1.2646484, -0.09716797, 1.0087891, 0.111206055, -0.66308594, -0.9550781, 0.36791992, 1.0039062, -2.3457031, 0.57373047, 0.049072266, 0.48583984, -2.2617188, 0.8276367, 0.4753418, -2.3105469, -1.9746094, 2.1425781, 1.0341797, -0.8696289, 1.2919922, 1.359375, 0.48413086, 0.48535156, -1.2324219, -2.15625, 1.4169922, 0.7495117, -2.6152344, 2.0410156, -1.6455078, -1.4296875, -0.69677734, -1.9697266, 2.4238281, 1.6992188, 2.7675781, -0.85791016, 0.6489258, -1.3544922, 1.1787109, -0.82421875, -2.8164062, 0.74658203, 3.3027344, -2.5859375, -1.8828125, 0.26391602, -0.29541016, -0.5859375, -0.45166016, 1.4042969, -0.33618164, 1.9394531, 0.6323242, 0.14428711, -0.16491699, 0.5986328, 1.9462891, 1.9277344, -1.5634766, 0.11236572, -2.0253906, 0.6621094, -1.8603516, 0.8696289, 3.0371094, 1.2626953, 2.1875, 0.27978516, 0.6748047, -0.50439453, 0.55126953, 0.31982422, 0.64160156, 0.8676758, 2.0058594, 0.9873047, -0.7441406, -0.64404297, -0.076049805, 1.3701172, -2.1933594, 0.81103516, 0.7685547, 1.2597656, -1.2099609, 0.3154297, -1.1025391, -0.80126953, -2.2871094, 1.0810547, 1.3955078, 0.47924805, 2.640625, -0.74853516, 1.5810547, -1.9628906, 1.0878906, -0.1373291, 1.484375, -0.1706543, -0.37597656, -3.5507812, -0.9301758, -0.6479492, -2.5644531, -1.7216797, 1.9072266, 0.9604492, 0.53027344, 1.3984375, -1.9462891, 2.0117188, 1.4345703, -2.0566406, 0.22888184, 0.86816406, -0.5078125, 0.31103516, -0.76464844, 1.6201172, 0.9169922, -3.265625, -0.27148438, -3.0703125, 1.046875, -0.25512695, 0.7036133, -2.6230469, -0.14709473, 0.16748047, 1.4726562, -0.3527832, 3.5097656, -0.39501953, -0.36645508, 2.1152344, -3.0585938, -1.3310547, -2.8105469, -5.1523438, 0.25805664, -2.6777344, 1.2265625, 2.4589844, 0.31298828, 0.77685547, 2.203125, 1.9033203, -2.5078125, -0.6665039, 0.65234375, 0.5751953, -2.3378906, 0.04849243, 2.328125, 0.41088867, -0.8754883, -1.3896484, -1.1142578, -2.6308594, -0.30200195, -0.009254456, -1.5595703, 0.07897949, -1.9707031, -0.18774414, -1.6572266, -1.4208984, 0.9555664, -1.96875, -0.59472656, -2.3925781, 2.2460938, 0.47705078, 0.54248047, -0.69873047, 3.0546875, 1.9072266, -0.6201172, -0.6220703, 0.65185547, 2.2734375, 0.49414062, -0.8979492, 1.4658203, 1.0136719, 0.6230469, -0.5864258, -0.015075684, -0.5292969, -1.1308594, 1.3408203, 2.0878906, -0.14074707, 0.88134766, 0.6430664, -2.4375, 0.9033203, 0.31420898, -0.89453125, -0.21398926, -1.0087891, -1.7988281, -1.0371094, 0.29125977, -1.0576172, -0.59277344, -0.7163086, -0.14685059, -1.4404297, 2.8613281, 0.6376953, -0.6225586, 0.48608398, -1.3017578, -0.80078125, -0.6616211, -0.14941406, -1.6494141, 0.49731445, -0.38476562, 0.15148926, 2.5253906, 1.8505859, -0.55908203, -1.8847656, 0.9477539, -1.9746094, 0.39941406, -0.012252808, 2.4765625, 1.2548828, -1.0908203, 2.3339844, -0.20788574, 3.1914062, -0.30078125, 0.13464355, 1.2890625, -0.8564453, -2.6875, 1.5566406, 1.2255859, 1.0234375, 1.5302734, -0.16040039, 0.5732422, 1.9101562, 0.8857422, 1.4677734, 0.9135742, -0.25683594, 1.9296875, 0.2836914, 1.9990234, -1.0244141, 1.0126953, 0.032592773, 1.6445312, 1.6738281, 2.7988281, 1.0791016, -1.7119141, 1.3417969, 1.0351562, -0.4111328, -0.50927734, -0.13623047, -2.2167969, 1.7451172, -0.34594727, -1.3115234, -0.87646484, 2.9394531, -1.5117188, 0.8823242, -0.31835938, -1.5742188, 0.3630371, -2.2460938, -0.82373047, -0.012290955, -0.3876953, 2.2949219, -2.0253906, 0.45385742, 0.9003906, 1.2734375, 0.99316406, -0.45043945, 0.68652344, -0.88964844, -1.7617188, 1.3291016, -0.8203125, -0.4555664, -3.3535156, 0.24230957, 2.1582031, 1.640625, -1.28125, 1.1103516, 0.62353516, -1.1298828, -0.79296875, 0.22888184, 1.2958984, 0.82666016, 0.14453125, 1.8603516, -0.5654297, -0.17712402, -0.15368652, -1.2050781, -2.03125, 3.0214844, 2.5898438, -0.09375, -0.30566406, 0.2434082, -2.0097656, -5.15625, -1.5712891, 2.9433594, -1.1025391, -0.59765625, -2.8691406, -0.3918457, 1.2744141, -0.7421875, 0.2944336, -3.5507812, 0.6147461, -0.17797852, 0.1730957, -1.1845703, -0.22302246, 0.9453125, 0.47973633, -0.8544922, -0.77197266, -0.78466797, -1.9140625, -2.4238281, 2.2519531, -2.0898438, 0.21362305, 1.4199219, -1.8759766, -1.7470703, 0.78027344, 0.7885742, -2.078125, 2.1953125, -2.9726562, 1.1865234, -0.18725586, -2.3125, 1.4228516, 0.52978516, -0.6977539, 0.7993164, 2.71875, 1.71875, -0.59228516, -1.0390625, 0.75878906, -0.18908691, -0.40478516, -3.2734375, -0.24060059, 0.234375, 2.2226562, 0.96435547, -1.2568359, -0.85546875, -1.6230469, -3.1230469, 0.119628906, 0.17150879, -0.6069336, -0.22277832, 1.1962891, 2.1972656, -2.2011719, 1.0664062, 0.63183594, -0.94677734, -0.99609375, 1.2822266, -0.9741211, 2.4824219, 0.9526367, -0.6333008, -2.6035156, -1.5693359, 1.3720703, 2.6035156, -1.1025391, 1.0625, 0.6958008, -0.3774414, 0.49194336, -0.38085938, 1.3134766, 2.0488281, 1.3603516, -1.1865234, -1.0341797, 1.4599609, -0.6879883, 1.3779297, 1.4707031, -0.57177734, -1.6230469, 2.0390625, 0.19787598, -2.6445312, 0.35351562, -0.8769531, 0.94921875, -0.5810547, -2.0566406, 1.0605469, -2.2734375, -0.2397461, 0.49023438, -1.5654297, -1.796875, 2.3710938, 0.7260742, -1.1171875, 0.61816406, 2.2597656, 1.3925781, -0.2927246, 1.4052734, 1.1748047, -0.7558594, 0.4255371, -1.8642578, 1.0556641, 1.9414062, -1.4179688, -1.0419922, 1.1201172, 1.84375, -1.5703125, 0.62402344, 0.08203125, 3.1953125, -0.3942871, 1.625, 2.4902344, -0.1685791, 1.4550781, 1.0488281, 2.2148438, 3.578125, 0.36767578, 1.2626953, 1.0898438, -0.28442383, -0.5214844, -0.640625, -0.040863037, -1.1015625, 0.119018555, 0.06335449, 1.5078125, 2.4726562, -2.5039062, -1.3955078, -1.015625, -1.1416016, -3.6210938, 0.43139648, -0.56933594, 0.95214844, 1.140625, 0.16259766, 1.0400391, 1.1943359, -0.4272461, -1.2099609, -1.1298828, 2.09375, -1.9287109, 0.41357422, -0.5961914, -2.078125, 1.4111328, 3.0390625, 0.69873047, -0.67578125, 0.7910156, -0.7783203, -0.5708008, 1.3896484, 1.3496094, -2.2089844, -0.96484375, -0.8041992, 1.9433594, 1.6416016, -1.1699219, 2.6347656, 1.5214844, -2.0332031, -3.9238281, 2.8671875, -0.113220215, 0.4724121, -0.14355469, -5.1445312, 2.0175781, -1.8925781, -0.30517578, -1.9726562, -0.8222656, -0.57910156, -1.1083984, 0.08795166, 0.48046875, -1.671875, 2.7460938, 0.62158203, -2.2050781, 0.35498047, 1.7802734, 1.5449219, 0.2849121, -0.44384766, -0.14758301, 0.11236572, -0.72021484, 3.5175781, -0.24560547, -2.2890625, -0.13964844, 3.0683594, 0.73876953, 0.29125977, -1.2001953, 0.8803711, 0.31982422, 1.6015625, 0.06726074, 0.31469727, -1.7978516, -0.93066406, -0.68408203, -0.5229492, -0.5498047, -1.5400391, -0.6694336, 0.2836914, -0.9296875, 1.2636719, 2.3984375, -0.82128906, 0.4567871, 1.8496094, -0.9160156, -1.4580078, -0.78515625, 1.1054688, -2.828125, -1.3740234, 0.48901367, -0.5058594, 0.30029297, -2.4121094, -0.5878906, 0.56640625, 0.40551758, -0.6098633, -0.640625, -0.7314453, -1.1855469, 0.10058594, -1.7412109, 1.2451172, 1.8242188, -0.7084961, 1.8291016, -0.61328125, -1.4765625, -0.21276855, -1.3144531, -0.5703125, 0.63720703, 0.6459961, -0.62158203, 1.4423828, -0.61621094, -2.4335938, -0.9682617, -2.3554688, 1.7880859, -0.24365234, -1.1318359, 0.3791504, 1.2314453, 3.3925781, 0.5229492, 1.5039062, -0.47973633, -0.17297363, 0.54052734, -1.7460938, -0.107543945, -1.3222656, -0.61621094, 0.24560547, 3.2792969, 0.5888672, -3.0527344, -0.09399414, 2.3457031, 0.04937744, -0.9980469, -0.4375, -0.28637695, 0.45507812, 0.5551758, 1.7666016, 1.5947266, 1.5029297, -1.796875, -0.14660645, -1.2773438]}, "B07DTNNJR9": {"id": "B07DTNNJR9", "original": "Brand: Good Life, Inc\nName: Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications\nDescription: Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

          The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

          Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

          The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

          Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

          All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

          The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

          We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It's the only product in it's class to offer such a guarantee!
          \nFeatures: MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps.\nBUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements.\nCUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres.\nEASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts.\nGUARANTEED We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It's the only product in its class to offer such a guarantee!\n", "embedding": [-0.70654297, 1.0849609, 1.7285156, 2.0175781, -1.1669922, 2.2929688, 1.8369141, -0.52490234, 0.90966797, -0.8310547, -2.8652344, -0.7705078, -2.234375, -1.1503906, -0.014175415, 2.1269531, -1.0449219, 1.5478516, -0.66796875, 0.5048828, 3.6992188, 0.34765625, 0.8847656, 0.57714844, 1.3408203, -1.1494141, 3.4082031, -1.7431641, -0.16625977, -1.09375, 1.2275391, -0.62646484, -0.38671875, 0.26367188, -0.56347656, 0.6616211, -1.9560547, 0.046325684, -0.07470703, -1.2275391, 0.9370117, 0.69433594, 1.2988281, 0.113464355, 0.1184082, 0.64501953, -0.5703125, -0.7705078, 0.25854492, 1.5556641, 0.51708984, 0.27954102, 0.27148438, -0.13696289, 0.04864502, 2.8085938, -0.10974121, -0.5366211, 2.3222656, 1.8466797, 0.18261719, 0.9711914, -6.330013e-05, 0.8725586, -0.31591797, 1.2021484, -0.29614258, 0.062072754, -1.4277344, 0.09729004, -0.32836914, 0.9404297, 0.12841797, 0.033081055, -2.0644531, -1.2685547, -3.5234375, 0.5732422, -0.009155273, -1.1845703, -0.0029296875, 1.3994141, 0.359375, -0.090270996, -1.15625, -0.61816406, -1.5488281, 0.52783203, 2.4160156, -1.7900391, -0.94677734, -0.45751953, -2.5292969, -6.0546875, 0.3425293, -0.8066406, 0.56152344, -0.9526367, -0.3474121, 0.89404297, 1.1738281, -0.96972656, -0.6254883, 2.2851562, -3.0800781, 1.4677734, 1.2832031, 2.7441406, -2.7226562, -1.1972656, -0.24609375, 0.421875, -2.3398438, -1.6357422, -1.6787109, -0.84765625, 0.39746094, 0.27612305, 2.2890625, 2.2910156, 2.4023438, -1.4550781, -0.7480469, 1.1035156, 1.0898438, 0.83691406, 0.5390625, 0.059692383, 1.4726562, -2.7890625, 0.22595215, 0.64501953, 0.029907227, -0.85253906, -0.24707031, -1.0097656, -0.21252441, -2.1015625, -1.5605469, -0.96191406, -2.9121094, -1.2441406, -0.04510498, -0.78515625, -0.95166016, -0.8310547, -2.7539062, 1.2412109, 0.3857422, -4.0585938, 0.2866211, -0.35083008, -0.3383789, -2.0136719, 1.5888672, 1.1601562, -1.6425781, -3.7949219, 1.03125, 0.10430908, 0.88671875, -1.5253906, -1.3330078, -1.9980469, -0.49804688, -1.5839844, 0.07287598, 1.0957031, 1.6542969, 0.5776367, 1.1738281, 2.4316406, -0.1496582, -1.28125, -0.22961426, -1.5039062, 0.7138672, 0.6254883, 0.11364746, -2.9902344, -4.3554688, -1.3613281, 0.32104492, 1.1513672, 0.39697266, -1.5146484, 0.72509766, -0.98779297, -0.11004639, 0.35595703, -0.111816406, -0.23547363, 0.9785156, 2.046875, -1.1992188, -2.4804688, -1.9960938, 0.71777344, -0.68359375, 1.9951172, -0.6347656, 0.33911133, -0.4248047, 1.7568359, -2.8085938, -0.5263672, -0.9013672, 0.24951172, 1.8017578, 2.9980469, 0.6542969, -1.7373047, 2.546875, 0.33398438, 1.7099609, -1.9306641, 0.30664062, -0.73291016, 1.9697266, -0.045715332, -0.05444336, -0.0927124, 0.06390381, 0.53466797, -0.05581665, -0.31811523, -0.23864746, 0.1739502, -2.46875, -1.6425781, 0.9277344, -1.1679688, -0.25439453, 0.24267578, -0.9291992, 3.0742188, -2.6269531, 0.4621582, 0.30786133, 2.1621094, -1.6425781, 2.2792969, -2.0585938, 2.5878906, -0.4584961, 0.5878906, -0.22827148, 0.39941406, 1.7460938, 0.7636719, -0.17224121, -0.39868164, 0.875, -0.0062789917, -2.2949219, 0.43481445, 0.9560547, -1.3896484, -1.859375, 0.2932129, -0.8774414, 1.4560547, 0.54785156, 0.32348633, 1.4082031, 1.1728516, -2.4101562, -0.32983398, 1.046875, -1.6972656, 0.7314453, -1.4482422, 0.31274414, 4.0820312, 0.96435547, 0.18017578, 0.29003906, -0.5576172, -0.88134766, 0.64404297, -0.6669922, 0.15466309, -0.026031494, -1.0537109, -0.4284668, 1.3574219, -0.4189453, -1.4199219, -1.4609375, 1.5361328, 1.9560547, -1.1308594, -3.1777344, 1.3818359, 2.0683594, -0.79589844, 0.83447266, 0.094177246, 0.671875, 2.7363281, 1.9814453, -0.37280273, 2.203125, 1.7890625, 0.7182617, 0.3947754, 0.5991211, 0.2199707, -1.0263672, -0.8808594, 0.9711914, -0.4099121, -0.82470703, 1.0761719, -0.71435547, -0.70214844, -0.37841797, -2.5117188, -1.3984375, 0.8222656, 1.6787109, 3.125, 0.83935547, 0.05508423, -2.7011719, 0.83203125, 1.4208984, 0.26660156, -0.3774414, -0.10272217, 0.36791992, -0.0013980865, -1.8837891, -2.6816406, -1.8408203, 1.3691406, -1.1982422, -1.2900391, -0.04425049, -2.6445312, -1.5566406, -0.10760498, 0.013908386, 0.97802734, 0.8989258, 0.1060791, -0.859375, 1.3291016, 0.5517578, 0.07409668, 1.2734375, -0.21704102, -1.0400391, -2.390625, -1.5068359, 0.24938965, 0.02609253, 0.7080078, -0.92285156, -0.17797852, -0.64697266, -0.8051758, 2.609375, -2.4667969, -0.01828003, 0.7944336, 0.37329102, -2.2851562, 1.9082031, -0.5493164, -1.2509766, 1.8369141, 0.48510742, -1.4980469, -0.33642578, 1.7753906, -0.23486328, 1.1298828, 0.36914062, 3.1484375, 0.29736328, -0.8588867, -0.49145508, -4.21875, -4.0898438, -0.6567383, 1.2070312, -1.2246094, -0.18078613, -2.3144531, -1.2412109, -0.36791992, -1.2705078, -0.41015625, 0.2277832, 0.05630493, 2.9160156, 0.08203125, 0.5678711, 1.9775391, 1.3496094, -0.30419922, -2.2519531, -1.5039062, 2.1542969, -0.7788086, 0.24279785, -1.7460938, 0.80908203, -1.4628906, -0.101379395, 1.4599609, 1.6494141, 1.9150391, 1.6953125, -2.5996094, 2.5722656, 0.6748047, -0.7192383, 1.4150391, -0.03753662, -0.25146484, -0.26391602, 1.2607422, 1.3251953, 1.6513672, 2.203125, -0.7783203, -0.9316406, 2.0566406, 3.2734375, -0.52783203, 0.80078125, 0.91796875, 1.4355469, -1.3183594, -0.8647461, -0.25512695, 1.6396484, -3.5078125, -2.109375, 1.4042969, 0.76464844, 1.3291016, 2.8476562, -0.26538086, 1.4951172, -1.7578125, -0.40771484, -0.7651367, 0.0072402954, -0.41088867, -0.19140625, -0.123168945, -0.82177734, 1.4287109, -1.2802734, 1.1738281, 1.7597656, 2.28125, -0.33251953, -2.3496094, 2.2246094, 0.3137207, 0.86572266, -0.6616211, -0.07312012, 0.95214844, 0.008880615, 1.7412109, -0.43823242, 0.7001953, -1.1025391, -1.9433594, -0.1595459, 1.6523438, -0.17895508, -1.1982422, 0.76123047, 0.6582031, -2.2539062, 1.5898438, 1.9609375, -0.45214844, -0.13842773, -0.90966797, -0.9707031, -2.2636719, 2.4101562, -2.0742188, -1.2050781, -1.9306641, 0.27416992, -0.24719238, -0.90722656, 0.62841797, -1.1650391, 1.2412109, 3.0664062, 0.7373047, -0.24450684, 0.3955078, -0.53027344, 1.328125, 1.6855469, -0.6455078, -2.2988281, -0.46801758, 0.29736328, -1.3789062, 0.028625488, 1.2470703, 0.37524414, -2.1738281, 1.8984375, 0.97753906, 1.8447266, 0.31518555, -2.4667969, 0.10290527, 0.021881104, -0.14746094, -0.5126953, 1.7578125, 2.5820312, 0.6191406, 1.4882812, 1.9482422, -2.4589844, 0.0017356873, -0.78466797, -2.4628906, 0.7192383, -1.6181641, 0.8955078, 2.8984375, 0.02583313, 1.5048828, 0.33129883, -1.1630859, -1.3466797, -1.8505859, 1, 1.0742188, -2.9355469, -0.6142578, -2.3671875, -0.34350586, -1.4150391, 0.15661621, -0.15795898, -1.6904297, -0.61328125, 0.9013672, -0.19458008, 1.5839844, -1.4550781, 1.5546875, -0.29003906, 0.3317871, 0.6694336, -0.5727539, -0.034301758, -2.59375, 0.9370117, -0.7680664, -0.6743164, 2.2519531, 0.25878906, 0.35498047, 0.47924805, -1.0625, -1.0234375, 0.33544922, 0.6816406, -1.2089844, -1.1474609, -0.5288086, 0.37597656, -1.6337891, -1.1972656, -1.9365234, -0.63183594, -0.37231445, -0.05996704, 2.0390625, 0.328125, 1.6328125, -2.3105469, 0.30541992, -0.40966797, 1.1826172, -0.72021484, -3.2324219, -0.1652832, -1.2275391, 2.2636719, -2.2246094, -2.1015625, 1.0761719, 0.25219727, -0.29956055, 2.9121094, 1.0019531, 2.2109375, 1.6396484, -1.8886719, -0.5283203, 2.3671875, 1.6621094, 0.6401367, 0.97558594, 1.7021484, -0.55810547, -1.6757812, -0.8803711, -2.7773438, -1.6025391, 1.5332031, -0.44091797, 0.328125, 0.90966797, 0.21569824, -2.9960938, 0.7895508, 0.8720703, 0.22131348, 2.0136719, -2.7050781, -1.1914062, 2.7363281, 0.7495117, -1.4423828, 1.2246094, 0.5732422, 0.9291992, 1.6708984, -0.55078125, 1.6660156, 1.4316406, 3.5488281, 1.0712891, -2.1484375, -0.86621094, 1.5507812, 0.09008789, -1.3583984, -1.4511719, -0.88134766, 2.390625, 1.8730469, 1.7724609, 2.1933594, 1.3212891, -0.8232422, 1.390625, 1.3916016, -1.3105469, 1.3427734, -0.5410156, 0.39160156, 1.9189453, 0.5991211, -0.68066406, -1.5791016, 1.2636719, -1.3632812, 2.7871094, 0.97753906, 1.4257812, 1.4287109, 0.9082031, -1.2138672, 0.30908203, -0.21582031, 0.93115234, 0.86816406, -1.875, 0.1854248, -0.40625, -0.0006504059, -0.39892578, 0.96484375, 0.3076172, -0.34521484, 0.83154297, -0.58203125, -0.93847656, -0.70166016, 0.47998047, 0.48608398, 2.0429688, 1.7617188, 1.4511719, 0.8261719, -1.2382812, -1.2675781, -1.2333984, 0.4272461, -1.0341797, -0.29760742, 2.0546875, 0.68603516, 1.6337891, -1.3837891, -1.3603516, -0.45043945, 0.99560547, 2.0449219, 2.1523438, -1.1777344, -1.6523438, -1.7714844, -2.1679688, -1.3974609, -0.38305664, 0.7788086, -0.40649414, -1.2490234, -0.14672852, -1.6005859, 0.50439453, -0.30126953, -1.4580078, 1.0878906, 0.2919922, -0.22839355, -4.15625, 1.0712891, 0.27783203, 0.96972656, -1.7939453, -1.15625, 0.94677734, -0.79785156, -2.2480469, -0.5727539, -0.21472168, -1.3164062, 2.2578125, 0.3605957, -1.3232422, 2.5644531, 1.4833984, -0.9760742, 1.7109375, -0.06652832, 0.071899414, 1.5546875, -1.4814453, 2.8496094, 0.6435547, -1.2070312, 0.6118164, 1.3798828, 0.75146484, -2.6445312, 0.12438965, 0.78808594, 0.3947754, 0.3034668, -2.0214844, 0.17346191, 0.0017318726, 1.3623047, 0.88183594, -0.58154297, 1.9316406, -0.070495605, -0.49145508, 0.48095703, -0.4350586, 2.4863281, 1.734375, 1.2324219, 0.09655762, 0.78222656, 2.3222656, 0.63671875, -1.2646484, 0.60058594, 0.90478516, -0.8129883, 1.4169922, 2.6367188, 0.5810547, 0.2553711, -1.7978516, 2.3027344, 4.625, -1.3388672, 0.6464844, 0.5209961, -2.1269531, 0.21911621, -1.8613281, -1.2451172, -0.04788208, 2.46875, -0.52734375, 0.057769775, 1.0136719, 0.6875, 2.2128906, 1.6298828, 0.1427002, 0.22802734, -0.16674805, -0.7753906, 1.3222656, 0.070007324, -1.2109375, -0.09326172, -0.070129395, -1.9267578, -0.16625977, -1.2509766, -0.46069336, -0.35668945, -0.6689453, -3.2695312, 2.03125, -0.50927734, -1.375, -0.33813477, 3.4375, -1.6591797, 0.6010742, 1.5585938, 0.82470703, -1.7607422, 0.1772461, -2.8613281, 0.8671875, -0.27685547, -1.3134766, -0.03173828, 0.7729492, 2.4589844, -2.3085938, 0.7011719, 2.4609375, 1.0976562, 1.046875, 2.7148438, 1.8125, 0.15307617, 2.1113281, 2.5039062, 1.2558594, 1.7675781, -1.4306641, 1.2509766, 0.85839844, 0.89697266, 2.4648438, 0.41259766, 0.2836914, -0.4428711, -0.44091797, 1.2460938, -0.8930664, 0.008178711, -3.9824219, 2.2285156, 0.25976562, 2.8964844, -0.8491211, 1.7441406, -0.62646484, -0.64453125, 0.4958496, -1.0810547, -0.36450195, -0.4650879, 1.5800781, 0.90722656, -2.296875, -0.8173828, -2.6445312, 0.8491211, 0.072387695, -2.4121094, -0.16247559, 1.8837891, 0.52001953, 0.78027344, 1.7197266, 1.1503906, -0.44555664, -1.3798828, 1.2851562, -1.3056641, -1.2900391, -0.2758789, 3.7773438, 1.6767578, -0.03942871, 0.22497559, 0.07470703, -0.6484375, -1.8027344, 2.7421875, -1.2988281, -0.5234375, 1.4521484, -2.4238281, 0.2524414, -0.8232422, 2.5664062, -3.609375, -0.014053345, -0.4663086, 0.9663086, -0.0947876, 2.6367188, 0.8964844, 1.5605469, 0.30297852, -0.94433594, 0.65771484, 0.94677734, 1.2167969, -2.2207031, 0.39770508, 1.6376953, 0.4831543, -1.8320312, 0.008163452, -0.28955078, -1.9033203, -0.92089844, 0.24267578, -1.8759766, 0.016021729, 1.9404297, -0.41748047, -0.92578125, -0.6635742, -2.9648438, -1.5927734, -0.31640625, -0.95947266, -0.68408203, -0.95214844, -0.07745361, -0.07659912, -2.3515625, 1.7802734, -2.8378906, -2.0214844, 1.7255859, 1.5263672, 1.1425781, 1.8886719, 0.5229492, -2.1015625, -3.1289062, -2.1914062, -3.4277344, -1.4277344, 1.3964844, 1.3886719, -1.9931641, -1.8691406, -1.5458984, 1.8955078, 0.17028809, 0.140625, 0.66064453, -2.3710938, 0.7158203, 1.15625, -2.5273438, 2.1210938, 2.4902344, 0.61083984, 0.6611328, -0.578125, -2.3144531, -0.111083984, -3.3496094, -1.1894531, 2.3769531, 2.4101562, 0.21228027, 2.1113281, -2.6425781, -1.6103516, -0.5473633, -2.4453125, -0.60498047, -0.50439453, -0.12298584, -0.07324219, 1.4248047, 2.5410156, -0.7636719, -0.46166992, -0.76123047, 2.2109375, 1.8291016, 0.6166992, -1.6376953, 3.109375, -1.015625, 1.5820312, 1.7460938, 3.2988281, 0.29882812, 0.6254883, 1.4208984, -0.21459961, 0.3486328, 1.5507812, -3.4511719, -0.5629883, 0.39892578, 0.5029297, 0.8901367, 0.5810547, -1.1435547, -0.8515625, -1.9941406]}, "B00IZCNOS0": {"id": "B00IZCNOS0", "original": "Brand: Flame King\nName: Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers\nDescription: \nFeatures: Allows removal of empty cylinder for refill without interrupting propane supply\nFor RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty\nPairs well with our 48 Inch Thermo Plastic Hose, item 100383-48.\nDouble stage design maintains constant gas pressure under changing demand and conditions\nInlets are 1/4\" SAE inverted flare and outlet is 3/8\" NPT female pipe thread. Regulator is factory set at 11wc (water column)\n", "embedding": [-0.8413086, 0.4633789, -0.10357666, 1.1337891, -1.6113281, -1.3486328, 1.1044922, -1.1308594, 0.50683594, -2.1582031, 1.4628906, -1.2998047, 1.1005859, -0.7915039, 2.5742188, 1.4453125, 0.7080078, 0.55371094, 1.8173828, 0.32177734, -0.007286072, 0.7807617, 1.8037109, -1.8115234, 1.6181641, -0.96533203, 3.4785156, -2.4082031, -1.2783203, -1.6113281, 1.6806641, 0.34545898, -0.6557617, 2.5507812, -0.7207031, 0.3256836, -0.8984375, -1.5703125, -5.265625, -0.054626465, -0.8173828, -0.14477539, -0.39990234, -0.46191406, -1.5039062, -0.99853516, 0.67529297, -1.1630859, -0.21166992, 1.0585938, 1.4150391, 1.4482422, -0.7998047, 0.90478516, 1.1113281, 0.7207031, -1.1660156, 0.008354187, 0.2705078, 2.2265625, 2.2714844, 0.19824219, -3.859375, 1.3037109, -1.8994141, 2.2109375, 0.79003906, 0.3071289, 1.2773438, 1.3183594, 1.1347656, -0.8339844, 1.59375, -2.1777344, -1.6337891, 1.5449219, -2.5195312, 0.0021152496, 2, -0.26635742, -0.29736328, 1.125, 0.9189453, -2.0214844, 1.0029297, -0.87109375, 0.113098145, 0.31591797, 1.4501953, 0.7285156, -1.7363281, 0.29663086, -1.2060547, -3.4960938, 1.3369141, 1.5019531, 1.2929688, 1.6855469, 3.0605469, 0.9223633, 0.65722656, 0.63671875, -0.10986328, 1.1279297, -0.63134766, 0.34765625, 1.1708984, 1.1259766, -3.6074219, 0.54589844, -0.38330078, -0.8540039, 1.2431641, -0.8457031, -1.2900391, -0.2927246, -1.1435547, 1.5595703, 2.0722656, -1.1484375, 2.4296875, -1.0185547, 0.8300781, -1.0449219, 1.2919922, 0.7451172, -1.1601562, 0.7363281, 4.9296875, -0.17749023, 1.5917969, 0.33032227, 3.5839844, -0.20544434, 1.0625, -2.0664062, -0.5834961, -2.4453125, -2.4726562, -1.0654297, -2.3203125, -1.9228516, 1.796875, 0.2244873, -3.4375, 0.048706055, -2.8828125, 0.73535156, 0.59814453, -1.9970703, 3.0332031, -1.6113281, 1.2470703, -2.15625, 1.8808594, 0.875, -0.7011719, -3.7265625, 0.45996094, 0.45825195, 0.9482422, 0.09136963, -2.1015625, 2.5585938, -2.6328125, -1.1064453, 0.76708984, 0.6298828, -0.5805664, 1.0712891, -0.3972168, -1.2880859, -0.36083984, 0.5595703, -0.7265625, -0.84521484, -0.90722656, 1.2910156, 2.625, 1.4394531, -2.9277344, -1.2373047, -1.0634766, -2.4960938, 3.359375, 0.27246094, -1.0361328, -1.1630859, 1.4101562, -1.0136719, -2.8867188, 2.3476562, -1.6191406, -0.026290894, -0.8413086, -2.203125, -3.8398438, -0.91259766, 1.8046875, 1.0048828, -0.49731445, -0.7675781, 0.61572266, 0.025802612, -3.4882812, -1.5693359, 0.9199219, -0.4555664, 0.3947754, 2.0722656, -0.70654297, 0.22680664, 0.9111328, -2.5234375, -0.2220459, -2.4960938, 0.9819336, 1.4921875, 0.60302734, 1.2773438, 1.6796875, 1.0732422, 3.515625, -0.55566406, 1.9560547, 0.58984375, 0.9794922, -0.1529541, -2.3261719, -1.5488281, 0.6723633, 1.6191406, -0.96875, 0.33496094, -0.65722656, 2.5605469, 0.123046875, -1.21875, 0.92529297, 1.578125, 0.16174316, -0.890625, -0.07720947, -0.60253906, -1.0136719, 1.2041016, -0.5546875, 1.9384766, 2.1835938, -0.33007812, 0.93408203, 0.4555664, -2.6738281, -0.5776367, -0.43408203, -0.5625, 1.7910156, 0.6323242, 1.0068359, -2.0449219, 2.921875, -0.26098633, -0.9301758, 1.8564453, -0.96875, -0.60791016, 2.9355469, -0.6879883, -0.8222656, 0.62109375, -2.4570312, 1.1308594, 2.2949219, -0.09869385, 1.3652344, 0.9946289, 0.10827637, 2.3515625, -0.82177734, 1.8691406, 0.48779297, -0.69433594, 0.90185547, -2.8515625, 0.9423828, 1.9335938, -0.06793213, 1.2685547, -1.3847656, -0.060333252, 2.9726562, -1.6210938, -2.1289062, 1.2460938, 2.3671875, 0.36547852, 2.7226562, -0.26733398, -0.11004639, -1.0234375, 0.21105957, 0.51953125, -0.7402344, -0.04788208, 0.65722656, -0.8696289, 1.2226562, 1.3876953, -0.6826172, -0.42456055, -0.8413086, -0.2866211, -3.3613281, 0.56152344, 0.6298828, -1.5576172, 3.0273438, -2.7285156, 0.37841797, 1.3222656, -1.1826172, 0.9057617, 0.49560547, -1.8427734, -0.31347656, 0.7680664, -0.77734375, -0.029205322, 0.96777344, 0.41357422, -0.77246094, -1.5429688, 0.69433594, -1.6269531, -1.4003906, 1.5546875, -0.53808594, -2.4375, 1.3398438, -0.9370117, -0.5683594, -0.79833984, 0.2512207, 2.3398438, 1.9384766, -0.58154297, -0.67285156, -0.26000977, 0.037200928, -0.546875, 0.76123047, 2.6835938, -0.4465332, -1.6435547, -0.89208984, -0.56933594, 0.7451172, 1.0019531, -0.58984375, -0.16210938, -0.34692383, -0.9370117, -0.3684082, -1.0859375, -1.1728516, -2.5761719, 3.5, -2.4648438, 0.890625, 0.67626953, 1.2138672, -1.3486328, 0.66552734, -1.3730469, -1.3476562, -0.67822266, -1.2197266, 1.5458984, 0.6274414, 0.77783203, -0.78515625, 0.75, 0.89941406, -0.6098633, -2.6152344, 0.68896484, 1.5380859, -1.6992188, -1.3369141, -2.7402344, -0.8208008, 0.5859375, -0.6640625, -2.1816406, -0.78222656, -1.4726562, 0.6479492, 0.26708984, 0.94677734, 0.34472656, 1.6289062, -2.2988281, -2.234375, -0.44067383, -0.48120117, -2.8632812, -0.30273438, -0.5595703, -0.23132324, -0.6401367, -0.07952881, 0.13366699, -1.0136719, 1.7314453, 0.5229492, -2.0527344, 0.018417358, 0.90234375, -0.00970459, 3.2539062, -1.6103516, 1.0400391, -1.7724609, -1.9277344, 3.6855469, 0.765625, 1.7402344, -0.5253906, 1.3007812, -0.48510742, 0.05895996, -0.7841797, 0.4572754, -1.0185547, 3.7988281, -2.1660156, -1.7324219, 1.2412109, 0.10394287, -2.234375, 0.4489746, 0.5415039, -1.0332031, 3.3984375, 0.6118164, 1.0595703, -1.4511719, 1.25, 0.83496094, 0.48706055, 2.3554688, 1.5390625, -0.28979492, -0.08898926, -1.0019531, 0.8598633, 2.1796875, 0.7631836, -0.1270752, 1.1240234, 2.7578125, -0.9243164, 0.38183594, -0.67041016, 2.9667969, 0.5136719, 1.4960938, -0.671875, 0.1875, -0.484375, 0.15917969, 1.2070312, -1.9609375, -0.055389404, 0.79541016, 3.2519531, -0.63427734, 0.16711426, -0.22875977, -1.5390625, -0.16625977, 1.6748047, 0.21350098, 1.8789062, -0.9003906, -0.76904297, 1.4677734, -3.4648438, 2.4667969, -0.90966797, 1.9277344, -0.57958984, -0.27441406, -0.4189453, -1.59375, -0.037872314, -0.9589844, -0.6743164, 1.1035156, 2.0214844, -2.2363281, 0.61035156, -1.8681641, 0.4104004, 1.6855469, -0.83984375, 1.4189453, 1.2236328, 1.0585938, -0.37597656, -0.98046875, 2.7304688, -0.7866211, -1.3515625, 0.17102051, -3.6289062, 0.4736328, -0.44091797, 1.0244141, -0.65966797, 1.5878906, -1.3652344, 2.0371094, -0.5595703, 3.7480469, -1.7236328, 2.1816406, 1.8974609, -3.0371094, -1.2080078, -2.1386719, -5.1679688, 1.7861328, -2.65625, -0.2770996, 0.71191406, -0.022262573, 0.95214844, 1.3242188, 0.013313293, -0.2939453, -0.12927246, -0.2232666, 1.5244141, -3.1953125, -0.20812988, 0.40576172, 0.20837402, -0.578125, -2.3457031, -1.4648438, -1.1816406, -1.3242188, 1.1025391, -2.1445312, -0.5288086, 1.1660156, 0.21813965, 0.89160156, -1.5302734, 1.5478516, -0.76708984, -0.83496094, -3.0058594, 3.3925781, 1.1630859, 0.77441406, -0.41357422, 2.4492188, 1.7636719, -0.99072266, -2.515625, -0.08770752, 2.3417969, 0.19836426, -2.0800781, -2.9921875, -0.4375, -0.56152344, -1.9462891, 0.71972656, -0.9604492, -0.073791504, 2.3261719, 0.3894043, 2.3945312, 1.4882812, -0.90625, -0.7788086, 2.2382812, -0.25463867, -0.59033203, 2.5449219, -2.1699219, 0.33618164, -2.6464844, 2.3984375, -2.1992188, -2.1035156, -1.7705078, -1.046875, -3.5097656, 1.2275391, -0.70751953, 0.60253906, -0.93066406, -0.39868164, 0.5830078, 0.5834961, 0.17785645, -1.0791016, 0.33691406, -0.35107422, 0.3046875, 1.5986328, 0.96875, 0.34472656, -0.20361328, 1.9541016, -1.0341797, -1.7294922, 0.24328613, -0.32958984, -0.44384766, -1.2861328, 2.1679688, 0.93310547, 2.3925781, -1.8300781, 0.78222656, 1.8349609, -0.8300781, -1.4599609, 1.6904297, 0.74316406, 1.5371094, 0.9199219, 0.15649414, 1.3505859, 1.5107422, 2.2714844, -0.75097656, 0.85302734, -2.6035156, -1.8730469, -0.9135742, 0.3322754, -1.5371094, 0.6489258, 0.9277344, 1.1513672, 1.2080078, 1.3486328, 2.125, -0.7832031, 1.4775391, -0.60595703, -1.4433594, -3.5722656, 0.2956543, -1.1767578, 1.5976562, -0.59716797, -1.8125, -1.1621094, 3.2871094, -0.08428955, 0.6665039, 2.5878906, 0.74316406, -1.4375, -3.1484375, -1.3857422, -1.4169922, 0.6479492, 1.9375, -1.6552734, 1.4101562, 0.5625, 0.29492188, -0.6123047, -0.4440918, 0.7836914, 0.20715332, 0.453125, -1.4951172, 0.5654297, 1.1640625, -3.1816406, -0.6582031, 0.12438965, -0.06512451, 0.6118164, -1.21875, 0.31201172, -0.49560547, -0.6621094, -1.3876953, 1.0488281, 1.2939453, -1.3125, 3.96875, -0.5214844, 1.8896484, -0.80029297, 0.70654297, -1.3984375, 2.078125, 1.8603516, 0.07458496, -1.5488281, 0.049194336, -2.4589844, -4.3984375, -1.5605469, 0.9121094, 0.7714844, -0.025802612, -2.140625, -1.0078125, 2.0507812, -1.3476562, -0.37158203, -3.7226562, 1.0908203, -0.93310547, -0.2944336, -0.50683594, 0.87109375, 0.18066406, 1.4013672, 0.057647705, -2.4804688, -0.98583984, -2.1191406, -1.0058594, 2.8046875, 0.30615234, 0.54785156, 0.15209961, -2.8398438, -0.6113281, 1.3203125, 0.34643555, -2.0449219, 0.50146484, -2.078125, -0.65185547, 1.4697266, -2.6816406, -0.38012695, 1.8125, -0.5854492, 1.2861328, 2.4082031, 1.0898438, -0.1673584, -1.4140625, -0.43481445, 0.7338867, -0.7158203, 0.039215088, 1.1113281, 1.6835938, -0.45239258, 1.2480469, -1.0244141, -2.0976562, -1.3183594, -0.68408203, 1.0732422, -1.7753906, -0.1986084, -0.25048828, 2.4863281, 0.26708984, -1.9863281, -0.50390625, 0.67529297, -0.85546875, 0.02746582, 1.7636719, -3.6074219, 2.7460938, 0.91845703, -1.6523438, -1.4121094, 0.33618164, 0.42382812, 2.0449219, -1.3525391, -0.28857422, 1.6630859, -0.20544434, 2.6738281, -0.66552734, 1.8017578, 1.6630859, 1.2392578, -0.49804688, 0.32055664, 1.1123047, 0.29882812, 0.5463867, 1.1416016, -2.7363281, 0.3293457, 1.1064453, 3.0683594, -3.125, -0.50927734, -0.09088135, 0.68408203, -0.90185547, -0.82958984, 0.18920898, -2.6347656, -1.3779297, 1.2255859, -0.2932129, -4.6132812, 2.2851562, 0.84521484, -1.5380859, 0.58984375, 0.5883789, 0.06201172, -2.0722656, 2.0546875, 1.1708984, -0.2421875, 0.50097656, 0.25268555, 0.7631836, 0.7709961, -2.671875, 0.6386719, 1.0498047, 1.4316406, 0.30517578, 0.93847656, -2.3144531, 2.2382812, 2.5859375, 0.63623047, 2.4570312, -0.014152527, 2.3300781, 0.29492188, 2.4140625, 2.1738281, 0.90966797, 0.22839355, -0.40649414, 2.3164062, 0.14221191, -1.1474609, -0.055664062, -1.4658203, 1.1425781, 0.31054688, 0.7363281, 0.27294922, -1.2998047, 1.1005859, -1.4111328, 0.074279785, -1.0429688, -0.070739746, -1.0947266, 0.33666992, 0.9301758, -0.60546875, 0.52246094, 0.7236328, -0.05444336, -0.4753418, 1.0771484, 1.7314453, 0.95654297, -0.4736328, 0.15075684, -1.3310547, 2.4824219, 1.7041016, -0.25146484, -0.23266602, 1.2402344, 1.0488281, -0.27001953, -0.3256836, 0.8828125, -2.4804688, 1.484375, -0.10217285, 2.2949219, 2.0820312, -1.3466797, 3.7578125, 1.9257812, -2.1425781, -5.5, 1.9775391, -1.1240234, -0.76220703, -1.1523438, -2.34375, 2.4003906, -1.6591797, -1.4775391, -3.390625, 0.70703125, -0.27563477, -0.09991455, 2.3066406, 0.86816406, -1.9482422, 2.640625, 2.1953125, 0.5883789, 0.5654297, -0.49609375, 1.8505859, 0.74121094, 2.828125, 0.23168945, 0.85058594, -2.1328125, 2.1582031, 0.8984375, -0.8876953, -0.30541992, 2.4121094, -0.32202148, 0.6972656, -0.9506836, -0.009223938, 1.0507812, 1.2929688, -0.5673828, 1.1914062, -1.5302734, 0.8647461, -1.2402344, 0.9897461, -0.009117126, -2.3339844, 0.20581055, 2.3652344, -2.0390625, -1.1591797, 2.6171875, -1.7919922, 0.7451172, -0.32714844, -1.9404297, -1.8476562, 0.84277344, 0.22839355, -0.7973633, -1.7480469, -0.06311035, 2.0976562, 0.82714844, -2.4414062, -1.7275391, -0.09814453, -0.07476807, -0.76708984, 1.0742188, 0.11175537, 0.36743164, 0.6694336, -2.4433594, 1.4140625, 2.953125, -0.9506836, 2.6738281, -1.5791016, -0.06585693, -0.6176758, -1.7636719, -1.7783203, -0.36938477, 1.0458984, 0.5083008, -0.40576172, -0.07836914, -2.390625, -0.7055664, -1.7597656, 1.96875, -0.20092773, -1.4433594, 0.35961914, 0.99072266, 1.6708984, 0.17211914, -0.20043945, 0.012214661, -0.99902344, 1.6064453, -0.6977539, 0.99365234, -0.38720703, -0.6118164, 0.029830933, 1.7275391, 0.6503906, -0.8232422, 0.046844482, 0.030212402, -1.5019531, -0.2590332, 0.85546875, -1.4794922, -1.8769531, 0.11706543, 1.0458984, 3.2421875, 1.8251953, 1.0605469, -2.78125, -0.7529297]}, "B081GNNVJK": {"id": "B081GNNVJK", "original": "Brand: Traeger\nName: Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub\nDescription: \nFeatures: Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper.\nCompatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice.\nEasy Storage: Each rub comes in a stackable aluminum tin container\nMade in the USA\n", "embedding": [0.6088867, 0.6118164, 1.9960938, -0.8154297, -0.63964844, 1.8554688, 0.6689453, -2.5527344, 0.008605957, -1.8652344, 1.2695312, 2.6679688, 0.74121094, -3.53125, 0.25073242, -0.74316406, -2.015625, 1.4804688, 1.7685547, 1.0292969, 0.70458984, 1.9521484, 1.0380859, 1.6894531, 1.5800781, -0.7817383, 3.3496094, -0.029281616, -0.6635742, 0.25048828, 2.2636719, 1.9912109, -1.9824219, 2.6816406, -1.6220703, 0.4753418, -1.4746094, 0.6669922, -0.01524353, 0.6347656, -0.68359375, -1.5019531, 0.55078125, 0.1616211, -2.8046875, 1.9306641, -0.3347168, 1.515625, -1.5478516, -0.007522583, 0.61376953, 0.55078125, -1.0371094, 0.33544922, -0.27807617, -0.50927734, 0.7753906, -3.5351562, -0.11468506, 0.053222656, 2.9121094, -1.0771484, -1.3935547, -0.8623047, -0.73876953, 0.4321289, 0.89990234, -0.9033203, -0.53466797, -1.6796875, 3.6210938, -0.0927124, -2.296875, 0.35546875, 0.4267578, 1.7744141, -1.4160156, -0.48706055, 0.60253906, -2.328125, -0.64941406, 1.6201172, -0.7050781, -1.8242188, 1.5439453, -0.5883789, -1.1552734, 0.74658203, 4.0859375, 0.072265625, 1.1191406, 2.4179688, -2.9746094, -3.015625, 2.7460938, 0.2980957, 0.6352539, 0.21875, -0.4609375, 2.5273438, -0.12371826, -2.0058594, 0.5527344, 0.65771484, -1.4472656, -0.31982422, -0.70166016, 0.37231445, -2.5097656, 0.5517578, -3.9648438, 2.2910156, 1.1396484, 1.0322266, 0.3786621, 0.16687012, -2.484375, -1.9794922, -1.015625, 2.28125, 2.125, -0.6816406, 0.27392578, 0.8769531, 0.48120117, 1.3613281, 1.7509766, 2.6230469, 1.5546875, -2.8496094, -1.1552734, 0.6225586, 0.71484375, -1.1572266, 1.4501953, -1.4716797, -0.59765625, -1.6132812, -0.21228027, 0.6928711, -0.23913574, 1.546875, 1.9785156, -1.0136719, -3.2226562, -0.77978516, 0.36328125, -0.040924072, 0.44799805, -0.7211914, 0.41503906, -0.7475586, -1.7822266, -0.95166016, 2.4414062, -0.092285156, -0.43115234, -0.33642578, 0.14318848, 1.9931641, -1.2392578, -1.3818359, 0.13183594, 0.69384766, -1.1123047, -2.7832031, -0.44873047, 0.8432617, 0.54785156, 3.0351562, 2.203125, -3.8027344, -0.23278809, -0.5810547, 0.33911133, -1.2128906, 0.7001953, 0.7426758, 2.140625, 1.7099609, 1.9326172, -1.1923828, -1.4912109, 0.25854492, 1.8095703, -2.3359375, 1.4550781, 1.0693359, 1.8134766, -1.3828125, 0.9165039, -0.32617188, 0.46289062, -0.65722656, 0.2524414, -2.5097656, 1.5009766, -0.8232422, -0.9868164, -0.059509277, -2.1523438, -1.1806641, -0.32714844, -0.08972168, -1.609375, -2.9921875, 0.9433594, 0.058410645, 1.3359375, 1.3496094, 0.76171875, -2.4394531, -0.098083496, 1.1337891, -0.61279297, -2.6171875, -0.54248047, -0.6513672, 3.3417969, 2.0546875, -0.007423401, 1.0732422, -1.2890625, 1.4453125, -0.45654297, 1.0605469, -0.9526367, 0.49072266, -1.1054688, 0.8100586, 1.8066406, 0.5449219, -0.36083984, 0.95751953, -1.9082031, 0.8305664, 0.44555664, -0.71972656, -0.40771484, 2.2050781, -1.8505859, 0.02217102, -0.6948242, -1.6210938, -0.11773682, 1.2197266, -1.5107422, 1.8105469, 0.24169922, 2.1054688, -0.29125977, -0.41064453, 2.5332031, 0.85498047, 2.0878906, 0.6611328, -1.2402344, 3.6640625, -3.3652344, 1.2216797, 3.2050781, -0.5004883, 0.12548828, -0.12194824, 0.20593262, -1.2089844, 0.45654297, -1.1855469, 1.1142578, -2.0839844, -1.1210938, -0.07489014, -1.5527344, -2.5234375, 1.8105469, 0.10064697, -1.7636719, 0.1875, -1.2900391, 0.8642578, 1.0185547, 1.2529297, 0.19299316, 0.07299805, 0.9892578, -1.7519531, 0.4128418, -3.7617188, 0.88134766, 2.3691406, 5.7265625, 1.3652344, -0.51171875, 0.11883545, -1.5761719, 0.2692871, -0.81591797, -0.13903809, -1.5947266, 0.6694336, 2.0058594, -0.1685791, 0.42944336, 1.1943359, 0.73291016, -0.05050659, 1.1376953, -2.171875, -0.3876953, 1.4882812, 1.421875, -0.56591797, -1.0927734, -0.22583008, -2.1777344, 1.2216797, -0.93115234, -2.9804688, -0.028549194, 0.55566406, 1.9404297, 2.1015625, 1.2890625, -2.5449219, -0.37670898, 0.23657227, -2.9960938, 2.0253906, 0.640625, -0.11206055, 0.9921875, 2.0195312, 0.049591064, -1.2207031, -1.9970703, -0.6948242, -2.3652344, -2.9121094, 0.7167969, -0.25927734, -3.3007812, -0.9980469, -3.1660156, -1.5849609, -1.46875, -1.7900391, -0.67333984, 0.44262695, -0.23571777, 1.4042969, -1.0712891, 0.59814453, -1.4462891, -2.7304688, -2.4863281, 0.07836914, -2.0175781, -1.1650391, 0.06665039, 0.12585449, 1.6923828, -2.3085938, 0.54003906, 0.30322266, 0.7548828, 0.44335938, 1.2207031, -2.5351562, 0.8725586, -1.1845703, 1.2304688, -1.5302734, -1.0351562, -1.7929688, 1.046875, 2.6308594, 0.12780762, 5.3398438, 0.17333984, 1.6230469, -0.16125488, 0.031555176, 0.84814453, -1.1289062, -3.5351562, -2.2851562, 0.8671875, -0.7832031, -0.59521484, -2.7714844, 1.2617188, -0.49951172, -0.91552734, -0.19152832, 0.67626953, -0.029678345, 1.1074219, -2.0585938, -1.7060547, 2.9746094, 1.078125, 0.42016602, -0.2919922, 1.0439453, 0.0059509277, -1.3710938, -1.46875, -1.0732422, 2.0996094, -0.5888672, 2.0507812, -1.5419922, 0.007331848, -0.8544922, 0.9501953, -2.7382812, 3.0429688, 0.66259766, -1.0107422, 0.19702148, -1.0488281, -1.6865234, -1.4072266, 0.20007324, 0.79833984, 3.4492188, 3.3574219, 1.8769531, 0.2824707, -0.78515625, 4.4453125, -2.4121094, 0.68310547, 0.88671875, 3.3300781, -0.63183594, -2.7832031, 0.07739258, 0.46484375, -1.1142578, -0.005264282, -0.44506836, 2.46875, 2.2519531, 1.1435547, 1.3867188, -0.2322998, -2.703125, 3.1757812, 0.4038086, -2.9960938, -2.7675781, 2.8007812, 2.7421875, 1.2373047, -0.25708008, 1.3476562, 0.78564453, 1.8554688, -0.66748047, -0.33154297, -0.82910156, 1.71875, 0.41381836, 0.8120117, -2.7578125, 0.6479492, 0.60253906, -1.9560547, 2.0449219, -1.9003906, -0.7182617, -1.9023438, -0.24951172, 3.0488281, -0.41723633, -1.0205078, 3.7675781, 0.32055664, 1.6074219, -0.84277344, 0.38183594, -1.6162109, 0.35131836, 1.3505859, -2.4550781, -0.018341064, -3.4667969, 4.796875, -2.9003906, -1.8398438, -1.5253906, 3.1699219, -1.7607422, -1.1357422, 0.72753906, 1.6435547, -1.9746094, -0.005470276, 0.9404297, 0.83691406, 2.328125, -0.2944336, 0.63671875, 3.8066406, -1.4277344, -2.25, -3.0175781, 0.076049805, -1.2275391, -0.4116211, -1.0898438, 1.1474609, -0.63623047, -1.1445312, -4.3242188, -0.57177734, 0.20935059, -1.2539062, 0.89990234, 1.5966797, 1.2519531, 1.0410156, -1.0302734, 4.0820312, 1.9677734, 0.021057129, 2.3535156, -3.7597656, -0.7163086, -1.8173828, -4.0703125, 0.15454102, 1.5253906, 0.13330078, 1.4921875, -0.6567383, -0.13903809, 2.9824219, -0.1126709, 0.2685547, -2.5058594, 1.4130859, 1.03125, -0.4177246, -0.03250122, 1.9746094, 2.1464844, -2.1289062, -1.8115234, -2.0214844, -1.765625, -1.1318359, -0.097229004, -2.1054688, 1.1416016, -1.7792969, -0.5498047, -1.6533203, -1.9951172, 0.13476562, 0.25439453, 0.6953125, -0.49194336, 3.171875, -2.2167969, 0.53222656, -2.5214844, 0.90771484, -0.099609375, -0.08734131, 0.29760742, -0.7324219, 2.3222656, 0.048980713, -0.61376953, 0.52490234, -2.1601562, -0.7036133, 0.08892822, -0.37426758, -1.2841797, -1.7070312, 1.109375, 2.2148438, 1.7304688, 2.390625, 2.5214844, -1.2558594, -0.7836914, -0.015823364, 0.3876953, -1.7851562, -2.9140625, 0.13244629, 0.23425293, 1.5585938, -1.7265625, 0.21044922, -0.60595703, 0.22668457, -1.0898438, 1.8779297, 1.7236328, -2.1308594, 3.1855469, 0.80615234, 1.9912109, 1.0810547, -1.1435547, -1.0537109, -0.20922852, 0.7626953, 2.0507812, 0.7626953, -1.609375, 0.43041992, -1.5810547, 0.69921875, -1.8740234, 0.076293945, -0.8339844, 0.018081665, -0.6870117, -0.4189453, 1.6650391, -1.5644531, 3.5214844, -2.1367188, -1.6943359, 4.0195312, 1.6933594, -0.92871094, -0.60839844, 0.91845703, -0.123413086, 0.52978516, 1.2832031, -0.042022705, -2.4492188, -0.8642578, 0.3737793, 1.2119141, 0.91259766, 2.9726562, 2.5625, 0.46533203, 1.4326172, -2.3984375, 2.7207031, 0.37182617, 1.5791016, 3.625, -0.6767578, 0.8251953, -0.16992188, 1.8632812, 0.9638672, -0.6455078, 0.60595703, -1.2753906, 0.8540039, 1.2441406, -4.71875, 1.2646484, 2.2636719, -0.66552734, 0.92822266, -0.89990234, 0.82958984, -1.0136719, 0.7080078, -1.125, -0.1583252, -1.1962891, 1.6582031, 2.3007812, -1.4082031, -0.83154297, -0.31298828, 2.5175781, -1.7529297, -0.62402344, 0.5263672, -0.4362793, 0.61328125, -0.75439453, -2.2246094, -2.3632812, -0.6503906, 1.3710938, 0.9277344, -0.52490234, -0.5678711, 3.3574219, -2.8632812, 1.3730469, -1.3632812, 1.9667969, -2.78125, -0.46362305, 2.3320312, -0.82373047, 0.09844971, -1.2949219, -0.39135742, -0.6225586, 0.79345703, 2.0214844, -0.7758789, -1.4648438, 2.1347656, -1.6347656, -3.5917969, -3.5957031, -1.6220703, 1.9453125, -2.8203125, -0.103515625, 0.16662598, 1.4365234, 0.20214844, 0.11279297, 0.46289062, 2.0117188, -0.89746094, -1.6328125, -1.9677734, -0.74609375, 1.1113281, -0.9082031, 0.5996094, 1.7783203, -0.2836914, -1.9609375, -0.43188477, -0.68066406, -1.6367188, 0.65966797, 1.4570312, -0.29614258, -1.7646484, 0.37841797, 2.4628906, -1.1191406, 2.6347656, -1.7734375, 0.12976074, -0.84228516, -2.875, 0.7441406, -0.25878906, -1.2734375, -1.2792969, -1.1298828, 2.7089844, 1.1220703, -1.5390625, 1.203125, -2.3847656, -2.4570312, -0.44970703, 1.4970703, 0.10369873, 3.1738281, 2.7148438, -0.7128906, -0.63671875, -2.359375, -0.6660156, -2.8066406, -0.9404297, -0.43115234, -1.8095703, 0.19702148, 3.1191406, -3.7304688, 0.8984375, -1.59375, 1.7851562, -0.7285156, 1.3837891, -1.5039062, 0.6333008, 1.0224609, 1.0537109, -1.3427734, -0.26342773, 0.10852051, 2.4511719, -0.58203125, -0.26293945, -0.6855469, -2.4335938, -2.2851562, -0.609375, 1.7910156, 0.65771484, -1.5107422, 1.6582031, -0.41723633, 0.50634766, -1.3212891, 2.2773438, 0.095214844, 2.1992188, -2.0761719, 2.7578125, -0.89404297, -1.7402344, -1.3193359, -1.0380859, 0.032165527, 1.7207031, -0.76416016, -1.2548828, -0.39819336, 1.5126953, 0.04534912, 0.33862305, -1.8984375, 1.4326172, -0.6376953, 0.5576172, -0.8510742, 4.140625, -0.62841797, 0.50390625, 0.8154297, -0.92285156, -0.95751953, 0.7055664, 0.59033203, 0.42163086, 0.31103516, -1.9462891, 2.1425781, 1.5976562, -0.10913086, -0.6040039, 1.4628906, -0.07678223, 0.8417969, 1.7509766, 3.2714844, 2.8007812, 4.1484375, 2.5136719, 0.8051758, 2.6816406, 1.6503906, -1.9570312, 2.1367188, 3.7402344, 0.55126953, 2.3613281, -1.1152344, -0.42919922, -0.9082031, 0.7524414, 0.55566406, 0.31640625, -1.2666016, -2.3535156, 2.4121094, -0.1430664, 0.23376465, -1.9052734, -0.26220703, -2.34375, -1.3789062, -1.2070312, 0.19812012, 0.029846191, 1.0839844, 0.7993164, -0.22521973, -1.3330078, 2.4316406, -2.6054688, -1.8945312, 1.4804688, -2.3613281, -0.3239746, 1.6220703, 0.9555664, 0.8574219, 3.5390625, -0.09753418, 1.1523438, 1.7392578, 2.0214844, -2.1015625, -2.3203125, 0.58984375, 1.1337891, -2.6816406, -1.1484375, -0.5522461, -0.19384766, -0.5541992, -1.7441406, 1.1601562, 0.06896973, 0.103149414, 1.1494141, -2.6601562, 2.7871094, -1.6650391, 0.16906738, 0.3720703, -0.6713867, 0.1706543, 0.51464844, -2.4765625, 1.546875, 1.0908203, 2.0273438, -0.3466797, -2.34375, 1.0693359, -1.1064453, 1.3876953, 1.8925781, 2.5429688, -0.76904297, 0.17797852, -0.9682617, 1.0097656, -1.1269531, -1.2119141, 0.9067383, 1.2763672, 2.3691406, 1.5839844, 0.29003906, -0.045898438, -2.1074219, -0.7211914, -0.6347656, -0.09106445, -0.34155273, -3.46875, 1.6835938, 0.17077637, -1.5371094, 0.16064453, -0.6230469, 2.8378906, 1.1162109, 0.69091797, 1.4091797, -2.1835938, 0.5932617, 1.0917969, -1.1542969, -0.5205078, -1.5136719, 1.6269531, -0.25439453, -1.4697266, 1.6171875, 2.1054688, -0.59375, -2.5488281, -0.59375, 0.58984375, 0.19213867, 1.0302734, 0.7553711, -0.29907227, -1.0546875, 0.59472656, -1.9277344, 1.5185547, 3.3632812, -0.2368164, 0.75097656, -0.53564453, -2.4003906, -4.3710938, -0.7080078, -0.7792969, 2.3339844, 3.9902344, 1.5136719, 1.1191406, -0.8979492, -2.4882812, 0.9082031, -1.9394531, -0.0009994507, 0.35498047, -1.1396484, 0.4128418, -1.484375, 0.92822266, -0.042663574, -3.1308594, -1.0068359, -4.1210938, -0.8491211, 1.1289062, 0.21130371, -1.6914062, 1.8222656, 0.3071289, 1.4150391, 0.32226562, 1.0693359, 3.1542969, 2.125, 1.4433594, 0.31323242, -0.2800293, -0.21740723, 1.1982422, -1.3691406, -2.0664062, -0.7163086, 1.9560547, 0.7758789, 0.21484375, -1.9472656]}, "B001DC5HAW": {"id": "B001DC5HAW", "original": "Brand: Stansport\nName: Stansport 3 Outlet Propane Distribution Post\nDescription: \nFeatures: Simple, versatile device lets you operate three propane devices from one bulk propane cylinder\nWorks with lanterns, stoves, heaters, and other propane appliances\nThree outlets, each with its own auto shut-off valve\nAdjustable base ensures stability on uneven terrain\n30-inch device weighs just two pounds, and packs easily\n", "embedding": [-0.9248047, 0.4790039, 2.3320312, 0.609375, -0.5541992, 0.9892578, 1.2333984, -0.082336426, 0.18652344, 1.4277344, -0.7089844, 1.0214844, -0.57421875, -2.0234375, 0.25024414, 0.66552734, 0.48364258, -0.30932617, -0.21594238, 0.5761719, 1.5, -0.34814453, 1.2490234, -2.8925781, 0.45581055, 1.1679688, 4.5507812, -1.9042969, 0.066467285, -1.0224609, 1.0488281, -1.4804688, 1.1923828, 2.4003906, -2.4453125, 0.58203125, -0.31079102, -0.026809692, -3.0683594, -0.025924683, -1.6240234, 1.4765625, 2.8554688, -0.99609375, -2.140625, -0.52783203, 2.1953125, -0.32763672, 0.7216797, 1.8271484, 1.4306641, 1.1289062, -0.44335938, 0.85595703, 1.5957031, 0.091918945, 3.1953125, -0.45654297, 0.84521484, 2.0136719, 1.0908203, -0.71533203, -1.5712891, 0.61865234, -1.8056641, 0.5493164, 0.13623047, -1.0859375, 0.57128906, 0.6855469, 1.8095703, -0.3425293, 0.8046875, -1.3144531, 0.703125, 0.41577148, -3.6386719, -0.2746582, 0.89404297, -1.4619141, -3.0214844, 1.5673828, -0.51904297, 1.5175781, -0.64453125, -0.77246094, -1.7617188, -0.57128906, -1.5195312, -0.57470703, -2.796875, 1.59375, -1.8779297, -4.578125, 1.3017578, 0.4724121, 1.8818359, 0.90185547, -0.9506836, -0.14355469, 1.0869141, -0.012191772, 1.1582031, 1.6884766, -0.22094727, 1.9238281, 3.5761719, 1.5380859, -1.0615234, -0.23291016, 0.3737793, -1.5898438, 1.9140625, -0.28442383, -0.36865234, 0.15466309, -2.140625, -0.11859131, 5.2382812, 1.8486328, 2.8574219, 0.44213867, 2.8710938, 2.2851562, 0.2154541, 2.6894531, -2.4453125, 2.6835938, 3.5664062, -0.94384766, -1.1523438, -0.8364258, 1.7392578, -0.2746582, -0.105285645, -1.7001953, -1.8369141, -1.1357422, 0.012496948, -2.7734375, -2.3320312, -0.40429688, 0.39379883, -0.7763672, -4.3203125, -0.5385742, -1.3144531, 0.8251953, -0.6279297, -1.4707031, 0.02268982, -2.2402344, -0.89160156, -0.75439453, 0.6152344, 0.21252441, -1.4013672, -0.84716797, 1.4316406, 0.5175781, 2.1308594, -2.3164062, -3.9160156, 0.8857422, 0.78466797, -5.0507812, 1.0029297, 0.32373047, -0.8774414, 1.1542969, 0.5595703, -1.5488281, -1.9570312, -1.8828125, -0.8857422, 0.25024414, 0.53564453, 1.7578125, -0.5024414, -1.7841797, -2.765625, 0.6035156, -0.609375, -1.4208984, 1.5078125, -0.73046875, -0.12445068, -0.19799805, -0.006416321, -0.8222656, -2.2597656, 0.77978516, -3.0957031, 0.5263672, -0.2932129, -2.8964844, -2.9453125, -3.3964844, 1.7695312, 1.5537109, -1.015625, -2.4140625, -0.29516602, 1.34375, -0.0657959, -0.94921875, 1.34375, 2.6152344, -1.4746094, 1.4960938, 0.8901367, 0.4934082, 3.1796875, -1.9619141, -0.42114258, -1.8720703, 3.3007812, 1.3076172, 2.4648438, 1.1640625, 0.3173828, 0.82910156, -1.0097656, -0.71240234, 1.3115234, 1.2744141, 0.29858398, -0.58935547, -2.0371094, 1.6337891, 1.875, -1.0253906, -0.4765625, 0.03353882, 0.7524414, 2.4394531, -0.15917969, -1.5683594, 1.5175781, 2.2109375, -0.15270996, -0.16870117, 1.1962891, 0.5371094, -1.4365234, -1.1855469, -0.44482422, -0.22973633, 1.2177734, 2.2675781, 0.67871094, -1.0009766, 0.24060059, -0.6777344, 0.7001953, 0.6303711, 1.9433594, 0.45385742, -0.75, -2.1230469, 2.0273438, -0.36621094, -0.10424805, -1.4609375, 1.4912109, -0.6767578, 3.0507812, -0.8388672, -0.7910156, 0.1973877, -0.3959961, 0.6586914, 1.5126953, 1.2207031, 1.2597656, -0.23303223, -1.9082031, 2.6542969, 0.13146973, 2.7070312, -0.63916016, 0.9321289, 1.9472656, -3.0839844, 1.4003906, 1.0898438, 0.6660156, 0.7788086, -0.97314453, 0.4802246, 4.0742188, -1.0351562, -2.8339844, 0.8046875, -0.26782227, -0.8051758, 0.19934082, 0.62109375, -0.32763672, -0.43969727, 1.0976562, 0.30004883, -0.8178711, 2.7441406, 1.0332031, 0.1817627, 0.9511719, -2.1269531, 0.18469238, -0.28198242, -4.0078125, -2.3144531, -0.8461914, 1.8710938, -1.7548828, 0.5595703, 2.6582031, -2.328125, 1.1621094, 0.4260254, 0.16479492, 0.7973633, -0.80078125, 0.048675537, -1.4589844, 0.48486328, -1.1083984, 0.8339844, 1.3408203, 1.328125, -0.18005371, 0.5151367, 0.43359375, -2.453125, -0.45385742, 0.8881836, -1.4804688, -2.4785156, 1.9277344, -0.7294922, -1.0175781, 1.6816406, -1.2060547, 1.4287109, 0.47558594, -0.5126953, 0.5214844, 1.0195312, -0.3642578, 0.1538086, 1.1357422, 3.0234375, 1.6865234, -1.5371094, -1.4736328, 0.85009766, -0.11853027, 0.5786133, -0.40820312, 0.5571289, -0.31689453, 1.2529297, -1.8447266, -0.8881836, -1.1542969, -1.0039062, 2, -2.6445312, 0.20629883, 1.2226562, -0.062927246, -1.3681641, 1.7509766, -0.16137695, -1.5615234, -0.46557617, 0.1027832, 1.5449219, -1.4609375, 0.6303711, -2.0585938, 0.54785156, -1.3388672, -0.9165039, -2.8398438, 0.6855469, -0.7607422, -0.5126953, -0.19848633, -3.0898438, 0.3857422, -1.6513672, 0.9013672, -0.8183594, 0.5073242, -1.2255859, 0.83935547, 1.2626953, 1.6865234, 0.37280273, -0.009086609, 0.5698242, 0.65185547, -1.0722656, 1.7167969, -0.5756836, -0.36547852, 0.99365234, -0.08319092, -1.0097656, -1.1660156, 2.2324219, -0.9223633, 0.23474121, 1.2792969, -1.1376953, 0.7729492, 0.3815918, -0.8261719, 3.1914062, 0.16455078, -0.8769531, -0.76660156, 0.48657227, 2.8085938, -0.0010900497, 2.1835938, -0.5527344, 0.05419922, -0.37280273, -1.0556641, -2.3417969, -2.4003906, -1.46875, 3.7402344, -1.8369141, -0.14819336, 0.12200928, 0.27246094, -1.0488281, 0.40820312, -1.0146484, 0.67578125, 1.1123047, 1.4765625, -0.2130127, -1.5761719, 0.22009277, -1.8515625, -0.8847656, -0.15026855, -0.86865234, -2.8183594, 0.19018555, -1.734375, 0.24145508, 0.44189453, 1.0068359, 2.0253906, 0.18835449, 1.9550781, 0.18041992, 1.4199219, -1.4472656, -0.64453125, 0.09088135, 1.7685547, 1.5351562, 0.69921875, -1.8134766, 1.6621094, 1.5351562, -1.6660156, -0.54785156, 1.3417969, -1.1464844, 0.16906738, 1.2451172, -0.55371094, -0.515625, 0.03866577, 2.3046875, 0.22814941, -2.5625, -0.14343262, -0.8876953, 0.4494629, -2.3964844, -0.6660156, -0.8598633, 0.2006836, -1.5498047, 0.1274414, -0.07098389, -1.0332031, -4.6171875, -2.5488281, 1.0800781, 1.6435547, 0.83203125, 0.5449219, -1.6894531, 0.07324219, 0.034179688, 2.1835938, -0.63623047, -0.70703125, 1.9707031, -0.2446289, 0.62939453, -1.6894531, 0.62060547, -0.49414062, -2.0703125, 0.23583984, -0.74121094, 0.40698242, -1.9091797, -0.8745117, 0.9863281, 1.9589844, -0.3647461, 1.6064453, -3.0058594, 2.6894531, -1.9589844, 0.60058594, 1.2070312, -4.390625, 0.21826172, -3.2675781, -1.7978516, 0.82177734, -0.25317383, 0.13415527, 1.4853516, 2.5683594, -0.5830078, 0.28808594, 1.7421875, -4.3203125, -2.6542969, -0.39501953, 0.61279297, -2.5058594, -1.9541016, -0.28295898, 1.9365234, -1.0107422, -0.7885742, -0.23901367, -1.0039062, -1.1826172, -1.6591797, -0.49609375, 0.9785156, 1.265625, -1.1748047, -0.6196289, -0.78222656, 1.5488281, -0.55078125, -0.3540039, -0.7949219, 1.1464844, 2.6386719, 1.1708984, -0.24719238, 1.8251953, 0.6743164, -2.1445312, -0.7788086, -0.7192383, 0.36010742, -0.21276855, -1.5039062, -1.4746094, -2.0449219, 1.0195312, -1.4892578, 0.62890625, 0.12573242, -2.046875, 2.0273438, 0.49804688, 0.15808105, 0.17602539, -1.15625, -1.6923828, 2.0371094, 1.1611328, -0.7519531, -1.9013672, -0.9716797, -1.7158203, -1.2929688, 1.7724609, -1.8525391, -0.056488037, -1.0917969, -1.7089844, -0.87158203, 0.87939453, -0.38232422, 0.83740234, 1.5419922, 0.2932129, -2.2558594, 0.3071289, 0.8754883, 0.51660156, 0.27197266, 0.93408203, -0.9526367, 2.1386719, 0.6166992, -0.83935547, -3.1679688, -0.2368164, 0.5332031, -2.5859375, -0.3828125, 0.5991211, -3.2578125, -2.1308594, 1.4423828, -0.2524414, 2.0214844, -1.0126953, 2.0019531, 1.2246094, -0.5151367, -2.0644531, 0.61035156, -1.984375, 3.5371094, 2.4980469, 0.9379883, -0.16540527, -0.49267578, 2.5878906, -0.091796875, 2.5527344, -2.4375, 1.5371094, 1.1992188, 0.45532227, 0.6298828, 0.7368164, -0.28344727, 1.5917969, 0.05456543, 1.9238281, 1.6435547, -1.4746094, 1.1259766, -2.3339844, -0.59228516, 0.5722656, 0.6699219, -1.7324219, 2.5585938, -0.6459961, -2.3085938, 1.1806641, 2.2792969, -1.1884766, 2.0058594, -0.0069389343, -0.59375, 0.14587402, -2.8964844, -1.4501953, 0.7553711, 0.60009766, 1.9355469, -1.0292969, 0.89990234, 0.56884766, 1.5527344, -0.8886719, -0.24987793, 0.54003906, 0.09051514, 0.86035156, -1.0136719, 0.8256836, -0.7080078, -2.1074219, 1.5771484, 1.4345703, 1.3701172, 0.066711426, 1.2519531, 0.40820312, -1.1582031, -2.1074219, -1.6904297, 0.71728516, -1.2802734, 0.25073242, 2.4257812, 1.5986328, 0.16125488, 0.51171875, -2.1308594, -0.9267578, 1.4013672, 1.1220703, 1.6328125, -0.7026367, 0.84521484, -1.5683594, -4.6796875, -2.4921875, -1.3457031, -0.45947266, -0.3474121, -1.9511719, -0.4362793, -0.86865234, 0.6767578, 1.7851562, -1.9423828, 1.4384766, 1.8408203, 2.5117188, -0.58935547, -1.9736328, -0.14892578, 1.8681641, -0.03326416, -1.2167969, -0.44799805, -1.65625, -2.0566406, 2.8046875, -0.63671875, 1.4619141, 1.4003906, -0.74560547, 0.64697266, 2.765625, -0.30493164, -3.6230469, 1.3564453, -3.1132812, 0.0016727448, 0.4165039, -0.7578125, -0.2878418, 2.5488281, -0.4543457, 2.1757812, 0.52783203, 0.4802246, -0.97021484, -0.30029297, -1.4472656, -0.14904785, 0.011383057, 1.1884766, 1.7578125, -0.18286133, 1.8974609, 2.1308594, -1.75, -2.4746094, -2.6757812, -1.515625, -0.18566895, -0.122680664, 2.0859375, 0.95458984, 2.0957031, -0.5913086, 0.48413086, -0.3779297, -0.72021484, -0.64990234, 1.8818359, 0.89208984, -1.4208984, 2.8867188, -1.9287109, 0.005458832, -2.28125, -2.4550781, 0.88427734, 1.9472656, 0.44799805, -0.14123535, 2.1601562, -0.86035156, 1.0048828, 2.1210938, 1.0732422, 2.1113281, 2.7148438, -2.5234375, -0.4584961, 1.875, 1.1191406, 1.1132812, 1.765625, 0.12432861, 1.2226562, -0.92822266, 0.7368164, 0.72558594, 0.14978027, -1.3535156, 1.2431641, 0.81884766, -2.7890625, 2.703125, -1.6279297, 0.47753906, -0.3034668, -0.08929443, -1.6933594, 0.93603516, 1.2050781, -0.82958984, 2.234375, 1.3681641, -0.30078125, -1.3320312, 0.5136719, 1.8066406, -1.7880859, -0.6308594, 1.4746094, 2.7480469, 1.7041016, -1.5644531, 1.0771484, 0.5576172, 1.3740234, -0.9995117, 1.0761719, -2.5625, 1.6376953, 0.061767578, -0.5366211, 2.3691406, 0.80371094, 1.2587891, 0.02960205, 0.671875, 3.2636719, -1.0888672, 1.7539062, -0.89453125, -0.28344727, -1.3017578, -0.8129883, -0.66064453, -0.56591797, -0.15612793, 0.61376953, -0.6899414, 0.9013672, -2.2792969, 0.7685547, 0.5732422, 0.46850586, -2.2636719, 0.7685547, -1.8867188, -0.67041016, 2.4453125, 0.9243164, 0.03201294, 0.44140625, 0.17626953, 0.30541992, -0.008636475, 0.9902344, 0.2705078, -0.8876953, -2.078125, -0.7524414, -0.45898438, 0.99853516, -0.3959961, 0.91796875, -0.5385742, 1.1464844, 0.4050293, -0.89404297, -0.8178711, -0.94189453, -0.055786133, -0.56152344, 2.1699219, 0.9892578, 0.8925781, 2.4960938, 2, -1.4609375, -3.3789062, 2.9765625, -0.89990234, -0.22912598, 0.101501465, -3.2597656, -1.1464844, -0.11102295, -0.5444336, -0.9086914, 0.17553711, 1.2548828, -1.5830078, 1.34375, 1.4121094, 0.5527344, 0.4272461, 0.796875, -1.7578125, 2.1933594, 1.7529297, 1.7089844, 0.7104492, 0.22546387, 0.28442383, 1.1582031, -1.7626953, 3.203125, 1.1601562, 1.1689453, 0.8203125, 2.8203125, 3.0078125, 0.20166016, -1.0556641, -0.6152344, 2.2246094, 1.7128906, -1.8984375, -1.1855469, -1.7158203, -0.35717773, 1.0283203, -2.8359375, 0.66259766, -2.328125, -2.984375, 1.9472656, -1.40625, 2.3027344, -0.66308594, -0.6088867, -1.5527344, 0.6347656, -1.171875, -1.6162109, 2.0820312, 2.984375, -0.46850586, -0.5161133, 0.73535156, 2.2304688, 1.0136719, -1.0107422, 0.7783203, -0.06222534, -1.5527344, -0.62060547, 0.04067993, 0.5878906, 1.2392578, -0.033233643, -0.8256836, -1.3837891, 1.6337891, -0.037994385, -0.6948242, 0.19689941, -1.0449219, 0.7104492, -1.6337891, 0.17419434, 0.5385742, 0.26538086, -2.0351562, 0.7817383, -1.0244141, -1.5478516, -1.8925781, -1.4951172, 1.0673828, -0.41357422, 0.57910156, 1.7529297, 1.7304688, 1.6025391, 0.46289062, 1.6962891, -1.1132812, 0.25830078, -0.32226562, -0.40405273, 0.8149414, 0.9941406, -0.024917603, 0.6611328, 3.5234375, 0.02166748, -1.1523438, 1.1982422, 2.421875, -1.5195312, -0.09698486, -1.0371094, -1.5224609, -0.12768555, -0.89453125, -0.37402344, 1.2021484, 0.49047852, -0.43115234, -3.5429688, -0.63671875]}, "B01GE77QT0": {"id": "B01GE77QT0", "original": "Brand: ThermoPro\nName: ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer\nDescription: \nFeatures: Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself\nHassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition\nKitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature\nUSDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes\nDurable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit\n", "embedding": [-4.1640625, 1.7851562, 4.2265625, 1.7832031, -0.8432617, 0.30029297, -0.91748047, 1.7773438, -0.3840332, 1.1953125, 1.3632812, 0.35009766, -0.9458008, -1.0009766, 0.13391113, 0.43017578, 0.12200928, -0.5073242, 1.6601562, 3.8359375, 1.4121094, 2.0351562, -1.2138672, -0.69873047, 1.5458984, -0.024398804, 1.2265625, -1.6660156, -0.63964844, -2.1347656, 2.8964844, 3.0917969, 0.8046875, -0.30322266, -0.6425781, -0.36743164, -1.2099609, -0.07299805, 1.4794922, -0.30810547, 0.02104187, 1.8203125, 0.30517578, 2.2109375, -3.5371094, -1.9931641, -0.62597656, 2.078125, -2.0351562, 0.49414062, 0.12097168, 1.6123047, -1.7080078, -0.14892578, 0.9975586, 0.46411133, 0.008872986, -3.0585938, 0.43969727, 1.2382812, -0.08984375, -0.6645508, -1.0039062, 0.16467285, 1.6181641, 0.1763916, 0.87353516, -3.0097656, -0.2475586, -0.26000977, 0.578125, 0.8959961, 1.0566406, 0.88183594, 1.1376953, -1.3818359, -0.7973633, -0.08862305, 1.3193359, 0.6899414, 0.24926758, 2.9375, -0.26098633, -1.7773438, 0.88378906, -2.2753906, 0.89160156, 1.5908203, 2.6582031, -0.72802734, -0.41967773, 2.7070312, -2.0292969, -2.8417969, 1.0820312, -0.9711914, -1.4033203, -1.3710938, -1.4677734, 2.4375, -0.16442871, -1.5224609, 0.31225586, 1.3476562, -2.2382812, -1.9628906, 0.50390625, 1.7548828, -3.46875, -1.7919922, -1.7929688, 2.2050781, -0.17102051, 0.4663086, -1.3886719, -0.9790039, 0.20825195, 0.53027344, -0.6479492, 2.2617188, 2.6894531, -1.7392578, 0.8227539, -0.4855957, -0.47045898, 0.88183594, 2.2890625, 0.5, 1.453125, 0.7128906, -2.2519531, -0.39282227, 0.46289062, -0.4284668, 2.8339844, -2.1464844, -1.3984375, -1.7773438, -1.5244141, -1.3798828, -1.7929688, 0.7470703, -0.55078125, 1.4394531, -1.5400391, -1.5449219, 1.6318359, -0.2265625, 2.5332031, -1.2919922, 1.1054688, -2.2539062, -0.21911621, -0.57128906, 2.2207031, 1.4638672, -0.79345703, 0.33740234, 3.1523438, 0.34570312, -0.022354126, -1.2724609, -1.2998047, 0.2939453, 0.9189453, -0.65283203, -2.7539062, 1.5097656, 1.2988281, 2.6484375, 1.0664062, -1.0458984, 0.8798828, -0.38256836, 0.068725586, -3.5117188, 3.1347656, 3.3867188, 1.4755859, 1.5683594, -0.7553711, -1.6826172, 0.3972168, 1.6289062, -0.6879883, -2.6542969, -2.21875, 1.2568359, 2.3476562, -2.8535156, 2.09375, 2.0585938, 1.7763672, 0.46533203, 0.34960938, -0.56347656, -1.4882812, -3.03125, 1.3974609, 1.0322266, -1.1708984, 0.7519531, -3.0136719, -2.9160156, -1.3076172, -1.5410156, 0.119506836, 0.47875977, 1.0908203, 2.0800781, -0.20471191, -2.3574219, 1.0517578, -1.0097656, 0.0074539185, -2.6328125, 1.7617188, 0.30810547, -0.3881836, 2.1054688, -1.1835938, 0.15979004, 0.95996094, 2.53125, -1.7021484, 2.6367188, -1.8916016, 1.8720703, -1.15625, -1.3339844, 3.1171875, -0.8486328, 1.1025391, -2.2675781, -0.42285156, 1.5498047, 0.9350586, -1.7597656, -1.6621094, 2.1328125, 0.27172852, -1.9960938, 0.07165527, -1.8730469, -1.2041016, -1.3193359, -2.0058594, 3.8085938, 1.9326172, -0.37475586, 0.9716797, 0.8198242, -0.035736084, 0.31469727, -0.2607422, 0.08123779, -0.76953125, 1.640625, -3.1347656, -2.0527344, 1.6337891, -0.46533203, -1.5498047, 1.9970703, 2.0371094, 0.48950195, 5.328125, 2.4589844, 0.31030273, -0.5307617, -0.18347168, -0.35717773, -2.8242188, -0.05609131, 2.0800781, 0.7236328, 0.8901367, 0.49560547, 1.6015625, -2.3691406, 0.84228516, 2.1738281, -1.1035156, -0.83203125, 0.9267578, 0.6640625, -1.1943359, -2.2597656, -0.9111328, 0.96435547, 3.0957031, 1.5302734, -3.21875, 1.9082031, -3.2480469, 1.0615234, -1.5517578, -0.5991211, 1.3027344, -2.1289062, 1.6015625, -0.03945923, -1.8339844, -0.7182617, 0.31030273, -0.4663086, 1.3632812, -0.5551758, 2.265625, 0.7836914, 1.2363281, -1.7675781, -3.1621094, -0.5449219, -1.5361328, -3.1191406, -0.7011719, -2.71875, 1.0820312, -1.0380859, 2.15625, 2.2285156, 2.1835938, -0.59716797, 1.1972656, 2.40625, 0.65966797, 0.86621094, 1.4609375, -1.4121094, 1.2792969, -1.0712891, 0.76904297, -0.46484375, -2.7675781, 0.43676758, -0.79785156, -1.9482422, 1.4667969, 0.7919922, -2.4570312, 1.6455078, -1.7011719, -0.68603516, -1.2519531, -1.7958984, -0.3942871, -1.1357422, 0.045959473, -1.5615234, -0.15881348, -0.23718262, -0.296875, -1.6376953, 1.3427734, 0.9824219, -0.9951172, 0.13476562, -2.7382812, 1.3828125, -2.3808594, -0.44067383, 0.74560547, 1.4892578, -0.17578125, -1.7763672, 1.6220703, -1.1894531, -0.12084961, -1.8125, 0.61376953, -1.8818359, -0.15686035, -1.0576172, -0.33520508, 1.3623047, 1.0888672, 0.90966797, -1.6181641, 3.9472656, -2.3886719, 1.1611328, 1.9658203, 1.6923828, -2.0292969, -1.9511719, 0.004146576, -2.1523438, -0.8852539, -3.3007812, 0.24169922, 0.20739746, 2.328125, 0.022598267, 0.55126953, -0.45532227, 1.40625, -1.2148438, -3.515625, 0.16662598, 2.2734375, -1.9521484, -1.5371094, -2.2246094, -0.34643555, -2.0371094, -2.4140625, 0.049194336, 1.2285156, 0.73535156, 3.6074219, 1.6640625, 0.5361328, -0.6748047, -0.49267578, -4.0585938, 0.6660156, 0.46948242, -3.0214844, -1.15625, 0.43286133, -0.47094727, 0.6904297, 0.54296875, 3.0683594, 1.2392578, 4, -0.1149292, 0.14343262, 1.7724609, 2.2441406, 0.10595703, -0.29296875, 1.7910156, 0.29663086, -4.703125, -1.8457031, -0.32202148, 1.3681641, -1.0400391, -2.8007812, 1.0058594, 2.1191406, 3.9277344, 0.75390625, -1.0888672, -1.1933594, -1.9287109, 1.640625, -1.3925781, -1.9121094, -1.1816406, -0.017456055, 0.95166016, 1.4160156, 0.24365234, 3.5371094, -0.26000977, 2.1914062, 1.3671875, 0.6225586, -1.7216797, -1.8544922, 0.34277344, 1.9667969, 1.1914062, 0.6694336, 0.9057617, -0.5073242, 1.1630859, 0.5439453, 1.5283203, -1.5986328, -0.91503906, 0.9165039, -0.12365723, 0.8701172, 0.8564453, -0.18139648, -0.82421875, -2.4902344, -1.2578125, 1.6298828, -0.4477539, 2.078125, -0.6088867, -1.0556641, -2.8632812, 0.890625, -0.24609375, 0.21325684, -0.9248047, 1.2958984, -1.2832031, -1.2861328, 0.5161133, 0.35668945, -0.46069336, -0.7597656, -0.99072266, 0.11175537, -0.5961914, -0.8520508, 0.4116211, 1.7529297, -2.1054688, -2.7832031, 0.14697266, 2.0605469, 2.5253906, 0.38232422, 0.02027893, 0.07757568, -0.14257812, -1.8056641, -3.7441406, 0.5571289, 1.7724609, -1.4912109, 1.3974609, 0.93066406, 2.5742188, -0.0892334, -0.8515625, 1.546875, 0.40161133, -3.6679688, 0.4873047, -3.1230469, -1.0830078, -2.6601562, -4.046875, 1.2636719, 0.16906738, 2.3242188, 1.9609375, 1.2998047, 1.4570312, 2.8613281, 1.2529297, -2.1230469, -1.9003906, -0.45361328, -0.28027344, 0.27563477, -0.32861328, 6.0117188, 0.95166016, -0.32836914, -0.15368652, -0.41455078, 0.6538086, 2.8007812, 1.3720703, 1.0351562, 0.53515625, -1.2070312, -0.27514648, -0.70214844, -0.0010156631, 0.38745117, -0.9682617, -0.20825195, -0.8261719, 1.4414062, -2.5058594, 0.20007324, -2.9902344, 2.875, -0.2019043, 0.29125977, -0.23950195, 1.0380859, 1.6064453, -0.27441406, -1.0478516, -0.7631836, -1.3554688, 1.6337891, 0.5366211, -1.9472656, -0.29418945, -3.2734375, -2.1738281, -0.74902344, -0.8017578, 1.4443359, 2.6992188, -2.1386719, -0.9326172, 0.6640625, -1.2216797, -2.3105469, -1.9462891, -2.40625, -0.796875, 0.47753906, 1.5087891, 0.58935547, -1.2373047, -0.9975586, -3.4355469, 3.2929688, 3.4316406, 0.94433594, 3.5625, 0.07867432, -0.55371094, -0.34301758, -0.46704102, -0.18457031, -1.8154297, 2.1835938, 0.11956787, 0.35668945, 1.7773438, -1.1064453, -1.0625, 0.47680664, 1.0048828, 0.9628906, -0.20385742, 1.2451172, -0.4465332, 1.0332031, 4.5429688, 0.27514648, 4.1367188, -0.80859375, 1.6376953, -0.36669922, -1.25, -0.15930176, 0.35253906, 0.20788574, 0.3293457, -0.953125, -0.28295898, 3.0761719, -1.8427734, 0.64453125, 1.0791016, -0.023223877, 1.0410156, 2.765625, 0.42358398, 0.87939453, -2.3183594, -2.0585938, 2.6816406, 2.0546875, 0.0087509155, 5.0078125, -0.19433594, -1.6992188, -0.6191406, 2.7832031, -1.90625, 1.8427734, -1.4951172, -1.6972656, -0.20471191, -0.30981445, -2.6855469, 0.43823242, 3.0390625, -0.35717773, 2.4726562, -1.6972656, -1.0039062, 2.6113281, -3.4785156, -0.5498047, 0.6040039, -0.87646484, 2.4765625, -0.9550781, -2.4453125, -1.9365234, 2.2128906, 1.9335938, -1.7988281, -1.5429688, -0.42895508, -3.109375, -2.5898438, -0.6230469, -2.2460938, -3.4824219, -0.49267578, 0.94384766, 0.10144043, -1.9082031, 0.5239258, 1.1386719, -1.2148438, 0.18127441, -0.5991211, 3.1914062, -1.5996094, -0.36767578, 0.24731445, 0.9995117, -0.90722656, 0.10522461, 0.29956055, -2.2441406, 1.4228516, 2.0371094, -0.32250977, -1.3984375, -0.09069824, -2.4921875, -3.5117188, -1.2851562, 1.0634766, 2.1621094, -1.3554688, 0.11730957, 0.36108398, -1.5449219, -1.7832031, 0.45288086, 0.13623047, 0.8745117, -0.52197266, 0.76416016, -0.9790039, -0.4794922, -1.1210938, 1.2949219, -0.04083252, 1.7587891, -1.9638672, -2.3164062, -1.4658203, -1.0654297, -1.7128906, -2.3964844, 1.4453125, 2.3886719, -2.9726562, 0.51904297, -0.050994873, -2.265625, 2.9785156, -0.6772461, 0.5073242, 0.36254883, 0.88671875, 1.0126953, -2.8730469, 1.6230469, 1.6669922, -0.13391113, 1.1542969, 0.93847656, -3.1210938, 0.67578125, -0.5996094, -2.7558594, -2.3261719, -1.3291016, -0.057281494, 0.2536621, 0.2442627, 0.04208374, 1.2666016, -2.7871094, -5.4765625, -0.80859375, -1.0126953, 0.12792969, -1.1865234, 0.68847656, 2.8613281, -0.43164062, 1.7226562, 0.16967773, 0.84765625, -3.8339844, -0.13781738, 1.5410156, 1.3183594, 0.72753906, -0.85595703, -0.5234375, -2.3574219, -0.28881836, 2.2246094, -0.7084961, -2.1308594, -0.18115234, -2.0527344, -1.4404297, 1.5273438, 3.5527344, 0.13049316, -1.6152344, 0.66064453, -0.4873047, 2.8183594, -1.90625, -1.2734375, 0.45703125, 2.9628906, -1.3720703, 4.0351562, -0.3395996, -1.9121094, -0.1105957, -1.1484375, -0.8256836, -0.17956543, -0.6455078, 2.1425781, -1.5986328, -0.17272949, 1.9902344, -3.9433594, -0.9711914, 1.3115234, 2.5898438, 0.2064209, -0.2956543, 4.9335938, 1.7851562, 0.49975586, 2.3886719, -1.1787109, 1.5986328, -0.5991211, -1.3525391, -1.3300781, 1.5029297, -2.0703125, 0.6040039, 1.0878906, 0.32763672, -3.3320312, 2.2363281, -0.14123535, 2.6953125, 0.96484375, 2.8203125, 2.7675781, 2.3964844, 1.4697266, 0.8779297, 2.5117188, 0.8745117, -1.8496094, -0.19348145, 2.4980469, 0.09576416, 0.5229492, -2.8320312, 1.3574219, -0.70214844, 0.41308594, -0.3503418, 1.8632812, -0.9794922, -0.30249023, 0.8496094, -0.20666504, 0.3737793, -3.8867188, -0.27270508, -0.55908203, 1.0302734, -2.6230469, 3.1816406, 0.6689453, -1.1552734, 1.2792969, -0.50097656, -0.72216797, 1.2314453, -1.9072266, 1.5595703, 0.87597656, -1.0507812, -1.03125, 1.7226562, -0.19995117, 0.9165039, 3.1054688, -1.0693359, -0.41015625, 1.0107422, 1.3476562, -0.09088135, -1.7529297, 0.041381836, 3.0117188, -1.5595703, -0.29785156, 0.2705078, -0.69628906, -3.4511719, 0.6635742, 1.9599609, -1.2714844, 2.1015625, -2.296875, -2.1328125, 2.0605469, 0.61328125, -0.001244545, 0.04058838, -0.10028076, 0.58154297, 0.96972656, 2.5175781, 2.2792969, 0.5288086, 1.7138672, -2.6074219, -2.140625, 0.12561035, -0.51123047, 0.97802734, 2.1386719, -0.5546875, -1.0771484, -0.37060547, 1.0107422, 2.6796875, -1.4404297, -1.953125, -2.0859375, 1.1259766, -0.68066406, 0.89404297, -0.6977539, -4.2695312, -1.0068359, -1.1640625, -2.4023438, -1.7480469, -0.3256836, 0.55029297, 1.6953125, -2.0957031, 0.6928711, 0.3684082, 1.3271484, 2.8476562, 0.99853516, 2.4960938, 1.4951172, -2.1210938, 2.2734375, 1.9599609, -0.92089844, 0.87597656, 0.21105957, 1.4541016, -0.8339844, 0.49047852, -0.43066406, 0.8076172, -0.7368164, 0.47729492, 0.086242676, 1.8486328, 0.515625, 0.6977539, 0.7246094, -0.55566406, 0.91845703, -1.7285156, -3.6992188, 0.23950195, 1.8017578, 0.21984863, 0.035614014, -1.2626953, -0.7285156, -1.1298828, 1.1738281, 0.87158203, 2.0703125, 2.5898438, 1.9785156, 0.21850586, -0.76660156, -1.6376953, -1.6337891, -0.18530273, -1.9804688, -0.25048828, 0.23706055, 1.5732422, -1.2451172, 0.7963867, 0.70458984, -0.9243164, -0.9248047, -2, -0.35131836, -1.8398438, 1.3212891, -0.85498047, 0.9013672, 0.43530273, 0.7817383, 1.0986328, 1.9150391, 4.0976562, 2.9121094, 1.3447266, -2.8632812, -2.7050781, 2.5917969, 1.1386719, 0.56396484, 2.1152344, 0.09051514, -0.4909668, -1.1669922, -1.5703125, -1.1757812]}, "B00B58A0QU": {"id": "B00B58A0QU", "original": "Brand: Cuisinart\nName: Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14\", Red, 14.5\" x 14.5\" x 15\"\nDescription: \nFeatures: 150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently.\nDUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control.\nTHREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport.\nCOMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more.\nENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.\n", "embedding": [-2.8789062, 1.0507812, 3.2089844, 0.38867188, -1.2636719, -1.546875, 2.4140625, -2.6074219, -1.1113281, 2.4980469, 1.5351562, -1.2451172, 0.4025879, -2.1289062, 1.4980469, -1.1601562, 2.3359375, 0.34350586, 0.94873047, 0.38598633, 1.1591797, 1.1230469, 0.5732422, -0.44799805, 1.1279297, 0.79541016, 3.7089844, -2.7539062, 0.23278809, -2.4355469, 1.4951172, 0.4140625, 1.1181641, 1.3857422, -1.515625, -0.34985352, -2.7128906, 1.9384766, -0.5004883, 0.33764648, 0.09655762, -0.71435547, 2.7050781, -0.34838867, -3.5839844, 0.003522873, 1.0029297, 2.2285156, 1.3076172, -1.7724609, 2.5605469, 1.1542969, 1.5136719, 1.8623047, -1.6269531, 3.3046875, -1.4804688, -1.9472656, 1.5341797, -1.4228516, 2.2070312, -0.5415039, -0.78564453, 0.81933594, 0.04095459, -0.9980469, -0.28198242, 1.2509766, 0.6801758, 0.7363281, 0.48632812, -0.91015625, -1.3828125, -0.7397461, -0.86376953, -0.17297363, -2.3769531, 2.6875, -0.23950195, 0.22131348, -2.1875, 3.1425781, -0.12207031, -2.5957031, -0.95947266, -0.7915039, -0.7216797, -0.94433594, 0.7578125, 0.28295898, 0.014389038, 1.5869141, -2.765625, -3.0820312, 0.7944336, -2.3632812, 0.46704102, 1.5576172, -0.984375, 1.6669922, -0.49047852, -1.0136719, -1.4404297, -0.90771484, -3.0507812, -0.4140625, 2.109375, 0.18408203, -1.3554688, 2.3769531, -1.9511719, -0.59814453, -0.38330078, 1.1953125, 1.1982422, -0.37451172, -0.64990234, 1.46875, 1.1982422, 0.13391113, 4.1132812, 1.5146484, -0.049865723, -2.5449219, -0.46557617, 0.6176758, -0.7636719, 1.6171875, 4.5820312, -0.6611328, -0.59277344, 0.53271484, 1.6787109, 1.4931641, -2.9902344, -2.5058594, -2.6640625, -1.3261719, -2.3125, 2.28125, -3.9355469, 1.2822266, 1.3847656, -1.21875, -2.6035156, -2.0488281, -0.5361328, 2.1601562, -1.1347656, -1.9121094, 0.82373047, -2.7636719, -1.0625, -0.42626953, 2.0039062, -1.40625, -1.6923828, -2.8789062, 2.8027344, 0.38012695, 1.5439453, -2.8261719, -0.09686279, 1.0205078, 1.0585938, -0.7558594, -0.2298584, 1.9541016, -1.6171875, 2.1035156, 0.6430664, -2.5410156, 0.49609375, 0.45581055, 1.9277344, -0.52490234, -1.7304688, 2.1992188, 0.8364258, -0.88427734, -0.10223389, -2.7480469, 2.0351562, 1.4433594, 0.02909851, -1.2753906, -0.56689453, 0.69189453, -0.66064453, -1.4902344, 1.59375, 0.30444336, -0.5932617, -0.7192383, -0.24682617, 0.06958008, 0.75, -1.3144531, -0.62158203, 0.45410156, -1.6552734, 0.828125, -1.1884766, -0.077941895, -2.6132812, -1.7871094, -1.2236328, -0.19189453, 1.9609375, 2.0976562, 1.0654297, -1.1855469, 2.1210938, -1.2949219, -0.33154297, -1.8105469, 0.7504883, -0.609375, 0.8618164, 2.0136719, -0.60302734, 0.13427734, -0.52978516, 4.2460938, -1.5800781, 1.75, 0.059906006, 0.6376953, -0.36328125, -1.1660156, 2.1757812, 1.3662109, -0.2800293, 0.17565918, 0.29077148, 2.7089844, -0.13745117, -0.30493164, -1.3076172, 0.22924805, -1.0820312, -1.1162109, -0.63378906, -0.12817383, 0.24291992, 0.28320312, -1.7978516, 4.34375, 1.8261719, -0.83447266, -1.8115234, 0.5917969, -0.7138672, 2.5078125, 0.47387695, 1.1777344, -0.9316406, 1.1982422, -1.3701172, -3.1367188, 0.3786621, 1.0634766, 0.16369629, 0.72314453, -0.118652344, -0.7236328, 2.5195312, 1.3408203, -1.2929688, -0.18701172, 1.6044922, 0.87890625, 0.7734375, 0.5439453, 2.7773438, -0.3713379, 1.2841797, 0.45581055, 0.5004883, -0.3942871, 1.3701172, 1.5380859, 3.1894531, -2.5136719, -1.2578125, -0.88720703, -1.1357422, -0.8486328, 0.42456055, 0.6230469, 2.8691406, -0.14111328, -2.9472656, 4.546875, -1.5087891, -0.20654297, 1.0107422, -0.859375, 0.38891602, 0.47265625, 1.5537109, 1.1845703, -0.22814941, 1.2998047, -1.8330078, -1.28125, 1.2705078, -3.3769531, -0.9560547, -0.012138367, -1.0146484, 0.028900146, -2.0957031, 1.3271484, -0.9946289, -0.9472656, 0.3017578, -2.2246094, 1.5097656, 1.4667969, 2.2324219, 0.78466797, -1.4072266, -2.0703125, -1.4736328, 2.1074219, -1.8710938, 0.23693848, 0.65722656, -1.1914062, -0.057556152, 0.6088867, 1.796875, -1.9775391, -3.1113281, -3.1074219, 0.33447266, -1.6982422, 0.6196289, -0.83740234, -0.2578125, 1.0869141, -1.6699219, -0.9067383, -1.4960938, -3.1835938, -0.0680542, 0.5083008, -1.4189453, -0.27197266, -0.3461914, -0.033843994, 0.46020508, -4.5078125, 1.0244141, -0.0023479462, 1.46875, -0.013320923, -2.2753906, 1.21875, -0.016647339, 0.88183594, -0.58740234, 0.0579834, 0.17614746, -1.671875, -0.5473633, -2.1835938, 1.8857422, -2.9394531, -1.2597656, -0.76464844, 1.5039062, -4.328125, -1.2382812, 0.086364746, -1.59375, 3.1503906, -0.97509766, 1.7001953, 0.48706055, 1.0410156, 1.1669922, -0.9057617, -2.5429688, -2.3730469, 0.39770508, -0.2524414, -3.5703125, -3.078125, -1.3447266, -0.9082031, -0.33642578, -1.1748047, 0.64404297, -1.21875, 1.1494141, -3.0488281, -1.0908203, -0.94140625, 2.203125, -0.91015625, -0.8222656, -2.2109375, -0.9711914, -1.1806641, -1.0517578, 0.15783691, 0.93066406, -0.2692871, 1.375, 0.1875, -0.25195312, 3.2207031, -0.8769531, -3.5195312, 2.1621094, 0.6308594, -1.3164062, 0.56933594, -0.55371094, -2.0839844, -4.5273438, -0.5019531, 1.7910156, 1.2382812, 1.9912109, 0.9941406, 1.0068359, 0.50146484, 0.41674805, 0.08581543, 0.8251953, 0.7426758, 3.0234375, -2.3632812, -2.9023438, 0.640625, 1.4121094, -1.4931641, -0.9946289, 1.6767578, -0.2454834, 1.1953125, 1.765625, 3.0605469, 0.023086548, -0.2932129, 2.140625, 1.5791016, 1.9638672, -0.7910156, -0.081970215, 0.44384766, -1.1054688, 2.1425781, 0.8623047, 0.2631836, 1.9365234, 2.3476562, -0.012924194, -2.6171875, 0.5161133, 0.8808594, 0.94189453, 0.0030117035, 2.3496094, -1.7539062, -1.1201172, 0.81103516, -1.8964844, 0.8227539, -0.6430664, -1.0986328, 2.0488281, 0.55908203, 0.19067383, -0.6430664, 0.69189453, -0.107788086, -1.3798828, -0.7138672, -0.10040283, 0.5336914, 0.9609375, -3.8632812, -1.4707031, -1.3740234, 1.6640625, -0.9399414, -1.2128906, 0.19763184, 2.8574219, 0.75146484, -2.5410156, 0.55029297, 2.4863281, -1.1660156, 1.1269531, 0.8769531, -2.6757812, 3.0273438, -1.3603516, 0.7270508, 0.90234375, 0.12634277, -0.91064453, -1.0634766, -1.0390625, 0.3095703, 1.6396484, 1.4824219, 0.15393066, -1.4042969, -0.20336914, -1.9199219, -0.52978516, -0.040161133, -1.2568359, -1.2226562, 1.0751953, 0.96777344, 1.3779297, -2.7128906, 2.7324219, 0.64404297, -0.55126953, 2.0410156, -0.8364258, -0.4152832, -1.9003906, -4.1523438, 0.8491211, -1.1337891, 0.49731445, 2.6894531, 0.49438477, -0.23486328, 2.8789062, -0.45141602, -1.9550781, -1.6630859, -3.1992188, -0.5961914, -1.9951172, -0.058898926, 1.7119141, 0.10736084, -1.3876953, -2.9023438, -0.63623047, -0.5776367, 2.7519531, 1.6328125, -2.1582031, 2.2578125, -2.4160156, 1.0322266, -0.80126953, -0.3154297, 1.9267578, -0.49731445, -0.22106934, -0.8847656, -0.0024795532, 1.0292969, -0.7915039, 1.7753906, 1.3173828, 1.1621094, -0.7661133, 0.3400879, 0.79345703, 2.3242188, -0.42138672, -2.4277344, -1.2421875, 1.125, -0.82177734, -0.41015625, -0.7939453, -0.26733398, -2.1289062, 0.7651367, -0.69873047, 2.3144531, 1.6611328, -1.1220703, -1.0585938, -1.1425781, -0.40454102, -1.4394531, -1.0976562, -0.9526367, -0.31347656, -0.049041748, -0.41088867, -1.5869141, 1.1513672, -0.051361084, -0.8129883, -2.7285156, 3.2128906, 0.9140625, 3.0039062, 3.4589844, -1.7226562, -0.053771973, 1.4042969, -1.828125, -0.49682617, -0.09454346, -0.8989258, 2.2109375, 0.86572266, 2.7128906, -1.0009766, -0.6557617, -0.3388672, -1.3496094, -0.92089844, -2.7148438, 2.1113281, -1.1630859, -1.1513672, 1.0664062, -0.8930664, 2.6777344, -2.2988281, -1.5830078, -2.1972656, -0.07733154, -1.1982422, 1.1425781, -0.030014038, 0.69873047, 1.3369141, -0.6743164, 0.90283203, -2.3046875, 0.12054443, -0.24353027, 1.5615234, -0.77441406, -1.3076172, -0.93359375, -1.6064453, -2.359375, -1.1787109, 0.83496094, 3.9589844, -0.37524414, 3.2871094, 0.84472656, -1.5986328, 1.875, 0.70947266, -1.8271484, -1.1113281, -0.37231445, -0.8671875, 1.5195312, -0.057769775, -3.9414062, -0.6640625, 1.5205078, -0.40112305, 0.96484375, -0.59814453, -0.8442383, 0.67529297, -2.3027344, 0.019607544, -0.2565918, -2.5175781, -0.6303711, -1.3486328, 0.23034668, -0.94189453, 0.3100586, 4.140625, 1.5664062, -0.8701172, 2.3242188, -0.4260254, -0.0993042, -1.2041016, -0.99609375, -2.6289062, -1.6621094, 1.5439453, 1.2929688, 2.2539062, -0.609375, 2.6191406, -1.5712891, 0.49121094, -3.1328125, 2.7890625, -1.8183594, 0.5444336, 1.9609375, -1.5039062, 0.6479492, -3.7089844, 1.4541016, 1.8613281, 1.5654297, 2.0546875, -0.6386719, -1.7636719, 0.21765137, -1.90625, -3.1464844, -0.8623047, -0.6713867, 1.1669922, -0.48657227, 1.2128906, -1.1806641, -0.24060059, 1.1123047, 0.4724121, -0.30395508, -1.4042969, -1.1630859, -0.5283203, -0.14538574, -0.41723633, -1.4794922, 2.453125, 1.5244141, 1.9335938, -1.0585938, -3.109375, -0.33325195, 1.484375, -3.4082031, -0.3996582, 2.1054688, 0.41870117, 1.1640625, 1.0585938, 1.65625, -1.3925781, 2.046875, -0.6582031, -0.86376953, 0.7939453, 0.019714355, 2.6074219, -2.3652344, -1.8066406, 1.3154297, -3.0996094, 2.3769531, 0.6801758, -0.64453125, 1.2685547, 1.8164062, -0.42504883, -0.13647461, 1.8789062, 1.7197266, 1.0097656, 1.2041016, -0.75, 0.6777344, -2.3339844, -1.6816406, -0.54296875, -1.5478516, -1.5253906, -2.5097656, 2.0761719, 1.7744141, -0.63671875, -0.22265625, 0.96435547, 0.7597656, -1.1777344, 1.6582031, -0.5546875, 2.6894531, 4.0742188, -0.9301758, -0.87158203, -1.7324219, 0.82714844, -0.19396973, 0.7241211, -2.0625, 0.50683594, -2.609375, -0.11828613, 0.49951172, 2.7734375, 1.1376953, -0.34155273, -0.94677734, 2.1542969, 3.3867188, -0.98339844, 0.47729492, 0.8359375, 2.4960938, -0.78759766, 3.3007812, 0.10345459, -1.7734375, 1.5673828, -1.7607422, 1.1054688, -1.3085938, -0.5053711, 1.5527344, -1.7373047, -0.5161133, -2.3808594, -1.0205078, -2.6816406, 3.4140625, -0.0064201355, -2.4589844, 0.47338867, 3.8847656, -1.125, 2.8808594, 2.4179688, -0.7783203, -0.2434082, 0.84033203, -1.9755859, 0.45898438, 1.2792969, -2.1738281, 0.82958984, -0.20373535, -2.0195312, -0.23339844, 2.96875, 0.99316406, 2.1542969, 2.6210938, 1.7539062, 0.5029297, 2.046875, 4.6328125, 0.34814453, 2.6132812, 1.9296875, -1.3457031, 0.09851074, 3.5078125, 2.4492188, -0.75, -1.3789062, 2.03125, 0.8046875, 0.0077781677, -1.390625, 1.8603516, 1.8730469, -4.2617188, 1.1435547, 0.8354492, 1.5986328, -2.6210938, -0.06878662, -0.053253174, -0.2548828, -1.1523438, -0.5234375, 2.6953125, 0.10290527, -0.3112793, 0.32861328, 2.0449219, -0.66308594, -1.9541016, 0.043792725, 0.89453125, -1.7001953, -1.2392578, 0.38134766, 1.9794922, 1.1005859, 0.28955078, 2.7421875, 2.0058594, 1.3320312, 2.5820312, 0.052215576, 1.9023438, 1.0693359, 2.4394531, -1.3515625, -1.3291016, -0.7597656, -1.9755859, -1.4794922, -2.0273438, -0.16821289, 0.7861328, 2.8632812, 1.0654297, -1.2285156, 2.2363281, 2.1464844, 2.265625, -0.31762695, 1.7607422, -1.2792969, -4.6484375, -2.859375, -2.1113281, 0.6699219, 2.8652344, 1.5996094, -0.86865234, 3.3867188, 1.0019531, 2.9316406, 2.2851562, 1.3574219, 0.32641602, 0.6538086, -1.4267578, 0.5913086, -2.421875, 0.46948242, 0.037353516, 1.6064453, 0.54785156, -0.5317383, 1.8574219, -1.4414062, 0.014945984, -0.3486328, 1.1630859, -0.51123047, -1.6933594, -1.3378906, 0.25390625, 0.74072266, -0.7866211, -0.84716797, 2.0175781, 1.6728516, 0.8774414, 1.796875, -1.0380859, -0.083984375, 2.4453125, -0.052642822, 0.17285156, -1.0146484, 0.5371094, 1.1367188, -0.34423828, -1.1972656, 0.47558594, 0.83984375, 0.2866211, -0.35058594, 0.011550903, 1.1660156, -0.01146698, -0.04284668, 0.10266113, -1.5683594, -1.4863281, 0.24389648, -0.5883789, -0.55908203, 1.4892578, -0.3244629, -1.0136719, -1.5009766, 0.12915039, -0.027908325, 0.05960083, -1.1923828, 0.8569336, 3.8691406, 2.2890625, 0.5522461, -1.8212891, -3.1816406, 0.33325195, 0.02255249, 3.6464844, 0.5644531, -1.2607422, 0.640625, -1.8085938, 1.1923828, -0.63671875, -0.88427734, -1.1513672, -0.44091797, 0.5493164, -2.3847656, 0.71191406, 1.9746094, 0.087890625, 0.16088867, 3.6328125, 1.1269531, 0.083984375, 0.7788086, 0.7055664, 0.9980469, -2.4140625, 1.2832031, -0.02810669, 1.109375, 0.640625, 0.40698242, 2.0136719, -0.3371582, -0.12646484, -2.0332031, -2.4804688]}, "B07KBYD4WZ": {"id": "B07KBYD4WZ", "original": "Brand: Homyl\nName: Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type\nDescription:

          Description:

          - Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
          - Allows you to quickly and easily check the amount of propane in the tank
          - Monitors fuel level without removing the tank.Easy to install
          - Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
          - Heavy duty 100% solid brass construction

          Specification:

          - Capacity: 80000-150000BTU/hour
          - Operating temperature: -40\u00b0C - + 55\u00b0C
          - Inlet: 25-250PSIG
          - Outlet: 2.5PSIG-20PSIG

          - Material: copper

          - Size: approx. 100*60mm/3.94*2.36inch

          Package Includes:

          1 Piece Propane Tank Adapter


          Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

          \nFeatures: Allows you to quickly and easily check the amount of propane in the tank\nPropane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\nMonitors fuel level without removing the tank.Easy to install\nHeavy duty 100% solid brass construction\n", "embedding": [0.07110596, 0.82128906, 2.3945312, 2.8964844, -1.3183594, -1.5273438, 1.4003906, -1.1689453, 0.5390625, 2.0292969, 1.3164062, -0.4699707, 0.87060547, -3.5957031, 3.2402344, -0.9223633, 2.5664062, -0.73779297, 0.8935547, 1.9853516, 2.3730469, 0.7675781, 1.9140625, 0.09954834, 0.8100586, -0.7426758, 3.0683594, -1.1162109, -1.2626953, -0.34448242, 0.28881836, -0.32641602, -1.2646484, 1.2197266, -1.7783203, -1.8935547, -0.115356445, 0.1907959, -3.1542969, 0.14794922, -2.3066406, 2.7714844, 1.7236328, 1.1328125, -2.5039062, -2.375, 1.6923828, 0.7470703, 1.4375, -0.6591797, -0.28710938, 1.9951172, -1.1230469, 1.0712891, -1.3056641, 1.7373047, 0.76904297, -1.7666016, 1.1630859, 1.140625, 0.9082031, -0.91503906, -1.8447266, 2.1894531, 0.41455078, 1.4990234, -0.07684326, -1.3369141, -0.15612793, 1.9111328, 1.0966797, 1.2509766, 1.0322266, -1.9785156, -2.96875, 0.9042969, -3.2988281, -0.19213867, 1.4453125, -1.4335938, -1.3925781, 1.5878906, -0.13879395, -2.0683594, -0.7294922, 0.3671875, -0.8276367, 1.4785156, 0.7006836, 1.8935547, -1.8330078, 1.0751953, -2.6601562, -3.5664062, -0.36083984, 0.36083984, -0.13891602, 2.0175781, 4.3046875, 1.0478516, -1.3574219, 0.06439209, 0.12683105, 0.6591797, -2.0449219, -1.3339844, -0.82714844, 0.5751953, -2.8378906, 1.4082031, 0.85302734, 0.39648438, 2.6992188, -1.6298828, 0.063964844, -2.96875, 0.6254883, -1.8935547, 1.8417969, 1.2333984, 4.0273438, -0.19763184, 1.4453125, -0.2553711, 1.5585938, 0.6772461, -1.1679688, -0.43847656, 2.3964844, -0.30322266, 1.3242188, 0.18383789, 2.1601562, -1.1132812, 1.0761719, -1.4794922, -1.4882812, -1.2382812, -1.0224609, -1.6708984, -2.9160156, 1.1640625, 1.7490234, 1.2783203, -3.7519531, 0.14697266, -3.03125, 1.3183594, 1.7060547, -1.0947266, 0.09698486, -3.859375, 0.44458008, -1.6132812, 1.9453125, 2.0722656, 0.8823242, -1.1513672, 2.0488281, 1.8691406, 1.1064453, -0.79052734, -2.2832031, 1.8037109, -0.67578125, -1.8808594, 0.4814453, -1.1025391, -0.49780273, 1.2880859, -0.26513672, -1.671875, 1.1855469, 1.1738281, 0.2578125, -1.6640625, 0.81396484, 1.8085938, 1.0009766, 0.43066406, -3.5546875, -0.85791016, -0.07324219, -0.49731445, 1.9892578, 0.026809692, -2.734375, -2.9277344, 0.39086914, -1.8652344, -1.9638672, 1.1064453, 1.2597656, -0.37890625, 0.40942383, -2.3613281, -2.6738281, -1.6074219, -0.9926758, 1.7958984, -0.019165039, -0.7260742, 1.5478516, -0.48632812, -1.6308594, -3.0390625, 1.5253906, -2.3066406, -1.1230469, 2.65625, -0.39819336, -0.67871094, 1.3144531, -0.80908203, -0.86279297, -0.7260742, 2.8730469, 1.9521484, 0.9848633, 0.43310547, -0.4946289, 0.75, 1.3828125, 0.9511719, 3.1816406, -0.7504883, -0.9199219, 1.2207031, -1.8486328, -0.60839844, 2.8164062, 1.7734375, 0.24145508, 0.45751953, -0.40966797, 1.7939453, -0.7114258, -0.84375, 1.1152344, 0.022064209, 0.64404297, -2.5273438, -2.5957031, -3, -1.1376953, 1.5146484, -1.4375, 0.15527344, 2.8574219, -1.4091797, 0.2685547, -0.021987915, -1.3027344, -2.6582031, -2.9960938, -0.0018491745, 0.28344727, 1.0117188, 0.9169922, -2.21875, 2.8847656, -0.6928711, 1.3564453, 0.036132812, 1.578125, 1.0634766, 1.5986328, -1.8056641, -1.5009766, 0.85302734, 0.09820557, 2.046875, 2.8554688, -0.82714844, 0.17541504, 2.1269531, -2.0761719, 2.3164062, 0.6489258, -0.10998535, 1.9335938, -1.4394531, 1.5400391, -4.2265625, 0.89160156, 1.9375, 1.7148438, -1.0009766, -2.25, -0.41479492, 4.1640625, -1.6435547, -2.5117188, 1.8085938, 3.0273438, 0.86279297, 1.6064453, -1.1308594, -2.1113281, -0.7504883, -0.84716797, 0.58935547, -1.8867188, 0.71875, 3.5390625, 0.6621094, -1.3457031, 0.44970703, 1.6943359, 2.0390625, -0.43823242, 0.09289551, -2.7519531, 1.7666016, -0.3774414, -3.0292969, 1.9814453, -2.5390625, -1.9179688, 1.1035156, -0.25561523, -0.44848633, 0.4506836, -2.4980469, 0.45092773, 1.8251953, -2.171875, 1.2734375, 0.56396484, 1.1650391, 2.9199219, -1.7373047, 1.7109375, -1.8105469, -0.3034668, 1.3876953, -1.1855469, -3.2363281, 0.096069336, -1.3916016, -0.9736328, -1.1298828, 0.83691406, 3.6875, 0.73876953, -0.18029785, -1.0292969, 0.2697754, -0.5385742, -1.5791016, -1.2324219, 4.015625, -1.6152344, -3.0703125, 0.40942383, 0.0440979, 1.078125, 2.234375, -1.0283203, -0.69140625, 1.125, 0.7519531, -1.1259766, 0.15783691, -0.02859497, -0.5332031, 1.7783203, -3.6367188, -0.5493164, -1.6865234, 2.4824219, -1.4619141, -0.61279297, -1.9814453, 0.06640625, 0.7939453, -1.9111328, 2.1972656, 0.52734375, 1.484375, -0.4255371, -0.011451721, 0.9980469, -2.2675781, -2.4765625, -0.68652344, -0.7182617, -0.28198242, 1.1669922, -3.4882812, -0.88671875, -0.31298828, 0.4128418, -1.0625, -1.6015625, -1.4326172, 0.30371094, 2.9960938, 0.0769043, -0.22167969, 2.1035156, -0.5751953, -0.17358398, 0.5625, 0.8911133, -1.0556641, -0.28125, -1.6787109, -0.26904297, 0.9477539, -2.1171875, 0.61816406, 2.1582031, 0.6279297, -0.53027344, -4.046875, 0.1418457, 1.9384766, -0.2758789, 0.43896484, -0.2310791, 0.10961914, -1.2958984, -0.76464844, 3.4082031, 1.6962891, 3.0039062, 0.8564453, 1.7460938, 1.1640625, -0.57714844, -1.2060547, -0.79589844, -0.9995117, 3.1484375, -2.5253906, -1.0673828, 0.31982422, 1.2539062, -2.9316406, 0.5473633, 0.29467773, 0.43701172, 4.28125, 0.37890625, 0.2607422, 0.31713867, 1.7333984, 1.7353516, 0.35717773, 0.27124023, 0.5986328, 0.2364502, 0.38793945, -0.33984375, -0.29907227, 0.73291016, 0.9707031, 0.7216797, 0.546875, -0.13647461, -1.5097656, 0.3569336, -0.20996094, 0.57421875, 1.1865234, 0.92529297, -0.13745117, 1.1972656, -0.1538086, 0.86816406, 1.0527344, -2.6660156, -0.9863281, 1.0263672, 1.6396484, -1.5859375, 1.2382812, -0.34765625, -1.9990234, 1.1337891, -0.8691406, 3.3730469, 0.9794922, 0.86621094, 0.08270264, 0.39331055, -0.5917969, 1.5019531, -1.7177734, 1.8652344, -0.7192383, -0.5, -2.2363281, -1.6113281, -2.3300781, -2.15625, -0.9926758, 3.7851562, 0.05014038, -2.6367188, -0.6489258, -1.8056641, 1.8447266, 0.70703125, -1.0214844, -0.6113281, -2.0019531, -0.9716797, 0.9848633, -0.21911621, 2.6796875, 1.125, -1.2441406, -0.5986328, -1.0839844, 1.3525391, 0.43969727, 0.1694336, -1.0185547, -1.8310547, -1.3339844, 2.6269531, -0.16174316, 2.7539062, 1.0214844, -1.1572266, 1.40625, -2.078125, -1.3398438, -1.7509766, -5.8632812, 0.7158203, -2.9960938, 1.4287109, 2.109375, 1.3105469, -1.0888672, 0.20166016, 2.0761719, -2.625, -0.44848633, -1.484375, 1.2871094, -2.8144531, -0.27661133, 3.125, 2.4648438, -0.55322266, -2.484375, -0.55810547, -2.9296875, -1.1445312, -1.3955078, -0.10998535, 0.26757812, -0.7470703, 0.61376953, -0.42407227, -0.91552734, 1.4111328, 0.7685547, -0.9819336, -1.3720703, 2.6191406, 0.55126953, 1.0996094, -0.25756836, 2.4550781, 3.1894531, -0.9091797, -1.0771484, 0.60595703, 3.65625, -0.1541748, -2.3125, -1.5527344, -1.0947266, 1.3691406, -0.81396484, -1.1259766, -0.36621094, -1.0175781, 2.3164062, 0.24353027, 3.0898438, 1.8388672, -0.23791504, -1.7539062, 1.6669922, 1.5673828, -3.2402344, -1.2841797, -0.04095459, -0.9589844, 0.49267578, -0.82714844, -2.6191406, -0.29125977, -1.4726562, 0.057037354, -3.15625, 1.0566406, -0.49902344, 1.5517578, -1.3603516, -2.4960938, 0.31689453, -0.32958984, -0.7236328, 0.48583984, -0.3544922, -1.0742188, -2.6523438, 1.8486328, 1.1308594, 0.921875, -0.06298828, 0.13696289, 0.65966797, -0.26513672, 0.12359619, 1.6962891, -1.8251953, -1.171875, 0.25024414, -1.5927734, 3.8457031, -1.8300781, 1.6347656, 0.049743652, -1.1982422, -3.0800781, 1.5214844, 1.4335938, 1.5400391, -0.040649414, 0.32299805, 1.8007812, 3.0117188, 1.1376953, 0.42114258, 0.14135742, -2.8730469, 0.37670898, 0.052001953, 1.9697266, -1.2314453, 1.5400391, 1.6708984, 1.6806641, 1.6796875, 0.5019531, 1.5683594, -1.0185547, 1.1914062, 0.40283203, -0.09899902, -1.7050781, 0.23718262, -0.99902344, 3.6601562, -1.5634766, -2.5078125, -1.4785156, 2.2089844, 1.1074219, 1.109375, 2.2597656, 0.6777344, -1.1328125, -3.1054688, -1.6308594, -0.75097656, -0.61572266, 0.94628906, -1.3466797, 1.2744141, 0.030700684, 2.0175781, 2.1855469, 1.0517578, -0.11859131, -1.7333984, -0.4111328, -2.9453125, -0.85302734, -1.9160156, -1.9111328, -0.81884766, -0.071899414, 2.5253906, 0.07421875, 0.20568848, 1.9013672, -1.3603516, -1.7109375, -0.22143555, 0.1928711, -1.0556641, -0.71875, 3.1582031, 0.9604492, -2.1015625, -0.4501953, -0.75341797, -0.1262207, -0.14697266, 0.9921875, 0.3503418, -1.3623047, -1.3300781, -3.0644531, -3.9296875, -0.14978027, 1.7050781, 0.7470703, 2.0390625, -2.1621094, -0.95166016, 0.5473633, -1.0527344, 0.796875, -2.1113281, 1.6513672, -1.6357422, 0.68652344, 1.7597656, 1.2490234, -1.4394531, 0.86376953, -0.6435547, 0.29296875, 0.32958984, -2.578125, -1.6650391, -0.8540039, -1.7783203, -1.0263672, -0.4716797, -0.44213867, -0.4909668, 0.43139648, 2.6679688, -2.5800781, 2.9921875, -1.7314453, 0.5683594, 1.3398438, -1.1113281, 0.7919922, 1.03125, 0.64697266, 1.1972656, 2.9707031, 3.7910156, -1.0869141, -0.74316406, 0.5288086, -1.0673828, 0.12536621, 0.12286377, 0.34838867, -0.010467529, 1.921875, 1.7421875, -1.4658203, -1.9394531, -1.9111328, -1.3867188, 0.39868164, -1.0908203, -0.35205078, 0.4880371, 2.1445312, 0.6035156, 0.51171875, -0.45141602, -0.7260742, -1.1230469, -0.84716797, 1.3554688, -1.9160156, 1.2558594, 1.0341797, -2.2050781, -3.5839844, 0.25708008, 2.9414062, 1.6289062, -0.8066406, 1.1972656, 0.30004883, 0.3161621, 0.16113281, 0.22705078, 2.8144531, -1.2675781, 1.8652344, -0.27612305, -0.62060547, 2.6679688, -2.0703125, -0.2705078, 1.1455078, -0.80371094, 0.35205078, 0.48413086, 1.7890625, -2.7714844, -1.5087891, -1.8164062, -0.21655273, -2.4707031, 1.4335938, -0.122680664, -2.6601562, 0.61035156, 0.07348633, -3.4335938, -0.9716797, 2.2382812, -1.9541016, 0.6821289, 1.7578125, 1.6425781, -1.125, -0.54345703, 1.9316406, -0.44677734, 0.87646484, -1.3808594, -1.7480469, 0.8642578, 2.0292969, -1.9892578, 0.6201172, 2.2597656, 2.5742188, 0.66503906, -0.5444336, 0.9121094, 2.9726562, -0.12866211, 4.5117188, 3.875, 0.2133789, 2.7734375, 1.7177734, 1.8125, 2.1464844, -1.6601562, 1.8779297, 0.10882568, -0.12976074, 1.6171875, -1.421875, 0.7651367, -0.51904297, -0.25683594, -0.27172852, 0.79589844, 2.3984375, -2.9589844, -0.01071167, -1.1142578, -0.3708496, -3.34375, -0.054595947, -1.6220703, 0.13793945, -0.30639648, -0.19995117, 0.14538574, 2.6289062, -1.0458984, 1.9013672, 1.1835938, 3.0410156, -0.48828125, 1.2304688, -2.265625, -1.5683594, 0.8154297, 0.9326172, 1.3525391, 0.5625, 2.3320312, 0.8461914, -0.9941406, 1.9423828, 0.7763672, -0.9589844, 1.2890625, -0.81884766, 1.1845703, 4.6367188, -0.8203125, 2.3984375, -0.4050293, -1.9179688, -3.7460938, 0.7182617, 0.3154297, -1.0292969, 0.3190918, -5.4453125, 0.7451172, -1.7382812, 1.53125, -2.9082031, -0.2919922, 1.1298828, -3.5644531, 0.86035156, 0.47583008, -2.7949219, 1.7646484, 0.8701172, -2.9882812, -0.87841797, 1.1123047, 0.032165527, -0.0028152466, 0.45532227, 1.0361328, 0.8354492, -1.4208984, 4.0664062, -1.8417969, -0.030670166, -0.8144531, 2.0527344, 1.8027344, 0.24182129, -0.765625, -0.8701172, 1.3974609, 0.61816406, -0.24951172, 0.38354492, -1.46875, -0.28979492, -0.6381836, -0.20141602, -0.7529297, 0.5078125, 2.2167969, 1.21875, -2.6503906, -0.2631836, 0.31323242, -1.0751953, 1.6835938, 0.9243164, -1.9902344, -0.9423828, -0.7861328, 1.2177734, -3.0234375, 1.2666016, -0.3347168, 0.65722656, -0.113342285, -1.3574219, -0.07232666, -0.32739258, -0.7167969, -1.5712891, 0.41601562, -0.32739258, -1.1318359, -0.6279297, -2.1367188, 0.49389648, 1.9326172, 0.64208984, 0.39135742, -1.2724609, -2.1367188, 0.79052734, -1.3964844, -0.6669922, 0.32055664, 2.4921875, 0.6513672, 1.3330078, -0.62890625, -1.2988281, -0.6982422, -2.8828125, 0.9741211, 0.5996094, -2.0429688, 0.99560547, 1.8554688, 2.4453125, -0.3713379, -3.1445312, 0.12017822, 0.35717773, 1.6181641, -2.6015625, -0.11627197, -1.3818359, 1.1835938, 1.2041016, 3.6972656, 2.0957031, 0.02708435, -1.0917969, 2.453125, 0.051513672, -1.8935547, -0.6254883, 1.2158203, -1.1787109, 0.7998047, 2.1992188, 3.6894531, -0.1541748, -1.0087891, -2.9394531, 1.2568359]}, "B0872C7BXM": {"id": "B0872C7BXM", "original": "Brand: Senvate\nName: Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches\nDescription: Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

          Features:
          Material: Heavy Duty 600D Oxford fabric and PVC cover.
          Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
          Durable, scratch resistant polyester with UV protection all year round.
          This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
          Keeps dust and dirt from the tank's exterior, cover up ugly propane tank eye sore.
          Easy to Clean: Low Circle Machine Wash & Handwash.

          100% Satisfaction Guaranteed:
          30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
          \nFeatures: PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank.\nPROPANE TANK COVER DIMENSIONS: 7.5\" Diameter (top) x 12.6\" Diameter (bottom) x 23.6\" High, fits for most cylinder propane tank up to 20lb.\nFEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank.\nEASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage.\n100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.\n", "embedding": [1.4179688, 3.1699219, 3.9628906, -0.39672852, 0.19995117, 0.40576172, -0.18481445, -0.48486328, 3.2109375, 1.7373047, 0.5053711, 0.53564453, 0.9628906, -3.2851562, 1.5322266, 0.29907227, -0.69677734, 2.3476562, 3.2890625, 0.94140625, 2.375, 1.4228516, -0.2319336, -0.68066406, -0.011764526, -0.25732422, 3.7109375, -3.1054688, -2.1738281, 0.7963867, 1.0351562, -0.057739258, 0.2524414, 2.9394531, 0.49560547, -2.4921875, -0.6899414, -1.0410156, -2.8398438, -2.0449219, -3.5039062, -0.85302734, 3.109375, 0.54833984, -1.0800781, -0.41357422, -0.78466797, -2.0800781, 0.29736328, -1.3007812, -0.066589355, 0.96484375, 2.4589844, 0.83984375, -0.6430664, 0.4033203, 1.3095703, -0.40527344, 0.57714844, 2.2070312, -0.5175781, -1.5341797, -1.0878906, 1.7324219, 0.24707031, 0.33081055, -0.7680664, -0.7294922, 0.88183594, 0.86865234, 1.8300781, 0.028320312, 1.5585938, -0.91845703, 0.94384766, -0.88623047, -2.1640625, 0.92529297, 1.8173828, -0.9375, 0.89208984, 3.4375, -0.69433594, -1.9716797, -1.9960938, -0.47436523, -0.6635742, -0.4038086, -0.38232422, -1.2763672, -2.6054688, 2, -1.9140625, -4.53125, -0.87841797, -0.42749023, 2.1308594, 1.9580078, 2.6210938, 0.4736328, 0.9404297, 0.71533203, -1.6337891, 0.6899414, -2.09375, -1.484375, 0.5541992, -1.8925781, -0.62109375, 0.5546875, 0.7050781, -0.8222656, 0.6274414, -1.6054688, 0.45458984, -0.93408203, -0.7348633, -0.8984375, 2.4589844, 0.7319336, 3.21875, -0.44677734, 0.6772461, -0.6201172, 1.0429688, 0.85253906, -1.2675781, 0.7915039, 3.765625, -1.2929688, 2.6796875, 0.0993042, -0.022491455, -1.3828125, -0.13891602, -0.5839844, -1.1552734, -1.6953125, -2.9707031, -0.15673828, -2.1933594, -1.4775391, 0.578125, -0.13720703, -3.0234375, -0.04864502, -1.3105469, 1.9667969, -0.15625, -2.2421875, 1.3730469, -1.9160156, -0.48706055, -0.5932617, 1.5302734, 0.6899414, 0.4099121, -3.8828125, 1.7519531, 2.6738281, 3.828125, -1.0292969, 0.11254883, 0.81591797, 0.5229492, -3.9707031, 1.3691406, 0.15185547, -1.0625, 0.9863281, -0.22229004, -1.4404297, 0.06774902, 1.3994141, 0.04748535, -1.5693359, 2.2890625, 1.6611328, 0.4519043, -0.22155762, -4.2304688, -1.3486328, -1.3320312, -0.9248047, -0.17712402, 0.9057617, -1.0917969, -1.4355469, 0.67333984, 0.2668457, -2.5273438, 2.0410156, -1.5048828, -0.19702148, -2.0546875, -3.4765625, -2.3496094, -1.9902344, -0.34985352, 1.7939453, -1.3173828, -0.9458008, -1.6416016, 1.3095703, -2.5585938, -1.3076172, 0.33374023, 0.640625, 0.46923828, 1.8027344, 0.52734375, -0.9941406, 2.2792969, -0.11810303, -1.1210938, 0.047302246, 2.4082031, 0.63623047, 0.63427734, 0.609375, -0.6166992, 0.40844727, 0.72314453, 0.99658203, 1.9550781, 2.7324219, 1.0087891, 1.1484375, -2.2578125, -1.3496094, 0.49145508, 1.3476562, -2.0917969, 0.3857422, -0.8676758, 2.1289062, -0.10058594, -1.6513672, 0.25976562, 0.41357422, 0.24841309, -0.69677734, -0.98535156, 0.054992676, 0.29052734, 2.8652344, 0.19274902, 1.1660156, 1.7939453, 0.0028419495, 0.7973633, -1.4941406, -0.13696289, -1.2958984, -0.4777832, 1.8466797, 1.6464844, 1.4873047, 0.40576172, -2.3652344, -0.16699219, 1.0488281, -0.58984375, 0.061340332, -0.5415039, 0.77246094, 0.11480713, -0.47094727, -2.2636719, -0.117004395, 0.8286133, 0.81103516, -0.0690918, -0.97021484, 1.4482422, -0.16821289, -1.0117188, 2.0800781, 0.07165527, 1.9501953, 1.4257812, -1.0371094, 2.1542969, -4.0117188, 1.6748047, 0.82421875, 1.9306641, 0.49267578, -2.625, -0.11395264, 2.3671875, -0.28857422, -0.15783691, 2.1640625, 3.3945312, -0.4338379, 3.453125, -0.0031051636, -0.57128906, -0.070251465, -1.1650391, -1.1220703, -0.93359375, 0.27612305, 0.76464844, -1.1210938, 0.12158203, -0.3244629, -0.2265625, -0.38671875, -0.2590332, -1.5888672, -0.16809082, 0.33154297, -2.1914062, -0.5332031, 4.3203125, -2.5234375, 0.07086182, 2.3457031, -0.12042236, 2.0019531, -1.3125, -1.28125, -0.0390625, 0.89160156, -1.984375, 0.5058594, -0.087524414, 0.9692383, 0.83496094, -2.09375, 2.3417969, -1.0410156, 0.7451172, -0.19030762, -3.0527344, -0.66845703, -0.36816406, -2.1640625, 1.0488281, -2.2578125, -2.0019531, 1.4404297, 2.1367188, -0.12432861, -0.7128906, 1.5615234, -0.19226074, -1.3955078, 0.73291016, 2.4726562, -0.9902344, -3.7441406, -0.040527344, -0.6010742, -2.3574219, 1.1210938, -0.14257812, 0.035827637, -0.2614746, 1.0898438, 2.2597656, -0.4177246, -1.8447266, 0.049102783, -0.30981445, -4.84375, 1.0927734, -2.3671875, 0.6772461, -2.1972656, 0.017791748, -2.0664062, -2.1132812, 1.6083984, -0.95410156, 4.3554688, 1.6992188, 1.0615234, -2.25, -2.0605469, -0.44482422, -1.9384766, -2.2519531, 0.8154297, 0.5566406, -1.4238281, -0.30029297, -4.4921875, -0.5371094, -1.7167969, -1.0986328, 0.36621094, -1.5351562, -1.7646484, -1.0957031, -0.9121094, -1.2851562, -0.4711914, 1.7460938, 0.01739502, -2.3203125, 0.024536133, -0.48608398, -1.46875, 0.53027344, -1.4423828, 1.3056641, -1.7578125, 0.69091797, 0.45654297, -1.3857422, 2.7714844, -0.83203125, -3.2089844, -0.28076172, 3.53125, 2.2988281, 3.2949219, -0.15234375, -1.3388672, -0.8417969, -0.5131836, 2.3339844, 3.0058594, 0.96240234, 2.4902344, -0.89746094, 1.2089844, -0.15783691, 0.35595703, -0.0362854, 1.6123047, 2.7851562, 0.16992188, 1.2851562, 1.4033203, 2.28125, -2.6074219, -0.17297363, 0.82666016, -0.85546875, 3.3203125, 0.5566406, -1.6865234, 0.3959961, -0.061035156, 2.4941406, -0.46533203, 2.3554688, 0.5239258, -0.19384766, 1.8662109, -0.6220703, 0.1328125, 2.9335938, -0.27661133, -1.8007812, 1.7128906, 0.24035645, -1.6630859, -0.26782227, 0.7001953, -0.9399414, 0.2578125, 2.3183594, -1.0380859, 1.7167969, 0.57177734, -0.6123047, 0.53222656, -1.5878906, 1.1289062, 0.6621094, 1.2041016, -0.6020508, -1.5927734, -1.5986328, 0.25317383, -1.2167969, 2.5097656, 0.1394043, 0.018218994, 1.3115234, -3.7265625, -0.29614258, -1.7939453, 2.0449219, -0.19274902, -0.72558594, -0.29077148, 0.7216797, -3.25, -3.7871094, 0.05529785, -0.81640625, -1.125, 3.3769531, 2.1191406, -2.2753906, 0.028549194, -1.7421875, 1.7880859, 3.0898438, -0.4050293, -0.18322754, -0.84765625, -0.44384766, -1.4746094, -0.2775879, 1.5410156, 1.5380859, -2.4726562, -1.0263672, -0.0635376, 1.7412109, 1.3105469, 1.0742188, 0.40283203, 0.27661133, -0.1303711, 2.5507812, 1.5224609, 2.5273438, 0.6020508, 0.7675781, 0.72314453, -1.4882812, 1.1962891, 0.6176758, -3.3574219, -0.24414062, -0.09692383, -0.6381836, 2.7460938, -0.4868164, 0.37109375, -0.59521484, 0.46069336, -3.328125, -1.7675781, -1.9472656, 2.1054688, -1.8613281, -1.1865234, 1.1435547, 0.29492188, -2.8046875, -1.4121094, 0.09051514, -2.484375, -1.0068359, -0.4416504, 0.21813965, 0.8544922, -1.4257812, 0.16101074, -1.5029297, 0.09753418, 0.9404297, -0.08270264, -1.3652344, -2.3085938, 3.203125, 0.28515625, -0.09832764, 0.7114258, 1.7792969, 0.8095703, -1.4326172, 0.18933105, -1.6083984, 2.015625, -1.1015625, -2.5488281, -0.48876953, -1.15625, 0.94628906, -0.83447266, -2.0898438, 0.25756836, 0.068115234, 0.45458984, 1.3447266, 1.7363281, 0.91845703, -0.32373047, -2.2910156, 2.15625, -0.2631836, -1.1318359, -0.0597229, -1.3505859, -0.9453125, -0.4177246, -2.1542969, -3.0117188, 0.20373535, 1.2275391, 0.91064453, -2.7773438, 1.4707031, 1.8554688, 2.0371094, 0.4477539, -1.2070312, 0.48657227, 0.9453125, 2.8925781, 1.7832031, -0.40307617, 0.8388672, 0.6279297, 0.50341797, 1.3994141, -2.8574219, -0.14758301, -0.89160156, -0.69189453, -0.3635254, 0.14550781, 1.8251953, -1.2148438, -0.80859375, -1.3574219, -2.2246094, 3.7324219, -2.78125, 0.8520508, 0.44189453, -1.1738281, -0.91259766, 3.3535156, 1.7558594, 1.8964844, 2.5957031, -0.91503906, -1.1679688, 0.43164062, 1.2236328, 0.10235596, 1.1347656, -2.3691406, -0.4272461, 0.07543945, 1.4775391, -0.73291016, 0.37353516, 1.8457031, 1.5791016, -0.12463379, 1.3769531, 2.1582031, -0.6352539, 2.078125, 1.2070312, -0.39819336, -0.008712769, -0.030181885, 1.0361328, 2.3164062, -1.6455078, -1.7978516, 1.1201172, 0.5605469, -1.3828125, 1.453125, 0.19665527, -2.0644531, 0.0047454834, -2.7578125, -2.546875, 0.33740234, 0.23632812, -1.5185547, -0.3918457, 1.5009766, 0.30541992, 1.1669922, 2.3300781, -0.34399414, -1.4560547, 1.1621094, 2.5761719, 0.43432617, -3.5644531, -0.20983887, -3.6367188, 0.7050781, -0.80810547, 0.024551392, -0.4885254, 0.050689697, 1.7373047, -2.7578125, -1.3818359, -0.3642578, 0.47216797, -1.2636719, -0.34521484, 3.3125, -0.11798096, 0.2529297, -0.08911133, -1.1835938, -0.69873047, 1.9902344, 1.7050781, 1.4638672, 0.06518555, -1.2392578, -4.0351562, -4.7304688, -0.9765625, 0.94970703, -1.3886719, 0.8642578, -0.18579102, -0.94628906, 0.072631836, -1.0732422, 0.9736328, -2.4589844, 0.39697266, -0.3347168, -2.0996094, -1.1523438, -0.18896484, -0.02067566, 1.0380859, -1.2919922, -0.5683594, -1.6552734, -2.9550781, -2.4160156, -0.5385742, -1.0175781, 0.63720703, 0.6357422, -1.1269531, 1.7109375, 0.41186523, 1.4824219, 0.1628418, 1.5068359, -0.7705078, -0.6669922, 2.3671875, -1.2802734, -0.60253906, 2.1738281, -0.7895508, 3.3652344, 2.1816406, 1.5107422, -2.7402344, 0.97314453, 1.4248047, 0.72558594, 0.089538574, 1.1835938, 1.2412109, -0.25732422, 1.7832031, 2.0898438, -0.3996582, -1.9667969, -0.61376953, -1.1757812, -0.84814453, -1.9423828, -1.9804688, -0.70947266, 0.52246094, 0.6201172, 1.3789062, 0.99560547, 1.0126953, 0.67041016, -1.3525391, 1.7714844, -2.8242188, 1.9375, 1.6376953, -2.2675781, -2.234375, -2.8632812, 3.2539062, 1.0410156, -0.51464844, 0.4880371, 0.97509766, -0.5888672, 1.5957031, -0.41723633, 1.6357422, 0.050842285, 2.25, -2.0742188, 0.96435547, 2.625, -0.23498535, 1.1035156, -0.24926758, 0.34375, 0.25439453, 0.77685547, 1.7548828, -1.9521484, -0.24035645, -0.40014648, 0.5053711, -0.62841797, -0.48486328, 0.36254883, -2.6757812, -0.56103516, -1.2509766, -0.9248047, -4.7304688, 2.3671875, 0.20092773, -0.03753662, -0.23413086, 0.27661133, -0.8857422, -0.26245117, 0.9682617, -0.015716553, -1.671875, -1.4453125, -1.328125, 1.0859375, 2.1894531, -2.4140625, 0.69970703, -0.03656006, 2.1621094, -0.28710938, 0.90478516, -0.57714844, 0.3034668, 1.4521484, 2.6347656, 3.6386719, -0.14562988, 0.6303711, 0.80566406, 1.5908203, 2.5625, -2.3007812, -0.3466797, 1.0507812, 2.125, 2.6953125, -0.43530273, -0.22680664, -0.003145218, -0.07873535, 0.38623047, 0.89746094, 2.2011719, -3.5097656, 0.1340332, -0.12347412, -0.38085938, 2.4179688, 0.9267578, -1.4423828, -2.7128906, 0.10229492, -0.42529297, 2.6894531, -1.3632812, 1.3583984, 1.2265625, -1.6103516, 1.7373047, 0.006881714, 1.0273438, -2.4863281, -2.5136719, -0.57714844, 3.1152344, 0.7260742, 1.4130859, -2.234375, 0.24987793, -1.2929688, 1.7558594, 1.7871094, -0.31274414, 2.3496094, -1.3339844, 2.6777344, 3.4902344, -1.1025391, -0.55126953, 0.4375, 0.44799805, -3.9140625, 0.3552246, 0.44018555, 1.3232422, 0.14196777, -5.2851562, -1.125, -1.5429688, 0.15856934, -3.3300781, -0.81152344, -0.39941406, -3.3574219, 0.19946289, 0.8154297, -2.3457031, 2.9628906, 1.0732422, -0.0635376, 2.703125, 0.5571289, 0.30566406, 0.09197998, 1.0585938, 0.48242188, 0.49731445, -1.2880859, 1.5800781, 1.4863281, -1.7460938, -1.2841797, 2.3613281, 0.87939453, 1.1845703, 0.6123047, -0.47338867, 3.0429688, 2.2226562, -1.1894531, 1.6835938, -0.54052734, 1.2890625, 0.057678223, 0.23425293, 0.5566406, 0.45581055, -0.59472656, 1.2392578, -5.9023438, -0.1529541, 0.09991455, 0.14440918, 1.4296875, 0.13806152, -0.6591797, -1.4306641, -0.03668213, 1.7080078, -2.7148438, 0.32421875, -2.171875, 1.6308594, -0.67871094, -0.92089844, -1.1259766, 1.1386719, -1.90625, 0.48583984, 1.6591797, -0.3725586, -0.42041016, 0.2980957, -0.4716797, 1.1923828, 1.4960938, 1.1367188, -0.78515625, 0.16589355, -1.3105469, 1.3964844, -0.49609375, -0.45043945, 1.5605469, 2.0664062, 1.7480469, 0.78271484, -0.4958496, -1.9355469, -1.3144531, -2.6972656, 1.6289062, -0.38867188, 0.57128906, 0.85058594, 1.4296875, 2.3691406, -1.1220703, -0.20959473, -0.104003906, 1.5546875, 1.8583984, -0.74560547, 0.0446167, 1.3623047, 0.89697266, 1.1982422, 3.8164062, 3.3847656, -2.3828125, 0.765625, 2.4199219, -3.0292969, -1.7783203, -0.5473633, -1.2333984, -0.48339844, 0.8432617, 2.8554688, 3.5078125, 0.3334961, 0.05130005, -1.4677734, -0.06359863]}, "B07S8HQC5K": {"id": "B07S8HQC5K", "original": "Brand: eBasics\nName: Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading\nDescription: What is the purpose of these clips? How would one use them?
          Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
          How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

          Features:
          1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
          2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
          3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
          4. Smoker / Grill / Oven Safe and dish washer safe.

          Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
          Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
          compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
          compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
          compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
          Intelitopia Meat Thermometer
          compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
          compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
          \nFeatures: Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes\nUniversal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe\nEssential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer\nStainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading.\nSmoker / Grill / Oven Safe and dish washer safe. 2 Pack\n", "embedding": [-3.1738281, 1.8466797, 5.1132812, -0.2836914, -0.08258057, 0.03930664, -1.1914062, -0.49560547, 2.5683594, 1.1191406, 0.40527344, -0.15197754, -0.15673828, -2.0410156, 1.6835938, 1.8017578, 1.3515625, -0.87402344, 0.55859375, 2.5566406, 3.1425781, 2.5039062, 1.1875, -0.2927246, 2.25, 0.17980957, 3.9824219, -1.5878906, 1.5380859, -1.5830078, 2.5351562, 2.0234375, 1.2597656, 0.5859375, -2.0625, -0.6748047, -1.5400391, 0.9682617, 1.7949219, -0.29101562, 0.20507812, 0.5703125, 0.88720703, 0.72998047, -2.1035156, -1.6357422, -0.19604492, 3.0449219, -2.8574219, -0.9379883, 2.4199219, 3.0507812, -0.65185547, -0.20251465, -0.10241699, 3.1074219, -0.6489258, -3.8222656, 0.6386719, 0.70996094, 0.33203125, -0.87939453, -1.2929688, 1.5742188, 1.9101562, 1.2753906, 0.9458008, -2.8085938, -0.62402344, -0.4831543, -0.4975586, 0.46557617, -0.4086914, 0.74902344, 1.7412109, -2.2285156, -0.37109375, 0.24536133, -0.6088867, -0.0041122437, -1.3046875, 2.4394531, 0.4404297, -1.9980469, -0.051239014, -0.9042969, -0.38793945, 0.76416016, 2.8242188, -0.8203125, 0.64453125, 1.6630859, -1.796875, -4.265625, 1.1347656, -2.2519531, -0.9394531, -1.8847656, -0.4802246, 3.1953125, -3.0566406, 0.9321289, -0.18383789, 2.5273438, -1.4609375, -2.1835938, -0.07098389, 0.81347656, -3.015625, -3.7304688, -0.17700195, 2.1992188, -0.97802734, 1.5361328, -0.076660156, -0.5209961, 0.34716797, -0.52441406, -0.77441406, 1.0058594, 3.6796875, 0.07330322, 1.1357422, -1.2041016, -1.2285156, -0.984375, 1.1972656, -0.4482422, 3.2792969, -0.30078125, -1.1630859, -0.7607422, 0.70410156, -0.09655762, 1.9804688, -2.8378906, -0.87646484, -2.5625, -0.7866211, -0.30908203, -2.3808594, 0.16308594, 0.30078125, 1.2333984, -2.0761719, 0.31860352, -1.3583984, 1.5488281, 0.75146484, -0.79785156, 2.1875, -2.2167969, 0.7734375, 0.64990234, 2.4726562, 2.8183594, -0.3713379, -0.7910156, 3.8339844, 0.8823242, 1.7451172, -2.8886719, -0.2709961, -0.59277344, 0.18469238, -2.0761719, -2.0957031, 2.1523438, 1.8740234, 2.453125, 1.9003906, -1.0273438, 0.7373047, 0.27954102, 0.4572754, -2.3242188, 2.3203125, 3.9746094, -0.14013672, 2.8085938, -0.54248047, -0.7319336, -0.9428711, 0.4716797, 0.78515625, -1.5947266, -1.6230469, -0.6088867, 3.6328125, -0.63720703, 0.5024414, 2.953125, 0.6542969, -1.1591797, -1.1728516, -0.4609375, -1.5722656, -2.2949219, 0.4506836, -0.36743164, -4.3710938, -1.9638672, -0.5698242, -2.6855469, -0.3642578, -2.0917969, -2.359375, 2.0507812, 1.1748047, 3.4492188, -0.5961914, -1.8779297, 0.3125, 0.14074707, -0.98046875, -2.4179688, 1.6074219, 0.515625, 0.26831055, 2.0410156, -2.2460938, -0.76464844, -0.44482422, 3.2324219, -0.074523926, 1.5029297, -0.83935547, 0.96875, -1.9736328, -1.3291016, 3.0664062, -1.6435547, 0.13867188, -0.6611328, 0.5546875, 2.3574219, 1.1972656, -1.3193359, 0.024383545, 0.36523438, -0.6689453, -2.9941406, -0.2956543, -1.0351562, -1.1953125, -2.0585938, -2.515625, 3.6210938, -0.54541016, -0.46240234, 0.7363281, 0.89746094, -0.07269287, -1.1396484, -1.2236328, -0.45117188, -0.25268555, 1.5273438, -1.9257812, -2.078125, 3.0351562, -0.8388672, -1.3300781, 1.3203125, 3.8417969, 1.7792969, 2.3085938, 1.7060547, -0.004840851, -1.2109375, 2.5019531, -0.0009899139, -1.0771484, -0.8496094, 1.59375, 1.6367188, 1.0029297, 1.9101562, 1.0136719, -1.8759766, 0.44458008, 2.8242188, -0.7583008, -1.25, 1.0869141, -0.7446289, -1.9589844, -3.5625, 0.7788086, 0.9824219, 2.9746094, -0.36938477, -2.46875, 3.0722656, -0.043060303, 1.1181641, 0.9243164, -0.15905762, 1.4257812, -1.8828125, 0.9482422, 1.3056641, -1.5380859, 0.16345215, 1.8730469, 0.91259766, 1.703125, -0.87402344, 0.7758789, 2.2519531, -0.96435547, -2.3339844, -1.4951172, 1.3378906, -3.25, -3.53125, -1.4658203, -2.578125, -0.021957397, -1.9189453, 2.7402344, 2.0976562, 1.7470703, -2.5898438, 0.6279297, -0.03479004, 0.066345215, 0.97216797, 0.4814453, -1.1728516, 0.5258789, -0.6430664, 0.5859375, -1.7636719, -1.8144531, 0.34838867, 0.11682129, -2.4726562, -0.12487793, 1.3417969, -2.0234375, 1.0761719, -1.8134766, 1.1445312, -0.7260742, -1.3867188, -0.87158203, 0.6640625, 0.6791992, -1.4208984, 0.015625, 0.40795898, -0.94433594, -2.3652344, 1.4501953, -0.31030273, 1.4580078, 0.6064453, -1.4638672, 2.1894531, -1.8925781, 1.3583984, -0.08892822, 0.77978516, 0.2746582, -0.30322266, 0.9716797, -0.5058594, 0.9428711, -2.3652344, 1.5478516, -1.4833984, -0.45629883, -1.1914062, -0.8979492, 0.07543945, 0.74609375, 1.5527344, -1.4599609, 2.8925781, -1.2529297, 2.0625, 0.6743164, 0.30786133, -1.7695312, -1.5761719, -0.28076172, -1.3066406, -0.25146484, -2.8710938, -0.56689453, -0.58203125, 2.0332031, -0.87646484, -0.2770996, -1.5644531, 0.019577026, -1.2285156, -2.4355469, -1.7089844, 2.2128906, -1.2021484, -1.9726562, -0.72802734, -1.9208984, -1.9609375, -1.5332031, 0.7158203, 1.6806641, 0.03817749, 1.4990234, 0.8691406, 1.0380859, -0.20483398, -0.5654297, -1.6152344, 0.2734375, 1.1933594, -2.1738281, -0.92626953, 1.0546875, -0.890625, -0.3828125, 0.09649658, 3.3320312, 0.8071289, 3.7617188, -0.41259766, 1.1259766, 0.5258789, -0.26733398, 1.125, 0.021530151, 2.0546875, 0.93603516, -2.9667969, -1.6201172, 0.30004883, -0.87646484, -0.76708984, 0.625, 0.82421875, 2.265625, 2.65625, -0.49072266, 0.56396484, 0.091308594, -2.7890625, 2.2949219, 0.6376953, -0.1517334, -2.1992188, -1.1308594, 1.2070312, 0.66259766, 0.49951172, 1.6074219, 1.6503906, 1.8320312, 1.5058594, 0.13562012, -1.796875, -0.2722168, 0.66796875, 0.54541016, -0.48632812, 0.039978027, -0.4814453, -1.1582031, 0.15991211, -0.6958008, 2.1132812, -3.3359375, -0.79785156, 1.109375, -0.26367188, 0.24206543, -0.63183594, -0.7792969, -0.97802734, -1.7548828, -0.8457031, 0.73779297, -1.4550781, 1.8759766, -0.58740234, -3.203125, 0.37695312, 1.9589844, -0.25341797, 0.1574707, -0.4025879, 1.4667969, -1.6416016, 0.15319824, 0.22021484, -0.006542206, 1.3369141, -0.3684082, 0.7963867, 1.2646484, -0.35717773, -2.7753906, 0.5546875, 1.4541016, -1.1523438, -2.546875, 0.19421387, -0.14294434, 1.7724609, 1.2851562, -0.19006348, 0.84472656, 1.4921875, -1.6523438, -3.1484375, 0.6616211, 0.7338867, 0.02809143, 0.6308594, -0.5126953, 2.6074219, -0.30029297, -0.61328125, 1.1757812, 1.5029297, -2.6367188, -0.5605469, -4.828125, -0.4411621, -1.2763672, -3.2558594, 0.859375, -0.37524414, 2.8730469, 0.7475586, 2.3613281, 0.5493164, 4.125, 1.6601562, -2.1230469, -1.3505859, -0.67333984, -0.47021484, -0.4465332, -2.1679688, 5.859375, -0.34887695, -0.5678711, -0.95166016, 0.36083984, -0.99365234, 2.9960938, 0.69091797, 0.5439453, 0.27490234, 0.5864258, 0.23156738, 0.028427124, -0.036468506, 0.22009277, 1.7617188, -0.13586426, -0.10748291, 2.4003906, -1.734375, 0.52978516, -1.8837891, 2.9804688, 0.3010254, -0.76123047, 0.80126953, 0.75, 1.4589844, -1.1757812, -2.2792969, 0.118774414, -2.3828125, 0.78222656, 0.8027344, -0.8959961, 0.32202148, -2.7558594, -0.71484375, -1.046875, 0.12866211, 0.82958984, -0.38549805, -3.1757812, -1.2597656, 0.03805542, -1.0214844, -1.8994141, 0.024490356, -3.0976562, -0.5234375, -0.7788086, -1.9013672, 2.4589844, 0.24621582, -1.7841797, -1.7451172, 2.6757812, 3.1503906, -0.2121582, 2.21875, -3.3710938, 0.58203125, 0.104003906, -0.4909668, -1.1357422, -1.6123047, 1.8300781, 0.39233398, 0.09039307, 1.6640625, -0.671875, -0.05215454, 0.20629883, 2.1484375, 1.0820312, -0.56640625, 1.7216797, -1.2460938, 1.4638672, 3.0097656, -0.5239258, 4.1445312, -0.19885254, 2.9003906, 0.5180664, -0.99072266, 0.047302246, 1.3388672, 0.039916992, 0.19335938, -1.8701172, -0.3540039, 1.6259766, -0.06085205, -1.0673828, 0.016342163, -0.7832031, -0.56591797, 0.04159546, 2.0898438, 1.4560547, -2.8359375, -0.98535156, 3.0585938, 1.8994141, -0.51953125, 3.7324219, -0.7265625, -3.2011719, -0.5732422, 1.3144531, -2.2792969, 1.4707031, -0.65283203, -2.125, 3.0195312, -1.71875, -0.6772461, -0.018493652, 1.7021484, -0.22949219, 2.4433594, -1.6132812, -0.5449219, 4.1835938, -2.6308594, 0.4296875, 0.11517334, -0.12646484, 2.8378906, -1.1591797, -2.2695312, -0.4362793, 1.2773438, 1.5654297, -1.4443359, -3.0097656, -0.95751953, -2.7851562, -2.0175781, -0.34326172, -3.6660156, -1.9306641, 0.09515381, 1.9580078, 0.55615234, -1.6982422, 0.33276367, 3.2480469, 0.3774414, -0.86083984, -1.5761719, 3.1640625, -1.7587891, 1.1943359, 0.079589844, -1.1650391, -0.27856445, 1.3720703, 0.71435547, -0.022888184, 1.1962891, 1.6914062, -1.3320312, -0.9116211, -0.43432617, -2.6777344, -1.9970703, 0.14868164, 1.4277344, 1.2441406, 0.8618164, 1.0107422, 0.9550781, 0.77246094, -0.3659668, 0.64160156, 1.7138672, 0.87158203, -0.16821289, 0.6748047, -0.46191406, 0.1340332, -1.7373047, 1.3125, -0.0052337646, 2.7714844, -1.2509766, -3.7480469, -0.7993164, -0.3713379, -2.0976562, -2.546875, 1.4609375, 1.2246094, -2.1308594, -0.3918457, 0.09863281, -1.2685547, 2.1386719, -1.5927734, 0.6870117, -0.5600586, 0.0947876, 2.8476562, -1.8896484, 0.36499023, 0.085998535, 0.3840332, 1.3037109, 1.7705078, -1.0703125, 1.9140625, 1.4228516, -0.72314453, -3.0039062, -2.9785156, -0.70166016, 1.1445312, 0.62109375, 1.0107422, 2.0429688, -3.1445312, -5.0742188, 0.6899414, -0.67041016, -0.8334961, -1.8183594, 0.19421387, 2.7011719, -1.453125, 1.8183594, 0.21459961, 0.18334961, -2.3613281, 0.56640625, 1.3037109, 1.7041016, 0.38623047, -1.3496094, -0.4038086, -1.4638672, -0.8232422, 1.375, -1.7294922, -1.4570312, 1.25, -2.7070312, -1.2197266, 0.47851562, 1.9501953, -0.60791016, -2.1679688, 0.53466797, -1.9462891, 3.9492188, -2.4414062, 0.4086914, 1.6474609, 3.0585938, -1.8427734, 2.5234375, -0.9741211, -4.015625, 0.39038086, 0.115112305, 0.41088867, -0.29052734, 0.09661865, 0.35083008, -1.1904297, -0.63671875, 0.5385742, -3.34375, -1.53125, 2.4941406, 1.9921875, 0.48632812, -0.56933594, 2.7148438, 1.4023438, -0.29907227, 2.4394531, -1.671875, -0.8232422, -1.5703125, -2.6542969, -0.61865234, 0.21276855, -1.3310547, -0.31274414, 1.5058594, 2.1523438, -1.6611328, 0.73828125, -0.96875, 0.6357422, 1.0927734, 2.5683594, 1.0546875, 3.4550781, 3.4296875, 1.5078125, 3.6835938, -0.061523438, -0.6533203, -1.7382812, 0.6098633, -1.4277344, 0.82958984, -0.78027344, 1.5839844, 0.26220703, 0.5800781, -0.31298828, 0.5942383, -0.97216797, -0.77490234, 0.27441406, -0.67333984, -0.1920166, -3.265625, -0.7626953, -0.37158203, 0.5605469, -1.3476562, 1.8037109, 2.9179688, -0.05810547, -0.0826416, 0.4675293, -0.11126709, 0.51660156, -4.25, 1.0664062, 1.3046875, -0.49951172, -3.5761719, 1.5947266, 1.4931641, 1.4667969, 1.1113281, 0.31030273, 0.6796875, -0.43847656, 0.46069336, -1.3994141, -1.5478516, 1.4404297, 2.9238281, -0.42504883, -1.9785156, 1.5947266, -0.4399414, -4.9179688, 0.054626465, 3.0234375, 0.76171875, -0.041412354, -1.9052734, -5.109375, 2.28125, 0.22424316, 0.52441406, 0.6245117, -1.9199219, -1.0458984, 1.0371094, 0.58496094, 0.44604492, -0.25878906, 2.8867188, -0.91064453, -2.3027344, -1.5478516, 0.55322266, 0.84521484, 1.6171875, 0.9584961, -1.0273438, 0.859375, -1.3398438, 3.0039062, -0.3581543, -1.3730469, -3.4257812, 1.6152344, 1.0537109, 1.6240234, -0.79296875, -1.8730469, -1.1113281, 0.6328125, -0.11224365, -2.1738281, -1.2763672, -0.21862793, 1.0976562, -0.734375, 1.2324219, -0.31176758, 2.75, 0.5444336, 0.42285156, 2.8457031, 0.69628906, -2.1542969, 1.2265625, 1.8427734, -2.0410156, -0.45507812, -0.27856445, 1.9941406, -0.78564453, -1.0898438, 0.72021484, 1.5761719, -0.70947266, -0.30200195, 1.4296875, 1.5742188, 0.8364258, -0.29589844, 0.28198242, -1.1474609, -0.20617676, -0.7792969, -3.1367188, 0.16259766, 1.8691406, 0.73339844, -0.05001831, 0.02003479, 0.6699219, -0.5678711, -0.25390625, -0.6513672, 0.21264648, 1.9179688, 0.72802734, 1.03125, -1.5957031, -1.7998047, -0.5751953, -1.1044922, 0.70410156, 0.36523438, -2.0605469, -0.42626953, 0.3474121, 2.2148438, 1.234375, 0.7817383, -1.9990234, -1.9228516, 1.0664062, -2.9238281, -0.27563477, -0.7734375, 1.9091797, 1.1015625, 0.49902344, 2.6914062, 2.0507812, 0.98535156, 4.2382812, 0.062316895, -2.2871094, -3.0800781, 2.3515625, 1.53125, -0.18554688, 0.52978516, -0.8725586, -0.7026367, -0.99853516, -0.52441406, -0.09667969]}, "B074GXFLX5": {"id": "B074GXFLX5", "original": "Brand: GasOne\nName: Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:\nDescription: \nFeatures: HIGH PRESSURE SINGLE PROPANE BURNER - Gas One\u2019s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control.\nNO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner!\nEASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1\u2019s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator!\nRUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One\u2019s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1\u2019s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU!\nSAFETY 1ST - Includes a Regulator with ensured quality control\n", "embedding": [-2.2089844, 1.7978516, 1.2744141, 0.35791016, -0.13305664, 1.0322266, 1.1162109, -1.0507812, -0.63378906, 0.62646484, 0.9375, 0.171875, -0.4111328, -1.1875, 1.2646484, -0.4333496, 0.84033203, 1.6015625, 1.0371094, 1.4501953, 2.5195312, 1.2607422, 1.7050781, -0.5644531, -1.2714844, 1.0605469, 2.9707031, -3.4003906, -0.75390625, 0.31347656, 2.8007812, -0.6298828, 0.43408203, 1.9853516, -2.8613281, -0.8901367, -1.8105469, -0.5830078, -4.4179688, -1.6552734, -2.4492188, 0.9663086, 1.25, -0.18115234, -1.7871094, -0.26733398, 1.1611328, -0.48754883, -0.765625, 1.5478516, 1.0605469, 0.51123047, -2.53125, 0.87597656, -0.48950195, 0.7260742, 1.5107422, -2.5, 1.9736328, -0.23608398, 1.7773438, 1.7695312, -1.9326172, -0.2631836, -1.5820312, -1.5966797, -1.3300781, -0.1862793, -1.0517578, 0.084228516, 1.6699219, 0.59033203, 0.31713867, -0.45483398, -0.16625977, 1.1210938, -2.390625, 1.1318359, 2.7246094, -0.20141602, -1.5830078, 1.5244141, 1.1796875, -0.59521484, -0.33422852, 0.1920166, -1.1005859, -0.72509766, 2.0488281, 1.3173828, -1.0712891, 3.3222656, -2.5449219, -4.6953125, 0.8901367, -0.3642578, 1.4931641, 0.6381836, 1.1035156, 0.63623047, -1.1953125, 0.67285156, -0.7895508, 1.9462891, -0.66748047, -2.2402344, 1.9677734, 1.6074219, -2.375, 0.9785156, -1.3261719, -1.6337891, 1.3544922, -0.15393066, 1.3427734, -1.1806641, -1.4306641, 1.9267578, 4.78125, 0.6176758, 3.4746094, -0.64746094, 1.21875, -0.78466797, -0.3088379, 1.3496094, -1.3447266, -0.09729004, 4.0390625, -1.1542969, -0.36987305, -1.3896484, 2.4628906, 0.8671875, -0.81103516, -1.0322266, -0.80078125, -3.7753906, -2.203125, -1.359375, -2.2597656, 2.1972656, 1.3876953, 0.43408203, -2.484375, -0.51464844, -0.8955078, 1.1015625, 0.6738281, -1.5419922, 1.1875, -2.0273438, 0.2253418, -3.2597656, 0.85791016, 0.3828125, 0.26416016, -0.51953125, 2.7578125, 1.3896484, -0.61816406, -0.9316406, -1.5068359, 1.6259766, 0.20776367, -1.4208984, 0.2310791, 1.546875, -1.9570312, 0.7338867, -0.27026367, -1.6835938, -1.3818359, 0.31445312, 0.43432617, -1.7910156, -0.515625, 3.0527344, -0.17443848, -1.1269531, -3.4394531, -3.5664062, 1.0410156, -0.62353516, 0.8457031, -0.34594727, -0.29077148, -1.0146484, 0.38305664, -1.4091797, 0.36572266, 0.09484863, 1.5332031, 0.77685547, 0.68652344, -1.1767578, -1.0722656, -2.2070312, -0.46972656, 1.9199219, -0.0078125, -1.2441406, 0.45581055, -0.2310791, -1.2099609, -0.6479492, 0.8466797, -1.9160156, -0.765625, 1.8056641, 0.083984375, 0.097595215, 1.9501953, -0.11853027, -2.2226562, -1.5068359, 1.8417969, 1.7832031, 1.6015625, 1.4326172, 0.46948242, -1.6503906, 2.4609375, 1.5732422, 1.4570312, 0.92089844, 0.55126953, -0.8701172, -2.1328125, -1.3349609, 2.0058594, 1.7197266, -0.40405273, 0.5546875, -0.017044067, 2.4765625, 0.39135742, -2.2578125, 0.38867188, -0.09954834, -0.37573242, -1.0908203, -1.8095703, -0.2364502, -2.9648438, 1.7363281, -1.1445312, 0.074035645, 1.9853516, 0.7729492, 0.28173828, -0.2944336, -0.5229492, -0.4243164, -2.1269531, -1.9755859, 0.6855469, 0.6503906, -0.111206055, -1.1875, 2.9160156, 0.04324341, -0.8041992, 0.6743164, -0.75390625, -0.88964844, 1.9130859, 0.7895508, -1.6826172, 0.28173828, 2.4082031, 1.7949219, 3.9121094, -0.84472656, 2.1640625, 0.53271484, -2.1132812, 3.1367188, -0.94921875, 1.3066406, 0.7519531, -1.2724609, 1.1787109, -2.125, 1.6367188, 2.1933594, 2.7714844, 0.8198242, -1.0878906, -0.44995117, 4.5078125, -0.28930664, -1.9462891, 1.1210938, -2.0234375, 0.5336914, 0.15368652, 0.24645996, 1.4130859, -1.1289062, 2.1855469, 0.039245605, -0.023269653, -0.46044922, -0.7104492, -0.4350586, -1.1630859, 0.06628418, 0.16271973, 0.13232422, 0.31811523, -0.39819336, -1.4072266, 3.0214844, -2.7460938, -0.49194336, 1.9814453, -2.3964844, 0.31469727, 0.01864624, 1.3232422, 3.2949219, 1.9238281, -1.5136719, 2.5019531, 1.2841797, 1.2617188, 1.1523438, -0.092163086, -0.4243164, -1.0498047, -1.7910156, 0.27905273, -1.6621094, -1.4570312, 0.8701172, -2.7578125, -4.4492188, 1.0390625, -1.8300781, -2.5957031, 2.7167969, -2.28125, 2.1933594, -0.30859375, -2.2109375, -0.09265137, 0.296875, -1.3447266, -0.24206543, 1.6376953, 1.0351562, -0.5761719, -1.8896484, -0.87890625, -1.3085938, -0.13049316, 0.44726562, 0.35595703, 1.2177734, 0.064331055, 0.20361328, -0.5473633, 0.15673828, 0.062072754, -1.7724609, 1.5605469, -3.4042969, -0.4013672, -1.2734375, 0.30493164, -0.10583496, 0.060516357, -1.9208984, -0.41748047, 1.1845703, 0.070739746, 2.25, -0.23791504, 1.2587891, -1.0185547, -0.096069336, 0.55908203, -1.1552734, -3.2324219, -0.06201172, -1.2275391, -1.3632812, 0.006450653, -3.7792969, 0.2849121, -0.32348633, -0.14892578, -1.5576172, 0.36694336, -1.1181641, 0.32617188, 0.19873047, -2.0742188, -1.3242188, -0.1772461, -2.4355469, -3.4375, -0.8203125, 0.5317383, -2.0214844, 0.16638184, -0.15856934, 0.30126953, 0.93652344, -0.5336914, 2.2753906, 0.6738281, -0.62939453, -1.1318359, -2.5, 2.7421875, 1.1972656, -1.0224609, 1.2246094, -2.0683594, -0.9892578, -1.3398438, -0.5048828, 2.4335938, -0.3166504, 2.0878906, 0.25341797, 0.20410156, -0.7050781, 0.6303711, -1.0146484, -1.7841797, -1.0537109, 2.6425781, -1.5908203, -1.9960938, 1.3105469, 2.7851562, -1.5791016, 0.72802734, 3.0800781, 0.63964844, 0.7998047, 1.53125, 1.0957031, -0.80566406, -0.171875, -0.47998047, 2.3222656, -1.4609375, 0.6152344, 0.28295898, -0.3894043, 0.14538574, 1.6142578, 1.0693359, 2.2753906, 2.0742188, 1.5791016, 0.5751953, -1.7197266, 0.35083008, -0.3803711, 2.2539062, 0.53271484, 1.7041016, 0.31201172, -1.5830078, -2.8496094, 0.7026367, 1.4541016, -1.4423828, -0.7661133, 0.45410156, 0.3864746, 0.7290039, 1.2792969, -0.025619507, -0.9013672, 0.6669922, 1.546875, 1.265625, -0.3774414, 1.7851562, -0.25512695, 1.0507812, -1.1748047, 1.3769531, -0.7163086, -0.12976074, 0.5961914, 1.6503906, -3.5097656, -2.1523438, -1.3007812, -1.3818359, 0.3630371, 3.2714844, 0.53027344, -1.9970703, 0.8520508, -0.51953125, -1.1591797, 1.9931641, -1.9638672, -0.5917969, -2.25, 0.72509766, 0.5883789, 0.04977417, 1.1308594, 0.2401123, -1.0761719, 1.8349609, -3.9472656, 0.55810547, -0.55322266, -1.1630859, -1.5546875, 2.6953125, -1.0839844, 0.6948242, -1.6679688, 3.5996094, 0.080444336, 0.37939453, 2.8691406, -2.5410156, -0.02041626, -2.1269531, -5.1054688, 2.3242188, -0.85058594, -0.14453125, 3.7285156, 1.5117188, 0.48583984, 1.4755859, 1.1953125, -2.2792969, -0.6118164, -0.6254883, 1.1875, -2.4863281, -0.4658203, 0.4909668, 1.6953125, -2.1660156, -1.3583984, -1.0097656, 0.3137207, 0.5527344, 1.4990234, -4.0390625, 1.9628906, -0.92578125, 0.5786133, -0.73535156, -1.2236328, 0.60498047, -2.6210938, -0.6621094, -1.1230469, 1.0078125, -0.07647705, 0.33935547, -1.5185547, 3.7207031, 1.9433594, -0.9355469, -0.9980469, 1.9794922, 2.1621094, -0.5605469, -0.96533203, -2.8476562, -0.4873047, -0.40551758, 0.23168945, 0.49023438, -3.1582031, -0.7714844, 2.3085938, 2.7246094, 0.7739258, 1.2841797, 0.9873047, -2.1347656, 0.48657227, -0.81347656, -1.6835938, -0.28442383, -0.44580078, 0.89990234, -1.8447266, 0.9140625, -2.8769531, -1.1142578, 0.15209961, -0.33520508, -2.0625, 1.9072266, 1, 1.3847656, 0.76660156, -1.40625, -2.5449219, 0.009025574, -0.07086182, -1.1708984, 1.7421875, -0.81689453, 0.055511475, 1.4853516, 0.7944336, -0.09490967, -0.066711426, 2.3320312, -1.4472656, -0.60009766, -0.7211914, -0.22265625, -1.7529297, -1.2353516, -0.6245117, -1.0556641, 2.3886719, 0.8256836, 0.56884766, 0.9692383, 1.2412109, -1.4814453, 0.2722168, 1.7626953, 0.05218506, 0.44140625, 1.7763672, -0.26879883, -0.13415527, 0.87597656, -0.021820068, 0.8222656, 1.6083984, 0.06738281, -1.03125, 0.7104492, -1.1953125, -0.85839844, 1.8339844, 0.7890625, 0.97509766, 3.1640625, 2.0859375, -0.8774414, 0.46948242, 0.9824219, -2.1464844, -0.21972656, -0.032226562, -0.70166016, 1.7167969, 0.5551758, -1.8134766, 0.6430664, 5.0039062, -0.73583984, -0.111083984, 0.76416016, 0.48657227, 1.1123047, -1.6220703, -1.6835938, -1.9326172, -0.4453125, 0.5498047, -1.7978516, 0.25830078, 0.103393555, 1.3134766, 1.2548828, 0.33544922, -0.17443848, 2.0449219, -0.20410156, 0.17956543, -1.0771484, -1.0693359, -2.4589844, 2.03125, 2.2148438, 2.2832031, 0.5107422, 0.41357422, 1.0595703, -1.6660156, -2.4375, -0.8105469, 1.0576172, -1.7636719, -0.9790039, 2.5058594, -0.07897949, 0.3310547, -0.79296875, -1.4091797, -1.5654297, 2.2519531, 1.3730469, 0.34204102, -1.578125, -0.37963867, -2.7246094, -5.1484375, -0.3762207, 0.41796875, -1.9746094, -0.8544922, -0.7089844, -1.0292969, 0.19726562, -0.92285156, -0.10131836, -2.6015625, 0.1772461, -0.50146484, -1.3876953, 0.4946289, -1.0654297, 0.18969727, 1.0048828, 0.09509277, -1.125, 1.453125, -1.0771484, -0.7548828, 0.3959961, -1.5029297, -0.06964111, 0.08392334, -1.3173828, -0.023422241, 3.4667969, -0.18444824, -3.4667969, 3.3652344, -1.6464844, 0.16101074, 0.31591797, -1.0996094, 1.0722656, 1.1982422, -0.21032715, 1.4541016, 0.19335938, 0.4020996, -0.16210938, -0.54296875, 1.4101562, -0.1472168, -0.3581543, -1.6972656, 2.2617188, -0.90234375, 0.67578125, 2.0625, -0.8105469, -0.8359375, -1.4521484, -1.1464844, -0.32836914, -2.0195312, -0.049987793, -1.1044922, 0.45581055, 2.1835938, -0.8330078, 1.2871094, 1.2236328, -0.6328125, -0.59033203, 1.1660156, -2.0605469, 2.8691406, -0.38500977, 0.2536621, -1.9853516, -1.3613281, -0.13928223, 0.8745117, 1.0585938, -0.50341797, 1.7255859, -1.0742188, 0.82177734, -0.34423828, 1.1806641, 1.4648438, 2.1484375, 0.17175293, 1.8886719, 3.6035156, -0.8305664, 0.5776367, 0.55810547, 0.4675293, -0.018096924, 2.7226562, 1.7255859, -1.6015625, 0.124816895, -1.7412109, 2.4628906, 0.006454468, -0.9682617, 0.5239258, -0.02658081, -0.72509766, -1.0771484, -1.0478516, -1.9638672, 0.28735352, 2.0527344, -1.3496094, 0.14538574, 2.7109375, 0.6044922, 1.4472656, 2.5839844, 3.015625, -0.46411133, 1.1210938, -1.3603516, -0.3955078, 1.6474609, -2.171875, -0.1463623, 2.8222656, 0.6972656, -0.95996094, 0.9819336, -0.6303711, 2.4238281, 1.8320312, 0.75390625, 2.3261719, 0.28222656, 3.0957031, 0.6669922, 1.8339844, 2.3320312, 1.4003906, -0.046295166, 1.4003906, -0.12768555, -0.45214844, -0.52490234, 0.031951904, -0.7763672, -0.9711914, -0.19726562, 0.22558594, 0.890625, -4.8398438, 0.9633789, -1.4638672, 1.90625, -1.5673828, 0.9663086, -0.9296875, -0.21118164, 0.61376953, -0.8276367, -0.34985352, 0.042419434, -1.3681641, -0.2109375, 0.32177734, 1.8232422, -2.1484375, 0.5058594, -1.3505859, -2.2324219, 1.5908203, 1.2451172, 0.7495117, 2.1210938, 0.7866211, -0.107299805, 0.7661133, -0.19702148, 0.2890625, -3.4960938, 0.82421875, 0.08831787, 2.2773438, 1.5966797, -0.3515625, 2.9003906, -1.5253906, -3.4960938, -3.8144531, 3.8691406, 0.5463867, 1.1503906, -0.2220459, -2.2207031, 2.4472656, 0.15026855, 1.4492188, -3.2207031, 1.0078125, -0.65966797, -1.2421875, -1.5078125, 1.3310547, -1.2207031, 3.6523438, 0.22070312, -1.4921875, -0.7290039, 0.9838867, 1.6894531, 0.37036133, 0.8691406, -0.014831543, -0.04550171, -1.9853516, 2.7148438, 0.91015625, -1.7441406, -1.5458984, 3.1738281, 2.2539062, 0.7368164, 1.3994141, 0.7607422, -0.028533936, -0.4272461, 0.017028809, 0.21459961, -1.6083984, -1.9824219, -1.484375, -0.3100586, -1.5693359, -2.0273438, 0.58935547, -0.0791626, -0.4020996, 0.41577148, 2.921875, 0.08660889, -0.55908203, 0.57128906, -0.50146484, -1.0400391, -0.09741211, 0.026626587, -2.5449219, -0.9013672, -1.0351562, 0.21948242, 0.53466797, 0.05331421, -0.11328125, -0.9550781, 0.50927734, 1.1601562, 0.49829102, -0.3190918, 0.85058594, 1.2285156, -0.31933594, 0.085876465, 2.9765625, -2.5527344, 0.99072266, 1.2314453, -2.6601562, -0.67822266, -0.6665039, -0.40039062, 0.081848145, 3.2304688, 0.77685547, 1.5644531, -1.9433594, -1.5966797, -1.1162109, -2.3007812, 0.28393555, -0.51171875, -1.2939453, 0.099121094, 2.1210938, 2.15625, 0.004878998, 1.4160156, -0.003288269, -0.1505127, 1.4267578, 0.089660645, 2.2421875, -0.29833984, 0.4802246, -0.7089844, 2.9550781, -0.037628174, -2.0683594, -0.28027344, 1.3994141, -0.21484375, -3.546875, 1.7705078, -1.1064453, 0.44360352, -0.17626953, -0.13586426, 2.3222656, 2.5097656, -1.6757812, -1.6865234, -1.8535156]}, "B08C9YPBV9": {"id": "B08C9YPBV9", "original": "Brand: VIVOHOME\nName: VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout\nDescription: Are you ready to go camping? Take VIVOHOME\u2019s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

          Features:
          -The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
          -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
          -The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
          -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
          -Great stove for camping; It will really simplify your canning process

          Product Specification:
          -Rated output: 54,000 total BTU/hr, for 18,000 BTU each
          -Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
          -Stove Height: 29\"

          Package Includes\uff1a
          -1*Triple burner stove
          -1*Extension hose & regulator
          -4*Detachable legs
          -1*Manual\nFeatures: GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties\nHUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend\nTHREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you\u2019re cooking at the right rate\nVERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove's body; It can also be used as a countertop stove without legs\nHEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life\n", "embedding": [-1.3955078, 2.3320312, 3.7109375, 0.9316406, -0.26416016, 1.7099609, 1.2578125, -0.9863281, -2.2792969, 3.046875, -0.05709839, -0.2364502, 0.30639648, -2.4765625, -0.4814453, 0.92822266, -2.3476562, 0.62402344, -0.45141602, -0.28198242, 2.0820312, 0.56152344, 0.63134766, -0.32714844, -0.66845703, -0.9580078, 3.1757812, -4.75, -0.57470703, -1.2402344, 1.7470703, 1.0869141, 0.83935547, 2.1074219, -3.7460938, 0.058685303, -1.2939453, 0.26049805, -3.2402344, -0.6772461, -1.4179688, -1.7451172, 3.9414062, 0.12658691, -2.0078125, -1.3359375, 1.6650391, 1.0576172, -0.50878906, 0.7246094, 0.22949219, 0.91845703, 0.31103516, 0.80126953, -2.5917969, 1.5117188, -0.46948242, -2.4667969, 3.4863281, 0.23181152, 0.2631836, -0.6489258, -2.1875, 1.2382812, -0.39672852, 0.5175781, 1.7792969, -0.9663086, 0.029449463, -0.48876953, 1.6933594, 0.085754395, -0.81396484, -0.23376465, -0.33496094, -0.9243164, -2.53125, 0.99902344, 3.7617188, 0.6333008, -1.9902344, 3.8046875, 0.22924805, 1.2363281, -0.3095703, 1.2675781, -1.7714844, 0.030075073, 2.8515625, 0.19238281, -1.7568359, 1.7998047, -2.0585938, -3.7714844, 1.7314453, -0.4423828, 0.6455078, -0.8276367, -0.20251465, 0.7338867, -1.6181641, 1.4960938, -0.85791016, -0.07293701, -2.265625, 0.5, 2.890625, 1.5117188, -2.8046875, 2.4335938, -3.3183594, -0.60791016, 0.31860352, 0.46044922, 1.1787109, 1.9365234, -1.8984375, -1.1318359, 4.515625, 0.4350586, 5.3164062, 0.2668457, 1.0058594, -0.71777344, 1.2519531, 2.2363281, 1.1621094, 0.1842041, 3.2128906, 0.19702148, -1.3886719, -1.0605469, 2.0898438, -0.34350586, -2.4609375, -1.6132812, -1.8886719, -2.5507812, -5.2109375, -0.58984375, -1.7675781, 0.57666016, 1.9833984, -0.36669922, -4.125, -2.3105469, 1.4570312, 3.1542969, 1.1035156, -1.5556641, 0.10638428, -1.6318359, -1.6230469, -1.6611328, 2.1640625, 0.7451172, -0.6303711, -1.7363281, 3.2480469, 1.1787109, -0.4645996, -2.7910156, -2.09375, 1.4462891, 0.6977539, -3.1542969, 0.23425293, 0.60253906, -0.03955078, 2.5214844, -0.013290405, -3.1328125, 0.041656494, -0.83154297, 1.3916016, -0.6645508, -0.47509766, 2.2714844, 1.0546875, -0.2553711, -2.3496094, -1.8964844, 0.45483398, 3.4941406, -0.70703125, -1.8916016, 0.7739258, -0.09399414, 0.78125, -1.3945312, 0.37280273, 0.74658203, 0.13879395, -0.24951172, -0.50683594, -2.0644531, 0.51416016, -2.5800781, 0.15881348, 1.2529297, -0.0032634735, -1.8632812, 0.7416992, 0.28564453, -3.1640625, 0.25878906, -1.4208984, -0.47094727, 1.2763672, 2.9023438, 1.171875, -0.78564453, 3.625, 0.55322266, -1.0947266, -2.1367188, 2.6640625, 0.7631836, 1.3886719, 1.2607422, 1.1494141, -0.84277344, 0.5957031, 1.3212891, -0.5698242, 1.765625, 0.17285156, -1.4306641, -1.0595703, -1.4931641, 3.2929688, 0.9951172, -0.61083984, -0.14196777, -1.6103516, 2.7695312, 2.7871094, -1.3925781, -0.17224121, -0.4645996, 0.31713867, -2.1386719, 0.7739258, 0.50146484, -3.0390625, 0.6533203, 0.61621094, 0.85498047, 2.4707031, -0.34765625, -1.1748047, -1.6757812, 0.105285645, -0.63720703, 1.0107422, -0.08544922, 0.9526367, -0.48120117, -1.9599609, -1.8779297, 1.9394531, 1.4541016, -0.48632812, 1.3232422, 0.14318848, -0.8911133, 3.3359375, 2.3320312, -3.6328125, 0.42822266, -0.08496094, 1.3574219, 3.2988281, 0.43676758, 2.6113281, -0.42260742, -1.6621094, 2.6074219, -0.060333252, 2.2558594, 1.296875, -1.2255859, 2.0800781, -2.2832031, 0.3972168, 0.39990234, 2.3066406, -0.27661133, -1.1611328, 0.8417969, 5.9023438, -0.5444336, -1.9785156, 1.3242188, -3.4589844, 1.0761719, 0.74316406, -0.28930664, 0.5883789, 0.15856934, 1.9033203, -1.953125, -0.6904297, 1.0087891, -3.0683594, -0.43847656, 1.0683594, -3.6582031, 1.3544922, 0.3618164, -1.9013672, -0.5053711, -0.75097656, -0.18139648, -1.0234375, 0.07659912, 4.171875, -3.0117188, 2.4707031, 1.8320312, -0.24987793, 0.39111328, -1.5058594, -2.2636719, 0.703125, 1.140625, 0.6933594, 1.7890625, 0.5678711, -1.4824219, -1.1328125, -2.1328125, 0.3154297, -0.71435547, -0.68115234, -1.8876953, 0.092163086, -2.7285156, -0.29541016, -0.8154297, -0.8779297, 0.80859375, -2.5507812, -0.45703125, -2.1914062, -3.1503906, -0.2163086, -0.4597168, -1.1748047, -0.21350098, 1.1386719, 1.7675781, -1.2128906, -3.2460938, 0.5107422, -0.19714355, -1.265625, -0.6660156, -1.6210938, 0.7416992, -1.0302734, 0.42407227, 0.7011719, 1.8398438, -0.64746094, -2.296875, -0.28735352, -4.0625, 0.34545898, -0.8017578, -0.12445068, 0.16479492, 0.39575195, -1.3652344, -0.48364258, -0.30419922, 0.53027344, 1.9404297, 0.052612305, 0.62109375, 0.31811523, -2.4960938, -1.1611328, -2.0820312, -2.515625, -0.42749023, -0.546875, -1.7177734, -0.7841797, -5, -0.47705078, -2.1640625, -0.16674805, -0.6508789, 0.5449219, -0.52734375, 0.48999023, -1.7080078, -1.5507812, -1.4853516, -1.46875, -0.87109375, -0.06402588, -2.4492188, -0.25268555, -0.4104004, -0.025131226, 1.0957031, 1.2851562, 0.7729492, 0.3869629, 0.77490234, 0.17919922, 0.17919922, -0.7373047, -3.4628906, 2.7949219, 1.6123047, 1.0097656, 0.9604492, -2.1191406, 0.32128906, -1.6103516, -1.5449219, 2.5507812, 1.0576172, 2.9902344, -0.46948242, -0.6699219, 0.5917969, 2.1152344, -1.0185547, -1.1416016, -0.44140625, 3.4355469, -2.6113281, -1.1464844, 2.0761719, 2.609375, -3.3945312, 0.08679199, 1.5058594, 1.171875, 1.5136719, 1.5742188, 1.5722656, -1.1757812, -0.21740723, -1.8271484, 4.109375, 1.8339844, 0.5541992, -2.6171875, -0.0574646, 0.41870117, -0.31811523, 2.5019531, 0.8623047, 1.5830078, 2.953125, 0.90527344, -2.9726562, -0.33813477, -0.052093506, 0.24255371, 1.7773438, 2.5800781, -0.6069336, -0.8359375, -2.4472656, -0.33032227, 2.0585938, -1.0273438, 1.2451172, -0.021331787, 0.9921875, 0.3515625, 0.01977539, 0.7294922, 1.7001953, -0.13293457, 3.3671875, 0.40185547, -0.8022461, 1.8037109, -1.6328125, -0.9638672, -1.921875, 1.6015625, -0.16992188, -0.9316406, 0.87060547, 1.0849609, -1.8847656, -2.5820312, 0.23596191, 0.6411133, -1.5576172, 2.5195312, 0.19580078, -0.9145508, -0.43725586, -1.3095703, 0.07696533, 1.4550781, -0.1270752, -0.7236328, -0.19335938, -0.28173828, -0.10345459, -0.028305054, 1.8447266, 1.8017578, 0.32055664, -0.2939453, -3.2753906, -0.6303711, 1.140625, -1.7607422, -0.32983398, 3.1660156, 0.5078125, 1.2636719, -0.053375244, 3.5371094, -2.6191406, -1.1923828, 1.3710938, -2.6582031, 0.1081543, -2.4667969, -4.03125, 1.2675781, 0.85546875, -1.1220703, 2.2480469, -0.54052734, -1.3652344, -0.37158203, 1.5429688, -1.9404297, -1.7841797, -2.3710938, 1.8769531, -2.8027344, 1.6513672, 1.2050781, -0.2524414, -3.6875, -1.7050781, 0.24645996, 0.6303711, 1.6298828, 2.4550781, -2.015625, 0.33447266, -1.1210938, 0.45141602, -1.2050781, -0.14355469, 1.3779297, -0.28637695, 1.0888672, -1.2333984, 1.6953125, 1.7138672, 0.7504883, 1.3535156, 2.6386719, 0.39208984, 1.3876953, -1.1914062, 1.6923828, 2.8222656, -0.084350586, -1.4658203, -1.3369141, -0.61035156, -2.0253906, -0.0925293, 0.7495117, -0.45483398, -2.5722656, 1.9814453, 1.5546875, 0.7524414, 2.6992188, 0.21166992, -1.4892578, 0.89941406, -0.0067100525, -0.90625, -1.9345703, 1.2802734, 0.3088379, -2.9667969, 0.42895508, 0.30737305, -1.015625, 0.23754883, -0.32104492, 0.64746094, 2.8046875, 0.35351562, 1.9130859, 2.8417969, 0.28930664, -2.6035156, 0.74072266, -1.6240234, -0.42333984, 0.70458984, -0.4206543, -0.075927734, 1.8701172, 1.0126953, -1.3720703, -1.0976562, -0.20251465, 0.27856445, -0.97998047, -2.2636719, 1.4296875, -0.80371094, -1.6923828, 2.1464844, -0.63378906, 2.609375, -1.9863281, -0.74609375, -0.0881958, 1.3789062, -1.3066406, -1.5537109, -0.6845703, 0.54248047, 0.61279297, 0.40283203, 0.32470703, -1.1035156, 1.6552734, 0.058166504, 3.4121094, 0.45874023, 1.4648438, -0.22009277, 1.1005859, -0.90234375, -0.18029785, 0.34765625, -0.51123047, 0.16345215, 3.1015625, 1.9492188, 0.1071167, 3.7207031, -1.1669922, -1.3515625, -0.08404541, 0.9316406, -2.1640625, 2.4082031, -0.26123047, -2.4980469, 0.9140625, 3.9394531, -0.029022217, 0.8588867, -1.2148438, -0.2841797, -0.9013672, -4.0859375, 0.19506836, -1.0546875, -0.21008301, 0.22021484, -1.640625, -0.20361328, -0.796875, 3.0195312, 2.0273438, -1.0537109, 0.1751709, 2.5136719, -1.1933594, 0.14465332, 0.20874023, -0.18896484, -3.7304688, 0.6713867, 2.0039062, -0.16455078, 2.5253906, -0.49609375, -0.113098145, -0.89208984, -1.3369141, -1.5361328, 3.4394531, -2.3378906, -0.9941406, 1.1591797, -0.15222168, -0.79785156, -0.1751709, -2.71875, -2.2324219, 2.6210938, 1.1142578, 0.17700195, -0.26391602, -0.57470703, -1.25, -3.8984375, 0.115722656, 1.2890625, -1.3242188, -1.0253906, 1.1708984, -0.77001953, -2.4101562, 0.9526367, -0.4658203, -1.8554688, 0.29833984, -0.07659912, 0.15429688, -0.5336914, -0.4946289, 0.75439453, 2.9550781, 0.5449219, -0.08325195, -0.63623047, -2.3945312, -0.9145508, 1.5126953, -3.2285156, 1.5439453, 0.34326172, 0.062072754, 0.6459961, 2.7675781, -0.15612793, -0.56884766, 3.1621094, 0.10522461, 0.49536133, -1.046875, -2.6484375, 2.3417969, 0.28955078, -1.0683594, -0.041046143, -0.4597168, -0.9482422, 0.78027344, 0.734375, -0.54003906, 1.0517578, 0.17785645, -1.7353516, 1.2353516, 0.38623047, 0.37524414, 1.6757812, 0.7885742, -0.81103516, -2.5683594, -4.0664062, -1.4335938, -1.5917969, -0.67626953, -0.5263672, 0.7236328, 0.6123047, -0.06341553, -0.41210938, -0.42993164, 0.2775879, -1.7207031, 0.87402344, 0.28393555, 4.125, 2.7519531, -1.1464844, -3.4140625, -2.9257812, -0.43896484, -0.31860352, 1.0585938, -1.9042969, 2.546875, -2.9726562, 0.54345703, 0.14978027, 2.4199219, 2.7070312, 1.0341797, -1.5009766, 1.109375, 2.0625, -0.8256836, 0.3022461, 0.33984375, -0.114746094, -0.29003906, 3.4257812, 0.63623047, 0.22668457, 3.9277344, -2.2617188, 1.7246094, -1.6181641, -2.4179688, 2.2753906, -0.4255371, -1.9921875, -3.4335938, -1.1484375, -0.21276855, 2.6503906, 1.4472656, -0.023468018, -1.2275391, 2.5117188, -0.4189453, 2.0097656, 1.2558594, 1.9111328, 0.59472656, 1.6191406, 0.63427734, 0.78222656, 3.2207031, -1.0947266, 2.6679688, -0.9375, -1.6230469, -0.4033203, 2.4453125, 1.2148438, 2.1445312, 2.84375, 1.2011719, 1.4736328, 0.43896484, 2.6113281, -0.39135742, 1.2548828, 2.5859375, 0.6035156, -0.8955078, 1.09375, 1.2919922, -1.5888672, -1.5996094, 1.1503906, -0.59472656, -0.1694336, 0.5209961, -0.78808594, 1.9355469, -4.5117188, 1.8896484, -1.0263672, 2.1308594, -0.2841797, 1.0224609, -0.34814453, -0.5078125, -0.53027344, -0.95751953, -1.5019531, -1.7148438, 0.56884766, -1.3925781, 0.8457031, -0.4506836, -2.9296875, -0.07354736, -1.078125, -2.6289062, -1.8886719, 1.3945312, 0.56103516, 0.99365234, -1.1552734, 0.36157227, 1.4785156, 0.56347656, 1.3339844, -1.3027344, -0.23168945, 0.02444458, 2.6074219, 0.51953125, -0.014785767, 0.3972168, -0.7026367, -3.6367188, -4.7734375, 2.03125, 0.97558594, 2.0078125, 1.1210938, -2.7792969, 3.1132812, 0.46655273, 2.1347656, -0.81152344, 1.3417969, -1.1123047, -0.7133789, -2.0097656, 0.012039185, 0.27172852, 4.2421875, 1.6074219, -0.31591797, 1.7001953, -0.78466797, 1.1904297, 0.6171875, 1.0830078, -0.20593262, -0.38598633, 0.36621094, 0.87158203, 1.7822266, -1.59375, 0.5629883, 2.6230469, 1.2119141, 0.06781006, 0.77490234, -1.9169922, 1.4580078, 0.39819336, -1.15625, 0.37280273, -1.4550781, -2.1054688, -0.8027344, -0.72021484, -1.4638672, -1.3652344, 0.88916016, 0.9453125, -0.80615234, 1.5244141, 0.9448242, 0.9765625, 2.1972656, 1.1728516, -0.8769531, -1.6191406, -0.38623047, 0.0625, -0.9433594, -1.7382812, 0.7392578, 0.8100586, 2.7480469, 0.9326172, 0.87060547, -0.99658203, -1.0136719, -0.57177734, 0.82714844, -1.0263672, -0.5019531, -0.15686035, 0.7060547, -1.7607422, 3.8085938, -0.9428711, -0.8310547, 0.6699219, -3.0449219, -1.0947266, -0.62402344, -0.48828125, 2.1601562, 1.8740234, 0.22094727, 1.1875, -2.0488281, -2.75, -2.8222656, -0.18774414, 1.2119141, 0.5595703, -0.27856445, 1.2744141, -0.39257812, 0.7519531, -1.3037109, -0.8413086, 0.10992432, -1.9384766, -0.43432617, 0.81396484, -0.45385742, -0.19970703, 3.3046875, -0.6455078, 2.4785156, 0.7583008, -0.94091797, 2.9472656, 1.4003906, 1.0742188, -2.3613281, 0.40722656, -1.1689453, 0.3088379, -1.0917969, 0.019958496, 3.2402344, 1.0507812, -1.2529297, -2.7539062, -1.9394531]}, "B00IZCNP5C": {"id": "B00IZCNP5C", "original": "Brand: Flame King\nName: Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black\nDescription: \nFeatures: Securely Holds Two 30 pounds Propane Tanks\nFast and Easy To Use\nBuilt From A Durable Powder Coated Steel\n", "embedding": [-3.3066406, 1.2119141, 0.7294922, 0.07281494, 0.609375, -3.9023438, -0.027389526, -0.86279297, 0.3190918, 0.29589844, 2.5371094, -0.12194824, 0.6923828, -3.3144531, 0.28833008, -0.33520508, -1.3740234, 1.5605469, 2.2011719, 0.5917969, 2.1972656, 0.8208008, -0.57910156, -1.2001953, 1.1005859, -1.0048828, 2.8164062, -2.5019531, 0.12780762, 0.4560547, 0.6821289, 0.09552002, 2.1777344, 2.0800781, -0.5131836, -2.0332031, -0.7973633, -1.2871094, -5.203125, -1.0107422, -2.4277344, -2.9414062, 2.3339844, 1.4912109, -0.17700195, -0.6982422, -0.20495605, -0.16491699, 0.4790039, -0.984375, 1.8037109, 2.4511719, -1.0039062, 1.6894531, -2.0644531, 0.25390625, -0.0848999, -1.6328125, 0.7421875, 0.1920166, 0.9301758, -0.4909668, -2.9082031, 1.8583984, 0.86035156, 2.7421875, 0.2479248, 0.50683594, 0.46704102, 1.2216797, 0.8569336, 0.8564453, 0.38061523, -2.4296875, -1.3496094, 0.5830078, -2.1289062, 0.37231445, 1.53125, -1.1005859, -0.49560547, 2.2988281, -0.70214844, -1.1513672, 0.8642578, -1.9023438, 0.7421875, 0.7285156, 0.63183594, 1.5742188, -2.2363281, 1.5654297, -1.3291016, -2.2226562, 1.5097656, 2.0136719, 1.3847656, 1.9316406, 2.0117188, 2.1679688, 0.3395996, 0.2142334, -1.4482422, 1.2138672, -3.34375, -2.3046875, -0.6904297, -2.828125, -2.1035156, 1.5507812, -0.87597656, -0.030532837, 2.0703125, -0.6347656, -0.9375, 0.8515625, -0.1953125, 1.4238281, 1.3212891, 1.5117188, 3.3730469, -1.3681641, 2.140625, -1.5380859, 2.1152344, 1.9414062, -0.4465332, 3.0195312, 4.4101562, 0.015052795, 2, 1.4873047, 3.0039062, -0.4104004, 0.92285156, -2.7265625, -0.119140625, -2.03125, -2.1386719, -0.65771484, -1.9433594, -0.54248047, 1.4824219, -0.35986328, -3.8417969, -0.67578125, -0.6894531, -0.96972656, -1.0605469, -2.7890625, 0.62597656, -1.9208984, 0.2487793, 0.56103516, 2.0429688, 2.3574219, -1.2753906, -2.8085938, 0.8955078, 2.1230469, 0.28295898, -1.0859375, -0.65527344, 1.6806641, -1.2519531, -2.7070312, -0.15270996, 1.7626953, -0.7753906, 1.8388672, 0.62890625, -1.4804688, 0.41381836, 0.7060547, -1.265625, -1.4111328, -0.9116211, 0.7373047, 0.33203125, 1.7333984, -2.4355469, -1.1259766, -1.6142578, 0.1628418, 0.9140625, 1.1035156, -0.7788086, -1.78125, 2.0078125, -0.64990234, -2.2832031, 3.0898438, -2.7949219, 0.048217773, 1.0712891, -2.1640625, -2.7636719, -1.7529297, 1.3271484, 1.6367188, -1.1972656, -2.1445312, 1.3398438, -0.5859375, -2.4179688, -2.6953125, 1.7910156, -0.87841797, 0.015792847, 2.5449219, -0.59521484, -0.35888672, 2.3457031, -2.0859375, -1.5292969, -2.0683594, 0.061676025, 2.4726562, 2.9960938, 2.8261719, -0.004699707, -0.14465332, 1.3242188, 1.0644531, 0.21606445, 0.59277344, 0.9243164, 0.38867188, -3.6484375, 0.79296875, -0.17822266, 1.0751953, 0.4650879, 1.3427734, -1.3574219, 1.3242188, 0.9213867, -1.7431641, 0.2697754, 1.6601562, 0.9692383, 0.7011719, -0.6425781, -1.5126953, -1.3457031, 0.74365234, 0.30859375, 0.578125, 1.8525391, -0.9165039, 0.2890625, -1.1103516, -0.79541016, -0.8935547, 0.8149414, 1.2138672, 0.3857422, -0.089416504, 1.1425781, -3.6386719, 1.7177734, 0.69628906, -1.5488281, -0.48217773, -0.5151367, 0.15124512, 1.9736328, -0.45776367, -3.4648438, 2.2773438, -1.4160156, 0.49951172, 1.6308594, -1.5263672, 1.8583984, 2.390625, -1.546875, 2.5683594, -0.5102539, 2.8339844, 1.0058594, 0.2524414, 0.4423828, -2.5097656, 0.66308594, 0.7246094, 1.2158203, -0.32006836, -0.6274414, 2.2675781, 5.453125, -1.0107422, -0.734375, 1.3671875, 1.6484375, 0.7504883, 2.7226562, 0.15771484, 0.9067383, 0.22180176, -0.93359375, 0.2401123, 0.39868164, 0.38989258, 0.5107422, -1.1640625, 1.2792969, 0.26220703, 1.7919922, 0.10845947, -0.31323242, 0.5786133, -2.578125, 0.15722656, -0.24414062, 0.36499023, 4.4179688, -2.7910156, 1.7568359, 3.8828125, -0.096191406, 1.9267578, 2.6582031, -2.6523438, -0.8251953, 1.6611328, -0.86279297, 1.1455078, 0.50878906, 2.2871094, 0.21350098, -2.2207031, 0.7841797, -0.6455078, -0.24169922, 1.0048828, 0.31152344, -1.6884766, -0.6064453, -0.5703125, 0.5180664, -0.94970703, -1.0224609, 1.2841797, -0.4489746, -1.8652344, -0.7446289, 1.0449219, -0.8955078, -2.3222656, -0.64208984, 2.3945312, 0.07556152, -2.2148438, 0.7631836, -0.7416992, 1.0703125, 4.1328125, -0.9790039, -0.089782715, -0.17333984, 1.234375, -0.40625, -0.13916016, -1.7373047, -1.6386719, 4.2773438, -0.97314453, 1.6542969, -0.9580078, -0.8520508, -2.3496094, -0.984375, -0.7480469, -2.6816406, 0.96777344, -1.3486328, 2.2011719, 1.3486328, 1.3359375, -0.5385742, -0.09674072, -0.112854004, -0.5498047, -1.1396484, -1.8964844, 0.31347656, -2.015625, -1.5849609, -3.5644531, -0.011795044, -0.24304199, -0.76220703, -0.69921875, 1.9580078, -2.2480469, 0.4091797, 0.47802734, 0.76464844, 0.36108398, 1.7431641, -1.0449219, -3.4414062, -0.8208008, 1.6533203, -1.2011719, -1.9433594, -0.9423828, 1.34375, -0.7128906, -0.7714844, -1.3554688, -2.2382812, 2.0722656, -0.0049705505, -1.5019531, 0.70458984, 0.6069336, 1.4960938, 4.5625, -2.7265625, -0.2915039, -3.2636719, 0.2890625, 4.9804688, 1.2167969, 0.5205078, 0.14111328, -1.4150391, 0.9472656, -0.6323242, 0.58935547, 1.9013672, -0.78271484, 4.46875, -1.0537109, -1.5878906, 0.53027344, 2.328125, -4.15625, 0.49682617, 1.4296875, 0.1015625, 1.6835938, 1.5224609, -0.11193848, -2.0839844, 0.24169922, 0.99121094, 2.6503906, 1.03125, 0.40161133, -0.8823242, -0.14160156, -1.3720703, 0.24230957, 2.5273438, 0.9243164, 1.2617188, 2.8867188, 1.4394531, -1.6367188, -1.5087891, -0.79296875, 1.4736328, -0.31640625, 2.7089844, -0.8930664, -0.56103516, -1.6240234, 0.265625, 0.6225586, -0.48168945, 1.6806641, 1.1289062, 2.8515625, -1.5068359, 0.36572266, -0.87353516, -1.59375, -2.5761719, 4.3242188, -2.5800781, 0.6713867, 0.9140625, -1.3818359, 0.4584961, -3.6679688, 3.3242188, -2.546875, 0.63720703, -0.6191406, 2.7597656, -0.72998047, -1.3349609, 0.82373047, -2.0957031, -3.2753906, 3.3027344, 1.21875, -2.2460938, -0.0960083, -0.9375, 1.7773438, 0.61572266, 0.5673828, 1.8242188, 0.93408203, 0.19628906, -0.72558594, -0.40966797, 0.14416504, -0.3005371, -1.6787109, 0.96191406, -3.015625, 2.6464844, -0.3972168, 0.09802246, -0.875, 1.6220703, -1.0722656, 2.3515625, -2.1132812, 4.9257812, -1.0332031, 2.25, 2.5976562, -2.4824219, 0.734375, -1.8623047, -2.4042969, 1.4179688, -2.2636719, -0.17236328, 2.0722656, -0.35473633, 0.8857422, 1.6298828, 0.30664062, -2.6699219, -0.03302002, -1.9169922, 2.5917969, -3.1855469, 0.55371094, 0.7626953, 1.21875, -2.2519531, -2.5507812, 0.35742188, -1.4472656, 0.71533203, 0.56103516, -1.0615234, 0.3959961, 2.5957031, -0.8442383, 0.9033203, 0.2006836, 1.3291016, -1.0654297, 0.17285156, -1.6435547, 3.8632812, 1.4980469, 0.2487793, 0.9121094, 2.3183594, 1.5488281, -1.7529297, -2.6992188, -2.15625, 2.0175781, 0.17456055, -4.84375, -2.5, -0.30273438, 0.9584961, -1.0849609, 1.0849609, -0.68847656, 0.3317871, 4.1835938, -0.3774414, 1.0878906, 1.6640625, -0.34106445, -1.5888672, 0.19555664, 1.0361328, 1.1015625, 1.0283203, -2.078125, -0.13195801, -2.0703125, 1.3388672, -2.7363281, -1.3076172, -2.2539062, -0.9560547, -3.7304688, 1.8828125, 1.4599609, 2.9941406, 0.94140625, 0.96777344, 0.47070312, 0.4404297, 0.45288086, -0.82666016, 0.49194336, 0.83447266, -0.8564453, 1.4794922, -0.76904297, -0.057434082, 0.076538086, 0.5839844, -0.7050781, -0.8071289, -0.26245117, 0.5029297, -2.25, -1.9775391, 1.4736328, 0.40454102, 4.3398438, -3.0195312, -0.46679688, -0.17578125, 1.6835938, -1.15625, 2.3632812, -0.29418945, -0.03665161, 1.9638672, 0.18078613, -0.37280273, 0.16552734, 3.6660156, 0.2529297, 1.3964844, -3.2597656, -0.27197266, -0.24450684, 0.09082031, -0.060272217, -0.20532227, 1.2431641, 0.8442383, 0.4338379, -0.03387451, 1.1757812, 0.7001953, 0.96777344, -0.6430664, -4.078125, -2.2167969, -0.26171875, -0.4958496, 1.9921875, -0.5229492, -2.8320312, -0.48339844, 0.93652344, 0.4934082, 1.0722656, 1.8017578, -0.9814453, -1.1630859, -2.1777344, -1.5332031, -2.9082031, -0.5385742, 0.5004883, 0.004337311, -0.26513672, -0.39453125, -0.82470703, -1.4003906, 1.2226562, -0.5180664, -0.90966797, -0.057525635, -2.4101562, -1.0068359, 0.8359375, -4.4375, -0.41064453, -0.7944336, 0.21105957, -0.06585693, 0.46875, 2.34375, -1.5898438, 1.0361328, -1.2167969, 2.4140625, -0.30786133, -1.8378906, 2.1875, -0.76464844, 2.2246094, -0.671875, 0.033294678, -2.2246094, 1.8535156, 0.9091797, -0.8300781, -1.9511719, 1.1132812, -2.6367188, -4.96875, -2.3066406, 0.39672852, 1.9589844, -0.12072754, -2.0273438, -2.2617188, -0.21594238, -0.38378906, 0.22363281, -2.0234375, 0.11260986, -0.70458984, -0.7788086, -1.8603516, 1.3974609, 1.4296875, 0.69091797, 0.10876465, -0.80908203, -1.8681641, -3.1113281, -2.3847656, 1.1230469, -1.2998047, 1.5703125, -0.14526367, -1.3564453, 0.7548828, 2.9414062, -0.8051758, -3.3632812, 2.0234375, -1.5878906, 0.36914062, 2.84375, -1.6601562, -2.5136719, 1.2910156, -1.2939453, 0.8857422, 1.6513672, 1.3144531, -3.3222656, 0.51220703, -1.2382812, 1.7695312, -2.7792969, 0.80371094, 1.6533203, 1.5869141, 1.9931641, 0.734375, -1.5615234, -3.1679688, -1.9111328, -0.99365234, -0.5498047, -3.3671875, -0.45410156, -1.4160156, 1.9287109, -0.13024902, -1.0957031, -0.3190918, 0.004234314, -1.0380859, -1.0986328, 1.8193359, -3.7265625, 1.53125, 1.5283203, -1.6494141, -1.5214844, -1.1416016, 0.9819336, 0.23010254, -1.3652344, 1.2822266, 0.765625, 0.4091797, 1.4384766, -0.3935547, 2.2949219, 1.6113281, 1.7939453, -2.5996094, 0.89453125, 2.9140625, -0.24291992, -0.043518066, 0.021377563, -2.6503906, 1.1484375, 1.6191406, 0.79003906, -2.8378906, 0.94091797, 2.1835938, 0.032440186, 0.67626953, -1.46875, -0.69677734, -2.9179688, -1.4052734, -0.5073242, -1.5898438, -4.6640625, 2.2382812, -0.018814087, -1.6083984, 0.9121094, 0.93115234, 0.12298584, 0.4309082, 2.0761719, 0.81103516, -1.2958984, -0.7583008, 0.55029297, 1.0039062, 2.9316406, -1.5917969, 1.0751953, 0.62402344, 0.8232422, 0.05987549, 0.734375, -2.546875, 1.6669922, 1.1611328, 1.7861328, 5.2070312, -1.8945312, 2.7539062, -0.9091797, 1.5078125, 4.5429688, 0.10583496, 0.42236328, 0.012062073, 2.3925781, 0.38012695, -1.5791016, 0.6582031, -0.011245728, -0.035614014, 0.12512207, -0.17663574, 0.056854248, -1.5126953, 0.91796875, -0.51464844, -0.5527344, 0.9765625, 0.48217773, -1.2998047, -0.08880615, -0.58935547, 1.1298828, 0.58740234, -0.79541016, 0.9008789, -0.37670898, 0.13989258, 0.69091797, -0.23156738, -0.44677734, -1.1416016, -1.8085938, -0.08666992, 3.2070312, 0.8066406, -0.41796875, 0.3959961, 0.3840332, 0.16516113, 0.74902344, -0.2211914, -0.29296875, 0.77246094, -0.89941406, 1.6269531, 1.5361328, -0.55566406, 3.1796875, 1.7011719, -1.0429688, -4.4296875, 0.8569336, -2.5917969, -0.3322754, -0.5498047, -1.796875, 0.7207031, -0.7758789, 0.9301758, -3.2519531, -0.045654297, 0.30688477, -2.1210938, 1.875, 1.0175781, 0.5239258, 3.9160156, 2.8613281, -0.9746094, 1.7177734, -0.45947266, 0.44726562, 0.45581055, 0.90722656, -1.2216797, 3.0800781, -0.9189453, 2.3886719, -0.40673828, 0.5756836, -1.84375, 1.7646484, -0.1907959, 0.25146484, 0.91064453, -2.5703125, 2.3789062, 0.45361328, -0.09674072, 0.90527344, -3.1660156, 0.086120605, -0.24938965, -0.52197266, 1.4121094, -0.16296387, -1.5927734, 2.8242188, -2.0371094, -0.30322266, 2.4296875, -0.9091797, 1.4501953, -0.10986328, -1.1816406, -1.5351562, 1.6962891, 1.3310547, -1.9755859, -1.6523438, 0.90185547, 2.9179688, 0.046020508, -2.34375, -1.1972656, 0.8774414, -0.8383789, -0.5571289, 0.73046875, -0.9169922, -0.40820312, 1.3515625, -0.5703125, 0.4729004, 2.6582031, -0.45410156, 1.1992188, -0.9560547, -0.7714844, -0.3647461, 0.4296875, -2.4140625, -1.3564453, 1.0888672, 1.3955078, -0.63183594, 0.8588867, -3.40625, -1.0058594, -1.78125, 3.3671875, -0.7006836, -3.2265625, 0.19750977, 0.35498047, 2.28125, -0.97802734, -0.2890625, -0.48266602, 0.3395996, 0.8520508, -1.0263672, 1.4970703, -0.2368164, 0.041534424, -1.3730469, 2.9082031, 2.2109375, -1.8769531, 0.018188477, 0.34350586, -1.3759766, -0.97216797, -1.7861328, -1.3574219, -1.7841797, 1.3105469, 2.078125, 2.6210938, 1.7285156, -1.5917969, -3.7402344, -1.1162109]}, "B07MV43X4C": {"id": "B07MV43X4C", "original": "Brand: Cedar Green\nName: Cedar Green 330SA Earth Anchor, Black\nDescription: \nFeatures: Each Package Includes 6 Earth Anchors\n30\" Length with 3\" Dia Helix Auger & 1\" Inside Ring\nHeavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding\nEasy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs\nIdeal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake\n", "embedding": [-0.9926758, 1.1035156, 0.19934082, -1.7568359, 0.57714844, 0.7246094, -1.375, -1.6601562, 1.5771484, 0.6640625, 0.60498047, 2.8300781, -1.1357422, -4.3164062, -0.35009766, -1.4726562, -1.6025391, 0.9765625, -0.43115234, -2.3828125, 2.7949219, 0.4440918, 0.53222656, -1.8369141, 2.3984375, -0.36865234, 3.4238281, 0.15454102, 0.77685547, 2.0019531, 1.6523438, 0.6074219, 0.12036133, 1.0107422, -2.4453125, 0.33447266, 0.49389648, 0.48608398, -0.065979004, 1.1035156, -2.0117188, 1.0009766, 1.9882812, 1.2089844, -2.9160156, 2.3144531, 1.4238281, 1.0732422, 1.8115234, -1.1044922, 1.3076172, 2.0761719, -1.4326172, -0.5395508, -1.4580078, -0.6040039, -1.5146484, -3.9667969, 3.9765625, -0.014930725, 0.06213379, -0.8051758, -0.50439453, 2.8945312, -0.52197266, -0.105895996, -0.14257812, 0.55908203, 0.28295898, 2.1328125, -0.6821289, 1.7412109, -2.1152344, -1.2050781, -1.7070312, 0.6855469, -2.6699219, 1.2158203, -1.1289062, -1.9023438, -2.8984375, 1.4853516, -0.55126953, -1.5634766, -0.36547852, -1.0087891, -3.0957031, -0.7939453, -1.8017578, -3.3632812, -0.28076172, -0.50146484, -3.2519531, -5.6953125, -0.00061273575, -1.8574219, -0.9165039, -1.265625, -0.23498535, 2.6035156, -0.26708984, -2.4648438, 0.71533203, 0.8774414, -3.5390625, -0.81933594, 1.0029297, -0.8515625, 0.32836914, 1.6191406, -0.5341797, -0.13427734, 0.7392578, 0.7294922, -0.7661133, -0.4428711, 0.78027344, -0.91748047, 1.7041016, -0.1171875, 2.4609375, 0.3828125, -1.6767578, 1.1445312, 0.734375, 1.5117188, -0.33447266, 1.1054688, 1.1757812, -1.1894531, 1.3027344, -1.2646484, -1.4267578, 2.3085938, -0.4111328, 0.07543945, 1.4589844, 0.15161133, 1.2568359, 1.6728516, -3.28125, 3.3242188, 0.7270508, -0.6508789, -3.2285156, 1.5322266, -3.0292969, 0.4140625, -2.0253906, -1.2539062, -1.2285156, -1.5351562, -1.2958984, -1.3261719, 1.7099609, 1.4082031, -0.66845703, -1.0771484, 0.60009766, 2.0332031, -1.1738281, -1.7773438, -0.44580078, -2.5625, 0.75097656, -1.9707031, 1.2978516, -0.8725586, -0.6958008, 1.5273438, -0.13781738, -0.97314453, 2.5351562, 0.6430664, 0.07006836, -0.8886719, 0.4255371, -0.19604492, 0.06604004, -0.3791504, 0.6826172, 0.6982422, 0.27905273, 0.02281189, 0.25561523, 1.0458984, -0.006465912, -2.2070312, 0.3564453, -0.7734375, 0.66503906, -0.95214844, -2.5214844, -0.016983032, 1.5556641, -1.5585938, -0.5620117, 0.40625, 0.7006836, 1.8789062, -1.1816406, 2.1757812, -0.63378906, -0.041625977, -0.94433594, 0.18139648, -1.6318359, 0.3010254, 0.38061523, -0.6542969, 0.48828125, 0.32470703, -0.10949707, 1.1445312, 0.21875, -0.9770508, -0.7446289, -0.80810547, 2.0742188, 0.57470703, 0.97558594, 0.06542969, -2.6289062, -0.7504883, 1.3613281, -0.28295898, -1.3662109, -1.4443359, -0.25878906, 2.2753906, 1.7666016, 0.56591797, 0.8359375, 1.078125, 0.06237793, 1.1416016, -0.3527832, 1.5585938, 0.61376953, 0.4338379, 1.0351562, 0.2758789, -3.125, 0.30981445, -0.81933594, -1.1367188, -0.5649414, 1.5302734, -0.7910156, -0.48413086, -0.4892578, -1.4433594, -1.1386719, 1.0273438, 1.75, 2.4472656, -1.8544922, 2.0761719, -0.2824707, -2.6347656, -0.3828125, 0.3479004, 0.27685547, -0.6586914, 2.8203125, -1.0117188, -3.0019531, -0.31347656, -0.7993164, -1.8603516, -0.6220703, -1.4482422, 0.29760742, -0.7841797, 1.3105469, 0.37597656, -0.26513672, 1.671875, -1.9511719, 1.5, 0.17834473, 0.25097656, 1.0449219, -2.0761719, 0.7783203, -1.2089844, -1.375, -1.5839844, 0.9404297, 1.6044922, 2.0273438, -3.6757812, -3.6660156, 1.6552734, 0.57910156, 0.21154785, -0.113586426, 0.16491699, -0.15795898, 1.0400391, -0.1508789, 1.3955078, 0.15991211, 1.0332031, -0.17797852, 1.7392578, -1.1494141, 0.058258057, -0.6933594, 2.5820312, -0.8100586, -0.1541748, -0.6269531, 2.1738281, -1.7353516, 0.4963379, 1.7675781, -2.1054688, 0.39282227, 2.2636719, 1.1103516, 0.6196289, 0.51123047, -1.6972656, -1.7646484, 2.46875, -1.0332031, 0.1105957, -0.18884277, 0.026107788, 1.3417969, -1.4326172, -0.25048828, -0.83935547, 0.35424805, -2.3867188, 0.41918945, -1.6210938, -1.8544922, -1.125, 1.6386719, -0.9433594, 2.2382812, 1.0527344, 0.9423828, -1.8896484, 1.1865234, 3.3632812, 1.0146484, 3.8984375, 0.29467773, 2.2851562, -2.4570312, -1.9472656, -0.9921875, 0.6044922, 2.3261719, 3.5742188, -1.1464844, 0.8491211, 1.7236328, 3.1445312, 0.46972656, -1.4287109, 0.3725586, 2.4277344, -0.089782715, -1.3554688, 2.6699219, -0.53027344, 0.18371582, 0.4555664, 0.31591797, -0.54248047, 0.28930664, 0.91845703, 0.39208984, 4.5976562, 2.0410156, 1.4208984, -1.5800781, 0.26000977, 0.5654297, -2.1679688, 1.0175781, 0.5234375, -1.0996094, -1.1396484, 0.24719238, -1.6582031, 0.1239624, 0.31225586, 0.8432617, -0.77001953, -0.11999512, 0.20117188, -0.07318115, 0.29833984, 0.68847656, 0.06567383, -0.1496582, 0.33740234, 1.1982422, 0.34350586, -0.5292969, -1.8261719, -2.8652344, -0.43798828, 1.0273438, 0.3400879, -0.6816406, 1.0800781, 0.08276367, 0.6435547, 2.0800781, -2.2578125, 2.7363281, 1.7089844, -0.8041992, 1.5820312, -1.6542969, -0.43115234, -1.3544922, 1.6201172, 3.4980469, 0.22460938, 1.625, 0.52734375, 0.6171875, 0.56103516, 1.4267578, 1.5771484, -0.9272461, 1.6025391, -0.7944336, 1.8896484, 0.73095703, -0.24804688, 1.9306641, -2.7226562, -0.2409668, 1.3652344, 2.2109375, 2.5292969, 1.8994141, 0.86621094, 1.0761719, -0.27954102, -2.4570312, -1.1220703, 0.0019321442, -0.27197266, -0.5214844, 0.089416504, -0.29736328, 0.8671875, -0.40844727, 0.26464844, 1.0058594, 1.0351562, -3.3671875, 0.2548828, -1.8486328, -1.1308594, -1.7333984, -0.6201172, -1.2587891, -0.5151367, 1.8691406, 2.8535156, -0.9267578, 0.7260742, -0.08099365, 0.8017578, 1.5683594, -1.7802734, -1.6269531, 0.4584961, 1.9912109, -0.11230469, -1.3457031, -0.101989746, -0.13061523, -1.4492188, -0.9121094, -1.8642578, -0.29541016, -0.51708984, 2.4179688, 0.21362305, -1.4482422, -3.6171875, 1.890625, 0.32958984, -0.61279297, -1.8105469, -1.6699219, 1.2304688, 0.19506836, 1.0830078, -0.17895508, 3.1367188, -2.3457031, 1.8320312, -0.10601807, 2.3769531, -1.2607422, -0.7949219, -0.8222656, -1.2080078, 1.2714844, -2.6914062, -0.08166504, -1.6855469, 2.0664062, -0.6357422, 1.9755859, 2.4335938, -0.10522461, -0.23950195, 1.6142578, -0.6147461, 1.0566406, -0.1628418, 1.6679688, -6.574392e-05, 0.9267578, 2.1738281, -0.6196289, 1.1943359, -0.34985352, -1.578125, -1.2568359, -1.6240234, 1.4599609, 3.2480469, -0.46362305, 1.3339844, 1.796875, 0.6777344, -2.4960938, -0.42285156, -2.9394531, -0.12902832, -1.328125, -1.4267578, -1.4960938, 1.0869141, -0.22094727, -1.8798828, 0.12335205, -1.453125, 0.19165039, -0.6455078, -0.45410156, 0.55566406, 0.5839844, -0.9082031, -0.42041016, -1.1171875, 0.7583008, -0.9770508, 2.0234375, -0.19750977, 0.5214844, 1.6835938, -0.55371094, 1.5957031, 2.6015625, -1.2480469, -0.57910156, -1.1738281, -3.2832031, 0.07507324, -0.54345703, -2.0253906, 1.8769531, -1.0644531, 3.1640625, -2.5703125, 0.7753906, 1.5273438, -0.7607422, 1.5458984, 0.53222656, 0.86621094, 0.84277344, -0.54785156, 0.8803711, 0.8286133, 1.3710938, 0.48583984, -1.8115234, -2.3222656, 1.0078125, -1.4326172, 1.6582031, -2.1679688, -0.4326172, 2.4082031, 1.1601562, -0.5761719, 0.84277344, 1.359375, 0.8222656, 2.9609375, -1.1494141, 0.08215332, -0.19519043, 2.1914062, 0.5810547, 1.6494141, -0.5517578, 0.35302734, -1.6142578, -0.9863281, -2.2148438, -0.95996094, 0.6591797, -0.29101562, 0.51708984, -1.7207031, -0.14404297, 0.82470703, 1.5712891, -0.69189453, -1.78125, 1.0839844, -0.8227539, 0.55371094, 1.1708984, 2.1210938, -2.7675781, 2.6347656, -0.31518555, -0.6113281, 1.8769531, -0.8510742, 2.1386719, 0.21081543, 0.7475586, 0.2541504, -0.05419922, -1.3544922, -1.2070312, 0.7265625, -3.0097656, 0.5751953, 1.6523438, -0.070129395, -0.49438477, 1.3994141, 0.44384766, 0.9555664, 0.54541016, 2.6796875, 1.7636719, -0.2866211, -0.55566406, -1.7333984, -0.8251953, 2.7773438, -0.19055176, -3.25, -0.6142578, 1.265625, -0.21350098, 2.0078125, 0.50097656, -0.86816406, 1.0498047, 0.9375, 1.1933594, 1.0927734, -1.2666016, 3, 2.5605469, -1.5947266, -0.97753906, -0.3828125, 0.7915039, -0.9267578, -0.49072266, -0.1784668, 0.8232422, -1.3134766, -2.1757812, -0.6230469, -2.5644531, -1.7011719, -0.054534912, 1.6894531, -0.29541016, 0.9550781, 3.3730469, -0.9501953, -0.6098633, -1.2509766, 0.4716797, -1.9052734, -1.3378906, 0.9536133, 0.30126953, 2.6035156, -0.20947266, -1.3164062, 1.2587891, 0.3334961, 2.4453125, -0.1784668, -1.7753906, 0.78808594, -3.1894531, -2.1777344, 0.7290039, -1.1132812, -0.4724121, -0.8017578, -0.3347168, -0.9638672, -1.1630859, -0.2919922, -0.6459961, 2.96875, -0.43017578, 0.20385742, 0.04244995, 0.3894043, -0.38964844, -1.6494141, -0.45996094, -0.6328125, 1.8701172, 0.3864746, -1.40625, -2.4667969, -0.08679199, 0.74121094, 1.1152344, 0.091796875, 1.0996094, 2.4609375, 1.9199219, 1.9375, -1.3398438, 0.97314453, -2.2792969, 1.3691406, 1.2333984, -1.3232422, 0.7314453, 0.42407227, -0.49243164, -0.87841797, -0.44140625, 2.3867188, -1.5585938, -0.53515625, 2.3457031, -0.61376953, 3.1855469, 1.8896484, 1.453125, -0.02142334, 3.2832031, 1.1552734, -2.8574219, 1.1894531, -1.4013672, -0.13598633, 1.3710938, -2.6699219, -0.55078125, -0.9760742, 2.4492188, 0.7050781, -0.59277344, 1.9355469, -0.14782715, 1.2919922, -0.7836914, -0.5810547, -2.0996094, 1.1171875, -0.5488281, -1.0371094, -2.8242188, -2.6425781, 0.8120117, 3.0742188, -0.72216797, -0.98779297, -2.0703125, -1.7861328, -2.2382812, -0.48266602, 1.1416016, 2.7597656, 1.2128906, 0.015266418, 0.5786133, 0.58984375, 0.075927734, 0.7348633, 0.5048828, 3.0390625, -1.5117188, 1.1279297, 1.5400391, -1.2773438, 1.4570312, -0.1583252, -0.89160156, -0.17138672, -1.0917969, 0.7963867, -1.2138672, 1.3710938, -2.1269531, 1.2001953, -4.9179688, -1.0322266, -0.8173828, 0.32763672, 0.70654297, -0.47094727, -2.0761719, 1.2177734, 0.34472656, 0.51953125, -1.7119141, -1.8974609, 0.28857422, -0.65527344, 0.25878906, -1.9287109, -0.9921875, -0.2244873, 1.5722656, -0.9423828, -0.25048828, -1.0400391, 0.24035645, 2.2988281, 2.9785156, 2.8554688, 1.9619141, 0.6245117, 1.1484375, 1.8759766, 1.0556641, -1.3193359, 0.37158203, 2.1777344, 0.46728516, 1.4960938, -0.71875, -0.79785156, 1.3642578, 1.4697266, 0.59472656, 1.4150391, 0.78564453, -2.9648438, 0.27514648, 1.0380859, 0.89941406, -1.4990234, 1.5830078, -0.70410156, -0.98779297, 0.9458008, -0.34643555, -1.7080078, 1.6923828, -0.90283203, 0.8173828, -1.7080078, -0.20129395, -1.0224609, -1.1513672, -1.4482422, 0.5292969, -0.7519531, 1.7294922, 1.7275391, 1.0371094, -0.60253906, 2.1582031, 0.20129395, -0.72314453, -1.4726562, 0.21032715, 0.5229492, 0.13354492, 0.64501953, -0.90283203, -1.1181641, -0.5732422, 0.38793945, -1.7207031, -1.7207031, -0.08355713, 0.40576172, 0.37231445, 1.3525391, -3.96875, 1.3662109, 1.1464844, 2.4863281, -1.9951172, -1.0458984, -1.2001953, -2.6230469, -0.7890625, -1.2119141, 2.5175781, 1.5253906, 0.6958008, -0.5961914, -0.96191406, 0.9448242, 0.6040039, 0.8208008, 0.60253906, 0.8208008, 1.8291016, -0.5214844, 3.1601562, -0.77001953, 0.027862549, 0.46533203, -0.9042969, 1.2070312, 0.6201172, -0.20910645, -1.7041016, 0.88378906, -0.30200195, -0.3178711, -1.046875, -0.37231445, -1.6396484, 0.49169922, -0.81933594, 1.0009766, 0.5151367, -1.0380859, 1.4482422, 1.7753906, 1.9824219, -1.2060547, -1.6474609, 0.6928711, -0.16918945, 0.01977539, -1.7304688, -1.6757812, 2.0898438, -1.84375, 1.0947266, -0.73535156, 2.4726562, -2.0351562, -1.6425781, -0.1303711, 0.4555664, -0.020889282, 0.06222534, -0.60009766, -0.9628906, 2.0605469, 1.703125, 0.9716797, -0.33251953, 1.0009766, 1.4599609, -3.3554688, 1.5224609, -1.9414062, 0.71191406, -1.2587891, -0.01159668, -0.09057617, 2.0390625, 1.0878906, 0.3310547, -1.4130859, -2.1699219, -0.33813477, -1.2568359, 1.3320312, 0.37451172, -1.9023438, -1.1494141, 0.74902344, 1.1171875, 2.1953125, 0.19946289, -2.2851562, -1.1943359, 1.7167969, -1.2050781, 0.3166504, 0.08300781, -1.7167969, -0.24389648, 2.6523438, 2.2167969, 1.5644531, -0.5161133, 2.015625, -0.9321289, -0.96533203, 1.9638672, -1.1308594, 0.17553711, -0.7861328, -0.56152344, -0.022354126, -0.11584473, -2.6464844, -1.6445312, -0.7036133]}, "B004Q068YC": {"id": "B004Q068YC", "original": "Brand: Weber\nName: Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n4 Stainless steel burners\n48,800 BTU-per-hour input\n10,600 BTU-per-hour input sear burner\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n", "embedding": [-1.4560547, 0.9658203, 1.7480469, 0.25927734, -0.18945312, 0.1340332, 0.023773193, -2.2128906, 0.6347656, 1.6894531, 2.7558594, -0.72802734, -0.5253906, -3.7050781, -0.023483276, -0.07873535, 3.4296875, 0.020004272, -0.011268616, 1.6337891, 0.37280273, 1.0205078, 3.6464844, -2.2773438, 0.9458008, 0.55810547, 2.5585938, -4.6367188, -2.5820312, -2.7441406, 0.69433594, 0.50683594, 0.45898438, 1.8583984, -4.2304688, -2.1992188, -2.8828125, 0.9746094, -2.9257812, 0.8652344, 0.6479492, -2.7050781, 0.036193848, -1.4511719, -2.2285156, 0.859375, 1.7949219, 0.14587402, -3.2695312, -0.6538086, 3.296875, 1.9882812, -1.2724609, 1.4453125, -0.98535156, 1.6171875, 1.7871094, -1.9335938, 0.36254883, 0.047302246, 2.5917969, -0.20141602, -1.46875, -1.7802734, -1.8466797, -0.76708984, -0.46948242, 0.45947266, 0.80908203, 1.3828125, 4.0351562, -2.2910156, -2.1601562, 2.0449219, -0.32543945, -1.3896484, -2.5175781, 2.703125, -0.44384766, -0.52246094, -1.9521484, 2.1289062, 2.4277344, -1.8632812, -0.14526367, 1.5039062, -0.17480469, -3.2363281, 1.46875, 0.5463867, -1.0996094, 1.3857422, -2.1132812, -2.0625, 2.3085938, -0.44091797, 0.84033203, 1.1132812, -0.3798828, 0.49047852, -1.2783203, 2.7636719, 0.42773438, -0.2487793, -2.2148438, -2.7851562, 1.8769531, -0.16223145, -3.5839844, -1.3789062, -1.2890625, 0.9169922, 0.44091797, 1.5810547, 1.2197266, 0.72998047, 1.4375, 2.6757812, 0.83740234, 1.1123047, 2.3320312, -1.5947266, 0.48120117, -0.8671875, -1.3818359, 0.41552734, -2.1738281, 2.1738281, 2.6875, -1.9355469, -0.46240234, -1.5869141, 4.2460938, 1.4365234, 0.6567383, -0.9663086, -1.7226562, -1.1884766, -3.390625, -0.068359375, -2.125, 1.5361328, 0.07611084, -1.4873047, -3.8417969, 1.0009766, -0.11352539, -0.122802734, 0.06854248, -1.1972656, -0.75146484, -1.8691406, 0.51708984, -3.5410156, 2.1152344, -0.6748047, -0.18859863, 0.86279297, 3.8808594, 2.8710938, 2.421875, -0.56933594, -3.0390625, -0.8642578, 1.6865234, -1.9677734, 0.96875, 0.65625, 0.046844482, 1.7392578, -0.39111328, -0.87158203, -0.5498047, 1.1181641, 1.6455078, -1.2275391, 0.32763672, 2.7011719, 0.3762207, -0.54003906, 1.4296875, -2.6523438, 1.0869141, -0.9941406, -0.75390625, -0.1965332, 2.90625, 1.0039062, 2.1953125, -1.3515625, 0.26586914, -1.0429688, 1.8095703, -1.6162109, 2.28125, -0.15588379, -2.96875, -2.0722656, 1.7128906, -0.8881836, -0.038848877, -0.36132812, 1.2919922, 0.08508301, -0.3334961, -2.6210938, -0.81689453, -2.9394531, -0.69433594, 1.1835938, 1.7646484, -0.69921875, 0.45336914, -1.0117188, 0.4206543, -0.14733887, 1.8828125, 0.82421875, -0.4951172, 3.9140625, -0.34326172, -0.40039062, 1.6884766, 1.2646484, 0.5864258, 0.8720703, 0.3022461, 1.1416016, -2.0136719, -2.0078125, 4.7421875, -0.75097656, -0.35107422, 1.3916016, 0.29418945, 3.0117188, 1.3984375, -1.2792969, 0.7792969, 1.2431641, 0.49365234, -0.7260742, -3.2167969, -1.1806641, -1.3955078, -1.5439453, -1.1777344, 1.1640625, 1.9394531, 1.3310547, 0.13867188, 0.090026855, 0.9873047, 1.4169922, -0.3972168, 1.0039062, -1.8818359, 0.9628906, -0.54589844, -2.8828125, 1.5332031, 0.27441406, -0.6748047, 0.7163086, 1.4931641, -2.3007812, 1.2558594, 1.2197266, -1.9365234, -2.4570312, -0.21472168, 0.39819336, 1.4169922, -3.3066406, 2.359375, 0.6923828, -1.5205078, 4.2226562, 1.5527344, 0.46948242, 0.8642578, -1.9550781, 2.2578125, -2.8554688, -0.66552734, 1.1933594, 2.1269531, -0.8486328, -1.0976562, -0.5620117, 4.4609375, -0.99316406, -2.1054688, 1.4404297, -1.3193359, 0.7182617, 2.75, 1.1210938, -0.98535156, 0.44091797, 2.9179688, -0.118652344, 0.5366211, 2.6484375, -0.62353516, -1.9648438, 0.52734375, -2.2695312, 0.296875, 1.0800781, -1.6240234, -0.83691406, -1.4609375, 1.5683594, -2.4628906, -0.16003418, 3.2871094, -2.9023438, 0.23339844, -0.30517578, 1.4736328, -0.29125977, -1.8212891, 0.95410156, -0.89453125, -0.73779297, -0.41064453, -0.1920166, -0.8574219, 0.14172363, -0.03375244, -0.9086914, -0.88427734, -3.1660156, -2.2695312, -0.91748047, -2.3964844, -2.3125, 0.22241211, -0.7348633, -0.15234375, 1.1113281, -3.5253906, -1.8632812, -0.44750977, -1.328125, -0.109191895, -0.3515625, -0.42578125, 0.39501953, 0.55126953, 1.6816406, -1.2890625, -1.9941406, -0.29125977, -0.0513916, 0.23742676, -0.5913086, 0.21044922, 0.10449219, -0.8310547, 1.0986328, -0.7729492, 1.6542969, 2.0742188, -1.7880859, -0.5019531, -3.0800781, 0.1932373, -3.3847656, 1.4511719, 0.07171631, 1.9365234, -3.1191406, -2.2597656, -0.4182129, 0.15185547, 3.84375, 0.9506836, 3.1445312, -0.65722656, 0.73876953, 0.34399414, -2.0039062, -1.4404297, 1.0332031, 1.7841797, -1.7421875, 1.5957031, -0.69140625, 0.04751587, -1.4277344, 0.25610352, -0.34692383, -0.47265625, -1.3066406, -0.25805664, -1.3447266, 0.8486328, -0.8232422, 1.0917969, -0.9404297, -1.3779297, -3.1484375, -1.5146484, -0.8911133, -1.2128906, -0.85546875, 0.86621094, -1.0585938, 1.6777344, 1.7675781, -0.44018555, 0.66015625, -0.9428711, -2.9667969, 3.1757812, 0.33618164, -2.3867188, 2.3613281, -2.5371094, -1.2226562, -2.2714844, 0.515625, 2.0078125, -0.3720703, 2.0234375, 1.78125, 0.9707031, 0.265625, -1.3955078, 0.22814941, -2.3046875, 0.3408203, 2.9160156, -2.3613281, -1.0097656, 0.50390625, 0.13232422, -2.8671875, 0.3959961, 3.2109375, 2.6445312, 2.7011719, 1.6523438, 0.3334961, 1.9560547, -1.9511719, 0.5830078, 0.95751953, 0.13171387, -0.1616211, -0.9921875, 2.2871094, -0.9863281, 2.4648438, 1.3125, 2.1777344, 3.4257812, 0.1928711, 0.5522461, 0.3869629, -0.7758789, 0.58984375, 1.6845703, -0.00021779537, 2.3632812, -0.7661133, -1.3740234, -2.15625, -0.07208252, -0.076416016, -0.2355957, -2.6152344, 0.81396484, -1.3945312, 0.54833984, 0.41015625, -0.7138672, 2.2851562, -0.9013672, -0.29541016, -0.45092773, 0.0024642944, 2.09375, -1.2470703, -0.061645508, -1.7724609, 0.007003784, -0.6503906, -2.3691406, 1.2265625, 3.2929688, -1.4648438, -1.0478516, -0.04208374, -1.6962891, 0.57910156, 2.5878906, -0.9345703, -0.09942627, 1.0380859, -2.6445312, 1.4580078, 2.1230469, 0.93896484, -1.2001953, -0.85595703, 0.7285156, -0.31689453, 0.39160156, 2.8183594, 0.057128906, -2.6542969, -0.5385742, -3.9003906, -1.3349609, 0.9980469, -1.7910156, -0.2253418, 2.8984375, 2.5214844, 0.33496094, -0.7709961, 2.0742188, -1.0898438, 0.5439453, 2.3808594, -3.7578125, 0.09490967, -4.5625, -3.5566406, 0.7685547, -2.65625, 0.57470703, -0.9506836, 1.2050781, -0.671875, 2.1992188, -0.53564453, -1.7089844, -0.9140625, -0.11279297, 0.3149414, -0.5419922, 1.1630859, -0.9091797, 0.40551758, -1.0566406, -3.1210938, -0.1932373, 0.7597656, 1.6787109, 0.2890625, -5.0976562, -0.066833496, -1.2236328, -0.8310547, -1.1601562, -1.1914062, 2.0898438, -0.5292969, 0.38549805, -3.0683594, 2.0839844, 1.1259766, -1.0224609, 0.9902344, 2.2070312, -0.53466797, -2.9433594, 1.2675781, 0.73876953, 3.0703125, -0.79248047, -1.8330078, -0.7314453, 0.28588867, 0.99121094, -1.4121094, 0.2298584, 0.9345703, -1.828125, 0.91748047, 2, 2.7558594, 0.7558594, 0.5180664, -3.0078125, -0.6411133, 0.8886719, -1.1513672, -3.2773438, -1.4111328, 0.9121094, -2.0664062, -0.359375, -2.3925781, -0.2565918, 0.39941406, -1.3076172, -3.0449219, 2.828125, 4.1640625, 1.7236328, 1.9316406, -0.80615234, 1.6982422, -1.5585938, 1.3886719, -1.5273438, 2.6074219, -0.18395996, -1.4746094, 3.3613281, 1.2890625, -0.5048828, 0.37719727, 1.4707031, -1.5644531, -1.8486328, -2.1542969, 0.04309082, -1.6152344, 0.6123047, 0.640625, 0.06726074, 2.8242188, 0.64453125, -2.0214844, 0.21228027, 0.64501953, -2.703125, 0.14099121, 0.17553711, -0.16345215, 0.116760254, 2.7246094, 2.4277344, 1.2158203, 0.09362793, -1.1445312, 2.59375, -0.026626587, 1.4003906, 2.0214844, 1.5107422, -0.5546875, -0.74560547, 1.5126953, 2.9121094, 1.4765625, 3.1582031, 0.9296875, -2.6894531, 1.3886719, 0.73828125, -2.4589844, 2.3066406, 1.3691406, -0.8676758, 1.6787109, 0.83984375, -4.1914062, -0.18432617, 2.0039062, -1.4931641, 1.8330078, -0.8120117, -0.9770508, 2.8769531, -0.52783203, 0.060455322, 0.41259766, -0.11981201, 1.7910156, 1.4628906, 0.23535156, -1.7753906, 1.9785156, 1.1347656, -1.6533203, -0.87939453, 2.9414062, -0.019760132, -0.57714844, -1.3847656, 0.20141602, 0.16625977, 0.25341797, 3.6484375, 0.88378906, 1.8789062, 0.046783447, 1.8623047, -1.3701172, -0.55078125, -1.9384766, 3.1699219, -1.5517578, 0.2775879, 0.94628906, -3.6191406, -0.03955078, -2.2929688, -1.2294922, -1.2753906, 1.1699219, 1.6005859, 0.35107422, 0.74560547, 0.103759766, -1.8212891, -3.9492188, 0.60791016, -0.24804688, 0.92041016, 0.5488281, 1.4355469, -2.0976562, 0.37890625, 1.5068359, 0.16625977, -1.7919922, 0.23571777, -0.65625, -0.017501831, -0.07324219, 0.6044922, -1.4462891, -0.10888672, 0.9892578, 2.0625, 1.3603516, -3.3164062, 0.05621338, -0.47216797, -0.41723633, 0.03265381, 1.9296875, 2.0058594, -1.4648438, 0.49804688, 0.4165039, -1.4941406, 2.828125, -2.765625, -1.5283203, 1.9375, -2.4179688, 1.734375, -0.15405273, -0.4416504, 0.35839844, -1.7958984, 0.77978516, 1.4589844, 0.8828125, -2.4902344, -0.6171875, -0.41064453, -2.3378906, 1.0244141, -2.0507812, 2.4472656, 1.7998047, -1.4365234, -1.4941406, -1.1142578, -2.0078125, 1.71875, -3.0273438, -2.0898438, -2.1289062, 1.6787109, -0.23608398, 1.3632812, -0.6977539, 2.0722656, -1.3505859, -1.5039062, 1.0986328, -0.85253906, 3.8476562, 2.6875, -0.63134766, -0.5288086, -1.5449219, -0.90234375, 1.6337891, 1.2802734, -2.0996094, 0.3786621, 0.19189453, 1.5654297, -1.2070312, 0.8046875, 0.9892578, 0.32226562, 0.12854004, 0.78027344, 2.9101562, -0.19274902, 1.4189453, 1.3212891, 0.007369995, -1.1103516, 4.390625, 2.1289062, -1.8300781, 1.8320312, -1.4765625, 1.0644531, 0.54785156, -0.44799805, -1.0410156, -0.84375, -1.0390625, -2.4160156, -1.875, -2.2714844, 1.4033203, 0.5473633, -2.2460938, -2.5488281, 1.15625, -0.36010742, 2.2207031, 0.76953125, 1.3857422, -1.3125, 1.3769531, 0.68310547, 1.0908203, 1.6787109, -2.6191406, 1.4746094, 2.328125, -0.703125, -0.3527832, 0.7285156, 1.28125, 4.2148438, -0.21398926, 1.2226562, 3.4042969, 1.6689453, 2.4179688, 0.53515625, 1.3691406, 1.0634766, -0.8959961, -0.9873047, 0.5888672, 0.1607666, 0.40478516, -0.43188477, 1.5273438, -1.6630859, 0.11590576, 0.5058594, -0.81396484, 0.2800293, -2.203125, 0.17773438, 1.4921875, 2.3359375, -2.9277344, -1.3173828, -1.2988281, 0.42089844, -0.6376953, -1.3203125, 1.3125, -0.28857422, 1.9863281, -1.6796875, -0.08660889, 1.8007812, -4.796875, 1.7900391, -0.7480469, -2.1035156, -1.2558594, -0.3671875, 0.6894531, 0.23828125, -1.265625, 0.5913086, 4.8164062, -0.3017578, 1.2744141, -4.0429688, -0.28027344, 0.50634766, 3.8398438, 0.41723633, -0.18554688, 0.5258789, -0.6098633, -4.6992188, -3.984375, 2.9082031, 1.9560547, 0.63964844, 2.5898438, -1.1425781, 3.015625, 0.32543945, 0.22473145, -2.1796875, 0.078125, -0.40600586, -1.1533203, -1.8613281, 1.2255859, -2.15625, -0.18762207, -0.0054969788, -0.2854004, 0.50097656, 1.4785156, 1.9404297, 0.8964844, 1.5664062, 1.3876953, 0.26489258, -0.08062744, 2.9960938, 0.44335938, -1.4765625, -2.1113281, 0.7558594, 1.6015625, -0.1665039, 0.1595459, -0.84033203, -0.9223633, -2.0429688, -0.3256836, 0.33374023, -1.4501953, -0.8647461, -0.030441284, 0.9741211, -3.4785156, -1.0556641, 2.9023438, 2.6074219, 1.1025391, 2.0820312, 2.1835938, -2.2167969, 0.14733887, -0.18310547, -0.24182129, -0.055664062, 0.3088379, 1.9667969, 0.7714844, -0.68359375, 1.4609375, 1.0214844, 1.4667969, -0.40527344, 0.75683594, -1.0957031, -1.6982422, -0.98291016, 1.7265625, -0.30981445, -0.70214844, 3.0957031, -0.30004883, -1.0605469, 1.4550781, 0.15893555, 0.23828125, -0.61621094, -2.8457031, -0.68359375, 0.15515137, -1.28125, 0.6767578, 2.5839844, 0.7167969, 0.47729492, -2.3554688, -2.4257812, -0.79052734, -2.59375, 1.2128906, -2.1855469, -2.0625, 0.35864258, 1.2148438, 2.1171875, 0.22668457, -0.8227539, -1.2558594, -0.6928711, 0.057159424, -1.2412109, 0.95166016, -0.7583008, -0.3149414, 0.17333984, 2.3261719, 2.1132812, 1.0986328, 0.95996094, 3.3105469, -0.23352051, -1.9365234, -0.39916992, 0.19921875, -0.6328125, -0.41503906, -1.2978516, 2.3691406, -0.8222656, -2.1796875, -0.18151855, -1.9130859]}, "B000EI759M": {"id": "B000EI759M", "original": "Brand: Texsport\nName: Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree\nDescription: Texsport Propane, Appliance Gas Hose 14229TEX\nFeatures: Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree\nSmooth fittings for easy bulk tank attachment\nNote: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY\n", "embedding": [-0.9482422, 2.0371094, 0.6533203, -1.3242188, -1.640625, -1.1171875, 0.04928589, -1.7939453, 2.4921875, -0.47607422, -0.41333008, 0.13134766, 0.19763184, -4.5742188, 2.7949219, -1.2246094, -0.10961914, 1.4990234, 0.4296875, 2.4140625, 0.3725586, -0.17736816, 1.21875, -1.9101562, 1.1894531, -1.8310547, 3.5449219, 0.9941406, -0.07922363, 0.8925781, 0.8925781, 2.1875, -0.13122559, 2.2636719, -1.8847656, -1.4765625, -0.28710938, -0.6533203, -2.8574219, 0.06262207, -3.1464844, -0.21228027, 2.96875, 0.53271484, -2.2480469, 0.65185547, 1.0166016, 1.5888672, 0.3852539, -1.7236328, 0.42456055, 0.40722656, -1.3154297, 0.7338867, -0.3461914, -0.18640137, -0.22229004, -2.8789062, 1.6513672, 1.1660156, 1.25, -2.0039062, 0.059265137, 1.53125, 0.035888672, 1.0175781, 0.5107422, -1.0634766, -1.0957031, 1.9970703, 1.2441406, 2.0039062, 0.029296875, -1.8242188, -1.9589844, 1.3183594, -4.0546875, -0.18383789, 1.4638672, -0.77734375, -0.29101562, 1.2675781, 1.9482422, -0.42773438, 0.7792969, -2.5332031, -2.7871094, 0.08996582, -0.03994751, 2.1445312, -3.7421875, 3.3007812, -1.9287109, -3.3535156, 0.98828125, -0.38916016, 0.5419922, 3.1171875, 1.8779297, 0.29467773, 1.1708984, -2.0820312, 0.062286377, 2.6054688, -1.1757812, -0.02986145, -0.39575195, 0.02760315, -0.3605957, 0.47216797, -0.32226562, 0.42163086, 2.2929688, -0.12438965, -0.36157227, -3.3964844, -0.16149902, -1.8662109, 3.28125, 0.38085938, 2.8007812, 0.29077148, 0.30249023, 1.4707031, 2.5625, 2.5136719, -0.44384766, 0.18115234, 1.1035156, -0.5131836, 0.9580078, -1.1416016, -1.0576172, -0.56689453, 1.0078125, -2.1113281, 1.4228516, -1.5712891, -0.5341797, -0.45166016, -4.1914062, -1.1533203, 1.8183594, 0.88183594, -2.1230469, 1.4580078, -2.6152344, 0.18981934, 2.8574219, -1.7060547, 0.54052734, -1.7080078, -0.20825195, -2.5976562, 3.0566406, 0.765625, 1.2529297, -0.95996094, 1.6591797, 1.6914062, 0.93066406, -0.6972656, -1.7363281, 1.1962891, -0.6464844, -6.4882812, 1.1523438, -1.1318359, -1.2236328, 0.6503906, 0.3479004, -3.0019531, -0.65185547, -0.22705078, -0.45996094, -1.5214844, 1.65625, 1.3369141, 1.1025391, -0.5805664, -1.8720703, 0.079711914, -0.3840332, -2.0820312, 1.3388672, 0.33276367, -1.4873047, -1.1308594, 0.45117188, -1.8554688, -0.08648682, 1.59375, -2.609375, 0.36547852, 0.91796875, -3.4550781, -2.1953125, 0.3256836, 1.9199219, 1.6757812, -2.2382812, 0.23718262, 0.49145508, 0.16833496, -1.7910156, -0.82666016, 1.8144531, -2.296875, -1.2099609, 2.4023438, -1.2431641, 0.23706055, 1.1113281, -0.42456055, 0.4880371, -2.703125, 4.1835938, 3.3378906, 3.5273438, -0.012420654, -0.6723633, 1.6162109, 0.69921875, -0.4921875, 1.1767578, 0.8208008, -1.640625, 1.0253906, -2.1484375, -0.74658203, 1.2626953, 1.1513672, -0.17272949, -0.5644531, 0.042297363, 1.8789062, 0.8183594, -0.7294922, 0.64697266, 4.0742188, 1.2509766, -1.1591797, -0.7451172, -0.11273193, 0.98876953, 0.7182617, 0.17785645, 1.3046875, -0.17993164, 0.94873047, 3.0117188, -0.6845703, 2.4980469, 0.9746094, 0.98291016, 0.33129883, 1.8974609, 2.8222656, -1.0576172, -0.7368164, -0.5595703, 0.02130127, -0.15905762, 0.87060547, 0.4501953, -0.15844727, 2.1972656, -3.4921875, -0.6772461, -1.4433594, -2.2167969, 2.9277344, 0.19421387, -1.0322266, 2.4882812, 0.063964844, -3.046875, 0.1083374, -1.0800781, 1.4785156, 2.7773438, 0.2709961, 1.9228516, -3.7246094, 1.3769531, 0.5341797, 1.9677734, -0.63671875, -1.6054688, 0.5410156, 3.9941406, -1.6708984, -0.21826172, 0.58935547, 2.5703125, 1.6611328, 0.09857178, 4.203125, -1.8554688, -2.4277344, 1.0527344, 1.3740234, -3.109375, 2.328125, 3.4980469, 1.9863281, 1.1201172, -1.2392578, 0.05886841, 1.0732422, -1.0019531, 0.049072266, -0.98828125, 1.1953125, -1.3339844, -1.109375, 0.79785156, -0.49853516, -0.5644531, 2.3144531, -0.98535156, 1.6259766, 2.0078125, -2.0195312, -0.6459961, 1.3525391, -1.2636719, 0.7373047, 1.8183594, 1.5791016, 0.41674805, -2.5585938, -0.39501953, -2.0917969, -2.6074219, 0.7207031, 0.93896484, -0.765625, 1.8037109, -3.1171875, -2.4335938, -1.4189453, 0.08312988, 3.5, -0.7548828, -1.1494141, 0.10522461, 1.9658203, -0.22399902, -0.9453125, 2.2089844, 2.2363281, 0.41577148, -1.3701172, 0.30615234, 0.0041389465, -0.1184082, 0.9692383, -1.6464844, -0.17150879, 2.1972656, 1.7177734, -0.5644531, -1.109375, -0.6455078, -2.3574219, 0.5366211, -4.3242188, 0.82714844, 2.3398438, 1.9765625, 1.4335938, 0.57128906, 0.10821533, -1.2558594, -0.79052734, 0.026992798, 0.8828125, 0.50927734, 1.96875, -1.5566406, -2.390625, -0.024490356, -1.6386719, -1.3701172, 0.05441284, 0.53466797, -1.3203125, 1.2832031, -2.4980469, 0.13110352, -1.3808594, 0.10357666, 0.5654297, -1.859375, -0.3293457, -0.6098633, 1.5664062, -1.6025391, 0.7392578, -0.8378906, 0.5629883, 0.6015625, 0.007408142, 0.0692749, -2.078125, -0.2536621, -1.2626953, -0.0019226074, -2.2265625, 0.20043945, 1.6191406, 0.18823242, 0.70410156, 1.8535156, -1.5126953, -0.25219727, 2.9804688, 1.0126953, 0.2142334, -1.4804688, -1.4521484, -0.90185547, 0.61572266, 3.3339844, 1.0761719, 0.24389648, 1.1933594, 1.8818359, 1.984375, 1.3388672, -1.2539062, -1.5136719, 0.5205078, 1.5810547, -3.4804688, 1.0849609, -0.35961914, -0.13415527, -2.7480469, -0.021316528, 0.22924805, 0.07495117, 1.9042969, 1.3173828, -0.8305664, -0.0103302, 2.4785156, 1.8105469, -0.18115234, 0.67578125, 0.58496094, 0.9536133, -2.3847656, -0.39746094, 0.7319336, 1.3203125, 1.0898438, 0.6347656, -0.29345703, -0.41259766, 0.9682617, 1.1884766, -0.63427734, -0.0063972473, 1.5585938, 1.109375, 2.1425781, -1.3115234, -0.3310547, -0.5019531, 1.484375, -1.8310547, 0.85058594, 2.8398438, 0.64404297, -0.51953125, 1.3027344, -2.8515625, -0.7246094, -1.5644531, 0.20153809, 1.1738281, -0.27270508, 0.7680664, -1.75, 1.9902344, -2.3066406, 2.8203125, -0.71484375, -0.859375, -2.0449219, -1.4453125, -2.4414062, -2.0761719, -1.2763672, -1.7158203, 1.1464844, 2.8515625, 3.5566406, -1.2236328, 0.32885742, 0.30664062, 0.6040039, 2.8867188, -0.15942383, -1.3984375, -1.1708984, -0.8510742, 1.9648438, 0.33789062, 0.9794922, 0.11260986, -0.6821289, 0.25683594, -0.35498047, 0.5942383, 0.5004883, -1.2617188, 0.0017004013, 0.28442383, 0.089538574, 1.2509766, 0.33813477, 1.6982422, -0.21105957, -0.62939453, 1.2041016, -2.3183594, -0.98291016, -1.0283203, -4.6757812, 0.4975586, -1.1884766, 0.9326172, 2.4941406, -2.8125, 0.3935547, 1.8710938, 0.6801758, -1.3945312, -2.421875, -1.1533203, -0.3227539, -2.390625, -1.0800781, -0.11791992, -0.24291992, -1.4257812, -0.8330078, -1.4580078, -2.1777344, -0.90722656, -1.4101562, -0.48950195, 0.4831543, -1.3017578, 0.62158203, 0.32592773, 0.6074219, 1.4199219, -2.1464844, -0.2602539, -3.3769531, 2.046875, 2.3984375, -0.05078125, -1.6308594, 2.671875, 1.2753906, -1.4941406, 0.85546875, -1.4814453, 2.3945312, 0.17553711, -3.1933594, -1.7119141, -2.5703125, 0.70166016, -2.9863281, -1.8017578, -1.9199219, -0.047302246, 1.5166016, 1.2597656, 0.27368164, 1.4785156, 0.77197266, -2.9101562, 1.3466797, 3.0761719, -0.6904297, -0.11755371, -3.5390625, -1.6728516, -1.4863281, -0.05657959, -1.0917969, -1.9365234, -0.99658203, -0.4345703, -0.56591797, 0.5332031, 0.7709961, 0.5566406, -0.18383789, -1.0585938, -0.6230469, 0.10015869, 1.9960938, 0.3479004, -0.52197266, -0.8183594, -0.7792969, 1.6279297, 0.5854492, -0.08935547, -1.5253906, -0.21398926, 0.609375, 0.0619812, -0.4375, -0.14013672, -0.44311523, -0.34716797, 0.7080078, -1.9873047, 3.6347656, -1.3476562, 2.1035156, 0.27416992, -3, -2.171875, 2.4414062, 0.49438477, 3.0976562, 0.2722168, -0.8378906, 1.6220703, 2.4316406, 2.3164062, 1.7978516, 1.3203125, -1.5117188, 0.12866211, 1.4423828, -0.76464844, -0.06866455, -0.0134887695, -0.10571289, 0.0016784668, 2.8789062, 3.0253906, 0.58691406, -0.9067383, -1.1386719, 2.1542969, 0.8256836, -0.056884766, -1.1796875, -0.18945312, 1.8779297, -1.8515625, -2.1699219, 0.18603516, 1.59375, -0.44873047, 2.2539062, 0.27490234, -0.3803711, -0.7758789, -2.3828125, -0.6484375, 0.8330078, -0.62841797, 2.4628906, -0.83447266, 2.5917969, 0.82714844, 1.1689453, 0.47045898, -0.98095703, -0.17382812, -1.4023438, -1.1259766, 0.70458984, 0.9003906, -1.5097656, -4.7851562, 0.08996582, -0.12365723, 0.1697998, -0.35742188, 1.3291016, -1.3769531, -0.44726562, -0.0021076202, -1.0058594, 0.31079102, -2.7128906, 0.6035156, 3.1347656, 1.5673828, 0.061401367, -1.0878906, -2.2246094, -0.39892578, 1.0283203, 1.0117188, -0.4013672, 0.4831543, -1.5732422, -2.6894531, -4.7617188, -1.2841797, 0.4814453, 0.8652344, -0.6020508, -1.8291016, -0.9277344, 0.63623047, -1.8271484, -0.1083374, -1.9013672, -0.6191406, -0.43530273, 0.5371094, -2.2773438, 1.6962891, -0.11639404, 0.47338867, -0.70458984, -0.46166992, -0.07885742, -0.8925781, -2.671875, 1.3349609, -2.1132812, 0.5830078, -0.17041016, -0.8183594, 0.8251953, 3.2578125, 0.17163086, -1.4345703, 0.9838867, -1.7763672, -0.9091797, -0.18457031, -2.6152344, 1.171875, 0.13806152, 0.42773438, 0.93115234, 0.81591797, 2.2207031, 0.61083984, -0.6225586, 1.8935547, 0.9482422, 0.57373047, 1.5605469, 1.9365234, 0.8129883, 3.7480469, 3.7636719, 1.1972656, -1.6220703, -2.1328125, -1.3154297, -1.28125, -2.2988281, 0.55371094, 0.9370117, 1.4492188, -1.078125, -0.71191406, 2.1640625, -1.8144531, 0.5185547, -2.1308594, 1.234375, -1.5615234, 2.1933594, -3.0390625, -2.0644531, -4.5546875, -0.28979492, 1.6992188, 3.3867188, -1.7539062, 0.18859863, 0.4128418, -1.2841797, -0.084350586, -1.0751953, 2.3476562, 1.8085938, 2.2675781, -1.9589844, -2.5996094, -0.81689453, 0.2902832, -1.1503906, 0.49414062, -1.1552734, 0.609375, 0.13977051, 2.6269531, -1.8535156, -2.0625, 1.3115234, 0.018066406, -0.61279297, -3.0917969, 1.2744141, -3.03125, 2.3945312, 0.95996094, -0.4951172, -2.8417969, 0.2668457, 0.5625, -0.64208984, 0.84277344, 2.2832031, 0.37402344, -1.3076172, 0.4333496, -0.22924805, 0.109436035, -1.34375, -0.59814453, 1.5898438, 0.71191406, -0.20397949, 1.4199219, 0.4951172, 0.59472656, -0.06677246, -0.18395996, -1.2011719, 1.2089844, -0.17675781, 2.9277344, 3.8398438, -0.6040039, 1.9257812, 0.56884766, 1.0869141, 0.28442383, -2.0351562, 2.6835938, 2.4023438, -0.64941406, 0.5834961, 0.8354492, 0.68359375, 0.41088867, 0.1595459, -1.0136719, 2.8476562, -0.28759766, -1.1533203, -0.3154297, 0.5371094, -0.65771484, -3.3652344, 1.3710938, -4.2460938, -0.5654297, 0.47680664, 1.4121094, -1.6083984, 0.7416992, 0.012336731, -0.2578125, -1.7138672, 0.9082031, -1.1738281, -1.2490234, -2.0859375, -0.7548828, 1.0537109, 1.8115234, 0.7055664, 0.14086914, -0.14575195, -1.8974609, 1.8984375, 2.6308594, 1.6708984, 0.4350586, 0.6044922, -1.1640625, 0.32714844, 3.25, -1.1777344, 1.7470703, 2.1152344, -0.8417969, -4.1328125, 1.21875, 0.21447754, -1.2763672, 1.3984375, -2.2734375, 0.2866211, -1.9580078, 0.17175293, -2.7714844, -2.8222656, 2.0175781, 0.80126953, -0.9169922, 0.46704102, -0.0044403076, 2.8828125, 1.1181641, -0.22229004, -0.34472656, 1.1240234, 1.3525391, -1.2851562, 0.97802734, -2.2011719, 0.2232666, -0.27734375, 2.0507812, 0.36791992, -2.1171875, 1.8564453, 1.0283203, -0.1227417, 0.921875, -0.6503906, 0.11816406, 2.9023438, 0.9692383, -0.43774414, -2.0742188, -1.7460938, -1.4267578, 0.8730469, 0.99365234, 0.10974121, -0.53125, -0.21325684, 2.3710938, -1.2451172, 1.8486328, -0.40795898, -1.7275391, -0.047607422, 1.4199219, -0.6567383, 1.0761719, 1.2080078, 1.9492188, -2.75, 0.6455078, 0.29345703, 0.28320312, -1.734375, -1.2041016, -1.2294922, 1.3652344, -2.3652344, -2.0332031, 1.1533203, 0.6381836, 0.7167969, -2.4765625, -2.9433594, 2.5175781, 1.6035156, 0.17749023, -0.48876953, -1.7412109, -1.4462891, 0.3215332, -0.7080078, -2.5136719, 0.31274414, 3.0722656, 0.022201538, 1.0947266, -2.4550781, -0.9746094, -1.3291016, -0.30859375, -0.026290894, -1.0185547, 1.1113281, 2.0039062, 2.6328125, 2.015625, 0.8120117, -0.49121094, -0.87353516, 1.1513672, 0.9604492, -1.7177734, 1.9492188, 0.63427734, -1.1738281, 0.31323242, 2.1601562, 0.9868164, 0.45996094, 0.46240234, 1.9833984, -0.8881836, -0.80126953, -0.55078125, -0.7246094, 0.90722656, 0.17028809, 1.2714844, 0.2783203, 0.82958984, 0.0049743652, -2.4921875, -0.44067383]}, "B00BWAPOB2": {"id": "B00BWAPOB2", "original": "Brand: Formosa Covers\nName: Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75\" Long\nDescription: Full weather protection for BBQ Grill up to 75\" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75\" Lx26\"Dx48\"H\nFeatures: WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won't act on the metal and tarnish it.\nOUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come.\nMADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking.\nUNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High\nSERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.\n", "embedding": [0.17126465, 0.8833008, 2.5742188, -1.8916016, -1.6669922, -0.41967773, 0.08728027, -2.4277344, 1.0351562, 1.234375, -0.86279297, 0.08782959, 1.1679688, -4.6210938, 2.1367188, -1.3251953, 2.0488281, 3.6601562, 3.1601562, -1.1298828, 1.1533203, -0.19165039, 0.45288086, 0.19165039, 1.2421875, -1.4990234, 3.6054688, -1.6025391, -1.9667969, 0.1295166, 1.6386719, 1.5625, -1.0966797, 1.75, -2.0332031, -3.28125, -0.48706055, 0.8359375, 0.4091797, -1.0361328, -0.10559082, -2.5488281, 2.7441406, 2.2011719, -2.8574219, 1.9365234, -0.7832031, -0.4194336, -1.0595703, -2.1523438, 0.18579102, -0.4489746, 1.8759766, 0.7182617, -0.96728516, 0.50097656, -0.71240234, -1.4208984, -1.9824219, -0.4345703, 0.7807617, -0.47509766, -0.46264648, 2.8144531, 0.04522705, -1.0664062, -0.359375, -1.0839844, 0.1850586, 0.60253906, 2.0644531, -0.35205078, -1.7138672, 0.94433594, 2.1210938, 1.3554688, -1.8066406, 1.4150391, 2.8417969, -2.1015625, 0.3815918, 3.65625, 0.45654297, -1.3535156, -0.17077637, -1.0117188, -3.7226562, 0.3137207, 0.9707031, 0.421875, 0.71240234, 2.4804688, -1.5498047, -3.6347656, -0.1418457, -2.7949219, 2.8457031, 1.3554688, -0.2709961, 0.32470703, -1.5341797, 0.00053834915, -1.8564453, 1.2822266, -2.7460938, -2.7460938, 1.7822266, -2.3710938, 1.1738281, 0.09454346, -0.8515625, 0.4169922, -1.2597656, 1.5996094, 3.9042969, -0.26831055, -2.234375, 2.1269531, -0.16125488, 1.1669922, 2.3242188, 1.2158203, -0.31567383, -3.8515625, 1.9453125, 0.27441406, 0.37817383, 2.0957031, 3.4902344, -0.7573242, -0.10913086, -2.125, 0.31518555, 0.39648438, -0.78027344, -0.71191406, -1.0830078, -0.08502197, -3.9824219, 2.6074219, -2.5742188, -1.8369141, 0.5097656, -0.8251953, -1.3505859, 0.0635376, -0.6611328, 3.765625, -1.3486328, -3.5859375, 0.26367188, -2.3496094, 0.99121094, -0.83251953, -0.18688965, -2.3378906, 1.6054688, -3.6425781, 3.5097656, 1.9541016, 3.4921875, -2.4257812, 2.5039062, 0.81884766, 1.3173828, -4.0742188, -0.016281128, 0.66259766, 0.6328125, 1.3603516, -0.06011963, -0.7470703, 0.95996094, 0.8876953, 0.32739258, 0.043151855, -1.3808594, 1.1748047, 1.2597656, 0.21081543, 2.3046875, 0.36035156, -1.1435547, 1.1767578, -2.0410156, -0.9003906, -0.59521484, -1.0439453, -1.0634766, -0.42944336, -0.39794922, -0.3017578, -2.0703125, 0.23120117, -2.9511719, -1.1113281, 0.24182129, -0.13427734, -1.4638672, 0.06149292, -0.090148926, -0.6899414, -0.70410156, 0.42749023, -4.0820312, -1.1679688, -0.34472656, 1.0478516, 0.08660889, 0.23400879, 1.3183594, -2.4101562, 1.3994141, 1.2861328, -2.5097656, 0.4885254, 1.2763672, 1.0175781, 2.0332031, 0.7944336, -3.8300781, 0.7163086, 0.4777832, 4.2265625, -0.4729004, 0.9111328, 0.9038086, 0.8203125, -1.0527344, -1.7226562, 1.4052734, 1.3789062, -1.5429688, -0.13708496, -0.22399902, -0.26049805, 0.80371094, -0.90625, -0.4716797, -0.80029297, 0.6982422, -2.2617188, -4.3398438, -0.96533203, 2.3847656, 1.9755859, -0.70410156, 1.8212891, 1.8095703, -1.4677734, -0.3876953, 2.2402344, 2.203125, -0.20373535, 1.4882812, 1.0664062, 0.45117188, 0.050567627, -2.1484375, -2.1738281, -0.5439453, -0.13574219, -0.027862549, 1.3427734, 0.37963867, -1.4931641, 1.4785156, -0.038085938, -1.3359375, -1.1875, 0.72314453, -0.5097656, 1.1103516, -0.3515625, 0.7504883, -0.33984375, 1.6064453, -0.9707031, 0.8149414, -0.32617188, 0.61572266, 1.9677734, 1.5742188, -1.6494141, -0.0038757324, -1.0332031, 0.03933716, -2.0820312, -0.9370117, 1.3515625, 1.8994141, 1.2734375, -2.2714844, 4.0429688, 1.0791016, -0.6508789, 0.66064453, -1.0341797, -2.0839844, 0.2211914, 0.9638672, 2.1445312, -0.9501953, 0.13891602, -1.7539062, -1.4052734, 0.88623047, -2.7558594, -1.6943359, 1.0585938, 0.8383789, 0.1048584, 1.0625, 0.84765625, -1.7919922, -1.8759766, 1.7597656, -1.5898438, 0.76660156, 0.013198853, 0.61572266, -0.43139648, -2.4277344, -2.1679688, 0.12298584, 0.4831543, -2.8066406, 1.7421875, 0.3425293, -0.97265625, -0.9741211, -2.4589844, 1.3994141, -0.077819824, -0.7973633, -3.0078125, -2.796875, 0.2553711, -0.42456055, -0.8642578, 1.1230469, -0.49414062, -3.3554688, -0.10308838, 0.5600586, -3.1074219, -0.090148926, -1.5917969, -0.7441406, 2.5722656, -0.4555664, -1.7685547, 0.26611328, -2.9238281, 0.5239258, -1.53125, -1.3574219, -0.65527344, 0.28930664, 0.27148438, 0.117370605, 0.56396484, 1.8193359, 1.1767578, 0.9609375, 1.0058594, -0.056793213, -2.7285156, 0.3256836, -2.0859375, -0.47827148, -2.3320312, 0.1652832, -3.9863281, -0.93896484, 0.28955078, -1.4921875, 2.8320312, 0.46850586, 1.1621094, -0.65234375, -1.765625, 1.8916016, 1.0751953, -1.4287109, -0.2409668, 2.3964844, -1.0585938, -0.6611328, -2.8945312, -2.09375, -1.1904297, 0.69873047, 0.068603516, -0.9682617, 1.5439453, 1.2246094, -2.5878906, -2.4589844, -0.17004395, 2.0703125, -0.5332031, 0.1842041, 0.2130127, -2.0332031, -2.3867188, -0.3605957, -2.2402344, 2.5175781, -1.8847656, 0.41088867, 1.71875, -0.5883789, 3.2070312, -1.6005859, -2.6835938, -0.29638672, 1.3056641, 1.8125, 0.23120117, 0.52197266, -1.1669922, 0.06549072, -0.43603516, 1.8300781, 2.3242188, 0.37353516, 1.5458984, 0.63720703, 0.9057617, -0.04751587, 0.015541077, -0.049316406, 2.9980469, 2.2675781, -0.70703125, -0.13903809, 0.17126465, -0.055480957, -3.5136719, 1.2441406, 1.5625, 0.40649414, 1.2080078, 1.5048828, 0.1385498, 2.0214844, 0.25073242, 5.1328125, -0.9350586, 2.8535156, -0.8876953, -0.92529297, 2.7578125, -0.15148926, 2.1210938, 1.6386719, 1.0683594, 1.2431641, 0.5756836, -1.7236328, -0.6899414, 1.0966797, 2.4707031, -0.1451416, -1.8603516, 3.1621094, -0.75878906, -0.3479004, 1.6064453, -1.8779297, 0.77001953, -1.7363281, 0.3305664, 3.0859375, -1.1972656, 0.62597656, 0.6533203, -2.1972656, -0.7573242, -3.6875, 0.1940918, -0.66748047, -2.1054688, 1.1826172, -4.0585938, -0.8857422, -0.8886719, 4.703125, 1.4951172, -1.4326172, -0.83203125, 1.1962891, -0.32202148, -1.3349609, 0.18945312, 2.0351562, -1.8896484, 3.1464844, 3.1855469, -1.2587891, 2.4980469, -3.453125, 2.1210938, 0.41503906, -1.3417969, -1.6298828, 0.037719727, -0.28295898, -1.0244141, 1.3642578, 0.5253906, 0.98779297, -1.0410156, 0.7480469, -2.1035156, 0.15893555, 2.1386719, -1.5273438, 0.056915283, 1.0380859, 0.4338379, 0.088012695, -0.32202148, 1.4052734, 0.5620117, -2.3671875, 0.72509766, -1.2783203, -0.921875, 0.27539062, -3.3515625, -2.3574219, -0.10510254, -0.2631836, 3.4707031, 1.2470703, 1.0878906, 2.2949219, -1.5771484, -0.5600586, 0.76904297, -1.9111328, -1.8261719, -0.31054688, -0.82470703, 1.5332031, 0.111572266, -1.8193359, -2.125, -2.2089844, -2.7207031, 0.6816406, 0.953125, 0.6850586, -0.0025405884, -3.3769531, 0.18322754, -0.29614258, -0.72265625, -0.3088379, 0.005214691, -0.17858887, 1.3046875, 0.67089844, 0.6308594, 0.14160156, 0.7866211, 0.88183594, -1.1181641, -1.2167969, 0.44677734, 1.9365234, 1.6328125, -0.68408203, -1.9716797, 1.5048828, 1.4853516, 2.1933594, -0.71191406, -1.9912109, 0.9926758, -0.70996094, 1.3574219, -0.38842773, 2.1523438, -0.26660156, 0.10760498, -3.03125, 0.74121094, -0.58496094, -1.7285156, -0.45703125, -1.0009766, 0.8725586, 3.8574219, -1.0634766, -1.2705078, 2.1386719, -0.3034668, 2.3300781, -0.8720703, 3.2265625, 1.0976562, 1.9433594, 2.9082031, -2.1289062, -0.63671875, -0.27734375, -1.3476562, -0.29003906, 0.5288086, -1.0439453, 0.74072266, 0.4711914, 1.0996094, -1.5488281, -2.203125, -1.3828125, -1.3242188, -0.47436523, -1.7236328, 1.8994141, 1.7529297, 0.67285156, 0.8041992, -0.7558594, 2.3261719, -1.4707031, -0.16723633, 1.3037109, -2.2792969, 0.0124435425, 2.3125, 1.3017578, -1.9082031, 1.9589844, -0.046173096, -0.9121094, -1.7412109, -0.7338867, -0.24206543, 1.8222656, -1.90625, -0.3774414, 0.33496094, -0.053649902, 0.18237305, -2.3261719, 2.1054688, 3.65625, -1.2294922, -0.64746094, 1.0625, -0.2668457, 0.87890625, 1.5400391, -0.15612793, 0.62353516, -0.51220703, -0.53027344, 1.0400391, 0.3942871, -2.9863281, 0.6357422, 0.69921875, -1.1435547, 0.7373047, -1.296875, -0.84375, 3.0917969, -2.4160156, -0.43676758, 0.27075195, -1.5869141, -1.171875, -0.3618164, 1.2597656, -1.8193359, -1.1455078, 3.7207031, 0.01651001, -3.2792969, 1.0625, -0.05206299, -0.10058594, -1.6972656, -1.6230469, -3.4960938, -2.1113281, 2.0292969, 2.2363281, 0.14770508, 0.98779297, 0.93603516, -1.5800781, 1.8408203, -0.48901367, 1.0947266, -0.54785156, 0.2878418, 4.2773438, -4.4765625, -1.9667969, -0.74072266, 1.4453125, 2.6835938, 0.16796875, 1.1064453, 0.38916016, 0.84472656, 0.1821289, -3.5703125, -3.0878906, -0.8339844, 0.80029297, -1.7412109, -0.4033203, -1.0908203, -0.03036499, 0.019241333, 0.109069824, 0.17651367, -0.28979492, -1.4228516, -0.95410156, -3.1542969, -2.9042969, -0.76660156, -0.63720703, 1.1386719, 0.9555664, 2.7382812, -0.4777832, -3.0488281, 0.6621094, 1.2285156, -3.3007812, -0.38500977, 1.8779297, -0.43823242, 1.9150391, 0.14794922, 0.7475586, -0.41870117, 2.1621094, 1.2626953, -0.083862305, 0.86279297, -1.1044922, -1.0205078, 0.47729492, -0.07965088, 2.75, -2.9316406, 0.78125, 1.1513672, -1.4150391, 2.1171875, 1.6591797, 0.0970459, 0.8227539, 1.5087891, 1.0576172, 0.8417969, 0.7734375, -1.4384766, 0.24694824, -2.1582031, -3.0488281, -0.0501709, -1.8388672, -3.5585938, -1.3388672, 0.90234375, 3.59375, 0.8388672, 2.4414062, 1.0683594, 2.4902344, -1.359375, -0.019012451, -0.60595703, 1.5029297, 0.5078125, -2.2832031, -1.0439453, -1.4453125, 1.2421875, 2.2871094, 0.99121094, -0.89941406, 0.47705078, -2.6464844, -0.92041016, 1.3359375, -1.4101562, 0.9555664, 0.6948242, 0.5800781, 1.0488281, 0.94970703, -0.49023438, 1.9169922, -0.12347412, 2.1660156, -1.2695312, 2.4355469, 0.18566895, -2.9765625, 0.4711914, -1.2763672, 0.6230469, 0.48364258, -1.6640625, 0.35913086, -0.96191406, 0.005722046, -1.296875, 0.07562256, -3.4707031, 0.328125, -0.31347656, 0.9760742, -0.9794922, 2.3808594, 0.421875, 1.9570312, 1.5478516, -0.4489746, -1.1503906, -0.36108398, -2.8457031, 0.16174316, 1.6826172, -1.8007812, -0.22607422, -0.34838867, -0.7919922, -1.5546875, 0.059051514, -0.5839844, 1.4785156, 0.4831543, 1.6396484, 2.5878906, 1.1806641, 1.0009766, -0.24841309, 2.6738281, -1.9394531, -1.5605469, 0.33691406, 3.5644531, 1.3505859, 2.328125, -0.50146484, 0.9902344, 1.9394531, -0.3395996, 0.49682617, 1.2285156, 1.3417969, -3.7617188, 0.7973633, 1.6201172, 0.47729492, 0.68652344, 1.2832031, -2.0371094, -0.78125, -0.13842773, -0.2939453, 3.3300781, -1.28125, 1.1787109, -0.4699707, 1.9628906, 1.2050781, -1.2871094, 0.77734375, 2.7128906, -2.4707031, -1.2763672, 1.3144531, 1.984375, 2.4628906, -0.77685547, 1.7353516, 2.2207031, 2.7480469, 1.2949219, -0.30444336, 0.31469727, -0.56591797, 0.9921875, 0.2668457, -1.5546875, -3.7128906, -0.33447266, -0.2265625, 0.58496094, 0.37768555, 0.2565918, 0.39233398, 2.7871094, -3.625, 0.30981445, 1.1357422, 2.2773438, 0.08868408, -0.8803711, -0.1928711, -2.1777344, -0.8911133, 1.6230469, -1.0595703, 2.6445312, -0.41137695, -0.89160156, 2.1582031, 1.6416016, 1.2451172, 1.4511719, 1.0605469, 0.36743164, 0.76220703, 0.640625, 1.7080078, 2.1816406, -0.47924805, 1.3330078, -0.09320068, 0.7578125, 1.3085938, 2.6367188, 0.98583984, 0.6323242, 0.94873047, 0.6723633, -1.8779297, -0.97265625, 0.49902344, -1.0166016, 1.8027344, 0.49291992, -1.0009766, 0.7036133, 1.5507812, 0.81396484, 2.5820312, 0.3088379, -2.4628906, 2.2167969, 0.6748047, -1.7783203, -0.21972656, 1.1542969, 0.47875977, 0.19055176, 0.88720703, -1.1572266, 0.47729492, 0.3713379, -0.47485352, -0.1977539, -0.19604492, 0.4489746, -0.12231445, -0.013130188, -1.53125, -1.4111328, 0.6455078, -1.5048828, -0.3630371, 0.7192383, 2.0859375, -1.7226562, -0.5986328, -1.6416016, 0.4104004, -1.5419922, -2.1992188, 1.1591797, 3.7519531, 3.5097656, -1.8652344, -0.5756836, -3.7050781, -1.0742188, 0.22424316, 2.1503906, -0.1850586, -0.29858398, 0.5083008, -0.07476807, 2.2421875, -0.3930664, -2.9003906, -0.41430664, 0.69433594, 0.6323242, -1.3212891, 0.22668457, 0.25610352, -1.6425781, 0.60595703, 1.9677734, 2.1308594, -0.63378906, 2.0019531, 2.1933594, -0.15307617, -2.4003906, 1.3662109, 0.7714844, 2.3710938, -0.014839172, 1.7236328, 0.72216797, -1.9853516, -0.0015134811, -0.96875, -1.3017578]}, "B00N5CQ252": {"id": "B00N5CQ252", "original": "Brand: Peterson Real Fyre\nName: Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote\nDescription: Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.\nFeatures: \n", "embedding": [-2.9355469, 1.0605469, 0.33789062, -0.8203125, 1.5664062, 0.8754883, -1.5654297, -0.5732422, -0.7714844, 1.6611328, 1.9492188, 3.5585938, 1.1757812, -2.4609375, 1.078125, -0.84277344, -0.94677734, 1.3740234, 0.61376953, 0.14025879, 1.4179688, 3.3964844, 0.27978516, 0.8642578, -0.057617188, 0.16906738, 3.1035156, -2.1132812, 1.0605469, -0.47729492, 1.4726562, 0.7553711, -1.1083984, 0.92626953, -3.3125, -1.3769531, -1.2978516, 1.5253906, -2.4785156, -0.4819336, -2.0761719, -0.86621094, 2.5019531, 0.3996582, -2.3574219, -1.8623047, 1.9257812, 0.50634766, -1.8447266, 1.0537109, 0.8208008, 1.6005859, -1.9296875, -0.049957275, 0.52197266, 2.046875, 2.2734375, -2.8535156, 2.1777344, 1.3681641, 1.2441406, 0.7104492, -1.7324219, 0.09020996, -2.1875, 0.84375, 3.4199219, -0.23962402, -1.1064453, 0.04510498, 2.7578125, 1.8681641, 2.2050781, 1.3183594, -0.37939453, 1.4453125, -3.7675781, 1.3056641, 1.2529297, -0.890625, -0.8701172, 0.48632812, 0.2142334, -0.24475098, 0.93310547, -0.43798828, -2.8828125, -0.039642334, 1.8789062, 1.5517578, 0.4453125, 0.38598633, -1.0585938, -4.5078125, 1.7050781, -0.7832031, -0.75683594, -0.31811523, -0.22851562, 1.4746094, 0.73583984, 2.6171875, -1.2568359, -0.37402344, -0.9243164, -0.0005340576, 0.9746094, 3.8261719, -0.92578125, 0.26171875, -1.8662109, -0.5708008, 1.5566406, 0.67089844, -0.33081055, -0.13183594, -0.05871582, -2.1210938, 1.0976562, -2.5878906, 2.609375, -0.4453125, -0.018066406, 1.921875, 1.4677734, 0.22265625, -1.2587891, 3.1953125, 0.5678711, -1.2734375, 0.4946289, -1.7099609, 2.0878906, -1.4775391, -3.0839844, -0.36376953, -1.6132812, -1.1845703, -2.9921875, -2.1738281, 0.7348633, 3.2675781, 0.29077148, 0.7504883, -1.9960938, 0.7607422, -2.2285156, 0.9213867, 2.0976562, -1.1328125, 1.4511719, -1.09375, 0.29418945, -3.5859375, 0.109436035, 0.5292969, 1.1240234, -1.0673828, 0.3803711, -0.022094727, 0.47998047, -1.4013672, -1.8017578, 1.4882812, -1.5810547, -0.4909668, 2.2753906, -0.84765625, -1.6962891, 2.1894531, 0.82666016, 1.1748047, -0.4104004, -0.89404297, -0.56152344, -2.7402344, 1.0712891, 2.828125, 0.97265625, 0.30908203, -1.4570312, -0.73535156, 0.24279785, -0.4946289, 0.5595703, 0.32666016, 1.0888672, 0.49731445, -0.46875, -1.3779297, -1.4980469, 0.6220703, -0.7495117, 2.7480469, -1.8183594, -1.15625, -1.5791016, -0.83154297, 2.3574219, -2.1914062, -1.1904297, 1.3066406, -0.0736084, 0.35766602, -2.1621094, 0.31445312, -0.22265625, -2.1953125, 3.625, 1.0673828, 0.57177734, -1.2695312, 1.0800781, -0.8154297, 0.13012695, -3.5546875, 1.4892578, -1.5722656, -0.39819336, 0.12060547, 0.62353516, 0.45507812, 3.4941406, 1.1015625, -0.14221191, 1.4033203, 0.29296875, 1.2890625, -1.90625, -3.7246094, 0.42700195, 0.49780273, -1.2265625, -0.68603516, 0.12878418, 4.9804688, 0.14794922, -1.4472656, -0.64746094, 1.0683594, -0.5966797, -0.80371094, -1.9658203, 1.1279297, -0.20471191, -0.6748047, -1.2792969, 0.19445801, 1.0341797, 0.8286133, 0.35302734, -0.4765625, 1.4052734, 2.2929688, -0.67089844, -0.63964844, 0.25830078, 0.107543945, -0.45776367, -0.7871094, 1.2441406, 1.4169922, 0.48632812, 1.2617188, -1.5791016, -0.8027344, 2.3515625, -0.5366211, 1.0751953, -0.6689453, 0.5493164, 0.17358398, 1.7714844, 2.1152344, 1.7763672, -0.47338867, 0.39257812, 3.4199219, -0.30664062, 2.5117188, 1.390625, -1.7548828, 4.0703125, -1.3525391, 0.11773682, 0.1953125, 1.2236328, -0.59716797, 1.4833984, -0.9355469, 4.953125, 0.66064453, -2.875, 0.7910156, 0.28222656, 0.3190918, 1.3203125, 0.5527344, -1.6035156, -1.3710938, 2.2050781, 1.6015625, -0.36938477, 0.62841797, -0.27539062, 0.6713867, 0.6220703, -0.78222656, 1.1845703, -0.23937988, -0.009407043, -0.43408203, -3.1582031, -0.4074707, -2.5175781, -0.4741211, 3.109375, -2.6347656, 1.3525391, 0.115356445, 0.32348633, 2.8378906, -0.66796875, -1.6152344, -0.78759766, -0.35009766, -2.5273438, 1.4375, -1.0742188, -1.1064453, -0.5317383, -2.9472656, -1.0566406, -0.5649414, -0.40527344, 0.8364258, -0.5600586, -2.0195312, 0.4963379, 1.0029297, -1.8808594, 1.1689453, -1.6435547, 0.33422852, -0.0680542, 0.46191406, 0.7988281, -0.81689453, 0.20495605, 3.4960938, 1.8066406, 5.2148438, -2.2949219, -2.890625, -1.71875, 0.044708252, -1.8056641, 1.0234375, -0.48583984, -0.49145508, 0.97265625, -0.3959961, 0.40283203, -1.9003906, -0.36767578, -1.8935547, 0.59228516, -2.3261719, 0.29589844, 0.91552734, 2.796875, 0.91503906, 0.6660156, -1.2744141, -0.81591797, 0.12792969, -0.7949219, 1.3447266, -0.68359375, 0.8496094, 0.3227539, -2.2109375, -2.6679688, -2.8691406, -2.4628906, -0.22680664, -0.62890625, -1.3496094, -2.0332031, -2.2128906, 0.7163086, 0.27978516, 1.1083984, -0.1303711, 0.8261719, -1.65625, -1.2832031, 0.21813965, -1.1513672, 0.3955078, -2.3183594, -2.0761719, 0.59716797, 0.63720703, 0.6640625, -0.22399902, -3.6621094, -0.15991211, 0.20739746, 3.0507812, 0.8461914, -0.1048584, 1.1767578, 0.012527466, 0.59375, -3.0371094, 1.15625, 1.5234375, -1.6054688, -0.19030762, -2.0097656, -1.2617188, -1.7060547, 0.6303711, 3.3457031, 3.6933594, 0.24707031, 1.4589844, 0.016799927, 1.1494141, 3.3457031, 0.6855469, 0.49951172, -1.4189453, 2.2949219, -2.9160156, -0.5463867, 0.24291992, 1.4697266, -0.6347656, -1.1533203, 2.1347656, -0.44262695, 2.8515625, -0.75683594, 0.86279297, -1.9833984, -1.1220703, 0.7260742, 0.87060547, -0.85839844, -2.9804688, -0.0026779175, 0.23620605, 2.7578125, 0.98535156, 1.5664062, 1.8095703, 0.95214844, 0.1854248, 0.7553711, 1.3134766, -0.20336914, -0.17553711, 0.6323242, 0.9863281, -1.2919922, 0.6088867, 0.13513184, -1.40625, -2.8300781, 0.48413086, -1.9345703, 1.5244141, 2.5605469, 0.6225586, 0.52734375, 0.4086914, 0.99658203, -0.91064453, 0.9213867, 2.1738281, 0.2602539, 1.0888672, 2.3261719, -0.77001953, -1.4560547, -1.3691406, 2.3027344, 0.0037193298, -0.43652344, 0.9291992, 2.0585938, -3.7324219, -2.2207031, 2.1074219, -1.09375, -1.0058594, 2.2421875, 0.17138672, -0.20251465, 0.26098633, -2.71875, -0.21716309, 1.9980469, -0.10638428, -0.22485352, -1.7998047, 1.4638672, -0.4404297, 1.7382812, -0.30517578, -0.036468506, -0.96728516, 1.5898438, -1.6816406, -1.1103516, -1.5195312, -1.2832031, 0.84277344, 4.875, -0.50927734, -1.0205078, -0.6044922, 3.6699219, 0.89404297, -0.3552246, 3.2636719, -0.93847656, -1.3193359, -1.0693359, -3.640625, 1.4941406, -1.3007812, -0.76953125, 1.6923828, -0.17004395, 0.074157715, 3.0292969, -1.0332031, -3.015625, -1.4140625, 0.6713867, 1.1367188, -2.5097656, -3.1132812, -0.19177246, 0.3137207, -1.4355469, -1.296875, -1.0439453, 0.2578125, 0.65966797, 0.4189453, -2.9042969, 0.080078125, -2.0253906, -0.68603516, -0.6875, -0.37182617, 3.6542969, -1.359375, 0.95751953, -1.9199219, 1.8408203, 1.2333984, -0.4855957, 1.8603516, 2.609375, 1.4580078, 0.83447266, -0.19726562, -0.32226562, 2.9453125, 0.8691406, -1.2392578, -4.203125, 0.6586914, -0.61279297, -2.8945312, -0.8432617, -0.62597656, -1.6806641, 1.0849609, 2.2363281, 0.61083984, 0.13659668, -1.0341797, -1.1220703, -0.4477539, -2.0253906, -0.7207031, 1.3945312, -1.96875, 0.4963379, -0.8647461, -0.6748047, -0.05899048, 1.0722656, -0.0031700134, -1.3193359, -0.67822266, 4.3789062, 0.00015568733, 1.0654297, 1.4873047, 0.7470703, -2.4472656, -0.08013916, -0.49365234, -0.22180176, 1.2167969, 1.7695312, -0.58935547, 0.51220703, -1.0771484, -1.4003906, -0.048950195, 1.90625, -0.66748047, 1.0087891, 0.1772461, -2.03125, -1.3642578, -0.60791016, 1.7177734, -0.6479492, 2.4570312, -1.9257812, -0.10101318, -0.9511719, 1.6738281, -1.6699219, 0.6220703, -0.10437012, 0.5024414, -0.040893555, 1.1376953, -0.70410156, 0.80908203, 1.9746094, 0.6015625, 0.4741211, 1.3330078, 0.103271484, -1.6474609, -2.1523438, -1.0302734, 0.78466797, 1.1005859, 0.61279297, -0.38305664, 3.4511719, 0.13293457, -1.8710938, 2.1445312, 2.2539062, -1.7011719, -0.44091797, 1.4375, 1.1123047, -1.3769531, -0.038208008, -3.7363281, -0.46826172, 2.5722656, -1.4306641, -2.1230469, -0.27661133, -2.1484375, -1.2548828, -1.3857422, -3.2773438, 0.59765625, -3.4746094, 1.4960938, -0.703125, -1.0488281, -2.7675781, 0.90527344, 1.5449219, -1.8535156, -1.4384766, 1.8857422, -1.0361328, -0.65234375, -0.38500977, 0.3334961, -1.1904297, 0.113220215, 1.3105469, -0.17016602, 0.96484375, 0.17504883, 0.83447266, -1.2128906, -1.5498047, -1.2333984, 1.1533203, -1.8261719, -0.36889648, 2.2871094, 0.2770996, 2.1347656, 0.578125, -0.52490234, -0.9711914, 2.3496094, 1.1269531, 0.36523438, 0.9863281, -1.5458984, -3.2539062, -1.9960938, -1.6591797, 2.0859375, -1.1777344, -0.77197266, 0.017044067, -1.6318359, 1.6630859, -0.5029297, -0.6933594, -1.875, -1.1083984, -1.3896484, -0.6669922, -2.0039062, 0.7080078, 0.8154297, -2.3105469, 2.4355469, -1.9326172, 0.20605469, 0.85498047, -0.8725586, 1.9853516, 0.17504883, 1.2109375, -0.107543945, 0.703125, 1.0683594, 2.2871094, 1.9912109, -2.1230469, 0.10845947, -0.5078125, 1.2929688, 2.1464844, -2.3085938, 2.7089844, -0.17871094, 0.5654297, 0.0045700073, 1.6787109, 1.0234375, -1.8505859, 0.82128906, -0.26171875, -1.3701172, -1.7890625, -1.453125, 2.4941406, -2.1542969, -0.5776367, 1.5058594, -0.4165039, -1.9980469, -1.9599609, -2.375, -0.115234375, -2.0800781, -0.49682617, 0.2758789, 1.4580078, 0.07098389, -1.2841797, 1.5449219, 0.092041016, -0.6958008, -1.3554688, 0.20812988, -2.2519531, 3.2871094, -0.036956787, -2.0644531, -2.8300781, -1.9765625, 0.22546387, 1.5966797, 0.45141602, 0.2175293, -1.2587891, -1.3544922, -1.4970703, 0.7739258, 1.9433594, 1.8583984, 1.0576172, 0.22888184, -0.040100098, 1.1113281, 0.734375, 1.5810547, 1.0976562, 0.7504883, -0.13269043, 1.3095703, 3.8300781, -3.3007812, 0.5864258, -1.4169922, 0.97558594, -0.07531738, 0.9394531, 1.2392578, -1.7470703, -2.2792969, -0.5595703, -0.19873047, -0.0037078857, 1.5302734, 2.2636719, 1.7324219, -0.7675781, 1.0019531, 0.60791016, 1.8876953, 0.4099121, 2.03125, -1.7421875, -1.8642578, -0.73828125, 0.15246582, 0.96191406, -2.2988281, 0.9003906, 2.5234375, 0.7319336, -1.0458984, 0.7807617, 1.359375, 2.3242188, 0.070739746, 2.6621094, 3.4023438, 2.2402344, 3.5214844, 0.15026855, 0.6269531, 1.5791016, 0.018600464, 0.092285156, 0.38720703, 0.9682617, -0.5551758, -1.0439453, 2.0058594, -0.55908203, 0.49047852, -0.9819336, 0.38183594, -0.32958984, -3.6875, 0.9194336, 0.4099121, 0.13098145, -1.5253906, 0.52246094, -1.0537109, -1.0058594, -1.3564453, -2.515625, 1.3154297, 0.5024414, -2.4335938, -0.578125, -0.11480713, 1.6503906, -3.6289062, 0.58154297, 1.1367188, -2.0917969, 0.73876953, 2.0097656, -0.030197144, 0.72802734, 0.8041992, 1.9707031, 1.1689453, 1.5419922, -0.119018555, -1.7001953, -0.85839844, 0.31640625, 1.2636719, -1.6240234, -0.5078125, 0.096191406, -0.52783203, -3.2207031, -4.5234375, 2.0566406, -1.4423828, 1.7255859, 1.7597656, -2.2265625, 2.4277344, -0.23364258, 0.53271484, -2.6875, -1.0146484, 1.5566406, 0.40576172, -2.421875, 0.4243164, 0.13830566, -0.81347656, -0.22644043, 0.4645996, 2.2929688, -0.14013672, 0.97558594, 0.010215759, 1.8945312, 0.11578369, -0.9663086, -1.9580078, 1.5048828, 0.88964844, -0.82470703, 0.48901367, -1.4384766, 2.4375, -0.4724121, -1.9873047, 0.5366211, -1.6279297, 0.2668457, -0.74609375, 0.0074882507, -0.5600586, -2.7558594, -0.3347168, 2.1054688, 1.2998047, -0.7260742, 1.1523438, 1.7929688, -3.2304688, -0.72314453, 1.4550781, -0.90625, 0.6245117, 0.9223633, 0.43896484, -0.011833191, -2.359375, 2.7578125, -1.5820312, -3.1523438, 2.3574219, 1.3320312, -0.40161133, -1.3564453, 0.5390625, -0.671875, -0.015510559, 0.6611328, 2.2871094, -0.048583984, -2.4941406, -0.6772461, -1.6865234, 1.3789062, 4.3554688, -0.4465332, 0.52197266, -0.11364746, -2.2304688, -0.25878906, 1.8623047, 0.10662842, 2.4902344, 2.9765625, 1.6523438, 1.3378906, -4.0234375, -0.9301758, -2.4941406, -1.2167969, 1.0527344, -0.2524414, -0.9970703, 0.3178711, -0.44628906, 0.34326172, 3.5800781, -1.3144531, 1.7617188, -1.6474609, 0.064453125, 0.27001953, -0.7294922, 2.3515625, 2.8574219, -0.1986084, 3.0800781, 1.5878906, 0.4025879, 1.6806641, 2.6679688, 0.54589844, -0.89990234, 0.5288086, -1.6708984, 1.5605469, 0.32836914, -1.8515625, -0.13708496, 0.40063477, -0.06604004, -1.2841797, -3.7285156]}, "B07QT8FLPW": {"id": "B07QT8FLPW", "original": "Brand: Miaowoof\nName: Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

          The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

          Make Grilling, Baking, Cooking Easier:
          Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
          This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
          It will not retain or transfer tastes or odors between uses.

          Application:
          Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
          Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
          Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

          Tips for Maintaining:
          Store mats flat or rolled upin storage for small space. Don\u2019t fold it.

          Warning:
          Do not let grease accumulate due to risk of grease fire.
          Use mats at low-medium heat settings (300\u00b0F - 400\u00b0F).
          To avoid scratching, only use wood, plastic or silicone utensils.
          Do not use sharp stainless steel or metal tools to avoid scratching.
          Don\u2019t use scratch pad or abrasive brush while cleaning mats.

          Package Included:
          6 * Solid Grill Mats
          \nFeatures: 1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid\uff0c like pizza,squid,beef,eggs....\n2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F.\n3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill\n5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.\n", "embedding": [1.2763672, 0.4206543, 1.8417969, -0.5185547, 1.1279297, 0.73828125, 0.89746094, -0.97216797, -0.78125, 2.8535156, -0.9038086, -0.038146973, 0.44384766, -2.7714844, 1.2285156, -1.4052734, 0.00050354004, 1.5058594, 2.6621094, 0.5307617, 0.3876953, -0.15283203, -0.5019531, -1.765625, 1.0898438, 0.921875, 4.3867188, -0.014862061, 0.5444336, -1.0693359, 1.0058594, 2.9296875, 1.1455078, 0.97802734, -3.6328125, -1.4609375, -0.8251953, 3.4550781, -0.61376953, 0.28466797, -1.5761719, -2.4511719, 0.56640625, 0.91552734, -2.9863281, 0.49804688, 0.10461426, 2.75, -0.37695312, -5.0039062, 2.0117188, 0.7636719, 1.4121094, 1.09375, -2.3496094, 1.7949219, -0.55908203, -1.7421875, 0.7866211, 0.16308594, 0.56103516, -0.7441406, -0.6279297, 0.37231445, 0.015426636, -1.4052734, 0.14477539, -1.5419922, 1.953125, -1.8310547, 1.7304688, 0.05038452, -1.5273438, -0.32739258, -0.88134766, -0.42895508, -0.7651367, -1.3105469, -0.5097656, -1.9501953, -0.69384766, 1.7529297, -0.42236328, -1.7724609, -0.21618652, -1.1240234, -2.0957031, 0.12817383, 1.9042969, 0.7368164, 0.14074707, 3.4765625, -2.9023438, -4.515625, 0.1850586, -3.09375, 1.3349609, 0.23840332, -2.7363281, 1.6875, -1.9863281, -0.2890625, -0.8798828, 1.2099609, -4.3359375, -3.3007812, 2.2871094, 0.07757568, 0.81591797, 0.14941406, -0.39892578, 0.49780273, -0.32763672, 0.8310547, 1.046875, 1.2265625, 1.578125, 0.41210938, 2.6875, 1.8271484, 3.9003906, 1.3564453, -0.16381836, -3.6386719, -0.23400879, -0.14538574, 0.546875, 1.6181641, 2.7519531, -2.5, -0.49658203, -1.3095703, -0.043304443, 0.47875977, -2.4375, -0.8696289, -0.65283203, -0.8432617, -1.1054688, 1.0664062, 0.30688477, -0.9135742, 0.2133789, -1.0068359, -3.0664062, -0.7792969, -2.4824219, 3.6777344, -1.8925781, -0.8857422, 0.5986328, -1.2607422, -0.3010254, -0.8413086, 0.94433594, -0.0072288513, 1.125, -0.06173706, 1.6591797, 0.9897461, 0.77001953, -1.7871094, -0.39794922, -0.32006836, 1.0683594, -2.3164062, -1.4208984, 2.1894531, 0.29614258, 2.4628906, 1.0644531, -1.5185547, 2.2011719, -0.13513184, 0.35473633, 0.15527344, 0.10473633, 2.7929688, -0.69189453, -2.4550781, 1.3408203, -3.0097656, 0.38354492, 2.7324219, 0.38916016, 1.5507812, 1.1015625, -0.16931152, 0.5073242, -1.2392578, -0.60498047, 2.921875, 1.0205078, 0.8666992, -1.6367188, -1.6992188, 0.40673828, -1.3388672, 0.84814453, -0.58935547, -0.5180664, -0.17370605, -1.8261719, -0.2006836, -2.2285156, -2.6757812, -2.2441406, 2.7558594, 2.6191406, -0.06866455, 0.95654297, -2.1679688, 2.1894531, 2.1933594, -1.8691406, -0.7895508, -1.3095703, -0.17114258, 0.8027344, 1.1738281, -1.1123047, -0.43432617, 0.42138672, 4.2070312, -1.8173828, 1.3779297, -0.3564453, 1.8007812, -0.4411621, -2.1796875, 1.3623047, 0.47192383, -0.70751953, -0.46972656, -1.3095703, 1.3759766, 1.8623047, -2.1230469, -0.5864258, -0.94384766, -1.2675781, -1.1513672, -2.2148438, -1.5576172, -0.85791016, -0.5805664, -0.68408203, 2.3769531, 1.0332031, -1.8134766, -1.3359375, 3.8691406, 1.2080078, -0.71435547, -0.10882568, 0.60498047, -0.45581055, -0.8652344, -2.5546875, -0.83203125, -0.26489258, 0.15551758, -0.74560547, 1.4765625, 1.9082031, -1.0146484, 1.9902344, -0.5761719, -2.8203125, -1.4599609, 2.1484375, -1.4746094, -0.6777344, -2.0527344, 0.88671875, 1.4550781, -1.5087891, 1.2900391, 0.69140625, -0.5253906, -0.52246094, 3.9472656, 0.23937988, -1.6044922, -2.3320312, 0.53759766, -2.2675781, -2.0585938, 0.82421875, 0.44702148, 2.5332031, 1.7773438, -2.4003906, 3.3886719, -0.7001953, 0.76660156, 1.9082031, -0.2944336, -1.3037109, 1.0410156, 0.17163086, 3.8007812, -0.98535156, 0.75439453, -1.7050781, -0.4584961, 1.3183594, -2.4765625, -0.71240234, 0.8105469, 0.71777344, 0.6582031, 1.6660156, 0.80566406, -2.390625, -1.3554688, 1.8222656, -1.9101562, 1.1054688, -1.4199219, -0.31201172, -0.07824707, -1.0664062, -2.5859375, 0.11895752, 2.4257812, 0.061798096, -0.32958984, 1.1455078, -1.3798828, 0.14648438, -0.52246094, 1.6923828, -0.9291992, -1.0322266, -2.6640625, -1.1923828, -0.7026367, 0.5571289, 0.5307617, 0.63183594, 1.2841797, -1.3310547, -0.6567383, -1.7744141, -2.6855469, -2.40625, -0.7583008, 0.35839844, 1.4267578, -0.92333984, 0.31933594, 0.2578125, -5.25, -0.5371094, 1.3886719, -0.06652832, 0.83496094, -2.7988281, 1.4150391, 0.14904785, 1.7402344, 1.2822266, 0.45507812, 0.73779297, 1.8652344, -2.3632812, -2.5058594, 0.91064453, -1.3115234, 0.60498047, -0.60791016, 0.9951172, -2.2070312, -0.5332031, 0.062561035, 0.8432617, 4.3007812, 0.5595703, 2.1601562, 0.40795898, -1.7724609, 1.1445312, 0.66064453, -1.2324219, -3.2285156, 1.2988281, -1.5087891, -0.04348755, -2.1484375, -0.72021484, -0.79345703, 0.33374023, 0.5102539, 3.1621094, 0.29882812, 3.1582031, -3.2265625, 0.6953125, 0.9189453, 1.5869141, -0.14245605, 0.5083008, -0.40307617, -0.7426758, -1.6972656, -1.3222656, 0.6635742, 1.5283203, -0.96777344, 0.1809082, 0.49291992, 0.18664551, 0.23706055, 1.0732422, -1.2373047, 0.74560547, -2.53125, -0.7285156, 0.028579712, -0.1673584, -0.6953125, -1.9208984, 0.36645508, 2.8261719, -0.29296875, 0.1665039, 0.51953125, 0.059417725, 2.7382812, 1.0429688, 0.09289551, 0.07354736, 1.6220703, 1.0693359, -0.7558594, -2.7851562, 1.7412109, 0.16259766, -2.75, 1, 1.7333984, 1.5146484, -0.0044555664, 0.022216797, -0.08135986, 1.1728516, -0.2861328, 3.4492188, -0.57128906, -0.8022461, -0.12927246, 0.009147644, 0.27001953, 0.7661133, 2.4453125, 1.5029297, 2.2480469, 0.9838867, 1.3876953, -0.6870117, -2.1660156, -0.117126465, 1.3212891, 0.36987305, -2.7714844, 2.6308594, -0.34033203, 0.75927734, 3.3984375, -1.265625, 0.6201172, -2.6191406, -1.1289062, 2.0097656, -1.5058594, -1.1728516, -2.6660156, -0.5498047, 0.2631836, -2.1171875, 0.2467041, -1.8408203, -1.9746094, 1.0322266, -2.3808594, -3.7578125, 2.171875, 3.4746094, -0.43310547, -1.2158203, -1.5849609, 3.0410156, -0.30859375, -1.5224609, -0.36987305, 2, -0.89990234, 0.93408203, -1.5097656, -0.8388672, 1.3320312, -4.046875, 0.88720703, 0.84814453, -1.7353516, -0.8222656, -3.1679688, -0.76123047, 0.8305664, -0.42456055, 0.05456543, 0.49145508, -2.640625, 0.70947266, -2.2460938, 0.29541016, -0.67285156, -2.4179688, 0.38720703, -0.20617676, 1.0976562, -0.57128906, -0.32739258, 4.1367188, 2.2109375, -1.8359375, 0.4177246, -2.9453125, -0.21838379, -1.4775391, -2.796875, 0.006580353, -1.7246094, -0.7368164, 4.4179688, 0.079833984, 0.81396484, 2.8105469, -1.2119141, -1.0527344, 0.06549072, -1.6162109, -0.9042969, 1.1376953, 0.33618164, 3.3300781, 1.5751953, -0.96240234, -0.63378906, -1.0751953, -1.1416016, 0.71435547, 0.6142578, 0.6928711, -0.11126709, -1.5283203, 0.10723877, 0.2758789, 1.0751953, -0.99365234, 0.03225708, 1.5615234, 1.1396484, 2.9296875, -2.5976562, 0.4494629, 1.2460938, -1.2148438, -0.7036133, -0.56103516, -0.9453125, 0.5439453, 1.9746094, -1.0029297, -0.80908203, 2.4023438, 0.57666016, 1.8310547, -0.80615234, -0.82177734, 0.46533203, -1.2568359, -0.22265625, 0.09197998, 1.5595703, 1.6748047, -1.1386719, -1.4150391, -0.25170898, -0.49194336, -3.4355469, -1.9169922, 1.6757812, 1.0908203, 1.1015625, -0.42089844, -0.95214844, 2.8300781, -0.5185547, -0.93359375, -2.1679688, 2.140625, 1.0019531, 0.56640625, 4.8984375, -2.7675781, -0.58691406, 1.4248047, -2.9335938, -0.74316406, -1.3808594, -0.50439453, -2.2734375, 0.453125, 2.0273438, -0.6015625, -1.53125, 0.5654297, -0.9223633, -0.7675781, -3.4648438, 1.1542969, -0.41577148, -0.60253906, 0.33422852, 0.25805664, 2.921875, -0.81591797, 1.7226562, 2.2011719, 1.2246094, -0.44335938, 0.7890625, -1.2939453, -0.90527344, 0.62939453, 0.28637695, 1.6318359, -0.87060547, -0.27539062, 1.5673828, 0.6118164, -2.8085938, 1.2089844, 0.5722656, 1.2832031, -0.8774414, -2.0683594, 2.2050781, 2.109375, -0.15185547, 0.16894531, -0.019699097, -1.7167969, 0.4387207, 2.6328125, -1.4746094, 1.6230469, -0.2442627, -1.84375, 1.1494141, -0.31469727, -1.8193359, -1.1025391, 1.1044922, -0.6958008, 0.97509766, -1.5, 0.012268066, 0.7841797, -2.4902344, -1.2509766, -2.4257812, -1.9316406, 1.9560547, -1.2861328, -0.37036133, 0.38916016, -0.10424805, 4.6601562, -0.96533203, -1.5664062, 1.8183594, -0.033447266, -1.1396484, -0.024780273, -1.9853516, -1.0976562, -0.06665039, -0.43017578, 1.7099609, 1.4443359, -0.88134766, 0.7636719, -2.484375, 1.5947266, -2.2167969, 2.8242188, -0.81103516, -0.08166504, 4.4570312, -3.4785156, -1.7119141, -1.6279297, 2.7578125, 1.4951172, 0.5727539, 2.2949219, -1.4804688, -0.9140625, 0.4675293, -1.3339844, -1.5800781, -0.3798828, 0.44433594, 0.54541016, -0.08691406, -0.43115234, -1.0224609, -0.2770996, 0.66796875, -0.1706543, 1.8320312, -0.2775879, -1.328125, -0.42016602, -1.7851562, -0.24560547, -0.095214844, 0.75634766, -0.63623047, 3.8789062, -1.4755859, -2.0332031, -0.032104492, -1.0361328, -2.21875, -1.6318359, 1.2382812, 1.265625, 0.43530273, 0.6298828, 1.1357422, -0.8125, 3.2304688, 0.16418457, 0.44067383, 2.5058594, 0.05697632, 0.061584473, -0.78466797, -3.4628906, -0.91015625, -3.7773438, 0.9272461, 0.45239258, -2.1738281, 1.5136719, 0.8930664, -1.6025391, -0.52783203, 0.14953613, 1.0683594, 0.81689453, 0.86083984, 0.25390625, 0.33325195, -2.6640625, -3.2207031, 0.5629883, -0.70166016, -1.7246094, -1.5859375, -0.7260742, 2.4140625, -0.5805664, 2.7304688, 0.43847656, -0.055114746, -0.12927246, 0.33740234, 1.140625, 0.7836914, 1.3134766, 0.37768555, -0.8256836, -1.8603516, 1.3291016, -0.39379883, 0.24584961, 1.0429688, -1.6289062, -2.5722656, -1.9736328, 0.5288086, 0.69970703, 2.4902344, 1.1787109, -0.6489258, 0.42919922, 1.2558594, -1.8671875, 1.3466797, 1.9287109, 2.3261719, -2.7792969, 3.5390625, -1.4316406, -2.7539062, 1.9111328, 0.07696533, -0.5756836, -0.5786133, -1.8896484, -0.3857422, -0.703125, -1.9238281, -2.0566406, 0.8725586, -2.6171875, 1.3798828, -0.99365234, 0.23144531, -1.3349609, 2.7617188, -0.77783203, 2.5566406, 2.0195312, 0.088256836, -0.068237305, -0.9506836, -2.5722656, 1.3115234, 1.9697266, 0.7597656, -1.4091797, 0.3984375, -0.6479492, -1.2089844, 1.4345703, 0.71728516, 0.0047454834, 0.14135742, 2.0234375, 2.6230469, 1.9003906, 2.3671875, 1.3486328, 2.9277344, 2.0195312, 0.7739258, -0.13110352, 2.4375, 0.3178711, 1.9980469, -0.2697754, 1.9941406, 0.3762207, -0.83203125, 0.99902344, 1.4248047, -0.16870117, -1.7138672, 1.7353516, -1.0839844, 0.03112793, -0.4638672, 0.9165039, -0.89746094, 0.2548828, -1.8300781, 0.5136719, 4.0234375, 0.50683594, 1.0097656, 1.6933594, 0.90185547, 1.15625, -3.8730469, 1.0576172, 1.703125, 1.1845703, -1.1679688, 2.6523438, 0.55810547, 1.2421875, -0.27807617, 1.9902344, 0.16809082, 1.2070312, 0.46118164, 0.9370117, -0.11633301, -0.4284668, 1.375, -1.6835938, -0.8046875, -0.48754883, -0.6591797, -2.0097656, -1.7167969, 0.9140625, 2.4121094, 1.8671875, 0.35864258, -3.0761719, -0.10809326, -0.11193848, 1.5136719, -1.21875, 0.8066406, 0.2800293, -2.9609375, -2.2480469, 2.2441406, 1.9277344, 0.75341797, 0.90527344, -2.9179688, 0.2849121, 1.4023438, 0.6743164, 1.3359375, -0.4555664, -1.5146484, 2.9550781, 0.13024902, 4.1171875, 1.515625, 3.4121094, -0.60302734, 0.080322266, 2.5019531, 0.4296875, 0.78466797, 1.1337891, -1.1845703, 0.46679688, -0.9584961, 1.1943359, -0.107666016, -1.0283203, -1.4072266, 0.2722168, -0.15332031, 0.011230469, 0.16149902, 0.6323242, 3.3671875, 2.3574219, -0.88916016, -2.2753906, 2.1542969, 1.9667969, -0.31713867, -1.3027344, -0.17492676, 0.44995117, 0.016098022, -0.66064453, 1.0693359, 0.9482422, 0.5576172, -1.4609375, 0.8173828, -0.52490234, 0.23791504, 0.36157227, 0.8984375, -2.0175781, -2.4609375, 1.71875, -0.45947266, 0.33325195, 0.8911133, -1.8974609, -2.3457031, 0.30737305, -0.6513672, -1.3388672, -1.0087891, -1.0253906, 1.1230469, 2.7792969, 1.4003906, 0.64990234, -2.5625, -2.4511719, 1.5800781, -0.5600586, 3.1953125, 0.7368164, -1.0507812, 0.42456055, -2.3691406, 2.4570312, 0.88134766, -2.6132812, -0.05444336, 0.025054932, 0.3737793, -1.1279297, 0.77441406, 2.140625, -0.61083984, -0.54052734, 2.5839844, 3.125, -0.023071289, 2.4726562, 1.3027344, 1.9257812, -2.3066406, -0.12609863, 0.41259766, 1.3037109, 1.2685547, -0.15649414, -1.0117188, -3.1347656, -1.6044922, -1.5097656, -0.35766602]}, "B071749XB4": {"id": "B071749XB4", "original": "Brand: GasOne\nName: GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black\nDescription: \nFeatures: Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose\nUniversal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output)\nBrass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring\nHeat resistant - cast iron will not melt easily compared to aluminum construction\nTo be used with propane only\n", "embedding": [-0.7089844, 1.5048828, 1.4345703, -0.093688965, 0.10736084, 0.43920898, 1.5087891, -1.8027344, 1.2734375, -0.43554688, -0.10748291, 0.6376953, -0.9975586, -1.8740234, 1.2451172, 0.06665039, 0.70703125, 1.8085938, 1.0332031, 0.92089844, 2.6230469, -0.19897461, 2.5859375, -2.9003906, -0.7944336, 1.7802734, 3.2988281, -3.15625, -0.49414062, -1.34375, 1.5820312, 0.8129883, -1.09375, 1.3916016, -2.9863281, -1.0859375, 0.74316406, -0.3269043, -4.46875, -0.9868164, -0.013435364, 1.3388672, 1.8007812, 0.31103516, -1.6933594, 1.6884766, 2.1171875, 0.15429688, -1.6611328, 0.546875, 1.1064453, 1.6386719, -0.9589844, 0.06088257, 1.0351562, 2.2207031, 1.5214844, -2.8769531, 0.21362305, 0.25390625, 2.7265625, 1.7119141, -2.3183594, -0.53125, -1.6875, 0.65722656, 0.33984375, -0.76171875, -1.3144531, 0.34960938, 1.8144531, 0.0061569214, 0.4091797, 0.6899414, 1.3212891, -1.2900391, -4.1054688, 0.53808594, 2.0136719, -2.4902344, -1.8222656, 1.1835938, 0.8881836, -0.63964844, -0.36694336, -0.3881836, -0.38256836, -0.76171875, 2.7519531, -1.0234375, -2.921875, 4.1445312, -1.9628906, -4.203125, 1.6884766, 0.8745117, 0.83984375, 0.64746094, 0.25878906, -0.20617676, -1.8300781, -1.1015625, -1.0859375, 2.6035156, -1.0566406, -0.96728516, 0.6538086, 2.2578125, -2.4921875, 1.5283203, -1.5439453, -1.21875, 1.2333984, -0.9868164, 1.1875, -1.3037109, 0.3527832, -1.2929688, 2.25, -0.77246094, 4.1835938, -1.3740234, -0.55322266, -1.6298828, 0.097717285, 1.7900391, 0.06341553, -1.3271484, 2.6386719, -2.4335938, 0.5283203, -1.7636719, 2.984375, 0.92041016, -1.1914062, -0.5703125, -1.3837891, -3.4414062, -2.9296875, -2.1308594, -3.0371094, 1.8076172, 0.43066406, -0.78027344, -3.0761719, 0.4465332, -0.5932617, 0.92089844, -0.44970703, -1.6142578, 1.3554688, -1.8847656, -0.7763672, -2.5507812, 2.2558594, 1.3769531, -0.2052002, -2.5351562, 3.1464844, 1.4501953, -0.21008301, 0.8847656, -1.1181641, 1.0986328, -0.70410156, -0.5283203, 0.13659668, -0.1965332, -1.4208984, 1.3037109, -2.6816406, -0.7050781, -1.9414062, 0.14538574, -0.54589844, -0.45532227, -0.4169922, 3.8222656, -1.3554688, 1.5195312, -3.4707031, -2.6132812, 0.71484375, -1.4863281, 2.8515625, -1.0888672, 1.1357422, -1.4130859, 0.2800293, -0.65478516, -0.9682617, -0.7915039, 2.0292969, 1.8886719, 0.20349121, -0.78564453, -0.33740234, -0.48266602, 0.007381439, 1.7792969, -1.5439453, -1.8525391, 0.5161133, 0.52197266, -1.4716797, -1.3710938, 0.28393555, -2.1464844, 1.2197266, 1.3583984, -0.13305664, -0.46801758, 1.7099609, 0.5673828, -0.078063965, -1.3886719, 1.8613281, 0.2746582, 1.5595703, 1.1943359, -0.4658203, -2.1621094, 1.8027344, 0.42285156, 1.2744141, 1.4277344, 0.20153809, 1.3320312, -1.9628906, -1.7890625, 3.1152344, 1.9736328, -0.13293457, 0.049987793, -0.49829102, 3.4609375, 0.42919922, -1.1015625, 0.73535156, -0.6777344, 0.14978027, -0.6430664, -2.2167969, -0.59033203, -1.9091797, 0.29760742, -1.3935547, 0.23425293, 1.6503906, 0.1574707, 1.2871094, -0.5439453, -1.1289062, -1.0625, -2.1503906, -0.07299805, -0.21936035, 0.65771484, 0.18481445, -1.6875, 2.4199219, -0.67089844, 0.1595459, 0.22192383, 0.02609253, -2.1367188, 1.5136719, -0.115600586, -0.8574219, 0.3544922, 0.9638672, 0.4777832, 4.4296875, -0.20019531, 1.0429688, 3.3261719, -1.7744141, 2.4765625, 0.27416992, 1.1708984, 0.038330078, -1.1015625, 1.8701172, -2.0859375, 2.4609375, 0.95654297, 1.8847656, -0.66796875, -2.2636719, 0.95996094, 3.8300781, -0.41870117, -2.1738281, 2.1777344, -1.1318359, 0.5317383, 0.3630371, -0.4177246, 0.5463867, -1.1123047, 1.6933594, 0.10772705, 0.19750977, 2.2363281, 0.3918457, 0.92285156, -0.3930664, -0.6899414, -0.6455078, 1.3603516, -0.36547852, -0.0058631897, -0.44091797, 2.8203125, -3.7773438, 0.8198242, 1.3730469, -2.6855469, 0.46142578, 0.10211182, 2.6308594, 2.4101562, 1.4921875, -0.85253906, 2.6464844, 1.4111328, -0.94140625, 0.34228516, -0.20458984, -1.4248047, -0.7285156, -1.1972656, -1.7548828, -0.88916016, -0.7558594, 0.6455078, -1.0908203, -2.6855469, 1.9326172, -2.53125, -0.1953125, 2.1601562, -2.6621094, 2.109375, -1.4658203, -2.2128906, -1.4375, 0.1472168, -1.6044922, -1.2246094, 1.7382812, 2.9003906, -1.8125, -3.1210938, -0.8208008, -1.0136719, 0.12915039, 0.90722656, 0.009506226, 1.4667969, 0.8515625, 0.5410156, 0.54589844, 0.62109375, 0.32910156, 0.2322998, 1.9042969, -3.2753906, -0.10253906, -1.4550781, 0.19177246, -0.96435547, -0.24450684, -2.4121094, -0.7426758, -0.5864258, 0.42822266, 1.796875, -2.0507812, 2.6835938, -0.5996094, -0.4177246, 1.3662109, -2.34375, -2.96875, 1.6923828, -0.36547852, -1.1728516, -0.6748047, -3.9609375, 1.9853516, -0.47827148, -0.38867188, 0.019638062, 0.12805176, -0.6044922, 0.73779297, 0.15527344, -0.9663086, 1.3144531, -0.53222656, 0.5175781, -0.79345703, 0.5541992, -0.7519531, -1.9003906, -0.6225586, 0.48583984, 1.4707031, -0.2709961, -0.097717285, 1.1503906, 1.0361328, 1.5146484, 0.23095703, -2.1113281, 0.9404297, 1.7148438, -0.27392578, 2.4472656, -3.3515625, -0.43920898, -2.2207031, -0.52978516, 1.6152344, -0.5097656, 2.8515625, 0.9946289, -0.5463867, 0.14245605, 0.111206055, -0.6323242, -2.25, 0.059906006, 2.8105469, -1.9560547, -2.6582031, 0.01890564, 1.8652344, -2.9902344, 1.0917969, 2.3574219, 1.171875, 1.2597656, 1.5966797, 1.0429688, -1.921875, -1.9150391, 0.62939453, 0.8305664, 0.4099121, 0.21704102, 0.34960938, 0.12792969, -0.35766602, 1.4150391, 1.9960938, 1.7832031, 3.1132812, 1.7148438, -0.11303711, 0.009689331, -1.1640625, 0.36254883, 1.1230469, -0.17346191, 1.3154297, 0.6274414, 0.14123535, -0.65625, -0.036132812, 1.3964844, -3.0898438, -0.70654297, 1.1054688, -0.9165039, 1.3095703, 0.27197266, -0.013977051, -0.68066406, 0.103515625, 0.74902344, 0.37646484, 1.2333984, 2.2910156, 0.35473633, 0.00030827522, -1.0576172, 1.9003906, 0.9682617, -0.7285156, -0.73583984, 0.87597656, -2.3828125, -2.8496094, 0.6591797, -2.7636719, 0.5263672, 1.7978516, -0.16723633, -1.5527344, 1.5585938, -1.0556641, -0.046325684, 0.67529297, -1.3710938, 1.0693359, -2.25, -2.1015625, -0.1809082, 0.5444336, 1.2382812, 1.0048828, -1.4716797, 0.17797852, -1.7744141, -1.0527344, -0.7270508, 0.29174805, -2.6738281, 0.5541992, -2.0703125, -1.1230469, -0.6123047, 2.7480469, 0.15563965, 0.5317383, 2.5488281, -1.671875, -0.7714844, -1.4306641, -2.8183594, 0.7402344, -2.6328125, 0.12841797, 2.2011719, 1.3417969, -0.26098633, 2.0292969, 0.32666016, -2.9082031, -0.5136719, 1.3935547, 1.3896484, -2.4433594, -2.921875, 2.1425781, 0.84521484, -2.0078125, -1.1933594, -0.36401367, -1.5566406, -1.1582031, 0.22314453, -3.375, 0.032440186, 1.5058594, 0.50927734, -0.9589844, -1.5664062, 1.1650391, -0.56347656, 0.29467773, -1.5566406, 2.0859375, 0.0065956116, 0.029037476, 0.04937744, 4.3632812, 1.2080078, 0.6274414, 0.96875, -0.7055664, 0.29516602, 0.12585449, -2.1132812, -0.6220703, 0.13391113, 1.6035156, -1.0644531, 0.70751953, -3.0390625, -1.78125, 0.7011719, 1.1171875, 1.2626953, 1.4179688, 2.2695312, -1.3330078, 0.09661865, -0.5185547, -1.2832031, 0.08227539, 0.3564453, 2.2988281, -1.3808594, 2.1933594, -1.9238281, 0.062927246, 0.8803711, -1.5761719, -2.3203125, -0.33911133, 1.3632812, -2.1445312, 0.25268555, -1.1513672, -1.6328125, -0.5449219, 0.23754883, -1.2617188, -0.6347656, -1.328125, 0.059295654, 0.6274414, 0.41430664, -0.20812988, 0.6274414, 0.88623047, -1.390625, 0.08276367, -0.45141602, 0.16833496, -1.1777344, -0.6323242, 0.24072266, -0.57958984, 2.0683594, -0.54541016, 0.13989258, -1.5097656, 0.453125, 0.04751587, -0.36669922, 1.3134766, -0.6958008, 1.4882812, 1.1875, 0.2208252, 2.5253906, 0.5214844, -0.61816406, 1.8085938, 1.7519531, 0.1920166, -0.7167969, 2.3359375, -1.0664062, -0.61083984, 2.3339844, 2.09375, 0.29614258, 2.7597656, 1.6591797, -0.9770508, 0.08959961, 2.2832031, -2.0058594, -1.2519531, -0.6538086, -1.0751953, 2.5703125, -0.07763672, -0.98828125, -0.24353027, 4.0976562, -1.5029297, 0.73535156, 1.3251953, -0.06768799, -0.83496094, -0.84375, -1.5527344, -2.9511719, 0.6640625, -0.78564453, -3.0292969, 1.9765625, -0.37231445, 2.0117188, 1.1992188, 0.68603516, -0.2783203, 1.4707031, -0.60498047, 0.5571289, -0.22033691, -0.27075195, -1.2324219, 1.9433594, 2.6152344, 1.6201172, 1.6738281, -1.6396484, 1.78125, -0.7114258, 0.36499023, 1.8261719, 1.2255859, -0.88916016, -1.2167969, 3.8007812, -1.3212891, -0.47509766, -2.3066406, -1.7197266, -0.8461914, 2.4628906, 1.4873047, 1.2099609, -0.49169922, 0.075683594, -1.8115234, -4.5664062, 0.23913574, 0.39941406, -0.15527344, 0.012428284, -1.6914062, 1.0332031, 0.24975586, -0.5629883, -0.0031929016, -1.7070312, 0.27270508, -0.29418945, 0.4099121, -0.32617188, -0.66503906, 0.8261719, 0.6645508, 0.029647827, 0.029510498, 1.2705078, -1.3505859, -2.2773438, 1.4443359, -0.48535156, 0.12231445, 2.2011719, -0.6933594, 1.1005859, 3.2402344, -0.47387695, -3.4648438, 1.0400391, -1.9628906, -0.63378906, 1.0087891, -2.328125, 2.1191406, 1.1201172, 0.059509277, 1.8505859, 0.27807617, -0.6035156, -0.81396484, -0.8901367, 1.6289062, 1.8505859, 0.6225586, -2.0625, 1.7236328, -0.75439453, 0.49951172, 0.9458008, -0.7011719, -2.6386719, -1.1210938, -1.3779297, -0.054534912, -1.1640625, -0.3786621, 0.35668945, 0.096069336, 1.5283203, -0.39013672, 1.7744141, -0.23095703, -0.01777649, 1.5732422, 2.6367188, -0.6621094, 3.9902344, 1.0546875, -0.41235352, -2.8984375, -1.6103516, -0.9111328, 2.2089844, 0.4987793, 0.8486328, 0.7636719, -0.7734375, -0.8852539, -1.4550781, -0.04611206, 0.6347656, 1.1152344, -0.7138672, 1.0449219, 3.9042969, -1.0839844, 1.1552734, 1.0449219, -1.0625, -0.5234375, 1.578125, 3.265625, -0.40039062, 1.0605469, -1.90625, 0.9838867, -0.68066406, -0.7026367, -1.3232422, -1.2763672, -0.5654297, -0.9238281, -0.7553711, -3.0957031, -0.23474121, -0.74316406, -0.64941406, 1.1425781, 0.7714844, -1.4023438, 0.43310547, 2.1835938, 3.4296875, -1.6982422, 1.3544922, -1.3417969, 0.21679688, 1.9345703, -2.1289062, 0.05255127, 2.0742188, 1.3095703, -1.2871094, -0.36083984, -0.66552734, 2.59375, 0.34375, 2.1367188, 1.9306641, 0.1439209, 1.7851562, 0.84277344, 2.3632812, 2.3027344, 0.09814453, 0.76123047, 0.61083984, -1.0087891, -0.7158203, -0.67333984, -1.5898438, -1.4882812, -2.0292969, 0.06591797, 0.7138672, 2.6425781, -1.7089844, 0.14978027, -0.43652344, 1.8505859, -2.4433594, 1.3105469, -1.2353516, -0.2512207, 0.5551758, -0.1887207, 2.6972656, 0.51123047, -1.7255859, -0.61865234, -0.4987793, 1.7294922, -2.3984375, 1.4560547, -0.8408203, -2.1054688, 0.90185547, 0.055267334, 1.1386719, -0.060058594, 1.0292969, 0.32495117, -0.49414062, 0.37280273, 0.030197144, -4.3632812, -0.07788086, 1.1679688, 2.9375, 0.70751953, -1.2763672, 2.8261719, -1.5996094, -0.42407227, -2.9511719, 3.5859375, 0.3125, -0.074645996, -0.20983887, -1.7910156, 1.1396484, -2.4003906, 1.9111328, -1.7353516, 1.3662109, 1.0400391, 0.0087509155, -0.46044922, 0.035003662, -1.765625, 2.2382812, 0.3359375, -1.4736328, 0.7446289, 1.5224609, 0.28076172, 0.29125977, 1.4091797, 1.6875, -0.35766602, -1.5888672, 1.9853516, 0.046539307, -2.0097656, 0.42895508, 3.0644531, 2.0332031, 0.7495117, 2.359375, 1.3398438, 0.19165039, 1.5615234, -0.91064453, -0.14196777, -1.0917969, -1.0029297, -1.5693359, -0.17260742, -0.6225586, -1.3466797, 2.75, 0.15563965, 0.75927734, -0.60058594, 1.6591797, -1.4355469, 0.41455078, -0.7158203, -1.6230469, -1.9697266, -2.1230469, 0.6455078, -3.3847656, -0.7680664, 0.5551758, 1.1162109, 0.1875, -0.6191406, -1.0576172, -0.39916992, 1.0087891, -0.10205078, 0.38793945, -1.9697266, 0.23181152, 0.265625, 0.11425781, -0.2824707, 0.7763672, -0.7583008, 0.45703125, -0.31225586, -1.2880859, -0.8671875, -0.32617188, -0.7583008, 0.6977539, 2.2851562, -0.3125, 1.7275391, -1.7714844, -4.4648438, -1.2734375, -1.9257812, 0.2619629, -0.84277344, -0.3022461, 0.1194458, 1.4423828, 2.1523438, -1.8886719, 2.2207031, -1.0732422, -0.22766113, 2.0585938, -1.7705078, 0.52246094, -0.7026367, 0.29467773, -0.27416992, 2.375, 1.4306641, -0.7597656, 1.4638672, 1.8212891, -0.05718994, -2.25, -0.122558594, -1.6845703, -1.1201172, 0.3010254, -0.71728516, 2.1816406, 2.1738281, -2.3867188, -0.4934082, -1.8847656]}, "B01LVUYVPT": {"id": "B01LVUYVPT", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFL-SO24DT 30,000 BTU's 24\" Southern Oak Vent Free Gas Log Set\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with propane or natural Gas\nUp to 30,000 BTU's/hr. heats up to 1,000 sq. Ft\nNo electricity required allows for reliable back-up heating incase of an Emergency situation\nDual burner system provides two rows of flames for a more full looking fire\n6 hand painted concrete logs inspired by nature\n", "embedding": [-1.7998047, 1.2753906, 1.4814453, -0.6035156, 0.9794922, -0.089904785, -0.4194336, -1.1484375, -0.6035156, 1.8554688, 2.828125, 3.2148438, 0.43237305, -3.15625, -0.04269409, -1.3740234, 0.77734375, 0.58251953, 0.8095703, -1.6347656, 1.2197266, 1.4765625, 0.050476074, -0.5722656, -0.6401367, -0.029647827, 3.0703125, -3.3027344, -0.32763672, -1.4667969, 1.7480469, 0.57421875, -0.08746338, 1.8798828, -3.34375, -2.3164062, -2.4628906, -0.09277344, -4.1640625, 0.46704102, -1.3056641, -1.1572266, 3.2421875, 1.8945312, -3.2207031, -1.0683594, 1.7080078, 0.28930664, -1.8339844, 1.9101562, 0.51171875, 2.1777344, -2.3710938, -0.09515381, -0.6503906, 2.4804688, 1.2714844, -0.7519531, 1.5117188, 1.3046875, 1.7929688, 0.59277344, -2.2207031, 1.6640625, 0.013435364, 2.0898438, 0.61083984, -0.22546387, -1.7822266, 0.0569458, 0.7026367, 1.0439453, 0.86865234, 1.4785156, -1.6064453, 0.16235352, -4.2304688, 1.125, 2.2890625, -1.6953125, -0.099121094, 0.9272461, -0.2944336, 0.3527832, -0.8173828, -0.3605957, -1.8144531, -0.36889648, 0.35229492, 0.24279785, 0.42089844, 1.2646484, -0.33496094, -4.1015625, 1.2441406, -1.3759766, -0.056121826, 0.21118164, -0.55126953, 0.93310547, 1.1894531, 1.5927734, -0.38891602, -2.0996094, -2.6152344, -0.4519043, 2.1269531, 2.6230469, -1.6738281, 2.2539062, -1.7880859, -0.4753418, 2.609375, 1.8115234, 0.055755615, 0.1541748, 0.2878418, -0.7709961, 3.1328125, 0.78759766, 2.3105469, -0.7861328, 1.5615234, 0.9038086, 1.890625, 1.1230469, -0.7001953, 2.8164062, 0.23510742, -1.9443359, 0.46923828, -2.0117188, 1.234375, -0.83251953, -0.10443115, -0.7426758, -0.484375, -2, -3.265625, -1.4082031, 0.36279297, 2.5605469, 0.26367188, 0.25732422, -2.2695312, -1.9794922, -0.045684814, -0.55126953, 1.9873047, -3.0878906, 0.2915039, -3.2265625, -0.23022461, -3.40625, -0.059295654, 0.028915405, 1.2919922, -0.68652344, 0.17614746, -0.11968994, -0.8930664, -1.2900391, -4, 1.0947266, -1.0791016, -2.0234375, 2.3652344, 0.19055176, -0.5234375, 1.7626953, -0.35083008, -0.78271484, 1.2070312, -2.3417969, 0.27905273, -2.2246094, 0.24450684, 2.9296875, -0.6791992, 0.70654297, -2.2246094, -0.2692871, -0.47753906, -1.2548828, -0.39013672, 1.5263672, 1.0273438, -0.69433594, 1.8730469, -1.453125, -1.3037109, 1.9042969, -1.2978516, 0.25097656, -0.5966797, -1.1113281, -0.6713867, -2.6542969, 2.4121094, 0.4338379, -0.41748047, 2.265625, 1.2197266, 0.7050781, -1.1933594, -1.9716797, -1.6035156, -1.0234375, 1.9492188, 1.2597656, -0.14990234, -1.0947266, 2.2324219, -0.37890625, 1.2792969, -2.6523438, 1.7216797, -0.25585938, -0.8964844, 0.8203125, 2.0585938, -0.25805664, 0.8095703, 0.6875, 1.7685547, 0.30322266, -0.40234375, -0.37036133, -2.59375, -1.4960938, 1.0742188, 0.018417358, 0.083618164, -0.6040039, 0.027038574, 3.0019531, 0.36376953, -0.08312988, 0.98339844, 1.2373047, 1.4833984, -0.26245117, -0.8823242, 1.140625, -1.2294922, 1.7832031, -0.53125, 1.2636719, 2.9296875, 1.0273438, -0.71728516, -1.1064453, 1.2978516, 1.3320312, 1.1855469, -0.74560547, -0.70654297, -0.47558594, -0.062438965, -2.2128906, 0.28027344, -0.5180664, 1.3359375, 1.3154297, -0.55566406, -1.2246094, 0.93408203, -0.020614624, -0.0014247894, -0.19555664, -0.9404297, 1.3916016, 2.0800781, -0.45703125, 1.5878906, -0.57910156, 0.60058594, 3.3730469, -1.4902344, 1.9570312, 0.89404297, -1.8486328, 0.96777344, -0.7807617, 0.23425293, 1.2001953, 0.15112305, 0.90966797, -0.29101562, -0.2783203, 6.0390625, -0.5620117, -3.1289062, 0.94921875, -0.70751953, -0.67822266, 0.8154297, -0.59277344, -0.099121094, -0.48999023, 1.7226562, 0.9033203, -0.3413086, 1.625, -1.3535156, -0.7480469, 1.5615234, -1.9785156, 0.9165039, 0.5029297, 0.5332031, -2.6914062, -1.2382812, 1.1621094, -4.171875, -0.54296875, 2.40625, -1.4707031, 2.3769531, 0.6958008, -0.14245605, 1.0673828, -1.7822266, -2.0566406, -1.5859375, 0.36791992, -0.75146484, 1.2929688, -0.27929688, -0.43920898, 0.34423828, -2.1972656, -1.2285156, -2.5039062, -1.5625, -0.76123047, 0.17211914, -0.57666016, -1.2939453, -1.2724609, 0.52197266, 0.28710938, -1.4404297, 0.2524414, -0.6953125, 0.22167969, -0.05230713, -1.2431641, -1.2822266, 3.046875, 1.3818359, 2.6386719, -3.4628906, -2.3261719, -1.4003906, -0.9814453, -1.2529297, 0.72216797, -1.1376953, 0.55078125, -0.07208252, -0.38305664, 0.27685547, -1.2539062, -0.7548828, -0.42089844, 2.0175781, -4.4375, 1.5019531, 0.9370117, -0.28149414, 0.76464844, 1.8076172, -1.7226562, 0.41503906, 0.52685547, 0.25170898, 2.4296875, 0.7338867, 1.7744141, 1.5195312, -0.78466797, -0.91845703, -3.921875, -1.0458984, 0.68847656, -1.3935547, -1.0351562, -0.5942383, -2.2246094, 1.0078125, -0.1694336, -1.2988281, 0.17077637, 1.0224609, -0.3786621, -2.7128906, -0.61279297, -0.42993164, -1.296875, -1.1162109, -2.4726562, -0.19445801, -0.5957031, -0.0035705566, -0.44433594, -1.7402344, 0.36254883, 0.5986328, 2.3710938, 1.6904297, 0.56933594, 0.37451172, 0.7368164, 1.8398438, -1.7314453, 2.2695312, 2.3066406, -0.062927246, -0.99121094, -2.1894531, -1.6621094, -2.1503906, -0.33496094, 3.4082031, 2.9921875, 1.1269531, 0.29736328, -1.1953125, -0.13354492, 3.1230469, -0.37695312, 0.65478516, -1.5478516, 1.2480469, -0.9838867, -0.85302734, 1.1962891, 0.7529297, -1.4423828, -1.0693359, 2.2167969, 0.76660156, 3.0253906, 0.8256836, 2.4433594, -0.25146484, -0.23547363, 0.5961914, 0.71484375, -0.9765625, -1.8720703, -1.1523438, 2.0878906, 1.3867188, 1.1005859, 1.5683594, 0.7788086, 0.6972656, 0.26245117, 0.50439453, -1.234375, 0.18493652, -0.35742188, 2.3945312, 2.0546875, 1.0097656, 0.56689453, -1.2714844, -1.8291016, -0.39624023, 0.84765625, -1.9667969, 0.3034668, 3.1230469, -0.12927246, 0.5415039, 1.6943359, 0.49560547, -0.86035156, 0.4645996, 1.3974609, 0.82177734, -0.4350586, 2.1328125, -2.1425781, -1.5214844, -1.8144531, 1.1396484, -0.6245117, -0.86279297, 0.3815918, 4.2304688, -3.3828125, -1.0791016, 1.8603516, 0.30273438, 1.8525391, 2.0683594, 0.03982544, -0.90234375, -0.36035156, -2.3417969, -0.15942383, 3.234375, 0.67041016, -0.80908203, -1.2958984, 2.0332031, 0.3413086, -0.017929077, -0.7480469, 1.1152344, -1.3134766, 0.82958984, -1.7236328, -1.5400391, 1.0361328, -0.67529297, 0.99121094, 4.140625, 0.124816895, -0.79833984, 0.43896484, 1.1386719, -2.0097656, -0.6298828, 4.5820312, 0.29345703, 1.3515625, -1.8261719, -2.9707031, -0.12902832, -0.06524658, -0.5214844, 2.1992188, 0.6694336, -0.41259766, 0.45898438, -0.41455078, -2.7773438, -0.8574219, -0.8515625, 0.6166992, -2.7148438, -0.52978516, -0.89160156, 0.67626953, -1.5341797, -0.6245117, -0.7290039, -0.35791016, -0.3095703, 0.50146484, -2.8652344, 0.81591797, -1.3525391, -0.34375, -1.5820312, -0.6040039, 2.5117188, -0.42211914, 1.1044922, -1.2285156, 1.8076172, 2.4023438, -0.042297363, 3.1152344, 2.7207031, 1.6289062, 0.33984375, -0.44628906, 1.5478516, 2.6757812, 0.18737793, -3.0507812, -3.9140625, 0.13366699, -0.4008789, -2.5253906, -1.6113281, -0.32739258, -1.7695312, 0.6074219, 2.1269531, 1.4765625, 2.1992188, -0.34985352, -1.1464844, 2.078125, 0.22546387, -0.5683594, -1.1103516, -2.2148438, -1.2119141, 0.18591309, 0.10076904, -1.0302734, -0.09350586, -0.77978516, -0.52441406, -0.48339844, 2.1347656, 1.1855469, 1.2783203, 1.5703125, -0.69384766, -1.1347656, -0.77197266, -0.055511475, 2.0097656, 1.6474609, 1.9355469, -1.4726562, 1.0839844, 1.2900391, -1.875, 0.34838867, -0.29638672, -0.21801758, 0.12878418, -0.5073242, -4.2539062, -1.3730469, 1.1552734, 1.1582031, -0.13110352, 1.9277344, -1.1904297, -1.4501953, 0.009864807, 1.0292969, -0.87109375, 0.9423828, -0.4309082, -0.5410156, 0.66015625, 2.09375, -1.6533203, 0.83496094, 1.25, 0.044525146, 1.7939453, 0.17114258, 0.42700195, -2.1484375, -0.73583984, -0.39013672, -0.14160156, 0.051239014, -0.5073242, -1.2275391, 3.046875, 1.5751953, -0.58496094, 2.9277344, 0.29833984, -2.828125, 0.8725586, 1.3740234, 2.2441406, 0.23510742, 0.055603027, -3.4980469, -1.6337891, 2.5566406, -1.7724609, -0.19482422, -0.52001953, -2.0976562, -1.4375, -1.5742188, -2.0644531, 0.2220459, -2.6816406, 0.41479492, 0.30908203, -1.3212891, -2.2890625, -0.8930664, 2.6132812, 0.4399414, -1.4355469, 2.1503906, 1.0654297, 0.32592773, -0.57421875, 1.0029297, -1.5, -0.71875, 0.8979492, -2.0039062, 1.2490234, 1.1367188, 1.0556641, -1.2714844, -0.88916016, -1.3652344, 1.296875, -1.0712891, -0.4362793, 2.2441406, -0.18847656, 1.4599609, -0.16906738, -1.8369141, -1.4794922, 1.0966797, 0.30078125, -0.5541992, -0.5541992, -1.0878906, -3.4707031, -2.4433594, -0.6801758, -0.30004883, -1.5390625, 0.023666382, -0.29467773, -2.2265625, 0.0010309219, 1.7314453, 0.9042969, -1.0136719, -1.5224609, -1.7763672, 0.17358398, -1.1533203, -1.9121094, 1.4345703, -0.92333984, 1.2148438, -1.0234375, 1.3955078, -0.68896484, -1.5244141, 0.9926758, 0.09185791, 0.72558594, -0.70654297, 1.7910156, 2.6054688, 2.578125, 1.8759766, -1.8671875, 0.79296875, 0.6923828, 0.6279297, 1.5097656, -1.2578125, 0.5761719, 1.1220703, 1.5751953, 0.26220703, -0.006340027, 0.8378906, 0.22351074, 2.0878906, 0.78027344, 0.52783203, 0.06915283, -0.9272461, 1.7304688, -0.5361328, 1.2841797, 1.1855469, 0.3605957, -0.7397461, -3.1953125, -0.034606934, -0.3383789, -2.9628906, -1.0576172, -0.20385742, 2.5722656, -0.051971436, 0.005722046, 0.4333496, 0.44335938, -0.2944336, -1.0214844, 0.33789062, -3.0546875, 2.359375, 0.61376953, 0.23327637, -3.1542969, -1.921875, 0.7441406, 0.24975586, 2.8046875, 0.089782715, 0.8364258, -1.765625, -0.8691406, -0.36645508, 1.6660156, 0.61816406, 0.9350586, -0.5961914, 1.7773438, 0.9243164, 0.6982422, 2.0371094, 0.96777344, 2.3476562, 0.96533203, 2.8632812, 3.4042969, -1.6611328, -0.7338867, -1.5595703, 0.23583984, -0.66552734, 0.016571045, 1.8271484, -1.9541016, -1.421875, -1.0654297, 0.18029785, -3.4355469, 2.0371094, 0.5444336, -0.1875, -1.1191406, 0.30737305, -0.025512695, 1.3710938, 0.88427734, -0.38061523, -1.3496094, -0.05026245, -0.008628845, -0.23706055, 2.6660156, -2.4140625, 1.1445312, 0.2915039, 0.5229492, -0.9868164, -0.25097656, -0.21728516, 3.25, 2.5253906, 3.359375, 2.046875, 2.28125, 2.8261719, -0.23205566, 1.1806641, 1.6337891, -1.2695312, -0.14282227, -0.06677246, 0.39282227, -0.5336914, -0.39892578, 1.2832031, -0.8339844, 0.20361328, 0.57421875, 1.8994141, -1.7177734, -4.4609375, 1.2490234, -0.05078125, 2.2910156, -3.296875, 0.5102539, 0.72998047, 0.41992188, -0.6044922, -3.8378906, 0.33618164, -0.1895752, 0.5332031, 0.44335938, -0.6894531, 1.3154297, -2.2421875, 0.093566895, -0.2861328, -2.6152344, -0.6113281, -1.1640625, 1.6757812, 0.19018555, 0.30322266, 1.2753906, 1.5458984, 0.35742188, 0.7246094, -1.5673828, -1.2099609, 0.7036133, 1.5410156, 1.0791016, -1.2412109, 0.5078125, 0.29296875, -1.390625, -4.7421875, 0.88720703, -0.15563965, 1.453125, 1.2216797, -1.0087891, 2.0273438, 0.87402344, 0.6567383, -2.9160156, -0.61328125, 0.25976562, 0.22033691, -2.0136719, 0.32861328, -0.8310547, 0.19262695, -0.16589355, 1.0107422, 2.2089844, -1.1806641, 1.8935547, 1.1044922, 0.38232422, 1.3671875, -0.28564453, 0.13659668, -0.27270508, 0.51123047, -0.68310547, -0.047698975, -0.11383057, 2.6582031, -0.55908203, 0.6064453, 0.6645508, -0.42333984, -1.8164062, -0.4177246, -1.7402344, -0.4333496, -2.8886719, -0.60058594, 0.98828125, -0.26123047, -1.3085938, -0.31811523, 1.3486328, -2.6757812, -0.54296875, 1.1445312, -0.55810547, 0.7207031, -0.08441162, -1.0507812, 1.0947266, -2.8613281, 2.8710938, -1.7841797, -1.0644531, 0.8334961, 2.0136719, 2.171875, -0.054504395, 1.8447266, 0.33129883, -1.2851562, 1.1591797, 2.0253906, 0.3544922, -0.24743652, 0.080200195, -1.6435547, 1.1123047, 3.2695312, -0.74609375, -0.9555664, 1.8212891, -1.4931641, -1.0644531, 2.7910156, -0.6435547, 2.5683594, 3.4257812, 1.7587891, 0.4489746, -3.453125, -1.6923828, -3.4667969, -0.7832031, 0.57421875, -1.4130859, 0.5605469, 0.7475586, -0.5961914, -0.103027344, 2, -1.8261719, 1.1445312, -0.7109375, 0.39916992, 0.7583008, 0.056488037, 0.45507812, 2.109375, -1.1464844, 2.9824219, 1.0771484, -0.7607422, -0.21105957, 3.2011719, 0.9482422, -1.3291016, 0.105285645, -2.6777344, 0.14428711, -0.4008789, -0.22814941, -0.6430664, 0.9355469, -0.6777344, -1.3085938, -2.0976562]}, "B006WRLBNU": {"id": "B006WRLBNU", "original": "Brand: Weber\nName: Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7\" Long\nDescription: \nFeatures: Cordierite stone absorbs moisture for light and crispy thin crust pizza\nCarry rack makes transporting the pizza quick and easy\nFits into the Gourmet BBQ System cooking grate so that it stays in place while grilling\nEnjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings\n", "embedding": [-0.44726562, 0.4873047, 1.1787109, -2.4238281, -0.5527344, 0.3996582, 0.60009766, -1.6210938, -0.4428711, 1.8300781, 0.8544922, -0.9277344, 0.39404297, -1.8369141, -0.69091797, 0.44091797, 0.7792969, -0.2614746, 0.79003906, 2.9863281, 1.5097656, 1.1611328, -0.5004883, -0.51171875, 2.3964844, -0.6899414, 3.0253906, -2.0488281, 0.080566406, -1.7304688, 0.9848633, -0.48046875, 1.6328125, 2.0625, -2.0292969, -0.14733887, -1.171875, 2.9726562, -0.39868164, 1.0449219, -0.67285156, -1.2988281, 1.8457031, 0.62890625, -3.1777344, 0.8027344, -1.1279297, 2.2988281, -0.28979492, -1.3378906, 2.296875, 1.9863281, 2.3769531, 1.2441406, -0.8149414, 1.1796875, 0.3215332, -3.1835938, 3.3828125, -0.8388672, -0.484375, -0.0574646, -2.8476562, 0.32836914, -1.1484375, -0.016067505, -0.45214844, 0.0043182373, 1.7529297, -1.421875, 1.1162109, 0.16503906, -0.93896484, -0.3803711, -0.5292969, -1.0009766, -0.20092773, 1.5800781, 0.043792725, -0.2709961, -1.203125, 2.0390625, 0.7319336, -1.9472656, -1.4042969, -0.7714844, 0.1303711, -1.7197266, 0.46875, -0.53271484, -0.11553955, 1.671875, -2.5273438, -3.9394531, 2.2402344, -0.47631836, -0.9707031, 2.3359375, -0.36547852, 2.4746094, 0.41992188, 2.5, -0.121032715, 0.79833984, -3.1992188, -0.8569336, 0.6357422, -0.6430664, -0.038208008, -1.0087891, -2.2363281, 1.5751953, 0.38623047, 2.484375, 2, -0.08569336, 0.8852539, 0.8251953, 0.8432617, 1.7285156, 2.3359375, -0.9584961, -1.4794922, -0.51123047, -1.1083984, 0.1459961, -0.31298828, 2.2929688, 2.5253906, -2.4082031, -1.1992188, 0.06756592, 1.109375, 1.8759766, -0.49414062, -2.3359375, -1.3466797, -1.515625, -1.4609375, 0.17407227, -0.30688477, 1.3496094, 2.3261719, -0.86279297, -1.3496094, 1.9052734, -0.13757324, -0.037231445, -1.8417969, -0.8027344, 0.016937256, -0.7163086, -1.8671875, -0.19750977, 1.4931641, -0.5991211, -0.34960938, -1.4970703, 1.4082031, 2.5273438, 1.4873047, -1.8613281, -0.34692383, 2.046875, 1.3388672, 0.044006348, -0.007873535, 2.8222656, -1.0654297, 3.8515625, 1.2246094, -0.80615234, 0.8881836, 0.7661133, 2.2109375, -1.7988281, -0.95166016, 1.2089844, 0.17175293, 0.63134766, 1.6582031, -3.2773438, -0.80029297, 1.3447266, -1.3574219, -1.8671875, 1.4179688, -0.29541016, 1.9042969, -1.2832031, 0.93066406, 1.5087891, 0.55029297, -0.72265625, 0.89746094, -0.60302734, -2.3554688, -1.9238281, 0.59716797, -1.1542969, -2.3222656, -1.4873047, 0.37695312, 0.3215332, -1.4765625, -2.8671875, 0.48779297, -0.5078125, 1.0117188, 1.7255859, 1.0087891, -1.2158203, 0.5136719, -0.1809082, -0.2524414, -2.078125, 2.2285156, 0.042877197, 1.6386719, 0.8461914, -0.9379883, -0.070739746, -1.6552734, 3.8085938, -1.5419922, 2.9824219, -0.25024414, -0.9458008, -0.5004883, 0.2064209, 2.5058594, 1.5488281, 0.6152344, 1.4609375, -0.17175293, 2.5195312, -0.016067505, 1.0029297, 0.71240234, 3.2929688, -0.30908203, -1.9462891, -4.1289062, -2.09375, -1.5234375, -1.5888672, -1.8007812, 1.9619141, 0.8535156, 0.27319336, -0.3203125, 1.4423828, 0.8569336, 1.0898438, 1.75, 1.3554688, -1.3193359, 2.4667969, -1.875, -1.2802734, -0.9433594, 0.07128906, -0.7714844, -0.2980957, 0.6542969, -1.1933594, 1.1923828, 2.1308594, -2.3007812, -1.3027344, -0.4020996, -0.91015625, 0.3894043, -1.4257812, 2.8554688, 2.5371094, -1.875, 0.072753906, 1.3173828, 0.6503906, 0.77978516, 1.5664062, 0.53271484, -2.75, -1.6621094, -0.062561035, -2.0097656, -0.45214844, -0.36108398, -1.1279297, 3.7558594, 0.27416992, -0.31176758, 2.1738281, -2.2148438, 1, 2.1582031, 0.57958984, 0.1340332, 1.9365234, 0.7890625, 0.5415039, 0.79541016, -0.015342712, -3.015625, 0.6958008, 2.2324219, -2.1484375, 1.1445312, 0.56933594, -1.5820312, -0.67089844, -1.8203125, -1.5585938, -3.4257812, -2.2402344, -1.9091797, -2.3300781, 0.77734375, 0.5083008, 1.0898438, 1.421875, -1.4492188, -0.7006836, -1.3554688, 0.9213867, -0.74853516, 1.4130859, 0.4736328, -0.42163086, -0.22741699, 0.46899414, 1.2675781, -1.1611328, -1.7236328, -0.98291016, -0.29858398, -3.0839844, 0.98535156, -0.26293945, -0.9892578, 2.9667969, -2.34375, -0.039489746, -1.5712891, -3.2070312, -1.921875, 1.2724609, -1.6123047, -1.3007812, 0.24597168, 0.68896484, -0.31420898, -5.4335938, 0.31591797, 1.5390625, 0.37597656, -1.5253906, -1.8925781, 0.9482422, 0.011489868, -0.07269287, -0.29077148, 0.42358398, 1.4882812, 1.2255859, 0.15136719, -0.8979492, 2.6308594, -1.3076172, -0.6923828, -0.62158203, 0.50439453, -3.0566406, -0.9399414, 1.3720703, -1.5966797, 6.3867188, -0.3305664, 1.8925781, -0.83984375, -0.024230957, 0.70214844, -0.030380249, -0.2685547, 1.0078125, 0.5390625, -2.9648438, -0.50683594, -2.6191406, 0.038269043, -2.5527344, -0.08148193, 0.07318115, -0.34350586, -1.3046875, 0.46484375, -2.4179688, 0.14074707, -1.1591797, 0.038391113, -0.54785156, -0.86621094, -1.7529297, 0.3659668, -1.7636719, -1.6484375, 0.64208984, 2.1894531, 0.5336914, 1.2529297, 0.58691406, -0.35595703, 0.02583313, 1.1210938, -3.21875, 1.140625, 0.070617676, -2.2148438, 1.5576172, 0.42285156, -1.0283203, -0.23547363, 1.0576172, 1.4511719, -1.1464844, 0.4802246, 2.4824219, 2.6386719, 0.3466797, -1.2363281, 1.5966797, -0.5888672, 1.1669922, 1.3378906, -0.15490723, -2.2363281, -0.42919922, -0.54052734, -2.3789062, -0.5048828, 2.2304688, 2.734375, -1.4697266, 2.3457031, 1.3925781, -1.0097656, -0.71875, 1.2265625, 2.4824219, -0.1303711, -1.3095703, 1.8886719, 3.1347656, -0.92333984, 3.0644531, 0.43823242, 1.9208984, 3.2324219, 0.23083496, 0.63427734, -1.8574219, 0.62646484, 0.22131348, 1.6240234, -1.9707031, 0.7504883, -1.0361328, -1.703125, 1.890625, -2.5742188, 0.86621094, -0.7788086, -1.6054688, 1.6796875, -0.48828125, -1.1679688, -0.5649414, 0.06463623, 0.7290039, -4.3203125, -0.93310547, 0.21960449, -1.3076172, 1.1591797, -2.8515625, -1.4912109, 0.76220703, 1.8886719, 0.5986328, -2.1679688, -0.30004883, 2.7597656, -1.2910156, -1.6181641, -0.9711914, -0.95166016, -0.578125, 2.0351562, 0.14562988, -1.5361328, 2.3261719, -1.9921875, 2.1816406, -0.20800781, 0.47070312, -0.29760742, -0.07946777, 0.47631836, 0.08001709, 0.43725586, 0.28857422, -2.1367188, -3.8496094, 0.62060547, -3.3691406, 0.21264648, 0.4975586, -0.87353516, -1.0576172, 0.73779297, 1.5712891, 0.71728516, -3.4355469, 4.7890625, -0.8183594, -3.0234375, 2.8828125, -0.74560547, -0.8964844, -4.3046875, -2.4296875, 0.36450195, -0.6323242, 1.9628906, 1.9960938, 0.4868164, 0.124816895, 3.4160156, -1.2578125, -2.0488281, -1.1484375, -1.1494141, 0.0340271, -0.7895508, 0.6035156, 0.5463867, -1.0839844, -0.49560547, -2.1640625, 0.4934082, 0.07232666, 2.0195312, 2.65625, -2.3535156, 0.390625, -2.8339844, -1.5380859, -1.6679688, 0.19018555, -0.3203125, -0.81933594, 1.5253906, -0.56396484, 2.4179688, 0.5527344, -0.5024414, -0.25, 1.3027344, 0.22399902, -1.3007812, -0.6542969, 0.031402588, 2.8105469, -0.3947754, -3.0351562, 0.20227051, 0.12219238, 2.4316406, -1.6328125, 0.9399414, 1.4384766, -3.6386719, -0.32617188, 1.1015625, -1.1669922, 1.2304688, 0.27514648, -2.40625, -2.2519531, -0.7182617, -1.2783203, -2.2402344, 0.11853027, 1.4873047, 0.060546875, -0.36645508, -1.7792969, 1.5625, -1.2529297, 1.2236328, -1.8173828, 1.8779297, 2.4257812, 1.1894531, 3.5410156, -2.0058594, 0.15393066, -1.4931641, -2.3320312, -0.37890625, 1.015625, 0.6196289, 0.3022461, 2.9863281, 1.4511719, -1.0078125, 0.107055664, 0.5317383, -0.24047852, -0.88671875, -2.3476562, 0.25170898, -2.0527344, -1.8554688, 0.5996094, -1.3115234, 1.9384766, 0.8730469, -0.9042969, -1.2392578, 0.45898438, -0.72753906, -0.7519531, 0.4736328, -0.7006836, 1.9111328, -0.24853516, 2.5273438, -2.6601562, 1.5615234, -0.060394287, 0.60546875, 0.57128906, 0.2866211, 1.3964844, 0.06817627, -2.1074219, -1.3359375, 1.6669922, 4.5507812, 1.6376953, 1.8291016, -0.2064209, -2.1152344, 1.7138672, 0.42382812, -3.4238281, 1.0126953, -0.32714844, -2.1621094, 0.94384766, -0.0736084, -3.7246094, -0.03878784, 0.7973633, -0.0075416565, 3.0644531, -2.6757812, 0.15039062, 1.8242188, -0.9067383, -1.6826172, 0.7080078, -0.6660156, 3.0332031, -1.1074219, 0.120666504, -1.171875, 0.59277344, 1.4589844, 0.7138672, -0.8496094, 0.6586914, -1.4335938, -0.9042969, -0.17797852, -1.4667969, -1.4365234, 0.28027344, 1.7675781, 1.9794922, 0.7236328, 0.12890625, 2.6992188, -1.2333984, 1.7705078, -2.3261719, 3.2070312, -1.3984375, 0.16723633, 0.47509766, -2.9921875, 0.105285645, -1.3515625, 2.1230469, -0.17272949, 0.8930664, -1.2294922, 0.34887695, -0.90771484, 0.36865234, -1.0986328, -2.5546875, -0.59521484, -1.3574219, 0.31323242, -0.55859375, -0.44384766, -2.1445312, -1.2109375, 1.2539062, 0.11352539, -0.6542969, 0.25390625, 0.5649414, -1.2724609, -1.640625, -2.0625, -0.53466797, -0.6386719, 0.13793945, -0.36254883, -0.9169922, -1.3164062, -0.85791016, 0.0022621155, -2.9726562, -0.18737793, 2.3515625, 2.4804688, -0.41455078, 2.5234375, 1.1494141, -1.4492188, 2.34375, -1.4794922, -1.4287109, 0.4729004, -0.5708008, 2.84375, -1.4472656, -0.36035156, 1.1201172, -1.1425781, 0.93603516, -0.71240234, 1.5332031, -0.19934082, -0.30249023, 1.1904297, -1.8408203, 1.9541016, 1.9492188, 0.4482422, 0.7294922, -1.4179688, -0.2685547, -2.6445312, -2.7089844, -0.070251465, -2.1386719, -0.9770508, -1.4960938, 0.43579102, 2.4335938, -0.79785156, -0.30615234, 1.3222656, 0.31860352, -0.0029945374, -1.4003906, -0.33325195, 2.8359375, 1.3515625, -1.1474609, -1.5869141, -2.2695312, 0.8847656, 0.24438477, -0.26245117, -1.2265625, 0.35302734, -1.9306641, -1.2119141, 2.3769531, 1.5996094, 1.5507812, 2.2558594, 0.8208008, 1.4199219, 2.1601562, -1.2177734, 2.2265625, 1.5078125, 1.6640625, -1.6806641, 2.890625, -2.3085938, -2.2519531, 1.2099609, -1.7529297, 1.8359375, 1.515625, -1.7246094, 1.4169922, -1.0996094, -0.8852539, -1.9013672, -2.7558594, -4.9726562, 1.5009766, 0.85839844, -0.3581543, 0.4189453, 1.8125, -0.89404297, 3.2089844, 2.2285156, 0.57421875, -2.7246094, 0.27294922, -1.2822266, 0.15075684, 2.1503906, -1.1220703, -0.0039367676, 0.49829102, -1.2763672, -1.9257812, 0.515625, 0.55566406, 2.515625, 0.41870117, 1.4082031, 1.7451172, 1.8408203, 2.5195312, 1.6416016, 1.0566406, 1.0976562, -1.0859375, 0.70996094, 0.70410156, 1.5175781, 0.23547363, -1.5527344, 2.4355469, 0.5673828, -1.8447266, -1.1884766, -0.18347168, -0.49194336, -0.7836914, 0.65478516, 1.7265625, 1.4638672, -1.8867188, -0.04232788, -0.77490234, -0.9584961, -0.80371094, 0.7910156, 2.9179688, 2.0097656, 0.9189453, 1.0947266, 2.3613281, 0.42260742, -0.73046875, 0.022338867, 3.4941406, -0.9604492, -3.4980469, 2.96875, 3.2675781, -1.2138672, 1.046875, 1.671875, 5.71875, 0.6953125, 0.5073242, 1.0039062, -2.0136719, 0.14782715, 1.3320312, -0.7602539, -0.60009766, -1.4511719, 0.40429688, -2.015625, -0.52734375, 1.5791016, -0.5209961, 3.0859375, 1.5214844, -1.4960938, 2.0253906, 2.1152344, 0.84521484, -1.2470703, -0.3383789, -0.014625549, -1.0390625, -1.7744141, -0.7680664, 0.7441406, 0.96240234, 1.9042969, -0.140625, 1.9091797, 1.6494141, 2.65625, -0.24328613, 0.14001465, -1.1132812, 0.5834961, -1.9453125, 4.1210938, -0.36523438, 0.46704102, -2.3671875, 0.1928711, 1.3076172, 0.14367676, 0.59716797, -2.0117188, -0.7973633, -1.2753906, -0.07312012, 1.4492188, 0.02168274, -0.91259766, 0.99316406, 1.3300781, -1.9589844, -2.1445312, 1.2919922, 0.7578125, 2.2402344, 2.7148438, 0.53759766, -2.5429688, 1.7109375, -1.2685547, 0.38842773, 0.3852539, 0.4284668, 1.6328125, 0.047027588, -0.24682617, 1.0517578, 0.6958008, -0.8310547, 1.3964844, -0.22949219, 0.59716797, 0.08648682, 1.0263672, 0.7558594, -0.6826172, -1.2441406, -0.2998047, -0.8935547, 0.6748047, 2.4726562, 1.1865234, 0.6035156, -1.2460938, -2.1699219, -0.7001953, 0.22924805, -0.7915039, -0.47631836, 2.2753906, -1.1435547, -0.7973633, -1.1298828, -1.6513672, 1.1953125, -0.9692383, 1.3496094, -0.41601562, -2.96875, -0.9326172, -1.7802734, 3.6503906, -0.034210205, -0.8354492, -2.5351562, -2.40625, 3.046875, 0.49609375, 1.640625, 0.3647461, -1.5205078, 1.5136719, 3.6347656, 1.6035156, -0.041748047, 1.0927734, 1.9951172, 0.53027344, -3.8105469, 0.09375, -0.96728516, 1.1425781, -2.3046875, 0.20727539, 0.05078125, -0.21813965, -0.23120117, -1.6347656, -1.0507812]}, "B0753BKVJX": {"id": "B0753BKVJX", "original": "Brand: GOJOOASIS\nName: GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet\nDescription: Specifications:
          - Weight: 44lbs
          - Cover Color: Brown/Coffee
          - Frame Color: Black
          - Material: Metal, Polyester
          - Overall Dimensions: 98.4\"L x 59.1\"W x 106.3\"H

          Features:
          - Stylish double layered Fire-retardant canopy cover
          - Slanted roof to help keep clear of debris
          - 180GSM Polyester tent material and vented at top
          - Rust resistant powder coated steel frame
          - Come with hook on the middle top, put up fan, lights and so on
          - 2 iron meshes for grill accessories, beverages or food
          - Included 7 x Pegs
          - 1 Bottle opener attached to frame
          - Footprint size 8' x 5'
          - Designed specifically to house a barbecue
          - Assembly\u00a0required\u00a0comes\u00a0with\u00a0instructions\u00a0and\u00a0all\u00a0hardware\u00a0included

          Note:
          We do not recommend leaving set-up over several days, in adverse weather conditions.

          Descriptions:
          This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day.\u00a0The durable canopy protects you from harmful UV rays and has a stable iron frame.\u00a0There is one metal shelves on each side of the shelter to offer a handy place to set food and other items.\u00a0It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill.\u00a0Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.\nFeatures: Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide\nBBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDouble-tier top cover design not only looks good but is designed to make Good ventilating\nSafe flame-resistant top canopy with Water and UV resistant function for long lasting use\nGojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "embedding": [-0.94189453, 3.1503906, 2.0234375, -2.8007812, 0.2076416, 0.27661133, 0.20263672, -1.9384766, 2.265625, 1.4306641, -1.375, -1.4492188, 0.1126709, -5.1601562, 0.70410156, 1.0996094, 1.0205078, 1.0673828, 2.2558594, -1.1474609, 1.1669922, 0.4880371, -0.22290039, 0.036071777, 0.6269531, 0.3461914, 4.1445312, -2.0371094, 0.8076172, 0.26220703, 2.4316406, 1, 0.65771484, 1.4726562, -1.8261719, -1.7392578, -0.02319336, 0.18737793, -0.39892578, -1.2988281, -0.48876953, -2.9316406, 2.1679688, 2.5625, -0.2175293, 0.0047035217, -1.7724609, -0.049591064, 0.9946289, -2.0117188, 0.4025879, 1.8955078, 3.7753906, 0.22558594, -0.7373047, -1.6054688, -2.3222656, -1.7890625, 1.7832031, 0.23901367, -2.1015625, -1.0048828, -1.3916016, 2.6132812, -0.3371582, -2.5019531, 0.25195312, -1.4042969, 1.3525391, 0.12200928, 0.9584961, -1.5908203, -2.0761719, 0.12438965, 0.1352539, -0.8461914, -2.3964844, 0.8720703, 2.8574219, -0.25317383, -0.9086914, 1.65625, 2.8867188, -0.35961914, 0.71728516, -0.86083984, -1.7929688, 0.34887695, 1.0625, -1.5078125, -2.0351562, 0.67333984, -0.6430664, -3.9453125, 0.1182251, -3.0449219, 3.1210938, 0.36865234, -0.8857422, 2.4902344, -1.2744141, 0.33691406, 0.7006836, 0.19396973, -1.609375, -2.0449219, 0.80615234, -2.6640625, 0.17089844, 0.1439209, -0.5209961, 0.80566406, -0.5698242, -0.6665039, 1.15625, 0.7260742, -1.0644531, 4.2773438, 0.57373047, 0.73291016, 3.7988281, 1.046875, 0.62109375, -1.8994141, 0.5913086, -1.1923828, 0.32055664, 1.6796875, 2.5117188, -0.4711914, 0.22436523, -1.6435547, -0.9326172, 1.9140625, -2.1464844, -1.0957031, -2.7675781, -1.6435547, -4.5703125, 1.8583984, -2.8945312, 0.077819824, 2.2578125, -0.3251953, -2.2675781, -0.28857422, -1.5058594, 3.2519531, -0.025146484, -4.078125, 2.078125, -1.3388672, -0.6113281, 0.20129395, 0.42236328, -0.8730469, 0.9604492, -1.28125, 3.0136719, -0.5800781, 1.9472656, -1.6748047, -2.3789062, 1.0732422, -0.2644043, -2.2617188, 0.8754883, 2.671875, -1.3232422, 1.3730469, 2.0800781, -2.1992188, 2.2246094, 0.07080078, 1.8574219, -1.2314453, -0.85595703, 2.6660156, 1.3144531, 1.5302734, 0.24267578, -1.9228516, 1.2509766, 2.0273438, -1.3085938, -0.32788086, -1.3798828, -0.2286377, 0.42260742, -0.21166992, 0.06506348, 0.5151367, -0.7246094, 1.0908203, -2.3554688, -0.50634766, -1.0273438, -0.42773438, -1.0556641, 1.9765625, -0.72558594, -0.5234375, -1.7753906, 1.1074219, -1.4453125, -0.40014648, -2.2148438, 1.8955078, -0.5341797, 0.8857422, 1.6533203, -0.7919922, 2.1738281, 2.6933594, 0.0859375, 0.98095703, 0.81933594, 1.0859375, 1.6455078, 1.4472656, -1.8242188, -0.3840332, -1.1943359, 3.6894531, -0.5107422, 0.39892578, 1.5634766, -0.6689453, -1.8066406, 0.13720703, 0.6845703, -0.75146484, -0.22851562, 0.116760254, -1.1308594, 1.5517578, 0.6821289, -1.4111328, -0.53564453, -1.3261719, 2.1445312, -0.14660645, -2.2304688, -0.06188965, 0.17236328, 1.2402344, -0.24230957, 1.7880859, -0.85546875, -1.8564453, -0.77441406, 1.4658203, -0.50878906, -0.5283203, 0.77685547, 1.3525391, 0.37109375, 1.328125, -1.6875, -1.0507812, -0.6660156, -0.15063477, 0.8408203, 1.1113281, 0.31201172, 1.0751953, -0.76464844, 0.6015625, -3.9863281, -1.4931641, 1.9833984, 0.11859131, 1.2236328, -0.2097168, 0.64208984, -0.65722656, -1.4804688, -2.234375, -0.30981445, -0.91308594, -0.6738281, 1.9169922, 1.9443359, -0.859375, -2.1914062, -3.1328125, -1.8779297, -1.6533203, 0.14880371, 0.8901367, 2.6230469, 0.7836914, -0.5961914, 3.9414062, -1.5644531, -0.0184021, -0.1217041, -1.3056641, -1.5390625, 1.7148438, 0.3461914, 0.67041016, 0.42382812, -1.1523438, -1.2978516, -0.9995117, 0.9941406, -3.0390625, 0.4326172, 0.5629883, 1.3896484, 1.1591797, 0.33911133, -0.25024414, 0.5986328, -1.6660156, 1.7568359, -1.6416016, 0.8022461, 4.1367188, 0.44360352, 1.1943359, -0.85839844, -0.51464844, -0.6660156, 0.7475586, -0.7373047, 0.27001953, 0.93896484, -1.9589844, 1.71875, -1.6191406, 1.3671875, -2.4355469, -0.6411133, -2.7929688, -0.56103516, 0.06201172, -3.4980469, -0.12597656, -0.4975586, -2.6992188, -3.9648438, 0.4482422, -1.1259766, -3.9804688, 0.42773438, 1.9667969, -0.7475586, 3.5429688, -0.0904541, 0.42578125, 0.64160156, -3.0234375, -0.7133789, 1.6445312, 1.2167969, 2.7890625, -2.9628906, 1.921875, -2.5585938, 2.1699219, 0.113098145, -1.0732422, -0.7207031, -0.5805664, -1.6220703, -2.5117188, 0.5571289, 0.21179199, 0.41674805, -0.45336914, -0.61376953, -2.3222656, -1.8632812, 2.1601562, -0.6645508, 5.7148438, -0.01763916, -1.0947266, -2.109375, -2.4667969, 0.9213867, 0.00806427, -2.1875, -1.28125, -0.4309082, 0.91748047, -0.41552734, -1.6796875, -1.2744141, 0.33374023, -0.98339844, -0.33251953, -0.5878906, 0.77685547, 1.2529297, -1.4472656, -1.4560547, -2.640625, 2.1992188, -0.2890625, 0.052001953, -1.8945312, -0.25683594, -0.5576172, -1.3476562, -1.7060547, 2.2265625, -1.0849609, -0.3071289, 2.0332031, 1.1640625, 2.5273438, -0.27905273, -3.2226562, 2.9863281, 4.3632812, 0.7919922, -1.4560547, 0.1418457, -0.81152344, -2.7519531, 0.26538086, 3.0292969, 1.8085938, 2.4550781, 0.24829102, 1.3701172, 1.4052734, -0.30908203, -0.68359375, -1.5263672, 0.80859375, 3.9042969, 0.07543945, -1.3935547, 0.78027344, 1.28125, -2.6445312, 0.70166016, 1.0761719, -0.2775879, 0.6088867, -0.32763672, 0.94873047, 0.46289062, 0.3869629, 2.1660156, -0.8847656, 3.2382812, 2.0859375, -1.4140625, 0.6879883, -0.3605957, 1.3154297, 0.015686035, 1.765625, 0.6958008, 2.3671875, -0.055999756, -3.5957031, 0.44506836, 2.3632812, 1.2919922, -1.4521484, 2.2128906, -1.4746094, -0.52197266, -0.82666016, -0.4584961, 1.8583984, -0.0317688, -0.47924805, 1.9033203, -1.0322266, 0.06542969, 0.953125, -1.5039062, -0.70996094, -1.1904297, 0.25732422, -0.8515625, -2.6816406, 0.7089844, -3.84375, -4.28125, -0.28588867, 2.2207031, 0.96972656, -3.140625, -1.0976562, 3.0839844, 0.9926758, 0.92285156, -1.5634766, 0.33447266, -2.1699219, 2.1152344, 0.27124023, 0.053833008, 2.5644531, -1.5244141, 3.1367188, 1.8056641, -0.5527344, -3.2851562, -0.54296875, -2.2304688, 0.116882324, 0.81591797, 1.5380859, 0.57177734, -2.8417969, 0.39135742, -2.2285156, -0.15356445, 4.4453125, -1.5263672, -1.5751953, 0.59716797, 0.7026367, -0.35864258, 0.17407227, 2.8378906, 0.11779785, -1.8935547, 2.5566406, -0.79833984, 0.4086914, -0.6616211, -5.4414062, 0.3725586, -1.2236328, 0.75927734, 2.921875, -0.48583984, -0.8276367, 2.8515625, -1.9414062, -1.3798828, 0.09851074, -1.8476562, 0.44091797, -2.9453125, 0.36206055, 0.3251953, -2.234375, -2.1933594, -2.3359375, -0.39819336, 1.1240234, 0.63720703, 2.8515625, 0.7167969, 1.8046875, 0.07788086, 0.4206543, -1.1201172, 2.3828125, -0.46801758, -0.16809082, 0.4572754, -0.1508789, 1.4726562, 1.6464844, -0.21240234, 0.44213867, 0.5703125, 0.58740234, -0.55566406, -2.2226562, 0.08129883, 1.1923828, -0.8671875, -1.0332031, 0.6015625, -0.5073242, -0.39794922, -0.1126709, -2.4472656, 1.2353516, -1.9335938, 1.3105469, -1.7539062, 3.7792969, -0.16125488, -0.7910156, -3.625, 0.58251953, -0.6855469, 0.11279297, -1.8222656, -1.4394531, 0.45336914, 0.6430664, -0.24060059, -1.8623047, -0.60546875, 0.18664551, 0.09326172, -0.2626953, 2.1601562, 0.029830933, 2.7734375, 3.8066406, -2.3574219, -1.8330078, 2.4804688, -0.22338867, -0.16247559, 1.9960938, -1.0146484, 0.6323242, 0.062469482, 0.921875, -1.6201172, -1.9765625, -0.17980957, -0.96240234, -1.4833984, -2.0898438, 2.7988281, 0.8154297, -0.23095703, 0.37402344, -0.21618652, 3.9316406, -3.6796875, 0.05569458, 0.27856445, 1.3164062, -1.8144531, 1.0634766, 2.0898438, 1.5146484, 1.4082031, 2.3808594, -0.28588867, -0.48510742, 1.5332031, -1.0019531, 2.5957031, -1.8095703, -1.3066406, 1.3730469, -1.0146484, -0.20043945, -1.8935547, 2.2421875, 3.4316406, -0.8359375, 0.3461914, 1.7597656, -1.1103516, 2.5664062, 1.8271484, 0.92529297, 0.67529297, -0.55126953, -2.5625, 2.6171875, -2.0253906, -3.625, 0.04598999, -0.34521484, -1.8193359, 3.4375, -0.057769775, -0.38549805, 1.8720703, -0.23718262, 0.77441406, -0.12927246, -1.5068359, -0.045166016, 0.2939453, -0.40014648, -1.1621094, -0.28710938, 2.4941406, -1.6220703, 0.39868164, 1.4335938, 1.7695312, -0.5776367, -1.3115234, -0.3852539, -1.9394531, -2.3886719, 3.1660156, 2.9492188, 3.0273438, -0.36010742, 0.24523926, -3.5429688, -1.8535156, -2.4824219, 3.1328125, -2.0878906, 0.5024414, 1.7861328, -0.12054443, -0.6484375, -1.6992188, 2.546875, -0.44628906, 0.76904297, 0.39379883, 0.1204834, -0.105895996, -0.95751953, -3.0546875, -4.0507812, -1.6376953, 0.5571289, -0.7553711, -0.6142578, 0.37475586, -1.0332031, -1.5751953, -0.3071289, 0.07910156, 1.1552734, -1.0507812, 0.54248047, 0.51708984, -0.71875, -1.6894531, -0.17871094, -0.13256836, -0.33642578, 0.76416016, -1.3808594, -3.3710938, -0.2565918, 0.49682617, -1.8935547, -1.0439453, 1.4394531, -1.0947266, 1.4355469, 2.3964844, 0.4404297, 0.27539062, 1.0214844, -0.8232422, 0.8125, 0.91796875, -0.2644043, 1.4960938, -1.1845703, 1.1933594, -0.75439453, -3.7304688, 0.049438477, 0.8330078, 0.37304688, 1.8164062, 1.3242188, 0.5136719, 0.66748047, 0.78808594, 0.7885742, 2.2695312, 2.1113281, -0.4506836, 2.4492188, -2.4238281, -2.8417969, -0.78808594, -1.1923828, -2.296875, -0.6826172, 1.5742188, 0.59472656, 1.2460938, 2.8671875, 0.30126953, 2.2070312, -2.7011719, 0.23132324, 0.48876953, 0.68310547, -0.45410156, -1.7529297, -1.9130859, -4.1875, -0.96240234, 0.67041016, -1.6640625, 0.68603516, -1.3613281, -0.9243164, -1.0693359, -0.61328125, 0.40063477, 1.2841797, 2.1621094, -1.2578125, 3.46875, 0.36279297, -0.07904053, -0.02130127, -1.2519531, 0.76904297, -0.60498047, 2.34375, -1.0097656, -0.10266113, 1.4023438, -0.4934082, -0.82470703, -0.49389648, -1.9277344, 0.40356445, -1.875, -0.13244629, -0.88720703, -1.1162109, -2.28125, 1.7792969, -0.47045898, 1.1914062, 1.0078125, 2.3808594, -1.9384766, 1.3466797, 1.0498047, 1.7109375, -1.1142578, -0.32421875, 1.0908203, -0.7294922, 1.6191406, -0.31274414, 0.5390625, 0.9135742, 0.13696289, -0.6899414, 2.1328125, 1.0947266, 0.8959961, 1.9765625, 1.9023438, 3.3828125, 1.6914062, 2.4882812, 1.3691406, 2.1582031, 0.95410156, -3.1113281, 0.078063965, 1.9316406, 3.0605469, 0.90722656, 0.7607422, 0.9326172, 2.5644531, -1.5546875, 0.19909668, -0.71777344, 0.9848633, -2.9511719, 3.8027344, -0.75878906, 1.3867188, 0.27734375, 0.12017822, -0.8979492, -0.90527344, -3.2167969, -1.3085938, 2.1269531, 0.91064453, 0.9370117, -0.47485352, -1.3740234, -0.54589844, -3.6289062, -0.1640625, 0.5263672, -1.0986328, -2.5390625, 2.40625, 4.3359375, 2.1699219, 0.63916016, 2.3613281, -0.35742188, 1.3320312, 0.921875, 0.68847656, 1.1347656, -0.06573486, 0.8876953, 0.7109375, -2.3925781, -1.3974609, 1.2275391, 0.98779297, -2.2675781, 0.29858398, 0.5205078, 0.050201416, 2.8554688, -0.09655762, 0.86816406, 1.1005859, 2.4667969, -0.6958008, -1.1044922, -1.75, -2.1992188, 0.22265625, 1.1435547, 1.0078125, 3.9414062, 0.2705078, -0.76123047, 1.3466797, 0.5083008, -0.027877808, -0.1541748, 0.4411621, -0.6933594, 0.52734375, -0.79785156, 1.3867188, 1.4570312, 0.90478516, -0.6147461, -0.6972656, -1.9238281, -0.2841797, 2.2734375, 0.48828125, -0.34350586, -0.48095703, -1.0839844, 0.12988281, -3.8515625, -1.6210938, 0.032470703, -0.56347656, -2.7695312, -1.7519531, 0.86083984, 1.03125, 1.0439453, -0.28027344, 0.5678711, -0.3737793, -0.1862793, 0.4453125, -0.51660156, 0.3791504, 1.25, 1.5595703, -0.86865234, 0.36035156, 0.86572266, 1.1025391, 0.5864258, -0.90283203, -0.1274414, 1.3818359, 0.87109375, 1.7695312, 0.40966797, -0.5444336, -1.7490234, 0.03616333, 1.7558594, 1.859375, 1.5332031, -0.51660156, -3.4609375, -0.6508789, -3.2753906, 1.5039062, -2.453125, -1.8701172, -0.4794922, 3.9179688, 1.8349609, -0.7524414, -2.3320312, -2.578125, 0.39282227, -0.6147461, 1.5810547, 0.39648438, -3.1503906, -1.5214844, -0.81152344, 3.7792969, 0.14562988, 0.1763916, 1.2099609, -1.9277344, 1.9355469, -1.2988281, 0.20019531, 2.4042969, -1.6220703, 0.9248047, 2.7148438, 3.8730469, 0.76123047, 0.8183594, 1.0136719, 1.2412109, -4.2460938, 2.8457031, -1.4306641, 1.8623047, 1.0869141, 0.17480469, 0.89404297, -0.42773438, 0.022903442, -1.4912109, -1.6806641]}, "B07RX4JN5Q": {"id": "B07RX4JN5Q", "original": "Brand: Dailyart\nName: Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black\nDescription: Worried about food falling through the grille?

          Prevent stains from besmirching your yard or deck?

          Hate cleaning grills full of grease?


          You will like Dailyart BBQ MAT- Making your BBQ more easily !

          - Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

          - The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

          - Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

          - The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

          - Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and\u00a0vegetables.

          - Easy to store:can be stored either flat or rolled up.

          Specifications:

          Thickness: 0.2mm
          Size:Large 44 x 30 CM Coverage area
          Material: PTFE glass fiber coating

          Package included:

          5 x BBQ Grill Mat
          1x Wish card
          \nFeatures: Non-stick design\uff1aGet more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor.\nHigh temperature resistance over 500 \u2109: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500\u2109 without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin.\nReusable\uff1aThe barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell.\nMultipurpose Barbecue Grill Mats\uff1aPerfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food.\nSafer and Healthier\uff1aWhen our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.\n", "embedding": [-0.77197266, 1.6074219, 0.93652344, -0.9785156, -0.1451416, -0.014877319, 1.8603516, -1.2880859, 0.5678711, 1.5849609, -0.6484375, -0.1928711, 0.5727539, -3.0527344, 1.3007812, -0.33642578, 0.8833008, 1.6894531, 2.6582031, 2.4316406, 0.56933594, 0.84765625, -0.28442383, -1.4101562, 0.13537598, 0.08880615, 3.703125, 0.15576172, 0.97753906, 0.12072754, 1.5917969, 1.6181641, -0.24694824, 1.9970703, -3.7128906, -0.3347168, 0.50927734, 2.6894531, -0.079711914, 0.35302734, -1.4609375, -3.4882812, 1.7929688, 2.5859375, -2.2128906, 1.3740234, -0.55566406, 1.3984375, 1.0957031, -4.0429688, 1.5273438, 0.89453125, 2.1289062, -0.11151123, -3.046875, 1.2304688, -0.59716797, -1.8349609, 0.6074219, 0.051513672, 0.7402344, -1.2021484, -0.26879883, 1.7470703, -0.26098633, -1.9433594, 0.1217041, -2.3203125, 0.5214844, -1.8330078, 0.3322754, -0.18310547, -0.9482422, 0.87939453, 0.14074707, -0.01399231, -1.2431641, 0.35839844, 0.30688477, -2.7226562, -1.2548828, 3.2441406, -0.14196777, -1.4707031, -0.5498047, -1.2636719, -3.7539062, 0.2322998, 1.5068359, -0.04449463, 0.8876953, 3.6386719, -2.1992188, -4.2265625, 1.5644531, -3.3710938, 1.3125, -0.8696289, -0.3088379, 2.8261719, -1.5214844, -0.15258789, -0.44799805, 2.5234375, -3.2480469, -2.0742188, 2.1132812, -0.3244629, 0.0869751, -0.19750977, 0.63720703, 0.42993164, -0.0925293, 1.1699219, 1.7167969, 1.2949219, 0.8984375, -0.28588867, 1.9462891, 1.4775391, 3.8632812, 1.609375, -0.026168823, -2.1757812, 0.32373047, -0.7446289, -0.74902344, 2.5605469, 1.8330078, -2.7597656, -0.27148438, -1.8466797, -0.7910156, -1.4707031, -1.4023438, -1.9072266, -0.5078125, -1.2587891, -2.2792969, 0.62597656, 0.19384766, -0.35961914, 1.7841797, -2.1054688, -2.5488281, -0.02973938, -2.7636719, 2.0878906, -2.1113281, -2.8222656, 0.45776367, -0.67285156, 1.0771484, 0.16723633, 0.020477295, -1.0566406, 1.8515625, -1.0107422, 1.8476562, 1.2314453, 1.4580078, -3.1855469, 0.14978027, 0.25146484, 1.2197266, -2.796875, -1.46875, 2.3671875, -0.30859375, 2.0644531, 0.5571289, -2.7597656, 1.6933594, -0.39526367, 0.41967773, -0.52685547, 0.097961426, 2.4863281, -0.8027344, -1.1914062, 1.0878906, -2.2753906, -0.31518555, 0.7324219, 0.49658203, -0.35375977, 0.8251953, -0.4790039, 0.5053711, -0.5913086, -0.15490723, 3.0449219, 0.053497314, 0.6279297, -2.3046875, -1.2753906, 0.671875, -2.2988281, 1.1621094, 0.28955078, 0.47729492, -0.5727539, -1.046875, -0.8222656, -2.4316406, -1.8261719, -0.33642578, 2.3144531, 1.6533203, 1.2695312, -1.3583984, -1.9501953, 2.4179688, 2.2324219, -0.9350586, -0.5727539, -1.4238281, -1.0742188, 1.6103516, 2.6542969, 0.04437256, 0.30517578, -1.4228516, 4.5117188, -1.3349609, 0.7993164, 0.07269287, 1.8105469, -0.56689453, -0.20617676, 1.2871094, -0.22302246, 0.70996094, 0.23254395, -0.6176758, 1.1601562, 1.3095703, -1.2392578, -1.265625, 0.3696289, -1.9375, -1.9511719, -1.9931641, -1.8291016, -0.77197266, -0.31982422, -0.29174805, 2.09375, 1.4716797, -2.3046875, 0.043792725, 3.6679688, 2.4902344, -0.14489746, 0.25878906, -0.5439453, 0.20776367, 0.3737793, -2.8496094, 0.4230957, -0.52001953, -0.9663086, -0.50341797, 1.8173828, 1.9902344, -0.6977539, 1.9560547, -0.1315918, -2.65625, -1.7617188, 0.55908203, -0.27270508, -1.3789062, -0.76904297, 1.7900391, -0.30297852, -1.5498047, 0.30029297, 0.5620117, -1.7617188, -0.0859375, 2.6933594, 0.71191406, 0.4165039, -1.6933594, -0.40307617, -1.1601562, -1.8681641, 1.5429688, 1.0722656, 3.40625, 1.3535156, -1.3925781, 2.9335938, -1.2539062, 0.8808594, 2.265625, 0.06225586, -1.8876953, -1.6162109, -0.17211914, 2.7773438, 0.033996582, 1.0927734, -0.25854492, -0.083862305, 2.4101562, -1.7246094, -0.14807129, 1.4101562, 0.84375, -0.5883789, 1.8603516, 1.203125, -2.9316406, -1.5634766, 0.5805664, -1.8417969, 1.1572266, -2.4589844, -0.77490234, 0.059631348, -0.3010254, -2.8085938, -0.5283203, 0.6855469, -0.0904541, -0.10131836, -0.2244873, -0.42114258, 1.0898438, -1.0380859, 1.1035156, 0.5097656, -2.9882812, -2.4707031, -1.3115234, -0.18981934, -1.0986328, -0.20239258, 0.012336731, 1.2050781, -0.80322266, -0.11029053, -1.4052734, -2.6035156, -2.4589844, -0.36328125, -0.111816406, 1.6347656, 0.46435547, 0.28344727, 0.3149414, -3.4121094, -0.019515991, 0.40161133, -0.15100098, 1.2080078, -2.2832031, -0.09991455, 0.04751587, -0.066223145, 1.0751953, 0.3017578, 0.71191406, 0.7421875, -1.2880859, -2.7578125, 0.9326172, -0.7109375, -0.026367188, -1.0615234, -0.3684082, -1.3193359, -0.57421875, -2.8066406, 0.31225586, 3.8125, 3.0517578e-05, 1.09375, -0.22265625, -0.6586914, 0.6269531, 1.1083984, -1.1992188, -1.7001953, -0.8027344, -1.5214844, -0.20507812, -1.515625, -0.57666016, -1.3251953, -0.32348633, -0.63183594, 3.6523438, -0.23815918, 3.4277344, -3.0839844, -0.62841797, -1.1875, 1.6699219, -0.9477539, 0.29882812, -1.7011719, -0.93896484, -0.72509766, -2.1914062, 0.10949707, 1.1533203, -1.0634766, 0.97021484, 1.2578125, 0.38110352, 0.3251953, 1.5878906, -1.7773438, 0.72998047, -1.3144531, -1.53125, 0.7861328, 0.32714844, -1.9892578, -0.9550781, -1.6152344, 4.3632812, -0.113342285, 1.2109375, -1.0205078, 0.9770508, 2.4003906, 0.76660156, 0.59521484, 0.16589355, 0.89941406, 1.8222656, -1.2050781, -2.3203125, 1.4863281, -0.28564453, -2.1328125, 0.60498047, 0.73779297, 0.34155273, 0.87939453, 1.6748047, 1.4267578, -0.5107422, 0.008255005, 3.6992188, 0.3203125, 0.74316406, -1.515625, 0.98876953, 0.4404297, 0.25854492, 1.9951172, 1.4462891, -0.08453369, 1.0556641, 1.2226562, -1.1347656, -2.5820312, 0.8491211, 2.9160156, 0.3618164, -0.69677734, 2.2167969, -0.16784668, -0.97509766, 3.8457031, -0.9453125, 0.21520996, -1.6757812, -0.13415527, 2.2519531, 0.19824219, -0.19604492, -1.6347656, -1.1044922, -1.5898438, -3.6582031, -0.08306885, -1.9814453, -1.9541016, 1.7197266, -1.3388672, -3.2773438, 1.1445312, 3.6816406, -0.9350586, -1.9511719, -2.4824219, 3.9414062, -1.3828125, -1.3632812, 0.6748047, 2.5839844, 0.2993164, 2.3828125, 0.42871094, -0.30249023, 1.2617188, -2.890625, 0.87646484, 1.1679688, -2.6171875, -0.9916992, -2.0429688, 0.16809082, 0.112976074, -0.60595703, 0.050567627, 2.109375, -1.9423828, 0.703125, -2.2617188, 0.26757812, -0.6269531, -1.3945312, -0.30371094, 1.4121094, 1.1894531, 0.61816406, 0.3630371, 3.5175781, 1.8017578, -2.2246094, 0.7832031, -3.0039062, -0.08795166, -1.3222656, -2.6679688, -0.1796875, -0.6166992, -1.3203125, 3.4765625, 1.8105469, 0.8378906, 3.4960938, 0.22253418, -0.90283203, 0.12927246, -2.7460938, -0.7236328, -1.1816406, 0.44360352, 2.1796875, 2.4121094, -0.34887695, -1.0410156, -1.7158203, -1.4521484, 1.0283203, -0.25341797, 1.1689453, -1.2841797, -2.453125, -1.5517578, 0.5395508, 1.3037109, -1.1152344, -0.14770508, 0.546875, 0.93066406, 2.4902344, -0.8173828, 0.39770508, 0.30200195, -0.9746094, -0.62353516, -0.75146484, -0.9013672, 0.3149414, 4.296875, -1.3554688, -1.5019531, -0.53466797, -0.38916016, 2.0078125, -0.6152344, -1.7880859, 0.29956055, -2.3925781, -0.4350586, -0.30444336, 1.5517578, 0.9248047, -2.4550781, -2.2207031, -0.453125, 0.7895508, -3.7109375, -1.6992188, -0.5830078, -1.4443359, 0.18566895, -1.5507812, -2.3125, 1.4335938, -0.7573242, 0.44482422, -1.5498047, 2.9140625, 0.116760254, 0.04711914, 5.6132812, -3.1347656, -0.2878418, 2.0253906, -3.5898438, -0.9609375, -0.12561035, -0.74121094, -2.3261719, 1.53125, 2.0761719, -1.0898438, -1.3662109, -0.06616211, 0.5371094, -1.6259766, -3.4804688, 0.8828125, -0.22253418, -0.671875, 1.8876953, -0.30688477, 3.0527344, -0.7973633, 2.15625, 3.2480469, -0.19165039, 0.06970215, 1.1806641, -0.13269043, -0.0038776398, 1.2197266, 1.6738281, 2.5507812, -1.7832031, -0.08355713, 0.34179688, 1.1474609, -2.9941406, 0.8125, 0.9746094, 0.9135742, -0.19873047, -1.8056641, 1.5898438, 2.9355469, -1.3095703, 1.5332031, -1.5917969, -1.9101562, 1.2216797, 1.1865234, -1.7246094, 0.5336914, -0.25512695, -1.2333984, 2.4667969, -1.5625, -1.0742188, 0.546875, 0.08544922, 0.1496582, 0.28637695, -1.0791016, 0.32202148, 1.2197266, -0.48291016, -0.35058594, -0.79589844, -1.8427734, 1.8642578, 0.33740234, 0.2709961, 0.47558594, 0.6801758, 3.8671875, -1.6669922, -1.546875, 1.5693359, 0.0871582, -0.101623535, 0.91064453, -1.2539062, -2.1542969, -1.6074219, -1.8769531, 0.79541016, 2.3847656, 0.6333008, 0.76904297, -2.3164062, 1.5283203, -2.5664062, 2.4707031, -1.8037109, -0.021636963, 3.7558594, -3.9121094, 0.03414917, -0.95654297, 0.5708008, 0.97509766, 0.18835449, 1.7324219, -1.9501953, -1.9599609, 0.20263672, -0.6010742, -2.1601562, -1.6289062, -0.07348633, 0.29711914, 0.091674805, -0.83691406, -1.1845703, 0.010108948, 1.1171875, 2.2128906, 1.9521484, 0.32104492, -1.8378906, -1.9169922, -2.453125, -0.14489746, 0.90771484, -0.2709961, 0.68359375, 4.4101562, -1.8222656, -2.2695312, -0.81884766, -0.21105957, -2.5605469, -2.4550781, 1.8876953, 0.6958008, 0.47583008, 0.23388672, 0.20739746, -1.1298828, 2.8984375, 0.40625, 0.19750977, 1.3359375, -0.3486328, -0.9838867, -1.5742188, -4.671875, 0.53222656, -3.8496094, 0.16369629, 0.46142578, -2.5410156, 0.95214844, 2.1542969, -2.359375, -0.76464844, -0.2043457, 1.8261719, 1.0761719, 1.3847656, -0.21569824, 1.4101562, -2.4199219, -2.8945312, 0.1451416, -1.46875, -1.9394531, -1.4931641, -0.2866211, 2.4589844, -0.39526367, 2.5449219, 0.3244629, 1.1640625, -1.4287109, 0.74658203, 0.875, 0.30639648, -0.6040039, 0.5698242, -1.5292969, -2.4042969, 1.2246094, 0.25268555, 0.9663086, 2.4257812, -1.46875, -2.09375, -1.8046875, 1.0791016, 0.2388916, 1.8076172, 1.5341797, 0.0592041, -0.87646484, 0.46118164, -1.7324219, 2.7988281, 1.5888672, 3.0585938, -1.6728516, 3.9394531, -0.6489258, -3.6816406, 0.7338867, -0.016433716, 0.13049316, -0.7421875, -1.8740234, 0.19885254, -1.2304688, -1.2568359, -1.4033203, -0.5332031, -2.3066406, 2.4433594, -0.10449219, 0.80859375, -1.1455078, 3.3085938, 0.63916016, 2.5136719, 4.171875, -1.4355469, -1.7714844, -0.84033203, -1.4121094, -0.109069824, 1.8574219, -0.64990234, -1.3544922, -1.0585938, -1.1757812, -1.2890625, 0.8276367, 1.5244141, 1.6220703, 0.7128906, 2.6542969, 3.6054688, 1.9726562, 3.5371094, 0.25927734, 2.7402344, 1.3369141, 1.34375, 0.6254883, 3.953125, 0.5385742, 0.42138672, -0.80078125, 0.93310547, 0.55371094, -0.49121094, -0.3581543, 0.014335632, -0.54003906, -1.7226562, 2.4277344, 0.44360352, -0.8798828, 0.3647461, 1.7421875, -2.1640625, -0.7158203, -1.2636719, 0.93359375, 3.1835938, 0.7631836, -0.25268555, 2.3125, 2.3417969, 2.1699219, -2.8300781, 1.15625, 1.1972656, 0.05178833, -1.625, 3.5058594, 0.32641602, 1.9208984, 0.8286133, 2.5761719, 0.72753906, 0.20715332, 1.2421875, 0.13647461, 0.94091797, -1.1591797, 1.8554688, -2.5273438, -2.1699219, -0.44458008, 0.06286621, -0.6567383, -1.3916016, 0.23828125, 0.92822266, 1.8203125, 1.2646484, -3.7949219, -0.7597656, 0.94384766, 1.0292969, -3.2089844, -0.013114929, -1.2919922, -2.8203125, -1.7099609, 0.35107422, 0.73095703, 1.1582031, 0.9116211, -0.953125, 1.3554688, 1.4433594, 1.3154297, 0.5317383, 0.2709961, -1.4521484, 1.7060547, -0.87158203, 4.375, 2.0390625, 1.6777344, -0.48876953, 1.1259766, 2.6035156, 1.1542969, 1.4775391, -0.13232422, -1.2177734, -0.26342773, 0.14685059, -0.77734375, -0.63134766, -1.1132812, -2.0214844, 0.25561523, 0.013008118, -2.0957031, 0.17822266, 0.35375977, 0.74902344, 0.99560547, 0.40625, -0.8330078, 1.4814453, 2.6855469, -0.6611328, -0.5029297, -1.34375, 0.3022461, -1.3466797, -1.7851562, 1.0166016, 1.8291016, 0.88671875, -0.76708984, 0.54541016, 0.20349121, -0.015205383, 0.49365234, 1.2460938, -2.6757812, -1.7568359, 0.29589844, -0.65771484, 1.8486328, 2.9316406, -0.23547363, -1.0888672, -1.2675781, -1.6728516, -1.1298828, 0.3762207, -1.5732422, 1.3339844, 4.109375, 1.2451172, -0.8066406, -2.4941406, -0.9057617, 2.4082031, -1.0458984, 2.1210938, -0.70458984, -0.6748047, -0.53515625, -2.5859375, 1.6269531, 1.0449219, -2.0664062, -0.5908203, -1.0683594, 0.27441406, -0.34350586, 1.7539062, 1.3388672, 0.48486328, -0.29248047, 1.7109375, 5.375, 1.6660156, 2.2304688, 2.9746094, 0.19592285, -1.4179688, -0.24060059, 0.86376953, 1.9560547, 1.8027344, -0.12414551, -0.36767578, -0.4128418, -0.80126953, -1.0517578, -0.34399414]}, "B002MEPTOE": {"id": "B002MEPTOE", "original": "Brand: Raypak\nName: Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.\nFeatures: 336,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "embedding": [-1.9091797, 0.22546387, 1.8759766, 0.4296875, 1.0332031, 2.0976562, 1.8974609, -1.5048828, -0.06854248, 2.1132812, 0.63720703, 1.2050781, 1.5927734, 0.77685547, 1.5585938, -1.5654297, 0.6176758, 0.4206543, 2.6035156, 1.7783203, -0.16589355, 1.0361328, 1.5410156, -0.63378906, 0.5214844, 0.25463867, 1.7939453, -1.6748047, -1.1601562, 0.51953125, -1.453125, 0.77783203, -0.4267578, 2.0019531, -0.6401367, -2.1621094, -1.7783203, 1.6298828, -2.7441406, -3.1289062, -2.2226562, -1.7734375, -0.85595703, -1.2509766, -0.40454102, 0.14709473, 0.7919922, -0.8330078, -0.08886719, 1.4433594, 0.8510742, -2.5351562, -0.72021484, 1.2011719, 0.71484375, -0.35107422, -0.28588867, -2.4042969, 2.9335938, 0.091430664, -1.7294922, -1.6162109, -2.2226562, 2.0742188, -0.13195801, -0.12182617, -1.6796875, -0.99560547, -1.5136719, 1.3574219, 2.0722656, 0.90283203, -1.1357422, 0.7426758, 0.31420898, 0.06222534, -2.0996094, -0.61621094, 4.1992188, 1.4638672, -2.1894531, -0.5761719, -0.1953125, -2.2246094, -3.4375, 0.014083862, -0.6713867, 0.0036125183, 1.2988281, 2.3476562, -2.0371094, 1.8798828, -0.16931152, -3.1855469, 0.5996094, -1.5888672, 0.46435547, 1.7490234, 1.0595703, 2.671875, 0.39770508, -1.2421875, 0.7524414, 0.21655273, -1.5361328, -0.80908203, 1.0810547, -0.21313477, -1.0791016, 1.6757812, -0.12646484, 1.0888672, 2.9667969, -2.3730469, -2.8339844, -0.38427734, 0.0116119385, 2.3691406, 5.4101562, 1.4804688, 0.8354492, 0.1821289, 2.4609375, -1.6416016, -0.9477539, -0.1550293, -0.85498047, -1.0839844, 1.7197266, -1.7021484, -0.32495117, -0.25341797, 2.125, -0.5385742, 0.3947754, -2.0058594, -2.1328125, -0.07647705, -5.09375, -1.2109375, -2.4335938, 1.9326172, 1.3427734, 0.7451172, -3.3925781, 0.097229004, -0.8144531, 1.4443359, -0.5083008, -0.89941406, 3.0820312, -2.5722656, -0.23291016, -1.5917969, -1.7246094, 1.6777344, 0.7001953, -2.8886719, 1.9873047, 3.6582031, 1.65625, 0.2388916, 0.9272461, 1.1347656, 0.8852539, -1.5791016, 1.6943359, -0.37646484, -0.54345703, 0.22460938, -0.32836914, -2.9355469, -1.8515625, -1.0507812, -1.3398438, -2.4628906, 0.14953613, 0.80078125, 1.625, -0.36669922, -3.2402344, -0.64990234, -2.6640625, 0.41870117, 1.4179688, -1.3867188, -3.1757812, -1.2050781, -0.74365234, -2.5800781, -0.21350098, 0.75683594, -0.5600586, -0.47607422, -1.3632812, -2.5976562, -3.9355469, -0.06304932, 1.4599609, 1.5126953, 0.79052734, 0.19433594, -0.28076172, -1.1523438, -2.2148438, -3.9609375, -0.09527588, -2.9921875, -0.96533203, 2.5234375, 0.44995117, -1.5380859, 0.72314453, -2.5976562, -0.30029297, -1.6367188, 1.8857422, -0.83691406, 1.2011719, 2.140625, -0.52001953, 0.5727539, -0.117370605, 0.85058594, -0.5883789, 2.7734375, 1.1669922, 0.13049316, -2.2988281, -1.0214844, 0.9033203, 1.1279297, -1.7744141, 0.32202148, -1.2421875, 2.640625, 0.83935547, 0.88134766, 1.3720703, -0.21728516, -0.5131836, -1.9501953, -0.6035156, -0.40234375, 0.114868164, 0.11730957, -2.6894531, 2.0332031, -0.12976074, 0.44873047, 1.0214844, -2.3105469, -0.4736328, -0.6557617, -0.97509766, -1.3056641, 1.3476562, -1.1982422, -0.66796875, -1.3574219, 3.890625, 1.5263672, -0.20410156, -1.0908203, -2.6640625, -0.9604492, 2.9375, 2.8886719, -2.3886719, 1.1933594, 0.08807373, 1.6708984, 1.0839844, 1.7285156, 0.9995117, 3.5878906, -1.3525391, 4.1445312, -0.7944336, 0.93896484, 1.0859375, 0.9916992, 2.4765625, -0.8754883, 0.6538086, 1.7832031, 0.76171875, -0.2956543, -0.9614258, 1.4990234, 0.8666992, -0.8671875, -2.453125, 2.7421875, -0.89746094, 2.4882812, 4.96875, -0.71484375, -1.0419922, -1.7851562, 2.0253906, 2.1269531, -1.6064453, -0.39526367, -2.4941406, -2.3164062, 0.96533203, -0.7216797, 0.28759766, 0.06768799, 0.23291016, -1.4257812, -5.0976562, -1.3105469, -4.671875, -1.1464844, 3.3730469, -2.7167969, 1.8427734, 0.73339844, -4.0664062, -0.7451172, -0.14562988, -0.7011719, -0.24719238, 1.3017578, -1.2558594, -1.0175781, -0.71777344, -1.0751953, -1.1650391, -1.8447266, 1.2851562, -0.98339844, -1.8613281, 0.088256836, -0.4091797, -3.2460938, -0.14831543, -1.7695312, -0.95947266, 2.125, 1.0361328, 1.5078125, 0.29003906, -1.3945312, 0.033996582, 0.17773438, -0.6713867, 0.19250488, 1.0605469, 0.60253906, 0.29711914, -2.8867188, 1.7919922, 1.0615234, -1.4941406, 0.15124512, -1.2841797, -1.0166016, -0.8046875, -0.9995117, 0.8696289, -1.0820312, 0.6533203, 0.4116211, 3.359375, -2.9707031, 2.6972656, -0.8676758, 1.9326172, -0.5800781, 0.7216797, 0.40478516, -1.1083984, 2.1816406, -1.0273438, 2.0976562, 2.3984375, 1.3710938, 0.35424805, 0.26049805, 1.1308594, 2.9726562, -3.1503906, 0.6933594, -0.8808594, -3.0996094, -0.8417969, -1.7675781, 1.578125, -2.3027344, 0.09136963, 0.90771484, -1.578125, -2.2558594, 1.2148438, 0.25952148, -0.61083984, -0.30908203, 0.578125, 0.06768799, 0.06903076, -2.0214844, -0.64501953, -1.7236328, 0.39233398, -0.07733154, 1.2646484, 1.1972656, 2.4550781, 2.3535156, -0.23413086, 1.0458984, -0.06976318, -5.2226562, 1.0009766, 2.1992188, -0.30151367, -1.0058594, -0.34594727, -1.8359375, -0.4033203, -0.9082031, 1.8662109, 1.2070312, 2.3574219, -1.0654297, -1.3779297, 3.5957031, 3.1738281, -0.9892578, -0.54785156, -1.7148438, 1.9033203, -1.4833984, -1.7880859, 1.2138672, 2.1542969, -1.7197266, -1.6601562, 2.4980469, -0.20544434, 3.1894531, 3.5976562, -1.4052734, 1.1660156, 1.7148438, 2.5039062, 2.1289062, 1.0615234, 0.038757324, -4.4179688, -0.013595581, 1.2587891, 1.5234375, 1.2626953, -0.52441406, -0.66503906, -0.38793945, 0.32714844, -1.5126953, -0.3635254, 2.0761719, 0.8540039, 0.7548828, 1.3193359, 0.6904297, 1.7324219, 2.1425781, 0.75, -1.6113281, -1.6484375, 1.4453125, 3.1582031, 3.5996094, -2.2265625, -1.3613281, -0.3479004, -0.12207031, -1.6787109, 1.8320312, -1.2929688, 1.0361328, 0.5283203, -1.046875, -1.4228516, -1.7578125, 1.5224609, -1.1044922, -0.3840332, 1.2470703, 0.21459961, -0.18457031, 0.43920898, -2.296875, -0.8466797, -1.3818359, 0.107543945, -0.0012111664, 0.2841797, -1.6152344, 0.9213867, 2.4160156, -0.81689453, -2.0039062, -0.4892578, -0.40698242, 1.0976562, 1.0595703, -0.3647461, 0.44970703, 2.1210938, -1.8115234, 0.03353882, -3.5976562, 0.16906738, 0.08258057, -0.43676758, -0.5258789, 2.546875, 0.60498047, 2.8632812, -0.81103516, 1.4853516, -1.3037109, -1.1103516, 2.1132812, -1.2519531, -1.6914062, -2.125, -6.0234375, 2.7714844, -2.3886719, -1.6191406, 1.8408203, 0.3935547, 0.9951172, -0.73876953, 0.83935547, -1.4296875, -2.0390625, -0.19165039, 1.9638672, -0.6464844, 2.1367188, 4.9296875, -0.4951172, -1.2011719, -1.4306641, -0.9121094, -0.36791992, 1.0615234, -0.1348877, 1.2041016, 0.64208984, -1.1279297, 1.0546875, -0.22583008, 0.9296875, -1.0195312, -0.6621094, -0.9316406, -0.45996094, 1.5517578, -1.1943359, 1.9541016, -0.61083984, 5.0664062, 1.2539062, -0.62646484, -0.67285156, 1.9277344, 3.0214844, 0.19677734, -2.6347656, -1.0175781, -0.88671875, 1.2832031, -1.2861328, -0.4169922, -1.1513672, -1.7509766, -0.3486328, -1.0947266, 1.3300781, 3.296875, -0.60595703, -2.3027344, 0.51464844, -1.1455078, -1.1044922, -1.0361328, 0.2956543, 0.26879883, -0.90625, -0.5410156, -1.0771484, -0.70410156, -2.6113281, -1.8759766, -4.1835938, 1.0595703, 2.3007812, 2.5664062, 1.2646484, -2.2441406, 0.124938965, -1.4433594, -0.71240234, 0.9213867, 0.73828125, 0.87353516, 0.9291992, 0.91308594, 1.296875, -1.7646484, -0.671875, 0.29907227, -0.60595703, 0.099731445, -1.4873047, 1.2626953, -0.9604492, -2.2773438, 2.265625, 0.2902832, 3.8261719, -3.046875, 0.52783203, -0.14074707, -1.0654297, -0.91503906, 1.2675781, 0.034057617, -0.60839844, 3.484375, -0.57421875, 0.43676758, -0.55371094, 0.3071289, -0.2548828, 1.7939453, -1.0800781, -0.6933594, -2.5996094, 2.8261719, -1.5917969, -0.12322998, 2.8515625, 1.8486328, 1.3359375, 2.1894531, 1.6650391, 0.30297852, 0.7319336, 0.6645508, 2.2246094, 1.0869141, 0.46118164, -0.5629883, -0.17614746, -1.4433594, -2.3730469, -0.83691406, 2.4804688, 0.030044556, 1.7050781, -0.47021484, -1.1982422, 0.23620605, -3.7226562, -1.5537109, -0.5541992, 2.8730469, 0.3034668, -0.17602539, -0.013374329, -0.26538086, 3.3867188, 1.2402344, -0.9536133, -0.5239258, 1.8056641, -1.0878906, -0.35107422, 1.7744141, -1.1484375, -1.4941406, -2.1035156, 0.54052734, 0.65771484, -0.11669922, 2.3066406, -0.23400879, -2.4726562, -1.7011719, -0.69921875, 1.4580078, -3, -0.43115234, 0.41357422, -1.9394531, -0.16906738, -1.1416016, -1.1220703, -3.2753906, 1.2792969, 1.9599609, -0.57910156, 0.024505615, -1.8300781, -1.5947266, -4.1601562, -1.8496094, 1.8886719, -0.26879883, 0.8510742, 0.1373291, -3.0078125, 0.21826172, 0.3696289, -0.74121094, 0.11529541, 1.9892578, -2.5585938, -1.0664062, -0.5229492, 2.6582031, 0.67871094, 0.5776367, -1.8710938, -1.6914062, 0.14355469, -1.4736328, -1.7119141, 0.17822266, 0.60595703, 0.890625, 1.3427734, -0.6538086, -0.9433594, 4.2070312, 0.30639648, -1.8632812, 0.9838867, 1.1083984, -0.36108398, 2.0839844, -1.0595703, 0.42456055, 1.0859375, 0.108947754, -0.9902344, 4.5039062, 0.09655762, 1.140625, -0.6660156, 0.21496582, 0.082458496, -0.8095703, 1.5859375, -0.15258789, 0.08178711, 1.2226562, -1.9716797, -0.99316406, -1.0234375, -3.0566406, -1.6367188, -0.3581543, -1.3378906, -0.13916016, -0.28149414, 1.3105469, 3.0449219, -1.3271484, 1.8066406, 1.6835938, -0.07537842, -1.4677734, -0.54541016, 1.1367188, 0.47338867, -0.9082031, -2.28125, -2.203125, -0.5541992, -0.7084961, -0.96484375, 1.1269531, -0.30639648, -0.5161133, -0.9428711, -0.38061523, 1.1621094, 2.7714844, -0.35620117, 0.07562256, -1.7880859, 0.11517334, 0.20019531, -0.71777344, -1.015625, 0.040008545, -0.2668457, 0.035949707, 2.7402344, 3.1660156, -1.3857422, -0.39794922, -0.38671875, 0.7734375, 0.5410156, -2.9472656, 3.3886719, -3.2207031, -1.3818359, -0.09442139, 0.12164307, -3.2675781, 0.09777832, 1.765625, 2.0078125, 0.41430664, 2.4609375, 1.7490234, -2.5039062, 0.9194336, -0.101257324, 0.5180664, 0.6279297, 0.41210938, -0.39257812, 3.7070312, 1.0722656, 0.8876953, -1.3339844, 1.1572266, -0.7519531, 0.96777344, -3.2285156, 0.8203125, 0.29492188, 1.6455078, 3.2695312, 1.03125, 2.0429688, 1.6240234, 0.54052734, 2.1523438, -2.0253906, 3.125, 1.2529297, 2.0390625, 0.36206055, -0.4482422, -0.5888672, 0.36499023, -2.0996094, -0.7792969, 0.92285156, 1.3623047, -0.003850937, -0.7089844, -1.7304688, -1.3955078, -1.2304688, 1.5058594, 0.029327393, 1.5869141, 0.2783203, 1.078125, 1.7470703, -0.5629883, 0.8852539, 0.79296875, -0.96533203, 1.4052734, -2.0703125, 0.46484375, 0.99365234, 0.69091797, 1.6660156, 2.0429688, -0.75878906, 0.97021484, -1.1689453, -0.6723633, -0.44140625, 0.8803711, 0.6567383, 1.1601562, -2.0527344, -1.7109375, 2.1542969, 2.25, -0.21508789, 2.9277344, -1.9755859, -0.21911621, -1.9873047, 0.8730469, -0.4482422, -0.9946289, -1.859375, -2.4960938, 3.1113281, -1.6757812, 0.3293457, -2.7910156, 0.65625, 1.0400391, -0.70166016, 0.8803711, 1.5136719, -0.23071289, 2.9160156, -0.89160156, 1.4462891, 0.64160156, -1.6796875, -0.3552246, -0.89746094, 2.6757812, -0.7939453, 0.29858398, -0.2841797, 3.9628906, 1.3564453, 0.90771484, 0.011756897, 0.29833984, -0.12890625, -0.20056152, -0.21398926, -1.7919922, 3.0566406, 0.017730713, 1.5322266, 2.9082031, -1.5009766, -0.89208984, 0.90283203, 0.90771484, 2.125, 1.5263672, 1.0654297, 0.6723633, -2.4980469, -0.30908203, 2.1308594, -0.8833008, 1.2597656, 0.17993164, -1.2060547, 0.06555176, 1.4453125, -0.1784668, -0.50634766, -0.14294434, -0.5986328, 0.35180664, 0.73339844, 0.5957031, -1.0380859, 1.1425781, -0.9169922, 2.5605469, 2.3476562, -1.7480469, 1.0351562, 0.7324219, -1.3203125, 0.112854004, 1.6455078, 0.88964844, 2.7363281, -2.7792969, -3.6601562, -0.8730469, -0.83740234, -0.0791626, 3.6640625, 0.59228516, 1.0947266, 0.7607422, -0.37182617, -2.9453125, -3.1386719, -0.59375, 0.8071289, -1.0585938, -0.8623047, 0.921875, 0.26611328, 2.1074219, 1.3583984, -1.5429688, 0.091552734, -1.3398438, 1.0429688, 1.1279297, 1.8476562, 1.34375, -0.23095703, 3.109375, 0.9291992, -0.7583008, -2.0527344, 2.1875, 0.2553711, -0.32592773, -0.9296875, -0.71728516, -0.9194336, 0.38427734, 0.18017578, 2.3242188, 1.9277344, -0.47094727, -1.3486328, -2.6308594, -3.0351562]}, "B07CVNQKR6": {"id": "B07CVNQKR6", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Specifications:\nFeatures automatic shut off system for low oxygen\nEasy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\n", "embedding": [-0.79785156, 2.0078125, 2.4492188, -0.5395508, -0.7338867, 0.8647461, 0.037139893, -1.640625, 0.09716797, 2.3613281, 1.5371094, -0.15783691, 0.39038086, -0.99072266, 0.9448242, 0.095703125, 0.7524414, 2.0175781, 1.2216797, -0.08862305, -0.69433594, -1.4609375, 2.9023438, -1.0400391, 0.9189453, 2.1464844, 1.7988281, -1.4951172, 1.0019531, 0.74902344, 2.0703125, 0.5336914, -2.3203125, 0.55615234, -1.8144531, -0.06616211, -2.9648438, 2.4863281, -2.7128906, 0.31152344, -1.5517578, 0.40576172, 1.8251953, -0.6645508, -0.96240234, 0.02104187, 2.7734375, 0.60839844, 0.5214844, -1.4541016, 2.015625, -0.4020996, -0.5805664, 0.98583984, -3.0898438, -0.8208008, -0.3395996, -2.5117188, 1.5410156, 0.9243164, 1.5419922, -2.0625, -2.1621094, 1.8955078, 0.35058594, -0.02041626, -1.6220703, 0.43554688, -2.7480469, 0.4560547, 2.5585938, 0.60595703, 0.12658691, 0.26342773, -0.81103516, 1.3867188, -3.625, 2.3261719, 2.359375, 3.4355469, -2.0742188, 2.125, 0.36157227, 0.5395508, -0.40429688, -1.8964844, -1.1259766, 1.3339844, 3.484375, 2.8535156, 0.3881836, 3.0507812, -0.33496094, -2.2617188, 0.7832031, -1.6347656, 0.81396484, 1.4501953, 1.0078125, 0.79785156, -0.41357422, -0.41210938, -0.20007324, 1.1914062, 1.1328125, 0.5024414, 1.2636719, -0.11437988, -2.6210938, -0.15649414, -2.5371094, 0.14562988, 1.3486328, -0.13635254, -3.078125, -1.15625, -0.061187744, 0.26733398, 4.7617188, 1.4941406, 4.1210938, 1.8203125, 2.3222656, -2.3925781, 0.17919922, 0.8408203, -1.1621094, -0.10235596, 0.9667969, -1.1220703, 0.16796875, -0.34179688, 1.3349609, -0.057800293, -0.5673828, -2.796875, -2.1894531, -2.1210938, -3.1074219, -0.05279541, -1.8076172, -0.6464844, 2.1679688, 1.5136719, -1.8574219, 0.008354187, -0.9042969, -0.42089844, -0.46777344, -0.3425293, 1.6728516, -3.4355469, -1.7792969, 1.0820312, 1.5117188, 1.3515625, 0.05078125, -1.2958984, 3.4453125, 1.8691406, 1.6259766, -2.3613281, -0.24316406, 1.3232422, 0.22814941, -1.5791016, -0.20056152, 2.21875, -1.2304688, 0.43676758, 1.4755859, -0.62402344, 1.1328125, -1.2958984, -0.07562256, -2.2207031, 1.21875, 2.2832031, 1.3896484, -0.87353516, -3.5058594, -0.34887695, -0.6621094, -0.38964844, 0.5595703, -2.359375, -3.2226562, 0.34033203, -0.72998047, -0.81689453, -1.7734375, 0.96484375, -0.6567383, -0.4399414, 1.109375, -2.5761719, -1.4248047, -1.3964844, 0.47216797, 0.19335938, -1.296875, -0.5258789, -1.4736328, -1.6962891, -3.9511719, -3, 0.7661133, -2.9023438, -0.81152344, 0.9057617, -0.7573242, -0.089538574, 0.32177734, -0.90966797, -0.03942871, -2.5273438, 1.9453125, -0.0949707, 1.9921875, 4.2226562, -0.13098145, 1.3359375, -0.07714844, -0.48388672, -0.5605469, 2.1953125, 0.8388672, -0.29296875, -0.09197998, -3.1875, 0.8222656, 0.35253906, 2.0390625, -1.1337891, -1.8378906, 2.4882812, -0.062072754, -1.3496094, 1.1513672, -0.0670166, -1.1728516, 0.40576172, -2.0625, -0.8618164, 0.6660156, 3.609375, 2.0878906, 1.0068359, 1.4345703, 1.8466797, -0.3413086, -1.3320312, 1.0283203, -0.30126953, -3.5234375, -0.43066406, 0.13012695, 0.24829102, -0.69384766, -2.1269531, 1.7060547, 1.8720703, 0.3828125, -2.4433594, -0.9399414, 0.30908203, 2.7578125, 2.078125, -0.34155273, 0.13964844, 1.0664062, 2.4941406, 0.7216797, 1.1777344, 0.265625, 2.5839844, 1.0361328, 2.5390625, -0.8100586, -0.11218262, 1.9550781, -0.31225586, 0.38745117, -1.7734375, 0.1060791, 0.67871094, 0.111206055, 0.44848633, 1.09375, 1.1357422, 2.1347656, -1.3779297, -0.9433594, -0.578125, -0.48120117, 2.9785156, 2.5820312, 0.055114746, -1.5800781, -0.3930664, 1.1953125, 2.6113281, -2.78125, -0.8901367, -0.84033203, -1.6376953, 0.8457031, -0.00065231323, 1.3017578, 0.8671875, 0.24267578, -2.8203125, -1.328125, -2.25, -4.5898438, -0.8364258, 1.9853516, -2.2460938, 2.7617188, 0.5209961, -0.36938477, -0.45996094, 0.9033203, -2.359375, -1.1035156, 0.5209961, -0.9326172, -1.8291016, -0.87109375, 0.5834961, 0.9091797, -2.0546875, 1.7939453, -1.8193359, -1.4404297, 0.7949219, 0.22045898, -0.82470703, 0.23291016, -0.026046753, -1.3828125, -1.28125, -1.1728516, 1.7304688, -0.6230469, -1.6142578, 0.08929443, 1.1503906, -0.3083496, -2.1523438, 0.5151367, -0.2866211, -1.5966797, -4.3359375, 2.5058594, 0.38134766, 0.10284424, 0.33007812, -1.0878906, -0.8208008, -1.0283203, -1.1875, 0.38623047, 0.5883789, 0.3725586, -0.65771484, 2.3945312, -3.8535156, 2.2539062, -1.8349609, 1.8476562, -0.5966797, -1.4179688, -0.89501953, -0.21118164, 2.8183594, 0.28295898, 0.6923828, 1.4794922, 1.0751953, 0.37719727, 1.6923828, 1.6601562, -0.76660156, -2.3300781, 0.49902344, -1.15625, -1.1865234, -1.390625, -1.2490234, -0.58251953, -1.0751953, 0.030303955, 1.6894531, -2.2109375, 0.5209961, -0.0060310364, -0.84472656, -1.7421875, -2.5234375, 0.87939453, 1.375, 0.3017578, -2.859375, 0.7910156, -1.4951172, -0.6928711, -3.7988281, 1.2724609, -1.109375, 0.30786133, 2.75, -0.75, 0.8613281, 0.7314453, -5.1679688, 1.8027344, 3.5996094, -0.31103516, -3.0644531, -0.37402344, -3.9882812, -0.89501953, -0.34375, 0.41357422, -0.28100586, 3.6542969, 0.03475952, 1.4326172, 2.8222656, 4.078125, 0.5307617, 0.8671875, -1.8076172, 2.7402344, -2.1269531, -2.0957031, -0.12121582, 2.4296875, -4.046875, -1.4101562, 1.6484375, -0.6401367, 1.6855469, 2.4160156, -0.6635742, 0.56347656, 2.3945312, 3.0585938, 3.8554688, 0.31982422, -1.3378906, -3.2519531, 1.1904297, 3.2617188, 3.1992188, -2.7421875, -0.7729492, 0.6464844, 1.9101562, 0.7661133, -1.6806641, 0.08325195, 1.6865234, 0.24829102, -0.25585938, 2.1464844, -0.8339844, 0.5283203, -0.18908691, 0.6533203, 0.48535156, -1.9980469, 0.15612793, 2.234375, 1.359375, -0.18237305, 0.42773438, -1.4541016, -1.1796875, -0.48828125, 1.3076172, 0.890625, 0.1784668, 0.8027344, -3.1953125, -1.5947266, -0.06933594, 1.4921875, -2.015625, -1.3076172, -0.7416992, 0.41357422, -0.8779297, 0.43579102, -2.4375, -0.44091797, -0.1340332, 3.3769531, -0.60058594, -1.2929688, -0.6767578, -1.3154297, 1.4775391, 0.5620117, 0.31860352, -1.6806641, 0.2614746, -0.859375, 1.6796875, 0.3869629, 1.9619141, 0.3857422, -2.7246094, 1.6230469, -0.6699219, 0.67529297, 1.90625, 0.72558594, -1.3193359, 3.6816406, -0.38110352, 1.5205078, -0.84277344, 1.4804688, -0.87158203, -1.1855469, 1.3681641, -2.703125, 0.734375, -1.6679688, -3.8789062, -0.56640625, -3.0078125, 0.5576172, 3.6269531, 0.5830078, 1.0292969, 0.27172852, -0.10192871, -1.609375, -3.0664062, -1.484375, 1.0039062, -2.8457031, 0.8222656, 3.0039062, 0.24597168, -2.2597656, -3.2324219, 2.3613281, -0.9926758, 1.0107422, -1.0878906, -0.8051758, 1.6113281, -1.8291016, -0.35913086, -0.7529297, 0.6928711, 0.3713379, -0.7944336, 0.21911621, -0.48779297, 1.4882812, 0.88378906, -0.82958984, -1.765625, 3.21875, 1.5947266, -2.1191406, 1.7441406, 1.4248047, 1.0517578, 2.1757812, -2.9121094, 0.28125, -0.27807617, 2.3574219, -0.7783203, -0.78125, 0.07086182, -0.21020508, -0.22265625, 0.70410156, 0.15234375, 2.3085938, 1.7236328, -3.1835938, 1.1650391, -1.9101562, -2, -1.7060547, -2.109375, -3.3046875, -0.6791992, -0.6879883, 1.2636719, -1.8320312, -2.5449219, -0.80029297, 0.2697754, 1.0478516, 2.3046875, 1.7216797, 2.0546875, -3.25, -0.065979004, -0.46923828, -1.1376953, 0.6738281, -1.1503906, -0.5209961, -1.0400391, -0.34545898, 0.32128906, -2.0800781, 1.4853516, 2.1132812, -1.8271484, 0.045562744, -0.7988281, -0.76416016, -0.2220459, -1.2919922, 3.4609375, -1.1542969, 4.015625, -1.6230469, 1.3369141, -0.70703125, -0.86083984, -1.2783203, 0.49047852, -1.7685547, 1.1083984, 0.59472656, 1.2128906, 2.4589844, -0.921875, 0.105773926, 0.29785156, 1.7197266, -0.48876953, 0.41333008, -1.1445312, 1.3398438, -0.62890625, -1.8183594, 1.2900391, -1.2578125, 0.12023926, 3.2089844, 3.7441406, 1.4501953, -0.058898926, -0.5673828, 0.16967773, 1.0488281, 1.6152344, 1.8398438, 2.3535156, -1.6142578, -2.3300781, -1.5253906, 2.28125, -0.3095703, 3.6582031, -0.1977539, -2.1582031, 0.15222168, -2.4414062, -2.6484375, 0.2253418, 1.0634766, -0.6230469, -2.4453125, -0.6777344, 0.041229248, 2.9902344, 4.421875, 0.4934082, 0.9614258, 0.7602539, 0.6225586, -0.080566406, 2.4414062, 1.0957031, -1.2851562, -0.7011719, 2.3945312, -0.99902344, 1.3642578, 0.76708984, 1.2529297, -2.2363281, -0.5136719, -1.6806641, 3.1582031, -1.5742188, -1.6328125, 0.78466797, 0.10308838, 1.0039062, -1.9052734, -2.640625, -2.09375, -0.78515625, 1.2441406, -1.5244141, -1.6669922, -2.8320312, -3.5039062, -3.8378906, -1.5136719, 0.609375, -0.22973633, -1.6855469, 0.6508789, -2.515625, -0.9038086, 1.2802734, -0.37036133, -0.69189453, -0.51464844, -2.3046875, 1.5751953, -0.55908203, -0.36157227, -0.08129883, 1.7900391, 0.8852539, 0.68066406, -0.7519531, -1.2001953, -3.3320312, 0.8671875, 0.60302734, -0.35107422, 0.42797852, -0.6645508, -0.9404297, 1.6816406, -0.50439453, -1.0048828, 0.3371582, 2.2402344, -1.9863281, 2.1777344, -2.1503906, 2.8359375, 0.6435547, -0.5708008, -1.1621094, 0.71240234, 4.0703125, 0.38134766, 0.69091797, -1.0849609, 0.1887207, -0.00026893616, 1.3945312, -1.0898438, -1.5029297, 2.4199219, 0.7207031, -0.23242188, 0.9067383, -3.0078125, -2.3457031, -1.0419922, -0.8105469, 1.0595703, 0.23071289, 0.1550293, -0.7714844, -0.7236328, 2.5703125, 0.05529785, 0.68408203, -2.0917969, -0.94384766, -1.5869141, 1.7314453, -0.46411133, -2.2070312, -0.9511719, -2.4082031, -0.68115234, 0.46972656, 0.4663086, -0.8027344, 0.52685547, 0.060424805, 1.2792969, -2.7011719, 4.9882812, 0.5048828, 0.2927246, -3.328125, 1.6386719, 2.1621094, 0.9716797, -1.6357422, 1.2919922, 2.2910156, -0.9765625, 1.5507812, 2.5859375, -2.6308594, -0.90722656, 0.42871094, -0.6279297, 0.51953125, -1.3203125, 3.1464844, -1.1660156, -0.16015625, 0.23339844, -0.51953125, -2.9003906, -0.5888672, 2.8554688, 0.32299805, 1.2099609, 1.6738281, 0.7963867, -0.40161133, -0.23718262, -0.79296875, -2.3417969, 0.3930664, 1.0263672, -0.9511719, 0.9667969, 0.41918945, 3.2871094, 1.6523438, 2.5644531, 0.22680664, 0.85058594, -2.296875, 1.3173828, 1.5625, 1.7724609, 1.4257812, 2.2949219, 2.8105469, 1.8291016, -0.33618164, 1.2285156, -1.4882812, 1.140625, 0.41308594, 1.8701172, -2.296875, -1.8681641, -0.048309326, 1.0761719, -3.234375, -2.7558594, 0.84277344, 0.60791016, -3.2285156, 1.3291016, -1.4482422, 1.4082031, -3.4550781, 2.0585938, -0.68359375, 0.51123047, 0.24645996, 0.31469727, 3.5839844, 0.71533203, -1.375, -0.26611328, 0.44555664, 0.40063477, -3.1640625, 0.3947754, 0.36987305, -1.1044922, -0.80029297, 3.8378906, 0.921875, 1.8535156, -1.3916016, 0.29638672, -0.22827148, 0.3137207, -0.4814453, -0.6455078, -2.3730469, -1.1054688, 0.9375, 3.1484375, 0.16723633, 2.0605469, -0.9765625, 1.1572266, -1.2177734, -0.11773682, 0.10620117, 0.044036865, -0.44458008, -2.234375, 3.3125, -0.99609375, 1.6064453, -0.5209961, 0.2836914, 1.6455078, 0.0134887695, -0.72998047, 1.0351562, -0.9868164, 4.4882812, -0.45483398, -3.0625, 1.1279297, -0.7236328, -0.94628906, -0.98876953, 0.3786621, 0.93652344, 0.68408203, 0.75878906, 1.7490234, -0.14453125, -1.2021484, -0.10003662, 0.014801025, -0.28466797, -0.49902344, -1.5820312, -1.3125, 2.3222656, 1.5449219, -0.018615723, 0.36767578, -1.375, 0.43408203, 0.65966797, -0.7182617, 0.4326172, 0.73095703, 1.5, -0.06213379, -2.625, 0.6816406, -0.034179688, -1.6123047, 1.9599609, -1.9814453, -1.6230469, 2.7695312, -1.0419922, -0.68115234, -0.4333496, -0.58740234, 3.234375, 0.26464844, 0.34716797, -0.08654785, -0.44189453, -0.21228027, 0.010467529, 1.3447266, 3.0742188, 0.63916016, -0.68896484, 0.29516602, -2.3847656, 0.9116211, 1.9580078, 1.9697266, 0.78125, -1.6699219, -3.5722656, -0.6513672, 0.38305664, -0.5361328, 2.2597656, 3, 1.4863281, 1.1181641, -1.8457031, -2.1738281, -1.5673828, -1.6992188, -0.50341797, 0.9301758, 1.1728516, -0.19018555, -0.8046875, -0.24243164, 1.1855469, 0.5107422, -1.4267578, 0.2536621, -0.092041016, -0.49804688, 1.9169922, 1.15625, 0.60839844, 1.2158203, 0.83691406, 2.2636719, 0.47265625, 0.5078125, -1.4755859, -0.47680664, -2.8789062, 0.46533203, -3.5117188, 0.640625, 0.9707031, 0.12756348, 1.1054688, -1.7998047, 1.1142578, -4.8164062, -0.96875]}, "B07QLDTY37": {"id": "B07QLDTY37", "original": "Brand: Cibicon\nName: Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)\nDescription:
          Flame Retardant and Absorbent Material

          The surface fabric of the Under Grill Mat is made of flame retardant material.

          but the backing material is not flame retardant material.

          This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

          from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

          Perfect Pretection

          The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

          surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

          BBQ mess.This strong material is made from 100% recycled plastic bottles.

          Easily Use

          The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

          Our material is environmentally safe. This product is safe for your entire family, including your pets.
          .

          If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

          100% NO HASSEL Lifetime Guarantee.
          \nFeatures: Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ\nPerfect Protection:This material is made of flame retardant material, It won't burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath.\nGood Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.\nEasily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size.\nSuggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.\n", "embedding": [-0.18261719, 1.2861328, 2.0683594, -1.3125, 0.061706543, -0.031433105, 0.97802734, -1.4853516, 1.0859375, 2.3710938, -1.8251953, -0.3955078, 1.9414062, -4.34375, 2.0703125, -0.04260254, 1.3925781, 1.7431641, 2.4316406, 0.22058105, 1.1640625, 0.69189453, 0.36499023, -0.86621094, 0.77978516, 1.0722656, 4.21875, -0.32250977, -0.2849121, -0.23217773, 1.9189453, 0.62402344, 0.34838867, 2.6269531, -3.6582031, -1.3164062, -0.36401367, 2.9902344, 0.60058594, 0.43701172, -0.734375, -4.5273438, 2.5507812, 1.0869141, -1.9892578, 2.3105469, -0.63916016, 2.2910156, 0.3486328, -5.265625, 2.4453125, -0.092163086, 0.72216797, -1.6162109, -2.6972656, 2.7246094, -0.4326172, -0.6689453, 0.28759766, -0.82373047, 0.67041016, 0.11175537, -0.2010498, 1.7929688, -0.21374512, -0.88720703, -0.007587433, -1.6123047, 0.94384766, -0.11242676, 1.0595703, -1.1386719, -0.66845703, -0.16821289, 0.6738281, -0.18359375, -0.5600586, 0.11236572, -0.5600586, -2.7597656, -0.12854004, 4.5351562, -0.5517578, -1.5029297, -0.007659912, -1.3408203, -2.7089844, 0.75878906, 1.9931641, 0.8413086, -0.22814941, 2.6503906, -1.5654297, -4.5507812, 0.35546875, -2.3867188, 1.7363281, 0.039489746, -0.24975586, 2.2480469, -0.62939453, 0.13659668, -0.49414062, 2.3300781, -3.5234375, -1.4902344, 2.9550781, -0.9267578, 1.1210938, -0.058258057, 1.9921875, 0.6357422, -0.5732422, 0.030426025, 3.3574219, 0.52978516, 0.8930664, 0.95947266, -0.013435364, 1.8789062, 4.3125, 0.58691406, -1.0253906, -1.2958984, -0.1652832, -0.80322266, 0.7758789, 1.8232422, 3.1269531, -2.9375, 2.71875, -0.04876709, -1.1972656, 0.7729492, -1.5019531, -1.4326172, -0.6303711, -0.99121094, -2.0234375, 1.4394531, -0.99853516, -0.9580078, 1.0449219, -0.34399414, -3.6796875, 0.53515625, -3.5175781, 3.2421875, -1.8984375, -1.7861328, 0.6040039, -0.24523926, 1.1142578, -1.0390625, 0.9394531, -1.2011719, 0.20288086, -2.5917969, 1.8916016, 2.1953125, 2.1660156, -1.5966797, 0.03753662, -1.9042969, 1.4248047, -2.6699219, -2.0585938, 1.1357422, -1.0927734, 1.203125, 0.20605469, -2.609375, 2.0058594, 0.037384033, 0.14709473, -0.75, 1.2216797, 2.25, 0.1340332, -0.98779297, 1.5107422, -2.2460938, -0.44335938, 1.4863281, 0.6958008, -0.4716797, -0.050048828, -1.4365234, -0.21191406, -1.1708984, -0.32592773, 2.2265625, -1.6533203, -0.33642578, -3.0097656, 0.009597778, -2.2753906, -1.2958984, 1.0839844, -0.9199219, -1.1845703, -1.8212891, -1.3115234, 1.0058594, -3.5390625, -1.9433594, -0.8066406, 2.1347656, 1.7285156, -0.63916016, -0.39916992, -1.2822266, 1.0361328, 0.96484375, -0.47802734, -0.453125, -1.2451172, 0.05239868, 1.5029297, 2.3203125, -0.99365234, -0.3227539, -1.0732422, 3.9199219, -0.82177734, 1.125, -0.13330078, 0.73828125, -1.5654297, -1.3339844, 1.0410156, 0.017730713, -0.8208008, -0.8208008, -0.48413086, 0.8408203, 1.5546875, -0.13183594, -1.6982422, -0.96191406, -1.0527344, -1.2783203, -2.7148438, -0.43139648, 0.27392578, 0.83740234, -0.1730957, 2.09375, -0.7607422, -1.2490234, -0.50878906, 2.5644531, 1.890625, -0.09991455, -0.36254883, 0.36523438, 0.44311523, 0.029571533, -2.5429688, -0.6269531, -1.0527344, -0.1138916, -1.8505859, 1.9824219, 0.2442627, -0.005168915, 1.0878906, 0.15319824, -2.9160156, -2.1914062, 0.015808105, -0.014877319, -1.2304688, -0.8173828, 0.80810547, -0.64160156, -1.5810547, 1.1884766, 0.38183594, -1.0595703, -0.87353516, 3.140625, 0.90185547, -0.25195312, -1.8945312, -0.28881836, -2.515625, -0.79345703, 0.57128906, -0.025924683, 2.5820312, -0.16357422, -1.9179688, 1.8710938, 0.3491211, -0.06829834, 2.7109375, 0.8417969, -1.4589844, -0.88134766, 1.9287109, 2.7050781, -0.9848633, 1.1503906, -0.5756836, 0.4970703, 1.1923828, -1.1630859, -1.5, 3.5761719, 0.4807129, 1.2138672, 2.6425781, 1.5517578, -2.3984375, -1.2158203, 1.5859375, -0.35986328, 1.1601562, -0.7963867, -1.4443359, -0.14221191, 0.18139648, -1.9726562, -2.953125, 1.1767578, -0.089538574, -0.53808594, 0.94433594, 0.059448242, -0.5439453, -1.7128906, -0.22619629, -0.01499939, -0.5722656, -1.1074219, -1.8486328, -0.46020508, -1.1396484, 0.16027832, -1.3544922, -0.3330078, -0.13293457, -1.2333984, -0.5786133, -2.4003906, -1.7392578, -1.0986328, -0.19665527, 1.578125, 0.6015625, 0.35766602, 0.6904297, -3.4238281, 0.31176758, -0.1463623, -0.3017578, 1.6582031, -1.2011719, -0.021438599, -0.22436523, 1.1992188, 1.5546875, -0.4958496, 1.3759766, 1.1328125, -3.375, -2.7714844, 2.1738281, -0.59814453, 0.20153809, -1.9511719, -0.44702148, -0.8432617, -1.3398438, -1.7363281, 1.4697266, 2.3144531, 0.48535156, 0.921875, -1.6152344, -0.2536621, 0.7324219, 1.3388672, -1.3544922, -0.94189453, 0.41015625, -1.7519531, -1.2441406, -2.109375, -1.7285156, -1.4677734, 0.4729004, -0.49438477, 2.4882812, 0.025360107, 5.015625, -2.4003906, -0.34399414, 0.70947266, 1.8359375, -0.45263672, 1.1318359, -2.3515625, -0.5708008, 0.24157715, -0.97021484, -2.1347656, 1.0810547, -1.5751953, -0.083740234, 0.68652344, 0.86279297, 1.2246094, -0.5913086, -2.6386719, -0.6640625, -1.1894531, -0.6176758, 1.6738281, 0.25805664, -1.4052734, -0.85302734, -1.6357422, 2.7539062, 0.16796875, 1.0214844, 1.2695312, -1.2128906, 2.3730469, 1.6376953, -1.1767578, 1.3876953, 0.82666016, 1.5527344, -2.8691406, -1.6289062, 2.1757812, 0.7758789, -1.6259766, -0.05227661, 0.16833496, -0.5800781, 0.37573242, 0.18554688, -0.30297852, 0.84521484, 0.87841797, 3.1445312, -1.6240234, 2.5078125, -0.7236328, -0.44702148, -0.44604492, 1.0244141, 2.2304688, 1.75, 1.5371094, -0.31640625, 1, -0.95410156, -2.0976562, 0.39868164, 1.0957031, 0.28222656, -0.765625, 0.1352539, -0.5942383, 0.22998047, 3.7363281, -1.5341797, 0.83203125, -1.7060547, 0.068725586, 1.4169922, 0.2619629, -1.3808594, -2.9199219, -1.3496094, 0.81152344, -3.0175781, 0.18835449, -1.9375, -1.2626953, 1.5595703, -2.7597656, -2.4980469, -1.2792969, 3.6074219, -1.0380859, -2.1816406, -1.8994141, 2.25, 0.38305664, -2.5742188, 0.6464844, 1.9912109, 0.07067871, 1.8232422, 0.08251953, -1.3486328, 2.625, -1.9140625, 1.5927734, 0.9008789, -1.7988281, -0.8286133, -1.9921875, -0.67871094, -1.1181641, 0.4152832, 0.68603516, 1.0039062, -1.3916016, 1.1621094, -1.9658203, 0.41357422, 0.6347656, -1.7939453, -0.6855469, 1.3623047, 1.7070312, 0.78564453, 0.31811523, 4.078125, 1.1679688, -0.33813477, 0.6821289, -3.375, -0.8354492, -1.1992188, -3.5410156, -1.1289062, -0.6748047, -2.1640625, 4.1054688, -0.26000977, 1.3955078, 4.1171875, 0.16552734, 0.06604004, -0.48461914, -1.7578125, -1.4589844, -1.2226562, -0.24230957, 2.9628906, 0.78808594, -0.34960938, -0.95458984, -1.2138672, -2.2070312, 1.5927734, 0.6791992, 1.5947266, -0.5048828, -1.0615234, 0.20007324, 0.9794922, -0.96435547, -0.8051758, 1.7333984, 0.7895508, 0.4506836, 1.8779297, -0.74658203, 0.7524414, 0.50634766, -1.1621094, -1.1113281, 1.3847656, -1.3330078, -1.7880859, 2.8027344, -1.6748047, -3.0839844, 1.171875, -0.12817383, 2.8769531, -0.8769531, -1.2558594, 0.64697266, -0.5336914, 0.62353516, 0.16723633, 2.671875, 0.3774414, -0.89990234, -2.84375, -0.111816406, 0.90966797, -2.5625, -1.3876953, 0.5024414, 0.10925293, 0.7392578, -1.6669922, -1.3925781, -0.22790527, 0.078552246, 0.67089844, -1.8300781, 3.0253906, 0.41381836, 0.8334961, 2.7363281, -3.1425781, 0.072143555, 2.5488281, -2.9804688, -0.26464844, 0.75634766, -0.27856445, -2.9628906, 1.3935547, 0.9404297, -1.4335938, -1.9228516, -0.35180664, 0.119018555, 0.2697754, -2.2890625, 1.2509766, 0.41552734, 0.46362305, 0.74609375, -1.2724609, 1.8710938, -0.48339844, 1.3789062, 3.3710938, -1.4121094, -0.21704102, 2.546875, 0.30639648, 1.0166016, 2.546875, 1.4619141, 2.2851562, -0.6933594, -0.21923828, -0.26293945, 0.14624023, -3.5722656, 2.3867188, 0.15161133, -0.62060547, -1.1025391, -0.7504883, 1.0068359, 4.15625, 0.42333984, 0.78759766, -0.44311523, -2.0917969, 2.2695312, 1.3203125, -1.8925781, 0.84375, -0.6513672, -0.32666016, 2.5488281, -0.8833008, -2.7324219, -0.9321289, 0.6015625, 0.49194336, 0.5595703, -0.44628906, 0.3630371, 3.1621094, -0.7495117, -0.41064453, -1.5566406, -1.9023438, -0.06323242, -1.390625, -1.1699219, -0.85253906, 0.35742188, 3.1445312, -1.3378906, -1.5947266, 1.4384766, -0.41479492, 1.2080078, 0.8022461, -0.8876953, -2.0703125, -2.7832031, -0.58447266, 1.1904297, 2.7128906, 0.5810547, 1.5498047, -1.9082031, 1.9433594, -3.125, 2.5585938, -2.171875, -0.9404297, 3.0078125, -2.4980469, 0.9375, -2.7363281, 1.5927734, 1.4755859, 0.24853516, 2.1503906, -1.2949219, -1.2607422, 0.38256836, -1.78125, -2.0644531, -1.2285156, -1.9257812, 0.12322998, 0.5, -0.16186523, -0.49389648, -0.23217773, 0.8540039, 2.0390625, 2.1679688, 0.11505127, -2.1484375, -2.3203125, -2.0566406, -0.76464844, -1.0673828, 0.86035156, -0.040405273, 3.4765625, -2.1875, -1.7763672, -1.4716797, -0.2368164, -1.8730469, -2.5410156, 2.3242188, -0.09753418, 0.2919922, 0.9121094, 0.004447937, -1.5283203, 3.3046875, 0.21655273, 0.4855957, 2.3261719, -0.9008789, -0.3347168, -1.3173828, -2.9375, 1.3144531, -3.9394531, 0.63916016, 0.7548828, -1.1464844, 2.3886719, 2.3496094, -0.8261719, -1.3095703, -0.025314331, 2.1933594, 2.6347656, 0.36694336, -1.5117188, 1.1835938, -3.5976562, -3.5332031, -0.36645508, -1.1777344, -1.3779297, -2.0195312, 0.62402344, 1.8496094, 0.5371094, 2.8085938, 0.08093262, 0.50341797, -1.7558594, 1.7080078, 1.8896484, 0.7285156, 1.1015625, 0.05807495, -2.4375, -2.4296875, 2.0703125, 1.640625, 0.5107422, 0.57666016, -1.4658203, -2.2675781, -0.019454956, 0.5629883, 1.0537109, 1.0410156, 1.5136719, 1.1728516, 0.5571289, -0.101867676, -2.4765625, 3.5410156, 1.2167969, 3.53125, -0.94628906, 2.5371094, 0.1628418, -4.8242188, 1.3486328, 0.67089844, -0.2529297, -0.11004639, -1.6845703, -1.1240234, -1.9521484, -0.90722656, -1.3339844, 1.3984375, -2.6464844, 1.2851562, 1.1708984, -0.16723633, 0.24975586, 3.5058594, -0.45581055, 1.3076172, 2.7109375, -0.17248535, -1.3535156, -1.3037109, -1.1894531, -0.27441406, 0.7998047, -0.4584961, -1.6279297, -0.55908203, -1.1005859, -1.4140625, -0.2541504, -0.6069336, 2.0371094, 0.89160156, 3.1289062, 4.9570312, 2.1621094, 2.5839844, 0.8388672, 3.4980469, 1.5410156, 1.3095703, 0.6953125, 2.9804688, 0.2253418, 1.6152344, -1.2597656, 1.1738281, 1.1132812, -0.42529297, 1.3095703, 0.30029297, 1.4775391, -1.9619141, 1.4472656, -0.57714844, 0.45898438, 1.0185547, 3.5859375, -2.2773438, 0.3371582, -1.2285156, 1.4501953, 3.4511719, 0.640625, 0.12756348, 0.7109375, 2.0097656, 1.6103516, -4.0507812, 1.4501953, 0.75341797, -1.3310547, -0.13781738, 2.875, -0.44213867, 1.3544922, 0.32543945, 0.84716797, 0.5883789, 1.2421875, 0.7792969, -0.50927734, 0.8935547, -1.5976562, 0.3605957, -1.3505859, -1.8408203, -2.4179688, 0.011703491, -1.0322266, -1.3125, 1.59375, 1.5976562, 2.4003906, 1.1542969, -1.9394531, -1.0146484, 0.37402344, 2.2773438, -2.7792969, 1.3876953, -1.4794922, -3.8125, -0.98583984, 1.4707031, 1.6826172, 1.2353516, 1.9404297, -1.6943359, 2.046875, 0.9926758, 0.7128906, -0.1829834, 0.087768555, -0.8183594, 2.4726562, -0.07421875, 3.15625, 0.8618164, 1.8203125, -0.0413208, 1.9550781, 3.3808594, -0.11602783, 0.45239258, 0.88378906, 0.77490234, 1.2011719, -0.014823914, 0.22509766, -1.1777344, -0.57666016, -0.2927246, -1.3574219, 0.29296875, -2.8496094, -0.11126709, 0.8466797, -0.0090789795, 1.0605469, -1.1601562, 0.14294434, 2.0175781, 2.2539062, -1.7880859, -1.3896484, -1.0410156, -0.42211914, -1.8574219, -1.8505859, 0.4404297, 0.5957031, -1.4824219, -2.1132812, -0.49609375, -0.3852539, 0.29663086, 0.5048828, 1.2265625, -3.1367188, -0.45092773, 0.8334961, -0.5463867, 1, 1.8632812, 0.41186523, -1.5283203, 0.09661865, -1.4951172, -1.5585938, -0.43310547, -1.2519531, -0.25585938, 3.3710938, 3.6484375, -0.59228516, -1.5517578, -1.5332031, 2.1308594, -0.7294922, 2.8476562, -0.2709961, -1.1464844, -0.5395508, -0.63427734, 2.6503906, 0.7636719, -2.7070312, -0.46948242, -0.19970703, 0.12487793, -2.2480469, 0.8017578, 0.39379883, 0.03994751, -0.34423828, 2.6621094, 4.140625, 0.98535156, 0.9404297, 1.484375, -0.4296875, -1.3486328, 1.3271484, -0.37329102, 2.3457031, 1.7783203, 0.68115234, 0.3408203, -0.859375, 0.03378296, -2.4746094, -0.8256836]}, "B002MET2CO": {"id": "B002MET2CO", "original": "Brand: Raypak\nName: Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater\nDescription: The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.\nFeatures: 406,000 BTU propane digital pool and spa heater\nMicroprocessor-controlled thermostat can be set precisely to your liking , set it and forget it\nCabinet and the internals are non-corrosive and rust resistant\nFeatures PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger\nAlso features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile\n", "embedding": [-1.6005859, 0.5151367, 2.21875, 0.2590332, 1.2646484, 1.9433594, 1.8935547, -1.6914062, -0.40454102, 2.40625, 0.6298828, 1.5703125, 1.7382812, 0.9272461, 0.9902344, -1.6943359, 0.5917969, 0.26049805, 2.390625, 1.9960938, -0.21679688, 0.7524414, 1.6640625, -0.64404297, 0.609375, 0.6230469, 2.21875, -1.4951172, -1.1533203, -0.08935547, -1.6992188, 0.9301758, -0.30200195, 1.8017578, -0.73339844, -1.8037109, -1.8457031, 1.7353516, -2.8417969, -3.0566406, -2.0566406, -1.6757812, -0.82958984, -1.21875, -0.73095703, -0.094055176, 0.8017578, -0.8720703, -0.23254395, 1.2958984, 0.8725586, -2.2910156, -0.69189453, 1.0458984, 0.70410156, -0.3828125, -0.1463623, -2.1210938, 2.8203125, 0.30126953, -1.5664062, -1.4042969, -2.3066406, 2.0664062, 0.1385498, 0.28881836, -1.2265625, -1.0556641, -1.8564453, 1.1982422, 2.1582031, 0.9692383, -1.4589844, 1.0888672, 0.1920166, -0.44262695, -2.4355469, -0.08441162, 4.09375, 1.5146484, -1.8984375, -0.2746582, -0.30566406, -2.0546875, -3.2773438, -0.1763916, -0.3996582, 0.08026123, 1.4335938, 2.96875, -1.9941406, 2.0664062, 0.0473938, -3.3183594, 0.25195312, -1.6835938, 0.57470703, 1.6230469, 1.2382812, 2.7792969, 0.3395996, -1.3417969, 0.54785156, 0.24743652, -1.4267578, -0.56396484, 1.3759766, -0.39086914, -1.5410156, 1.3769531, -0.47338867, 0.9868164, 2.7070312, -2.2675781, -2.4589844, -0.41137695, -0.22827148, 2.2128906, 5.015625, 0.8520508, 1.0332031, 0.42504883, 2.2617188, -1.6259766, -0.76708984, 0.11029053, -0.7578125, -1.1689453, 1.8984375, -1.9365234, -0.32421875, 0.16052246, 2, -0.42041016, 0.58496094, -2.1503906, -2.4746094, -0.41503906, -5.15625, -0.9008789, -2.7890625, 2.1660156, 1.3759766, 0.6875, -3.4785156, 0.07208252, -1.0058594, 1.2919922, -0.25317383, -0.9243164, 3.3027344, -2.7089844, 0.012084961, -1.5849609, -1.2705078, 1.609375, 0.8852539, -2.796875, 2.15625, 3.7617188, 1.6787109, 0.22753906, 1.2392578, 1.1191406, 0.45239258, -1.5488281, 1.8339844, -0.640625, -0.5683594, -0.016311646, -0.068237305, -2.4296875, -1.4355469, -1.4462891, -1.390625, -2.28125, -0.002008438, 0.98779297, 1.7548828, -0.31420898, -3.3984375, -0.6821289, -2.7109375, 0.27978516, 1.5556641, -1.5791016, -3.203125, -0.95751953, -0.80078125, -2.4882812, -0.47485352, 0.52783203, -0.55908203, -0.64941406, -1.4296875, -2.4550781, -3.4726562, -0.008956909, 1.4335938, 1.5830078, 0.39672852, 0.091552734, -0.61035156, -1.328125, -2.4160156, -3.9628906, -0.23706055, -3.0371094, -0.9628906, 2.4492188, 0.7890625, -1.453125, 0.4345703, -2.171875, -0.08758545, -1.7333984, 1.7939453, -0.93066406, 1.1513672, 1.9150391, -0.48779297, 0.69677734, 0.09313965, 0.609375, -0.61376953, 2.9667969, 0.83740234, 0.19458008, -2.1503906, -1.5146484, 1.0419922, 1.0849609, -1.78125, 0.3083496, -1.3916016, 2.8984375, 0.66845703, 1.1318359, 1.4638672, -0.52197266, -0.07946777, -2.0117188, -0.7944336, -0.37475586, 0.35498047, 0.50683594, -2.53125, 2.2988281, -0.38110352, 0.4128418, 0.96777344, -1.9082031, -0.37231445, -0.44726562, -1.0859375, -1.1865234, 1.2109375, -0.8544922, -0.9716797, -1.1044922, 4.09375, 1.4609375, -0.43237305, -1.0019531, -2.5898438, -0.8754883, 2.5996094, 2.9121094, -2.6269531, 1.2568359, -0.059265137, 1.5566406, 0.9121094, 1.4667969, 0.96777344, 3.640625, -1.5986328, 4.0117188, -0.59375, 0.8232422, 1.3339844, 0.81591797, 2.5996094, -1.0478516, 0.7573242, 1.6230469, 0.7397461, -0.20385742, -1.0263672, 1.8642578, 0.75097656, -1.1875, -2.78125, 2.6113281, -0.97753906, 2.296875, 5.0546875, -0.67578125, -0.9404297, -1.3544922, 1.6113281, 1.8818359, -1.7207031, -0.6040039, -2.265625, -2.2597656, 0.74902344, -0.83740234, 0.49121094, -0.058746338, 0.64501953, -1.2265625, -4.9648438, -1.4853516, -4.7734375, -1.4794922, 3.7480469, -2.7265625, 1.9248047, 0.69921875, -3.890625, -0.7270508, -0.024612427, -0.86572266, 0.22192383, 0.7753906, -1.4746094, -0.90478516, -0.7734375, -1.0332031, -1.3134766, -1.8837891, 0.9921875, -1.2900391, -1.8632812, 0.2788086, -0.77734375, -3.0898438, 0.2800293, -1.7099609, -1.265625, 1.8818359, 0.796875, 1.2041016, 0.16442871, -1.2509766, -0.1685791, 0.4116211, -0.8129883, 0.18334961, 0.98046875, 1.0830078, 0.09838867, -3.0390625, 1.5166016, 0.6791992, -2, -0.029922485, -1.3457031, -0.9453125, -0.7807617, -1.1259766, 0.6191406, -1.3994141, 0.71484375, 0.46606445, 3.0976562, -3.1835938, 2.6621094, -0.90771484, 2.2050781, -0.38671875, 0.6557617, 0.32495117, -1.3193359, 1.9931641, -0.8701172, 2.1914062, 2.0605469, 1.3066406, 0.1998291, 0.45141602, 0.8979492, 2.921875, -2.9589844, 0.7080078, -1.2392578, -2.9824219, -0.9067383, -1.5488281, 1.859375, -2.15625, 0.14160156, 0.78564453, -1.7695312, -2.2167969, 1.1445312, 0.33276367, -0.71240234, -0.58935547, 0.6567383, 0.18078613, -0.010482788, -2.3925781, -1.0283203, -1.9208984, 0.52783203, -0.6796875, 1.1806641, 0.84716797, 2.71875, 2.2832031, 0.33007812, 1.0839844, -0.14831543, -5.0820312, 0.98583984, 2.4472656, -0.6665039, -0.9975586, -0.5996094, -1.5390625, -0.28979492, -0.79052734, 1.7412109, 1.1386719, 2.5175781, -0.9975586, -1.2216797, 3.8085938, 3.359375, -0.6069336, -0.29638672, -1.8232422, 1.5400391, -1.2880859, -1.7441406, 1.1230469, 2.1855469, -1.96875, -1.7832031, 2.4375, -0.12219238, 2.8222656, 3.3085938, -1.9208984, 0.8129883, 1.6386719, 2.4882812, 2.2363281, 1.3164062, 0.13049316, -4.1132812, 0.43139648, 1.2832031, 1.1103516, 1.2382812, -0.6479492, -0.8129883, -0.39233398, 0.32226562, -1.4492188, -0.36376953, 1.9912109, 0.79003906, 0.8574219, 1.4013672, 0.55810547, 1.7783203, 2.1523438, 0.7426758, -1.5683594, -1.7089844, 1.5068359, 2.9863281, 3.3105469, -1.9414062, -1.3056641, -0.105651855, -0.6196289, -1.5488281, 1.890625, -1.2363281, 0.9355469, 0.7421875, -0.9165039, -1.4716797, -1.6796875, 1.5654297, -1.1904297, -0.16455078, 1.1884766, 0.35546875, -0.1607666, 0.6796875, -2.3457031, -1.1289062, -1.1611328, -0.019073486, 0.51464844, 0.44921875, -1.4609375, 0.76464844, 2.3710938, -0.79833984, -1.5234375, -0.3791504, -0.77441406, 1.2685547, 0.70410156, -0.6904297, 0.5258789, 2.0722656, -1.8984375, -0.13256836, -3.5683594, 0.34228516, 0.18493652, -0.54345703, -0.34643555, 2.1054688, 0.41870117, 2.7207031, -0.7602539, 1.4804688, -1.5058594, -0.81152344, 2.140625, -1.3798828, -1.5585938, -1.7509766, -6.2773438, 2.4589844, -2.0878906, -1.2851562, 1.7685547, -0.003238678, 1.0576172, -0.72265625, 0.91015625, -1.1103516, -2.1523438, -0.051605225, 1.6240234, -0.41992188, 1.5888672, 4.9960938, -0.66259766, -0.8959961, -1.5712891, -0.7270508, -0.26513672, 1.3408203, -0.44726562, 0.82958984, 0.48120117, -1.0205078, 0.9526367, 0.00012803078, 0.7597656, -1.0664062, -0.640625, -0.8051758, -0.55566406, 2.0097656, -1.0410156, 2.0761719, -0.56152344, 4.7226562, 1.3388672, -0.97998047, -0.53222656, 1.7783203, 3.1679688, 0.2697754, -2.4257812, -0.4411621, -0.7167969, 1.2011719, -1.5449219, -0.5083008, -1.0410156, -1.6542969, -0.53466797, -1.1835938, 1.3144531, 3.4179688, -0.5517578, -2.0664062, 0.25976562, -1.2900391, -0.9301758, -1.5449219, 0.30395508, 0.62158203, -0.77734375, -0.6484375, -1.0605469, -0.9145508, -2.5703125, -1.8603516, -4.484375, 0.95947266, 2.7480469, 2.3613281, 1.484375, -2.171875, -0.10681152, -0.85546875, -0.5463867, 0.3840332, 0.6352539, 0.89501953, 0.7758789, 1.2207031, 1.7792969, -1.5302734, -0.8696289, 0.38964844, -0.7167969, 0.28320312, -1.421875, 1.3515625, -0.75683594, -2.296875, 2.4335938, 0.14526367, 3.9609375, -3.1210938, 0.47338867, -0.43530273, -1.3857422, -1.0292969, 1.2714844, -0.18896484, -0.76953125, 3.4023438, -0.39916992, 0.4296875, -0.4140625, -0.0043792725, 0.05697632, 1.7949219, -0.8359375, -0.8642578, -2.8789062, 2.7226562, -1.5654297, -0.17919922, 2.8398438, 1.5537109, 1.6054688, 2.2324219, 1.9248047, 0.17114258, 0.31713867, 0.33618164, 2.3632812, 0.7680664, 0.66845703, -0.33496094, -0.3623047, -1.4101562, -2.328125, -1.2451172, 2.234375, 0.1998291, 2.1855469, -0.4814453, -1.2763672, 0.42504883, -3.3261719, -1.3955078, -0.38549805, 2.84375, 0.23583984, -0.20996094, 0.0625, -0.010597229, 3.1621094, 1.3232422, -0.8745117, -0.65478516, 1.609375, -0.8955078, -0.14929199, 1.6699219, -1.2314453, -1.6347656, -2.21875, 0.74072266, 0.77490234, 0.10632324, 2.7089844, 0.12188721, -2.375, -1.1875, -0.84814453, 1.7001953, -3.0136719, -0.5361328, 0.43774414, -1.9189453, -0.3708496, -1.2958984, -0.9423828, -3.1816406, 1.0664062, 2.1367188, -0.8276367, -0.035247803, -1.9814453, -1.7763672, -4.1210938, -1.7753906, 1.7744141, 0.19494629, 0.7006836, -0.06451416, -3.109375, 0.30395508, 0.00756073, -0.7080078, 0.08074951, 1.9257812, -2.3339844, -0.91503906, -0.14758301, 3.0429688, 0.6953125, 0.52685547, -1.7890625, -1.7148438, -0.03543091, -1.4208984, -1.7197266, 0.17797852, 0.92041016, 0.63916016, 1.1875, -0.6972656, -1.0869141, 3.9433594, 0.4753418, -1.8486328, 1.1660156, 0.8144531, -0.23254395, 2.2363281, -1.0419922, 0.51904297, 1.0302734, 0.14428711, -1.0859375, 4.65625, -0.05456543, 1.21875, -0.6665039, 0.34228516, 0.15686035, -0.6459961, 1.3964844, -0.0076408386, -0.32348633, 1.4765625, -1.8544922, -0.77685547, -0.8774414, -3.09375, -1.6835938, -0.5078125, -1.2021484, -0.30151367, -0.4260254, 1.4140625, 2.9511719, -1.2089844, 1.9052734, 1.4492188, -0.0049209595, -1.1337891, -0.39916992, 1.3046875, 0.8457031, -0.68066406, -2.1132812, -2.1132812, -0.52734375, -0.90527344, -0.7998047, 1.0410156, -0.12084961, -0.77246094, -0.90966797, -0.28857422, 1.0214844, 3.0996094, -0.72558594, 0.19360352, -1.6699219, 0.24230957, 0.55859375, -0.6015625, -0.8979492, 0.05441284, -0.23669434, 0.0037574768, 2.7695312, 3.5292969, -1.4550781, -0.30737305, 0.009643555, 0.88183594, 0.5058594, -2.6621094, 3.0410156, -3.3164062, -1.1318359, -0.16381836, -0.0725708, -3.25, 0.37036133, 2.0078125, 2.1914062, 0.6147461, 2.3417969, 1.6806641, -2.9082031, 1.3242188, 0.13745117, 0.55371094, 0.40673828, 0.20581055, -0.3334961, 3.6074219, 1.0458984, 0.8383789, -1.5302734, 1.2177734, -0.61083984, 0.9995117, -3.3183594, 0.8955078, 0.35375977, 1.5917969, 3.3710938, 1.0751953, 2.2871094, 1.8203125, 0.7182617, 1.7519531, -1.9765625, 2.96875, 0.8833008, 2.1503906, 0.21191406, -0.2902832, -0.90966797, 0.34985352, -1.8496094, -0.8901367, 1.0615234, 1.3261719, -0.08508301, -0.4099121, -1.8808594, -1.1464844, -1.1689453, 1.4199219, -0.1295166, 1.5244141, 0.1673584, 0.9116211, 1.96875, -0.40283203, 0.6430664, 0.67333984, -1.1533203, 1.2783203, -2.3417969, 0.09448242, 0.8022461, 0.56933594, 1.7666016, 2.2402344, -0.35473633, 0.9248047, -0.97314453, -0.43359375, -0.50683594, 0.9995117, 0.7529297, 1.0410156, -1.6943359, -1.3740234, 2.359375, 2.3515625, -0.06335449, 3.1972656, -2.0332031, -0.43139648, -2.0585938, 0.3696289, -0.22961426, -0.9291992, -1.7998047, -2.6796875, 3.1875, -1.8330078, 0.11505127, -2.7207031, 0.2788086, 1.1738281, -0.51953125, 0.89941406, 1.6708984, -0.12988281, 2.9667969, -0.6015625, 1.2832031, 0.53466797, -1.5849609, -0.6245117, -0.90283203, 2.671875, -1.1435547, 0.068481445, -0.51123047, 3.9160156, 1.7587891, 0.9921875, -0.06640625, 0.45239258, -0.17456055, -0.08258057, -0.32910156, -1.7148438, 2.9375, -0.037506104, 1.8369141, 2.6777344, -1.4541016, -0.90185547, 0.64746094, 0.63720703, 2.34375, 0.98779297, 1.1484375, 0.3647461, -2.6679688, -0.110961914, 1.9238281, -0.95703125, 1.3447266, 0.055145264, -1.1396484, 0.20898438, 1.2958984, -0.25952148, -0.78515625, -0.14208984, -0.33862305, 0.3935547, 0.59716797, 0.3371582, -0.921875, 1.0439453, -0.5722656, 2.6074219, 2.6015625, -1.53125, 1.1083984, 0.89990234, -1.2236328, 0.37036133, 1.3505859, 0.6899414, 2.78125, -2.7128906, -3.7714844, -0.66015625, -0.52441406, -0.3449707, 3.5234375, 0.6254883, 1.3603516, 0.5991211, -0.9316406, -2.6425781, -3.0898438, -0.79589844, 0.80078125, -0.6904297, -0.7548828, 0.5131836, -0.16247559, 2.0566406, 1.3046875, -1.6103516, 0.2685547, -0.9941406, 0.7519531, 1.0839844, 1.8085938, 1.2792969, -0.43017578, 2.8085938, 1.4003906, 0.06585693, -2.1054688, 1.8701172, 0.18481445, -0.5493164, -1.1308594, -0.9248047, -1.0488281, 0.35205078, 0.30004883, 2.3515625, 2.046875, -0.57421875, -1.1621094, -2.7539062, -2.9238281]}, "B01LBW7S4Q": {"id": "B01LBW7S4Q", "original": "Brand: Weber\nName: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ\nDescription: Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ\nFeatures: \n", "embedding": [-1.4238281, 1.5087891, 0.27514648, -2.2578125, 0.049957275, 2.5800781, 0.36328125, -2.5722656, 1.4013672, 0.3178711, 0.6689453, 2.1015625, -0.43896484, -4.7539062, 1.0576172, 0.8730469, 0.30444336, 0.44067383, -0.038848877, 3.6484375, 2.9785156, 2.2089844, -0.23583984, 1.0732422, 3.2910156, 0.6801758, 3.71875, -3.7167969, 0.37475586, -2.71875, 1.3378906, 0.8613281, -1.2373047, 0.98095703, -2.1328125, 0.60839844, -2.1425781, 0.6323242, -2.3945312, -0.54589844, -0.4128418, -1.1640625, 1.3730469, -1.0947266, -0.8100586, -1.84375, 0.08843994, 0.5444336, -1.4287109, -1.8808594, 1.3652344, 0.87597656, 0.46166992, -0.66503906, -2.0058594, 1.53125, -1.6806641, -2.3164062, 0.95996094, 0.7373047, 3.1347656, -1.2207031, -2.0273438, -2.5878906, 1.5429688, -0.18493652, -0.36791992, 1.0429688, 2.21875, -0.33398438, 3.0019531, 1.3583984, -2.8242188, 1.3164062, -0.28857422, 0.09887695, -1.0214844, 2.3066406, 1.6953125, -1.8964844, -1.0224609, 2.2949219, 0.3881836, -3.2695312, -0.84472656, 1.1699219, -0.60009766, -0.8076172, 3.8574219, 1.2431641, 0.6352539, -0.0960083, -0.8720703, -2.7285156, 1.5556641, -2.2050781, -0.24194336, 2.1914062, -0.77441406, 1.3076172, -0.7246094, -0.053344727, 0.04647827, -0.036376953, -2.6503906, 0.07232666, -0.39453125, -0.40478516, -0.35205078, -2.1875, -3.1738281, 1.1494141, -0.009162903, 0.2446289, 2.296875, 1.765625, 1.0117188, -0.24108887, -0.5214844, -0.35473633, 0.6879883, -0.84765625, 0.9760742, -1.8525391, -0.3173828, 0.6196289, -0.27807617, 2.71875, -0.18603516, -1.8310547, -0.97509766, 0.40307617, 4.0898438, 0.2944336, 1.2539062, -4.2851562, 0.5419922, -1.5976562, -0.47607422, -1.5273438, -1.3789062, 1.8466797, 1.9492188, -1.7783203, -1.4804688, -0.94628906, -0.29882812, -2.7578125, 0.39794922, -0.47094727, -0.030517578, 0.07824707, -2.4882812, -1.5488281, 2.6386719, -0.5151367, -0.49072266, 2.0039062, 1.1679688, 1.7109375, -0.47583008, -1.1279297, 0.34350586, 1.5957031, 0.81152344, -0.45532227, 0.14038086, 0.6875, 0.43969727, 3.0175781, 1.9042969, -0.60595703, 1.4121094, 0.5957031, 1.8203125, -1.1884766, -0.4345703, 1.5068359, 0.1451416, 2.8144531, -0.11047363, -0.67871094, 1.3789062, 0.9213867, 0.73828125, -0.70166016, 0.28979492, 1.5810547, 0.02168274, -0.37182617, 0.4230957, 2.09375, 0.06793213, -0.1706543, 0.46704102, -0.73828125, 0.4140625, -2.0898438, 1.2294922, -1.5869141, -2.5410156, -2.1074219, 0.8071289, 0.16833496, -0.73339844, -2.3925781, -1.3476562, 1.1074219, 0.28637695, 2.4804688, 1.9570312, -1.4726562, 0.49560547, 1.8388672, 0.099121094, -1.4628906, 0.7915039, -1.2548828, 0.20861816, 0.1352539, -1.3867188, 1.0908203, -0.41601562, 3.390625, 1.0253906, 0.43725586, 0.50927734, -0.21801758, -2.4492188, -0.12585449, 3.7265625, 1.8007812, 0.1850586, 1.8300781, -0.9863281, 2.5722656, 1.4277344, -0.34106445, -0.64746094, 0.31420898, 1.6865234, 1.7548828, -2.1230469, -0.72558594, -0.63623047, 1.0791016, -1.640625, 1.3798828, 0.16174316, 0.54052734, 0.4333496, -0.18054199, 0.8696289, -0.6933594, 0.79785156, 0.83203125, -1.9091797, 3.1484375, -2.3691406, -0.34814453, 3.2480469, -0.14111328, -0.6928711, 2.5957031, -0.91796875, -1.6953125, 1.8378906, 1.3535156, -1.2109375, -1.2304688, 1.3681641, 0.49169922, -0.04852295, -3.5136719, 2.7851562, 1.0527344, -1.0292969, 0.234375, -0.3894043, -0.9892578, -0.16784668, 0.83251953, 0.4880371, -3.2734375, 0.9477539, -1.0966797, 0.58740234, -3.2148438, -0.4091797, 1.3076172, 3.5546875, 0.40844727, -2.5507812, 2.4765625, -3.140625, 1.7919922, 0.34960938, 2.0292969, -2.0351562, 1.7216797, 1.3730469, 0.79785156, 1.3115234, 0.41259766, -0.24926758, 0.8823242, 1.4335938, -3.3027344, -1.8652344, 0.4506836, -0.6347656, -0.22717285, -0.25732422, 1.9775391, 0.546875, -1.03125, -2.5449219, -3.3789062, -0.7421875, -3.0957031, 1.8486328, 1.7714844, -1.1064453, 0.4711914, 0.072265625, -0.94921875, -3.0039062, 2.7675781, -0.32348633, 0.70751953, 0.36669922, 2.453125, -0.5751953, -2.9648438, -1.8691406, -1.3925781, -1.5253906, -2.2148438, 1.9902344, -0.42749023, 0.39624023, 0.55615234, -2.2207031, -2.4667969, -0.25927734, -2.5625, -1.2167969, -0.7036133, -2.3789062, -0.5004883, -1.7304688, 0.07299805, -1.2753906, -3.671875, 0.1472168, -2.2011719, 0.85302734, -0.02027893, -1.5966797, 2.234375, -0.4555664, -2.1601562, -1.4355469, 1.25, 2.0957031, -0.23449707, 1.9580078, -1.2070312, -1.3330078, -1.6513672, 0.96191406, -1.046875, 1.6083984, -2.5761719, 0.5625, 1.4121094, -0.13537598, 6.1328125, -0.8178711, 1.4628906, -1.5439453, -0.5253906, 0.87597656, -2.1972656, -0.69091797, -0.28955078, 0.13391113, -0.48486328, -2.3828125, -0.43115234, -1.0742188, -2.2226562, 0.15063477, 0.030685425, 1.3789062, 0.13867188, -1.0751953, -2.0390625, -1.3105469, 0.72558594, -0.7636719, -0.1274414, -2.8945312, -1.2236328, -0.2487793, -1.2324219, 0.15686035, -0.78808594, 1.8652344, 0.19482422, 0.72216797, 0.61083984, -0.3659668, 0.7661133, 1.6689453, -2.2460938, 4.1796875, -0.93652344, -1.1123047, 1.5869141, -0.4560547, -0.23388672, -3.6230469, -0.7861328, 1.9365234, 2.234375, 0.8730469, 1.9423828, 2.4492188, -1.0654297, -0.12963867, -1.53125, 0.6279297, 1.2382812, 2.9277344, 0.7495117, -3.5644531, 1.6357422, -0.0871582, -0.57714844, -0.26953125, -0.6821289, 2.671875, 2.2070312, 0.40112305, 3.4472656, 0.091674805, -0.6347656, 2.65625, 2.1308594, -1.8261719, -0.65283203, 1.5, 1.1298828, -1.0810547, 1.3916016, 0.23181152, 0.39111328, 2.3007812, 3.7714844, 1.1533203, -2.7519531, 1.8955078, -0.875, 2.921875, -1.7236328, 0.27734375, -0.2993164, -1.4833984, -0.49731445, -1.109375, -0.015068054, 0.2211914, -0.19763184, 1.3212891, -1.6728516, -3.0839844, 0.46606445, 1.8427734, 1.5419922, -0.16052246, -0.21728516, -1.9521484, -0.72558594, 1.3164062, -2.4882812, 0.38842773, -3.1210938, 0.76904297, 1.4355469, -3.1933594, -0.90966797, 2.2011719, -2.6191406, -2.4316406, -1.9199219, 1.4726562, -0.70458984, -0.019546509, 0.6586914, 0.3178711, 2.7539062, -2.96875, -0.93408203, 1.4130859, -0.28442383, -3.140625, 0.06951904, -1.9853516, 0.9394531, 1.0966797, -0.5131836, 0.1965332, -0.8779297, -0.04397583, -3.3007812, 0.40942383, 0.7290039, -1.9580078, -0.24987793, 1.2646484, 1.703125, -0.7910156, -1.0898438, 4.5898438, 0.78759766, 1.1904297, 2.9804688, -2.1445312, -0.2614746, -2.3847656, -3.9609375, -0.07678223, 0.19616699, 0.15332031, -0.26293945, 1.5263672, -1.3212891, 1.9023438, 0.9511719, 0.20874023, -1.6464844, -0.24841309, 2.7246094, -0.34521484, 1.8515625, 2.1425781, -2.1113281, -3.2363281, -3.4902344, 0.064941406, -1.2333984, 1.1513672, 1.0322266, -3.3046875, 0.8256836, 3.1210938, 0.9135742, -2.4492188, -0.11437988, 0.16015625, -1.0087891, 1.1669922, 0.10845947, 1.7626953, 1.3417969, -1.5380859, 0.77734375, -0.77783203, 1.859375, -1.8359375, 0.9458008, 1.1025391, 3.4648438, -0.35424805, -0.6464844, 0.6489258, -0.6191406, 0.46557617, -1.1015625, -0.057739258, 2.0351562, -0.8808594, -1.4238281, 1.5224609, 2.8769531, 0.80371094, 0.9863281, -1.5712891, 0.11956787, -0.1899414, -1.4824219, -1.6425781, 0.8432617, 0.37939453, -2.1308594, 0.44921875, -1.7539062, 3.0957031, -0.1875, -0.25756836, -0.14038086, 2.40625, 2.5039062, -0.8046875, 1.4726562, -0.5761719, -1.5429688, -0.30688477, -1.6308594, -1.6777344, 1.0234375, 0.5600586, 0.31982422, -0.29638672, 0.20043945, 0.3466797, 0.29858398, 0.62402344, 0.73339844, -0.94873047, -3.0585938, -2.5976562, -1.1152344, 1.75, -2.1855469, 1.3212891, 2.28125, -0.8803711, -0.4567871, 4.2148438, 1.2128906, -1.1210938, -0.8569336, 0.71533203, 0.2614746, -0.9838867, 3.5449219, 0.66064453, -2.6152344, -0.55566406, -0.88378906, 0.6894531, -1.1748047, 1.4775391, 1.9882812, 0.828125, 0.4128418, -2.9414062, 3.9921875, 0.81591797, 0.5649414, 3.8710938, -0.9213867, -2.9277344, -0.5053711, 2.2050781, -1.3916016, 2.4238281, 0.9458008, -1.8027344, 1.2431641, 0.08685303, -3.3242188, 0.59277344, 2.890625, -1.2988281, 0.77490234, -0.74902344, -0.048095703, 1.3955078, 1.8623047, -1.0449219, 0.40356445, 0.001581192, -0.117492676, -0.028137207, -1.4501953, -2.1210938, 0.22595215, 3.0761719, -1.9941406, -1.09375, 0.91748047, -0.55859375, -1.1367188, -4.015625, -2.4453125, -0.66503906, -0.3605957, 2.8242188, 1.8603516, 0.48950195, -0.47924805, 2.6347656, -1.3330078, -0.8178711, -1.9550781, -0.6801758, -1.6054688, 0.27246094, -0.17114258, -2.59375, -0.16564941, -1.3115234, 0.21887207, -0.13464355, -0.4970703, -0.11779785, -0.5913086, -1.3798828, 1.4462891, -1.5273438, -2.3320312, -2.6074219, -0.23693848, 2.0683594, -0.9868164, 1.2304688, -0.72021484, 1.5917969, 0.5644531, -1.1474609, -0.41137695, 1.8945312, 0.59228516, -1.3300781, -2.1972656, -0.3269043, -0.8022461, -1.4013672, 0.6933594, 2.4921875, -0.4663086, -3.9570312, -0.30566406, -2.1269531, -2.7363281, 0.13476562, 0.828125, -1.2431641, 0.48608398, 1.9111328, 2.2988281, -1.7539062, 3.15625, -4.3085938, -1.3115234, -1.0761719, -2.5957031, 2.8164062, -0.6352539, -1.359375, -0.86328125, 0.34960938, 1.5107422, 1.5214844, -0.9682617, 0.19116211, -1.1464844, 1.7207031, -1.3759766, 2.3652344, 1.3193359, 1.9443359, 1.3681641, 0.06488037, -0.39160156, -1.3857422, -1.1054688, -0.057281494, -2.5742188, -1.4550781, -2.5019531, 1.9990234, -0.34375, -0.26586914, -1.1894531, 1.3847656, 0.35595703, -1.3427734, 1.3515625, -0.38134766, 3.9570312, 1.9453125, -0.5722656, -0.84277344, -1.3603516, 0.20532227, 1.0371094, 0.9350586, -3.1269531, -0.55615234, -0.6923828, -1.2236328, -1.6367188, 2.8554688, 2.0449219, -0.7426758, -1.34375, 1.2783203, 1.9179688, -3.4492188, 0.6123047, 1.1210938, 3.2792969, -2.2089844, 2.1113281, -1.4570312, -1.8369141, 1.0185547, -1.4550781, -0.8613281, 0.5102539, -1.8154297, -1.5214844, 1.7460938, 0.31469727, -1.8251953, -1.7929688, -0.4951172, 3.5761719, -0.19958496, -1.1103516, -0.9916992, 2.8222656, -0.34594727, 1.390625, -1.9873047, 0.09094238, -4.328125, -0.86035156, -1.7207031, 1.2304688, 0.71777344, -2.1699219, 1.6464844, 1.8466797, -0.84472656, -0.43066406, 2, 0.42578125, 0.14624023, 1.5273438, 2.5449219, 1.2861328, 3.5039062, 0.8676758, 0.23046875, 4.5742188, 0.7832031, -1.7226562, 1.1171875, 2.2363281, 1.2285156, 1.8388672, -1.2480469, 0.6743164, 0.890625, 2.3574219, -0.24035645, -1.6845703, 1.9335938, -0.45532227, 1.5869141, -2.1933594, 1.9082031, -3.5136719, -0.3623047, -0.34936523, -0.6303711, -0.17687988, 0.048706055, 0.9067383, 1.296875, 1.1767578, 0.037261963, -1.4912109, 0.90478516, -5.0585938, -1.5878906, 1.7558594, -1.09375, -1.2207031, 2.2480469, 1.6572266, 0.46728516, 1.7841797, 0.9926758, 2.1191406, 0.5942383, 2.046875, -2.4335938, -1.6503906, 1.4287109, 0.94628906, -0.6274414, 0.3269043, 0.15356445, -2.9609375, -3.2050781, -3.0078125, 2.2128906, 0.7939453, 0.70166016, 1.1367188, -0.72021484, 2.8828125, 0.96240234, 0.72753906, -0.7368164, 0.6123047, 0.3251953, -0.42260742, 0.17773438, 0.90527344, 1.9570312, 0.59375, -1.1923828, -0.4675293, 0.015617371, 0.3408203, 1.2548828, 1.1884766, 0.0970459, 0.82373047, 0.62060547, -1.1582031, 1.4492188, -1.2705078, -0.44018555, -1.21875, 1.0908203, 1.4501953, 1.3916016, -0.41845703, -0.6298828, -1.1591797, -0.60791016, -0.49023438, 2.2949219, -0.28857422, -0.2685547, 1.7285156, 1.7109375, -2.9746094, -0.5444336, -0.3166504, 2.9101562, 2.9667969, 4, 3.0214844, -3.0800781, 0.3942871, -0.2919922, 1.4150391, -0.88134766, 0.13439941, 0.66552734, 1.8525391, 0.7871094, 3.1953125, 0.8803711, -0.14074707, -2, 0.6298828, -0.004207611, 0.059265137, -0.87402344, -1.2519531, -1.1708984, -3.4453125, 3.140625, 1.3476562, 0.012016296, 2.0410156, -0.42504883, -0.8666992, -1.9404297, -2.3984375, -3.5683594, -1.0830078, -1.9941406, 0.48388672, 4.90625, -0.6796875, 1.7949219, -0.55810547, -2.5214844, 2.1796875, -2.5175781, 0.2722168, -3.1933594, -1.2050781, -1.0175781, -1.2207031, 0.8769531, 0.4921875, -1.2070312, -2.8925781, -5.4492188, 1.6484375, 1.0615234, 1.9707031, -1.9287109, 1.234375, 3.8730469, 1.6953125, 2.3632812, 2.203125, -0.055541992, 2.8046875, 2.1660156, -1.8730469, 0.9086914, 0.3869629, 3.9785156, -1.8876953, -0.21447754, -0.98291016, 1.4130859, 0.5, 2.46875, -2.7167969]}, "B08XYJ7YQV": {"id": "B08XYJ7YQV", "original": "Brand: Flame King\nName: Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White\nDescription: \nFeatures: Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified\nHigh quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability.\nPremium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it!\nLeading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered\nSuit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.\n", "embedding": [-2.3632812, 1.5292969, 2.3339844, 0.43041992, 0.54833984, -2.2792969, -0.22595215, 0.43041992, 1.9541016, -1.2607422, 1.4775391, 0.5517578, -0.17980957, -4.0117188, 1.7861328, 1.4521484, -0.66552734, 2.2402344, 1.0253906, -0.023635864, 2.1289062, 1.0742188, -1.0742188, -0.8779297, -0.06390381, -0.96533203, 2.8867188, -3.2519531, -0.60546875, -0.26367188, 0.58154297, -0.0016860962, -0.45776367, 2.3828125, -0.6376953, -0.67089844, 0.60302734, -1.4902344, -4.84375, -0.32714844, -2.3222656, -0.6689453, 1.5107422, -0.8725586, -1.6679688, -1.2480469, 0.1652832, -2.0878906, -0.16308594, -0.20581055, 1.3457031, 2.6171875, -0.33642578, 1.1728516, 1.0908203, 1.3710938, 0.9941406, -2.65625, 0.6040039, 0.51171875, 1.5976562, -0.12286377, -3.4277344, 2.5957031, -0.95654297, 0.7729492, 0.9033203, -0.50390625, 0.94970703, 1.6591797, 0.74902344, 0.7104492, 2.0449219, -0.92285156, -0.6142578, 1.2822266, -3.4667969, 0.66015625, 0.00012409687, 1.0146484, 0.10192871, 2.8886719, -0.14257812, -3.3613281, -1.3574219, -0.9379883, 0.6489258, 0.69628906, 0.19506836, -0.30810547, -1.9550781, 2.1503906, -0.30322266, -4.3164062, 2.359375, 0.6274414, 2.7578125, 2.6855469, 2.5820312, 0.027008057, 0.57177734, 0.14257812, 0.18273926, 1.1132812, -1.8857422, -1.71875, 1.2255859, 1.5615234, -2.3164062, 1.2998047, -0.23400879, -1.2519531, 1.5214844, -0.7832031, 0.009597778, 0.13342285, 0.19787598, 1.6962891, 0.953125, -1.1884766, 3.5234375, -2.8886719, 2.7226562, -0.86279297, 2.3105469, 1.3447266, -0.7993164, 0.09063721, 5.6132812, -0.17883301, 1.6396484, 0.0579834, 4.1992188, -1.5214844, 0.2199707, -2.4960938, -0.3425293, -2.3339844, -1.8525391, -1.3535156, -4.3476562, -0.61035156, 1.2001953, -0.43017578, -2.7578125, -0.80078125, -1.3925781, 0.7495117, -0.79541016, -2.0878906, 1.7109375, -1.3144531, 1.453125, -1.7119141, 2.7148438, 1.2529297, -1.8701172, -3.1953125, 0.31030273, 1.5527344, 1.9423828, 0.5605469, 0.14465332, 1.046875, -0.59716797, -2.6113281, 0.36645508, -0.14758301, -1.4121094, 2.0371094, -1.0195312, -2.0742188, -0.72021484, 1.5849609, -0.31201172, -0.24414062, 1.2529297, 0.7128906, 0.73828125, -0.18920898, -3.9160156, 0.65185547, -0.48657227, -2.1855469, 1.6552734, 0.5576172, -0.26367188, -1.4570312, 1.5419922, -0.43847656, -2.0566406, 1.9960938, -2.171875, 0.5605469, -0.68847656, -1.5693359, -4.5664062, -2.4453125, 0.8466797, 1.65625, 0.84277344, -1.2470703, 1.0107422, -0.15625, -1.7402344, -1.6835938, -0.30297852, -0.70654297, 2.046875, 0.057006836, -0.3725586, 0.47973633, 1.96875, -2.1289062, -1.6367188, -2.6953125, -1.1894531, 2.4472656, 1.6582031, 0.65722656, 1.2226562, 0.039031982, 1.5966797, 0.9873047, 1.3603516, 0.30639648, 1.6435547, 2.2597656, -3.8417969, -2.1640625, 1.7617188, 1.25, -0.30615234, 0.3461914, -1.8740234, 0.9946289, -0.30664062, -1.3720703, 0.92626953, 1.0019531, 0.07330322, 0.1887207, -0.40893555, 0.7451172, -1.7763672, -0.13574219, 1.2792969, 1.2949219, -0.28564453, -0.25195312, 0.6254883, -0.5209961, -1.0214844, -0.94189453, -0.58447266, 0.3413086, 1.5273438, 0.47998047, 0.9267578, -1.5537109, 1.71875, -2.0019531, -1.2216797, 2.15625, -2.0097656, 0.29052734, 1.5830078, -0.2932129, -2.3359375, 0.8613281, -1.9072266, 1.0507812, 1.8242188, -0.48583984, 0.7348633, 2.3515625, -1.109375, 3.1074219, -1.3408203, 1.6113281, -0.37109375, -0.7998047, 1.0458984, -1.9228516, 0.52246094, -0.18847656, 0.117492676, -0.38549805, -2.8066406, 0.23608398, 3.9550781, -1.4677734, -2.7109375, 1.7119141, 1.0292969, 1.2021484, 3.3457031, -0.47338867, 1.2021484, 0.51123047, 0.8544922, 0.33789062, -1.8652344, -0.01586914, -0.55078125, -0.8803711, 0.68603516, -0.73583984, -0.20678711, -0.0592041, -1.2578125, 0.2734375, -1.2822266, 0.4465332, 0.9428711, -0.89453125, 3.2539062, -3.0644531, 1.8613281, 1.3583984, 0.19372559, 1.9453125, 1.0537109, -1.1894531, -0.81152344, 0.84472656, -0.6035156, 2.0625, -0.60302734, 1.1279297, -0.09863281, -1.7998047, -0.5776367, -1.1982422, -0.7314453, 0.3642578, -1.1464844, -2.6699219, -0.671875, -2.8886719, 0.20214844, 0.2861328, -0.67285156, 1.4619141, 0.9892578, -1.40625, -0.38964844, -0.12231445, 0.06774902, -2.0664062, 1.6845703, 4.4453125, -0.56347656, -1.7333984, 1.9306641, -0.032287598, 1.0039062, 2.7109375, -0.6591797, -1.1953125, 0.13598633, -0.49194336, 0.3388672, -0.50878906, -0.28149414, -2.9492188, 1.2177734, -2.0664062, 2.1621094, -0.034454346, 0.36132812, -0.9277344, -0.12939453, -0.6254883, -2.7949219, -0.50927734, -2.1484375, 0.04135132, 0.7944336, 1.8339844, -2.0351562, -1.296875, 0.68359375, -1.1708984, -0.64990234, 0.5859375, 0.94433594, -1.96875, -2.1152344, -4.7773438, -0.46142578, -1.7773438, 0.0501709, -0.5986328, 0.042297363, -1.4326172, 0.9165039, 0.79785156, 0.68896484, -0.0043258667, -0.056610107, -0.69677734, -3.5585938, -0.17480469, -0.3461914, 0.54296875, -1.8134766, -1.6074219, 0.0690918, -1.2373047, -0.33984375, 0.9848633, -0.048217773, 2.0644531, 1.3359375, -3.7324219, 1.8222656, 1.3896484, 0.5083008, 3.0488281, -2.0703125, -0.59277344, -2.0019531, -0.23461914, 4.9492188, 1.0097656, 0.96240234, 0.6933594, -1.5986328, 0.6616211, -0.6796875, -0.80615234, 1.1523438, 0.21875, 3.7519531, -0.9628906, 0.14294434, 0.8027344, 1.6669922, -3.7890625, -0.765625, 1.1425781, -1.109375, 1.9130859, 0.4584961, -0.084106445, 0.44482422, 0.6357422, 1.6386719, 2.7167969, 0.75683594, -0.1496582, -1.4111328, -0.39819336, -0.5517578, -0.14416504, 4.2578125, -0.5629883, 0.6821289, 2.1757812, 0.40698242, 0.02758789, -0.7861328, -0.0045394897, 0.32543945, 1.7158203, 0.9580078, -0.55029297, 0.48120117, -1.8212891, -0.08428955, -0.3388672, -1.1474609, 1.7128906, 1.5, 0.6713867, 0.4765625, -1.1074219, -0.5673828, -0.9160156, -1.3134766, 4.2695312, -1.6904297, 2.1679688, -0.0024700165, -1.8046875, 1.0439453, -3.4335938, 2.5625, 0.52978516, 1.3623047, -0.33520508, 0.9248047, -1.40625, -3.9785156, 0.84814453, -1.2802734, -0.8935547, 2.2792969, 0.18652344, -3.3652344, 0.6665039, -1.7753906, 0.6904297, 1.1699219, -2.7421875, 1.3867188, 0.5488281, 0.7373047, -1.1621094, -0.42211914, 1.7216797, 1.4404297, -1.6025391, 0.53515625, -1.8691406, 1.0576172, 0.5888672, 1.1328125, -1.0546875, 0.19543457, -0.5576172, 1.6435547, -0.9506836, 3.171875, 0.13903809, 1.4833984, 1.6123047, -1.4980469, -0.019958496, -0.60595703, -3.3984375, 1.0146484, -2.1445312, -1.3945312, 0.7182617, -0.5288086, -0.22363281, -1.1298828, 0.6166992, -0.98535156, -1.3671875, -0.4802246, 2.5820312, -2.4746094, -0.24645996, -0.01802063, 1.5253906, -2.3144531, -2.7871094, -0.02796936, -0.99072266, -0.45385742, 0.9194336, -1.3535156, -0.16772461, 0.98046875, -1.2519531, 0.008888245, -1.2841797, 1.7958984, -0.14404297, -1.2617188, -1.9755859, 1.7060547, 2.0898438, 0.5649414, 1.7939453, 2.0292969, 0.65478516, 0.07287598, -0.9975586, -0.19714355, 1.0566406, 0.6616211, -4.2890625, -2.7207031, -0.77978516, 0.66015625, -3, 1.2275391, -0.9379883, 1.0585938, 2.578125, 0.15307617, 1.9882812, 1.9365234, 0.35742188, -0.7163086, 1.6699219, 1.5478516, -0.5942383, 0.27148438, -1.8808594, -1.0136719, -0.91503906, 2.71875, -1.9316406, -1.4619141, -2.1347656, 1.1816406, -4.0664062, 0.76464844, 2.2558594, 2.7441406, -0.3857422, -1.6503906, 0.029678345, 0.91748047, -0.80322266, -0.3317871, 0.21362305, -0.91748047, -1.3691406, 1.2480469, 1.5019531, -0.6113281, 0.73535156, 1.4355469, 0.22509766, -1.2021484, 0.51904297, 0.5751953, -1.8876953, 1.4404297, 0.029388428, 0.76660156, 3.1191406, -1.5722656, 0.32739258, 1.8271484, 0.08514404, -0.3803711, 1.203125, -0.43310547, 1.2792969, 2.0351562, 0.3466797, 1.2802734, 3.265625, 1.8945312, -0.48583984, 1.7460938, -2.0722656, 0.43286133, -0.06713867, 1.109375, -2.5820312, 1.0410156, 2.4902344, 1.5175781, -1.2929688, 1.0244141, 0.39013672, -1.3417969, 1.2773438, 1.1884766, -2.9160156, -3.3554688, -1.5712891, -0.14379883, 3.6679688, -1.0126953, -1.9833984, -0.2409668, 3.6542969, -0.63623047, 0.9707031, 0.17468262, -0.13928223, -1.0615234, -1.8623047, -2.0019531, -1.40625, 0.88964844, 0.82714844, -0.058624268, 0.50927734, -0.9868164, 0.24206543, -1.2089844, 1.5117188, 0.54833984, -0.46850586, -1.3134766, 0.058929443, 0.5708008, 0.5756836, -0.3605957, -0.36669922, -0.6064453, -0.5283203, 0.31274414, -1.3662109, 1.7246094, -0.6376953, -1.0048828, -2.3398438, 0.6542969, -0.47192383, -0.7583008, 3.5117188, -2.1191406, 2.4882812, -0.25805664, 0.63427734, -0.82421875, 1.8369141, 1.7041016, -0.63671875, 0.98876953, 0.8847656, -3.2148438, -4.5742188, -3.0957031, -0.8120117, -0.059936523, -0.44848633, -2.1054688, -1.5009766, -0.8691406, -0.6923828, -1.5595703, -1.6035156, 0.14746094, 0.12976074, -0.8041992, -0.7553711, 1.5146484, -0.28564453, 0.6958008, 2.125, -1.8779297, -0.59521484, -2.3261719, -0.9819336, 1.5927734, -1.0634766, 0.19726562, 0.58496094, -1.8974609, 0.58447266, 1.2373047, -0.3959961, -3.9160156, 1.8339844, -2.25, -0.7734375, 1.6943359, -2.578125, -1.3623047, 1.1279297, -0.54052734, 1.5917969, 2.46875, 1.2685547, -2.5664062, -1.4765625, -0.8051758, 1.7402344, -0.9638672, 0.859375, 1.7236328, 2.5507812, -0.0071907043, 1.5400391, -1.7080078, -1.0722656, -2.03125, -1.6289062, 0.5004883, -1.2558594, 0.80029297, 0.3244629, 0.6586914, -0.5649414, -0.7553711, -0.3088379, -0.3425293, -1.4443359, -1.609375, 3.1777344, -2.1503906, 3.6582031, 2.4160156, -1.7607422, -1.2587891, -0.6689453, 0.3154297, 0.20874023, -2.1269531, -1.2119141, 1.1289062, 0.95458984, 1.9326172, -0.59472656, 2.0625, -1.6484375, 1.0732422, -0.5097656, 0.46435547, 3.4375, -0.98535156, 2.0019531, 0.9433594, -2.2539062, 0.9560547, 1.9960938, 2.5332031, -1.4960938, 0.35546875, 0.39086914, -0.36108398, -0.48901367, -0.53515625, 0.63427734, -2.8183594, -1.5869141, 0.98828125, -0.9916992, -4.1953125, 0.91748047, -0.17150879, -0.9863281, -0.030807495, 0.026977539, -0.5751953, -0.7661133, 1.9111328, -0.31982422, -1.9433594, 0.053894043, 1.5283203, 0.15844727, 0.51171875, -1.5703125, 0.87890625, 0.72314453, 0.41308594, -0.3395996, 0.64990234, -2.5859375, 2.8691406, 0.88720703, 2.546875, 1.9716797, -0.9707031, 1.9736328, -0.6166992, 2.5292969, 3.4414062, 0.79345703, 1.3115234, -0.71533203, 1.1201172, 0.59277344, -1.4462891, 0.61621094, -0.22277832, 2.4238281, -0.69921875, 0.4296875, 1.7265625, -0.49536133, 0.82666016, -0.94433594, -0.66796875, -0.6279297, 1.2216797, -1.1376953, -0.96777344, 0.8745117, 0.85595703, 1.6210938, 0.0869751, 0.82470703, -0.2253418, 1.21875, 1.8623047, -0.06286621, -1.1416016, -1.03125, -2.2128906, 0.3942871, 2.3984375, 0.83740234, 0.7421875, 0.042175293, -1.6445312, -0.1850586, 0.94677734, -1.4619141, -1.5078125, 1.8388672, 0.3347168, 1.6806641, 2.1835938, -1.3154297, 4.0625, 1.6728516, -0.27490234, -3.6953125, 3.2617188, -1.6630859, -0.8417969, 0.42407227, -2.2792969, 1.2353516, -0.7138672, 0.14758301, -4.1640625, 1.7685547, 0.60009766, -0.5253906, 2.6582031, 0.57714844, -0.70410156, 2.4316406, 1.8876953, 0.3720703, 0.64746094, 0.14331055, 1, -0.11505127, 1.7285156, 0.7885742, -0.4152832, -0.83154297, 3.3925781, 1.0351562, -0.79296875, -1.2138672, 1.3505859, -0.15307617, 1.5117188, 0.066589355, -0.8769531, 1.7841797, 1.5419922, 1.1503906, 0.38330078, -1.3017578, -0.30859375, -1.8730469, -1.6640625, 1.1289062, -2.546875, -0.061950684, 2.0878906, -1.3574219, -2.5449219, 3.9785156, -0.4013672, -0.024765015, -0.3564453, -1.8710938, -1.5751953, 0.20483398, 1.2275391, -2.0761719, 0.29858398, 0.043273926, 2.5898438, -1.1074219, -1.8876953, -1.6142578, 0.5708008, -0.0072364807, -1.921875, 2.2988281, -0.89746094, 0.17260742, 1.4775391, -0.72314453, 1.2714844, 1.8427734, 0.5595703, 1.7910156, -1.0166016, -0.18041992, -0.27783203, 0.67822266, -1.3613281, -1.7167969, 0.5996094, 1.7626953, -0.42260742, -0.5395508, -3.5097656, -1.3486328, -0.8286133, 0.25585938, -0.57714844, -0.8564453, 1.1347656, 0.7832031, 0.5126953, -0.7763672, 0.72216797, 0.09490967, 0.8535156, 1.9814453, -0.8696289, 0.40820312, -0.86279297, -0.006126404, -0.82910156, 2.6210938, 2.2460938, -0.13989258, -0.46118164, 1.8554688, -1.8613281, 1.0263672, -0.08795166, -0.58740234, -0.17932129, 1.3876953, 1.5966797, 3.6953125, 1.7158203, -0.40576172, -1.2929688, -1.0029297]}, "B07CB4CV56": {"id": "B07CB4CV56", "original": "Brand: Kbrotech\nName: Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass)\nDescription: \nFeatures: The LPG adapter has any camping propane small tank input and a lindal value output.\nThe LPG adapter simply threads into the camping propane canister and your stove or stove's input end threads onto the LPG adapter.\nConvert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder\nThe Lindal Value Output is Auo-closed when it is not connected to the stove\nHigh quality 100% solid brass construction makes it corrosion resistant\n", "embedding": [0.2175293, 0.031829834, 2.515625, 1.8730469, -0.7998047, -0.29882812, -0.6816406, 0.77001953, 0.77246094, 1.2939453, 2.0507812, -0.8911133, 0.8413086, -4.1015625, 1.5419922, 0.3918457, 0.17285156, 0.51123047, 0.76464844, -0.7138672, 2.8085938, 0.31884766, -0.09661865, 0.5522461, 1.421875, 0.79833984, 4.6328125, -2.4316406, -0.42529297, -1.8857422, -0.01676941, -0.45043945, -1.4921875, 1.7246094, -1.6113281, -0.63378906, -1.6269531, 0.63378906, -4.5742188, -1.3916016, -1.6113281, 0.1772461, 1.9775391, 0.09765625, -3.7382812, -2.5058594, -0.46728516, 0.32373047, 0.70703125, 2.3828125, 1.2666016, 2.5644531, -1.3847656, 1.5126953, -2.1171875, -0.24780273, 1.0859375, -1.1142578, 1.1611328, -0.72021484, 0.8911133, 0.06097412, -0.9121094, 3.2070312, -0.29174805, 1.2578125, -2.046875, -2.4628906, 0.10211182, 0.6699219, 1.7822266, 0.9555664, 0.77783203, -1.2421875, -0.98876953, 0.5097656, -3.6425781, -0.5800781, 1.1357422, -0.73779297, -1.4423828, 2.1601562, 1.03125, -1.4921875, 0.36279297, -0.39746094, -1.8681641, 1.1601562, 0.90185547, -0.6308594, -0.8901367, 1.1279297, -0.30566406, -2.9863281, 0.68847656, -1.25, 1.1835938, 1.0146484, 2.3867188, 0.9248047, -1.5097656, 0.26123047, 0.7348633, -1.4638672, -1.1367188, 0.74121094, 1.2236328, 2.5234375, -2.6621094, -0.2746582, -1.2158203, -0.69873047, 3.1054688, 0.16455078, -0.5161133, 0.07891846, -1.9101562, -0.94677734, 2.4667969, 1.0253906, 5.1640625, 0.11065674, 2.1503906, -1.4091797, 0.9291992, 0.70703125, -0.75927734, -0.56591797, 1.6074219, 2.9199219, 0.5942383, 0.038330078, 3.3320312, -2.7070312, 0.22485352, -2.4746094, -1.7275391, -1.2919922, -0.88623047, -1.0791016, -3, -0.07928467, 1.4199219, -0.4741211, -4.2304688, -0.7270508, -1.3681641, 1.8691406, -0.16357422, -1.1738281, 1.0126953, -1.9628906, 0.96777344, 0.81347656, 2.9824219, 2.3359375, -2.2324219, -1.4306641, 1.3642578, 2.0019531, 0.28344727, -0.59814453, 0.734375, 1.8076172, -2.1757812, -2.5292969, 0.25048828, -0.019454956, -0.7441406, 0.7080078, 0.77246094, -1.6708984, 0.9902344, 0.014053345, -1.0947266, -2.5605469, 0.77197266, 2.6113281, 0.28930664, 1.5644531, -3.8652344, -3.1347656, 0.6303711, -0.57177734, 1.6279297, -0.24536133, -0.14526367, -0.92822266, 1.0478516, -1.6875, -2.0429688, 2.4453125, -1.0947266, -0.6166992, -0.5859375, -2.7089844, -2.6621094, -0.6816406, -0.20483398, 0.921875, -0.46923828, -0.87353516, 0.00957489, -0.10662842, -0.8774414, -0.87597656, 2.0214844, -2.1523438, -0.3779297, 2.8925781, 0.27026367, 1.2802734, 2.5996094, -1.7841797, -0.48388672, -1.8857422, 2.2089844, 1.8642578, 3.0566406, 0.79785156, 2.515625, -0.6245117, 0.8491211, 0.81152344, 0.9941406, 0.68066406, 0.17687988, 0.7680664, -2.8046875, -0.3857422, 3.6347656, 0.9741211, 0.93652344, -0.33813477, -0.59472656, 2.6621094, 0.34545898, -0.7470703, 1.4619141, 0.8041992, 0.05822754, -1.5302734, 2.3359375, -1.2382812, -0.82910156, -1.3359375, -0.52734375, 0.58740234, 2.5507812, -0.49438477, 1.3779297, -0.31201172, -1.0859375, -0.46240234, -1.1240234, 0.47045898, 1.078125, 1.2275391, -0.5493164, -1.375, 2.0878906, -1.5605469, 0.5292969, 1.1787109, 1.2617188, 1.1435547, 2.3574219, -0.33984375, 0.0051612854, 0.94677734, -0.8852539, 2.7128906, 2.8378906, -1.5351562, 1.5488281, 0.28344727, -0.21850586, 1.7001953, 0.12109375, 2.2265625, -0.24597168, -1.8388672, 2.2734375, -2.9882812, 0.9716797, 1.1708984, 0.6855469, -0.72998047, -3.1953125, -1.0878906, 4.5546875, -2.0332031, -1.9804688, 2.4960938, 0.8027344, 1.1787109, 0.9086914, -1.34375, 0.19055176, -1.2851562, -0.81396484, -0.08087158, 0.16772461, 1.4052734, 0.7519531, -0.26171875, -1.2060547, -1.2890625, 0.91845703, 1.6171875, -1.3710938, 0.64990234, -3.2089844, 0.44848633, -0.16235352, -1.7207031, 3.4960938, -2.7089844, 0.44628906, 0.58447266, -1.5488281, 0.8911133, 1.2314453, -2.0976562, 0.48706055, -0.49145508, -0.953125, 1.2021484, -0.16552734, 2.3007812, 0.039764404, -1.2617188, 0.8022461, -0.54296875, -1.3417969, 0.34155273, 0.076049805, -3.3261719, -0.61865234, -0.9916992, -0.62597656, 1.3857422, 0.70947266, 3.125, 0.6738281, -1.2568359, -1.1738281, 0.43579102, -0.44677734, -2.4140625, 0.8417969, 2.9296875, -1.6318359, -4.8125, 0.29956055, -1.1152344, 0.78125, -0.62158203, -0.99121094, 1.5195312, -0.7470703, -0.53515625, -0.89990234, 0.8623047, -0.13586426, -2.5507812, 2.9160156, -2.8808594, 0.5913086, -1.3017578, 1.7919922, -1.7001953, -0.031799316, -0.52734375, -1.5341797, -1.9677734, 0.7192383, 4.140625, -1.7568359, 0.35131836, -1.7919922, -0.034423828, -0.30151367, -0.5522461, -3.8417969, -0.17443848, -1.6220703, -0.24475098, 0.15197754, -4.1640625, 1.046875, -1.2089844, -0.34033203, -1.2802734, -0.72314453, -0.07342529, -0.31079102, 0.5209961, 0.55029297, -0.23413086, -0.9628906, -0.19494629, -0.16589355, 0.009178162, -0.119140625, -0.6689453, -0.14697266, 0.41210938, -0.26123047, -0.66259766, -1.2451172, -0.087768555, 0.7368164, 1.7470703, -0.0234375, -3.8007812, 1.5419922, 0.14868164, -2.0878906, 2.46875, 0.092163086, 0.10534668, -2.1777344, 0.044830322, 3.2167969, 1.9980469, 6.3359375, 0.3881836, 0.21618652, 0.81396484, 2.5625, -0.54296875, -1.28125, -0.6333008, 3.0820312, -1.9824219, -0.6635742, -0.15600586, -0.076538086, -2.6855469, 0.1899414, 0.53027344, 1.5761719, 4.1328125, -1.4140625, 1.0634766, -0.40625, -0.043518066, 0.6748047, 2.4335938, 0.9370117, 1.5859375, 0.045532227, 0.47583008, 0.875, -0.60498047, 0.10247803, 1.1894531, -0.12792969, 3.0234375, 2.9023438, -0.93847656, 1.0292969, -1.8808594, -1.1162109, -1.3037109, 1.5957031, 0.19567871, -0.25317383, -0.89208984, 0.6430664, 1.1875, -1.8916016, 1.2041016, 2.1230469, 1.1972656, 0.14465332, 0.7001953, -1.3574219, 0.34692383, -0.23925781, 0.6015625, 1.0292969, -0.03640747, 0.004261017, -0.51220703, 0.08520508, -0.38134766, 0.99365234, -1.0439453, 0.6254883, 0.67333984, -0.03842163, -0.15368652, -2.9394531, -1.1552734, -0.060546875, 0.5917969, 1.2480469, 0.24572754, -1.3535156, 0.77783203, 0.44921875, 0.58447266, 2.8925781, -2.0507812, -1.1806641, -2.2265625, 1.4228516, 0.7348633, 0.83154297, 1.7197266, -0.19592285, -2.3378906, -1.9130859, -2.3964844, -0.5854492, -2.2832031, -1.1367188, 0.45239258, -0.5722656, -0.30981445, 1.5839844, -0.62939453, 1.7207031, -0.94091797, -0.13806152, 1.8046875, -2.3554688, -0.33032227, -2.0585938, -4.1796875, 1.9140625, 0.8339844, 0.42138672, -0.5229492, 1.1875, -0.8823242, 0.21044922, 2.2792969, -3.5703125, -2.96875, -0.9433594, 2.2382812, -1.8271484, 0.120788574, 0.22998047, 1.8710938, -0.85546875, -1.7792969, 0.2298584, -1.9111328, -0.8276367, -1.0449219, -2.1796875, 0.8564453, 0.41455078, -1.0771484, -2.2070312, -3.1074219, 2.4121094, -0.3095703, -0.31640625, -1.75, 2.0175781, 1.7666016, 0.6948242, 1.3583984, 2.9316406, 2.4140625, -0.47460938, -1.2060547, -0.066589355, 1.8310547, 0.3774414, -3.0507812, -1.9628906, -0.52685547, -1.6962891, 0.9614258, -0.38354492, -1.3789062, -0.8613281, 1.4746094, 1.3564453, -0.023040771, 1.703125, -1.5068359, 0.3720703, 2.2207031, 0.10394287, -1.5019531, -0.62597656, -0.19372559, -0.4362793, -1.3496094, 1.4560547, 0.15942383, 2.3203125, 0.55566406, -1.5097656, -3.3105469, -0.45898438, 2.765625, 0.87890625, 0.74853516, -2.6132812, -1.1601562, 0.09680176, 1.2666016, 0.0982666, 0.73828125, -0.71533203, 0.16137695, 0.9580078, 2.0585938, -0.14929199, -0.7207031, -0.11584473, -0.16296387, -1.1708984, 0.005706787, 1.3017578, -2.0195312, 0.57421875, -0.2475586, -1.2099609, 2.6523438, 0.46655273, 0.75146484, -1.3759766, -0.29589844, -1.796875, 0.5644531, 0.7441406, 0.8149414, 0.6425781, 0.46655273, 3.3105469, 0.88720703, 0.9902344, 0.7597656, 1.6494141, -2.6738281, -0.43579102, 0.44506836, 1.6044922, -1.7773438, 1.4511719, 3.421875, 0.77685547, 0.7685547, 2.1640625, 2.2734375, -0.64697266, 1.7900391, 0.7519531, -0.45166016, -1.484375, -1.0224609, -2.4492188, 2.8925781, -2.0234375, -2.09375, -0.94921875, 2.6464844, -0.8564453, 1.7226562, 1.1367188, 0.49438477, -1.0927734, -3.8574219, -1.2617188, -1.4980469, -0.24902344, 1.0175781, 0.46826172, -0.028533936, 3.3515625, 1.0302734, 1.1044922, -0.61083984, -2.7011719, 1.1396484, 1.0869141, -2.5507812, -0.9169922, -1.1416016, -2.8769531, -0.9951172, 0.49438477, 0.6386719, 0.08215332, -0.3059082, 1.8691406, -1.2294922, -0.7133789, -0.56884766, -0.5522461, -3.1835938, 0.33666992, 1.5957031, 0.88720703, -0.97558594, -1.0810547, -0.47021484, -0.35888672, 2.9179688, -0.6645508, 0.3642578, -2.2832031, 1.9794922, -2.7324219, -4.390625, -0.68847656, -1.1992188, 1.4804688, 0.6196289, -1.6455078, -0.71435547, -0.48706055, -1.9189453, -0.43945312, -3.3574219, 1.2578125, -1.2958984, -0.42626953, 1.2724609, -0.027999878, 0.6503906, -0.31103516, 0.9082031, 0.13134766, -0.59033203, -2.96875, -1.8486328, 2.9921875, 0.5205078, -0.36499023, -1.6513672, 0.2734375, 1.1943359, -0.6699219, 2.25, -3.5136719, 1.6015625, -0.37719727, 0.40844727, 0.92578125, -1.0488281, 0.26660156, 2.2109375, -1.2695312, 1.796875, 2.6796875, 1.5908203, -1.5722656, -0.39501953, -0.31420898, -1.3632812, 1.0351562, 0.6401367, 2.3515625, 0.09790039, 1.2333984, 2.0742188, -0.48095703, 0.48461914, -1.9794922, -2.1054688, -1.2451172, -0.4140625, 2.7089844, -0.5131836, 1.4130859, -0.6748047, -1.3330078, -1.1972656, 0.33764648, -1.1181641, 0.16967773, 1.6601562, -3.3027344, 3.1992188, 0.12634277, -0.91796875, -1.5078125, -1.8955078, 1.4853516, -0.12634277, -1.0839844, -1.0048828, 2.7011719, -0.6323242, 2.4628906, -0.17211914, 2.6855469, 0.1907959, -0.105651855, -1.6875, 2.3652344, 1.8447266, -0.6611328, 1.0507812, 0.36645508, -0.02003479, 0.055480957, 2.6074219, 0.26660156, -1.9033203, 1.1503906, -1.5576172, 0.9711914, -1.5205078, -0.69677734, 0.1385498, -3.8027344, 0.47973633, 0.49267578, -1.5029297, 0.032073975, 2.8710938, 0.8798828, -0.06689453, 1.2802734, 1.7080078, -1.8808594, -0.45996094, 0.4194336, 1.6035156, -2.7128906, 0.07714844, 0.1907959, 1.2236328, 0.08874512, -1.7099609, 1.359375, 0.7211914, 2.6484375, 0.06008911, 1.4697266, 0.59375, 1.8564453, 0.91308594, 2.0488281, 0.6201172, 1.3349609, 2.7265625, -0.19763184, 0.8598633, 2.3378906, -0.08782959, 0.12817383, 0.3527832, -1.6445312, -0.14025879, -1.4267578, -0.77246094, -1.5693359, -1.515625, -0.34716797, -1.5175781, -0.6791992, -1.8886719, -0.30444336, -0.98779297, 0.25341797, -1.6289062, 0.47094727, -0.2043457, 0.047424316, 0.09399414, 0.6425781, 0.7626953, 0.89941406, 0.5332031, 0.6455078, 0.16699219, 1.3984375, 0.2993164, -0.3659668, -3.8652344, -1.8632812, -1.3857422, 2.296875, 0.53125, 1.2128906, 0.019989014, 2.578125, 1.6035156, -0.31958008, 1.4257812, -0.71191406, 1.2275391, 1.8681641, 2.2695312, 0.037109375, -1.0449219, 2.2089844, 1.6152344, -3.5898438, -2.0253906, 0.6972656, 0.28564453, 1.0224609, -0.76464844, -2.9511719, 1.9677734, -2.5410156, 0.4621582, -2.6699219, 0.055389404, 1.7578125, -0.13647461, -0.50390625, 0.6308594, 0.085998535, 0.9169922, 1.1318359, -1.484375, 2.2675781, 1.2490234, 1.8164062, 0.28564453, 0.69384766, 0.14343262, 2.1640625, -1.2109375, 3.1894531, 0.6933594, -1.0341797, -0.030136108, 3.5253906, 3.3710938, 1.4736328, -1.5107422, -0.28710938, 1.7822266, 0.7441406, 1.6806641, -1.4287109, -1.0517578, -1.2695312, -0.76953125, -1.1152344, 0.016021729, -0.61572266, 0.30273438, 0.39501953, 0.36523438, -0.07147217, 0.12695312, -1.7207031, 0.1385498, -0.58935547, -1.4726562, -0.19506836, -0.01473999, 1.3134766, -2.1289062, 0.35791016, -1.0273438, 0.83691406, 1.0419922, -2.7890625, 0.49365234, -1.5751953, -0.6401367, -0.109191895, 0.19836426, -0.1005249, -1.1738281, -1.0166016, -2.3671875, 0.85009766, 1.8076172, 1.0048828, -0.19873047, 0.6123047, 0.2487793, -1.2402344, 0.29003906, -1.8359375, -1.7158203, 1.7753906, -2.3574219, 1.5224609, -1.2314453, -1.9580078, -2.78125, -1.9931641, 0.5908203, 0.4416504, -1.6611328, 0.98046875, -0.5683594, 1.953125, -0.45361328, -2.3085938, 0.109558105, 1.015625, 0.65478516, -0.8564453, -0.41381836, -0.48339844, 0.95703125, 0.59716797, 1.8632812, 1.9707031, -0.57470703, -0.90966797, 1.9033203, 0.46362305, -0.6044922, -1.3066406, -0.24072266, -0.23168945, 0.8461914, 1.2558594, 1.3300781, -0.23925781, 0.82910156, -2.3671875, 1.9697266]}, "B07CNXY2XG": {"id": "B07CNXY2XG", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush \u2013 Gas Grill Cleaner - BBQ Brush\nDescription: Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included\nFeatures: Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nRestore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill.\nCleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with\nThe extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before.\nQuarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.\n", "embedding": [0.5488281, 1.6650391, 0.6152344, -1.3369141, 1.5458984, 0.56884766, 0.36010742, -2.0722656, 0.92041016, 0.05316162, -1.7705078, -0.83251953, -1.0175781, -3.4472656, -3.4492188, 1.3017578, 0.6723633, 1.4052734, 2.6679688, 3.3789062, 0.37963867, -0.8183594, 0.57714844, 1.8203125, 0.7163086, -0.18432617, 2.125, -0.74853516, 1.9355469, 1.5458984, 1.7392578, -0.13586426, -0.94091797, 0.2836914, -3.6035156, 1.4101562, -0.6298828, 1.8339844, -1.2617188, -0.4909668, -1.5, 0.22436523, 0.21240234, 0.45458984, -3.9472656, 3.1972656, 0.9042969, 3.4375, 0.13464355, -4.4140625, 0.50097656, 0.30444336, 2.671875, 1.5371094, -1.6425781, 0.95703125, -1.5117188, -3.9707031, 0.029037476, -1.4951172, 2.9160156, 2.5039062, -1.453125, 0.22668457, 1.3857422, 1.7246094, 0.49414062, -0.06774902, -1.9492188, -1.7558594, -1.0615234, 1.3427734, 1.8955078, 0.4519043, 0.11187744, 1.4140625, -1.2607422, 1.1005859, 1.1171875, 0.9038086, -0.97509766, 1.7451172, -0.18701172, -2.7871094, 1.9003906, -0.28466797, -1.8857422, -1.109375, 2.2773438, -0.40478516, 0.5419922, 2.3261719, -1.9208984, -4.2226562, 0.90966797, -1.8251953, 0.5004883, -2.0390625, -0.0619812, 1.5820312, -2.5839844, 0.13220215, -1.0751953, 0.5126953, -1.3896484, -0.20812988, 0.58251953, 1.0371094, -3.9179688, -1.9072266, -1.1728516, 3.0253906, -1.5234375, 1.4511719, -0.8540039, -0.8383789, -2.3339844, -0.33398438, 0.16809082, 1.640625, 0.78222656, -0.6977539, 0.07824707, -0.37182617, 0.012962341, 0.16552734, 0.9326172, 2.6484375, 3.4296875, -0.8823242, 0.7558594, -3.8222656, 0.9082031, 1.0986328, 0.85253906, -1.3632812, -0.6748047, -0.6875, -1.0761719, -0.8457031, -1.3740234, -1.1894531, 2.5917969, -2.5410156, -1.5927734, 0.98339844, -1.3779297, -1.6806641, -0.39257812, -3.6738281, 1.7275391, -0.7290039, 1.7470703, -2.1171875, 2.6699219, 1.4726562, -1.0068359, -0.6567383, 0.52001953, 0.9814453, -1.0761719, -3.0371094, 0.32836914, 0.24658203, 0.17028809, -2.5742188, -2.2324219, 2.4746094, 1.4824219, 1.4746094, 0.20275879, -1.1201172, -0.18017578, -0.7753906, -0.75439453, -0.48291016, 1.1308594, 2.0507812, 0.5625, -0.46435547, 3.1386719, -2.1191406, 0.24560547, -1.1855469, -0.5859375, -0.01675415, 2.609375, 1.4726562, 2.0546875, -0.42578125, 3.6386719, 1.6474609, 0.9765625, 2.6386719, 0.1373291, -1.1660156, -0.60839844, -1.6025391, 0.40576172, 1.7666016, -2.3632812, -3.2851562, -1.4335938, -1.4589844, -1.3144531, -1.5585938, -0.0062408447, 0.4116211, 0.065979004, -0.37548828, 0.29956055, -1.1582031, 3.1875, -1.3974609, 1.0664062, -3.6542969, -0.41455078, -2.4804688, 1.328125, 1.5742188, -0.8935547, 0.2548828, -0.67822266, 0.9790039, 1.9755859, 2.078125, -2.3007812, 2.5097656, -0.5390625, 0.8911133, -0.4182129, 2.3710938, -1.4824219, -1.1875, -0.72753906, -1.0556641, 0.34399414, -1.0351562, 0.2076416, -0.5185547, -0.08483887, -0.47924805, -1.8349609, -0.43286133, 1.7998047, 0.027236938, -0.33666992, 1.640625, -0.45776367, -3.0292969, 1.3632812, 2.2382812, 2.1464844, 0.6796875, 0.14489746, 0.34277344, -0.8491211, -1.5439453, -2.4355469, 0.9355469, 0.31152344, -1.0625, 0.8540039, -0.43701172, 0.43408203, 0.08862305, 2.8789062, -1.7685547, -0.3786621, -3.1445312, -0.06890869, 0.7993164, -1.3525391, -1.5996094, -0.27197266, 1.0693359, -0.044555664, 0.7519531, -0.2919922, -0.38793945, 0.07684326, 1.8154297, 3.0175781, -1.1552734, -1.3457031, -2.4609375, -3.0683594, -2.3984375, 1.6738281, -1.2275391, 3.6816406, 0.67871094, -2.4472656, 1.6025391, -2.2929688, 1.4248047, 1.6884766, 1.0771484, -1.6601562, -0.7426758, 2.2148438, 0.9272461, -0.703125, 0.9589844, -1.7783203, 0.58691406, 0.8964844, -2.7207031, 0.48632812, 2.953125, -1.359375, -0.5800781, 2.7324219, 0.044952393, -4.3007812, 0.4416504, -2.4042969, -1.0917969, 1.1640625, -1.0820312, -1.1279297, -0.02458191, 1.0166016, -1.3544922, -2.9902344, -0.34423828, -0.53466797, -1.1152344, 1.1914062, -1.0566406, -0.21569824, 0.52978516, -0.54248047, -1.1318359, -2.4941406, -0.1161499, -0.27783203, -1.765625, 1.6621094, -1.7685547, -0.3671875, -0.30737305, -1.7373047, 1.5585938, -0.45043945, 1.0126953, -3.1796875, 0.94091797, 0.79589844, 1.5576172, -0.99316406, 0.26733398, -0.34472656, -1.8037109, 0.5205078, 0.8466797, 0.2631836, -0.6166992, -0.7290039, 0.41259766, -0.1015625, -0.15649414, -0.6357422, 1.6689453, 0.54003906, 0.48242188, -0.06945801, -1.1572266, 0.24853516, -0.42089844, 1.5292969, -0.21765137, 1.7949219, -0.2626953, 0.30810547, 1.0126953, 1.3984375, -1.4814453, -1.609375, 2.2011719, -1.1025391, -0.76123047, 0.55859375, 2.515625, -1.1191406, -1.0351562, 1.6386719, -0.22924805, 0.24487305, -2.1855469, 0.13256836, 1.0185547, -2.9277344, -0.81152344, 1.8994141, 0.81884766, 0.5180664, -1.7841797, -0.7109375, 2.9667969, 0.2088623, -0.6347656, 0.28051758, 1.59375, 0.86328125, -4.2578125, -1.0292969, -2.0839844, -0.7050781, -2.7617188, -0.8076172, 2.59375, 1.4648438, 0.7993164, 2.1230469, -2.2011719, 0.87939453, -2.0605469, -2.8613281, -0.70703125, 1.2539062, 0.9819336, -0.9111328, -0.03704834, 3.4667969, -0.12005615, 0.8027344, -1.7363281, 0.25634766, 1.2988281, 2.2949219, 0.5878906, -0.30664062, 1.4550781, 0.8696289, -1.2773438, -1.703125, 1.1748047, 1.6591797, 0.76464844, 3.578125, 1.3134766, 1.7724609, 0.36694336, 3.7675781, 1.3134766, 3.0996094, 0.13427734, 0.079711914, 1.0849609, -0.3544922, -1.7509766, 0.45776367, -0.5107422, -2.0683594, 0.9111328, -0.2927246, -0.36914062, 1.1660156, -0.10241699, -0.47143555, -0.20300293, 0.86035156, 0.30981445, 2.1289062, -0.6254883, 0.36523438, -0.9814453, -2.5039062, 1.5712891, -1.8652344, 2.2578125, -3.46875, -2.3125, 2.4003906, 1.2822266, 0.10998535, -1.6367188, 0.9658203, -2.0507812, -2.5976562, -0.26708984, -1.4023438, -0.14086914, 0.5776367, -1.2636719, -0.14733887, -0.43432617, 0.38183594, -0.53027344, -1.4814453, -3.1914062, 0.0071907043, 0.08892822, -1.0556641, 0.5058594, 1.6972656, -0.07128906, 1.9804688, 1.4648438, 0.75097656, 3.8144531, -2.4785156, 0.8125, -2.7226562, -2.8125, -0.5341797, -2.3183594, -0.11968994, -0.54785156, 1.1923828, 0.6274414, -0.97558594, 0.7729492, 1.6582031, -1.9619141, 1.4970703, -0.48388672, -2.296875, -1.2333984, 0.73583984, 1.6259766, -0.66845703, 1.9453125, 3.2675781, 1.4394531, -2.2226562, 0.9277344, -3.0449219, -1.5615234, -0.4753418, -1.7646484, 0.61572266, 2.0546875, 1.9511719, 1.8759766, 2.0585938, 0.14086914, 4.0117188, -0.4802246, 0.68847656, -0.44091797, 0.19934082, 1.4560547, 0.48046875, -0.96875, 2.5390625, 1.5996094, -1.1044922, -0.45629883, -0.25170898, -2.859375, -0.1505127, 1.7089844, -0.22192383, 0.5473633, -1.0458984, 1.2910156, -0.9199219, -0.20898438, 2.109375, -1.9628906, 0.37475586, -0.14611816, 0.028335571, 0.22814941, 1.9580078, -1.2382812, -0.7607422, -0.44482422, -1.3134766, -0.17163086, 0.7988281, 0.80126953, -0.15356445, -0.9189453, 1.0390625, -0.6245117, -1.1337891, -0.81103516, 1.3105469, -0.9038086, -2.2363281, 1.5488281, -0.16564941, -1.0917969, 0.99658203, -0.15771484, -2.7539062, -2.5546875, 0.93652344, -2.65625, -0.59033203, 0.765625, -0.71777344, -0.15600586, -1.5234375, -1.0478516, 0.029663086, 0.7133789, -1.9970703, -0.0335083, 2.8222656, 0.77783203, -0.74316406, 2.7714844, -0.9707031, 0.19665527, -1.5761719, -2.46875, -1.4873047, -1.3134766, 0.5786133, -1.7060547, -2.0859375, 1.1923828, -0.3725586, 0.66064453, 0.24499512, -1.6796875, -2.3242188, -2.71875, 2.0957031, 0.7519531, 1.3505859, 1.3310547, -2.1132812, 2.3945312, -0.48754883, 2.7363281, 3.6054688, 0.4711914, 1.0849609, 1.3193359, 1.2314453, 0.80566406, 1.3076172, 2.1816406, 4.8867188, -0.28759766, -1.2060547, 1.8222656, 1.0400391, -2.9648438, -1.0068359, 3.0996094, 1.1699219, 1.5498047, 1.6210938, 1.7041016, 0.1026001, 0.5546875, 2.6386719, 0.25463867, -1.4853516, 0.006641388, 2.5839844, -3.9863281, 0.8828125, -0.2993164, -1.0917969, 2.2070312, -1.2539062, -1.8193359, 1.3310547, 1.4501953, 0.83935547, 0.75, -3.8554688, 2.7382812, 1.6484375, 1.3720703, 0.5029297, -0.9272461, 0.55126953, 2.1269531, 1.2041016, 0.1842041, 2.3066406, 1.1386719, 1.9960938, -1.4140625, -1.3046875, 1.0576172, -0.32104492, 1.0712891, -0.054992676, -1.5683594, -2.2949219, 0.7133789, 0.5239258, 1.6767578, 0.53808594, 0.11810303, 2.25, -0.4645996, 1.1386719, -2.0390625, 2.3808594, -0.2993164, 0.40039062, 3.0742188, -3.2558594, 0.33544922, -2.3046875, -0.32983398, -0.6879883, 2.5273438, 2.9472656, -1.9580078, -3.3554688, -0.6640625, -1.1972656, -3.4140625, -0.9814453, -0.5546875, -0.027023315, 0.8457031, 0.62158203, 1.0322266, -0.6303711, 0.79052734, -0.6904297, 0.5756836, -1.9921875, 0.953125, -0.19567871, -2.0917969, 0.6621094, -0.5644531, -1.1035156, 0.54345703, 2.2851562, 1.7851562, -2.234375, 0.18066406, 1.7841797, -4.3398438, -2.0996094, 2.0605469, -0.9199219, -0.8496094, 0.012252808, 0.0021820068, -1.1669922, 0.8515625, -2.1308594, 0.50341797, -0.5180664, -1.3320312, -1.7949219, -1.3320312, -1.6445312, 0.79296875, 0.19177246, 1.4033203, 0.026657104, 1.3632812, 0.5966797, 2.3886719, -2.3554688, -0.61621094, -2.3164062, 1.6835938, 3.1640625, -1.421875, -0.49804688, 3.1503906, -3.0351562, -0.3310547, 0.74609375, -1.953125, 1.7304688, -0.91748047, -2.5117188, 0.52978516, -0.89453125, 0.77490234, -1.9248047, 0.3996582, -0.4753418, -1.2382812, 0.7421875, 3.4902344, -0.96435547, -1.1113281, -1.0253906, 1.1064453, -1.1435547, -0.66064453, 0.23828125, 0.98046875, 0.4404297, -2.484375, -1.4589844, -1.1201172, -0.17480469, 2.7460938, 1.0712891, 0.22570801, -3.3554688, 0.23071289, -1.5878906, 1.4980469, 0.08306885, 0.90722656, -0.4572754, 4, 0.18530273, -4.9648438, -1.2480469, -2.0546875, 0.19592285, 0.37768555, -3.7675781, -2.7460938, -3.3300781, 0.20776367, -1.6582031, 0.5449219, -2.7226562, 1.5576172, -0.35473633, -0.8876953, 0.5546875, 4.015625, 0.3984375, 3.4121094, 2.8476562, 0.6010742, -1.6201172, 0.29638672, -1.1816406, 0.28808594, 0.95947266, -2.3828125, 2.3515625, -1.1435547, 0.7363281, -1.5634766, 1.2314453, 3.1601562, -0.01878357, -0.7885742, 3.890625, 0.62402344, 2.1425781, 2.40625, 1.3740234, 2.3925781, -0.36865234, -0.23706055, -0.37597656, 2.9003906, -1.5976562, 1.1738281, -0.65722656, -0.75439453, -1.5546875, 1.5537109, 1.2460938, 0.83203125, 0.29345703, -4.4765625, 1.4921875, -0.32763672, -0.30859375, -0.16137695, -0.45874023, -2.859375, -0.27270508, 0.5029297, 0.17138672, 3.6210938, 2.5371094, 0.6171875, 1.0146484, -1.2216797, 2.2734375, -4.0429688, -0.80078125, -0.32470703, 1.0332031, 0.91015625, 1.5478516, -1.0439453, 0.4020996, 0.3623047, 1.0126953, -0.6791992, 0.64990234, 0.8095703, 0.011604309, -1.375, 1.1826172, 0.2397461, -0.20605469, -0.74853516, -2.7050781, 1.4648438, -1.1601562, -1.7128906, 2.6621094, -0.34594727, 0.40625, 2.6875, -4.734375, -1.8720703, 0.14904785, 3.171875, 0.2487793, 0.46777344, 0.028640747, 0.066467285, -0.8964844, -0.0491333, 2.1796875, 2.3105469, 1.3261719, -3.4042969, -0.12731934, 0.09069824, 0.25439453, -0.7998047, 1.6181641, -1.3574219, -1.0078125, -1.8525391, 0.78808594, 1.0810547, 1.4511719, 1.0107422, 2.3554688, -0.7919922, 2.2246094, 3.0761719, 1.6660156, -0.003993988, -0.6796875, 1.5410156, -1.0029297, 1.3837891, -2.8242188, 2.2304688, -0.23962402, 0.020935059, 1.1005859, 1.5859375, 1.0126953, -0.085998535, 0.8417969, 0.5, -1.0136719, 0.6381836, 1.8369141, -0.76464844, -2.0410156, -0.88183594, -0.8183594, -1.2089844, -1.6386719, 1.5966797, 0.88671875, 0.23864746, -0.8798828, 0.3557129, 0.44433594, 1.8525391, -0.16760254, -1.1035156, -2.4023438, 0.6923828, 1.1289062, 0.12670898, 3.1914062, 2.7050781, 0.5498047, -2.9492188, -0.73046875, -1.4394531, -0.53271484, -2.921875, -2.59375, 0.39990234, 3.6015625, 1.8222656, 1.9072266, -2.0644531, 0.14550781, 3.3496094, 0.55322266, -0.5307617, 2.1777344, -0.9501953, 0.2668457, -1.4003906, 1.5693359, 0.9511719, -2.2382812, -0.29467773, 1.4306641, -1.390625, 2.0371094, 1.1591797, -1.0546875, -0.22937012, 0.8588867, 1.1533203, 0.3125, 0.15527344, 1.1689453, 1.4814453, 3.1210938, -1.2753906, 0.98876953, -0.42016602, 1.3984375, 0.52490234, -0.90478516, -0.39770508, 0.3708496, -0.42260742, -0.5727539, -2.6679688]}, "B00TZPETFI": {"id": "B00TZPETFI", "original": "Brand: DOZYANT\nName: DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type\nDescription: \nFeatures: Converts POL LP tank to Qcc1/Type1 hoses and regulators.\nThis adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place.\nProvides secure and airtight connection between propane tank and gas grill.\nHand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant.\nGreat propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.\n", "embedding": [0.5214844, 0.65283203, 1.9677734, 1.5234375, -0.5151367, -1.8369141, 0.9272461, 0.9902344, 0.35375977, 1.8320312, 2.9238281, -1.1318359, 2.1503906, -3.3222656, 3.7382812, -0.4025879, 1.9833984, -0.33422852, 1.9560547, 2.2636719, 2.5722656, 0.23510742, 0.14416504, -0.7963867, 0.95703125, -0.8227539, 2.8007812, -0.89208984, -0.9433594, -2.2167969, -0.026000977, 0.28295898, -0.7480469, -0.23022461, -1.5644531, -1.2646484, 1.3369141, 0.91308594, -2.0351562, -0.4855957, -2.6054688, 2.6015625, 1.2333984, 0.3466797, -2.5039062, -2.3183594, -0.31201172, 0.17211914, 1.3378906, -0.37060547, 0.6274414, 3.0371094, 0.091552734, 2.1914062, -2.3144531, 2.0332031, 0.3046875, -3.3417969, 0.5908203, 1.1083984, 1.4101562, 0.7949219, -1.5419922, 1.3125, 0.44433594, 0.9038086, -0.87158203, 0.625, 0.58935547, 0.121154785, -0.24560547, 2.2773438, 1.8144531, -1.7695312, -2.6660156, 0.044647217, -3.2246094, 0.9199219, 1.1318359, -1.7373047, -0.85791016, -0.31982422, 0.101257324, -2.3242188, -0.5517578, -0.23510742, -0.6640625, 1.546875, 0.19348145, 1.3398438, -3.671875, 1.2685547, -1.4541016, -2.1542969, -0.5961914, 0.40795898, -1.1464844, 2.5976562, 2.8007812, 0.053741455, -1.8769531, 0.08465576, 1.1474609, 1.0214844, -2.3535156, -0.6401367, -2.1640625, 0.011230469, -1.9003906, 0.79296875, -0.47387695, 1.1923828, 2.7636719, -2.2128906, 0.13342285, -2.3457031, 0.28222656, -1.2060547, 0.5683594, 1.1132812, 2.75, -0.059387207, 1.7421875, -0.5732422, 1.7597656, 1.7705078, -1.6640625, -0.42456055, 2.9296875, -0.74316406, 0.88964844, 0.92578125, 1.7373047, -0.7338867, 1.3037109, -2.7128906, -0.7792969, -0.41723633, 0.6791992, -1.5498047, -2.4199219, 0.82128906, 0.79052734, 0.092041016, -4.203125, 0.52734375, -2.7890625, 1.5244141, 1.4804688, -1.3476562, 1.1660156, -2.5507812, 0.56640625, -0.59375, 2.1738281, 1.3730469, -0.50146484, -1.8271484, 1.5087891, 1.3447266, 1.0576172, -0.7167969, -0.24291992, 2.0507812, -0.40600586, -2.2480469, 1.2773438, 0.23815918, -0.88134766, 0.44482422, -2.1523438, -3.8925781, 0.7133789, -0.115112305, 0.49072266, -0.8198242, 0.97802734, 1.0439453, 0.50878906, 0.26464844, -3.3105469, -0.50097656, -0.23486328, -1.0947266, 1.5947266, -0.8256836, -2.546875, -1.3466797, 1.1152344, -2.328125, -1.5175781, 2.4960938, 0.9370117, 0.15014648, 0.6855469, -2.4628906, -1.3681641, -1.0263672, -0.68603516, 1.3916016, 0.14453125, -2.7402344, 1.1455078, -0.05368042, -0.9555664, -1.2109375, 1.1542969, -1.3759766, 0.22680664, 1.5117188, 0.46606445, 0.5107422, 2.1171875, -0.61328125, -1.0488281, -1.3173828, 1.6923828, 2.2695312, 1.7373047, 0.28393555, -1.8369141, 0.097351074, 0.61328125, 1.1455078, 1.3974609, 0.31469727, -0.42260742, 1.7011719, -2.0664062, -0.72265625, 2.0449219, 2.3476562, -2, 0.46972656, -0.31176758, 1.7001953, 1.5673828, 0.2298584, 1.6552734, 0.05026245, 0.59472656, -1.9462891, -1.0292969, -0.76464844, -0.8701172, 0.18908691, -2.2070312, 2.1875, 0.953125, -0.7998047, 0.1895752, 0.41137695, -2.1640625, -3.4453125, -2.9765625, 0.49023438, -0.06210327, 1.1816406, 0.58984375, -1.3076172, 2.6621094, -1.3935547, 1.4033203, -1.2568359, 1.5410156, 1.5869141, 1.9111328, -2.2226562, -1.1611328, -0.11553955, -0.1048584, 3.3769531, 3.0507812, 0.9506836, -0.7167969, 3.9648438, -2.3769531, 1.1552734, 0.4152832, 0.4572754, 2.5078125, 0.30981445, 1.1005859, -2.7832031, 0.27783203, 1.90625, 0.7910156, 0.17858887, -2.0136719, -1.4003906, 3.3515625, -1.0292969, -2.1328125, 1.6875, 3.0820312, 2.9082031, 0.8774414, -0.78222656, -2.7695312, 0.15307617, -1.7617188, 0.87597656, -2.5136719, 0.9482422, 3.1621094, 0.6948242, -2.0703125, -0.15930176, 0.7241211, 1.6474609, -1.1572266, -0.63134766, -2.4199219, -1.3544922, -1.8164062, -3.2128906, 0.7607422, -2.1621094, -2.0527344, 0.6923828, -0.17102051, 0.05569458, 1.4375, -1.3251953, 1.1494141, 1.3730469, -1.1552734, -0.45117188, 0.35327148, -0.6542969, 2.3164062, 0.0569458, 1.6611328, -1.7148438, -0.035095215, 1.15625, -0.6689453, -3.9394531, 0.7265625, -2.4257812, -0.16418457, -1.5537109, 1.5205078, 3.4589844, -0.0005669594, -1.4589844, -2.6035156, -0.87841797, -1.3056641, -2.8203125, -0.46289062, 3.2128906, -1.1103516, -4.0664062, 0.75146484, 0.74072266, 0.79296875, 2.9453125, -2.4394531, 0.74365234, 0.70947266, -1.0185547, -0.8378906, 0.6826172, 0.29052734, -0.7783203, 0.25170898, -3.5742188, -0.3322754, -0.9394531, 1.515625, 0.023971558, 0.7675781, -1.5673828, 0.16625977, 0.5229492, -1.5947266, 2.0566406, -0.76953125, 2.046875, 1.3310547, -0.9580078, 1.6904297, -1.6933594, -3.671875, 0.14562988, -0.9790039, -0.56591797, 0.8901367, -4.5273438, -0.7651367, -1.4189453, 0.8354492, -1.1113281, 0.005130768, -0.15185547, -0.09887695, 2.9433594, 0.25195312, 0.38183594, 1.2382812, -0.10107422, 0.29638672, 1.3847656, 1.8222656, -1.2705078, -1.5947266, -0.5961914, -0.6723633, 0.52783203, -1.6884766, 0.7055664, 0.78808594, 0.6118164, 0.54296875, -2.4355469, -0.96777344, 0.9526367, -0.6381836, 1.7255859, 0.09082031, -1.1523438, -2.9550781, -0.25219727, 3.9707031, 1.4267578, 4.0664062, 1.2753906, 2.3457031, -0.78759766, -0.07727051, -1.7470703, -1.8486328, -0.89208984, 2.6953125, -2.7949219, 0.20031738, -0.6220703, 0.12646484, -2.6992188, 1.890625, 0.6953125, -0.45043945, 2.609375, -0.46533203, -0.22741699, 0.18981934, 0.70214844, 2.5332031, 0.5498047, 0.33569336, 0.9824219, -0.074523926, 0.17944336, -1.2294922, -0.46728516, 0.4855957, 2.2832031, 0.7626953, 0.6352539, 0.7626953, -1.8710938, 0.39233398, 0.9296875, 0.4375, 0.56152344, 1.1132812, -0.2800293, 1.0693359, 0.48999023, 0.7993164, 1.0742188, -3.0800781, -0.5307617, 1.7177734, 1.3818359, -0.6923828, 0.42773438, -0.30639648, -0.97314453, -0.32836914, 0.2541504, 2.7382812, 1.8212891, -0.48657227, -0.2290039, 0.068115234, -1.75, 0.18139648, -0.55859375, 2.1152344, -1.3564453, -0.33911133, -1.0175781, -1.4648438, -1.4511719, -2.3203125, -2.4277344, 1.9335938, 0.97753906, -0.6855469, 0.13391113, 0.16186523, 1.8837891, 0.25585938, -1.8417969, -0.21533203, -0.89208984, -1.3447266, 0.17822266, -0.43798828, 2.8300781, 1.3828125, -2.6328125, -0.87109375, -0.9550781, 0.84277344, -2.1875, -0.38427734, -1.3916016, -3.5058594, 0.2746582, 2.4160156, 0.5629883, 3.328125, 0.40161133, -0.98535156, 0.65478516, -1.1230469, -0.87402344, -0.5488281, -4.9335938, 1.6367188, -2.3964844, 1.7246094, 2.1425781, 1.0117188, -1.328125, 1.1103516, 2.3847656, -3.328125, -0.73095703, -1.6835938, 1.2988281, -3.6992188, -0.3996582, 2.3515625, 1.6835938, 0.45654297, -0.6044922, 0.11529541, -0.9482422, -1.75, -1.0673828, -0.6933594, 0.51660156, -0.44799805, 0.9824219, -1.6269531, 0.41577148, 2.0644531, -0.026504517, -1.1572266, -1.2753906, 2.4414062, 1.1953125, 1.6015625, -1.3847656, 2.9941406, 3.7832031, 0.18334961, -0.31884766, -0.23364258, 2.96875, 0.40966797, -2.7207031, -0.30297852, -0.89501953, 0.7915039, -0.7626953, -0.123168945, 0.3605957, -0.008804321, 3.1679688, 0.22619629, 0.953125, 1.6113281, -0.4819336, -1.8066406, 0.5283203, -0.039520264, -3.1894531, 0.22021484, 1.5859375, 0.045135498, 0.78027344, -0.5419922, -2.0234375, 0.85498047, -0.6533203, -1.0351562, -2.1113281, 0.08294678, 0.60546875, -0.12158203, -0.92578125, -2.1386719, 0.3708496, -1.4882812, 0.24743652, 0.79345703, -1.6464844, -1.0019531, -1.0185547, 1.1474609, 2.0488281, 1.0488281, -0.82666016, 0.6425781, 1.7099609, -0.062927246, -0.55566406, 1.6757812, -0.88964844, -1.6826172, -0.9951172, -1.0898438, 2.0390625, -2.4628906, 0.21191406, 0.28881836, -1.0302734, -4.5585938, 1.7294922, 1.9306641, 1.5253906, 0.14819336, 0.24047852, 1.3037109, 2.3222656, -0.13806152, 1.1035156, 0.5058594, -1.3261719, -1.0341797, 0.7963867, 2.5820312, -1.3769531, 1.7373047, 1.8164062, 2.6933594, 1.8173828, 0.24072266, 0.9086914, -1.5087891, 0.9916992, 0.05770874, -0.43798828, -2.0410156, -0.7832031, -2.6015625, 3.8105469, -2.3964844, -2.0332031, 0.1270752, 1.1337891, 0.8232422, 0.6308594, 0.8203125, 0.40454102, -2.5839844, -4.2578125, -0.8227539, -0.32470703, 0.20202637, 1.1621094, -0.5234375, 2.0019531, 1.1865234, 1.2685547, 2.6152344, 0.59033203, 0.6894531, -1.4238281, -1.4169922, -2.2539062, -0.39868164, -3.3359375, -0.3774414, 0.24572754, 0.27246094, 4.1796875, 0.2529297, 0.46704102, 0.76416016, -0.15246582, -1.4521484, 0.24279785, 1.0175781, -1.125, -0.5029297, 4.1523438, 0.4716797, -2.4960938, -1.6728516, 0.17443848, -0.34521484, 0.37402344, 0.70214844, 0.09802246, -1.8515625, -0.11645508, -2.6308594, -3.3847656, -0.53808594, 1.2851562, 1.6962891, 0.8833008, -1.4355469, 0.26586914, 0.9086914, -1.3808594, -0.7265625, -2.1132812, 0.9482422, -1.2226562, -0.09637451, 2.1269531, 1.1347656, -0.28710938, -0.15881348, -0.6699219, -1.8193359, 0.6567383, -2.8203125, -1.3173828, 1.7988281, -3.3476562, -0.12878418, 0.03829956, -1.8046875, -0.2475586, 1.5722656, 1.7890625, -2.3554688, 2.3710938, -0.7324219, 0.9628906, 0.27368164, -1.21875, -0.6894531, 0.8208008, 0.41455078, -0.012771606, 3.9960938, 3.9492188, -1.3466797, 0.51171875, 0.7368164, -0.49316406, -0.1270752, -0.41210938, 0.3173828, 0.32788086, 1.9404297, 0.072509766, -1.4130859, -1.8955078, -2.3535156, 0.42871094, 0.13452148, -0.24499512, 0.9692383, 0.9951172, 1.4609375, 0.30517578, -0.21264648, -1.0380859, -1.0527344, -0.91796875, -1.34375, 2.0625, -1.8271484, 1.9980469, 0.40478516, -2.0136719, -2.0234375, -0.30371094, 3.4316406, 1.6230469, -1.0488281, 1.3720703, 0.26049805, 0.86279297, 0.79052734, -0.46704102, 2.3417969, -0.7158203, 0.8613281, 0.44067383, -1.1826172, 1.0390625, -3.1386719, -1.5537109, 1.296875, -1.9599609, 1.0830078, 1.2695312, 2.125, -2.5253906, -1.1201172, -0.8017578, -1.203125, -3.6386719, 1.0673828, -0.09918213, -3.2246094, 1.1640625, 1.3144531, -2.6328125, -0.87353516, 2.5859375, -2.5332031, 0.93847656, 2.0605469, 0.65283203, -2.3125, -1.2724609, 0.6586914, -0.48339844, -0.44628906, -0.59375, -1.4423828, 2.0175781, 1.8789062, -1.5830078, 1.0361328, 0.9526367, 1.7519531, 0.98876953, -0.08111572, 0.81103516, 2.53125, 0.19396973, 4.0078125, 2.9394531, 0.48876953, 2.7109375, 2.0214844, 3.1894531, 3.3222656, -1.1630859, 1.1572266, -0.5019531, -0.9379883, 0.7265625, -2.4140625, 0.3293457, 0.61328125, 0.21386719, -0.58447266, 0.5415039, 3.703125, -2.3769531, -1.0498047, -1.6933594, -1.0859375, -3.8320312, -0.60302734, -1.5283203, -0.27270508, 0.75341797, 0.84033203, 0.95166016, 2.28125, -1.5791016, 0.98046875, -0.07293701, 1.9355469, -1.3173828, -0.3408203, -2.1074219, -0.99609375, 1.1650391, 0.7607422, 1.1376953, -0.48876953, 2.2734375, 0.30639648, -0.6147461, 1.1210938, 0.7080078, -0.55322266, 1.0498047, -0.21728516, -0.10723877, 3.9902344, -0.6098633, 1.4482422, 0.73291016, -1.9755859, -3.9492188, 0.5385742, -0.67578125, -0.31030273, 0.3100586, -3.6621094, 0.35595703, -2.3828125, 0.54296875, -3.1113281, -1.4169922, 2.1972656, -4.1757812, 2.1855469, -0.030273438, -1.7197266, 2.6738281, 1.2226562, -1.4882812, 0.7397461, 0.5415039, 0.9975586, 0.37158203, -0.24597168, 1.1894531, 0.65722656, -2.3769531, 5.0351562, 0.11480713, -0.89453125, 0.040771484, 1.3427734, 0.88964844, 0.007423401, -0.1081543, -0.44311523, 0.9316406, 0.64697266, 0.20727539, -0.81591797, -1.40625, 0.24560547, -1.2197266, -1.6201172, -0.45166016, 0.5493164, 1.5546875, 1.4169922, -1.3583984, -0.5161133, 1.0771484, -1.7382812, 1.65625, 1.3447266, -1.5302734, -1.5537109, 0.9223633, 2.4042969, -2.015625, 1.3320312, 1.09375, -0.5776367, -0.4970703, -0.88720703, -2.3730469, 0.3786621, -1.5107422, -1.6044922, 0.9296875, 0.9169922, -1.4570312, -0.44848633, -2.6445312, 1.7529297, 2.671875, 0.21374512, 0.7421875, -0.30273438, -1.0859375, 0.7416992, -0.17077637, -0.5498047, 0.23059082, 1.6640625, -1.1689453, 1.0458984, -0.7133789, -3.3710938, -1.0673828, -2.2519531, 0.8051758, 0.54541016, -0.8364258, 0.90722656, 1.6738281, 1.9140625, -0.99365234, -1.3056641, -0.2836914, 0.41601562, 1.8076172, -1.9501953, -0.5, -0.062194824, 0.6098633, 1.5, 3.1914062, 1.7773438, -0.43945312, -2.1894531, 1.8740234, -0.1517334, -1.4121094, -0.82666016, -0.23413086, -0.7138672, 1.3427734, 1.0683594, 2.1210938, 1.2480469, -1.3056641, -2.4667969, 0.56347656]}, "B07FTK91YG": {"id": "B07FTK91YG", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump\nDescription: 1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
          2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
          3.Ignition is provided by 2 D cell batteries which means electricity isn\u2019t required to power the unit. (batteries not included\uff09
          4.The ideal low water pressure operating range for the Camplux BD158 is 2.8\uff5e110.0 PSI, work easily with great performance.
          5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
          6.The system also works with a 12 volt pump to get the desired pressure.
          7.The gas water heater can't be used for drinking water.
          8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

          Easy to Use
          1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
          2. Connect the gas cylinder with the supplied gas hose and regulator.
          3. Connect shower hose and shower head to the hot water outlet.
          4. Connect water hose to the water inlet.
          5. Insert 2 \"D\" cell batteries.
          6. Enjoy instant hot water!

          What's in the Box
          1 x Camplux pro portable hot water system
          1 x 1.2 GPM Water Pump
          1 x 3 setting ON/OFF shower head and pedestal
          1 x 5\"ft premium shower hose
          1 x 5\"ft CSA approval gas hose & regulator
          1 x Camplux 1.2 GPM Water Pump
          1 x garden hose: 1/2\" BSP Female x 3/4\" GHT Female
          1 x garden hose: 1/2\" BSP Female X 3/4\" GHT Male
          1 x gas inlet connector: 1/2\" BSP Female x 5/8\" NPT Inverted Flare Male
          1 x accessories package\uff08included water tape & screws \uff09
          1 x instruction manual

          Inquiry & aftersales service: support@camplux.com
          Service hotline: (1)844-538-7475\nFeatures: Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don't need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one.\n3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV's and Boats.\nCSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 \u00b0F.\nPower Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise.\nImportant Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "embedding": [-1.5009766, 2.3730469, 1.6503906, 0.17993164, -0.86621094, -1.4951172, 1.03125, -2.2949219, 0.46948242, 2.4335938, 0.89453125, -0.61621094, 1.6738281, -1.3955078, 0.7944336, 0.5727539, 1.5712891, 0.2454834, 1.1464844, -0.4465332, 2.3554688, -0.24536133, 1.8701172, -1.2392578, 1.4677734, -1.0429688, 3.9824219, -1.3583984, -0.18847656, -0.055419922, 0.8803711, -0.22058105, -0.24035645, 1.1621094, -0.7807617, -0.6616211, -1.5400391, 1.2832031, -3.1269531, -1.8818359, -1.0302734, -0.5097656, 3.0664062, -1.2763672, -0.9423828, -2.2636719, 0.5732422, 0.9501953, 3.1171875, -2.4394531, -1.6708984, -0.4951172, -0.5161133, 1.1435547, -2.0839844, 0.8339844, -0.2709961, -1.4453125, 2.3515625, -0.122802734, -1.0986328, 1.1708984, -2.7402344, 2.046875, 0.68115234, 0.24267578, -0.3083496, -2.671875, 0.74853516, 0.7939453, -0.020996094, 2.3691406, 0.9243164, -0.9873047, -1.2841797, 0.47827148, -3.9511719, -0.09265137, 2.6230469, 1.1347656, -2.2695312, 1.6269531, 2.2734375, -3.8730469, -2.7539062, 0.42773438, -0.37817383, 1.1455078, -0.4440918, 1.0195312, -2.5390625, 1.7792969, -2.0585938, -4.1171875, -0.50390625, -2.515625, 1.9755859, 0.8808594, 2.7792969, 2.4433594, -1.3759766, -0.37963867, 0.80322266, -1.1279297, -3.171875, -0.51220703, 2.2109375, 1.7880859, -3.0039062, -0.111694336, -1.8916016, 0.83447266, 2.09375, -1.9941406, -0.39331055, -2.1894531, 1.3505859, -0.5234375, 3.0273438, 0.10443115, 3.1054688, -1.7597656, 1.9472656, -1.2294922, 1.8417969, -0.25073242, -0.4790039, 0.5683594, 0.47875977, 0.6611328, -1.0703125, -1.0517578, 3.703125, 0.5136719, 1.0507812, -3.125, -1.6386719, -2.3144531, -1.8007812, 0.07476807, -3.453125, 1.2060547, 1.2412109, 1.1923828, -5.2421875, -2.0898438, -1.0732422, -0.72753906, -1.1074219, -2.1835938, -0.13293457, -3.9882812, -1.1044922, -1.7900391, -0.56884766, 1.7275391, -1.6455078, -1.2714844, 1.7509766, 1.6044922, 0.5883789, 0.5449219, -1.0322266, 0.34570312, -0.26879883, -1.9140625, 1.3154297, 0.095703125, 0.9770508, -0.17956543, -1.2324219, -2.2421875, 0.6503906, -0.9921875, -1.2080078, -1.6904297, 1.3955078, 1.6494141, 2.9960938, -0.0690918, -3.5273438, 0.5053711, -0.26220703, 0.45532227, 1.8955078, -0.33276367, -1.5087891, -0.7167969, 0.5395508, -1.2646484, -1.2255859, 0.48828125, -2.2324219, -0.46044922, 0.3095703, -2.53125, -1.671875, -0.33374023, 0.6035156, 1.5439453, 1.2333984, -0.58203125, -0.39624023, -0.06982422, -0.28076172, -2.9316406, 1.0732422, -0.50146484, 0.07159424, 1.8984375, -0.036590576, 0.59228516, 2.2714844, -2.2226562, -2.1289062, 0.9003906, 1.4365234, -0.21496582, 2.96875, 0.54003906, -0.8378906, 0.8388672, 1.1474609, 1.6318359, 3.2207031, 0.59277344, -0.30737305, 1.5224609, -2.015625, -2.1738281, 1.6728516, 1.015625, -0.29248047, -1.0625, -1.6484375, 2.7226562, -0.7495117, 0.22973633, 0.8095703, -0.92871094, -0.48657227, -1.1787109, -0.7973633, 0.21777344, 0.69970703, -0.8129883, -2.6503906, 1.4121094, 0.3996582, 0.53125, 0.68847656, -1.359375, -0.1932373, -2.6230469, -4.1484375, -0.5332031, 1.2685547, 0.09039307, -0.27734375, -2.7285156, 3.1816406, 1.5966797, -0.7807617, 0.17687988, -1.46875, 0.42749023, 1.2509766, 0.61621094, -2.2246094, 3.0664062, 0.54296875, 2.3027344, 2.6757812, -0.29101562, 0.45874023, 0.5048828, -0.65185547, 0.99121094, -0.9951172, 1.0214844, -0.32617188, -2.7578125, 1.7050781, -1.7353516, -0.45092773, -1.0869141, 0.86816406, 0.37060547, -3.0097656, 0.33642578, 3.078125, -1.1552734, -3.8300781, 2.2265625, 0.6020508, 2.3515625, 4.4335938, 0.027816772, 1.1035156, 0.107543945, 0.9794922, 1.2705078, -1.6591797, 0.96191406, 0.83154297, -0.14453125, -0.9458008, -2.1953125, 1.1601562, 1.9111328, 0.6464844, -0.2109375, -1.7275391, 1.2275391, -1.9277344, -0.9145508, 1.4746094, -2.0996094, 0.16125488, 2.9628906, -0.3166504, 0.31689453, -1.0039062, -2.4980469, 0.92089844, -0.29760742, -1.9726562, 0.05090332, 1.0703125, 0.45922852, 0.9301758, 0.57421875, 1.6943359, -3.2265625, -0.5600586, -0.5209961, -0.23803711, -2.0351562, 0.14282227, -1.8515625, 0.31396484, -0.44921875, 1.0722656, 1.8681641, 0.47680664, -1.0634766, -1.3886719, 0.92285156, -1.3896484, -2.2734375, 1.1474609, 2.2363281, -1.4873047, -4.21875, 1.7080078, -1.0029297, -0.9589844, 1.4257812, -1.828125, 2.5078125, -1.8183594, -0.15649414, -0.21118164, -0.4572754, -0.4987793, -1.5556641, 1.4560547, -1.5058594, 2.9121094, 2.0722656, 2.1914062, -1.59375, 1.2304688, -1.0126953, -0.23352051, 0.3815918, -1.6523438, 2.3789062, 0.27734375, -0.44555664, -1.2099609, -2.390625, 0.35888672, -1.3427734, -2.5097656, 0.85498047, -0.9526367, -1.2685547, -0.91503906, -3.1640625, 0.86279297, 0.09039307, -1.7851562, -0.63623047, -3.0351562, -1.3037109, 0.9765625, 1.3603516, 1.1494141, 0.74658203, 1.5449219, -1.6621094, -3.3125, -0.99316406, -0.3017578, 0.75683594, 0.9707031, 1.0908203, -1.4296875, 0.50341797, -0.10668945, 3.5859375, 0.47680664, 1.1464844, -0.16015625, -3.9921875, 0.92285156, 1.6357422, 1.8486328, -0.11273193, 0.20227051, -0.44458008, -1.5566406, -0.14074707, 1.9130859, 1.2861328, 4.3046875, 0.56152344, 0.10620117, 1.4765625, -0.95458984, -0.36157227, -0.26782227, -1.2216797, 3.234375, -0.8486328, 1.4013672, 2.0722656, 2.6738281, -3.0488281, -0.16687012, 1.09375, 0.50634766, 2.4335938, 1.8701172, -1.5302734, -0.7524414, 1.9384766, 0.23181152, 1.4658203, -1.8798828, -0.54541016, -0.1628418, -0.5834961, -0.54541016, 0.8808594, -0.31445312, -0.13330078, -0.33740234, 0.14904785, 2.0449219, -1.4140625, 2.0546875, -0.5307617, -0.52246094, 2.2421875, 0.44580078, -0.23632812, 1.8125, -1.1708984, 0.45410156, -0.70458984, -1.4228516, 0.47875977, 1.3105469, 0.45776367, -0.20239258, -1.1328125, -0.3881836, -0.9165039, 0.5644531, 1.8261719, 0.2841797, 0.2133789, 1.9208984, -1.5361328, -2.0703125, -0.36914062, 0.42578125, 0.0021095276, -1.1845703, 0.60546875, -2.3476562, 0.8227539, -0.5961914, -2.0234375, -1.9228516, -1.4707031, 1.4052734, 1.7353516, -1.1943359, -1.2089844, 1.1347656, 2.4316406, 1.7148438, -1.1210938, -1.3603516, -3.578125, -0.53759766, 1.3662109, 0.9355469, 2.0253906, 1.9970703, -1.8867188, 0.79833984, -1.3984375, 0.78125, 0.7558594, -2.3632812, -0.42138672, -0.67333984, -2.1132812, 1.5205078, 1.4824219, 1.2734375, -1.2412109, 0.53027344, 2.4023438, -1.1142578, -0.25024414, -0.60546875, -3.9648438, 1.9492188, 0.17944336, -0.046966553, 1.4042969, 1.7607422, 1.2802734, -0.66748047, -0.48535156, -3.375, -1.8105469, -0.03289795, 1.984375, -2.3613281, 1.0078125, 0.54833984, -0.04953003, -0.95654297, -0.9477539, -0.27539062, -1.9511719, -0.63964844, -0.02305603, 0.421875, 2.046875, 0.45947266, 0.13391113, -0.16467285, 2.6464844, 2.4453125, -0.859375, -1.3994141, -1.6523438, -0.29638672, 0.6479492, 1.0761719, 0.06903076, 0.63378906, 1.9775391, 0.05215454, -1.8027344, 1.2636719, 1.2509766, -0.74853516, -2.4238281, -2.1015625, -1.0078125, 1.7841797, -0.45532227, -0.89990234, 0.34887695, -0.026611328, -1.7441406, -0.5722656, 1.453125, 2.9394531, -0.28979492, -1.3994141, 2.9003906, -0.12432861, -1.6494141, -1.9628906, -0.122802734, -0.50683594, -0.3413086, 0.46557617, -0.6142578, -0.9375, 0.9453125, 0.5888672, -1.3291016, 0.6816406, 0.12792969, 1.4238281, -0.13391113, -1.8759766, -2.890625, -0.48120117, 0.62402344, 0.66308594, 0.8544922, 1.3916016, -1.5556641, 1.7578125, 2.4589844, -1.1015625, 0.7895508, -0.068725586, -2.6914062, 0.09490967, -2.0820312, 1.1552734, 0.039093018, -0.055908203, 1.7119141, 0.91308594, 3.8847656, -0.03451538, 1.9931641, 0.5371094, 0.014099121, -1.1357422, 1.171875, 2.1503906, 1.4658203, 0.5527344, -0.28100586, 1.7041016, 1.2685547, 1.2324219, 0.49853516, 2.7792969, -0.9692383, -2.7988281, -2.8671875, 1.1982422, -0.59521484, -0.74072266, 0.60839844, -0.1295166, 1.8017578, 1.1943359, 3.1015625, -0.7832031, 1.8847656, 1.1445312, 1.2246094, -1.9042969, 0.6767578, -2.9238281, 2.4628906, -0.35229492, -0.99121094, 0.94140625, 1.7626953, 0.42041016, 1.4111328, 0.25708008, 0.6064453, -1.5556641, -1.8681641, -0.8984375, -1.84375, 3.0703125, 1.0751953, 0.009422302, 0.7285156, 2.4140625, 1.5507812, 3.1171875, 1.0019531, 1.3251953, 0.34936523, 0.6279297, -0.7373047, -1.5146484, -1.3037109, -2.125, -0.47631836, 1.7714844, 1.4511719, 1.3496094, 1.4121094, -0.8383789, -1.7167969, -0.9633789, -1.5869141, 1.6767578, -3.7089844, 0.1899414, -1.4951172, 2.2578125, -0.47924805, -1.0507812, -1.03125, 1.2832031, 0.6791992, -0.4416504, -0.8095703, -0.5419922, -0.4880371, -2.1269531, -5.7773438, -0.78759766, 2.0253906, 0.5756836, 0.9584961, -2.9082031, -0.21020508, 2.3867188, -0.20922852, 0.3779297, -2.03125, 2.703125, -0.5073242, 1.0722656, 0.9951172, -1.0507812, 0.35668945, 0.8984375, 0.9472656, -1.3134766, 0.6958008, -1.734375, -1.4921875, -0.074401855, -1.6650391, -1.5957031, 1.5429688, -2.2324219, -0.7680664, 3.8808594, 0.25146484, -0.8144531, 1.0751953, -1.4785156, -1.7578125, 0.23815918, 0.29248047, 2.0292969, 0.7470703, 1.6826172, 1.6132812, 2.1757812, 1.7197266, 0.90966797, 0.9628906, 0.88671875, 0.65185547, 1.7675781, -0.33007812, 0.27929688, -2.1035156, -0.77783203, 0.9326172, -0.83984375, -0.88916016, -1.9316406, -0.6669922, 0.13195801, -1.6162109, 0.6298828, 0.97509766, 1.2626953, 0.49291992, 1.0830078, 1.1611328, -0.5126953, 0.64697266, -0.72802734, -0.39916992, -0.6191406, 1.7470703, 0.21398926, -1.1337891, -3.0097656, -2.8867188, 1.8496094, 0.44067383, 1.3808594, -0.22216797, 0.8046875, -0.05697632, 1.1865234, 0.2064209, 1.7255859, -0.17077637, 0.8911133, -2.6777344, 1.8671875, 1.1542969, 0.41601562, -0.80615234, -0.3840332, 0.43579102, -0.019378662, 2.0761719, 2.96875, -0.8120117, 1.3515625, 0.05859375, 2.2851562, -0.49291992, -1.8037109, 1.3125, -1.5947266, 1.5410156, 0.004085541, -0.61816406, -2.0136719, 1.2753906, -0.07574463, -1.5058594, 2.4082031, 1.5371094, -1.7441406, -0.5415039, 2.4746094, -0.20593262, 0.13244629, 1.1865234, 0.7739258, -0.9584961, 1.3779297, -2.1445312, 0.74658203, 1.0810547, 2.5527344, 0.23547363, 0.3022461, 0.5449219, -0.7866211, 1.4169922, 2.2675781, 2.4511719, 0.46484375, 1.3310547, 2.375, 2.5273438, 1.3984375, -1.0166016, 0.84521484, 2.4335938, -0.35595703, -0.5751953, -2.2402344, -1.7900391, -0.29125977, -0.55126953, -1.8916016, -0.7441406, 1.2558594, -3.3632812, -3.203125, -1.5107422, 1.640625, -1.8417969, 1.4824219, -1.7060547, -1.5810547, -0.8588867, 0.038635254, -0.5991211, 0.6611328, -0.44482422, 2.7792969, -0.45117188, 0.6635742, -0.8828125, -1.109375, -3.5976562, -1.7783203, -0.24841309, 2.3164062, 2.6894531, 2.8164062, -1.5615234, -0.12963867, 2.921875, 0.5942383, 0.4584961, -0.5361328, 1.4355469, -1.7001953, 4.0703125, 1.9580078, -2.0273438, 3.390625, 1.0019531, -1.4521484, -1.2763672, 0.039367676, 0.51416016, -2.7851562, 0.9301758, -3.5996094, 0.27563477, -1.0917969, 1.8779297, -2.7382812, 3.0214844, 0.82714844, -3.2890625, 1.0166016, 1.0517578, -0.12371826, 1.6503906, 0.71435547, 0.6411133, -0.13867188, 0.22106934, 1.3701172, -0.3959961, 0.3256836, 0.3881836, 0.23583984, -2.5195312, 2.3730469, -0.01927185, -0.20507812, -0.14855957, 2.8320312, 0.19519043, 1.1425781, 0.50878906, -0.19995117, 2.8554688, -0.23510742, -0.6953125, 1.5253906, -0.57128906, 0.2614746, 1.1708984, -1.3134766, -1.0087891, -0.09246826, 0.8496094, 1.9228516, -2.5859375, -1.4462891, 1.1171875, 1.9511719, 1.3769531, -1.3183594, -1.6132812, -1.4794922, 1.1884766, -0.39453125, -0.63671875, 0.5756836, -1.7763672, -1.21875, -0.6503906, -1.6230469, 0.53271484, -1.3916016, -0.47070312, 0.6591797, 1.0615234, -3.0820312, 0.54833984, 0.79003906, -1.3652344, 1.3603516, 0.45825195, 0.6635742, 0.6557617, -4.2890625, -0.93115234, 0.14245605, -0.36791992, -1.3896484, 0.5136719, 0.1274414, -1.4248047, 3.8398438, -1.2919922, -0.7890625, -0.71728516, -1.4160156, 0.17712402, 0.8925781, -0.29711914, -0.26879883, 1.5888672, 2.4472656, -0.86572266, -0.58740234, -1.1279297, 0.2434082, 2.0898438, 0.94970703, -0.08874512, 0.1640625, -0.8881836, 0.061523438, 2.3613281, 0.2553711, -1.4228516, 0.26757812, 2.609375, 0.09082031, -0.75683594, -0.0927124, -1.6650391, -1.7705078, 0.71728516, 1.8769531, 3.8789062, -0.5415039, -1.0400391, -3.5820312, -1.5175781]}, "B07HDWFMMG": {"id": "B07HDWFMMG", "original": "Brand: Mr. Heater\nName: Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack)\nDescription: Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.\nFeatures: Easy push button ignition for instant heater in your golf cart the next time you hit the links\nPuts out 4,000 BTUs of heat and features a wind resistant pilot system\nFits inside a simple to use cup holder adapter\nConnects directly into a 1 pound propane tank container for a 5.5 hour runtime\nFeatures automatic shut off system for low oxygen\n", "embedding": [-0.94677734, 2.0839844, 2.5917969, -0.6904297, -0.84033203, 1.0722656, -0.018966675, -1.7792969, 0.3034668, 2.4023438, 1.6416016, -0.039794922, 0.54785156, -1.0361328, 0.9550781, -0.19104004, 0.8959961, 2.125, 1.2636719, -0.15136719, -0.64160156, -1.4716797, 2.8417969, -1.0839844, 0.81640625, 2.3007812, 1.8925781, -1.6464844, 0.8769531, 0.85839844, 2.0546875, 0.56933594, -2.3144531, 0.4399414, -1.7363281, -0.23608398, -2.8261719, 2.3164062, -3.0566406, 0.10675049, -1.5107422, 0.3864746, 1.8818359, -0.47973633, -0.7841797, -0.21130371, 2.7695312, 0.52490234, 0.5625, -1.3701172, 1.8515625, -0.16491699, -0.55078125, 0.93115234, -3.2792969, -0.8613281, -0.103149414, -2.453125, 1.5419922, 1.0634766, 1.8339844, -2.1210938, -2.1796875, 1.9208984, 0.24377441, 0.008407593, -1.6484375, 0.3149414, -2.953125, 0.5625, 2.6210938, 0.6274414, 0.027404785, 0.3425293, -0.8769531, 1.7617188, -3.7324219, 2.3886719, 2.4316406, 3.2539062, -1.8847656, 2.0390625, 0.23669434, 0.51123047, -0.3630371, -1.9296875, -0.90478516, 1.4423828, 3.3398438, 2.8515625, 0.22229004, 2.9726562, -0.23095703, -2.3203125, 0.74560547, -1.6806641, 1.1699219, 1.5986328, 1.2392578, 0.7919922, -0.37817383, -0.4140625, -0.20080566, 1.1064453, 1.2246094, 0.46289062, 1.3164062, -0.12841797, -2.3613281, -0.13305664, -2.5234375, -0.037750244, 1.4658203, -0.056640625, -3.015625, -0.88378906, -0.22045898, 0.15368652, 4.625, 1.5498047, 4.2695312, 1.7685547, 2.4511719, -2.4960938, 0.5253906, 0.83447266, -1.2685547, 0.04763794, 0.86376953, -0.95410156, 0.2607422, -0.22607422, 1.2128906, 0.06707764, -0.234375, -2.7871094, -2.1738281, -2.2382812, -3.046875, 0.16992188, -1.875, -0.41430664, 2.3339844, 1.3964844, -2.1269531, -0.0045394897, -0.9213867, -0.43432617, -0.23852539, -0.48413086, 1.3320312, -3.484375, -1.7666016, 1.0957031, 1.4541016, 1.4160156, -0.049224854, -1.2431641, 3.3945312, 2.1269531, 1.4794922, -2.5351562, -0.24157715, 1.390625, 0.14367676, -1.8710938, 0.041015625, 2.0019531, -1.3164062, 0.69677734, 1.6542969, -0.9213867, 1.0595703, -1.2783203, -0.120666504, -2.3320312, 1.3369141, 2.1269531, 1.2978516, -0.72998047, -3.5410156, -0.26513672, -0.60253906, -0.25634766, 0.49658203, -2.4628906, -3.2871094, 0.3713379, -0.6386719, -0.8017578, -1.9824219, 0.88183594, -0.8598633, -0.3671875, 1.125, -2.5800781, -1.4130859, -1.2294922, 0.5595703, 0.48364258, -1.0996094, -0.54589844, -1.4394531, -1.6816406, -3.9082031, -3.0664062, 0.8173828, -2.875, -0.7402344, 0.94873047, -0.7207031, 0.041412354, 0.44458008, -0.6333008, -0.13952637, -2.4082031, 1.9169922, -0.032562256, 2.109375, 4.2382812, -0.15185547, 1.1494141, -0.08001709, -0.5024414, -0.5209961, 2.1757812, 0.9033203, -0.2286377, -0.12854004, -3.2226562, 0.7265625, 0.3322754, 2.1171875, -1.0400391, -1.7685547, 2.2890625, -0.041870117, -1.3007812, 1.0898438, -0.0008368492, -0.90527344, 0.3725586, -2.453125, -0.9189453, 0.56152344, 3.7558594, 2.0097656, 1.1181641, 1.5302734, 1.8867188, -0.22338867, -1.3125, 1.0185547, -0.3918457, -3.6210938, -0.6113281, 0.26586914, 0.6772461, -0.80322266, -1.9863281, 1.6962891, 1.9521484, 0.5283203, -2.3652344, -0.74560547, 0.23449707, 2.6816406, 1.875, -0.28564453, 0.35180664, 0.8930664, 2.4550781, 0.7451172, 0.86816406, 0.546875, 2.3789062, 0.8256836, 2.3613281, -0.98583984, -0.23779297, 1.7373047, -0.28173828, 0.3083496, -1.9023438, 0.38842773, 0.5161133, 0.27441406, 0.37231445, 0.9692383, 1.3476562, 2.234375, -1.4892578, -0.7451172, -0.5566406, -0.6933594, 2.9804688, 2.3945312, 0.042266846, -1.7382812, -0.3786621, 1.1757812, 2.4277344, -3.0390625, -0.90625, -0.80908203, -1.6689453, 0.8496094, -0.07873535, 1.3115234, 0.9169922, 0.16064453, -2.71875, -1.1748047, -2.25, -4.5507812, -0.8964844, 1.7265625, -2.2988281, 2.703125, 0.27148438, -0.38549805, -0.20922852, 0.71240234, -2.421875, -0.9145508, 0.47753906, -1.2080078, -1.6376953, -0.9707031, 0.6586914, 1.0908203, -2, 1.8623047, -1.9541016, -1.5771484, 0.69970703, 0.18835449, -1.0009766, 0.32006836, 0.086242676, -1.359375, -1.3935547, -1.1777344, 1.7119141, -0.5019531, -1.5732422, 0.11968994, 1.0722656, -0.6147461, -2.1875, 0.37890625, -0.3503418, -1.6181641, -4.328125, 2.6875, 0.18395996, 0.21813965, 0.40649414, -0.88720703, -0.8100586, -1.0703125, -1.1113281, 0.203125, 0.65234375, 0.23364258, -0.8354492, 2.4941406, -3.8828125, 2.2558594, -1.9189453, 1.9873047, -0.57373047, -1.3681641, -0.9682617, -0.43652344, 2.9785156, 0.35888672, 0.87060547, 1.2822266, 0.9169922, 0.24645996, 1.6152344, 1.7519531, -0.84814453, -2.2910156, 0.5698242, -1.2763672, -1.1601562, -1.0400391, -1.2490234, -0.7290039, -1.1591797, -0.19421387, 1.4199219, -2.1210938, 0.23876953, 0.13134766, -0.9375, -1.6259766, -2.5996094, 1.0371094, 1.2890625, 0.04336548, -2.6523438, 0.9736328, -1.5488281, -0.6616211, -4.1015625, 1.2138672, -1.2070312, 0.13769531, 2.8984375, -0.7573242, 1.0585938, 0.67041016, -5.3359375, 1.7539062, 3.75, -0.2088623, -3.2207031, -0.44799805, -3.96875, -0.9433594, -0.5756836, 0.44702148, -0.17858887, 3.6289062, 0.117370605, 1.2705078, 2.9628906, 3.9902344, 0.7294922, 0.93310547, -1.7607422, 2.7929688, -2.078125, -2.1210938, -0.020462036, 2.4160156, -3.9785156, -1.3007812, 1.59375, -0.4345703, 1.6054688, 2.3164062, -0.734375, 0.8359375, 2.4492188, 3.2050781, 3.8164062, 0.2602539, -1.3964844, -3.1074219, 1.3496094, 3.2988281, 3.53125, -2.6835938, -0.6254883, 0.7988281, 1.9365234, 0.7421875, -2.1289062, 0.14331055, 1.5615234, 0.21289062, -0.15319824, 2.1386719, -0.8125, 0.36889648, -0.057250977, 0.5810547, 0.45043945, -1.9931641, 0.37548828, 2.3515625, 1.1777344, -0.23205566, 0.59472656, -1.4492188, -1.0683594, -0.5361328, 1.4248047, 0.9609375, 0.07397461, 0.86328125, -3.0742188, -1.625, -0.04220581, 1.5302734, -2.046875, -1.3056641, -0.59228516, 0.4387207, -0.8647461, 0.4177246, -2.546875, -0.6533203, -0.24597168, 3.4941406, -0.60839844, -1.3007812, -0.62060547, -1.3886719, 1.5419922, 0.76708984, 0.3347168, -1.6748047, 0.124572754, -0.9868164, 1.7050781, 0.41308594, 1.9023438, 0.31811523, -2.8398438, 1.5390625, -0.70751953, 0.5595703, 2.2675781, 0.5996094, -1.1035156, 3.5195312, -0.40893555, 1.5556641, -0.546875, 1.5117188, -0.9814453, -1.1464844, 1.5810547, -2.6757812, 0.8208008, -1.6015625, -3.9121094, -0.6176758, -3.1347656, 0.7060547, 3.6289062, 0.5083008, 1.1660156, 0.33447266, -0.22338867, -1.6816406, -3.046875, -1.6191406, 0.92333984, -3.0371094, 0.8911133, 3.0488281, 0.111328125, -2.1152344, -3.421875, 2.2539062, -1.2724609, 0.9267578, -1.0478516, -0.82128906, 1.4433594, -1.7363281, -0.26489258, -0.8310547, 0.8261719, 0.16271973, -0.83251953, 0.140625, -0.4338379, 1.9013672, 1.0019531, -0.6870117, -1.6113281, 3.234375, 1.734375, -2.0292969, 1.8232422, 1.6132812, 0.89160156, 2.1191406, -2.9414062, 0.31445312, -0.34301758, 2.6640625, -0.8876953, -0.8491211, 0.07928467, -0.10211182, 0.012367249, 0.8486328, 0.4765625, 2.1757812, 1.6132812, -2.9726562, 1.3964844, -1.921875, -1.7988281, -1.6660156, -2.2832031, -3.3984375, -0.70410156, -0.7607422, 1.0449219, -1.7519531, -2.4160156, -0.78027344, 0.38476562, 1.1552734, 1.9863281, 1.6914062, 1.9433594, -3.125, -0.074401855, -0.31469727, -1.1611328, 0.8540039, -1.0859375, -0.62109375, -1.0683594, -0.15100098, 0.53125, -2.0820312, 1.4140625, 1.8408203, -1.7617188, 0.09234619, -0.9355469, -0.5957031, -0.06604004, -1.2626953, 3.2148438, -1.2197266, 3.9863281, -1.7890625, 1.1015625, -0.64453125, -0.81689453, -1.2675781, 0.56396484, -1.7548828, 0.86865234, 0.44140625, 1.4101562, 2.5234375, -0.9868164, 0.12414551, 0.4194336, 1.6572266, -0.6953125, 0.3190918, -1.1396484, 1.5283203, -0.69384766, -1.9501953, 1.3515625, -1.4042969, -0.004184723, 3.2519531, 3.7949219, 1.4550781, -0.16247559, -0.46875, 0.33203125, 0.96533203, 1.4492188, 1.8300781, 2.5878906, -1.5078125, -2.4160156, -1.2509766, 2.4824219, -0.14294434, 3.6367188, -0.29345703, -2.2265625, 0.21374512, -2.4570312, -2.3632812, 0.101257324, 1.1396484, -0.53271484, -2.46875, -0.68310547, 0.11541748, 2.8671875, 4.9101562, 0.6665039, 0.80859375, 0.6713867, 0.6591797, -0.17541504, 2.2753906, 1.1396484, -1.4199219, -0.7890625, 2.2324219, -1.109375, 1.515625, 0.73583984, 1.3320312, -2.3945312, -0.43359375, -1.6523438, 3.0703125, -1.59375, -1.6572266, 0.88916016, 0.14880371, 1.09375, -1.90625, -2.5839844, -1.9697266, -0.85791016, 1.1982422, -1.5507812, -1.6679688, -2.5878906, -3.7070312, -3.9335938, -1.6689453, 0.73779297, 0.028900146, -1.5449219, 0.47265625, -2.4453125, -0.7973633, 1.2695312, -0.3605957, -0.8881836, -0.4333496, -2.125, 1.7177734, -0.48950195, -0.4946289, -0.24865723, 1.6123047, 0.8442383, 0.62646484, -0.79345703, -1.3232422, -3.3632812, 0.7949219, 0.6826172, -0.5571289, 0.33520508, -0.7084961, -0.9145508, 1.9365234, -0.3947754, -0.9223633, 0.13171387, 2.1113281, -2.1289062, 2.109375, -2.3125, 2.8613281, 0.6621094, -0.6308594, -1.2070312, 0.9770508, 4.1132812, 0.45898438, 0.52978516, -0.9604492, 0.29296875, 0.32617188, 1.5498047, -0.97265625, -1.5878906, 2.1210938, 0.9223633, -0.09576416, 0.7553711, -3.0800781, -2.296875, -0.9321289, -1.0292969, 0.90527344, 0.37768555, 0.13952637, -0.58691406, -0.7246094, 2.5390625, -0.019500732, 0.78027344, -2.1953125, -1.0078125, -1.6621094, 1.7695312, -0.4699707, -2.2460938, -1.1845703, -2.3710938, -0.7475586, 0.6557617, 0.4650879, -0.6645508, 0.5253906, 0.052215576, 0.9604492, -2.8417969, 5.3164062, 0.3293457, 0.49389648, -3.4726562, 1.5732422, 2.40625, 1.0458984, -1.5507812, 1.1220703, 2.2558594, -1.0791016, 1.5742188, 2.3691406, -2.5625, -1.0195312, 0.18884277, -0.69189453, 0.58740234, -1.3798828, 3.0097656, -1.0839844, 0.05517578, 0.19348145, -0.60791016, -2.7636719, -0.6230469, 2.84375, 0.32958984, 1.3398438, 1.4589844, 0.7470703, -0.5883789, -0.32958984, -0.84228516, -2.4746094, 0.39257812, 1.0458984, -1.0351562, 0.8725586, 0.4189453, 3.21875, 1.9082031, 2.5214844, 0.3334961, 0.98779297, -1.9667969, 1.0927734, 1.4863281, 1.6494141, 1.6347656, 2.0253906, 2.6210938, 1.7939453, -0.25585938, 0.87158203, -1.6259766, 1.0605469, 0.2919922, 1.7724609, -2.2207031, -1.8105469, 0.034576416, 0.9638672, -3.0488281, -2.7832031, 0.8623047, 0.5004883, -3.0703125, 1.2548828, -1.2910156, 1.4072266, -3.4492188, 2.1054688, -0.67578125, 0.5332031, 0.22460938, 0.20373535, 3.5097656, 0.61279297, -1.4765625, -0.3137207, 0.41235352, 0.5371094, -3.0078125, 0.32836914, 0.09075928, -1.2773438, -0.9550781, 3.9160156, 0.8774414, 1.875, -1.4003906, 0.2631836, -0.28979492, 0.5078125, -0.4165039, -0.78808594, -2.2324219, -1.1074219, 0.91064453, 3.2617188, -0.032592773, 2.1386719, -0.6879883, 1.0888672, -1.4394531, -0.5307617, 0.025924683, 0.036895752, -0.4819336, -2.3027344, 3.4648438, -0.8857422, 1.5791016, -0.56152344, 0.10040283, 1.6269531, 0.06317139, -0.8833008, 1.0634766, -1.0195312, 4.3242188, -0.3684082, -3.0253906, 1.1318359, -0.63916016, -0.9013672, -0.9038086, 0.35986328, 1.0869141, 0.78466797, 0.7133789, 1.7275391, -0.103637695, -0.92578125, -0.12200928, 0.046722412, -0.23095703, -0.38891602, -1.4492188, -1.3105469, 2.453125, 1.6289062, -0.05996704, 0.21252441, -1.3457031, 0.36328125, 0.7661133, -0.69677734, 0.32885742, 0.7109375, 1.4863281, -0.077697754, -2.5917969, 0.8642578, 0.064208984, -1.5712891, 1.8955078, -2.2109375, -1.6132812, 2.9804688, -0.93896484, -0.7241211, -0.6176758, -0.47705078, 3.2265625, 0.06945801, 0.35253906, -0.33691406, -0.4350586, -0.17675781, 0.099853516, 1.546875, 3.0039062, 0.7338867, -0.48632812, 0.34155273, -2.5175781, 1.1943359, 1.8535156, 1.9980469, 0.8071289, -1.9365234, -3.4941406, -0.6230469, 0.3310547, -0.47924805, 2.078125, 3.1464844, 1.4150391, 1.2080078, -1.8779297, -2.1816406, -1.734375, -1.5166016, -0.41357422, 0.8232422, 1.0664062, -0.1505127, -0.90966797, -0.2631836, 1.2246094, 0.6567383, -1.4873047, 0.09008789, -0.23718262, -0.45483398, 1.7431641, 1.3056641, 0.46777344, 1.1210938, 1.0869141, 2.4824219, 0.60253906, 0.59375, -1.4853516, -0.44067383, -2.6757812, 0.43481445, -3.5839844, 0.4946289, 0.82128906, -0.04220581, 1.2197266, -1.8818359, 1.0605469, -4.5742188, -0.96533203]}, "B00HJ6OPAO": {"id": "B00HJ6OPAO", "original": "Brand: Camco\nName: Camco 40547 Thumbscrew & Nut for 40543 Tank Cover\nDescription: \nFeatures: Replacement hardware for Camco propane tank lid assembly\nIncludes two nuts and bolts\nGenuine replacement parts\nSave time and money by replacing just the lid assembly hardware\nDurable and easy to use\n", "embedding": [-0.72265625, 1.1269531, 3.8320312, -2.8476562, 0.24377441, -1.984375, 0.6411133, -1.6425781, 4.0625, 1.8466797, 1.0048828, -0.5214844, 2.5722656, -3.4550781, 1.1171875, -0.35498047, 0.3479004, 0.07940674, 2.7167969, 0.40844727, 3.5273438, -2.4433594, -0.013290405, -1.7548828, 0.16723633, 1.8427734, 3.6445312, -1.4394531, -1.3603516, 0.5761719, 1.484375, 1.0019531, -0.6508789, 2.28125, -0.67822266, 0.28515625, 0.42333984, 1.0009766, -1.3974609, 1.3115234, -3.6152344, 0.3413086, 4.0703125, 0.8930664, -1.7236328, -0.92041016, 0.28271484, 0.7050781, 1.0986328, -2.1972656, 0.55859375, 3.5039062, 0.8671875, 1.6699219, -0.15625, 2.0878906, -0.23864746, -2.0664062, -0.22521973, 0.8256836, -0.26220703, 0.14794922, -1.3408203, 2.5390625, -0.78808594, 3.0917969, -0.9082031, -0.45385742, -0.90478516, 1.8447266, -1.0556641, 3.9394531, 1.3339844, -0.63916016, -0.8544922, -1.7216797, -3.5332031, 1.3525391, -1.1044922, -0.5390625, 0.68896484, 1.9052734, -1.6865234, -2.6660156, 0.91015625, -2.5527344, 0.59521484, 1.2470703, 0.010543823, -0.5966797, 0.1616211, -0.041137695, -3.3027344, -3.3183594, -0.33251953, 1.0966797, -1.5273438, -1.9658203, 4.140625, 2.4648438, -2.8183594, -0.43652344, -0.41748047, -0.11376953, -2.3339844, -1.28125, 0.98583984, 0.037017822, -3.7714844, -0.22875977, -1.8642578, 1.3818359, -0.61816406, -1.7666016, -2.2597656, 0.9838867, -1.0839844, -1.3876953, -0.04949951, -0.48828125, 3.65625, -0.6582031, 0.08282471, -0.39526367, 1.4667969, 1.0800781, 0.07232666, 1.0556641, 2.9960938, 1.6972656, 1.53125, -0.9609375, 2.1640625, -2.2871094, 1.6943359, -1.4853516, -1.671875, -4.1132812, 2.28125, 1.1347656, -4.7890625, 0.7519531, 3.2402344, -0.97509766, -3.7421875, -0.7426758, -2.046875, 1.9912109, -0.043151855, -1.421875, 1.2207031, -1.5019531, -0.42651367, 0.35961914, 1.9677734, 1.2988281, -1.3984375, -0.056610107, -1.2324219, 2.8710938, 0.3630371, -1.9736328, -0.36328125, 0.35742188, -0.23327637, -0.20703125, 0.14257812, -2.7011719, 0.6660156, 3.5566406, -1.15625, -0.8930664, 0.33569336, -2.0625, -1.5878906, 0.15600586, 3.2070312, 2.8144531, -1.1474609, 1.9482422, -2.0703125, -0.90966797, -0.9848633, -0.6850586, 1.0507812, -2.0039062, -0.96240234, -1.5498047, 0.8779297, 1.1445312, 0.6245117, 1.6943359, -0.20080566, -2.3925781, 0.98046875, -2.0371094, -0.10839844, -0.9003906, 1.4570312, 2.1757812, -0.6308594, -1.9179688, -0.5571289, 0.050750732, -2.3515625, -1.296875, 0.6870117, 2.2109375, 2.1015625, 1.2402344, 0.42260742, 0.75683594, 1.6708984, -1.8076172, 0.2175293, -2.1210938, 0.2692871, -0.045166016, 2.5664062, 1.2734375, 2.109375, -0.6635742, -0.4777832, 0.3527832, 0.17126465, 4.1640625, -0.9868164, 1.0791016, 0.36035156, -2.1445312, 0.13952637, -0.80371094, -1.9912109, -0.44213867, -0.6464844, 1.4550781, 0.66259766, -2.3339844, 0.6069336, -1.8681641, 1.4287109, -2.5507812, 0.7241211, -1.4755859, 3.1660156, -0.055999756, -1.6601562, 1.4951172, -0.37963867, 0.18041992, 1.7294922, -0.20629883, -0.7626953, -0.29638672, -2.9511719, 2.8339844, 0.7084961, -0.14465332, 0.31323242, -2.3144531, 0.94921875, 0.2602539, 1.3945312, 1.1669922, 1.0683594, 0.5908203, 0.5859375, 0.06903076, -0.46972656, 1.0361328, 1.0546875, -0.87646484, 0.75634766, -0.47851562, 2.3769531, 2.8125, -1.0068359, 1.46875, 0.031280518, 1.828125, -0.73779297, 0.42944336, 0.8105469, -2.8125, 1.4521484, -1.9052734, -1.1230469, -1.4130859, -2.4042969, 1.1953125, 2.1777344, -0.7973633, -2.0371094, 3.9648438, 3.4941406, 2.1777344, 4.1796875, -1.0322266, -0.49414062, 0.7729492, -2.9257812, -0.79589844, -1.2441406, 2.1269531, -0.027786255, 0.6459961, -0.29296875, -1.265625, 2.5195312, 1.5595703, -2.0175781, -1.1113281, 0.085998535, -0.31835938, -0.34472656, -1.7958984, 2.6074219, -0.35473633, 0.103637695, -1.7041016, 1.5664062, 0.94384766, 0.6796875, -1.9091797, 1.6933594, -0.5366211, -3.6679688, -0.67871094, -0.90771484, 2.203125, 1.7548828, -0.7602539, 0.546875, -1.2011719, 0.11853027, 1.6464844, -2.6542969, -2.3007812, 1.6142578, 0.7895508, 1.8798828, -1.5664062, -0.23498535, 4.8007812, -0.016845703, -1.7333984, 0.67089844, 1.6933594, 2.2363281, -2.875, -1.015625, 3.21875, 0.57177734, -3.6425781, 1.1425781, 1.1044922, -0.3503418, 0.7416992, -0.87158203, 2.2421875, -1.3886719, 1.0166016, 0.89160156, -0.6772461, -1.0322266, 1.640625, 0.8696289, -2.421875, 1.0625, -3.3828125, -0.14294434, -1.2587891, 0.7602539, -1.9628906, -2.4453125, -0.75097656, -0.2220459, 2.8554688, 0.09698486, 1.8388672, -0.8154297, -1.0830078, -0.8154297, -3.1699219, -2.2558594, -0.10076904, 0.6879883, 0.6533203, 0.4399414, -2.9765625, 1.0869141, -2.9882812, 1.1337891, -1.3330078, -2.6777344, -2.1933594, -1.1123047, -1.4335938, 1.4980469, 0.67089844, 0.86035156, 0.6074219, -1.3203125, 0.08428955, 1.0332031, -0.57373047, -1.4794922, -1.7402344, 2.4277344, -0.47729492, -0.19018555, -0.39379883, -0.16259766, 1.3681641, -0.14343262, -2.7089844, 1.3427734, 3.5273438, 0.5961914, 0.34033203, -0.8017578, -2.0839844, -3.9472656, 0.4086914, 1.9824219, 2.0039062, 4.1328125, 1.3388672, 1.3427734, 0.44384766, -1.6396484, 2.2460938, 0.2277832, 0.2993164, 1.4345703, -0.87890625, -0.2541504, 2.03125, 2.0703125, -3.2792969, -0.15466309, 0.1796875, 0.16967773, 2.46875, 2.7929688, -2.7597656, 0.23999023, 1.8388672, 1.6376953, -0.43359375, 1.9931641, -0.45214844, 0.042907715, 0.47265625, -0.09942627, 0.7636719, -0.7421875, 0.22375488, -2.59375, 0.20532227, 0.5073242, -1.8007812, -1.1894531, 0.9838867, -2.9101562, -0.6230469, 0.0039634705, -0.07318115, 1.9355469, 1.8818359, -1.1982422, -0.80566406, -4.75, 1.2519531, 0.8310547, 1.0009766, -0.9501953, 2.234375, 1.0878906, 1.2216797, -1.4599609, 3.5898438, -1.6923828, -1.7412109, 1.5820312, -1.0107422, -1.515625, -2.5429688, 3.7578125, -1.5527344, 1.46875, 0.7475586, 0.84472656, 0.25952148, -1.5537109, -0.8847656, 0.35473633, -1.3164062, 1.8203125, 1.8125, -2.34375, -0.81347656, -1.7675781, 0.80810547, 0.55029297, -2.1074219, -1.3359375, -1.9462891, 0.6826172, -1.7158203, -0.34228516, 0.88916016, 1.0185547, -1.5527344, -0.12420654, -0.49365234, 2.3027344, -0.097839355, -1.3398438, -0.14770508, -0.4963379, -2.1601562, 1.3740234, 2.2070312, 2.8886719, 0.08666992, 3.1660156, -0.7607422, -0.21020508, 1.8427734, 0.25048828, -2.4472656, -0.19067383, 2.7617188, 1.7314453, 2.5195312, 1.875, 2.15625, 3.3046875, 1.7460938, -3.2558594, -3.0429688, -0.35180664, 0.95703125, -3.0449219, -2.1816406, 1.0966797, 2.1035156, -2.2519531, -3.140625, -0.1595459, -1.9892578, 0.52001953, -1.1591797, -1.5273438, 2.2714844, 1.6806641, 0.6269531, 0.96533203, 0.068359375, 0.8798828, 0.036224365, -0.9482422, -3.5527344, 2.9589844, 0.7944336, 0.8730469, -4.0234375, 0.64404297, 3.2988281, -1.125, 1.3447266, -2.3398438, -0.6635742, -0.0017719269, -1.796875, -0.63964844, -0.95458984, 0.5209961, -1.3476562, 2.6308594, 1.3935547, -0.49829102, 0.035003662, -0.4482422, -0.4362793, 3.0546875, -3.5605469, 0.86083984, 2.8886719, -0.484375, 1.1982422, 0.35864258, 0.6171875, 0.7480469, -1.7890625, -1.0126953, -1.4667969, 1.6953125, 1.4619141, 1.8115234, -2.1621094, -1.7255859, 0.14758301, 1.2285156, -0.027999878, -0.5366211, -1.3369141, 0.028442383, 1.3574219, 0.71240234, -2.9316406, -0.40942383, 0.15734863, -2.0527344, 0.34692383, -0.9399414, -0.6850586, -0.02104187, -1.8339844, 0.32421875, -0.5883789, -0.7368164, -1.7626953, 0.8623047, 0.86865234, -1.3828125, 3.1113281, -1.9853516, 3.4277344, -1.9326172, -1.6201172, -1.1484375, 2.1132812, 1.0175781, 1.2861328, 1.1123047, -1.859375, 1.0400391, 0.6040039, 0.70214844, -0.1685791, -1.6259766, 0.15246582, -3.3320312, 1.7792969, 2.6542969, -0.9189453, -1.5722656, 1.6914062, 1.9287109, -0.7758789, 1.5986328, 2.8203125, -0.96435547, -0.37817383, 0.4543457, -0.7416992, -1.3837891, 1.0439453, 0.6328125, 5.078125, -1.5058594, -2.15625, 1.3623047, 1.1826172, 0.10614014, 1.4804688, 0.23486328, 0.3642578, -1.4355469, -3.9042969, -0.30786133, 0.4934082, 2.4804688, 0.74658203, 0.14953613, 0.57666016, 1.5185547, -1.7744141, 2.5332031, -0.08526611, -0.77246094, 0.2824707, 1.1972656, -3.2070312, -2.1347656, -3.1503906, -0.5361328, -0.54589844, 1.5380859, 1.4287109, -1.2177734, -0.043914795, 3.4160156, -1.3085938, -0.87060547, -1.296875, -0.9267578, -1.0332031, 0.5048828, 2.0878906, 0.09838867, -0.98828125, -0.09387207, 0.17004395, 0.32250977, 2.0332031, -0.10235596, -2.9921875, 0.13342285, 1.1240234, -2.3085938, -2.8710938, -1.2158203, 0.55029297, 1.4492188, 1.1757812, -0.73046875, 0.3486328, 0.72998047, -3.5546875, -1.2783203, -1.4335938, -0.28955078, -1.1367188, 0.3010254, 3.1933594, 0.15625, 0.22802734, -0.42797852, -1.546875, 0.85791016, 0.5390625, -4.09375, -2.9648438, 3.9746094, -0.26611328, -0.49145508, -1.125, -2.1035156, 1.5380859, -0.16870117, 1.3701172, -1.4072266, -0.1005249, -2.6347656, -0.06341553, 0.99658203, 1.1152344, -0.31884766, 4.7734375, -0.75, 0.9980469, 1.6503906, 3.5839844, -0.8989258, 2.1523438, 2.046875, -1.3994141, 2.0996094, -0.33154297, 0.98291016, -0.08074951, 3.9394531, 1.5820312, -0.008338928, -0.6274414, -1.4130859, 0.64208984, -2.1289062, -1.5136719, 0.40161133, -0.44921875, 0.6923828, 0.1751709, -1.1640625, 1.5996094, -1.1982422, 0.44482422, -2.21875, 0.10809326, -1.453125, 1.5605469, -1.3076172, -0.26245117, -0.07867432, -0.67529297, 2.0253906, 0.39770508, -0.042510986, 1.0302734, 1.2021484, -1.5585938, 2.296875, -0.23754883, -0.1986084, 0.09503174, 0.22705078, -2.1777344, 0.3095703, 1.2089844, 0.9614258, -1.3056641, 0.19226074, 0.6245117, -0.06237793, -0.92333984, 2.7714844, -2.25, 1.921875, 0.21203613, -0.21386719, -2.6425781, -0.5546875, -0.5024414, -0.28442383, 0.81152344, 0.083862305, -1.4375, -1.7871094, 2.6757812, -0.62158203, 0.66064453, -0.17126465, 0.31640625, -0.6479492, -0.8574219, 1.7607422, -1.1210938, -0.8178711, -1.7490234, -0.84472656, -0.7807617, 0.08294678, -4.0078125, -0.0158844, -2.8007812, 1.6777344, -0.3852539, 1.1142578, 0.6118164, -0.10144043, 3.4082031, 2.9609375, 2.0527344, 0.103637695, 2.1425781, 0.8095703, 3.2773438, 0.89160156, 0.15527344, 0.8955078, 0.0036125183, -0.7949219, 1.1357422, -1.6533203, -0.2208252, 0.117614746, -0.3857422, -0.7211914, -0.33374023, 0.6713867, -2.234375, -2.484375, 0.3232422, -0.47509766, -0.2055664, 2.4824219, -4.0351562, -2.6171875, -0.3935547, -1.1289062, 2.3535156, -0.7524414, -0.48535156, 0.20385742, 1.6259766, 1.078125, 0.7841797, -2.9882812, -3.3027344, -0.79296875, -3.0703125, 1.265625, 1.5146484, 0.52978516, -0.5029297, -1.4355469, -0.6020508, -0.6328125, -2.5273438, -1.3681641, 1.2900391, -0.29125977, 2.1777344, 1.6269531, -0.53515625, 1.1318359, 2.7441406, -1.546875, -3.3769531, -1.5839844, 0.7871094, 0.32470703, 0.8046875, -2.1738281, 0.6201172, 0.6748047, 2.5371094, -0.4519043, -0.48217773, -0.43066406, -2.0058594, 0.064086914, 0.37646484, -0.28930664, 3.8242188, 0.75097656, -1.0917969, -0.01626587, 0.5810547, 1.8789062, 2.140625, 1.3701172, -1.3222656, -0.5371094, -1.0263672, 1.8300781, 1.9033203, -0.5756836, 2.03125, 3.4082031, 2.0566406, 0.5410156, -0.029190063, -2.8632812, 1.0292969, 0.116760254, 2.5527344, -1.6826172, -3.3984375, 0.14123535, 0.15356445, -0.20812988, 0.09564209, 0.24597168, -1.734375, 0.82373047, -0.94628906, -0.45043945, -0.91259766, -0.5957031, 2.296875, -0.1694336, -1.9443359, 0.24707031, -1.2011719, 0.9711914, -0.23254395, 0.82177734, 0.4855957, 2.1914062, 0.37280273, -2.875, 0.27197266, 0.46118164, -0.23413086, -0.20031738, 0.19311523, 0.21154785, -1.9960938, -1.625, -1.0234375, 1.765625, 0.7397461, -0.055145264, -1.9423828, -1.7490234, 0.0034885406, 0.111083984, 1.7412109, -1.3574219, -0.51123047, -0.0657959, 0.118774414, 1.0556641, 0.7392578, -1.6914062, 1.3466797, -5.6015625, 1.9824219, 2.4179688, -0.7680664, -0.056854248, 0.045410156, 1.7597656, -1.4726562, -0.68847656, -2.7421875, 0.6464844, -0.62158203, -2.90625, -0.77685547, -1.0976562, -0.8378906, 1.2539062, 3.2421875, 2.1367188, 1.4453125, 1.3789062, 2.25, -0.71191406, -0.60253906, -1.0820312, -1.8496094, -0.2849121, 0.4831543, 1.9736328, 2.5566406, -0.38354492, -0.40478516, -2.5058594, 0.12536621]}, "B07QRGWTMH": {"id": "B07QRGWTMH", "original": "Brand: LBLA\nName: LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers\nDescription: This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
          but also can promote kids hand-eye coordination, creative expression and imaginative skills.

          INTRODUCTION
          1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
          2.Turn on the switch of BBQ grill.
          3. Use the sauce bottle to absorb water and add water to the water injection area.
          4.Press the buttons, the BBQ grill will light up and emit smoke.

          Notice: BBQ Grill requires 3*1.5 V \u201dAA\u201d Batteries (Not Included)
          \u00a0 Not for children under 3 years.

          PRODUCT SIZE:\u00a047.2*34.5*24.5 CM
          PACKAGE WEIGHT:\u00a00.708 KG
          PACKAGE SIZE:\u00a024*24.5*12 CM
          \nFeatures: \u301019 Pieces Food Playset\u3011Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1\n\u3010Emulational Design\u3011Inject water into the grill, the bottom will feature as an electric \u201cburner\u201d, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls\n\u3010Safe for Kids\u3011Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt\n\u3010Convenient to Use\u3011This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n\u3010Need Batteries\u3011The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations\n", "embedding": [-0.6582031, 2.0429688, -0.22216797, -1.2753906, -1.8554688, 0.41357422, 2.4179688, -0.89941406, 0.4711914, 0.43432617, -1.2880859, -0.43237305, 1.3886719, -3.5273438, 1.5644531, -0.43310547, 1.4384766, 1.1894531, 1.0722656, 0.5263672, -1.0273438, -0.021896362, -0.9868164, -0.3852539, 1.0654297, -0.4777832, 2.9199219, -1.5429688, 1.3662109, -1.3027344, 3.2089844, 0.3466797, -0.625, 3.1796875, -2.921875, -0.86572266, -0.19885254, 1.3574219, -2.0683594, -1.0097656, -0.5019531, -1.8144531, 1.9023438, 1.9482422, -4.25, -0.064819336, -0.46142578, 0.5576172, -0.93066406, -0.4921875, 1.2841797, 1.1074219, -1.4990234, 0.2626953, -2.6679688, 1.5429688, -4.7734375, -0.74121094, -0.34179688, -2.828125, 2.0371094, 0.5307617, -0.50341797, -0.22912598, -0.28930664, -1.2666016, 0.10961914, -3.796875, 1.1582031, -1.2197266, 2.859375, -1.4052734, -0.7080078, -1.3066406, -0.9663086, 0.78515625, -2.6933594, 0.4555664, 0.83154297, -2.0898438, 1.2412109, 1.8076172, -0.17285156, -1.3974609, 0.26464844, -0.20812988, -3.2128906, -1.1298828, 2.4589844, 2.203125, 0.60009766, 1.6464844, -1.2353516, -4.515625, 2.3300781, -1.546875, 0.80371094, -0.3935547, 0.2421875, 3.0449219, 0.18273926, -2.1445312, 0.21069336, -1.5048828, 0.5083008, -0.6616211, 1.3085938, 1.4550781, -1.6689453, -0.19250488, -0.51171875, 2.1953125, -0.12512207, 0.9609375, 0.5498047, 0.62939453, -0.71533203, 2.6113281, 2.3613281, 1.6611328, 4.9335938, -2.3105469, 0.5810547, -2.4921875, -0.57958984, 0.008224487, -0.546875, 2.2519531, 1.4130859, -0.37231445, -1.8193359, 1.1386719, 2.3222656, -1.3671875, -1.9511719, -2.15625, -1.296875, -2.8652344, -1.4902344, 0.2310791, -1.9033203, -1.2021484, 2.6875, 1.0771484, -2.0507812, -0.072631836, -2.0820312, 1.4199219, 0.33862305, -3.7304688, 1.6542969, -2.3828125, -0.21911621, 0.6923828, 2.703125, 0.8691406, -1.3095703, -0.9926758, 0.8251953, 0.19580078, -0.043640137, -0.6591797, -0.04043579, 0.56103516, -1.0097656, -2.1425781, 0.74121094, 2.3203125, -0.67529297, 2.6347656, 0.8730469, -1.5751953, 1.8134766, 0.02243042, 0.0657959, -2.6640625, -2.5546875, 0.8144531, 0.20507812, -1.53125, 0.113098145, -1.6337891, 2.75, 2.5351562, -1.7070312, 0.7636719, -0.8808594, -0.6826172, 0.7036133, -0.98339844, 1.2744141, 0.99853516, -0.83984375, 0.6303711, -1.90625, -0.38305664, -0.53222656, 1.6523438, 1.5400391, 2.7285156, 1.5097656, -0.44702148, -0.18286133, 0.27075195, -1.5390625, -1.9501953, 0.14758301, -3.1171875, 0.9902344, 1.3085938, 1.1132812, 0.05178833, 2.4003906, 0.2746582, 0.30615234, -1.6708984, -1.5859375, -0.30493164, 2.6601562, 3.0722656, -1.7041016, -1.2363281, 0.25585938, 5.5390625, 0.3947754, 0.076538086, 0.6352539, -0.17199707, -2.1816406, 0.5830078, 1.0068359, -0.5107422, -1.1621094, -0.49316406, -0.09991455, 0.58496094, 1.4980469, 0.15307617, -0.21911621, 1.8720703, 0.28271484, -2.4667969, -0.18713379, 0.9770508, 0.20703125, -0.8496094, -0.86621094, 0.026473999, -2.125, -0.17163086, 1.2890625, 1.5214844, 0.8959961, -0.35327148, -0.47973633, 0.6850586, -2.5351562, 0.46728516, -3.4765625, -0.89746094, 2.2617188, 0.89941406, -0.77783203, 3.2792969, 2.6308594, 0.61328125, 4.3515625, -0.38671875, -1.5390625, -1.0292969, -0.023666382, 2.34375, 0.49243164, -1.2138672, -0.1005249, -0.1706543, -0.1965332, -1.5986328, 1.3857422, 0.19995117, -1.5908203, -2.1777344, 1.7578125, -1.5527344, -3.4179688, -0.16333008, -3.3925781, -1.9804688, 1.03125, 1.4042969, 4.1289062, -0.86328125, -1.9648438, 2.9902344, -3.4941406, -0.91308594, -0.7290039, -2.6308594, -0.55566406, 0.58740234, 2.1640625, 1.8886719, 1.1269531, -0.6582031, -0.07745361, -0.11291504, 0.4699707, -0.69970703, -0.21179199, 0.73828125, -1.0605469, -1.3388672, 1.078125, 2.21875, -0.72802734, -0.20056152, -0.031707764, -1.8623047, 1.4541016, 0.92871094, -1.3613281, 0.8613281, -0.15734863, -2.3515625, 1.2353516, 1.9033203, -0.64746094, 2.1152344, 0.2565918, -1.0898438, 0.64746094, -1.7236328, 0.6142578, -1.3583984, -2.4785156, -0.12042236, -1.1679688, -2.3144531, -1.0234375, -1.375, -0.6772461, 1.7558594, -1.6845703, 0.68603516, -0.5908203, -3.8027344, -1.4736328, -0.49267578, -0.8232422, 1.4462891, -0.23693848, 0.9448242, 0.52441406, -2.6738281, 0.9941406, 0.30810547, 2.8105469, 0.6870117, -2.3066406, -0.97998047, -0.80126953, 1.6201172, 0.33569336, -0.3347168, 0.7817383, -0.60253906, -1.1132812, -2.2285156, 2.2773438, -0.4814453, 0.2211914, 0.62597656, 0.21313477, -0.98779297, 0.83154297, -2.2207031, 0.38378906, 4.109375, -1.3369141, 0.7504883, -1.3964844, -0.55126953, 0.097229004, 1.9970703, -1.5927734, 0.26342773, -1.3310547, -1.5722656, 0.9428711, -0.8959961, 0.72216797, -1.3544922, 0.16516113, -1.2958984, 3.4511719, -0.8208008, 2.1464844, -1.9658203, 0.016326904, -1.0585938, 0.6713867, 0.47607422, -1.2109375, -1.0322266, -0.9604492, -2.0214844, -1.3037109, -0.7734375, 3.0058594, -0.8964844, -0.9272461, 0.21166992, 1.1425781, -2.046875, 1.5488281, -2.2792969, 3.2832031, -0.57470703, -0.65185547, -1.0185547, -0.76416016, -1.2158203, -1.5917969, -0.9536133, 2.3789062, 0.18139648, 2.359375, 0.18286133, -1.0712891, -0.8535156, 2.4042969, 1.0839844, 0.72558594, 2.34375, 2.7617188, -4.4570312, -0.034362793, 1.7363281, 3.8066406, -1.7460938, 0.39697266, 0.94970703, 1.0302734, 0.8071289, 0.92626953, 1.8378906, -0.62109375, 1.0478516, 0.16223145, -0.3269043, -1.7734375, -0.058044434, 0.8364258, -2.0507812, 0.016357422, 3.5742188, 0.9477539, -0.0335083, 0.5136719, 4.0117188, 1.1318359, -4.21875, 1.6552734, 0.08258057, 1.6591797, -0.0065574646, 1.2724609, -1.5019531, -0.06921387, -0.5878906, 1.6308594, -0.5332031, 0.15258789, 0.87890625, 2.2617188, 0.44726562, -2.0683594, 0.7626953, 0.3413086, -0.28320312, -2.2402344, -0.1583252, 0.95751953, -2.71875, -0.85839844, -1.203125, 0.37158203, -1.1894531, 2.2851562, -1.7392578, -1.1123047, 0.5644531, 3.5800781, -1.1699219, -1.2148438, -1.8642578, 2.7460938, -0.10595703, 0.1026001, -1.9492188, -3.0683594, 2.234375, -0.38110352, 1.6064453, 0.6328125, -2.4863281, -0.64746094, -0.19714355, 0.39038086, 0.9638672, 0.5996094, 2.453125, 1.0458984, -3.109375, 0.5439453, -3.0078125, 0.18847656, 0.028442383, -3.6738281, 0.7158203, 0.36791992, 0.41992188, 1.7773438, -1.2949219, 0.6928711, -0.74316406, 0.076538086, 1.7451172, -0.22241211, 0.6669922, -1.7607422, -3.1269531, 1.0224609, 0.3918457, -0.8979492, 1.8183594, 0.5415039, 0.44702148, 2.9648438, 0.21179199, 0.3083496, 0.58984375, -1.640625, 0.1986084, 0.5053711, 0.86572266, 1.4736328, 2.3554688, 0.21972656, -1.4091797, -0.56152344, -0.16870117, -0.9296875, 2.2070312, -1.8798828, 1.5195312, -1.4746094, 1.21875, -1.6171875, -0.021560669, -2.6171875, 0.54052734, -1.171875, -0.36694336, 1.0917969, 0.5185547, -0.035369873, 0.48754883, -0.26538086, 0.7080078, -0.83251953, -4.7695312, 0.16369629, 3.3652344, -0.45214844, -1.9414062, -0.32958984, 0.9667969, 0.9536133, -0.32666016, -1.6259766, -1.453125, -2.4042969, 0.7866211, 1.9375, 0.85302734, 2.625, -0.6357422, -2.6445312, -0.04043579, 1.2919922, -2.2265625, -2.8359375, -0.027816772, 0.01134491, 0.61083984, -0.8178711, -0.097595215, -0.8671875, 0.0020961761, 0.46069336, -1.4658203, 1.8544922, 2.1640625, -0.014389038, 4.265625, -1.2753906, -0.7783203, 1.5205078, -3.25, 1.703125, 1.6757812, -0.94873047, 0.23352051, -0.47583008, 0.13708496, -0.14208984, -2.2441406, -0.5913086, 0.90527344, 0.6586914, -0.064575195, 1.4082031, -0.7651367, 1.2148438, -0.13415527, -0.70410156, 1.2089844, -0.5180664, -0.61865234, 0.034606934, -0.39135742, -1.1513672, -0.4711914, 1.0556641, 1.5908203, -0.37939453, 3.046875, 2.7226562, 0.5546875, -0.82470703, -1.6464844, 1.3427734, -1.4892578, 0.4501953, -0.5878906, -0.15808105, 1.3164062, -0.6791992, 1.1171875, -0.63378906, 1.4892578, 0.65625, 0.38867188, -0.36499023, 2.0253906, 2.1816406, -1.5712891, 0.33129883, -1.2910156, 0.10424805, 0.079956055, 1.2158203, -4.6835938, -0.047821045, 1.171875, -0.6870117, 0.7836914, -1.6425781, -2.2558594, 2.2011719, 0.78027344, 0.27026367, 0.2397461, -1.7607422, -0.005859375, 1.0859375, -2.984375, 0.061340332, 0.1529541, 2.5585938, 1.7382812, -2.3242188, 0.7319336, -0.094177246, -0.63427734, -1.1308594, -0.54248047, -2.4023438, 0.070617676, 2.21875, 1.5390625, 1.7939453, 0.1451416, 2.2695312, -3.0039062, 2.1640625, -2.9082031, 1.2988281, -2.4316406, 2.1308594, 3.453125, -2.8867188, 0.43969727, -2.8144531, 2.3632812, -0.5605469, 1.6767578, 0.6640625, -1.734375, -4.2617188, 0.7060547, -1.8984375, -3.2226562, -1.7470703, -1.0917969, 0.7055664, -0.3154297, -0.042877197, -1.2578125, 0.26098633, 0.84033203, -0.49487305, -0.30273438, 0.99365234, -0.93066406, -0.9892578, -0.20080566, -1.1103516, 0.0032691956, -0.11968994, 0.91259766, 1.2402344, -2.0917969, -3.7851562, -1.9541016, 1.6337891, -2.8496094, -1.7148438, 2.328125, 0.33862305, 1.2207031, 0.95996094, 0.9301758, -2.2480469, 0.46557617, -0.13085938, 0.9135742, 0.78466797, -0.14758301, 1.9394531, -1.8544922, -1.2783203, -0.6201172, -3.2089844, 1.7265625, -0.06726074, 0.10998535, 0.55615234, -2.0976562, 1.0185547, -0.6538086, -1.3232422, 1.7617188, -1.2646484, 1.4960938, -0.15429688, -1.3017578, -3.7109375, -1.65625, -1.78125, -0.7504883, 0.9301758, -1.0800781, -0.42529297, -0.39770508, -0.11065674, 0.42700195, 0.35302734, 1.8300781, 1.0820312, 1.6181641, 2.3671875, 0.62646484, 2.9804688, 0.6870117, -0.51123047, -2.7070312, 1.2734375, -1.0429688, -3.0078125, 1.5683594, -0.53564453, -2.9960938, -0.20117188, 0.86279297, 0.4921875, 3.0371094, 2.2363281, -1.8359375, -1.5927734, 0.22058105, -2.8261719, 3.265625, 0.7788086, 1.8066406, -1.8583984, 4.9960938, -2.703125, -1.0205078, 2.4414062, -0.36669922, 2.4101562, -0.87060547, -3.1269531, 1.5966797, -1.4394531, -0.765625, 0.54003906, -0.3046875, -0.35351562, 1.3623047, 1.6445312, -0.56396484, -0.7270508, 4.453125, -1.8232422, 1.5664062, 1.4951172, -0.6279297, -2.5, -0.81103516, 1.0800781, -2.3964844, 0.7319336, -0.8540039, 1.8017578, -0.11138916, -1.3671875, -2.4472656, 0.7714844, 2.2246094, 1.4707031, 2.0898438, 1.6660156, 0.14440918, 2.0683594, 2.8046875, -0.007713318, 0.69677734, 0.70751953, 0.31225586, 0.62353516, 4.8632812, 0.5449219, -2.2636719, -0.06915283, 0.2644043, -1.6826172, 0.78759766, -0.018112183, 0.42285156, -1.125, 0.6040039, 2.390625, -0.06970215, 1.0908203, -2.4414062, -0.2055664, 1.0908203, -0.48828125, -0.77197266, 2.4179688, 0.5517578, 0.2290039, 2.6152344, 1.1855469, 1.1835938, 1.5820312, -1.1894531, 0.7915039, 0.24609375, 0.10821533, -0.14990234, 1.3867188, 1.5302734, -0.35302734, 1.71875, 1.0751953, 1.0048828, 0.5185547, 3.8164062, 0.7998047, -0.45263672, -0.47216797, 0.25927734, -0.2368164, 0.7109375, 0.1619873, 0.01411438, -1.1269531, 0.45898438, 3.4414062, -0.26367188, 2.1054688, 0.7011719, -3.0039062, 1.9091797, 0.11584473, 1.4462891, -0.6879883, 2.0039062, -1.109375, -0.52197266, -0.17785645, 2.3046875, 0.9067383, 0.18469238, 2.4628906, -2.3183594, 0.15161133, 2.7832031, 0.86035156, 0.36743164, 0.8310547, -2.6972656, 2.6113281, -0.8725586, 2.4863281, 0.11242676, 0.82666016, 0.9321289, 2.2480469, 1.4394531, 1.3144531, 2.3027344, 0.5283203, 1.8544922, -0.9511719, -1.2744141, -1.09375, -1.6669922, -2.0488281, -0.6328125, -0.28393555, 0.58984375, -0.71240234, -0.1875, 1.3671875, 1.4794922, 0.43530273, 0.07788086, -1.1621094, 0.6694336, 1.6796875, -0.7011719, 0.39575195, -2.1992188, 0.32421875, -0.10046387, 0.0012378693, 2.3007812, 0.60498047, 2.0664062, -1.7421875, 0.6870117, 0.5830078, 0.7763672, 0.36694336, -1.1796875, -2.6367188, -0.5541992, 1.2041016, -0.37109375, 1.2294922, 2.6132812, -0.5488281, -1.0761719, -0.045837402, -1.4150391, -0.10473633, -0.30419922, -3.5996094, -0.63671875, 2.4472656, 1.8681641, -0.07092285, -2.9042969, -4.0507812, 1.8291016, -0.40698242, 0.9345703, -0.3564453, -1.7939453, -0.7836914, -1.3261719, 2.1328125, -0.093811035, -1.6953125, 0.24035645, -0.40673828, 0.27978516, 0.32714844, 0.78125, 0.22363281, 1.1875, 1.6923828, 1.6357422, 2.4609375, 0.56103516, 0.17150879, 1.8076172, 1.3652344, -2.5566406, 0.69628906, 0.14916992, 0.9589844, -0.5600586, -0.5361328, -0.82714844, -1.9951172, 2.0644531, -0.86865234, -2.2441406]}, "B08W4Y34SR": {"id": "B08W4Y34SR", "original": "Brand: Outsunny\nName: Outsunny 8'x5' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown\nDescription: Don't you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you'd like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

          Features:
          - The steel roof is UV ray and water fighting for outdoor use
          - Double roof has great air circulation and heat reduction
          - Two side shelves for placing food and drink
          - Including 8 ground stakes and 8 expansion screws for stable standing
          - Assembly required


          Specifications:
          - Color: Brown
          - Material: Aluminium, Steel
          - Overall Dimension: 8.4' L x 5.2' W x 8' H
          - Eave Height: 6.4'
          - Shelf Size: 58.25\" L x 8.75\" W x 0.75\" T
          - Shelf Height to the Ground: 3.3'
          - Support Pole Spacing: 7.1', 5.2'
          - Weight Capacity of Each Shelf: 55 lbs


          \nFeatures: IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party\nCONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks.\nGREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing\nSTRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come\nBBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4'L x 5.2'W x 8'H, Eaves Height: 6.4'\n", "embedding": [-0.30566406, 1.9892578, 0.8286133, -1.0097656, 2.2460938, -0.5029297, 0.060546875, -1.9404297, 0.59814453, 0.9560547, -1.4248047, -0.029418945, 1.0195312, -4.3007812, 0.13562012, 0.4885254, 1.8964844, 1.9912109, 1.2373047, -1.6914062, 0.22961426, 1.1152344, -1.0488281, 0.54003906, 2.3046875, -0.7949219, 2.6269531, -1.0136719, -0.82373047, -0.2746582, 1.5009766, 1.7529297, -0.20703125, 0.9760742, -2.1582031, -1.3076172, 0.32836914, 0.34521484, 0.65527344, 0.13513184, -1.6523438, -2.5664062, 2.1425781, 0.73828125, -0.9794922, 1.7285156, -2.1054688, -0.36035156, 0.8798828, -1.9765625, 0.40649414, 0.47265625, 1.6347656, 0.40161133, -1.4511719, -0.36450195, -0.6743164, -2.8105469, 1.3769531, 1.0039062, -1.8994141, -3.3144531, -0.4260254, 3.3164062, 0.55371094, -2.0527344, 0.22375488, -2.265625, 1.8349609, -0.08605957, 0.1697998, -1.9443359, -3.5527344, 0.65966797, 0.1427002, -1.1708984, -3.1503906, 1.5185547, 0.859375, -0.78271484, -1.984375, 2.8027344, 1.7285156, -1.4482422, -1.3017578, -0.6591797, -1.3681641, -0.31982422, 1.4462891, -1.2421875, 1.2070312, -0.1673584, -0.8256836, -3.7832031, -0.50097656, -3.7011719, 1.890625, -0.54003906, -0.46142578, 3.2167969, 0.40722656, 0.8730469, -1.0957031, -0.6386719, -1.2382812, -1.6953125, 2.0703125, -2.1171875, -0.5288086, 0.5625, -0.43579102, 0.60009766, 0.26782227, -1.015625, 2.0351562, 0.35473633, -0.6953125, 2.4414062, 1.3076172, 1.5078125, 3.4707031, 2.8007812, 0.87158203, -1.0566406, -0.28833008, -0.89453125, 1.6865234, 0.76708984, 3.15625, -0.20898438, 0.12768555, -1.9511719, -0.88427734, 0.22583008, -2.1269531, -1.3896484, -2.6894531, -0.9814453, -4.6679688, 3.4160156, -1.8222656, -0.2607422, 2.9492188, -0.20483398, -2.234375, 0.9165039, -1.5146484, 2.03125, -0.48120117, -3.4355469, 0.18969727, -1.8828125, -0.67871094, -1.1533203, 0.75927734, -0.20654297, 1.8408203, -2.2890625, 2.8203125, 0.8183594, 1.3730469, -2.0996094, -2.3261719, 2.0390625, 0.69628906, -2.0214844, 1.5625, 1.0009766, -1.3496094, 1.0390625, 3.6523438, -1.2246094, 1.1386719, -0.4501953, 1.640625, -1.265625, -3.2148438, 1.9882812, 1.7490234, -0.1348877, -1.9179688, -1.9570312, 1.2441406, 1.3310547, -0.7294922, -0.87890625, -0.35009766, -0.4309082, -0.32299805, -0.5986328, 0.12188721, 0.020309448, -1.2695312, 0.99853516, -2.8515625, -0.8955078, -0.21618652, -0.1194458, 0.9189453, 1.4160156, -1.0410156, -0.48461914, -2.5644531, 1.3173828, -2.4960938, -0.6953125, -2.6191406, 1.4873047, 0.10241699, 0.7763672, 1.6201172, -0.5649414, 2.0371094, 1.1845703, 0.4650879, 1.4521484, 1.171875, 0.045135498, 2.4355469, 3.7753906, -0.0012722015, -0.1138916, -4.1210938, 3.7871094, 0.1895752, -0.3803711, 1.3662109, -0.16711426, -1.3105469, 1.5625, 1.6640625, 0.1340332, 0.91748047, 1.1650391, -1.3681641, 1.125, 0.73339844, -1.3076172, -0.8647461, -1.5283203, 1.0605469, -1.8935547, -1.1123047, 0.8457031, 0.6303711, 1.1376953, -1.1425781, 1.5771484, 0.68652344, -0.5136719, 0.22192383, 2.2011719, 0.91015625, -0.5527344, 1.3291016, 1.6601562, -0.8183594, -0.3388672, -3.03125, -1.5771484, -0.02949524, -1.5683594, 1.2285156, -0.38378906, 0.8613281, -0.83496094, -1.2246094, 1.0253906, -2.7324219, -1.9833984, 0.35205078, 0.67626953, 1.7128906, -0.86035156, 0.2052002, 1.0664062, -1.2109375, 0.21826172, 0.828125, -1.3925781, 0.38476562, 1.6962891, 1.7724609, -0.7602539, -0.7348633, -1.171875, 0.07739258, -0.6660156, -1.0058594, 0.23278809, 2.4375, -1.0800781, -1.6826172, 3.1367188, -2.0390625, -1.2431641, 1.6416016, -0.65966797, -2.2773438, 1.2685547, 2.1660156, 0.7973633, 1.1650391, -1.1181641, -0.34204102, -1.3125, 0.9970703, -4.8476562, 1.1386719, 1.7421875, 0.6503906, -0.16320801, -1.34375, -0.000995636, -0.20812988, -1.2783203, 2.5, -1.734375, 0.6777344, 4.640625, 0.98876953, 0.5551758, -0.56884766, -2.3496094, -0.5839844, 0.69628906, -1.0527344, -0.17663574, 0.6508789, -1.2910156, 1.7714844, -1.8955078, 1.5039062, -2.2910156, -0.012550354, -2.4355469, -1.0566406, 1.5791016, -3.03125, -2.2441406, 0.75097656, -1.0449219, -3.1210938, -0.25561523, -0.6635742, -4.0078125, 0.08166504, 1.6240234, -0.05291748, 3.4238281, 0.2854004, 1.7558594, 0.12963867, -2.5488281, 0.48535156, 0.828125, -0.7236328, 2.4707031, -3.6621094, 0.061706543, -0.6899414, 1.5634766, 0.12194824, -1.0507812, -1.0107422, -0.52197266, -1.6259766, -3.8320312, 1.3496094, 1.2587891, 0.80566406, -0.80078125, 0.17944336, -2.0839844, -2.2910156, 1.4492188, -0.41870117, 7.1171875, -1.0507812, -0.70654297, -1.4394531, -1.6298828, 0.029174805, -0.5625, -3.3554688, 0.40625, -1.8583984, 0.54052734, -0.82910156, -2.0429688, -0.57910156, 0.75927734, -0.20251465, -1.0615234, 0.04309082, 1.0664062, 0.43310547, -1.4833984, -2.21875, 0.067871094, 0.57666016, -0.12036133, 0.46118164, -1.4814453, -1.3691406, 0.24194336, -0.36767578, -1.5986328, 1.7871094, -1.1181641, -1.0693359, 1.0595703, 1.0390625, 3.0253906, -0.4333496, -1.3759766, 3.0039062, 3.0058594, -0.18640137, -1.7724609, 0.0736084, -0.5751953, -1.9150391, -0.5878906, 2.3886719, 2.8046875, 1.2294922, -1.2861328, 1.1992188, 0.3486328, -0.65625, 0.123291016, -0.68066406, 0.7451172, 2.4667969, -0.29760742, -2.1914062, 0.13830566, 0.94189453, -2.0859375, 0.13476562, -0.5517578, 0.14160156, 2.5117188, -0.3701172, -0.93896484, 1.8300781, -0.34350586, 1.5458984, -2.1308594, 2.6132812, 3.0683594, -2.0644531, 3.4921875, -0.93847656, 0.47875977, -0.32055664, -0.018341064, -0.3708496, 1.6474609, -0.51123047, -3.0078125, 0.5317383, 1.4892578, 0.32543945, -0.9863281, 2.5976562, -1.8203125, 0.4958496, 0.14282227, -0.53564453, 1.6787109, -1.4599609, -1.0400391, 1.1367188, -2.2441406, 0.38916016, -0.5019531, -0.33251953, -0.96972656, -0.50390625, 0.8613281, -0.7480469, -2.1015625, 1.1650391, -4.390625, -2.7011719, 0.32470703, 1.6777344, 0.1887207, -3.0214844, -1.4560547, 2.9316406, 2.0449219, -0.83935547, -0.9448242, 1.0507812, -0.9628906, 2.1308594, 0.26000977, -1.4287109, 1.1748047, -1.7089844, 2.9101562, 1.7226562, -0.9345703, -2.8300781, -1.0019531, -1.8330078, 1.0302734, 1.2148438, 1.4453125, 0.12536621, -2.7324219, -0.70410156, -1.0791016, 1.5595703, 2.46875, -1.78125, -0.82177734, 1.0419922, 0.48413086, 1.5039062, 0.8100586, 2.4941406, 0.8745117, -1.2724609, 2.0371094, -0.19543457, -0.3918457, -1.2900391, -4.5195312, 0.38427734, -1.5517578, -0.4309082, 2.1152344, -1.3857422, -1.4287109, 2.1933594, -1.1679688, -0.38330078, 0.22766113, -1.84375, -0.98095703, -2.7265625, -1.4082031, -0.8300781, -1.2216797, -1.3310547, -2.2695312, -0.28393555, 0.5527344, 1.5166016, 2.0488281, 1.2851562, 0.29711914, -1.8251953, 0.23608398, 1.3603516, 1.3349609, -0.90283203, -0.41064453, -0.066711426, 1.2050781, 1.9404297, 2.1132812, -0.6582031, 1.7255859, 0.8886719, 0.040496826, -0.8989258, -2.21875, -0.4230957, 2.4511719, -0.94628906, -2.0839844, -1.6142578, 0.6010742, 1.2490234, -0.39746094, -1.6679688, 1.5673828, -1.2470703, 0.76123047, -0.7290039, 2.8984375, -0.6816406, -2.3613281, -3.8691406, 0.012924194, 0.13122559, -0.79541016, -2.5644531, -0.09411621, 0.40722656, 2.421875, -1.1464844, -1.9804688, -0.44726562, 0.41259766, 1.5839844, -0.9560547, 1.5742188, 1.1289062, 3.1386719, 4.7109375, -1.6767578, -0.2376709, 3.1308594, -0.59765625, 1.1513672, 2.9316406, 0.02760315, -0.48583984, 1.5068359, 2.4394531, -2.3417969, -3.0332031, -0.31762695, 0.5854492, -1.21875, -2.5761719, 2.8378906, 1.0390625, 0.84521484, 2.5839844, 0.27441406, 2.0800781, -3.8789062, -0.4609375, 0.3017578, 0.18725586, -0.87646484, 1.3339844, 1.5039062, 1.0615234, 1.0986328, 0.3215332, -1.0498047, -1.2041016, 0.8544922, -0.49023438, 2.5273438, -2.5761719, -1.6103516, -0.1149292, -1.8466797, 0.3930664, -0.76708984, 1.2714844, 2.2714844, -1.0742188, 0.04901123, 0.8911133, -1.3720703, 2.7851562, 0.48242188, -0.26513672, 0.796875, 0.18847656, -2.0175781, 0.8173828, -0.040374756, -2.8242188, 0.7895508, -0.34423828, -1.6611328, 2.6660156, 0.14379883, -2.2773438, 2.6308594, -0.05407715, 0.89746094, 0.2763672, -1.7939453, 1.5585938, -0.34472656, -0.37670898, -1.1533203, -0.80810547, 1.8037109, -0.84277344, 0.34716797, 0.77685547, 1.1943359, 0.105895996, -0.51660156, -0.8432617, -2.2792969, -2.3222656, 2.3007812, 2.4726562, 2.859375, 0.70996094, 1.3974609, -4.2070312, -2.1113281, -2.7128906, 3.6660156, -2.9433594, -0.37280273, 0.8828125, 0.8833008, -1.7910156, -1.2734375, 0.79785156, 1.3994141, 0.1538086, 1.7197266, 0.7626953, -0.15515137, -0.6645508, -3.0195312, -3.7460938, -1.4707031, 0.5834961, -0.9819336, -0.055603027, -0.6870117, -0.5371094, -1.4257812, -0.34887695, 2.1835938, 1.8671875, -0.2121582, -0.026779175, 0.58935547, -0.85253906, -2.7636719, -1.4023438, -0.61035156, -2.1074219, 1.0507812, -1.4453125, -2.2480469, 0.05050659, 0.46679688, -1.796875, 0.42236328, 1.3847656, 1.0214844, 0.6958008, 2.3945312, -0.6191406, 0.21276855, 0.08660889, 0.57128906, 1.6914062, 0.9194336, -0.15222168, 1.3818359, -2.8261719, 0.31298828, 0.25708008, -2.9101562, -0.76416016, 1.0634766, 0.13647461, 1.1777344, 1.7832031, 1.3251953, 0.15209961, 1.1240234, -0.3408203, 1.8154297, 2.7910156, -0.33666992, 2.0449219, -1.9599609, -3.1875, -1.6435547, -1.4482422, -3.0800781, -1.828125, 2, -1.1523438, 2.6289062, 2.3867188, 1.6367188, 1.6601562, -1.9257812, 1.3876953, -0.029663086, 0.296875, 0.98779297, -1.1201172, -2.8828125, -4.2695312, -0.22314453, 0.72509766, -0.20812988, -0.7636719, 0.18273926, 0.45581055, -0.34301758, 0.35668945, 0.13293457, 1.3818359, 3.2871094, -0.83740234, 1.9257812, 0.041137695, 0.036834717, 0.55371094, -1.3544922, 1.4433594, 1.5097656, 0.29492188, -0.021697998, 1.2597656, 1.2646484, -0.80859375, 0.45361328, -0.5541992, -1.1054688, 0.84228516, -1.9042969, 0.09460449, 0.10192871, -0.6020508, -2.5058594, 1.9882812, -0.11859131, 0.07342529, -0.039276123, 3.03125, -2.0351562, 0.39941406, 1.5517578, 1.6308594, -0.02420044, -0.45532227, -0.30932617, -0.8129883, 2.359375, -0.4609375, 0.37670898, -0.7915039, 0.9321289, -0.6279297, 1.3232422, 1.2548828, 1.4267578, 2.0683594, 1.2832031, 2.6894531, 1.4755859, 1.7001953, 1.7900391, 1.5, -0.9790039, -4.234375, 0.51904297, 2.5175781, 3.7890625, -0.25732422, 2.2929688, 0.85546875, 1.6875, 0.3930664, 0.16357422, -0.57470703, 0.92041016, -3.6269531, 1.4980469, -0.06500244, 0.25732422, 1.0800781, 1.1503906, -0.55078125, -0.9013672, -3.4492188, -0.86621094, 1.2802734, 1.1601562, 0.17858887, -1.3320312, -0.31811523, -0.44604492, -1.7998047, 2.0585938, 0.04272461, -0.32958984, -2.078125, 0.7817383, 4.8007812, 1.671875, 0.22705078, 2.2871094, -0.5336914, 1.6035156, 3.421875, 2.5527344, 1.5537109, 0.0836792, 0.18664551, 0.37158203, -0.25683594, -2.4082031, 0.86279297, 0.70996094, -1.8828125, -1.0146484, 1.6269531, 1.0136719, 3.2480469, -0.3425293, 0.8852539, 0.50097656, 2.2695312, -2.8613281, -0.053771973, -2.2871094, -2.0292969, -0.35961914, 0.75146484, 0.88964844, 2.9042969, 2.0175781, -0.2734375, 2.25, 0.9536133, -0.640625, -0.25170898, 2.1210938, -0.35424805, 2.6582031, -0.6503906, 2.5117188, 0.63964844, 0.8076172, -1.4238281, -0.05517578, -1.6845703, -0.87353516, 2.5996094, -1.0585938, -0.22351074, -0.5595703, -0.83984375, -0.22558594, -2.2636719, -1.3486328, -0.8105469, -0.63427734, -2.3652344, -1.5244141, -1.4121094, 2.5390625, 0.66503906, 0.42089844, 1.3583984, -0.14099121, 0.78271484, 1.2705078, -0.032287598, 0.17651367, 0.7084961, 2.8261719, -0.48583984, -0.18725586, -0.49536133, 1.8300781, 1.7675781, 0.95214844, 1.2109375, 0.97753906, 1.3173828, 1.8759766, 1.1054688, 0.42163086, -1.8847656, 1.5, 0.74853516, -1.0351562, 1.8544922, 0.49951172, -2.6152344, 1.5849609, -2.6542969, 2.4453125, -0.9399414, -1.7050781, 0.65625, 3.2304688, 3.4316406, -0.80810547, -2.234375, -3.9003906, -0.40625, -0.546875, 1.5722656, -0.60058594, -2.390625, -1.0429688, 0.625, 2.9707031, 0.3215332, -0.31201172, 0.40942383, -0.92333984, 1.5136719, -1.9199219, 0.84814453, 1.4238281, -0.5761719, 0.9838867, 2.3886719, 2.8398438, 0.9458008, 0.37817383, 1.5039062, 1.1630859, -4.7265625, 2.140625, -1.5253906, 0.45385742, 0.36157227, 2.2304688, 1.5820312, -1.4658203, -1.2167969, -3.5136719, -0.44970703]}, "B085WSHG8H": {"id": "B085WSHG8H", "original": "Brand: Jeebel Camp\nName: Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output\nDescription: \nFeatures: \u3010Practicality\u3011Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical.\n\u3010Adjustable Control Valve\u3011On/off switch can adjust the gas refilling speed.\n\u3010Good Quality Materia\u3011Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting.\n\u3010Easy to use\u3011Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors.\n\u3010Include\u3011 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.\n", "embedding": [0.44067383, 1.7226562, 2.46875, 0.3125, -0.16821289, -0.8173828, -0.8623047, 0.5361328, 1.4238281, 2.0234375, 2.5410156, -2.2167969, 2.84375, -4.3867188, 0.8569336, -0.36083984, 0.05999756, 0.43554688, 0.77490234, 0.8671875, 2.9414062, -0.515625, 0.53466797, 0.5527344, 0.2529297, -0.13696289, 4.0195312, -3.0585938, -0.059020996, -0.31933594, 0.86035156, 0.21325684, -0.5986328, 1.5078125, -1.3710938, -1.2236328, -0.92871094, 0.18676758, -4.8359375, -1.03125, -1.4990234, -0.17492676, 3.0332031, -0.1652832, -2.4277344, -1.2480469, -0.13928223, 0.31225586, 1.4931641, 0.14318848, 0.95654297, 2.1289062, 0.35888672, 2.9101562, -1.8867188, -1.5732422, 1.0273438, -1.3310547, 1.8183594, -0.33740234, 0.86279297, 0.6958008, -1.9306641, 1.734375, 0.43432617, 0.36157227, -1.4257812, -1.8710938, 0.77734375, 1.0751953, 0.71240234, 0.7963867, -0.012619019, -1.3652344, -1.6523438, 0.5083008, -3.9863281, 0.6777344, 2.9570312, 0.17492676, -1.3085938, 2.4335938, 0.15344238, -1.6923828, 0.9902344, -0.5986328, -2.0898438, 1.3427734, 2.1289062, 1.1787109, -2.4433594, 0.9765625, -1.109375, -2.9433594, 1.0996094, -1.2080078, 0.7236328, 3.0507812, 2.9492188, 0.7114258, -1.9335938, -0.88916016, 0.64990234, -1.0566406, -2.140625, -1.6025391, 0.5336914, 1.1894531, -2.2011719, 0.39697266, -0.7504883, -0.5419922, 2.7070312, -0.85009766, -1.3212891, -1.1171875, -0.81689453, -1.7460938, 2.8691406, 0.5078125, 3.9589844, 0.8203125, 2.5605469, 0.5541992, 1.7490234, 1.2197266, -0.8701172, -0.6020508, 1.4072266, 1.5839844, 0.43310547, -0.8857422, 1.7509766, -1.5419922, 0.72558594, -2.3632812, -1.1806641, 0.07684326, -2.0234375, -1.8417969, -3.8125, -0.4152832, 2.453125, -0.7602539, -3.5683594, 0.5605469, -2.5273438, 1.609375, 1.6845703, -1.4853516, 1.2675781, -1.3662109, 1.0888672, 1.453125, 3.078125, 2.0644531, -1.2275391, -0.7104492, 1.2060547, 2.6992188, 0.05340576, 0.020812988, -0.7597656, 2.4199219, -0.53125, -3.5742188, 0.41748047, -0.88623047, -0.79541016, 2.2675781, -0.34887695, -2.5566406, 2.4277344, -0.049468994, -0.2467041, -3.1269531, 0.7558594, 2.28125, 1.7861328, 1.890625, -4.9179688, -3.0273438, -0.1505127, -2.4414062, 0.91308594, 0.21704102, -1.2666016, -1.6386719, 1.7666016, -0.8613281, -1.4111328, 2.5214844, -1.5234375, 0.80908203, -1.9619141, -2.0332031, -1.8330078, -1.9648438, 0.0914917, 1.2705078, -2.3144531, -0.6503906, 1.1904297, 0.23132324, -0.9921875, -0.69628906, 0.5151367, -2.0976562, 1.0292969, 2.9238281, -0.064453125, 0.80810547, 2.5703125, -1.4775391, 0.084472656, -2.0722656, 3.1640625, 1.8867188, 2.9589844, 0.20812988, 1.5537109, 1.2177734, 1.5527344, 0.18371582, 2.2734375, 1.0605469, -0.85058594, 0.68896484, -1.8662109, -0.8408203, 4.484375, 0.7841797, -0.02722168, -1.4921875, -0.6958008, 1.8085938, 1.3486328, -1.0253906, 2.8476562, 2.2734375, 0.28271484, -1.7939453, 0.06640625, -2.4277344, -0.05911255, -0.69433594, 0.58935547, -0.18933105, 1.8349609, -0.57421875, 2.125, -0.80908203, -2.5664062, -1.8730469, -1.0019531, 0.9379883, 1.5029297, 1.6738281, 0.8066406, -0.9580078, 1.9736328, -0.56884766, 1.1142578, 2.15625, 0.78808594, 1.5634766, 1.6601562, -1.0449219, -0.6665039, 0.6113281, -0.58691406, 3.0039062, 2.671875, -1.7998047, 1.4238281, -0.28271484, -1.0498047, 1.3642578, -0.08758545, 1.2939453, 1.0976562, -1.9619141, 1.8261719, -3.1445312, 0.93359375, -0.7675781, 1.7314453, 0.14892578, -2.8554688, -0.8310547, 4.09375, -1.7353516, -0.75634766, 2.1972656, 1.6679688, 1.7929688, 1.2431641, -1.2294922, 0.40478516, -1.3330078, -2.5253906, -0.13317871, -0.24829102, 2.3632812, 2.0664062, 1.125, -1.8046875, -1.2216797, 1.6269531, 2.4824219, -2.1210938, 1.78125, -2.265625, 0.44262695, 0.11260986, -0.97314453, 2.3769531, -3.6210938, -0.17712402, 1.7783203, -1.6757812, 0.21350098, 0.9091797, -2.6992188, -0.35205078, -0.7685547, -1.7138672, 0.6147461, 2.0292969, 1.3457031, 0.5522461, -1.0595703, -0.6801758, -2.7441406, -2.4726562, -0.3635254, -0.92871094, -2.8359375, -0.17956543, -1.2480469, -2.0585938, -0.8964844, -0.32739258, 4.0195312, 0.44677734, -0.41479492, -0.95214844, 1.2148438, 0.69384766, -1.8554688, 1.2822266, 4.25, -0.79248047, -4.609375, 0.12335205, -0.7553711, 1.4775391, 0.45947266, -1.1699219, 0.9189453, -0.22631836, 0.10870361, 0.39794922, 1.8085938, -0.7373047, -2.4199219, 1.3798828, -3.4199219, 0.057434082, -0.13415527, 3.1152344, -0.97998047, 1.2636719, -1.0927734, -1.6708984, -1.0839844, -1.4189453, 3.265625, 0.24084473, -0.05255127, -2.0527344, -1.1328125, 0.1821289, -1.5214844, -1.5380859, -0.3564453, 0.1829834, 0.1307373, 0.053100586, -4.78125, 1.1435547, -1.3779297, -0.036346436, -0.54003906, -3.8398438, -1.4746094, -1.7529297, 0.007575989, -0.4477539, -1.25, -1.4228516, -0.08843994, -1.1298828, 0.0690918, 0.12646484, 0.66259766, 0.82470703, -0.8671875, -0.3540039, -1.2568359, -1.5019531, -0.12683105, 0.6425781, 0.99121094, -0.75634766, -4.5976562, 2.2675781, 1.7148438, -1.9892578, 1.3740234, -0.60058594, -0.1619873, -2.1777344, -0.71728516, 3.3652344, 3.0214844, 3.8535156, 0.4206543, 1.203125, 2.0410156, 2.25, -0.49487305, -1.8759766, -1.0849609, 2.8300781, -1.3916016, -0.020935059, -0.51220703, 0.4189453, -3.2324219, 1.6738281, 0.5449219, 0.8017578, 2.0585938, -0.74560547, 1.1162109, 0.9267578, 0.01399231, 0.9423828, 2.4765625, -0.00060749054, 0.85595703, 0.24694824, 0.41333008, -0.40795898, -0.4350586, 0.54345703, 0.011154175, -0.5708008, 1.9755859, 1.8671875, -1.2675781, 1.6679688, -1.515625, -1.6826172, -0.70214844, 0.5878906, -0.12792969, -0.92871094, 0.2529297, 0.69970703, 1.8310547, -1.7431641, 0.59277344, 1.0390625, 1.0976562, -0.85253906, 0.83984375, -1.78125, -0.97314453, -0.22229004, 0.8569336, 0.22265625, -0.81103516, 0.03390503, -2.8417969, 1.2265625, -0.33569336, 1.0527344, -0.30249023, 0.71533203, 0.88916016, -0.87597656, -1.3027344, -2.5136719, -1.1152344, -0.63916016, 0.4855957, 3.4882812, 1.4150391, -1.9111328, 1.0947266, 0.8642578, 1.1826172, 2.0488281, -1.7304688, -2.4765625, -2.9667969, -0.34765625, 0.7285156, -0.12475586, 2.0410156, -0.0680542, -0.70214844, -1.0888672, -1.8691406, -0.20397949, 0.26098633, -0.23742676, -1.7773438, -1.2177734, -0.6269531, 0.51220703, 0.18798828, 2.1113281, -1.3183594, -0.53222656, 1.4677734, -1.9306641, 0.18518066, -0.7036133, -4.4609375, 1.3935547, 1.3095703, 0.71972656, -0.027618408, -0.094055176, -1.0566406, 0.67822266, 1.8935547, -3.5078125, -1.7890625, -0.85253906, 1.7783203, -2.0410156, 0.69433594, 1.5205078, 1.3515625, -1.7929688, -1.9931641, 0.5214844, -3.2675781, -1.7490234, -1.2880859, -2.8613281, 0.089538574, 0.3684082, 0.35229492, -2.9667969, -2.4003906, 1.4287109, -1.6005859, -0.14172363, -1.3994141, 1.5410156, 2.0019531, 1.53125, -0.07098389, 2.9199219, 1.8759766, 0.35058594, -0.7636719, -0.0071258545, 2.7519531, 0.5629883, -2.8476562, -0.6401367, -0.8203125, -1.2871094, 0.35986328, 0.12634277, -1.0419922, 0.15893555, 0.29418945, 0.5800781, 0.6821289, 1.4619141, -1.3427734, -0.6767578, 1.5175781, 1.1591797, -0.55371094, -1.0205078, -0.5839844, -1.5761719, -1.8662109, 0.39868164, -0.32128906, 1.3740234, -0.37890625, 0.94677734, -2.8671875, 0.6743164, 0.83691406, 0.9975586, 1.7402344, -1.6806641, -0.6953125, 0.6279297, 0.8276367, -0.59765625, 0.12054443, -2.2539062, -0.8105469, 1.8349609, 2.3027344, 0.03024292, -0.62841797, 0.58251953, -0.96875, -0.085998535, 0.16955566, 1.3710938, -1.2050781, 0.6098633, -0.2800293, -1.0625, 3.9609375, -0.21081543, 1.4130859, -0.88623047, -0.39233398, -1.2783203, 0.96191406, 1.2841797, 0.35253906, 0.1973877, 0.22583008, 2.8105469, 2.9121094, 0.0982666, 1.1865234, 1.2519531, -2.3496094, -1.3935547, 0.1784668, 1.9511719, -0.99560547, 1.5283203, 1.5214844, 0.92333984, 1.4501953, 2.40625, 0.02180481, -0.44677734, 2.6210938, 1.7294922, 0.984375, -1.6494141, -1.7480469, -0.13476562, 4.296875, -1.4384766, -2.5742188, 0.7753906, 1.5849609, 0.9291992, 1.875, 0.76123047, 0.7421875, -1.890625, -3.1894531, -1.2001953, 0.02923584, -0.21240234, 1.1738281, -1.0351562, 0.5522461, 1.2001953, 1.5009766, 0.9013672, -0.54541016, -1.6933594, 0.8017578, -0.60058594, -1.5527344, -1.3769531, -1.5927734, -2.2324219, -0.09906006, 0.38452148, 0.82714844, -0.15734863, -0.59472656, 1.5302734, 0.12237549, -1.3398438, -0.72021484, 0.68847656, -2.4589844, 0.30249023, 0.56640625, 1.8730469, -1.1376953, 0.4645996, 0.15185547, -0.7885742, 3.3847656, 0.77490234, -0.33398438, -0.66845703, -1.1494141, -1.9072266, -3.8300781, -1.1875, -0.15185547, 1.9375, 0.31347656, -0.7104492, -1.0996094, -0.15710449, -2.1035156, -0.5571289, -2.7207031, 1.1445312, -1.4091797, 0.11468506, 0.96533203, 1.4472656, 0.22302246, -0.86621094, 0.15551758, -0.2758789, -0.17687988, -2.5332031, -2.0351562, 3.4765625, 0.1854248, -0.48291016, -1.5458984, -0.59765625, 0.31469727, -0.9145508, 1.5576172, -1.6171875, 1.3320312, -1.1123047, 0.7973633, -0.02406311, -2.1015625, 0.72314453, 1.4912109, -0.14465332, 0.2692871, 2.0644531, 2.5058594, -0.5625, -1.3789062, 0.74316406, 0.11016846, 0.97021484, 0.9746094, 2.9433594, -0.6977539, 3.1386719, 1.7958984, -0.1739502, 0.28393555, -2.0390625, -2.6230469, -0.14379883, -0.94091797, 0.8227539, -0.61816406, 1.0068359, -0.69433594, -1.7861328, -1.6748047, -0.765625, 0.97998047, -0.5048828, 2.1113281, -2.2890625, 2.3789062, 0.8466797, -1.6328125, -3.234375, -0.984375, 2.9199219, 1.0361328, -1.6054688, 0.013725281, 1.3027344, -1.2509766, 1.9550781, -0.24499512, 3.2617188, 0.36987305, -0.6894531, -2.1484375, 0.32128906, 0.48168945, -2.1289062, 0.09301758, 0.40356445, -1.0136719, -0.48168945, 2.1113281, 2.046875, -1.7324219, 0.8203125, -0.95751953, 0.5883789, -1.7763672, -0.042785645, 0.23583984, -4.140625, 1.0917969, 0.32470703, -3.4101562, -1.6435547, 4.0234375, 0.1217041, -1.1035156, 1.6503906, 0.7158203, -0.8520508, -0.5073242, 1.0029297, 1.3701172, -1.8828125, -0.77001953, -0.47558594, 1.484375, 0.64941406, -2.0371094, 1.7861328, 0.95654297, 1.1611328, 1.2880859, 0.5522461, 1.7138672, 1.4941406, 0.18579102, 3.0175781, 1.53125, 1.5605469, 2.1738281, 0.17456055, 0.7294922, 0.48120117, -0.46679688, -0.41552734, 0.4909668, -2.1132812, 0.8125, -0.7167969, -0.82470703, -1.2880859, 0.058807373, -1.8085938, -1.5527344, 1.0136719, -1.4570312, -0.8222656, -1.6044922, 0.17285156, -2.1464844, 1.0400391, -0.78222656, -0.6381836, -0.066101074, 0.32250977, -0.4633789, 0.89990234, 1.6005859, 1.4804688, -0.29663086, 1.4355469, -0.76416016, -1.953125, -4.5, -2.0097656, -1.4921875, 2.4492188, 0.51123047, -0.88720703, 0.7055664, -0.79833984, 1.8994141, 1.2216797, -0.32617188, 0.3803711, 1.4023438, 0.03540039, 1.3349609, 2.7636719, -1.5634766, 0.6542969, 1.0869141, -2.2304688, -2.2910156, -0.19006348, 0.36914062, 0.65283203, -0.37329102, -4.0664062, 2.7109375, -2.84375, 0.13134766, -2.203125, -0.9477539, 1.7998047, 0.5292969, -1.5732422, 0.25097656, 0.052825928, 0.94433594, 0.3359375, -0.7246094, -0.24890137, 1.9443359, 1.1123047, -0.734375, 0.87109375, 1.0761719, 0.4020996, -0.1496582, 3.8535156, -0.030212402, -0.1940918, 1.7080078, 2.4140625, 1.7363281, 1.7695312, -0.08319092, -1.3486328, 2.5957031, 1.2558594, 1.8447266, 0.12988281, -1.8017578, -1.2373047, 0.28833008, 1.1669922, -1.2382812, -1.0859375, 0.6455078, -1.0976562, -1.4980469, -0.25610352, 0.54345703, -0.6411133, 0.9921875, -0.8041992, -0.6308594, -0.81884766, 0.40625, 1.1933594, -2.6523438, 1.3740234, -0.26757812, -0.640625, 1.0986328, -1.9248047, 1.3984375, -1.671875, -2.0253906, -2.2773438, -0.6513672, 0.9501953, -2.0742188, -0.9555664, -0.5522461, 1.890625, 4.328125, 1.1152344, 0.6816406, 0.46606445, -0.33569336, -0.49780273, -0.6489258, -2.0234375, 0.49609375, 1.5791016, -0.50634766, 0.46118164, -1.4189453, -1.5771484, -2.4121094, -1.2724609, -0.60546875, 0.29882812, -1.5761719, 1.7441406, 2.0253906, 1.4716797, 0.95214844, -1.2324219, -1.7011719, 1.5722656, 1.4306641, -1.4003906, -0.9345703, -0.5371094, 1.1201172, 1, 3.5449219, 2.765625, -1.2382812, -0.53027344, 1.484375, 0.13793945, -1.3222656, -1.2460938, 0.07501221, 0.2130127, 0.84765625, 2.8300781, 2.4023438, 1.1035156, 0.66259766, -1.96875, 1.8378906]}, "B07N2MXJ64": {"id": "B07N2MXJ64", "original": "Brand: YRYM HT\nName: YRYM HT Copper Grill Mat Set of 5-13\"x15.75\"Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill\nDescription:

          It\u2019s 100% safe to use FREE from any harmful chemicals that might seep into your food.

          The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

          \u2605Cook without oil or fats more healthy

          *SGS approved
          *Foods retain more vitamins and minerals
          *Does NOT absorb odors or transfer flavors

          \u2605Make Grilling, Baking, Cooking Easier:
          *Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
          *This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
          *It will not retain or transfer tastes or odors between uses.

          \u2605Application:
          *Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
          *Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
          *Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

          \u2605Simple To Use:
          *Simply place this mat on the food grill , It never sticks!
          *They can also be cut to fit your particular grill or oven perfectly.

          \u2605CLEAN-UP IS A BREEZE!
          *Simply clean the mats with warm soapy water.
          *Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe\uff01

          \u2605Package Included:
          5 * Cooper Grill Mats
          1 * Oil Brush BBQ Liquid Pen

          \u2605GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
          Any questions you have, please don't hesitate to contact us

          Your Purchase Is Risk Free. ADD TO CART TODAY!
          \nFeatures: \u2665 Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves.\n\u2665 Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500\u00b0F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS.\n\u2665 Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package!\n\u2665 Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on!\n\u2665 Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.\n", "embedding": [0.33422852, 1.171875, 1.8427734, 0.70996094, 1.359375, 0.0814209, 1.6513672, -0.5864258, -0.25048828, 2.3496094, -0.3708496, 0.11212158, 1.125, -4.3789062, 1.9150391, -0.53759766, 0.9707031, 1.4716797, 1.7841797, 0.25952148, 0.41357422, 0.5058594, -0.55126953, -1.9130859, 1.2822266, 0.8378906, 3.2265625, -0.076049805, -0.85839844, -1.5644531, 1.1494141, 2.1777344, 0.64208984, 0.93603516, -3.1269531, -1.2939453, -1.078125, 3.3730469, -0.1484375, 0.578125, -1.6230469, -2.9589844, 0.24206543, 1.4306641, -2.8203125, 0.35302734, -0.3701172, 2.7480469, -0.5410156, -3.7285156, 2.4667969, -0.23120117, 2.1503906, 0.546875, -2.5371094, 1.8505859, -1.1474609, -2.1132812, 0.49487305, -0.58740234, 0.8183594, -1.9902344, -0.38378906, 2.1230469, 0.32299805, -1.4638672, 0.56884766, -2.4023438, 0.9472656, -1.9160156, -0.3642578, -0.5053711, -1.0322266, -0.59814453, -1.3789062, 0.5957031, -1.0615234, -1.2675781, -0.51953125, -1.8759766, -0.5385742, 3.4785156, -0.39794922, -2.1601562, 0.8125, -1.9765625, -2.1523438, -1.1035156, 3.9277344, 0.6748047, 0.7763672, 4.0195312, -3.2226562, -4.2265625, -0.057556152, -2.2363281, 0.6044922, -0.9301758, -1.4111328, 1.3632812, -0.96972656, -1.0136719, -0.3544922, 1.7998047, -4.5507812, -1.9521484, 2.0058594, 0.671875, 1.1611328, -0.21032715, -0.9008789, 1.9931641, -1.1845703, -0.3491211, 1.0517578, 0.0904541, 1.2900391, -2.0683594, 2.2734375, 2.5507812, 3.9375, 1.7255859, -0.6064453, -3.34375, 0.27197266, 0.17163086, 1.3476562, 0.9370117, 2.96875, -2.3203125, -0.12231445, -0.070007324, 1.2529297, -1.4873047, -1.2753906, -2.4628906, -1.2226562, -0.44750977, -2.4941406, 1.1220703, 0.44750977, -0.4013672, 2.6601562, -1.0517578, -2.1738281, -0.16638184, -1.9130859, 3.0488281, -2.7617188, 0.068359375, -0.083618164, -0.92285156, 0.39257812, 0.48999023, 2.5839844, 0.35986328, 1.2226562, 0.6928711, 1.4951172, 1.2373047, 0.37426758, -2.4433594, -1.5175781, 0.515625, 1.7685547, -2.4824219, -1.6240234, 1.6835938, -0.0970459, 3.8300781, 1.0576172, -2.0566406, 1.3232422, 0.021377563, 1.0576172, -0.85546875, -0.02633667, 2.5429688, -1.6777344, -0.8251953, -0.4921875, -3.0878906, -0.52001953, 1.9667969, -0.16223145, -0.265625, 1.0244141, -1.2255859, 1.6035156, -1.1259766, 0.2536621, 2.8867188, 1.4912109, 0.13647461, -2.2851562, -0.36694336, -0.08319092, -2.6113281, 1.1083984, -0.39648438, -0.41210938, -0.36547852, -1.0400391, -0.9658203, -2.1601562, -2.7617188, -1.5810547, 2.6621094, 2.0566406, 0.23632812, 0.15161133, -1.5888672, 1.5527344, 1.5419922, -1.8085938, -1.8251953, -0.9116211, 0.2783203, 1.2392578, 1.6181641, -0.62646484, -0.18359375, -0.4074707, 4.1835938, -2.53125, 1.1494141, 0.05883789, 2.0507812, -0.42358398, -1.6044922, 1.0966797, 0.9238281, 0.5917969, -0.9667969, -2.0097656, 2.0449219, 1.5410156, -2.3144531, -0.68066406, -0.101501465, -2.0566406, -0.7011719, -2.6992188, -1.7226562, -0.83203125, -0.3701172, -0.671875, 2.6621094, 0.37109375, -2.5390625, -0.53125, 3.6191406, 1.9208984, -1.5175781, -0.05227661, -0.19506836, 0.28808594, 0.057037354, -1.7275391, -0.80371094, -1.2773438, -0.70214844, -1.5625, 1.0644531, 0.85839844, -1.2431641, 3.2304688, -0.031555176, -2.3808594, -1.3789062, 1.1132812, -1.6455078, -0.41918945, -2.1660156, 1.1914062, 1.1015625, -1.1181641, 1.9863281, 0.9682617, 0.77490234, -0.13098145, 3.5039062, 0.79833984, -1.6435547, -1.6289062, 0.68310547, -2.0859375, -0.94189453, 1.2216797, -0.31640625, 3.2089844, 1.109375, -1.1708984, 3.4609375, -0.7480469, 0.9350586, 2.4882812, 0.034118652, -1.7197266, 0.1361084, -0.3413086, 3.3652344, -1.4365234, -0.3059082, -0.79785156, 0.63378906, 1.6142578, -2.2089844, -0.48876953, 3.609375, -0.65283203, -0.51220703, 0.46606445, 0.79541016, -3.0058594, -1.7382812, 0.6015625, -2.5488281, 0.50439453, -2.3613281, -0.32910156, 0.02142334, -0.49560547, -3.484375, -0.67529297, 1.9648438, -0.09741211, -0.87597656, 1.4179688, -0.8857422, 0.40795898, -1.046875, 1.3583984, -0.89697266, -1.5185547, -1.7275391, -1.3212891, -1.3173828, -0.66259766, 0.13391113, -0.5385742, 1.2646484, -0.9711914, -0.5566406, -0.8730469, -2.0585938, -1.8183594, -0.58984375, -0.73535156, 1.2373047, -1.4677734, 1.3056641, 0.48266602, -5.0273438, -0.02482605, 1.2275391, 0.3881836, 1.3291016, -3.1816406, -0.27392578, 1.4414062, 1.5498047, 1.34375, -0.02796936, 1.1220703, 2.5996094, -2.0078125, -2.7851562, 0.5317383, -0.53125, 0.3635254, -1.4677734, 0.6088867, -2.2050781, -0.85791016, -0.671875, 1.1230469, 4.2578125, 0.2298584, 2.0605469, -0.05319214, -0.94433594, 0.43725586, 0.7675781, -0.9921875, -2.4707031, 1.0751953, -2.7539062, -0.68652344, -1.8085938, -1.0253906, -1.0273438, 0.98535156, 1.0087891, 2.2109375, 0.035064697, 2.8925781, -2.953125, 0.59228516, 1.1425781, 0.48217773, -1.0458984, 0.53027344, 0.34057617, 0.0003118515, -0.8154297, -2.9863281, 0.6044922, 0.63427734, 0.06756592, 0.28955078, 0.89697266, 0.29785156, 1.0488281, 1.1757812, -2.3945312, 2.1132812, -1.28125, -1.6181641, 0.9941406, -0.45532227, -0.86621094, -2.7792969, -0.8701172, 3.6816406, 0.03656006, 1.0361328, 0.6591797, -0.10534668, 3.8320312, 2.2109375, 0.20837402, 0.44750977, 0.61621094, 0.95996094, -1.0380859, -3.9394531, 1.5068359, 0.2692871, -2.2421875, 1.5029297, 0.9248047, 1.1875, 0.016143799, 0.025054932, -0.93652344, 0.6738281, 0.44726562, 3.765625, -0.36767578, -0.35083008, -0.74853516, -0.38964844, 0.013298035, 1.7333984, 1.8789062, 1.7724609, 1.6142578, 1.3759766, 1.0078125, -0.6269531, -2.5351562, 0.32763672, 1.6943359, 0.5361328, -0.9921875, 2.2109375, -1.2929688, -0.7998047, 3.9277344, -2.28125, 0.48242188, -1.0019531, -0.75878906, 1.8369141, -0.42456055, -1.1269531, -1.8916016, -2, -0.30322266, -2.34375, 1.0888672, -2.8632812, -0.50097656, 1.0625, -3.0488281, -4.25, 1.5429688, 3.5292969, -0.5361328, -0.22973633, -2.3476562, 2.5175781, -1.7060547, -1.1699219, -0.4416504, 2.8710938, -1.4121094, 0.9580078, -0.12927246, -1.9082031, 0.6044922, -4.5820312, 0.68603516, 0.80810547, -3.2832031, -1.1015625, -2.1074219, -0.73291016, 0.33764648, -0.27001953, -1.0400391, 0.703125, -2.0996094, -0.08013916, -2.2421875, 0.76904297, -0.8261719, -1.8720703, 1.2597656, 0.75146484, 1.34375, -0.2019043, -0.2836914, 4.203125, 3.140625, -1.6630859, 0.64941406, -3.5253906, -0.27124023, -1.5927734, -4.0976562, -0.734375, -1.6621094, -0.35595703, 4.1210938, 0.11566162, 0.7939453, 2.6933594, 0.6328125, -1.6074219, 0.6665039, -3.0507812, -0.3774414, 0.18591309, 0.6689453, 2.2128906, 2.5078125, -1.3271484, -0.7817383, -0.8491211, -0.8461914, 1.3857422, 0.5888672, 0.36669922, 0.9394531, -1.3398438, -0.3942871, -0.11077881, 0.44848633, -0.9296875, 0.9526367, 1.2539062, 1.4365234, 2.7636719, -3.0507812, 1.3779297, 1.3339844, -0.79541016, -1.1318359, 0.3425293, -0.43359375, 0.8227539, 3.2636719, -0.28515625, -1.5146484, 0.89941406, -0.064331055, 2.7128906, -1.2050781, -0.32177734, 0.37524414, -1.2490234, -0.03994751, -0.16906738, 1.2089844, 2.0390625, -0.38305664, -1.7421875, 0.38476562, -0.34448242, -2.9550781, -1.3623047, 0.4309082, -0.44995117, -1.1992188, -1.2617188, -0.9277344, 2.3632812, -2.1953125, -0.67089844, -1.1191406, 2.6054688, 1.7666016, 1.2197266, 4.6640625, -3.2734375, 0.28833008, 0.86621094, -4.0507812, -1.6972656, -1.8671875, -0.5913086, -2.1152344, 1.1035156, 1.8261719, -0.40014648, -1.2763672, 0.42651367, -0.08013916, -1.4697266, -3.0527344, 1.8242188, -1.8183594, -0.54345703, 2.0097656, 0.033111572, 3.2070312, -1.3339844, 2.3378906, 1.5917969, -1.2167969, 0.015449524, -0.34594727, -1.3964844, 0.22131348, 1.2392578, 0.45581055, 1.5537109, -0.3779297, -0.875, 1.2119141, 0.85546875, -2.4433594, 2.4101562, 0.17480469, 3.0761719, -1.0273438, -0.73535156, 2.4082031, 1.4443359, -1.2177734, 0.59228516, -0.6777344, -0.92529297, 1.4013672, 2.6054688, -1.8144531, 0.6020508, 0.18310547, -1.0214844, 2.3144531, -1.2021484, -1.7900391, -0.43310547, 1.1943359, -0.12976074, 0.75146484, -1.9980469, -0.45385742, 0.59472656, -1.0966797, -1.8154297, -2.2070312, -1.0761719, 2.2460938, -1.5546875, 1.1005859, 0.22839355, 0.54003906, 4.3554688, -1.3388672, -1.3076172, 2.2265625, -0.35620117, -2.0585938, 1.1757812, -1.5322266, -1.5869141, -1.2529297, -0.47192383, 1.0498047, 0.99609375, -0.8125, 0.96240234, -0.9223633, 1.3623047, -1.5810547, 2.6386719, -1.5087891, -0.44140625, 4.0703125, -3.9394531, -2.3339844, -2, 1.8027344, 2.0058594, 0.19787598, 3.9902344, -2.3242188, -0.17956543, 0.15710449, -1.5292969, -1.5097656, -0.33398438, 0.39648438, 0.8466797, -0.040374756, -0.072509766, -0.7055664, -1.7929688, 0.4296875, 0.64501953, 1.6259766, -0.59814453, -1.28125, -0.44799805, -2.1699219, 0.23242188, -0.21801758, 1.2724609, 0.23071289, 4.25, -0.6308594, -1.6162109, -1.1660156, -1.4267578, -2.3027344, -0.18652344, 0.5756836, 0.953125, 0.99365234, 0.33935547, 0.15771484, -0.5883789, 3.9316406, -0.69873047, 0.90478516, 1.9638672, -0.79296875, -0.20251465, -0.7675781, -3.9003906, -0.7114258, -3.0058594, 1.8535156, -0.18334961, -3.3300781, 0.9941406, 1.4990234, -2.1992188, 0.008766174, 1.1425781, 2.8105469, 1.3974609, 0.5234375, -0.46826172, 0.9238281, -3.0742188, -3.3535156, 1.0966797, -0.74121094, -0.69140625, -1.6875, -0.7939453, 0.70214844, -1.0185547, 2.9980469, 0.49731445, -0.30151367, -0.6582031, 1.2705078, 1.1191406, 1.21875, 1.2363281, 0.3623047, -0.5888672, -1.4638672, 1.2333984, 0.06384277, 0.6772461, 1.3818359, -1.8740234, -2.0566406, -2.6816406, -0.28588867, 0.70751953, 1.5214844, 0.62841797, -0.49658203, 0.69189453, 1.8681641, -2.1464844, 0.75683594, 1.7119141, 2.8808594, -2.1816406, 3.4160156, -0.5932617, -3.5195312, 0.84277344, 0.30273438, -1.1464844, 0.06854248, -0.42993164, 0.18395996, -0.7602539, -1.8789062, -1.7255859, -0.42578125, -1.2666016, 1.8154297, -1.8310547, 1.1777344, -0.25073242, 3.5859375, 0.39379883, 2.1523438, 2.0078125, -0.46679688, -1.0771484, -0.4921875, -2.1816406, -0.61816406, 1.8359375, -0.5566406, -0.27270508, -0.107177734, -1.6142578, -1.7773438, 1.0410156, 0.9111328, 1.0429688, 1.1660156, 2.4414062, 3.046875, 2.2519531, 0.91552734, 1.1328125, 3.3457031, 1.6542969, 0.94091797, 0.028762817, 1.953125, 0.95654297, 2.3242188, 0.44433594, 1.7021484, 0.49389648, 0.52246094, 0.83984375, -0.072143555, 0.31445312, -1.4189453, 1.8779297, -0.17480469, 1.1669922, -0.9946289, 1.8994141, -2.1757812, 0.36499023, -2.4511719, 0.7915039, 4.078125, 1.9638672, 1.4199219, 1.1367188, 1.2841797, 2.1582031, -3.4082031, -0.2479248, 1.4277344, 0.78222656, -1.7617188, 2.7441406, 0.63916016, 1.6816406, 0.39404297, 0.38745117, 0.2019043, 1.5683594, 0.52783203, 2.2714844, 0.5058594, 0.20471191, 1.9570312, -1.2685547, -1.6230469, 0.09954834, -0.6694336, -1.2617188, -1.6328125, 0.14379883, 1.8652344, 1.5703125, 0.06304932, -3.5253906, -0.28833008, 0.18835449, 1.2236328, -2.6484375, 0.44921875, 0.35375977, -3.3007812, -2.1816406, 1.2080078, 0.9589844, 1.5556641, 1.2431641, -2.8242188, 1.4697266, 0.082458496, -0.19555664, 1.1699219, 0.88183594, -2.4472656, 2.5703125, 0.015853882, 5.1640625, 2.0214844, 2.5371094, 0.77001953, 0.1484375, 1.7568359, 1.203125, 0.71191406, 0.52734375, -0.76220703, 0.95654297, 0.087646484, 1.7490234, 0.004119873, -1.2011719, -1.7216797, 0.01914978, 0.058654785, -2.0449219, -0.3239746, 0.15673828, 2.2519531, 1.5878906, 0.7294922, -1.9501953, 2.8085938, 2.9003906, -0.40014648, -0.69189453, -1.7519531, -0.07519531, -1.6435547, -1.1787109, 1.9414062, 1.0195312, -0.41357422, -1.8125, 0.8076172, 0.11419678, 0.76220703, 0.12451172, 1.3955078, -1.7802734, -1.1787109, 1.8691406, -0.98291016, 0.15307617, 1.1757812, -0.96484375, -1.3193359, -0.07562256, -3.0859375, -1.4873047, 0.30493164, -2.0820312, 2.0839844, 2.8242188, 1.1660156, 0.024276733, -2.0566406, -2.7832031, 1.1982422, -0.7006836, 1.3271484, 1.0615234, -1.1416016, 0.3894043, -1.9599609, 1.0625, 2.1777344, -1.9287109, -0.7553711, 0.14746094, -0.08911133, -1.7460938, 1.5742188, 0.79296875, 1.6044922, -0.73876953, 2.7207031, 1.9746094, -0.07055664, 2.5390625, 3.296875, 0.98876953, -2.3261719, -0.003282547, 0.5761719, 1.2138672, 1.0957031, -0.28710938, -1.3007812, -1.3681641, -1.3242188, -2.2167969, 0.07232666]}, "B094HHS7Q4": {"id": "B094HHS7Q4", "original": "Brand: my aegean NATURAL\nName: My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ\nDescription:

          My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it\u2019s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

          The materials used in the manufacture of our product have been chosen with your health in mind. With it\u2019s high quality PTFE-Fiberglass material, it\u2019s long-lasting and suitable for reuse. It\u2019s thickness is 0.2 mm. This thickness is the most preferred.

          You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

          When using our product, we ask you to pay attention to just a few things:

          - Please do not put the grill mat directly on the fired charcoal.

          - Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

          - Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

          - Before cleaning, wait for it to cool down and first clean it with a dry cloth.

          - If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

          Thank you very much for choosing My Aegean grill mat.
          \u00a0

          \nFeatures: HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven.\nNON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories.\nREUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It\u2019s easy to clean and there is no need for a grill cleaning. Extends the life of your grill.\nMULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It\u2019s standard size is 15.75 x 13 inches, but you can cut it to any size you want.\nYOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.\n", "embedding": [0.6459961, 1.0742188, 1.3466797, -1.1806641, 1.9394531, 0.94921875, 0.46142578, -1.2177734, -0.15466309, 1.4570312, -1.1503906, -0.42089844, 1.2792969, -2.7109375, 1.2548828, -0.35424805, 1.1855469, 2.0703125, 1.125, 0.7260742, 3.1328125, 0.17016602, -0.6801758, -0.7133789, 0.61816406, -0.30908203, 3.5820312, -0.7324219, 1.7353516, -0.9838867, 1.0869141, 1.7216797, 0.08203125, 1.6787109, -2.6796875, -1.9560547, -0.3256836, 3.7304688, -0.6772461, 1.1855469, 0.06329346, -3.2128906, 0.8041992, 1.8496094, -1.8730469, 0.19128418, 0.38720703, 1.8564453, -0.25439453, -3.5625, 1.0869141, 0.8232422, 2.515625, -0.5810547, -1.7890625, 0.27075195, 0.8725586, -2.8886719, 1.2314453, 0.38500977, -0.43115234, -0.46899414, 1.2402344, 2.7714844, -1.453125, -0.62597656, 0.45532227, -2.1601562, -1.2861328, -2.3613281, 0.21142578, 1.0830078, -1.8652344, 1.6982422, -0.96728516, -0.6245117, -0.5214844, -0.49291992, 1.1484375, -1.7265625, -0.76708984, 0.6381836, -0.48217773, -0.8496094, 0.44384766, -0.50683594, -4.4960938, -0.54296875, 0.6640625, -1.8056641, 0.014389038, 1.6904297, -1.8779297, -5.1835938, -0.03540039, -2.4921875, -0.31054688, -0.7558594, -1.7285156, 2.1640625, -0.8022461, -0.82666016, 0.19750977, 1.1191406, -3.1679688, -2.5800781, 2.3300781, -1.1542969, 1.4667969, 0.7963867, 0.31689453, 0.9350586, 0.34423828, 2.0097656, 2.9433594, 0.74316406, 1.5302734, -1.5224609, 0.86328125, 1.2753906, 4.15625, 0.73291016, -0.45410156, -2.4394531, -0.33007812, -1.5898438, 0.5834961, 1.8847656, 2.3574219, -2.1289062, 0.9458008, -1.65625, -2.4433594, 1.3369141, -2.0722656, -0.6621094, 0.45922852, -0.43725586, -2.1582031, 0.9794922, 0.73095703, 0.453125, 1.5986328, -0.57666016, -1.7714844, 0.3828125, -3.1269531, 2.4921875, -1.4472656, -0.61621094, -0.17211914, -1.4326172, 1.5859375, -0.046173096, -0.5073242, 0.024414062, 0.87646484, -0.4177246, 2.2089844, 1.8203125, 0.8984375, -2.2441406, 0.008926392, 0.39208984, 0.5522461, -2.5585938, -1.1328125, 1.5634766, 0.6845703, 0.17651367, -1.3964844, -2.9921875, 1.8779297, 0.6542969, 0.018417358, 0.79248047, 0.38330078, 1.6425781, 0.14807129, -0.7294922, 0.75097656, -1.7441406, 1.0683594, 1.4150391, 0.017822266, -0.022384644, -0.52490234, -1.1152344, -0.07458496, -1.6171875, -0.56884766, 2.1015625, -0.87597656, 0.54785156, -3.34375, -1.4277344, 0.40673828, -0.9814453, 1.8154297, -1.1953125, -0.87890625, -0.37231445, -1.8095703, 0.3491211, -2.296875, -3.6914062, -4.3515625, 2.4570312, 1.4355469, -0.008071899, 0.42163086, -0.9267578, 1.0742188, 2.890625, -1.2626953, -1.4716797, -0.016815186, -0.6464844, 0.8515625, 1.3037109, -1.6201172, 0.3701172, -0.03463745, 2.8378906, -0.7470703, 1.1230469, 0.83935547, 2.4257812, -1.2197266, -1.4472656, 1.2851562, -0.58154297, -0.22717285, -0.25610352, 0.79833984, 0.7963867, 1.0058594, -0.31445312, -2.4414062, -0.9194336, -1.5136719, -2.0078125, -2.2558594, -0.7133789, 0.15185547, -1.3183594, -0.41333008, 2.765625, 2.015625, -1.796875, -1.3720703, 3.4199219, 0.37524414, 0.29101562, 1.0283203, 1.7910156, -0.7260742, 0.6040039, -2.7148438, -0.45581055, -0.09362793, 1.0097656, 0.04699707, 1.6230469, 2.8691406, -0.45483398, 0.8876953, 0.17138672, -3.25, -1.3505859, 1.7578125, -1.6279297, 0.69628906, -0.4790039, 0.80859375, -0.45166016, -1.5429688, 1.6416016, 0.8046875, 1.1103516, 0.056274414, 2.5078125, 0.97753906, -0.48168945, -1.3193359, -0.80322266, -0.69189453, -0.84277344, 0.9013672, 1.5605469, 3.6972656, 0.9663086, -2.3847656, 2.4257812, 0.20776367, -0.1772461, 2.0332031, -0.012763977, -1.7089844, -0.09857178, -0.06994629, 0.546875, -0.6958008, 0.5234375, -2.5117188, -0.20410156, 1.9423828, -1.9716797, -0.35791016, 1.0791016, 1.0058594, -0.25073242, 1.0400391, 1.3408203, -4.4921875, -1.109375, 0.09753418, -1.5556641, 1.0673828, -0.57958984, 0.44848633, 0.35913086, -1.0244141, -2.7324219, -1.8701172, 1.0400391, -1.09375, 0.050079346, -0.80029297, -0.94189453, 1.3222656, -1.1533203, -0.3479004, -2.2871094, -1.2675781, -1.3925781, -1.5800781, 1.0400391, -0.5917969, -0.22558594, 0.13513184, 1.1552734, -0.6015625, 0.9863281, -0.35595703, -1.9755859, -2.0390625, 0.41381836, 0.83935547, 2.7617188, 0.50927734, -0.5058594, 1.5458984, -3.8378906, -1.1699219, -0.78808594, 0.42089844, 1.9570312, -0.6513672, 0.8027344, 0.31396484, -0.091430664, 0.8823242, -0.65625, -0.037628174, 0.3955078, -1.9160156, -3.2871094, 0.4958496, -3.4609375, 1.4628906, -1.5400391, 0.8696289, -1.4951172, -1.4814453, -0.9511719, 0.2956543, 3.9257812, 0.9458008, 1.0810547, -0.8666992, -1.4775391, 0.68310547, 0.3449707, -0.68652344, -0.73095703, -1.1835938, -2.0546875, -0.005847931, -0.6894531, 0.4020996, 0.03353882, -0.37304688, -0.31933594, 2.2207031, 0.3642578, 2.546875, -3.7285156, 0.10784912, -1.0078125, 0.71972656, -1.53125, 1.8710938, -0.68603516, -0.20324707, 0.1829834, -1.5488281, 0.47485352, 1.0341797, -0.49047852, 0.48217773, 1.5292969, 0.81640625, -0.51660156, 1.1191406, -2.2441406, -0.02720642, -1.3076172, -1.3857422, 2.2460938, 1.2089844, -1.9423828, -1.3544922, -1.453125, 3.0839844, 1.8945312, -0.22338867, 0.66748047, 0.95751953, 2.7421875, 2.7578125, -0.0309906, -1.1513672, 0.13964844, 1.5146484, -0.30200195, -0.7368164, 1.5146484, 0.12512207, -1.6855469, 1.2919922, 0.6669922, 1.625, 1.5947266, 0.73779297, 1.4931641, 1.5917969, -0.21179199, 2.6015625, -0.71972656, 0.97802734, -0.99853516, -0.70166016, 0.64990234, 0.09643555, 1.1464844, 0.5004883, 1.1396484, -0.14880371, 1.1279297, -1.8955078, -2.0625, 0.45385742, 2.1679688, 0.08416748, -2.0175781, 2.1503906, -0.09069824, 0.50927734, 4.4140625, -0.09613037, 1.0322266, -1.5927734, 0.90234375, 0.8730469, 0.24633789, 0.2915039, -3.0742188, -0.67089844, -1.34375, -2.8242188, 0.8383789, -3.1015625, -2.2890625, 0.38793945, -1.0869141, -5.015625, 1.0927734, 4.0585938, -0.53222656, -2.0488281, -0.7026367, 3.0722656, -1.0146484, -1.5761719, 0.27563477, 2.2773438, 0.74316406, 1.8496094, -0.83496094, 1.5478516, 2.4003906, -2.265625, 1.9394531, 0.5419922, -1.0185547, -0.037322998, -1.2382812, -1.8359375, -0.4868164, 0.30249023, -0.34838867, 2.7070312, -2.0371094, 0.89208984, -1.1962891, 1.1484375, 0.21679688, -1.3066406, 0.30078125, 0.8232422, 1.4726562, -0.0982666, 0.06732178, 3.3183594, 1.6572266, -2.6230469, 1.3251953, -2.796875, -0.21411133, -1.6083984, -2.1542969, 0.36254883, -0.85302734, -2.3007812, 2.6269531, 0.22595215, 0.98828125, 3.2050781, 0.25219727, -1.4052734, 0.16149902, -1.3466797, -0.8808594, -0.8803711, -0.14343262, 2.5195312, 0.22644043, -1.1386719, -0.92041016, -1.9492188, -2.4453125, 0.3647461, -0.09844971, 1.1308594, -0.8911133, -2.3222656, -0.7807617, -0.5263672, 0.6074219, -0.81152344, -0.78222656, 0.5419922, 1.9443359, 2.9257812, -1.0732422, 1.8212891, 0.77685547, 0.15478516, -0.48632812, -0.89746094, -1.1630859, -0.20678711, 3.375, -0.87158203, -2.8222656, -0.6069336, -0.2734375, 0.017303467, -0.29614258, -1.1523438, 0.46875, -1.5322266, -0.52685547, 1.234375, 2.4375, 2.2441406, -0.62890625, -0.7915039, -2.0800781, 0.7583008, -1.2265625, -1.9160156, -0.6220703, -0.115112305, -0.061401367, -1.9863281, -1.5263672, 2.1210938, -0.57470703, -0.17492676, -0.8095703, 2.2636719, 1.1113281, -0.35302734, 5.203125, -3.6914062, 0.23632812, 1.5605469, -1.9472656, -1.1787109, 1.9775391, -0.9892578, -2.7949219, 0.49145508, 1.4169922, -2, -2.6601562, -1.2441406, 0.37939453, -1.7617188, -2.5878906, 1.3447266, -0.058135986, -0.2861328, 1.3085938, -0.48046875, 2.0898438, -1.25, 2.2578125, 1.6992188, -0.012359619, 0.25854492, 0.9482422, -1.7392578, -0.75927734, 1.4482422, 1.9853516, -0.5727539, -0.9560547, 0.16796875, -1.2421875, 1.4296875, -3.5136719, 0.6816406, 0.1763916, 1.5566406, 0.39672852, -0.05117798, 2.5839844, 2.6386719, -0.16174316, 1.4384766, -0.5209961, -1.5205078, 1.0341797, 1.8828125, -0.30419922, 0.29589844, -1.265625, -1.0957031, 1.125, -1.7724609, -2.4140625, 0.69970703, 0.6508789, 0.9897461, 0.20263672, 0.35986328, 0.45336914, 1.4882812, -0.4609375, -1.2753906, -1.1582031, -1.2822266, 0.63720703, -0.060943604, -0.32128906, -0.10534668, -0.2800293, 3.5253906, -2.0253906, -1.7070312, 2.9902344, -0.2644043, 0.12225342, -0.29077148, -1.6914062, -2.2539062, -2.078125, 0.013641357, 1.5693359, 1.4980469, 0.25708008, -0.020828247, -1.1650391, 2.3984375, -2.5214844, 1.0888672, -1.4042969, -1.4804688, 2.7832031, -3.4785156, 0.98583984, -1.3671875, 1.6259766, 1.7021484, 1.0214844, 1.7636719, -1.8652344, -0.48828125, -0.4645996, -2.1074219, -1.40625, -0.93310547, 1.1591797, 0.14880371, 0.2277832, 0.56152344, -0.23547363, -0.76416016, -0.29467773, 1.46875, 1.53125, -0.87353516, -0.8354492, -0.62597656, -2.3417969, -0.095947266, 0.37353516, 0.14147949, 0.54052734, 3.4570312, -1.8134766, -1.3876953, -0.38354492, -0.36865234, -2.2382812, -1.8642578, 1.8017578, 0.43725586, -0.1538086, -0.35595703, 2.1503906, -1.3896484, 3.2871094, 0.95996094, 0.7890625, 2.6308594, 0.31689453, 1.2773438, -0.19458008, -3.9414062, 0.94873047, -4.1367188, 0.28857422, -0.047790527, -2.2285156, 1.7216797, 2.6914062, -2.2148438, -0.7060547, -0.49560547, 1.1015625, 2.8398438, -0.5307617, 0.07977295, 1.5058594, -2.0898438, -3.7285156, -0.73339844, -1.1367188, -2.1386719, -1.4121094, -0.12768555, 1.8017578, 0.9580078, 2.3554688, 1.53125, 0.26464844, -1.4863281, 1.2744141, 0.37963867, -0.6044922, 0.59277344, 0.4025879, -2.7695312, -3.0117188, 0.10473633, 0.38549805, 0.29956055, 1.4589844, -0.7832031, -2.9238281, -2.7832031, 1.015625, 1.2441406, 3.0683594, 1.4902344, -0.34985352, -0.43798828, 0.8725586, -1.8378906, 1.3242188, 0.9970703, 3.6523438, -0.9848633, 4.0976562, -1.0869141, -2.8417969, 2.9609375, -0.20605469, 0.25048828, -0.12561035, -1.3623047, 0.7426758, -1.265625, -0.88964844, -1.4072266, 1.0693359, -1.9130859, 1.5322266, -0.6508789, 0.3046875, -0.5756836, 2.3105469, 0.9863281, 2.6308594, 2.7578125, 0.6796875, -0.5263672, -1.1181641, -2.9296875, 1.1289062, 1.6474609, -0.26000977, -0.6791992, -0.46142578, 0.4638672, -0.6586914, 2.8613281, 1.1650391, 1.3242188, -0.47875977, 2.6503906, 3.6386719, 1.8789062, 2.5703125, 0.23132324, 1.8935547, 1.1308594, 0.5292969, 0.7788086, 3.4707031, 0.6098633, 1.5732422, -0.13342285, 1.1552734, 1.8115234, -0.5488281, -0.11102295, -0.062683105, 0.19885254, -1.9072266, 1.078125, 1.4472656, -0.69189453, -1.1728516, 1.2939453, -1.5078125, -0.39379883, -0.41870117, 0.28222656, 3.0527344, 1.40625, 1.9921875, 0.09539795, 0.86083984, 1.6835938, -3.2636719, 1.4404297, 0.84716797, -0.7011719, -1.7412109, 4.2578125, 0.07574463, -0.29467773, 0.09454346, 2.1738281, 0.9057617, 1.6279297, 2.0957031, 0.47924805, 0.9980469, -0.8100586, 2.1875, -1.3994141, -1.9658203, 0.36694336, 0.46166992, -1.59375, -2.3886719, 0.6123047, -1.3203125, 1.0927734, 2.4238281, -5.6171875, 0.4025879, 1.2949219, 2.1308594, -4.0351562, 0.01991272, -1.7001953, -2.28125, -2.0703125, 1.2480469, 2.3652344, 1.3173828, 1.3964844, -1.6201172, 0.35229492, 1.2587891, 0.6894531, -0.46484375, 0.49536133, -0.51464844, 0.31835938, 0.14990234, 2.890625, 3.0058594, 1.3828125, -0.8803711, 0.3864746, 4, 0.6113281, 1.0585938, 0.45898438, 0.0017375946, 0.48486328, -0.2775879, -0.71972656, -0.44848633, -2.3242188, -1.2509766, -0.028076172, -0.3857422, -1.5263672, 1.0527344, 0.17932129, 0.703125, 1.7949219, 0.40698242, -1.2041016, 2.2714844, 2.046875, -1.0625, -2.1855469, -0.86621094, 0.09680176, -1.9433594, -1.296875, 0.36450195, 0.41088867, 0.24597168, -0.68896484, 0.89404297, -1.3154297, 0.51904297, 0.54833984, 1.1855469, -3.0234375, -2.1542969, 0.7758789, -1.0742188, 1.5341797, 2.84375, -1.0751953, -1.0273438, -0.021850586, -0.6591797, -0.040527344, -1.9189453, -0.6772461, 0.77490234, 3.7773438, 2.7128906, -0.42749023, -3.7734375, -1.7900391, -0.4008789, -2.0058594, 3.453125, -0.16394043, -0.90234375, -0.76416016, -2.2792969, 3.3808594, 1.2265625, -1.7929688, 0.10845947, 0.44458008, 1.4697266, -0.42749023, 1.5703125, 1.4365234, -1.5517578, -1.3994141, 2.4960938, 3.6464844, 1.1787109, 2.2285156, 2.7460938, -0.0036449432, -2.3164062, -0.21289062, -0.6738281, 1.1933594, 1.5996094, 0.4050293, -0.45043945, -1.1269531, -0.81396484, -0.4013672, -0.87646484]}, "B07YDCYCGD": {"id": "B07YDCYCGD", "original": "Brand: AugToy\nName: Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas\nDescription:

          \u261e The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

          \u261e All the food accessories add to the fun that kids has with this grill playset.

          \u261e With this play grill, your kids will enjoy a bbq party with his little friends.

          \u261e It is really a good Christmas gift for kids who love playing cooking game.\u00a0

          \nFeatures: \ud83c\udf57 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids.\n\ud83c\udf62 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun.\n\ud83c\udf3d Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid\u2019s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included.\n\ud83c\udf74 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty.\n\ud83c\udf7b Pretend Play Kitchen Fun for Kids\uff1aWith this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.\n", "embedding": [-2.3359375, 2.1230469, 0.8125, -1.5908203, -1.4482422, 0.6879883, 2.3828125, -1.4511719, 1.1748047, -0.5058594, -0.9477539, 0.016311646, 1.3310547, -3.453125, 0.26489258, -0.13684082, 1.1464844, 1.2597656, -0.060150146, 1.2910156, -0.8852539, -0.039642334, -0.058380127, -0.6948242, 0.9013672, -0.97753906, 2.7792969, -1.4238281, 2.140625, -0.37402344, 2.7441406, 0.49023438, -0.6665039, 2.6738281, -3.4179688, -0.20239258, -0.99658203, 0.8676758, -1.8505859, -0.4880371, -0.91503906, -1.1767578, 1.8955078, 2.7421875, -4.3242188, -0.77441406, 0.7553711, 0.7651367, -2.2441406, -1.7041016, 0.81640625, 1.6953125, -1.3330078, 0.53515625, -3.5488281, 1.6738281, -5.46875, -0.028930664, -0.9213867, -2.7246094, 2.0644531, 0.6879883, -0.76953125, -0.54052734, 0.7011719, -1.1171875, 0.91259766, -1.9960938, 1.4238281, -1.7060547, 3.4746094, -1.3095703, -1.6240234, -0.12072754, -1.2451172, 1.2753906, -1.6181641, -0.101745605, 1.4746094, -2.5683594, 1.2119141, 1.3964844, -0.2861328, -1.6279297, 1.2705078, -0.005836487, -2.1191406, -2.0996094, 2.4804688, 2.9882812, 0.80078125, 2.0585938, -1.6660156, -4.0507812, 1.9824219, -1.4560547, 0.1895752, -0.57128906, 0.18408203, 3.0292969, 0.68896484, -1.9648438, -0.12902832, -2.1699219, -0.07232666, -0.46533203, 1.0654297, 1.0019531, -3.1953125, -0.2993164, -0.7998047, 1.6503906, -0.105407715, 0.74365234, 0.2614746, 0.59472656, -0.33569336, 2.3867188, 2.5332031, 0.5410156, 5.40625, -1.5791016, 0.43725586, -2.3183594, -1.0869141, 1.6113281, -0.12384033, 1.7460938, 2.2753906, -1.2353516, -1.5654297, 1.7529297, 1.8271484, -0.75878906, -2.5878906, -2.4277344, -2.0332031, -2.1210938, -1.8857422, 0.73828125, -1.2265625, -1.8564453, 2.9707031, 0.74316406, -2.1894531, 0.38134766, -1.7050781, 1.5556641, 1.8310547, -1.7441406, 1.7636719, -1.6884766, -0.44799805, 0.08483887, 3.1992188, 0.3466797, -1.5839844, -0.7583008, -0.44995117, 0.44067383, 0.5498047, -1.0595703, -0.67822266, 0.42285156, 0.31469727, -3.3535156, 0.59521484, 2.25, -1.2089844, 2.8554688, 0.6694336, -1.75, 2.3515625, 0.44506836, -0.38598633, -2.8554688, -1.9365234, 1.1298828, 1.3613281, -0.6254883, 1.5380859, -0.28149414, 2.4082031, 2.4589844, -2.3066406, 0.32739258, 0.047943115, -0.21020508, -0.12573242, -0.99365234, 0.54589844, 0.79345703, -1.6044922, 0.3647461, -2.8320312, -1.0986328, 0.020629883, 1.3535156, 1.7197266, 2.2402344, 0.31420898, 0.050109863, -0.86621094, -0.15991211, -2.3554688, -2.4667969, -0.54833984, -3.4746094, 1.2353516, 0.2631836, 2.0488281, 0.4182129, 1.8652344, 0.48266602, 0.09136963, -1.6210938, -1.8291016, -0.7036133, 2.3632812, 2.2519531, -2.1972656, -0.14160156, 0.5126953, 4.9960938, 0.79296875, 0.3947754, -0.4194336, 0.10095215, -2.7011719, 0.38110352, 0.41479492, -0.61279297, -2.3359375, -0.62646484, 0.10095215, 0.46166992, 2.6542969, 0.48510742, 0.18786621, 2.2167969, 1.1552734, -3.0332031, -0.5263672, 2.0605469, 0.4038086, 0.31933594, 0.060943604, 0.8154297, -3.4238281, 0.38867188, 0.63427734, 0.6088867, 1.5234375, -0.14978027, -0.78515625, 0.94140625, -3.234375, 1.5625, -3.5976562, -0.7758789, 2.6816406, 1.5107422, -1.1894531, 3.171875, 2.8808594, 0.8886719, 4.8515625, -1.1142578, -1.0751953, -1.5, 0.25195312, 1.6699219, 0.3461914, -0.9790039, -0.6074219, 0.4567871, -0.28466797, -1.7431641, 1.5136719, 0.44628906, -0.84765625, -1.4716797, 1.7783203, -0.9042969, -3.6660156, -0.8432617, -2.7636719, -2.828125, 1.7441406, 0.9321289, 4.8085938, -0.3334961, -1.3408203, 1.9511719, -2.9433594, 0.72753906, -0.037750244, -2.5703125, -1.3652344, 1.1650391, 1.8369141, 1.0224609, 0.103759766, -0.34326172, -0.22253418, -0.006072998, 0.8510742, -0.3479004, -0.3083496, 1.1279297, -1.2402344, -1.8759766, 1.2646484, 1.2314453, -0.1940918, 1.1601562, -0.7861328, -1.7021484, 1.7021484, 0.44726562, -1.3769531, 0.4741211, -0.3190918, -1.375, 1.4296875, 2.34375, -0.106933594, 1.4677734, 0.6928711, -1.1845703, 1.1777344, -0.34692383, 0.5463867, -2.546875, -2.5, 0.28198242, -1.3251953, -2.4121094, -1.0791016, -0.9111328, -0.91845703, 0.98291016, -1.5859375, -0.25097656, -0.93408203, -3.7910156, -1.0634766, -0.06951904, -1.6103516, 1.8183594, -1.3828125, 1.9697266, 1.5009766, -3.3203125, 0.49291992, 0.79003906, 3.3261719, 0.9199219, -2.765625, -1.0214844, -0.7573242, 1.4521484, 1.5996094, -0.56347656, 0.68652344, -0.74121094, -1.4873047, -1.3486328, 2.2460938, 0.47387695, -0.6694336, 1.0927734, 0.009651184, -0.36010742, -0.38183594, -1.0693359, 0.75878906, 4.34375, -1.0683594, 0.9848633, -0.46704102, -0.70166016, 0.27270508, 1.7314453, -1.71875, 0.31811523, -0.98828125, -1.7011719, 0.5136719, -0.17980957, 0.38476562, -1.6416016, 0.26416016, -0.62109375, 3.0058594, -1.0039062, 2.1855469, -1.6806641, -0.24255371, -1.0966797, -0.7114258, 0.921875, -0.70458984, -0.42529297, -0.12536621, -1.5908203, -2.3652344, -1.5410156, 2.5175781, -1.3808594, -0.49414062, -0.20922852, 0.99365234, -2.2988281, 2.1992188, -2.8183594, 3.6054688, -0.9165039, -0.8330078, -0.8466797, -1.1630859, -1.1953125, -3.3535156, -0.26416016, 2.8378906, -0.50390625, 0.9482422, 0.77441406, -1.6845703, 0.103759766, 2.3144531, 0.8911133, 0.6948242, 1.1796875, 2.9804688, -3.828125, 1.5634766, 2.2832031, 4.171875, -1.9619141, -0.14929199, 1.3994141, 0.6513672, 0.7817383, 0.3046875, 1.3017578, -0.4399414, 0.7661133, 0.64453125, 0.58984375, -1.7851562, -0.93408203, 0.5419922, -1.6689453, 0.78125, 3.2519531, 0.18835449, 0.26538086, 1.3066406, 3.1171875, 0.75390625, -2.6621094, 1.3310547, 0.07678223, 0.78271484, -0.015792847, 1.2304688, -1.2832031, -0.11529541, -0.8676758, 0.98779297, -0.017242432, 0.0057792664, 0.73583984, 3.3066406, -0.36450195, -2.5820312, 0.027938843, -0.06689453, 0.5620117, -0.93359375, 0.5888672, 0.15856934, -2.2480469, -0.79345703, -0.8022461, -0.70703125, -1.1064453, 2.6875, -1.9238281, -1.1035156, -0.1472168, 3.9082031, -0.59033203, -0.49291992, -1.3525391, 2.1171875, -0.5708008, -1.3349609, -1.7324219, -2.7753906, 2.2089844, -0.7949219, 0.9526367, 0.53564453, -2.2382812, 0.41870117, 0.8623047, -0.9526367, 0.52783203, 0.89404297, 2.7480469, 1.875, -2.7988281, 0.024993896, -3.1464844, -0.24609375, -0.066223145, -3.5976562, 1.0820312, 1.6044922, 0.72802734, 1.5517578, -1.4814453, 1.2285156, -0.13537598, -0.21081543, 1.2705078, -0.0390625, 0.10046387, -1.7597656, -3.0117188, 1.5039062, -0.953125, -0.68896484, 1.6171875, 0.46533203, -0.5341797, 3.6796875, 0.8959961, 0.83691406, 0.43408203, -1.4365234, 0.43164062, 0.4494629, -0.35131836, 2.0507812, 0.3347168, 0.49487305, -0.27441406, 0.32226562, 0.52978516, -1.5234375, 2.4433594, -2.0371094, 1.7490234, -2.0195312, 1.4482422, -1.0302734, 0.5864258, -3.5253906, 0.40551758, -0.8491211, -1.2207031, 1.7753906, 0.88134766, -0.25805664, -1.0820312, -0.69433594, 0.4958496, -0.7636719, -4.2265625, -1.0947266, 3.2636719, -0.45922852, -2.6308594, -0.118896484, 0.41137695, 0.96533203, -0.7451172, -1.0673828, -2.3183594, -1.7470703, 1.0126953, 2.421875, 1.0488281, 2.3632812, -0.77978516, -3.5078125, -1.1152344, 1.2685547, -2.4492188, -2.6484375, -0.15783691, -0.9370117, 0.86328125, -1.1767578, 0.24707031, -0.5751953, -0.2614746, 0.09222412, -0.875, 1.9306641, 2.3535156, -0.8125, 4.671875, -0.23046875, -1.0214844, 1.03125, -2.890625, 1.59375, 0.9375, -0.75341797, 0.4477539, -0.27319336, -0.55126953, -1.1572266, -2.0429688, -0.21008301, 0.92822266, 0.6245117, -0.4296875, 2.1367188, -0.2788086, 1.5341797, 0.08068848, -1.5283203, 1.3720703, -0.6113281, -1.1123047, 0.067871094, -0.5097656, -1.3378906, -0.46289062, 1.0390625, 2.1015625, -0.7216797, 3.265625, 2.515625, 0.8574219, 0.00667572, -1.3007812, 0.7758789, 0.12878418, 1.2285156, 0.42358398, 0.32861328, 1.1796875, -0.16027832, 1.1972656, -0.8642578, 2.4238281, 1.4414062, -0.7729492, -0.98046875, 1.6396484, 1.875, -1.2421875, -0.38793945, -0.86328125, 1.6953125, -0.8300781, 0.9042969, -4.71875, 0.0015087128, 1.2236328, -1.5683594, -0.06890869, -2.1464844, -3.5078125, 2.0839844, -0.33276367, 0.41430664, 0.91503906, -1.5058594, 0.81591797, 0.45214844, -2.2304688, -0.0010585785, 0.5371094, 2.4335938, 0.47802734, -2.1503906, 1.2597656, -0.921875, -0.22668457, -1.2070312, -0.69921875, -3.2148438, 0.33544922, 3.0742188, 0.8261719, 1.2988281, -0.1459961, 2.9785156, -2.5371094, 2.5371094, -3.1386719, 1.1933594, -2.5917969, 1.2587891, 1.7246094, -2.6035156, 0.20837402, -1.9589844, 1.9052734, -0.6542969, 2.2070312, 1.2177734, -2.0742188, -2.8945312, 0.7026367, -1.9501953, -3.1191406, -1.8935547, -0.6503906, 1.3154297, 0.07720947, 0.66259766, -0.2322998, 0.4633789, 1.0371094, -0.15002441, -0.6411133, 0.69921875, -0.59228516, -0.4411621, -1.4863281, -1.0888672, 0.5751953, 0.71191406, 2.2988281, -0.19458008, -2.7929688, -3.1953125, -1.0625, 1.9765625, -3.7871094, -0.9873047, 1.7685547, -0.20361328, 1.2919922, 1.6386719, 1.1689453, -1.0107422, 0.4506836, -0.20227051, 0.54833984, 1.1210938, -0.008918762, 2.453125, -1.6953125, -1.2373047, -1.1103516, -2.0703125, 2.3320312, 0.4411621, 0.29614258, 1.7431641, -1.3535156, 0.7739258, -1.2548828, -3.1230469, 1.2324219, -0.07293701, 1.7636719, 0.0009074211, -0.9916992, -3.7871094, -2.3027344, -1.9130859, -1.5566406, 1.4160156, -1.4726562, -0.58496094, -0.5131836, -0.26757812, 0.42163086, -1.0791016, 2.5625, 0.75878906, 1.4560547, 2.2597656, 1.2285156, 2.4707031, 0.65722656, -1.2636719, -1.6318359, 0.093322754, -0.48364258, -2.2207031, 0.9604492, -0.39819336, -2.4375, 0.73779297, 0.97509766, 0.82470703, 2.9316406, 1.0146484, -1.8671875, -1.5898438, 0.6333008, -2.5527344, 4.0078125, 0.78808594, 1.2646484, -2.40625, 4.8945312, -2.8417969, -0.004802704, 2.5078125, 0.44628906, 1.4365234, -1.0556641, -3.5214844, 0.859375, -0.37231445, -0.9169922, -0.21496582, -0.5214844, -0.4802246, 1.5498047, 1.9511719, -1.5488281, -0.7939453, 3.8632812, -1.9941406, 1.5175781, 2.5019531, 0.12597656, -1.3730469, 0.27197266, 1.6796875, -2.984375, -0.12963867, -0.80566406, 2.0488281, 0.3239746, -1.9169922, -2.2753906, 2.0292969, 2.3652344, 0.5205078, 2.3984375, 2.0371094, 0.6904297, 3.0332031, 3.1308594, 0.91015625, 0.6567383, 1.6914062, 0.12512207, 1.1542969, 4.9765625, 1.5830078, -2.2109375, 0.2524414, 0.5620117, -1.7373047, 0.7763672, -0.3083496, 0.79296875, -1.3574219, 0.99658203, 2.2070312, -0.31884766, -0.12805176, -3.515625, 0.8310547, 0.18798828, -0.27124023, -0.46875, 2.9882812, 0.014884949, 0.15917969, 1.7080078, 1.2958984, 0.74316406, 1.4404297, -2.6328125, 0.75146484, -0.10845947, 0.2619629, -0.5463867, 2.1113281, 0.7011719, 0.50927734, 0.9814453, 0.7919922, -0.32788086, 0.47802734, 3.9707031, 0.63427734, 0.44091797, 0.390625, -0.5131836, -0.18676758, -0.17700195, -0.04547119, -0.38085938, 0.14904785, 0.33618164, 3.8105469, -0.37353516, 1.8740234, 1.0771484, -3.1542969, 2.703125, 0.35620117, 1.4726562, -0.45239258, 2.7167969, -1.7314453, -0.15344238, -0.6821289, 2.1269531, 1.2167969, 0.9873047, 1.1376953, -2.8125, 1.0410156, 2.3222656, 0.88134766, -0.75390625, 1.2509766, -4.0234375, 1.5722656, -0.53759766, 2.5136719, 0.63916016, 0.3388672, 2.2050781, 1.3662109, 0.6923828, 1.7939453, 2.1757812, -1.5351562, 1.3095703, -0.23522949, -2.4316406, -0.80908203, -0.9995117, -1.8564453, -0.54541016, 0.88134766, -0.38598633, -0.57177734, 0.08691406, 0.953125, -0.5761719, 0.0206604, -0.1776123, -0.9736328, -0.58496094, 1.6982422, -0.008125305, -0.5678711, -1.9833984, 0.59228516, -0.38964844, -1.5761719, 2.8671875, 0.5551758, 2.171875, -1.8476562, 0.56347656, 0.81884766, 0.024810791, -0.22277832, -1.5058594, -3.0976562, -1.2197266, 0.6357422, 0.5595703, 1.7626953, 2.4375, -0.58447266, -0.90771484, -1.4345703, -2.9238281, -0.6743164, -0.12878418, -3.8417969, -0.29833984, 2.9804688, 2.8535156, -0.34301758, -3.4707031, -3.8769531, 1.4023438, -0.83447266, 1.1865234, -0.00548172, -1.8085938, -0.98583984, -1.0527344, 2.1230469, 0.06021118, -1.1777344, -0.6166992, 0.008842468, -1.1611328, 0.60595703, 0.7158203, 0.69677734, 2.6523438, 1.7333984, 2.3378906, 2.703125, 0.50390625, 0.7001953, 1.4589844, 1.0683594, -1.7294922, 1.5009766, -1.2050781, 1.5527344, 0.36743164, -0.7182617, -0.7348633, -2.5527344, 1.5458984, -1.7363281, -2.8535156]}, "B095KPPWGG": {"id": "B095KPPWGG", "original": "Brand: Lamesa\nName: Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)\nDescription: It\u2019s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.\nFeatures: 7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills.\n100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill.\nResusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up.\nFood-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F.\nIf you are not happy with your new grill mats, please contact us for a refund or replacement.\n", "embedding": [0.58251953, -0.006034851, 1.2841797, -1.15625, -0.84814453, -0.19140625, 1.2666016, -0.06427002, -0.021453857, 1.9589844, -1.1357422, -1.7158203, 0.33984375, -2.7636719, 1.828125, -1.6015625, 0.53759766, 2.0410156, 3.3730469, -0.038604736, 0.41357422, 0.26904297, -0.5, -1.6455078, 1.1337891, -0.45141602, 4.1484375, -0.5839844, 0.81884766, 0.3786621, 1.4169922, 1.8037109, -1.1494141, 2.2226562, -3.1054688, -1.8007812, -0.94384766, 2.6269531, -0.85791016, -1.3291016, -0.05432129, -3.65625, 1.0742188, 2.6367188, -2.8339844, -0.29223633, 0.42993164, 1.6230469, 0.19763184, -3.1875, 1.7128906, -0.21789551, 1.2763672, -0.060821533, -1.2675781, 1.1806641, -0.5546875, -1.6240234, 1.4345703, 0.41259766, -0.3630371, 0.27172852, -0.4892578, 0.921875, -0.9995117, -2.3417969, -0.015014648, -3.7070312, -0.08203125, -1.2871094, 0.8364258, -0.75683594, -0.17150879, 0.31152344, 0.087768555, 0.015060425, -1.2421875, -1.3525391, 0.35839844, -1.7373047, 1.1503906, 1.5263672, -0.5605469, -1.1074219, -0.27319336, -1.2041016, -3.3085938, 0.8300781, 0.11218262, 0.42236328, 0.3540039, 3.3964844, -1.5224609, -4.3554688, 1.4101562, -2.4257812, 0.48706055, -0.0065727234, -1.1474609, 1.2792969, -1.6357422, -0.49316406, -0.50390625, 1.9013672, -3.0273438, -2.2597656, 1.9638672, -0.099853516, 0.34814453, -0.29589844, 0.69189453, 0.123291016, 0.24890137, 1.6464844, 2.0722656, 1.9921875, 0.12023926, 0.08911133, 1.6025391, 1.3554688, 3.6835938, 0.22363281, 0.07904053, -2.6484375, 1.2460938, -1.0556641, 0.11584473, 3.3164062, 1.2949219, -1.0390625, -0.5415039, -2.4121094, 0.11828613, -1.3701172, -1.0136719, -1.4570312, -0.13098145, 0.25048828, -2.0820312, 0.6166992, 0.23217773, -1.0058594, 1.3173828, -0.54589844, -3.046875, 0.03262329, -2.7421875, 3.4667969, -2.5039062, -2.609375, 0.8691406, -0.87890625, 2.3359375, -1.8769531, 0.10394287, -0.83154297, 1.4199219, -0.6201172, 1.6552734, 2.1035156, -0.03652954, -1.1054688, 0.1472168, 0.09765625, 0.18127441, -2.8339844, 0.047821045, 1.171875, 0.33325195, 2.0742188, -0.56933594, -2.4726562, 1.2128906, 0.31225586, -1.0341797, -0.9350586, 0.55615234, 2.2910156, -0.06964111, -0.96435547, 0.49072266, -3.1210938, -0.05227661, 1.7246094, -0.6113281, 0.28833008, -0.38305664, -2.2988281, -0.5258789, -0.69384766, -0.19396973, 3.0703125, -1.4238281, 1.4853516, -2.6894531, -1.2402344, -0.21691895, -1.2910156, 0.56152344, -0.7470703, 0.019943237, -0.37695312, -1.6113281, -0.29760742, -1.9628906, -2.5527344, -1.6767578, 1.9990234, 1.5986328, 0.9916992, 0.113464355, -1.8085938, 2.1582031, 1.7041016, -1.8544922, -1.6074219, -0.75390625, 0.23339844, 1.4296875, 2.4316406, -0.9003906, -0.546875, -0.8515625, 3.5742188, -1.4238281, 1.1113281, 0.18139648, 1.2490234, -1.6113281, -0.51708984, 1.8808594, 0.01802063, -1.1025391, -1.0478516, 0.87890625, 0.7807617, 1.1572266, 0.23999023, -1.8623047, -0.45947266, -0.7241211, -2.0625, -0.79003906, -1.2617188, 0.51464844, -2.0175781, -0.26098633, 0.62060547, 0.8510742, -2.0722656, -0.5551758, 3.8847656, 1.3056641, 1.4697266, -1.0341797, 0.69189453, 0.14794922, -0.44604492, -2.0390625, 0.9941406, -0.69970703, 0.70214844, 0.44702148, 2.3632812, 1.1201172, -0.8666992, 2.7070312, -0.16418457, -2.2949219, -0.2763672, -0.89208984, -0.5161133, 0.9980469, -2.2148438, 1.2441406, 0.29882812, -2.390625, 0.47753906, 0.7055664, -0.4465332, -1.0351562, 2.65625, 1.0791016, -0.5283203, -2.0214844, 0.30639648, -2.4082031, -0.9868164, -0.5966797, 0.79003906, 2.3828125, 1.4599609, -1.7304688, 3.3730469, 0.45214844, -0.33984375, 2.1660156, -0.7988281, -1.9130859, -1.6181641, -0.036346436, 2.3476562, 0.32739258, 1.0449219, -1.6933594, -0.31030273, 1.40625, -1.7304688, -0.23718262, 2.4257812, 0.7607422, -0.4248047, 1.4238281, 2.1386719, -2.578125, -1.3007812, 0.9667969, -0.92089844, 0.25317383, -1.3574219, -0.5756836, 0.7006836, -0.36694336, -2.6171875, -0.6254883, 1.1259766, -0.73046875, 2.1386719, -0.08996582, 0.50927734, 0.07434082, -2.2109375, 0.18847656, -0.2524414, -2.1386719, -1.7568359, -0.87158203, 0.42993164, 0.37304688, 0.06317139, 0.54589844, 1.0625, -0.25097656, 0.6323242, -1.7255859, -2.6738281, -2.1328125, -2.390625, 0.39794922, 2.1699219, -0.4345703, 0.24707031, 0.48266602, -3.0625, 0.47265625, -0.70751953, -0.65527344, 0.5527344, -1.4658203, 0.44702148, -0.13269043, 0.96533203, 1.1474609, -0.87109375, -0.114746094, 2.0136719, -2.2128906, -2.1503906, 1.0566406, -1.3457031, 0.54833984, -1.3271484, -0.042907715, 0.07128906, -1.6757812, -2.1796875, 1.2529297, 2.3515625, -0.5029297, 2.0703125, -0.7529297, -1.5429688, 0.3684082, 2.3203125, -0.54345703, -0.5058594, 0.30004883, -2.21875, -0.027648926, -1.6328125, -0.13342285, -0.9819336, 0.03543091, -0.40454102, 3.6464844, 0.5214844, 3.5332031, -2.8828125, -1.1875, 0.097351074, 1.2890625, -0.25512695, 1.1767578, -1.6582031, 0.7050781, -0.64404297, -1.4169922, -0.02255249, 1.6025391, -1.0390625, 0.56884766, 0.4621582, 1.1337891, -1.15625, -0.25073242, -1.4628906, 0.009048462, -0.9291992, -1.2958984, 0.08721924, 0.68066406, -2.3359375, -0.92333984, -1.7910156, 3.1054688, 1.8193359, 1.3125, 1.1914062, 0.103149414, 3.7109375, 0.41796875, -0.24389648, -0.13696289, 1.0185547, 0.43847656, -1.2148438, -1.7089844, 1.40625, 1.1005859, -3.1914062, 1.234375, 0.46044922, 1.1259766, 0.81933594, 0.6386719, 1.765625, -0.7363281, 0.2668457, 3.1855469, -1.3671875, 0.88964844, -0.17468262, 0.009925842, -0.5917969, 0.8808594, 2.2636719, 1.6542969, 1.0761719, 0.09301758, 2.0546875, -1.3486328, -2.7050781, 1.2373047, 2.4648438, -0.5341797, -1.5869141, 0.94384766, -0.6699219, 1.03125, 3.3828125, -0.3762207, -0.3088379, -1.6855469, 0.765625, 1.5, -0.28125, -0.13134766, -0.98046875, -1.3974609, -0.79833984, -2.8125, 1.2470703, -1.4433594, -3.0371094, 2.0214844, -1.078125, -2.0195312, 1.2392578, 2.7363281, 0.49194336, -0.6948242, -1.1894531, 3.7988281, -0.31591797, -1.8271484, -0.69433594, 2.5078125, -0.052581787, 0.85791016, -1.2646484, -0.32202148, 1.3085938, -1.6162109, 1.2480469, 1.3095703, -3.2207031, -1.6044922, -3.21875, 1.0039062, -0.13574219, -0.3293457, -0.2368164, 1.4277344, -1.9326172, -0.36743164, -2.1269531, 1.0019531, -0.6430664, -1.8378906, 0.63720703, 0.2524414, 1.8066406, 1.15625, -0.28076172, 3.7089844, 1.0429688, -2.9414062, 0.86279297, -1.7880859, -0.2541504, -1.7539062, -2.2929688, -0.022033691, 0.40161133, -1.6279297, 3.5136719, 1.7089844, 1.8310547, 2.6992188, -0.95751953, -1.3935547, 0.16088867, -1.1523438, -0.38500977, -0.41357422, 1.9648438, 1.9951172, 1.7626953, -0.32543945, -0.034362793, -2.1699219, -3.1621094, 0.5415039, -0.62353516, -0.53564453, -0.26171875, -2.1484375, -0.19006348, -0.29956055, -0.15893555, -1.0869141, -0.3564453, 0.5449219, 1.4345703, 2.4335938, -0.7270508, 1.6816406, 0.76464844, -0.71533203, -0.46557617, -0.21838379, -1.9345703, 0.099609375, 2.6640625, -1.2685547, -0.80615234, -0.01096344, 0.3449707, 0.82958984, -0.67089844, -2.984375, 1.3242188, -1.2109375, 0.43725586, -0.23168945, 1.0117188, 1.1884766, -1.3847656, 0.1015625, 0.24133301, 0.25317383, -1.8046875, -2.6171875, 1.0527344, -0.49414062, 0.115600586, -0.35864258, -1.1142578, 2.1054688, -1.6943359, 1.5458984, -1.7080078, 1.4042969, 0.7397461, 0.31884766, 4.515625, -2.9550781, -0.8510742, 2.0253906, -2.8496094, -0.52441406, -0.11871338, -0.116882324, -1.8466797, 1.2158203, 2.1933594, -0.089904785, -2.1933594, -0.3227539, 0.4555664, -1.2158203, -1.5722656, 1.1347656, -0.921875, 0.80908203, -0.31713867, -0.11785889, 2.8671875, 0.039489746, 1.3261719, 1.3847656, -0.3371582, 0.44262695, 0.99560547, 0.29296875, -0.9638672, 1.5185547, 0.90527344, 1.0439453, -1.4550781, -0.029327393, 0.016021729, 0.953125, -3.4335938, 1.2783203, 0.16662598, 1.4912109, -1.9511719, -0.7348633, 2.0390625, 1.7109375, -0.9916992, 1.0537109, 0.77685547, -1.1484375, 0.8701172, 1.8613281, -1.0791016, 1.1689453, -0.41137695, -1.34375, 1.1875, -1.1396484, -2.7714844, -0.3251953, -0.002840042, 0.30786133, 0.8964844, -0.3022461, 0.5180664, 1.5751953, -1.4121094, -1.2646484, -1.5625, -1.5527344, 0.6411133, 0.3774414, -0.09881592, -0.20800781, -0.16003418, 4.1875, -0.92529297, -2.4453125, 1.0371094, -0.6113281, -0.27294922, 0.24023438, -1.9433594, -1.7792969, -1.5175781, -0.69384766, 1.3466797, 0.97314453, 0.64990234, 0.96875, -3.015625, 2.8125, -2.9082031, 0.5292969, -1.9970703, 0.16772461, 4.7304688, -5.078125, 0.18151855, -1.0117188, 2.6386719, 0.58935547, 0.7836914, 0.8051758, -2.1347656, -2.0292969, 1.5234375, -0.79003906, -2.6757812, -1.4169922, -0.99609375, 0.6591797, -0.28051758, -1.8466797, -1.0029297, 0.5229492, 1.0898438, 0.37353516, 1.7070312, 0.39379883, -1.2861328, -0.8798828, -3.0878906, 0.14916992, 1.2558594, 0.61035156, 0.27978516, 4.2851562, -1.7802734, -1.0175781, -1.328125, -0.54785156, -2.0195312, -2.4316406, 0.86328125, 1.3417969, -0.46142578, 0.7260742, 1.0371094, -2.1757812, 3.0332031, 0.17272949, 0.7792969, 1.6142578, 0.8491211, -1.2021484, -0.45361328, -3.5332031, 1.5253906, -3.8339844, -0.11743164, 0.47436523, -2.4511719, -0.14611816, 0.7524414, -2.9765625, -0.6166992, 0.7285156, 1.6933594, -0.019989014, 0.9628906, -0.0947876, -0.14257812, -3.3105469, -2.9121094, -0.29541016, -0.41503906, -1.8447266, -1.2539062, 0.69873047, 2.8261719, -0.36376953, 1.859375, 1.5722656, 0.6904297, -0.78271484, 2.1796875, 0.5756836, -0.22216797, 0.5605469, 0.8935547, -0.3642578, -3.7792969, 1.5371094, 0.5058594, 0.14196777, 1.9101562, -0.7685547, -3.34375, -0.3852539, 0.953125, 1.0234375, 1.8222656, 0.014930725, -1.3984375, -0.34643555, -0.0040016174, -2.2753906, 2.3652344, 1.3945312, 4.3320312, -2.1367188, 4.2421875, -2.125, -4.2929688, 3.3867188, -0.21948242, 0.19677734, -0.08721924, -2, 0.41357422, -0.95214844, -0.87841797, 0.057281494, 2.0449219, -2.1171875, 1.7734375, 0.9975586, 0.5253906, -0.81884766, 3.3378906, 0.066589355, 2.7265625, 3.5566406, -0.12249756, -1.9111328, -0.796875, -1.2919922, 0.45922852, 1.7226562, 0.022064209, -1.0712891, 0.38500977, -1.0214844, -1.5957031, 1.3183594, 1.3173828, 1.6054688, 0.8588867, 1.6738281, 3.2636719, 1.46875, 2.4160156, -0.13232422, 2.75, 0.13171387, 1.1894531, 1.0390625, 3.7226562, -0.39038086, 0.64160156, -0.8334961, 1.7998047, 0.23120117, -1.3134766, 0.6142578, -0.085754395, 0.4428711, -1.0898438, 2.1640625, -0.10296631, 0.6069336, -0.5024414, 0.39746094, -2.2929688, -0.34155273, 0.44433594, 0.5234375, 3.4980469, 0.71435547, 0.89208984, 0.3774414, 2.03125, 1.9384766, -2.3925781, 0.9682617, 1.1513672, -0.36621094, -0.9692383, 3.6269531, 0.71484375, 1.2978516, 1.3017578, 0.74853516, 1.8574219, 1.7802734, 1.1621094, 1.1298828, 0.8496094, -1.1201172, 1.671875, -2.7265625, -0.85546875, -0.77685547, 0.76708984, -1.3535156, 0.0034675598, 0.86083984, 1.0039062, 1.0712891, 0.41064453, -3.5058594, -0.24926758, 0.32177734, 0.48242188, -2.2597656, -0.4543457, -0.1932373, -2.4765625, -2.3671875, 2.7460938, 2.5449219, 0.88134766, -0.22277832, -1.25, 0.059448242, 1.4462891, 1.5166016, 0.9428711, -0.5473633, -1.2265625, 2.0683594, -0.101501465, 5.3242188, 2.4902344, 2.9746094, -0.77490234, 1.6025391, 3.671875, 0.11016846, 1.0078125, 1.8505859, -0.18041992, -1.4189453, 0.49145508, -1.9589844, -1.5429688, -2.1074219, -1.8837891, -0.25390625, 0.2836914, -1.2949219, -0.16870117, 0.6748047, 2.2851562, 2.1640625, 0.66308594, -1.7001953, 1.7890625, 2.5429688, -0.703125, -1.15625, -0.7036133, -0.7338867, -1.1025391, -0.5395508, 0.58154297, 1.7460938, 1.2226562, -1.9160156, 1.8554688, -1.5039062, -0.60791016, -0.113342285, 0.28833008, -2.7539062, -1.0546875, 1.4101562, -0.62060547, 1.1669922, 1.5791016, -1.2792969, -0.7714844, 1.9824219, -0.49365234, -1.3994141, -1.2773438, -1.5410156, 0.058746338, 3.6484375, 1.328125, -0.21862793, -2.1621094, -1.6386719, 1.8261719, -0.6640625, 2.4667969, -0.6635742, -1.7109375, -0.15551758, -1.5888672, 2.3886719, 1.5537109, -2.8691406, -0.31567383, -0.71972656, -1.1113281, -0.66845703, 1.7128906, 1.6289062, -1.1826172, -0.41235352, 3.1132812, 2.9257812, -0.15612793, 2.0390625, 2.5683594, 0.6113281, -1.9414062, 0.01171875, 0.7988281, 2.4042969, 1.6669922, 0.068237305, -1.4023438, -0.88916016, -1.5957031, -1.2578125, 0.076660156]}, "B08D8YH6W6": {"id": "B08D8YH6W6", "original": "Brand: WADEO\nName: WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nDescription: Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank\nFeatures: Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports.\n2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame.\nOur propane hose is 350PSI, High pressure resistance ensures your safety.\nEasy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill.\nOur products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc\n", "embedding": [-0.089782715, 1.0751953, 0.33276367, -0.14135742, -1.7021484, -0.78271484, 1.6757812, -0.1307373, 1.4033203, 0.28588867, 3.0761719, -0.0016307831, 3.1484375, -3.5058594, 1.2910156, 2.0703125, 0.6166992, 0.23571777, 1.9716797, 2.3964844, 3.6054688, 2.2011719, 0.8408203, 0.020141602, 0.95410156, -1.8291016, 2.3417969, -1.4433594, -1.8681641, 0.095825195, 0.4765625, -0.88183594, -1.2128906, -1.2773438, -2.8847656, 0.31958008, 1.3242188, 0.47045898, -1.2734375, -1.2607422, 0.13793945, 1.5957031, 3.4121094, 2.0039062, -2.2539062, 0.35131836, 1.0527344, -0.094055176, 0.3154297, -0.69677734, 0.17675781, 1.4970703, 0.5854492, 0.8959961, -1.2470703, 1.1728516, -0.2298584, -3.84375, 1.0878906, 0.055999756, 1.3623047, 1.3662109, -2.0019531, 0.84716797, 1.2011719, -0.69433594, -0.74560547, 0.004360199, -0.8364258, 0.8305664, -0.7636719, 1.8984375, 0.5683594, -1.3300781, -1.5673828, 0.7895508, -3.8496094, -1.3046875, 2.1601562, -0.41967773, -1.8457031, 1.4951172, 1.3066406, -1.3173828, -0.79052734, -0.09411621, -1.5576172, 1.0800781, 0.96240234, 2.4042969, -3.203125, 2.703125, -4.34375, -1.8349609, -0.07080078, 0.36938477, 0.9477539, 2.1894531, 4.2304688, 0.82128906, -0.6142578, 0.16210938, 0.4609375, 0.8261719, -2.671875, -0.6245117, -0.45703125, 0.27807617, -0.70703125, 0.06903076, -0.5527344, 1.9492188, 2.390625, -2.3417969, 0.11303711, -3.0488281, 1.0996094, -1.5292969, 1.3134766, 0.6582031, 1.5976562, -0.17077637, -0.5, 0.29614258, 2.7441406, 1.2763672, -0.20166016, 1.7285156, 2.3671875, -0.86035156, -0.27514648, 0.2915039, 2.3183594, -1.2382812, 2.875, -3.2558594, -1.9277344, -1.546875, -0.36694336, 0.022659302, -3.671875, 0.6665039, 0.63671875, -0.4724121, -4.1132812, -1.0263672, -2.4492188, 0.02671814, 1.3886719, -1.9003906, -0.63916016, -2.5058594, 0.5004883, 0.8852539, 3.6191406, 1.2324219, 1.0908203, 0.01586914, -0.17260742, -0.4375, 0.6274414, -0.93847656, -2.3710938, 2.5683594, -0.5004883, -4.21875, -0.42651367, 0.13427734, -2.6816406, 0.17370605, -0.8105469, -1.7119141, 2.5917969, -2.1230469, 1.7978516, -1.6308594, 1.5136719, 0.6035156, 1.0615234, 0.7988281, -3.7070312, -2.0234375, 0.47802734, -1.3740234, 1.8417969, 0.59765625, -2.7324219, -1.3916016, 2.4707031, 0.33520508, -0.64990234, 1.4130859, 0.44750977, 2.1757812, 0.6738281, 0.103393555, -4.5, -0.47607422, -0.8989258, 1.5927734, -2.3535156, -1.6210938, 1.6660156, 0.8144531, -2.3046875, 0.5229492, 0.78222656, -0.34570312, 0.65722656, 0.10809326, -1.0693359, 0.7705078, 2.703125, -1.6669922, -1.1601562, -0.6386719, 1.578125, 1.2246094, 2.4765625, 0.77441406, -1.8818359, -0.016052246, 0.69091797, 2.9121094, 2.0136719, 0.0027275085, -0.6665039, 2.5234375, -0.56152344, -1.0820312, 0.71240234, 1.0419922, 0.5083008, -0.7211914, -1.8720703, 2.0507812, 0.7753906, -0.50878906, 0.16918945, 3.65625, 1.9833984, 0.045013428, -1.5527344, -2.4726562, -1.1845703, -1.328125, -0.9296875, 2.5839844, -0.09674072, -0.56347656, 0.48046875, -0.31298828, -0.8227539, -3.5019531, -1.4423828, -0.3071289, -0.6088867, 1.1386719, 0.5888672, -0.016021729, 2.4316406, -3.2285156, 2.4726562, 0.090148926, 0.6225586, 0.26879883, 1.3876953, -2.7617188, -1.2558594, -0.70166016, -0.89160156, 2.6015625, 1.1533203, -1.0830078, 0.38964844, 2.4804688, -0.72558594, 1.703125, -0.13500977, 1.0380859, 2.4980469, -1.5449219, 2.5605469, -1.7333984, 0.2854004, 1.6533203, 2.2519531, 0.072631836, -1.4570312, 0.12731934, 2.3164062, 0.8901367, -1.9033203, 3.109375, 4.0742188, 0.5834961, 0.9506836, 0.67822266, 0.06286621, 0.67871094, -0.55371094, 0.32202148, -2.9589844, 1.4707031, 3.40625, 1.2255859, 0.2685547, -2.0195312, 1.5712891, 2.6152344, -1.7324219, 0.6542969, -0.47021484, -0.9536133, -3.015625, -1.4306641, 3.0546875, -0.6010742, -0.69384766, 0.2446289, -0.2244873, 0.09918213, 1.4335938, -0.91796875, -1.0507812, 0.63964844, -2.4765625, 0.5410156, 0.87890625, 0.9277344, 1.765625, -1.1162109, 0.6801758, -1.2470703, -1.0771484, 1.8808594, -0.8666992, -2.8359375, -0.8935547, -1.1298828, -0.7661133, -2.1601562, 0.54296875, 2.3378906, 1.1259766, -0.96533203, 0.6357422, 1.9794922, 1.2529297, -1.53125, -0.47705078, 1.8613281, -1.3193359, -2.5234375, 0.37182617, -0.11206055, -0.3544922, 1.9335938, -0.68310547, -0.22729492, 1.75, 1.7236328, -1.3662109, -0.09503174, 0.11859131, -0.55810547, 1.8427734, -2.328125, -1.1914062, -0.37548828, 0.9111328, -0.2800293, 0.7109375, -2.7792969, -1.9619141, 0.29345703, -1.3554688, 0.33496094, 0.4645996, 1.4541016, 0.40283203, -0.9223633, 0.68603516, -2.9453125, -2.5175781, -1.6269531, 0.38378906, 0.078125, 0.67578125, -3.8398438, -0.24951172, -0.6147461, 1.1396484, 0.16540527, -0.9511719, -0.88671875, -2.28125, 1.3271484, -1.4326172, 0.21191406, 0.8652344, -0.47338867, -0.55371094, 1.2011719, 1.1455078, -0.9589844, -1.28125, 0.020263672, -1.0419922, 0.3857422, -2.9824219, 1.3583984, 0.8935547, 1.4804688, 0.52783203, -0.6166992, 1.9814453, 1.7587891, -0.32470703, 2.3945312, -0.6010742, -0.73779297, -4.2734375, -1.4628906, 2.0566406, 2.640625, 1.6689453, 0.39672852, 1.0595703, 1.6572266, 1.1474609, -0.16308594, -0.80371094, -2.5839844, 3.2714844, -3.2089844, -0.77490234, -1.4638672, 0.9003906, -5.4492188, 1.9638672, 0.56396484, -0.09088135, 2.90625, -0.39233398, 2.3457031, -0.28442383, -0.34765625, 1.8564453, 0.8100586, 1.8496094, -1.0605469, 0.18188477, 0.00015938282, -0.9042969, -0.7207031, 1.3730469, 2.0390625, 2.0351562, 0.19091797, 0.33276367, -1.7324219, 0.8208008, -0.67089844, 1.9658203, 2.0664062, 1.1933594, 0.002412796, 0.9790039, -0.37475586, -0.7036133, 0.3293457, 0.9277344, -2.0410156, 0.107788086, 2.6835938, -1.5449219, 0.88378906, -2.2988281, 0.32250977, -1.2734375, 1.3974609, 0.9550781, 0.76953125, 0.3762207, -1.171875, 0.39941406, -1.4941406, 1.6884766, 0.23022461, 0.9736328, -1.5566406, -2.2832031, -1.5615234, -1.0185547, -1.5429688, 0.7841797, -1.1835938, 1.6455078, 3.7851562, -0.3034668, 0.14892578, -0.73046875, 1.7001953, 0.2902832, -1.3740234, -1.6708984, -0.5913086, -0.5625, 0.29711914, 0.18334961, 0.70214844, 1.046875, -2.5039062, 0.5444336, 0.41674805, -0.6713867, 0.067871094, -0.88183594, 0.09442139, -2.5957031, -1.4296875, 0.026351929, -0.1743164, 2.8320312, 1.5390625, -1.7529297, 1.0009766, -2.0234375, -0.20727539, -0.3071289, -5.03125, 0.7919922, -0.77441406, 1.8232422, 2.7675781, 0.64404297, -0.21459961, 0.8925781, 2.1777344, -3.6640625, -0.4567871, -1.9853516, 0.25805664, -2.5898438, -0.6142578, 1.8642578, 3.2109375, 0.2232666, -0.5307617, 1.2519531, -3.1347656, -0.42895508, 1.0205078, -1.2783203, 1.65625, -0.09942627, 0.071899414, -0.9716797, 0.15344238, 1.6953125, 0.04840088, -2.3261719, -3.0546875, 1.5048828, 2.25, 0.9580078, -0.9091797, 1.0849609, 2.4785156, -1.2822266, -0.80322266, 0.43920898, 4.21875, -0.4333496, -2.3085938, -0.6669922, -0.8203125, 0.2541504, -1.3134766, -0.07537842, -0.3161621, -0.3762207, 1.4316406, -0.7373047, 0.6538086, 1.6914062, -1.7763672, -4.5, -0.75390625, 0.25463867, -2.9316406, -0.25268555, -0.12670898, 0.5830078, -1.4599609, 0.4519043, -2.0839844, 0.3955078, 0.4970703, 0.1081543, -2.1777344, 1.1376953, -1.5527344, 2.6269531, 0.8881836, -2.5019531, -0.5761719, -0.6142578, 1.1933594, -0.24475098, -0.94970703, -1.3867188, -1.6523438, -0.15673828, 1.828125, 1.5214844, -1.5556641, 0.6699219, -0.5102539, -0.9370117, 0.43603516, 1.9472656, -1.6835938, -0.85253906, 0.21484375, -1.1826172, 4.3476562, -2.9453125, 1.0537109, -1.6601562, -1.4287109, -4.109375, 2.3203125, 1, 0.37548828, -1.0136719, 1.4375, 3.0410156, 2.1054688, -0.22668457, -0.5683594, 0.6801758, -0.09448242, -0.39770508, -0.5024414, 1.5087891, 0.8535156, 1.359375, 1.6875, 1.6386719, 1.5361328, -0.5966797, 1.2109375, -1.0761719, 0.58447266, 0.33691406, 0.6489258, -2.140625, -0.67041016, -1.0839844, 2.8027344, -1.6523438, -2.6953125, 1.4394531, 2.9824219, 0.9121094, 0.26464844, -0.47680664, -1.1845703, 0.1538086, -2.5273438, -1.9511719, 0.5048828, -1.4111328, -0.22143555, 0.2919922, 0.7963867, 0.23278809, 0.77978516, 2.1738281, 0.0335083, 0.055541992, -1.3232422, -1.9160156, -3.0371094, -0.3803711, -3.6113281, -2.7929688, 0.06161499, 0.91845703, 4.1953125, -0.23217773, 1.4638672, -1.4208984, 0.14538574, -0.66552734, 0.67285156, 1.9296875, -1.3476562, 0.3942871, 4.4609375, -0.79052734, -2.5585938, -1.2363281, -0.5800781, 0.6850586, -0.69091797, 1.7001953, -1.1210938, -1.2783203, -0.54785156, -2.9667969, -5.171875, -0.37304688, 2.1542969, 1.2724609, 0.13049316, -1.3837891, -2.5976562, -0.12988281, -0.19055176, -1.2587891, -1.8232422, 1.0263672, -2.1132812, -1.3164062, -0.69921875, 0.08880615, -0.08343506, -0.59228516, 0.51953125, -1.1689453, 0.5317383, -3.0957031, -1.3046875, 1.1738281, -0.20361328, -1.1601562, -0.5859375, -3.0644531, -0.17663574, -0.9736328, 0.30517578, -2.6074219, 0.9355469, -3.546875, 1.4121094, 0.16748047, -1.2871094, 0.4428711, -0.16223145, 0.51953125, -0.33154297, 2.5976562, 1.7939453, -0.20922852, -0.9707031, -1.1972656, -0.1496582, 0.20678711, 0.55810547, 1.0166016, 2.1894531, 1.8535156, 2.9628906, -1.9248047, -1.5615234, -1.9863281, -0.7294922, 0.40161133, -2.2773438, 2.5351562, 0.5307617, 1.9072266, 1.4775391, 0.6425781, 0.21350098, -2.0957031, -0.2590332, 0.4260254, 0.9897461, -1.8242188, 2.8125, -0.033569336, -0.7792969, -3.4785156, 0.23852539, 3.4375, 3.1289062, -0.5942383, 0.6542969, 0.049926758, 0.15405273, -1.3369141, -0.016830444, 1.65625, 0.19335938, 1.8447266, -2.140625, -1.1611328, 1.8564453, -2.0820312, 0.03652954, 1.2011719, -0.6669922, -0.92333984, -0.055236816, 0.36206055, -4.1679688, -0.004737854, 0.32543945, -0.20300293, -1.4306641, 1.0546875, 0.94873047, -2.6523438, 1.0693359, 0.50683594, -4.5898438, -1.6640625, 2.3808594, -0.89404297, -0.4543457, -0.14025879, 3.1152344, -1.1992188, 0.6333008, 0.6328125, -0.60302734, -0.020690918, -1.3691406, -1.1162109, -0.6347656, 0.81152344, -1.9492188, 0.19848633, 1.3125, -0.3935547, 1.2763672, -1.8046875, 1.7949219, 2.5761719, -0.42773438, 4.0742188, 1.3486328, 1.2587891, 2.59375, 2.6347656, 1.4111328, 0.5107422, -0.31445312, 1.2304688, 0.21862793, -0.6064453, 1.0683594, -2.2949219, 0.9790039, -0.61035156, 1.0869141, 1.4824219, 0.5498047, 3.4511719, -5.0546875, -0.4814453, -2.2402344, -0.50683594, -2.4960938, 1.2871094, -1.1494141, -0.61376953, -0.4963379, 2.6816406, -0.76904297, 3.3125, -0.49194336, 1.4863281, 0.6230469, 2.1992188, 1.1181641, -1.2480469, -1.6337891, -0.1595459, 1.3867188, 0.6201172, -0.033721924, -0.79785156, 0.7089844, 0.73046875, -0.8364258, 0.052642822, 0.42895508, 0.12347412, 0.17358398, -2.4238281, 2.1035156, 2.078125, 0.6694336, 2.8984375, 0.6376953, -0.07989502, -2.3769531, 1.4003906, 0.38549805, -1.3828125, 1.2402344, -3.0664062, 1.7929688, -1.5996094, -1.2158203, -2.2050781, 0.0234375, 0.7792969, -1.3466797, 1.5322266, 0.39746094, -0.86621094, -0.19091797, 1.8447266, -1.6601562, 0.7167969, 0.28271484, 0.045440674, 2.1328125, 0.9038086, 0.5161133, -0.16784668, -1.5839844, 4.703125, 0.25952148, -0.5810547, 1.2578125, 1.7324219, 0.4284668, 0.9511719, -0.296875, -0.70947266, 2.0214844, 0.92041016, 0.63623047, -0.1217041, -2.1445312, -0.89404297, 0.024307251, -1.0761719, -0.6323242, -1.640625, 0.6201172, -0.19763184, -1.9072266, -0.3076172, 0.21484375, -1.2021484, 3.5390625, 3.5351562, -1.1738281, -0.63183594, -1.2578125, 0.66064453, -2.5566406, 0.77685547, 1.3398438, -2.4199219, -0.81103516, -3.2851562, -1.0673828, 0.20129395, -0.7729492, -2.390625, 0.51660156, -0.77441406, -1.7158203, -0.72509766, -1.9355469, 1.6816406, 2.703125, 1.2363281, 0.18286133, -0.22888184, -1.1689453, 1.7988281, -1.1152344, -3.0351562, 0.6147461, 0.69384766, 2.3398438, 2.1953125, -2.5292969, -1.109375, 0.95751953, -1.8164062, 1.4091797, -0.20227051, -2.859375, 0.796875, 2.8847656, 1.2607422, 1.4433594, -1.6777344, -1.3662109, 0.8691406, 1.2988281, -3.1972656, -0.37841797, 0.061187744, 0.11077881, 1.8515625, 5.2851562, 2.6972656, -0.24169922, -0.65527344, 4.03125, -0.3017578, -2.2597656, 1.828125, 0.14257812, 1.1201172, 1.8076172, 1.1074219, 1.9140625, 0.48168945, -1.4023438, -2.5390625, 1.1328125]}, "B00YDST5EW": {"id": "B00YDST5EW", "original": "Brand: onlyfire\nName: onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others\nDescription: The onlyfire 14451 igniter fits Models of following BBQ gas grills:\u00a0

          Uniflame Part Numbers: 55-07-448;

          Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

          Amana Part Numbers: FCTG3007029;

          Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

          Suitable Models of BBQ gas grills:
          Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

          Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

          Exact-fit parts !Cooks better! Durable construction and Lasts longer!

          A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

          NOTE: The \"Fits\" BRAND and MODEL # Listed above are Reference ONLY!

          Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

          \nFeatures: 7/8\" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet \"AA\" Battery Push Button Ignitor (Battery not include)\nFits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP\nFits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650\nFits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603\nSuitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372\n", "embedding": [-2.6660156, 0.82714844, 0.35302734, -0.49658203, 1.9072266, 0.9926758, 2.3261719, -1.7548828, 1.4794922, 0.047729492, 1.6162109, -1.625, -0.19018555, -2.9628906, 0.49731445, 2.8867188, 2.8789062, -1.2841797, 1.2685547, 1.7167969, -0.032989502, 3.4667969, 0.9711914, -1.2685547, 0.08331299, 1.8984375, 4.4296875, -2.6640625, 1.7763672, -2.9140625, 0.9589844, -1.4726562, -1.9003906, 1.5322266, -3.7890625, 0.25073242, -0.44921875, 0.7915039, -3.7246094, 1.4980469, 0.83740234, 1.2910156, 1.5957031, -0.45043945, -1.9726562, -0.6621094, 2.3789062, 0.73583984, -1.6240234, -1.6796875, 1.9267578, 2.71875, 0.075683594, 1.1904297, -1.1738281, 4.40625, -1.0839844, -1.7666016, 0.26123047, -0.032592773, 5.1601562, -0.15893555, -1.6474609, 1.2958984, -1.2558594, 1.3632812, 0.3017578, 0.828125, 0.3864746, -1.0742188, 2.2617188, 0.17687988, 0.2019043, 0.36499023, 0.29956055, 0.45751953, -4.1328125, 2.0644531, -1.5683594, -0.4428711, -1.2236328, 1.8964844, 0.08660889, -4.0546875, 1.8115234, -1.0175781, -1.1982422, -0.47729492, 3.3046875, 0.8330078, -1.0107422, 0.12756348, -1.4980469, -3.4492188, 2.7539062, -1.7988281, 1.2949219, 1.1494141, -1.5283203, 1.4306641, -2.7070312, 0.035064697, -2.2597656, -1.2460938, -0.94091797, -0.25805664, 0.88671875, 1.5869141, -3.0546875, 0.06817627, -0.65527344, 1.0634766, 1.5654297, -0.2166748, 0.4963379, -0.70751953, 1.1376953, -0.6538086, 1.8779297, 0.32958984, 4.7578125, 0.08294678, 1.3554688, -2.421875, -1.6386719, -0.7246094, -1.6542969, 0.46313477, 4.7070312, 0.43896484, -0.6040039, -2.7832031, 4.140625, 0.33374023, -1.1171875, -3.390625, -2.7597656, -2.3300781, -1.7304688, -0.83984375, -4.1953125, 0.27197266, 1.0800781, -1.78125, -3.3359375, 1.4511719, -1.6513672, 0.98339844, -0.8588867, 0.52441406, 3.5371094, -1.6289062, -0.81103516, -3.5976562, 2.8222656, 0.5385742, -1.6728516, -1.9345703, 2.8789062, 1.3847656, 0.89697266, -2.34375, 0.5180664, 0.058898926, -1.7558594, -0.9472656, -1.0146484, -0.5493164, 1.5380859, 2.109375, -0.265625, -1.0537109, 0.5419922, 1.4052734, -0.025772095, -1.5761719, -3.0546875, 2.625, 0.85058594, 0.87109375, -2.4980469, -0.86865234, 0.9350586, 0.94140625, 1.3359375, -0.62402344, 1.4472656, 0.3083496, 1.1875, -0.35424805, 1.6201172, 1.09375, 0.19177246, 1.4863281, -0.77490234, -0.5908203, -0.98095703, -1.2988281, -0.35839844, -0.8076172, -1.7890625, -0.9003906, -1.5136719, -0.28198242, -1.7333984, -2.9082031, -1.5302734, -0.29833984, 1.0683594, -0.05239868, 1.1279297, -1.25, 1.5644531, -1.6875, 1.5664062, -2.3574219, 2.5761719, -0.6171875, 0.2939453, 2.84375, 0.53125, -0.78759766, 0.6904297, 3.5742188, 0.7451172, 4.0546875, -0.025787354, 1.3925781, -2.296875, -2.8574219, 2.7558594, 0.69091797, -1.3974609, -0.55615234, -0.07421875, 2.1679688, 1.3007812, -1.8671875, 1.6787109, -0.28735352, -1.1943359, -3.6074219, 0.6635742, -0.49658203, -1.2744141, -0.14892578, -2.78125, 0.15856934, 1.1611328, -1.2685547, 0.62841797, 3.0253906, 0.67041016, 1.6728516, -3.1738281, -0.07141113, 0.14562988, 1.3857422, -1.5195312, -3.2226562, 2.3222656, -0.55322266, -0.5366211, 1.9316406, -0.10723877, -2.2089844, 2.484375, -0.5083008, -1.0595703, -1.0683594, 1.4111328, -0.3400879, 1.0712891, -0.103149414, 2.1269531, 0.005683899, -0.9741211, 2.1054688, 3.359375, -1.2519531, -0.82958984, -1.9746094, 3.640625, 0.03677368, 0.30273438, -0.21057129, -0.921875, -2.2109375, -0.011795044, 1.1533203, 3.4921875, -0.84765625, -3.7871094, 4.5039062, -1.25, 0.8691406, 2.1015625, -1.0058594, 0.6503906, -0.083862305, 1.2304688, 2.4550781, 2.1171875, 1.6103516, 1.4863281, 0.5878906, 2.15625, -2.4472656, 0.064331055, 2.6464844, -0.5307617, -0.1850586, -1.0380859, 2.8105469, -1.2783203, -2.2304688, 0.015930176, -1.9365234, 3.3261719, -1.53125, 0.7573242, 1.6416016, -0.39404297, -0.77490234, -1.6660156, 0.5776367, -2.5644531, 1.0458984, -0.59521484, -0.18774414, -1.3642578, 1.3623047, 0.44628906, -5.078125, -2.9335938, -0.02949524, -3.3945312, -3.2988281, -0.5629883, -1.1621094, -2.2578125, 1.1699219, -3.6621094, 2.6289062, -0.08959961, -1.1630859, -1.0117188, -1.2363281, -0.3244629, -1.6513672, -0.72021484, 2.2167969, 0.7993164, -1.6142578, 0.90234375, -0.07080078, 1.3730469, 1.7353516, 0.15930176, 0.3544922, 0.02947998, 0.09442139, -2.3144531, 0.2746582, 0.9824219, -1.2001953, -0.72558594, -2.4433594, -1.0429688, -2.640625, 1.1435547, 0.16174316, 1.2353516, -3.1035156, -0.27416992, 0.2734375, -0.7006836, 2.9355469, -0.6640625, 2.0273438, -1.8476562, -0.29711914, 0.95214844, -2.9726562, -2.3300781, -0.77685547, 1.1552734, 0.5649414, -3.0742188, -1.4560547, -1.5888672, 0.9741211, -1.1494141, -2.0175781, -0.7807617, -1.1210938, 3.1835938, -0.2536621, 1.1152344, 0.4423828, 0.6542969, 0.14697266, -2.0996094, -1.0410156, -1.8085938, -0.5415039, 0.12512207, -2.1132812, 0.97558594, -1.0673828, -0.4152832, -1.2158203, 1.5878906, 0.06085205, 0.52490234, -2.6601562, 1.6640625, 0.65283203, -3.5097656, 1.9238281, -0.30029297, 0.7919922, -4.0195312, 0.7871094, 3.1621094, 0.43017578, 3.1503906, -0.09716797, 0.6816406, 1.3134766, 0.15283203, 0.22351074, -0.7265625, 0.4038086, 1.9121094, -0.38745117, -2.9238281, 0.7451172, 0.5209961, -1.6308594, -0.21313477, 1.9570312, 0.6699219, 3.1640625, 1.1220703, 1.0839844, 2.3457031, -0.12963867, 0.61865234, 0.017288208, 0.72216797, -1.7763672, -0.40063477, 0.58447266, -1.4667969, 3.0234375, 0.84375, -0.5883789, 1.1132812, 2.1113281, 1.0712891, -1.5253906, -0.119262695, 1.0146484, 2.5078125, -0.16235352, 1.7792969, -1.1103516, -0.056365967, 1.1210938, 0.77685547, 0.16223145, -2.3007812, -1.8427734, 2.2363281, 1.6269531, -0.91503906, -0.30322266, 0.7397461, 1.078125, 0.5366211, -0.4790039, -1.4580078, -1.5761719, -1.2578125, 1.4277344, -0.29077148, -2.5097656, 0.6738281, -0.8828125, 0.41210938, -0.80322266, 0.40161133, -1.1865234, -1.3974609, 0.6723633, 2.3691406, 0.32226562, -0.6254883, -1.0087891, -2.4882812, 2.7304688, -1.0742188, -0.6694336, 1.703125, -2.7773438, 1.0507812, -1.3476562, 0.03366089, -0.024291992, 2.2148438, 3.5117188, 1.0605469, -1.1748047, 0.39624023, -3.8144531, -0.66748047, -0.83251953, -1.1269531, -0.5029297, 3.7148438, 1.5556641, 1.8105469, -1.5927734, 2.8632812, -0.23474121, 1.5166016, 4.2851562, -4.5859375, -1.8886719, -1.1894531, -6.1367188, 2.6445312, -0.27490234, 0.60498047, 0.11383057, 1.8173828, 0.12695312, 3.1621094, -1.7822266, -2.1210938, -1.9746094, -1.7978516, 0.55029297, 1.0136719, -2.5410156, 3.2089844, 0.18640137, -2.4707031, -3.9140625, -1.0185547, -1.5556641, 1.2998047, 1.1855469, -4.09375, 1.8105469, -0.4699707, -0.2376709, -0.6386719, -1.4921875, 2.9296875, -0.61572266, 0.21508789, -1.6621094, 2.6074219, -0.20825195, 2.0117188, -0.47851562, 2.0644531, 2.3945312, -1.0751953, 0.19897461, 0.5703125, 2.2402344, -0.07751465, -4.1289062, -1.7333984, 1.3818359, -0.3552246, -1.265625, 0.30981445, -0.90722656, -2.9960938, -0.22045898, -0.35302734, 1.7753906, 2.9863281, 1.0839844, -1.0615234, -1.3017578, -2.0898438, -1.7832031, -0.11651611, -0.86279297, -1.0908203, -1.2177734, 0.30688477, -1.5126953, 1.34375, -2.3632812, -4.1523438, -4.8398438, 3.1425781, 0.11828613, 1.2822266, 2.6054688, -1.3134766, 1.0478516, -0.55859375, -0.6894531, -0.29907227, 0.29833984, 0.05911255, 0.81884766, 1.0263672, 0.2322998, 0.4975586, -0.37963867, 1.7480469, -0.7709961, 0.6298828, -1.8486328, -1.0117188, -3.8222656, -0.2697754, 1.4960938, 0.36108398, 3.0449219, 0.7246094, 1.6835938, 0.91552734, -0.5751953, -0.69628906, 0.7402344, 3.28125, 0.06008911, 2.1933594, 3.59375, 2.8515625, 0.7441406, -0.3400879, 0.7451172, 0.4794922, -3.0136719, 0.31469727, 1.4873047, 0.78125, -0.9897461, 0.7011719, 2.4902344, 2.0195312, -1.3330078, 2.4179688, -0.42089844, -2.8535156, 2.0878906, 1.2441406, -2.2695312, -0.05130005, -1.4003906, -0.44433594, 1.0595703, 0.7109375, -2.390625, -2.6308594, 2.8496094, -1.140625, -0.12609863, 0.8930664, -0.4506836, 1.2373047, -1.6669922, -1.0654297, -0.57421875, 2.4667969, 0.28125, -0.7426758, 0.23950195, -0.21801758, 1.75, 0.3852539, -0.22180176, -1.2304688, 1.6142578, 0.62060547, -2.2089844, -0.33666992, -2.0253906, 0.4753418, 1.2919922, 2.03125, 0.2553711, 2.7578125, -1.2714844, 0.60791016, -2.0917969, 0.7265625, -3.0136719, 1.2285156, -0.50439453, 1.0605469, 1.1728516, -1.7753906, 1.6513672, -1.3925781, 2.1152344, 0.34179688, 2.2792969, -0.12426758, 0.7836914, -1.2490234, -0.066711426, -1.4091797, -4.0117188, -3.5839844, 0.3791504, 1.4873047, 0.8076172, 0.3798828, 0.16345215, 0.6875, 1.1484375, 0.46289062, -2.9179688, 0.11035156, -1.8007812, 0.048461914, 2.3242188, -0.2841797, -1.8457031, -0.13476562, -0.18566895, 0.91748047, 1.4277344, -3.5507812, -0.6123047, 2.1699219, -2.625, -0.29467773, 1.3203125, 0.8520508, 0.015258789, -0.70654297, 0.9790039, -3.1308594, 1.1132812, -2.8085938, -1.8515625, 1.1240234, 0.46826172, 1.3916016, -0.8178711, -1.171875, 1.5625, -2.1347656, 1.6445312, -1.2773438, 0.27661133, 1.0117188, -1.4667969, -1.9628906, -2.0136719, -1.0527344, 1.2480469, 1.859375, -0.38330078, -2.1210938, 1.4492188, -4.4492188, -2.4316406, 0.31323242, -0.46264648, 1.15625, -2.0761719, 1.4306641, 0.18713379, -0.084106445, -0.14111328, 1.9951172, -1.0117188, -1.2080078, 0.9399414, 0.031982422, 2.9316406, 0.90527344, -0.9501953, -0.80859375, 0.24890137, -0.004261017, -0.86572266, 1.0146484, -0.69140625, -0.7788086, -0.6767578, 0.2355957, -1.0390625, 3.2851562, 3.5664062, -2.4335938, -0.8803711, 0.1508789, 1.9580078, 1.8896484, 2.0820312, 1.046875, 0.84375, 0.5600586, 4.4648438, -0.69433594, -2.9570312, 1.2509766, -2.1464844, 0.42089844, 1.2197266, -2.25, -1.2705078, -1.3320312, -1.0654297, -0.47631836, -0.8720703, -2.1074219, 2.1015625, 0.18273926, -0.06530762, 1.4892578, 2.3164062, 1.1767578, 2.2832031, 2.2734375, 2.375, -0.3269043, -0.72802734, -0.13024902, 0.2626953, 0.41870117, -1.9033203, 0.08459473, -0.22509766, 0.69677734, 0.41381836, 2.7558594, 0.6821289, 0.86572266, 0.07800293, 2.2226562, 0.2841797, 1.9941406, 2.5976562, -0.07977295, 0.054870605, 2.5078125, -1.1181641, 1.4345703, 0.8725586, 0.6464844, 1.1572266, -2.671875, -0.1427002, -2.5957031, -0.09326172, -1.3447266, -0.9160156, 1.6181641, -3.0234375, 0.56884766, 0.26464844, 3.1171875, -3.5878906, -0.7626953, -1.3916016, 0.1854248, 1.4648438, 0.4165039, 3.625, -0.2052002, 1.0517578, 1.4902344, 1.2958984, 2.96875, -4.3671875, 0.5883789, -0.43725586, -0.06567383, 0.72314453, 0.60058594, 0.5625, 1.2050781, 0.8544922, 2.4804688, 1.2070312, -1.46875, 2.4667969, -4.2109375, 2.4003906, 0.5957031, 2.9609375, -0.3034668, -1.390625, 2.5566406, -1.3652344, -5.890625, -3.6269531, 2.671875, -0.5336914, -0.04324341, 1.0830078, -4, 2.0976562, 2.7207031, 0.8408203, -1.0644531, 2.2636719, 0.19555664, -0.77246094, 0.63916016, 0.5078125, -0.35791016, 0.22827148, -0.89746094, -2.7167969, 0.80908203, 2.7890625, 1.9443359, 0.5004883, 2.0703125, -0.6279297, -1.7177734, -2.1113281, 1.8613281, -0.9921875, 0.0647583, -1.7363281, 1.0664062, 1.8095703, 1.8447266, 0.7661133, -1.6435547, -1.8515625, -0.53515625, -0.30493164, 1.4697266, -0.97314453, -2.7910156, -0.16442871, 2.328125, -0.8676758, -2.4296875, 2.7714844, 1.4365234, -0.93603516, -0.85058594, -0.69970703, -1.5449219, 2.1699219, -0.4362793, -1.8769531, -1.5126953, -2.421875, -0.4272461, 0.6459961, -1.8574219, 2.015625, 0.107299805, 1.8466797, -2.7207031, -0.2878418, 2.1835938, 0.7138672, -0.27734375, 2.1113281, -0.6894531, -2.046875, 1.1132812, -2.1230469, -0.76660156, 3.1035156, -1.1035156, 0.8466797, -2.5136719, -0.87597656, -0.89697266, -0.47436523, -2.2792969, 0.62939453, 3.3984375, 1.4228516, 1.34375, -2.0546875, -1.3388672, 0.47216797, -0.5419922, 2.7070312, 0.42895508, -1.0351562, 0.072021484, -1.9384766, 4.3789062, -1.0488281, -0.9116211, -1.1552734, -1.3632812, -0.51464844, 0.7192383, 0.5878906, 0.80615234, 2.2636719, 1.3876953, 2.5859375, 2.6601562, -0.7939453, 2.6582031, 2.7539062, 0.7158203, -1.2167969, 0.5761719, -1.8867188, 0.8442383, 0.4597168, -1.3867188, 1.1035156, -0.62353516, 1.515625, -0.625, -1.0292969]}, "B08TBJCZCG": {"id": "B08TBJCZCG", "original": "Brand: Supsiah\nName: Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)\nDescription: \nFeatures: \ud835\udde9\ud835\uddf6\ud835\uddfb\ud835\ude01\ud835\uddee\ud835\uddf4\ud835\uddf2 \ud835\uddd5\ud835\ude02\ud835\ude00\ud835\uddf6\ud835\uddfb\ud835\uddf2\ud835\ude00\ud835\ude00 \ud835\udde6\ud835\ude02\ud835\uddf6\ud835\ude01\ud835\uddf0\ud835\uddee\ud835\ude00\ud835\uddf2 \ud835\udde6\ud835\ude01\ud835\ude06\ud835\uddf9\ud835\uddf2: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life.\n\ud835\uddd9\ud835\uddff\ud835\uddf2\ud835\uddf2 \ud835\uddd4\ud835\ude00\ud835\ude00\ud835\uddf2\ud835\uddfa\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd5\ud835\uddd5\ud835\udde4 \ud835\uddda\ud835\uddff\ud835\uddf6\ud835\uddf9\ud835\uddf9 \ud835\uddda\ud835\uddff\ud835\uddee\ud835\ude01\ud835\uddf2: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use.\n\ud835\udde7\ud835\ude04\ud835\uddfc \ud835\uddd6\ud835\uddfc\ud835\uddfa\ud835\uddfd\ud835\uddff\ud835\uddf2\ud835\ude00\ud835\ude00\ud835\uddf6\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9 \ud835\uddd5\ud835\uddfc\ud835\ude05: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient.\n\ud835\uddd8\ud835\ude05\ud835\uddfe\ud835\ude02\ud835\uddf6\ud835\ude00\ud835\uddf6\ud835\ude01\ud835\uddf2 \ud835\uddd6\ud835\uddff\ud835\uddee\ud835\uddf3\ud835\ude01\ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\ude00\ud835\uddf5\ud835\uddf6\ud835\uddfd: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production.\n\ud835\uddd8\ud835\uddee\ud835\ude00\ud835\ude06 \ud835\ude01\ud835\uddfc \ud835\uddd4\ud835\uddf1\ud835\uddf1 \ud835\uddd6\ud835\uddf5\ud835\uddee\ud835\uddff\ud835\uddf0\ud835\uddfc\ud835\uddee\ud835\uddf9: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.\n", "embedding": [-1.1503906, 1.2314453, 0.46289062, -0.90234375, -1.7421875, 1.1640625, 2.2929688, -2.7226562, -1.8320312, 1.9042969, 1.6660156, 0.2434082, 1.6552734, -4.375, 0.25341797, -0.2409668, 0.43725586, 0.58984375, 2.9316406, 1.0410156, -0.45507812, 0.5234375, 1.1445312, -1.4736328, 0.84814453, 0.0034599304, 4.921875, -2.1738281, 0.7426758, -1.4169922, 1.2109375, -0.28686523, 1.5234375, 1.4882812, -2.1386719, -0.112854004, -1.9990234, 0.81933594, -0.7709961, -0.13513184, -1.1806641, -2.2617188, 0.49853516, -0.25708008, -2.2480469, -0.03366089, -0.94384766, -0.46240234, -0.6894531, -2.3457031, -0.5576172, 0.35498047, 0.6176758, 2.1484375, -2.9296875, 0.73876953, -0.53271484, -1.7373047, 0.17102051, -0.14916992, 3.109375, -0.24719238, -0.79589844, 0.9658203, -0.041870117, -2.6953125, -0.3630371, -0.36157227, 0.37304688, -0.57373047, 0.08496094, -1.4287109, -2.3886719, 1.3457031, -0.76416016, -1.1894531, -2.0078125, 2.546875, 1.0664062, 0.6118164, -2.0722656, 1.8994141, 1.7294922, -0.85839844, -0.95703125, 1.5244141, -1.4316406, -0.36108398, 0.052612305, 0.76708984, -1.1152344, 1.3730469, -1.7373047, -6.5820312, 1.6064453, -2.0585938, 0.7573242, -0.6640625, -0.82373047, 1.3369141, 0.37426758, -0.57714844, -0.060150146, 0.39648438, -2.3007812, -1.6113281, 0.90771484, 1.0244141, 0.097351074, 1.4267578, -1.1025391, 0.079711914, 2.1953125, 0.39624023, 0.7817383, 0.7758789, -0.48583984, 1.1914062, 2.5214844, 1.3144531, 3.2929688, 0.15429688, 0.04916382, -2.0332031, -1.0996094, -0.54296875, -0.86035156, 2.0742188, 4.4726562, 0.13256836, 1.6513672, -0.4489746, -0.47338867, 0.35473633, -2.1582031, -1.8095703, -0.8881836, -1.1298828, -1.1777344, 1.6123047, -2.8476562, 0.84277344, 2.7128906, -2.0273438, -1.34375, 0.060821533, -1.8447266, 1.6064453, -0.40405273, -2.015625, -1.5537109, -1.1357422, -0.9345703, -1.9238281, 0.92333984, -1.0078125, 0.15429688, -2.0820312, 2.0019531, 0.42236328, 2.7714844, -3.2949219, -1.0224609, 1.0166016, 2.2324219, -2.7070312, 0.95458984, 1.4755859, -0.073791504, 1.8955078, 0.5439453, -1.7255859, 0.24597168, -0.63964844, 1.8310547, -0.6274414, -1.9052734, 1.3173828, 0.2836914, -0.5678711, 0.10839844, -2.3886719, 1.4433594, 0.5341797, -0.25756836, -0.064208984, 0.15527344, -0.01576233, -1.1865234, -0.9238281, 0.35375977, 1.0419922, -1.1572266, 0.99902344, -1.0683594, -0.23132324, 0.058410645, -1.0761719, -1.2421875, 0.66259766, -1.1464844, -0.5214844, -0.7128906, 0.120788574, -1.9404297, -1.6650391, 0.43286133, 0.29101562, 3.2304688, 1.3046875, 0.20178223, -1.2626953, 1.421875, 2.0898438, 0.0569458, -1.2958984, 0.40014648, -1.2529297, 1.4306641, 1.7578125, -1.1152344, 0.10357666, 0.044128418, 2.5351562, -0.3881836, 0.7548828, 0.49291992, 1.5283203, -0.8823242, -0.8100586, 1.890625, 1.4550781, -2.3183594, 0.58203125, -1.2548828, 1.71875, 0.16723633, -0.28076172, -1.5087891, -0.034484863, 1.2978516, -2.1542969, -1.5410156, -0.2709961, -2.0605469, -0.17321777, -1.0761719, 2.328125, 0.9658203, -0.60839844, -0.38305664, 0.66259766, 0.018295288, 2.1445312, -0.46142578, 2.8359375, 0.1459961, 0.03527832, -1.6308594, -0.4038086, 2.1640625, 1.8632812, 0.11987305, 0.6845703, 1.0166016, -1.4130859, 1.1152344, 0.3173828, -2.9277344, -0.4807129, 1.5537109, 0.60498047, 1.4052734, -0.2265625, 1.7304688, 0.5048828, -0.68896484, 0.9580078, 2.3691406, 0.7241211, -0.24963379, 1.9160156, 1.2490234, -1.5400391, -2.2539062, -1.8212891, -2.0332031, -0.9716797, 0.8432617, 1.03125, 4.3007812, 0.3137207, 0.68847656, 3.7519531, -1.1474609, -1.1083984, 1.4677734, 1.9609375, -0.37329102, 1.3203125, 2.0253906, 0.95458984, 1.5673828, 1.7109375, -1.5576172, -1.3476562, 0.51171875, -2.9804688, -1.3867188, 0.7758789, -1.8505859, -0.8413086, 0.14770508, -0.47314453, -1.7919922, -1.5820312, -1.7207031, -2.2089844, -0.26123047, 2.0683594, 0.4387207, 0.49487305, -1.0097656, -1.34375, -0.9267578, 1.7314453, -0.24316406, 1.6513672, 2.6503906, -0.18066406, 0.40722656, 0.24865723, 0.4716797, -2.7792969, -3.6503906, -2.296875, -1.4814453, -0.7890625, 1.4677734, -1.0224609, 0.033233643, -0.6723633, -2.2636719, -1.4003906, -0.28295898, -4.15625, -0.30249023, -1.3603516, -1.046875, 1.3984375, -1.4580078, -0.2290039, 1.4726562, -4.84375, -0.8642578, 0.37670898, 1.3349609, 0.04309082, -2.5742188, 1.8017578, -1.0273438, 0.24255371, -0.15808105, -0.40625, 0.6147461, 0.14318848, -0.8334961, -2.9394531, 0.36108398, -0.004196167, -0.9038086, 0.04373169, 1.8417969, -2.9238281, -1.0322266, 1.1845703, -0.4453125, 5.5234375, 1.5097656, 2.3476562, -1.4921875, -0.48364258, -1.3857422, 0.28930664, -1.7392578, -2.6601562, 0.8930664, -1.0615234, -0.93359375, -3.1679688, 0.35791016, -0.7211914, -1.3212891, -1.0957031, 1.3173828, -1.3535156, 1.7011719, -2.1914062, -0.94873047, -1.1699219, 2.8085938, 1.3554688, 0.053222656, -1.3310547, -0.71240234, -1.9404297, 0.39746094, 1.9101562, 2.6308594, -0.3178711, 0.9277344, 0.7314453, 1.09375, -0.20092773, 0.56640625, -1.2626953, 3.390625, 2.0722656, -2.1171875, -1.2128906, -1.1035156, -0.32299805, -2.2832031, 0.13232422, 2.2949219, 2.3730469, 1.0253906, 0.038879395, 1.1064453, -0.80078125, -0.037750244, -0.73828125, -0.043701172, 2.21875, 2.2382812, -1.6132812, -1.0292969, 1.9736328, 2.2382812, -1.9990234, 0.42382812, 0.54345703, 0.83203125, 1.1357422, 0.87353516, 0.73828125, 0.47729492, -0.546875, 0.3449707, 0.7314453, -0.6586914, -1.8300781, 0.95166016, 0.38305664, -0.46313477, 1.90625, 1.8603516, 0.9267578, 2.1757812, 1.8710938, 0.94140625, -3.046875, 1.5527344, 1.4560547, 2.3300781, -0.16882324, 2.34375, -1.6269531, -0.6586914, 0.6953125, -0.9067383, 0.45117188, -1.4423828, -0.12536621, 2.4902344, -1.2236328, -0.7519531, -0.27978516, -0.2409668, -1.1416016, -1.375, 0.71484375, -2.1484375, -2.6601562, -0.43286133, -2.6796875, -2.2207031, -0.50634766, 1.4169922, -0.3720703, -1.2734375, 1.4248047, 2.1894531, -0.20410156, -1.2578125, -1.8349609, 1.3339844, -0.9848633, 3.5371094, 0.67871094, -1.0898438, 2.25, -2.1777344, 1.5810547, 1.8105469, 0.084472656, -0.6713867, -1.0664062, -1.3359375, 0.68115234, -0.36816406, 1.2705078, -0.27685547, -2.9492188, 0.7973633, -2.3261719, -0.15686035, 1.2314453, -1.0888672, -0.47851562, 1.4726562, 1.9238281, 1.3769531, -1.1855469, 4.6757812, 1.3808594, -2.6230469, 0.7216797, -2.0820312, -1.4042969, -0.7519531, -4.7851562, 0.8676758, -0.28295898, 0.21472168, 2.640625, 0.9003906, 0.61083984, 1.6943359, 0.6196289, -1.1367188, 0.084472656, -3.6601562, -0.7841797, -1.3378906, -0.48413086, 1.3173828, 0.095703125, -1.7880859, -1.5097656, 0.3125, -0.6748047, 2.4082031, 0.5566406, -1.4492188, 0.13549805, -2.0039062, 0.9472656, -1.7910156, 0.32983398, 0.90966797, -0.79589844, -0.84814453, 0.44067383, 1.6542969, 1.2050781, -0.0574646, 0.2055664, 2.5507812, 0.5048828, -1.2041016, -1.3378906, 0.39086914, 1.1240234, -0.9897461, -1.9677734, 0.53027344, -1.2285156, -2.4257812, -2.4707031, 0.6303711, 1.7021484, -1.9609375, 2.5195312, 0.121154785, 2.640625, 2.0351562, 0.5136719, -1.5224609, -0.8256836, -0.57421875, -1.7060547, -1.5947266, 0.62890625, -0.33544922, 0.73339844, -0.7841797, -0.37548828, 0.42114258, 0.4963379, 0.8779297, 0.9355469, 2.5722656, 0.4711914, 1.5351562, 3.78125, -1.4580078, -0.8979492, 0.5102539, -1.2382812, 0.38916016, 1.0175781, -0.19348145, -0.38134766, 1.0429688, 2.1308594, -1.9921875, -0.19177246, -0.6308594, -0.3059082, 0.27929688, -1.3525391, 2.2441406, -0.9135742, -0.7475586, -2.2109375, 0.5708008, 2.2871094, -1.6269531, 0.06939697, 1.0390625, 0.4645996, -0.86328125, -0.7128906, 0.90771484, 1.3466797, 1.5107422, 0.12597656, -0.8178711, -1.4707031, -0.02835083, 0.28881836, 2.9472656, -2.2773438, -1.1503906, 0.5966797, -0.66308594, 0.49682617, -1.2041016, 1.1269531, 2.40625, 0.6347656, 2.3183594, -0.04699707, -0.33862305, 1.1738281, 1.9814453, -1.9921875, 0.27368164, 0.48754883, -0.5859375, 0.6870117, 0.58203125, -4.4296875, -1.5722656, 1.0556641, -1.1308594, 0.9921875, -2.4023438, -2.2558594, 0.34448242, -2.1816406, 0.21411133, 1.1591797, -2.6367188, 0.85839844, -0.60302734, 1.171875, -1.0742188, 0.6044922, 3.1816406, 1.4902344, -0.3630371, 1.7246094, -1.0556641, -0.03829956, -1.2851562, -1.0605469, -4.0664062, -1.0419922, 2.3789062, 2.3417969, 2.1914062, 0.7060547, 1.984375, -1.0576172, 0.69189453, -1.9433594, 2.8183594, -0.8911133, 1.5722656, 3.3261719, -1.7539062, 0.7583008, -0.9169922, 1.9355469, 1.5527344, 0.765625, 1.0234375, -0.5908203, -0.6298828, 0.3474121, -2.5507812, -4.8242188, -1.78125, 0.055511475, 0.64160156, 1.0410156, 1.0595703, 0.5024414, 0.76904297, 0.38745117, 0.83154297, -0.6503906, -1.4570312, -0.05105591, 0.2512207, -1.2695312, -0.9243164, -0.34985352, 1.484375, 0.6142578, 0.68066406, -1.0664062, -2.4726562, -0.7416992, 0.064086914, -3.3515625, 0.05255127, -0.3701172, 0.18920898, -0.19934082, 0.25610352, 2.0761719, -0.76464844, 3.0585938, -1.3320312, 0.85791016, -0.076049805, -0.8144531, 1.5810547, -0.64990234, -1.0751953, 0.51171875, -2.7441406, 1.7294922, 1.1464844, 0.2758789, 1.4931641, 1.1933594, -0.82128906, -0.64941406, -0.4494629, -0.03274536, 1.0273438, 1.4443359, 0.3552246, -0.5830078, -3.3125, -2.0761719, 0.36889648, -0.53222656, -0.8491211, -2.4199219, 1.8271484, 0.068847656, 1.1601562, 0.453125, 0.49047852, -0.2199707, -2.640625, 1.3583984, 0.8071289, 1.8662109, 3.0371094, -1.1679688, -2.5332031, -2.4453125, 0.80029297, 0.9296875, -0.45922852, 0.12902832, -0.54589844, -1.1191406, 0.5654297, 0.7583008, 1.3740234, 2.7089844, 0.7089844, -0.31347656, 1.1962891, 0.6064453, -0.6381836, 0.17919922, 1.4892578, 3.1992188, -0.77783203, 3.6132812, -0.8935547, -1.0947266, 0.94921875, -1.3359375, 0.72753906, -0.26635742, -2.7167969, 1.4228516, -2.4902344, -0.27148438, -3.0273438, -0.67333984, -2.0976562, 1.9726562, 0.27856445, -2.4765625, -0.28149414, 3, -0.96191406, 0.69433594, 1.8320312, 1.2861328, -0.06341553, -0.30419922, -1.1552734, 0.5888672, 0.94873047, -0.84375, -0.02961731, 0.23217773, -1.3134766, 0.9794922, 2.3515625, 0.8510742, 2.3828125, 1.0253906, 1.015625, 1.71875, 3.4941406, 3.7128906, -0.44458008, 1.0654297, 2.0292969, -3.1445312, 0.9379883, 2.71875, 1.3613281, -0.068481445, -0.4284668, 1.8964844, 1.046875, 0.93310547, 1.0546875, 1.3730469, -0.5776367, -1.1201172, 2.0449219, -0.15820312, 0.16967773, -1.5185547, 0.48364258, -1.2822266, -0.047698975, -1.0634766, -2.4257812, 1.3789062, -1.1855469, 0.9477539, -0.5048828, 1.3378906, 0.96728516, -3.6347656, 0.5917969, 1.1328125, -1.1777344, -1.7363281, 0.64453125, 2.3007812, 1.5, -0.63427734, 1.1992188, 2.0585938, -0.3503418, 2.5410156, 1.3251953, 1.1289062, 0.016021729, 1.0810547, -0.8125, -0.19238281, -0.4411621, -0.6220703, -1.8261719, -1.3613281, 0.8730469, 0.18774414, 1.7207031, 1.7597656, -1.5537109, 0.4489746, 1.1816406, 1.2119141, -0.3383789, -0.22106934, -0.86572266, -1.7851562, -2.0214844, 0.6015625, 0.8881836, 2.3945312, 2.1542969, 1.1689453, 1.6425781, 2.390625, 1.6728516, 0.31201172, 0.5522461, -0.48657227, 1.6396484, -2.9648438, 0.60546875, -1.15625, 1.6357422, -1.4453125, 1.5, 1.1816406, 1.1689453, 1.6640625, -0.7294922, -0.08917236, -1.1347656, 0.5131836, 0.45751953, -0.50927734, -1.9638672, -1.0615234, 1.5185547, -1.4960938, -0.54296875, 1.1757812, 2.0136719, 0.060180664, 0.87841797, 1.3710938, -1.8691406, 0.31762695, 0.9135742, -0.22424316, -1.7587891, -0.74658203, 0.21557617, 0.45507812, -0.2685547, 0.24023438, 1.0078125, 0.52783203, -0.2088623, 1.7558594, 0.53466797, -0.080322266, -0.28833008, 0.47387695, -0.85546875, -1.9375, 1.0546875, 0.60302734, 1.2392578, 1.7373047, 1.3105469, -2.0449219, 1.7783203, -0.47045898, 0.3161621, -0.45996094, -2.3242188, 0.27416992, 3.9609375, 2.4882812, -0.13085938, -2.1992188, -3.0058594, 1.0576172, -1.3105469, 2.4960938, 0.21020508, -2.8125, -0.10681152, -2.4394531, 1.6777344, 0.18652344, -0.63427734, -1.2675781, -0.7421875, -0.3317871, -1.8837891, 1.2109375, 1.5078125, -0.68603516, -0.07763672, 3.8066406, 1.3916016, 1.3388672, 1.5449219, -0.07672119, 2.5722656, -3.0742188, 1.3037109, -1.703125, 1.4628906, 0.29858398, -1.4306641, 1.0742188, -0.31469727, 0.79345703, -2.40625, -0.7338867]}, "B01DVJ66H2": {"id": "B01DVJ66H2", "original": "Brand: Cooking Gift Set\nName: Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men\nDescription: Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
          This grill kit includes the ultimate bbq smoker accessories:
          1. All-Natural Cherry Wood Chips
          2. All Natural Apple Wood Chips
          3. All-Natural Hickory Wood Chips
          4. Universal Grill Scraper / Bottle Opener
          5. Specialty Grilling Thermometer
          6. Stainless Steel Grill Smoker Box
          7. Hickory Smoked Salt
          8. Instructions, Recipe Cards, Care Instructions
          When you grill over a base of our quality wood chips, you're kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
          Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
          Looking for a gift for men who everything?
          This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he'll love and his tastebuds will remember.\nFeatures: Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That's why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We're devoted to helping you get great results with the right tools and thorough instructions. And if you're ever stumped- we're available to help.\n100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don't settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips.\nTop-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything.\nThe Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They're unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything.\nAdd 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.\n", "embedding": [-0.91845703, 2.5136719, 2.3808594, -1.3144531, 1.7421875, 1.53125, 1.9951172, -1.7714844, 0.5239258, -0.21643066, 0.81689453, 2.0625, 1.2822266, -3.7265625, -1.1435547, -0.7578125, -1.9355469, 1.2480469, 1.0644531, -0.101989746, 0.8642578, 0.69628906, 0.7519531, -0.23840332, 1.4306641, 0.3720703, 4.015625, -2.3085938, 2.2929688, 0.7734375, 1.4326172, -0.13110352, 0.3544922, 2.7011719, -1.8945312, 0.9199219, 0.9892578, -0.8544922, 0.51660156, 0.40063477, -0.78222656, -1.3496094, 1.2802734, 1.765625, -4.15625, -1.3134766, -1.2949219, 1.7089844, -1.5820312, -3.1074219, 0.8066406, 2.8359375, -1.2871094, -0.21826172, -3.4960938, 1.1191406, -1.3261719, -3.2480469, 1.1474609, -0.00843811, 0.89404297, 0.077697754, -0.4477539, 0.38012695, -1.4384766, 0.40576172, 2.2460938, 0.081848145, -1.1464844, -0.67871094, 2.2988281, -0.68408203, -1.2177734, -0.9760742, -0.29003906, 0.81103516, -1.0634766, 1.3505859, -0.033813477, 0.79345703, -0.41845703, 2.8046875, -0.18078613, -1.5019531, 1.109375, -1.3222656, -2.3300781, 0.46411133, 1.8925781, 0.81933594, 0.90771484, 2.1464844, -0.72802734, -4.5195312, 0.91748047, -1.8808594, -1.6035156, -2.8339844, -0.47094727, 1.7304688, 0.2084961, -0.10107422, 0.9057617, 0.6201172, -2.4179688, 0.28564453, -0.14221191, 3.3613281, -2.296875, 0.13928223, -2.625, 1.1630859, 0.60839844, 1.2841797, 1.9921875, 2.8984375, -1.5839844, -1.3486328, 2.0273438, -0.09399414, 4.0390625, 1.2939453, 0.044036865, -1.3603516, -0.20532227, 0.076049805, -0.94091797, 4.5, 2.2519531, -0.5234375, 0.84228516, -0.22705078, -0.24743652, -0.47680664, -2.4042969, -2.1640625, -2.4101562, 0.4050293, -0.64501953, 1.5332031, 0.85546875, 2.1289062, 1.5371094, 0.10839844, -1.1591797, 0.8618164, -0.89404297, 0.81640625, -0.8041992, -2.2675781, 2.1015625, -1.3203125, -0.4013672, -1.5419922, 0.9667969, -1.1191406, 1.8955078, -1.4375, 0.05166626, 1.1162109, -0.67285156, -2.6699219, 0.35205078, 2.1796875, -0.33447266, -4.1796875, -0.27856445, 1.5039062, -1.2558594, 2.3007812, 1.6679688, 0.5078125, 1.0244141, -0.2927246, 0.67285156, -2.8632812, 0.25, 2.6542969, 1.0507812, -0.7026367, 3.46875, -2.375, 0.84765625, 1.3378906, 0.27319336, -0.5810547, 2.234375, 0.6279297, 0.6845703, -0.33569336, 1.6533203, 0.59228516, -0.048736572, 2.0117188, -0.15515137, -3.5957031, 1.9863281, -1.3583984, 1.6572266, 0.62597656, -1.7783203, 1.7890625, -0.5102539, 0.44628906, -1.1914062, -1.9257812, 0.9316406, -1.4033203, 2.3632812, 2.8398438, 0.9267578, -1.6044922, -0.45361328, 1.3779297, -0.2322998, -2.1992188, 0.07879639, -2.7480469, 1.0537109, 1.1142578, -1.5048828, 0.5786133, 0.7128906, 2.1679688, 1.1162109, 0.87109375, -0.43286133, 1.1171875, 0.91845703, -0.9091797, -0.7338867, 0.67333984, -0.94384766, 1.0546875, -0.41601562, 0.5883789, 1.3085938, -2.265625, -0.80615234, -1.7167969, -0.10986328, -0.103759766, -1.0458984, -1.0029297, -1.6445312, -0.48632812, -0.08331299, 1.8339844, -0.09136963, -1.0761719, -3.609375, 0.5390625, 2.0742188, 1.5839844, -1.7041016, -1.1953125, -1.6044922, -0.7114258, -2.9726562, 0.9316406, 1.2392578, 0.24316406, -0.5029297, 1.9873047, 0.88964844, 0.13867188, 2.828125, -0.9003906, -1.6396484, -2.3183594, -0.09118652, -0.38989258, 1.0625, -0.6357422, 2.7285156, 0.3737793, 0.45776367, -0.014343262, -0.045288086, -0.5698242, 0.036010742, 1.2441406, 1.7285156, -1.6152344, -0.59277344, -1.2363281, -2.3828125, -2.3417969, 2.8574219, 1.7998047, 5.3789062, 0.17504883, -0.16931152, 2.6992188, -3.2578125, 1.1220703, -0.5761719, -0.64697266, -1.1542969, 0.34204102, 1.9150391, 0.85253906, 0.8691406, -1.4345703, -1.8769531, -0.24658203, 1.8173828, -0.34814453, 0.5258789, -0.3972168, -1.8291016, -1.7617188, -0.95410156, 0.65771484, -2.2050781, -0.4296875, -1.9208984, -1.5048828, -0.5878906, -0.3725586, 0.19787598, 1.8095703, 0.49316406, -2.6875, -1.9511719, 2.4296875, -1.4033203, 1.0087891, -0.4580078, -0.60595703, 1.78125, 0.08905029, 1.7773438, -0.69140625, -1.7333984, -1.1474609, 0.5439453, -2.0117188, -0.021087646, 1.6787109, -0.63720703, -0.65722656, -2.2910156, 0.14978027, -1.3173828, -2.0761719, -1.2705078, -0.3725586, -1.7841797, 4.453125, -2.2558594, 1.8769531, 0.6303711, -5.03125, -0.50683594, 0.59277344, 1.9853516, -0.19494629, -2.2363281, 0.5620117, -0.89941406, -0.42749023, 0.24304199, -0.086120605, 0.36865234, 0.20043945, 2.3632812, -1.6660156, 0.16101074, -1.7128906, -0.9941406, -0.101989746, 3.6484375, -1.4707031, -1.7636719, 1.6933594, -0.22509766, 4.1367188, -0.3166504, -0.734375, -1.6777344, 0.47973633, -1.3320312, -0.5463867, -1.1083984, -2.1875, 0.74121094, -1.484375, 0.07330322, -2.0917969, 2.0078125, -1.5820312, -0.11401367, -1.453125, 3.6230469, -1.8554688, -0.55810547, -0.84716797, -0.35986328, 0.9160156, -0.5698242, 0.88183594, -0.37182617, -0.9506836, 0.921875, -0.56152344, -2.640625, -0.64453125, 3.1757812, -1.5224609, 0.7792969, 0.94970703, 1.0664062, -0.45239258, 2.3222656, -2.5019531, 3.3945312, 1.3769531, -2.4511719, -2.5683594, -0.27148438, -1.7285156, -2.2324219, 2.3808594, 2.8632812, 0.32983398, 0.3322754, 1.1201172, 0.2878418, -0.25830078, 3.890625, -0.53466797, -0.6430664, 1.9267578, 2.1582031, -2.2753906, -2.546875, 2.0019531, 0.60253906, -1.7119141, -0.62060547, 2.2070312, 0.06616211, 0.68847656, 0.57958984, 1.1982422, 0.77734375, -0.39672852, 2.4414062, 0.9970703, -2.1855469, -1.0693359, 1.0976562, -1.0703125, 0.3310547, 0.45507812, 0.8613281, 1.5332031, 3.7695312, 1.0732422, 0.7651367, -0.23596191, 1.1220703, -0.20617676, 2.828125, -0.68652344, 1.2578125, -1.6054688, -1.2548828, 0.59472656, -1.0273438, 1.9267578, -2.3457031, 0.15820312, 2.4550781, -0.36157227, -1.3085938, 0.7709961, -0.17529297, 0.64160156, -1.5087891, -0.20483398, -2.3671875, 0.36108398, 2.2304688, -0.5175781, -3.2363281, -2.8984375, 1.5449219, -0.4338379, -0.30786133, -0.75927734, 2.2070312, -1.2011719, -0.18640137, 0.14746094, 1.4814453, -2.5976562, 1.6923828, -2.4179688, -0.51953125, 0.93603516, -4.1992188, 1.6552734, 2.0957031, -0.51708984, 0.22399902, -0.2512207, -0.5961914, -1.5898438, -0.059020996, 0.81347656, 0.35180664, -1.9873047, 0.34375, -1.4755859, -0.6635742, 0.2442627, -2.6289062, -0.5913086, 1.9462891, 0.89990234, 0.52490234, -0.7553711, 3.9179688, 0.75683594, -2.3261719, 3.0117188, -1.2998047, 0.45239258, -1.8183594, -3.4414062, 1.0351562, -0.7661133, -0.7285156, 0.70751953, 1.8222656, 0.40527344, 3.8515625, 1.1884766, 0.1616211, -0.55126953, -0.7446289, 0.23791504, -1.5742188, -0.9682617, -0.28295898, -0.24133301, -1.3828125, -1.5722656, -0.5151367, -1.7099609, 2.6523438, 1.1582031, -1.9501953, 1.0947266, -3.9941406, 0.49243164, -0.26538086, 0.5776367, -1.6191406, -2.5371094, 0.5883789, 0.60595703, 2.8476562, 1.9765625, -0.2939453, -0.94970703, -0.11224365, -0.5058594, -1.6220703, -1.8056641, 0.8798828, 3.71875, -0.27172852, 0.6713867, -1.0693359, -0.2878418, -0.28857422, 0.3930664, 0.44580078, 0.5253906, -2.3828125, 0.4013672, 1.8876953, 1.2939453, 1.3339844, -1.6552734, -1.6162109, -1.5839844, 0.42333984, -0.5727539, -2.5859375, -2.4667969, -1.3427734, -0.80371094, -1.1748047, -1.5234375, 1.2490234, 0.66748047, -0.40307617, 0.045654297, 1.5771484, 2.3789062, 1.7939453, 4.2109375, 0.95410156, -0.9458008, 2.1191406, -3.4082031, 1.4101562, -0.66015625, -0.16137695, -2.1269531, -0.00021362305, -1.1201172, -1.0126953, 0.9711914, 0.14294434, 2.5683594, 0.029266357, -1.4570312, 0.020263672, 0.13195801, -0.1907959, 0.12817383, -1.7441406, 1.8720703, -1.7451172, -1.015625, 1.6113281, 0.56591797, -1.1220703, -0.45288086, 1.0058594, 0.5463867, -0.6459961, 2.859375, 0.14489746, -1.8212891, 0.7661133, 1.5498047, 0.4790039, 1.3535156, 0.7739258, 1.2314453, 0.3857422, 0.3125, -0.97314453, 3.2578125, 1.2880859, -1.5029297, 5.265625, 0.85839844, -1.4912109, -0.2775879, 1.7207031, -2.4628906, 1.3916016, 1.1367188, -0.99658203, 0.26049805, 0.59521484, -2.2148438, -1.0615234, 1.0849609, -1.0488281, 1.8701172, -2.3261719, -2.1660156, 1.4941406, -1.7119141, 0.12402344, -1.2890625, -0.7211914, 0.99609375, -0.07635498, -0.99316406, -2.5332031, 1.5615234, 4.078125, 0.15283203, -0.7558594, 1.6298828, -0.9604492, -0.59375, -1.3544922, -0.83447266, -2.0488281, -2.2070312, 1.8935547, 2.0117188, 1.4716797, 0.1315918, 4.03125, -1.8339844, 1.6982422, -3.9863281, 2.8769531, -2.2773438, -0.058380127, 1.3339844, -2.9980469, 2.0488281, -1.6933594, 2.3339844, 1.0673828, 1.9638672, -0.5419922, -3.015625, -0.70996094, 1.5419922, -2.1542969, -3.5234375, -1.9003906, 0.05935669, 0.55029297, -1.0458984, 1.3515625, 0.44921875, 1.1542969, -1.1640625, -0.60253906, -1.3574219, -0.8383789, -0.7368164, 0.4362793, -4.0546875, 0.49316406, 0.22766113, -1.4882812, 2.3164062, 1.3876953, -0.81103516, -3.2207031, 0.9580078, -0.52001953, -1.4619141, -1.1835938, 0.96191406, 0.54785156, 1.2226562, 1.1591797, 1.8535156, -0.10424805, 2.2070312, -2.1757812, -0.4152832, -1.8662109, -2.6601562, 1.4892578, -1.9609375, -1.7373047, -0.07092285, -2.2285156, 1.9716797, -0.6411133, -0.48413086, 2.125, -2.296875, -0.32885742, -0.8173828, -0.20800781, 0.6484375, 1.3251953, -0.22680664, 0.5292969, -1.6679688, -3.3496094, -0.5620117, 0.24841309, -1.3085938, 0.7583008, -0.8725586, 1.3955078, 1.2197266, -0.38110352, 1.4863281, 2.1152344, -0.09643555, -1.1162109, -0.6586914, -0.095336914, 2.3574219, -0.34936523, -1.0712891, -0.63134766, -0.73828125, -0.45336914, 0.46240234, -0.12023926, -0.23876953, -1.9541016, -1.0185547, -0.0087890625, 1.1308594, 2.015625, 1.515625, 1.3730469, -0.08758545, -0.45507812, 0.6386719, -1.1777344, 2.7070312, 0.12695312, 2.5097656, -1.7060547, 3.34375, -2.9628906, -1.921875, 0.34838867, -0.6269531, -0.42285156, -0.046417236, -2.8496094, -0.22790527, 0.25878906, 0.5805664, -2.4140625, 0.10974121, -1.0097656, 0.62646484, -0.36450195, -0.35620117, -2.5097656, 3.6230469, -0.5625, 3.9335938, 2.0175781, -1.9052734, -3.1582031, -0.70458984, -0.15588379, -1.3203125, 1.1386719, 0.39038086, 1.2167969, 0.8222656, -1.2744141, -0.6455078, 3.2265625, 1.5253906, 0.6870117, 1.2480469, 2.6269531, 0.014846802, 4.4140625, 3.3007812, 0.15063477, 0.47509766, 3.5214844, -0.7685547, 1.6425781, 3.7304688, 2.4257812, 0.84521484, -0.17993164, 1.8564453, 0.39331055, -0.31469727, -0.79052734, 0.4645996, -1.4208984, -0.68652344, 3.2792969, 0.61865234, -1.0556641, -1.7011719, 1.2480469, -0.5126953, -0.13891602, -3.1503906, -1.5244141, 2.6953125, 0.34936523, 0.609375, -0.9604492, 0.68359375, 0.6142578, -4.28125, 0.7470703, 1.5214844, -1.0019531, -1.2578125, 2.5546875, 0.88671875, 0.6166992, 0.90478516, 1.0009766, 1.6699219, 1.5869141, 2.1972656, 1.5664062, -0.70214844, -0.54296875, 1.2109375, -0.31079102, -2.3027344, -1.6552734, -1.3867188, -2.2675781, -1.9853516, 1.7480469, -0.09460449, 3.7246094, 1.1875, -3.3886719, 1.7480469, 0.95703125, 1.8378906, -0.29248047, 1.6835938, 0.12023926, -1.5283203, -2.3183594, 0.7207031, 1.6875, 0.56640625, 0.2746582, -2.0625, 1.6591797, 1.7041016, 1.8876953, 0.36132812, 1.0878906, -1.0898438, -1.3320312, 0.39282227, 2.4628906, 1.046875, 2.4960938, 0.421875, 0.30932617, 1.3671875, 1.1611328, 0.16870117, -0.7675781, 0.068847656, 0.1850586, -2.3613281, 0.7895508, 0.29589844, -4.8203125, -1.5683594, 1.6660156, -1.5136719, -0.39868164, -0.30615234, 2.6503906, 2.03125, -0.0491333, 0.25439453, -2.8183594, -0.8120117, 0.35913086, 0.3227539, -0.51953125, 0.27294922, -0.6269531, -0.90771484, -2.7148438, 0.81640625, 2.140625, 0.2368164, -1.0888672, 0.9511719, 0.5239258, -0.14746094, 0.5024414, -1.2158203, -0.51904297, -2.53125, 0.4326172, -0.46728516, 1.5888672, 1.8183594, 0.88623047, -1.2158203, -1.1855469, -1.0400391, -0.47143555, -0.13867188, 0.19641113, 2.9140625, 4.1523438, 1.4941406, -0.3154297, -1.7519531, -2.6425781, 1.0595703, -3.8828125, 0.52685547, 1.4355469, -1.2978516, -0.41064453, -2.15625, 0.48657227, 0.9453125, -1.6210938, 1.2578125, -2.0253906, -0.68408203, -0.89404297, 1.9121094, 1.4638672, 1.1630859, 1.4599609, 3.1835938, 1.1171875, 0.81152344, 1.3125, 0.7475586, 0.98876953, -1.0732422, 0.0023345947, -0.3852539, 1.9042969, 0.26904297, -1.8759766, -1.4335938, -0.4038086, 0.28344727, -1.3847656, -2.3632812]}, "B00008ZA09": {"id": "B00008ZA09", "original": "Brand: Bernzomatic\nName: Bernzomatic TS4000 Trigger Start Torch\nDescription: \nFeatures: TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings.\nDURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip.\nHIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance.\nSWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.\n", "embedding": [-0.18640137, 2.8652344, 0.38793945, -3.2363281, -0.12768555, -1.5888672, 0.4387207, -0.90527344, 0.7265625, -1.4394531, 0.41088867, -1.0996094, -1.5839844, -2.0429688, -1.4482422, 0.66748047, -1.0810547, -1.1220703, -0.11364746, 1.3017578, -0.21484375, 0.8300781, 3.4609375, -1.9228516, 0.51123047, 1.0888672, 4.2109375, -3.1777344, -1.09375, -0.45703125, 2.5039062, 0.6503906, 0.0069122314, 0.27612305, -0.8779297, 1.7021484, 1.1005859, -1.1699219, -1.9423828, -1.2070312, -0.03829956, 0.21154785, 1.1044922, 0.01727295, -0.6694336, 2.8613281, -3.2773438, -0.1697998, -1.6162109, 1.9365234, 0.73046875, 1.3027344, -0.36743164, 0.23999023, 1.4267578, 0.47680664, -1.4345703, -1.1953125, 0.8754883, 0.5136719, 1.9482422, 0.54003906, -1.5986328, 1.6220703, -0.2631836, 2.328125, -1.6738281, 0.3161621, 1.7675781, 0.39916992, 0.47436523, 0.82373047, 1.0976562, -0.76171875, 1.1279297, 0.95996094, -3.3339844, 1.8554688, 0.34350586, 0.32617188, 0.3071289, 2.2011719, -0.5859375, 0.11987305, 2.1601562, -1.8398438, -0.9423828, 0.65478516, 1.2802734, -0.67529297, 0.42773438, -0.9760742, -0.24963379, -3.2714844, 2.9277344, -0.73876953, 0.6870117, 0.62060547, 1.3066406, 1.921875, -0.04385376, -0.3408203, 1.2714844, 1.4003906, -2.9492188, -0.40478516, -1.59375, 0.3371582, 0.4284668, -0.89746094, -2.4980469, 1.0009766, 0.28808594, 2.0195312, -2.3378906, -0.36743164, 0.24682617, -2.3183594, 2.015625, 0.22167969, 2.0664062, -0.30444336, -0.18017578, -2.2871094, 1.3134766, -1.0107422, -0.113342285, -0.30786133, 1.7119141, 0.45581055, 0.68408203, -1.3046875, 3.6953125, 0.14819336, 1.1669922, -1.5771484, -2.046875, -0.16882324, -1.9453125, 0.27612305, -4.1992188, 2.3769531, -0.05392456, -2.0097656, -4.6367188, -0.5292969, 1.2138672, 0.40063477, 1.0878906, -1.3222656, -0.45117188, -2.1914062, -2.1171875, -2.3339844, 1.4365234, 1.4970703, -3.7148438, -0.53027344, 2.5273438, 1.0849609, 0.95751953, 1.0019531, -0.40063477, 0.75, -2.1132812, -2.2441406, 0.030227661, 2.4238281, 1.3818359, 3.6289062, 0.18530273, -0.9711914, -0.68359375, -2.6132812, -0.16125488, -1.7119141, 0.12561035, 3.4628906, 0.5991211, 0.38891602, -0.74609375, -1.7646484, -0.124938965, -2.2148438, 1.3144531, -2.9707031, -0.52978516, -0.2644043, 1.1660156, -1.1650391, 0.5708008, 2.3066406, 0.37646484, -1.2109375, 2.1582031, -1.7646484, -1.2519531, -2.5722656, 0.64404297, 0.7294922, -1.5966797, -1.6855469, -0.09802246, 2, -1.7304688, 0.14782715, 0.87060547, 0.9433594, -0.32788086, 0.89160156, 1.7919922, -0.17077637, 1.0849609, -1.3359375, 0.52783203, -2.8144531, 0.06732178, 0.73046875, 1.4091797, 1.0517578, 1.4423828, -2.5683594, 0.7890625, 1.5097656, 1.1259766, 2.546875, -1.8935547, -1.1552734, -0.3190918, -0.1772461, -0.9863281, 0.2902832, -0.02067566, -0.8041992, -0.48901367, 1.4765625, -1.2988281, 0.8417969, 1.7021484, -0.49658203, -0.16015625, 0.66845703, 0.10852051, 0.05731201, 1.1494141, -2.2558594, -0.3762207, 0.2998047, -0.7836914, -0.6621094, 3.2617188, -0.18041992, 2.5, 1.8964844, -1.5664062, -2.609375, 1.0546875, 0.12719727, 0.48754883, -3.8828125, 2.28125, 0.5131836, 0.4350586, -1.0761719, 1.1083984, -2.4511719, -0.0014219284, -0.24816895, 2.2539062, -0.060424805, -0.31274414, 0.075683594, -0.061798096, 0.99560547, 2.3691406, 4.296875, -0.24084473, 1.8886719, 1.109375, 1.3447266, 0.75097656, -0.29663086, 1.5498047, -2.0859375, 0.45922852, -0.9682617, 2.078125, -1.5898438, -0.68847656, 0.50927734, 4.109375, -1.5800781, -2.3710938, -0.23217773, -0.60595703, 2.9472656, 0.5048828, 0.6010742, 0.9633789, -2.90625, 1.5009766, 1.5605469, -0.011306763, 2.828125, 0.5986328, 0.5449219, 0.55126953, -1.546875, 0.16955566, 0.92333984, 1.5087891, 0.33251953, -0.0068588257, 0.7182617, -2.8867188, -1.1611328, 2.6953125, -3.3339844, 0.99853516, -0.17871094, 2.8222656, 3.78125, 2.0117188, -1.4824219, -0.0287323, -0.6459961, -0.7944336, 0.9760742, 1.8173828, 1.5087891, -1.9326172, -1.3886719, -0.70947266, -3.7050781, -0.5732422, 0.067993164, 0.27148438, -5.203125, 1.7607422, -2.3984375, -1.1777344, 4.6875, -2.1816406, 0.93847656, 1.1191406, -3.4375, -0.5942383, 0.70703125, -1.0273438, -0.61083984, -1.3056641, 2.7636719, 1.1513672, -2.1601562, 0.12060547, -0.27783203, 0.9580078, 1.4306641, -0.9526367, 1.4853516, 0.73828125, 0.30419922, -1.3808594, 2.8496094, 2.3476562, -3.2128906, 2.6308594, -2.5703125, -0.20117188, -1.0507812, 2.3652344, -0.062927246, 1.6699219, -1.4091797, 0.97021484, 0.5917969, 0.41088867, 1.1171875, 0.5932617, 1.4248047, 0.18103027, -1.4414062, 0.5253906, -2.1738281, -2.7714844, 1.8945312, 1.1630859, -0.62353516, 1.7226562, -0.44360352, -1.3974609, 0.30273438, -0.7426758, -1.3027344, -1.3574219, -0.57958984, 0.56933594, -1.6826172, -0.2052002, 2.0371094, -2.0332031, -1.2802734, -3.2324219, -2.3671875, -0.5830078, -0.09954834, 0.4951172, -0.78222656, -0.73339844, 0.8574219, -0.796875, -0.35131836, 0.9765625, -0.06774902, 2.2636719, -3.0957031, 0.60839844, 0.72265625, -1.6630859, 2.0957031, -0.6513672, 0.22814941, -1.8310547, 1.1220703, 1.6904297, -0.24169922, 1.4589844, -0.2956543, 0.11090088, 0.15319824, 3.2207031, -1.6611328, -2.7480469, -1.1152344, -1.3271484, -1.1503906, -1.8271484, 0.8330078, -0.22912598, -1.8535156, -1.4892578, 2.1542969, -1.2744141, 0.077819824, 2.71875, -4.0546875, 2.3964844, -2.1777344, -0.14379883, -0.22912598, -1.0449219, 3.5117188, 0.5878906, 0.9448242, 1.2011719, 0.19152832, 0.20690918, 0.37158203, 1.7832031, 2.0351562, 1.7949219, 0.6635742, -0.39648438, 0.15490723, 3.1503906, 1.71875, 1.3017578, 0.53271484, -1.3105469, 0.84765625, 1.4980469, 1.6240234, -1.6054688, -1.6816406, 0.40405273, -0.18273926, -0.8857422, 1.7480469, 1.5244141, -0.6669922, -2.6933594, 0.95751953, -1.3115234, -2.2148438, -0.5961914, -0.08428955, 2.2402344, -4.6757812, -0.33911133, -0.26464844, -0.6386719, -1.125, -1.1835938, 0.5336914, -0.09301758, -1.78125, 1.3134766, -0.21838379, 2.5019531, -0.3725586, -1.3486328, 0.45922852, -1.8017578, 0.014968872, 0.60498047, -3.0195312, -1.1816406, -1.171875, -0.81347656, 0.69091797, -0.0040779114, -1.3535156, -2.0371094, 0.39501953, 2.9726562, -2.3144531, 2.4980469, 0.41577148, -3.0800781, 1.4648438, 1.7851562, -1.0400391, -1.3759766, 0.088134766, 1.0029297, 0.17785645, -1.34375, 1.3964844, -2.09375, -2.4042969, -4.9140625, -0.9067383, 0.5839844, 0.4790039, 1.8691406, 2.3125, -0.5161133, 1.2421875, 0.2565918, 1.6220703, -0.35205078, -2.3730469, -0.16564941, 2.2617188, -0.6738281, -2.140625, 1.3007812, 1.8886719, -0.5488281, -0.7890625, -0.73828125, -0.28515625, 0.36669922, 0.27734375, 0.56591797, 0.09625244, -0.41333008, -0.87597656, 0.6791992, -1.3095703, 1.8193359, -0.11236572, -0.08886719, -1.9970703, 0.45458984, -0.60058594, 0.15283203, -0.6381836, 1.5615234, 2.7402344, 0.16345215, -0.9326172, -1.1298828, 2.2207031, 1.6591797, -3.5820312, -0.14746094, -1.2119141, 1.5253906, -0.6801758, 2.6542969, -0.07513428, -1.8886719, -0.099365234, 0.44384766, -0.22753906, 2.1132812, -0.50341797, -1.0449219, -0.7861328, -1.9384766, -1.2080078, -1.1474609, 1.9033203, 2.890625, 0.30493164, 1.5048828, 0.8334961, 1.5341797, -0.8276367, -2.4941406, -1.5820312, 0.36791992, 2.3710938, -0.7705078, 1.2841797, -1.3330078, -1.3417969, -1.9902344, 1.2265625, -1.5644531, -0.074645996, -1.28125, 1.2197266, 1.8671875, 0.14685059, 0.7446289, -0.59716797, 2.0253906, -1.7158203, -0.25610352, -0.22253418, -0.3388672, -1.6689453, -0.07128906, 2.4511719, -0.22753906, 0.47436523, -0.004924774, -0.39624023, -0.5097656, 0.5126953, -0.1149292, -0.94677734, -0.100097656, -0.19995117, 2.21875, 0.6386719, 3.9121094, -1.1064453, -1.0654297, 2.9863281, 0.016433716, -0.12408447, 2.6933594, 0.48779297, 1.1669922, -1.1582031, -1.9238281, 1.3144531, 0.14562988, 0.09857178, 2.859375, -0.99121094, -0.125, -1.4169922, 1.9199219, -2.3808594, 0.5595703, -1.2001953, -2.71875, 3.3007812, 0.46069336, -1.1611328, 0.14245605, 3.1679688, -1.5585938, 0.5258789, -1.421875, 1.1337891, 0.6220703, -0.55029297, -2.0449219, -1.6474609, 4.1523438, 1.3408203, 0.019454956, 0.7192383, 1.0488281, 1.9423828, 0.9941406, -0.18981934, -0.74316406, 0.47680664, 1.9082031, -1.65625, 0.1821289, -0.6298828, -0.082092285, 2.0136719, 0.58447266, 1.0839844, 1.8515625, 2.3007812, 1.8095703, -0.7890625, 0.17993164, -0.49853516, -0.39160156, -0.62939453, 0.49291992, 2.1953125, -0.82421875, 1.1064453, -0.17919922, -0.14245605, -1.2900391, 0.7661133, 0.2709961, -1.3466797, -1.7333984, -0.60546875, -3.2832031, -3.265625, -1.9560547, -0.3149414, 0.71240234, 1.3369141, 1.7548828, 0.15588379, -0.6699219, -0.66845703, 1.7431641, -0.5678711, 0.9042969, -1.3642578, 0.9746094, -0.8486328, -0.90234375, -0.10101318, -1.0166016, -1.2246094, -0.2692871, 3.7050781, -1.2421875, -3.8652344, 3.9570312, 0.7133789, -0.33251953, 0.8330078, 0.6713867, -0.02734375, 2.3457031, -1.5810547, -1.7148438, 0.30859375, -1.5019531, -0.20751953, 0.36645508, -2.0839844, -0.56347656, 2.6835938, 0.7915039, -1.46875, 1.3554688, 0.8544922, -1.1738281, -0.024032593, 0.49121094, -1.46875, -0.5073242, -3.1347656, 0.7597656, 0.93066406, 0.7963867, 1.4052734, -0.8125, 0.2902832, 0.60009766, 0.9482422, -1.0839844, 0.3046875, 2.8378906, -0.111572266, 1.3271484, -0.35595703, 0.7089844, 1.4970703, -0.88427734, -1.4453125, 0.13989258, 0.39868164, 0.043640137, 2.484375, -1.5800781, -3.5195312, 0.22741699, -1.4179688, 2, 3.4296875, 0.99316406, -0.46166992, 2.2871094, -1.5009766, -0.29736328, 0.9267578, 0.73828125, -0.8222656, -1.3613281, -1.2978516, -1.7783203, 0.56933594, -1.7480469, 0.05731201, 2.359375, -0.39135742, 0.51416016, 0.20141602, 0.18371582, -2.6152344, 1.2197266, -0.7714844, -1.3027344, 2.7460938, 0.09161377, -0.7661133, 0.41015625, -0.0947876, 2.4472656, 2.4550781, -2.3359375, -0.85595703, 2.4824219, 0.94628906, 0.74658203, 1.3574219, -0.84472656, 0.64160156, 1.5273438, 1.8652344, -2.2148438, -1.0957031, 0.7167969, 0.9609375, 1.7929688, -2.3066406, 1.2226562, -0.41064453, 2.0214844, 0.3359375, 0.6748047, -1.0185547, 0.14257812, 1.3896484, 1.5048828, -0.35009766, 3.0722656, 1.0683594, -0.22998047, -0.30126953, 1.7421875, 0.69921875, 3.5097656, 0.75439453, 0.7792969, -0.42358398, -0.14575195, -1.3115234, -0.49536133, -1.484375, -1.3105469, -0.6953125, -0.70703125, -2.3007812, 0.01878357, 0.91308594, 0.21777344, -1.9550781, 0.30639648, -1.2148438, -1.0439453, -1.2714844, 2.7695312, 2.1894531, -1.6865234, -2.2128906, -0.9633789, -1.2724609, -0.7631836, -2.4902344, 0.031036377, -1.3115234, 0.5332031, 1.0507812, 1.3242188, 0.30273438, -0.0058174133, -0.13574219, 1.1933594, 0.4958496, -0.95166016, -0.037475586, -2.921875, -0.47070312, 1.6318359, 2.6855469, -0.88623047, 0.5385742, -0.24890137, 1.9589844, -1.453125, -1.265625, 2.5058594, 0.6777344, -1.6191406, 2.6269531, -1.1738281, 1.2949219, -2.3339844, -0.48120117, -0.39868164, 0.83984375, 1.4814453, 0.48828125, 1.1523438, 0.47485352, 1.0605469, 2.2011719, -1.515625, -0.2861328, -1.1992188, -1.8349609, 0.06958008, -2.5058594, 0.9946289, -1.0839844, 0.28393555, -3.0058594, 2.3359375, -1.1259766, -4.0703125, -1.2841797, 4.7617188, -2.1523438, 0.4880371, 0.15332031, -2.0214844, 0.12976074, -3.3945312, 0.4326172, 1.6835938, -0.91552734, -4.9804688, 0.7631836, -1.0537109, 0.60058594, -0.23999023, -0.13879395, 2.828125, -0.5673828, -0.64941406, 0.017211914, 0.3244629, 1.0195312, 2.7890625, -0.7260742, -0.017547607, 1.1113281, 0.66552734, -1.8398438, -2.0332031, 2.0078125, 3.9355469, 0.33911133, -2.0019531, -0.31225586, -1.8535156, -0.5473633, 2.6113281, 0.9008789, 0.52246094, 0.10949707, 2.3144531, -1.3818359, -1.8974609, 1.5722656, -1.3730469, 2.2792969, -0.04977417, -5.0859375, -2.046875, 0.18688965, -1.1992188, 1.6748047, 1.4267578, -1.4335938, 0.63720703, 0.3791504, -2.8222656, 0.3310547, -2.0039062, -0.3071289, 0.8925781, -2.3183594, 1.5615234, 0.5708008, 3.6386719, -2.5878906, 0.56103516, -0.30078125, -1.1552734, 0.81396484, -2.2714844, 2.1601562, -1.4160156, -0.89404297, -0.19836426, 2.9277344, -1.8896484, -0.21899414, 0.4440918, 1.8408203, 1.5, -0.75390625, 0.3317871, -3.8261719, 2.3828125, 1.1777344, -1.4746094, 1.3310547, 1.5097656, -0.671875, -3.0976562, -2.8535156]}, "B08M9HL7XW": {"id": "B08M9HL7XW", "original": "Brand: Lovely Snail\nName: Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic\nDescription: Features:
          Durable metal frame
          Thermometer on the lid
          Airflow control
          Coal grids for cooking chambers
          Attractive wood handles

          Grill material: metal
          Grill grid material: stainless steel
          Overall size: 16.5 x 11.8 x 14.6 inch
          Weight: 3.6 kg/7.9 lb
          Color: black/green
          Delivery contents: 1 x charcoal grill + 1 x instruction
          Please Note: Please assemble the grill by adults.

          \nFeatures: \u3010Outdoor BBQ Grill\u3011: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences.\n\u3010Versatile Charcoal Grill\u3011: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness.\n\u3010Healthy & Premium Quality\u3011: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy.\n\u3010Precise Cooking\u3011: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising.\n\u3010Easy to Assemble & Use\u3011: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.\n", "embedding": [-0.35009766, 2.0117188, 1.4785156, 0.38842773, -1.0175781, 0.043640137, 1.3925781, -1.4873047, -0.0053520203, 2.7949219, -0.06652832, 0.20605469, 0.91308594, -3.875, -1.5429688, 0.48413086, 1.1142578, 0.31030273, 1.6777344, -3.34375, 0.83154297, 0.14050293, 1.7617188, 0.4309082, 2.0859375, -2.2148438, 2.5195312, -1.5556641, 0.16516113, -1.578125, 1.8662109, -0.6743164, 0.59716797, 1.703125, -0.9345703, -0.47924805, -0.77783203, 0.4724121, 0.3479004, -0.040496826, -0.3815918, 0.4111328, 0.055480957, 0.96435547, -4.4960938, 0.7207031, -1.6611328, 1.1992188, -0.024475098, -0.7319336, 0.18725586, 0.9248047, -0.87109375, 0.8066406, -2.0917969, 1.5078125, -0.09436035, -2.9121094, 1.5302734, -1.7431641, 1.5039062, 0.39208984, -0.56591797, 2.5253906, -0.24389648, -1.1699219, -0.57128906, -0.65283203, -0.6430664, -1.0087891, -0.33764648, 2.3691406, -1.3730469, -0.012710571, -0.2902832, -1.2167969, -2.7871094, 2.8671875, 0.52197266, 0.92089844, -1.7822266, 2.9433594, -0.11578369, -1.0644531, -0.44335938, 1.4619141, -2.46875, 0.07104492, 0.70214844, -0.5917969, 0.34936523, 1.1630859, -1.0917969, -3.5761719, -0.36547852, -4.7070312, 0.3251953, -0.49560547, -1.8945312, -0.3955078, -0.5473633, -1.3574219, -0.5751953, -1.5634766, -1.5615234, -1.0361328, 1.9160156, 1.3125, -1.6494141, 1.984375, -1.3417969, -0.30493164, 1.0625, 1.8212891, 1.4101562, 0.02407837, -1.3574219, 2.7089844, 1.0400391, 2.2363281, 3.7539062, 0.29541016, 0.5541992, -1.9296875, 0.5336914, -0.8232422, -0.6254883, -0.053131104, 2.2265625, 0.039794922, -0.81689453, -1.8496094, 0.42895508, -0.22741699, -1.9980469, -1.0888672, -0.35864258, -0.88378906, -1.5634766, 2.9023438, -1.8369141, -0.0070266724, 2.2519531, -1.5927734, -3.3613281, -1.0703125, -0.6767578, 2.5703125, 0.7055664, -2.8925781, -1.4130859, -1.8535156, -0.020996094, 0.23034668, 0.18432617, -0.04449463, -1.0585938, -2.296875, 2.4277344, -0.95458984, 1.78125, -2.7773438, -1.296875, 1.1386719, 0.6713867, -2.421875, 0.49731445, 0.7583008, 0.10101318, 2.0996094, 0.9033203, 0.37353516, 1.5810547, -0.3803711, 1.3828125, -0.79003906, -2.0234375, 1.1875, -0.5541992, -1.2285156, -1.0869141, -4.0273438, 2.1699219, 2.6445312, -0.75097656, 0.1204834, 1.7558594, 1.3632812, -1.4072266, -1.8574219, -0.12805176, 1.2490234, -0.5805664, -0.04800415, -1.5478516, -0.19445801, 0.66748047, -2.3242188, 0.0914917, 2.4589844, 1.6953125, 1.2558594, -1.9697266, 0.1776123, -3.3359375, -1.6386719, -3.046875, 0.55126953, 1.2802734, 1.0419922, 1.1982422, -1.2255859, 3.6777344, 2.0292969, 0.45825195, -1.734375, 1.6679688, -1.3613281, 1.9833984, 2.4003906, -0.18383789, -1.6083984, 0.14367676, 3.0351562, 0.19226074, 0.9277344, -0.20935059, 1.1933594, 1.9111328, -0.79345703, 2.0019531, 0.13110352, -0.46972656, -0.56640625, 0.3251953, 1.65625, -0.3166504, -0.12438965, -2.1835938, 1.6884766, 0.043945312, -1.6484375, -2.1933594, -1.5595703, -1.4453125, -2.9453125, -2.1113281, 2.046875, 1.7714844, -2.0898438, -0.5, 2.2421875, -0.63916016, 1.4228516, 0.31884766, 0.50439453, 1.0986328, -0.6640625, -1.2978516, -2.4472656, 0.28637695, -0.4819336, 1.1572266, 1.7128906, 2.6875, 0.38305664, 0.7885742, 2.109375, -1.9970703, -0.13244629, 0.61621094, 1.390625, 1.1230469, -0.8691406, 0.5229492, 0.45874023, 0.3474121, 1.8427734, 1.4335938, 0.4790039, 0.4416504, 0.9277344, 1.6855469, -2.5234375, -2.5351562, -1.3574219, -1.5556641, -0.69873047, 0.03390503, 1.0273438, 3.9140625, -0.8173828, -1.9804688, 3.7226562, -1.7197266, 0.3413086, 1.5429688, -2.0292969, 0.43725586, 2.8476562, -0.93408203, 1.8291016, 0.38305664, 1.4033203, -1.5253906, -1.8525391, 2.6816406, -3.9023438, -0.95703125, 0.33447266, -0.51220703, 0.15209961, -1.3417969, -0.00315094, -1.1582031, -2.2207031, 1.5009766, -2.03125, -0.14587402, 1.4023438, -1.2207031, -2.2226562, -0.67285156, -2.125, -1.9472656, 2.9238281, -1.1425781, -0.21398926, 2.1308594, -0.47680664, 0.7290039, -1.1259766, 0.13317871, -0.80859375, -2.8867188, -3.6113281, -1.7890625, -1.9169922, -0.8017578, -3.0585938, -0.4909668, 0.6538086, -1.9150391, 0.7963867, 0.26660156, -3.4140625, 0.12573242, -1.0039062, 0.37817383, 2.6367188, -2.2070312, 0.2705078, 0.62646484, -4.7890625, -0.024536133, 0.29541016, -0.515625, 0.17321777, -3.4765625, 0.8930664, -0.75683594, -1.1445312, -0.41967773, 0.1005249, 1.6308594, -0.2467041, 0.22814941, -2.0449219, 1.9589844, -1.7158203, -2.2871094, -2.375, 2.8222656, -3.8808594, -2.6464844, -0.7631836, 0.56591797, 3.5839844, -0.18139648, 1.3193359, -2.0527344, 0.07635498, -0.29492188, -1.2695312, -3.1113281, 0.048217773, 0.35961914, -1.1435547, -0.8017578, -2.6132812, 0.47827148, 0.33764648, -1.1943359, -2.4570312, 1.5048828, -1.7285156, 2.3144531, -2.8457031, 0.8569336, -0.45629883, 1.5712891, -0.66503906, 0.59765625, -0.9482422, -2.28125, 0.9121094, -1.4775391, 1.3535156, 1.7763672, -0.43579102, 0.74365234, 0.25073242, 1.1113281, 0.6699219, 0.7084961, -2.7753906, 3.4296875, 0.421875, -2.421875, 0.93115234, -0.087646484, -1.1923828, -3.0078125, -1.0712891, 2.3027344, 2.6269531, 1.7558594, -1.6542969, -0.99560547, 0.033813477, 0.7519531, 1.4541016, -0.32495117, 2.1269531, 3.0371094, -1.4150391, -0.9003906, 0.41992188, 2.2246094, -2.7324219, 1.4921875, 1.7900391, 2.15625, 2.34375, 1.0732422, 2.7148438, -1.0166016, -1.6113281, 0.012123108, -0.8149414, -0.1439209, 1.1083984, -1.6318359, -1.4873047, -0.09289551, 1.0546875, -0.5698242, 0.45507812, 0.7739258, 3.4921875, -0.48754883, -1.5429688, 1.4003906, 0.58740234, 0.84521484, -0.59277344, 2.515625, -1.5234375, 0.24780273, -0.5024414, -0.5078125, 0.8979492, -0.6845703, -0.34570312, 3.0117188, -1.5136719, -0.7138672, -0.74560547, 0.18139648, -0.038513184, -2.2519531, -0.25732422, -2.6835938, -0.5800781, 2.484375, -3.0585938, -3.0214844, -0.25683594, 0.58154297, -1.5947266, -2.1152344, 1.5087891, 1.4599609, 1.6884766, -1.7607422, -0.87060547, 2.7011719, -0.8852539, 2.5429688, 0.38891602, 0.23254395, 1.9072266, -0.3486328, 2.4921875, -0.8540039, -1.3183594, -1.2587891, -2.6640625, 0.20800781, 0.0021953583, 0.6542969, 0.53027344, -1.6181641, -3.8378906, -0.22570801, -2.1523438, 0.60009766, 1.2460938, -1.7470703, -0.828125, -0.18811035, 2.78125, 1.5166016, -0.42382812, 2.0917969, 0.047821045, -1.4746094, 3.1816406, -0.5834961, -0.10217285, -2.5410156, -3.1113281, 2.3125, -0.23181152, -1.328125, 2.0703125, 1.2158203, -1.2412109, 1.4365234, 0.30297852, -2.078125, -0.5214844, -2.5761719, -1.3935547, -0.9477539, -0.3544922, -0.33789062, 1.1904297, -1.0380859, -1.5947266, -0.16394043, -0.0770874, 2.546875, 1.7851562, 0.88916016, 1.4267578, -2.9746094, 0.22827148, -0.6459961, -0.51708984, 1.0859375, -1.1611328, -0.09869385, -0.64697266, -0.5073242, 0.28955078, -0.42773438, 1.8876953, 0.7753906, 0.14868164, 1.46875, -1.7861328, 1.6347656, 1.9462891, 0.92333984, -1.6523438, -2.6523438, 0.31225586, -0.9692383, -0.072265625, -1.1855469, 1.8164062, -4.859375, 0.6665039, 0.50927734, 2.1738281, 2.7226562, -2.6445312, -1.0693359, -0.48754883, 0.7241211, -2.6484375, -1.6396484, 1.1005859, 0.021835327, 0.7109375, 0.75634766, -0.9003906, 1.1230469, -0.6533203, 1.078125, -0.6230469, 1.1201172, 2.0625, 2.9433594, 4.6054688, -2.2929688, -1.6435547, 0.13830566, -0.9589844, 0.09655762, 1.7138672, -1.5722656, -1.1171875, 0.61572266, 2.7949219, -1.7451172, -1.7412109, 0.027450562, -0.39672852, -0.7216797, -1.5078125, 2.2246094, -0.81347656, 0.44262695, 1.5996094, -1.1875, 2.703125, -1.6650391, -0.007881165, -0.14465332, 0.50146484, -0.53125, -1.1503906, -1.0019531, 0.88916016, 0.80126953, -0.25952148, -0.8256836, -0.24194336, -0.2902832, 0.21166992, 2.5859375, -1.4472656, -0.8959961, -1.7480469, -0.36523438, -0.74609375, -0.035980225, 0.8286133, 1.3486328, -0.57910156, 2.5234375, -0.42285156, -1.0244141, 1.5791016, 1.5214844, -1.5400391, -1.2158203, 1.2753906, -1.0976562, -0.35058594, 0.22021484, -5.5429688, -2.1875, 0.7236328, -1.8564453, 2.5839844, -0.4387207, -2.0195312, 1.4208984, -1.3193359, 0.8901367, -0.53564453, -1.5751953, 0.84521484, 0.9760742, -0.3984375, 1.5683594, -0.6503906, 2.2539062, -1.3613281, -1.9716797, 2.3789062, 0.14978027, -0.45166016, -0.84521484, -1.6953125, -2.0722656, -1.9912109, 2.2070312, 2.6816406, 2.2910156, 0.7392578, 1.6533203, -2.03125, -0.07879639, -4.171875, 1.8964844, -2.28125, 0.7705078, 1.1318359, -1.6669922, -0.27319336, -1.9599609, 2.0078125, 1.8339844, 1.5576172, 1.5576172, -1.125, -2.2246094, -0.57421875, -2.9941406, -3.0585938, -1.0068359, 0.25463867, 0.36547852, 0.40161133, 2.2285156, -0.34936523, -0.3491211, 0.4338379, 0.47875977, -1.1777344, -0.35009766, 0.03366089, 1.4970703, -0.6948242, -0.46557617, -1.2167969, 0.86621094, 1.8623047, 1.9228516, 2.0214844, -3.0253906, 0.35375977, 1.2802734, -1.6474609, -1.6796875, 0.7246094, 2.5058594, 0.5083008, 0.58984375, 1.8369141, -0.85595703, 1.6035156, -1.2167969, 1.6728516, 0.62060547, -0.32202148, 1.1796875, -1.2929688, -1.1835938, 0.6640625, -3.1035156, 1.8271484, 0.29711914, -0.37353516, -0.5727539, 0.7480469, 0.27807617, -0.8623047, 0.8232422, 1.0205078, 1.0029297, 0.74560547, 1.8115234, 0.890625, -2.0390625, -2.1640625, 0.16333008, -0.76464844, 0.23937988, -1.4609375, 1.7958984, 1.0253906, 1.4667969, 2.3339844, 1.2841797, -0.62109375, -2.0390625, -0.93847656, 0.24511719, 1.6904297, 3.4433594, -1.4824219, -3.1464844, -1.5908203, 0.7548828, 0.26538086, 0.20336914, 0.23864746, -0.1907959, -0.25927734, -0.38598633, 0.17834473, 1.1982422, 1.8408203, 1.2841797, -1.0253906, 1.2060547, 1.2050781, -2.0488281, 1.9814453, 1.6308594, 3.0195312, -0.028457642, 2.3085938, -1.9130859, -2.1191406, 3.0078125, -0.6821289, 0.7451172, -0.27954102, -1.8662109, 1.1835938, -1.4267578, -0.47998047, -2.0214844, -0.29785156, -1.5732422, 1.9091797, -0.35766602, -1.8945312, -0.36254883, 2.8808594, -0.84716797, 3.7207031, 0.3828125, -0.111572266, 0.9169922, 0.95410156, -1.9755859, -0.7138672, 0.76171875, -1.2011719, 0.55126953, -0.32861328, -0.71875, -1.7470703, 2.8984375, 2.9433594, 2.4238281, -0.32299805, 3.3789062, 0.18591309, 2.9160156, 3.9042969, -0.34155273, 2.0800781, 2.1894531, -3.3085938, 0.43798828, 3.7773438, 1.5927734, 0.42504883, 0.17578125, -0.082214355, 0.32958984, -0.23120117, 0.9794922, 0.28759766, 0.07287598, -1.8535156, 1.4501953, 0.76660156, -0.74365234, -2.0253906, 0.91064453, -1.2294922, 0.8520508, -1.8515625, -1.8994141, 0.4807129, -0.49291992, 2.7226562, 0.28125, 0.6933594, -0.6972656, -4.359375, 0.030639648, 1.4882812, -1.0810547, -0.32470703, 0.92578125, 1.625, 0.13415527, -0.5996094, 0.9160156, 1.6953125, -1.2431641, 3.7792969, 1.9091797, -0.87646484, 0.98535156, 1.421875, -2.0195312, -2.8378906, -0.515625, -0.12335205, -2.2363281, 0.23999023, -0.42333984, 1.7128906, 2.4980469, 1.4667969, -3.3710938, 1.5722656, 0.9082031, 1.8183594, -0.45483398, 2.3144531, -1.1669922, -1.3242188, -2.0917969, -0.36694336, 0.38720703, 0.71777344, 0.7919922, 0.13391113, 2.7226562, 1.4052734, 2.5058594, 0.6972656, 2.2207031, -0.4404297, 1.3105469, -1.375, 1.9082031, -0.89208984, 0.28344727, -1.8613281, 1.2578125, 1.2050781, -0.12792969, 1.4033203, 0.19238281, 1.0683594, -1.2275391, -0.05859375, -1.0859375, 0.12182617, -3.8222656, -2.453125, 1.1484375, -0.35839844, 0.1875, 0.01184082, 0.8774414, 1.8652344, 2.0371094, 1.6904297, -0.5644531, 3.75, 2.75, 0.06939697, -1.2822266, 0.24157715, 1.6386719, 0.9667969, 0.9707031, 0.51220703, 2.7207031, 2.5429688, 0.21594238, 2.390625, -0.6669922, 0.6645508, 0.50146484, -0.4074707, 0.7783203, -1.6103516, 2.6230469, 0.8720703, 0.8486328, 3.1894531, 1.3554688, -2.6367188, 0.49121094, 1.7890625, 1.5507812, -1.1318359, -1.6865234, 0.60498047, 4.171875, 1.8388672, -1.1171875, -2.6796875, -5.3085938, -1.3027344, -0.07092285, 1.8193359, 1.1582031, -1.9404297, 0.67089844, -1.9189453, 0.6118164, -0.2680664, -1.7666016, 0.89404297, 0.20837402, 1.1171875, 0.5415039, 0.9892578, 0.35620117, 1.7021484, 0.8515625, 2.9980469, 0.94384766, 2.6191406, 0.38085938, 2.2207031, 1.2265625, -3.6445312, 0.17541504, -0.81152344, 1.3193359, 0.8066406, 1.9375, -0.4880371, 0.23596191, 0.68847656, -1.0869141, -1.0869141]}, "B01M133XUS": {"id": "B01M133XUS", "original": "Brand: BBQ Coverpro\nName: BBQ Coverpro Built-in Grill Cover up to 37\"\nDescription:

          BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


          \u203bVinyl cover for built-in 37-inch grill.
          \u203bProtects built-in grill from all weather conditions.
          \u203bHigh heat resistant cover, UV protection and resists cold cracking.
          \u203bSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down.
          \u203bHeavy Gauge 600 D polyester with PVC coated water repellent top.

          We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

          \nFeatures: Vinyl cover for built-in 37-inch grill\nProtects built-in grill from all weather conditions\nHigh heat resistant cover, UV protection and resists cold cracking\nSize: 37\" L x 27\" Depth x 24\"H, Air Vent and Velcro tight down\nHeavy Gauge 600 D polyester with PVC coated water repellent top\n", "embedding": [-0.06561279, 1.3974609, 1.8105469, -0.9736328, -2.4785156, 0.44384766, 1.0908203, -2.2792969, 1.1445312, 1.7363281, -0.22094727, -1.2880859, -0.057739258, -3.9511719, 1.8164062, 1.2529297, 2.3476562, 3.25, 4.1992188, -0.58496094, 0.8691406, 0.8803711, -0.6171875, 1.2285156, -0.35058594, -0.33691406, 4.90625, -3.7617188, -1.140625, 0.20959473, 1.828125, 0.14147949, 0.52490234, 1.9492188, -1.4101562, -1.2011719, -1.5976562, 1.5722656, 1.15625, -2.0683594, -1.4667969, -2.3046875, 3.0078125, 1.2832031, -2.671875, -0.18249512, -1.1162109, 1.3232422, -0.09442139, -2.5664062, 1.8759766, 0.88378906, 2.6933594, 1.3476562, -2.5273438, 2.0195312, -0.9321289, -1.3066406, -1.7832031, -0.09075928, 0.3581543, -0.95166016, -0.88183594, 1.8027344, -1.546875, -0.3413086, -1.4140625, -0.82421875, 2.6523438, -0.60791016, 1.8476562, 0.98095703, -1.9023438, -0.7451172, 2.8554688, -0.81933594, -2.8574219, 0.17016602, 0.38061523, -1.9716797, -0.23901367, 4.9765625, -1.2910156, -2.4550781, 0.017913818, -0.07659912, -3.6425781, -2.0429688, 0.8828125, -1.9375, 0.84814453, 1.1533203, -1.5390625, -3.671875, 0.48339844, -2.7480469, 1.7382812, 1.5693359, 2.3144531, 2.0488281, 0.57714844, 1.0664062, 0.13647461, -0.3713379, -1.7353516, -3.1230469, 1.6855469, -1.53125, -1.4306641, 0.019256592, -1.4140625, 1.1552734, -0.05203247, -0.6015625, 1.5820312, 0.2590332, -1.5625, 3.2363281, 0.46679688, 3.3574219, 1.3203125, -0.34350586, 0.5551758, -2.2929688, -0.21520996, -0.5629883, -0.4975586, 2.0917969, 4.2460938, -0.28295898, 0.83984375, -0.9667969, 2.4667969, 1.4931641, 0.3815918, -0.39160156, -2.8769531, -1.5957031, -2.7324219, 0.9980469, -1.7128906, -1.125, 1.7998047, -0.9951172, -1.4052734, -1.8212891, 1.4404297, 1.4121094, -1.9599609, -3.171875, 1.6044922, -2.7753906, 0.21582031, -0.22839355, -1.0214844, -0.71435547, 0.34887695, -3.6347656, 2.0761719, 0.89697266, 2.2675781, -2.0078125, 2.2128906, 2.5839844, 1.9902344, -3.2246094, -1.7480469, 1.0175781, 0.8535156, 1.9335938, 1.0009766, -1.8027344, 0.3701172, 0.30786133, 1.6367188, -0.51171875, -1.0097656, 3.8613281, -0.17443848, 0.36083984, 0.5629883, -0.546875, -1.1044922, 2.0703125, -1.328125, -1.2070312, 0.034301758, -1.4150391, 1.7138672, -1.3154297, -0.35839844, 0.051208496, -1.2763672, 1.0400391, -1.6279297, -0.3918457, -0.7011719, -1.5683594, 1.9335938, 0.9555664, -1.3339844, -1.3808594, 0.26489258, 0.43164062, -2.9589844, -0.9707031, -1.6611328, 0.86279297, 0.0115356445, 0.3479004, 0.8623047, -1.8847656, 1.9238281, -0.9199219, 0.2705078, -0.7504883, 0.9243164, -0.76904297, 1.6035156, 1.8232422, -1.4121094, 1.0693359, -0.37280273, 4.9921875, -1.7578125, 1.7919922, 1.8271484, 1.6914062, -1.7871094, -0.067993164, 1.9316406, 1.6347656, -0.35766602, -0.27197266, -0.58496094, -0.18261719, 2.0371094, -1.6015625, -0.38208008, 0.29467773, -0.49536133, -2.5644531, -2.1074219, -2.1347656, 2.5507812, 3.5546875, -2.4316406, 1.6572266, 1.9296875, -0.8359375, -0.020187378, 0.19506836, 0.97558594, -0.5751953, 0.5366211, 1.0556641, 0.57177734, 0.14587402, -3.2226562, -2.2988281, -0.09460449, -1.3632812, -2.3046875, 1.5917969, -0.05621338, -1.5214844, 1.2460938, 0.37060547, -2.0878906, -2.2929688, 2.1464844, -0.41381836, 0.36889648, -0.50341797, 2.0234375, 0.13806152, 0.24572754, 1.0087891, -0.31982422, -1.5371094, 1.3916016, 1.8378906, 2.0214844, -0.2956543, -1.2841797, 0.3166504, -1.2021484, -1.0126953, -0.6567383, -0.53515625, 1.2431641, 0.17175293, -3.3359375, 4.1484375, -1.6318359, -0.31347656, 0.47094727, -2.1328125, -0.83203125, 0.20776367, 1.8955078, 0.86621094, 0.19482422, 0.18273926, -0.27661133, -0.7441406, 0.28271484, -2.7363281, -1.4541016, 0.66845703, -0.08770752, -1.5693359, -0.3569336, -0.36254883, -0.85791016, -0.9790039, 0.53027344, -2.6074219, 1.9355469, 1.4443359, 0.31054688, 0.8642578, -1.5078125, -1.8925781, -0.46533203, 0.7246094, -0.70996094, -0.20495605, 0.8417969, -1.4140625, -1.1826172, -2.1074219, 2.0664062, 0.10626221, -0.73535156, -2.1328125, -2.21875, -0.06958008, -1.1992188, 0.15966797, 1.5576172, -0.5078125, -3.9550781, -0.068725586, 0.4020996, -3.9101562, -0.9238281, -0.10003662, -1.4931641, 1.7939453, -0.009635925, -0.066467285, 1.0517578, -3.6914062, 1.6416016, -0.8823242, -1.5009766, -1.0791016, -0.045928955, -0.5136719, -0.70996094, -0.19177246, 1.0947266, 1.4257812, 1.9863281, 2.7460938, -0.50341797, -3.1835938, -0.50146484, -2.0175781, -1.2685547, -2.1132812, -0.8613281, -3.6621094, -1.0732422, 1.2636719, -0.66552734, 2.4960938, 0.14746094, 1.6201172, -0.37158203, -0.4736328, 2.2792969, -0.083984375, -2.0019531, -1.5058594, -0.36669922, -0.96972656, -0.21862793, -3.0097656, -0.82470703, -1.2783203, -0.20825195, -1.3710938, -1.3154297, -0.074157715, 0.85595703, -1.5068359, -2.0097656, -0.6015625, -0.06341553, -1.1289062, -0.8774414, -1.1259766, -2.3125, -3.1835938, -0.12133789, -1.6347656, 2.5371094, -0.66259766, 0.39160156, 0.75634766, -0.94433594, 2.9785156, -1.4238281, -4.1640625, 1.4990234, 1.140625, 0.13171387, -0.30517578, 1.0585938, -2.7460938, -0.83935547, -1.7275391, 2.7109375, 1.4785156, 1.3154297, 1.5351562, -0.5336914, 0.97753906, -0.15759277, 0.15283203, -0.8828125, 1.4140625, 3.3457031, -1.8730469, -0.16271973, -0.27954102, 0.0446167, -0.8227539, -0.06976318, 2.0839844, -0.63427734, 1.6337891, 2.3125, 0.75878906, 2.3613281, 0.8027344, 3.6875, -1.7949219, 1.9677734, 1.5332031, -2.1132812, 3.2480469, -0.09625244, 1.8945312, 2.8925781, -0.14379883, 1.1630859, 0.5854492, 0.11907959, 0.61083984, 1.0556641, 1.3046875, 1.8496094, -0.29125977, 2.4296875, -0.69921875, -0.72216797, 1.2324219, -1.5927734, 0.64746094, -0.9765625, -0.24829102, 2.5917969, -0.31640625, -1.1425781, 0.9716797, -0.45996094, -1.4267578, -1.8779297, -0.30078125, -1.2558594, -2.8730469, 0.6040039, -2.7714844, -1.5419922, -2.140625, 3.0390625, 0.19897461, -1.3769531, -0.72265625, 2.140625, 0.10205078, -1.9082031, 1.734375, 2.1484375, -0.48632812, 1.0576172, 1.5292969, -2.4316406, 1.1240234, -3.6171875, 2.53125, 2.4726562, -1.5439453, -1.1083984, 1.5673828, -0.36572266, -1.8701172, 0.7919922, 2.4492188, 1.1347656, -0.6879883, -1.0283203, -1.921875, 0.043395996, -0.3034668, -2.8046875, -0.72216797, 2.1445312, 0.18579102, 0.9423828, -0.17456055, 0.28808594, -0.3413086, -1.3222656, 0.68066406, -1.6552734, 0.94970703, -0.34375, -3.9433594, -0.18200684, -0.7290039, -1.2851562, 2.0371094, 1.6171875, 0.86035156, 2.1582031, -0.56884766, 0.14172363, 1.1582031, -2.2519531, -0.91308594, -0.71191406, -0.5097656, 0.8388672, 1.6445312, -1.8759766, -1.0390625, -0.8901367, -2.3046875, 1.5107422, 0.7636719, -1.8691406, 0.29785156, -2.3398438, 0.7207031, -1.7705078, -0.48339844, 1.546875, 0.3959961, -1.3232422, 0.73828125, 0.39697266, 1.4326172, 0.019744873, -1.1269531, 0.44506836, -1.59375, -1.6621094, -1.03125, 1.9160156, 2.1835938, -1.21875, -2.203125, -0.6459961, 0.625, -0.27978516, 0.93652344, -1.1582031, -0.29614258, -0.22241211, 0.6298828, -0.6328125, 1.1171875, 1.1494141, -0.9160156, -2.3066406, 0.045562744, -2.1816406, -0.91064453, -1.0361328, -0.7998047, 0.34399414, 2.1210938, -1.4384766, -2.2519531, 2.0703125, -0.4501953, 0.88720703, -2.6933594, 3.7636719, 0.75439453, 2.5878906, 2.9589844, -1.6806641, 1.2128906, 1.5449219, -2.4296875, 1.5478516, 1.7392578, -1.9316406, 2.2480469, -0.94384766, 1.4960938, -2.9882812, -1.3339844, -1.3574219, -0.7753906, -0.91064453, -2.9453125, 3.0761719, 0.80615234, 0.89404297, 1.5498047, -2.6328125, 2.7050781, -0.45874023, 1.4570312, 0.75390625, 0.115600586, -0.29858398, 1.8769531, 0.65966797, -0.19006348, 2.3789062, -0.33911133, -0.99316406, -1.3447266, -1.7197266, -0.8144531, 2.2226562, -1.9853516, -2.4433594, 0.18334961, 0.53808594, -0.16723633, -1.6083984, 1.7109375, 4.4101562, -1.3652344, 2.0917969, 0.8984375, -0.7607422, 0.9746094, 2.4375, -1.8291016, 1.2744141, 0.26879883, -1.0976562, 2.8925781, -0.20959473, -3.8242188, -0.07183838, 1.6474609, -1.6318359, 1.3388672, -1.5107422, -1.9619141, 2.15625, -1.9580078, 0.55029297, 0.56347656, -0.4501953, 0.45776367, -1.0859375, 1.4345703, -1.8076172, 0.8125, 2.6796875, -0.7133789, -3.5820312, 1.8583984, 0.26391602, -0.93603516, -2.0390625, 0.35107422, -2.9589844, -1.3496094, 1.8632812, 0.27905273, 0.96484375, 0.7558594, 1.0302734, -3.7070312, 0.63964844, -1.78125, 2.6972656, -1.5869141, 0.03829956, 2.3652344, -2.8125, -2.3203125, -1.3134766, 0.58496094, 1.5976562, 1.2646484, 3.0800781, 0.46557617, 0.5761719, -0.8666992, -2.9570312, -2.9550781, -1.7236328, 0.2298584, -1.6289062, 2.4121094, 1.46875, 0.47192383, 0.43603516, 0.07196045, 0.72998047, -0.68847656, 1.0537109, -0.7871094, -2.015625, -1.5146484, -2.2089844, -2.2050781, 0.58447266, 0.80126953, 1.7705078, -1.2802734, -3.8613281, 0.63964844, 1.421875, -3.1152344, -1.0322266, 3.0449219, 0.8251953, 1.5517578, -0.26904297, -0.5258789, -0.9296875, 2.9179688, 0.61572266, -0.5986328, 1.2998047, 0.2487793, 0.48828125, 0.44799805, -0.53466797, 2.2480469, -1.8134766, 0.08074951, 1.4794922, -1.1738281, 1.8457031, 0.093688965, 0.76953125, 0.92041016, 1.1074219, 2.0683594, 0.734375, 0.1640625, -1.9472656, -0.18713379, -2.640625, -3.359375, -0.57666016, -2.3808594, -3.4746094, -1.8212891, 0.6015625, 3.5371094, 2.3203125, 0.96777344, 1.8027344, 2.2265625, -1.3320312, 0.113220215, -0.7060547, 0.56103516, 0.88623047, -0.88134766, -0.9926758, -1.15625, 2.265625, 0.89208984, -0.8378906, -0.5073242, 1.0146484, -2.296875, 0.25024414, 1.6962891, 1.7861328, 0.44995117, 0.6455078, 1.2363281, -0.101501465, 2.4726562, -0.63183594, 2.4667969, -0.51220703, 1.7548828, -1.9960938, 3.2402344, -0.056610107, -1.0400391, -0.1673584, -1.0966797, 1.109375, 0.13696289, -1.9814453, -0.18481445, -1.6611328, 0.0004644394, -1.7177734, -2.0976562, -4.8007812, 1.5673828, -0.78466797, -1.1503906, -1.9013672, 3.5136719, 1.4794922, 3.1386719, 2.8496094, 0.08782959, -0.15979004, -0.01348114, -1.3320312, -0.5644531, 2.0410156, -1.6591797, 1.1582031, -1.7539062, -0.8076172, -1.2529297, 0.5644531, 0.7817383, 1.765625, 2.3945312, 1.6962891, 2.6953125, 1.3232422, 1.4306641, 0.35620117, 1.2402344, 0.24645996, -3.3613281, 0.3798828, 3.4648438, 1.9189453, 1.5683594, -1.7255859, 0.92285156, 1.1679688, 0.58935547, 1.0615234, 2.3925781, 0.8383789, -3.5410156, 1.1513672, -0.38989258, 1.6337891, 0.3100586, -0.29467773, -1.3203125, -0.8417969, -0.7260742, 2.1015625, 3.0507812, -1.0400391, 1.5732422, 0.9243164, 2.5, 1.1494141, -1.3476562, 0.5024414, 2.9160156, -2.7792969, -1.0097656, -0.15588379, 1.3349609, 2.0410156, 0.30444336, 1.2929688, 1.5478516, 1.7597656, 0.8955078, 0.30639648, 0.8232422, 0.890625, 1.9453125, 0.66064453, -2.1347656, -3.796875, -0.71728516, -1.0673828, -1.0712891, 1.265625, 1.8095703, 3.0761719, 0.5395508, -3.90625, 1.4111328, 1.015625, 3.2890625, -0.84033203, 0.5209961, -0.80615234, -2.5253906, -0.44335938, 1.5205078, -1.5830078, 2.2539062, 0.68847656, -1.3564453, 2.5976562, 0.70996094, 2.4960938, 0.70458984, 2.5488281, -0.6113281, 1.1728516, -0.096191406, 1.2207031, 2.1308594, -0.97753906, -0.22924805, 1.4384766, -1.0859375, 1.6904297, 2.8984375, -2.1894531, 0.7246094, 1.0615234, 1.1894531, -1.5683594, -2.1875, -0.07727051, -1.0791016, 1.3007812, -1.7333984, -0.2298584, 1.5332031, 2.3671875, 1.078125, 0.9248047, 0.38256836, -0.39257812, 3.5761719, 0.5522461, -1.8886719, 0.21032715, 0.81933594, -0.0107040405, 0.34277344, 0.19799805, -1.5078125, 1.484375, 0.27978516, -0.84716797, -0.26293945, 0.70410156, 0.49658203, -0.08123779, -1.3134766, -1.3837891, -0.40112305, 1.1005859, -0.84765625, 0.9609375, 0.7944336, 1.9082031, -2.3378906, -1.328125, -0.43798828, -0.9248047, 1.0859375, -1.9052734, 1.8935547, 3.0175781, 1.7470703, -0.95751953, -0.0619812, -3.421875, -0.5053711, -1.2783203, 1.2773438, 0.73583984, 0.4189453, 0.31884766, -1.7597656, 2.2070312, -0.029937744, -1.0039062, -0.97558594, 0.1920166, 1.3125, -0.3215332, 0.72753906, 0.11743164, 1.2910156, 1.3798828, 2.3652344, 1.5292969, -0.5727539, 2.4140625, 1.9433594, 0.6660156, -2.90625, 2.28125, 1.1503906, 2.3046875, -1.5488281, 1.9023438, 1.3203125, -1.3945312, -0.0025730133, -2.4042969, -0.057281494]}, "B07N12VXHK": {"id": "B07N12VXHK", "original": "Brand: Simplistex\nName: Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills\nDescription: BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18\" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!\nFeatures: The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools.\nExtra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18\" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here!\nOur grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come.\nOur BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point!\n1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!\n", "embedding": [-1.4814453, 2.7617188, 1.6816406, -2.1308594, 0.0036239624, 0.097351074, -1.5449219, -1.7763672, 1.65625, 0.24145508, -1.1201172, 0.14001465, -0.3955078, -2.1230469, -1.9824219, -0.07952881, 0.28686523, 1.5253906, 2.2988281, 1.5849609, 1.3232422, -0.001964569, 0.8569336, -1.0351562, 1.7324219, -0.73046875, 3.9511719, -2.3125, 1.9521484, -0.42114258, 1.4433594, 0.5859375, -0.37158203, 2.1191406, -3.6796875, 0.6152344, -0.70947266, 1.4814453, -0.6738281, -0.73876953, 0.068115234, -0.37109375, 1.6074219, 0.73291016, -3.3496094, 1.4677734, -0.5361328, 1.7773438, -1.8964844, -4.3515625, 1.5576172, 1.8740234, 1.4248047, 1.4140625, -2.5136719, 1.3183594, -1.1005859, -4.1367188, 2.3808594, -0.4206543, 3.1289062, -1.5908203, 0.6484375, 0.6274414, 1.4296875, 0.08117676, 1.9853516, -1.6035156, 0.5576172, -0.29833984, -1.1611328, 0.23669434, -1.1933594, -0.8017578, -1.0449219, 0.9819336, -0.6352539, 2.1328125, 0.37695312, -0.06072998, -1.5712891, 4.2109375, -1.1611328, -3.1933594, -0.23547363, -2.0058594, -0.53466797, 0.39404297, 0.7246094, -2.40625, -0.83984375, 1.5488281, -2.0878906, -4.765625, 1.4697266, -2.484375, 1.9912109, -0.050750732, 0.34057617, 1.6855469, -2.5566406, 0.10858154, -0.04559326, -0.5493164, -0.51708984, -0.3918457, 2.921875, 1.7929688, -1.3789062, -1.2236328, -1.2001953, 1.9121094, -0.2401123, 0.30981445, -1.2617188, 0.11303711, -1.0175781, 1.0175781, -0.9472656, 2.2753906, 2.2011719, 0.6489258, -0.49731445, -0.41748047, 0.51220703, 0.8540039, -0.22045898, 3.140625, 3.1796875, -0.59716797, -1.1289062, -1.484375, -1.4033203, -2.1484375, 1.9960938, -3.0683594, -1.1542969, 0.048095703, -0.93603516, 3.8007812, -0.20739746, -0.578125, 2.6367188, -1.1376953, -2.3320312, 0.40405273, -0.2442627, 0.1282959, -0.13061523, -0.7270508, 1.0585938, -1.4667969, 1.1259766, -1.7685547, 3.7363281, -0.10699463, 0.56640625, -0.5908203, 2.2265625, 2.9121094, -0.3161621, -2.0507812, 0.05935669, 0.8432617, 1.4892578, -4.5078125, -0.3479004, 3.1777344, 0.484375, 1.4199219, 0.18115234, -2.5820312, -0.49536133, -0.78125, -0.4099121, -0.031982422, 0.8569336, 3.0996094, -0.8647461, -0.27905273, 1.1513672, -2.4023438, 1.2109375, 1.2333984, 0.45825195, -0.93310547, 2.1152344, 0.07922363, 0.5292969, -0.7084961, 1.3476562, 1.7558594, -1.3671875, -0.08093262, 0.026947021, -3.1523438, -0.9238281, -2.5175781, -1.3896484, 0.61865234, -1.1025391, -3.6972656, 0.25756836, -0.7050781, -1.3320312, -0.7890625, -0.99365234, 0.18322754, 2.0742188, 2.4902344, 1.3720703, -1.796875, 1.5634766, -1.0380859, 0.26049805, -1.6523438, 0.86083984, -0.5131836, 2.2851562, 1.2626953, -1.7197266, -0.7578125, -2.5371094, 2.7265625, 2.5292969, 0.3022461, -1.1494141, 1.7578125, -0.23803711, 0.91845703, 1.4384766, 1.1298828, -0.7397461, 0.13146973, -0.7236328, 0.7236328, 1.9472656, -2.4765625, -2.9511719, -0.4099121, 0.20495605, -1.9375, -0.64941406, 0.07623291, 0.91308594, -2.03125, -0.5283203, 1.1416016, -0.26708984, -2.6894531, -0.4033203, 2.8085938, 2.5917969, 1.0791016, 1.2626953, 1.1748047, -1.2304688, 1.3330078, -3.4082031, -0.10168457, 1.7158203, -0.36791992, 1.4882812, 0.105163574, 1.9853516, -1.5478516, 2.9453125, -2.2324219, 0.29296875, -0.88916016, -0.088256836, 0.5644531, 0.81591797, 0.107299805, 1.5449219, 0.3095703, -0.6328125, 0.24279785, 1.4833984, -2.1523438, 0.08215332, 0.69677734, 3.2148438, -1.5371094, -0.03201294, -1.6582031, -0.5336914, -1.2021484, 1.2402344, 0.8852539, 5.3945312, 1.2919922, -2.8574219, 3.09375, -1.7519531, 0.16796875, 1.9316406, 1.0771484, -1.0019531, -1.9208984, 1.3017578, 1.5371094, 0.9296875, 1.7167969, -0.46728516, 1.1738281, 1.1767578, -1.8984375, -0.7558594, 1.6992188, -3.1171875, -0.66748047, 0.8261719, 0.7607422, -1.9873047, -0.81689453, -2.6894531, -0.5463867, 1.2675781, -0.7895508, 0.51953125, 1.1484375, 1.2099609, -1.4560547, -0.78564453, 1.4296875, -1.9658203, 0.79248047, 0.7573242, 0.8178711, 0.7910156, 0.43847656, -0.24450684, -0.84765625, -0.63916016, 0.2697754, -0.37841797, -0.90478516, 1.15625, -1.0283203, 0.016723633, -0.64941406, -1.3681641, 0.7753906, -0.8203125, -0.7426758, -2.8945312, -1.9072266, 0.044891357, -0.38842773, -1.0517578, -0.045410156, 1.5986328, -0.703125, 0.6113281, -0.98046875, 1.3486328, 0.6279297, 0.10546875, 0.71533203, -1.1748047, -0.3581543, 0.1538086, 2.4785156, -0.15734863, 0.2685547, 0.45532227, -2.7988281, 0.029968262, -0.95654297, 0.12219238, -0.25952148, 1.5058594, 0.40722656, -1.3535156, -1.4384766, 1.4121094, 0.042907715, -1.4091797, 3.1308594, -0.43676758, -1.4960938, 0.26049805, -0.08258057, -0.8491211, -1.9345703, 2.2753906, 0.009750366, -0.15222168, -2.03125, 0.6845703, -1.0771484, -1.7744141, -1.9746094, 2.5371094, -1.0869141, 0.72021484, -1.8134766, -3.0605469, 0.6435547, 1.3046875, 1.3808594, -0.67041016, -1.5078125, -0.4260254, -1.1162109, 0.7998047, -1.9912109, 0.37036133, -1.3261719, -1.8632812, 0.8979492, -0.4326172, -1.2626953, 1.7236328, -1.0742188, 0.671875, -0.81347656, -2.2480469, -0.74560547, 1.4521484, -0.50097656, -0.3581543, -2.2382812, 4.375, 0.088134766, 2.421875, -0.5517578, 0.73046875, 0.9375, 1.0322266, -0.46166992, -1.3896484, 2.0703125, 1.3271484, -1.9257812, -1.3300781, 1.9111328, -1.2373047, -2.3613281, 3.5722656, -1.1220703, 2.4609375, 2.2421875, 1.6923828, 0.11517334, 0.46606445, -1.2724609, 1.1425781, 1.1074219, -0.46850586, -2.6894531, 0.81396484, -0.49316406, -1.0400391, 0.011734009, 0.46801758, 1.2167969, 1.7597656, 1.3925781, -0.08392334, -2.1699219, 1.2324219, -0.14672852, 2.2109375, 0.109375, 1.5087891, -0.12249756, -1.7402344, 0.022918701, -0.2286377, 1.0507812, -2.3359375, 0.39379883, 3.0117188, 0.36035156, 0.14453125, -0.9316406, -0.55859375, -1.6328125, -2.4726562, 1.1865234, -1.0625, -1.2900391, 0.6513672, -0.58984375, 0.22155762, -0.8256836, 3.2460938, -0.20715332, -0.7246094, -0.34326172, 0.296875, 0.17944336, -0.11633301, -2.7539062, 2.7890625, 0.20446777, 1.8955078, -0.5834961, -1.1621094, 2.9589844, -3.5507812, -0.18884277, 0.35864258, -2.765625, -0.5649414, -0.82421875, 0.028015137, 1.6220703, 0.6176758, 0.42285156, 1.2851562, 0.7368164, -0.76953125, -1.2587891, 2.0214844, -1.2900391, -1.3671875, -0.89404297, 0.25878906, 2.046875, 1.0117188, 0.68847656, 3.578125, 2.3828125, -3.3515625, -1.8369141, -5.2148438, -1.1367188, -1.9277344, -2.5605469, 0.118896484, 2.9804688, 1.0820312, 1.1494141, 1.1835938, 0.6767578, 4.7070312, 1.2431641, -2.15625, 0.9291992, -0.6982422, 1.8857422, -0.52685547, 0.4020996, 1.7792969, -0.2697754, 0.47216797, -1.5175781, 0.51708984, -2.7792969, 0.9868164, -0.6611328, -0.2529297, -0.9067383, 0.6225586, 0.024169922, 0.43823242, -0.7915039, 0.17272949, -0.9614258, 0.056427002, -0.5800781, 0.6152344, -1.1142578, 1.6386719, -2.2421875, 0.56152344, -0.18005371, -2.2714844, -2.2871094, -0.48754883, 2.7617188, -0.75390625, -1.0380859, 0.5048828, -0.85253906, -0.890625, 0.7871094, 0.7236328, 0.54541016, -2.734375, 2.2050781, 0.30029297, -0.87646484, 3.0976562, 0.13452148, -2.4902344, -2.1503906, 1.7509766, -3.2695312, -2.1054688, 0.8383789, -2.3808594, 1.2353516, 0.41577148, -1.3535156, 2.2089844, -0.37109375, 0.5185547, -0.055755615, 2.0585938, 1.875, -1.2558594, 4.2929688, -1.5410156, -0.59277344, 1.6054688, -2.4472656, -1.7646484, 0.38671875, -0.3935547, -0.5839844, 1.3105469, 1.4160156, -0.03842163, 0.734375, -0.41870117, 1.1054688, -0.6459961, -2.7949219, 2.3652344, -1.4980469, 0.3713379, 0.53466797, -1.4189453, 0.6538086, -0.5703125, 1.6689453, 1.8427734, 0.79003906, -1.0263672, -0.5678711, 0.6972656, 0.014564514, -1.1650391, 1.875, 2.2949219, -1.2294922, 0.004085541, 1.9912109, 1.0449219, -3.0546875, -0.36572266, 1.0058594, 0.98339844, -0.21130371, 0.5678711, 0.68359375, 1.4179688, -1.4882812, 1.7578125, 0.026855469, -3.0976562, 1.7011719, 1.0322266, -2.8535156, 1.2060547, -0.78564453, -0.7651367, 1.0371094, 0.056396484, -1.5488281, 1.7128906, 1.5751953, -1.3574219, -0.8076172, -3.0703125, 0.39282227, 0.83154297, -1.6269531, 1.4619141, -1.1435547, -2.0820312, 1.2363281, 0.45288086, -0.19372559, 1.1533203, 1.1201172, 3.6269531, -0.1817627, -0.9511719, 0.37182617, -0.859375, 1.2666016, -1.3349609, -2.6367188, -2.6914062, -0.17077637, 0.76464844, 2.2636719, 0.60498047, 1.6972656, 1.2363281, -0.6982422, 1.9951172, -1.6503906, 2.1738281, -1.0351562, 0.8798828, 1.0869141, -2.8027344, 0.06719971, 0.05303955, 2.0371094, 1.1523438, 0.42260742, -0.13549805, -2.03125, -2.4746094, 0.9243164, -1.1230469, -3.5605469, 0.48901367, -1.0830078, 1.2148438, 1.3535156, -0.99658203, 0.9067383, 0.5136719, -1.9345703, -0.17382812, 0.9291992, -0.47314453, 1.21875, -0.07244873, -1.3652344, -0.017929077, 0.3564453, 0.3154297, 0.34765625, 3.3808594, -0.6220703, -1.4873047, 0.8232422, 1.8183594, -3.0917969, -3.09375, 1.0175781, -0.6826172, -2.5136719, 0.4855957, -0.6982422, -2.0703125, -0.8847656, -1.2363281, -1.9619141, -0.76416016, -0.5703125, 0.32055664, -2.1640625, -1.4365234, 1.8603516, -3.5664062, 0.9560547, 1.3945312, -0.086364746, 3.3222656, 1.1386719, -1.6679688, 0.18322754, -0.7495117, 1.2402344, 1.2294922, 1.5117188, 0.16760254, 0.4572754, -3.5957031, -0.96435547, 0.23376465, -0.29589844, 2.4160156, -1.8613281, -0.65966797, 1.1123047, -1.09375, -1.0185547, -1.8544922, 0.4560547, -1.9169922, 1.3017578, 0.18054199, 3.3261719, -0.011482239, -0.37817383, 0.5332031, -1.7314453, 0.08087158, 0.54052734, -1.1914062, -0.32055664, -0.32714844, -1.2109375, 0.068481445, 0.011054993, 1.6367188, 1.75, 0.8105469, -1.6855469, -2.1464844, 0.9355469, -1.6611328, 1.6015625, 1.5175781, 0.73828125, -0.5488281, 4.2851562, -0.89697266, -3.9414062, 0.85058594, -2.1054688, 1.0419922, 1.8261719, -2.1503906, -0.17529297, -0.7524414, 2.5644531, -2.6933594, 0.32788086, -1.9375, 2.0898438, 0.031021118, -0.49047852, -0.0925293, 4.5390625, 0.6323242, 3.3671875, 3.5175781, -1.5068359, -0.7529297, -1.4521484, -0.23571777, -0.21557617, -0.5151367, -0.46826172, 0.83740234, 0.14916992, 0.2841797, -0.7397461, 0.98876953, 1.6015625, 0.17468262, -1.203125, 1.9003906, 0.2590332, 4.1445312, 4.0039062, -0.1932373, 2.5078125, 1.2841797, -0.31323242, 0.28833008, 4.59375, -0.68359375, -0.59472656, -0.09692383, 1.3300781, -0.7680664, 2.0488281, -0.58154297, 0.77685547, -0.99072266, -1.8291016, 1.6279297, 1.2392578, -1.5458984, -1.3457031, 0.70947266, -2.6074219, -1.2509766, 0.45947266, 0.16113281, 1.890625, 1.1699219, -0.28051758, -2.2050781, -1.984375, 1.8261719, -2.5195312, -0.117492676, -0.85791016, -1.2255859, -3.0917969, 1.3388672, 1.9033203, 0.9121094, 0.27416992, 0.10699463, 1.2392578, 0.67333984, 1.0263672, 0.50146484, -0.5996094, 1.015625, 1.2089844, -2.0917969, -1.5595703, -2.1640625, 1.0078125, -1.375, 1.1542969, 2.2890625, 2.1210938, 0.7890625, 0.40161133, -4.859375, 0.5371094, 0.6298828, 0.10827637, -1.3515625, -1.9296875, 1.9667969, -0.25463867, -0.6147461, 0.7871094, -0.23413086, 1.9667969, 0.41186523, -2.5019531, 0.97265625, -0.10571289, 0.4506836, 0.77246094, 2.3535156, -3.1425781, 0.050109863, -0.86083984, 2.5253906, -0.43188477, 0.09631348, 0.76904297, 1.953125, 0.44433594, 2.203125, 1.0986328, 0.18811035, 0.3100586, -2.5019531, 1.3164062, -0.46679688, 0.39648438, -2.5527344, 1.8310547, 0.15356445, -0.4267578, -0.89160156, 2.9414062, 0.875, 1.1855469, 1.90625, -0.25268555, -0.66552734, 0.04937744, 1.4248047, -0.11407471, -0.99365234, -1.0556641, 0.20800781, -0.16809082, -2.3671875, 0.22729492, 1.2119141, -1.1376953, -2.4609375, 1.1376953, -0.13671875, -0.21386719, 1.0576172, -1.2539062, -1.9912109, 0.41748047, 0.5126953, -0.6796875, 0.81884766, 1.6542969, 0.100097656, -1.9482422, -0.39624023, -0.7114258, -1.7119141, 0.084350586, -2.2578125, 0.008636475, 3.2695312, 1.4257812, 1.3183594, -0.9760742, -0.09887695, 1.2792969, 0.48583984, 1.0214844, 0.07513428, -1.0576172, -1.4052734, -0.20507812, 2.65625, 0.73095703, -2.0136719, -2.5214844, -0.24169922, -3.0234375, 0.26538086, 1.3632812, -1.7333984, -0.041656494, 0.74365234, 2.2636719, 0.35351562, 1.2949219, 2.6113281, 3.1835938, 0.36132812, -1.5742188, 0.7885742, -0.14318848, 2.2089844, -0.2064209, 0.29589844, 0.8666992, 1.0830078, -0.58203125, -0.69189453, 0.14953613]}, "B00823W9B0": {"id": "B00823W9B0", "original": "Brand: Mr. Heater\nName: Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)\nDescription: \nFeatures: Portable heat\nEfficient radiant heating\n1 year warranty\nQuiet operation\nSturdy construction\n", "embedding": [-0.032806396, 0.60498047, 1.6796875, 0.7558594, -0.6850586, -0.74316406, 1.5478516, -1.8125, 0.5527344, 0.40966797, 1.1230469, 0.171875, -0.4621582, -2.8359375, 1.3144531, -1.6953125, 0.49658203, 0.52734375, 2.3203125, -0.53271484, 0.2290039, 0.14904785, 0.6425781, -1.8007812, 2.2382812, 1.0986328, 4.4492188, -2.6367188, -0.40527344, 0.203125, 0.23461914, 1.4609375, -0.4074707, 1.3730469, -0.46655273, -1.2587891, -3.1757812, 0.4248047, -3.7890625, -0.75341797, -2.1191406, -0.7861328, -0.18017578, 0.8261719, -1.5019531, -1.4570312, 0.21984863, -1.2558594, -0.5029297, 0.17773438, -0.6660156, -0.25439453, 0.23022461, 0.13793945, -1.4423828, -1.1787109, -1.640625, -3.2519531, 1.6992188, 0.5805664, 1.0888672, -1.7548828, -2.3398438, 1.2216797, 0.69628906, 1.3359375, 0.4580078, -1.2744141, -0.88671875, 1.1474609, 2.1289062, 0.25317383, 0.050354004, -1.0087891, 0.1161499, -0.34204102, -1.5712891, 0.39501953, 2.4179688, -0.98339844, -0.47558594, 2.5898438, 0.29345703, 1.0273438, -0.6274414, -2.0898438, -0.52441406, 0.61816406, 1.7890625, 0.7060547, -2.6621094, 1.7109375, -0.6870117, -4.5742188, 0.79345703, -1.1953125, 0.08496094, 0.0670166, 0.1307373, 1.8505859, 1.7490234, 0.42749023, 0.8408203, -0.8652344, -1.5244141, -0.9448242, -0.35791016, 0.9267578, -0.41601562, 1.7636719, -2.0078125, -0.10925293, 2.5429688, 0.36743164, -2.75, -0.097961426, 0.7001953, 2.9980469, 4.578125, 2.1699219, 3.6933594, -2.0722656, 2.3085938, -1.2529297, 0.77001953, 0.8144531, -0.048095703, 0.5078125, 1.6171875, -2.6523438, 3.9921875, 0.51904297, 0.8979492, 0.6850586, 0.5522461, -1.2109375, -1.4804688, -1.7646484, -2.8398438, -1.5722656, -1.2558594, 0.85253906, 2.0039062, -0.4506836, -3.1738281, -2.0039062, 0.12335205, 0.19934082, -1.1259766, -2.0722656, -0.23254395, -2.7519531, -0.38989258, 0.92822266, 0.5859375, 2.4960938, -0.6855469, -0.9140625, 2.2910156, 2.1386719, 1.2998047, 0.41748047, -1.4775391, 1.3330078, -0.75097656, -3.1972656, 0.84033203, 1.1318359, -0.5283203, 2.8515625, 0.39404297, -2.7070312, -0.37182617, -1.2050781, -0.15942383, -2.2675781, 1.1552734, 2.0507812, -0.35839844, -0.20031738, -4.0585938, -0.54345703, -0.011543274, -0.57958984, 1.5458984, -0.9560547, -1.3242188, -1.7480469, 0.3708496, 0.37719727, -0.8120117, 0.054229736, -0.7836914, 0.66552734, -0.91503906, -2.2109375, -2.2207031, -1.9960938, 3.6855469, 1.0263672, -2.0761719, 1.2216797, -1.6826172, -1.1259766, -2.2753906, -2.5566406, 1.1064453, -0.36694336, 1.1650391, 1.7880859, 1.0068359, -0.73828125, 2.1386719, -0.7993164, -0.10357666, -3.0332031, 1.1279297, -0.94873047, 2.3222656, 2.7109375, -0.59716797, 0.005897522, -0.4970703, -0.111083984, -1.2001953, 3.2421875, 0.79589844, 0.9638672, -1.8720703, -1.3193359, 2.4941406, 1.7958984, 0.66552734, 1.0332031, -0.5385742, 1.359375, 1.4042969, 0.47070312, 0.8095703, 0.6582031, 1.3955078, -0.41064453, -0.50634766, -1.1425781, 0.4338379, 1.8378906, -0.20544434, 1.2841797, 0.6777344, 0.8105469, 0.6894531, -1.0263672, -0.12011719, -0.9682617, -2.703125, 1.0986328, 0.8823242, 0.50390625, 0.24206543, -2.1757812, -0.2709961, 1.2441406, -0.06530762, 0.61328125, -0.33618164, -0.42993164, 2.8085938, 1.4072266, -1.1435547, 0.5292969, 0.36791992, 3.8515625, 0.6225586, 0.86328125, 2.234375, 1.7460938, 0.059539795, 3.2910156, -1.2587891, 1.2929688, 0.8486328, -0.24523926, -0.014884949, -1.0234375, -0.82128906, 0.33740234, -0.26367188, 0.95458984, -2.3027344, 0.29663086, 4.0234375, -0.8388672, 0.21789551, 1.3779297, -0.65722656, 1.7324219, 2.7460938, -1.3720703, -1.0556641, -0.51123047, 1.2255859, 1.5976562, -1.3984375, 1.2783203, -1.4912109, -1.6513672, 0.28588867, -0.5019531, -0.26367188, 0.90234375, 3.0332031, -1.2216797, -2.4042969, -1.5634766, -4.21875, -0.5966797, 1.3837891, -4.6875, 0.9916992, 1.7724609, 0.96240234, 0.3095703, 0.9819336, -1.015625, 0.28759766, 0.49926758, 0.11242676, 2.2753906, -0.36083984, -0.50390625, 1.0185547, -1.4160156, 1.1298828, -0.7919922, -2.5742188, 0.44604492, 0.37353516, -1.3652344, 2.6972656, -0.45483398, 1.0341797, 1.6835938, -1.8623047, 1.8935547, -0.42382812, -1.6494141, -0.81640625, 1.0234375, -0.3425293, -3.234375, -0.10656738, 0.39257812, -2.1132812, -6.3515625, -0.4873047, 1.5683594, -0.93652344, 0.41503906, -1.2285156, 0.2211914, 1.0546875, -1.0302734, -0.13781738, -1.0576172, -1.5830078, -2.2929688, 1.0185547, -2.5390625, 2.0703125, -1.7333984, 0.36987305, -1.6259766, -0.42236328, -1.2460938, -2.1171875, 3.4003906, 0.73779297, 3.5683594, 0.5395508, 1.9951172, 1.2353516, 0.25073242, 0.40649414, -2.0117188, -1.75, -0.7348633, -0.54589844, -1.4375, 0.33569336, -3.7910156, 0.06048584, -0.3256836, -1.2617188, 0.79345703, 0.81884766, -1.2460938, -0.026351929, 0.12878418, -0.60791016, -0.75634766, -1.6201172, 0.057281494, -0.2277832, -1.2246094, 0.5576172, 0.17138672, -0.25341797, -1.7197266, 0.9160156, 0.97558594, 0.3725586, 1.8291016, -0.66259766, 2.1542969, 1.875, -3.9257812, 2.3945312, 1.8603516, 0.76904297, -0.84472656, -1.8203125, -1.7148438, -2.0878906, -0.37695312, 2.9941406, 1.0898438, 2.640625, 0.46118164, -0.022842407, 1.7041016, 2.09375, -1.0136719, 1.3154297, -1.6435547, 1.6015625, -1.3095703, -1.9746094, 1.2832031, 2.9179688, -3.8300781, -1.6074219, 2.0761719, -0.25732422, 0.71533203, 1.6748047, -0.89990234, 0.28710938, 3.0273438, -0.044067383, 1.3525391, -1.6523438, -0.3659668, -1.2539062, 0.41064453, 3.015625, 3.3476562, 0.15722656, -1.0175781, 0.96191406, 0.91845703, 1.0556641, -0.83203125, -0.7626953, -0.085632324, 1.5703125, 0.12585449, 2.9335938, 0.009056091, 1.2128906, 1.0234375, 0.37719727, 0.9995117, -0.9272461, -0.43530273, 2.3242188, -0.68310547, -0.3330078, 0.11505127, -0.99121094, 0.18322754, -0.84472656, 1.3710938, -1.2519531, 0.57470703, 1.1904297, -1.8359375, -2.7011719, -1.6230469, 1.9140625, -1.0507812, -1.1396484, -0.20300293, 1.3359375, -1.4169922, -0.3095703, -2.9042969, -0.70654297, -1.1269531, 1.8300781, -1.484375, -1.8076172, -1.7294922, 0.22644043, 0.37890625, 1.7539062, -0.24743652, -0.37304688, -0.5595703, -1.7285156, 1.875, -0.8125, 1.2851562, 1.0908203, -3.0664062, 0.1373291, -2.7050781, -1.3798828, 2.34375, -1.2236328, -0.7192383, 1.6396484, -1.1777344, 3.2265625, -0.9121094, 3.4824219, -0.96972656, -0.46020508, 1, -0.83691406, 0.6542969, -1.8193359, -3.4355469, 0.5463867, -1.3701172, -0.3227539, 4.2226562, 0.05316162, 1.2744141, -1.2792969, 1.4453125, -1.1230469, -2.7578125, -0.82958984, 0.88183594, -1.7841797, 0.70751953, 2.3183594, 1.2900391, -3.8613281, -1.8652344, 0.7182617, -2.0996094, -0.09515381, 0.58984375, 1.2666016, 0.56396484, -0.6645508, 2.1328125, -1.6035156, 0.30126953, -0.5800781, 0.11206055, -0.82910156, -0.90185547, 2.4101562, 1.3427734, 1.0498047, -0.45996094, 3.2695312, 1.0039062, 0.29370117, -0.44799805, 0.52441406, 0.1628418, 0.6020508, -3.0996094, -1.3671875, -1.8212891, 0.4975586, 0.34960938, 0.65527344, 0.010482788, -0.46044922, -0.105529785, 0.80615234, 1.1533203, 1.9921875, 2.6210938, -0.47045898, 1.3056641, 0.18640137, -2.3085938, -1.2001953, -0.9189453, -0.8652344, -1.5097656, 1.5449219, -0.10449219, 0.5185547, -2.0234375, -0.71777344, -0.5292969, -1.0546875, 2.7578125, 2.3046875, -0.12780762, -0.7734375, -1.9121094, -1.1494141, -0.27905273, 1.1308594, -0.70458984, 1.0361328, -0.84521484, -0.34375, 2.0175781, -2.0800781, 1.5722656, 0.5517578, -0.8105469, 0.36328125, -1.2988281, 0.021774292, -0.20056152, -0.5371094, -0.27783203, -0.6098633, 3.5390625, -0.7163086, 0.85839844, 0.5058594, 0.4909668, 1.1181641, 0.49829102, -0.7524414, -1.1669922, 3.0722656, -0.27612305, -0.04574585, -1.6210938, 0.45361328, 2.65625, 2.0683594, -0.52490234, -0.6723633, -0.60595703, 1.2070312, -1.9150391, -0.86279297, 2.328125, -0.83691406, -0.7114258, 3.3789062, 2.4960938, 1.1552734, 1.0615234, 1.5634766, -1.1689453, 1.4228516, -0.15075684, -0.39501953, 1.0869141, -0.33764648, -4.1171875, -1.2363281, 2.6132812, -0.9145508, 2.6269531, -0.46264648, -1.8515625, -1.9775391, -3.0175781, -3.0371094, -2.1855469, -0.09246826, 0.052947998, -1.2587891, 0.066101074, -1.2080078, 1.0712891, 3.6503906, -0.045654297, -0.09741211, 0.2619629, -0.6953125, 0.012863159, -0.50341797, 0.67529297, -1.8076172, 0.3935547, 0.7631836, -0.55908203, 0.20568848, 2.4609375, 1.5839844, -1.6923828, -0.8798828, 0.0101623535, 2.3007812, -1.9384766, -1.7910156, 0.9941406, -0.0027694702, -0.46533203, -1.3984375, -1.703125, -2.046875, 1.5947266, -0.09234619, 0.9038086, 0.17687988, -0.16186523, -3.9863281, -2.2148438, -1.9121094, -0.6850586, 0.07446289, 0.18591309, 0.17004395, -2.2890625, 0.46264648, 0.30639648, 0.93115234, -0.7270508, 1.3105469, -1.8867188, 1.6103516, -0.3137207, -1.6279297, 0.3947754, 0.8569336, -0.19519043, 0.71240234, -0.8984375, -1.8652344, -3.6191406, -0.87109375, 0.30615234, -0.20043945, 0.39697266, 0.25756836, 1.1630859, 3.296875, -0.7006836, -2.5898438, 0.5629883, 0.16894531, -1.1806641, 2.8769531, -1.7236328, 0.8276367, 2.0683594, -1.8398438, -1.0810547, 1.2275391, 2.078125, -0.45263672, 0.22717285, 0.14855957, 0.46875, 0.20495605, 0.32128906, 2.1328125, -0.19812012, 2.2675781, 0.7338867, 0.7084961, -0.10827637, -1.8154297, -1.0263672, 0.6699219, -1.7919922, -0.3293457, -0.25732422, 1.5478516, 0.35205078, 0.8496094, 2.8691406, 0.1583252, 1.6083984, -0.8510742, 0.9892578, -0.75439453, 1.109375, 0.6176758, -1.6728516, -3.7441406, -1.1083984, -0.9370117, 2.1582031, 0.82421875, -0.018829346, 0.34448242, -1.3457031, -0.14355469, 0.080200195, 1.5673828, 0.12597656, 1.3222656, -2.0996094, 2.65625, 1.9902344, -0.98828125, -1.3505859, -0.48242188, 1.8496094, -2.0878906, 1.9042969, 2.5683594, 0.012458801, 0.08117676, -0.26782227, 1.2197266, 1.0244141, -1.7011719, 1.7763672, -3.75, -0.7416992, 0.13586426, -1.1425781, -3.3476562, 0.5620117, 0.6972656, -1.0146484, 1.3828125, 0.89208984, -0.058044434, 0.91845703, 2.1757812, -0.31445312, -1.2509766, 0.6298828, -0.51220703, -1.7558594, 3.4550781, -0.37695312, 3.0488281, 0.87890625, 1.6748047, -0.8828125, -0.7211914, -1.1923828, 1.3662109, 4.8085938, 2.3144531, 2.4140625, 0.5708008, 0.30371094, 2.2851562, 0.9423828, 3.234375, -2.4316406, 0.015144348, 1.0683594, 0.7734375, -0.31860352, -0.6894531, 0.23596191, 0.23388672, -0.7109375, -2.0175781, 0.47387695, 0.5180664, -0.024490356, -0.9370117, 0.3137207, 0.7182617, -2.0273438, 1.6552734, 0.7475586, 0.328125, 0.47216797, -0.09838867, 0.94628906, -0.07611084, 1.109375, 1.1279297, -0.8144531, 3.0292969, -1.7929688, 0.5161133, 1.6259766, -0.7207031, 0.07550049, 1.5019531, 0.49902344, 0.84814453, -0.18347168, -1.6074219, -1.0703125, -1.2988281, -1.4541016, -0.49047852, -1.3662109, 0.49316406, 0.09234619, 2.328125, 0.7910156, 1.4960938, 0.7080078, 2.515625, -2.4316406, 2.2070312, -0.6015625, -0.8618164, 0.5620117, -0.22753906, 1.8447266, -1.8476562, 0.71435547, -2.3261719, 0.9189453, 1.5644531, -1.5742188, -0.44580078, 0.11151123, -0.29345703, 3.6074219, -1.0898438, 0.51953125, 1.9248047, -1.890625, 0.10241699, -0.94677734, 0.7705078, -0.43701172, 2.3007812, -0.5625, 2.3886719, 0.8959961, -0.38208008, 0.7680664, 1.1171875, 1.4501953, 0.39819336, 1.4033203, -1.4228516, 2.1542969, -0.15539551, -0.78759766, 0.31054688, -0.78515625, -0.16430664, -0.64697266, -0.5419922, -0.5205078, -0.19470215, -0.22253418, 0.64501953, -1.9833984, 0.42114258, 3.3632812, 0.095581055, 0.22668457, -2.640625, -1.8095703, -0.47558594, -1.0449219, -0.3779297, -0.38598633, 0.2944336, 0.4189453, 1.5048828, 0.47192383, 0.48486328, -0.61621094, -1.9414062, -2.1503906, 1.1542969, 1.2050781, -0.8730469, 0.87353516, 0.40063477, -0.9609375, -0.8984375, 1.4150391, 1.7490234, 0.3059082, -1.4414062, -0.47924805, -2.8046875, 1.2021484, -0.94921875, 2.1328125, 1.1933594, -1.2119141, 1.6123047, -2.3046875, -3.1210938, -2.5703125, -1.6025391, 0.5595703, -0.8496094, -0.39941406, 0.3684082, 2.8613281, 2.3085938, 0.49243164, 0.54003906, 0.29760742, -0.17810059, 1.7636719, 0.74560547, 0.8251953, -0.3959961, 0.043640137, 0.06124878, 0.55810547, -0.036987305, -0.18603516, 1.8388672, 1.1171875, 0.65966797, -2.5292969, -0.42358398, -1.5, -1.2763672, 0.71777344, -0.88378906, 1.2138672, 0.9121094, -2.9921875, -4.4609375, -1.0341797]}, "B000646U3Q": {"id": "B000646U3Q", "original": "Brand: Coleman\nName: Coleman 2000032171 Cooking Stoves Accessories & Parts\nDescription: \nFeatures: Replacement gas stove regulator for Coleman stoves with gas pressure issues\nMaintains steady propane gas pressure in Coleman stoves\nFits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves\nBrings new life to beloved Coleman stoves that require maintenance\nCheck user manual of your Coleman stove to confirm compatibility\n", "embedding": [-1.0253906, -0.68408203, 1.5185547, 1.7832031, 0.8623047, 0.57470703, 1.0136719, -0.9550781, 0.113708496, 0.84716797, 2.8554688, -1.5371094, 0.47802734, 0.2626953, 1.9013672, 0.37817383, 0.30395508, 0.38842773, -0.31518555, 0.10839844, 1.7958984, -0.8652344, -0.48388672, -0.8491211, 0.4633789, 0.7709961, 2.8398438, -4.7851562, -0.7836914, -2.28125, 1.3828125, -0.9711914, -0.06951904, 2.9707031, -2.3925781, -0.42822266, -0.8466797, 1.5195312, -3.7207031, 0.12426758, -3.234375, 3.21875, 2.0214844, -1.2392578, -0.7104492, -1.5605469, 1.2412109, -0.120666504, -2.5136719, -0.73291016, 1.1582031, 2.40625, -0.46020508, 0.7998047, 0.27978516, 1.9003906, -0.2956543, -0.75927734, 0.51464844, 0.47509766, 0.99853516, -0.37402344, -2, 1.1425781, -1.8554688, 3.2246094, 1.2021484, 0.051513672, -0.9008789, 0.3864746, 1.7128906, -0.13220215, -0.3852539, -2.3398438, -2.9785156, -0.82714844, -3.9042969, -1.1738281, 0.6557617, -1.3515625, -1.8564453, 0.39697266, 1.6337891, -1.328125, -0.4013672, -0.13842773, -0.4140625, 1.0332031, 0.4572754, -0.59521484, -1.6035156, -0.11218262, -1.5527344, -2.7128906, 0.18591309, -0.15026855, -0.010498047, -0.0569458, 0.51953125, -1.1337891, -2.5488281, 0.6879883, -0.04324341, 1.0361328, -1.6123047, -0.1303711, 1.6982422, 1.9619141, -3.6132812, -0.14355469, -2.1992188, -1.6279297, 1.8876953, -0.78808594, -0.25439453, 0.4033203, -0.43530273, -0.74365234, 2.0371094, 0.064331055, 4.7460938, -0.02142334, 0.27490234, -0.41015625, -1.4267578, 2.578125, -0.38061523, -1.7685547, 3.2128906, -0.2944336, -0.59228516, -1.2802734, 4.2226562, -0.79296875, -2.0625, -1.9228516, -1.8291016, -2.2675781, -2.3203125, -1.5410156, -2.0351562, -0.63183594, 0.61865234, 1.6513672, -4.3203125, -0.60546875, -1.2646484, 3.7949219, 1.0068359, -1.8076172, 1.53125, -0.8486328, -0.46704102, -1.1679688, 1.7792969, 1.078125, -1.6162109, -1.5673828, 3.4609375, 1.0595703, -0.8129883, -1.1132812, 0.048797607, 1.4619141, 0.027389526, 0.064941406, -0.026229858, 0.171875, -2.0664062, 2.7851562, 0.07104492, -2.5449219, -0.8989258, 0.64990234, 0.19799805, -0.23596191, -0.14477539, 4.6679688, 1.2070312, -1.5654297, -5.1875, -3.0371094, 1.2607422, 0.34472656, 1.2529297, 0.038513184, -0.6386719, -0.04901123, 1.1826172, -1.4550781, -0.52685547, 1.1464844, 0.14685059, 0.090148926, -2.4394531, -1.6435547, -2.2324219, -0.7993164, 0.43920898, 2.6015625, -1.96875, -0.29052734, 0.37597656, 2.5292969, -2.1210938, 0.022598267, 0.5620117, -1.9550781, 1.8525391, 3.3320312, 1.9648438, -0.63623047, 2.3398438, -0.58496094, -0.7348633, -1.4824219, 1.3857422, 2.4355469, 1.0957031, 1.4765625, 0.9711914, -1.0410156, 0.03768921, -1.0615234, 0.56103516, 1.7265625, 1.5449219, 0.3869629, -0.7475586, -2.0136719, 2.765625, 2.4101562, -2.5039062, 0.15441895, -0.70654297, 2.734375, 1.1005859, -1.6669922, 1.0253906, -1.0458984, -0.053863525, -1.3671875, 1.1015625, -0.63183594, -0.21459961, 0.7211914, 1.1201172, 0.36083984, 2.5136719, 0.45629883, 0.03289795, 0.7709961, -2.2929688, 0.25219727, -4.1953125, 0.3762207, 1.6845703, 0.26391602, -0.081726074, -2.6445312, 1.6240234, 1.9853516, -0.40649414, 0.9941406, -0.77246094, 0.013648987, 2.6386719, -0.3125, -1.6298828, -0.4482422, 1.4472656, 1.6367188, 2.3847656, -0.57128906, 1.7568359, -0.29711914, -1.0478516, 2.6542969, -0.2401123, 0.7080078, 0.7363281, -0.875, 2.2363281, -2.5976562, 0.002796173, 1.6640625, 1.3476562, 0.4387207, -3.0253906, 0.46777344, 3.9296875, -3.0976562, -2.4550781, 3.7441406, -1.6210938, -0.4897461, -0.37231445, 1.0693359, 1.1933594, -0.8847656, 2.1484375, -0.3203125, -0.06951904, 1.1074219, -1.7412109, 0.49438477, -1.4394531, -1.4960938, -0.25708008, -0.69873047, -1.9130859, -2.8632812, -1.3935547, 1.8798828, -1.1728516, 0.36621094, 1.4472656, -1.6064453, 1.1904297, 0.22094727, 0.35009766, 0.7915039, 0.11859131, 0.10821533, 2.1425781, 0.8261719, -0.6586914, 3.0976562, 0.60595703, 0.6386719, 0.9926758, -2.6816406, 0.25756836, -1.4238281, -2.7402344, 0.9033203, -0.015113831, -5.8359375, 1.3173828, 1.6904297, -1.3925781, 1.9814453, -1.8632812, 5.2773438, -2.9375, -0.8300781, 0.10699463, 1.2050781, 1.0205078, -1.4355469, 1.7773438, 2.265625, -0.31445312, -2.1914062, -1.3535156, -0.074035645, 1.0048828, -1.7880859, 0.27294922, 1.7851562, 1.4365234, 0.56689453, -0.29125977, 0.7915039, -0.9941406, -1.8115234, 1.2421875, -3.4316406, -0.34643555, -1.2509766, 0.6899414, 0.7182617, 1.3076172, -2.4042969, -0.35058594, 2.4257812, -0.7558594, 4.40625, -2.4667969, 1.390625, -1.2949219, -0.6455078, 0.9526367, -4.3125, -3.2402344, 1.2773438, 1.5976562, 0.91064453, 0.21508789, -3.234375, 0.63916016, -0.40405273, -0.10559082, -1.4160156, -0.3737793, -0.5390625, 0.7607422, 1.1533203, -0.083984375, 0.62060547, 2.1601562, -0.26049805, -2.1523438, -0.8935547, 0.82373047, -2.3320312, 0.43725586, -0.7573242, 0.07598877, -0.06793213, -0.73291016, 0.17138672, 1.3837891, 1.6328125, -1.8017578, -3.1464844, 0.25708008, 0.33813477, 0.4338379, 3.2109375, -1.5429688, -0.72216797, -4.3164062, -0.3359375, 1.1064453, 1.1611328, 2.1328125, -0.28710938, 0.60009766, 0.48608398, 1.3925781, -1.1884766, -0.3552246, -0.6401367, 4.2421875, -1.2978516, -4.0507812, 1.7070312, 0.42504883, -2.2773438, -1.8945312, -0.08972168, 0.03503418, 2.0703125, 2.5664062, -0.02230835, -0.65234375, -0.043548584, 0.40795898, 1.7880859, -0.39648438, 0.90722656, -0.6982422, 0.9267578, 0.80908203, 0.7636719, 0.30566406, 2.2109375, 0.05697632, -0.2849121, 2.5664062, -1.34375, 1.3115234, 0.7006836, 0.2211914, 0.65185547, 2.5488281, 0.7426758, 0.32080078, -1.6816406, -0.50146484, 2.453125, -3.8496094, 1.8837891, 1.8984375, 1.0449219, -1.4238281, 1.6240234, -1.2392578, 2.2636719, -0.33544922, 0.75146484, 1.2988281, 0.36108398, 1.3242188, -1.0917969, -1.5175781, -2.2949219, 3.8632812, -0.9926758, 0.26586914, 0.48168945, 1.5224609, -1.7998047, -3.0371094, -3.3125, -0.09240723, 0.73291016, 2.3769531, 0.060333252, -2.6074219, 0.36645508, -0.18029785, 1.4238281, 3.6445312, -3.5136719, -0.43847656, 0.14758301, -1.1181641, -2.5253906, 0.875, 3.6445312, 1.2373047, -1.9443359, 0.2319336, -2.5351562, 1.0419922, 0.23120117, -1.2607422, -0.21496582, 0.6386719, -1.5498047, 0.4091797, 0.3137207, 3.7851562, -3.1464844, -0.48706055, 0.7006836, -2.3359375, -0.671875, -2.953125, -3.1992188, 1.7080078, -0.52685547, -0.14501953, 0.064086914, -0.040771484, -0.21032715, 3.03125, -1.0449219, -3.1601562, -1.0517578, -0.39233398, -1.4384766, -1.5693359, -0.24816895, 1.7578125, -0.5600586, -2.34375, -1.9404297, 0.15942383, -3.1386719, 0.6479492, 1.0683594, -3.8554688, -0.047668457, -1.2050781, 3.1757812, -0.23327637, -1.1318359, 2.9414062, 1.1035156, 0.15917969, -2.9648438, 3.2441406, 1.5615234, 1.3027344, -1.0673828, 2.2363281, 3.1347656, -0.84033203, 1.7412109, 0.22998047, 0.59472656, 0.7495117, -1.0087891, -0.36376953, -2.0566406, -0.71972656, -0.82177734, 0.3557129, -0.35913086, -1.9990234, -0.37402344, 2.2597656, 1.0957031, 2.5957031, 0.052215576, 0.10992432, 1.1298828, 0.94628906, -1.3740234, -0.7998047, -0.74658203, -1.2646484, -1.0859375, 0.8823242, -1.9228516, 0.16894531, -0.56884766, -1.4707031, -2.6914062, -0.7006836, -0.7368164, 1.8037109, -0.80322266, -1.2607422, -2.9648438, -0.19921875, -0.32177734, -0.052642822, -1.1318359, 0.6142578, 0.5571289, 1.7353516, 2.1015625, -0.8769531, -1.6337891, 0.14550781, -1.2216797, -0.24707031, -0.23535156, 0.9375, -1.3515625, 0.75634766, 0.1430664, -0.16345215, 0.48486328, -1.3222656, 0.60546875, 1.6845703, 1.0830078, -1.9042969, 0.73535156, 0.6381836, 1.8681641, 0.9189453, -0.06976318, 1.7617188, 0.36938477, 1.7734375, 0.6035156, 0.25927734, 0.74658203, 0.5522461, 2.1152344, 1.2216797, -1.21875, 2.0390625, 1.2324219, 1.2373047, 0.71240234, 2.7890625, 2.3808594, -1.7470703, 1.9785156, -0.75146484, -0.89208984, -0.7285156, 0.34301758, 0.35986328, 2.375, -0.41015625, -1.4697266, -0.6425781, 2.2871094, -0.90771484, 1.9609375, 0.9848633, -0.7895508, -0.86035156, -3.2851562, -0.5649414, -0.83496094, -0.82373047, -0.4482422, -2.7753906, 1.6220703, -0.06964111, 1.1435547, 2.2382812, 1.5605469, -1.1923828, -1.2392578, -1.9882812, -0.16589355, -2.5898438, -1.8398438, -0.8828125, 1.1777344, 0.90966797, -0.22338867, 1.0654297, -1.6123047, 2.6875, -1.7001953, -0.92041016, -0.09069824, 0.7783203, -1.6865234, -0.78222656, 2.0097656, -0.3059082, -0.6586914, -0.9145508, 0.37817383, -0.45483398, 3.015625, 0.16088867, 1.4267578, -1.2216797, 1.0771484, -2.7480469, -2.8613281, 0.41088867, 1.2011719, 1.4267578, -1.5683594, -1.7324219, -0.33618164, -0.6113281, -2.3671875, -2.3789062, -3.5136719, 0.16137695, 0.6386719, 0.40551758, 1.1142578, -0.19873047, -0.091796875, 0.6689453, -0.13122559, 1.3759766, -0.51464844, -2.4902344, -2.4296875, 0.8955078, -1.109375, 0.52490234, 0.69677734, -1.1787109, 0.8989258, -0.7163086, 0.8823242, 0.42041016, 0.76660156, -0.024154663, -1.0429688, 1.9082031, -1.3378906, 0.5864258, 2.8730469, -0.7504883, 1.7197266, 0.6777344, 0.8803711, 0.16967773, 1.9091797, 0.8183594, -0.44018555, 2.2050781, -2.9941406, 0.044830322, -0.39135742, 1.2773438, -0.0036392212, -0.18225098, -0.84716797, -2.4257812, 0.45751953, 0.3955078, -0.3474121, -0.38134766, 0.7084961, 2.8320312, 0.29174805, 0.953125, -0.49975586, 1.7451172, 0.9238281, 0.640625, 0.50146484, -1.5410156, 3.1464844, -0.090148926, -0.25732422, -1.2304688, -1.3457031, 1.9951172, -1.1767578, 1.3300781, 1.0966797, 0.3178711, -0.8300781, 2.5996094, -1.3291016, 2.2988281, 1.6328125, 1.84375, 0.011016846, 2.7519531, 4.4570312, -0.8808594, -0.9301758, 0.92822266, -1.7011719, -2.1425781, 2.4179688, 1.3427734, -1.5830078, 2.4609375, -1.8154297, 0.55859375, -0.33642578, -1.1044922, 1.2871094, -1.0332031, -0.15844727, -0.5180664, 0.30810547, -3.1210938, 2.6914062, -0.16101074, -1.7148438, 0.46313477, 1.2460938, 0.13256836, -0.7504883, -0.5527344, -0.17236328, -1.8720703, 0.41015625, 0.59814453, -0.18273926, 1.8837891, -0.5107422, -0.21508789, 1.0839844, 0.8300781, 0.4074707, 0.63134766, -0.54589844, 3.8867188, 3.984375, 2.0917969, 2.8027344, 0.90185547, 2.2304688, 1.0410156, 1.8525391, 0.921875, 1.7041016, -2.3417969, 2.2421875, -0.65185547, 0.5751953, -0.96240234, -0.36523438, -0.9238281, -0.076293945, -0.39282227, 1.5791016, 0.55029297, -2.703125, -1.21875, -0.32250977, 2.8242188, -1.4208984, 0.7714844, 1.2792969, 0.61328125, 0.9008789, -0.5942383, -0.15405273, -1.4667969, -0.22595215, -0.43359375, 0.37231445, 2.953125, 0.58154297, -0.08947754, -3.1289062, -1.8251953, -0.29125977, -0.24536133, 1.5078125, 0.050048828, 1.4931641, 1.4091797, -0.4008789, -1.0175781, -0.9277344, -3.4003906, 0.65478516, 1.2753906, 2.640625, 1.5390625, -1.3964844, 1.6445312, 0.099975586, -2.4023438, -3.3457031, 1.5478516, -0.7524414, 1.6445312, -0.7807617, -3.1347656, 2.7792969, 0.9921875, 1.2373047, -1.5712891, 1.7382812, 0.5366211, -1.7167969, -1.8251953, 0.00642395, -2.0859375, 2.7285156, 2.1640625, -1.640625, 0.85253906, 0.17675781, 2.5761719, -0.62353516, 0.8144531, 0.7607422, 2.2480469, -1.1923828, 2.484375, 1.1953125, -0.62890625, -0.9296875, 3.9160156, 3.7324219, -0.36669922, -3.4375, -0.09698486, 1.5146484, 2.0722656, 1.609375, -0.95654297, -1.84375, -0.8491211, -0.16296387, -0.61865234, -0.24475098, -2.7871094, 1.0634766, 2.0996094, -1.5458984, 1.6435547, 1.2578125, -1.3125, -0.4477539, -2.5390625, -0.8955078, -1.6630859, -0.026473999, 1.3798828, -1.7724609, -0.9580078, 0.7841797, 0.3515625, -0.28027344, -1.1962891, 0.0138549805, 0.3642578, -0.20031738, -1.7851562, -0.5986328, 0.02078247, -0.6879883, -0.95214844, 0.074157715, 0.047210693, 0.44970703, -1.2714844, -0.09539795, -0.7475586, -0.9863281, -1.4765625, -1.5380859, -0.98876953, 1.9882812, 2, -2.1347656, 2.6074219, -1.0458984, -0.8955078, -1.2597656, -2.1875, 3.6054688, 1.7792969, -0.79345703, 0.67089844, 0.67089844, 1.3740234, -2.5683594, -0.77978516, -1.6982422, 0.117248535, 0.8959961, -2.3515625, -0.8803711, -0.30566406, -2.0214844, 0.32177734, 2.5390625, 0.74072266, -0.8432617, 0.6166992, -0.98046875, 0.6796875, -1.8925781, -0.30004883, -0.70214844, -2.015625, -1.7119141, 0.30200195, 2.8007812, -0.921875, -1.2265625, -2.4414062, 0.6044922]}, "B07Y8GZK6V": {"id": "B07Y8GZK6V", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers\nDescription:

          Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

          Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

          The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

          Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

          Specification:

          • Forge Type: Double Burner Forge
          • Burner: Double Burner
          • Burner Nozzle Material: SS-304
          • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
          • Forge Internal Dimension: 6.5\" (H) x 5.5\" (W) x 18\"(L)
          • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
          • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

          Connection Kit:

          • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
          • 5 ft. (2 Meter) gas hose pipe
          • 2 hose clamp

          Product user manual & assembly instruction provided with packing.

          \nFeatures: Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1\" thick high density ceramic fiber blanket\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\nReduce fuel consumption\nTwo Burners, Individually controlled with ball valves\n", "embedding": [-0.05255127, 1.5546875, -0.52001953, -0.5625, -0.46704102, -0.52734375, 0.49487305, -2.2109375, -0.98779297, 1.5166016, 1.1943359, 0.6694336, 1.0615234, -2.4121094, -0.25878906, -0.8598633, -0.7416992, -0.09503174, 1.1494141, 3.4394531, 2.4296875, -0.3774414, 1.8701172, 0.5419922, 1.0439453, -0.036865234, 3.0859375, -3.2148438, 0.65966797, -0.33325195, -0.010047913, -1.0351562, 0.5131836, 0.4267578, -2.7480469, -0.67529297, -2.4335938, -0.0541687, -1.3271484, 0.82958984, 0.009094238, 0.1932373, 2.578125, 1.0097656, -2.7734375, 0.55322266, 1.1054688, 0.44506836, -1.2441406, -0.14013672, 0.8354492, -0.07672119, 0.88671875, 1.1552734, -1.4306641, -0.5576172, -1.0605469, -1.7988281, 2.9121094, -0.12939453, 1.9765625, 0.14709473, -1.2226562, 0.8486328, -1.4570312, 1.0888672, 1.1865234, -1.7998047, -0.75683594, -1.1855469, 0.19995117, 1.5976562, 1.4082031, 0.69091797, 1.8496094, -0.9921875, -1.6435547, 1.9736328, 1.2890625, 0.4621582, -1.0429688, -0.048217773, 1.0107422, -0.38671875, -0.68115234, 0.27392578, -1.1015625, -0.06286621, 1.5439453, 2.9335938, 0.7348633, 0.38256836, -1.4892578, -5.6875, 1.2958984, -1.8095703, 0.6328125, 1.0898438, 0.66503906, 2.2402344, -1.0429688, -0.09020996, -1.5117188, 1.4404297, -2.6425781, 0.032043457, 0.9038086, 3.421875, -0.8623047, 1.0947266, -1.9628906, -0.38183594, 0.8989258, -0.3798828, -0.15686035, -1.5976562, 0.64990234, -0.5385742, 1.9238281, -0.9301758, 3.09375, -1.2705078, -0.08666992, -1.0126953, 0.50634766, 2.4941406, 0.16784668, 0.9560547, 2.8945312, -2.9511719, -0.53515625, -0.72314453, 0.8461914, -1.0273438, -1.8369141, -0.29077148, -1.2011719, -0.2775879, -4.4882812, -1.1582031, -0.3071289, 2.1523438, -0.0847168, -2.4238281, -2.2890625, 1.0224609, -0.26049805, 1.0039062, 0.22973633, -1.4042969, 0.81591797, -2.0117188, -1.1679688, -2.0996094, 1.2587891, 1.4599609, -0.09460449, -2.6074219, 2.7871094, 0.36254883, -0.28955078, 0.05807495, 1.2333984, 1.625, -3.1503906, 0.3005371, 0.5576172, 1.3535156, -2.484375, 0.9848633, 0.9848633, -1.2958984, 0.06011963, 0.2529297, -0.68896484, -1.9931641, -0.15100098, 1.8486328, 1.6933594, -1.0683594, -1.9208984, -1.3964844, 1.7978516, -0.4086914, 1.0097656, -0.43823242, 2.0058594, -0.8076172, -0.58496094, 0.43408203, -2.1367188, -0.89746094, 1.7226562, 2.0917969, -0.10144043, -1.7333984, 0.7807617, -2.2890625, 2.4824219, -2.2597656, -3.421875, -1.3144531, 0.7011719, 1.1552734, -3.5214844, -1.4013672, 0.56884766, 0.6191406, 3.1367188, 1.5576172, 0.12084961, -1.15625, 0.48754883, 0.8095703, 0.08856201, -3.6738281, -0.5546875, -0.6689453, 1.3125, -1.0458984, -0.85253906, -0.7519531, 1.625, 1.2314453, 4.0273438, 1.7773438, -0.57373047, 1.4609375, -2.40625, -0.6254883, 2.8984375, 2.5136719, -2.5078125, 0.6855469, -0.6694336, 2.1425781, -0.1616211, -1.4863281, 2.2480469, -0.17492676, 1.1152344, -1.3232422, -0.6611328, -0.16113281, -0.27075195, 0.040618896, 0.05621338, -0.96533203, 1.1464844, 0.35009766, 1.046875, 0.95703125, 1.4248047, 3.4042969, -0.7055664, 0.3046875, 0.90283203, -1.1962891, -1.28125, -2.6328125, 0.91015625, 0.6904297, -0.6386719, 1.2294922, 1.6123047, -1.3408203, -1.1171875, -0.5083008, -1.0136719, 1.5703125, 1.2626953, 1.5009766, 1.9013672, 1.5390625, 1.4335938, 1.5751953, -1.5107422, 2.3203125, -0.4958496, 2.3007812, -0.13256836, -2.1484375, 1.4990234, -1.3505859, 0.7290039, 0.5410156, 3.6503906, -0.40771484, -1.1015625, 1.9716797, 5.8945312, -0.9238281, -1.3486328, 2.6699219, -0.9736328, 0.4663086, -0.3474121, 3, 0.31958008, -1.6171875, 1.5712891, 0.9169922, 1.9150391, 1.6757812, -1.0761719, 0.703125, 2.6132812, -0.6152344, 0.5878906, -0.29638672, 1.5175781, 1.1230469, 0.078186035, 2.1582031, -3.3183594, -0.50927734, 1.6191406, -2.0644531, 1.7207031, 1.2441406, 0.29638672, 1.8730469, 1.0683594, 0.39990234, -0.1595459, 0.9863281, 0.11364746, 1.5859375, 0.8100586, -1.3945312, -1.7050781, -1.4619141, -2.4414062, -1.4707031, 0.17016602, 0.9736328, 1.6220703, -1.984375, 1.6542969, -1.3291016, 1.3974609, 0.36865234, -1.8525391, 0.026229858, -0.112854004, -0.03753662, -1.6445312, -0.30517578, -1.2900391, -1.1494141, 2.0976562, 3.6894531, -2.4667969, -2.6992188, -2.0332031, -2.1796875, -0.87939453, -0.17773438, -1.2070312, 1.9990234, -0.55322266, -0.4963379, 0.9223633, -0.90478516, -0.24963379, -0.39282227, 0.5439453, -2.6933594, 0.5854492, -0.062042236, -0.5209961, 0.09301758, -0.31982422, -0.8359375, -0.49682617, -0.828125, -0.6074219, 3.5117188, 0.4169922, 1.859375, -1.4697266, -2.9941406, -1.6484375, -0.8618164, -1.5341797, -0.64453125, -0.06188965, -0.80322266, -2.0195312, -3.1953125, -0.34350586, 0.36206055, -1.0332031, 0.038757324, 1.1582031, -0.8461914, 0.27539062, -0.4699707, -1.5292969, 0.016571045, 0.6738281, 1.0957031, -1.3974609, 0.6826172, -1.8320312, -0.85009766, -1.3759766, -0.061828613, 0.84521484, -1.2695312, 0.013809204, -0.97021484, -0.13183594, -1.6318359, 1.9277344, -1.2900391, 1.1171875, 0.70751953, -1.4248047, 0.73583984, -2.0097656, -0.122558594, -0.26953125, -0.69433594, 3.7734375, -0.18615723, 0.48120117, 0.16821289, 0.30615234, 1.1240234, 2.71875, -2.0644531, -2.0605469, 0.9267578, 2.4628906, -2.4824219, -1.3017578, 1.1113281, 1.9326172, -3.7871094, 0.8979492, 2.7734375, 0.3630371, 0.5161133, 2.7265625, 1.4238281, 0.53271484, -1.4814453, -0.31298828, 1.1484375, 0.7080078, -0.50341797, 0.5683594, -0.32299805, 0.58740234, 0.8417969, 2.1757812, 0.76904297, 3.2792969, 2.9746094, 1.1972656, -1.5205078, -1.8251953, -0.8330078, 0.14038086, -1.0039062, 2.0234375, -0.60791016, -0.5698242, -0.8208008, 0.17333984, 1.8134766, -1.9697266, -1.1621094, 0.87109375, -0.4831543, 0.7163086, -1.3085938, 1.4384766, -0.7114258, -1.1738281, 1.6621094, -0.058929443, -1.28125, 0.79003906, 0.5966797, 1.6337891, -2.3105469, 1.4433594, 0.13439941, -0.32739258, -0.96191406, 0.68310547, -1.0722656, -0.82666016, 0.14318848, -0.04046631, -0.3840332, 1.6806641, 1.2802734, 0.40771484, -1.8613281, -1.5078125, -0.20947266, -1.4648438, 0.30859375, 0.4970703, -1.3955078, -0.37451172, -0.92578125, -0.2208252, 0.04473877, 1.3330078, 0.16247559, 0.82714844, -1.2919922, -0.31884766, -0.2626953, -2.3886719, -0.25390625, 4.046875, -0.8041992, 0.1328125, 0.35009766, 3.5195312, -1.9316406, -0.48266602, 1.1972656, -3.046875, -1.0566406, -0.47827148, -2.6640625, 0.83935547, -0.22424316, 1.2333984, 3.3144531, -0.9770508, 0.46264648, 2.8828125, -0.089904785, -3.921875, -2.3925781, 0.33422852, 1.3085938, -2.3105469, -3.796875, 1.7949219, -1.1494141, -1.9277344, 1.5390625, 1.9814453, -1.3564453, 0.9902344, 1.1015625, -3.5019531, -1.1630859, 0.9589844, -0.041870117, 0.95214844, -1.6572266, 0.69091797, -0.8261719, 0.004875183, -1.4355469, 1.5390625, 0.42993164, -0.30541992, 1.1777344, 1.6123047, 1.2324219, -0.8510742, -0.09094238, -1.0263672, 2.4277344, 0.98291016, -1.59375, 1.9072266, 0.19506836, 0.85839844, -0.93896484, -0.69140625, 0.3076172, -1.7011719, 1.6533203, 1.7255859, 1.6035156, 1.7636719, 1.6767578, -0.16357422, -0.013282776, 1.0185547, -1.6005859, 0.028396606, 0.4494629, 0.04699707, -2.4472656, 1.5253906, -1.6523438, -0.86621094, 2.0644531, 1.4404297, -1.6269531, 2.9550781, 1.8789062, 0.29711914, 1.9345703, -0.7089844, -1.8105469, 0.32958984, -0.40795898, -1.09375, 0.3347168, -0.88183594, 0.46875, 1.71875, -1.0634766, 0.51171875, 0.7294922, 1.9785156, -1.4228516, 0.3947754, -0.3815918, -0.86376953, -1.6259766, -0.4658203, -0.07543945, -0.6972656, 0.92871094, -0.2998047, -2.8535156, 2.5429688, 1.0664062, -0.73291016, -1.9365234, 0.18322754, -3.3867188, -0.4501953, 1.4580078, -0.45288086, 1.7285156, 0.4543457, 2.1269531, 0.4794922, 0.9604492, 1.4033203, -0.04776001, 0.59375, -0.6464844, -1.1777344, 2.3984375, 0.19189453, 0.7402344, 2.8125, -0.82714844, -2.2851562, 0.9472656, 1.6630859, -3.7207031, -0.7519531, -0.3659668, -1.3681641, -0.48291016, 1.5273438, -2.4804688, 0.34106445, 2.0917969, -1.0332031, 0.036376953, -1.3271484, -0.65185547, 1.4765625, -1.2714844, -0.3474121, -1.1845703, -1.2910156, 2.2148438, -0.061187744, -0.08050537, -1.1083984, 2.3398438, 0.5102539, -1.2001953, -0.021331787, 0.41601562, -1.515625, 0.61816406, -0.75634766, -1.6357422, -2.6269531, 1.1992188, 1.4208984, 1.8554688, 1.2666016, 1.3496094, 0.6118164, -2.3046875, 0.7504883, 0.44189453, 0.68115234, -1.2080078, -0.8466797, 1.5439453, -0.9091797, 0.3857422, -0.16247559, 0.44189453, -2.453125, 1.4980469, 1.7412109, 0.6958008, -0.71484375, -0.2861328, -2.265625, -4.8085938, -0.7392578, 0.8432617, -0.56591797, 0.6767578, 1.4619141, -0.22045898, 1.9160156, -1.5117188, 0.18652344, -0.9316406, 0.012176514, 0.5175781, -0.46411133, -4.0976562, -0.049804688, 1.8144531, -0.06341553, 0.06616211, -1.1103516, -0.1529541, -1.0566406, -1.0263672, 0.9848633, -0.41625977, 1.4628906, -0.953125, -1.375, -0.57470703, 2.4824219, 2.0683594, -2.0644531, -0.70703125, -3.3847656, -0.68066406, -0.105163574, -2.0839844, 0.28979492, 0.71728516, 0.51708984, 0.027069092, 0.70703125, -0.9169922, -1.5126953, -1.140625, 0.9003906, 0.89208984, -1.6787109, -1.1152344, -0.24804688, -1.1650391, 0.9458008, -0.5629883, 1.3896484, -2.9628906, -0.5996094, -1.2646484, 1.1357422, -1.65625, -0.27368164, -1.2431641, 2.8027344, 3.4628906, -0.5498047, 1.2636719, 1.6201172, -0.4284668, 0.033935547, 0.8461914, -1.6884766, 2.8691406, -0.41088867, -1.5771484, -1.9921875, -1.7900391, 0.85595703, 0.9033203, 0.20373535, -0.8598633, -1.7265625, -0.96484375, 0.34643555, 0.103149414, -0.5317383, 3.4609375, 0.26245117, -1.5068359, 0.5517578, -0.20581055, -0.04055786, 0.6040039, 1.7626953, 0.72509766, -0.4572754, 1.7080078, 1.5546875, -2.9785156, -0.26953125, -1.3564453, 1.2558594, 0.10772705, -0.71875, -1.1220703, -2.0585938, -0.92089844, -2.2695312, 0.77197266, -2.828125, 1.6875, 0.36108398, -0.4404297, 0.39233398, 1.2167969, -1.0957031, 2.8007812, 4.1132812, 2.3476562, -0.81933594, -0.70996094, -3.1445312, -1.4892578, 1.2910156, -0.65625, -0.42993164, 1.7050781, 0.2487793, -0.9770508, 1.2705078, 2.203125, 3.3085938, 0.9135742, 1.0400391, 0.7705078, 0.82666016, 2.4882812, 0.23059082, 1.0800781, 2.4394531, 0.8027344, -2.9160156, 1.7324219, -0.64746094, 0.6196289, -2.3671875, 0.4104004, -2.5039062, -1.7773438, -1.1044922, -1.6630859, 0.24621582, -3.3261719, 0.98876953, 0.055725098, -0.7817383, -1.2539062, -0.85253906, -0.36645508, 0.65234375, 1.4765625, -0.35839844, -0.035705566, 0.7573242, -0.5859375, -0.9604492, -1.0449219, 1.2509766, -4.28125, 2.1503906, -0.65966797, -1.7568359, 2.609375, 1.9521484, -1.0205078, 1.6474609, 1.6669922, 0.5654297, 2.6386719, -0.4338379, -0.042999268, -0.15405273, -0.77441406, 2.2871094, 3.8984375, 1.2490234, -1.3779297, 0.68652344, -1.3427734, -2.3046875, -2.765625, 2.53125, -0.3388672, -0.39379883, 0.78271484, -0.43139648, 1.6923828, -0.6425781, 2.4296875, -2.7226562, 1.1708984, 1.2041016, -2.5019531, -1.7138672, 1.5332031, 1.6748047, 1.4365234, 0.016571045, -1.1386719, -0.066467285, 3.1972656, 2.2558594, 0.26049805, -0.38793945, 0.103271484, -0.17871094, -1.9580078, 2.5585938, -0.011268616, -0.10772705, -1.2314453, 3.2246094, 1.8056641, 1.3720703, 1.4335938, -0.39819336, 0.63134766, -1.8339844, 0.4411621, 0.20397949, 0.23291016, -1.6816406, -1.2529297, 1.0839844, 0.20959473, -0.58984375, 1.8496094, 0.39257812, -1.1181641, -0.29663086, 2.8007812, -1.7617188, -0.921875, 1.7207031, -0.115356445, -4.609375, -2.7382812, 1.1826172, -1.9667969, -2.4746094, 1.0605469, 1.4375, -0.12658691, -0.23254395, -0.24511719, -1.8740234, 0.95166016, 0.0005950928, 0.14807129, -0.52246094, -1.5351562, 0.36938477, -0.45703125, -0.4736328, 2.7597656, -0.7597656, 2.1621094, 2.9003906, -2.8378906, -0.7895508, -0.25146484, -0.8442383, 0.5756836, 2.6015625, 0.6904297, 1.0498047, -2.0996094, -4.1015625, -0.65771484, -0.9291992, 0.9868164, -0.7416992, -0.9711914, 0.51123047, 1.1787109, 3.8886719, -1.1425781, -0.9111328, 0.76416016, -0.15234375, 0.8720703, 1.3691406, 2.0761719, 1.7207031, 2.0175781, 0.18261719, 3.5488281, 2.6074219, -1.3378906, 1.7021484, 0.6791992, 0.13562012, -1.4882812, -0.9267578, 0.18530273, 0.8540039, 0.96728516, -1.9248047, 0.06201172, -0.018707275, -1.3896484, -2.8300781, -2.1210938]}, "B01GGDBLF2": {"id": "B01GGDBLF2", "original": "Brand: VORTEX (IN)DIRECT HEAT\nName: VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg\nDescription: Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8\" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA\nFeatures: \ud83d\udd25 \u3010MEDIUM SIZE\u3011 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more!\n\ud83d\udd25 \u3010VERSITILE\u3011 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared.\n\ud83d\udd25 \u3010EASY TO USE\u3011 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8\u201d tall\n\ud83d\udd25 \u3010AWARD WINNING\u3011 Makes awesome crispy chicken wings and seared steak!\n\ud83d\udd25 \u3010GENUINE\u3011 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.\n", "embedding": [-2.640625, 1.0986328, 1.8984375, -2.3320312, -1.0957031, 0.3251953, -1.0439453, -1.0986328, 0.17468262, 1.0595703, 0.06567383, 1.1806641, -1.7216797, -2.5371094, -0.026931763, 0.2927246, 1.3242188, 0.12768555, -1.2519531, 0.15466309, 3.3417969, 2.2167969, 0.8208008, -2.4296875, 1.9853516, 1.4580078, 4.3828125, -3.59375, 1.6259766, -0.45410156, 1.5917969, 2.3945312, 0.32128906, 2.3984375, -2.6777344, 0.09246826, -1.1884766, -0.028747559, -0.62060547, -0.53125, -1.6298828, -1.09375, 1.8554688, 0.3527832, -3.2910156, -0.94433594, 0.5854492, -0.38916016, -1.3603516, -0.4099121, 1.8779297, 0.38964844, -0.5566406, 0.7290039, -1.5048828, 4.0039062, -1.25, -1.9677734, 0.56347656, -0.74072266, -0.20043945, -1.7197266, -2.0605469, 1.84375, -0.8129883, 1.8916016, 0.2932129, 0.13415527, 0.45532227, -0.75683594, 1.1826172, 0.5571289, -2.7890625, 0.097351074, -0.61328125, -1.9482422, -3.3554688, -0.51171875, 0.4645996, -0.7036133, -1.4267578, 2.4648438, -0.29711914, -1.8476562, 0.08911133, 0.6796875, -0.78564453, -1.0498047, 2.4199219, 0.35595703, -0.46069336, 2.0449219, -0.10668945, -4.2460938, 2.5742188, -4.265625, -0.40673828, 0.085632324, -3.3144531, 1.1269531, -1.2929688, 0.28198242, 0.7060547, -0.9707031, -2.8730469, -0.25683594, 0.5214844, -0.67529297, -1.6904297, -0.7944336, -1.4658203, 0.013336182, 0.07366943, 1.9658203, 1.8388672, 0.375, 0.61083984, -0.4116211, 2.0625, -0.13244629, 3.3613281, -0.6645508, 1.5927734, -1.4794922, 1.2705078, -0.013313293, 0.30541992, -0.17150879, 3.640625, -1.4277344, 0.21887207, -0.33496094, 2.8027344, -1.3007812, -0.47558594, -3.8652344, -1.2871094, -0.49414062, -2.3007812, 0.54785156, -1.4316406, -0.62646484, 1.8105469, -1.15625, -3.3378906, -1.8769531, 0.17407227, -0.23840332, -0.6875, -0.9589844, 0.84716797, -1.6318359, -0.546875, -0.28930664, 2.6308594, 0.35473633, -1.1777344, -1.5292969, 1.4814453, 0.75, 0.13476562, -0.4152832, -0.31713867, -0.5419922, -0.8256836, -2.7773438, 0.05618286, 1.4208984, 0.9082031, 4.578125, 0.6152344, -0.18811035, 0.6777344, -2.1542969, 2.5957031, -1.7080078, 0.22998047, 1.0263672, 2.8828125, 1.3505859, -2.9316406, -0.4663086, -0.56396484, 0.7241211, -0.31396484, -0.7636719, 0.58447266, 1.8916016, 2.4101562, -1.6777344, 0.27197266, 0.50683594, 1.0742188, 0.24743652, 1.1835938, -0.1739502, -0.6123047, -2.0390625, 2.2871094, -0.28320312, -1.3125, -1.8974609, 0.17578125, -0.84521484, 0.07043457, -0.6459961, -1.0322266, 0.1661377, 0.66308594, 3.2949219, -0.18701172, -0.76953125, 0.61328125, 1.5419922, -1.2324219, -0.11352539, 2.015625, 1.4912109, 2.4746094, -1.0292969, -0.63916016, 0.07196045, -1.3046875, 3.7792969, 1.0498047, 0.47436523, 1.3720703, 0.17370605, -5.1875, -1.7685547, 2.9941406, 1.1933594, 0.37402344, 0.6489258, -0.47485352, 4.25, 2.8632812, -0.35791016, 0.24682617, 2.3066406, -0.0736084, 0.2939453, -1.0654297, 1.2001953, -0.21850586, 0.4880371, -1.1455078, 4.171875, 0.058898926, 1.0175781, -0.4794922, 1.4082031, 1.2705078, -2.0117188, 1.3945312, -0.23840332, -0.5239258, 1.0136719, -0.6767578, -3.1171875, 1.7021484, -0.75634766, -1.1621094, 0.8417969, -0.36865234, -1.2128906, 1.7089844, 2.2441406, -0.8696289, -0.84716797, 1.1621094, 0.91503906, -0.07287598, -1.5878906, 2.0019531, 1.5292969, 0.24621582, 1.1591797, 0.84277344, -0.73583984, 0.6201172, -0.056610107, 0.5620117, -1.4013672, 1.1279297, -1.0019531, -1.0205078, -0.8544922, 0.38232422, -0.46191406, 2.9121094, 1.3935547, -1.9042969, 2.5078125, -0.5888672, 2.1054688, 1.5205078, 0.37939453, -0.23657227, 2.0800781, 0.93359375, 0.80029297, -2.0664062, 0.37768555, -2.4277344, -0.46923828, 2.5117188, -1.7509766, 0.44921875, 1.9746094, -0.4230957, -1.7441406, -1.1669922, -1.0898438, -1.1650391, -0.5517578, 1.7666016, -2.1542969, 1.2949219, -0.63623047, 1.421875, 0.6586914, 0.0055732727, -2.2734375, 0.5566406, 1.2539062, -0.17028809, 2.2167969, -1.1757812, -0.13989258, -0.8154297, -0.6176758, 0.55859375, -1.9794922, -0.87060547, -0.19152832, -0.6816406, -1.6806641, -1.4375, -1.0166016, -0.4880371, 1.3427734, -2.1289062, -1.0390625, -0.54785156, -3.3300781, -1.6015625, -0.8808594, -0.9326172, -0.76220703, 1.7275391, 0.80029297, -1.6523438, -3.9824219, -0.01902771, -0.52441406, 0.90234375, -1.2324219, -1.2578125, 2.0585938, -0.3269043, -1.0107422, -0.4284668, 0.66748047, 1.4863281, 1.8173828, -0.3540039, -1.8222656, 2.9101562, -2.3867188, 1.9228516, -1.2763672, -1.1455078, -1.3720703, -0.3491211, 0.0076560974, 0.9296875, 3.7792969, -0.72753906, 1.6201172, -0.56884766, 0.12371826, 0.010665894, -0.18457031, -0.4560547, -0.17651367, -0.77441406, -1.8876953, -3.0800781, -2.640625, -2.1015625, -1.453125, -0.22680664, 0.9189453, -0.037506104, 1.1552734, 0.18884277, -1.1816406, -0.95947266, -1.2558594, -0.90478516, -0.7446289, -1.7021484, -0.31933594, -0.97314453, -1.8056641, -2.3515625, 0.97558594, 1.65625, -0.640625, 1.8964844, 2.1113281, -0.006591797, 2.171875, 0.7597656, -2.0175781, 1.21875, 0.41723633, -0.2130127, 1.9824219, -0.7651367, -1.171875, -3.375, 2.4628906, 3.6484375, 0.93847656, 3.125, 0.6933594, 0.44580078, 0.5805664, 1.203125, 0.80615234, 0.12658691, 1.6621094, 2.3613281, 0.056732178, -1.6230469, 0.23535156, 0.7519531, -1.2900391, -1.4775391, 1.6416016, 0.9711914, 1.6679688, 0.34179688, 0.5756836, 1.4384766, -0.54541016, 2.0371094, 4.0859375, 0.8535156, -0.43481445, -0.59765625, 0.44335938, 1.7753906, 0.2841797, 1.3876953, -0.50390625, 1.5722656, 2.1875, 0.07287598, -1.1376953, 0.35107422, -0.16015625, 0.3269043, 1.5351562, 2.6621094, 0.1875, 0.0524292, -1.4404297, 2.2636719, 2.0742188, 0.29052734, 0.98095703, 1.7333984, -0.703125, -1.0292969, -0.32983398, 0.82958984, 1.1025391, -2.0800781, 2.4707031, -1.6035156, -0.69970703, 1.4208984, -1.5039062, -2.5371094, -1.7587891, 2.1113281, 0.37817383, -0.3474121, -0.46142578, -0.16967773, -0.29956055, -1.0810547, 0.22192383, 0.6074219, 0.6557617, 0.03189087, 0.81347656, -1.8105469, 0.054718018, -2.2441406, -0.7167969, 0.57470703, -0.043395996, -2.0117188, -0.01586914, 0.8691406, 3.0273438, -0.09234619, 0.28564453, 0.71777344, 3.0566406, -1.375, -3.0449219, -1.5566406, 0.1809082, -3.4785156, 0.41357422, 1.8828125, 1.5, -0.13452148, -0.20031738, 1.6425781, -0.49023438, -0.9980469, 2.3125, -2.1679688, 0.609375, -1.4599609, -3.3886719, 0.3618164, -1.1201172, -0.11566162, 0.9213867, 0.32495117, 0.5605469, 1.4140625, 1.8798828, -2.5566406, -0.5805664, -2.1269531, 0.46484375, -1.7861328, 1.1347656, 0.66064453, -0.047424316, -3.640625, 0.21850586, 0.3581543, -0.26757812, 1.984375, 0.25268555, -1.8027344, 1.5683594, -0.2890625, 1.1035156, -2.0214844, 1.375, -0.5336914, -0.7792969, 1.1513672, -0.9350586, 2.8046875, 0.026779175, 0.44335938, -0.17785645, 1.7089844, -0.56591797, 0.45996094, -0.28076172, 2.2050781, 2.6386719, -0.23657227, -1.1054688, -0.59765625, 0.4013672, 0.30444336, -3.1972656, 0.2746582, -0.7167969, -1.6621094, -0.0011320114, -1.3164062, -0.16809082, 2.2128906, 1.0449219, -4.6835938, 0.26049805, -1.6318359, -0.28173828, -2.09375, 0.30786133, -1.0498047, -1.1357422, 1.9658203, -1.5283203, 1.1455078, -0.0703125, 0.9482422, -0.82470703, 0.94873047, 2.1875, 2.7148438, 1.84375, -2.6855469, -1.1943359, -0.38671875, -0.9946289, -0.75878906, 0.95654297, 0.19616699, 0.7348633, 1.9189453, 0.12261963, -1.6113281, -0.453125, 0.65625, 2.1445312, -0.13867188, -2.03125, -1.1416016, -1.6660156, 1.1845703, 1.4433594, -0.4519043, 2.5722656, -0.22595215, -0.4025879, 1.0400391, -1.1591797, -1.78125, 1.1064453, -0.75878906, 1.3095703, -0.029632568, 0.20446777, 1.7138672, -0.6870117, 0.7944336, -0.08618164, 2.0332031, 1.2978516, 0.8339844, -0.24523926, 0.61816406, -2.6152344, -0.43945312, 4.4414062, -1.3212891, -0.84375, 4.0898438, 1.2294922, -2.3867188, 1.5224609, 1.4228516, -2.5507812, 0.14038086, -0.10821533, -1.8476562, 1.6015625, -0.49047852, -1.859375, -0.72314453, 2.75, -1.21875, 2.0488281, 0.7963867, -1.8095703, 2.5351562, -2.4355469, -0.0680542, -1.1601562, -0.3461914, 1.1708984, -0.081604004, -0.96875, -1.2373047, 1.6591797, 1.8603516, -1.9794922, -1.5712891, 0.33154297, -1.0566406, -1.5810547, -1.4990234, -1.6503906, -2.5273438, -1.6162109, 1.9941406, 0.68652344, 0.002494812, 0.06518555, 1.6328125, -1.7050781, -1.5273438, -3.4453125, -0.9321289, -3.3710938, 0.0062713623, 2.5742188, -2.671875, -1.0273438, -0.90966797, -2.2734375, -0.1665039, 0.2548828, -0.33984375, -0.51660156, 1.1542969, -0.4477539, -2.1191406, -2.7636719, -2.5664062, 0.5283203, 0.49145508, -1.7373047, 0.3388672, -0.90966797, -2.2832031, 1.0664062, -1.1787109, -1.5722656, 0.033050537, 0.09820557, -0.8886719, -1.3349609, -1.4814453, 0.0013895035, 0.61376953, 2.9355469, 1.5810547, 0.3425293, -3.2988281, -0.18688965, 2.1660156, -3.3105469, -0.07910156, 0.6621094, -0.13928223, 1.6279297, 1.6328125, -0.6191406, -1.8486328, 1.6220703, -1.859375, 0.79541016, -0.36669922, -1.9609375, 2.2949219, -1.3818359, -1.1328125, -0.5, 0.82958984, 1.9912109, 1.3652344, 0.69140625, 0.17651367, 1.1835938, -0.47583008, 0.7792969, 0.3046875, 0.68652344, 1.0751953, 0.9375, 1.6933594, 1.1376953, -3.8085938, -2.9121094, -1.5341797, -1.7724609, -0.13085938, -1.3291016, 0.9711914, 1.1533203, -0.50439453, 2.1132812, 1.9208984, 1.4414062, 0.21459961, -0.6269531, -0.77734375, 3.765625, 2.015625, -2.8671875, -1.3339844, 0.6196289, 0.16687012, -1.5371094, -0.012466431, -3.4882812, 0.7636719, -2.0507812, -1.0488281, -0.3347168, 0.5493164, 1.15625, -0.8330078, -1.2949219, 1.8847656, 2.6308594, -0.16137695, 2.3183594, 1.4228516, 1.8925781, -1.2304688, 3.0078125, 1.6259766, -0.8730469, 1.0908203, 0.19226074, 0.73535156, 0.71191406, -1.3554688, 2.4453125, 0.8149414, -1.3095703, 0.116882324, -2.9042969, -0.38305664, 2.4335938, 1.1650391, -0.061920166, 0.46606445, 0.98339844, 0.6035156, 0.7915039, 1.4707031, 0.77490234, -3.171875, 0.35424805, -2.3554688, 0.6411133, 1.3339844, -1.7382812, 0.86865234, 0.20324707, -0.121398926, -0.33935547, -1.3007812, -0.5004883, 0.62646484, 1.1132812, 3.7871094, -0.47973633, 1.6152344, 1.1621094, 1.5292969, 4.1328125, 0.29614258, -2.0429688, -0.35961914, 0.43969727, 3.3886719, 0.15625, -1.0341797, 1.6796875, -0.35229492, 1.9472656, -1.1748047, -2.6289062, 2.15625, -4.5117188, 0.7675781, -1.4160156, 0.6489258, -2.9492188, -0.2421875, 0.28686523, -0.36572266, -0.47436523, -0.7470703, 2.3203125, 1.1552734, 1.6679688, 0.105529785, -0.39331055, -0.40527344, -3.4785156, -1.1757812, 0.6508789, -1.5595703, -1.5302734, 1.5429688, 2.4160156, 1.7529297, -1.7382812, -3.203125, 1.2763672, 0.6538086, 0.5673828, -1.4140625, -0.35107422, 0.40527344, 0.7128906, -0.66503906, -1.4648438, 1.4228516, -1.5048828, -3.5917969, -1.7587891, 2.6015625, 1.3154297, 1.1289062, -0.7866211, -3.1152344, 2.0957031, 1.3115234, 1.6308594, -1.625, 0.69140625, 0.5986328, -1.3554688, -0.1928711, -0.17956543, 0.5283203, 3.7050781, -0.15783691, -0.55029297, 0.20800781, -1.7861328, 1.9306641, 2.1015625, 2.2792969, -0.89404297, 0.055023193, 0.59228516, 1.515625, 0.32006836, -1.7226562, -0.1595459, 0.72021484, 0.22045898, 2.9433594, 1.2783203, -0.68359375, -0.66552734, 1.3447266, -1.2304688, 0.24047852, -0.36523438, 0.026397705, -0.097473145, -0.19702148, 0.19177246, -0.34692383, -0.8154297, 2.4238281, -0.4128418, 0.9472656, 0.16308594, -2.0058594, 1.3603516, 0.034240723, -1.5400391, 0.5317383, 0.6376953, 1.6464844, 0.640625, -1.1298828, 1.0058594, 0.7080078, 0.44067383, 0.1875, 1.0566406, 0.82373047, 0.7128906, -1.8144531, 0.028274536, -0.37109375, -1.703125, 0.6279297, -1.6679688, 0.47216797, 1.2246094, 0.8588867, -0.18847656, -1.6660156, -1.6035156, -2.640625, 1.0917969, -0.8598633, 0.91552734, 2.3164062, 0.9614258, 0.5673828, -2.0644531, -2.0878906, -0.9667969, 0.09313965, -0.4716797, -1.9658203, -1.6757812, 0.9692383, 1.0234375, 0.9667969, 0.4572754, 0.53271484, 0.31079102, -1.2294922, 1.09375, 0.25585938, 0.81591797, -0.8671875, 0.8227539, 0.9970703, 0.79052734, -0.4453125, 1.3691406, 0.99316406, 3.4335938, 1.6875, -1.9912109, -0.67285156, 1.171875, 2.6542969, 0.4482422, -0.72021484, 1.2216797, 0.5756836, -1.0712891, -2.3242188, -1.6171875]}, "B07NVMY43D": {"id": "B07NVMY43D", "original": "Brand: MR. TORCH\nName: BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only)\nDescription: The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.\nFeatures: Upgraded Full Metal Cover Version, change old design's plastic knob to solid brass constructed knob.\nOur torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability.\nStrong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350\u2103, meets the most common needs for both professionals and DIY fans.\nSmart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane\nWith recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.\n", "embedding": [0.41723633, 1.4199219, -0.5332031, -0.10321045, 1.7382812, -1.4091797, 0.19360352, -0.2142334, 0.85058594, 0.74365234, -1.3613281, -0.41381836, 0.10522461, -4.59375, -0.70703125, 0.30737305, -1.8046875, 0.18737793, 1.6601562, 0.66308594, 0.49829102, 0.6772461, 1.484375, -1.4003906, 0.88427734, -1.4169922, 3.5898438, -0.8256836, 2.2675781, -1.3867188, 1.3330078, 0.26391602, -0.26098633, 0.09063721, -2.0703125, 0.96240234, 0.3088379, -0.5966797, -4.015625, -1.109375, -1.9951172, 0.2902832, 1.2587891, -0.7001953, -3.0761719, 1.5019531, -1.0634766, 1.2138672, -0.25146484, -1.8720703, 0.76416016, 1.5205078, -0.23168945, -0.15625, 1.5458984, -1.5800781, 0.043426514, -2.9355469, 1.9628906, -1.3808594, 3.2558594, -0.25732422, -1.9355469, 0.024047852, 0.30639648, 1.2148438, -1.8066406, -2.28125, -1.3662109, 1.3271484, 1.2451172, 3.125, 2.984375, 0.43579102, 1.1113281, -0.08428955, -2.75, 1.3105469, 1.2275391, 0.7729492, 0.3293457, 2.4726562, 1.4277344, -0.58154297, -1.4707031, -1.1162109, -0.97265625, 1.4228516, 1.6191406, 3.1289062, -2.2695312, 2.4960938, -0.5576172, -4.640625, 3.2949219, -1.0351562, 0.7089844, -0.013496399, 1.2636719, 0.7763672, 1.0332031, -0.34887695, -1.9003906, 2.234375, -2.2792969, 0.036315918, -0.18017578, 1.9228516, -3.1542969, 0.8256836, -1.5947266, 0.06939697, 0.9785156, 0.79052734, -2.5449219, -0.08605957, -0.95410156, -0.5576172, 2.1386719, 0.4248047, 3.1855469, -1.5214844, -1.1171875, -2.578125, 1.2597656, 2.4121094, -1.4580078, 0.37841797, 1.3515625, -0.9926758, -0.33618164, 0.014129639, 1.9570312, -1.1855469, -1.8339844, -1.2255859, -1.0341797, -1.1806641, -2.2519531, -2.3164062, -2.7207031, 3.1074219, -1.7421875, -1.4736328, -3.4140625, 0.85009766, -1.9208984, -1.0048828, 0.21704102, -0.6328125, 1.3583984, -0.6567383, -1.5322266, -1.8720703, 3.1015625, 2.3203125, 1.5341797, -0.359375, 3.4628906, -0.8647461, 2.5976562, 0.8886719, -1.7773438, 1.4492188, -2.7753906, -1.4121094, 1.6503906, 0.43530273, -0.15625, 0.5073242, 0.0071792603, 1.5332031, -1.9072266, 1.2675781, -1.1757812, -1.1923828, 0.67285156, 2.9316406, 1.0986328, -0.45385742, -0.26538086, -1.5, 0.46728516, -2.1953125, 2.234375, 0.7294922, 0.05529785, -1.7382812, 0.43408203, -1.9521484, 1.1572266, 0.8808594, 0.1217041, 0.75146484, -0.14257812, -1.7910156, 0.2644043, -1.2949219, 1.5996094, -0.20495605, -3.0039062, -0.23632812, -0.40625, -0.013847351, -2.5800781, -2.2382812, 0.037475586, 0.75390625, 1.8291016, 1.6923828, -1.4111328, -0.8496094, 1.6738281, -0.3630371, -0.3215332, -2.1191406, -0.19519043, -1.4326172, 1.2792969, 0.13684082, 1.0039062, -1.5283203, 1.4785156, 3.2910156, 0.84033203, 0.52246094, -2.2460938, -0.5756836, -1.5576172, -3.4746094, 1.1376953, 1.5986328, -0.82666016, -1.1992188, -0.026382446, 1.0380859, -0.70703125, -1.6210938, 2.2597656, -1.5566406, 0.006916046, -1.4248047, -2.171875, -0.72314453, 2.4628906, -0.32055664, -0.46923828, -0.20935059, 0.41601562, -0.20019531, 3.0859375, -0.28051758, 2.2460938, 0.14489746, -0.3017578, 0.22546387, -0.8261719, 1.1103516, 0.21520996, 0.20373535, 2.6425781, 1.8847656, -1.2226562, 1.4375, 1.4189453, -0.7861328, 1.1044922, -0.8334961, 0.3786621, 0.4025879, 0.19494629, 1.9375, 0.40844727, 0.93310547, 4.2578125, 2.3730469, -0.47192383, 2.15625, 0.94433594, 2.0605469, 0.7519531, -0.27734375, 2.3359375, -3.9472656, -0.30029297, -1.2236328, 2.3242188, -0.39160156, -0.3918457, 1.4169922, 3.2128906, -0.2692871, -1.7724609, 1.1113281, 0.57470703, 2.1132812, 2.5605469, 1.2597656, -0.41088867, -2.5957031, 2.5058594, 0.9658203, 0.1204834, 0.0024852753, 1.1533203, 0.13452148, 1.0595703, -0.6435547, 1.0888672, -0.88183594, 0.19567871, 3.5488281, 0.4633789, 1.8222656, -1.7861328, -0.19177246, 0.7573242, -3.5078125, 1.4521484, -0.55371094, 2.2167969, 2.7441406, 1.9589844, -1.2080078, 0.75927734, 0.16101074, -2.3164062, 2.5058594, 0.52783203, 0.28271484, 0.023468018, -0.7944336, 0.3972168, -2.2695312, -0.8779297, 0.7558594, 0.88916016, -3.3515625, -1.0224609, -3.1835938, -0.2697754, 2.2265625, -0.37695312, 1.3847656, -1.1220703, 0.026351929, -0.7861328, 0.10205078, -0.64697266, -0.69628906, 0.40551758, 4.265625, -1.7998047, -2.1953125, 0.5810547, -0.49951172, -1.7441406, 0.95996094, -1.7871094, 1.5771484, -0.4260254, 0.31445312, 0.12939453, 1.0058594, 0.058532715, -2.078125, 2.9980469, -3.1640625, -1.1669922, -0.65185547, 2.6328125, -0.02330017, -1.546875, -1.2695312, -1.3837891, -1.765625, 0.44848633, 2.8183594, 0.43408203, 2.5546875, -0.2668457, -1.4238281, 0.39819336, -0.028915405, -1.8896484, 0.08905029, 1.1289062, -1.9003906, -2.3203125, -2.7753906, 0.52246094, -1.3095703, -1.2128906, 1.8955078, -0.46923828, -0.43359375, 1.0576172, -0.4855957, 0.43530273, 1.2900391, -1.0810547, -0.09753418, -3.1835938, 2.1347656, -1.1308594, -2.171875, 0.09411621, -1.5029297, 0.4416504, -2.2050781, -0.08605957, 0.19018555, 2.1914062, 0.3413086, 2.8671875, -2.3203125, -0.15905762, -1.4472656, 0.7011719, -0.82373047, -3.2382812, -0.45922852, -0.077819824, 0.76171875, 3.6113281, -0.4741211, 0.8378906, -0.6489258, 0.0024299622, -0.3088379, -0.9873047, -1.6943359, -1.2460938, 1.0957031, 1.3603516, -3.0332031, 0.6743164, 1.3505859, 1.7402344, -3.5292969, 1.2675781, 2.3925781, -0.06286621, -0.121520996, 0.7949219, -0.21911621, -1.8769531, -1.2724609, -0.61865234, 2.0195312, 0.02381897, -0.7285156, 1.3496094, -0.14001465, -0.515625, -0.49072266, 0.9560547, 0.80566406, 0.8642578, 2.203125, 0.6098633, -1.1650391, -0.98583984, -0.6411133, 1.8662109, 0.8515625, 1.9677734, -0.56884766, 0.3173828, 0.36743164, -1.5800781, 0.3322754, -1.8583984, -1.0371094, 0.1270752, 3.1171875, -0.3659668, -1.3945312, -0.5395508, 0.65966797, -1.328125, 1.4375, -2.53125, 0.33862305, 2.1269531, -0.30932617, 2.7832031, -1.2695312, 1.4746094, 0.052856445, -1.0878906, -0.84521484, -0.14794922, -0.7885742, -1.7148438, -1.2636719, -1.2587891, -0.09259033, 3.4824219, -0.4182129, -2.4433594, -0.13366699, -2.4570312, -2.1347656, -1.1777344, -1.9804688, -0.12017822, -1.9980469, 0.9458008, 0.20544434, 0.5263672, -1.3144531, 0.2244873, 0.32226562, 2.1054688, -1.3242188, 1.9189453, 0.07281494, -1.0947266, -0.015365601, 0.8330078, -1.1552734, -2.3828125, 0.3701172, 1.7744141, -0.09484863, -0.875, 2.3808594, -2.2011719, -2.1503906, -2.90625, -1.9238281, 1.6103516, -1.6875, -0.34472656, 2.4707031, -0.4104004, 0.8754883, -0.62841797, -0.01991272, -0.63964844, -2.0722656, 1.3984375, 2.4960938, -1.8027344, -3.9316406, 0.8461914, 0.6796875, -2.0410156, -0.28344727, 0.43530273, -0.53564453, 0.060791016, 1.0947266, -0.4975586, 0.8857422, 1.2783203, 1.3867188, 1.6552734, -1.1347656, 0.35986328, -1.4003906, -0.5488281, -1.8242188, 0.6542969, 0.38305664, -0.4177246, 1.7949219, 1.3828125, 1.4775391, -0.9145508, 0.3564453, 1.0595703, 3.3183594, -0.057373047, -1.515625, 1.3369141, -1.1376953, 2.6582031, -0.9970703, -0.64208984, -0.75439453, -1.9853516, 2.4003906, 0.27124023, 0.13781738, 0.98779297, 2.6816406, -2.0019531, 1.6210938, 0.5957031, -3.3496094, 0.124938965, 1.9443359, 0.7504883, -0.30371094, 1.3818359, -0.20422363, 0.97314453, 1.1826172, -2.2675781, -1.3291016, 1.6025391, 2.5273438, -0.059661865, 3.0234375, 0.84472656, -1.8066406, -1.7226562, 2.0527344, -1.5996094, 0.1184082, 1.1044922, -0.23388672, 2.2421875, 1.5664062, 0.5517578, 0.66552734, 2.9101562, -2.0566406, 0.5410156, 0.7089844, -0.28588867, -1.8964844, 0.31811523, 0.17687988, -0.9824219, 1.0957031, -0.8120117, 0.84228516, 0.80371094, -0.12902832, -0.86279297, 0.40527344, 0.6972656, -0.69873047, -0.26464844, 1.5410156, 3.0058594, 1.9570312, 0.2265625, -0.60498047, 0.59814453, -0.70166016, 0.15698242, 1.0371094, 0.1619873, -1.4179688, -1.5703125, 2.6777344, 1.2441406, 1.4833984, 1.5839844, -0.34375, -1.8623047, -0.85302734, 2.4394531, -3.1484375, -1.1328125, -2.5820312, -0.39819336, 2.40625, -0.073913574, 0.32763672, -1.5625, 2.3378906, 1.1337891, 0.9375, -0.1394043, -0.3557129, 0.53759766, -1.4189453, -2.0820312, -2.1601562, 1.9960938, 0.11016846, 0.6274414, -0.9423828, -0.23266602, 1.7246094, 1.5576172, -0.7246094, 0.1751709, -0.27441406, 0.28100586, 1.0585938, 1.1699219, 0.22875977, -1.2529297, 2.7578125, -0.6176758, -0.72802734, 1.390625, -0.3310547, 3.1445312, -1.0058594, -0.2763672, -0.7402344, 0.375, -1.5039062, -0.2064209, 4.6484375, -1.0292969, 1.9287109, 0.5683594, -0.8105469, -0.50439453, 0.1105957, 0.5341797, 0.06842041, -4.140625, -0.121032715, -3.1015625, -4.1640625, -2.0488281, -0.21496582, -0.86816406, 1.5654297, -0.9091797, -0.8203125, 0.8276367, -0.8105469, 0.8198242, 0.6582031, 0.32739258, 0.48120117, 0.55566406, -2.5097656, 1.4941406, 1.2958984, 1.6162109, 1.0673828, -0.62402344, 1.7226562, -1.5839844, -3.2011719, 1.203125, -1.8251953, -0.46826172, -0.3371582, -0.5708008, 0.33862305, 2.3925781, 0.32495117, -1.875, -1.0351562, -2.1367188, 0.98779297, 0.96435547, -4.0546875, -1.6728516, 1.2548828, 0.3293457, 0.4831543, 2.5683594, 1.0751953, -3.546875, -1.1123047, -0.6464844, 0.21984863, -0.39160156, -0.030349731, 0.9941406, 0.08081055, 0.47973633, 1.8242188, 2.6230469, -3.5957031, -0.8652344, -0.93603516, -0.030334473, -2.2441406, 1.7148438, -1.0800781, 0.86328125, -1.0683594, -0.09008789, 1.3134766, -0.89208984, 0.5595703, -1.4746094, 1.3066406, -0.7739258, 4.2695312, -0.7548828, -3.3085938, -1.8349609, -2.0742188, 3.5273438, 1.0791016, -0.9848633, 0.28710938, 0.59228516, -0.9873047, -1.1201172, -1.2255859, -0.4243164, 0.006717682, 1.4990234, -2.9863281, 0.5942383, 1.6513672, -1.515625, 1.8828125, 1.6513672, 0.9370117, -0.77734375, 0.2824707, 1.1425781, -4.0742188, 0.12597656, -0.61816406, -1.3964844, -0.0046920776, -0.5234375, -1.1972656, -1.7890625, 0.6845703, 0.20397949, 0.60302734, -0.41210938, -1.5869141, 1.8896484, 1.2822266, 0.69091797, 2.7011719, -2.3300781, -0.52978516, 4.4101562, 0.7060547, -0.90283203, -0.8833008, -1.7841797, 0.7675781, 1.4316406, -3.1445312, 1.1875, 1.2929688, 1.6679688, -2.078125, 0.9506836, 2.1894531, 0.5078125, -0.2697754, 4.265625, 1.4882812, -0.2319336, 2.2109375, 0.22851562, -0.10015869, 0.4165039, 1.1083984, 1.2216797, 2.3828125, 0.14562988, 1.3251953, 0.022506714, -0.25952148, -0.48901367, -1.2246094, -2.7402344, 1.1728516, 1.4335938, -2.7480469, 1.9824219, -2.7480469, -1.9619141, -2.2089844, -0.73095703, -3.34375, -0.27172852, -1.5244141, 0.83740234, 1.140625, 0.9296875, -2.515625, 1.8759766, -0.43701172, 0.50927734, -4.59375, 0.30004883, -1.1376953, 0.56152344, 2.5683594, 2.3085938, 0.21362305, 1.0439453, 1.1044922, 3.5664062, 0.11907959, 1.9277344, 0.76464844, -2.0683594, 0.5917969, 1.8056641, 1.8525391, 1.5673828, -0.9399414, 0.45654297, -0.23535156, 0.26220703, -3.7128906, 5.3515625, -0.07116699, -2.8476562, 1.7275391, -1.8730469, -0.77783203, -3.0175781, 1.9462891, -1.8681641, 0.97314453, 2.6972656, -2.09375, 0.35424805, 1.5078125, 2.0507812, 2.9414062, -0.80566406, -2.1269531, -0.33129883, 0.56396484, 1.4462891, -0.27807617, -1.5, 0.83203125, -0.076660156, -2.9238281, 3.8066406, 0.055755615, 0.11187744, -1.7558594, 2.4980469, 1.734375, 1.7119141, 0.7519531, -0.75634766, 0.9921875, -0.40014648, -0.14208984, 1.9589844, 0.8564453, -1.6513672, -0.90283203, 1.3339844, 0.82128906, -0.75634766, 0.6455078, 1.2519531, -3.8867188, -0.99560547, 0.18066406, -2.3476562, -0.1026001, 2.796875, -1.5927734, -2.9433594, -0.46923828, 2.2597656, -2.2382812, -2.7832031, 0.32617188, 1.8300781, -0.94384766, -2.484375, 1.0039062, -0.7348633, 1.1582031, 0.066467285, -0.14758301, -0.73095703, -1.4824219, 1.2900391, 0.12658691, -1.9013672, 0.80566406, -1.0195312, 0.26123047, 1.7871094, -3.2070312, -1.1943359, -1.9052734, -1.109375, 0.14428711, 2.5175781, -0.0146484375, 1.0488281, -0.6098633, -3.203125, 1.8740234, 0.5805664, 0.2397461, -0.67089844, -0.6899414, 0.4477539, 0.6645508, 2.2519531, -1.6845703, 0.031234741, -0.28344727, 0.9277344, 0.66259766, -1.0820312, 2.7460938, 1.0292969, -0.24694824, 1.3203125, 2.6289062, 2.6972656, -0.23413086, 1.6953125, 1.5791016, 1.2011719, -0.8676758, -1.640625, -1.5351562, 0.4645996, -0.6191406, -0.52001953, 1.0048828, 0.20031738, -0.8232422, -1.9902344, -1.4111328]}, "B08124CP1Z": {"id": "B08124CP1Z", "original": "Brand: Mrinb-Sports\nName: Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting\nDescription: \nFeatures: \n", "embedding": [1.5625, 1.1835938, 0.9736328, 0.60302734, -0.020202637, 1.6035156, -0.53808594, -1.9257812, -0.06689453, 1.046875, 0.88378906, 0.4885254, 0.7890625, -3.2304688, 1.1230469, 0.44921875, 1.2255859, 1.1699219, 1.0917969, -1.1367188, 0.9536133, -0.076660156, 1.7001953, -2.203125, 1.1914062, 1.5195312, 6.1953125, -1.5498047, -0.3251953, -0.20092773, 1.1806641, 1.5039062, -0.2434082, 1.5292969, -2.2519531, -0.75146484, -3.5351562, -0.014976501, -1.9072266, -0.0076522827, -0.5961914, -0.6152344, -0.42407227, -0.31176758, -2.6113281, -1.1943359, 0.48754883, -0.47509766, -1.4199219, -0.23535156, 0.6015625, -0.1171875, -1.2705078, 0.7895508, -1.9453125, -0.23913574, -1.8408203, -2.546875, 0.875, -0.10241699, 0.9379883, -1.8632812, -0.78808594, 0.30029297, -0.096191406, 1.5195312, -1.0908203, -2.0527344, 0.6088867, 0.67089844, 2.6386719, 0.13085938, -0.5732422, -0.88720703, 0.9082031, -0.3388672, -3.5253906, 1.1777344, 2.2089844, -0.9399414, -1.046875, 2.4335938, 1.3154297, 0.18652344, 0.3466797, -1.2548828, -0.58984375, -1.0537109, 1.765625, 1.3515625, -2.4882812, 1.3359375, -0.7705078, -5.2382812, 0.96484375, -1.2109375, 0.9458008, 0.9355469, -0.44360352, 1.2373047, 1.2695312, -0.013839722, 2.0078125, 0.28442383, -0.8535156, -0.6796875, 0.7631836, 1.2773438, -1.3320312, 0.5654297, -2.734375, -0.4970703, 1.4794922, 1.3007812, -1.7324219, 0.5439453, 0.33398438, 2.2851562, 3.9746094, 0.6513672, 3.6074219, -1.5361328, 1.8720703, -0.76708984, 0.6586914, -0.91503906, -0.5419922, 0.24963379, 0.6298828, -1.2314453, 2.8476562, 1.1484375, 1.2978516, -0.103881836, -0.8930664, -1.2724609, -2.0097656, -2.8808594, -1.5869141, -2.1289062, -1.4619141, -0.022338867, 2.2519531, -1.2421875, -2.9765625, -0.625, 0.3425293, 1.9199219, 0.62353516, -2.0605469, 0.4116211, -0.7763672, -1.2128906, 0.9770508, 1.2353516, 1.5917969, -1.3320312, -0.7998047, 3.7304688, 2.0449219, 1.2939453, -0.15075684, -0.9189453, 0.074523926, -1.2851562, -2.9257812, -0.2836914, 0.7626953, -0.8232422, 2.4765625, 2.1308594, -2.1230469, 0.3413086, -1.7832031, 0.26391602, -2.2167969, 1.1015625, 2.5097656, 1.4199219, -1.3203125, -2.9570312, -1.9453125, -0.10461426, 0.049713135, 1.6171875, -0.21447754, -0.9453125, -0.4050293, 0.22070312, -0.11621094, -0.5126953, 0.41357422, -1.7861328, 1.2871094, 0.91308594, -2.7109375, -1.6083984, -2.1933594, 3.1230469, 1.7617188, -2.8730469, 0.87353516, -1.4970703, -0.3161621, -1.5234375, -2.3652344, 0.6791992, -0.1005249, 1.5214844, 0.9667969, 0.27416992, 0.027496338, 2.0683594, 2.2734375, 0.2536621, -1.9667969, 0.70996094, -0.60595703, 2.9355469, 3.5996094, 0.013893127, 0.40698242, 0.24841309, -0.6958008, 0.44262695, 2.7109375, 0.31054688, 0.32080078, -1.7988281, -1.3242188, 2.8828125, 0.82128906, -0.61572266, 0.87939453, -0.13549805, 2.3320312, 0.6796875, -0.11206055, 0.31860352, 0.80908203, -0.5214844, -0.69433594, -1.0507812, -1.3261719, -1.1835938, 0.45288086, -0.23754883, -0.6298828, 2.1015625, 1.2910156, 0.50634766, -0.6582031, -0.63720703, -0.21655273, -1.2070312, 0.640625, 1.1796875, 0.5175781, -0.5673828, -2.21875, 1.3847656, 1.0253906, -0.7397461, 0.77441406, 1.8652344, -1.0195312, 2.9824219, 0.8203125, -0.9086914, -0.79833984, 0.75634766, 2.3164062, 1.7832031, 0.27539062, 2.3378906, 0.6791992, -1.390625, 3.3222656, -1.0595703, 0.8959961, -0.27319336, -0.8857422, 0.52246094, -1.078125, -0.82470703, -0.23815918, -0.2956543, 0.71435547, -1.2041016, -0.008392334, 4.1523438, -0.8701172, -1.2285156, 2.9863281, -1.4882812, 1.7167969, 0.7944336, -0.5107422, 0.25341797, -0.079711914, 2.3261719, 1.7958984, -1.0205078, 0.6035156, -1.0478516, -1.2070312, 0.15844727, -2.2695312, -0.58154297, 0.8413086, 2.6835938, -1.0791016, -1.7373047, -0.6660156, -2.796875, -0.55078125, 1.3164062, -3.7597656, 1.1357422, 1.8984375, 0.6743164, 0.027450562, 1.2841797, -0.9995117, 0.17797852, 1.8535156, -0.54296875, 1.6582031, 0.18493652, -0.7871094, -0.11071777, -0.96240234, 0.06347656, -1.8457031, -1.3115234, -0.63916016, 0.31420898, -1.8984375, 1.2128906, -0.3618164, -0.8847656, 1.5537109, -1.0263672, 1.6416016, 0.83740234, -2.8066406, -1.8779297, 0.9819336, 0.00036859512, -2.40625, 0.3347168, 0.3322754, -0.8461914, -6.2851562, -0.4753418, 1.1132812, 0.0027503967, 0.35742188, -1.4863281, 1.0888672, 0.91308594, -1.4169922, 0.13842773, -0.5644531, -0.18444824, -2.109375, 1.4970703, -3.3261719, 2.015625, -0.36523438, 1.0302734, 0.33251953, -0.70703125, -1.3027344, -1.2714844, 2.4238281, 0.7861328, 4.9140625, -0.089904785, 1.4443359, -0.79345703, 0.060333252, -0.17041016, -1.6875, -3.2773438, -0.17041016, -1.7490234, -0.39135742, -0.6020508, -2.4042969, -0.08068848, -0.8666992, -0.67333984, -0.27807617, 0.6430664, 0.3371582, 0.09710693, -1.5068359, -0.14575195, -0.18920898, -1.5751953, 0.31958008, -0.37109375, -1.2216797, -0.30273438, -0.58203125, 0.51708984, -1.2890625, 2.3554688, -0.3876953, -0.6538086, 1.2197266, -0.6567383, 0.49047852, 0.77441406, -4.328125, 2.7226562, 1.0478516, 0.22070312, -1.1669922, -0.8857422, -0.5131836, -1.1904297, 0.71484375, 2.5214844, 0.89208984, 2.4511719, 1.0380859, -0.3737793, 0.4716797, 2.6503906, -0.7006836, 1.2402344, -0.48413086, 0.8828125, -1.4248047, -2.3652344, 0.22912598, 1.4912109, -3.4335938, -0.54541016, 1.4003906, 0.73779297, -0.092285156, -0.4326172, -1.5322266, 0.18530273, 1.4296875, -0.60839844, 0.2619629, -1.2734375, -0.32080078, -0.18444824, -0.6386719, 2.0351562, 3.09375, -0.7792969, -0.5942383, 0.7441406, 0.67333984, 1.9882812, -0.7910156, 0.2836914, -0.5263672, -0.59033203, -1.5634766, 1.6640625, 0.2685547, 0.26611328, 0.71728516, -0.111206055, 0.82714844, 0.06427002, -0.42504883, 2.2226562, -0.5991211, -0.2607422, 0.11779785, -0.5517578, -0.91845703, -0.29663086, 0.84375, -0.97265625, -1.1660156, 1.1845703, -2.5976562, -2.2792969, -1.9628906, 0.014450073, -0.63427734, -1.9824219, -0.7475586, 1.0839844, -1.5361328, -0.7807617, -1.3847656, -1.328125, -0.83935547, 1.5634766, -1.6699219, -0.0052108765, -0.68896484, 1.5302734, -0.16174316, 4.0664062, -0.48632812, -1.1650391, -0.5444336, -1.1162109, 0.4645996, -0.5629883, 2.2597656, 1.2675781, -4.0195312, 0.5932617, -3.2558594, -1.6337891, 2.1835938, -2.1601562, 1.4804688, 2.6113281, 0.33203125, 2.5976562, 0.3852539, 3.015625, -2.921875, 0.57128906, 2.6992188, -0.5102539, 0.21008301, -1.7734375, -2.9335938, 1.6464844, -1.3515625, 0.16918945, 2.2753906, -0.2709961, 0.04840088, 1.4804688, -0.22229004, -0.4206543, -3.7441406, -0.23449707, 0.91015625, -2.8261719, 1.3701172, 1.7363281, -0.5151367, -2.6933594, -0.82958984, -0.30810547, -0.76171875, -0.2709961, 0.15112305, -0.1529541, -0.375, -0.22912598, 0.56884766, -1.1992188, -0.65185547, 0.44482422, 0.3330078, -0.5048828, -0.89453125, 1.9208984, 1.2470703, 0.81640625, -0.29418945, 3.0527344, 0.2758789, 0.19848633, -0.12915039, 0.8017578, 1.3876953, -0.13098145, -2.0234375, -0.36450195, -1.9707031, -0.92578125, 0.296875, 0.7138672, -0.38012695, -1.0556641, -0.77734375, 2.0976562, 1.9453125, 1.5195312, 0.54248047, -0.5698242, 1.1230469, -1.8964844, -1.171875, -1.7792969, -0.32104492, 1.1015625, -0.5410156, 0.84814453, 0.46289062, 0.12670898, -0.6118164, -2.4394531, 0.8808594, -0.8100586, 2.3476562, 1.4707031, 2.2792969, -0.4645996, -1.3320312, -0.49658203, -1.1083984, 1.5917969, -0.21728516, -0.1496582, -0.023071289, 1.1201172, 2.6152344, -1.5742188, -0.04324341, 1.3466797, -1.1630859, 0.7348633, -1.0576172, 1.2402344, -0.8227539, -1.2382812, -0.9169922, -2.1015625, 1.9736328, 0.036743164, -0.020523071, 1.1425781, 1.0009766, 0.13305664, 0.8535156, 1.1884766, -0.46118164, 1.2304688, 0.14758301, 0.59716797, -1.0878906, 0.9038086, 2.9277344, 1.7783203, -1.1855469, 0.7963867, 0.8979492, -1.1328125, -1.2705078, -1.0996094, 2.2246094, 0.6538086, -0.54003906, 2.9179688, 0.062469482, 0.30908203, 1.3818359, 2.8242188, -0.42260742, 0.9995117, -1.5839844, -1.0449219, 0.87353516, 0.12548828, -3.1757812, -0.63720703, 0.625, -1.5322266, 3.7011719, -2.4316406, -1.2949219, 0.074401855, -2.90625, -1.3681641, -1.8427734, -0.43725586, 0.74560547, -1.2197266, 0.6464844, 0.0028705597, 1.5117188, 2.1679688, -0.04220581, -0.49609375, 1.0654297, -1.1943359, -0.35180664, -0.070617676, 1.0244141, -0.37597656, -0.13061523, 0.80371094, 0.6376953, 0.32885742, 0.8066406, 0.10998535, -3.0078125, -0.8774414, -2.3554688, 1.9931641, -2.2050781, -1.7460938, 0.68066406, 1.5654297, 0.86279297, -1.0214844, -0.73046875, -1.6542969, 2.3632812, 0.69921875, 0.06542969, -1.4511719, -0.5942383, -3.6738281, -2.5898438, -1.1845703, -0.7397461, 0.8208008, -0.49682617, -0.21362305, -1.09375, 0.22875977, -0.73095703, 1.5927734, -1.1201172, 1.0751953, -1.2216797, 1.3662109, 0.6401367, -0.91845703, 0.13317871, -0.19055176, -0.33520508, 0.58935547, -0.30517578, -0.7416992, -3.4609375, 0.33520508, -0.2607422, -1.1162109, 1.2578125, 0.30493164, 1.3203125, 3.171875, 2.1523438, -1.6826172, 1.0449219, -1.3251953, -1.1806641, 0.8798828, -2.265625, 1.5537109, 0.42700195, -1.8369141, -1.4716797, -1.625, 1.7529297, -1.0654297, -0.5527344, 0.18737793, -0.5371094, -0.18225098, -0.84033203, 1.4423828, -0.54345703, 2.3476562, 1.0546875, 0.2697754, 0.35864258, -1.9707031, -1.5419922, 0.34033203, -2.1054688, -0.96875, -0.83203125, 0.7597656, -0.021331787, 0.17980957, 2.2363281, 1.4404297, 3.125, 0.20056152, 0.9355469, -1.2685547, 3.0761719, 1.8134766, 0.15563965, -3.7773438, -2.6503906, -0.15820312, 1.9003906, -0.028656006, -0.81689453, -1.0576172, -1.7529297, -0.86035156, -0.2388916, 1.8046875, 2.4296875, 1.8203125, -1.7949219, 2.6054688, 1.9873047, -1.0351562, -0.24707031, 0.11273193, 1.8359375, -0.98339844, 3.2226562, 0.7348633, -0.7519531, 0.19543457, 0.44702148, 1.2734375, 0.21569824, -2.1152344, 1.2988281, -3.53125, -0.2631836, 0.75634766, -0.8027344, -2.9511719, 0.8754883, 1.3056641, -0.48657227, 1.3173828, 1.3574219, -0.5996094, 1.3222656, 1.0322266, 0.18115234, -1.4707031, -0.22973633, -0.085632324, -0.5410156, 2.3105469, 0.65625, 2.8066406, 2.6152344, 2.0429688, -0.3076172, 2.25, -0.15344238, 1.453125, 4.1210938, 2.2363281, 0.87841797, 0.8046875, 1.1269531, 1.6123047, 1.8662109, 2.2773438, -2.8574219, -0.29956055, 1.4511719, 0.3293457, -0.8544922, -0.12207031, -0.6484375, 0.65283203, -0.80859375, -0.6713867, -0.110839844, 0.48339844, -1.4755859, 0.0541687, -0.43359375, 0.73095703, -2.859375, 0.99658203, 0.016845703, 0.8310547, 0.041015625, 0.07348633, 0.26342773, -0.85839844, 1.5527344, 1.0820312, -0.45629883, 1.6914062, -1.7197266, 0.09484863, 0.8964844, -1.2939453, -0.1104126, 1.1328125, 1.6943359, 2.0859375, 0.26586914, 1.0644531, 1.7470703, -2.3398438, -0.25317383, -0.38842773, -1.5166016, 0.79296875, 0.8232422, 1.7871094, 0.47729492, 1.5859375, -0.3708496, 0.3071289, -2.8730469, 2.5488281, 0.10803223, -0.9003906, 0.8618164, -1.1132812, 1.9589844, -1.5722656, -0.3918457, -0.13476562, 1.0625, 1.4091797, -1.3134766, -1.1445312, 1.2285156, 0.97216797, 2.4277344, -0.14685059, -1.4755859, 1.9921875, -0.3623047, 1.2548828, -0.3881836, -0.26538086, -0.7036133, 1.8759766, -0.9121094, 2.2675781, -0.3347168, 0.49975586, -1.2558594, 2.9863281, 1.2910156, 1.3359375, 0.37573242, -0.6035156, 1.7675781, -0.5708008, -1.0117188, -0.33862305, -1.6777344, -0.98291016, -0.35083008, -0.62597656, -1.1943359, -1.8076172, 0.2619629, -0.05041504, -1.6796875, 0.7338867, 2.4570312, -1.0732422, 0.59228516, -0.96533203, -1.0966797, -0.2163086, -0.83154297, 0.04727173, 0.5991211, -0.5722656, 0.073791504, 0.51171875, 0.53271484, -0.7890625, 0.4699707, -2.3828125, -0.7006836, 0.47827148, 0.70458984, -1.0244141, -0.21044922, -0.4658203, -0.9785156, -0.0109939575, 1.7783203, 1.1630859, 0.5722656, 0.12164307, -0.8066406, -0.98828125, 0.6933594, -0.6254883, 0.86035156, 2.3867188, -1.0634766, 0.7104492, -3.4023438, -3.9921875, -2.3886719, -0.45483398, 0.9057617, 0.89941406, -0.055511475, 0.76660156, 1.7070312, 2.1640625, -1.3291016, 0.73095703, 0.41357422, -0.38842773, 1.9902344, 1.0595703, 0.7763672, 0.99121094, 0.89941406, -0.36645508, 1.8652344, 1.1240234, 0.47631836, 1.7265625, 0.43115234, 0.80371094, -1.1464844, -0.7871094, -2.3847656, 0.7524414, 1.4921875, -1.7294922, 1.0507812, -0.9082031, -2.1855469, -3.7070312, -0.71533203]}, "B07P8BN5X1": {"id": "B07P8BN5X1", "original": "Brand: Cal Flame\nName: Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone\nDescription: \nFeatures: Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board\nLiquid propane ready, Natural gas conversion compatible by certified technician.\nSeamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge\nPatented cast stainless steel knobs, with independent burner ignition system\nHeavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design\n", "embedding": [-0.4633789, -0.17749023, 2.5703125, -2.0527344, 1.6455078, 0.68066406, 1.1103516, -1.4003906, -2.1582031, 2.0957031, 0.36987305, 0.84033203, -2.1347656, -2.9296875, 2.21875, -0.6621094, 0.7441406, 0.7685547, 0.17041016, -0.4580078, 3.3496094, -0.34423828, -1.0546875, -1.2109375, 2.1503906, 1.1367188, 4.7265625, -2.4023438, 0.20019531, -1.0224609, 0.19226074, 1.9238281, 0.26538086, 1.2177734, -2.9199219, -0.47753906, -0.5463867, 1.5712891, -2.2636719, 1.4492188, -1.9013672, -0.9091797, 1.46875, 1.7431641, -2.5136719, -0.64404297, 1.1845703, 0.9980469, -0.98339844, -2.2207031, 0.4736328, 1.5527344, -0.3095703, -1.4921875, -1.4296875, 0.71875, 0.06506348, -2.703125, 1.6884766, 0.9589844, 0.43725586, -1.09375, -1.2558594, 3.0175781, -1.5957031, -0.81591797, -0.20043945, -0.4946289, 1.1767578, 0.20983887, 1.7675781, 0.1496582, -1.5595703, 1.0830078, -0.46435547, -0.63183594, -2.0078125, 1.7431641, -0.5683594, -0.58984375, -1.1904297, 1.2412109, -0.25170898, -1.1171875, 0.36889648, -0.15930176, -1.7080078, 0.31347656, -0.013252258, -0.22338867, -0.59716797, 1.9560547, -0.35375977, -3.9277344, 1.9267578, -2.0195312, 0.7998047, 0.17541504, -0.95703125, 2.7441406, -1.5, 0.7084961, -0.7036133, -0.8100586, -2.2050781, -1.2578125, 1.9267578, -1.2802734, -2.3398438, 0.88134766, -1.3818359, 0.20056152, -0.3527832, 1.2783203, 3.2148438, 0.8613281, 0.8432617, 0.6958008, 1.4003906, 1.4492188, 2.3203125, -0.3125, -1.1865234, -1.9267578, 2.1738281, 0.8354492, -0.6699219, 1.3994141, 4.2226562, -2.1542969, 0.13415527, -0.20629883, 1.265625, 0.39404297, -1.5761719, -2.3476562, -1.0166016, -0.77441406, -3.3125, -1.0722656, -1.5302734, 1.7441406, 0.95166016, 0.4152832, -4.4179688, -1.0498047, 0.36889648, 0.9472656, -0.9682617, -1.4716797, -1.3173828, -0.44482422, 1.78125, -1.4365234, -0.11431885, -0.7626953, -0.99072266, -2.890625, 2.734375, 0.71875, -0.57373047, -1.0722656, 0.54345703, 1.5615234, -2.4492188, -1.0644531, -0.6796875, 1.25, 0.16149902, 1.1123047, -1.5966797, -2.3710938, 1.4511719, -0.011703491, 0.22998047, -0.22595215, -2.1503906, 1.8066406, -0.57470703, 0.7182617, -0.4609375, -2.2246094, 2.0332031, 1.2695312, 1.1113281, -0.45947266, -0.65771484, -1.3642578, 0.3005371, -1.5742188, -0.74658203, 2.1621094, 0.75439453, 0.75878906, -1.2958984, -1.0693359, -0.7602539, -1.0673828, 1.4492188, -0.5942383, -0.8095703, -0.25512695, -3.1386719, -0.052764893, -1.2089844, -2.1386719, -1.4853516, 0.1015625, 2.15625, 1.4853516, 1.3876953, -0.7216797, 1.2460938, -2.1621094, 0.32128906, -1.359375, 0.9550781, -0.8510742, 0.43286133, 1.7392578, 0.18371582, -0.6958008, 0.61621094, 2.8613281, -1.1162109, 1.890625, 0.7910156, 1.0205078, -2.4277344, -0.16906738, 2.9433594, 1.3417969, 0.18359375, 1.3867188, -0.39892578, 1.8193359, 2.2363281, -0.5625, -0.5522461, -0.91308594, 0.19909668, -0.85791016, -0.9824219, 1.3564453, -0.46142578, 0.16174316, -1.0380859, 2.0722656, 1.8544922, 1.0605469, -1.8544922, 2.7890625, -0.4189453, 0.26831055, -0.28027344, 1.7041016, -0.52978516, 1.5380859, -0.014266968, -2.3632812, 0.53515625, -0.110961914, -0.6791992, 0.41259766, 0.22839355, -1.2265625, 3.1660156, 0.43920898, -3.3476562, -0.15588379, 0.10595703, -1.5126953, 2.6816406, 1.3291016, 2.3769531, 1.8476562, -0.5683594, 0.8925781, 1.7314453, 1.7246094, 0.3334961, -1.5488281, 1.8349609, -1.8232422, 0.12927246, -2.2285156, -0.17956543, -1.0742188, -0.30371094, 0.40356445, 5.1640625, -0.38378906, -3.0488281, 4.421875, -2.4980469, 0.95996094, 1.3154297, -1.5351562, -1.2763672, -0.9980469, 0.7597656, 2.5527344, -1.2128906, 1.4833984, -0.5214844, -0.2734375, -0.19506836, 1.3544922, -0.027908325, 2.0976562, -0.6899414, 0.11407471, -1.8652344, 0.4621582, -2.5, -1.328125, 2.1425781, -1.8701172, 1.3339844, -0.39648438, 1.0527344, 1.3535156, -0.41723633, -0.67041016, 0.26708984, 2.15625, -0.79296875, -1.0546875, 0.3942871, -0.63720703, -1.3642578, -0.49267578, 1.2587891, -2.265625, -1.2509766, -0.87841797, -1.0683594, -1.4541016, -0.6269531, 0.15258789, 1.265625, 0.9536133, -1.2480469, -0.58984375, -1.4873047, -3.6464844, -1.109375, -0.12487793, -1.9179688, -0.01689148, -0.48583984, 2.9628906, 0.23950195, -5.0429688, -0.5019531, -0.9682617, -1.7255859, 1.9941406, -2.7089844, 1.0185547, -1.1113281, 0.88134766, 0.1739502, -0.16357422, 0.0041770935, -0.3684082, -0.40771484, -3.3378906, 0.6279297, -2.6738281, 1.7958984, -0.31591797, 0.22851562, -1.9365234, -0.32836914, -0.22363281, -0.98828125, 4.6054688, 0.78271484, -0.15881348, -2.7167969, -0.23352051, 1.234375, 0.14013672, -0.5830078, -1.3349609, -0.35302734, -0.68359375, -1.2949219, -2.7050781, 0.9526367, 0.60009766, 1.7167969, -0.60595703, 1.1533203, -0.5175781, 1.2460938, 0.25195312, -0.4333496, -1.0791016, -0.8076172, -0.5444336, 0.7832031, -1.8798828, -2.4765625, -1.2900391, -1.2060547, 0.9589844, 2.375, -0.32373047, 0.34033203, 1.4931641, -0.26098633, 0.26513672, 1.859375, -2.6191406, 1.0478516, -1.1259766, -1.3916016, 2.4003906, -1.3291016, -3.25, -0.93359375, -1.3349609, 3.7363281, -0.9863281, 2.828125, -0.6484375, 0.23352051, 1.9794922, -0.33154297, -0.9819336, -2.4570312, -0.027923584, 2.0292969, -2.1738281, -1.0507812, -0.35546875, 0.77441406, -1.7402344, -2.5839844, 1.5615234, 0.8173828, 2.8867188, 0.35351562, 0.021362305, 0.013076782, 0.21484375, 0.2919922, 0.63183594, 0.84375, 0.84472656, -2.4296875, 2.4023438, 1.7548828, 2.3085938, 0.48486328, 0.94433594, 4.1757812, 0.80078125, -0.82910156, -0.33154297, -0.33740234, 0.5654297, 1.6972656, 0.9897461, 1.8720703, -0.27539062, 0.14941406, 1.09375, -1.4736328, -0.6425781, -1.2392578, -0.80859375, 1.2470703, 0.5913086, 1.3457031, -0.9560547, 0.8149414, -0.46899414, -1.8544922, 1.4501953, -2.1757812, -0.3972168, -0.8300781, -0.9633789, -0.74365234, -1.9511719, 2.8769531, 0.6308594, -2.6523438, -1.3251953, 2.0703125, -0.4958496, -2.8710938, 0.29345703, 0.9682617, -1.046875, 1.3300781, -1.4707031, -1.2177734, 1.4199219, -2.4394531, 0.49853516, 1.2617188, -0.8457031, 0.91015625, -1.1708984, 1.0732422, 1.7177734, 1.7792969, 1.4882812, 1.4248047, -0.66503906, -0.1274414, -1.6044922, 0.6142578, 0.123168945, -1.1601562, -1.2304688, 0.73339844, 0.6328125, 1.7255859, -0.49731445, 4.1679688, -0.89404297, -2.0761719, 1.8154297, -3.5800781, -1.2001953, -3.71875, -4.1171875, 1.4160156, -0.7260742, 0.96875, 2.2929688, -0.84765625, -0.94873047, 0.9350586, 0.22497559, -2.1796875, -1.4648438, -0.6977539, 0.36108398, -0.9223633, -2.4472656, 2.2636719, -0.021728516, -2.3496094, -1.2998047, 0.42822266, 0.19665527, 1.5673828, -0.08935547, -1.5966797, -0.2512207, 0.08605957, 0.39379883, 1.6855469, -1.2109375, 1.3818359, -1.7324219, 0.5488281, -1.3125, 2.1113281, 0.11932373, 0.47070312, 1.7988281, 1.1474609, 0.6455078, -0.4074707, -0.08532715, 0.17199707, 1.9140625, 0.38623047, -2.6953125, -0.14746094, 0.25317383, 1.9746094, -0.60498047, 1.5654297, -0.2434082, -2.6347656, -0.20825195, -0.26782227, 1.0458984, 2.8339844, -0.48413086, -1.4970703, -0.5625, 1.0673828, -2.5996094, -1.015625, -0.29223633, 1.2373047, -1.46875, 0.90771484, -0.43603516, 2.0371094, -1.9980469, -1.1513672, -2.7578125, 0.20361328, 2.0644531, 0.16552734, 2.8398438, -3.0410156, -1.5605469, 2.2207031, -1.2011719, 0.37329102, 2.1152344, -0.9824219, 0.38745117, 1.0263672, 0.96728516, -0.83691406, -0.0030326843, 1.2255859, -1.8759766, 0.24084473, -0.2121582, -1.2148438, -1.1728516, -1.1748047, 2.28125, 0.8222656, 1.3066406, -2.6289062, -1.2324219, -0.88720703, 0.21691895, -2.2929688, 0.17163086, -1.5019531, -0.42211914, 3.1464844, 1.3847656, 2.0175781, -0.49414062, 0.019744873, 0.5395508, 2.4921875, -1.4794922, 0.9277344, -0.12988281, -0.28637695, 0.1038208, -0.97265625, 2.0429688, 2.6835938, -0.0748291, 1.8066406, 0.28637695, -2.859375, 1.6435547, -0.8129883, -0.2298584, 0.00970459, -2.5703125, -1.5947266, 1.6591797, -0.22302246, -3.234375, -2.0761719, 3.2539062, -0.109436035, 1.1240234, 1.4023438, -1.8408203, -1.2841797, -2.4023438, -1.1103516, -1.6865234, -2.640625, 0.8720703, -0.33740234, -1.4794922, -2.4257812, -0.8144531, 2.7421875, -0.8286133, -1.2197266, 3.5273438, 0.2800293, -0.28710938, 0.5883789, -1.0556641, -1.7705078, -0.30981445, 3.3632812, 0.5419922, 1.9980469, 1.3554688, 3.8496094, -0.7832031, 3.3457031, -1.9179688, 2.0839844, -2.25, -0.7861328, 1.3037109, -1.7597656, -0.5161133, -1.765625, 1.0048828, -0.30126953, 1.7246094, 1.5253906, -1.3476562, -1.7890625, 0.24182129, -1.2177734, -1.8271484, -0.6020508, -0.38110352, 0.49829102, -0.8852539, -1.2158203, 0.2298584, -0.82421875, -0.06628418, -0.6147461, 0.093322754, -0.99365234, -1.2568359, 0.019927979, 0.1262207, 0.46240234, 0.73046875, 1.5068359, 0.0715332, 0.4560547, -0.9506836, -2.828125, -1.6875, 1.7929688, -1.5429688, 1.3261719, 1.2070312, 0.44799805, 1.3125, 1.046875, 0.74658203, -2.671875, 1.7441406, -0.15393066, -0.103515625, 2.6269531, -0.3166504, 2.1171875, 0.25634766, -0.5463867, 1.3691406, -2.7988281, -0.37670898, 1.2597656, -1.2851562, 0.7939453, 1.5195312, 0.6748047, -0.21105957, 1.9785156, 0.21960449, 2.359375, 0.50341797, -0.79785156, -0.5239258, -1.8779297, -3.3105469, -1.6738281, -1.7988281, 0.0031547546, -1.3632812, 1.4785156, 1.0214844, 0.8769531, 1.0625, -0.62890625, 0.9946289, -1.1044922, 0.9770508, 0.4260254, 1.9433594, 1.8037109, -1.7734375, -2.3925781, -4.6054688, 1.0458984, 1.6230469, 0.5439453, -1.8583984, -0.13293457, -2.5234375, -0.20080566, 1.0322266, 1.9853516, 0.6201172, -0.1739502, -0.80810547, 1.2236328, 2.2226562, -1.5029297, 1.7958984, 0.96875, 2.6328125, -1.5048828, 3.7265625, 1.7402344, -2.5136719, 4.9726562, -2.1933594, -0.78808594, -0.38061523, -0.18286133, 1.3701172, -2.2617188, 0.37402344, -1.3125, 0.43823242, -3.2519531, 2.6992188, 0.89404297, 0.009208679, -1.1074219, 0.8696289, 0.33764648, 1.4736328, 2.1367188, 0.92626953, -0.71875, 0.2590332, 0.93359375, -0.5415039, 2.1992188, 0.36010742, -0.30029297, -0.5864258, -1.2021484, -0.8588867, 2.7207031, -2.5449219, 2.4394531, 2.3164062, 1.8662109, 2.5761719, 0.96972656, 2.40625, 1.3037109, 3.2929688, 1.7197266, -0.49169922, -0.9086914, 1.5742188, 2.4882812, -0.16381836, -1.9833984, 0.9277344, 0.8017578, 0.33862305, -0.68066406, 0.8076172, 0.5800781, -1.0693359, 0.86328125, 0.1529541, 1.7255859, -1.234375, 0.019882202, -1.8261719, 0.9116211, -0.5073242, 1.8242188, 1.2939453, -1.6533203, 1.3349609, -0.46069336, -1.3291016, -1.4042969, -1.9414062, -0.23449707, -0.23742676, 0.67333984, -1.2861328, 1.75, 0.5410156, -0.48364258, 1.3564453, 2.5957031, 1.2294922, 3.296875, 0.3972168, -0.6118164, 0.6381836, 0.24206543, 2.4882812, -2.3203125, -1.8525391, 0.36669922, -1.4736328, -1.7802734, -1.0634766, 1.0634766, 1.2539062, 1.3496094, 0.95458984, -1.7539062, 0.6357422, 0.4013672, 1.8271484, -2.6582031, 0.2980957, 1.0322266, -2.3105469, -2.0253906, -0.2841797, 0.4873047, 1.2539062, 0.8535156, -2.15625, 0.8071289, -0.30786133, 1.5136719, 1.5419922, 1.4365234, -1.3759766, 0.82177734, -1.9814453, 3.3125, 1.1787109, -0.6015625, -1.5576172, 3.7480469, 1.3955078, -0.24267578, 0.7651367, -2.5820312, -0.09564209, -0.5756836, 0.9980469, -0.3178711, -3.6074219, -0.20324707, -0.30932617, -1.4003906, -0.23693848, -2.1171875, 1.1230469, 2.8554688, 2.1054688, 1.8212891, -0.096191406, -1.84375, 1.9121094, -1.8037109, -2.6777344, 0.93115234, -0.11907959, 1.9248047, -0.13110352, -3.1132812, 2.7929688, 2.9648438, 1.2529297, -0.45703125, -0.6640625, 0.08862305, 1.3642578, -0.1586914, 2.7089844, -1.4716797, -0.56933594, 1.6455078, -0.38598633, -1.1630859, 1.8886719, -0.8886719, -1.1835938, 0.055023193, -0.060516357, 0.33618164, 3.0527344, -1.6123047, -0.30004883, 3.0566406, 1.1044922, 1.0976562, -3.0976562, -3.3671875, -0.12487793, 0.32885742, 2.5566406, -1.0820312, -0.4794922, 0.37695312, -0.45532227, 3.2441406, -0.29492188, -0.63916016, -0.875, -2.5449219, 1.2675781, -0.19824219, 2.2324219, -0.13476562, 0.32470703, 0.625, 0.58447266, 0.22045898, 0.49414062, 1.8974609, 3.7636719, -0.115722656, -3.0351562, 1.2744141, -1.2792969, 2.5351562, 1.6337891, 0.053955078, 1.0830078, -0.6230469, -0.6401367, -3.3671875, -1.0322266]}, "B00GJEPTJS": {"id": "B00GJEPTJS", "original": "Brand: Char-Griller\nName: Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite\nDescription: \nFeatures: KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking\nLARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once\nBEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8\" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks\nEASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan\nDIMENSIONS - 31\u201dL x 45\u201dW x 47\u201dH, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin' Stone, both sold separately)\n", "embedding": [-1.8330078, 0.4111328, 2.0019531, -0.83740234, -1.6572266, -0.9746094, 1.1474609, -0.7451172, -1.3046875, 2.9921875, 2.0917969, -1.5791016, -0.51220703, -1.6083984, 0.80371094, 1.0214844, 1.5498047, 1.3613281, 2.9238281, 0.83203125, 1.25, 1.1689453, 1.0205078, -0.8339844, 2.6523438, 0.063964844, 3.9980469, -1.9609375, 2.4785156, -1.4160156, 1.7324219, -0.19641113, -0.58740234, 1.4111328, -1.1865234, 1.453125, -0.90722656, 2.4101562, -2.484375, 1.7568359, -1.5341797, -0.024307251, 1.5332031, 1.5107422, -2.9179688, -3.0644531, 0.2614746, 1.1708984, 0.86035156, -1.75, 1.125, 1.546875, -0.5029297, -0.2626953, -1.8916016, 2.7480469, -0.7949219, -1.6699219, 0.10290527, 0.012863159, -1.0029297, 0.6542969, -1.2939453, 2.8007812, -2.1210938, 0.9995117, 0.7807617, -0.81933594, 0.80566406, -1.7539062, 1.3662109, -0.1048584, -1.9033203, -0.2578125, -0.6777344, -0.42919922, -1.9570312, 1.1230469, 0.43896484, -0.66308594, -2.140625, 1.2568359, 0.038085938, -2.1464844, -0.97998047, 1.0546875, -0.02104187, -1.0888672, 0.3930664, 0.28979492, 1.2070312, 0.27124023, -1.0908203, -2.96875, 3.9824219, -1.6855469, 0.22998047, 0.7495117, -1.4804688, 0.2097168, -1.1064453, -0.8798828, -1.0751953, -0.8989258, -2.9042969, 1.1962891, 1.2324219, 1.0810547, -2.2070312, 2.1230469, -1.9248047, -0.109069824, 0.24072266, 2.1054688, 1.5019531, 0.5864258, 0.9086914, 1.2841797, 0.09918213, 0.32250977, 3.8515625, 0.85839844, -1.2060547, -1.3916016, -0.6928711, -0.66064453, 0.20129395, 0.9658203, 6.7773438, -0.5307617, 1.2646484, -0.14013672, 2.2539062, 1.0322266, -1.3330078, -1.8720703, -0.5629883, 0.38305664, -1.4833984, 1.4111328, -1.0957031, 0.032958984, 1.7333984, -1.7148438, -4.015625, -2.3066406, 0.90283203, 0.60791016, -1.2050781, -3.5175781, 1.1767578, -2.7695312, 0.00017666817, 1.1191406, -0.19042969, -2.4101562, -1.0986328, -3.1933594, 0.46411133, -0.8803711, 0.63378906, -1.4433594, 0.16491699, 0.47387695, -0.38745117, -0.49536133, -2.8203125, 2.265625, -0.8510742, 3.140625, -0.7363281, -2.765625, 2.1132812, -2.1425781, 0.8359375, -1.3085938, -0.7055664, -0.26635742, 2.3164062, 1.3017578, 0.093322754, -2.5019531, 1.2109375, -0.2644043, 0.68310547, -0.035491943, 0.18188477, 1.1074219, 0.19458008, -0.953125, 0.3701172, 2.2304688, -0.3869629, 1.2285156, -1.6513672, -0.35888672, -1.7832031, -1.1474609, 1.4472656, 0.082458496, -1.3076172, 0.32739258, -0.96972656, -2.3867188, -0.48291016, -0.7084961, -1.1328125, -1.2480469, 2.6679688, 1.1103516, 1.7480469, -2.1738281, 1.0644531, 1.3222656, -0.89404297, -1.7880859, 0.17272949, -1.4443359, 2.1035156, 2.2109375, -0.17333984, 0.6503906, 0.97753906, 2.7226562, 0.29956055, 2.6660156, 1.9013672, 1.9951172, -2.8867188, -1.0849609, 1.5966797, 0.41577148, -0.36132812, 1.0019531, 0.75341797, 2.4316406, 2.0507812, 1.0791016, -1.8183594, -0.24108887, 0.5888672, 0.10827637, -0.38012695, -2.0449219, -0.29418945, -0.10681152, -1.0615234, 3.2988281, 1.2314453, 0.9921875, -1.0800781, 1.2167969, -0.19567871, -0.06225586, 0.9213867, 0.93310547, 0.1274414, 0.8022461, 0.17175293, -2.8300781, 1.6347656, -0.3972168, -0.9472656, 0.32714844, -0.10003662, -0.8442383, 2.9121094, 2.2578125, -1.3554688, -1.9521484, 2.46875, -0.47607422, 0.36499023, -0.60546875, 1.6806641, 1.9257812, 0.73876953, 0.9604492, 1.8574219, 1.2548828, -0.46289062, 2.0761719, 1.0595703, -2.4179688, -2.0410156, -2.0527344, -1.3691406, -1.9365234, 1.0966797, 2.6894531, 3.6171875, 1.546875, -3.2988281, 3.8574219, 0.96728516, 0.93652344, 1.2509766, -0.8095703, -0.8569336, 1.3242188, 0.1418457, 1.0908203, -0.8930664, -1.6347656, -3.5429688, -1.2988281, 3.6582031, -0.6972656, 0.21789551, 1.234375, 0.14501953, 0.921875, -0.44921875, 1.5751953, -0.9658203, 0.14538574, 1.4111328, -3.7460938, -0.5317383, 0.61816406, 1.8691406, 0.3881836, 0.27416992, -2.1289062, 0.4567871, 2.4589844, -1.2470703, 1.0478516, 0.73535156, -2.0703125, 0.13989258, 0.044952393, 0.86376953, -2.0195312, -1.8837891, -1.2519531, -1.2519531, -2.3632812, -1.1220703, -1.6005859, -0.2446289, 0.9824219, -1.4404297, 0.2800293, -1.7792969, -4.1757812, -0.47070312, -0.2064209, -0.77441406, 1.4462891, -1.0234375, 0.62158203, 0.38012695, -5.7929688, -0.9091797, -0.20178223, 0.49780273, 1.1230469, -2.3164062, 1.03125, 0.88964844, 0.35107422, -0.44213867, -0.43017578, 1.4892578, -0.28393555, -0.33374023, -0.79296875, 1.2910156, -2.9140625, 0.38305664, -0.6152344, -0.97314453, -2.2226562, -1.890625, 0.060760498, -1.1279297, 3.5273438, -1.5273438, -0.27783203, -0.33154297, -1.0927734, 2.0488281, 0.38378906, -2.5058594, -1.6738281, -0.084228516, -0.57714844, -2.3886719, -2.5136719, -1.5634766, 0.62158203, -0.1381836, -1.265625, 1.1816406, -2.2128906, 1.8701172, -3.5390625, -0.11767578, -2.9707031, 0.49731445, -1.9091797, -0.22155762, -2.6367188, -1.2841797, -1.8525391, -3.078125, 0.97265625, 2.1210938, 0.26489258, 1.4814453, 1.6767578, 1.7412109, 2.6152344, 0.27026367, -3.3183594, 3.4511719, 1.7978516, -0.42138672, 1.0898438, -1.2041016, -3.34375, -2.7832031, -0.11425781, 4.0625, 0.9667969, 1.6943359, -0.78222656, 1.7285156, 1.5302734, 0.6669922, 1.6669922, -0.5239258, 1.4189453, 3.1582031, -0.95947266, -2.0996094, 0.6801758, 1.9404297, -1.5546875, -0.95458984, 2.9433594, 0.5571289, 2.8125, 1.1054688, 0.89501953, 0.30541992, -0.81103516, 3.1035156, 0.4169922, 1.9306641, 0.96435547, 1.4189453, -0.39038086, 0.9980469, -0.18322754, 0.13879395, -0.13879395, 3.2324219, 1.8134766, 0.0993042, -1.4550781, 0.05996704, 0.038085938, 1.6474609, -0.84228516, 2.7304688, -1.5830078, 1.4775391, 0.28027344, -0.60546875, 0.74853516, -1.6337891, -0.57910156, 2.0917969, -0.20251465, 0.82666016, 1.3076172, 2.2910156, -0.50439453, -0.4885254, 0.45825195, -2.9414062, -0.58496094, -0.6879883, -0.46728516, -2.2675781, -1.8369141, 1.984375, -0.55322266, 0.14538574, -1.5449219, 3.078125, 1.7216797, -0.28930664, 0.375, 2.1816406, -1.1767578, 1.2480469, 1.234375, -1.6630859, 1.8134766, -2.1699219, 0.5703125, -0.9458008, -1.1347656, -0.0793457, -0.077941895, 1.6777344, -0.8046875, 2.4589844, -1.0361328, -0.93310547, -1.2099609, 0.11773682, -3.8359375, -0.48291016, 0.53759766, -3.4980469, -0.25634766, 1.9423828, 0.023345947, 0.45214844, -1.3867188, 2.7480469, 0.00040483475, -1.0117188, 2.9804688, -1.5214844, -1.6152344, -2.5703125, -4.4570312, 0.68652344, -1.0458984, 0.55859375, 3.2324219, 0.9458008, 0.94628906, 3.3203125, 0.9794922, -2.8808594, -1.4267578, -3.4628906, -1.2197266, 0.05734253, -1.7890625, 1.3291016, 0.8496094, -3.1972656, -1.7675781, -0.37402344, -2.2070312, 1.3681641, 1.1601562, -2.1523438, 0.5996094, -1.3242188, 1.0673828, -1.5166016, -0.50683594, 1.0361328, -1.3037109, -0.37890625, -1.4824219, 1.1757812, 2.7910156, -1.0351562, 2.796875, 0.81103516, -0.3239746, -1.0273438, -0.20385742, 0.99316406, 2.8339844, -0.85791016, -2.2441406, -2.2050781, 0.5253906, -2.0195312, -1.6904297, 1.2900391, 0.10626221, -1.7246094, 0.86083984, -0.6044922, 1.734375, 2.7734375, -1.6025391, -0.96435547, -0.21118164, -1.7705078, -1.5693359, -0.37036133, 1.5478516, -0.96972656, -0.3491211, 1.7773438, -2.2460938, 1.6611328, -0.32714844, 1.3632812, -2.9648438, 2.1171875, 1.5449219, 3.1699219, 4.1367188, -1.1220703, -0.26000977, 0.796875, 0.0087509155, -0.7949219, -0.015312195, -0.33642578, 0.984375, 0.6147461, -0.070373535, -1.4902344, -1.4404297, 1.3896484, -0.5214844, 1.5, -2.9785156, 1.4912109, -2.8164062, -1.1513672, 0.37670898, -0.6713867, 2.6074219, -0.49438477, -0.085632324, -0.050689697, 0.2512207, -1.7958984, 1.7792969, -1.3515625, 0.4477539, 1.2138672, 0.6333008, 1.2851562, -2.4648438, 0.5966797, -0.5419922, 1.8564453, 0.34301758, -0.26123047, 0.9111328, -1.1669922, -1.5644531, -0.6196289, 3.4121094, 2.1640625, 0.041656494, 4.0820312, 1.421875, -1.7617188, 0.7338867, 1.0654297, -2.3867188, -1.6425781, -1.40625, -1.4169922, 1.2617188, -0.40429688, -4.375, -2.53125, 1.6728516, 0.26733398, 2.9082031, 0.859375, -3.0546875, 1.1259766, -1.9707031, -1.3496094, -2.1953125, -1.4326172, 0.31152344, -0.4765625, -0.82910156, -2.0136719, -0.50878906, 4.1757812, -3.1777344, -1.8212891, 1.8457031, -0.8964844, -0.8457031, 0.03778076, -2.1542969, -3.3574219, -1.5498047, 2.3164062, 2.0273438, 1.6269531, 0.8071289, 2.1386719, -1.6679688, 0.7001953, -1.4052734, 1.7978516, -3.1484375, -0.62841797, 0.4272461, -2.0722656, 1.3066406, -1.4003906, 1.15625, -0.97021484, 2.3378906, 0.50878906, 0.1161499, -0.8491211, 1.4199219, -2.921875, -2.0820312, -2.9238281, 1.6396484, 1.53125, 0.097961426, 1.0458984, 0.6699219, 1.2607422, 0.9848633, -2.0839844, 0.13183594, -0.4465332, -0.83251953, -1.6152344, -0.35986328, 0.2553711, -1.1279297, 0.12145996, 3.3144531, 0.62841797, -0.38256836, -2.3496094, -2.0078125, 1.828125, -2.1992188, -0.08886719, 0.74902344, 0.34472656, 1.7167969, 0.9370117, 1.5048828, -1.1337891, 2.7949219, -1.21875, -0.15258789, 1.0771484, 0.46704102, 0.9692383, -0.5107422, -3.015625, -1.3242188, -1.7099609, 1.71875, -0.09643555, -0.30151367, 0.034606934, 1.2382812, -0.93603516, 0.56689453, -0.7626953, 1.0371094, 1.3603516, 0.31152344, -0.515625, 1.1982422, -1.6884766, -2.5136719, 0.5283203, -1.1386719, -0.27954102, -2.4023438, 0.8857422, 0.72216797, -1.8369141, 1.7744141, 1.2011719, 1.0400391, -1.5751953, 0.52783203, -1.4101562, 1.6630859, 1.8476562, -3.0234375, -1.7744141, -1.5556641, -0.062316895, 0.042541504, -0.097595215, -3.2832031, 0.64453125, -0.0022945404, -0.1282959, 1.7763672, 2.9316406, 1.9814453, -2.5195312, -0.8779297, 2.1425781, 1.9882812, -0.52978516, 2.2421875, -0.026504517, 2.703125, -1.4394531, 3.3769531, 0.8774414, -1.0517578, 0.6098633, -0.8720703, 0.36108398, -0.016235352, -0.42456055, 1.6826172, -2.9042969, -2.3789062, -1.6738281, -0.62060547, -1.359375, -0.703125, 1.1933594, -1.3222656, 1.5068359, 2.0175781, -0.8071289, 4.1328125, 1.6162109, 1.5175781, 0.28710938, 0.24890137, -1.0322266, -0.74609375, 0.8901367, -1.8779297, 1.4794922, 0.30541992, 0.14831543, -0.5957031, 1.8896484, 1.4853516, 1.0390625, 1.9316406, 1.8212891, -0.21789551, 2.1523438, 1.7109375, 0.039764404, 1.4023438, 4.0390625, -0.93896484, 1.1220703, 0.52441406, 3.6425781, 0.30273438, -2.6777344, 2.734375, -0.5029297, -0.05102539, -0.6845703, -0.9243164, 2.3984375, -2.6699219, 1.3886719, -1.3974609, -0.39013672, -2.3183594, -1.4570312, -0.98339844, -0.05267334, -0.8066406, -0.82958984, 2.1523438, -0.12597656, 0.7861328, -0.014198303, 1.3212891, 0.70751953, -3.9003906, -0.89404297, 1.5488281, -0.13757324, -1.3417969, 0.8261719, 1.3564453, 1.6494141, -0.42163086, 0.69921875, 0.4230957, 1.3955078, 0.59765625, 0.0030097961, -0.65185547, -0.15795898, -0.19226074, -2.0644531, -2.6816406, 1.6240234, -0.22961426, -2.0273438, -1.8349609, 1.4316406, -0.060943604, 2.4101562, 1.4716797, -1.6523438, 2.3164062, -0.21899414, 1.3808594, -2.0722656, 1.5009766, -0.6855469, -3.5429688, -3.0332031, -1.109375, 0.8544922, 2.7304688, 1.1855469, -0.4260254, 0.8515625, -0.22631836, 3.3710938, 1.7978516, 2.9453125, -0.87353516, 0.7529297, -0.36499023, 1.5566406, -0.19799805, 1.890625, -0.40893555, 0.79833984, 0.5214844, 2.3554688, 1.53125, -0.9555664, -1.6162109, 0.041412354, -0.49023438, 0.16894531, -1.2695312, -1.7441406, -2.3691406, -0.13110352, -1.5283203, -0.7651367, 2.2226562, 2.0722656, 0.5366211, 0.41967773, 0.16845703, -2.5898438, 1.2988281, -0.20996094, -1.5117188, -0.30859375, 0.8076172, 0.85791016, -0.22814941, -1.9609375, 1.7080078, 1.3320312, 2.2675781, -0.43017578, 0.41308594, -0.29101562, 0.6040039, -1.4755859, -0.43945312, -1.4404297, -1.4619141, 1.1044922, -0.9375, 0.3203125, 1.7646484, 0.125, -0.8173828, -0.15820312, 0.3852539, -0.26098633, 0.6923828, -1.1845703, 2.4804688, 2.8847656, 1.0068359, -2.3867188, -0.9550781, -3.2695312, -0.92822266, -1.7333984, 3.0585938, 0.11444092, -2.3652344, 1.2138672, -0.3173828, 2.1777344, 1.2333984, -0.9326172, 1.9042969, -1.6787109, 2.40625, -0.74658203, 0.9951172, 0.7636719, 2.0488281, -1.0566406, 0.9682617, 0.56347656, 1.2460938, -0.59814453, 0.80029297, 0.9169922, -3.2441406, -0.114746094, 0.14453125, 3.5136719, 0.515625, -0.7050781, 0.86621094, -0.16333008, -0.84472656, -2.0976562, -3.4101562]}, "B08HPTJG1W": {"id": "B08HPTJG1W", "original": "Brand: Safe 'n Easy\nName: Safe 'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)\nDescription: Safe \u2018n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe \u2018n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe \u2018n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.\nFeatures: Professional Formula \u2013 Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food.\nSafe and Easy to Use. Spray On, Let Set. Rinse Off \u2013 Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly.\nPowerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting \u2013 Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily.\nMade In The USA \u2013 Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers.\nSatisfaction Guaranteed \u2013 Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you\u2019re not completely satisfied just contact us for a full refund.\n", "embedding": [0.44335938, 1.2841797, 2.6933594, -1.5703125, -0.3071289, 1.4775391, 1.515625, -2.0546875, -0.9902344, 2.1386719, -3.0117188, -0.3996582, 0.22363281, -1.5957031, -0.65234375, 1.0996094, 0.26171875, 2.4785156, 3.09375, 2.3730469, 1.1074219, 1.9091797, 1.1386719, 0.4921875, 0.4921875, 0.019592285, 4.078125, -2.6347656, -0.11566162, -2.0449219, 1.1455078, 0.2836914, -0.7441406, 1.2382812, -4.2070312, 1.0136719, -0.890625, 0.60253906, -1.7490234, 0.17175293, -1.703125, -1.6494141, 1.7509766, 0.18920898, -4.0507812, 1.6738281, -0.5336914, 1.1630859, 1.5751953, -2.0664062, 0.89160156, 1.3691406, 1.6748047, -0.47094727, -1.625, 2.2382812, 2.1269531, -3.0332031, 0.3852539, 0.6928711, 1.6728516, 2.6914062, -0.69433594, -0.12780762, 2.2109375, -1.1748047, -0.0006656647, -1.2109375, 1.578125, -4.171875, 0.18054199, 0.67529297, -1.9375, -0.52685547, 0.15039062, 1.7910156, -1.65625, 1.1113281, 0.91796875, 0.20800781, -0.7705078, 2.9082031, -1.0976562, -2.2929688, -1.0556641, 0.9482422, -0.22167969, -0.23693848, 1.6054688, -0.7080078, -0.41308594, 3.5800781, -1.0351562, -4.4453125, 2.6582031, -2.0566406, 0.359375, 0.43579102, 0.4091797, 0.98535156, -1.2431641, -1.6591797, -1.4287109, 1.9931641, -1.9833984, -0.022857666, 2.2382812, 2.4472656, -2.7910156, -0.0793457, 0.16259766, 0.33642578, -1.0244141, -0.28588867, 1.2158203, 1.2568359, -0.2697754, 1.5722656, 0.72265625, 1.5400391, 1.3662109, -1.9794922, 0.88964844, -0.7011719, -0.24938965, -1.1767578, 1.1289062, 1.5136719, 1.0576172, -0.8095703, 0.9580078, -0.8623047, 0.57421875, -1.1933594, 0.76904297, -1.0029297, 0.17163086, -3.1269531, -3.40625, 0.23999023, -1.8671875, -0.7631836, 1.2216797, -2.4375, -1.7431641, -0.21044922, 0.9716797, -1.3935547, 0.63916016, -1.3144531, 0.2208252, -0.19812012, 0.83740234, -1.796875, 2.0019531, -0.45629883, -1.8613281, -3.2558594, 2.5722656, 3.0878906, 1.5947266, -1.9716797, -0.5361328, -0.10241699, 1.2246094, -0.9472656, 0.3581543, 1.4638672, 1.6289062, 0.85498047, 1.1972656, -2.5644531, 1.2021484, 0.12011719, 1.7070312, -0.2956543, 0.4638672, 3.3105469, -0.57470703, -3.0605469, 0.098083496, -2.0214844, -1.4072266, 1.3085938, -0.17919922, -0.050842285, 1.6855469, 1.2705078, 0.24182129, -2.1328125, 1.2597656, 3.2421875, -0.16479492, 1.4658203, -2.0253906, -0.52685547, -1.0605469, -0.8520508, -0.8178711, 2.5332031, -1.3076172, -2.1796875, -1.4804688, -0.3515625, -0.6401367, -2.6914062, -0.8618164, 1.1630859, 0.54785156, 0.4255371, -0.08337402, -2.6894531, 1.1630859, -0.33032227, 0.92871094, -1.7763672, -1.7431641, 0.072387695, 1.2792969, 1.8837891, -1.9707031, -0.105773926, 0.22253418, 3.0976562, 0.1694336, 2.3535156, -0.07342529, 0.58740234, -1.7636719, 1.2480469, 1.1435547, 0.79296875, -1.1435547, 0.37841797, -0.009880066, -0.21911621, -0.85839844, 1.8925781, -2.3789062, 0.028182983, -0.1743164, 0.92578125, -1.5605469, 0.84375, 0.33032227, -2.2226562, 0.39501953, 2.1230469, -1.2919922, -1.5673828, -0.6928711, 3.6523438, 0.5102539, 0.89746094, 0.39916992, 0.24829102, -0.6645508, 0.83251953, -3.1191406, 2.1855469, 0.7817383, 0.89697266, 1.0332031, 1.0019531, 0.32788086, 1.6777344, 2.6738281, 1.0244141, -0.72314453, -2.8554688, 1.4287109, 0.8125, -0.54833984, -0.73583984, -0.8276367, -0.15270996, -0.6479492, -0.79345703, 0.6044922, -1.3886719, -0.68603516, 0.93310547, 1.6083984, -1.3554688, 1.4560547, 0.24316406, -1.3867188, 0.49023438, -0.8671875, -2.5664062, 4.0078125, -0.6064453, -3.7871094, 0.8730469, -1.0595703, 0.89501953, 3.3183594, -0.26831055, -1.4345703, -0.58740234, 2.5722656, -0.07720947, -0.6254883, 1.9316406, -1.8798828, -0.61865234, 0.69970703, -3.1269531, -1.4980469, 2.7734375, 1.6054688, 1.4550781, 3.0390625, 1.4462891, -1.7490234, 0.22875977, -0.4338379, -1.0849609, -0.50390625, -0.7294922, -0.6323242, 0.91845703, -1.1787109, -2.4902344, -1.1367188, 1.2519531, -1.3222656, 1.9931641, -0.48510742, -2.6152344, 0.33935547, 0.88183594, 0.15881348, 0.7988281, -1.9238281, -0.08538818, -1.4189453, -1.7441406, 1.4599609, -2.28125, -0.59521484, -0.61083984, 0.5185547, -2.2597656, -0.03137207, -1.7871094, -3.8671875, -2.9765625, -0.0949707, 0.45874023, 0.96240234, 0.59228516, 0.7236328, -1.6748047, 1.1347656, 0.18188477, -1.8447266, -0.22607422, -2.4414062, 1.7753906, -0.39575195, -0.5175781, 0.6142578, -0.19628906, 0.83691406, 0.5600586, -1.6738281, -3.7050781, 2.140625, -2.0273438, 0.53466797, -1.5761719, 0.8881836, -0.21679688, -0.44213867, -0.20678711, 0.8911133, 0.93115234, -0.64990234, 1.8183594, 0.5126953, -2.6582031, 1.5400391, 1.0146484, -3.2871094, -0.51464844, 0.89208984, -1.1962891, -0.9086914, -2.8964844, 0.53466797, -1.5400391, -2.9082031, -0.1451416, 3.9433594, -1.1982422, 1.4931641, -1.2568359, -0.08416748, 1.9482422, 1.0947266, -0.53808594, -1.6982422, -0.7270508, -0.4074707, -2.2382812, -2.390625, -0.5292969, 1.0166016, -1.8740234, 0.8310547, 1.3330078, 0.89990234, -0.87646484, -0.12298584, -3.5234375, 2.4003906, -1.484375, -3.1601562, 0.953125, 0.39331055, -0.12133789, -1.6132812, -1.8144531, 1.7890625, 2.0683594, 1.6503906, 0.89453125, -0.37036133, 1.7363281, 0.95458984, -1.9580078, -0.6879883, 1.7539062, 1.7568359, -0.7338867, -2.4140625, 1.4990234, 0.625, -0.059753418, 1.4462891, -0.3635254, 0.9326172, 3.3398438, 3.2519531, 0.90966797, 1.0175781, -0.43774414, 1.9970703, -0.79541016, 0.093688965, 0.3515625, -0.06713867, -1.2119141, -1.0859375, 0.39868164, 0.40649414, 1.6953125, 1.8984375, 3.3769531, -0.8959961, -2.8417969, 0.68115234, 1.1162109, 1.0859375, -1.1835938, 0.3515625, -0.9277344, -0.61035156, -0.79833984, -1.1220703, -0.35864258, -1.7441406, 1.5019531, 2.3417969, 0.69189453, 0.4909668, -1.2900391, 1.5507812, 0.27319336, -2.1738281, -0.69970703, 0.23388672, 0.54589844, 0.1038208, -2.8378906, -0.7246094, -2.4335938, 2.5917969, 0.10418701, -3.8183594, -2.4492188, 2.0644531, -1.3310547, -2.1484375, 0.2376709, 1.9160156, 0.68603516, 1.3203125, -0.24487305, -0.2944336, 3.0703125, -1.3085938, -0.74072266, 1.2646484, -4.3671875, -1.0117188, -2.6015625, 1.25, -0.5644531, 0.68066406, 0.4934082, 2.5996094, -1.5625, 0.78222656, -1.7070312, 1.7900391, -1.4970703, -0.82470703, 0.2536621, 0.86083984, 1.9355469, 1.1464844, 1.7441406, 3.328125, 2.3867188, -0.62646484, 0.6352539, -2.4492188, -1.2617188, -1.0205078, -4.1835938, -0.8120117, 0.50390625, 0.14550781, 1.2275391, 0.38208008, 0.21154785, 2.2988281, -0.91748047, -0.06222534, -0.40673828, -0.4621582, 1.6240234, 0.78222656, 1.2685547, 2.2421875, 0.89990234, -1.9443359, -0.90185547, -2.2050781, -2.2460938, 1.2167969, 0.69384766, 0.53466797, 0.50146484, -1.1054688, 0.64501953, 0.47509766, -0.9116211, 0.30322266, 0.5371094, 0.5229492, -1.5771484, 0.5234375, -0.38671875, 0.28344727, -0.18676758, -0.06213379, 1.4931641, 0.6386719, -2.6855469, -1.4501953, 2.3164062, -0.072265625, 0.3408203, 0.9707031, -0.515625, 1.1035156, -0.82910156, -1.1259766, -0.7626953, -1.6757812, -0.03173828, -0.59765625, 0.7504883, 0.30029297, 1.1650391, -1.0136719, -0.83691406, 0.41845703, -2.6992188, -2.2773438, 0.19616699, -0.78564453, 0.55126953, -0.13989258, -1.8564453, -0.5410156, -0.15124512, -1.1064453, -1.7539062, 2.0917969, 3.0703125, -0.55810547, 1.6103516, -0.9819336, -1.4863281, 1.1484375, -2.0605469, -1.15625, 2.4707031, -0.2364502, -1.9365234, -0.85595703, 0.19372559, 0.2854004, 1.09375, -0.12365723, -2.1171875, 0.24279785, -3.7128906, 2.0390625, 0.37768555, 3.0898438, -0.33740234, 0.2578125, 1.5957031, -2.6503906, 0.11853027, 2.9277344, 0.0713501, -0.030303955, -0.64697266, 2.2539062, 1.7236328, 1.3876953, 1.9580078, 4.0507812, -1.2441406, -0.38549805, 1.1474609, 0.6699219, -3.0585938, 1.3769531, 1.3144531, 0.85546875, 0.036712646, 0.21252441, 2.3691406, 1.2919922, -0.058258057, 0.24865723, 0.32055664, -3.5605469, 1.4775391, 0.86621094, -1.4052734, 0.8388672, -0.2368164, -3.1484375, 2.109375, -0.80322266, -1.8544922, 0.6669922, 1.3535156, -1.1396484, 1.3271484, -2.1738281, 1.3769531, 1.0585938, -0.7426758, -0.6489258, -0.6147461, 0.3322754, -0.64208984, 1.3496094, -0.77001953, 2.5097656, -0.72998047, 3.6972656, -0.8203125, -1.6787109, 0.6879883, -2.0097656, 1.1416016, -0.13305664, -2.2949219, -2.9902344, -1.6318359, -0.39086914, 1.5976562, 2.1054688, 0.8774414, 0.9941406, -0.62109375, -1.015625, -0.73046875, 1.1474609, -0.99658203, -1.4111328, 2.4335938, -3.0644531, 0.4909668, -3.0625, 0.4411621, 1.7021484, 1.4414062, 1.6132812, -2.6777344, -2.1894531, 0.89160156, -1.2236328, -3.4785156, -2.59375, -0.1706543, -0.10003662, -0.25463867, -0.7182617, 0.9350586, 0.29833984, 0.8203125, 2.1230469, -1.1845703, 0.24743652, 0.76904297, -1.6337891, -1.5664062, 1.0078125, -1.3115234, 0.0071029663, -0.060668945, 1.8027344, 1.1835938, -2.171875, -0.8569336, 0.27392578, -2.1191406, -3.9160156, 4.40625, 0.4399414, -1.2441406, 0.9458008, 0.19885254, -3.3261719, 2.6699219, -2.9160156, 0.08666992, -0.5800781, -0.9536133, -0.65722656, -2.015625, -1.5712891, 2.5605469, -1.2578125, 1.3955078, 1.0458984, -0.43115234, 2.1777344, 1.2861328, -1.3056641, -0.26611328, -1.3076172, 2.8652344, 2.6777344, 0.43310547, -0.6035156, 1.9697266, -3.46875, -1.5126953, -0.22058105, 0.57714844, 0.9433594, -2.2695312, -0.05340576, 0.54833984, 0.014274597, 1.1962891, 0.8183594, -1.4130859, 1.1289062, 2.7910156, 0.27514648, 4.3867188, 2.1640625, -0.3762207, -0.47680664, -2.5664062, 0.06732178, 0.8989258, 0.14648438, 1.8964844, -1.171875, -1.6259766, -0.20019531, -1.0185547, 2.8574219, -0.2619629, 2.3222656, 0.5185547, -0.22802734, 1.8066406, -5.2148438, 3.3359375, 1.2480469, 2.9492188, -1.2744141, 2.6171875, -0.6411133, -0.7832031, 0.14538574, -1.4863281, 1.2441406, 0.31469727, -3.7226562, -1.3916016, -2.5175781, -0.6352539, -1.6748047, 1.2734375, -2.265625, 1.5380859, -0.0859375, 0.011817932, 0.28344727, 3.8164062, 0.7578125, 0.43945312, 2.5859375, 1.5751953, -1.8603516, -0.22729492, -0.94677734, -0.3684082, 0.45336914, -3.1503906, -0.4501953, -0.8876953, 0.171875, -1.4892578, -0.5698242, 2.3066406, 0.18078613, -1.2089844, 1.9462891, 1.9052734, 0.8310547, 2.0957031, 2.6484375, 3.921875, 2.2246094, -0.13110352, 1.3212891, 3.5703125, -0.16442871, 0.051696777, -0.62109375, 2.2832031, -1.0029297, 0.41918945, 1.0712891, 0.7265625, 3.0859375, -2.7324219, 0.7685547, 0.07373047, -0.4951172, -0.6689453, 0.6850586, -3.0625, -2.2558594, 1.2255859, 1.0625, 1.4960938, 1.015625, -0.40429688, -1.2148438, 0.08721924, 3.3613281, -4.3632812, 0.46777344, 0.054534912, 0.2626953, 1.8925781, 2.1738281, 0.25585938, 1.5957031, -0.39257812, 2.3203125, -2.1738281, 0.41064453, 2.1503906, -1.5078125, -0.5830078, 1.4824219, 0.6376953, -1.7822266, -1.2285156, 0.18457031, 0.44995117, 0.5180664, -0.6191406, 2.1074219, 1.2539062, -0.08416748, 2.9824219, -1.3730469, -0.2133789, 0.2409668, 2.8945312, -1.6748047, 0.9301758, -2.6835938, -1.1835938, -1.1308594, 1.5625, 0.30249023, 1.9130859, 0.4025879, -3.3886719, 1.7607422, 0.35229492, 0.6171875, -0.42700195, 2.4179688, 0.68066406, -0.48046875, -1.9560547, 2.1796875, 1.8964844, 0.044769287, -3.9589844, 2.0078125, 0.4050293, 0.39233398, 2.6152344, 1.4667969, 2.1210938, -0.9667969, -1.2470703, -0.70654297, -0.34326172, -2.1660156, 0.5385742, -2.7246094, -0.24609375, -2.4570312, 1.0175781, 1.8183594, -0.44702148, 0.9326172, 1.8671875, 0.47338867, 0.66015625, 1.9355469, 0.8671875, -1.5371094, -1.2714844, -2.0839844, -0.8066406, -0.62939453, 0.11468506, 1.2939453, -0.6225586, -1.4111328, -0.35302734, -1.5576172, 0.048797607, 0.36376953, 1.0175781, -2.4140625, 0.36767578, 1.4433594, -0.60498047, 2.7675781, 1.828125, -0.14074707, -0.6459961, -1.7714844, -1.5458984, -1.9814453, -0.9116211, -0.31201172, -1.1513672, 4.3359375, 2.6660156, 0.36987305, -4.2929688, -0.98535156, 1.2783203, -0.92089844, -0.61035156, -0.97998047, -0.3173828, -0.51123047, -0.8823242, 1.3632812, -0.62890625, -1.9287109, -0.9355469, 0.72021484, -0.043518066, 0.40429688, 1.7890625, -0.1665039, 0.027435303, 2.6601562, 1.078125, 4.0195312, 0.7739258, 1.2109375, 1.6181641, 0.109802246, -2.1367188, 1.1757812, -1.2324219, 1.5820312, 0.22998047, 0.234375, 0.44213867, 1.2460938, -0.20275879, 0.68847656, -2.6679688]}, "B07T6SH2Q3": {"id": "B07T6SH2Q3", "original": "Brand: TUYU\nName: RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)\nDescription: \nFeatures: FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer.\nHeavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions.\nCustom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover.\nConvenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank.\nGuarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.\n", "embedding": [1.0322266, 1.8134766, 2.8027344, 0.23901367, -0.55029297, -0.68359375, 0.100097656, -1.3964844, 1.9296875, 2.5253906, 0.9604492, -0.3881836, 0.69628906, -3.6152344, 0.96435547, 0.018859863, 0.1003418, 2.3867188, 3.6308594, 0.7158203, 2.0507812, 0.5571289, 0.8808594, 0.30981445, 0.83935547, -1.3886719, 3.0683594, -1.8720703, -2.2363281, 0.8305664, 1.21875, -0.16955566, -0.14672852, 2.9472656, 0.6347656, -1.4277344, -1.1855469, -0.51123047, -2.7988281, -1.2060547, -3.6367188, -2.1464844, 3.7207031, 0.54052734, -0.36376953, -1.7597656, -1.1845703, -1.9404297, 0.59228516, -1.1337891, 0.26953125, 0.5727539, 1.6826172, 1.7265625, -1.6601562, -0.68896484, -0.5864258, -0.41748047, -0.20056152, 2.1015625, -1.0517578, -1.3164062, -2.0195312, 2.1503906, 0.21618652, -0.08874512, -1.2519531, -1.3662109, 0.9824219, 1.3876953, 2.3164062, 0.16357422, 0.97558594, -0.8652344, 0.86572266, 0.3540039, -1.9267578, 1.125, 2.7011719, -0.30859375, 1.5517578, 3.3769531, -1.390625, -1.4697266, 0.009735107, -0.6118164, -0.8022461, -0.015655518, 0.8198242, 0.33789062, -3.2285156, 1.6152344, -2.1152344, -3.171875, -1.5566406, 0.4753418, 3.3925781, 2.5039062, 3.9042969, 0.46069336, 0.4946289, 0.16088867, -1.3330078, 0.38378906, -3.2226562, -2.2578125, 0.78564453, -2.3027344, -1.5917969, 1.1152344, -0.32788086, -1.0839844, 0.3737793, -1.7773438, -0.2705078, 0.56103516, -0.7597656, 0.35498047, 2.0625, 1.5712891, 3.390625, -1.015625, 0.97509766, -1.4619141, 2.3398438, 0.27075195, -0.79052734, 1.1933594, 2.4160156, -0.6875, 1.0068359, 0.7158203, 0.2602539, 0.045440674, 1.4121094, 0.057891846, -1.5947266, -1.5898438, -2.0742188, 1.2070312, -2.3925781, -1.6142578, 0.9980469, 0.0132369995, -2.7050781, 0.14050293, -1.3398438, 2.4726562, -0.21276855, -2.6523438, 0.50390625, -2.9453125, -0.33520508, -0.78515625, 1.0585938, 0.8857422, 0.13378906, -3.2011719, 1.1474609, 2.84375, 2.9921875, -1.2050781, 0.35424805, 1.4101562, 0.13061523, -3.6523438, 0.7314453, -0.07672119, -0.9199219, 1.3027344, -0.95410156, -2.0605469, 1.1171875, 0.6381836, -0.9873047, -1.4296875, 2.3242188, 0.7270508, 1.828125, -0.28027344, -4.578125, -0.546875, -2.2226562, 0.36987305, -1.1015625, 0.5493164, -1.7792969, -1.6484375, 0.39331055, -1.2636719, -2.1269531, 1.390625, -1.609375, -0.9472656, -1.1474609, -3.0839844, -3.4335938, -1.6074219, 0.13220215, 1.5136719, -1.2695312, -1.046875, -1.7724609, 0.28198242, -1.9296875, -1.7949219, 1.4667969, 0.25830078, 1.5175781, 0.5253906, -0.58740234, -0.19470215, 3.0898438, 0.22705078, -1.8222656, 0.33618164, 1.5976562, 1.3544922, 1.4746094, 1.4013672, -0.74902344, 1.0478516, 1.890625, 2.1445312, 0.5214844, 2.7929688, 1.1552734, 0.2142334, -1.1132812, 0.42504883, -0.2849121, 1.4853516, -1.71875, -0.5004883, -1.1445312, 1.8759766, 0.049316406, -1.9365234, 0.14025879, 0.42016602, -0.33520508, -1.4306641, -1.5878906, -0.83496094, 1.421875, 3.4082031, -0.34570312, 0.67285156, 2.2851562, -1.0537109, 0.51220703, -0.9399414, 0.1381836, -2.7226562, -0.8305664, 1.5107422, 1.4042969, 0.56152344, 0.828125, -2.0976562, 1.0957031, 1.3789062, -0.9838867, 1.0390625, -1.5732422, 0.9995117, 0.8486328, -0.19042969, -2.6992188, 1.1972656, 0.11785889, 0.63720703, -1.2519531, -1.5859375, 2.7910156, 0.060638428, -0.36132812, 1.3574219, 0.017425537, 2.8222656, 1.3681641, -0.87158203, 0.9448242, -3.03125, 1.3828125, 1.4365234, 1.8525391, 0.9794922, -1.9433594, 0.81396484, 2.765625, -0.24060059, -0.56103516, 2.1171875, 3.1328125, 0.10595703, 3.7675781, 0.1171875, -0.13098145, 1.53125, -1.2304688, -0.40307617, -0.9863281, 0.60546875, 0.7314453, -1.6064453, -0.13012695, -1.4355469, 1.2597656, 0.9604492, 1.3417969, -0.49023438, -2.015625, -1.9208984, -0.96728516, -1.1484375, 3.8027344, -2.7988281, -0.07006836, 3.0917969, -1.046875, 0.6308594, -0.43530273, -1.4072266, 0.35839844, 0.3774414, -2.1328125, 0.37548828, 0.70996094, 0.6977539, 0.80126953, -2.7519531, 2.5449219, 0.1373291, 0.75097656, -0.1517334, -2.1484375, -1.5390625, -0.033172607, -1.2792969, 1.2382812, -2.0273438, -0.8198242, 1.7880859, 1.4814453, -1.0644531, -0.7685547, 1.7353516, -2.2011719, -1.0371094, -0.3400879, 1.7832031, -1.3554688, -3.4140625, 1.0654297, 0.040802002, -2.3691406, 2.1835938, -1.2832031, -0.101257324, -0.6230469, 0.7114258, 2.3144531, -0.6044922, -1.1025391, -0.42773438, 0.8330078, -4.3710938, 1.4111328, -2.3046875, 0.42407227, -2.8691406, 0.3569336, -1.6904297, -1.6552734, 2.5351562, -2.2714844, 3.2363281, 2.2089844, 0.39526367, -1.2236328, -2.0078125, -0.77734375, -1.0761719, -2.1875, -1.2265625, 0.91064453, -2.1347656, -0.41723633, -4.5351562, -1.3505859, -2.0371094, -1.0371094, 0.61816406, -1.8300781, -0.4716797, -0.0345459, -0.98535156, -0.093566895, -0.5332031, 2.3242188, -1.6835938, -1.7597656, 0.13977051, -0.092041016, -0.8359375, -0.4074707, -2.1386719, 0.9267578, -1.4082031, 0.23693848, 0.58154297, -1.3085938, 2.4394531, -2.1953125, -3.5214844, -0.35986328, 3.0917969, 2.8535156, 2.8027344, -0.20593262, -1.25, -1.6621094, -0.21398926, 3.1269531, 2.90625, 0.68408203, 2.3261719, 0.2800293, -0.13305664, -0.9692383, 0.9316406, 0.9033203, 0.71240234, 2.9707031, -0.7832031, 0.9238281, 1.6972656, 2.6503906, -3.2890625, -0.35620117, 0.54785156, -1.0400391, 2.9589844, 1.5644531, -2.234375, -0.6723633, 0.86865234, 1.0371094, -0.6386719, 1.8320312, 0.78466797, 1.6728516, 1.2421875, -0.21472168, 1.1162109, 2.3027344, 0.00440979, -2.8574219, 1.4394531, 0.42700195, -2.03125, 0.08935547, 0.31323242, -0.9399414, -0.8623047, 1.9794922, -0.6245117, 0.77441406, 0.36376953, -0.61035156, -0.5517578, -0.46362305, 0.46679688, 0.0121536255, 2.2148438, -0.18688965, -0.8286133, -2.4082031, 0.19042969, -1.2490234, 1.9394531, -0.64697266, -0.5185547, 1.8320312, -3.4570312, -0.24194336, -2.46875, 1.8535156, -0.5722656, 0.13171387, 0.45239258, 1.1328125, -2.0546875, -2.6171875, 0.11627197, -0.44140625, -2.7089844, 4.375, 3.6386719, -2.15625, -0.44702148, -1.2177734, 3.2792969, 2.0449219, -0.21716309, -1.2685547, -1.2138672, 1.0478516, -1.3535156, -0.81884766, 1.5703125, 2.3496094, -2.2480469, -0.40161133, -0.6611328, 1.7734375, 1.4511719, 0.69091797, 0.62060547, 0.7763672, -0.94628906, 2.7597656, 1.2998047, 3.6679688, -0.3540039, 1.9697266, 1.0761719, -0.7734375, 1.1298828, 0.27905273, -3.5859375, -0.7661133, 0.30078125, -1.3134766, 3.2519531, 0.1706543, 0.87353516, -0.24389648, -0.35107422, -2.2890625, -1.4423828, -3.4375, 2.0136719, -2.8691406, -0.4658203, 1.1142578, 0.54345703, -2.3125, -1.265625, -0.546875, -1.9082031, -0.33203125, -0.07647705, 0.3635254, 1.4238281, -1.4121094, -0.72802734, -0.6328125, 1.1953125, -0.1829834, 0.055664062, -1.1357422, -1.1669922, 2.34375, 0.4711914, -0.043273926, 0.20483398, 3.0449219, 0.57421875, -0.86328125, -0.30639648, -0.8647461, 2.2246094, -1.5712891, -3.3007812, -1.7421875, -0.61328125, 0.64746094, 0.37548828, -1.1542969, 0.57958984, 1.2705078, 1.515625, 1.2822266, 1.9511719, 1.1210938, -1.1699219, -2.3691406, 2.3730469, -1.1367188, -0.42626953, -0.43969727, -2.6914062, 0.6850586, -0.59765625, -2.2109375, -1.5644531, -0.025756836, 1.0859375, 1.3369141, -2.4179688, 2.1523438, 1.9462891, 2.4335938, 1.4248047, 0.4724121, 0.111694336, 0.5209961, 2.0527344, 1.7451172, -0.98828125, 0.6821289, 0.6826172, 0.7709961, -0.15893555, -1.7646484, -1.0390625, -1.4365234, -1.5869141, 0.62597656, 0.3203125, 2.3574219, -0.8125, -2.1757812, 0.2775879, -1.4453125, 4.6289062, -3.2929688, 1.2460938, -0.27514648, -1.2910156, -1.3613281, 2.0214844, 2.2460938, 0.51953125, 0.546875, -1.4794922, -2.0078125, 0.13793945, 1.6591797, 1.2207031, 1.0986328, -2.1757812, -0.81347656, 0.03616333, 1.5458984, -0.23754883, -0.9091797, 1.6738281, 2.4375, 0.62841797, 0.4033203, 2.0292969, 0.7163086, 1.7177734, 1.5771484, -0.18798828, -1.3759766, 0.6948242, 1.7148438, 2.40625, -1.8427734, -3.3945312, 1.9853516, -0.18945312, 0.44799805, 2.484375, -0.35302734, -1.1123047, -0.55859375, -3.8769531, -2.1972656, -0.5698242, 0.33740234, -0.82421875, -0.9897461, 1.6367188, -0.44921875, 1.0009766, 1.9306641, -0.17590332, -0.9326172, -0.20373535, 1.328125, -0.8569336, -3.0292969, -0.40722656, -4.078125, 0.04336548, -1.0078125, 0.63183594, -1.1972656, 1.09375, 0.62158203, -3.21875, -0.4399414, -0.9609375, 1.3945312, -1.7421875, 0.1842041, 2.7480469, 0.48120117, -0.55566406, -0.08325195, -0.26586914, -0.76123047, 2.8144531, 1.8515625, 0.22814941, 0.8701172, 0.45483398, -3.7109375, -5.1679688, -0.9824219, 1.1484375, -0.00083875656, 0.81347656, -0.82177734, -0.96240234, 0.63720703, -2.1308594, 0.8725586, -2.0957031, 1.2773438, -2.0390625, -1.4824219, -0.48754883, 0.18005371, 0.62353516, 0.6201172, -1.3505859, -0.35717773, -2.4082031, -2.4101562, -3.21875, -1.46875, -1.1494141, 0.1517334, 1.1826172, -0.49951172, 2.0761719, -0.0036334991, 2.1328125, 0.18798828, 1.6318359, -0.9892578, -0.5048828, 2.4492188, 0.17358398, -1.3955078, 2.0839844, -1.0947266, 2.2246094, 2.2929688, 1.4462891, -2.328125, 0.9814453, 0.2553711, -0.0023021698, -1.4316406, 0.35180664, 1.2880859, 1.3085938, 1.4824219, 1.0556641, -2.1152344, -2.0507812, -1.3984375, -1.6142578, -0.56640625, -2.7050781, -2.1054688, -0.11920166, 0.7265625, 1.3945312, 1.4814453, 0.82421875, 1.4277344, 1.0888672, -2.2910156, 0.7324219, -2.7890625, 2.2148438, 1.0019531, -1.7382812, -2.0136719, -3.1054688, 3.6210938, 1.265625, -0.09442139, 1.5498047, 0.2277832, 0.09222412, 1.3642578, -0.048095703, 1.7197266, 1.3847656, 2.6738281, -1.6005859, 1.7695312, 2.9941406, -0.68359375, -0.63134766, -1.7763672, -0.8540039, -0.27612305, 1.0625, 1.9726562, -2.3867188, -0.2915039, 1.8857422, -0.1027832, -0.16638184, -1.4433594, -0.3022461, -3.1308594, -0.7988281, -1.5214844, -0.87597656, -4.3515625, 2.828125, -0.04647827, -0.24865723, 1.2001953, 0.9663086, -1.1328125, 0.1505127, 2.5214844, -0.88134766, -0.40698242, -1.0644531, -0.81152344, 0.14465332, 1.9931641, -2.9140625, 1.0800781, -1.0703125, 0.82714844, 0.19763184, 1.8115234, -0.09509277, 0.8955078, 1.7988281, 2.3964844, 4.2421875, -0.48046875, 0.59033203, 0.7138672, 1.3945312, 3.0234375, -1.9384766, 0.33129883, 1.3085938, 2.4082031, 3.6855469, -1.5947266, -0.87402344, 0.44482422, -0.78027344, 0.7158203, 0.44262695, 0.9272461, -3.2988281, -0.05227661, -0.28955078, -0.8413086, 1.5039062, 1.4912109, -2.0351562, -2.6621094, -0.27294922, -0.85302734, 1.3486328, -0.97216797, 1.9658203, 1.0009766, -0.19567871, 2.5996094, -0.58447266, 0.7919922, -2.3847656, -3.15625, -0.6484375, 2.3535156, 1.3212891, 1.6474609, -0.38989258, 0.87402344, -0.04397583, 1.6220703, -0.022140503, -0.3215332, 2.1308594, -2.71875, 1.8320312, 2.6679688, -1.3056641, -0.76220703, 0.73779297, 0.70996094, -4.3242188, -0.9355469, -0.20715332, 0.4038086, 0.2277832, -3.1621094, 0.21447754, -0.859375, 0.6928711, -2.2675781, 0.11883545, -0.59033203, -4.578125, 1.1289062, 1.5556641, -1.2958984, 3.9472656, 0.41381836, 0.17211914, 2.5136719, 0.6347656, 0.2388916, 1.2617188, 0.32910156, -0.82373047, 1.0693359, -0.03829956, 2.3574219, 2.4902344, -1.4921875, -0.28881836, 2.0605469, -0.4013672, 0.73291016, 0.5073242, -1.7890625, 3.9492188, 0.44628906, -0.54296875, 0.9711914, -0.7192383, 0.80078125, -0.89697266, 0.171875, -0.121520996, 0.2993164, -0.5185547, 1.8828125, -4.5507812, -0.30126953, 0.5888672, -0.2548828, 1.5908203, -0.07373047, -1.0234375, -0.59472656, 0.27734375, 1.3232422, -3.4609375, 0.24975586, -2.3613281, 0.8491211, -0.87109375, -1.6611328, -1.1630859, 1.2119141, -1.984375, 0.5917969, 1.6914062, -0.5419922, -0.0597229, -0.026062012, -1.7685547, 0.6513672, 2.2011719, 0.25732422, -0.3408203, -0.7675781, -1.5957031, 0.087890625, -0.7163086, -0.66064453, 1.453125, 2.4101562, 2.4277344, -0.6948242, 0.96972656, -1.9550781, -1.2539062, -2.9941406, 2.3242188, 0.7836914, -0.3112793, 0.6274414, 1.0361328, 2.328125, -1.4287109, -0.625, 0.5727539, 0.7729492, 1.1240234, -0.6982422, 1.1064453, 1.4931641, -0.41674805, 1.4306641, 3.4238281, 3.2109375, -3.0097656, 1.3183594, 0.47973633, -2.5917969, -1.6103516, -1.2011719, -1.0957031, -1.5185547, 0.9873047, 2.34375, 4.7695312, 0.9033203, -0.64697266, -2.6953125, -0.2692871]}, "B07HJY1Z4B": {"id": "B07HJY1Z4B", "original": "Brand: Backyard BBQ Unlimited\nName: Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt\nDescription: \nFeatures: Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped\nOur sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You're Going To Want More. Great for the restaurant owner of grill master of the family.\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [-1.6357422, 2.2949219, 0.0473938, 0.6220703, 0.26049805, 0.9819336, 2.5546875, -0.31933594, -0.13427734, -0.2524414, 0.5239258, -1.7158203, -1.0478516, -3.0859375, -1.4550781, 1.109375, 1.1679688, -0.21960449, 1.4404297, 0.80908203, 0.108947754, -0.43725586, 1.4492188, 0.7236328, 0.7285156, 0.66845703, 2.8320312, -1.4716797, 1.9316406, 0.042663574, 2.5664062, 1.0371094, -0.022109985, 1.6054688, -2.0957031, 2.5117188, -0.4946289, -1.0498047, 0.03677368, 2.1582031, -1.3789062, -1.1650391, 0.9946289, 1.8125, -3.5351562, 0.80566406, 0.1583252, 0.86816406, -1.9941406, -3.5097656, 0.7998047, 2.5410156, -0.6635742, 0.5292969, -1.2109375, 0.5751953, -0.6220703, -0.25463867, 0.089904785, -0.9082031, 0.7260742, 0.1694336, -0.99365234, -0.9121094, 1.9228516, 0.021957397, -1.9853516, 0.36645508, 1.0693359, 0.15551758, 1.1357422, 0.1038208, -3.9570312, -0.14440918, 0.24926758, 0.0473938, 0.16931152, -0.39160156, -1.4882812, -1.0390625, 1.1289062, 4.265625, 0.3269043, -2.25, 0.046691895, 0.7685547, -3.1523438, -0.9042969, 1.7021484, 0.28735352, 2.3710938, 3.4277344, -2.5625, -3.4257812, 2.1796875, -1.65625, 0.97216797, -0.17553711, 0.78125, 1.3457031, 0.5620117, -0.68310547, 0.5805664, -0.44360352, 1.5742188, 0.44262695, -0.6118164, 0.8041992, -3.1425781, -0.32128906, -1.6875, 2.6796875, 2.4414062, -0.24438477, 2.1933594, -0.5029297, -1.3759766, 1.7050781, 1.9511719, 0.17199707, 2.3300781, -0.9477539, 1.3837891, -0.22351074, -2.265625, 0.05215454, 0.08282471, 2.7167969, 2.5429688, 0.4765625, 1.5927734, -0.56396484, -2.2792969, -2.5351562, 0.19519043, -0.91064453, -0.62158203, -0.38061523, 1.1953125, 2.0839844, -0.2565918, -0.5966797, 1.5869141, -0.84277344, -0.80908203, -1.1962891, -0.7451172, -0.8496094, -1.6181641, -3.2871094, 0.41308594, -0.9423828, -2.0175781, -1.8417969, 3.5703125, -0.99658203, -0.8569336, -0.77441406, 0.28076172, -0.89404297, 0.31713867, -1.1757812, 0.17346191, -0.10961914, 1.7734375, -2.9238281, -3.4199219, 0.41723633, 0.70654297, 2.0664062, -0.40307617, -0.30688477, 3.8769531, -2.4355469, 1.8613281, -0.90722656, -0.14233398, 1.4150391, -0.66503906, 0.39868164, -0.09552002, -0.03845215, 1.1748047, 1.9619141, -1.3320312, -2.1621094, 0.3791504, 0.41577148, 1.3359375, -0.11871338, 3.6503906, 1.3193359, 1.3583984, 2.0117188, 1.0292969, 0.9794922, 0.46264648, -1.6640625, 1.6123047, 0.9902344, -0.2854004, 0.1463623, -1.9892578, 0.10357666, -2.4726562, -1.9697266, 0.70703125, -2.5996094, 2.390625, 0.73583984, -0.2536621, -2.2128906, 0.8701172, 0.97558594, 0.0949707, -1.5234375, 1.2626953, -0.43896484, 1.4560547, 2.8613281, -0.64501953, -0.16320801, 1.4902344, 1.84375, -0.6557617, 0.13562012, -2.0019531, 1.4677734, -0.91503906, 0.20727539, 2.4667969, 2.3300781, 0.2166748, 0.42285156, -2.9453125, -0.2331543, 1.2119141, -3.6230469, -2.1582031, 1.8466797, 1.1171875, -2.2734375, -2.0527344, -3.0820312, 0.6850586, 0.6254883, -2.6796875, 1.9765625, -0.06304932, 0.74560547, 0.4802246, 0.9316406, 0.12573242, 0.4729004, -0.24926758, 1.7001953, -0.8066406, 0.4501953, -3.4414062, 0.67822266, 1.3349609, -0.6088867, -1.5283203, 1.8935547, 0.9628906, 0.6401367, 3.6386719, 1.6748047, -1.0615234, -1.6591797, 2.1933594, 3, -2.7617188, -3.3886719, 1.9140625, 0.061157227, -0.6279297, -0.2770996, 0.35839844, -1.8671875, -1.5273438, 2.3105469, -0.4946289, -0.10839844, -0.7246094, -0.2109375, -2.1523438, -3.0761719, 0.95214844, 1.2265625, 2.3789062, 2.5371094, 0.4099121, 0.3178711, -2.2167969, -0.41723633, -0.8642578, -1.7958984, -0.8598633, 2.7265625, 1.0263672, -0.40966797, 0.34448242, 0.7426758, -0.22106934, 0.32080078, -0.06665039, -0.15478516, 0.04940796, 0.9506836, 0.5571289, -1.0400391, -0.38671875, -1.3427734, -1.0654297, -1.7314453, -2.4589844, 0.26367188, 0.50097656, 1.8251953, 2.0527344, 1.3105469, -0.29833984, -1.1582031, -0.0119018555, 2.2265625, -1.1328125, 0.98828125, 0.8310547, -0.7836914, 1.6445312, -0.030914307, 0.30078125, -1.4892578, -1.5068359, 0.3161621, -1.8701172, 0.80566406, 0.57421875, 0.41430664, -1.5195312, 0.56347656, -2.4492188, -0.4765625, -1.1816406, -3.2773438, -0.75097656, -0.51464844, -0.1430664, 0.6503906, -1.1796875, 0.022338867, -1.0234375, -2.8300781, 0.27392578, 0.3701172, 1.9248047, 1.3427734, 0.03250122, 0.5605469, -1.8457031, -2.2832031, -0.4189453, -0.18664551, 1.4023438, 0.4489746, 0.85839844, -2.6933594, 1.0195312, -1.3408203, -3.2753906, -0.42822266, 1.3037109, -1.7949219, 1.2861328, -0.117248535, -2.0585938, 2.9023438, 0.90966797, 0.025405884, -0.022277832, -1.5224609, 0.6567383, 0.6411133, -2.2441406, 0.053771973, 2.0703125, -0.83251953, -1.2783203, -2.1894531, 1.1533203, 0.4248047, 0.5571289, -0.67578125, 3.859375, -1.4921875, 0.35913086, -0.19824219, 1.3994141, 2.2832031, 1.6533203, 0.65185547, -0.31079102, -2.0800781, 0.01902771, -1.2470703, -0.61035156, -1.4306641, 1.5566406, -2.1445312, 0.11395264, 0.1352539, 0.22436523, -1.4580078, -2.3535156, -2.5664062, 0.9370117, 0.24841309, -1.0400391, -1.75, 0.7133789, -2.4082031, 0.107666016, -0.4165039, 1.5400391, 1.1611328, 2.1503906, 1.3203125, 1.1220703, -1.3242188, -0.34350586, 1.1181641, 0.72314453, 2.2832031, 1.3681641, -1.0253906, -2.0429688, 0.91308594, 0.3984375, -0.99658203, -1.4931641, 2.2050781, -0.78125, 0.00617218, 0.53222656, 0.5551758, 0.54003906, -1.3886719, 2.2421875, -0.48461914, -0.5541992, -2.0507812, 2.7460938, -0.5566406, -1.546875, 1.4150391, 0.5083008, -0.6645508, 2.6191406, 1.5224609, 0.10003662, -0.02583313, 0.2680664, 0.30395508, 1.8613281, 1.6738281, 0.24499512, 0.39208984, -0.37475586, 1.6005859, -0.83447266, 2.3710938, -1.2490234, -0.09820557, 0.55615234, -0.2565918, -1.5507812, 1.2099609, 1.3076172, -1.2353516, -1.2705078, -2.3515625, 0.87597656, -1.6054688, 0.06549072, -2.0742188, -1.7753906, -0.6347656, 1.1904297, -1.7431641, -1.015625, -0.7685547, 2.140625, 0.6279297, -0.04196167, -0.22387695, 2.5390625, -0.055603027, 0.21984863, -0.7470703, -1.0058594, 1.3242188, -1.1220703, 1.4775391, 0.69140625, -0.87158203, 0.07891846, 0.35498047, -0.2208252, 3.6308594, -0.01210022, 0.0074539185, 0.8564453, -0.95703125, 0.41259766, -2.2753906, 1.7558594, 2.7167969, -1.640625, -0.8027344, 2.0488281, -1.0146484, -2.2988281, -0.12573242, 2.7734375, 1.5136719, -0.91796875, 1.2070312, 0.9399414, 1.34375, -1.0488281, -1.4707031, -0.6972656, 1.1298828, -0.9794922, 3.8125, 1.6787109, -0.7338867, 3.1621094, 1.1494141, -1.0429688, -2.1699219, -0.3317871, 0.0099105835, 0.3034668, -0.91503906, 0.20690918, 1.8798828, -1.9082031, -0.44604492, -0.4897461, -1.5869141, 0.5493164, -0.37524414, -2.09375, 1.4316406, -1.765625, 1.0410156, -0.47338867, -0.96777344, 0.5029297, -0.96875, -0.13684082, -0.3413086, 1.1113281, 0.2841797, 0.49829102, -2.2148438, 0.5175781, -0.1182251, -0.53564453, -1.1875, 0.46411133, 3.9316406, -0.6245117, -1.5175781, -0.73828125, 2.0410156, -1.796875, -0.35473633, -0.36865234, 0.3461914, -1.8066406, -2.5566406, -0.10095215, 2.2050781, 0.94433594, 0.3173828, -1.5673828, 1.0087891, -1.0791016, 0.32104492, -1.6923828, -0.50341797, 0.24487305, -0.42285156, 0.4892578, 0.58984375, 1.8886719, 0.30688477, 0.40014648, -0.55078125, 1.3203125, 2.8789062, -0.02293396, 3.8671875, 1.4257812, -2.9199219, 2.3613281, -1.9697266, 2.0449219, 0.89990234, -1.1689453, -0.36010742, -0.5571289, 0.10748291, 0.6171875, -0.6123047, -0.21838379, -1.1621094, 0.65771484, -1.6933594, 1.8007812, 0.40039062, 0.38989258, 0.2993164, -2.0253906, 2.3964844, -1.2138672, 1.6884766, 4.265625, 0.08782959, -0.70410156, 0.7470703, 2.3515625, 0.26171875, 0.03744507, 1.8886719, 0.7841797, -1.9931641, -1.0917969, -0.109375, -0.52441406, -1.7255859, 0.8588867, 0.8100586, 0.022521973, -0.26416016, -0.6850586, 1.2324219, 3.90625, -1.8359375, 1.7646484, 0.13977051, -2.0351562, 0.56396484, 3.0449219, -3.2441406, 2.1660156, -0.14355469, 0.7871094, 0.43530273, 1.0195312, -2.4140625, -2.2265625, -0.35083008, -0.49951172, 2.4082031, 0.3791504, -1.8486328, 0.10168457, -2.109375, -2.5234375, 2.6875, -1.4375, 1.9619141, -0.6035156, -1.5820312, -2.5136719, -0.17175293, 2.8378906, -0.32617188, 0.2529297, 0.7026367, 0.19470215, -2.5292969, -1.9355469, -0.96777344, -1.2089844, 0.56689453, 2.7988281, 2.015625, -0.8027344, -0.12609863, 0.3701172, -3.4941406, 1.5009766, -1.2197266, 3.1835938, -0.2133789, 1.7763672, 1.1503906, -1.40625, 1.7294922, -2.15625, 0.6767578, 0.032958984, -0.48608398, -0.8618164, -2.0644531, -0.8496094, 1.8007812, -0.97021484, -3.2421875, -2.1777344, 0.2541504, 3.140625, -0.35742188, -0.13537598, 2.8710938, 2.3808594, -0.09777832, 0.8208008, 0.23986816, 0.37719727, -1.7382812, -0.3881836, -1.5146484, -1.5830078, -0.18225098, -0.3569336, 1.3115234, -2.5273438, -0.1295166, -0.5805664, -0.28344727, 1.3251953, -4.4609375, -2.0351562, 1.6796875, 0.44335938, 0.83935547, -1.8740234, 3.3730469, 0.030517578, 1.4667969, -2.9199219, -0.92626953, -2.6484375, -0.33081055, 1.3056641, -2.3320312, -0.7885742, 1.8320312, -3.0703125, -0.5888672, 0.10522461, 0.62646484, -0.29663086, -0.11578369, -1.7216797, -0.49682617, -1.1894531, 1.5126953, 1.5722656, 1.5517578, -0.18164062, 0.83740234, -3.7480469, -2.5117188, -2, -1.6533203, -1.3710938, -2.0078125, -0.5126953, 0.03237915, 0.5058594, 2.1835938, 0.15844727, 2.1035156, -1.1796875, -1.4736328, -1.0517578, 0.27368164, 0.66308594, 0.4675293, -1.4599609, -0.17358398, -0.2541504, 0.5722656, 0.8383789, 0.14367676, -2, -1.0126953, -1.5849609, -1.5380859, 1.1308594, 1.7744141, -0.89941406, -0.9345703, -0.28344727, 2.4042969, -2.8984375, -1.2587891, 0.053131104, 1.1826172, -1.5175781, 3.9179688, -2.6464844, -1.1396484, 0.2770996, 0.059295654, -0.578125, 2.4414062, -1.9228516, 0.8432617, -0.4033203, 1.3632812, -2.3808594, -3.71875, -0.5644531, 1.1210938, -0.10986328, -0.4567871, 0.60498047, 3.5214844, 1.5039062, -0.10546875, 1.0732422, -0.5683594, 0.24816895, -1.3310547, 0.35424805, -1.3017578, -0.27124023, -1.2333984, 0.7919922, -1.0546875, -2.0820312, -0.24499512, 0.62109375, 1.5703125, 3.0507812, 1.4501953, 2.5683594, 0.9423828, 3.2734375, 2.2480469, 0.40942383, 2.1289062, 0.59716797, -1.7919922, 1.609375, 2.3671875, 2.125, -0.75683594, -2.2167969, 2.5175781, -0.9560547, 0.66308594, 0.3996582, -0.34985352, -1.5869141, 0.09838867, 1.9804688, -0.38085938, 0.17004395, -2.59375, 1.9785156, -0.57714844, -1.5390625, -2.578125, 1.5185547, -0.60058594, -1.3613281, 2.3144531, -0.3076172, 2.4511719, -0.74560547, -2.2480469, 1.0859375, 1.1806641, -2.4433594, 0.87890625, 2.5195312, 1.3808594, -0.42260742, 0.11022949, 1.0917969, 0.28027344, 1.8349609, 1.7460938, 1.5068359, -0.71972656, 0.2709961, 0.6850586, -2.4667969, -1.4394531, 0.5390625, -1.7470703, -1.6035156, -1.7988281, 0.93603516, -0.0041770935, 0.9458008, -1.1572266, -1.9511719, 2.3320312, 0.8598633, 2.4023438, 2.1953125, 2.4199219, -0.5341797, -2.421875, -0.22949219, 1.8105469, 0.83691406, -0.5751953, -0.77734375, -1.3242188, 1.1875, 1.3466797, 1.4785156, 1.1884766, 0.92089844, -0.3317871, 1.1435547, 0.53125, 0.47387695, 0.17822266, -0.19873047, 0.7338867, 0.7182617, -0.5493164, 2.6757812, 0.3515625, -2.3515625, 0.90625, -2.5429688, -1.3935547, -0.11602783, 0.6855469, -2.2460938, -0.22375488, 1.4404297, -0.47216797, -0.63378906, 0.09197998, 1.8808594, 2.4453125, -0.5541992, 2.1015625, -1.3769531, 0.79248047, 0.91015625, -0.7138672, 1.890625, -1.3115234, 0.039764404, 0.79345703, -0.67285156, 1.3808594, 1.3457031, -0.37817383, 0.4025879, -0.8076172, -1.6689453, 1.4511719, -0.4909668, 0.114990234, -1.1904297, -3.375, 0.7607422, 0.60498047, 1.3125, -0.05911255, 2.15625, -2.5, -0.92333984, -1.6025391, -0.6323242, 0.65722656, -1.4765625, 2.1933594, 2.3769531, 1.171875, -1.4316406, -1.9804688, -2.4746094, 3.3632812, -4.0390625, 0.19970703, -0.56884766, 0.19433594, 0.10858154, -0.8232422, -0.5415039, -0.5053711, -0.7246094, 0.36010742, -2.015625, -0.05911255, -1.3056641, 0.0848999, -0.21142578, 0.6323242, 0.40014648, 0.3227539, 2.4882812, 1.7861328, 2.125, 0.8618164, 1.8486328, -0.36206055, -0.11468506, 3.0585938, 0.99902344, -1.2226562, -1.6904297, -1.0175781, -1.7949219, -0.19970703, -1.0693359, 0.10858154]}, "B08MQRP2DT": {"id": "B08MQRP2DT", "original": "Brand: Western Wood\nName: Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag\nDescription: Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.\nFeatures: Variety 6 Pack of Smoking Chips\nTry Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs.\nUse with gas grills, electric smokers, griddles, kettle grills and ceramic grills\n", "embedding": [-1.1132812, 1.1425781, 0.7495117, -1.0878906, 2.0761719, 0.8310547, 2.9550781, 0.22009277, -0.87890625, -0.5283203, 1.2958984, 2.921875, 0.2548828, -4.984375, -0.96777344, -3.1367188, -2.9277344, 0.44848633, 3.6933594, 1.7685547, 0.84765625, -0.09991455, -0.16125488, 1.0898438, 2.9414062, 0.85839844, 1.3427734, 0.46191406, 1.2802734, 0.74658203, 1.7568359, -0.41503906, 0.3227539, 2.140625, -1.6953125, 2.1933594, 0.42773438, -1.5322266, 0.77490234, 2.7050781, -1.5400391, -0.93310547, 1.8691406, 1.8486328, -3.2617188, -1.5205078, 0.6430664, -2.1796875, -1.4238281, -0.4387207, 0.15136719, 1.1855469, -2.1679688, 0.8725586, -1.9541016, 2.1386719, 0.3864746, -1.7851562, -1.2929688, 1.3203125, 2.3710938, -0.68066406, -0.5786133, 0.5522461, -1.5410156, 0.5126953, 1.0097656, 0.27001953, 1.1640625, 1.4589844, 2.5488281, 1.5205078, -1.6845703, -0.7866211, -1.8046875, 2.03125, -0.5576172, 2.9199219, -1.3515625, 0.42138672, 0.01260376, 2.0488281, -1.9023438, -1.5498047, -0.059906006, -1.0664062, -0.9477539, 1.4902344, -1.1601562, 1.9521484, 1.0976562, 1.0205078, -0.7192383, -4.1445312, 0.7915039, -1.4355469, -2.3671875, -1.2763672, -0.9819336, 1.6220703, 2.2265625, -1.4482422, -0.5078125, 0.99658203, -2.5683594, -0.017440796, 0.27294922, 1.8476562, 0.7060547, 0.62060547, -1.1328125, 0.61083984, 1.8671875, 1.5761719, 2.796875, 1.1552734, 0.72314453, -2.6992188, 1.2070312, 0.54589844, 2.6972656, -0.4140625, 1.4589844, -0.9404297, 1.0371094, -0.38256836, -1.2587891, 3.1640625, 1.7607422, -2.4511719, 0.09033203, -1.7167969, 0.3059082, 1.4628906, 0.37939453, -1.2470703, -0.22473145, -0.45141602, -0.03643799, 0.73779297, -1.3535156, 1.2998047, -0.60546875, 1.0947266, -0.8203125, 0.98535156, 0.15454102, 0.18701172, 0.67578125, -2.4238281, 1.0751953, -1.0458984, -0.17443848, -2.0195312, 0.49902344, -0.23742676, 1.234375, -0.12438965, 0.011238098, -1.1523438, -1.7617188, -2.3339844, 0.4638672, 1.9570312, -2.0234375, -2.4785156, 0.08898926, 0.17150879, 0.5395508, 2.4140625, 0.39794922, -0.35791016, 0.7480469, 0.23181152, 0.40185547, -0.2619629, 0.050872803, 2.296875, 2.3867188, -2.2910156, 1.6845703, -0.3630371, -0.8544922, 0.41918945, -1.2275391, -0.07397461, 0.3630371, 0.7758789, -0.066101074, -1.2900391, 1.2910156, -0.03503418, -0.4404297, 0.4729004, 1.5, -0.80029297, 0.07116699, -2.9765625, 0.21362305, 0.36621094, -1.8398438, 1.1328125, 0.09375, 0.6748047, -0.6484375, -2.3769531, 0.30810547, -0.6738281, 0.59375, 0.7421875, 0.67626953, -0.88183594, -0.17541504, 2.4589844, -2.8339844, -3.578125, 0.30004883, -3.4707031, 0.30419922, 0.54296875, -0.05819702, 2.0996094, -0.13977051, 1.4853516, -0.49731445, 2.0820312, 0.24414062, -0.28833008, 1.6669922, -0.6801758, 1.0458984, -0.19396973, 1.0009766, 0.30493164, -0.8330078, 1.0498047, 1.9824219, -2.7988281, 0.55029297, 0.009033203, -0.2084961, 0.3449707, -1.1523438, -0.17919922, -1.5048828, -1.2978516, -0.98876953, -0.12188721, 0.46289062, -0.27905273, -1.328125, 0.109558105, 1.7392578, 0.92041016, 0.69189453, 1.2109375, -0.94921875, -0.29125977, -1.9277344, -1.1298828, 2.6484375, -1.0917969, 2.3105469, 0.43676758, 1.0478516, -1.1074219, 1.0751953, 1.2705078, -2.4101562, -2.4511719, -0.8496094, 0.5151367, 0.031341553, -0.87841797, 2.4257812, 1.1054688, -0.24902344, 0.12561035, -0.014587402, 0.072631836, 0.010864258, 2.6484375, 1.3642578, -0.67871094, -1.3359375, -0.46655273, -1.1914062, -1.4199219, 1.9951172, 2.3730469, 4.0039062, -0.75341797, -3.4414062, -0.12878418, -0.9667969, -0.24035645, -1.5654297, 1.4541016, -0.32128906, 1.0712891, 1.5576172, 2.0351562, -1.3984375, -0.8955078, -3.2617188, 0.5854492, 1.6992188, -1.3457031, 1.6376953, 0.46948242, -0.23583984, -0.74121094, -0.6616211, 0.74121094, -3.0507812, 0.7441406, 0.2487793, -1.3457031, 0.050354004, -0.5913086, 1.6699219, 2.2949219, 0.9345703, -1.0039062, -1.2705078, 3.3066406, -2.7246094, 0.11230469, -1.9355469, -0.6401367, 0.6508789, -0.7729492, -0.8261719, -0.87841797, -0.11431885, -1.2841797, 0.4658203, -0.83691406, 0.3317871, 1.7939453, 0.21911621, -0.9580078, -2.9726562, 0.22021484, -0.48168945, -0.9560547, 0.81396484, -0.73779297, -0.8911133, 5.0390625, -0.66748047, 2.2226562, 0.73583984, -2.9980469, 0.16247559, 0.90234375, 0.57910156, -0.8881836, -1.7363281, -0.35888672, 0.23046875, -1.8808594, -0.82666016, 0.51660156, -0.036224365, 0.93115234, 0.5883789, -2.4511719, 3.0878906, -1.1982422, 2.4082031, -1.0097656, 2.9414062, -2.3066406, -1.5683594, 0.63378906, -0.8701172, 3.6933594, 0.52441406, 0.7319336, -1.2714844, -1.2841797, -1.4951172, -0.2142334, -0.58496094, -1.7382812, 1.1591797, -0.5151367, -0.51660156, -2.6855469, 0.7973633, -2.6894531, 0.671875, -0.7446289, 2.359375, 0.78759766, -2.0839844, -0.65625, -0.5205078, 1.6962891, 0.62353516, -1.9824219, 1.1044922, -1.4697266, 1.7207031, -1.0380859, -1.2832031, 0.5449219, 0.7207031, -0.95458984, 2.09375, 0.02368164, 0.27270508, -1.4267578, 0.059753418, -1.1005859, 4.2617188, 1.3867188, -1.2216797, -0.52783203, -1.0390625, -1.7060547, -0.8535156, 2.1640625, 3.7050781, 3.609375, -0.039764404, -0.028823853, 2.9257812, 0.85546875, 1.7753906, -1.6484375, 0.122680664, 2.0019531, 1.3769531, -2.9433594, -2.7324219, 0.8725586, 0.3713379, 0.32592773, 0.8598633, 1.7978516, -0.33764648, 0.95996094, 2.0429688, 1.6660156, 0.5239258, -0.7895508, 2.640625, -1.5185547, -1.3339844, 0.1862793, -0.45141602, 1.7578125, 1.2207031, -1.0761719, 1.9121094, 1.4814453, 2.2011719, 1.6914062, 0.76220703, -0.3779297, 1.3916016, 0.6269531, 3.703125, 0.15808105, 0.70654297, 0.09118652, -0.75, -0.26513672, 0.72998047, -0.08325195, -3.9121094, -0.41674805, 2.4257812, -0.0009813309, -0.62890625, 1.3828125, -0.11755371, -0.85839844, -2.6328125, 1.5556641, -2.0097656, -1.9541016, 2.2304688, -1.9355469, -1.2216797, -3.6445312, 1.5146484, 1.0839844, 1.9785156, -1.9121094, 1.7822266, 0.7446289, -1.6738281, 0.2763672, 2.2988281, -1.7822266, 1.7138672, 0.2454834, 0.17578125, -0.2322998, -2.9902344, 1.4667969, 1.2578125, 2.0859375, -1.7060547, -0.77685547, -0.3125, -0.46313477, -0.5449219, 0.5834961, -0.3852539, 0.8955078, 1.0380859, -1.5869141, 0.4086914, 0.4038086, -4.328125, 0.79296875, 1.8183594, 1.8232422, -0.53808594, 0.099365234, 2.6914062, 1.0898438, -0.44580078, 3.8242188, -1.8154297, -0.796875, -0.63183594, -2.8554688, 0.005706787, -0.64453125, -1.2880859, 1.1328125, -0.122802734, -1.1953125, 2.140625, 0.24035645, 1.5371094, 0.4104004, -2.8671875, -0.3642578, 0.33984375, -0.96728516, -0.9614258, 0.33935547, -3.0527344, -2.3300781, -1.1367188, -1.3671875, 0.8647461, -0.22277832, -0.87890625, 2.5019531, -4.1796875, 1.1835938, -0.9589844, 0.3059082, 0.31689453, -3.3046875, 0.59472656, 0.8852539, 1.2402344, 1.9599609, 0.16589355, 1.2646484, -1.0263672, 0.22460938, -1.5292969, -1.7958984, 2.0839844, 3.8535156, -0.52783203, -0.20837402, -0.003211975, 1.2382812, -0.4909668, -3.2382812, 0.29125977, 0.53515625, -0.4638672, -0.08331299, 2.0253906, 2.078125, 2.6640625, 0.51464844, -1.1425781, -1.7910156, 0.9042969, 0.08111572, -2.5410156, -2.2011719, -0.28955078, -0.3413086, -0.30737305, -1.0224609, -0.042755127, -0.030929565, 1.1679688, 0.94873047, 1.9746094, 1.8876953, 1.9541016, 1.6953125, 1.3740234, -1.5712891, 0.6591797, -1.9052734, 2.1972656, -0.85839844, 1.0302734, -0.5595703, 0.5024414, -2.4375, -0.265625, -2.7480469, -0.32080078, 2.1992188, -0.025268555, -0.31445312, -1.3125, 0.24865723, 1.3466797, -0.31323242, -1.4033203, 1.8339844, -1.2060547, -1.90625, 1.5478516, 1.1953125, -3.8105469, 0.82421875, 0.88427734, -0.93847656, -0.53466797, 0.66308594, -0.082458496, -1.4179688, 0.63427734, 1.0195312, 2.3398438, 2.2050781, 0.9897461, 0.16015625, 0.84765625, 0.5151367, 0.0513916, 0.83935547, -0.51464844, 0.0090789795, 4.4726562, 0.6147461, -2.7402344, -1.2255859, 1.2275391, -1.5556641, 1.4882812, -0.035125732, -2.8242188, 0.9951172, -0.07330322, -3.2832031, -0.8095703, 1.4238281, -1.5263672, 2.1542969, -1.8359375, -3.0097656, 2.4199219, -1.65625, -0.5600586, -0.45922852, -1.2080078, 2.5703125, 0.79345703, -1.0371094, -2.3300781, -0.5234375, 3.0136719, 0.65527344, -0.90771484, 0.078552246, -0.80029297, -0.7011719, -1.6367188, -1.0664062, -1.7646484, -2.2910156, 0.95458984, 2.1074219, -0.36987305, 1.4492188, 2.484375, -1.5537109, 2.2207031, -4.0859375, 1.4345703, -3.671875, 1.5244141, 1.9570312, -4.1328125, 0.025115967, -2.7597656, 2.0859375, 1.3876953, -0.6245117, 0.73535156, -2.3613281, -0.04751587, 1.9755859, -1.9013672, -3.5097656, -2.9277344, 0.8022461, 1.2548828, -2.7734375, 1.5654297, -0.7104492, 0.08441162, -0.78759766, -1.0214844, -0.0019454956, -1.2294922, -0.9897461, -0.75927734, -3.1894531, 0.8100586, -1.2763672, -2.8183594, -0.14807129, 2.2773438, 0.07293701, -2.4902344, 1.5898438, 0.1439209, -0.3876953, 0.3017578, 0.93310547, -0.3852539, 3.3203125, -0.7661133, 2.2675781, 0.43237305, 2.5820312, -2.2480469, -0.21240234, -0.98583984, -2.3046875, 0.47558594, -1.9160156, 0.0061836243, 1.0810547, -0.40478516, 1.9892578, -1.3632812, -0.85839844, 1.3671875, -3.0429688, 0.36523438, -0.36132812, 1.7910156, 1.8261719, 0.23059082, 1.5683594, 1.2099609, -0.2368164, -2.8320312, -1.2294922, -2.0664062, -2.1445312, -2.6054688, -0.16723633, 3.9472656, 2.0546875, -0.3803711, 1.7929688, -0.30273438, -1.6816406, -2.5097656, 0.47558594, -2.0566406, 3.3984375, 0.5439453, -1.890625, -1.6728516, -0.123168945, -0.07598877, 0.50146484, -0.8979492, -1.5322266, 1.1826172, -0.3449707, -1.3164062, 0.012802124, 1.0371094, 1.9394531, 1.8759766, 0.07159424, -0.74658203, 1.9716797, -0.79833984, -0.038513184, 1.8554688, 1.2070312, -0.24511719, 1.7294922, -1.5917969, -0.27734375, -1.9375, -1.7705078, -0.64160156, 0.008262634, -2.4765625, 1.5244141, 1.0195312, -0.45996094, -1.7402344, 0.2319336, -1.1708984, 1.2128906, -1.1416016, -0.9477539, -2.3066406, 0.71191406, 0.72265625, 2.6328125, 2.0019531, -1.0458984, -1.3261719, -0.80615234, -3.2519531, 2.6699219, 2.2089844, -0.37890625, -1.2324219, -0.10559082, -2.1289062, -0.68603516, 3.3183594, 0.8691406, 2.2558594, 0.45385742, 1.5478516, 0.6904297, 3.1445312, 2.3886719, 0.99609375, 2.1289062, 1.359375, -2.5605469, 2.7695312, 2.1757812, 1.9794922, 1.2919922, -1.4121094, 3.5957031, 0.03756714, 2.6933594, 0.9291992, 0.32714844, -0.30322266, -1.8447266, 1.3505859, -1.4033203, 0.35986328, -2.4082031, 1.5371094, -1.4345703, -1.2402344, -1.0976562, -1.9375, 1.2080078, 0.080200195, 0.36523438, 0.4794922, 1.1279297, -0.88916016, -4.5234375, -2.0566406, 0.23913574, -1.2763672, 0.5205078, 1.6875, 0.16381836, 0.061950684, 1.1044922, 0.7397461, 2.9179688, 2.1796875, 1.8144531, -1.8525391, -0.17150879, -0.61621094, 1.4121094, 0.5756836, -2.6621094, -1.8144531, -0.28051758, -4.2695312, -3.2246094, 0.18664551, 0.09991455, 3.9257812, 2.9902344, -3.578125, 0.66845703, 0.4177246, -0.06021118, -1.3564453, 1.6962891, 0.5854492, -1.0107422, -3.1601562, 0.28515625, 2.875, 1.8037109, 0.9160156, -0.62060547, -0.7133789, 3.1308594, 1.8798828, 1.7236328, 0.5703125, -1.5175781, -0.5, -0.22045898, 4.3554688, 0.1652832, 1.5917969, 1.6269531, -0.085754395, 2.1796875, 1.2011719, -0.56933594, -1.8974609, -1.9775391, 0.04638672, -0.4794922, 0.1665039, 0.03933716, -3.6171875, -0.23815918, -1.0654297, -2.4375, -0.6816406, 0.3293457, 2.4726562, 1.3457031, 1.4375, 0.8383789, -3.4140625, 0.20422363, -1.2509766, 1.3632812, -1.265625, 0.2512207, 1.3701172, 0.10839844, -1.4101562, 0.6088867, 3.234375, 0.12780762, -0.25805664, 1.4677734, 0.44580078, 1.8447266, -2.7734375, -1.2421875, 0.3317871, -3.2558594, 0.7392578, -0.71728516, -0.38134766, 0.14477539, -0.107788086, -1.7548828, 0.85839844, -1.6533203, -1.765625, 1.4970703, 0.62060547, 0.85498047, 3.2753906, -0.041290283, 0.22314453, -0.24902344, -2.0371094, 0.42749023, -2.6933594, 0.43945312, 0.5493164, -0.23828125, 0.5307617, -0.31298828, 0.018295288, 2.4042969, -2.7851562, 1.5498047, -1.9794922, -0.12097168, -0.6665039, 1.5976562, -0.1505127, -0.22009277, 1.3164062, 3.484375, 0.6015625, 1.6816406, 0.7973633, 3.1367188, 0.75341797, -1.3886719, 0.30810547, -0.3017578, 2.8125, -1.34375, -1.4589844, -1.1083984, -0.62890625, -0.61279297, -2.4082031, -3.6757812]}, "B08C9SNF7H": {"id": "B08C9SNF7H", "original": "Brand: Pinshion\nName: Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild\nDescription:

          Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

          Specification:

          Components: furnace body + bracket + carbon plate + grilled net + carbon net

          Baking tray size: 17 x 11.5 inch

          After installation of a single product size: 17 x 11.5 x 9.3 inch

          Colour: Black

          Material: iron + chrome grilled net

          Package included:

          1 x Folding BBQ Grill

          1 x Grilled net

          1 x Charcoal net

          Only the above package content, other products are not included.

          \nFeatures: \u3010Newest Design\u3011Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill.\n\u3010Easy to use & Fold\u3011There are bracelets on both sides of the grill for easy carrying the grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok.\n\u3010Outdoor BBQ Partner\u3011Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends.\n\u3010Safety & Healthy\u3011High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food).\n\u3010Suitable for Many Occasions\u3011Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.\n", "embedding": [-2.4960938, 2.1855469, 0.88134766, -0.6123047, 0.7080078, 0.22521973, 2.5136719, -1.3662109, -2.1308594, 1.9130859, -0.18469238, -1.2792969, 1.7773438, -4.3164062, 0.5541992, 1.0996094, 0.65478516, 1.1640625, 2.4511719, 0.51123047, 0.4658203, 1.5019531, 1.1748047, 0.19433594, 1.3837891, -1.1474609, 2.8886719, -0.8774414, 1.7871094, -1.2773438, 2.578125, 0.30566406, 0.09552002, 1.6425781, -2.8964844, 0.7988281, -1.8671875, 0.98828125, 0.26953125, 0.09686279, 0.3552246, -1.3095703, 3.5410156, -1.8183594, -3.359375, -0.72753906, -1.4414062, 0.3046875, 1.2558594, -3.3105469, 1.6503906, 0.7158203, 2.5410156, 1.4130859, -2.8046875, 0.019729614, -1.2822266, -3.3203125, 1.0029297, -1.1142578, 1.5400391, -0.18029785, 0.005996704, 2.890625, -0.6064453, -2.0078125, -0.671875, -0.68603516, 0.74121094, 0.37475586, 0.6430664, 0.80371094, -1.9765625, -0.055603027, 0.7661133, 0.22387695, -2.4882812, 1.7255859, 0.921875, 2.1269531, -1.84375, 2.4160156, 1.2363281, -1.4208984, -0.41259766, 0.8964844, -2.0761719, 0.7753906, 2.6074219, 1.0761719, -0.061523438, 2.7929688, -1.6611328, -4.4335938, 2.3242188, -2.2207031, 0.88916016, -0.22265625, -1.1386719, 2.7773438, -0.19165039, -0.88623047, -0.43432617, -1.0087891, -2.0859375, -0.9453125, 1.5429688, 0.27954102, 0.22717285, 1.9453125, -2.0722656, -0.009292603, 2.1308594, 0.68359375, 1.1220703, 0.32885742, -0.12158203, 2.2226562, 1.078125, 0.8198242, 4.7734375, 0.87158203, 0.6772461, -2.9726562, 0.44580078, -1.1826172, -1.4130859, 0.19165039, 3.1601562, 0.08898926, -0.27929688, -1.6074219, -0.43896484, 1.3056641, -3.0097656, -2.9570312, -1.0400391, -0.85839844, -3.4082031, 2.6621094, -0.9067383, 1.3847656, 3.4082031, -0.3737793, -2.8535156, -0.74560547, -0.8959961, 1.6884766, -0.3527832, -3.2167969, -0.6113281, -1.2646484, -0.8354492, -0.70947266, 1.3671875, -0.19604492, -0.83251953, -2.5039062, 3.5078125, -0.09185791, 1.7607422, -2.3925781, -1.0302734, 0.68847656, 1.640625, -1.7353516, 0.3564453, 2.1191406, -0.007637024, 2.8964844, 0.5175781, -0.99658203, 1.4931641, 0.35913086, 1.7832031, -1.3300781, -1.6689453, 1.9443359, 1.8251953, -1.2392578, 0.44262695, -1.3642578, 1.5097656, 1.484375, 0.2319336, -1.015625, -0.01360321, 0.45483398, -1.4648438, -1.8769531, 0.061920166, -0.12902832, -1.2597656, -0.37695312, -0.86816406, -0.87402344, -0.6430664, -1.1923828, -0.18127441, 1.6660156, -0.7685547, 0.10827637, -2.2539062, 0.35058594, -3.0957031, -1.8847656, -0.58984375, 1.9511719, 1.8798828, 1.7119141, -0.6040039, -1.0302734, 2.1972656, 1.3183594, -0.6040039, -1.3994141, 1.4404297, -1.6044922, 1.0039062, 1.6611328, -0.27905273, -1.1855469, -2.1191406, 4.0117188, 1.3037109, 2.0625, -0.42626953, -0.61376953, 1.4814453, -0.35351562, 3.3339844, 0.054351807, -0.17419434, 0.9301758, -1.0507812, 1.9833984, 0.42456055, -1.21875, -1.4091797, 1.0224609, 0.18469238, -3.3945312, -1.7197266, -1.2197266, -1.0224609, -2.1933594, -2.8066406, 1.765625, 1.7675781, -0.5029297, -0.3173828, 0.6791992, -1.1513672, 1.2070312, 0.50683594, 1.8359375, -0.32226562, -0.15307617, -3.2695312, -1.828125, 0.23156738, 1.2822266, 0.56591797, 0.71435547, 1.4150391, -1.3984375, 2.0078125, -0.09069824, -2.9746094, 0.4428711, 1.0576172, 1.296875, 0.91748047, -0.15612793, 1.9746094, -1.0087891, -0.4189453, -0.58984375, 2.4902344, -0.19067383, -0.14709473, 1.1914062, 2.2109375, -1.6601562, -3.2089844, -2.0390625, -0.1484375, -1.9169922, 1.2919922, 2.015625, 3.7480469, -0.5595703, -2.2246094, 2.421875, -2.7089844, 0.8222656, 0.8305664, -0.5019531, 0.94189453, 2.5273438, 1.0898438, 2.8125, 0.26879883, 0.9511719, -2.0996094, -1.4287109, 1.2558594, -2.6679688, -0.103027344, 0.42700195, -1.3417969, 0.4272461, -0.75927734, 0.21618652, -1.5361328, -2.0195312, -0.1928711, -2.2304688, -0.36621094, 3.4101562, -0.48339844, -0.036224365, -1.0410156, -2.6699219, -1.2539062, 2.4902344, -1.5908203, 0.26391602, 2.7617188, -1.2939453, 0.028442383, 0.28222656, 1.9990234, -2.2714844, -1.9560547, -2.7773438, -0.26220703, -1.4619141, -0.27807617, -1.2275391, -1.0849609, -0.3618164, -2.1230469, -1.0234375, -1.0957031, -3.4316406, 0.27001953, 0.49023438, -0.96484375, 1.5107422, -1.0039062, 0.4326172, 1.8388672, -4.9023438, 0.88427734, 0.32202148, 1.3603516, -0.047729492, -2.125, 0.41357422, -0.9355469, 1.1923828, -0.27441406, 0.9785156, 0.6972656, -1.6464844, -0.72558594, -1.2783203, 0.5126953, -0.4880371, 0.048065186, -0.7006836, 0.23876953, -2.8730469, -1.3955078, 0.90283203, -1.9042969, 4.8085938, -0.6508789, 2.0585938, -1.859375, -1.0742188, 0.30004883, -1.1523438, -3.890625, -1.6474609, -0.0129776, -0.017105103, -2.421875, -2.4316406, -0.33764648, 0.6298828, -1.7958984, -1.1455078, 1.4638672, -1.0458984, 1.4414062, -1.7998047, -0.9555664, 0.03717041, 2.4433594, 0.023971558, -0.61816406, -2.1328125, -0.69384766, -0.22302246, -0.56689453, -0.52197266, 1.3623047, -0.88378906, 0.47875977, 0.9145508, 1.6621094, -0.03302002, 1.1679688, -1.2167969, 2.9101562, -0.024215698, -1.5908203, 0.62890625, -0.36328125, 0.33496094, -4.0390625, 0.34643555, 2.2988281, 1.1650391, 1.7353516, -1.3925781, -0.15637207, 1.2392578, -0.0692749, -1.6728516, 0.89453125, 1.7158203, 2.9394531, -2.6679688, -0.23156738, 0.24206543, 2.2558594, -2.9765625, 1.625, 2.1992188, 1.1269531, 0.69091797, 1.2255859, 2.3320312, -1.1103516, -0.14501953, 1.4667969, 1.0410156, 2.4414062, -0.71972656, 0.2734375, -0.9580078, -0.53564453, 2.2597656, -0.1920166, 0.70214844, 2.3027344, 2.6542969, 1.25, -3.734375, 1.4404297, 0.50439453, 2.0214844, -0.3527832, 3.0878906, -1.1689453, -0.9057617, 0.4560547, -1.2978516, 0.43481445, -1.4443359, -0.5463867, 2.4824219, 0.76416016, -0.09197998, -0.71484375, 0.5444336, -1.6787109, -2.1875, 0.8017578, -2.3925781, -3.1816406, 0.79541016, -2.7011719, -2.640625, -0.47021484, 1.4072266, 0.25463867, -1.9814453, 0.8496094, 2.84375, 1.0859375, -2.0605469, -1.5214844, 1.2929688, -1.5068359, 2.7871094, -0.28955078, -0.38549805, 1.6435547, -0.25170898, 1.4443359, 0.60839844, -0.6347656, -2.2753906, -0.43164062, -1.6044922, 1.0449219, 1.3476562, 1.1708984, 0.16564941, -2.9023438, -0.095825195, -3.0039062, 0.92285156, 1.0742188, -1.8164062, -1.2226562, -0.33862305, 2.2246094, 0.18603516, -2.3847656, 3.4433594, -0.32983398, -1.3476562, 1.9824219, -1.2011719, -1.9931641, -1.921875, -3.2265625, 0.9946289, -0.16918945, -0.28222656, 1.7978516, 0.14465332, -0.85253906, 2.8808594, 0.046417236, -0.87597656, -0.90966797, -2.2695312, 0.10266113, -2.125, 0.9638672, 1.5351562, 0.5703125, -1.4873047, -1.6132812, -1.0693359, 0.77197266, 2.5253906, 1.8554688, 0.69433594, 0.8745117, -2.6484375, 1.265625, 0.043518066, -0.6772461, -0.1887207, -0.7783203, 0.123046875, -1.3056641, 0.91259766, 0.6616211, -0.23706055, 0.26831055, 1.3115234, 0.0463562, 0.8095703, -0.484375, 2.3769531, 2.8886719, -0.3947754, -2.4492188, -1.8330078, -1.3027344, -1.7714844, -0.8364258, -0.22485352, 0.06591797, -3.2753906, 1.7568359, -0.67285156, 2.4960938, 1.9677734, -0.37426758, -2.03125, -1.5263672, -0.8071289, -3.0664062, -1.8867188, -1.296875, 0.3959961, 0.37353516, 0.88427734, -1.4501953, 1.2929688, -0.101989746, -0.5678711, 0.6767578, 2.8203125, 2.4589844, 3.0742188, 3.7714844, 0.35205078, 0.14001465, 2.0058594, -2.1152344, -0.08782959, 1.4746094, -1.7099609, 0.9067383, 1.2490234, 1.6308594, -1.8828125, -2.0761719, 0.36279297, -1.1503906, -0.4350586, -1.1591797, 2.2480469, -1.1484375, -0.57421875, -0.5493164, -1.84375, 1.9726562, -1.1279297, 0.2064209, 0.5419922, 0.9458008, 0.12109375, -0.91552734, 0.8417969, 0.4597168, -0.36083984, -0.20446777, -1.2138672, -1.5566406, -0.49365234, -0.83740234, 3.0332031, -2.4160156, -1.9042969, 0.48999023, -1.1591797, -0.2467041, -2.3613281, -0.29174805, 3.2851562, 0.5341797, 1.7607422, -0.75634766, -1.0566406, 2.2636719, 1.3076172, -2.5976562, -1.0605469, -0.61376953, -0.70996094, 0.20129395, 0.43432617, -3.9824219, -0.030960083, 0.703125, -1.3525391, 2.6015625, -0.88623047, -1.2050781, 1.3417969, -1.9199219, 0.40356445, 0.6635742, -2.8007812, 1.0976562, -1.1328125, -1.0566406, -0.9472656, 0.51416016, 2.9082031, -0.5834961, -0.4663086, 2.2167969, -0.37768555, 0.37719727, -0.56689453, -1.6640625, -3.2050781, -1.6621094, 1.9833984, 3.3398438, 1.8212891, -1.2949219, 0.21691895, -1.5878906, 0.26513672, -3.3359375, 2.5820312, -2.8984375, 0.8461914, 1.9482422, -0.91015625, 0.9682617, -1.6513672, 2.1640625, 0.34545898, 1.7226562, 1.0439453, 0.11999512, -1.1982422, -0.7529297, -1.9980469, -5.015625, -1.7041016, -0.5810547, 0.18859863, 0.11505127, 1.1796875, -0.78027344, -0.8774414, -0.10333252, 1.1689453, 0.1083374, -0.82177734, -0.048461914, -0.5571289, -0.9394531, -0.73828125, -1.640625, 1.7255859, 1.5175781, 1.3330078, -0.80078125, -2.5371094, -0.059906006, 1.1230469, -3.2539062, 0.022003174, -0.52734375, -0.71191406, 0.90234375, 0.066467285, 1.4980469, -1.0830078, 1.6289062, -0.8647461, 0.043945312, 1.0712891, -0.43896484, 1.3271484, -1.2265625, -1.7197266, 1.5253906, -2.6308594, 1.6738281, -0.61376953, -0.5078125, -0.28955078, 1.7451172, -0.3786621, 0.0960083, 0.7944336, 0.6723633, 2.0117188, 1.3583984, 1.1728516, -0.52246094, -2.4003906, -3.9941406, -0.15808105, -1.0361328, -1.5947266, -1.8779297, 2.140625, 1.8564453, 0.11480713, 1.5458984, 1.1943359, 0.54052734, -1.7851562, 1.7626953, -0.2331543, 2.0703125, 3.4238281, -1.4726562, -2.0214844, -1.9941406, -0.35717773, -0.62841797, -0.3569336, -1.3417969, 0.46557617, -2.140625, -0.6064453, -0.7705078, 1.734375, 2.4238281, 1.1162109, -0.47851562, 0.9658203, 1.3193359, -1.0771484, 0.7910156, 0.47314453, 3.4824219, -0.56884766, 2.7441406, -0.9506836, -1.5058594, 1.2910156, -1.7304688, 1.3173828, -1.3183594, -2.0488281, 1.2460938, -0.5776367, -0.31103516, -2.4082031, -0.7836914, -2.8046875, 2.6621094, -0.19824219, -0.20397949, 1.0957031, 3.3027344, -0.48461914, 2.6210938, 1.1494141, 0.51171875, 1.3916016, 1.9033203, -1.9042969, 0.5385742, 1.3037109, -1.3457031, 1.0556641, 0.48510742, 0.22351074, 1.0195312, 4.046875, 2.6308594, 2.6777344, 0.5385742, 2.71875, 1.5546875, 2.1894531, 4.1601562, -0.5786133, 1.3447266, 3.6894531, -3.0644531, 1.0224609, 2.8710938, 1.9755859, -1.5146484, -1.2724609, 0.79003906, 0.4609375, 0.033721924, -1.0478516, 0.47729492, -0.28881836, -3.2460938, 3.4785156, -0.9560547, -0.8261719, -1.8837891, 1.6220703, -2.0429688, -0.62158203, -2.15625, -1.8984375, 0.77197266, -1.1669922, -0.2524414, 0.28588867, 1.4404297, -0.4074707, -2.1269531, 0.0140686035, 1.1445312, 0.0053100586, -0.5419922, 1.5439453, 2.0039062, 1.6914062, 0.6616211, 1.7597656, 2.7480469, 0.30566406, 3.6074219, 0.17407227, 1.4511719, 0.6879883, 2.0527344, 0.024353027, -3.3691406, -2.1738281, 0.39208984, -0.87158203, -0.37963867, 0.7290039, -0.18884277, 1.9111328, 1.6230469, -0.88427734, 0.9404297, 1.5449219, 2.4804688, 0.8535156, 1.4111328, -1.3056641, -2.6875, -2.2890625, -2.0605469, 1.9414062, 2.7363281, 1.3320312, -0.38867188, 2.6777344, 2.140625, 1.7041016, 0.5605469, 0.17370605, -1.171875, 1.1445312, -2.71875, 2.3339844, -1.21875, 0.5, -1.0029297, 0.97265625, 1.6298828, 1.25, 0.58935547, -0.6611328, -0.35009766, -0.6850586, -0.6220703, 0.59716797, -0.60253906, -1.7939453, 0.032989502, 1.1298828, -1.4365234, -1.8769531, 0.8120117, 4.0039062, 1.7392578, 1.734375, 0.3059082, -1.3027344, 1.6816406, 0.18566895, -0.19396973, -2.2988281, 0.1694336, 0.19091797, 0.15844727, -0.25, -0.39794922, -0.36621094, 1.0683594, 0.59716797, 1.9570312, -1.1347656, 2.0488281, -0.12976074, 0.9511719, -1.8300781, -1.3125, 0.890625, 1.3740234, -0.7026367, 3.8847656, 0.16638184, -1.7958984, 0.8095703, -0.17907715, 1.7001953, -1.3378906, -1.8886719, -1.6640625, 4.1796875, 1.3183594, -0.19726562, -2.0390625, -3.7519531, 0.65234375, -0.609375, 1.7431641, 2.4082031, -3.0507812, 0.03741455, -2.2558594, 2.4648438, -0.1295166, -1.296875, -0.1126709, 0.21911621, 0.8623047, -0.7661133, 0.9995117, 1.8554688, -0.7832031, 1.6455078, 3.9570312, 1.8496094, 2.0527344, 2.2734375, -0.51464844, 1.2460938, -3.5097656, -0.28857422, -1.7080078, 2.0332031, 0.09094238, 0.9711914, 0.53759766, -0.64404297, 0.28881836, -3.2128906, -1.1503906]}, "B07477NMF4": {"id": "B07477NMF4", "original": "Brand: ThermoPro\nName: ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver\nDescription: \nFeatures: BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs\nDual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually\nLarge, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments\nHighly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within \u00b11.8\u00b0f (\u00b11\u00b0c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716\u00b0f and a wide temperature of 14\u02daf to 572\u02daf (-10\u02dac to 300\u02dac), cook anything in any grill setup\nEasy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill\n", "embedding": [-4.53125, 1.6914062, 4.5742188, 1.0371094, -0.6767578, 0.5966797, -0.84765625, 0.8286133, 0.32641602, 0.77441406, 0.55908203, -0.77685547, -1.0957031, -1.4248047, 1.1455078, 0.90478516, 1.1533203, 0.60302734, 1.6757812, 3.4589844, 2.2167969, 2.4375, -0.13305664, -0.46411133, 2.2050781, 0.37841797, 2.2460938, -2.6230469, -0.7553711, -1.3759766, 3.0585938, 3.7011719, 0.47460938, 0.73535156, -1.9921875, -0.31811523, -1.5263672, 0.8515625, 0.4387207, -0.20080566, -0.35595703, 0.76660156, 0.5522461, 2.8886719, -2.9160156, -1.6982422, -1.0800781, 1.828125, -2.765625, 0.2376709, 0.23461914, 2.6484375, -1.5869141, -0.030303955, 0.48999023, 0.8535156, 0.34960938, -2.5566406, 0.7763672, 0.9423828, -0.44995117, -0.050201416, -2.4375, 0.6821289, 0.90625, -0.3161621, 0.39086914, -2.6796875, 0.6245117, 0.35620117, 0.6591797, -0.23266602, 0.5229492, 1.2900391, 1.4892578, -1.7509766, 0.20593262, 0.5185547, 1.7900391, 1.1210938, -0.67089844, 2.8964844, -0.12890625, -1.6308594, 0.5229492, -2.0234375, 0.8105469, 0.42138672, 2.9472656, -0.4020996, -0.56396484, 2.6542969, -1.9814453, -3.421875, 1.8232422, -1.6005859, -0.3527832, -0.7817383, -1.46875, 2.5390625, -1.4384766, -0.6142578, -0.20776367, 1.2998047, -2.5214844, -2.5800781, 0.6508789, 1.3544922, -3.6855469, -1.8769531, -1.609375, 1.4785156, 0.33764648, 0.5839844, -0.90625, 0.38500977, -0.031677246, 1.0976562, 0.17016602, 1.8681641, 1.6904297, -1.8808594, 0.5727539, -1.3085938, -0.36621094, 0.90722656, 2.1503906, 0.23083496, 1.3808594, 0.87353516, -1.3525391, -0.66796875, 0.81933594, -0.9091797, 2.2558594, -2.4296875, -2.0390625, -1.609375, -2.5, -1.4326172, -1.7919922, 1.1533203, -0.77441406, 1.6679688, -1.1367188, -1.8505859, 0.21398926, 0.8286133, 1.6816406, -1.4111328, 1.6777344, -2.5566406, 0.30517578, -0.32226562, 1.8730469, 1.3652344, -0.7729492, -0.13562012, 2.6582031, 1.0332031, 0.08319092, -0.8496094, -1.3603516, -0.77441406, 0.9760742, -0.20166016, -2.8105469, 1.6542969, 1.5302734, 2.5703125, 1.2685547, -1.6582031, 0.6611328, -0.64941406, 0.71240234, -3.1347656, 2.328125, 3.6152344, 1.7607422, 2.046875, -1.3916016, -1.3339844, 0.3215332, 1.0683594, -0.20202637, -2.3671875, -1.4736328, 0.9267578, 2.8261719, -2.6464844, 2.2949219, 2.84375, 1.4892578, 0.54003906, -0.14147949, -0.33276367, -1.2900391, -3.5117188, 1.7529297, 0.10406494, -0.5136719, -0.026016235, -1.890625, -3.0664062, -0.77685547, -1.7880859, 0.21899414, -0.5751953, 1.6396484, 1.0654297, 0.37060547, -1.8867188, 0.6044922, -1.9101562, 0.10192871, -2.9648438, 0.8774414, 0.5629883, -0.5732422, 2.2539062, -0.41259766, -0.37231445, 0.4230957, 4.5898438, -2.1152344, 2.2714844, -0.32617188, 0.7651367, -1.6386719, -0.2854004, 2.9550781, -0.27563477, 1.1289062, -1.9248047, -0.7290039, 1.4394531, 0.58496094, -1.6103516, -1.1474609, 0.49047852, -0.25585938, -2.0703125, 0.30541992, -0.88378906, -0.65283203, -0.61328125, -2.9121094, 3.640625, 1.6289062, -0.6484375, 0.36767578, 0.67089844, 0.023132324, -0.67529297, 0.51660156, -0.76708984, -0.17871094, 0.97558594, -2.5175781, -1.9667969, 1.5556641, -0.24121094, -2.234375, 2.4355469, 2.0488281, 0.16577148, 4.1914062, 1.9238281, -0.60302734, -1.0087891, 1.2910156, -0.41186523, -1.2587891, 0.4494629, 1.8632812, 1.8544922, 1.1347656, 1.2060547, 1.7099609, -1.6845703, 0.65234375, 2.1328125, -0.43041992, -0.88720703, 0.5419922, 0.15942383, -2.0273438, -1.6572266, -0.10626221, -0.085510254, 3.4882812, 1.3447266, -3.0078125, 3.1347656, -2.671875, 0.46166992, -0.8574219, -1.6738281, 1.5371094, -2.8398438, 2.8945312, 0.20727539, -1.7597656, -0.9160156, -0.45581055, 0.5263672, 1.9707031, -0.6640625, 1.5683594, 1.0185547, 0.98828125, -1.5527344, -3.1074219, -0.4152832, -0.62060547, -2.7207031, 0.27929688, -2.5097656, 1.1787109, -1.5332031, 1.5087891, 2.7285156, 0.9272461, -1.2519531, 0.99316406, 1.7119141, -0.2770996, 0.9326172, 1.3359375, 0.26782227, 0.17016602, -1.1103516, 0.42114258, 0.25268555, -2.6445312, 0.32592773, -1.3466797, -1.2802734, -0.25073242, 0.25561523, -1.4140625, 2.3320312, -1.6572266, -0.026794434, -0.1385498, -1.8798828, -0.34472656, -1.3330078, -0.22216797, -1.4384766, 0.39453125, -1.2773438, -0.9868164, -2.3964844, 1.5527344, 0.4519043, -1.1953125, -0.11022949, -3.0585938, 1.2558594, -2.4121094, 0.20727539, 1.1210938, 0.93408203, 0.15515137, -1.3613281, 1.7001953, -1.7832031, -0.0362854, -3.5957031, 0.70703125, -2.0410156, -0.065979004, -2.0234375, 0.10284424, 0.51953125, 0.6489258, 1.1943359, -1.3955078, 3.0449219, -1.9853516, 1.8378906, 2.1699219, 2.1933594, -1.3183594, -2.0761719, -0.2614746, -1.8691406, -1.6640625, -3.5566406, -0.003709793, 0.029006958, 1.6767578, -0.23449707, 0.13696289, -0.9555664, 0.96972656, -2.0136719, -2.8652344, -1.0332031, 2.1074219, -1.7978516, -1.8671875, -1.984375, -0.38256836, -1.8466797, -2.4394531, 1.3291016, 1.9394531, 0.7949219, 3.5253906, 1.2841797, 0.78515625, 0.13562012, -0.8725586, -3.6855469, 1.5537109, 0.8305664, -2.46875, -0.79345703, -0.08721924, -0.9946289, 0.50634766, -0.43139648, 3.5332031, 0.9716797, 3.9863281, -1.1796875, 0.015960693, 1.7021484, 1.6953125, 0.4152832, -0.51464844, 1.4316406, 0.60595703, -4.2421875, -2.4726562, 1.2861328, 1.109375, 0.08001709, -2.9785156, 0.6953125, 1.1396484, 4.7148438, 0.77197266, -1.4248047, -0.48706055, -2.4863281, 2.0625, -0.7084961, -2.5175781, -1.7714844, -0.26416016, 0.99658203, 0.75439453, 0.83496094, 3.9394531, -0.13806152, 0.7910156, 1.4287109, 0.72558594, -1.7109375, -1.6513672, 1.2587891, 1.3896484, 0.9477539, 0.5541992, 0.3630371, -0.97998047, 0.6645508, 0.093688965, 0.87646484, -1.5673828, -0.5307617, 0.8574219, -0.4104004, 0.9272461, 0.82714844, -0.124572754, -0.34033203, -2, -0.35229492, 1.5966797, -1.0546875, 1.7246094, -0.52197266, -1.1660156, -1.3144531, 1.2587891, -0.9248047, 0.3779297, -0.5805664, 2.375, -1.3300781, -1.2119141, 0.56396484, 0.99853516, -0.46435547, -1.4462891, -0.31420898, -0.13757324, -1.3164062, -2.75, -0.2878418, 1.3417969, -2.6777344, -2.5859375, -0.75146484, 2.2988281, 1.4990234, 0.08282471, -1.0390625, 0.58691406, 0.49658203, -1.9697266, -4.0585938, 0.63378906, 0.8779297, -0.9453125, 0.20678711, 1.8447266, 1.4501953, 0.4555664, -0.8491211, 1.3525391, 0.5654297, -3.7207031, 0.03591919, -2.6816406, -0.7163086, -1.8017578, -4.3203125, 1.3154297, -0.2902832, 2.1738281, 1.6464844, 1.8642578, 1.1308594, 2.9042969, 0.48120117, -2.7285156, -1.6816406, -0.75, -0.35351562, -0.109069824, -1.1767578, 5.2460938, 0.91552734, -0.3947754, -0.6899414, -1.2675781, 0.23535156, 2.6875, 1.9423828, 1.4052734, 0.41796875, -0.107543945, -0.082092285, -0.22802734, 0.08178711, -0.22619629, 0.026672363, -0.80126953, -1.6845703, 1.8994141, -2.9101562, 0.30810547, -1.5839844, 3.1445312, -0.42260742, 0.5703125, -1.0556641, 2.0546875, 1.3476562, -0.31884766, -1.1113281, -0.9394531, -1.6640625, 1.5332031, -0.23535156, -0.82470703, -0.077941895, -3.2714844, -2.1289062, 0.3244629, -0.38452148, 0.57714844, 1.3056641, -2.515625, 0.51904297, -0.038391113, -1.3447266, -0.80615234, -0.24145508, -3.1933594, 0.2854004, -0.23217773, 0.6513672, 0.7519531, -2.1289062, -1.125, -3.7070312, 3.5214844, 3.2265625, 1.0664062, 3.1367188, -0.30151367, -0.7128906, 0.18469238, -0.8847656, -0.0005979538, -0.84033203, 1.0566406, 0.35058594, 0.10058594, 1.4658203, -1.265625, -1.0019531, 0.9160156, 1.0537109, 0.8461914, -0.4489746, 0.13122559, -1.3769531, 0.96435547, 4.5078125, 0.85498047, 3.2265625, -1.4365234, 2.140625, -0.53222656, -1.4990234, -0.3786621, 1.0771484, 0.4567871, 0.31835938, 0.20727539, 0.34301758, 2.1777344, -1.7216797, -0.5410156, 0.6503906, -0.54296875, 1.125, 2.0292969, 1.4111328, 1.2304688, -2.1953125, -2.0800781, 2.7578125, 2.1855469, -1.5664062, 4.6367188, -0.17248535, -2.2050781, 0.65478516, 2.3496094, -2.1308594, 1.4658203, -0.7402344, -1.4814453, 0.30419922, 0.08178711, -2.4902344, 0.22521973, 2.4980469, -0.68359375, 1.8710938, -1.2949219, -1.1757812, 2.8671875, -3.1269531, -0.21386719, -0.18286133, -0.62353516, 1.2666016, -1.015625, -2.5078125, -1.5712891, 2.7382812, 2.2011719, -1.3847656, -1.0615234, 0.20678711, -1.9746094, -2.1523438, -0.10205078, -1.8691406, -2.7695312, -0.8959961, 0.8569336, -0.59716797, -1.3837891, 0.47729492, 1.5869141, -1.2011719, -0.3310547, -1.1611328, 4, -1.6044922, 0.41333008, -0.15234375, 0.45141602, -1.4960938, 0.9760742, 0.047912598, -2.046875, 1.2792969, 2.1445312, -0.9111328, -1.4052734, 0.55566406, -2.6523438, -3.4296875, -0.82177734, 1.7148438, 1.1962891, -0.51660156, 0.028060913, 0.04714966, -0.61376953, -1.2636719, 0.93359375, -0.94140625, 0.6508789, -1.3203125, -0.26904297, -0.5751953, -0.47021484, -0.42089844, 1.5986328, 0.44262695, 1.8056641, -1.6162109, -3.3847656, -1.4287109, -0.4855957, -2.7167969, -2.7734375, 1.7109375, 2.3261719, -2.3398438, 0.7651367, -0.39208984, -1.9472656, 2.7050781, -0.5361328, 0.94873047, 0.44848633, 0.35913086, 1.2919922, -2.3476562, 0.9243164, 1.2734375, -0.81933594, -0.13879395, 1.9804688, -3.1289062, 0.9638672, 0.69140625, -1.9179688, -1.8496094, -1.6103516, -0.36108398, 0.02418518, -0.01247406, -0.10803223, 1.4052734, -3.1738281, -5.3671875, -1.0234375, -1.5742188, -0.042541504, -2.8046875, 0.42260742, 2.5839844, -0.20117188, 1.9912109, 0.5292969, 1.0380859, -3.8359375, 0.67089844, 1.3945312, 1.2490234, 1.3125, -0.83496094, 0.18103027, -2.1582031, -0.16235352, 1.4013672, -1.1025391, -1.7207031, 0.59033203, -2.4296875, -0.7758789, 0.41601562, 2.8339844, -0.15625, -0.9975586, -0.08276367, 0.55126953, 2.984375, -1.8095703, -0.28295898, 0.421875, 3.1035156, -0.9194336, 4.25, 0.14758301, -2.6953125, 0.7006836, -1.5869141, -0.23449707, -0.09118652, -0.124572754, 2.2050781, -1.4511719, -0.65771484, 1.3320312, -3.4199219, -0.32348633, 1.8535156, 3.5566406, -0.34692383, -0.87939453, 4.953125, 1.4853516, 0.029907227, 3.1816406, -1.4814453, 0.99316406, -0.9550781, -1.1796875, -1.1191406, 1.8193359, -1.7773438, 0.26708984, 1.5458984, 0.8364258, -2.2910156, 2.1582031, 0.16430664, 1.9931641, 1.4257812, 1.8457031, 2.6640625, 1.8339844, 2.3085938, 1.0820312, 2.6171875, 0.7236328, -1.3525391, -0.4104004, 2.3164062, 0.2064209, 0.4333496, -1.3847656, 1.0068359, -0.8886719, 0.3161621, 0.46411133, 1.6875, -0.8041992, 1.1152344, 1.6582031, 0.30566406, 0.49658203, -3.8886719, -0.5004883, -0.43603516, 1.3525391, -2.5625, 3.6386719, 1.4667969, -0.7402344, 0.5283203, -0.6171875, 0.19726562, 2.140625, -2.9003906, 0.44628906, 1.6494141, -1.0380859, -1.4257812, -0.002462387, 0.99658203, 1.8867188, 2.2558594, -1.03125, -0.671875, 0.86621094, 1.1416016, -0.26367188, -1.2568359, -0.21911621, 2.7675781, -1.90625, -0.81933594, 0.51904297, -0.5, -3.4414062, 0.4333496, 2.453125, -0.49902344, 2.7734375, -2.4628906, -3.4277344, 2.9765625, 0.049072266, 0.5625, -0.40673828, -0.20080566, 0.4465332, 0.34521484, 1.9052734, 1.2919922, -0.4033203, 2.015625, -2.8925781, -2.0410156, -1.4589844, -0.27197266, 1.0742188, 2.3066406, 1.0380859, -0.22290039, -0.18603516, 0.5917969, 2.9785156, -0.9082031, -1.3867188, -3.0273438, 1.3417969, -0.5839844, 0.86816406, 0.3684082, -2.9863281, -0.80126953, -0.8540039, -2.0390625, -0.6147461, -0.46704102, 1.28125, 0.86621094, -0.63916016, 0.9682617, -0.22692871, 2.1679688, 2.53125, 0.8276367, 1.1796875, 1.0009766, -1.7861328, 2.53125, 1.4785156, -2.0019531, 1.8466797, 0.2512207, 1.1005859, -0.28271484, -0.11798096, -0.7607422, 0.2998047, -0.49121094, -0.30981445, 0.88916016, 1.9111328, 0.8339844, 1.0048828, 0.44189453, -0.4658203, 0.7895508, -1.9404297, -3.1953125, 1.0576172, 1.6591797, -0.9638672, 0.099121094, -0.9321289, -0.8588867, -1.1923828, 0.62646484, 0.55078125, 1.1230469, 2.7832031, 1.6699219, 0.4296875, -0.20532227, -2.0917969, -1.4707031, -0.85595703, -1.2001953, -0.46533203, 0.6958008, 0.7128906, -1.3876953, 1.3535156, 0.22131348, -1.4863281, -0.9667969, -3.0136719, 0.7363281, -1.8828125, 0.73828125, -0.77197266, 0.60791016, 0.8286133, 1.2099609, 0.8276367, 0.94140625, 3.4335938, 2.9257812, 1.6132812, -2.6992188, -1.9658203, 1.9423828, 1.6308594, 0.43017578, 2.3320312, 0.2614746, -0.36157227, -0.4020996, -1.0341797, -1.6386719]}, "B07QPQZ1B8": {"id": "B07QPQZ1B8", "original": "Brand: grilljoy\nName: grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men\nDescription:
          Why is this the best BBQ Grilling Tools Set for you?
          Quality, Durability, Design, Utility. You'll get 6 complete BBQ Accessories Kit.
          Why choose us?
          Grill better, faster, and with less effort
          Design
          Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you'll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
          Premium Quality
          Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
          Gift Ideas
          It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
          Note:
          1.Please keep sharp tools away from children to avoid hurting.
          2.We recommend cleaning all tools before and after use and dry them for better maintenance.
          3.Please store the tools set in a cool and dry place for save.\nFeatures: \u3010Complete Barbecue Accessories\u3011BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe.\n\u3010Premium Quality\u3011Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don't worry about rusting or cracking. You can't find a better barbecue tool set than this.\n\u3010Elegant Design\u3011As soon you remove these deluxe tools from the portable bag, you'll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm.\n\u3010Convenient Storage\u3011Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\n\u3010Satisfactory After-sales Service\u3011 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.\n", "embedding": [-1.0244141, 2.9433594, 1.7666016, -0.45361328, 0.45263672, 1.0615234, 1.0185547, -0.7553711, 1.4257812, -0.796875, -0.51660156, -0.5708008, 0.35766602, -2.640625, -2.8457031, 1.1425781, -0.7792969, 1.0166016, 2.5527344, 2.1679688, 0.88720703, 0.49560547, 1.1865234, 1.5771484, 1.59375, 0.26367188, 3.7597656, -3.0273438, 2.734375, 1.109375, 1.5800781, 0.56103516, 0.7988281, 1.8476562, -3.6113281, -0.41601562, 0.78808594, 2.2695312, -0.6586914, 0.028152466, -0.5917969, -0.76123047, 1.8398438, 2.2832031, -3.6855469, 0.6821289, -1.0205078, 1.8574219, -1.4189453, -3.9980469, 0.6669922, 2.0976562, 0.00054359436, 0.7138672, -2.8261719, 2.2929688, -1.53125, -4.59375, 1.9140625, -0.97509766, 2.0097656, -0.7626953, -0.18115234, -1.3740234, 1.4111328, -1.0527344, 1.5859375, -0.8730469, -0.055511475, -1.3857422, -0.29077148, 0.26831055, -0.6586914, -0.94873047, 0.08721924, 0.09069824, -0.6459961, 2.3359375, 0.38012695, 1.7617188, -1.7724609, 3.4570312, 0.17834473, -3.6367188, 0.47094727, -1.21875, -1.0576172, 0.31982422, 1.1279297, -0.86572266, -1.6484375, 3, -2.2460938, -4.6171875, 2.4101562, -1.3183594, 0.59033203, -2.3320312, 1.2480469, 1.7421875, -2.1699219, -0.75097656, 0.49267578, 0.4650879, -0.0068855286, -0.43530273, 0.98876953, 1.4208984, -2.8007812, -1.5029297, -2.2363281, 0.9770508, -0.4099121, 0.87597656, -1.6201172, 0.97558594, -1.2587891, 0.6010742, 0.7709961, 1.9921875, 2.421875, 1.0830078, -0.65527344, -1.9726562, -0.41210938, 1.7871094, -0.79589844, 4.8945312, 4.1679688, 0.24780273, -0.7807617, -0.8989258, 0.39526367, -1.7724609, 0.41992188, -2.921875, -1.5175781, -1.0546875, -1.3496094, 3.3886719, -0.11218262, 0.27685547, 2.7460938, -0.94677734, -1.9501953, 0.9633789, -0.28173828, 0.27905273, 0.2788086, -1.921875, 0.8901367, -1.3037109, 0.25024414, -1.1992188, 3.6113281, -0.10491943, 2.1464844, 0.050689697, 1.3837891, 1.0507812, 0.37548828, -3.2441406, 0.2939453, 1.9794922, 0.2902832, -3.0703125, -0.9716797, 3.78125, -0.03869629, 1.8447266, 0.47729492, -2.0625, 0.22094727, -1.0917969, -0.35986328, -0.8520508, 0.62841797, 2.6601562, 0.40429688, 0.0947876, 1.6328125, -4.171875, 1.1582031, 2.640625, 0.44726562, -1.9433594, 2.8261719, 0.43530273, 1.0722656, -0.12145996, 1.9902344, 1.1904297, 0.359375, 1.4609375, 0.66308594, -2.921875, 0.7246094, -2, -0.99658203, 1.0908203, -0.8833008, -3.5078125, 0.5961914, -0.57714844, -1.2568359, -1.9423828, -0.53515625, -0.7011719, 2.1347656, 1.5214844, 0.7260742, -1.4042969, 1.8935547, 0.99658203, 1.0400391, -2.2832031, 0.56347656, -1.8808594, 2.3203125, 1.2958984, -2.09375, -0.4934082, -1.6738281, 2.7851562, 1.7802734, 0.5800781, -1.3925781, 1.6474609, -1.0791016, -0.052124023, 0.16845703, 0.6738281, 0.46142578, 1.1796875, -1.4003906, 0.7783203, 0.48046875, -3.1035156, -1.890625, -0.64160156, 1.0898438, -1.1855469, -0.35375977, -1.5410156, -1.2207031, -1.6181641, 0.47094727, 1.7802734, -0.8330078, -3.0429688, -0.7241211, 2.2636719, 0.7109375, 0.56689453, 0.11291504, 0.31152344, -1.34375, 1.0371094, -3.7617188, 0.78564453, 1.6865234, 0.050720215, 1.1738281, 0.5317383, 1.1328125, -0.89453125, 2.84375, -2.1542969, -1.1386719, -0.15332031, 0.27905273, 0.578125, -0.63378906, -0.8876953, 3.2675781, 1.5244141, -1.5439453, 0.03869629, 0.9873047, -1.9921875, -1.0966797, 0.032348633, 2, -1.7919922, -1.0087891, -1.9355469, -2.09375, -1.9970703, 1.5595703, 1.7226562, 5.9023438, 1.0322266, -1.5878906, 3.7207031, -1.5771484, 1.6191406, 1.7851562, 0.074523926, -0.80566406, 0.28320312, -0.7607422, 1.3623047, 0.5546875, 0.5991211, -1.1396484, -0.375, 1.1152344, -3.0703125, -0.31811523, 0.82128906, -3.71875, 0.122802734, 1.3652344, 0.3869629, -1.6630859, -0.025604248, -2.9902344, -0.79003906, 0.26098633, -0.33544922, 0.26123047, 2.4082031, -0.25341797, -2.5390625, -0.6123047, 1.3388672, -1.9697266, 0.7758789, 0.58496094, 0.33666992, 1.4228516, 0.38549805, 0.09082031, -1.8046875, -1.8203125, -1.2353516, -1.4667969, -0.99121094, 1.2832031, -0.2998047, -0.5786133, -0.9692383, -3.0214844, -0.27807617, -1.7705078, -2.6269531, -3.1074219, 0.32592773, 0.33496094, -0.38134766, -2.3320312, 0.95214844, 1.2158203, -2.5175781, 0.9375, 0.025543213, 0.8496094, 0.3774414, -2.2402344, 1.4765625, -0.94677734, -0.7675781, 0.890625, 2.0585938, -0.6098633, -0.53222656, 1.8583984, -3.0019531, 0.60058594, -1.0410156, -0.4814453, 1.046875, 1.2978516, -1.7128906, -0.5595703, -1.3857422, 0.45581055, 2.4101562, -2.21875, 1.4667969, 0.8730469, -0.58691406, 0.14672852, 0.37304688, -0.77978516, -2.7109375, 2.4609375, -1.1845703, 0.84228516, -2.3261719, 1.5166016, -2.2363281, -0.95751953, 0.26757812, 3.4589844, -1.7109375, 1.2109375, -1.4892578, -2.234375, 0.20239258, 1.1103516, 1.2958984, -0.57910156, -0.76464844, -1.4394531, -1.2851562, -0.6855469, -3.0097656, 2.5820312, -2.4648438, -2.015625, 1.5625, 0.69091797, 0.14697266, 1.7695312, -1.5800781, 1.171875, 0.2734375, -2.171875, -2.3886719, 0.17089844, -1.53125, -2.4472656, -0.2919922, 3.2324219, -0.9140625, 1.8789062, -0.32421875, 0.8378906, 0.07110596, 1.5341797, -0.7128906, -0.36889648, 1.2451172, 1.1953125, -0.59472656, -2.0253906, 1.2421875, 0.10809326, -1.1152344, 2.7578125, 0.93896484, 1.4980469, 1.3554688, 1.4228516, 0.71484375, 1.0205078, -1.4726562, 1.6953125, 1.4072266, -0.6870117, -3.4453125, 1.6572266, -0.57910156, -2.8886719, 0.4633789, 1.3203125, 0.26171875, 2.7792969, 1.6083984, -0.64453125, -1.9550781, 1.6386719, 1.7041016, 2.2636719, 0.3815918, 1.046875, -1.5224609, -1.7978516, 0.9213867, -1.2255859, 2.1210938, -3.3320312, -0.7138672, 2.0117188, -0.024230957, 0.5078125, -0.7885742, -0.5629883, -1.8613281, -2.0214844, 0.79248047, -2.0332031, -1.4765625, -0.8833008, -0.64697266, 0.48364258, -0.059051514, 2.2617188, -0.4831543, -0.6152344, -1.84375, 2.4667969, -1.3222656, -0.4597168, -0.84814453, 1.3662109, -1.6914062, 1.2744141, -0.9941406, -1.9414062, 2.8125, -4.3632812, 0.86572266, 0.08581543, -1.4199219, -0.36572266, 0.8442383, -1.09375, 0.97265625, 0.84814453, 0.42919922, 0.7578125, -1.0175781, 0.011024475, -0.86621094, 1.2978516, 0.19934082, -1.8212891, -0.98046875, 0.4099121, 1.5654297, 0.7714844, -1.3398438, 3.2109375, 1.2958984, -3.1621094, 0.36157227, -3.5039062, -1.296875, -1.203125, -3.3574219, 0.67285156, 1.7744141, 1.9960938, 1.09375, 1.1552734, 0.7993164, 4.7109375, 0.4765625, -1.9990234, 0.5258789, 0.0064849854, 0.31396484, 0.13134766, 0.038116455, 1.4179688, 0.17004395, -0.0019874573, -2.7832031, 0.8378906, -1.9101562, 1.9394531, -0.030960083, -0.99121094, 0.13012695, -1.5234375, 0.6230469, -1.1376953, 0.8286133, -0.076416016, -2.7929688, 0.03540039, -0.032562256, 1.9316406, 0.71240234, 1.3642578, -3.6054688, 0.12597656, 0.2619629, -2.8574219, -1.6621094, 1.2148438, 4.1875, -0.6899414, -0.5751953, -0.25732422, -0.013633728, -0.63378906, 0.025848389, 1.4667969, -1.1259766, -1.8613281, 0.7885742, 0.5917969, -0.40063477, 2.8535156, -0.39526367, -1.8339844, -1.2021484, 2.6621094, -2.3066406, -2.2226562, 0.28393555, -2.1386719, 0.6791992, -0.9067383, -1.8769531, 1.9570312, -1.6396484, 0.38842773, -0.30200195, 2.0058594, 0.7705078, -0.22399902, 5.0703125, -0.94140625, 0.031829834, 1.3212891, -3.1347656, -1.6845703, -0.8383789, 0.2998047, -0.88964844, 0.5673828, 0.85546875, -0.15307617, 1.5400391, 0.44360352, 1.2207031, -0.625, -2.5351562, 2.5898438, -0.77734375, 0.18640137, -0.4189453, -1.9462891, 2.4003906, 0.2536621, 1.1103516, 2.7558594, 0.46411133, -0.8984375, -1.2910156, 0.83740234, 0.029937744, 0.31103516, 1.8896484, 2.546875, -0.98583984, -1.1396484, 0.3293457, 0.19042969, -0.099243164, 0.5151367, 1.1162109, 1.7041016, -1.1816406, -0.29052734, 2.3046875, 1.71875, -1.5273438, 3.6367188, -1.0048828, -3.5976562, 2.0742188, 1.2373047, -3.2871094, 0.5102539, 0.22363281, -1.3525391, 0.033843994, -0.33251953, -0.49487305, 0.6508789, 0.30371094, -0.77001953, 0.02558899, -3.7109375, -1.0683594, 0.61816406, -0.2097168, 0.6801758, -1.1474609, -0.6928711, 1.7714844, 0.10064697, 0.28100586, 0.5986328, 2.546875, 3.7070312, 0.73779297, -1.0849609, 0.3935547, -1.3730469, 0.19787598, 0.06506348, -1.0722656, -2.8945312, 1.2988281, 2.4628906, 2.046875, 1.1064453, 0.328125, 2.2480469, -1.5556641, 1.5605469, -1.4863281, 3.5820312, -1.4121094, 0.8330078, 0.9770508, -3.0585938, -0.49658203, -1.1826172, 2.6972656, 0.5029297, 0.92041016, -0.110839844, -2.0351562, -1.5664062, 0.05130005, -0.6347656, -4.4921875, -1.0654297, -0.16345215, 0.56396484, 0.6586914, -0.53027344, 0.39892578, -0.4465332, -1.0927734, -1.1142578, 0.2902832, -0.68847656, 0.95410156, 0.37817383, -2.9257812, -0.5644531, -0.10858154, -0.23205566, 1.265625, 1.5605469, -1.1933594, -4.09375, 0.8144531, -0.22558594, -2.6933594, -2.6621094, 1.9755859, -0.22216797, -0.36206055, 0.57128906, -0.13806152, -1.1757812, 0.006252289, -2.2558594, -0.65478516, -2.46875, -1.3759766, 1.2783203, -2.328125, -2.046875, -0.18225098, -2.5585938, 2.1992188, -0.10620117, 1.3837891, 2.2753906, 0.5083008, -1.4833984, -0.99853516, -1.2568359, 1.5800781, 0.90722656, 0.6269531, 0.64746094, -0.4267578, -3.3105469, -0.2590332, 0.67089844, -0.7451172, 2.0195312, -2.6113281, -0.5908203, 1.5029297, 0.062805176, -1.0654297, -1.1943359, 0.61083984, -0.78271484, -0.82421875, 1.234375, 3.0839844, 1.3115234, -1.6083984, 0.5629883, -0.9277344, 0.39819336, -0.48461914, -1.875, -0.45043945, 0.11657715, -0.60546875, -1.171875, 0.5341797, 1.2832031, 2.4023438, -0.10699463, -2.3007812, -1.8876953, 1.3779297, -1.7255859, 2.8027344, 0.47338867, -0.055023193, -0.7685547, 4.0234375, -2.015625, -2.6445312, 1.296875, -1.1669922, 0.91552734, 1.1455078, -2.4511719, -1.1025391, -0.69970703, 1.8134766, -2.0195312, -1.5742188, -2.34375, 0.85791016, 0.23620605, -0.23828125, -0.83740234, 4.1992188, -0.40844727, 2.7578125, 1.8154297, -0.8256836, -1.9853516, -1.1552734, -0.10681152, 0.8745117, 1.515625, -0.7314453, 1.1416016, 0.89160156, -1.5664062, -1.6181641, 1.5214844, 2.2382812, -0.1026001, -0.17211914, 1.5214844, 0.28955078, 4.3164062, 4.2382812, 0.17871094, 0.9248047, 2.28125, -0.44482422, 0.37817383, 3.4296875, 0.6381836, -1.9111328, -0.10668945, 0.39697266, -0.4350586, 0.44677734, 0.3383789, 1.28125, -0.69677734, -0.38183594, 1.8730469, 1.1542969, -0.8886719, -0.8203125, 0.018554688, -1.6826172, -2.0859375, -1.2636719, -0.3408203, 3.0976562, 1.0458984, 0.33813477, -1.2558594, -0.8925781, 2.0449219, -2.4355469, 0.9741211, 1.0595703, -0.41455078, -2.3671875, 1.7832031, 2.125, 1.0527344, 2.6386719, 0.4958496, -0.2043457, 1.5205078, 0.9794922, 0.80126953, -1.03125, 0.28466797, 1.5419922, -0.5029297, -1.0800781, -1.3701172, -0.8520508, -1.9257812, 0.6616211, 2.0644531, 1.2324219, 2.3242188, 0.032043457, -5.5585938, 1.4433594, 1.4013672, 2.5136719, -0.34204102, 0.8466797, 1.7861328, -0.375, -0.5908203, 0.41870117, -0.26513672, 0.8071289, 1.2275391, -2.3203125, 0.82177734, 0.87597656, 0.40039062, 1.6064453, 2.4765625, -2.0507812, -1.0488281, 0.9160156, 2.1582031, -0.059906006, 2.375, -0.3046875, 2.09375, -0.47802734, 1.2490234, 1.4755859, -0.49194336, 0.2980957, -0.96972656, 1.1220703, 0.9892578, 0.36523438, -2.9160156, -0.1027832, 0.42236328, -1.1181641, 0.3503418, 2.9707031, 2.2363281, 2.1523438, 0.78271484, -0.5175781, -2.0488281, 1.4912109, 1.5332031, -1.4697266, -0.44580078, -0.8491211, 0.07232666, -0.8852539, -1.4658203, 0.7871094, 0.8808594, 0.7211914, -2.5859375, 0.6542969, -0.3166504, 0.40161133, 0.73876953, -1.8222656, -2.3671875, -1.7197266, 0.036132812, 1.3535156, 1.9423828, 2.09375, -0.4609375, -0.5649414, -1.7363281, -0.76416016, 0.09429932, -0.78808594, -2.4296875, 0.84228516, 3.3515625, 2.15625, -0.5209961, -2.09375, -1.9033203, 2.6015625, -2.0039062, 0.02017212, 1.1689453, -1.5283203, -0.72509766, -1.8681641, 2.2890625, 0.52783203, -1.8603516, -0.38208008, 0.27124023, -0.4375, 0.64990234, 1.6308594, -0.38720703, -0.49780273, 1.4765625, 3.3496094, 1.1923828, -0.2319336, 2.0566406, 3.2851562, 1.3359375, -1.6445312, 1.3466797, 0.6533203, 3.7578125, 0.02407837, 0.119628906, 0.20788574, -0.41845703, 0.38012695, 1.1699219, -0.9145508]}, "B071D1SYLY": {"id": "B071D1SYLY", "original": "Brand: SENMOD\nName: SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails\nDescription:

          The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4\" SAE inverted flare and the outlet is a 3/8\" NPT female pipe thread.

          • 262,500 BTU's Per Hour Capacity.\u00a0
          • Set at standard propane low pressure - 11\" Water Column.
          • Regulator body is 6 1/4\" Overall Height.
          • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
          • Adjustable gas pressure. Also has a pressure tap.\u00a0
          • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
          • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
          • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
          • Durable and easy to use.
          • Dual stage design maintains constant gas pressure under changing demand and conditions
          • 2 x 15\" Acme x 1/4\" Inverted flare pigtails are included.\u00a0
          \nFeatures: 262,500 BTU's Per Hour Capacity.\nSet at standard propane low pressure - 11\" Water Column.\nIf you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product.\nThe Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.\nMounting screws not included.\n", "embedding": [0.22277832, 0.5136719, -0.4572754, 2.046875, -1.1318359, -1.4189453, 1.8320312, -0.96240234, 0.71972656, 0.51416016, 1.4130859, -0.36206055, 1.6474609, -1.4628906, 0.67529297, 1.1201172, 0.86621094, -0.9038086, 1.921875, 0.6796875, 0.051239014, 0.20690918, 1.6269531, -0.9560547, 2.4941406, -0.061828613, 3.4277344, -2.7578125, -2.2539062, 0.46289062, 1.3164062, -0.3635254, -2.2929688, 2.3496094, 0.12866211, 0.6176758, -1.4130859, -0.69677734, -3.9726562, 0.078552246, -1.9345703, 0.14318848, 1.3232422, -2.171875, -2.2070312, -2.9433594, 1.9628906, -1.4980469, 1.1738281, 0.65966797, -0.4099121, 1.7431641, 0.7583008, 1.5224609, 0.1586914, -1.4238281, 0.5053711, 0.17028809, 0.8305664, 2.9199219, 0.9448242, -0.15026855, -3.0234375, 0.23901367, -0.94921875, 0.20617676, -1.7929688, 0.22814941, 0.6689453, 0.81640625, 1.5214844, -1.2529297, 1.2753906, -2.3613281, -0.9614258, 2.015625, -3.484375, -0.4663086, 1.9238281, -0.0061836243, -0.80859375, 0.68408203, 0.4946289, -0.23339844, -0.15270996, 1.4326172, 0.5253906, 2.546875, 1.2773438, 1.1074219, -2.2792969, -0.44506836, -1.8583984, -4.1132812, 0.2993164, 0.86621094, 1.0917969, 0.77197266, 2.2519531, 0.9765625, 0.58691406, 1.8876953, -0.34326172, 0.85546875, -2.3535156, 1.0351562, 1.5400391, 2.171875, -3.3613281, -1.2197266, -0.6459961, -0.045959473, 1.5117188, -1.8574219, -1.2958984, 0.103149414, -0.67626953, -0.6123047, 1.7841797, -0.29736328, 3.4648438, 0.05432129, 0.7973633, -0.11785889, 1.1484375, 0.3305664, -0.890625, -0.20617676, 2.4609375, 0.42382812, 0.5800781, -0.38134766, 4.0859375, 0.79589844, 1.7207031, -2.1386719, -1.8535156, -2.6191406, -2.5644531, -0.6777344, -2.8125, 0.32128906, 2.2304688, 0.15930176, -2.6015625, 0.8930664, -2.9628906, 1.2060547, 2.5800781, -1.9580078, 3.1328125, -1.9921875, 0.7163086, -2.5625, 1.5126953, 0.3017578, -0.08087158, -0.9794922, 0.47973633, 0.7089844, 1.1523438, -1.8251953, -2.5253906, 0.8598633, -2.8085938, -0.8300781, 1.625, -0.2121582, -0.03643799, 0.2800293, -0.9863281, -1.1035156, 1.2421875, 0.42895508, -0.8779297, -0.9213867, -0.20239258, 1.4169922, 3.4960938, 0.953125, -4.3554688, -1.1259766, -1.0869141, -1.3769531, 2.6210938, 1.4599609, -0.61376953, -1.3505859, 0.6772461, -1.1669922, -2.609375, 1.4814453, -1.3740234, -1.8603516, -0.9272461, -2.9082031, -4.8789062, -0.9584961, -0.3840332, 1.8564453, 0.5258789, -0.6489258, -1.0058594, 1.0810547, -2.1894531, -0.93603516, 0.4584961, -0.7597656, -1.1757812, 2.8964844, -0.18884277, -0.3408203, 1.1933594, -2.6230469, 0.18969727, -1.6904297, 1.4150391, 0.9111328, 0.12988281, 0.140625, 1.2744141, 2.3632812, 3.1640625, 0.27197266, 3.2109375, 0.5390625, -0.092163086, -1.2216797, -1.078125, -0.9526367, 0.9345703, 0.87841797, -1.7382812, -1.4902344, -0.86279297, 1.7724609, -0.05987549, -0.19543457, 1.0693359, -0.78466797, 0.66748047, -1.1923828, 1.3066406, -0.115722656, 0.5800781, 0.99609375, -2.3066406, 1.0185547, 2.9140625, -0.19104004, 1, -0.81152344, -2.7851562, -1.0917969, -1.2509766, 0.24829102, 0.86279297, -0.67333984, 0.7182617, -1.4179688, 3.2597656, 0.92871094, 0.703125, 1.5527344, -0.50097656, 1.0292969, 1.7626953, -0.058410645, -1.3925781, 0.68603516, -0.47558594, 1.7265625, 2.1054688, -0.8413086, 1.5439453, 1.0742188, 0.5019531, 1.8261719, -0.097717285, 1.1445312, 1.3095703, -1.3535156, 0.50390625, -2.8300781, 1.5097656, 2.703125, 0.52783203, 2.2910156, -3.0019531, 0.48657227, 2.6855469, -3.0449219, -2.0839844, 1.6787109, 2.1191406, -0.24084473, 3.0390625, -0.11517334, 0.07476807, -0.51464844, -0.31640625, 0.32617188, -1.4042969, 0.3708496, 1.1005859, -0.8222656, -0.6464844, 0.44580078, 0.009025574, 0.8935547, -0.33154297, -0.46362305, -3.1074219, 1.2607422, 0.98095703, -0.4633789, 3.6914062, -1.5292969, 0.30029297, 1.5253906, -1.1923828, -0.90527344, -0.8364258, -0.5107422, -0.22668457, -0.44604492, -0.5761719, -0.76220703, 1.1171875, 0.5595703, -0.08215332, -1.2578125, 2.2226562, -1.4638672, 0.20898438, 1.6367188, -1.2851562, -3.1386719, 0.26293945, 0.38598633, -0.6142578, -1.4541016, 0.6748047, 2, 3.1777344, 2.2753906, -0.37353516, -0.25756836, 1.2900391, -0.7260742, 0.7480469, 2.234375, -0.44970703, -1.90625, -1.328125, -0.37036133, -0.9199219, 0.20007324, -0.9272461, 1.1474609, -1.4716797, 1.0390625, 0.50390625, -0.76953125, -1.1845703, -1.2021484, 1.7167969, -2.6484375, 0.2578125, 0.42993164, 2.3222656, -1.8535156, 1.3828125, -1.3730469, -0.27685547, 0.49145508, -1.7539062, 3.1445312, 0.7832031, -0.33447266, -1.3681641, 0.25708008, -0.0035820007, -0.8647461, -2.3164062, 1.6689453, 1.0820312, -0.8286133, 0.21411133, -1.6054688, -1.3134766, 0.11846924, -0.49243164, -1.3759766, -2.5273438, -1.3740234, -0.060028076, 0.98779297, 0.98876953, 1.4414062, 3.3105469, -2.7753906, -2.53125, -0.26513672, 1.3037109, 0.7207031, 0.09326172, 0.03074646, 0.2734375, -0.24658203, 0.18762207, -0.07348633, -0.08117676, -0.11315918, -1.4726562, -3.1582031, -0.58691406, 2.1992188, -0.23400879, 3.4863281, -1.1728516, 0.11212158, -2.09375, -1.5097656, 3.5214844, 1.9902344, 3.8671875, -1.2167969, 1.0371094, 0.4416504, 0.30566406, -0.44262695, -0.22033691, -2.2597656, 2.3183594, -2.9726562, -1.4238281, 1.9228516, -0.39575195, -1.7265625, 3.0761719, -0.56152344, -0.68847656, 4.9609375, 0.68847656, -0.6064453, 0.16992188, 1.4882812, -0.5673828, -0.57128906, -0.016342163, 1.3398438, -0.99658203, 1.2314453, 0.23071289, -0.11206055, 1.2597656, 1.9599609, -2.0253906, 0.515625, 3.15625, -2.5605469, 1.7871094, -0.21154785, -0.53808594, -0.7314453, 1.8193359, -1.2314453, 0.5576172, -0.9223633, 1.3222656, -0.47924805, -1.5693359, -0.03616333, -0.77978516, 3.9765625, -0.34326172, 0.040283203, 0.24121094, -0.46533203, 1.4873047, 1.5517578, 1.7392578, -0.58691406, 1.0605469, -2.1660156, 0.92626953, -1.6347656, 0.54833984, -0.7348633, 1.7460938, -0.025482178, 0.14099121, -0.2244873, -2.3242188, -1.1220703, -1.234375, -0.32885742, 2.6777344, 2.7714844, -0.73828125, 0.01663208, -1.3544922, 1.6669922, 1.1289062, -0.69628906, -1.2421875, -1.4707031, 1.7509766, -0.08660889, -1.6630859, 2.8730469, 1.3535156, -1.6523438, -1.109375, -3.0371094, 0.9111328, -0.24133301, -0.18432617, 1.1308594, 1.5888672, -0.5185547, 1.7558594, 0.66064453, 2.6777344, -1.3046875, 2.40625, 1.8193359, -1.9326172, -1.3173828, -2.2226562, -4.6601562, 0.119384766, -1.6523438, 1.3310547, 0.4116211, 0.8725586, 0.6645508, 0.5283203, 0.9433594, -2.4199219, -1.1972656, -1.4755859, 2.3691406, -3.0332031, 0.8754883, 0.5234375, -0.089782715, -0.058654785, -2.09375, -2.9511719, -1.0078125, -1.6484375, -0.5410156, -0.93896484, 1.8037109, -0.61279297, 0.6713867, 0.7480469, -0.6611328, 1.1611328, 0.43310547, -1.3720703, -4.2382812, 2.3886719, 0.115356445, 0.38256836, -1.0429688, 1.6103516, 2.5136719, -1.0722656, -2.1230469, -0.2919922, 2.4160156, -0.09350586, 0.08068848, -1.9052734, -2.4121094, -0.56933594, -1.3076172, -1.0927734, 1.6621094, -0.70947266, 0.61279297, 1.2900391, 1.1826172, 1.7382812, -1.4404297, -0.6269531, 3.1210938, 0.5234375, -0.7739258, 0.94873047, -1.7695312, 1.1757812, -1.8320312, 0.5913086, -1.1074219, -2.4570312, -1.5234375, -1.2724609, -2.3652344, 1.3613281, -0.28759766, 0.8198242, -1.4931641, 0.5776367, 0.31835938, 1.4267578, 1.0449219, 0.8730469, -0.5961914, -0.69091797, -0.13134766, 2.15625, 2.8105469, 0.49487305, -1.3427734, 0.7241211, -2.6757812, -0.84277344, 0.62402344, 0.24487305, -0.3930664, -0.79052734, 2.2695312, 1.9052734, 1.7441406, -2.8164062, 2.4296875, 0.9604492, 0.5571289, -2.2851562, 2.8984375, 2.4082031, 2.203125, 0.38232422, -0.3095703, 0.41235352, 0.18884277, 0.5415039, -1.5732422, -0.25512695, -1.7773438, -3.0957031, -0.59228516, 1.6005859, 0.51171875, 0.10345459, -0.5185547, 0.36694336, 0.6533203, -1.0244141, 2.7910156, -0.03213501, 2.7363281, -0.89697266, 0.7890625, -1.7294922, 0.32104492, -0.9423828, 1.8339844, -0.5839844, -3.1835938, -0.22607422, 1.7890625, -0.43603516, 0.47021484, 1.2617188, 0.44799805, -0.99072266, -2.5273438, -0.84521484, 0.5654297, -0.06341553, 0.48120117, -0.58935547, 0.8598633, 1.0458984, 0.80078125, 1.3388672, -1.0654297, 0.07727051, -0.059020996, 1.5751953, -1.6376953, -1.0546875, -0.8413086, -3.0546875, -1.9394531, -0.25610352, 1.125, 0.39038086, -0.6166992, -0.6425781, -0.86279297, -4.0507812, -0.9921875, 0.8911133, -0.26757812, 0.45947266, 2.6992188, 1.0175781, 1.4316406, 0.26489258, 0.5991211, -1.5371094, 1.984375, 1.1738281, 0.44799805, -0.6660156, 1.1396484, -3.0703125, -5.359375, -0.6796875, 1.3447266, -0.6220703, -0.90527344, -1.2382812, -1.6806641, 2.1679688, -1.109375, 0.15795898, -3.8554688, 1.7919922, -1.09375, -0.54589844, 1.1074219, 0.7758789, -0.90283203, 0.75878906, -1.0117188, -1.3613281, -1.5927734, -3.3183594, -1.1777344, 0.49951172, 0.95751953, 0.20617676, -0.7578125, -2.4609375, -1.4863281, 0.6694336, 1.1132812, -0.10522461, -0.27685547, -3.0078125, -0.020385742, -0.41796875, -1.5224609, 0.4802246, 2.3359375, 1.8349609, 2.234375, 2.8515625, 1.4130859, -1.3710938, -0.29516602, 0.5029297, -1.1308594, 0.81103516, -0.018981934, 0.6020508, -0.07116699, 0.18518066, 2.1269531, -1.6025391, -1.3222656, -2.6855469, -2.109375, 0.58251953, -0.35864258, 0.29760742, -0.68115234, 2.9355469, 0.45288086, -0.96191406, 0.62109375, 0.31201172, -1.390625, -0.41870117, 2.1015625, -1.9726562, 1.2041016, 0.5019531, -2.0761719, -1.2792969, -1.8378906, 1.5556641, 1.6894531, 0.4729004, 1.9755859, 1.3115234, -0.82666016, 3.28125, -0.8964844, 2.1289062, 0.4790039, 0.9379883, -1.1152344, 0.037506104, 0.21484375, -0.067871094, -0.9501953, 1.7695312, -1.9453125, -0.1628418, -0.5727539, 3.140625, -2.6484375, 1.0078125, -1.4130859, 0.23901367, -1.5302734, -0.81103516, 1.0283203, -2.2480469, -0.14416504, -1.0273438, 0.25097656, -3.4042969, 5.4375, 1.3203125, -0.7114258, 0.73779297, 1.1953125, 0.32104492, -2.4355469, 2.046875, 0.7553711, 0.8496094, 0.11077881, -0.46826172, 0.48583984, 0.27978516, -3.4179688, 1.2216797, 0.6455078, 3.9160156, 0.94677734, 1.1484375, 0.38989258, 2.2480469, 1.9814453, -0.49560547, 2.8652344, -0.35180664, 1.5322266, 1.3271484, 1.5996094, 1.4677734, 0.87841797, -0.47387695, 0.33447266, -0.5258789, 0.83251953, -1.78125, -0.96435547, -1.3867188, 0.9375, 1.0976562, -0.9638672, 0.40893555, -2.5800781, -0.32666016, -0.3779297, 1.3457031, -1.8427734, 0.8598633, -1.6191406, -0.019622803, -0.6098633, -0.117126465, 0.42407227, 1.1347656, -1.0898438, 0.54541016, 1.0253906, 1.2617188, 0.17492676, -1.03125, -2.1308594, -0.032562256, 2.1445312, 1.53125, 1.6728516, -0.20275879, 0.9863281, 2.0859375, -1.8115234, -0.8515625, 1.1621094, -1.7626953, 0.77734375, -1.2978516, 3.2851562, 3.3496094, -1.8642578, 2.078125, 1.4697266, -1.234375, -4.1328125, 0.09313965, -0.6611328, 0.034179688, -0.6660156, -5.3828125, 1.7783203, -1.1484375, -1.2548828, -3.0488281, 0.7895508, -0.4013672, -1.1152344, 1.5751953, 0.8779297, -1.9658203, 0.87402344, 0.88916016, -0.37548828, 0.6503906, 0.20153809, 1.0751953, 0.32128906, 2.8144531, 0.20898438, 0.3659668, -1.7314453, 3.2773438, 1.9453125, -1.4951172, -0.043060303, 2.3105469, 0.0012750626, 0.26220703, -0.46606445, -0.23498535, 2.9238281, 1.453125, -2.046875, 1.2597656, -1.5039062, 1.5302734, 0.19140625, -0.8286133, 0.15429688, -0.9277344, -1.2910156, 2.2792969, -3.2285156, -1.25, 0.77734375, -0.73779297, 1.8623047, -0.7973633, 0.123168945, -1.6279297, 0.8310547, 0.52783203, -1.25, 0.58935547, 0.31323242, 1.6142578, 1.1259766, -3.0664062, 0.3461914, -1.0400391, -0.4584961, 0.31811523, -0.007873535, 0.5410156, -0.70166016, 1.4892578, -3.2578125, 1.6650391, 3.0722656, -1.2958984, 2.484375, -1.1152344, -0.062347412, 0.8911133, -2.2617188, -0.2355957, 0.15795898, 1.0976562, 0.55078125, -0.041290283, -0.5214844, -0.42260742, -0.27539062, -3.1894531, 2.2226562, -0.5234375, -2.0078125, -0.3293457, 0.69970703, 2.8105469, -0.57958984, 0.15783691, -1.3457031, -0.8095703, -0.42407227, -1.1455078, 0.029342651, 0.9238281, -0.6894531, 1.6855469, 3.21875, 1.2490234, -1.2734375, -0.82958984, 0.94628906, -1.8525391, -0.28125, 0.10626221, -2.3574219, -3.1445312, -0.25732422, 2.5429688, 4.21875, 0.47875977, 0.9116211, -2.5683594, 0.625]}, "B01LYJBJG2": {"id": "B01LYJBJG2", "original": "Brand: PMC Supplies LLC\nName: Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set\nDescription: This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

          Designed with a lid handle for easy lid removal.

          Made in the USA by PMC Supplies

          Dimensions: Outer: 4\" (101 mm) Diameter x 4\" (101 mm) Height, Inner: 1.7\" Diameter x 1.5\" Depth, and Wall Thickness: 1.15\" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

          Also Includes:

          (1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or \"slag\" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

          (1) Pair of 12-1/2\" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

          (2) Graphite Crucibles: 1.75\" Height x 1.5\" in Diameter; with a capacity of 5 ounces of gold.

          (1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

          Please contact us with any questions. Thanks for looking!\nFeatures: Made in the USA By PMC Supplies\nRequires 2 standard propane bottles and propane tips (not included)\nIncludes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups\nMelts 2 to 5 ounces of gold\nCan also be used with silver, copper, brass, aluminum, and other precious metals\n", "embedding": [1.0537109, 0.5439453, 0.7163086, -1.0117188, -0.33740234, 1.8623047, -0.88183594, 0.1083374, -1.3095703, 2.1152344, 0.12109375, 2.5214844, 0.23388672, -1.9277344, 0.2529297, -0.0670166, -1.4677734, 0.08459473, 0.6538086, 0.36450195, 4.2539062, -0.0036773682, 1.0146484, 0.6333008, 2.3867188, 0.60839844, 3.3730469, -2.7695312, 0.67529297, 0.12963867, 0.2932129, 1.421875, 2.0644531, 0.15063477, -0.7636719, -1.3603516, -1.4873047, 1.1455078, -2.4394531, 1.5927734, -1.2314453, 0.984375, -0.13244629, -0.4970703, -3.1230469, -1.4472656, 0.59033203, 2.7226562, -1.3183594, -0.2746582, -0.9321289, -0.1005249, 0.44628906, 0.3244629, -1.7255859, 0.23828125, -0.86279297, -1.296875, 3.0332031, -1.6611328, -0.52978516, -0.3125, -2.4960938, 0.265625, -1.4892578, -0.9526367, -1.4707031, -2.9296875, 0.44335938, -0.38208008, 0.4194336, 1.2646484, 0.77734375, -1.8964844, -1.3037109, -0.6040039, 0.3486328, 1.4238281, 0.6464844, 0.3647461, -2.1386719, 1.3251953, -0.18395996, -0.35864258, -1.515625, -1.5126953, 1.0732422, -0.09075928, 1.09375, 1.8222656, -0.7578125, 1.7353516, -0.61816406, -5.1796875, 1.2929688, -1.5527344, -0.056518555, -0.2685547, 2.7578125, 2.5117188, -0.9350586, -0.35913086, -0.6826172, -0.010910034, -1.3242188, -0.061340332, 3.6835938, 2.8808594, -2.3183594, 0.026809692, -2.2890625, 0.13989258, 0.15258789, -1.3574219, -1.2353516, -0.8486328, 0.041900635, 0.05239868, 1.6367188, -0.76464844, 4.3984375, -0.5078125, 1.5507812, -1.6787109, 0.625, 2.203125, 0.25512695, -0.41503906, 0.3701172, -1.3046875, -0.98876953, 3.1582031, 2.4648438, -0.32641602, -3.5253906, -1.3027344, -2.0703125, 0.6645508, -3.0449219, -3.6171875, -1.3730469, 3.7480469, 0.5229492, -0.6767578, -2.8183594, -0.41381836, -0.953125, 0.42944336, 0.43920898, 0.7421875, 0.9580078, -1.2519531, -1.4345703, -1.1044922, 1.1425781, -0.31298828, 0.14257812, -1.6738281, 1.3828125, 1.7353516, 0.1394043, 0.05279541, -0.016723633, 4.3085938, -2.8808594, 0.45288086, 1.2705078, -0.6386719, 0.75439453, 1.2978516, 1.9677734, 0.2052002, 0.2019043, 0.98046875, -1.0996094, -1.9648438, -0.33813477, -0.30688477, -0.6743164, -1.6230469, -1.2353516, -2.4394531, -0.5078125, 0.2993164, 1.8359375, 1.6572266, 4.0664062, -0.21044922, -0.8701172, -1.8105469, -2.5390625, 1.15625, 0.9404297, 2.1835938, -1.5478516, -2.2070312, -0.19384766, -0.9121094, 0.4963379, 0.105163574, -1.2851562, -0.7885742, -1.109375, 0.64160156, -1.4003906, -1.9619141, 0.8041992, 0.24743652, 1.5205078, 2.6289062, 0.08880615, -2.1113281, 0.3166504, -1.2773438, -0.50634766, -2.75, -1.3339844, 1.0839844, 0.9814453, -1.1542969, -0.7416992, 0.31933594, -0.29711914, 2.1757812, 2.8476562, 2.5214844, 0.17480469, 1.0478516, -3.2871094, -1.4570312, 0.67871094, 1.1386719, -0.9121094, -0.3017578, -0.2998047, 1.5136719, 0.99902344, -1.1337891, 2.5507812, -1.3964844, -0.37817383, -0.18652344, -0.9975586, -1.2431641, -1.3447266, 0.53759766, 0.018463135, 0.6972656, -0.11022949, -0.70703125, -0.8540039, 0.3359375, 1.4267578, -0.16894531, -0.2529297, 0.65966797, 0.6821289, -0.16577148, 1.1455078, -1.3242188, 2.0800781, 1.6318359, -2.0996094, -0.5004883, 3.6835938, -0.25952148, 1.8964844, -2.9667969, -1.5097656, 2.3105469, 3.2714844, -0.5673828, 0.7890625, 0.6899414, 0.73876953, 1.5849609, -1.2470703, 2.4472656, -0.68359375, 2.6542969, -0.4008789, -1.5224609, 0.36523438, -2.9589844, 1.2978516, 1.8193359, 2.2128906, 0.09466553, 2.1269531, 1.2919922, 3.9023438, -0.027999878, -1.1806641, 1.7958984, -1.4414062, 1.9492188, -0.77685547, 0.88720703, -0.82666016, -1.2998047, 0.1776123, 3.125, 0.88183594, -2.0742188, 0.625, 0.9550781, 1.2275391, -0.61035156, 0.043792725, 0.42749023, -0.46655273, -0.08972168, -0.7807617, 3.0605469, -1.9697266, -0.8955078, 0.19250488, -1.6826172, 1.5087891, -0.10229492, 1.7392578, -0.27124023, -0.64697266, -1.7080078, 2.9941406, 2.2441406, -1.0136719, 2.2109375, 0.61621094, -1.0068359, 0.45458984, 0.044311523, 1.0791016, 0.31445312, -1.0488281, 1.8310547, 1.2060547, -2.9121094, 0.23010254, 0.18530273, 1.7226562, 1.9228516, -0.6855469, -0.6425781, -0.83496094, -1.8310547, -1.3486328, 0.11999512, -0.4428711, -2.1503906, 1.4560547, 1.0898438, -2.9179688, -3.7148438, -2.2714844, -1.1328125, -0.10992432, 0.36010742, -0.17504883, 0.67626953, 1.8173828, 0.7583008, -0.80078125, -0.90722656, -1.4707031, -0.3383789, 0.72509766, -2.6328125, 2.6171875, -1.2333984, -0.0826416, -1.8398438, -1.0341797, -1.1689453, -1.6279297, -1.8320312, -0.049957275, 3.6855469, -1.1757812, 2.0195312, -1.109375, -0.12432861, -2.1621094, -0.69921875, -3.0097656, -0.6479492, -0.12585449, -1.3398438, 0.33081055, -1.7666016, -0.12231445, 0.30395508, -1.6777344, -0.4086914, 1.8339844, -0.7739258, 0.5673828, 0.40820312, 0.2626953, 0.8754883, -0.050842285, -0.18017578, -0.023025513, 2.5273438, -1.1533203, -0.13500977, 0.07922363, 2.7460938, 1.8320312, -0.70996094, 1.3320312, 0.3310547, 0.85546875, -0.75390625, 1.4619141, -2.8007812, 0.84277344, -0.9760742, -0.5004883, 0.29418945, -1.5683594, 1.2275391, 0.41186523, -0.35864258, 2.6640625, 0.8300781, 1.5595703, -1.7041016, 1.2890625, 0.68115234, 1.7001953, -1.3251953, -1.5810547, 1.8095703, 2.09375, -1.6826172, -2.5566406, 1.15625, 2.328125, -3.4316406, 0.44189453, 1.6337891, 1.3916016, -0.3774414, 0.3869629, 0.60302734, -1.1308594, 0.5546875, 3.3710938, 2.6113281, -1.890625, 0.36547852, 1.4306641, -0.7446289, 3.0214844, -1.234375, 0.7988281, 1.9472656, 0.46435547, 0.66845703, 2.3964844, -2.0859375, -1.0244141, 1.2333984, 0.013320923, -2.0546875, 1.8896484, -1.1679688, 0.41870117, 0.40820312, -1.2890625, 0.859375, -3.9257812, 1.5849609, 1.3349609, 1.0068359, -1.3789062, -1.8837891, 1.1298828, 0.9716797, -0.72021484, 1.8955078, 0.4765625, 1.2373047, 3.6640625, -0.7446289, -1.1455078, 1.5996094, 4.3046875, -0.36694336, -0.27563477, -0.7265625, 1.4628906, -1.3447266, -2.9140625, 0.57958984, 0.37841797, -0.40698242, 0.81591797, -1.6386719, -1.0673828, -0.34350586, -3.6230469, 0.08782959, -0.08074951, -1.6191406, -0.16784668, -1.5927734, 1.2314453, -0.87646484, -0.41210938, -1.2841797, 0.2758789, -2.0429688, -0.09777832, -2.0800781, -2.2871094, 0.42236328, -2.9101562, 0.24890137, -0.56884766, 0.2709961, -0.25170898, -1.5332031, 2.7167969, 0.1796875, 1.7001953, 0.20385742, -1.0605469, -0.72314453, -1.9375, -0.25732422, 0.7036133, -0.5473633, 0.50927734, 1.8232422, 2.1113281, -1.9755859, 1.8232422, -0.4560547, -5.1953125, -0.96240234, 0.45507812, 1.9072266, -1.4570312, -1.265625, -0.10253906, 0.05130005, -0.9296875, -0.9003906, 1.4912109, 0.6459961, -0.40356445, 0.12524414, -0.43286133, 0.58154297, 0.75390625, -0.46679688, -0.047607422, -0.5786133, -0.4326172, 0.6616211, 0.4189453, -0.11315918, 3.1777344, -1.0576172, -1.9101562, 0.82177734, 0.14453125, 0.14538574, 0.40698242, 1.1162109, -0.8833008, 2.4589844, 0.4970703, 0.7158203, 1.3486328, -2.6015625, 0.3088379, 0.07867432, 1.2695312, 0.75146484, -2.4765625, -1.2011719, 1.1279297, 1.1386719, 1.3457031, 0.6308594, -1.0644531, 1.2373047, 0.14074707, -3.6816406, 0.36889648, 1.6953125, 0.9501953, -0.9379883, 1.8183594, 0.6801758, 2.1191406, -0.1628418, -0.035217285, -3.1542969, 0.23010254, 3.0976562, 1.4638672, 1.9423828, -3.7050781, -2.0136719, 0.09631348, -0.59814453, -0.62597656, 0.8955078, 0.74658203, 0.8857422, 0.87939453, -0.07293701, -0.70947266, 0.17626953, 2.2324219, -0.29541016, 0.25097656, 1.4199219, -1.1748047, -3.1269531, -1.3369141, -0.7636719, 0.86621094, 2.2636719, -1.1298828, 0.6621094, -1.2792969, 1.6113281, -2.9042969, -0.02558899, -1.6738281, -1.3398438, 0.058776855, 0.41333008, 3.296875, 0.3791504, 1.8535156, 1.1396484, 0.6894531, -0.29589844, 0.83691406, -1.1386719, 1.0517578, -2.6953125, -0.32641602, 0.7241211, -0.64501953, -1.0761719, 1.5380859, -0.9189453, -1.6474609, 1.3818359, 0.7758789, -0.3828125, 0.48291016, -2.4121094, -1.2548828, 0.9082031, 0.020095825, -2.4179688, -1.34375, 2.3652344, -0.51171875, 2.0820312, 0.15075684, -1.8300781, -0.59277344, 1.9814453, -1.6669922, -0.40893555, -0.50439453, -0.68310547, -0.3474121, -2.3808594, 2.0410156, 1.9101562, 2.2636719, -0.04144287, -1.3378906, 1.1582031, -0.8540039, -1.4667969, 1.046875, -0.33764648, -2.4589844, 0.9248047, 0.19604492, 2.1640625, 0.67333984, -0.4892578, 1.75, -1.4189453, 0.7163086, 0.9165039, -0.07324219, -1.1113281, -1.0712891, 2.2578125, -0.6660156, 1.1835938, -0.58984375, 0.5996094, 0.35253906, 2.4824219, -0.06549072, -1.1054688, -2.5253906, -0.08258057, -2.5175781, -3.15625, -1.1611328, 0.23254395, -0.5527344, -0.113342285, 2.1835938, 1.0859375, 0.32763672, -0.13757324, 1.1816406, -1.9492188, 0.7949219, 1.9111328, -0.8613281, -2.6679688, 0.90722656, 1.3291016, -2.2226562, 2.4570312, -0.031173706, -0.09552002, -1.0917969, -1.6806641, -0.36450195, 0.1673584, -0.5854492, -1.2216797, -1.4638672, 1.2382812, 0.34985352, 2.0566406, -2.4804688, 0.8276367, -1.5058594, -0.39501953, -0.6118164, -1.0791016, 1.9042969, -0.00605011, -1.1572266, 0.6147461, 1.0839844, 0.96777344, -2.1347656, -0.4453125, -0.109558105, -0.48950195, -0.08850098, 0.70214844, -1.0097656, 0.5019531, -0.20666504, 1.3349609, -0.1381836, -1.9960938, -2.2089844, -2.4746094, -0.62402344, -0.9526367, -0.5307617, -0.58935547, 1.5097656, -0.22924805, -2.8457031, 1.7460938, 1.3847656, -0.7675781, 1.0087891, 1.6777344, -1.9023438, 2.9570312, 0.21923828, 0.27539062, -3.671875, -2.6933594, 2.8886719, -0.99121094, -1.0488281, 1.4824219, -0.48461914, 0.12976074, 0.04562378, -0.390625, 0.40454102, 0.71777344, -1.7910156, -2.3105469, 4.15625, 2.1464844, -0.0054397583, 2.5625, 0.45947266, 1.8710938, -0.9741211, 3.2460938, 0.37426758, -1.0166016, 0.016342163, -1.5488281, 1.1933594, -2.9726562, -0.041778564, -1.3251953, 0.8857422, 0.68847656, -2.1933594, 2.3457031, -1.2070312, 2.1660156, 0.22167969, 0.8833008, 1.2861328, -0.6196289, -0.4296875, -0.44506836, 3.4882812, 0.009979248, -0.39331055, 1.1669922, -1.3535156, 0.43969727, 1.4433594, -0.52734375, -0.8041992, 1.4013672, 1.5126953, -1.4980469, 0.25390625, 1.2119141, -0.19396973, 0.19091797, 2.2148438, 0.16345215, 0.27612305, 1.0810547, -1.3378906, 3.2929688, 2.5625, 2.1640625, -1.9873047, 1.4931641, -0.031921387, 1.9492188, 0.5644531, 0.22106934, 0.64404297, -0.81396484, -3.625, 0.40429688, -0.7080078, -1.7158203, 1.1269531, -1.1191406, -0.53125, 0.31225586, -1.9794922, 0.72216797, 0.3347168, -0.4621582, -2.0390625, 1.359375, 1.7734375, -3.5058594, -0.29736328, -2.3183594, 2.6699219, -2.8828125, -0.45239258, -0.4736328, -0.048614502, 1.0888672, 3.1054688, -0.15209961, 1.5039062, 0.6640625, 2.5996094, 2.7011719, 1.7304688, 0.0047912598, -0.5209961, -0.3852539, 0.9536133, 2.7636719, 2.6855469, 0.014572144, 2.0390625, -1.2871094, -2.5234375, -0.07788086, -0.36816406, 1.9931641, -0.8051758, -0.47729492, -0.15979004, -0.54345703, -1.6240234, 1.1923828, -3.0019531, 0.45922852, 2.4824219, -3.0859375, -0.51953125, 0.5834961, 0.9790039, 0.6201172, 0.953125, -0.21166992, 0.8828125, 0.14697266, -0.043792725, 2.7011719, 0.546875, -0.7504883, 2.5175781, -2.4394531, 1.3681641, -1.3105469, 0.3540039, -1.4697266, 2.3183594, 2.9375, 0.42358398, 0.7270508, 1.8164062, -1.4384766, -0.5942383, 0.63720703, -1.2724609, 0.8286133, -0.4777832, -0.41845703, 0.80908203, 1.1220703, 1.1904297, 3.5839844, -1.8740234, -2.8671875, 0.0073013306, 1.6484375, -1.3027344, -1.21875, -1.1396484, -0.31347656, 0.7324219, -2.3085938, 1.1914062, -1.9892578, -1.7197266, 0.6875, 0.28466797, 1.4101562, -2.3886719, 0.2758789, 0.74316406, 0.9658203, 1.1035156, -0.109191895, -0.97753906, -0.023635864, 1.9248047, -0.46972656, -0.13183594, 0.16052246, 0.13317871, -1.3632812, -0.0073623657, -1.4179688, -1.6162109, -0.63427734, 2.5351562, 1.4931641, 2.6152344, -0.8256836, 1.9433594, 0.05105591, -6.3203125, 1.0957031, -1.2421875, 0.37426758, 0.5517578, -1.171875, 0.33544922, 0.4807129, 2.1933594, -0.57177734, -1.8242188, 0.24987793, 1.0742188, 1.0810547, 1.5380859, 0.90478516, 2.0117188, -0.12670898, 1.0029297, 2.1386719, 0.9560547, -0.10949707, 1.2939453, 2.3359375, 0.24035645, -1.2080078, -1.2041016, -2.2734375, -0.14343262, -0.64453125, -1.8271484, 0.5698242, -1.9951172, 0.19384766, -1.9365234, -1.796875]}, "B07F1QRTCK": {"id": "B07F1QRTCK", "original": "Brand: SHINESTAR\nName: SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack\nDescription: Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper's propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4\" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service\nFeatures: \u3010Standard Connector\u3011 5/16\" diameter LP hose, ACME nut x 1/4\" male NPT\n\u3010Application\u3011 Connect your camper's 1/4\" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4\" inverted flare)\n\u3010More Durable\u3011 Stainless braided hose effectively reduce damage caused by friction and animals\n\u3010CSA Certified\u3011 Excess flow safety and thermal shutoff\n\u3010Package Includes\u3011 2 \u00d7 RV pigtail hose, 1 year worry-free customer service\n", "embedding": [-1.3496094, 2.4589844, -0.046875, 2.0761719, -1.6376953, -1.0810547, 0.90625, -0.70703125, 2.7109375, 0.18054199, 1.1806641, -0.5151367, 1.0439453, -3.9394531, 0.09350586, -0.9394531, -0.8310547, 0.59375, 2.3789062, 2.4042969, 2.1738281, 0.21716309, 1.3300781, 0.40063477, 1.9599609, -1.3554688, 1.8144531, -1.5859375, -0.0151901245, 0.12719727, 0.7636719, -0.02178955, -0.66308594, 1.6474609, -0.33813477, -0.7055664, -0.73046875, -0.79296875, -3.9257812, -1.6396484, -3.6230469, 1.6914062, 2.9101562, 1.2382812, -2.6171875, 1.5654297, 1.5683594, -0.08062744, -0.10650635, 0.41333008, -1.1103516, -1.1289062, 0.057434082, 1.5488281, -0.68652344, -2.6757812, -1.4902344, -2.703125, 1.0595703, 2.1972656, 0.49658203, -0.8535156, -2.0097656, 0.7475586, -0.022338867, 1.7929688, 0.3310547, -0.30664062, 1.1728516, 1.2412109, 0.9135742, 0.87109375, -0.2055664, -2.1035156, 0.34521484, 1.4902344, -2.5917969, 0.4050293, 1.9941406, 1.3574219, -0.08648682, 0.43603516, -1.4072266, -1.21875, 1.8164062, 0.36987305, -2.1757812, 0.36376953, 1.2558594, 0.8588867, -2.46875, 3.46875, -3.2519531, -2.5664062, 0.22009277, 0.9008789, 0.29638672, 0.3996582, 2.7539062, -0.36279297, -1.109375, -2.3496094, -0.46118164, 2.2636719, -2.3671875, -1.0820312, -0.58203125, -0.36132812, -2.0058594, 0.053833008, -0.046142578, 0.7470703, 0.9194336, -0.8886719, 0.6635742, -2.9746094, 0.62841797, -2.171875, 2.4785156, -0.7026367, 2.4257812, 1.9169922, 0.42407227, 0.21643066, 0.98291016, 1.3857422, -0.296875, 0.42993164, 1.6240234, -0.48120117, 0.44360352, -3.046875, 1.8222656, 1.2373047, 1.3466797, -2.5253906, -0.6503906, -1.3232422, -1.0478516, 0.5078125, -4.484375, 0.34838867, 1.609375, 0.49389648, -4.3203125, -0.31591797, -2.0039062, 0.63671875, 2.5957031, -0.9272461, 1.0058594, -0.77978516, -0.045806885, -1.5771484, 2.2753906, 2.03125, 1.4736328, -1.2558594, 2.1894531, 2.7382812, 0.47631836, 0.39135742, -2.8691406, 2.359375, 0.03173828, -4.4648438, -0.6333008, 0.47094727, -0.8886719, 0.61328125, -1.3085938, -4.234375, 0.49780273, 0.41992188, -0.4440918, -1.9140625, 2.0390625, -0.53466797, 2.4726562, 0.9560547, -4.265625, -2.0839844, 0.96875, -2.2324219, 0.16662598, -0.7685547, -0.8725586, -1.8037109, 0.98779297, -0.12670898, -2.1171875, 0.35717773, -0.26660156, -0.27001953, -0.6425781, -1.8164062, -1.09375, -2.0234375, 1.4462891, 2.015625, -1.265625, 0.057617188, -0.40600586, 0.8564453, -0.48706055, -0.95703125, 0.90283203, 0.32714844, -0.21984863, 1.3369141, -0.6816406, -0.31396484, 1.9921875, -1.7197266, -1.203125, -2.1328125, 0.40844727, 2.9335938, 0.94628906, 2.3964844, 0.3701172, 1.7910156, 2.2460938, -0.9248047, 2.4589844, 0.6152344, -0.7421875, 0.484375, -1.0732422, -0.93310547, 2.8925781, 2.6757812, -1.515625, -0.6201172, -0.17346191, 1.9199219, 1.734375, -1.5947266, 0.5673828, 1.9921875, -0.88183594, -1.4804688, -1.890625, -1.4765625, 1.3837891, -0.23181152, -1.4052734, -0.002779007, 3.1992188, -0.13342285, 1.5400391, -0.70751953, -0.9394531, 0.14465332, 0.02154541, -0.37597656, 0.5756836, 1.2490234, 0.84033203, -2.7460938, 1.7255859, 1.203125, -0.31030273, 0.8720703, 1.1513672, 1.3769531, 1.9833984, -1.1445312, -1.2441406, 1.5917969, -2.5371094, 2.546875, 0.6352539, -3.203125, 0.44604492, 1.3378906, -2.2988281, 3.7460938, -0.20874023, 1.7470703, 2.0488281, -0.9194336, 1.4228516, -2.5292969, 2.65625, 1.2480469, 1.9462891, 0.59375, -1.4765625, 2.5039062, 3.6191406, 0.86279297, -0.69140625, 0.9506836, 2.7734375, 1.4951172, 2.3457031, 0.99853516, -0.7919922, -0.40039062, -0.9746094, 1.4169922, -0.82128906, -0.38476562, 1.0410156, -0.21508789, 0.33764648, -1.4033203, 0.88671875, 0.27197266, -1.2158203, -2.7636719, -3.0175781, 0.82958984, -2.0019531, -1.0087891, 2.0800781, -1.3515625, -1.4941406, 2.4960938, -0.58984375, -0.80126953, 0.5131836, -1.8623047, 0.5239258, 2.2441406, -3.28125, 1.4853516, 2.3359375, 2.1699219, 0.6191406, -2.0253906, -0.05831909, -1.9433594, -0.80810547, 0.3330078, -2.0507812, -2.0488281, 0.7011719, -0.70996094, -1.5039062, 0.4428711, 0.47631836, 3.4453125, 1.2255859, -0.09210205, -0.88134766, 2.0527344, 1.7070312, -0.26464844, 0.16564941, 2.359375, -1.1230469, -1.3779297, -0.104003906, -0.60791016, -1.1474609, 2.1699219, -1.4970703, -0.12524414, 2.0566406, 1.0166016, 1.1269531, 0.4885254, -0.3479004, -3.7675781, -0.14978027, -3.546875, -0.33081055, -0.070617676, 1.5693359, -3.3457031, 0.67285156, -1.6875, -2.9726562, 0.9140625, -1.4365234, 1.7255859, 0.81591797, 2.6132812, -2.1796875, -0.30200195, -0.07489014, 0.42407227, -3.1152344, 1.2910156, 2.4101562, -2.375, 0.2130127, -3.4453125, 0.6923828, -0.8652344, 0.5024414, -0.27001953, -1.7177734, -0.7084961, -0.92871094, 0.6171875, -1.7841797, 0.4206543, 1.9443359, -0.24865723, -2.3613281, 0.104003906, 0.84521484, 0.06665039, -1.6591797, 1.5234375, -0.28759766, -1.6767578, -1.0166016, 1.6640625, 0.10687256, 0.7504883, -0.88964844, -2.59375, 0.9970703, 3.0859375, -0.18371582, 1.6835938, -0.93310547, 0.6635742, -2.046875, -1.6992188, 1.1953125, 2.4375, 2.015625, -0.57470703, -0.016937256, 0.8901367, -0.3684082, -0.8725586, -0.5854492, 0.7416992, 2.9082031, -1.0732422, -1.7792969, -0.30688477, 1.4863281, -4.6015625, 1.2871094, -0.08868408, -1.8984375, 2.7480469, 1.3876953, -0.5473633, -1.3632812, 1.4892578, 1.8652344, 0.35864258, 0.7050781, 0.28637695, 1.7734375, 0.7260742, -0.57421875, 0.5185547, 2.0527344, 0.24255371, -1.3154297, 0.21472168, 0.22851562, -0.390625, 0.9707031, 1.5078125, -1.1113281, 0.64501953, 0.6850586, -0.97021484, 0.14172363, -1.65625, 0.71533203, 1.8359375, -1.4873047, -1.7988281, 1.5400391, 1.5917969, -0.7216797, 0.07598877, -1.2841797, -0.35327148, -1.5683594, -1.0263672, -0.042510986, 1.3535156, 2.3398438, -1.3876953, 2.5332031, -1.1845703, 3.8496094, 0.32299805, 0.3059082, -1.5527344, -0.41479492, -3.1660156, -1.9912109, 0.390625, -2.0996094, -2.9414062, 2.9941406, 2.7558594, -2.3867188, 0.71484375, -0.041900635, 1.2089844, 1.6552734, -2.96875, -0.38110352, -1.6767578, -0.25805664, 0.12609863, 0.13342285, 1.1123047, -0.6748047, -1.7255859, -0.49926758, -1.1767578, 0.40234375, 1.2294922, 2.6796875, -1.7480469, 0.7529297, -0.42871094, 1.734375, 0.6899414, 2.9609375, 0.72753906, 0.9794922, 0.20898438, -2.7617188, -0.13903809, -0.6489258, -3.8066406, -0.1574707, -0.114868164, -0.06048584, 2.2949219, 1.7226562, -0.12548828, -0.026794434, 2.2128906, -2.7558594, -0.5961914, -1.2431641, 0.9057617, -1.1767578, 0.5595703, 0.6113281, 1.0107422, -1.265625, -2.7519531, 0.18884277, -2.0527344, -2.1835938, 0.1842041, -1.5986328, 0.36914062, -2.6132812, 0.19824219, -1.8730469, -0.5205078, 1.2138672, -1.3671875, 0.13903809, -3.8242188, 1.2333984, 0.7861328, 1.2490234, -0.75439453, 4.1367188, 1.3027344, -0.76660156, -0.11798096, -0.34838867, 3.4941406, -0.73291016, -2.8320312, -0.6455078, -1.8955078, -0.32885742, 0.2932129, 1.2060547, 1.2353516, -0.44213867, 0.8671875, 0.0030345917, 1.2285156, 2.8613281, -2.046875, -2.8105469, 0.64208984, 0.9082031, -1.0478516, 0.6748047, -1.8300781, -0.8256836, -2.8378906, 0.68359375, -1.2275391, -1.4804688, -0.4790039, 2.3457031, -3.5605469, 0.8696289, 0.63378906, 0.17016602, 0.55126953, -0.9638672, -0.36743164, -1.1113281, 0.21972656, -0.3503418, -0.055358887, -2.5820312, 0.25170898, 0.053009033, -0.7441406, -0.33691406, -1.2324219, -0.7651367, -1.3837891, -1.7207031, -0.71875, 1.1611328, -0.5097656, -2.4082031, 1.8330078, -2.21875, 4.7773438, 0.3347168, 2.515625, 1.4072266, -0.7890625, -0.6743164, 2.0117188, 2.3164062, 2.8769531, 0.49926758, 0.1484375, 2.1484375, 1.0761719, 1.7021484, -0.5834961, 1.6875, -1.9599609, -0.99316406, -0.10620117, 1.9697266, -0.4362793, 1.3671875, 0.9272461, -0.012039185, 1.6777344, 2.9589844, -0.072631836, -0.21105957, 1.9121094, 0.5703125, 0.27929688, -0.07989502, 1.3349609, 0.45239258, 3.8984375, -1.7207031, -2.6445312, 1.2080078, 2.5546875, -0.14038086, 1.5546875, 0.15270996, -0.5498047, -1.3828125, -2.265625, -2.1074219, 0.8720703, -0.78222656, 0.24121094, -1.1914062, 1.8681641, 1.0556641, 2.6484375, 1.5058594, -0.34716797, -0.6118164, -1.140625, 0.15100098, -1.6240234, -2.5722656, -0.63916016, -3.3671875, -0.042907715, -0.28637695, 1.0244141, -0.2861328, -0.87060547, 0.6274414, -0.74365234, -0.1361084, 1.4375, 0.9453125, -1.0273438, 0.12451172, 1.7880859, 0.38745117, 0.11328125, -1.1083984, -0.3959961, -1.6123047, 0.9580078, 2.2910156, 0.73583984, -0.375, -1.2587891, -1.6474609, -7.1523438, 0.7006836, 1.4140625, -0.24633789, 0.14770508, -2.0175781, -0.5239258, 0.5932617, -0.6894531, -0.07720947, -0.35498047, 0.66845703, -0.36914062, -0.03668213, -0.92089844, -0.35839844, -0.3984375, -0.22009277, -2.8613281, 0.45410156, -0.18286133, -2.2597656, -3.21875, 1.5625, -1.6074219, -0.5527344, 2.0371094, -1.1201172, 0.5810547, 0.3400879, 1.2480469, -1.4208984, 1.7451172, -2.0527344, 0.6040039, 1.9619141, -2.6484375, 0.93408203, 1.7158203, -1.2578125, 0.15026855, 2.4042969, 1.671875, -0.99853516, -0.79833984, 0.80908203, -0.29614258, -0.5834961, -0.76171875, 0.48657227, 0.15112305, 2.0644531, 2.5117188, -0.12219238, -0.7944336, -0.73535156, -2.0957031, 0.6147461, -1.6982422, -1.5234375, 0.61279297, 2, 2.2539062, -0.99560547, 1.7304688, 0.38256836, 0.5498047, -2.2949219, 1.9707031, -2.7265625, 3.0625, 0.51123047, -2.1933594, -3.3457031, 0.50878906, 3.8710938, 1.9921875, -0.5810547, -0.5991211, 0.6665039, 0.9501953, 0.42333984, -1.2958984, -0.40576172, 1.1142578, 1.8417969, -1.2509766, -0.82958984, 0.6220703, -1.2207031, 0.2055664, -0.27539062, -0.65234375, -0.20092773, 1.0029297, 2.9296875, -1.9619141, 1.3486328, -1.1152344, 0.7480469, -0.6171875, -0.2763672, -0.5151367, -2.734375, 0.9916992, 0.5722656, -1.9628906, -3.984375, 2.9375, 0.7402344, 0.08984375, 1.3974609, 1.9755859, 0.6098633, -0.43969727, 0.7885742, 0.20263672, 0.1328125, -1.0429688, -2.0039062, 0.38793945, 1.6103516, -2.0449219, 1.2695312, 0.18908691, 0.9082031, 0.055877686, -1.2353516, 0.60058594, 1.6044922, 0.8183594, 3.6894531, 3.4023438, -0.6401367, 2.0703125, -0.4140625, 3.0996094, 2.1503906, -2.2167969, 1.6611328, 2.0898438, 0.5800781, 1.6669922, -1.2470703, 0.7519531, -0.49682617, 0.49731445, -1.1806641, 1.7333984, 2.1328125, -3.7519531, -0.54541016, -0.9140625, -2.8671875, -0.7705078, 1.5449219, -1.7412109, -0.2800293, 2.0449219, -0.8334961, 0.18188477, 2.3164062, -1.4980469, 0.9609375, -2.3613281, 3.2207031, -0.123291016, -1.7548828, -3.3554688, -3.0703125, 0.9082031, 2.4472656, 0.4675293, -0.4790039, 0.1809082, -0.7294922, 0.24121094, 1.8710938, 0.15209961, -0.29467773, 0.7705078, -1.7744141, 2.6875, 0.4074707, -1.6425781, 0.57958984, 0.5756836, -1.8222656, -4.6367188, 1.2158203, 0.91552734, -0.90966797, -0.69873047, -3.3339844, 0.9379883, -2.3632812, 0.75634766, -2.5664062, -1.7744141, 0.10620117, -2.5703125, 0.081848145, -1.0185547, -0.63427734, 2.3613281, -0.29492188, 0.34716797, 0.85058594, 0.6850586, 0.84375, 0.15124512, 0.49536133, -0.29833984, -0.5444336, -0.7680664, 3.9902344, -1.0136719, -2.4921875, -0.10986328, 2.234375, 0.12451172, 1.2939453, 0.44970703, -1.8896484, 2.3828125, -1.265625, -0.5727539, 0.14550781, -1.8652344, -1.1787109, 1.4121094, -0.08392334, -0.39160156, 0.27172852, -0.58154297, 1.0175781, -2.1757812, 0.81152344, 2.7539062, -2.2285156, 1.7773438, 2.0058594, -0.90625, -1.4726562, 1.3769531, 2.03125, -0.5629883, 0.67578125, -0.21777344, 1.5664062, -0.65478516, -1.1591797, -0.14929199, 0.22619629, -1.3408203, -0.43286133, 0.8964844, 0.93652344, -1.8623047, 1.0888672, -0.65283203, 0.7348633, 3.4746094, 0.38891602, 2.7285156, 0.10522461, -0.59716797, -0.5048828, -2.7050781, -2.2597656, 0.5722656, 1.609375, -0.31567383, -0.031555176, 0.62060547, -2.1660156, -0.8046875, -1.6982422, 0.8457031, -0.31469727, -3.78125, 1.0859375, 1.65625, 0.7661133, -0.01524353, 1.1982422, 0.5048828, 1.8730469, 1.7363281, -2.6777344, 1.8945312, -1.5839844, 0.10601807, -0.36645508, 3.8164062, 1.5859375, -1.4511719, 0.8828125, 0.5649414, -1.2041016, -1.3046875, -0.07513428, 0.44873047, -1.0341797, 1.2451172, 2.3320312, 2.8378906, 1.6796875, -1.1455078, -1.5810547, 0.6040039]}, "B07QYCHS2P": {"id": "B07QYCHS2P", "original": "Brand: Cook N Home\nName: Cook N Home Style 32cm Stovetop grill Korean BBQ, Black\nDescription: \nFeatures: Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight\nNonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free\nDie-cast aluminum is break resistant and does not warp;\nTraditional Korean BBQ style, product made in Korea\nWorks on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended\n", "embedding": [-0.55615234, 0.19250488, 2.3808594, 0.68652344, -0.8666992, -1.5830078, -0.10797119, 0.034423828, -1.3066406, 1.3212891, 0.9394531, -2.34375, -0.44604492, -1.8935547, 0.81591797, 1.4892578, 1.9023438, 1.7431641, -0.06829834, -0.4116211, 0.9555664, -0.10333252, -1.0400391, -1.0068359, 3.1269531, 0.7739258, 4.2539062, -2.7246094, -0.04095459, -2.1367188, 1.2314453, 2.3828125, -0.34399414, 2.7441406, -1.5224609, -1.7675781, -2.34375, 1.9394531, -2.6464844, 1.2939453, -0.24121094, -0.39672852, -0.74316406, 1.4101562, -3.7246094, 0.17199707, -0.19433594, 0.25048828, -0.765625, 0.3815918, -0.30615234, 0.37841797, 0.9526367, 0.78759766, -0.69921875, 0.8276367, -0.76708984, -1.875, -0.09259033, -1.9716797, 0.20263672, -0.48510742, -1.3623047, 0.2722168, -0.9135742, -0.23925781, 1.6230469, -1.4257812, 0.81591797, 0.39941406, 1.6191406, -0.5673828, -2.1328125, -0.29833984, 0.9501953, -1.6455078, -1.3046875, 0.93310547, -0.03451538, -1.1787109, -1.0224609, 2.9316406, 0.2454834, -2.6523438, -0.3581543, -0.3100586, -1.0683594, -2.2441406, 0.8828125, -0.44628906, -1.0644531, 1.0117188, -0.5151367, -3.84375, 2.6464844, 0.29516602, -0.42285156, 0.43432617, -0.77685547, 1.0537109, -0.79052734, -1.28125, -0.79541016, -0.60498047, -2.0839844, -1.1074219, 1.171875, 0.3659668, -1.5410156, 1.5234375, -0.84228516, -0.11077881, 0.32006836, 0.11016846, 1.6035156, 2.3886719, -0.075927734, 2.1484375, 0.2548828, 1.3173828, 2.3066406, -0.8984375, 0.09472656, -2.7089844, -0.81640625, 1.6572266, 0.10430908, 0.3244629, 4.796875, -1.2773438, 0.48364258, -0.26733398, 1.6367188, -0.95751953, -2.4785156, -1.625, -0.5029297, -1.2001953, -3.3789062, 0.6074219, -1.28125, 0.25048828, 2.8027344, -1.4033203, -3.4550781, -0.9316406, 1.2099609, 1.359375, -0.33813477, -1.7509766, 0.21398926, -1.8388672, 1.3232422, 0.79052734, 2.1660156, -0.34228516, -2.96875, -2.5429688, 1.7714844, 1.8310547, 1.4130859, -1.8339844, -0.37548828, 3.4941406, 0.7832031, 0.55859375, -2.0976562, 2.3632812, 0.8129883, 1.5253906, -0.75927734, -3.9960938, 0.5390625, -0.15283203, -0.02784729, 0.5708008, -1.2001953, 2.0878906, 0.7529297, 0.50146484, 0.08673096, -3.5566406, 1.2861328, 1.5585938, -0.93847656, -2.171875, 0.515625, -0.004173279, 0.9296875, -0.94140625, -0.15771484, -0.54296875, 0.8935547, 0.52441406, -0.7050781, -0.05380249, -0.20935059, -0.028671265, -0.05041504, 2.0136719, -1.4423828, -1.0947266, -0.97265625, 0.58691406, -0.96728516, -3.0351562, -1.34375, -0.5683594, 0.54541016, 1.9394531, 2.7519531, -0.7602539, 1.9892578, 0.14587402, -0.6113281, -2.5703125, -1.4033203, 0.09442139, 3.1425781, 2.4277344, -0.5136719, -0.1619873, 0.4326172, 0.86816406, -0.7192383, 2.1816406, 3.0371094, 1.3095703, -0.82177734, -0.41870117, 2.0332031, 2.3339844, -1.5, 1.1220703, -0.54833984, 1.9394531, 1.2880859, -0.30493164, -1.8095703, -0.8803711, -0.9375, -2.0605469, -1.1308594, -2.7460938, 0.21948242, 0.064941406, -0.62597656, 1.75, 0.104003906, -0.16760254, -0.19970703, 2.0097656, 0.0031929016, -0.79541016, -0.28393555, 2.2324219, -0.70654297, -1.3271484, -1.6796875, 0.042938232, 1.0878906, 0.92578125, -0.16589355, 1.6728516, 0.32495117, -1.2431641, 3.9472656, 0.39208984, -3.1425781, -2.5136719, -0.08935547, 0.37353516, 1.9541016, -0.6582031, -0.49438477, 1.6953125, -1.4765625, 2.6621094, -0.18115234, 1.5869141, -0.44702148, -0.94677734, 2.0332031, -1.6113281, -0.46606445, -0.21887207, -2.4882812, -1.3447266, 0.35424805, 2.2578125, 4.359375, 0.11639404, -3.8769531, 3.2382812, -2.8496094, -0.76171875, 0.7836914, -0.91308594, -1.9980469, -0.25219727, 1.9433594, 3.4179688, -0.30078125, 0.39111328, -0.60302734, -0.29077148, 1.1943359, -1.6328125, -0.78759766, 0.9580078, 1.9433594, -0.69677734, -1.1591797, 2.6621094, -1.3193359, 0.07611084, -0.26171875, -2.5898438, 1.0253906, 1.2568359, -0.81591797, 0.99072266, -1.7705078, -3.4160156, 0.5, 2.9667969, -1.2382812, 1.8408203, 0.38989258, -1.7666016, -0.97216797, 0.3359375, 0.10144043, -0.0435791, -1.875, -2.0351562, -2.1953125, -1.4638672, 0.62646484, -1.4990234, 0.49926758, 2.1542969, -2.9003906, 0.25146484, -1.4511719, -4.375, -0.8491211, -2.7753906, -0.35961914, 2.3457031, 0.2998047, 0.6640625, -0.17553711, -3.9667969, -0.34960938, 0.57666016, -0.10638428, -0.057800293, -2.0078125, -0.19262695, 2.6796875, 0.66308594, -0.4423828, 0.47216797, -0.7402344, -0.10760498, -0.47631836, -2.3320312, 0.87890625, -2.7949219, 0.91552734, -0.4404297, 1.0742188, -1.8779297, -1.8330078, 0.41845703, 0.43603516, 4.6015625, -0.5991211, 1.5039062, 0.42578125, -1.6357422, 1.3300781, 0.35620117, -2.6230469, -1.8085938, -0.25512695, -1.3583984, -0.12536621, -2.2578125, 0.58935547, -1.0175781, -0.18981934, -1.2099609, 2.4160156, 0.7578125, 0.68896484, -2.4550781, 0.29101562, 0.10394287, 0.27124023, 0.49145508, 0.68408203, -2.2207031, -0.97216797, -0.9794922, -2.2382812, -0.14941406, 1.65625, -0.14050293, 0.11437988, 1.5224609, 0.7685547, 0.32421875, 0.46069336, -3.3984375, 4.5117188, -2.6953125, -1.2285156, 1.8925781, -0.28930664, -0.76953125, -1.734375, 0.5390625, 3.8496094, 1.9550781, 4.109375, -0.22436523, 0.35180664, 1.7978516, 4.7304688, 0.013198853, -0.27246094, 1.4550781, 0.48876953, -0.48364258, -1.7382812, 0.5395508, -0.5161133, -1.1738281, -0.008407593, 0.14379883, 0.5859375, 1.0517578, 2.6777344, 0.31030273, 0.31420898, 0.00081539154, 3.2890625, -0.6738281, -0.70458984, -0.8520508, -0.7919922, 0.95996094, -0.120666504, 1.5390625, 3.0800781, 0.43188477, 2.5683594, 2.015625, 1.1074219, -0.46240234, -1.0351562, 1.1474609, 1.3564453, -2.2636719, 4.8554688, -1.6259766, 0.28027344, 0.46289062, -0.86572266, 2.0058594, -1.7695312, -1.2861328, 2.2070312, -2.0253906, -0.20605469, 0.016357422, 0.024017334, -0.5439453, -2.0527344, -1.1152344, -1.4746094, -3.2285156, -0.09069824, -1.6025391, -0.94384766, -3.0996094, 2.1464844, -0.03527832, -0.69677734, -2.7128906, 3.6660156, -1.8134766, -0.89941406, -0.9213867, 1.7958984, 0.087646484, -0.71435547, -0.51220703, -1.6816406, 2.7734375, -0.57958984, -1.0517578, 1.3554688, -1.9111328, -0.013122559, 0.23168945, -0.7807617, 0.6196289, 0.6333008, 0.9091797, 1.3535156, -0.008918762, -0.33666992, -4.3789062, -0.5991211, 0.67285156, -1.7216797, -0.55615234, 0.28857422, -0.09008789, 0.88183594, -2.3378906, 1.9169922, -1.1982422, -0.7993164, 0.0625, -3.203125, 0.0927124, -0.5048828, -3.8339844, 0.120910645, 1.4003906, -0.7739258, -0.5449219, 0.14428711, 0.11254883, 2.6269531, 0.9628906, -0.44995117, -0.70214844, -1.8564453, 0.3708496, -0.47558594, 0.13000488, 1.09375, 3.1933594, -1.7578125, -2.2441406, -0.81689453, -0.43041992, 1.3662109, 1.0234375, -0.22729492, 0.20092773, -0.7993164, 0.9526367, -1.6787109, -1.2617188, -0.105285645, -0.46362305, -0.28759766, 0.08886719, 0.38427734, 3.2070312, -0.06542969, 0.6669922, 0.6723633, -0.91064453, 0.19311523, -1.4550781, -0.53564453, 0.14440918, -0.7529297, -2.5429688, -1.46875, -0.61572266, -0.20776367, -2.2148438, 0.6484375, 0.08673096, 0.10650635, 0.19628906, 1.5126953, 1.0048828, 3.75, 1.0078125, 0.06768799, -0.85791016, 0.9121094, -1.8408203, -1.3935547, 0.48828125, 1.1035156, 1.3447266, 1.0478516, -0.55322266, 3.1191406, -1.4208984, -0.21594238, -3.78125, 2.5507812, 3.0722656, 1.2304688, 3.7910156, -2.6132812, -1.8710938, 1.015625, -2.1601562, -1.2089844, 0.39160156, -0.16760254, -0.22241211, -1.3203125, -0.05267334, 0.38745117, -1.9794922, 0.6972656, 0.62353516, 0.81103516, -2.7832031, -0.44604492, -1.4560547, 0.4375, 0.4897461, -0.37451172, 1.3154297, -1.7890625, -1.0488281, 2.1992188, 0.8925781, -1.3671875, -0.2841797, -1.6699219, -0.4091797, 1.6181641, 1.0595703, 0.57373047, -1.0410156, 1.1816406, -1.6328125, 3.2050781, -0.6064453, 0.64990234, 1.3974609, 1.7607422, -1.28125, -1.6533203, 2.2617188, 2.0878906, -0.85595703, 2.4121094, -0.25683594, -1.9941406, 2.3828125, 1.921875, -1.1826172, -0.33447266, -1.1035156, -0.63964844, 0.84765625, -0.26220703, -3.5566406, -0.59033203, 2.1171875, 0.4086914, 2.8828125, -1.6425781, -0.49438477, -0.27539062, -2.5449219, 0.47387695, -1.0878906, -1.0068359, -1.5498047, -0.6923828, -0.13146973, -1.8535156, 0.60595703, 3.4414062, -0.7709961, -2.3652344, 2.8222656, -0.6328125, 0.8408203, -0.7441406, -1.4638672, -1.53125, -0.30151367, 2.0878906, 1.5517578, 0.5102539, 0.13269043, 0.17687988, -1.4550781, 2.2558594, -0.23754883, 1.2666016, -2.2851562, -0.23388672, 3.4648438, -3.2167969, -1.5751953, -0.38232422, 2.0898438, 0.37426758, 0.30493164, 1.6308594, 0.08856201, -0.3918457, 0.03756714, -1.3134766, -0.796875, -1.3964844, 1.0185547, 1.5976562, -1.7041016, -0.29638672, 1.3330078, -0.90234375, -0.28686523, -0.67626953, 0.17150879, -0.06896973, 1.1367188, -2.5996094, -1.3759766, -0.21044922, -1.0595703, -1.7666016, 2.0820312, 1.6357422, 0.16638184, -2.0351562, -0.36035156, 1.9580078, -1.5205078, -2.0117188, 2.9453125, 0.6694336, 1.4453125, 0.0927124, 1.984375, -2.8222656, 3.1386719, -0.54296875, 0.21276855, 2.125, 0.9091797, -2.3457031, 0.16870117, -1.4794922, -1.4482422, -2.1464844, 0.13085938, 1.5361328, -1.8144531, 1.9628906, 0.7182617, -0.16137695, 0.32788086, 0.57128906, 1.9169922, 0.36645508, 2.0527344, -1.3818359, 1.7001953, -2.5058594, -2.0839844, -0.25561523, -1.0429688, -0.021377563, -0.85058594, 1.8427734, 1.0927734, 1.2011719, 0.8613281, -0.45507812, 2.4316406, 0.9506836, 2.1171875, 1.2333984, 2.1074219, 2.2382812, -1.4707031, -1.171875, -1.1376953, 1.234375, -0.7788086, -0.32177734, -1.2158203, 0.19116211, -0.27856445, -0.55029297, 0.32177734, 0.45703125, 2.3652344, 1.1953125, -0.35009766, 1.8134766, 2.015625, -1.7050781, 2.7441406, -0.7241211, 2.5703125, -0.7216797, 5.5039062, 1.09375, 0.082458496, 1.0507812, -0.80371094, 0.3466797, 0.29052734, -2.3027344, -0.09313965, -2.4101562, -1.7402344, -0.45629883, -0.52978516, -3.5195312, 0.47973633, -1.734375, -0.54052734, -0.79785156, 1.7441406, -0.13720703, 3.9101562, 1.3066406, 0.5449219, -0.22668457, -0.26367188, -0.001461029, -0.2866211, 2.4492188, -1.1572266, 1.8710938, -0.4033203, -1.8857422, -1.3291016, 0.1439209, 0.7416992, 2.2949219, 1.8789062, 3.0234375, 2.0820312, 3.0546875, 2.2617188, 1.1269531, 1.5107422, 3.6386719, 0.087768555, 0.21765137, 2.9667969, -1.0966797, 0.15600586, -1.3105469, 1.5117188, -1.2363281, -0.35351562, 1.53125, 0.26049805, 0.46142578, -1.671875, 1.5068359, -1.1826172, 0.23962402, -0.77001953, -1.0126953, -0.79785156, -0.64941406, 2.0078125, -0.47460938, 1.6425781, -0.35180664, 2.0605469, -1.8310547, 0.2614746, 3.1503906, -3.1367188, 1.2080078, 0.6567383, 0.42871094, 0.24023438, -0.119018555, 2.2285156, 1.1123047, 0.5908203, 2.0117188, 0.8227539, 1.3847656, 1.4736328, -0.19372559, 0.5209961, 1.1865234, 1.0214844, -1.1757812, -0.65527344, 1.6054688, 0.43481445, -1.3037109, -1.9335938, 2.4589844, -1.4912109, 1.625, 1.2773438, -2.7285156, 1.6367188, 1.1513672, 2.4003906, -0.9326172, 3.4921875, -0.43579102, -2.0136719, -0.4140625, 0.9897461, -0.21826172, 1.5078125, 0.5727539, -2.2695312, 0.38061523, -0.3942871, 1.2265625, 1.2890625, 0.8613281, -1.2050781, 2.2871094, 0.37109375, 3.515625, 0.5644531, 0.022857666, -0.091430664, 0.609375, 2.4199219, 1.9492188, 1.53125, -0.32128906, -1.0693359, -1.1992188, 1.1757812, -1.2578125, -2.0898438, -1.5253906, -2.1757812, -0.1743164, -1.4345703, -1.6855469, 3.515625, 0.09631348, 2.046875, 0.85009766, 0.77685547, -2.53125, 1.5683594, 0.44677734, -1.1650391, -0.8442383, -3.1328125, 0.9584961, -0.39404297, -0.59277344, 0.051483154, 0.9428711, 2.125, -0.6298828, 0.4543457, -1.8173828, -0.64941406, -0.2614746, -0.140625, -1.2841797, -0.7055664, 1.5703125, 0.43847656, -0.9790039, 3.234375, -1.2900391, -0.36572266, -1.0322266, -1.1005859, -1.5869141, -0.31567383, -0.49951172, -0.6040039, 2.4453125, -0.41259766, -1.4199219, -0.98291016, -4.7226562, -1.5673828, -1.2998047, 0.34643555, -0.52490234, -2.1875, 0.37280273, 0.11193848, 0.20812988, 0.38305664, -3.4882812, -0.124938965, -1.1445312, 0.5419922, -0.7207031, 0.5371094, -0.7246094, -0.6713867, -0.9609375, 1.2011719, 1.0654297, 0.6767578, 0.9189453, 3.0625, 1.1210938, -2.3535156, 1.4931641, -0.84033203, 2.3964844, -0.16333008, -0.93847656, 2.0449219, 1.3535156, -1.0546875, -1.0976562, -2.8613281]}, "B0039Z5NNM": {"id": "B0039Z5NNM", "original": "Brand: Music City Metals\nName: Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others\nDescription: \nFeatures: Listing is for 1 control knob.\n2.3125 inch dia. control knob\nFits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N\nFits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01\n", "embedding": [-3.0136719, -0.17834473, 2.6894531, -1.0263672, 2.3710938, 0.8574219, -0.98535156, 0.32861328, 1.2304688, -0.41870117, 2.5820312, 0.4177246, 1.6445312, -2.09375, 0.29101562, 3.1953125, 1.4023438, 0.28149414, -0.7080078, 1.8105469, 0.97021484, -0.8046875, 0.4880371, -2.5742188, 0.68603516, 2.7695312, 3.9140625, -1.9707031, 3.0527344, -3.0449219, 0.9658203, -0.17102051, -1.4560547, 1.6376953, -3.1035156, 1.0908203, 1.9189453, 2.6484375, -2.0507812, 0.69970703, 0.52978516, 0.0287323, -0.15905762, 1.1513672, -1.6513672, -1.765625, 1.4345703, 0.020462036, -2.9121094, -1.3603516, 1.9707031, 1.9013672, 0.09692383, 0.16894531, -1.8789062, 2.4628906, -1.7167969, -0.37182617, -0.14672852, -0.21118164, 2.5332031, -0.059143066, -2.5859375, 0.73779297, 0.3786621, 5.0625, 0.19750977, 0.15563965, 0.20703125, -1.1054688, -0.053863525, 1.7988281, -0.07055664, -0.009292603, 0.45239258, -0.47509766, -1.8535156, -0.31762695, -2.5351562, -1.2109375, -2.9707031, 1.6660156, -2.0664062, -2.4082031, 1.5449219, -2.0957031, -1.9726562, -0.2265625, 1.9980469, 2.1582031, -0.5708008, 0.09100342, -2.8398438, -1.7363281, 2.484375, -0.3701172, -2.3359375, -0.8442383, 2.0097656, 1.2705078, -2.7460938, -3.2285156, 0.47680664, -1.4453125, -1.0761719, -0.9003906, 0.51220703, 1.0449219, -2.6679688, -2.5058594, -0.05105591, 0.9355469, -1.4287109, -2.4648438, -0.13342285, -1.6025391, 1.4082031, -0.115356445, -0.94921875, -0.50146484, 2.6484375, 0.37060547, 0.40600586, -1.5830078, -1.5234375, -0.4345703, 0.6958008, 0.5942383, 6.0664062, -0.06225586, 0.63134766, -0.69189453, 4.4648438, -1.1494141, 0.041137695, -2.0878906, -1.0810547, -1.6240234, -0.8408203, 0.2211914, -1.2412109, 0.56347656, 1.1992188, -2.734375, -3.7558594, 1.0566406, -3.1191406, 0.019592285, -0.35180664, -0.6738281, 0.48510742, 0.3647461, -0.89941406, -0.84521484, 2.0585938, -0.5961914, 0.082214355, -1.9423828, -1.1679688, 0.45043945, 0.35498047, 0.69628906, -1.0380859, 1.0371094, -0.5107422, -0.2734375, -1.7050781, 1.2148438, -0.3996582, 2.375, 0.58154297, 1.6738281, 2.5078125, -0.61035156, -1.1279297, -0.19067383, -0.47973633, 1.9707031, -0.21484375, 0.7470703, 0.12164307, -2.3691406, -0.26708984, 1.3056641, 0.64746094, -1.5009766, 0.22692871, 0.27490234, 1.0253906, 1.9921875, 0.7441406, 1.0390625, 1.9833984, 0.4716797, -0.4345703, 0.24841309, -0.25268555, -1.03125, -0.06286621, 0.17236328, -2.375, -0.2890625, 1.3056641, 0.14111328, -2.0019531, -1.671875, 1.3300781, 0.96777344, 1.140625, 0.35668945, 1.5664062, -1.7763672, 2.6113281, -1.2822266, 2.9101562, -2.9765625, 1.2539062, 2.0195312, -0.064941406, 2.984375, -1.0263672, -0.8857422, -0.15063477, 4.0625, 0.04473877, 1.7089844, 0.42700195, 2.0742188, -2.765625, -2.6230469, 1.6660156, -1.4658203, -1.8564453, 0.65478516, 0.7915039, 1.6191406, 2.2480469, -2.2597656, 1.1669922, 0.05178833, -0.7949219, -3.5195312, -2.0742188, -2.3691406, -0.3959961, -0.609375, -4.6328125, -0.061645508, 1.6142578, 1.0195312, -0.765625, 2.1230469, -0.18127441, -0.421875, -2.0722656, 0.5673828, 3.0546875, 1.4248047, -0.9897461, -2.7929688, 2.4980469, -0.3491211, -0.16967773, 1.8837891, 1.8769531, 0.38354492, 4.4648438, -2.0078125, -1.1650391, -0.5854492, 0.064331055, -0.8046875, -0.13061523, -1.0263672, 0.28076172, 1.4306641, 0.27270508, 4.3242188, 2.0664062, -0.46435547, 1.0361328, 0.63964844, 3.6796875, -1.5410156, 0.9526367, 2.1582031, -2.9824219, -1.4443359, 0.10437012, 1.0625, 3.0722656, 1.7568359, -4.9375, 3.6074219, -0.8413086, 0.2841797, -0.30859375, -3.5859375, -2.7285156, 1.1728516, 1.0976562, 2.0683594, 1.7773438, 1.1708984, -1.1582031, 0.79248047, -0.17944336, 0.05807495, -0.6845703, 1.5351562, -0.5966797, 0.5175781, -0.057403564, -0.5161133, -0.19628906, -1.3291016, -0.25756836, -3.0761719, 1.5703125, -2.25, -0.55908203, 1.3125, 0.06555176, -1.8730469, 1.5185547, 3.1367188, -1.7832031, 0.17736816, -0.5644531, -0.9404297, -0.8408203, 0.5073242, 2.8046875, -2.7460938, -3.0058594, 0.50927734, -2.5097656, -3.1601562, -0.020736694, 0.9501953, -0.6533203, 2.2324219, -3.1015625, 1.8837891, -1.7636719, -3.921875, -1.2988281, -0.117004395, 0.96191406, -1.7373047, -1.3378906, 1.5068359, -1.46875, -2.7226562, 1.4892578, 0.3371582, 2.0996094, 2.296875, -0.39111328, 0.62402344, 0.33642578, -1.2597656, -0.6069336, 1.1835938, 0.7573242, 1.2304688, -0.703125, -2.765625, -1.4072266, -1.6933594, -0.4091797, -1.6601562, -0.19067383, -2.9511719, -2.1386719, -0.90234375, -1.3173828, 2.6328125, -1.1738281, 2.2792969, -0.025802612, 0.32421875, 2.7226562, -3.75, -1.4980469, -0.28027344, 2.5585938, 0.5263672, -0.7036133, -1.1816406, 0.8178711, -1.109375, 0.5517578, -1.5664062, -0.4777832, -0.53515625, 1.9550781, -2.9765625, 0.62597656, -0.75341797, 2.0253906, -0.40625, -1.4980469, 0.36743164, -0.3996582, -3.7480469, -1.0634766, -2.6191406, -0.06088257, 0.5239258, -0.9946289, 0.4128418, 0.2154541, 1.3007812, 1.3710938, -2.0996094, 1.2832031, -2.8613281, -2.7773438, 0.73876953, -1.5048828, -2.3671875, -3.3457031, -0.3388672, 3.0097656, 0.5175781, 3.2753906, 0.12445068, 1.3398438, 0.29638672, 0.3239746, 1.390625, 0.50439453, 2.7539062, 1.8876953, -0.89941406, -2.6816406, 2.0292969, 0.8540039, -2.9570312, -0.32885742, 2.0292969, 2.6738281, 1.8378906, 2.3886719, -0.101257324, 0.33251953, -1.5058594, 3.2324219, 0.12683105, 1.8759766, 0.4963379, 1.6923828, 1.1611328, 0.44213867, 2.8535156, 0.77001953, 1.7724609, 2.1074219, -1.1240234, -0.035583496, -1.9013672, 0.45922852, 1.6875, 1.6191406, -2.8789062, 3.2988281, -1.2851562, 0.8305664, 1.5839844, 0.4387207, 1.1132812, -4.7695312, 0.26611328, 3.5820312, -0.00036168098, -1.0292969, 1.2158203, 0.1920166, 0.25048828, -2.5898438, 0.4128418, -1.1953125, 0.04171753, -0.71777344, -1.5, 0.064331055, -1.0449219, 4.2304688, 0.40698242, -0.6772461, -0.24633789, 2.1953125, -0.13256836, -1.7871094, 2.2675781, 2.9238281, -0.56103516, -0.6142578, -0.27124023, -2.0195312, 3.6132812, -2.2089844, -0.079956055, -0.75439453, -3.0058594, 0.7885742, 0.47070312, -2.765625, 3.1621094, 0.37939453, 1.1035156, 0.5620117, -2.3828125, -0.5703125, -3.2167969, -1.5673828, 0.19750977, -3.4824219, -1.3251953, 0.47583008, -0.00034713745, 1.2373047, -1.9189453, 2.1152344, 0.24194336, -0.7138672, 0.42919922, -1.0605469, 2.015625, -1.9130859, -3.2402344, 2.8554688, 1.3925781, 0.24279785, -0.17687988, 3.2382812, 0.27685547, 5.796875, 0.28466797, -2.140625, 0.5571289, -0.7182617, -1.1660156, -0.35791016, -2.0253906, 0.7553711, -0.29101562, -0.38745117, -2.984375, 0.6669922, -2.0722656, 1.5341797, 0.61083984, -3.3867188, 0.6069336, 0.390625, 0.5463867, -1.4492188, 0.28076172, 1.7744141, 0.8095703, 0.19934082, 0.21557617, 3.7324219, 2.7910156, -0.72509766, 0.8828125, 1.0869141, 0.2788086, -1.0341797, 2.3632812, -0.27392578, 1.3701172, -0.8833008, -2.3710938, -0.03375244, 1.3486328, 1.0400391, 0.46850586, 1.3261719, 1.3886719, -4.328125, -0.19958496, 0.70996094, -1.5419922, 2.0546875, -1.2148438, -2.7460938, -1.4707031, -0.020355225, -0.30322266, 0.4038086, 0.45117188, 0.7270508, -1.0673828, 0.33984375, -2.6972656, 1.8183594, -2.2578125, -2.6679688, -3.5136719, 0.8041992, 1.0527344, -1.0048828, 3.0410156, -1.4746094, 0.08685303, 0.45385742, -1.7041016, -1.1445312, -1.8027344, -2.09375, 2.1757812, -0.31762695, 2.4882812, -0.9111328, -0.7246094, 2.9355469, -1.7958984, 1.7333984, -0.99902344, 1.9257812, -2.0351562, 2.8046875, 2.3320312, -0.82910156, 2.0234375, -0.3569336, 2.5507812, 1.0869141, -0.19213867, -1.5292969, 1.6337891, 0.6201172, -1.5234375, 1.5634766, 0.9526367, 4.3046875, -0.60595703, 0.28320312, -0.74609375, -1.5742188, 0.69873047, -0.453125, 2.7792969, 2.9101562, -1.375, -0.74365234, 3.9140625, 1.8867188, -0.51123047, 3.0625, -0.13195801, -4.2382812, 1.578125, 1.2851562, -2.1171875, -0.4855957, -0.17993164, 0.7919922, 1.4628906, -1.0136719, -2.421875, -1.9609375, 1.1875, -1.0195312, 0.63427734, 0.15209961, -0.6533203, 1.5166016, -3.3613281, -1.4384766, -1.0761719, -0.3491211, 0.8618164, -1.3115234, 0.012763977, -0.02178955, 0.12072754, 3.3691406, -1.8779297, -2.9667969, 0.09698486, 0.19555664, -0.113098145, -0.6489258, 0.47875977, 0.55810547, -0.2783203, 0.69189453, 1.1699219, 1.6318359, -0.28515625, 4.0546875, -2.1328125, 1.7744141, -1.7333984, 0.057678223, -1.4179688, -1.8701172, 1.8662109, -1.3632812, -1.1552734, -3.2675781, 3.2109375, 0.4489746, 3.6835938, 0.59521484, -0.7558594, -0.7089844, 1.1513672, 0.22827148, -1.1455078, -2.1777344, -1.2480469, 2.3027344, -0.17321777, 0.12176514, 0.14611816, -1.0830078, -0.99560547, -0.24658203, 0.57958984, -2.0644531, -1.0097656, -0.91796875, 1.3222656, -0.43774414, -2.2109375, -2.0761719, 1.8066406, 1.2246094, -0.89160156, -3.359375, -1.5039062, 1.34375, -1.9794922, -1.7646484, 1.09375, -0.68896484, 1.5996094, -2.0839844, 2.5273438, -1.0449219, 1.4658203, -0.14575195, 0.6796875, 2.5449219, -0.060638428, 0.24353027, -0.4633789, -1.609375, 0.2902832, 0.84765625, 1.2744141, -2.3339844, 0.81103516, -0.77441406, 0.17150879, 1.5390625, -1.8818359, -1.5507812, 0.12695312, 0.59472656, 0.074645996, -0.6689453, 2.4042969, -2.6523438, -0.3486328, -2.0058594, -0.5185547, -0.35986328, -0.671875, 0.07147217, 1.2929688, -1.6103516, -0.42138672, 1.9423828, -0.4650879, 0.9794922, -2.0117188, -0.56640625, 0.099121094, 0.62939453, -0.39501953, 0.5541992, 0.89453125, -0.17590332, -0.45166016, 0.2565918, -2.5800781, -1.0976562, -0.9169922, -0.15344238, 0.08892822, -0.11981201, 0.90185547, -2.8496094, -0.43603516, -0.011512756, 2.6210938, 0.10223389, 1.1337891, 0.2705078, 0.9916992, -0.05899048, 4.0546875, 0.09039307, -0.8178711, 0.16625977, -0.7583008, 2.3769531, -2.640625, -1.8896484, -0.7138672, 0.7480469, 0.55566406, -3.2519531, -3.2851562, -3.2714844, 0.64208984, -1.5791016, 0.22570801, -0.73583984, 1.7128906, 0.49682617, 1.421875, 0.28344727, 1.1074219, -1.6933594, -0.8881836, -3.0878906, 1.0263672, 0.7890625, -1.140625, -1.6054688, 0.4248047, 0.1619873, -0.6899414, 0.06976318, 1.1347656, 1.3925781, 0.36083984, 1.1201172, 0.122924805, 1.8710938, 1.46875, 0.1829834, 1.4482422, 2.3417969, -0.4128418, -0.34423828, 0.9243164, 1.0634766, 0.30078125, -2.8398438, 2.6679688, -0.4128418, 1.1552734, 1.0927734, 0.67041016, 1.859375, -1.8427734, 0.8442383, -1.2900391, 0.5698242, -2.5898438, 0.3383789, -0.56640625, -0.38598633, -1.7246094, -0.16345215, 5.640625, -0.024383545, -0.875, 1.5175781, -2.8144531, 1.7412109, -0.5830078, -0.60253906, 2.4511719, -1.8310547, -0.025436401, -1.2148438, 1.2490234, -0.8178711, 3.921875, 2.21875, 1.7421875, 0.7675781, 0.74365234, -1.4882812, 2.4921875, 1.6689453, 0.5180664, -0.55859375, -1.9541016, 1.3857422, 1.1591797, -3.1992188, -2.1660156, 1.7226562, 0.8154297, 1.0175781, 0.88720703, -3.453125, -1.4550781, 0.2878418, -0.070251465, -2.3476562, 0.9794922, 0.68115234, -1.1181641, -0.16149902, 0.31176758, -0.89746094, 1.2890625, -0.01727295, -0.9638672, -0.41870117, 2.0273438, 1.1992188, 2.2929688, 0.5107422, 0.11981201, 1.8486328, -0.26879883, 0.9667969, -1.7392578, 1.2373047, 0.6064453, 0.7763672, 1.3535156, 0.5776367, 1.3867188, -3.6113281, -3.6308594, 2.7265625, -0.3720703, -1.0742188, -2.0859375, -0.40551758, 0.09820557, 2.0039062, 0.7260742, -1.7783203, 3.34375, 0.2854004, 0.6816406, 1.3037109, -0.17700195, -1.6855469, 2.9941406, 0.27905273, -0.8178711, -0.019470215, -1.0117188, 1.4199219, -0.19445801, -1.71875, 3.3652344, 0.8178711, 2.5722656, -2.0703125, -1.6669922, -0.09954834, 0.37597656, 0.16186523, -2.1347656, -0.59277344, -3.6757812, -0.24377441, -1.5117188, 1.2978516, 0.99902344, 1.2275391, 0.15588379, -4.25, 1.8710938, 0.5800781, -0.5991211, -1.7021484, 0.40283203, 1.9091797, -1.3837891, 0.7597656, -1.1533203, -3.6054688, 2.5996094, -0.11505127, 1.4501953, -0.43701172, -1.9648438, 0.44873047, -0.4267578, 3.3398438, 1.0371094, -1.5742188, -1.9707031, 1.3583984, 0.8461914, -1.4111328, -2.7695312, 0.61865234, 0.7661133, -0.27172852, 2.4433594, 1.9482422, 1.5058594, 0.6064453, 1.4003906, 0.05706787, 0.2680664, 1.5830078, 0.6044922, 0.8798828, 1.5332031, -2.2832031, 1.7607422, 0.5727539, 1.4853516, 1.0214844, -1.8886719]}, "B07KX3FW9C": {"id": "B07KX3FW9C", "original": "Brand: Simond Store\nName: Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers\nDescription:

          Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600\u00b0F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

          The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

          Include Accessories with Identification

          • FORGE: Forge Body
          • PART-A: Single Burner
          • PART-B: Burner Air Chock Valve (1 Pcs)
          • PART-C: Gas Inlet pipe with valve
          • PART-D: 6.5' (2M) Gas Hose with clamps
          • PART-E: Refractory Fire Brick
          • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
          • PART-G: Teflon Tape
          • PART-H: Metal Holding Stand

          Specification

          • Material: 1/8\" Thick Structural Square Steel Pipe
          • Burner Nozzle Material : SS-304
          • Inside Floor : 1\" Thick Refractory Brick
          • Inside Insulation Material : 1\" Thick Refractory Ceramic Fiber 2600\u00b0F 8 pcf
          • Forge Internal Dimension : 2.75\" x 4\" x 10\"
          • Burner: Single Burner

          Note: User Manual, Assembly and Safety instructions are Included in the packing.

          \nFeatures: Single Burner Propane Forge Furnace with 2600 degree capacity\nlined by 1\" thick high density ceramic fiber blanket\nComparatively High Tensile Strength & Can withstand Direct Flame\nComes with stand\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "embedding": [0.22253418, 1.8408203, -0.53027344, -0.7973633, -1.3574219, -0.26513672, 0.041778564, -1.8486328, -0.7602539, 1.1621094, 0.6069336, 0.5053711, 0.91259766, -2.1308594, -0.2290039, -0.25170898, -1.1855469, 0.16088867, 1.5322266, 3.5058594, 2.3964844, -0.042938232, 1.6347656, -0.8022461, 1.0791016, -0.066101074, 2.9609375, -3.1484375, 0.27978516, -0.020141602, 0.08935547, -0.5756836, 0.60253906, 0.73095703, -2.3769531, -0.75927734, -2.3554688, 0.05392456, -1.1416016, 0.82373047, -0.54003906, 0.86572266, 2.4628906, 0.8173828, -3.1679688, 0.66845703, 1.6269531, 0.49902344, -0.54003906, -0.5449219, 0.13635254, -0.29296875, 0.8901367, 0.9790039, -1.4111328, -0.80322266, -1.0859375, -2.1523438, 3.0605469, -0.4909668, 1.7470703, -0.47192383, -1.7001953, 0.5878906, -1.7207031, 0.5292969, 0.6220703, -2.3164062, -0.2836914, -0.5629883, -0.1071167, 2.1171875, 1.3886719, -0.3149414, 2.3339844, -0.8105469, -1.4023438, 1.4970703, 0.96875, -0.47143555, -1.7226562, 0.21765137, 0.16796875, -0.3774414, -0.8779297, 0.07733154, -0.921875, -0.13720703, 1.609375, 3.0644531, 0.73339844, 0.8232422, -1.4482422, -6.0742188, 1.5654297, -1.4345703, 0.60498047, 0.2800293, -0.63183594, 2.4707031, -1.0244141, 0.16687012, -1.4365234, 1.4902344, -2.0722656, 0.28027344, 1.0888672, 3.875, -1.1357422, 1.0068359, -1.2148438, 0.2680664, 0.9458008, -0.38110352, -0.082458496, -1.0683594, -0.004749298, -0.5810547, 1.2871094, -0.63623047, 3.7011719, -0.39379883, 0.41088867, -1.2207031, -0.5493164, 2.8300781, -0.66552734, 0.47265625, 2.8183594, -2.4824219, -0.7167969, -1.0292969, 0.47802734, -0.59277344, -2.8027344, -0.9902344, -0.96972656, 0.17419434, -3.4980469, -1.1464844, 0.23547363, 2.1152344, -0.5029297, -2.4902344, -2.4960938, 0.5727539, -0.13574219, 0.8535156, 0.3972168, -0.33422852, 1.3505859, -2.2578125, -2.0917969, -1.0273438, 0.88623047, 1.9453125, 0.100097656, -3, 2.5214844, 0.36816406, 0.11791992, -0.2770996, 0.4111328, 1.5214844, -2.3164062, 0.1920166, 0.2607422, 1.2558594, -2.3183594, 1.3261719, 1.4501953, -2.1542969, -0.07312012, -0.02180481, -0.022506714, -1.5996094, -0.5004883, 2, 1.5351562, -1.7148438, -1.6025391, -0.9506836, 1.7353516, -1.2685547, 0.9013672, -0.8359375, 1.6816406, -0.7236328, -0.037750244, 0.7480469, -2.3964844, -0.29711914, 2.21875, 2.2519531, -0.029891968, -1.4277344, 1.1113281, -3.6835938, 2.2832031, -1.4082031, -3.1367188, -2.0664062, 0.85595703, 1.0576172, -2.9277344, -1.0839844, 0.5551758, 1.1132812, 2.4023438, 2.515625, 0.15808105, -1.0019531, 0.2619629, 0.6142578, -0.0024852753, -4.3671875, -0.69677734, -0.90527344, 1.6113281, -0.60009766, -1.1855469, -0.9243164, 0.75634766, 0.7675781, 4.1171875, 1.4394531, -0.42114258, 1.4248047, -2.140625, -0.12536621, 3.3945312, 2.5332031, -2.3710938, 1.1923828, -0.7602539, 1.6425781, 0.5605469, -1.3935547, 2.5742188, -1.0595703, 1.2841797, -1.0693359, -0.031158447, -1.0068359, -0.66015625, -0.17297363, -0.21716309, -0.40307617, 1.0244141, -0.0690918, 1.0292969, -0.11853027, 1.2578125, 2.4335938, -0.74853516, -0.19616699, 0.047576904, -1.6933594, -1.6298828, -2.7226562, 1.1630859, 0.3894043, -0.79296875, 0.31860352, 1.9921875, -1.4833984, -0.55908203, -0.19567871, -1.0507812, 1.4892578, 2.2441406, 0.62158203, 1.6064453, 2.0800781, 1.2041016, 1.4853516, -1.4912109, 2.7871094, -1.078125, 1.4794922, 0.31958008, -1.8740234, 1.6220703, -1.859375, 0.7729492, -0.5859375, 2.3183594, -0.32641602, -1.2568359, 1.8994141, 6.15625, -0.43823242, -0.23205566, 2.3710938, -0.5961914, 0.38867188, 0.021606445, 2.2617188, 0.35009766, -1.9287109, 1.6523438, 0.7553711, 1.78125, 0.91845703, -0.70410156, 1.0888672, 2.7617188, -0.9770508, 0.39135742, -0.5883789, 0.2578125, -0.070373535, 0.04776001, 2.9941406, -3.0820312, 0.0826416, 0.7998047, -2.5820312, 1.7636719, 0.62841797, 1.5742188, 2.1660156, 1.5371094, 0.2265625, -0.018157959, 1.4716797, 0.032043457, 1.9003906, 0.8881836, -1.3867188, -1.4560547, -1.7177734, -1.8486328, -0.8959961, 0.10882568, 0.71533203, 1.1738281, -2.1035156, 1.3251953, -1.6582031, 0.8676758, 0.5024414, -1.1669922, 0.50097656, -0.3828125, 0.052825928, -1.6914062, -0.58251953, -0.82421875, -0.65722656, 2.6738281, 3.2109375, -1.9824219, -2.1738281, -2.0175781, -1.5986328, -1.4150391, -0.46411133, -1.0146484, 2.6640625, -0.8276367, 0.5566406, 0.41479492, -1.1289062, 0.095703125, 0.0020980835, 1.0507812, -2.4941406, 0.005317688, 0.18811035, -1.1152344, 0.42236328, -0.98046875, -0.46069336, -0.44482422, -0.46679688, -0.06335449, 3.4746094, 0.52246094, 2.3203125, -1.40625, -1.8974609, -1.2724609, -0.29736328, -1.5283203, -0.003622055, -0.8408203, -1.0175781, -2.1445312, -3.6210938, -0.06677246, -0.45214844, -0.85498047, 0.038085938, 0.7109375, -0.9765625, 0.39624023, 0.026428223, -1.9580078, 0.5444336, -0.50390625, 1.6445312, -1.1005859, 0.1772461, -1.7275391, -0.2788086, -0.79833984, 1.5664062, 0.96777344, -1.2128906, -0.17700195, -0.9848633, -0.38256836, -1.5556641, 1.9785156, -1.7890625, 1.5566406, 0.10571289, -1.546875, -0.4489746, -1.7333984, -0.66845703, 0.36987305, -1.1962891, 3.4394531, -0.5019531, 0.79833984, 0.0015659332, 0.25610352, 1.4355469, 1.7226562, -2.4296875, -2.4882812, 0.9995117, 1.8056641, -2.2382812, -0.8027344, 1.2480469, 2.0664062, -3.4882812, 1.7353516, 3.3203125, 0.34179688, 0.21313477, 2.2441406, 1.578125, -0.38061523, -1.2568359, 0.0017900467, 0.95654297, 0.23706055, -0.18652344, 0.036834717, -0.25708008, 0.9946289, 0.16503906, 2.6132812, 0.80908203, 3.546875, 3.1484375, 1.8066406, -1.8134766, -1.9658203, -0.47851562, 0.34887695, -0.13879395, 1.8730469, -0.44311523, -0.96875, -0.57421875, 1.0058594, 1.8369141, -2.0820312, -1.3691406, 1.8349609, -0.45581055, 0.63134766, -1.0429688, 1.3642578, -1.3886719, -0.74609375, 1.2695312, 0.18103027, -1.4921875, 0.7553711, 0.93847656, 1.2841797, -1.9736328, 1.2841797, 0.4284668, -0.8378906, -0.8046875, 0.9526367, -1.1875, -0.9555664, 0.58447266, -0.036895752, -0.47314453, 1.5214844, 0.6640625, -0.37719727, -1.6982422, -1.5996094, -0.5620117, -1.109375, 0.18322754, 0.44799805, -0.7368164, -1.234375, -1.1933594, 0.24694824, -0.088134766, 0.97753906, 0.59716797, 0.12420654, -1.1386719, -1.2402344, -0.39453125, -2.3945312, -0.42822266, 3.4335938, -0.8989258, 0.92822266, 0.8066406, 3.4726562, -1.6914062, -0.5839844, 1.0029297, -3.3320312, -0.038208008, -0.66796875, -2.5742188, 0.47680664, -0.4560547, 1.6552734, 3.1347656, -0.44384766, 0.36547852, 2.4882812, 0.80908203, -4.5546875, -1.7050781, 0.21679688, 1.7519531, -2.3066406, -3.3378906, 1.9267578, -0.11071777, -1.2451172, 1.2783203, 2.8378906, -0.1730957, 1.0751953, 0.044036865, -3.0234375, -0.78515625, 2.0605469, 0.039978027, -0.06335449, -1.1767578, 0.52490234, -0.6948242, 0.15515137, -0.42163086, 2.1660156, 0.06829834, 0.20080566, 0.5126953, 1.6923828, 0.49023438, -1.2304688, -0.40454102, -1.3486328, 1.6103516, 0.45776367, 0.0021781921, 2.7421875, -0.42041016, 0.62939453, -0.8989258, 0.2944336, 0.33813477, -1.859375, 1.6318359, 1.3759766, 1.6865234, 1.7050781, 1.25, 0.074279785, 0.054901123, 0.94628906, -1.6132812, -0.17163086, 0.77978516, 0.3244629, -2.3964844, 1.7802734, -2.0039062, -0.5883789, 1.2080078, 1.1376953, -1.7050781, 2.3886719, 2.0703125, 0.9135742, 1.6523438, -0.27197266, -2.0234375, -0.3461914, -0.50341797, -0.51708984, 0.7011719, -0.5366211, 0.5488281, 1.5458984, -0.5517578, 0.23864746, 0.72753906, 2.2070312, -0.38330078, 0.3972168, -0.3713379, -0.38256836, -1.8916016, -0.37475586, -0.37670898, -1.2382812, 0.75878906, -0.6611328, -1.8662109, 2.1132812, 1.9746094, -1.2451172, -1.3027344, -0.31689453, -3.0371094, 0.33081055, 1.4697266, -0.8696289, 0.6220703, 0.5107422, 2.1796875, 0.5419922, 0.77246094, 1.0410156, -0.18054199, 0.8876953, -0.7368164, -1.3457031, 1.3730469, 0.18969727, -0.2861328, 3.5058594, -0.3310547, -2.0761719, 0.36328125, 1.9248047, -3.5722656, 0.111328125, -0.7607422, -1.4960938, 0.9301758, 2.3535156, -2.7167969, -0.049346924, 2.0214844, -1.1474609, 0.23596191, -1.5771484, -0.5473633, 1.4033203, -0.97509766, -0.073913574, -1.3535156, -1.171875, 2.5800781, -0.18200684, -0.5463867, -0.8955078, 2.3574219, 0.08538818, -0.41577148, -0.106933594, 0.8959961, -1.1113281, 0.08380127, -0.36938477, -1.8613281, -1.8095703, 0.96728516, 1.0556641, 1.1923828, 0.95996094, 1.1289062, 0.5541992, -1.7832031, 1.0449219, 0.7241211, 0.60839844, -1.7216797, -0.27416992, 2.0410156, -1.1757812, 0.7158203, -0.25439453, -0.053222656, -1.9160156, 1.40625, 1.6289062, 0.20043945, -0.92041016, 0.11920166, -1.9482422, -4.8007812, -0.6323242, 0.60595703, -0.7607422, 0.88378906, 1.1982422, -0.08099365, 1.0195312, -0.9770508, -0.36035156, -0.49414062, -0.33251953, 1.4648438, -0.4267578, -3.0253906, 0.015640259, 2.3789062, -0.0051498413, 0.19787598, -0.78222656, -0.10406494, -1.0058594, -0.9746094, 1.3447266, -0.25830078, 2.1601562, -0.8535156, -0.93408203, -0.37109375, 2.3847656, 1.6923828, -2.1367188, 0.15734863, -3.8144531, -1.1367188, -0.63427734, -1.8583984, 0.19934082, 0.87890625, 0.66064453, -0.15966797, 0.70947266, -0.98876953, -0.8984375, -1.6748047, 0.79248047, 0.58740234, -1.3525391, -0.013053894, 0.7207031, -1.2353516, 0.7314453, 0.29833984, 1.1103516, -3.2832031, -1.1210938, -1.1464844, 1.3505859, -1.1035156, -0.20397949, -1.6523438, 2.2734375, 3.6289062, -0.66308594, 0.76464844, 1.0185547, -0.30981445, 0.7680664, 0.7626953, -0.99121094, 2.7871094, -0.7236328, -2.3105469, -2.75, -2.2832031, 0.9145508, 1.2431641, 0.2932129, -1.7939453, -1.0507812, -1.1787109, 0.7558594, 0.31762695, -0.8095703, 3.1152344, 0.20703125, -1.2226562, 0.5517578, -0.39941406, -0.042144775, 0.6386719, 1.3837891, 0.9604492, -0.79541016, 1.6669922, 1.8271484, -2.3007812, 0.05014038, -1.5039062, 0.7885742, 0.30395508, -0.99121094, -0.29003906, -2.0644531, -0.7441406, -1.7988281, 0.3125, -3.3828125, 0.94384766, 0.5473633, -0.32226562, 0.21069336, 0.90771484, -1.0859375, 2.7363281, 4.3320312, 2.28125, -0.7705078, -0.16516113, -2.015625, -0.67041016, 1.2011719, -0.057373047, -0.42016602, 1.4638672, 0.20056152, -1.0693359, 0.78125, 1.5068359, 2.7753906, 0.6279297, 0.921875, 0.09295654, 0.61572266, 1.9150391, -0.33374023, 2.0039062, 2.5527344, 0.3725586, -2.4375, 1.5039062, -0.5234375, 0.07836914, -2.5195312, 1.0751953, -1.8466797, -1.6074219, -1.4072266, -1.5732422, 0.019683838, -3.03125, 1.5644531, -0.5029297, -1.1982422, -0.9350586, -0.5498047, -1.3378906, 0.6611328, 1.4863281, 0.050445557, -0.14245605, 1.6875, -1.8789062, -0.2763672, -0.5654297, 0.044555664, -3.8242188, 1.5644531, -0.5498047, -1.7666016, 1.7148438, 2.0039062, -0.6015625, 1.2763672, 0.94189453, -0.34375, 1.6396484, -1.3925781, 0.002204895, 0.54345703, -1.2949219, 1.9082031, 3.6582031, 1.4082031, -1.1113281, 0.640625, -2.2460938, -2.1679688, -2.1132812, 2.515625, 0.42919922, -0.44335938, 0.2788086, 0.25927734, 1.28125, -0.5332031, 2.4980469, -1.5839844, 0.0848999, 1.5927734, -2.0605469, -1.8154297, 1.7138672, 1.2060547, 1.0751953, 0.060150146, -0.93115234, -0.4658203, 2.9511719, 1.7177734, 0.2939453, -0.5288086, -0.0062026978, 0.08691406, -2.5078125, 2.7089844, -0.48632812, 0.052001953, -0.55322266, 3.3730469, 2.5664062, 1.8085938, 0.42749023, -0.18908691, -0.2368164, -1.5947266, -0.6298828, 0.6591797, 0.49682617, -1.3369141, -1.3740234, 1.1455078, 1.3173828, -0.82666016, 1.328125, 0.13024902, -0.67626953, -0.19006348, 2.2910156, -1.7060547, -1.5546875, 1.7744141, -0.15991211, -3.9804688, -1.8535156, 0.83447266, -1.3027344, -2.1289062, 0.8691406, 1.6171875, 0.2142334, -0.03756714, 0.011108398, -1.7792969, 1.390625, -0.43041992, 0.10748291, -0.14245605, -0.90283203, 0.7871094, 0.3876953, -0.8129883, 1.6542969, -0.15527344, 1.0908203, 3.0625, -2.7519531, -0.61572266, -1.4443359, -0.7939453, 0.47998047, 2.1660156, -0.40112305, 1.3134766, -1.09375, -4.0742188, -0.90478516, -0.8491211, 1.3632812, -0.0076522827, -1.2939453, 0.08996582, 1.4433594, 4.1640625, -1.5058594, -1.2646484, 0.05618286, 0.004688263, 0.8652344, 1.4873047, 2.5, 1.7177734, 2.3320312, 0.18981934, 4.0976562, 2.2695312, -1.5400391, 1.7509766, 1.59375, 0.6801758, -1.4853516, -0.7714844, 0.53515625, 0.9941406, 0.85595703, -2.3457031, -0.33398438, 0.7368164, -1.2832031, -2.6582031, -1.7558594]}, "B073XD9W9D": {"id": "B073XD9W9D", "original": "Brand: Cook Time\nName: BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches\nDescription:

          Color:Black + Copper

          Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy!\u00a0

          Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.\u00a0

          Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.\u00a0

          With one of these mats down, you can prepare a full breakfast in a matter of minutes.\u00a0

          They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.\u00a0

          For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.\u00a0

          These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.\u00a0

          These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...\u00a0

          -Veggies

          -Shrimp\u00a0

          -Fish

          -Bacon\u00a0

          -Pizza\u00a0

          -Pancakes\u00a0

          BBQ Grill Mats Size: 15.75\" x 13\"

          Note: can not directly contact the fire source

          \nFeatures: 100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill.\n500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit!\nAPPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty.\nDISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze!\nThe Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!\n", "embedding": [-0.7763672, 1.6533203, 2.0761719, -0.67871094, 1.6367188, 0.7885742, 0.9682617, -0.53564453, 1.6074219, 0.9682617, -1.8105469, -0.6923828, 1.8457031, -3.4550781, 1.4072266, -0.8442383, 0.71875, 2.4824219, 1.7080078, 1.9589844, 0.6669922, 0.2310791, 0.051635742, -2.6367188, 1.5595703, 0.46704102, 2.2324219, -0.96191406, 0.9614258, 0.034606934, 2.1132812, 1.3037109, 0.2685547, 2.1582031, -3.4160156, -2.0761719, -0.20690918, 2.9160156, -0.20507812, -0.87646484, -0.31713867, -2.9042969, 1.9824219, 1.7275391, -2.9199219, 0.30151367, 0.052215576, 2.171875, -2.2285156, -3.84375, 2.6230469, 1.1191406, 3.5371094, -0.36547852, -2.6230469, 1.4765625, -1.3105469, -1.2763672, 0.8432617, -0.28295898, -1.0498047, -1.2333984, -1.2402344, 1.2529297, 0.52197266, -1.3359375, -0.020996094, -2.8789062, 1.0722656, -1.4316406, 0.22167969, -0.33569336, -0.44433594, 0.60302734, -0.9243164, -0.8027344, -1.4111328, 0.017456055, -0.28344727, -2.5820312, -0.22265625, 3.3007812, -1.2587891, -0.5991211, 1.2958984, -2.3339844, -2.8457031, -0.75634766, 2.9453125, -0.95703125, -0.1352539, 2.4902344, -1.4423828, -4.0078125, 0.58203125, -3.0644531, 1.6933594, 0.21691895, -0.8286133, 2.640625, -2.4335938, -0.6118164, -0.8022461, 2.0019531, -3.90625, -3.3085938, 1.9404297, -0.71484375, 0.32861328, 0.4621582, 0.057739258, 1.2597656, 0.5517578, 1.5595703, 2.1835938, 1.6591797, -0.7636719, -1.1386719, 0.7211914, 1.9316406, 4.7070312, 2.2792969, 0.11584473, -2.2519531, 1.1386719, 0.24243164, -0.55859375, 1.3603516, 2.53125, -2.46875, -0.7626953, -0.82666016, -0.92041016, -0.35961914, -1.6074219, -1.6464844, -0.9453125, -0.5390625, -2.515625, 2.1757812, 1.4228516, -0.30981445, 2.7128906, -0.45922852, -3.0429688, -0.08538818, -1.8144531, 4.1914062, -1.7871094, -1.8125, 1.4980469, -0.71533203, 0.77246094, -0.4675293, 1.8544922, -0.08880615, 1.4707031, 0.38012695, 1.4882812, 2.4023438, 1.4306641, -2.6152344, -1.9365234, 0.3630371, 1.5087891, -3.3105469, -1.78125, 1.5087891, 0.22497559, 3.3398438, 0.1194458, -2.5117188, 1.4912109, -0.45092773, -0.25976562, -0.18359375, 0.8979492, 2.6875, -1.8623047, -1.4804688, 0.6826172, -3.3359375, -0.7685547, 1.1455078, -0.95947266, 0.68896484, 0.9042969, -0.63720703, 1.7177734, -1.1357422, 0.2121582, 2.8574219, -0.20690918, 0.6142578, -2.3417969, -1.9121094, 0.0881958, -0.9536133, 2.4199219, -0.78222656, -0.17211914, -1, -1.4541016, -0.03805542, -2.5859375, -3.3632812, -1.8691406, 2.7382812, 2.4023438, 0.67626953, -0.4428711, -1.1416016, 1.8984375, 2.2324219, -1.7255859, -0.8095703, 0.52197266, -0.25854492, 0.8833008, 1.1738281, -1.0996094, -0.4711914, -2.0878906, 3.9296875, 0.37353516, 1.4355469, -0.45288086, 1.9111328, -1, -0.8779297, 1.3632812, -0.5878906, 0.38964844, -0.7060547, -0.41674805, 2.734375, 2.625, -2.0449219, -2.3144531, 0.0027999878, -1.0839844, -1.7158203, -1.7685547, -2.9023438, -1.1650391, -0.90625, -0.81103516, 1.5566406, 0.68408203, -2.671875, -1.1591797, 4.3554688, 1.6015625, -0.7133789, -1.2373047, 0.2944336, -0.28125, -0.19042969, -2.7265625, -0.32104492, -0.54785156, -0.08093262, -0.089416504, 2.0820312, 1.6484375, -1.0302734, 1.6386719, -0.3190918, -2.1367188, 0.3076172, 0.40185547, -1.9707031, 0.26367188, -0.7270508, 1.4277344, -0.93603516, -3.1835938, -0.07104492, 1.4335938, 0.19104004, -0.5083008, 2.7539062, 1.5878906, -1.6650391, -3.5761719, -0.2163086, -0.21936035, -2.4921875, 1.8574219, 0.57177734, 3.8125, 2.0917969, -1.3779297, 2.109375, -1.3330078, 0.4868164, 1.5429688, -0.9355469, -1.5625, -0.22741699, -0.4975586, 3.6210938, -0.31860352, 0.46313477, -0.9628906, 1.0488281, 2.6582031, -1.8857422, -1.4130859, 2.3046875, 0.13391113, -1.5351562, 1.3867188, 1.7988281, -2.2382812, -1.5078125, 1.5039062, -0.48413086, 1.1357422, -1.9335938, -0.81103516, -0.5810547, -0.46923828, -3.4121094, -0.8339844, 2.421875, -1.3603516, 1.2041016, 0.45654297, 0.85791016, 0.6425781, -1.5839844, 0.9868164, -0.26635742, -1.7783203, -1.2294922, -0.8930664, -0.8598633, -2.296875, 0.34765625, -1.0419922, 0.9628906, -0.7348633, 1.5205078, -0.96728516, -2.3339844, -1.6992188, 0.11505127, -0.26293945, 2.2558594, -0.25976562, 0.5161133, 0.2331543, -2.8515625, 0.77246094, 0.5361328, 0.40966797, 0.76660156, -1.3808594, -0.11401367, 0.12408447, -0.012054443, 1.5859375, 1.2275391, 0.3269043, 1.6679688, -1.8154297, -2.1289062, 1.0595703, -0.3881836, -0.8647461, -1.0244141, -0.2722168, -1.2216797, -1.1806641, -1.0566406, 0.9453125, 3.3066406, 0.22705078, 1.6533203, -1.8662109, -0.8925781, 0.5800781, 1.0439453, -1.1884766, -0.6640625, 0.60839844, -1.3359375, -1.3496094, -1.8876953, -0.57128906, -2.09375, -0.26000977, -1.3056641, 2.7988281, 0.91552734, 4.265625, -2.6054688, -0.59521484, 0.5830078, 1.1865234, -0.41430664, -0.5551758, -0.33666992, 0.97021484, -0.19641113, -1.5546875, -0.53564453, 1.6152344, -0.97265625, 0.63964844, 1.5126953, 0.5776367, -0.003929138, 1.0292969, 0.15100098, 0.22009277, -2.7480469, -1.4794922, 0.9555664, 1.4482422, -1.0507812, -1.5341797, -2.6015625, 3.359375, 0.94628906, 1.3857422, -0.39526367, 0.0036811829, 3.1074219, 0.9399414, 1.046875, -1.0703125, 2.5664062, 0.37182617, -0.6035156, -1.3818359, 1.4199219, 0.4248047, -2.7070312, 1.1621094, 1.2519531, 1.2529297, -0.091430664, 0.20239258, -0.1652832, -0.71533203, -0.25268555, 3.8632812, -1.0712891, 0.099731445, -1.0800781, 0.69384766, -1.2597656, 0.76904297, 2.3886719, 2.125, 1.2490234, -0.66552734, 1.6376953, -1.3115234, -2.9648438, 0.73291016, 1.2832031, -0.54589844, -1.0068359, 1.8056641, 0.7915039, -0.055725098, 5.1054688, -1.4501953, 1.4648438, -1.7431641, 0.9291992, 2.9140625, 0.5292969, -0.46948242, -2.2714844, -1.2333984, -0.87890625, -2.8984375, 0.6879883, -3.1933594, -1.8349609, 1.78125, -1.78125, -4.546875, 1.6259766, 3.4433594, -0.63720703, -1.2666016, -1.2363281, 2.8730469, -0.85595703, -1.4101562, -0.6191406, 2.7109375, -0.6459961, 2.0917969, -1.3867188, -0.19128418, 1.7011719, -2.2421875, 1.9013672, -0.7421875, -2.859375, -1.65625, -1.6552734, 0.117492676, 1.8642578, -0.078552246, -0.97558594, 1.0458984, -1.0078125, -0.18530273, -2.8398438, 0.91796875, 0.36645508, -2.7988281, 0.77783203, -0.14953613, 1.9404297, -0.9423828, -0.6948242, 3.1269531, 1.7470703, -1.8359375, 0.2644043, -3.2773438, -0.019577026, -1.3193359, -1.8037109, -0.12219238, -0.41381836, -0.9145508, 3.875, 1.7822266, 1.2255859, 3.90625, -0.5761719, -2.5859375, 0.9165039, -1.4179688, -0.54785156, -1.3388672, 0.6513672, 3.5683594, 1.1298828, -0.72998047, -0.5966797, -1.4951172, -0.87109375, 0.41455078, -0.51708984, 2.0449219, -0.4790039, -1.8310547, -0.51123047, 0.32470703, 0.42700195, -2.65625, 0.3725586, 1.4423828, 1.7841797, 3.8125, -2.0351562, 1.0585938, -0.48657227, 0.2705078, -1.5439453, 0.19018555, -1.2167969, 0.081848145, 4.21875, -0.8183594, -2.0449219, -0.27392578, -0.02204895, 1.6738281, 0.07507324, -1.7294922, 0.58935547, -2.1992188, -0.19445801, 0.4892578, 2.3417969, 1.1464844, -1.9794922, -1.4160156, -1.1953125, 0.64501953, -1.9423828, -1.3271484, -0.42822266, -0.6069336, -0.7446289, 0.12390137, -1.3164062, 3.0195312, -1.0507812, -0.69873047, -1.7558594, 2.5058594, -0.65527344, 0.7373047, 6.5625, -2.7207031, 0.14453125, 2.4609375, -4.0234375, -1.2304688, -0.38623047, -1.0927734, -2.1855469, 1.8583984, 2.3125, -1.7255859, -2.0410156, -0.3881836, 0.6225586, -0.60302734, -1.921875, 2.3808594, -1.5107422, -0.7294922, 1.5957031, -0.84033203, 2.9765625, -1.0361328, 2.3925781, 2.5800781, -0.2956543, 0.6279297, 1.6123047, -0.3540039, -0.93603516, 0.83203125, 1.8691406, -0.043945312, -0.3959961, -0.36621094, 0.5605469, 0.4477539, -4.21875, 1.8828125, 0.12011719, 1.8330078, -1.6279297, -1.7724609, 1.7871094, 3.8105469, -0.6899414, 2.5449219, -1.0957031, -1.0585938, 1.375, 1.6376953, -0.8574219, 1.2529297, -1.3115234, -0.8691406, 2.0058594, -1.6210938, -1.2431641, 0.27001953, 1.2441406, 0.11584473, -0.28979492, -1.5498047, 1.0966797, 1.8476562, -1.1699219, -0.0904541, -1.59375, -1.2226562, 1.7978516, -1.4345703, -0.076660156, 0.1586914, 0.51953125, 3.421875, -2.25, -2.0351562, 1.8291016, -0.08203125, 0.37768555, -0.16101074, -2.8808594, -3.3867188, -1.9892578, -1.2919922, 1.5507812, 1.5058594, 0.3203125, 1.7626953, -1.8828125, 2.2617188, -3.6523438, 1.3232422, -1.8212891, 0.051574707, 3.9746094, -4.8867188, 0.26464844, -0.7685547, 1.484375, 1.0888672, 0.24694824, 2.8339844, -3.1699219, -1.6660156, 0.8486328, -1.2978516, -2.3027344, -0.09649658, -0.07543945, 1.3457031, -0.021362305, -0.79541016, 0.20446777, -1.0566406, -0.74072266, -0.24194336, 0.93652344, 0.5336914, -0.32104492, -1.6054688, -2.4042969, 0.117126465, 0.007095337, 0.6977539, 0.53808594, 5.2070312, -0.7446289, -2.1289062, -0.28271484, 0.18981934, -2.9980469, -2.1230469, 1.8867188, 0.15722656, -0.14245605, 0.57177734, 0.2322998, -1.6796875, 1.9746094, 0.7895508, 0.34545898, 1.3671875, -0.03439331, -1.6425781, -0.57714844, -3.6542969, 0.69921875, -3.8398438, 0.7519531, 0.6118164, -3.4609375, 1.4404297, 1.8681641, -1.7158203, -0.6333008, -0.36645508, 0.98095703, 0.99121094, 0.9560547, 0.34570312, -0.24841309, -3.1542969, -4.5546875, 0.36791992, -1.7851562, -1.4853516, -0.8852539, -0.09716797, 2.6738281, -0.7348633, 1.84375, 1.0898438, 1.1396484, -1.4785156, 1.2939453, 0.6591797, 0.98095703, 0.58251953, 0.92089844, -1.1914062, -1.7480469, 1.3798828, -0.46264648, -0.09100342, 2.125, -2.4882812, -2.8789062, -2.0292969, 0.6557617, 0.9477539, 2.2304688, 2.2460938, -1.2373047, -1.1640625, 0.8066406, -2.3886719, 2.3105469, 1.3681641, 2.28125, -2.1777344, 4.3710938, -2.7636719, -4.9023438, 1.1513672, -0.63623047, -1.4960938, 0.20996094, -0.8984375, -0.033813477, 0.1940918, -1.8974609, -1.2910156, 0.46264648, -0.625, 2.9941406, -1.1601562, 0.30981445, -0.63183594, 3.1933594, 0.5185547, 2.2324219, 3.1074219, -0.3701172, -1.7412109, -1.3417969, -0.46899414, 0.73339844, 0.7246094, -1.7314453, -0.81152344, -0.2644043, -0.7714844, -1.0117188, 3.265625, 0.70166016, 0.024230957, -0.10620117, 2.4003906, 3.7734375, 1.7431641, 2.5644531, -0.4609375, 2.6796875, 1.4238281, 1.3730469, 0.38256836, 2.4121094, 0.9277344, 1.6777344, -0.6699219, 2.2890625, 0.27294922, 1.0351562, -0.3857422, 0.75878906, -0.86083984, -2.3066406, 3.4003906, 1.4355469, -1.1640625, 0.43847656, 0.35717773, -3.4003906, -0.6748047, -1.5009766, 0.025848389, 3.5546875, 0.62646484, 1.3945312, 0.62841797, 0.88671875, 2.1933594, -2.8398438, 0.9350586, 1.3173828, -0.28686523, -2.1855469, 1.9482422, -0.09729004, 1.4580078, 0.24328613, 0.113220215, 1.5634766, 2.2519531, 0.6425781, 2.1621094, 0.21813965, -1.0253906, 2.5488281, -2.1933594, -2.0566406, -2.1523438, 0.23266602, -0.5234375, -1.3632812, 0.20227051, 1.3701172, 1.8994141, 0.12072754, -5.234375, 0.875, 0.70410156, 1.34375, -1.4628906, -0.3251953, -0.8979492, -3.7167969, -1.6191406, 1.6132812, 2.15625, 1.0546875, -0.4584961, -1.7529297, 0.7885742, 0.50634766, 2.4238281, 1.2382812, -0.19824219, -1.4365234, 1.2607422, 0.05340576, 3.8574219, 1.8027344, 2.2910156, 0.57373047, 0.66845703, 2.4765625, 1.6914062, 0.23242188, 1.515625, -0.5161133, -0.0960083, -1.0742188, -0.43408203, -0.2322998, -1.4121094, -1.6171875, 0.5395508, 0.9145508, -1.3828125, -0.14660645, 0.7661133, 1.3203125, 3.0273438, -0.036956787, -1.5, 2.2304688, 3.3613281, -0.9379883, -0.73046875, -0.6904297, 0.027313232, -1.5361328, -1.6679688, 1.234375, 1.6923828, 0.65722656, -1.7802734, 0.5341797, -0.22045898, -0.38427734, 0.9111328, 0.5629883, -2.0898438, -2.5722656, 1.5195312, -0.5361328, 1.2001953, 2.6816406, -1.2392578, -1.8300781, -1.1054688, -2.3398438, -0.77685547, -1.8203125, -1.3818359, 2.078125, 3.1445312, 0.93408203, -0.054473877, -0.9926758, -1.4033203, 1.9384766, -0.74316406, 3.3808594, 1.1044922, -2.5332031, -0.23571777, -2.921875, 1.7558594, 0.7553711, -2.9433594, -0.18908691, -0.93408203, -0.51220703, -1.3417969, 0.46923828, 0.9746094, 0.8520508, 0.8935547, 2.2460938, 3.6542969, 0.39990234, 2.4355469, 1.5419922, 0.44140625, -1.3544922, -1.0039062, -0.00060606, 1.9619141, 0.17236328, 0.09881592, -0.4230957, -0.22753906, -0.890625, -0.89453125, -0.5751953]}, "B01FUSLMDK": {"id": "B01FUSLMDK", "original": "Brand: BBQ GALORE TURBO\nName: BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366\nDescription: BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.\nFeatures: \n", "embedding": [-2.9824219, 2.3046875, 0.9169922, -2.9628906, 1.3613281, -0.13696289, -0.27856445, -1.7128906, 3.6855469, 0.69970703, 3.0566406, -0.36767578, 0.94433594, -3.0585938, 1.4462891, 2.5839844, 0.7294922, 1.7216797, 2.8691406, 1.6845703, 0.4729004, 0.5107422, -0.35742188, -0.5527344, 0.4873047, 0.6855469, 2.5664062, -2.5898438, 2.4355469, -2.1269531, 1.3935547, -0.9711914, -0.59814453, 2.6796875, -2.2402344, 0.8520508, 0.7973633, 2.3828125, -2.9101562, -0.80859375, -0.83496094, 0.4934082, 1.1591797, 0.037597656, -2.0273438, -1.5839844, -1.5947266, 2.6445312, -2.1074219, -0.36083984, 1.6865234, 4.03125, -2.2148438, 0.30541992, -1.1435547, 3.2246094, -1.8193359, -1.7060547, 0.4873047, -0.42382812, 2.8710938, 1.3681641, -3.4375, 0.8105469, 0.39575195, 3.7832031, 1.1132812, -0.55371094, -0.35498047, -2.8417969, 1.1689453, 2.0605469, -1.0566406, 0.15917969, 1.0332031, -0.19873047, -1.1201172, -0.11029053, -1.3027344, -0.47631836, 0.26953125, 2.6210938, 0.6855469, -4.921875, 0.81933594, 0.62402344, 0.22302246, 0.6401367, 4.2070312, -1.1591797, -0.07366943, 0.27026367, -0.48217773, -2.6640625, 1.5322266, 0.17858887, -1.6123047, 1.6025391, 0.36694336, -0.38720703, -0.875, -0.8520508, -1.4951172, -2.3808594, -0.68310547, 0.43530273, -0.9213867, 1.8935547, -2.984375, -1.2119141, -1.8457031, 2.3085938, 1.3759766, -0.34057617, 0.20361328, -0.31396484, 0.33032227, 0.85498047, 0.27026367, 0.68408203, 0.27172852, -2.09375, -0.34814453, -2.2519531, -0.8496094, 0.13000488, 0.5678711, 0.3557129, 5.5117188, -0.12927246, 1.4472656, 0.6191406, 4.7695312, -2.4550781, 1.7275391, -3.1914062, -1.4794922, -1.5917969, 1.7412109, 0.038146973, -0.2355957, 0.6484375, 2.5039062, -1.5400391, -4.0195312, -2.0175781, 0.20336914, 0.23095703, 0.453125, -0.6875, -0.22021484, -0.64404297, 0.5317383, -0.8925781, 1.9833984, 0.17919922, 0.8515625, -2.1855469, -0.37451172, -0.15283203, 0.44970703, -1.9306641, 0.609375, 2.9257812, -2.8300781, -1.1337891, -3.0039062, 3.5449219, -0.92626953, 3.3867188, -1.0234375, 0.2878418, 0.07525635, -2.421875, 0.8364258, -0.44604492, 0.28100586, 2.3496094, 1.2871094, 2.1308594, -1.421875, -0.5600586, -0.14990234, 1.3564453, -0.9814453, -0.41235352, 0.40966797, 0.5, 3.1601562, 0.6958008, 2.5820312, 1.5410156, 3.1035156, 1.2265625, 1.4609375, -0.5541992, 0.4987793, -1.1933594, -0.23278809, -0.41748047, -2.6425781, -5.1523438, 1.3447266, -0.79345703, -2.09375, -2.578125, -0.27172852, 0.56689453, 1.6669922, 0.013313293, 1.8193359, 0.081848145, 2.4609375, 0.1899414, 1.3183594, -2.59375, 1.4257812, 1.3193359, 2.9355469, 0.9140625, 1.2363281, -1.4160156, -0.7988281, 4.6484375, 1.6464844, 1.6435547, 1.5224609, 1.4033203, -3.765625, -2.2890625, 1.7636719, 1.6240234, -1.8242188, -0.24572754, 1.2763672, 1.9023438, 2.4121094, -3.3808594, -0.25805664, 0.19140625, -0.13427734, -3.4375, -0.58740234, -0.54052734, 0.91796875, 1.2275391, -3.0117188, 0.34838867, -1.1552734, 0.5546875, 1.3095703, 2.9726562, 1.3007812, 0.5620117, -0.119384766, -1.0625, -0.024597168, 2.1835938, -1.9570312, -3.4140625, 2.6171875, -1.2871094, -0.07861328, 0.5517578, -0.87353516, -1.7246094, 3.5800781, -0.6123047, -1.5058594, -2.4765625, 1.1083984, 0.76416016, 1.9736328, 0.011253357, 0.3166504, 3.9433594, -1.0410156, 0.9638672, -0.6098633, -0.60302734, -1.1298828, 2.0449219, 2.6132812, -2.5878906, 0.7529297, -0.04815674, -1.6728516, -1.8789062, 0.034423828, -0.20141602, 2.9550781, -0.2548828, -2.1308594, 3.4882812, -1.0927734, -0.35083008, 2.8789062, -1.1669922, 0.68652344, 0.042541504, -0.26489258, 0.98291016, -0.79052734, 1.0488281, 0.068237305, 0.5546875, 2.2421875, -2.015625, -0.71875, 1.7783203, -2.1367188, 0.8232422, -0.37695312, -0.3347168, -0.27319336, -2.0234375, 0.48901367, -1.4550781, 1.5263672, -0.6411133, 0.048950195, 2.6855469, 1.3115234, -2.1972656, 0.8618164, 0.1907959, -0.123168945, -0.83740234, 0.8417969, 0.35864258, -0.7104492, -0.23486328, 1.1875, -0.27661133, -1.7441406, -0.29907227, -4.484375, -1.9648438, -0.13549805, -1.5234375, -1.8623047, 1.2558594, -1.8945312, 2.265625, -2.1269531, -4.96875, -1.8193359, -0.15209961, -0.20715332, -0.54833984, -0.5234375, 0.023406982, -0.18005371, -2.6679688, 2.7207031, -2.1679688, 0.94970703, 0.28955078, -0.23132324, 1.2392578, -1.9833984, -1.3457031, -1.4160156, 1.5166016, 0.93652344, -0.5527344, 0.6699219, -2.1035156, 0.022506714, -2.6484375, 1.671875, -1.3662109, 0.9370117, -2.9453125, -1.1699219, -1.1474609, -0.35229492, 1.5224609, -1.6064453, 1.3007812, -1.8974609, 0.095336914, 2.5605469, -0.9941406, 0.15075684, -1.2636719, 0.97802734, -1.5771484, -2.7675781, -2.7265625, -1.1035156, -1.3613281, -0.38061523, -1.2480469, -1.1298828, 0.19641113, 0.82714844, -1.9541016, -0.3173828, -2.0820312, 0.42407227, -0.6977539, -2.0039062, 1.1757812, -0.8300781, -1.2060547, -2.4550781, -3.2949219, 0.80322266, -1.3662109, -0.9355469, -0.50683594, -1.0458984, 0.117492676, 0.9458008, -2.9726562, 0.6489258, -0.30395508, -3.109375, 0.7338867, 0.7661133, -1.3457031, -1.2822266, -1.125, 4.1328125, 1.1884766, 3.8554688, 0.80566406, 2.1503906, 1.0625, -2.2109375, 1.8623047, 1.3457031, 3.015625, 3.1308594, -0.37231445, -0.13916016, -0.2064209, -0.08526611, -2.2402344, 2.0429688, 1.9892578, 0.5751953, 2.4628906, 1.8964844, -0.71435547, 0.7265625, -1.8046875, 2.9179688, 2.0371094, 0.48046875, -0.47631836, 0.08605957, 0.1583252, 0.6801758, 1.8125, 1.6240234, 1.5488281, 2.0644531, 1.4169922, 0.21118164, 1.1542969, 1.5253906, 1.6376953, 4.3242188, 0.46191406, 3.4023438, -0.40649414, -1.3730469, -0.7270508, 1.9394531, 1.7871094, -4.0820312, 0.6586914, 2.78125, 0.4111328, -2.7519531, 2.0449219, 1.2939453, 0.75439453, -2.9570312, 0.8881836, -1.8369141, -0.13720703, -1.4345703, 0.1772461, -0.5576172, -2.0976562, 3.8925781, -2.3476562, 2.0390625, 0.6166992, -1.1796875, 2.0585938, -2.4980469, 3.0585938, 1.1865234, -0.7026367, 2.234375, 1.4560547, -0.6328125, 0.91796875, -2.15625, -0.1743164, -1.1953125, -2.1230469, 1.046875, 0.13586426, -0.89404297, 2.265625, 0.22631836, 0.31054688, -0.38134766, 0.37939453, -1.3457031, -1.6474609, -0.36938477, -2.0605469, -2.0742188, -2.3222656, 2.734375, 0.19152832, -1.53125, -0.39160156, 1.6601562, 1.2363281, -0.6484375, 0.3112793, -1.7148438, -1.3613281, -1.1523438, -2.6523438, 2.4355469, 0.82714844, -0.113098145, 1.1992188, 2.3769531, -0.35546875, 3.5625, -0.42797852, -2.078125, -0.7626953, -0.8647461, 0.5214844, 0.88623047, -2.4238281, 0.08508301, -1.0488281, 1.0761719, -2.7265625, 1.6640625, -0.4423828, 1.6240234, 0.86083984, -3.4785156, -0.13134766, 0.4897461, 0.21020508, -1.2607422, 0.4753418, -0.13928223, -1.3623047, -1.3095703, -2.1035156, 2.4355469, 0.6694336, -0.2939453, -2.9863281, 1.4755859, 0.27026367, -1.6572266, 1.3095703, -2.1191406, 3.6914062, -0.29248047, -2.8320312, -1.8525391, -0.9916992, 0.39575195, -1.6962891, 2.2539062, -0.3166504, -2.1796875, 2.2734375, 0.48510742, -1.1669922, 1.5351562, 1.6894531, -3.1484375, -1.1220703, -2.9160156, -0.21228027, 0.31811523, 0.5776367, -1.1933594, 0.38305664, 1.2294922, -2.7050781, -0.5419922, -1.1816406, -1.1689453, -2.0175781, -0.08605957, 0.22351074, 0.5288086, 1.6923828, -1.1083984, 0.24182129, -1.2216797, 0.62109375, -2.0058594, -0.6826172, -1.6572266, 0.50439453, 0.36206055, -0.10546875, -0.6274414, 1.1679688, 2.6152344, -2.140625, 0.3737793, -1.4951172, 0.62060547, -3.2539062, 1.6474609, 2.8261719, 0.6088867, 1.0722656, -0.056549072, -0.06738281, 0.84472656, -0.49365234, -2.4609375, 1.5400391, 0.7553711, -1.0205078, 0.99902344, 2.6464844, 1.9628906, -0.5908203, 0.8305664, -2.9902344, 0.20654297, 0.9975586, -1.2978516, 0.55859375, 1.8916016, -1.9658203, -0.24902344, 3.2597656, 0.4597168, -0.58935547, 3.7011719, 0.87060547, -4.8242188, 0.51220703, 1.0957031, -5.0429688, -1.7246094, 2.1640625, -3.6425781, 0.6743164, -0.70654297, -0.95410156, -1.1298828, 2.6601562, -1.0576172, 0.3173828, -0.016220093, 0.044525146, 0.5214844, -2.1914062, 0.38427734, -1.71875, -0.6459961, 0.7675781, 0.18969727, -0.16601562, 1.8681641, -0.06640625, 3.6835938, -2.6660156, -3.1191406, 1.578125, -0.2536621, -0.296875, -0.027694702, -0.59228516, -0.7319336, -0.21374512, 0.7426758, 0.64697266, 0.7241211, -0.2055664, 1.3251953, -3.1445312, 2.015625, -1.3916016, 1.0458984, -1.5625, -1.6435547, 3.8144531, -0.83935547, -1.7871094, -3.7695312, 1.6787109, 1.6289062, 0.8515625, 1.0166016, -2.1074219, -0.26293945, 1.2949219, -1.3466797, -2.9863281, -2.6015625, 1.0771484, 1.1416016, -0.31640625, 0.061798096, 1.6601562, -0.39794922, 0.057037354, -1.7451172, -1.2167969, 0.30737305, -1.5166016, -1.3339844, 0.89208984, -0.03503418, -1.5166016, -1.7558594, 1.1152344, 0.32202148, 1.0488281, -3.9023438, -0.18347168, 3.609375, -3.4121094, -1.7333984, 2.4785156, -3.1894531, 0.8100586, -0.62060547, -0.49951172, -1.2421875, 1.5195312, -1.25, 0.5253906, 1.0078125, -0.39526367, 0.046447754, -0.57128906, -0.28735352, 0.7675781, 1.6816406, 2.1699219, 1.3027344, 1.3828125, 0.31274414, 1.0625, -1.0683594, -1.8017578, -3.1152344, 0.56152344, 1.7851562, -1.0898438, -0.6381836, 0.9785156, -1.2431641, -0.14453125, -3.1191406, 0.27368164, 1.6787109, -1.7646484, -0.3581543, 1.3505859, -1.3232422, -2.5664062, 0.73291016, -0.9238281, 0.031402588, 1.1865234, -0.9916992, 2.2324219, 0.20227051, -0.50634766, 1.7636719, 0.23876953, 0.93652344, 0.38305664, -0.5600586, -2.4667969, 1.4013672, 0.5600586, 0.22741699, -0.36889648, 2.1972656, 1.3144531, -1.3886719, -1.1660156, 0.74316406, 2.7050781, -0.9423828, 0.017196655, 0.29907227, 2.1796875, 1.0830078, 4.1289062, 0.3701172, -2.6367188, -0.12249756, -1.2363281, 3.4082031, -0.16748047, -2.7988281, 0.90625, 0.6230469, -1.7119141, -0.24328613, -2.8828125, -2.0898438, -0.86816406, -0.9169922, -0.18115234, -1.4414062, 2.1933594, 1.5410156, 2.3476562, 0.097473145, -0.025421143, -1.0566406, -0.50097656, -1.2792969, -0.7163086, 0.25805664, -1.8369141, -0.29882812, 0.421875, 1.1210938, -0.4345703, -1.5859375, 1.8740234, 0.72753906, -2.3476562, 0.82177734, 0.10217285, 2.4179688, 2.5761719, -0.19946289, 3.171875, 2.7167969, 0.39672852, 1.0166016, 0.6333008, 0.984375, -1.4960938, -2.2402344, 0.90771484, -0.45092773, 0.20837402, 1.3203125, -2.125, 1.6435547, -1.5292969, 1.5957031, -0.044281006, -0.54052734, -3.0917969, -0.8466797, -2.2851562, 1.2529297, -1.1972656, 0.87939453, 3.0214844, 1.6435547, 0.4338379, -1.5019531, -1.4414062, 1.9560547, -2.4082031, 0.010398865, 2.7597656, -0.2939453, 0.00667572, -0.4951172, 1.3505859, -0.31591797, 2.0273438, -1.6787109, 0.21765137, -1.2568359, 1.4824219, -0.29125977, -0.1161499, 0.6098633, 1.1601562, -0.8364258, -1.8759766, 2.046875, 1.8330078, -4.9023438, -3.4785156, 2.15625, -0.17382812, 0.6298828, 1.7529297, -3.0976562, 2.8613281, 0.10321045, 0.22302246, -1.9277344, 1.7177734, 0.14648438, 0.69140625, 1.4980469, 1.6875, 0.57714844, 2.9003906, 3.234375, 0.53027344, 1.4052734, 1.1220703, 2.6757812, 2.5234375, 4.546875, -1.6894531, -0.90478516, -0.765625, 0.58496094, -0.4934082, -1.484375, 1.5869141, 2.078125, 1.0625, 1.6787109, 2.3027344, -1.8251953, -0.16259766, 0.63427734, 1.8183594, 0.34179688, -1.0498047, -0.70166016, 1.6181641, 0.9765625, 0.08459473, -1.4306641, 2.9316406, -1.3007812, 0.49951172, 0.875, 0.65625, -0.7084961, 2.6679688, -0.58447266, -0.39868164, -0.4501953, -1.4775391, 0.27905273, -0.5966797, -0.09613037, 1.3222656, 1.6933594, 1.1464844, -1.859375, -2.0175781, 0.25, 0.96728516, -0.9658203, -0.55566406, -0.25073242, -1.6611328, -0.87060547, -2.8574219, 2.6855469, 1.2304688, 1.0966797, -1.4921875, -1.9570312, -0.39526367, -0.8076172, -0.40063477, -2.8925781, -0.8720703, 1.5263672, 0.01134491, 1.2460938, -1.0214844, -2.4257812, 2.390625, 0.5463867, 0.92529297, -0.40307617, -1.2324219, 0.37158203, -1.0244141, 3.6484375, -0.42749023, -1.5625, -1.7753906, -1.5439453, 0.65771484, -0.7919922, -0.8588867, -2.0957031, 0.87353516, -0.9970703, 0.47827148, 0.32836914, 0.50341797, -0.16418457, 1.4150391, 0.51708984, -2.1484375, -0.074523926, 1.0195312, 2.3398438, 0.24572754, -0.53125, 1.0322266, 0.45166016, 1.4541016, 2.1660156, 0.08050537]}, "B001DC7FPM": {"id": "B001DC7FPM", "original": "Brand: Stansport\nName: Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black\nDescription: \nFeatures: Compatible with most standard 16.4 oz propane canisters\nWide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances\nSwivel extension feet for added stability - Feet fold away completely for storage\nMade of durable high impact plastic for reliability and lightness\nReplacement base for camping or hunting stoves and propane accessories\n", "embedding": [-0.34716797, 1.0751953, 1.5654297, -1.4619141, 0.6254883, 1.609375, 0.96972656, -0.70458984, 0.63916016, 2.5527344, -0.04034424, 1.0800781, 0.8701172, -3.0644531, 0.13562012, 1.7636719, 0.1862793, 1.0888672, -1.0107422, 0.18249512, 2.3417969, 0.16809082, -0.7265625, -3.3417969, 0.71435547, -0.7182617, 3.6328125, -1.4716797, 0.09777832, -1.4492188, -0.21020508, -2.015625, 1.5751953, 2.3652344, -3.34375, 0.058410645, -0.7290039, -0.8857422, -3.2636719, -0.7885742, -1.4111328, 1.3847656, 2.5878906, 0.9482422, -2.0859375, -0.1920166, 1.1748047, 0.27563477, 1.0175781, 1.03125, 0.60546875, 0.7915039, -1.3037109, 1.5742188, -0.13171387, 0.03414917, 1.7919922, -2.8808594, 2.1269531, 0.8105469, 0.54003906, -0.09741211, -1.5390625, 1.0273438, -1.6318359, 1.4619141, 1.1289062, -1.9941406, -0.37304688, 0.48583984, 2.0527344, -0.7211914, 0.94677734, -2.8125, 1.3291016, -0.8857422, -2.703125, 1.2089844, 0.45507812, -0.5131836, -3.75, 2.7050781, 0.03567505, -0.14550781, -1.0722656, -1.1738281, -1.1738281, -0.35058594, -0.88671875, -0.082336426, -3.2519531, 1.3291016, -1.4501953, -3.7226562, -0.5209961, -1.3378906, 2.5136719, 0.19580078, 0.4711914, 0.15905762, -0.78564453, 0.16052246, 0.50341797, 1.0888672, -1.2333984, 0.5263672, 2.7695312, 0.35302734, -1.2207031, -1.0263672, -1.1435547, -0.42626953, 2.4609375, -0.34326172, -0.12670898, 0.89208984, -2.5429688, 0.49560547, 2.1230469, 2.0722656, 5.6367188, -1.1845703, 0.39990234, -0.62597656, 0.8027344, 3.0273438, -1.1416016, 0.08544922, 3.4394531, 0.021987915, -0.11621094, 0.7451172, 1.9658203, -0.96435547, -2.0878906, -0.50878906, -1.2763672, -0.7050781, 0.7451172, -3.7890625, -2.0136719, 0.09075928, 0.53222656, 0.18261719, -4.6523438, 0.17858887, -1.2177734, 1.3261719, -1.34375, -2.7089844, 1.0820312, -2.34375, -0.1295166, -0.3972168, 1.7363281, 1.7158203, -0.2890625, -1.0732422, 1.4609375, 1.8847656, 2.2851562, -1.6259766, 0.13122559, 1.8007812, 1.1259766, -4.546875, 0.21899414, 0.66015625, -0.03164673, 1.2480469, 1.4765625, -2.2617188, -1.2275391, -2.3535156, 0.6074219, -0.8491211, 0.36499023, 2.9375, -1.0507812, -1.2705078, -2.109375, -1.0556641, 0.56689453, 0.28686523, 2.4550781, -0.35107422, -0.6645508, -1.5947266, -1.1542969, -0.30932617, -2.5703125, 1.5488281, -1.6591797, -0.19702148, -0.51708984, -3.4804688, 0.013465881, -2.5878906, 1.7119141, 3.65625, -2.6484375, -1.4384766, -0.6582031, 1.9033203, -2.1289062, -0.043823242, 1.5800781, 0.99365234, 0.68603516, 0.5024414, 0.98876953, 0.3630371, 1.7666016, -1.1171875, -1.6503906, -1.4091797, 2.90625, 1.3095703, 3.2304688, 2.25, 0.10443115, -0.796875, 0.5629883, -0.39819336, 0.88623047, 2.4453125, 1.0273438, -0.10229492, -2.2539062, 0.68066406, 0.20275879, -0.26733398, -2.8339844, 0.89501953, -0.24121094, 2.5703125, 0.46411133, -0.11553955, 1.0058594, 0.32373047, -0.51123047, -1.9160156, -0.32006836, 0.44433594, -0.1706543, -1.0693359, -0.49194336, -1.0390625, 2.5429688, 0.9213867, 0.21582031, 0.18286133, 2.1425781, 0.24304199, 0.19616699, 0.9038086, 1.1630859, -0.58740234, -0.86376953, -2.9941406, 1.2480469, 0.49023438, -0.23474121, -0.30078125, 0.94628906, 0.06585693, 2.5839844, 0.96777344, -0.25561523, -0.43798828, -0.82128906, 0.4873047, 3.3378906, -0.41186523, 1.3242188, 1.1806641, -1.7773438, 3.0058594, 0.19470215, 2.3398438, 0.8798828, 0.6113281, 1.8544922, -3.828125, 0.71191406, 0.27978516, 0.6533203, -0.38476562, -2.8632812, -0.79248047, 3.9394531, -1.0546875, -1.2939453, 0.9291992, -0.021514893, 0.7578125, 1.9130859, 1.1826172, 0.72753906, -1.3652344, -0.06072998, 0.064086914, 0.5673828, 1.9521484, -0.5019531, 0.9272461, 0.82373047, -2.3867188, -0.014625549, 0.4790039, -0.8911133, -0.05090332, -0.25634766, 1.3291016, -0.4777832, 0.09893799, 2.7832031, -2.3125, 2.0722656, 0.6933594, 0.8588867, 0.32226562, 0.035583496, -1.1181641, -0.74072266, 2.0957031, -1.3193359, 1.5927734, 2.1230469, 1.0273438, -0.61572266, -0.63378906, 0.71435547, -0.99609375, -0.89208984, 1.1240234, -1.8408203, -2.1503906, 0.047058105, -0.26342773, 1.1513672, 1.8740234, -1.7207031, 1.2109375, -0.6152344, -3.0957031, 0.40063477, 0.9980469, -0.47631836, -1.8867188, 0.8955078, 2.5117188, 0.41601562, -3.1210938, -1.5068359, -0.29467773, 0.24707031, -0.98876953, -1.8105469, 1.671875, -1.6191406, 1.3066406, -1.2119141, -0.140625, -0.4206543, -2.8574219, 1.3330078, -3.2089844, 1.8388672, 0.78222656, 1.171875, -1.1259766, 0.87939453, -0.36767578, -1.9833984, 1.5185547, 1.0742188, 3.1425781, -0.83496094, 0.10809326, -1.1416016, 0.08905029, -1.3339844, -0.4873047, -3.2578125, 1.96875, -0.17321777, -1.2705078, -0.9794922, -4.0507812, 0.22387695, -2.1503906, 1.0214844, -0.640625, 0.76904297, -1.0605469, -0.3154297, 0.7338867, -0.2607422, 0.33569336, -1.1025391, -0.21826172, 1.0507812, -0.64746094, 0.107421875, -0.06365967, -0.085510254, -0.2939453, 0.7163086, -1.9140625, -0.64990234, 1.3398438, -1.0830078, 0.8666992, 1.1347656, -0.8647461, 1.3876953, 1.2558594, -0.13049316, 2.8515625, -2.4980469, -1.0166016, -0.32250977, 0.49853516, 2.9960938, 0.09375, 1.5068359, 1.0849609, 0.5161133, -0.7753906, -0.3557129, -2.9804688, -0.8378906, -0.2722168, 2.75, -0.20361328, -0.7519531, 0.1743164, 0.7866211, -1.7460938, 1.1210938, -0.35229492, 1.7910156, 1.2802734, 1.2558594, -1.7314453, -2.34375, 0.52001953, -0.20300293, 0.33129883, 0.25170898, 0.23962402, -1.4589844, 1.3427734, 0.88134766, 0.21044922, 1.5869141, 1.4511719, 2.1171875, 0.8461914, 1.78125, 0.64941406, 0.5756836, 0.82128906, -0.4897461, -0.90283203, 4.140625, -0.69921875, 2.7148438, -1.7236328, 1.5878906, 2.7753906, -1.6220703, 0.5258789, 0.6894531, -0.5048828, -0.20800781, 0.44140625, -1.3525391, -0.2680664, -0.4855957, 1.4697266, 0.6591797, -2.0136719, 0.80322266, -0.890625, 1.6621094, -2.3085938, 1.1064453, -0.78466797, -1.9335938, -0.68896484, -0.08117676, -0.7685547, -2.9199219, -2.0136719, -2.4277344, 0.8574219, 1.7197266, 2.3105469, -0.48413086, -0.8408203, -1.2958984, 0.5776367, 4.046875, -1.5292969, -0.27441406, 0.4663086, 0.33520508, -1.0810547, -2.1386719, 2.7851562, 1.6933594, -2.9667969, -0.9633789, -1.4814453, 1.0888672, -1.4726562, -1.5283203, 0.5029297, 0.96191406, -0.4440918, 2.25, -0.4260254, 2.5703125, -2.5566406, -0.31323242, 2.6191406, -0.63916016, -0.02708435, -2.7773438, -1.3818359, 1.4267578, -0.56884766, 0.7783203, 2.1582031, 1.828125, -0.6455078, 1.3544922, 0.32006836, -2.3671875, -2.0996094, -1.1025391, 1.6064453, -3.1308594, -1.1591797, -0.57373047, 0.6586914, -2.5683594, -1.2919922, 0.3095703, -1.3828125, 0.34448242, -0.2626953, -0.94189453, 0.47998047, 0.21179199, -1.046875, -0.2956543, 0.64990234, 2.265625, -1.3154297, 0.12597656, -1.7021484, 1.4648438, 2.0625, 1.203125, -0.22033691, 1.7998047, 1.8173828, -0.30249023, -1.5292969, -1.6425781, 0.30029297, -1.0361328, -0.22143555, 0.54003906, -2.6738281, 1.2285156, -1.09375, -0.46850586, 1.8681641, -1.4228516, 1.9501953, 0.23242188, -0.9189453, 2.4824219, -0.3947754, -0.82128906, 0.9370117, -0.54541016, 0.37963867, -1.8085938, -1.2333984, 0.7583008, 0.12207031, 0.78759766, -1.0605469, -0.46923828, -1.4511719, -1.5126953, -0.8598633, 0.115722656, 0.039733887, -0.0062675476, -0.23779297, -0.45361328, -2.25, 1.1855469, 0.61328125, 0.7636719, 0.19848633, 2.2089844, -1.3945312, 1.5878906, 0.51220703, -0.7915039, -2.7226562, 1.3115234, 0.29052734, -3.4003906, -1.3144531, 1.0341797, -3.8632812, -0.6142578, -0.8876953, -0.20935059, 0.9716797, -0.88671875, 1.0458984, 0.2685547, 1.4960938, -1.3974609, 1.2001953, -0.17504883, 1.5585938, 1.015625, -0.7529297, 0.49926758, -1.7695312, 3.0410156, 0.06323242, 2.9179688, -1.453125, 1.7441406, 2.9160156, 1.2207031, 1.4150391, 1.1455078, -0.043945312, 1.9990234, 0.85498047, 1.7890625, 2.4160156, -2.0234375, 1.6533203, -0.15722656, -1.8535156, 0.52001953, 0.953125, -2.0371094, 2.421875, -2.3652344, -3.3027344, 0.76464844, 1.7412109, -0.9711914, 0.56103516, -0.8144531, -1.375, -0.3491211, -3.6230469, -0.5107422, -0.6455078, -0.15270996, 0.79052734, -0.21411133, 1.3212891, 0.76708984, 0.44604492, -0.045776367, 0.546875, -1.1962891, -0.39819336, -0.16442871, 0.90234375, -1.2802734, -0.07946777, -1.6367188, 2.0039062, -0.2364502, 2.4667969, 0.42529297, 1.5576172, 1.484375, -1.5830078, -2.3339844, -1.5957031, 1.0478516, -2.0078125, -1.8183594, 4.1640625, 1.2900391, 0.5341797, 0.3383789, -1.4589844, -2.0683594, 1.3378906, 0.12695312, 0.3083496, -2.515625, 0.73876953, -2.9804688, -3.7109375, -1.8837891, 0.23327637, 0.3864746, -1.078125, -0.6870117, 0.06335449, 0.4465332, -1.9746094, 0.8144531, -2.6113281, 1.1357422, 1.1376953, 1.2871094, -0.40112305, -1.0380859, 0.4855957, 1.8271484, -0.04510498, 2.265625, -1.2675781, -1.9345703, -2.5996094, 1.6083984, 0.20336914, 1.4804688, -0.375, -1.6689453, 0.48876953, 1.3261719, 0.20422363, -2.3847656, 2.2929688, -2.390625, -0.12683105, 0.6171875, -2.3613281, -1.7177734, 1.5234375, -0.8154297, 2.4121094, 0.58251953, -0.5341797, -0.46484375, -1.4882812, -1.0283203, 0.46826172, 0.18164062, 0.19921875, 1.4365234, -0.70654297, 2.453125, 1.2734375, -1.5263672, -1.5361328, -1.2138672, -1.1601562, -1.0126953, -0.8803711, 1.09375, -0.4921875, 0.7451172, 0.77783203, -1.3486328, -0.75927734, -0.3647461, 0.18469238, 1.1435547, 2.5195312, -1.8945312, 3.5253906, -1.6074219, 0.5620117, -1.3535156, -3.3242188, 0.06768799, 1.2773438, 0.7807617, 1.0449219, 1.5693359, -0.6435547, 2.3046875, 0.94384766, 2.9589844, 1.6337891, 1.7382812, -0.23352051, 1.0136719, 1.2949219, 0.22741699, 0.89501953, 2.4082031, 0.29418945, 0.17919922, -0.14294434, 0.36938477, -0.7207031, 2.0351562, -0.51416016, 0.52197266, -0.6142578, -3.4628906, 1.8984375, -1.4130859, -0.086364746, -1.8154297, 0.72753906, -2.3886719, 0.96240234, 0.7373047, -0.9008789, 1.0302734, 0.5756836, -2.953125, -0.41259766, -0.5727539, 1.3476562, -2.8027344, -0.9355469, 1.3242188, 1.5654297, 2.6914062, -0.578125, -0.56591797, 0.29882812, 1.6992188, -1.5908203, 1.0908203, -0.2775879, 2.3964844, 0.50878906, 1.0117188, 3.4960938, -0.14978027, 2.6953125, 0.70458984, 1.7148438, 4.1640625, 0.19677734, -0.6196289, 1.9726562, -0.9169922, -0.5805664, -2.5800781, -0.71728516, -0.9428711, -1.5234375, 1.6884766, 0.8886719, 1.0058594, -3.3769531, 1.0292969, -1.5947266, 1.5126953, -0.44995117, -0.51416016, -1.2216797, -2.0351562, 0.9892578, 0.38208008, 0.64453125, -1.2001953, 0.20629883, 0.09954834, -1.359375, 0.37597656, -0.80371094, -0.6303711, -2.1015625, -1.0341797, -0.06072998, 2.3710938, 1.1601562, 0.18725586, 1.3427734, 0.81933594, 0.6171875, -1.1337891, -0.19873047, -0.45629883, -0.40942383, -0.44873047, 1.4306641, 1.2509766, -0.9194336, 2.7246094, 2.4726562, -2.7734375, -2.9277344, 2.0898438, -0.42016602, 0.5786133, 0.99121094, -2.9042969, -1.4775391, -0.69873047, 0.37597656, -1.8759766, -0.3479004, -0.39257812, -2.8535156, 0.047454834, -0.2758789, 1.4238281, 1.9140625, -0.18151855, -2.0976562, 2.2636719, 0.8359375, 1.828125, 0.48657227, 0.05883789, -1.3525391, 3.2617188, -3.03125, 5.3125, 1.3916016, 0.09173584, -0.50439453, 3.5371094, 2.7949219, -0.5854492, -0.5966797, -1.6015625, 2.1679688, 0.65234375, -0.7182617, -0.80126953, -3.0117188, 0.05429077, 2.25, -2.8222656, 0.74609375, -2.3710938, -0.7451172, 1.4541016, -0.96728516, 2.6464844, 0.98535156, -1.7138672, -0.78271484, -0.26660156, -0.71435547, -0.92626953, 1.0976562, 1.6748047, -1.9384766, -1.7128906, 1.0585938, 1.390625, 0.95751953, -1.6982422, 0.8544922, 0.39501953, -1.8007812, -1.2919922, 0.42529297, 0.51416016, -0.37109375, 1.8681641, -2.5800781, -1.1044922, 1.1611328, 0.6040039, -1.3886719, 1.0380859, -2.1171875, 2.7128906, -0.6791992, -1.4863281, -0.41577148, 2.3320312, -1.5517578, 1.1113281, -0.26513672, -2.703125, 0.1538086, 0.36254883, 1.0810547, -0.08459473, -0.11022949, 0.48388672, 2.5976562, 2.8398438, -1.2763672, 1.0263672, -2.40625, 0.5878906, 1.0273438, -0.2626953, 1.1630859, -0.13122559, -1.6640625, 0.9277344, 5.53125, 0.26708984, -2.0878906, 0.7265625, 2.3105469, -1.0019531, -2.7421875, -0.62402344, -1.2568359, -0.7104492, -0.65722656, -0.6459961, 2.4589844, 0.97509766, -0.97802734, -3.4472656, 0.29638672]}, "B07FWVSNR9": {"id": "B07FWVSNR9", "original": "Brand: GRILLMATIC\nName: GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up\nDescription: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
          IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
          GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
          NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
          REUSABLE - Easy to clean. Dishwasher safe.
          HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.\nFeatures: MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.\nIMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.\nGRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.\nNON-STICK - Teflon keeps grilled or baked food from sticking to the mat.\nREUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.\n", "embedding": [-0.8666992, 1.3857422, 0.86376953, -0.484375, 0.8378906, 0.7480469, 0.47045898, -0.7080078, 0.78125, 2.1269531, -1.7099609, 0.066467285, -0.019088745, -3.359375, 1.1015625, 0.6933594, 0.84277344, 2.2109375, 2.2070312, 1.7226562, 1.6923828, 0.8496094, -0.7807617, -1.0517578, 1.1083984, 0.0947876, 3.4179688, -1.0537109, 1.5556641, -0.3400879, 2.0097656, 1.9208984, 0.5751953, 3.0078125, -3.9121094, -1.8779297, 0.00015866756, 3.2011719, -0.5839844, -0.2775879, -1.1386719, -4.6132812, 1.2421875, 1.3818359, -2.5410156, -0.15783691, -0.24047852, 2.359375, -1.3173828, -4.0234375, 2.2578125, 0.044006348, 2.0195312, 0.32983398, -2.8046875, 1.8144531, -0.48217773, -0.49804688, -0.07104492, -0.6381836, 0.3149414, -1.2128906, -0.95751953, 1.6289062, -0.031707764, -1.40625, 0.91748047, -2.2539062, 0.33618164, -2.796875, 1.0253906, -1.3515625, -0.3334961, 0.7895508, -0.65722656, -0.10394287, -0.11035156, -0.39697266, -0.46826172, -2.0683594, -0.35986328, 3.6621094, -0.45336914, -0.9711914, 0.24072266, -2.3476562, -1.7617188, 0.18444824, 2.4433594, -1.046875, 0.5649414, 2.796875, -1.9462891, -3.9765625, -0.17089844, -2.8085938, 1.6875, 0.13171387, -1.3945312, 1.4892578, -1.5976562, -0.80810547, -0.1706543, 2.7441406, -4.1914062, -2.0449219, 2.6171875, -0.20837402, 0.9951172, -0.7832031, 0.515625, 0.5307617, -0.37182617, 1.2578125, 2.9746094, 1.1142578, 0.58447266, -0.43164062, 1.3349609, 1.8769531, 3.625, 1.0771484, -0.85791016, -2.359375, 0.23291016, -0.7529297, 0.4873047, 2.875, 2.5253906, -1.9902344, 0.23449707, -1.171875, 0.16760254, -1.1455078, -0.5058594, -2.0859375, 0.24401855, -0.68408203, -3.5820312, 1.5566406, 0.8828125, -1.1279297, 2.390625, -1.1074219, -2.703125, 0.048858643, -2.4785156, 2.7539062, -1.5117188, -2.2558594, 0.2524414, -0.3215332, 1.90625, -0.65722656, 1.0996094, -0.5185547, 0.84716797, -0.9946289, 0.9453125, 1.5908203, 1.8378906, -2.515625, -1.1289062, -0.9448242, 1.3193359, -2.21875, -2.3964844, 1.7851562, 0.0016317368, 1.9921875, 0.10223389, -2.0605469, 1.5615234, -0.16833496, 0.31591797, -1.296875, 0.47607422, 1.8291016, -0.92333984, -0.62402344, 0.49365234, -2.4433594, -1.75, 2.7324219, -0.019348145, -0.42041016, 0.73291016, -0.7441406, 1.5429688, -1.3535156, -0.6489258, 3.3222656, 0.27294922, 0.45288086, -1.5419922, -1.8886719, -0.8540039, -2.1542969, 1.2421875, -0.6147461, 0.9658203, -0.46044922, -1.9189453, -0.8676758, -2.7539062, -2.3417969, -1.5185547, 1.7792969, 1.6201172, 0.9692383, -0.7128906, -1.3447266, 2.140625, 1.7089844, -0.4482422, -1.5751953, 0.124938965, -0.06359863, 1.5527344, 1.6953125, -0.8984375, -0.65234375, -0.6303711, 4.4140625, -1.53125, 1.6279297, -0.5161133, 2.5429688, -1.1845703, -1.6660156, 1.609375, -0.061767578, 0.65625, -0.25097656, 0.30859375, 1.5078125, 2.2421875, 0.21618652, -2.234375, 0.3647461, -1.0039062, -0.74316406, -1.2324219, -1.9755859, -0.734375, -0.15527344, -0.17114258, 1.3691406, 0.8823242, -2.3886719, 0.42700195, 4.4804688, 2.1171875, -0.012260437, 0.14440918, 0.8383789, 0.6069336, 0.7470703, -2.9511719, -1.2783203, -2.0234375, -0.36791992, -0.77783203, 1.6875, 1.7910156, -0.25170898, 2.7441406, 0.045562744, -1.6210938, -1.3330078, 0.5805664, -1.65625, -0.95654297, -1.4912109, 2.0957031, 0.061523438, -2.0625, 0.9663086, 1.4335938, -0.3474121, -0.018829346, 2.7460938, 0.61376953, -0.20166016, -3.1777344, 0.9765625, -1.5185547, -0.9560547, 1.4179688, -0.15576172, 3.3945312, 1.5361328, -2.0039062, 1.6201172, -0.42822266, 0.47924805, 2.6660156, -0.26000977, -2.9785156, -0.19909668, -0.07702637, 2.4121094, -1.5410156, 0.7866211, -1.1533203, -0.07550049, 2.7011719, -2.2480469, -1.5439453, 3.0800781, 1.4882812, -0.21179199, 1.8251953, 1.1982422, -2.8085938, -1.6884766, 1.6455078, -0.9790039, 0.52490234, -1.8710938, -1.0947266, 0.051483154, -0.7919922, -2.4707031, -1.3134766, 1.8339844, -0.20227051, -0.121520996, 0.13891602, -0.019104004, 0.4038086, -1.3554688, 0.5834961, 0.47583008, -2.0976562, -0.9482422, -2.4746094, -0.26733398, -0.8935547, -0.11541748, -1.3955078, 1.0126953, -1.1621094, -0.7265625, -2.2128906, -2.4316406, -3.203125, -1.6210938, -0.13806152, 1.5898438, 0.14794922, 0.15722656, -0.1730957, -3.3417969, 0.8149414, 0.6015625, -1.03125, 1.6835938, -2.3691406, -0.8173828, 0.66064453, -0.4609375, 1.8984375, -0.36523438, 0.17919922, 2.3867188, -2.7890625, -2.4492188, 0.6538086, -1.3320312, 0.35961914, -1.6699219, -0.8051758, -1.0439453, -0.53808594, -2.0429688, 1.3388672, 2.8359375, -0.30981445, 1.6865234, -0.79589844, -0.5957031, 0.084350586, 1.1298828, -0.84228516, -1.7880859, 0.18115234, -1.9228516, -1.0810547, -1.859375, -0.87890625, -1.2900391, 0.21704102, -0.7167969, 3.1230469, 0.1829834, 4.5859375, -2.2128906, 0.19934082, 0.91552734, 1.3583984, -0.38061523, 1.0322266, -1.1445312, 0.3149414, -0.58691406, -2.7207031, -1.6611328, 1.1308594, -1.3076172, 0.88964844, 0.671875, 0.5395508, -0.26586914, 0.7163086, -1.0214844, -0.7207031, -1.7744141, -1.5117188, 1.5400391, 0.6958008, -2.8671875, -1.6884766, -2.0078125, 3.8203125, 0.23266602, 1.078125, 0.56347656, -0.49438477, 3.1582031, 1.6220703, 0.80371094, 1.3642578, 1.2763672, 0.51123047, -1.0478516, -1.7744141, 2.4257812, 0.32763672, -1.6337891, 0.10595703, 1.2216797, 0.6772461, 1.1943359, 0.67578125, 0.2775879, 0.054534912, -0.5546875, 3.203125, -0.18164062, 0.7036133, -1.2548828, 0.113464355, 0.17553711, 0.89941406, 2.4941406, 2.0136719, 0.20397949, -0.15490723, 0.5917969, -0.33764648, -2.6816406, 0.82910156, 1.8066406, 0.7548828, -1.3857422, 2.5839844, 0.41625977, -0.22094727, 3.7714844, -0.7949219, -0.20495605, -1.4658203, 0.6591797, 1.5488281, 0.7836914, -0.15246582, -2.8164062, -1.6318359, -0.6225586, -3.5898438, 0.89697266, -2.3925781, -1.4716797, 1.5351562, -1.5322266, -4.421875, 0.9633789, 3.9882812, -1.8789062, -1.5117188, -1.9882812, 4.1992188, -0.5883789, -1.6523438, 0.78125, 1.8984375, 0.3671875, 1.7382812, -0.75927734, -0.8745117, 2.5195312, -2.484375, 0.92041016, 0.5395508, -2.6328125, -1.3681641, -1.1074219, -0.28320312, -0.22363281, -0.53222656, -0.48413086, 0.26464844, -1.7138672, -0.24279785, -1.7451172, 0.48706055, -0.87646484, -1.1464844, -0.7788086, 1.4443359, 1.1416016, -0.23254395, -0.009376526, 3.3300781, 0.7631836, -1.6347656, 0.7885742, -3.5, -0.6621094, -1.6396484, -3.1601562, -0.51464844, -0.7324219, -1.7392578, 4.9960938, 0.16577148, 1.5146484, 3.7519531, -0.15673828, -1.2460938, 0.36816406, -1.8535156, -1.2597656, -1.5927734, -0.097595215, 3.0820312, 2.1503906, -1.2734375, -0.3935547, -1.6279297, -1.3515625, 1.0732422, -0.3232422, 1.2070312, -1.2460938, -2.2070312, -0.80810547, 0.6455078, 0.28930664, -1.1044922, -0.33862305, 1.0839844, 1.40625, 3.1230469, -1.5419922, 0.67333984, -0.27319336, -1.0185547, -0.5004883, 0.7685547, -0.5292969, 0.89208984, 3.4101562, -1.0869141, -2.6484375, -1.0673828, -0.28173828, 2.0449219, -0.10394287, -1.1933594, 0.29418945, -1.5244141, 0.20373535, 0.41235352, 2.1855469, 1.2841797, -0.7192383, -2.1210938, -0.071777344, 0.5444336, -2.6757812, -2.3710938, 0.81591797, -0.5834961, -0.082092285, -1.4121094, -0.93847656, 1.5800781, -2.5546875, -0.10217285, -1.5976562, 2.7539062, 0.23254395, 0.5917969, 5.1601562, -3.7558594, 0.42089844, 2.1582031, -3.9179688, -2.1171875, -0.5805664, -0.22229004, -3.3105469, 2.2832031, 2.4101562, -2.09375, -1.8193359, 0.011222839, 0.65234375, -0.38085938, -3.5644531, 1.4697266, -1.6328125, -0.18811035, 1.0566406, -1.1103516, 3.4277344, -0.6791992, 2.0175781, 2.34375, -0.4140625, 0.68066406, 0.85546875, -0.70947266, 0.021224976, 2.046875, 1.0039062, 1.0888672, -0.21557617, -0.5073242, 0.6123047, 0.9160156, -3.296875, 2.8632812, 0.5541992, 1.4511719, -1.2412109, -0.7734375, 1.8662109, 3.0800781, -0.4345703, 1.3496094, -1.3466797, -2.2460938, 0.7158203, 1.2998047, -1.9257812, 0.22705078, -0.8408203, -0.45092773, 2.34375, -1.7070312, -0.8334961, -0.6357422, -0.3774414, 0.10687256, 0.31958008, -0.13598633, 0.71435547, 1.8378906, -0.796875, -0.9609375, -2.3828125, -1.6787109, 1.1767578, -1.0136719, 0.9946289, -0.7392578, -0.6254883, 4.1796875, -2.6015625, -2.609375, 1.2509766, -0.44702148, 1.6347656, 0.70751953, -1.3193359, -2.9570312, -2.1347656, -1.1210938, 0.06652832, 1.6181641, -0.10168457, 1.4052734, -2.0371094, 2.3847656, -2.8359375, 1.4443359, -1.3515625, -0.9584961, 2.7636719, -4.7695312, -0.46679688, -2.2324219, 1.7363281, 0.640625, 1.0224609, 1.9980469, -1.9472656, -0.51171875, 0.9663086, -0.69677734, -2, -1.5498047, 0.7060547, 1.3730469, -0.75634766, -0.32299805, -0.54589844, -0.8588867, 0.8300781, 1.8427734, 0.6542969, 0.34765625, -1.3466797, -1.7392578, -2.3398438, 0.17663574, 0.41748047, 0.95214844, 1.5097656, 4.5078125, -2.3632812, -1.640625, -0.5957031, -1.3886719, -3.1269531, -1.7285156, 1.9287109, 0.6948242, -0.40454102, 0.44506836, 0.13867188, -0.9765625, 3.4160156, -0.3203125, 0.5649414, 2.296875, -0.6381836, -0.9399414, -0.99560547, -4.234375, 1.3310547, -3.8222656, 0.42163086, 0.19616699, -2.6152344, -0.21191406, 2.9726562, -2.5410156, -1.6181641, -0.089660645, 1.5087891, 1.6611328, 0.15893555, -0.47338867, 1.2939453, -2.5117188, -3.1953125, 0.46142578, -1.2197266, -0.8046875, -1.6220703, -0.9301758, 2.5625, 0.64746094, 1.8037109, 0.81152344, 0.64746094, -1.3789062, 1.0273438, 0.6821289, 0.6401367, 0.90966797, 0.6064453, -2.0253906, -1.953125, 0.87597656, 0.8276367, 0.2939453, 2.0449219, -1.3369141, -2.0898438, -1.0439453, 0.3178711, 1.0966797, 3.2402344, 1.2109375, -0.12335205, -0.8989258, 0.57128906, -2.5605469, 3.2402344, 1.6074219, 3.0996094, -2.1894531, 4.328125, -1.8330078, -5.3515625, 1.4570312, -0.54003906, 0.037384033, 0.04260254, -0.7661133, -0.40527344, -1.8085938, -1.7949219, -0.9951172, 0.23937988, -1.1025391, 2.4980469, 0.5078125, 1.3203125, -0.35668945, 3.3847656, 1.1748047, 3.1777344, 3.0839844, -0.16210938, -1.2080078, -0.9394531, -1.265625, 0.31762695, 1.46875, -1.1748047, 0.32861328, 0.11968994, -1.0263672, -1.8867188, 1.5791016, 1.234375, 1.7626953, 0.69091797, 2.21875, 3.9023438, 1.0009766, 2.6269531, 1.0605469, 2.5371094, 0.93896484, 1.3769531, 0.0026988983, 3.2441406, 1.2734375, 0.6503906, -0.73876953, 1.6289062, 0.1394043, -0.80810547, 1.3496094, 0.68652344, -0.8774414, -1.4091797, 2.2480469, 0.9819336, -0.19055176, 0.12878418, 1.0527344, -2.5761719, -0.7416992, -1.1445312, 1.3349609, 3.7519531, 0.48486328, 1.1962891, 0.93847656, 0.43969727, 3.1914062, -2.6503906, 0.3725586, 1.1445312, -0.4580078, -1.8515625, 3.5742188, -0.034454346, 1.4130859, 1.0966797, -0.31860352, 1.0380859, 1.2773438, 0.6640625, -0.26391602, 0.32763672, -0.93847656, 1.1152344, -1.9853516, -1.7099609, -1.8662109, -0.16601562, -0.71191406, -1.96875, 0.7133789, 1.0039062, 2.5214844, 0.63916016, -4.7773438, -0.81347656, 0.9355469, 2.0703125, -3.6035156, 0.5449219, -0.19750977, -2.8847656, -2.3925781, 1.7070312, 1.1943359, 1.5166016, 1.1210938, -1.7333984, 1.9433594, 0.96972656, 1.9316406, -0.07775879, 0.5571289, -1.3583984, 1.0498047, 0.7392578, 3.9472656, 1.53125, 1.3710938, -0.21105957, 0.9399414, 3.3632812, 1.1552734, 0.7163086, 1.3955078, -0.81640625, 0.10900879, -0.55908203, -0.21801758, -0.39672852, -1.4384766, -1.8671875, 0.083862305, -0.018096924, -1.9814453, -0.47558594, 0.42871094, 1.5488281, 1.2519531, -0.39038086, -0.4416504, 2.6386719, 2.4375, -0.74853516, -0.008163452, -0.6074219, 0.21643066, -1.7861328, -1.09375, 1.5947266, 1.9199219, 0.60302734, -1.1914062, 0.8911133, 0.5571289, 0.6279297, -0.025268555, 2.125, -2.8144531, -1.2871094, 0.27539062, -0.70751953, 2.1542969, 2.9511719, -1.0302734, -1.0751953, -0.8027344, -1.4296875, -0.6269531, -1.3447266, -1.2744141, 1.0917969, 4.0664062, 2.140625, 0.08630371, -1.46875, -0.87890625, 1.8886719, -0.7788086, 2.6054688, -0.113220215, -0.26416016, 0.091430664, -1.8994141, 1.8134766, 0.48657227, -2.0585938, 0.44628906, -0.6230469, -0.23864746, -0.9067383, 1.0273438, 1.4306641, 0.17370605, -0.86865234, 2.09375, 3.4316406, 0.56640625, 2.8144531, 2.2734375, 0.057647705, -2.4042969, -0.42016602, -0.08557129, 1.7333984, 1.7363281, 0.19689941, -0.9633789, -0.23144531, -0.72753906, -1.4765625, -0.41308594]}, "B01IHHLB3W": {"id": "B01IHHLB3W", "original": "Brand: ThermoPro\nName: ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer\nDescription: \nFeatures: Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor\nAccurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to \u00b10.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on\nEasy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage\nSmart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included\nBacklight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors\n", "embedding": [-4.0664062, 2.2167969, 4.96875, 1.0439453, -0.28637695, 0.9038086, -2.0800781, 1.3798828, 0.7133789, 0.9067383, 0.7158203, 0.4033203, -0.3203125, -0.17199707, 2.6894531, 1.4355469, -0.22131348, 0.4892578, 1.46875, 2.6269531, 2.2871094, 2.53125, -1.5712891, -0.9423828, 2.3945312, -0.8466797, 1.9736328, -1.8671875, -1.0449219, -1.7119141, 3.2519531, 3.3574219, 0.7661133, 1.3691406, -1.1972656, 0.24645996, -0.53271484, 0.37548828, 0.5029297, 0.6660156, -0.15905762, 1.4550781, 0.22888184, 1.9160156, -3.2480469, -1.4023438, -1.5751953, 2.5234375, -3.1367188, 0.75, -1.0839844, 2.6074219, -2.8925781, -0.21313477, 0.8408203, 0.8129883, 0.6015625, -1.8457031, 0.8984375, -0.1743164, -0.5336914, -0.11553955, -0.7416992, 0.5180664, 1.5810547, -0.48901367, -0.009254456, -2.796875, -0.03314209, 0.39819336, 1.4609375, 0.86279297, 1.7412109, 0.41601562, 1.1962891, -1.9648438, -0.8120117, 1.3017578, 1.375, 0.8520508, -1.0390625, 2.3867188, -1.0576172, -2.9101562, 0.15881348, -2.4882812, -0.12670898, -0.4267578, 2.6035156, 0.13244629, -0.021865845, 2.6972656, -1.9248047, -1.5566406, 1.7558594, -1.6308594, -1.1123047, -0.9506836, 0.5883789, 2.6347656, -1.3242188, -0.98535156, 0.07739258, 1.2998047, -0.9038086, -1.8056641, -0.06939697, 1.3232422, -3.90625, -0.8613281, -1.7773438, 1.0625, 1.0498047, 0.41601562, -0.8222656, -0.51708984, 0.39868164, -0.15185547, 0.27368164, 1.0869141, 2.5019531, -1.4863281, 0.31079102, -0.6098633, -0.46948242, 0.17456055, 2.0097656, -0.39819336, 1.2617188, -0.17614746, -1.0683594, -0.28979492, 1.1201172, -2.296875, 1.2333984, -1.9248047, -1.6376953, -2.3125, -1.5283203, -2.0996094, -1.6542969, 1.234375, -0.1529541, 1.1689453, -1.9267578, -1.2373047, 0.6899414, 0.38891602, 2.3105469, -1.6376953, 2.3964844, -2.203125, -2.1445312, 1.3310547, 2.1816406, 1.3515625, -1.3232422, 0.41552734, 3.0039062, 0.55810547, -0.5786133, -0.90771484, -1.1035156, -0.3112793, 1.7177734, -0.16516113, -2.9472656, 0.6069336, 2.4511719, 1.9833984, 0.8256836, -0.43969727, 1.9443359, -0.09790039, 0.68066406, -2.9296875, 3.0644531, 3.3417969, 1.0869141, 1.3144531, -0.97021484, -0.65478516, 0.1307373, 1.8974609, -0.02470398, -3.0410156, -1.1181641, 0.24182129, 0.79345703, -2.6347656, 2.4746094, 1.8017578, 0.8798828, 0.10028076, -0.050628662, -0.97558594, -2.0117188, -1.9462891, 1.2001953, 1.1259766, 0.8540039, 0.1184082, -2.5605469, -2.8203125, -0.8857422, -2.6621094, 0.86621094, -0.31640625, 1.3535156, 1.5244141, 0.35327148, -2.2070312, 0.20617676, -0.4416504, 0.6435547, -3.3945312, 0.54296875, -0.60058594, -0.15661621, 2.4316406, 0.56152344, -1.7548828, -0.4013672, 3.8828125, -1.8828125, 2.4707031, -0.82421875, 0.49072266, -0.94189453, -1.0019531, 3.7832031, -0.9458008, 0.19030762, -2.5976562, -1.0039062, 1.1914062, 1.5126953, -0.625, -1.1972656, 0.6308594, -0.30908203, -2.4082031, -0.4008789, -2.4804688, -0.3713379, -0.43310547, -1.5634766, 2.6367188, 1.1523438, 0.37060547, 0.027526855, 0.0034732819, -0.6015625, -0.49609375, 0.25683594, 0.03265381, 0.08355713, 0.6772461, -2.421875, -1.9335938, 1.4179688, 0.24719238, -1.8671875, 1.7763672, 2.4589844, 0.14501953, 5.0390625, 2.1210938, -0.65283203, -0.2446289, 1.5322266, 0.9633789, -2.4726562, 0.06628418, 1.4121094, 2.9570312, 0.7265625, 0.2043457, 2.1269531, -1.3330078, -0.23742676, 1.3056641, -0.93896484, -0.9091797, 0.3623047, 0.17626953, -1.9570312, -2.3847656, -0.6484375, 0.70166016, 4.1054688, 0.2861328, -2.703125, 3.1035156, -2.5761719, 1.3535156, -1.1914062, -1.2792969, 0.37695312, -1.4726562, 2.2539062, 0.5078125, -2.34375, 0.56347656, 0.9458008, 0.7871094, 1.7617188, -0.33081055, 1.09375, 0.5654297, 1.3242188, -1.3183594, -3.0683594, -0.29785156, 0.07171631, -2.8867188, 0.24438477, -2.34375, 1.2929688, -1.4726562, 2.7695312, 2.5566406, 2.8886719, -2.0546875, 1.3291016, 2.8066406, -0.8701172, 0.7294922, 0.68408203, -0.20007324, 0.61865234, -1.7294922, 0.4909668, -0.045684814, -2.8222656, 0.21252441, -1.6230469, -1.1816406, -0.11175537, -0.16674805, -1.8007812, 1.9277344, -1.1142578, 0.21362305, -1.0400391, -2.5058594, -0.7416992, -0.81103516, -0.83447266, -1.1425781, -0.2548828, -0.15148926, -0.34570312, -1.9052734, 2.4980469, 1.3457031, -0.79541016, 0.45092773, -3.3613281, 0.3798828, -1.4160156, 0.13964844, 1.2490234, 1.4902344, 0.62060547, -2.7070312, 0.796875, -1.2109375, 0.8046875, -2.921875, 1.2949219, -1.8613281, -1.1806641, -1.3632812, -0.2919922, -0.5673828, 1.3525391, 1.1445312, -2.1523438, 3.5117188, -2.4882812, 1.1572266, 1.6220703, 1.9042969, -1.6894531, -2.1855469, 0.11981201, -1.6904297, -0.9121094, -3.9277344, 0.54003906, -0.96435547, 2.1054688, 0.5966797, 0.6557617, -0.90283203, 1.5273438, -1.0175781, -2.3925781, -0.14648438, 0.11444092, -1.1005859, -0.4987793, -2.2460938, -0.97021484, -1.8652344, -2.5390625, 1.5839844, 1.3193359, 1.0673828, 4.3203125, 1.3164062, 0.10736084, -0.013999939, -0.40063477, -3.8105469, 0.84521484, 0.5390625, -1.0830078, -1.2060547, -0.625, -0.46704102, 1.2226562, -0.48291016, 2.8730469, 0.3383789, 3.6386719, -0.44995117, -0.6142578, 0.7583008, 1.8867188, -0.98828125, -0.98876953, 2.2851562, 0.41064453, -3.7792969, -2.3828125, 0.4519043, 2.0390625, -0.375, -3.1445312, 0.8276367, 1.2597656, 2.9511719, 1.0976562, -1.7841797, -1.4365234, -1.1601562, 2.1035156, -0.8486328, -1.953125, -1.3603516, -1.2734375, 0.26611328, 0.8022461, -0.23950195, 3.1015625, -0.09362793, 0.91845703, 1.2958984, 0.5878906, -1.9707031, -2.671875, 0.23413086, 0.31762695, 0.87353516, 0.2376709, 0.9472656, -0.26245117, 0.89746094, 0.18713379, 0.67041016, -2.9882812, 0.61083984, 0.33789062, -0.54003906, 0.9765625, 1.1806641, -1.0566406, -0.51953125, -2.4472656, -0.75, 1.6669922, -1.3398438, 2.9960938, -0.7631836, -2.2519531, -1.703125, 1.6826172, -1.1933594, 0.28393555, -0.45532227, 1.6972656, -1.3027344, -0.70458984, -0.39233398, 0.9008789, -1.4765625, -2.4609375, -1.2871094, -0.50146484, -0.9921875, -1.2773438, -0.7558594, 1.7197266, -2.5703125, -2.046875, -0.34716797, 2.3378906, 2.3125, 0.6308594, -1.3457031, 1.2841797, 0.1060791, -1.4990234, -4.3554688, 0.95654297, 1.6962891, -1.6035156, 0.115234375, 0.77783203, 0.8847656, 1.6396484, -1.0527344, 0.9067383, 0.63378906, -3.3554688, 0.004432678, -2.7519531, -0.9790039, -2.0820312, -3.7832031, 1.1679688, -0.23608398, 1.3867188, 2.703125, 1.640625, 0.4958496, 2.1445312, 2.2636719, -2.3261719, -2.2480469, -1.1015625, 0.81103516, 1.0097656, -0.44726562, 5.7460938, 1.8232422, -1.2792969, -0.34399414, -1.5146484, 0.4753418, 2.4394531, 0.90185547, 2.4121094, 0.6328125, -1.3066406, -0.90722656, -0.6713867, -0.65771484, -0.7758789, 0.5102539, -0.17529297, -1.2929688, 1.7724609, -2.5605469, -0.3173828, -2.6679688, 3.671875, -0.47314453, 1.4326172, -0.5097656, 1.6894531, 1.0654297, 0.56933594, -1.0244141, -0.81689453, -2.7890625, 1.9042969, 0.86083984, -0.2836914, -0.55810547, -3.8613281, -2.0429688, -0.8203125, -1.9541016, 1.7285156, 1.1347656, -1.3242188, 0.4597168, 1.1279297, -0.82666016, -0.25854492, 0.4243164, -2.8828125, 0.02180481, 0.8256836, 2.4121094, 0.79003906, -3.0585938, -1.171875, -2.75, 3.3847656, 2.8125, 0.76220703, 2.984375, 0.45092773, -1.1816406, 0.051971436, -1.2724609, 0.16796875, -0.30664062, 1.3759766, 0.6777344, -0.37353516, 1.3671875, -1.4160156, -0.99853516, 1.3320312, 1.6845703, 1.4980469, -1.7558594, 0.92871094, -0.87402344, 0.5957031, 4.546875, -0.35717773, 3.7089844, 0.42895508, 1.6923828, -0.24523926, -2.0996094, 0.5776367, 0.1652832, 0.008323669, 0.5341797, -0.29516602, 0.19396973, 3.1230469, -0.8535156, -0.38476562, 0.45288086, -0.26586914, 0.09838867, 2.3964844, 1.1601562, 1.4335938, -3.8847656, -1.1210938, 2.8222656, 2.4394531, -0.77490234, 4.2265625, -0.08862305, -1.4101562, 0.27661133, 3.5839844, -0.8569336, 1.5292969, -1.5351562, -1.3847656, 0.6557617, -1.2216797, -2.3671875, -0.18774414, 3.0917969, -1.578125, 2.7441406, -1.7695312, -1.6923828, 1.8730469, -3.9824219, 0.1348877, -0.40600586, -0.38623047, 1.7382812, -1.1835938, -1.5869141, -1.0566406, 2.4316406, 2.6601562, -1.6787109, -0.21618652, 0.070007324, -2.3027344, -1.6982422, -0.5473633, -0.34301758, -2.0917969, 0.15649414, 0.93115234, -0.94921875, -2.0683594, 0.16992188, 2.2617188, -1.1035156, -0.2541504, -1.5341797, 2.8359375, -2.1875, 0.2614746, -2.5859375, 1.6748047, -1.3632812, 0.28564453, -0.005092621, -2.203125, 0.859375, 2.140625, -0.8828125, -2.6777344, 0.69433594, -1.6533203, -2.9414062, -0.8901367, 1.3779297, 1.3818359, -1.0429688, 0.40283203, 0.48168945, -1.7724609, -0.8442383, 1.0058594, -0.6176758, 0.703125, -0.51708984, -0.19421387, -0.8208008, -0.16052246, -1.4511719, 1.2646484, 0.13232422, 1.5390625, -0.68408203, -2.2929688, -2.2421875, 0.3527832, -3.8789062, -2.3828125, 0.93115234, 2.1582031, -0.9633789, 2.0117188, 0.81591797, -3.1679688, 2.8085938, -0.2746582, 1.4833984, 0.7836914, 0.4350586, 1.1640625, -1.3242188, 1.3144531, -0.34301758, -0.7368164, 0.98876953, 0.86328125, -3.2089844, 1.2734375, 0.22692871, -1.2158203, -1.4306641, -1.0087891, -0.20800781, -0.20690918, 0.48291016, 0.4621582, 0.6660156, -2.9882812, -5.0234375, -1.3574219, -1.0625, -0.37353516, -2.0429688, 0.4267578, 3.1464844, -0.09503174, 2.2636719, -0.5253906, 1.2001953, -3.6113281, 1.0839844, 0.7949219, 2.0683594, 0.62597656, -1.0390625, -0.6225586, -1.9765625, -0.65722656, 2.015625, -0.55810547, -2.5722656, 0.4777832, -2.3339844, -1.5117188, 1.2304688, 2.2421875, -0.9038086, -2.1894531, 0.07116699, 0.69140625, 2.1933594, -1.7285156, -0.73095703, 0.9663086, 2.8554688, -1.1835938, 3.4277344, 0.34033203, -1.8798828, -0.28344727, -0.9033203, -1.1513672, -0.37548828, -1.1933594, 2.3828125, -0.8984375, 0.09643555, 1.2822266, -3.0703125, 0.68115234, 1.0439453, 2.8710938, 0.49291992, -0.17199707, 3.3320312, 0.8232422, -0.3305664, 1.8535156, -1.5986328, 0.69970703, -1.5556641, 0.03817749, -1.0507812, 1.9511719, -2.8886719, -0.29174805, 0.27392578, 0.7089844, -2.6875, 2.6679688, -0.47607422, 0.83154297, 2.0722656, 3.1582031, 1.9492188, 2.0136719, 2.2734375, 0.085876465, 1.8154297, 1.5175781, -1.3251953, 0.13439941, 2.6035156, 0.27270508, 0.64990234, -2.6875, 0.88378906, -0.34228516, -0.018508911, 0.22668457, 1.9560547, -0.43188477, 0.6459961, 1.1142578, 0.20373535, -0.16027832, -4.2382812, 0.12902832, -0.6665039, 0.25512695, -2.3652344, 3.2519531, 1.7412109, -2.2285156, 0.42456055, -0.9404297, 0.56152344, 0.8959961, -2.2382812, 1.421875, 1.7001953, -0.7817383, -1.1152344, 0.7944336, -0.09729004, 1.3984375, 2.3691406, -1.3544922, -0.6796875, 0.07067871, 0.6743164, -0.006385803, -1.5146484, 0.21948242, 2.4160156, -1.4130859, -1.5927734, 0.8833008, -1.5712891, -2.6445312, 0.8027344, 1.7548828, -0.21105957, 1.453125, -2.5019531, -2.8613281, 1.7285156, 0.06793213, 1.0224609, 1.0341797, -0.48754883, 0.61621094, -0.83154297, 2.6875, 1.1074219, -0.5888672, 2.9101562, -3.2441406, -2.5546875, -0.87060547, -0.39916992, 1.0595703, 2.0292969, -0.15563965, 0.17626953, 1.1328125, 0.3395996, 3.5097656, -0.82470703, -2.8417969, -2.5703125, 2.0429688, 0.117004395, 1.1025391, -0.109802246, -3.7695312, -0.42016602, -0.14318848, -1.9824219, -1.4287109, -0.9160156, 1.609375, 1.4121094, -1.7197266, 1.2949219, 0.32788086, 2.1523438, 0.9477539, 1.2333984, 1.1962891, 1.3671875, -1.8085938, 2.1074219, 2.078125, -1.8027344, 1.2431641, -0.0309906, 1.4111328, 0.2626953, 0.095703125, -0.41577148, 0.80615234, -0.049224854, 0.17346191, 0.72509766, 1.6621094, 1.5029297, 1.171875, 0.31030273, -1.5234375, 1.2109375, -2.8945312, -3.2753906, 0.8701172, 1.4755859, -1.0117188, -0.038146973, -0.6713867, -1.2666016, -1.2207031, 1.1015625, 1.1464844, 1.1894531, 2.1289062, 1.2148438, 1.0888672, -0.55322266, -2.5546875, -1.1787109, -0.49023438, -1.4980469, -0.1385498, 1.5166016, 0.7368164, -0.38598633, 0.18725586, -0.7416992, -0.56347656, -1.6748047, -2.0742188, 0.73046875, -2.5898438, 1.5380859, -2.1347656, 1.1933594, 1.1835938, -0.51660156, 0.7709961, 1.9462891, 3.9453125, 1.7890625, 0.75146484, -1.6835938, -2.3027344, 3.0644531, 1.9472656, 0.45288086, 1.9023438, 0.068359375, -0.6982422, 0.03451538, -0.82666016, -1.8378906]}, "B07X8ZN8MS": {"id": "B07X8ZN8MS", "original": "Brand: Anpro\nName: Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father's Day, Smoker, Camping, Kitchen,21 PCS-Standard\nDescription: Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard\nFeatures: DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again.\nPRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection.\nELEGANT DESIGN FOR GRILLING: You'll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend.\nPROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father\u2019s day grilling gifts for men, excellent gift for any camping lovers.\nHASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.\n", "embedding": [-0.7324219, 2.3515625, 1.0664062, 0.4309082, -1.2900391, 1.7080078, 0.55615234, -1.6367188, 0.8286133, -0.4897461, -0.21862793, -0.089538574, 1.9960938, -2.6972656, -0.4555664, 0.66064453, -0.10479736, 1.6455078, 1.0849609, 1.6572266, 1.8066406, 1.0283203, 1.015625, 0.52783203, 1.1162109, 0.21923828, 5.8046875, -3.3046875, 2.5625, 0.6274414, 1.7041016, 0.7084961, 1.3730469, 2.1171875, -2.5585938, 1.4648438, -1.6923828, 1.3476562, -0.3076172, -0.08569336, -1.7099609, -0.9902344, 1.8691406, 0.59765625, -3.4335938, -0.6176758, -0.6791992, 2.7089844, -1.0166016, -3.4160156, 0.6430664, 2.4726562, -0.006389618, 0.86035156, -3.4570312, 0.7675781, -1.2119141, -3.3632812, 1.4736328, 0.24230957, 0.09643555, -0.56152344, -0.640625, -0.9423828, 0.4934082, -0.5283203, 1.2353516, -1.09375, 0.5371094, -1.1386719, 0.3425293, -0.9472656, -1.265625, -1.1259766, -0.08258057, 0.26000977, -0.47705078, 0.25024414, 1.0419922, 0.4765625, -1.8613281, 3.7460938, -0.07342529, -1.9667969, 1.2412109, -1.578125, -1.3632812, -0.5024414, 2.6269531, -1.0517578, -0.78564453, 2.4726562, -1.671875, -5.5429688, 2.65625, -1.9443359, 0.19616699, -2.0390625, 1.0419922, 1.8662109, -0.7705078, 0.035339355, 1.2275391, 0.8408203, -1.8056641, 0.10772705, 0.43017578, 1.1025391, -1.4472656, -0.95214844, -1.1582031, 0.39624023, 1.1630859, 0.7182617, -0.67529297, 1.953125, -1.5449219, 0.28881836, 1.6884766, 2.1289062, 3.5292969, 1.7197266, -0.65722656, -1.2167969, -0.62841797, 1.0556641, -1.1015625, 4.015625, 2.7480469, 0.40527344, 0.35205078, -0.9223633, 0.1940918, -0.045074463, -0.21655273, -1.7324219, -1.8144531, -0.31274414, -0.5942383, 2.8613281, -0.3955078, 0.9536133, 1.8574219, -0.9038086, -2.7539062, 0.3552246, -1.2607422, 0.34033203, 0.20141602, -0.77685547, 2.4570312, -1.8701172, -0.2915039, -0.67089844, 2.2421875, -0.30664062, 1.1181641, -0.37841797, 2.4335938, 1.8603516, 0.43774414, -3.8554688, 1.2919922, 2.3476562, 0.7470703, -3.4980469, -1.4541016, 1.8837891, -0.054534912, 1.0839844, 0.6533203, -2.7285156, -0.35302734, -1.1738281, -0.18054199, -1.4335938, 0.42749023, 3.0234375, 0.6171875, 0.0048217773, 0.6484375, -3.0722656, 0.8828125, 1.8339844, 2.2265625, -0.9609375, 0.024520874, 0.37646484, 1.2451172, -1.2724609, 0.13537598, 0.84033203, -1.0087891, 1.6767578, -0.81689453, -3.6542969, 1.5576172, -2.9355469, -0.61279297, 1.2177734, -2.4511719, -0.8125, 0.6533203, -0.53564453, -0.85498047, -1.7451172, 0.7060547, 0.08203125, 2.125, 2.078125, 1.2324219, -1.2832031, 1.4482422, -0.45874023, 0.6542969, -1.4863281, 0.8730469, -1.1318359, 2.0429688, 1.5742188, -2.4101562, 1.6083984, -0.63183594, 2.4375, 0.98339844, 0.60058594, -0.6381836, 2.3339844, -1.3798828, -0.7089844, 0.53466797, 0.07562256, -1.0820312, 0.9902344, -0.55078125, 0.9716797, 0.29785156, -2.3085938, -1.0566406, -0.76660156, -0.6430664, -1.8017578, -1.6416016, -0.8876953, -0.8857422, 0.07910156, -1.7509766, 2.9726562, -0.04751587, -1.3798828, -0.35009766, 0.13781738, 0.055847168, 0.14538574, -0.17749023, 0.50878906, -1.8574219, 1.0556641, -4.390625, 0.35327148, 0.7421875, 0.94970703, -0.70654297, 0.89160156, 1.1757812, -0.50341797, 2.8652344, -1.984375, -1.2392578, -0.5786133, 0.7363281, 0.84277344, 1.0458984, 0.16088867, 2.625, 1.2119141, -0.7397461, 0.93310547, 0.30395508, -0.8623047, 0.061523438, 0.9609375, 1.4267578, -0.875, 0.32250977, -1.4697266, -1.2255859, -2.7011719, 1.2636719, 1.9423828, 4.6328125, 1.0595703, -1.4199219, 4.1796875, -2.0195312, 1.1240234, 0.703125, 0.4958496, -0.8979492, -0.4658203, 1.0019531, 1.8759766, 1.3632812, 0.20336914, 0.07800293, 0.11804199, -0.10656738, -2.3320312, -0.57910156, 1.3574219, -2.1035156, -0.703125, -0.107666016, 1.4521484, -2.1484375, -1.4775391, -1.3535156, -2.1054688, 1.4785156, 0.2368164, 1.0878906, 1.1455078, 0.3955078, -2.75, -0.95214844, 0.7270508, -1.4833984, 1.7011719, 1.1103516, -0.84277344, 2.9394531, -0.1628418, 0.35327148, -0.13757324, -2.0078125, -0.3371582, -1.2363281, -1.7177734, 1.3496094, 0.18823242, -0.0076828003, -1.2060547, -2.3183594, -0.2890625, -2.3535156, -2.8300781, -2.8632812, -0.9404297, -0.7319336, -0.13745117, -0.6855469, 0.5175781, 0.921875, -3.0546875, 1.4121094, 0.25634766, 1.5722656, -0.30517578, -0.9824219, 1.6582031, -1.0458984, -0.121154785, 1.8417969, 1.8007812, -0.06222534, -1.4707031, 2.2226562, -2.7851562, 0.44799805, -0.7573242, -0.4724121, 0.4560547, 0.6010742, -1.3496094, -0.7138672, 0.21923828, -1.3613281, 2.9238281, -1.6357422, 0.9765625, -0.43847656, 0.25830078, 1.0820312, -0.2166748, -1.3144531, -3.2167969, 1.7978516, -1.4677734, -0.27514648, -1.3339844, 0.70410156, -1.5996094, -0.68310547, -0.29370117, 1.1445312, -1.0478516, 1.5478516, -0.061828613, -1.6933594, -0.6020508, 0.49658203, 0.21142578, -0.76904297, -1.0830078, -0.60009766, -0.33325195, -0.6713867, -1.3017578, 3.1582031, -1.3300781, -1.8818359, 0.38720703, 0.052703857, -0.48291016, 0.5341797, -2.5644531, 1.7197266, 2.0117188, -2.3457031, -1.4824219, 0.07562256, -1.5791016, -1.2861328, 1.6474609, 3.1015625, 0.9916992, 1.2744141, 0.6958008, 0.16430664, 0.78027344, 2.2519531, -0.671875, -1.4472656, 1.5888672, 3.4453125, -1.0263672, -2.3789062, 0.50878906, 0.32006836, -2.5605469, 1.2226562, 0.15124512, 0.4777832, 2.9804688, 0.90966797, 2.1386719, 2.46875, 0.115112305, 2.2246094, 0.6694336, -0.8930664, -1.5957031, 1.1855469, -0.5410156, -1.2294922, 1.0351562, 0.9892578, 0.0033283234, 3.1386719, 0.8666992, 0.09515381, -0.9897461, 1.6289062, 1.5478516, 1.2216797, -0.5488281, 1.0253906, -1.5771484, -0.5317383, -0.050109863, -1.1103516, 2.0742188, -2.5195312, -0.13842773, 2.0546875, -0.27124023, -0.11907959, 0.3005371, 0.023910522, 0.21105957, -0.4362793, -0.5908203, -1.3544922, -0.8535156, 0.515625, -0.18334961, -2.2304688, -0.7348633, 2.0351562, -0.8574219, -0.8725586, -0.7871094, 2.5664062, -1.4160156, -0.39038086, -0.4099121, 0.86816406, -0.15454102, 2.3457031, -0.7338867, -1.1650391, 2.4140625, -2.9160156, 1.3789062, 1.5927734, -1.9208984, 0.60302734, -0.08581543, -1.5117188, -1.6191406, -0.8613281, 1.4072266, 0.8544922, -2.5585938, -0.4790039, -2.1738281, 0.4880371, -0.46875, -1.3076172, -0.68652344, 1.0595703, 1.8291016, 0.35009766, -0.5517578, 2.1523438, 1.3212891, -2.7421875, 0.9345703, -4.2890625, -0.9116211, -1.296875, -2.4980469, 1.1064453, 0.012161255, 1.3349609, 0.059051514, 1.7275391, 0.27148438, 4.5273438, 0.3388672, -1.2880859, -1.1777344, 0.5205078, 0.31030273, -1.6914062, -0.89746094, 0.5131836, 0.8154297, -0.62939453, -1.1269531, 0.6464844, -1.5205078, 1.5175781, -0.328125, -1.1357422, 0.19140625, -0.6298828, 0.25805664, -0.7402344, 0.7182617, -1.5742188, -1.1914062, 0.6191406, -0.8144531, 1.3007812, 1.1142578, -0.3630371, -3.2070312, 1.1914062, -0.3395996, -1.6601562, -1.515625, -0.28222656, 2.6699219, -0.484375, -2.0429688, -0.36083984, -1.9804688, 0.049591064, 0.5439453, -0.05355835, 0.8222656, -1.8417969, 1.0507812, 0.1104126, -0.23840332, 1.8417969, -0.6479492, -2.0332031, -1.0253906, 1.984375, -0.9658203, -3.4140625, -0.99902344, -2.1914062, 0.8022461, -1.2148438, -1.2041016, 1.0009766, -0.46655273, 0.4560547, -1.46875, 1.7880859, 1.4082031, -0.61621094, 4.6054688, -0.4892578, -0.53808594, 0.7910156, -1.4990234, -0.77685547, -0.4255371, -1.0117188, -0.13684082, -0.67285156, 0.8833008, -1.4472656, 1.2089844, -0.015335083, 0.36279297, -1, -2.3203125, 2.0449219, 0.46704102, -0.034332275, -0.47631836, -1.1171875, 2.3417969, -0.83251953, 2.5351562, 0.80566406, 0.9453125, -0.3869629, -0.35058594, 0.3347168, 1.2509766, -0.27685547, 1.7050781, 2.1054688, -2.1660156, 0.5126953, 0.7036133, -0.13061523, -0.5283203, 0.36499023, 1.2617188, 1.1005859, -1.0976562, -1.1542969, 1.8818359, 1.2607422, -1.3740234, 4.2578125, -0.74902344, -1.9550781, 1.6113281, 0.87939453, -2.6582031, 0.3930664, -0.21875, -0.984375, 0.7758789, 0.98095703, -1.3730469, 0.84033203, -0.33447266, -0.57470703, 0.6635742, -2.5136719, -0.7236328, 0.4128418, -1.2558594, 0.58447266, -2.2460938, -0.7861328, 1.5371094, -0.8754883, 0.19848633, -0.5371094, 2.0234375, 2.8359375, 0.5644531, -1.7617188, 0.5283203, -1.4326172, -0.16491699, -0.8564453, -1.0712891, -3.4804688, -0.51464844, 2.3613281, 1.8447266, 1.6230469, -0.25732422, 1.5068359, -0.9741211, 1.5048828, -1.4169922, 4.1601562, -0.92871094, 0.19506836, 1.8789062, -1.1425781, -0.7504883, -1.4042969, 0.99316406, 0.53027344, 2.4238281, -0.14257812, -0.6411133, -0.90722656, 0.2866211, -0.72314453, -4.859375, -1.2900391, -0.008926392, -0.30126953, 1.0458984, -0.8417969, 1.4306641, 1.0214844, -1.5986328, 0.19604492, -0.3491211, 0.116760254, 0.21875, 0.78222656, -2.7089844, 0.08111572, -0.38964844, 0.3161621, 2.3710938, 1.2353516, -1.6738281, -3.5664062, 0.39794922, 0.22961426, -2.6542969, -1.7792969, 1.8066406, -0.2800293, -1.4375, 0.22485352, 0.8881836, -1.2080078, 0.8417969, 0.00881958, -1.5585938, -2.5488281, -1.4521484, 1.7792969, -0.004722595, -1.5791016, 0.8027344, -2.1054688, 1.4667969, 0.2614746, 0.33154297, 2.8886719, -0.024627686, -1.1572266, -0.007549286, -1.0039062, 1.4990234, 0.7524414, -0.034851074, -1.0947266, -1.0507812, -3.6542969, -2.5097656, 0.7055664, -0.84472656, 0.98339844, -1.4375, -0.60302734, 2.2304688, -0.3552246, 0.5566406, -0.4362793, 1.6025391, -2.4023438, 0.66845703, 0.5678711, 1.96875, 0.640625, -0.5673828, 0.359375, -1.2705078, 0.52783203, 1.5361328, -0.41015625, 0.17749023, -0.65966797, -0.65722656, -0.41357422, 1.5976562, 2.3769531, 1.9785156, -0.6899414, 0.15490723, -1.1103516, 1.0800781, -0.7548828, 2.2382812, 0.7578125, 0.84716797, -1.5507812, 5.3554688, -1.5771484, -2.3613281, 0.3984375, -0.9511719, 1.234375, -0.050994873, -3.4667969, -0.78808594, -1.8349609, 0.44433594, -1.8085938, 0.025787354, -2.71875, 0.14831543, 1.0800781, -0.83935547, -0.69189453, 4.8085938, -0.40283203, 2.1523438, 1.6318359, -0.5341797, -1.9589844, -1.5400391, 0.2277832, -0.10461426, 0.66845703, -0.004421234, 1.3447266, 0.73876953, -0.43969727, -0.8857422, 3.4414062, 0.953125, 0.087646484, 0.025665283, 2.2929688, 1.2294922, 3.4492188, 2.8652344, 0.7236328, 1.4228516, 2.8632812, -1.0537109, -0.04147339, 4.078125, -0.4477539, -1.0664062, -0.15930176, 0.67285156, 0.05999756, -0.5673828, -0.7397461, 0.9633789, -0.6645508, -0.42529297, 1.5693359, 1.8125, -0.19116211, -1.4443359, 0.77783203, -1.2041016, -1.2509766, -1.5478516, -0.45922852, 2.6699219, -0.0904541, 0.18701172, -1.5175781, 0.17272949, 2.6894531, -2.3925781, -0.6147461, 1.3066406, -1.1269531, -1.9169922, 2.3144531, 1.0332031, 0.77783203, 2.3730469, 0.49121094, 0.23376465, 1.4648438, 0.8491211, -0.203125, 0.1751709, 0.20837402, 2.5390625, -0.87597656, -0.44482422, -0.14892578, -0.6220703, -1.2753906, 0.02027893, 2.1914062, 0.5004883, 2.7539062, -0.83935547, -5.5039062, 2.3828125, 0.8251953, 2.0117188, -2.0332031, 0.9921875, 0.88623047, -1.2148438, -1.0908203, 0.5239258, -0.018630981, 1.2265625, 1.3193359, -2.0234375, 1.6787109, 1.3271484, 1.7666016, 0.39331055, 1.4160156, -1.6386719, 1.7402344, -0.32177734, 1.6298828, -0.2467041, 1.7119141, -1.4492188, 1.0478516, 0.3671875, 1.8291016, 1.3076172, -0.9477539, -0.11743164, -0.36206055, -0.6279297, -1.3066406, -0.7919922, -2.8085938, 0.35327148, -0.5473633, -0.80029297, 0.18823242, 1.6855469, 2.3027344, 2.0371094, -0.15515137, -0.7373047, -2.6582031, 1.3486328, -0.24743652, -1.1923828, -1.7382812, -1.3330078, 0.19030762, -0.04421997, -1.1240234, -0.8754883, 1.2167969, -0.7636719, -1.8867188, 0.9472656, -0.16882324, -0.71777344, 0.07574463, -0.95654297, -1.8857422, -1.2871094, -0.7915039, -1.0390625, 1.6337891, 2.7089844, 0.4501953, -1.0439453, -2.6113281, -0.5678711, -1.4589844, -0.328125, -0.8125, 2.8613281, 3.0390625, 1.3261719, -0.030273438, -1.7617188, -1.9902344, 0.7290039, -1.9931641, 0.7602539, 1.4599609, -0.86279297, 0.58740234, -2.1699219, 2.7285156, -0.45483398, -1.6005859, -0.18566895, -1.1816406, -0.13830566, -0.028869629, -0.08880615, 1.0957031, -0.6743164, 0.2553711, 3.0976562, 1.0830078, 1.1132812, 1.9980469, 2.2207031, 0.42236328, -1.5585938, 0.76220703, 0.21594238, 2.0390625, 0.0057907104, 0.53466797, 0.7167969, 0.036834717, 0.4482422, -0.46826172, 1.2988281]}, "B000HCR89W": {"id": "B000HCR89W", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Fits barbecue grills 64\"L x 30\"D x 48\"H\nWEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc)\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "embedding": [1.3554688, 0.93359375, 3.0625, -2.9472656, -0.09655762, 1.5136719, 1.2861328, -1.46875, 2.6914062, 2.6738281, -0.3996582, 0.34716797, -0.6455078, -3.96875, 1.1767578, 0.7368164, 1.1669922, 2.6074219, 2.5742188, -1.8671875, 1.3242188, 1.0429688, -0.5341797, 0.41186523, 0.92529297, -0.5131836, 5.4648438, -4.1445312, 0.22460938, 1.2626953, 2.7597656, 0.93603516, -0.34155273, 2.9082031, -2.0351562, -1.46875, 0.3388672, 2.3378906, 0.96728516, -1.3583984, -1.4619141, -1.7744141, 2.8847656, 1.7509766, -2.4140625, -0.3713379, 0.6875, 1.296875, -0.30200195, -2.2265625, 1.5146484, 2.4726562, 2.6445312, 0.41430664, -3.59375, 3.6523438, 0.41577148, -1.9736328, 1.453125, -0.047821045, -1.2822266, -1.2011719, -1.2617188, 1.8916016, -0.7089844, -0.3569336, 0.5229492, -0.5830078, 0.33032227, 0.3137207, 1.9736328, -0.7890625, -2.53125, -0.3154297, 1.7255859, -1.7158203, -2.2382812, 1.0205078, 0.6352539, -2.3339844, -2.3203125, 3.7480469, -0.6201172, -2.6445312, -0.92578125, -0.042907715, -2.1679688, -0.28100586, 0.80810547, -2.9257812, -1.3056641, 1.7822266, -1.2578125, -3.8085938, 0.41601562, -3.9609375, 2.4980469, 0.99853516, 0.11627197, -0.48583984, -1.3652344, 1.5742188, -0.9560547, -0.47436523, -3.2109375, -2.5390625, 0.17797852, -2.3691406, 0.3762207, -0.17004395, -1.4638672, 0.044189453, -0.9916992, 1.8798828, 2.5449219, 1.1611328, -2.3203125, 1.5214844, 0.03189087, 0.44726562, 1.3066406, -0.5073242, 0.09631348, -2.1386719, 0.2368164, -0.66845703, -0.0670166, 3.8183594, 3.1503906, -1.8222656, 1.265625, -1.2773438, 2.7070312, 1.5097656, -0.68896484, -1.2275391, -0.97021484, -0.546875, -2.7460938, 0.72314453, 0.099365234, -1.296875, 0.8466797, -0.9584961, -2.8476562, -0.5283203, 0.92333984, 2.3828125, -1.21875, -3.1425781, 0.6582031, -2.7226562, 0.5253906, -1.5136719, 0.6425781, -0.25170898, 1.0341797, -5.0351562, 3.4980469, 2.984375, 1.7675781, -2.9453125, 2.4609375, 0.18029785, 1.2519531, -1.8320312, 0.012023926, 0.09844971, 0.92285156, 2.4179688, -1.4580078, -1.3837891, 0.9589844, -0.81689453, 1.8369141, -0.2052002, 0.8857422, 1.8681641, 0.6254883, 1.2646484, -0.64990234, -0.8881836, -0.75878906, -0.7807617, -1.0976562, -1.078125, -0.55029297, 0.17822266, 2.2773438, 0.15649414, -0.81152344, 1.1083984, -3.1132812, -0.24450684, -1.6396484, -2.5195312, -0.8676758, -0.7871094, -0.4428711, 0.66064453, -1.7939453, -2.5351562, -0.81640625, 0.20019531, -1.8603516, -1.0683594, -1.6865234, -0.41967773, 0.18469238, 0.94189453, 1.0371094, -2.7480469, 2.7402344, 0.7426758, -0.6533203, -0.609375, 1.4853516, -2.1191406, 2.078125, 0.6147461, -1.5761719, 0.6689453, 1.0234375, 2.59375, 0.13891602, 0.91259766, 1.0019531, 0.5942383, -3.1191406, -1.4130859, 0.16101074, 0.53271484, -0.5410156, -0.34521484, -0.3857422, 1.5507812, 1.2695312, -0.7451172, -0.96435547, -0.07342529, -1.8535156, -2.5429688, -1.828125, 0.5258789, 2.3320312, 1.1425781, -1.4677734, 1.4863281, 0.47094727, -0.56347656, 0.03753662, -0.1998291, 0.4104004, -0.8378906, 0.7441406, 1.8632812, -0.2685547, 2.1015625, -0.4909668, -0.5942383, 0.41796875, -0.9770508, -2.21875, 1.1865234, -0.66064453, -2.5273438, 0.9375, 1.1005859, -2.0058594, -2.4648438, 0.53466797, -0.3696289, 1.0830078, -0.41015625, 2.4414062, 1.4111328, -0.34985352, 1.2871094, -0.29467773, -1.6455078, 1.3740234, 0.42041016, 2.75, -1.1630859, 1.09375, -0.29614258, -1.3544922, -1.4160156, -0.5517578, 0.50439453, 3.9550781, 0.30322266, -2.0605469, 4.8867188, -0.8383789, 0.28125, 2.6152344, -1.4140625, -1.8916016, 1.4111328, 1.4414062, 0.68066406, -0.1607666, 0.85595703, -1.4472656, -0.7705078, -0.26513672, -3.5136719, -1.65625, 0.32299805, -2.1660156, -2.1171875, 0.7060547, 0.5083008, -3.0996094, -1.3339844, 1.6982422, -3.2441406, 0.30273438, -0.5493164, 0.23352051, 0.36816406, -2.6855469, -2.1484375, 0.00082683563, -0.14978027, -2.4316406, 1.1591797, 1.0283203, 0.11907959, 0.93847656, -0.5961914, -0.104003906, -1.6621094, -1.6181641, -2.8789062, -2.0371094, -1.4970703, -0.5571289, -0.4326172, 0.58935547, -0.9003906, -1.7333984, 0.6875, 0.5517578, -2.6015625, -1.5976562, -0.23059082, -0.7714844, 3.1445312, 0.23339844, -0.50878906, 0.33129883, -3.8027344, 0.640625, -2.03125, -1.5292969, 0.22021484, -0.066589355, 0.65966797, -0.08886719, 1.0683594, 0.6513672, 1.1835938, 0.8232422, 1.3818359, -0.054504395, -2.78125, 0.9057617, 0.12261963, -0.17468262, -0.48535156, 1.0898438, -2.6308594, -2.5234375, -0.015960693, -1.0664062, 5.1171875, -0.2006836, 1.8671875, -1.0839844, -1.6982422, 0.8173828, -0.62597656, -0.8564453, 2.3886719, -0.16479492, -1.5712891, 0.4711914, -2.1816406, -1.4404297, -1.3994141, -0.25048828, 0.0859375, -1.1572266, -0.4790039, 0.9472656, -3.0332031, -1.140625, -2.3046875, 1.6923828, -0.82421875, -0.3046875, -0.6201172, -2.2558594, -1.4882812, -1.0429688, -2.5410156, 2.8554688, -2.0546875, -0.14892578, 1.8652344, -0.80810547, 3.5429688, 0.64746094, -3.9746094, 1.0498047, 1.3105469, 2.15625, 1.9345703, 1.7255859, -2.65625, -0.21594238, 0.32421875, 2.3691406, 1.3085938, 0.9345703, 1.3310547, 0.43408203, 0.45410156, -0.034240723, 0.3125, -0.23046875, 0.5708008, 2.6113281, 0.25976562, -0.22497559, 1.7822266, -2.3808594, -1.78125, 1.4208984, 0.63964844, -1.15625, 1.3291016, 0.66796875, 0.6220703, 2.0078125, -0.69091797, 3.1171875, 0.33422852, 3.2695312, -0.69091797, 0.48876953, 1.0136719, -1.8056641, 1.3154297, 1.1513672, 1.03125, 0.6098633, -1.0429688, -1.3613281, 0.5810547, 1.0615234, 2.2578125, 0.86083984, -1.0410156, 1.2109375, -1.5654297, -0.80126953, 1.1074219, -1.7373047, 1.0644531, -1.0957031, 1.4130859, 3.0917969, -1.1386719, 0.36157227, -0.04598999, -1.015625, 1.3095703, -2.5058594, -0.39941406, -2.2402344, -1.7177734, -0.2166748, -3.828125, -2.21875, -0.2536621, 3.6289062, 1.5244141, -2.8710938, -0.6455078, 2.765625, -0.625, -1.3056641, 1.0722656, 0.67529297, -0.25512695, 1.2119141, 3.1972656, -2.1054688, 2.0742188, -3.9804688, 1.4912109, 2.2675781, -0.3227539, -0.9370117, 0.3935547, -1.3183594, 0.1829834, 1.6181641, 1.1044922, 1.6689453, -0.7705078, -0.9868164, -2.6269531, -0.7504883, 2.4511719, -1.8164062, 0.42163086, 1.2646484, 1.7197266, 0.19885254, 0.47436523, 2.0898438, -1.5058594, -3.96875, 1.5664062, -0.8881836, 0.36621094, 0.22143555, -4.1914062, -0.68115234, 1.0966797, -1.5664062, 0.2454834, 0.82958984, 0.77197266, 3.7539062, 0.13964844, -1.2763672, -0.05682373, -2.2128906, -1.3242188, -1.1347656, -0.46948242, -0.30664062, -0.14453125, -2.2148438, -0.9194336, -0.9580078, -2.0625, 0.9116211, 0.99902344, -1.1035156, -1.1826172, -3.203125, 1.9013672, -1.5068359, 1.0449219, 1.0009766, 0.18164062, 0.114746094, -1.25, 1.1044922, 0.09057617, 0.9580078, 0.46362305, 1.6982422, -1.6777344, -1.3896484, -1.4501953, 0.44921875, 2.71875, -0.9453125, -2.9511719, -0.33422852, -0.06286621, 0.50439453, -1.890625, -1.2470703, -0.25561523, -1.8378906, -1.0537109, -0.1204834, 0.8647461, 2.2480469, -1.4101562, -2.8867188, 1.4189453, -2.1601562, -0.27148438, -1.6972656, 0.73046875, -0.31860352, 1.5830078, -0.8515625, -1.6035156, 1.9658203, 0.2590332, -0.2512207, -1.8222656, 3.2246094, 0.90478516, 1.5029297, 3.2929688, -2.2460938, 0.21765137, 1.9951172, -2.5390625, 0.4658203, 1.2128906, -1.0605469, 2.2871094, -0.89208984, 1.8681641, -2.84375, -0.1541748, -2.9863281, 0.47070312, -2.03125, -1.7822266, 1.0498047, 0.05130005, 0.22351074, -0.60009766, -1.8183594, 2.9648438, -1.5605469, -0.050231934, 1.7939453, 0.20410156, -0.47460938, 1.5810547, 0.41333008, 0.12561035, 0.3088379, 1.1152344, 0.18127441, -0.9223633, -0.48657227, -1.0966797, 2.2871094, -0.921875, -0.9379883, 0.4428711, 0.29052734, -0.3647461, -0.54296875, 2.6640625, 2.7070312, -0.3544922, 1.3300781, 0.46875, -2.9550781, 3.4023438, 0.8027344, -0.6069336, 0.2512207, -1.1552734, -0.021911621, 3.4355469, -1.1748047, -2.8320312, -0.921875, 1.7480469, -0.93847656, 1.7207031, -1.2509766, -0.10205078, 1.3945312, -1.8359375, -1.2451172, -0.025619507, 0.11291504, -0.6479492, -0.0635376, 0.5600586, -1.6279297, 0.7963867, 2.9375, -0.68066406, -3.5332031, 2.0097656, 0.20202637, -1.0712891, -1.8212891, -0.78027344, -2.1113281, -1.4140625, 2.8027344, 1.4638672, 1.0654297, 1.1611328, 1.9013672, -1.8847656, 0.42651367, -1.3359375, 2.8496094, -2.3203125, 0.6464844, 3.1484375, -2.0917969, -0.37890625, -1.4023438, 1.4316406, 1.4111328, 0.103515625, 0.23327637, 0.73095703, 0.5097656, -1.2402344, -2.078125, -2.0234375, -1.2714844, -0.66064453, -1.2763672, 0.90722656, -0.121276855, -0.32421875, 0.040283203, 0.2783203, -0.13476562, 0.38916016, 0.3544922, -0.4152832, -0.17956543, -0.9370117, -1.9931641, -0.51171875, 1.5810547, 1.8056641, 2.6152344, -1.3486328, -3.3945312, 0.6557617, 1.5146484, -3.1972656, -0.8652344, 2.2265625, 0.9477539, 1.3408203, 0.78027344, 0.63916016, 0.40429688, 1.2041016, -0.6401367, 0.2619629, 0.7529297, -0.8203125, 1.75, -0.13671875, -2.1230469, 1.2890625, -0.6879883, 0.18945312, 2.1738281, -0.51708984, 2.7050781, 1.578125, -0.014877319, 0.6035156, 1.3457031, 1.046875, 2.1230469, -0.54541016, -0.14929199, 1.09375, -1.6230469, -1.8994141, -0.8847656, -3.4941406, -0.78564453, -1.5556641, -0.093688965, 1.9550781, 1.640625, 0.23828125, 0.3395996, 2.7558594, -0.89697266, -0.58154297, -0.29956055, 2.8339844, 1.0126953, -1.1005859, -0.40966797, -1.7294922, -0.8930664, 2.3554688, 1.2441406, -0.8149414, 0.7607422, -3.7910156, -0.78027344, 0.3864746, 1.6552734, -0.8183594, -0.111694336, -0.034851074, 1.0097656, 2.7695312, -1.5507812, 3.9667969, 0.4206543, 2.0097656, -1.9472656, 4.5976562, 1.6513672, -3.3320312, 1.0859375, -1.703125, 1.4052734, 0.5151367, -0.48510742, 1.2695312, -0.5522461, -0.42456055, -2.4082031, -0.2824707, -3.7949219, 0.18603516, 0.64990234, -1.1445312, -0.41552734, 0.87158203, 1.1845703, 3.1171875, 2.3417969, -0.7871094, -2.15625, -0.29003906, -1.0244141, -0.2590332, 0.56689453, -0.79003906, 1.4873047, -0.52734375, -0.02670288, -0.73828125, 0.6660156, -0.66503906, 0.5571289, 3.0175781, 3.1230469, 0.61865234, 2.5996094, 2.0683594, 0.84521484, 1.8720703, 0.31982422, -2.0019531, -1.1318359, 2.7890625, 2.2441406, 1.3837891, -2.078125, 0.09588623, 1.8173828, 1.34375, 0.6557617, 1.0292969, 1.0517578, -3.2675781, 0.2322998, 1.8837891, 1.1630859, -1.3984375, -0.19934082, -0.82421875, -0.93847656, 0.78808594, -0.46264648, 2.7011719, -1.4326172, 2.453125, 1.5986328, 0.65478516, -0.46264648, -1.0888672, 0.15332031, 1.8339844, -2.6347656, -1.359375, 2.4824219, 2.5332031, 2.125, -0.81689453, 0.83447266, 2.3476562, 2.5390625, -0.13134766, -0.2524414, 0.081970215, -1.0283203, 0.69873047, 1.46875, -1.3525391, -1.4550781, -2.0566406, -1.4267578, -1.3623047, 1.6240234, 2.0605469, 0.39526367, 2, -3.9433594, 1.7587891, 2.1132812, 1.2451172, -0.28637695, -1.3242188, -0.053619385, -1.7197266, -1.4990234, -0.58496094, -2.2929688, 2.09375, 1.5634766, 0.38476562, 2.4960938, 0.09564209, 1.0908203, 0.87060547, 1.8808594, -0.69433594, 0.22265625, 0.38916016, 1.7666016, 2.6640625, -1.4433594, 0.38452148, 1.7617188, -0.32128906, 1.4326172, 1.2216797, -0.98291016, 1.8476562, 2.2304688, 1.1357422, 0.79296875, -2.0292969, -1.8261719, 1.6806641, -0.03100586, 0.63964844, -0.9345703, 1.71875, 0.9926758, -0.80908203, 1.8945312, 1.4609375, -0.95996094, 1.6630859, -2.1738281, -1.7958984, -1.5820312, -0.42773438, 0.90966797, 0.11828613, 0.37109375, -1.3701172, 1.7001953, 0.46826172, -0.4658203, 1.2695312, 1.3242188, -1.5341797, 0.53759766, -1.1337891, -2.6054688, 0.0066604614, -0.048187256, -0.37060547, 0.4506836, 1.9189453, 2.65625, -1.484375, -3.2011719, -2.3359375, -1.0810547, 0.057250977, -1.9160156, 2.0175781, 3.1972656, 2.0332031, -1.2226562, -2.2519531, -0.026641846, -0.44335938, -0.45483398, 1.9921875, -0.26220703, -0.80615234, 0.82470703, -0.63964844, 2.453125, 0.12927246, -2.6464844, -0.48706055, -0.9916992, 1.6923828, -0.83691406, 0.0132751465, -0.1239624, 0.57373047, 1.2646484, 2.5449219, 2.3671875, -0.0063171387, 1.2441406, 3.5859375, -0.3310547, -1.6201172, -0.37475586, 0.7314453, 2.5917969, -0.50146484, 1.6894531, 1.7041016, 0.3461914, 0.5888672, -1.90625, -0.6875]}, "B07L9S7C1R": {"id": "B07L9S7C1R", "original": "Brand: Zerodis\nName: Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue\nDescription: Specifications:
          Condition: 100% Brand New
          Material: Plastic + Stainless Steel
          Main Color: Black
          Power Supply: 4 * AA Batteries (not included)
          Total Length: Approx. 26.5cm/10.43in
          Wind Tube Length: 5.9cm/2.32in
          Weight: Approx. 161g

          Package Included:
          1 * Handheld Electric BBQ Fan

          \nFeatures: \u3010Electrical Power\u3011 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows\n\u3010Quick Heat\u3011 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney\n\u3010Safety Use\u3011 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan\n\u3010Compact Size\u3011 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated\n\u3010Cooking Helper\u3011BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit\n", "embedding": [-1.3544922, 2.7324219, 0.1817627, -0.89501953, 0.58740234, -0.3137207, 0.53027344, -0.9453125, 0.030044556, 3.3945312, -1.0351562, -0.72509766, -1.5791016, -2.8710938, -1.0976562, 1.7285156, 0.76708984, 0.9160156, 0.8432617, 0.46728516, 0.8803711, 0.2849121, -0.09338379, -0.94189453, 0.22949219, 0.16687012, 3.8925781, -1.2207031, 0.671875, -0.8457031, 0.5214844, -1.1904297, -2.2617188, 0.27246094, -2.9433594, 0.4572754, -1.15625, 2.2265625, -0.42871094, -1.1982422, 1.3544922, -0.9863281, 1.6308594, 0.5551758, -1.8330078, 1.1298828, -1.5400391, 0.7890625, 1.4541016, -2.3417969, 1.3652344, 0.57421875, 0.3955078, 1.6230469, -2.5546875, 0.52001953, -1.0722656, -3.6132812, 3.0996094, -1.0498047, 3.0722656, -0.54589844, -1.6386719, 1.5644531, 1.6357422, -1.46875, -0.94921875, -1.0839844, -0.40576172, -0.4248047, 0.3996582, 0.32666016, -0.7895508, -0.1640625, -1.5537109, -0.43798828, -3.53125, 1.9755859, 1.4023438, 1.6542969, -1.4287109, 0.33862305, 1.7294922, -2.2871094, 0.038879395, -1.1982422, -1.7177734, -0.04534912, 0.5390625, 0.82714844, -0.84033203, 2.0722656, -1.5048828, -4.2695312, 2.1503906, -3.53125, 0.007045746, -2.9394531, -1.4912109, 1.1933594, -1.0976562, 0.10284424, -1.0068359, -0.59228516, 0.75683594, 0.49731445, 0.101379395, 0.7558594, -0.39575195, -1.4599609, -2.5253906, 0.7714844, 0.5136719, 1.0546875, -0.45483398, -2.4238281, 1.2900391, 1.40625, 4.4921875, 0.08795166, 1.9541016, -1.3232422, 0.40014648, -2.1289062, 0.53271484, 0.22546387, 0.7939453, 0.074279785, 3.8027344, -0.26904297, -0.31762695, -1.4023438, 1.0126953, 1.5126953, -0.5131836, -2.5175781, -0.25317383, -1.2568359, -3.5683594, -0.8510742, -0.36254883, 0.07141113, 3.6601562, -1.0410156, -3.2441406, -1.1318359, 0.6557617, -0.36010742, -0.5209961, -3.1328125, 1.0390625, -1.3564453, -1.09375, -1.7285156, 0.3786621, 1.9492188, -1.5185547, -1.7548828, 3.2441406, -0.25854492, -1.1152344, -3.3886719, 1.8183594, 1.3125, -1.0419922, -1.4248047, 1.6279297, 2.0878906, 0.2685547, 2.0136719, 1.7558594, -2.9160156, 0.67578125, -1.8564453, 0.7246094, -2.7070312, -2.8125, 3.6484375, 0.7319336, -1.9755859, -2.4199219, -1.8779297, 3.0683594, 0.39331055, 0.7583008, 0.05935669, -0.7138672, -0.44604492, 0.29589844, -1.0761719, 0.07086182, 0.49414062, 1.2636719, 1.7363281, -0.18017578, 0.16418457, 0.5703125, -1.8916016, 0.8486328, 2.8984375, -2.2871094, -1.65625, -1.7773438, 0.020339966, -2.3417969, -1.0800781, -1.7529297, 1.2324219, 2.9492188, 0.064697266, -0.15429688, -0.9404297, 4.4765625, 1.3798828, 1.8828125, -2.6308594, 0.24206543, -1.5126953, 2.2089844, 2.1132812, 0.43676758, -1.1630859, -0.5161133, 2.1503906, 0.070495605, 1.7109375, -1.2441406, 0.28808594, -2.1621094, -0.390625, 2.2695312, 0.8510742, 0.6166992, -0.47729492, -0.953125, 1.2509766, 0.5551758, -1.34375, 1.1015625, 0.13671875, 0.3137207, -2.1328125, 0.36816406, 0.6323242, -0.42700195, -1.8916016, -0.25561523, 2.8867188, 0.45458984, -0.79003906, -1.3984375, 0.53271484, 0.3395996, 0.71875, -2.1953125, -0.25268555, 0.04046631, -0.27075195, -1.4638672, -0.8540039, 1.5703125, 0.12658691, 0.43554688, -0.29833984, -0.085998535, -1.3925781, 1.3847656, -0.13110352, -0.5522461, 0.1274414, 0.78808594, 1.9150391, 0.9897461, 2.0175781, 2.8359375, -0.51953125, -0.18139648, 0.2121582, 0.7680664, -1.625, -0.14526367, -1.609375, 2.6425781, -1.4716797, -0.5522461, -1.4765625, 0.006755829, -0.6816406, -0.94140625, 1.0332031, 2.9414062, -0.18041992, -2.5585938, 2.7871094, -3.5527344, 1.8779297, 0.2927246, 0.34887695, 0.16931152, -0.18676758, 0.8574219, 0.5263672, -1.4824219, 1.9365234, -0.89501953, -0.3095703, 1.3730469, -2.4453125, -1.9521484, 0.68408203, -1.25, -1.7177734, -1.6591797, -0.6899414, -3.671875, -1.421875, -1.5214844, -2.078125, 1.9599609, 1.859375, 0.050933838, 2.0332031, -1.0507812, -2.2753906, -0.9760742, 0.21801758, -0.55566406, 0.18774414, 1.6865234, -2.4003906, 0.04119873, -1.7226562, 1.25, -2.5996094, 0.14086914, -1.8027344, 0.75683594, -1.9736328, 3.0742188, 0.103515625, -0.46069336, 0.76953125, -0.6904297, 0.88427734, 0.8408203, -2.71875, -3.0039062, 1.0195312, 1.0097656, -0.11651611, 0.1887207, 1.4521484, 1.4482422, -4.6835938, -0.9892578, -0.031311035, 0.7949219, -0.578125, -3.9941406, 1.1455078, -0.55908203, 0.28710938, -1.5449219, 0.875, 1.1933594, -0.1739502, -0.43286133, -3.2871094, 0.9897461, 1.8349609, 2.3300781, 2.1660156, 0.40893555, -0.6904297, -0.31445312, 1.0478516, -0.058532715, 3.1796875, -1.7744141, 1.6435547, -1.0615234, -1.7685547, 0.5864258, 1.1611328, -3.9199219, -0.6923828, -1.0537109, -1.8349609, -1.4580078, -2.5839844, 1.0224609, 0.18200684, 0.13171387, 0.375, 1.5537109, 1.3896484, 1.1044922, -2.0605469, -0.73095703, 0.16210938, -2.1796875, -0.56103516, -1.0078125, -1.5683594, -1.6376953, -2.8417969, -0.043060303, -0.53466797, 1.1113281, -0.64941406, -0.46801758, 2.140625, 1.0058594, 0.27148438, 0.68359375, -3.0039062, 2.4960938, 0.96972656, -1.875, -2.2695312, 1.7285156, 0.17700195, -2.9589844, -0.21435547, 2.4960938, -0.9658203, 3.6113281, -0.9067383, -0.34643555, -0.107177734, 0.8486328, -1.2050781, -1.5263672, 0.26782227, 1.6992188, -2.5253906, -1.4541016, 0.7104492, 1.0517578, -0.3630371, 0.62597656, 1.7021484, 1.0683594, 1.1484375, 2.4589844, 0.4387207, 1.1992188, 1.2871094, -0.9863281, 2.4921875, 0.29638672, 0.375, -1.0615234, -0.47460938, -0.25830078, 1.4677734, 0.92578125, -1.5800781, 3.4511719, 4.0078125, 1.5478516, -0.40771484, -0.051513672, -0.06719971, 0.91503906, -0.14575195, 1.4501953, 0.27319336, -1.5498047, -0.80029297, 0.57373047, 1.9101562, -0.42333984, -0.5083008, 2.921875, 0.20935059, 0.82421875, -0.84033203, 0.6533203, -2.8007812, -2.3574219, 1.09375, -1.1289062, -2.0351562, -1.5625, -1.9277344, -0.7055664, -0.091552734, 0.8881836, -0.36010742, -2.5117188, -1.1474609, 0.050201416, -0.7285156, -0.35668945, -1.1259766, 1.3994141, -0.064697266, 2.8339844, 0.14733887, -0.48413086, 1.2021484, -1.3115234, 0.26782227, -0.45483398, -0.47998047, -1.3349609, -1.6230469, -1.8916016, 2.8359375, 2.5214844, 2.8789062, 1.15625, -0.4008789, 0.98046875, 0.8046875, -0.80810547, 0.96435547, -2.0390625, 0.6113281, 0.9604492, 0.42773438, 0.99609375, 2.0585938, 2.5625, -1.0458984, -1.7666016, 1.8828125, 0.46923828, -1.1044922, -0.80322266, -2.4609375, 2.53125, 1.2470703, 2.0859375, 2.3574219, -0.14038086, 0.9321289, 2.125, 0.73291016, -1.4921875, -1.3310547, 0.8696289, 1.1835938, 0.75390625, 0.59375, 2.5449219, -1.8583984, -1.0380859, -0.43530273, -0.28027344, -0.3166504, 0.10223389, 2.2207031, -0.06390381, 0.75927734, -1.2988281, 2.5839844, -0.87353516, 0.94140625, 1.125, -1.1582031, 0.6308594, -0.91748047, 1.6669922, 0.61865234, -0.49926758, -0.6074219, 1.3623047, 1.5449219, -2.4042969, 0.34936523, 2.2851562, 1.7529297, -0.50634766, -3.109375, 0.40478516, -0.051757812, -2.2929688, -0.018707275, 1.3935547, -0.46606445, -3.28125, 2.7597656, 0.3010254, -0.015853882, 1.8730469, 2.1933594, -3.03125, 0.41308594, -1.5595703, -1.3847656, -2.28125, 0.41430664, -0.5234375, -1.1171875, 0.99609375, -2.1699219, 0.49951172, 1.4541016, -1.3837891, -1.1953125, 1.1396484, 1.1552734, 0.75683594, 3.6367188, -2.4824219, -0.99365234, 0.21240234, -2.3496094, -0.04626465, 0.18676758, -0.39404297, 0.53759766, -0.9082031, 3.4511719, -2.3027344, 0.76464844, -0.10369873, -1.2177734, -0.4050293, -1.5087891, 1.6416016, -1.2148438, 0.24145508, 0.9946289, 0.5449219, 1.1142578, -0.7841797, 1.3251953, 1.8691406, 0.87402344, -0.6635742, -1.1601562, 1.1640625, 0.609375, -0.2244873, 1.2441406, 1.0537109, -0.5107422, -1.375, 1.3583984, 2.84375, 0.32641602, -2.1640625, 0.32421875, -1.9921875, 0.58984375, 1.5019531, 0.6870117, 1.0488281, 1.5634766, 2.3886719, 0.3581543, -1.9970703, 2.0878906, 1.7070312, -1.0683594, 2.4023438, -1.2255859, -2.9882812, -0.15551758, -0.17163086, 0.05609131, 1.2744141, 2.6953125, -0.734375, 0.4987793, -2.9648438, -0.34814453, -0.38330078, -0.3046875, -0.11407471, -0.0619812, -1.8291016, 1.9179688, -0.2512207, 0.5942383, 0.9057617, 1.4873047, 2.5429688, -0.11138916, -1.8583984, 1.3935547, -0.8417969, -0.103759766, 0.18029785, -2.3613281, -2.296875, -0.002029419, 2.1289062, 1.3876953, 2.7304688, 2.3046875, 1.2207031, -2.9882812, 0.20703125, -1.6123047, 1.8857422, -3.9746094, 0.75, 1.2792969, -0.5410156, 0.9160156, -2.1210938, -0.13171387, -0.42871094, 0.8779297, 0.16662598, -1.5292969, -2.2539062, -1.1269531, -1.9150391, -4.8046875, -2.7246094, -0.67041016, -0.6591797, 0.6508789, 0.87353516, -0.033599854, -1.6113281, -0.2709961, -2.4023438, 1.7021484, -0.88134766, 0.50097656, 0.89208984, -1.9609375, -0.99316406, -0.23901367, -0.11871338, -0.6665039, -0.035095215, 0.59277344, -1.6835938, -0.56640625, 1.8115234, -1.6650391, 1.1767578, 1.8085938, -1.3095703, 2.1523438, 3.0273438, 1.7265625, -1.3457031, 2.0703125, -1.1142578, -0.3984375, -2.6445312, -0.5332031, 1.2265625, -1.7666016, -1.6083984, -1.21875, -0.36401367, 1.8535156, 2.96875, 0.5498047, 1.6914062, 1.1181641, 0.53222656, -1.8320312, -0.30273438, 0.30981445, 1.9394531, 0.44433594, 0.35791016, -0.26171875, -1.7099609, -1.4824219, 0.38378906, -0.41137695, 0.8442383, 0.20202637, -1.1748047, 0.21838379, 1.8164062, 1.3779297, 0.2993164, 0.83251953, -0.16345215, 0.5488281, 1.9570312, 4.2695312, 1.6083984, -1.8955078, -0.58740234, -0.8227539, 0.94384766, -0.7128906, 0.3400879, 0.056610107, 0.64941406, -2.7382812, -1.5615234, -0.9399414, 2.9960938, 2.5253906, -0.51171875, -2.8828125, 0.33789062, 1.4023438, -0.10241699, -1.5693359, -0.44335938, 1.6728516, -0.83203125, 3.2617188, 0.0881958, -0.5751953, 0.81396484, -1.2626953, 1.3701172, 0.0012874603, -4.25, 0.99902344, -1.5664062, -1.7929688, 0.1685791, -2.0761719, -3.7753906, 1.8798828, 0.4416504, -1.5478516, -0.04473877, 3.7011719, -1.5830078, 1.7236328, 1.8964844, -0.8642578, 0.19433594, -0.22436523, -0.04837036, 0.4819336, 2.6132812, -0.24243164, 2.1113281, -0.15600586, -0.6245117, -1.0068359, 0.9111328, 1.5400391, 0.1427002, 0.031311035, 1.7978516, 0.28344727, 3.5371094, 2.6855469, 0.99609375, 1.3183594, 0.78808594, -1.1386719, 1.2099609, 1.9277344, 0.5932617, -2.4101562, -3.1035156, -1.3330078, -0.2479248, 0.6357422, 0.18786621, 1.9833984, 1.0664062, -1.7519531, -0.13806152, -0.9345703, 1.6523438, -0.45092773, 1.5478516, -0.040924072, -0.15026855, -1.2597656, 1.4091797, 2.0585938, 0.10070801, 1.6777344, 0.33862305, -1.1962891, 0.30932617, -4.15625, 1.5791016, -0.82421875, 0.52490234, 0.061157227, 1.6816406, 2.1054688, 1.9384766, 0.71240234, 1.5058594, 0.8154297, -1.8066406, 2.671875, 0.63964844, -0.49853516, -0.6791992, 3.0839844, 0.4753418, -0.87402344, 0.5629883, -1.3320312, -2.25, -2.5078125, 2.7890625, 1.3691406, 0.088256836, 0.8774414, -1.1845703, -0.203125, 0.5888672, 3.3417969, -0.78808594, 1.2041016, 0.20568848, 1.0292969, -0.75439453, -1.5224609, 2.3359375, 2.828125, 1.5849609, -1.1640625, 0.74560547, 0.81933594, -0.4140625, -2.2949219, -1.0273438, -0.45532227, -1.6591797, -1.8808594, 0.5678711, -0.09637451, -0.54541016, -0.22399902, 2.1601562, 0.3046875, 2.3535156, 1.7792969, -1.2177734, 2.3046875, -1.2373047, 0.21875, -2.5546875, -0.0038337708, -2.6875, 1.6757812, -0.8613281, -1.6435547, 0.20471191, 0.027679443, 0.6489258, 1.6064453, 0.64453125, 2.2792969, -0.60253906, -0.4946289, 0.8417969, -1.8505859, 1.0751953, -0.48950195, 0.8227539, -0.68847656, -0.61328125, 1.5849609, 0.5722656, 0.8017578, 1.1914062, -0.3552246, -1.7314453, 0.62890625, 1.5273438, 0.42895508, -1.8398438, 0.7607422, 0.9135742, 0.7109375, 0.30737305, 1.4052734, 0.97509766, -1.96875, -0.5830078, -1.1708984, -1.2890625, -1.0009766, -1.7265625, 0.95996094, 2.2753906, 0.5776367, -0.59716797, -4.84375, -0.66064453, 1.9384766, 0.43530273, 0.092285156, -0.34375, -2.8066406, 1.2441406, -0.6113281, 3.203125, -0.15808105, -0.5966797, -0.100097656, 0.7392578, 2.6582031, 2.2363281, 0.18017578, 0.6538086, -0.9296875, 1.0742188, 2.8398438, -0.035339355, -0.40551758, 2.0039062, 0.3034668, 2.359375, -3.421875, -0.34179688, -2.84375, 1.171875, 1.0341797, -0.75146484, 0.17626953, 0.48999023, 0.7236328, -1.6542969, -2.2246094]}, "B084JG7KBQ": {"id": "B084JG7KBQ", "original": "Brand: Outsunny\nName: Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard\nDescription: Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

          Features:
          - 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
          - PA coated polyester canopy top offers sunray and light rain protection
          - Side awning provides extra sun protection
          - Durable metal frame with extra supporting bars for added stability
          - Comes with stakes for the legs for added support
          - 2 platform shelves for grill accessories, beverages or food
          - 5 hookers for cooking tools
          - Easy to assemble
          NOTE: Not to be left up during adverse weather conditions.

          Specifications:
          - Color: Black, Grey
          - Materials: Steel, Polyester
          - Overall Dimension: 85.75\" L x 54.25\" W x 85\" H
          - Peak Height: 85\" H
          - Sidewall Height: 76\" H
          - Net Weight: 44 lbs


          \nFeatures: STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging.\nWEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions.\nSTORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools.\nSTURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station.\nOverall Dimension: 85.75\" L x 54.25\" W x 85\" H, Eaves Height: 85\" H, Side Awning Size:78.75\" L x 19.75\" W ,\n", "embedding": [-0.68652344, 2.7363281, 1.6083984, -1.1083984, 2.0117188, 0.95996094, 1.2509766, -0.71191406, 1.9794922, 0.8911133, -1.46875, -0.2097168, 0.06402588, -4.6367188, 0.07165527, 0.83203125, 2.0136719, 2.0136719, 1.7304688, -2.7578125, 0.72998047, 1.0820312, -0.66259766, -0.7426758, 2.1777344, -0.4560547, 3.5214844, -0.95947266, -0.6074219, 0.6166992, 1.8427734, 1.28125, -0.75927734, 1.7890625, -2.8261719, -0.95410156, 0.26416016, 0.3869629, 0.6796875, -1.1152344, -1.5908203, -2.9980469, 3.4492188, 1.2128906, -0.82714844, 1.6953125, -1.671875, -0.7084961, 0.86865234, -2.0351562, 0.062194824, 0.9243164, 2.6542969, -0.11779785, -0.93652344, -0.62060547, -0.86865234, -2.0351562, 1.5966797, 1.0810547, -1.0712891, -2.4492188, -1.171875, 3.5234375, 0.42407227, -2.5800781, 0.29711914, -1.2402344, 0.4284668, 0.3166504, 0.74853516, -2.0117188, -2.9511719, 0.7919922, 0.27294922, -1.0898438, -3.6152344, 1.6884766, 2.6914062, -0.69921875, -1.5732422, 2.2265625, 2.25, -1.6972656, 0.69189453, -0.7104492, -2.7773438, 0.46606445, 0.96533203, -1.3066406, -0.5493164, 0.15161133, -1.59375, -3.7460938, -0.12420654, -3.921875, 1.3300781, 0.6035156, -0.8935547, 2.734375, -0.038482666, 0.19506836, -0.5498047, 0.12585449, -1.7158203, -0.8925781, 1.7128906, -3.0136719, 0.546875, 0.4506836, -0.24414062, 0.70214844, -0.036224365, -0.7763672, 1.3984375, 0.77441406, -1.3320312, 2.4980469, 0.11706543, 1.796875, 2.1328125, 2.8789062, 1.0869141, -1.0419922, 0.35546875, -2.890625, 0.44213867, 1.3955078, 4.546875, 0.20007324, -0.025100708, -2.2695312, -0.7788086, 0.86083984, -2.015625, -1.5322266, -2.1523438, -0.5488281, -4.8359375, 3.0546875, -0.92529297, -0.7680664, 2.1601562, -0.5253906, -2.0058594, 0.51904297, -1.0205078, 2.9179688, -1.015625, -4.5820312, 1.2568359, -1.1357422, -0.57373047, 0.36621094, 1.1660156, -1.3037109, 2.6777344, -2.2949219, 2.9511719, 0.3408203, 1.609375, -3.2246094, -2.0820312, 1.6337891, -0.7270508, -2.7558594, 0.84814453, 0.49829102, -0.81103516, 1.1796875, 2.5449219, -1.8378906, 2.171875, -0.26293945, 1.9238281, -1.3847656, -2.4101562, 2.2246094, 1.09375, -0.56396484, -0.5385742, -2.1894531, 0.91845703, 1.3769531, -1.0244141, -1.6777344, -0.87109375, 0.41235352, -0.42138672, -0.7529297, 0.3779297, 0.39892578, -2.1816406, 1.4697266, -3.6464844, -0.4399414, -1.1494141, -0.5917969, 0.4482422, 1.7294922, -0.9272461, -1.0322266, -1.40625, 1.4882812, -2.5839844, -0.1640625, -2.8867188, 2.2988281, -0.10699463, 1.2949219, 1.4052734, -1.2402344, 1.7919922, 2.4511719, -0.24084473, 1.0595703, 2.3105469, -0.039978027, 2.0195312, 2.7519531, -0.8330078, -0.6875, -2.8144531, 3.5195312, -0.7807617, 0.80566406, 1.1728516, -0.8930664, -0.56103516, 0.5395508, 1.1015625, 0.13500977, 1.3144531, 0.9301758, -0.7290039, 0.9946289, 1.0283203, -1.6240234, -0.5878906, -2.0625, 1.2236328, -2.6015625, -0.6953125, 0.52490234, 0.78271484, 0.6777344, -1.6767578, 1.6542969, 0.5517578, -0.7553711, -0.35424805, 0.72021484, -0.6904297, -0.8911133, 1.0126953, 1.0556641, -0.6582031, 0.53759766, -2.7109375, -0.8178711, 0.1439209, -0.053833008, 1.7695312, 0.9663086, 0.023986816, -0.6123047, -0.23718262, 1.8359375, -3.2597656, -1.7871094, 0.93359375, 0.2998047, 2.0351562, -0.31420898, 0.47485352, 0.6855469, -1.0253906, -0.18798828, 0.46289062, -0.5576172, 0.62890625, 1.5712891, 2.5078125, -1.2021484, -1.0722656, -2.6679688, -0.8466797, -1.0439453, -1.3056641, 0.45581055, 2.03125, -1.1357422, -1.4394531, 3.3535156, -1.6992188, -1.0175781, 1.8876953, -1.8115234, -1.3984375, 1.1660156, 2.8789062, 1.3681641, 1.5166016, -0.48876953, -0.24047852, -0.91796875, 0.6328125, -4.40625, 0.018829346, 2.4785156, -0.71533203, -0.7519531, -0.7402344, 0.06964111, 0.034301758, -1.4072266, 3.0449219, -1.46875, 0.27075195, 3.3886719, 0.7607422, 1.7685547, -0.69970703, -1.9873047, -1.8808594, 0.15783691, -0.6386719, -0.61816406, 0.9580078, -0.953125, 1.0869141, -2.2890625, 0.8149414, -1.6669922, 0.57470703, -3.2578125, -1.140625, 3.0820312, -3.8847656, -1.9794922, 1.4033203, -2.0898438, -2.7890625, 1.4882812, -0.20898438, -4.1484375, 0.7631836, 2.3789062, 0.15319824, 4.2070312, 0.21606445, 1.3466797, 1.7568359, -2.8125, 0.47729492, 1.9150391, 0.22009277, 1.9277344, -3.4628906, 0.38891602, -1.4433594, 1.5712891, 0.93652344, -0.4609375, -0.3881836, -0.24816895, -0.7324219, -4.0351562, 0.62158203, 1.2851562, 1.0771484, -1.7197266, 1.1435547, -2.5761719, -2.3085938, 2.203125, -1.5361328, 6.6171875, -1.0458984, -0.8745117, -2.8515625, -1.4306641, 1.2792969, 0.10333252, -3.2480469, -0.024780273, -1.7724609, 0.51904297, -1.0332031, -1.9355469, -0.15258789, -0.29785156, -0.13330078, -0.46606445, 0.10058594, 1.8408203, 0.4152832, -2.1230469, -0.8486328, -1.1298828, 0.88134766, 0.6669922, 0.38964844, -1.8476562, -0.22851562, 0.27392578, -0.75097656, -1.0839844, 2.5410156, -1.1054688, -1.0371094, 0.8413086, 0.28686523, 3.0722656, -1.5, -1.9023438, 2.5566406, 4.4101562, -0.0725708, -0.7504883, 0.95410156, -0.78759766, -1.7597656, -0.25952148, 3.6308594, 2.4746094, 1.3251953, -1.0351562, 1.0888672, 1.2382812, -0.36572266, -0.67529297, -0.6816406, 0.81591797, 3.6777344, 0.31713867, -2.4277344, 0.03753662, 0.8203125, -3.1484375, 1.5458984, -0.7626953, 0.43725586, 3.3769531, -0.06817627, -1.5361328, 0.80615234, 0.046295166, 1.140625, -3.1503906, 3.3847656, 2.234375, -2.4667969, 1.6132812, -1.1181641, 1.0146484, -0.19018555, 0.017822266, -0.18225098, 1.1757812, 0.11541748, -3.3007812, 0.9892578, 2.0429688, 1.3935547, -0.8208008, 1.6289062, -1.4648438, -0.29614258, 0.33740234, -0.45751953, 1.6494141, -1.8300781, -0.51220703, 2.0214844, -0.8457031, 0.35864258, 0.2919922, -0.57714844, -0.7421875, -0.01222229, 0.1227417, -0.9506836, -2.2382812, 0.5102539, -4.3984375, -3.0800781, 0.26098633, 2.0019531, 0.2154541, -2.7617188, -1.5498047, 1.9306641, 1.7119141, -0.63964844, -2.109375, 0.45532227, -1.6015625, 1.7412109, 0.6542969, -1.4707031, 0.9277344, -0.7973633, 3.3457031, 1.5917969, -1.7675781, -3.1738281, -0.13024902, -1.6904297, 0.18164062, 0.9477539, 0.6425781, 0.2442627, -2.3222656, 0.10058594, -0.42382812, 0.45214844, 3.890625, -1.8066406, -0.61572266, 0.5961914, 1.3984375, -0.17163086, 0.124572754, 2.4316406, 0.9448242, -1.9013672, 1.9033203, 0.11529541, -0.67578125, -0.66845703, -4.703125, -0.023727417, -1.3320312, -0.73339844, 2.3554688, 0.88378906, -1.6464844, 1.5419922, -0.7402344, -0.33789062, 0.23962402, -2.3398438, -1.1210938, -3.3632812, -1.0712891, 0.002002716, -1.8916016, -1.6835938, -2.9023438, -0.5883789, 0.22473145, 1.0205078, 1.9023438, 1.5791016, 0.3017578, -1.3916016, 0.38842773, 0.6010742, 1.7851562, -1.5712891, -0.56347656, -0.040985107, 0.19384766, 1.0498047, 1.8378906, -0.93115234, 0.5595703, 1.5009766, -0.2253418, -1.1171875, -2.3476562, 0.72314453, 2.234375, -1.0498047, -2.640625, -1.2373047, 0.34716797, -0.5810547, -0.78125, -2.2714844, 1.8027344, -1.9267578, 1.0820312, -0.6899414, 2.3808594, -0.21923828, -2.2167969, -4.6875, 0.26293945, 0.056365967, -1.4453125, -1.8486328, -2.1191406, -1.0957031, 2.7050781, -0.8300781, -1.2724609, -0.27441406, -0.40600586, 1.7861328, -0.5703125, 1.3652344, 0.7475586, 2.8808594, 4.4140625, -1.2255859, -0.37817383, 2.8359375, -0.2770996, 0.5883789, 3.2382812, -0.88427734, -0.8901367, 0.7973633, 1.7060547, -2.8886719, -2.9121094, -0.2746582, 0.4645996, -1.6464844, -1.5292969, 3.265625, 0.5205078, -0.1282959, 1.09375, -1.1347656, 2.5097656, -4.2265625, -0.30859375, 0.19116211, 0.24243164, -1.109375, 1.6552734, 3, 1.3486328, 0.36865234, 0.9511719, -2.1503906, -0.82373047, 0.5991211, -0.6743164, 1.890625, -3.0625, -1.8769531, -0.1706543, -1.7617188, 0.7114258, -0.9428711, 2.1523438, 2.9882812, -1.1611328, -0.35595703, 0.6303711, -0.36914062, 3.5058594, 0.7939453, -0.2619629, 0.8808594, 0.9086914, -1.5439453, 1.2460938, -0.51171875, -2.7929688, 0.87939453, 0.4309082, -1.5126953, 3.109375, 0.45874023, -1.7832031, 2.2421875, 0.3083496, 0.9042969, 1.0498047, -1.2197266, 0.2927246, 0.022613525, -0.44628906, -1.8857422, -0.73583984, 2.3417969, -2.125, -0.52001953, 1.6943359, 2.28125, -0.5214844, -0.8691406, -1.0830078, -2.1289062, -3.0253906, 2.1425781, 3.0039062, 2.8652344, 0.27661133, 0.5205078, -3.2675781, -2.1777344, -3.03125, 3.6992188, -2.3886719, 0.8442383, 1.7285156, 0.42944336, -0.2680664, -2.28125, 1.5712891, 1.1728516, 0.4387207, 0.40429688, 0.99560547, 0.024551392, -0.9355469, -2.3847656, -3.2167969, -1.7734375, 0.029647827, -0.8120117, 0.6098633, -0.6689453, -0.71875, -2.0917969, -0.35668945, 1.3476562, 2.1328125, -1.0253906, -0.20300293, 0.46044922, -0.9008789, -2.3085938, -1.9824219, -0.14001465, -1.5576172, 1.796875, -0.24108887, -2.359375, -1.0078125, 0.9550781, -2.484375, 0.0004014969, 1.9101562, 0.38305664, 2.1152344, 2.7265625, -0.15856934, 0.14501953, -0.13806152, 0.27319336, 1.1035156, 1.1181641, 0.12695312, 1.4941406, -1.6982422, -0.54541016, 0.88378906, -3.0253906, -0.11260986, 1.1943359, 0.36132812, 1.7324219, 2.203125, 0.98095703, 0.3959961, 0.7163086, 0.37182617, 2.1679688, 1.0449219, -1.0800781, 2.1640625, -2.1894531, -3.0097656, -1.1015625, -2.1875, -2.1972656, -0.66796875, 1.4238281, -0.9267578, 2.4550781, 2.9628906, 1.0878906, 2.5488281, -2.03125, 0.68896484, -0.14123535, 0.8232422, 0.50390625, -1.0332031, -1.828125, -4.1757812, -0.36547852, 1.6845703, 0.005218506, -0.77978516, -1.0146484, -1.3652344, -1.5058594, 0.6894531, 0.21948242, 1.4492188, 2.640625, -0.67529297, 0.99902344, 0.6147461, 0.72021484, -0.44848633, -1.0693359, 1.5527344, 0.96191406, 0.71875, 0.21875, 0.46313477, 0.5698242, -1.3457031, 1.0205078, -0.54003906, -1.8339844, 1.8652344, -1.2167969, 0.22680664, -0.22180176, -0.5102539, -2.5800781, 1.1757812, 0.2915039, 0.52001953, 0.42407227, 3.890625, -1.8486328, 0.3635254, 1.6875, 0.90722656, 0.2548828, -1.0332031, 0.3161621, -0.65185547, 1.9052734, 0.05621338, 0.29882812, 0.22216797, 0.92285156, -0.30639648, 2.2011719, 0.45654297, 0.84277344, 2.0429688, 1.6748047, 2.1757812, 2.0039062, 1.640625, 1.4492188, 1.6396484, -0.80029297, -4.2148438, 0.7675781, 2.2246094, 3.2929688, -0.59765625, 2.0078125, 0.5830078, 1.9189453, -0.02684021, 0.8569336, 0.1583252, 1.140625, -2.8398438, 1.7431641, 0.010101318, 1.1748047, 1.1162109, 1.7451172, -1.0791016, -0.87646484, -2.7050781, -1.2226562, 1.5869141, 0.5961914, 0.13208008, -2.1367188, -0.046142578, 0.49682617, -2.2089844, 1.03125, 0.73095703, -0.007259369, -1.3496094, 2.4902344, 3.5351562, 1.9511719, -0.7216797, 1.9091797, -0.12927246, 1.4990234, 3.1953125, 2.5058594, 1.0341797, -0.64941406, 0.61376953, 0.41308594, -0.28295898, -2.9492188, 1.5263672, 1.2480469, -2.3007812, -1.4667969, 1.0947266, 1.0009766, 2.6640625, -1.3496094, 0.32080078, 0.0052261353, 2.7539062, -1.4814453, -0.70654297, -1.6855469, -1.4257812, -0.19567871, -0.3293457, 0.6977539, 2.2167969, 1.7587891, -0.74560547, 2.4550781, 1.3203125, -0.97998047, -0.44360352, 1.1650391, -0.99609375, 1.8359375, -0.92822266, 2.078125, 1.7802734, 0.54052734, 0.012626648, -0.059783936, -1.2646484, -1.5546875, 2.4882812, -1.1103516, 0.1328125, 0.671875, -0.7084961, 0.27416992, -2.1835938, -2.0410156, -0.21472168, 0.26538086, -1.9306641, -1.9521484, -1.0605469, 3.0332031, 1.0058594, 0.23913574, 0.57177734, -0.6020508, 0.22497559, 1.5253906, -0.73339844, 0.98779297, -0.96191406, 2.1914062, -0.28027344, -0.11859131, -0.7236328, 2.21875, 0.8886719, -0.17089844, 1.8310547, 1.0576172, 1.3603516, 2.1230469, 0.45947266, 0.44750977, -1.9326172, 0.6611328, 1.0830078, -0.65478516, 2.3398438, 1.2900391, -3.1054688, 0.84277344, -3.4082031, 1.9306641, -1.5625, -2.1660156, 0.7163086, 2.9570312, 3.3730469, -1.125, -3.5136719, -3.2285156, -0.38720703, -0.67529297, 2.0742188, -0.1665039, -2.2285156, -1.4765625, -0.85253906, 2.8457031, -0.062683105, -0.21765137, 0.2322998, -0.796875, 1.9003906, -2.3457031, -0.9824219, 1.5957031, -0.8515625, 0.97998047, 2.71875, 3.2226562, 1.3818359, 0.12890625, 1.8037109, 0.94433594, -4.0117188, 3.1757812, -0.48950195, 1.4951172, 1.0185547, 1.9453125, 0.12512207, -0.6484375, -0.06100464, -3.0039062, -1.3554688]}, "B00OV88E5A": {"id": "B00OV88E5A", "original": "Brand: Gas Light Pro\nName: Propane Tip for Gas Lantern 123SID\nDescription: Rosebud flame\nFeatures: Propane(LP) tip for gas lanterns.\n2 1/8\" tall\n1/8\" MNPT\nBrass components\nAdjustable air intake\n", "embedding": [0.9638672, -0.7055664, 0.7807617, 0.12902832, -0.60595703, 1.0898438, -0.66552734, -0.64697266, 3.0507812, 0.56689453, -1.3759766, -0.3503418, -0.63427734, -3.7402344, 2.1992188, 0.37963867, 1.0751953, 0.6533203, 2.6914062, -1.5820312, 0.50146484, 0.18908691, 1.2021484, -1.5390625, 1.1474609, 0.7441406, 4.0078125, -0.7338867, 1.1894531, 0.3786621, 1.0488281, -0.46655273, -1.2861328, 2.0078125, -3.7128906, -2.0878906, -2.1113281, -1.8154297, -3.6367188, -1.4423828, -2.1386719, 1.5449219, -0.06915283, -0.6567383, -2.7480469, -0.1361084, -1.2363281, 0.20385742, -0.051361084, -0.6074219, 0.88183594, 0.096069336, -1.6777344, -0.2286377, 0.2758789, -1.5400391, 1.3173828, -2.1757812, 1.2519531, 0.41455078, 1.0166016, -1.0058594, -2.7636719, -0.81347656, 0.8598633, 0.52685547, -1.4316406, -2.9609375, -0.14794922, 1.6904297, 1.8144531, 2.2148438, 3.234375, -1.7197266, 1.4257812, 0.0859375, -1.1552734, 1.6308594, -0.7988281, 0.89404297, -0.107910156, 0.68847656, 1.71875, -1.4296875, 0.58251953, -0.8618164, -3.0117188, -0.99316406, -0.96777344, 0.74902344, -1.2763672, 3.0703125, -1.3623047, -3.6835938, 2.4042969, -0.5463867, 0.59228516, 1.7949219, -0.9926758, -0.87939453, -0.18859863, 0.056121826, 1.2177734, -0.8779297, -0.45825195, 0.06213379, 0.8388672, 1.8623047, -1.3525391, -0.63183594, -0.2166748, -3.2695312, 2.1074219, -0.9067383, -1.0322266, -0.39892578, 1.4746094, 0.37963867, 2.0429688, -0.61083984, 1.2373047, -1.8984375, 1.2578125, 1.0634766, 0.86279297, 0.28979492, -2.6503906, 0.1751709, 0.8378906, -1.0390625, 0.41455078, 0.23620605, 2.5332031, -3.0351562, -1.9101562, -2.0898438, -1.2949219, -1.4121094, -1.4208984, -2.5292969, -2.5820312, -1.5830078, 1.3642578, 0.13769531, -4.1289062, 1.2685547, -3.4824219, 0.48657227, 0.008255005, -1.9169922, 2.9257812, 0.07598877, -0.0036849976, -0.5839844, 1.3955078, 1.5449219, 0.4345703, -1.1054688, 4.4023438, 1.6533203, 1.6269531, -1.7597656, -2.0859375, 0.97314453, -0.3869629, -1.53125, 0.578125, -0.36791992, 3.0761719, 0.08239746, 0.59814453, -1.9921875, -1.1962891, 2.7558594, -2.6054688, -3.3457031, 1.4189453, 0.89453125, -0.8930664, -0.8461914, -4.3984375, -2.640625, 0.58740234, -2.3652344, 3.1152344, 0.85595703, -1.9433594, -2.7792969, -0.39501953, 0.24584961, -0.014381409, 1.5107422, -1.0888672, 1.6269531, -0.1104126, -1.2949219, -2.1777344, -3, 1.1621094, 1.7412109, -2.109375, 0.15368652, -0.98339844, 0.16784668, -0.6513672, -0.93408203, 0.38354492, -1.0302734, -0.5053711, 2.7832031, 0.50683594, 0.4580078, 2.6269531, -2.765625, 2.6132812, -2.2109375, -0.6333008, 0.57177734, 2.4980469, 3.9453125, 1.8154297, 0.74560547, -1.1191406, 1.5917969, 0.7363281, 1.0146484, -0.7138672, 0.47021484, -1.9423828, -1.4267578, 2.5117188, 0.71777344, -1.8945312, -1.0185547, 1.4130859, 2.1914062, -1.1611328, -1.6523438, 2.1816406, 0.5205078, -0.83984375, -2.1113281, -1.8359375, 0.57958984, -1.3896484, -1.5068359, -0.51123047, -1.5214844, 1.5996094, 0.7553711, 0.9663086, -0.11273193, -0.29907227, 1.5546875, -1.3964844, 1.4345703, 0.68408203, 2.0644531, 0.74853516, 0.66748047, 3.3847656, 1.5371094, -0.29223633, -0.13305664, 1.3447266, 0.58740234, 0.7915039, -0.54248047, -1.1933594, 0.26293945, -1.0390625, 1.7949219, 1.5546875, 2.4414062, 2.2988281, 1.84375, -1.9902344, 2.5683594, 2.3339844, 3.0253906, -0.13000488, 0.37524414, 2.109375, -3.5507812, -1.0625, 2.1621094, 1.1855469, -0.08673096, -1.4775391, 0.66552734, 3.8398438, -3.0371094, -1.1621094, 2.5917969, 0.0848999, 1.7255859, 0.018035889, 2.859375, -0.5932617, -2.7734375, 1.3310547, 1.6123047, -0.1126709, 3.5058594, 4.015625, -0.3725586, -0.5917969, -0.6088867, 0.5727539, 0.5605469, 0.7480469, -0.70410156, -0.6591797, 1.7246094, -1.5566406, -0.2565918, 0.062561035, -1.3662109, 0.35253906, 1.8828125, -0.49902344, 1.5566406, 1.8388672, -0.011497498, -0.71875, 2.6796875, -3.3847656, 0.7788086, 0.6791992, 1.3613281, 0.27124023, -0.9277344, -0.36791992, -1.6601562, -0.67285156, 0.3347168, -1.3662109, -1.7783203, 2.1953125, -5.2734375, -0.3720703, 2.9296875, -0.9892578, 3.9882812, -0.02607727, -2.6308594, -0.5463867, -0.7861328, -0.26049805, -0.47387695, -0.67578125, 3.0078125, -0.50439453, -2.8535156, -0.7192383, 0.68896484, -0.65234375, 1.2382812, -1.2988281, 0.5957031, 0.4453125, 0.828125, 0.8979492, -1.9306641, -1.0976562, -1.7675781, 1.9082031, -1.9296875, -1.5224609, 0.12243652, 2.9472656, -1.3056641, 0.28320312, -0.30395508, -1.6650391, -1.6611328, -0.38012695, 4.6328125, -1.3046875, 1.21875, -2.8886719, -1.0224609, 1.3076172, -0.97314453, -4.3867188, -0.32055664, -1.5908203, 1.4355469, -2.1582031, -3.734375, 1.9433594, -0.6899414, 0.18481445, -1.1992188, -1.1484375, -1.9326172, 1.3925781, -0.019134521, 0.88427734, 1.3388672, -1.5341797, 1.5, -0.14855957, 0.9448242, -0.8154297, -1.2177734, 0.6245117, -0.69384766, -0.48120117, -0.75146484, 1.9072266, -0.3798828, 0.15246582, 1.0595703, 1.7792969, -3.5058594, 1.8388672, 1.1552734, -0.85595703, 0.27514648, -3.140625, 0.28173828, 0.28735352, -0.84375, 3.3203125, 2.078125, 2.4570312, 0.76953125, 0.29589844, -0.48876953, 0.30664062, -2.2246094, -1.0039062, 0.17785645, 2.5976562, -3.4238281, -1.6738281, 0.017990112, 0.19702148, -2.3027344, -0.21850586, 1.2050781, -0.43652344, 3.546875, -0.3798828, -0.24377441, -1.7080078, -1.1015625, 0.10467529, -0.7182617, -2.0761719, -0.064819336, -2.6523438, -1.8417969, 2.4902344, 0.91064453, 1.1357422, 0.42651367, 0.047943115, 1.2480469, 0.3190918, 1.6025391, 0.7475586, -0.11590576, 0.52246094, -0.16491699, -0.22741699, -1.2919922, -0.6166992, -0.5932617, 1.3027344, 0.26635742, -2.4785156, 1.0332031, 2.0703125, 1.1328125, -1.5527344, -0.029388428, -0.36547852, -2.6347656, -1.4238281, 2.0253906, 0.29858398, -0.79833984, 0.47924805, -1.7294922, 3.0996094, -2.0078125, 2.1933594, -0.23608398, -0.9536133, 0.04727173, -0.05859375, -2.1171875, -2.2832031, -1.7763672, -1.2851562, -0.8222656, 2.875, -1.4990234, -0.50390625, 0.40722656, 0.011260986, -1.3525391, 1.0996094, 0.07067871, -1.1777344, -1.4345703, -0.53515625, -0.1953125, -0.29785156, 2.1054688, -1.1445312, -1.2402344, 0.62402344, -0.8354492, 1.1025391, 0.079711914, 0.890625, -1.8916016, 0.38793945, -0.8925781, 1.5185547, -0.88964844, 3.0488281, -0.97998047, 1.3671875, -0.027374268, 0.30004883, -1.3496094, -0.76660156, -2.2304688, 2.7617188, -1.8525391, -0.20202637, 2.1074219, -1.4726562, -1.0234375, 0.9477539, 0.6875, -1.4960938, -1.1318359, 1.0292969, 2.0410156, -2.4023438, -2.9375, -0.5444336, 1.8886719, -2.4492188, -0.21105957, 0.96728516, 0.5751953, -0.61328125, 0.22045898, -0.38500977, -1.8447266, 0.9223633, 0.07879639, 0.6123047, -1.3779297, 3.7246094, -3.0527344, -0.58740234, -2.8183594, 0.95166016, 2.6289062, -0.38378906, 0.80859375, 3.4609375, 3.2246094, -0.5097656, 2.4238281, 0.12371826, 1.1914062, 0.9379883, -1.7998047, -0.48120117, -0.28637695, 0.011360168, -0.2109375, -0.4248047, -0.9277344, -0.53759766, 1.9375, 1.7285156, -0.47827148, -1.0800781, 1.6445312, -3.0585938, 1.8662109, 0.06173706, -3.3847656, 1.0576172, -0.11779785, -1.2041016, -1.1689453, 2.4082031, -1.1953125, -0.4296875, -1.4882812, -0.005970001, -3.1699219, -1.4726562, 2.171875, 0.120666504, 0.6542969, -0.7519531, -1.1816406, -0.39526367, 0.8095703, -0.40039062, -0.3696289, -0.3322754, 1.5849609, 1.1347656, 1.6230469, 1.15625, -0.48657227, 0.48999023, -2.8339844, 1.0791016, 0.44262695, -0.3479004, -2.3261719, -0.1706543, -0.71484375, -0.01651001, 1.53125, -2.765625, 2.5, -0.75097656, 0.24865723, -0.99853516, 1.3496094, 1.4619141, 4.953125, 0.4633789, 0.69921875, 1.9755859, 2.0039062, 2.828125, -2.3203125, 1.4638672, 0.40698242, 1.0625, 0.18701172, 0.29101562, -2.0175781, 2.7910156, -0.9741211, 1.6816406, 1.1416016, 1.3710938, -1.7148438, -2.5800781, 0.8027344, 2.1074219, -1.0703125, -0.064086914, -1.5449219, 0.30541992, 1.3164062, -0.15942383, -1.2792969, -1.4130859, 2.7246094, -0.35327148, 1.6308594, 1.5429688, -0.26391602, -3.6289062, -1.0693359, -2.5820312, -4.1523438, -2.1074219, 0.75390625, -1.3564453, 0.78222656, 1.6503906, 0.9711914, -1.6347656, 0.8105469, -0.7651367, 0.24353027, -1.2431641, -0.71191406, -0.74365234, 0.72314453, -1.6181641, 2.4492188, 0.83496094, -0.47851562, -2.0859375, -0.01789856, 3.0898438, -1.9101562, -2.1113281, -0.8745117, -0.30541992, 0.109680176, 2.3828125, 3.2070312, 1.3681641, -0.023880005, -0.7939453, -0.66308594, -2.2441406, 4.5742188, 1.0185547, 1.0527344, -4.25, -0.99853516, -2.4179688, -4.6015625, -2.7792969, -1.5087891, 0.07281494, 1.8310547, -2.1386719, 0.47851562, -0.62939453, 0.8300781, -0.8256836, -0.9555664, 0.84716797, 0.31591797, 0.65625, 0.16589355, 2.5605469, 0.2956543, -1.0400391, -1.9111328, 1.0019531, -0.13562012, -0.33642578, -2.5253906, 3.1054688, -0.95410156, -0.03982544, 2.5410156, -2.0527344, 0.6220703, 1.9287109, -0.12371826, -2.6386719, -0.06573486, -0.9633789, -1.6962891, 0.036254883, -0.5258789, -0.55126953, 0.4050293, 0.6533203, 2.3554688, 3.6484375, 2.9257812, -1.6875, 0.1850586, 0.2709961, -1.4199219, -0.52685547, -1.1103516, 2.5078125, -1.6240234, 1.6816406, 1.9423828, -1.09375, -0.80810547, 0.029800415, -1.0576172, 1.0986328, -0.5942383, 1.3242188, 0.81689453, 0.6743164, -0.7651367, -0.18066406, 0.44482422, 1.8496094, 0.13696289, 1.1816406, 3.0292969, -1.4238281, 1.3115234, 1.4082031, -0.21789551, -2.5175781, -3.2773438, 2.9570312, 2.5683594, -2.2402344, 0.52246094, 1.0175781, -1.0527344, -0.06100464, -2.2207031, -0.05706787, 2.6269531, 0.42529297, -2.7890625, 0.5263672, 1.1308594, -1.1074219, 1.2148438, 1.9414062, 0.6508789, 0.07684326, 0.15283203, 1.1181641, -3.765625, -0.21374512, 0.12347412, 2.4960938, -0.84033203, -0.009986877, -0.036346436, -0.9243164, -0.71777344, 1.2412109, 2.3476562, -3.2695312, 1.5419922, 1.1044922, -1.3896484, 1.3017578, 2.2324219, -2.0878906, 1.3037109, 1.9238281, 1.0976562, -0.93603516, -2.5039062, 0.99902344, 2.1953125, 1.7714844, -1.4960938, 2.9160156, 2.9453125, 1.2246094, 0.2590332, 0.7685547, 0.58935547, 0.5678711, 0.2775879, 2.0527344, 2.5117188, 0.40966797, 1.4384766, 0.59521484, 0.7128906, 2.4765625, -0.68896484, 2.0234375, 1.5546875, -0.8544922, -0.72216797, -1.6005859, -1.1591797, -0.7260742, -1.0693359, -1.4267578, 1.3125, 1.6777344, -1.2998047, 0.3881836, -1.3408203, 0.2467041, -0.13696289, 1.0830078, -2.2109375, -0.5800781, 0.97216797, -0.8569336, 0.59033203, 1.4580078, 1.1298828, -0.5336914, -1.3691406, 2.1054688, -1.0771484, -0.4152832, -1.1679688, -1.8359375, 2.1308594, 4.5703125, 1.5107422, 2.734375, 0.41723633, 0.3557129, 2.1152344, 0.59765625, -0.42651367, -0.921875, 0.85791016, 1.1503906, 1.5292969, -0.82421875, -1.4560547, -0.23071289, 0.2475586, -2.2363281, -2.6953125, 3.1660156, -0.020736694, -0.8354492, -1.0166016, -2.0761719, -0.56933594, -1.8955078, 0.06524658, -0.49291992, -1.1484375, 0.043670654, 1.6943359, -0.020324707, 1.4296875, -0.35668945, 0.15222168, -0.21557617, -2.109375, 0.734375, 1.8359375, -0.10534668, -1.1044922, -0.23693848, -0.15979004, 2.9882812, -2.0527344, 2.0976562, 0.19128418, -0.80078125, -0.65478516, 3.0683594, 3.3144531, 1.4179688, -0.75878906, 0.1550293, 0.92871094, 0.07965088, 2.7363281, -1.8867188, -0.29248047, -0.90185547, 1.0039062, 0.46264648, 0.48266602, -0.9316406, 0.703125, 2.546875, -3.0625, 2.1914062, 0.77441406, -1.2421875, -1.0869141, -1.0107422, -1.9345703, -1.9980469, -0.90966797, 2.2441406, -0.6894531, -0.27026367, 1.4355469, 2.2597656, 0.6621094, -1.3896484, -0.5180664, -0.63378906, -0.32495117, 0.81689453, 0.33813477, 1.6894531, 0.3010254, 0.53564453, -0.13146973, -0.5571289, -0.41088867, -0.22094727, -0.95458984, 2.1582031, -0.56689453, 0.2088623, -1.4023438, -1.5107422, 0.4675293, 3.2421875, -1.5712891, 1.1425781, -0.40820312, -2.4355469, -0.36254883, -0.1439209, -1.1054688, 0.69189453, -0.26123047, -0.6254883, 2.2304688, 1.7607422, -2.2695312, 2.484375, -0.9555664, -0.19812012, 2.1152344, -0.5288086, 0.6665039, 0.30737305, 0.43774414, 1.3671875, 0.6230469, 0.034088135, -0.9399414, 1.2421875, -1.6152344, 0.9321289, -2.0019531, 0.21813965, -1.3808594, 0.70654297, 0.7714844, 0.0041236877, 0.16491699, 1.3232422, -1.6494141, -1.6923828, -0.09692383]}, "B07MNH28TP": {"id": "B07MNH28TP", "original": "Brand: MASTERCANOPY\nName: MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown)\nDescription: \nFeatures: \u2705Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated.\n\u2705Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top.\n\u2705Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric.\n\u2705Rational Design: Two handy shelves for grill accessories, beverages and food. 8' x 5' shade provides enough space to set most kinds of grills. Perfect choice for BBQ.\n\u2705Free Gift: 2 LED Lights.\n", "embedding": [-1.3720703, 2.1542969, 0.5810547, -2.4160156, 1.0195312, 1.5322266, 0.640625, -0.78564453, 1.2333984, 1.7246094, -1.1103516, -1.4882812, -1.6269531, -3.9121094, -0.4248047, 0.7841797, 0.76708984, 2.2167969, 2.5214844, -1.0410156, 1.1933594, 1.1621094, -2.0527344, -0.28930664, 1.7207031, 0.026672363, 3.5898438, -1.8876953, 0.30371094, -0.3383789, 1.7128906, 0.68603516, 0.47558594, 1.9365234, -2.8632812, -0.5151367, -0.5498047, 1.5439453, 0.4165039, -2.2050781, -0.40649414, -3.2148438, 3.0605469, -0.45825195, -0.40405273, 1.4638672, -1.1875, 0.4404297, 1.0419922, -2.7207031, 1.0166016, 2.0664062, 2.8261719, 0.17663574, -0.8803711, -0.9145508, -0.5986328, -1.0507812, 1.3378906, -0.35009766, -0.40673828, -2.8203125, 0.23706055, 2.6425781, -0.92626953, -1.4589844, 0.25268555, -0.41015625, 1.5048828, -0.31884766, 1.3164062, -3.8886719, -1.8740234, -0.39013672, -0.16967773, -1.5439453, -2.3066406, 1.5292969, 1.9638672, -1.09375, -1.6318359, 2.1425781, 2.6855469, -1.1806641, -0.70166016, -0.46142578, -0.65185547, 0.5996094, 1.2050781, -1.7763672, -0.64208984, 0.92333984, -1.2148438, -2.0820312, 0.98535156, -2.4238281, 2.8925781, 0.081604004, -0.70458984, 3.7089844, 0.25097656, 1.0751953, 0.31298828, -0.4362793, -2.4921875, -1.4609375, 2.5449219, -2.6015625, 0.8935547, -0.48461914, -0.41723633, 0.5966797, -0.9814453, -0.6772461, 1.3925781, 0.5463867, -0.8774414, 2.4257812, 0.83251953, 2.3828125, 3, 1.8300781, -0.043884277, -1.7548828, 0.28295898, -1.4023438, 1.0175781, 2.40625, 3.2089844, -0.038635254, -0.18688965, -3.3535156, 1.1123047, 1.9121094, -0.57910156, -1.2382812, -2.2714844, -0.9453125, -4.3125, 3.1171875, -1.5546875, 1.3212891, 1.7177734, -0.46850586, -3.3085938, 0.19970703, -2.578125, 2.6679688, -1.4082031, -3.2167969, 2.0078125, -1.1591797, -0.6503906, -0.52685547, 0.796875, -1.9121094, 0.8588867, -1.5175781, 3.3183594, 0.52001953, 1.953125, -0.7338867, -3.0703125, 0.27856445, 0.51123047, -3.2851562, 0.56591797, 2.5585938, -0.3642578, 0.64746094, 2.65625, -2.1484375, 1.1201172, -0.80078125, 1.5371094, -0.14074707, -2.4414062, 2.1875, 0.65234375, -0.13793945, -1.25, -2.6503906, 1.9404297, 1.3066406, -0.84472656, -0.8105469, -0.63183594, 0.12756348, -0.5205078, -0.44189453, -0.5366211, 0.77734375, -1.3466797, 1.4248047, -2.4550781, -1.5439453, -1.2490234, -0.29833984, -0.43237305, -0.48339844, -0.9277344, -1.1230469, -2.1972656, 0.66748047, -2.2324219, 0.2890625, -1.7685547, 1.3486328, 1.9570312, 1.2861328, 1.4765625, -0.24902344, 2.1757812, 0.6069336, -0.26538086, 1.1123047, -0.22644043, 1.078125, 1.6953125, 3.0039062, -1.1396484, -0.88916016, -2.0390625, 2.9707031, -1.8310547, 1.7255859, 1.4462891, -0.07080078, -2.1386719, -0.91552734, 1.6171875, 0.30664062, 0.19824219, 0.24182129, -0.8618164, 2.5371094, 1.046875, 0.3161621, 0.027954102, -1.2802734, -0.40820312, -0.7001953, -1.1699219, 0.63916016, 0.3503418, -0.5727539, -0.6352539, 1.2119141, -0.7836914, -1.2871094, -1.0996094, 2.21875, 0.9609375, -0.77978516, 0.69873047, 2.15625, -0.08831787, 0.4345703, -3.0859375, -1.96875, -1.1972656, -0.6225586, 1.8574219, -0.35009766, 0.19873047, -1.2294922, 0.13903809, 2.1328125, -2.890625, -1.6376953, 1.8857422, -0.29760742, 0.9980469, -0.87890625, 2.6914062, 0.40576172, -1.2509766, -1.4091797, 1.0322266, -2.2929688, -0.14257812, 1.2802734, 2.5878906, -0.9301758, -2.1191406, -1.4326172, -0.021911621, -1.2001953, -0.16931152, -0.7626953, 2.8027344, 0.8378906, -1.3837891, 3.625, -0.8227539, -0.4584961, 1.453125, -0.61328125, -2.15625, -0.20129395, 1.7929688, 2.1503906, 0.9716797, -0.42382812, -1.1914062, -1.2480469, 0.36328125, -3.1542969, -1.1113281, 1.0087891, 1.0791016, 0.03479004, -1.2402344, -1.4042969, -0.39746094, -1.6357422, 2.9960938, -2.0136719, 0.064575195, 5.0078125, 0.56152344, 1.5683594, 0.34545898, -1.6416016, -0.4284668, 0.5395508, 0.49047852, 0.45703125, 0.65527344, -1.0351562, 1.4736328, -1.9306641, 1.8642578, -2.2773438, -1.3222656, -3.1132812, 0.7714844, -0.13049316, -3.0332031, -0.6064453, 1.1845703, -1.3339844, -3.0117188, -0.066589355, -0.84765625, -4.3359375, -0.86621094, 1.6513672, 0.20727539, 3.6367188, 0.0075645447, 0.7001953, -0.76904297, -3.9902344, -0.36376953, 2.2929688, -0.2454834, 2.8554688, -2.5839844, 1.0742188, -1.6650391, 1.671875, 0.27172852, -0.46313477, -0.6772461, 0.0826416, -1.125, -3.234375, 0.46044922, 0.51904297, 0.5834961, -0.97509766, 0.35766602, -0.8569336, -2.3574219, 1.359375, -0.41259766, 6.2148438, 0.23254395, 0.25024414, -1.8496094, -1.2128906, 1.6396484, 0.21691895, -1.9589844, -0.3034668, -0.5449219, 1.0683594, -1.0527344, -1.0683594, -1.4794922, 0.07196045, 0.49951172, -0.27490234, 0.66845703, 0.5810547, 2.2070312, -1.4609375, -0.5810547, -0.4921875, 2.2617188, 0.13916016, -0.006298065, -3.328125, -0.6484375, -0.91503906, -1.1845703, -0.84765625, 2.1914062, -1.3212891, 0.28100586, 1.6845703, -0.07684326, 4.15625, -0.8105469, -2.6953125, 3.7636719, 3.2441406, 0.23754883, -0.27124023, -0.72021484, -1.7626953, -2.5, -0.46704102, 2.5507812, 1.4375, 1.96875, -1.3232422, -0.4189453, 0.20776367, 0.08282471, -0.6879883, -0.9746094, 0.63134766, 2.734375, -0.17285156, -2.6074219, 0.27294922, 1.1474609, -1.4492188, -0.43847656, 1.4775391, -0.7763672, 1.9394531, 0.54785156, -0.005504608, 1.3671875, -0.08947754, 3.5234375, -1.1445312, 4.828125, 2.2753906, -1.9951172, 2.4433594, -1.1445312, 0.87402344, 0.4050293, 1.2880859, 0.9633789, 0.9790039, 1.3652344, -4.15625, 1.1513672, 1.8154297, 2.6875, -1.5146484, 2.1972656, -1.4091797, -0.3564453, 0.37475586, -1.3554688, 0.9453125, -0.4050293, -0.5722656, 0.05279541, -1.2304688, 1.9716797, 0.41210938, -1.4736328, -0.14770508, -1.8984375, 0.34277344, -1.1054688, -0.85595703, 0.26123047, -3.3554688, -4.4570312, -1.1757812, 2.5019531, 1.2607422, -1.8847656, -0.7993164, 2.7558594, 2.5214844, -0.25463867, -0.20349121, 1.1044922, -2.0703125, 0.90527344, -0.2927246, -1.2246094, 2.0820312, -3.0371094, 2.78125, 1.7128906, -0.98876953, -1.6591797, -0.45874023, -1.921875, 0.19506836, 1.6757812, 1.71875, 1.3466797, -3.3183594, -0.052703857, -2.5097656, -0.4362793, 3.0859375, -2.2695312, -0.6699219, 0.62158203, 1.1025391, 1.09375, -0.41723633, 3.2929688, 0.9291992, -2.6835938, 2.0292969, -0.90966797, -0.35546875, -2.1054688, -3.6914062, 0.054260254, -3.1230469, -1.4443359, 1.8769531, -0.14501953, 0.28833008, 2.03125, -1.6835938, -1.8789062, -0.6425781, -1.46875, -0.042907715, -2.7089844, -0.11804199, -0.1463623, -1.390625, -2.5683594, -1.9658203, -0.95751953, -0.19177246, 1.2128906, 2.109375, 0.78125, 1.7558594, -0.88720703, 0.24841309, 0.30297852, 1.6933594, -0.29833984, -0.34033203, 0.5546875, -0.09674072, 1.1875, 1.6464844, -0.07861328, 0.45898438, -0.35620117, 0.39697266, -1.0859375, -2.4707031, 0.49072266, 1.6259766, -0.8833008, -2.1816406, -0.76416016, -0.4741211, 0.84228516, -0.64208984, -2.5292969, 2.3515625, -2.375, 0.6748047, 0.09460449, 3.3378906, -1.3701172, -1.5869141, -4.390625, -1.7207031, -0.11999512, -1.5371094, -2.1953125, -1.4335938, -0.24365234, 0.9667969, -1.1523438, -1.6640625, -1.078125, -1.3359375, 0.44262695, -1.4199219, 1.1601562, 1.2148438, 2.4472656, 3.9179688, -2.2246094, -1.5107422, 4.3046875, -0.51220703, -0.24365234, 2.9042969, -0.25341797, 0.10656738, 0.89404297, 1.7216797, -4.0820312, -3.2167969, 0.9765625, -0.06378174, -2.7402344, -2.5019531, 2.6660156, 1.4638672, -0.39038086, 0.9765625, 0.29370117, 2.9726562, -4.1992188, -0.86083984, 0.14379883, 1.8720703, -2.0703125, 0.7397461, 1.8740234, -0.08380127, 1.5146484, 1.4814453, -0.09869385, -1.6298828, 1.0068359, 0.27563477, 3.1054688, -2.6386719, -1.3984375, -0.11895752, -1.7080078, 0.38476562, -1.6875, 0.7416992, 2.6660156, 0.5620117, 0.8676758, 1.0839844, -0.33520508, 2.7363281, 0.55566406, -1.0751953, 1.1103516, -0.38598633, -2.5253906, 2.1386719, -1.2841797, -3.4042969, 0.03765869, 0.088134766, -1.8925781, 1.8544922, 0.41748047, -1.7353516, 2.0996094, -0.9116211, 0.44262695, 0.036621094, -0.515625, 0.59472656, 0.58740234, -0.19299316, -1.3134766, 0.15368652, 3.6875, -0.059509277, -0.54003906, 2.5039062, 1.0439453, 0.22045898, -1.4365234, -0.06488037, -2.4980469, -2.6191406, 3.3027344, 2.1015625, 1.9736328, 1.703125, 1.3916016, -3.5117188, -0.8618164, -2.4628906, 3.3574219, -2.5117188, -0.65478516, 1.2568359, -0.83935547, -0.46313477, -2.8261719, 3.5136719, -0.56103516, 0.7348633, 1.0878906, 1.2910156, -0.25195312, 0.12512207, -2.1132812, -4.3359375, -2.40625, -1.4677734, 0.42773438, -0.9042969, 1.3720703, -2.125, -1.9951172, 1.5292969, 0.7192383, 1.8232422, 0.025665283, -0.9482422, 0.8955078, -2.3730469, -1.8466797, -0.86865234, -1.2509766, -1.6181641, 1.8300781, -1.5810547, -2.9902344, -1.8779297, -0.23840332, -2.3574219, 0.4099121, 1.5488281, -0.5083008, 1.3662109, 2.7519531, -0.68115234, -0.71875, 0.8774414, 0.9951172, 1.1757812, 1.9521484, -0.3984375, 1.8701172, -1.8789062, -1.6015625, -0.34765625, -2.5742188, -1.2246094, 0.22839355, -0.2939453, -0.010055542, 2.5761719, 0.3630371, -0.5229492, 2.0234375, 0.21472168, 2.8046875, 1.6054688, -1.5585938, 1.6162109, -2.0195312, -2.7539062, -1.0253906, -2.4589844, -1.6669922, -0.56640625, 2.2304688, -1.3359375, 2.1757812, 0.86083984, 0.84765625, 2.1894531, -2.5488281, 0.6220703, -0.35791016, 1.0498047, -0.22399902, -1.4404297, -1.5722656, -4.4492188, -0.22937012, 0.8364258, 0.45483398, 0.20422363, -2.0664062, -1.4697266, -0.91748047, 0.45629883, 0.12719727, 1.1953125, 1.2734375, -1.7734375, 2.6933594, -0.29003906, 0.20654297, -0.48461914, -0.46240234, 1.9990234, 0.14648438, 2.0957031, -1.1865234, -0.32592773, 2.2871094, -2.5390625, -0.4165039, -0.07659912, -3.4785156, 1.4404297, -1.6865234, -0.21813965, -0.12072754, -0.8105469, -2.796875, 1.3671875, 0.61865234, -0.09460449, 0.1776123, 3.59375, -3.1230469, 2.5234375, 1.1953125, 1.6503906, -0.14379883, 0.74902344, 0.051940918, -1.3837891, 3.0683594, -1.3964844, 0.5546875, 0.23278809, 0.453125, 0.45922852, 1.4570312, 1.1816406, 0.6166992, 3.1914062, 0.15710449, 2.1523438, 1.6210938, 0.7939453, 1.8730469, 1.2988281, 0.86572266, -2.0175781, 0.90966797, 2.9433594, 4.1601562, -0.52978516, 1.5341797, 0.21313477, 1.0537109, -0.6879883, -0.41064453, -1.2021484, 1.0253906, -2.6347656, 1.6601562, 0.008094788, 0.52001953, -0.38916016, -0.9746094, -1.6904297, -1.3310547, -3.9492188, -0.34887695, 1.9853516, 0.42700195, -0.3244629, -0.8881836, -0.5361328, -0.10253906, -2.578125, 0.90185547, -0.11254883, -0.20471191, -2.0390625, 2.0703125, 2.9042969, 0.44311523, 0.9692383, 2.5878906, 0.59033203, 2.0019531, 1.7294922, 0.6850586, 0.39282227, -0.7817383, 0.7006836, -0.06512451, -1.0234375, -1.7294922, 0.44384766, 0.6621094, -1.6035156, -0.61035156, 0.81591797, -0.6040039, 2.9003906, 0.8417969, -0.11328125, -0.14331055, 2.1855469, -1.7802734, -0.2866211, -1.6035156, -2.8574219, 0.053009033, 0.79833984, 2.1914062, 3.6816406, 0.8833008, -0.8955078, 2.3320312, 1.4375, -0.053100586, -0.41503906, 0.9472656, -0.58203125, 3.09375, -0.640625, 1.5791016, 1.7109375, 1.4228516, -0.6972656, 1.5175781, -0.22912598, -0.4987793, 1.9833984, 0.6542969, -0.09069824, 0.39697266, -1.3974609, -1.3515625, -3.0253906, -0.5942383, -0.28930664, -1.0742188, -2.3085938, -2.359375, -0.3449707, 2.0332031, 2.0371094, 1.3359375, 0.06021118, -0.20715332, 0.7133789, 0.30639648, 0.10632324, 0.93652344, 2.1972656, 1.6806641, -1.0126953, 1.046875, 0.45263672, 1.65625, 1.6865234, -1.2558594, 0.16552734, 2.4980469, 1.4189453, 2.0234375, 0.31152344, -1.0722656, -1.0986328, 0.7495117, 1.1621094, 0.54345703, 1.8115234, -0.25512695, -1.5585938, -0.2763672, -1.7431641, 1.5673828, -1.0742188, -1.5751953, 0.6713867, 4.171875, 1.0546875, 1.0048828, -1.9716797, -2.7363281, 0.62158203, -0.46484375, 2.8085938, -0.69628906, -2.3339844, -1.8251953, -0.17736816, 3.3457031, -0.02760315, 0.3244629, 0.09063721, -2.0566406, 1.2949219, -0.99365234, 1.4960938, 2.453125, -2.4765625, 1.4443359, 2.2480469, 2.2480469, -0.94091797, 2.0039062, 0.97314453, 0.81103516, -2.453125, 1.9980469, -1.7314453, 1.5224609, 0.44677734, 1.6416016, -0.0970459, -1.0615234, 0.23962402, -1.6484375, -1.4453125]}, "B01N8WLXO6": {"id": "B01N8WLXO6", "original": "Brand: Napoleon\nName: Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\nNatural gas grill with 304 stainless steel construction and chrome accents\nHeavy duty stainless steel \"Wave\" grill grates and dual level sear plates with internal halogen lights\n(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker\n18,000 BTU rear infrared burner and rotisserie kit included\n", "embedding": [-1.5986328, -0.53564453, 3.2597656, 1.1494141, 0.6201172, -0.13427734, -0.17480469, -1.6181641, -0.90625, 0.3232422, 2.6992188, -0.53564453, -0.6357422, -0.7158203, 0.9453125, -0.4892578, 1.9238281, 0.62109375, 0.7060547, -0.4255371, 0.7426758, 1.4853516, 1.8369141, -0.3671875, -1.1005859, 0.58740234, 4.25, -2.1113281, -0.7714844, -2.7011719, 0.9560547, -0.3930664, 0.101989746, 0.0619812, -3.296875, -1.5107422, -1.7929688, 2.3359375, -3.1308594, 1.1357422, 0.3618164, -0.9604492, 0.07763672, 0.2631836, -1.5205078, -0.12683105, -0.3828125, 2.4980469, -3.1074219, -1.1425781, 0.9580078, 0.24658203, -0.80908203, -0.23449707, -1.3095703, 1.4707031, 2.1308594, -0.56933594, -0.15600586, 0.13635254, 0.9873047, 0.8105469, -1.3193359, -1.2558594, -2.125, 1.1972656, 0.98046875, 0.328125, 0.68603516, 0.1665039, 1.8828125, 1.3466797, -0.25268555, 0.7089844, -0.9199219, -2.46875, -2.4472656, 1.1953125, 1.1494141, -0.50439453, -0.1706543, 1.4628906, 2.3222656, -2.3867188, 0.97509766, 1.0273438, -1.9248047, -1.1777344, 0.53466797, 0.38842773, -0.44506836, 0.84716797, -2.0410156, -2.7402344, 3.0019531, -0.57666016, -0.6928711, 1.7246094, -0.28027344, 1.5927734, 0.52978516, -0.8569336, -0.5073242, -2.1074219, -2.2363281, -1.9804688, 2.4453125, 0.40893555, -3.234375, -0.70947266, -1.9042969, -1.3457031, 2.5214844, 0.7709961, 1.0576172, 1.1962891, 2.1308594, 3.0566406, 0.25463867, -0.15600586, 1.4257812, -2.0097656, 0.64746094, 0.61816406, -0.5917969, -0.5209961, -3.2792969, 1.9921875, 3.2714844, -0.1928711, 0.34423828, -0.46069336, 3.59375, 1.3974609, -1.8339844, -1.5957031, -0.54248047, -2.0019531, -4.5351562, 0.91845703, -0.06298828, 0.28588867, 0.32373047, 0.14770508, -2.9550781, -0.0056266785, -0.103637695, 0.43041992, -0.65966797, -0.52783203, 1.9052734, -1.9863281, 1.5429688, -3.9511719, 0.40673828, -0.6958008, -1.3798828, -1.9658203, 2.7089844, 1.328125, 2.4570312, -1.5644531, -2.9921875, 1.8759766, -0.20581055, -2.9960938, -0.82714844, 1.7744141, 0.7138672, 2.4765625, -0.073913574, -2.9882812, -0.40454102, 0.41455078, 0.11206055, -0.88720703, -0.33398438, 1.8291016, 0.55371094, -1.6601562, -2.0507812, -1.5527344, 0.47143555, -0.12359619, -0.24060059, -0.5341797, 1.0166016, 0.92822266, 1.5585938, -1.703125, 0.9941406, -0.8232422, -1.0820312, 0.96484375, -1.0478516, -2.2304688, -0.21166992, -1.0820312, 1.8818359, -1.5283203, -1.2304688, 0.28466797, 0.32226562, 0.2849121, -2.4824219, -3.703125, -2.4414062, -1.3105469, 0.103271484, 2.7207031, 2.84375, -1.3427734, 0.96240234, -1.265625, 1.2910156, -1.6435547, 2.375, -0.75341797, -0.1373291, 3.4140625, 0.67626953, 0.28637695, -0.07385254, 2.5800781, -0.11022949, 3.5234375, 0.027816772, 2.4316406, -2.9550781, -1.4189453, 3.265625, 0.6640625, -0.7861328, 0.41918945, 0.9580078, 2.4824219, 0.29125977, -1.3710938, -1.0947266, 0.8876953, -1.2744141, -2.7011719, -0.85791016, -1.0947266, 0.18188477, 0.52978516, -2.5, 1.1044922, 2.6621094, 2.78125, -1.2949219, -0.43701172, 1.3232422, 0.9604492, -0.60009766, 1.5185547, -0.08648682, 2.5605469, -1.4316406, -2.203125, 1.3417969, 1.3574219, -0.83740234, 0.6567383, 0.40820312, -1.0537109, 3.2519531, 0.27978516, -1.3486328, -1.3427734, -0.97753906, -0.28076172, 2.5761719, 1.0917969, 0.69140625, -0.14660645, -2.1933594, 3.2636719, -0.43896484, 2.5351562, 0.2524414, -0.13757324, 2.8242188, -1.9130859, -1.7744141, 1.0410156, 0.057434082, -0.12188721, -0.97216797, 1.2529297, 6.1132812, -1.7519531, -2.4238281, 2.2792969, -0.10748291, 1.0908203, 2.1757812, -0.8129883, -0.7763672, -2.3554688, 3.1289062, 0.93408203, 0.9975586, 1.3759766, 0.26464844, -0.9765625, -0.19213867, -1.1162109, -0.23486328, -2.0078125, -0.051513672, -0.15344238, -1.9052734, 1.4892578, -0.0803833, -0.64697266, 0.60498047, -3.1308594, 1.8701172, 0.24694824, 0.51220703, 1.7246094, -1.1064453, -0.24890137, -0.98583984, 0.07519531, -0.38671875, 1.6455078, -0.26245117, -1.1015625, 0.04852295, -0.8623047, 0.63623047, -2.5546875, -1.6904297, 1.140625, -2.4707031, -0.8076172, -1.1308594, -2.5039062, -2.4746094, 1.7929688, -2.4003906, 0.06185913, -1.7080078, -3.6386719, -2.1503906, -1.0439453, -0.66748047, 2.0078125, 1.2255859, 0.7963867, 0.7807617, -3.4453125, -1.34375, -0.6386719, -2.4453125, 1.1171875, -1.5097656, 0.16381836, -0.56689453, -0.42260742, -0.35913086, -0.2722168, 0.41503906, -2.3789062, -0.36206055, -2.2890625, -0.20056152, -2.9199219, 2.1855469, -0.3149414, 1.8339844, -2.6230469, -1.2773438, -1.3769531, -1.4335938, 2.7597656, 0.3317871, 1.4306641, 0.8901367, -0.91308594, 2.4785156, -1.8173828, -1.5878906, -1.3847656, 0.011680603, -2.9335938, -2.078125, -3.0058594, -0.29345703, 0.08782959, -0.5527344, -1.7050781, 0.8442383, -2.9277344, 2.8242188, -1.5400391, -1.1308594, -0.71777344, -0.40820312, -0.08795166, 0.15881348, -2.109375, -0.78808594, -1.2109375, -1.4541016, 0.2434082, 1.0703125, 1.4443359, 2.8496094, 0.859375, -0.18286133, -0.33422852, 0.17150879, -5.1523438, 0.98876953, 0.5932617, -2.40625, 2.09375, -1.4921875, -0.28344727, -2.3945312, 0.64208984, 1.9824219, 2.4394531, 2.3828125, 1.5810547, 0.2734375, 2.0273438, 0.74365234, -0.20410156, -0.66259766, 0.3857422, 2.5644531, -0.8105469, -0.6484375, -1.0751953, 1.8193359, -0.8383789, -2.2773438, 2.2382812, 1.1835938, 3.1289062, 1.4638672, -0.49658203, 1.0869141, -1.0400391, 1.4082031, 0.044311523, 0.017562866, -1.0683594, -1.2802734, 1.7275391, 1.4716797, 1.0625, 2.8027344, -0.3876953, 1.6074219, -1.3300781, 1.2226562, -0.2109375, 0.6508789, 0.04360962, 2.9511719, -0.61865234, 2.6757812, -0.31079102, 1.1162109, 1.0976562, 2.2089844, 1.2558594, -1.5732422, 0.65234375, 1.5566406, 0.4345703, 0.15356445, -0.29467773, 0.87646484, 1.1308594, 1.0986328, 1.671875, -0.1204834, 0.93359375, -0.4194336, 0.60253906, -1.7753906, -2.3886719, 1.8027344, -0.21899414, -2.6640625, -0.08294678, 2.6523438, 0.51220703, -0.5073242, 1.2666016, 0.21557617, -0.9189453, 1.3222656, -1.2480469, 1.0224609, 1.3984375, -0.30419922, 0.66064453, 0.7680664, -1.1074219, 0.87109375, -1.7226562, 1.3173828, -0.98876953, -0.10223389, 2.4648438, 1.2675781, -3.6757812, -0.48510742, -2.7363281, -0.0028018951, -1.4414062, -1.4638672, -2.4804688, 2.4785156, 1.2402344, 0.8310547, -1.4785156, 2.6503906, -0.8852539, -1.8671875, 1.6210938, -2.9335938, 0.16589355, -3.78125, -3.640625, 1.8642578, -1.046875, -0.32910156, 0.13195801, -0.46484375, -0.86376953, 2.34375, -0.35327148, -2.4785156, -1.5244141, 0.25756836, 1.4052734, 0.8203125, -1.7666016, 1.5820312, -0.6279297, -2.5800781, -1.7636719, -1.4082031, 0.62402344, 0.76171875, 2.4394531, -2.6855469, 0.23620605, -1.1552734, 1.6044922, 0.1821289, -1.0097656, 1.2275391, -1.4628906, -0.11206055, -3.7089844, 1.6298828, 1.9726562, -0.2397461, 0.73339844, -0.2631836, 1.1064453, -0.33764648, 1.4951172, -0.15844727, 3.5214844, -0.13195801, -2.0097656, -3.4003906, 0.03390503, 0.8486328, -2.0898438, 0.38964844, -1.5146484, -2.0234375, 0.38989258, 1.2998047, 1.1552734, 1.7294922, 0.5839844, -2.7148438, -1.9746094, 1.5322266, -2.4804688, -0.24536133, -0.75097656, -0.6904297, -0.24609375, 0.26660156, -1.0332031, -0.96533203, -3.421875, -2.0371094, -2.6855469, 2.8085938, 3.3144531, 2.3476562, 0.46557617, -0.71191406, -0.92089844, -0.40600586, 1.3115234, -0.58496094, 2.3613281, -0.7084961, -0.7080078, 1.2363281, 1.0761719, -1.0136719, -0.7470703, 2.4335938, -1.0214844, -0.5595703, -1.8789062, -1.2333984, -2.8730469, -1.3994141, 0.67822266, -0.14746094, 2.6308594, -0.66259766, -1.3769531, -1.7617188, 0.50683594, 0.26000977, 0.5600586, -0.6425781, 1.1777344, 1.1015625, 2.5039062, 0.2479248, 0.6020508, 0.75390625, -0.08514404, 2.75, -0.029190063, 1.3896484, 0.7338867, -0.65966797, -0.9326172, -1.7109375, 2.3261719, 2.4042969, 0.85791016, 4.7578125, 1.2099609, -3.5332031, 2.1699219, -0.15185547, -2.6308594, 0.79345703, 1.3125, 0.51660156, -0.28076172, 1.1748047, -4.1601562, -0.91845703, 2.0488281, -1.5019531, 0.50341797, 1.0332031, -1.1777344, -0.5776367, -1.5361328, -1.1796875, -0.59375, 0.20214844, -1.2773438, 0.25976562, -0.09289551, -1.7021484, 0.32080078, 1.2548828, -0.31567383, -0.9399414, 4.5820312, 0.296875, 0.56347656, -0.93115234, 0.44360352, 0.6621094, 0.6743164, 1.7099609, 0.9819336, 1.9277344, -0.5214844, 1.0986328, -2.5546875, -0.39453125, -1.0097656, 3.8046875, -1.8847656, -2.5527344, 0.13354492, -0.6689453, 1.3798828, -1.6875, -0.0046424866, -0.8232422, 2.2285156, 1.7949219, -0.07409668, -0.3947754, -0.55859375, -1.7753906, -2.125, -2.7109375, 1.421875, 1.7607422, 0.88183594, 0.77685547, -2.171875, 0.8515625, 0.31054688, 0.15588379, -3.1171875, 0.004875183, -1.171875, -0.39746094, -0.5673828, 1.328125, -1.5244141, -0.14440918, 1.2324219, -0.9663086, 2.4414062, -3.6113281, -2.7890625, 1.4501953, -1.2900391, 0.54296875, 2.4101562, -0.51220703, -2.4921875, 1.5048828, -0.57128906, -1.0605469, 2.0351562, -1.9208984, -1.0107422, 2.9570312, -0.4206543, 1.7724609, -0.068481445, -1.3857422, 1.0009766, -0.14038086, 0.6958008, 0.105895996, 0.0024585724, 0.35375977, -0.3840332, -1.7080078, -1.6582031, 0.58740234, -1.5253906, 3.2929688, 0.5620117, -1.3505859, -2.5507812, -1.0097656, -1.7832031, 0.099731445, -1.8935547, -0.24816895, -2.34375, 1.5068359, -0.15527344, 0.57910156, -0.14123535, 2.1367188, 0.9453125, -1.3291016, 0.96533203, -1.9726562, 2.3300781, 2.2089844, -1.9296875, -0.9946289, -2.359375, -0.053619385, 2.4003906, 0.86083984, -0.75, -1.0117188, -0.49072266, -0.2043457, -0.055755615, 0.6713867, 1.2724609, -1.3066406, -1.3056641, 0.67089844, 2.15625, 0.1965332, 1.1015625, 0.25317383, 0.2770996, -0.4248047, 4.2421875, 0.91845703, -1.8652344, 1.921875, -2.4101562, 1.9980469, 1.6875, -0.9746094, -0.16967773, -0.9003906, -1.1572266, -1.0302734, -0.5522461, -3.7695312, 0.5488281, -0.5205078, 0.5053711, 0.32421875, 1.8251953, 1.4667969, 2.3398438, 0.8691406, 1.3085938, 0.8457031, 1.703125, 1.1269531, 1.3574219, 1.7890625, -1.5673828, 1.2392578, 1.0878906, 0.00023686886, -0.27514648, 2.5175781, 1.5058594, 2.3808594, 0.97216797, 2.359375, 4.9375, 2.1210938, 1.2001953, 0.6455078, 1.1582031, 2.0839844, -0.25708008, -0.041809082, 1.3691406, 1.7773438, -0.68652344, 0.21594238, 2.4980469, -1.5048828, -1.6123047, -1.4443359, 0.21557617, 0.017028809, -0.25634766, 1.5449219, 0.5522461, 0.97753906, -2.6445312, -0.063964844, -2.4804688, 1.2792969, 0.25512695, -1.8261719, 1.9189453, 0.3112793, 0.98339844, 0.017288208, -1.5917969, 1.8759766, -5.0078125, 0.19067383, -0.3137207, -0.41430664, 0.68310547, 0.3408203, 0.3918457, 0.074645996, 1.1494141, 0.2722168, 3.3652344, 1.78125, 2.2011719, -3, -0.094055176, 0.6245117, 3.625, -1.9951172, 1.1318359, 3.4453125, -0.011932373, -3.3945312, -5.828125, 2.5175781, -0.34179688, 1.6689453, 2.8925781, -1.4667969, 3.1445312, -0.4958496, 0.6088867, -2.4453125, 1.8994141, 0.48461914, -1.9492188, -1.4628906, 1.3154297, -0.23693848, 1.4326172, 0.38842773, -1.4169922, 2.3867188, -1.7128906, 3.3046875, 0.2631836, 2.5800781, 0.6230469, -0.4326172, -0.121520996, 1.9941406, 1.7421875, -0.9086914, -0.3618164, 1.4726562, 1.5898438, -0.005836487, 0.61083984, -0.15808105, -1.2548828, -0.45361328, -0.7709961, -0.25708008, -0.19567871, 0.10748291, -0.47143555, 1.5820312, -3.1953125, -1.4736328, 2.9511719, 1.8251953, -0.79052734, -0.4958496, 2.3925781, -2.1113281, 1.328125, -0.48535156, -0.8261719, -0.89160156, -0.27368164, 1.9863281, 1.8935547, -1.6289062, -1.0351562, 1.1904297, 1.203125, -0.49291992, 0.7216797, -0.06311035, -1.9443359, -0.051452637, 2.7675781, -1.2177734, -1.7197266, 1.9980469, -0.1328125, -0.023590088, 1.8769531, -0.64453125, 0.69628906, -2.0449219, -0.6225586, -0.6904297, -0.76220703, -1.1533203, 0.89453125, 3.1894531, 0.59716797, 2.0800781, -3.1074219, -3.7070312, -1.4863281, -2.59375, 2.0214844, -1.4169922, -0.40942383, 0.6064453, 0.98583984, 3.6308594, -1.8125, -2.59375, -0.23425293, -0.2944336, 0.61621094, 0.10076904, 2.7089844, 1.5322266, 1.3564453, 0.7270508, -0.50390625, 0.88378906, -0.57666016, 1.3925781, 2.9589844, -0.22265625, -1.4052734, 1.9580078, -1.9492188, 0.15563965, 0.38989258, -0.09008789, 0.3486328, 0.4873047, -0.6665039, 0.20410156, -2.2714844]}, "B08SVXLXZT": {"id": "B08SVXLXZT", "original": "Brand: SXTBWFY\nName: SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men\nDescription: Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
          Grilling in one of life\u2019s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone's inner grill master.
          Enjoy every BBQ party.

          Product details:
          Tools Material: Food-grade Stainless Steel
          Storage Case Material: Oxford Cloth
          Package size\uff1a15.8 \u00d7 5 \u00d7 2 inches
          Product weight: 2.2 pounds
          Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

          Warm Notice:
          Store your bbq tools properly and keep sharp or metal tools away from children.
          In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

          \nFeatures: \ud83c\udf56\u3010Valuable 23 Barbecue Accessories Set\u3011This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue.\n\ud83c\udf56\u3010Premium Stainless Steel Material\u3011Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob.\n\ud83c\udf56\u3010Intimate Design\u3011All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill.\n\ud83c\udf56\u3010Portable and Versatile\u3011The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father\u2019s day grilling gifts or special gift for your family and friend.\n\ud83c\udf56\u3010Hassle-free Customer Service\u3011We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!\n", "embedding": [-1.4580078, 3.4394531, 1.3144531, -0.56152344, 0.38012695, 0.21154785, 1.3261719, -1.0546875, 0.2783203, 1.2871094, -0.29052734, 0.27319336, 0.9550781, -3.0605469, -1.4130859, 0.7421875, 0.5292969, 0.23278809, 1.5458984, 1.7617188, 1.0185547, 1.1816406, 1.4960938, 0.57958984, 2.0605469, 0.12060547, 4.0117188, -2.7441406, 1.4316406, -0.6176758, 1.7441406, 0.45166016, 0.40942383, 1.5253906, -3.4453125, 0.6738281, 0.64160156, 1.6904297, -0.002166748, 0.30078125, -0.6533203, -1.296875, 2.515625, 1.234375, -3.7792969, 0.27954102, -0.7368164, 1.2568359, -0.57714844, -4.0546875, 0.7451172, 1.7666016, -0.32836914, 1.2177734, -2.7929688, 0.45385742, -1.5380859, -3.6894531, 1.78125, -1.1132812, 2.90625, -1.1083984, -0.5864258, -0.027786255, 0.62158203, -0.6142578, 0.64941406, -0.45947266, 0.078063965, -0.21484375, -0.14831543, -0.32250977, -0.25317383, 0.11541748, -0.51464844, -0.20495605, -2.3769531, 2.2324219, 0.37182617, 0.95166016, -2.7714844, 3.5332031, -0.41381836, -3.2363281, 0.27563477, -1.1708984, -0.88378906, -0.29907227, 1.7998047, 0.009284973, -1.1083984, 2.1621094, -1.9804688, -5.5546875, 1.8359375, -1.7167969, 1.1816406, -2.0234375, 0.2244873, 1.7919922, -0.8232422, -0.017837524, -0.1361084, 1.2539062, -1.4707031, -0.08428955, 1.3212891, 0.58935547, -1.3193359, -0.4350586, -1.9853516, 2.140625, -0.45703125, -0.047943115, -0.9013672, -0.2364502, -0.85498047, 0.70703125, 1.1220703, 2.421875, 2.8867188, 1.4892578, -0.0692749, -1.8476562, -0.71435547, 1.3964844, -0.25830078, 3.3222656, 3.1640625, 0.30273438, -1.3408203, -1.6035156, -0.4790039, -2.1796875, -0.43798828, -2.8398438, -1.6044922, -0.55908203, -2.3886719, 1.9101562, -0.78222656, 1.7148438, 2.9648438, -1.1640625, -3.046875, 0.54052734, 0.048339844, 0.6074219, -0.7211914, -1.4931641, 0.1104126, -1.3408203, 0.11352539, -0.97216797, 3.2988281, 0.18444824, 1.4169922, 0.21276855, 2.0820312, 0.7783203, 0.921875, -3.609375, -0.00078868866, 1.4736328, 0.5649414, -3.6074219, -0.43115234, 2.9238281, -0.45996094, 1.8554688, 0.65478516, -1.4863281, 0.6430664, -0.6113281, 0.23608398, -0.98095703, -0.30419922, 2.6914062, 0.09350586, -0.3671875, 2.3652344, -2.8847656, 0.8364258, 2.4667969, 0.00843811, -2.015625, 1.7861328, 0.16479492, 0.86035156, -1.2841797, 0.52197266, 0.80908203, -0.24829102, 1.1171875, 2.0058594, -1.6191406, -0.08404541, -1.5712891, -0.7636719, 0.30786133, 0.32543945, -1.9951172, 0.6694336, 0.8129883, -1.8876953, -2.1992188, -0.085876465, -0.24719238, 2.6738281, 1.9472656, 0.7885742, -1.5341797, 1.8105469, 0.10095215, 0.7246094, -1.6464844, 0.48339844, -0.3305664, 2.5546875, 1.1162109, -1.46875, -0.9736328, -1.6904297, 3.0292969, 0.58496094, 0.29907227, -0.9501953, 0.9477539, -0.5698242, -0.21154785, 0.51708984, 0.49389648, 0.2854004, 0.12402344, -1.140625, 1.6376953, 0.32861328, -2.7851562, -1.3105469, 0.049102783, 0.44555664, -0.93408203, -1.1240234, -0.93896484, -0.53271484, -0.9042969, -1.3603516, 2.109375, 0.3527832, -2.7246094, -0.7011719, 1.5732422, 2.5449219, 1.1660156, 0.2121582, 1.2128906, -0.578125, -0.073913574, -3.7285156, -0.45214844, 0.6357422, -0.15539551, -0.33251953, 1.2568359, 0.99072266, -1.1308594, 3.5097656, -0.9121094, -1.6347656, -0.48095703, 0.56396484, -0.083862305, 0.52246094, -1.2802734, 2.2792969, 1.9755859, -1.2099609, 0.81884766, 1.1191406, -0.9394531, -1.2177734, -0.5722656, 2.328125, -2.0957031, 0.43359375, -2.078125, -1.2431641, -2.4941406, 1.4140625, 1.6630859, 4.765625, 0.34399414, -1.7363281, 4.796875, -2.4726562, 0.66259766, 0.88720703, 1.0947266, 0.29760742, 0.17321777, 1.0800781, 1.9902344, 1.1904297, 1.2373047, -1.359375, 0.55859375, 1.5605469, -3.4882812, -0.140625, 1.3466797, -2.5078125, -0.4958496, 0.8442383, 0.25732422, -0.7246094, -1.9589844, -1.7158203, -0.9873047, 1.4960938, 0.88671875, 1.2412109, 2.0351562, -0.8491211, -1.8017578, -0.6611328, 1.4033203, -1.1513672, 0.48413086, 1.0410156, -1.4394531, 1.6845703, 0.59472656, 0.7915039, -0.9375, -0.83203125, -1.8544922, -2.0683594, -1.5410156, 1.0351562, -0.484375, 0.14147949, -0.7524414, -3.9414062, -0.7036133, -1.7148438, -3.2578125, -2.1679688, 0.6118164, -0.6010742, -0.2763672, -1.2490234, 0.9526367, 0.5776367, -3.109375, 0.11999512, 0.15197754, 1.2695312, -0.09185791, -2.6933594, 1.171875, -1.6416016, 0.27612305, -0.734375, 1.6503906, 0.24938965, -0.9267578, 1.6376953, -2.3339844, 0.51708984, -0.2364502, -0.39404297, -0.09552002, 0.7685547, -1.4589844, -1.1738281, -1.0917969, -0.640625, 2.8378906, -1.4462891, 2.3691406, 0.1739502, -1.2636719, -0.61083984, 0.13671875, -0.8300781, -1.3310547, 1.1826172, -1.5126953, -0.009971619, -1.6171875, 1.390625, -1.9433594, 0.05947876, -0.19665527, 3.7890625, -0.4934082, 0.89208984, -1.3271484, -1.2949219, 0.34301758, 0.19543457, 0.47631836, -1.4257812, -0.6425781, -0.8901367, -1.8710938, -0.6855469, -0.6386719, 2.4121094, -1.0078125, -1.5576172, 0.703125, 0.2541504, -0.087402344, 1.3300781, -1.7226562, 1.4814453, 0.9291992, -2.5820312, -0.56347656, 0.6196289, -0.9658203, -2.1601562, 0.23620605, 3.8105469, 0.44677734, 1.4404297, 0.015449524, 0.103271484, -0.040252686, 1.8261719, -0.54589844, -0.04663086, 2.125, 2.5566406, -1.1572266, -2.4238281, 1.2607422, 0.49658203, -1.3525391, 2.0585938, 0.054229736, 1.6855469, 1.6455078, 1.9648438, -0.085632324, 1.5742188, -1.5771484, 1.4560547, 0.78564453, -0.40649414, -2.8828125, 0.28149414, -0.75, -1.421875, 0.84228516, 1.3398438, 0.41381836, 3.2265625, 2.1796875, -0.68115234, -1.7646484, 0.89501953, 1.9941406, 0.37280273, 0.057128906, 0.8925781, -1.2900391, -1.7949219, -0.6567383, -0.9868164, 1.8300781, -2.7304688, -0.09851074, 1.6005859, -0.95947266, 1.1474609, 0.25756836, -0.765625, -1.0478516, -3.1953125, 0.7080078, -1.8339844, -2.4921875, 0.6333008, -1.0527344, -1.4306641, -1.1796875, 1.1884766, -0.6191406, 0.21960449, -1.1826172, 2.203125, -0.90234375, -0.68115234, -1.3242188, 0.5239258, -1.5136719, 2.5449219, 0.4790039, -1.9345703, 1.8730469, -3.953125, 1.1796875, 0.97265625, -1.9248047, -0.3942871, -0.018234253, -1.1767578, 0.79052734, -0.16967773, -0.49072266, 1.0029297, -1.2148438, 0.5097656, -1.7871094, 1.1728516, -0.3022461, -2.9257812, 0.30859375, 0.30786133, 1.9082031, 1.6132812, -0.39135742, 2.4433594, 0.9536133, -2.1699219, 1.0175781, -4.1992188, -1.4628906, -1.3359375, -3.7070312, 0.5341797, 0.30493164, 2.5351562, 1.4697266, 1.0205078, 0.90771484, 3.3417969, -0.0026893616, -1.7402344, 0.122924805, -0.640625, -0.27856445, -0.9067383, -0.021713257, 0.1875, -0.010887146, -0.7421875, -2.2304688, 0.3239746, -1.234375, 2.6699219, 0.079833984, -1.2324219, 2.1621094, -1.2568359, -0.5908203, -0.83740234, 0.39990234, -0.23632812, -1.8720703, 0.12512207, -0.32861328, 1.6748047, -0.5097656, 0.140625, -1.84375, 0.21252441, -0.35229492, -2.6230469, -1.046875, 1.5146484, 2.2753906, -0.390625, -1.6416016, 0.53271484, 0.15844727, 0.56933594, -0.13134766, 0.7001953, 0.8618164, -1.4697266, 0.88671875, 0.8847656, -0.39916992, 2.5625, 0.0029468536, -2.4414062, -0.9243164, 1.7490234, -1.5576172, -3.3222656, -0.5839844, -0.69873047, 0.59472656, -0.7573242, -1.0380859, 0.5161133, -0.84716797, 0.36083984, 0.25390625, 2.9414062, 2.15625, 1.1376953, 4.4570312, -0.04336548, -0.6040039, 1.0068359, -2.1445312, -1.4667969, 0.32470703, -0.107666016, -0.48510742, 1.8046875, 0.8652344, -0.38916016, 0.6069336, 0.30078125, 0.10046387, -1.0410156, -2.5605469, 2.796875, -0.8178711, 0.55371094, 0.19384766, -0.97021484, 1.4472656, 0.086364746, 0.74560547, 2.0625, 0.45922852, -0.74902344, -0.018569946, 0.40795898, 0.16540527, 0.8701172, 1.4130859, 1.4736328, -1.2617188, -0.7006836, 0.9160156, 0.5576172, -0.62158203, 0.8588867, 0.22302246, 1.6689453, 0.0019435883, -0.76464844, 2.5878906, 2.1621094, -1.0957031, 2.2285156, -0.5834961, -2.8789062, 1.2597656, 1.1152344, -4.0234375, 0.21789551, 0.32104492, -0.9082031, 0.5961914, -0.68896484, -1.0712891, -0.11340332, 0.41723633, -0.70458984, -0.05130005, -3.6796875, -0.7495117, 2.1484375, -1.6630859, 1.0644531, -0.70996094, -1.0380859, 0.86328125, -0.41625977, 0.42895508, 0.6640625, 2.6328125, 3.6171875, 0.040649414, -1.3154297, -0.39379883, -1.9609375, 0.6020508, 0.7685547, -1.2119141, -2.4257812, -0.8725586, 2.2617188, 3.546875, 1.8046875, 0.67333984, 1.4130859, -1.2685547, 1.2753906, -2.0839844, 2.7402344, -2.1367188, 1.3466797, 1.9355469, -1.8105469, -0.62841797, -1.8447266, 2.4199219, 1.0302734, 0.61328125, 0.21887207, -1.3183594, -0.8779297, 0.9267578, -1.8515625, -5.09375, -1.171875, -0.99560547, 0.7758789, 0.24243164, -0.81689453, -1.1474609, -0.38500977, -0.84716797, -0.28344727, 0.06616211, -0.31103516, 1.8232422, 0.30249023, -1.8583984, -0.31982422, -0.55126953, 0.45410156, 1.4677734, 1.3232422, -0.2644043, -4.03125, -0.4753418, -0.39526367, -2.8964844, -0.9995117, 1.3662109, 0.08148193, -0.46533203, 1.1835938, 0.40698242, -0.6479492, 1.1025391, -1.9726562, -0.31835938, -2.3183594, -0.5961914, 0.43188477, -2.1679688, -0.46240234, -0.18579102, -2.6777344, 2.5, 0.89697266, 0.6191406, 1.4199219, 0.71728516, -0.026168823, -0.5131836, -0.14196777, 1.21875, 0.7026367, 1.4511719, 0.7895508, -0.85253906, -3.6015625, -1.4599609, 0.8129883, -0.4650879, 1.4560547, -2.7871094, 0.46850586, 0.70166016, 0.58251953, -0.21606445, -1.1308594, 0.70214844, -1.7412109, -0.16430664, 1.4052734, 3.0664062, 1.4765625, -1.5644531, -0.4675293, -1.3125, 0.42651367, -0.2244873, -1.0703125, -0.35546875, -1.4658203, -0.9604492, -0.50927734, -0.32666016, 1.0878906, 2.8320312, 0.45117188, -0.80371094, -0.7246094, 0.74609375, -1.1533203, 2.8066406, 1.2021484, 0.99853516, -0.51171875, 3.0351562, -2.4375, -2.84375, 0.66308594, -0.8354492, 1.0605469, 1.0214844, -2.9277344, -0.4453125, -0.89697266, 1.5507812, -2.0273438, -2.2734375, -1.4902344, 1.3583984, -0.29516602, 0.105285645, -0.65527344, 3.6503906, -1.1386719, 2.1367188, 2.28125, -1.1357422, -2.125, -1.0800781, -1.7128906, -0.079833984, 1.1416016, -0.20812988, 0.96875, 0.14697266, -0.48168945, -0.6508789, 1.9980469, 1.6972656, 0.53027344, -0.21350098, 1.2148438, 0.09075928, 4.3398438, 2.9492188, 0.30249023, 1.0302734, 3.0039062, -1.0722656, -0.14428711, 4.5273438, 1.3388672, -1.6298828, -0.09814453, 1.4365234, -0.59814453, 0.02116394, 0.20251465, 1.1660156, 0.021530151, -1.21875, 3.0449219, 0.83251953, 0.3059082, -0.7963867, 0.9033203, -1.390625, -1.6708984, -1.7236328, 0.2998047, 3.1464844, 0.6796875, 0.6738281, -1.0644531, 0.265625, 1.796875, -2.4257812, -0.34692383, 1.3222656, -1.2578125, -2.6601562, 2.5644531, 2.4121094, 1.5214844, 1.9091797, 1.2509766, 1.046875, 0.087524414, 0.6401367, 0.13171387, 0.4482422, 0.29125977, 1.2548828, -0.7182617, -1.4882812, -1.0751953, -0.49951172, -2.6621094, -0.32055664, 2.0429688, 1.4101562, 2.125, -0.3918457, -4.8554688, 0.8798828, 1.1132812, 3.2382812, -0.18652344, 1.1347656, 1.2167969, -1.8105469, -0.8959961, 0.6738281, 0.59228516, 1.3173828, 1.4003906, -0.25927734, 1.0839844, 1.4609375, 1.2021484, 1.5878906, 1.7958984, -1.84375, 0.41455078, 0.25830078, 2.0175781, -0.4267578, 0.6323242, -2.3105469, 1.6181641, 0.36572266, 1.2324219, 1.3701172, -0.7548828, 0.30786133, -1.4570312, 0.4248047, 0.38110352, -0.15661621, -2.5527344, -0.56591797, 0.058929443, -0.17614746, -0.06604004, 1.2304688, 2.6933594, 2.0917969, 0.9086914, -0.08557129, -1.6376953, 1.7695312, 1.1367188, -0.8388672, -1.2998047, -0.8046875, 0.82910156, -1.0595703, -1.8105469, 0.4272461, 0.8613281, -1.2421875, -2.4003906, 0.578125, -0.17810059, 0.17700195, -0.7910156, -1.4677734, -1.8964844, -1.7939453, 0.84033203, -0.19714355, 1.2490234, 0.9350586, 1.1484375, -0.93652344, -1.8183594, -0.5908203, 0.2709961, 0.119506836, -1.0595703, 0.88427734, 2.8496094, 1.4042969, -0.6582031, -2.1152344, -2.1777344, 2.7929688, -0.86376953, 0.28955078, 0.890625, -2.6777344, -0.20080566, -1.7529297, 2.984375, -0.2133789, -2.2089844, -1.4013672, -0.72216797, -1.3466797, 0.74072266, 0.29541016, -0.94628906, -0.6381836, 0.30664062, 3.6113281, 0.7524414, 1.4902344, 2.265625, 2.8242188, 1.1943359, -1.296875, 1.5429688, 0.8642578, 2.2734375, -0.49023438, -0.7739258, 1.0419922, 1.0527344, 0.23693848, 0.32983398, -0.8339844]}, "B000NWAO74": {"id": "B000NWAO74", "original": "Brand: Classic Accessories\nName: Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover\nDescription: \nFeatures: THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look\nPREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72\"L x 30\"D x 51\"H\nWEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills\nBBQ COVERS with WARRANTY: Three-year limited warranty\nHEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt\n", "embedding": [1.2255859, 0.7973633, 2.8515625, -2.6582031, 0.07336426, 1.5439453, 1.3525391, -1.2441406, 2.7050781, 2.75, -0.57666016, 0.11883545, -1.1738281, -3.7792969, 1.5595703, 0.46801758, 1.1357422, 2.4785156, 2.7363281, -1.8408203, 1.1298828, 1.1660156, -1.0068359, 0.4609375, 1.0732422, -0.34277344, 5.1367188, -4.0429688, 0.43920898, 1.0556641, 2.6894531, 0.44458008, -0.6254883, 3.0253906, -2.2011719, -1.9492188, -0.06213379, 2.4160156, 0.78271484, -1.3056641, -1.5810547, -1.5849609, 2.75, 1.9775391, -2.5683594, -0.29370117, 0.75146484, 1.2265625, 0.10601807, -2.2363281, 0.7504883, 2.2011719, 3.1484375, 0.7734375, -3.6328125, 3.484375, 0.19726562, -2.0214844, 1.5664062, 0.031463623, -1.4033203, -1.5087891, -0.95654297, 2.09375, 0.00868988, -0.61328125, 0.4777832, -0.6069336, 0.18737793, 0.60498047, 2.0117188, -0.5024414, -2.4277344, -0.101501465, 1.7412109, -1.8955078, -1.4404297, 1.0927734, 0.9394531, -2.359375, -2.0136719, 3.3925781, -0.5131836, -2.6191406, -0.9375, -0.06713867, -2.3730469, 0.024230957, 0.84716797, -2.6640625, -1.390625, 1.4023438, -1.4248047, -3.7871094, 0.020767212, -3.7832031, 1.9208984, 0.96240234, -0.04147339, -0.828125, -1.2226562, 1.6328125, -1.1787109, -0.6635742, -2.5175781, -2.1699219, 0.38354492, -2.2089844, 0.8745117, -0.50390625, -1.1914062, 0.11669922, -1.0400391, 1.8427734, 2.2421875, 1.0771484, -2.2285156, 1.3662109, 0.043182373, 0.62402344, 1.0859375, -0.42895508, 0.20959473, -2.609375, 0.1928711, -0.5830078, -0.033691406, 3.9550781, 3.3457031, -1.7197266, 1.328125, -1.7734375, 2.4902344, 1.5869141, -0.6269531, -1.0986328, -0.90283203, -0.44067383, -2.5292969, 0.8613281, 0.22021484, -1.1748047, 0.6694336, -0.91015625, -2.90625, -1.234375, 1.1904297, 2.4082031, -1.6298828, -3.4082031, 0.49609375, -2.7246094, 1.1162109, -1.5751953, 0.4609375, -0.61572266, 0.9243164, -5.0039062, 3.640625, 2.5410156, 1.9521484, -2.6425781, 2.2597656, 0.19616699, 1.6708984, -2.3222656, -0.44555664, 0.6455078, 0.9291992, 2.921875, -1.5, -1.1835938, 1.4335938, -0.9824219, 1.8193359, -0.034088135, 1.0693359, 1.7695312, 0.5395508, 0.8930664, -0.42382812, -0.9584961, -0.5654297, -0.44433594, -1.6552734, -1.4765625, -0.4099121, 0.08013916, 1.8603516, 0.007007599, -0.6225586, 1.1103516, -3.0859375, -0.10205078, -1.7333984, -2.5371094, -1.3388672, -1.0361328, -0.70703125, 0.68310547, -1.7978516, -2.5507812, -0.8535156, 0.4921875, -1.8603516, -0.94140625, -1.4697266, -0.06817627, -0.031021118, 1.109375, 0.93115234, -2.90625, 2.765625, 0.29614258, -0.94921875, -0.921875, 2.0253906, -2.234375, 1.8632812, 0.6645508, -1.5712891, 0.9448242, 0.8339844, 2.5253906, 0.16394043, 1.1855469, 0.9243164, 0.5957031, -2.5878906, -1.3076172, 0.3166504, 0.453125, -0.90966797, -0.37109375, -0.28881836, 1.1201172, 1.1123047, -0.93359375, -1.1464844, -0.13684082, -1.9716797, -3.0214844, -1.1669922, 0.60302734, 2.5058594, 1.5146484, -1.78125, 1.5458984, 0.99072266, -0.73291016, -0.30322266, 0.09643555, 0.46777344, -0.78466797, 0.7602539, 1.9375, -0.38891602, 1.7998047, -0.7207031, -0.7050781, 0.22937012, -1.0117188, -2.1328125, 1.2744141, -0.5698242, -2.5800781, 1.3681641, 0.76171875, -1.9804688, -2.2910156, 0.85009766, -0.21520996, 1.2255859, 0.17871094, 2.3261719, 0.90625, -0.061553955, 1.1142578, -0.36938477, -1.7148438, 1.0683594, 0.62158203, 2.8574219, -0.8808594, 0.68359375, -0.21643066, -1.9853516, -0.88134766, -1.0078125, 0.5551758, 3.5683594, 0.39575195, -1.6650391, 5.140625, -0.23144531, 0.25854492, 2.7578125, -1.0917969, -1.9267578, 1.34375, 1.9091797, 0.84716797, -0.3166504, 0.34692383, -1.7851562, -1.2011719, -0.043914795, -3.4355469, -1.3486328, 0.17687988, -2.0371094, -2.0605469, 0.72998047, 0.83154297, -3.09375, -0.81884766, 1.2333984, -3.296875, 0.8515625, -0.79052734, 0.05114746, 0.6152344, -3.1015625, -2.1152344, -0.24597168, 0.38256836, -2.4082031, 1.2294922, 1.2412109, -0.35083008, 0.72021484, -0.62402344, 0.44433594, -1.3945312, -1.7539062, -2.8417969, -1.9492188, -0.65625, -0.60009766, 0.06573486, 0.6557617, -1.2333984, -1.6572266, 0.60302734, 0.27368164, -2.4941406, -1.6025391, -0.105407715, -0.54248047, 3.0527344, 0.013496399, -0.61083984, 0.36621094, -3.6386719, 0.7734375, -1.6865234, -1.5810547, 0.37719727, 0.05441284, 0.41430664, -0.4963379, 1, 1.0380859, 1.1445312, 0.67529297, 1.1074219, -0.0118637085, -2.7265625, 1.1875, 0.140625, -0.14819336, -1.1132812, 1.2314453, -2.4511719, -2.3378906, -0.08569336, -1.2177734, 4.9921875, 0.1262207, 2.1210938, -0.8808594, -1.8681641, 0.87890625, -0.22619629, -0.5102539, 2.1035156, -0.070251465, -1.9072266, 0.28051758, -2.359375, -1.4541016, -1.4853516, -0.2692871, 0.17468262, -0.89501953, -0.33984375, 0.5332031, -2.8261719, -1.3867188, -2.3476562, 1.5859375, -0.7519531, -0.38964844, -0.80126953, -1.7841797, -1.4677734, -0.6015625, -2.0175781, 3.1738281, -1.6875, 0.066101074, 1.6123047, -1.0966797, 3.1738281, 0.2668457, -4.1210938, 0.7338867, 1.3554688, 2.3652344, 2.1953125, 1.7216797, -2.8183594, -0.15490723, 0.20117188, 2.5097656, 1.7783203, 0.80859375, 1.4228516, 0.47192383, 0.62646484, 0.01373291, 0.05847168, -0.15222168, 0.7446289, 2.6640625, 0.17907715, 0.05444336, 1.9599609, -2.4355469, -1.6650391, 1.3955078, 0.6323242, -1.546875, 1.640625, 1.0810547, 0.92333984, 2.0566406, -0.42163086, 2.9160156, -0.21228027, 3.2597656, -0.8178711, 0.17919922, 1.1494141, -1.7138672, 1.2070312, 1.0302734, 1.1220703, 0.6357422, -0.7631836, -1.7001953, 0.48046875, 1.2714844, 2.4472656, 1.3310547, -0.8442383, 1.0302734, -1.6005859, -0.30566406, 1.3115234, -1.8740234, 1.3857422, -1.2783203, 1.5732422, 3.1191406, -1.328125, 0.19091797, -0.36108398, -1.3330078, 1.1025391, -2.6503906, -0.3161621, -2.1074219, -1.8671875, -0.058380127, -3.984375, -2.7128906, -0.40405273, 3.3066406, 1.7382812, -3.0683594, -0.81396484, 2.7421875, -0.8730469, -1.2167969, 1.1748047, 0.7910156, -0.41381836, 1.2714844, 2.9375, -2.5410156, 2.0019531, -3.5703125, 1.2685547, 2.2402344, -0.4699707, -1.2255859, 0.1583252, -1.3359375, 0.3400879, 1.7880859, 1.3056641, 1.75, -0.77197266, -0.99853516, -2.640625, -0.55029297, 2.3378906, -1.3798828, 0.18811035, 1.0361328, 1.9609375, 0.23718262, 0.39648438, 1.7900391, -1.7099609, -4.0039062, 1.0908203, -0.47583008, -0.12756348, 0.07489014, -4.1367188, -0.9926758, 1.1845703, -1.8115234, 0.8671875, 0.96240234, 0.75634766, 3.390625, 0.004047394, -1.4853516, -0.19592285, -2.4824219, -1.2001953, -1.3134766, -0.08520508, -0.18664551, -0.54833984, -2.3046875, -0.7807617, -1.0126953, -1.9443359, 1.0371094, 1.2578125, -0.7817383, -0.9379883, -3.171875, 2.2167969, -1.5087891, 1.3681641, 0.77685547, 0.15393066, 0.14257812, -1.3837891, 1.0068359, 0.32910156, 0.98583984, 0.40454102, 1.7578125, -1.7197266, -1.2109375, -1.2099609, 0.36743164, 2.8828125, -1.1611328, -2.4042969, -0.47338867, -0.04638672, 0.4267578, -1.3828125, -1.4228516, -0.38842773, -1.8818359, -1.2763672, -0.34960938, 0.74853516, 2.1230469, -1.84375, -3.0097656, 1.6728516, -2.2285156, -0.22521973, -1.6279297, 0.8027344, -0.24987793, 1.3427734, -1.2675781, -1.1962891, 1.8974609, 0.011024475, -0.3996582, -1.6591797, 3.203125, 0.45922852, 1.8037109, 3.71875, -2.1308594, 0.21203613, 2.1386719, -2.703125, 0.8959961, 1.2597656, -0.3984375, 2.4003906, -1.2167969, 1.1601562, -2.6523438, 0.060180664, -3.109375, 0.5708008, -1.7138672, -1.53125, 1.2695312, 0.22851562, 0.29467773, -0.3371582, -1.9960938, 2.390625, -1.6757812, 0.047943115, 1.5898438, -0.023864746, -0.4440918, 1.7255859, 0.24560547, 0.038970947, 0.82373047, 0.8339844, 0.16931152, -0.9633789, -0.45922852, -0.8959961, 2.0527344, -0.8613281, -0.93408203, -0.14074707, 0.46411133, -0.35473633, -0.75146484, 2.4082031, 3.0527344, -1.0048828, 1.2851562, 0.24938965, -2.5761719, 3.4394531, 0.75341797, -0.5620117, 0.57177734, -1.046875, -0.07318115, 3.0410156, -0.9863281, -2.9160156, -0.8964844, 1.6669922, -1.3515625, 1.6914062, -1.2177734, 0.39331055, 1.2470703, -2.3574219, -1.4189453, -0.12249756, 0.1595459, -1.4912109, -0.60009766, 0.38061523, -1.5869141, 0.5859375, 2.7285156, -0.6044922, -3.0097656, 2.3105469, 0.22399902, -0.5180664, -1.9345703, -0.94921875, -2.1621094, -1.6679688, 2.6953125, 1.4794922, 0.97998047, 1.0517578, 1.4482422, -1.7978516, 0.31811523, -1.5820312, 2.7597656, -2.1308594, 0.52490234, 2.96875, -2.0214844, -0.25708008, -1.3476562, 1.2939453, 2, 0.37402344, 0.48632812, 0.71484375, 0.20275879, -1.4453125, -1.84375, -2.2363281, -1.1337891, -0.6303711, -1.6376953, 0.8432617, -0.09637451, -0.7734375, -0.13684082, 0.1430664, -0.47875977, 0.79345703, 0.12451172, -0.3347168, -0.44458008, -1.0595703, -1.9794922, -0.52490234, 2.15625, 2.0175781, 2.4433594, -1.4140625, -3.09375, 0.44140625, 1.5615234, -3.2871094, -0.9584961, 2.2402344, 1.0361328, 1.5859375, 1.0576172, 0.46606445, 0.80078125, 1.2490234, -0.6459961, -0.11224365, 0.7397461, -0.54589844, 1.6835938, -0.4362793, -2.2910156, 1.4013672, -0.6870117, 0.22155762, 1.9833984, -0.37670898, 2.6503906, 2.0566406, -0.006122589, 1.0498047, 1.6533203, 1.5498047, 1.8388672, -0.23181152, -0.15979004, 0.95751953, -2.1699219, -1.9853516, -0.8046875, -3.515625, -0.91259766, -1.7724609, -0.4802246, 1.9892578, 1.8466797, -0.1517334, 0.3972168, 2.8769531, -0.9995117, -0.53808594, -0.4020996, 2.3964844, 1.1484375, -1.1738281, -0.50439453, -1.7509766, -0.56591797, 1.8076172, 1.3671875, -0.6879883, 1.2226562, -3.5390625, -0.875, 0.34887695, 1.4716797, -0.45288086, -0.23242188, -0.3701172, 0.97802734, 2.4394531, -1.5751953, 3.6933594, 0.60009766, 2.3320312, -2.1171875, 4.578125, 1.5625, -3, 1.5205078, -1.6865234, 1.7568359, 0.6357422, -0.5834961, 1.5244141, -0.6245117, -0.4033203, -2.5976562, -0.34399414, -3.6738281, 0.45703125, 0.23962402, -1.0263672, -0.03265381, 1.4023438, 1.6201172, 3.046875, 2.2597656, -1.0126953, -2.0703125, -0.43579102, -1.2070312, -0.23010254, 0.5107422, -0.6694336, 1.1474609, -0.5913086, 0.012756348, -1.0273438, 0.46313477, -0.5571289, 0.59033203, 3.2285156, 2.7089844, -0.13989258, 2.0957031, 1.9023438, 0.4572754, 1.5166016, 0.018478394, -1.8398438, -1.0273438, 3.1035156, 2.5175781, 1.2714844, -2.4707031, 0.24816895, 2.0058594, 1.0625, 0.765625, 1.0263672, 0.9350586, -3.3027344, 0.16101074, 1.7021484, 1.2802734, -1.2138672, -0.020141602, -0.9277344, -1.1240234, 0.8847656, -0.57910156, 2.8613281, -1.9335938, 2.1660156, 1.6044922, 0.9790039, -0.83154297, -1.0742188, 0.53515625, 2.0097656, -2.65625, -1.2373047, 2.7421875, 2.5175781, 1.8271484, -0.87158203, 0.6435547, 2.0683594, 2.5566406, 0.074279785, 0.007080078, 0.29125977, -1.15625, 0.84521484, 2.0664062, -1.0869141, -1.6982422, -1.9648438, -1.1191406, -1.0146484, 1.7607422, 1.8525391, 0.47070312, 1.9306641, -4.1796875, 1.2890625, 2.0097656, 1.1923828, -0.1751709, -1.1074219, 0.28735352, -2.5234375, -2.1074219, -0.9584961, -1.8759766, 2.3945312, 1.7695312, 0.5029297, 3.078125, 0.37768555, 1.3867188, 1.0302734, 1.9228516, -0.8432617, 0.1973877, 0.4465332, 2.046875, 2.4824219, -1.90625, 0.5644531, 1.9345703, -0.6040039, 1.0224609, 1.3662109, -0.6020508, 1.8837891, 2.3242188, 1.125, 0.7739258, -1.9638672, -1.7275391, 1.7705078, 0.36499023, 0.6503906, -0.9272461, 1.5966797, 0.95751953, -1.2978516, 1.6806641, 1.2177734, -0.68896484, 1.6054688, -2.2480469, -1.5419922, -2.1542969, 0.008026123, 0.7319336, 0.42993164, -0.07684326, -2.0253906, 1.9931641, 0.64941406, -0.08111572, 1.09375, 1.3466797, -1.3867188, 0.5214844, -1.5234375, -2.6074219, -0.5229492, 0.041229248, -0.47070312, 0.41577148, 2.34375, 2.9667969, -1.9482422, -3.1484375, -2.1621094, -0.36401367, 0.55615234, -1.9648438, 2.3203125, 3.3359375, 2.5800781, -1.0878906, -2.2441406, -0.1307373, -0.08428955, -0.4645996, 2.2285156, -0.10870361, -0.9926758, 0.9926758, -0.52246094, 2.078125, -0.34545898, -2.8730469, -0.39575195, -1.0361328, 1.5693359, -0.60791016, 0.32641602, 0.09234619, 0.61865234, 1.1318359, 2.3730469, 1.8876953, -0.29711914, 1.5693359, 4.0625, -0.32006836, -1.6328125, 0.10784912, 1.0849609, 2.7363281, -0.41503906, 1.7998047, 1.1523438, 0.43920898, 0.52490234, -1.8173828, -0.72509766]}, "B08BW61RDG": {"id": "B08BW61RDG", "original": "Brand: BBQ'n Grill\nName: BBQ'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil\u00a0Grills\nDescription: Now you can barbecue like you never have before with ease.\u00a0 This unique Barbecuing accessory makes rib booking virtually automatic.\u00a0 Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ\u2019n Grill rack, cover and then do nothing until they are ready to eat!\u00a0 This technique allows the meat to cook on both sides at the same time.\u00a0 Use on any covered charcoal grill of 19\u201d or more across and 17\u201d or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken\u00a0without\u00a0constant attention,\u00a0without\u00a0fussing,\u00a0without\u00a0turning, and\u00a0without\u00a0charring or burning.\u00a0 The BBQ\u2019n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food.\u00a0\nFeatures: Makes Barbecuing Ribs and Chicken Effortless\nWorks with Charcoal or Gas\nWorks with Round, Square or Rectangular Grills\nMade from Heavy Duty Plated Steel\n", "embedding": [-2.9980469, 1.7939453, 1.71875, -1.0048828, 0.99853516, -0.7524414, 0.6582031, -1.7753906, -0.52783203, 1.140625, 0.44140625, -1.5351562, 1.5332031, -2.359375, -1.0546875, 0.109069824, 0.9091797, 1.3886719, 1.6748047, 1.890625, -0.41357422, 1.9267578, 1.7089844, -0.32348633, 1.0224609, 1.7597656, 2.0351562, -0.3557129, 0.09185791, 0.20703125, 4.0742188, 0.26367188, -1.703125, 0.99609375, -2.8476562, 0.025024414, -0.033935547, 0.91259766, 0.43823242, 1.8017578, 1.5478516, -1.8046875, 1.6191406, 1.1181641, -3.6054688, 0.3317871, -0.6230469, 1.4003906, -0.43701172, 0.47924805, 1.5761719, 1.8574219, -0.20410156, 1.1181641, -2.6503906, 0.82177734, -0.5566406, -3.9179688, 0.48583984, -1.9248047, 0.92333984, -0.20898438, -2.9101562, 1.7529297, -1.2158203, -1.7265625, -1.5332031, -0.41015625, 0.7236328, -1.6982422, 0.59277344, 0.13977051, -1.75, -1.2705078, -0.22387695, -0.18591309, -1.8203125, -0.32226562, 0.9951172, -1.625, -1.5185547, 1.5175781, 0.93896484, 0.06982422, 0.55908203, -0.9038086, -0.83691406, -0.77441406, 4.0859375, 0.6689453, 3.3867188, 2.0585938, -3.0410156, -4.0507812, 1.7451172, -2.9804688, -0.6279297, -0.67041016, -2.0839844, 3.1328125, -0.06530762, 1.0957031, -0.8178711, 0.4675293, -2.9667969, -0.64746094, -0.39404297, -0.20898438, -0.46606445, -0.5595703, -1.3164062, 2.8496094, 0.38330078, 2.3203125, 1.7607422, 0.3552246, -0.1015625, 1.6738281, -0.2199707, -0.07757568, 3.4941406, 1.8076172, 0.70996094, -1.3125, -0.7348633, 1.125, -0.09094238, 1.2714844, 3.7558594, -0.92285156, -1.5068359, -2.3867188, 1.0009766, 0.43798828, -1.8935547, -0.8154297, -1.5791016, -1.8769531, -2.46875, 3.0742188, -0.33618164, -0.26586914, 1.1503906, -0.89208984, -1.6972656, 1.359375, 0.5361328, 1.8544922, 0.23461914, -2.9746094, 0.5678711, -1.2128906, 0.1661377, 0.65185547, 2.1757812, 0.09387207, -2.25, -0.8330078, 1.3232422, 0.45654297, 0.15148926, -3.5625, -0.42456055, 0.3166504, 0.06964111, -0.040649414, -1.4863281, 2.8359375, -0.111206055, 2.8164062, 3.1679688, -0.9404297, 1.7871094, -0.71435547, 3.2382812, -2.7285156, -0.092285156, 2.1230469, 0.48364258, -1.8359375, -0.36865234, -3.03125, 0.32788086, 2.0566406, 0.24145508, 0.6791992, 0.22045898, 3.3691406, 3.9492188, -0.7783203, 1.0136719, -1.5898438, 1.1455078, 1.0078125, -0.34765625, -0.81396484, 0.38598633, -0.88964844, -2.0136719, 1.5205078, -3.421875, -0.09881592, 0.7290039, -0.095458984, -1.5224609, -1.3378906, 0.23205566, 1.328125, 0.4050293, 2.4707031, -1.2724609, -1.4433594, 1.1074219, 2.6621094, 0.74365234, -1.9355469, 0.23498535, -1.3769531, 4.484375, 3.3496094, -0.35717773, -0.09039307, -0.53515625, 2.4414062, 0.06329346, 0.515625, -0.51660156, -1.1923828, -2.2460938, 1.6455078, 2.5449219, -0.08935547, -0.53808594, 1.2226562, -2.0195312, 1.3535156, -0.5136719, -1.4990234, -0.19384766, 1.9638672, -0.16711426, -0.44921875, -0.52783203, -2.03125, 0.39453125, -0.48242188, -2.4394531, 2.3007812, 0.64697266, -1.3359375, -2.2558594, -0.18188477, 1.8720703, -1.2412109, 0.8095703, -0.01675415, -3.6679688, 0.15991211, -2.5410156, -0.453125, 0.2944336, -0.921875, -0.14990234, 0.33642578, 1.6748047, -1.0498047, 1.1806641, 1.0361328, -2.4472656, -2.890625, -0.074279785, -0.38427734, 0.47387695, 0.35058594, 0.38330078, -0.046051025, -0.032928467, 0.19946289, -1.2958984, -0.5727539, 1.0126953, 1.3447266, 2.015625, -0.5883789, -2.5371094, 0.8232422, -1.8720703, -2.0351562, 2.5566406, 1.6894531, 3.8496094, 0.53222656, -0.46728516, 2.296875, -1.5878906, -1.2236328, 0.51464844, -0.94140625, 0.4621582, 2.3320312, 0.4633789, 0.71777344, 1.2119141, 2.1757812, -0.4543457, -1.9550781, 1.4306641, -1.1777344, -0.014320374, 1.5566406, 1.6464844, -1.1972656, -1.0722656, 1.1933594, -1.6015625, 0.46533203, 1.1474609, -1.2734375, 1.2548828, 0.71972656, 1.6484375, 0.87353516, 0.43481445, -3.6308594, -2.0097656, 1.4765625, -1.3974609, -0.94677734, 0.035339355, -0.8330078, -0.44677734, -0.3095703, -0.048095703, 0.20507812, -2.3730469, -1.5107422, -1.5263672, -1.875, -2.0644531, -0.60009766, -1.6933594, -0.6064453, -1.7832031, -0.16491699, -2.078125, -1.4453125, -2.3027344, -1.75, 1.4160156, 0.044067383, -0.9140625, -0.9951172, 0.031555176, -4.3203125, 0.26757812, -0.084350586, -0.023208618, 0.6958008, -0.99853516, 1.6875, -0.2376709, 0.6933594, 0.37548828, 1.7001953, 1.8408203, 1.2636719, -1.046875, -1.3535156, 1.5908203, -0.39819336, -0.8540039, -2.1191406, -0.05834961, -2.1894531, -0.65234375, 0.9892578, -3.5625, 3.2558594, -0.36621094, 1.5517578, -0.81152344, 2.2402344, 0.29345703, 0.6748047, -2.2519531, -0.4321289, -0.9819336, -0.63378906, -0.5263672, -2.4648438, 0.85009766, 0.53808594, -1.5449219, -0.86621094, 0.8413086, -1.9482422, 1.6123047, -1.6113281, -2.3027344, 1.0888672, 0.6958008, -0.12121582, -0.39086914, -1.2333984, 0.06921387, -1.8828125, -1.9404297, -0.71777344, 2.5820312, -1.6621094, 0.5004883, 0.6386719, -0.06518555, -0.7138672, -1.7089844, -3.515625, 2.1757812, -1.2353516, -1.2753906, 1.8613281, 1.7636719, -1.0214844, -3.8847656, 1.3652344, 1.9189453, 3.6054688, 3.1152344, 2.3398438, 0.046569824, 0.8491211, 2.3164062, 1.7792969, -0.17456055, 2.2558594, 0.9663086, -0.48828125, -2.9101562, -1.4853516, 2.4101562, -1.4707031, 0.5727539, 2.7109375, 1.5869141, 2.5703125, 1.9238281, 1.6982422, -0.42260742, -3.0527344, 0.7763672, 1.4462891, -0.07116699, 0.77246094, -0.22497559, 0.24902344, 1.5410156, 0.64941406, 1.0791016, 1.546875, 2.8554688, 2.6679688, 0.7421875, -1.8183594, 0.63134766, 0.5449219, 1.6621094, -0.8779297, 1.3925781, -0.0041503906, -1.5566406, 0.17541504, -1.1982422, 2.3769531, -0.93359375, -0.23596191, 3.1679688, 0.9736328, -1.2246094, 0.3388672, 0.38549805, -1.0449219, -1.640625, -1.4628906, -0.005050659, -0.37060547, -0.29248047, -2.7460938, -2.9042969, -1.5341797, 1.6328125, -2.6132812, -3.7851562, -1.6640625, 3.7226562, -1.6298828, 0.18457031, 0.58935547, 1.2910156, 0.28149414, 1.4521484, 0.51708984, -0.61279297, 1.5380859, -2.1035156, 1.2832031, -0.5859375, -0.8178711, -1.2949219, -0.6669922, -1.8886719, 0.1628418, -0.4116211, -0.3173828, 0.25830078, -0.79785156, -1.6933594, -3.953125, -0.1809082, 0.4777832, -2.8476562, -1.3974609, 1.0283203, 0.5546875, -1.2363281, -0.7192383, 3.4648438, 0.38330078, -1.4355469, 1.4277344, -2.328125, -1.3398438, -2.3027344, -3.78125, 0.3461914, -1.0410156, 1.2822266, 1.5849609, -0.0134887695, -0.03466797, 4.546875, -1.7128906, -1.34375, 0.4934082, -1.421875, 0.10028076, 0.46044922, 1.0253906, 2.4355469, 1.6484375, -0.83740234, -1.5517578, -1.2480469, -0.89208984, 2.9023438, 1.90625, -1.8310547, 1.2832031, -1.4091797, 2.2929688, -1.5234375, -0.78466797, -0.37548828, -1.5673828, 0.047912598, 1.4101562, 2.4375, -1.0439453, -0.40673828, -2.0605469, 0.54541016, -0.6796875, -2.0878906, -2.2519531, -0.21032715, 1.7236328, -0.67529297, -1.8613281, -1.0683594, 0.6948242, -0.70214844, -0.5732422, -0.6845703, -0.9819336, -3.0898438, 0.3491211, 0.5131836, 1.2382812, 2.6289062, 0.17321777, -1.5839844, -2.8183594, -1.5166016, 0.7158203, -1.2558594, -0.30615234, 1.2763672, -0.5336914, 0.22558594, -2.8886719, 1.2480469, 0.4584961, -0.73876953, -2.1054688, 1.7265625, 2.2382812, 1.8496094, 5.1601562, -0.06161499, 1.4042969, 0.18273926, -2.8007812, -0.8569336, 0.26049805, -2.1152344, -0.008049011, -0.04385376, -1.0947266, -0.22241211, -1.4648438, 1.0742188, -1.3447266, 0.55322266, -1.1542969, 1.875, -1.7089844, 1.5986328, 2.5058594, -2.7207031, 2.7617188, -1.546875, -0.875, 1.7841797, 2.4472656, -0.28173828, 1.4238281, -1.0283203, 0.88183594, -0.30078125, 2.0898438, 0.1204834, -2.1660156, -0.7241211, -1.8173828, -0.63183594, -1.1816406, 0.5292969, -0.93847656, 0.33740234, 0.07946777, -2.6386719, 1.8769531, 3.4648438, -0.7260742, 1.5234375, 1.2861328, -1.6621094, 0.6323242, 1.2871094, -4.0703125, 0.87353516, -0.2709961, -0.93603516, 1.3964844, 0.9350586, -3.453125, -0.57128906, 1.3496094, 0.36376953, 1.8876953, -0.51660156, -0.2824707, 3.2460938, 0.3798828, -0.59277344, -1.1074219, -2.9804688, 2.1484375, -0.86083984, -0.64501953, 0.0066108704, -0.9428711, 1.3232422, 0.5498047, -2.3378906, 1.2714844, -1.1005859, -1.296875, -0.05657959, -2.3378906, -1.6855469, -2.0019531, 2.1132812, 1.5957031, 3.5722656, 0.69433594, 3.0117188, -2.7558594, 0.48828125, -0.53808594, 2.8574219, -2.0722656, 0.99316406, 3.6152344, -3.8691406, -0.11340332, -1.5488281, 0.29785156, -0.19458008, 1.3466797, 1.5644531, -1.1181641, -1.8935547, 0.44018555, -2.4960938, -3.6289062, -0.2944336, 1.8886719, 1.1337891, -0.28979492, 0.21020508, -0.81152344, 0.57421875, 0.23278809, -0.94384766, 1.546875, 0.58203125, 1.3457031, -2.5878906, -2.0039062, -0.06994629, 0.94433594, -0.1665039, 1.2685547, 2.6914062, 0.3881836, -1.1865234, 1.8847656, 1.0996094, -3.0429688, -0.45507812, 2.2148438, 0.9794922, 0.015098572, 0.9506836, 1.1669922, -1.0292969, 1.5068359, -1.5351562, 0.55126953, -0.0024299622, -1.203125, 0.18432617, -1.0917969, -0.6015625, 0.2758789, -3.0585938, 1.5058594, 0.91259766, 0.23303223, 2.2304688, 0.12188721, -1.0947266, -0.27661133, 0.6088867, 1.1582031, 1.6796875, 0.64501953, -0.6777344, -0.44848633, -2.0664062, -3.5214844, -1.5273438, -1.3183594, -0.86328125, -3.0976562, 1.2753906, 1.4433594, -1.2890625, 2.6171875, 1.0371094, 1.5068359, 0.6772461, 0.8100586, -0.50341797, 0.6796875, 1.5722656, -1.5537109, 0.2944336, -0.73535156, 0.6958008, 0.46166992, -0.7475586, -0.44213867, -0.32714844, -0.64746094, -0.8569336, -0.81884766, 1.7128906, 1.7246094, 0.6723633, 0.4243164, -0.15063477, 0.8173828, -0.28564453, 0.26879883, 0.70166016, 0.29541016, -0.75683594, 3.6621094, -1.4609375, -2.1523438, 0.8251953, -1.6972656, 0.7915039, 1.8847656, -1.4658203, 0.56152344, -1.6689453, -2.2226562, -2.4570312, -2.8535156, -1.6328125, 0.9663086, -0.33520508, -0.53808594, -1.5996094, 4.5976562, -0.42236328, 2.78125, 0.84277344, 0.68652344, -1.2099609, -0.9296875, -1.2460938, -0.35888672, 1.5585938, -1.9423828, 1.1455078, 1.2060547, -1.4736328, -1.3183594, 0.5708008, 1.7265625, 2.1816406, -0.0026130676, 3.9003906, 3.1757812, 3.2871094, 3.9316406, -0.06121826, 1.59375, 1.5410156, -1.5976562, 0.91308594, 2.21875, 0.625, -0.23339844, -2.4023438, 1.8623047, 0.25561523, -1.0332031, 1.2822266, -0.44384766, -0.072387695, -1.9941406, 3.1640625, 0.55371094, 0.9790039, 0.4296875, 1.1269531, -0.9399414, -1.3564453, -2.2695312, 0.87890625, 2.1992188, 0.5839844, 1.5537109, -0.88134766, 1.3886719, -0.47387695, -3.7910156, 0.29736328, 3.0898438, 0.4243164, -0.6982422, 2.9765625, 2.1992188, 2.671875, 0.9326172, -0.1616211, 0.88378906, -0.038146973, 4.0234375, 0.41015625, -2.4042969, -0.053222656, 1.1679688, -1.6767578, -1.2890625, -1.5351562, 0.22033691, -0.58691406, -0.24572754, 2.46875, 0.9091797, 3.0332031, 0.82714844, -1.5078125, 3.4941406, 0.7504883, 2.4003906, 0.40185547, 0.34326172, -1.0449219, -2.21875, -1.9560547, 0.23706055, 0.64697266, 1.1083984, 1.0947266, -1.4121094, 1.6982422, 0.34326172, 0.78466797, 1.4775391, 1.6621094, -1.0244141, -0.11456299, -0.20629883, 2.1035156, -1.5371094, -1.9658203, -0.68652344, -0.5097656, 0.37768555, 1.8935547, 2.4101562, -0.6508789, -2.6210938, -1.3994141, -0.35180664, -0.6669922, -0.9741211, -2.4511719, -0.54003906, -0.7348633, -0.007457733, 0.61621094, -0.01171875, 2.2304688, 2.8769531, -0.16625977, -0.80078125, -1.71875, 2.7246094, 1.0566406, -1.1826172, -0.29663086, -0.47729492, 0.75878906, 0.9951172, 0.24475098, 0.3947754, 1.4355469, -0.2836914, -0.23803711, 1.4433594, 0.7319336, 0.9638672, 0.5488281, -0.12072754, -1.6933594, -1.828125, 0.7158203, -0.39892578, 0.84472656, 2.1757812, -0.053466797, -0.8618164, -1.9824219, -0.05795288, -0.41479492, -1.2060547, -2.8027344, 1.0947266, 2.3632812, 1.7089844, -1.7832031, 0.2824707, -2.171875, 2.9824219, -1.0332031, 1.9394531, -0.45263672, -3.234375, 1.6777344, -1.0175781, 1.8466797, -0.17272949, -3.7402344, -0.29077148, -0.39697266, 1.0800781, -0.8515625, 1.2441406, 0.20544434, 0.11004639, -1.1640625, 2.0683594, 2.9941406, 0.33276367, 0.7373047, 2.25, 0.40234375, -2.5878906, 1.4580078, -1.0117188, 2.125, -0.23962402, -0.3449707, -1.3310547, 0.20019531, -0.56347656, -0.6484375, -0.45751953]}, "B06ZY5W3R7": {"id": "B06ZY5W3R7", "original": "Brand: Unknown\nName: Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator\nDescription: \nFeatures: \n", "embedding": [1.3720703, -0.6635742, 0.83691406, 0.41308594, -0.30908203, 0.039398193, 1.9658203, -1.4257812, 0.95654297, -0.34692383, 1.9921875, 0.6845703, 0.30639648, -1.7070312, 2.6132812, 1.1259766, 0.8959961, 0.59277344, 0.8496094, -0.42089844, -0.15270996, 0.87841797, 2.2011719, -1.3710938, 1.9658203, 0.38476562, 6.0429688, -2.9882812, -1.2158203, 0.39404297, 1.5947266, 0.13378906, -1.6230469, 2.9140625, -0.93603516, 1.0214844, -1.6357422, -0.31958008, -3.1757812, 1.0869141, -1.1962891, -0.5102539, 1.3291016, -0.28027344, -2.9628906, -2.2929688, 1.9179688, -1.4863281, -0.16052246, 1.1416016, 0.62890625, 1.2246094, 0.5722656, 0.5683594, -0.45043945, 0.70751953, -0.7573242, -0.36401367, 0.61865234, 2.9824219, 1.2050781, -0.044311523, -2.1191406, -0.34375, -0.8364258, 1.9863281, -0.19665527, -0.109558105, 0.40478516, 1.125, 1.5664062, -1.0966797, 0.60302734, -1.9931641, -0.5654297, 1.9521484, -3.3164062, -0.64746094, 0.8173828, -1.2099609, -0.47558594, 0.6308594, 0.38012695, -1.3496094, -0.3635254, -0.13305664, -0.98583984, -0.1616211, 1.2978516, 0.78759766, -2.6386719, -0.14929199, -0.6020508, -5.1992188, 0.8276367, 1.4990234, -0.84521484, 0.96191406, 1.9980469, 1.1376953, 0.90185547, 1.7490234, 1.3212891, 0.98095703, -2.7773438, 1.7060547, 2.1542969, 1.6054688, -2.9003906, -1.1640625, -1.1796875, -1.7734375, 1.0244141, -0.41748047, -0.08569336, 0.6772461, -0.6645508, 0.59765625, 2.8554688, -1.2363281, 2.9785156, -0.52001953, 0.6035156, 0.6977539, 0.46972656, 0.43603516, -0.6064453, 1.1367188, 3.5898438, -0.5283203, 1.9306641, 1.3427734, 3.8398438, 0.70410156, 1.4794922, -2.5136719, -2.0742188, -2.7988281, -1.9140625, -1.6162109, -1.2949219, -0.035858154, 2.3261719, -0.88134766, -2.8105469, -0.32348633, -1.7871094, 1.5527344, 1.1025391, -1.3457031, 1.5859375, -1.8505859, 0.3305664, -0.5253906, 1.3505859, 0.070251465, -1.8056641, -2.4746094, 1.2197266, 0.88427734, 0.77490234, -0.47802734, -1.8193359, 0.87939453, -2.9101562, -0.8071289, 0.8925781, -0.6567383, -0.5620117, 1.7275391, -0.7285156, -1.2412109, -0.16369629, -0.34033203, -0.06210327, 0.7504883, 1.1005859, 1.5273438, 2.4296875, 0.6928711, -2.6484375, 0.26416016, -2.0175781, -1.4306641, 3.0039062, -0.94384766, -0.765625, -1.8642578, 0.9550781, -1.5292969, -1.9960938, 0.72558594, -1.7587891, 0.3479004, -0.44702148, -2.9257812, -3.6933594, -0.15844727, 0.7114258, 1.8476562, -0.65771484, 0.029342651, -0.609375, 0.8779297, -0.73779297, -1.7949219, 0.94140625, -0.30322266, -0.62402344, 0.92578125, 1.4912109, -0.58984375, 1.6621094, -0.80322266, 1.1542969, -4.375, 0.20874023, 0.4892578, 0.01625061, 1.1425781, 0.74316406, 1.5976562, 1.4619141, -0.1776123, 2.5371094, -0.15515137, 0.18359375, -0.43725586, -1.9208984, -0.6508789, 1.8027344, 1.5244141, -1.9121094, -0.35351562, -0.51171875, 1.6767578, 0.83154297, -0.63916016, 1.0371094, 0.02078247, 0.89404297, -1.0566406, 1.6640625, -0.38110352, 0.89453125, 1.2802734, -1.4365234, 1.7558594, 3.5957031, 1.0410156, 0.5258789, -0.06585693, -2.4804688, 0.022232056, -1.5537109, 1.0332031, 1.4052734, -0.51416016, 1.4296875, -0.4633789, 3.3925781, 1.0830078, 0.30151367, 0.5654297, 0.27246094, 0.51660156, 2.3007812, -0.22216797, -0.80615234, -0.85595703, -0.44628906, 1.6220703, 1.9560547, -0.29589844, 1.9853516, 1.6484375, -0.52001953, 2.15625, -0.80126953, 0.89160156, 0.3852539, -1.3613281, 0.32177734, -2.1132812, 1.8642578, 1.4570312, -0.9379883, 0.09881592, -4.1328125, 0.39331055, 3.4628906, -3.3769531, -1.4365234, 3.3691406, 1.5791016, 0.15026855, 3.5664062, -0.50878906, -1.6425781, 0.33520508, 1.6962891, 1.9609375, -0.8334961, -0.19262695, -0.19262695, -1.7587891, -0.3557129, -0.25097656, -0.88671875, 1.7617188, -0.5239258, -1.8222656, -2.5859375, 1.4375, 0.55078125, -0.7763672, 1.7099609, -2.9980469, 0.9135742, 0.08123779, -0.89941406, 0.50341797, 0.09442139, 1.2275391, 0.6489258, 0.64404297, -0.8959961, -0.20129395, 1.5537109, -0.14379883, -1.0996094, -0.28100586, 0.72216797, -1.0097656, -0.17443848, 1.8046875, -1.9912109, -2.1757812, 1.5859375, 0.91552734, -1.0546875, -0.46728516, -0.0059928894, 0.7089844, 1.4609375, 1.0878906, -0.71240234, 0.35473633, -0.24438477, -0.82421875, 0.09765625, 1.4902344, -0.18859863, -3.484375, -1.7021484, 1.3164062, -0.8310547, -0.3017578, -1.7519531, 0.050048828, -0.49169922, -0.47924805, 1.0058594, -1.875, -0.76171875, -2.3339844, 2.6484375, -2.8320312, 1.0791016, -0.076660156, 2.0996094, -0.5449219, 1.3378906, -1.625, -0.85058594, 0.09643555, -0.34960938, 4.3398438, 0.33251953, 0.07678223, 0.5878906, 0.79345703, -0.038726807, -2.5371094, -2.2539062, 1.4892578, 0.8652344, -0.89990234, 0.5654297, -1.9560547, -0.046875, -0.23352051, -0.45361328, -0.50683594, -1.3632812, -0.7133789, 0.4609375, 0.3010254, 1.2128906, -0.23791504, 1.5878906, -0.7573242, -1.0820312, 0.4375, 0.13623047, 0.50634766, 0.27661133, -0.5722656, 1.5214844, 0.07092285, -0.103027344, 0.61035156, 0.12322998, 0.90527344, -0.6791992, -2.265625, 0.08868408, 2.4179688, 0.0074691772, 1.9912109, -0.15490723, 0.5029297, -0.7182617, 0.7729492, 2.9960938, 1.8994141, 4.125, -0.2088623, 2.2792969, 0.16723633, -0.36914062, -2.9121094, -0.2397461, -1.2207031, 3.0800781, -2.8359375, -1.6416016, 1.1015625, -1.1875, -2.4296875, 0.7182617, -0.61328125, 0.23852539, 4.515625, 0.80615234, -0.89941406, 0.3173828, 1.9824219, -0.6748047, -0.6425781, -0.9941406, -0.20422363, 0.28637695, 0.20800781, 0.98291016, 0.0335083, 1.5976562, 0.24621582, -1.0556641, -0.19348145, 3.0566406, -1.9091797, 1.5761719, -0.073791504, 0.11456299, -0.6435547, -0.7817383, -0.69384766, 0.18640137, -0.03289795, 1.34375, -0.6098633, -1.9912109, 0.45532227, 0.1015625, 0.8383789, -0.49243164, 0.31884766, -0.3803711, 0.19848633, 0.7314453, 1.1943359, 0.064819336, -0.31469727, 0.27490234, -1.4267578, -0.45874023, -1.65625, 0.9116211, -0.061157227, 0.6196289, -0.46166992, 1.40625, -1.0996094, -1.6015625, -1.0136719, -1.6044922, 0.33447266, 0.62646484, 1.5683594, 0.54833984, -0.5048828, -0.2770996, 0.77441406, 2.3554688, -0.91308594, -0.60546875, -1.0996094, 1.8154297, 0.7602539, -0.74853516, 2.953125, 1.6386719, -3.2363281, -1.1533203, -3.0976562, -1.0791016, 1.0175781, -0.32666016, 0.99316406, 1.3652344, -0.9013672, 2.0292969, -0.35205078, 2.9765625, -3.0859375, 0.70996094, 2.890625, -1.5302734, -0.6933594, -1.8554688, -3.8359375, 0.60546875, -0.9423828, -0.14245605, -0.34594727, 0.33935547, 0.64160156, 1.2880859, 0.3232422, -0.66015625, -1.2744141, 0.05718994, 2.3007812, -2.2070312, 0.03677368, 0.36694336, -0.12286377, -2.4921875, -1.71875, -1.4453125, -1.3125, -1.8916016, -0.6611328, -2.1074219, 0.27539062, -0.6982422, 1.0478516, 0.44848633, -1.0371094, 1.4648438, 1.2421875, -1.3017578, -3.3378906, 2.515625, 0.94433594, -0.4423828, -0.18103027, 3.1132812, 1.1982422, -0.82373047, -0.9746094, -0.9394531, 1.6845703, 0.36914062, -0.8857422, -2.4609375, -3.2734375, -1.8691406, -0.3479004, 0.014923096, 0.37548828, -0.85009766, 0.265625, 2.0507812, 0.8339844, 1.0039062, 0.71728516, -0.26831055, 3.2988281, -0.85498047, -0.68652344, -0.47705078, -2.3183594, 2.1660156, -1.8408203, 0.05227661, -0.46972656, -1.9755859, -0.5722656, -2.8515625, -1.3710938, 1.4384766, 0.99560547, 0.45043945, -0.74072266, 0.2536621, -0.6435547, -0.49829102, 0.8183594, 1.8652344, -0.5498047, -1.0664062, -0.20324707, 0.54296875, 4.3554688, -0.9848633, -1.3154297, 0.28442383, -2.8984375, -0.7216797, -0.04763794, 0.24377441, -1.3691406, -1.7988281, 0.35083008, 0.2998047, 1.6308594, -0.95410156, 1.8662109, 1.9277344, 0.45581055, -1.5185547, 1.6699219, 1.0976562, 1.4082031, 2.1699219, -0.47729492, 0.23071289, -0.02619934, 1.1533203, 0.9628906, -0.40283203, -1.7675781, -2.0507812, 0.38012695, 0.31420898, -0.066101074, -0.7573242, 0.8613281, 0.10424805, 1.5371094, 1.0283203, 2.8964844, -0.8647461, 3.5996094, -1.0683594, 0.35229492, -1.0615234, -1.5039062, -1.3994141, 2.4824219, -1.7841797, -3.4511719, -0.35986328, 1.4365234, -0.69189453, 1.4902344, 1.1025391, 0.6152344, -2.0839844, -3.1308594, -1.1162109, 0.5864258, 0.2770996, 2.0429688, -0.54003906, 2.0136719, 0.44580078, 1.0517578, 1.2998047, -1.2871094, 0.08166504, 0.21398926, -1.1074219, -0.93896484, -1.3818359, 0.16699219, -2.4628906, -1.8808594, 0.61083984, 0.6875, 0.54248047, -0.20153809, -0.6723633, -1.1669922, -2.8261719, -0.61035156, 1.7617188, -1.0585938, -0.08843994, 2.2363281, 0.7866211, 1.1669922, -0.32177734, 0.53125, -2.1933594, 2.328125, 1.46875, 1.1552734, -1.0839844, 1.3583984, -2.4550781, -3.640625, -1.3720703, -0.30688477, 0.009811401, -0.3623047, -1.8564453, -2.2675781, 3.3125, -2.1054688, 0.6020508, -2.7285156, 1.0195312, -1.2460938, 0.37158203, 1.8789062, -0.052764893, -0.0748291, 2.2363281, -1.3769531, -1.4189453, -1.1621094, -1.0029297, -4.7460938, 1.0097656, -0.3305664, 0.26367188, 0.44555664, -0.94628906, 0.42407227, 1.3310547, 2.9121094, -1.1279297, -0.056549072, -1.1679688, -1.4394531, -0.15185547, -1.6083984, 0.47802734, 1.6972656, 0.06304932, 2.0917969, 2.5214844, 2.1855469, -0.42529297, 0.3395996, 0.050109863, -1.6787109, 0.44726562, -0.6020508, 1.1210938, 0.2783203, 0.031341553, 1.2900391, -1.6220703, -1.2460938, -1.7773438, -2.5761719, 0.46972656, -0.9736328, 0.67333984, -0.33862305, 2.078125, 2.0898438, -0.5644531, 1.3330078, 1.9003906, 0.6635742, 0.48461914, 1.1591797, -1.6972656, 3.1796875, 1.6640625, -1.9384766, -1.4511719, -1.9570312, -0.1550293, 2.5625, 0.5180664, -0.13903809, -0.41918945, -1.5849609, 1.6845703, -0.5126953, 0.44555664, 0.52441406, 0.33813477, 0.9892578, 0.52490234, 0.42382812, -0.09197998, -1.4785156, 0.09906006, 0.2890625, -1.5908203, 0.4494629, 2.3417969, -1.3408203, 0.4404297, -1.5527344, 0.99560547, -0.6982422, -1.9902344, 1.0693359, -2.7832031, -0.3696289, -0.65625, 0.47070312, -3.5996094, 3.0449219, 1.0068359, -0.42626953, 0.66064453, 0.63720703, -1.1787109, -0.6660156, 1.2919922, -0.36157227, -0.46875, 0.39135742, 1.4091797, -0.53564453, 0.7553711, -3.3828125, 3.1523438, 0.25878906, 3.6621094, 0.84277344, 0.55029297, -0.41137695, 2.6445312, 4.546875, 0.32958984, 2.125, 0.22216797, 1.2099609, 1.2148438, 2.0976562, 1.6025391, -1.3691406, 1.2294922, 1.7441406, 0.038726807, 0.3088379, -1.9355469, -1.2509766, 0.20227051, 1.5810547, 1.0302734, -0.6020508, -0.7363281, -0.5722656, -0.7871094, -0.1373291, 2.3789062, -1.5800781, 1.4755859, -1.0322266, 0.67285156, 1.7119141, -1.1435547, 1.1533203, -0.47387695, 0.7133789, 0.34179688, -0.20666504, 1.6025391, -0.18884277, -1.84375, -0.20959473, -1.3193359, 0.7011719, -1.5498047, 1.0371094, -0.78027344, 0.6010742, 1.3867188, -0.67089844, -0.8417969, 1.4033203, -2.4492188, 0.78027344, -0.034606934, 2.3242188, 1.6904297, -1.7480469, 2.4726562, 1.2939453, -0.5566406, -5.28125, 2.6210938, 0.10583496, 0.5595703, -0.34960938, -2.7851562, 1.7607422, -1.2900391, -0.8364258, -1.8007812, 0.6660156, -0.06402588, -1.9785156, 1.4384766, -0.1295166, -2.6230469, 1.7626953, -0.07080078, 1.0615234, 0.89208984, -0.07312012, 1.4560547, 0.4182129, 3.4042969, 0.6113281, -1.0058594, -1.7880859, 2.5976562, 1.2646484, -1.8056641, -0.5541992, 3.140625, 0.5336914, 0.46240234, 1.3886719, -2.4335938, 2.8417969, 1.6269531, -1.7753906, 0.52685547, -2.8925781, 0.90625, 1.0449219, -0.57373047, -0.67089844, -1.4941406, 0.046081543, 1.8662109, -2.4550781, -0.8779297, 2.4746094, -1.0185547, 0.62402344, -2.2070312, -1.4648438, -4.3632812, 1.0878906, 0.20617676, 0.14733887, -1.0478516, -0.3947754, 1.8515625, -0.55859375, -1.2558594, -0.79345703, -0.48461914, -0.35668945, -0.80615234, 1.3984375, -0.66748047, -1, 0.024719238, -2.234375, 1.0185547, 1.5390625, -0.45532227, 1.4970703, -1.7539062, 0.36669922, -0.15344238, -1.5322266, -0.8730469, 0.31884766, 0.3408203, -0.39770508, 0.36157227, -2.8300781, -1.6953125, -0.828125, -1.8095703, 2.09375, 0.20019531, -0.8300781, -0.35473633, 1.0097656, 3.8144531, -1.8466797, -0.9824219, -0.094177246, -2.1679688, 0.23400879, -0.074401855, -0.6723633, 0.14611816, -0.15771484, 1.1269531, 2.5859375, 0.45117188, 0.07312012, -0.44702148, 0.87597656, -0.80908203, 0.18859863, -0.14208984, -1.3544922, -2.1230469, -0.83447266, 0.64404297, 3.796875, 1.0634766, 1.1181641, -2.1152344, -0.7128906]}, "B088P94WNH": {"id": "B088P94WNH", "original": "Brand: Mr. Heater\nName: Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack)\nDescription: Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You'll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you'll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.\nFeatures: Compact but powerful with 3800 BTU of heat\nIdeal for decks, patios, campsites, fishing, hunting, and emergency situations\nHeats any space of up to 100 square feet\nUses 1 pound disposable propane tank as fuel source\n45 degree heating angle helps direct radiant heat where you need it most\n", "embedding": [-0.06652832, 1.6914062, 3.2851562, 1.9511719, -1.8310547, 2.1542969, 1.7089844, -0.9501953, 0.86376953, 2.8789062, 2.1113281, 0.4963379, 1.3837891, -1.5566406, 0.1743164, -1.9814453, 1.6982422, 0.27172852, 1.5341797, -0.56152344, -0.14013672, -1.6630859, 1.3398438, -1.5839844, -0.6484375, 0.9633789, 2.5976562, -1.7353516, -1.6611328, 0.53027344, 0.98876953, 0.24963379, 0.02961731, 1.2988281, -0.9091797, -1.1494141, -3.515625, 0.11212158, -2.515625, -2.2050781, -2.2890625, -1.3867188, 0.36645508, -0.40478516, -1.9921875, -0.22998047, 1.5810547, 0.19104004, 1.5595703, 0.49169922, -0.21264648, -1.0400391, -1.6982422, 1.0185547, -2.8789062, -0.22485352, -2.1699219, -4.1953125, 2, 0.28833008, 0.98828125, -1.5146484, -0.89404297, 1.4785156, 1.3564453, 1.0351562, -1.9716797, 0.7524414, -0.96972656, 1.3515625, 3.0664062, 0.6826172, -1.9697266, 0.023864746, 0.55810547, 0.5239258, -2.2910156, 0.62109375, 5.5429688, 1.5771484, -1.1894531, 0.90527344, -0.79003906, 1.6005859, -0.7397461, -0.23461914, -0.86865234, 1.2636719, 3.0644531, 3.0019531, -0.57373047, 1.6728516, -1.2451172, -3.0371094, 1.4101562, -3.2382812, 1.2089844, 1.0966797, 1.2773438, 2.2792969, 0.017242432, -0.07849121, 0.3642578, -0.82421875, -0.64697266, -1.0039062, 0.18078613, 1.9814453, -0.42529297, 3.5878906, -2.7636719, 2.3808594, 3.5976562, -0.43359375, -3.4296875, -0.9145508, -0.6435547, 2.6113281, 6.4375, 2.0078125, 3.7402344, -1.1816406, 2.9335938, -2.4648438, 0.93847656, 0.18225098, -0.7192383, 0.016738892, 1.1357422, -1.0605469, 0.6123047, 0.65283203, 0.8364258, 0.13623047, 0.5175781, -2.7539062, -2.1035156, -1.7148438, -3.2792969, -3.15625, -0.17041016, 0.67626953, 1.9970703, 1.1230469, -2.3710938, -2.2929688, -0.67529297, 1.2451172, -0.0047454834, -1.5097656, 1.2402344, -2.2617188, -2.5605469, 0.72558594, -0.28979492, 3.1367188, 0.07293701, 1.2080078, 4.0859375, 2.3183594, 1.0683594, -0.71533203, -0.10681152, 0.73583984, -0.26000977, -3.2871094, 1.8691406, 0.1430664, 0.011329651, 2.3964844, 1.6347656, -2.6875, 0.1977539, -2.1230469, 0.25976562, -2.4042969, 0.38720703, 1.9257812, 1.0644531, -2.0546875, -4.6054688, 0.35986328, 1.3339844, 1.0917969, 0.9946289, -1.0390625, -2.9960938, 0.38745117, 0.09967041, -0.7158203, 0.11193848, 0.21899414, -0.04562378, 0.11859131, -0.15783691, -1.6162109, -1.2382812, -2.2636719, 3.4707031, 2.1777344, -1.5878906, -0.6479492, -0.3178711, -1.7900391, -2.3378906, -2.5898438, -0.16333008, -1.8017578, 0.8823242, 1.625, -1.4980469, 0.8066406, 2.8847656, 0.6308594, 0.6176758, -0.099365234, 1.0068359, -0.29614258, 2.2226562, 3.3417969, -0.48168945, 0.6616211, 0.52734375, 1.7060547, -1.5498047, 2.3925781, 0.6821289, -2.2734375, -0.10900879, -1.6181641, 2.2421875, 0.9428711, 1.6757812, -0.3737793, -1.8847656, 2.5957031, 1.2353516, 1.1855469, 0.86376953, -0.64160156, -0.6738281, -1.7646484, -0.43041992, -1.1142578, -0.8457031, 2.6523438, 0.0007171631, 0.9082031, 0.34423828, -0.33374023, 0.5776367, -1.5136719, -0.58251953, -2.3574219, -2.7636719, -0.25854492, 0.6098633, 0.55029297, -0.88623047, -1.2412109, 1.6660156, 1.4541016, 0.103149414, 1.8847656, -0.049468994, -0.62060547, 3.1777344, 2.4316406, -1.7021484, 0.5996094, 0.73779297, 3.4550781, 0.67578125, 1.9697266, 0.53222656, 0.8725586, -0.40283203, 3.3769531, -3.3261719, 0.5722656, 1.2001953, -0.38891602, -1.4228516, -1.4072266, -1.0517578, 0.6533203, 1.0322266, 0.62597656, 0.08660889, 1.1142578, 3.5917969, 0.098083496, -1.03125, 0.18676758, -1.2421875, 2.1425781, 2.0292969, -0.99902344, 1.59375, -0.47558594, 3.1523438, -0.27026367, -3.5507812, 0.7758789, -1.1953125, -2.4355469, 0.17980957, -1.7988281, 1.3730469, -0.38671875, 0.92578125, -1.0615234, -0.9707031, -1.9951172, -3.7851562, -0.8598633, 2.5, -3.6777344, 1.5087891, 1.578125, 0.53027344, -0.7133789, -0.025039673, -1.6474609, -0.07354736, -0.2043457, -0.28759766, 0.80126953, -0.9658203, -0.77734375, -0.2524414, -1.3388672, 2.453125, -2.1542969, -2.8085938, -0.47973633, -0.3232422, -2.5449219, 0.54541016, -1.5332031, -1.4667969, 1.6601562, -1.5449219, 1.7705078, 0.74902344, -1.7529297, -0.3359375, 1.3925781, -0.8496094, -1.4199219, -0.113708496, -0.9345703, -2.1425781, -5.8242188, 0.99902344, 1.65625, -1.0136719, -0.26538086, -1.6425781, 1.4794922, -1.9716797, -1.5078125, 1.1230469, 0.4338379, 0.026870728, -1.6396484, 2.0429688, -4.6757812, 1.7197266, -1.4482422, -1.1962891, -1.9130859, -1.7480469, -0.22839355, -1.8798828, 3.8046875, 0.07928467, 3.0039062, 1.3632812, 0.69873047, -0.117004395, 0.23852539, 1.3740234, 0.4272461, -3.2226562, -1.3300781, -1.8779297, -2.3886719, -1.3232422, -2.7539062, 0.45214844, -1.1601562, -1.9873047, 0.0044288635, -1.4570312, 0.060760498, -0.7246094, -1.5253906, 0.062683105, -1.4951172, 0.050201416, 0.07019043, -0.5390625, -2.3945312, 0.4453125, -1.1767578, 0.7602539, -2.6621094, 0.6455078, 0.85058594, 0.19665527, 1.5566406, -1.03125, -0.15258789, 0.5625, -5.0898438, 2.2460938, 3.7539062, 0.7841797, -1.5537109, -0.9345703, -2.046875, -1.0390625, -0.99072266, 1.9941406, -1.4814453, 3.3007812, 0.7373047, -0.7919922, 0.083984375, 2.5390625, -2.3457031, 0.26879883, -0.7475586, 2.2304688, -2.75, -0.62646484, 1.1591797, 2.5664062, -1.6787109, 0.8251953, 1.9794922, -1.03125, 0.5410156, 0.24768066, -0.4975586, 1.3164062, 2.0957031, -0.796875, 2.7773438, -0.52490234, -1.1142578, -2.1933594, 0.6982422, 1.2832031, 3.0820312, -3.0820312, 0.47583008, 0.16870117, 2.5390625, -1.7246094, -2.9589844, 1.0478516, 0.5317383, 0.39941406, 0.84814453, 1.7021484, -0.13122559, -0.20690918, -1.1455078, 2.2890625, 2.2832031, 0.08306885, -0.8095703, 2.3066406, 1.0947266, -2.9492188, -0.73876953, 0.6713867, -0.07397461, -1.1982422, 0.6166992, 0.18200684, 0.5961914, 0.66259766, -3.0820312, -2.4121094, -0.9526367, -0.5107422, -1.7099609, -1.7470703, 1.3144531, 1.1845703, -0.26416016, -0.01322937, -3.6113281, -0.86328125, -1.6298828, 2.6835938, -0.93603516, -1.296875, -1.1787109, 0.3400879, 0.9399414, 1.2568359, -1.1894531, -2.6035156, -1.3046875, -2.2421875, 0.64990234, -0.6279297, 2.3847656, 0.9716797, -2.4199219, -0.32910156, -2.8691406, -0.68652344, 1.4589844, -1.5888672, -0.56152344, 3.6035156, -0.36279297, 2.2285156, -0.4802246, 3.3203125, -1.7685547, 1.2529297, 2.4960938, -0.6323242, 2.0664062, -0.6484375, -5.2929688, 1.546875, -1.3603516, 0.8510742, 2.6777344, -1.9003906, 0.4375, -0.60009766, 0.48095703, -0.24072266, -3.6953125, -2.1582031, 0.7944336, -3.3261719, 1.5292969, 2.1640625, -1.0546875, -2.7070312, -1.2900391, -0.32226562, -0.46362305, 1.1669922, 0.8095703, -0.2722168, 1.9033203, -1.0507812, 1.4150391, -1.078125, 1.1005859, -0.39672852, 0.050201416, -0.76171875, -1.7060547, 1.7900391, -0.10192871, 0.16918945, 0.13671875, 4.421875, 0.29956055, -2.6796875, 0.6303711, 2.4101562, 1.4521484, -0.21813965, -1.9111328, 0.6357422, -1.3740234, -1.5507812, 0.4909668, -0.59277344, -0.5131836, -1.5068359, 0.9448242, 1.5185547, 1.0390625, 2.3378906, 1.5498047, -1.5126953, 1.2021484, -1.1884766, -1.328125, -1.7353516, 0.26953125, -3.0234375, -0.45532227, 1.3203125, -0.8276367, 0.79052734, -1.3378906, 0.07550049, -0.07672119, 1.3769531, 2.2089844, 2.8632812, 1.6298828, 0.11627197, -0.5991211, 1.5927734, -2.1699219, 0.4152832, -0.92333984, 0.68896484, 1.4101562, 0.77783203, 2.4550781, -1.6630859, 1.7265625, 0.38378906, -1.7626953, 2.1582031, -0.03302002, 1.3505859, -0.6826172, -0.9746094, 1.5, -0.2043457, 3.7402344, -1.6328125, -0.0084991455, 0.14709473, 0.8203125, -0.99609375, -0.47143555, 0.6484375, -0.7636719, 1.1943359, 0.06756592, 0.55908203, -0.4597168, 0.59765625, 2.5703125, 2.1015625, -0.44702148, -2.0332031, -1.2949219, 1.1875, -0.40161133, -0.40063477, 2.4667969, -2.2929688, 0.6142578, 1.9414062, 1.5273438, 1.9716797, 0.10998535, 1.8828125, -1.7675781, 0.7919922, 1.9638672, -0.2932129, 3.1777344, 1.1328125, -2.2285156, -0.28125, 3.3789062, 0.6308594, 2.3457031, -2.4199219, -1.7246094, -0.30249023, -1.9746094, -0.54589844, -2.90625, 0.6088867, -1.4677734, -1.4082031, -0.3359375, -0.5258789, 3.6523438, 2.3867188, 0.10662842, 0.35742188, 1.7626953, 0.14868164, -0.31762695, 0.5332031, 0.43554688, -0.4501953, -0.25146484, -0.19091797, 0.76660156, 1.4072266, 1.0224609, 0.52197266, -3.5722656, -0.96777344, -2.3125, 2.078125, -2.0332031, -1.2158203, 1.5634766, 2.1933594, 0.49365234, -0.6513672, -3.0410156, -1.6484375, 2.0761719, -1.4121094, -0.08874512, -1.2412109, -1.6865234, -3.515625, -3.3789062, 0.12487793, 2.0996094, -1.1806641, 1.0947266, -0.87109375, -2.5371094, 0.12890625, 0.5722656, -0.017120361, -0.7392578, 2.2714844, -1.8701172, 1.140625, 1.234375, -1.2333984, 0.09075928, 1.8974609, -1.1025391, 0.7910156, -0.76220703, -1.8496094, -2.2832031, 0.82910156, -0.5288086, -1.6894531, 1.7753906, -0.40356445, 0.6904297, 3.5507812, 1.2558594, -2.0722656, 0.8300781, -1.1845703, 0.14526367, 1.734375, -2.6816406, 3.0878906, 0.94628906, -0.8276367, -1.5947266, 1.5478516, 3.6484375, 1.0966797, -0.14196777, 0.35424805, -0.22314453, 0.99853516, 1.9208984, 0.11254883, -2.2421875, 0.9345703, 0.94140625, 1.1181641, 0.54052734, -3.8046875, -0.60546875, -1.1191406, -1.7861328, -0.5966797, 0.06201172, 0.87353516, 0.3515625, -1.7119141, 2.1621094, 0.16711426, 2.3515625, -1.7646484, -0.3227539, 0.31396484, 1.3945312, -0.44580078, -0.5488281, -2.7597656, -2.7109375, -0.8276367, 0.82421875, -0.15209961, -0.6582031, 0.6635742, -2.4492188, 0.3125, -0.92626953, 2.4160156, 2.0957031, 1.3769531, -1.7978516, 0.8276367, 1.0019531, -0.7583008, -0.66845703, -0.2705078, 2.2714844, -0.57373047, 3.1894531, 1.6552734, -1.3388672, -1.6601562, -0.009651184, 2.2050781, -0.1619873, -2.1542969, 2.7382812, -4.1523438, -0.5678711, -0.66845703, -0.22607422, -2.1425781, 0.68603516, 1.0605469, -0.73291016, 0.8354492, 2.4785156, 0.101135254, -1.4482422, 1.1914062, -0.23022461, -0.7011719, 0.5751953, -0.5205078, -1.1669922, 2.1210938, 0.7133789, 3.9082031, 2.1132812, 0.3876953, 0.11529541, 2.1523438, 1.1425781, -0.32006836, 3.3964844, 1.8134766, 1.5195312, 0.20959473, 1.0166016, 1.7314453, -0.06311035, 2.8378906, -2.1699219, 0.34448242, 0.89404297, 0.73779297, -0.70947266, -0.64501953, -0.5883789, -0.89160156, -1.0761719, -2.0214844, 0.06286621, 1.0771484, -0.9633789, 0.80859375, -0.34057617, 1.0380859, -2.7011719, 2.4628906, 1.5625, 1.109375, -1.0126953, 1.1289062, 0.62890625, -0.75927734, 1.1552734, 0.94384766, 0.9746094, 1.8134766, -1.2646484, 2.1757812, 1.5410156, -1.2998047, 0.2788086, 4.1015625, 1.0791016, 1.6269531, -0.011299133, 0.6201172, -1.109375, -1.9003906, -0.9760742, 0.7416992, -2.3671875, -1.0078125, -0.30371094, 4.2148438, -0.8725586, 0.17944336, 0.14819336, -1.3017578, -2.3203125, 0.8378906, 0.828125, -0.40673828, -1.171875, -1.3876953, 3.7148438, -1.8828125, 0.8022461, -0.12322998, 1.3896484, 0.3161621, 0.5957031, -1.9003906, 2.1699219, 0.18811035, 3, -1.015625, -0.66796875, 0.4963379, 0.0814209, -0.21081543, -0.59765625, -0.16003418, -1.6054688, 1.4853516, -1.2509766, 0.22790527, 1.6474609, -0.34838867, 0.16345215, 0.94921875, 0.09411621, -0.28637695, 2.0605469, -1.2353516, 0.7392578, 0.17614746, -0.0057525635, 0.030303955, -0.66552734, -1.0507812, -1.0419922, -1.0761719, -0.41088867, 1.1572266, 0.30639648, 1.0878906, -3.1132812, 1.3076172, 2.9980469, 0.26171875, 0.33251953, -0.5019531, -2.953125, -0.35864258, -1.1630859, -2.2480469, -0.7138672, 0.6123047, -0.82421875, -0.98876953, 0.97802734, 0.81884766, 0.5551758, -3.0214844, -2.4746094, 0.9614258, 0.8491211, -0.45581055, 0.4165039, 0.25439453, -2.1621094, 0.57958984, 1.2382812, 2.0097656, -0.17980957, -0.2241211, -2.015625, -1.78125, -0.15344238, 0.8535156, 3.5039062, 3.0019531, 0.08581543, 1.84375, -2.6523438, -3.1074219, -2.9707031, 0.08392334, -1.0039062, 0.2902832, -0.55126953, 0.84716797, 0.14196777, 0.38745117, 0.45483398, 1.2636719, -0.36401367, -0.4477539, 1.3046875, 2.7792969, -0.021224976, 0.52978516, 1.2285156, -0.7114258, 0.49121094, 1.3183594, -0.77734375, 3.1796875, -1.2949219, 1.9228516, -2.0683594, 0.4675293, -1.4736328, -0.74609375, -0.07281494, 0.23828125, 1.3076172, 0.060577393, -0.28515625, -4.8398438, 0.43310547]}, "B07NPYMSW8": {"id": "B07NPYMSW8", "original": "Brand: Hot Sox\nName: Hot Sox Boys' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth\nDescription: \nFeatures: 60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex\nImported\nPull On closure\nMachine Wash\nThese BBQ food socks are also available in men's and women's socks\n", "embedding": [-0.3552246, 1.1806641, 1.1679688, -0.2902832, -0.9946289, -3.3046875, 2.4609375, -0.035949707, 0.77734375, 0.5444336, 0.2644043, 1.9394531, 1.0537109, -2.6796875, -0.09069824, -2.5957031, 0.6220703, 0.07330322, -0.9472656, 0.67285156, 2.1152344, -0.66064453, 1.8730469, -4.2148438, -2.8339844, 3.5488281, 3.609375, 0.3737793, 0.49316406, -1.1855469, 0.24450684, 0.22180176, 1.6435547, 1.4707031, -2.4199219, -0.5854492, 0.059509277, -0.39892578, -0.99902344, 1.4951172, -0.95751953, -2.8046875, 0.5908203, 5.2617188, -3.3164062, 0.6982422, 1.7763672, 3.2929688, -1.7421875, -0.48388672, -0.20117188, 0.4987793, -2.1679688, 0.85498047, 0.37451172, 3.3261719, 1.1630859, -1.0166016, -1.3203125, -0.22888184, -0.48486328, -2.1796875, -0.42041016, 0.71484375, -2.1640625, 2.7324219, -1.9814453, -1.7412109, -0.092163086, 0.98779297, 0.44702148, 0.38232422, -2.6855469, -0.5258789, 0.3125, 1.6757812, -4.046875, 1.6162109, -0.14807129, -2.3886719, -0.66503906, 1.203125, 0.17163086, -0.37109375, -0.18371582, 0.13952637, -1.1582031, -1.5244141, 0.3959961, 0.7363281, -1.546875, 1.984375, -2.046875, -3.2675781, 0.4033203, 0.11175537, 0.5961914, -0.5258789, 1.2958984, 0.8261719, -0.014755249, -2.8535156, 0.4802246, 0.83984375, 0.73535156, -2.0722656, -0.3708496, -0.68652344, -1.0302734, 0.78808594, -1.9013672, 0.3840332, 3.1308594, 0.93847656, 2.3632812, -1.6923828, 0.3330078, -1.7929688, 0.45458984, -0.89697266, 2.9433594, 0.08843994, 2.2773438, 1.0371094, 0.8964844, -0.63671875, 1.6298828, 1.0849609, 2.078125, -0.1619873, 1.3232422, 0.59472656, -0.027648926, -1.515625, -0.57470703, -2.1621094, -2.1015625, -1.9560547, -1.2138672, 0.43823242, -2.0390625, -2.7890625, 0.18115234, -1.4667969, -2.28125, -1.2949219, -0.2800293, 3.4882812, -1.9052734, -2.2851562, 0.21264648, 1.4501953, -1.4873047, -0.13256836, 1.5380859, 0.04888916, 1.9912109, -0.28198242, 0.56689453, -1.5839844, 2.6855469, -1.1523438, 1.1103516, 0.5810547, -1.0283203, -0.87109375, -2.4980469, -1.7412109, -1.3242188, 1.1894531, 0.70996094, -0.5522461, 2.1425781, -3.4570312, 0.61816406, 0.1829834, -1.9638672, 1.875, 0.6933594, -0.04345703, 1.4257812, -2.7128906, 2.6015625, 3.4394531, 0.9145508, 0.10595703, -0.45654297, 0.32421875, -0.9375, -0.7480469, -0.74072266, -1.6328125, 0.52490234, 2.4199219, 0.4169922, -1.2509766, 0.6972656, -0.29760742, 3.6640625, 1.6191406, 0.72753906, -0.20007324, 2.9980469, 1.3476562, -1.9082031, -2.171875, 0.49804688, 0.48828125, 1.2998047, -0.39624023, 1.6708984, -2.4003906, 0.25219727, 2.9296875, -1.328125, 0.46533203, 2.4980469, -1.1269531, 3.6894531, 2.1484375, -0.30981445, 0.2680664, 0.20788574, -2.0800781, -0.5913086, -0.9121094, 1.3935547, 0.010650635, -0.58691406, -1.0673828, 2.1152344, 2.3320312, -0.008934021, 0.059295654, -0.9003906, 1.9296875, 0.71728516, -0.84277344, -0.7416992, 1.0292969, 2.234375, 2.8828125, -3.9667969, 0.13342285, -1.9052734, -0.3544922, -1.2929688, 1.6611328, -1.9052734, -0.4008789, 0.4309082, 1.3115234, 0.8354492, 0.9609375, 0.20080566, -1.1445312, -0.4638672, 0.5073242, -2.9394531, -1.1875, 1.5957031, 0.6850586, -2.5742188, 1.8583984, 1.4560547, -0.5048828, 3.0351562, -0.09631348, -1.6220703, -1.6064453, 0.6904297, 0.8359375, 0.8725586, -2.296875, -0.21228027, 2.2421875, -0.5541992, 2.25, -0.73583984, -0.8261719, -1.0927734, -0.28076172, 0.4572754, -0.111450195, 1.7177734, -0.10394287, -2.3964844, -1.5244141, -1.4501953, 1.0800781, 2.4980469, 0.42456055, 1.4345703, 2.6484375, -2.1347656, -0.17016602, 1.3408203, 1.1289062, -1.859375, 0.15441895, 0.7319336, 2.0527344, -0.11004639, -0.9633789, -0.90527344, 0.7260742, 1.0361328, -0.7558594, -0.60839844, 1.5341797, 0.043029785, -2.1425781, 1.1083984, 1.2119141, -1.5849609, -0.90625, 0.77490234, 0.1751709, 1.5595703, -0.49267578, 1.7314453, -0.16503906, 2.3085938, -1.6904297, 0.87060547, 3.0214844, -3.6210938, 1.0234375, -1.9179688, -2.1171875, 0.01727295, 0.44140625, -1.5673828, -1.8291016, -0.5053711, -0.44091797, -1.5429688, 0.8598633, 0.7626953, 1.1201172, -0.3935547, 1.3642578, -0.6796875, 0.6274414, -0.30200195, -2.4355469, -1.9970703, -1.5410156, 0.45458984, -1.0214844, 0.54589844, 1.2021484, 0.9145508, -3.5214844, -0.6645508, 0.05593872, -1.8369141, 0.75390625, -4.3671875, -0.7348633, 1.5625, -1.0136719, 0.2866211, 0.83447266, -0.11193848, 0.21606445, -0.68408203, -3.9609375, 1.3671875, 0.61865234, -1.7724609, -2.6914062, -0.021469116, -2.4589844, -1.2431641, 2.0351562, 1.609375, 5.2460938, -0.8046875, 1.5341797, -1.9785156, 1.9082031, -0.79052734, 0.43408203, -0.59277344, -0.5957031, -0.40893555, 0.20446777, -0.26538086, -2.2890625, 1.5595703, -1.0332031, 2.3789062, 0.60546875, 2.765625, 0.23583984, -2.3457031, -0.54003906, 0.25561523, 0.38671875, 0.53027344, -0.24926758, -0.36206055, -0.2541504, -2.8125, -1.3779297, -0.5878906, 0.4482422, 2.7890625, 0.61035156, 1.2802734, -0.5595703, -0.051971436, -0.7705078, 0.97998047, -0.5839844, 3.875, 2.109375, -0.5678711, -2.7226562, -0.9863281, 0.56689453, -0.71191406, 1.0742188, 0.8925781, -0.45166016, 3.375, 2.5839844, -0.6352539, -0.77001953, 2.9902344, -1.2822266, 1.4121094, 3.015625, 0.2980957, 3.71875, -1.609375, -0.2154541, 0.091552734, -1.9453125, -0.04458618, -0.8276367, 3.2714844, 0.34399414, 0.8642578, -0.093566895, -1.4111328, 0.009056091, 3.1894531, -1.0253906, -2.0214844, 0.043823242, 1.890625, -1.828125, 1.0195312, 2.9960938, 1.8642578, 1.0117188, 2.2675781, 0.7416992, 0.5620117, 0.73339844, -0.13623047, 2.6171875, -1.6416016, 2.0390625, 0.9169922, 1.6416016, 1.5517578, 1.3867188, 0.5058594, 0.84765625, -1.5605469, -0.45361328, 2.25, -2.1542969, -2.09375, 0.2401123, -0.99853516, -1.1582031, -1.1679688, 0.029129028, -2.5195312, -2.0585938, 0.21911621, -1.0195312, -2.0839844, -2.0605469, 2.3847656, -2.078125, -0.1262207, -2.0097656, 2.1601562, -0.57373047, -1.4541016, 1.5058594, -0.625, -1.5605469, 1.296875, 2.2109375, 0.5292969, 1.3710938, -0.42041016, -0.38891602, 4.2304688, -0.47485352, -2.6367188, -2.2460938, -1.0410156, 2.8222656, -1.6035156, -0.9902344, 1.0986328, -1.0507812, -0.18859863, -3.2109375, 0.81640625, 2.4335938, -2.2929688, -1.0136719, 3.5722656, -1.4804688, 0.82910156, -0.57373047, 0.8569336, -0.93603516, -0.23913574, 3.2773438, -2.0878906, 0.57910156, 0.87597656, -3.4082031, -2.1347656, 0.29077148, -0.5161133, 3.265625, 2.0390625, 0.6225586, 3.8789062, 1.7773438, -0.6347656, -0.8408203, -0.90527344, -0.9472656, -0.69189453, -0.9848633, -0.59814453, 0.8154297, -0.67626953, -1.6787109, 0.55810547, -2.5976562, 1.140625, -1.0029297, -1.0576172, -0.80322266, -0.7011719, 0.18688965, 0.99902344, -0.5205078, -0.73095703, -0.2824707, 0.015930176, 1.4365234, -0.68652344, 0.9663086, 0.10473633, -2.328125, 3.4765625, 0.06304932, 0.55810547, -3.2558594, 0.022598267, -0.32958984, -1.4033203, -0.13513184, 0.084350586, 0.25048828, 1.4433594, -0.6816406, -1.015625, 0.43188477, 0.6660156, -0.75878906, 0.77001953, 1.1875, 2.6757812, 0.91552734, -1.8554688, 0.6176758, -1.2978516, 0.35473633, 0.6816406, -0.23718262, 0.65185547, 2.609375, 1.9775391, -0.88964844, 1.1787109, 0.9506836, 3.078125, 2.3730469, -1.5898438, -0.55029297, -0.4958496, 2.9765625, -2.5722656, -0.74853516, -1.0634766, -3.5976562, 2.3105469, -0.94140625, -2.4941406, -3.0527344, -0.45532227, 1.5078125, 0.58496094, 0.96484375, -0.45922852, 0.97558594, 0.83935547, -2.1074219, -0.74072266, 0.4892578, 1.0605469, -0.5234375, -2.9511719, 1.1533203, 1.5605469, -1.1953125, 3.6425781, 0.039123535, -0.46191406, 2.28125, 0.96728516, 1.3730469, 1.7558594, 1.0332031, -1.1689453, -0.97021484, 1.0117188, 0.85302734, 2.4121094, 0.18383789, 1.8349609, -0.6323242, 2.0136719, 0.15307617, -1.359375, 0.5341797, -0.22106934, -0.06781006, 2.75, 1.6191406, -0.7705078, -0.43408203, 2.5507812, -0.93652344, 0.65966797, -0.6040039, -0.1850586, 0.7026367, 0.5336914, -2.8085938, 1.6611328, 0.028274536, -0.1459961, 2.4609375, -0.38427734, -1.9394531, -0.6953125, -1.0625, -0.3232422, -1.5683594, -2.6855469, 1.4326172, 1.4394531, 0.16040039, -3.3808594, -0.5571289, 3.1738281, 1.8642578, -1.2900391, -1.1152344, -1.6054688, -0.087768555, -0.7426758, 0.39282227, 0.59375, -1.1337891, 1.9013672, 1.8007812, -0.1586914, 1.2373047, 2.671875, -2.0742188, 2.7148438, -3.140625, 1.8017578, -2.0351562, -0.6513672, 2.7890625, -0.3852539, -1.2382812, -1.6191406, -0.5258789, 2.1738281, 0.033416748, 0.10021973, -1.3076172, 0.63623047, 1.3769531, -1.4824219, -4.9414062, -0.3857422, -0.057556152, 2.2929688, -1.171875, -2.0585938, 1.1748047, -0.43530273, -2.4765625, -1.015625, -0.9536133, 0.68115234, -0.14709473, -1.4384766, 1.7011719, -1.0966797, -1.953125, 0.4008789, -0.72998047, 1.4453125, 1.2587891, -2.1953125, -0.62402344, 0.29101562, -4.3085938, -1.3945312, 1.9052734, 1.4443359, 1.5566406, -0.9223633, 2.1289062, -1.0146484, 3.6035156, -2.4316406, 1.5458984, -1.7070312, -0.99316406, 1.0214844, -1.5605469, -0.25073242, 0.8071289, -2.6347656, 1.5839844, 0.17236328, -2.3164062, 1.8945312, -0.8017578, 0.9199219, -1.3193359, 0.38500977, 0.7661133, 0.56152344, 3.0332031, -0.49047852, 0.6118164, -2.8476562, -1.5400391, -1.6279297, -0.28979492, -1.2509766, 0.2241211, 1.0126953, 1.7929688, 0.71435547, 2.0117188, -1.9111328, 3.15625, 0.07952881, -0.7866211, -1.5517578, 1.0009766, 2.2402344, 1.0361328, -4.3945312, 0.033050537, 1.0898438, 2.7734375, 0.13537598, -1.7939453, -3.0761719, -0.31860352, -2.9160156, -1.234375, 1.1728516, 2.0664062, 2.1699219, -0.22729492, 0.6171875, 1.1611328, 0.70703125, -0.06976318, 0.59277344, 1.0625, -1.6298828, 2.4140625, 0.9160156, 0.06970215, -2.7304688, 0.9375, -0.07043457, 1.7255859, -0.8544922, -0.34448242, 0.06750488, 1.8701172, 0.26220703, -3.3984375, 0.5151367, -0.48364258, 1.1044922, -0.66064453, 0.1105957, 1.5361328, -1.1855469, -0.6352539, 0.8569336, 0.8886719, -2.2265625, -0.6376953, 0.17370605, -1.3994141, 2.3652344, -0.7558594, 1.3974609, 2.0996094, -2.234375, 0.20373535, -0.88623047, 0.3400879, 3.140625, 1.6923828, -0.22021484, 1.9433594, -0.079956055, 0.23071289, 1.4589844, 2.8144531, -0.2006836, -2.7402344, 0.9819336, 1.4160156, -1.7548828, 0.69189453, -0.8696289, 0.28344727, -0.47143555, -0.15344238, 0.2055664, 1.3662109, 1.0888672, -0.48486328, -0.16040039, -0.20214844, 0.14001465, -1.5917969, 1.4599609, -2.9824219, -1.4541016, -1.28125, 0.7973633, -0.44580078, 0.7006836, -0.64697266, -2.2597656, 1.4296875, 1.9677734, -1.6552734, -1.4023438, 2.03125, -1.1025391, -0.7084961, 0.9838867, 2.0683594, 1.7148438, 2.7734375, -2.9296875, 2.2558594, -0.703125, -0.07800293, -1.3632812, -0.75878906, 0.11279297, -0.7475586, 0.0715332, 0.53222656, 0.6220703, -1.6083984, -0.68359375, -0.39624023, 1.9833984, -0.5029297, -0.5136719, 0.34155273, -4.8007812, -1.46875, 2.4550781, 1.7578125, -0.18359375, 1.6875, 1.5419922, -0.6904297, 0.3395996, -0.12719727, 0.6142578, 2.0117188, -0.68115234, -0.8886719, -0.4897461, -0.035217285, 1.9296875, 1.1904297, -0.85498047, -0.7441406, 3.1308594, -0.66748047, 1.5195312, -0.71728516, 0.6430664, -0.4387207, -0.46875, 1.1152344, 1.9804688, 1.2275391, 1.1787109, 0.84228516, -0.09197998, 0.80810547, -1.8339844, -4.796875, -1.9111328, 0.11773682, 0.9116211, 0.11206055, -0.6796875, -2.484375, -0.5332031, 1.9462891, 1.7880859, 3.4023438, -3.84375, 1.0898438, 1.5478516, -2.1347656, 1.7861328, -2.90625, -0.4272461, 0.3515625, -0.18713379, 2.453125, 1.0292969, 1.4853516, -2.7734375, -0.70458984, -0.7973633, -0.24560547, -1.9130859, -1.1943359, -0.75439453, -3.3710938, 0.7011719, -1.6171875, 0.67089844, -2.1347656, 1.7304688, -1.3378906, -0.6699219, -2.9472656, -0.32348633, 2.5527344, 0.94433594, 0.57373047, 1.1103516, 1.1953125, -3.2539062, -1.6230469, -4.5703125, 0.009185791, -1.6337891, -1.9619141, -0.5493164, -1.0644531, -0.41625977, -0.8886719, 1.6064453, -0.77246094, -0.2878418, 0.7783203, -2.6191406, -0.5361328, -0.5131836, 0.4128418, -2.8769531, -0.5498047, -1.1650391, 3.7324219, 2.5917969, 2.3652344, 1.3867188, 2.1503906, -0.070617676, 0.000702858, 1.3144531, 3.0019531, 1.0341797, -1.8857422, -1.9287109, 1.2890625, -0.5625, 0.0690918, -0.8828125, -0.99072266]}, "B0861XQ5M8": {"id": "B0861XQ5M8", "original": "Brand: BBQ Light\nName: LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ\nDescription: Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.\nFeatures: Let the barbecue in the night happier.\nTurns on and off manually or with tilt sensor activation.\nLED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours.\nResists heat and moisture damage with glass-reinforced nylon construction.\nFits current Spirit, Genesis, Genesis II and Summit Grills.\n", "embedding": [-1.21875, 0.2626953, 1.9238281, -0.1697998, -1.2919922, 0.99121094, 1.9042969, -0.73291016, 1.5683594, 0.8041992, -0.3269043, -3.421875, -0.54833984, -4.5117188, 0.19604492, -0.52001953, 2.484375, -0.4951172, 0.6953125, 0.12445068, 2.4902344, 1.4765625, -1.2363281, -0.93310547, 2.2910156, 1.7451172, 3.421875, -2.3183594, -0.20288086, -2.6992188, 2.9902344, 1.90625, -0.37231445, 1.6337891, -2.5761719, -2.2929688, -2.875, 1.9462891, -1.9111328, -1.2109375, 0.016571045, -1.0185547, 1.8613281, 0.16760254, -2.3222656, 3.4082031, -0.57128906, 0.5698242, -1.8496094, 1.1767578, 2.15625, 1.7929688, 0.44018555, 0.58935547, -0.50390625, 0.3293457, 1.0302734, -1.8017578, 1.4853516, -2.4277344, 3.0976562, 0.37182617, -1.4296875, -0.75634766, 0.6040039, -1.6542969, -0.70947266, -1.0546875, 1.125, -0.5708008, 3.4316406, -2.0605469, -0.7128906, -0.37402344, 1.2177734, -1.109375, 0.23510742, 0.86816406, -1.6445312, -0.39990234, -1.3183594, 2.2910156, 0.21838379, -1.2822266, -0.26391602, 1.0712891, -0.5883789, -0.03363037, 1.6767578, 0.08654785, -0.41186523, 0.35742188, -0.4645996, -2.1835938, 1.9179688, -2.984375, -0.52783203, -1.65625, -1.9736328, 2.1523438, -1.7470703, 0.52246094, -1.9238281, -1.5859375, -0.8154297, -1.0917969, 2.0957031, -2.4160156, -0.37475586, -2.6230469, -0.81396484, -0.1730957, -0.39404297, 2.6230469, 1.1132812, -0.13696289, 0.7163086, 1.7724609, 0.04196167, 4.4375, 1.4355469, -0.8623047, -0.015197754, -0.40698242, -1.4316406, -1.4853516, 1.5361328, 1.1132812, 1.2861328, -0.90185547, -0.7871094, 1.0429688, 3.0351562, 0.8666992, 1.2099609, -0.55126953, -1.5878906, -2.34375, -1.75, -1.6826172, -2.6386719, -1.4882812, 1.6103516, 0.010986328, -2.4882812, 1.3291016, -0.77441406, 0.6928711, -1.7919922, -0.8964844, 2.2851562, -0.9926758, -0.4519043, -1.6386719, 0.076293945, 0.7753906, -0.43017578, 1.0146484, 2.5976562, 1.1289062, 2.4511719, -1.5097656, 0.021347046, -1.8046875, 1.1210938, -0.2368164, 0.6430664, 1.8261719, 0.5991211, 0.8823242, 1.4033203, -2.4433594, 2.0292969, -0.50634766, 0.8535156, -2.296875, -1.5791016, 1.9003906, -1.3330078, 0.5732422, -1.7441406, -2.234375, 1.2529297, -1.6386719, -0.3527832, 0.2401123, -1.0029297, -0.890625, 1.4462891, -1.9570312, 1.0224609, 2.4433594, 0.7338867, -0.48706055, 0.68603516, 0.5541992, -3.875, -2.3398438, -0.81689453, -1.0839844, -0.71484375, -2.0761719, 1.1435547, 0.32226562, -1.1015625, -2.9277344, 0.58691406, 1.4853516, -1.9179688, 0.61816406, 0.3503418, -0.9506836, 1.5136719, -0.8413086, 0.57958984, -1.7236328, 1.0898438, -0.4260254, 1.6982422, 5.2304688, -0.96484375, -0.36450195, -0.85546875, 4.1992188, -0.7524414, 1.0136719, 1.0234375, -0.79003906, -2.1894531, -0.6298828, 3.25, -0.8989258, -0.7138672, -1.9433594, -0.37451172, 2.8574219, -1.0078125, 0.90527344, 0.32666016, -0.29174805, -1.3369141, -3.1289062, -1.3076172, -0.33325195, -2.0722656, -0.62158203, -2.8222656, 2.1210938, -0.7885742, -1.7324219, 3.0683594, 3.0390625, 1.1298828, 0.78808594, -1.1826172, 0.6923828, -0.80371094, 1.5791016, -3.0625, -2.3164062, 2.5214844, 1.9707031, -2.1660156, 2.6757812, 0.25927734, -0.39404297, 0.6748047, 2.9042969, -0.6513672, -2.265625, 1.5888672, 0.2824707, -1.5458984, -0.14685059, 2.9746094, 1.9042969, 1.4365234, 0.5571289, 2.4003906, -1.3554688, -1.3046875, -0.046051025, 1.25, -0.4892578, -1.5126953, -0.89746094, -1.4580078, -0.76171875, -0.85058594, 1.5546875, 2.9902344, 0.57128906, -3.3183594, 4.125, -3.1289062, -0.27905273, 2.015625, -0.43603516, -0.19274902, 0.05834961, 3.0527344, 0.8540039, -0.41967773, 1.6142578, 1.1142578, 1.2138672, 1.9462891, -3.5410156, 0.34033203, 3.4101562, -0.7739258, 0.27148438, -2.2050781, 1.0966797, -1.7421875, -1.9042969, 2.1914062, -1.6074219, 0.95751953, 1.9462891, 0.3869629, 0.7192383, 1.0048828, -1.2128906, -0.8676758, 0.9663086, 0.059814453, 0.038513184, 1.3378906, -0.062927246, -2.5722656, -2.5742188, -0.74609375, -0.45263672, -1.6103516, -4.2421875, -0.70996094, -2.7753906, -0.28881836, -1.6074219, -0.4802246, 1.2158203, -0.1899414, 1.4423828, 0.82958984, -1.7763672, 0.010749817, -0.13842773, 2.5332031, -0.60546875, 0.85498047, -1.0957031, 0.011268616, -1.9511719, 2.2011719, 2.609375, 1.2060547, -0.2286377, -1.2363281, 3.4785156, 0.4050293, 0.20056152, -0.013137817, 1.0517578, 1.3613281, 0.07043457, 0.21850586, -2.4082031, -0.21350098, -3.2226562, 2.8164062, -0.59716797, 1.0371094, -3.1035156, -0.72265625, 0.011924744, -1.4775391, 3.1914062, -0.12426758, 1.8886719, -0.65722656, 0.6640625, 1.2490234, 0.7910156, -0.43310547, -1.5449219, 0.53564453, -0.3947754, -1.3066406, -4.6054688, -2.0410156, 0.39282227, 1.1171875, 0.61816406, -1.6767578, 0.82666016, 1.6279297, -2.5332031, -1.2246094, 1.5761719, 0.99902344, -0.39257812, -0.047607422, -2.2753906, -3.4902344, -1.0634766, -1.2373047, -0.17199707, 4, 0.022338867, 1.6757812, 1.2871094, 1.5048828, 2.6523438, -1.8300781, -4.9414062, 2.9335938, 1.2548828, -3.5566406, 0.6767578, -0.11755371, -0.7314453, -1.4267578, -0.0826416, 2.5625, 0.24938965, 2.65625, -1.8300781, 0.46435547, -1.328125, 3.1074219, 0.23413086, 0.984375, 1.4638672, 1.3056641, -3.3574219, -2.6738281, -1.5166016, 0.5625, 1.046875, -2.8359375, 0.5830078, 1.421875, 2.3847656, 1.2919922, 1.90625, -0.33862305, -1.2578125, 1.8271484, -1.6591797, -1.2421875, 1.7080078, -1.3105469, 0.8334961, -0.63720703, 0.8930664, 2.0703125, 2.9609375, 2.4433594, 2.5898438, 0.3540039, -0.20605469, -0.29833984, 2.1035156, 2.09375, -2.6699219, 0.35058594, -1.0390625, -1.3867188, 2.3925781, 0.64941406, 1.9951172, -0.02281189, -2.1191406, 2.5234375, 2.0214844, 0.17675781, 1.4091797, 1.3007812, -0.76708984, -1.8291016, -1.2294922, -1.4404297, -2.3964844, -1.8974609, -1.5986328, -0.73291016, -1.5507812, 1.7236328, 0.484375, -2.8183594, -0.16101074, 0.6821289, -1.7353516, -1.2294922, 0.074401855, 1.3466797, -0.36206055, 0.9946289, 0.17175293, -0.73339844, 1.3046875, -3.2285156, -0.09161377, -0.47143555, 0.3269043, -3.3359375, -1.0888672, 1.2578125, 1.5673828, 1.5292969, 1.7470703, -1.1318359, -0.50390625, -0.30664062, -2.5371094, 0.31298828, 0.37060547, -1.1640625, -2.0898438, 2.8710938, 1.4013672, -0.7866211, -0.77246094, 1.0732422, 0.70458984, 0.11114502, 0.69189453, -1.0693359, -2.2109375, -2.3164062, -3.6542969, 1.0136719, -2.6113281, 0.103027344, -1.0712891, -0.07171631, 1.8007812, 0.92626953, 0.5839844, -0.62353516, -1.2607422, -0.50341797, -0.48510742, 0.8564453, 0.9916992, 1.4082031, -1.5625, -0.4230957, -3.5175781, -1.8125, -0.027954102, 1.1591797, 1.9287109, -0.091552734, 0.39794922, -1.2431641, -0.9301758, -1.8720703, 0.48217773, 1.8066406, 0.046661377, 0.31103516, -2.3867188, 1.4433594, -0.18615723, 0.6665039, -1.0273438, 1.0292969, 0.2980957, -1.3144531, -0.27539062, 0.63378906, 2.3828125, -0.22521973, -1.7705078, 0.21618652, 0.8334961, 0.054779053, -0.36767578, -1.2978516, 0.0143585205, -1.4541016, 0.2220459, 1.4394531, 1.0830078, 0.2927246, -0.4560547, -2.8320312, -1.2480469, -0.90478516, -2.9785156, -1.6611328, 1.3652344, 0.5546875, -0.96191406, -0.50390625, -0.67578125, 0.071899414, -2.5898438, -0.26293945, -3.3535156, 3.0058594, 2.6171875, 2.2128906, 2.4609375, -0.97021484, -0.38232422, 0.30688477, -1.4921875, -2.5566406, 0.6689453, 0.79296875, -0.081726074, 1.2539062, 1.8417969, -0.073913574, -0.27929688, 2.1640625, -0.71191406, 0.52246094, -1.3164062, -0.97021484, -2.9433594, 2.546875, 1.2392578, 0.30908203, 1.2880859, -1.9140625, -0.12463379, -0.73535156, 1.171875, -1.9628906, -0.140625, 1.1132812, -0.32080078, 1.1953125, 1.4453125, 2.3652344, 0.17492676, 1.1123047, -1.2832031, 0.96875, -1.1005859, 0.71191406, -0.6225586, -0.7138672, 0.006790161, -0.85498047, 1.4873047, 1.9736328, 0.45043945, 1.3232422, 0.7709961, -0.8125, 2.796875, 1.9970703, -2.84375, 1.5126953, 0.7998047, -2.1738281, 1.2861328, -1.2011719, -2.1445312, -1.0888672, 2.3515625, -0.05380249, 1.8769531, 0.6699219, -0.8964844, 2.6972656, -0.3671875, -0.5522461, 0.1071167, -0.44311523, 0.7182617, 0.70996094, -0.8823242, -0.24536133, 0.83496094, 0.66845703, 2.1210938, -2.3476562, 1.1542969, -0.5517578, -1.6650391, 0.57128906, 0.21057129, -4.1757812, -2.1914062, 1.5458984, 1.3730469, 0.03652954, 1.1845703, 2.0019531, -0.0211792, -1.8583984, -3.6660156, 1.5878906, -2.1972656, 0.5283203, 1.4326172, -2.7617188, -0.57958984, -1.2236328, 0.53808594, -0.11999512, -0.18664551, 1.2705078, 0.9121094, -1.2792969, 1.4970703, -1.5058594, -2.4863281, -1.3027344, -2.0664062, -1.3867188, -0.7866211, -0.5332031, 0.24511719, -1.3525391, 0.60253906, 0.039886475, 1.1230469, 0.88183594, -1.2519531, 0.70410156, -0.22729492, -1.0654297, -1.3701172, 0.7319336, -0.3491211, 3.1464844, -1.2929688, -3.8925781, -0.32470703, 0.34960938, -1.8671875, -1.5888672, 3.3574219, 1.8798828, 0.34228516, 2.5644531, -1.4101562, -2.9355469, 2.515625, 1.5478516, 0.41992188, 0.96972656, 0.49169922, 1.6367188, -1.8457031, -0.9614258, 0.6899414, -1.4755859, 1.2060547, 0.045074463, -1.5019531, 0.14355469, -0.53515625, 1.1416016, -3.015625, 0.6538086, -0.96875, 1.0107422, 0.19396973, -2.265625, 0.5288086, -4, -4.75, -0.17175293, -2.8886719, 0.48095703, -2.4375, -0.80078125, 1.0927734, 2.2050781, -0.040527344, 1.4023438, -0.32080078, -2.2675781, 0.14587402, 4.1445312, 2.0761719, 3.0625, -1.3984375, -0.77001953, -3.1464844, 0.8310547, -0.29956055, -0.15759277, -1.2236328, 0.6870117, -4.0546875, -0.16235352, -0.123535156, 3.3984375, -0.24853516, -1.7841797, -0.84228516, 0.76953125, 1.7861328, -0.58740234, 1.9257812, 1.6484375, 0.82666016, 0.3413086, 2.7539062, -1.0576172, -1.4003906, 2.421875, -2.9785156, 2.671875, -0.0034999847, -2.1464844, 0.47216797, -0.9501953, -1.1914062, 1.3242188, -2.2285156, -1.6542969, 1.6269531, 0.5883789, -0.2824707, -1.5234375, 3.0234375, 0.9746094, 2.0273438, 0.47998047, -0.2006836, -1.9716797, -1.1386719, -1.5039062, 0.22192383, 1.5332031, -3.0683594, 0.4440918, -0.3347168, -0.96728516, -0.63134766, -0.012252808, -0.31835938, 1.1533203, -0.06225586, 0.4091797, 2.1835938, 2.2753906, 1.4921875, 1.0273438, 0.46655273, 0.41455078, -1.1318359, 1.4628906, 2.421875, 0.7026367, -0.8251953, -1.0986328, 0.64501953, -1.8408203, 0.3178711, 2.6347656, -0.77246094, 2.375, -0.27294922, -0.89941406, 0.66796875, 2.7851562, -2.140625, 0.7915039, -1.1542969, 0.03640747, -0.03933716, 2.2910156, 4.0703125, -0.32861328, 1.6191406, -1.2392578, 1.375, 1.9833984, -3.7617188, 0.75683594, 0.9790039, 1.4169922, -1.7929688, 1.3359375, 1.8046875, 0.85546875, 0.9086914, 2.3789062, 2.109375, -0.22753906, 3.109375, -1.5849609, -1.6640625, -0.54345703, 2.7089844, -2.4921875, 0.41210938, -0.7548828, -1.6132812, -5.0664062, 0.021499634, 1.9804688, 0.55908203, 0.97021484, 1.8701172, -1.9541016, 1.5126953, -0.671875, 1.7861328, -0.52783203, 0.16687012, -2.703125, 1.1435547, 0.7109375, 0.30737305, 1.9140625, 0.1776123, 1.3242188, -3.1132812, 0.6665039, 0.82714844, 0.4013672, 0.61376953, 0.86816406, -0.17480469, 2.5058594, -0.9291992, 1.9433594, 1.5390625, -0.43164062, -2.2714844, 1.9316406, 0.70214844, -0.51708984, 0.18835449, -0.5439453, 0.7001953, -0.24584961, 0.07891846, 0.86621094, -3.0214844, -0.15039062, -0.45092773, 0.13537598, -0.031677246, 0.53222656, 0.2709961, 4.1328125, 2.6191406, 1.4746094, -0.57421875, -2.4335938, 1.2138672, -0.41601562, -1.4892578, 0.37451172, 1.9453125, 0.7553711, 0.12121582, 1.5214844, 2.0507812, 0.4567871, 0.88671875, -1.7099609, 0.40429688, -0.09234619, 1.1455078, 1.234375, -0.93847656, -0.9003906, 0.92626953, 0.65185547, -0.78125, 0.068603516, 1.53125, -1.046875, 0.070617676, -0.19506836, -1.2832031, 1.8925781, 1.4111328, -1.5996094, 2.4511719, 3.078125, 2.5, -1.6542969, -3.25, -1.2265625, 0.45458984, -1.9404297, 0.40039062, -2.5039062, -1.4716797, -1.4267578, -1.4306641, 2.4335938, -1.0107422, 0.87109375, -0.99902344, -1.4609375, 0.46289062, -1.9433594, 2.6367188, -0.8569336, -2.0996094, 2.1972656, 1.0175781, 1.0136719, 1.4248047, 2.4453125, 2.8320312, -0.06915283, -2.0136719, 0.05227661, -0.42236328, 1.1972656, 0.61376953, 2.734375, -0.08807373, -0.49926758, 1.1708984, -0.3088379, -1.6621094]}, "B07G8HFNWB": {"id": "B07G8HFNWB", "original": "Brand: Hot Sox\nName: Hot Sox Men's Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)\nDescription: \nFeatures: Barbecue in style with these bold men's crew socks!\n50% Cotton 25% Polyester 23% Nylon 2% Spandex\nFits men's shoe size 6 - 12.5\nMachine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron.\nOne pair pack\n", "embedding": [-0.9238281, 1.5898438, 0.71435547, 0.20983887, -0.86376953, -2.8632812, 1.8496094, 0.028274536, 0.2409668, 0.38110352, -0.26391602, 0.95996094, 1.5039062, -1.8652344, -0.43920898, -2.953125, -0.71972656, 0.2915039, 0.24328613, 0.4345703, 2.4082031, -0.6152344, 1.8544922, -4.4296875, -2.1640625, 3.2695312, 3.9472656, 0.12384033, 0.8730469, 0.1875, 0.22070312, 0.16345215, 1.9658203, 1.1464844, -2.4785156, -1.2490234, -0.3408203, -0.34765625, -1.3779297, 0.8457031, -0.8173828, -1.1386719, 1.0214844, 4.4960938, -1.9658203, 0.11230469, 1, 2.8925781, -0.71484375, -1.5107422, -1.1669922, -0.03414917, -2.7578125, 0.9370117, 0.40161133, 2.90625, 1.8701172, -0.44482422, -0.87939453, -0.6347656, -0.5517578, -1.8486328, -0.20910645, 0.85839844, -2.4394531, 3.21875, -1.2255859, -2.0410156, -0.18359375, 0.6699219, -0.21838379, 0.9472656, -1.3984375, 0.1081543, 0.9223633, 2.0976562, -2.8710938, 1.1455078, -0.041229248, -1.9511719, 0.7089844, 0.7998047, 0.4897461, 0.37670898, 0.3330078, -0.57177734, -0.50439453, -0.58984375, -0.097229004, 0.7636719, -0.5961914, 1.8447266, -2.0546875, -3.8476562, -0.44433594, -0.6772461, 0.24487305, -1.3388672, -0.85595703, 0.828125, -1.0068359, -2.3085938, 1.0732422, 1.8535156, 0.04800415, -1.3300781, -0.032073975, -0.29223633, -0.50097656, 0.7675781, -2.1191406, 0.3466797, 3.0625, 0.34570312, 1.9882812, -1.8720703, 0.39501953, -1.8886719, 1.2587891, -1.2851562, 2.4101562, 0.08868408, 3.1289062, 1.2607422, 0.3540039, -0.59472656, 1.6103516, 0.09869385, 0.76464844, -0.14978027, 1.6005859, -0.27270508, -0.9873047, -1.3984375, -1.7705078, -1.2890625, -1.375, -0.5180664, -1.8095703, 0.45922852, -2.3339844, -1.5605469, -0.29467773, -1.9482422, -1.8671875, -1.2744141, -1.1279297, 3.0195312, -2.2695312, -2.2851562, -0.7319336, 1.7871094, -1.7685547, -0.15429688, 0.021011353, 0.19213867, 2.6679688, -1.6044922, 1.4091797, -1.2939453, 1.7011719, -1.4394531, 0.40625, 0.9042969, -1.1621094, -1.0244141, -2.4121094, -1.7089844, -2.1035156, 0.8623047, -0.7182617, -0.45166016, 1.3789062, -4.2773438, 0.43139648, -0.4897461, -1.4365234, 1.5263672, 0.15429688, 1.1064453, 1.7060547, -2.9355469, 1.875, 2.0019531, 2.0644531, -1.5722656, 0.17211914, -0.94677734, -2.0859375, -0.055511475, -1.3613281, -2.0625, 1.0332031, 2.5839844, 0.5698242, -1.125, 1.3339844, -1.3847656, 3.2363281, 1.6455078, 0.41064453, -0.49194336, 2.7988281, 1.9794922, -2.4941406, -2.9179688, 2.0488281, 0.68359375, 0.73779297, 0.22583008, 0.9399414, -1.5195312, -0.42382812, 2.6386719, -1.5517578, 0.42260742, 2.0566406, -1.859375, 3.0625, 2.8261719, -0.21960449, 0.3569336, -0.087524414, -3.3417969, 0.09326172, 0.28979492, 1.4501953, -0.5336914, -0.53271484, -1.5390625, 1.984375, 1.9414062, -0.38842773, 0.6015625, -0.5253906, 2.25, 0.67578125, -0.30200195, -0.94970703, 0.5366211, 1.2958984, 3.1054688, -3.6621094, -0.890625, -2.4082031, -0.1685791, -1.0205078, 1.84375, -1.0996094, -0.23950195, 0.2722168, -0.2956543, 1.7626953, 2.0664062, -0.30786133, -1.8789062, -0.052886963, -0.21411133, -1.9580078, -1.65625, 1.2041016, 0.7080078, -1.8740234, 1.4472656, 0.17663574, 0.37475586, 2.0507812, 1.1259766, -0.89160156, -0.8413086, 1.2880859, 0.23779297, 1.1181641, -1.3876953, -0.29345703, 2.4296875, -0.3232422, 1.3857422, -0.08270264, -0.71240234, -1.3164062, 0.8691406, 0.6113281, -1.3535156, 2.1992188, -1.1230469, -2.1835938, -1.5078125, -0.81884766, 0.5410156, 1.7207031, -0.04522705, 2.5390625, 1.9648438, -1.5673828, 0.21777344, 1.4052734, 2.1972656, -1.5947266, -1.3632812, 1.0878906, 2.078125, -0.011047363, -1.5390625, -1.0517578, 0.92529297, 0.77490234, 1.1445312, -0.06008911, 0.90527344, -0.17907715, -2.6503906, 1.4736328, 1.8671875, -2.1132812, -1.4677734, 0.53222656, 0.49975586, 1.6425781, -0.08642578, 1.4433594, 0.7885742, 1.4746094, -2.3085938, 0.8808594, 2.2734375, -3.6796875, 1.0419922, -1.125, -1.6787109, 0.14123535, 1.0556641, -0.90185547, -2.0195312, -0.6533203, -0.65722656, -0.5673828, 1.9658203, 0.18859863, 1.3378906, 0.5805664, 1.8867188, -0.4970703, 0.23168945, 0.035736084, -2.984375, -1.9707031, -1.1357422, -0.28198242, -1.0722656, 1.171875, 1.0478516, 0.56347656, -2.5546875, -1.8613281, -0.25805664, -1.4453125, 1.2675781, -4.1796875, -0.045928955, 0.39526367, -0.84228516, 0.06573486, 0.47827148, 0.40405273, -0.23339844, -1.2832031, -4.1054688, 2.0253906, 1.0917969, -1.6728516, -2.7363281, 0.51171875, -1.8798828, -2.2265625, 2.2460938, 2.3476562, 5.234375, -1.0634766, 0.95654297, -2.3417969, 1.2695312, -0.90478516, 0.6640625, -0.81347656, 0.50341797, -1.5, 0.8461914, 0.054382324, -2.9023438, 1.2675781, -1.1015625, 1.9160156, 0.72802734, 2.3457031, 0.1381836, -1.65625, -0.31054688, -0.76220703, 0.18103027, 0.86376953, -0.96728516, 1.015625, -0.2548828, -2.6640625, -1.6787109, -0.41235352, 2.2871094, 2.1914062, 0.39160156, 1.6542969, 0.12658691, -0.30078125, 0.15478516, 0.5102539, -1.5830078, 2.6894531, 2.6542969, -0.27685547, -3.5449219, 0.029159546, 0.11651611, -1.1152344, 0.5390625, 0.56591797, -0.06347656, 2.2851562, 2.1347656, -0.91064453, -0.4345703, 3.2324219, -1.4003906, 0.8310547, 2.7988281, 0.85009766, 3.96875, -2.5898438, 0.72558594, 0.27319336, -1.8759766, -0.42041016, -0.7446289, 1.8496094, 0.7475586, 0.87158203, -0.5722656, -2.3457031, 0.48901367, 3.3378906, -0.97753906, -1.4013672, 0.7338867, 1.4794922, -2.1953125, 0.39672852, 1.9785156, 1.9013672, 1.2529297, 2.7050781, 0.42041016, -0.1862793, 0.5600586, 0.13867188, 2.2597656, -1.6923828, 0.984375, -0.41064453, 1.9541016, 1.7431641, 1.1806641, 0.07507324, 2.3945312, -2.4921875, 0.4584961, 1.7822266, -2.8007812, -1.3027344, 0.7553711, -0.45043945, -1.9511719, -1.109375, -0.6669922, -2.1640625, -1.7275391, 0.67822266, -0.52783203, -1.1171875, -1.6503906, 2.6894531, -2.1464844, -0.5913086, -1.2089844, 1.0791016, -0.46875, -0.9296875, 1.5097656, -0.74658203, -1.3535156, 1.1865234, 1.8994141, 0.14196777, 0.8286133, -1.2919922, -0.43579102, 3.3710938, -1.2841797, -2.3554688, -2.09375, -1.0732422, 2.1855469, -1.6357422, -1.8964844, 1.5361328, -0.31591797, 0.46264648, -2.3789062, 0.41918945, 2.9296875, -2.3554688, -1.6171875, 4.3164062, -1.8447266, 0.6201172, 0.31176758, 1.7714844, 0.70947266, -0.57128906, 2.3886719, -0.7602539, 1.6523438, 1.4736328, -3.03125, -1.7734375, 0.05029297, -0.107910156, 2.9238281, 2.2773438, 0.9692383, 2.390625, 0.8222656, -0.47387695, -0.89941406, 0.24597168, -0.8618164, -1.7363281, -1.0527344, -0.3659668, 1.0039062, -0.7636719, -1.6582031, 0.99609375, -2.3730469, 1.0644531, -1.3134766, -1.5351562, -1.0917969, -0.06100464, -0.5410156, 1.1865234, -0.68847656, 0.06384277, -0.23535156, 0.3803711, 1.5332031, -0.9375, 0.9838867, 0.20617676, -2.4355469, 3.6875, 1.2539062, 0.9477539, -3.1640625, -0.08306885, -0.69189453, -1.0419922, 0.18200684, 0.7890625, -0.4951172, 1.9160156, -0.006099701, -0.59814453, 0.57910156, 0.61328125, -0.3100586, 1.0087891, 1.1972656, 1.9111328, 1.1591797, -1.1679688, 1.0820312, -2.0136719, 0.44482422, 0.60253906, -0.95654297, 0.0769043, 1.8183594, 1.9316406, -1.1318359, 0.46313477, 1.3222656, 3.78125, 1.8535156, -0.6982422, -0.38427734, -0.57177734, 2.4316406, -2.9902344, -0.5048828, -0.46020508, -3.984375, 1.7724609, -1.1318359, -1.9003906, -2.65625, 0.1307373, 1.1806641, 0.7451172, 2.1972656, -0.9667969, 0.5488281, 0.9355469, -3.1035156, -2.0996094, 0.7661133, 0.89160156, 0.18237305, -2.3476562, 1.6748047, 0.7832031, -0.25195312, 5.0039062, 0.67041016, -0.65771484, 1.5615234, 0.65283203, 1.5761719, 1.4814453, 1.0820312, -1.7851562, -0.7006836, 1.4873047, 1.8261719, 2.2128906, 1.4248047, 1.9736328, -0.62353516, 1.5605469, 0.1920166, -2.0742188, 0.6425781, -0.16772461, -0.30737305, 2.7480469, 1.0097656, -0.5053711, -0.45166016, 1.6347656, -0.8911133, 1.2773438, 0.61279297, -0.22717285, 0.8417969, 0.43920898, -1.4951172, 1.5839844, 0.014839172, 0.2241211, 1.3505859, -0.17504883, -1.8193359, -0.6401367, -0.7675781, -0.49072266, -1.4482422, -1.6357422, 0.7216797, 0.41845703, 0.5395508, -3.3105469, 0.032318115, 3.1914062, 1.515625, -0.6274414, -0.42626953, -1.9707031, -1.2568359, -0.9135742, -1.1425781, 0.6850586, -1.6220703, 1.3203125, 1.7373047, 0.47558594, 0.9555664, 3.1503906, -2.0703125, 1.7753906, -1.9667969, 1.7587891, -1.7636719, -0.29003906, 2.4628906, -0.31884766, -0.5620117, -1.4697266, -0.9921875, 1.4931641, 0.17785645, 0.108947754, -1.2695312, 0.8256836, 0.6645508, -1.9277344, -4.7070312, -0.3059082, -0.9794922, 2.2558594, -1.1621094, -2.2851562, 1.5244141, 0.42041016, -2.6992188, -0.10070801, -1.5019531, 0.61328125, 0.25146484, -0.9423828, 0.96191406, -1.8642578, -1.5722656, -0.3955078, -1.1445312, -0.5463867, 1.5664062, -1.9003906, -1.0546875, 0.26000977, -3.4101562, -1.8847656, 2.3320312, 0.6933594, 1.0732422, 0.5522461, 2.4355469, 0.60595703, 3.9960938, -2.4160156, 0.4572754, -2.4394531, -1.1962891, 0.7998047, -1.0107422, -0.10443115, 0.77685547, -1.2119141, 2.2792969, 1.0390625, -1.5488281, 2.1640625, -1.0488281, 0.21386719, -0.4638672, 0.27783203, 0.921875, 0.3449707, 2.0917969, 0.24597168, 0.64941406, -2.8613281, -1.3320312, -0.2524414, -0.48266602, -0.8432617, 0.7426758, 1.1943359, 1.9912109, 1.6523438, 2.6582031, -0.8198242, 1.8896484, 0.14001465, -0.5942383, -1.9707031, 0.9868164, 1.8837891, 0.8691406, -4.34375, -0.8647461, -0.010513306, 2.7851562, 0.8408203, -0.76660156, -2.4980469, -0.1538086, -2.3730469, -1.7128906, 0.9765625, 2.7011719, 1.6982422, -0.5131836, 0.58154297, 0.08380127, 1.1210938, 0.039123535, -0.17883301, 2.5839844, -2.5839844, 2.3007812, 1.4609375, -0.91796875, -2.6855469, 1.0351562, 0.53564453, 1.2773438, -0.9692383, -0.23205566, -0.10076904, 1.9160156, 0.72216797, -3.0039062, 0.60791016, -0.39746094, 0.11291504, -0.7661133, 1.1601562, 1.3164062, -1.2509766, -1.2626953, 0.81884766, 0.91015625, -2.3007812, -0.9482422, 0.77441406, -0.84521484, 2.9726562, -0.29785156, 0.21325684, 2.0214844, -1.4394531, 0.93847656, -1.2167969, 0.16296387, 1.2041016, 1.5820312, -0.15612793, 1.7421875, 0.33544922, -0.28222656, 1.7138672, 1.9111328, -0.4099121, -2.4804688, 0.4802246, 1.6630859, -1.2285156, 0.47509766, -0.040130615, 0.7783203, 0.86279297, 0.032470703, -0.18432617, 1.7402344, 0.7270508, -0.77441406, -0.058380127, 0.72802734, 0.06201172, -2.0410156, 0.93896484, -2.5957031, -0.6611328, -1.7460938, 0.18237305, 0.4267578, 0.46899414, -0.8417969, -2.125, 0.36523438, 1.4541016, -2.515625, -2.203125, 1.1474609, -1.4892578, 0.10571289, 2.1992188, 1.9990234, 2.1054688, 1.7392578, -2.3730469, 1.2685547, -1.2421875, -0.8745117, -0.7080078, -0.32299805, -0.5605469, -0.37304688, 0.15466309, -1.1298828, 0.17895508, -1.5566406, 0.26342773, 0.10784912, 1.0302734, 0.37768555, -0.9394531, -0.17089844, -4.3046875, 0.19799805, 1.0107422, 1.3300781, 0.9145508, 1.5722656, 1.5664062, -0.29492188, 1.2412109, -0.21533203, 0.92285156, 0.4025879, -1.7255859, -1.0898438, 0.3359375, 0.8417969, 2.1464844, 0.1472168, -1.4238281, -0.028686523, 3.1679688, -0.80078125, 1.6035156, 0.37036133, 1.5107422, -0.20788574, 0.7763672, 0.5366211, 1.9296875, 1.1367188, 1.7636719, 0.50439453, 0.171875, 0.8144531, -0.61816406, -3.734375, -2.2089844, 0.64941406, 1.0810547, 0.06262207, -0.34960938, -1.7753906, -1.2939453, 0.4880371, 2.203125, 2.0605469, -3.9179688, 0.08862305, 1.7285156, -2.1171875, 0.9838867, -2.1738281, -0.49682617, 1.3164062, 0.16296387, 2.7597656, 1.2578125, 0.48095703, -2.2324219, -1.703125, -1.2246094, -0.82910156, -1.2685547, -1.3066406, -0.44506836, -3.0625, 1.3974609, -1.5410156, 0.79541016, -1.9814453, 1.3740234, -0.8564453, -0.5463867, -2.2910156, -0.29907227, 1.8769531, 1.9863281, 1.4101562, 0.6508789, 0.65185547, -2.5351562, -0.6894531, -3.90625, 0.63720703, -2.6269531, -1.3984375, -0.19238281, -0.56640625, -0.90283203, -0.36401367, 0.9526367, -1.1445312, 0.082092285, 0.9160156, -2.2773438, -0.7192383, -0.47509766, 0.64160156, -1.890625, -0.2355957, -1.1777344, 3.78125, 1.3417969, 2.9570312, 1.2226562, 0.9941406, -0.07611084, -0.2668457, 1.7998047, 1.7480469, 1.4013672, -1.71875, -1.3134766, 0.26538086, 0.25219727, -0.8754883, -0.15795898, -1.0244141]}, "B000DZKZLQ": {"id": "B000DZKZLQ", "original": "Brand: Mr. Heater\nName: Mr. Heater F273769 Portable Propane Table Top Regulator with a 1\"-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular\nDescription: \nFeatures: \n", "embedding": [-0.6904297, 0.44458008, 1.7675781, 0.6875, -1.0908203, -0.5292969, 0.58691406, -2.2871094, -0.7001953, 0.7607422, 2.359375, 1.4677734, 0.15917969, -1.1386719, 2.4589844, -0.68603516, 1.4277344, -0.11566162, 1.2470703, -1.0019531, -0.71484375, -0.76953125, 1.7275391, -2.5800781, 1.1611328, 2.0175781, 4.8515625, -2.6035156, 0.28442383, -0.43554688, 0.045837402, 0.9267578, 0.42333984, 2.4785156, -1.0302734, -1.53125, -2.1523438, 0.11315918, -4.0546875, 0.34838867, -1.5234375, 1.71875, -1.0839844, 0.7133789, -2.3769531, -1.0771484, 1.5488281, -1.0371094, -0.7817383, 0.33154297, 0.56933594, -0.97314453, 0.5229492, 0.41479492, -1.5097656, 0.23083496, -2.7089844, -2.8632812, -0.16967773, 1.0419922, 2.6191406, -1.1210938, -3.2441406, 1.1904297, 0.8515625, 2.9160156, 0.21899414, -0.45336914, -0.30078125, 0.8979492, 1.6669922, -0.49145508, -0.51464844, -1.1035156, -0.75146484, 0.76123047, -3.2871094, -0.33447266, 3.1152344, -1.6689453, -0.734375, 0.9501953, 0.35717773, 0.055145264, -0.64404297, -1.6572266, -0.2631836, -0.5463867, 2.3417969, 2.3300781, -1.2705078, 0.6538086, -1.4550781, -4.8632812, 0.96875, 0.9008789, -0.06994629, 0.25610352, -1.6435547, 1.7441406, -0.12414551, -0.43310547, 1.5947266, 0.15539551, -1.9296875, 0.36083984, 0.5053711, 1.7158203, -2.3125, 0.4411621, -2.0019531, 0.0067329407, 3.2402344, -0.090148926, -0.7788086, -0.13146973, 0.61328125, 0.74072266, 5.0820312, -0.765625, 3.3242188, -0.69921875, 2.0605469, -0.8989258, 0.27026367, 0.2614746, -1.6074219, 0.6611328, 2.0253906, -2.1347656, 2.2617188, 0.20788574, 1.4892578, -0.34033203, -1.7001953, -2.4003906, -1.3955078, -3.2226562, -2.6914062, -3.1191406, -1.9990234, 0.78808594, 1.0273438, -0.43945312, -3.5292969, -1.2285156, -0.51220703, 0.87109375, -0.5551758, -1.3798828, 1.4970703, -1.9921875, -1.7548828, -0.34985352, 1.2783203, 2.0625, -0.76904297, -0.5205078, 2.4375, 1.421875, 0.99658203, -0.048034668, -0.68847656, 1.9042969, -2.0371094, -0.2553711, 0.5805664, 0.45898438, -0.8598633, 2.7714844, 0.7890625, -1.8193359, -0.5029297, -0.80126953, -0.375, -0.9692383, 0.97802734, 2.4882812, 0.68896484, -0.81884766, -3.1523438, -1.4736328, -0.0002092123, -2.3613281, 3.1699219, -1.4433594, -1.7822266, -1.2910156, 0.67578125, 0.14465332, -1.9082031, 0.40161133, 0.34106445, 0.22558594, 0.11846924, -2.1542969, -2.3789062, -2.09375, 3.7089844, 1.3349609, -2.5136719, -0.14416504, -0.15490723, -0.82373047, -1.6845703, -2.4003906, 0.81591797, -0.18786621, 1.0488281, 1.0400391, -0.061462402, -0.88623047, 0.296875, 0.022842407, 0.22460938, -3.46875, 1.8154297, 0.22937012, 0.7270508, 2.0976562, 0.6713867, 0.58984375, 0.19592285, -0.82177734, 0.25146484, 1.8857422, 1.0976562, 0.30615234, -2.2753906, -1.4091797, 1.6953125, 2.390625, -0.02218628, 0.81103516, -0.24731445, 2.1738281, 1.6826172, -0.040374756, 1.9667969, -0.65625, 1.4931641, -0.3972168, 1.3720703, -1.3574219, 1.0214844, 2.0351562, -1.3300781, 1.0957031, 1.328125, 2.9023438, 1.3349609, 0.13415527, -1.0927734, -1.0097656, -2.8613281, 0.57128906, 0.69091797, 0.12237549, 0.5864258, -1.4697266, 1.9814453, 0.6254883, -1.1269531, 0.7915039, 1.1142578, -0.76171875, 2.8417969, 0.07220459, -0.72021484, 0.10491943, 0.58984375, 3.625, 1.1533203, 1.2412109, 0.64697266, 1.921875, -1.5908203, 3.3574219, -0.9067383, 0.5, -0.09051514, -0.76708984, 1.2392578, -0.6201172, 1.1015625, 0.5449219, -1.2431641, 1.7236328, -2.7753906, 0.60009766, 2.8808594, -0.48266602, 0.4819336, 1.8349609, 0.36669922, 1.2890625, 2.6464844, -1.7753906, -0.33740234, -0.5498047, 1.3378906, 1.1035156, -0.92333984, 0.31225586, 0.009765625, -0.89501953, -0.43017578, -0.95410156, -1.4150391, 1.7734375, 1.0869141, -1.8769531, -2.2675781, -0.25097656, -4.234375, -1.2646484, 0.84228516, -3.3535156, 1.7490234, 0.16784668, 0.2902832, 1.6103516, 0.421875, -1.3095703, 0.58203125, 0.40795898, -0.7709961, 2.2441406, -0.4609375, -2.1289062, -0.039489746, -0.5004883, 0.8359375, -1.7333984, -2.3164062, 1.8857422, -0.94384766, -2.8066406, 2.5273438, 0.19958496, -0.3383789, 2.1289062, -2.0878906, 3, -0.26098633, -1.0878906, -1.5712891, 0.1652832, -0.34228516, -1.4511719, 0.04928589, 1.2753906, -1.4169922, -5.1054688, -0.21655273, 0.46289062, -1.0449219, 0.2644043, -0.6899414, 0.83251953, 0.89941406, -1.4746094, 0.11224365, -1.6572266, -0.32495117, -1.2646484, 0.81640625, -2.5527344, 1.2734375, -0.75097656, 1.5839844, -0.9716797, -0.107910156, -0.61572266, -0.76953125, 1.0869141, 0.16674805, 2.6933594, 0.50683594, 2.2929688, -0.20617676, 1.5800781, 0.52197266, -2.0507812, -2.2988281, 0.37817383, -1.6582031, -0.99853516, -1.6328125, -3.0820312, 0.99658203, 0.5527344, -0.5493164, -0.10046387, 0.45629883, 0.121154785, -0.77246094, -0.37719727, -0.47314453, -0.4987793, -1.4755859, 0.14465332, -0.49951172, -0.04763794, 0.27929688, -1.4550781, -0.23571777, -0.64404297, 1.5605469, 0.85058594, 1.5957031, 0.40185547, -0.24707031, 1.1640625, 1.6982422, -2.8125, 0.48706055, 1.0302734, 0.15002441, 0.21398926, -1.3847656, -0.44482422, -0.51660156, -1.4921875, 2.4257812, 0.19592285, 2.59375, 0.8208008, 0.0993042, 0.39868164, 1.3535156, -2.4570312, 1.0439453, -0.7963867, 2.3183594, -1.0068359, -2.703125, 1.3427734, 1.5361328, -2.65625, -1.4199219, 1.0488281, -0.55371094, 1.2890625, 0.18615723, -0.9169922, -0.5336914, 2.3320312, 0.88427734, 0.86816406, -0.44604492, 0.01675415, -1.0126953, -0.100097656, 2.2773438, 2.9394531, 0.21252441, -1.1816406, 0.57958984, -0.040252686, 2.1601562, -2.0878906, -0.21704102, 0.20812988, 1.1103516, 0.24133301, 2.8964844, -0.14733887, 1.8974609, 0.9536133, 0.7895508, 1.8222656, -2.2929688, -0.3322754, 2.1875, 0.38110352, -0.6015625, -0.40942383, 0.37695312, -0.18066406, -0.69189453, 0.54052734, -0.21166992, 0.43774414, 1.4208984, -1.3076172, -2.4121094, -2.0273438, 1.9785156, -1.8271484, -0.09466553, -0.23693848, 1.8261719, -2.2519531, -0.67333984, -2.0722656, -1.8681641, -0.7216797, 1.1191406, -1.4902344, -1.5380859, -0.92871094, 1.6025391, -1.2490234, 1.0136719, -1.1337891, -0.12451172, -0.1661377, -0.74072266, 1.3876953, -1.2333984, 1.328125, 0.040740967, -2.484375, -1.0146484, -1.9013672, -1.53125, 1.5048828, -0.5024414, -0.12200928, 1.0478516, -1.7324219, 1.640625, -0.73046875, 1.8798828, -3.2539062, 0.0093307495, 2.0117188, -1.3925781, -0.08428955, -1.9511719, -4.1015625, 0.050048828, -2.5585938, 0.49438477, 2.1308594, -0.118774414, 1.375, 1.5644531, 1.7236328, -0.6977539, -1.7177734, -0.06341553, 0.36083984, -1.2597656, -0.63427734, 4.0664062, 0.97265625, -2.9628906, -1.1708984, 1.2578125, -0.83447266, -0.55566406, -0.48168945, -1.2441406, -1.1123047, -0.2565918, 1.9833984, -1.2001953, -1.6943359, 0.8701172, 0.32299805, -0.7260742, -1.7197266, 3.9042969, 0.72314453, 1.0878906, -0.10369873, 4.6484375, 1.4248047, -0.1986084, 0.77734375, 1.1064453, 1.4384766, 0.3059082, -2.1054688, -0.63378906, -1.8535156, -0.8310547, 0.07330322, 0.8330078, 0.60498047, -2.1152344, -1.3652344, 1.3251953, 0.8095703, 2.5371094, 1.3720703, -1.3720703, 2.1464844, -1.2958984, -1.4423828, -1.0214844, 0.94140625, 0.38500977, -3.421875, 1.6572266, -1.2099609, 0.9580078, -0.9951172, -2.5019531, -0.5239258, -0.61572266, 1.8564453, 0.9399414, -0.37353516, -1.0566406, -2.5761719, -1.5869141, -0.72314453, 0.875, -0.72314453, -0.29760742, -0.47851562, 0.4741211, 2.9433594, -1.65625, 1.375, 0.030014038, -1.0400391, 1.4169922, 0.030685425, -0.49975586, -0.65527344, -1.9814453, 1.2109375, -1.1494141, 3.1738281, -1.4785156, 1.2861328, 0.35424805, 0.26513672, 0.33642578, 2.1738281, 0.17443848, -0.7060547, 4.1132812, 0.67871094, 0.12988281, -1.1689453, 0.113098145, 2.6894531, 0.44702148, -1.5957031, -0.15637207, 0.10736084, 1.1953125, -1.3896484, -1.0722656, 2.2441406, -0.9692383, 0.00617218, 3.0800781, 1.9355469, -0.17077637, 1.2138672, 1.0800781, -2.1972656, 1.0712891, -1.1826172, 0.18688965, 2.0117188, 0.67578125, -3.5585938, -0.6357422, 1.9228516, -1.0527344, 1.9951172, 0.18823242, -1.1533203, -0.74902344, -3.1230469, -3.046875, -2.1484375, -0.40820312, -0.06109619, -1.84375, 1.0751953, 0.17163086, 2.8222656, 2.6699219, -0.6298828, -1.2333984, 0.0473938, -1.0439453, -0.31958008, 0.74560547, 0.74121094, -1.3212891, -0.49829102, 1.0390625, -1.0244141, 0.49731445, 0.6254883, 0.99365234, -1.4638672, -0.83935547, -0.77685547, 1.2626953, -0.7973633, -2.0097656, 2.1015625, -0.5161133, -0.55371094, -0.8852539, -1.6328125, -0.77685547, 1.7275391, -0.29516602, 1.9121094, -0.45458984, -0.328125, -3.0917969, -2.5820312, -1.40625, 0.61279297, -0.2944336, 0.07067871, -1.6738281, -2.2382812, 2.4394531, 0.5229492, 1.0527344, -1.5019531, 1.234375, -0.09875488, 0.7885742, 1.4638672, -1.0458984, 0.79589844, 1.1367188, 0.02961731, 0.25854492, -1.28125, -2.1074219, -3.9121094, 1.1035156, 1.2509766, -0.52001953, 1.8378906, -0.07702637, 0.8305664, 1.3857422, 2.1386719, -2.1914062, 0.051696777, -1.3837891, -1.7197266, 1.2871094, -3.0898438, 1.4082031, 0.84375, -0.34643555, -0.5024414, 1.4355469, 3.0195312, 0.29077148, 0.55322266, 0.4790039, -0.17956543, 0.53564453, -1.0605469, 0.9838867, -0.89501953, 1.859375, 1.0810547, 0.10699463, -0.29833984, -3.2324219, -0.69921875, -0.13183594, -1.9863281, 0.41015625, 0.53564453, 0.29736328, 1.3183594, -0.97558594, 1.9296875, 1.6503906, 0.96435547, 0.36083984, 0.4284668, -1.0185547, 3.6894531, 0.76123047, -1.8886719, -3.1816406, -0.5966797, -0.7036133, 2.4316406, 0.83203125, -0.037109375, -0.10614014, -1.7607422, -0.16955566, -0.54345703, 1.2001953, 0.15136719, 0.070373535, -1.1425781, 0.15893555, 1.453125, -1.9941406, -0.24255371, 0.52783203, 2.4160156, -1.1123047, 1.8027344, 2.1484375, -2.1679688, -0.08154297, -1.2294922, 1.9208984, 0.3479004, -1.6689453, 2.1855469, -2.4804688, -0.53027344, 1.2363281, -0.7216797, -2.0253906, 0.78027344, 1.3046875, 0.053497314, 1.4970703, 0.079711914, 0.20031738, -1.3027344, 1.8779297, -1.3212891, -2.4863281, 0.29638672, -0.1895752, 0.089660645, 2.546875, -0.07342529, 2.6445312, 2.0800781, 1.8916016, -0.5209961, 0.04510498, -1.34375, 1.8544922, 4.8867188, 1.7431641, 1.8769531, -0.5161133, 1.5048828, 1.0429688, 1.1181641, 1.5439453, -1.7451172, 0.3972168, 1.5390625, 0.09918213, -1.0507812, -0.65771484, -0.5097656, -0.4206543, -0.90527344, -1.1503906, 1.328125, 2.8300781, 0.56103516, -1.5683594, -0.23278809, 0.045166016, -2.2910156, 1.7607422, 0.16088867, 1.2832031, 3.0292969, -0.83496094, 1.5947266, 0.79052734, 0.4753418, 0.95410156, 0.66015625, 3.6347656, -1.2734375, -0.17895508, 0.703125, -1.1269531, 1.5224609, 1.1591797, 0.4855957, -0.17687988, 0.39331055, -1.1630859, -0.4375, -0.38867188, -1.6699219, -2.5527344, -1.2216797, 0.7368164, 1.3701172, 3.1894531, 0.24682617, 1.8349609, 0.2932129, 1.4775391, -3.1914062, 2.6445312, 0.8203125, -0.9057617, 0.1875, -2.0605469, 1.0322266, 0.02015686, -0.44213867, -0.47509766, 0.7651367, 1.0566406, -1.21875, 0.20336914, -0.25219727, -2.359375, 3.6582031, -0.044708252, 0.7080078, 0.23144531, -0.3239746, 1.7646484, 0.099121094, 0.62841797, -0.40429688, 0.9267578, -1.5869141, 1.9501953, 0.88134766, -0.9482422, 0.20935059, 1.4130859, 1.9160156, -0.091430664, 1.5029297, -1.1025391, 1.7197266, 1.7392578, -1.3427734, 0.6958008, -1.4238281, 0.44604492, -0.33911133, 0.09918213, -0.10217285, -1.7734375, 0.8911133, 0.66748047, -2.8085938, 0.40234375, 1.7753906, -0.67333984, 0.43579102, -2.1308594, -2.0058594, -0.93652344, -0.8486328, -0.24938965, -0.72216797, -1.0136719, 0.13500977, 1.9433594, 0.3942871, 0.70654297, -0.60546875, -2.3085938, -0.8754883, -0.10070801, 1.4375, -0.75146484, 0.13598633, 0.16540527, -1.1259766, -0.6225586, 1.2509766, 1.5488281, 1.546875, -1.7958984, -0.34326172, -1.3505859, 0.25683594, -0.32641602, 1.9111328, 1.4228516, -0.3239746, 1.8720703, -2.0410156, -3.734375, -2.3085938, -1.6064453, 2.0136719, 1.0244141, 0.21777344, 0.609375, 1.3613281, 2.4316406, -0.88964844, 1.3056641, 0.796875, -0.5185547, 1.6787109, 0.29052734, 1.2021484, 0.04171753, 1.3408203, 0.3503418, 2.1132812, 1.0595703, 0.13500977, 1.3378906, 0.6713867, -0.0110321045, -1.7597656, 0.24438477, -1.1396484, -1.2900391, -0.1673584, -1.3525391, 2.609375, 0.34521484, -1.8964844, -3.4335938, -1.2373047]}, "B007M2FWEI": {"id": "B007M2FWEI", "original": "Brand: \nName: Camping Emergency Butane Heater Coherent Heat Source Survival Tools\nDescription: Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.\nFeatures: Use standard butane gas cartidge for portability\nCeramic burner\nPressure sensing safety shut off device\nGas consumption 100gm/hr\nCE certificate\n", "embedding": [-0.23950195, 0.6201172, 1.7460938, -0.27734375, -0.671875, 1.1933594, 0.32226562, -1.8085938, -0.20568848, 2.3007812, 0.6621094, 0.059448242, 0.2775879, -1.6279297, 2.0527344, 0.0259552, 1.0751953, -0.18603516, -1.1113281, -0.13598633, 2.8027344, -0.7290039, 2.2207031, -0.60498047, -1.6796875, 0.86328125, 5.5273438, -2.640625, 0.5385742, -1.4199219, 0.32006836, 0.9536133, -0.35180664, 2.0566406, -3.3144531, -0.006252289, -1.8154297, 1.8564453, -3.4746094, -0.80029297, -1.6210938, 0.31640625, 0.6459961, -0.49243164, -2.4550781, -0.27929688, 2.2519531, -1.078125, -0.10821533, -0.85498047, 1.3408203, 0.065979004, -1.8701172, 0.08905029, -1.4882812, 0.6035156, -1.4150391, -2.1777344, 2.5273438, 1.4111328, 1.1425781, -0.10760498, -0.64404297, 0.5595703, -0.33251953, 1.9238281, 0.4033203, -2.0800781, -1.8779297, 1.0117188, 1.4414062, 0.16040039, -1.1806641, -0.16333008, -0.28466797, -2.0253906, -0.2932129, 0.6328125, 1.734375, -0.7416992, -0.73046875, -0.017303467, 0.30029297, -0.81152344, -1.5517578, -0.89453125, -0.8261719, 0.8510742, 0.44580078, 1.2783203, -2.0839844, 2.0351562, -0.8984375, -4.4335938, 1.3535156, -2.3632812, -0.8955078, -0.32226562, -0.5800781, 1.8525391, -0.81689453, 1.2460938, 0.5078125, 0.30151367, -2.5996094, 0.4909668, 2.5097656, 2.0214844, -1.7412109, 0.47387695, -2.6914062, -1.3945312, 0.39453125, -0.25854492, -2.8867188, 0.5551758, 1.2558594, -0.29174805, 3.9316406, -0.4477539, 2.7363281, -1.2041016, 0.26611328, -2.0898438, 1.4169922, 1.6572266, 0.7319336, 0.6142578, 2.34375, -1.0820312, 0.6821289, 1.5185547, -0.4560547, -0.12322998, -1.1953125, -1.3554688, -2.7792969, -1.7910156, -1.9033203, -1.8388672, -2.9394531, 1.5126953, 0.53271484, -0.62939453, -2.5351562, -0.70996094, -1.6054688, 1.7490234, -0.31201172, 0.8696289, 0.7319336, -1.9316406, 0.8798828, -4.0507812, 1.2734375, 2.1015625, -1.203125, -0.80371094, 5.1289062, 2.0566406, -0.34692383, -0.40112305, 0.46484375, 0.15332031, -1.2910156, -1.9638672, 0.68603516, 0.3869629, -0.55859375, 0.9375, 0.8232422, -2.2792969, -0.73779297, -0.6694336, -0.9897461, -1.0517578, 0.45263672, 1.1474609, 0.61621094, -0.15112305, -2.8632812, -1.0712891, 0.72314453, 1.4111328, 1.3515625, -0.40039062, -0.5966797, -2.9882812, -0.14208984, -0.77441406, -0.79296875, 1.0253906, -0.42700195, 0.6113281, 0.7792969, -1.0292969, -0.53027344, -2.0859375, 0.63427734, -0.046142578, -0.38793945, -1.4550781, -0.57666016, 0.63623047, -2.375, -2.7851562, -0.03753662, 0.64697266, 2.2363281, 1.5, 0.51660156, 0.02583313, 2.0820312, 0.59277344, -0.5732422, -2.3261719, 0.062438965, -0.06304932, 0.91748047, 2.3886719, -1.0068359, -0.18322754, -0.5229492, -0.4831543, -0.02861023, 2.6015625, 0.9526367, -0.2993164, -2.0957031, -2.1679688, 1.6777344, 1.328125, -0.41918945, -0.3022461, 0.31884766, 2.2226562, -0.71875, -0.3791504, 1.984375, -0.5678711, 0.3623047, -1.3369141, -0.07659912, 1.3789062, 0.9716797, -0.6123047, 0.026550293, 0.70654297, 0.51416016, -0.6347656, 0.47924805, 0.5180664, 0.19641113, 2.28125, -2.171875, 0.9897461, 0.578125, 0.6435547, 0.1149292, -1.4707031, 1.046875, 1.7880859, -1.1757812, 1.0078125, 0.27563477, -0.9604492, 1.1552734, -0.43188477, -0.9277344, -0.23413086, 0.9663086, 2.0136719, 2.3144531, 1.3808594, 2.3828125, 2.0351562, -0.61376953, 1.3876953, -0.49047852, 1.7988281, 0.07867432, 0.3137207, 1.0126953, -0.036254883, 0.6196289, -0.80322266, -1.2626953, 0.82714844, -2.09375, 0.29418945, 3.6835938, -1.0986328, -3.2382812, 3.6425781, -1.7480469, 0.56152344, 1.2841797, 1.234375, -0.10601807, -1.8183594, 1.1396484, 0.66064453, -0.6074219, 1.765625, -3.1523438, -0.016433716, 1.3066406, -0.67089844, 1.2949219, 3.4316406, 0.35742188, -0.7495117, -2.8222656, -0.80322266, -4.0742188, -0.77490234, 0.45214844, -3.1660156, 1.7070312, 0.21032715, -0.5151367, 0.8984375, 0.61035156, -2.1210938, 0.41577148, 0.62353516, -0.028793335, 2.6699219, -0.1920166, -0.9140625, 0.023971558, -1.484375, -1.2695312, -0.7060547, -1.4541016, 1.0644531, -0.30859375, -2.7714844, 2.3925781, -0.4020996, -0.05105591, 0.47387695, -0.78808594, 0.35253906, -1.5410156, 0.0473938, -2.1230469, 0.16540527, 1.1445312, -3.2226562, 1.5791016, 1.9794922, -1.8886719, -4.0703125, 0.09667969, -0.91259766, -0.78027344, 0.96484375, -1.7929688, 1.1738281, -0.16455078, -0.20568848, 1.3896484, -0.14135742, -1.7128906, -1.1494141, 0.8647461, -3.2753906, 2.4121094, -1.765625, 2.2714844, 0.06365967, 0.22644043, -0.3322754, -0.74072266, 2.6289062, 0.515625, 1.609375, 0.0904541, 1.0761719, -0.055267334, -0.2993164, -0.78271484, -1.2558594, -2.7832031, 1.4394531, -1.1474609, -1.3457031, -1.6025391, -2.9375, -0.05545044, 0.10668945, -0.088256836, -0.5527344, 0.10418701, 0.40283203, -0.14624023, -1.0810547, -0.0030841827, -0.4177246, -0.49243164, -0.19909668, -0.7441406, 0.36376953, -1.0234375, -1.6074219, -0.8051758, -0.68847656, 1.7255859, -0.2253418, -0.046691895, 1.4511719, -0.044555664, 0.7578125, 1.7138672, -3.8613281, 0.2076416, 1.9941406, -0.70214844, -1.2539062, -1.5205078, -1.1523438, -0.82714844, 0.25439453, 3.2265625, -0.33544922, 3.5683594, 0.8183594, 0.8300781, -0.62890625, 3.4179688, -1.1005859, 0.4831543, -0.12286377, 1.5175781, -2.4394531, -2.6035156, 1.1269531, 1.3007812, -2.2070312, -0.2980957, 1.1962891, -0.02607727, 2.3398438, 2.0585938, -2.2460938, 0.5161133, 0.546875, -0.9555664, 2.5859375, 0.17919922, -1.0117188, -0.31982422, -0.19311523, 1.8291016, 2.1054688, 0.9140625, 2.0820312, 1.4677734, 0.4934082, 2.2421875, -0.16430664, -0.93310547, -0.71533203, 0.9116211, 1.0322266, 1.1933594, 0.03189087, -0.46142578, 0.9584961, 0.47998047, 1.7070312, -2.4394531, 1.0771484, 1.640625, 0.3515625, -0.6821289, -0.796875, -1.3154297, -0.43676758, -1.9921875, 1.8740234, 1.2978516, 0.17700195, 0.97265625, -2.2050781, -0.60791016, -2.0761719, 1.1767578, -0.7426758, 0.95166016, 0.93847656, 0.86865234, -2.0625, -2.2714844, -1.3046875, -0.66796875, 0.5883789, 2.5820312, -1.0175781, -1.1699219, 0.72265625, -1.8359375, -0.4958496, 1.1669922, -0.5395508, 0.0020427704, -0.57910156, -1.453125, 0.26904297, -0.66308594, 0.1586914, 1.9560547, -1.2421875, 1.3740234, -0.74853516, -0.8745117, 1.1289062, -1.1933594, -0.27612305, 2.0585938, -1.0126953, -0.46484375, 0.44360352, 2.6347656, -1.3183594, -3.2011719, 1.1523438, -0.84814453, 0.27612305, 0.1821289, -3.3085938, 0.6826172, -0.24645996, 0.5073242, 2.8046875, -0.06500244, 1.5585938, 1.7490234, 0.80615234, -2.1074219, -3.0820312, 0.6699219, 1.0458984, -1.9882812, 0.018997192, 1.0458984, -1.8867188, -2.0878906, -0.26611328, -0.6669922, -2.2265625, 1.1816406, 0.8515625, -0.7939453, 0.08911133, 0.8330078, 2.2753906, 0.0066566467, -0.16809082, -1.0458984, 0.055389404, 0.38916016, -2.4414062, 1.9248047, -0.42626953, 0.9433594, -0.8071289, 4.2890625, 1.6708984, -0.6191406, -0.027511597, 1.2285156, 0.5546875, 0.15551758, -2.1289062, 0.32861328, -1.6064453, 0.67822266, -1.1767578, 0.19421387, -1.2070312, -1.4375, 1.6347656, 1.9345703, 1.2841797, 2.1191406, 0.89941406, -0.96875, 1.0478516, 0.14147949, -2.65625, -1.8222656, 0.5390625, -0.83203125, -0.10870361, 1.6884766, -0.08203125, -2.6816406, -0.24389648, -1.5664062, -0.45288086, -0.9296875, 2.0449219, 1.2021484, 0.5029297, -2.3574219, -2.5527344, -1.1777344, 0.16992188, 1.8710938, 0.45239258, 1.1640625, 0.81103516, 0.11853027, 0.8671875, -0.5058594, -0.0625, 1.3134766, 0.41186523, 0.59765625, -0.6777344, 0.15356445, -0.69873047, -0.8208008, -0.96875, 0.64404297, 2.109375, -1.8671875, -0.68115234, -0.31811523, 1.1875, -0.08416748, -1.6699219, 0.8149414, -0.67822266, -0.35839844, -0.15368652, 3.0292969, -1.7294922, 0.9506836, 0.71484375, 0.7578125, 0.091552734, -0.16430664, 0.71777344, 0.77490234, -1.3710938, -0.9165039, 2.5957031, 1.5107422, -0.93310547, 2.4433594, 2.3691406, -0.92333984, 1.265625, 1.4375, -1.6083984, 0.80322266, -1.6650391, -0.4416504, 2.1054688, -0.92529297, -1.1220703, 0.16455078, 2.4394531, 0.40722656, 3.1171875, -0.9194336, -1.5478516, -0.69189453, -2.4335938, -0.83154297, -1.7275391, -0.13366699, -0.40112305, -2.2070312, 0.26708984, 0.63378906, 2.6308594, 2.390625, 0.46850586, -0.19824219, 0.76123047, -2.484375, -0.36279297, 1.8642578, -1.1152344, -2.1953125, -0.29711914, 1.6806641, 1.5966797, 1.4199219, 2.4492188, 1.2294922, -0.6777344, 0.029220581, -1.4941406, 0.73876953, -2.2734375, -1.1943359, 0.7753906, -1.2041016, 1.171875, -1.6904297, -1.2089844, -0.75683594, 1.3417969, -1.1640625, -0.23913574, -1.1142578, -1.1894531, -2.5878906, -2.2285156, -0.5913086, -1.2304688, -1.8330078, 0.055908203, -1.5703125, -1.0009766, 0.21496582, -0.5566406, 1.6074219, -0.42456055, 0.7910156, -0.17785645, 1.5351562, -0.4753418, -0.32006836, 1.0029297, 1.3925781, -0.6152344, 0.8378906, -2.0488281, -2.0996094, -2.6015625, 0.29882812, -0.80322266, -0.2055664, 0.089416504, 0.17163086, 1.0742188, 3.8242188, 2.3105469, -1.7578125, 1.4208984, 1.7021484, -1.2294922, 1.6357422, -2.1875, 1.8935547, 1.3789062, -0.7451172, -0.032318115, 1.7949219, -0.765625, -0.004711151, 1.5986328, 2.1582031, 0.47314453, 0.1550293, -2.0019531, 0.42993164, 0.15454102, 1.1523438, 0.10131836, 1.6962891, -0.2919922, -3.1425781, -1.5761719, -0.79589844, -1.796875, -0.45385742, -0.009422302, 2.6582031, -0.40722656, 0.4633789, 0.66259766, -0.23510742, 1.0302734, -1.0888672, 1.0927734, 0.94189453, 3.2714844, 1.0107422, -0.21362305, -2.3164062, -2.15625, 0.9692383, 2.3515625, -0.4182129, -0.54589844, -0.14440918, -1.9599609, -0.0993042, -1.6679688, 1.7099609, 0.56689453, 1.0966797, -1.5791016, 1.5693359, 3.6015625, -2.0234375, -0.43823242, 0.025817871, 1.2021484, -1.0478516, 1.9277344, -0.10321045, -2.4238281, 1.6943359, -0.8378906, 1.8076172, -1.3398438, -2.7910156, 2.1054688, -2.5546875, 0.41845703, 0.7421875, 0.75390625, -2.3886719, 1.3769531, 1.2988281, -0.43359375, 0.70458984, 0.91064453, -0.5449219, 1.0664062, 2.4824219, 0.5390625, -2.7285156, -0.90722656, -2.328125, -1.7216797, 2.1386719, 0.14868164, 0.41992188, 0.5317383, 2.4335938, 0.56591797, 1.5087891, -1.2841797, 2.2324219, 3.5703125, 1.625, 0.7402344, 1.1894531, 2.2304688, 1.5195312, 1.9941406, -0.55029297, -0.9951172, -0.75390625, 0.099853516, 0.034088135, -0.5913086, -1.4277344, 0.46435547, 1.03125, -0.6035156, -2.1972656, 1.6572266, 2.1542969, -2.0898438, -0.5996094, 1.0068359, 0.8051758, -2.1386719, 1.3427734, -0.2705078, 2.8046875, 2.046875, 0.31640625, 0.6328125, 0.16308594, 0.21813965, -0.52978516, -0.049835205, 2.9628906, -2.6542969, -0.19335938, -0.5673828, -2.2441406, -0.9838867, 1.5654297, -0.0637207, 0.6791992, 0.5463867, 0.73779297, 0.65966797, -0.9135742, 0.37548828, -0.45898438, -1.46875, 1.7431641, 3.1308594, 2.0273438, 0.6635742, 1.1601562, -0.7475586, -0.3479004, -1.4208984, 1.8476562, 0.06542969, -1.0537109, 0.75634766, -2.484375, 2.5839844, -0.42822266, 1.5273438, -3.7910156, 0.88623047, 1.4355469, 0.0146865845, -1.4453125, 0.60009766, 1.8027344, 1.7392578, -0.032592773, 0.22961426, 9.059906e-05, -0.16333008, 2.359375, -0.8383789, 0.33520508, 0.51123047, -0.009147644, -1.0253906, 1.3691406, 0.32202148, -1.5537109, -0.9375, 3.3066406, 0.8486328, 0.37597656, -0.69433594, -0.76904297, 2.0253906, -0.025283813, 0.15734863, -0.99902344, -1.2753906, -3.0839844, 0.97998047, -1.3525391, -0.82714844, 0.48828125, 1.9287109, 0.006263733, -3.2050781, -0.7109375, 2.4648438, -0.46411133, 0.5722656, -0.93847656, -3.5507812, -1.4619141, -1.3144531, -0.13537598, -0.70996094, -1.3603516, -0.90722656, -0.034484863, -0.46313477, -0.6074219, 0.55371094, -0.062316895, -0.11260986, 0.3322754, 0.7158203, -1.6074219, 1.0400391, 0.09863281, -2.3105469, 1.4892578, 1.8554688, 1.5537109, 0.4736328, 1.9541016, -1.9169922, -0.43945312, 0.41796875, -0.70166016, 1.4013672, 0.95458984, 0.080200195, 1.0849609, -2.7402344, -1.4921875, 0.07324219, -1.4042969, 0.5234375, 0.8046875, -0.5595703, 0.4873047, 1.1806641, 2.6503906, -1.0595703, 0.2524414, -1.3876953, 0.5888672, 0.82177734, 0.32202148, 1.7373047, 0.79833984, -0.046051025, 0.41796875, 1.7929688, 1.0908203, -0.2019043, 2.1660156, 1.0410156, 0.25390625, -0.22497559, -0.96728516, -1.5644531, 0.15661621, 1.0498047, 0.8876953, 2.3339844, -1.125, -1.1210938, -2.9765625, 1.5664062]}, "B07FLBPHCD": {"id": "B07FLBPHCD", "original": "Brand: Happy BBQ Apparel\nName: BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt\nDescription: \nFeatures: This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh!\nThis fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby!\nLightweight, Classic fit, Double-needle sleeve and bottom hem\n", "embedding": [0.049713135, 2.8222656, -1.4443359, -0.67626953, -0.1595459, 0.8642578, 2.484375, -0.84521484, 1.6611328, 0.20117188, 0.15124512, -0.47607422, 0.609375, -4.9726562, -0.72216797, 1.0976562, -0.01285553, -0.07904053, 1.5644531, -0.7739258, 1.1171875, -1.7285156, 2.0039062, -0.19921875, -1.0966797, 0.73583984, 4.2304688, -1.2451172, 1.6347656, 0.6845703, 2.984375, 0.9716797, 0.49316406, 1.7773438, -2.2011719, 2.3417969, -1.1962891, -0.045532227, 0.16137695, 1.8730469, -1.6474609, -0.62109375, 1.0234375, 1.7226562, -2.984375, 0.2680664, -1.828125, 1.640625, -2.0976562, -3.4414062, 0.83203125, 3.1210938, -1.2460938, 0.9980469, -1.8505859, 1.1015625, -0.72998047, -0.067871094, -0.45776367, -0.72509766, 0.51416016, 0.28149414, -1.0019531, 0.12731934, 1.8671875, 1.4482422, -1.5390625, -0.45629883, -0.14526367, -1.1806641, 0.62890625, -0.9946289, -1.5595703, -0.024429321, 0.77441406, 1.6035156, 0.88183594, 0.17370605, -0.09918213, -0.97802734, 1.7636719, 3.8164062, -0.081848145, -1.8203125, -0.98535156, -0.44921875, -2.4296875, -0.6489258, 2.5996094, -1.1210938, 1.1591797, 2.34375, -2.7011719, -4.4960938, 1.5966797, -2.2285156, 0.8198242, -1.3310547, 1.1171875, 1.2880859, -1.1015625, -2.1757812, 0.62646484, 1.1904297, -0.5957031, -0.3251953, 0.111328125, 0.88671875, -2.6503906, 0.50097656, -2.09375, 1.6416016, 1.3359375, 0.20056152, 1.7285156, 0.020874023, -0.8989258, 1.2890625, 3.640625, -1.0927734, 1.4697266, -1.3339844, 2.1777344, -2.3085938, -1.1640625, 0.68408203, 0.578125, 2.4667969, 2.1035156, -0.37939453, 3.4414062, 0.22033691, -0.92822266, -1.5771484, -0.45654297, -0.7573242, 0.089782715, -0.21569824, -0.26489258, 2.7695312, -1.0019531, -0.115478516, 1.9873047, -1.4560547, -0.4729004, -0.9067383, -1.3349609, 0.30664062, -0.016036987, -2.2441406, 0.6166992, -1.9775391, -1.4150391, 0.19152832, 1.6171875, 0.65234375, -0.70654297, -1.6533203, 1.4306641, -1.2216797, 0.71728516, -1.140625, 0.68359375, 0.60595703, -0.25, -2.0898438, -2.2207031, 1.1904297, -1.4912109, 2.4902344, -0.36035156, -0.29223633, 2.6328125, -2.9648438, 2.6875, -2.0292969, 0.2783203, 1.3779297, -0.30908203, -0.49780273, -0.3083496, -2.3378906, 1.9189453, 1.1328125, -0.1887207, -2.359375, 0.5307617, 1.1826172, 0.8442383, -1.4345703, 0.9458008, 0.72998047, 2.1777344, 1.5234375, 0.27978516, 0.22021484, 0.69433594, -2.4238281, 0.5629883, 1.4306641, 0.37060547, -0.73779297, -2.1367188, -1.1826172, -1.3955078, -3.2480469, 1.8183594, -2.9375, 0.8461914, -1.0683594, 0.118896484, -1.328125, 0.16088867, 1.8349609, 0.39379883, -1.6845703, -0.3779297, -2.265625, 1.9892578, 2.0820312, -0.8569336, 1.5488281, 0.5053711, 1.875, -1.1435547, 0.41333008, -0.7402344, 1.8378906, -1.3046875, -0.49023438, 1.6230469, 1.7988281, -0.1809082, -0.4345703, -0.91015625, 0.86035156, 0.28076172, -0.93310547, -1.5693359, -0.34155273, 0.30273438, 0.026748657, -2.9746094, -2.9355469, 0.8959961, 1.7226562, -1.6767578, 3.3457031, 1.2900391, 0.73046875, 0.50390625, 1.0302734, -0.62060547, 0.9326172, -0.77197266, 0.31860352, -0.29101562, -0.29589844, -2.25, -0.099975586, 1.5556641, -0.4169922, -2.6835938, 0.9243164, 0.34326172, 1.8701172, 3.1132812, 1.5087891, -0.9057617, -2.6582031, 2.9785156, 2.3203125, -1.1992188, -2.5410156, 2.7851562, 0.24243164, -0.80126953, 0.10986328, 0.6484375, -1.1416016, -0.7495117, 0.7807617, -0.40625, -0.8569336, 1.796875, -0.10760498, -2.4472656, -2.4921875, -0.23266602, 0.9379883, 3.0234375, 0.16955566, 2.9628906, 1.3378906, -1.6855469, 2.53125, -1.3330078, -0.6582031, 0.25561523, 1.5332031, 1.2558594, -0.2919922, -1.2324219, -0.09509277, -0.8232422, -0.09051514, 0.33764648, -0.1920166, -0.2824707, 1.0214844, 1.9599609, -2.171875, -0.4921875, 0.2578125, -2.0761719, -3.9003906, -1.0693359, -1.7998047, 0.62060547, 2.0371094, 2.6386719, 1.0605469, 0.8955078, -1.8730469, 0.033203125, 1.8291016, -1.3798828, 1.0009766, 0.6489258, 0.9042969, 1.9765625, 0.3244629, -1.2587891, -0.074157715, -1.8388672, -1.3769531, -0.8359375, -0.30859375, 0.5546875, -0.017990112, 0.53808594, -0.4494629, -1.0546875, 0.89453125, 0.15539551, -2.4511719, -0.47509766, 0.48901367, 0.6660156, -0.2722168, -1.0947266, -0.6953125, -1.3974609, -4.4960938, -1.0791016, -0.11260986, 1.8613281, 0.5996094, -1.7314453, 0.1541748, -1.4228516, -0.8720703, 1.7177734, 0.49536133, 1.1259766, -0.12213135, 0.5498047, -2.6796875, 1.6494141, -2.109375, -1.4658203, -0.11413574, 1.6640625, -1.9169922, 1.0966797, 0.9008789, -1.9169922, 4.8476562, -0.6694336, -0.35058594, -0.8286133, -1.4648438, 2.2441406, 2.0410156, -1.9287109, 0.3166504, 1.7724609, -0.32836914, -1.0292969, -3.8496094, 0.4675293, -0.5654297, 0.006626129, -0.69433594, 3.015625, 0.022979736, -1.0263672, -0.97314453, 1.5585938, 0.022720337, 1.8652344, 0.55566406, -2.0195312, -0.8769531, 0.9223633, -1.1943359, -2.2773438, -1.4189453, 2.5195312, -1.4550781, 1.8330078, 0.9350586, 1.0263672, 1.0214844, -1.3710938, -3.9199219, 1.2363281, 2.6855469, -0.92285156, -1.7734375, -0.35351562, -2.4375, -1.8232422, 1.2744141, 1.4433594, 1.2119141, 0.46289062, 2.4472656, 2.3085938, -1.4951172, -0.2199707, 0.28222656, 1.796875, 2.3828125, 2.2089844, -0.6323242, -2.296875, 0.3798828, 1.2910156, 0.20410156, -1.2041016, 2.1386719, -0.2614746, 0.55908203, 0.14221191, 1.3203125, 0.21936035, -1.0507812, 1.0097656, -1.7333984, -1.2734375, -0.42871094, 0.97314453, -0.84375, -1.3955078, 1.2070312, 1.5078125, -0.00856781, 1.9462891, 0.6088867, 0.33032227, -1.2265625, 0.8017578, 1.0498047, 1.6152344, 1.2998047, 1.9980469, -0.19262695, -0.7138672, 1.3154297, -1.4111328, 2.453125, -1.7753906, 0.28320312, 2.328125, -1.2441406, -1.8095703, 0.8461914, 0.39404297, 0.58496094, -0.47338867, -2.8945312, -0.7729492, -0.734375, 0.44702148, -2.6464844, -1.8496094, -1.3427734, -0.64208984, -1.9287109, -1.4003906, -0.7416992, 1.4697266, -1.4414062, 0.23547363, 0.47143555, 2.2382812, 1.1474609, 1.1142578, -0.30493164, -0.26513672, -0.012321472, -2.015625, 0.25024414, 1.4765625, -1.4677734, -1.0234375, -0.5644531, 0.25585938, 2.4042969, -1.4023438, -1.3447266, 0.5439453, -2.2597656, -0.69873047, -3.2363281, -0.39819336, 1.6435547, -2.9785156, -0.5913086, 2.9980469, -1.6054688, -2.1835938, -0.49902344, 3.0605469, 1.1054688, -1.6230469, 2.5371094, 0.95410156, 2.3652344, -0.48754883, -2.171875, -0.16235352, 1.4248047, -1.7929688, 3.5234375, 1.0859375, 0.0036411285, 2.390625, 0.83447266, 0.69677734, -1.6845703, -0.3305664, -0.23779297, -0.87109375, 0.28759766, -0.7734375, 2.0546875, -0.29101562, -1.5722656, -1.1708984, -1.65625, 0.90283203, 0.053710938, -1.6064453, 0.73876953, -2.2753906, 0.47338867, -0.091308594, 0.29736328, -0.3371582, -0.94873047, -0.25732422, -0.14672852, 1.4404297, 1.0595703, 1.0957031, -1.8242188, 1.8398438, -0.34643555, 0.013809204, -2.7929688, 1.21875, 3.1074219, 0.03768921, -2.5234375, 0.2956543, 0.6074219, 0.4284668, 0.08270264, 0.59277344, -0.31982422, -1.2421875, -2.234375, -0.8256836, 2.1367188, 1.0732422, 0.9428711, -3.515625, 0.8442383, -1.5322266, -0.84033203, -0.67089844, -1.9414062, 0.10736084, 2.015625, 0.55908203, -1.2460938, 0.42871094, 0.1619873, 0.5732422, -2.9277344, 1.8505859, 2.7792969, 0.11682129, 3.3867188, -0.69921875, -2.1171875, 0.94384766, -0.39331055, 0.35131836, 1.0800781, -0.19360352, 0.37280273, -0.42651367, -0.34350586, 0.10626221, 0.47070312, -1.4433594, -2.4902344, 0.9667969, -1.4238281, 1.5039062, 0.2770996, 0.6933594, -0.50097656, -1.8056641, 2.8730469, -0.5839844, -0.35913086, 4.65625, 0.52246094, -0.8676758, 1.0693359, 1.9628906, 0.9970703, -0.4260254, 0.28881836, 0.02444458, -2.6347656, -2.1972656, 0.7114258, -1.3496094, -1.1689453, 2.0761719, 0.5234375, 0.60302734, 0.6020508, -1.4912109, 1.8974609, 3.9003906, -0.85009766, 2.6035156, 0.8432617, -0.546875, 2.2070312, 2.5332031, -4.28125, 0.71972656, -0.9291992, 0.0446167, 0.79296875, 1.8974609, -1.9609375, -1.7646484, -0.08166504, -1.6337891, 3.4921875, 1.4248047, -0.4140625, -1.2265625, -1.9414062, -3.3769531, 1.0751953, -0.8959961, 2.4785156, -0.039886475, -0.2734375, -2.1484375, -0.33032227, 3.2324219, -0.39379883, 0.55078125, 0.79345703, -0.66845703, -2.9414062, -1.9414062, -0.90234375, -2.8730469, -1.4414062, 1.9169922, 1.1796875, -0.24353027, 1.1767578, 0.7519531, -2.4042969, 1.6259766, -2.3359375, 3.2675781, -0.5522461, 1.5488281, 2.640625, -0.8017578, 1.1279297, -2.9863281, -0.13500977, -0.14465332, -0.13085938, 1.8740234, -1.5742188, -0.03439331, 1.2050781, -1.6083984, -3.7363281, -1.4140625, 0.87890625, 2.3691406, 0.25976562, -0.23925781, 2.8300781, -0.3322754, -0.9863281, -0.35083008, 0.45288086, 0.5131836, -1.2041016, -1.5214844, -0.85253906, -1.0556641, 0.87109375, -1.5556641, 2.5039062, -1.1416016, -0.67041016, -0.9291992, -0.96484375, -0.10601807, -5.0234375, -1.3427734, 1.7626953, 0.6855469, 1.2226562, 0.29833984, 4.109375, 0.5175781, 2.1113281, -1.3232422, -0.8691406, -1.6542969, -1.4589844, 1.3291016, -2.390625, -0.8613281, 0.83203125, -1.6894531, 1.4208984, 0.25463867, -0.18981934, 1.3291016, 0.37939453, -0.94677734, 0.39868164, 0.044189453, 1.0976562, 1.7792969, 0.3161621, -0.6459961, -0.5073242, -2.6699219, -3.0039062, -1.0576172, -1.2373047, -1.5292969, -1.3310547, 1.0322266, 1.1435547, 1.25, 2.4882812, 1.6318359, 1.9248047, -0.5366211, 0.10168457, -1.15625, 1.0390625, 0.28637695, 0.029953003, -1.6298828, -1.4384766, 1.0595703, 1.3125, 0.8413086, 0.11224365, -2.5410156, -1.0820312, -2.0605469, -0.22167969, 1.5234375, 1.8632812, 0.8305664, -0.52490234, 1.9023438, 1.5029297, -2.5625, -2.2910156, -0.5932617, 1.0390625, -1.6425781, 5.4179688, -0.36621094, -1.7910156, -0.5419922, 0.44262695, 0.67089844, 2.6367188, -1.8115234, 0.65478516, -2.453125, 0.3852539, -1.1904297, -3.0683594, -0.33154297, -0.08862305, 1.1035156, 0.26708984, 0.35717773, 1.9023438, -0.3137207, 0.4099121, 0.22558594, -2.8144531, -1.5390625, -0.78515625, 1.8935547, -2.5761719, 0.26513672, -1.5751953, 1.3427734, 0.16845703, -1.3212891, 0.49316406, 0.97265625, 0.91259766, 1.7597656, 2.4980469, 2.875, 0.67089844, 5.0351562, 2.2714844, -0.14221191, 3.6445312, 0.52441406, -0.60791016, 0.83447266, 2.6816406, 1.9794922, 1.1474609, -1.4179688, 1.1826172, -1.3515625, -0.50341797, -0.2878418, -0.36401367, -0.5805664, -0.78515625, 0.40112305, 0.73339844, 1.6884766, -2.515625, 0.39648438, 0.24609375, -0.87158203, -2.421875, 0.77783203, 1.6269531, 0.296875, -0.010971069, -1.1503906, 1.1767578, 0.4560547, -3.4667969, 1.0742188, 2.5976562, -2.5332031, 0.8027344, 2.0488281, 2.5390625, 0.7451172, -0.63916016, -1.09375, 0.7480469, 0.6801758, 0.94677734, 1.1513672, -0.3269043, 0.078063965, 1.5849609, -0.5620117, -2.546875, -0.23278809, -2.5097656, 0.8305664, -2.546875, 2.2460938, 0.21655273, 2.6289062, -0.5180664, -2.5820312, 2.0117188, 0.75927734, 3.0410156, 1.5058594, 1.9501953, 0.023635864, -3.3417969, 0.36572266, 0.8989258, -0.29492188, 1.7314453, -0.74609375, -2.3789062, 0.2479248, 0.23510742, 1.6669922, 0.65185547, 0.059173584, 0.8676758, 1.1474609, 0.004386902, 0.36108398, -0.56591797, -1.2958984, 1.0390625, 0.33544922, -0.66748047, 2.5957031, 0.6225586, -1.8505859, 1.8515625, -1.4433594, -0.34179688, -0.35742188, -0.66796875, -3.1660156, -0.89404297, 1.1064453, -1.0107422, -1.2285156, -0.38891602, 0.86572266, 0.4477539, 1.4599609, 0.076049805, -1.8935547, 0.5102539, -0.12145996, 0.1270752, 1.5966797, -1.2177734, 1.5644531, 0.11651611, 0.6958008, 1.7402344, 1.2265625, 0.19836426, -1.0371094, -2.0136719, -2.1757812, 0.13696289, 0.3605957, 1.0703125, -1.0126953, -2.6308594, -0.89501953, -0.07659912, 1.3183594, 0.64404297, 1.7236328, -2.7851562, -1.3945312, -2.2851562, -2.0957031, 1.390625, 0.36914062, 4.21875, 1.7998047, 1.5712891, -2.8105469, -1.4091797, -3.1035156, 3.0234375, -3.2949219, 0.5864258, 0.58251953, 0.69189453, 0.6191406, -0.99609375, -1.2734375, -1.0791016, -0.5957031, 2.0820312, -1.7978516, 1.4394531, -1.5039062, 1.0097656, 0.18481445, -0.6542969, -0.6279297, 1.25, 2.1835938, 1.8525391, 0.6748047, 1.2470703, 2.3808594, 0.05050659, -0.20666504, 1.65625, 1.0039062, -0.13427734, -1.0917969, -0.22106934, 0.96484375, 0.51464844, -1.0683594, -1.2890625]}, "B08JTM7VNS": {"id": "B08JTM7VNS", "original": "Brand: Hisencn\nName: Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12\" for 22.5'' Smokers, Performer Premium Grill\nDescription: \nFeatures: \u3010Compatibility\u3011Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate.\n\u3010Dimensions\u301114.5\" L (the handle part is included) x 12\" W x 1.5\" H.\n\u3010Material\u3011Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill.\n\u3010Features\u3011Seals the moisture and flavor of barbecue and retain the original flavor of barbecue.\n\u3010High-quality\u3011Provides exceptional heat retention and distributiensuring evenly cooked food.\n", "embedding": [-1.6015625, 0.8066406, 0.25146484, -1.5039062, -0.038085938, 0.62646484, 1.0917969, -0.42041016, 0.7246094, 1.5332031, 2.2597656, -0.09460449, 0.05810547, -3.0722656, -0.32250977, 0.08135986, 1.3378906, -0.42919922, 1.5146484, 0.85058594, 2.2832031, 1.1005859, 0.7314453, -0.6743164, 0.84716797, 1.8984375, 4.671875, -3.1425781, 1.2988281, -2.6757812, 2.8828125, -0.80029297, 1.78125, 0.8833008, -2.1386719, -0.15759277, -2.2480469, 2.453125, -1.1464844, 0.37426758, -0.5073242, 0.11541748, 0.4025879, 0.02684021, -2.7167969, 0.81640625, -0.3479004, 2.2753906, -1.921875, -0.08300781, 2.9628906, 1.8808594, -0.27978516, 0.890625, -0.70703125, 3.9257812, 0.5151367, -1.0253906, 0.6435547, -0.8569336, 2.6894531, 0.32739258, -1.7148438, -0.17602539, -0.05895996, -0.079833984, 1.4091797, -0.43774414, 0.9121094, -0.86572266, 1.4277344, -0.94091797, -2.375, -0.29956055, -0.5698242, -1.8486328, -1.1464844, 1.109375, 0.38842773, -0.5439453, -2.1992188, 2.7441406, 0.56884766, -2.34375, 0.11199951, -0.75390625, -0.8613281, -2.2363281, 1.9257812, -1.2597656, 0.20166016, 2.5351562, -1.796875, -3.7734375, 2.2382812, -2.1425781, 0.32348633, -1.2744141, -1.9238281, 0.9223633, -1.3164062, 0.17346191, -1.390625, 0.57714844, -3.8027344, -1.1845703, 1.4042969, 0.52783203, -0.2208252, -0.48046875, -1.5585938, 0.45874023, -0.23925781, 1.9257812, 0.6567383, 0.044158936, 1.1337891, 0.37695312, 1.1357422, 0.6982422, 3.1210938, 0.13537598, -0.3310547, -1.8710938, -0.8588867, -0.64746094, 0.12261963, 0.7631836, 3.6210938, -2.3828125, -0.3479004, -0.46020508, 2.8535156, -0.40771484, -1.1064453, -1.6484375, -1.2539062, 1.1191406, -2.1953125, 1.4003906, -0.48339844, 0.9916992, 1.3847656, -0.07891846, -2.9355469, 0.31713867, -0.20666504, -0.017242432, -0.73095703, -0.47070312, 0.74121094, -1.8867188, -0.8803711, -0.77734375, 2.4238281, -0.6269531, -0.51123047, -0.8432617, 1.8320312, 1.6210938, 1.3398438, -1.3164062, 0.6542969, 1.9140625, 1.4414062, 1.0615234, -0.9379883, 2.6074219, 0.016860962, 3.6269531, 0.77490234, 0.70947266, 0.9526367, -0.87890625, 1.8193359, -1.2197266, -0.9404297, 1.9482422, -0.9638672, 0.25756836, -1.0175781, -4.078125, -0.007423401, -0.28320312, 0.4650879, -0.49121094, -0.3190918, 0.77441406, 1.8632812, 0.06500244, 0.083862305, -0.12420654, 1.671875, 0.30908203, -0.28173828, -0.17907715, 0.30297852, -2.9179688, -0.23828125, -0.73828125, -1.9082031, -1.1630859, 1.1396484, -0.20739746, -1.0537109, -2.6816406, -1.0224609, -0.59814453, 1.3583984, 1.3818359, 1.5498047, -2.4199219, 0.6928711, 1.2617188, -0.5834961, -0.59521484, 1.9287109, -1.0585938, 0.42358398, 1.0419922, -1.6582031, -0.89501953, 0.8457031, 3.1875, -0.04498291, 1.4511719, -0.12878418, 1.1328125, -2.2460938, -1.6289062, 2.6425781, 0.5366211, -0.4099121, 2.1992188, 0.29345703, 3.7578125, 0.46044922, -0.44873047, 0.077697754, 1.4833984, 0.08728027, 0.19665527, -2.6484375, -1.3808594, -0.7060547, 0.40112305, -2.6074219, 3.1621094, 0.5600586, 0.28027344, -1.0048828, 0.8881836, -0.12548828, 1.2744141, 0.30126953, 1.0107422, -1.5097656, 0.74609375, -0.84521484, -2.7109375, -1.0039062, -0.9667969, -2.1113281, 0.38549805, 0.2849121, -0.9272461, 1.6640625, 1.6513672, -0.8730469, -1.5488281, 0.6699219, 0.2130127, 0.5551758, -2.0058594, 2.78125, 1.9316406, -0.36547852, 0.62402344, -0.17651367, -0.578125, 0.3701172, 1.0673828, 1.0917969, -0.6796875, 0.44873047, 0.045166016, -0.3503418, -0.90722656, -1.1503906, 1.0683594, 4.09375, 1.4667969, -1.6904297, 4.3671875, -0.9667969, 1.3808594, -0.06707764, -0.8388672, -0.5786133, 2.0136719, 0.9770508, 1.5722656, 1.5185547, 1.9970703, -1.6230469, 1.3759766, 1.3779297, -2.5917969, -1.5195312, 1.7666016, -0.10223389, -0.8095703, -1.3330078, -0.2442627, -2.7460938, -1.4091797, 0.14794922, -1.8330078, -0.12634277, -1.3261719, 1.9394531, -0.12359619, -1.4736328, -1.7998047, 0.36572266, 1.0810547, -0.21008301, 1.5009766, 1.3125, -1.6503906, -0.44067383, -0.42358398, -0.8027344, -1.1679688, -2.7753906, -1.1259766, -0.25683594, -2.0800781, 0.72558594, -0.81640625, -0.29052734, 1.3984375, -2.359375, 0.9746094, -0.5019531, -4.3085938, -2.5390625, 0.42919922, -1.3105469, -0.7675781, -0.54296875, 0.7114258, -2.0136719, -5.1835938, -0.76123047, -1.2148438, 3.1992188, -0.18066406, -1.3925781, 1.109375, 0.7832031, -0.79589844, 0.83691406, 1.8183594, 1.8505859, 0.5595703, 0.4753418, -3.1113281, -0.17224121, -1.8261719, -0.3293457, -1.4003906, 0.5732422, -2.5742188, -0.8803711, -0.1204834, -1.6318359, 4.1679688, -0.022369385, 3.3007812, -0.45874023, 1.3710938, 1.1992188, -1.0009766, -2.6484375, 0.014015198, 0.9458008, -1.7880859, -0.72314453, -2.7519531, -1.7695312, -2.1308594, -0.25439453, -0.10205078, 0.35229492, -0.9199219, -0.31469727, -1.8583984, -1.9638672, -1.5859375, 1.0019531, -0.43041992, 0.39208984, -0.21289062, -1.6621094, -1.0283203, -0.93359375, -0.036102295, 2.2324219, -0.2644043, -0.040161133, 0.8676758, -0.38330078, 1.6865234, -0.5654297, -1.9199219, 3.1816406, 0.66845703, -1.4277344, 1.5058594, -2.1425781, -2.2890625, -4.0507812, 0.4609375, 2.6210938, -0.035888672, 1.1552734, 1.421875, 1.4550781, -0.074157715, 1.7744141, 2.0683594, -0.99316406, 0.72509766, 2.6035156, -0.29296875, -2.8378906, 0.9863281, -0.32592773, -2.796875, -1.1835938, 2.1640625, 1.7695312, 0.31835938, 1.0449219, 2.3378906, 0.2130127, -1.6240234, 3.4550781, 1.1464844, 0.6542969, 0.54248047, 1.6455078, 1.0732422, -0.28735352, 0.97753906, 0.6040039, 0.51660156, 2.0761719, 0.74316406, 0.6743164, -0.41210938, 0.57714844, -0.18395996, 2.3242188, -1.03125, 2.2617188, -1.3583984, -0.54541016, -0.060058594, -2.0214844, 1.828125, -1.2998047, -2.2636719, 3.0644531, -0.53125, -0.070739746, -0.63134766, 0.7661133, 0.9189453, -0.6586914, -1.3955078, -1.234375, 0.19091797, 0.3059082, -1.390625, -1.1962891, -1.5097656, 1.7880859, -0.9794922, -1.9404297, -0.83496094, 2.0332031, -0.012878418, -1.5224609, 0.34521484, 0.03137207, -0.18969727, 1.1728516, -0.52246094, -2.6738281, 1.5537109, -1.3857422, 0.46899414, 0.20861816, 0.0034294128, -0.3935547, -0.5996094, -0.83691406, 0.48706055, 1.7470703, 0.9628906, -0.4091797, -1.4423828, -1.2041016, -2.9980469, -1.8984375, 0.64941406, -2.3789062, -1.0800781, 0.16088867, 1.3095703, 0.2644043, -0.92285156, 2.7148438, -0.81884766, -1.6699219, 2.1796875, -1.6542969, -0.84814453, -3.3339844, -3.2070312, 1.2226562, -1.7802734, -0.5722656, 0.83496094, 2.2421875, -0.9790039, 4.21875, 1.2910156, -1.75, -0.9707031, -1.7988281, -0.39990234, -0.118652344, 1.1533203, 0.20056152, 0.2548828, -1.3378906, -2.4628906, 0.58935547, -1.5, 0.4897461, 0.6308594, -4.3515625, 0.24304199, -1.5371094, 0.6064453, -2.1386719, -0.11706543, -1.28125, 0.0033092499, 1.0537109, -0.14733887, 0.9790039, -0.4519043, -0.06793213, 1.5214844, 1.8134766, -0.09881592, -1.3242188, 1.0556641, 0.77001953, 3.0644531, -0.42089844, -0.75683594, -1.1699219, 0.6201172, -0.7211914, -0.99560547, -0.88134766, -0.10620117, -2.0898438, -1.2539062, -0.7133789, 1.4511719, 2.5644531, 1.6279297, -1.9960938, -0.8388672, -0.75439453, -1.4082031, -2.453125, -0.5883789, -0.7265625, 0.74560547, 2.4042969, -2.1210938, 2.6015625, -1.0800781, 0.8178711, -2.8398438, 1.5576172, 2.4785156, 2.1113281, 3.7304688, -2.3320312, 0.21020508, -0.6225586, -1.453125, -2.4511719, 1.3652344, -1.4306641, 0.046722412, 2.0722656, -0.5761719, -0.49316406, 0.16760254, -0.7324219, -0.15710449, -0.89501953, -2.4375, 0.14086914, -1.7304688, -0.8676758, 0.47192383, -0.15576172, 0.7089844, -1.1777344, -2.0039062, 1.0332031, 0.9326172, -1.5380859, 0.609375, 1.3457031, 0.1743164, -0.2421875, 1.5947266, 2.1816406, -1.78125, -0.22351074, -0.5234375, 0.82910156, -0.9741211, 0.39990234, 0.5175781, 1.5683594, -1.6230469, 0.30078125, 3.2734375, 2.3339844, 0.13305664, 3.6972656, 0.7475586, -2.9804688, 1.1542969, 1.9863281, -2.6386719, 0.60058594, 0.93603516, -1.1416016, 1.4404297, 1.1416016, -4.7304688, -2.0742188, 1.6855469, -0.7792969, 0.42797852, -0.028198242, -0.921875, 0.014144897, -3.1328125, -0.1953125, -0.22741699, -1.2353516, 1.2285156, -0.953125, -0.3623047, -1.5214844, 1.9462891, 3.8164062, -0.2722168, -2.4726562, 2.3222656, -0.94140625, -0.96191406, -0.76171875, -0.22595215, -1.671875, 0.40820312, 2.6972656, 2.4472656, 2.0625, 0.42700195, 3.21875, -1.1279297, 1.5576172, -0.35766602, 2.3847656, -1.0615234, -0.91308594, 0.62353516, -2.3164062, -1.1630859, -3.2636719, 0.5488281, 0.42504883, 1.1494141, 1.1162109, 1.4130859, -0.42260742, 1.3574219, -0.5107422, -1.5947266, -0.8222656, 0.6879883, 0.93408203, 0.8779297, 0.8027344, -0.16540527, -0.67333984, -0.10205078, 0.54248047, -0.9003906, 0.05718994, -1.6757812, -1.4414062, -1.8505859, -0.7294922, -0.068359375, -0.60839844, 0.921875, 0.73339844, 1.0732422, -3.2636719, 0.12011719, 1.1269531, -2.03125, 0.19470215, 0.9277344, 0.72753906, 1.203125, 0.43530273, 1.7607422, -1.4755859, 1.5498047, -1.0058594, -0.93115234, 0.8496094, -1.3925781, 3.3164062, -1.0449219, -1.2832031, -0.7114258, -1.2080078, 1.5546875, 0.82714844, -0.98095703, 1.2910156, 1.0556641, -0.37524414, -3.046875, -0.37817383, 0.8232422, 1.9482422, -0.19262695, 0.10180664, 0.7998047, -0.96533203, -2.4101562, 0.84033203, -2.734375, -0.94628906, -0.98779297, 0.3786621, 2.7753906, -0.48266602, 0.026062012, 1.8740234, 0.07757568, -0.95166016, 0.1706543, -1.7089844, 3.4472656, 2.0039062, -0.9638672, -1.3173828, -0.6777344, 0.3671875, 0.97558594, 0.7314453, -3.1347656, 0.79248047, -2.015625, -0.36157227, -0.1439209, 1.1083984, 0.6123047, -1.0556641, -0.53515625, 1.6074219, 2.7011719, -1.4814453, 2.5527344, 1.0927734, 1.28125, -2.265625, 3.90625, 0.9848633, 0.578125, 0.79345703, -2.8359375, 2.4257812, 0.03149414, -0.3269043, 0.29541016, -1.3232422, -1.6269531, -1.4873047, -2.9121094, -2.46875, 1.1757812, -0.06451416, -2.4628906, -0.38256836, 1.7832031, -1.7880859, 2.8671875, 1.2919922, 2.3457031, -1.6318359, 0.060791016, -3.3398438, 0.09661865, 1.7392578, -1.1240234, -0.5419922, 1.9423828, 0.29492188, -1.4082031, 0.37719727, -0.09576416, 1.8623047, 2.0917969, 3.1835938, 0.56591797, 2.6425781, 2.375, 0.92285156, 3.5214844, 1.96875, -0.35473633, -1.4541016, 1.8486328, 0.8696289, 0.8071289, -1.0898438, 2.4101562, -1.1123047, 0.6953125, 0.27929688, -1.1171875, 2.1074219, -3.1699219, -0.40820312, 0.98779297, 1.8955078, -2.140625, -0.88623047, 0.21862793, -0.12841797, 0.20812988, -0.3569336, 1.8896484, 0.7026367, 0.43432617, -0.5605469, 0.022567749, 2.2050781, -3.9882812, 0.61328125, 1.0146484, -1.2109375, -2.3847656, 2.0566406, 1.5761719, 0.5732422, 1.2060547, -0.23449707, 2.2363281, 0.15576172, 0.97216797, -0.87646484, -1.1298828, 1.0742188, 2.0644531, 0.34643555, -1.359375, 0.8383789, -1.7060547, -2.4023438, -0.68115234, 1.7304688, 1.0576172, 2.4023438, 1.5849609, -2.8886719, 3.015625, 0.101745605, 1.0585938, -1.2519531, 0.12902832, -0.34399414, -1.9970703, -2.3261719, -1.6005859, 0.32983398, 0.7949219, 1.2363281, -0.89941406, 1.4580078, 0.8833008, 2.203125, 1.7949219, 1.6083984, -0.32592773, 1.8173828, 0.11047363, 1.1669922, -2.375, -0.5449219, -0.9404297, 1.5732422, -0.28320312, 0.39624023, 2.1210938, -1.4365234, -2.8164062, 0.016571045, 0.6816406, 1.4287109, 0.0018005371, -1.9277344, 0.46118164, 1.7832031, -2.6796875, -0.95214844, 3.0917969, 1.1005859, 1.7080078, 2.2148438, 1.2939453, -2.4882812, 2.3730469, -0.9428711, 1.4257812, 0.28125, -0.40112305, 1.6181641, 0.5644531, -0.17321777, 1.1035156, 2.0605469, 1.1279297, -0.6635742, -0.32470703, -0.8730469, -0.27661133, 0.41723633, -0.6503906, -0.8613281, -2.3144531, -0.018875122, -1.1445312, 0.9345703, 3.4804688, 0.47583008, -0.21411133, -2.0761719, -1.0126953, -0.9135742, 0.24133301, -1.4033203, 1.7763672, 3.2910156, -0.3737793, -1.0048828, -1.6289062, -3.1074219, -0.81884766, -1.7734375, 1.4580078, 0.5517578, -1.9375, -0.36328125, 0.56396484, 1.2216797, -1.2177734, -0.80908203, -0.91552734, -1.3359375, 2.5253906, -1.8574219, 1.6953125, -0.47265625, -0.5654297, 0.85253906, 2.4121094, 0.38745117, 1.4648438, 0.4362793, 2.9550781, 0.6357422, -4.0703125, 0.7993164, 0.48217773, 3.3339844, 0.36889648, -0.107177734, 0.57421875, 0.17749023, -0.12902832, 0.046875, -0.921875]}, "B005MBHFJG": {"id": "B005MBHFJG", "original": "Brand: UCO\nName: UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50\nDescription: UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:\nFeatures: Burns up to 1 minute, 5X longer than regular matches\nContains 50 safety matches\nLonger length (3.75\") keeps fingers from getting burned\nCarbonized match stick for safer fire starting\nIdeal for campfires, fireplaces, stoves, BBQ's, lanterns, candles, and more\n", "embedding": [-1.7695312, -1.203125, 1.6357422, 0.2685547, -0.8515625, -0.84277344, 2.7207031, -1.4863281, -0.45703125, -0.7109375, -1.4238281, -0.74853516, -1.1748047, -2.6640625, 0.4494629, -1.3066406, -1.2900391, 1.7363281, 1.1601562, -0.5551758, 0.06982422, -2.4257812, 2.1796875, -2.5683594, 1.2021484, 0.052001953, 3.1601562, -3.5, -1.6103516, -1.7978516, 0.89697266, 2.328125, 1.0263672, 0.97314453, -3.5957031, -0.73291016, -2.4902344, -1.8671875, -2.3925781, -1.1923828, 0.41845703, -0.5498047, 0.4885254, -0.29248047, 0.2734375, -1.8125, 1.2333984, 1.0009766, -0.81347656, -0.1661377, 0.9086914, 1.4931641, 0.87158203, -0.61816406, -2.2109375, 3.8554688, -0.9160156, -0.83154297, 2.53125, 1.0634766, 1.8642578, 0.40527344, -1.1132812, 1.5185547, -1.1142578, -0.29638672, -1.5390625, -2.4707031, -0.56103516, -1.15625, 1.109375, -0.022109985, -0.6401367, 1.8671875, 1.3466797, 1.7294922, -1.2041016, 3.1699219, 1.0976562, 0.3503418, -0.4230957, 4.515625, 1.9365234, 1.4794922, -0.50097656, -0.22924805, -2.5585938, 0.70751953, 0.8959961, 2.390625, -1.7910156, 0.041992188, 0.39404297, -3.7792969, 1.8232422, -1.4521484, 0.9301758, -0.63916016, -0.09753418, -0.96777344, 0.9091797, 1.1542969, -0.08392334, 0.1015625, -0.8378906, -1.1044922, 0.4501953, 1.1572266, 1.3300781, 1.5908203, -1.7607422, -1.3857422, 1.3554688, -0.43652344, 1.3398438, 1.6005859, -1.6640625, -0.43237305, 2.53125, -0.9819336, 2.9667969, -0.19494629, 1.4736328, -1.9150391, 2.8261719, 1.2988281, 0.30664062, 0.66015625, -0.78222656, -1.0634766, 0.5395508, -1.3496094, -0.24450684, -0.16931152, -2.7675781, 0.05456543, -0.85595703, -1.2636719, 0.6669922, -1.0751953, -4.5429688, -0.7114258, -0.9350586, -0.5234375, -2.9140625, 1.140625, -1.8857422, 2.8652344, 0.6586914, -1.5927734, 0.44140625, -0.33251953, -0.93359375, -3.1289062, 1.7685547, 0.09442139, 0.84277344, -1.5800781, 1.7294922, 1.6132812, -1.7402344, -3.0449219, 1.8261719, 0.7885742, -1.5341797, -0.38623047, 0.24902344, 0.07757568, -0.38500977, 1.4150391, -1.1767578, -1.4101562, -0.3425293, -0.80371094, -0.640625, -0.89160156, -0.7402344, 0.55078125, 0.64208984, -0.5415039, -2.125, -1.296875, 0.83740234, 0.71484375, -0.6225586, 1.1220703, -0.72216797, -3.1660156, 0.1616211, 0.2775879, -1.5615234, -0.1616211, -1.7626953, -0.5527344, 0.051635742, 0.7480469, -1.7978516, -3.4042969, -0.85595703, 0.9091797, -2.4121094, -0.17126465, 2.1035156, 1.7089844, -2.2089844, -0.7260742, -0.6357422, 2.4609375, 2.6230469, 1.71875, -0.5, -0.82666016, 1.2851562, 0.069885254, -1.1425781, -3.390625, -0.14953613, 0.8911133, 1.3134766, 3.0683594, -2.2851562, -1.6787109, 1.7910156, 2.9121094, -0.7739258, 3.3261719, 0.8833008, -0.3154297, 0.27124023, -2.7285156, 1.1035156, -1.0166016, -1.5341797, -0.14807129, 0.41503906, 1.1259766, 0.64990234, -2.1484375, 1.9980469, -1.7529297, -0.44262695, -0.63378906, -0.23840332, 1.6591797, 1.1025391, 2.1328125, 1.5234375, 1.2988281, 3.3457031, -1.7900391, 0.9868164, 0.7792969, 0.39453125, 0.046661377, -3.4023438, -1.1181641, -1.3701172, -0.23937988, -0.18664551, -0.20703125, 1.7695312, 2.8789062, 1.0039062, 0.43725586, -1.2353516, -1.5849609, -1.34375, 0.7026367, -0.72216797, -1.0800781, 0.5917969, 0.65625, 1.9980469, 2.3320312, 2.7109375, -1.3574219, 1.1835938, -0.46044922, 2.2792969, 2.3867188, 0.48632812, 2.0175781, 2.8125, -2.3886719, -1.2314453, -0.89208984, -0.38330078, -2.1933594, -1.1220703, 0.8901367, 3.6738281, -2.0429688, -3.4902344, 2.8769531, -2.7167969, 0.9970703, 0.23095703, 2.0761719, -0.43041992, -2.7226562, 3.9121094, 0.95214844, 1.3828125, 0.9453125, -0.7915039, 1.6416016, 3.7539062, -2.2285156, -0.32055664, 0.09576416, 0.05444336, 0.7919922, -0.09185791, 0.054382324, -2.5175781, -0.54345703, 1.5498047, -0.3173828, 3.3457031, -0.09661865, -0.10827637, 1.3730469, -0.27416992, -1.3173828, -0.07739258, 1.0087891, 1.1132812, 2.2070312, -0.75390625, 1.078125, -0.36914062, -1.9755859, -0.3125, 0.28100586, 0.55078125, -1.7568359, 0.8286133, -3.5625, 1.2568359, 0.45410156, 2.6542969, 3.7714844, -2.1347656, 0.68603516, -0.8461914, 0.35205078, 0.03781128, -0.7470703, -1.1542969, 1.0458984, -0.14135742, 4.125, 0.5004883, -4.53125, 1.8701172, -1.1484375, 0.62890625, 0.8852539, -1.0810547, 0.42529297, -0.06488037, 1.4189453, 1.4677734, 1.3515625, 0.4753418, -1.3193359, -0.4885254, -3.8203125, 2.765625, -1.4882812, -0.16540527, 0.2142334, 2.5019531, -2.5117188, -2.4960938, 2.5625, -0.21350098, 0.5678711, 0.23266602, 2.6640625, 0.2121582, -3.2207031, -0.09265137, 2.59375, -0.43066406, -0.5859375, 0.4411621, -2.0371094, -1.8056641, -4.0078125, -1.5195312, -1.1132812, -2.1914062, 0.51953125, 1.9716797, 1.5742188, -0.038513184, -1.6376953, -1.0898438, -0.6645508, -0.6533203, -0.1138916, 1.3027344, 2.6855469, -1.6455078, -0.7089844, 2.7265625, -0.13757324, 2.4042969, -0.6796875, 0.71875, 1.7939453, 0.24499512, 0.32592773, 0.07165527, -3.2089844, -0.5732422, 1.0556641, 0.77978516, 0.56689453, -2.5410156, 0.32202148, -0.03475952, -0.8261719, 2.0253906, -1.0810547, 1.9423828, 1.7158203, 2.3476562, 1.2373047, 1.4394531, -1.7666016, -0.30737305, 1.9375, 1.7138672, -1.3173828, -1.6035156, 1.6572266, 0.1895752, -4.8203125, 0.29370117, -0.3696289, -0.016342163, 0.23046875, -0.6982422, 0.1640625, 2.2148438, -0.3894043, -0.060546875, -0.16784668, -1.0664062, 2.0351562, 0.23925781, 0.024505615, 2.3417969, 1.9960938, 3.46875, 2.6035156, 2.5585938, 2.2832031, -2.3476562, -2.5703125, -0.9248047, 0.51708984, 2.2597656, 0.59033203, 2.7070312, -0.19360352, -0.7060547, -0.50146484, -0.84765625, 2.8183594, -3.2421875, 0.7441406, 2.0175781, -1.7226562, 0.07635498, 1.1845703, -0.09692383, 0.66503906, -1.7578125, 0.8388672, 0.32714844, -0.5493164, -0.47045898, -1.1884766, 1.2910156, -1.1455078, 1.8056641, 0.8378906, -0.25805664, -1.8291016, -0.47436523, -2.0859375, -0.84375, -2.1347656, 1.5322266, -1.8417969, 4.390625, -0.9526367, -4.6953125, -0.11859131, -3.2128906, 0.12561035, 0.0037269592, 1.015625, -2.5957031, -1.4863281, -1.9599609, -0.8745117, -1.0117188, 1.0820312, 1.1152344, 1.8720703, 3.2695312, -1.5888672, 1.0175781, -0.99316406, -2.5527344, -0.2788086, 2.8691406, -0.2878418, 1.6904297, 1.4248047, 3.2558594, -0.9536133, 2.140625, 3.0136719, -0.8691406, -0.9790039, 0.84375, -1.9375, -0.45263672, -0.6870117, 0.84716797, 1.3056641, -2.9550781, -0.78222656, 0.7392578, 0.018035889, 0.18859863, -2.234375, -2.3242188, 1.0839844, -3.5449219, -2.8164062, 2.0097656, -1.0683594, -1.3886719, -2.234375, -3.0644531, 0.12695312, 0.8105469, 1.6181641, -2, 0.30566406, -0.3828125, 0.47558594, 1.7763672, 1.0048828, 0.67089844, 1.8964844, 0.72314453, -0.093444824, 2.1523438, -0.16748047, 0.47558594, 2.328125, 1.7548828, 0.9458008, 0.22631836, 1.8085938, -2.8046875, 0.70996094, -0.031219482, -0.89990234, -0.10235596, 0.62158203, 1.0478516, -1.7871094, -1.7666016, -0.7788086, 0.14758301, 1.9433594, -0.8144531, 2.9375, 2.5117188, 2.0429688, 1.6816406, 1.6738281, 2.3652344, -0.5571289, 0.17358398, -1.015625, -1.0576172, -2.0585938, 1.5390625, -0.38842773, -1.4863281, 1.0068359, 1.0263672, 0.37426758, 0.7260742, -1.3457031, -0.07244873, 1.6259766, -1.6259766, -1.3330078, -1.796875, -2.5703125, -0.95654297, -0.82666016, -0.37817383, 1.2138672, 0.5444336, -1.7089844, 2.734375, 0.18286133, 0.16235352, 0.69140625, 0.9770508, -0.99609375, 0.063964844, -0.7739258, 2.4511719, -0.8305664, -0.6635742, 1.4394531, -2.4433594, -0.5131836, -0.9379883, -0.5576172, -2.4960938, -0.45141602, 0.15209961, -0.17175293, 1.2353516, -0.4802246, 0.72509766, 1.8886719, 1.8525391, -1.5888672, 0.78515625, -0.2602539, 0.93652344, 1.7285156, 1.5205078, -0.64404297, -0.7817383, 2.71875, 1.3066406, -1.7724609, 3.1601562, 1.203125, -1.0439453, 0.17504883, 1.2988281, -2.3613281, -0.2322998, -1.7001953, -2.84375, 2.75, 0.8613281, -0.46435547, 1.2988281, 1.7070312, -0.72216797, 2.5664062, -1.4082031, -0.2915039, -1.6044922, -1.3046875, -0.9980469, -3.9277344, 1.0322266, 0.77441406, -1.0410156, 0.6894531, -1.2880859, -0.5761719, 0.9433594, 1.7841797, -1.8398438, 0.44018555, -1.0263672, -0.5722656, 1.0292969, -2.7207031, -1.4287109, 0.43652344, -0.8754883, -0.49560547, 2.8457031, -2.4960938, 1.6601562, -0.8515625, -0.1920166, -1.2841797, 1.3134766, -0.55371094, 0.23339844, 3.8789062, -1.1474609, -0.5776367, -2.2636719, 0.55810547, -0.5366211, 1.5351562, -0.9482422, -0.1538086, -0.22705078, 2.3339844, -2.1015625, -0.46948242, -0.29589844, -0.54589844, -0.26757812, -1.0693359, -2.7363281, -0.6796875, -0.97802734, -1.0810547, -0.5913086, -0.82177734, -0.86279297, -1.1953125, -0.1352539, -2.7988281, 1.4501953, -1.1484375, 2.2675781, -2.1992188, 2.3164062, -1.8671875, -2.7167969, -3.7285156, 0.5419922, -1.7939453, 0.2388916, 3.5253906, -0.12780762, 2.2578125, 3.015625, 0.04928589, 2.1484375, 0.89990234, -1.5019531, 1.1796875, -1.4345703, -1.5029297, 2.7695312, 0.69140625, -0.77490234, 1.4384766, -1.75, -0.69140625, -0.2602539, 0.6113281, 3.2539062, -0.9189453, 1.2880859, 0.9848633, 1.9248047, -0.45288086, 0.3701172, -0.099487305, -1.8876953, -0.10290527, -4.0429688, 0.022750854, -0.59716797, -1.5341797, -0.8051758, 0.13769531, 2.5332031, -0.054779053, -1.1464844, 2.5390625, 0.86816406, -1.0263672, -1.5820312, 1.4433594, 1.1611328, 2.0800781, 0.23693848, -2.0722656, -0.017532349, -1.4384766, 0.77441406, 3.4492188, 0.19506836, -0.56689453, 2.4589844, -2.6875, -1.7109375, -1.0996094, 0.58935547, -0.484375, 1.921875, -0.4729004, 1.3339844, 2.0039062, -1.6875, -0.08227539, 1.21875, -0.8486328, -3.2246094, 1.0742188, 1.4150391, -0.43041992, 0.6196289, -0.5727539, -1.7890625, -0.58154297, -2.1386719, -0.95751953, -2.2304688, -0.5541992, -1.5361328, 2.3964844, -2.0546875, -0.23706055, 0.12414551, -2.234375, -0.37597656, 0.18249512, -1.9677734, 0.1574707, 0.6176758, 1.0585938, -2.6816406, -1.9277344, -0.69384766, 0.7246094, 2.3242188, -1.0439453, -0.48901367, 0.12414551, -0.42504883, -2.0761719, 0.9716797, 0.8823242, -0.0859375, 1.5039062, 1.0966797, 0.7841797, 0.6503906, 2.5488281, 0.2836914, 1.1318359, -1.0078125, -2.0546875, 0.45581055, 2.7578125, -0.55371094, 1.0488281, 0.59277344, -0.21826172, 0.29492188, -0.20617676, -0.9199219, 0.25341797, 2.9648438, -0.23413086, 2.3632812, 1.1347656, 3.59375, -0.7607422, 0.546875, -0.21166992, 1.7832031, -1.2021484, 0.9711914, 2.7988281, 0.85009766, -0.9345703, 0.4951172, 0.87939453, 1.0966797, -2.484375, -0.16357422, 0.2166748, -2.5136719, 0.7324219, 2.0429688, 1.2548828, 1.2626953, 1.6826172, 1.6142578, 0.14318848, -0.059661865, 1.2919922, -1.53125, 0.32617188, 0.8173828, 0.8027344, -1.5009766, -0.9428711, -1.3710938, 0.265625, -4.2539062, -1.4169922, 1.7363281, -0.90771484, 1.9580078, 1.8730469, -0.86621094, 1.3164062, -0.34594727, -0.61279297, -1.0849609, -1.1103516, 1.0048828, -1.2695312, 0.67089844, -0.18811035, 1.3408203, 0.99609375, 3.2753906, -3.3007812, 0.3857422, 2.6367188, 0.44604492, 0.4116211, 2.0644531, -0.90966797, 0.94384766, 0.5571289, 1.7236328, 0.6894531, 2.4746094, 0.5415039, 2.9667969, 0.7495117, -1.9101562, 0.98876953, -0.359375, 0.66064453, -0.39624023, 0.6640625, -0.5239258, -0.81152344, -2.3984375, -2.2382812, -0.671875, -0.7324219, 2.203125, -0.0524292, 0.9980469, -1.4257812, 1.5351562, -0.33764648, -2.171875, 0.9194336, -1.0673828, -0.8105469, -1.3242188, -1.1025391, -0.65771484, -1.6103516, -0.80029297, 1.03125, 2.5605469, -1.2060547, -0.6542969, -0.4753418, 0.13537598, 1.2460938, -0.5839844, 1.1074219, -1.2402344, 0.12573242, 0.5048828, -1.5224609, -2.2734375, 0.85302734, 0.53222656, 0.3400879, 2.4160156, -2.0761719, -0.97802734, -1.3945312, -2.9960938, -0.54541016, 4.1523438, 0.45141602, 1.3720703, -0.5703125, -2.6835938, -2.9296875, -1.5332031, 0.70166016, 1.6572266, 1.2919922, 0.5029297, 0.7607422, 1.7617188, -0.40893555, -2.03125, 0.33862305, 0.61865234, -0.7050781, -0.3293457, 1.5703125, -0.040130615, 1.5224609, -1.1425781, 1.6943359, 2.7460938, 2.3242188, 1.0009766, -0.8574219, 0.2355957, -2.625, 0.088012695, -1.5390625, 1.9697266, 1.0361328, -1, 1.3662109, -3.0878906, -1.4580078, -1.6201172, 0.055389404]}, "B07FMQ3PS1": {"id": "B07FMQ3PS1", "original": "Brand: MVZAWINO\nName: Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12\" Stainless Steel\nDescription: For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
          Enjoy BBQ party with your families & friends.

          Features:
          Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
          Burns/Smokes for up to 5 hours.
          Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
          You can smoke anything from cheese to steaks!
          Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
          Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
          With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
          Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
          Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

          Specifications:
          Color: Silver
          Material: 304 stainless steel
          Style: Hexagon design
          Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01\"
          Brush length: 30.5 cm
          Brush hair length: 20 cm
          Hook length: 13 cm
          Hook opening diameter: 3 cm

          Package included:
          1 x Pellet Smoker Tube for Any Grill
          1 x Brush
          1 x Hook
          \nFeatures: FOR ANY TYPE SMOKER \u2013 This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more.\nUP TO 5+ HOURS BILLOWING SMOKE \u2013 Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours.\nSAFETY MATERIAL & REPEATEDLY USE \u2013 This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use.\nIMPROVED HEXAGON DESIGN \u2013 This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food.\nGREAT GIFT & FREE BONUS ITEMS \u2013 A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.\n", "embedding": [-2.734375, 1.8447266, 2.1796875, -0.43310547, 1.2617188, -0.57128906, 2.2714844, 0.35180664, 0.39868164, 0.6274414, 0.13500977, -1.1357422, 0.3178711, -2.5429688, 0.6489258, -0.46728516, -1.4101562, -0.23266602, 1.2978516, 2.9746094, 1.0087891, 2.2929688, 0.953125, -1.7929688, 2.8359375, 0.84472656, 3.4316406, -1.9912109, 1.6728516, -1.5820312, 0.04260254, 0.29223633, -0.6347656, -0.27319336, -3.3535156, -1.2890625, 1.1210938, -0.2763672, -2.078125, 0.03475952, 0.6640625, 0.37646484, 1.7236328, 1.46875, -4.4492188, -0.38061523, -0.94384766, 1.0742188, -0.98779297, -0.7441406, 0.44189453, 2.2011719, -0.3269043, 1.0927734, -1.3583984, 1.1875, -0.28442383, -3.1328125, 0.21447754, -0.28198242, 0.13830566, -0.53759766, -1.5166016, 0.5307617, -1.78125, -0.81640625, 0.51171875, -1.59375, 0.2401123, -1.4951172, 0.93652344, 1.1337891, 0.65771484, 1.3105469, -1.9482422, -1.2363281, -3.3339844, 2.46875, 0.11657715, -0.025772095, 0.11035156, 2.8691406, -1.1865234, -0.058746338, 0.07635498, -0.45947266, -1.2646484, 2.3632812, 2.21875, 0.6904297, -1.1962891, 1.7089844, -1.3291016, -3.65625, 1.9394531, -1.9160156, -0.4560547, -0.031173706, -2.5722656, 0.61816406, -0.5732422, 0.671875, -0.95703125, -0.93115234, -1.1787109, -1.9677734, 0.031707764, 1.6201172, -2.2207031, 0.86279297, -1.1953125, 1.5615234, 0.6953125, 1.6123047, 2.2402344, -0.77978516, -0.9350586, -0.46069336, 1.7695312, 0.68603516, 4.3476562, 0.92871094, 0.8901367, -1.5126953, 0.77001953, 0.69873047, -0.8178711, 0.7910156, 4.7382812, -1.7412109, -1.0136719, -1.9658203, 0.9746094, -1.6123047, -0.9628906, -1.7763672, -0.31079102, -0.33569336, -0.60253906, -1.3671875, -2.9101562, 1.4306641, 1.2402344, -2.2558594, -4.6328125, -0.00092315674, 1.2089844, 1.3417969, 1.2509766, -2.2851562, 2.7285156, -1.7724609, -0.61621094, -1.3974609, 3.0527344, -1.0019531, 0.51464844, -1.2373047, 1.9375, -0.24975586, 1.5996094, -1.6367188, -1.8105469, 0.9995117, -0.87158203, -3.9960938, -1.2939453, 1.5351562, 1.6875, 2.9824219, -1.0302734, -1.1513672, -0.1182251, -0.7114258, 1.6845703, -1.8242188, 0.65625, 1.8339844, 0.2705078, -1.015625, -1.6210938, -2.5, 1.3173828, -0.1574707, -0.1194458, 0.6152344, 2.9511719, 1.3144531, 1.7460938, -1.4658203, 0.5102539, 1.5947266, -0.9794922, 1.3193359, 0.05706787, -1.2324219, -1.0527344, -0.84472656, 1.9560547, 0.099609375, -0.9277344, -0.56347656, -0.75683594, -0.2487793, -2.5507812, -2.1074219, -1.3115234, -0.8876953, 0.45214844, 2.7734375, 0.828125, -0.9794922, 2.9238281, -0.20129395, -0.49853516, -1.8212891, 0.9580078, 0.10736084, 1.6132812, 1.4619141, 0.033721924, -0.95166016, -0.68603516, 2.2363281, 1.3925781, 3.2695312, -0.7006836, 1.7685547, -1.4501953, -1.2431641, 2.65625, -0.7636719, -0.94091797, -0.37060547, -0.3894043, 1.3447266, 2.0605469, 0.23925781, -0.30395508, 1.5224609, 1.0908203, -0.97021484, 0.12792969, -2.3769531, -1.9443359, -0.85839844, -1.6611328, 1.2871094, 1.6621094, -0.06591797, -2.6015625, 1.5751953, 1.3173828, -1.6201172, -0.50341797, 0.36328125, -0.97509766, 1.3681641, -0.27954102, -1.6953125, 2.7539062, -0.08166504, 1.1787109, 0.79248047, 0.8623047, -0.5991211, 2.9882812, 0.046142578, -2.8789062, -1.2675781, 0.07128906, -0.021392822, 0.703125, 0.07849121, 2.4726562, 1.1191406, -2.0273438, 1.2382812, 2.6230469, 0.75878906, 1.1035156, 1.2587891, 2.3964844, -2.890625, -2.1171875, -1.7275391, 0.7416992, -2.5371094, 1.0185547, 0.98535156, 5.0273438, 1.3759766, -2.0917969, 1.3144531, -0.2932129, 0.94970703, 0.4555664, -0.52001953, -0.36010742, -0.21582031, 0.99365234, 0.0501709, -0.6220703, -0.04534912, -0.98828125, -1.3847656, 2.4121094, -0.7734375, 0.45043945, -0.63623047, -1.0273438, -0.3017578, -0.81396484, -1.4199219, -2.5585938, -0.29956055, 1.4169922, -1.0136719, 1.2128906, -0.10333252, 1.9667969, 1.0185547, 0.4482422, -2.171875, -0.9213867, 2.2128906, -0.6254883, 2.9296875, -0.78759766, -1.7119141, -0.32202148, -0.35375977, 1.7177734, -2.0410156, -2.6914062, -0.85498047, -1.234375, -1.7412109, -0.72558594, -1.6201172, -2.1035156, 1.1494141, -1.6835938, 0.57373047, -1.9990234, -1.9960938, -0.5385742, -0.9423828, 0.4140625, 1.7597656, -0.82177734, 2.625, 0.73876953, -5.4726562, -1.2695312, 1.6230469, 0.19543457, 0.5317383, -1.1552734, -0.25268555, 0.08642578, -1.0205078, -0.7788086, 0.92285156, 2.4726562, -0.453125, -0.6142578, -2.1914062, 1.5820312, -1.5957031, 0.29785156, -0.5805664, 1.2089844, -1.3916016, -1.6142578, 0.7675781, 0.54541016, 2.4941406, -0.107666016, 1.3427734, -0.29907227, -0.31347656, 0.20288086, -0.5708008, -2.5292969, -0.23168945, 0.88623047, -1.0957031, -1.1123047, -3.0878906, 0.07354736, -0.38452148, -1.3613281, -1.2617188, 1.8808594, -0.8725586, 0.8911133, -2.3984375, -1.9394531, 0.6152344, -1.1220703, -0.04776001, -0.89941406, -0.8051758, 0.19567871, 0.045440674, -0.9321289, 1.1269531, 1.3828125, -1.3271484, 1.1103516, 2.0878906, 1.0927734, -0.9707031, 1.1533203, -1.6611328, 1.7021484, -0.7241211, -2.8867188, 1.5302734, -0.0067443848, 0.4111328, -2.40625, -0.9736328, 3.3710938, 2.1152344, 1.6972656, -0.6220703, -0.40893555, 1.1162109, 0.2939453, 1.2880859, -1.0078125, 1.0556641, 3.5585938, -2.6464844, -1.53125, 1.2246094, 1.4111328, -3.46875, -2.5625, 2.7871094, -0.34106445, 2.0195312, 1.4091797, 1.3447266, -0.09576416, -0.86621094, 2.1542969, 2.1679688, -0.9790039, -0.16772461, -0.52734375, -0.56396484, 0.073913574, 0.71875, 1.8359375, 0.13256836, 1.6289062, 2.9121094, 0.69970703, -1.5058594, 0.018096924, -1.6660156, 1.6640625, -0.0769043, 5.0742188, -0.09613037, -0.046203613, -0.29077148, 0.5053711, 1.5927734, -1.9404297, -1.2021484, 2.5859375, 0.22216797, -0.95947266, -0.25, 0.94140625, 0.90234375, -2.1953125, 0.74072266, -0.75634766, 1.0244141, 2.3203125, -0.48364258, -2.5, -1.5117188, 1.3085938, 0.11352539, -1.1455078, -0.46435547, -0.44604492, -1.5859375, -1.3994141, -0.4645996, 1.515625, -1.5859375, 1.8916016, -2.3867188, -1.2109375, 1.3496094, -1.8330078, 1.3505859, -0.15258789, 0.35083008, -0.52685547, -1.0126953, 0.6816406, 0.70166016, -0.17053223, 0.82666016, -0.6689453, -2.8339844, -0.6020508, -2.4746094, 0.24377441, -0.43920898, -3.9375, -0.67041016, 0.28125, 2.5703125, 0.11816406, -0.35083008, 2.8378906, 0.9951172, -0.57958984, 1.9736328, -2.7578125, -0.28125, -4.2695312, -3.6289062, 2.4316406, -1.6425781, -0.57910156, 3.8378906, 0.53222656, -0.049591064, 1.9482422, 1.9697266, -2.9199219, -1.1171875, -1.6376953, 0.9042969, -0.11645508, -0.98535156, 2.0371094, 1.3955078, -2.8300781, -0.94628906, -1.2871094, -0.53466797, 0.5102539, 1.3457031, -1.8886719, 1.4667969, -2.2539062, 0.34375, -0.01675415, -0.41723633, 2.2363281, -1.0263672, 1.2207031, 0.12231445, 2.2402344, 1.9013672, 1.9072266, 0.18774414, 0.36328125, 0.30249023, -0.066467285, -0.9794922, 1.5800781, 3.3554688, -0.40625, -1.0820312, -1.6259766, 1.1884766, -0.23815918, -1.3632812, 0.0012683868, -0.3371582, -3.8164062, 0.86376953, 0.3232422, 1.5019531, 1.1894531, -0.90478516, -3.4648438, -1.1806641, -0.4753418, -4.140625, -1.7089844, 0.44628906, 0.42089844, -1.8076172, 1.1484375, -1.1982422, 0.98583984, 0.9082031, -0.76904297, -1.3857422, 1.5078125, 1.7871094, 2.8398438, 3.5195312, 0.008728027, -0.83251953, -0.90478516, -1.7509766, 0.8457031, -0.32250977, -0.001537323, -2.125, 0.65478516, 0.4411621, -1.3144531, -0.4897461, 1.0839844, 1.3759766, 0.8540039, -1.8505859, 0.62060547, -2.4902344, -2.3007812, 1.5839844, -1.375, 2.7265625, -1.6933594, -0.45361328, -0.4399414, -0.053497314, -0.9682617, 1.1464844, -0.734375, 0.26513672, 0.9707031, 1.3759766, 2.1679688, -1.4482422, 0.49975586, -0.51708984, 2.3886719, -0.4543457, 1.5078125, 0.92285156, 0.5239258, -0.9472656, 0.4411621, 2.9785156, 3.9511719, -0.54296875, 4.0625, 0.6176758, -2.1757812, -0.7265625, 1.1552734, -1.8652344, 0.5361328, -0.4086914, -1.2246094, 0.6274414, -0.12390137, -1.5644531, -0.4091797, 2.5820312, -1.0439453, 1.6962891, -1.1806641, -2.1621094, 0.9863281, -1.9111328, -0.44604492, -2.6035156, -0.98046875, 1.5810547, 0.2644043, -1.1103516, 0.48046875, 1.1972656, 3.1230469, -2.2773438, -0.93847656, 1.0380859, -1.125, 1.2363281, -0.22741699, -2.2109375, -3.6679688, 0.5175781, 0.72021484, 0.609375, 1.7011719, 0.39038086, 3.015625, -2.53125, -0.20581055, -2.2929688, 1.8574219, -2.0097656, 0.5175781, 2.5546875, -4, 0.34838867, 0.36669922, 0.4501953, -0.07458496, 1.1162109, 0.13623047, -3.625, -1.3671875, 0.35961914, -2.6601562, -4.6914062, -2.2382812, 0.76708984, 0.22814941, -0.7182617, 1.5019531, 0.21716309, 0.5395508, 1.1445312, 0.67871094, -1.0419922, 0.36206055, -1.0410156, 0.11004639, -2.8789062, 0.5107422, -0.9980469, 0.15112305, 1.6240234, 0.3371582, 1.4199219, -2.6015625, -1.6259766, 1.3417969, -1.6025391, -1.7666016, 0.859375, 0.2722168, -0.80371094, 0.0066566467, 0.32714844, -1.9921875, 2.2734375, -1.9003906, 0.107177734, -0.29345703, -2.046875, 1.1015625, -0.96533203, -1.7226562, -0.42749023, 1.3964844, 1.8574219, -1.5830078, -0.12902832, 0.03842163, 0.74365234, -0.7993164, -0.8730469, -0.73876953, 0.16833496, 1.7392578, 1.8076172, 0.62646484, -2.1523438, -2.9433594, -3.5429688, -1.3720703, -0.5600586, 0.82958984, -0.19580078, 1.53125, 0.6269531, -0.3310547, 2.7734375, 1.1298828, -0.13867188, -1.2197266, 1.3808594, 0.5332031, 3.4941406, 1.9072266, -1.8583984, -0.5839844, -0.6982422, 0.99853516, 0.18554688, -0.55566406, 0.87353516, 0.75341797, -0.3635254, -1.1728516, -0.2475586, 0.85009766, 0.3642578, 2.0507812, -2.3320312, -0.4387207, 1.6083984, -2.2167969, 2.0996094, 1.5507812, 1.3056641, -0.99365234, 2.1933594, -3.3242188, -1.2119141, 2.03125, -0.79345703, 1.6738281, 1.7910156, -2.46875, 0.73339844, -1.6621094, -1.1552734, 0.18945312, -0.72558594, 1.0625, 2.9414062, -0.09320068, -1, -0.5883789, 3.3046875, -0.50390625, 0.42163086, 3.59375, 0.34228516, -0.80029297, 1.0605469, -0.8359375, 1.0449219, 2.8554688, -4.0546875, -0.14489746, 0.5493164, -0.5913086, -1.8125, 3.9882812, 2.3730469, 1.0126953, -0.7006836, 3.3515625, 1.8291016, 1.7470703, 2.2890625, -0.58984375, 1.0810547, 0.93652344, -0.88378906, 0.9238281, 1.4609375, 1.9326172, 0.74609375, 0.33789062, 2.1601562, -0.3232422, -0.8754883, -1.5253906, -0.32177734, 0.5786133, -3.7207031, 1.4550781, -0.75097656, -1.9892578, -3.2558594, -0.7963867, -0.73583984, -1.2822266, -1.0224609, -0.1541748, 2.9882812, 0.09063721, 1.0605469, 0.48168945, 0.2680664, -0.0040016174, -3.5859375, 0.6767578, 1.609375, -1.3945312, 0.8574219, 1.0927734, 0.11102295, 0.4411621, -0.99658203, -0.42285156, 1.5009766, 1.3144531, 2.8515625, 0.32006836, -0.68652344, -0.16784668, 1.7861328, -1.1679688, -1.421875, -0.18981934, -0.20935059, -2.671875, -2.203125, 2.0019531, 0.20397949, 1.4609375, 1.2744141, -2.2148438, 1.7539062, -0.5566406, -0.07019043, 0.021331787, 1.5048828, 0.390625, -0.8354492, 0.24291992, 1.2275391, 2.6308594, 3.6386719, -1.3457031, -0.6513672, 1.9433594, 0.41455078, 1.8154297, 1.8369141, 0.43066406, -0.025039673, 0.88916016, -0.93603516, 3.6757812, -0.20727539, 0.51904297, 0.2631836, 1.9853516, 0.7104492, 1.4453125, -0.70166016, 1.9853516, -0.11340332, 0.033203125, -3.03125, 1.1572266, 0.8457031, -2.6660156, -2.8066406, 0.2800293, -0.453125, 0.73876953, -0.62060547, 0.047973633, -1.3994141, 2.2363281, 0.22668457, -1.7392578, 0.6503906, 2.5351562, -0.92822266, 0.0020046234, 0.68652344, 0.95751953, 0.7138672, -2.0605469, 2.3183594, 0.32202148, 2.5058594, 0.3569336, 1.9902344, 1.3134766, 0.33740234, -0.8178711, -0.8359375, -1.6269531, -3.1425781, 2.1035156, -0.7714844, 1.2138672, 2.1210938, -0.25585938, -0.55322266, 0.08282471, 0.21716309, 0.8095703, -2.0429688, -2.2792969, 2.1171875, 2.6621094, -0.41235352, 1.8251953, -1.3935547, -3.5761719, 0.48657227, -1.7167969, 2.0546875, -1.2509766, -1.9599609, 2.2460938, 0.79052734, 2.2207031, 0.5107422, -1.5820312, 1.6171875, -0.76953125, 0.48461914, -0.47485352, 0.048187256, 0.9375, 1.84375, 0.79833984, 3.4140625, 1.2626953, -1.25, 1.8701172, 1.5361328, 2.3769531, -3.140625, -0.42529297, -1.2392578, 0.9785156, 1.0957031, -0.40405273, 0.4814453, -0.98046875, -1.3125, -2.3476562, -2.7949219]}, "B016HUP1LO": {"id": "B016HUP1LO", "original": "Brand: Pleasant Hearth\nName: Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove\nDescription: \nFeatures: Dual fuel technology allows the unit to be operated with Propane or Natural Gas\nUp to 20,000 BTU's/hr heats up to 700 sq. ft.\nThermostat control knob automatically maintains your ideal heat level\nDual burner provides 2 rows of flames for a more full looking fire\nSeparately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution\n", "embedding": [-1.3300781, 0.4650879, 2.328125, 1.4736328, -0.28930664, -0.08795166, 0.84472656, -1.3964844, -1.5537109, 2.0136719, 2.2617188, 2.0878906, 0.15649414, -2.4257812, 0.42626953, -0.2763672, 1.5341797, 0.33544922, 0.18054199, 0.39575195, 1.0976562, 0.7080078, -0.19396973, 0.23474121, -0.9970703, 0.44458008, 3.2558594, -3.1347656, -0.14782715, -2.6191406, 1.4609375, 0.9111328, 0.55322266, 1.8310547, -2.5644531, -1.0449219, -1.9785156, -0.11895752, -3.2421875, 0.3227539, -0.70703125, -0.48364258, 2.8417969, 1.7646484, -3.4316406, -0.86572266, 1.1396484, 0.36010742, -2.1445312, 1.1835938, 0.7285156, 0.9580078, -1.8056641, 0.9394531, 0.08068848, 1.0996094, -0.42578125, -1.0195312, 0.7260742, 0.57666016, 0.83447266, -0.95751953, -1.2480469, 0.5683594, -0.00084495544, 1.7402344, 0.8105469, 0.06945801, -2.3574219, -0.68359375, 0.72265625, 0.75341797, -0.082214355, 0.86083984, -1.6816406, -0.6425781, -4.7460938, 1.2792969, 1.8105469, -1.1621094, 0.20617676, 2.3886719, -0.421875, 0.111694336, -0.6245117, 1.1425781, 0.32250977, -0.10107422, 0.3564453, 0.22558594, 0.34106445, 0.3618164, -0.43774414, -3.9082031, 1.7041016, 0.4453125, 0.72314453, -0.13623047, -0.37597656, 0.67822266, 0.71240234, 1.2929688, 0.21679688, -1.3896484, -2.2128906, -0.1640625, 3.1367188, 2.9726562, -3.4765625, 1.4082031, -3.0546875, 0.21447754, 2.203125, 1.3251953, -0.21203613, -0.07086182, 0.703125, 0.6738281, 3.4082031, 1.7998047, 3.0800781, -1.2128906, 0.97753906, 0.8598633, 0.9770508, 1.4326172, 0.14929199, 0.6611328, 1.59375, -2.2148438, -0.60498047, 0.06896973, 2.1308594, -0.296875, -0.103027344, -2.7597656, -1.9121094, -3.0390625, -2.859375, -1.9638672, -0.109313965, 1.8046875, -0.2890625, 0.40844727, -4.0898438, -2.4765625, 0.47338867, 0.41601562, 1.6171875, -2.796875, 0.77246094, -1.7509766, -0.15234375, -0.79785156, 0.6953125, -0.24975586, 0.25, -0.80566406, 0.99316406, 0.2783203, -1.1455078, -1.1962891, -4.609375, 0.5180664, -0.15930176, -2.0390625, 1.9208984, 1.4423828, -0.7685547, 2.3222656, 0.03741455, -2.2363281, 0.61035156, -1.1152344, -0.070251465, -1.1269531, -1.3183594, 2.2636719, 0.5209961, -0.2199707, -2.9433594, -0.23876953, 0.17944336, -0.2841797, 0.14868164, 0.72509766, -0.2244873, -0.06756592, 1.7587891, -0.7680664, -0.67871094, 1.2890625, 0.25927734, -0.27294922, -0.5932617, -1.2080078, -1.1982422, -2.3125, 1.5390625, 0.7475586, -0.30322266, 1.6542969, 0.17114258, 1.5546875, -1.0751953, -0.82177734, -0.6665039, -0.29467773, 2.1835938, 2.4414062, 2.4375, -0.9038086, 2.3671875, -1.1318359, 0.15625, -1.2109375, 2.0761719, 0.52441406, -0.23278809, 2.15625, 1.21875, -0.52978516, 0.030334473, 0.92285156, -0.20996094, 0.4177246, 0.796875, 0.35620117, -2.4140625, -2.2109375, 2.1386719, 0.94628906, 0.55322266, -0.17150879, -0.026733398, 2.8808594, 1.2294922, 0.056152344, 0.4741211, 0.97802734, 0.004108429, 0.09613037, 0.5961914, -0.44799805, -2.0761719, 2.46875, -0.640625, 1.8115234, 2.0703125, 2.1933594, -1.15625, -0.8071289, 1.3300781, 0.75878906, -0.81933594, -0.9067383, 1.5742188, 0.28735352, -0.82958984, -2.3183594, 0.8466797, 0.6894531, -1.4316406, 2.1132812, -0.78808594, -0.59277344, 4.1171875, 0.8417969, -0.6245117, -0.30737305, -0.4892578, 0.97753906, 2.6914062, -1.1191406, 1.6142578, -0.68310547, -0.89404297, 3.4492188, -1.2392578, 2.1796875, 1.3564453, -1.9804688, 1.9130859, -0.39990234, -0.55371094, 1.7919922, 3.2441406, 1.3369141, -2.09375, -0.9941406, 5.59375, -1.1181641, -1.9921875, 1.7412109, -1.8544922, -1.2363281, 1.0751953, -0.12890625, 0.14782715, -0.82177734, 1.6933594, -0.3959961, 0.20996094, -0.15026855, -1.1621094, -0.58154297, 0.94189453, -0.81103516, -0.046325684, 0.48095703, 0.15612793, -2.4941406, -0.5463867, -0.47216797, -3.7851562, 0.2890625, 2.1523438, -1.2617188, 2.5507812, 0.4465332, 0.43481445, 0.063964844, -1.7148438, -0.22277832, -0.27612305, 0.13903809, 1.0888672, 2.3125, 1.0117188, -0.39941406, -1.5869141, -1.4521484, -0.43481445, -2.9960938, -2.8496094, -0.13635254, 0.9580078, -2.7792969, -0.2019043, -1.7705078, 0.21557617, 1.9277344, -2.7421875, 1.3515625, -1.34375, -1.3974609, 0.27856445, -1.6132812, 0.007171631, 0.1105957, 1.2744141, 1.6054688, -2.1992188, -2.9082031, -1.8398438, -0.12634277, -0.5185547, -0.7885742, -2.5742188, 1.5996094, 0.54589844, 0.33789062, -0.38916016, -0.42626953, -0.48828125, -0.86865234, 1.0498047, -3.4902344, 0.26293945, 0.091308594, 0.11773682, 1.2587891, 0.4428711, -1.0664062, -1.1835938, 0.48339844, 0.1920166, 3.828125, -0.0004131794, 2.1914062, 0.01991272, -0.94970703, -1.5761719, -3.7128906, -1.3388672, -0.08850098, -0.6538086, -0.26049805, -1.7275391, -1.9726562, 1.1542969, 0.18737793, -1.4628906, -0.89501953, -0.17773438, 0.21838379, -1.046875, 0.22131348, -0.75146484, -0.036987305, -1.3164062, -1.8496094, -0.92626953, -1.6953125, -0.05117798, -1.6748047, -1.2802734, 1.4833984, 0.6245117, 1.8085938, 2.984375, 0.35009766, 0.5878906, 0.9111328, 2.0839844, -3.3828125, 3.0585938, 0.22192383, 0.5288086, -1.2939453, -2.3320312, -1.8759766, -2.7734375, -0.9638672, 3.0371094, 2.875, 1.7578125, -0.2800293, -2.1445312, 0.8676758, 2.6113281, -0.9345703, -0.20153809, -1.4150391, 1.7255859, -1.6455078, -1.4609375, 1.9326172, 1.8349609, -2.7226562, -2.0527344, 0.5214844, 1.4482422, 2.9609375, 1.4501953, 1.7353516, -0.59521484, 1.1865234, 0.625, 0.9638672, 0.5371094, -0.2319336, -1.5556641, 2.4667969, 0.3154297, 0.05227661, 3.1035156, 0.5551758, 0.20361328, -0.14160156, 0.39819336, -2.7207031, 1.203125, -0.8066406, 0.79833984, 1.8515625, 2.953125, 0.6245117, 0.08081055, -1.2001953, -0.30151367, 0.8364258, -1.125, -0.75341797, 2.1210938, 1.0380859, -0.3359375, 0.73876953, 1.1533203, 0.08917236, -0.28833008, 2.7363281, 0.3005371, -0.4260254, 2.828125, -1.3798828, -1, -2.6640625, 1.1044922, -1.4189453, -0.8515625, -0.41137695, 3.1015625, -2.9804688, -0.8808594, 0.38793945, -0.8466797, 2.1152344, 1.1162109, -0.5419922, -1.2207031, -0.5024414, -0.9941406, -2.296875, 3.3027344, -0.10559082, 0.072143555, 0.33129883, 2.2988281, -0.14685059, -0.07635498, 0.09429932, 1.0214844, -0.921875, 0.45922852, -2.4121094, -3.1816406, 1.6308594, -1.5009766, 1.3457031, 2.9667969, -0.38623047, 1.3798828, -0.006717682, 2.1113281, -3.0742188, -1.8349609, 3.8574219, -1.2285156, 0.35375977, -3.5742188, -2.46875, 0.035369873, 0.15466309, -0.4951172, 2.5078125, 1.4814453, -0.90722656, -0.2578125, 0.35253906, -2.890625, -1.0136719, 0.16931152, -0.23046875, -1.3076172, 0.67333984, -0.34643555, 0.34716797, -2.7402344, -0.11071777, 0.71240234, -0.40112305, 1, 1.5488281, -3.0332031, 0.16918945, -0.6069336, 0.80566406, -0.25561523, -1.5292969, 2.4179688, 0.055725098, -0.0970459, -0.86816406, 1.71875, 2.40625, -1.0351562, 1.5986328, 2.8574219, 1.4765625, -0.36083984, -0.20727539, 2.5957031, 1.9902344, -0.5107422, -3.2304688, -2.9921875, -0.8364258, -1.6845703, -1.3964844, -0.06011963, 0.4753418, -1.6591797, 0.08929443, 2.1953125, 0.077941895, 2.9785156, 1.0761719, -1.5214844, 0.8339844, -1.2568359, -2.0429688, -0.96435547, -1.3408203, -0.087890625, -0.2376709, 0.62060547, -1.1455078, 0.6977539, -2.5371094, -0.82373047, -1.8623047, 1.1982422, 1.1875, 1.1914062, 3.0253906, -0.48339844, -2.1132812, -0.6201172, -0.4411621, 0.13806152, 0.38183594, 0.31518555, 0.32836914, 2.3574219, 3.6367188, -1.40625, 0.81884766, 0.5083008, -0.93066406, 0.4909668, -0.6738281, -0.6850586, -1.4609375, -0.08062744, 2.9179688, 0.4050293, 1.2089844, -1.0410156, -1.2001953, 0.81640625, 1.3037109, -1.2939453, 0.7895508, -1.0058594, -1.3291016, 0.9838867, 2.28125, -1.0449219, -0.34155273, 0.2010498, -0.3022461, 1.7001953, 0.28808594, 1.5410156, -1.3447266, 0.14611816, -0.93359375, -0.8051758, 0.17578125, -0.58691406, -0.20678711, 4.1640625, 0.70751953, 0.5004883, 1.7880859, -0.41479492, -3.1855469, 1.1650391, 0.78466797, 0.91503906, 1.0683594, 1.4619141, -2.5371094, -0.60791016, 3.1171875, -1.1054688, 0.4013672, -0.2980957, -1.6816406, -1.1425781, -4.1835938, -2.6796875, 0.016921997, -2.2695312, -0.2680664, -0.94189453, -0.7685547, -1.3320312, -0.70654297, 2.2792969, 0.054016113, -0.24829102, 1.0693359, 0.7055664, 0.97314453, -1.4423828, 0.7138672, -1.8398438, 1.3701172, 1.6953125, -2.8769531, 1.7685547, 0.9511719, -0.8330078, -1.7607422, -0.5732422, -0.5883789, 2.0527344, -2.4355469, -1.0078125, 0.6850586, -0.2607422, 0.14477539, -0.8574219, -2.4160156, -2.8964844, 1.8369141, 1.0800781, 0.7705078, -1.1503906, -1.0878906, -1.8154297, -3.3144531, -0.8378906, 0.66845703, -0.85791016, 0.43237305, 0.13659668, -1.2519531, -0.42382812, 1.1669922, 1.5673828, -1.2539062, -0.61376953, -0.6166992, -0.6611328, -0.3881836, -3.3398438, 0.004337311, 0.9863281, 1.7177734, -0.91015625, 0.8071289, -1.5380859, -1.9980469, 0.59814453, -1.0859375, 2.1386719, 0.24194336, 0.9941406, 1.3310547, 0.9692383, 0.2836914, -1.8242188, 0.13452148, 0.515625, 1.0566406, 1.5625, -1.0654297, -0.28173828, 0.7216797, 0.25708008, -0.17236328, 0.4802246, 0.5908203, 0.76464844, 0.7729492, -0.5292969, -0.24707031, -0.09094238, -2.7148438, 1.0888672, -0.3166504, 1.2402344, 0.4399414, -0.11462402, 0.19665527, -2.375, -0.86083984, -0.47387695, -1.9677734, 0.17956543, -0.5161133, 2.1660156, 0.25439453, -0.3239746, -0.32641602, 0.6274414, 0.18835449, -0.859375, 0.51416016, -1.15625, 1.8837891, 2.0859375, 0.91748047, -3.2363281, -2.2851562, 1.1738281, -0.7080078, 2.7519531, -0.66308594, 0.5332031, -2.4980469, 0.1809082, -1.0820312, 1.1152344, 1.6660156, 0.71533203, -0.7944336, 1.7480469, 2.1816406, -0.90966797, 0.9682617, 1.0146484, 1.1806641, -0.0034637451, 4.2148438, 1.4414062, 0.5698242, 0.6245117, -0.4169922, 0.93066406, -0.6899414, 0.30029297, 2.0546875, -1.6933594, -2.1621094, -1.09375, -1.8212891, -3.2578125, 2.3945312, 0.9765625, 0.32958984, -0.91503906, 1.7568359, 0.80810547, 2.2460938, 1.9414062, -0.48364258, 0.8847656, 2.4023438, -1.2314453, -0.63671875, 3.0390625, -2.3222656, 1.6328125, 0.2376709, 1.5947266, -0.9394531, 1.1396484, 0.39672852, 3.0175781, 4.6601562, 3.03125, 1.765625, 1.2939453, 0.890625, 0.21972656, 0.9194336, 1.265625, -0.09765625, -0.35205078, 1.5488281, 0.3713379, -0.38964844, -1.0556641, 0.72314453, -0.6821289, 1.4306641, 0.22351074, -0.6386719, -1.3222656, -5.0273438, 0.31274414, -0.6479492, 1.8310547, -2.8945312, -0.38378906, 0.21716309, 0.8486328, 0.59033203, -3.0390625, 1.0800781, -0.70703125, 0.29516602, 0.6455078, -1.9384766, 2.0898438, -1.0673828, 1.4365234, -0.7944336, -2.7910156, -0.14111328, -1.9863281, 1.0175781, 0.63183594, 0.49609375, -0.23950195, 2.046875, 0.13708496, 0.4169922, -2.1855469, 0.6088867, 0.5078125, 1.9082031, 0.24365234, 0.51464844, 1.3251953, -0.3642578, -2.2773438, -4.0546875, 2.3554688, -1.3251953, 0.69628906, 1.1298828, -0.9121094, 2.9199219, 1.4736328, -0.6176758, -2.6328125, 0.77783203, -0.20495605, -0.51416016, -1.1992188, 1.7353516, -0.46557617, 1.6552734, 0.5629883, -0.75390625, 2.5019531, -2.3007812, 1.5898438, 0.12915039, -0.3359375, 1.4150391, -0.105773926, -0.72216797, 0.53515625, 1.0400391, -1.9277344, -0.13269043, 1.7285156, 2.7363281, -1.1914062, 0.2154541, -0.35205078, 1.3447266, -1.0859375, 0.46801758, 0.03463745, -1.8808594, -1.9804688, -2.4628906, 0.6196289, -2.015625, -3.5195312, 1.2373047, 0.18725586, -2.5039062, -0.072143555, 3.2929688, -0.78466797, 1.0126953, 0.66259766, 0.25732422, 0.46362305, -1.125, 1.0859375, -1.3291016, -1.8623047, 1.1054688, 2.1835938, 2.1269531, -0.031951904, 0.64990234, 0.33911133, -1.6181641, 2.3125, 1.0136719, -0.5131836, -0.047790527, 0.5439453, -0.86279297, -0.5991211, 3.1171875, -1.2685547, -0.33496094, 0.41430664, -1.6191406, -1.0361328, 1.8330078, -0.86328125, 2.6289062, 1.9746094, 2.1953125, 0.43041992, -1.8242188, -1.453125, -2.1914062, 0.67089844, 2.1992188, -0.32861328, -0.51220703, 0.54003906, -0.3918457, 0.42626953, -0.4140625, -1.7910156, 0.8671875, -0.7807617, 0.28686523, 0.44189453, 0.36645508, -1.6943359, 1.8242188, -0.75439453, 2.4648438, -0.84716797, -1.0400391, 0.921875, 2.4199219, 1.8525391, -2.9882812, -0.30615234, -2.59375, -0.012512207, 0.2705078, -1.6875, 0.5283203, 1.890625, -1.0439453, -2.1484375, -2.3066406]}, "B07FQVDWZ4": {"id": "B07FQVDWZ4", "original": "Brand: Drill Brush Power Scrubber by Useful Products\nName: The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill\nDescription: The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer's request. Cordless Drill NOT included.\nFeatures: The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits.\nRestore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco\nThe Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush.\nCleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you\u2019re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with.\nOur brushes have NO WIRES and are much SAFER: \u201cA number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.\u201d\n", "embedding": [0.12030029, 1.1835938, 0.6074219, -1.0693359, 1.4189453, 0.11730957, 0.1784668, -1.7080078, 0.5341797, -0.4284668, -1.3935547, -0.9399414, -1.4873047, -2.6191406, -3.9179688, 0.6088867, 0.07519531, 0.94189453, 2.2070312, 3.3847656, 0.27441406, -1.0986328, 0.88964844, 1.2890625, 0.8378906, -0.5410156, 1.8769531, -0.23217773, 2.0371094, 1.0898438, 1.7431641, -0.38745117, -0.48632812, 0.47436523, -2.7128906, 1.6708984, -0.39916992, 2.2519531, -0.5859375, -0.24804688, -1.4589844, 0.39257812, -0.12231445, 0.58447266, -3.6894531, 2.9082031, 1.4404297, 3.5507812, 0.34301758, -3.9726562, 1.2021484, -0.69091797, 2.234375, 1.3339844, -1.4892578, 1.1582031, -1.4960938, -4.234375, 0.07556152, -1.78125, 3.1816406, 1.9892578, -1.1220703, 0.18029785, 1.5986328, 2.5742188, -0.032562256, 0.44750977, -2.3554688, -1.9345703, -0.8071289, 1.8007812, 1.2568359, 0.38891602, -0.31811523, 1.7861328, -1.7636719, 0.97021484, 2.0058594, 0.81347656, -0.9448242, 1.8505859, -1.1884766, -2.7207031, 2.4570312, -0.39160156, -2.0839844, -0.43139648, 2.0078125, 0.2836914, 0.94677734, 2.7558594, -2.4121094, -4.1601562, 1.1337891, -1.4238281, 0.33129883, -2.4472656, -0.94433594, 1.625, -2.1230469, -0.42260742, -0.6401367, 0.36010742, -1.0185547, -0.21191406, 0.7114258, 0.71728516, -3.8339844, -1.5058594, -1.4648438, 2.8320312, -2.4335938, 1.8173828, -1.1152344, -1.8095703, -1.8896484, -0.4350586, 1.265625, 0.7397461, 1.0185547, -0.7158203, 0.10058594, -0.27392578, 0.37670898, 0.4321289, 0.4873047, 1.9560547, 3.2734375, 0.20983887, 0.47460938, -2.6835938, 0.7128906, 1.7265625, 1.0654297, -1.7841797, 0.06866455, -0.57714844, -0.020828247, -0.85546875, -1.0166016, -1.0859375, 2.5546875, -2.6796875, -1.9375, 1.1367188, -0.90185547, -1.5537109, -0.45166016, -2.4726562, 1.7890625, -0.26660156, 1.4179688, -2.0332031, 2.5449219, 1.40625, -1.3046875, 0.05706787, -0.022567749, 1.2402344, -0.42089844, -2.9941406, 0.3310547, 0.35058594, -0.015640259, -2.1542969, -2.5039062, 1.7910156, 1.9199219, 1.3554688, 0.23693848, -1.3828125, -0.46044922, -0.66552734, -1.2148438, -0.2253418, 1.1132812, 1.8066406, 0.37890625, -0.27563477, 2.7089844, -1.5810547, 0.57373047, -0.5776367, -0.2763672, -0.047698975, 2.7910156, 0.83251953, 1.4150391, -1.1201172, 3.5136719, 1.1484375, 0.90527344, 1.84375, -0.296875, -1.0087891, -0.46606445, -2.0742188, -0.024673462, 2.1894531, -2.2050781, -3.7734375, -1.1025391, -1.5839844, -1.2275391, -1.2402344, -0.7109375, 1.2861328, -0.81884766, -0.2692871, -0.13745117, -0.7548828, 3.1386719, -1.15625, 0.5517578, -3.2363281, -0.030578613, -2.4707031, 0.90625, 1.6816406, -0.59277344, -0.48779297, -0.3544922, 0.34155273, 2.0625, 2.4902344, -2.6210938, 2.1289062, -0.81591797, 1.171875, -0.27612305, 2.3398438, -0.7631836, -1.5253906, -0.85839844, -0.51416016, 0.50146484, -1.1689453, 0.22180176, -0.42895508, -0.5600586, -0.18640137, -1.9658203, 0.09832764, 1.2685547, -0.7348633, -0.7524414, 2.265625, -0.4272461, -3.8476562, 1.0898438, 1.9677734, 2.2617188, 0.7548828, 0.6586914, 0.4074707, -1.6679688, -1.3251953, -2.6152344, 0.18005371, 0.96972656, -1.0449219, 1.0380859, -0.45874023, 0.07598877, 0.72021484, 3.1523438, -1.2255859, 0.27514648, -2.2636719, -0.21350098, 0.47827148, -1.5957031, -0.5805664, -0.02330017, 0.88183594, -0.9238281, 0.25, -0.35229492, -0.32226562, -0.35058594, 1.5839844, 2.8769531, -1.3017578, -0.23864746, -3.0488281, -3.328125, -2.1523438, 2.1152344, -0.2758789, 3.8886719, 0.5341797, -2.2480469, 1.7470703, -2.6269531, 1.1289062, 1.5927734, 1.046875, -1.1347656, -0.4946289, 1.8564453, 0.62060547, -0.46435547, 0.9628906, -1.7929688, 0.13916016, 1.40625, -2.1015625, 0.3876953, 2.6328125, -1.5263672, -0.80810547, 2.0957031, -0.53564453, -3.7089844, 0.54833984, -2.5585938, -1.0283203, 1.7138672, -1.1787109, -1.6943359, 0.029647827, 1.6103516, -1.2802734, -2.6992188, -0.0076141357, -0.37768555, -1.0712891, 1.625, -1.2685547, 0.18249512, 0.5571289, -0.71533203, -1.3105469, -1.8203125, 0.045440674, 0.095703125, -2.2070312, 1.7011719, -1.6533203, -0.12322998, 0.18664551, -1.1113281, 1.5410156, -0.5463867, 1.1923828, -3.1054688, 0.9301758, 1.2841797, 1.0400391, -0.8359375, 0.5996094, 0.056732178, -1.9599609, 0.79345703, 1.2148438, 0.1194458, -0.026901245, -0.79541016, 0.8149414, -0.328125, 0.012496948, -0.7314453, 1.8544922, 0.89453125, 0.6621094, 0.023452759, -1.1552734, 0.8227539, -0.5703125, 1.3818359, -0.14025879, 1.0507812, 0.20458984, 0.5097656, 1.4697266, 1.4306641, -1.2060547, -1.3847656, 2.4023438, -0.90722656, -0.36767578, 0.60839844, 2.4453125, -1.3564453, -1.0166016, 1.1142578, -0.34838867, -0.056427002, -2.4140625, 0.009681702, 1.0878906, -3.3183594, -0.103027344, 2.0625, 0.53125, 0.7441406, -1.6074219, -1.0039062, 3.2734375, -0.3564453, -0.2932129, 0.1616211, 2.0039062, 1.0244141, -4.3671875, -1.1591797, -1.2324219, -0.07727051, -2.5703125, -0.7133789, 2.6542969, 1.015625, 0.03640747, 2.21875, -2.7597656, 0.64941406, -2.7851562, -2.2226562, -0.6254883, 0.9716797, 1.2402344, -0.30981445, 0.22375488, 3.0449219, -0.31225586, 0.35424805, -1.8701172, 0.44482422, 0.63134766, 2.0019531, 0.25830078, -0.12109375, 2.203125, 1.3154297, -1.71875, -1.4404297, 0.42358398, 1.2861328, 0.87646484, 3.4375, 0.9296875, 2.0351562, 0.33764648, 3.3339844, 1.1611328, 2.5253906, 0.00844574, 0.2163086, 1.0263672, -0.30371094, -1.9208984, 0.63671875, -0.8935547, -2.484375, 0.9033203, -0.35107422, -1.0087891, 1.9267578, -0.5439453, -0.04385376, 0.33569336, 0.21191406, -0.008796692, 1.8173828, -0.1352539, 0.9370117, -0.38549805, -2.2128906, 2.0097656, -1.5712891, 2.7363281, -3.6386719, -2.4726562, 2.2851562, 1.8642578, -0.05316162, -1.6640625, 0.5498047, -1.5078125, -2.7597656, -0.4621582, -2.0019531, 0.17016602, -0.07727051, -1.5214844, 0.31445312, -0.88671875, 0.7866211, -0.44604492, -1.3759766, -3.359375, -0.5805664, -0.1126709, -1.2216797, 0.2788086, 1.3671875, -0.27441406, 2.0761719, 0.7519531, 0.90185547, 4.2890625, -2.1699219, 1.0078125, -3.0644531, -2.4414062, -0.4970703, -2.1113281, -0.37182617, -0.54589844, 0.36816406, 0.64208984, -1.1074219, 0.70654297, 1.1572266, -1.6337891, 1.3652344, -0.11639404, -1.9121094, -1.3095703, 0.7036133, 1.5380859, -0.65771484, 2.2480469, 3.4570312, 1.2519531, -2.0820312, 1.484375, -2.8125, -2.0859375, -0.67333984, -1.3710938, -0.4152832, 1.9960938, 2.3144531, 2.0039062, 1.9970703, 0.40234375, 3.5332031, -0.22192383, 0.8833008, -0.5253906, 0.2265625, 2.1132812, 0.79296875, -1.0253906, 2.8476562, 1.6982422, -1.4804688, -0.40820312, 0.42407227, -2.5664062, -0.40161133, 1.5595703, -1.1054688, 0.4819336, -1.2490234, 1.03125, -0.8359375, -0.13708496, 2.1582031, -2.1621094, 0.86328125, 0.37695312, -0.6088867, 0.03274536, 1.9570312, -1.1318359, -0.14538574, -0.50683594, -1.0947266, 0.32128906, 0.60253906, 0.68408203, -0.37426758, -0.70166016, 1.203125, -0.2536621, -0.7714844, -0.7631836, 2.0039062, -0.56884766, -2.1894531, 1.3037109, 0.084472656, -0.9892578, 0.5996094, 0.21496582, -3.1074219, -2.921875, 1.0830078, -3.0644531, -1.2509766, 1.0048828, 0.049682617, 0.33398438, -1.5361328, -0.5722656, 0.09649658, 0.9194336, -2.25, 0.047607422, 2.1933594, 1.4121094, -1.0253906, 2.6757812, -0.6113281, 0.5727539, -1.9228516, -1.6181641, -1.5283203, -1.4238281, 1.2207031, -1.4130859, -2.2402344, 0.74902344, -0.93115234, 0.9794922, 0.081604004, -1.2128906, -2.1640625, -2.9785156, 1.4130859, 0.69970703, 1.3447266, 1.5576172, -2.3828125, 2.2167969, -0.47485352, 2.7558594, 4.6875, 0.34179688, 0.36157227, 1.1728516, 1.2333984, 0.15612793, 0.7817383, 1.6132812, 5.4414062, -0.3864746, -1.0429688, 1.9951172, 1.9990234, -3.484375, -1.4287109, 3.1816406, 1.0322266, 1.4052734, 1.2070312, 1.6181641, 0.16040039, 0.8173828, 2.0878906, -0.10784912, -1.3945312, -0.39233398, 2.0390625, -4.296875, 1.09375, -0.40551758, -0.5439453, 2.3828125, -1.2128906, -1.4658203, 1.4873047, 0.47851562, 0.9511719, 0.67041016, -3.5058594, 2.4042969, 1.6982422, 1.3535156, 0.36621094, -1.0380859, 1.2089844, 1.6064453, 1.3925781, -0.047210693, 2.0488281, 1.4423828, 1.7890625, -1.4609375, -0.9296875, 0.061401367, 0.03479004, 1, -0.18896484, -0.70458984, -2.5136719, 0.58154297, -0.36865234, 1.5888672, 0.93896484, 0.12408447, 2.3417969, -0.32592773, 1.4736328, -1.7822266, 1.8183594, -0.30541992, 0.31713867, 2.4980469, -3.8242188, 0.041778564, -1.5966797, -0.5932617, -1.0175781, 3.2207031, 2.4355469, -2.2578125, -3.6835938, -0.91259766, -1.2246094, -2.5429688, -0.5317383, -0.6088867, 0.48901367, 0.7836914, 0.10784912, 1.5869141, -0.45043945, 0.50390625, -0.9848633, 1.1679688, -2.3339844, 1.4697266, 0.24047852, -2.4003906, 0.51123047, -0.39575195, -0.69677734, 0.9868164, 2.4804688, 1.5595703, -2.2109375, -0.44262695, 1.8027344, -3.859375, -1.6503906, 2.5429688, -0.83203125, -0.21459961, -0.114868164, 0.50878906, -1.3310547, 1, -2.5332031, 0.25390625, -0.83496094, -1.8349609, -1.1484375, -1.8359375, -2.4960938, 0.91796875, 0.6064453, 1.8916016, -0.5097656, 1.2119141, 0.29956055, 1.9794922, -2.1972656, -0.78222656, -2.5175781, 2.1113281, 2.9628906, -1.6904297, -0.32666016, 3.1152344, -2.6171875, -0.10583496, 1.2587891, -1.6591797, 1.6181641, -0.35424805, -2.0761719, 0.8383789, -0.52978516, 0.96777344, -1.6103516, 0.2388916, -1.0136719, -1.6474609, 0.5336914, 3.4824219, -0.68115234, -1.8134766, -0.3383789, 0.52197266, -0.9916992, -0.49243164, 0.4038086, 0.87060547, -0.6035156, -2.2578125, -1.6494141, -0.8413086, 0.50097656, 2.703125, 0.8989258, 0.113098145, -3.5605469, -0.21838379, -1.3837891, 1.3378906, 0.06726074, 0.9091797, -0.30932617, 3.9707031, -0.1381836, -4.2773438, -1.3242188, -1.921875, 0.34448242, 0.83984375, -4.5859375, -2.4316406, -3.2421875, 0.0847168, -1.2441406, 0.26342773, -2.6367188, 0.92626953, -0.119262695, -0.50683594, 0.7495117, 3.9765625, 0.6508789, 3.15625, 2.9003906, 1.0136719, -1.1728516, 0.52783203, -0.6743164, 0.97802734, 0.60595703, -3.2050781, 2.4199219, -1.2753906, 0.82177734, -1.3193359, 0.9892578, 3.203125, 0.20654297, -0.9472656, 3.40625, 0.1895752, 2.2519531, 1.625, 1.4912109, 2.4335938, -0.016983032, -0.11035156, -0.32177734, 2.7597656, -1.8710938, 1.3652344, -1.1103516, -1.1386719, -1.6337891, 0.9692383, 0.9824219, 1.1601562, 0.6953125, -4.171875, 0.7871094, -0.7167969, -0.76220703, -0.90625, -0.33911133, -2.4511719, 0.6225586, 1.0253906, 0.08123779, 3.6074219, 2.9160156, 0.4350586, 1.1191406, -1.7138672, 1.9853516, -3.9511719, -0.5913086, -0.42919922, 1.1035156, 0.6723633, 1.2548828, -1.1875, 0.1776123, 0.29785156, 1.0947266, -1.2148438, 1.0410156, 0.5317383, -0.21496582, -2.7597656, 1.0566406, 0.1875, -0.85546875, -0.88916016, -3.34375, 1.6015625, -1.0244141, -1.3857422, 2.2480469, -0.23706055, 0.13293457, 2.9023438, -4.6523438, -2.4277344, 0.09539795, 2.8183594, 0.20837402, 0.88964844, -0.15612793, 0.2590332, -0.02079773, -0.17541504, 2.7773438, 2.4492188, 0.9770508, -3.0253906, 0.5083008, -0.21508789, 0.13879395, -0.13293457, 0.9199219, -2.0898438, -0.47705078, -1.6669922, 0.9013672, 0.95458984, 1.1015625, 1.1445312, 3.2460938, -1.0751953, 1.8525391, 3.3554688, 1.5302734, 0.16882324, -0.640625, 1.0605469, -1.1171875, 1.7021484, -2.9023438, 1.8837891, -0.8876953, 0.35327148, 1.4208984, 1.3105469, 0.091430664, 0.6479492, 1.3671875, -0.1616211, -1.0244141, 0.4934082, 1.4345703, -0.99853516, -2.4511719, -0.4621582, -1.1396484, -0.9838867, -2.0683594, 1.6416016, 1.15625, -0.26464844, -0.3371582, 0.19995117, 0.47729492, 1.7646484, 0.36767578, -1.0195312, -2.0996094, 0.028335571, 1.3876953, 0.32617188, 3.1757812, 2.6464844, 0.3317871, -2.6308594, -0.97753906, -1.5351562, -0.9477539, -2.4863281, -2.4609375, 0.83691406, 2.7871094, 0.76708984, 1.7177734, -2.6269531, -0.37426758, 3.1132812, -0.10205078, 0.13549805, 2.0390625, -0.9707031, 0.113708496, -1.125, 1.7402344, 0.42016602, -1.8955078, -0.06463623, 2.1796875, -1.4619141, 1.5869141, 1.0917969, -0.118652344, -0.37036133, 1.3066406, 1.1230469, -0.1282959, 0.055999756, 1.2373047, 1.546875, 2.8320312, -1.6396484, 0.6303711, -0.0670166, 1.1640625, 0.9819336, -1.359375, -0.7548828, 0.47973633, -0.89697266, -0.52978516, -2.375]}, "B081Q5YVT3": {"id": "B081Q5YVT3", "original": "Brand: Podoy\nName: Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder\nDescription:

          Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

          Waterproof: Made of waterproof material, you don't have to worry about getting wet even if it rains or snows.\u00a0

          Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

          Prevent your propane tank from experiencing premature fading and damage from the sun.

          The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

          \nFeatures: \u25b2PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb\n\u25b2HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on.\n\u25b2This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn't freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio.\n\u25b2Velcro closure at top, elasticized bottom for a neat, tailored fit.\n\u25b2If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you're not completely satisfied, you can ask for a replacement or full refund.\n", "embedding": [0.007835388, 1.4541016, 2.9863281, 0.2841797, -0.71191406, -0.06060791, 1.6611328, 0.34179688, 1.4521484, 2.1132812, 0.3779297, 0.83447266, 2.3125, -4.0507812, 1.7431641, 0.10675049, 0.014709473, 2.3378906, 3.4785156, 0.24719238, 3.1269531, -0.10510254, 1.4394531, -0.80908203, 1.6787109, -1.0283203, 3.2148438, -2.5195312, -1.3125, -0.023849487, 0.68847656, -1.0146484, -0.29101562, 1.7607422, -0.29736328, -2.0566406, -0.2631836, 0.5732422, -2.3515625, 0.04272461, -3.7753906, -1.6416016, 2.6992188, 1.0898438, -0.73095703, -0.93896484, -2.1835938, -0.49560547, 0.29882812, -2.4960938, 0.12158203, 0.28100586, 2.2363281, 2.1601562, -1.6767578, 0.7001953, 0.49047852, -2.890625, -0.5566406, 1.1884766, -0.42822266, -0.8154297, -2.0117188, 2.5117188, -0.042755127, -0.5126953, -2.0117188, 0.5263672, 0.8051758, 1.0537109, 2.96875, 1.5039062, 0.39208984, -0.45336914, 0.5102539, -0.5097656, -2.5292969, 1.8828125, 3.6386719, -0.42407227, 0.97558594, 3.4082031, -1.5107422, -1.4833984, 0.4975586, 0.20361328, -1.8769531, 0.37353516, 1.4521484, 1.2880859, -1.9638672, 1.7353516, -1.9746094, -4.1132812, -0.16088867, -0.1986084, 1.9433594, 0.81591797, 2.2324219, 0.68603516, -0.09851074, 0.42822266, -1.28125, -0.53125, -3.1289062, -2.1601562, 0.5776367, -2.0175781, -0.7207031, 0.66503906, 0.41259766, 0.56103516, 2.03125, -1.9804688, 0.68896484, -0.25341797, -0.8330078, 0.5175781, 1.7089844, 3.5175781, 4.6914062, -0.84765625, 1.7822266, -1.015625, 1.2089844, 1.2236328, -0.93115234, 0.48242188, 3.5429688, -0.82910156, 2.0800781, -0.22631836, 0.7919922, 0.048583984, 0.19665527, -1.5126953, -0.5083008, -1.9316406, -2.125, 1.2558594, -2.7089844, -1.5800781, 1.8291016, -0.46240234, -4.2578125, 0.63623047, -0.6020508, 2.3769531, -0.8833008, -3.2265625, 1.0927734, -1.1503906, -1.5126953, -0.07171631, 0.5058594, 0.2783203, 0.8574219, -3.1035156, 3.1914062, 1.9941406, 4.4765625, -1.9140625, -0.80322266, 1.2753906, 2.1738281, -3.0839844, 1.1123047, 0.013023376, 0.5229492, 1.4306641, -0.20336914, -1.8017578, 0.55908203, 0.48754883, -0.2355957, -1.4111328, 1.09375, 2.7519531, 0.8666992, -0.86083984, -2.6191406, -0.20129395, -0.26708984, 0.6933594, 0.025375366, 0.14074707, -2.4648438, -0.30371094, -0.1586914, -1.4980469, -2.2753906, 2.1699219, -0.96191406, -0.7416992, -2.1796875, -2.5136719, -1.46875, -2.0703125, -0.28637695, 1.5361328, -0.8959961, -1.4853516, -1.1591797, 0.703125, -2.8828125, -1.0898438, 0.10180664, -0.18554688, 0.8544922, 0.86376953, 1.5224609, -0.98876953, 2.7089844, 0.058502197, -0.8540039, -0.25439453, 2.0253906, 0.95166016, 1.9130859, 1.9345703, -0.8623047, 0.5708008, -0.49365234, 2.9003906, 0.41723633, 2.9492188, 1.1806641, -0.10266113, -1.5048828, -0.6381836, -0.23425293, 0.7441406, -1.0625, 0.82910156, -1.1083984, 1.0419922, 0.3918457, -1.6738281, -0.1262207, 0.1640625, 0.22265625, -1.4248047, -1.4775391, -1.1044922, 0.10229492, 1.2880859, -2.1601562, 1.4619141, 1.0283203, -1.2207031, -0.7163086, 0.014579773, 0.8857422, -3.109375, -0.00381279, 1.2138672, 0.8051758, 0.1451416, -0.79541016, -1.6738281, 0.86083984, 1.7285156, -0.75341797, 0.1463623, 0.14135742, 1.6542969, 1.40625, 0.19946289, -3.1210938, 1.046875, 1.6552734, 0.9633789, -0.0048065186, -1.296875, 0.26879883, 1.0175781, -0.3515625, 1.4501953, -0.36914062, 2.3066406, 1.5253906, 0.8935547, 1.2294922, -2.6308594, 0.3869629, 0.4880371, 2.0175781, -0.5546875, -0.7915039, -0.58740234, 3.0761719, -0.4814453, -0.5341797, 2.3632812, 1.6640625, 1.265625, 2.5253906, -1.4580078, -0.83154297, 0.3864746, -1.6826172, 0.14746094, -2.2441406, -0.26220703, 1.0878906, -1.7548828, -1.0605469, -1.5839844, -0.0115356445, 0.34545898, 0.33740234, -0.07922363, -0.5517578, -0.8959961, -1.2568359, -2.6386719, 3.84375, -2.5429688, -1.0380859, 2.9570312, -0.54541016, -0.3076172, -1.1181641, -1.4882812, -0.38916016, 0.8305664, -2.0742188, 0.24536133, 0.4519043, -1.6865234, -0.24804688, -2.0800781, 2.2519531, -1.1035156, -0.8461914, -1.1582031, -2.8691406, -1.21875, 0.25146484, -3.1484375, 1.0898438, -1.5947266, -2.1191406, 1.5205078, 1.1933594, -2.5332031, -0.6225586, 0.80322266, -2.0878906, 0.15307617, -0.015571594, 0.57373047, -0.09112549, -3.3808594, -0.66259766, 1.921875, -3.0976562, 0.8901367, -1.5439453, 0.35620117, -1.0800781, -0.31689453, 2.0390625, -0.6958008, -0.29223633, -1.421875, 1.0722656, -4.1445312, 1.5576172, -1.6914062, -0.21960449, -3.9394531, -0.25097656, -2.578125, -2.4140625, 1.1953125, -1.3955078, 4.140625, 1.4482422, 0.95703125, -0.95947266, -0.49682617, 1.0068359, -1.1503906, -3.7109375, -1.2695312, 1.3076172, -2.0820312, -0.26635742, -4.3867188, -0.6386719, -2.90625, 0.21850586, 0.2088623, -1.2783203, -2.2089844, -0.12695312, -1.1552734, -0.19592285, -1.1806641, 1.4169922, 0.5126953, -2.0507812, 0.05331421, -0.86621094, -1.2939453, -0.17578125, -0.44702148, 1.6816406, -0.8051758, 1.1728516, 1.0966797, -1.5273438, 2.4960938, -0.74560547, -3.1074219, -0.8955078, 1.8916016, 1.2519531, 2.890625, -0.50097656, -0.8540039, -2.2167969, -1.2626953, 2.9375, 3.03125, 1.234375, 0.92529297, -0.58740234, 0.07141113, -1.5849609, -0.36572266, 0.37060547, 1.2294922, 3.9023438, -2.1933594, 0.5361328, 0.28735352, 2.2265625, -2.59375, 0.012992859, 1.7558594, -0.87402344, 3.2949219, 1.7216797, -1.2802734, -0.37182617, 0.46704102, 2.375, -0.045318604, 1.3339844, 1.1660156, -0.49780273, 1.0136719, 0.06555176, 1.4941406, 2.4238281, 0.8833008, -2.0449219, 2.4296875, 0.79003906, -0.2770996, 0.6777344, 0.4404297, 0.24609375, 0.27905273, 3.5976562, 0.52197266, 1.2929688, 0.93066406, -0.6328125, -0.23266602, -1.9931641, 0.71728516, 2.2734375, 1.3505859, -1.2177734, -1.3984375, -0.81884766, -0.39746094, -2.3789062, 2.0527344, -0.90771484, -1.3896484, 1.9609375, -2.1621094, -1.7783203, -1.7324219, 2.2734375, -0.2055664, -1.4052734, 0.36791992, 1.1162109, -1.0146484, -2.734375, 0.4152832, -0.04232788, -1.5576172, 2.9921875, 1.4794922, -0.94677734, -0.39135742, -1.9238281, 3.2539062, 1.9560547, -1.1191406, -0.9921875, -0.064575195, -0.5395508, -1.6259766, 0.46166992, 2.1347656, 1.7548828, -3.7519531, 0.04360962, -1.7109375, 2.609375, 1.1396484, -0.2241211, 0.17199707, -0.1932373, -0.23254395, 1.9628906, 1.2861328, 1.9082031, -0.33666992, 1.2802734, 1.6025391, -1.3818359, 0.8173828, -0.19274902, -4.3164062, -0.15905762, -1.2646484, -1.3203125, 3.9765625, -0.23522949, 0.36010742, -0.35498047, 0.57373047, -3.5390625, -0.46655273, -2.2558594, 0.609375, -3.0566406, -0.7729492, 1.6210938, 1.0087891, -3.2949219, -1.5625, 0.17602539, -1.0791016, -0.5654297, 0.36206055, 0.5708008, 1.3066406, -1.3525391, -0.20739746, -1.5605469, 1.0625, 1.1796875, 0.50341797, -1.3134766, -0.43481445, 1.4482422, 0.57958984, 0.68408203, -0.70214844, 2.1269531, 0.9326172, -1.2832031, 0.91064453, -0.6113281, 2.4433594, -1.4169922, -3.5976562, -1.6611328, -0.08581543, 1.1152344, -0.35229492, -1.2138672, 0.22619629, 0.6948242, 0.70751953, 0.5644531, 1.9560547, 0.50439453, -1.2861328, -3.0117188, 2.0976562, -0.45361328, -1.234375, -0.3486328, -1.3955078, 1.1416016, 0.5942383, -2.4746094, -2.1425781, 1.2148438, -0.26635742, 1.0869141, -1.8232422, 1.8730469, 3.3652344, 2.578125, 2.140625, -0.79003906, 0.096069336, 1.3681641, 0.07043457, 2.1464844, -1.4208984, -1.2490234, 0.018615723, 1.1162109, 1.3779297, -2.3320312, -0.80859375, -1.1191406, -1.4833984, 0.008796692, -1.3242188, 1.8828125, 0.1616211, -0.2602539, -0.37182617, -2.5136719, 3.6152344, -2.84375, 2.1738281, -0.31103516, -0.6411133, -1.0986328, 3.2617188, 1.3544922, 0.46264648, 2.2636719, -1.3125, -1.5957031, 0.024597168, 0.71777344, 1.6308594, 1.6152344, -1.6347656, -0.47631836, 1.1972656, 1.8769531, -0.7050781, -0.10467529, 1.6044922, 3.1699219, 0.4885254, 0.69091797, 1.7626953, 0.18432617, 0.86621094, 2.1269531, -0.45654297, -0.49780273, 0.6826172, -0.17443848, 1.5654297, -1.6484375, -3.6347656, 0.82373047, 0.43041992, -0.48535156, 1.9433594, -0.99365234, -1.6826172, 0.12072754, -3.7871094, -1.8505859, -1.5839844, -0.77978516, -0.05596924, 0.17675781, 0.7524414, 0.7709961, 1.3671875, 2.8339844, -0.74121094, -2.0175781, 0.28149414, 0.14440918, 0.25073242, -0.62158203, -1.1689453, -4.4414062, -1.7324219, 0.6220703, 0.7182617, -0.04006958, 0.82177734, 2.0332031, -3.3925781, -0.10882568, -0.09100342, 1.4746094, -1.9912109, -0.18347168, 3.8125, -0.7890625, -1.2333984, -0.96777344, 0.18945312, -0.8676758, 2.3320312, 1.8134766, 0.43066406, 0.32348633, -0.21618652, -3.1269531, -5.2773438, -0.83935547, 1.5546875, -0.90722656, 1.7617188, 0.31958008, 0.35888672, 1.0722656, -1, -0.49609375, -1.6826172, 2.2324219, -1.5673828, -1.4648438, -0.6425781, -0.2512207, -0.7651367, -0.2902832, -0.08215332, -0.26708984, -2.2382812, -3.1425781, -1.5810547, -0.19934082, -2.0234375, -0.3618164, 1.4990234, -1.0888672, 0.6020508, -0.122802734, 1.3886719, 0.11804199, 2.2792969, -0.79345703, 0.2421875, 1.8232422, 0.063964844, -0.94189453, 0.32299805, -0.008140564, 1.0537109, 2.3105469, 1.5849609, -2.5410156, 0.19946289, 1.8476562, 1.6923828, 0.5317383, 1.0791016, 1.2773438, 1.2763672, 2.3203125, 1.7480469, -1.8291016, -0.97314453, -1.9023438, -1.6376953, -0.6870117, -1.1816406, -2.1953125, -1.1660156, 0.69140625, 1.5107422, 0.8886719, 1.4697266, 0.85058594, 0.78125, -3.1289062, 0.3857422, -1.0498047, 1.6650391, 1.3955078, -2.8085938, -4.0820312, -2.078125, 3.1308594, 0.65625, -1.2275391, 0.88134766, 0.19128418, 0.19934082, 0.66796875, 0.100097656, 2.1035156, 0.7001953, 2.1679688, -0.82128906, 0.064575195, 2.2148438, -1.2773438, 1.1933594, -0.6923828, 1.3779297, -0.70996094, 0.7597656, 0.45922852, -2.7773438, -1.0693359, 1.2763672, 0.3400879, -0.78515625, -2.4296875, -0.8881836, -1.4189453, 0.19555664, -1.0888672, -1.2958984, -4.1484375, 2.84375, 0.5366211, -0.3076172, 0.9511719, 1.3144531, -0.11859131, 0.4650879, 0.86376953, 0.95947266, -0.045928955, -0.5966797, -0.86865234, 1.140625, 1.9169922, -2.6171875, 1.2119141, -1.2919922, 0.33203125, -2.203125, 1.6503906, 0.24047852, 0.90234375, -0.37402344, 2.7167969, 4.75, 0.025238037, 1.7724609, 0.076171875, 1.9677734, 2.4707031, -2.2070312, 1.2333984, 1.5751953, 3.2910156, 3.1601562, -0.76904297, -0.41503906, 0.30371094, -1.7333984, 0.32617188, 2.1933594, 3.2050781, -2.8183594, 0.9272461, -0.63671875, -1.8447266, -0.42504883, 1.7265625, -2.203125, -1.9042969, -1.6005859, 0.4892578, 2.2910156, -0.48364258, 2.1015625, -0.046569824, -0.1083374, 1.3359375, -1.5097656, 0.92333984, -0.60058594, -2.1210938, -1.6162109, 2.7324219, 1.9589844, 1.8945312, -0.5605469, 0.51660156, -0.23657227, 1.6904297, 1.6367188, -0.68408203, 0.28686523, -1.2607422, 1.6386719, 2.7441406, -1.9160156, -0.23400879, 0.035461426, 0.29492188, -3.3320312, -0.37768555, 1.1689453, 0.6333008, -0.15917969, -3.6269531, -0.043029785, -2.0507812, 1.5146484, -2.6660156, 0.095214844, -1.5361328, -3.8164062, 0.8491211, 0.97021484, -0.66308594, 3.3847656, 0.40942383, 0.5629883, 3.203125, 0.82958984, 0.8544922, -0.3779297, 1.0087891, -0.10699463, 2.0253906, 0.3720703, 3.1054688, 2.1191406, -2.4882812, -1.1630859, 2.1992188, -0.02798462, 0.23022461, 1.4833984, -1.1835938, 2.4570312, 1.5058594, -0.8798828, 1.0126953, -0.5751953, 0.8432617, -1.0410156, 0.49731445, 0.39282227, -0.6879883, -0.6816406, 1.7167969, -1.8261719, 0.46289062, 0.9916992, 0.5136719, 2.6992188, 0.4362793, -1.4296875, -1.1318359, 0.80859375, 0.8886719, -2.046875, 1.5585938, -1.3662109, 0.40478516, 1.2158203, -1.3515625, -1.4873047, 0.26049805, -0.4013672, 0.23352051, 1.2158203, 0.6542969, -1.2910156, 0.22937012, -1.7089844, 0.69384766, 1.8691406, 0.95166016, -0.70654297, -1.4589844, -1.3105469, 1.2773438, -0.7685547, -1.2060547, 2.0332031, 3.171875, 0.9736328, 0.23791504, 0.5332031, -4.3007812, -1.5888672, -3.4902344, 2.4453125, 0.45776367, -0.7524414, 0.1899414, 0.9814453, 2.2675781, -0.23815918, -1.0097656, 0.9165039, 0.9975586, 1.8876953, -0.36547852, 0.7128906, 1.4990234, 0.0037441254, 1.2958984, 2.7695312, 2.0136719, -1.734375, 0.75634766, 1.7509766, -1.6748047, -3.4140625, 0.07849121, -0.06768799, -1.4111328, 0.93310547, 2.6796875, 1.8955078, -1.2695312, -1.2509766, -0.95458984, -1.0068359]}, "B009H3QVOK": {"id": "B009H3QVOK", "original": "Brand: Fire Sense\nName: Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp\nDescription: \nFeatures: This outdoor patio heater is made using heavy duty commercial grade steel.\nThis small patio heater can be taken indoors easily due to its light weight.\nThe portable heater makes use of a standard 1 pound LPG propane tank.\nYou can turn on this patio heater in an instant with the push of a button.\nThis outdoor heater is perfect for your porch or any other outdoor venue.\n", "embedding": [-1.6035156, 0.57128906, 2.1816406, 0.29541016, -0.57177734, 0.25610352, 1.5439453, -0.4970703, -2.2675781, 3.6542969, 0.5913086, -0.37695312, -0.78271484, -3.9238281, 0.6113281, -0.94970703, -0.055664062, 1.3818359, -0.002161026, -0.008712769, 2.7597656, -0.3935547, -0.2758789, -0.85546875, 1.6533203, -1.125, 2.4804688, -1.8886719, -0.18322754, -1.4755859, -0.11303711, 1.4365234, -0.13623047, 1.1201172, -1.2490234, -1.3134766, -0.9638672, 1.9521484, -4.5507812, -0.34521484, -0.7241211, -1.6992188, 1.7392578, 0.57470703, -1.015625, 0.9536133, 2.3261719, 1.0830078, -0.13061523, 0.11077881, 0.21105957, 0.031585693, -0.81152344, -1.1884766, -2.7050781, -0.18762207, -1.4667969, -3.5371094, 1.9638672, 0.047576904, 1.6230469, -0.5883789, -0.98779297, 1.9003906, 0.3828125, 2.6074219, -0.8466797, -0.8886719, -0.45288086, 0.07409668, 2.6347656, -0.28222656, -0.24780273, -0.38916016, 0.4272461, 1.1982422, -0.84765625, 0.5498047, 2.3652344, 0.73339844, -1.4482422, 0.7553711, -0.54541016, 0.5488281, -0.6772461, -0.6142578, -1.2304688, 0.73095703, 1.1484375, 3.3105469, -0.2626953, 2.6289062, -1.4589844, -2.6835938, 2.8867188, -1.09375, 0.52685547, 0.81933594, -1.1523438, 1.4414062, 0.2446289, -0.32641602, -0.86279297, -1.1630859, -0.7548828, -1.046875, 2.3046875, 1.7226562, -1.6904297, 0.91503906, -0.67578125, 0.9555664, 1.2763672, -0.8095703, -2.171875, -0.68310547, 1.4863281, 0.3996582, 5.3164062, 1.25, 5.2851562, -1.3632812, 1.4414062, -3.3691406, 0.45898438, 1.1289062, 0.5444336, -0.81640625, 0.005809784, -1.3662109, 0.9980469, 0.83496094, -0.22216797, -0.58154297, -0.3774414, -0.9238281, 0.15344238, -1.8730469, -2.9433594, 0.26513672, -1.2626953, 0.68652344, 0.83203125, 0.75878906, -4.046875, -0.6328125, -0.8046875, 0.4921875, -1.09375, -0.6923828, 0.3269043, -0.38012695, -0.5834961, -2.1035156, 0.45629883, 2.0820312, -0.8208008, -1.7480469, 3.6542969, 1.0332031, 1.9755859, -0.80029297, -0.33154297, 0.018936157, 0.7416992, -0.8515625, 2.7324219, 0.71533203, -0.016494751, 1.2939453, -0.015319824, -3.1503906, -0.29785156, -0.92041016, -0.08557129, -2.1230469, -1.0576172, 1.5751953, 0.27661133, -0.1673584, -2.2128906, -0.22949219, 0.77246094, 1.0253906, 1.2392578, -1.7929688, -2.0546875, -2.3046875, -2.2851562, -2.5800781, -0.0993042, 0.37451172, -0.13134766, -1.6533203, 0.54541016, -2.3964844, -2.4921875, -3.1328125, 1.6962891, -1.3232422, -0.7104492, -1.0341797, -1.2304688, 0.33984375, -3.578125, -3.2988281, 0.60253906, 0.29614258, 0.546875, 1.4238281, 0.7861328, -0.7651367, -0.13757324, -1.2753906, 0.56933594, -2.2949219, 2.3984375, -0.8886719, -0.4868164, 2.9238281, 0.19885254, -0.04144287, -0.006641388, 2.1054688, -1.7519531, 2.75, 0.049804688, -0.15856934, -1.640625, -2.0273438, 3.671875, 1.0214844, -0.013168335, 0.890625, -2.0039062, 3.1582031, -0.035095215, 0.28222656, 1.328125, -1.1074219, 1.1289062, -1.0839844, -2.21875, 0.41723633, -1.0449219, -1.1416016, 1.1542969, 1.84375, 1.21875, 0.045043945, 0.038024902, -0.02748108, 0.5419922, 1.4580078, -2.1484375, 1.6240234, -0.0736084, 0.91796875, -0.83154297, -1.8789062, 1.3964844, 2.6621094, -1.6591797, 0.64208984, -0.3046875, 0.26489258, 3.7128906, 0.6767578, -1.46875, 1.3603516, -0.42285156, 2.0253906, 0.9428711, 1.6611328, 0.8417969, 0.86035156, -1.7529297, 3.1875, 0.6904297, 0.87841797, 0.35253906, -1.25, 2.1484375, -0.9980469, -0.9355469, -1.3613281, 0.3857422, 0.06439209, -0.03741455, 1.0957031, 4.4296875, -0.11505127, -1.9951172, 1.4619141, -2.6640625, 2.4824219, 0.7060547, -0.6040039, -0.43237305, -1.0625, 3.1132812, 1.1308594, -2.6171875, 0.49951172, -1.8681641, 0.46777344, 0.59521484, -2.1699219, 1.3701172, 0.78271484, 0.18981934, -0.8383789, -2.2382812, -1.0390625, -2.7597656, -1.9814453, 0.9580078, -3.0507812, 1.7460938, 1.6113281, 0.20141602, -0.3803711, 0.116760254, -2.125, -0.28735352, 1.0380859, -1.9111328, 1.4960938, 0.43920898, -0.96240234, -1.2646484, -2.2636719, 1.4433594, -2.7636719, -1.8613281, -0.49145508, -0.8071289, -1.03125, 0.9692383, -0.7548828, -0.9135742, 1.9091797, -0.50146484, 0.37768555, -0.54052734, -0.53271484, -0.38085938, 1.0839844, -1.6445312, -0.43725586, 1.2324219, 2.6738281, -2.2382812, -2.5078125, -0.1194458, 1.5810547, 0.33935547, 0.7524414, -0.20739746, 0.5673828, -0.30126953, 0.30639648, 0.09020996, 0.57910156, -0.23864746, -2.1328125, 0.18896484, -4.1054688, 0.49365234, -2.4492188, 0.49316406, -0.5239258, -1.3007812, -0.18566895, -0.5385742, 1.1494141, -0.6010742, 3.6914062, 0.3564453, 3.7128906, -2.453125, 0.0012245178, 0.46777344, -0.50146484, -4.3476562, -0.98291016, -1.2978516, -0.33422852, -1.21875, -2.0722656, 0.23583984, -1.6630859, 0.6772461, 1.109375, -0.46533203, 0.45922852, 0.18041992, 0.40942383, 0.73779297, -0.08654785, 0.01109314, 1.4414062, 0.66503906, -2.6757812, -0.043945312, -0.5644531, -0.45507812, -1.5830078, 1.7705078, 0.062164307, 0.65625, 1.8564453, -0.1340332, 1.1787109, 0.5205078, -4.6132812, 1.8925781, 1.4697266, -0.8256836, -1.0117188, -2.6542969, -2.4570312, -1.5595703, 1.3300781, 2.8574219, 1.0429688, 3.5507812, -1.1005859, -1.2949219, -0.19616699, 2.4921875, -1.9111328, -0.68115234, -0.6230469, 2.9179688, -3.3730469, 0.37280273, 2.1386719, 4.7734375, -1.421875, -1.1503906, -0.7866211, 1.0878906, 2.71875, 0.22009277, -2.7167969, 0.6455078, 1.0078125, 0.796875, 1.8066406, -0.2232666, -2.4511719, -0.8989258, 0.79589844, 1.4326172, 1.8027344, -0.4699707, 1.1826172, 1.9130859, 2.5488281, 0.7915039, -1.7382812, 0.49365234, -0.26171875, 0.40112305, -0.61376953, 2.5820312, -1.8613281, -0.15063477, -1.0625, 0.9692383, 0.5546875, -1.7392578, -0.67333984, 0.64746094, 2.7675781, -0.99560547, -0.4116211, 1.0742188, -0.5698242, -1.8710938, 1.0820312, 1.1865234, 0.21826172, 0.6196289, -1.8886719, 0.08294678, -1.3457031, 1.2607422, 0.14978027, -2.3046875, 0.9042969, 0.64990234, 0.18273926, -2.1054688, -3.2851562, -1.5712891, -1.1015625, 3.4199219, -2.4492188, -0.8222656, -0.27270508, -1.7460938, 1.3027344, 0.34472656, -1.3505859, -1.1328125, -0.063964844, -1.4755859, 0.5859375, 0.7446289, 0.17175293, 0.7241211, -2.4101562, -0.09527588, -2.1191406, -0.1887207, 1.4023438, -1.6611328, -0.6113281, 1.9248047, -0.24975586, 2.0625, -1.4033203, 2.4765625, -1.4169922, -1.8496094, 1.5605469, -1.1210938, 0.37963867, -1.2060547, -4.6640625, 0.023147583, -1.2431641, 0.24951172, 1.3759766, -0.111816406, -0.39575195, 0.28857422, -0.14208984, -2.9277344, -4.2617188, -0.3708496, 0.88183594, -2.6992188, 0.39819336, 1.1660156, -1.5419922, -1.0800781, -2.3671875, 0.39257812, 0.7998047, 0.6669922, 1.4326172, 0.46142578, 1.5771484, -1.6308594, 1.0498047, -0.15222168, -0.8203125, -1.2978516, -0.9741211, 0.98535156, -0.9394531, 3.3515625, 0.36987305, 0.4921875, 1.9521484, 4.125, 1.1044922, -0.39501953, 1.6035156, 1.0205078, 1.9726562, 0.48510742, -3.5449219, 1.9960938, -0.9355469, 0.47265625, -1.5585938, -0.6303711, 1.8203125, -2.3105469, 0.62158203, 1.6132812, 1.1210938, 1.8388672, 2.6054688, -3.5722656, 0.14331055, 0.63134766, -2.3164062, -2.9785156, 0.81933594, -0.41503906, -1.6113281, 1.9248047, 0.6567383, -0.27148438, -1.4619141, -2.1054688, -1.3925781, 1.9453125, 4.6796875, 2.4199219, 1.6210938, -1.7041016, -1.0146484, 0.08782959, -0.69677734, -0.9604492, 2.3164062, 1.7490234, 0.71777344, 1.7998047, 3.578125, -0.5654297, -0.11651611, 1.7685547, -1.5810547, 1.171875, -1.3720703, -0.79833984, -1.0742188, -0.875, -0.36645508, 0.06665039, 1.1845703, -1.6464844, -1.3847656, -0.65478516, -0.3305664, -1.5205078, -0.9736328, 1.0664062, -0.1328125, 2.2304688, 0.048675537, 2.3808594, -0.2010498, 2.0019531, 2.3554688, 2.3300781, -2.5351562, -0.83154297, -0.23303223, 0.21569824, -0.034332275, 0.70996094, 2.0820312, -0.1496582, 0.79785156, 2.1777344, 1.2050781, 0.5800781, 2.0351562, 1.3974609, -2.2578125, 0.49194336, -0.88183594, -0.2878418, -0.21655273, -0.5649414, -3.3066406, -0.9355469, 1.9541016, -0.16772461, 1.8046875, 0.015792847, -1.2919922, -0.68066406, -1.8837891, -2.3300781, -0.9057617, 0.107666016, 0.8334961, -0.29833984, -1.2226562, -2.1015625, 2.4257812, 2.828125, -0.40185547, 0.21716309, 1.8134766, 0.060577393, -0.42749023, 0.52246094, -0.92871094, -0.71875, -0.36914062, 0.15197754, 1.4033203, 1.5087891, 0.9375, 1.2412109, -2.1992188, -0.6191406, -1.0791016, 2.2851562, -2.7929688, -1.8701172, -0.17700195, 1.7216797, 0.3293457, -2.0722656, -1.2080078, -1.65625, 1.4794922, -1.7861328, 1.1337891, -0.3503418, -1.0800781, -1.3349609, -2.5507812, -2.0097656, -1.125, -0.9785156, 0.18078613, -2.34375, -2.6640625, -0.3762207, 0.19091797, 0.92529297, 0.12695312, 0.05682373, -0.5004883, 1.1669922, -1.4267578, 0.29785156, 0.6269531, 2.203125, 0.66064453, 0.25756836, -1.1064453, -2.1132812, -1.1914062, -0.50390625, -0.6542969, 1.2119141, 0.8876953, 1.1679688, 0.86035156, 3.9785156, 1.8300781, -3.0136719, 1.0126953, 1.2080078, 0.21411133, 3.640625, -1.8017578, 1.0244141, 0.6381836, 0.05908203, -0.6113281, -1.40625, -0.55615234, -1.265625, 0.81396484, -1.3193359, 0.8730469, 0.91503906, -0.18395996, 0.9316406, -0.54052734, 1.5507812, 1.2451172, -1.0849609, -1.3193359, -3.0234375, -1.6113281, -1.8798828, 0.047210693, -0.41577148, -1.5117188, 1.7392578, -0.07067871, 0.72753906, 1.4052734, 1.4267578, 1.3349609, -2.6308594, 0.1928711, 2.1503906, 2.2617188, 1.7119141, -1.9677734, -3.7949219, -4.2421875, -1.6259766, 1.2050781, 0.12719727, -1.2373047, -1.4873047, -2.6230469, 0.34277344, -0.9321289, 2.4238281, 2.0058594, 0.5175781, -3.1386719, 1.2490234, 1.9863281, -1.875, 1.2626953, -0.08642578, 2.9550781, -0.39624023, 2.8125, 2.2988281, -1.5800781, 1.9570312, -0.2915039, 1.609375, 0.19604492, -1.7460938, 0.67285156, -2.0136719, -0.22875977, 0.058929443, -1.890625, -2.2578125, 0.51171875, 2.34375, 0.0925293, -0.025314331, 1.9208984, -0.7080078, -0.21496582, 1.1318359, -0.123168945, -0.05279541, 1.0087891, -1.1347656, 0.7050781, 3.6640625, 0.74609375, 1.1015625, 0.23034668, -0.31591797, -0.9453125, 1.5302734, 0.43823242, 1.5175781, 2.2910156, 2.0410156, 2.2246094, 0.69677734, 1.8574219, 0.890625, -0.6586914, 2.515625, -1.7167969, 0.31958008, 1.3681641, 1.8955078, -0.8334961, -0.0019702911, -0.011932373, 1.3994141, -1.4423828, -2.9082031, -0.3935547, 2.1230469, -1.3623047, 1.9951172, -0.74560547, 2.3320312, -3.0429688, 1.3466797, -0.7446289, 1.3388672, 0.2590332, 0.109436035, 0.76464844, -1.4726562, -1.3398438, -1.1914062, 0.3125, 0.20825195, -2.3378906, 2.1152344, -0.9838867, -1.2080078, 0.36987305, 3.484375, 0.7421875, -0.2512207, 0.09008789, 2.4980469, 0.65234375, 1.6201172, 1.0898438, 0.3798828, -2.4003906, 0.30444336, 2.1621094, 2.4335938, -1.0576172, 0.6640625, 0.32470703, -1.1494141, -0.6542969, 1.2060547, 0.87841797, -0.6508789, -0.107299805, 0.4699707, 1.2177734, -1.2050781, 2.2402344, -2.1289062, 2.0625, 1.1015625, 0.5732422, 1.0771484, 0.7832031, -0.6542969, 3.2636719, 0.6699219, -0.67333984, 1.0947266, -0.16955566, -0.21911621, -0.62060547, 0.55126953, -1.2119141, 2.0019531, -0.7832031, 1.6005859, 0.27124023, 0.49536133, 0.4897461, 1.3681641, 2.3828125, -0.8774414, -0.21777344, -1.1484375, 0.58447266, -0.41137695, -1.5488281, 0.33569336, -0.57128906, -1.2792969, 0.21936035, 1.3359375, 0.1628418, -0.8442383, 0.70458984, 1.6982422, -0.34838867, -0.21655273, 1.3720703, -0.9375, 0.89453125, -1.0634766, -1.0693359, -0.3618164, -0.5678711, 0.31445312, -1.8300781, -0.74365234, 0.23046875, 0.65234375, -0.6616211, 0.30639648, 0.033966064, -2.1542969, -1.3417969, 1.0058594, 2.0078125, 0.13183594, 2.0371094, 0.8623047, 0.39160156, -1.9345703, 1.4824219, 0.5834961, 0.6616211, -0.5649414, -3.0292969, -0.48364258, 0.20092773, -0.03665161, 0.8666992, 3.8769531, 1.7148438, 1.5615234, -3.2421875, -4.3710938, -1.2587891, 0.55078125, 0.8515625, -1.2001953, -1.2880859, -0.22473145, -0.9091797, 2.2636719, 0.14746094, -0.64990234, 0.11645508, -0.12188721, 0.36083984, 0.37939453, 1.7705078, 0.66845703, 0.039215088, -0.5019531, 2.2539062, 1.6171875, 1.3125, 2.5117188, 0.68408203, -0.32104492, -3.4902344, 0.49658203, -1.4570312, 0.37939453, 0.921875, 0.67285156, 1.3085938, -0.15686035, -0.4909668, -4.6875, -0.07684326]}, "B07QYJKFQZ": {"id": "B07QYJKFQZ", "original": "Brand: thermomate\nName: Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White\nDescription: \ud83d\udce2 What are the benefits of using thermomate propane gas tankless water heater?

          \u2705 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It's ideal for RV' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

          \u2705 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

          \u2705 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77\u00b0F rise in temperature. This means that if your tap water is at 59\u00b0F, it will instantly deliver 1.32 gallons per minute of hot water at 113\u00b0F.

          \u2705 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 \"D\" cell batteries to ignite the electronic spark module.

          \u2705 5. It's designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance\uff0cyou can take it anywhere to get instant hot water.


          \ud83d\udcd6 Specifications

          Max. Flow Rate: 1.32GPM

          Related Gas Pressure: 0.4 PSI

          Power Rating: 34,000 BTU/Hr

          Activation Flow Rate: 0.44GPM

          Water Pressure: 2.5 PSI ~ 110 PSI

          Flue Type: LPG ( Liquid Propane Only )

          Power Source: 2 \"D\" Cell Batteries ( Not Included )

          Vent Pipe: No needed for outdoor use

          \nFeatures: [2.5 PSI Water Pressure Startup]\u00a0Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV's and Boats.\n[Instant Hot Water On Demand]\u00a0Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving,\u00a0saving up to 50% on water heating costs.\u00a0\n[Multi Safety Protection]\u00a0Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 \u00b0F.\n[Compact Exquisite Design]\u00a0Compact and space-saving design with minimal noise output which is portable for outdoors.\u00a0\u00a0A great\u00a0partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool.\n[Easy to Install]\u00a0Equipped with 1/2\" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it's the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).\n", "embedding": [-1.4667969, 3.0839844, 2.3886719, 0.65527344, -0.7285156, -0.4519043, -0.80078125, -2.3144531, -0.0635376, 1.7880859, 1.1933594, -0.012954712, 0.2878418, -2.0078125, -0.20959473, -0.16259766, 0.96435547, 0.28442383, 0.17932129, 0.9370117, 2.8007812, 0.62353516, 2.1015625, -2.59375, 0.2841797, 0.25830078, 2.6074219, -3.1210938, -1.7382812, 0.6772461, 0.4140625, 0.2607422, -0.41137695, 2.5019531, -0.64941406, -1.4091797, -3.0546875, 1.6005859, -2.5234375, -0.2364502, -0.31054688, -1.9433594, 0.28881836, -0.20397949, -1.4814453, -1.7802734, 0.7392578, -0.21130371, -0.2915039, -0.74560547, -0.8808594, -0.19519043, -1.8896484, 1.1035156, -0.0047912598, -1.8896484, -1.3837891, -1.2021484, 2.7929688, 1.4785156, -0.62060547, -1.6826172, -4.0039062, 0.46044922, -0.73046875, 0.28100586, -0.26953125, -2.8378906, -0.54003906, 0.33276367, 3.4648438, -0.3972168, 0.3359375, 0.21057129, -0.06536865, -0.62109375, -4.234375, 0.3154297, 3.9160156, 0.6689453, -0.8779297, 2.734375, 1.203125, -1.4267578, -0.7373047, -0.26391602, -0.42285156, -0.76171875, 1.8525391, 1.9335938, -1.1347656, 4.546875, -1.4492188, -2.1738281, 0.33813477, -1.4599609, 2.65625, 1.5839844, 0.9160156, 0.5336914, -0.47583008, 0.52001953, 0.41064453, 0.064208984, -3.6328125, -1.2880859, 1.5546875, 1.8515625, -2.6972656, 0.3864746, -2.5351562, -0.35253906, 1.71875, -0.90966797, -1.7666016, -0.2692871, 2.4394531, -0.42651367, 4.7148438, -0.09844971, 2.7167969, -1.2324219, 2.5195312, -1.3720703, 1.1435547, -1.0146484, 0.18725586, -0.9760742, -1.0957031, -0.74658203, -0.6748047, -0.35595703, 1.8066406, 0.47729492, 0.3100586, -1.1152344, -1.4550781, -3.515625, -5.5078125, -0.24377441, -2.0683594, 2.5019531, 1.6083984, 1.1123047, -4.7070312, -0.640625, -1.09375, 0.54345703, -0.7207031, 0.8857422, 2.1933594, -3.34375, -0.74121094, -1.6650391, 1.2900391, 2.5996094, -1.5869141, -0.41333008, 2.5488281, 2.8359375, 0.9003906, 0.32714844, -2.359375, 1.5898438, 0.40405273, -1.4345703, 2.0078125, -0.9326172, 0.6279297, 0.64990234, -0.24902344, -0.7426758, 1.5488281, 0.19995117, 0.64941406, -3.2539062, 1.0859375, 1.6953125, 1.0996094, -0.80029297, -5.4921875, -0.4814453, -1.2109375, 0.11810303, -0.25927734, 0.10839844, -1.2724609, -1.1064453, 0.16357422, -0.6069336, -1.2578125, -0.1315918, 0.5073242, -1.4130859, 1.4111328, -2.9140625, -3.1992188, -0.3959961, 1.6279297, 0.82177734, 1.1503906, -0.6230469, -1.6855469, -0.9116211, -0.053131104, -3.3945312, 0.62841797, 0.124572754, -0.36547852, 2.0898438, 0.2536621, 0.39697266, 0.6464844, -0.005531311, -1.9208984, 0.6069336, 1.9482422, 2.3652344, 1.1132812, 1.4560547, -0.5878906, 1.0771484, 1.7158203, 1.6308594, 0.25830078, 1.8359375, 0.06561279, 0.17980957, -1.8544922, -2.796875, 3.2421875, -0.44873047, 0.85839844, -0.8198242, 0.24194336, 3.2910156, 0.6254883, 1.5683594, 0.31982422, -0.044067383, -0.38891602, -1.5898438, -0.66748047, -0.07110596, 0.030899048, 0.056854248, -0.43579102, -0.3930664, 1.2148438, 0.03866577, -0.04345703, -1.7236328, 1.1923828, -2.3359375, -3.6582031, -1.5732422, -0.031280518, 0.1427002, -0.1574707, -3.2988281, 1.3828125, 1.7402344, -0.7011719, 1.1845703, -0.96777344, -0.60595703, 2.3378906, 1.7441406, -2.5664062, 2.2597656, 1.1113281, 3.3242188, 1.3974609, -0.27124023, 1.2744141, 0.92529297, -0.98046875, 2.2871094, 1.1513672, 0.9003906, 1.1279297, -2.5214844, 0.5571289, -2.3183594, 1.3056641, 0.42016602, 1.4638672, 1.3837891, -1.2392578, -0.17016602, 3.453125, -0.4951172, -2.4765625, 1.3837891, -1.1015625, 1.9199219, 3.8964844, -1.0585938, 0.7553711, -0.4182129, 2.0175781, -0.07745361, -2.8476562, 1.0166016, 0.7270508, 0.051818848, -0.24194336, -0.7060547, 1.5585938, 1.2705078, 1.0703125, -2.3300781, -2.7089844, -0.30395508, -3.9355469, -0.3503418, 3.234375, -2.4960938, 0.14953613, 2.140625, -0.94921875, 0.2241211, 1.5283203, -3.8359375, 0.9790039, -1.0302734, -1.1074219, 1.4335938, -0.5019531, -0.7734375, 2.0703125, -1.2324219, 2.0957031, -2.3808594, -1.3007812, 0.4765625, 0.1352539, -2.6582031, 0.7426758, -0.7758789, -0.5410156, 1.3652344, 0.6113281, 1.1669922, 1.3994141, -1.6474609, -2.1660156, 0.2866211, -0.23925781, -3.3925781, 1.7578125, 0.41186523, -2.5722656, -3.9355469, 1.3339844, 1.4492188, -0.089904785, 1.1650391, -1.6210938, 0.51660156, -0.48339844, 0.9433594, -0.2680664, 0.091674805, 1.0166016, -2.1582031, 0.14892578, -2.9179688, 3.0664062, -0.93603516, 1.8857422, -2.9667969, -0.5083008, -0.7709961, -0.81103516, 0.90722656, 0.9658203, 1.6611328, 1.6445312, 2.2480469, -2.015625, -0.28857422, -1.4296875, -0.99658203, -0.83251953, 0.9628906, -2.8046875, -3.0996094, -0.37890625, -2.6015625, -0.48999023, -1.9326172, -1.4365234, 0.6616211, -1.7763672, -1.4316406, 0.50683594, 1.6464844, 0.24597168, 0.51660156, 0.69921875, -0.87646484, -1.7753906, -3.09375, -1.1972656, 0.33862305, 0.45703125, -0.1730957, -0.9902344, 0.34399414, 1.9853516, 3.4570312, 0.18811035, 0.38378906, 1.1005859, -4.4804688, -0.28955078, 2.1640625, 0.20532227, -0.0011224747, -0.5019531, -0.90283203, -1.484375, -1.3583984, 1.5244141, 0.6152344, 4.1210938, 0.018920898, -1.3359375, 1.7207031, 0.8276367, 2.3867188, 1.1503906, -0.14892578, 1.7988281, -1.6367188, -0.92285156, 3.3496094, 2.9140625, -3.9570312, -0.29882812, 2.1816406, 1.0703125, 3.4609375, 2.4726562, -1.8876953, 0.94628906, 1.9365234, 1.7226562, 2.9628906, -0.81884766, -2.3496094, -0.6040039, 0.72216797, 2.4453125, 1.3876953, -0.46411133, 0.25219727, -0.41308594, 1.3056641, 1.7958984, -3.6640625, -0.2479248, 0.5957031, 0.08258057, 2.1425781, 2.4394531, 0.12133789, 0.095947266, -2.6425781, 2.7988281, -0.6591797, 0.38134766, -0.5136719, 0.9277344, 1.5185547, 0.7939453, -0.53466797, -1.3154297, 0.4321289, -0.44213867, 2.0722656, 1.3574219, 0.68115234, 2.28125, -1.7558594, -3.0488281, -0.017410278, -0.8955078, 0.33520508, -0.52734375, 1.4677734, -0.18249512, -3.3632812, -0.7050781, -0.9667969, -3.265625, -0.8173828, 1.7441406, -1.4267578, -0.96972656, -1.3886719, -0.2166748, 1.4423828, 1.8886719, -1.4746094, -1.7490234, -2.2558594, -0.0947876, 3.4589844, 0.19482422, 1.6142578, 1.4101562, -2.578125, 0.24609375, -3.59375, 0.13745117, 1.7666016, -1.1787109, 0.3894043, 1.46875, -1.0732422, 0.13623047, -0.24377441, 1.8457031, -0.47192383, -0.29467773, 2.1582031, -2.4804688, 0.19677734, -2.6601562, -4.9140625, -0.7290039, -2.2089844, 0.24890137, 2.2089844, 0.87402344, 0.85839844, -1.2324219, 0.1977539, -2.8574219, -2.0136719, 0.051574707, 3.9824219, -2.2890625, 3.8320312, 2.5878906, -0.04425049, -1.71875, -2.7675781, -1.28125, 0.8413086, 0.4560547, -0.3071289, -0.019256592, 0.4741211, -0.9819336, -0.9448242, -2.0820312, 1.8457031, -1.1962891, 0.66552734, -0.5288086, -0.23999023, 2.515625, -0.8828125, 1.8652344, 0.5859375, 2.6132812, 1.2695312, -0.061309814, -0.8520508, 1.7978516, 0.4399414, -0.5966797, -3.9257812, -2.0253906, -2.2128906, 3.2285156, 0.8442383, -0.42797852, -0.15246582, -2.5527344, -1.6152344, 0.34765625, 1.1220703, 1.9267578, 1.8173828, -3.0429688, 0.99121094, 0.08514404, -4.25, -3.1894531, -0.6430664, -0.53271484, -2.1386719, 0.10803223, 0.41845703, -1.4599609, -1.6953125, -0.21765137, -1.2421875, 1.0410156, 2.2988281, 1.5800781, 1.1425781, -2.4042969, -1.1005859, -1.1933594, -1.2392578, -0.3840332, 0.7182617, 2.4179688, -0.1315918, 2.3144531, 1.1582031, -2.1972656, 1.7167969, 0.14501953, -1.1699219, 1.0126953, -1.6494141, -0.72509766, -1.6630859, -1.4726562, 1.7324219, -0.53222656, 4.109375, 0.45629883, 1.1513672, 0.3696289, -0.5463867, -0.60302734, 0.3779297, 0.48608398, 0.87060547, 0.6142578, 2.4609375, 1.3037109, 0.8676758, 0.60791016, 1.1494141, 2.2890625, -0.19494629, 0.7246094, -1.3232422, 1.8613281, -0.8564453, 0.88427734, 2.078125, 0.3190918, 0.4267578, 1.6171875, 2.7304688, 0.13745117, -0.3071289, 2.5214844, 0.7446289, 0.91552734, 0.5107422, -1.4228516, 2.96875, -1.6210938, -1.4863281, 0.16088867, 4.4140625, -0.44873047, 1.9892578, -0.83740234, -0.33203125, 0.7163086, -2.3222656, -3.5703125, -1.9052734, 1.7138672, 0.9086914, -1.3242188, -0.1463623, 1.4013672, 3.7363281, 3.5917969, -0.06976318, 1.7001953, 1.8779297, -0.38452148, -0.22192383, -0.4086914, -1.7578125, -1.7646484, 0.31445312, 0.40112305, -0.038116455, 0.47314453, 1.5371094, 0.040649414, -1.890625, -2.0351562, -1.8066406, 1.5009766, -3.1757812, -1.2607422, -0.0947876, 0.8671875, 1.7724609, -0.9140625, -2.3261719, -1.1162109, -0.3786621, 0.6923828, -0.2397461, 0.3215332, -0.98535156, -3.4980469, -4.8476562, -0.69970703, 0.38964844, 1.6259766, 0.06549072, -0.091552734, -1.0185547, -0.62646484, 1.1435547, 0.7729492, -0.85546875, 3.1777344, -0.37817383, 1.2802734, -0.31860352, 0.52490234, 0.40649414, 0.027648926, 1.7158203, -0.004306793, -1.0693359, -2.1875, -2.9101562, -2.3671875, -0.8461914, -0.5600586, 0.3569336, 0.6298828, -1.6328125, 2.3476562, -0.36157227, -2.3867188, 2.4765625, -1.0351562, -1.7255859, 2.7792969, -0.3984375, 0.8618164, -0.47436523, 0.74853516, -0.25878906, 0.9926758, 1.7568359, 0.3137207, 1.2695312, -0.31298828, 0.99560547, -0.41015625, -0.09692383, -0.26611328, -1.3691406, 1.296875, 0.3540039, 0.015686035, -0.24279785, -2.8574219, -1.4453125, 0.8144531, -2.140625, 0.32226562, 0.5957031, -0.074401855, -0.6923828, 0.6328125, 1.34375, 0.8305664, -0.2475586, -1.9326172, -0.2211914, -0.7192383, 2.6191406, -0.44555664, -1.5488281, -2.4003906, -4.0507812, 0.8730469, 0.87353516, 1.1875, 0.49438477, -1.1542969, 0.90771484, 0.06530762, 0.03250122, 3.1640625, 1.1582031, 1.0244141, -3.5390625, 3.1699219, 3.0859375, -0.93115234, -1.2851562, 0.32348633, 0.609375, -0.30566406, 1.8125, 2.6445312, -0.81591797, -0.40234375, 0.009147644, 1.2607422, 0.41479492, -2.4140625, 1.2314453, -2.0097656, -0.06439209, 0.87890625, -2.2988281, -1.3173828, 1.1054688, 1.0078125, -1.671875, 2.0078125, 1.9873047, -0.4699707, -0.095458984, 1.2509766, 0.62402344, -1.4414062, 0.8876953, 0.7753906, -0.90527344, 1.5458984, -1.7197266, 1.25, 1.6679688, 2.5605469, 0.64501953, 1.8105469, 0.5576172, 1.1289062, -0.47265625, 2.9609375, 3.9746094, -0.2980957, 0.7265625, 0.7836914, 2.8320312, 2.4003906, -0.85839844, 0.99072266, -0.33764648, 0.9111328, 0.3515625, -1.5136719, 0.07861328, 0.27368164, -1.5488281, -2.59375, 0.43652344, -0.39868164, -1.9785156, -1.1796875, -0.44604492, 0.88623047, -3.4238281, 2.0898438, -0.92041016, 0.16992188, -1.1162109, 0.18701172, 1.3984375, 0.4387207, 0.3881836, 0.26733398, -0.80371094, 0.55859375, -3.4238281, 2.9863281, -1.0888672, -1.6757812, 0.21972656, 3.4140625, 2.1113281, 2.1601562, -1.6259766, -0.2758789, 1.0371094, 0.515625, -0.5073242, -2.09375, -0.2631836, -1.9951172, 2.4042969, 3.1640625, -1.4882812, 1.9960938, -1.6669922, -0.3552246, -0.90283203, 1.2314453, -0.032226562, -3.265625, -0.99072266, -2.4414062, 0.67333984, -0.5605469, 0.27490234, -3.3320312, 1.5751953, 3.1503906, -2.4121094, 0.42529297, 2.4414062, -1.4160156, 2.4082031, -1.4208984, -0.061279297, 0.2607422, 0.83251953, 0.20288086, 0.15161133, 0.19995117, 0.45361328, -0.44140625, 0.15795898, 2.4121094, 1.2763672, -1.5498047, -0.8129883, 0.8652344, 0.5703125, 1.5136719, 0.36206055, -1.5126953, 2.0859375, -1.4384766, -3.1425781, -0.030715942, 0.5126953, 1.4238281, 0.09643555, -1.1845703, -1.4179688, 0.77978516, 0.11260986, 1.0107422, -3.2402344, -0.58203125, 2.1835938, 0.4272461, -1.3085938, -0.32055664, -1.7119141, 1.9423828, -0.31811523, 1.4951172, -1.9101562, 0.8461914, -1.8691406, -1.2021484, -0.17980957, -0.0725708, 1.4482422, -1.2265625, -0.9609375, 2.0664062, 3.171875, -1.5996094, 0.69384766, 0.24169922, -2.4414062, -0.0077590942, 0.9355469, 0.9448242, 0.52783203, -2.8339844, -2.5722656, -0.24804688, -0.6069336, 0.32788086, 2.4609375, 2.3574219, -0.24389648, 2.7070312, -1.3974609, -1.1728516, 0.61035156, -1.9013672, -0.43701172, 0.33154297, -0.3173828, 0.46777344, 1.6611328, 2.2441406, 0.57421875, -0.3154297, -0.90966797, 1.0439453, 0.6010742, 2.3183594, 1.8193359, 0.94091797, 0.12359619, -0.5751953, 2.8046875, 1.90625, -1.1367188, 1.3623047, 2.2734375, -0.35620117, -1.7324219, -1.2285156, -1.9677734, -2.0957031, 0.96484375, 0.066467285, 3.4609375, -1.0966797, -1.3701172, -3.8789062, -1.3300781]}, "B0874MTD5B": {"id": "B0874MTD5B", "original": "Brand: Gaier\nName: Gaier Barbecue Grill 8'x 5'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard\nDescription: Product Dimensions:
          - Weight: 44.1lbs
          - Overall size: 98.4 x 59.1 x 106.3 inches
          - Material: Metal, Polyester
          - Cover Color: Brown/Coffee
          - Frame Color: Black\nFeatures: BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric\nDurable steel frame with powder-coated finish is rust-resistant\nVented, double-tiered canopy offers smoke ventilation and stability against windy conditions\nShelves on both sides provide space for placing cutleries or grilling accessories\nGaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on\n", "embedding": [-0.7114258, 2.3984375, 1.4052734, -3.2910156, 0.7895508, 0.9526367, 0.9926758, -1.6865234, 1.2685547, 2.6699219, 0.1505127, -1.1982422, 0.07940674, -3.3964844, 0.7734375, 1.6132812, 2.0234375, 1.2333984, 2.2578125, -0.62158203, 0.9609375, 0.04006958, -0.7236328, 1.4511719, 0.82958984, 0.9584961, 3.5214844, -2.5664062, 0.85791016, -0.48120117, 1.7314453, 0.60302734, 0.921875, 1.3701172, -1.8857422, -2.0019531, -0.9082031, 0.71240234, 0.76660156, -1.5048828, -0.52197266, -2.7597656, 1.8828125, 1.4785156, -0.5205078, 1.9667969, -1.4765625, 1.2451172, 0.23413086, -1.9755859, 1.0009766, 0.62158203, 2.4882812, 0.43896484, -0.5253906, -0.9111328, -1.3779297, -1.8935547, 2.0078125, -0.7626953, -1.3017578, -1.8896484, -0.30249023, 3.0625, -1.359375, -1.4482422, -0.13269043, -1.2070312, 1.1044922, -0.07366943, 1.5390625, -2.0644531, -1.7998047, -0.7402344, 0.46728516, -0.7285156, -1.2216797, 1.4179688, 1.6679688, 0.21813965, -0.49414062, 2.1425781, 3.0917969, -1.6425781, 1.5585938, -2.1523438, -2.578125, -1.4443359, 1.5068359, -1.6738281, -0.12756348, 1.4755859, -1.0136719, -2.3320312, 0.29467773, -2.6835938, 2.2695312, 0.5185547, -0.6582031, 3.3417969, -0.5053711, -0.72558594, 0.80322266, 0.78564453, -1.1162109, -1.8027344, 2.5253906, -1.9570312, -0.05770874, -0.2064209, -0.83935547, 1.03125, -1.7158203, -0.2364502, 0.5136719, -0.20288086, -0.5209961, 3.2285156, 0.89208984, 0.9941406, 3.1796875, 2.9453125, 0.7651367, -3.21875, 0.24108887, -2.7070312, 1.0117188, 1.5722656, 2.7832031, -0.80810547, 0.20947266, -2.5351562, -0.5991211, 1.7412109, -2.5742188, -0.85839844, -2.2695312, -0.8310547, -4.8671875, 2.4023438, -1.5878906, 0.049346924, 2.6796875, -0.23376465, -2.5878906, -0.24072266, -0.97216797, 3.6972656, -0.35424805, -2.6699219, 1.5703125, -2.671875, -1.3574219, 1.7333984, 0.62939453, -0.96777344, 0.7475586, -1.1240234, 2.8769531, 0.0036392212, 2.7441406, -2.4921875, -1.7119141, 0.6230469, 0.7714844, -0.8886719, 1.0214844, 3.5722656, -1.3076172, 1.4931641, 2.4355469, -1.3603516, 1.1611328, -0.9199219, 1.0673828, -1.8017578, -1.7197266, 1.5058594, 0.71875, -0.80566406, -0.2602539, -3.3671875, 0.6665039, 1.0888672, -1.21875, -0.38012695, -1.65625, 0.70751953, -0.47143555, 0.17785645, 0.08691406, -0.18261719, -0.44091797, 0.87841797, -3.3730469, -0.18139648, -1.6464844, -0.5073242, -1.7587891, 0.64697266, 0.40283203, 0.70947266, -1.4619141, 1.8212891, -1.3720703, -0.36254883, -2.1992188, 0.4152832, -0.3330078, 0.29492188, 1.3183594, -0.4963379, 1.6669922, 1.9287109, 0.59375, 1.4570312, 0.49169922, 0.35864258, 1.0625, 1.8974609, -1.296875, -0.6147461, -1.5175781, 3.5351562, -2.0546875, 1.0380859, 1.2958984, 0.51708984, -0.4230957, -0.46435547, 1.0498047, -0.43115234, 0.85009766, 0.35083008, 0.041748047, 0.8881836, -0.113708496, -1.1816406, -0.53027344, -1.140625, 1.3251953, 0.70214844, -2.2421875, -0.36523438, -0.52197266, -0.033111572, -0.57421875, 1.9052734, -0.6694336, -2.1484375, -0.5644531, 2.09375, 0.1772461, 0.79296875, 0.6323242, 2.3027344, 0.13964844, 1.6660156, -1.5722656, -2.1972656, -1.4736328, -0.8769531, 1.7373047, 0.6220703, 1.0683594, 0.002105713, -1.578125, 1.2958984, -2.0703125, 0.07727051, 1.2246094, 0.53759766, 0.5786133, -1.1015625, 1.6669922, -0.8017578, -0.63916016, -1.4609375, -0.7944336, -1.9433594, 0.23828125, 1.6367188, 1.8076172, -0.6357422, -0.9785156, -1.8183594, -1.6513672, -1.3671875, 0.29052734, 1.1435547, 1.7412109, -0.72753906, -1.2822266, 4.5351562, -1.2099609, -0.034820557, 0.62402344, -0.76220703, -1.5537109, 0.6635742, 0.56152344, 1.1767578, 0.5444336, -1.8867188, -1.1328125, -1.5957031, 1.7783203, -3.625, -0.32543945, 1.28125, 1.1738281, 0.94921875, -0.43286133, -0.8466797, -0.578125, -1.4755859, 2.9980469, -2.2324219, 0.45043945, 3.484375, -0.019348145, 1.3613281, -1.140625, -1.2070312, -2.203125, 1.1044922, -0.9038086, 0.4020996, 0.62060547, -1.2324219, 0.90185547, -1.6533203, 0.47021484, -2.3828125, -0.55810547, -2.2460938, 0.33935547, -0.81347656, -3.140625, -0.8876953, 0.18701172, -1.2324219, -3.3320312, 0.8647461, -0.6503906, -4.2070312, 0.3022461, 2.8046875, -0.23425293, 2.9257812, -0.4753418, 0.85791016, -0.022323608, -1.9960938, -0.37182617, 1.6435547, 1.7197266, 1.9345703, -2.4101562, 0.8208008, -1.1923828, 1.7636719, -0.28735352, -0.43041992, -0.06567383, 0.26708984, -0.27441406, -3.203125, 1.046875, -0.123046875, 0.50439453, 0.20007324, -0.55371094, -2.4335938, -2.0273438, 1.0058594, -1.4609375, 5.5390625, 1.0996094, 0.7055664, -1.6904297, -1.1855469, 0.44506836, -1.03125, -2.5078125, -1.203125, -1.0273438, -0.006500244, -1.4677734, -2.2578125, -0.051483154, -0.24035645, 0.21520996, -0.28076172, 0.50683594, -0.13635254, 0.26708984, -2.1601562, -0.88427734, -0.99560547, 1.6425781, 0.08648682, -0.56396484, -2.546875, -1.0244141, -0.5444336, -0.7734375, -2.0664062, 3.1757812, -0.5957031, 0.105651855, 2.046875, -0.18701172, 2.6015625, -0.85498047, -3.5527344, 3.1328125, 3.8710938, 0.5776367, -1.7695312, 0.17480469, -2.6484375, -3.5878906, 0.5336914, 1.5751953, 2.90625, 2.6484375, 0.5625, 1.1074219, 0.056671143, 0.60498047, -1.7304688, -2.3886719, 0.8208008, 3.1445312, 0.29248047, -2.5273438, -0.09692383, 0.43310547, -2.234375, 0.0748291, 1.6777344, -0.09729004, 0.8359375, 0.056365967, 1.3027344, 1.2333984, 0.7089844, 3.1132812, -1.8027344, 3.6933594, 1.1943359, -1.5527344, 1.7373047, -2.0488281, 1.9238281, 0.3684082, 1.0488281, 1.6816406, 2.3554688, -0.25463867, -3.1015625, -0.19873047, 2.0488281, 1.7158203, -2.3085938, 2.1367188, -1.1474609, 0.14990234, 0.66552734, -2.140625, 1.8408203, -0.6767578, -0.8623047, 2.0976562, -0.4921875, 0.59375, 1.2802734, -2.4492188, -0.033203125, -2.1074219, -1.2119141, -1.8916016, -1.5068359, 0.28710938, -4.2617188, -5.0742188, -1.6904297, 2.2617188, 0.48583984, -2.7949219, -0.71728516, 2.1484375, 1.2832031, 1.2539062, -0.31274414, 1.0244141, -2.3554688, 0.76660156, 0.13891602, -0.7734375, 2.0976562, -2.4628906, 2.9589844, 0.9892578, -0.84521484, -3.5488281, 0.24279785, -2.1308594, 0.13830566, 0.68603516, 1.28125, 0.43286133, -4.0898438, -0.12866211, -1.9228516, -0.7192383, 5.0742188, -0.2919922, -1.3789062, 0.86621094, 1.5683594, 1.2910156, -0.6166992, 3.3984375, -0.12249756, -0.37402344, 2.6308594, -0.8779297, 0.22229004, -1.7617188, -5.4101562, -0.15881348, -1.9414062, 0.3190918, 3.2226562, -0.32226562, -0.21520996, 1.4912109, -1.7617188, -1.0185547, -1.2539062, -2.5644531, 0.18823242, -3.2050781, 1.2324219, -0.16638184, -1.1601562, -1.8769531, -3.3964844, -0.6508789, 0.33129883, 1.8515625, 2.5, 0.17675781, 0.7216797, 0.24182129, -0.7319336, 0.0037822723, 2.2011719, -1.2705078, -0.9848633, 0.83203125, 0.3359375, 2.2929688, -0.8276367, -0.87597656, 1.4433594, 1.9287109, 1.3007812, -1.7519531, -2.2929688, -0.44750977, 2.9472656, -0.4658203, -2.5507812, -0.9584961, 0.32861328, -0.35058594, -0.5258789, -2.1328125, 1.0664062, -2.4765625, -0.062927246, -0.68847656, 3.1796875, 0.40063477, -0.875, -4.3398438, -0.19360352, 0.38208008, 0.57958984, -1.9736328, -0.6411133, -0.051818848, 1.2685547, -0.7607422, -2.0527344, -0.15930176, 0.050048828, 0.9736328, -1.5234375, 1.0595703, 1.8583984, 2.3710938, 3.7519531, -2.8691406, 0.2434082, 2.1621094, 0.23425293, -0.7939453, 2.9785156, -1.3134766, 1.296875, 1.5195312, 0.17407227, -2.3847656, -1.9873047, 0.8432617, -2.2773438, -1.3837891, -1.0615234, 2.3183594, 1.1308594, -0.62158203, 1.2265625, 0.5385742, 3.4492188, -2.8945312, -2.109375, 0.70947266, 2.2480469, -2.984375, 0.69189453, 1.5615234, 1.7929688, 1, 0.62158203, 0.29125977, -0.22253418, 0.47094727, -0.35473633, 1.609375, -2.7617188, -1.1787109, 1.5644531, -0.12512207, 0.3996582, -1.9541016, 2.4882812, 3.2539062, -0.9111328, 1.7314453, 1.3925781, -1.7744141, 1.5859375, 1.4121094, -0.32910156, 0.107421875, -0.7441406, -3.0917969, 1.9033203, -0.34643555, -3.5136719, -0.4099121, -0.5932617, -1.7363281, 3.6660156, 0.48266602, -1.4033203, 2.4824219, -1.1015625, 0.5541992, -0.1352539, -1.3349609, 1.0878906, 0.1907959, -0.8408203, -1.8515625, 0.29858398, 3.7382812, -0.9091797, -0.02407837, 1.4980469, 1.4287109, -0.3095703, -1.5078125, -0.25512695, -2.5410156, -3.7421875, 3.0742188, 2.828125, 1.5244141, 1.4404297, 0.85009766, -4.0820312, -1.1679688, -2.453125, 3.7265625, -1.1298828, -0.12054443, 1.7265625, -0.8881836, 0.42944336, -2.34375, 1.5947266, 0.049102783, 0.72314453, 1.7958984, 1.3994141, -1.8974609, -1.0566406, -2.8203125, -3.6894531, -1.8798828, 0.45385742, -0.084228516, -0.16638184, 1.7216797, -2.21875, -2.4472656, -0.27954102, 0.67822266, 1.0625, -0.91308594, 0.9404297, 0.2919922, -1.7070312, -1.6220703, 0.2232666, -0.375, -1.2568359, 2.515625, -0.6430664, -2.5917969, -1.3076172, 0.3154297, -1.7753906, 0.4453125, 1.4853516, -0.12420654, 1.4550781, 1.6650391, 1.3261719, -1.0878906, 0.8486328, 0.73046875, 0.34155273, 1.6689453, 0.2232666, 1.8037109, -1.8564453, -1.0146484, -0.17077637, -2.8964844, -0.5097656, 1.1855469, -0.66015625, 1.2558594, 2.0722656, 0.1227417, -0.25732422, 1.4121094, 1.0761719, 2.796875, 1.1708984, -2.2636719, 2.7480469, -1.4160156, -2.5390625, -0.71728516, -2.078125, -3.1914062, -0.08325195, 0.93066406, 1.2617188, 0.97216797, 2.1015625, 1.3017578, 1.46875, -1.9101562, 0.66308594, -0.8515625, 0.84277344, 0.04864502, -1.1992188, -2.9453125, -4.0703125, 0.07836914, 2.2167969, 0.14978027, -0.2142334, -1.6542969, -1.9804688, -1.4667969, -0.07385254, -0.5605469, 1.4892578, 2.2070312, -2.2578125, 3.8691406, 1.359375, -0.048034668, -0.46533203, -0.13537598, 1.3730469, -0.7084961, 3.0917969, -0.63720703, -0.22753906, 1.4511719, -1.2285156, -0.04421997, -0.04574585, -2.0742188, 0.6376953, -1.7382812, 0.35351562, -0.95214844, -1.6435547, -4.0390625, 2.4785156, -0.95947266, -0.25927734, -0.06555176, 2.7226562, -1.1816406, 2.6777344, 1.71875, 2.4257812, -2.1875, -1.2421875, -0.20922852, -0.5839844, 2.2460938, -0.6220703, 0.6542969, 1.1259766, 0.3984375, -0.26904297, 2.7050781, 0.578125, 1.3662109, 3.0273438, 0.13354492, 1.6132812, 1.40625, 2.0683594, 1.0078125, 2.3066406, 1.5712891, -2.09375, 0.6513672, 3.3613281, 3.9335938, 0.9038086, 0.40551758, 0.45458984, 1.3652344, -1.3154297, 0.875, -1.1972656, 1.0839844, -4.5273438, 1.6083984, 0.1673584, 1.2646484, 0.42749023, 0.34765625, -0.43408203, -0.19616699, -3.9765625, -0.92626953, 1.8447266, 0.7207031, -0.4963379, -0.60791016, 0.03451538, 0.72216797, -2.6113281, -0.003353119, 0.1595459, -0.8227539, -1.9443359, 3.4316406, 3.1933594, 0.73779297, 0.39697266, 2.1171875, 1.21875, 2.0566406, 1.7607422, 0.45507812, 0.8388672, -0.3552246, 0.82177734, 0.046081543, -0.24414062, -1.7880859, -0.93652344, 1.171875, -1.8994141, 0.4387207, 0.6665039, 0.017089844, 2.4433594, -0.082092285, 0.6904297, 1.0820312, 2.2207031, -1.2607422, -0.4309082, -2.5078125, -2.8554688, -0.6113281, 0.61279297, 0.41992188, 3.4238281, 0.0993042, -1.9042969, 0.70458984, 1.9511719, -0.10424805, -0.36523438, 0.1538086, -0.47216797, 1.2480469, -1.5888672, 1.5664062, 0.13171387, -0.47753906, -0.3779297, -0.58203125, -0.5654297, -0.15136719, 2.8710938, -0.44580078, -0.61328125, 0.42163086, 0.53515625, -0.35620117, -4.1835938, -1.5078125, 0.1361084, 0.8071289, -2.4609375, -1.7177734, 0.16003418, 0.14953613, 1.0898438, 0.0713501, 1.0341797, -0.3984375, -0.51123047, 1.546875, 0.085876465, 1.8613281, -0.40649414, 0.70947266, -1.640625, 0.2541504, 0.82714844, 1.0800781, 1.5585938, -1.3447266, 0.5888672, 1.3955078, 1.2636719, 1.9414062, 0.75, -0.6118164, -2.0976562, -0.95751953, -0.01626587, 1.3828125, 1.4960938, 1.0214844, -1.7158203, -1.3603516, -2.5039062, 0.87060547, -1.2226562, -0.7294922, 1.0507812, 3.7011719, 2.5078125, 0.30078125, -2.3730469, -1.9101562, 0.9160156, -0.81347656, 1.3867188, 0.95947266, -2.7402344, -1.0458984, 0.7504883, 3.5488281, -1.3349609, -0.95214844, 1.0878906, -1.7431641, 2.1015625, -1.8798828, 1.2041016, 1.8994141, -1.7421875, 1.6132812, 2.1015625, 3.5800781, -0.89160156, 1.1201172, 0.9423828, 0.4033203, -3.1425781, 2.6875, -0.453125, 2.9902344, 0.5751953, 1.0556641, 0.6123047, -1.1191406, 0.45361328, -0.75878906, -1.7421875]}, "B085J1RSWD": {"id": "B085J1RSWD", "original": "Brand: Dometic\nName: Dometic 50216 RV 2-Burner Propane Cooktop\nDescription: The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It\u2019s the ideal cooking companion, wherever you are!\nFeatures: \n", "embedding": [-2.2714844, 0.5048828, 1.7460938, 0.36621094, -1.0595703, -0.22009277, -0.087646484, -0.15478516, -1.5712891, 3.7617188, 2.3417969, 1.3359375, 0.36645508, -1.0419922, -1.4824219, 0.18017578, -0.31567383, -0.5854492, 0.9213867, -0.7182617, 2.0117188, -0.31445312, -0.31689453, 0.25, 0.1463623, 0.077697754, 2.9355469, -4.2578125, -1.6152344, -1.0283203, 1.9140625, 1.0429688, 1.796875, 2.0664062, -1.9404297, -0.296875, -1.5683594, 0.5932617, -3.5546875, 0.6352539, -1.8447266, 0.5566406, 0.7348633, 0.037475586, -2.9589844, -1.1728516, -0.13208008, -1.0263672, -1.859375, 0.31152344, 2.4511719, 1.4902344, 0.4802246, 1.1191406, -2.5175781, 1.546875, -0.45996094, -2.0429688, 1.9443359, 1.3759766, -0.7216797, 1.4912109, -2.8808594, 1.0214844, -0.9658203, 0.40600586, -0.62060547, 0.9243164, 0.95947266, -2.0214844, 3, 0.065979004, -3.0703125, -0.0440979, 0.2849121, -2.8085938, -2.8984375, 0.5932617, 2.6816406, -0.4008789, -0.6821289, 1.2226562, 1.2666016, -1.3066406, 1.7587891, -0.9145508, 1.1220703, -0.17199707, 2.546875, 1.5605469, -2.4277344, 2.1953125, -2.4941406, -2.0117188, 2.4257812, -0.30517578, 1.0595703, 1.1708984, -1.2294922, 1.5595703, -2.8867188, 0.8457031, 0.24169922, -1.3671875, -3.6621094, -0.8286133, 0.29736328, -0.9375, -2.9355469, -0.15258789, -3.1621094, 0.8979492, 0.8227539, -1.2744141, 0.89697266, 0.7324219, -0.40625, 0.8701172, 1.4931641, 0.9589844, 3.2675781, -1.1279297, 1.2949219, -1.421875, 2.5605469, 2.0605469, -1.2841797, -0.30273438, 3.0195312, -1.6708984, -1.1044922, -0.8828125, 1.8828125, -1.1787109, -1.8486328, -2.1640625, -3.1640625, -1.9179688, -4.1992188, -0.9370117, -2.1113281, 0.066589355, 1.2353516, 0.56884766, -2.6542969, -0.50439453, -0.21875, 1.4199219, 1.234375, -0.8300781, 0.61865234, -2.0976562, -0.9008789, -3.0605469, 3.4140625, -0.09057617, -2.4960938, 0.017807007, 3.7734375, 1.2558594, -0.07867432, -4.4140625, -0.78027344, 2.7363281, 0.21069336, 0.08746338, 0.44433594, 2.6230469, 1.015625, 1.7070312, -1.4296875, -1.7949219, 0.55908203, -1.9277344, -0.39086914, -1.0234375, -1.1210938, 2.7421875, 1.2226562, -0.9848633, -3.9296875, -2.0878906, -0.12310791, 2.4101562, -0.48706055, -1.7617188, 1.4257812, 0.64697266, 1.3662109, -2.5039062, -1.5078125, 0.6503906, 1.0869141, -0.6557617, 0.60302734, -1.0058594, -2.9121094, -2.6035156, 0.19885254, 0.9082031, 0.6767578, -0.47680664, -1.6484375, 0.7998047, -1.7783203, -0.51708984, 0.32495117, -0.91845703, 2.0527344, 2.0097656, 2.4414062, -2.59375, 3.4277344, -1.8603516, -0.6567383, 0.025512695, -0.32348633, 2.6835938, 0.41577148, 1.7675781, -0.8666992, -1.9169922, 2.1914062, 2.2285156, -2.21875, 1.5566406, 1, -0.35961914, -1.7197266, -0.7480469, 1.8486328, 0.83496094, -1.2441406, 0.63964844, -2.0117188, 1.9199219, 1.9550781, -1.7763672, 0.19689941, -0.89990234, 1.5869141, -1.390625, 0.96728516, 1.4707031, 0.54785156, 0.8720703, -1.8154297, 2.3320312, 1.1591797, 2.1132812, -2.6503906, -1.8164062, 0.71240234, -2.4492188, -2.6816406, -1.6699219, -0.13806152, -0.90722656, -0.6875, -3.0410156, 0.9375, 1.0830078, -1.5888672, -0.3076172, -0.7504883, 1.640625, 3.9882812, 0.81347656, -3.8574219, -0.55371094, 1.5605469, 2.2675781, 2.2714844, 1.6240234, 0.96484375, 0.86572266, -1.9882812, 2.046875, 1.0683594, 3.5371094, 2.6992188, -0.060913086, 3.0078125, -0.48583984, -0.3786621, 2.0898438, 1.9873047, 1.3095703, -1.3408203, -0.27734375, 3.7304688, -1.6376953, -3.9511719, 1.7910156, -2.5878906, 3.28125, 1.1992188, -0.29516602, 0.0025920868, -0.4404297, -1.4814453, 1.0244141, -0.4038086, 2.203125, -1.5566406, -1.0322266, -0.9199219, 0.5805664, 1.2197266, 0.39697266, 2.0078125, -0.6567383, -3.3671875, -1.9042969, -1.0742188, -0.45898438, 4.6015625, -1.1582031, 1.5917969, 0.6616211, 0.98291016, 0.30810547, -1.8085938, -1.8046875, 1.3193359, -0.61083984, 0.32910156, -0.55371094, 1.5068359, -1.234375, 0.26391602, -0.57958984, 2.2128906, -0.78515625, -1.828125, 1.4121094, -0.7783203, -4.2773438, 0.42822266, 0.85595703, 0.25024414, 2.1660156, -1.9121094, 0.39770508, -1.2197266, -3.0722656, -2.1835938, -1.4335938, -2.0078125, -3.59375, 1.2792969, 0.39257812, -1.0039062, -4.3671875, 0.79052734, 0.49243164, -1.2216797, -0.05102539, -1.8037109, 1.1679688, -0.55322266, -0.6220703, 1.0595703, 0.66503906, -0.74560547, -2.359375, -0.9428711, -3.7675781, 1.3496094, -0.56591797, 0.73339844, -0.36401367, 0.4934082, -1.9824219, -0.040893555, 1.0283203, -1.3056641, 2.6933594, -0.20275879, -0.07537842, 2.3359375, 0.28979492, 1.2792969, -0.5810547, -4.5585938, -0.39160156, 0.33081055, -2.5117188, -4.3085938, -3.4921875, 0.93847656, -1.8066406, 2.0214844, 0.41967773, -0.36132812, 0.7729492, 1.3154297, -0.07940674, -0.26416016, 3.21875, -0.045166016, -2.7636719, 0.09301758, -0.21923828, -0.06137085, -0.65771484, -1.2792969, 0.58447266, 2.1816406, -0.0029945374, 1.2050781, -0.03955078, -2.1503906, -0.7006836, -0.71875, -2.9160156, 0.7446289, -0.68652344, -0.122558594, 4.0898438, -1.5195312, -1.046875, -3.5078125, -1.1484375, 2.28125, 0.3161621, 4.671875, -0.44262695, -0.5239258, 1.2109375, 2.2460938, 0.3239746, -0.9736328, -0.10656738, 1.2958984, -3.6738281, -2.4570312, 0.78759766, -0.062683105, -0.6542969, -0.7529297, 1.3515625, -0.29296875, 3.2890625, 1.5478516, -1.5429688, -0.7133789, -0.8623047, 1.0966797, 3.1816406, -0.8598633, 1.1865234, -2.2324219, -0.19750977, 2.8535156, 1.1210938, -0.12902832, 3.3867188, 1.0390625, 2.0039062, 3.09375, -2.6367188, -0.54248047, 1.4443359, -0.8334961, -0.6660156, 4.1914062, -0.44018555, 1.5546875, -0.10961914, 0.7871094, -0.7338867, -2.5546875, 1.3242188, 1.6982422, 2.3808594, 0.25390625, -0.296875, 0.29492188, 2.5371094, -0.4621582, 2.5703125, 0.25805664, 0.029296875, 2.3730469, -0.7426758, 0.121154785, -3.3457031, 1.7304688, -0.47045898, -0.018432617, 0.33325195, 1.9794922, -2.3320312, -1.6464844, -0.52783203, 1.6279297, -1.375, 0.95947266, 1.0830078, -0.62060547, -1.3925781, 0.53027344, 0.11090088, 1.5097656, -1.4707031, 0.71972656, -0.5566406, 0.5546875, -0.0030155182, 0.019958496, 4, 1.4033203, -0.40161133, -0.55566406, -3.4570312, -0.52734375, -1.7568359, -1.2539062, -0.44067383, 1.0263672, -0.11657715, 0.6435547, -0.27929688, 3.4492188, -1.1806641, 0.07104492, 1.2304688, -0.8769531, -0.19787598, -2.4941406, -4.6367188, 1.9228516, 0.41748047, 0.4020996, 1.9521484, -1.5996094, 0.3017578, 0.42895508, 0.82666016, -3.109375, -1.8896484, -1.5019531, 1.265625, -2.7910156, -0.31567383, 2.6132812, -1.453125, -1.8574219, 0.27075195, -1.6699219, 1.6259766, 1.2392578, 1.4960938, -1.9208984, 0.7792969, 0.09320068, 0.6503906, -0.58203125, 0.22924805, 2.1191406, 0.40185547, -0.081848145, -3.3554688, 1.5380859, -2.9628906, -1.640625, -0.054504395, 2.0644531, 2.1738281, -0.31469727, 0.68847656, 0.7734375, -0.3935547, 0.20275879, -3.6757812, -1.2617188, 1.5625, -0.72265625, 0.5488281, 0.6333008, -0.34765625, -1.5927734, -0.25561523, 2.234375, -0.79052734, 2.2988281, 0.9770508, 0.6064453, 0.5253906, 0.18786621, -3.5039062, -1.3066406, 1.0429688, -0.099121094, -2.1289062, -0.045806885, 0.2006836, 0.8227539, -0.42578125, -2.7851562, -2.8066406, 1.5791016, 3.9804688, 0.14990234, 2.8242188, -1.3144531, -2.4960938, 0.22741699, -0.099975586, 0.5078125, 0.5449219, -0.6425781, 2.9414062, 1.4931641, 0.91064453, -0.84814453, 0.6772461, 1.3056641, -1.8300781, -0.2866211, 0.3491211, 0.77197266, 0.046844482, -1.3183594, 3.7441406, 0.46362305, 1.4130859, -2.4511719, 0.74609375, -1.4033203, 3.0332031, -0.35424805, 0.74365234, 1.4824219, -0.24121094, -0.43798828, -0.43725586, 1.6357422, -1.9833984, 0.60009766, 0.23120117, 3.1269531, 1.5322266, 0.42871094, 3.0957031, 0.67285156, -1.1689453, -0.2939453, 1.4628906, 2.7460938, -0.6826172, 2.9609375, 1.3837891, -2.9882812, 2.0644531, -0.5102539, -0.9033203, -0.85546875, -0.56103516, -0.9897461, -0.44506836, 0.13293457, -1.7998047, 1.1152344, 3.1035156, -1.25, 0.3857422, -1.4794922, -0.84375, -0.95996094, -3.2675781, -1.8691406, -0.030975342, -0.38110352, -1.7050781, -2.4941406, -1.8466797, 1.9814453, 0.48291016, 0.34521484, -1.1806641, -1.328125, 1.7792969, 0.17553711, 0.021072388, -0.46240234, -0.82910156, -2.34375, 1.9482422, 2.7617188, 0.7636719, 1.9736328, 3.0332031, 0.46289062, -0.88916016, 0.007156372, -2.3261719, 2.2011719, -2.25, 0.14819336, 1.7373047, -2.453125, -1.8291016, -1.6162109, -0.32739258, -1.3564453, 2.4296875, -0.05834961, -1.5830078, -0.80078125, 2.921875, -0.44799805, -2.7988281, 0.0345459, 1.2148438, -0.33691406, -0.7104492, 0.5, -1.3046875, -0.4091797, -2.265625, -0.09118652, -2.5839844, 0.123413086, -1.6582031, 0.2130127, -1.4667969, 1.4501953, 1.3876953, -0.47192383, 1.4033203, -1.2890625, -0.29882812, -3.921875, -0.7729492, 2.7148438, 1.2373047, 0.9916992, 2.6308594, -0.20751953, 1.3583984, 1.1376953, -1.4384766, -1.1308594, 1.3320312, -0.26611328, 0.8647461, -0.62060547, -0.9433594, 0.20080566, 0.34960938, 0.5332031, 0.1517334, 1.7919922, 0.31054688, -0.80810547, 0.98095703, -0.25317383, -0.025558472, 0.36450195, -1.8691406, -0.8901367, 0.10473633, 1.3935547, -0.2763672, -0.030014038, 0.4580078, -3.4609375, -1.1416016, -1.9160156, -2.6132812, -0.1463623, -0.19787598, 1.1259766, 0.34399414, -0.09466553, 0.7504883, 0.71972656, -1.3037109, -0.055023193, 0.76953125, -0.07366943, 3.7011719, 2.6035156, -1.2304688, 0.56396484, -1.1552734, 1.7353516, 1.1904297, 1.9580078, 0.40161133, 0.43969727, -1.5332031, 1.3505859, -0.24121094, 2.4707031, 2.3808594, -0.7060547, -0.38623047, -0.3095703, 2.7324219, -1.7753906, -0.3696289, 0.8442383, -1.4160156, -0.119018555, 5.3867188, 0.85791016, -2.28125, 2.1972656, -0.91064453, -0.5527344, -2.1699219, -1.2539062, 0.08856201, -1.7607422, -2.3945312, -0.16186523, -0.14477539, -2.7792969, 2.8867188, 0.9448242, 0.25830078, -0.10272217, 1.4785156, 0.53222656, 1.2949219, 2.2929688, 1.6552734, 0.42822266, 1.3837891, 0.46484375, 1.1787109, 1.8242188, 0.21240234, 1.0166016, -0.93603516, -0.013664246, -2.0585938, 2.0742188, -1.4082031, 1.4101562, 1.3232422, 1.3564453, 2.4394531, 1.1933594, 2.4707031, 0.8125, 2.1132812, 0.9511719, 0.7241211, -0.20874023, 0.7114258, -0.26586914, -1.25, -1.3574219, 0.39208984, -1.4101562, -1.6181641, -1.453125, -0.59521484, 0.86279297, -2.8457031, 0.118896484, 0.110839844, 1.3486328, -1.3681641, -0.6323242, 0.7050781, 0.84228516, -1.3183594, 1.0361328, 1.7998047, -0.7817383, 0.1977539, -0.7583008, -0.9868164, 2.3027344, -4.140625, 0.5102539, 0.6098633, 1.5341797, 1.5605469, 1.4228516, 1.1757812, 0.30981445, 0.068237305, 2.5761719, 0.43798828, 1.2851562, 1.1445312, -1.1064453, 0.011764526, -0.65722656, 3.4335938, 1.0849609, 0.5498047, 1.9794922, -0.42578125, -1.1015625, -2.8769531, 1.4169922, 2.9394531, 1.1152344, 0.46923828, -3.7558594, 3.0546875, -1.5478516, 0.119628906, -2.1835938, 1.5517578, -0.7783203, -1.8652344, -0.90478516, 0.9995117, 0.4321289, 2.4277344, 0.79052734, -2.1972656, 2.4355469, -0.5629883, 1.640625, 2.109375, 0.1005249, -0.83447266, 0.8959961, -0.16870117, 2.2617188, 0.060516357, -2.53125, -1.3837891, 2.7460938, 1.5566406, -0.7285156, -0.3317871, -4.296875, 1.2285156, -1.1513672, -1.4882812, -1.7207031, -2.6464844, 0.39892578, -0.07244873, -2.2265625, 0.70703125, -1.1943359, 0.42163086, 2.4824219, -2.2226562, -0.39697266, 1.2167969, -1.0185547, 2.7675781, 2.40625, -0.40820312, 1.8378906, -1.5273438, 0.59814453, -0.18408203, -3.0292969, 1.9462891, 0.3798828, 0.7011719, -0.6230469, -1.6699219, -1.4179688, -2.3964844, 2.4257812, 2.3144531, 0.3708496, -0.6928711, -0.19934082, -0.85302734, -0.2902832, 4.796875, -0.7416992, 0.5605469, -1.9169922, -2.1074219, -1.4072266, 0.14611816, -0.8378906, 1.1015625, 2.8066406, 1.1894531, 0.4104004, -0.29614258, -2.8867188, -1.6972656, -2.4140625, 2.2011719, 0.5756836, -0.15100098, -0.016906738, 0.54003906, 2.3945312, -1.2167969, -0.5527344, -0.47998047, -0.88134766, 0.63378906, -0.122802734, 1.1757812, 0.23657227, 1.6572266, 0.13024902, 0.7270508, 1.3085938, -3.2675781, -0.013977051, 3.1484375, -0.55615234, -1.9306641, -0.35473633, -0.8540039, -1.2060547, 0.5756836, 0.6582031, 1.2158203, -0.21655273, -0.33666992, -2.0253906, -1.4970703]}, "B077KRTY7C": {"id": "B077KRTY7C", "original": "Brand: Gimiton\nName: Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool\nDescription: \u25cfSpecification:
          Material: ABS plastic + Stainless Steel
          Color: black
          Length: 7inches(18cm)
          Width: 3inches(8cm)
          Weight: 4 OZ

          \u25cfFeatures:
          1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
          2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
          3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
          4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
          5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

          \u25cfNotes:
          1. Please allow slight color difference due to different monitor's brightness and contrast settings.
          2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
          3. Pls note that there's no battery included with the blower, you need to prepare it by yourself.
          \nFeatures: \u2605ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance.\n\u2605Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily.\n\u2605Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients.\n\u2605Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted.\n\u2605Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.\n", "embedding": [-1.8330078, 2.96875, 0.17614746, 0.48583984, -0.9863281, -0.037506104, -0.099487305, -2.0585938, 0.9038086, 2.7890625, -1.4892578, -1.5654297, -0.46606445, -2.2949219, -1.2324219, 2.6054688, 0.50927734, 1.5722656, 0.7504883, 0.86621094, 1.4765625, 0.11553955, 0.4790039, -0.0284729, 0.5527344, -0.92089844, 3.8964844, -2.0976562, 0.99121094, -2.3398438, 1.1435547, -1.3544922, -0.37695312, 0.78564453, -2.1933594, 0.9765625, -2.0566406, 1.7412109, -1.2548828, -1.0615234, 0.38427734, -2.0664062, 1.1181641, 0.41088867, -2.0683594, 1.0791016, -0.07165527, -0.4169922, 0.76660156, -2.1035156, 0.098083496, 0.85253906, 0.36645508, 1.4267578, -1.7402344, 1.5830078, -2.0722656, -2.0234375, 2.90625, -1.1953125, 3.4042969, -0.3774414, -0.93115234, 2.1035156, 0.79003906, -0.82177734, 0.021484375, -1.5439453, -2.1015625, 0.64160156, 0.10015869, 0.37670898, 0.33740234, -0.33154297, -0.62353516, -0.25317383, -4.0273438, 2.2460938, 1.7578125, 1.8408203, -1.6679688, 1.4482422, 2.0664062, -1.6875, 0.6665039, -1.0576172, -1.4443359, -1.3183594, 1.6484375, 0.8388672, -2.0175781, 2.4824219, -3.2148438, -5.1210938, 1.2763672, -2.9160156, 1.4179688, -1.2021484, -0.48486328, 1.4658203, -0.7783203, -2.0214844, -0.5283203, 0.19934082, -0.5991211, 1.3964844, 2.3476562, 1.4755859, -0.5786133, 0.5107422, -2.0761719, 0.31518555, 0.26635742, -0.28808594, -1.5849609, -3.1875, 1.5253906, 0.4033203, 4.3828125, 0.17321777, 3.9609375, -1.0195312, 0.24157715, -2.8828125, 0.8623047, -0.29541016, -0.58935547, -0.0023841858, 3.2109375, 0.2668457, 0.4729004, -0.1706543, 0.21582031, 0.8911133, -1.0058594, -1.9853516, 0.7832031, -2.1113281, -3.8984375, 0.111572266, -0.89453125, 0.3984375, 4.0859375, -2.2226562, -3.9511719, -0.4572754, -0.9785156, 0.022735596, -0.30517578, -1.8222656, 0.39819336, -1.3769531, -1.0029297, -1.3164062, 1.0380859, 0.9785156, -0.43286133, -2.2753906, 1.8837891, -0.048797607, 0.65283203, -2.8242188, 0.28100586, 0.17749023, -0.5385742, -0.8886719, 1.3408203, 1.0966797, 0.26635742, 2.078125, 1.1035156, -2.1875, 1.6005859, -2.1835938, 0.25268555, -1.6513672, -1.5556641, 2.0332031, 0.44677734, -0.22717285, -1.0449219, -1.7480469, 2.5625, 1.4726562, 0.9707031, -0.4086914, -0.50878906, -1.7998047, -0.28198242, -0.56152344, -2.3359375, 0.02078247, 1.1396484, 1.6289062, -1.1777344, -1.0634766, -0.43676758, -2.5585938, 0.8544922, 0.5410156, -1.9853516, -0.15515137, -1.3847656, -0.3154297, -3.2128906, -2.4238281, -1.4013672, 1.6875, 1.5634766, 0.44189453, -0.96240234, -0.15307617, 4.3125, 0.50341797, 1.8466797, -2.140625, 0.5546875, -1.9736328, 0.85791016, 1.4833984, 0.72802734, -0.22644043, 0.5986328, 3.0664062, -0.5151367, 0.41308594, -0.58251953, 2.2675781, -2.4667969, -2.0878906, 2.4648438, 0.5786133, 1.1152344, 0.8720703, -0.45166016, 1.7939453, -0.6713867, -1.28125, 0.90625, -0.984375, -0.34350586, -2.9296875, -0.80908203, -0.67822266, -1.6103516, -1.5429688, -1.1445312, 1.0761719, 0.58691406, -0.56347656, 0.24926758, 0.38842773, 0.3791504, 0.80029297, -2.7890625, 0.4790039, -0.17883301, -0.036743164, -1.8974609, -3.1289062, 1.2832031, 2.0175781, 0.7089844, 0.37548828, 1.0693359, -1.6044922, 0.73291016, -0.8232422, 0.11401367, 0.94873047, 0.9902344, 1.7871094, 0.60058594, 1.6230469, 2.7304688, -1.3671875, -0.011047363, 1.6650391, 1.9042969, -1.8496094, -1.2910156, -1.1669922, 2.3925781, -1.9121094, -0.63623047, -1.4121094, 1.1396484, -1.3935547, -0.2524414, 1.1347656, 3.4335938, -1.2822266, -2.8613281, 2.9628906, -2.7285156, 2.4628906, 0.00016021729, 1.2138672, 1.1386719, 0.38061523, 1.0996094, 0.20874023, -1.4648438, 0.69921875, 0.06085205, 0.8408203, 2.6796875, -2.8125, -1.2509766, 0.2454834, -0.26489258, -0.29516602, -1.9013672, -0.5986328, -2.5332031, -1.5390625, -1.0722656, -2.0390625, 1.2285156, 1.3203125, 0.008590698, 2.1640625, -0.9814453, -2.4902344, -0.89453125, 1.4492188, -1.2626953, 0.66503906, 1.3662109, -2.078125, 0.4663086, -1.8242188, 1.4746094, -2.3535156, 0.9692383, -0.93115234, 1.1396484, -1.7753906, 2.5253906, -0.9345703, 0.17248535, -0.028442383, -1.6230469, 1.6494141, -0.03265381, -2.1855469, -2.4570312, 1.2177734, -0.34204102, -1.0673828, 0.9614258, 3.0605469, 0.72802734, -4.4453125, -0.49316406, 1.3027344, 2.4589844, 0.3088379, -2.7246094, 0.03262329, -0.19482422, 0.8955078, -1.1025391, -1.0273438, 0.68066406, -1.8525391, -0.34033203, -3.2265625, 1.4042969, 0.050628662, 1.3779297, 2.3144531, 0.17370605, -2.4628906, -0.18518066, 0.5048828, 0.056915283, 3.1621094, -1.34375, 1.0527344, -0.2692871, -2.3710938, 1.3164062, 0.2680664, -2.53125, -0.6933594, -0.15673828, -0.37231445, -1.7949219, -2.3945312, 1.0761719, -0.5961914, -1.4296875, 0.7758789, 1.9052734, 2.0859375, 1.4785156, -2.1171875, -0.4177246, -0.36376953, -0.3540039, -0.096191406, -1.8828125, -1.2539062, -2.3730469, -1.2714844, 0.15856934, -1.0537109, 0.6611328, -1.0078125, -0.8754883, 1.7216797, 0.75, 1.2412109, 0.85791016, -3.6425781, 2.6953125, 1.5380859, -2.4472656, -1.9726562, 0.64404297, 0.31323242, -3.4355469, 0.6933594, 2.375, -0.0395813, 1.921875, -0.24121094, -0.55859375, 0.69140625, 1.1582031, 0.12768555, -0.7573242, 0.8076172, 1.96875, -2.2578125, -2.4042969, -0.21240234, 2.0527344, -2.9960938, 0.8125, 2.6992188, 0.5756836, 0.37475586, 1.3027344, 0.27124023, 1.4296875, 1.9697266, -0.7685547, 1.1123047, 0.56396484, -1.1523438, -1.1269531, -1.2578125, -0.10449219, 1.4931641, 0.61865234, -1.2207031, 2.1289062, 3.8105469, 1.3310547, -1.4335938, -0.13842773, -0.62939453, 1.1025391, -0.23205566, 2.28125, 0.37329102, -1.1914062, -0.8330078, 0.105773926, 1.984375, -1.7890625, -1.0087891, 2.7050781, -0.07550049, 0.37353516, -1.8183594, 0.42529297, -2.2480469, -2.671875, 1.3320312, -0.53515625, -1.1904297, -1.8339844, -1.7607422, -1.4199219, 0.4033203, 0.8208008, 0.5292969, -1.5078125, -1.0732422, -0.10076904, -1.109375, -0.63134766, -1.0820312, 1.0126953, 1.0224609, 2.640625, 0.048217773, -1.2529297, 2.3652344, -2.6015625, 1.4033203, 0.57421875, 0.70996094, -0.4741211, -0.23205566, -2.4453125, 2.9355469, 2.9414062, 1.6220703, -0.20739746, -1.3388672, 0.7548828, 0.27490234, -0.4699707, 2.3339844, -0.65625, 0.24243164, 1.4931641, -1.0869141, 0.828125, 1.3193359, 2.4609375, 0.034820557, -0.3635254, 2.453125, -0.21313477, -1.3300781, -1.1894531, -3.1113281, 1.2080078, -0.5175781, 1.171875, 3.0917969, -0.46142578, 1.4189453, 1.8671875, -0.8364258, -1.2119141, -2.6289062, 0.2993164, 0.90283203, -0.85839844, -0.75683594, 0.7949219, -2.046875, -1.7646484, -1.0703125, -0.46484375, -0.027709961, -0.6459961, 2.2460938, -1.1591797, 0.9663086, -0.61279297, 1.7480469, -1.4287109, 0.5698242, 0.15185547, -0.29882812, 0.22973633, -1.8496094, 2.1054688, 0.6616211, -0.11047363, 1.9072266, 1.9003906, 1.6455078, -1.4804688, 0.09448242, 2.2382812, 2.3984375, -0.2619629, -2.6933594, -0.101745605, -0.17163086, -0.22058105, 1.1337891, 0.75878906, -0.34057617, -2.3574219, 1.6875, -0.3713379, 2.5039062, 1.3037109, 2.9453125, -3.1035156, -0.02848816, -0.15270996, -1.0761719, -2.2597656, -0.02949524, -0.60302734, -1.2451172, 1.3642578, -1.9130859, 0.71435547, 1.0048828, -0.33081055, -1.6982422, 1.5966797, 0.3046875, 1.4121094, 3.8476562, -2.5839844, -1.2177734, 0.98876953, -0.82373047, -1.5888672, 1.0419922, 1.0292969, -0.24951172, -0.26171875, 2.3886719, -2.4707031, 0.42919922, 0.55615234, -1.6269531, 0.88671875, -1.5673828, 2.9707031, -0.7182617, 0.6455078, 1.4414062, 0.4074707, 2.3183594, -0.04360962, 0.47314453, 0.8798828, 0.43823242, -0.30029297, -1.5009766, 0.21020508, 0.6958008, 0.6020508, 0.8964844, 1.6298828, 0.6176758, 0.09887695, 0.76123047, 2.4667969, -0.40478516, -1.1660156, 0.38549805, -1.0654297, -1.3125, 0.80078125, 0.8510742, 1.2412109, 0.9477539, 2.2558594, -0.21716309, -1.7744141, 2.6835938, 3.8828125, -2.2773438, 1.0478516, -0.1817627, -1.4433594, 0.49560547, -0.25634766, 1.0097656, 1.5751953, 1.4248047, -1.2724609, 1.5292969, -1.6435547, 0.070007324, -0.69921875, -1.1103516, -0.53515625, -0.07598877, -1.7792969, -0.6381836, -0.97021484, 1.2197266, 0.69140625, 1.8886719, 1.6474609, -0.9042969, -0.06109619, 0.63916016, -1.2226562, 1.6259766, -0.8017578, -1.2675781, -2.1953125, -0.017623901, 0.5878906, 1.1318359, 3.5605469, 1.8242188, 0.26123047, -2.7539062, 1.1943359, -1.7216797, 1.2392578, -3.4238281, -0.47265625, 0.9008789, 0.43066406, 1.1953125, -2.5195312, -0.124816895, 0.40185547, 1.1064453, 1.9599609, 0.41015625, -2.1660156, -1.8886719, -2.5761719, -3.5371094, -1.9082031, -0.041931152, 0.32104492, 0.97558594, 0.4321289, -1.5371094, -3.0507812, -0.09442139, -0.9375, 1.2451172, -1.2226562, 0.34643555, 0.5488281, -2.1113281, 0.3647461, -1.40625, 0.12249756, -0.33666992, 0.27319336, 0.5361328, -1.9667969, -1.8378906, 1.03125, -1.5527344, 0.70703125, 2.2382812, -1.8173828, 0.6074219, 3.0605469, 1.0009766, -1.8466797, 2.8066406, -1.2880859, -1.6220703, -0.14440918, -0.5683594, 3.3554688, -1.0888672, -1.5439453, -1.1396484, -1.59375, 0.82470703, 1.4091797, 1.1318359, 0.3840332, 1.7080078, 0.23010254, -1.5820312, -1.1376953, 1.1787109, 1.3789062, 1.0683594, 0.49829102, 1, -1.5146484, -1.4599609, 1.0087891, -1.6279297, 0.2052002, 0.63378906, -0.73535156, 1.0263672, 2.6152344, 1.6269531, 0.22680664, 0.8964844, -0.33007812, 1.4423828, 0.59716797, 3.8085938, 3.5820312, -2.0761719, -0.95654297, -0.88671875, 0.7626953, 0.52441406, 0.10620117, -0.7084961, 0.24365234, -1.8242188, -1.5810547, -0.16760254, 1.7353516, 3.7597656, 0.8027344, -3.2285156, 1.6689453, 2.4589844, 0.23095703, -0.49951172, -0.53808594, 2.6992188, -0.74853516, 3.2988281, 0.76660156, -0.1262207, 1.2685547, -0.8491211, 1.4746094, 0.020248413, -3.6914062, 0.08831787, -2.1523438, -1.9755859, -1.3994141, -2.6074219, -3.5410156, 1.7333984, -0.77978516, -0.6748047, 0.56933594, 3, -1.6572266, 1.7539062, 2.4863281, -0.75341797, -0.38476562, -0.85253906, -1.1826172, 0.36523438, 1.2792969, -0.7832031, 1.8710938, 1.9033203, -0.19091797, -0.75927734, 1.6972656, 2.5175781, 0.5625, -0.39257812, 1.4150391, 0.6538086, 2.9746094, 2.6757812, 1.4238281, 0.34399414, 2.390625, -0.99560547, 1.6376953, 2.3242188, 1.3046875, -0.63964844, -2.2265625, -0.97998047, -0.50634766, -0.5136719, -0.29882812, 0.75927734, 0.56591797, -1.1181641, 0.62158203, -1.1904297, 1.5761719, -1.0820312, 2.2851562, -0.03781128, -1.1347656, -2.2304688, 0.41015625, 2.1425781, 1.0048828, -0.24084473, 1.5458984, -1.2851562, 1.1816406, -4.3554688, 1.4453125, -0.46533203, -0.7216797, 0.6777344, 2.328125, 1.2441406, 1.6044922, 0.5053711, 2.3242188, -0.6645508, -2.2128906, 2.1035156, 0.65722656, 1.5878906, 0.22949219, 3.5683594, 0.9736328, -0.83251953, 0.021438599, -1.0585938, -1.2861328, -3.0390625, 2.7851562, -0.08685303, 0.2290039, 1.2783203, -1.8261719, -0.96728516, 0.35302734, 2.8183594, -2.9238281, 2.046875, 0.3659668, -0.1381836, -0.7138672, 1.2734375, 1.2919922, 2.2441406, 2.3769531, -0.80615234, 1.5185547, 2.0820312, 0.46435547, -1.2646484, -0.8442383, 0.98291016, -0.68359375, -1.1787109, 1.0273438, -1.3564453, 0.039642334, -1.3007812, 2.21875, 1.2041016, 2.5, 3.6328125, -1.6435547, 2.0625, -1.4765625, -1.1054688, -1.1855469, -0.13183594, -2.0429688, -0.27294922, -0.6484375, -1.4169922, -1.0029297, 0.8154297, -0.73779297, 0.3190918, 0.37524414, 0.21569824, 0.008026123, 0.18725586, 1.9814453, -1.0390625, -1.5800781, -1.6025391, 0.84814453, -1.0654297, -0.57666016, 1.1035156, -0.12817383, -0.53271484, -0.7636719, 0.3293457, -2.3828125, 1.3808594, 0.3022461, 0.9038086, -1.4912109, 0.1138916, -0.2376709, 0.5649414, 0.9560547, 1.1367188, 0.0619812, -0.63134766, -1.2734375, -1.6064453, -0.22265625, -1.9755859, -0.8696289, 0.34423828, 2.75, -0.19226074, 0.83935547, -3.7480469, -1.7666016, 2.078125, 0.19421387, 1.5400391, 0.38549805, -2.546875, 0.03237915, -0.21594238, 3.40625, -0.29541016, 0.3149414, -0.5800781, 1.3955078, 1.8369141, 0.38891602, -1.2460938, 1.2148438, -0.73095703, -0.9008789, 2.9550781, 0.82470703, 0.13330078, 3.3203125, 0.4194336, 1.5576172, -2.8710938, -0.328125, -3.0605469, 0.6743164, 2.2050781, -0.9116211, 0.4572754, -0.04724121, 0.40014648, -2.1914062, -2.5664062]}, "B07MJP4ZQV": {"id": "B07MJP4ZQV", "original": "Brand: homenote\nName: homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping\nDescription: HOMENOTE professional griddle tools set
          provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It's a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
          KEY FEATURES:
          - 2 Oversized griddle SPATULAS\uff0cgreat for flipping beef cubes, fried egg, rice, noodle and vegetables.
          - 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
          - 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
          - 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
          - 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
          - 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
          - Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
          - Stronger and thicker stainless steel making them Not easily damaged or broken.
          - Dishwasher safe. Easy clean with warm soapy water.
          - Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
          IDEAL GIFT CHOICE
          - Give him/her a surprise !

          Don\u2019t know how to choose a gift for Father's Day? A complete set of griddle tools will be the best gift for your father, It\u2019s time to upgrade your father\u2019s old barbecue tools !
          Its also the perfect gift choice for Christmas, friend\u2019s birthday, griddle, grill and camping lovers !

          Accessories Dimensions:
          2 Spatulas: 14.45 x 2.81 inches
          2 Flipper/Turners: 11.64 x 2.73 inches
          1 Chopper Scrapper: 6.64 x 4.69 inches
          2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
          1 Storage bag: 15.6 x 6.25 inches
          1 RECIPE: 7.03 x 5.47 inches
          \nFeatures: Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning)\nMultipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.\nMust Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag.\nPerfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers.\nEnjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals\n", "embedding": [-1.9257812, 1.1396484, 1.6181641, -0.25024414, -0.34545898, 1.3525391, 0.2915039, -0.6699219, 0.7636719, -0.3137207, -1.6943359, 0.5991211, 1.1806641, -2.4023438, -0.9716797, 0.10058594, 0.7163086, 0.13049316, 0.55078125, 0.29711914, 3.5273438, 1.4755859, -0.18249512, -0.8955078, 1.3505859, 0.66796875, 6.2617188, -2.8632812, 0.94921875, 2.5234375, 2.3867188, 0.60546875, 0.051330566, 0.92822266, -2.4511719, -0.6123047, 0.40234375, 2.2949219, -1.6171875, -0.77197266, 0.13928223, 0.29003906, 1.0712891, 1.9960938, -2.6464844, -1.6035156, -0.68408203, 2.1347656, -2.0859375, -2.9609375, 0.15405273, 1.4169922, -0.60595703, 0.074157715, -2.1132812, 0.875, -1.9199219, -2.2988281, 1.6201172, -0.62109375, 0.87939453, -0.45336914, -1.6669922, 0.5576172, 1.1767578, -1.3710938, 1.2314453, -1.5546875, -1.1826172, -1.078125, -0.6459961, -1.3300781, -0.7285156, -0.38256836, -1.4541016, -1.3242188, 0.34545898, -0.009460449, 1.7822266, -0.10656738, -0.24450684, 3.3085938, 0.5786133, -2.1035156, 1.1777344, -1.8681641, -0.5703125, -0.056121826, 1.9365234, -0.47070312, -1.3652344, 1.8828125, -1.5556641, -5.1132812, 1.7783203, -1.3779297, -0.21118164, -1.8515625, 1.3134766, 2.6503906, -1.5869141, 0.49169922, 1.1357422, 0.7055664, -3.1972656, -0.5859375, 3.0214844, 0.43554688, -0.5722656, 0.3388672, -2.5410156, -0.39868164, 0.18737793, 0.77197266, -0.10296631, 1.8408203, -0.7998047, -1.1201172, 1.0214844, 1.1484375, 3.0546875, 0.9350586, -1.4599609, 0.30737305, 0.94384766, 0.6953125, 0.31030273, 2.3242188, 2.7519531, 0.1427002, 0.19213867, -0.35302734, 1.2548828, -2.0644531, -2.5957031, -2.65625, -0.12023926, -1.4003906, -1.3984375, 1.5273438, 1.3710938, 0.6899414, 3.3769531, 0.28393555, -3.3828125, -0.11022949, -0.33984375, 2.25, 1.0576172, -0.56396484, 0.5214844, -1.9492188, 0.0053710938, -0.9326172, 3.4628906, -1.6591797, 0.72802734, 1.5683594, 2.4335938, 1.1396484, 1.1328125, -1.7480469, -1.4082031, 1.9775391, 1.8164062, -2.9941406, -0.36279297, 2.8710938, -0.6879883, 2.8398438, 0.9711914, -2.0214844, 0.50683594, -0.44995117, -0.22302246, -2.0839844, 0.39697266, 1.5810547, -0.9975586, -1.0898438, 0.36621094, -3.4257812, 1.1464844, 2.4375, 0.6171875, -2.1679688, 0.5341797, -0.61035156, 0.5605469, 0.42993164, 0.7055664, 0.45166016, -0.12658691, 0.39013672, -1.3847656, -3.4042969, 0.88427734, -2.3710938, -0.33740234, 2.0117188, -1.3642578, -1.8242188, 0.12402344, -0.83496094, -0.6928711, -0.57958984, -0.18359375, 0.89208984, 1.5869141, 2.0390625, 1.8154297, -0.9926758, 0.9082031, 2.2949219, 0.36206055, -0.5722656, 2.1171875, -0.7446289, 1.8681641, 0.78271484, -1.2978516, -0.27954102, -2.1152344, 1.8710938, 1.4912109, 0.22290039, -0.9003906, 1.5507812, -0.7211914, -0.26635742, 1.6621094, 0.59716797, 0.2454834, 1.9023438, -0.090026855, 0.7832031, 1.0527344, -3.0742188, -0.29833984, 0.24829102, 1.7246094, -1.5605469, 0.3244629, -1.4707031, -0.92333984, 2.7109375, 0.2631836, 1.1728516, 0.19519043, -1.3037109, -2.2265625, 0.7133789, 1.4033203, -1.3408203, -0.7270508, -0.061340332, -1.2773438, 0.30517578, -1.8173828, 0.097229004, 0.1772461, 0.9394531, 0.96875, 1.8154297, 1.4941406, -1.1269531, 1.5410156, -0.17590332, -0.3798828, 0.28808594, 0.6479492, 0.41333008, 1.8320312, -1.2128906, 1.8417969, -0.06011963, -0.97265625, -0.118652344, 0.92089844, 0.18981934, 0.15112305, 0.40429688, 1.2666016, -0.061706543, -0.34472656, -1.609375, -1.8125, -0.7910156, 1.2363281, 3.3144531, 5.1015625, -0.28027344, -0.52197266, 5.1171875, -1.3369141, 2.1210938, -1.1425781, -1.4541016, -0.9921875, -1.6464844, -0.9433594, 1.7578125, 0.5073242, 0.09692383, -1.8701172, 0.8955078, -0.54345703, -0.27954102, 0.79785156, 1.1435547, -0.8876953, -0.29174805, 0.01322937, 1.5498047, -0.04953003, -0.50683594, -1.8759766, -0.60546875, 0.33984375, -1.1191406, 0.7685547, 0.60791016, 0.9667969, -2.5761719, 0.8354492, 0.41723633, -0.9873047, 2.4609375, 1.8359375, -0.50390625, 2.7265625, 0.07751465, 0.42236328, -0.9472656, -3.7246094, 0.062561035, -0.7739258, -1.8681641, 2.390625, -0.67626953, -0.10986328, 0.63134766, -2.2207031, 1.2509766, -1.5664062, -3.0234375, -2.7226562, 0.85546875, -0.94970703, 0.103515625, -1.4785156, 0.7207031, -0.21484375, -5.765625, -0.56347656, -1.9960938, 1.7314453, -0.31591797, -2.4921875, 0.890625, 0.13439941, 0.54589844, 1.0214844, 0.09790039, -1.5478516, 0.6176758, 0.14196777, -1.4628906, 1.1542969, 0.3076172, 0.033813477, -0.48364258, -0.22729492, -2.1289062, -0.5839844, -0.25585938, 0.5288086, 4.2109375, -1.6005859, 0.69677734, -0.10272217, 0.40625, 0.22729492, 0.42871094, -0.9848633, -1.9941406, -0.27734375, -1.4511719, 0.6308594, -3.3027344, -0.22338867, -1.6308594, -0.75683594, -1.6396484, 0.13635254, -2.5742188, 0.4560547, -1.5859375, -1.5986328, -2.1328125, -0.5102539, 1.4248047, -1.7705078, 0.32958984, -0.16381836, 0.6435547, -0.69433594, -1.5224609, 3.2128906, -1.5078125, -1.8105469, 0.82958984, 0.99609375, -0.64501953, 0.23730469, -3.0019531, 1.8759766, 0.5541992, -2.1738281, -1.7255859, 1.3525391, -0.74560547, -2.09375, -0.5473633, 2.5585938, -0.48217773, 2.6425781, 0.7348633, 0.2849121, 2.3691406, 1.2099609, 0.55029297, 0.17126465, 0.49072266, 0.55615234, 0.20690918, -2.8925781, 1.8212891, -0.56884766, -3.0761719, 1.8164062, -0.26489258, 1.3417969, 2.2929688, 0.6723633, -0.29467773, 0.6850586, -0.34960938, 0.53515625, 1.8515625, -2.3964844, -2.2617188, 1.1132812, -0.53808594, 0.98779297, 0.007972717, 0.5185547, 0.65283203, 2.2871094, -0.74902344, 0.49267578, -2.8046875, 1.0341797, -0.9135742, 0.77978516, 1.1982422, 1.5869141, 0.05908203, -1.21875, 1.1474609, -0.76171875, 2.6523438, -2.0996094, -0.90625, 1.4560547, -1.4394531, -0.015167236, 1.3242188, -0.20214844, 0.20153809, -0.39794922, 0.13293457, -1.5400391, -2.2363281, -0.014472961, -0.3173828, -2.1015625, -1.1367188, 4.0898438, 0.2565918, -1.5244141, 0.68359375, 1.9541016, -2.8398438, 0.09136963, -2.3242188, 0.81396484, -0.86865234, 1.2851562, -1.1777344, -2.2773438, 1.3261719, -2.2324219, -0.8911133, -0.39233398, -2.3125, -0.120910645, -0.87402344, -1.6484375, 0.6586914, 1.8798828, -0.17651367, 1.0761719, -1.7714844, -0.6933594, -1.9082031, 0.090026855, 0.53808594, -1.4375, -0.28344727, 0.4814453, 1, 0.2758789, -0.2783203, 3.2207031, 0.15515137, -3.375, -0.37304688, -2.8359375, -1.0087891, -1.3837891, -2.6328125, 1.0800781, 0.73291016, 1.0800781, 0.52246094, 1.1210938, 0.23669434, 3.9335938, 1.3046875, -0.85058594, 0.2980957, -0.23937988, 0.6381836, -0.76708984, -0.53466797, 1.3125, -0.0113220215, -1.1572266, -1.4208984, 1.1123047, -0.9033203, 2.1835938, 0.16394043, -1.7441406, -0.63427734, -0.6645508, 0.7050781, -0.28515625, 0.90478516, -2.6269531, -0.72998047, 0.5439453, 0.68115234, 2.6328125, -0.0670166, 1.1708984, -2.5332031, -0.7290039, -0.1529541, -1.2529297, -0.63964844, 0.34155273, 2.4511719, -0.25219727, 0.46899414, -2.0097656, -0.35888672, 1.0576172, 0.89941406, -0.28833008, -0.025314331, -1.8886719, -1.1152344, 0.016418457, -0.0680542, 1.8818359, 0.92626953, -0.3083496, 0.032714844, 2.4570312, -1.7744141, -2.1699219, -0.27441406, -2.2089844, 0.31835938, -1.1103516, -2.1171875, 2.4296875, -2.1972656, 1.5488281, -0.012130737, -0.008285522, -0.78027344, 0.7788086, 4.5742188, -2.0585938, -1.6503906, 2.2265625, -2.1191406, -1.3320312, 0.08947754, 0.26757812, -1.0136719, -0.018188477, -1.28125, -0.3947754, 2.0859375, -1.5585938, 1.9619141, 0.2692871, -2.9746094, 1.8535156, -0.20422363, -0.6098633, -0.34545898, -0.0025615692, 1.6425781, -0.8754883, -0.19396973, 1.8515625, 0.24401855, 0.59472656, -0.013885498, 0.5444336, 0.4362793, -1.0302734, 1.2832031, 0.9863281, -1.734375, -1.3271484, 0.24523926, 0.9042969, 0.11175537, 1.4130859, 2.1972656, 1.8125, -1.1005859, 1.1367188, 3.1328125, 1.2939453, -1.7314453, 2.8046875, -0.8808594, -2.1660156, 1.8134766, 1.1279297, -1.8515625, -0.32543945, -0.5761719, -0.83203125, 0.52685547, 0.059051514, -2.3554688, 0.56591797, 0.54296875, -1.6494141, 0.41625977, -1.296875, 0.08947754, -0.9975586, -1.3486328, -0.67578125, -2.0273438, -1.7753906, 0.008644104, -1.3300781, -0.22338867, 1.6748047, 1.7236328, 2.9589844, -0.5371094, -0.23254395, 1.2949219, -1.8671875, 0.33569336, 0.18737793, -1.7646484, -2.5898438, 1.0976562, 2.5859375, 2.5214844, 0.38745117, 0.3395996, 1.1689453, -1.4101562, 1.0097656, -1.5410156, 2.40625, -2.0859375, 0.41748047, 0.35302734, -1.7685547, -2.6171875, -0.97021484, 1.6962891, 0.18615723, 2.4042969, 0.06536865, -0.8046875, -0.084228516, 1.53125, -1.2753906, -2.8339844, 0.53515625, -0.56884766, 0.25, 1.1894531, 0.3190918, 0.15185547, -0.74609375, -0.8598633, -1.2744141, 0.67089844, 0.90185547, 0.56347656, -0.007598877, -1.5917969, -0.8857422, 0.006034851, -0.4543457, 1.6347656, 3.2050781, -0.95703125, -1.8164062, -1.5742188, 0.8925781, -0.4501953, -1.7392578, -0.50341797, -0.52197266, -0.22521973, 1.5253906, 1.3017578, -1.984375, 2.0742188, -1.3251953, -0.45288086, -1.6445312, -0.5605469, 1.5585938, -1.8203125, -2.0800781, -0.23901367, -1.6552734, 2.0742188, 1.6806641, -1.3476562, 2.46875, 1.2382812, -1.5126953, -1.0908203, 0.1661377, 0.1986084, 1.0195312, 0.91796875, 1.7802734, -0.026290894, -2.0058594, -1.6767578, 1.2021484, -1.2597656, 0.36669922, -0.19506836, 0.67626953, 1.3203125, -0.42407227, 0.7060547, -0.33129883, 1.1210938, -1.4570312, 0.9511719, 0.48999023, 2.3535156, 1.3125, -1.1464844, -0.008415222, -1.3701172, 0.9350586, 1.4003906, -0.08087158, -1.1953125, -2.0585938, -1.1982422, -1.8789062, -0.16381836, 0.93896484, 0.33935547, 0.14477539, -0.703125, -0.4741211, 0.8432617, -2.1816406, 1.5488281, 0.2109375, 2.5996094, -2.5546875, 1.8427734, -1.3896484, -1.234375, 1.9404297, -1.6923828, 1.265625, 0.59765625, -0.97998047, -0.36987305, 0.87939453, 0.7216797, -0.5126953, -1.9423828, -1.3564453, 0.1529541, 0.68408203, -0.030426025, 0.37109375, 2.65625, 1.1904297, 3.8222656, 1.5058594, -0.08618164, -2.2363281, -0.98095703, -1.0146484, -0.7260742, -0.47851562, 1.4912109, 1.9960938, 2.2382812, 0.1652832, -2.3378906, -0.22058105, 0.9267578, 1.1748047, 1.3251953, 2.8300781, 1.4248047, 3.6816406, 2.2871094, 1.0224609, 2.3457031, 0.45410156, 0.3244629, -1.0761719, 1.9570312, 0.25097656, -0.5703125, -0.61572266, 1.1025391, -0.69433594, -0.11022949, -0.27197266, 0.7133789, -0.17163086, -1.8837891, 2.9707031, 0.53125, 0.67626953, -1.375, 1.3544922, -1.390625, 0.26904297, -1.2060547, -1.9609375, 0.53564453, 1.2099609, -0.06262207, -1.5947266, -0.32470703, 2.7734375, -4.203125, 0.06982422, 0.84228516, 0.11248779, -1.1679688, 3.5488281, 2.4179688, 1.9765625, 2.5996094, -3.1875, -0.12030029, 0.58935547, -0.17456055, 0.94677734, -0.94628906, 1.3154297, 0.5390625, -0.25048828, -1.0185547, -0.48339844, -1.0527344, -0.8305664, 1.0019531, 1.2041016, 2.9941406, 1.6933594, 0.47314453, -4.3359375, 1.9726562, 1.3427734, 0.8847656, -0.8720703, 0.7104492, 0.07897949, -0.9604492, -2.8769531, 0.4477539, 0.5097656, 0.70751953, -0.33813477, -1.9482422, 1.5273438, -0.1418457, 0.6621094, 0.8808594, 2.25, -0.91845703, 0.33789062, 0.32763672, 1.6904297, 0.15844727, 0.7348633, 0.3701172, 0.4987793, 1.9121094, 0.38208008, 2.1835938, -1.296875, -0.80615234, 0.44091797, 0.08892822, 0.8154297, 1.3183594, -2.8183594, 0.49804688, 0.5253906, -2.0976562, -0.6386719, 0.546875, 1.0263672, 1.5566406, 0.9614258, -0.87109375, -1.4677734, 0.4428711, 0.8129883, -0.45507812, 0.9008789, -2.1347656, 0.24108887, -0.4921875, -1.1103516, -0.09820557, 0.1508789, -0.28857422, -2.1347656, 2.3574219, -1.2998047, 0.10852051, 0.6972656, 0.15600586, -0.7319336, -2.59375, -1.4179688, 0.85302734, 0.71972656, 2.9160156, -0.33251953, -1.1201172, -1.6943359, -0.49414062, -1.0888672, -1.140625, -2.2675781, 0.6015625, 3.8183594, 2.296875, 0.48461914, -2.75, -0.9584961, 0.7626953, -3.1699219, 1.0957031, 1.7148438, -1.6806641, -1.0761719, 1.2294922, 1.15625, 1.2109375, -1.0957031, -0.08807373, -0.80615234, 0.8408203, -0.99072266, 1.7050781, -0.01550293, -1.6015625, 1.1054688, 1.765625, 0.625, 1.96875, 2.671875, 3.2304688, 0.68603516, -2.90625, 0.42407227, 1.1796875, 2.7109375, 1.0253906, 0.1796875, 0.5239258, -0.5205078, 0.5209961, -0.41503906, 0.15405273]}, "B086Z4BMB8": {"id": "B086Z4BMB8", "original": "Brand: DuroMax\nName: DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax\u2019s exclusive MX2 switch that harnesses the generator's full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet\n", "embedding": [-0.64746094, -0.45263672, 1.6230469, 0.18664551, -1.2861328, 0.22351074, 2.34375, -0.1159668, -2.0488281, 1.3769531, -0.2578125, 0.5991211, 0.56640625, -2.03125, -0.07940674, 0.47680664, 0.6425781, 1.6894531, 0.60546875, -0.7573242, 1.2451172, 0.11077881, 1.0205078, 1.640625, 0.12866211, -0.41088867, 3.109375, -2.5683594, -0.2902832, 0.30859375, 1.0908203, 0.03942871, -0.5917969, 0.34692383, -1.9902344, 1.6474609, 0.22888184, 1.2714844, -3.8085938, 0.12915039, -0.98876953, 0.6816406, 1.8417969, -0.50683594, -1.9453125, -3.6875, 0.75927734, 0.054107666, 0.4326172, 0.29833984, 1.9023438, 2.7460938, 0.24890137, -0.6948242, -0.067993164, 2.9257812, 0.9946289, -2.09375, 2.9140625, 3.0878906, -0.62646484, 0.32714844, -1.8164062, 0.48486328, -1.5039062, -0.42797852, 0.4638672, 0.32788086, -1.3046875, -2.609375, 3.1035156, 1.3798828, -1.0009766, -0.50439453, -1.1044922, 1.0361328, -3.4492188, 1.4482422, 2.3945312, 0.7651367, -0.9086914, 1.0556641, 2.0078125, -1.4140625, 0.1574707, 0.32202148, -0.049560547, 0.20117188, 0.123046875, 2.6445312, -3.7148438, 2.984375, -2.578125, -3.8457031, 3.1777344, 0.38427734, -1.0849609, 0.08886719, 1.5771484, 2.3398438, 0.7573242, 0.7988281, -0.52783203, 0.5, -0.032836914, 0.18432617, 1.0722656, 0.10418701, -1.8964844, 0.234375, -2.6230469, 2.3261719, 0.32202148, -0.01512146, -0.9580078, -1.4697266, 2.0488281, -1.3857422, 4.6367188, 0.6123047, 2.53125, -1.7539062, 1.9003906, -0.33935547, 2.7851562, 1.2265625, 1.7871094, 3.0683594, 3.1328125, 1.3623047, 0.75927734, -0.33447266, 1.78125, -0.62353516, 0.9316406, -1.6181641, 0.62158203, -2.5605469, -2.9511719, -1.4248047, -2.4609375, -0.26220703, 1.1845703, -0.8701172, -3.7871094, -1.3623047, -1.1259766, -1.4228516, -0.029785156, -1.7851562, 2.1601562, -4.3046875, 0.4909668, -2.4414062, 1.2158203, -0.47973633, -0.097473145, -0.6689453, 1.4238281, 0.010948181, 0.39111328, 0.5913086, -1.2958984, -0.3005371, 0.49731445, -3.3886719, 1.2792969, 0.014846802, -0.20922852, -1.4121094, -1.9003906, -1.8222656, 0.6269531, -2.265625, 0.37890625, -3.1171875, -1.0039062, 0.51953125, 1.640625, -0.21398926, -0.9741211, 2.5761719, -1.4013672, 0.24328613, 0.75097656, 0.41552734, 2.59375, -1.078125, 0.05609131, -2, -1.3671875, 0.578125, -2.1113281, 0.9980469, 1.9873047, -2.4609375, -2.109375, -1.25, 3.7988281, -0.40014648, 0.14819336, -2.109375, -0.036621094, -2.4023438, -1.5146484, -3.2539062, -0.084106445, -1.1904297, 0.66552734, -1.5546875, 0.7939453, 0.25634766, 3.1601562, -1.9560547, -2.1113281, -2.34375, -1.7460938, 0.39770508, -1.5185547, 0.23010254, -0.33813477, -0.48266602, 2.1777344, -1.3945312, -1.0771484, 2.3828125, 0.018707275, 0.59033203, -2.9765625, -4.5078125, 1.2695312, 0.97753906, -0.40112305, -1.2597656, -0.42358398, 1.2451172, -0.83984375, 1.4326172, 0.34375, -0.45654297, 1.5048828, 0.9711914, -0.047912598, 1.8486328, 1.6611328, -0.79345703, -1.1699219, 2.25, 0.2746582, 0.13452148, -0.19067383, -0.40649414, 0.40014648, -1.2353516, 0.234375, 0.27319336, -0.03866577, -1.1357422, 0.08282471, -2.5664062, 0.99560547, -0.0440979, -1.1367188, -0.5419922, -1.4160156, -0.34399414, 1.9414062, -0.72558594, -1.8203125, 0.56640625, 2.5839844, 2.2949219, 0.54296875, 2.2226562, 0.7089844, 1.5380859, 0.7011719, 2.0175781, 2.0019531, 2.671875, 0.08508301, -0.5004883, -0.68310547, -2.4023438, -0.39648438, -1.3603516, 0.84716797, 0.8876953, -0.9819336, -0.091918945, 0.9194336, -2.1523438, -5.71875, 1.5585938, -0.057922363, 3.9589844, 3.5507812, -0.07092285, 1.8066406, -0.40576172, 0.7988281, -0.021362305, -1.9863281, 2.5175781, 0.46264648, 0.67578125, -0.21936035, -1.7128906, 0.41088867, 1.4648438, 0.5288086, 0.0070152283, 1.1259766, 0.16601562, -1.0146484, -0.40405273, 2.6210938, -1.9248047, 2.15625, 1.2861328, -0.6743164, 0.5625, -0.3798828, -1.2773438, 0.34033203, -1.9658203, 1.7207031, -1.03125, 0.06112671, -1.4472656, -1.25, -0.78808594, 0.65283203, -0.2692871, -0.21923828, 0.1907959, -1.7402344, -2.0996094, 1.0205078, -0.9863281, 1.0673828, -1.0048828, 0.13586426, -0.91259766, 0.01586914, -2.5703125, -1.1181641, -0.7207031, -1.4990234, -1.9414062, 1.9736328, 1.9970703, 0.87646484, -1.0595703, -2.2363281, -0.10522461, -0.5415039, 3.5898438, -1.8427734, 1.7158203, -0.95458984, 0.48242188, 0.6435547, 0.4255371, 1.125, -2.5644531, 0.56347656, -3.4101562, 2.3691406, 0.24084473, 0.8388672, -0.7832031, 0.101623535, -0.3293457, -2.3261719, 1.9921875, -0.41601562, 0.39746094, -1.3867188, 1.4042969, 1.3544922, -3.3222656, 1.4355469, 0.5600586, -1.7773438, -0.08691406, 0.9370117, -1.5986328, -0.40039062, -2.1484375, 1.9560547, 2.1777344, -1.8789062, 1.734375, 0.015449524, -0.24438477, 0.8203125, -2.0488281, 1.3847656, 3.1308594, 0.55078125, -1.1904297, -1.0175781, -0.18811035, -0.62060547, 0.10369873, -1.4316406, -1.5458984, 0.37548828, 2.8203125, 0.6689453, 0.72314453, -0.89208984, -1.0761719, 1.0244141, -3.0058594, 1.4541016, 1.2548828, -0.70458984, 1.5566406, -1.109375, 0.16894531, -2.0878906, -1.2724609, 4.5390625, -1.7011719, 3.2265625, 0.3371582, 0.15234375, -0.49169922, 2.3710938, -0.18273926, -1.4609375, -2.7597656, 2.96875, -1.7421875, 0.50927734, -0.26586914, 0.8808594, -1.4335938, -0.6645508, 2.9589844, 1.5908203, 4.7304688, 1.4228516, -1.7851562, 2.6113281, 0.8647461, 0.7402344, 1.1787109, -0.7236328, 0.19995117, -1.6943359, -0.9863281, -0.08441162, 1.0810547, 2.0273438, 0.21813965, 1.7626953, 1.4238281, -0.32104492, 1.4902344, -0.30737305, 0.58447266, -2.0859375, 3.4941406, 3.8417969, -1.2382812, 3.3203125, -2.0332031, 0.15356445, 1.0449219, -0.37695312, 0.8388672, 3.0585938, 0.8725586, 1.4746094, 0.6040039, -0.3540039, 0.14978027, -1.5673828, 0.32226562, -1.0039062, -0.6743164, 0.765625, -1.1025391, -0.68066406, -2.4824219, -0.04550171, -1.8457031, 1.2109375, -0.40600586, -0.025512695, -0.50683594, -0.52783203, -0.62597656, -0.45288086, -1.3085938, 1.25, 2.2285156, -0.29492188, 1.0732422, -1.6894531, 1.2714844, 0.5131836, 0.45922852, -1.2587891, -0.88378906, -1.8652344, -0.6152344, -0.90234375, -0.24450684, 1.4433594, -0.96777344, 1.4287109, 1.0986328, -0.83740234, -0.4033203, -0.0758667, 1.2626953, 1.3046875, -2.2460938, 1.3134766, 0.73291016, 1.5634766, 0.0007843971, 2.1894531, 2.9824219, -1.4208984, -0.92041016, -1.0917969, -0.65478516, 1.0810547, -1.4384766, 0.6821289, 4.0507812, 0.09631348, 1.1894531, -0.12219238, 0.8100586, -3.0878906, -1.8056641, -0.4362793, 1.8623047, -2.734375, -2.4453125, 0.4716797, -0.90478516, -1.015625, 0.71533203, -1.9277344, -0.05569458, 0.31323242, 0.60302734, 0.6254883, 2.6171875, -1.015625, -0.51171875, -0.53564453, 0.80078125, 2.9101562, -0.73828125, -0.2277832, -2.6601562, 0.6557617, -0.2919922, -1.0947266, 1.7402344, 2.3144531, 0.024047852, -0.41552734, 1.1699219, 0.6689453, 0.23632812, 0.51464844, -2.8730469, -0.93603516, 0.15246582, 1.4658203, -3.28125, -1.3662109, 1.5019531, -2.1738281, -0.028244019, -0.66552734, 0.89941406, 0.9741211, 3.5410156, -0.9194336, 1.90625, 1.8564453, -3.7246094, -0.2277832, -0.3857422, 0.8803711, -0.90966797, -2.0625, -1.5341797, -0.77197266, 0.29077148, -0.35864258, -0.57714844, 1.3408203, 0.7426758, 0.6411133, -0.04559326, 1, -0.20080566, 0.21289062, 2.7734375, -0.5859375, 0.23925781, 0.3486328, 0.34399414, -0.77734375, 2.0644531, -1.359375, -0.71484375, 1.0585938, -1.2158203, -1.6464844, -0.5839844, -1.1386719, -1.2177734, -0.75634766, 0.36938477, 0.30737305, 2.0253906, -0.44384766, 1.2617188, 1.3847656, 0.090148926, -2.6894531, 0.89404297, 1.4335938, -0.3071289, 1.1357422, -0.83740234, 2.8574219, 0.1809082, -0.7006836, 1.9970703, 2.046875, -1.4082031, -0.5957031, 1.9101562, 0.114868164, -0.82373047, 1.1132812, 1.3134766, 0.48388672, 0.55078125, -1.3935547, 1.4384766, -0.6064453, 3.1035156, 0.025360107, -0.91064453, -1.0644531, 0.5019531, -1.2353516, 0.039794922, 0.24169922, -0.39892578, -0.7011719, 1.1748047, -0.8129883, 0.8696289, 0.74365234, -0.73779297, -1.7285156, -2.1386719, -0.80908203, -0.18737793, -0.24377441, 0.18029785, -0.86572266, 0.19482422, -0.8300781, 1.421875, 0.6196289, -1.5546875, 0.25830078, 0.8173828, 0.8144531, 0.030792236, -0.70996094, 0.9633789, -4.890625, -0.13671875, 1.1054688, -0.5859375, 1.0732422, 2.3105469, -1.90625, -1.2324219, -2.6757812, -0.6870117, 1.0888672, -0.7631836, -1.6298828, 0.5439453, -1.0761719, 1.3398438, 0.9277344, -1.8701172, -1.8515625, 1.2236328, 0.17590332, 0.18835449, -0.28588867, 0.1763916, -2.328125, -4.0664062, -2.7597656, 1.3115234, -0.27929688, -0.34033203, 0.68652344, -2.7460938, 1.4960938, 1.3320312, 1.53125, -1.6884766, 1.1835938, -1.3964844, 1.6357422, -0.8486328, 0.20727539, -1.2568359, 0.34179688, 1.7998047, -1.5292969, 1.7177734, -3.3945312, -3.0507812, -1.4804688, 2.1953125, -1.421875, 1.2568359, -0.36254883, 1.2519531, 2.8457031, -0.011756897, -0.17602539, 0.8847656, -2.1660156, 0.43115234, -1.2832031, -2.4804688, -0.2590332, 1.96875, 0.08581543, 1.6582031, 2.1582031, 2.5527344, 0.52246094, 0.11981201, -3.2949219, 1.3457031, 0.32128906, -0.4423828, -0.87646484, 0.9169922, 1.9736328, -1.7910156, -0.48364258, -2.2675781, -0.042938232, -1.1884766, -0.3540039, -1.4433594, -0.26245117, 0.6118164, -0.0826416, -0.89404297, 1.96875, -0.105041504, -0.30566406, -0.8251953, -0.17175293, 0.116882324, -1.4082031, 1.7763672, 2.4316406, -1.2490234, -3.8417969, 0.5239258, 0.9453125, -0.09857178, 2.1347656, -0.107910156, -0.15002441, -2.6152344, -1.1943359, -1.5751953, 1.4121094, -0.27612305, 0.65722656, -0.77246094, 0.1282959, 0.9189453, 0.69140625, -0.47460938, 2.1914062, -1.8515625, -1.0175781, 0.09631348, 2.0644531, -2.5253906, 1.4814453, -0.85839844, 0.1237793, 0.37573242, -3.4765625, 0.93603516, -1.2744141, -1.4765625, -0.28320312, 0.38916016, -0.23925781, -0.008850098, -0.60791016, -0.30639648, -0.045715332, 1.6552734, -1.9091797, -2.1875, 2.2597656, -1.0410156, -2.2578125, 1.1064453, -2.2929688, -0.6459961, 2.46875, -2.6757812, 3.2675781, -0.22363281, 0.8925781, -1.0683594, 0.39404297, -1.2978516, 1.1025391, 1.0527344, 1.1767578, 0.84716797, 1.4707031, -0.00028800964, 0.6948242, -0.18554688, -0.34692383, -0.5239258, 1.1845703, 1.2548828, -0.24523926, 1.2695312, -1.9589844, -0.32714844, -0.49169922, -1.0537109, -1.8886719, -0.13464355, 3.1855469, -3.8183594, 1.2509766, 0.5522461, 1.0419922, -3.5761719, -0.08544922, -0.4411621, 1.2060547, 0.040252686, 1.3310547, 2.1503906, 0.7294922, -0.17834473, 1.4980469, -2.4394531, 0.088256836, -1.0703125, 0.19604492, 0.73046875, 0.00040483475, 1.2822266, -0.87597656, -2.4746094, 1.625, 1.9560547, 1.4160156, 0.035491943, -0.25024414, 1.2480469, -2.9960938, 1.8339844, 0.14294434, 4.140625, 2.5527344, 0.28198242, 2.3378906, 0.48706055, 0.02130127, -1.8320312, 0.8911133, 0.16479492, -0.33544922, 0.30395508, -4.0390625, 0.25195312, -2.3632812, 1.9589844, -2.3574219, 1.3964844, -0.009223938, -0.94384766, 1.1640625, 1.3769531, 0.09118652, 2.9570312, 1.0800781, -1.1142578, 1.8613281, 2.2714844, 0.16760254, -0.24707031, 0.86621094, -0.090026855, 0.8623047, -0.25, 0.9536133, 0.63427734, -0.86865234, -0.4970703, -0.29467773, 1.8417969, -0.43408203, 1.0498047, -0.15075684, 2.7792969, 0.19995117, -1.7910156, -2.2109375, -0.67871094, 0.55615234, 0.049468994, -1.4316406, 0.7714844, 1.6796875, 1.3457031, 3.7792969, -1.5244141, -1.8574219, 0.62646484, 0.09259033, 1.4677734, -0.16015625, -0.5957031, -1.0263672, -1.3886719, 0.045196533, -2.1328125, 1.3183594, 0.7836914, 0.12371826, -1.3310547, -2.4140625, -2.1914062, -0.24609375, -0.22167969, 0.71191406, 0.4868164, -1.7421875, 3.203125, 1.4628906, -1.8203125, 2.5527344, 3.3398438, -0.34838867, 2.0390625, -0.8017578, -1.2958984, -0.48339844, -2.8242188, -0.049987793, 1.4072266, 0.9189453, -0.07647705, 1.3144531, -3.1757812, -1.4638672, -2.1152344, -1.0576172, 0.72558594, -1.5117188, 0.55126953, 1.0449219, 0.13928223, 1.0927734, -0.65234375, -0.25585938, -0.08581543, -0.07086182, 0.9633789, 1.0009766, -0.9472656, 1.8574219, 1.8730469, 0.5239258, 0.45776367, 2.7734375, 0.40722656, 0.5727539, -0.4621582, -2.0878906, -1.390625, -0.39648438, 0.30444336, -1.3847656, 1.2675781, 1.5087891, 0.18603516, 0.086364746, 0.2800293, -2.0371094, -2.578125]}, "B07RNX3G8J": {"id": "B07RNX3G8J", "original": "Brand: Renook\nName: RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch\nDescription:

          Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

          Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

          ATTENTION:


          1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

          2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

          3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


          Healthier

          Don't worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

          make food is very healthy and delicious.

          More Usages

          Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

          breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It's really amazing!

          Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart\uff01

          \nFeatures: 1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them.\n2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks.\n3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new.\n4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing.\n5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.\n", "embedding": [-0.92578125, 0.051116943, 1.6767578, -0.66259766, 1.5263672, 0.6069336, 1.1259766, -0.48657227, 0.09899902, 1.9355469, -0.018981934, -1.1689453, 0.5546875, -3.9121094, -0.15930176, -0.37719727, 0.11968994, 1.6630859, 3.7441406, 0.030380249, 0.1541748, 0.60302734, 0.97265625, -1.5585938, -0.012481689, 0.99902344, 4.5117188, -0.62890625, -0.13964844, 0.10650635, 1.9521484, 1.7197266, 0.66845703, 1.9443359, -2.7421875, -0.81933594, -1.3203125, 3.1035156, -0.27929688, -0.55371094, -1.2529297, -3.0585938, 1.4824219, 1.4882812, -1.8417969, 0.43896484, -0.65625, 1.3925781, -0.94970703, -2.5742188, 1.5615234, 0.20422363, 2.8652344, 0.3256836, -2.0625, 1.1914062, -0.006629944, -1.0566406, -0.22253418, 0.6303711, -0.5756836, -0.5390625, -1.6533203, 0.9848633, -0.64990234, -0.92089844, 0.16296387, -1.0214844, 0.6328125, -1.9394531, 0.89697266, -1.2441406, -0.18688965, 0.5419922, -0.35668945, -0.0042533875, -0.4116211, -1.3740234, -0.010894775, -1.109375, 0.3154297, 3.1015625, 0.12432861, -1.0849609, -0.6411133, -1.8339844, -3.15625, 0.013298035, 2.6953125, -0.25439453, 0.70214844, 3.734375, -2.1347656, -4.2851562, 0.16772461, -2.6191406, 0.45581055, 0.20483398, -1.6386719, 2.3574219, -1.6542969, -1.7431641, -1.0244141, 1.9013672, -4.171875, -2.6191406, 2.1757812, -0.43066406, 0.37036133, -0.44335938, 0.1459961, 0.26660156, 1.5791016, 0.1307373, 1.8066406, 0.42456055, -0.33911133, 1.2773438, 1.0136719, -1.0888672, 4.078125, 0.64990234, -0.27319336, -3.0839844, 0.3552246, -1.3164062, 0.7158203, 1.6845703, 2.4199219, -2.46875, -0.08319092, -0.41845703, -0.6245117, -0.5917969, -2.6152344, -0.036102295, -1.1591797, 0.63427734, -2.7421875, 1.8740234, -0.29614258, 0.11303711, 1.7333984, -0.5917969, -2.4160156, -0.041290283, -1.8076172, 3.4433594, -2.3671875, -0.8803711, 0.10876465, -1.0771484, 1.9414062, -1.2226562, 0.23864746, -0.6225586, 1.1748047, -0.81152344, 0.8691406, 1.3105469, 1.0439453, -2.1328125, 0.40844727, 0.69921875, 0.5029297, -2.546875, -1.2705078, 1.4638672, -0.43115234, 1.765625, -0.5629883, -1.5927734, 0.99609375, -0.8408203, 0.15820312, -0.9301758, -0.14465332, 4.5078125, 0.15039062, -1.1328125, 0.031982422, -3.4414062, 0.02684021, 1.9208984, -0.71972656, -0.034179688, -0.6347656, -0.5073242, 0.14099121, -0.7524414, 0.15454102, 2.2890625, -0.19433594, 0.69628906, -2.3144531, -0.33520508, 0.15075684, -2.8828125, 0.9980469, -0.2685547, -0.22631836, -1.2197266, -0.60546875, -1.0976562, -3.0292969, -2.8574219, -2.8652344, 1.6044922, 0.7319336, -0.30541992, 0.5029297, -2.7441406, 0.7788086, 1.2597656, -1.2060547, -1.7353516, -0.4296875, -0.28222656, 0.8198242, 3.0878906, -0.27441406, -0.11694336, 0.31103516, 3.5898438, -1.2578125, 2.3085938, -0.6767578, 1.3466797, -0.04498291, -0.57373047, 2.4179688, 1.4121094, -1.2177734, 0.296875, -0.5205078, 1.4765625, 2.6191406, -1.1533203, -1.3056641, -0.18066406, -1.53125, -1.7753906, -0.9042969, -2.6523438, 0.29467773, 0.31030273, -0.16442871, 2.5625, 2.2226562, -0.45581055, -0.012237549, 4.3710938, -0.0871582, 0.16833496, 0.6176758, 0.6142578, -0.05999756, -0.45117188, -1.4355469, 0.006767273, -0.8515625, -0.49023438, -1.5410156, 0.7036133, -0.04095459, -0.19616699, 2.2734375, 1.6005859, -3.2636719, -1.4726562, -1.1640625, -0.7036133, -0.30444336, -1.3730469, 0.56933594, 0.7128906, -2.1972656, 0.54785156, 0.8642578, 0.13317871, 0.30004883, 3.2753906, 0.34887695, -0.39331055, -2.7890625, -0.064086914, -1.8554688, -0.6425781, 1.9785156, 2.2011719, 4.0859375, 1.15625, -0.7714844, 2.3203125, -0.48095703, -0.2854004, 1.4824219, -0.27685547, -1.1591797, -1.5019531, -1.1972656, 2.0292969, -0.55078125, 0.30688477, -1.8769531, -0.4165039, 1.2080078, -1.0654297, -0.2939453, 2.7460938, 0.9277344, -0.22851562, 0.2878418, 1.7070312, -2.6386719, -1.8574219, 2.1621094, -1.8056641, 1.2548828, -1.7695312, -0.78564453, -0.27026367, -0.66308594, -2.0097656, -0.3642578, 1.7958984, -0.703125, -0.29516602, -0.13464355, -0.63623047, -0.61572266, -1.8261719, -0.17480469, 0.30810547, -2.4238281, -1.6259766, -1.7539062, -0.9165039, -2.3769531, 1.2363281, -1.3916016, -0.15075684, -1.5449219, 0.041870117, -1.0302734, -2.9628906, -2.6210938, -1.2744141, -0.3955078, 2.0449219, 0.5629883, 1.9160156, 0.3647461, -4.6289062, 0.12902832, -0.48168945, -1.8232422, 1.4414062, -3.5546875, -0.056427002, 0.89453125, -0.5175781, 0.94677734, -0.31518555, 0.6611328, 1.5390625, -2.4375, -2.0507812, 0.48583984, -1.0087891, 1.0175781, -1.4804688, 0.057617188, -1.6943359, -0.6669922, -1.5302734, 0.1274414, 3.9238281, -0.15820312, -0.10998535, -1.8476562, -1.0976562, 2.3789062, 1.4892578, -2.6367188, -1.6992188, -0.47192383, -2.6660156, -1.546875, -2.3789062, -1.0644531, -0.5229492, -1.1757812, -1.3173828, 1.6748047, -0.30444336, 2.9433594, -3.7832031, -0.22058105, -0.21008301, 2.1035156, -0.99853516, 1.2773438, -0.55859375, -0.59228516, -1.2138672, -2.3496094, -0.59277344, 2.1992188, -1.59375, 1.3496094, 0.3779297, -0.4506836, 0.1673584, -0.055358887, -1.6025391, -0.60595703, -1.3027344, -1.4404297, 0.72314453, 0.8510742, -1.3544922, -1.1386719, -1.6181641, 3.6992188, -0.08831787, 2, 2.1269531, 0.2211914, 3.3203125, 2.1542969, -0.046325684, 0.2602539, 1.1357422, 0.86572266, -0.6801758, -2.0644531, 2.0683594, 0.22509766, -1.2207031, 0.24572754, 0.3720703, -0.11419678, 1.1728516, 0.52490234, 0.09857178, -0.26782227, -0.91845703, 3.1464844, 1.1689453, 0.5439453, 0.7890625, 0.13452148, 0.059753418, 2.203125, 2.3652344, 2.9609375, 0.84277344, 0.5126953, 0.6118164, 0.24243164, -2.2324219, -0.27856445, 2.6054688, 1.4560547, -0.8535156, 2.2070312, -0.30517578, -0.012313843, 3.6445312, -0.048187256, 1.109375, -1.6552734, 0.53222656, 1.6044922, 0.44702148, -0.9741211, -2.2167969, -0.78222656, -0.9536133, -3.0683594, 0.9057617, -2, -3.7226562, 0.80322266, -2.1328125, -3.5429688, 0.3010254, 3.5761719, -0.83496094, -1.8085938, -0.47265625, 2.7382812, -0.95654297, -1.8007812, -0.032409668, 0.42382812, -0.6508789, 1.515625, 0.6723633, -0.5234375, 2.3144531, -2.5058594, 0.4543457, 1.0009766, -2.8183594, -0.68847656, -2.3574219, -0.91845703, -0.13830566, -0.7211914, 1.1611328, 1.9550781, -0.42016602, 0.25732422, -1.6425781, 1.5595703, 0.21398926, -1.0654297, -0.75097656, 0.78808594, -0.14624023, -0.14953613, 0.34326172, 4.5898438, 1.3095703, -2.7871094, 1.9482422, -2.4746094, -0.31274414, -0.17138672, -2.8300781, 0.8125, 0.36572266, -1.8486328, 3.5214844, -0.41333008, 0.49023438, 3.59375, -0.5361328, 0.17407227, -0.030593872, -1.8369141, -0.96435547, -0.17077637, 0.35058594, 4.0039062, 1.0615234, -1.2753906, -0.7089844, -0.6430664, -0.8779297, 0.88378906, 0.9355469, -0.74316406, -0.8413086, -3.7128906, 0.31176758, 0.9863281, -0.22949219, -0.80859375, -0.58740234, 0.18322754, -0.22070312, 3.6875, -2.0527344, 1.5419922, 1.2451172, -1.0292969, -0.8251953, 0.48901367, -0.9980469, -0.6816406, 4.8710938, -0.76464844, -1.7060547, 0.016174316, -0.03591919, 0.34106445, -0.9501953, -1.3730469, 0.5546875, -1.3603516, 0.6191406, -0.59033203, 1.9414062, 1.2744141, 0.24487305, 0.12207031, -0.1607666, 0.076660156, -1.5556641, -1.2324219, 0.9165039, 0.17871094, 0.55566406, -1.5429688, -2.5800781, 2.734375, -2.2402344, 0.56152344, -2.5449219, 1.7919922, 1.1943359, 0.107666016, 4.7539062, -3.09375, -0.14379883, 0.5751953, -3.3046875, -1.7070312, 0.5732422, -1.8066406, -2.4492188, 2.0664062, 2.0644531, -0.046447754, -1.9628906, -0.57958984, 0.5810547, -0.5214844, -2.9511719, 1.2792969, -1.3427734, -0.69433594, 2, -1.1162109, 2.8339844, -0.75097656, 1.9287109, 2.7519531, -0.1262207, 0.075683594, 1.8720703, 1.0703125, 0.36254883, 0.875, 0.91796875, 1.4746094, -1.4003906, -0.7519531, 0.5498047, 1.5771484, -1.8720703, 1.1347656, 0.07531738, 0.7939453, -1.6074219, -0.9145508, 3.265625, 2.25, -0.49829102, 2.1015625, 0.8701172, -2.4257812, 2.1210938, 1.8720703, -0.70166016, 1.3388672, -1.3232422, -0.7973633, 2.3320312, -1.1113281, -2.0039062, -1.2626953, 0.7182617, 0.37036133, 0.9038086, -1.5664062, 1.1064453, 2.0800781, -1.9150391, -0.7866211, -1.6591797, -0.83203125, 1.0410156, -0.28930664, 1.4980469, -0.45947266, 1.0371094, 3.6210938, -1.0615234, -2.1269531, 2.0625, -0.0692749, -0.75439453, 0.55126953, -1.0595703, -2.3261719, -2.5078125, -1.0507812, 0.64453125, 1.9550781, -0.34570312, 1.9394531, -3.1855469, 2.203125, -2.0390625, 2.4570312, -0.89404297, 0.0028896332, 4.21875, -4.1679688, -1.5859375, -1.1181641, 1.7724609, -0.45532227, 0.9458008, 1.6123047, -0.031402588, -0.80029297, -0.31933594, -1.5537109, -2.9238281, -1.0292969, 1.6435547, 1.0029297, -0.47827148, -0.921875, -1.2138672, 0.28344727, 0.8417969, 1.4072266, -0.7001953, -0.60839844, -1.3535156, -2.2851562, -1.6679688, 0.020523071, 1, 0.9970703, -0.6230469, 3.3808594, -2.1621094, -1.7041016, -0.88720703, -0.6953125, -2.7890625, -0.8208008, 2.1914062, -0.43286133, -0.037902832, 1.1904297, 0.40429688, 1.0341797, 3.828125, -1.3955078, 0.13659668, 2.0644531, -0.6303711, -0.41918945, -0.46923828, -3.4160156, 1.2685547, -3.0214844, 1.0957031, 0.765625, -3.3574219, 1.1865234, 1.0800781, -2.3847656, -2.1367188, 0.69921875, 0.35009766, 0.21655273, 0.21191406, -0.011459351, 1.1220703, -2.2246094, -1.8447266, -0.48632812, -1.1230469, -2.0390625, -1.2548828, 0.08276367, 4.0117188, -1.3212891, 2.9375, 1.4921875, 1.4882812, -0.6669922, 1.3710938, -0.4050293, 0.012710571, 0.2199707, -1.3066406, -0.16662598, -2.1855469, 1.5224609, 0.5888672, 0.57958984, 1.6328125, -1.0859375, -2.0292969, -1.8134766, 0.075927734, 0.45141602, 1.5810547, 0.69921875, 1.4179688, -0.4638672, 0.26489258, -1.5498047, 1.2138672, 0.6176758, 2.78125, -1.9833984, 3.4609375, -0.37426758, -3.7636719, 2.6933594, -1.0058594, 0.62060547, 1.9150391, -0.66748047, -0.44458008, -1.9160156, -1.7939453, -1.2539062, 1.2431641, -3.5234375, 1.6162109, 0.09655762, 0.9941406, -0.26904297, 2.1367188, 1.3857422, 2.7597656, 2.703125, 0.73095703, -1.234375, -0.78515625, -1.8291016, 0.82958984, 1.8505859, 1.4462891, 0.73583984, -0.3449707, -1.0292969, -1.3701172, 0.35498047, -0.42919922, 2.4023438, 1.3232422, 1.0292969, 3.7109375, 2.7207031, 2.5839844, 1.1347656, 2.2109375, 1.1865234, -0.066101074, -0.029663086, 3.1191406, 2.1796875, 0.92578125, -1.5146484, 1.7792969, 0.10644531, 0.21252441, 0.9609375, 0.4091797, 0.7973633, -1.0654297, 1.5654297, 0.48583984, 0.9296875, 0.99072266, 1.6962891, -2.2617188, -0.10595703, -1.609375, 1.9697266, 3.0117188, 0.28198242, 0.93847656, 1.5839844, 1.2314453, 1.828125, -4.6523438, -0.18530273, 1.2939453, 0.50341797, 0.050445557, 3.5292969, 0.13195801, 0.62890625, 0.4831543, 2.4550781, -0.359375, 0.57421875, 1.3066406, 1.6269531, 0.91845703, -0.54248047, 2.5742188, -2.5214844, -1.8632812, -1.2490234, -0.21105957, -2.2148438, -1.578125, 1.1396484, 1.234375, 3.2304688, 0.6381836, -5.234375, -0.0513916, 0.039733887, 0.68652344, -2.3417969, 0.6850586, -0.7895508, -2.8789062, -2.4589844, 1.3740234, 1.1376953, 2.3867188, 0.54296875, -0.65185547, 2.7363281, 0.60058594, 0.33081055, -0.124938965, 2.5214844, -1.9726562, 0.17797852, 0.123168945, 4.5429688, 1.6923828, 1.3964844, 0.62939453, 1.9130859, 1.7802734, 0.9296875, 2.5898438, 0.30786133, 0.21240234, 0.09088135, 0.4494629, -0.21350098, -0.4633789, -2.2207031, -1.0507812, 0.42382812, -1.6582031, -1.3867188, 0.24816895, 0.29589844, 1.5703125, 2.0019531, 0.3491211, -2.2207031, 3.3691406, 2.1953125, -1.2226562, -0.18652344, -0.16967773, 0.50390625, -0.5288086, -1.7255859, 1.5019531, 2.1914062, -0.8051758, -0.6850586, 0.37451172, -1.4228516, 0.72998047, -0.15307617, 2.578125, -2.1816406, -2.0566406, 1.4677734, 1.0449219, 1.1347656, 2.3710938, -0.7817383, -0.6791992, -0.26538086, -2.6074219, -1.0712891, -1.9267578, -2.4101562, 0.55371094, 3.6542969, 1.4140625, -0.37158203, -1.2167969, -3.4316406, 0.94140625, -0.7661133, 2.5644531, -0.51708984, 0.31689453, 0.22216797, -0.94873047, 2.7480469, -1.2099609, -1.5966797, -0.5888672, -1.3105469, 1.4013672, 0.30908203, 1.0556641, 0.85253906, 1.1728516, -0.79541016, 4.0703125, 3.7480469, 0.22570801, 1.7714844, 0.88671875, 0.5029297, -3.9160156, 0.45507812, 0.11981201, 1.2050781, 1.0830078, 0.11791992, -0.5473633, -1.4316406, -1.0517578, -2.2167969, -1.0488281]}, "B000NV6HOE": {"id": "B000NV6HOE", "original": "Brand: Traeger\nName: Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)\nDescription: \nFeatures: MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger\u2019s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts.\nNOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn\u2019t just happen, it\u2019s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills.\nTRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood's unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content\u2014the sweet spot\u2014to maintain a perfect burn-to-smoke ratio\nPAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood\nFEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag\n", "embedding": [-1.9072266, -0.18005371, 0.26782227, -2.6269531, 0.2902832, -0.8901367, 0.6010742, -0.6357422, -0.09161377, -0.72802734, 1.7734375, 1.0185547, 1.171875, -2.984375, 0.62890625, -2.09375, -2.859375, 1.6123047, 1.0878906, -0.1739502, 0.7529297, 0.5390625, -2.8691406, -0.99853516, 2.1875, -0.39526367, 2.6308594, -1.9697266, 0.79248047, 1.1347656, 1.6425781, -0.85546875, 0.40600586, 0.37573242, -0.2536621, -0.75683594, -1.3076172, -0.28735352, -2.0878906, 0.1274414, -1.8964844, -0.88671875, 0.6015625, 2.0664062, -2.8164062, 1.8291016, 0.6225586, 2.09375, -2.125, -1.09375, -0.95166016, 1.8544922, -1.8339844, -1.1767578, 0.8901367, -0.8666992, 0.34448242, -3.6191406, -0.25756836, 0.88427734, 1.15625, 0.20178223, 0.16503906, 1.2851562, -1.6357422, 1.2265625, -0.23901367, -0.9140625, -0.8222656, -0.2919922, 3.8984375, 2.28125, -0.29467773, 0.57958984, -0.796875, 0.43823242, -0.9824219, -0.48901367, -0.18347168, -0.1776123, 1.4570312, 3.6582031, 0.5864258, -0.3408203, 1.9072266, -0.49536133, -2.140625, 1.8076172, 0.52978516, 0.5986328, 1.3857422, 1.0458984, -0.99853516, -3.28125, 2.2617188, -0.6274414, -1.1699219, 0.2578125, 1.1640625, 2.1132812, 1.5283203, -1.4375, -1.2568359, 1.2529297, -4.3515625, -1.3232422, 0.23400879, -0.35864258, -0.18701172, 1.4814453, -2.7148438, 3.4804688, 0.8901367, 2.4472656, 1.2490234, 0.39526367, -0.6376953, -2.8183594, 0.40405273, 1.4345703, 4.2148438, -0.72802734, 0.45825195, 0.0036201477, 0.3725586, 0.24645996, 0.6567383, 2.7109375, 0.6328125, -2.2753906, 1.046875, -2.390625, 0.57666016, 1.2763672, -0.85058594, -1.2421875, 0.44726562, -1.3105469, 0.048583984, -2.6367188, -0.43139648, 1.953125, -1.2734375, 0.96875, -1.6533203, 0.24658203, -0.64941406, 1.5888672, -0.2052002, -1.2099609, 1.7519531, -0.8935547, -1.2431641, -1.9345703, 0.52197266, -0.49414062, -0.017501831, 1.3603516, 1.0224609, -0.025726318, -0.14892578, -0.9609375, 0.1862793, 1.5087891, -2.1152344, -4.4335938, 1.0488281, 0.22424316, 1.0722656, 1.9091797, 2.7128906, -0.4868164, -0.6308594, -0.16833496, 1.2939453, -2.0957031, 0.80322266, 2.2226562, -0.11804199, -0.9433594, -0.31811523, 0.123413086, -0.72802734, -0.5048828, 0.107421875, -0.55566406, 2.1855469, 0.100097656, 0.31152344, -1.4101562, 0.6660156, 0.99902344, -1.140625, -0.24829102, 0.55859375, -2.1035156, 0.87646484, -2.8046875, 0.73779297, -3.0117188, -2.1699219, 1.3671875, -1.8408203, -0.40551758, -0.75146484, -1.2900391, -1.5888672, -0.49316406, 0.73583984, 0.8208008, 1.0507812, -2.0996094, 0.47753906, 1.5605469, -1.984375, -2.4140625, 2.3066406, -0.76171875, 0.9736328, 0.1986084, -1.1591797, 0.7885742, -0.7421875, 2.0878906, 0.05215454, 1.5107422, -1.0058594, 0.68896484, -2.2988281, -2.5019531, 2.171875, 0.8383789, -0.7832031, -0.56103516, -0.50341797, 1.3183594, 0.87597656, 0.5986328, -1.3935547, 3.2597656, -0.9814453, 0.24182129, 0.08300781, -1.8886719, 0.4946289, -1.1992188, -0.9711914, 0.3852539, 1.0917969, 0.77490234, -1.3740234, 1.3544922, 3.578125, 1.9648438, -1.6982422, -0.85302734, -3.0996094, 0.82421875, -2.1035156, -1.2763672, 1.28125, 0.36694336, 1.7285156, 1.2587891, 0.91064453, 0.06060791, -0.31323242, 0.22631836, -1.4970703, -1.3964844, 0.21069336, 0.021575928, -0.10296631, 0.02973938, 2.7636719, 0.12121582, -0.5473633, 1.0664062, -0.9663086, 1.1699219, 0.73095703, 0.15539551, 0.3005371, 0.15527344, -0.3725586, -2.1523438, 0.13671875, -1.5371094, -0.4091797, 2.15625, 6.15625, 0.52978516, -2.6835938, 0.6459961, -0.6879883, 0.49316406, 0.21838379, -0.6479492, -0.41015625, -0.67333984, 2.3847656, 1.3369141, 0.390625, -0.5996094, -0.9248047, 0.6845703, 1.6660156, 0.23754883, 1.3017578, 0.74560547, -0.14282227, -0.02583313, -2.3671875, 0.2142334, -3.3339844, 0.66503906, 0.43286133, -2.2558594, 0.5605469, -1.8701172, 1.6005859, 2.3945312, 2.0214844, -3.140625, -1.3496094, 1.2998047, -0.47460938, 2.1621094, -2.3339844, -0.99072266, 0.26708984, -1.5722656, 0.7348633, 0.06536865, -3.0917969, 1.0361328, -1.0390625, -2.3574219, -0.5571289, 0.7294922, -1.3320312, 0.9189453, -3.0917969, 2.1914062, -2.1035156, -0.70166016, 1.546875, -0.30932617, -0.82177734, 3.46875, -0.6870117, 2.4941406, 0.37109375, -2.2480469, -2.3730469, -0.45898438, -0.54833984, -0.4946289, 0.81640625, -0.44628906, 0.40234375, -1.5224609, -2.2402344, -2.2929688, 0.88427734, -0.7919922, 1.0029297, -2.1601562, -0.027496338, -1.3701172, 0.4489746, -0.48779297, -0.056488037, -0.8173828, -0.4267578, -0.97314453, -0.33422852, 3.0683594, 0.9423828, 2.3085938, -1.7617188, -0.15161133, -0.19677734, -0.5546875, -1.9208984, -2.5058594, 0.84472656, -2.2441406, -1.9794922, -2.3398438, 0.18457031, -1.3300781, 0.37304688, -0.34838867, 0.9003906, 1.2714844, 1.0283203, -1.609375, -1.0859375, 0.98828125, -0.33251953, -0.95458984, -0.2709961, 0.7451172, 1.2529297, -0.15637207, -1.8447266, 1.2998047, 1.5410156, 1.0185547, 2.6914062, -0.9824219, -0.20629883, -1.9091797, 1.5703125, -1.9882812, 1.7470703, 1.5605469, -1.3935547, 0.22045898, -1.0302734, -2.5136719, -0.39208984, 0.16625977, 2.28125, 2.1835938, 0.6611328, 1.3242188, 0.10949707, 0.5566406, 0.15319824, 0.12243652, 0.16918945, 0.32763672, 0.19348145, -2.4804688, -1.6279297, -0.24072266, -0.0051002502, -0.9213867, -1.0234375, 2.0332031, 1.1728516, -1.2050781, 2.0195312, 1.5595703, 0.3881836, -2.2695312, 3.4199219, 0.69873047, -1.5654297, -1.796875, -0.10284424, 1.640625, 2.2734375, 0.9897461, 1.6757812, 3.234375, 1.4345703, 1.3398438, -1.0732422, -1.0341797, 0.5761719, -1.9101562, 1.6279297, -0.24975586, -0.1685791, 0.27856445, -1.5039062, 1.6855469, -2.3828125, 1.8798828, -1.1865234, 0.06335449, 2.21875, -0.59472656, -0.9121094, 2.6132812, 0.77685547, 0.50683594, -1.4169922, 1.0859375, -0.21118164, -0.15124512, 3.5175781, -0.8022461, -1.6962891, -4.296875, 2.1679688, -1.0205078, -1.7314453, 0.26953125, 2.6660156, -0.19226074, -0.71240234, -0.55908203, 0.9765625, -0.7236328, 0.4345703, -1.1650391, -0.0070991516, 1.3544922, -0.6791992, 2.3066406, 2.3691406, 1.0615234, -1.4726562, -2.8886719, 0.44677734, 0.3359375, 0.9550781, -0.2109375, 0.52685547, -0.9609375, 1.1142578, -2.9570312, 1.9189453, 0.88427734, -3.4433594, 2.8945312, 3.28125, 0.40576172, -0.3017578, -0.60302734, 2.3144531, 0.42529297, 0.47973633, 4.1171875, -2.1503906, 0.75146484, -1.1054688, -2.3535156, 1.5332031, 1.2158203, -0.47924805, 3.7597656, -0.016815186, 0.49658203, 2.3867188, -0.13391113, -0.7910156, -4.1210938, -0.87402344, -0.5625, -0.87402344, -0.5371094, -0.36401367, 0.9213867, -0.9638672, -2.0078125, -1.8173828, -0.7470703, 0.3540039, 0.60595703, -2.1679688, 1.59375, -3.3964844, 0.4814453, -1.0146484, -1.8466797, -0.101867676, -1.0244141, 0.62402344, 1.046875, 1.8818359, -0.35986328, 0.8310547, 1.4257812, -1.0048828, -0.046722412, -0.9169922, -0.4399414, -0.12805176, 2.5664062, 1.4443359, -0.8642578, -0.75390625, -1.4443359, 0.24047852, -1.4042969, -1.7236328, -0.30126953, -1.8408203, -1.1621094, 1.7919922, 2.5585938, 1.6708984, 0.36279297, 1.0820312, -1.9765625, 0.015029907, 0.42895508, -2.7207031, -2.6816406, 0.29956055, -1.0136719, 0.34716797, -1.8144531, 0.5649414, -2.1894531, -0.40551758, 1.5019531, 3.3378906, 3.1152344, 1.7685547, 3.7929688, -0.51171875, -0.16442871, 1.9902344, -0.30541992, 0.14294434, -0.6245117, 2.1367188, -0.026153564, 2.1660156, -0.24914551, -0.15734863, -2.46875, 0.7675781, -0.054779053, -0.13952637, 0.30566406, -1.1328125, -0.37060547, 0.1965332, 1.796875, -0.69970703, 1.8818359, -0.48901367, -0.8076172, 1.7617188, 2.1464844, -1.8681641, 0.93310547, 0.9433594, -2.671875, 1.2529297, 2.0527344, 0.28320312, -1.984375, 0.27978516, 1.8144531, 0.63378906, -0.7416992, 1.6289062, 0.9350586, 0.5439453, -0.35595703, 0.65722656, 2.9628906, 0.5078125, 0.55859375, 2.9316406, 1.7480469, 0.26635742, 0.7573242, 2.0117188, -0.6328125, 1.6777344, 0.17565918, -3.0136719, -0.6171875, 1.0556641, -4.3242188, -1.4589844, 2.1796875, -0.8886719, 0.42236328, -1.2958984, -2.1953125, 1.4667969, -1.1689453, -1.6513672, 1.828125, -1.6494141, 1.4707031, 2.3300781, -1.7783203, -2.0605469, -1.0292969, 3.4863281, -3.0273438, -0.3178711, 1.1982422, 1.0087891, 1.2392578, -2.0839844, -1.1035156, -2.2070312, -2.3515625, 0.32006836, 2.4101562, 0.5419922, 1.1679688, 3.8574219, -1.3251953, 1.2402344, -2.9804688, 0.7661133, -3.1757812, -0.72753906, 2.953125, -2.4082031, 2.78125, 0.7241211, 0.25219727, 2.0429688, 1.296875, 0.40966797, -2.4609375, -2.3066406, 2.2851562, -2.390625, -3.8789062, -2.8183594, 0.53027344, 0.045013428, -0.49194336, 2.2851562, -1.0410156, -0.06402588, -0.99853516, -0.6196289, -0.76416016, 0.02293396, 0.45361328, 0.38061523, -3.0175781, -0.16052246, 0.42944336, -2.3808594, 1.6337891, 2.6914062, 1.1064453, -3.4179688, 0.27270508, 0.32226562, 0.5390625, 0.25952148, -0.62109375, 0.15014648, -0.96533203, -0.15734863, 2.21875, -1.0283203, 2.6445312, -1.1640625, 0.88916016, 0.3935547, -1.3300781, 1.0673828, -1.9746094, -1.0087891, 0.42895508, -1.0166016, 2.2773438, -0.8203125, -0.8017578, 0.07946777, -1.1914062, 0.3100586, 0.31103516, 1.0986328, -0.25341797, 1.7617188, 1.3935547, 1.7773438, -0.89941406, -3.09375, -2.2890625, -2.4394531, -1.1464844, -1.9326172, -0.8105469, 3.1972656, 2.2246094, -2.1171875, 1.8261719, 2.0800781, 0.29541016, -1.8095703, 0.0725708, -1.890625, 2.0625, -0.22595215, 0.12243652, -2.4824219, -0.7421875, 0.48901367, 3.796875, -0.20410156, 0.41625977, -0.3334961, -1.4345703, -3.3808594, 1.4755859, 2.46875, 0.33935547, 1.6054688, -0.32299805, -0.4501953, 2.5234375, -1.0751953, 0.7055664, 1.7050781, 2.6816406, -0.9423828, 1.9160156, -1.6728516, -2.7265625, 1.9951172, -2.4648438, -0.5288086, 1.3662109, -1.0996094, 0.95166016, 1.03125, 0.15478516, -0.1965332, -0.14318848, -1.9716797, 1.5527344, -1.1943359, -0.09326172, -2.0371094, 2.7246094, 2.390625, 4.0429688, 3.1484375, 1.0351562, -0.36621094, -1.6162109, -0.11254883, 0.5800781, 1.3359375, -2.7285156, 0.9316406, 0.32666016, -0.66503906, -1.8310547, 1.9970703, -1.6035156, 1.4462891, 0.66748047, 1.9951172, 2.8847656, 2.15625, 2.9003906, 0.17358398, 2.2363281, 0.62890625, -0.38256836, 1.2099609, 1.2666016, 0.37182617, 2.7460938, -0.58496094, 2.4375, -1.0244141, 1.125, 0.42211914, -3.15625, -0.6826172, -3.6152344, 2.5136719, 0.75878906, 1.0234375, -3.7773438, 0.7504883, -2.3476562, 0.15820312, -1.9052734, -1.4589844, -0.043151855, 1.2294922, -0.63378906, 0.49780273, -0.052642822, -1.3505859, -4.8398438, 0.13891602, 0.4885254, -0.7055664, 2.0722656, 2.4824219, 1.3828125, -1.4960938, -0.002729416, 1.1533203, 3.7324219, 1.5947266, 0.16564941, -0.6376953, -2.3320312, 1.0957031, 0.6879883, -0.8359375, -0.9916992, -0.1307373, 0.2286377, -1.6533203, -1.7294922, 1.5029297, -2.6191406, 2.0996094, 2.8867188, -4.0195312, 1.8339844, -0.46801758, -0.6801758, -0.90527344, -0.4013672, -0.35595703, -0.63916016, -3.671875, 1.9326172, 3.3046875, 1.5615234, -1.6396484, -1.7568359, 0.00045776367, 0.8251953, 2.5878906, 1.515625, 1.0068359, -1.0722656, -0.8642578, -0.47680664, 2.2851562, 0.3334961, -1.4697266, 0.8886719, -1.2646484, 3.8203125, 0.6230469, 0.1706543, 0.28222656, -2.3164062, -1.6035156, -3.0996094, -0.67871094, -0.14868164, -3.34375, -0.41357422, 0.09863281, -0.0680542, -0.71240234, -1.0712891, 3.2988281, -0.19519043, 1.3535156, 3.4628906, -2.5820312, -0.6694336, 0.92333984, 0.7783203, 1.2939453, -0.39013672, 1.9257812, -1.9404297, -1.2304688, 3.2734375, 2.5566406, -0.07354736, -2.171875, 1.2089844, 1.5224609, -1.1484375, -1.0927734, 0.9165039, 1.2978516, -2.90625, 2.4746094, -1.4755859, 1.4765625, 3.3925781, -0.18615723, -1.0078125, -0.2849121, -2.7128906, -2.6035156, -1.2900391, -1.046875, 1.2089844, 2.7011719, 0.7910156, 2.2285156, -1.1669922, -2.3515625, -0.8095703, -2.0136719, 3.8984375, 0.059387207, -2.1582031, -1.046875, 0.6166992, -0.040405273, 2.6132812, -1.5390625, 0.32080078, -2.9414062, -1.4404297, -0.45361328, 1.4560547, 0.7636719, 1.2138672, -0.3227539, 3.15625, 0.87841797, -0.08312988, 1.8125, 3.1992188, 1.4150391, -1.5087891, -0.004722595, -0.06530762, 1.0185547, -2.2460938, -1.5976562, -1.6464844, -0.21984863, -0.6850586, -1.6552734, -3.6308594]}, "B0009PURJA": {"id": "B0009PURJA", "original": "Brand: Coleman\nName: Coleman Camp Oven\nDescription: \nFeatures: Portable camping oven lets you bake with confidence at the campsite\nFits on Coleman Propane and Liquid Fuel Camp Stoves\nAdjustable rack can be set at 3 heights for versatile baking\nEasy-Clean Aluminum Steel Construction Resists Scratches and Corrosion\nFolds flat for easy storage and carrying\n", "embedding": [-0.4416504, 0.52978516, 2.4824219, 0.5175781, -0.1015625, -0.5654297, -0.14648438, -0.10974121, -1.9892578, 3.2226562, 0.09820557, -0.44604492, -0.38891602, -1.328125, -0.50439453, -0.4699707, -0.36279297, 1.6943359, -1.0273438, -0.4572754, 3.9042969, -0.6850586, -1.0087891, -1.3388672, 0.7397461, 0.7915039, 4.4179688, -4.9375, -1.0996094, 0.3076172, 1.0117188, 0.14233398, 0.26342773, 2.1015625, -2.5566406, -0.2668457, -2.8125, 2.2871094, -2.1074219, -1.0898438, -1.5820312, -2.0703125, 2.2148438, 0.42041016, -1.1191406, -2.1679688, 1.1503906, -0.58251953, -1.3427734, -0.049560547, 2.0214844, 1.8291016, 2.4140625, 0.67089844, -1.8808594, 0.52246094, 0.54296875, -0.32299805, 2.5410156, -0.41430664, -1.6015625, -0.1204834, -3.8242188, 2.4394531, -0.6118164, -0.54833984, -0.6953125, -0.63427734, -0.23828125, -0.34521484, 2.2753906, -0.9946289, -3.2539062, -1.9785156, -0.11883545, -1.59375, -1.7099609, -0.28808594, 1.1376953, 1.0576172, -0.68115234, 1.1074219, 1.3476562, 0.4699707, -2.0605469, -0.62841797, -0.87939453, -1.0566406, 0.28344727, 0.9838867, -1.6933594, 1.4570312, -1.6523438, -3.2773438, 0.8564453, -1.8720703, -0.21069336, -0.1685791, -1.3056641, 0.64453125, -2.828125, 2.15625, -0.44360352, -1.1552734, -4.203125, -1.2529297, 3.5175781, 0.0009646416, -2.0234375, -0.2434082, -2.5585938, -3.2128906, 1.3544922, 1.6757812, -0.4892578, 1.9785156, -2.2988281, 0.59765625, 3.3867188, -0.6665039, 3.2089844, -0.65625, 1.7236328, -0.057495117, 0.21972656, 2.6445312, 1.4101562, -0.30786133, 1.8798828, -0.015838623, -2.1171875, 0.9135742, 1.9414062, 1.0693359, -4.2109375, -1.0751953, -1.0566406, -1.3037109, -2.5957031, 0.15600586, -0.59765625, 0.7788086, 3.2246094, 0.43798828, -4.15625, -1.2705078, 1.171875, 3.7675781, -0.044311523, -0.7734375, -0.91748047, -0.8828125, -0.46948242, 0.1932373, 1.5126953, 1.4121094, -3.8730469, -2.5625, 2.3203125, 1.2705078, 0.7050781, -2.0058594, -0.6508789, 1.7451172, 0.80078125, 0.67285156, -0.11798096, 0.58203125, -1.1455078, 2.3613281, -0.6088867, -4.6171875, 1.7207031, 0.45458984, 2.0859375, -1.8955078, 0.2541504, 2.0957031, -0.20983887, 0.15783691, -2.4785156, -3.9960938, 0.6879883, 2.0058594, -0.40429688, -1.59375, -0.98535156, -1.0429688, 1.0048828, -0.9160156, -0.46362305, 1.7978516, 0.014457703, -0.24206543, -3.25, -1.3603516, 1.3916016, -0.88964844, -0.39013672, 2.1660156, -0.6166992, -1.1513672, 0.22741699, 1.3476562, -2.5195312, -0.7792969, -0.07861328, 0.2722168, 1.6035156, 2.1933594, 2.3359375, -0.9121094, 1.5517578, -0.90283203, -1.3105469, -2.6230469, 0.41870117, -0.70703125, 2.9121094, 1.1103516, 0.81640625, -0.81689453, -1.6064453, 0.78466797, -2.3300781, 3.0742188, 0.34277344, -1.4638672, -0.13134766, -1.0039062, 2.2714844, 1.9355469, -1.4677734, 0.26000977, -0.0057640076, 2.2910156, 1.5546875, -1.6269531, 0.9199219, -1.9257812, -0.10107422, -0.9067383, 1.4101562, -0.15966797, 0.08856201, -0.9067383, 0.13415527, 0.88427734, 1.96875, 1.3623047, -0.083496094, -0.59277344, -2.9746094, 0.6879883, -1.0830078, 0.88671875, -0.265625, 0.3203125, -1.1650391, -1.8642578, -0.12384033, 1.8769531, -1.3544922, -0.35351562, 1.8398438, -0.24365234, 1.15625, -0.048187256, -2.2832031, 0.8261719, 0.6020508, 1.0009766, 2.8496094, 2.5488281, 1.6777344, -0.8520508, 0.15698242, 2.2597656, 0.94970703, 2.6738281, 0.09094238, 0.5605469, 1.5517578, -3.0351562, -2.4492188, 0.39379883, -0.43017578, -0.83740234, -0.63427734, 0.8857422, 5.1953125, -1.4316406, -1.6494141, 3.4785156, -2.8671875, 3.8984375, 0.20153809, -1.4501953, -1.1435547, 0.46923828, 1.5644531, -0.25048828, -0.15234375, 1.8857422, -3.9902344, 0.6015625, -0.8334961, -1.7558594, 1.8994141, -0.54003906, -1.3476562, -1.2753906, -2.4941406, 1.8242188, -0.14953613, 0.63378906, 2.3105469, -3.0292969, 0.95751953, 1.7333984, 0.65722656, 1.4589844, 0.22509766, -1.5126953, 1.5908203, 1.4501953, -0.9868164, 1.2207031, -0.017715454, -2.8417969, 0.46362305, -2.3789062, 1.8398438, 1.0078125, -1.7578125, -0.6386719, 0.016357422, -3.7675781, 0.015106201, 1.5927734, 0.21386719, 1.4394531, -1.4833984, 1.6123047, -3.6132812, -0.99316406, -0.38745117, 1.3359375, -0.22045898, -0.12512207, 2.4628906, 0.8520508, -1.7236328, -4.2226562, -1.7792969, 1.0976562, -1.2441406, -1.2705078, -2.0292969, -0.26342773, 1.046875, 0.68115234, -0.28881836, 0.5209961, -1.8769531, -0.15612793, -2.9238281, -2.1210938, 3.1035156, -0.8442383, 0.1204834, 0.49072266, -0.74853516, -1.4765625, -0.7841797, 2.328125, -0.035583496, 6.9375, -1.0058594, 0.06323242, -0.24377441, -1.1474609, 0.39135742, -0.59814453, -3.3613281, 0.28637695, -0.39941406, 0.41503906, -0.4128418, -5.6914062, -0.25878906, -1.5693359, 0.17480469, -0.09777832, 1.1386719, -2.0664062, 0.5415039, -1.5253906, -0.4699707, -0.87402344, 0.31323242, -0.39111328, 0.4387207, -1.2011719, -0.60009766, 0.28808594, 1.0087891, -1.1591797, 0.9736328, -0.36938477, -1.53125, 1.3544922, -0.20336914, -0.107055664, -1.6640625, -2.765625, 2.5859375, 0.7988281, 0.5854492, 1.7128906, -1.6748047, -0.16540527, -2.4550781, -0.45629883, 2.4707031, 1.1015625, 2.4140625, 0.31713867, 1.3662109, 0.8339844, 2.1601562, 0.35327148, -0.15441895, 0.9770508, 1.5087891, -1.2060547, -3.1757812, 1.125, 1.7890625, -2.4921875, -1.15625, 0.24890137, 2.2832031, -0.05795288, 2.9101562, -0.35913086, -0.4934082, 0.30419922, -0.49609375, 4.2539062, -0.62060547, -0.080078125, -0.63134766, -0.5654297, 3.2988281, -0.2434082, 0.028869629, 0.9560547, 0.9003906, 2.7070312, 3.7089844, -1.2607422, 0.32861328, 0.94189453, 0.40405273, 0.9243164, 2.0058594, -0.44335938, -0.7866211, 0.27978516, -1.5419922, 2.4804688, -0.8510742, 0.79248047, 0.18261719, -0.8457031, 0.69873047, -0.58935547, -0.40893555, 1.0849609, -1.6835938, 1.765625, -1.0683594, -0.90185547, -0.053100586, -1.5625, -4.0078125, 1.1679688, 2.6484375, 0.47216797, -2.2226562, 1.2910156, 4.140625, -0.21240234, -1.5820312, -4.3398438, 0.2277832, -0.98291016, 1.6484375, 1.2050781, -2.3457031, -0.7714844, -0.21350098, 0.6069336, 1.2910156, -2.421875, -2.1542969, -1.3964844, -0.81933594, 0.5415039, 0.44018555, 0.8535156, 1.6435547, -0.64697266, 0.27441406, -2.3984375, -0.005962372, -0.7451172, -1.9609375, 0.22033691, 0.41674805, 0.19787598, -1.2089844, 0.47607422, 3.3457031, -3.3085938, -1.6113281, 0.9716797, -0.75878906, -0.15881348, -0.55810547, -1.5566406, 1.2919922, 1.3134766, 0.83203125, 1.015625, -1.6279297, 0.35766602, 0.42358398, 0.23535156, -1.6435547, -2.7089844, -0.42700195, 1.5517578, -1.8007812, 0.44799805, 2.1679688, -1.1376953, -2.9277344, -0.83740234, -0.34423828, 0.12231445, 0.8388672, 1.5986328, -1.7666016, -0.023391724, -2.3027344, 2.4453125, 0.8125, 0.56640625, -0.24060059, 1.7792969, 1.1455078, -1.3300781, 3.0253906, 0.6425781, 0.5961914, 0.82470703, 2.4472656, 0.7529297, 0.1694336, 0.00579834, 1.3662109, -0.2614746, 1.1181641, -2.2304688, -0.70410156, -2.6113281, -1.0791016, -0.31298828, 0.60546875, -0.26513672, -1.8291016, 1.8798828, 1.6142578, 0.23937988, 0.9272461, 0.69140625, -0.62060547, 1.4423828, -0.17077637, -0.3166504, -1.5585938, 0.40771484, -0.008354187, -1.7392578, 1.3564453, -0.34960938, 0.38842773, 2.3925781, 0.35864258, -1.7822266, 0.39208984, 0.734375, 1.859375, 2.3320312, -0.56884766, -3.1640625, 0.45214844, -2.15625, 0.26123047, -0.359375, 0.48608398, 0.0129852295, 2.4492188, 1.0732422, -1.6679688, -0.8613281, -1.5175781, -0.25463867, 0.859375, -1.8486328, 0.39086914, -1.4492188, 1.2294922, -1.6962891, -0.6411133, 1.5126953, -2.1796875, 0.26367188, -0.20056152, 2.4648438, -0.7783203, -1.0390625, -0.80029297, 0.5097656, 0.8256836, -2.8300781, 0.33618164, -1.4003906, 1.3613281, 1.2529297, 2.0722656, 0.3857422, -0.47338867, 2.3125, 1.0791016, -1.0869141, -0.68847656, -0.11401367, 1.1064453, -1.71875, 2.0566406, 1.0605469, 0.17907715, 1.7929688, 0.8408203, 1.0283203, -0.29541016, -0.81933594, -1.4765625, 4.0390625, -2.3847656, -2.9902344, 1.6484375, 1.0605469, 0.39892578, 2.4121094, -0.19458008, 0.10882568, -0.9824219, -1.9794922, 0.10723877, -1.3769531, -0.29956055, 0.2166748, -1.8056641, 0.44482422, -1.6269531, 1.9384766, 3.6054688, 1.3115234, -2.0800781, 1.015625, -2.7714844, 1.6142578, -1.4335938, -3.4257812, -1.9101562, -0.9536133, 1.5205078, -0.10144043, -0.1776123, 0.6699219, 2.40625, -0.77490234, -1.4589844, -2.203125, 3.2910156, -3.5332031, -0.17663574, -1.3183594, 0.66748047, -1.4179688, -0.36157227, 0.6538086, -1.6083984, 2.3242188, 0.7055664, 1.0244141, 0.52734375, 1.2646484, -2.6855469, -3.3085938, 0.64697266, -1.4794922, -0.27246094, -1.7949219, 1.15625, -2.140625, -1.9091797, -0.71777344, -2.2363281, -1.8515625, 0.7104492, 1.5419922, -0.117004395, -0.3864746, 0.8671875, -0.043182373, 0.4873047, -0.91748047, 2.2871094, -0.40478516, -2.1132812, -1.3974609, 1.1582031, -0.88427734, 0.8388672, 0.44262695, 1.0351562, 0.9550781, 2.0351562, 1.8583984, 0.59277344, 2.6308594, 0.23925781, -0.27026367, 0.2479248, -0.34960938, 0.2578125, 2.1289062, -0.796875, 0.44873047, -1.5751953, -0.47998047, -0.64990234, -0.024978638, -0.60546875, 1.7041016, 1.5976562, -0.1204834, 2.4375, -0.7265625, 1.2822266, 1.5986328, 0.2890625, 0.21386719, -2.9433594, -2.9296875, 0.1673584, 0.011650085, -1.4404297, -1.3105469, 1.0566406, 1.8251953, 1.296875, 0.9916992, 0.34814453, 3.1210938, 0.6542969, 0.8959961, -0.68847656, 2.5039062, 2.0039062, -1.3505859, -0.97509766, -2.5351562, 1.2666016, 0.66064453, 0.36865234, -1.2226562, 0.4453125, -1.0351562, 1.5175781, -0.703125, 2.0410156, 1.3701172, 1.3037109, -0.30932617, 2.6347656, 3.5703125, -1.2705078, -0.4050293, -1.5214844, 0.27246094, -3.1640625, 2.5976562, -0.7680664, -1.0292969, 2.8125, -2.9765625, 0.7993164, -1.1660156, -0.2541504, 0.56396484, -1.8798828, -1.3876953, -1.78125, 0.28808594, -1.4013672, 3.8730469, 0.50927734, -1.8730469, 1.1787109, 0.9199219, -1.1201172, -0.46484375, 2.2167969, 1.6679688, -2.1660156, -0.055999756, 0.87109375, 0.5673828, 3.3144531, -1.1484375, 2.4277344, -0.49194336, -0.48950195, 1.9550781, 1.8291016, 3.4199219, 2.546875, 4.0390625, 1.8027344, 3.3671875, -0.37841797, 3.2617188, 1.2519531, 0.2878418, -0.61865234, -0.21350098, -3.2714844, 0.8564453, -0.97314453, -0.25756836, -0.34179688, 2.0683594, 0.27441406, -0.8261719, -1.8984375, 2.5898438, -0.56689453, -2.3105469, 2.1757812, 1.3876953, 2.7246094, 0.07385254, 0.34423828, 1.5332031, -0.9375, -1.1240234, -0.21911621, -0.56640625, -2.0253906, 1.1962891, -0.94921875, 0.9892578, 0.7885742, -0.042816162, -1.5644531, -2.8222656, -0.9003906, -1.2919922, -0.03112793, 1.5458984, 1.4013672, 0.1697998, 1.8007812, 0.52783203, -0.85498047, 1.1201172, -0.5073242, 0.84472656, 0.13598633, 2.8066406, 0.0043411255, -0.70947266, 0.3864746, -0.99560547, -1.7080078, -1.6972656, 0.055664062, 1.0947266, 3.0898438, -0.016815186, -2.1269531, 1.5556641, 0.8154297, 4.1015625, -1.7519531, 1.9726562, 0.8857422, -1.5488281, -3.1542969, -0.9506836, -0.18457031, 2.8730469, 1.4482422, -1.6757812, 0.64746094, -0.6435547, 2.1640625, 0.28710938, 0.81689453, 0.99609375, 0.8125, -0.46411133, 2.6523438, 1.7763672, 2.4492188, 0.08111572, 1.8876953, 2.1210938, 0.5283203, -1.0390625, -1.609375, 1.5722656, 0.0023384094, 0.023117065, -1.2753906, -1.1513672, -1.2392578, 0.5307617, 0.81396484, -1.765625, 1.2138672, 0.06439209, -0.0690918, -1.1171875, 0.7607422, 0.036376953, -0.31518555, -0.051940918, -1.8544922, -0.8432617, -1.1376953, -0.16003418, 1.6523438, -0.19311523, -0.38916016, 0.3474121, 0.8339844, -0.32250977, 0.9746094, 2.0332031, -1.2734375, -0.6816406, -0.65527344, 0.66796875, -1.5126953, -0.22131348, -0.92285156, 1.4013672, -0.81103516, 2.9902344, -1.75, 0.035491943, 0.34106445, -1.1074219, -0.86865234, -1.3359375, 0.24902344, 0.8720703, 3.1425781, -0.8496094, 0.92529297, -1.2285156, -3.8183594, -2.8261719, -2.4882812, 0.40356445, 1.5253906, -1.1025391, 0.6904297, 0.79248047, 0.80859375, -1.6386719, -0.13305664, -0.5366211, 0.32128906, 1.5244141, -1.3681641, -1.0390625, 3.0703125, -0.30615234, -1.1376953, 1.84375, 1.2148438, 1.2324219, 2.5742188, 0.35424805, 0.36816406, -3.3925781, 0.53759766, -1.0449219, -1.7333984, -2.5, 1.2685547, 1.59375, -0.8964844, -0.6694336, -2.8125, -1.0380859]}, "B004C2OF62": {"id": "B004C2OF62", "original": "Brand: Weber\nName: WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001)\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n6 Stainless steel burners\n60,000 BTU-per-hour input\n6,800 BTU-per-hour input smoker burner and stainless steel smoker box\n10,600 BTU-per hour input sear burner\n", "embedding": [-1.3408203, 0.84521484, 1.7392578, -0.15124512, -0.38085938, 0.08526611, -0.031311035, -2.4238281, 0.5917969, 1.4892578, 2.4414062, -1.3466797, -1.0078125, -3.4101562, -0.15283203, -0.12634277, 3.3496094, -0.4597168, 0.07745361, 1.6689453, 0.21350098, 1.0449219, 3.7792969, -2.0585938, 1.1298828, 0.6435547, 3.4023438, -4.421875, -2.4414062, -2.4882812, 0.9140625, 0.75927734, 0.87939453, 2.2109375, -3.9960938, -2.4160156, -3.1171875, 1.3134766, -2.4667969, 0.81103516, 0.7241211, -2.3847656, -0.1586914, -1.1484375, -2.4960938, 1.0068359, 1.2158203, -0.13793945, -3.0136719, -0.8666992, 3.1523438, 1.5478516, -0.91503906, 1.5976562, -1.3193359, 1.7949219, 1.8525391, -1.9023438, 0.6176758, 0.03451538, 2.2871094, -0.5, -1.6943359, -1.515625, -2.0703125, -0.74658203, -1.1142578, 0.58447266, 0.80908203, 1.4140625, 3.4472656, -2.1464844, -1.6962891, 2.03125, -0.09185791, -1.3173828, -2.3496094, 2.9667969, -0.94677734, -0.89208984, -1.765625, 1.8613281, 2.7285156, -1.3974609, -0.09857178, 1.5371094, -0.41723633, -2.8964844, 0.89746094, 0.13415527, -0.6503906, 1.0087891, -2.46875, -2.3867188, 2.1660156, -1.0195312, 0.40429688, 0.70166016, -0.6245117, 0.5073242, -1.2871094, 2.7265625, 0.07659912, 0.054016113, -2.2695312, -2.8886719, 2.0058594, -0.066467285, -3.7402344, -1.9775391, -1.0732422, 1.1748047, 0.61572266, 1.6816406, 1.3662109, -0.21447754, 1.2177734, 2.8398438, 1.0166016, 0.90966797, 2.2636719, -1.3740234, 0.10845947, -0.9189453, -1.7060547, -0.09741211, -2.3164062, 2.0546875, 2.7246094, -2.5097656, -0.3894043, -1.5136719, 4.0234375, 1.1386719, 0.43164062, -1.1142578, -1.7636719, -0.8149414, -3.0214844, 0.2890625, -2.0371094, 1.6455078, 0.016433716, -1.5625, -3.6953125, 0.61816406, -0.10760498, -0.044067383, -0.19909668, -1.1142578, -1.1123047, -2.2089844, 0.1895752, -3.8574219, 1.4677734, -0.8222656, -0.5732422, 1.15625, 3.5, 2.7597656, 2.3808594, -0.35180664, -2.15625, -0.75439453, 1.3662109, -2.3144531, 0.89453125, 1.2060547, 0.024368286, 1.8310547, -0.5961914, -0.8647461, 0.0040893555, 1.2099609, 1.7783203, -0.94433594, 0.25048828, 2.2128906, 0.35253906, -0.7548828, 1.0449219, -2.5332031, 1.0078125, -1.0556641, -0.72216797, -0.92285156, 3.2402344, 1.546875, 2.1777344, -1.5361328, 0.4873047, -0.43676758, 2.0566406, -1.4375, 2.3066406, -0.8491211, -3.1132812, -1.921875, 1.7724609, -0.87646484, 0.10473633, -0.38623047, 1.15625, -0.3059082, -0.3178711, -2.8515625, -1.0302734, -2.8730469, -0.45043945, 0.9404297, 1.84375, -0.7426758, 0.49853516, -1.2822266, -0.41479492, -0.3659668, 2.3632812, 0.6923828, -0.35864258, 3.9882812, -0.8491211, -0.093566895, 1.5791016, 1.2802734, 0.9199219, 0.5966797, 0.21228027, 0.9609375, -1.5458984, -1.6767578, 4.2421875, -0.5209961, -0.5053711, 1.5546875, 0.2849121, 3.2714844, 1.7128906, -1.2089844, 0.67578125, 0.72509766, 0.23876953, -0.36938477, -2.7285156, -1.1494141, -1.1992188, -1.6943359, -1.6337891, 1.8017578, 2.328125, 1.5839844, 0.120788574, 0.3100586, 1.2333984, 2.0546875, -0.5263672, 0.49536133, -1.8398438, 0.8457031, -0.15637207, -2.6542969, 1.5048828, 0.12731934, -0.94189453, 0.61328125, 1.4423828, -2.6347656, 1.3544922, 1.6855469, -1.703125, -2.6621094, 0.19689941, 0.43896484, 1.3886719, -3.015625, 2.4179688, 0.6425781, -1.2646484, 3.6152344, 1.5332031, 0.14453125, 0.68652344, -1.6904297, 1.7988281, -2.6386719, -1.1914062, 0.9428711, 1.0117188, -0.59716797, -1.6064453, -0.15234375, 4.8320312, -0.8261719, -2.4160156, 1.6904297, -1.3847656, 0.85058594, 2.90625, 0.77001953, -0.3251953, 0.47705078, 2.8515625, 0.16577148, 0.7036133, 2.5039062, -1.2548828, -2.234375, 0.94873047, -2.1816406, 0.1697998, 1.2685547, -1.578125, -1.2089844, -1.6279297, 1.8037109, -2.6425781, -0.06329346, 3.28125, -3.0644531, 0.12036133, -0.57373047, 1.4863281, 0.21398926, -2.0019531, 1.4541016, -0.61621094, -0.64990234, -0.3244629, 0.040039062, -0.44726562, 0.25341797, 0.2536621, -0.66259766, -0.72509766, -3.21875, -2.1054688, -1.3710938, -2.984375, -2.1328125, 0.008651733, -0.3828125, 0.044830322, 1.4863281, -3.1308594, -1.7167969, -0.2578125, -1.6230469, -0.42333984, -1.1318359, -0.13244629, 0.35986328, 0.62939453, 1.4511719, -0.8354492, -2.3964844, -0.29003906, -0.8305664, 0.5942383, -0.73779297, -0.42041016, 0.11987305, -0.6196289, 0.9238281, -0.7739258, 2.1347656, 2.1210938, -1.7333984, -0.5732422, -3.109375, 0.20666504, -3.046875, 1.4736328, 0.07232666, 2.5253906, -3.2167969, -1.5771484, -0.3474121, 0.1184082, 4.0078125, 0.96435547, 3.40625, -0.66015625, 0.8022461, 0.5131836, -1.0869141, -1.53125, 0.7006836, 1.8222656, -2.0175781, 1.8232422, -1.5761719, 0.13476562, -1.6982422, -0.34936523, -0.68896484, -0.5336914, -1.234375, -0.45507812, -1.7626953, 0.9086914, -0.8105469, 1.0048828, -0.71972656, -1.1191406, -3.2285156, -1.1347656, -1.5566406, -1.3457031, -0.68066406, 0.99365234, -1.2128906, 1.5498047, 1.6728516, -0.56152344, 0.57910156, -0.8569336, -2.7558594, 2.40625, 0.41992188, -2.4472656, 2.5390625, -2.125, -0.84472656, -2.1289062, 0.9194336, 2.484375, -0.30981445, 1.8974609, 1.7724609, 1.3623047, 0.60546875, -1.2236328, 0.30615234, -2.3867188, 0.122558594, 2.8574219, -1.953125, -1.2753906, 0.52246094, -0.11431885, -3.0078125, 0.19506836, 3.2421875, 2.4746094, 2.4082031, 1.9667969, 0.54052734, 2.1757812, -2.046875, 0.9526367, 0.7324219, 0.07104492, -0.06744385, -0.7133789, 2.1113281, -1.1816406, 2.4589844, 1.5839844, 2.25, 3.3144531, 0.064819336, 0.28125, 0.26708984, -0.8881836, 0.69921875, 1.59375, 0.5859375, 2.3476562, -1.0400391, -1.4394531, -2.2070312, 0.33618164, 0.32470703, -0.29956055, -2.6015625, 1.640625, -1.8701172, 0.6748047, 0.23144531, -0.7314453, 1.8818359, -1.1162109, -0.7714844, -0.95703125, -0.5004883, 2.2695312, -0.75439453, 0.45361328, -2.09375, -0.17785645, -0.94091797, -2.578125, 1.1298828, 3.1542969, -1.3632812, -0.76904297, -0.58984375, -1.3203125, 0.18444824, 2.5371094, -0.6176758, -0.19128418, 0.8964844, -2.7089844, 1.4267578, 1.9648438, 0.94091797, -1.1660156, -0.9682617, 0.5776367, -0.515625, 0.7841797, 2.4433594, 0.28686523, -2.8261719, -0.30419922, -3.125, -1.3955078, 0.60546875, -2.125, -0.42407227, 2.4980469, 2.4980469, 0.29516602, -0.47143555, 2.0625, -0.7993164, 0.16333008, 2.4472656, -3.5683594, 0.3154297, -3.9179688, -3.6621094, 1.0117188, -2.515625, 0.5517578, -0.27490234, 1.0800781, -0.4230957, 1.96875, -0.46240234, -1.0751953, -0.6582031, -0.38745117, -0.17321777, 0.008087158, 0.9086914, -1.5361328, 0.02407837, -0.99072266, -2.9179688, -0.39990234, 0.6411133, 1.4921875, 0.14526367, -4.3671875, 0.30249023, -1.5615234, -0.61035156, -1.1582031, -0.9316406, 2.1269531, -0.7416992, 0.16357422, -3.1523438, 1.8544922, 0.609375, -0.9223633, 0.8720703, 1.8867188, -0.3713379, -3.3359375, 1.0371094, 0.5996094, 3.3632812, -0.8183594, -1.6337891, -0.5600586, 0.5283203, 0.6357422, -1.1142578, 0.42041016, 0.8388672, -1.8808594, 0.5522461, 1.9365234, 2.5722656, 1.2275391, 0.14050293, -2.5390625, -0.2944336, 0.9213867, -1.5273438, -3.1074219, -1.421875, 0.64404297, -2.1035156, -0.107177734, -2.7246094, -0.16040039, 0.21533203, -0.9951172, -3.0878906, 2.875, 3.6601562, 1.7636719, 1.7265625, -1.5957031, 2.0859375, -1.6601562, 1.7519531, -1.5302734, 2.546875, -0.28076172, -1.3056641, 3.0898438, 1.0039062, -0.6269531, 0.44628906, 1.3007812, -1.3369141, -1.7871094, -2.2109375, 0.5107422, -1.3769531, 0.5751953, 0.9194336, 0.003622055, 2.7890625, 0.72021484, -2.0332031, 0.75878906, 0.97216797, -2.5351562, 0.4194336, 0.45996094, -0.60498047, 0.07751465, 2.5429688, 3.0253906, 1.15625, 0.19360352, -0.56640625, 2.390625, -0.28808594, 1.3476562, 2.1953125, 1.9287109, -0.55322266, -0.41186523, 1.9199219, 2.296875, 1.5966797, 3.2167969, 1.2402344, -3.0488281, 1.8007812, 0.91552734, -2.7265625, 2.1445312, 1.1845703, -0.984375, 1.6601562, 0.9692383, -3.8964844, -0.32983398, 2.1816406, -1.4404297, 1.8339844, -0.8544922, -0.97021484, 2.6328125, -0.8364258, -0.0040740967, 0.6821289, -0.009269714, 1.78125, 1.1699219, 0.3076172, -1.0810547, 2.0664062, 1.0488281, -1.4501953, -1.0576172, 2.8808594, 0.34057617, -0.8911133, -0.9970703, -0.068481445, -0.14562988, 0.18249512, 3.71875, 1.1962891, 1.8105469, 0.13317871, 2.1777344, -1.1884766, -0.18896484, -1.8730469, 3.6640625, -1.6708984, 0.16113281, 0.096069336, -3.75, -1.0166016, -2.390625, -0.8515625, -0.55126953, 1.5166016, 1.3359375, 0.070739746, 0.76464844, 0.2602539, -1.8457031, -4.0585938, 0.37475586, -0.076171875, 0.93408203, 0.6748047, 1.4492188, -1.5400391, 0.6699219, 1.3115234, 0.25708008, -1.7851562, 0.44555664, 0.0077819824, -0.11553955, -0.070373535, 0.35009766, -1.3388672, -0.4501953, 1.0927734, 1.8457031, 1.3896484, -2.8476562, 0.48461914, -0.9746094, -0.7783203, -0.6245117, 2.2441406, 1.4863281, -0.9199219, 1.0390625, 0.71728516, -0.91796875, 2.6015625, -2.6875, -1.84375, 1.8642578, -2.3359375, 1.9326172, -0.48266602, -0.49487305, 0.21130371, -1.5732422, 1.1728516, 1.9462891, 1.1259766, -2.0683594, -0.6020508, -0.25854492, -2.7167969, 0.7504883, -2.0039062, 2.3066406, 1.6630859, -1.1621094, -1.0390625, -1.3730469, -1.9492188, 1.4238281, -3.1171875, -1.8701172, -1.8525391, 1.7958984, 0.24304199, 1.1132812, -0.37963867, 1.953125, -1.2910156, -1.5927734, 0.5209961, -0.87353516, 3.6972656, 2.8105469, -0.6948242, 0.025802612, -1.203125, -0.9008789, 2.1660156, 1.1357422, -1.9941406, 0.6713867, -0.12207031, 1.421875, -1.0888672, 0.6069336, 0.859375, 0.22473145, 0.2607422, 0.44848633, 2.7675781, -0.62060547, 1.5791016, 0.9375, 0.4736328, -1.2001953, 3.8574219, 1.7451172, -1.71875, 1.9921875, -1.6591797, 0.5678711, 0.79052734, -0.73535156, -1.34375, -0.5253906, -0.69677734, -2.0332031, -1.5517578, -2.8476562, 1.0732422, 0.76708984, -2, -2.0742188, 1.3417969, -0.22692871, 2.1855469, 0.79785156, 1.3847656, -1.4345703, 1.5703125, 0.4260254, 1.0849609, 1.3828125, -3.1757812, 1.0195312, 2.3730469, -0.5644531, -0.3947754, 0.7871094, 1.2949219, 3.6445312, -0.34887695, 0.68408203, 2.9316406, 1.4775391, 2.359375, 0.9428711, 1.2666016, 0.47705078, -0.7211914, -1.2285156, 0.44604492, 0.5551758, 0.8588867, -0.4567871, 1.6835938, -1.8017578, 0.059539795, 0.27124023, -1.1318359, 0.40649414, -1.7353516, 0.09942627, 1.2070312, 2.1796875, -3.2324219, -1.71875, -1.5185547, 0.91015625, -0.0060195923, -1.0800781, 1.7929688, 0.1821289, 1.84375, -1.2802734, -0.31323242, 1.7412109, -4.546875, 1.7685547, -0.3618164, -1.4765625, -1.0654297, -1.0292969, 0.75146484, 0.46289062, -1.7314453, 1.1298828, 4.5195312, -0.067871094, 1.4550781, -3.8476562, -0.19946289, 0.9423828, 3.9589844, 0.5991211, -0.18481445, 0.59765625, -0.14038086, -4.9609375, -3.8105469, 3.2714844, 2.0234375, 0.055145264, 2.7871094, -1.4257812, 3.21875, -0.18579102, -0.30004883, -2.296875, 0.38964844, -0.29638672, -1.3359375, -2.0527344, 0.95703125, -2.0820312, -0.2685547, -0.095703125, -0.2590332, 0.36743164, 1.5263672, 2.0078125, 0.90722656, 2.0058594, 0.91015625, 0.34594727, -0.42456055, 3.3125, 0.31445312, -1.4111328, -2.1582031, 0.68066406, 1.3574219, -0.026412964, 0.33544922, -0.7973633, -0.9868164, -1.8359375, -0.04815674, 0.5444336, -1.2841797, -1, -0.10748291, 1.1201172, -3.1386719, -0.7680664, 3.0820312, 1.96875, 1.421875, 2.0273438, 1.6933594, -2.3242188, 0.17163086, -0.14343262, -0.08886719, 0.125, 0.81347656, 1.4804688, 0.98876953, -0.7758789, 1.0673828, 0.8461914, 1.2832031, -0.29736328, 0.67285156, -0.8208008, -0.80078125, -0.7524414, 1.5292969, -0.89160156, -0.87353516, 3.6933594, -0.44848633, -0.57958984, 1.7402344, 0.46923828, 0.06488037, -0.6616211, -2.6640625, -0.5800781, -0.3815918, -1.2324219, 0.97753906, 2.6582031, 0.8017578, 0.35327148, -2.015625, -2.3808594, -0.9765625, -2.8105469, 1.1376953, -2.1035156, -2.0878906, 0.02128601, 1.6083984, 2.3984375, -0.22924805, -1.1259766, -1.4667969, -0.69140625, 0.9345703, -1.0224609, 1.2421875, -0.5776367, -0.12347412, 0.34472656, 2.0351562, 1.9814453, 1.0800781, 0.7939453, 3.3867188, -0.5205078, -2.3730469, -0.36914062, 0.06744385, -0.5883789, -0.69970703, -1.0566406, 1.7910156, -0.8803711, -1.7978516, 0.25219727, -1.7519531]}, "B07JQBVK9K": {"id": "B07JQBVK9K", "original": "Brand: Techwood\nName: Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W\nDescription: Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
          picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
          by Product Liability Insurance of United States.

          - 120V 60Hz 1600Watts

          - Product dimensions: 17.9 x 11 x 14.8 inches

          - Humanization Features,Rotatable Venting System,Let Safety Be With You
          Fully electric system, 1600W power operated and a variable temperature controller give you a
          happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
          happy hours come with safety assurance for you and your family, friends. and apartment
          approved,your landlord will love this grill just as much as you do.

          - Adjustable Temperature Control
          Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
          to get the best results on any kind of food.

          - 15+ servings,Easy To Use and Install and Maintain Tidy

          The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
          cookies, potatoes and many other delicious foods and complete meals.

          - Foldable warming grill : keep the food in temperature for good taste.

          \nFeatures: \ud83c\udf56\u3010 FAST-HEATING\u3011 Portable electric grill\u2019s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere.\n\ud83c\udf56\u3010HIGH CAPACITY\u3011 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together!\n\ud83c\udf56\u3010APARTMENT-APPROVED\u3011Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can\u2019t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean.\n\ud83c\udf56\u3010TEMPERATURE CONTROL\u3011The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean\n\ud83c\udf56\u3010Get Yours Now, Risk-Free\u3011Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.\n", "embedding": [-3.1054688, 1.0283203, 1.6181641, 0.04449463, 0.90966797, -0.62597656, 1.9873047, -0.34570312, -2.4882812, 1.5693359, 0.84375, 1.7929688, -0.81152344, -2.8730469, -1.1914062, 0.4711914, 1.0185547, 0.094177246, 0.5185547, -0.703125, 0.49780273, -0.016342163, -0.3503418, -2.296875, -0.14428711, -1.3896484, 2.7519531, -1.9824219, 0.2055664, -1.1162109, 0.99365234, -0.20788574, 0.19177246, 2.0957031, -1.7177734, 0.19128418, -1.2373047, 2.7089844, 0.43774414, 0.111206055, -0.95654297, -2.9375, 1.921875, 2.5234375, -4.015625, -0.23815918, -0.30444336, 3.1425781, 0.23669434, -0.7207031, 2.6074219, 0.82666016, 0.9160156, 0.07763672, -1.4785156, -0.14331055, -1.1835938, -3.5605469, 1.1279297, -1.5585938, 2.4667969, -2.21875, 0.7998047, 2.4589844, -1.4482422, -1.890625, 0.105407715, -0.52685547, -0.72998047, -0.98876953, 3.1503906, -1.3876953, -0.9160156, 1.390625, -1.0234375, -1.0869141, -2.7890625, 2.015625, 1.3496094, -0.52734375, -2.3652344, 2.0019531, 1.2529297, -2.2929688, 0.37451172, 0.89941406, -2.4824219, 0.107055664, 2.1699219, 2.328125, 1.4355469, 1.0097656, -1.7753906, -3.9433594, 2.0722656, -0.24743652, -0.79589844, -1.2109375, -0.9667969, 3.765625, 1.0039062, 0.45288086, -1.0595703, 0.22277832, -3.0195312, -1.5830078, 1.7763672, 0.72998047, -1.2802734, 0.54345703, -1.4648438, 1.6113281, 0.26489258, 1.0625, 2.2109375, -0.2163086, -0.25170898, 1.0488281, 3.2480469, 3.171875, 3.6699219, 0.41308594, 1.5107422, -2.0742188, -0.37109375, -0.7368164, 1.0107422, 2.2773438, 3.1875, -1.4306641, -1.2978516, -0.63720703, -0.105041504, 1.5644531, -1.9609375, -2.6347656, -1.2597656, -0.90234375, -2.4960938, -0.15332031, -1.6171875, 1.2236328, 2.3925781, -0.27026367, -2.3457031, -0.47192383, 0.19104004, -0.018478394, -1.2949219, -1.5068359, -0.16430664, -1.8085938, -1.3251953, -2.96875, 0.18408203, -0.42382812, -1.4277344, 0.30419922, 2.0859375, -0.8911133, 0.99658203, -1.9267578, -2.1054688, 0.13085938, -0.18041992, -1.5146484, -0.38183594, 2.2402344, 0.1616211, 1.8310547, 0.73876953, -0.6972656, 0.7763672, -1.1201172, 1.7919922, -1.1953125, -0.79003906, 3.3945312, 0.94873047, -1.2851562, 2.2460938, -0.7792969, 0.74853516, 0.8251953, -0.69189453, -0.68066406, 1.0107422, 0.13085938, 0.21728516, -2.6601562, 1.7373047, 0.3408203, 0.0748291, -1.1416016, 1.6972656, -0.2364502, -0.19604492, -1.9824219, 2.1679688, 0.67822266, 1.1972656, 1.2392578, -0.6113281, -1.671875, -1.5693359, -2.3515625, -3.0332031, 0.008636475, -1.7597656, 1.2724609, -0.5703125, -1.09375, 0.6435547, -0.98583984, 0.9638672, -3.4746094, 2.2714844, -1.5429688, 0.8984375, 2.9472656, -0.65966797, 0.008140564, -0.05770874, 3.4960938, -1.1689453, -0.06951904, -1.1943359, -0.48657227, -0.890625, -0.3527832, 1.1582031, -0.4482422, 1.9453125, 0.3017578, -1.1347656, 1.8710938, 1.7382812, -0.047790527, -0.60498047, 1.1347656, 0.9682617, -2.3652344, 0.5673828, -0.45581055, -1.8066406, -0.93359375, -4.4140625, 4.2460938, 0.3972168, -1.2148438, -1.3203125, 0.27319336, 1.2148438, 2.4492188, 0.52197266, 0.7060547, -0.6425781, 0.41430664, -3.9453125, -1.9609375, -0.25073242, 1.5976562, -0.44360352, 0.6303711, -0.8364258, -1.0488281, 4.5742188, 0.14208984, -2.6953125, -2.1289062, 0.73583984, 0.43188477, 0.4970703, 1.2636719, 1.4931641, -1.0292969, -0.76660156, 0.20263672, -0.2548828, -0.2479248, 0.61816406, 1.2480469, 3.4746094, -0.77685547, -0.5986328, -1.8476562, -0.37890625, -0.29858398, 1.8193359, 0.15478516, 4.6445312, 0.38867188, -3.7597656, 3.6875, -4.9335938, 0.63183594, 1.3271484, -1.3945312, 0.41235352, 0.7402344, 2.4140625, 1.0019531, -1.1347656, -0.37426758, -2.8925781, -0.5908203, 0.016540527, -2.4492188, 0.45654297, 1.6015625, -1.1103516, -2.3808594, -1.7246094, -0.09173584, -3.5371094, 0.0309906, 0.85009766, -1.859375, 1.5947266, 2.0058594, -0.6386719, 1.2695312, -0.3791504, -2.2792969, -2.4570312, -0.30615234, 0.33398438, -0.6333008, -0.24377441, -3.3417969, 0.20593262, -1.5205078, 1.7246094, -1.7148438, -1.5517578, -1.9892578, -2.1992188, -3.0917969, -0.8925781, 0.89746094, -1.7714844, 0.8178711, -1.4355469, -1.9306641, -1.0009766, -0.37280273, -0.9082031, 0.24572754, -0.20251465, 2.7636719, 0.68066406, 0.091918945, 2.6894531, -4.375, -0.80322266, 0.8334961, 1.0703125, 0.36010742, -3.1503906, 0.18725586, -1.3642578, 1.1269531, -0.6113281, 0.2154541, 1.2724609, -1.0585938, -1.2070312, -3.2421875, -0.13476562, -0.8828125, -0.9003906, 0.75878906, -0.40820312, -1.6503906, -1.0595703, -1.0068359, 0.21655273, 3.2382812, 1.0751953, 3.6621094, -0.29345703, 1.2753906, 0.0090789795, 0.54785156, -1.1298828, -2.7304688, -0.8569336, -1.8955078, -0.57470703, -1.7607422, 0.76123047, -1.046875, -0.3708496, -1.4257812, 1.6396484, 0.14855957, -0.15014648, -1.9033203, -0.24072266, -0.13317871, -1.0742188, -0.96728516, -0.1685791, -2.875, 0.48120117, -1.5253906, -1.53125, 0.78564453, 1.5019531, 0.09509277, 3.5585938, 1.0166016, -0.34960938, -0.53515625, 1.8242188, -2.3222656, 3.5859375, -0.09222412, -2.0527344, -0.17565918, 0.5786133, -0.9394531, -1.1123047, 0.7104492, 2.765625, 0.80859375, 1.4824219, -0.27416992, -0.13452148, 1.7001953, 2.4589844, 0.1796875, -0.48583984, 0.0647583, 2.4296875, -3.2441406, 0.06359863, 1.1191406, 1.9492188, 1.1386719, -0.73828125, 1.8417969, 2.0078125, 1.8525391, 2.5097656, 2.5917969, 0.37768555, -1.2470703, 1.5947266, 0.12371826, 0.3984375, 0.47680664, -0.7446289, 0.54296875, 0.40698242, 2.6035156, 1.7382812, 0.30395508, 1.3095703, 2.4785156, 0.86572266, -1.3056641, -0.5703125, 0.5126953, 1.3105469, 1.3203125, 1.9970703, -0.20214844, -3.0136719, -0.12841797, 1.4140625, -0.1352539, 0.63916016, -1.5097656, 3.7324219, -0.33520508, 0.79785156, -0.2043457, 0.80566406, -1.0380859, -2.6386719, 1.2490234, -2.3808594, -1.5351562, 0.82177734, -2.0644531, -2.8574219, -2.4375, 1.9072266, 0.46411133, -1.1376953, 0.8925781, 3.2480469, 0.6953125, -1.015625, 0.11029053, 1.7363281, 0.45654297, 1.3964844, -1.4453125, -1.1582031, 0.5546875, -2.0976562, 1.6396484, 1.0078125, 1.1523438, -1.4199219, 0.74365234, -1.3759766, -0.09106445, 1.8564453, 1.2587891, -1.5214844, -1.3964844, 0.5546875, -2.6914062, -1.3320312, 0.234375, -2.703125, -0.08880615, 1.6367188, 0.5029297, 1.2021484, -1.4160156, 1.0166016, -2.1367188, -2.5644531, 2.0683594, -2.2207031, -0.25585938, -3.0976562, -4.8398438, 1.0458984, -0.1907959, -0.47875977, 2.6914062, 0.41381836, 1.0507812, 3.0585938, 0.65771484, -0.2536621, -0.49389648, -3.0566406, -0.2019043, -2.984375, 1.09375, 0.6796875, 0.125, -2.0976562, -1.8203125, -0.38330078, 1.3515625, 3.2832031, 2.5996094, -0.93408203, 1.4707031, -3.2441406, -0.9814453, -0.95654297, -0.48461914, 0.6479492, 0.31347656, 0.19506836, 1.1201172, -0.50878906, 1.5839844, -0.5419922, 0.6894531, 0.66259766, -1.8535156, -3.8886719, -0.2746582, 2.9003906, 2.0761719, -0.61328125, -1.9121094, -2.0410156, 0.8989258, -1.9238281, -0.71533203, -1.2324219, -0.44018555, -2.8125, 1.3349609, 1.3271484, 0.9086914, 1.4101562, 0.42138672, -3.1835938, -1.4873047, 0.010505676, -2.6523438, -3.1640625, -1.03125, -0.38867188, -1.0283203, -1.4169922, -0.72998047, -1.953125, -1.2558594, -1.9052734, -0.9892578, 3.6992188, 3.2929688, 3.4726562, 5.4570312, -1.4882812, -1.0410156, 2.171875, -1.4160156, -0.4597168, 0.34814453, 0.80810547, -1.4355469, 0.6542969, 1.9365234, -2.2910156, -0.33276367, -0.7763672, 0.87060547, -0.1619873, -2.1425781, 1.1386719, -0.15246582, -0.39208984, 1.5136719, -2.1875, 2.1308594, -1.6279297, 0.6142578, -0.10986328, 1.015625, -1.1357422, -0.055847168, -0.16345215, 0.77490234, 1.1933594, 1.8935547, 1.1884766, -1.0849609, -0.024795532, 1.2050781, 3.2324219, -0.5708008, -0.3173828, 0.5004883, -1.0234375, 2.328125, -0.46655273, 2.4199219, 1.4814453, 0.50683594, 2.8105469, -0.5390625, -1.7246094, 1.3486328, 0.2548828, -1.5791016, 1.2148438, 1.4814453, -1.1835938, 2.2089844, -0.26367188, -2.9824219, -1.3583984, 1.1572266, -1.0371094, 0.6508789, -1.234375, -1.3544922, 1.4511719, -1.8886719, 0.6826172, -0.7241211, -1.2197266, 2.2558594, -0.39160156, -0.4128418, -0.6489258, 1.1005859, 2.8984375, -2.4941406, -1.6708984, 2.8378906, 0.6191406, 1.6230469, 0.8989258, -0.07513428, -2.1777344, -2.9003906, 2.2207031, 0.12536621, 2.921875, 0.07519531, 0.6660156, -0.9946289, 2.125, -4.4765625, 4.4453125, -3.5253906, -1.0126953, 2.4414062, -2.7871094, 1.4658203, -2.2597656, 0.09057617, 0.97314453, 2.0683594, 1.5742188, -2.0058594, -0.82958984, 0.18786621, -1.8740234, -3.3242188, -1.6601562, 0.2232666, -1.0371094, -1.0029297, 2.7050781, -2.8671875, -2.1152344, 1.8662109, -0.24853516, -0.30737305, -1.1152344, -0.5566406, -2.0761719, -1.1064453, 0.90722656, -0.17102051, 1.7021484, 3.4160156, 0.9682617, 0.072143555, -4.7851562, 0.5566406, 0.16674805, -0.49243164, 1.1630859, 0.9526367, 1.2646484, 0.55908203, 1.6455078, 1.2470703, -1.1738281, 3.8925781, -2.3925781, -0.3881836, 1.7099609, 0.31152344, 0.28271484, -2.6425781, -1.0791016, 0.68603516, -2.6972656, 1.8076172, 0.6669922, -1.6044922, 0.3647461, -0.4099121, 0.96435547, -1.4414062, 0.57958984, 1.2695312, 1.8105469, 0.25, -0.111328125, -0.034729004, -2.8535156, -2.7578125, -1.3007812, -1.1552734, -0.010169983, -3.1875, -0.28076172, 2.9042969, 0.21105957, 1.2294922, 0.29541016, 0.171875, -2.0175781, -0.5805664, -0.29541016, 1.9189453, 1.2851562, -2.6132812, -1.1914062, -0.20678711, 0.123291016, -0.61816406, -0.32958984, -1.3828125, -0.5493164, -1.7451172, -0.7470703, 2.0390625, 2.7070312, 2.5, -0.42333984, 1.0634766, 0.42529297, 1.0185547, -1.9511719, 0.3256836, -0.8261719, 3.5039062, 0.92626953, 4.0664062, 0.20141602, -1.2568359, 1.5703125, -0.9892578, 2.6992188, -0.77246094, -4.7617188, 1.2099609, -0.093566895, -1.0292969, -2.7324219, -0.93603516, -3.4648438, 1.3632812, 1.4130859, 0.84375, -2.4296875, 3.8496094, 0.5566406, 4.3164062, 2.2773438, 0.29370117, 1.2724609, 1.7285156, -0.26586914, 0.58691406, 2.6386719, -1.3789062, 0.45751953, -0.4506836, -1.3056641, -1.9648438, 2.109375, -0.9614258, 2.2851562, 1.6445312, 0.77490234, 2.8613281, 1.8349609, 1.9746094, 0.3005371, 0.4345703, 2.3183594, 0.2619629, 0.48876953, 3.46875, 3.0371094, -0.3215332, -1.1708984, 2.1855469, 0.43432617, 0.25463867, -0.049743652, 1.15625, 0.5722656, -4.8125, 2.2324219, 0.77734375, 1.3017578, -1.4736328, -0.060028076, -2.1855469, -0.43725586, 0.2265625, 1.2324219, 2.3984375, 0.69970703, 0.3425293, 0.828125, 0.6142578, -0.9042969, -3.8085938, 1.2666016, 0.6948242, 0.546875, -0.6298828, 1.84375, 1.0205078, 1.2216797, -0.9902344, 0.5649414, 2.328125, 0.21154785, 3.1953125, -0.9863281, 0.21643066, 0.42211914, 2.2558594, -0.53271484, -0.095947266, -0.49609375, -1.3525391, -2.9082031, -2.6230469, 2.328125, -0.5996094, 2.4335938, 1.5888672, -2.4550781, 0.79345703, 1.6269531, 1.7949219, -1.6328125, 1.6201172, -1.7060547, -0.7216797, -0.38110352, -0.46411133, 1.3955078, 3.1582031, -0.5083008, -0.5517578, 2.796875, 1.0957031, 1.8300781, 0.7392578, -0.3095703, -0.88964844, -0.5493164, -0.34448242, 0.62841797, 2.8828125, -1.0917969, 0.39770508, 0.89941406, 1.1142578, -0.12249756, 0.8305664, -2.4042969, -0.7998047, -0.5864258, -1.8300781, -0.7988281, 0.34350586, -3.0195312, -0.8496094, 0.6933594, -0.56689453, -2.8359375, 1.6357422, 1.5185547, 2.2734375, 1.0664062, -0.671875, -1.5136719, 0.99121094, 0.6586914, 0.3972168, 0.19238281, 2.1328125, 0.7338867, -1.3896484, -1.1396484, 0.8989258, 1.8486328, 1.6542969, 0.7753906, 0.76904297, 1.0693359, 0.30151367, 2.5488281, 0.39160156, -1.6152344, -1.5585938, 0.5908203, 0.13720703, 1.2607422, 3.6308594, 0.73339844, -1.4394531, -1.9726562, -3.2929688, 1.0283203, 0.9785156, -1.9824219, 1.2695312, 3.1816406, 2.2207031, -1.53125, -3.8242188, -1.9775391, -0.7246094, -0.4477539, 2.8105469, -0.37158203, -1.0595703, 0.5566406, -1.953125, 1.7949219, 1.2021484, -0.92578125, 0.9248047, 0.2836914, 0.39575195, 0.6020508, 1.9619141, 2.0449219, 1.2265625, -0.0736084, 2.6132812, 1.2236328, -0.21179199, 1.9511719, 2.3007812, 1.2128906, -3.6210938, 1.2314453, -0.2866211, 1.921875, 1.3476562, 0.64404297, 0.89746094, -0.44433594, 0.4116211, -2.5644531, -3.3613281]}, "B086Z452V9": {"id": "B086Z452V9", "original": "Brand: DuroMax\nName: DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "embedding": [-0.5126953, -0.014587402, 0.9790039, 0.46044922, -2.03125, 0.2286377, 2.5644531, 0.31079102, -1.5859375, 1.1376953, -0.067871094, 0.6010742, 0.58984375, -0.6948242, 0.5498047, 0.22570801, 0.03152466, 1.8330078, 0.16796875, -0.24121094, 2.2832031, 0.45239258, 0.88134766, 1.3310547, 0.41748047, -0.23510742, 2.7695312, -2.7773438, -0.97802734, 0.4963379, 1.1621094, 0.26049805, -0.2130127, 1.1699219, -1.8476562, 1.7929688, 0.17358398, 1.2597656, -2.8574219, -0.31323242, -1.6777344, 0.29907227, 2.0917969, -0.6982422, -1.9238281, -3.2226562, 0.20983887, 0.3708496, 0.84228516, 1.4697266, 2.0488281, 2.3730469, 0.47583008, -0.46801758, 0.6386719, 3.3867188, 0.8544922, -1.7880859, 3.7929688, 2.9023438, 0.030044556, 0.15356445, -1.7880859, 0.25390625, -1.7705078, -0.58447266, 0.5620117, 0.38183594, -0.8125, -2.7890625, 2.5566406, 1.1933594, -0.6479492, -0.91064453, -0.83154297, 1.1796875, -3.390625, 2.0605469, 2.6230469, 1.3984375, -1.1933594, 0.9472656, 1.7441406, -1.4023438, 0.08514404, -0.29541016, -0.51464844, -0.6738281, -0.6582031, 2.453125, -4.1640625, 2.0898438, -3.2910156, -3.9003906, 2.7714844, 0.36914062, -1.0175781, 1.2080078, 1.7880859, 2.7324219, 0.20715332, 1.3720703, -0.15075684, 0.734375, -0.9428711, 0.09899902, 1.4082031, 0.35229492, -2.0019531, 0.049865723, -1.6474609, 2.1796875, 0.5126953, -0.4819336, -1.0009766, -1.3408203, 1.8251953, -1.1064453, 5.1328125, -0.11456299, 2.8105469, -2.3417969, 1.6367188, -0.40405273, 2.3203125, 0.6977539, 1.3369141, 3.1171875, 3.0800781, 0.4580078, 1.1035156, -0.09057617, 1.3691406, -0.8935547, -0.18322754, -1.9482422, 0.1932373, -2.5644531, -3.2050781, -0.9633789, -1.9121094, -1.1728516, 1.6279297, -1.1210938, -3.6132812, -1.3623047, -1.5712891, -1.1699219, 0.36206055, -1.4003906, 2.3203125, -3.4589844, 0.23596191, -2.7460938, 1.28125, 0.36376953, -0.40698242, -0.4873047, 2.2988281, 0.7158203, 0.09918213, 0.2644043, -1.4755859, -0.47338867, 0.68652344, -3.8730469, 0.6464844, 1.1171875, -0.29614258, -1.0458984, -2.4003906, -2.6640625, -0.2939453, -2.3671875, 1.1542969, -3.0332031, -1.0986328, 0.20483398, 1.2333984, -0.85302734, -1.0058594, 1.7705078, -0.9394531, -0.012260437, 0.66015625, -0.33691406, 2.0957031, -0.5205078, -0.52783203, -2.2421875, -1.4609375, 0.8613281, -1.3837891, 1.0712891, 1.6308594, -2.609375, -1.4970703, -1.4785156, 4.0898438, -0.89160156, 0.59521484, -1.5351562, 0.24377441, -1.8574219, -1.5166016, -3.3710938, 0.6821289, -1.6689453, 0.7036133, -1.6806641, 0.79296875, 0.38598633, 2.6035156, -1.8720703, -2.2382812, -2.6210938, -1.8164062, 0.4736328, -1.7412109, 0.7260742, 0.32714844, -0.40405273, 2.296875, -1.3925781, -1.2050781, 2.2324219, 0.43554688, -0.049835205, -2.8886719, -3.1230469, 0.58251953, 1.4277344, 0.099121094, -1.8720703, -0.52734375, 1.0449219, -1.2597656, 1.0224609, 0.73095703, 0.22875977, 1.2011719, 1.6621094, -0.75390625, 1.5654297, 2.0917969, -0.94921875, -0.49291992, 2.3710938, 0.5151367, 0.3010254, -0.37719727, -0.7241211, 0.30126953, -1.0771484, -0.046539307, 0.028579712, 0.64501953, -0.39648438, 0.31884766, -2.3671875, 0.60253906, 0.55029297, -0.35717773, -0.052215576, -1.7929688, -0.54833984, 2.0996094, -0.34057617, -1.2216797, 0.50878906, 2.8125, 2.2089844, -0.095825195, 2.375, 0.94091797, 1.7460938, 0.30810547, 2.5253906, 2.203125, 2.828125, 0.53759766, -0.94433594, -1.0136719, -2.4179688, 0.33032227, -0.953125, 0.17419434, 0.93896484, -1.4140625, -0.6088867, 1.1259766, -2.2851562, -5.3671875, 0.9926758, -0.46069336, 4.8007812, 2.3417969, -0.1694336, 1.28125, -0.2697754, 0.025161743, 0.8798828, -1.5625, 2.671875, -0.02973938, 0.09552002, -0.11450195, -2.5488281, 0.67089844, 0.7685547, 1.2089844, -0.84716797, 0.5097656, 0.46606445, -1.7050781, -0.61328125, 2.5839844, -2.1835938, 1.8310547, 1.0224609, -0.083496094, 1.1689453, -0.35375977, -1.4892578, -0.14770508, -1.2675781, 2.1210938, -1.1025391, 0.2854004, -1.5039062, -1.7275391, -0.85498047, 0.65625, -0.35107422, 0.2121582, -0.16259766, -1.7148438, -1.8046875, 1.3818359, -0.41601562, 0.98291016, -0.3540039, 0.45996094, -1.3857422, 0.2932129, -2.2285156, -0.8833008, -0.92529297, -1.8066406, -1.5205078, 2.4257812, 2.4804688, 1.0341797, -0.71484375, -2.0097656, -0.06311035, -0.4724121, 3.1035156, -1.6259766, 1.5537109, -0.6357422, 0.63134766, 0.86083984, 0.027862549, 0.8354492, -3.4511719, -0.006412506, -3.0820312, 2.9335938, 0.40673828, 0.86865234, -0.5761719, 0.6777344, -0.15966797, -1.2998047, 1.9404297, -0.11828613, 1.1845703, -1.4296875, 0.9501953, 1.4550781, -3.4296875, 1.7910156, -0.0005726814, -1.5810547, -0.11895752, 0.98876953, -1.4707031, 0.13696289, -3.0214844, 1.8955078, 1.8466797, -1.8193359, 1.5087891, 0.19067383, -0.6489258, 0.5058594, -1.8125, 2.2558594, 2.796875, 0.69140625, -0.88134766, -1.6982422, -0.26049805, -0.69433594, -0.16320801, -2.03125, -1.4052734, -0.31762695, 2.8183594, 0.38891602, 1.4804688, -1.3886719, -0.8022461, 1.4677734, -3.0800781, 1.2158203, 0.9848633, -0.38134766, 1.5771484, -1.3867188, 0.066467285, -2.1757812, -0.65527344, 4.8046875, -0.73535156, 3.109375, 0.39013672, 0.40576172, -0.9433594, 2.0019531, -0.39819336, -1.8251953, -2.1699219, 3.3554688, -1.0283203, -0.2409668, -0.11602783, 0.40454102, -1.1416016, -0.9082031, 3.2070312, 1.0341797, 3.8046875, 1.2001953, -1.9501953, 2.0488281, 0.59814453, 0.92578125, 0.61621094, -1.6074219, 0.12670898, -1.9589844, -1.2421875, -0.37280273, 1.5205078, 1.1455078, -0.20935059, 1.0117188, 1.4785156, -0.32861328, 0.7783203, -0.05682373, 0.88183594, -1.3349609, 3.171875, 3.7441406, -1.1943359, 2.5214844, -1.9873047, -0.16687012, 1.7929688, -0.7919922, 0.69677734, 3.6445312, 0.35131836, 0.6479492, -0.07598877, -0.80126953, -0.039611816, -1.4414062, -0.96435547, -0.70703125, -0.7060547, 1.1064453, -1.8066406, -0.38378906, -1.9091797, -0.32006836, -1.5097656, 1.2402344, -0.47094727, -0.06225586, 0.35327148, -0.8232422, -1.3847656, -0.20532227, -1.1621094, 0.98828125, 1.9580078, -0.08917236, 0.95996094, -1.5283203, 1.6103516, 0.8935547, -0.14367676, -1.0273438, -0.63623047, -2.3125, -0.8071289, -0.4638672, 0.07110596, 0.77734375, -1.8320312, 1.5214844, 1.1660156, -0.088256836, -0.23278809, 0.62939453, 0.8955078, 1.5419922, -2.1855469, 1.2626953, 0.15942383, 1.5761719, 0.14135742, 2.0097656, 3.0742188, -1.25, -0.828125, -0.9355469, -1.6962891, 1.0341797, -1.2392578, 0.2619629, 4.5, 0.30810547, 0.59716797, 0.20471191, 0.23046875, -3.1875, -1.4814453, -0.33422852, 1.4619141, -2.9628906, -2.6542969, 0.4736328, -0.050842285, -0.98095703, 0.97216797, -2.6542969, 0.20080566, -0.3154297, 1.0507812, 0.7841797, 2.703125, -0.91503906, -0.82910156, -0.45263672, -0.10491943, 2.3671875, -0.2421875, -0.09790039, -2.6835938, 0.9213867, -0.49291992, -1.0908203, 1.2724609, 3.5546875, -0.34179688, 0.20263672, 1.4511719, 1.1074219, 1.0136719, 0.40600586, -2.4335938, -1.2050781, 0.16625977, 2.0429688, -2.7695312, -0.78027344, 1.8320312, -2.3886719, 0.100097656, -0.69677734, 0.40698242, 1.2519531, 3.4804688, -0.46044922, 2.1308594, 1.8652344, -3.2988281, 0.18457031, -0.6020508, 0.66064453, -0.87353516, -1.9726562, -1.3867188, -0.3227539, 0.8798828, -0.63671875, -1.2412109, 1.4228516, 0.5722656, 0.7553711, 0.15356445, 0.52978516, -0.8852539, -0.08770752, 2.9570312, -0.43701172, 0.1427002, 0.21777344, 0.9394531, -0.7607422, 1.9726562, -1.3212891, -0.39404297, 1.0205078, -1.4765625, -2.1640625, -1.0068359, -0.97558594, -1.7792969, -0.9091797, 0.15734863, 0.21362305, 1.6933594, -0.8886719, 1.1582031, 1.4902344, 0.42993164, -2.4589844, 0.6738281, 1.2851562, 1.3574219, 1.3505859, -1.2890625, 3.6875, 0.045684814, 0.10620117, 1.8554688, 1.7119141, -1.7177734, 0.23571777, 1.3935547, -0.49829102, -0.9550781, 1.8310547, 0.67089844, 0.45361328, 0.6357422, -1.15625, 0.89941406, 0.12023926, 3.5546875, 0.3779297, -0.66064453, -1.2324219, 0.95996094, -0.43139648, -0.040283203, -0.22546387, -0.23852539, -0.03967285, 1.3134766, -0.81152344, 0.35620117, 0.3095703, -0.3947754, -2.1054688, -2.078125, -0.59033203, 0.28710938, -1.0253906, 0.4951172, -1.1367188, 0.41308594, -0.12976074, 1.2568359, 0.7001953, -1.9033203, -0.019012451, 0.82958984, 0.6411133, 0.29956055, -0.07891846, 1.1005859, -5.078125, -0.23962402, 0.71875, -0.23791504, 1.3789062, 2.4921875, -2.1582031, -1.7050781, -3.3105469, 0.16040039, 1.4482422, -1.0595703, -1.5039062, 0.70996094, -1.6025391, 1.4355469, 1.0351562, -2.5625, -1.4892578, 1.6660156, 0.1697998, -0.15722656, -0.3984375, -0.4267578, -2.1152344, -4.2148438, -2.3515625, 1.4384766, -0.57177734, 0.17480469, 0.8330078, -3.2753906, 1.1884766, 1.0732422, 2.0625, -2.1171875, 1.3535156, -1.2558594, 1.6835938, -0.80322266, -0.43823242, -1.3466797, 0.17028809, 1.1943359, -1.3193359, 2.2832031, -3.3945312, -3.3046875, -1.8457031, 2.0058594, -0.9111328, 0.8378906, -0.72021484, 1.3359375, 2.7890625, -0.17932129, -0.40356445, 0.55615234, -1.4482422, -0.60839844, -0.20703125, -1.9853516, -0.62597656, 1.9833984, 0.19042969, 1.3164062, 2.1660156, 2.9824219, 0.45581055, -0.47070312, -2.9023438, 1.1025391, 0.26391602, -0.0814209, -1.0595703, 2.0058594, 2.0761719, -2.640625, -0.08026123, -2.0800781, -0.3088379, -1.0419922, -0.2927246, -1.1240234, -0.24450684, 0.3725586, 0.4921875, 0.099243164, 1.0302734, -0.1784668, -0.10418701, -0.9448242, -0.42041016, -0.031051636, -1.8349609, 2.5859375, 1.9814453, -0.31811523, -3.7519531, 0.5644531, 1.0175781, -0.11566162, 1.9101562, -0.3540039, -0.18395996, -2.6757812, -1.8291016, -1.3115234, 1.1943359, -0.00856781, 1.1318359, -0.38916016, 0.54052734, 0.7626953, 0.59033203, -0.5810547, 1.8349609, -1.1171875, -0.97753906, 0.3774414, 2.3183594, -2.1210938, 1.0341797, -1.1972656, 0.66748047, 0.86328125, -3.3476562, 1.1367188, -1.0419922, -1.3291016, 0.007659912, 0.3955078, 0.054992676, 0.23730469, -0.4091797, -0.58496094, 0.02671814, 2.3457031, -1.7695312, -1.9150391, 2.2890625, -0.94140625, -2.3378906, 1.6455078, -1.9550781, 0.097595215, 2.2851562, -2.8964844, 2.3046875, -0.19042969, 1.2539062, -0.9716797, -0.44628906, -2.3144531, 1.3916016, 0.9008789, 0.90283203, 1.3330078, 1.9794922, -0.23608398, 0.6533203, 0.13208008, -0.24182129, -0.1550293, 1.6025391, 0.83447266, -0.5214844, 1.9384766, -1.6787109, 0.25561523, -0.33325195, -0.703125, -2.3476562, 0.29760742, 2.9453125, -3.2539062, 1.4833984, 0.5239258, 1.3085938, -2.8613281, 0.0030345917, -0.16442871, 1.0078125, 0.16564941, 1.1816406, 2.4433594, 0.35180664, -0.6875, 1.5195312, -2.515625, 0.10662842, -0.54052734, -0.43286133, 0.47924805, 0.40893555, 1.8398438, -1.2822266, -1.9082031, 1.4746094, 1.5917969, 1.8359375, 0.49414062, -0.078308105, 0.94921875, -2.9140625, 1.7558594, 0.118652344, 4.671875, 1.8359375, 0.34472656, 2.046875, -0.12915039, -0.7441406, -2.328125, 0.57421875, 0.80566406, 0.2290039, 0.07318115, -3.4707031, 0.47460938, -2.1875, 2.1015625, -2.4960938, 1.5185547, -0.44384766, -1.0078125, 0.8955078, 1.5107422, 0.3088379, 2.8613281, 0.66308594, -0.55566406, 2.0019531, 1.9609375, 0.55908203, -0.57373047, 1.2255859, 0.65625, 1.3007812, -0.12384033, 0.33740234, 0.24841309, -1.2001953, -1.7851562, -0.34936523, 2.078125, -0.28173828, 0.6044922, -0.7416992, 2.5507812, -0.5571289, -1.8691406, -1.4160156, 0.05090332, 0.13000488, 0.25219727, -1.90625, 0.86621094, 1.9541016, 1.7421875, 3.7382812, -1.5537109, -1.6162109, 0.57910156, 0.44213867, 1.0449219, 0.59277344, -0.42114258, -1.4667969, -0.8886719, 0.15722656, -2.0332031, 1.3544922, 0.9394531, 0.33251953, -1.0097656, -2.5957031, -3.0546875, 0.21264648, -1.3369141, 0.46142578, 0.9238281, -1.6748047, 2.5820312, 1.6660156, -2.2617188, 2.5410156, 3.2519531, -1.2314453, 2.3574219, -1.1396484, -1.9775391, -1.2324219, -3.2890625, 0.2052002, 1.2519531, 0.51953125, -0.13122559, 1.4501953, -3.3242188, -1.9550781, -2.5351562, -1.5, 0.99658203, -1.5429688, 0.5283203, 1.1972656, 0.15576172, 1.2099609, -0.41601562, -0.7963867, -0.25976562, -0.58984375, 1.2314453, 0.59765625, -0.8666992, 1.8085938, 2.0957031, 0.18017578, -0.1505127, 1.2382812, -0.42211914, 0.6010742, -0.5566406, -2.6582031, -1.6005859, 0.017684937, 0.80126953, -1.8828125, 1.3574219, 1.5791016, 0.39672852, 0.7480469, -0.18713379, -1.5566406, -3.0625]}, "B00TG8GLCS": {"id": "B00TG8GLCS", "original": "Brand: Raypak\nName: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater\nDescription: Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater's unique \"pagoda design\" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool's surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.\nFeatures: Cupro-nickel gas pool and spa heater\nPagoda design ensures heater stays active in harsh weather conditions\nMicroprocessor controlled thermostat\nDigital display\nOn-board self diagnostics\n", "embedding": [-1.8320312, 1.0292969, 2.3574219, 0.44970703, 1.4755859, 0.95654297, 2.4316406, -1.4853516, -0.2854004, 2.1152344, 0.6582031, 2.1367188, 1.8828125, 1.5810547, 1.2792969, -1.8955078, 0.077819824, 0.10144043, 1.0693359, 1.2470703, -0.6411133, 0.26171875, 1.8867188, -0.64160156, 0.32373047, 1.3603516, 2.1601562, -1.5097656, -1.7148438, -0.7324219, -0.5107422, 0.56103516, -1.3320312, 0.23205566, -1.0322266, -2.3359375, -0.9663086, 1.9335938, -2.8613281, -1.8134766, -2.1660156, -0.29052734, -1.2119141, -0.5751953, -0.45263672, -0.9326172, -0.22741699, 0.11956787, 0.12756348, -0.49975586, 1.2412109, -1.3417969, -1.6699219, 1.0439453, -0.41918945, -0.5185547, 0.2529297, -2.5878906, 1.8417969, -0.08148193, -1.3320312, -1.7138672, -2.4511719, 2.0898438, -0.16003418, -0.71484375, -2.1015625, -1.8476562, -2.1210938, 1.3164062, 1.2597656, 2.0566406, -1.1123047, 0.87353516, -0.6040039, -0.7680664, -3.1035156, -0.81689453, 3.3828125, 1.1787109, -1.6660156, -0.453125, 0.4621582, -2.5722656, -3.5078125, 0.8066406, -0.5527344, 0.0791626, 0.13671875, 2.6992188, -2.3613281, 1.640625, 0.19238281, -3, 0.10144043, -2.0175781, -0.095581055, 1.9707031, 1.0664062, 2.8574219, -1.015625, -1.3496094, 0.31982422, -0.47973633, -1.2314453, -0.8544922, 1.0185547, -0.39111328, -2.0761719, 0.7182617, -0.37036133, 0.8876953, 3.125, -2.5742188, -2.6484375, -0.22058105, 0.35229492, 2.5625, 4.8554688, 1.3974609, 1.2451172, 0.3059082, 2.8144531, -1.7265625, -0.9272461, 0.19372559, -1.1611328, -1.8984375, 1.75, -1.5029297, -0.10015869, 0.31835938, 1.8623047, -0.11224365, -0.5473633, -2.8046875, -2.3671875, -1.3486328, -4.21875, -0.084106445, -3.4375, 0.46118164, 1.4267578, 0.6958008, -3.8535156, 0.15710449, -0.20593262, 2.2382812, -0.6748047, -0.45263672, 3.1132812, -1.78125, 0.82421875, -0.78125, -1.3085938, 1.5517578, 0.8256836, -4.0898438, 2.4316406, 2.3730469, 1.5693359, 0.27856445, 1.5253906, 1.5947266, 0.101623535, -0.44995117, 0.15014648, 0.15966797, -1.1904297, 0.07635498, -0.47827148, -2.4511719, -0.99658203, -0.8222656, -1.5957031, -2.765625, -0.15942383, 0.5488281, 2.5878906, -0.8339844, -2.7675781, -1.1015625, -2.0332031, 0.33447266, 2.3535156, -0.9243164, -2.9726562, -0.11291504, -1.4609375, -2.6757812, 0.24035645, 0.85009766, -0.44091797, -0.053588867, -1.1347656, -0.93652344, -3.4882812, 0.9707031, -0.15698242, 2.4316406, 0.49731445, -0.93310547, -0.15661621, -0.3864746, -1.8144531, -4.4453125, -0.15112305, -1.7070312, -0.3647461, 1.9658203, 1.8564453, -0.47631836, 0.88671875, -2.3535156, -0.34521484, -0.30249023, 0.6699219, -1.0888672, 1.3417969, 2.9628906, -0.5517578, -0.4272461, -0.9560547, 0.59521484, -0.88427734, 3.5488281, 1.7880859, 0.97021484, -1.7246094, -1.5917969, 0.8378906, 0.5942383, -2.0644531, -0.02708435, -0.37158203, 2.1386719, 0.72558594, -0.62939453, 2.2128906, -1.5732422, -0.8066406, -1.7646484, -0.4814453, 0.51953125, 1.2949219, 0.7426758, -2.1738281, 2.1738281, 0.13635254, 0.8808594, 0.23449707, -1.546875, -0.9140625, -1.2998047, -1.8525391, -0.4794922, 1.5078125, -1.4589844, -0.6357422, -1.3876953, 3.4570312, 2.0078125, -0.2052002, -0.7734375, -2.6386719, -0.5107422, 2.4707031, 2.1582031, -2.234375, 0.46142578, -0.13000488, 1.9550781, 1.2216797, 1.7841797, 0.09777832, 2.9863281, -1.1679688, 3.7207031, -0.60595703, 0.82421875, 0.4975586, -0.08282471, 2.2167969, -0.99609375, 0.6191406, 1.5566406, 0.35498047, 0.49121094, -0.77783203, 0.8808594, 1.0732422, -1.9755859, -2.5761719, 2.8164062, -0.5551758, 2.9160156, 4.84375, -0.113708496, -1.3105469, -1.6025391, 2.078125, 2.0390625, -1.4199219, -0.08917236, -2.3085938, -1.4755859, 0.7338867, -0.38134766, 0.4506836, -0.56103516, -0.049438477, -0.8222656, -3.5371094, -1.4794922, -3.6464844, -0.091918945, 3.4765625, -1.6660156, 2.7480469, 0.69140625, -3.6503906, -0.25830078, -0.33422852, -1.8544922, 0.21960449, 2.1132812, -2.3183594, -1.5566406, -0.61328125, -0.009346008, -0.57714844, -1.6015625, 1.9365234, -2.0566406, -1.2509766, -0.007511139, 0.4489746, -2.8945312, -1.3691406, -0.8769531, -0.9790039, 2.6601562, 0.7910156, 0.97216797, -1.4130859, -2.6953125, -0.20629883, -0.43041992, 0.115112305, -0.1875, 1.3271484, 1.0273438, 0.10723877, -3.5683594, 2.0644531, 0.5488281, -2.1816406, -0.24169922, -1.828125, -0.011604309, -0.84814453, -0.7495117, 0.7080078, -0.7817383, -0.058746338, 0.91064453, 2.6289062, -2.7597656, 4.8710938, -1.1015625, 3.453125, 0.074035645, 0.3786621, -0.66845703, -2.1503906, 2.8457031, -0.17150879, 3.4238281, 1.2705078, 1.5908203, 0.10784912, 0.18981934, 1.0917969, 1.6982422, -3.0859375, 0.40063477, -1.1523438, -1.7402344, -0.5551758, -1.8867188, 0.83935547, -2.7519531, -0.53466797, 0.8876953, -1.5605469, -1.9042969, 0.2854004, 0.4650879, -0.22705078, -0.89208984, 1.2314453, 0.12188721, -0.2607422, -1.1660156, -0.29467773, -1.4609375, 0.6245117, -0.27197266, 1.6767578, 0.6533203, 2.5625, 1.9257812, -0.14624023, 1.9111328, -0.24243164, -5.7578125, 0.19104004, 1.5732422, 0.43286133, -1.0234375, -1.4755859, -1.6865234, -1.4960938, 0.07800293, 3, 1.265625, 3.3398438, -0.30444336, -1.5917969, 3.8886719, 3.1210938, -0.6777344, 0.30273438, -0.062072754, 2.265625, -0.51123047, -2.0546875, 0.9741211, 2.6074219, -2.3007812, -1.1416016, 1.7841797, 0.48828125, 3.125, 2.8300781, -1.796875, 0.5019531, 2.3671875, 2.953125, 1.421875, 0.7109375, -0.99609375, -3.4667969, 0.026885986, 2.2128906, 1.3632812, 1.0703125, 0.2607422, -1.3789062, -0.42358398, 0.17858887, -0.89453125, 0.17663574, 2.2558594, -0.5332031, -0.29248047, 2.0878906, 0.076416016, 2.8535156, 2.1464844, 0.6196289, -0.8588867, -3.1425781, 1.8300781, 4.3710938, 1.8740234, -1.7529297, -2.3984375, -2.0117188, 0.090026855, -1.3378906, 1.0888672, -0.4428711, 0.64160156, 0.6640625, -1.8417969, -1.5996094, -1.4179688, 2.5332031, -1.3457031, -0.9453125, 0.96972656, 0.7626953, 0.3635254, 0.40551758, -1.8320312, -0.78125, -1.7441406, 0.97314453, -0.16564941, -0.9433594, -2.1679688, 1.8984375, 1.4248047, -0.4831543, -1.8349609, -1.3564453, -1.2128906, 0.24768066, 1.0917969, -0.6816406, -0.117004395, 2.7597656, -2.5761719, 0.4038086, -2.7636719, 0.32885742, 0.15576172, -0.32836914, 0.105407715, 1.9082031, 0.9189453, 2.3378906, -0.13439941, 0.97314453, -1.2861328, -0.7709961, 2.1660156, -1.4501953, -1.3369141, -1.3291016, -5.3789062, 2.6035156, -2.1738281, -0.92626953, 2.15625, -0.107910156, 1.4111328, 0.32861328, -0.13183594, -1.2451172, -2.5078125, -0.3076172, 2.1894531, -0.9345703, 1.0185547, 3.921875, -0.5571289, -1.0761719, -2.0273438, -0.27490234, -0.25463867, 0.5698242, -0.16357422, 0.9560547, 1.3759766, -0.21032715, 1.3203125, 0.117370605, 1.078125, -0.59472656, -0.27319336, -0.33740234, -0.10559082, 1.1269531, -0.7290039, 2.2460938, -0.5678711, 5.2382812, 1.9003906, -1.2070312, 1.390625, 0.79248047, 1.5644531, 0.19372559, -1.8320312, -0.7416992, -1.0839844, 2.8261719, -1.6396484, -0.5957031, -1.0585938, -1.0449219, -1.6943359, -0.42163086, 1.4609375, 3.140625, 0.054992676, -1.9833984, 1.546875, -1.0917969, -1.8369141, -0.8515625, 0.17834473, 0.91503906, -0.37475586, -1.0791016, -0.63964844, -1.1367188, -1.2207031, -1.6503906, -3.9453125, 0.24169922, 2.0078125, 2.4140625, 1.6757812, -2.5976562, -0.014625549, -1.0322266, -0.52490234, 0.38720703, -0.1706543, 0.85546875, 0.6640625, -0.04360962, 1.5644531, -1.5185547, -1.0087891, 0.8457031, -1.0126953, 0.11627197, -1.2900391, 0.7451172, -0.8417969, -1.5673828, 2.671875, -0.24682617, 3.3886719, -2.1953125, -0.18920898, -0.8925781, -1.3525391, -1.5595703, 1.6220703, -0.48486328, -0.105163574, 2.0742188, -0.70751953, 1.9414062, 0.23413086, 0.0836792, 0.029937744, 1.9082031, 0.60253906, -0.49902344, -1.5136719, 2.1445312, -2.6464844, -1.4042969, 2.5449219, 2.3261719, 1.0253906, 2.4101562, 1.8027344, 0.074157715, 1.6367188, -0.06161499, 3.78125, 1.6826172, 0.7441406, 0.04333496, -0.21362305, -1.8144531, -2.3378906, -1.1455078, 1.7841797, 0.44458008, 4.1015625, -0.93603516, -0.6508789, 0.2878418, -3.7539062, -1.5175781, -1.7119141, 1.8583984, -0.9824219, -0.6748047, -0.17919922, 0.8466797, 2.1074219, 2.6269531, 0.36083984, -0.96777344, 1.2070312, -0.2512207, -0.028442383, 2.2988281, -1.5410156, -1.1806641, -1.9746094, 1.1230469, 0.4543457, 0.17224121, 2.5722656, 0.58154297, -1.5605469, -2.2246094, -1.03125, 1.0205078, -3.0332031, -1.6591797, 0.77441406, -0.82421875, -0.1270752, -1.3544922, -0.1730957, -2.3085938, 1.7080078, 1.2705078, -1.3085938, -1.2119141, -1.8125, -1.2314453, -4.0664062, -1.6445312, 1.2705078, 0.55908203, -0.022323608, -1.0615234, -3.1328125, -0.13635254, -0.27539062, -1.7685547, 0.5292969, 1.0712891, -1.6279297, -0.88378906, 0.27441406, 2.1601562, -0.41870117, -0.5673828, -1.2353516, -1.4746094, 0.08081055, -0.8647461, -1.4960938, 0.21582031, 0.26757812, 0.06237793, 1.8769531, -0.7998047, 0.056030273, 2.7910156, -0.8417969, -1.2910156, 0.48779297, 1.8339844, 0.2854004, 2.4140625, -1.5537109, 0.16516113, 0.050201416, 0.9135742, -0.859375, 4.1992188, 0.6538086, 1.2236328, 0.042114258, 1.328125, 0.82373047, 0.058685303, 2.546875, -0.06768799, -0.7548828, 1.6835938, -0.85546875, -0.59472656, -1.3027344, -3.2167969, -1.5214844, -1.5351562, -0.9296875, -0.066711426, -0.734375, 1.0244141, 2.125, -0.9243164, 2.1152344, 1.5517578, -0.51220703, -0.08648682, -0.39501953, 0.62646484, 1.453125, -0.7338867, -3.3242188, -2.859375, -1.0341797, 0.14892578, -1.6347656, 0.84033203, -0.95996094, -1.3095703, 0.86621094, 0.117126465, -0.8930664, 2.6796875, -0.95751953, 0.7871094, -2.5722656, 0.36108398, 1.0136719, -0.5073242, -1.7294922, -0.47460938, 0.34179688, -0.21118164, 1.8808594, 3.4667969, -1.2099609, -0.18188477, 0.28344727, 0.58447266, 0.22741699, -2.2460938, 2.8183594, -2.15625, -0.5761719, -0.5673828, -1.1767578, -1.3164062, -0.47021484, 2.2324219, 1.3935547, 0.92822266, 2.0371094, 0.57373047, -3.8964844, 1.4814453, -0.23730469, -0.10272217, -0.15612793, 0.76904297, -0.30664062, 2.5292969, 0.8959961, 0.23864746, -0.70458984, 1.6269531, -0.41186523, 0.08862305, -2.4824219, 0.22460938, 0.92041016, 1.3300781, 3.015625, 1.0693359, 2.59375, 1.5771484, 0.72216797, 0.96484375, -1.4248047, 2.0117188, 0.07287598, 1.9013672, 0.54345703, -1.2861328, -1.2841797, 0.6713867, -1.7597656, -0.7001953, 0.63964844, 2.0117188, -0.25170898, 0.90478516, -2.6933594, -1.4375, -0.38549805, 2.2285156, 0.35327148, 1.3984375, -0.036315918, 0.39672852, 2.6523438, -0.3330078, 2.2382812, 0.62402344, -1.1630859, 0.68115234, -2.6816406, 0.3371582, 0.099975586, 0.6069336, 0.14453125, 1.9941406, 0.6044922, 1.1787109, -0.5957031, -0.78564453, -0.62939453, 2.3144531, 1.5380859, 1.0371094, -1.296875, -0.3581543, 2.5644531, 2.7792969, -0.42358398, 3.2675781, -3.4453125, 0.66064453, -1.2841797, 0.16625977, 0.68115234, -0.7734375, -0.8754883, -1.2578125, 2.3359375, -1.2607422, 1.8515625, -1.8203125, 1.1748047, 2.0058594, -1.8486328, 0.90722656, 1.6376953, -0.35375977, 3.0117188, 0.040863037, -0.49853516, 0.88916016, -2.1503906, -0.8701172, -0.7973633, 2.2480469, -0.8251953, 1.5625, -0.10058594, 4.4492188, 0.9296875, 0.97216797, -0.7866211, 0.06463623, 0.29956055, -0.65966797, -0.7602539, -1.46875, 2.703125, 1.3662109, 1.5537109, 2.8359375, -1.6552734, -0.41430664, 0.68847656, 0.72021484, 1.3916016, 1.7324219, 1.1367188, -0.101257324, -2.6328125, 0.34765625, 1.7246094, -1.6748047, 1.7216797, -0.2919922, -0.77978516, -0.2208252, 0.75927734, -0.049041748, -0.055480957, -1.1298828, -0.41723633, 0.30932617, -0.19812012, 0.21484375, -0.41088867, 1.578125, -0.29736328, 2.5585938, 1.9013672, -2, -0.2783203, 0.6972656, -1.0546875, 1.2275391, 0.4260254, 0.3244629, 1.2099609, -2.5820312, -3.1269531, -0.4597168, -0.47192383, 0.028335571, 1.6025391, 0.38916016, 1.0605469, 0.79541016, -0.19726562, -2.3359375, -2.6269531, -0.6958008, 0.91064453, -0.6669922, -0.9238281, 0.22241211, 0.88964844, 2.2480469, 1.1630859, -2.1640625, -0.013893127, 0.09063721, 0.6113281, -1.6582031, 0.8745117, 2.1113281, -0.73583984, 2.359375, 1.1591797, 1.8105469, -1.9111328, 1.1064453, -0.5517578, -0.9326172, -2.5273438, 0.8208008, -1.2421875, -0.29663086, 0.3786621, 1.4179688, 1.5419922, -2.4082031, -1.1132812, -1.9257812, -2.5820312]}, "B06Y5WZQJP": {"id": "B06Y5WZQJP", "original": "Brand: SMETA\nName: SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black\nDescription: General Introduction

          This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
          It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

          Specifications:
          Net Volume:2.1 cu ft
          Net Weight:48lb
          Temperature Range: 32\u2109~50\u2109
          Product dimension(W*D*H): 18*18.7*27.1 inch
          Power supply:AC 110V/DC 12V/Propane(gas/LPG)
          Rated Frequency:60HZ
          Input Power: AC 90W ;DC 90W
          Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
          This product come with connection cord,can directly connect the cigarette lighter of the car

          IMPORTANT THINGS TO KNOW:
          Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
          Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
          Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

          PLEASE NOTE:
          If you have any questions,please feel free to contact us,we will try our best to help you!
          NOTE:
          This product USES propane to generate electricity. The product itself does not contain gas.
          \nFeatures: 110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping\nDimensions 18*18.7*27.1 inches, campact size easy to carry on the way\nApproximate gas consumption per day: 0.4 lb\nTemperature range 32\u2109~50\u2109 without freezer\nReversible door. Advanced absorption cooling system, super quiet without noise.\n", "embedding": [0.9970703, 1.4941406, -0.3647461, 2.7167969, -0.6269531, -0.20593262, 0.45410156, -2.8261719, 1.421875, 1.9111328, 1.9052734, 0.49487305, 1.2705078, -1.3945312, 1.4091797, 1.3183594, -0.96875, 1.2255859, -0.013549805, 0.94970703, 0.56933594, 0.7246094, 1.125, 1.2675781, 2.671875, 0.13000488, 3.1464844, -2.0664062, -1.1601562, 0.13989258, 0.019439697, 1.3037109, -1.515625, 1.1826172, -1.1591797, -2.4238281, -1.7832031, -0.060272217, 1.4238281, 0.01889038, 0.3100586, -2.4492188, 2.4804688, -0.15808105, -3.40625, -1.2255859, 1.6142578, -1.3964844, 0.28808594, -0.36889648, 0.30029297, 0.84716797, -1.6591797, 1.8486328, -2.40625, 0.2614746, 0.8491211, -0.49414062, 2.359375, 1.5996094, -1.3349609, 0.24731445, -1.7900391, 0.69873047, -2.6035156, -0.32958984, 2.9179688, -1.2451172, 0.067871094, -1.3925781, 1.9619141, 0.049041748, -0.7104492, 0.88720703, -2.7148438, 1.3701172, -1.4902344, 0.44091797, 2.6054688, 0.83984375, -0.56884766, 1.4130859, 1.1875, -0.32226562, 0.7080078, -0.49047852, 0.1730957, 0.6748047, -0.35229492, 0.63183594, -2.3125, 1.0615234, -3.2246094, -4.265625, 0.62646484, -0.67822266, 0.35009766, 0.8457031, 3.6210938, 1.2089844, -0.6347656, 1.1542969, 0.05493164, -0.15478516, -1.9404297, -1.5097656, 1.234375, 2.1816406, -2.6074219, 0.84765625, -2.1152344, -0.81689453, 1.5, -0.14929199, -0.76708984, -0.06225586, 0.94384766, 2.8476562, 5.1601562, 0.02218628, 2.015625, 0.5185547, 1.7998047, 0.15356445, -0.98779297, 0.015670776, 0.16040039, 1.359375, 1.6308594, -0.8154297, -0.7573242, 1.3154297, 0.20629883, -1.7255859, 0.48828125, -1.2705078, -1.0791016, -2.9941406, -3.78125, -0.6982422, -2.0214844, 1.8632812, 2.4179688, -1.3261719, -3.0917969, 1.0292969, -1.3564453, -0.41870117, 0.035705566, 1.5810547, 2.0117188, -2.3847656, -1.1611328, -1.4707031, -0.15246582, 0.2722168, -1.6445312, -1.0878906, 1.5107422, 2.0566406, 1.2080078, -1.9042969, -3.1425781, 1.4658203, 1.3085938, -2.28125, 0.5385742, -0.50341797, -0.4633789, -0.52441406, 0.99072266, -3.40625, 0.41748047, 2.3203125, -0.41381836, -1.0253906, 0.12866211, 1.1835938, 2.2285156, 0.15686035, -1.7617188, -0.5605469, -0.7426758, -0.24731445, -0.9291992, -0.9375, 0.14001465, -2.8925781, 1.1845703, -3.0429688, -0.6152344, -0.7524414, -1.3652344, 0.8852539, 2.4804688, -3.09375, -3.4746094, 2.3066406, 0.30419922, -0.3869629, 0.81640625, -0.2705078, -0.8798828, 1.9111328, -2.2949219, -1.8525391, -1.1416016, -3.6113281, -0.030471802, 1.015625, -0.084106445, -0.18798828, 2.4101562, -1.4619141, 0.68310547, -1.0761719, 2.3847656, 3.9238281, 1.2490234, 0.6357422, 0.37329102, 1.1396484, 2.2167969, 1.3359375, 0.60009766, 1.7626953, -0.625, -1.453125, -1.3945312, -3.0390625, 4.0976562, 0.10266113, -0.3215332, -0.5205078, -0.11236572, 2.4570312, 0.059448242, -0.1829834, 0.38134766, 2.0898438, 0.68310547, -0.9121094, 0.062042236, -1.3847656, -0.49804688, -0.5996094, -1.5332031, 1.8632812, 2.78125, 0.47558594, 1.9570312, -2.4023438, -1.5693359, 1.0605469, -0.7265625, 0.28442383, 0.8178711, 1.8310547, -0.7182617, -2.8730469, 0.3894043, 1.4033203, -1.6992188, 0.421875, 2.3085938, -0.041168213, 1.15625, 1.0429688, -2.1992188, -0.46289062, 1.4443359, 0.84472656, 0.69628906, 1.0888672, -1.1025391, -0.41455078, 0.8198242, 1.6367188, 2.0019531, 3.7109375, -0.06048584, -1.7197266, -0.8618164, -0.5419922, 1.4228516, 1.6396484, -0.28076172, 2.0976562, 0.7548828, 1.7265625, 3.0703125, -0.85302734, -3.2597656, 3.2480469, 0.44873047, 1.234375, 1.0576172, 0.5214844, -0.17626953, 0.58740234, 1.8212891, 1.2128906, -0.92089844, 1.1542969, -1.7802734, -0.9477539, -0.47338867, -0.37548828, 2.2441406, 0.17346191, -0.22314453, -1.8017578, -3.1171875, -1.8466797, -0.25927734, -1.6298828, 3.8691406, -0.45825195, -0.12261963, 2.0507812, -0.45361328, 1.2373047, -2.171875, -2.2070312, -0.7104492, -0.37524414, -0.26831055, -0.3359375, -0.6982422, -1.4091797, 0.76171875, -0.73291016, 1.7734375, -1.34375, -1.46875, 0.0047187805, -1.3789062, -1.4667969, -0.87402344, 0.34765625, -1.9267578, -0.7324219, -3.6210938, 0.5683594, 0.2142334, -1.4101562, -1.2050781, -1.3525391, 1.90625, -0.4494629, 1.6308594, 1.0712891, -1.1113281, -3.5410156, -2.0644531, 1.1123047, -0.7636719, -0.52197266, -0.734375, 0.80078125, -1.3701172, -1.1552734, 0.31933594, -0.39697266, -0.75683594, 0.76171875, -1.5507812, -4.6210938, 2.0039062, -2.0957031, 0.041229248, -0.7993164, -0.76220703, -2.078125, 0.49267578, 0.7402344, -0.89453125, 4.4648438, 0.21643066, 0.3815918, -1.2089844, -1.0019531, -0.8725586, -1.0859375, -2.8085938, -1.7871094, -0.48828125, -2.9511719, -2.4355469, -1.9609375, 0.38720703, -0.12756348, 0.023666382, -1.1835938, 1.8740234, 0.5957031, -0.30932617, -0.5888672, 0.058166504, 1.3447266, 1.3271484, -1.3710938, -1.0478516, -0.7939453, -0.54003906, 0.9145508, -1.3037109, 1.0605469, 1.1308594, -0.05407715, -0.8520508, 1.7685547, -1.3740234, -1.953125, 0.5654297, -1.8691406, -1.6875, 1.9423828, -1.2246094, -1.1464844, 1.2587891, -0.7128906, -2.7460938, -0.07159424, 1.3476562, 1.6962891, 2.7871094, 0.18115234, 0.15307617, 0.83984375, 1.8203125, 2.0527344, 0.18310547, -0.35131836, 0.62109375, -2.0097656, -1.6494141, 1.8007812, 2.1113281, -2.7578125, -3.515625, 0.10308838, 1.2685547, 2.0722656, 3.9492188, 1.0058594, 1.1650391, 1.1572266, 0.18432617, 0.5185547, -1.1835938, 0.19580078, -1.1152344, -1.0917969, 1.6914062, 1.4755859, -0.014503479, 0.89453125, -1.0039062, 0.31958008, 0.89990234, -3.796875, -0.0121536255, -0.22937012, -2.9765625, -1.9208984, -0.90966797, -0.17907715, 0.27783203, -1.9179688, 0.16662598, -0.4741211, -0.8105469, -0.34643555, -2.2480469, -1.0380859, 1.25, 0.63720703, -2.7929688, 0.38964844, -0.2097168, 0.31860352, 0.3425293, -0.7294922, 1.8320312, -2.6386719, -3.2714844, -1.1855469, -0.85791016, -1.1630859, -0.08660889, 0.26782227, 2.5292969, -2.2851562, 0.27514648, -0.88720703, 0.43554688, -2.046875, 2.5117188, 0.6796875, 0.3112793, -0.3720703, -0.9394531, 0.8022461, 2.078125, -0.53027344, -0.48535156, -1.8164062, 0.92529297, 2.2832031, -1.3798828, 1.5810547, 1.0917969, -2.1113281, 1.3154297, -1.6679688, 1.8710938, -2.0449219, 0.21118164, 2.2578125, 1.0800781, -0.36132812, 4.0625, -0.1854248, 1.8056641, -0.06359863, -0.0003643036, 1.9511719, -4.9257812, 0.55615234, -0.85791016, -3.859375, 0.86279297, -0.28027344, 0.09472656, 2.8710938, 0.9765625, -0.10638428, 0.71240234, -0.12939453, -2.4804688, -1.8291016, 0.36889648, 1.6992188, -0.8857422, 0.14697266, 0.17822266, -0.7416992, -1.1025391, 0.82714844, -2.5507812, 0.67529297, 0.49780273, 1.0576172, 1.0507812, 2.5800781, -1.2021484, 0.05432129, -0.30541992, 0.06112671, -0.021560669, -0.38012695, 1.5917969, -2.25, 3.8789062, -0.6010742, 0.58251953, -0.46826172, 0.94921875, -0.31030273, -0.8725586, -2.8925781, 0.77783203, -0.18652344, -0.07385254, -2.9316406, -0.4645996, -3.2480469, 0.39086914, -0.7734375, -0.15429688, 0.62109375, -2.3398438, -0.122802734, 2.4140625, 0.21057129, 1.0878906, -0.025985718, -1.7373047, 0.45703125, 1.3505859, 0.7553711, -1.6601562, -1.6865234, -0.09173584, -1.3935547, 0.037628174, 0.5366211, -1.6708984, -0.5888672, -0.80615234, -1.0087891, 2.0644531, 1.3603516, 1.5742188, 0.859375, -0.7216797, 2.1738281, -2.4667969, -0.19299316, 0.5644531, 3.6210938, 2.171875, 1.6845703, 1.0058594, 1.6972656, -2.9785156, -0.3564453, 0.27905273, -2.3476562, 2.5390625, -0.83935547, 1.1035156, -2.2070312, -1.640625, 1.3857422, 1.0087891, 3.5253906, -1.1572266, 1.3964844, 2.453125, 1.5410156, -0.47558594, 2.7207031, 1.3144531, 2.0117188, 1.9707031, -1.5283203, -0.19042969, 0.038269043, 1.7617188, 2.4003906, 0.033966064, 0.30126953, -1.5849609, -1.0351562, -0.2607422, -0.3154297, 0.12225342, 1.0869141, 0.23327637, 0.50341797, -0.69921875, 0.7182617, -0.9794922, 1.3173828, -0.24438477, 1.0927734, 0.67333984, -0.51464844, 1.7070312, 1.0283203, -1.5253906, -2.2070312, 0.51953125, 1.8544922, -0.04989624, 0.23925781, -1.8056641, -1.8085938, -0.088134766, -4.2773438, -2.2128906, 2.2304688, 0.17614746, 1.0917969, -0.7138672, 2.0019531, 1.8613281, 2.9570312, 1.3320312, -2.0390625, -0.8598633, 0.5258789, 1.3447266, 0.3564453, -1.7128906, -0.7788086, -2.8925781, 0.88378906, 3.1289062, 1.1152344, 0.8598633, 0.52246094, -1.8564453, -1.5810547, -2.3867188, -2.4335938, 1.9892578, -0.86328125, 0.35913086, 2.0214844, 0.68603516, 1.0966797, 0.8027344, 0.24890137, -0.19689941, 4.5742188, 1.7480469, 0.44848633, 0.27539062, -1.9921875, -2.9355469, -4.9492188, 0.80615234, 0.09436035, -1.8828125, -1.9580078, 0.10668945, -3.4511719, 1.6933594, -0.25830078, 3.2617188, -2.3203125, 0.5395508, 0.26416016, -0.2565918, -1.9365234, -0.93652344, -1.3417969, 0.61035156, -2.0488281, -0.90234375, -0.67285156, -3.8613281, -0.42993164, 0.056427002, -0.028533936, -0.45776367, -0.6713867, 0.35058594, 0.16137695, 2.3183594, 2.34375, -1.9326172, -0.22094727, -2.0273438, 0.047912598, 1.3525391, -0.7421875, 0.48120117, -0.67333984, 0.55810547, -1.2324219, -0.79003906, 2.5644531, -0.14624023, 1.3740234, -0.26757812, 1.3398438, -0.6621094, -1.5488281, 1.6582031, -0.16210938, 0.63378906, 1.0283203, -0.36254883, -0.12915039, -2.7089844, -2.4296875, 0.8457031, -2.3964844, -0.8129883, -0.47875977, 0.50927734, -0.11920166, -0.79589844, 2.2832031, 2.0898438, 0.058776855, -0.9350586, 0.42993164, -2.5058594, 1.1669922, 0.9379883, -0.8027344, -2.1386719, -0.83691406, 1.9794922, 1.7255859, 2.5839844, -0.20007324, -1.2783203, -2.8417969, -0.14355469, 0.023330688, -0.5136719, 4.2929688, 2.2050781, -1.4638672, 0.70458984, -1.09375, 1.03125, -0.49169922, 1.5097656, 1.2685547, 1.53125, 1.5351562, -1.3125, -1.2070312, 1.4824219, 1.0634766, 2.0253906, -0.41601562, -2.8359375, 1.1318359, -2.8828125, -1.1123047, 0.42260742, 0.087524414, -1.9951172, 5.046875, 1.7714844, -1.8935547, 0.5600586, 0.6015625, -0.89746094, 0.6298828, 1.0654297, -0.42797852, -1.3457031, -0.4873047, -0.53027344, -0.9692383, 1.1083984, -1.4853516, 2.2949219, 1.7753906, 2.2734375, 1.0644531, 1.9511719, -0.02470398, 0.55908203, 3.2695312, -0.64746094, 2.7402344, 1.1347656, 2.6191406, 1.0683594, 0.22766113, 0.05517578, -0.22045898, 0.24084473, 1.2275391, 0.4970703, 0.61279297, -2.6699219, 1.4121094, -0.22473145, -1.3876953, 0.9584961, -0.27246094, -0.79052734, -1.7060547, -0.059509277, -0.058135986, 1.921875, -1.3037109, 0.03640747, -0.45214844, -1.8808594, 0.19311523, -0.796875, 0.5644531, -1.265625, 2.6503906, 0.47436523, 1.5712891, 1.3710938, -1.1650391, 0.6616211, -0.61328125, 0.06298828, -1.1152344, -1.9677734, 2.3730469, 0.07757568, -2.4941406, 2.203125, 0.9760742, -1.2587891, -0.2861328, 0.77001953, -0.22668457, -0.13574219, 2.0898438, 1.6972656, -0.7011719, 0.26538086, 0.17443848, -3.3964844, -2.9648438, 0.3251953, -0.17480469, -0.3779297, 0.8022461, -3.5488281, 1.1777344, 2.0976562, 0.96728516, -1.9433594, 1.390625, 0.0013589859, -1.2363281, 1.5019531, 2.8769531, 0.1862793, 3.0253906, 0.6503906, 0.06970215, 0.71728516, -1.2255859, 0.070251465, 0.75390625, 2.3671875, 1.1367188, 0.921875, -1.1035156, 0.9941406, 1.6630859, 0.15759277, 1.0048828, -0.4189453, 1.5751953, 1.4824219, -1.5263672, -2.0761719, 1.9287109, -0.5517578, -2.1367188, -1.3779297, -2.3867188, -1.1210938, -0.4699707, 0.21008301, -1.5585938, 0.026611328, -2.0058594, -0.7397461, -3.7207031, -0.8208008, 2.3984375, -0.46313477, 1.3486328, 3.3222656, -0.55126953, 1.4101562, -0.5083008, 2.8691406, 0.3005371, 0.5097656, 0.51416016, -0.7973633, -0.6748047, 1.1591797, 2.7324219, -1.7705078, -1.9619141, 1.3408203, 1.6464844, -0.56103516, 0.4880371, 0.64208984, -0.62646484, 2.1796875, 2.1660156, -0.084228516, 0.08117676, -0.60498047, -1.2734375, -2.1523438, -0.38085938, 1.2402344, 2.5683594, 2.3632812, 0.3515625, 0.65185547, -2.8984375, -0.19262695, -0.03036499, 0.89990234, 3.625, 0.59765625, -3.3457031, 0.9238281, 1.0371094, 2.4941406, 0.4580078, 0.9848633, -2.1894531, -0.22094727, 2.140625, 1.0693359, -0.5463867, 2.46875, -3.0664062, -1.2148438, 2.4980469, 1.5341797, -0.48388672, 1.2070312, -0.62646484, 1.1552734, -1.9042969, 1.0742188, -1.6044922, -2.5136719, 0.13146973, 0.8457031, 0.5698242, 0.66308594, 1.4423828, -2.9335938, -0.22436523]}, "B001KLJX9M": {"id": "B001KLJX9M", "original": "Brand: Mr Heater\nName: Compact Radiant Propane Heater by Mr. Heater\nDescription: Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline\nFeatures: \n", "embedding": [-0.012550354, -0.47802734, 3, 1.78125, -1.0644531, 1.1972656, 1.53125, -1.0087891, 0.8989258, 1.4414062, 2.2246094, 1.0732422, 0.13232422, -2.0898438, 1.1318359, -1.0058594, 1.5527344, 0.49121094, 2.1289062, -0.7636719, 0.20056152, -0.9135742, 1.2001953, -2.5507812, 0.21557617, 2.0878906, 5.4257812, -1.6601562, -0.89208984, -0.5966797, 0.21911621, 0.31201172, 0.41064453, 2.21875, -2.1757812, -0.7519531, -3.2871094, 0.32983398, -2.5, -0.66845703, -1.5732422, -0.030151367, -0.6040039, 1.1923828, -2.8183594, -0.9980469, 1.4833984, -0.48242188, -0.35253906, -0.49682617, 0.91796875, -0.6323242, -2.5722656, 0.21716309, -1.0722656, 1.0615234, -2.2949219, -3.6503906, 1.1435547, 0.5336914, 0.03161621, -1.1728516, -2.8320312, 0.6513672, 0.82177734, 1.6464844, -1.3886719, 0.29077148, -0.08416748, 0.118896484, 3.0195312, -0.082092285, -1.0751953, -0.7583008, 1.8134766, -1.1113281, -4.0039062, 0.34106445, 3.2421875, 0.16723633, -0.390625, 1.0283203, 0.001001358, 1.0742188, -1.5009766, -0.62109375, -1.0498047, 0.8417969, 2.4921875, 2.421875, -0.8432617, 1.7539062, -1.1318359, -3.0625, 1.5419922, -2.2304688, -0.32373047, 0.68408203, 0.08123779, 1.5625, 0.6357422, 0.58496094, 0.52246094, -1.2109375, -0.7216797, -1.1845703, -0.08154297, 1.5244141, -0.9736328, 2.3320312, -2.6347656, 2.1132812, 4.2382812, -0.006412506, -2.25, -0.85058594, 0.16503906, 2.5253906, 5.1835938, 0.6748047, 2.9355469, -2.1132812, 3.2617188, -1.6396484, -0.27490234, -0.38793945, -1.1357422, 1.3613281, 0.63964844, -3.4863281, 1.5449219, 1.1083984, 2.6582031, 0.45581055, -0.17004395, -2.15625, -1.9228516, -2.2011719, -2.796875, -4.4414062, -0.29907227, 0.6176758, 0.9033203, 1.0761719, -3.703125, -1.7441406, -0.2915039, -0.41723633, -1.1240234, -0.9794922, 2.2519531, -2.8203125, -2.34375, 0.609375, 0.07159424, 3.2695312, -0.39501953, 0.08306885, 3.078125, 1.3457031, 1.1191406, 0.39331055, -0.16137695, 1.1904297, -1.4384766, -2.2402344, 0.625, 0.63720703, -0.6582031, 2.8554688, 0.4663086, -2.0097656, 1.3271484, -1.6503906, -0.6767578, -2.4316406, 0.5371094, 3.1601562, 0.98779297, -1.0810547, -3.4238281, -0.12817383, 0.9272461, -0.41674805, 1.1464844, -0.47387695, -2.5117188, -0.016403198, 0.49487305, 0.024505615, 0.43286133, 0.5966797, -0.09295654, 0.9272461, 0.42260742, -1.4658203, -1.4755859, -2.1777344, 3.5117188, 0.8417969, -2.8535156, -0.09576416, -0.75390625, -1.3886719, -1.3095703, -3.7910156, 0.5048828, -2.1855469, 0.6010742, 1.0566406, -0.74072266, -0.7841797, 2.3007812, -0.41870117, 1.5175781, -1.1767578, 0.85302734, -0.98828125, 2.0273438, 2.6621094, -0.3190918, 0.96533203, 0.8676758, 0.43920898, -0.9790039, 2.9667969, 0.52734375, -0.9326172, -0.859375, -2.015625, 2.5390625, 1.6914062, 0.5473633, -0.1940918, -1.0771484, 1.9873047, 1.4052734, 1.1015625, 1.0302734, 0.15881348, -0.3618164, -0.375, 0.94384766, -0.9213867, 0.19213867, 2.8476562, 0.25561523, 0.6088867, 0.98046875, 1.6904297, 0.37670898, -0.69189453, 0.000849247, -1.1875, -2.9375, 1, 0.5083008, -0.01348114, -0.6020508, -0.7011719, 1.8046875, 0.55322266, -0.69970703, 1.7177734, -0.28735352, -0.37060547, 3.9394531, 2.6855469, -0.87109375, -0.06097412, 1.0634766, 3.6796875, 0.5317383, 1.7607422, -0.390625, 1.9902344, 0.31567383, 3.8808594, -2.2929688, 0.7216797, 0.54003906, -1.3417969, 0.21191406, -0.80566406, -0.91259766, 0.64160156, 0.31420898, 0.80322266, -1.0976562, 0.38793945, 3.5019531, -0.18786621, -1.5009766, 2.8867188, -0.5078125, 2.0273438, 1.265625, -0.95996094, -0.2956543, -0.49316406, 2.625, 0.58251953, -1.9228516, 0.6435547, -0.72558594, -0.81884766, -0.8129883, -0.8574219, 0.46411133, 0.07904053, 2.3652344, -1.3759766, -0.86083984, -1.6777344, -4.6601562, -0.06341553, 3.6367188, -3.3945312, 1.1416016, 0.5986328, 1.7773438, 0.4116211, 1.4609375, -0.20544434, 0.32617188, -0.21875, -0.46728516, 2.5761719, -1.0146484, -1.0771484, -0.34399414, 0.56396484, 1.2646484, -2.1523438, -2.0253906, 1.5878906, -0.71484375, -3.4726562, 1.9003906, -0.17504883, -0.89990234, 1.9189453, -2.5410156, 2.2578125, -0.12597656, -2.2265625, -0.83984375, 0.7729492, 0.12200928, -1.6914062, 0.86083984, 0.859375, -2.3613281, -5.9726562, -0.04788208, 1.4765625, -1.9853516, 0.20019531, -0.66796875, 1.3720703, -0.75390625, -2.0019531, 0.059539795, -1.6865234, -0.40942383, -0.45629883, 1.7910156, -3.109375, 2.0820312, -1.2617188, -0.052734375, -1.4658203, -1.6220703, -0.36279297, -2.1894531, 3.890625, 0.40551758, 4.7617188, 0.4921875, 1.2646484, 0.56884766, -0.2944336, 0.9770508, -1.2021484, -2.6445312, -0.43725586, -1.3291016, -1.4658203, -2.4453125, -3.3242188, 1.0371094, 0.3178711, -1.1933594, 0.16821289, -0.78466797, -0.5864258, -1.4746094, 0.16833496, 0.53515625, -0.27978516, -0.33154297, 0.47802734, 0.24987793, -1.5458984, 0.41259766, -0.63427734, -0.18713379, -2.7246094, 0.5732422, 1.0244141, 1.3662109, 0.88916016, -0.81103516, 1.0087891, 0.79052734, -3.9648438, 2.1992188, 3.3007812, 0.9794922, -0.97509766, -0.55859375, -2.8398438, -1.3173828, -0.84716797, 2.859375, 0.097717285, 3.4511719, 1.59375, -1.5126953, 0.57666016, 3.1757812, -2.6972656, 0.2927246, -1.6572266, 2.0410156, -1.96875, -1.8310547, 0.47143555, 1.8134766, -2.2988281, -0.19714355, 2.3769531, -1.0078125, 0.79541016, 0.37670898, -0.7084961, 0.19494629, 2.6640625, 0.85302734, 2.0644531, -1.5273438, -1.7607422, -1.7783203, -0.1665039, 2.2011719, 3.0136719, -2.0917969, 0.15722656, 1.2714844, 1.0302734, -0.061340332, -1.2519531, 0.68408203, -0.2915039, 0.35791016, 1.0556641, 1.8681641, -0.28149414, 1.8359375, -0.76904297, 2.8339844, 1.3515625, -0.17480469, -1.0449219, 3.078125, 0.76953125, -1.8339844, -0.7783203, 0.84228516, 0.34570312, -0.7573242, 1.1845703, -0.6699219, 0.2709961, 1.6708984, -2.1953125, -2.8339844, -1.3984375, 0.43310547, -0.6401367, -1.4472656, 1.0634766, 1.1542969, -0.38891602, 0.54052734, -2.8476562, -0.7270508, -0.6699219, 1.5322266, -1.1533203, -1.5107422, -1.4511719, 0.57910156, -0.40820312, 1.2939453, -1.5439453, -1.9648438, -1.0859375, -1.9541016, 1.3886719, -1.1435547, 2.6035156, 0.9863281, -1.9677734, 0.15917969, -3.5742188, -1.8427734, 0.6665039, -2.0175781, -0.51220703, 2.7519531, -0.6928711, 1.2988281, -0.82128906, 4.0625, -1.3632812, 1.0341797, 2.4902344, -1.0996094, 1.7744141, -2.1542969, -4.9101562, 1.0683594, -1.4697266, 0.71191406, 2.8769531, -0.40722656, 0.34399414, -1.0166016, 0.49145508, -1.7392578, -3.640625, 0.054718018, 0.89208984, -0.9326172, 0.02848816, 2.7128906, 0.039031982, -4.2304688, -1.0712891, 0.056549072, -0.34448242, 1.1865234, 0.6147461, -1.3994141, 1.5126953, -1.1171875, 1.4931641, -1.5136719, 0.3137207, 1.0244141, 0.5595703, -0.26123047, -1.9091797, 2.0917969, 1.4580078, -0.14465332, 0.077941895, 3.3671875, 0.8623047, -2.578125, 1.1953125, 1.4941406, 1.6318359, 0.19189453, -2.5683594, -0.7792969, -1.6669922, -1.1445312, 0.23132324, -0.15893555, -0.23400879, -2.0117188, -0.46704102, 0.57177734, 1.7773438, 2.4980469, 2.1640625, -1.4248047, 0.7294922, -0.43896484, -2.2753906, -1.4130859, 0.30249023, -1.2412109, -1.4785156, 1.5839844, -0.25048828, 0.59033203, -1.7734375, -0.36254883, -1.0263672, -0.33666992, 2.6445312, 2.0136719, 0.050048828, -0.6879883, -2.6113281, -0.56933594, -2.0390625, 0.89746094, -0.6513672, 1.0478516, 0.1315918, 0.91503906, 3.0117188, -1.3085938, 1.8056641, 0.8925781, -2.3242188, 1.2470703, -0.69970703, -0.024841309, -1.5751953, -1.0449219, 0.88378906, -0.5102539, 3.9296875, -0.46289062, 0.22924805, 0.12756348, 0.10803223, -0.051452637, 0.2915039, 0.24487305, -1.2822266, 2.7636719, 0.35864258, 0.8720703, -0.9355469, 0.027832031, 2.3554688, 1.9619141, -0.13293457, -1.1308594, -0.80615234, 0.89941406, -1.3017578, -1.3066406, 3.3203125, -1.7597656, 0.44189453, 3.1582031, 0.84228516, 0.578125, 0.18041992, 1.8291016, -2.4589844, 1.2402344, 0.734375, 0.11517334, 1.9628906, 1.3466797, -3.2871094, -1.7041016, 3.1679688, -0.3334961, 2.2011719, -1.5703125, -1.0439453, -1.1474609, -2.0371094, -2.0136719, -2.5019531, 0.67822266, -1.1835938, -1.1757812, 0.11352539, -0.3100586, 3.2792969, 2.5625, -0.59228516, -0.71240234, 0.6503906, -0.48535156, -0.61572266, 0.2097168, 0.066223145, -1.4677734, -0.63378906, 0.7705078, 0.3232422, -0.32226562, 1.4765625, 0.74316406, -2.8691406, -0.94970703, -1.6113281, 2.3007812, -2.3730469, -0.6621094, 1.4160156, 0.48242188, 0.86083984, -0.5800781, -2.828125, -1.3740234, 2.0546875, -1.4765625, 0.17749023, 0.14611816, -0.9926758, -3.2304688, -2.8496094, -1.7597656, 0.7998047, -0.24902344, -0.28955078, -0.18579102, -2.0429688, 1.1572266, 1.2578125, 1.0390625, -1.2392578, 1.4755859, -1.7226562, 2.0058594, 2.0429688, -1.3378906, 0.039733887, 0.61572266, 0.20178223, 1.0488281, 0.2692871, -2.3535156, -4.0039062, -0.18823242, -0.9526367, -0.38867188, 1.7744141, 0.24963379, 1.0927734, 2.234375, 1.8808594, -3.125, 0.47485352, -1.6240234, 0.6894531, 2.421875, -1.5185547, 1.7626953, 0.98291016, -1.359375, -1.0585938, 1.7988281, 3.5878906, -0.23657227, 0.10888672, 0.20935059, -1.6572266, 0.3515625, 0.4255371, 0.47680664, -2.0800781, 2.5175781, 0.050689697, 1.6699219, -0.5024414, -3.9492188, -0.59228516, -0.609375, -1.9755859, -0.52734375, -0.23510742, 1.7021484, -0.14611816, -1.2080078, 2.3671875, 0.25073242, 2.5703125, -0.17980957, 0.6958008, -1.1953125, 2.0742188, 0.2331543, -0.87646484, -2.9667969, -0.7583008, -1.3378906, 0.9013672, 1.7470703, -0.4790039, -0.33032227, -2.40625, 0.014839172, 0.18237305, 0.59716797, 1.4267578, 0.57177734, -1.9091797, 1.8642578, 1.0605469, -1.7011719, -0.5234375, 0.13598633, 2.9707031, -1.0205078, 2.7207031, 2.1132812, -2.4648438, -1.3632812, 0.15270996, 2.3632812, 0.7841797, -1.6328125, 2.0371094, -4.5390625, -0.75146484, -0.63427734, -0.47680664, -2.8066406, 1.4541016, 0.9770508, -0.6201172, 1.2705078, 1.9453125, 0.37695312, -0.78808594, 1.9814453, -0.06756592, -1.4121094, 0.52978516, -0.41601562, -1.2265625, 2.4042969, -1.0380859, 4.1875, 1.9960938, 1.1015625, -0.26489258, 1.3115234, -0.2277832, 0.6699219, 5.53125, 2.3808594, 1.8535156, 0.6669922, 1.4746094, 2.5371094, 1.0917969, 3.0644531, -2.1230469, 0.734375, 0.79296875, 0.42285156, -0.18359375, -1.6767578, -0.36132812, -0.58691406, -1.2246094, -2.6113281, -0.18005371, 1.7568359, -1.3691406, -0.49194336, 0.63134766, 1.2089844, -3.7988281, 1.0029297, 0.29541016, 1.1640625, 0.34716797, 0.08630371, 2.3164062, 0.28735352, 0.7060547, 1.3574219, -0.0061950684, 2.6464844, -1.9072266, 1.4277344, 2.203125, -1.3115234, 1.1767578, 1.2890625, 0.40454102, 1.3427734, 0.38745117, 0.010978699, -0.078063965, -2.1621094, -2.5957031, -0.47045898, -1.7246094, 0.09289551, -0.15222168, 3.0839844, -0.23962402, 1.2910156, -1.3808594, -0.15942383, -2.8105469, 3.2246094, 0.074279785, -1.4091797, 0.10443115, -0.9091797, 2.5507812, -1.3994141, 0.38183594, -0.75878906, 1.0029297, 0.95996094, 0.6640625, -1.5371094, 1.8808594, -0.10205078, 2.4667969, -1.0185547, -0.6147461, 1.0214844, -0.5751953, 0.75341797, -0.5498047, 0.5786133, -0.9584961, 1.4990234, -1.8642578, 0.9736328, 1.3603516, -0.6699219, 0.028747559, 1.2128906, 1.5869141, -0.36376953, 1.2402344, -1.1601562, 0.8300781, 0.5830078, -1.0595703, 0.35742188, -1.6748047, -0.8745117, -1.4365234, -1.3671875, -0.47631836, -0.50634766, 0.7324219, 0.69091797, -3.0351562, 1.1259766, 2.9570312, 0.09680176, 0.22998047, -1.2939453, -2.5332031, -1.5908203, -1.3652344, -1.2802734, 0.11224365, 0.61328125, 0.38623047, 0.03982544, 1.328125, 0.85009766, -0.43408203, -2.8339844, -2.3945312, -0.45483398, 0.9145508, -1.3291016, -0.7050781, -0.6689453, -2.5917969, -0.42260742, 0.5678711, 0.6582031, 0.5786133, -0.76220703, -1.5634766, -3.0546875, 1.2011719, 1.171875, 2.328125, 2.3261719, 0.46777344, 2.1660156, -3.3964844, -3.3378906, -2.4980469, -0.5678711, -0.47998047, 0.072021484, -0.124816895, 0.5317383, 0.96728516, 1.0078125, -0.3239746, 0.38549805, 1.4619141, -0.42016602, 1.375, 2.59375, 0.7207031, -0.6816406, 2.4042969, -0.02519226, 0.16821289, 0.49365234, -0.30541992, 2.0996094, -0.7495117, 1.6113281, -2.8066406, 0.34448242, -1.7148438, -0.6176758, 0.022125244, -0.421875, 1.1728516, 0.34057617, -1.2001953, -4.1796875, -0.6333008]}, "B07WF2X9LV": {"id": "B07WF2X9LV", "original": "Brand: BBQ Classic Parts\nName: BBQ Classic Parts 7\" Diameter Wheel and 5/16\" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1\nDescription: This is for a Single 7\" diameter black plastic wheel. Features a 5/16\" diameter axle hole, 1-3/4\" long axle hub and 1-7/8\" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.\nFeatures: High Quality that's made to last!!\n", "embedding": [-1.1455078, 0.42871094, 1.3291016, -2.6503906, 1.6875, -1.4755859, 1.2431641, -1.2519531, 0.52001953, 0.72802734, 3.3398438, -1.5410156, 0.06304932, -4.8476562, -0.16040039, 1.90625, -0.5888672, -2.4882812, 1.3242188, 1.8417969, 1.65625, 2.5039062, 1.4404297, -2.2949219, 2.1777344, 0.3059082, 2.8554688, -0.40454102, 2.078125, -0.7104492, 1.2373047, -0.62158203, 1.0253906, 1.7919922, -2.7539062, -0.16833496, 1.1357422, 2.7910156, -1.6044922, 1.8789062, -2.3886719, -0.23718262, 2.2519531, 2.8105469, -2.7265625, -0.50097656, 2.1894531, 0.30737305, 0.9082031, -3.9550781, 1.3876953, 2.3574219, -0.16137695, 1.1933594, -3.5390625, 1.8837891, -2.0097656, -0.6455078, 1.4257812, 1.1904297, 1.5107422, 1.5908203, -0.3256836, 1.9140625, -1.9863281, 3.8007812, 1.5175781, -0.5205078, 1.0488281, -1.1621094, 0.7294922, 1.2304688, -3.1640625, -0.46362305, 0.2487793, -0.4794922, -3.1289062, -0.03982544, -0.8105469, -1.4853516, -1.828125, 1.8632812, -0.76953125, -4.1015625, 0.65185547, -3.2910156, -1.3769531, -0.6982422, 2.6386719, -0.3334961, 1.0537109, 0.6425781, -2.0097656, -2.171875, 2.4785156, -1.4580078, -1.8847656, -2.8535156, 1.7695312, 0.6640625, -0.5605469, -0.59033203, -1.1894531, -1.5810547, -1.3183594, -1.2011719, -0.070739746, -2.8574219, -2.0644531, 0.48339844, -1.8359375, 1.7822266, 1.7685547, 0.36645508, -0.49902344, -1.2744141, 0.21032715, -1.2021484, 1.1240234, -0.5078125, 3.7460938, 1.9980469, 2.6699219, -1.6445312, -0.020553589, -2.28125, 0.054382324, 1.5224609, 3.6445312, -1.6162109, -0.515625, -2.7910156, 3.6191406, 0.18835449, -0.5522461, -1.4453125, -0.27124023, 0.8925781, 0.24597168, -0.9638672, -0.46533203, 1.1972656, 1.6650391, 0.29516602, -2.328125, -2.0585938, -0.78515625, -0.8276367, -2.0566406, -0.6430664, 3.3769531, -1.0244141, -1.3896484, 0.3486328, -0.028823853, 0.28222656, -0.65527344, -0.74121094, 1.0097656, 0.40722656, 0.6489258, -1.9716797, 1.2275391, 2.9414062, 0.42504883, -0.03677368, -0.72509766, 0.34814453, -0.103881836, 2.5546875, 1.125, -1.7021484, 2.203125, -2.6191406, 1.5761719, 1.0898438, -2.0976562, 2.7050781, 0.43823242, -0.66845703, -0.4008789, -2.6484375, -0.043121338, -0.69433594, 0.6953125, -1.84375, -0.2010498, -0.67822266, 1.4941406, 0.1875, -2.2617188, 0.41748047, 0.27124023, -0.38085938, 0.31640625, 0.36938477, 0.055633545, -1.5029297, 0.85302734, 0.4440918, -3.8105469, -1.6005859, 1.3339844, -1.3076172, 0.12347412, 0.26464844, -1.1230469, 0.14038086, 2.2714844, -0.24975586, -0.28027344, -2.4199219, 0.7163086, -0.34350586, -1.3164062, -0.9472656, 0.7729492, 1.0097656, 1.6533203, 2.2480469, -1.7880859, 0.6977539, 0.28710938, 2.1445312, -0.20593262, 1.7255859, 0.47387695, 1.9101562, -2.7109375, -1.3388672, 1.2363281, 1.6386719, 0.20251465, 0.33276367, -0.49951172, 2.71875, 3.4980469, -0.69091797, 0.12213135, -0.2290039, -1.0761719, -2.0605469, -0.25683594, -1.1337891, 0.18005371, 3, -3.8496094, 0.92871094, 2.0332031, -0.8491211, 0.3942871, 0.22387695, -0.41479492, 1.9345703, 0.71191406, 1.4384766, -0.7109375, 0.5024414, 0.040496826, -2.2070312, 3.5332031, -0.80859375, -3.8808594, -0.20483398, 1.4990234, -1.3183594, 2.9941406, 0.9042969, -1.4755859, -2.1894531, 0.59228516, 0.73339844, 1.1171875, -0.37768555, 1.3378906, 2.3359375, 1.3242188, 2.9863281, 1.3583984, -0.92822266, 2.2285156, 1.4414062, 2.4355469, -0.31079102, 1.3027344, 0.28027344, -1.5058594, 0.5732422, 1.5615234, 1.4472656, 3.6699219, 0.75097656, -3.2910156, 2.0664062, 1.4794922, 1.7011719, 0.98095703, -1.9296875, 0.87109375, 0.3408203, -2.4609375, -0.059509277, 1.8300781, 1.2636719, 0.29785156, 0.9238281, 0.79589844, 0.24377441, 1.5908203, 0.33618164, -0.94433594, 1.5107422, -2.3027344, 0.63378906, -0.953125, -1.21875, 0.8022461, -1.0166016, 2.2480469, -0.09234619, 0.18310547, 0.29638672, 0.9848633, -1.3759766, -0.8178711, 2.0605469, -2.5527344, -1.0917969, 0.16833496, -1.7890625, 1.7451172, 1.8203125, 1.0390625, -1.6357422, -3.1035156, -1.4355469, 0.89501953, 0.4309082, 0.2775879, 0.45874023, 0.35327148, 0.02053833, -2.4023438, 4.0039062, -2.0507812, -4.6210938, -1.7421875, 0.48510742, 1.0732422, 0.40649414, -0.62646484, 0.7788086, -1.9082031, -5.6015625, 1.2636719, -1.1484375, 1.7685547, 1.8261719, -2.2734375, -0.60498047, 0.27563477, -1.3291016, -1.7451172, -0.8847656, 0.60302734, -0.67578125, 1.6533203, -2.4472656, -0.42163086, -2.2011719, 0.4423828, -0.9033203, 1.2207031, -2.4179688, -1.2626953, 0.0018558502, -2.7167969, 3.4511719, -0.50634766, 0.2854004, -0.4855957, 2.4589844, 0.7602539, -1.0449219, -3.2890625, 0.28808594, 0.70751953, 1.2539062, -2.1699219, -2.9785156, 0.2944336, -0.9711914, 2.5136719, 0.328125, 0.29248047, 0.8959961, 0.080078125, -1.8496094, -1.5449219, -0.6645508, 0.3544922, -2.0253906, -0.3503418, -0.77685547, -1.0830078, -0.8911133, -1.6601562, -0.55371094, 3.7480469, -0.59375, 0.6635742, -0.56640625, -1.7304688, 3.1308594, 2.2402344, -0.6933594, 3.5566406, 1.6816406, -1.1367188, 0.3215332, 0.671875, -2.4726562, -3.2519531, -1.2626953, 3.6328125, 0.40771484, 1.1953125, -1.8544922, 2.8066406, -1.0869141, 1.8837891, 1.4824219, -0.7651367, 1.1357422, 1.0410156, -0.15185547, -2.2578125, 1.1396484, -0.22631836, -1.5917969, 0.5727539, 1.0410156, 0.6386719, 1.2744141, 2.0117188, 1.7880859, -0.7553711, -2.8417969, 4.1015625, 1.3291016, 0.5605469, 1.4130859, 3.3847656, 2.3496094, 0.42236328, 0.92333984, -0.4934082, 2.3300781, 2.9746094, 2.2734375, 0.8959961, -1.8525391, 0.94921875, 0.93652344, -0.14978027, -0.43969727, -0.7421875, -0.80908203, 1.7490234, 1.2109375, -0.81640625, 2.5625, -2.8828125, -0.9609375, 2.8964844, 2.0039062, -0.9980469, -0.080078125, 0.028060913, -0.32006836, -0.25439453, -1.1240234, -2.9140625, -0.60058594, 0.50439453, 0.016403198, -2.2363281, 0.34765625, 2.4335938, -0.5708008, -1.9023438, -2.1152344, 0.32788086, 1.1445312, -1.7607422, 0.20031738, 2.2148438, -1.2841797, 1.1347656, 1.8720703, -2.3476562, 0.027145386, -1.6611328, 1.4208984, -1.0566406, -1.6416016, -1.0615234, -2.3300781, -1.3486328, 2.8183594, 2.3066406, -0.9091797, 1.3476562, -1.2822266, -0.9345703, -1.1289062, 0.96777344, -0.47485352, -3.875, -3.0136719, 0.7807617, -0.017974854, 1.234375, 0.1439209, 2.7597656, -0.052612305, -1.5214844, 1.2138672, 1.8154297, 0.9458008, -1.4277344, -3.3476562, 2.0371094, -0.10101318, 1.421875, 1.9511719, 2.40625, -1.4169922, 4.9179688, 0.6347656, -2.0078125, 0.42651367, -1.7177734, -1.9638672, -0.26123047, -2.125, 1.3037109, -1.8232422, -0.8378906, -2.640625, 0.921875, -0.9394531, 0.98779297, -2.7285156, -2.6914062, 1.0888672, -0.16479492, -0.5917969, 0.08782959, 0.2109375, -0.3076172, -1.2041016, -0.44189453, -1.4345703, 2.8632812, 1.7402344, 0.35205078, -0.5517578, 1.9365234, -0.15576172, -1.7431641, -0.4453125, -1.1865234, 3.1269531, 0.073913574, -2.6953125, -1.4375, 2.8457031, -2.71875, -0.8959961, 0.8989258, -0.72998047, -1.9404297, 1.3173828, -2.3242188, -0.59375, 2.1875, -1.4189453, -1.2597656, -1.8056641, -1.6689453, -0.97216797, -0.107543945, 0.06384277, -0.018188477, 1.2822266, 1.578125, -2.5859375, 1.8212891, -0.9633789, 1.1972656, -2.1191406, 0.3894043, 0.20935059, 0.9350586, 3.2851562, -2.8046875, -1.2080078, -0.73046875, -0.5961914, -0.44750977, 0.083984375, -3.9394531, 0.5673828, -0.60498047, -0.1340332, -1.0146484, -0.053009033, -0.18115234, -0.04034424, -0.38134766, -2.2890625, 1.9101562, -2.5429688, -0.86328125, 1.9882812, -1.0283203, 0.63378906, -0.41601562, -0.09893799, 0.5493164, 0.48828125, -1.9013672, 2.3535156, -0.22607422, 0.83203125, 1.4941406, 0.58251953, 1.0205078, -3.3261719, 0.7973633, 1.1630859, -1.1582031, 0.18652344, -0.8623047, -0.5024414, 2.2167969, -0.5654297, 0.99609375, 2.7949219, 1.6435547, 0.67871094, 2.3964844, 0.53125, -1.8408203, 0.26538086, 1.5742188, -4.2304688, -1.3427734, 0.09307861, -2.3652344, 0.6767578, -1.0390625, -3.4394531, -0.16357422, 1.7568359, 0.43969727, 1.0644531, 0.22607422, -1.3076172, 0.47924805, -2.09375, 0.12756348, 0.08807373, -0.45532227, 1.8496094, -0.79541016, -0.71875, -0.54003906, 3.1015625, 1.9775391, -1.1376953, -1.8144531, 1.5693359, -1.2207031, -2.8886719, -0.578125, -3.0585938, 0.26123047, -0.3046875, 1.1630859, 3.7460938, 0.6767578, 0.15795898, 2.234375, -2.9199219, 2.7675781, -2.9179688, 0.06640625, -3.7792969, -0.06732178, 1.8144531, -1.1074219, 0.042816162, -1.2460938, 2.4140625, 0.9038086, 1.421875, 0.22277832, -0.076660156, 1.7675781, 2.2265625, -1.09375, -1.1015625, -2.6289062, 1.0917969, 1.4619141, 1.6757812, 0.84375, -0.83496094, -0.26098633, -0.734375, -2.0058594, -1.9091797, -0.30908203, -0.37939453, -0.7890625, 1.2236328, -1.2001953, -1.5419922, -1.2353516, 0.45410156, 1.3886719, -0.26489258, -4.4726562, -1.9423828, 3.8222656, -3.3515625, 0.8041992, 1.8466797, 1.3535156, 1.5703125, 0.41674805, 3.0292969, -1.1064453, 2.3710938, -0.28515625, 1.4589844, 1.6621094, 2.9609375, 1.6171875, -1.5390625, -1.8007812, -0.94677734, 1.1455078, 3.5039062, -1.4550781, -0.36572266, 1.234375, -0.14379883, 0.27612305, -1.3574219, 0.29492188, 1.3427734, 3.0136719, 0.34887695, -2.765625, 2.0566406, -2.8300781, -0.7421875, -0.15222168, -2.9296875, -0.015930176, -1.7001953, 0.63134766, 0.42211914, 0.06335449, -0.51708984, -0.8725586, -0.03112793, -0.79296875, -0.14746094, -3.015625, 3.4375, 1.1328125, -1.875, 0.3359375, 2.0703125, 1.0712891, -1.3076172, 0.80126953, -1.1396484, -0.5751953, -2.5996094, -1.1220703, -0.46679688, 2.2246094, 0.86572266, -2.2441406, -0.76904297, -0.5830078, 1.1787109, -0.12854004, 3.1425781, 0.4182129, 0.32202148, -0.6875, 3.2792969, 1.1826172, -0.27001953, 2.3183594, -2.4785156, 1.6005859, -1.5126953, 0.20019531, 2.0507812, -0.9448242, -0.18164062, -0.5097656, -2.2773438, -1.8183594, 0.86572266, -1.421875, -0.24926758, 0.4399414, 1.0146484, 1.6201172, 2.8222656, -0.7109375, 1.1054688, -1.2763672, -1.1640625, -2.9414062, 1.9755859, 0.7583008, -0.9902344, -0.68310547, -0.88720703, 0.3178711, 0.1706543, -1.7539062, 1.5058594, 0.43237305, -1.2109375, 3.8632812, 0.27612305, 2.9335938, 2.6015625, 1.4306641, 2.7226562, 3.21875, -0.6850586, -0.114868164, 1.265625, 1.5195312, 0.28955078, -4.4453125, 1.2636719, -1.6269531, 1.8027344, 0.19421387, 0.76123047, 2.7011719, -2.3242188, 0.45825195, -1.8076172, 0.89453125, -4.0546875, -1.0058594, -1.765625, -1.2822266, -0.82128906, -0.6948242, 4.8398438, 2.3808594, -2.6660156, -1.0380859, 1.2783203, 0.88720703, -1.2958984, -1.4404297, 1.7363281, -0.9213867, -1.4716797, 1.421875, 2.25, 0.44482422, 3.078125, 1.4394531, 1.3691406, -0.1875, -0.63378906, -1.5058594, 0.3479004, 2.7207031, -2.703125, -0.95947266, -2.8554688, 0.9951172, -0.8051758, -3.0917969, -0.8354492, -0.24523926, -0.92041016, 2.1777344, 1.4003906, -3.5976562, 0.4169922, -0.44360352, 1.2851562, -1.1113281, -0.23339844, -1.3886719, 0.15393066, -0.70996094, -2.0878906, 0.72802734, 2.4589844, 2.65625, -1.3496094, 0.54052734, 0.38208008, 2.1933594, 2.484375, 2.4199219, -0.95947266, 0.8071289, -1.0820312, 2.4765625, -0.8671875, -0.06378174, 1.0664062, -0.9770508, 1.7529297, -0.105895996, 0.7871094, -2.2070312, -1.8261719, 0.81689453, 2.4941406, -1.2490234, -2.7539062, -2.3710938, -0.5419922, 0.61572266, 0.32763672, -1.2353516, 1.7636719, 2.578125, 1.9941406, 1.0039062, -1.9755859, -0.3786621, 3.078125, -2.5039062, -1.4023438, -0.3388672, -0.107910156, 1.3154297, -0.49291992, 0.42944336, 2.9453125, 0.69970703, 0.18469238, -1.8769531, -0.027832031, -0.045013428, -0.57714844, -1.3125, -0.96191406, -0.27197266, -5.5117188, 0.3852539, -2.5507812, -0.09509277, 1.0166016, -0.15917969, -1.6611328, -2.4140625, 0.21936035, -1.8583984, 2.4707031, -2.875, 0.5986328, 3.46875, 0.6254883, -0.03253174, -0.023834229, -3.7910156, -0.5019531, -1.953125, 1.3896484, 1.1083984, -1.3261719, -0.5185547, -2.1777344, 1.7441406, -1.6699219, -0.90527344, 0.4140625, -0.40283203, 4.4726562, -0.54541016, 1.1455078, 0.16711426, -1.2597656, 0.75146484, 3.40625, 0.85009766, 1.265625, 0.77783203, 2.9941406, 2.2148438, -3.0976562, -0.14331055, 0.018692017, 2.1855469, -1.90625, 0.41235352, -0.18334961, 0.2006836, 0.06549072, -1.2041016, 0.8779297]}, "B07VZC21DG": {"id": "B07VZC21DG", "original": "Brand: yuxiangBBQ\nName: yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18\" W x 23\" H x 23\" D)\nDescription:

          18\"W by 23\"H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

          Introduction:

          18\"W x 23\"H x 23\"D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

          Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

          Why Choose Us?

          1.Carefully designed: Modern minimalist style and Light Luxury

          2.New Upgrade:Better, Prettier and More Handy

          3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

          We heartily provide customers the best products in the cheapest price.

          Package Contents:

          1 X Triple Drawer

          1 X Screwdriver

          3 X Handles

          1 X English manual

          \nFeatures: Product size: 18\" W x 23\"H x 23\" D. Cut hole size: 16\"Wx21\"Hx 23\". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently.\nOur outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance.\nFully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly.\nBox frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects.\nFast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible\n", "embedding": [-1.6640625, 2.0058594, 1.2753906, 0.86376953, 1.78125, -1.109375, -1.3144531, -1.5253906, -0.37963867, 1.8662109, 0.85595703, 0.8071289, -0.015052795, -1.3710938, 0.28222656, 1.6816406, -1.1083984, -0.33544922, 0.6660156, 0.83984375, -0.5239258, 1.8261719, -0.23034668, 0.71484375, 3.3925781, 1.1982422, 2.8300781, -0.29736328, 1.9189453, 1.0214844, 1.0800781, 1.2539062, 1.3720703, 1.0830078, -1.0908203, 1.3857422, 0.24865723, 1.4677734, 0.38134766, 1.3916016, 0.5776367, -2.3886719, 3.390625, 1.4160156, -4.0234375, 1.3085938, -1.1494141, 1.0791016, 0.27148438, -4.2265625, 1.2480469, 2.0078125, 0.8408203, 3.0820312, -2.3457031, -0.35107422, 2.0761719, -5.0976562, -0.578125, -1.6142578, 0.56591797, -0.07861328, -1.6162109, 3.2363281, 1.8632812, -1.4189453, 0.3449707, 0.8432617, 1.0361328, 2.265625, -1.5175781, 0.2019043, -1.7890625, -1.9257812, -0.30664062, -1.0693359, -0.2409668, 2.3886719, 0.8959961, 1.4150391, -4.1210938, 1.234375, -0.058166504, -1.8759766, -0.46606445, -0.34228516, -2.7128906, -3.1328125, -0.5625, -0.13769531, -0.48876953, 2.1699219, -1.8564453, -4.1601562, 2.7929688, -3.1601562, -0.42236328, -0.99560547, 1.7470703, 2.7578125, -0.033813477, 0.6870117, -1.3105469, 0.59521484, -0.3947754, -2.3085938, 0.50341797, 0.9355469, -2.1679688, 0.25024414, -4.5429688, 3.6074219, 0.7001953, -0.06689453, 1.9375, -0.00057792664, 0.3388672, 0.6479492, 2.3339844, 2.28125, 0.65185547, 1.5371094, -0.5058594, -2.46875, 1.0410156, 1.5253906, 0.18371582, 1.9013672, 4.7695312, -0.28295898, 0.95947266, -3.5625, -0.021636963, -2.0273438, 0.045806885, -2.7695312, -1.8759766, -2.0410156, -2.1054688, 2.3671875, -1.5634766, 1.2333984, 2.5605469, -1.9804688, -0.5595703, 0.85253906, 0.06329346, -0.48168945, -1.5693359, -4.3242188, -1.9619141, -1.5341797, 1.8476562, -0.0055160522, 2.3925781, -0.41625977, 0.036224365, -2.0117188, 3.4902344, 0.21130371, -0.48266602, -4.203125, 0.8959961, 3.4316406, -0.79052734, -2.8476562, -0.2211914, 2.09375, 0.35888672, 2.4023438, 1.1708984, -3.3339844, 0.29833984, -0.26538086, 1.3535156, 0.8300781, -1.0322266, 2.0898438, 2.3066406, -0.79003906, 1.1748047, -2.7792969, 0.33520508, 2.1074219, -1.4472656, -0.2548828, 1.2148438, -2.2285156, 1.0917969, -2.234375, 0.6635742, 0.18676758, -2.4667969, -0.5576172, 1.6484375, -0.5288086, -2.0351562, -0.1977539, -1.8662109, -0.7338867, 2.4257812, -1.4345703, -0.22570801, 0.1340332, -2.4628906, -0.2541504, -0.50097656, -0.20996094, 3.796875, 1.1552734, 1.5800781, -0.49902344, 3.7832031, -0.61083984, -0.5234375, -1.7167969, 1.0566406, -0.14855957, 2.8085938, 1.8134766, 0.08972168, -0.095581055, -3.21875, 2.2871094, 1.4804688, 0.7084961, 0.32299805, -1.0566406, 0.0736084, 1.5244141, 2.90625, 0.5913086, 0.8876953, -0.0025901794, -1.8330078, 0.35083008, 1.3945312, -2.9355469, -1.5322266, -0.35107422, 1.5644531, -1.40625, -0.2548828, 0.6201172, -0.24719238, -0.69677734, -1.3701172, 2.8203125, -0.3088379, -1.4277344, -0.8881836, -1.2216797, 1.1494141, -2.1699219, 1.7041016, 1.0351562, -1.5009766, -1.984375, -2.46875, -2.140625, 0.6826172, -1.1162109, 1.8046875, -1.9375, 1.7294922, -1.0117188, 1.0566406, -0.6328125, -3.5078125, -1.6552734, -0.8564453, 1.2763672, 1.4404297, -2.4472656, 1.5664062, 2.2832031, -0.78564453, 1.6845703, 0.3696289, 0.6147461, 0.1171875, -2.765625, 1.9765625, -0.5439453, -0.640625, -0.5932617, -1.6953125, -0.29174805, 0.61328125, 2.3886719, 5.6484375, -0.8901367, -3.1191406, 4.5507812, -1.5371094, -0.24597168, 0.57177734, -1.2880859, 1.3603516, -0.9550781, 0.123291016, 0.68408203, 0.058624268, 2.2890625, -1.4658203, -1.4091797, 1.5195312, -2.2617188, -0.30664062, 0.75878906, -2.7578125, 0.20202637, -0.5527344, -1.3115234, 0.109802246, 0.5566406, 0.3762207, -0.95703125, 2.8144531, 1.0898438, 0.23022461, -0.2854004, -2.0957031, -1.4726562, -3.4433594, 0.21142578, -0.97509766, -2.2050781, -0.77490234, -1.7734375, 0.9746094, -0.64697266, 1.8564453, -1.4121094, -2.3828125, -3.6152344, -2.25, -0.9091797, -1.1894531, 0.5756836, 0.2692871, -0.018234253, -3.0625, -0.31347656, -0.6713867, -1.4306641, -2.1328125, 0.18579102, -0.3684082, -1.1152344, -0.6171875, -0.94384766, -0.37939453, -5.2070312, 2.6757812, 0.5917969, 1.4306641, 1.7871094, -2.1269531, 1.6357422, -1.5625, 1.2373047, -0.69677734, 2.640625, -1.0400391, 0.1739502, 0.98779297, -3.9316406, 1.8496094, -0.24353027, 1.3320312, -2.0644531, 2.2167969, -0.051513672, -0.62841797, -0.9794922, -3.2792969, 4.0390625, 1.5283203, 0.39672852, -0.58935547, 0.48168945, 0.5180664, -1.2900391, -1.0791016, -1.1103516, 1.5419922, -1.5234375, -0.48754883, -2.9003906, 2.8027344, -1.3476562, 0.94921875, 0.27905273, 2.4804688, 0.34399414, -0.5883789, -3.1699219, -1.3613281, 1.1142578, -0.2409668, -1.0263672, -1.0341797, -1.7001953, -1.5419922, -0.1348877, 0.3684082, 0.8076172, 2.265625, -2.265625, -2.8925781, 0.32788086, 0.48535156, 0.3125, 0.44604492, -1.2285156, 2.3105469, -0.2043457, -3.171875, 0.54589844, 0.7368164, -0.953125, -3.421875, -0.5698242, 2.015625, -1.5361328, 3.71875, -1.1425781, 0.13110352, 0.265625, 1.1962891, 0.4230957, -1.3623047, 2.2304688, 0.57128906, -0.6743164, -1.9238281, 0.38867188, 1.5283203, -3.0136719, 1.1484375, -0.4802246, 0.78466797, -0.49658203, 2.0566406, 1.7304688, -0.41845703, -1.7734375, -0.9921875, 1.3144531, 1.2880859, 0.1459961, -3.7675781, 1.6640625, -4.0117188, 1.2548828, 0.31274414, -0.61865234, 2.6367188, 1.4472656, 0.23291016, -1.8369141, -0.9189453, 0.30517578, -0.8222656, -2.5722656, 1.0615234, -1.5771484, -2.5761719, -0.8066406, -2.3105469, 0.4584961, -3.75, 0.6142578, 0.7714844, -1.7900391, 1.9921875, -0.16748047, -1.859375, -1.8574219, -3.6699219, 1.5585938, -1.6083984, -2.96875, -0.87939453, -3.6796875, -1.1455078, -1.1367188, 0.29101562, 0.25732422, -0.5566406, -2.9941406, 1.2695312, -0.9580078, -1.1396484, -1.7675781, 0.89453125, -2.796875, 2.4101562, -0.24768066, -1.6357422, 0.8256836, -0.44091797, 1.8300781, -1.1669922, -0.76416016, 0.0340271, -0.33276367, -0.4255371, 1.1894531, -0.27124023, 0.30517578, 3.1601562, -0.9291992, -0.32373047, -1.8105469, 2.1503906, 1.8535156, 0.8911133, -0.47924805, 0.13269043, 1.9033203, 4.5195312, -1.9804688, 1.1367188, -0.7890625, -0.45922852, 1.6660156, -2.6171875, -0.26538086, 0.02557373, -1.5185547, 0.7104492, 1.4160156, 0.7729492, 1.7744141, 0.7944336, -2.3476562, 1.8330078, 0.72509766, -3.1210938, -0.45507812, -1.1152344, 0.6923828, 0.21960449, -0.9404297, 1.8183594, 0.3317871, -0.82421875, 0.52001953, -0.073913574, -1.1904297, 0.8017578, 0.4321289, -0.8149414, 4.3242188, 0.50146484, 0.29101562, -0.57128906, -0.46435547, -0.50683594, -0.53125, 0.5073242, -0.8339844, 1.6630859, -2.1503906, -0.0064430237, -0.72314453, 1.6162109, -1.6904297, -1.2607422, -3.4101562, 1.2265625, 2.0117188, -0.07904053, -1.2929688, -1.8369141, 1.0878906, 1.2626953, 0.51464844, 1.1982422, 0.47338867, -1.4384766, -0.1472168, -0.0473938, -1.2109375, 1.4550781, -0.14074707, -0.011833191, -0.5366211, 0.9589844, -2.1679688, -2.015625, 0.1862793, -1.9296875, 0.3544922, 0.8027344, -0.71533203, 3.6269531, -0.4729004, -1.1533203, 0.60839844, 3.1503906, 2.3886719, 2.2675781, 3.3183594, -2.7792969, -0.1303711, 2.4785156, -1.5195312, 1.3759766, 0.7392578, -1.3164062, 0.26635742, 0.17211914, 0.9550781, -1.0722656, 0.41723633, -0.27978516, 1.1679688, 0.3708496, -1.5742188, 2.8378906, 1.0947266, -1.7412109, 2.3671875, -0.91308594, 1.9042969, -1.6796875, 0.08679199, 2.609375, 0.79052734, -1.4267578, 0.8886719, -0.6557617, 1.8964844, 0.8691406, 0.73339844, 1.4511719, -2.0410156, 0.3166504, 2.3789062, 2.9902344, -0.08068848, -1.2919922, 0.6791992, 1.2353516, -0.23718262, -0.6713867, 2.9042969, 4.9921875, -0.8935547, 0.70751953, 0.546875, -1.6337891, 3.0117188, -0.56933594, -1.7314453, 0.061828613, -2.1171875, -0.9091797, 1.4150391, 0.2824707, -0.5410156, 0.2824707, 1.3642578, -0.7270508, 0.7836914, -2.171875, -2.4628906, 0.36572266, -2.0390625, 0.051879883, 2.6601562, -0.9926758, -0.50683594, 0.21240234, -0.95703125, -1.046875, 1.9111328, 2.140625, 1.1611328, -0.29003906, 0.13000488, 1.2705078, 1.1132812, 0.83984375, 0.25976562, -0.29125977, 0.8408203, 3.6367188, 2.5039062, 0.7915039, 2.1347656, 2.4589844, -0.19592285, 0.5673828, -2.9003906, 3.6269531, -0.7631836, 0.82470703, 1.9443359, -2.5527344, -2.4199219, 0.35205078, 1.4873047, 0.23059082, 2.3945312, 2.4414062, -0.066833496, -0.8510742, -0.52685547, -1.3798828, -4.2617188, -0.19018555, -0.65527344, -0.36499023, -1.7197266, 0.3034668, -2.4042969, -1.3310547, -1.0634766, 0.027801514, 0.70703125, -1.2705078, -0.6230469, -0.70751953, -1.9804688, -1.2529297, -0.00038337708, 2.7695312, -1.4755859, -0.05871582, 0.38964844, -3.21875, -0.8696289, 1.9121094, -2.3847656, -0.9433594, 0.91796875, -0.6303711, 1.8134766, 1.0947266, -0.33325195, -1.9189453, 0.37353516, -1.4990234, 0.69970703, -0.9355469, 0.5292969, 0.37524414, 0.042236328, -1.5703125, -0.11956787, -3.9199219, 2.3066406, -2.2304688, 0.14685059, -0.46435547, 0.640625, 2.5410156, 1.0732422, 1.3339844, 1.8789062, 0.07977295, 1.5390625, 3.0371094, 1.8027344, -4.1484375, -1.8105469, -1.3955078, -2.203125, -0.38452148, -1.8925781, -0.9038086, 1.3486328, -0.16125488, -0.32763672, 1.1787109, -0.6147461, 0.103515625, 0.9916992, -0.8417969, 1.6962891, 1.4179688, -1.1171875, -2.1464844, -2.8027344, 1.1435547, -1.0751953, -0.5102539, -3.859375, 0.7109375, -1.9033203, -0.32250977, 1.1621094, 0.47753906, 3.2910156, 2.5722656, -3.3339844, -1.2470703, 2.1914062, 0.8457031, 2.2226562, 0.41625977, 1.2861328, -0.13781738, 4.8125, -0.6113281, -1.2646484, 3.3867188, -2.2734375, -0.26489258, 0.1973877, -3.6347656, 1.6572266, -1.4257812, 0.7324219, -2.9570312, -1.5878906, -1.4550781, 1.6992188, -0.12841797, -0.26123047, -1.3037109, 2.7558594, 0.6845703, 0.8486328, 2.5527344, -1.6601562, -0.35302734, -0.8198242, 1.2451172, 1.2080078, 3.9550781, 0.63720703, 1.1015625, 0.2861328, -0.26611328, -1.2304688, 4.125, 1.7773438, 1.1552734, 0.79248047, 0.23596191, -0.48364258, 2.0058594, 3.90625, -0.0019187927, 0.34277344, 2.6328125, -0.3317871, -1.1015625, 0.99121094, 0.6557617, -1.0791016, 0.019485474, 1.1962891, -0.36743164, -0.3256836, 1.1503906, 0.8334961, 1.2832031, 0.2548828, 1.5361328, -0.53027344, 0.29882812, -1.6337891, -0.99658203, -1.9414062, -3.125, -1.1943359, 0.81347656, 0.4819336, 0.64746094, 2.6523438, 1.0087891, 1.5146484, 0.27392578, -0.7739258, -0.7993164, 0.004295349, 0.30639648, -2.1757812, 2.2089844, 3.375, 1.1855469, -1.1230469, 4.1210938, 2.1894531, 0.50097656, -0.98583984, 0.49975586, 1.0732422, 0.22644043, 1.7060547, -0.11651611, -1.5341797, -1.0166016, 1.7675781, -0.17687988, -1.1123047, 2.0039062, -0.06311035, 2.8320312, 0.7919922, -4.3046875, 0.23278809, 1.8574219, 2.484375, -1.4394531, 2.015625, -0.062683105, -3.2460938, -1.421875, -1.9960938, 1.4003906, 2.1503906, 2.7011719, -1.3349609, 2.2480469, 1.6767578, 0.49121094, 1.7021484, 2.4082031, -0.79589844, -0.94873047, 0.51123047, 4.6757812, 0.0736084, 0.9433594, 0.07989502, -0.28442383, -0.7817383, 0.43676758, 2.8613281, -1.9003906, 1.0009766, -1.734375, 0.26123047, 0.71240234, -1.5068359, -1.1474609, 0.3737793, -1.1650391, -0.024459839, -0.1451416, -0.04437256, 0.57177734, 3.1777344, 0.95214844, -0.8144531, -1.0078125, 3.9550781, 0.4873047, -0.96777344, 0.7480469, -1.2832031, 1.2197266, 0.19555664, -0.21960449, -0.77734375, -0.39379883, -1.0966797, -0.93310547, 3.2304688, -0.3552246, 0.73291016, 0.17529297, -1.3681641, -0.16760254, -0.05203247, 0.7163086, -1.3310547, 0.52978516, 4.53125, -0.56347656, -0.7558594, -0.8803711, 0.8745117, 0.0008916855, 1.2587891, -1.7246094, -0.28222656, 2.65625, 1.4541016, -1.0878906, -1.7402344, -3.3710938, 2.0507812, -0.87939453, 1.9453125, 0.28271484, -1.2597656, -0.4892578, -1.5019531, 0.18286133, 0.55859375, -2.2304688, -1.6748047, 0.082214355, 0.055786133, -0.57177734, 0.086120605, -2.0195312, -0.93115234, 0.22106934, 3.2890625, 2.2089844, -0.35351562, 1.9726562, 3.0957031, 1.2744141, -1.1279297, 0.014297485, 0.4086914, 2.7851562, -1.3964844, -0.75927734, -0.14550781, -0.9614258, 0.5366211, -1.875, -2.0488281]}, "B0818XQ13S": {"id": "B0818XQ13S", "original": "Brand: BeebeeRun\nName: BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,\nDescription: \nFeatures: \ud83c\udf61\u301023 Pieces Food Playset\u3011BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1, \u00a0salt*1, pepper*1,BBQ grill*1\n\ud83c\udf62\u3010Play and Learn\u3011 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half\n\ud83c\udf61\u3010100% Safe\u3011All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers\u2019 hands\n\ud83c\udf62\u3010Gift For Ages 3 To Up\u3011The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun.\n\ud83c\udf61\u3010Convenient to Use\u3011Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized\n", "embedding": [-1.9052734, 2.2832031, 0.057861328, -1.7783203, -0.2836914, 1.2675781, 2.0195312, -1.0283203, 0.8388672, -1.1669922, 0.45898438, 1.4248047, 1.0771484, -2.3457031, 1.1933594, -0.08343506, 1.7285156, 1.7314453, -0.26098633, -0.20935059, -0.15124512, -0.55908203, -0.68652344, -0.6303711, -1.0751953, -0.6098633, 3.1113281, -1.5068359, 1.0986328, 0.086120605, 2.6054688, 0.30810547, 0.9296875, 3.5, -3.0488281, -0.0129852295, -0.051513672, 1.2666016, -1.0302734, -1.0410156, -0.2800293, -0.35375977, 1.8300781, 2.7304688, -4, -0.37573242, -0.7998047, 0.62890625, -1.6455078, -2.5683594, 0.062042236, 3.0253906, -2.96875, 0.49072266, -3.0566406, 0.84033203, -4.4140625, -1.0205078, -0.23791504, -2.2148438, 0.9663086, 0.92529297, -0.7114258, -0.37060547, -0.8461914, -0.8676758, 0.6040039, -2.2714844, 1.3320312, -1.453125, 3.7207031, -0.022445679, -2.0019531, -0.28320312, -1.2578125, 0.8676758, -1.2998047, -0.64453125, 0.76171875, -1.6279297, 1.0341797, -0.24572754, -1.03125, -1.4003906, 0.37426758, -0.5644531, -2.6464844, -2.2382812, 2.7890625, 2.1191406, 1.3515625, 0.71728516, -1.2109375, -3.9433594, 2.7988281, -1.1347656, -1.4501953, -1.0205078, 0.45361328, 3.4257812, 0.18835449, -2.4980469, 0.28125, 0.035705566, -0.78808594, -0.86865234, 0.52490234, 0.32495117, -2.5253906, 0.0814209, -1.7929688, 2.6679688, 0.46435547, 0.51416016, 0.81591797, 1.2421875, -0.92871094, 1.8408203, 0.97558594, 1.4902344, 4.0390625, -1.4316406, 1.5527344, -1.7890625, -0.37329102, 1.0283203, 0.23657227, 1.5419922, 1.4355469, -1.4101562, -0.84765625, -0.18371582, 1.0605469, -0.104003906, -3.7617188, -1.3515625, -2.3496094, -1.9501953, -0.8823242, 0.3305664, 0.0814209, 0.10046387, 0.89453125, 1.4384766, -1.1503906, 1.2333984, -0.54345703, 2.0117188, 1.4248047, -3.1035156, 1.4990234, -1.8603516, -2.0625, 0.3618164, 2.1269531, 1.3232422, -1.1425781, -0.31274414, 1.5009766, 0.25634766, -0.05041504, 0.26708984, -1.1103516, 0.73046875, -0.734375, -2.5683594, 0.9970703, 2.2226562, -2.203125, 2.6816406, 2.3613281, -0.21789551, 1.5009766, 0.19848633, 0.44335938, -2.0019531, -1.9726562, 1.3300781, 1.0869141, -2.0292969, 2.109375, -1.6640625, 1.8251953, 2.5839844, -1.3740234, 0.49072266, -0.47314453, -0.89160156, -0.35986328, -0.7739258, 1.0322266, 0.40454102, 0.7055664, 1.3193359, -1.5605469, -1.3085938, 1.1123047, 0.9394531, 0.23388672, 2.9492188, 1.3134766, 0.88378906, -0.21179199, 0.63134766, -1.5917969, -1.7919922, -1.4335938, -1.1660156, 2.6464844, -0.22021484, 1.6914062, 0.12475586, 1.6074219, 1.2773438, -0.21923828, -1.3505859, -1.9990234, 0.03265381, 1.5703125, 2.0273438, -3.0546875, -0.11437988, -0.35742188, 2.8144531, 0.32885742, -0.6635742, 1.2138672, -0.6875, -1.6640625, -0.25439453, 0.0046310425, -0.23742676, -1.3583984, -0.4033203, 0.15441895, -0.33569336, 1.640625, -1.2314453, 0.012916565, 1.0234375, 0.96972656, -1.2822266, -2.1074219, 0.5834961, 0.39624023, 1.7001953, -0.9013672, 0.69189453, -2.5644531, -0.38012695, 0.08691406, 1.5146484, 1.5478516, 0.28051758, -0.02217102, 0.6269531, -3.5058594, 0.33789062, -3.6875, 0.5029297, 2.4628906, 1.1572266, -1.6738281, 0.3491211, 3.8886719, 0.48388672, 2.7265625, -0.3630371, -1.8359375, -2.859375, 0.3293457, 1.3037109, 1.1425781, -2.1757812, -0.043426514, 0.11065674, -0.4716797, -0.90527344, -0.111328125, 0.17980957, -0.73535156, -1.7314453, 0.70458984, 0.11431885, -2.5996094, -0.63378906, -1.90625, -3.1777344, 1.9277344, 1.0751953, 3.8359375, -1.1474609, -0.41235352, 2.8183594, -4.1171875, 0.12213135, -2.0351562, -2.0136719, -0.39379883, 0.8198242, 2.4160156, 2.8261719, 2, -2.8945312, -0.097351074, 1.3232422, 0.20166016, 0.6176758, 0.041412354, 0.11413574, -0.88671875, -2.3476562, 0.76171875, 2.5566406, -0.5048828, 0.98339844, -0.8486328, -1.4609375, 1.7109375, -0.5932617, -1.4609375, 0.9526367, -0.3491211, -1.3759766, 1.4580078, 2.5234375, 0.14379883, -0.5566406, 1.4501953, -1.9472656, 0.9326172, -0.07550049, 0.5566406, -1.2783203, -2.2714844, -0.7441406, -0.24060059, -2.859375, -1.1279297, -1.2792969, -0.05230713, 0.6557617, -3.1054688, 1.1982422, -1.2509766, -2.484375, -1.8408203, 0.8930664, -0.74853516, 3.203125, -1.2167969, 1.1132812, 0.0335083, -2.4804688, 0.06124878, -1.2470703, 2.5800781, 1.4912109, -3.5625, -1.1318359, -0.15209961, 1.8251953, 2.3574219, -0.26464844, 1.2050781, -0.8364258, -0.60302734, -2.7265625, 1.9824219, -0.11248779, -1.0673828, 1.1318359, 1.3466797, -1.8623047, 0.90722656, -0.953125, 1.8789062, 4.125, -1.1416016, 1.1748047, -0.9897461, 0.11236572, -0.53759766, 0.02696228, -1.8232422, 0.7084961, -0.19006348, -2.1132812, 1.6308594, -0.3173828, 0.8232422, -1.5273438, 1.0800781, -1.2207031, 4.0625, -0.22167969, -0.23937988, -1.4199219, -0.70458984, -1.4267578, 1.0009766, 0.37890625, -0.6040039, 0.26293945, -0.60253906, -2.7246094, -2.1386719, -1.6865234, 2.1523438, -1.2070312, -0.2709961, -1.2119141, 1.3173828, -1.6240234, 3.6933594, -1.6259766, 4.3046875, 0.07006836, -1.3710938, -2.4453125, 0.004371643, -1.3115234, -2.0625, 0.040527344, 1.2255859, 0.2590332, 1.2001953, 0.4519043, -0.9980469, -0.71240234, 2.7304688, 1.1503906, -0.16516113, 2.1835938, 1.1210938, -2.1054688, 0.5649414, 1.9638672, 4.0703125, -1.5185547, -0.17321777, 1.2314453, 0.73046875, 0.0062408447, 1.0390625, 1.7978516, -1.5146484, 0.09643555, -0.9145508, -0.97753906, -2.453125, -0.01777649, 1.3515625, -1.3496094, 1.0039062, 3.0234375, -0.07318115, 1.0234375, 1.7753906, 1.6640625, -0.1607666, -4.4492188, 1.9111328, 0.18115234, 0.019226074, -0.8808594, -0.92871094, -1.3652344, 0.90234375, -0.34521484, 0.7895508, -1.0068359, -0.47387695, 0.25610352, 2.859375, -1.7470703, -2.0410156, -1.0673828, -0.7011719, -0.21728516, -2.3359375, -0.062469482, -0.2758789, -3, -0.86621094, -0.76171875, -1.4169922, -0.021148682, 2.3261719, -0.7636719, -1.6748047, -0.35546875, 3.6328125, -0.42016602, -1.109375, -1.0625, 1.7431641, -0.24731445, 0.54248047, -0.06689453, -2.0507812, 1.5458984, 0.2199707, 2.0488281, 2.0410156, -1.890625, 0.01335907, 0.25024414, -1.6806641, -0.33666992, 1.0458984, 1.7802734, 2.5273438, -2.4375, 1.0859375, -3.0917969, -1.1103516, 0.10687256, -4.78125, 0.7314453, 0.9589844, -0.34594727, 1.4941406, -0.82958984, 0.7739258, -1.2451172, -0.23120117, 1.1972656, 1.2509766, 1.2021484, -2.0996094, -1.765625, 1.4541016, 0.94970703, -0.38867188, 0.6582031, 1.5253906, -0.6147461, 3.8066406, -1.0634766, 0.5888672, 1.1503906, -0.5415039, -0.39794922, -0.6801758, -0.45874023, -0.109313965, 0.2644043, 1.2109375, -0.8852539, -0.15856934, -0.4255371, -0.37475586, 2.5898438, -1.6650391, 1.8144531, -1.7226562, 1.5449219, -1.8535156, 0.49243164, -3.7617188, 0.62890625, -0.6201172, -1.5556641, 1.4726562, 1.6005859, -0.28295898, -0.29833984, -0.31225586, -0.36254883, -1.9326172, -3.2265625, -0.032684326, 1.1318359, -0.43896484, -1.3359375, 0.43725586, -0.97216797, 0.4350586, 0.06011963, -0.5097656, -1.7900391, -1.4199219, 0.13232422, 3.28125, 0.18054199, 1.9638672, -0.06768799, -1.9453125, -0.58203125, 0.2861328, -1.3388672, -2.5683594, -1.8261719, 0.23632812, 1.3925781, -0.7104492, -1.2294922, -1.6376953, 1.4365234, 0.59716797, 0.049346924, 2.0371094, 2.3476562, -0.80810547, 5.65625, -0.0026130676, -1.9296875, 0.3942871, -2.7050781, 1.8603516, 2.3066406, -1.1826172, 0.64990234, -1.1337891, -1.7158203, -0.42285156, -2.5078125, -0.98046875, 0.24658203, 0.19665527, -0.2446289, 2.1582031, 0.82470703, 1.5576172, -0.52783203, -0.8828125, 0.99560547, -0.09655762, -2.2695312, 1.7861328, 1.3779297, -0.46264648, -1.3125, 1.0126953, 1.1455078, -0.26513672, 4.0195312, 1.8925781, 0.48950195, -0.36865234, -0.24816895, 0.55859375, 1.2675781, 0.23962402, 0.55126953, 0.46850586, 1.5244141, -0.6748047, 1.1601562, -0.4650879, 1.9824219, 2.3242188, 0.4506836, -0.16223145, 2.5625, 1.7675781, -0.8442383, 1.0712891, -0.4609375, -0.10864258, -0.7480469, 2.1777344, -5.8710938, 0.9165039, 0.83203125, -1.1181641, 0.27856445, -3.1640625, -1.3876953, 2.296875, 0.61621094, 0.8232422, 1.6835938, -2.421875, -0.13366699, 0.82128906, -2.9628906, -0.7915039, -0.37597656, 1.4931641, 0.26245117, -2.2089844, 1.0478516, -1.0917969, -0.9863281, -2.9316406, -1.0107422, -1.6376953, 0.8769531, 3.0742188, 2.2050781, 1.46875, -0.40795898, 1.9052734, -2.3886719, 2.40625, -3.2148438, 2.2167969, -2.4316406, 0.3046875, 2.2148438, -3.0078125, 1.1337891, -2.6503906, 2.1816406, -0.32373047, 1.5888672, 1.4169922, -2.5019531, -2.5351562, 2.3691406, -2.3945312, -2.5546875, -0.40478516, -0.1361084, 1.0527344, 0.050994873, 0.6171875, -0.57958984, -0.74121094, -1.6982422, -1.6015625, -0.18835449, 1.1015625, 0.7861328, -1.8417969, -0.21228027, -0.7895508, -0.36645508, -1.6708984, 0.36254883, 0.23791504, -2.2539062, -2.1289062, 0.12402344, 1.1621094, -2.4433594, -1.6679688, 3.0742188, -0.047943115, 1.2568359, 0.6669922, 2.8300781, 0.033325195, 0.7885742, 0.98046875, 1.0390625, -0.10461426, 0.24157715, 3.8398438, -2.2480469, 0.32641602, -1.4423828, -3.5566406, 2.1503906, -0.5776367, -0.58984375, 1.7128906, -2.0273438, 1.5556641, -0.76416016, -2.1113281, -0.016708374, -0.7910156, 0.8388672, 0.27807617, -0.5439453, -3.4257812, -1.3466797, -1.6738281, -1.6240234, -0.15637207, -0.9970703, -0.36889648, 0.4489746, 0.2602539, 0.36157227, -1.1035156, 1.6708984, 1.9785156, 0.90722656, 0.6123047, 1.1230469, 1.9511719, 1.0078125, -1.9550781, -1.9628906, 1.6943359, 0.48950195, -1.84375, 0.58447266, -1.4541016, -3.3496094, -0.82177734, 0.7495117, 0.53564453, 3.2265625, 1.7099609, -0.37329102, -2.3359375, -0.037322998, -3.140625, 2.9453125, 0.64453125, 2.1445312, -1.8603516, 3.9257812, -2.8867188, -0.02796936, 2.5957031, -0.47045898, 1.2470703, -0.796875, -2.6425781, 1.4101562, -0.14318848, 0.16748047, -1.1181641, -0.69628906, -1.9453125, 1.1503906, 0.7133789, -0.93603516, -0.6508789, 3.0195312, -2.4550781, 2.0683594, 2.2753906, -1.1533203, -2.3652344, 0.37426758, 0.640625, -1.5283203, 0.101745605, -0.4008789, 1.5732422, 0.75439453, -1.03125, -1.8789062, 0.11743164, 1.5996094, 0.7001953, 3.21875, 1.8964844, 0.3244629, 3.4492188, 2.4316406, 0.96240234, 1.5126953, 1.2675781, 1.0126953, -0.8251953, 4.59375, -0.61376953, -1.6884766, 0.7192383, 1.5214844, -1.3671875, 1.875, -0.46435547, 0.21447754, -1.9873047, 1.03125, 3.9140625, -1.6162109, 0.012763977, -2.4628906, 0.8095703, 0.48706055, -0.6225586, -1.5009766, 1.9580078, 0.24157715, 1.3925781, 2.8828125, 1.1650391, 0.5600586, 1.2373047, -1.2705078, 1.0429688, -0.27246094, -0.82910156, -1.1699219, 0.78759766, 1.34375, 0.13903809, 0.9584961, 0.8125, 1.1816406, -0.5961914, 1.2304688, 0.94921875, -0.3161621, -1.1650391, -0.9111328, 1.4384766, -0.5576172, 0.0982666, -1.4482422, -0.39233398, 0.40234375, 3.6464844, 1.1386719, 2.3984375, 1.6738281, -3.5234375, 3.0625, 0.1706543, -0.008598328, -0.6269531, 1.0634766, -1.8144531, -0.24304199, -2.1230469, 2.6289062, 1.5029297, 0.050231934, 1.8134766, -0.9189453, -0.75341797, 2.1132812, 1.4140625, 0.32226562, 1.6611328, -2.9238281, 0.98828125, -1.0380859, 3.0742188, -0.71875, 2.3125, 1.9628906, 0.33251953, 0.8857422, 1.6220703, 1.8320312, -0.07067871, 0.22668457, -1.6855469, -1.2128906, -1.7431641, -1.46875, -2.6875, 0.027526855, 0.013267517, 0.21911621, -0.4802246, -0.025970459, 1.3271484, 1.8408203, 1.1386719, 1.8027344, -1.6044922, 0.6381836, 0.6923828, 1.4169922, -1.2402344, -0.9238281, -0.34423828, 0.7832031, -0.7817383, 3.0566406, 0.39868164, -0.12646484, -1.0830078, -0.25512695, 0.5205078, 0.8520508, -0.026901245, -1.1464844, -1.9169922, -2.3242188, -0.7866211, 1.3623047, 2.0117188, 3.5566406, 1.2626953, -1.4794922, -1.3662109, -1.5146484, 0.45825195, 0.26342773, -1.5087891, -0.140625, 2.4707031, 1.9228516, -0.16516113, -1.8115234, -3.4628906, 1.2734375, 0.79296875, 0.8564453, 1.9111328, -1.7285156, -1.5546875, -1.1113281, 0.46972656, 0.8461914, -2.3515625, 0.07354736, -0.39111328, 1.6035156, 0.14147949, 1.1513672, 0.46411133, 0.5385742, 0.9892578, 2.6816406, 1.3769531, 0.859375, 0.8989258, 1.8876953, 1.9306641, -1.3710938, 0.9511719, 0.2602539, 0.057159424, -1.3623047, -1.4599609, -0.9301758, -1.5976562, 1.9150391, -0.02571106, -2.6601562]}, "B086Z49LJ5": {"id": "B086Z49LJ5", "original": "Brand: DuroMax\nName: DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue\nDescription: \nFeatures: All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance\nThis generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice\nEquipped with DuroMax \u201cCO Alert Technology\u201d that will automatically shut down the generator if an unsafe level of carbon monoxide is detected\nBuilt using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years\nThe fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!\n", "embedding": [-0.3779297, -0.08557129, 0.91015625, 0.7910156, -1.65625, 0.21838379, 2.6425781, 0.44848633, -1.6933594, 1.5126953, 0.01802063, 0.89941406, 0.39868164, -0.72802734, -0.1385498, -0.35864258, -0.06060791, 1.8974609, 0.28686523, -0.84716797, 2.0371094, 0.39770508, 0.66064453, 1.7617188, 0.56640625, -0.6948242, 2.9101562, -2.5136719, -1.2392578, 0.76904297, 1.3037109, -0.024536133, -0.6616211, 0.79345703, -1.6337891, 1.5751953, 0.09875488, 1.2128906, -3.0429688, 0.00054073334, -1.2880859, 0.58251953, 2.1523438, -0.7167969, -2.1835938, -3.1113281, 0.7011719, -0.08526611, -0.025939941, 1.1181641, 2.0234375, 2.5703125, 0.57714844, -0.7783203, 0.87109375, 2.8574219, 1.1552734, -1.8613281, 3.0136719, 3.1425781, -0.8276367, 0.45507812, -1.7441406, 0.48266602, -1.9169922, -0.37182617, 0.46240234, 0.18884277, -1.3847656, -2.8867188, 2.4589844, 1.5996094, -0.29516602, -0.88427734, -0.5966797, 0.87060547, -3.3808594, 2.0390625, 2.4726562, 1.0400391, -0.7246094, 0.5083008, 1.7841797, -1.2939453, 0.17651367, -0.29223633, -0.15344238, 0.0925293, -0.5595703, 2.25, -4.0976562, 2.1113281, -3.0800781, -3.9394531, 2.3515625, -0.23022461, -0.85009766, 0.8691406, 1.5439453, 2.4628906, 0.2697754, 1.2216797, -0.7705078, 0.97558594, -0.39770508, 0.60546875, 1.0644531, 0.77734375, -1.7558594, 0.5571289, -2.0351562, 2.1699219, 0.66845703, -0.71972656, -0.98046875, -1.3105469, 1.8740234, -1.0078125, 4.9257812, 0.41088867, 2.8828125, -1.9238281, 1.6875, -0.51220703, 2.9863281, 0.67333984, 1.3925781, 2.9726562, 2.9394531, -0.099243164, 0.70458984, 0.04925537, 1.4267578, -0.68115234, -0.18676758, -1.3300781, 0.5991211, -2.2363281, -2.4335938, -1.0585938, -2.7128906, -0.5834961, 1.3193359, -0.9970703, -3.4824219, -1.2978516, -0.93652344, -0.9838867, 0.83740234, -2.0488281, 1.8544922, -3.4648438, -0.24743652, -2.9511719, 1.1152344, 0.08673096, 0.34350586, -0.9472656, 2.1152344, 0.76464844, -0.012619019, 0.13952637, -1.4570312, -0.25268555, 0.5761719, -3.7636719, 0.9526367, 1.0224609, -0.7573242, -1.5537109, -2.515625, -2.1738281, 0.037475586, -1.7304688, 1.1953125, -3.4804688, -0.7709961, 0.19140625, 1.4072266, -0.99072266, -0.87060547, 1.7724609, -1.1757812, -0.072387695, 0.39941406, 0.103637695, 2.5664062, -0.39892578, -0.17041016, -2.2246094, -1.3808594, 0.71484375, -1.4980469, 0.97509766, 1.8916016, -2.8046875, -1.7714844, -1.7207031, 4.28125, -0.43310547, 0.09967041, -1.5732422, -0.7285156, -2.0292969, -1.1738281, -3.1992188, 0.5239258, -1.6484375, 0.32226562, -1.2919922, 0.6791992, 0.17749023, 2.8515625, -1.8164062, -2.0761719, -2.6914062, -1.9667969, 0.20800781, -1.5976562, 0.61816406, -0.35986328, -0.3022461, 2.4179688, -1.7148438, -0.8251953, 1.8330078, 0.33032227, 0.08282471, -3.1542969, -3.6796875, 0.70947266, 1.0615234, -0.6074219, -1.5625, -0.58935547, 0.87353516, -0.9926758, 1.2597656, 0.5761719, 0.3256836, 1.4980469, 1.3271484, -0.095581055, 1.4990234, 1.6279297, -1.2470703, -0.50878906, 2.4863281, 0.17297363, 0.35668945, -0.51220703, -0.09399414, 0.47998047, -1.4970703, -0.33251953, 0.38598633, 0.28173828, -0.47143555, 0.34814453, -2.7851562, 0.46704102, -0.0010356903, -0.89160156, 0.09094238, -1.8876953, -0.55078125, 2.0449219, -0.7011719, -1.6113281, 0.5097656, 2.3769531, 2.6328125, -0.20727539, 2.3886719, 1.0810547, 1.3867188, 0.3161621, 3.0859375, 2.4140625, 2.9746094, 0.41870117, -1.0205078, -0.7348633, -2.7636719, -0.061431885, -0.63427734, 0.0871582, 1.2148438, -1.3212891, -0.23571777, 1.3632812, -2.0859375, -5.40625, 1.2587891, -0.55908203, 4.65625, 2.3730469, 0.22668457, 1.0478516, -0.1821289, 0.18017578, 0.4494629, -1.4707031, 3.1660156, 0.31103516, -0.03591919, -0.44384766, -2.6035156, 0.6611328, 0.55859375, 1.0244141, -1.0742188, 0.8232422, 0.60595703, -1.8134766, -0.55078125, 2.6757812, -1.9091797, 1.6445312, 1.3115234, -0.17016602, 0.44384766, -0.054351807, -1.4033203, 0.15014648, -1.3447266, 1.4335938, -1.2783203, 0.14770508, -1.5029297, -1.5908203, -0.85595703, 0.72753906, -0.41357422, -0.27319336, -0.11138916, -1.8652344, -1.8642578, 1.3837891, -0.46948242, 0.7036133, -0.6621094, 0.33374023, -1.5, 0.20458984, -1.6132812, -0.60302734, -0.7133789, -1.7490234, -1.6894531, 2.1953125, 2.3769531, 0.8432617, -0.75439453, -1.7851562, -0.031051636, -0.47558594, 3.5390625, -1.7431641, 1.7490234, -0.94921875, 0.7026367, 1.1416016, 0.18371582, 0.6933594, -3.5644531, 0.2355957, -3.2773438, 2.875, 0.6738281, 0.27856445, -0.7519531, 0.27368164, -0.3623047, -1.6113281, 2.0703125, -0.51171875, 0.9980469, -1.6503906, 1.0136719, 1.5068359, -3.3925781, 1.9267578, 0.32983398, -2.1191406, 0.7260742, 1.2021484, -1.4140625, -0.70214844, -2.7910156, 1.6464844, 1.8730469, -1.7724609, 1.1533203, -0.0051727295, -0.67626953, 0.65478516, -1.6582031, 1.7529297, 2.9023438, 0.65185547, -1.3759766, -1.1552734, -0.11236572, -1.2285156, -0.5576172, -1.7558594, -2.4296875, -0.21643066, 2.4042969, 0.4975586, 2.0351562, -1.2148438, -1.1103516, 1.2304688, -3.0546875, 1.3115234, 1.1474609, -0.453125, 1.3027344, -1.0917969, -0.022979736, -2.3085938, -0.57714844, 4.6132812, -0.9238281, 3.4628906, 0.50634766, 0.18664551, -0.39868164, 2.4101562, -0.1239624, -1.3378906, -2.0390625, 3.4628906, -1.1308594, -0.13317871, -0.5605469, 0.34594727, -1.3085938, -1.0195312, 3.0390625, 0.8989258, 3.6894531, 0.79052734, -1.7353516, 1.90625, 0.5126953, 0.98876953, 0.93115234, -1.3027344, 0.23950195, -1.5693359, -1.4199219, -0.43017578, 1.2900391, 1.1386719, 0.32250977, 1.4892578, 1.5703125, -0.4584961, 0.7963867, 0.053131104, 0.92041016, -0.7919922, 3.7285156, 3.4707031, -1.2753906, 2.9003906, -1.7480469, -0.1850586, 1.6572266, -0.7832031, 0.7270508, 3.6757812, 0.3623047, 0.92822266, 0.29882812, -0.54589844, -0.24182129, -1.5205078, -0.8510742, -0.7973633, -0.22155762, 1.2363281, -1.8828125, -0.2487793, -2.1386719, -0.09698486, -1.5029297, 1.2734375, -0.21191406, -0.103515625, -0.061279297, -0.95751953, -1.3417969, -0.25708008, -0.6557617, 1.4707031, 2.5878906, 0.0042266846, 1.0683594, -1.5351562, 1.7910156, 0.68066406, -0.26611328, -0.72314453, -0.8959961, -2.0664062, -0.6611328, -0.39794922, 0.34228516, 0.57958984, -1.3994141, 1.5458984, 0.9770508, -0.009109497, -0.29736328, 0.5917969, 0.84716797, 1.4726562, -1.8310547, 1.3232422, 0.5678711, 1.1806641, 0.101379395, 1.8554688, 3.4433594, -1.5566406, -0.96240234, -1.2373047, -1.6582031, 1.4365234, -1.3662109, 0.12792969, 4.4882812, 0.45874023, 0.9091797, -0.20654297, 0.25268555, -3.5566406, -1.7509766, -0.6621094, 1.5820312, -2.9140625, -2.3925781, 0.13439941, 0.30200195, -0.56152344, 1.4511719, -2.609375, 0.30126953, -0.17822266, 1.0527344, 0.59521484, 2.8300781, -1.2285156, -0.53222656, -0.7705078, 0.6826172, 2.5644531, -0.12524414, -0.1505127, -2.2519531, 1.0263672, -0.65234375, -1.1855469, 1.3544922, 3.4941406, -0.5917969, -0.35986328, 1.3359375, 0.7573242, 0.9580078, 0.49682617, -2.3359375, -0.81152344, -0.17687988, 2.1855469, -2.4785156, -1.0029297, 1.2070312, -2.2226562, -0.90185547, -0.7050781, 0.47973633, 1.46875, 3.6445312, -0.03933716, 1.8544922, 2.1386719, -3.5605469, 0.04840088, -0.6147461, 0.37670898, -1.0654297, -1.4853516, -1.1230469, -1.1005859, 0.58154297, -0.83984375, -1.3007812, 1.5087891, 0.44384766, 0.70947266, 0.35351562, 0.5732422, -0.5576172, -0.0026130676, 3.046875, -0.32128906, -0.22973633, 0.6904297, 0.69189453, -0.9301758, 1.9306641, -0.87402344, -0.32788086, 1.2626953, -1.2226562, -2.1914062, -0.81347656, -0.96533203, -1.7626953, -0.84716797, 0.24645996, 0.24487305, 1.8037109, -1.0800781, 0.6020508, 1.3691406, 0.31396484, -2.5058594, 1.0527344, 1.1855469, 0.5317383, 1.1757812, -0.9628906, 3.9960938, 0.61572266, 0.25097656, 1.3916016, 1.9560547, -1.7890625, -0.21716309, 1.1650391, -0.44799805, -1.1230469, 1.6845703, 0.85791016, 0.5053711, 0.6303711, -0.7919922, 1.2177734, -0.21203613, 3.4160156, 0.57470703, -0.65185547, -0.7558594, 1.0341797, -0.5292969, -0.3864746, -0.009086609, 0.14758301, -0.43188477, 1.3310547, -0.18273926, 0.5410156, 0.33154297, 0.07543945, -2.5273438, -2.203125, -0.9824219, -0.010856628, -0.86865234, -0.24743652, -1.3867188, 0.09729004, 0.5732422, 0.6425781, 0.61572266, -1.5742188, 0.31884766, 0.9848633, 0.36083984, 0.10913086, -0.36279297, 1.0439453, -4.890625, -0.4338379, 1.2626953, -0.79345703, 1.6259766, 2.8085938, -1.7294922, -1.5107422, -2.984375, -0.19189453, 1.7421875, -1.1972656, -1.2851562, 1.1357422, -0.9892578, 1.4375, 0.79052734, -2.0722656, -2.328125, 1.4150391, 0.29711914, -0.44555664, -0.72314453, -0.37670898, -2.2910156, -4.4414062, -2.0507812, 0.8227539, -0.50927734, -0.23144531, 0.88427734, -3.109375, 0.90625, 0.7832031, 1.9433594, -1.8056641, 1.4755859, -1.3369141, 1.125, -0.7705078, -0.29467773, -1.2734375, 0.2939453, 1.7587891, -1.9863281, 1.8886719, -3.3066406, -2.9003906, -2.1054688, 2.0371094, -0.9951172, 0.9326172, -0.81640625, 1.4785156, 2.7636719, -0.29248047, -0.25952148, 0.7919922, -1.7402344, -0.38745117, -0.65722656, -2.1386719, -0.9428711, 1.7158203, 0.14135742, 1.4658203, 2.8300781, 2.5957031, 0.059051514, -0.18603516, -2.3007812, 1.3681641, 0.33496094, 0.17687988, -0.45092773, 1.8837891, 2.3808594, -2.4785156, 0.12854004, -1.7070312, 0.24645996, -1.2539062, 0.084350586, -0.9272461, -0.48168945, 0.36108398, 0.7446289, -0.27319336, 1.2792969, 0.06567383, 0.14526367, -0.95654297, -0.24291992, 0.13720703, -1.5332031, 2.5996094, 1.7490234, -0.6875, -3.890625, 0.33862305, 1.3623047, -0.09387207, 2.1699219, -0.27148438, -0.38256836, -2.375, -1.6708984, -1.0966797, 1.7939453, -0.30932617, 0.6611328, -0.3251953, 0.5307617, 1.1162109, 0.7661133, -0.5317383, 1.5839844, -1.1171875, -1.0634766, 0.87597656, 2.2792969, -2.4550781, 1.0361328, -1.0957031, 0.022079468, 0.55126953, -3.0039062, 0.94677734, -1.6318359, -1.4433594, 0.07305908, 0.5644531, -0.65771484, 0.4489746, -1.09375, -0.6958008, 0.2939453, 2.1191406, -1.4189453, -1.8037109, 3.1445312, -1.1396484, -1.8505859, 1.3642578, -1.9833984, -0.049743652, 2.0078125, -2.6191406, 2.5683594, -0.60595703, 0.9394531, -1.4755859, -0.2133789, -2.2207031, 0.96875, 1.2197266, 1.2998047, 1.34375, 1.6689453, -0.44702148, 0.36572266, 0.53759766, -0.3935547, -0.025619507, 1.1650391, 1.1083984, -0.47192383, 1.8574219, -2.0644531, -0.49291992, -0.49414062, -1.2001953, -2.3769531, 0.421875, 2.8046875, -3.8867188, 1.59375, 0.77734375, 1.6074219, -2.9179688, -0.11566162, 0.02583313, 0.93847656, -0.50097656, 0.90771484, 2.015625, 0.105041504, -0.7519531, 1.7177734, -3.0957031, -0.9375, -1.1601562, -0.21179199, 0.015472412, -0.12634277, 2.0917969, -0.7675781, -1.9570312, 1.6757812, 1.6152344, 2.0136719, 0.38452148, -0.04953003, 1.1191406, -2.1191406, 2.2011719, -0.045532227, 4.8046875, 2.171875, 0.73876953, 2.2441406, -0.4892578, -0.52246094, -1.6972656, 0.5024414, 0.4099121, -0.5371094, -0.35668945, -3.1191406, 0.4267578, -1.3476562, 2.0175781, -2.3261719, 1.3203125, -0.45629883, -0.47436523, 0.77978516, 1.7958984, 0.8208008, 2.6113281, 0.6582031, -0.39746094, 2.6464844, 1.7832031, 0.39282227, -0.14831543, 1.3056641, 1.0107422, 1.2685547, 0.13684082, 1.1503906, 0.3552246, -1.0859375, -1.2060547, 0.20080566, 2.4355469, -0.08605957, 0.34033203, -1.1074219, 2.4941406, -0.2277832, -2.5585938, -1.8583984, -0.29223633, 0.22705078, 0.35986328, -2.1113281, 0.96191406, 1.9482422, 1.4707031, 3.8417969, -1.53125, -1.5615234, 0.9223633, 0.13745117, 0.63720703, 0.32958984, -0.37939453, -1.8730469, -1.2675781, 0.05041504, -2.3886719, 0.9536133, 0.9736328, 0.5371094, -0.8276367, -2.5390625, -2.5019531, 0.41625977, -0.8989258, 0.97021484, 0.77783203, -1.5537109, 2.5605469, 1.8535156, -1.7851562, 2.3574219, 3.1660156, -0.8823242, 2.1699219, -1.0917969, -1.9580078, -0.7910156, -3.0703125, -0.6455078, 1.5751953, 0.5932617, -0.13574219, 0.99902344, -3.4609375, -1.2392578, -1.8261719, -1.0664062, 1.2685547, -1.1103516, 0.24890137, 1.7646484, 0.37402344, 1.1152344, -0.7446289, -0.41503906, -0.07312012, -0.9057617, 1.1835938, 0.74609375, -1.1132812, 2.2460938, 1.7705078, -0.07470703, -0.14819336, 1.4619141, -0.22387695, 0.6669922, -0.34960938, -2.7460938, -1.7333984, -0.5966797, 0.95996094, -1.9589844, 1.7949219, 1.7773438, 0.36010742, 0.8823242, -0.6123047, -2.1445312, -3.1523438]}, "B01MSYK6BU": {"id": "B01MSYK6BU", "original": "Brand: only fire\nName: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch\nDescription: Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.\nFeatures: Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel.\nPerfect replacement part for charcoal or gas grill.\nUsed for picnic, camping, outdoor cooking, turn your fire pit into a grill.\nHinged center to fold in half makes it easy to add Charcoals, logs and clean embers.\nDouble-check the dimensions of your grills or fire pit before ordering.!\n", "embedding": [-0.7758789, 0.44091797, 1.0244141, -0.56103516, -0.46704102, 0.4897461, 2.2558594, -0.076538086, 0.3540039, 2.0234375, -1.6044922, -2.2949219, -0.16174316, -3.734375, 0.12548828, -0.21582031, -0.49389648, 0.1340332, 1.1757812, 0.2775879, 1.0351562, 0.52197266, -0.31958008, 0.13781738, 1.2001953, -0.21520996, 2.8398438, -1.9355469, 1.5380859, -0.41137695, 1.7929688, 2.7148438, 1.7919922, 1.6181641, -3.1777344, 0.31323242, -2.328125, 2.2617188, -0.84716797, -1.2919922, 0.46972656, -2.6152344, 3.1621094, 1.5410156, -2.5683594, 0.72314453, 2.1191406, 1.4755859, -1.4023438, -2.7265625, 2.5878906, 2.5214844, 0.27856445, 2.8984375, -1.3974609, 1.7089844, -3.5390625, -2.6191406, 1.265625, -2.0019531, 2.8613281, 0.4802246, -0.62646484, 0.4423828, -0.5727539, -0.31762695, -0.63427734, -0.43237305, -1.5, -0.6791992, 0.68847656, -1.5595703, -0.7529297, -0.5288086, 2.8398438, -0.90722656, -0.7529297, 0.30029297, -0.7661133, -0.14819336, -1.8056641, 3.2832031, -0.0826416, -1.2246094, 1.0585938, -1.6542969, -2.1933594, -2.0917969, 0.5449219, 0.8886719, 0.17175293, 2.1113281, -1.6289062, -1.5488281, 1.4902344, -1.6572266, 2.1660156, -0.67041016, -1.1708984, 0.61035156, -1.2636719, 2.3945312, -1.8779297, -0.5888672, -3.4511719, -0.35180664, 1.3740234, -0.5078125, 0.45654297, 1.0351562, -1.3837891, 2.484375, -0.16931152, 0.29101562, 0.7338867, 0.4572754, 0.049865723, 1.3535156, 3.4980469, -0.81152344, 4.2773438, 1.1367188, 0.44458008, -2.5507812, 0.93408203, 0.5576172, -0.34106445, 1.703125, 2.3574219, -1.5107422, -0.9291992, -3.375, 1.0722656, 0.65478516, -3.1679688, -0.53808594, -3.0761719, 2.0390625, -2.9160156, 2.4355469, -1.0644531, 2.6035156, 2.3457031, -0.16931152, -5.0234375, 1.1923828, -1.4140625, 3.7070312, -0.12817383, -2.5878906, 1.3994141, -0.36010742, 0.46362305, -1.9755859, 2.5292969, -1.0771484, 0.28979492, 0.19628906, 3.125, -0.9448242, 1.9375, -3.1503906, -0.44726562, 1.9775391, 0.3076172, -1.40625, -1.3945312, 1.9628906, 1.0820312, 0.7573242, 1.2958984, -1.2705078, 1.0195312, 0.73583984, 0.8305664, 0.21032715, -0.61035156, 2.46875, -0.7709961, -0.1427002, -1.0029297, -1.75, 2.6992188, 2.0449219, 0.11608887, -0.22827148, 0.96240234, -0.18981934, 1.8505859, -0.13842773, -1.3359375, -0.14050293, -0.64160156, 0.25878906, 0.024932861, -1.7021484, -0.5053711, -2.6796875, -0.42407227, 1.0791016, -1.5947266, -0.025222778, -1.7958984, 0.74560547, -1.8447266, -0.095703125, -0.96728516, 0.96240234, 2.2011719, 0.73046875, 1.140625, -1.9287109, 0.6503906, -0.4814453, -0.2133789, -2.4667969, 0.35058594, 0.4987793, 2.1679688, 2.1621094, -0.24389648, -0.60791016, 0.15979004, 3.5839844, -1.2636719, 0.9536133, -0.69140625, -0.3984375, -0.41748047, -1.9970703, 3.0078125, -0.63378906, -0.62402344, 1.2880859, -2.0625, 3.2734375, 2.6601562, -2.0058594, 1.0644531, -0.2927246, 0.85595703, -1.3398438, 1.0302734, -0.98291016, -0.049865723, -1.4589844, -1.2275391, 2.1679688, 0.9746094, -2.1542969, -1.1337891, 1.5771484, 1.1425781, 2.2207031, -0.5864258, 0.3125, -0.95703125, -1.7919922, -2.2675781, -0.9033203, 0.55126953, 1.4863281, 0.2578125, 0.31518555, 2.0390625, -1.2871094, 2.2480469, -1.8496094, -3.3320312, -1.5976562, 0.14709473, 0.14453125, 1.3037109, 0.14025879, 0.080200195, 0.04534912, 0.34399414, -0.004814148, 1.5986328, 0.04748535, 0.12854004, 0.5605469, 3.9453125, 1.1943359, -2.90625, -1.4345703, 0.10229492, -0.3762207, 0.79296875, 0.2861328, 4.015625, 1.8955078, -0.71435547, 3.1796875, -2.6230469, 0.9794922, 1.2246094, -1.6611328, 0.68896484, -0.123291016, 0.60839844, 2.1386719, 2.015625, 2.7949219, -1.8554688, 0.5761719, 1.2636719, -3.9921875, -0.70751953, 4.0234375, -0.14196777, -0.95751953, -2.0761719, 0.27490234, -2.4882812, -0.90625, 1.9384766, -1.234375, 3.9980469, 2.0058594, 1.5800781, -0.39135742, -0.0003247261, -3.0175781, -2.0253906, 1.5527344, -0.86816406, 1.0273438, 0.7895508, -1.5976562, -2.0917969, -1.3203125, -0.045898438, -1.7910156, -2.7714844, -1.9228516, -1.0400391, -0.0075798035, 0.6015625, -0.03805542, -0.11090088, 1.7275391, -3.8691406, 0.055847168, -1.1308594, -1.9462891, -0.4255371, -1.5283203, -0.8535156, 1.75, -1.6621094, 1.3388672, -0.43115234, -4.578125, 0.60253906, 0.90722656, 1.6425781, 0.54541016, -0.84716797, -0.013641357, -0.13464355, 2.1445312, 0.98828125, 2.0722656, 0.6020508, -1.9580078, -0.75927734, -2.6347656, 0.81396484, 0.8725586, -0.24389648, -1.8642578, 1.1591797, -0.8588867, -3.0097656, -0.6010742, -1.7294922, 3.2851562, -0.93408203, 3.4375, -0.38012695, 0.5336914, 0.27807617, 1.3769531, -1.5947266, -0.9536133, 1.7626953, -1.0966797, -3.1699219, -2.8046875, -1.3789062, -0.24255371, -1.4003906, -0.40820312, 1.546875, -1.2695312, 0.8461914, -1.2333984, -0.8310547, 1.140625, -0.6489258, 0.52246094, 2.2714844, -0.9477539, -0.93652344, 0.45898438, 0.28710938, 0.8305664, 2.0898438, -3.1757812, -1.40625, 0.17382812, 0.17858887, 0.008369446, -0.86621094, -1.9609375, 0.30517578, -0.35888672, -1.6445312, 2.7421875, -2.3925781, -1.5419922, -4.0742188, -1.2314453, 3.9707031, 0.5756836, -0.24780273, 0.15258789, -1.3574219, 2.2773438, 0.7734375, -1.1777344, -0.8378906, 1.5605469, 2.1796875, -3.5644531, -2.359375, 0.3334961, 3.7636719, -2.4453125, 2.953125, -0.29052734, -0.5698242, 0.7871094, 1.6337891, 0.09954834, 0.6503906, -3.0117188, 1.6455078, 1.9824219, 1.3095703, -1.2685547, -1.4873047, 0.6669922, 1.28125, 0.49365234, 1.8476562, 0.2763672, 2.71875, 1.5742188, -0.5366211, -0.22546387, 0.055480957, 0.47973633, 1.7587891, -0.22619629, 2.5820312, -1.5244141, -1.6923828, 0.62890625, 0.5541992, 1.6523438, -2.1015625, -0.19067383, 0.75146484, 0.08795166, -0.36914062, -0.4597168, 0.41430664, -2.3652344, -2.1464844, 1.1904297, -1.6035156, -1.5927734, 0.82714844, 0.60058594, -1.3632812, -0.23950195, 2.6445312, -2.0546875, -1.8251953, -1.6328125, 2.625, 1.4492188, -0.27490234, -3.7675781, -1.1337891, -0.1986084, 2.1992188, 0.84521484, -1.0488281, 2.2539062, -2.7148438, 2.3046875, 0.19873047, -0.8564453, 0.6816406, 0.0012655258, -2.2773438, 0.5727539, 0.2668457, 0.51953125, -0.11212158, -2.234375, -0.45239258, -1.9628906, -0.85839844, 0.95703125, -2.6679688, -1.2392578, 1.34375, 0.86328125, -1.3769531, -2.4453125, 2.7050781, -0.66503906, -1.8115234, 0.82373047, -2.4101562, -1.4423828, -2.3085938, -3.2929688, 0.20581055, -1.4013672, 0.63427734, 2.3789062, 0.30322266, -0.89697266, 1.6376953, -0.8354492, -0.9951172, -0.7480469, -1.3398438, 0.6220703, -0.8256836, 0.051940918, 1.2089844, 1.1972656, -0.5727539, -0.69189453, -1.1025391, 0.70703125, 1.2431641, 1.0400391, -2.3261719, 0.5107422, -1.1611328, 0.71972656, 1.1328125, -1.0527344, 0.20153809, -0.7758789, 0.107421875, -0.6870117, 1.5488281, -1.8964844, 1.8388672, 1.4345703, 1.4560547, 0.05340576, 0.16052246, 0.22644043, 0.17980957, 2.1738281, -0.6855469, -2.3632812, -1.1757812, -0.61621094, -0.53808594, 0.53271484, -0.5263672, -0.07720947, -3.5683594, 0.97314453, -2.9921875, 1.0439453, 1.5097656, 1.4707031, -1.2373047, -2.1269531, -1.4472656, -1.9716797, -2.2285156, -0.2109375, 0.59472656, -0.77441406, 0.9736328, -1.6923828, 2.984375, -3.140625, -2.9882812, -1.9335938, 1.4960938, 2.2792969, 0.7910156, 5.9453125, -0.75634766, -0.43530273, 1.9355469, -3.6347656, -3.078125, -0.16589355, -2.1796875, 0.060333252, 1.2412109, -0.4790039, -0.18859863, -1.4755859, 0.04928589, -0.49658203, -0.8027344, -2.7890625, 2.1367188, -3.1113281, -0.70703125, -0.0042304993, 0.19995117, -0.43041992, 0.98095703, -0.6845703, -1.4638672, 2.6230469, -0.25512695, 0.6582031, -0.07861328, -0.47973633, 2.4648438, 0.9277344, 0.44677734, 0.8071289, 1.2148438, 0.00415802, 1.8974609, -2.5742188, -0.0027942657, 0.37963867, 2.2949219, -1.4150391, -2.2246094, 1.3339844, 3.4746094, -2.2285156, 0.7260742, -0.7709961, -2.2285156, 2.6640625, 2.1328125, -4.0039062, -0.2133789, -0.6459961, -2.3964844, 0.12084961, -0.5776367, -2.4121094, -0.16638184, 1.4970703, -0.546875, 0.15466309, -2.1425781, -1.0849609, 0.6230469, -1.7304688, 0.024002075, -2.2539062, -3.3398438, 0.8496094, -1.8720703, -0.099365234, -1.2041016, 1.7109375, 2.375, 1.1474609, -1.1943359, 1.03125, -0.9536133, 1.1757812, 0.23803711, -0.20349121, -1.2236328, -0.18151855, 1.6240234, 0.83251953, 3, -0.7338867, 2.3300781, 0.953125, 1.203125, -0.6386719, 4.109375, -1.0097656, 0.8178711, 3.2089844, -1.4960938, -2.4824219, -1.7939453, 2.3652344, 0.47094727, 2.0136719, 1.4960938, 1.515625, -0.4650879, 0.2878418, -1.4492188, -2.7675781, -1.9404297, -0.328125, -0.36938477, 0.19396973, -0.96240234, -0.041412354, -1.140625, 1.4433594, -0.8701172, 1.5664062, 1.0068359, 0.78759766, -0.18676758, -3.2207031, 1.6933594, 1.0322266, 2.4296875, 0.6347656, 3.1328125, -0.59472656, -2.4277344, 2.0625, 2.7421875, -2.9882812, 1.1777344, 2.078125, 0.56884766, -0.06542969, 1.9541016, -1.53125, -0.6694336, 1.2607422, 0.9580078, 1.3964844, 3.1289062, 0.16235352, 1.0654297, -0.5463867, -1.9853516, 1.65625, -4.9648438, -1.4970703, -0.15197754, -0.7475586, 0.8442383, 0.8720703, -0.8183594, -1.1074219, 0.6064453, 0.98583984, 0.014701843, 1.4003906, -1.0224609, 0.6958008, -4.3554688, -3.3125, -0.8779297, -2.4335938, 0.024749756, -1.2607422, 1.1054688, 2.1523438, -0.3215332, 1.9072266, -0.24987793, 1.6162109, -0.49804688, 1.1367188, 0.59716797, 2.3164062, -0.11090088, -0.52783203, -0.80371094, -0.32202148, -0.87939453, 1.5800781, -1.6689453, -0.94091797, 0.28808594, -1.7119141, -0.8198242, 0.9536133, 1.2753906, 1.9765625, -0.8510742, -1.5507812, -0.49487305, 1.5820312, -0.6611328, 1.9228516, -0.82128906, 0.9267578, -0.56103516, 2.0292969, -1.9228516, -1.5605469, 2.7890625, -2.1855469, -0.8027344, -0.77197266, -0.41992188, -2.0078125, -1.7011719, -1.2021484, -1.9892578, -1.1894531, -1.4560547, 1.5908203, -0.5395508, 0.85546875, -0.94970703, 2.5410156, -0.57128906, 2.1757812, 3.1484375, 0.875, 0.17578125, 0.13024902, -0.54052734, 1.5107422, 2.0449219, 0.32226562, -1.4667969, -0.953125, -1.4287109, -1.1757812, 2.7578125, 1.2685547, 1.5029297, 0.82714844, 2.171875, 1.8007812, 1.3955078, 4.796875, 0.034820557, 1.0488281, 1.4658203, -0.9863281, -2.03125, 2.2578125, 0.58203125, -0.37939453, 0.5986328, -0.1616211, -1.9101562, 0.18225098, -1.4921875, 0.0022945404, 2.3691406, -2.6425781, 2.375, 1.4824219, 0.12231445, -1.5839844, 0.082214355, -2.3105469, -0.8491211, -0.8178711, 0.016143799, 3.375, -0.9238281, -1.1386719, -1.1542969, 0.15722656, -0.66064453, -4.6953125, 0.8623047, 0.51464844, 0.07196045, -1.1757812, 2.5214844, 1.0273438, -0.8105469, 0.9013672, 2.0410156, 3.0078125, 0.55078125, 1.0654297, 0.96972656, 0.016830444, 0.9301758, 3.0019531, -1.5712891, -2.6230469, -0.07299805, -0.00491333, -2.3886719, -1.6494141, 2.6074219, 0.7832031, 1.8857422, 2.3535156, -3.546875, 2.265625, 1.0878906, 1.0742188, -1.7529297, 1.9384766, 0.60839844, -3.3242188, -1.8007812, -0.1628418, 0.90283203, -0.13305664, 0.24780273, -0.5019531, 0.9458008, 0.6269531, 1.2138672, 1.6464844, 0.9301758, -1.5625, 2.2929688, 0.3527832, 3.1894531, -0.63427734, 0.8413086, 0.4465332, 1.4257812, 0.38549805, 0.19934082, 3.015625, -1.5507812, -0.49902344, -1.1220703, -1.3193359, -2.0058594, -2.0898438, -2.9726562, -0.6020508, 2.4980469, -0.60302734, 0.89404297, 0.86083984, 0.44702148, 2.2636719, 1.1777344, -0.46313477, -2.15625, 3.1289062, 0.99365234, -0.22302246, -0.016738892, -0.03970337, 2.5683594, 1.3535156, -2.0507812, 0.34179688, 2.9335938, 0.07543945, -1.4863281, 1.2099609, -0.48779297, 0.0048942566, 0.6176758, 0.46118164, -0.5800781, -0.8510742, 0.96240234, 1.1230469, -0.94189453, 3.4042969, -1.1738281, -2.125, 0.29614258, -3.1582031, -0.81884766, -1.4746094, -2.0117188, -0.15698242, 4.1953125, 2.6972656, 0.5551758, -1.4296875, -3.2050781, 0.79296875, 0.34936523, 1.6699219, -0.17468262, -2.8808594, -0.31518555, 1.5039062, 1.3193359, -0.31982422, 0.017868042, 0.3894043, 1.1787109, -0.31933594, -0.8232422, 1.4775391, 1.0810547, -0.11767578, -1.6357422, 2.7734375, 1.6025391, 0.28735352, 2.4277344, 1.46875, 1.4589844, -4.15625, 1.3876953, -0.20935059, 1.4892578, 0.83496094, -0.1697998, 0.23486328, -0.5126953, -0.8256836, -2.8320312, -1.2021484]}, "B0787R3KFX": {"id": "B0787R3KFX", "original": "Brand: grilljoy\nName: grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men\nDescription:
          Upgrade your grilling today
          This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
          These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

          Handsome set makes a perfect gift.
          An inspired gift idea for your dad, groomsmen or anyone you like.It's an ideal gift for special occasions like gathering, Wedding, birthday, valentine's day, holiday, Christmas.
          Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

          Enjoy your amazing BBQ time
          Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

          All the features you need - None that you don't\u00a0
          1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
          2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
          3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
          4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
          5.Elongated handles keep your hands safe from the heat.
          6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
          7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
          8.dishwasher safe or cleaned quickly with warm water and soap.

          If you have interest,Just click \"add to cart\" to get this grill kit and enjoy your amazing BBQ time!\nFeatures: Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling.\nPremium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe.\nUser-friendly Design --- We design grilling tools from the user's perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns.\nConvenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father\u2019s Day, birthdays, Christmas, wedding and housewarming.\nSatisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.\n", "embedding": [-1.3154297, 3.21875, 1.1318359, 0.016143799, 0.039154053, 1.0019531, 0.92285156, -0.36865234, 1.7373047, -0.24743652, -0.05050659, 1.1435547, 0.22314453, -2.4980469, -2.3007812, 1.6015625, -0.359375, 0.5673828, 2.4199219, 1.9443359, 0.64941406, 1.0390625, 1.0078125, 1.015625, 1.6230469, 0.14355469, 3.9746094, -2.9121094, 2.1425781, 1.1152344, 1.6806641, 0.5229492, 0.5996094, 1.8300781, -3.078125, 0.08294678, 0.5517578, 2.5859375, -0.765625, 0.6621094, -0.7631836, -0.61279297, 1.9267578, 2.2675781, -2.9492188, 0.37597656, -0.51123047, 1.7890625, -1.4814453, -4.390625, 0.6269531, 2.4238281, -0.4946289, 0.96533203, -3.1914062, 2.1992188, -1.7636719, -4.65625, 1.6708984, -0.74658203, 1.3417969, -0.7338867, -0.4519043, -0.96435547, 1.4648438, -1.3193359, 1.1328125, -0.6669922, -0.27514648, -1.2451172, 0.07537842, -0.34887695, -0.89697266, -0.6352539, 0.32958984, -0.055847168, -0.64697266, 1.9501953, 0.048828125, 0.57421875, -1.3466797, 4.0195312, -0.06201172, -2.9589844, 0.52978516, -1.4335938, -0.84765625, 0.9506836, 0.86279297, -1.1933594, -1.2148438, 2.7324219, -1.9970703, -5, 2.4394531, -0.9013672, 0.5473633, -2.0371094, 0.92871094, 1.9365234, -2.1367188, -0.38012695, 0.5625, 0.59033203, -0.62597656, -0.28125, 0.9291992, 0.9370117, -2.7089844, -1.8095703, -2.5292969, 1.8193359, -0.14672852, 0.66796875, -2.4414062, 1.2324219, -1.21875, 0.26416016, 0.85058594, 1.8896484, 2.6484375, 2.015625, -1.1445312, -1.7802734, -0.7446289, 2.6171875, -0.14819336, 4.4648438, 3.5234375, 0.5283203, -0.99853516, -1.2363281, -0.21276855, -1.8349609, 0.2368164, -2.8710938, -1.4658203, -1.2529297, -1.0410156, 2.8515625, -0.28125, 0.7260742, 3.1074219, -0.72998047, -2.7675781, 0.6801758, -0.042633057, 0.19042969, -0.40844727, -0.98876953, 0.6035156, -1.4677734, -0.32983398, -1.2919922, 3.71875, -0.3203125, 2.1074219, -0.3190918, 1.0292969, 0.89404297, 0.29589844, -3.0039062, 0.46118164, 1.5654297, 0.19445801, -3.2617188, -1.3769531, 3.8730469, -0.24279785, 1.5292969, 1.0117188, -1.3261719, 0.7661133, -1.1923828, -0.67871094, -1.0224609, 0.6484375, 2.6855469, 0.06628418, 0.098083496, 1.1533203, -3.8320312, 0.69140625, 3.2089844, 0.7397461, -1.7910156, 2.7460938, 0.5361328, 0.6738281, -0.14819336, 1.5810547, 1.1074219, -0.14807129, 1.3134766, 0.4663086, -2.6835938, -0.26733398, -2.0058594, -0.89941406, 1.2060547, -0.8520508, -3.3496094, 0.17797852, -0.6611328, -1.0244141, -0.88134766, -0.061035156, -0.33398438, 2.5527344, 2.8457031, 1.2871094, -1.5146484, 2.5429688, 0.33935547, 1.1103516, -2.4003906, 1.0751953, -1.3564453, 2.2011719, 2.0429688, -2.4199219, -0.37353516, -1.7138672, 2.5664062, 2.0371094, 0.48242188, -1.3134766, 1.9755859, -1.2480469, 0.26000977, 0.17993164, 0.41992188, 0.6010742, 1.2451172, -1.4804688, 1.3779297, 0.70458984, -2.8085938, -1.6025391, -0.65966797, 1.7089844, -1.5058594, 0.15368652, -1.359375, -0.74316406, -0.8457031, 0.20581055, 2.1054688, -0.24206543, -2.9023438, -1.2695312, 1.9248047, 1.5322266, 0.23388672, -0.34179688, 0.93066406, -1.5810547, 1.2236328, -2.9121094, -0.24584961, 1.3310547, 0.7441406, 0.84716797, 0.7421875, 0.95458984, -0.72998047, 2.984375, -3.0058594, -0.9995117, 0.1340332, 0.007255554, 0.44604492, -0.6611328, -1.171875, 3.0625, 1.0947266, -1.6181641, 0.54296875, 1.1230469, -1.8378906, -0.22595215, 0.01939392, 1.9609375, -2.0058594, -0.3305664, -1.5117188, -1.6865234, -2.6796875, 1.5195312, 2.8652344, 5.5078125, 1.2988281, -1.2587891, 4.6953125, -1.5644531, 1.6474609, 1.515625, 0.19055176, -0.97753906, -0.3552246, -0.8417969, 1.2988281, 0.6376953, 0.65722656, -0.94433594, -0.7607422, 1.0400391, -3.1152344, -0.20629883, 1.5087891, -3.6914062, -0.5708008, 0.8701172, 0.41845703, -1.8125, -0.2607422, -2.5898438, -0.57177734, 0.9501953, 0.25219727, 0.41796875, 2.0761719, 0.7739258, -2.3066406, -0.43066406, 1.1660156, -1.4082031, 1.3212891, 0.5620117, -0.3173828, 1.9511719, 0.21472168, 0.66064453, -1.3046875, -1.6347656, -1.34375, -1.6640625, -1.8466797, 2.3964844, 0.010223389, -0.19543457, -1.4785156, -2.9628906, -0.28637695, -2.8222656, -2.4765625, -2.703125, 0.6113281, 0.31274414, -0.91308594, -2.0449219, 0.78271484, 0.8222656, -3.0957031, 0.6220703, 0.43554688, 1.09375, 0.6713867, -2.5605469, 1.2597656, -1.0410156, -0.2010498, 0.6196289, 1.4013672, -0.70654297, -0.26757812, 2.0507812, -3.1757812, 0.79345703, -1.2246094, -0.5336914, 0.3852539, 0.90478516, -1.3183594, -0.6254883, -0.93359375, -0.22717285, 2.7167969, -2.2910156, 1.4726562, 0.5288086, -0.62353516, 0.020812988, -0.07019043, -0.16467285, -3.2558594, 2.3222656, -1.3251953, 0.9863281, -2.4804688, 1.8330078, -1.8476562, -0.7553711, -0.06359863, 3.390625, -1.9042969, 1.2109375, -1.2939453, -2.4003906, 0.13623047, 1.2275391, 1.3193359, -0.4177246, -0.9628906, -1.1503906, -0.93896484, -0.039489746, -2.8027344, 3.4335938, -1.7392578, -1.6757812, 1.1113281, 0.7504883, 0.2355957, 1.3613281, -2.5996094, 0.90527344, 0.8149414, -2.3144531, -2.1425781, 0.09814453, -1.2158203, -2.9375, -0.015991211, 2.8085938, -0.3996582, 2.5761719, -0.39379883, 0.55029297, 0.63427734, 1.8095703, -0.48583984, -0.34960938, 0.9711914, 1.6367188, -0.47583008, -2.5292969, 1.4990234, 0.25854492, -1.7919922, 1.8681641, 0.39111328, 0.97021484, 2.234375, 1.5205078, 0.74853516, 1.1367188, -1.7412109, 1.7373047, 1.2470703, -0.95214844, -3.4550781, 2.1894531, 0.11968994, -2.4023438, 0.16784668, 1.890625, 0.33032227, 2.8847656, 1.4013672, -0.49780273, -3.1171875, 1.8378906, 1.8378906, 2.2929688, 0.22338867, 1.6826172, -1.1914062, -1.1123047, 0.081848145, -0.97265625, 2.1933594, -3.4609375, -0.9511719, 2.0136719, 0.17578125, 0.05215454, -0.05783081, -0.73779297, -1.0566406, -2.0546875, 0.92089844, -2.4941406, -0.53466797, -0.41870117, -0.8051758, -0.02468872, -0.42651367, 2.9101562, -0.13391113, -0.12988281, -1.6523438, 2.1425781, -0.8305664, -0.30297852, -1.5488281, 1.203125, -0.88671875, 1.4667969, -1.4492188, -1.6044922, 2.4667969, -4.1523438, 1.1621094, 0.028701782, -0.82666016, 0.11566162, 0.7475586, -0.9169922, 0.8754883, 0.4880371, 0.94433594, 0.6972656, -1.0673828, -0.33789062, -0.76123047, 1.5097656, 0.63623047, -1.984375, -1.1523438, 1.0878906, 0.7988281, 1.3173828, -1.1347656, 3.4863281, 1.4169922, -3.0664062, 0.77783203, -3.7910156, -1.3066406, -1.7880859, -3.3066406, -0.03857422, 1.3535156, 1.6689453, 1.3710938, 0.6948242, 0.5332031, 4.8164062, 0.609375, -2.7734375, 0.28955078, 0.16235352, 0.48999023, -0.33618164, 0.22827148, 1.8935547, 0.4074707, -0.49902344, -2.8867188, 1.0576172, -2.0078125, 2.4941406, -0.24536133, -1.5908203, 0.5151367, -1.9296875, 0.6821289, -1.4726562, 0.57714844, -0.98876953, -2.0722656, 0.13183594, 0.10394287, 2.3828125, -0.019760132, 0.68847656, -3.3457031, -0.33984375, 0.025772095, -3.015625, -1.28125, 0.3552246, 4.0976562, -0.90966797, -1.2910156, -0.7011719, -0.3959961, -0.4152832, 0.78271484, 0.78564453, -0.19995117, -1.8759766, 0.2770996, 0.78027344, -0.09289551, 2.7207031, 0.18457031, -2.171875, -1.1875, 3.0175781, -2.2050781, -2.5839844, -0.007873535, -1.7470703, -0.027023315, -1.4736328, -1.5166016, 1.6396484, -1.7851562, -0.10046387, -0.5180664, 1.9804688, 0.7504883, -0.13256836, 4.8945312, -0.7519531, 0.123535156, 1.421875, -2.9941406, -2.0683594, -1.0703125, 1.1171875, -0.4033203, 0.7158203, 0.73095703, -0.08465576, 1.8613281, -0.17785645, 1.1689453, -0.46020508, -1.9404297, 2.1816406, -0.6220703, -0.51171875, -0.09692383, -1.3779297, 2.2128906, 0.15307617, 0.8305664, 2.421875, 0.34521484, -1.1992188, -0.4794922, -0.19067383, -0.34155273, 0.5019531, 1.8007812, 2.3261719, -1.7138672, -1.4648438, 0.7026367, -0.25024414, -0.8334961, 1.3613281, 1.2060547, 1.6503906, -0.9277344, -0.06161499, 2.4570312, 1.8691406, -1.8427734, 3.9394531, -0.9169922, -3.3007812, 1.6875, 0.9501953, -3.7089844, 0.64208984, 0.4099121, -0.88183594, -0.3876953, 0.23937988, -1.1181641, 0.6904297, -0.2841797, -1.0537109, 0.56152344, -3.5253906, -1.3505859, 0.59521484, -0.38891602, 0.29296875, -1.4863281, -0.8261719, 0.9301758, -0.72314453, 0.33325195, 0.3215332, 2.5507812, 3.5253906, 0.6816406, -1.9541016, -0.26489258, -1.2783203, -0.08026123, 0.13317871, -1.4453125, -3.3828125, 0.75341797, 2.3359375, 1.9648438, 1.0732422, 0.5410156, 2.9804688, -1.5683594, 1.6318359, -0.8491211, 3.5625, -1.6171875, 1.140625, 0.9970703, -2.9042969, -0.16955566, -0.89746094, 2.3867188, 0.35766602, 1.5771484, -0.37109375, -1.1503906, -1.5888672, 0.49682617, -1.0107422, -4.6875, -0.52734375, -0.19946289, 0.8129883, 0.5263672, -0.1574707, 0.06109619, 0.43188477, -1.3242188, -0.78466797, 0.92089844, -0.515625, 0.6347656, 0.22961426, -2.7949219, -0.1986084, 0.11401367, -0.34106445, 1.9160156, 1.421875, -1.7148438, -4.0195312, -0.007637024, -0.87060547, -1.9199219, -1.8408203, 1.3417969, 0.28833008, -0.11816406, 0.4182129, -0.10406494, -1.3486328, -0.5288086, -2.1230469, -0.47070312, -2.5527344, -1.3017578, 1.4140625, -2.1757812, -2.3496094, -0.23925781, -2.3535156, 2.5898438, -0.015823364, 1.5615234, 1.5341797, -0.11993408, -1.1806641, -0.92285156, -1.0683594, 1.6445312, 0.46118164, 0.68115234, 0.79345703, -0.5991211, -3.734375, -0.6699219, 0.953125, -1.1669922, 1.5732422, -2.0039062, -0.57958984, 1.6201172, -0.29101562, -0.99560547, -0.7993164, 0.86572266, -1.6894531, -0.921875, 0.83496094, 2.2734375, 1.3251953, -2.109375, 0.28076172, -1.4199219, 1.0224609, -0.3095703, -1.4238281, -0.114990234, -0.23693848, -0.24401855, -0.22216797, 0.41918945, 1.9121094, 2.5, -0.6972656, -2.2304688, -1.4208984, 1.34375, -1.8232422, 2.4160156, 0.7290039, 0.62353516, -1.0419922, 3.6152344, -1.7548828, -1.9960938, 1.4785156, -0.36035156, 0.66845703, 0.3618164, -2.4980469, -1.0400391, -1.0527344, 2.0292969, -2.2558594, -2.0976562, -2.1171875, 1.6015625, 0.28881836, 0.34521484, -0.5649414, 4.390625, 0.3076172, 2.7675781, 1.4755859, -0.9326172, -2.0820312, -1.0214844, -0.068725586, 0.9091797, 1.4609375, -0.058380127, 0.8183594, 0.8227539, -1.1279297, -1.4892578, 1.3554688, 2.0644531, 0.5913086, -0.35229492, 2.3105469, 0.5258789, 3.9179688, 3.6113281, -0.26171875, 0.7866211, 2.1855469, -0.5566406, -0.028915405, 3.78125, 0.64501953, -1.5966797, -0.58691406, 0.42211914, -0.44702148, 0.25463867, -0.049804688, 1.1181641, -0.24890137, -0.72509766, 2.1230469, 1.7080078, -0.46069336, -0.44311523, -0.34448242, -1.7412109, -1.5439453, -1.1748047, -0.58691406, 2.9511719, 0.97021484, -0.16442871, -0.71191406, -1.1953125, 2.6875, -1.9091797, 0.75, 0.59472656, -1.1835938, -2.3203125, 2.0566406, 2.2324219, 0.9194336, 2.5449219, 0.37695312, -0.4560547, 1.2392578, 1.0507812, 1.2402344, -0.71777344, 0.5307617, 2.1308594, -0.3786621, -1.2607422, -1.4765625, -0.69189453, -2.3046875, 1.4248047, 1.3837891, 0.7885742, 2.6582031, -1.0957031, -5.34375, 1.1376953, 1.7363281, 2.15625, -0.5004883, 0.7158203, 1.6464844, -1.0136719, -0.39404297, -0.14489746, 0.2475586, 0.81103516, 0.38989258, -2.1992188, 1.3056641, 1.0410156, 0.68847656, 1.9013672, 1.5507812, -1.8212891, -0.5834961, 0.87158203, 2.4882812, -0.8100586, 1.4140625, -0.6176758, 1.5195312, -0.16101074, 0.28564453, 2.2734375, -1.0761719, 0.50439453, -1.2695312, -0.03555298, 0.16040039, 0.28222656, -2.3710938, -0.13354492, 0.32836914, -1.1005859, -0.12854004, 2.2714844, 1.4238281, 1.5419922, 0.7192383, -1.4560547, -1.2929688, 1.0917969, 1.6601562, -1.5761719, -0.10180664, -0.7714844, 0.3322754, -0.8774414, -1.9970703, 0.87353516, 1.5751953, 0.19091797, -3.1933594, 0.53466797, 0.098083496, -0.4375, 0.86621094, -1.9814453, -1.3955078, -2.4960938, -0.14245605, 0.6669922, 1.8427734, 2.0214844, -0.53466797, -0.9633789, -1.765625, -0.23986816, 0.26293945, 0.032196045, -1.9970703, 1.921875, 3.0039062, 1.9365234, -0.5522461, -1.9091797, -1.1816406, 2.9609375, -2.4960938, 1.0361328, 0.7163086, -1.5419922, -0.66845703, -2.1386719, 2.5917969, 0.2376709, -2.1210938, -0.51660156, 0.36499023, -1.0458984, 0.3803711, 1.3076172, -0.012535095, -1.0712891, 1.3632812, 3.4082031, 1.4492188, -0.1071167, 2.4609375, 4.2929688, 1.2285156, -2.2617188, 0.94970703, 0.7055664, 2.5546875, -0.008331299, 0.53222656, 0.6455078, -0.53125, 0.62109375, 0.67285156, -0.7675781]}, "B082ZZDL3S": {"id": "B082ZZDL3S", "original": "Brand: HaSteeL\nName: HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women\nDescription: Professional Safety Quality for Years of Use!

          Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
          to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

          Complete 32PCS BBQ Grilling Tools Set:

          \ufe521 x Large 4-in-1 Spatula
          \ufe521 x Small Kitchen Tong
          \ufe521 x Large Power Tongs
          \ufe521 x Strong Grill Fork
          \ufe521 x Long Knife
          \ufe521 x Basting Brush
          \ufe521 x Digital Meat Thermometer
          \ufe521 x Meat Injector
          \ufe521 x Multi-purpose Scissor With Cover
          \ufe521 x Extra Cleaning Brush Head
          \ufe522 x Grill Cleaning Brushes
          \ufe522 x Grill Mats
          \ufe522 x Salt & Pepper Shakers
          \ufe526 x Kabob Skewers
          \ufe528 x Corn Holders
          \ufe521 x Cotton Case
          \ufe521 x Carrying Bag

          A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

          From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
          will be a sweet gift for men, women and any camping lovers no matter it's a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

          Using Tips:

          \u25cf Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
          \u25cf Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
          \u25cf The knife is extremely sharp so please keep it out of reach of children.
          \u25cf Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
          \u25cf Please store all grill accessories in cool & dry places.\nFeatures: COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools\nSUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break\nEASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly\nPORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean\nMAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women\n", "embedding": [-1.3720703, 3.1289062, 2.0820312, -0.43115234, -0.6323242, 1.1923828, 0.77441406, -1.7695312, 0.46557617, 0.5727539, -0.30493164, 0.15368652, 0.5205078, -3.0410156, -2.2949219, 0.079589844, 0.1340332, 0.14013672, 1.5292969, 1.1923828, 1.1806641, 0.2705078, 1.3828125, 0.9951172, 2.2480469, -0.072021484, 4.765625, -3.1523438, 1.4785156, 1.0820312, 2.1933594, 0.34301758, -0.009811401, 1.9785156, -2.4238281, 0.1661377, 0.38842773, 1.0839844, -1.9462891, -0.61621094, -0.58984375, -0.36743164, 2.7207031, 1.3095703, -2.6875, 1.0136719, -0.48828125, 2.0136719, -1.3115234, -3.0390625, 0.3708496, 1.6435547, -0.5253906, 1.6289062, -3.1210938, 0.37597656, -1.2138672, -3.2050781, 1.6083984, -0.88964844, 1.8408203, -0.9604492, -0.6557617, -0.072753906, 0.8388672, -0.24255371, 2.2460938, -1.5791016, -1.4042969, 0.07354736, 0.66259766, -2.0898438, -1.2177734, -0.71191406, -0.5385742, -0.43798828, -0.6503906, 1.1884766, 0.3876953, 1.6386719, -2.3457031, 4.3632812, -0.40185547, -2.8945312, 1.6005859, -1.7548828, -1.2802734, -0.08538818, 2.0625, -1.1826172, -1.0117188, 2.84375, -1.9716797, -5.4960938, 2.1386719, -1.5761719, 0.25341797, -2.5332031, 1.5751953, 1.4541016, -1.4560547, -0.040161133, 0.6118164, 1.4638672, -1.7148438, -0.41967773, 1.4472656, 1.4501953, -1.2236328, -0.2590332, -2.2363281, 1.0361328, -0.43188477, 0.4975586, -0.9091797, 1.7734375, -1.2080078, -0.3088379, 2.2148438, 1.4873047, 3.7109375, 1.0917969, -0.87841797, -1.734375, 0.09289551, 0.7973633, -0.4074707, 3.3984375, 3.2246094, -0.033294678, -0.171875, -2.3496094, -0.5332031, -1.0380859, -1.5761719, -2.0371094, -2.1503906, -0.17248535, -2.8964844, 1.8701172, -0.24609375, 1.5410156, 3.3066406, -0.31054688, -2.3164062, 0.42944336, -1.3876953, 0.5239258, 0.02798462, -0.6748047, 0.74902344, -2.0175781, 0.21765137, -0.68310547, 3.4570312, -0.11602783, 1.5888672, -0.1459961, 3.3945312, 2.53125, 0.40063477, -3.140625, -1.28125, 1.1533203, 1.3271484, -4.5976562, -0.7832031, 3.4042969, 0.18371582, 2.0332031, 0.8847656, -2.5976562, -0.009429932, -1.1855469, 0.12585449, -1.6552734, 0.70654297, 3.0136719, 0.23779297, -0.4387207, 1.1904297, -3.2480469, 0.9248047, 2.703125, 0.2709961, -2.1445312, 1.2763672, -0.57128906, 0.36499023, -0.37597656, 0.55615234, 0.94433594, -1.0361328, 0.27783203, 0.6303711, -1.7636719, 0.06567383, -1.6367188, -1.3388672, 1.5986328, 0.033111572, -1.625, -0.040985107, 0.051605225, -1.5195312, -1.0175781, -0.15808105, -1.3671875, 2.375, 2.0117188, 0.4621582, -0.7866211, 1.7666016, 1.3564453, 0.6147461, -2.7675781, 0.76953125, 0.13061523, 1.1181641, 1.3984375, -1.203125, -0.22631836, -1.0634766, 1.7880859, 1.3632812, 0.47729492, -1.0908203, 1.0585938, -0.42626953, -0.07519531, 0.35498047, 0.81347656, 0.55078125, 0.9848633, -0.90722656, 0.8105469, 0.47851562, -2.9609375, -0.68847656, -0.1262207, 0.97216797, -1.2167969, -1.5488281, -1.2783203, -0.83691406, -0.5571289, 0.52441406, 1.0126953, 0.49121094, -2.8300781, -1.3291016, 0.98095703, 1.375, 0.68847656, -0.028244019, 1.1738281, -0.93310547, 0.038604736, -2.0683594, -0.19030762, 0.5522461, 0.63964844, 0.36450195, 1.0488281, 0.06451416, -0.50439453, 2.6503906, -0.2529297, -1.0322266, -0.09075928, 0.3256836, 0.21069336, 0.9824219, -2.5761719, 2.7539062, 0.88134766, -1, -0.20483398, 0.5073242, -1.4658203, -1.0097656, 0.26489258, 1.6572266, -1.8662109, 0.7993164, -2.078125, -0.6040039, -1.3115234, 1.1992188, 2.625, 5.7851562, 0.22607422, -1.3876953, 4.6054688, -1.8320312, 1.2841797, 0.6352539, 0.12670898, -0.98095703, 0.10235596, 0.7602539, 1.28125, 0.9399414, 0.79589844, -2.4589844, -0.44555664, 0.7861328, -3.0332031, 0.18688965, 2.0585938, -2.1054688, -0.7631836, -0.3955078, 0.41088867, -1.4550781, -1.2050781, -2.1015625, -1.7353516, 1.4414062, 0.7919922, -0.7001953, 1.3564453, -0.82421875, -3.0800781, -0.63964844, 1.0703125, -1.1064453, 1.9941406, 1.1660156, -0.5703125, 1.9853516, -0.47216797, -0.3828125, -1.5976562, -1.2822266, -1.3232422, -1.0859375, -1.2197266, 1.5556641, 0.058807373, -0.37670898, -0.42089844, -2.9628906, -0.11352539, -1.7011719, -2.6269531, -1.9853516, 0.5625, -0.0013275146, 1.2333984, -1.9160156, 1.3173828, 1.0634766, -3.7578125, -0.65625, -0.6401367, 2.8652344, -0.15722656, -1.3798828, 0.26611328, -0.3017578, 0.11444092, 0.08123779, 1.1962891, -0.1161499, -0.6459961, 2.1074219, -3.1777344, 0.67578125, -0.29174805, -0.07696533, 0.22265625, 1.9589844, -1.6318359, -1.5341797, -0.37524414, -0.35766602, 3.5527344, -1.5410156, 0.9316406, -0.2692871, -0.14379883, -0.3479004, -0.57666016, -0.49658203, -2.0234375, 2.1015625, -2.2695312, 1.8232422, -2.6835938, 0.8520508, -1.6035156, -0.71240234, -0.5019531, 2.7773438, -2.1445312, 1.0068359, -2.3164062, -1.9238281, -1.1748047, 0.8203125, 1.4492188, -1.0332031, -0.47265625, -1.3623047, -0.5864258, -0.27246094, -1.8671875, 3.2324219, -2.0019531, -1.96875, 2.4414062, 0.67041016, -0.20837402, 1.0654297, -3.1347656, 2.3847656, 1.5371094, -3.2578125, -1.0458984, 0.20336914, -1.2197266, -1.2041016, -0.06262207, 2.6035156, -0.058044434, 1.2324219, 0.097839355, -0.5913086, 1.2685547, 1.5703125, 0.061065674, -0.76904297, 1.2509766, 1.6181641, -0.7397461, -3.0859375, 1.7685547, -0.63623047, -2.6503906, 1.4824219, 0.42919922, 1.8037109, 0.93603516, 1.8408203, 0.8779297, 2.2148438, -0.30322266, 1.2958984, 1.296875, -0.47973633, -3.1894531, 1.5927734, -0.5600586, -1.265625, 1.3759766, 0.75634766, 0.9057617, 2.7402344, 0.7988281, 0.34521484, -1.9882812, 0.984375, 1.7490234, 1.4257812, 0.10168457, 1.1669922, -1.3378906, -1.9492188, 0.2602539, -1.3076172, 2.0078125, -1.9912109, -0.060272217, 0.8300781, -1.2412109, 1.1611328, 0.54003906, -1.5302734, -1.0869141, -2.1914062, 0.37231445, -2.1679688, -2.4980469, 0.83984375, -0.32055664, -1.1064453, -0.94628906, 2.6796875, -0.3310547, -0.10064697, -0.6274414, 1.7001953, -0.97314453, -0.6923828, -1.6757812, 0.6899414, -0.5776367, 3.0214844, -0.25268555, -1.7060547, 1.5605469, -3.7773438, 1.3623047, -0.18066406, -1.203125, 0.6777344, -0.40600586, -1.1123047, 0.7050781, 0.46166992, 0.60546875, 1.0595703, -1.1591797, 0.010887146, -1.5693359, 0.16271973, 1.2802734, -1.1376953, -0.86279297, 1.7382812, 0.7714844, 2.2636719, 0.24597168, 3.5527344, 0.7524414, -3.28125, 1.1992188, -2.9472656, -0.47265625, -2.0351562, -3.8203125, 1.4648438, 0.3413086, 0.7373047, 1.2216797, 1.1503906, 0.40771484, 3.1816406, 0.2734375, -1.5927734, 1.2509766, -0.2866211, 0.17993164, -0.3947754, 0.5258789, 1.1416016, 1.0507812, -1.5234375, -3.4277344, 0.35546875, -2.3945312, 1.9130859, -0.97216797, -1.8720703, 0.47485352, -1.1738281, 0.7348633, -1.7050781, 0.27441406, -2.25, -2.3183594, 0.55078125, -0.7128906, 2.1582031, 0.7084961, 0.69677734, -2.4570312, 0.68896484, -0.32373047, -1.7958984, -1.9970703, 1.5117188, 2.8632812, 0.023223877, -1.6865234, -0.46435547, -0.6591797, 0.29785156, 0.3371582, 0.5571289, 0.9863281, -1.671875, 0.21289062, 0.8183594, 0.7138672, 2.6503906, 0.35351562, -0.77978516, -0.117126465, 3.1660156, -1.2089844, -4.2109375, -0.9975586, -2.2539062, -0.625, -0.42041016, -1.7119141, 0.7216797, -1.1171875, 0.9785156, -0.9091797, 2.1054688, 0.4951172, 0.46704102, 4.2226562, -0.7060547, -0.67333984, 1.4365234, -2.4394531, -2, 0.41967773, -0.47460938, -0.8339844, 1.2197266, -0.7475586, -0.51464844, 1.0751953, -0.6328125, 0.89160156, -1.5136719, -2.6523438, 1.4873047, -1.5976562, -0.0010147095, -0.44458008, -0.8852539, 2.7382812, 0.38598633, 0.75683594, 2.8085938, 0.21276855, -0.18481445, -0.8232422, -0.3359375, 0.5161133, 1.0527344, 1.8828125, 2.0820312, -1.4482422, -0.14746094, 0.8564453, 0.30029297, -0.72753906, 0.83740234, 1.2734375, 2.1015625, -0.82128906, -0.18188477, 3.203125, 1.8291016, -0.8261719, 3.28125, -0.109313965, -1.4072266, 2.2929688, 1.4423828, -3.3925781, 0.5708008, 0.5, -0.7314453, 1.0546875, -0.25024414, -2.4785156, -0.32861328, 0.8930664, -0.5361328, 0.8222656, -2.640625, -1.6337891, 0.5004883, -1.0136719, 0.23803711, -1.0341797, -0.25561523, 1.5400391, -1.2490234, 1.0664062, -0.12133789, 3.2578125, 3.7734375, -0.2553711, -1.3623047, 0.49829102, -1.6884766, 0.23925781, 0.8144531, -0.6567383, -3.984375, -0.76904297, 3.25, 2.375, 1.1181641, 0.42626953, 3.1015625, -1.1396484, 0.9995117, -1.3837891, 3.6464844, -2.4726562, 0.43359375, 0.6635742, -2.203125, -0.52490234, -1.4169922, 2.0761719, 0.9248047, 1.2148438, -0.10107422, -1.9648438, -0.72021484, 0.8183594, -2.2617188, -4.6640625, -0.18139648, -0.25854492, 0.6142578, 1.2382812, -0.5913086, -0.3215332, -0.47485352, -0.2475586, -0.98583984, -0.008346558, -0.29370117, 1.0019531, 0.43969727, -3.1289062, -0.8071289, -0.41748047, 0.19714355, 1.3398438, 2.4257812, -0.45043945, -3.8203125, -0.71875, -0.3449707, -1.0976562, -2.1367188, 0.73535156, 0.74902344, -0.71484375, 0.5600586, 0.9741211, -1.2958984, 1.4667969, -1.7900391, -0.7661133, -1.6308594, -1.6181641, 1.7158203, -1.4052734, -2.5214844, -0.14880371, -2.3535156, 1.7080078, 0.6533203, 0.31225586, 2.2441406, 0.8300781, -1.0585938, -0.9477539, -0.22546387, 1.3496094, 0.9238281, 0.7363281, 0.71240234, -0.3244629, -3.0917969, -1.5917969, 1.6201172, -0.4807129, 0.9453125, -1.5117188, 0.117248535, 1.6308594, -0.30810547, 0.57910156, -0.5239258, 0.82128906, -1.8945312, -0.64746094, 1.0166016, 3.1015625, 1.5253906, -1.2275391, -0.6879883, -0.19006348, -0.14050293, 1.4589844, -1.28125, -0.29370117, -1.7666016, -2.1425781, -0.3774414, 0.3408203, 0.5878906, 2.1347656, -0.26611328, -1.3408203, 0.17175293, 1.5302734, -0.040985107, 2.4023438, 0.2286377, 1.0068359, -0.6586914, 3.0761719, -1.8974609, -2.2128906, 1.4130859, -1.4697266, 0.89941406, 0.6254883, -2.125, 0.07763672, -0.7089844, 1.65625, -2.5351562, -1.7832031, -2.0527344, 0.6455078, 0.09277344, 0.17211914, -0.43896484, 3.828125, -0.57177734, 3.2128906, 1.7490234, 0.06036377, -2.3300781, -1.1279297, 0.03274536, 0.0003824234, 0.82470703, -0.16711426, 0.86376953, 0.35766602, -0.061920166, -1.578125, 1.921875, 1.7451172, 0.8046875, -0.04736328, 1.9541016, 1.0693359, 4.9335938, 3.53125, -0.3840332, 0.96777344, 2.6074219, -0.99609375, -0.77978516, 3.9238281, 0.92822266, -0.7001953, 0.78759766, 1.3398438, -1.3066406, -0.28466797, 0.19335938, 1.1220703, -0.56640625, -0.70947266, 2.3964844, 0.7114258, 0.5175781, -1.234375, 1.4658203, -0.8754883, -0.040039062, -1.1669922, -1.5390625, 2.4609375, 0.5620117, -0.28808594, -1.3251953, 0.47265625, 2.5644531, -3, -0.27807617, 0.65527344, -1.7226562, -3.578125, 1.8740234, 2.4082031, 0.8027344, 1.7128906, 0.17883301, 0.4255371, 0.64501953, 0.3959961, 0.7807617, 0.68847656, -0.3149414, 1.5712891, -1.4365234, -2.0371094, -1.0693359, -0.42919922, -1.8945312, 0.019515991, 1.0273438, 2.125, 2.0097656, -0.25463867, -5.7578125, 1.8574219, 1.2578125, 3.5078125, -0.3232422, 1.3740234, -0.034423828, -0.5292969, -2.1992188, 0.3017578, 0.10205078, 1.3486328, 0.7792969, -1.2890625, -0.3227539, 2.0351562, 1.2207031, 0.13916016, 2.1757812, -0.86376953, 0.0069503784, 0.7817383, 2.2363281, -0.32202148, 2.2519531, -0.74902344, 1.4628906, 0.7558594, 1.3603516, 1.8330078, -1.7089844, 0.65478516, -0.7089844, -0.9111328, 0.095458984, -0.002714157, -3.203125, 0.41455078, 1.2666016, -1.59375, 0.19299316, 2.1679688, 2.2246094, 1.7802734, 0.24304199, 0.33789062, -1.7021484, 1.203125, 0.4819336, -0.70703125, -0.7290039, -1.234375, 0.20385742, -0.4260254, -1.3291016, 0.13269043, 1.2900391, -0.6328125, -2.8730469, 1.7128906, 0.24353027, -0.07281494, 0.17590332, -1.3828125, -2.0488281, -1.9580078, -0.35766602, 0.67871094, 1.6357422, 2.1660156, 0.99072266, -1.4755859, -1.8183594, -0.25146484, -0.7338867, -1.0498047, -1.9521484, 1.421875, 3.3847656, 1.8935547, -0.61035156, -2.9628906, -2.0019531, 0.8461914, -2.4023438, -0.2166748, 1.3076172, -1.78125, -0.53466797, -1.5185547, 2.5546875, -0.13452148, -0.9682617, -0.4609375, -0.29907227, -0.9033203, 0.62158203, 1.0117188, -0.26513672, -0.46289062, 1.0908203, 2.359375, 0.81347656, 1.7246094, 2.7109375, 2.2714844, 1.6738281, -2.015625, 1.1015625, 0.9916992, 2.671875, 0.0970459, 1.0244141, 0.35864258, 0.49804688, -0.033843994, 0.017807007, -0.19567871]}, "B07X2WCR21": {"id": "B07X2WCR21", "original": "Brand: i COVER\nName: iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo\nDescription: \nFeatures: \u3010Upgraded & Tear-Resistant Material\u3011iCOVER heavy duty waterproof grill cover measures: 60\"(width) x 22.5\"(depth) x 41\"(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill.\n\u3010UV Protective & Fade-Resistant\u3011The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability.\n\u3010Snug Fit & Stable\u3011These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season.\n\u3010Decent Protection\u3011The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off.\nAt Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.\n", "embedding": [1.2099609, 1.6425781, 3.3125, -2.0722656, 0.23522949, -0.22729492, 0.54589844, -2.2480469, 1.7441406, 2.5917969, -1.5849609, -1.7275391, 1.4199219, -5.5, 0.609375, 0.50341797, 0.3269043, 3.09375, 3.0390625, -2.734375, 1.5107422, 0.6723633, 0.20446777, 1.2421875, 0.25097656, -0.97509766, 4.671875, -2.3671875, -1.2900391, -1.0839844, 1.4931641, 0.5078125, 0.53808594, 1.8320312, -1.9628906, -1.8544922, -1.4433594, 1.7119141, 1.0644531, -1.0625, -2.5625, -1.8652344, 2.2910156, 1.1308594, -2.5078125, 0.7470703, -2.8867188, -0.6591797, -0.5131836, -1.6015625, 1.5224609, 1.8789062, 3.0019531, 0.8754883, -2.9589844, 2.7851562, 0.5053711, -1.7060547, -0.8051758, -0.7919922, 0.45532227, -0.42822266, -1.1982422, 2.25, -1.3232422, -1.546875, 0.7636719, -0.5493164, 1.8789062, 0.671875, 2.0664062, 0.43896484, -1.6523438, 0.05154419, 2.234375, -1.0419922, -1.7666016, 1.6279297, 1.3310547, -1.3935547, -1.3613281, 5.2265625, -0.72753906, -3.3085938, -1.1025391, -0.37060547, -1.6611328, -1.9707031, 2.1777344, -0.92626953, -0.62060547, 1.4726562, -1.0087891, -3.5117188, 0.13867188, -3.5605469, 2.5625, 0.42285156, 0.94091797, -0.19042969, -1.5136719, 0.5966797, -1.2558594, -0.06100464, -3.0390625, -2.0488281, 2.40625, -0.9868164, 0.45507812, -0.08227539, -0.5517578, -0.43774414, -0.94628906, 1.0517578, 2.5800781, 0.6894531, -1.1054688, 2.9785156, -0.37841797, 1.8916016, 3.1484375, -1.1513672, -0.54589844, -1.8671875, 0.79541016, 0.43676758, -0.3713379, 0.13000488, 3.3496094, -0.99316406, 1.34375, -0.6245117, 0.1875, 1.8583984, -0.97802734, 0.091918945, -1.5810547, -0.82958984, -3.0820312, 2.0566406, -2.2578125, -2.3398438, -0.38183594, -2.0429688, -1.8320312, 0.07788086, -0.91064453, 4.2421875, -1.4804688, -3.6972656, 0.40722656, -1.9990234, 0.36083984, -0.3972168, 0.91845703, -0.3293457, 0.32055664, -3.1542969, 3.0996094, 2.34375, 2.6660156, -1.5878906, 1.8046875, 0.9355469, 2.6425781, -2.6308594, 0.04144287, -0.60839844, -0.43408203, 1.65625, 1.1152344, -1.4414062, 0.7807617, 0.9916992, 1.4736328, -1.0556641, 0.97509766, 1.3046875, -0.17651367, 1.4335938, 0.46533203, -1.8974609, -0.22680664, 1.0478516, -1.1259766, -1.4570312, 0.83496094, 0.32861328, 0.7680664, -0.67529297, -0.9194336, 0.15563965, -0.71777344, -0.27563477, -1.71875, -0.4921875, -0.6533203, -0.48461914, -0.20654297, 0.5932617, -1.6308594, -2.2890625, -1.7734375, -0.111328125, -2.4121094, -1.71875, -2.4609375, 0.03451538, -0.006439209, 0.57714844, 0.7993164, -1.3808594, 3.4453125, 1.0517578, -1.359375, -0.77685547, 1.9960938, 0.33081055, 1.5634766, 1.1572266, -2.7539062, -0.09857178, 0.7504883, 3.2167969, -1.4921875, 1.0742188, 2.0722656, 0.7602539, -0.23535156, -0.9741211, 0.06286621, 1.0664062, -0.28271484, -0.5595703, -0.9970703, 0.7080078, 0.66015625, 0.020645142, -0.6401367, 0.41381836, -2.0605469, -1.9863281, -3.6132812, -1.8671875, 1.8251953, 1.6347656, -1.9560547, 2.4238281, -0.2788086, -1.0751953, -0.46850586, 0.96435547, -0.7216797, -0.9682617, 0.06451416, 1.0947266, 0.5, -0.43017578, -1.15625, -1.3808594, -0.82128906, -0.8564453, -1.5810547, 0.85595703, -1.1396484, -0.013244629, 0.37158203, 1.3554688, -1.3378906, -2.7207031, 1.5439453, -0.14343262, -0.26416016, -1.2460938, 1.3789062, -0.47802734, 0.53125, -0.019302368, 1.3486328, -0.6088867, 0.45263672, 2.0859375, 1.7734375, -2.3515625, 0.23181152, -0.72753906, -0.003326416, -1.4042969, -1.96875, 0.2758789, 2.8730469, 0.4333496, -2.8828125, 3.796875, -0.50390625, 0.55029297, 1.8173828, -1.4287109, -1.6474609, 2.359375, 0.29467773, 1.5712891, -1.1542969, 1.0146484, -2.25, -1.2861328, 0.73828125, -1.78125, -2.2265625, 1.5224609, 0.99365234, 1.0478516, -0.65625, -0.4736328, -2.2011719, -1.75, 1.3671875, -2.4511719, 0.111694336, 0.42089844, -0.37304688, 0.91845703, -2.1367188, -1.1259766, -0.21362305, -0.57128906, -1.6679688, 0.06530762, 0.75878906, -0.97314453, -0.22583008, -2.0175781, 1.1357422, -0.67822266, -0.5463867, -3.7988281, -2.4921875, -1.5234375, -0.73876953, -1.0615234, 0.7714844, -0.6381836, -2.5898438, 1.2333984, 1.171875, -3.1289062, -0.8076172, -0.034606934, -1.5371094, 1.7138672, -0.42089844, -0.23388672, 0.5439453, -5.1445312, 1.15625, -1.8417969, -0.5888672, -0.69628906, -2.0957031, 0.0072288513, 0.9404297, 0.6245117, 0.11810303, 1.5869141, 1.3144531, -0.02798462, 0.23913574, -2.9375, -0.06817627, -2.5, -0.16320801, -1.1074219, 0.7192383, -3.5898438, -1.8486328, 1.5888672, -0.36328125, 3.2832031, 0.08618164, 0.44018555, -0.39282227, -1.2607422, 1.1396484, 0.6401367, -2.2363281, 0.78515625, 0.54785156, -1.5302734, -0.32714844, -4.5507812, -2.9648438, -0.7651367, -0.50439453, 0.48999023, -1.4570312, -0.13464355, 2.5097656, -3.7148438, -1.6796875, -1.8310547, 1.2441406, -0.8378906, 0.15356445, -0.6323242, -3.2519531, -2.2871094, -1.3232422, -2.5761719, 1.7724609, -1.8554688, 0.9692383, 2.78125, -0.9370117, 5.3046875, -0.83496094, -4.4179688, 1.4765625, 1.2226562, 0.34936523, 3.203125, -0.34472656, -0.7553711, -1.0849609, 1.5341797, 2.7695312, 0.34643555, 1.0205078, 2.2910156, 1.0634766, 1.9482422, 0.6357422, 1.5039062, -0.7216797, 0.89990234, 2.5019531, -0.45874023, 0.122680664, 0.6176758, 0.24206543, -1.2460938, -0.32958984, 3.0410156, 0.09375, -0.121398926, 1.4433594, -0.76171875, 0.95654297, -0.5019531, 2.7871094, -1.0996094, 3.1152344, 0.7832031, -0.61572266, 1.0214844, -1.7578125, 2.3671875, 2.0234375, 0.94091797, 0.17419434, 1.8378906, 0.4284668, 1.0957031, -0.2590332, 1.4619141, -0.24291992, -1.4755859, 2.4355469, -1.2207031, 0.54296875, 2.1015625, -2.6582031, 1.7099609, -0.61083984, 0.24609375, 2.2207031, -1.8388672, 0.14440918, -0.6411133, -0.19226074, -0.083618164, -2.7734375, -0.60498047, -2.4277344, -0.19091797, -0.21826172, -3.2480469, -1.3613281, -1.0283203, 3.4121094, 0.98779297, -1.4179688, -0.7944336, 1.6191406, -1.3974609, -1.6914062, 1.5009766, 2.4140625, -0.796875, 1.3320312, 3.6328125, -1.4150391, 2.2578125, -3.4101562, 1.6582031, 0.29077148, -0.48754883, -0.19665527, 0.26464844, -0.19226074, -0.8496094, 2.3359375, 1.921875, 2.2089844, -0.9121094, -0.21081543, -1.3808594, -0.14428711, 1.2753906, -1.3095703, -1.0332031, 1.1923828, 0.87109375, 0.12219238, 0.3774414, 1.1738281, 0.15429688, -2.4238281, 1.4794922, -1.2587891, 0.17504883, 0.89990234, -4.171875, -0.81396484, 0.26831055, -1.8105469, 2.3125, 0.24536133, 1.1650391, 1.3203125, 0.79248047, -0.2631836, 0.75146484, -2.7792969, -2.3417969, 0.10180664, -0.56396484, 1.5498047, -0.22705078, -1.78125, -1.5878906, -2.4824219, -1.4228516, 1.3242188, 0.4326172, 0.5, 0.9814453, -2.8027344, 0.73779297, -2.8105469, -0.31567383, 0.42919922, 0.8696289, -0.65478516, -0.16186523, 0.72998047, 0.060791016, 0.6381836, 1.0488281, 0.8701172, -1.1787109, -0.8466797, -0.30810547, 1.7939453, 1.6357422, -1.2617188, -3.5996094, -0.17700195, 1.2607422, 1.9697266, 0.89697266, -0.8496094, -0.70996094, -0.82910156, -0.16992188, 0.13427734, 2.1601562, 1.1992188, -1.3154297, -1.1787109, 0.81933594, -2.0332031, -1.4501953, -0.7939453, 0.25561523, 1.1572266, 1.34375, -1.9794922, -2.6640625, 2.7539062, -0.5522461, -0.69677734, -1.9658203, 3.8671875, 2.5390625, 2.0019531, 2.328125, -3.0664062, 0.58203125, 0.9658203, 0.047576904, 0.083618164, 0.29760742, -1.1416016, 0.49072266, -0.07330322, 0.35742188, -2.7089844, -1.6591797, -0.7705078, -0.10858154, -0.2626953, -3.34375, 2.4921875, 0.52978516, 1.6240234, 1.0693359, -2.5664062, 2.765625, -0.7211914, -0.65478516, 2.0195312, -2.0644531, 0.35205078, 1.3876953, 0.40063477, -0.5292969, 0.3647461, -0.19726562, 0.07171631, -0.97509766, -0.76660156, 0.12231445, 1.4794922, -0.9848633, -0.7841797, 1.0107422, 0.71240234, -1.7294922, -1.0585938, 3.0273438, 2.6894531, -0.3059082, 0.8105469, 1.5976562, -1.8037109, 1.5869141, 1.5292969, -0.055541992, 0.34350586, -0.6904297, -0.69677734, 1.9248047, -1.4003906, -2.3300781, -0.1665039, 1.5537109, -0.30908203, 2.1875, -1.4433594, -1.1210938, 2.3457031, -1.703125, -0.60302734, 0.020523071, -0.4182129, -0.024612427, -0.6069336, 2.03125, -0.79003906, 0.4831543, 3.2421875, -1.8759766, -3.6484375, 1.0712891, -0.86328125, -0.6669922, -1.1503906, -1.1738281, -3.0019531, -0.72998047, 2.1015625, 1.9570312, 1.5800781, 0.21691895, 2.0058594, -1.1074219, 0.54785156, -0.34228516, 1.9521484, -3.3183594, -1.4394531, 1.5332031, -1.7666016, -1.6962891, -2.0273438, -0.21191406, 1.6083984, 1.5908203, 1.7255859, 0.25439453, 0.9692383, -0.057006836, -3.3222656, -1.8710938, -1.0292969, 0.21459961, -0.7192383, 1.3925781, 0.1619873, 1.0087891, 0.5209961, -0.72998047, -0.69970703, -0.44580078, 0.03475952, -1.40625, -2.0664062, -1.0546875, -1.6611328, -1.40625, 1.0791016, 0.43579102, 0.9628906, 0.5332031, -4.0703125, 0.1862793, 0.18457031, -2.1425781, -1.578125, 2.3378906, 0.93896484, 2.0351562, 0.08081055, -0.26367188, 0.89208984, 3.7636719, -0.28222656, -0.3959961, 1.9833984, -1.4990234, 0.50878906, -0.39794922, -1.5839844, 0.99121094, -1.3789062, 1.2509766, 0.69628906, -0.8256836, 2.1191406, 2.1601562, 0.36035156, 0.09008789, 0.8413086, 1.71875, 3.3085938, 0.24609375, -1.4462891, 0.82128906, -1.1025391, -2.1992188, -0.026748657, -2.1445312, -2.2070312, -2.0527344, -0.31201172, 2.2578125, 1.5634766, 1.2675781, 1.6396484, 1.3847656, -1.2167969, -0.12683105, 0.17651367, 3.6894531, 0.9526367, -2.8085938, 0.24487305, -1.0341797, 0.78515625, 2.2539062, 0.1161499, 0.016296387, 0.38916016, -1.3730469, 0.43676758, 0.33129883, 2.4648438, 0.0680542, 0.4794922, 1.0166016, 1.2167969, 2.6308594, -0.8442383, 1.1943359, -1.1474609, 1.4453125, -1.7294922, 2.9667969, 0.049316406, -2.7890625, -0.5722656, -1.2050781, 0.12976074, 0.921875, -1.9150391, -0.32714844, -1.3896484, -1.5332031, -1.4921875, -0.5800781, -4.046875, 0.8364258, -0.31860352, -0.21740723, -0.3486328, 1.4423828, -0.36206055, 3.1484375, 1.6894531, -0.08502197, -0.62158203, 0.7158203, -1.7402344, -0.033416748, -0.40454102, -2.15625, 0.19140625, -1.8613281, 0.96240234, -0.9404297, 0.38061523, -0.2006836, 0.50878906, 1.7353516, 2.9472656, 2.7949219, 2.9042969, 1.5517578, 1.7363281, 1.7294922, 0.39770508, -2.1542969, 0.44702148, 1.7050781, 1.4863281, 3.3964844, -1.2207031, 0.036834717, 1.7626953, -0.13232422, 0.25830078, 0.1640625, 1.7275391, -2.2832031, 0.5058594, 1.0800781, 0.42626953, -0.5097656, 1.8232422, -0.6586914, -0.84277344, 0.7060547, 0.24353027, 4.421875, -0.65283203, 2.2519531, 1.2392578, 1.8759766, 1.1835938, -3.5253906, 0.984375, 1.9052734, -1.9560547, -1.4257812, 0.6176758, 1.6210938, 2.7890625, -1.1728516, 1.1748047, 1.09375, 1.8847656, 0.95410156, -1.1660156, 1.3095703, 0.18676758, 1.2568359, 1.3476562, -1.8105469, -1.4316406, 0.6821289, -1.8984375, -1.6142578, 0.5595703, 1.9736328, 1.4941406, 1.0634766, -4.2695312, 2.28125, -0.21459961, 2.1074219, -0.4230957, 0.45947266, -1.2871094, -2.6445312, -0.1772461, 0.36328125, -1.34375, 2.6054688, 0.25927734, 0.43017578, 3.2949219, 0.94628906, 2.3574219, 0.9980469, 1.8115234, 0.55371094, 1.1044922, 1.4023438, 1.4189453, 2.0449219, -0.17663574, 1.1328125, 1.7021484, -0.42749023, 1.2509766, 1.5869141, -1.4257812, 2.4316406, 2.7949219, -0.8935547, 1.3105469, -0.21508789, -0.25024414, -1.3603516, 0.5161133, -0.14208984, -1.6259766, 1.4013672, 2.2792969, 0.85302734, 1.9902344, 1.4990234, -0.49487305, 2.6367188, 0.9067383, -0.43603516, -1.2050781, 0.7080078, 0.9707031, -0.6479492, -0.11804199, -1.0537109, -0.28564453, -1.0507812, -0.5571289, -0.828125, 0.54345703, -0.45751953, -0.12915039, 1.5703125, -1.2851562, -0.5332031, 0.030090332, 0.11743164, -0.22302246, 1.8105469, 1.0957031, -1.3134766, -1.6894531, -1.0654297, -0.25927734, -2.1777344, -1.7978516, 2.0332031, 2.9511719, 1.4267578, -2.4199219, -0.48291016, -3.4335938, -1.75, -1.1035156, 1.8320312, 0.3725586, -0.33789062, -0.2541504, -0.03866577, 2.7714844, 0.75878906, -1.0849609, -0.006576538, 0.2055664, 2.515625, -0.58935547, -0.9667969, -0.34716797, 0.4296875, 1.5810547, 1.4189453, 3.6347656, -0.44262695, 0.38452148, 2.3867188, -1.375, -2.8027344, 0.09008789, 0.60839844, 1.0019531, 0.15710449, 2.4003906, 1.0664062, -0.28710938, -0.7055664, -0.4921875, -1.4892578]}, "B07PZDVLW5": {"id": "B07PZDVLW5", "original": "Brand: Mr. Heater\nName: Mr. Heater MH18B Portable Propane Heater, Red\nDescription: \nFeatures: 4, 000, 9, 000, or 18, 000 BTU per hour\nHeats up to 450 sq. ft.\nHi-Med-Low heat settings\nAutomatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off\nTHE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .\n", "embedding": [0.15600586, 1.2783203, 2.90625, 1.2998047, -1.7636719, 0.14489746, 0.34033203, -1.3945312, -0.7426758, 1.5546875, 0.6816406, 0.22277832, -0.37231445, -1.3476562, 1.5917969, -1.8134766, 0.43652344, 0.6689453, 1.953125, -0.54003906, 0.3034668, 0.3244629, 1.1621094, -2.3691406, 0.8803711, 1.1152344, 4.515625, -2.4589844, -0.8515625, 0.37841797, 0.17749023, 0.7319336, -0.35107422, 2.0390625, -1.5351562, -0.9970703, -3.8378906, 0.99316406, -3.5, -0.8359375, -1.1865234, -0.6958008, -0.45825195, 0.78759766, -2.2890625, -1.8837891, 1.5791016, -1.6953125, 0.14318848, 0.83935547, 0.40112305, 0.17150879, -0.64453125, -0.26367188, -1.3886719, 0.27856445, -0.8276367, -2.9160156, 1.8369141, 0.578125, 1.5566406, -1.484375, -2.3164062, 1.1630859, 0.1895752, 0.98779297, -0.055023193, -0.48461914, -0.07495117, 0.69677734, 0.9526367, 0.013801575, -0.69873047, -0.38354492, 0.02746582, 0.27124023, -2.3574219, 1.3535156, 2.6914062, -0.35180664, -0.6088867, 1.8671875, 0.8227539, 1.7158203, -1.4121094, -1.6152344, -0.19897461, 0.20910645, 1.8710938, 2.0761719, -2.0761719, 1.890625, -1.1318359, -5.3242188, 2.6914062, -1.4443359, 0.19970703, 0.3642578, 1.0517578, 1.9755859, 1.1103516, 0.3881836, 0.29345703, -0.35986328, -1.2958984, 0.057037354, 0.7426758, 0.9951172, -1.7402344, 0.75439453, -2.1484375, 0.09197998, 1.9658203, 0.6279297, -2.6640625, -0.40112305, 1.28125, 2.0546875, 6.0078125, 1.2089844, 2.9296875, -0.40551758, 2.2910156, -0.6508789, 0.04824829, 0.5439453, 0.53808594, 0.4555664, 1.4160156, -1.7529297, 2.3359375, 0.1977539, -0.17565918, 0.13134766, -0.8144531, -1.3242188, -1.2412109, -2.2089844, -4.0039062, -2.2128906, -1.6982422, 0.065979004, 1.6230469, -0.86083984, -2.6425781, -1.4824219, -0.6308594, -0.22277832, -0.07659912, -0.8286133, 0.59814453, -1.640625, -1.0917969, -1.2695312, 0.10870361, 2.625, -0.017120361, 0.32836914, 2.1269531, 2.4042969, 1.796875, 1.4277344, -1.6894531, 1.9238281, -0.8569336, -2.3632812, 1.1220703, 0.8183594, -0.38623047, 2.6542969, 0.9584961, -2.6464844, 0.2788086, -0.7451172, 0.24719238, -1.8330078, 1.5742188, 1.7714844, -0.5859375, 0.38989258, -3.4414062, -1.1835938, -0.1953125, -0.34326172, 1.8447266, -1.7314453, -1.9501953, -1.2382812, 0.37548828, 0.23791504, -0.9682617, 0.28051758, 0.27416992, 0.35253906, 0.062927246, -2.1171875, -1.5878906, -3.0195312, 2.8925781, 1.0400391, -1.6425781, 0.5800781, -0.035339355, -1.5996094, -1.5556641, -2.1738281, 0.421875, -1.2158203, 0.67041016, 1.7939453, 0.43530273, -0.5698242, 1.3037109, -1.2119141, -0.6821289, -3.8652344, 1.3037109, -0.21899414, 0.60546875, 1.796875, -0.4970703, 1.3691406, 0.22961426, -0.12213135, -0.40576172, 2.125, 0.51171875, -0.15283203, -2.234375, -2.171875, 2.5625, 1.7636719, 0.9980469, 0.3737793, -0.15063477, 1.8007812, -0.08648682, -0.31030273, 0.8847656, 0.8330078, -0.57421875, 0.073791504, -0.29003906, -0.9550781, -0.043823242, 2.0019531, -1.2832031, 2.4746094, -0.41357422, 1.0585938, 0.8027344, -1.1054688, -0.5629883, 0.06335449, -2.3789062, 0.28588867, 0.87060547, -0.7788086, 0.19030762, -1.6875, -0.19104004, 0.93115234, -0.3425293, 1.4736328, -0.31176758, -0.32250977, 3.6582031, 1.5664062, -0.33032227, -0.25341797, 1.6328125, 3.2421875, 0.086364746, 1.6816406, 0.5205078, 0.90625, 0.090026855, 3.2851562, -1.0957031, 0.62939453, 0.089660645, -0.034179688, -0.1973877, -1.3046875, 0.04534912, -0.2208252, -0.51171875, 1.2900391, -1.421875, 0.103759766, 2.6113281, 0.14367676, -1.9980469, 1.3974609, -0.35009766, 1.1630859, 2.1757812, -1.1386719, 0.68359375, -1.2617188, 2.9550781, 0.47631836, -1.4794922, -0.11785889, -1.5078125, -3.0917969, -0.18041992, -0.74560547, -0.67285156, 1.5273438, 2.5019531, -2.1582031, -2.6425781, -0.6645508, -3.078125, -0.9902344, 1.1855469, -3.8769531, 1.3173828, 0.95458984, 0.43603516, 1.7353516, -0.37231445, -0.4934082, 0.48706055, -0.7216797, 0.8544922, 2.4101562, -0.1227417, -1.5029297, 0.10797119, -1.0976562, 1.2939453, -1.4648438, -2.5585938, 0.80908203, -0.8286133, -1.4726562, 1.4228516, -0.28466797, 0.017791748, 2.28125, -1.4560547, 1.1484375, 0.10650635, -0.7734375, -1.7519531, -0.46826172, 0.35913086, -2.265625, 1.2490234, -0.6508789, -1.8984375, -5.5, -0.023239136, 0.08050537, -1.9042969, 0.765625, -1.1376953, 0.54541016, 0.33447266, -1.3037109, 1.390625, -1.578125, -1.0712891, -2.2011719, 1.2119141, -3.1210938, 1.4648438, -1.5615234, 0.46166992, -2.0078125, -0.80566406, 0.19104004, -0.7529297, 2.1660156, 0.54003906, 1.3515625, 0.40795898, 2.1113281, 0.5258789, 1.765625, 0.5541992, -1.3544922, -1.8417969, 0.5683594, -0.71240234, -2.3769531, -0.9970703, -3.8398438, 0.5185547, 0.46875, -1.9658203, 0.7783203, 0.8964844, 0.15112305, -0.040252686, -0.5834961, -0.87158203, -0.96435547, -1.0292969, 0.40527344, -0.2286377, -1.7421875, 0.17285156, -1.4667969, -0.5888672, -1.4521484, 0.7080078, 1.5595703, 0.3515625, 1.2939453, 0.039886475, 1.8925781, 1.1035156, -5.25, 2.3925781, 1.8828125, -0.76953125, -1.9179688, -0.89941406, -0.71240234, -1.9658203, -1.4003906, 2.3730469, 0.39379883, 3.5488281, 0.011169434, -0.21325684, 1.6640625, 3.3007812, -1.3320312, 0.5678711, -1.2470703, 0.5151367, -1.6123047, -1.7958984, 1.1035156, 2.4042969, -2.5625, -2.015625, 1.8681641, -0.45385742, 1.2695312, 0.68603516, -1.59375, -0.8676758, 3.1113281, 0.6899414, 1.8789062, -0.39038086, -0.5834961, -1.4941406, 0.17004395, 1.8779297, 3.2148438, 0.50683594, -0.59716797, 0.79003906, 1.2158203, 0.7573242, -1.3300781, -0.24572754, 0.42651367, 0.23364258, 1.0048828, 1.3183594, -0.14990234, 1.4794922, 0.27539062, 0.6489258, 0.9589844, -1.4433594, -0.24475098, 1.3876953, -0.18945312, -0.3166504, -0.3947754, 0.42041016, -0.6088867, -1.2724609, 0.2487793, 0.2668457, 0.1026001, 0.66259766, -2.0488281, -1.9160156, -1.6005859, 1.4169922, -0.17150879, -0.2709961, -0.23059082, 1.5341797, -1.4697266, -0.7285156, -2.6542969, -0.7841797, -0.36206055, 0.70214844, -0.8149414, -1.2753906, -0.29589844, -0.375, 0.4025879, 0.9326172, -0.5205078, -0.66796875, -0.11010742, -1.3564453, 1.7958984, -0.75, 0.52001953, 1.2695312, -2.2871094, 0.03564453, -2.2382812, -1.0195312, 2.1757812, -0.27392578, 0.28710938, 2.7929688, -1.9960938, 2.1230469, -0.28198242, 3.2539062, -1.578125, -0.020736694, 1.3935547, -0.25341797, -0.18774414, -1.2246094, -4.5273438, -0.18322754, -1.8847656, 0.66503906, 3.1425781, -0.43310547, 0.5395508, -0.3618164, 1.1279297, 0.09082031, -2.3574219, -0.9135742, 0.92822266, -1.6269531, 1.1376953, 3.1621094, 0.96875, -3.109375, -1.0654297, -0.28198242, -0.3251953, 0.8852539, 0.38989258, -0.98095703, 1.1806641, -0.70947266, 2.7382812, -2.0195312, -0.09075928, 0.9375, 0.22827148, -0.92626953, -0.28955078, 2.5058594, 0.3371582, 0.2722168, -0.1973877, 3.6132812, 0.60302734, -1.765625, -0.4584961, 1.1474609, 0.9482422, -0.13696289, -1.9921875, -1.0595703, -1.1357422, -0.53027344, 0.77001953, 0.27294922, -0.43139648, -1.1728516, -0.58447266, 2.1484375, 2.0683594, 0.88623047, 1.4863281, -1.5078125, 1.5566406, -0.28100586, -1.8867188, -1.4589844, 0.32080078, -1.8847656, -1.0478516, 1.6865234, -0.55810547, -0.5332031, -1.2099609, -0.8300781, -0.115722656, 0.67822266, 2.2929688, 2.703125, 0.4580078, -0.59277344, -1.2138672, -1.6933594, -0.5644531, 1.5986328, -1.1181641, 1.5039062, -0.05496216, 0.1484375, 3.0351562, -1.8564453, 1.40625, 0.94677734, -1.7353516, 0.7089844, -0.6923828, 0.036315918, -0.11114502, -0.27856445, 0.13500977, -0.20251465, 3.3828125, -1.3173828, 0.24267578, 1.8359375, -0.7050781, 1.0419922, 0.9033203, -0.44433594, -1.2421875, 3.9199219, 0.14819336, 1.6347656, -0.71875, -0.8647461, 1.7158203, 1.0478516, -1.796875, -0.86572266, -1.1582031, 0.94970703, -1.4189453, -1.4970703, 1.6796875, -0.9135742, -0.5600586, 2.96875, 2.5546875, 0.49804688, 1.59375, 1.7001953, -0.6850586, 1.828125, -0.5336914, 0.42919922, 1.8066406, -0.020706177, -2.6621094, -1.6230469, 1.6865234, -0.25097656, 1.4833984, -0.7089844, -2.3066406, -0.23303223, -1.9804688, -1.7509766, -1.1933594, -0.11584473, -0.56933594, -2.2382812, -0.2890625, -0.45483398, 3.2578125, 4.375, 0.4597168, 0.1373291, 1.7841797, -0.47485352, 0.2241211, 0.7246094, -0.00617218, -1.4824219, -0.3930664, 1.4208984, -1.2958984, 0.6503906, 2.3457031, 0.29223633, -1.8261719, 0.11065674, -0.65527344, 2.3691406, -1.4130859, -1.84375, 0.6010742, -0.5932617, 0.51660156, -1.3886719, -2.2011719, -2.171875, 1.484375, 1.6171875, 0.27368164, -0.34350586, -0.94921875, -3.4804688, -1.4619141, -2.9550781, -0.2697754, -0.6464844, 0.0055160522, -0.27319336, -2.4980469, 0.4116211, 1.0087891, 1.4970703, -0.32177734, 1.7929688, -1.4990234, 0.76123047, 0.77441406, -0.45874023, 0.87353516, 0.25927734, 0.33447266, -0.7866211, -0.3486328, -0.83496094, -3.6230469, 0.41845703, 0.7871094, -0.6533203, 1.4130859, -0.33154297, 0.08013916, 3.1992188, 1.1113281, -2.4511719, 0.9057617, -0.6611328, -1.1611328, 2.4140625, -1.8232422, 1.8623047, 0.89160156, -0.9848633, -0.15881348, 0.4169922, 3.0019531, 0.65625, 0.15356445, -0.3071289, -0.30371094, 0.4260254, -0.45483398, 1.5185547, -0.5644531, 0.6425781, 1.3066406, 1.1865234, 0.8354492, -2.1582031, -0.97802734, -0.30688477, -1.2128906, -1.8652344, -0.4025879, 0.49560547, 0.4729004, -0.32006836, 2.359375, 1.0449219, 1.7050781, -1.3632812, 0.41308594, -0.06878662, 1.5595703, 1.4980469, -1.4277344, -3.3730469, -1.4658203, -0.39013672, 2.1367188, 0.8339844, -1.9658203, -0.51904297, -1.7773438, -0.1685791, -0.66845703, 1.6669922, 0.80859375, 0.3251953, -1.1181641, 1.9443359, 1.4257812, -1.8457031, -0.24975586, 0.0021324158, 2.5039062, -3.0976562, 1.8095703, 2.3125, -1.0322266, -0.3190918, -0.22351074, 0.6464844, -0.5991211, -2.7519531, 2.7304688, -3.5390625, -0.83984375, 1.6845703, -1.1591797, -3.0898438, 0.43481445, 1.2939453, -0.7006836, 1.7255859, 1.6669922, 0.57666016, -0.72509766, 1.7724609, -1.2724609, -0.64160156, 1.1201172, -0.6074219, -1.2939453, 2.453125, -0.8334961, 3.8886719, 2.1601562, 1.6689453, -0.65722656, 0.1027832, -1.1660156, 0.7104492, 4.515625, 1.4814453, 1.390625, 0.52441406, 0.36889648, 1.6972656, 0.56884766, 1.5234375, -1.9013672, 0.5214844, 0.32177734, -0.51464844, -0.484375, -1.1035156, 0.75390625, 0.69189453, -0.91308594, -2.3242188, 1.0214844, 2.4179688, 0.23120117, -0.29736328, 0.26000977, 1.7714844, -2.0390625, 1.2363281, 0.80615234, 1.5976562, 0.8613281, -0.07525635, 1.9863281, 1.1347656, -0.75878906, 0.6538086, -0.80078125, 2.78125, -0.26171875, 0.5708008, 1.3857422, -0.07086182, 0.9770508, 0.91845703, 0.15783691, 1.6337891, -0.28466797, -1.2988281, -1.4970703, -0.9970703, -0.8022461, -1.0126953, -0.005592346, 1.0205078, 0.43823242, 2.4589844, 1.2460938, 0.86621094, 1.2529297, 0.8984375, -1.7724609, 2.6796875, -0.12731934, -0.52685547, 0.072143555, -1.5546875, 2.078125, -1.5439453, -0.5908203, -2.5546875, 0.32348633, 1.6738281, 0.3466797, -1.5058594, 0.8901367, -0.72216797, 2.1425781, -2.4667969, 0.3190918, 0.33203125, 0.08880615, 1.5205078, -0.20910645, 0.5917969, 0.2800293, 0.7631836, -1.1621094, 1.6347656, 0.19812012, -0.109802246, -0.7792969, 1.3427734, 0.8466797, 0.75634766, 2.4882812, -0.84814453, 1.5820312, -0.13989258, -0.7397461, 0.328125, -0.15441895, 0.14245605, -0.31518555, -1.3095703, -0.40576172, -0.2824707, 1.0087891, 0.9633789, -1.8896484, -0.39379883, 2.3613281, 0.5258789, 0.7495117, -2.1992188, -2.0898438, 0.19348145, -0.59277344, -0.265625, 1.1699219, -0.31982422, 0.110961914, 0.6484375, 0.109802246, 0.8676758, -0.54003906, -2.5351562, -0.9057617, 1.4716797, 1.34375, -0.41748047, 0.101745605, 0.31762695, -0.94677734, -0.46142578, 1.3417969, 1.1044922, 1.3789062, -0.45922852, -0.63134766, -2.0527344, 0.5102539, 0.013641357, 2.5449219, 0.10437012, -0.4580078, 1.1572266, -2.9707031, -2.8789062, -2.8730469, -1.5351562, -0.055847168, -0.10119629, -1.0957031, -0.39453125, 1.0029297, 1.7705078, 1.2294922, 0.36865234, 0.2734375, -1.2041016, 1.2958984, 1.7880859, -0.09729004, 0.3125, 0.7998047, 0.56396484, 1.8027344, 1.0332031, 0.21508789, 1.9121094, 0.6738281, 0.04647827, -2.0527344, -0.018371582, -1.5566406, -0.8041992, -0.44750977, -0.76708984, 2.2910156, 0.6118164, -1.6210938, -2.2734375, -1.0966797]}, "B07BFBDP5B": {"id": "B07BFBDP5B", "original": "Brand: Outspark\nName: Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel\nDescription: Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.\nFeatures: BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal\nFit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles\nSize: 12\" diameter at the base, 8\" diameter at the top, 5\" tall\nPlease check size requirements before ordering\n", "embedding": [-2.6035156, 0.35498047, 1.6376953, -1.8017578, -0.7861328, 1.0712891, 0.22155762, -0.7661133, -0.96875, -0.051513672, 1.5908203, 0.49975586, -1.0410156, -3.6972656, -0.9458008, 1.1201172, 1.640625, -1.2705078, -0.75341797, 0.3894043, 3.2597656, -0.099121094, 0.94384766, -2.8828125, 2.7988281, 0.34155273, 3.1386719, -2.5644531, 0.070251465, -1.4306641, 0.4580078, 0.5722656, -1.7548828, 1.8623047, -3.7949219, 0.4675293, -0.5722656, -0.4892578, -1.8974609, 0.9946289, -0.08380127, -0.6464844, 0.63427734, 1.7177734, -2.7988281, -1.3554688, 0.30029297, -0.98046875, -1.3251953, -1.8408203, 0.058898926, 0.022155762, 0.5102539, 1.3730469, -2.3320312, 2.8535156, -0.81347656, -1.4013672, 0.8598633, 0.2758789, 0.44189453, -0.5024414, -1.9101562, 1.5458984, -1.5556641, 0.94433594, -0.09899902, 0.33520508, 0.8520508, 0.27392578, 0.093566895, 0.24084473, -2.1621094, 0.5336914, -0.5761719, -0.19641113, -2.2734375, 0.88720703, 1.4277344, 0.6772461, -1.2724609, 1.7958984, 0.8696289, -0.8154297, -0.44848633, -0.24951172, -0.94140625, -2.2441406, 0.81689453, -0.0019931793, -0.484375, 1.1914062, -0.8618164, -3.0351562, 3.9628906, -3.7851562, -0.30419922, -0.8154297, 0.09667969, 0.76416016, -2.2929688, 0.45483398, 0.8725586, -1.4355469, -2.0195312, -0.5810547, -0.054107666, 1.1591797, -2.4003906, -1.3359375, -2.9804688, 0.7158203, 0.90185547, 0.49731445, 0.5131836, 0.9458008, 0.5131836, 0.71240234, 1.8505859, 0.5576172, 3.515625, -1.1113281, 0.0025634766, -1.0351562, 0.38671875, -0.06817627, 0.9765625, -0.37768555, 2.8691406, 0.46435547, 0.27905273, -1.6044922, 4.6679688, -0.31811523, -1.0253906, -3.4550781, -1.5039062, -1.5908203, 0.06378174, -0.28271484, -2.6933594, -0.49902344, 2.6191406, -2.6425781, -3.6074219, -1.1386719, 0.32080078, -1.6367188, 0.19580078, 0.6542969, 0.44482422, -0.7866211, -1.359375, 0.8510742, 2.3613281, -1.4130859, -0.5625, 0.98583984, -1.0244141, 1.0673828, -0.22424316, -1.2578125, -0.53027344, -0.31640625, -1.3427734, -2.6503906, 1.1230469, 0.37475586, 0.6035156, 3.3476562, 0.62939453, 1.2470703, 0.9135742, -1.7060547, 1.7246094, -1.8994141, -0.17895508, 1.6337891, 1.1796875, 0.8388672, -1.5117188, -1.6171875, -1.7128906, 1.1835938, 0.19104004, 0.047424316, -0.9091797, 1.0517578, 1.4746094, -1.9970703, 0.3840332, 0.09265137, 1.9970703, -0.7792969, 0.19250488, 0.083618164, -0.5332031, -2.2109375, 1.1396484, 1.1005859, -1.1210938, -0.6381836, 0.9042969, -1.3037109, 0.12524414, -0.7011719, -0.53515625, -0.009178162, 0.7792969, 2.4238281, 0.3569336, -1.2265625, 1.5332031, 0.5253906, -1.4960938, -0.8515625, 2.0957031, 0.2286377, 2.0332031, 1.3359375, -0.7504883, -0.34326172, 2.1542969, 4.828125, 0.40600586, 1.9023438, 0.93603516, 0.97509766, -4.2539062, -1.2724609, 3.2226562, 1.0019531, 0.062286377, -0.13806152, -0.43579102, 3.2148438, 2.6953125, -2.1015625, 0.22070312, 0.15283203, 0.57373047, -1.609375, -0.8647461, 0.59472656, -0.640625, -1.2294922, -1.3457031, 2.5859375, 1.7021484, 0.21569824, -1.4677734, 1.546875, 1.4667969, -1.8671875, -0.6582031, 0.23547363, -0.7294922, -0.63964844, -0.5175781, -2.5722656, 2.9179688, -0.10913086, -0.4128418, 1.5400391, -0.56933594, -0.25561523, 2.0976562, 2.7109375, -2.4433594, -0.90527344, 0.7260742, 0.34765625, 1.2011719, -1.2382812, 1.6191406, 1.3671875, 0.2919922, 1.4375, 2.2597656, -0.81396484, 1.0361328, -0.72265625, 0.08062744, -1.1806641, 1.2363281, -0.30371094, -0.30541992, -1.4013672, -1.1884766, 0.5151367, 4.7890625, 0.4501953, -1.4716797, 2.7265625, 0.20983887, 3.0566406, 0.8041992, -0.12695312, -0.03074646, 2.2753906, 0.74072266, 1.7099609, -1.7470703, -0.6689453, -1.4902344, 0.10534668, 3.7558594, -0.65625, 1.4414062, 1.1855469, 0.03665161, -0.6308594, -2.9199219, -1.2138672, 0.16333008, -0.8642578, 1.5869141, -1.0791016, 0.034729004, -0.89453125, 0.72802734, -0.5410156, 0.011260986, -0.26513672, 1.6708984, 2.3378906, -0.8208008, 1.8320312, 0.66259766, 0.47485352, 0.21435547, 0.001159668, 1.7900391, -0.12536621, -1.4394531, -1.5039062, -0.56591797, -2.1425781, -1.3632812, -0.42456055, 0.9760742, 2.7832031, -3.078125, -0.37426758, -0.14929199, -4.9609375, -2.2207031, -0.7661133, 0.29418945, -1.0644531, 0.19348145, 1.5800781, -2.1503906, -5.3710938, 0.17443848, 1.4921875, 2.2324219, -1.15625, -1.8291016, 1.9863281, -0.8876953, 0.37109375, -1.0585938, 0.16040039, 1.5478516, -0.052337646, -0.17785645, -2.4277344, 0.44995117, -2.4804688, 1.0820312, -1.9667969, -1.3867188, -2.9179688, -0.8417969, 0.59033203, -0.6171875, 4.0820312, 0.28735352, 3.2089844, -1.5439453, -0.24804688, 0.19519043, -0.15966797, -1.9345703, 0.66259766, -0.7397461, -1.6259766, -0.9760742, -1.3671875, -0.77685547, -2.2851562, -0.7441406, 0.6074219, 0.796875, 1.3105469, -0.79003906, -1.3193359, -0.26904297, -1.4990234, 0.11419678, -2.2421875, -1.7802734, -0.89697266, -2.3242188, -0.46313477, -2.0644531, 1.3164062, 3.1816406, 0.0051345825, 1.0527344, 2.7851562, -0.27197266, 0.5126953, 0.48364258, -1.8144531, 2.234375, -0.46655273, -1.9628906, 1.4277344, -1.7070312, -1.5068359, -1.9560547, 1.0869141, 2.7910156, -0.26660156, 3.2773438, 0.2956543, 1.0732422, -0.18115234, 0.13391113, 0.42749023, -1.5498047, 2.6113281, 2.9433594, -0.69189453, -2.3574219, 1.0537109, 1.7275391, -3.4902344, -0.9951172, 2.2480469, 1.4453125, 0.8154297, -0.3137207, 0.7167969, 0.3774414, 0.7246094, 1.0537109, 2.8613281, -1.5517578, 1.2197266, 1.0292969, 1.84375, 1.6015625, 1.2275391, 1.1767578, 1.546875, 2.0527344, 2.6679688, 1.0205078, -2.5273438, -0.30029297, 0.053100586, 2.1542969, 0.43310547, 3.4570312, -1.4794922, 0.6538086, -0.6220703, 1.6591797, 2.0566406, -0.81933594, 0.35302734, 3.0136719, -1.8076172, -0.8354492, 0.7084961, 1.0263672, 1.2275391, -1.8056641, 0.69628906, -0.7680664, -1.0029297, 0.60302734, -2.921875, -1.4863281, -2.2695312, 1.4013672, -0.3466797, -0.41577148, 1.0107422, 0.088378906, -0.34350586, -0.6191406, -0.2932129, 1.8623047, -1.2177734, 0.18896484, 0.59814453, -1.2294922, 0.3232422, -1.7421875, 0.41137695, 1.1875, -0.8076172, -1.1806641, 1.0097656, 1.3886719, 2.9355469, 0.91259766, 0.11987305, -1.0556641, 0.73779297, 0.3449707, -4.4335938, -0.85302734, 1.9414062, -4.8867188, 0.2487793, -0.096069336, -0.34179688, 0.45483398, -1.0917969, 2.1289062, -1.4130859, -0.008163452, 3.2441406, -1.5205078, 0.10620117, -1.1533203, -1.9394531, 0.72998047, -1.890625, 0.46728516, -0.24377441, 2.3300781, -0.13586426, 1.4160156, 1.3154297, -2.6054688, -1.6835938, -2.4941406, 0.31323242, -0.65966797, -0.6899414, 0.68603516, -0.85302734, -4.0625, -1.3486328, 0.5854492, 1.515625, 1.1181641, -0.03692627, -1.8125, 2.6132812, -1.0839844, 0.034057617, -2.1503906, 3.3066406, -0.98583984, -1.7802734, 0.13635254, 0.5786133, 3.078125, 0.15246582, 0.6533203, 0.17114258, 1.5429688, -0.5473633, -0.8276367, -0.8120117, 1.2490234, 1.1787109, 0.07318115, -0.7949219, 0.029724121, 0.38110352, 0.22607422, -0.67578125, 0.1394043, 0.35327148, -1.9501953, -0.54052734, -0.0703125, 0.44555664, 1.8515625, 1.0097656, -2.7265625, 0.60839844, -0.80029297, -1.6923828, -1.6269531, -0.50097656, -0.77197266, -1.2382812, 3.0644531, -0.35205078, 1.3378906, -1.0205078, 1.9228516, -1.2099609, 0.9272461, 1.8164062, 2.3457031, 3.6933594, -1.7001953, -1.8261719, -1.0380859, 0.03353882, 0.44726562, 0.65527344, 0.20983887, -0.3161621, 0.9946289, -0.5473633, -1.1240234, -1.5097656, 1.9638672, 1.6152344, 1.8720703, -1.5283203, 0.5883789, -1.3183594, 1.1162109, 2.796875, 0.9145508, 0.84375, -0.7919922, 0.20471191, 0.8461914, 1.0166016, -4.328125, 0.78759766, -0.57958984, 1.1621094, -0.50146484, 0.4855957, 2.8183594, -2.7148438, 1.0664062, -0.14343262, 1.6376953, 0.4807129, 0.40234375, 0.8334961, 1.9248047, -1.5722656, -0.26831055, 2.7265625, -0.09490967, 1.2597656, 2.6738281, 1.0166016, -2.0195312, 0.7294922, 0.8569336, -0.69140625, 1.3994141, 0.7285156, -2.0976562, 1.0351562, -0.44628906, -3.5644531, -0.5136719, 3.4335938, -0.9511719, 2.2988281, -0.60498047, -1.9121094, 1.7285156, -3.1425781, -0.8383789, -0.75927734, -0.23327637, 1.8808594, -1.4570312, -0.14001465, 0.68896484, 0.97216797, 3.5664062, -2.1464844, -2.3828125, 1.1640625, -1.0371094, -2.0429688, -1.3183594, -2.5058594, -2.8125, -0.94189453, 1.953125, 2.2207031, 0.3540039, 1.4082031, 1.609375, -0.6196289, -0.93896484, -3.2890625, -0.64160156, -2.6679688, 0.92529297, 2.3515625, -2.3828125, -0.23999023, -1.0585938, -0.72314453, -0.6010742, -0.3623047, -0.51660156, 1.1494141, -0.5810547, 1.8486328, -1.8945312, -2.2851562, -2.7324219, 1.0009766, 0.921875, -1.2919922, 0.46826172, -0.63964844, -2.1523438, 1.2978516, -2.1796875, -1.3466797, 0.33129883, 0.5395508, -0.8261719, 0.6401367, -1.2792969, -0.24243164, -1.59375, 1.2324219, 1.7792969, 0.17810059, -2.7285156, -0.92626953, 2.9179688, -1.9423828, 0.99121094, -0.18811035, -0.796875, 2.7265625, -0.07116699, 1.1083984, -1.7646484, 0.48632812, -2.1777344, 0.51123047, -0.022415161, -1.1835938, 0.9975586, -2.1210938, -0.63623047, -0.92041016, 0.29516602, 1.6152344, 0.7314453, 0.2109375, 0.15588379, -0.15625, 0.99316406, 0.022369385, -1.0175781, -0.14733887, -0.07330322, 0.8911133, -0.007575989, 1.9052734, -2.1582031, -1.5097656, 0.27197266, -1.7998047, 0.55371094, -1.203125, 1.0185547, 0.2939453, -1.2578125, 2.6972656, 1.5556641, 0.66308594, -0.546875, 0.15368652, -1.0009766, 3.2890625, 2.59375, -3.3769531, -1.1289062, -0.13366699, 0.8691406, -1.0234375, 1.4746094, -4.625, -0.42651367, -0.15148926, -0.55371094, 0.33129883, 1.2128906, 3.03125, 0.83203125, -1.7607422, 2.0195312, 2.09375, -0.17041016, 1.9140625, 1.65625, 1.3574219, -3.9179688, 4.4179688, 0.3486328, 1.2236328, 1.5986328, -1.6728516, 1.1152344, 0.89453125, -2.7382812, 2.2734375, 0.65625, -1.7294922, -1.6259766, -2.2167969, -0.35351562, 1.1611328, 0.27441406, -1.234375, -0.6850586, 0.9926758, -0.30859375, 1.1035156, 0.30151367, -0.07922363, -1.8212891, -1.1416016, -1.296875, 0.029647827, 0.95703125, -2.1757812, 1.5878906, 0.88720703, -2.0605469, -0.80126953, -0.5756836, 1.1835938, 1.1474609, -0.3713379, 2.1933594, -0.17614746, 1.4384766, 2.0371094, 0.72998047, 2.3710938, 1.3916016, -0.94921875, 1.7001953, 0.7104492, 1.3945312, 1.1318359, -1.4775391, 1.0302734, -1.5390625, 1.9570312, -0.95410156, -1.8085938, 1.6767578, -2.9941406, -0.33691406, -1.7167969, 2.65625, -2.6386719, -0.68359375, 0.58203125, -0.44360352, -1.4716797, -1.5400391, 1.1943359, 1.0507812, 0.70703125, -1.3652344, -0.1928711, 0.54833984, -4.7773438, 0.2220459, 0.84814453, -0.84814453, -0.87890625, 1.1074219, 2.4042969, 0.9667969, -1.3310547, -0.9423828, 0.7324219, -0.9370117, 1.8037109, -0.82470703, -1.7529297, 0.6879883, 0.48608398, -0.3552246, -1.8359375, 1.4814453, -1.3388672, -3.0273438, -1.515625, 0.48608398, 1.9863281, 1.3486328, 0.7373047, -1.8222656, 1.6787109, 0.57470703, 1.6494141, -0.42358398, 1.6923828, -0.04373169, -0.69433594, 0.43139648, -0.18701172, 1.7148438, 1.7851562, -2.078125, 0.10748291, 0.16772461, 0.22570801, 1.4775391, 2.4277344, 1.3193359, -0.45947266, 1.1025391, -0.99658203, 2.4980469, -0.09692383, -1.1855469, -0.21936035, 0.23852539, 1.0751953, 2.4570312, 1.8154297, -2.6289062, -0.63183594, 0.27294922, 0.44750977, 0.4897461, -0.7631836, -1.84375, -0.7026367, 0.012535095, -1.7275391, -1.046875, -0.39770508, 1.8417969, 1.3759766, 1.8251953, 0.8383789, -2.7460938, 0.84814453, 0.35864258, -0.9848633, 1.75, 0.05706787, 1.4609375, 0.14086914, -0.0028362274, 1.4316406, -0.056762695, 1.609375, -1.2773438, 0.7685547, -0.88183594, 1.1240234, -1.3232422, -0.21411133, 1.0097656, -3.5996094, 1.1953125, -2.2636719, 0.8676758, 1.0712891, 0.40307617, -0.35205078, -1.359375, -1.8330078, -0.9042969, 0.9082031, -2.2480469, 0.80078125, 3.3164062, -0.19799805, -1.3583984, 0.6723633, -1.7871094, 1.109375, -1.5654297, 1.1132812, 0.06323242, -3.6308594, 0.33007812, 1.5, 1.5371094, 0.0670166, -0.30493164, 0.23535156, -1.2724609, 2.7773438, -0.82666016, 0.52197266, -1.3085938, -1.6484375, 0.109558105, 3.3847656, 1.5214844, 1.6230469, -0.16674805, 2.8632812, 3.078125, -3.1074219, 0.06958008, 1.1855469, 1.8017578, 0.034057617, -0.9814453, -0.33862305, -0.6298828, 0.32714844, -1.2617188, -1.0898438]}, "B08VWF26NT": {"id": "B08VWF26NT", "original": "Brand: Patelai\nName: 2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch\nDescription:
          Features:

          Extra long design:
          These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

          Stainless steel blade:
          Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won't stain the food residue, convenient to clean, reusable and durable for your long-term needs.

          Specification:
          Material: stainless steel, wood
          Size: approx. 20 inches in full length
          Color: as shown in pictures

          Package content:
          1 x Slotted spatula
          1 x Solid kitchen spatula

          Note:
          Pointed parts include, please use it carefully and keep away from kids.
          Manual measurement, please allow slight errors on size.
          The colors may exist slight difference due to different screens.\nFeatures: Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire\nThickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use\n4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge\nNice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more\nMultiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience\n", "embedding": [-3.0878906, 1.1621094, 1.9072266, -0.8852539, 0.7207031, 0.4338379, 1.4404297, -0.69921875, 1.0947266, 0.05404663, 0.35742188, -0.007118225, -0.3798828, -3.3652344, -1.1054688, 2.0859375, 0.6591797, 0.4482422, 2.7070312, 3.1699219, 1.0830078, -0.16369629, -0.47265625, 0.6879883, 0.98779297, -0.3269043, 3.0839844, -2.9726562, 2.0917969, 1.2568359, 1.0068359, 0.09643555, 0.8847656, 0.9892578, -1.9287109, -0.7871094, -0.27172852, 2.6914062, 0.86376953, -1.2460938, 0.40600586, -1.3574219, 0.9399414, 1.7978516, -3.2460938, 1.8125, -1.2275391, 1.9443359, -2.5976562, -2.7558594, 0.4946289, 2.15625, -0.4025879, 1.0136719, -2.1386719, 1.625, -2.2480469, -3.7304688, 0.7373047, -3.1855469, 1.9726562, -0.08392334, -0.2232666, -0.4633789, 1.3417969, -1.6328125, -0.14123535, -2.1191406, -1.4716797, -1.0419922, -1.0888672, -0.59765625, -0.64746094, -0.5800781, -0.023040771, -2.3300781, -0.63964844, -0.0715332, -0.44750977, -0.4699707, -1.0732422, 1.1416016, 0.76708984, -2.2226562, -1.0654297, 0.34301758, -2.1777344, 1.0527344, -0.9814453, -1.3378906, -2.3476562, 1.4628906, -1.3554688, -3.7890625, 2.2597656, -0.95654297, -0.123168945, -1.1064453, 0.062438965, 1.1240234, -0.43579102, -0.90478516, 0.7709961, 0.9926758, -0.63134766, -1.6005859, 1.7626953, 1.4414062, -1.8046875, -1.0761719, -2.7597656, 1.5361328, 1.1523438, 0.3034668, -0.6489258, 0.5283203, -0.6879883, 1.0429688, 0.36547852, 2.3554688, 1.2236328, 0.6855469, -2.84375, -2.0371094, -0.041046143, 2.0820312, -1.0996094, 3.2460938, 3.6113281, -0.640625, -0.08306885, -0.22314453, 0.17260742, -1.2246094, 0.4753418, -2.4746094, -0.29223633, 0.36889648, -0.4020996, 1.6035156, -0.118774414, 0.9838867, 3.0488281, 0.70947266, -2.9394531, -0.09448242, -0.001250267, 1.4179688, -1.7988281, -2.515625, -0.1694336, -0.16516113, 0.99365234, -1.1621094, 2.5722656, -0.7324219, 1.3603516, -0.53125, 0.4663086, -0.46289062, 0.5830078, -2.203125, 0.45288086, 1.609375, 0.9428711, -2.0371094, -1.8037109, 3.1621094, 0.19189453, 1.7167969, 0.58935547, 0.40185547, 0.26220703, -0.34155273, -0.61083984, -0.6669922, 0.5097656, 1.4980469, 0.017700195, -0.28881836, 1.7285156, -4.0117188, 2.1757812, 1.7978516, 0.4519043, -0.43896484, 2.7089844, -1.4550781, 2.2695312, 0.7285156, 3.2480469, 1.1699219, 1.8935547, 0.17114258, 0.7519531, -1.6455078, -2.3339844, -1.8759766, -0.6689453, 1.0576172, -2.4511719, -2.2011719, 0.0017814636, -0.28564453, -0.72802734, 0.75683594, -1.7333984, -0.6484375, 2.0683594, 3.1757812, 2.4101562, -0.69970703, 1.4414062, -1.2734375, 0.90966797, -2.1601562, 0.7104492, -0.4580078, 2.3984375, 2.5292969, -0.7739258, 0.0017156601, -3.6015625, 4.2890625, -0.20959473, 0.120788574, -0.40795898, 2.4550781, 0.47924805, 0.4790039, 1.9716797, 0.45410156, -0.1739502, 2.1601562, 0.17114258, 0.46020508, 1.4492188, -3.7753906, -1.4980469, 1.5644531, 0.84814453, -3, 0.18151855, -1.6552734, 0.3930664, -1.1083984, -0.43530273, -0.3083496, 0.3642578, -2.125, -2.1914062, 2.1503906, 1.5087891, 1.2910156, -0.5708008, 1.0703125, -1.1806641, 0.94970703, -3.2910156, 0.31054688, 2.9667969, 0.082336426, 2.0078125, 0.5527344, 1.3037109, -0.27392578, 2.2890625, -1.6787109, -2.6464844, -1.1494141, 0.10473633, 0.47583008, 0.74658203, -1.0341797, 1.8046875, 0.91503906, -0.24511719, -0.09887695, 1.28125, 0.06567383, 0.6953125, 0.3227539, 3.4921875, -1.359375, -2.8710938, -0.2770996, -2.4140625, -1.1591797, 0.45947266, 0.54345703, 4.1875, 0.3623047, -0.87597656, 3.1191406, -0.15588379, 0.71777344, 2.6835938, 2.0292969, -1.2177734, -2.0683594, -0.068115234, 2.015625, 0.6948242, 1.0117188, -0.0637207, -0.6411133, 0.21813965, -1.5654297, -0.92041016, 1.2724609, -4.203125, 0.016403198, -0.74902344, -1.1523438, -0.6923828, 0.17675781, -1.0615234, 1.3085938, 0.18310547, -0.55078125, -1.1347656, -0.07562256, 1.5146484, -1.7246094, -0.95654297, 0.75390625, -0.0074043274, 2.7304688, 1.3671875, 0.5102539, -0.85302734, -0.33740234, -0.5708008, -1.171875, -2.4140625, -0.76660156, -2.5625, -0.48413086, 2.1972656, -0.19555664, -0.16333008, 1.6513672, -2.6503906, 0.18896484, -1.9140625, -3.5722656, -0.17602539, 0.9433594, 1.6953125, 0.10998535, -2.1425781, -0.99853516, 0.044036865, -4.375, -0.5024414, -1.4033203, 0.69921875, -1.7744141, -1.9726562, 1.0566406, -0.52978516, 0.38720703, 0.7998047, -0.31567383, 0.0236969, 1.2207031, 0.11639404, -2.4101562, 0.06994629, -1.6064453, 0.2298584, 0.56103516, 0.7050781, -2.5996094, -1.4853516, -2.0917969, 1.4677734, 2.3085938, -0.051452637, 3.0214844, -0.8154297, -0.7734375, 0.80371094, 1.703125, 2.5683594, -3.2578125, 1.0849609, -2.5214844, 0.6586914, -1.8203125, 1.5957031, -1.4121094, -0.86572266, -1.4199219, 2.3339844, -1.5175781, -0.44848633, -2.4179688, -3.4804688, -1.1533203, 0.13867188, 1.0019531, 0.23901367, 0.33691406, -0.6503906, -1.9316406, 0.13317871, -1.0957031, 0.9160156, -1.0869141, -0.60791016, 2.1503906, 0.45214844, 0.32226562, 1.1435547, -0.47436523, 0.055664062, -2.3886719, -0.13891602, -1.3789062, -0.54541016, -0.9189453, -1.1279297, -1.7636719, 2.5839844, -0.23913574, 3.5546875, -0.99121094, 1.8935547, -0.019577026, 1.7900391, -0.6435547, -0.6977539, 1.4404297, 1.3232422, -0.234375, -0.0362854, 1.4765625, -0.29663086, -2.4335938, 2.0722656, -0.32836914, 0.7192383, 1.6162109, 1.8691406, 0.8486328, 0.15515137, -3.1816406, 2.1464844, 0.2541504, -0.12194824, -2.84375, 1.5791016, 0.3383789, -2.5644531, 0.24060059, 3.1484375, 0.88671875, 1.2294922, 1.5654297, -0.35546875, -2.9980469, 3.171875, -0.56689453, 3.2695312, 0.75634766, 1.9257812, -0.5078125, -1.8017578, 1.0234375, -0.8046875, 0.5698242, -2.8242188, -0.6040039, 3.1503906, -1.4199219, -0.4699707, 0.5317383, -0.19238281, -1.5136719, -3.3632812, 1.4609375, -0.6928711, -2.3203125, -0.01007843, -1.2783203, 1.5, -0.4296875, 4.7890625, -0.8183594, -1.0322266, -0.88671875, 2.5507812, -1.9423828, -0.6640625, -2.0957031, 3.2011719, -0.32177734, 1.8701172, -0.6411133, -0.5185547, 3.8378906, -4.109375, 1.4160156, -0.9116211, -1.5419922, 0.53808594, 1.5771484, 0.2467041, 1.0595703, 0.48168945, -0.30126953, 0.27124023, -1.7451172, -0.4663086, -1.9345703, 0.30566406, 0.3984375, -3.5722656, -0.6713867, -0.39331055, -0.4116211, 1.4853516, -1.0146484, 3.5898438, 1.3076172, -3.6796875, -0.68408203, -2.1816406, -1.1796875, -0.38549805, -2.2265625, 1.4003906, 1.3046875, 0.8359375, 0.8808594, 0.61865234, -0.22521973, 7.140625, 1.2353516, -1.5849609, 1.4619141, -1.1640625, -0.24609375, -0.25097656, -0.33203125, 1.2158203, 1.2294922, 0.3125, -1.7666016, 1.5771484, -1.7685547, 2.2734375, 1.9404297, -1.2822266, -0.99072266, -3.8886719, 1.8320312, 0.5307617, -0.28198242, 0.4165039, -2.3886719, -1.0322266, -0.23754883, 0.8720703, 0.09649658, 2.1132812, -1.2314453, -0.06854248, 0.83691406, -1.3330078, -1.0273438, -0.67822266, 3.6660156, -1.4003906, 0.119018555, -1.7871094, -0.034484863, 0.06161499, -0.9404297, 0.5908203, 0.0103302, -2.2773438, 0.0748291, 1.0039062, -2.3378906, 2.8808594, 2.1835938, -2.7617188, -2.8691406, 0.53271484, -1.9824219, -0.8334961, -0.3527832, 0.28564453, 0.38671875, 0.15942383, -1.0810547, 1.5908203, -2.7480469, 0.28857422, -0.7753906, 1.5224609, -0.6376953, 0.5336914, 4.96875, -1.7050781, -1.0527344, 0.032409668, -2.4589844, -0.83154297, -0.8310547, 0.7207031, -0.2939453, 0.8671875, 0.61621094, 1.03125, 0.28393555, -0.53027344, 0.62353516, -0.3125, -1.6796875, 2.9414062, -0.88671875, -1.3408203, 0.97802734, -0.29541016, 1.8740234, -0.11187744, 0.9165039, -0.1027832, 1.2060547, -2.0351562, -0.03677368, -1.1669922, -1.5585938, 0.76904297, 2.5898438, 0.73583984, -0.54296875, -1.0341797, -0.5205078, 0.89208984, -0.37353516, -0.5341797, 2.2011719, 0.6621094, -0.8100586, 0.5239258, 1.4257812, 3.6269531, -0.6118164, 3.8671875, -0.640625, -3.171875, 2.90625, 1.6845703, -3.7246094, 0.5566406, -1.2138672, -2.9433594, 0.3737793, 0.2454834, -2.5234375, 1.7021484, 2.3574219, -1.4003906, -1.1757812, -3.8398438, -0.24438477, -1.1357422, -1.5273438, 0.7138672, -1.96875, -3.9804688, -0.115112305, 0.21472168, -1.2265625, 1.3369141, 0.14404297, 2.7363281, -1.0302734, -1.0498047, 1.2226562, -1.0585938, 1.25, -0.73095703, -3.3828125, -3.3457031, 2.2597656, 2.3203125, 1.9384766, -1.1728516, 0.21606445, 2.1503906, -0.3696289, 2.2617188, -0.7709961, 3.7226562, -0.66308594, 1.8359375, 3.8964844, -2.9472656, -1.5507812, -1.3339844, 2.8808594, 0.7285156, 2.5292969, 0.23425293, -1.4277344, -1.7041016, 0.30908203, -0.23254395, -2.4726562, 0.015701294, 0.69628906, -0.64208984, 0.54296875, -1.2119141, -0.5078125, -0.56591797, -0.8701172, -1.6884766, 1.7607422, 0.14147949, 0.33618164, -1.5224609, -1.5917969, 1.1611328, -0.7661133, -1.1015625, -0.4453125, 3.0742188, -1.7138672, -2.1074219, -0.49194336, 0.87402344, -1.4091797, -0.63623047, 1.2841797, -1.3525391, 0.51660156, -0.9916992, 0.50439453, -2.2792969, -0.4543457, 0.41870117, 0.3918457, -1.3271484, -0.30908203, 2.5996094, -2.5078125, -1.3876953, -0.10888672, -2.6582031, 2.1835938, 1.9414062, -1.0947266, 1.2070312, -0.48168945, -2.3417969, -1.0097656, -0.46850586, 0.32763672, 0.6425781, 1.3447266, 0.8847656, 0.22253418, -2.0878906, 0.012123108, -0.84375, -0.5053711, 0.74316406, -0.5810547, -0.07348633, 3.2246094, -0.71777344, -2.1757812, -0.43969727, 0.34985352, -1.3623047, 0.76123047, 0.108947754, 1.6611328, 0.5283203, -0.19018555, 0.5629883, -3.0371094, 0.90625, 0.19812012, -1.6279297, -2.4238281, 0.60595703, -1.1357422, -0.9296875, 1.1425781, -0.7426758, 1.9677734, 1.0039062, -1.6230469, -0.63623047, -0.22546387, -3.0566406, -0.49487305, 1.2978516, 1.4521484, -0.62158203, 3.1992188, -1.6259766, -2.3984375, 2.3847656, -1.0625, 1.3427734, 0.9682617, -1.2285156, -1.1035156, 0.5053711, 1.3476562, -2.0253906, -1.8710938, -2.1308594, 1.5390625, 1.1621094, -0.99658203, -2.2226562, 2.6777344, 1.3935547, 3.4785156, 2.6640625, 0.11364746, -1.1640625, 1.2412109, -0.2956543, 1.7451172, 1.6386719, -0.2290039, 0.06695557, 1.0996094, 0.18310547, -1.9833984, 0.5366211, 0.5307617, 0.80859375, 0.004501343, 1.9960938, 0.88427734, 2.9667969, 4.3632812, -0.60791016, 3.1054688, 0.4165039, 0.34985352, -1.6289062, 4.3359375, 0.17260742, -1.4003906, -1.0800781, 0.4567871, -0.76464844, 1.78125, 0.51708984, 1.1337891, -0.016311646, -1.8115234, 2.0742188, 0.96533203, -0.9404297, -1.03125, 1.0849609, -1.1132812, -0.5878906, -0.5024414, -0.014015198, 2.6914062, 1.3925781, 0.29174805, 0.27856445, -0.7553711, 1.1074219, -2.0859375, 2.4375, 1.3779297, -0.9042969, -1.7021484, 2.2460938, 1.8632812, 0.35620117, 2.5605469, -0.15600586, 1.6787109, 1.4238281, -0.121276855, 1.5390625, -1.2333984, 0.61816406, -0.46679688, -1.8613281, -0.25805664, -2.7109375, -0.5551758, -1.7949219, 0.4189453, 3.2246094, 0.20275879, 1.4511719, 2.0175781, -4.203125, 0.024291992, 0.38891602, -1.5205078, -0.22180176, 0.2084961, 1.5263672, 0.31884766, -1.5957031, 0.7895508, 0.43896484, 0.9140625, 0.5073242, -1.2148438, 0.13623047, 0.31420898, 0.54589844, 1.8203125, 0.43896484, -2.3613281, -0.33740234, 0.73095703, 3.125, -0.67089844, 1.1904297, 1.9873047, 1.3261719, 1.1152344, 0.37231445, 4.046875, -1.8232422, 1.1035156, -0.5654297, 0.19067383, -0.5498047, -0.07385254, -1.3867188, -0.077819824, -0.5161133, -2.2070312, -0.35058594, 2.6777344, 0.17565918, 2.6035156, 2.3203125, -0.6176758, -4.1210938, 1.0595703, 1.2802734, 0.24597168, -0.6586914, 0.32104492, 0.60791016, -0.56152344, -0.2783203, -0.44458008, 1.3896484, 1.0820312, -2.8964844, 0.5175781, -0.6171875, -0.43286133, 1.1884766, -1.5947266, -0.46850586, -2.03125, 0.62060547, 0.36572266, 1.4365234, 3.1582031, -0.30273438, -1.2744141, -0.92822266, 0.43139648, -0.42016602, -0.7265625, -4.0742188, -0.7363281, 3.4863281, 0.1418457, 1.1367188, 0.23547363, -0.32202148, 3.359375, -0.9838867, 1.328125, 0.09881592, -2.3730469, -1.5458984, 1.1044922, 1.4863281, 1.2294922, -2.375, -0.47680664, 0.46435547, -1.5283203, -1.2392578, 2.03125, -0.8984375, -1.828125, 0.9560547, 3.0410156, 0.61865234, -1.4755859, 2.2617188, 3.546875, 2.8027344, -2.8964844, 0.8828125, 1.8740234, 5.2421875, -0.6381836, 1.9003906, 0.39746094, -0.19177246, -0.29833984, -0.70214844, -1.6259766]}, "B085NSXPG4": {"id": "B085NSXPG4", "original": "Brand: ThermoPro\nName: ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey\nDescription: \nFeatures: Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion\nTouch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions\nHighly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14\u02daf to 572\u02daf with the highest accuracy of \u00b11.8\u00b0f/1\u00b0c and fast read times of 1-2 seconds\n6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again\nEasy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole\n", "embedding": [-3.5332031, 2.3925781, 4.8984375, 0.99316406, 0.23840332, 0.7324219, -1.0195312, 0.640625, 0.68847656, 0.2142334, 0.6308594, -0.38891602, -0.85058594, -1.2773438, 1.4423828, 0.81640625, 0.61035156, 0.8261719, 1.2587891, 2.7070312, 2.6484375, 1.9511719, -0.40698242, -1.1933594, 2.5664062, -0.36328125, 2.25, -2.2089844, -0.8066406, -1.3867188, 3.3144531, 4.0078125, 0.38793945, 0.90722656, -1.828125, -0.3581543, -0.59521484, 0.33422852, 0.27783203, -0.12451172, -0.1784668, 0.5917969, 0.024169922, 2.3828125, -3.2382812, -1.3105469, -1.2167969, 1.5058594, -2.2539062, 1.0136719, 0.4177246, 2.5449219, -2.0878906, -0.69873047, 0.75634766, 1.1396484, 1.4042969, -3.3847656, 1.5292969, 0.49951172, 0.07336426, -0.37890625, -1.7685547, 0.7114258, 0.12609863, -0.0869751, 0.08465576, -3.0253906, 0.2890625, 0.8925781, 1.2919922, 0.47338867, 0.31884766, 1.0986328, 1.0908203, -1.0712891, -0.11077881, 0.65771484, 1.7695312, 1.2216797, -0.6020508, 2.8046875, 0.3125, -1.9296875, 0.8154297, -2.0507812, 0.6274414, 0.091308594, 2.890625, -0.15429688, 0.010246277, 3.3476562, -1.8808594, -3.2558594, 2.1113281, -1.5419922, -1.1962891, -1.0166016, -1.7148438, 2.421875, -1.4072266, -0.7451172, 0.015945435, 1.4179688, -2.1757812, -1.984375, 1.0097656, 1.2519531, -3.4570312, -1.6308594, -1.4052734, 2.0449219, 0.014312744, 0.59472656, -0.8183594, 0.7285156, -0.17944336, -0.2919922, 0.47680664, 1.8144531, 1.3466797, -1.9326172, 0.6826172, -0.84228516, 0.3076172, 0.7866211, 1.9179688, -0.2824707, 0.8725586, 0.35668945, -1.3027344, -0.94140625, 0.46606445, -0.9863281, 1.6738281, -2.0800781, -2.2460938, -1.2099609, -1.7666016, -1.515625, -1.8427734, 0.9291992, -0.13134766, 1.5673828, -1.09375, -1.3564453, 0.43286133, 0.7089844, 1.6904297, -1.0771484, 2.21875, -2.1699219, -0.5004883, -0.546875, 1.9160156, 1.3417969, -0.76416016, -0.041900635, 2.9824219, 1.1103516, 0.19152832, -1.3945312, -1.6953125, -0.44750977, 1.03125, -0.4658203, -2.6425781, 1.1835938, 1.1064453, 2.78125, 1.3242188, -2.0546875, 1.0947266, -0.44140625, -0.06561279, -3.2949219, 2.9257812, 3.0039062, 1.2939453, 2.5527344, -1.1289062, -1.6445312, -0.20727539, 0.72265625, -0.16564941, -2.9882812, -1.8066406, 0.72314453, 2.40625, -2.6875, 1.7548828, 2.6269531, 0.94873047, 0.49169922, -0.25439453, -0.09716797, -1.296875, -3.1523438, 0.9399414, -0.09509277, -0.31274414, -0.7216797, -1.6416016, -2.6894531, -0.5756836, -1.3359375, 0.7285156, -0.03475952, 1.7587891, 1.3916016, 0.37304688, -1.8388672, 0.41088867, -0.5996094, 0.22546387, -2.9863281, 1.0361328, 0.23669434, -0.8833008, 1.9433594, -0.112976074, -0.91845703, 0.26000977, 3.9785156, -1.7421875, 2.3535156, -1.1992188, 0.5253906, -1.1376953, -1.40625, 3.1699219, -0.57714844, 1.453125, -1.8662109, -1.1650391, 1.8974609, 0.6748047, -1.5917969, -0.8671875, 0.81152344, -0.7260742, -2.5195312, -0.2614746, -1.3183594, -0.7631836, -0.5024414, -2.3671875, 3.1835938, 1.6787109, 0.24194336, 0.58203125, 0.0012931824, -0.38085938, -0.97802734, 0.77001953, -0.66259766, 0.32763672, 2.03125, -2.8007812, -1.2568359, 1.4619141, -0.1459961, -1.6601562, 2.7910156, 1.6494141, 0.42529297, 4.2773438, 2.46875, -0.40893555, -1.1953125, 1.4248047, -0.50341797, -1.1933594, -0.55126953, 1.875, 2.4179688, 0.5810547, 0.8803711, 1.5761719, -1.328125, 0.23742676, 2.2519531, -0.46875, -1.6269531, 1.3212891, -0.4716797, -1.9511719, -1.703125, 0.16503906, 0.46313477, 4.0546875, 0.97998047, -2.8457031, 3.0351562, -2.3007812, 1.1035156, -1.984375, -1.8632812, 1.0273438, -2.2402344, 2.5898438, -0.16772461, -1.4511719, -1.0712891, -0.06567383, 0.86572266, 1.7197266, -0.9291992, 1.7060547, 1.1962891, 0.69189453, -1.9375, -3.3984375, -0.48217773, -0.6274414, -2.8632812, -0.23242188, -2.234375, 0.73779297, -1.8007812, 2.6386719, 3.4140625, 1.3193359, -1.0576172, 1.4433594, 1.859375, -0.8613281, 0.8232422, 1.4638672, -0.08642578, 0.71728516, -1.3554688, 0.66796875, -0.36328125, -2.8125, 0.88623047, -1.5712891, -1.2402344, -0.9199219, 0.1237793, -1.953125, 2.1210938, -2.0722656, 0.6201172, -0.6010742, -1.6542969, -0.5620117, -0.8027344, -0.5390625, -1.1367188, 0.1940918, -0.61328125, -1.0683594, -2.0078125, 1.7304688, 0.64404297, -0.9428711, 0.15209961, -3.0800781, 1.1240234, -2.28125, -0.02154541, 0.67626953, 0.75439453, 0.50146484, -1.4707031, 1.5566406, -2.1425781, 0.060455322, -3.1464844, 1.46875, -1.2207031, -0.59472656, -2.0039062, 0.26489258, 0.4362793, 0.8725586, 0.94189453, -1.8369141, 2.9804688, -2.1015625, 1.7089844, 1.8916016, 2.3945312, -2.5585938, -1.7236328, -0.77441406, -1.8808594, -1.4052734, -4.4882812, 0.29101562, -0.2939453, 2.203125, 0.43676758, 0.3251953, -0.5800781, 0.5859375, -2.0234375, -3.2402344, -1.2617188, 0.70947266, -1.5380859, -0.8833008, -1.8095703, -0.12902832, -2.2050781, -2.4277344, 1.7636719, 2.3339844, 1.1220703, 3.4628906, 1.25, 0.9770508, -0.007881165, -0.6279297, -4.1445312, 2.0097656, 1.3027344, -2.6367188, -1.3623047, -0.44213867, -1.4208984, 1.7773438, -0.0043525696, 3.0175781, 1.1855469, 4.2695312, -0.81689453, 0.54248047, 0.5444336, 1.6142578, 0.47143555, -0.78271484, 2.296875, 0.12731934, -3.6035156, -2.7832031, 0.48486328, 1.2539062, 0.20581055, -2.7539062, 0.28710938, 2.046875, 4.1445312, 0.8774414, -1.6474609, -0.7993164, -2.3789062, 1.7519531, -0.8071289, -2.3476562, -2.2089844, 0.09552002, 1.578125, 1.1552734, 0.5390625, 3.7460938, 0.2607422, 1.7236328, 0.98876953, 0.5566406, -1.3837891, -1.6845703, 1.1035156, 0.9902344, 1.1269531, -0.42651367, 0.41625977, -0.4633789, 0.7963867, 0.35180664, 1.6445312, -2.1015625, -0.5205078, 0.0036258698, -0.54589844, 0.8901367, 1.0361328, -0.38671875, -0.75097656, -2.1230469, -0.3305664, 2.0039062, -1.2050781, 1.8076172, -0.3232422, -1.2666016, -0.3491211, 0.72021484, -0.32983398, 0.33642578, -1.2441406, 1.7412109, -1.3388672, -1.0136719, 0.23291016, 1.1904297, -1.0029297, -1.4541016, -0.7050781, -0.00015187263, -1.1796875, -2.7246094, 0.15991211, 1.4482422, -2.6015625, -2.6796875, -0.8359375, 1.9394531, 1.7587891, 0.086364746, -1.4501953, 0.30688477, 0.44433594, -1.0566406, -3.9414062, 0.72753906, 0.4206543, -0.40893555, 0.64746094, 0.6328125, 1.1367188, 0.38867188, -0.88427734, 1.1796875, 0.67285156, -3.1738281, 0.2775879, -2.4707031, -0.89160156, -1.5839844, -4.84375, 1.4804688, -0.4736328, 2.21875, 1.3476562, 2.0097656, 0.8095703, 2.8027344, 1.2568359, -2.0019531, -1.5048828, -0.5097656, 0.21533203, 0.34277344, -1.2314453, 5.390625, 1.3017578, -0.5097656, -1.1171875, -1.6982422, 0.5932617, 2.2460938, 1.2949219, 0.44628906, 0.3425293, -0.51171875, -0.4230957, -1.0087891, -0.08282471, -0.47631836, -0.05697632, -0.5932617, -0.84375, 2.2890625, -2.9472656, 0.75927734, -1.9023438, 3.8300781, -0.24316406, 0.24938965, -0.7470703, 1.5957031, 1.9892578, 0.35205078, -0.8232422, -0.24145508, -1.6298828, 1.1923828, 0.13500977, -0.78515625, -0.019378662, -3.5585938, -1.5810547, 0.20373535, -0.9589844, 0.7836914, 1.2880859, -1.4892578, 0.6459961, 0.93310547, -0.11907959, -1.5214844, -0.13867188, -2.8339844, 0.1586914, 0.18029785, 0.9350586, 0.8598633, -1.3457031, -0.35864258, -3.5273438, 3.5, 3.15625, 0.52001953, 3.2929688, -0.7607422, -1.3291016, -0.5908203, -0.375, 0.29248047, -0.7988281, 1.6328125, 0.08630371, 0.6586914, 1.1269531, -1.0888672, -1.5683594, 0.82470703, 1.2998047, 1.4365234, -0.36401367, 0.5029297, -1.4033203, 0.9086914, 4.2851562, 0.3137207, 3.0410156, -0.44311523, 1.9023438, -0.07128906, -1.7285156, -0.45507812, -0.019622803, 0.5131836, 0.42382812, -0.08459473, 0.058410645, 2.9472656, -1.3828125, -0.43701172, 0.013717651, -0.34228516, 1.2431641, 2.703125, 1.1259766, 1.5048828, -2.4179688, -1.9863281, 2.8632812, 2.4160156, -1.5332031, 5.015625, -0.2644043, -1.4804688, 0.20007324, 3.4414062, -1.3125, 1.4082031, -0.51416016, -1.6679688, 1.2070312, -0.56689453, -2.3496094, 0.25097656, 3.6464844, -1.0976562, 2.3945312, -1.9267578, -1.2617188, 2.9414062, -2.9296875, -0.29223633, -0.28100586, -0.10229492, 1.8388672, -1.3789062, -1.6767578, -1.1552734, 2.3867188, 1.9013672, -1.5429688, -0.55078125, 0.17736816, -2.0644531, -1.3662109, -0.044128418, -1.3701172, -2.7109375, -0.47143555, 0.81103516, 0.039489746, -1.3486328, 0.26586914, 1.8837891, -1.0087891, -0.8305664, -1.1943359, 3.3574219, -2.5429688, 1.078125, -0.4362793, 1.1630859, -1.1484375, 0.7026367, -0.97558594, -1.4199219, 1.0957031, 1.9492188, -0.9350586, -1.7138672, 0.45532227, -2.3476562, -2.6191406, -0.9223633, 1.8857422, 0.9902344, -0.8095703, -0.7324219, 0.17004395, -1.0771484, -1.1103516, 1.4384766, -0.6591797, 1.2011719, -1.015625, 0.1352539, -1.4199219, -0.5019531, -0.8979492, 0.7944336, -0.26708984, 1.1220703, -1.25, -3.2402344, -1.7167969, 0.3876953, -2.9824219, -2.8867188, 1.1337891, 2.7207031, -2.046875, 1.3671875, 0.5029297, -2.3730469, 3.2773438, -0.61572266, 1.0664062, 0.21398926, -0.25805664, 2.1640625, -2.1953125, 1.2441406, 1.1044922, -0.19177246, 0.70410156, 1.2578125, -2.8789062, 1.5166016, 0.10974121, -1.7929688, -2.1347656, -1.8720703, 0.03111267, -0.49243164, 0.18798828, -0.0715332, 1.2792969, -3.1953125, -5.5195312, -1.3828125, -1.390625, -0.6191406, -2.6640625, 0.5751953, 2.4238281, -1.1337891, 2.109375, 0.69970703, 0.9975586, -3.8808594, 0.8261719, 1.2695312, 1.2158203, 2.15625, -0.9741211, -0.034454346, -2.3007812, 0.25219727, 2.5175781, -1.0615234, -2.3164062, 0.51660156, -2.3730469, -1.2099609, 0.55029297, 2.4550781, 0.016815186, -1.3085938, 0.07519531, 0.34985352, 3.3203125, -1.8613281, 0.07611084, 0.55371094, 3.5605469, -1.1650391, 4.0664062, 0.6176758, -2.3574219, 0.57128906, -1.7480469, -0.27124023, -0.4128418, -0.80322266, 2.0292969, -1.4355469, 0.32885742, 1.4931641, -3.7167969, 0.17260742, 1.6201172, 2.9804688, 0.4814453, -1.0410156, 4.6835938, 1.9589844, -0.10797119, 1.9394531, -1.1376953, 0.7421875, -1.4775391, -1.4228516, -0.44970703, 1.8388672, -2.0019531, 0.14160156, 1.7304688, 0.93896484, -2.5703125, 2.3632812, -0.34765625, 1.6650391, 1.0263672, 2.2949219, 2.5117188, 2.3417969, 2.4960938, 0.96484375, 2.9726562, 1.1357422, -1.7392578, 0.13195801, 1.7617188, 0.14001465, 0.9511719, -1.7724609, 1.8007812, -0.7211914, 0.19812012, 0.61376953, 1.703125, -1.1542969, 1.3632812, 0.98095703, -0.3720703, 0.5839844, -3.59375, -0.23815918, -0.52783203, 1.2724609, -2.4902344, 2.5742188, 1.8417969, -0.5800781, 0.61035156, -0.69873047, 0.93896484, 1.4882812, -3.5488281, -0.14343262, 1.2265625, -1.2929688, -1.5078125, 1.0908203, 0.8383789, 1.3349609, 2.1914062, -1.1914062, -1.2792969, 0.43945312, 1.6064453, -0.38793945, -1.4980469, -0.34326172, 2.2421875, -2.265625, -0.97265625, 1.7685547, -1.1591797, -3.6015625, 0.54248047, 2.7441406, -0.68408203, 2.4472656, -2.0273438, -3.8300781, 3.0527344, 0.4543457, 0.73046875, -0.33764648, -1.0546875, 0.4560547, 0.47973633, 1.6513672, 1.1591797, -0.51660156, 1.9423828, -2.7734375, -2.3789062, -1.8261719, -0.6196289, 1.2089844, 2.1835938, 0.8652344, -0.016662598, -0.5366211, 0.64746094, 2.9824219, -0.95410156, -1.4833984, -3.09375, 1.765625, -0.47753906, 1.1542969, -0.44921875, -3.2441406, -1.9316406, -0.81933594, -2.0917969, -0.9941406, 0.26953125, 0.7104492, 0.43896484, -1.3007812, 0.87060547, 0.48291016, 1.9238281, 2.2519531, 0.78027344, 1.6689453, 1.0742188, -2.3007812, 2.1464844, 1.4804688, -1.6738281, 2.09375, -0.62060547, 1.1962891, -0.10784912, -0.21850586, -0.58154297, 0.4020996, -1.1074219, -0.050872803, 1.4414062, 2.0976562, 0.8598633, 0.3659668, 0.70410156, -1.0615234, 0.5292969, -2.2011719, -3.3105469, 0.5024414, 1.4296875, -1.2617188, -0.06097412, 0.054748535, -0.8066406, -1.4951172, 0.62158203, 0.7265625, 1.0996094, 2.6191406, 1.6005859, 0.24890137, -0.99316406, -2.8300781, -1.1992188, -1.4003906, -1.6064453, -0.2763672, 1.0205078, 0.90478516, -1.0888672, 0.94140625, 0.05307007, -1.2099609, -1.3173828, -3.1367188, 0.99560547, -2.4863281, 1.2519531, -1.3710938, 0.35107422, 0.69628906, 0.6738281, 0.83154297, 0.91748047, 3.3632812, 3.0390625, 1.453125, -2.8222656, -2.4042969, 2.1796875, 1.0644531, 0.079589844, 1.7636719, 0.19470215, -0.42871094, -0.49438477, -0.7495117, -1.1445312]}, "B01HGFBNL6": {"id": "B01HGFBNL6", "original": "Brand: Homitt\nName: Homitt HT-GC01 Grill Cover, 58inch, Black\nDescription: \nFeatures: Dimensions: This Homitt bbq cover measures 58\"L x 24\"W x 48\"H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc\nUpgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new\nFading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering\nHandles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away\nDurable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing)\n", "embedding": [0.67871094, 0.9013672, 3.0683594, -0.22131348, -1.3193359, 0.8232422, 0.5097656, -2.1601562, 1.8027344, 2.6425781, -0.10290527, -0.5078125, 0.13586426, -3.8242188, 0.70703125, -0.42260742, 2.8652344, 1.6035156, 2.9414062, -1.6728516, 2.6953125, -0.52685547, 1.0126953, 0.6074219, -0.06628418, -0.5058594, 5.0078125, -2.40625, -1.5644531, -0.85839844, 1.8339844, 0.96533203, 0.6694336, 2.6953125, -1.6972656, -1.609375, -1.453125, 1.2753906, -0.41479492, -1.328125, -1.8818359, -2.09375, 2.8339844, 3.2167969, -2.8574219, 0.5732422, -1.0693359, 1.4707031, -1.2685547, -0.5986328, 2.0273438, 2.671875, 1.0869141, 0.60009766, -1.1728516, 3.6386719, -1.2021484, -0.9121094, -0.89941406, -0.8852539, 0.90722656, -2.1230469, -0.43579102, 1.3388672, -1.3349609, 0.032989502, 1.7910156, -1.2158203, 0.4675293, 0.7817383, -0.2553711, -0.5913086, -0.5834961, 0.062286377, 0.85498047, -0.6821289, -2.2304688, 1.8125, 1.8964844, -2.296875, 0.17089844, 5.8671875, -0.8886719, -2.0605469, 0.3779297, -0.51416016, -2.1289062, -2.6523438, 2.5976562, -2.0800781, 0.1763916, 0.8208008, -2.4277344, -3.7402344, -0.43237305, -1.8632812, 2.5976562, 1.5302734, 1.4794922, 0.41601562, -0.7944336, -0.20275879, -1.1484375, 0.7167969, -1.8564453, -2.0527344, 1.0859375, -0.38232422, -0.3317871, 0.8300781, -0.9863281, 0.1583252, -0.14746094, 1.7314453, 1.8261719, 0.20581055, -1.1748047, 0.60595703, -0.16870117, 2.5527344, 2.5820312, -1.2421875, -0.21765137, -1.5488281, 1.2861328, -1.3857422, 0.053009033, 0.32348633, 3.8691406, -0.75097656, 1.1943359, -0.05227661, 1.2304688, -1.0214844, -0.69921875, 0.24853516, -2.125, -0.10076904, -2.8183594, 0.96435547, -0.24182129, -2.1132812, 2.3144531, -1.4619141, -3.2441406, -0.47338867, -1.6953125, 2.5703125, -1.984375, -3.109375, 0.7519531, -1.7822266, 0.1730957, -1.0234375, 1.2773438, -1.4394531, 1.2685547, -2.0136719, 3.0878906, 1.6640625, 3.4550781, -1.8476562, -0.21533203, 0.64208984, 3.5742188, -2.5585938, -1.2177734, 1.2089844, 0.071899414, 3.1171875, -0.0038642883, -1.3417969, 0.81933594, -0.15942383, 1.1035156, -0.22229004, 0.27075195, 1.8242188, -0.88427734, 0.9165039, -0.30419922, -1.2470703, -0.6035156, 1.0224609, -0.83935547, -1.7851562, -1.1845703, -1.796875, 0.66748047, -1.1660156, -0.48046875, -0.3244629, 1.265625, -0.07940674, -1.875, -0.8076172, -1.3974609, -1.9052734, 0.45483398, 1.015625, -0.76464844, -1.2509766, 0.16870117, -1.2216797, -2.2460938, -2.0605469, -0.6503906, -0.3071289, 0.8149414, 1.0898438, 1.0869141, -1.4755859, 2.0898438, 1.5654297, -1.3994141, 0.0413208, 2.4277344, -1.4492188, 0.9223633, 0.77978516, -0.8129883, 0.33789062, 0.97314453, 3.9433594, -1.6152344, 0.11383057, 1.7470703, 1.5908203, -1.1181641, -1.1591797, 0.28637695, 1.9511719, 0.7475586, 0.47265625, -0.92041016, 1.7714844, -0.42089844, -2.0488281, -0.5546875, 0.5839844, -1.2607422, -1.5058594, -3.2070312, -2.1132812, 0.68603516, 3.3066406, -1.2568359, 1.8359375, 2.3925781, -1.3466797, -1.1542969, 0.4658203, 1.0888672, -0.22387695, -0.30395508, 0.43701172, -0.09460449, -0.25952148, -0.9892578, -2.0351562, -0.43115234, -1.8681641, -1.5205078, 1.1289062, -0.24279785, -0.6503906, 1.9355469, 1.0498047, -2.1914062, -1.3798828, 1.2060547, 0.19396973, 0.1574707, -1.5253906, 1.6191406, 0.57714844, 0.57666016, 1.3583984, -0.05050659, -0.4711914, 0.52783203, 2.8574219, 2.5859375, -1.3427734, 0.18371582, -0.05255127, -0.50878906, -1.484375, -0.59765625, 0.4819336, 2.1894531, 0.33251953, -1.15625, 3.84375, 0.41430664, -0.53125, 0.16760254, -2.7363281, -1.5742188, 0.58203125, 0.108947754, 0.9975586, 1.0419922, 1.2167969, -0.46289062, 0.042663574, 0.19494629, -1.4082031, 0.36499023, 1.5947266, 0.6352539, -0.54785156, -0.25878906, 1.4775391, -1.6113281, -1.1533203, 1.1298828, -2.7441406, -0.5551758, -0.46191406, 0.40185547, -0.5444336, -1.0068359, -1.8037109, 0.3322754, 0.9526367, -1.8291016, 0.5600586, 1.109375, -0.07989502, 0.34765625, -1.7548828, 0.28027344, -0.91064453, -1.4277344, -2.3691406, -3.1308594, -1.7822266, 0.02684021, -1.5332031, -0.56640625, 0.10021973, -2.5117188, 2.6894531, 0.3383789, -3.3515625, -1.1738281, 0.63134766, -1.9121094, 3.0566406, -1.3974609, 0.62841797, -0.22106934, -4.1757812, 0.27734375, -0.33666992, 0.50390625, -0.11920166, -0.9326172, -0.52783203, 1.3339844, 1.1923828, 0.86816406, 1.6445312, 1.4560547, 1.2841797, 0.84765625, -3.9667969, -0.49194336, -1.3730469, -0.74072266, -2.8183594, -0.41333008, -3.3066406, -0.7519531, 1.5400391, 0.20593262, 2.5839844, 0.73876953, 1.4970703, 0.8857422, 0.5732422, 1.4609375, -0.2763672, -1.4931641, -0.7578125, 1.1679688, -1.0722656, -0.37109375, -3.6386719, -1.8681641, -1.7402344, -0.50927734, -0.24645996, -1.4941406, 0.3371582, 1.0654297, -2.9121094, -1.1171875, -1.5019531, 0.6591797, -0.42797852, 0.2878418, -0.22192383, -2.4101562, -2.6816406, -1.6621094, -0.96875, 2.4785156, -1.4716797, -0.0016593933, 0.73535156, -1.2861328, 3.0957031, -0.84716797, -5.0976562, 1.3339844, 1.3271484, 0.5917969, 0.6635742, 0.21936035, -1.4492188, -0.4345703, -0.4038086, 1.6953125, 0.051483154, -0.26757812, 1.453125, 0.16345215, 1.1279297, 0.46704102, 1.2568359, 0.050323486, 1.1220703, 2.4453125, -0.49780273, -2.0820312, 0.9921875, 0.5048828, -1.8330078, -0.1940918, 1.3515625, -0.19592285, 1.171875, 0.97558594, -0.6298828, -0.33984375, 0.3708496, 2.265625, -1.8447266, 0.84228516, 0.1463623, -0.118896484, 1.0839844, -0.44262695, 2.9042969, 2.5566406, 1.3369141, 0.8852539, 0.37182617, 0.26342773, 0.9501953, -0.5732422, 1.1572266, 1.6914062, -0.37939453, 1.859375, -1.2578125, -0.3479004, 2.9648438, -0.45703125, 1.9023438, -0.5966797, -0.15246582, 2.7265625, -1.1699219, -0.36010742, 0.6660156, 0.022628784, -0.51464844, -1.4716797, -2.0996094, -1.2705078, -1.5126953, 0.46240234, -2.109375, -2.8769531, -1.1484375, 4.734375, -0.73583984, -0.9248047, -0.97802734, 2.3808594, -2.0507812, -0.50927734, -0.24963379, 1.7050781, 0.0791626, 2.3046875, 2.4433594, -2.3320312, 1.8076172, -2.3886719, 0.58740234, 1.3935547, -1.6386719, -0.4116211, 0.6513672, -0.26586914, 0.4345703, 0.38208008, 0.07110596, 1.2910156, -0.48266602, -0.87353516, -2.4804688, -0.12237549, 1.2988281, -1.2880859, -0.18859863, 3.8925781, 0.13977051, 0.36987305, -1.8378906, 3.3183594, -0.6347656, -1.2900391, 1.2988281, -1.9003906, 0.84033203, -1.0234375, -3.90625, -0.5649414, -1.0957031, -1.6777344, 2.0976562, 1.171875, 0.46826172, 1.6845703, 1.3447266, -0.75, 0.37060547, -2.9765625, -2.9960938, -1.515625, -1.5, 1.1015625, 0.23547363, -2.1816406, -1.9208984, -1.8007812, -1.5263672, 0.97314453, -0.6953125, -1.7050781, -0.87597656, -0.82958984, 0.019332886, -1.5400391, -0.14990234, 0.07397461, 0.38354492, -0.22998047, 1.1455078, 1.2285156, -1.5556641, -0.07751465, 0.4987793, 1.9765625, -1.6171875, -1.9394531, 0.33618164, 1.3417969, 2.6640625, -1.3095703, -3.71875, -0.5722656, 0.03024292, 2.0058594, 0.3864746, -0.7265625, 0.48950195, -1.640625, 0.18371582, -0.19067383, 2.5898438, 1.28125, -0.7661133, -1.7548828, 1.7919922, -1.1699219, -1.8173828, -1.4931641, 0.32958984, -0.5253906, 0.59033203, -2.0039062, -2.3710938, 3.2050781, -1.5820312, 0.35253906, -1.6494141, 2.8867188, 0.81640625, 1.3701172, 3.0273438, -1.6826172, -0.20581055, 1.9003906, -2.4628906, -0.43920898, -1.0703125, -1.3095703, 1.1210938, -0.09680176, 0.39160156, -1.3027344, -1.0791016, -1.6054688, -0.36328125, -0.65966797, -2.1757812, 1.5996094, -0.23083496, -0.60546875, 2.4824219, -1.6533203, 2.9882812, -1.0878906, 0.2836914, 2.1054688, -1.4970703, 0.33251953, 1.6933594, 0.6015625, -0.8671875, 0.76464844, 0.6616211, -0.38476562, -0.2322998, -1.3427734, 0.65771484, 1.6386719, -2.4160156, -0.546875, 1.2070312, 1.3789062, -0.2878418, -1.4550781, 1.8818359, 2.4453125, 0.29345703, 1.4970703, 0.16271973, -1.8544922, 1.6337891, 2.2460938, -1, 0.31079102, 2.2890625, 0.6767578, 3.15625, -0.55371094, -2.9433594, -1.015625, 2.0605469, -1.5498047, 1.2246094, 0.20300293, -1.0595703, 0.8066406, -2.3203125, 0.018936157, 0.1427002, -2.1875, -0.4272461, -1.7841797, 1.890625, 0.02217102, 1.7988281, 3.4941406, -0.7416992, -3.171875, 1.6132812, 0.38427734, -1.2919922, -0.58496094, -1.0380859, -2.3261719, -1.3007812, 0.62353516, 1.4111328, 0.5830078, 1.3896484, 2.1445312, -1.453125, 1.7597656, -0.18395996, 2.5566406, -2.3613281, -1.2402344, 4.0234375, -2.7851562, -3.6660156, -1.9287109, 0.24365234, 0.6557617, 0.8388672, 2.1230469, 0.65625, -0.101379395, -0.26953125, -3.5820312, -0.3737793, -1.2841797, -0.039001465, 0.048583984, 2.2539062, -0.24536133, 0.27270508, -0.45947266, -0.32592773, 0.29003906, -0.4345703, -0.0262146, -0.7758789, -2.59375, 1.0087891, -2.3945312, -1.7138672, 2.1738281, 1.4492188, 2.1191406, 0.5683594, -3.1074219, -0.77734375, 1.5439453, -2.5664062, -0.7246094, 1.9003906, 0.84228516, 1.8261719, 0.31298828, 1.1533203, -0.80029297, 3.5976562, 0.08544922, 0.081848145, 3, 0.23779297, 0.19799805, -0.38476562, -1.7480469, 0.46240234, -1.7822266, 2.8066406, 1.140625, -2.34375, 2.1796875, 1.3798828, -1.8984375, -0.6357422, 1.6923828, 2.015625, 1.8427734, 0.6196289, -1.0917969, 0.84521484, -1.9306641, -0.69189453, -0.45263672, -3.0546875, -2.1484375, -0.54785156, 0.6411133, 2.2363281, 1.5263672, 1.2695312, -0.049591064, 2.3496094, -1.4345703, -1.046875, -0.10559082, 2, 1.6162109, -2.0390625, -0.7373047, -0.2680664, 0.6328125, 1.9980469, -0.041015625, -0.52734375, -0.51464844, -2.0644531, -1.6542969, 0.9267578, 0.3552246, 0.18017578, 0.9477539, 0.60058594, 0.95166016, 3.0683594, -0.6455078, 1.1875, 0.2109375, 1.8408203, -1.546875, 1.6074219, -0.050476074, -3.125, -1.9208984, -0.7265625, 0.15661621, -0.18395996, -0.21582031, 0.20092773, -1.4785156, -1.2451172, -1.578125, -2.5429688, -4.5859375, 0.41870117, -0.83203125, -0.13146973, -0.3798828, 2.8574219, 0.6455078, 4.09375, 1.1523438, -0.021118164, -0.4741211, -0.79833984, -1.7041016, -1.2255859, 0.43530273, -0.7988281, 0.97558594, -0.43823242, 0.32202148, -1.2871094, 0.4243164, -0.31396484, 0.8022461, 2.0214844, 2.6347656, 2.3066406, 2.0527344, 0.84472656, 0.81103516, 1.1894531, 0.29760742, -1.1259766, 0.7109375, 2.2421875, 1.3720703, 3.4042969, -0.6176758, 1.3642578, 0.87841797, -0.18701172, 0.6152344, 1.0751953, 2.0820312, -2.5253906, 1.2060547, -0.3935547, 1.0195312, -1.2685547, 0.6875, -2.0878906, -0.7109375, 0.40551758, -0.35083008, 3.1738281, 0.5263672, 0.19836426, 1.3017578, 1.6533203, 2.5644531, -2.1542969, 1.1943359, 2.4003906, -0.9941406, -2.0605469, 0.2668457, 2.3964844, 1.390625, 0.77197266, -0.8574219, 2.2226562, 2.4511719, -0.34399414, -1.1152344, 0.9941406, 0.31152344, 1.3544922, 0.3227539, -1.5976562, -1.6035156, -0.09277344, -1.5507812, -2.5839844, 0.58935547, 1.2900391, 1.5361328, 0.8515625, -4.6875, 1.0507812, 1.1767578, 1.9794922, -0.7158203, -0.5078125, -1.15625, -1.2070312, -1.2744141, 1.2207031, -1.9746094, 1.2158203, 0.17687988, -2.2148438, 3.2910156, 0.82177734, 1.3466797, 1.0761719, 1.6074219, 0.51220703, 2.046875, -0.3461914, 1.4980469, 1.1787109, 0.17700195, 0.6567383, 2.4121094, 1.1865234, 1.1025391, 2.46875, -0.7890625, -0.08416748, 2.4316406, 2.1308594, 1.5546875, -0.5258789, -1.6669922, -0.9580078, 2.4316406, -0.63671875, -2.1601562, 2.7480469, 2.1445312, 0.24475098, 1.9580078, 1.3730469, -1.6044922, 1.8730469, 1.0341797, -0.29370117, -0.32373047, -0.63183594, 0.8232422, -0.58740234, -1.1386719, -0.9213867, 2.1191406, -0.101989746, -2.6347656, -0.55859375, -0.31640625, -0.08691406, -0.7138672, 0.6245117, -0.5761719, -1.0751953, -0.6386719, -0.016189575, -0.4675293, 1, 2.0585938, -2.3515625, -1.8447266, -2.2402344, -1.0654297, -0.4519043, -2.4003906, 2.3242188, 3.9863281, 1.4648438, -1.5820312, -0.96435547, -1.2675781, -0.9916992, -1.6679688, 1.5390625, 0.66308594, -0.21105957, -0.078308105, 0.77783203, 1.3261719, -0.70654297, -2.2578125, -0.67333984, -1.6621094, 1.8535156, -1.8310547, 1.2568359, -1.6933594, 0.20935059, -0.07531738, 1.8964844, 1.734375, 0.18127441, 0.8564453, 2.7167969, 0.42333984, -2.6621094, -0.17736816, 2.4238281, 1.765625, 0.66503906, 1.390625, 1.1523438, 0.8828125, -0.15283203, -1.6787109, -0.9941406]}, "B078964VVX": {"id": "B078964VVX", "original": "Brand: Westinghouse Outdoor Power Equipment\nName: Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant\nDescription: \nFeatures: 7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob\nIntuitive Control Panel Features Two GFCI 5\u201320R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety\nPlug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User\u2019s Manual To Get You Started Right Out of the Box (Minimal Assembly Required)\nPowered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter\n", "embedding": [-0.2788086, 0.023712158, 0.5805664, -0.42138672, -1.03125, 0.38476562, 3.6425781, -0.07678223, -2.7675781, 0.4128418, 0.65283203, 1.4892578, -0.07897949, -4.4726562, -2.2382812, -0.078308105, -1.4208984, 0.40576172, -0.10015869, 1.4150391, 0.6982422, -0.32983398, 2.3847656, 0.15393066, 1.7207031, 0.38110352, 2.9746094, -2.8496094, -0.5605469, -0.41992188, 1.0859375, 0.27539062, -1.3183594, 1.7177734, -2.515625, 1.9208984, -0.13049316, 1.9775391, -1.6201172, 0.5102539, -0.7841797, 0.9790039, 2.8183594, -1.0830078, -1.3876953, -0.87158203, 0.8076172, -2.7480469, 1.6875, 1.4609375, 1.1455078, 1.0839844, 0.3474121, 0.45507812, -0.057769775, 1.6660156, -0.0022354126, -2.1171875, 2.2773438, 1.7587891, 2.0175781, -0.11968994, -1.3173828, 0.4580078, 0.1739502, -1.71875, 0.92041016, 1.4560547, -0.4260254, 0.109436035, 3.5507812, -0.31445312, -0.6904297, 0.21130371, -1.2685547, 0.8051758, -4.4960938, 1.0507812, 2.9453125, 0.1854248, -2.1484375, -0.72314453, 0.6582031, -2.1015625, -0.17480469, 0.5966797, -1.5390625, 0.8227539, -2.1933594, 3.0195312, -2.7851562, 2.140625, -4.1484375, -3.2539062, 2.0488281, 1.1943359, -1.5361328, -0.19580078, 0.9863281, 2.1523438, 1.9082031, 0.3684082, -0.7104492, 0.6411133, -2.1640625, 1.0185547, 3.0605469, 0.1574707, -1.0732422, 1.1738281, -1.2539062, 0.011100769, 0.5957031, -0.14685059, -1.1728516, -1.0869141, 3.0878906, -1.4072266, 4.375, 2.3828125, 2.9472656, -1.2314453, 2.8242188, 0.16369629, 0.54345703, -0.6386719, -0.9794922, 1.3818359, 2.8730469, -0.65234375, -1.0009766, -0.9746094, 1.5957031, -0.99072266, 1.1269531, -0.9291992, 1.8603516, -2.3105469, -3.9394531, 0.6894531, -1.1748047, 1.1035156, 1.5810547, -1.2675781, -3.875, -1.9394531, -1.6367188, -0.45385742, -2.0917969, -1.6513672, 0.4560547, -2.8378906, -0.5107422, 0.02130127, 1.6083984, 0.9033203, -0.5151367, 0.9711914, 1.2402344, 0.26757812, 0.99316406, 0.20422363, -0.105651855, -0.49023438, 1.3447266, -1.6523438, 2.0859375, -0.91064453, -0.08319092, 0.029418945, -1.4892578, -1.7558594, 1.7197266, -1.2783203, 0.09362793, -1.0341797, -2.390625, 0.8105469, -0.12792969, 0.30322266, 0.34692383, -0.28857422, -0.6616211, -0.3569336, 0.023742676, -1.8496094, 1.0244141, -1.2119141, -1.2714844, -3.2460938, -1.5117188, -0.6069336, 0.4428711, -1.5498047, 2.0234375, -3.7734375, -2.7753906, -2.4160156, 2.0488281, 1.1572266, 0.53515625, -0.47680664, 2.7089844, -0.16503906, -2.9199219, -3.7070312, 0.20214844, 0.26513672, -0.15209961, -0.5385742, 0.22521973, 1.1679688, 2.5351562, -0.18652344, -1.7802734, -2.9414062, 0.57177734, 0.28076172, -0.4169922, 0.8417969, 0.16064453, 0.021453857, 2.7929688, -0.5566406, -0.50097656, 1.6865234, 0.19030762, -0.5239258, -1.7441406, -1.7578125, 1.1826172, -0.116882324, 0.45288086, -1.015625, -0.9995117, 1.9375, 1.1142578, -0.7026367, 1.4658203, 0.45385742, 0.13513184, 0.41552734, 1.1962891, 2.3222656, -0.5053711, -1.0175781, -2.1699219, 1.875, 0.40795898, -1.3017578, -0.86279297, -2.7324219, 0.48364258, -0.7006836, -0.73535156, 1.0292969, 0.13964844, -1.3779297, -0.79541016, -2.6972656, 1.5429688, -0.4165039, -0.33276367, -0.23400879, -1.5146484, -2.8085938, 0.42333984, 1.0839844, -1.4140625, 0.36791992, 1.3886719, 0.36694336, 1.0800781, 0.34936523, 0.44604492, 0.7661133, 1.2109375, 2.4296875, 1.7265625, 0.41625977, -1.0185547, -1.3232422, -0.04067993, -0.37329102, -0.8769531, 0.85498047, 1.0615234, 0.72265625, -2.0820312, 2.0917969, 2.5878906, -2.265625, -6.0390625, 2.6523438, 0.42285156, 2.265625, 1.9785156, -0.90625, 2.2382812, 0.5996094, 1.4707031, 0.5126953, -0.8535156, 3.0332031, -0.43676758, 1.7949219, -0.3190918, -3.9082031, 1.5, 1.2011719, 0.035888672, -2.0136719, -0.004890442, 1.7978516, -3.0058594, -0.090148926, 1.3710938, -2.7910156, 2.4648438, 0.15112305, -0.4182129, 1.1015625, -1.9287109, -0.42993164, -0.26904297, -1.1328125, 1.6884766, -1.0107422, -0.88964844, -2.3984375, -1.4873047, -1.1621094, 0.20300293, -2.1992188, -0.3605957, 0.25170898, -1.2304688, -1.8388672, 2.9101562, -0.27001953, 1.7490234, -0.8120117, -2.1464844, -1.1552734, 1.625, -2.2089844, 0.109436035, -1.9658203, -1.8964844, -0.73535156, 1.7314453, 3.5898438, 0.15441895, -2.5507812, -0.7871094, 0.6489258, 0.8354492, 2.3632812, 0.31933594, -0.09552002, 0.099731445, 1.2050781, -0.14453125, 0.38134766, 0.80322266, -0.88378906, 0.50927734, -4.2929688, 3.0976562, 0.57421875, 0.0758667, -1.1513672, 1.1552734, -1.2636719, -0.33325195, 1.7324219, -0.3125, 5.515625, 0.52001953, 2.9082031, 0.31518555, -2.3632812, -0.059326172, -2.8085938, -0.10723877, 1.34375, -1.7802734, 0.5761719, 1.9882812, -2.2519531, 2.2519531, 0.53271484, -2.390625, 0.8300781, 0.37573242, -0.08654785, -0.7861328, -1.4746094, 2.375, 2.1074219, 1.0917969, 0.3623047, -1.4082031, -3.4628906, -1.1591797, -1.0244141, 0.7084961, -0.9682617, 0.48754883, 2.1015625, 0.6152344, -0.022903442, -0.39013672, -1.8818359, 0.4465332, -3.1269531, 3.5136719, 3.9375, -1.5234375, 2.5234375, -2.5019531, 0.52197266, -3.5117188, 0.097351074, 4.0429688, 0.50146484, 2.171875, -0.45043945, -1.1738281, -0.024353027, 4.7304688, 0.21582031, -1.9306641, -4.4492188, 3.6679688, -1.9794922, -0.45385742, 1.8173828, 0.8071289, -2.6171875, 0.021774292, 2.1542969, 2.5351562, 3.5800781, 1.3925781, 1.4462891, 1.5839844, -0.53808594, 0.55810547, 0.08129883, 0.56933594, -0.6503906, -1.8115234, -0.24353027, -1.4814453, 0.5517578, -0.48999023, -0.41748047, 0.6113281, 1.5087891, 2.2851562, 0.34277344, -0.91015625, 0.17858887, -0.43188477, 3.5917969, 2.0820312, -1.2197266, 1.8349609, -0.8432617, 0.7089844, -0.0127334595, -1.5332031, -0.11755371, 2.3730469, 1.8105469, 1.2109375, 0.17260742, -1.2597656, 0.43286133, -1.0625, -0.4008789, -2.8027344, -1.3398438, 0.76953125, -1.8574219, 1.3564453, -3.3535156, -1.7851562, -0.71435547, 0.66308594, -0.4477539, -0.16345215, -1.3339844, -0.4309082, -1.1132812, -2.6035156, -0.4885254, 2.5234375, 0.8105469, -0.49975586, -0.5097656, -1.5771484, 1.7236328, -1.0507812, 0.4453125, -0.41992188, 0.52246094, -2.3710938, 0.43701172, -0.63183594, -0.2705078, -0.04534912, -1.8486328, 1.3896484, 1.1289062, -0.78564453, 1.4882812, -2.2675781, 1.6132812, -1.6025391, -0.48413086, 2.9785156, 1.0380859, 1.1669922, -2.1269531, 2.484375, 2.6191406, -0.85058594, -0.4350586, -3.5644531, -2.0058594, 0.15319824, -0.80859375, -0.95458984, 2.6113281, 1.2939453, 1.1201172, -1.2587891, 0.38061523, -1.5087891, 0.12878418, 0.5180664, 0.70947266, -1.8867188, -1.2509766, -1.0869141, -1.2900391, -1.9072266, -1.4287109, 0.44335938, 0.27612305, -0.61083984, -0.3540039, -0.32202148, 4.6523438, -0.70458984, -2.4355469, -1.1386719, -0.13830566, 1.9404297, -0.7763672, 0.50439453, -1.7236328, 0.19714355, 0.64941406, -1.9101562, 3.5, 2.9941406, -0.037841797, -0.94091797, -0.17504883, 2.7792969, 0.5180664, -0.3269043, -2.1230469, 0.1451416, 2.5019531, 0.7583008, -1.7216797, 0.13537598, 0.72314453, -1.0732422, -1.0185547, 0.90966797, 0.7636719, 0.14294434, 2.5683594, -2.046875, 0.9916992, 1.0966797, -1.2158203, -1.6679688, -2, 1.2636719, -3.0175781, 0.59814453, -0.85498047, -0.8823242, -0.4116211, 0.43188477, -1.7558594, 4.1679688, -0.11444092, 1.3779297, 1.2148438, 0.9165039, 0.86035156, 0.32958984, 3.3359375, -0.34936523, 1.0498047, 0.65283203, -0.1932373, 1.1191406, 2.1914062, -2.1972656, -1.7958984, 0.5620117, -0.7739258, -0.72216797, -1.1123047, -0.66308594, -0.5288086, 1.0742188, 0.07965088, 0.12188721, 1.0869141, -1.0986328, 2.1621094, 2.0273438, 0.46801758, -3.3144531, 0.2927246, 1.1005859, 0.40063477, 2.0976562, -0.91259766, 1.7275391, -0.34301758, -0.6269531, 2.4414062, 1.7197266, -2.3789062, 0.35913086, 0.18786621, 1.2490234, -0.10107422, 0.55371094, 0.45458984, -1.5566406, 2.140625, -0.5253906, 0.5078125, -1.5107422, 1.5839844, 0.32836914, -2.7148438, -0.47314453, 2.5351562, -0.7402344, 1.3173828, -0.6958008, -0.52978516, 0.13256836, 1.8701172, -0.1340332, 0.15625, -0.19165039, 0.4345703, -0.87402344, -1.8310547, -0.4633789, 1.1484375, -0.5078125, 0.5419922, -3.0136719, 0.8540039, -2.7441406, 1.6367188, 0.6586914, -0.5961914, -0.3479004, 1.6005859, -0.76416016, -0.020828247, 0.29638672, -0.2331543, -5.5117188, 0.03125, 0.9482422, 2.5058594, 1.5107422, 2.890625, -1.7490234, -0.9165039, -1.1435547, -1.2373047, 1.5751953, -1.4882812, -1.0820312, -0.72753906, 2.046875, 1.2861328, 0.57910156, -2.6367188, -1.0585938, -0.8173828, -0.5253906, -0.5185547, 1.625, 0.114868164, -1.1367188, -4.453125, -2.5273438, 0.41723633, -0.35595703, 0.8720703, 0.8364258, -3.4824219, -1.0029297, 1.9433594, -0.31323242, -1.2197266, 0.91552734, -1.2792969, 1.6494141, -1.0380859, -1.0029297, -1.9570312, -0.014129639, 0.42504883, 0.9477539, 2.6113281, -2.5976562, -3.0800781, -0.57910156, 3.6210938, 1.4375, 1.5351562, -0.94970703, -0.06149292, 1.7617188, 0.92285156, -0.94677734, 0.57373047, -3.1035156, -2.328125, 1.5488281, -0.5776367, -1.6816406, -0.8300781, -2.3027344, 1.4541016, 0.7441406, 2.3417969, 1.8320312, 0.98779297, -2.9199219, 0.66259766, 0.9980469, -1.9316406, 0.51660156, 1.015625, 3.2304688, -0.27416992, -1.0732422, -0.9526367, -1.4257812, -0.96972656, 0.8129883, -2.3789062, 0.3408203, 2.1171875, 0.32836914, 0.54833984, 3.0253906, -1.2851562, -1.3916016, -1.6152344, 0.5751953, -0.15075684, -2.2773438, 2.9121094, 0.1796875, -1.7011719, -2.421875, 0.72021484, 0.3671875, -0.84765625, 3.0722656, -1.1914062, -0.69970703, -1.9140625, -0.21325684, -2.0488281, 2.4140625, 2.4355469, 1.1826172, -1.3974609, -1.1318359, -0.09979248, 1.2832031, -1.0556641, 2.6855469, -1.8388672, -1.2001953, 0.97216797, 0.42944336, -0.23059082, 0.023620605, -1.6132812, 2.4101562, 0.35742188, -2.8554688, 0.4482422, -0.57177734, -1.1279297, -1.1455078, 0.33154297, -2.4824219, 0.06341553, 0.40795898, -0.9916992, 0.72314453, 0.01285553, -1.6201172, 0.45458984, 1.0947266, 1.0615234, -2.4511719, 0.39208984, -0.6635742, -0.10614014, 3.1464844, -2.9414062, 1.6396484, 0.0703125, 1.4013672, -0.6464844, 0.53808594, -0.7084961, 2.7089844, 1.6279297, 0.09515381, 0.59033203, 3.1347656, 1.1894531, 1.9169922, -0.96533203, 1.8603516, 1.0136719, 0.6118164, 1.5117188, 0.95703125, 1.4384766, -3.2304688, 0.13793945, -1.1689453, -0.7182617, 0.026184082, 0.4567871, 1.6933594, -4.2382812, 0.013572693, -0.35424805, 2.1035156, -2.3652344, 1.3779297, 0.072387695, -0.7192383, 0.79003906, 1.6113281, 2.5605469, 0.3269043, -1.2763672, -0.22583008, -1.09375, -0.83496094, -0.5185547, 0.7397461, 0.03237915, 0.92089844, 0.71484375, -0.9863281, -1.6982422, 0.86621094, 1.2324219, 1.5205078, 2.0664062, -1.9453125, 0.5649414, -3.0585938, 1.6513672, 0.5058594, 5.3671875, 4.03125, 1.2460938, 1.4931641, 1.7871094, -1.1757812, -1.8076172, 1.1259766, 1.7412109, -0.74902344, 0.47338867, -2.984375, 0.23815918, -0.08782959, 1.4199219, -2.1289062, 2.3046875, -0.82128906, -2.0761719, -0.17053223, 0.9526367, 0.10784912, 1.5126953, 1.2587891, 1.4443359, 1.7734375, 2.9902344, -1, 0.16467285, 0.052368164, -0.75927734, 0.8857422, 0.78271484, 0.56103516, 0.55126953, -2.2050781, -1.1474609, 0.40966797, 1.3876953, 0.57666016, 1.0166016, -2.4296875, 0.81396484, 0.5727539, -1.9716797, 0.35107422, -0.6459961, -0.3515625, 0.1998291, 0.14575195, -0.87646484, -0.1451416, 1.9013672, 2.8339844, -0.8535156, -1.0419922, 0.8642578, 1.9541016, 1.0898438, -1.0107422, -0.57470703, -2.109375, -2.890625, -0.32666016, -1.3183594, 1.6435547, -0.82714844, 0.12670898, -0.7246094, -3.3730469, -0.5649414, -1.1845703, 0.5810547, -0.9277344, 2.1054688, -1.2451172, 0.014373779, 1.6279297, -0.57177734, 2.0566406, 2.953125, -1.0087891, 1.7792969, -2.2285156, -2.7050781, 0.84716797, -2.7460938, 1.1162109, 2.3203125, 0.68847656, -0.31274414, 0.7089844, -3.6035156, -1.5732422, -2.4980469, -2.4785156, 0.4387207, 0.23376465, -1.3330078, -0.6401367, 0.671875, 1.2041016, 0.7211914, -1.1132812, 0.5083008, 0.036895752, 0.5083008, 0.7392578, -1.6679688, 2.0625, 1.2666016, 1.0546875, 0.82910156, 2.6289062, 0.82470703, 0.50146484, 3.0078125, -1.4619141, -1.3125, 0.8154297, 0.22338867, -0.5629883, -1.2626953, 0.23986816, -0.033966064, 1.7675781, 0.22143555, -1.2412109, -3.6386719]}, "B07Y8CCDBP": {"id": "B07Y8CCDBP", "original": "Brand: Simond Store\nName: Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door\nDescription:

          Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

          Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600\u00b0F (1425\u00b0C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

          The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure \u2013 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

          Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

          Specification:

          • Forge Type: Double Burner Forge With One Side Door
          • Burner: Double Burner
          • Burner Nozzle Material: SS-304
          • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
          • Forge Internal Dimension: 5.4\" (H) x 5.4\" (W) x 18\"(L)
          • Forge Insulation: 1\u201d thick Refractory Ceramic Fibre of 2600\u00b0F
          • Floor Insulation: 1\u201d thick Rigid Block of Refractory Fire Brick

          Connection Kit:

          • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
          • 5 ft. (2 Meter) gas hose pipe
          • 2 hose clamp

          Product user manual & assembly instruction provided with packing.

          \nFeatures: Double Burner Single Door Propane Forge Furnace with 2600 degree capacity\nMade by 16 Gauge (1.5 mm) steel Metal Sheets\nlined by 1\" thick high density ceramic fiber blanket\nReduce fuel consumption\nOur gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.\n", "embedding": [-0.64501953, 1.5820312, -0.3388672, -1.0898438, -0.3239746, -0.10571289, -0.119018555, -2.1132812, -0.4074707, 1.4628906, 1.4208984, 0.41186523, 0.72021484, -2.6074219, -0.101745605, -0.90771484, -1.0029297, 0.18640137, 1.0136719, 2.7773438, 1.9726562, -0.31298828, 1.8916016, 0.17468262, 1.2792969, -0.10559082, 3.0390625, -3.8457031, 0.4494629, -0.34448242, -0.0017623901, -0.7270508, 0.37109375, 1.0244141, -2.7753906, -0.2980957, -2.0253906, -0.3737793, -1.5146484, 0.25073242, -0.051513672, 0.47387695, 2.3320312, 0.7470703, -3.2597656, 0.91845703, 0.9345703, -0.019744873, -1.3369141, 0.3935547, 1.0166016, 0.5683594, 0.8911133, 1.3828125, -2.6542969, -0.08337402, -0.7714844, -2.2226562, 3.3554688, 0.024398804, 1.8818359, 0.33569336, -1.6738281, 0.44433594, -1.3144531, 1.1230469, 0.91845703, -1.2470703, -0.35083008, -0.16491699, 0.22961426, 1.6533203, 0.8647461, 1.0117188, 1.8193359, -1.328125, -1.46875, 2.4804688, 2.21875, 0.16088867, -0.9189453, 0.74609375, 0.9477539, -0.9848633, -0.49560547, 0.14660645, -0.3408203, -0.3774414, 1.2363281, 2.7089844, 0.32739258, 0.38964844, -0.90771484, -5.53125, 1.3691406, -1.6748047, 0.8071289, 1.0039062, 0.2244873, 2.7148438, -0.66845703, 0.1899414, -1.6132812, 0.85009766, -2.1894531, -0.3173828, 0.4729004, 4.0390625, -0.48266602, 1.046875, -1.8271484, -0.66845703, 1.3408203, -0.19946289, 0.23266602, -1.3330078, 0.80371094, 0.16040039, 2.6484375, -0.9555664, 2.234375, -1.2578125, -0.21240234, -1.2744141, 0.09118652, 2.2949219, -0.32885742, 1.4658203, 3.515625, -2.6386719, -0.43164062, -1.1220703, 1.1269531, -0.77978516, -1.6484375, -0.2602539, -0.7963867, 0.13110352, -4.4804688, -0.4699707, -0.7084961, 2.1542969, 0.15734863, -2.7480469, -2.4042969, 0.875, 0.059906006, 1.1464844, 0.05859375, -1.5517578, 0.18359375, -2.1035156, -0.91064453, -3.0820312, 1.6201172, 0.79833984, 0.27368164, -2.1367188, 2.984375, 0.47680664, -0.3017578, -0.33325195, 0.6386719, 2.3027344, -3.109375, 0.6035156, 0.31079102, 1.296875, -2.0488281, 1.203125, 0.5385742, -1.8046875, -0.032440186, -0.34521484, -0.5859375, -2.0976562, -0.48657227, 2.0820312, 1.734375, -0.88378906, -2.6269531, -1.6660156, 1.0214844, -0.16210938, 0.48950195, -0.84375, 2.2109375, -0.71972656, -0.9243164, -0.2668457, -2.1328125, -0.9658203, 1.9804688, 2.1386719, 0.72216797, -1.1552734, 0.6855469, -2.7324219, 1.9501953, -2.2695312, -2.5898438, -2.2304688, 0.12841797, 1.1113281, -3.4960938, -0.90966797, 0.5361328, -0.2578125, 3.1035156, 1.4902344, 1.0947266, -1.0410156, 0.10534668, 0.5991211, -0.021011353, -4.140625, -0.37524414, -0.3947754, 1.0839844, -1.5693359, 0.07849121, -1.6474609, 0.89941406, 1.4921875, 4.1523438, 2.2851562, -0.5214844, 0.37719727, -2.2070312, -0.6430664, 3.125, 2.0625, -2.8183594, 1.5332031, -0.9423828, 2.609375, -0.6381836, -2.0039062, 1.6416016, -0.06188965, 1.1552734, -1.6884766, -0.46313477, -0.5527344, -0.44873047, 0.5722656, 0.07836914, -0.6411133, 1.2841797, 0.0154800415, 0.8125, 1.0166016, 1.5390625, 3.3886719, -0.6977539, 0.38330078, 1.2177734, -1.203125, -0.80810547, -2.7558594, 1.3720703, 0.15539551, -0.92871094, 0.8105469, 1.2099609, -1.4169922, -0.43798828, -0.7338867, -1.5029297, 1.6464844, 1.2958984, 0.86083984, 2.4648438, 1.6318359, 1.2714844, 1.9140625, -1.5263672, 2.5195312, -0.5629883, 1.9072266, 0.10412598, -2.2851562, 1.84375, -1.3447266, 0.60253906, 0.76464844, 3.6894531, -0.6269531, -0.84765625, 2.0761719, 5.5546875, -1.4980469, -1.5332031, 3.4082031, -0.9199219, 0.5419922, -0.85791016, 2.6367188, -0.35327148, -1.6210938, 1.6337891, 0.80615234, 1.3251953, 0.5625, -1.5966797, 0.2290039, 2.2382812, -0.6635742, 0.023605347, -0.074523926, 1.3847656, 1.0673828, -0.3894043, 1.4326172, -2.9726562, -1.0419922, 1.4873047, -2.3222656, 2.1582031, 0.40429688, 0.4543457, 1.8144531, 0.7241211, 0.49560547, -0.09039307, 1.3955078, -0.023757935, 1.3232422, 1.0917969, -1.6669922, -1.7392578, -1.2949219, -1.2607422, -1.3447266, -0.20239258, 0.7705078, 1.1035156, -1.5488281, 1.1621094, -0.8852539, 1.1044922, 0.13696289, -2.0351562, -0.13110352, 0.19116211, 0.0074882507, -1.3945312, -0.8642578, -0.9550781, -1.1513672, 2.2558594, 3.1796875, -2.8066406, -3.1679688, -2.1113281, -2.0332031, -1.3505859, 0.13305664, -1.3583984, 1.7001953, -0.54345703, -0.36914062, 0.5390625, -0.7138672, -0.17749023, 0.058166504, 0.6845703, -3.0234375, 0.6591797, 0.097717285, -0.9868164, -0.24902344, -0.85595703, -0.53027344, -0.68359375, -0.43530273, -1.0605469, 4.0039062, 1.0439453, 1.8125, -1.0361328, -2.3964844, -1.5322266, -0.8984375, -2.0546875, -0.41601562, 0.33691406, -0.5004883, -2.3808594, -3.1113281, -0.0072021484, -0.4802246, -0.8286133, -0.3630371, 1.5859375, -0.9291992, 0.75878906, -1.4589844, -1.5039062, -0.05130005, 1.0957031, 1.3037109, -1.7685547, 0.049316406, -1.6826172, -1.3154297, -1.0224609, 0.66015625, 1.0097656, -1.1914062, 0.17651367, -0.6972656, -0.27490234, -1.6699219, 1.2822266, -1.6992188, 0.9482422, 1.6923828, -2.5644531, 0.5175781, -1.3632812, -0.03717041, -0.76464844, -1.0683594, 3.890625, -0.3527832, 0.77197266, -0.87939453, -0.40429688, 0.83691406, 2.6777344, -0.7104492, -2.4707031, 0.9038086, 1.5595703, -2.9003906, -0.67822266, 0.91796875, 1.4990234, -3.4394531, 0.32373047, 2.9746094, -0.16625977, 1.0341797, 1.8994141, 0.5517578, 0.9995117, -1.8388672, -0.040039062, 1.2080078, -0.23547363, -0.59033203, 0.3708496, 0.068237305, -0.091308594, 0.33251953, 2.2011719, 0.8959961, 3.2871094, 3.375, 2.0839844, -1.6210938, -1.5625, -0.53271484, 0.097473145, -1.6962891, 2.0859375, -1.0429688, -0.92041016, -1.3505859, 0.13879395, 1.5146484, -2.2578125, -1.2021484, 1.2080078, -1.1523438, 0.30126953, -0.7866211, 1.5380859, -0.47216797, -1.5302734, 1.4394531, -0.04574585, -1.4785156, 0.93652344, -0.04196167, 1.4873047, -1.7617188, 1.7636719, -0.014640808, 0.080322266, -1.0263672, 0.70996094, -0.9448242, -0.4650879, -0.27685547, 0.29223633, -1.1904297, 2.2050781, 1.4990234, -0.06530762, -1.0292969, -1.5458984, 0.42333984, -1.3359375, 0.23669434, 0.6645508, -1.7714844, -0.27246094, -0.7441406, 0.34106445, 0.051483154, 1.5595703, -0.28320312, 0.9921875, -1.5869141, -0.36914062, -0.4970703, -2.3085938, -0.6635742, 4.421875, -1.2050781, -0.123535156, 0.3190918, 3.2441406, -1.3232422, -0.89501953, 0.9477539, -2.9765625, -0.59228516, 0.26245117, -2.6484375, 0.68652344, -0.26733398, 1.3388672, 2.9433594, -0.8041992, 0.88916016, 3.1054688, 0.115112305, -4.2148438, -2.1308594, -0.010627747, 1.2705078, -2.1425781, -3.6113281, 0.76171875, -1.6318359, -1.4628906, 1.8828125, 2.0449219, -0.8383789, 1.5029297, 1.1337891, -4.15625, -0.6796875, 0.8183594, 0.4038086, 0.7739258, -2.1796875, 0.9121094, -0.24645996, -0.27368164, -2.0566406, 1.5771484, 0.5678711, -0.47753906, 1.3642578, 2.7734375, 1.515625, -1.5527344, 0.25927734, -0.28076172, 2.0625, 0.65966797, -1.3876953, 2.2988281, -0.070739746, 1.34375, -1.2275391, -0.084472656, 0.096069336, -1.8789062, 2.0917969, 2.1679688, 1.8740234, 1.3007812, 1.3144531, -0.2866211, -0.062072754, 0.44580078, -1.7275391, 0.07623291, 1.1875, 0.087890625, -2.4082031, 1.5546875, -2.0117188, 0.01991272, 2.3339844, 1.1826172, -2.03125, 3.0957031, 2.3808594, 0.8544922, 2.1074219, -0.7128906, -1.5810547, 0.3083496, -0.8876953, -0.32714844, 0.58984375, -0.85791016, 0.5214844, 1.3173828, -0.03503418, 0.12683105, 0.41845703, 1.9111328, -0.58154297, 0.7607422, -0.7163086, -0.98339844, -0.87890625, -0.6113281, -0.43554688, -0.68896484, 0.9536133, -0.19116211, -2.5273438, 2.6582031, 0.98046875, -0.5908203, -1.5859375, 0.59277344, -3.7402344, 0.041107178, 1.2597656, 0.22570801, 1.2382812, 0.95947266, 2.3925781, 1.3046875, 1.0644531, 1.6035156, -0.43554688, 0.08618164, -0.48095703, -1.40625, 2.0839844, 0.9765625, -0.2758789, 2.9570312, -1.0810547, -2.4160156, 1.3701172, 1.3945312, -3.7539062, -1.2929688, -0.4194336, -1.4726562, -0.03869629, 1.8789062, -2.1035156, -0.8383789, 1.5507812, -1.1845703, 0.039916992, -1.3886719, -0.9897461, 1.5068359, -0.93896484, 0.16394043, -1.1748047, -1.125, 1.6523438, 0.22875977, 0.20629883, -1.2675781, 2.3125, 0.71728516, -0.6567383, -0.050933838, 0.6401367, -1.2138672, 1.578125, -0.90283203, -1.8466797, -2.2285156, 0.8823242, 1.5078125, 2.3828125, 1.25, 1.125, 1.3847656, -2.8554688, 0.95458984, 0.3955078, 0.60546875, -1.1259766, -0.4753418, 1.28125, -1.1083984, 0.011512756, 0.05456543, 0.37329102, -1.828125, 1.4921875, 1.9501953, -0.075927734, -1.1347656, 0.104003906, -2.5996094, -4.6953125, -1.4287109, 0.5830078, -0.48754883, 0.46899414, 1.2011719, -1.0253906, 2.3242188, -1.0390625, 0.07739258, -1.2792969, 0.17480469, 0.19494629, -0.9555664, -3.2871094, -0.48242188, 1.2939453, -0.12854004, 0.13232422, -1.4609375, -0.41796875, -1.5898438, -1.1357422, 1.7314453, -0.06329346, 1.5507812, -0.4855957, -1.3867188, -0.8720703, 2.7265625, 1.2871094, -2.5253906, -0.37475586, -3.6542969, -1.0527344, 0.41015625, -1.1445312, -0.030975342, 0.7421875, 0.55029297, -0.08441162, 1.1748047, -1.0146484, -1.6240234, -0.6689453, 0.7841797, 0.3803711, -1.1269531, -0.82421875, -0.26049805, -0.6669922, 0.6166992, 0.3791504, 1.5058594, -2.7128906, -1.2841797, -1.2011719, 1.0927734, -2.0292969, -0.7915039, -1.4658203, 2.4121094, 3.6875, 0.1274414, 1.0732422, 1.9013672, -0.3630371, 0.115234375, 0.66308594, -1.7099609, 2.6464844, -0.35839844, -1.5341797, -2.6367188, -1.6142578, 1.3222656, 0.046936035, -0.30786133, -0.76220703, -1.3916016, -1.0771484, 1.1455078, -0.2685547, 0.18933105, 3.1796875, -0.6977539, -1.7050781, 0.8754883, -0.07745361, -0.062408447, 1.6943359, 1.6386719, 0.90234375, -0.5317383, 1.9228516, 0.95703125, -3.0175781, -0.018875122, -1.5283203, 1.1601562, -0.609375, -0.30932617, -0.44213867, -2.3378906, -1.4257812, -1.9326172, 0.6958008, -3.0390625, 2.2890625, 0.6386719, -0.06945801, -0.053833008, 1.9794922, -0.19299316, 2.9179688, 4.140625, 2.3027344, -0.77685547, -0.16052246, -3.1210938, -1.7548828, 1.2021484, -0.52001953, -0.5722656, 1.5898438, 0.5957031, -0.9135742, 1.0947266, 2.2265625, 3.0605469, 0.56884766, 1.0576172, 0.33764648, 1.8017578, 1.9853516, 0.099975586, 0.7109375, 2.375, 0.69189453, -2.6679688, 1.4316406, -0.13110352, -0.16516113, -1.6328125, 1.3095703, -2.4902344, -1.4990234, -1.8105469, -0.9423828, 0.37841797, -3.0664062, 1.5976562, -0.2775879, -0.3540039, -1.1679688, -0.81884766, -0.31347656, 0.025985718, 1.7392578, -0.29516602, -0.30322266, 0.44726562, -1.1064453, -0.4482422, -0.7324219, 0.64990234, -4.171875, 1.8769531, -0.9008789, -2.0390625, 2.4980469, 1.5810547, 0.27075195, 1.8193359, 1.625, 1.1210938, 2.0703125, -0.66308594, -0.09118652, -0.23278809, -1.0644531, 1.8574219, 3.5996094, 1.1962891, -1.4677734, 1.1240234, -0.6801758, -2.7734375, -2.7109375, 2.140625, 0.55322266, -0.37646484, 0.51953125, -0.37817383, 1.7177734, -0.47631836, 2.7421875, -2.453125, 1.5976562, 1.0800781, -2.8222656, -1.5859375, 2.1328125, 1.1455078, 1.9003906, 0.31298828, -0.7011719, -0.11260986, 2.9746094, 2.2851562, 0.6879883, 0.013877869, 0.026397705, -0.47705078, -0.9633789, 2.3671875, 0.22521973, -0.10839844, -1.3867188, 3.421875, 1.4130859, 1.234375, 1.0556641, 0.31054688, 0.3269043, -1.6708984, 0.6069336, 0.43554688, 0.21618652, -1.8486328, -0.8979492, 0.8623047, -0.5410156, -0.25268555, 2.0957031, -0.09484863, -1.4453125, -0.9042969, 2.5839844, -1.3339844, -0.3005371, 1.2412109, -0.21032715, -3.4765625, -2.3925781, 1.7763672, -1.9179688, -2.5527344, 0.71972656, 1.9267578, 0.62597656, -0.7675781, 0.089538574, -1.8388672, 1.0859375, 0.034240723, -0.3815918, -0.34448242, -1.1240234, 0.6333008, -0.17504883, -0.8520508, 2.5917969, -0.34155273, 1.75, 2.0585938, -2.4785156, -0.7871094, 0.009140015, -0.73828125, 0.3400879, 2.53125, 1.1816406, 1.0976562, -1.7255859, -4.75, -0.4729004, -0.71972656, 1.0332031, -0.28344727, -0.47265625, -0.3076172, 1.1289062, 3.2929688, -0.9658203, -0.99609375, 0.4963379, -0.16101074, 0.9736328, 1.0380859, 2.03125, 1.5078125, 2.0722656, 0.25048828, 3.6582031, 2.4082031, -0.7705078, 2.09375, 1.0410156, 0.6748047, -0.94433594, -0.82470703, 0.03805542, 1.4824219, 1.2675781, -2.0742188, 0.27270508, 0.06329346, -1.5947266, -2.7226562, -2.2519531]}, "B093FC5SB6": {"id": "B093FC5SB6", "original": "Brand: Aliyoham\nName: Pellet Smoker Tube, Aliyoham 12'' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)\nDescription:

          With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

          You need our pellet smoker tube for sure!

          We have everything you need in one package.

          -1xPellet smoker tube

          -1xCleaning Brush\u00a0

          -1xSilicone Brush

          -3xS Shape Hooks

          It is also a fantastic gift, we have beautiful box as you can see in picture.

          If you have any question, message us any time!

          \nFeatures: Aliyoham 12'' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food.\nPut your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill.\nA smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more.\nPremium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it\u2019s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around.\nOur product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.\n", "embedding": [-1.9921875, 1.4179688, 1.3896484, 0.38378906, 0.44262695, -0.421875, 1.2021484, -0.54541016, -0.35302734, 0.77978516, 0.734375, -1.4375, 0.01210022, -1.8310547, -0.75878906, -1.0214844, 0.4189453, -0.35717773, 2.4179688, 2.328125, 2.0761719, 0.5234375, 0.18078613, -1.9970703, 3.3261719, 0.78027344, 3.0917969, -0.71777344, 1.7314453, -1.1376953, 0.68603516, 0.031433105, -1.6455078, -0.013305664, -2.5683594, -0.3388672, 1.265625, -0.59472656, -1.7695312, 0.05722046, 1.3085938, 0.06652832, 1.0947266, 2.3613281, -4.7226562, 0.080322266, -2.1855469, 1.2294922, -0.50927734, -0.47192383, -0.2722168, 1.1875, 0.3774414, 1.3164062, -0.6020508, 0.9916992, -0.875, -3.6933594, 0.56640625, -0.2626953, 0.4897461, -0.15551758, -1.3671875, 0.9609375, -1.1074219, -1.7148438, -0.328125, -1.7324219, -0.49975586, -0.33813477, -0.12902832, 0.04248047, 1.1894531, 0.73046875, -0.50878906, -1.140625, -2.6367188, 1.3164062, 0.43530273, 0.47143555, 0.48291016, 1.8847656, -0.33447266, -0.11804199, 0.66503906, -1.4189453, -1.6083984, 0.60546875, 0.7138672, 0.124938965, -0.068359375, -0.43115234, -1.0996094, -4.671875, 2.6152344, -2.984375, -0.15881348, 0.19909668, -2.1230469, 0.3564453, -1.0712891, 0.3071289, -0.87939453, -1.4492188, -2.5195312, -0.9814453, 0.8051758, 1.9199219, -1.4716797, 0.4350586, -0.6171875, 1.421875, 1.2509766, 0.99658203, 0.85009766, -0.8364258, -0.6376953, 0.0016889572, 1.3984375, 1.2128906, 2.8457031, 0.16125488, 1.3085938, -2.5507812, 0.10845947, 0.63623047, -0.48120117, 0.13464355, 3.7832031, 0.107299805, -0.26831055, -2.796875, 0.71533203, -1.4599609, -0.37329102, -1.8095703, -0.6850586, 0.0048675537, -1.90625, -1.1611328, -1.6269531, 1.1220703, 2.2421875, -1.1181641, -3.0957031, -0.21960449, 0.1430664, 1.0429688, 0.18347168, -1.5722656, 1.8105469, -1.4257812, 1.0419922, -1.2050781, 1.2353516, -0.01461792, 0.0814209, -0.1550293, 0.68896484, 0.03717041, 0.9433594, -1.7539062, -1.25, 1.6669922, -1.5341797, -3.3691406, -1.2519531, 2.0976562, -0.46826172, 4.6992188, 0.05908203, -1.7841797, -0.5341797, -0.17199707, 1.0742188, -1.2871094, 0.7324219, 1.7783203, 0.6489258, -0.84765625, -1.7998047, -2.0605469, 2.4433594, -0.20996094, 0.2878418, 0.019760132, 0.8823242, -0.3269043, 1.5722656, -0.53759766, 2.53125, 2.46875, -0.8569336, 1.4072266, -0.8623047, -0.4885254, -1.5400391, -1.9472656, 1.6152344, -0.63720703, -1.8847656, -0.23754883, -1.71875, -0.73291016, -2.2695312, -2.3164062, -0.61572266, -0.4831543, 0.39916992, 3.015625, 0.52734375, -0.34521484, 2.640625, -0.8725586, -0.40625, -1.7216797, 1.5253906, -1.7363281, 1.6865234, 2.28125, -0.11114502, -0.6123047, -0.33251953, 2.734375, 2.0527344, 3.3359375, -0.99609375, 1.6425781, -0.20861816, -0.11743164, 1.9677734, 0.47680664, -0.2529297, -0.75341797, 0.40649414, 1.0644531, 2.5683594, -1.5302734, -0.08190918, 0.44677734, -0.4182129, -2.6542969, 0.01576233, -2.6113281, -1.9267578, -1.7509766, -1.3037109, 0.5541992, 1.2001953, -0.5810547, -2.5976562, 1.578125, 2.1230469, -2.1816406, -1.6230469, 0.44873047, -2.4453125, 0.37890625, -0.58154297, -1.359375, 3.2382812, -0.7626953, 2.625, 0.79296875, 0.8378906, -0.56152344, 2.140625, 0.48486328, -2.3671875, -0.6352539, 0.4946289, -0.15307617, 0.48339844, -1.0507812, 2.4921875, 0.59765625, -0.9472656, 0.46533203, 2.0917969, 0.40649414, 0.69189453, 0.29345703, 2.7597656, -3.1855469, -1.8388672, -2.8144531, -0.60253906, -2.6074219, 0.8623047, 0.2208252, 5.1054688, 0.4519043, -1.4541016, 1.8330078, -0.8413086, -0.0625, 0.79589844, -0.09832764, -0.6557617, -1.3251953, 1.8994141, 0.043670654, -0.27392578, 0.030380249, -0.6074219, -0.72802734, 1.3984375, 0.73339844, 0.9477539, -0.2475586, -0.6020508, -0.21069336, -1.5097656, -0.8959961, -2.1171875, 0.95947266, -0.5605469, -0.3046875, 0.46020508, -0.38500977, 0.5908203, -0.03579712, 0.61865234, -1.6210938, -1.1044922, 1.9785156, -1.8417969, 1.5742188, 0.5390625, -1.5185547, 0.39257812, -0.11627197, 0.99902344, -2.0390625, -2.1582031, -1.3339844, 0.09869385, -2.5800781, 0.2890625, -2.4863281, -0.88427734, 0.74853516, -2.7773438, 3.0058594, -0.3269043, -0.9794922, -0.7470703, 0.5756836, 0.44750977, 2.3730469, -1.0947266, 3.0800781, 1.7880859, -4.5625, -0.9345703, 2.0898438, 0.52490234, -0.15454102, -1.2304688, 1.0507812, -0.22595215, -0.32592773, -0.5493164, -0.16381836, 1.5410156, -0.23010254, -0.21411133, -2.6699219, 1.1396484, -0.8330078, 2.1152344, -1.1298828, 2.1894531, -1.0800781, -1.015625, 2.5078125, 0.9604492, 2.8535156, 0.96875, 1.0976562, -0.8027344, -1.2392578, -0.22753906, -0.91796875, -2.96875, -1.2392578, 1.6816406, -0.6191406, -1.2490234, -3.6777344, 1.4941406, -0.47998047, -1.2177734, 0.124938965, 1.6621094, -0.9501953, 0.039093018, -2.7167969, -2.140625, 0.86376953, -1.6757812, 0.10888672, -0.46557617, -0.041503906, 0.44189453, -0.51416016, -0.04776001, -0.3815918, 1.2304688, -0.5180664, 0.06890869, 1.9511719, 1.4423828, -0.828125, 1.8769531, -2.1621094, 2.9628906, -0.6591797, -4.125, 0.6191406, -0.3605957, -0.3400879, -2.6816406, -0.8730469, 3.0996094, 1.7666016, 1.4765625, 0.10656738, 1.4609375, 2.1914062, 0.25073242, -0.85498047, -0.6425781, 1.2412109, 1.8671875, -3.4785156, -2.3164062, 1.9765625, 1.1708984, -2.1738281, -1.3164062, 2.5410156, 0.9970703, 1.6240234, 1.1464844, -0.18151855, -0.4206543, -0.083984375, 0.53222656, 1.0302734, -1.9179688, 0.32885742, 0.40649414, -0.4375, 1.5009766, 1.0712891, 0.34716797, 0.34155273, 1.8095703, 2.1582031, 0.03161621, -0.71484375, -0.12902832, -1.9423828, 2.2363281, -1.0429688, 2.8769531, -1.25, -1.5214844, 0.453125, 0.41430664, 1.1162109, -2.4960938, -2.0820312, 2.5019531, 0.5498047, -1.8398438, -0.37231445, 0.30908203, -0.17553711, -2.0996094, 0.7558594, -0.6796875, -0.2980957, 0.609375, -0.72558594, -1.3535156, -1.3164062, 1.4199219, 1.3193359, -0.66259766, -0.7246094, -0.21069336, -0.9746094, -0.7504883, -1.5175781, 3.4882812, -0.44311523, 1.8564453, -2.3613281, -0.107055664, 1.3583984, -2.1269531, 1.5078125, -0.48632812, 0.24450684, -0.23913574, -1.5566406, 0.03933716, 1.5585938, 0.4597168, 0.6791992, -0.0869751, -1.3769531, 0.22424316, -2.96875, 0.32226562, 0.4008789, -3.21875, -0.20153809, 1.0185547, 1.3388672, -0.22216797, -0.6801758, 2.8671875, 0.9765625, -1.5966797, 1.4365234, -1.4296875, -0.95410156, -3.5644531, -3.3632812, 2.5976562, 0.10522461, 0.30786133, 3.1542969, 0.58154297, -0.31396484, 1.3574219, 1.0693359, -1.1738281, -1.1953125, -1.8925781, 1.7382812, -0.2631836, -0.95166016, 2.6210938, 1.9208984, -2.3378906, -0.7392578, 0.11303711, -1.4453125, -0.13256836, 0.88964844, -1.1591797, 1.3134766, -2.0898438, 1.2236328, -0.12939453, -0.92578125, 0.9355469, -1.8554688, 0.21508789, 1.203125, 1.7978516, -0.13830566, 2.0097656, -0.25048828, 0.5263672, 0.55126953, -1.6318359, -2.5957031, 1.671875, 2.9238281, -0.33520508, -0.17382812, -0.46923828, 0.75341797, -1.2060547, -0.6381836, 0.9165039, -0.91796875, -1.5097656, 1.1396484, 1.4306641, 1.5439453, 2.1191406, 0.2310791, -1.1191406, -0.98095703, -0.27172852, -4.1601562, -1.4833984, 0.90722656, -0.8305664, -0.93310547, 1.4316406, -1.2617188, 1.9023438, 1.2275391, -0.11328125, 0.18371582, 0.5864258, 3.1132812, 1.5722656, 4.7226562, -0.73828125, -1.0166016, -1.4482422, -2.7695312, 0.8432617, -0.074523926, 0.28955078, -2.4707031, 0.51953125, 0.5371094, 0.23425293, 0.22375488, 0.54785156, 1.2451172, 1.7519531, -1.2763672, 0.9116211, -2.2929688, -0.74121094, 1.3828125, -0.74316406, 2.5039062, -1.2607422, -0.30932617, 0.3605957, -0.27807617, -1.1123047, 0.08984375, -0.5053711, 1.2695312, 0.6201172, 1.453125, 2.7265625, -2.046875, 0.068481445, 0.13391113, 2.8476562, -0.27612305, 1.1015625, 1.0195312, 1.0820312, -0.33081055, 1.8232422, 2.8164062, 2.1679688, -0.6533203, 3.5644531, 0.80078125, -1.2792969, -0.33642578, 2.6191406, -2.3417969, 0.78222656, -0.15258789, -1.171875, 1.2207031, 0.31591797, -1.3818359, 1.1015625, 2.3027344, -0.22033691, 0.7685547, -2.5507812, -1.3193359, 1.3388672, -2.7382812, -1.4404297, -2.2597656, -1.2216797, 0.89453125, 0.65527344, -1.515625, 1.8125, 1.015625, 2.7246094, -1.8056641, -1.8125, 2.1171875, -0.8310547, 0.16455078, -0.48461914, -3.2675781, -3.1308594, 0.16748047, 1.2695312, 0.71777344, 0.796875, 0.7519531, 2.8203125, -1.6523438, 1.4033203, -2.4101562, 2.1367188, -2.4707031, 1.2363281, 3.5742188, -3.578125, -0.29467773, 0.87158203, 1.0761719, 0.07849121, 1.2519531, 0.16040039, -2.5605469, -2.0976562, -0.55029297, -3.5390625, -4.1640625, -1.875, 0.15136719, 0.43774414, 0.6665039, 1.4082031, -0.5932617, -0.8144531, -0.56103516, -0.4777832, -0.15222168, -0.41259766, -1.0908203, -0.013969421, -2.0429688, -0.08215332, -0.6245117, -0.6767578, 0.88427734, 0.4885254, 1.3847656, -2.8476562, -1.6025391, 2.0566406, -0.6459961, -1.8798828, -0.06286621, -0.35229492, 0.47607422, 0.9477539, -0.09436035, -1.6708984, 1.3222656, -1.5625, 0.119506836, -0.45654297, -0.4885254, 1.4707031, -1.0488281, -0.8935547, -0.42504883, -0.3474121, 2.8691406, -0.4338379, -0.9897461, 1.1308594, -0.36376953, -0.7241211, -0.1463623, -0.96435547, 0.53564453, 2.1523438, 1.4814453, 1.2246094, -0.9326172, -2.828125, -2.3359375, -0.1541748, 0.16552734, -0.765625, -1.1337891, 2.2597656, 0.46289062, -0.20690918, 1.8564453, 0.37817383, -0.1484375, -0.05444336, 0.028747559, 1.0244141, 3.2070312, 1.2275391, -1.4824219, -0.67578125, -1.1728516, 1.4160156, 1.0527344, -0.19274902, -0.38256836, 0.5620117, -0.6074219, -1.3320312, 0.296875, 1.953125, 2.4628906, 1.7382812, -1.1162109, -0.3100586, 1.0546875, -2.9980469, 2.1113281, 0.7182617, 2.9882812, -0.25952148, 3.0449219, -2.0605469, -0.85058594, 1.2324219, -1.7753906, 1.2197266, 2.2011719, -2.1757812, 0.71777344, -2.0996094, -1.2226562, -0.14282227, 0.48632812, -0.3544922, 1.0625, -0.49951172, -1.0771484, -0.012313843, 2.9589844, -0.22998047, 1.7294922, 4.0859375, 0.061187744, -0.8881836, -0.34277344, -0.50927734, 0.6567383, 1.5478516, -2.9609375, 0.27685547, 1.2109375, -1.0615234, -2.1425781, 2.3007812, 3.2695312, -0.012557983, 0.04736328, 3.6738281, 0.2944336, 2.8046875, 2.4238281, -0.36157227, 0.94140625, 1.34375, -1.3232422, 0.39038086, 2.9257812, 0.42919922, 0.6640625, 1.109375, 1.1943359, -1.0605469, -0.45751953, -0.82128906, -0.7055664, -0.5625, -1.4990234, 1.53125, -0.16503906, -0.8911133, -2.90625, 0.101501465, -1.0605469, -0.78125, -2.4023438, -0.28295898, 2.9960938, 1.8857422, 0.85839844, 1.7226562, 0.08154297, 0.875, -4.9296875, 1.5, 1.0644531, -0.13122559, 0.9589844, 1.0146484, 1.0292969, 0.49072266, -0.95654297, 0.53125, 0.28735352, 1.9804688, 2.1484375, 1.5234375, -0.80126953, -0.6176758, 0.9350586, -1.2841797, -2.8535156, -0.94091797, -1.1142578, -1.6601562, -1.3183594, 1.9287109, -0.47998047, 2.3574219, 1.4345703, -1.6279297, 1.9267578, -1.2421875, 0.6455078, 0.37109375, 1.4833984, 1.7861328, 0.91259766, -1.6660156, 0.18164062, 1.8056641, 2.2910156, -1.1113281, -1.3222656, 0.28735352, 0.039398193, -0.05368042, 1.0488281, 1.0351562, -1.8046875, -0.67041016, -1.8251953, 4.9414062, 0.28881836, 0.7451172, 1.3076172, 2.3085938, 0.69921875, 1.8662109, 0.6694336, 0.087646484, 0.4099121, -1.5244141, -1.1513672, 1.9824219, 1.9677734, -2.7265625, -1.5966797, 0.025512695, -0.3696289, 1.5742188, 0.33154297, -0.67626953, 0.38671875, 1.5449219, 0.24438477, -2.0683594, -0.8071289, 1.8349609, -1.1796875, -0.36328125, -0.39086914, -0.1796875, -0.33447266, -2.7050781, 0.77490234, 0.26831055, 2.2167969, 0.4934082, 2.1894531, -0.53808594, 0.7451172, -0.20239258, -1.4121094, -0.6694336, -2.6015625, 1.1523438, -0.82421875, 0.71728516, 1.7324219, 0.5131836, -1.8330078, 1.5283203, -0.21740723, -0.02357483, -2.0585938, -2.1679688, 0.58203125, 2.7324219, 0.0022945404, 0.62402344, -0.7441406, -2.3027344, 2.921875, -1.4814453, 0.86376953, 0.37890625, -2.8125, 2.4003906, 1.6025391, 2.1113281, 2.1835938, -3.8632812, 0.5263672, -0.92822266, 0.27075195, -0.79296875, 0.8457031, 0.4868164, 0.109375, 0.7416992, 3.453125, -0.09588623, -0.76708984, 2.4179688, 2.0722656, 3.3574219, -3.8574219, -1.4550781, -0.6586914, 0.87646484, 1.0546875, -0.17041016, 0.14099121, 0.44580078, -0.9277344, -2.7890625, -2.0761719]}, "B08TMVDJ6W": {"id": "B08TMVDJ6W", "original": "Brand: Atatod\nName: Atatod 14\" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14\" W x 21\" H x 23\" D inch)\nDescription:

          Introduction:

          14\"inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

          Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

          Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

          Size:

          14\" W x 21\" H x 23\" D ( Product Size )

          12\" W x 19\" H (Cut-out )

          Package :

          1 X Stainless Triple Drawer

          1 X English manual

          \nFeatures: Outdoor Kitchen Triple Drawer;Overall Size:14\"W x 21\"H x 23\"D inch,Cut-Out Size:12\"W x 19\"H inch\nFully Enclosed Drawer Box \u2013 protects against the Weather\nHigh Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look\nDrawer Sizes are all 12 Inch Width by 4.5\" Top, 6.5\" Middle & 8\" Bottom\nBlend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components\n", "embedding": [-4.5585938, 1.7626953, 1.8447266, 0.57958984, 1.1884766, -1.0839844, -1.2998047, -0.15649414, 0.5517578, 2.9492188, 1.234375, 1.4003906, 0.0055503845, 0.111328125, -1.0498047, 1.2080078, 0.18151855, -0.9169922, 0.45825195, 0.75390625, 1.2353516, 0.96240234, -0.08148193, -0.58496094, 1.7744141, 1.5830078, 3.0488281, -1.1083984, 2.1894531, 0.6142578, 1.9697266, 0.9848633, 2.09375, 1.3427734, -1.3837891, 1.4160156, -0.3708496, 2.2070312, -1.5810547, 2.3554688, -0.26220703, -2.5136719, 1.9208984, 1.6933594, -3.9941406, -0.20153809, -0.002412796, 1.6123047, 0.84765625, -3.0273438, 0.8798828, 2.9355469, -0.2578125, 2.625, -1.3398438, 0.31591797, 2.7109375, -5.0859375, 0.28979492, -1.5371094, 0.35498047, 0.57910156, -1.3339844, 2.3847656, 1.0166016, -0.17224121, 1.4316406, 0.91503906, 0.04244995, 1.234375, -1.3417969, -0.10675049, -1.3662109, -1.4541016, -0.4633789, -1.2138672, -0.6689453, 1.7636719, 0.8959961, 1.0166016, -3.5, 1.4892578, -1.1347656, -1.3564453, 0.12298584, -0.47314453, -2.1816406, -3.1660156, -0.94433594, -0.36279297, -0.15197754, 1.7705078, -1.5234375, -3.4785156, 2.4765625, -3.8261719, 0.5126953, -1.0410156, 1.3144531, 2.5976562, -0.74316406, 0.26098633, -0.59716797, 0.38208008, -1.4931641, -1.1425781, 0.9716797, 0.03060913, -2.7988281, 0.01524353, -4.0507812, 2.7207031, 1.1396484, 0.16113281, 1.6328125, 0.10064697, 0.40307617, 0.75390625, 2.6933594, 2.5039062, 2.1308594, 0.21142578, -0.35766602, -1.7177734, 1.1972656, 1.7783203, 0.38964844, 1.5996094, 4.0351562, 0.6328125, 1.0341797, -2.7675781, 1.0966797, -0.92871094, 0.47216797, -0.82958984, -2.1269531, -2.7519531, -1.6630859, 2.2207031, -2.1386719, -0.07873535, 3.0292969, -1.6455078, -1.4052734, -0.6435547, 0.113220215, -0.8261719, -1.5625, -3.4707031, -1.2558594, -1.7050781, 2.0546875, -1.7041016, 2.0742188, -1.5146484, -0.45214844, -2.1855469, 3.5117188, 1.0751953, 1.1503906, -4.3242188, 0.28833008, 2.3671875, -0.34399414, -1.0820312, -1.7158203, 1.8515625, 0.8598633, 1.5449219, 1.4072266, -1.9824219, -0.27319336, -2.5664062, 1.0009766, 0.024841309, -0.4296875, 2.0742188, 2.5078125, -0.39086914, 0.69628906, -3.8671875, 1.2998047, 2.6621094, -1.9228516, -0.44213867, 0.2286377, -1.7285156, 0.7939453, -2.1796875, 0.27124023, -1.0751953, -0.30273438, -1.3935547, 0.47631836, -1.2421875, -1.6240234, -0.5776367, -1.0664062, -2.0449219, 2.0820312, -1.3378906, -0.82421875, -0.1784668, -2.9628906, 0.42504883, 1.0107422, -0.2619629, 2.9648438, 1.3828125, 2.5996094, -0.009597778, 2.6855469, -1.6240234, -0.7270508, -1.7773438, 2.0097656, -0.19824219, 3.4726562, 1.8271484, 1.2441406, 0.8105469, -1.0683594, 2.5449219, 0.21582031, 1.4335938, 0.45898438, -0.9042969, -0.2849121, 1.0546875, 2.2304688, 0.31591797, 1.5302734, 1.2402344, -1.1621094, 1.1328125, 0.48583984, -2.2441406, -1.5625, 1.4677734, 0.99658203, -1.7011719, 0.7114258, 1.3164062, 0.69677734, -0.6801758, -2.1914062, 2.7382812, -0.09564209, -1.7802734, -0.0690918, -2.3730469, 1.1132812, -2.5800781, 1.8300781, 0.55810547, -1.3203125, -0.49365234, -2.2773438, -3.0351562, 1.2910156, -1.5878906, 0.9213867, -1.6044922, 2.0742188, 0.2409668, 2.109375, -0.29760742, -3.0253906, -0.8666992, -1.0683594, 0.4645996, 1.5615234, -1.0458984, 1.3310547, 2.7382812, 0.14916992, 2.6464844, 0.18518066, 0.8286133, 0.4807129, -1.9296875, 2.1816406, -0.033447266, -0.15820312, 0.39819336, -1.4335938, -0.58691406, 1.7333984, 1.7490234, 3.6816406, -1.3759766, -3.3671875, 3.9003906, -0.10308838, 0.39038086, 1.3046875, -1.4316406, 0.3618164, -0.91796875, -1.2509766, -0.014915466, 0.33666992, 1.8925781, -0.52685547, -0.57958984, 0.9848633, -0.70947266, 0.8125, 1.3779297, -2.625, 0.02229309, -1.1162109, 0.9790039, -0.8095703, 0.070007324, 2.8320312, -0.75, 2.9238281, 0.13464355, 0.16760254, 0.014892578, 0.022628784, -0.9199219, -2.6269531, -0.74121094, -0.6982422, -2.2539062, -0.84521484, -1.3769531, 1.2919922, -0.20385742, 1.8564453, -1.3759766, -1.3554688, -1.6435547, -2.9375, -0.58154297, 0.26586914, 0.55615234, 0.6982422, 0.8129883, -2.6660156, 0.18518066, -0.79296875, -1.6376953, -1.6484375, 0.57470703, -1.5273438, -1.0009766, 1.0126953, -1.0078125, -0.52490234, -4.4492188, 2.421875, 1.4716797, 1.2714844, 0.12817383, -2.0976562, 1.8681641, -1.8193359, 0.3569336, 0.21704102, 2.1132812, -0.6435547, -0.58251953, -0.001964569, -3.8203125, 2.28125, -1.3896484, 1.1699219, -2.9257812, 1.1630859, -0.11743164, -0.33520508, -1.7734375, -1.9072266, 4.9335938, 2.6230469, 0.7709961, 0.5830078, 0.7949219, 0.9892578, -0.62353516, -0.23168945, -1.7773438, -1.1220703, -0.85058594, -0.81103516, -3.5605469, 3.0878906, -2.3632812, 1.9072266, -0.69433594, 2.1347656, 0.9008789, -1.0273438, -2.1953125, -1.1259766, 0.7192383, 0.027191162, -1.9589844, -1.5322266, -1.4873047, -1.6435547, 1.0126953, -0.1472168, 1.9375, 3.4042969, -1.5664062, -2.2109375, 1.2412109, -0.3515625, -0.20410156, -0.80566406, -1.7705078, 1.4794922, 0.011741638, -2.0839844, 0.7758789, -0.19140625, -1.7744141, -2.9804688, -1.2744141, 2.9648438, -0.8041992, 3.9082031, -2.1621094, 0.06896973, -0.74853516, 0.42822266, 0.6899414, -1.2177734, 1.9560547, 2.296875, -1.0488281, -2.4082031, 1.4677734, 0.39868164, -3.3339844, 0.0036888123, 0.070129395, 0.10479736, 1.3203125, 2.2714844, 1.6767578, -0.048828125, -1.3076172, -1.2783203, 1.2441406, 0.107055664, 1.0996094, -2.5019531, 0.19152832, -2.7792969, 0.31713867, 0.17285156, -0.2409668, 1.4160156, 1.4892578, 0.3491211, -1.7509766, -1.7705078, -0.15100098, -1.3134766, -2.3847656, 1.0234375, -1.1875, -1.4140625, -0.4946289, -0.765625, -0.34057617, -3.1855469, 1.0009766, 0.9526367, -0.24511719, 1.1074219, -0.4182129, -1.3613281, 0.10632324, -3.8476562, 1.0742188, -1.9335938, -3.2617188, -1.1611328, -2.5214844, -0.6928711, -1.2626953, 1.5830078, 1.2666016, -1.8623047, -2.5625, 1.6240234, -1.7802734, -0.12017822, -1.3173828, 1.3427734, -0.88916016, 0.7866211, -0.25756836, -1.5273438, 0.2788086, -0.52978516, 1.1953125, -0.88671875, -2.3496094, 0.3474121, 1.3476562, -0.69384766, 0.14831543, -0.7270508, -0.5317383, 2.8105469, 0.02772522, -1.1083984, -2.8378906, 2.0976562, 0.6347656, 0.64697266, -0.29101562, 1.6884766, 1.8056641, 4.1601562, -2.421875, 1.4130859, -0.45166016, 0.87890625, 2.2304688, -1.3847656, 0.35009766, -2.5449219, -2.328125, 0.8486328, 1.7470703, 0.04397583, 2.234375, 1.5722656, -1.2421875, 2.1367188, 1.6728516, -2.6777344, -2.3652344, -1.1240234, 0.5161133, -1.2978516, -1.6289062, 1.8759766, 0.48779297, -1.8125, 0.35839844, -0.38745117, -0.4260254, 1.6396484, 0.16247559, -0.70703125, 3.0273438, -0.35766602, -0.82177734, 0.47583008, -0.64990234, -1.2324219, -0.023498535, 0.8510742, -1.7714844, 2.9121094, -3.5058594, -0.890625, 0.39331055, 2.4902344, -1.3193359, -0.5673828, -4.6132812, 0.75878906, 1.7490234, -0.9814453, -2.3808594, -1.0234375, 0.37817383, 0.6855469, 0.6899414, 1.34375, 0.5576172, -1.8535156, -0.7026367, -0.6645508, -2.21875, 1.390625, 0.9790039, -1.7509766, 0.42773438, 0.89990234, -0.87646484, -1.5761719, 0.37646484, -1.2978516, -0.36010742, 0.7763672, -0.69970703, 3.7441406, -0.37939453, -1.65625, -0.0011148453, 3.2304688, 3.5546875, 1.4726562, 3.9863281, -1.9541016, -1.2285156, 2.3339844, -0.84375, 0.40112305, 1.4833984, -0.50634766, 1.1904297, -0.56640625, 0.15722656, -1.3115234, 0.7573242, -1.5664062, 0.7182617, 0.07446289, -0.86328125, 0.6894531, 0.97753906, -2.7734375, 2.5039062, -0.70654297, 3.3183594, -1.2451172, 1.4208984, 2.4472656, 0.92333984, -1.6005859, 1.8564453, -0.69628906, 1.5771484, -0.3293457, 0.11907959, 1.3066406, -2.6367188, 1.171875, 2.1425781, 2.9042969, -0.6694336, -0.92871094, 1.9580078, 0.47192383, 0.044799805, -1.6005859, 1.78125, 4.6835938, -0.29882812, 1.6865234, 0.5620117, -2.5449219, 2.5527344, -0.75683594, -2.0253906, -0.7607422, -1.8789062, -0.96728516, 2.8632812, -0.99365234, -0.19885254, 1.5068359, 2.8457031, -1.75, -0.80908203, -0.7241211, -2.015625, 0.070251465, -3.6757812, -0.5961914, 1.3808594, -3.1171875, -0.48510742, -0.40014648, -1.7080078, -0.115478516, 1.1308594, 2.3613281, 0.4375, -0.9736328, 0.14233398, 2.2695312, 0.5029297, 0.6591797, 0.5605469, -2.171875, 0.6386719, 2.375, 2.1660156, 0.78466797, 3.7226562, 2.0898438, -1.1005859, 1.3310547, -2.7871094, 3.578125, -1.3466797, 1.0439453, 2.0117188, -1.6630859, -2.125, -0.92871094, 1.1484375, 0.011741638, 2.1660156, 2.9667969, -0.26611328, 0.23791504, -0.15075684, -1.4892578, -3.6621094, -1.4091797, 0.013694763, -1.6669922, -1.3583984, 0.23657227, -2.9023438, -0.77197266, -1.6884766, 0.28833008, -0.99365234, -0.29370117, -0.484375, -0.6557617, -1.1992188, -1.1660156, 0.105407715, 3.2441406, -1.1757812, 1.5166016, -1.1640625, -3.0742188, -1.3183594, 3.5410156, -1.9619141, -1.7509766, 1.9648438, -0.2927246, 0.29077148, 1.0947266, 0.4741211, -1.9892578, 0.7236328, -0.49853516, 1.1953125, 0.94970703, 1.4033203, 0.86621094, -1.0302734, -2.1914062, 0.30737305, -2.5566406, 2.671875, -1.4316406, 1.1865234, -0.2442627, -0.13708496, 1.6552734, 0.51171875, 0.97558594, 1.4121094, 0.045776367, 0.9238281, 2.0644531, 2.7871094, -3.8554688, -1.8925781, -1.6601562, -2.8046875, 0.32250977, -1.296875, -0.96728516, 1.28125, -0.81396484, 0.78808594, -0.5131836, -0.49682617, -0.69921875, 1.3916016, -1.7255859, 1.9658203, 1.4189453, -0.5498047, -0.7470703, -1.7978516, 1.8339844, -0.5205078, -0.8676758, -4.640625, 1.7001953, -2.2304688, 0.32128906, 1.7666016, 0.12683105, 2.9707031, 1.0097656, -2.5703125, -0.66796875, 2.171875, -0.25195312, 2.1328125, 0.14465332, 0.4506836, -1.2246094, 4.5859375, 0.062072754, -0.5986328, 3.0078125, -0.35913086, 0.36523438, 0.060546875, -2.7207031, 1.1513672, -2.5625, -0.35302734, -2.2578125, -0.71533203, -0.89990234, 0.77734375, 1.4248047, -1.1376953, 0.19091797, 3.7617188, 0.6533203, 1.2617188, 2.5585938, -1.0126953, -1.0410156, -0.37182617, 1.5146484, 2.1816406, 3.4667969, 0.41137695, 1.7871094, -1.1347656, 1.7373047, -2.6132812, 4.2734375, 1.7646484, 0.3395996, 0.20227051, 0.048858643, -0.14916992, 1.0390625, 3.625, -0.19909668, 0.9970703, 2.5859375, 0.7080078, -0.6357422, 2.4316406, 0.24743652, -1.5351562, 0.06149292, 0.7416992, -1.3720703, -0.01802063, 0.06689453, 0.35131836, 1.5585938, 0.101989746, 2.09375, 0.18225098, -0.55029297, -1.1396484, -1.5341797, -1.15625, -1.9921875, -0.48095703, 1.7949219, 0.9267578, 0.21887207, 1.4580078, -0.2265625, 0.9638672, 0.24572754, -0.70996094, 0.08099365, -1.6181641, 1.1796875, -2.4277344, 1.3955078, 3.4023438, 1.4580078, -2.4492188, 3.6679688, 2.3164062, 0.15722656, -1.2509766, -0.4243164, 1.6503906, 0.8144531, 1.4335938, -2.4355469, -1.9208984, -1.75, 1.9853516, -0.69970703, -3.1601562, 1.6220703, 0.47973633, 2.859375, 0.83740234, -5.4960938, 0.34448242, 1.6435547, 0.89941406, -2.6054688, 1.7001953, -0.47485352, -2.1171875, -1.4267578, -0.6796875, 1.7529297, 1.7363281, 2.0253906, -1.4765625, 2.2285156, 0.9790039, 0.27270508, 1.3828125, 0.81640625, -0.5698242, 0.10662842, -0.34448242, 4.1640625, 1.2578125, 0.14379883, -0.5776367, 0.33862305, -0.7348633, 0.5419922, 2.6347656, -3.4707031, 0.83740234, -1.8505859, 0.47802734, 0.84033203, -2.4960938, -0.81933594, 0.13708496, -2.2011719, -0.47998047, -0.3088379, 0.67626953, -0.5083008, 1.5966797, 0.9716797, -2.0117188, 0.008361816, 3.390625, 1.2021484, 0.08343506, 0.34985352, -1.0537109, 1.8574219, 0.17932129, -1.5791016, -1.1445312, 1.0908203, -0.9448242, -1.0361328, 1.4697266, -0.30395508, -0.46435547, -0.76904297, -0.93115234, 0.31323242, -0.36254883, -0.28125, -2.4257812, -0.23095703, 3.5761719, -0.9916992, -0.6196289, -1.5273438, 0.091552734, -0.5024414, 1.5595703, -0.41503906, 1.2900391, 2.2089844, 0.7426758, -0.8251953, -1.2275391, -2.15625, 1.2314453, -0.4868164, 1.1845703, 0.76953125, -0.56640625, -1.7822266, -0.69677734, 0.9370117, 0.18762207, -1.6875, -1.0224609, -0.3618164, 0.95166016, -1.3515625, -0.5776367, -1.1982422, -1.1708984, 0.008277893, 1.5341797, 1.8154297, -0.15588379, 1.4404297, 4.4492188, 0.09222412, -1.7939453, -1.6865234, 0.5991211, 2.140625, -0.85546875, 1.3046875, 0.25805664, 0.21350098, 0.8310547, -1.2275391, -3.1855469]}, "B07J9HK1RB": {"id": "B07J9HK1RB", "original": "Brand: Think Gizmos\nName: Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+\nDescription: Fuel your child's imagination with one of the best interactive playset toys for toddlers you can buy\u2026. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child\u2019s concentration and fine hand skills. It's also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It's advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a \u2018ThinkGizmos\u2019 branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.\nFeatures: \ud83c\udf56 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ\u2019s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series.\n\ud83c\udf7d\ufe0f ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food.\n\ud83c\udf56 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food.\n\ud83c\udf7d\ufe0f LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6.\n\ud83c\udf56 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won\u2019t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.\n", "embedding": [-2.2480469, 2.1699219, 0.5024414, -2.0527344, -0.0736084, 0.5913086, 1.6513672, -0.14758301, 0.26708984, 0.46875, -1.8789062, -0.39868164, 1.2138672, -3.1972656, 1.0751953, -0.75634766, 1.4013672, 1.6708984, 0.089660645, 1.0742188, 0.4206543, -0.6489258, 0.4309082, -0.22302246, 0.10961914, -0.024765015, 3.1074219, -1.1796875, 0.67626953, -0.7861328, 2.6132812, 0.62939453, 1.3828125, 2.5019531, -2.5429688, -0.22009277, 0.0713501, 1.2568359, 0.3684082, -1.2265625, 0.12524414, -2.1464844, 2.046875, 0.72265625, -2.9824219, -1.3056641, -0.0045700073, 1.3496094, -1.4853516, -1.4755859, 2.0644531, 1.0693359, -1.5664062, 0.26660156, -2.5800781, 2.1367188, -3.8378906, -0.54003906, 0.31689453, -0.6386719, 2.2851562, -1.6054688, -0.72998047, -0.32177734, -0.4399414, -1.4941406, -0.23291016, -2.9335938, 1.5595703, -1.546875, 3.671875, -1.4199219, -1.2314453, -0.81152344, -0.99560547, 0.5625, -2.6503906, -0.98046875, 0.23181152, -1.9052734, 0.44580078, 1.0185547, 0.7861328, -0.8833008, 1.1708984, -0.60009766, -1.6933594, -0.9501953, 3.0625, 1.4619141, 0.61279297, 0.29077148, -0.6875, -5.5234375, 1.3232422, -2.0957031, 0.63720703, -1.3984375, -0.8691406, 3.3242188, 1.8525391, -1.7226562, 1.0126953, -1.3623047, 0.66845703, -1.2089844, 2.2460938, 0.55029297, -1.4990234, -0.69433594, -1.296875, 2.0976562, -0.76708984, 0.40966797, -0.21044922, 0.18310547, -0.013809204, 2.3476562, 1.1757812, 1.1728516, 3.3945312, -0.36865234, 0.9951172, -3.3398438, -0.5756836, -0.5961914, -0.8486328, 1.5996094, 2.796875, -0.32080078, -1.1357422, 2.7070312, 0.44213867, -0.06951904, -1.6269531, -1.2470703, -2.0625, -2.9726562, -2.5683594, 2.4199219, -0.5722656, 0.04849243, 3.4101562, 0.47607422, 0.31445312, 0.18518066, -1.6845703, 2.1953125, -0.5175781, -1.9453125, 1.1210938, -1.7958984, -0.7060547, 0.48632812, 2.5429688, -0.12561035, -1.8369141, 1.0419922, 0.9116211, 0.15332031, 1.7529297, -0.51464844, -0.31689453, -0.32373047, -0.47924805, -2.1289062, 0.90478516, 2.53125, -0.4345703, 2.2949219, 1.3828125, -0.5751953, 2.0976562, -1.1289062, 0.35424805, -2.6035156, -2.7753906, 1.2929688, 1.4775391, -0.98583984, 0.2322998, -1.3847656, 3.1738281, 2.2207031, -0.3239746, 0.042785645, 0.5551758, -0.044555664, -0.036224365, -1.0957031, 1.7373047, 0.31689453, -0.8461914, 1.1992188, -0.2890625, 0.8720703, -1.0097656, 1.0498047, 1.2080078, 1.6845703, -0.8569336, 0.5517578, 0.19848633, -0.7026367, -0.8964844, -2.0332031, 0.36450195, -1.7646484, 1.2607422, 0.7583008, 0.4572754, 1.2978516, 1.7695312, 1.0615234, 0.4909668, -1.0625, -0.5957031, 0.8208008, 2.4570312, 1.4921875, -2.6679688, -1.2158203, -1.2529297, 4.984375, 0.27392578, 1.1816406, 0.8261719, -0.77978516, -1.8291016, 0.26171875, 0.75634766, 0.7089844, -0.46142578, -0.52978516, -0.5576172, 0.6557617, 1.5869141, 0.48388672, 0.18603516, 0.57958984, 0.07446289, -2.3945312, -1.1191406, 1.5566406, -0.09484863, -1.0019531, -1.8886719, 1.7958984, -1.6425781, -0.28515625, -0.42016602, 1.6455078, 1.8486328, 0.90185547, 0.45947266, -0.6123047, -1.9521484, 0.032440186, -3.0878906, -0.37109375, 0.94384766, 0.116882324, -1.2792969, 1.9912109, 2.4570312, 0.21191406, 3.7929688, -1.0654297, -0.99316406, -1.1298828, 2.2910156, 2.3027344, -1.1787109, -0.5419922, 1.7890625, 0.97802734, -0.13232422, -1.8027344, 1.9277344, -1.1240234, -0.39038086, -0.70947266, 0.37426758, -1.6445312, -2.3710938, -0.31445312, -3.3691406, -1.4794922, 2.0839844, -0.45751953, 2.8203125, -1.1083984, -1.1542969, 2.3339844, -4.4414062, -1.5839844, -0.09588623, -2.0058594, -0.14404297, 1.1367188, 1.8583984, 2.9433594, 0.8769531, -2.2832031, -0.095214844, 0.5029297, 0.7885742, -2.4765625, -0.71435547, 0.3310547, -0.6513672, -1.1689453, 0.6430664, 1.3945312, -0.39648438, 0.5205078, 0.5961914, -0.7729492, 0.15441895, 0.34033203, 0.5102539, -0.07385254, -0.32543945, -1.7705078, 1.2197266, 1.3671875, -0.7421875, -0.21472168, 0.089904785, -1.0371094, 1.5976562, -0.5473633, 1.5322266, -2.7304688, -0.4074707, -0.26489258, -0.5888672, -2.5625, -1.3847656, -0.51904297, -0.06008911, 1.3505859, -1.4541016, -1.4921875, -0.61328125, -5.2265625, -1.2099609, 1.2666016, -0.9086914, -1.1083984, -0.8125, 1.4179688, 1.3125, -3.6542969, 0.87402344, 0.5463867, 3.7128906, 1.90625, -3.5195312, -0.07489014, -1.5537109, 1.2695312, 0.87646484, -0.7421875, -0.5732422, -1.0546875, -1.7470703, -2.5546875, 1.5898438, 0.38452148, 0.14892578, 1.4960938, 0.40722656, -1.1533203, 1.1152344, -0.24133301, 0.6645508, 4.46875, -2.8417969, 1.2480469, 0.009109497, -0.28515625, 0.38256836, 0.3713379, -1.3154297, -1.0908203, -1.40625, -1.4580078, -0.39038086, -0.9033203, 0.70947266, -1.2910156, 1.609375, 0.59228516, 2.1679688, -0.62353516, 2.40625, -2.2988281, 0.47192383, -1.5820312, 1.3085938, 0.7290039, -1.0654297, -0.8066406, -1.7099609, -1.6904297, -1.3154297, -2.1113281, 2.3359375, 0.47143555, 1.3388672, 0.09106445, 1.1142578, -1.8857422, 2.7363281, -0.59472656, 3.7695312, -0.6323242, -0.83691406, -2.2773438, 0.68652344, -1.4287109, -1.9023438, 0.9238281, 1.3193359, -2.0234375, 1.3251953, 0.18151855, -0.6147461, -0.20727539, 2.3496094, 0.6791992, 1.0976562, 2.9238281, 1.6591797, -2.9101562, 0.22692871, 1.6240234, 2.5585938, -1.3447266, -0.08929443, 1.5380859, 0.578125, 0.45922852, 0.05218506, 0.6191406, 0.27270508, 0.31884766, 0.69970703, -1.1083984, -1.3886719, -0.57470703, -0.19494629, -1.2675781, -0.48388672, 2.0429688, -0.12976074, -0.21386719, 0.4152832, 2.3632812, 1.7675781, -4.234375, 2.2910156, 1.7578125, 1.7597656, 0.45336914, 0.06695557, -0.7470703, 0.25317383, -0.84228516, 1.3007812, -0.12512207, 1.1005859, -0.56396484, 1.7304688, -0.30493164, -1.5976562, -0.46923828, 0.1817627, -0.49121094, -1.2363281, 0.54785156, -0.038909912, -1.9667969, -0.08673096, -2.8808594, -0.71240234, -0.5288086, 2.9121094, -1.2675781, -0.41870117, 0.97998047, 2.6523438, -1.1445312, -0.09490967, -1.1181641, 1.3632812, -0.23291016, -0.04421997, -1.9882812, -1.6396484, 2.0097656, -0.17834473, 0.71777344, 2.1074219, -2.2851562, -0.38134766, -0.19555664, -0.7001953, 1.6083984, 0.5336914, 2.3691406, 1.359375, -1.7285156, 0.05758667, -3.4101562, 0.22729492, -0.48095703, -2.8105469, 0.8222656, -0.4128418, 0.14172363, 1.8867188, -1.4492188, 1.6201172, 0.44018555, 0.17370605, 0.4025879, -0.013832092, 0.5444336, -3.2617188, -2.6484375, 1.3525391, 1.0078125, 0.14855957, 1.4091797, -0.17114258, -0.8227539, 4.546875, -0.30688477, 0.25317383, 0.46557617, -1.1484375, -0.62890625, 0.15270996, 0.6040039, 1.9697266, -0.3371582, 1.6787109, -0.8964844, 0.35424805, -0.2841797, -0.15234375, 0.42749023, -0.84765625, 0.9892578, -1.2080078, 0.70996094, -1.5322266, 1.0419922, -3.6464844, 0.84033203, -0.9472656, 0.20019531, 2.15625, 0.86279297, -0.13244629, -0.30004883, -0.13659668, 0.9946289, -0.3395996, -4.5390625, 0.609375, 2.3457031, -0.6401367, -1.9853516, 0.31933594, 0.68408203, 1.3896484, -1.1484375, -1.0419922, -1.8310547, -1.5898438, 0.52246094, -0.007713318, 0.93115234, 1.2558594, -0.1619873, -2.8007812, -0.2919922, -0.71728516, -2.7109375, -2.4902344, -0.34350586, 0.6274414, -0.014511108, -1.8955078, 0.3864746, 0.22802734, 1.0253906, 1.6835938, -0.033111572, 0.45947266, 0.2919922, -1.0722656, 4.2617188, -1.3076172, -0.07989502, 1.5595703, -2.609375, 0.9848633, 1.4580078, -0.71240234, 1.9453125, -0.13122559, -0.56103516, -1.5908203, -0.8461914, -0.21313477, 0.6645508, 2.0039062, -0.24865723, 2.046875, -1.0380859, 0.97753906, 0.4362793, -0.8769531, 2.0117188, -0.58691406, 1.0126953, 0.6411133, 0.16918945, -0.8198242, -0.37426758, 2.3417969, 1.5703125, 0.7709961, 2.5742188, 2.90625, 0.5605469, -0.8442383, 0.32714844, 0.5366211, -0.8173828, 0.066345215, -0.92578125, -0.421875, 0.22937012, -0.4152832, 1.7246094, -0.64697266, 1.6601562, 0.32080078, -0.4255371, -1.1416016, 1.6347656, 2.4667969, -0.67285156, 1.1591797, -0.86083984, 0.03945923, 0.38256836, 1, -3.8515625, -0.033843994, -0.7104492, 0.2076416, 0.9765625, -0.8173828, -3.1074219, 2.1425781, -0.35131836, -0.31103516, 0.8876953, -1.5585938, 1.1582031, -0.4621582, -2.0546875, -0.66552734, 0.18395996, 2.6386719, 1.6279297, -1.2353516, 0.65625, -0.04135132, 1.0849609, -0.61328125, -0.79052734, -1.7880859, 0.099609375, 2.7890625, 2.5625, 1.9267578, -0.98291016, 2.2988281, -3.6621094, 1.1269531, -4.3867188, 0.87109375, -2.4277344, 1.8710938, 0.7675781, -2.359375, -0.46557617, -2.3359375, 2.5332031, -0.38452148, 1.7207031, 0.24829102, -2.0117188, -2.8613281, 1.4101562, -2.953125, -3.4785156, -1.4677734, -0.6323242, 2.0390625, -0.009429932, -0.73095703, -1.8339844, -1.0644531, 1.6679688, -1.0419922, -0.52441406, 1.6943359, 0.70458984, -1.2929688, -0.84472656, -0.58740234, -0.21875, 0.6748047, 1.3701172, 0.9980469, -2.0898438, -3.7382812, -0.9033203, 0.84814453, -2.6308594, -2.28125, 2.8613281, 0.012390137, 0.03579712, 2.7480469, -0.2019043, -0.90185547, 0.87109375, 0.74365234, -0.3486328, -1.4882812, -0.80322266, 3.4414062, -3.5957031, -0.37329102, -0.92333984, -3.1992188, 1.6650391, 0.15148926, -0.055664062, 0.9145508, -0.7895508, 0.88916016, -0.38891602, -1.1201172, 0.47631836, -1.2099609, 0.8847656, -0.79541016, -0.41015625, -2.9296875, -2.0527344, -1.4433594, -0.122558594, -0.15197754, -0.6689453, -0.45922852, -0.96972656, -0.5546875, 0.7988281, -0.5058594, 0.65527344, 1.1503906, 0.24133301, 2.3300781, 1.5185547, 1.1074219, 0.08654785, -1.1308594, -1.9462891, -0.18408203, -0.6220703, -1.7832031, 0.87841797, -1.8984375, -3.1035156, -1.0302734, 0.99609375, 0.31445312, 2.6191406, 1.6679688, -1.6279297, -1.8945312, -0.76171875, -2.3066406, 2.484375, 1.2636719, 1.6162109, -1.359375, 4.3320312, -2.5566406, 0.46289062, 1.7871094, -1.0751953, 2.3632812, -1.46875, -2.2519531, 0.58984375, 0.82373047, 0.5488281, 1.4042969, -1.5507812, -0.8623047, 1.6679688, 2.2871094, -0.33374023, -0.08178711, 4.1679688, -2.2832031, -0.62060547, 1.0185547, -0.8696289, -2.1582031, -0.041625977, 1.9589844, -1.2412109, -0.640625, -0.2208252, 1.8330078, 0.38330078, -1.1777344, 0.26538086, 0.6035156, 1.1435547, 1.6044922, 1.2695312, 2.3691406, -0.095947266, 2.3632812, 0.15673828, 1.0332031, 1.3095703, 1.6494141, -0.93603516, 0.7001953, 4.2460938, 0.6147461, -1.2861328, -0.77490234, 0.21118164, 0.4873047, 0.32226562, -1.6826172, 0.6142578, -0.8046875, -0.1842041, 1.7324219, -0.095336914, 1.0507812, -1.9160156, 1.1201172, 0.5620117, -0.5698242, -2.890625, 2.3554688, 2.0253906, 1.1904297, 2.2363281, 1.9316406, 0.037200928, 1.7070312, -1.8300781, 0.25756836, 0.96875, -0.81347656, -3.5898438, 2.6796875, 1.2363281, 0.7573242, 1.7783203, 1.8085938, 1.1640625, -1.0390625, 3.5644531, -0.07397461, 0.09887695, -1.296875, 0.22509766, 0.14050293, -0.74560547, -0.71240234, -1.5605469, 0.03817749, 0.18835449, 3.0957031, 0.03363037, 0.9736328, -0.7714844, -3.84375, -0.31396484, 1.7392578, 1.640625, -0.05496216, 0.52978516, -2.0507812, -0.8491211, -0.0013046265, 1.7734375, 1.3515625, 1.9589844, 1.2578125, -3.0449219, -0.87890625, 3.3652344, 0.74853516, 0.21203613, 1.5615234, -1.2646484, 1.4619141, -0.63378906, 1.5947266, -0.13586426, 1.046875, 0.4152832, 2.125, 1.7792969, 1.9628906, 2.2773438, -1.5869141, -0.50390625, -1.1035156, -2.1699219, -1.0439453, -0.734375, -1.1884766, -0.091430664, -0.64160156, -0.16125488, -0.3852539, -0.7788086, 1.4208984, 1.0927734, -0.12445068, -0.54345703, -1.5693359, -0.22546387, 1.3349609, -0.49145508, 0.6201172, -1.3076172, 0.8144531, -0.0018558502, 0.04989624, 2.1582031, -0.5932617, 0.45874023, -1.8681641, 0.7167969, 1.4804688, 0.77734375, 0.54003906, 0.27905273, -3.3242188, -1.1708984, 0.89453125, -0.30541992, 1.5410156, 0.86279297, -0.69091797, -0.35083008, -1.0791016, -1.3144531, 1.0888672, 0.64501953, -2.5273438, -0.73876953, 2.4765625, 1.6416016, 0.34155273, -1.9892578, -2.4785156, 1.2548828, 0.8310547, 0.4206543, 0.2241211, 0.21838379, -1.1523438, -1.5361328, 3.1582031, 0.4567871, -1.1308594, -0.74365234, -1.7128906, 1.0566406, 1.4003906, 0.4428711, 0.84814453, -1.1201172, 2.0058594, 2.4746094, 2.2148438, 1.4560547, 1.2685547, 0.74609375, 1.7675781, -2.3847656, 1.3212891, -1.3857422, 1.5107422, -0.69189453, -0.37646484, -1.0449219, -2.1503906, 1.7929688, -1.2822266, -1.2021484]}, "B081JMSBPF": {"id": "B081JMSBPF", "original": "Brand: A AIFAMY\nName: Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange\nDescription: FANTASTIC GIFT IDEAS for Father\u2019s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron\nFeatures: TOP PRANK GIFT -- the most lifelike body like human\u2019s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day\nJUST REAL -- a big belly apron with bushy hair, that\u2019s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun\nADJUSTABLE -- One size fits most; Size: Length is 29.5\" including neck strap 37\" approx, Width 26.3\"; give you a snug and comfortable feeling when wearing it\nMaterial:100% Polyester; machine washable\nPREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items\n", "embedding": [-0.3388672, 2.8476562, 1.7548828, -0.20861816, -0.6069336, -0.079711914, 1.0146484, -1.5830078, 0.57714844, -0.011116028, 1.1865234, -0.1550293, 2.4570312, -2.8984375, -0.65283203, -0.74853516, 0.6816406, 0.4658203, 0.5, 0.40527344, 1.328125, -1.234375, 2.2617188, 0.6953125, 0.014724731, 0.30151367, 3.4804688, -1.5302734, 1.4541016, 1.8349609, 1.3447266, 0.97753906, 0.37548828, 1.7998047, -2.1796875, 0.62402344, 0.3791504, -0.3708496, -0.5756836, 0.2680664, -1.1337891, -2.2578125, 1.9433594, 1.6962891, -4.4023438, 0.296875, -0.41137695, 1.8857422, -1.5625, -2.7753906, 0.2310791, 2.1308594, 1.09375, 0.60791016, -1.5292969, 2.5839844, 0.7573242, -1.671875, -0.07434082, -1.5957031, -0.6411133, 0.15185547, 0.20727539, 0.2775879, 1.6494141, -1.4208984, -0.41796875, -0.86865234, 0.15783691, -1.5429688, 0.28222656, -0.43286133, -1.5400391, -0.5415039, -0.44213867, 2.4570312, 0.44750977, 0.28051758, 1.2490234, -0.40063477, 1.7734375, 2.4785156, 0.5214844, -2.7207031, -0.7314453, -1.5449219, -1.9023438, 0.43725586, 2.0527344, 0.66259766, 1.9433594, 3.3886719, -1.7529297, -5.4023438, 1.7685547, -2.2382812, -0.63378906, -2.3046875, 0.5292969, 3.5351562, -1.5605469, -1.40625, 1.6630859, 2.3789062, -0.67089844, -1.0703125, -0.73046875, -0.01902771, 0.16247559, -1.0166016, -1.8496094, 0.68066406, 2.2753906, 0.8808594, 2.2421875, 1.7333984, -0.6870117, 1.2011719, 1.6318359, 1.1708984, 1.8925781, 0.52490234, 2.1835938, -1.4882812, -1.1875, 0.005130768, -1.5507812, 2.3789062, 3.0117188, 0.25976562, 0.89941406, -1.0126953, -1.3183594, -0.18029785, -1.6298828, -1.1425781, -0.2536621, -0.21984863, -0.05380249, 2.1464844, 0.20385742, -0.8261719, 1.0107422, -0.08428955, -0.6381836, 0.13171387, -1.9414062, 1.8417969, 0.5683594, -1.7744141, 1.5585938, -1.5253906, -0.42626953, -0.0619812, 1.1679688, 0.87841797, 0.004219055, -1.2890625, 1.6796875, 0.6582031, 2.0175781, -2.1269531, 1.8828125, 1.1367188, 0.96875, -2.6679688, -1.2597656, 0.3400879, -0.15563965, 2.0273438, 0.47875977, -2.3828125, 2.8046875, -0.1583252, 0.70947266, -1.3212891, -0.42285156, 0.50439453, 0.17651367, 0.7285156, -0.28881836, -1.7998047, 0.80810547, 1.59375, 0.1161499, -2.0722656, -3.5351562, -1.0175781, 0.42114258, -1.234375, -0.8203125, -1.5478516, -0.7114258, 1.2421875, -2.4667969, -2.1738281, 1.2851562, -0.14367676, 0.14538574, 1.3339844, -0.8984375, -1.0800781, -0.609375, 0.01914978, -1.8320312, -1.4892578, 1.7011719, -1.953125, 2.2753906, 0.7138672, 0.7241211, 0.08911133, 1.9345703, 2.4960938, -0.81347656, -0.7167969, 0.20141602, -2.8945312, 1.6103516, 0.08868408, -1.8457031, 2.546875, 0.25976562, 1.4765625, -0.484375, 1.1445312, -0.26611328, 1.09375, 0.09033203, -0.58691406, 0.8442383, 0.13989258, -0.74121094, 0.03488159, -0.40942383, 0.19250488, 1.3808594, -2.0234375, -1.4863281, -0.3227539, -1.2841797, -2.78125, -3.2890625, -1.3681641, 0.5942383, 1.9755859, -1.9716797, 2.1484375, -1.0976562, -0.29736328, 1.1601562, -0.43676758, -0.6972656, -0.484375, -0.45288086, 1.640625, -1.8144531, 1.2705078, -2.6308594, -0.66796875, 0.8833008, 0.2578125, -0.43798828, 3.1699219, 1.5039062, 1.1298828, 3.5371094, -0.46069336, 0.13842773, 0.23925781, 2.7304688, 2.4492188, 1.7314453, -1.8115234, 1.1210938, 1.3994141, -1.2373047, -0.42626953, 0.9379883, -1, 0.14782715, 0.67822266, -0.13903809, -0.94384766, 0.03918457, 0.82128906, -1.9628906, -3.3378906, 0.7709961, 1.9873047, 2.8359375, 0.064819336, 0.4489746, 2.0585938, -0.42163086, 1.2519531, -0.059295654, -2.2949219, -1.4765625, -0.12780762, 0.98291016, 0.07867432, 0.72753906, 1.9882812, -0.27148438, -0.7993164, 0.051086426, -0.9448242, -0.60839844, 1.0732422, -0.048217773, -1.4599609, 0.27026367, 0.35083008, -2.4550781, -2.625, -0.640625, 0.37158203, 0.22802734, 0.8857422, 2.6640625, 1.6240234, -0.73046875, -2.0117188, -0.53808594, 1.4082031, -2.7441406, 1.9511719, 0.18286133, -0.6660156, 1.1894531, -0.22692871, 0.9296875, -1.7714844, -1.6142578, -0.007041931, -0.5366211, 0.11431885, -0.022018433, 0.8935547, -1.2617188, -0.7636719, -3.0253906, 1.2871094, 0.5576172, -1.8203125, -0.09472656, -0.045288086, 0.28759766, 1.0644531, -0.54833984, -0.99072266, -0.0015544891, -4.4179688, -0.14916992, 1.2607422, 1.859375, 0.5463867, -1.9492188, 1.1484375, -0.83935547, -0.6430664, 2.1074219, -0.13220215, -0.53027344, -0.16918945, -0.14257812, -2.8320312, 1.515625, -0.8027344, 0.21594238, 0.23608398, 1.2363281, -1.2509766, -0.6113281, 0.20910645, -1.8496094, 4.0390625, -0.1182251, -0.86621094, 1.1123047, -1.2197266, 1.1611328, 1.7763672, -1.4355469, -1.1796875, -0.15588379, 0.37109375, -0.62060547, -3.5605469, 0.40307617, -1.0703125, 1.1289062, 0.20471191, 2.0253906, 1.2138672, -0.70654297, -2.4765625, 1.0097656, 0.22998047, 0.87353516, 0.46118164, -1.5371094, -0.5854492, -1.4541016, -0.48168945, -0.109191895, -1.0693359, 3.4238281, -1.4375, -0.15270996, -0.8491211, 0.044067383, -3.2734375, -0.9423828, -1.9960938, 0.8745117, 2.3671875, -0.37353516, -1.5019531, 0.9707031, 0.5761719, -0.30981445, 1.0390625, 0.17602539, 1.4404297, 2.7402344, 1.4746094, 1.6337891, -0.29736328, 2.9882812, -0.58496094, -0.33764648, 2.2871094, 1.3125, 0.2824707, -0.10333252, 0.40722656, 1.5273438, -2.4941406, 0.56152344, 1.7441406, 0.40185547, 0.08404541, 0.22570801, 2.765625, 0.71875, -0.3071289, 2.546875, -1.6162109, 0.49951172, -0.76464844, -0.11517334, 0.4411621, -0.8876953, 1.6337891, -0.2397461, -0.035217285, 1.5136719, 0.51220703, -0.9057617, -0.69140625, 2.1757812, 0.80322266, -0.69384766, 1.6630859, -0.43432617, 0.074645996, 0.79345703, 2.8242188, -1.2998047, 1.9101562, -0.9609375, 0.9248047, 1.1103516, -0.14550781, -0.953125, -0.828125, -1.2988281, 0.59375, -1.796875, -2.3457031, -2.0722656, -1.9472656, -0.45239258, -1.8964844, -1.2148438, 0.640625, 2.6640625, -2.6953125, -0.97265625, -1.3007812, 0.8881836, -2.9433594, 1.2441406, 0.31982422, 1.4628906, 0.76904297, 2.9140625, 0.39697266, -1.3847656, 1.7783203, -2.453125, 0.16821289, 1.5283203, -1.921875, -1.1572266, -0.51464844, -0.17028809, -1.0351562, -2.2617188, -1.1992188, 3.2753906, -1.6943359, 0.42504883, -1.1640625, 0.3803711, 2.3398438, -1.2294922, -0.2590332, -0.078125, -0.041931152, 0.6357422, 0.6386719, 2.9394531, -0.7529297, -0.421875, 1.4414062, 0.62402344, -0.16564941, 0.13269043, -2.2871094, 0.051330566, 1.1162109, -1.1376953, 4.0976562, 0.08538818, 0.796875, 3.4257812, -0.29125977, 0.3779297, 0.14746094, -0.7714844, -1.4863281, 0.3161621, -0.7314453, 1.0117188, 0.14282227, -0.20776367, 0.33325195, -0.09844971, -1.921875, -1.0810547, -0.057434082, -1.0078125, -0.35742188, -2.6679688, 0.88720703, 0.12194824, 0.53222656, -1.1523438, -0.8696289, -0.32299805, -0.039794922, 2.9511719, -0.8383789, 0.38989258, -2.8476562, 2.8378906, 1.3339844, -0.14758301, -3.3359375, -0.32128906, 2.8613281, -0.29785156, -2.5175781, -0.7607422, -0.49194336, -1.2255859, 0.39282227, 0.16601562, 0.97265625, -0.7939453, -1.4443359, 1.9326172, 0.45507812, -0.14135742, -0.2878418, -2.4882812, 0.76416016, 0.765625, -1.1337891, -2.2421875, -0.30786133, -0.1640625, 1.1337891, -2.0097656, -1.5263672, 0.9707031, 1.1123047, 2.5800781, -0.8613281, 2.7441406, -0.18640137, 0.63916016, 6.1835938, -0.40698242, -0.63671875, -0.22399902, -0.97558594, 1.4482422, 1.5410156, -0.14819336, 2.1640625, -2.5253906, 0.4975586, -0.6557617, 1.2773438, -0.9482422, -0.72509766, 1.3076172, -0.5214844, 0.75439453, 0.8666992, 0.045654297, -1.4326172, -1.4189453, 2.7675781, -1.3085938, 0.8955078, 2.2773438, -0.8852539, 0.12756348, 1.8916016, 0.5102539, 0.94189453, -0.9785156, -0.17773438, -1.25, -1.1416016, -1.3017578, 0.484375, -0.6826172, 0.13537598, -0.43310547, 0.5932617, 0.9277344, -0.07159424, -1.9345703, 1.6621094, 3.1367188, 0.71728516, 1.4667969, -1.3339844, 0.55908203, 0.06097412, 1.6162109, -3.2070312, 0.0043907166, -0.089660645, -0.02128601, 2.8125, 0.59472656, -0.7993164, 0.39257812, -0.4013672, 0.16955566, 1.7519531, 0.88720703, -1.7353516, 0.08959961, -2.9472656, -2.2402344, 1.0546875, -1.4697266, 0.066223145, -0.9785156, -1.0253906, -3.8789062, -0.6201172, 3.0898438, 1.9013672, -0.41333008, 0.46142578, -0.9301758, -2.2714844, -2.53125, -1.3818359, -2.0839844, -0.47143555, 1.2626953, 2.375, 0.9394531, 0.93847656, 1.3085938, -0.28466797, 2.5410156, -0.4086914, 2.4316406, -1.1845703, -0.12792969, 1.2070312, -1.1523438, 0.42114258, 0.38183594, 0.6845703, 0.765625, 1.9814453, 0.28515625, -0.7314453, -0.048339844, -1.4716797, -1.8037109, -2.8066406, -1.3359375, 1.6533203, -0.021270752, -0.85595703, -0.31054688, 1.2861328, 0.35742188, -3.0742188, -0.042114258, -0.6376953, -0.43408203, -0.12463379, -0.5625, -1.0273438, -2.1777344, -0.06573486, -0.07525635, 1.3583984, -1.8378906, -0.5283203, -1.890625, -1.8085938, 1.1425781, -5.25, -3.515625, 1.1601562, -0.17626953, 0.8095703, -0.6459961, 4.71875, -1.0361328, 1.5087891, -2.5039062, -0.24438477, -2.7226562, -0.3256836, 1.6240234, -1.7246094, -1.5214844, 1.0224609, -1.9570312, 3.3417969, 0.92041016, -0.55029297, 4.125, -1.4238281, -0.3251953, 0.7807617, 0.04135132, 1.9433594, 1.8867188, 2.203125, -0.51220703, 0.06951904, -3.3398438, -1.7626953, 0.066467285, -2.2148438, -0.87841797, -0.70214844, 1.0351562, 1.2675781, 0.97265625, 1.9853516, 0.44628906, 2.6503906, -0.68115234, 0.1328125, -0.13952637, 0.31982422, 2.2460938, -0.40112305, -0.734375, -1.1738281, 1.4628906, 1.0507812, 0.75341797, 0.8769531, -2.0683594, -2.3476562, -0.056793213, 0.17126465, 0.9326172, 2.25, 0.5307617, 0.5776367, -0.15136719, 0.39208984, -2.2324219, 0.37646484, 0.94433594, 1.6542969, -2.3339844, 4.1484375, -2.1914062, -2.875, -0.28320312, 0.40795898, 1.8935547, 0.30273438, -1.6728516, -0.30786133, -2.9648438, 0.39257812, -0.1517334, -2.0234375, -1.7832031, -0.07208252, 0.01890564, 0.19116211, -0.37036133, 2.9394531, -0.31176758, -0.39697266, 1.2158203, -2.0429688, -1.4414062, -1.3779297, 0.90185547, -0.6645508, 1.140625, -0.9291992, 1.2978516, 1.2089844, 0.26782227, -1.3242188, 0.43139648, 1.0888672, -0.6040039, 2.09375, 2.6152344, -0.049926758, 3.5878906, 2.2226562, 0.07147217, 1.1767578, -0.6225586, -0.10656738, 0.86376953, 5.015625, 0.4873047, 1.2666016, -1.2050781, 1.9414062, 0.09320068, -1.0498047, 0.09906006, 2.1601562, -2.71875, 0.092163086, -0.50146484, 1.1220703, -1.5927734, -0.6694336, 1.4414062, 0.1673584, -1.3554688, -2.1894531, 0.37963867, 1.1875, -0.9897461, 1.2138672, -1.8876953, 2.390625, 0.91552734, -2.1933594, 0.73535156, 0.5263672, 0.20544434, -0.69628906, 3.71875, 2.2578125, 0.99072266, 0.33569336, -0.8154297, 0.05569458, 1.2626953, 1.2363281, 0.29052734, 0.3557129, -0.6923828, 0.042114258, -0.17126465, 0.4716797, -0.15734863, -2.3398438, 0.18371582, -0.0021877289, 0.8310547, -0.18017578, -0.8618164, -1.1591797, -4.0234375, 3.1757812, 1.3984375, 1.7988281, 0.57128906, 0.77441406, -1.2294922, -0.6245117, -0.59472656, -0.1184082, -0.8544922, 1.4589844, 1.7060547, -3.0371094, -0.111328125, 2.1035156, 1.6171875, 0.5107422, -0.27197266, -1.4873047, 2.3085938, -0.22167969, 0.69189453, 1.0810547, 1.0986328, -0.5449219, -0.6899414, 1.5273438, 1.1904297, 1.7988281, -2.4746094, 1.8867188, -2.1015625, 1.6845703, -1.1962891, -1.5283203, -2.8046875, -0.8911133, 0.07714844, -0.7133789, -0.1652832, 1.2451172, -0.7792969, -0.014160156, 0.074401855, 0.25268555, -2.4492188, 0.05126953, 0.82958984, -1.5585938, -1.0078125, -2.4140625, 0.40649414, 0.55859375, -0.103881836, 0.27294922, 0.6269531, -0.4753418, -0.5415039, 0.95996094, -2.1757812, -1.7695312, 0.27929688, -0.4177246, -1.2802734, -2.1367188, -1.1533203, -0.9609375, 0.65966797, 3.8300781, 0.8071289, -0.34594727, -0.7602539, -1.0234375, -0.54052734, -0.9272461, 0.38012695, 3.8457031, 1.1679688, 2.0800781, -1.8828125, -1.2617188, -1.8095703, 0.19750977, -4.171875, -0.14135742, 0.9926758, -2.1464844, 1.0625, -1.0634766, 1.15625, -2.5859375, -2.2304688, 0.9301758, -0.95947266, 1.1757812, -1.7128906, 1.5419922, 1.0839844, -1.0585938, -0.75390625, 1.8798828, 1.3867188, 1.8945312, 1.0703125, 2.7167969, 0.9223633, -0.5004883, 0.66015625, 1.25, 1.9609375, -0.99609375, 1.7958984, -1.1171875, -0.16784668, 1.3515625, -1.421875, -0.7265625]}, "B07F7LR53H": {"id": "B07F7LR53H", "original": "Brand: Exquisite\nName: Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round\nDescription: Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

          Colors:\u00a0Red, Blue, Black, Teal

          Sizes:\u00a084 inch. Round, 54 Inch. x 108 Inch. Rectangle\u00a0

          What you get:\u00a012 individually wrapped disposable tablecloths

          Uses:\u00a0These premium quality table covers are great for Bbq's, picnics, camping, outdoors\u00a0 \u00a0 \u00a0 \u00a0 events, parties, and any other gingham themed event

          \nFeatures: PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!!\nSPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!!\nHIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event.\nDISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it.\nSELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.\n", "embedding": [0.5576172, -1.1328125, 2.4882812, -2.1601562, 2.8105469, -0.4650879, -1.1601562, -2.3613281, 0.90771484, -0.54345703, -0.5917969, 1.7431641, 3.7753906, -3.5390625, 0.15026855, 1.4697266, -0.12634277, 2.25, 2.2011719, -2.5898438, -0.15429688, -0.9067383, 1.0878906, -0.36791992, 1.3398438, 0.13439941, 2.3164062, -2.3515625, -0.9355469, 2.1757812, 3.1386719, 1.828125, 0.8208008, 2.3886719, -0.90625, -0.875, 1.3398438, -0.6855469, 0.29370117, -0.21008301, -1.1318359, -2.4667969, 1.7929688, 2.0351562, -2.5859375, -0.0993042, -2.109375, -1.9941406, -2.890625, -2.9824219, 0.29077148, -0.031158447, 2.9472656, 0.0793457, -0.19006348, 0.9716797, -0.6010742, 1.1054688, -0.27148438, 0.56347656, 1.2402344, -0.8964844, 1.4794922, 3.328125, -0.64990234, -1.0878906, -1.3134766, -1.3583984, -0.46069336, 0.59716797, -1.4189453, 0.7758789, -1.9267578, -0.19628906, -0.44799805, 1.3505859, -1.5439453, 1.7910156, -0.40795898, -2.6953125, 0.4111328, 1.1347656, 0.12854004, -2.8925781, -0.8754883, -1.5322266, -1.109375, 1.1367188, 0.04727173, -1.5820312, -1.2802734, 1.1376953, -1.7880859, -4.4414062, -0.051940918, -4.1210938, 1.9111328, -0.88427734, 0.9848633, 3.3085938, -1.6347656, -1.5029297, 1.6083984, -0.54248047, -0.7114258, -1.5751953, 2.9453125, -1.4521484, -1.4707031, 0.23522949, -1.5273438, 0.1373291, -0.103027344, 0.02482605, 1.7773438, 1.8164062, -0.3251953, 1.6601562, 0.87841797, 0.2109375, 2.0664062, 1.0205078, 1.3935547, -1.6884766, -0.019805908, 0.6323242, -1.8535156, 1.4794922, 2.7988281, 0.88964844, -0.23913574, -0.07305908, -0.34765625, 0.99658203, -2.4785156, -1.1689453, -0.77490234, -1.6142578, -2.1679688, 2.3457031, -1.8623047, -2.1035156, 1.1660156, -0.28173828, -0.8208008, 0.65722656, -1.5126953, 3.0078125, -0.12512207, -1.4082031, 0.25610352, 0.42138672, 0.6269531, -1.3359375, 0.05810547, 0.28833008, 2.7929688, -0.73535156, 3.3515625, 2.3964844, 1.4921875, -3.4140625, 0.51464844, 0.31640625, 2.5390625, -1.1455078, 0.08758545, -0.62841797, 0.69628906, 0.8276367, 0.77734375, -1.0263672, 1.4541016, -0.18444824, 0.14587402, 0.1505127, -2.1542969, 0.72265625, 1.3017578, -2.0214844, 1.0888672, -1.2324219, -1.0253906, 0.17224121, -1.0058594, -2.1289062, 0.4309082, -1.2431641, -1.6220703, -1.125, -1.1005859, -0.11798096, -2.5996094, 0.55078125, -3.9863281, -1.9677734, -0.6411133, 0.60839844, -0.9970703, 3.1621094, 0.50878906, 0.39282227, -0.3215332, -1.3505859, -2.5429688, -1.9111328, 0.29785156, 1.1728516, -0.73046875, -1.9160156, -0.71484375, -2.2421875, 2.6914062, 1.3896484, -1.2851562, 0.004486084, 0.35961914, -0.9584961, 0.8022461, 0.81640625, -0.11853027, 0.92333984, -1.5996094, 2.7695312, 0.40576172, -0.76708984, 1.4580078, -0.103759766, -0.3564453, 0.4650879, -1.7734375, 1.7695312, 0.27734375, -0.1541748, -0.1821289, -0.045196533, 0.9604492, -2.3105469, 0.22851562, -1.7021484, 0.28393555, -2.6933594, -2.5664062, -0.7470703, 1.8251953, 0.24365234, -0.41967773, -0.03567505, -0.12109375, -1.6953125, -1.3330078, 1.6748047, 1.1972656, -0.26123047, -1.3300781, 0.8779297, -0.41870117, -2.3320312, -1.7792969, -2.5253906, 0.08618164, 1.6591797, -0.3215332, -0.5703125, 0.47192383, 1.8193359, 0.25512695, 0.43579102, -1.5742188, 0.27734375, -0.58154297, 0.46435547, 1.7324219, -1.5195312, -1.5039062, 0.099487305, -1.5332031, 0.2902832, 1.3925781, -1.125, 0.35107422, 0.70947266, 2.5898438, 0.13623047, -0.17443848, -0.9716797, -0.7319336, -0.00920105, 0.017974854, 0.9042969, 2.7460938, -1.9707031, -0.7216797, 1.453125, -0.99121094, 0.012268066, -0.09741211, -3.1367188, -1.1240234, 1.0585938, 0.78027344, 1.5908203, 0.21740723, -0.72753906, -1.1572266, -0.6982422, -0.5629883, -0.90283203, -1.2392578, 0.9892578, -0.07977295, -0.17028809, 0.5488281, 1.0683594, 0.83984375, -1.6054688, 1.4980469, -0.14086914, -0.5878906, 1.8242188, 0.8569336, 0.18908691, -2.1445312, -2.671875, -1.4443359, 1.7539062, -4.1484375, -0.67333984, 0.17993164, 0.55615234, 1.6787109, -0.5209961, 1.3652344, -0.9550781, -1.5546875, -0.15466309, -2.6757812, -0.5205078, -3.6679688, -2.1230469, 0.46679688, -1.6181641, -3.8730469, 2.5957031, 3.2128906, -0.92333984, 0.9682617, 0.15332031, -0.119628906, 0.06542969, 0.02130127, -2.0585938, -0.3630371, -3.5117188, 1.8681641, -0.14099121, 0.3005371, 1.2138672, -1.4052734, -1.0810547, 1.0361328, 2.0664062, 1.9697266, -0.13745117, -1.5771484, -0.42333984, -2.8671875, -2.0039062, 0.39575195, 0.5878906, 1.9375, -1.2744141, 1.3867188, -2.7089844, 1.6767578, -0.8305664, -0.5336914, 4.7109375, 0.114868164, 0.46362305, 1.0029297, 0.03463745, -0.83984375, 0.4345703, -1.6367188, 0.9428711, 0.44140625, -0.21557617, -2.9394531, -2.7832031, -1.4033203, -0.35839844, -1.2304688, 1.3310547, -0.20935059, 1.9091797, 2.9667969, -3.1503906, -3.0390625, -0.78466797, 4.1875, -1.1318359, -1.0439453, 1.0029297, -2.8007812, 0.1340332, -0.6333008, -1.8867188, 2.3691406, 0.4033203, 0.93847656, 0.4572754, -1.1357422, 0.64208984, 1.3427734, -1.4404297, 2.53125, -0.7636719, 2.21875, -0.3322754, 1.2246094, 0.8486328, 0.5932617, -0.3955078, 0.6386719, 0.6870117, 2.125, 0.74560547, 1.8847656, 0.4025879, 0.7480469, -1.8876953, 1.6611328, 2.5019531, -0.029037476, 0.2208252, -2.09375, -0.90234375, 0.20996094, -2.3398438, 0.11584473, 1.5302734, 1.1054688, 0.018173218, -0.3791504, 0.47583008, 1.9941406, 0.1538086, 4.078125, -1.6416016, 1.6943359, 0.41674805, -0.87646484, 0.61865234, 0.7993164, -0.67871094, 2.7128906, 1.9414062, -0.125, -1.3681641, -0.105895996, -4.6679688, 1.7402344, 4.0664062, 0.9946289, 1.9355469, 1.4873047, -1.1083984, 0.7114258, 4.5703125, -0.15185547, 0.2376709, -1.4570312, 3.6972656, 1.7402344, -1.1660156, 0.16491699, -1.4121094, -2.5351562, -0.10168457, -2.6894531, 0.47705078, -2.3066406, -2.2363281, 1.5234375, -4.7109375, -0.8173828, 1.4433594, 4.0507812, -1.25, -1.2236328, -1.4228516, 1.0478516, 0.032043457, 1.5947266, 0.20019531, 1.5771484, -0.5253906, 2.2871094, 0.6699219, -1.7919922, 1.6103516, -1.5371094, 0.18115234, 2.2910156, -2.7304688, -1.2539062, -0.62402344, -1.4794922, -0.8017578, 0.6557617, -0.5571289, 1.9023438, -1.7841797, -1.7753906, -0.3059082, -0.4345703, 2.0214844, -1.4404297, -0.58740234, -3.1113281, -1.3056641, 0.046539307, -1.6103516, 0.6508789, -0.18164062, 0.23522949, 0.87939453, 0.82958984, -1.1601562, -0.45141602, -3.2128906, -0.9111328, 0.1307373, -1.5634766, 0.46166992, 1.1787109, 0.6879883, 4.84375, -1.2744141, 0.45898438, 2.6835938, -1.9169922, -1.8320312, -0.71533203, -0.26708984, 0.46191406, -0.42626953, 1.3896484, -1.4335938, -0.9609375, 1.7861328, -1.6357422, 0.51904297, 1.2021484, 1.9375, -3.0195312, 1.9335938, 0.78027344, 1.5361328, -0.81396484, -0.62597656, -1.5996094, 0.70996094, 3.6621094, -0.48364258, 0.11444092, -1.5185547, 1.0380859, -1.7529297, -0.7265625, -2.9453125, 0.8432617, 2.6269531, -1.5585938, -1.2070312, 0.23620605, -0.84277344, 0.9003906, -0.50927734, -0.82421875, -0.9272461, -1.5117188, -2.546875, -0.05819702, 1.1816406, 0.84521484, -0.30664062, -1.5019531, 1.3398438, 1.5, -3.7519531, 1.1171875, -1.6308594, 0.7363281, 3.0371094, -0.06933594, -1.7470703, 0.45288086, -1.4941406, 1.3505859, -0.33740234, 5.1484375, 0.06311035, 1.9560547, 6.3984375, -3.0019531, 1.0888672, 2.5136719, -0.6191406, 2.6386719, 0.0814209, 0.9194336, 2.0117188, 0.1484375, 0.4753418, -1.3056641, -0.7207031, 0.21984863, -0.5683594, -0.21911621, -0.83203125, 3.5996094, 0.58935547, 1.8671875, 0.8129883, -1.3515625, 2.1503906, -1.2080078, 1.9921875, 0.49121094, 0.8041992, -0.76416016, 1.5810547, 2.6132812, -0.51220703, -1.0429688, -1.1865234, -0.6635742, -0.51708984, -1.6523438, -2.5585938, 1.9912109, -1.6269531, -0.003276825, 0.27246094, -0.122924805, -0.57128906, -1.3027344, 1.8720703, 2.8320312, 0.20043945, -0.36132812, -0.089416504, -0.5185547, 3.5878906, 2.328125, 1.0771484, -0.79003906, 0.8076172, 1.8193359, 1.2265625, -0.08544922, -1.4296875, -1.0419922, -1.4560547, 0.37182617, 2.5, 1.2949219, -2.2265625, 1.7265625, -1.3925781, 0.5834961, 0.58984375, -0.73291016, -0.34326172, -1.8837891, 1.609375, -0.6699219, -0.40161133, 2.9863281, 1.3046875, -1.8037109, -0.8642578, 2.1113281, -0.5708008, -0.47924805, 1.0126953, -2.5234375, -1.9052734, 0.13269043, 1.4785156, 1.1201172, 1.4482422, 2.40625, -2.3417969, 2.0332031, -3.8046875, 0.27294922, -2.8710938, -0.49780273, 3.4921875, -4.0976562, -0.4946289, -0.12011719, 2.2636719, 3.1210938, 0.32177734, 0.29077148, 0.20874023, -2.7578125, 0.44555664, -2.8984375, -1.5986328, -1.0849609, 0.48339844, -0.75878906, -1.8398438, -2.734375, -0.38256836, -0.33569336, -0.58935547, 0.01914978, -0.20581055, 0.026382446, -0.3955078, -3.2988281, 1.3779297, -0.31762695, -0.6489258, -1.5322266, -2.8632812, 2.015625, -0.2614746, -2.8886719, -0.3034668, 2.78125, -3.390625, -1.5556641, 0.8979492, -1.3808594, 2.9003906, 0.93408203, 0.80029297, 1.6230469, 0.7348633, 1.0966797, -0.53808594, 0.49560547, -0.2322998, -0.12634277, -2.9921875, -0.89160156, 2.7128906, -0.9194336, 1.3994141, 0.90722656, -0.37280273, 2.734375, -0.11706543, -0.6269531, 0.24182129, 1.2216797, 0.7270508, 2.0039062, 1.4023438, -0.44506836, 0.77490234, -2.6953125, -1.5419922, -2.9785156, -3.0664062, -2.5078125, -0.5205078, -0.33618164, 0.19165039, 0.3635254, -0.14746094, 2.9238281, 3.8027344, -0.1953125, 0.78564453, -2.2207031, 2.0761719, 1.6132812, -1.0908203, -0.80810547, -0.13110352, 1.0439453, 1.0859375, 0.12109375, -1.0166016, -0.12585449, -2.0859375, -1.2255859, -0.21166992, -0.66503906, -0.27929688, 1.5039062, -0.1932373, 0.36816406, 1.9892578, -0.59716797, 1.3408203, -1.7246094, 0.93896484, -0.85302734, 3.0371094, -0.5957031, -3.5722656, 0.06262207, -1.5751953, 1.9199219, 0.2253418, -0.6459961, 1.1611328, 1.2626953, -0.3972168, -2.8085938, 1.796875, -1.6816406, 2.1757812, -0.7651367, 1.1142578, -0.26733398, 2.3457031, -0.57470703, 1.1181641, 2.3671875, -3.7714844, -1.4833984, -0.8017578, 0.3244629, -0.016311646, 0.35327148, -1.4492188, 1.0742188, 0.33691406, -0.6328125, -1.5712891, -0.9863281, -1.6806641, -1.0595703, 2.6464844, 2.5410156, 0.5019531, 2.1621094, 3.2246094, 0.07873535, -0.5283203, -0.6088867, -0.47802734, 1.7265625, 4.3945312, 1.0166016, 0.99072266, -1.6435547, 0.8769531, 0.7783203, 0.7558594, 0.038269043, 0.7998047, -0.72216797, -1.1894531, 0.062927246, 1.2617188, 1.2607422, 1.8535156, 0.6074219, -0.14001465, -0.5019531, -0.18273926, -2.5957031, 3.3046875, 0.72265625, 0.4091797, 0.5678711, 2.2324219, 0.5727539, -0.8383789, 1.0322266, 0.37451172, -0.0491333, 0.057769775, 0.65185547, 2.890625, 2.7167969, 0.99609375, 0.9248047, -0.11846924, 1.9443359, 2.2207031, 1.0556641, 2.1816406, -0.30322266, -0.40478516, -1.2519531, -0.5058594, -2.2265625, 0.4663086, 3.7929688, -0.91845703, -0.4338379, 1.8037109, 0.70947266, 0.16333008, -4.8945312, -0.9453125, 3.0722656, -1.0683594, -2.3027344, -1.3291016, -2.6640625, 0.27954102, 2.9355469, 0.6591797, 0.18896484, 1.0820312, 1.5498047, -1.5117188, 1.3037109, 2.15625, 0.7265625, 1.8828125, 0.33569336, -0.9082031, 1.3017578, 1.2919922, 0.7451172, 1.2119141, 0.9189453, 1.4570312, -0.6430664, 0.6801758, -2.59375, 1.7080078, -1.6572266, 0.8305664, 0.82177734, 0.6772461, -0.4584961, -0.25195312, -1.7441406, 1.2158203, -1.0615234, 0.14160156, -1.8154297, -0.70410156, -0.5390625, -0.74365234, 0.019821167, 0.78222656, -1.7939453, 1.5439453, -0.061553955, -1.7138672, 0.91552734, -1.6054688, 0.8286133, -0.8227539, -0.08428955, -0.1986084, 1.2783203, -0.61572266, -1.3085938, 1.0253906, 0.33544922, 1.1621094, 2.5332031, 0.61083984, -2.6660156, -0.050598145, 0.16784668, -1.1542969, 2.0839844, 0.5463867, -0.17980957, 0.0022449493, -0.3630371, -1.0898438, 2.890625, -1.1376953, -1.6054688, 1.1835938, 2.8945312, 4.4335938, -1.4462891, 2.1796875, -2.2246094, 0.9526367, -1.4345703, 2.2734375, 2.1425781, -1.6708984, 0.068359375, 1.2431641, 3.4609375, -2.3769531, -3.6425781, -0.1706543, 0.6582031, -1.0986328, -3.9160156, 1.4658203, -0.8198242, -0.49536133, 2.0820312, 0.65625, 3.9960938, 1.1357422, 1.4394531, 4.1328125, -0.19262695, -0.11279297, 1.7568359, -0.98339844, 0.21472168, -1.3251953, 1.1347656, 0.99121094, -1.1337891, 2.0019531, -0.9316406, 0.20935059]}, "B07FSVCSSL": {"id": "B07FSVCSSL", "original": "Brand: EG\nName: Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook\nDescription: \nFeatures: A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases.\nPORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks.\nVISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane.\nADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-).\nLIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.\n", "embedding": [-1.6503906, 0.94384766, 2.09375, 1.4511719, -0.47607422, 1.3261719, 0.23669434, 0.58154297, 2.0585938, 0.50341797, 0.9589844, -0.24157715, 1.1630859, -1.3984375, 1.2802734, 0.6542969, 0.36157227, 1.46875, 0.19799805, 2.4960938, 3.3867188, 1.7607422, 0.3466797, -1.1679688, 0.07611084, -0.037719727, 3.9589844, -2.046875, -1.3232422, -2.2128906, 1.2949219, -0.28393555, -0.7089844, 2.2558594, -1.0419922, -0.92041016, 0.7036133, -1.2363281, -0.39819336, -1.3642578, -0.46557617, 0.34228516, -0.27929688, 0.32543945, -2.4667969, -1.2275391, -1.5419922, -0.79785156, 0.3852539, 0.10784912, 1.0908203, 0.11859131, -2.2363281, -0.50878906, 0.27172852, 1.1162109, 2.8457031, -0.71875, 0.40234375, 1.0078125, 1.1083984, 3.0371094, -1.4082031, -0.3010254, -0.36621094, -0.5541992, 1.2148438, 0.6123047, -0.25048828, 2.171875, -0.3557129, 0.0088272095, 1.8867188, 0.12683105, -1.4433594, 3.3222656, -0.8022461, 0.6855469, 0.59814453, -0.4489746, 1.1152344, 0.46240234, 0.09509277, -2.1289062, -1.2333984, -1.6767578, 0.14086914, -1.0791016, -0.7963867, -0.7832031, -2.7734375, 1.4648438, -1.6171875, -4.9921875, 0.82421875, -1.5917969, 0.23730469, 0.036224365, -0.043762207, 1.0859375, 1.7177734, -0.1796875, 0.35009766, 1.2841797, -1.1875, -1.7841797, 1.0771484, 1.8701172, -0.64941406, -1.5175781, 0.4946289, -1.1064453, 0.11383057, -0.7207031, -0.7675781, 0.24475098, 1.2695312, 0.09875488, 3.2675781, -0.35180664, 1.9638672, -1.9707031, -0.26049805, 0.82421875, 0.66748047, -1.6474609, -0.3166504, -1.8310547, 1.2226562, -2.0917969, 1.4960938, 1.3730469, 0.76464844, -0.117492676, 0.050628662, -0.96533203, 0.13977051, -3.9140625, -3.140625, -2.90625, -3.7792969, -0.029052734, -1.5, -0.18444824, 0.7270508, 1.0019531, -3.1757812, 2.0742188, 0.2697754, 0.21484375, 0.6748047, 0.0463562, 1.7402344, -1.1289062, 1.5419922, 1.2382812, -2.1679688, -2.9921875, 2.3398438, 1.5136719, 1.8583984, -0.14953613, -1.8242188, -2.8261719, 0.68359375, -4.234375, 1.0927734, 0.1920166, -0.8027344, 1.4375, 0.6772461, 0.14660645, -0.13879395, 0.6191406, 0.49853516, -3.2304688, 1.9023438, 0.8886719, 1.1083984, 0.2614746, -3.0546875, -0.9741211, 0.8149414, -1.6269531, 1.9248047, 0.94189453, -0.24902344, -1.5429688, -1.3300781, -2.2558594, 0.12976074, 1.9433594, -1.3291016, 1.75, -2.1679688, -0.59277344, -2.5566406, 1.1240234, 1.7714844, 1.8896484, -1.7578125, 0.31103516, 0.4716797, 1.1962891, -1.4003906, -0.8378906, 0.31274414, -0.07867432, 0.2364502, 0.58740234, 0.9291992, -1.4970703, 2.5761719, -2.1113281, 1.2138672, -1.1416016, 0.3095703, 1.8955078, 0.3779297, 0.79003906, 1.3408203, 0.35009766, 3.3964844, 1.8017578, 1.5849609, 1.0839844, -0.7910156, 0.43774414, -0.9379883, -3.4863281, 2.6777344, -0.99853516, -0.7529297, -3.0332031, 0.0871582, 1.0673828, -1.8935547, 0.32104492, 1.6806641, 2.3554688, -1.6103516, 0.5551758, -1.8378906, -0.60253906, -1.5644531, -2.3007812, -0.265625, 2.1679688, 0.30444336, 1.9287109, 2.9375, 0.5600586, -0.49023438, 1.2402344, -2.0683594, 0.8642578, 1.5185547, 3.0898438, 0.20727539, -1.0566406, -0.6425781, 1.9707031, 0.3864746, 2.546875, 0.3791504, 1.2275391, -0.2310791, 0.6645508, 1.0771484, -0.98779297, -0.10809326, -0.12133789, -0.11206055, 1.2138672, 1.1347656, 1.9931641, 0.14819336, 1.7958984, -0.3022461, 0.63720703, -0.80859375, -2.2617188, -1.5820312, -2.1152344, 0.42089844, 0.06317139, -1.0712891, 0.671875, -1.3164062, 0.36767578, 2.9785156, -0.8256836, -2.125, 3.1484375, 1.2119141, 0.08886719, 1.0703125, 0.8095703, 0.47705078, 0.51904297, 1.1435547, 2.0800781, -1.4433594, 1.8320312, 1.6015625, 0.120788574, -0.62109375, -1.5986328, -0.45214844, 0.6801758, -0.3791504, 1.7685547, -1.0429688, 0.35009766, 0.22570801, -2.875, 0.47338867, -1.6230469, -1.3554688, 1.5351562, -0.13012695, 2.6875, 1.5996094, -0.9526367, -0.40063477, 0.8720703, 1.5449219, -0.73535156, 0.5498047, -0.47265625, 1.4921875, -0.65234375, -0.22167969, -2.9882812, -1.5078125, 0.33691406, -3.6210938, -3.4433594, 0.4091797, -2.3925781, -2.4492188, 0.49145508, 1.1591797, 1.2558594, 1.3867188, 1.0361328, -0.09832764, 1.6416016, 0.8154297, -1.9892578, 1.0449219, 4.0039062, -0.75683594, -1.4941406, -1.2509766, -0.15991211, -0.3713379, 2.3457031, -0.66748047, -1.7958984, -0.2841797, 0.5786133, 0.81640625, -0.52001953, -2.2402344, -1.6621094, 0.17883301, -2.4785156, 0.15612793, -1.9833984, 2.7402344, -0.15710449, -0.42236328, -2.1777344, -0.5932617, 0.038513184, -0.05645752, 1.0234375, -0.30810547, 1.9082031, -1.3476562, -0.8066406, -1.2197266, -1.203125, -3.3457031, 0.3046875, -0.8251953, -1.4931641, -1.3847656, -2.4609375, 0.70654297, 1.4765625, 1.1669922, 0.46850586, 0.48754883, -1.1347656, 0.28149414, -0.7602539, 0.6196289, 1.3251953, -0.16992188, -1.5644531, -2.515625, 0.64453125, -1.2861328, -1.0634766, -0.15136719, -1.5253906, -0.057434082, 0.0647583, 1.5244141, 0.7944336, 2.0292969, 0.19897461, 0.8198242, -3.0195312, 0.4165039, 2.2871094, -3.375, -0.28930664, -0.5566406, 0.27954102, -1.0800781, 0.5839844, 3.6132812, 1.9931641, 2.515625, -0.37158203, -0.95214844, 0.64453125, 2.9765625, -1.3671875, -0.7373047, 0.15234375, 1.2294922, -3.0214844, -0.5654297, 1.2431641, -0.44213867, -0.95410156, -1.9443359, 1.7324219, 1.6826172, 2.1933594, -0.6220703, -1.0390625, -0.24291992, -0.7114258, 0.3713379, -1.3623047, -0.40649414, -0.121276855, -1.0556641, 0.93603516, -0.75927734, 0.67871094, 1.6943359, 0.03237915, 0.7973633, 0.69873047, -0.83251953, -0.08569336, -0.71533203, -0.1182251, 0.7363281, -0.6904297, 0.3034668, 0.45410156, 1.5449219, 1.2578125, -1.2304688, 1.2246094, -1.0712891, -1.2998047, -0.76904297, 0.7729492, -0.38989258, -1.3388672, -2.0117188, 2.1347656, -1.6542969, 0.07775879, 0.69677734, 0.58935547, -0.2565918, -2.6289062, -1.3232422, -0.2232666, 1.0605469, -1.6787109, -0.47021484, -0.69091797, 0.8256836, -2.859375, -2.5839844, 1.7353516, 0.26953125, 0.34106445, 1.1943359, -0.6542969, 0.5180664, 1.3535156, 0.6665039, 0.091308594, 3.5976562, -1.3720703, -1.1787109, -2.0898438, -0.10424805, -2.7050781, -0.57177734, 1.078125, 0.76953125, -2.0078125, -0.25073242, 0.04397583, 0.10601807, -0.5415039, 0.45092773, -0.21069336, -1.1875, 0.095947266, 1.921875, 0.22705078, 0.17590332, 1.2128906, 1.8369141, 1.6416016, -2.7539062, 0.359375, 0.5029297, -3.3925781, 2.7617188, -1.4511719, 0.34350586, 1.5927734, -0.88671875, 0.7036133, -0.1116333, 0.3395996, -3.4140625, -1.5410156, 0.06488037, 1.0009766, -0.6542969, -2.2089844, 1.3496094, -0.10205078, 0.1505127, -0.5942383, -2.2871094, -0.53564453, 0.09442139, 0.6855469, 1.1337891, 1.2636719, 1.0029297, 0.5805664, -0.8027344, -1.6621094, 0.33374023, -0.85009766, -0.34765625, -2.7636719, 3.0058594, 0.4807129, 0.13134766, 0.65966797, 2.8144531, 0.4868164, -0.96435547, -0.04272461, -1.1279297, 1.3222656, 0.17089844, -2.0234375, 0.0059547424, -1.4638672, 2.3886719, 0.19641113, -0.032226562, -0.9448242, -0.46020508, 0.5234375, 0.1796875, 0.6308594, 0.21032715, -0.02909851, -1.3427734, 0.59765625, 0.3774414, -1.7246094, 0.2364502, -1.1640625, -0.41967773, 0.59277344, 1.546875, -2.796875, 1.8720703, 1.8164062, -0.88427734, -3.0117188, 1.0605469, 2.4726562, 0.9794922, -0.44458008, -0.7519531, 0.55126953, 1.2470703, 2.9296875, 0.46899414, 0.07720947, 0.17687988, -0.27978516, 0.76220703, 2.5136719, -1.9394531, -0.6152344, 0.4638672, -1.2431641, 2.2011719, 1.0283203, 1.6865234, -2.59375, -0.5258789, -0.24951172, 0.25463867, 2.6523438, -3.1425781, -0.6298828, 0.63134766, 0.13354492, -0.19946289, 1.0439453, 1.1357422, 2.3925781, -0.1694336, -1.7783203, 2.7578125, 3.0019531, -0.075683594, -0.2890625, -0.06298828, -1.9267578, -0.63623047, 0.034301758, 1.2070312, -1.6201172, 1.5849609, 1.9375, 2.0917969, 1.6376953, 1.3085938, -1.2773438, -0.70996094, 0.8833008, 1.7460938, -1.1513672, -0.16894531, -1.2412109, 1.5820312, 0.85595703, -1.4414062, -0.8666992, 0.011779785, 1.1132812, 0.734375, 0.7553711, 0.44726562, -0.80859375, -0.73535156, -0.53027344, -3.7792969, -0.1270752, -0.88720703, 0.98291016, 0.43554688, 0.37646484, -1.5361328, 1.3974609, 0.7338867, 0.9736328, -0.75390625, 1.3095703, -1.3955078, 0.67285156, -0.34692383, -0.35302734, -1.1347656, 1.0800781, -0.46484375, 0.52978516, 0.53222656, 0.64697266, 2.6503906, -1.0078125, -1.5214844, -1.0585938, -1.2558594, -1.6484375, -1.2890625, 2.5117188, -0.7470703, -0.17858887, -0.051574707, 0.7006836, 0.3017578, 2.8964844, 1.7792969, -0.08392334, -1.5878906, -1.7392578, -2.4492188, -3.2246094, 0.0020427704, 0.054992676, -0.79541016, 1.1757812, -1.2226562, -1.0986328, 0.28637695, -0.7583008, 1.0166016, -1.8730469, 1.1855469, -1.1679688, 1.1455078, -0.12347412, 0.40112305, -1.5527344, 0.18481445, 1.3691406, -1.8349609, 0.57714844, -2.9804688, -3.4882812, -0.6640625, -0.44555664, -1.4541016, 0.15734863, -0.4675293, 1.9609375, 2.3300781, 2.1308594, -1.6767578, 0.11956787, -1.7958984, -0.83935547, 0.93359375, -2.359375, 1.5253906, 0.004749298, -0.002790451, 0.5385742, 1.7744141, 0.4753418, -1.3378906, -0.24597168, -0.9765625, 0.89990234, 1.0009766, 0.58496094, 1.8740234, -0.56103516, 0.8149414, 0.3581543, -0.70947266, 1.0205078, -1.5, -2.7011719, 1.2802734, -1.1884766, 0.86816406, 0.5366211, 2.4355469, -1.6523438, 1.1171875, -0.21142578, 2.4355469, -1.8691406, -2.0429688, 1.1064453, -0.032226562, 2.1523438, 3.4433594, -1.109375, -2.0039062, -0.49804688, 1.1503906, 2.9082031, 0.23693848, -1.4619141, 0.87646484, -2.09375, -0.39990234, -0.13769531, 1.9550781, -0.7446289, 0.9819336, 0.18078613, 0.79541016, 2.5527344, -0.7338867, 1.1230469, 1.3037109, 0.95410156, -0.98046875, 0.2644043, 0.16870117, -1.5800781, 0.28442383, 0.024215698, 1.0820312, -0.63427734, -0.81884766, 0.124572754, -3.1503906, 0.17858887, 0.51416016, -2.0117188, -1.2216797, 3.7539062, 0.6767578, -0.48535156, -2.078125, 1.5820312, -1.8798828, 0.11639404, 0.05596924, -1.2441406, -3.1972656, -1.3808594, -2.4433594, -0.9458008, 0.7207031, -3.2597656, -0.22363281, 2.9882812, 0.81884766, -1.1962891, 3.2382812, 1.1572266, 1.2568359, 1.578125, 3.9667969, 0.89990234, -0.2854004, 1.5986328, 2.3183594, 0.56152344, 0.78466797, -1.1328125, -0.27124023, 0.55078125, 0.15490723, 2.6621094, -1.4248047, 0.48486328, 0.10296631, 0.56640625, -0.0287323, 0.4338379, 1.1630859, -1.0771484, 1.2128906, -0.7817383, 0.14013672, -2.5742188, 1.6376953, -0.48608398, -0.092285156, 0.80078125, 0.5366211, -0.13452148, -3.4726562, 1.3037109, 1.1435547, -0.5292969, 2.1210938, -1.1298828, -0.15759277, -0.4038086, -2.0175781, -1.7568359, -0.36865234, -0.6694336, -1.0273438, 1.1416016, 0.41577148, -0.24816895, -0.7109375, 1.9726562, -1.9619141, 0.9042969, 0.07122803, 1.2626953, 1.5234375, -1.7041016, 1.0605469, -0.9277344, 0.1541748, -1.9082031, 1.9326172, -0.2800293, -0.33666992, -0.15332031, -2.1425781, -0.08520508, 0.6533203, 0.9248047, -3.0507812, 0.41455078, -0.4621582, 1.3759766, 0.6582031, 2.0117188, 0.14819336, -0.049591064, 1.1015625, 0.42700195, -0.23950195, 1.5009766, 2.2382812, -0.8432617, -0.93896484, 0.83935547, -0.46142578, -2.3242188, 1.1005859, 1.0146484, -0.2824707, -1.109375, 1.3935547, 0.50927734, 0.38378906, -1.5839844, -0.13500977, 0.08569336, 0.6386719, -0.6147461, -1.6230469, -1.0664062, 0.14160156, 0.50439453, -1.2167969, 0.8833008, -1.1503906, 0.07421875, 0.0597229, -3.2890625, -0.8623047, 1.1308594, 0.37841797, -0.43945312, 1.125, -0.8310547, -0.8769531, -1.0205078, 0.69091797, -2.4414062, -0.14099121, -1.7792969, -1.3388672, -1.5292969, -1.6162109, 0.25024414, 1.3828125, -0.85595703, 0.7504883, 2.25, 0.43945312, 1.9501953, 1.3007812, -2.6035156, 2.8300781, 0.88720703, 0.29760742, -0.5126953, 0.34472656, 1.0341797, 2.0625, -1.0361328, 0.5410156, 1.0458984, 2.9316406, 2.0546875, 1.3300781, -1.1650391, -1.9306641, 0.3317871, -1.0732422, -1.0322266, -0.5541992, 0.110839844, -0.22888184, 3.1328125, 3.6289062, 0.26953125, 2.3691406, -0.15283203, 0.5449219, 1.6513672, -1.1328125, 1.0341797, 0.34960938, 0.059417725, -0.12042236, 2.4765625, 3.3808594, 0.29785156, 0.18225098, 0.30004883, -2.09375, 0.64453125, 0.5830078, -2.2167969, 0.88671875, 2.0429688, 0.17822266, 1.2490234, 0.48266602, -0.09466553, -0.74853516, -0.6386719]}, "B000FDKXN6": {"id": "B000FDKXN6", "original": "Brand: Volcano Grills\nName: Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)\nDescription: \nFeatures: 3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately)\nPortable: Collapses down to 5\", fits in carrying case for easy storage and transportation. Sets up in just seconds.\nVersatile: grill, Dutch oven, wok, bake, roast, fry, fire pit\nUse for camping, tailgating, RV's, emergency preparedness, survival, and prepping\nSafe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber\n", "embedding": [0.2980957, 1.1396484, 2.0527344, -1.0859375, -1.8525391, 0.2980957, 2.1503906, -0.9765625, -1.5820312, 2.8925781, -1.0097656, -0.1439209, -1.7470703, -3.4101562, -0.24023438, 1.9384766, -0.24487305, 1.3144531, 0.15527344, 0.49389648, 1.7158203, 0.050079346, 0.82666016, -0.08508301, 1.6464844, -0.4716797, 4.2851562, -4.296875, 0.010063171, -1.03125, 0.80810547, 0.39233398, 1.2226562, 1.8964844, -3.34375, -0.859375, -2.2773438, 1.1464844, -1.8212891, -0.8959961, -0.33935547, -0.054351807, 3.1484375, -0.2746582, -3.5800781, -3.4160156, 2.2460938, 0.86865234, -0.421875, -0.53027344, 2.7597656, 1.9941406, 0.69140625, 0.55810547, -2.1601562, 2.3769531, -1.671875, -2.3476562, 2.5527344, 0.5698242, -0.04977417, 0.57958984, -2.0292969, 0.328125, -2.7441406, 0.53759766, -0.16687012, 0.8618164, 1.1738281, -1.7988281, 3.2832031, 0.73583984, -0.80322266, 0.21691895, -0.78125, -0.47509766, -2.2089844, 2.0546875, 1.1464844, 0.38452148, -1.1103516, 4, 1.15625, 0.10101318, 0.7036133, 0.62353516, -1.7050781, 0.92333984, 0.34057617, 0.3149414, -1.71875, 1.8388672, -1.0263672, -3.8769531, 1.6650391, 0.15942383, -0.093566895, -0.036102295, -0.37329102, 0.4074707, -0.085876465, 1.4257812, -0.29296875, -2.5917969, -3.0878906, 1.3134766, 2.3027344, 0.26782227, -1.2851562, 0.8208008, -2.9980469, -1.2822266, 1.4785156, 1.6894531, 1.1064453, 1.1962891, -1.4931641, -0.2487793, 3.234375, 0.7060547, 4.2578125, -1.2480469, 1.0214844, -1.5507812, 1.6269531, 1.7011719, -0.6220703, 1.2949219, 3.5253906, -1.0273438, -0.32080078, 0.27954102, 3.3300781, -1.2080078, -2.7753906, -1.9013672, -0.6254883, -2.8964844, -3.109375, -0.25097656, -1.4511719, 0.94189453, 3.1972656, -1.1533203, -3.8300781, -1.9208984, 0.42700195, 2.453125, 0.8251953, -1.9658203, -0.76660156, -2.2519531, -1.5068359, -1.1962891, 1.7216797, -0.12249756, -1.1318359, -1.8378906, 3.1015625, 0.19689941, 0.6777344, -2.1367188, -1.6171875, 1.6669922, 0.42016602, -2.7207031, -0.16674805, 2.046875, -0.55615234, 2.5019531, -1.0205078, -1.8105469, 0.4736328, -0.38378906, 2.2382812, -0.23840332, -0.024978638, 1.7304688, 1.7871094, -0.6586914, -1.1191406, -1.2490234, 1.3095703, 1.8378906, 0.56884766, -1.0400391, 1.2939453, 0.2076416, -1.0419922, -1.5947266, 0.6743164, -0.3076172, -2.015625, -0.2376709, 1.0488281, -2.1367188, -1.3007812, -1.6640625, -0.35009766, 1.4082031, -0.21520996, -0.4020996, -0.38500977, 0.83251953, -2.1054688, -0.71972656, -1.3310547, -0.9003906, -0.41333008, 1.9384766, 1.3251953, -0.16821289, 3.8925781, 1.3144531, -0.8276367, -3.3417969, 1.5585938, 0.65625, 0.49487305, 0.515625, 0.48706055, -1.1308594, -0.6777344, 1.1064453, -0.15478516, 2.6835938, 0.2692871, -0.9946289, -2.5703125, -0.26220703, 2.7773438, -0.1270752, -0.67285156, 0.7246094, 0.11755371, 3.671875, 1.8525391, -0.33081055, -0.9003906, 0.34960938, -0.30932617, -0.35424805, 0.4975586, 0.34814453, -2.0859375, 0.023101807, 0.10095215, 2.1464844, 3.0390625, -0.13024902, -1.5410156, -0.1541748, -0.81689453, 0.5209961, 0.6826172, 0.91552734, -0.12573242, 1.3066406, -0.25756836, -0.90185547, 1.3984375, 2.8007812, -1.0625, 0.2175293, 0.033721924, -1.8603516, 1.0058594, 1.2568359, -2.9453125, 0.35083008, 1.3876953, 2.3027344, 2.3378906, 0.38012695, 2.15625, -0.15441895, -0.5546875, 0.75390625, 1.0566406, 2.9023438, -0.2043457, -0.040863037, 2.2519531, -3.265625, -0.17028809, -0.67626953, 1.0742188, -1.1210938, -0.3803711, 1.4082031, 5.4296875, 0.43725586, -2.6015625, 3.6640625, -3.1347656, 1.5878906, 0.26464844, -0.32641602, 0.6621094, 2.2851562, 1.1533203, -1.0107422, -1.0498047, 1.140625, -3.5, -0.98828125, 2.0253906, -3.890625, 0.4350586, 0.46313477, -1.7431641, -1.8388672, 0.4411621, 0.49804688, -1.2724609, 0.20202637, 1.9238281, -1.7841797, 2.1992188, 2.046875, 1.2988281, 1.3398438, -1.4658203, -2.0605469, -0.8041992, 1.4824219, -1.5400391, 2.1972656, 0.080322266, -1.5166016, -0.6254883, -1.5615234, 1.0234375, -2.2792969, -1.0605469, -0.7348633, 0.5131836, -2.6113281, 2.6484375, -0.3166504, -0.08459473, 0.40942383, -2.4257812, 0.39746094, -1.9697266, -2.78125, -0.07659912, 0.002916336, -1.0712891, -0.04525757, 0.56884766, 1.6552734, 0.74365234, -4.0195312, -1.7666016, 0.008781433, -0.7084961, -1.4375, -2.4023438, 0.73095703, -1.4082031, -0.18737793, -0.40844727, 0.0032024384, 0.10449219, -1.4121094, 0.0036334991, -1.8359375, 1.1621094, -0.06726074, 0.6074219, 0.3425293, 0.86865234, -1.8828125, -2.515625, 0.4958496, -0.19042969, 4.78125, -1.1533203, 1.0849609, -0.359375, -2.4707031, 0.05130005, -1.1484375, -2.3828125, -1.3808594, -0.70947266, -2.4414062, -2.3964844, -3.1289062, -0.97558594, -1.1513672, 0.11151123, -0.70947266, 1.7050781, -1.1660156, -0.13134766, -1.8896484, 1.7978516, -0.9038086, -0.6582031, 0.92822266, -0.19824219, -1.3554688, -0.59472656, -0.18139648, 0.14868164, -1.34375, 2.1308594, 0.7368164, 1.2128906, 1.5439453, 0.80078125, 0.5283203, 1.6445312, -2.9179688, 1.7304688, 1.7441406, -0.55859375, 2.4863281, -0.80322266, 0.93603516, -2.6523438, -1.4970703, 2.2167969, 1.28125, 1.8808594, -0.96972656, -0.55810547, 0.85253906, 0.11730957, -0.9638672, -0.25146484, 1.2167969, 3.0566406, -3.0878906, -1.0097656, 0.6826172, 2.1738281, -3.2929688, -0.039367676, 1.2421875, 0.070495605, 1.25, 1.4111328, 1.7460938, 0.66064453, -0.018798828, -0.93847656, 1.9482422, 0.72802734, -1.6152344, -1.6777344, -0.8203125, 0.4633789, 0.38720703, -1.0146484, 0.64941406, 1.0664062, 3.3847656, 0.21911621, -2.0117188, 1.1308594, -0.3371582, 1.2666016, 1.4580078, 3.6914062, -0.46166992, 0.6455078, -1.3759766, 1.2167969, 1.7197266, 0.2088623, 1.2988281, 0.7504883, -0.39135742, -0.79589844, 0.35473633, 1.7636719, 0.054351807, -0.9824219, 2.0703125, -2.6660156, -0.51416016, 0.8564453, -0.8989258, -2.0585938, -1.8759766, 2.1503906, 0.23400879, -0.76904297, -0.5913086, 1.7324219, -0.75634766, -2.3867188, -1.3681641, 0.21203613, -0.8491211, 2.4804688, 0.8701172, -1.6259766, 1.2226562, -3.6972656, 0.06585693, 2.0097656, 1.5507812, 0.9038086, 0.9453125, 0.00089120865, -0.0803833, 0.46826172, 1.8466797, -1.0400391, -1.8457031, -0.16577148, -3.234375, -1.4765625, -0.2512207, -1.8769531, 0.1730957, 2.9433594, 1.3701172, 1.7851562, -0.8823242, 3.2324219, -1.1826172, -0.9951172, 1.4306641, -2.125, -0.077941895, -3.1621094, -4.1835938, 0.94140625, 0.090270996, -0.6503906, 4.0078125, -0.66552734, -1.5195312, -0.45117188, 0.7290039, -3.2109375, -0.44018555, -1.3398438, 2.0878906, -2.5566406, 0.47851562, 0.6586914, 0.5698242, -3.4042969, -1.4511719, 0.06536865, 0.29345703, 1.75, 1.4248047, -2.2617188, -0.79785156, -1.1933594, 0.7861328, -1.8935547, 0.51464844, 0.5703125, 0.4338379, 0.14025879, -1.6054688, 1.4443359, 1.1279297, -0.6484375, 2.2246094, 1.7607422, 0.5727539, 0.4572754, 0.058898926, 1.2988281, 2.5390625, -0.03967285, -1.2265625, -2.7109375, -0.70751953, -1.4443359, -0.9868164, 0.9663086, 1.6845703, -2.9296875, 1.5556641, -0.42529297, 1.3916016, 2.59375, -0.0024433136, -2.6523438, 0.96875, 0.72314453, -0.7949219, -1.9277344, 1.5478516, -0.26831055, -3.1796875, 0.23962402, -0.2619629, 0.13708496, 0.1842041, -0.64453125, 0.68408203, 0.63964844, 0.44970703, 1.6640625, 1.6875, 0.16674805, -2.1425781, -0.12976074, -1.8720703, -0.45532227, 0.4580078, 0.6879883, 1.3984375, 1.0332031, 0.87841797, -1.6503906, 0.1194458, -0.82421875, 0.32006836, -1.0566406, -0.97802734, 0.3293457, -2.6933594, -0.39404297, -1.1933594, -2.0195312, 2.3105469, -0.28686523, -0.61279297, -0.8413086, 1.2089844, -0.25463867, 0.36035156, -1.2109375, 2.1132812, 1.3056641, 0.34301758, 1.6582031, 1.0283203, 1.4785156, 0.7089844, 2.4257812, -0.25830078, 1.1943359, 0.296875, -0.34936523, -1.0820312, 0.13781738, 0.8334961, 1.6162109, 0.9863281, 2.8847656, 0.6694336, -1.5654297, 1.9375, -0.6152344, -2.6347656, -0.24353027, -1.2148438, -2.7070312, 2.4570312, 0.38964844, -2.6035156, 0.60302734, 2.2382812, -1.7841797, 2.765625, -1.4287109, -0.77001953, -0.38549805, -2.1425781, -0.5029297, -1.3759766, -1.3242188, 1.6513672, -1.5009766, -0.3696289, -1.6669922, 1.3535156, 2.5820312, -0.4020996, 0.07928467, 2.0976562, -1.9394531, 0.4020996, -0.3876953, -1.3955078, -2.3710938, 0.765625, 2.1289062, 0.5620117, 2.2617188, -0.066101074, 0.55859375, -2.15625, -2.1269531, -2.6835938, 1.7666016, -2.6875, -1.0917969, 0.578125, -1.0742188, 0.7104492, -0.6801758, -1.2958984, -0.4658203, 2.8164062, 0.9760742, -0.23254395, 0.05670166, 0.9243164, -2.6484375, -3.7539062, -1.7011719, 0.49047852, 0.265625, -0.8457031, 1.6171875, -1.6035156, -2.4882812, 1.9042969, -0.2956543, -1.6230469, -0.33325195, -0.105773926, 0.61035156, -2.5019531, 0.1772461, -0.17407227, 2.1796875, 3.1582031, 0.7753906, -0.9291992, -3.5800781, -0.6870117, 0.3798828, -2.4980469, 0.43310547, -0.10614014, 1.234375, 0.107299805, 2.7832031, 0.63720703, -1.0488281, 2.65625, -2.6425781, 0.23364258, -0.44799805, -2.375, 1.6435547, 0.5078125, -2.1054688, 1.3896484, -1.2314453, 1.3076172, -0.34692383, 0.9165039, -1.1464844, 1.3046875, 0.32250977, -1.3212891, 1.4189453, 2.8085938, -0.296875, 0.48828125, -0.04647827, -0.5175781, -3.8027344, -3.3007812, -0.43481445, -1.71875, -0.8310547, -0.65625, -0.10333252, 0.47705078, 0.6152344, 0.25976562, 1.2001953, 0.19262695, -0.47436523, 0.2298584, 0.12963867, 3.3613281, 2.4570312, -1.6669922, -2.9746094, -2.9042969, 0.25830078, -0.11810303, 0.14916992, -0.6381836, 1.6201172, -1.7021484, -0.6699219, 0.9086914, 3.0351562, 1.859375, 0.03265381, -2.234375, 1.8554688, 2.9042969, -1.9589844, 0.77685547, 1.2832031, 1.9873047, -1.3349609, 1.6826172, -0.7685547, -1.5244141, 2.5019531, -1.7373047, 0.99365234, -1.1152344, -1.9941406, 2.2929688, 0.37695312, -1.2470703, -3.28125, -0.75390625, -1.203125, 1.3964844, 0.47583008, -0.00033211708, 0.31201172, 0.92578125, -1.0712891, 2.7441406, 1.3984375, 1.4804688, -1.6679688, 0.9628906, -0.8613281, 0.62109375, 2.3710938, -0.34692383, 1.7304688, 0.5498047, -1.2314453, 0.27026367, 2.6582031, 1.7880859, 3.0390625, 1.3027344, 2.578125, 1.2802734, 1.4394531, 1.2919922, -0.50634766, 1.1074219, 1.5175781, -0.58447266, 1.3945312, 0.3955078, 2.1191406, -0.88671875, -1.5546875, 0.8666992, 0.46142578, 0.8129883, -0.7480469, -0.06756592, 0.890625, -5.5585938, 2.6152344, -0.124938965, -0.28271484, -1.546875, 1.1425781, -0.3955078, 0.4897461, 0.88720703, -0.33496094, 0.9189453, -1.0078125, 0.79785156, 0.036193848, 0.04269409, -0.5498047, -2.5703125, -0.44750977, 0.2668457, -2.2207031, -1.9726562, 1.8964844, 0.70751953, 0.9711914, -0.17883301, 1.9863281, 2.2246094, 0.03414917, 1.1318359, -0.1427002, -0.36376953, -0.18701172, 2.4160156, 1.0185547, -0.17883301, 1.3476562, -0.7607422, -3.9316406, -3.1894531, 2.1992188, -0.69384766, 2.1054688, -0.8305664, -2.0175781, 2.46875, 1.8046875, 0.9951172, -1.3310547, 1.8222656, 0.35595703, -2.2480469, -1.7978516, -0.29467773, 1.4414062, 2.6015625, 1.4423828, -0.5732422, 2.2246094, 0.03213501, 2.9433594, 0.9316406, 1.3818359, -0.120666504, -1.1396484, 0.08685303, 0.99316406, 0.91064453, -0.6665039, -1.6230469, 2.2167969, 1.1630859, 0.93310547, -0.029815674, -1.703125, 0.5761719, 0.38720703, -2.1367188, -0.92578125, -1.1054688, -1.5673828, -0.21264648, -0.17150879, 0.7519531, -0.37304688, 0.5830078, 0.8925781, -1.4277344, 0.92333984, -0.028640747, 0.14233398, 1.4033203, 0.78271484, -0.3371582, -1.5546875, -0.7211914, 0.28833008, 0.26879883, -0.80126953, 0.94384766, 0.9794922, 1.5537109, 0.6010742, 1.1689453, 0.09631348, -1.6582031, -0.6879883, 1.5957031, -2.1210938, -0.90185547, -0.09716797, 0.9091797, -0.087524414, 3.3847656, 0.7636719, -0.8852539, -0.35351562, -1.6650391, -0.6591797, -0.87353516, -0.42407227, 1.1494141, 3.484375, 0.7089844, 1.1533203, -2.8554688, -3.1035156, -1.6542969, -1.7939453, 2.9394531, 0.6220703, -0.9794922, 1.2900391, -2.8476562, 1.6259766, -0.0003414154, -0.021850586, 1.2529297, -1.0449219, 0.875, 0.38720703, 1.0273438, 0.45996094, 1.2705078, -0.15893555, 2.8027344, -0.11987305, 1.3417969, 2.0058594, 0.3161621, 1.8964844, -2.2871094, -0.5180664, -1.4560547, 0.83691406, -0.39916992, -0.47607422, 1.7841797, -1.3339844, -0.2854004, -2.65625, -2.265625]}, "B00LP57K7A": {"id": "B00LP57K7A", "original": "Brand: Napoleon\nName: Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel\nDescription: \nFeatures: This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues\n7 burner grill with up to 86,000 BTUs\nTotal cooking area: 1000 sq. In\nDual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off\n9.5 Mm stainless steel wave cooking grids\n", "embedding": [-2.4042969, -0.18737793, 2.9707031, 1.6582031, 0.2631836, 0.15185547, 0.10070801, -0.76708984, 0.40527344, 1.1074219, 2.4492188, -0.49951172, -0.4645996, -0.6196289, 0.91748047, -0.13256836, 2.2792969, 1.3466797, 0.62646484, 0.68603516, 0.4934082, 0.49023438, 1.9277344, -0.9140625, -1.1035156, 0.73339844, 3.2988281, -2.6992188, -0.60839844, -2.9667969, 0.93896484, -0.11236572, 0.80029297, 0.07543945, -3.4746094, -1.6357422, -1.5351562, 2.359375, -3.4277344, 0.7607422, -0.2163086, -0.92089844, 0.98828125, -0.3635254, -1.9091797, -0.5498047, -0.7680664, 1.5576172, -3.1210938, -1.3876953, 1.3330078, 1.2412109, -0.7963867, 0.22216797, -1.3291016, 0.6899414, 2.7695312, -0.55078125, -0.81103516, -0.23364258, 0.8388672, 0.4814453, -1.2285156, -0.46020508, -1.6953125, 1.1943359, -0.23864746, -0.010421753, 0.32470703, 1.0234375, 0.6479492, 1.5292969, -1.0927734, 0.38598633, -2.2851562, -2.8769531, -2.5371094, 1.5048828, 0.21691895, -0.26708984, -1.4541016, 2.2363281, 2.046875, -2.7382812, -0.40722656, 1.4208984, -1.8476562, -1.7294922, -0.12805176, 0.34716797, -0.4716797, 1.1787109, -1.6396484, -2.2929688, 2.7851562, -0.4765625, 0.24108887, 2.1074219, 0.34570312, 1.7226562, 0.16345215, -0.1352539, -0.32250977, -1.9394531, -2.2226562, -2.953125, 3.3183594, 0.9345703, -4.0546875, -0.3112793, -0.9423828, -0.4477539, 3.3515625, 1.2080078, 1.9560547, 1.3173828, 2.2753906, 2.9238281, -0.15637207, 2.2460938, 2.4121094, -1.7802734, 1.0517578, 0.7192383, 0.67041016, 0.4897461, -3.5292969, 1.7216797, 4.1171875, 0.16894531, 0.92089844, -1.9931641, 3.4277344, 0.7207031, -0.703125, -2.0976562, -0.75439453, -1.296875, -3.5761719, 1.8847656, -0.6801758, 1.2978516, -0.5102539, -0.21203613, -3.2695312, 0.7260742, -0.5541992, -0.30566406, -0.4897461, -1.5458984, 0.2932129, -1.3066406, 1.8222656, -3.1386719, 0.7963867, -1.3681641, -0.9638672, -1.1103516, 3.4316406, 1.8935547, 2.3613281, -1.8525391, -2.9179688, 2.1074219, -0.1274414, -3.6699219, -0.9770508, 1.8564453, 1.5517578, 1.9785156, -0.3486328, -2.9121094, -0.3540039, 0.4675293, 0.7036133, 0.0390625, -0.16308594, 1.6875, 0.21813965, -2.4824219, -1.1123047, -1.7255859, 1.3886719, -0.5683594, -1.0625, -0.5185547, 1.9306641, 1.34375, 1.5537109, -2.2558594, 0.50146484, -0.37426758, -0.20239258, 0.98779297, -0.7709961, -2.4121094, -0.3713379, -1.1572266, 2.4960938, -0.68310547, -0.38867188, -0.5703125, 1.3046875, 0.21154785, -2.2929688, -3.3378906, -2.0292969, -1.8125, -0.43896484, 1.6943359, 3.0742188, -1.2470703, 1.3955078, -2.3046875, 0.30371094, -1.1865234, 2.2460938, 0.28881836, 0.41845703, 3.9121094, -0.15527344, 0.3881836, 0.29345703, 1.8867188, 0.32836914, 2.2519531, 0.7885742, 1.8916016, -2.8144531, -1.1513672, 2.96875, 0.48632812, -0.64697266, 0.9736328, 0.44726562, 2.5332031, 0.62109375, -2.5429688, -0.6088867, 0.39086914, -1.2314453, -2.2597656, -2.1757812, -1.1865234, -0.58251953, 0.94873047, -3.0722656, 1.0644531, 2.6816406, 2.1640625, -0.7265625, -0.08239746, 1.1015625, 0.21374512, -1.2314453, 0.41455078, 0.23962402, 1.7607422, -1.7441406, -2.3476562, 1.3828125, 0.7519531, -1.0966797, -0.092041016, 0.8129883, -1.6816406, 4.0742188, -0.83203125, -2.6132812, -1.5009766, -0.5571289, -0.47070312, 2.9550781, -0.5761719, 0.98046875, 0.35986328, -3.4023438, 4.4257812, 0.13708496, 2.640625, -0.4091797, 0.5283203, 2.84375, -2.9902344, -2.109375, 2.296875, 0.5253906, 0.5996094, -1.7480469, 0.49414062, 5.9257812, -1.1787109, -1.8125, 1.8720703, 0.06945801, -0.017669678, 2.8222656, -0.076049805, -0.46679688, -2.2382812, 2.2558594, 1.8125, 1.9257812, 1.1875, 0.83984375, -1.9003906, -0.36743164, -1.2275391, -0.3623047, -1.9238281, 0.056640625, -0.10736084, -1.7119141, 1.6005859, -0.22436523, -0.19628906, 0.4050293, -2.5722656, 2.0566406, 0.20458984, 0.79296875, 1.9931641, -1.2333984, -0.1616211, 0.1472168, 0.87890625, -0.5234375, 1.5, -0.7055664, -0.30737305, 0.6147461, -0.8154297, 1.0605469, -2.6171875, -2.7128906, 0.42749023, -3.4921875, -1.2792969, -1.4433594, -2.3164062, -1.5800781, 1.8144531, -3.5097656, 0.41870117, -1.671875, -3.8515625, -1.9570312, -1.4570312, -0.7636719, 1.015625, 2.0585938, 0.6152344, 0.32666016, -2.7246094, -0.2878418, -0.9248047, -1.6689453, 1.4316406, 0.046325684, -0.17553711, -2.0234375, 0.6982422, -0.7426758, 0.85546875, 0.38476562, -2.5351562, -0.46728516, -2.6699219, 0.07543945, -2.96875, 0.97265625, -1.6083984, 1.9667969, -2.8203125, -1.5498047, -2.2910156, -0.9741211, 2.5664062, 0.23449707, 1.4951172, 0.4699707, -1.2226562, 2.0332031, -1.8417969, -1.1669922, -1.2695312, 1.0849609, -1.9804688, -0.9609375, -3.0097656, 0.24694824, 0.08258057, -0.8564453, -2.0546875, 0.7285156, -2.6972656, 2.6445312, -1.1650391, 0.15209961, -0.31860352, 0.5048828, -0.88720703, -0.29248047, -2.6171875, -0.7631836, 0.00969696, -0.8510742, -0.07092285, 0.34301758, 0.018814087, 1.5126953, 1.1464844, -0.17248535, -0.26708984, -0.12683105, -4.1171875, 1.1113281, 0.04147339, -3.0332031, 2.0019531, -2.125, -0.20532227, -2.0117188, -0.18432617, 2.3046875, 1.90625, 1.9472656, 1.3046875, -0.28808594, 1.2607422, -0.0045700073, -0.23498535, -1.5507812, 0.45385742, 2.046875, -0.34692383, -0.35009766, -1.0527344, 2.1933594, -1.5429688, -0.9086914, 3.0878906, 1.6103516, 2.7988281, 1.3232422, -1.1914062, 0.7441406, -1.1064453, 2.2578125, -0.13378906, -0.056793213, -1.0683594, -1.2802734, 1.6591797, -0.2763672, 1.8330078, 3.0722656, 0.41357422, 1.5429688, -1.5605469, -0.06689453, -0.5913086, 0.24401855, 0.15905762, 3.1992188, 0.3630371, 3.4511719, -0.049743652, 1.3867188, -0.17565918, 1.4179688, 1.7060547, -2.1171875, -0.5283203, 1.6650391, -0.37304688, 0.59228516, -1.1464844, 0.3503418, 0.56689453, 0.9501953, 1.3017578, 0.27783203, 0.69921875, 0.9975586, 1.0341797, -1.2060547, -1.0107422, 0.69384766, -1.6621094, -2.6796875, -0.54833984, 2.6054688, 0.8100586, -1.5185547, 0.3581543, -0.9003906, -0.37182617, 2.0644531, -0.95751953, 0.10803223, 1.8505859, -0.86572266, 1.3720703, 1.0126953, -1.5722656, 0.21606445, -1.1005859, 0.74365234, -0.31884766, -0.28271484, 1.9892578, 1.4511719, -3.3085938, 0.38989258, -3.4257812, 0.22570801, -1.6757812, -2.6445312, -2.6367188, 2.2890625, 2.4101562, 1.3886719, -0.11450195, 1.9287109, -0.21813965, -1.5478516, 1.2851562, -3.6425781, 1.4072266, -2.9433594, -3.3085938, 2.1777344, -1.2021484, -0.26733398, -0.38232422, 0.15820312, -1.4521484, 2.0996094, -0.021835327, -3.484375, -0.7128906, -0.30737305, 0.5625, 0.21960449, -1.7978516, -0.2541504, 0.18322754, -1.9179688, -2.1523438, -1.4824219, -0.2902832, 1.5195312, 2.390625, -2.7792969, 1.2226562, -1.7792969, 1.3730469, 0.8388672, -0.47558594, 0.61328125, -1.7148438, -0.21618652, -3.4277344, 1.0732422, 1.2197266, 0.30639648, 0.49780273, -0.035003662, 0.16088867, -0.63720703, 0.77978516, 0.6401367, 3.7480469, -0.2536621, -1.9130859, -2.4375, 0.92822266, 1.0908203, -2.3984375, -0.3334961, -1.3779297, -1.2939453, 0.032104492, 1.2207031, 1.8417969, 1.125, 0.47558594, -2.1699219, -1.2011719, 2.1191406, -3.0253906, -0.4248047, -0.12420654, -0.53027344, 1.2939453, 0.27929688, -1.6611328, -0.7861328, -3.4902344, -1.5488281, -3.3613281, 3.1445312, 3.2910156, 2.8730469, 0.3737793, -0.042022705, -0.2130127, -0.9448242, 0.9638672, -0.3984375, 2.6386719, -0.8491211, -1.6601562, 1.4873047, 2.3339844, -1.4736328, -1.1240234, 2.9140625, -1.2285156, -0.89941406, -2.0039062, 0.22485352, -2.9433594, -1.1142578, 0.18286133, -1.1318359, 2.4394531, -0.0803833, -0.86083984, -1.0048828, 1.0449219, 0.11633301, 0.39501953, 0.07244873, 0.61376953, 1.5087891, 3.2597656, 0.8432617, 0.48413086, 0.8588867, -0.6557617, 2.953125, -1.0039062, 1.2373047, 0.22937012, 0.40014648, -1.4345703, -2.1445312, 1.7773438, 2.2246094, 0.03164673, 4.3007812, 1.7529297, -3.9355469, 2.0722656, -0.062347412, -3.5292969, 0.39111328, 1.4492188, -0.21447754, 0.44018555, 1.7568359, -4.1132812, -0.5161133, 2.2792969, -1.3583984, 0.40112305, 0.05267334, -1.2197266, -0.070617676, -1.7919922, -0.49023438, -0.8466797, 1.1582031, -0.3256836, 0.53759766, 0.5053711, -0.93066406, -0.28198242, 1.9570312, 0.11340332, -0.9770508, 4.296875, 1.2636719, 0.48754883, -0.5019531, 0.2705078, 1.3085938, 2.1777344, 2.2695312, 0.7133789, 2.6308594, -0.93359375, 0.78271484, -2.3613281, -0.46020508, -0.7910156, 4.078125, -1.1318359, -2.2070312, 0.3671875, -0.8911133, -0.27416992, -1.9589844, 0.9848633, -0.12445068, 1.6708984, 1.1523438, -0.9350586, -0.6123047, -1.0576172, -1.90625, -2.8691406, -1.8261719, 2.2070312, 1.7080078, 0.6411133, -0.18811035, -1.3203125, 0.60009766, -0.15429688, -0.02218628, -3.7734375, 0.29101562, -0.10681152, -0.73291016, -0.14770508, 1.3623047, -1.2324219, -0.76660156, 1.3417969, -0.4182129, 2.2773438, -4.1367188, -2.171875, 1.7539062, -1.5830078, -0.171875, 2.2871094, -0.28857422, -1.6162109, 1.8046875, -0.453125, -1.6337891, 2.7011719, -2.5390625, -0.96191406, 2.6152344, 0.66845703, -0.32470703, 0.32861328, -1.0263672, 1.9287109, -1.1201172, 0.3400879, -0.57128906, -0.070617676, -0.41308594, 0.140625, -0.97265625, -1.4560547, 0.953125, -1.6738281, 2.5546875, 1.6660156, -1.0039062, -2.6640625, -1.5302734, -2.4453125, 0.33422852, -2.2714844, -0.24938965, -2.6367188, 1.6591797, 0.48535156, 0.7158203, 0.0007548332, 1.7753906, -0.22851562, -1.3759766, 1.4394531, -2.2480469, 1.6962891, 1.84375, -0.93603516, -1.0136719, -2.1640625, 0.18591309, 1.4746094, 0.5527344, -0.95410156, 0.07055664, 0.77246094, 0.3010254, -0.21740723, 0.4243164, 1.5976562, -0.6870117, -2.0292969, 0.12158203, 3.2285156, 0.05444336, 1.8212891, 0.5600586, 0.35473633, -0.4609375, 4.8125, 1.2451172, -2.0585938, 1.9589844, -2.1425781, 0.9067383, 1.2255859, -0.4819336, -1.2011719, -1.4423828, -0.32885742, -1.9091797, -0.95214844, -4.0625, 0.43066406, -0.72802734, -1.0126953, 0.3112793, 2.5664062, 0.81396484, 2.1542969, 1.2197266, 0.92285156, 1.6044922, 2.3945312, 0.5317383, 1.1220703, 2.140625, -2.4550781, 0.14172363, 1.1738281, 0.0206604, -0.6699219, 1.5908203, 1.2050781, 2.8457031, -0.6303711, 1.2324219, 4.7578125, 1.109375, 1.2353516, 0.19714355, 1.1191406, 2.109375, 0.19213867, -0.9501953, 1.2666016, 0.6669922, -0.020141602, 1.1269531, 2.1289062, -2.2792969, -1.8525391, -1.3964844, -0.13134766, 0.6694336, -0.9868164, 2.3730469, 0.0065231323, 0.64990234, -2.4902344, -1.6445312, -2.6582031, 0.14782715, -0.03012085, -1.6142578, 1.6962891, 0.010635376, 1.8994141, 0.16271973, -0.22961426, 1.4160156, -3.8261719, 0.0209198, -1.2617188, -0.86035156, 0.63671875, -0.54003906, 0.06567383, 0.16027832, 1.2255859, 0.76708984, 3.4023438, 1.6435547, 0.98339844, -2.4550781, 0.38354492, 1.1132812, 4.2421875, -0.3828125, 1.2070312, 3.6347656, 0.12133789, -3.765625, -4.4492188, 2.4648438, -0.22192383, 1.5322266, 3.5722656, -2.4042969, 2.6835938, 0.056152344, 1.1845703, -2.6875, 1.2246094, 1.203125, -2.5488281, -0.8857422, 1.4023438, -0.3425293, 0.69873047, 1.6474609, -1.2509766, 2.4277344, -1.3183594, 3.015625, 0.4321289, 1.8886719, 0.72314453, 0.76220703, -0.2536621, 2.5371094, 1.4101562, -0.78808594, -1.0712891, 1.3232422, 1.59375, 0.44628906, 0.15563965, 0.2890625, -1.3828125, -1.5078125, -0.1763916, -0.18774414, -0.6855469, -0.4387207, -0.84375, 1.0078125, -2.4179688, -1.6542969, 4.4921875, 1.2421875, -1.1289062, -0.27807617, 2.6835938, -1.7138672, 1.7333984, -0.14941406, -0.3671875, -0.30932617, 0.25561523, 1.9804688, 1.6044922, -0.99121094, -0.8442383, 0.81884766, 2.0039062, -0.93066406, 0.8017578, 0.5410156, -1.4980469, -0.1505127, 1.9560547, -1.7841797, -1.1933594, 2.8964844, -0.15686035, -0.72216797, 1.8583984, -0.9345703, 0.0107803345, -1.0498047, -1.3310547, 0.2841797, -0.32226562, -1.8886719, -0.3894043, 3.0976562, 0.5644531, 1.9023438, -2.546875, -3.5859375, -1.8134766, -2.4707031, 1.6103516, -1.0507812, -1.2480469, 0.30151367, 0.734375, 2.7988281, -1.1005859, -2.421875, -0.24914551, 1.0263672, 0.4423828, 0.03387451, 2.7441406, 0.95214844, 0.49169922, 0.03289795, 0.60498047, 1.0458984, -0.89941406, 1.2080078, 2.1445312, -0.14147949, -2.5292969, 1.2167969, -1.6152344, -0.0010843277, 0.18310547, 0.5444336, 0.63720703, -0.27539062, -0.099487305, 0.296875, -1.9560547]}, "B07GC2F1YW": {"id": "B07GC2F1YW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "embedding": [-1.3007812, 0.42211914, 0.9658203, -0.6425781, 1.3857422, 1.4755859, 1.3525391, 0.2578125, -2.2578125, 1.1962891, 2.3535156, 0.9008789, -0.82470703, -1.6728516, 0.4025879, 0.34326172, 0.5136719, 1.2734375, 0.4951172, -0.13317871, 0.70654297, 1.6806641, -0.90185547, -2.8125, 2.0859375, 0.83691406, 4.1875, -2.0390625, -0.06842041, -1.1699219, 0.60498047, 0.061828613, -0.10241699, 1.5263672, -2.8183594, 0.2722168, 0.6230469, 0.56396484, 0.36157227, -0.6694336, -1.3554688, -0.75927734, 0.8222656, 2.1953125, -3.0351562, -1.71875, 0.31201172, 2.3300781, -0.039642334, -0.85839844, 1.3955078, 1.9824219, -1.4121094, 1.2832031, -1.1884766, 2.25, 0.16394043, -2.4882812, 0.67285156, 0.21154785, 1.2832031, -0.65234375, -1.6845703, 0.57421875, -2.4453125, -1.1416016, 1.0693359, -0.18688965, 0.40307617, -1.6279297, 2.1855469, 1.0322266, -0.5078125, 0.95654297, -1.390625, -0.2175293, -2.9414062, 1.453125, -0.32177734, -1.1445312, -1.3671875, 1.6865234, 0.10687256, -0.20739746, -0.0362854, -0.5415039, -0.9892578, 1.7480469, 1.4033203, -0.32299805, 1.4560547, -1.6005859, -0.65771484, -4.2109375, 2.1191406, -0.6542969, -0.6279297, 0.8886719, -0.0067253113, 1.4042969, 1.0175781, 0.4116211, -0.4675293, -1.3242188, -2.2734375, -0.4892578, 1.9931641, 1.5449219, -1.3261719, -1.1416016, -1.1230469, 1.3183594, 1.6289062, 0.3112793, 1.6962891, -1.6464844, 0.6816406, 1.3359375, 0.9321289, 2.2714844, 2.6796875, 0.04800415, -0.17248535, -0.8227539, -0.38549805, 0.051818848, 0.73583984, 0.42163086, 4.9257812, -1.5888672, -0.63427734, -0.4633789, 1.2158203, -0.9614258, -0.17285156, -1.7080078, -1.8769531, -0.17370605, -2.328125, -0.40673828, -0.94921875, 2.2089844, 1.4882812, 0.203125, -3.2675781, -0.19921875, 0.9819336, 1.109375, -0.1303711, -3.2753906, 0.5859375, -0.62841797, -0.5996094, -2.2519531, -0.4501953, -0.42578125, -1.0039062, -0.9638672, 0.14611816, -0.65966797, 0.5136719, -0.96728516, -1.0410156, 1.0634766, -1.796875, -1.7353516, 0.90234375, 1.8681641, -0.47338867, 2.203125, 0.5703125, -0.010002136, -0.006538391, -1.3164062, 1.5654297, -1.3583984, -0.22131348, 3.3359375, 1.2802734, -1.4199219, -0.6738281, 0.1928711, -0.04940796, -0.55322266, 0.6074219, -0.84277344, 1.1015625, 2.3769531, 1.6210938, -2.4550781, 2.2871094, 1.9472656, 1.4873047, 1.1455078, 0.33569336, -1.3232422, 0.033111572, -2.1074219, 1.2431641, -1.3876953, 0.13232422, 1.2529297, -1.8847656, -0.4855957, -1.2382812, -1.0039062, 0.038085938, -1.1240234, 2.2480469, 1.8027344, 2.7871094, -1.2177734, -0.44458008, -0.21411133, 1.4023438, -2.4863281, 3.6269531, -1.7236328, 1.7929688, 1.3632812, -0.49902344, -0.18640137, 0.4868164, 3.7832031, -0.5395508, 0.28076172, 0.70751953, 0.64453125, -0.671875, -0.22424316, 1.4335938, 0.6611328, -1.0429688, -0.64404297, -0.08947754, 0.9316406, 1.8261719, 1.0888672, 0.30517578, -0.55029297, 0.61621094, 0.37597656, -0.9033203, -0.24658203, -1.7080078, 0.17980957, -3.6503906, 1.7080078, 0.8129883, -1.5673828, -1.0292969, 1.9824219, 3.6152344, 0.6333008, -2.4472656, 0.42700195, -0.2944336, 0.07458496, -1.4160156, -0.7685547, 2.8691406, -1.3662109, 2.7304688, 0.37060547, 1.8388672, -0.9458008, 4.078125, 1.171875, 0.123291016, -1.3632812, -0.35424805, 0.08795166, 1.9423828, 0.03881836, 2.9550781, 2.453125, -1.3388672, 0.98291016, 1.2158203, -0.53125, 0.6279297, 0.78027344, 2.296875, -2.1855469, -0.6508789, -1.0195312, -1.875, -1.6923828, -1.0058594, 0.0035648346, 4.6523438, -0.28710938, -3.5214844, 1.2353516, -1.4082031, 0.8886719, -0.7373047, -1.8339844, -0.49829102, 0.9926758, 0.99902344, 1.1181641, 0.113464355, 0.24389648, -1.7548828, -1.0195312, 0.8330078, -0.43164062, -0.14355469, 2.0683594, -0.9614258, 0.3876953, -3.0292969, -1.0478516, -3.0566406, 0.33935547, 1.9638672, -2.4179688, 0.4609375, -0.13745117, 1.4736328, 1.7304688, -0.052520752, -1.0966797, -1.8769531, 1.6259766, -0.7734375, 0.5175781, -0.75, -2.9589844, -0.21887207, -0.9765625, -0.0463562, -1.1943359, -1.7050781, -1.3574219, -2.1699219, -3.0859375, -2.015625, 0.27392578, -2.2558594, -0.37158203, -1.9189453, -0.2758789, -2.1777344, -3.3261719, -0.79003906, -2.0742188, -1.2236328, 3.5117188, -1.3408203, 2.4101562, 0.9667969, -3.6777344, 0.98535156, 1.5175781, -0.6503906, -0.40478516, -2.8496094, 0.12609863, -1.0908203, -0.36621094, -1.9511719, 0.91308594, 1.7138672, -0.65283203, 1.0664062, -2.4609375, -1.3154297, -0.5727539, -0.29467773, -1.21875, 0.9980469, -1.2675781, -0.7993164, 1.1123047, 0.47460938, 2.5878906, -0.8769531, 1.8193359, -0.57958984, 1.3544922, 0.8847656, -1.3154297, -2.5, -0.7578125, 1.0917969, -1.1191406, -1.1054688, -3.3085938, -0.71728516, -0.4086914, 0.8588867, -1.5595703, -0.32055664, -1.1044922, 2.453125, -1.2460938, 0.14953613, 0.20275879, -0.0491333, -1.4990234, 0.6977539, -2.8925781, 1.1083984, -2.0527344, -2.1582031, -0.5136719, 1.4267578, 0.62841797, 1.0175781, 0.8676758, 0.9926758, -0.96728516, 0.30249023, -2.0234375, 2.2714844, -0.8208008, -2.2851562, 0.8847656, 0.5488281, -2.7226562, -2.2578125, 0.08081055, 4.5234375, 1.1865234, 3.0976562, -0.41479492, 0.5366211, 0.3088379, -0.36254883, -0.6694336, -0.36621094, 0.10101318, 2.71875, -2.6777344, -1.1113281, -0.51660156, 1.3515625, -1.3632812, -1.3632812, 2.9238281, 0.44384766, 2.7832031, 1.9697266, 0.19494629, 1.0078125, -1.2851562, 1.6611328, -0.24072266, -0.82910156, 0.016571045, -1.2333984, 1.0517578, -0.03149414, 1.171875, 1.7099609, 2.4824219, 2.7578125, 2.2226562, 1.5322266, 0.060577393, 1.1162109, 0.018157959, 2.75, 0.24279785, 3.2089844, -0.7480469, 0.71484375, 0.52001953, -1.3125, 0.56152344, -0.6191406, -0.15600586, 2.5292969, 1.0175781, -0.90625, 0.80859375, 0.20483398, -0.64697266, -0.41577148, 2.2382812, -1.1816406, 0.33911133, 1.8876953, -0.14746094, -2.6171875, -2.4394531, 0.14575195, -0.29614258, -0.30200195, 0.42041016, 2.921875, 1.7890625, 0.25439453, -0.5317383, 0.8408203, -1.6894531, -0.15551758, -1.4726562, 0.59472656, -0.12548828, -2.2402344, 0.86376953, 0.16003418, -0.18896484, -1.3925781, -0.71191406, 1.1435547, -0.47338867, 1.2783203, 1.1738281, -0.8544922, -2.8261719, -0.4951172, -3.1660156, 1.5644531, 0.63427734, -4.953125, -0.81347656, 1.9335938, 1.4375, 0.05923462, -0.7836914, 2.453125, 0.19250488, -1.4121094, 3.2949219, -2.4882812, -0.7714844, -2.5839844, -4.390625, 1.4287109, -1.0507812, -0.78271484, 5.0195312, 1.2539062, 0.3840332, 2.265625, 0.8779297, -3.1933594, -1.3671875, -0.8457031, -0.95751953, -1.2998047, -0.88378906, 0.56884766, 0.016571045, -2.5957031, -0.5258789, -0.5292969, -0.5317383, 0.6591797, 0.89160156, -1.8574219, 0.99365234, -2.2421875, 0.40673828, 0.28808594, -0.41577148, 1.859375, -1.4619141, 0.45166016, 0.7192383, 2.2363281, 0.31469727, -0.6635742, -0.21655273, 0.16467285, 0.41601562, -1.4404297, 0.18444824, 2.5097656, 2.3046875, -0.14892578, -1.8466797, -2.1425781, 0.33666992, -0.2824707, -1.8417969, 0.02822876, -0.4567871, -1.9492188, 0.8457031, 0.82714844, 0.1665039, 1.3388672, -0.4946289, -2.3203125, 0.65478516, -2.2011719, -1.8173828, -1.7509766, -0.6582031, 0.89697266, -1.3066406, -0.10321045, -0.3557129, 0.8208008, -0.9614258, -0.68408203, -1.9208984, 2.5351562, 1.6113281, 2.546875, 3.7265625, -0.4375, 1.0917969, 2.3847656, -1.0566406, 1.5791016, -1.625, -0.5727539, 0.14440918, 1.9677734, 1.4707031, -1.4013672, -1.8095703, 0.5576172, -0.72753906, 2.0175781, -1.9228516, 1.2529297, -1.625, 0.30151367, 0.23046875, -2.4667969, 0.97998047, -1.3203125, -1.7431641, 0.66015625, -0.33251953, -2.3222656, -0.5004883, 0.22302246, 0.18688965, 1.4267578, 2, -0.20959473, -2.0566406, -0.9926758, -0.31835938, 0.9145508, -0.17370605, 0.46704102, -0.30615234, -0.12939453, -0.22338867, 0.30737305, 1.6777344, 1.9638672, 1.3730469, 4.265625, 0.96728516, -1.7128906, 0.16052246, 1.0371094, -0.7885742, 2.1132812, 0.3852539, -2.1835938, 1.7597656, 0.71435547, -4.359375, -1.5771484, 2.3808594, -0.921875, 1.1923828, -0.85498047, -1.0273438, 1.6914062, -2.0742188, 0.68115234, 0.65478516, -1.7871094, 2.375, 0.55371094, -2.4375, -1.7324219, -0.12780762, 2.8789062, -1.6816406, -1.2558594, 2.7792969, 0.12164307, 0.8989258, 0.38427734, -1.3242188, -1.2324219, -2.3691406, 2.8203125, 1.734375, 0.94677734, 0.30810547, 3.1972656, -3.0820312, 0.21325684, -2.953125, 3.3691406, -4.890625, -1.8408203, 0.19470215, -2.234375, -1.4189453, -1.5839844, 0.37109375, 0.69970703, 2.6210938, 1.3427734, -2.6035156, -1.0458984, 1.3125, -2.1621094, -5.734375, -2.4316406, 0.016464233, -0.3918457, -0.27001953, 1.5185547, 0.3486328, 1.7304688, 0.6479492, -1.6523438, -0.21496582, -0.45703125, -2.3398438, -0.5883789, 0.20617676, 0.33764648, -0.16870117, 1.1435547, 2.8046875, -0.92041016, 1.2548828, -2.75, 0.84277344, -0.9477539, -1.0615234, 0.57128906, -0.11090088, 1.0732422, 0.06561279, 0.10290527, 0.49780273, -2.9023438, 2.4003906, -0.67578125, -0.6430664, 0.5698242, -1.4355469, -0.36547852, -0.28466797, 0.087524414, -1.3417969, -0.41625977, 2.1386719, 0.21350098, -2.5410156, -0.42822266, 0.03286743, -0.6513672, -1.125, 1.2207031, -0.15991211, 0.0019111633, -1.0380859, 0.78564453, -2.2070312, -2.1171875, -1.9472656, -1.6611328, -0.62646484, 0.17163086, -1.9472656, 1.7910156, 0.087768555, -0.69384766, 1.625, 0.7636719, -0.3010254, -2.4785156, -0.09790039, 1.5625, 1.953125, 1.7421875, -1.0341797, -1.5078125, -1.2568359, -0.5991211, 0.51171875, -0.31860352, 0.8964844, 0.62353516, -0.5419922, -1.2880859, 0.98095703, 1.8955078, 1.3525391, 0.58740234, -0.5913086, 0.29467773, 1.0439453, -0.91015625, 1.8701172, -0.6772461, 1.5185547, -0.07775879, 3.0175781, -0.7402344, -2.4335938, 1.4414062, -2.4960938, -0.11480713, -0.36767578, -1.2714844, 0.119018555, 0.8828125, 0.1282959, 0.3310547, 0.115722656, -1.8408203, 2.8574219, -0.3791504, -0.37426758, -1.1513672, 3.1738281, 0.7026367, 2.6289062, 1.8115234, 0.97998047, 0.15100098, 0.83154297, 0.63378906, -0.61035156, 2.4257812, -1.5449219, -0.50878906, 0.37060547, -1.8681641, -1.7558594, 4.0859375, 0.53515625, 2.1054688, 1.1630859, 1.8515625, 2.3515625, 1.1992188, 2.0703125, 0.72216797, 0.24035645, 1.6591797, -0.7949219, 1.6787109, 1.1650391, 3.7265625, 1.2324219, -1.2529297, 0.49780273, 0.27416992, 0.6196289, 0.7910156, -0.16113281, -0.18237305, -3.3046875, 2.2324219, -1.3300781, 0.76464844, -3.203125, -0.060577393, -1.6816406, -1.2626953, -1.0410156, 0.50927734, 3.6308594, 0.091552734, 0.29125977, 0.27197266, -0.054870605, 0.83740234, -3.9394531, -1.640625, 1.2490234, -0.9091797, 0.22399902, 0.43896484, 1.5673828, -0.0041656494, 1.828125, -0.26635742, 2.4960938, 1.53125, 0.7602539, -0.99560547, -1.2890625, 0.4777832, 1.6660156, -0.020385742, -1.3671875, 0.7861328, 0.7246094, -2.4472656, -2.203125, 1.2597656, 0.31225586, 2.6875, 2.1816406, -1.8037109, 1.8720703, -1.6503906, -0.4729004, -0.60058594, 1.5175781, 0.057922363, -0.74658203, -1.5849609, -0.234375, 1.9238281, 2.1894531, -0.6069336, -0.45263672, 0.85302734, -0.0131073, 2.4101562, -0.5654297, 1.9111328, -0.9423828, 0.5229492, -1.9443359, 3.2890625, -0.29614258, 0.80566406, -1.4023438, -0.07342529, 1.2363281, -0.04397583, 0.10827637, 1.8242188, -0.8989258, -0.7216797, -0.7709961, 0.61035156, 0.023040771, -2.703125, -2.4902344, 1.5664062, -0.20703125, -2.8964844, 0.076049805, 3.515625, 1.7568359, 0.84228516, 2.7597656, -1.9257812, 1.8574219, 0.43798828, -0.1303711, 0.09338379, 1.1474609, -0.101745605, -0.21228027, -2.2753906, 2.0625, 2.1933594, 1.7441406, -0.34033203, 0.7709961, 2.1992188, 1.3271484, 0.87939453, -0.23242188, -1.6523438, -1.0888672, 1.5966797, -0.34375, 2.1152344, 1.9853516, 0.0048103333, 0.54345703, -1.0234375, -1.1582031, -0.4494629, 0.5229492, -1.4130859, 1.8515625, 3.296875, 1.5546875, -0.5908203, -1.9150391, -2.1542969, -0.47192383, -0.58935547, 2.3769531, -0.55810547, -1.6962891, -0.60498047, -0.41748047, 0.29248047, 1.8896484, -2.8925781, 1.0917969, -2.9882812, 0.6489258, 0.5854492, 0.33789062, -0.27514648, 0.19592285, 1.5654297, 3.5058594, 0.22851562, -0.42211914, 0.17443848, 2.6894531, 0.86572266, -3.4492188, 0.7558594, -1.7939453, 1.84375, -0.54052734, 0.921875, -0.9863281, -0.28100586, -0.6699219, -1.5917969, -2.4433594]}, "B08V521V9N": {"id": "B08V521V9N", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater\nDescription: \nFeatures: Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips.\nEasy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries.\n3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins.\nEnergy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour.\nImportant Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will \"caught on fire \"with improper operation. Always check gas leakage before operation.\n", "embedding": [-1.1425781, 2.4355469, 1.6679688, 0.5810547, -1.0859375, -0.8125, 1.1474609, -1.8349609, -0.41186523, 3.0917969, 1.6220703, -0.88378906, 1.6503906, -1.4033203, 0.02243042, 0.0103302, 1.1552734, 0.21020508, 0.7758789, -1.0830078, 2.9003906, -0.10095215, 1.8017578, -2.2636719, 1.2753906, -0.2541504, 2.3984375, -2.8789062, -1.0966797, 0.4584961, 0.3540039, 0.33447266, 0.5756836, 2.1464844, -1.0771484, -0.6508789, -2.3789062, 1.3642578, -3.2070312, -1.7392578, -0.8129883, -2.6484375, 1.8320312, -0.9970703, -0.30859375, -2.90625, 1.3759766, 0.20202637, 1.5488281, -0.26489258, -1.8271484, -0.35473633, 0.019943237, 1.4013672, -2.2402344, 0.06488037, -0.38891602, -2.1933594, 2.2851562, 0.84375, -1.25, -0.54003906, -2.4628906, 2.1796875, -0.14404297, 0.23620605, -0.40429688, -2.609375, -0.2541504, 0.7910156, 2.1054688, 0.6333008, 0.84716797, -0.86816406, -0.57666016, 0.7290039, -2.6757812, 0.4111328, 2.4394531, 2.3730469, -1.7519531, 1.5107422, 1.1132812, -2.4726562, -2.5898438, 0.009819031, -0.84375, -0.09466553, 0.39160156, 1.9511719, -2.0703125, 2.8554688, -1.5654297, -1.7714844, -0.27954102, -2.15625, 2.3671875, 2.0351562, 2.421875, 1.3310547, -2.5585938, -0.75683594, 0.21008301, -1.3056641, -2.3046875, -0.43896484, 2.1757812, 1.3417969, -2.2851562, 0.6748047, -2.2519531, -0.36547852, 2.5, -1.2763672, -1.4375, -1.2216797, 1.8027344, -0.11730957, 4.4570312, -0.0793457, 3.828125, -0.6923828, 2.4414062, -2.5898438, 0.8413086, -0.18945312, -0.16931152, -1.359375, -0.48339844, -0.71533203, -0.6220703, 0.12194824, 2.6914062, 1.4423828, -0.21447754, -2.1347656, -1.5498047, -2.625, -3.0976562, -0.06561279, -2.5273438, 1.3203125, 1.4179688, 1.1904297, -5.2695312, -1.7480469, -0.78759766, 0.5449219, -0.040161133, -0.5732422, -0.16369629, -3.1015625, -0.74121094, -1.3066406, 0.33496094, 2.5644531, -1.2792969, -1.2148438, 3.6835938, 1.7373047, 0.8823242, -0.5180664, -1.0878906, 0.09454346, 1.0009766, -2.03125, 2.2265625, 0.22290039, 0.6376953, 0.32373047, -1.0068359, -2.2128906, 0.94970703, -0.04220581, -0.05001831, -2.2011719, -0.16748047, 1.8105469, 1.8798828, -0.3269043, -4.7773438, -0.71533203, -0.08782959, 1.3398438, 1.8691406, -1.1142578, -1.4248047, -0.98876953, -1.0566406, -1.6748047, -1.6123047, 0.9584961, -2.1503906, -1.7128906, -0.36157227, -2.4921875, -2.4667969, -0.2607422, 1.8857422, 1.8359375, 1.1464844, -0.7998047, -0.66064453, 0.10205078, -1.1660156, -2.3203125, 0.5751953, -1.0185547, 0.47802734, 2.4257812, 0.1538086, 0.5019531, 2.0058594, -0.30151367, -2.2089844, 0.5698242, 2.4863281, 0.7060547, 2.2167969, 1.6875, -0.21960449, 0.18823242, 1.4853516, 1.671875, 0.875, 1.0234375, 0.96777344, 0.15063477, -1.7744141, -1.8339844, 3.2050781, 0.40112305, -0.52001953, -0.7084961, -1.1933594, 3.0175781, 0.2692871, 0.82714844, 0.61328125, 0.011924744, -0.5209961, -1.6660156, -0.77978516, -0.26733398, -1.0400391, -0.40185547, -1.5693359, 0.65283203, 1.0869141, 0.2849121, 1.3085938, -2.1679688, 0.029937744, -1.9033203, -3.2382812, -0.1071167, 0.78808594, 0.5830078, -0.6826172, -3.5234375, 1.7275391, 2.0546875, 0.35888672, 1.7089844, -1.2578125, 0.31884766, 2.7167969, 2.1621094, -2.3046875, 3.40625, 0.36157227, 3.1953125, 2.1972656, -0.4116211, 2.0429688, 0.65283203, -0.52783203, 2.1484375, -0.14758301, 0.5229492, 0.5288086, -3.2304688, 1.5722656, -1.7675781, 0.07067871, -0.34399414, 0.5654297, 0.5366211, -2.375, 0.4633789, 3.2324219, -1.2060547, -2.2753906, 0.9550781, -1.3125, 2.2265625, 3.6308594, 0.6113281, 0.61816406, 0.73828125, 1.2119141, 0.5029297, -2.0917969, 2.5839844, -0.60058594, -1.2558594, -0.50683594, -2.140625, 2.2675781, 1.703125, 0.29345703, -0.47875977, -2.8535156, -0.6142578, -3.1386719, -0.68066406, 2.3789062, -3.7460938, -0.08355713, 4.3632812, -1.0048828, 0.23693848, -0.049926758, -2.5136719, 0.7788086, 0.9897461, -2.9316406, 1.6660156, 0.37939453, -1, 1.6210938, -0.8413086, 1.1875, -2.2597656, -0.5336914, -1.0976562, 1.0380859, -2.6289062, 0.66015625, -0.9501953, -0.5761719, 0.067993164, 0.86621094, 0.6669922, -0.56884766, -1.0556641, -0.6738281, 0.2980957, -1.359375, -2.5566406, 1.3623047, 1.6523438, -1.6552734, -3.5957031, 2.1679688, 0.47851562, -0.13659668, 1.7314453, -1.6210938, 1.8808594, -0.9501953, 0.83251953, -0.2548828, 0.40576172, -0.038269043, -4.03125, 1.5517578, -2.9453125, 3.3554688, -0.4572754, 2.53125, -1.7919922, 0.11694336, -0.75683594, -1.03125, 2.5507812, -1.1240234, 2.7207031, 0.44091797, 0.73095703, -0.91552734, -1.8798828, -0.42016602, -0.8378906, -1.4501953, 2.1386719, -1.5322266, -1.8466797, -1.7363281, -3.6113281, -0.04397583, -0.8442383, -2.0996094, 0.24816895, -2.9375, -1.1425781, 0.9399414, 1.0322266, 2.2011719, -0.52783203, -0.00072431564, -1.4726562, -2.6152344, -2.3730469, -1.3115234, 0.5102539, -0.08898926, -0.24572754, -0.25634766, 0.80126953, 0.5551758, 2.9550781, -0.50097656, 0.8769531, 0.021255493, -4.6328125, 0.64208984, 2.1210938, 2.1621094, 0.111206055, -1.1611328, -1.0253906, -2.9550781, -0.22351074, 2.3359375, 1.4804688, 3.3730469, 0.8105469, -0.35717773, 0.7729492, 0.4638672, 0.17480469, -0.5541992, -0.8300781, 3.4453125, -1.8457031, -0.25976562, 1.7714844, 3.125, -3.4589844, -0.06365967, 1.3857422, 0.1772461, 2.6113281, 1.3134766, -0.7324219, 0.5410156, 1.3349609, -0.32910156, 2.3085938, -0.20349121, -0.8125, -0.8564453, -0.47021484, 1.3056641, 1.1806641, -1.9550781, 0.94189453, 0.17993164, 1.9238281, 1.4150391, -2.1875, 0.40234375, 0.6743164, 0.34375, 1.8857422, 2.1894531, -0.92333984, 0.99316406, -1.3662109, 0.875, 0.4609375, -0.98876953, 0.6113281, 0.4934082, 1.9287109, -0.10852051, 0.093566895, -0.62158203, -0.31518555, -0.4189453, 1.9287109, 0.65234375, 0.64501953, 1.9902344, -2.5820312, -3.3105469, -0.11505127, 0.234375, 0.234375, -1.6875, 1.2763672, -0.12322998, -0.6245117, -1.3183594, -2.6015625, -2.6601562, -2.0878906, 2.21875, 0.1697998, -1.2246094, -1.8496094, 1.2041016, 1.6542969, 2.296875, -0.0046043396, -1.8505859, -2.8613281, -1.1181641, 1.4375, 0.13757324, 1.6171875, 1.5976562, -2.7363281, 0.27075195, -2.6503906, -0.14074707, 2.2714844, -0.96191406, -0.7988281, 1.1005859, -0.4321289, 0.49536133, -0.35058594, 1.7919922, -2.4179688, -0.09753418, 2.703125, -0.54003906, -0.16149902, -1.4785156, -5.2890625, 1.2919922, -1.1621094, -1.3544922, 1.6162109, 0.8930664, 1.2490234, -1.2089844, 0.35229492, -3.0566406, -2.6601562, -1.4921875, 2.6386719, -2.9335938, 3.2675781, 1.3798828, 0.41357422, -1.0605469, -1.8076172, -0.7988281, -0.40844727, -0.6489258, -0.26953125, 0.74609375, 1.5966797, -1.0585938, -0.24169922, -0.5571289, 2.0488281, 0.3334961, -0.20654297, -0.9746094, -1.1035156, 0.7607422, -0.28344727, 0.70214844, 0.057037354, 3.3710938, 2.53125, 0.7319336, -1.2705078, 1.9375, 1.2509766, 0.14501953, -3.84375, -2.2792969, -1.9902344, 1.1523438, 0.44091797, -1.2216797, 0.6855469, -1.2880859, -0.3605957, 0.63964844, 1.2275391, 3.4433594, 0.5761719, -1.3320312, 1.7724609, 0.921875, -3.0683594, -2.4121094, -0.84716797, -0.21533203, -0.11645508, -1.1542969, 0.71533203, -1.5205078, 0.30737305, 0.28515625, -1.2392578, 0.8261719, 1.7998047, 2.5585938, 0.84472656, -1.5458984, -1.5771484, -0.21911621, -0.68310547, 0.6269531, -0.16796875, 1.8710938, 0.75097656, 2.2480469, 2.5039062, -1.5888672, 1.25, 0.28564453, -1.5390625, 1.3154297, -1.4521484, 0.6152344, -0.76660156, -1.0302734, 0.72802734, 0.27026367, 3.4648438, -0.50683594, 0.09820557, -0.39868164, -0.0023097992, -1.4248047, 0.52783203, 1.5039062, 2.0566406, -0.24389648, -0.30688477, 0.7529297, -0.39208984, 1.4267578, -0.0758667, 3.7148438, -1.1875, -1.6513672, -1.8984375, 1.1474609, -1.2978516, 0.33813477, 0.39892578, 0.8588867, 1.5986328, 1.109375, 2.2089844, 0.45336914, 1.2363281, 1.1699219, 1.4638672, -1.2773438, 0.8461914, -1.4101562, 2.1308594, -1.21875, -2.0117188, 0.95410156, 2.15625, -0.07550049, 2.1621094, 0.38745117, -0.4440918, -1.2148438, -2.5839844, -1.7412109, -1.6083984, 1.6289062, -0.22265625, -1.4560547, 0.66015625, 0.65771484, 2.5996094, 3.546875, 0.7763672, 1.203125, 0.89453125, 0.21142578, -0.9038086, 0.15539551, -1.6367188, -1.8476562, -0.19384766, 0.8486328, 0.44921875, 0.95166016, 2.0019531, -0.76708984, -1.4433594, -2.15625, -1.3007812, 2.0683594, -3.6484375, -0.56396484, -1.7021484, 2, 0.40112305, -1.3115234, -1.6357422, 0.72265625, 1.6376953, -1.4160156, 0.484375, -0.13342285, -1.1015625, -2.5761719, -5.6523438, -0.3154297, 0.96875, 1.1601562, 0.24926758, -1.6972656, -2.2617188, 0.7182617, 0.69628906, 0.3190918, -1.1953125, 1.9638672, -1.0341797, 2.0722656, 0.54003906, -0.12658691, 0.7480469, 1.1611328, 1.5253906, -0.3076172, -0.8208008, -1.5566406, -2.2871094, -0.48876953, -1.5888672, -0.32836914, 0.7319336, -0.8989258, -0.09692383, 3.9355469, -0.008003235, -1.9042969, 1.3476562, -0.3642578, -2.8222656, 1.9775391, -0.88671875, 2.3359375, 1.1982422, 1.4111328, 0.20080566, 0.98876953, 1.0722656, 0.53466797, 1.3154297, -0.30786133, 1.6894531, 1.4345703, 0.33374023, 1.2412109, -1.0195312, 0.23413086, 0.84716797, -0.034698486, -1.2626953, -3.3183594, -1.7587891, -0.29125977, -1.3398438, 0.26123047, 0.42114258, 2.3613281, 0.2175293, 1.140625, 0.7133789, -0.19848633, 1.0820312, -2.234375, 0.26733398, -1.2207031, 2.3496094, 0.6088867, -2.0761719, -3.8222656, -5.1835938, 0.85058594, 0.15246582, 0.96777344, -0.52197266, -0.69677734, 0.34301758, 1.5302734, 0.097351074, 2.9746094, 0.70166016, 0.6484375, -3.1367188, 2.4648438, 2.2851562, 0.22790527, -1.5029297, -0.0049819946, 0.5151367, -1.7734375, 3.2402344, 1.6611328, -0.03012085, 0.6689453, 0.116760254, 2.0488281, -0.93603516, -2.2734375, 1.6083984, -2.703125, 1.5673828, 0.23461914, -1.0097656, -0.22253418, 1.1396484, 0.41845703, -0.5185547, 2.671875, 1.9248047, -1.2197266, -0.9838867, 1.46875, 0.4873047, -1.2841797, 1.1142578, 1.0458984, -0.87158203, 2.7089844, -1.3740234, 0.23901367, 1.5019531, 1.90625, -0.07635498, 1.4453125, 0.11450195, 0.8442383, 1.2832031, 2.2480469, 3.1132812, -0.9506836, 1.2763672, 0.8300781, 1.2753906, 2.015625, -1.8457031, 1.2207031, 0.8276367, 0.67285156, -0.92626953, -1.3193359, -0.29516602, -0.2401123, -1.2958984, -3.1933594, -0.64453125, 0.0037193298, -1.9697266, -2.4199219, -0.7080078, 0.3557129, -2.390625, 2.1855469, -0.65283203, -0.1973877, -1.3769531, 0.15808105, -0.08062744, -1.3359375, 0.08544922, 1.4013672, 0.9819336, -0.25854492, -1.3837891, 1.0546875, -1.9755859, -1.1044922, 0.5551758, 3.2128906, 1.7148438, 1.9335938, -1.3779297, 1.3515625, 2.7890625, 0.31640625, 0.16784668, -0.40698242, 1.3652344, -1.7695312, 4.1640625, 2.9667969, -2.2695312, 2.8710938, -0.30932617, -0.30200195, -2.2246094, -0.9042969, -0.65527344, -2.3691406, -0.41577148, -1.6962891, 1.4296875, -1.3017578, 1.1376953, -3.6054688, 3.2734375, 1.3515625, -3.0898438, -0.6386719, 0.34985352, -0.34887695, 2.5527344, 0.27929688, 0.3330078, 0.94970703, 0.7973633, 1.625, -0.72216797, 0.3232422, -0.5258789, 0.41186523, -1.0986328, 2.7167969, 0.20117188, -0.7529297, -0.8173828, 1.7060547, -0.0025501251, 0.86279297, -1.8632812, -1.5449219, 3.6660156, -0.05340576, -0.6772461, 0.08441162, -0.6425781, 0.023086548, 1.0302734, 0.13635254, -1.1533203, -0.25561523, 1.8105469, 2.0703125, -3.0273438, -0.8725586, 0.8598633, 0.609375, 0.66552734, -2.2324219, -2.3632812, -0.97558594, 0.4868164, 0.7138672, -1.4199219, 0.9472656, -1.2080078, -0.8881836, 0.6513672, -0.1282959, 1.2392578, -1.2265625, -0.9375, 1.2177734, 1.7978516, -1.4404297, 0.53027344, 0.30004883, -1.125, -0.63964844, 1.7041016, 0.9291992, 1.2587891, -2.6621094, -1.375, -0.43432617, -0.29638672, -0.42871094, 1.3056641, 2.0703125, 0.71435547, 1.6152344, -0.72265625, -2.5839844, -1.0761719, -2.4453125, 0.48242188, 0.03515625, -0.6303711, 0.75878906, 0.9951172, 1.3779297, -0.44628906, -0.23254395, -0.7050781, 0.98876953, 1.5576172, 1.2246094, 1.0742188, 1.1464844, -0.90234375, -0.51708984, 1.8476562, 1.8330078, -1.0507812, 1.3779297, 1.8974609, -0.74316406, -1.5976562, -0.45410156, -1.7734375, -2.4238281, 1.4414062, 2.21875, 4.6328125, -1.5498047, -2.0722656, -4.5117188, -1.0849609]}, "B08BZ7FNRM": {"id": "B08BZ7FNRM", "original": "Brand: GloryShine\nName: GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)\nDescription: \nFeatures: Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table\nMade of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won't crack in the cold\nCome with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy\nCover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models.\nFits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.\n", "embedding": [1.2119141, 0.67285156, 1.765625, -1.9746094, 1.0634766, 1.4638672, 0.31713867, -1.8740234, 0.7783203, 3.2265625, -0.5991211, -0.4243164, 1.6650391, -3.4785156, 3.21875, 0.5629883, -0.42456055, 2.7773438, 3.34375, -2.390625, 1.5849609, -1.65625, 0.57177734, -0.65234375, 0.22607422, -1.1669922, 4.2304688, -2.2441406, -1.2568359, -0.53808594, 1.2851562, 1.2685547, -0.64160156, 1.6757812, -2.1933594, -1.0224609, -0.23986816, 0.47924805, -0.6455078, 0.5205078, -3.1230469, -2.46875, 2.3691406, 3.1660156, -1.6904297, 1.7304688, -0.029953003, -1.9326172, 0.008071899, -1.2861328, 1.6503906, -0.12597656, 1.2167969, 0.4650879, -0.85839844, 1.3789062, -1.2744141, -0.91308594, 1.8710938, 0.41967773, 1.4853516, -1.4492188, -0.0012378693, 3.3378906, -1.7177734, 0.87109375, -1.0537109, -0.57373047, 0.62597656, 0.71777344, 1.2509766, 0.8442383, 1.5166016, -0.6489258, 3.1445312, -0.8671875, -3.7304688, 1.7900391, 3.3828125, -2.4492188, 1.2246094, 2.328125, 0.1381836, -1.8828125, 0.123413086, -1.2978516, -1.1875, -1.5673828, -0.45874023, 1.4882812, -0.077941895, 2.828125, -0.6191406, -2.9101562, 0.14526367, -1.7353516, 2.6992188, 1.3964844, 0.06866455, 0.101745605, -0.056732178, -0.20251465, 0.34106445, -0.03894043, -3.375, -1.6865234, 1.5136719, -0.6376953, 0.5234375, 0.45166016, -0.36865234, -0.2322998, 0.6464844, -1.453125, -1.3300781, 2.1855469, 0.7661133, 1.4453125, 2.1835938, 1.3330078, 3.9785156, 1.3300781, 0.31152344, -2.2539062, 2.2285156, -0.6665039, -2.2128906, 2.0214844, 1.2050781, -2.1738281, 0.37158203, -2.8710938, 0.7470703, 0.10070801, -2.2128906, 0.40649414, -3.2109375, 0.10821533, -2.2011719, 0.52685547, -0.99316406, -1.6113281, 1.390625, -0.2836914, -3.21875, -0.8984375, -1.4833984, 4.3867188, 0.025146484, -1.6513672, -0.09643555, 0.59765625, 0.08483887, -2.1777344, -0.22009277, -0.36914062, 0.90771484, -3.8378906, 3.7382812, 1.1806641, 2.1660156, -0.3701172, 0.26953125, 0.58251953, 1.1005859, -0.6308594, 2.7851562, 0.30615234, 0.25268555, 2.6015625, -0.07897949, -1.6728516, 0.16174316, 0.78027344, -0.5263672, 0.08728027, -0.61376953, 0.55029297, 2.4121094, 0.52734375, -0.78564453, 0.50634766, 0.20349121, 0.22302246, -0.22290039, -2.2246094, -1.2392578, -2.5371094, -0.40625, -1.0332031, -2.0839844, 0.38085938, -2.4648438, 0.08227539, -1.9794922, -1.9931641, -3.0195312, -1.7382812, 1.2929688, 0.85839844, -1.34375, 1.2011719, -0.9741211, -0.40649414, -3.8300781, -2.2207031, -0.71484375, 2.7519531, 1.2382812, -0.038909912, -0.53027344, -1.5039062, 1.2880859, 2.3457031, -0.19226074, 0.5385742, 1.2929688, 0.79248047, 1.8085938, 1.28125, 0.19946289, -0.06317139, 2.0097656, 3.5371094, -0.07684326, 1.1601562, 1.4658203, 0.9716797, -1.7021484, -1.6767578, 2.2714844, 1.5634766, 0.5761719, 1.4619141, -2.1582031, 1.59375, -0.12915039, -0.3232422, 1.6210938, -0.9067383, 0.23706055, -1.953125, -2.5976562, -0.6230469, -0.22058105, 1.6552734, 0.49169922, 0.81933594, 1.6669922, -0.48754883, -1.8125, 0.21533203, 0.7626953, 1.3662109, 0.014343262, 0.30615234, -0.11004639, -0.39257812, 1.2636719, -0.66308594, -1.0136719, 0.85546875, -0.5864258, 1.7119141, -2.0527344, -2.1152344, 1.3505859, -1.6679688, -2.7871094, -0.25585938, -0.046081543, -0.23144531, 2.3183594, -0.68896484, 1.0019531, -0.56396484, -0.38256836, 1.609375, 0.87060547, 1.7607422, -0.43041992, 0.3918457, 1.8125, -0.8964844, 0.44580078, -0.056152344, 0.7626953, 0.06896973, -0.39648438, -0.040649414, 2.5, -1.4960938, 0.0541687, 2.0664062, -0.24121094, -0.105407715, -0.16674805, -0.49829102, -0.9277344, -0.25634766, -0.5263672, 2.8144531, 1.3505859, 2.2460938, -0.9326172, 1.1660156, -0.3881836, -1.4375, -0.10192871, 0.8125, -0.1640625, -0.2932129, -0.19091797, 0.93115234, -2.0410156, -2.4609375, 2.1640625, -2.1074219, 0.77441406, 0.89990234, -0.6621094, 0.35620117, -2.1347656, -2.5605469, 1.1503906, 2.7988281, -3.4511719, 0.38427734, 0.8964844, -0.6245117, -1.5917969, -0.8823242, 0.24206543, -2.9707031, -1.2382812, -3.9453125, -3.3808594, -0.8852539, 0.13952637, -3.1503906, 0.98339844, -0.76708984, 0.11785889, 1.2832031, -0.7675781, -2.3359375, 0.40234375, 0.40283203, -2.6113281, 0.6582031, -0.70166016, 2.4492188, -0.7368164, -1.9599609, 1.2841797, 1.1416016, 0.3869629, -0.5239258, -1.2919922, -1.1230469, -0.78125, 1.8496094, 1.2626953, -1.9912109, 1.8740234, -2.3535156, -0.7583008, -4.015625, 0.2541504, 0.1204834, -0.04055786, -0.82177734, 1.1875, -2.2988281, -1.2714844, 1.0498047, -1.5605469, 5.734375, 0.53808594, 1.4892578, -0.6220703, -1.3193359, 1.3642578, -0.484375, -2.109375, 1.0751953, 0.12597656, -0.3322754, -3.8105469, -2.2050781, -1.9824219, -1.0478516, -1.0283203, 0.7529297, -0.88183594, -0.52197266, 1.8378906, -2.7773438, -0.60058594, -0.9785156, 0.66748047, 0.13366699, 0.20788574, 1.0146484, -4.1367188, -1.3300781, -1.6933594, -0.4567871, 2.4960938, -1.2431641, 1.59375, 1.8759766, -2.75, 2.9277344, 0.5151367, -4.09375, 1.2978516, 2.7128906, 2.609375, 1.3603516, -1.1279297, -2.1582031, -0.54589844, 1.2724609, 1.5146484, 0.62890625, -0.6274414, 0.08630371, -0.5083008, 1.0400391, -0.18273926, -0.82373047, 0.75927734, -0.08544922, 2.0136719, -2.375, -0.1652832, 0.10534668, 0.87109375, -2.8242188, -0.11187744, 1.6142578, -1.4082031, -0.77441406, -1.1982422, 0.9355469, 0.8120117, -0.11651611, 2.5292969, -2.2421875, 1.984375, 1.2060547, 0.29418945, 1.1914062, 1.7841797, 1.9658203, 2.375, 1.015625, 2.0488281, 0.80615234, 0.31860352, -2.8398438, 1.1816406, 0.9980469, 1.4404297, 0.14331055, 2, -1.2617188, 0.57910156, 1.4541016, -0.59033203, -0.014167786, -0.96728516, 0.36499023, 1.8125, 0.16357422, -1.2392578, -1.5546875, -0.29492188, -0.828125, -1.9960938, 0.5317383, -1.4423828, -1.5234375, 1.2480469, -2.2597656, 0.46557617, -1.1386719, 3.5683594, 0.56591797, -1.796875, -0.6660156, 2.6542969, -0.7729492, -1.1816406, 1.2099609, -1.2392578, -0.6899414, 3.0039062, 0.8046875, -2.4726562, 1.5703125, -2.703125, 0.66552734, 2.5078125, 0.5083008, 0.6459961, 1.5332031, -1.1074219, -1.9277344, 2.2167969, 1.0527344, 0.8105469, -1.8017578, 0.67333984, -1.1308594, -2.0820312, 3.4785156, -1.5654297, -0.43969727, 2.1835938, -0.34277344, 0.26611328, -0.41259766, 2.0292969, -1.5820312, -1.0322266, 3.390625, 0.07421875, -0.72998047, -0.99560547, -4.53125, -0.45776367, -1.7685547, -0.9267578, 2.0195312, 0.3544922, 0.10797119, 0.49487305, -2.2011719, -1.9306641, -1.2587891, -1.2490234, -2.109375, -3.0488281, -1.8828125, 0.11328125, 0.7080078, -1.125, 0.00806427, -0.9213867, -0.058258057, 0.005241394, 0.7294922, 0.5083008, -0.9560547, -2.84375, 0.64941406, -0.32104492, 0.75439453, 0.4729004, -0.3100586, -0.67822266, -1.3964844, 1.9033203, 0.6796875, -1.1367188, 1.5947266, 3.1835938, 0.09814453, 0.49951172, 0.8144531, 0.890625, 3.3144531, -0.8930664, -2.3222656, -0.48632812, -1.265625, 2.5117188, -0.69677734, -1.2070312, 0.2709961, -1.7597656, 0.33520508, -1.2207031, 2.0605469, 1.6796875, 0.61816406, -2.5253906, 1.9082031, -2.4550781, -2.3789062, -0.09857178, -0.042755127, -0.70703125, -0.16796875, -0.47583008, -2.1074219, 1.9345703, -2.65625, 0.8071289, -1.0322266, 2.9335938, 1.3935547, 1.5253906, 3.9140625, -1.7158203, -1.6357422, 0.61328125, -2.265625, 1.1621094, 1.1074219, -1.0273438, 1.4121094, 1.8134766, -0.6274414, -0.65771484, -0.96484375, 1.0605469, -1.7998047, 0.028152466, -1.3427734, -0.29858398, -0.20727539, -0.96875, -1.1259766, -1.0849609, 0.21459961, -0.6357422, -1.0732422, 0.5751953, -0.35986328, -0.4116211, 0.07513428, 0.95751953, -1.5732422, 1.2480469, 1.8808594, -0.41015625, 1.9755859, 2.1953125, 0.40844727, 2.3554688, -2.6972656, 0.67089844, 0.6582031, 0.39160156, -2.5566406, -1.9482422, 1.1689453, 3.6035156, -3.4179688, 1.5947266, -0.4008789, -1.4755859, 2.8828125, 1.5976562, -2.5488281, -0.3190918, -0.30273438, -0.63671875, 0.3947754, 0.5932617, -2.6972656, -0.5571289, 0.7890625, -0.63623047, 2.8164062, 0.27441406, -3.2402344, -0.72265625, -1.6699219, -1.359375, 0.86083984, -2.1796875, -1.5449219, -1.8037109, 1.8623047, -1.4394531, -0.39868164, 1.7119141, 0.13000488, -2.5117188, 1.0917969, -0.89746094, -1.4199219, -1.6738281, 1.5566406, -1.0898438, -0.03149414, 0.025909424, 0.73339844, 2.1308594, -1.1113281, 1.2890625, -1.4404297, 0.6269531, 0.42578125, 2.5976562, -0.77783203, -0.33251953, 2.8183594, -0.26220703, 1.6435547, -0.84716797, 0.53125, 0.38012695, 0.9321289, -0.91552734, 1.6816406, -1.1318359, 0.01890564, -2.2558594, -1.6464844, -1.4853516, -1.4853516, -2.3007812, 0.9248047, -2.7246094, 1.2998047, -0.028152466, -0.09637451, -0.039886475, -0.3942871, -0.2944336, -1.5625, -1.5332031, -1.4677734, -0.40844727, 0.88964844, 1.2109375, 0.14123535, -0.15612793, 0.67041016, -2.6972656, 0.20532227, 2.1699219, -2.4199219, 1.8496094, 1.3417969, -0.4152832, 3.6699219, 1.5644531, 0.14160156, -0.9404297, 1.6025391, 1.2568359, -0.7553711, 2.4628906, -0.9379883, 0.31713867, 0.28735352, -2.125, 2.7070312, -1.7441406, 0.17456055, 0.42797852, -0.07165527, 0.9980469, 0.51660156, -1.1728516, -0.6699219, 1.0742188, 2.7304688, 2.6484375, 1.9462891, -3.1640625, -0.55810547, -0.8198242, -1.8173828, -0.74560547, -2.1699219, -2.3613281, -0.023620605, 1.609375, 1.1298828, 0.99560547, 1.4941406, 1.5361328, 3.2460938, -0.7167969, 0.6274414, -0.1227417, 2.5253906, 0.4645996, -1.0644531, -1.0869141, -3.375, 1.5263672, 3.2421875, 0.31103516, -1.4550781, -0.017227173, -2.8574219, 0.85498047, 0.24414062, 1.0498047, 0.39160156, 0.9458008, 0.2553711, 2.7128906, 0.578125, -0.55615234, 2.5078125, -0.4663086, 2.671875, -0.578125, 1.8603516, 1.9150391, -2.4140625, 0.8745117, -0.3762207, -0.8227539, -1.0253906, 0.08148193, 0.2685547, -1.8466797, -0.81396484, -2.7480469, -1.0390625, -5.0390625, -0.124572754, -0.030548096, 0.76904297, -0.66015625, -0.60839844, -0.8588867, 3.5234375, 1.8847656, -1.7548828, -0.86572266, -1.6191406, -1.3203125, 0.7089844, 0.7265625, 0.5, -2.0058594, -0.42382812, -0.50634766, -0.54541016, 0.34960938, -0.86035156, 0.4169922, 2.375, 2.8925781, 1.2978516, 0.3088379, 1.1699219, -0.27856445, 1.8515625, 1.3837891, -1.9863281, -0.16638184, 2.6835938, 2.1386719, 1.9208984, 0.6538086, -0.23144531, 1.6650391, -1.2089844, 0.0050239563, 1.3066406, 1.6230469, -2.4257812, 0.4296875, -1.3652344, 2.2382812, -1.0019531, 1.3457031, -2.0019531, -0.03427124, 1.4326172, -0.91552734, 2.0507812, -1.4150391, -1.5917969, 1.4501953, 1.9003906, 0.5004883, -3.2988281, 1.6347656, 0.46166992, -3.4804688, -1.0185547, 2.7753906, 1.5253906, 1.9638672, -0.6611328, 1.4804688, 1.6650391, 3.203125, 0.18725586, 0.79248047, 0.61328125, 0.34277344, 1.8945312, 0.6870117, -2.6347656, -2.7128906, 1.2832031, -1.1425781, -2.40625, 0.99560547, 0.7089844, 0.7597656, 0.5727539, 0.36328125, 0.19348145, 1.1552734, 0.6875, -1.4365234, -1.3144531, -0.054901123, -0.35473633, 0.15527344, 0.7871094, -0.7050781, 2.3046875, 0.5419922, -0.53808594, 2.5546875, 1.6210938, 1.1445312, 1.234375, -0.3017578, 0.31518555, 2.234375, -0.8569336, 0.9941406, 1.40625, 0.5053711, 0.15649414, 2.0566406, 1.546875, -1.1259766, 0.21911621, -1.9482422, 0.55078125, 0.5493164, -0.05984497, 1.3203125, -1.2685547, -0.79785156, -0.45117188, 0.5058594, 0.55859375, -3.265625, 1.7431641, 1.4003906, -0.10852051, -1.5205078, 1.1044922, -1.3710938, 1.8085938, 0.9291992, -0.62841797, -0.9111328, -0.7397461, 0.8774414, -1.8378906, -1.5869141, -2.1445312, 1.1806641, -1.2978516, -1.4990234, -1.3701172, 2.0117188, -0.47705078, 1.1513672, 3.6523438, -1.1835938, 0.07611084, -1.1660156, 0.90771484, -1.0878906, 0.76416016, -0.5595703, -1.2753906, -0.013832092, -2.8710938, 0.5498047, 0.78466797, -4.3085938, -0.2734375, 4.4609375, 3.7285156, -1.703125, -0.93896484, -3.6796875, -1.2363281, 0.8701172, 2.4511719, 0.60498047, 0.27612305, 0.044525146, 0.57910156, 4.765625, -1.1708984, -0.030731201, -1.2412109, -0.5415039, 1.7685547, -1.9101562, 1.6025391, -0.73535156, 0.7841797, 2.1230469, 0.6845703, 2.1640625, -0.35009766, 1.6054688, 2.6171875, -0.5541992, -1.9150391, 0.3305664, -0.97998047, 1.2705078, 2.515625, 0.51171875, -0.12060547, 0.0004580021, -0.6894531, -3.6855469, 0.0129470825]}, "B088B7KYC2": {"id": "B088B7KYC2", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n\u2605AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180\u00baf to 450\u00baf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!\u2605FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.\n", "embedding": [-1.0419922, 1.5488281, 0.9145508, -0.8535156, 0.19677734, 0.9116211, 0.76708984, -0.75146484, -2.2285156, 1.8603516, 2.0078125, 0.48583984, -1.5507812, -0.76220703, 0.8745117, 0.8886719, 1.2978516, 1.15625, -0.20178223, -0.2854004, 0.7680664, 1.5810547, -0.58935547, -2.5195312, 1.5947266, 1.7958984, 3.7539062, -2.1699219, -0.29882812, -0.81396484, 1.4912109, 0.7324219, -0.08984375, 1.1748047, -3.1503906, 0.9394531, 0.26635742, 1.5644531, 0.4633789, -0.6743164, -0.12335205, -0.70410156, 0.63623047, 1.6972656, -2.2929688, -0.45043945, 0.010475159, 2.9199219, -0.42407227, -0.40625, 1.4375, 1.8662109, -0.8520508, 1.2626953, -0.95996094, 1.9550781, -0.71972656, -1.2958984, 0.51708984, -0.039123535, 1.9189453, -0.11694336, -1.9013672, -0.0927124, -3.0136719, -1.5849609, 1.0966797, -0.5073242, 0.5625, -1.7929688, 2.4277344, 0.11102295, -0.64941406, 0.19458008, -0.10949707, -0.1842041, -3.8125, 1.0839844, 0.6738281, -0.5283203, -1.5898438, 1.7783203, 0.41674805, -1.6279297, 0.53027344, 0.2524414, -0.69873047, 1.3886719, 2.0058594, -0.2734375, 0.75341797, -0.58691406, -0.6767578, -5.25, 1.7773438, -1.2138672, 0.46069336, 0.6977539, -0.30981445, 1.8193359, -0.20727539, 0.82373047, -1.3339844, -0.4807129, -1.4296875, -1, 1.7607422, 1.1123047, -2.5234375, -0.7885742, -1.2197266, 0.92871094, 1.2783203, -0.020599365, 1.4951172, -2.0722656, 0.76171875, 2.7675781, 1.1230469, 1.4042969, 2.1054688, 0.10272217, -0.34155273, -0.65966797, -1.0654297, -0.86328125, 0.48535156, 0.16247559, 4.7304688, -2.0605469, -1.0820312, -0.19384766, 1.1435547, -0.25585938, -1.0078125, -2.0527344, -1.5136719, -0.018814087, -3.6191406, 0.6665039, -1.3242188, 2.359375, 1.7753906, -0.14501953, -3.1269531, -0.7314453, 1.5107422, 1.0732422, 0.7211914, -2.2050781, 0.8027344, -0.7036133, -0.73339844, -2.4296875, -0.13964844, 0.0925293, -1.7041016, -1.9570312, 1.7558594, -0.16015625, 0.5253906, -0.76953125, -0.6118164, 1.2246094, -0.7602539, -0.24780273, 0.42260742, 2.3710938, -1.1435547, 1.9492188, -0.089538574, -0.984375, 0.33129883, -0.85253906, 1.78125, -1.2519531, -1.1210938, 3.1132812, 0.85498047, -1.0439453, -1.3681641, -0.8383789, -0.28686523, 0.34375, 0.8955078, -2.2519531, 0.7753906, 2.8066406, 1.3759766, -2.1425781, 1.5986328, 1.7714844, 1.8935547, 0.5751953, 0.8105469, -0.6479492, -0.59814453, -1.5136719, 0.81689453, -0.90234375, 0.48583984, 0.18200684, -1.5722656, -0.5151367, -0.4934082, -0.6611328, 0.053100586, -1.5742188, 1.6777344, 1.6279297, 1.7089844, -1.4853516, 0.20385742, -1.0419922, 1.3105469, -2.4863281, 2.4667969, -1.0488281, 1.4179688, 2.4882812, -0.09716797, -0.93603516, 1.0576172, 2.9140625, 0.27416992, 0.46923828, 0.8642578, 0.023452759, -2.3652344, -0.43847656, 1.7011719, 0.56884766, -1.5996094, -1.0283203, -0.051483154, 1.0644531, 1.0322266, 0.55126953, 0.14160156, -0.82666016, -0.19567871, 0.5073242, -1.0634766, 0.12243652, -1.3417969, 0.32910156, -3.0898438, 2.7011719, 0.21459961, -1.7207031, 0.39111328, 1.2792969, 3.2558594, 0.8691406, -1.9589844, 0.65283203, 0.022369385, 0.6118164, -1.0800781, -1.2548828, 1.7753906, -1.0341797, 0.9560547, 0.23010254, 1.1240234, -1.4267578, 4.2890625, 1.7148438, -0.50097656, -1.0654297, 0.70166016, 0.41259766, 1.7578125, -0.05230713, 2.140625, 2.8925781, -0.15930176, 1.6660156, 0.7739258, -1.2382812, 0.73095703, 1.1875, 2.4296875, -2.5351562, -0.12322998, -0.27172852, -1.5371094, -1.4335938, -0.42749023, 0.6269531, 4.3398438, 0.5942383, -3.5449219, 1.9589844, -2.4941406, 1.3095703, 0.039886475, -1.7910156, -1.0644531, 1.0107422, 1.3583984, 1.3466797, -0.80078125, 0.06695557, -1.7558594, -1.8603516, -0.20385742, -1.3115234, -0.63671875, 1.4628906, -0.28051758, -0.73876953, -2.5097656, -0.4658203, -3.2324219, 0.35766602, 1.375, -2.484375, 1.34375, 0.97265625, 2.2304688, 2.1914062, -0.33398438, -1.5166016, -0.92626953, 1.2246094, -0.44555664, 0.48510742, -1.0966797, -3.0175781, -0.84228516, -0.7260742, 0.5371094, -1.7041016, -1.0634766, -1.2412109, -2.3964844, -2.9765625, -1.8027344, 0.7392578, -2.4589844, 0.04437256, -0.6899414, -1.2587891, -1.9023438, -2.8730469, -0.7319336, -2.4023438, -1.0605469, 2.5859375, -0.9638672, 1.1005859, 0.6826172, -2.9453125, 0.6225586, 0.5996094, -1.0839844, -0.9394531, -2.1757812, 0.30664062, -0.91064453, 0.25463867, -1.7324219, 1.3769531, 1.7919922, -0.77685547, 1.3759766, -2.4628906, -1.4599609, -0.6430664, -0.17175293, -0.9819336, 0.46948242, -1.4931641, -1.0341797, 1.3457031, -0.29077148, 3.0566406, -1.9472656, 1.6669922, -1.0273438, 1.3691406, 1.1220703, 0.10076904, -2.3183594, 0.48120117, 1.25, -0.7524414, -0.5097656, -3.1933594, -1.5009766, 0.1809082, 1.3212891, -1.6171875, -0.4338379, -1.4785156, 2.6464844, -1.7578125, -0.4243164, 0.24523926, 0.68603516, -1.1503906, -0.81689453, -2.7011719, 0.47558594, -2.5917969, -1.6220703, -0.19348145, 0.97802734, 0.69970703, 0.5600586, 2.5253906, 0.74658203, -0.07196045, -0.5395508, -4.0585938, 2.4882812, -0.49316406, -2.6640625, 0.78808594, 1.5107422, -2.2226562, -2.8320312, -0.7026367, 3.5566406, 1.2724609, 3.8378906, -0.9145508, -0.46166992, -0.14880371, 0.23791504, 0.9785156, -0.92529297, 0.40478516, 3.1210938, -2.0742188, -1.4541016, -0.9448242, 1.2851562, -1.1796875, -1.5380859, 2.0078125, -0.18103027, 1.2587891, 1.5605469, 0.016937256, 1.0751953, -1.9755859, 1.7607422, -0.7294922, -0.24987793, 0.57958984, -0.84472656, 0.15441895, -0.37768555, 1.7568359, 0.8666992, 2.2421875, 2.4160156, 1.5410156, 1.5585938, -0.43139648, 0.9033203, 0.83740234, 1.7646484, 0.51464844, 2.4394531, -0.4099121, 0.27856445, -0.7373047, -0.83935547, 0.90527344, -0.81103516, -0.6376953, 2.9863281, 0.6660156, 0.08666992, 0.88623047, 0.005168915, -0.7060547, -0.89160156, 0.62158203, -1.7021484, -0.43139648, 1.2646484, -0.4309082, -1.5927734, -1.7578125, 1.3710938, -0.38720703, -0.07611084, 0.1508789, 2.9804688, 1.0458984, -0.020050049, -0.058258057, 0.70654297, -1.2197266, 0.3408203, -0.96191406, -0.16052246, 0.3503418, -2.6679688, 0.38232422, -0.32739258, -2.3769531, -0.64990234, -0.74316406, 0.56689453, 0.89990234, 1.1728516, 0.7841797, -0.5522461, -1.9580078, -0.7504883, -2.9765625, 1.4951172, 1.2080078, -2.7363281, -1.0576172, 2.0449219, 1.3964844, 0.6801758, -0.3022461, 2.6445312, 0.69921875, -2.3691406, 2.5390625, -3.3789062, -1.1279297, -2.1308594, -4.765625, 1.3876953, -0.73828125, -0.75390625, 5.1601562, 0.4567871, 0.19763184, 2.2207031, -0.24658203, -3.3828125, -0.73339844, -0.26733398, -0.38500977, -0.21691895, -0.22241211, 0.9760742, 0.9223633, -1.0556641, -0.38378906, -0.7944336, -0.54785156, 0.62353516, 1.5126953, -1.0185547, 1.1806641, -2.3652344, 0.16723633, 0.32202148, -0.2084961, 1.4824219, -0.38476562, 0.4260254, -0.06008911, 1.9082031, -0.5024414, -0.6894531, -0.74658203, 1.1435547, 0.27929688, -1.3828125, 0.24938965, 1.1142578, 2.1484375, -0.055236816, -1.8193359, -2.2324219, 0.6352539, 0.3791504, -1.2167969, 0.7558594, -0.21276855, -2.7167969, 0.7661133, 0.31420898, 0.20385742, 1.8173828, -0.72216797, -3.1035156, 0.61621094, -0.92578125, -1.6699219, -2.0292969, 1.4775391, 1.0742188, -1.2832031, -0.39916992, -1.0146484, 0.8276367, -0.8383789, -1.1835938, -3.1640625, 2.5410156, 1.5976562, 1.3867188, 3.109375, -1.4931641, 0.43603516, 2.4140625, -1.1582031, 0.15136719, -0.7475586, -2.3867188, 1.0400391, 1.6210938, 1.8144531, -1.6943359, -1.2490234, 1.1005859, -2.1367188, 1.4326172, -2.3476562, 1.2558594, -2.0371094, -0.76464844, 0.3671875, -1.9755859, 0.79248047, -2.2695312, -1.5576172, 1.2304688, -0.53125, -1.4628906, -0.32910156, 0.014640808, 0.49731445, 1.7998047, 2.7734375, 1.2695312, -1.6533203, -1.5957031, 0.21447754, 1.0117188, -1.1376953, -0.06854248, -1.7978516, -0.8095703, -0.45239258, -0.55908203, 1.4667969, 2.0996094, 1.1611328, 3.2832031, 0.7910156, -1.3476562, 0.5136719, 0.9526367, -1.6953125, 1.6396484, 0.8120117, -2.1425781, 1.7666016, -0.12915039, -2.4472656, -1.1953125, 2.5507812, -0.34936523, 0.9428711, -0.9506836, -0.72558594, 0.5761719, -0.9995117, -0.2668457, 0.49902344, -1.1767578, 1.75, -0.2055664, -1.5566406, -0.9375, 0.4741211, 3.1757812, -0.9067383, -1.3085938, 2.6445312, -0.6074219, 0.7036133, 0.81884766, -1.4179688, -1.8476562, -1.8408203, 3.7421875, 1.3164062, 2.6835938, 0.1652832, 3.4355469, -2.8242188, 0.3161621, -1.3486328, 4.3164062, -2.6816406, -1.9501953, 0.4440918, -1.6210938, -0.8120117, -1.8779297, 0.9189453, 0.063964844, 1.8613281, 1.4482422, -2.7734375, -0.59814453, 0.24377441, -2.0351562, -6.2695312, -1.3779297, -0.28808594, -0.8857422, -0.08648682, 1.0820312, 1.4433594, 1.1591797, 0.8022461, -0.45581055, 0.56933594, -0.09020996, -1.2792969, -0.8798828, 0.18017578, 0.16247559, 0.21069336, 1.5605469, 1.8466797, -1.1875, 1.1328125, -2.2832031, -0.08502197, -0.6894531, -1.3779297, -0.20324707, -0.20483398, 0.4802246, -0.15576172, 0.60791016, 0.55371094, -3.2128906, 1.6533203, -1.9941406, -0.70703125, 0.76953125, -0.7524414, -0.0014333725, -0.4868164, -0.21813965, -1.3857422, -0.38183594, 1.1308594, 1.0380859, -2.0253906, 0.22729492, 1.4990234, -1.5537109, -0.79541016, 0.35083008, 0.8041992, 0.117492676, -1.0859375, 0.50146484, -1.9365234, -1.5771484, -2.2910156, -0.82177734, -0.4921875, 0.37841797, -2.265625, 1.3632812, 0.8803711, -0.22192383, 1.8271484, 0.07171631, -0.08013916, -2.1621094, -0.8779297, 1.5117188, 2.5, 0.73583984, -1.0498047, -1.1054688, -1.7412109, -0.78564453, 0.33129883, 0.0647583, 0.46704102, -0.09899902, -1.0634766, -0.765625, 0.390625, 2.0996094, 1.3457031, -0.5527344, -0.9633789, 0.5288086, 1.7666016, -1.1201172, 1.8447266, -0.2626953, 1.5654297, -0.16088867, 4.1367188, 0.09820557, -1.8662109, 0.99316406, -1.9257812, 0.053741455, -0.3112793, -1.4013672, -0.11584473, -0.3425293, 0.52685547, 0.8408203, -0.4008789, -2.3769531, 2.2070312, 1.1162109, 0.032318115, -0.22497559, 2.7617188, 0.79345703, 1.9873047, 1.6865234, 1.8994141, 0.4543457, 1.2285156, 0.78759766, -0.73291016, 1.9746094, -0.8198242, 0.0317688, 0.5776367, -0.4716797, -0.9868164, 3.25, 0.72021484, 2.1425781, 0.09777832, 1.7724609, 3.2988281, 2.2148438, 2.0371094, 0.3947754, 1.7353516, 1.4433594, -0.45751953, 0.8823242, 1.3808594, 3.4921875, 0.8647461, -1.34375, 0.5732422, 0.43847656, 0.66064453, 0.2980957, -0.06561279, 0.33007812, -3.1152344, 2.0390625, -1.0126953, 0.04071045, -2.0800781, -0.32177734, -0.2841797, -0.50390625, -1.0419922, 1.7539062, 5.0546875, -0.2199707, -0.59521484, -0.30395508, -0.6621094, 0.83447266, -2.9941406, -1.3583984, 1.2216797, -0.5180664, 0.021774292, -0.59277344, 1.7353516, 0.5732422, 1.9179688, 0.11468506, 1.9140625, 1.2363281, 1.8056641, -1.6220703, -0.14025879, 1.1943359, 2.25, -0.55615234, 0.10534668, 1.8613281, 0.35864258, -3.1230469, -1.3740234, 1.5058594, 1.3652344, 1.4130859, 0.69970703, -1.6572266, 1.8261719, -0.5463867, 0.9638672, -0.89208984, 1.6914062, -0.27026367, -1.5283203, 0.097595215, 0.07989502, 0.9716797, 1.875, -0.69970703, -0.4140625, 0.84033203, 0.5175781, 2.5976562, -0.4802246, 2.2988281, 0.05493164, 0.7583008, -1.7070312, 3.3925781, -0.5595703, 0.4128418, -2.5351562, 1.3662109, -0.20959473, -0.0005068779, 1.1669922, 1.0322266, -0.5332031, -1.0625, -1.0292969, 0.23449707, -0.6635742, -1.4287109, -1.7001953, 0.76953125, -0.3642578, -1.8779297, 1.03125, 2.4882812, 1.65625, -0.21887207, 3.0898438, -1.5244141, 2.4570312, 0.051330566, -1.7841797, 0.06768799, 0.9477539, -0.30004883, -0.10241699, -2.0175781, 2.2148438, 1.9873047, 2.1113281, -1.1689453, 0.08569336, 2.2421875, -0.05581665, 1.4199219, 0.21557617, -2.0488281, -0.27246094, 2.0585938, -0.064941406, 1.4199219, 1.8300781, -0.84033203, 1.2607422, -1.8925781, -1.2382812, -0.9345703, -0.4333496, -1.2666016, 1.5234375, 2.5214844, 1.2509766, -1.1992188, -3, -2.7558594, -0.78759766, -0.7597656, 2.3046875, -0.7709961, -1.4267578, -0.12414551, -0.98876953, 1.1787109, 1.5859375, -1.6005859, 0.6118164, -1.6113281, 0.28149414, 0.95166016, -0.06585693, -0.6621094, -0.42163086, 1.0712891, 2.5019531, 0.5131836, -0.65283203, 0.5605469, 2.9765625, -0.67871094, -3.8007812, 1.8164062, -1.7089844, 2.3125, -0.7685547, 1.0039062, 0.12670898, -0.17016602, -0.035461426, -0.8774414, -2.4570312]}, "B00BM9RD4Y": {"id": "B00BM9RD4Y", "original": "Brand: Mary Lake-Thompson\nName: Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4\nDescription: These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you'll find they're made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What's more, they're dishwasher safe. Just be sure to keep them from the microwave or oven.\nFeatures: They look like paper plates but they're actually durable melamine\nPrinted with summer BBQ food designs by Mary Lake-Thompson\nSturdy weight with a smooth matte finish\nGreat for garden parties, picnics and kids; matching platter also available\n9\" in diameter; dishwasher-safe, no microwave or oven\n", "embedding": [-3.0351562, -0.55371094, 1.7021484, -0.43286133, 1.3574219, -1.8964844, -0.73876953, -0.27856445, 0.33740234, -0.51904297, -0.86376953, -0.4802246, 1.9921875, -1.6748047, -0.31713867, 1.8261719, -0.87939453, -0.28100586, 0.7573242, -2.1074219, -0.023239136, -1.8496094, -2.3613281, -2.8203125, 3.5898438, -0.7421875, 1.0458984, -1.8837891, -0.26391602, 0.7524414, 2.6503906, 1.9873047, -0.9736328, 3.2109375, -2.2363281, 0.9902344, -0.117248535, 0.4296875, -1.4169922, -0.90185547, -2.0566406, -3.1894531, 0.796875, 0.4831543, -3.3710938, -1.9511719, -0.6982422, -0.58496094, -3.1269531, -1.3017578, -0.25219727, 0.9316406, 3.4628906, 0.80810547, -0.6381836, -1.6289062, -1.6240234, -0.38354492, 0.31469727, -0.25878906, -1.4130859, -3.484375, -0.8510742, 1.4824219, -0.74560547, -0.8613281, -1.1865234, -3.7851562, -0.96972656, 0.8178711, 1.0429688, 0.48413086, -1.4628906, -1.3251953, -1.7509766, -2.3710938, -1.1318359, 0.8959961, -2.6875, -2.1855469, -0.30688477, 3.3320312, 0.03744507, 0.34277344, -0.88427734, 0.045135498, -3.6601562, -1.5029297, 1.2041016, -0.052337646, 0.42529297, 2.5625, -0.32348633, -3.546875, 1.8408203, -3.2246094, 2.3808594, -1.8789062, 1.8974609, 0.7895508, -0.37939453, -0.028961182, -0.6147461, 2.78125, -0.4897461, 0.18981934, 2.4707031, -0.30126953, -0.29174805, -0.83691406, -1.4853516, 1.046875, 0.8774414, -0.78564453, 1.7617188, 2.3125, 2.0214844, 0.5004883, 1.3925781, 2.2363281, 3.7636719, -0.17944336, 2.1679688, -2.5585938, 1.8974609, 0.98095703, -0.12731934, 1.9550781, 0.34448242, -1.9814453, 0.16821289, -1.609375, -0.31176758, 0.98291016, -4.3632812, -3.6875, 0.5239258, 0.54003906, 0.89941406, 1.390625, 1.2685547, 0.56591797, 1.5009766, 0.94091797, -2.4199219, -0.7480469, -2.8125, 1.1298828, -1.1748047, -1.4570312, 0.078125, 0.21252441, 0.39086914, 1.0009766, -0.6850586, -1.5429688, 2.2148438, 0.21643066, 2.0429688, 1.7324219, 0.23046875, 1.5175781, -1.0234375, 2.0136719, 2.8691406, -0.7314453, 0.80078125, 0.47924805, 1.1894531, 4.4648438, 0.15405273, -0.4482422, 0.5214844, -1.4160156, -1.8574219, -0.9589844, 1.7236328, 0.5644531, -2.6972656, -2.4707031, -1.015625, -2.0859375, -2.1601562, 0.8339844, -0.7373047, -0.84472656, -1.1875, -0.6743164, -1.3164062, -0.44140625, 0.43554688, 1.4589844, -1.5869141, 0.09729004, -4.7148438, -1.5488281, -1.7226562, -1.3291016, 1.0195312, -0.95410156, 2.1269531, 0.49829102, -3.7734375, 0.0592041, 0.8564453, -2.9042969, -1.9267578, 0.53271484, -1.5117188, 1.7324219, -0.39575195, -1.2480469, -0.62890625, -0.6821289, -1.5175781, -3.1640625, -0.06561279, -0.4272461, -0.1048584, 3.2929688, -0.6743164, -0.56591797, -0.7763672, 3.5253906, -3.296875, -0.8178711, 1.3496094, 1.1347656, -1.9365234, 0.5175781, -0.36645508, 0.9238281, 0.41259766, -0.1776123, 1.7089844, 0.8535156, 2.3984375, -2.7285156, 0.55566406, -0.62597656, 0.6040039, -1.4619141, -2.1796875, -1.2763672, 1.1171875, 2.1230469, -1.3378906, 3.2871094, 2.2324219, -0.7441406, -0.28442383, 0.31933594, 2.3769531, 0.35107422, -0.9189453, 1.3251953, -0.054534912, -2.4921875, 0.0836792, -0.013725281, 3.2246094, -1.0498047, -0.96240234, -0.40307617, 1.9443359, 2.484375, 4.1914062, 1.2089844, -4.34375, 0.15710449, 0.8774414, 0.89404297, 0.068603516, -2.6992188, 0.59228516, 0.71777344, -1.6376953, 0.32177734, 1.6591797, -0.4074707, 1.6738281, 3.4492188, 1.4707031, 0.5029297, -0.59765625, 0.20324707, -1.9667969, 1, 1.2861328, 1.5429688, 3.5683594, -1.6728516, 1.6708984, 1.1240234, -2.6445312, 2.28125, 1.8330078, -1.8457031, 0.1616211, -0.6801758, -1.2851562, 0.6020508, 1.109375, -1.3720703, -0.35229492, -0.23913574, -0.11071777, -0.52490234, 0.3203125, -0.8222656, 0.72021484, -1.1464844, -2.6269531, -0.38793945, 1.0517578, -2.0253906, -0.5053711, -1.984375, 1.7089844, -1.53125, 0.16845703, 0.5107422, -1.8564453, -0.35620117, 1.7529297, 2.0253906, -3.2519531, 1.515625, 0.78759766, 3.3574219, 2.5273438, -1.7080078, 1.4023438, -1.4628906, -3.3730469, -1.8095703, -1.2382812, 0.12561035, 0.5029297, 1.2148438, 0.9453125, 1.2226562, -0.13171387, 0.36547852, -0.31835938, -0.7348633, 0.7373047, 1.1962891, -1.2548828, 1.6357422, -1.6142578, -3.5585938, -0.5175781, -1.734375, 1.0556641, -2.0546875, 1.9228516, 0.5083008, -2.0097656, -1.6318359, 0.037261963, 1.7998047, 1.8320312, -2.1289062, 0.3137207, 0.89990234, -0.36572266, -1.8710938, -0.2607422, 0.8383789, -0.1171875, -1.3330078, 0.5644531, 0.6567383, 0.58935547, -1.1953125, 0.35986328, 4.703125, -0.24707031, 0.7578125, -0.34399414, 0.28979492, -1.7050781, 0.50634766, -2.3515625, 1.7304688, 2.5820312, -1.9511719, 1.0839844, -1.5410156, -0.30908203, -0.73095703, 1.8554688, -0.90966797, 1.0429688, -0.18859863, 3.5234375, -1.3574219, -0.8300781, -1.640625, 1.7724609, 1.3837891, -0.07354736, -2.2128906, -1.4765625, -0.41210938, -3.5, -1.1972656, 2.5097656, -2.2246094, 1.9365234, 1.3554688, -0.90283203, 0.7426758, 1.3037109, -0.8408203, 1.1308594, -2.3515625, -1.6132812, 0.5991211, 0.9814453, -1.1582031, -0.00207901, 0.08660889, 1.390625, 2.0136719, 1.5009766, 0.36865234, 3.6074219, 0.62841797, -1.4765625, -0.7084961, 0.40698242, 0.7817383, -1.4589844, -1.9931641, -2.0585938, 1.7050781, 1.5830078, -1.7802734, -0.6152344, 0.8178711, 2.9140625, -1.3369141, 0.18835449, 1.2773438, -0.6230469, 0.18078613, 0.88671875, -1.4404297, -0.578125, 0.5136719, -0.18640137, -0.073913574, 3.7441406, 0.70458984, 0.66064453, 1.9091797, -0.69873047, 0.13708496, 0.99560547, -3.8164062, 2.3710938, 1.5341797, 0.12939453, 0.9145508, -0.4423828, -1.1103516, 0.91796875, 3.6601562, -0.71972656, -0.18383789, -2.6972656, 1.9775391, 2.171875, -3.9160156, 0.5546875, -1.5898438, -0.55859375, 0.14709473, -4.4296875, 4.6132812, -0.67578125, -2.109375, 1.4267578, -1.4550781, -3.6757812, 1.5263672, 2.1914062, -0.52490234, 0.38745117, 0.6347656, 3.1914062, 2.7246094, -1.1835938, -2.7246094, 0.921875, -1.3037109, 1.4765625, -1.2285156, -2.7480469, -1.2177734, -0.74658203, -1.0800781, -0.33813477, -1.2197266, -2.1308594, -0.47827148, -0.75634766, -0.32958984, -1.1826172, 0.011329651, 1.1171875, -1.9882812, -0.5761719, -3.0996094, 0.49902344, 2.3457031, 0.18591309, 2.5390625, -1.6201172, -1.8154297, -0.42773438, -2.2480469, 1.7011719, 0.91064453, -2.4785156, 0.5600586, 1.0458984, 0.33935547, -2.5449219, -1.3515625, 0.18737793, 1.2138672, -0.6894531, 1.4824219, 0.51123047, 0.6611328, 3.796875, 0.32641602, 0.42993164, 0.7939453, -0.22668457, -2.4003906, -1.4394531, -0.36376953, 1.3251953, 3.0625, -0.6870117, -0.2890625, -1.7451172, 1.1855469, 1.7304688, -1.21875, 0.94091797, 2.2929688, -0.9921875, -1.7929688, 0.18151855, 1.9130859, -2.1972656, -2.2363281, -0.5283203, 0.875, 3.828125, -1.6123047, 0.070739746, -0.73046875, -1.3759766, -2.0332031, 1.1484375, -0.86376953, 0.8730469, 1.6474609, -0.41455078, -1.9960938, -3.3242188, 1.4423828, 1.21875, 0.5126953, -0.6376953, -0.3635254, -2.4589844, -3.2753906, -1.5517578, 1.0263672, 1.4931641, -0.3959961, 0.47924805, 1.0175781, 0.8178711, -2.0566406, -0.3996582, -0.3334961, -0.08093262, -0.38183594, -0.7763672, 0.4794922, 3.0742188, -4.6875, 0.82128906, 0.70458984, 3.0605469, 0.96435547, 2.5214844, 3.5507812, -3.4238281, -2.5664062, 2.078125, -2.8808594, -0.02432251, 0.44213867, 0.3557129, 0.09564209, 2.7949219, -1.5214844, 0.35229492, -0.6635742, -2.0585938, -0.039764404, 0.9716797, -1.0537109, 1.2353516, 0.9379883, 0.66796875, 0.17944336, -0.39208984, 2.4589844, 0.6191406, 2.2636719, 1.0185547, 0.51904297, -0.18225098, 0.7866211, -1.4326172, 0.73291016, 0.73291016, 0.33203125, -0.21655273, -3.3027344, 0.15795898, -0.21533203, -0.3330078, -1.4472656, 1.1396484, 1.5107422, 0.9067383, 0.0119018555, -1.7851562, 2.3496094, 0.33007812, -0.30371094, 0.13146973, -0.049743652, -1.8066406, 2.171875, 1.4570312, -1.5224609, -0.6870117, 0.45654297, -1.4101562, 2.8085938, 0.27783203, -1.8964844, -1.1318359, -0.55859375, -1.71875, 1.6513672, 0.7919922, 0.22729492, 0.17602539, -2.046875, -2.4863281, -0.24084473, -1.859375, 0.8774414, -3.4492188, -0.51660156, 1.6367188, 0.6196289, 2.7441406, 1.1630859, -2.5390625, 0.45166016, 0.95654297, -1.8232422, -1.0390625, -0.9243164, -2.3613281, -0.6665039, 1.9746094, 2.5742188, -2.3457031, 1.0664062, 0.9868164, -1.4882812, 1.8798828, -2.96875, 1.1005859, -1.6015625, 0.8198242, 2.6171875, -1.9589844, 0.67822266, -0.11236572, 3.0449219, 1.9042969, -0.52783203, 0.2849121, -0.7788086, -2.5820312, 1.0195312, -0.7080078, -2.5019531, -1.5517578, -0.5854492, 1.59375, -0.45336914, -0.8222656, -0.01361084, -1.7548828, -0.27539062, 0.023071289, 1.3662109, 1.1103516, 1.2001953, -1.7089844, 1.4775391, -0.11340332, 1.5917969, -1.5957031, 0.68408203, 4.0234375, -2.6640625, -3.0917969, -2.6894531, 2.3046875, -0.8979492, -2.2773438, -0.27197266, -0.49169922, 0.80322266, 0.9526367, 2.0253906, -0.7050781, 1.640625, 0.3269043, -0.5449219, 0.7973633, 2.1210938, -0.48291016, -2.4648438, 0.31469727, 0.43530273, -1.71875, 0.9770508, 0.55371094, -0.09698486, -2.4355469, -0.24304199, -1.1728516, 0.9433594, 2.6308594, -1.1435547, 0.014144897, 0.84521484, 0.7919922, 0.24987793, -2.1582031, -2.1992188, -1.2490234, -2.0527344, -2.2246094, -0.4658203, 0.32421875, 1.515625, -0.30444336, 0.34179688, 2.9492188, 2.1601562, 0.65966797, -0.2121582, -1.4267578, 0.27001953, 2.3964844, 0.03845215, -1.9873047, -0.7685547, 1.2451172, -1.4550781, 0.7573242, 0.03793335, 0.6777344, -1.7695312, 0.15661621, 0.8925781, 1.5195312, 0.6870117, 1.9589844, -1.625, 1.0810547, 3.9941406, -1.7304688, 0.8935547, 0.55859375, 0.734375, -3.2109375, 3.7480469, 0.8964844, -2.4003906, 0.42016602, 0.3557129, -0.98535156, -0.73828125, -1.5771484, 1.3251953, 1.1816406, -1.6894531, -1.6738281, 1.15625, -0.09484863, 1.28125, -0.15820312, 2.7265625, 1.0048828, 1.6123047, -0.31054688, 2.5664062, 1.6552734, -3.2734375, 0.084106445, -0.8745117, -0.6777344, 1.0771484, 1.3671875, 0.35058594, 2.2675781, -0.27490234, -2.7753906, -2.0820312, 0.63964844, -0.35595703, 0.047027588, 1.0654297, 2.1230469, 0.22839355, 0.41503906, 3.6953125, -0.5107422, 1.9101562, 1.0869141, 1.7148438, 0.48266602, 1.7978516, -0.1027832, 0.5786133, 0.32348633, 1.8408203, -0.18151855, 0.9604492, -0.4885254, -0.45043945, -2.5761719, 0.54541016, 1.7011719, -0.92578125, 1.7949219, 0.23925781, -0.75439453, -2.046875, -1.1904297, -0.8442383, -0.81591797, 3.2050781, 2.0820312, -0.16027832, -0.13903809, 1.8496094, 2.6679688, 0.3486328, 0.828125, 0.52685547, 0.8203125, -0.98095703, 4.3164062, 3.0683594, 0.33642578, 1.4726562, -0.29956055, 1.5693359, 1.8632812, 1.7910156, 1.7089844, 1.6181641, 1.2021484, 0.38330078, -1.4394531, -0.55029297, 1.1484375, -0.5917969, 1.1679688, -0.99121094, -0.6152344, 0.19018555, 1.3320312, 0.5498047, -2.7128906, 0.36547852, -0.42407227, -0.97509766, -1.8447266, -0.6357422, 0.3251953, -1.609375, 0.31811523, 0.68359375, 1.7910156, 0.74365234, 1.3154297, -0.8901367, 0.8486328, 1.5683594, 1.0527344, 1.2626953, 0.83203125, -0.6542969, 3.0761719, -1.1328125, 5.3085938, 2.3457031, -0.7861328, 1.5292969, -0.39770508, -0.6074219, 0.8100586, 1.4238281, -2.3769531, 0.42919922, -0.94873047, 0.5498047, -1.0234375, 0.5180664, -1.0078125, -1.6933594, -0.78271484, 1.0673828, -4.1171875, -1.1748047, 3.1132812, 2.3164062, 1.1748047, 0.022384644, -2.8183594, 0.8959961, -0.34643555, -0.45581055, 0.828125, 0.29858398, 1.4990234, -1.1728516, 0.5205078, 0.74560547, 2.8085938, 1.140625, -0.44067383, 0.9848633, -1.4082031, -0.33544922, 0.7133789, 2.8789062, -1.2226562, 0.16967773, -0.008071899, 1.8740234, 0.13330078, 3.1152344, -2.3320312, -0.97314453, -0.57714844, -1.5996094, -0.6123047, -0.73095703, -0.8432617, -0.1809082, 2.4511719, 0.42822266, 0.023910522, 2.3300781, -1.9736328, -0.5253906, -0.62060547, 0.8017578, 1.7119141, -2.9746094, -0.77246094, 0.58691406, -0.36279297, 1.0380859, -2.3710938, 0.55078125, -0.34106445, -0.068359375, -1.4658203, 2.0585938, 1.4404297, -1.1806641, 1.1533203, 0.8881836, 2.8476562, -0.28149414, 0.29516602, 4.2382812, 1.0683594, -0.5732422, -0.6899414, 4.1015625, -0.2121582, -0.43359375, 0.58740234, -0.21435547, -1.6591797, -1.3554688, -1.5683594, 0.8964844]}, "B00KUJCH66": {"id": "B00KUJCH66", "original": "Brand: Grillaholics\nName: Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty\nDescription:

          THE SECRET TO GRILLING LIKE A PRO

          Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

          THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

          • Set of two 15.75\" x 13\" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
          • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
          • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
          • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
          • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
          • Note:\nFeatures: [Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you'll ever need. NEVER buy another grill mat again.\n[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat.\n[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze.\n[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\n[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you\u2019ll get a product you love or we\u2019ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.\n", "embedding": [-0.6538086, 1.8916016, 0.6201172, -0.5966797, 0.19335938, 1.2041016, 2.0976562, -0.98779297, 0.9399414, 1.9736328, -0.91796875, -0.79833984, 0.60009766, -4.0117188, 0.27172852, -0.22375488, 0.4892578, 1.4980469, 3.5214844, 1.4755859, 1.3027344, 1.1591797, 0.07312012, -1.6464844, 0.93115234, 0.04296875, 3.7128906, 0.39379883, 0.75439453, 0.65625, 2.2753906, 1.8027344, 0.09362793, 2.3398438, -3.8535156, -0.6586914, 0.1772461, 3.65625, 0.5419922, -0.0070266724, -1.5400391, -4.4570312, 1.8417969, 1.8564453, -1.875, 0.6928711, -0.5756836, 2.9042969, -0.33935547, -3.7304688, 2.0859375, 0.7133789, 1.9619141, 0.4753418, -2.3574219, 2.671875, -0.010696411, -1.9931641, -0.15014648, 0.13427734, 0.18640137, -0.48828125, -0.6582031, 1.3652344, -0.18200684, -1.8076172, 1.0839844, -2.1542969, -0.052642822, -2.4277344, 0.84033203, -0.62158203, -1.2001953, 0.7861328, -0.17736816, 1.0722656, -0.37451172, -0.09484863, -0.005836487, -2.3828125, -0.9067383, 3.8691406, -0.45214844, -0.6489258, 0.78125, -1.7011719, -3.7734375, 0.11633301, 2.2128906, -0.6826172, 0.95458984, 2.1171875, -2.7714844, -4.1171875, 0.14135742, -2.3242188, 1.4609375, -0.46533203, -1.2695312, 2.1152344, -1.3369141, -0.81591797, -0.3737793, 2.3828125, -2.8300781, -1.7519531, 2.7519531, 0.016204834, 1.1542969, -0.81396484, 0.89941406, 1.2304688, 0.77978516, 1.5214844, 2.0273438, 1.0097656, 0.46606445, 0.76904297, 1.9511719, 1.5693359, 3.765625, 1.1708984, -0.8027344, -2.3183594, -0.07476807, -0.5917969, 0.028396606, 2.890625, 2.4785156, -1.9785156, 0.43188477, -1.34375, -0.062683105, -1.1113281, -0.3173828, -1.7695312, -0.16894531, -0.16430664, -2.0175781, 1.7792969, 0.47070312, -1.1025391, 1.6220703, -1.0068359, -2.9902344, 0.0007967949, -3.3496094, 2.9414062, -1.8447266, -2.3007812, 0.36206055, -0.7084961, 1.34375, -0.18115234, 0.63623047, -1.0761719, 1.5136719, -0.48095703, 1.0068359, 1.0859375, 1.0595703, -2.5703125, -0.30078125, -1.1582031, 2.28125, -2.7460938, -2.0136719, 1.5078125, 0.22717285, 2.078125, 0.4128418, -1.7685547, 1.0722656, -0.5810547, 0.5834961, -0.54345703, 0.75146484, 1.6884766, -1.0771484, -0.69189453, 0.89941406, -2.4238281, -0.5258789, 2.1933594, 0.46923828, -0.859375, 0.41333008, -1.0371094, 0.35180664, -0.8496094, 0.23376465, 3.0527344, 0.3256836, 0.88378906, -1.8876953, -0.7709961, -0.36791992, -2.2167969, 1.265625, -1.1416016, 0.28564453, -0.62646484, -1.2939453, -1.4609375, -2.6308594, -2.1933594, -1.609375, 2.0585938, 2.0214844, 0.6040039, -0.5283203, -1.5683594, 1.9541016, 2.8691406, -0.74853516, -1.0888672, 0.43847656, -0.48388672, 1.7998047, 3.1855469, -0.97021484, -0.40014648, -0.6220703, 4.7226562, -1.9589844, 0.94628906, -0.27441406, 1.3779297, -1.3056641, -0.58935547, 1.1884766, 0.23156738, 0.80126953, -0.44213867, -0.41015625, 1.4345703, 2.46875, -0.6669922, -1.8662109, 0.37280273, -1.6513672, -0.35986328, -1.9287109, -2.0996094, -0.8222656, 0.1459961, -1.015625, 1.7539062, 1.265625, -2.1796875, -0.45898438, 3.8808594, 2.3671875, -1.0566406, -0.59765625, 0.25878906, -0.20581055, 0.4482422, -2.1855469, -0.22753906, -0.87890625, -1.1259766, 0.14794922, 1.3955078, 1.3789062, -0.73339844, 1.6943359, 0.5776367, -2.5097656, -0.81933594, 0.2541504, -0.74853516, -1.1376953, -2.2089844, 1.4462891, 0.29418945, -2.4355469, 0.80371094, 0.22192383, -1.8896484, -0.19909668, 3.3125, 0.49243164, 0.45458984, -3.0644531, 0.77978516, -2.0039062, -1.6826172, 0.7348633, 0.5361328, 3.8125, 1.953125, -1.0898438, 2.3144531, -0.17285156, -0.46533203, 2.15625, -0.2919922, -2.2304688, 0.4609375, -0.05065918, 2.1542969, -0.33251953, 1.2509766, -1.1552734, -0.38110352, 2.328125, -2.3027344, -0.92529297, 2.3789062, 0.17626953, -0.5756836, 1.5341797, 0.47851562, -3.0761719, -2.0625, 0.97998047, -1.4492188, 0.50634766, -1.3212891, -0.9008789, -0.73095703, -0.0758667, -2.8691406, -0.7626953, 1.4785156, -0.7348633, -0.46484375, 0.57373047, 0.11633301, 0.9067383, -1.5830078, 0.27514648, 0.16516113, -2.2304688, -2.0898438, -2.3085938, -0.21826172, -0.35986328, -0.1262207, -0.76464844, 0.73583984, -1.3730469, -0.00579834, -1.4179688, -2.9179688, -1.5957031, -2.0839844, -0.30395508, 1.2021484, -0.7998047, 0.5703125, 0.39404297, -3.7929688, 1.0058594, 0.7080078, 0.08648682, 1.1035156, -1.3544922, -0.1784668, 0.40112305, -0.33544922, 1.0234375, -0.15185547, 0.9086914, 2.9746094, -1.7460938, -2.9101562, 0.71435547, -2.0410156, 0.32128906, -2.3398438, -0.64746094, -1.7324219, -0.3840332, -0.97802734, 0.70166016, 2.1015625, -0.4169922, 1.5732422, -0.052978516, -1.1308594, 0.91259766, 1.6904297, -1.34375, -1.9912109, -0.2685547, -2.0351562, 0.18786621, -1.3642578, -1.2431641, -1.6884766, 0.19067383, -0.48706055, 2.0371094, 0.32128906, 3.5507812, -2.5273438, -0.1940918, -0.052581787, 1.2148438, -0.69921875, 0.35839844, -1.8710938, 0.0234375, -1.1123047, -2.1972656, -1.0283203, 1.4736328, -1.5566406, 1.1503906, 0.5908203, 0.60595703, 0.12536621, -0.90625, -1.2089844, 0.21875, -0.6982422, -1.1386719, 0.8442383, 0.53271484, -2.4863281, -1.2119141, -1.9960938, 2.8730469, 0.64746094, 0.75, 1.4863281, -0.016830444, 2.9941406, 1.09375, 0.9189453, 0.71484375, 1.1220703, 1.4970703, -1.453125, -2.2304688, 1.4912109, 0.16149902, -2.4160156, 0.25708008, 1.2890625, 1.0908203, -0.11450195, 0.6225586, 1.6162109, -0.28295898, -0.64208984, 2.8574219, -0.64501953, 0.38500977, -1.1132812, 0.33374023, 0.6977539, 0.2775879, 2.3535156, 1.9160156, 0.26123047, 0.7939453, 0.5180664, -1.2529297, -2.8476562, 0.8925781, 2.2871094, 1.1923828, -1.3769531, 2.2871094, -0.91552734, 0.46801758, 4.234375, -1.1992188, 0.109558105, -2.1503906, -0.5683594, 1.3955078, 0.16796875, -0.81347656, -2.0488281, -0.9213867, -0.6621094, -2.8828125, 0.96875, -2.1132812, -1.6855469, 1.3476562, -1.390625, -3.9199219, 1.3642578, 3.8632812, -2.2832031, -2.078125, -1.5712891, 3.0605469, -0.13146973, -1.1044922, 0.008621216, 1.5214844, -0.5722656, 2.2207031, 0.024932861, -0.77978516, 2.2109375, -3.09375, 1.8984375, 0.57958984, -2.1542969, -0.5961914, -1.6582031, 0.6777344, -0.29003906, -0.1673584, -0.15966797, 0.5161133, -2.0605469, 0.89501953, -1.8056641, 0.75, 0.07397461, -1.6708984, -0.33276367, 2.0117188, 1.5283203, 0.2692871, -0.6777344, 4.5664062, 2.0644531, -1.6142578, 1.5751953, -3.0722656, -0.51171875, -1.4589844, -3.1816406, -0.67626953, -1.1630859, -1.9316406, 4.6484375, 0.7426758, 1.703125, 3.375, -0.8647461, -1.1005859, 0.74121094, -2.46875, -1.8134766, -0.6484375, 0.6020508, 2.5683594, 1.7421875, -1.078125, -0.93408203, -1.1738281, -2.1367188, 1.0146484, -0.3959961, 0.63964844, -0.12176514, -2.7089844, -0.45166016, -0.14611816, 1.0273438, -0.25219727, -0.828125, 0.6767578, 1.0966797, 3.0917969, -1.9804688, 0.96435547, -0.16174316, -0.7602539, -1.0302734, 1.1044922, -1.2392578, 0.7089844, 4.2148438, -1.3486328, -1.5029297, -0.67578125, -0.43310547, 1.7021484, -0.22155762, -0.8730469, 0.8730469, -1.0400391, -0.42285156, -0.37573242, 2.34375, 1.6816406, -0.99609375, -1.3779297, -0.7895508, 0.37768555, -2.234375, -1.7451172, 0.30908203, -0.65966797, 0.22497559, -1.5849609, -1.6210938, 2.1464844, -1.6806641, 0.5805664, -1.3417969, 3.625, -1.1318359, 0.32592773, 5.28125, -3.1230469, 0.27001953, 2.8710938, -3.6601562, -1.0068359, 0.2668457, -0.83447266, -3.3339844, 1.1816406, 2.4707031, -1.0009766, -1.5820312, -0.36914062, 0.59277344, -1.2080078, -3.3320312, 0.9423828, -0.7402344, -0.26367188, 1.0957031, -0.30322266, 3.4238281, -0.73291016, 1.7119141, 2.6894531, 0.16540527, 0.5678711, 0.8066406, -0.5966797, 0.18127441, 1.5292969, 1.2695312, 1.9316406, -1.8369141, -0.6425781, 0.061767578, 0.75097656, -4.03125, 1.5410156, 0.43481445, 0.37304688, -1.3808594, -0.7807617, 2.1660156, 2.3574219, -0.27807617, 1.1347656, -0.17443848, -1.5947266, 1.3681641, 1.2578125, -2.1894531, 1.0371094, 0.5083008, -1.4257812, 2.3222656, -1.5097656, -2.1992188, -0.5566406, 0.80615234, 0.43359375, 0.2849121, -0.51416016, 0.9169922, 1.7773438, -1.0605469, -1.4296875, -1.5117188, -1.8291016, 1.3066406, -0.9760742, 0.4230957, -0.9824219, -0.44995117, 4.1796875, -1.6210938, -1.7431641, 1.4208984, -0.41235352, 0.008132935, -0.20629883, -1.4462891, -2.4785156, -1.5390625, -1.7841797, 0.93603516, 2.0996094, 0.36108398, 1.1933594, -2.0644531, 2.7890625, -3.1738281, 2.6035156, -1.7978516, -0.54296875, 3.1679688, -3.921875, -0.7285156, -1.5585938, 1.1181641, 0.7128906, 0.46484375, 1.0908203, -0.72314453, -1.7373047, 0.04019165, -1.1884766, -2.1289062, -0.953125, -0.07562256, 0.59033203, -0.6142578, -0.8183594, -0.22155762, 0.18774414, 1.4628906, 0.7373047, 1.6318359, 0.10217285, -1.7207031, -1.7558594, -2.3652344, -0.48266602, 0.58740234, 0.61328125, 0.09259033, 4.53125, -1.6542969, -1.7666016, -0.0032691956, -0.92285156, -3.1757812, -1.8994141, 1.4707031, 0.06903076, -0.054473877, 0.3137207, 0.75634766, -0.984375, 3.5527344, 0.27416992, 0.5595703, 1.3925781, -0.45043945, -0.50097656, -0.8540039, -4.6210938, 0.81103516, -3.8710938, 0.7548828, 1.1162109, -2.1738281, 1.0390625, 1.6386719, -2.265625, -0.96533203, 0.37158203, 1.2226562, 1.1679688, 0.35473633, -0.39868164, 1.2773438, -2.828125, -2.2597656, 0.98095703, -1.4482422, -1.6347656, -1.3242188, -0.16186523, 2.4941406, -0.08441162, 2.6152344, 0.59375, 0.5600586, -1.5996094, 0.20507812, 0.33276367, 0.34765625, 0.5239258, 0.0357666, -1.4628906, -1.7539062, 1.4082031, 1.03125, 0.5029297, 2.8046875, -1.0263672, -2.0546875, -1.2792969, 0.48266602, 1.3808594, 3.2675781, 0.83984375, -0.11505127, -0.9121094, -0.0736084, -1.7285156, 1.734375, 1.2685547, 3.3769531, -2.4726562, 3.7929688, -1.5419922, -2.8359375, 1.4980469, -0.14355469, -0.092163086, 0.24975586, -1.5683594, -0.7241211, -1.1054688, -1.3056641, -1.2158203, 0.54003906, -1.7441406, 1.4589844, 0.4050293, 0.75097656, -0.26635742, 3.2675781, 0.57714844, 2.7558594, 3.1972656, -0.41625977, -1.2910156, -1.3671875, -1.7236328, 0.21899414, 0.83154297, -0.7084961, -0.17163086, 0.20495605, -1.0986328, -1.6083984, 0.6928711, 1.0068359, 1.7001953, 0.24511719, 2.1542969, 3.8867188, 1.5507812, 2.9316406, 0.87841797, 2.4472656, 0.9448242, 0.1809082, 0.6010742, 3.9277344, 1.2470703, 1.3769531, -1.1777344, 1.5634766, 0.32055664, -0.27539062, 0.44995117, 0.10406494, -0.17626953, -0.78515625, 2.4199219, 0.49731445, 0.45263672, 0.24279785, 1.4091797, -2.5390625, -0.7104492, -1.5859375, 0.56396484, 3.6757812, 1.0458984, 0.19763184, 1.7626953, 1.7578125, 2.5605469, -3.6503906, 0.56103516, 1.4482422, -1.0693359, -1.7294922, 2.8320312, 0.25317383, 0.91308594, 1.3710938, 0.29711914, 0.7480469, 1.0605469, 1.5322266, 0.64990234, -0.48388672, -1.4511719, 1.5898438, -2.1484375, -2.1777344, -2.0644531, 0.25610352, -1.4462891, -1.7998047, 0.08294678, 1.3505859, 2.5878906, 0.8569336, -4.5859375, -0.37036133, 0.6870117, 1.7685547, -2.8222656, 0.3552246, -1.1025391, -3.2578125, -1.9931641, 1.0986328, 1.2939453, 1.21875, 1.2314453, -1.5888672, 1.9101562, 1.6816406, 0.73583984, 0.8745117, 0.37060547, -0.5620117, 2.1152344, -0.14416504, 4.6640625, 1.1777344, 2.328125, 0.0039863586, 0.2097168, 2.4355469, 1.1953125, 2.2226562, 0.6796875, -1.0732422, -0.82373047, -0.2775879, 0.30029297, -0.24328613, -1.2841797, -1.2578125, -0.16662598, -0.9091797, -2.1015625, -0.69091797, 0.6352539, 1.5732422, 1.9599609, 0.796875, -1.2783203, 2.3730469, 2.7207031, -1.1191406, -1.0380859, -0.6791992, -0.4169922, -1.2392578, -0.9770508, 1.2167969, 1.6396484, -0.14685059, -1.8359375, 0.28735352, -0.36157227, 0.7636719, 0.008865356, 1.3300781, -1.9589844, -1.7587891, 0.5229492, -0.29858398, 1.0800781, 2.5703125, -0.64208984, -1.4755859, -0.6464844, -2.2929688, -1.0947266, -1.046875, -1.9873047, 1.6630859, 3.4570312, 2.2402344, -0.46899414, -1.78125, -1.3115234, 2.8457031, -1.2705078, 2.5078125, -0.51953125, -1.1142578, -0.1538086, -2.1914062, 1.3398438, 1.0498047, -1.5058594, -0.31420898, -0.8984375, 0.41552734, -0.33154297, 1.6210938, 1.2607422, -0.42089844, -0.9746094, 2.8476562, 3.8574219, 2.0117188, 1.7460938, 2.7285156, 0.6645508, -2.2792969, -0.20825195, 0.20483398, 1.6757812, 2.2441406, 0.009048462, -1.0830078, -1.4414062, -1.0556641, -1.8642578, -0.26049805]}, "B06ZYM3MSW": {"id": "B06ZYM3MSW", "original": "Brand: Z GRILLS\nName: Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black\nDescription: \nFeatures: ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq\u2713bake\u2713roast\u2713braise\u2713smoke\u2713grill\u2713sear\u2713char-grill, you can do everything on here\nPELLET GRILL TECHNOLOGY - It\u2019s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill\nMAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady\nFOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180\u00b0 to 450\u00b0 F Adjustable temperature range gives you great flexibility for different food\nLESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly\n", "embedding": [-1.2851562, 0.41796875, 0.9375, -0.34423828, 1.3642578, 1.4990234, 1.3535156, 0.265625, -2.1855469, 1.2939453, 2.3027344, 0.79541016, -0.75390625, -1.5302734, 0.32495117, 0.3486328, 0.5786133, 1.2382812, 0.51171875, -0.27319336, 0.67089844, 1.5996094, -0.9526367, -2.8730469, 1.9414062, 0.7207031, 4.1757812, -2.1054688, -0.14257812, -1.1699219, 0.53222656, 0.16174316, -0.089660645, 1.5810547, -2.7597656, 0.24328613, 0.4951172, 0.39086914, 0.4453125, -0.6225586, -1.328125, -0.90966797, 1.0830078, 2.2382812, -3, -1.7373047, 0.18078613, 2.0234375, 0.22473145, -0.91015625, 1.1884766, 1.9394531, -1.2548828, 1.1572266, -1.1132812, 2.2578125, 0.3503418, -2.5078125, 0.68603516, 0.2467041, 1.2861328, -0.57714844, -1.8232422, 0.5058594, -2.3632812, -1.2089844, 1.1181641, -0.2692871, 0.39697266, -1.5810547, 1.8798828, 1.1083984, -0.43359375, 0.9580078, -1.2792969, -0.42651367, -2.9648438, 1.4482422, -0.13745117, -1.1542969, -1.5712891, 1.8730469, 0.07952881, -0.36010742, -0.08404541, -0.64697266, -1.1240234, 1.6376953, 1.5224609, -0.23376465, 1.5039062, -1.6425781, -0.67871094, -4.0625, 2.0761719, -0.8359375, -0.32226562, 1.0800781, -0.14489746, 1.328125, 0.9033203, 0.29467773, -0.5810547, -1.3828125, -2.4101562, -0.6254883, 2.0039062, 1.5673828, -1.2080078, -0.9707031, -1.0585938, 1.1660156, 2.0644531, 0.4387207, 1.7021484, -1.5205078, 0.75097656, 1.4033203, 0.60791016, 2.4160156, 2.6738281, 0.0062065125, -0.2130127, -0.8911133, -0.31640625, 0.0690918, 0.6118164, 0.22387695, 4.9257812, -1.6962891, -0.42456055, -0.6376953, 1.3583984, -0.8378906, -0.3100586, -1.7226562, -1.8388672, -0.22814941, -2.34375, -0.36035156, -0.86376953, 2.1132812, 1.6044922, 0.08868408, -3.7148438, -0.3149414, 0.81640625, 1.1337891, -0.2692871, -3.53125, 0.4807129, -0.74560547, -0.43408203, -2.1992188, -0.46118164, -0.57128906, -0.87353516, -1.2695312, 0.2800293, -0.5307617, 0.68603516, -1.1132812, -1.0800781, 1.0185547, -1.6210938, -1.6025391, 0.77490234, 1.7802734, -0.2644043, 2.21875, 0.5678711, -0.20336914, -0.014762878, -1.4423828, 1.5332031, -1.1474609, -0.4753418, 3.1953125, 1.4306641, -1.3730469, -0.70996094, 0.23413086, 0.14123535, -0.81689453, 0.34375, -1.0078125, 1.0029297, 2.3808594, 1.8232422, -2.3710938, 2.2480469, 1.7265625, 1.6816406, 1.2011719, 0.20898438, -1.390625, 0.17712402, -1.9375, 1.3466797, -1.1025391, 0.1574707, 1.1933594, -1.7060547, -0.49072266, -1.2148438, -0.9003906, 0.2421875, -1.2900391, 2.5878906, 1.6748047, 2.6679688, -1.1806641, -0.45043945, -0.20410156, 1.5117188, -2.3847656, 3.4492188, -1.875, 2.0546875, 1.3496094, -0.27392578, -0.22875977, 0.609375, 3.6308594, -0.5996094, 0.38500977, 0.83496094, 0.65234375, -0.61083984, -0.18969727, 1.4091797, 0.6191406, -0.9711914, -0.6142578, -0.022705078, 1.0810547, 1.6806641, 1.0664062, 0.40698242, -0.5292969, 0.6088867, 0.1899414, -1.1113281, -0.3984375, -1.6591797, 0.3798828, -3.7929688, 1.6826172, 0.69384766, -1.5927734, -1.046875, 1.9335938, 3.7148438, 0.5600586, -2.4394531, 0.2932129, -0.3564453, 0.15234375, -1.4472656, -0.85009766, 2.75, -1.3095703, 2.8789062, 0.5551758, 1.7763672, -0.8515625, 3.9140625, 0.9838867, 0.009315491, -1.0654297, -0.3798828, 0.21362305, 1.9960938, 0.01612854, 2.9003906, 2.1855469, -1.4423828, 1.0244141, 0.9980469, -0.44458008, 0.76171875, 0.78515625, 2.2617188, -2.2832031, -0.8466797, -1.0820312, -1.9951172, -1.5410156, -0.9355469, 0.10064697, 4.3789062, -0.42333984, -3.4550781, 1.2382812, -1.1171875, 0.77685547, -0.65527344, -1.8574219, -0.41748047, 1.1679688, 0.90966797, 1.1865234, 0.37231445, 0.4309082, -1.7470703, -0.9873047, 0.7841797, -0.5410156, -0.05065918, 2.0605469, -0.79003906, 0.57714844, -2.9277344, -1.0097656, -2.9277344, 0.4284668, 2.2890625, -2.4453125, 0.2849121, -0.0993042, 1.7392578, 1.6386719, -0.124694824, -1.3515625, -1.8964844, 1.6699219, -0.78564453, 0.7480469, -0.54345703, -2.90625, -0.45410156, -0.9819336, 0.046783447, -1.1074219, -1.9072266, -1.3759766, -2.2910156, -2.6933594, -2.1191406, 0.015419006, -2.3710938, -0.39160156, -1.8173828, -0.36914062, -2.1015625, -3.3398438, -0.69189453, -1.9267578, -1.1298828, 3.4433594, -1.3222656, 2.3867188, 1.0166016, -3.7578125, 1.0615234, 1.6298828, -0.46777344, -0.6088867, -2.9472656, 0.17834473, -1.078125, -0.21325684, -1.9824219, 1.0048828, 1.78125, -0.8027344, 1.1572266, -2.4375, -1.2314453, -0.6616211, -0.44628906, -1.4179688, 0.81933594, -1.2988281, -0.75439453, 1.0664062, 0.390625, 2.5722656, -0.9589844, 1.7275391, -0.4008789, 1.4326172, 1.0605469, -1.1171875, -2.6835938, -0.85253906, 1.078125, -1.2626953, -1.3867188, -3.1738281, -0.8203125, -0.41723633, 0.7426758, -1.5410156, -0.45361328, -0.94921875, 2.5625, -1.2158203, 0.20422363, 0.40478516, -0.17590332, -1.3789062, 0.546875, -3.171875, 0.83740234, -2.0214844, -2.0683594, -0.47509766, 1.4794922, 0.54052734, 0.8613281, 0.9453125, 0.8276367, -0.9091797, 0.045135498, -2.0449219, 2.3515625, -1.0556641, -2.125, 0.9819336, 0.30078125, -2.6289062, -2.1796875, 0.020370483, 4.4765625, 1.1992188, 3.1914062, -0.41357422, 0.5566406, 0.29370117, -0.1685791, -0.7583008, -0.25610352, 0.1739502, 2.9003906, -2.7167969, -1.0839844, -0.4807129, 1.4492188, -1.4453125, -1.3984375, 3.0253906, 0.30859375, 2.7929688, 2, 0.3239746, 0.99365234, -1.1396484, 1.6464844, -0.27734375, -0.84277344, -0.09020996, -1.1210938, 1.0810547, -0.077819824, 1.1630859, 1.8486328, 2.1738281, 2.9570312, 2.2929688, 1.6035156, 0.12487793, 0.94921875, 0.044769287, 2.8789062, 0.3857422, 3.4707031, -0.9267578, 0.74658203, 0.7836914, -1.2802734, 0.73339844, -0.60791016, -0.12841797, 2.609375, 1.2744141, -1.1044922, 0.76464844, 0.3293457, -0.85058594, -0.4111328, 2.0253906, -1.046875, 0.36108398, 2.0761719, -0.11608887, -2.6855469, -2.4746094, 0.021957397, -0.4050293, -0.42041016, 0.29492188, 2.9238281, 1.7636719, 0.36547852, -0.4182129, 0.55078125, -1.7402344, -0.012130737, -1.5117188, 0.38256836, 0.12548828, -2.0957031, 0.96875, 0.12890625, -0.14172363, -1.2050781, -0.5800781, 1.0888672, -0.5991211, 1.2939453, 1.2001953, -0.96972656, -2.8183594, -0.74658203, -3.25, 1.7509766, 0.5761719, -5.0117188, -0.8046875, 1.9716797, 1.3847656, -0.008651733, -0.9975586, 2.5546875, 0.045898438, -1.1367188, 3.3652344, -2.3046875, -0.64453125, -2.5429688, -4.390625, 1.4248047, -1.3007812, -0.7558594, 5.03125, 1.3701172, 0.359375, 2.5058594, 1.0136719, -3.2207031, -1.5146484, -1.0341797, -1.109375, -1.5673828, -0.9160156, 0.54003906, -0.022033691, -2.4746094, -0.5390625, -0.46972656, -0.37817383, 0.7553711, 0.734375, -1.7412109, 0.7524414, -2.1269531, 0.35205078, 0.2220459, -0.1227417, 1.8896484, -1.6425781, 0.375, 0.6069336, 2.1953125, 0.25219727, -0.7236328, 0.06210327, 0.06970215, 0.27368164, -1.4921875, -0.12445068, 2.3789062, 2.15625, -0.26660156, -1.8173828, -2.0410156, 0.5415039, -0.18591309, -1.8603516, 0.07147217, -0.48608398, -1.7939453, 0.890625, 0.62939453, 0.10546875, 1.3876953, -0.7006836, -2.3417969, 0.6669922, -2.1757812, -1.8300781, -1.6513672, -0.6640625, 0.9501953, -1.2871094, 0.068847656, -0.44384766, 0.94628906, -1.1484375, -0.6152344, -2.1132812, 2.9746094, 1.5458984, 2.65625, 3.9570312, -0.1739502, 1.0683594, 2.3105469, -1.1298828, 1.5400391, -1.6240234, -0.56591797, 0.28588867, 2.0898438, 1.5048828, -1.2539062, -1.9111328, 0.86865234, -0.67578125, 1.9804688, -1.9570312, 1.5332031, -1.609375, 0.2746582, 0.13354492, -2.7636719, 1.1210938, -1.2451172, -1.6054688, 0.6489258, -0.30371094, -2.265625, -0.29516602, 0.29052734, 0.22070312, 1.4130859, 1.7314453, -0.20776367, -2.09375, -0.99902344, -0.47314453, 0.9140625, -0.33325195, 0.33325195, -0.30151367, -0.4416504, -0.33276367, 0.08514404, 1.6210938, 2.3496094, 1.3945312, 4.1953125, 1.03125, -1.8447266, 0.20581055, 1.1279297, -1.0361328, 1.9589844, 0.5834961, -2.1738281, 1.9765625, 0.7680664, -4.578125, -1.5908203, 2.5117188, -0.93115234, 1.1923828, -0.83984375, -1.0869141, 1.5634766, -2.2480469, 0.6279297, 0.5131836, -1.7451172, 2.1210938, 0.265625, -2.3535156, -1.6464844, -0.16442871, 3.0039062, -1.7509766, -1.3994141, 2.7421875, 0.16809082, 0.84716797, 0.33081055, -1.3828125, -1.1972656, -2.2246094, 2.5371094, 1.6855469, 1.0605469, 0.5444336, 3.0136719, -3.0371094, 0.18225098, -3.0117188, 3.34375, -4.6953125, -1.8876953, 0.58447266, -2.3398438, -1.4902344, -1.6142578, 0.48486328, 0.6645508, 2.5742188, 1.4472656, -2.5625, -0.98583984, 1.1796875, -1.9287109, -5.7226562, -2.4707031, 0.13562012, -0.40625, -0.08532715, 1.4160156, 0.4794922, 1.6103516, 0.5180664, -1.8388672, -0.2133789, -0.40649414, -2.5214844, -0.67089844, 0.21289062, 0.3918457, -0.3076172, 1.2636719, 2.7070312, -0.93115234, 1.1230469, -2.6894531, 0.8598633, -0.52197266, -1.2792969, 0.6015625, -0.07086182, 1.1289062, -0.072509766, 0.18920898, 0.7734375, -2.6132812, 2.5839844, -0.578125, -0.57910156, 0.71191406, -1.3164062, -0.6870117, -0.41577148, 0.03326416, -1.3271484, -0.3334961, 2.3125, 0.20739746, -2.7070312, -0.75, 0.20605469, -0.9267578, -0.9248047, 1.2910156, -0.09906006, -0.0690918, -1.0898438, 0.69140625, -2.3027344, -2.0058594, -1.8203125, -1.5791016, -0.75878906, 0.20483398, -2.03125, 1.6513672, 0.21948242, -0.8022461, 1.4746094, 1.0097656, -0.10644531, -2.3671875, -0.03262329, 1.5419922, 1.7597656, 1.9179688, -1.0039062, -1.2216797, -1.0390625, -0.67529297, 0.5004883, -0.34692383, 0.86572266, 0.640625, -0.5317383, -1.2558594, 1.0986328, 1.8017578, 1.4853516, 0.66503906, -0.86865234, 0.15405273, 0.9614258, -0.92871094, 1.890625, -0.7294922, 1.5029297, -0.1550293, 3.3671875, -0.6635742, -2.7285156, 1.4716797, -2.453125, -0.10632324, -0.40844727, -1.2568359, 0.06210327, 0.93847656, -0.034301758, 0.37939453, -0.0087509155, -1.7519531, 3, -0.49291992, -0.6040039, -0.90771484, 3.2324219, 0.4260254, 2.6054688, 1.6923828, 0.99365234, 0.33984375, 0.77978516, 0.45458984, -0.63378906, 2.5332031, -1.7421875, -0.28637695, 0.29858398, -2.0449219, -1.9091797, 4.09375, 0.75097656, 1.9785156, 1.0332031, 2.0449219, 2.515625, 1.015625, 2.09375, 0.5649414, 0.042816162, 1.6240234, -0.8144531, 1.5283203, 0.91308594, 3.9101562, 1.2285156, -1.4199219, 0.5493164, 0.20019531, 0.62939453, 0.7001953, -0.13586426, -0.18591309, -3.4257812, 2.40625, -1.4306641, 0.5708008, -2.9277344, -0.30688477, -1.6386719, -1.2167969, -1.2285156, 0.5444336, 3.6992188, 0.035736084, 0.24084473, 0.36645508, 0.099853516, 0.8305664, -3.7929688, -1.6474609, 1.3193359, -0.9140625, 0.52734375, 0.5449219, 1.625, 0.029907227, 2.0253906, -0.42919922, 2.6386719, 1.6630859, 0.7055664, -0.75097656, -1.2197266, 0.55908203, 1.4990234, -0.18237305, -1.3945312, 0.6020508, 0.68066406, -2.4042969, -2.4550781, 1.2460938, 0.19335938, 2.5585938, 2.0722656, -1.8173828, 1.8535156, -1.6875, -0.5317383, -0.63671875, 1.5117188, -0.12084961, -0.5776367, -1.6025391, -0.22229004, 1.8447266, 2.2695312, -0.5229492, -0.5493164, 0.8251953, 0.0128479, 2.2597656, -0.59521484, 1.6992188, -0.6855469, 0.42871094, -2.1230469, 3.3144531, -0.33862305, 0.9448242, -1.2226562, -0.039764404, 1.1064453, 0.041015625, 0.13684082, 1.7939453, -0.91064453, -0.9091797, -0.75927734, 0.7397461, -0.024780273, -2.6425781, -2.3945312, 1.7685547, -0.09094238, -2.8886719, 0.059326172, 3.6152344, 1.7197266, 0.8833008, 2.828125, -1.9746094, 2.0488281, 0.4807129, -0.16809082, 0.14208984, 1.1298828, -0.15112305, -0.29125977, -2.3144531, 2.0351562, 2.3125, 1.6083984, -0.42382812, 0.87109375, 2.0917969, 1.3681641, 0.57373047, -0.33496094, -1.6005859, -1.0830078, 1.7128906, -0.39331055, 2.0097656, 1.8193359, 0.0993042, 0.5864258, -1.1054688, -1.0380859, -0.38793945, 0.4362793, -1.3808594, 1.9423828, 3.4238281, 1.7109375, -0.5307617, -1.5927734, -2.1855469, -0.5473633, -0.39111328, 2.3359375, -0.54003906, -1.6738281, -0.5214844, -0.39453125, 0.30688477, 1.6552734, -3.0292969, 1.140625, -2.9863281, 0.6557617, 0.4428711, 0.40820312, -0.48486328, 0.15356445, 1.5302734, 3.5136719, 0.38671875, -0.37353516, 0.030136108, 2.5644531, 0.9980469, -3.296875, 0.63183594, -1.7236328, 1.9482422, -0.38183594, 1.1054688, -0.90283203, -0.19372559, -0.8330078, -1.7275391, -2.4121094]}, "B07VW72J5D": {"id": "B07VW72J5D", "original": "Brand: Taimasi\nName: Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women\nDescription: \nFeatures: [Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily.\n[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears.\n[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use.\n[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below.\n[The Best Gift]: It is a great gift for any occasion, perfect for father\u2019s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!\n", "embedding": [-2.3046875, 2.9355469, 3.1269531, -1.2548828, 0.9267578, -0.13623047, -1.0117188, -1.0380859, 1.6083984, 2.1757812, 0.2548828, -0.7128906, 0.27270508, -1.9140625, -0.8569336, 1.4775391, 0.37768555, 0.19494629, 2.1230469, 2.5722656, 1.2763672, 0.031982422, 0.34423828, -0.4699707, 2.703125, -1.2451172, 4.7265625, -2.5507812, 1.7548828, -0.43823242, 2.0039062, 1.4892578, 0.42285156, 1.3603516, -2.4003906, -0.43579102, 0.6020508, 0.7714844, -0.3720703, -0.38452148, 0.32128906, -1.078125, 2.4492188, 0.95703125, -3.3417969, -0.6176758, -1.5273438, 3.0332031, -1.8652344, -4.7773438, -0.60302734, 1.078125, -0.0770874, 1.6982422, -1.8505859, -0.8071289, -1.6132812, -2.2949219, 2.4433594, -0.18041992, 1.6962891, -1.0654297, 0.20996094, -0.82128906, 1.3007812, -1.1796875, 1.1269531, -2.1308594, 0.22558594, -0.5786133, -0.14318848, -0.16235352, 0.46777344, -0.5761719, -0.35595703, -0.65234375, -0.8027344, 1.0722656, 0.14953613, 1.4072266, -1.3525391, 2.4609375, 0.64453125, -3.3847656, 1.3076172, -0.77197266, -0.80859375, -0.1439209, 0.70947266, 0.2524414, -2.2949219, 2.2832031, -1.15625, -4.8164062, 3.2460938, -2.1425781, 1.1123047, -0.71484375, 0.13183594, 0.46606445, -2.3046875, -0.6328125, 0.74902344, 2.3457031, -2.84375, -1.5029297, 0.05899048, 0.8598633, -1.5449219, -0.8691406, -1.8417969, 0.20629883, -0.06378174, 1.0341797, -1.9804688, 0.9267578, 0.30786133, -1.5556641, 0.8925781, 2.0742188, 2.9003906, 0.44628906, -1.0244141, -2.1425781, -0.99316406, -0.22753906, -0.4711914, 3.0449219, 2.9160156, 0.27416992, -0.6308594, -2.4726562, 0.01537323, -0.80322266, 0.36987305, -2.4023438, -1.171875, -0.41748047, -2.8105469, 2.796875, 0.2824707, 1.5175781, 2.234375, -0.53222656, -2.8242188, 0.34570312, -0.90771484, 1.3769531, 0.068115234, -1.1962891, 2.0371094, -1.671875, -0.48706055, -1.5253906, 2.65625, -0.51708984, 0.92089844, 1.0800781, 2.078125, 1.5927734, 0.1928711, -2.0898438, 0.14453125, 0.68310547, 1.0908203, -3.4667969, -0.7661133, 3.0371094, 0.07385254, 1.4267578, 0.8647461, -4.3515625, 1.2119141, -0.8442383, -1.2539062, -0.9667969, 1.3037109, 2.7734375, 0.8022461, 0.2836914, 2.3144531, -3.5390625, -0.5859375, 2.2617188, -0.043029785, -1.9863281, 0.79589844, -1.0576172, 0.8808594, -1.2021484, 1.5771484, 2.1640625, 0.33203125, 0.5625, 1.2939453, -2.6132812, -0.54541016, -0.6166992, -0.24829102, -0.7290039, -0.76464844, -1.296875, -0.4555664, -0.6801758, -0.8779297, -2.8242188, -0.79345703, -0.7558594, 2.5664062, 2.5058594, 1.0009766, -0.6118164, 1.0185547, 1.3095703, 0.64160156, -1.7148438, 0.296875, -1.1806641, 0.56884766, 0.83154297, -0.91259766, 0.04449463, -1.1728516, 3.1640625, 1.3798828, 0.8725586, -1.0332031, 1.9775391, -0.55322266, -0.3581543, 0.55078125, 0.6748047, 0.484375, -0.44335938, -0.23486328, 0.85498047, 1.3486328, -1.8828125, -0.88134766, -1.3359375, 0.17126465, -1.8486328, -0.93310547, -1.3388672, -0.72265625, -1.3466797, 0.08227539, 0.8754883, 0.89990234, -2.0976562, -0.121032715, 1.5898438, 2.2089844, 0.33862305, -0.5073242, 1.2011719, -1.2509766, 0.28881836, -3.1132812, -0.4206543, 2.5234375, 0.76953125, 1.0332031, 1.0351562, 0.26513672, -0.22473145, 3.1660156, -1.8066406, -1.7939453, 0.8701172, 1.2685547, 0.72802734, -0.032684326, -1.8867188, 3.1191406, 1.9833984, -1.0224609, 0.30493164, 1.5029297, -0.9165039, 0.5361328, 0.63720703, 1.7939453, -1.3681641, -0.11328125, -2.2792969, -1.2011719, -0.27807617, 0.91503906, 2.5839844, 4.6054688, 0.69628906, -1.8310547, 4.4335938, -2.0410156, 0.7236328, 1.4648438, 0.84033203, -0.47070312, -1.2558594, 0.34814453, 2.0566406, 0.040130615, 0.5107422, -1.4316406, 0.090270996, 1.5722656, -1.0283203, 0.67871094, 1.3769531, -0.68847656, 0.34765625, 0.5136719, 0.9423828, -1.7753906, 0.13415527, -1.8359375, -1.3583984, 0.85839844, 0.25512695, 0.5756836, 1.6074219, -0.4013672, -2.5664062, 0.39868164, 1.2529297, -1.1640625, 0.8305664, 1.6152344, 0.4338379, 1.6474609, -0.8144531, 0.109558105, -1.8583984, -1.6660156, -0.3227539, -0.91259766, -0.70654297, 1.8154297, -0.44995117, -0.20983887, 0.6508789, -2.2597656, 0.24169922, -1.5644531, -3.0449219, -2.5605469, 0.65966797, -0.18334961, 0.53125, -1.2246094, 0.30664062, 0.61279297, -3.9023438, 0.16040039, -0.5019531, 1.3837891, 0.14746094, -1.6796875, 2.015625, 0.48168945, 1.53125, 1.5849609, 1.5341797, -0.45263672, -1.0517578, 1.5214844, -2.0058594, -0.19335938, -1.9609375, -0.19824219, 0.006175995, 1.0341797, -2.0332031, -0.1986084, -1.3496094, -0.6972656, 1.8710938, -1.3212891, 2.21875, 0.99072266, -1.4160156, -0.79833984, 0.16931152, -0.111572266, -1.8232422, 2.0351562, -0.59277344, 1.3984375, -0.8461914, 1.3291016, -2.625, 0.12005615, 0.63916016, 2.6738281, -0.44848633, 1.3896484, -1.6962891, -2.234375, 0.7026367, 1.1992188, 1.4638672, -1.0087891, -1.6582031, -0.2836914, -1.5615234, 0.66503906, -0.9790039, 2.1582031, -2.0058594, -0.68652344, 0.5463867, 0.69921875, 0.31689453, 0.39086914, -1.7255859, 0.7817383, -0.41015625, -1.6308594, -1.3261719, 0.29174805, -2.6972656, -1.6855469, -0.27172852, 2.5839844, 0.41552734, 1.7001953, -0.18908691, -0.007259369, -0.18884277, 0.84521484, 0.8027344, 0.2998047, 1.4248047, 0.2310791, -1.3427734, -2.4550781, 2.1523438, 0.43530273, -3.2519531, 1.6689453, 0.77734375, 1.6533203, 0.5888672, 0.80126953, -0.18408203, 0.6826172, -0.97509766, 2.8789062, 0.027282715, -0.7470703, -2.6894531, 0.7910156, -0.50878906, -1.9257812, 0.9355469, 1.4140625, 0.10626221, 2.0078125, 0.60302734, -1.0576172, -2.1933594, -0.13989258, 0.5449219, 1.2773438, -1.6582031, 0.5942383, -1.6933594, -2.1484375, 0.515625, -0.47509766, 0.39453125, -2.6523438, -0.28759766, 1.9980469, -0.27612305, 1.0791016, -0.57958984, -1.1445312, -0.77734375, -2.1523438, 0.6689453, -1.3496094, -2.3691406, 0.7416992, -0.32763672, -0.9926758, -0.46020508, 2.5234375, 1.0947266, -0.32666016, -1.2734375, 2.5039062, -1.7314453, -0.98535156, -1.7460938, 1.3330078, -1.2597656, 1.7587891, -0.7680664, -0.33691406, 2.53125, -3.7578125, 0.81884766, 1.0693359, -2.1367188, 0.6582031, 0.5834961, -0.2758789, 1.0458984, 0.48510742, -0.2602539, -0.06890869, -2.1191406, 0.4230957, -2.7109375, 1.9394531, 0.46606445, -0.9711914, 0.6801758, 0.16296387, 0.9633789, 2.1386719, -1.2246094, 3.7167969, 1.1162109, -3.3417969, -0.44262695, -2.6503906, -1.4667969, -1.3466797, -1.8310547, 0.4831543, -0.50927734, 1.8046875, 1.4599609, 0.7705078, 0.9169922, 3.8320312, 0.28271484, -2.0839844, -0.52001953, -0.34399414, 0.6982422, 0.27441406, -0.10827637, 2.21875, 0.14892578, -0.17712402, -2.375, 1.3466797, -1.8310547, 1.7304688, -0.7470703, -0.17370605, -0.15710449, -1.0458984, 0.17663574, -0.7470703, 0.15258789, -1.7265625, -2.5273438, 0.8183594, -0.61035156, 2.484375, -1.2304688, 0.21838379, -2.4511719, 0.59228516, 0.18041992, -2.3261719, -0.8149414, 1.1425781, 2.1640625, -0.5332031, -1.5097656, 1.7802734, -0.47802734, 0.57373047, 0.6010742, 1.0947266, -0.2553711, -2.25, -0.3876953, 0.9433594, -0.921875, 2.2304688, 0.25024414, -1.9472656, -0.46240234, 1.9375, -1.9482422, -3.1621094, 0.8417969, -1.5302734, 0.2800293, 0.85058594, -0.57666016, 2.3242188, -1.8007812, 0.3239746, -0.42236328, 1.8144531, 1.4580078, -0.20202637, 4.6054688, 0.043121338, -0.7714844, 1.1142578, -1.5292969, -1.7773438, -0.5151367, 0.3564453, 0.76464844, -0.053649902, 0.65771484, 0.13977051, 0.97753906, -0.5175781, 0.9838867, 0.022964478, -1.2167969, 3.40625, -0.5654297, -1.8613281, -0.29223633, -0.75439453, 3.296875, -0.0012493134, 1.1962891, 0.8598633, -0.36450195, -0.5385742, -0.23486328, 0.23132324, 0.030151367, 0.3618164, 2.390625, 2.4375, -1.6523438, -1.3525391, 0.19921875, 0.49267578, -0.5029297, 1.7089844, 1.609375, 1.8417969, -0.5786133, -1.4052734, 2.1367188, 1.6474609, -1.0390625, 2.7890625, 0.04586792, -2.375, 0.62158203, 1.9609375, -2.9179688, 0.05670166, -1.453125, -1.1289062, 0.74316406, -0.21459961, -0.99316406, -0.23254395, 0.95214844, -0.9741211, 0.14318848, -3.0019531, -0.6044922, 0.7885742, -3.2929688, -0.42529297, -0.9946289, -0.890625, 0.6098633, -0.9326172, -0.24511719, 0.5566406, 0.8701172, 4.4335938, -1.8613281, -0.89941406, 0.44848633, -1.0400391, -0.27856445, -0.67529297, -2.4296875, -2.140625, 1.0800781, 1.9404297, 3.3261719, 0.35961914, 1.0410156, 1.5703125, -1.3642578, 2.2011719, -1.8232422, 2.3105469, -0.88183594, 0.7290039, 1.7978516, -2.5820312, 0.31323242, -1.6044922, 2.2089844, -0.9584961, 0.99121094, 0.44189453, -1.8896484, -0.9980469, 1.1816406, -1.0605469, -3.5761719, -1.1845703, -0.35791016, 1.6728516, 1.9404297, -0.10119629, 0.29736328, -0.85302734, -1.6162109, -1.0136719, 0.75927734, -0.78222656, 1.6494141, 0.44995117, -2.7070312, 0.4909668, 0.47973633, 0.20788574, 1.0517578, 3.6757812, -1.6025391, -2.7480469, -1.2373047, 0.025039673, -2.1699219, -1.3476562, 1.0537109, 0.4345703, -0.94384766, 1.3291016, 1.65625, 0.19274902, 0.47314453, 0.19848633, -0.7480469, -0.83203125, -0.37060547, 0.42797852, -1.4384766, -2.5683594, -0.48486328, -3.2109375, 1.4638672, 0.48657227, 0.93652344, 2.3867188, 0.38134766, -1.5449219, -1.2451172, -0.6977539, 1.15625, 0.88623047, 0.7270508, 0.8383789, -0.1730957, -2.4746094, -1.390625, 1.1298828, -0.7729492, 1.1308594, -3.0449219, 0.026367188, 1.7158203, 0.19665527, 0.2932129, -0.70654297, 1.0195312, -3.1660156, -0.09020996, 0.5341797, 2.6679688, 1.5166016, -0.8569336, 0.39257812, -2.8574219, -0.48486328, 0.8198242, -1.609375, -0.51464844, -0.9135742, -1.9638672, -1.4765625, 0.3972168, 0.6479492, 3.0351562, -0.29785156, -2.8457031, -0.81152344, 1.4746094, -1.9931641, 1.4902344, 1.9033203, 1.8183594, -1.3818359, 4.96875, -2.6191406, -2.7753906, 2.3359375, 0.5703125, -0.9794922, 0.49121094, -2.125, -0.890625, -0.5527344, 1.703125, -1.9267578, -0.7089844, -3.3828125, 0.14672852, 1.1591797, -0.34301758, 0.11578369, 2.4746094, 0.0033302307, 3.3066406, 2.078125, -0.42651367, -1.1474609, -1.09375, -1.6337891, -0.24414062, 0.72216797, 0.73876953, 0.5102539, 1.9990234, -0.0395813, -1.4912109, 2.0273438, 0.4567871, 0.22131348, -0.10241699, 1.7275391, 0.09222412, 4.5195312, 3.34375, -0.005680084, 2.2207031, 3.0917969, 0.35009766, -0.08093262, 2.4980469, 0.6557617, -0.9057617, -0.6894531, 0.2998047, -0.8720703, 0.12597656, -0.09466553, 1.6796875, -1.7119141, 0.36376953, 1.9277344, 0.050231934, -1.4589844, -2.1230469, 0.9916992, -2.2285156, -1.2539062, -1.4257812, -0.09899902, 3.6816406, 0.14685059, -0.32543945, -1.4042969, -0.8300781, 2.1777344, -3.2558594, 1.2041016, 1.0888672, 0.6767578, -3.9550781, 2.9296875, 2.5039062, 1.4111328, 1.3603516, 0.14758301, 1.3261719, 2.1289062, 0.5126953, 0.7763672, 0.22644043, -0.6801758, 1.828125, -2.2265625, -1.0058594, -1.0996094, -0.78125, -0.91064453, 0.36816406, 1.6513672, 0.12792969, 1.4042969, -0.3725586, -5.0351562, 1.0986328, 0.39672852, 1.5839844, -0.4465332, 0.30688477, 1.6035156, -1.8183594, -1.0517578, 1.4296875, 0.72753906, 1.6806641, -0.35083008, -1.8144531, -0.6376953, 1.1884766, 1.1064453, 0.89160156, 0.74072266, -0.76708984, -0.8618164, -0.22106934, 2.234375, 0.46020508, 1.6015625, -1.5097656, 1.4580078, 1.0839844, 1.7431641, 1.1474609, -1.0146484, -0.12347412, -0.86328125, -0.1381836, 0.64404297, 0.7817383, -1.2265625, -0.34326172, 0.12756348, -0.8051758, 0.953125, 1.5605469, 2.1347656, 2.5117188, 0.3154297, -0.4621582, -2.9882812, 1.6845703, 0.84716797, -1.5419922, -0.63671875, -0.65478516, 0.6381836, -1.5507812, -2.359375, 0.4416504, 1.7050781, -0.18457031, -3.1953125, 2.3535156, -0.43823242, 0.47436523, -0.056640625, -1.0703125, -1.6259766, -1.2314453, 0.5048828, 0.18432617, 0.10223389, 1.0361328, -0.36279297, 0.15649414, -0.28125, -0.64404297, -1.3632812, -0.7836914, -1.6894531, 0.14685059, 2.3886719, 1.3144531, -0.5136719, -1.3837891, -1.1767578, 2.3808594, -1.4648438, 0.82421875, 0.9790039, -2.0117188, -0.2064209, -2.15625, 2.0097656, 0.7651367, -2.5898438, -1.1025391, -0.96875, -2.3476562, -0.058624268, 1.9082031, 0.49560547, -1.4082031, 0.6738281, 2.4707031, 1.2265625, 0.5698242, 3.0292969, 1.5703125, 1.9716797, -1.6513672, -0.9472656, 1.2050781, 4.8085938, 0.6591797, -1.1445312, 0.7866211, 0.06311035, -1.1259766, -0.20617676, 0.009635925]}, "B081X7ZB4Q": {"id": "B081X7ZB4Q", "original": "Brand: Z GRILLS\nName: Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper\nDescription: \nFeatures: \u2605ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque.\n\u2605SEARING ENABLED: Temperature can goes as high as 1000\u2109. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode.\n\u2605PELLET GRILL TECHNOLOGY--\u2605 FLAVOR--There just isn\u2019t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you\u2019ll taste the difference from a GAS or CARBON grill; \u2605 ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; \u2605EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS\n\u2605EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. \u2605EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. \u2605EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. \u2605EASY TO MOVE--Upgraded cart with locking caster wheels.\n\u26052020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180\u00b0f to 450\u00b0f.\n", "embedding": [-1.4072266, 0.9267578, 1.1083984, -0.21740723, 1.1503906, 1.1894531, 1.1601562, -0.59814453, -2.40625, 1.1103516, 2.0644531, -0.36523438, -1.2216797, -1.9326172, 0.9169922, -0.04534912, 0.6503906, 0.6269531, 0.12719727, -0.57421875, 1.109375, 0.67285156, -0.1484375, -2.9746094, 2.4042969, 1.421875, 4.3945312, -2.1542969, 0.35717773, -1.0097656, 1.2431641, 0.76904297, 0.60791016, 0.6660156, -3.1816406, 0.14465332, 0.055786133, 0.9946289, 0.32226562, 0.25024414, -0.62402344, -0.5678711, 0.84375, 2.4160156, -3.2597656, -1.3115234, 0.21154785, 2.4414062, -0.40161133, -0.8310547, 1.6728516, 2.8691406, -1.71875, 1.6835938, -0.8725586, 2.0878906, -0.28320312, -2.4355469, 0.08215332, 0.26171875, 0.79833984, -0.94189453, -1.6982422, 1.0107422, -3.3808594, -1.34375, 1.2509766, -0.78125, 0.84228516, -1.4179688, 2.4023438, 0.81103516, -0.14013672, -0.005859375, -1.0166016, -0.39208984, -3.5625, 1.2148438, -0.1928711, -0.98583984, -0.97265625, 1.7597656, 0.113220215, -1.5761719, 0.36938477, -0.14489746, -1.0078125, 1.2900391, 2.0429688, 0.24328613, 1.3652344, -0.6010742, -0.74658203, -4.5, 1.6835938, -1.2236328, -0.28515625, 0.64746094, -0.24487305, 1.9599609, 0.51416016, 0.1685791, -1.7519531, -0.47338867, -1.8798828, -0.6694336, 2.3359375, 1.3613281, -2.5097656, -0.77001953, -1.671875, 1.1347656, 1.2314453, 0.2626953, 1.8105469, -2.0800781, 0.73291016, 1.5273438, 1.2939453, 2.4316406, 2.9238281, 0.4230957, -0.08087158, -1.2441406, -0.7661133, -0.110839844, 0.5053711, 0.19372559, 4.6523438, -2.4980469, -0.029022217, -0.5288086, 1.7978516, -0.3725586, -0.057128906, -1.015625, -1.6318359, -0.6923828, -3.1777344, 0.13415527, -0.83935547, 2.3867188, 0.8647461, 0.23181152, -3.2011719, 0.0038414001, 0.75878906, 1.6005859, 1.09375, -2.7890625, 0.11663818, -1.4130859, -0.94970703, -1.9716797, 0.06427002, 0.1361084, -1.28125, -1.8935547, 0.9355469, -0.3786621, 1.4882812, -0.8881836, -0.89501953, 1.9921875, -1.8613281, -0.47680664, 1.1738281, 1.3730469, -0.24304199, 2.4023438, 0.8305664, -0.5102539, 0.22729492, -1.0664062, 1.421875, -1.6103516, -0.03652954, 3.6699219, 0.74072266, -1.4179688, -0.5498047, -0.23046875, 0.021820068, 0.020858765, 0.4802246, -1.1279297, 1.5537109, 2.3300781, 1.1816406, -2.203125, 2.1015625, 1.5283203, 1.6689453, 0.5805664, 0.6381836, -1.1992188, 0.2166748, -1.3183594, 1.1123047, -1.0683594, 0.4892578, 0.5996094, -2.4980469, -1.15625, -1.2333984, -0.5683594, -0.9140625, -1.9052734, 2.2050781, 1.1650391, 2.5195312, -0.6455078, -0.11767578, -1.359375, 0.81347656, -2.9960938, 2.9765625, -2.1210938, 1.2978516, 1.5546875, -0.1652832, -0.011489868, 0.06732178, 2.4628906, 0.5883789, 0.53515625, 0.5258789, 0.2746582, -1.3457031, -0.33032227, 1.6933594, -0.15148926, -1.2783203, -0.65625, -0.5175781, 1.4335938, 1.7841797, 0.38452148, -0.3972168, -0.6982422, -0.42822266, 0.34179688, -0.5253906, -0.16516113, -1.4765625, -0.6850586, -3.6738281, 1.8173828, 0.25561523, -1.0078125, -0.33789062, 1.5595703, 2.6074219, 0.32885742, -2.3730469, 0.19055176, -0.84814453, -0.10131836, -1.1796875, -1.3066406, 2.7402344, -0.43017578, 1.8896484, 0.5571289, 1.6220703, -1.2255859, 4.2539062, 1.4990234, -0.55126953, -0.6254883, 0.57910156, 0.026153564, 1.8681641, 0.61572266, 2.2441406, 2.6191406, -0.86865234, 1.1904297, 0.50927734, -0.80566406, 0.44726562, 0.85498047, 2.578125, -2.8125, -0.19909668, -0.79248047, -1.5791016, -1.5576172, -0.7246094, -0.23583984, 4.453125, -0.3791504, -4.28125, 1.7900391, -1.9765625, 1.046875, -0.51220703, -1.6035156, -0.640625, 0.60546875, 1.8964844, 0.8496094, -0.43164062, -0.18066406, -1.9882812, -1.7666016, 0.18139648, -0.44677734, -0.5517578, 1.1044922, -1.0898438, 0.3330078, -2.7246094, -0.79345703, -3.0878906, -0.04397583, 2.296875, -2.6914062, 0.75390625, 0.51416016, 1.3925781, 2.0957031, -0.32592773, -1.96875, -1.5556641, 1.8867188, -1.3886719, 0.21154785, -0.85498047, -2.9335938, -0.2319336, -1.5078125, 1.0839844, -1.46875, -2.2480469, -1.6123047, -1.9287109, -3.6660156, -1.7900391, 0.97558594, -1.8339844, 0.06549072, -1.6943359, -0.26123047, -1.7255859, -2.5214844, -0.20629883, -2.8339844, -0.8618164, 3.3125, -0.68115234, 2.1582031, 0.96484375, -4.2304688, 0.48779297, 1.6230469, -0.7675781, -0.5053711, -3.4414062, 0.69384766, -0.984375, 0.23913574, -1.7939453, 1.4755859, 1.7236328, -1.0537109, 1.2998047, -3.1191406, -0.69140625, -0.59375, 0.3786621, -0.5600586, 1.2314453, -2.2363281, -0.94140625, 0.9868164, 0.18383789, 2.7675781, -0.66845703, 1.7949219, -1.2578125, 1.6054688, 0.8564453, -0.6352539, -2.8144531, -0.34448242, 1.2773438, -0.8798828, -0.8823242, -3.2421875, -1.3398438, -0.39916992, 0.8076172, -1.6123047, 0.73291016, -1.4980469, 1.7851562, -1.2402344, 0.15612793, 0.28149414, 0.4025879, -1.6875, 0.39331055, -3.21875, 1.1142578, -2.3242188, -2.1347656, 0.08026123, 1.2353516, 0.44555664, 1.0078125, 2.2675781, 0.80322266, -0.47509766, 0.027404785, -2.7265625, 2.4316406, -0.5961914, -2.8652344, 1.0039062, 0.7470703, -2.7089844, -2.1152344, 0.20373535, 4.0859375, 1.0878906, 2.7597656, -1.3652344, 0.27929688, 1.109375, -0.35083008, -0.1907959, -1.0400391, 0.53222656, 2.453125, -2.7363281, -1.3935547, -0.5, 1.1943359, -1.2783203, -1.5283203, 2.2910156, 0.26831055, 2.2675781, 2.5117188, -0.058685303, 1.1455078, -1.6113281, 1.3125, 0.027008057, -0.11987305, 0.8129883, -1.3564453, 0.6801758, -0.21679688, 1.2001953, 1.1835938, 2.6777344, 2.34375, 2.5898438, 1.0810547, 0.25830078, 0.4260254, 0.21057129, 2.375, 0.29541016, 3.1875, -0.28295898, 0.2590332, 0.8227539, -1.0625, 0.53222656, -1.6621094, -0.96191406, 2.9140625, 0.116760254, -0.5830078, 1.3779297, 0.08679199, -0.5078125, -0.5756836, 1.7597656, -1.6796875, -0.27661133, 1.7910156, -0.021194458, -1.8847656, -2.1582031, 1.2460938, -0.59277344, -0.8383789, 0.7758789, 3.0195312, 1.0273438, -0.15026855, -0.61279297, 1.2255859, -1.9990234, 0.4572754, -1.1191406, -0.6538086, 0.070373535, -2.7734375, 1.3740234, -0.027709961, -0.41552734, -0.72216797, -0.95654297, 1.7021484, 0.703125, 1.5947266, 0.76904297, -0.34057617, -2.0878906, -0.24694824, -3.4199219, 0.98095703, 0.39990234, -3.9765625, -0.12109375, 2.2011719, 1.2050781, 0.01927185, -0.34960938, 2.6738281, -0.088256836, -2.0566406, 2.5859375, -2.6914062, -0.89160156, -2.5996094, -4.984375, 1.1269531, -1, -0.76171875, 4.765625, 0.9584961, 0.21655273, 1.7490234, 0.36157227, -3.0976562, -1.0966797, -0.92578125, -0.5703125, -0.4946289, -0.65527344, 0.19116211, 0.5151367, -1.6269531, -0.9135742, -1.4208984, -0.76416016, 0.33422852, 1.9238281, -1.9033203, 0.88623047, -2.0585938, 0.3642578, 0.10321045, -0.5629883, 2.0351562, -0.2331543, 0.6196289, 0.16552734, 1.6708984, -0.16088867, 0.07476807, 0.37548828, 1.1015625, 0.3400879, -2.1640625, 0.10784912, 1.7832031, 2.3125, 0.2553711, -1.0625, -1.9785156, 0.21643066, -0.10839844, -1.5351562, 0.4958496, -0.70947266, -1.609375, 0.77001953, 0.49804688, 0.6645508, 1.6953125, -0.74609375, -2.4082031, 0.88427734, -1.3759766, -2.0585938, -2.8710938, -0.029800415, 1.0097656, -1.7265625, 0.48999023, -0.44018555, 0.4958496, -0.96435547, -1.3779297, -2.5253906, 2.6992188, 1.8515625, 1.9570312, 3.3261719, -0.8720703, 0.40600586, 2.84375, -1.3261719, 1.1435547, -1.1425781, -1.1152344, 0.21777344, 1.1738281, 1.3232422, -1.5810547, -2.296875, 1.1933594, -1.046875, 2.1191406, -1.8603516, 0.4802246, -1.6757812, 0.3161621, 1.2060547, -2.0507812, 1.3632812, -2.1015625, -1.8544922, 1.2070312, -0.059753418, -1.5263672, -0.36010742, -0.9008789, -0.07824707, 1.3037109, 1.9228516, 0.57177734, -1.1279297, -1.3994141, -0.02029419, 1.0673828, 0.052886963, 0.085632324, -0.80810547, -0.13989258, -0.2692871, -0.51904297, 1.5957031, 1.6484375, 1.1464844, 4.140625, 1.7324219, -1.6962891, 0.2890625, 0.070739746, -0.64453125, 1.9960938, 0.9477539, -2.0742188, 1.4882812, 0.48657227, -3.2480469, -2.0546875, 3.0566406, -0.39624023, 1.3935547, -0.90234375, -1.5449219, 1.3144531, -1.7734375, 0.5332031, 0.24316406, -1.6601562, 2.1816406, 0.5209961, -2.484375, -0.90527344, 0.4560547, 3.2871094, -2.2128906, -0.7114258, 2.6660156, 0.19104004, 0.45117188, 1.0957031, -2.109375, -1.4052734, -1.7978516, 3.1933594, 1.0419922, 1.5595703, 0.20861816, 3.3535156, -2.2949219, 0.50341797, -2.6679688, 4.265625, -4.453125, -2.0625, 0.51220703, -1.8466797, -1.2949219, -1.53125, 1.1611328, 0.36914062, 2.5761719, 1.7451172, -2.9550781, -0.22924805, 0.1652832, -2.1679688, -4.78125, -1.6367188, 0.08929443, -0.45385742, -0.5029297, 1.2216797, 0.98095703, 0.8144531, 0.17102051, -1.3935547, -0.20605469, -0.17272949, -1.7011719, -0.26611328, 0.30859375, 0.76220703, -0.05105591, 1.7841797, 2.7363281, -1.0517578, 0.9111328, -2.8261719, 0.41845703, -1.03125, -0.7895508, 0.2565918, 0.059509277, 0.8334961, 0.25732422, 0.10803223, 0.43920898, -3.0761719, 2.3574219, -0.9980469, -0.86083984, 1.40625, -1.4990234, 0.0074157715, -0.61035156, 0.12963867, -1.4433594, -0.21374512, 1.6855469, 0.4387207, -1.8066406, 0.64501953, 0.4260254, -0.5419922, -0.34887695, 1.0615234, -0.57666016, 0.39868164, -1.0820312, 1.2265625, -2.2402344, -2.234375, -2.453125, -1.4570312, -0.7939453, 0.059265137, -2.6484375, 1.7841797, 0.55078125, -0.36157227, 1.8095703, 0.64404297, -1.1289062, -1.90625, -0.7006836, 1.2617188, 2.7011719, 1.1201172, -1.3398438, -1.3037109, -1.0390625, -0.45410156, 0.58740234, -0.89941406, 0.64501953, -0.010665894, -0.7441406, -0.09448242, 0.4099121, 2.2246094, 1.2099609, -0.012077332, -0.6074219, 0.5283203, 1.3212891, -1.1806641, 0.81884766, -0.29248047, 1.5097656, -0.17456055, 2.9960938, -0.2166748, -2.0214844, 1.1542969, -2.796875, 0.0043182373, -0.3955078, -1.7568359, 0.27514648, -0.49975586, 0.57470703, 0.02670288, 0.5205078, -2.2871094, 2.6308594, 0.38623047, -0.9111328, -0.9482422, 2.4101562, 0.74121094, 1.9482422, 2.1035156, 0.8173828, -0.0059280396, 1.2880859, 1.1113281, -0.64404297, 2.6035156, -1.0322266, 0.02923584, 1.0888672, -1.2255859, -0.9692383, 3.4511719, 0.5878906, 1.5107422, 0.9453125, 2.0761719, 2.9003906, 2.0761719, 2.3007812, 0.80908203, 0.9350586, 1.3515625, -0.20715332, 0.49682617, 1.1953125, 3.7460938, 1.2421875, -0.74365234, 0.7705078, 0.025100708, 1.5166016, 0.49121094, -0.40698242, 0.061920166, -2.7480469, 1.8662109, -1.0966797, 0.59765625, -3.0996094, 0.17700195, -0.46118164, -0.4375, -0.42114258, 0.47314453, 3.8300781, -0.22155762, 0.06573486, 0.014945984, -0.84277344, 0.33325195, -4.0664062, -0.8017578, 0.95654297, -0.6689453, 0.5776367, 0.5419922, 1.2734375, 0.025161743, 1.6152344, 0.1842041, 2.125, 1.4482422, 1.5009766, -1.4951172, -0.61376953, 1.1083984, 1.8994141, -0.3474121, -0.32666016, 1.0634766, 0.45922852, -2.5566406, -2.0703125, 1.3339844, 0.765625, 2.1640625, 1.3310547, -1.8339844, 2.5136719, -1.0966797, 0.07299805, -0.17895508, 1.3017578, 0.4819336, -1.6347656, -0.9453125, 0.5576172, 1.1738281, 2.0898438, -1.1435547, -0.8769531, 0.36572266, 0.36254883, 2.4863281, 0.12017822, 2.4140625, -0.117248535, -0.15344238, -1.8330078, 3.6542969, -1.0908203, 0.67285156, -0.6801758, 0.7753906, 0.6645508, 0.1743164, 0.06109619, 1.4443359, -0.9316406, -0.33569336, -1.4433594, 1.1650391, -0.88916016, -1.5712891, -1.7822266, 1.3173828, 0.07678223, -1.7167969, 0.09283447, 3.0488281, 1.9169922, 0.6850586, 2.6933594, -2.109375, 2.2558594, 0.40112305, -0.12524414, 0.6245117, 0.984375, 0.121154785, -0.36547852, -2.2070312, 1.8164062, 1.7949219, 2.0625, -1.0185547, 1.5380859, 1.7128906, 0.78515625, 1.2490234, -0.25439453, -1.8457031, -0.3791504, 1.3964844, -0.30029297, 2.0449219, 1.8681641, -0.061828613, 0.14257812, -1.5488281, -1.4345703, -1.1474609, 0.10461426, -1.0908203, 1.5703125, 2.2167969, 0.9433594, -0.2836914, -2.0019531, -3.015625, -0.75878906, -0.5541992, 2.0957031, 0.1784668, -1.4267578, -0.27319336, -0.24841309, 0.2685547, 2.4628906, -2.5351562, 1.0830078, -1.7734375, 0.70166016, 1.1953125, -0.115722656, -0.050842285, -0.028656006, 1.0888672, 3.2441406, 0.19812012, -0.40649414, 0.43945312, 2.0605469, -0.06365967, -3.6308594, 0.9580078, -1.8505859, 2.1347656, -0.8881836, 1.1757812, 0.116760254, -0.26611328, -0.57714844, -1.2539062, -2.9570312]}, "B01HXQTNVK": {"id": "B01HXQTNVK", "original": "Brand: Aoocan\nName: Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty\nDescription:

            Each set has 5 of the highest quality grill mats that makes grilling anything easy!

            Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

            Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

            You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

            They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

            For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

            These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

            These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

            -Veggies
            -Shrimp
            -Fish
            -Bacon
            -Pizza
            -Pancakes
            -Eggs
            -Anything else you want to put on the grill!

            BBQ Grill Mats Size: 15.75\" x 13\"

            \nFeatures: A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue.\nEASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don't need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust.\nSECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better.\nMULTIPURPOSE--While you're baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS.\nBEST OF ALL - Best value in bbq grill accessories! If you're not completely satisfied, we'll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.\n", "embedding": [-1.0449219, 1.7626953, 2.1523438, -0.81591797, 0.87353516, -0.29418945, 1.5039062, -0.18664551, 0.61865234, 1.7236328, -0.6821289, -0.63378906, 1.0986328, -3.140625, 0.7597656, 0.29638672, 0.34765625, 3.0664062, 2.7285156, 1.3320312, 1.3974609, 0.75146484, 0.5991211, -2.3378906, 0.22009277, 1.4462891, 2.8046875, -0.11340332, 0.8310547, -0.21154785, 1.5810547, 0.49365234, 0.25170898, 1.5986328, -3.7148438, -0.8730469, 0.21691895, 3.875, -1.5410156, -0.35180664, -1.1152344, -3.2265625, 1.3339844, 2.6269531, -3.0742188, 0.19897461, 1.1621094, 2.078125, -0.54003906, -3.34375, 3.0507812, 1.0527344, 2.5273438, -0.67578125, -2.0917969, 1.8417969, -0.26513672, -2.1464844, 0.10394287, 0.7446289, -0.39379883, 0.15307617, -1.2617188, 2.3671875, -0.80908203, -2.0449219, 0.23779297, -1.7109375, 0.56884766, -2.3652344, 0.5698242, -0.62841797, -1.0498047, 0.49609375, -0.73535156, 0.070739746, -1.5322266, -0.69628906, -0.23510742, -2.109375, -0.2208252, 1.0791016, 0.23205566, -0.5830078, 0.27929688, -0.4482422, -3.1132812, 0.6894531, 1.6972656, 0.65527344, -0.059570312, 3.2285156, -2.5019531, -4.25, -0.1496582, -2.46875, 0.40307617, -1.7832031, -1.3212891, 1.9882812, -2.0429688, -0.33642578, -0.3791504, 2.4628906, -3.1074219, -1.5126953, 2.4140625, -1.4736328, 1.015625, 0.47192383, 0.18762207, -0.69628906, -0.12561035, 1.2490234, 2.4023438, 1.6582031, 0.796875, -0.92578125, 0.5551758, 0.49536133, 4.9335938, 2.1621094, -1.3779297, -2.3417969, 0.49536133, -0.3630371, -0.7739258, 1.8730469, 3.1132812, -2.1757812, -0.44677734, -1.5683594, -0.46704102, 0.09631348, -2.1992188, -1.4619141, -0.043426514, -0.73339844, -1.8242188, 1.7324219, -0.44433594, -1.3847656, 1.6435547, -0.5024414, -3.21875, -0.5961914, -1.9677734, 3.5917969, -1.3505859, -2.390625, 0.19116211, -1.5322266, 0.9824219, -1.4482422, 0.9277344, -0.69677734, 0.9868164, 0.005744934, 0.6118164, 0.75146484, 0.79248047, -2.6855469, -0.3149414, 1.0878906, 1.3027344, -2.4140625, -1.6484375, 2.0410156, -0.13586426, 2.2089844, -1.3076172, -2.3886719, 2.1152344, -0.8623047, 0.42041016, -0.609375, 0.15197754, 2.7558594, -0.25878906, -1.7441406, 1.2890625, -3.1347656, 0.85302734, 2.7402344, -0.6010742, -0.17150879, -0.5395508, -0.62890625, 0.4975586, -0.96875, -0.55126953, 2.9902344, -0.02168274, 0.78466797, -3.1621094, -1.7216797, 0.8256836, -2.0039062, 1.4375, -0.01663208, -0.5908203, -1.1787109, -1.4882812, 0.37719727, -2.5058594, -2.3398438, -2.5644531, 2.7363281, 2.2480469, -0.10345459, 1.2050781, -1.9912109, 1.7373047, 3.1855469, -2.3007812, -1.3613281, -0.7631836, -1.0126953, 1.3730469, 2.3183594, -1.7539062, -0.38842773, 0.09741211, 2.703125, -0.875, 2.3652344, 0.008178711, 1.5185547, -0.53027344, -1.3935547, 0.37597656, -0.2253418, -0.05709839, 0.64160156, -0.3803711, 1.7128906, 1.7773438, -1.5380859, -2.2148438, -1.1396484, -0.3251953, -1.1582031, -2.2246094, -0.45581055, -0.6713867, -0.61279297, -0.44677734, 1.9140625, 0.95458984, -2.1601562, -2.3203125, 3.5839844, 1.5302734, -0.85253906, 0.29907227, -0.0068359375, 0.041748047, -0.14526367, -2.7050781, 0.113464355, -0.043762207, 0.5830078, 0.43676758, 1.3535156, 1.3300781, -0.53808594, 1.2724609, 0.06616211, -2.5859375, -1.1220703, 1.4785156, -1.8408203, 0.6772461, -1.6777344, 0.16491699, -0.42504883, -1.7646484, 1.3701172, 1.0742188, 0.59521484, 0.42358398, 3.9199219, 1.625, -0.91015625, -3.3945312, -0.984375, -1.9335938, -2.1738281, 1.9716797, 2.1230469, 3.3125, 1.6865234, -2.3476562, 2.5410156, -0.1899414, 0.82421875, 1.4628906, -1.1386719, -2.0761719, 0.032104492, -1.1767578, 2.9257812, -1.0576172, 1.0419922, -1.3066406, 0.3083496, 2.1328125, -2.6425781, -0.049865723, 1.3828125, 0.13098145, -0.46166992, 2.1152344, 2.9277344, -3.6367188, -1.1943359, 1.7021484, -1.9316406, 0.64208984, -2.3105469, -0.27685547, 0.52685547, -0.044830322, -1.8251953, 0.24816895, 1.9433594, -0.37109375, 0.41186523, -0.099975586, -0.5708008, -0.064575195, -0.92285156, 1.2216797, -0.92041016, -1.3916016, -1.4804688, -1.7080078, -0.36328125, 0.11199951, 0.1328125, -1.1826172, 0.2956543, -0.9013672, -0.032684326, -1.953125, -2.1679688, -1.9199219, -0.20825195, -0.1730957, 0.77001953, 0.24145508, 0.020904541, 0.43676758, -4.953125, -0.11187744, 0.96435547, -0.6821289, 1.3369141, -2.6289062, 0.3791504, 0.22070312, 0.88623047, 1.2001953, -0.5854492, -0.26953125, 1.9951172, -2.234375, -2.1113281, 2.1953125, -1.4423828, 0.009941101, -0.50341797, 0.28393555, -1.6796875, -1.2392578, -0.98095703, 0.052001953, 3.7265625, 0.31201172, 0.81640625, 0.43164062, -1.6845703, 0.27075195, 0.8515625, -0.87646484, -2.46875, -0.30932617, -1.703125, -0.25219727, -1.734375, -0.43701172, -1.2773438, 0.25610352, -1.2919922, 2.5898438, 0.107055664, 3.0234375, -2.4277344, -0.83935547, -0.34472656, 1.6748047, -0.21948242, 1.0185547, -0.671875, 0.074157715, -0.68310547, -2.1113281, -0.84228516, 1.6054688, -0.82421875, 0.51953125, 2.53125, 0.9711914, -0.52246094, 0.8364258, -0.0038833618, -0.29711914, -0.5878906, -1.0644531, -0.05117798, 0.5629883, -0.70166016, -2.2714844, -1.9931641, 3.6679688, -0.103759766, 0.85595703, 0.16394043, 0.8129883, 3.3027344, 0.79589844, 1.2373047, 0.28027344, 1.7539062, 0.71777344, -0.53808594, -1.7998047, 1.3808594, 1.7529297, -2.6992188, 1.9306641, 0.8691406, 1.3125, 0.6689453, 0.7128906, 1.359375, 0.15856934, -0.08703613, 3.9199219, 0.030136108, 0.41552734, -1.0966797, 1.1572266, -0.65185547, 1.9199219, 2.5957031, 1.9541016, 1.0585938, 1.8339844, 1.7089844, -0.36083984, -3.7363281, 0.27001953, 1.6210938, -0.6928711, -0.37060547, 2.6074219, 0.19763184, 1.0146484, 3.6914062, -0.37597656, -0.25976562, -1.9990234, 0.105529785, 1.9423828, -0.27490234, 0.37304688, -1.328125, -0.34521484, -0.54541016, -2.0019531, 1.9003906, -1.7890625, -2.6367188, 0.49243164, -0.6977539, -5.0585938, 1.8408203, 4.6171875, -0.69921875, -1.8378906, -1.9677734, 2.7421875, -0.8540039, -1.7060547, -0.039855957, 2.3027344, -1.0605469, 2.0644531, -0.027877808, -1.2304688, 1.2949219, -2.671875, 1.2734375, 0.74365234, -3.1738281, -1.0039062, -2.0957031, -0.008079529, -0.8623047, -0.39672852, -0.83935547, 1.1552734, -1.7871094, 1.6152344, -2.2929688, 0.6948242, -1.1679688, -2.1933594, 0.03756714, 1.3564453, 1.2617188, -0.7807617, -0.09295654, 4.6132812, 2.4433594, -2.0039062, -0.20617676, -2.6113281, 0.26245117, -1.3662109, -2.2675781, 0.21569824, 0.37548828, -1.1494141, 5.4140625, 1.0917969, 1.5322266, 3.8125, -0.8364258, -1.2109375, 0.06451416, -1.953125, -0.37231445, -1.4736328, 0.07537842, 3.5761719, 1.0693359, -1.3544922, -0.8227539, -1.2158203, -2.1015625, 0.1026001, 0.69921875, -0.41674805, -0.73291016, -2.5351562, -0.097961426, 1.0927734, 2.3984375, -0.29296875, 0.27563477, 1.0654297, 1.4804688, 3.6992188, -1.4296875, 1.2822266, 0.2055664, -0.98339844, -0.4724121, 0.097229004, -0.7807617, 0.47509766, 2.9238281, -0.8149414, -1.7519531, -0.93896484, -0.35791016, 0.3642578, -1.4414062, -1.8212891, 0.28881836, -1.1767578, 1.2910156, -0.026397705, 2.2949219, 2.1953125, -1.4238281, -1.5244141, -0.9995117, -0.8486328, -1.5927734, -0.69091797, -0.16394043, -0.17797852, -0.12719727, -0.9511719, -1.9121094, 2.3964844, -0.40576172, 0.5498047, -0.82128906, 1.7431641, -0.3894043, -0.45507812, 5.015625, -2.7109375, -0.09210205, 1.2763672, -3.6015625, -0.3701172, -1.0849609, -0.19311523, -2.3320312, 0.44848633, 0.85009766, -0.39013672, -1.1875, -0.7675781, 0.72509766, -1.9287109, -3.8671875, 0.27001953, -0.39233398, -0.8300781, 0.09246826, -0.0031166077, 2.9589844, -2.0039062, 2.3964844, 1.3476562, -0.20153809, -0.4260254, 0.8544922, -0.8642578, 0.9370117, 0.5566406, 1.3945312, 0.5107422, -1.7148438, 0.30908203, -0.7182617, 1.0673828, -2.2988281, 0.7192383, 0.022216797, 1.2519531, 0.28271484, -1.7285156, 2.5371094, 1.0917969, -0.91748047, 1.4599609, 0.48950195, -2.0292969, 0.27246094, 1.9951172, -1.3486328, 0.53125, -0.4819336, -1.4902344, 2.3320312, -1.8408203, -1.9931641, 0.6933594, 0.045196533, 0.04449463, -0.37475586, -0.01927185, 0.9082031, 1.5126953, -1.3691406, -1.2568359, -2.7910156, -0.93896484, 0.95410156, -0.8808594, -0.17150879, -0.27954102, 0.45385742, 4.5351562, -0.8076172, -1.3349609, 2.7753906, -0.5517578, -1.3427734, -0.50146484, -3.203125, -2.7871094, -0.8623047, -0.75097656, 2.0625, 2.0703125, -0.37573242, 0.4272461, -2.5625, 2.4863281, -2.8613281, 3.0136719, -1.5097656, 0.53125, 4.140625, -4.0859375, -1.2880859, -1.8818359, 1.3271484, 0.9057617, -0.4765625, 1.2792969, -1.9921875, -0.70458984, 0.43237305, -1.1816406, -1.2871094, -0.95410156, 1.8076172, 0.6245117, -1.1455078, -0.58203125, 0.07501221, -0.39038086, 0.72216797, 0.5961914, 1.6289062, -0.9658203, -1.4130859, -1.4257812, -1.6669922, 0.11895752, -0.30297852, 1.1972656, -0.6977539, 3.3164062, -1.8945312, -1.7724609, -0.0904541, -0.72802734, -2.9199219, -1.3330078, 2.2050781, 0.75927734, 0.13427734, 0.86816406, 0.70458984, -0.6660156, 3.6523438, -0.3408203, 1.1210938, 1.2099609, 0.9560547, -0.17163086, -0.44213867, -4.8398438, 0.64746094, -3.9199219, 0.57177734, -0.19580078, -1.9521484, 1.7636719, 1.7265625, -2.0566406, -1.3505859, -0.47998047, 1.3417969, 0.6567383, 1.0644531, -0.85058594, 0.18640137, -2.3671875, -3.0117188, -0.033843994, -0.3239746, -1.6181641, -0.98876953, 0.20666504, 2.9902344, -0.057739258, 2.4355469, -0.97314453, 1.0117188, -1.34375, 1.7246094, 1.0107422, 0.50927734, 0.15209961, 0.66748047, -1.25, -2.3496094, 1.3740234, -1.1640625, 0.10473633, 1.5615234, -1.1210938, -2.4472656, -1.6083984, 0.6040039, 1.0605469, 2.4023438, 1.0214844, -0.54296875, -0.109436035, 0.76660156, -1.5126953, 1.0273438, 1.9902344, 2.2988281, -3.0585938, 3.2207031, -0.67089844, -2.7050781, 1.8417969, -0.65478516, -1.2099609, -0.94873047, -1.4990234, -0.18371582, -1.0732422, -1.1962891, -1.5097656, 0.72314453, -1.4072266, 1.4921875, 0.022567749, 0.75097656, -0.9404297, 3.3222656, -0.11798096, 2.7539062, 2.9023438, 0.91259766, -1.609375, -1.2958984, -1.5966797, 0.5097656, 2.8828125, 0.05291748, -0.16235352, 0.35131836, -0.63183594, -1.3183594, 2.5507812, 1.6591797, 0.94970703, 0.7885742, 2.3027344, 4.140625, 1.7431641, 3.0585938, 0.6171875, 2.9042969, 2.0214844, 0.47729492, 0.75634766, 2.9804688, 0.88964844, 0.92089844, -0.8095703, 2.5117188, 1.6953125, -1.2753906, 0.41723633, 1.2617188, -0.16442871, -2.2988281, 2.5976562, 1.4609375, -0.004184723, 0.25952148, 0.8803711, -3.1699219, -0.9873047, -1.2011719, 0.5, 3.8613281, 0.36767578, 0.44750977, 0.6879883, 1.5078125, 2.4570312, -3.0175781, 0.7963867, 0.2980957, -0.27685547, -1.6484375, 3.3164062, 0.43701172, 2.5214844, 1.4375, 1.8574219, 0.32202148, 0.82128906, 1.3720703, -0.16833496, 0.58203125, -1.0576172, 2.5878906, -2.2382812, -1.9980469, -0.7216797, -0.6069336, -1.453125, -1.9931641, 0.06210327, 0.4169922, 2.0957031, 1.5244141, -4.8359375, -0.2006836, 1.2861328, 2.4257812, -2.5390625, 0.7055664, -1.3320312, -3.7304688, -2.296875, -0.2746582, 1.9326172, 1.2236328, 1.1884766, -2.7988281, 0.38427734, 1.1484375, 1.359375, 0.9604492, 0.078308105, -1.9501953, 1.7060547, -1.5009766, 3.9765625, 2.7109375, 3.1152344, -0.12084961, 0.15539551, 2.5585938, 0.5024414, 1.3935547, 0.51708984, -1.2216797, 0.14404297, 0.50683594, -0.29589844, -0.27856445, -1.046875, -1.6123047, -1.3378906, -0.47631836, -0.3408203, 0.7573242, -0.47021484, 1.8378906, 1.7548828, -1.0605469, -2.5976562, 2.3066406, 2.1445312, -0.5073242, -0.8388672, -0.2565918, 1.2158203, -2.1757812, -2.5351562, 1.59375, 1.0097656, 0.9941406, -0.8696289, 0.02784729, -0.69873047, -0.28100586, 0.037261963, 1.3300781, -2.8085938, -2.1464844, -0.10253906, -0.38110352, 1.5283203, 2.6542969, -1.9433594, -1.609375, -0.3154297, -1.5966797, -0.23071289, -1.7597656, -2.4199219, 1.2382812, 3.515625, 1.3251953, -0.18530273, -3.09375, -2.3476562, 1.3994141, -1.2958984, 2.9472656, 1.4492188, -1.0966797, 0.6171875, -3.4511719, 2.0195312, 0.08001709, -2.1875, 0.066345215, -0.1439209, 1.4931641, -1.0878906, 1.6386719, 2.0683594, -0.6816406, -0.8769531, 3.6210938, 5.3554688, 1.1376953, 2.3144531, 1.5966797, -0.09564209, -2.7695312, 0.3137207, -0.70166016, 1.9052734, 1.8535156, 0.019241333, 0.18835449, -1.890625, -1.2333984, -1.0683594, -1.5605469]}, "B08DTXWRB5": {"id": "B08DTXWRB5", "original": "Brand: Traeger\nName: Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag\nDescription: \nFeatures: Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\nProduct 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef\nProduct 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers\nProduct 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ\nProduct 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food\n", "embedding": [-0.8925781, -0.5957031, -0.08709717, -2.5703125, 0.6010742, -1.6738281, 1.2880859, -0.69091797, -0.51660156, -0.16821289, 1.9726562, 1.4189453, 0.42626953, -2.7421875, 0.95214844, -1.3310547, -2.3144531, 1.8066406, 1.5292969, -1.0703125, 0.75634766, 0.8696289, -1.7529297, -0.8222656, 1.6289062, -0.9111328, 3.3710938, -1.1728516, 0.25634766, 1.3408203, 1.5693359, -1.1816406, 0.68603516, 1.5898438, -0.6010742, -1.1982422, -0.7236328, -0.42016602, -2.2265625, 0.12915039, -2.2773438, -0.69189453, -0.21044922, 1.7685547, -2.8203125, 0.9267578, -0.20825195, 1.6357422, -1.7285156, -0.5151367, -0.20166016, 2.046875, -1.7373047, -0.68066406, -0.19506836, 0.12841797, 0.7597656, -3.6269531, 0.05645752, -0.21520996, 1.9941406, 0.61083984, -0.09240723, 1.1582031, -2.4042969, 1.8134766, 0.5576172, -0.6435547, -1.4033203, -0.11450195, 3.2324219, 2.7734375, -0.44604492, 0.4428711, -1.0244141, 1.7255859, -1.5957031, -0.31323242, -1.0664062, -0.5644531, 1.3046875, 3.3242188, 0.48291016, -1.1435547, 2.6289062, -0.65722656, -2.2363281, 1.0029297, 0.67333984, 0.25634766, 1.5, 0.17504883, -0.95410156, -3.7910156, 2.0136719, -0.23425293, -1.1044922, 0.026184082, 1.0742188, 1.4892578, 1.8574219, -1.7539062, 0.006752014, 0.21582031, -3.7773438, -1.1162109, 0.50097656, 0.060150146, -0.7988281, 1.4316406, -2.8769531, 2.1210938, 1.7080078, 1.7783203, 2.1074219, 0.6352539, -0.20239258, -1.6748047, 0.34350586, 0.6791992, 4.0664062, -1.2324219, -0.28808594, 0.33325195, -0.33544922, 0.44506836, 0.78027344, 2.3691406, 0.9814453, -1.8125, 1.4814453, -1.6396484, 0.9604492, 0.8354492, -2.3164062, -0.6821289, 0.56103516, -1.9189453, 0.13012695, -2.0371094, -0.15393066, 1.6582031, -0.97314453, 0.9760742, -2.4199219, -0.578125, -0.54052734, 1.6835938, -1.1933594, -1.1914062, 1.1416016, -0.51708984, -0.99853516, -2.0019531, 1.2744141, 0.09802246, 0.6777344, 0.0970459, 1.0615234, 0.39697266, 0.7314453, -1.5634766, 0.51953125, 0.9770508, -1.7607422, -3.2363281, 1.0166016, 0.38061523, -0.10021973, 1.6757812, 2.0136719, -0.22265625, -1.3242188, 0.56396484, 1.0820312, -1.7714844, 1.5146484, 1.9257812, 0.39672852, -0.24682617, 1.1484375, -0.1182251, -0.20141602, -0.43017578, 0.8125, -0.32983398, 0.5395508, -0.29663086, -0.49389648, -1.6582031, 0.76953125, -0.12005615, -0.7709961, 0.5180664, 0.84277344, -2.2949219, 0.015899658, -2.4824219, 0.5708008, -2.3261719, -2.2382812, 2.0078125, -0.75927734, -0.43920898, -0.49731445, -0.7470703, -1.1445312, -0.9951172, -0.47216797, 0.7636719, 1.0703125, -2.25, 0.92626953, 0.86279297, -1.7441406, -2.5742188, 0.7451172, -0.66796875, 2.2285156, 0.34887695, -0.21728516, 0.4802246, -0.5029297, 1.3769531, -0.56591797, 0.12097168, -0.64208984, 0.53222656, -1.7617188, -1.7841797, 1.8447266, 1.3818359, -0.39746094, 0.35766602, -0.92333984, 0.15466309, 0.69433594, 0.2861328, -1.4023438, 2.7714844, -1.8447266, 0.41137695, -0.2524414, -1.4052734, 1.2099609, -0.26757812, -1.3535156, -1.0556641, 0.9814453, 1.3457031, -0.9667969, 0.1541748, 3.4492188, 2.2851562, -1.375, -0.1159668, -1.6152344, 1.4667969, -1.6035156, -1.3720703, 1.7128906, 0.09552002, 0.4873047, -0.013702393, 0.0069007874, 0.17016602, -0.8720703, -0.32910156, -0.7753906, -1.8828125, 0.29663086, -0.39331055, 0.46044922, -0.47436523, 2.5898438, 0.79345703, -0.62060547, 2.1875, -2.2460938, 1.8955078, 1.1552734, 0.072387695, 0.8745117, -0.018432617, 0.32470703, -2.0996094, 0.52001953, -1.6845703, -0.9145508, 2.1992188, 6.0820312, -0.045684814, -2.0175781, 1.4794922, -0.8666992, 1.6142578, -0.5708008, -0.80371094, -1.6455078, -0.83447266, 2.6503906, 0.63134766, 1.03125, -0.44677734, -0.90527344, -0.0070381165, 0.8613281, 0.18286133, 0.36621094, 0.5786133, -0.9790039, -0.36499023, -3.1210938, -0.33813477, -3.8808594, 0.99658203, 0.44482422, -2.8417969, 0.16430664, -1.4189453, 1.8564453, 2.2792969, 1.9228516, -2.3632812, -1.5693359, 1.0996094, -0.65722656, 1.9990234, -1.2119141, -1.3759766, 0.7861328, -1.0458984, -0.6621094, 0.30004883, -2.2382812, 1.1259766, -1.1123047, -3.5878906, 0.079956055, 0.82910156, -0.9716797, 0.6152344, -2.7304688, 1.8837891, -0.37670898, -1.6123047, 1.2216797, -0.40698242, -0.91845703, 3.1523438, -0.81591797, 1.9189453, 0.09307861, -2.7578125, -2.2148438, -0.41430664, -0.74902344, -0.45654297, 0.54248047, 0.1619873, 1.3349609, -1.9580078, -1.8476562, -2.1289062, 0.7392578, -1.0146484, 1.6806641, -1.9150391, 0.43823242, -1.8105469, 1.1904297, -0.88964844, 0.4411621, -0.5522461, -1.0410156, -0.66748047, 0.72314453, 3.9726562, 1.3193359, 1.8457031, -0.61816406, -0.9926758, -0.2529297, -1.3417969, -2.546875, -1.6972656, 0.74902344, -2.515625, -0.7290039, -3.3007812, 0.578125, -0.90185547, 0.16027832, -0.5263672, -0.14416504, 1.4287109, 1.3828125, -1.4726562, -0.9082031, 0.45874023, -0.51708984, -1.3007812, -0.8442383, 0.7114258, 0.7246094, 0.032684326, -2.3242188, 0.56347656, 0.7392578, 1.1445312, 1.7617188, -0.70947266, -0.14794922, -1.7099609, 1.7158203, -2.8164062, 3.1035156, 1.0537109, -1.3203125, 0.91552734, -0.7241211, -2.3886719, -0.4116211, -0.16308594, 3.25, 2.7421875, 1.5341797, 2.046875, 0.16271973, 0.40893555, 0.50341797, -0.47729492, -0.2866211, 0.3959961, 1.1171875, -1.4619141, -1.2402344, 0.123168945, -0.9716797, -1.4443359, -0.27514648, 2.4765625, 1.1777344, 0.2290039, 1.7001953, 0.9970703, 0.71240234, -1.4453125, 2.875, 0.046325684, -2.2265625, -2.0625, 0.00057029724, 1.3818359, 1.9169922, 0.27368164, 1.1171875, 2.2382812, 1.8496094, 0.39013672, -1.5830078, 0.19311523, 0.8486328, -0.85839844, 1.9814453, 0.98291016, -0.38085938, -0.21520996, -1.7578125, 1.9248047, -2.2050781, 0.9008789, -1.2724609, 0.7651367, 2.9550781, -0.8520508, -1.6953125, 2.6328125, 0.5620117, 0.93603516, -1.2158203, 1.5419922, -0.7963867, -0.08905029, 3.0605469, -0.31713867, -1.9511719, -3.921875, 2.234375, -1.3896484, -1.3359375, -0.0060272217, 2.7929688, 0.30151367, -0.5629883, -0.9013672, 1.7792969, -0.9785156, 0.08770752, -0.12902832, 0.37304688, 1.9121094, -1.2011719, 2.1425781, 3.4785156, -0.08337402, -1.3466797, -2.6738281, 0.08721924, -0.60791016, 1.5107422, -0.59277344, -0.16040039, -1.7675781, 1.9033203, -2.7539062, 0.44384766, 0.21765137, -3.0878906, 2.0742188, 3.4980469, -0.6411133, 0.16540527, -1.1113281, 2.4316406, 0.8183594, 0.90527344, 4.234375, -2.1132812, -0.25683594, -1.1347656, -2.765625, 2.0332031, 1.3544922, -0.91015625, 3.2519531, -0.3828125, 0.49682617, 3.3730469, -0.50683594, 0.058288574, -3.3105469, -0.5126953, 0.11212158, -1.1777344, -1.3769531, -2.4082031, 1.2607422, -0.77783203, -2.578125, -2.2871094, -0.77734375, 0.42358398, 1.6357422, -2.5410156, 1.3125, -3.1816406, 0.20275879, -1.5810547, -1.0986328, 0.6074219, -0.63183594, 0.42944336, -0.40698242, 1.4853516, 0.5058594, 0.8095703, 1.5869141, -0.34570312, -0.5131836, -0.37573242, -0.11071777, -0.121032715, 2.8125, 1.0800781, -1.7617188, -1.3134766, -2.1679688, 0.111206055, -1.3535156, -1.2216797, -1.1787109, -1.6279297, -1.2089844, 1.6669922, 1.6806641, 1.5839844, 0.19677734, 1.0869141, -0.6948242, 0.8041992, 0.91064453, -1.5449219, -1.9375, 0.8696289, -0.7294922, 0.79833984, -1.9042969, 0.37597656, -1.1679688, -0.10290527, 1.1982422, 3.1171875, 2.5703125, 1.0234375, 4.2148438, -0.7583008, -0.19506836, 0.6816406, 0.48901367, 0.4255371, 0.10949707, 1.015625, 0.107666016, 1.0761719, -1.2431641, -0.10089111, -1.8632812, 0.091552734, -0.36621094, -0.95166016, 0.8208008, -1.7978516, -0.28100586, 0.21496582, 1.5458984, -1.3564453, 2.1425781, -0.7138672, -1.6796875, 2, 2.4355469, -1.8964844, 0.86328125, 0.72558594, -2.1386719, 1.5966797, 1.2128906, 1.0341797, -2.2792969, 0.9267578, 1.4189453, 1.0166016, -0.012435913, 1.3847656, 1.4765625, 1.0351562, 0.34594727, 1.3027344, 2.1289062, 0.021377563, 1.2919922, 3.4257812, 1.2919922, 0.52197266, 1.3115234, 2.75, -0.7260742, 0.76904297, 0.84228516, -1.9072266, -0.6982422, 0.10412598, -4.3789062, -0.61279297, 1.8554688, -0.7651367, 0.56347656, -0.7685547, -1.7783203, -0.15283203, -0.4958496, -1.5029297, 0.7060547, -1.9306641, 1.2978516, 2.6875, -1.1806641, -1.6386719, -0.6220703, 3.75, -2.5683594, -0.15368652, 0.5830078, 0.92822266, 0.3491211, -2, -0.38427734, -1.3134766, -2.2929688, -0.43554688, 2.0273438, -0.009567261, 1.6542969, 4.6132812, -2.4140625, 1.1337891, -3.5742188, 1.2119141, -4.0429688, -0.7373047, 3.0878906, -1.6933594, 1.8242188, 0.12597656, -0.014808655, 1.8339844, 1.9755859, 1.2158203, -2.1367188, -1.8457031, 1.7041016, -2.2734375, -3.7363281, -3.2070312, 0.47460938, 0.44970703, -0.55615234, 1.4873047, -1.8300781, 0.51123047, -0.89697266, -0.41381836, -1.2001953, -0.3256836, -5.6803226e-05, 0.5551758, -1.875, -0.5395508, 0.0005979538, -1.9765625, 1.0166016, 1.5214844, 2.1855469, -2.1171875, 0.20629883, 0.17822266, -0.13635254, 0.6801758, -0.39208984, 0.038757324, -0.24719238, 0.31982422, 2.3769531, -1.0458984, 2.8496094, -1.2441406, 0.5541992, 1.0546875, -1.8398438, 1.7060547, -1.6367188, -0.921875, -0.39624023, -0.4892578, 2.6679688, -0.17041016, -0.4501953, 0.08392334, -1.7636719, -0.50683594, -0.38183594, 2.0371094, 0.45629883, 1.0097656, 1.6123047, 0.62158203, 0.12408447, -2.8554688, -1.7050781, -1.8349609, -2.0566406, -1.0429688, -0.10546875, 2.4707031, 2.765625, -2.078125, 1.3417969, 1.2285156, 0.6201172, -0.32348633, -0.9633789, -2.0878906, 2.0253906, 0.8691406, -0.1472168, -2.9824219, -0.074035645, 1.2353516, 3.2636719, -0.3696289, 0.051696777, -0.35180664, -2.2714844, -3.6464844, 1.3242188, 2.2167969, -0.078063965, 1.1894531, -0.045806885, -0.42919922, 2.9355469, 0.19018555, 1.1152344, 0.6152344, 2.0996094, -0.18701172, 1.4384766, -1.1650391, -2.4726562, 0.08258057, -2.5488281, -0.484375, 1.3115234, 0.18933105, 0.32177734, 0.41186523, 1.0849609, -0.33447266, -0.20300293, -0.97216797, 0.24182129, -1.1845703, 0.41381836, -2.0917969, 2.609375, 1.1484375, 3.5058594, 2.5410156, 0.28833008, -1.7880859, -1.0263672, -0.10028076, 0.32641602, 1.7148438, -2.5546875, 1.0927734, 0.6074219, -0.6616211, -2.2773438, 1.9550781, -0.84277344, 1.4501953, 1.2480469, 2.453125, 3.5703125, 2.5, 3.2011719, 0.46777344, 1.7617188, 1.2314453, -0.3942871, 1.3251953, 1.9453125, 0.6616211, 3.2519531, -0.68603516, 1.5498047, -0.6230469, 1.2958984, 0.033081055, -2.3300781, -0.8564453, -2.3515625, 3.5039062, 0.83447266, 1.2148438, -3.5175781, 1.4404297, -2.0585938, -0.1541748, -0.63623047, -2.5507812, -0.5810547, 1.1074219, -1.1025391, 0.6333008, -0.42333984, -0.7446289, -4.2539062, 0.1932373, 0.00491333, -0.7998047, 1.4384766, 1.2363281, 0.66503906, -1.4160156, -0.31445312, -0.29614258, 3.5429688, 1.1015625, 0.16564941, -0.80810547, -1.7392578, 0.8666992, 0.6894531, -1.5839844, -1.9833984, 0.67871094, 0.22143555, -1.8349609, -2.609375, 1.8886719, -2.09375, 2.8671875, 3.3085938, -3.9433594, 2.3125, -0.39697266, -0.20092773, -1.3105469, -0.2788086, -0.18603516, -0.040802002, -2.8808594, 1.6552734, 1.9814453, 1.5507812, -1.0146484, -0.76220703, -0.33935547, 0.015914917, 2.8300781, 0.7011719, 1.21875, -0.6845703, -0.8354492, -0.27807617, 2.6386719, -0.07684326, -0.9213867, 0.7314453, -1.5761719, 3.9414062, 1.2363281, 0.042633057, 0.23547363, -2.0722656, -0.8613281, -2.0175781, 0.58447266, -0.4736328, -4.5507812, -0.3642578, 0.6665039, -0.0625, -0.5888672, -1.1005859, 3.9257812, -0.42797852, 0.7402344, 3.9394531, -1.7167969, -0.51660156, 1.0214844, 0.79052734, -0.3408203, -0.40405273, 1.1855469, -1.6904297, -1.0117188, 2.5488281, 2.8691406, -0.99121094, -2.7480469, 0.42773438, 1.6484375, -0.07208252, -0.54345703, 0.67529297, 0.36376953, -2.203125, 1.7480469, -1.2460938, 1.5537109, 2.2578125, 0.18078613, -0.4921875, -0.008522034, -3.2441406, -2.9375, -0.5288086, -0.4572754, 1.1757812, 2.3339844, 0.5576172, 2.6132812, -0.734375, -2.4804688, -1.7617188, -2.7910156, 3.0410156, 0.6347656, -1.7792969, -0.8666992, 0.23791504, -0.19128418, 1.7753906, -2.1484375, 1.2773438, -3.1738281, -0.93066406, -0.44482422, 1.7617188, 0.6689453, 2.0429688, -0.43066406, 3.8066406, -0.16503906, 0.25195312, 2.1542969, 3.6796875, 0.96191406, -1.4980469, 0.61865234, -0.9008789, 0.19799805, -1.4716797, -1.6308594, -1.5507812, 0.19616699, -0.75146484, -1.2890625, -3.6425781]}, "B072KLKZD7": {"id": "B072KLKZD7", "original": "Brand: Slim Jim\nName: Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)\nDescription: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
            Fresh and original products directly from the manufacturer
            We provide excellent customer service. Your question will be answered in less than 12 hrs.
            Customer is our first priority\nFeatures: Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )\n", "embedding": [-1.3427734, 1.4931641, 1.5761719, 0.096069336, -2.65625, 0.51904297, -0.69140625, -0.029937744, 0.89404297, 0.11151123, 1.9580078, -0.9682617, 0.7519531, -1.3828125, -0.6279297, -1.9814453, -1.2558594, 0.14538574, 0.7265625, 1.7197266, 0.68066406, 0.6816406, -0.4116211, -0.1352539, 0.50683594, 1.0078125, 2.7421875, 0.25805664, 0.056396484, -0.27978516, 1.5371094, -2.0664062, -0.1619873, 1.1035156, -0.35107422, -0.40795898, 0.3479004, -1.6943359, -2.3808594, -0.15258789, -0.76220703, -1.1669922, 0.72509766, 1.0966797, -2.1953125, -1.1455078, -1.796875, -0.6191406, -1.7978516, -0.31811523, 1.3701172, 1.4697266, -0.4633789, 0.7138672, 0.15112305, 1.9208984, -0.42114258, -2.640625, -0.7363281, -0.9316406, 2.515625, -2.2539062, 1.8632812, 0.03466797, 0.1105957, -2.5097656, -1.5341797, -1.9179688, -0.23095703, -2.0703125, 2.2128906, 1.7333984, -3.1699219, 0.23205566, -2.6210938, 2.015625, -5.2851562, 3.9160156, -0.91064453, -1.6308594, 1.8857422, 0.7792969, -1.0302734, 0.23754883, 0.98779297, -1.078125, 0.8989258, -0.2861328, 2.5917969, 3.1035156, -0.8515625, 0.82177734, 0.18981934, -4.28125, 1.4599609, -2.28125, -0.42871094, 1.0039062, 0.28295898, 0.45825195, 1.21875, -0.5649414, 0.20593262, 1.2255859, 1.2636719, -0.32104492, 1.5878906, 2.4863281, -0.57666016, 1.0380859, -3.0488281, 2.9921875, 2.4960938, -0.7866211, -0.24450684, 0.9394531, 1.4863281, -2.3320312, 1.3925781, -0.0028266907, -1.5136719, 0.0011224747, 0.22009277, -0.11407471, 0.52734375, -0.49658203, -1.5761719, 0.05731201, 0.31591797, -0.40454102, -1.7998047, 1.4003906, 2.4804688, -3.0332031, -2.3125, -2.5625, -1.3525391, -0.5449219, -1.1308594, -0.35107422, -2.4746094, 1.4677734, -0.4104004, -0.63720703, -0.45996094, 0.5473633, -1.6035156, -1.8505859, 2.5742188, -3.2578125, -0.24084473, 1.7382812, -0.8105469, -1.1318359, 1.1152344, -2.8261719, 0.33154297, 2.7402344, -0.6064453, 0.23815918, -1.671875, -0.6611328, -2.0800781, 3.7890625, -1.0546875, -2.9921875, -1.5048828, 0.3244629, 1.8945312, 1.7783203, 1.0107422, -1.3320312, 0.14746094, -0.9589844, 1.0605469, -2.0273438, -0.15478516, 1.484375, 0.49316406, 0.6010742, -1.8291016, -2.7382812, 1.4384766, 0.9453125, 1.5273438, -1.8173828, -1.9101562, -0.50878906, -1.4746094, 0.10986328, 1.5712891, -1.5654297, -1.8408203, 2.2871094, -0.17248535, 2.4765625, 0.4182129, -2.2011719, 3.0351562, 0.98095703, -2.1796875, 0.41357422, 3.2011719, 0.09552002, -1.0283203, -0.85791016, 1.6123047, -0.8276367, 1.0351562, 3.0644531, -0.37304688, 0.32543945, 2.8613281, 0.45874023, -1.0693359, -2.4492188, 0.38720703, -0.5761719, 1.578125, 1.4052734, -2.0371094, 0.58984375, -0.7988281, -1.4775391, -0.80126953, 2.7421875, 2.3066406, -0.06347656, -0.115356445, -0.43188477, 2.7597656, 1.3115234, 1.2773438, -0.55126953, -0.47680664, 1.2998047, 2.7460938, -2.3769531, -0.44091797, 1.9394531, -1.9462891, -0.15917969, -4.2226562, -2.2890625, -1.0351562, 1.5039062, -1.6005859, -0.3791504, 0.58935547, -1.2734375, 0.48364258, 1.9960938, 3.234375, -2.4960938, 0.105773926, 0.27026367, -0.86279297, 1.1054688, 0.21899414, -1.3994141, 2.8730469, -0.52978516, 0.3413086, 2.7714844, -1.6894531, 0.52001953, 3.8808594, 2.5644531, -0.671875, -3.2265625, 3.4921875, -0.042938232, 0.78564453, -1.0107422, 1.4658203, -0.67529297, 1.6630859, 2.0039062, 0.1472168, 1.3798828, -0.41723633, -0.52441406, -0.18920898, 0.13586426, -1.7285156, -1.9707031, -0.29223633, -0.3552246, 2.8183594, -0.7167969, 3.8203125, -0.10180664, 1.0732422, 1.5048828, -1.0996094, 1.0927734, 0.20214844, -0.68847656, -0.71777344, -1.5595703, 0.79345703, 0.2841797, 2.2050781, 1.8964844, 1.6650391, 2.1582031, 0.8232422, 0.30615234, -0.32543945, -1.0507812, -0.045684814, 0.2614746, -0.74365234, 0.40161133, 0.24353027, 0.17456055, -1.5771484, -0.2475586, 1.7460938, 0.22753906, -0.40673828, 1.2666016, 1.7421875, -1.3857422, 0.88427734, 0.8671875, -2.5683594, 1.1591797, 1.4267578, 0.5395508, 1.0732422, 0.9169922, 0.9042969, -2.1738281, -2.5742188, -1.3642578, -3.0683594, -4.0546875, 1.8535156, 2.4296875, -2.1230469, 1.2099609, -2.7871094, 1.3564453, 0.7939453, -0.14123535, 0.9584961, -0.37402344, -1.2871094, -0.86572266, -1.3369141, -0.64697266, 1.7392578, -5.3710938, -0.36035156, -0.56591797, 1.2226562, -0.40454102, -2.0390625, 1.3925781, 0.26782227, -3.4394531, 0.14294434, -0.34814453, -0.3095703, 1.6904297, 0.11743164, -2.6621094, 0.65771484, -0.89404297, 1.3193359, -1.1484375, 1.0302734, -1.1181641, -0.76904297, -0.46289062, 2.703125, 2.7246094, -1.2773438, -2.3828125, 1.2041016, 0.14123535, 0.61572266, -1.8427734, -0.23266602, -1.7314453, 2.1933594, -0.6640625, -0.19482422, -2.5117188, 1.1591797, -1.2841797, -1.0585938, -1.8447266, 0.23303223, -0.3479004, -0.09295654, -1.3613281, -3.0234375, -0.11791992, -1.0898438, -0.28833008, -0.8457031, -0.61328125, -0.31835938, -1.9267578, 0.7241211, 1.5078125, -1.0654297, -1.6923828, 1.8847656, -1.9648438, 0.1772461, 0.140625, 1.1767578, -0.73291016, 5.2617188, 0.5180664, -2.4648438, -2.1796875, 0.80566406, -1.0253906, -0.80371094, -2.96875, 1.5136719, 1.2246094, 1.0683594, 1.2685547, 2.9980469, -0.21850586, 0.63916016, -1.2324219, 0.0859375, 2.1289062, -0.20617676, 1.8808594, -0.9970703, 0.8310547, 1.8701172, -0.56591797, 1.7724609, -1.9072266, 1.921875, 1.8876953, -0.29882812, -0.74316406, -3.2167969, -1.5126953, 1.1269531, -1.8291016, -1.1699219, 2.1582031, -0.56884766, 1.1035156, -1.5058594, 1.5234375, 1.3623047, 0.13452148, 3.0273438, 0.19030762, 0.1116333, -2.078125, 4.4101562, 0.12658691, 0.4765625, -0.34643555, -0.09277344, -0.6196289, 1.4902344, 1.3515625, 0.18273926, 0.35864258, -0.63378906, 0.051361084, 2.1386719, -3.6757812, -2.5507812, 2.0996094, 0.4296875, -1.7255859, -2.4804688, 3.0429688, -1.1318359, -1.5341797, -0.38500977, -4.0039062, -1.6054688, -2.6621094, 1.9248047, -2.8242188, 0.22399902, -0.55322266, -1.9716797, -3.3183594, -0.0070381165, -2.71875, 3.2617188, 0.77197266, 1.28125, 1.5615234, -4.53125, 2.1796875, 1.2089844, -0.94433594, 0.85058594, -2.6152344, -0.9111328, 0.39916992, -1.6630859, 0.07092285, -1.8789062, -2.1054688, 2.5839844, 2.8496094, -0.40039062, -2.0703125, -0.95458984, 1.8798828, -2.8125, 1.2197266, 1.7373047, -1.8203125, 1.7373047, 0.8911133, 4.5742188, 2.2167969, 3.5683594, 1.578125, -0.48217773, -0.42797852, -1.1201172, -2.5234375, 1.265625, 1.2626953, 0.8027344, 3.5039062, -1.5634766, -0.6850586, 4.0742188, 2.5136719, 2.5859375, 0.6665039, -1.2558594, -1.4189453, 0.23132324, -0.07733154, 0.3930664, -1.8037109, -1.2451172, 0.2512207, 0.79052734, -3.5488281, 1.25, 0.09680176, -3.3554688, 1.1035156, 1.4658203, 0.87402344, -2.5742188, 0.20751953, 3.3320312, 0.57470703, 0.16430664, 1.2226562, 1.5195312, 2.4121094, -0.1430664, -2.7226562, 0.4716797, 1.3154297, -1.9248047, 0.8173828, 0.9663086, 2.09375, -0.30810547, 0.67822266, -0.21813965, -1.921875, -1.3496094, -1.6269531, 1.1132812, -0.9194336, 0.30151367, -0.7866211, 0.99121094, 2.0117188, 1.4404297, 0.7763672, 2.078125, -0.2355957, -1.6191406, 0.5673828, 1.1425781, -0.07342529, -1.5722656, -0.2705078, 0.9682617, -1.5126953, 1.6621094, -1.2148438, 1.1796875, 0.9838867, 1.7939453, 0.39160156, -1.6015625, 3.0039062, 1.3046875, -1.6298828, 0.014076233, -0.9038086, 2.1816406, -0.15893555, -0.31567383, 0.9189453, 1.1738281, -0.31225586, 1.8232422, -0.006652832, 1.8945312, 3.3652344, 0.7807617, -1.9716797, 0.37231445, -0.77734375, 0.7114258, 2.6855469, -0.12658691, 4.5976562, -1.5410156, 1.1982422, 2.4511719, 0.7475586, -0.73291016, 2.1699219, 1.4814453, -2.7949219, 1.8222656, 2.0625, 3.0488281, -0.26586914, 1.0234375, 2.7753906, 3.0546875, -1.0097656, -0.84814453, 0.50097656, 1.3857422, -0.17138672, -0.095581055, -0.13195801, 0.49853516, 0.12225342, 3.0039062, 1.0244141, -1.2714844, 0.53271484, 1.1796875, 1.8203125, 1.0556641, 0.14160156, -2.2304688, 1.4863281, 0.65478516, -1.2988281, -0.41333008, 0.051452637, -0.010604858, -0.37524414, -0.08111572, -0.9482422, 0.97802734, 0.058441162, 0.11450195, -1.7773438, 0.3942871, -0.4794922, 0.6796875, 0.0680542, -0.7133789, -1.0712891, 1.7255859, 0.31396484, 0.38745117, 0.48388672, -0.18127441, -1.4101562, -1.6484375, -0.1541748, -1.6845703, 1.5732422, -0.796875, 0.44848633, 0.84472656, 0.5917969, 1.8232422, -0.8745117, 1.140625, -2.8828125, -0.96777344, -2.953125, 0.35424805, -0.27197266, 0.7104492, -0.42504883, -1.0341797, 1.3095703, 0.6035156, 0.8129883, -0.2944336, -3.8378906, -0.41479492, 0.008552551, -2.5332031, -2.4433594, -2.3378906, 0.90234375, 2.9746094, -3.6308594, -0.3479004, -1.7617188, -0.117492676, -2.0292969, 0.47827148, -2.2714844, 0.99365234, 0.70166016, -1.0341797, -0.17089844, -2.7636719, -0.71777344, -2.8359375, -1.1386719, 0.1652832, 1.8613281, 1.0722656, -2.8417969, -0.59716797, 0.15332031, -0.7026367, 1.6962891, -2.2167969, 1.1689453, -0.31347656, 2.3359375, 0.09637451, 2.8535156, -3.5683594, 1.1689453, -2.2246094, -1.0888672, 2.6542969, -3.1308594, -2.0351562, -2.5800781, -0.14550781, 3.1992188, -0.78564453, -2.2480469, 0.39672852, -1.3154297, 0.4243164, 1.3291016, 3.046875, 0.78564453, -2.0507812, 1.9326172, 0.48632812, 0.9135742, -2.2421875, -0.00818634, -1.8476562, -2.1933594, -1.9296875, 0.037017822, 0.5644531, 0.41967773, -3.5195312, -0.5024414, 1.140625, 0.2993164, 0.64941406, 0.9199219, -1.6708984, 1.6210938, 0.1352539, -1.5429688, -2.109375, -0.90234375, 4.125, 2.0175781, 0.08508301, -0.94921875, -0.15161133, -1.4765625, -0.8510742, -0.27807617, 3.4042969, 4.875, 2.4414062, 0.04071045, 0.057891846, 1.6015625, -1.0351562, 0.1920166, 1.7001953, 2.8828125, -0.9873047, 1.390625, -0.13635254, -0.86035156, 0.00041985512, 1.171875, -0.1394043, 2.2832031, -2.3261719, -0.28735352, -1.0849609, 1.3212891, 0.5371094, -2.9414062, 0.94677734, 0.6953125, -1.5654297, 0.066101074, 0.93847656, 1.5078125, 2.2402344, 0.6386719, 1.1201172, -0.13745117, -0.65722656, -0.14257812, -0.17163086, 1.3203125, -1.7128906, -0.91308594, 2.4414062, 0.1739502, 0.05331421, -0.7192383, 2.859375, 2.2714844, -1.4208984, 0.3540039, 0.25805664, -0.081848145, 1.6435547, -1.2070312, 0.5708008, 0.8251953, 1.8730469, -3.2539062, 0.21496582, 1.7734375, -0.8046875, 2.6269531, 1.2011719, 1.8378906, 0.00655365, 0.6308594, -2.1171875, -0.30932617, 1.4541016, 1.1230469, 0.77734375, 0.58496094, 0.066833496, -1.0976562, 0.46142578, 0.140625, -2.6738281, -1.2939453, -1.1572266, 1.5371094, 2.3242188, 3.3359375, -0.4584961, -1.7861328, 1.7177734, -2.2402344, -1.2607422, 0.46923828, -1.8388672, -1.8447266, 0.1541748, 0.8095703, 0.17028809, 2.5214844, 1.3076172, 0.91308594, -0.92578125, -2.2285156, -0.6201172, -0.2442627, -0.72314453, -0.12194824, -1.8525391, -1.5039062, -0.6088867, -2.0019531, -6.0390625, -1.5712891, 0.9067383, 1.2734375, 0.94433594, 3.71875, -1.6962891, 1.5136719, 0.5263672, -0.8129883, 1.1269531, -2.4628906, -2.9882812, 1.3945312, -2.2558594, 1.7148438, 1.5722656, 0.82666016, -0.17797852, -1.1337891, 0.38500977, 1.5126953, -2.1171875, 0.6738281, -0.07385254, 0.07366943, 1.1650391, -2.0351562, 2.5351562, -1.7792969, 2.3828125, 1.7138672, 0.19567871, 1.3378906, 0.43139648, 3.453125, -0.21716309, -1.1240234, -2.2519531, 1.3671875, 1.4238281, -1.3886719, -2.4648438, -0.0017433167, -2.4003906, -1.4404297, -2.8417969, 1.3017578, 0.6821289, 0.4831543, 2.0507812, 0.30981445, -0.6689453, 2.1367188, 2.015625, 0.62402344, -0.10949707, -0.67285156, -1.3847656, 1.6083984, -0.04284668, 1.7255859, 0.59814453, 0.3017578, -1.1210938, -0.9536133, -1.6132812, 0.21325684, -2.1054688, -1.1777344, 2.1757812, -2.2792969, 1.2578125, 0.062805176, -0.8774414, -0.5541992, 0.014183044, -2.1816406, -0.23217773, 0.24353027, -2.1738281, 0.87402344, -1.9482422, 0.035369873, 2.546875, -0.984375, 1.0058594, 1.4833984, -2.5, -2.3457031, -1.3388672, -1.8076172, -1.9746094, -1.4501953, 0.57177734, 0.38208008, 0.80322266, 1.6523438, 2.890625, -3.1816406, -1.5439453, 3.1308594, -0.12854004, -0.40356445, 0.44335938, 1.6826172, 1.7060547, 4.1132812, -0.8745117, 1.6962891, 1.0292969, 1.1757812, 2.6855469, -2.140625, 2.1738281, 1.0703125, 1.3134766, -1.3173828, -3.9628906, -1.1083984, -0.26538086, 1.3398438, -0.6767578, -1.5136719]}, "B07748V3PL": {"id": "B07748V3PL", "original": "Brand: Fasmov\nName: Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios\nDescription: This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you're getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nFeatures: Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills.\nGrill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls.\nReusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season.\nEasy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.\nProtect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It's a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.\n", "embedding": [-0.5883789, 0.9868164, 1.2177734, -1.421875, -0.32128906, 0.5332031, 0.59814453, -1.4560547, -0.7133789, 2.7851562, -0.94677734, 0.12670898, 0.73583984, -3.9472656, 1.8515625, -0.44506836, 0.6245117, 2.0234375, 3.0136719, 0.29907227, 1.2441406, 0.30786133, -1.4824219, -0.20178223, 1.7617188, -1.078125, 3.9921875, -0.04324341, 0.17907715, 1.5, 0.6977539, 1.9804688, 1.515625, 3.4941406, -3.0742188, -1.0644531, 0.08520508, 3.7011719, 2.140625, 1.4697266, -1.9160156, -4.296875, 3.375, 2.2109375, -2.4863281, 0.7661133, 0.32348633, 1.1660156, 1.03125, -4.8164062, 0.73339844, 0.030670166, 1.4003906, -0.19714355, -2.7011719, 1.7246094, 0.14660645, -1.6152344, 1.1875, -0.061706543, -0.5756836, -0.81152344, 1.1640625, 2.1582031, -0.5708008, -0.35302734, -0.25268555, -2.2167969, 2.7246094, -1.0839844, -0.38867188, -1.1972656, -1.3066406, 0.47192383, 1.2568359, -0.87841797, -0.2775879, 1.3486328, -0.23083496, -2.0800781, -1.7470703, 4.3828125, -1.0439453, -1.5302734, -0.7270508, -1.2587891, -3.8417969, 0.6694336, 0.45629883, -0.23339844, 0.60498047, 2.6210938, -1.5615234, -3.7109375, 0.53759766, -3.0332031, 1.4785156, -0.17956543, 0.14440918, 2.9472656, -0.8198242, 0.36572266, 0.14526367, 1.7382812, -4.0351562, -1.7900391, 2.2265625, -0.64746094, 1.9257812, 0.6347656, 0.7836914, 1.5097656, -0.070617676, -0.26489258, 3.0917969, 1.7314453, 0.45239258, 1.0537109, 0.38452148, 3.1679688, 4.2070312, 1.9765625, -0.81884766, -1.5712891, 1.5488281, -0.9897461, 1.0742188, 1.8935547, 1.4003906, -1.3457031, 1.7490234, -0.54003906, -0.31225586, 0.37109375, -0.25341797, -0.5751953, -0.35205078, -1.4101562, -2.2480469, 0.96875, -1.0107422, -0.17883301, 0.8613281, -1.1787109, -2.9257812, 0.046875, -2.0390625, 2.4492188, -1.1855469, -3.5214844, -1.6650391, -1.5712891, 0.6308594, -0.39233398, -1.0009766, -2.1953125, 0.95703125, -2.3652344, 0.8510742, 1.9599609, 2.109375, -2.234375, 0.9194336, -0.55810547, 1.3046875, -4.375, -1.5800781, 0.6386719, -0.5571289, 1.6474609, 0.6123047, -1.4541016, 1.9433594, -0.87597656, 1.046875, -0.359375, 1.2617188, 2.234375, -0.12298584, -1.1875, 1.4863281, -0.71533203, -0.9111328, 1.3896484, 0.80029297, -0.025115967, -1.1728516, -1.5820312, 0.26098633, -1.3623047, -0.8222656, 2.6757812, -2.015625, -0.09326172, -1.9248047, -1.3876953, -1.6699219, -1.8017578, 1.7978516, -1.0996094, -0.11639404, -1.1025391, -2.34375, -0.7084961, -2.8730469, -2.1894531, -1.4492188, 2.5332031, 2.3105469, -0.5678711, -0.47753906, -1.5507812, 0.06060791, 0.8203125, -0.66503906, -0.05279541, -1.0605469, 0.4572754, 1.8046875, 2.0253906, -1.2734375, 0.022720337, -0.24267578, 3.8789062, -2.390625, 1.3525391, -0.07147217, 2.0136719, -1.7919922, -1.4169922, 1.8144531, 0.4807129, -0.012001038, -0.6040039, -1.0654297, 0.7548828, 2.3359375, 0.13110352, -0.83496094, -0.78515625, -0.8203125, -2.0605469, -1.9013672, -0.79003906, -0.16333008, 0.66552734, 0.09326172, 2.1386719, 0.19885254, -0.7729492, -1.0205078, 2.9277344, 0.9506836, -0.52441406, -0.14831543, 0.83935547, 0.9902344, -0.7133789, -2.59375, -0.42236328, -1.3349609, 0.26635742, -1.3125, 2.609375, 0.23608398, -1.4863281, 2.6855469, 1.5214844, -3.2578125, -2.0664062, -0.22009277, 0.94970703, -0.48046875, -0.7104492, 1.2314453, -0.30908203, -1.7265625, 1.5634766, 1.5898438, -1.03125, -0.76171875, 3.2910156, 0.80859375, -0.4831543, -1.359375, -1.0859375, -1.1728516, -0.8886719, 0.20678711, -0.28955078, 3.0234375, 1.0332031, -1.1650391, 1.8691406, 0.87402344, 0.828125, 3.2714844, 0.2800293, -1.5166016, -0.5107422, 1.2783203, 2.4296875, -2.1386719, 1.3398438, -0.6352539, 0.014419556, 2.1269531, -2.5761719, -0.71484375, 2.8007812, -0.4650879, 1.0244141, 2.9804688, 0.15942383, -1.9013672, -1.6044922, 1.8144531, -0.52441406, 0.6669922, -0.7607422, 0.5292969, -0.2915039, -0.41601562, -2.1347656, -1.6806641, 1.2246094, 0.068481445, -0.1697998, 0.55126953, -0.02255249, 0.6333008, -1.78125, 0.6977539, 0.030456543, -1.3916016, -2.9824219, -1.6533203, -0.058776855, -1.7763672, 1.0527344, 0.07727051, -0.4506836, -1.0488281, -2.1035156, -0.7246094, -3.2792969, -1.1865234, -1.9287109, -0.96728516, 0.9819336, 0.4008789, 0.6489258, 2.0195312, -2.6875, 0.7895508, 1.7773438, -1.1191406, 1.3212891, -2.7617188, 1.640625, -1.4628906, 1.0839844, 1.3964844, -0.78125, 1.2636719, 1.1865234, -2.328125, -4.3359375, 2.15625, -0.14233398, -0.93408203, -1.453125, -0.86328125, -0.84375, -2.5273438, -2.6679688, 0.73339844, 2.328125, 1.2011719, 0.22619629, -1.9052734, -1.2460938, 0.72753906, 1.9257812, -1.3466797, -1.2285156, -0.33496094, -1.4951172, 0.3474121, -1.5332031, -0.7519531, -1.4824219, 2.1699219, 0.057556152, 2.6621094, 0.028457642, 3.6582031, -1.1962891, -0.6791992, 0.06719971, 2.2773438, -0.9482422, 2.0976562, -2.1640625, -1.8916016, 1.1210938, -1.4619141, -1.7177734, 1.375, -1.7607422, 0.9116211, 0.53271484, -0.47216797, 0.9526367, -0.49194336, -2.1132812, -0.6977539, -1.0605469, -0.50634766, 0.62109375, -0.40771484, -3.0507812, -0.5395508, -1.7548828, 3.3496094, -0.85253906, 0.58691406, 0.98535156, -2.1074219, 2.2753906, 0.78271484, -1.5117188, -0.27612305, 1.9257812, 1.7353516, -1.5791016, -0.08874512, 2.3984375, -0.22314453, -1.8769531, 0.23510742, -0.29345703, -0.7207031, 0.828125, -0.56640625, -0.7451172, 0.80029297, 0.42236328, 3.4570312, -0.99560547, 1.8378906, -1.2236328, -0.46972656, 1.1484375, 0.80810547, 1.6171875, 1.0253906, 1.3349609, 0.57177734, 1.4755859, -1.9462891, -1.2880859, 0.4128418, 1.8027344, 0.42944336, -1.265625, 2.1796875, -0.14831543, 0.5913086, 2.5195312, -1.0419922, 0.69140625, -1.0380859, 0.8515625, 0.91064453, -0.6201172, 0.5029297, -1.9023438, -1.0361328, -0.59521484, -3.734375, 0.6303711, -2.1777344, -1.4511719, 1.1455078, -2.7578125, -2.3945312, -1.2900391, 2.9121094, -0.99316406, -1.8544922, -1.4013672, 2.6640625, 0.87646484, -1.8828125, 0.7998047, 1.9960938, 0.23962402, 0.8803711, 0.9628906, -1.8710938, 1.4931641, -2.7246094, 0.84716797, 2.0097656, -0.28857422, -1.1708984, -0.5332031, 1.3974609, 0.15539551, -0.36791992, 1.0947266, 1.9970703, -0.91552734, -0.11981201, -2.5292969, 0.7783203, 0.18896484, -1.8769531, -0.28344727, 1.6074219, 1.1738281, 1.5869141, 0.3935547, 2.5136719, 1.0654297, -1.1699219, 1.1904297, -3.3496094, -0.1227417, -0.11035156, -3.9023438, -1.8691406, -0.15039062, -2.6855469, 3.7949219, -0.5097656, 1.5742188, 2.4238281, -0.35424805, -2.3027344, -0.5644531, -1.5976562, -1.5605469, -1.9951172, 0.26953125, 3.4785156, 0.5253906, -2.1132812, 0.0006341934, -0.9663086, -1.0986328, 1.6972656, 0.08911133, 1.8896484, -0.6098633, -2.375, -0.5854492, 0.7290039, -0.09185791, 0.08996582, 1.0029297, 0.72802734, 2.0664062, 1.1728516, -0.9482422, 0.41186523, -0.82470703, -1.3125, -1.3183594, 0.4555664, -1.6328125, -0.8823242, 2.6054688, -1.4394531, -2.7324219, -0.011528015, -0.8535156, 2.1679688, -0.91503906, -1.6308594, 2.3730469, -0.31396484, -0.3317871, 1.0966797, 2.8847656, 0.8457031, -1.0771484, -1.3300781, -0.12249756, -0.6591797, -2.25, -1.3232422, -1.0722656, -0.078063965, 0.16833496, -2.0859375, -0.7548828, 1.2265625, -1.7060547, 0.5644531, -1.9023438, 2.7695312, 0.2849121, 0.7626953, 3.3789062, -2.484375, -0.18713379, 1.5917969, -3.4882812, -0.5029297, 1.8671875, 0.033416748, -3.453125, 1.2167969, 1.5712891, -1.7783203, -1.4453125, -1.0917969, 0.66503906, 0.19848633, -3.4101562, 2.6777344, 0.5205078, -0.012374878, 1.3046875, -0.6401367, 1.6816406, -0.234375, 2.1464844, 2.0488281, -0.53564453, 0.4711914, 2.6582031, -0.30810547, 0.49682617, 3.0253906, 1.6416016, 0.76660156, -0.36279297, -0.1352539, 0.5097656, 0.20080566, -4.2851562, 1.5126953, -0.71240234, -0.5673828, -0.4165039, -0.8261719, 2.3027344, 3.125, -0.06878662, -0.033935547, -0.66796875, -2.3730469, 1.6445312, 1.4375, -1.2988281, -0.08557129, -0.4951172, -2.3925781, 2.5449219, -1.5341797, -2.5117188, 0.0692749, 1.2587891, -0.0970459, 0.8432617, -1.3662109, 0.17578125, 2.7265625, -1.6201172, 0.20495605, -0.49169922, -2.6953125, 0.921875, -0.48754883, 0.23291016, -1.2783203, -0.044311523, 2.9941406, -3.2382812, -2.1835938, 1.6171875, 0.7109375, 0.11907959, 0.31225586, -1.1523438, -3.0644531, -2.3457031, -0.7216797, 0.40600586, 2.3613281, 0.79296875, 0.6508789, -1.7978516, 1.1591797, -1.3222656, 2.9667969, -2.7460938, -0.17663574, 3.2734375, -2.5683594, -0.76220703, -1.3398438, 1.6210938, 1.9804688, 0.16992188, 2.625, 0.4658203, -0.2397461, -0.43188477, -1.4082031, -1.515625, -0.8847656, -1.0566406, -0.29003906, 0.11279297, -0.73095703, -0.90966797, 0.3244629, 0.51171875, 2.1152344, 2.3242188, 0.35058594, -2.2402344, -2.8125, -2.5878906, -1.5996094, -0.65527344, 0.61621094, 0.82910156, 2.9160156, -2.6757812, -2.8789062, -0.65966797, -1.0283203, -1.6474609, -2.1679688, 2.1210938, 0.53125, 0.8286133, 0.7480469, 0.5966797, -1.7119141, 3.6171875, -0.21862793, 0.66748047, 2.2304688, -0.9506836, -0.09564209, -0.53466797, -1.8828125, 0.5917969, -4.8125, 1.3808594, 0.07470703, -2.0566406, 2.6035156, 2.0761719, -0.6328125, -0.19128418, 0.08074951, 0.9296875, 1.7773438, 0.007633209, -1.0976562, -0.24694824, -3.4804688, -3.7910156, -0.3330078, -1.7353516, -1.9707031, -3.3886719, -0.5107422, 2.03125, 0.39331055, 2.7988281, 1.2724609, 1.7070312, -2.2207031, 0.55566406, 0.40161133, 0.28076172, 0.5332031, -0.79345703, -2.1816406, -3.0058594, 1.34375, 1.6210938, 1.3261719, 0.72509766, -0.4645996, -2.1015625, 0.76660156, 2.2207031, 1.1308594, 1.421875, 0.046844482, 1.5322266, 0.5341797, -1.2177734, -2.4804688, 3.3535156, 0.6821289, 3.6699219, -0.8413086, 2.9609375, 1.5283203, -3.6699219, 1.6679688, -0.6088867, -0.05355835, -0.5419922, -1.6806641, 0.3010254, -1.8857422, -0.89453125, -1.9423828, 0.6616211, -1.9101562, 0.7246094, 0.6801758, -0.88378906, -0.35961914, 1.9082031, -0.4885254, 0.7788086, 2.5410156, -1.8349609, 0.11291504, 0.42456055, -1.4501953, -0.07470703, 1.9375, -0.14477539, -2.6640625, -0.54589844, -0.67089844, -1.9863281, -0.07623291, -1.1005859, 0.9160156, 1.1826172, 1.5175781, 4.5898438, 0.91259766, 2.2714844, 1.2011719, 3.953125, 2.9921875, 0.85546875, 1.9638672, 3.6875, 1.0673828, 1.0380859, -0.006855011, 0.7089844, 2.0976562, -0.22814941, 0.3984375, 1.1376953, 0.96240234, -1.9169922, 1.8564453, -0.48413086, 0.84765625, 0.038848877, 2.7519531, -2.8203125, -0.44750977, -1.0263672, 1.1826172, 1.9042969, -0.52441406, 0.7685547, 1.734375, 2.9726562, 0.5180664, -2.3046875, 1.6650391, 0.72558594, -0.85498047, -0.78759766, 3.4140625, 0.045562744, 1.9345703, -1.453125, 1.3457031, 0.14343262, 2.0722656, -0.017227173, -0.56152344, 0.43579102, -1.6445312, -0.03466797, -0.13269043, -2.3652344, -2.6269531, 1.296875, -0.7246094, -1.1875, 0.01411438, 1.7275391, 1.3564453, 0.08050537, -3.3984375, -0.96875, 0.78466797, 2.1035156, -1.8232422, 1.0341797, -1.5615234, -3.0761719, -1.2216797, 0.9692383, 0.64501953, 1.3798828, 1.65625, -0.91796875, 2.6015625, 0.8300781, 1.3759766, -0.5395508, 0.6948242, -2.15625, 1.8154297, -0.060699463, 3.2734375, 2.3613281, 2.0898438, -0.42626953, 0.8588867, 2.9277344, 0.63671875, 0.22363281, 0.09100342, 0.60791016, 0.5, 0.078308105, -0.6982422, -1.5195312, -0.03451538, -1.0087891, -1.4130859, -0.26342773, -3.6972656, 0.10632324, 1.0791016, 0.4482422, 1.0615234, -1.1523438, -1.1455078, 3.2539062, 2.6757812, -1.8388672, 0.30541992, 0.328125, -0.15917969, -1.5830078, -0.48632812, 0.1665039, 1.0458984, -0.8354492, -0.4350586, -0.041931152, -1.1513672, -1.0234375, -0.44555664, 1.5292969, -1.7714844, -0.6508789, 0.14245605, -0.31420898, 1.5898438, 2.0644531, 0.091674805, -0.86621094, -0.66552734, -0.78466797, -0.053375244, 0.31591797, -1.7011719, 0.49560547, 3.7167969, 2.7910156, -1.546875, -1.0625, -1.6845703, 1.2021484, 1.3125, 3.7128906, -1.1171875, -0.8408203, -0.5708008, -1.2207031, 2.4921875, 2.3828125, -1.4921875, -0.51660156, -0.9682617, 0.7211914, -1.8916016, 0.8364258, 0.66064453, -0.32421875, -0.64501953, 3.1953125, 3.9199219, 1.3193359, 1.8271484, 1.5917969, 0.16125488, -1.3525391, 0.6923828, 0.7578125, 2.0976562, 1.3974609, 0.9160156, 0.040405273, -0.81591797, -0.4411621, -2.8652344, -0.47753906]}, "B08V4RVHJ6": {"id": "B08V4RVHJ6", "original": "Brand: CAMPLUX ENJOY OUTDOOR LIFE\nName: Camplux 2.64 GPM Propane Gas Water Heater, Outdoor Camping Tankless Water Heater with Digital Display, White\nDescription:

            Features

            1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

            2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

            3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

            4.Turn the ignition on with 2 \"D\" batteries whenever electricity is not accessible!

            5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

            6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

            7.The system also works great on modified water systems with a 12 volt water pump.

            8.The gas water heater can't be used for drinking water.

            Warm Remind:\u00a0 Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

            Easy to Use

            Get the instant portable gas hot water system that's easy to set up and use!

            1. Install the gas water heater on the wall.

            2. Connect the gas cylinder with the supplied gas hose and regulator.

            3. Connect shower hose and shower head to the hot water outlet.

            4. Connect water hose to the water inlet.

            5. Insert 2 size \"D\" batteries.

            6. Enjoy instant hot water!

            What's in the Box

            1 x Camplux 10L tankless water heater

            1 x 5\"ft 3 setting ON/OFF shower head and pedestal

            1 x 5\"ft CSA approval gas hose & regulator

            new( + PeerAddr => 'localhost', + PeerPort => '6333', + Proto => 'tcp', + Timeout => 10 +); + +unless ($socket) { + print "Cannot connect to qdrant\n"; + exit(1); +} + +print $socket "GET / HTTP/1.1\nHost: localhost\n\n"; +my $response = <$socket>; +close($socket); + +if ($response =~ m|^HTTP/1.1 200|) { + exit(0); +} else { + print "Service is down\n"; + exit(1); +} diff --git a/qdrant/dev/load_data.py b/qdrant/dev/load_data.py new file mode 100644 index 000000000..ec3d76383 --- /dev/null +++ b/qdrant/dev/load_data.py @@ -0,0 +1,43 @@ +import json +import os + +from qdrant_client import QdrantClient +from qdrant_client.http.models import Distance, PointStruct, UpdateStatus, VectorParams + + +if __name__ == "__main__": + client = QdrantClient( + os.environ["QDRANT_CLUSTER_HOST"], port=os.environ["QDRANT_CLUSTER_PORT"] + ) + client.recreate_collection( + collection_name=os.environ["QDRANT_COLLECTION"], + vectors_config=VectorParams(size=1024, distance=Distance.DOT), + ) + + bbq_embeddings = json.load(open("/bbq_embeddings.json", "r")) + docs = list(bbq_embeddings.values()) + + records = [ + [doc["id"] for doc in docs], + [doc["original"] for doc in docs], + [doc["embedding"] for doc in docs], + ] + + result = client.upsert( + collection_name=os.environ["QDRANT_COLLECTION"], + wait=True, + points=[ + PointStruct( + id=i, + vector=doc["embedding"], + payload={"pid": doc["id"], "text": doc["original"]}, + ) + for i, doc in enumerate(docs) + ], + ) + + if result.status == UpdateStatus.COMPLETED: + print("Finished loading data") + else: + print("Failed to load data") + print(result) diff --git a/qdrant/docker-compose.yml b/qdrant/docker-compose.yml new file mode 100644 index 000000000..e541a6f12 --- /dev/null +++ b/qdrant/docker-compose.yml @@ -0,0 +1,38 @@ +version: '3.5' + +services: + qdrant: + image: qdrant/qdrant + ports: + - "6333:6333" + volumes: + - ./dev/data:/qdrant/storage + - ./dev/healthcheck.pl:/healthcheck.pl + healthcheck: + test: ["CMD", "perl", "/healthcheck.pl"] + interval: 10s + timeout: 5s + retries: 5 + + data-loader: + image: python:3.11 + depends_on: + qdrant: + condition: service_healthy + environment: + - QDRANT_CLUSTER_HOST=qdrant + - QDRANT_CLUSTER_PORT=6333 + - QDRANT_COLLECTION=bbq + volumes: + - ./dev/bbq_embeddings.json:/bbq_embeddings.json + - ./dev/load_data.py:/load_data.py + command: > + bash -c " + pip install --no-cache-dir qdrant-client && + python /load_data.py" + profiles: + - tools + +networks: + default: + name: qdrant diff --git a/qdrant/poetry.lock b/qdrant/poetry.lock new file mode 100644 index 000000000..fd8b797fa --- /dev/null +++ b/qdrant/poetry.lock @@ -0,0 +1,1624 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "annotated-types" +version = "0.5.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.7" +files = [ + {file = "annotated_types-0.5.0-py3-none-any.whl", hash = "sha256:58da39888f92c276ad970249761ebea80ba544b77acddaa1a4d6cf78287d45fd"}, + {file = "annotated_types-0.5.0.tar.gz", hash = "sha256:47cdc3490d9ac1506ce92c7aaa76c579dc3509ff11e098fc867e5130ab7be802"}, +] + +[[package]] +name = "anyio" +version = "3.7.1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "anyio-3.7.1-py3-none-any.whl", hash = "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5"}, + {file = "anyio-3.7.1.tar.gz", hash = "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.2.2)", "sphinxcontrib-jquery"] +test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (<0.22)"] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "backoff" +version = "2.2.1" +description = "Function decoration for backoff and retry" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, + {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, +] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "cohere" +version = "4.18.0" +description = "" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "cohere-4.18.0-py3-none-any.whl", hash = "sha256:26b5be3f93c0046be7fd89b2e724190e10f9fceac8bcf8f22581368a1f3af2e4"}, + {file = "cohere-4.18.0.tar.gz", hash = "sha256:ed3d5703384412312fd827e669364b2f0eb3678a1206987cb3e1d98b88409c31"}, +] + +[package.dependencies] +aiohttp = ">=3.0,<4.0" +backoff = ">=2.0,<3.0" +fastavro = "1.7.4" +importlib_metadata = ">=6.0,<7.0" +requests = ">=2.25.0,<3.0.0" +urllib3 = ">=1.26,<3" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "fastavro" +version = "1.7.4" +description = "Fast read/write of AVRO files" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastavro-1.7.4-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:7568e621b94e061974b2a96d70670d09910e0a71482dd8610b153c07bd768497"}, + {file = "fastavro-1.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4ec994faf64b743647f0027fcc56b01dc15d46c0e48fa15828277cb02dbdcd6"}, + {file = "fastavro-1.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:727fdc1ddd12fcc6addab0b6df12ef999a6babe4b753db891f78aa2ee33edc77"}, + {file = "fastavro-1.7.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b2f0cb3f7795fcb0042e0bbbe51204c28338a455986d68409b26dcbde64dd69a"}, + {file = "fastavro-1.7.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bb0a8b5016a99be4b8ce3550889a1bd968c0fb3f521bcfbae24210c6342aee0c"}, + {file = "fastavro-1.7.4-cp310-cp310-win_amd64.whl", hash = "sha256:1d2040b2bf3dc1a75170ea44d1e7e09f84fb77f40ef2e6c6b9f2eaf710557083"}, + {file = "fastavro-1.7.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5542423f46bb7fc9699c467cbf151c2713aa6976ef14f4f5ec3532d80d0bb616"}, + {file = "fastavro-1.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec396e6ab6b272708c8b9a0142df01fff4c7a1f168050f292ab92fdaee0b0257"}, + {file = "fastavro-1.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39b10d68c03371b79f461feca1c6c7e9d3f6aea2e9c7472b25cd749c57562aa1"}, + {file = "fastavro-1.7.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f94d5168ec72f3cfcf2181df1c46ad240dc1fcf361717447d2c5237121b9df55"}, + {file = "fastavro-1.7.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bad3dc279ed4ce747989259035cb3607f189ef7aff40339202f9321ca7f83d0b"}, + {file = "fastavro-1.7.4-cp311-cp311-win_amd64.whl", hash = "sha256:8480ff444d9c7abd0bf121dd68656bd2115caca8ed28e71936eff348fde706e0"}, + {file = "fastavro-1.7.4-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:bd3d669f4ec6915c88bb80b7c14e01d2c3ceb93a61de5dcf33ff13972bba505e"}, + {file = "fastavro-1.7.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a312b128536b81bdb79f27076f513b998abe7d13ee6fe52e99bc01f7ad9b06a"}, + {file = "fastavro-1.7.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:487054d1419f1bfa41e7f19c718cbdbbb254319d3fd5b9ac411054d6432b9d40"}, + {file = "fastavro-1.7.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d2897fe7d1d5b27dcd33c43d68480de36e55a0e651d7731004a36162cd3eed9e"}, + {file = "fastavro-1.7.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6d318b49fd648a1fd93394411fe23761b486ac65dadea7c52dbeb0d0bef30221"}, + {file = "fastavro-1.7.4-cp37-cp37m-win_amd64.whl", hash = "sha256:a117c3b122a8110c6ab99b3e66736790b4be19ceefb1edf0e732c33b3dc411c8"}, + {file = "fastavro-1.7.4-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:0cca15e1a1f829e40524004342e425acfb594cefbd3388b0a5d13542750623ac"}, + {file = "fastavro-1.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9211ec7a18a46a2aee01a2a979fd79f05f36b11fdb1bc469c9d9fd8cec32579"}, + {file = "fastavro-1.7.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f16bde6b5fb51e15233bfcee0378f48d4221201ba45e497a8063f6d216b7aad7"}, + {file = "fastavro-1.7.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aeca55c905ff4c667f2158564654a778918988811ae3eb28592767edcf5f5c4a"}, + {file = "fastavro-1.7.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b244f3abc024fc043d6637284ba2ffee5a1291c08a0f361ea1af4d829f66f303"}, + {file = "fastavro-1.7.4-cp38-cp38-win_amd64.whl", hash = "sha256:b64e394c87cb99d0681727e1ae5d3633906a72abeab5ea0c692394aeb5a56607"}, + {file = "fastavro-1.7.4-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:8c8115bdb1c862354d9abd0ea23eab85793bbff139087f2607bd4b83e8ae07ab"}, + {file = "fastavro-1.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b27dd08f2338a478185c6ba23308002f334642ce83a6aeaf8308271efef88062"}, + {file = "fastavro-1.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f087c246afab8bac08d86ef21be87cbf4f3779348fb960c081863fc3d570412c"}, + {file = "fastavro-1.7.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b4077e17a2bab37af96e5ca52e61b6f2b85e4577e7a2903f6814642eb6a834f7"}, + {file = "fastavro-1.7.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:776511cecf2ea9da4edd0de5015c1562cd9063683cf94f79bc9e20bab8f06923"}, + {file = "fastavro-1.7.4-cp39-cp39-win_amd64.whl", hash = "sha256:a7ea5565fe2c145e074ce9ba75fafd5479a86b34a8dbd00dd1835cf192290e14"}, + {file = "fastavro-1.7.4.tar.gz", hash = "sha256:6450f47ac4db95ec3a9e6434fec1f8a3c4c8c941de16205832ca8c67dd23d0d2"}, +] + +[package.extras] +codecs = ["lz4", "python-snappy", "zstandard"] +lz4 = ["lz4"] +snappy = ["python-snappy"] +zstandard = ["zstandard"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "grpcio" +version = "1.56.2" +description = "HTTP/2-based RPC framework" +optional = false +python-versions = ">=3.7" +files = [ + {file = "grpcio-1.56.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:bf0b9959e673505ee5869950642428046edb91f99942607c2ecf635f8a4b31c9"}, + {file = "grpcio-1.56.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:5144feb20fe76e73e60c7d73ec3bf54f320247d1ebe737d10672480371878b48"}, + {file = "grpcio-1.56.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:a72797549935c9e0b9bc1def1768c8b5a709538fa6ab0678e671aec47ebfd55e"}, + {file = "grpcio-1.56.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3f3237a57e42f79f1e560726576aedb3a7ef931f4e3accb84ebf6acc485d316"}, + {file = "grpcio-1.56.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:900bc0096c2ca2d53f2e5cebf98293a7c32f532c4aeb926345e9747452233950"}, + {file = "grpcio-1.56.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:97e0efaebbfd222bcaac2f1735c010c1d3b167112d9d237daebbeedaaccf3d1d"}, + {file = "grpcio-1.56.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c0c85c5cbe8b30a32fa6d802588d55ffabf720e985abe9590c7c886919d875d4"}, + {file = "grpcio-1.56.2-cp310-cp310-win32.whl", hash = "sha256:06e84ad9ae7668a109e970c7411e7992751a116494cba7c4fb877656527f9a57"}, + {file = "grpcio-1.56.2-cp310-cp310-win_amd64.whl", hash = "sha256:10954662f77dc36c9a1fb5cc4a537f746580d6b5734803be1e587252682cda8d"}, + {file = "grpcio-1.56.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:c435f5ce1705de48e08fcbcfaf8aee660d199c90536e3e06f2016af7d6a938dd"}, + {file = "grpcio-1.56.2-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:6108e5933eb8c22cd3646e72d5b54772c29f57482fd4c41a0640aab99eb5071d"}, + {file = "grpcio-1.56.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:8391cea5ce72f4a12368afd17799474015d5d3dc00c936a907eb7c7eaaea98a5"}, + {file = "grpcio-1.56.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:750de923b456ca8c0f1354d6befca45d1f3b3a789e76efc16741bd4132752d95"}, + {file = "grpcio-1.56.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fda2783c12f553cdca11c08e5af6eecbd717280dc8fbe28a110897af1c15a88c"}, + {file = "grpcio-1.56.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9e04d4e4cfafa7c5264e535b5d28e786f0571bea609c3f0aaab13e891e933e9c"}, + {file = "grpcio-1.56.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:89a49cc5ad08a38b6141af17e00d1dd482dc927c7605bc77af457b5a0fca807c"}, + {file = "grpcio-1.56.2-cp311-cp311-win32.whl", hash = "sha256:6a007a541dff984264981fbafeb052bfe361db63578948d857907df9488d8774"}, + {file = "grpcio-1.56.2-cp311-cp311-win_amd64.whl", hash = "sha256:af4063ef2b11b96d949dccbc5a987272f38d55c23c4c01841ea65a517906397f"}, + {file = "grpcio-1.56.2-cp37-cp37m-linux_armv7l.whl", hash = "sha256:a6ff459dac39541e6a2763a4439c4ca6bc9ecb4acc05a99b79246751f9894756"}, + {file = "grpcio-1.56.2-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:f20fd21f7538f8107451156dd1fe203300b79a9ddceba1ee0ac8132521a008ed"}, + {file = "grpcio-1.56.2-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:d1fbad1f9077372b6587ec589c1fc120b417b6c8ad72d3e3cc86bbbd0a3cee93"}, + {file = "grpcio-1.56.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee26e9dfb3996aff7c870f09dc7ad44a5f6732b8bdb5a5f9905737ac6fd4ef1"}, + {file = "grpcio-1.56.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4c60abd950d6de3e4f1ddbc318075654d275c29c846ab6a043d6ed2c52e4c8c"}, + {file = "grpcio-1.56.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1c31e52a04e62c8577a7bf772b3e7bed4df9c9e0dd90f92b6ffa07c16cab63c9"}, + {file = "grpcio-1.56.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:345356b307cce5d14355e8e055b4ca5f99bc857c33a3dc1ddbc544fca9cd0475"}, + {file = "grpcio-1.56.2-cp37-cp37m-win_amd64.whl", hash = "sha256:42e63904ee37ae46aa23de50dac8b145b3596f43598fa33fe1098ab2cbda6ff5"}, + {file = "grpcio-1.56.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:7c5ede2e2558f088c49a1ddda19080e4c23fb5d171de80a726b61b567e3766ed"}, + {file = "grpcio-1.56.2-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:33971197c47965cc1d97d78d842163c283e998223b151bab0499b951fd2c0b12"}, + {file = "grpcio-1.56.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:d39f5d4af48c138cb146763eda14eb7d8b3ccbbec9fe86fb724cd16e0e914c64"}, + {file = "grpcio-1.56.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ded637176addc1d3eef35331c39acc598bac550d213f0a1bedabfceaa2244c87"}, + {file = "grpcio-1.56.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c90da4b124647547a68cf2f197174ada30c7bb9523cb976665dfd26a9963d328"}, + {file = "grpcio-1.56.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3ccb621749a81dc7755243665a70ce45536ec413ef5818e013fe8dfbf5aa497b"}, + {file = "grpcio-1.56.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4eb37dd8dd1aa40d601212afa27ca5be255ba792e2e0b24d67b8af5e012cdb7d"}, + {file = "grpcio-1.56.2-cp38-cp38-win32.whl", hash = "sha256:ddb4a6061933bd9332b74eac0da25f17f32afa7145a33a0f9711ad74f924b1b8"}, + {file = "grpcio-1.56.2-cp38-cp38-win_amd64.whl", hash = "sha256:8940d6de7068af018dfa9a959a3510e9b7b543f4c405e88463a1cbaa3b2b379a"}, + {file = "grpcio-1.56.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:51173e8fa6d9a2d85c14426bdee5f5c4a0654fd5fddcc21fe9d09ab0f6eb8b35"}, + {file = "grpcio-1.56.2-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:373b48f210f43327a41e397391715cd11cfce9ded2fe76a5068f9bacf91cc226"}, + {file = "grpcio-1.56.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:42a3bbb2bc07aef72a7d97e71aabecaf3e4eb616d39e5211e2cfe3689de860ca"}, + {file = "grpcio-1.56.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5344be476ac37eb9c9ad09c22f4ea193c1316bf074f1daf85bddb1b31fda5116"}, + {file = "grpcio-1.56.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3fa3ab0fb200a2c66493828ed06ccd1a94b12eddbfb985e7fd3e5723ff156c6"}, + {file = "grpcio-1.56.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b975b85d1d5efc36cf8b237c5f3849b64d1ba33d6282f5e991f28751317504a1"}, + {file = "grpcio-1.56.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:cbdf2c498e077282cd427cfd88bdce4668019791deef0be8155385ab2ba7837f"}, + {file = "grpcio-1.56.2-cp39-cp39-win32.whl", hash = "sha256:139f66656a762572ae718fa0d1f2dce47c05e9fbf7a16acd704c354405b97df9"}, + {file = "grpcio-1.56.2-cp39-cp39-win_amd64.whl", hash = "sha256:830215173ad45d670140ff99aac3b461f9be9a6b11bee1a17265aaaa746a641a"}, + {file = "grpcio-1.56.2.tar.gz", hash = "sha256:0ff789ae7d8ddd76d2ac02e7d13bfef6fc4928ac01e1dcaa182be51b6bcc0aaa"}, +] + +[package.extras] +protobuf = ["grpcio-tools (>=1.56.2)"] + +[[package]] +name = "grpcio-tools" +version = "1.56.2" +description = "Protobuf code generator for gRPC" +optional = false +python-versions = ">=3.7" +files = [ + {file = "grpcio-tools-1.56.2.tar.gz", hash = "sha256:82af2f4040084141a732f0ef1ecf3f14fdf629923d74d850415e4d09a077e77a"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:42272376e9a5a1c631863cda056c143c98d21e5b670db5c8c5b7ed0ba3a1a6eb"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:a8735d7aa34be99dddfbd476eff6005e684bb2c893c0f62a5811528b84c5b371"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:68ef3aa7509e5e7a6e7c0ecc183e28118e73da4bef0fc77079648601ce35e58f"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:380985b8d95ea2469e103945bd83a815d1213e370f580631fdd5a3dbaa17e446"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bfb375eb4f1946d68b8bc7b963c756defa31aa573a35c152a7233d06c0ad6ad"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:13388a22fcba9a1a87f217130a1a01365716af74bd5d0a8a54fc383b8e048ef2"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7a26160bc0ea5b464715789d4d2a66f01816271677673d65da39bac65b9ea838"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-win32.whl", hash = "sha256:ff16dd0b086e75f574dbc122e018a44dbd1c6dae3f3621ea99e8e5a6b2706e12"}, + {file = "grpcio_tools-1.56.2-cp310-cp310-win_amd64.whl", hash = "sha256:2037109c1ce253a8e013c9e3ad3722e887d28a1807acdeb1a51b295c8200137b"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:6dc43300189a69807857c52a3d782e9d3bbfb1cb72dcb27b4043c25161919601"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:e7009623635ebcd3dd7fe974883fc2d9a3ff0fcef419bfc0a2da8071b372d9f5"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:c7ca2272022f90b73efe900244aaebe9dd7cf3b379e99e08a88984e2fdd229c2"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:493775d17ea09cea6047ba81e4d3f0eb82e34d2fbd3b96e43f72b44ce74726ee"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41af279cf5359b123138236c0980440f4cb4d3d18f03b5c1c314cc1512048351"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:857d72e991d449ec4d2f8337e5e24ddf77b4539965f5cabc84d4b63585832982"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c0640728d63c9fa56e9a1679943ae4e33ad43a10802dd7a93255870731f44d07"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-win32.whl", hash = "sha256:355204d1b33c7a19e7d69afda411e6595d39ba1e9cbf561770ac1d5403296554"}, + {file = "grpcio_tools-1.56.2-cp311-cp311-win_amd64.whl", hash = "sha256:ea5d108d28b4cd2e28539241c6aee96bda83086d8888c36785d9f84ea690d896"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-linux_armv7l.whl", hash = "sha256:28444615b7a76b3d9267f81d1487fcad21a581d00564164d9e25ccc28635a811"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-macosx_10_10_universal2.whl", hash = "sha256:45d8b5ad6716848d5b68d9cee29a1a9c5c4baa1824ec5b92d9e35acedddba076"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-manylinux_2_17_aarch64.whl", hash = "sha256:31d1183d28ffc8da242333cb9f683f5093941da80dd5281db0fa93077aecb518"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0059dfc9bea8f7bca69c15ca62c88904c4f907fde1137e0743b5eee054661873"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24fc857252181c9950ed2d8cee3df5bd0f42861c4ad0db2a57400186827f96e5"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3a74a5e4fc8121a51401665f96f9a70aee50a2f1221e4a199e67b3b8f55881e8"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bec47db5d8b5c3b2a44afdbc3f3bf306e34279289a206d20222824381ca3cb13"}, + {file = "grpcio_tools-1.56.2-cp37-cp37m-win_amd64.whl", hash = "sha256:c0dbaac63a25c088f864295f394230eeb7be48dac2264433fda2603f86c36b25"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:0a4f9cce5a16613b6d3123c89f9d50e0d13b466799af17bc723dc7d2901a54e4"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-macosx_10_10_universal2.whl", hash = "sha256:ea5fc1b49514b44a3e5a45156c025002f172ade4c509e58c51967865c7c6fa45"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:54da410124547bacb97a54546c1a95f1af0125e48edc8b5679412ef8b2844f81"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5223668649172d879ee780253b8e4a79144c56a3cc1bb021847f583508c2b0be"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:483256d5f5be6a77b24d8a5f06ca152d1571c62bf5c738834da61107c7563afe"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1f334718eb796799bfadbac5567456fb745cee8c7b438c93b74d1ce676c6ad07"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:26751f69cbbc8ea19cf0657b7d109a6db7df81f80caf16380ebcd20eea27652c"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-win32.whl", hash = "sha256:4056ff13e30813d42a30ce1cdfeaeb6bbee915515c161c1df896dac3143ae643"}, + {file = "grpcio_tools-1.56.2-cp38-cp38-win_amd64.whl", hash = "sha256:878b9269ceb0dd934b61697a9dd9a5c3e9552521e8f46ab32cf4d72a223f7b6c"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:216e86d3a6ccc31b27fa4c12491981a0a39d4787d2358b6df05baffa40084494"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-macosx_10_10_universal2.whl", hash = "sha256:778224fcbc1cc7eaf222ce94676afbac8d72b4f84cf4239e30b01d2450a46126"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:14120fb2c6f7894fac5b689934368c692ec50f50a320e8073277ab7778fd612f"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:014da3ed176beb2b1c8430ccc34c8fe962cdd5480e56fb4ab9de60e60c315f3f"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8febb4f90b8fab3179f5bdaa159f1d2a20523ea17ec0d66bdec7732f9532de91"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ffae7df3318266614f7aa440acb2098c064b6b5ae061fc22125092386349e526"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7d86e24eb6e3973c55e9c74412ff755d1b9d15518c4eaf95676acff49d0162a2"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-win32.whl", hash = "sha256:506d00a86950adf4017395551a4547c0b7fcefa90e4c220135fc3e34e31be81b"}, + {file = "grpcio_tools-1.56.2-cp39-cp39-win_amd64.whl", hash = "sha256:8da04f033b8f4c597e8fc990e2f626bad2b269227bdd554592ea618f624f1aa9"}, +] + +[package.dependencies] +grpcio = ">=1.56.2" +protobuf = ">=4.21.6,<5.0dev" +setuptools = "*" + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "h2" +version = "4.1.0" +description = "HTTP/2 State-Machine based protocol implementation" +optional = false +python-versions = ">=3.6.1" +files = [ + {file = "h2-4.1.0-py3-none-any.whl", hash = "sha256:03a46bcf682256c95b5fd9e9a99c1323584c3eec6440d379b9903d709476bc6d"}, + {file = "h2-4.1.0.tar.gz", hash = "sha256:a83aca08fbe7aacb79fec788c9c0bac936343560ed9ec18b82a13a12c28d2abb"}, +] + +[package.dependencies] +hpack = ">=4.0,<5" +hyperframe = ">=6.0,<7" + +[[package]] +name = "hpack" +version = "4.0.0" +description = "Pure-Python HPACK header compression" +optional = false +python-versions = ">=3.6.1" +files = [ + {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, + {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, +] + +[[package]] +name = "httpcore" +version = "0.17.3" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpcore-0.17.3-py3-none-any.whl", hash = "sha256:c2789b767ddddfa2a5782e3199b2b7f6894540b17b16ec26b2c4d8e103510b87"}, + {file = "httpcore-0.17.3.tar.gz", hash = "sha256:a6f30213335e34c1ade7be6ec7c47f19f50c56db36abef1a9dfa3815b1cb3888"}, +] + +[package.dependencies] +anyio = ">=3.0,<5.0" +certifi = "*" +h11 = ">=0.13,<0.15" +sniffio = "==1.*" + +[package.extras] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] + +[[package]] +name = "httpx" +version = "0.24.1" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpx-0.24.1-py3-none-any.whl", hash = "sha256:06781eb9ac53cde990577af654bd990a4949de37a28bdb4a230d434f3a30b9bd"}, + {file = "httpx-0.24.1.tar.gz", hash = "sha256:5853a43053df830c20f8110c5e69fe44d035d850b2dfe795e196f00fdb774bdd"}, +] + +[package.dependencies] +certifi = "*" +h2 = {version = ">=3,<5", optional = true, markers = "extra == \"http2\""} +httpcore = ">=0.15.0,<0.18.0" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] + +[[package]] +name = "hyperframe" +version = "6.0.1" +description = "HTTP/2 framing layer for Python" +optional = false +python-versions = ">=3.6.1" +files = [ + {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, + {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, +] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "importlib-metadata" +version = "6.8.0" +description = "Read metadata from Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "importlib_metadata-6.8.0-py3-none-any.whl", hash = "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb"}, + {file = "importlib_metadata-6.8.0.tar.gz", hash = "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743"}, +] + +[package.dependencies] +zipp = ">=0.5" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +perf = ["ipython"] +testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)", "pytest-ruff"] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "numpy" +version = "1.25.1" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.25.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:77d339465dff3eb33c701430bcb9c325b60354698340229e1dff97745e6b3efa"}, + {file = "numpy-1.25.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d736b75c3f2cb96843a5c7f8d8ccc414768d34b0a75f466c05f3a739b406f10b"}, + {file = "numpy-1.25.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a90725800caeaa160732d6b31f3f843ebd45d6b5f3eec9e8cc287e30f2805bf"}, + {file = "numpy-1.25.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c6c9261d21e617c6dc5eacba35cb68ec36bb72adcff0dee63f8fbc899362588"}, + {file = "numpy-1.25.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0def91f8af6ec4bb94c370e38c575855bf1d0be8a8fbfba42ef9c073faf2cf19"}, + {file = "numpy-1.25.1-cp310-cp310-win32.whl", hash = "sha256:fd67b306320dcadea700a8f79b9e671e607f8696e98ec255915c0c6d6b818503"}, + {file = "numpy-1.25.1-cp310-cp310-win_amd64.whl", hash = "sha256:c1516db588987450b85595586605742879e50dcce923e8973f79529651545b57"}, + {file = "numpy-1.25.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b82655dd8efeea69dbf85d00fca40013d7f503212bc5259056244961268b66e"}, + {file = "numpy-1.25.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e8f6049c4878cb16960fbbfb22105e49d13d752d4d8371b55110941fb3b17800"}, + {file = "numpy-1.25.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41a56b70e8139884eccb2f733c2f7378af06c82304959e174f8e7370af112e09"}, + {file = "numpy-1.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5154b1a25ec796b1aee12ac1b22f414f94752c5f94832f14d8d6c9ac40bcca6"}, + {file = "numpy-1.25.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38eb6548bb91c421261b4805dc44def9ca1a6eef6444ce35ad1669c0f1a3fc5d"}, + {file = "numpy-1.25.1-cp311-cp311-win32.whl", hash = "sha256:791f409064d0a69dd20579345d852c59822c6aa087f23b07b1b4e28ff5880fcb"}, + {file = "numpy-1.25.1-cp311-cp311-win_amd64.whl", hash = "sha256:c40571fe966393b212689aa17e32ed905924120737194b5d5c1b20b9ed0fb171"}, + {file = "numpy-1.25.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3d7abcdd85aea3e6cdddb59af2350c7ab1ed764397f8eec97a038ad244d2d105"}, + {file = "numpy-1.25.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1a180429394f81c7933634ae49b37b472d343cccb5bb0c4a575ac8bbc433722f"}, + {file = "numpy-1.25.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d412c1697c3853c6fc3cb9751b4915859c7afe6a277c2bf00acf287d56c4e625"}, + {file = "numpy-1.25.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20e1266411120a4f16fad8efa8e0454d21d00b8c7cee5b5ccad7565d95eb42dd"}, + {file = "numpy-1.25.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f76aebc3358ade9eacf9bc2bb8ae589863a4f911611694103af05346637df1b7"}, + {file = "numpy-1.25.1-cp39-cp39-win32.whl", hash = "sha256:247d3ffdd7775bdf191f848be8d49100495114c82c2bd134e8d5d075fb386a1c"}, + {file = "numpy-1.25.1-cp39-cp39-win_amd64.whl", hash = "sha256:1d5d3c68e443c90b38fdf8ef40e60e2538a27548b39b12b73132456847f4b631"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:35a9527c977b924042170a0887de727cd84ff179e478481404c5dc66b4170009"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d3fe3dd0506a28493d82dc3cf254be8cd0d26f4008a417385cbf1ae95b54004"}, + {file = "numpy-1.25.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:012097b5b0d00a11070e8f2e261128c44157a8689f7dedcf35576e525893f4fe"}, + {file = "numpy-1.25.1.tar.gz", hash = "sha256:9a3a9f3a61480cc086117b426a8bd86869c213fc4072e606f01c4e4b66eb92bf"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "portalocker" +version = "2.7.0" +description = "Wraps the portalocker recipe for easy usage" +optional = false +python-versions = ">=3.5" +files = [ + {file = "portalocker-2.7.0-py2.py3-none-any.whl", hash = "sha256:a07c5b4f3985c3cf4798369631fb7011adb498e2a46d8440efc75a8f29a0f983"}, + {file = "portalocker-2.7.0.tar.gz", hash = "sha256:032e81d534a88ec1736d03f780ba073f047a06c478b06e2937486f334e955c51"}, +] + +[package.dependencies] +pywin32 = {version = ">=226", markers = "platform_system == \"Windows\""} + +[package.extras] +docs = ["sphinx (>=1.7.1)"] +redis = ["redis"] +tests = ["pytest (>=5.4.1)", "pytest-cov (>=2.8.1)", "pytest-mypy (>=0.8.0)", "pytest-timeout (>=2.1.0)", "redis", "sphinx (>=6.0.0)"] + +[[package]] +name = "protobuf" +version = "4.23.4" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "protobuf-4.23.4-cp310-abi3-win32.whl", hash = "sha256:5fea3c64d41ea5ecf5697b83e41d09b9589e6f20b677ab3c48e5f242d9b7897b"}, + {file = "protobuf-4.23.4-cp310-abi3-win_amd64.whl", hash = "sha256:7b19b6266d92ca6a2a87effa88ecc4af73ebc5cfde194dc737cf8ef23a9a3b12"}, + {file = "protobuf-4.23.4-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8547bf44fe8cec3c69e3042f5c4fb3e36eb2a7a013bb0a44c018fc1e427aafbd"}, + {file = "protobuf-4.23.4-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:fee88269a090ada09ca63551bf2f573eb2424035bcf2cb1b121895b01a46594a"}, + {file = "protobuf-4.23.4-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:effeac51ab79332d44fba74660d40ae79985901ac21bca408f8dc335a81aa597"}, + {file = "protobuf-4.23.4-cp37-cp37m-win32.whl", hash = "sha256:c3e0939433c40796ca4cfc0fac08af50b00eb66a40bbbc5dee711998fb0bbc1e"}, + {file = "protobuf-4.23.4-cp37-cp37m-win_amd64.whl", hash = "sha256:9053df6df8e5a76c84339ee4a9f5a2661ceee4a0dab019e8663c50ba324208b0"}, + {file = "protobuf-4.23.4-cp38-cp38-win32.whl", hash = "sha256:e1c915778d8ced71e26fcf43c0866d7499891bca14c4368448a82edc61fdbc70"}, + {file = "protobuf-4.23.4-cp38-cp38-win_amd64.whl", hash = "sha256:351cc90f7d10839c480aeb9b870a211e322bf05f6ab3f55fcb2f51331f80a7d2"}, + {file = "protobuf-4.23.4-cp39-cp39-win32.whl", hash = "sha256:6dd9b9940e3f17077e820b75851126615ee38643c2c5332aa7a359988820c720"}, + {file = "protobuf-4.23.4-cp39-cp39-win_amd64.whl", hash = "sha256:0a5759f5696895de8cc913f084e27fd4125e8fb0914bb729a17816a33819f474"}, + {file = "protobuf-4.23.4-py3-none-any.whl", hash = "sha256:e9d0be5bf34b275b9f87ba7407796556abeeba635455d036c7351f7c183ef8ff"}, + {file = "protobuf-4.23.4.tar.gz", hash = "sha256:ccd9430c0719dce806b93f89c91de7977304729e55377f872a92465d548329a9"}, +] + +[[package]] +name = "pydantic" +version = "2.1.1" +description = "Data validation using Python type hints" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic-2.1.1-py3-none-any.whl", hash = "sha256:43bdbf359d6304c57afda15c2b95797295b702948082d4c23851ce752f21da70"}, + {file = "pydantic-2.1.1.tar.gz", hash = "sha256:22d63db5ce4831afd16e7c58b3192d3faf8f79154980d9397d9867254310ba4b"}, +] + +[package.dependencies] +annotated-types = ">=0.4.0" +pydantic-core = "2.4.0" +typing-extensions = ">=4.6.1" + +[package.extras] +email = ["email-validator (>=2.0.0)"] + +[[package]] +name = "pydantic-core" +version = "2.4.0" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic_core-2.4.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:2ca4687dd996bde7f3c420def450797feeb20dcee2b9687023e3323c73fc14a2"}, + {file = "pydantic_core-2.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:782fced7d61469fd1231b184a80e4f2fa7ad54cd7173834651a453f96f29d673"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6213b471b68146af97b8551294e59e7392c2117e28ffad9c557c65087f4baee3"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63797499a219d8e81eb4e0c42222d0a4c8ec896f5c76751d4258af95de41fdf1"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_armv7l.whl", hash = "sha256:0455876d575a35defc4da7e0a199596d6c773e20d3d42fa1fc29f6aa640369ed"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:8c938c96294d983dcf419b54dba2d21056959c22911d41788efbf949a29ae30d"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_s390x.whl", hash = "sha256:878a5017d93e776c379af4e7b20f173c82594d94fa073059bcc546789ad50bf8"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:69159afc2f2dc43285725f16143bc5df3c853bc1cb7df6021fce7ef1c69e8171"}, + {file = "pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54df7df399b777c1fd144f541c95d351b3aa110535a6810a6a569905d106b6f3"}, + {file = "pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e412607ca89a0ced10758dfb8f9adcc365ce4c1c377e637c01989a75e9a9ec8a"}, + {file = "pydantic_core-2.4.0-cp310-none-win32.whl", hash = "sha256:853f103e2b9a58832fdd08a587a51de8b552ae90e1a5d167f316b7eabf8d7dde"}, + {file = "pydantic_core-2.4.0-cp310-none-win_amd64.whl", hash = "sha256:3ba2c9c94a9176f6321a879c8b864d7c5b12d34f549a4c216c72ce213d7d953c"}, + {file = "pydantic_core-2.4.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:a8b7acd04896e8f161e1500dc5f218017db05c1d322f054e89cbd089ce5d0071"}, + {file = "pydantic_core-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:16468bd074fa4567592d3255bf25528ed41e6b616d69bf07096bdb5b66f947d1"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cba5ad5eef02c86a1f3da00544cbc59a510d596b27566479a7cd4d91c6187a11"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7206e41e04b443016e930e01685bab7a308113c0b251b3f906942c8d4b48fcb"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_armv7l.whl", hash = "sha256:c1375025f0bfc9155286ebae8eecc65e33e494c90025cda69e247c3ccd2bab00"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_ppc64le.whl", hash = "sha256:3534118289e33130ed3f1cc487002e8d09b9f359be48b02e9cd3de58ce58fba9"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_s390x.whl", hash = "sha256:94d2b36a74623caab262bf95f0e365c2c058396082bd9d6a9e825657d0c1e7fa"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af24ad4fbaa5e4a2000beae0c3b7fd1c78d7819ab90f9370a1cfd8998e3f8a3c"}, + {file = "pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bf10963d8aed8bbe0165b41797c9463d4c5c8788ae6a77c68427569be6bead41"}, + {file = "pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:68199ada7c310ddb8c76efbb606a0de656b40899388a7498954f423e03fc38be"}, + {file = "pydantic_core-2.4.0-cp311-none-win32.whl", hash = "sha256:6f855bcc96ed3dd56da7373cfcc9dcbabbc2073cac7f65c185772d08884790ce"}, + {file = "pydantic_core-2.4.0-cp311-none-win_amd64.whl", hash = "sha256:de39eb3bab93a99ddda1ac1b9aa331b944d8bcc4aa9141148f7fd8ee0299dafc"}, + {file = "pydantic_core-2.4.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:f773b39780323a0499b53ebd91a28ad11cde6705605d98d999dfa08624caf064"}, + {file = "pydantic_core-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a297c0d6c61963c5c3726840677b798ca5b7dfc71bc9c02b9a4af11d23236008"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:546064c55264156b973b5e65e5fafbe5e62390902ce3cf6b4005765505e8ff56"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36ba9e728588588f0196deaf6751b9222492331b5552f865a8ff120869d372e0"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_armv7l.whl", hash = "sha256:57a53a75010c635b3ad6499e7721eaa3b450e03f6862afe2dbef9c8f66e46ec8"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_ppc64le.whl", hash = "sha256:4b262bbc13022f2097c48a21adcc360a81d83dc1d854c11b94953cd46d7d3c07"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_s390x.whl", hash = "sha256:01947ad728f426fa07fcb26457ebf90ce29320259938414bc0edd1476e75addb"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b2799c2eaf182769889761d4fb4d78b82bc47dae833799fedbf69fc7de306faa"}, + {file = "pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a08fd490ba36d1fbb2cd5dcdcfb9f3892deb93bd53456724389135712b5fc735"}, + {file = "pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1e8a7c62d15a5c4b307271e4252d76ebb981d6251c6ecea4daf203ef0179ea4f"}, + {file = "pydantic_core-2.4.0-cp312-none-win32.whl", hash = "sha256:9206c14a67c38de7b916e486ae280017cf394fa4b1aa95cfe88621a4e1d79725"}, + {file = "pydantic_core-2.4.0-cp312-none-win_amd64.whl", hash = "sha256:884235507549a6b2d3c4113fb1877ae263109e787d9e0eb25c35982ab28d0399"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:4cbe929efa77a806e8f1a97793f2dc3ea3475ae21a9ed0f37c21320fe93f6f50"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:9137289de8fe845c246a8c3482dd0cb40338846ba683756d8f489a4bd8fddcae"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5d8e764b5646623e57575f624f8ebb8f7a9f7fd1fae682ef87869ca5fec8dcf"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fba0aff4c407d0274e43697e785bcac155ad962be57518d1c711f45e72da70f"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl", hash = "sha256:30527d173e826f2f7651f91c821e337073df1555e3b5a0b7b1e2c39e26e50678"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:bd7d1dde70ff3e09e4bc7a1cbb91a7a538add291bfd5b3e70ef1e7b45192440f"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_s390x.whl", hash = "sha256:72f1216ca8cef7b8adacd4c4c6b89c3b0c4f97503197f5284c80f36d6e4edd30"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b013c7861a7c7bfcec48fd709513fea6f9f31727e7a0a93ca0dd12e056740717"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:478f5f6d7e32bd4a04d102160efb2d389432ecf095fe87c555c0a6fc4adfc1a4"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d9610b47b5fe4aacbbba6a9cb5f12cbe864eec99dbfed5710bd32ef5dd8a5d5b"}, + {file = "pydantic_core-2.4.0-cp37-none-win32.whl", hash = "sha256:ff246c0111076c8022f9ba325c294f2cb5983403506989253e04dbae565e019b"}, + {file = "pydantic_core-2.4.0-cp37-none-win_amd64.whl", hash = "sha256:d0c2b713464a8e263a243ae7980d81ce2de5ac59a9f798a282e44350b42dc516"}, + {file = "pydantic_core-2.4.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:12ef6838245569fd60a179fade81ca4b90ae2fa0ef355d616f519f7bb27582db"}, + {file = "pydantic_core-2.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:49db206eb8fdc4b4f30e6e3e410584146d813c151928f94ec0db06c4f2595538"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a507d7fa44688bbac76af6521e488b3da93de155b9cba6f2c9b7833ce243d59"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffe18407a4d000c568182ce5388bbbedeb099896904e43fc14eee76cfae6dec5"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_armv7l.whl", hash = "sha256:fa8e48001b39d54d97d7b380a0669fa99fc0feeb972e35a2d677ba59164a9a22"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:394f12a2671ff8c4dfa2e85be6c08be0651ad85bc1e6aa9c77c21671baaf28cd"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_s390x.whl", hash = "sha256:2f9ea0355f90db2a76af530245fa42f04d98f752a1236ed7c6809ec484560d5b"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:61d4e713f467abcdd59b47665d488bb898ad3dd47ce7446522a50e0cbd8e8279"}, + {file = "pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:453862ab268f6326b01f067ed89cb3a527d34dc46f6f4eeec46a15bbc706d0da"}, + {file = "pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:56a85fa0dab1567bd0cac10f0c3837b03e8a0d939e6a8061a3a420acd97e9421"}, + {file = "pydantic_core-2.4.0-cp38-none-win32.whl", hash = "sha256:0d726108c1c0380b88b6dd4db559f0280e0ceda9e077f46ff90bc85cd4d03e77"}, + {file = "pydantic_core-2.4.0-cp38-none-win_amd64.whl", hash = "sha256:047580388644c473b934d27849f8ed8dbe45df0adb72104e78b543e13bf69762"}, + {file = "pydantic_core-2.4.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:867d3eea954bea807cabba83cfc939c889a18576d66d197c60025b15269d7cc0"}, + {file = "pydantic_core-2.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:664402ef0c238a7f8a46efb101789d5f2275600fb18114446efec83cfadb5b66"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64e8012ad60a5f0da09ed48725e6e923d1be25f2f091a640af6079f874663813"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac2b680de398f293b68183317432b3d67ab3faeba216aec18de0c395cb5e3060"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_armv7l.whl", hash = "sha256:8efc1be43b036c2b6bcfb1451df24ee0ddcf69c31351003daf2699ed93f5687b"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:d93aedbc4614cc21b9ab0d0c4ccd7143354c1f7cffbbe96ae5216ad21d1b21b5"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_s390x.whl", hash = "sha256:af788b64e13d52fc3600a68b16d31fa8d8573e3ff2fc9a38f8a60b8d94d1f012"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:97c6349c81cee2e69ef59eba6e6c08c5936e6b01c2d50b9e4ac152217845ae09"}, + {file = "pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:cc086ddb6dc654a15deeed1d1f2bcb1cb924ebd70df9dca738af19f64229b06c"}, + {file = "pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e953353180bec330c3b830891d260b6f8e576e2d18db3c78d314e56bb2276066"}, + {file = "pydantic_core-2.4.0-cp39-none-win32.whl", hash = "sha256:6feb4b64d11d5420e517910d60a907d08d846cacaf4e029668725cd21d16743c"}, + {file = "pydantic_core-2.4.0-cp39-none-win_amd64.whl", hash = "sha256:153a61ac4030fa019b70b31fb7986461119230d3ba0ab661c757cfea652f4332"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:3fcf529382b282a30b466bd7af05be28e22aa620e016135ac414f14e1ee6b9e1"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2edef05b63d82568b877002dc4cb5cc18f8929b59077120192df1e03e0c633f8"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da055a1b0bfa8041bb2ff586b2cb0353ed03944a3472186a02cc44a557a0e661"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:77dadc764cf7c5405e04866181c5bd94a447372a9763e473abb63d1dfe9b7387"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:a4ea23b07f29487a7bef2a869f68c7ee0e05424d81375ce3d3de829314c6b5ec"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:382f0baa044d674ad59455a5eff83d7965572b745cc72df35c52c2ce8c731d37"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:08f89697625e453421401c7f661b9d1eb4c9e4c0a12fd256eeb55b06994ac6af"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:43a405ce520b45941df9ff55d0cd09762017756a7b413bbad3a6e8178e64a2c2"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:584a7a818c84767af16ce8bda5d4f7fedb37d3d231fc89928a192f567e4ef685"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04922fea7b13cd480586fa106345fe06e43220b8327358873c22d8dfa7a711c7"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:17156abac20a9feed10feec867fddd91a80819a485b0107fe61f09f2117fe5f3"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e562cc63b04636cde361fd47569162f1daa94c759220ff202a8129902229114"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:90f3785146f701e053bb6b9e8f53acce2c919aca91df88bd4975be0cb926eb41"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e40b1e97edd3dc127aa53d8a5e539a3d0c227d71574d3f9ac1af02d58218a122"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:b27f3e67f6e031f6620655741b7d0d6bebea8b25d415924b3e8bfef2dd7bd841"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be86c2eb12fb0f846262ace9d8f032dc6978b8cb26a058920ecb723dbcb87d05"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4665f7ed345012a8d2eddf4203ef145f5f56a291d010382d235b94e91813f88a"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:79262be5a292d1df060f29b9a7cdd66934801f987a817632d7552534a172709a"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5fd905a69ac74eaba5041e21a1e8b1a479dab2b41c93bdcc4c1cede3c12a8d86"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:2ad538b7e07343001934417cdc8584623b4d8823c5b8b258e75ec8d327cec969"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:dd2429f7635ad4857b5881503f9c310be7761dc681c467a9d27787b674d1250a"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:efff8b6761a1f6e45cebd1b7a6406eb2723d2d5710ff0d1b624fe11313693989"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32a1e0352558cd7ccc014ffe818c7d87b15ec6145875e2cc5fa4bb7351a1033d"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a027f41c5008571314861744d83aff75a34cf3a07022e0be32b214a5bc93f7f1"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1927f0e15d190f11f0b8344373731e28fd774c6d676d8a6cfadc95c77214a48b"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7aa82d483d5fb867d4fb10a138ffd57b0f1644e99f2f4f336e48790ada9ada5e"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:b85778308bf945e9b33ac604e6793df9b07933108d20bdf53811bc7c2798a4af"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3ded19dcaefe2f6706d81e0db787b59095f4ad0fbadce1edffdf092294c8a23f"}, + {file = "pydantic_core-2.4.0.tar.gz", hash = "sha256:ec3473c9789cc00c7260d840c3db2c16dbfc816ca70ec87a00cddfa3e1a1cdd5"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pywin32" +version = "306" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "qdrant-client" +version = "1.3.2" +description = "Client library for the Qdrant vector search engine" +optional = false +python-versions = ">=3.7,<3.12" +files = [ + {file = "qdrant_client-1.3.2-py3-none-any.whl", hash = "sha256:66a076016fb9d33bec8170e96516d7e4a0ee5c611824cc9be18590ffeb3cf9aa"}, + {file = "qdrant_client-1.3.2.tar.gz", hash = "sha256:6638c9eac027f2c0fdb1f63c3bd7b403fe8c3f73cb1f21fd15fd60f71012d537"}, +] + +[package.dependencies] +grpcio = ">=1.41.0" +grpcio-tools = ">=1.41.0" +httpx = {version = ">=0.14.0", extras = ["http2"]} +numpy = {version = ">=1.21", markers = "python_version >= \"3.8\""} +portalocker = ">=2.7.0,<3.0.0" +pydantic = ">=1.10.8" +urllib3 = ">=1.26.14,<2.0.0" + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[[package]] +name = "zipp" +version = "3.16.2" +description = "Backport of pathlib-compatible object wrapper for zip files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, + {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] + +[metadata] +lock-version = "2.0" +python-versions = "~3.11" +content-hash = "fede34d7b071e6d288809f00918b0b33ea29e037f98fa666b284e3b687b08cb1" diff --git a/qdrant/provider/__init__.py b/qdrant/provider/__init__.py new file mode 100644 index 000000000..4b4869f2a --- /dev/null +++ b/qdrant/provider/__init__.py @@ -0,0 +1,30 @@ +import connexion # type: ignore +import logging +import os + +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/qdrant/provider/app.py b/qdrant/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/qdrant/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/qdrant/provider/provider.py b/qdrant/provider/provider.py new file mode 100644 index 000000000..33ff7a1a4 --- /dev/null +++ b/qdrant/provider/provider.py @@ -0,0 +1,44 @@ +from flask import current_app as app +import logging + +import cohere +from qdrant_client import QdrantClient +from qdrant_client.http.models import Distance, PointStruct, UpdateStatus, VectorParams + + +logger = logging.getLogger(__name__) +qdrant_client = None +cohere_client = None + + +def search(query): + global qdrant_client + global cohere_client + + if not cohere_client: + assert ( + apikey := app.config.get("COHERE_APIKEY") + ), "QDRANT_COHERE_APIKEY env var must be set" + cohere_client = cohere.Client(apikey) + if not qdrant_client: + qdrant_client = QdrantClient( + app.config["CLUSTER_HOST"], port=app.config["CLUSTER_PORT"] + ) + + # Since we need a vector in order to query Qdrant, we'll use the Cohere API to generate an embedding. + # Naturally, you should use the same embedding model that you used to generate the vectors for the original data. + xq = cohere_client.embed( + [query], + model=app.config["COHERE_EMBED_MODEL"], + ).embeddings + + search_result = qdrant_client.search( + collection_name=app.config["COLLECTION"], query_vector=xq[0], limit=10 + ) + + results = [ + {"pid": result.payload["pid"], "text": result.payload["text"]} + for result in search_result + ] + + return results diff --git a/qdrant/pyproject.toml b/qdrant/pyproject.toml new file mode 100644 index 000000000..ff570c1f0 --- /dev/null +++ b/qdrant/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "qdrant-connector" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "~3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +cohere = "^4.18.0" +qdrant-client = "^1.3.2" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/readme/.env-template b/readme/.env-template new file mode 100644 index 000000000..cd1e5e0aa --- /dev/null +++ b/readme/.env-template @@ -0,0 +1,2 @@ +README_API_KEY= +README_CONNECTOR_API_KEY= diff --git a/readme/README.md b/readme/README.md new file mode 100644 index 000000000..0612c0c90 --- /dev/null +++ b/readme/README.md @@ -0,0 +1,49 @@ +# Readme Connector + +Connects Cohere to Readme. + +## Configuration + +To use this connector, you must have a Readme account. Readme is a hosted service, and this connector +does not have a local database or test data. It uses the Readme Search Docs API: + +https://docs.readme.com/main/reference/searchdocs + +The required environment variables for this connector are: + +- `README_API_KEY` +- `README_CONNECTOR_API_KEY` + +Environment variables can optionally be placed in a file called `.env`. See `.env-template` for a +full list of available options. This file can be copied to `.env` and modified. Options that are +left empty will be ignored. + +The Readme Search Docs API accepts no parameters except for the search query, therefore this connector offers limited configuration options. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/readme/poetry.lock b/readme/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/readme/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/readme/provider/__init__.py b/readme/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/readme/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/readme/provider/app.py b/readme/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/readme/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/readme/provider/provider.py b/readme/provider/provider.py new file mode 100644 index 000000000..df6fa96a0 --- /dev/null +++ b/readme/provider/provider.py @@ -0,0 +1,30 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + assert (api_key := app.config.get("API_KEY")), "README_API_KEY must be set" + + url = "https://dash.readme.com/api/v1/docs/search" + + params = { + "search": query, + } + + auth = requests.auth.HTTPBasicAuth(api_key, "") + response = requests.post(url, params=params, auth=auth) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + data = response.json() + return data["results"] diff --git a/readme/pyproject.toml b/readme/pyproject.toml new file mode 100644 index 000000000..688bb35da --- /dev/null +++ b/readme/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "readme" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/redis/.env-template b/redis/.env-template new file mode 100644 index 000000000..e3ac6bf53 --- /dev/null +++ b/redis/.env-template @@ -0,0 +1,5 @@ +REDIS_HOST="localhost" +REDIS_PORT=6379 +REDIS_INDEX="bbq_index" +REDIS_FIELDS="id,name,description,brand,color,country,rank" +REDIS_CONNECTOR_API_KEY= diff --git a/redis/README.md b/redis/README.md new file mode 100644 index 000000000..7278461bc --- /dev/null +++ b/redis/README.md @@ -0,0 +1,64 @@ +# Redis RediSearch Connector + +Connects Cohere to a Redis database. It uses the Redis RediSearch module for +performing a fulltext search in the Redis database. + +## Configuration + +The following configuration variables can be set as environment variables, or put into a `.env` file +to control the behaviour of this connector: + +``` +REDIS_HOST=localhost +REDIS_PORT=63709 +REDIS_INDEX=bbq_index +REDIS_FIELDS=id,name,description,brand,color,country,rank +REDIS_CONNECTOR_API_KEY= +``` + +The `REDISEARCH_INDEX` config variable should be set to the name of the index to search in Redis. The +`load_data.py` script will create one called `bbq_index` for testing, but in production use this should be changed. + +The `REDISEARCH_FIELDS` config variable contains the fields from the index, which should be returned in the +results from the Flask app. These correspond to the schema that was used when the Redis `FT.CREATE` command +was run. It is not necessary to return all fields from the index but the fields in this comma separate list +must be fields from the index. This connector does not look up other keys that are not part of the index +when returning results. + +To use the test data during development, you must copy the `.env-template` file to `.env`, or set the +environment variables manually. + +Finally, to protect this connector from abuse, the `REDIS_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +A development Redis server can be started with `docker-compose up`. This will start a Redis server with the +Redisearch module. To load test data into the Redis db, you can use the following command: + +```bash +docker-compose run data-loader +``` + +```bash +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry: + +```bash +poetry install +poetry run flask --app provider run --debug +``` + +Once the Redis and Flask servers are running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/redis/dev/load_data.py b/redis/dev/load_data.py new file mode 100644 index 000000000..458964a3a --- /dev/null +++ b/redis/dev/load_data.py @@ -0,0 +1,48 @@ +import csv +import logging +import os + +import redis +from dotenv import load_dotenv + +from redis.commands.search.field import TextField +from redis.commands.search.indexDefinition import IndexDefinition, IndexType + + +logger = logging.getLogger(__name__) +logger.info("Loading BBQ Test Data") + +load_dotenv() + +r = redis.Redis( + host=os.environ.get("REDISEARCH_HOST", "localhost"), + port=os.environ.get("REDISEARCH_PORT", 6379), + decode_responses=True, +) +fields = ["Name", "Description", "Features", "Brand", "Color", "Country", "Rank"] + +with open("../../testdata/bbq.csv", newline="") as csvfile: + reader = csv.DictReader(csvfile) + + for row in reader: + bbq_id = row["ID"] + hash_name = f"bbq_{bbq_id}" + + for field in fields: + field_name = field.lower() + key = f"bbq_{field_name}_{bbq_id}" + r.set(key, row[field]) + r.hset(f"bbq_{bbq_id}", field_name, row[field]) + +schema = ( + TextField("name"), + TextField("description"), + TextField("features"), + TextField("color"), + TextField("country"), + TextField("rank"), +) + +r.ft("bbq_index").create_index( + schema, definition=IndexDefinition(prefix=["bbq_"], index_type=IndexType.HASH) +) diff --git a/redis/docker-compose.yml b/redis/docker-compose.yml new file mode 100644 index 000000000..098463194 --- /dev/null +++ b/redis/docker-compose.yml @@ -0,0 +1,34 @@ +version: "1" +services: + redis: + image: redis/redis-stack:latest + container_name: redis + restart: unless-stopped + ports: + - 6379:6379 + healthcheck: + test: ["CMD", "redis-cli", "--raw", "incr", "ping"] + interval: 10s + timeout: 5s + retries: 5 + networks: + - redis-network + volumes: + - ./redis-data:/data + + data-loader: + image: python:3.11 + depends_on: + - redis + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/load_data.py + command: sh -c "pip install redis && python3 /load_data.py" + profiles: + - tools + networks: + - redis-network + +networks: + redis-network: + driver: bridge diff --git a/redis/poetry.lock b/redis/poetry.lock new file mode 100644 index 000000000..db78d2dbf --- /dev/null +++ b/redis/poetry.lock @@ -0,0 +1,974 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "async-timeout" +version = "4.0.2" +description = "Timeout context manager for asyncio programs" +optional = false +python-versions = ">=3.6" +files = [ + {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, + {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "cryptography" +version = "41.0.6" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:0f27acb55a4e77b9be8d550d762b0513ef3fc658cd3eb15110ebbcbd626db12c"}, + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ae236bb8760c1e55b7a39b6d4d32d2279bc6c7c8500b7d5a13b6fb9fc97be35b"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596"}, + {file = "cryptography-41.0.6-cp37-abi3-win32.whl", hash = "sha256:2132d5865eea673fe6712c2ed5fb4fa49dba10768bb4cc798345748380ee3660"}, + {file = "cryptography-41.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:48783b7e2bef51224020efb61b42704207dde583d7e371ef8fc2a5fb6c0aabc7"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8efb2af8d4ba9dbc9c9dd8f04d19a7abb5b49eab1f3694e7b5a16a5fc2856f5c"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c5a550dc7a3b50b116323e3d376241829fd326ac47bc195e04eb33a8170902a9"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:85abd057699b98fce40b41737afb234fef05c67e116f6f3650782c10862c43da"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f39812f70fc5c71a15aa3c97b2bbe213c3f2a460b79bd21c40d033bb34a9bf36"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:742ae5e9a2310e9dade7932f9576606836ed174da3c7d26bc3d3ab4bd49b9f65"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:35f3f288e83c3f6f10752467c48919a7a94b7d88cc00b0668372a0d2ad4f8ead"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d03186af98b1c01a4eda396b137f29e4e3fb0173e30f885e27acec8823c1b09"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b27a7fd4229abef715e064269d98a7e2909ebf92eb6912a9603c7e14c181928c"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:398ae1fc711b5eb78e977daa3cbf47cec20f2c08c5da129b7a296055fbb22aed"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7e00fb556bda398b99b0da289ce7053639d33b572847181d6483ad89835115f6"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60e746b11b937911dc70d164060d28d273e31853bb359e2b2033c9e93e6f3c43"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3288acccef021e3c3c10d58933f44e8602cf04dba96d9796d70d537bb2f4bbc4"}, + {file = "cryptography-41.0.6.tar.gz", hash = "sha256:422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "platformdirs" +version = "3.9.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.9.1-py3-none-any.whl", hash = "sha256:ad8291ae0ae5072f66c16945166cb11c63394c7a3ad1b1bc9828ca3162da8c2f"}, + {file = "platformdirs-3.9.1.tar.gz", hash = "sha256:1b42b450ad933e981d56e59f1b97495428c9bd60698baab9f3eb3d00d5822421"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "redis" +version = "4.6.0" +description = "Python client for Redis database and key-value store" +optional = false +python-versions = ">=3.7" +files = [ + {file = "redis-4.6.0-py3-none-any.whl", hash = "sha256:e2b03db868160ee4591de3cb90d40ebb50a90dd302138775937f6a42b7ed183c"}, + {file = "redis-4.6.0.tar.gz", hash = "sha256:585dc516b9eb042a619ef0a39c3d7d55fe81bdb4df09a52c9cdde0d07bf1aa7d"}, +] + +[package.dependencies] +async-timeout = {version = ">=4.0.2", markers = "python_full_version <= \"3.11.2\""} + +[package.extras] +hiredis = ["hiredis (>=1.0.0)"] +ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-colorama" +version = "0.4.15.12" +description = "Typing stubs for colorama" +optional = false +python-versions = "*" +files = [ + {file = "types-colorama-0.4.15.12.tar.gz", hash = "sha256:fbdfc5d9d24d85c33bd054fbe33adc6cec44eedb19cfbbabfbbb57dc257ae4b8"}, + {file = "types_colorama-0.4.15.12-py3-none-any.whl", hash = "sha256:23c9d4a00961227f7ef018d5a1c190c4bbc282119c3ee76a17677a793f13bb82"}, +] + +[[package]] +name = "types-pyopenssl" +version = "23.2.0.2" +description = "Typing stubs for pyOpenSSL" +optional = false +python-versions = "*" +files = [ + {file = "types-pyOpenSSL-23.2.0.2.tar.gz", hash = "sha256:6a010dac9ecd42b582d7dd2cc3e9e40486b79b3b64bb2fffba1474ff96af906d"}, + {file = "types_pyOpenSSL-23.2.0.2-py3-none-any.whl", hash = "sha256:19536aa3debfbe25a918cf0d898e9f5fbbe6f3594a429da7914bf331deb1b342"}, +] + +[package.dependencies] +cryptography = ">=35.0.0" + +[[package]] +name = "types-redis" +version = "4.6.0.3" +description = "Typing stubs for redis" +optional = false +python-versions = "*" +files = [ + {file = "types-redis-4.6.0.3.tar.gz", hash = "sha256:efdef37dc0c04bf5786195651fd694f8bfdd693eac09ec4af46d90f72652558f"}, + {file = "types_redis-4.6.0.3-py3-none-any.whl", hash = "sha256:67c44c14369c33c2a300da2a50b5607c0fc888f7b85eeb7c73e15c78a0f05edd"}, +] + +[package.dependencies] +cryptography = ">=35.0.0" +types-pyOpenSSL = "*" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "58daab47ad3eced50c9df9f949d0ef81da7d494b4d17fa0e9c8c265d36fb5594" diff --git a/redis/provider/__init__.py b/redis/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/redis/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/redis/provider/app.py b/redis/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/redis/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/redis/provider/provider.py b/redis/provider/provider.py new file mode 100644 index 000000000..b24bfde95 --- /dev/null +++ b/redis/provider/provider.py @@ -0,0 +1,41 @@ +from typing import Any + +import redis +from flask import current_app as app + + +DEFAULT_HOST = "localhost" +DEFAULT_PORT = 6379 + +r = None +fields = None + + +def search(query) -> list[dict[str, Any]]: + global r + global fields + + if not r: + r = redis.Redis( + host=app.config.get("HOST", DEFAULT_HOST), + port=app.config.get("PORT", DEFAULT_PORT), + decode_responses=True, + ) + + if not fields: + assert ( + fields := app.config.get("FIELDS") + ), "REDIS_FIELDS config var must be set" + fields = fields.split(",") + + assert (index := app.config.get("INDEX")), "REDIS_INDEX config var must be set" + + redisearch_results = r.ft(index).search(query) + + results = [] + + for doc in redisearch_results.docs: + result = {field: getattr(doc, field) for field in fields} + results.append(result) + + return results diff --git a/redis/pyproject.toml b/redis/pyproject.toml new file mode 100644 index 000000000..d1eb1d8a5 --- /dev/null +++ b/redis/pyproject.toml @@ -0,0 +1,27 @@ +[tool.poetry] +name = "connector-redis" +version = "0.1.0" +description = "Connects Cohere to Redis RediSearch" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +connexion = "^2.14.2" +python-dotenv = "^1.0.0" +redis = "^4.6.0" +flask = {version = "2.2.5", extras = ["swagger-ui"]} + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-colorama = "^0.4.15.12" +types-redis = "^4.6.0.3" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/redis/redis-data/README b/redis/redis-data/README new file mode 100644 index 000000000..94a50e696 --- /dev/null +++ b/redis/redis-data/README @@ -0,0 +1,2 @@ +This directory is used to persist data in the Redis, inside the Docker container. + diff --git a/redshift/.env-template b/redshift/.env-template new file mode 100644 index 000000000..a55433905 --- /dev/null +++ b/redshift/.env-template @@ -0,0 +1,9 @@ +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_REGION= +REDSHIFT_DATABASE_NAME= +REDSHIFT_WORKGROUP_NAME= +REDSHIFT_DATABASE_TABLE= +REDSHIFT_DATABASE_COLUMN= +REDSHIFT_LIMIT_SIZE= +REDSHIFT_CONNECTOR_API_KEY= diff --git a/redshift/README.md b/redshift/README.md new file mode 100644 index 000000000..398c26130 --- /dev/null +++ b/redshift/README.md @@ -0,0 +1,44 @@ +# Amazon Redshift Connector + +Connects Cohere to Amazon's Redshift, their petabyte-scale cloud data warehouse. + +## Configuration + +To use this connector, you must first setup your AWS Redshift instance with a database setup. Then, +create a new IAM user for this connector. The IAM user will require either the `AmazonRedshiftFullAccess` +policy, but it is recommended to add the `AmazonRedshiftReadOnlyAccess` policy with `Redshift Serverless` permissions +instead, to give your user read-only access. + +From this IAM user, you can then retrieve the values to input for `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` for +authentication. You will also need to retrieve information about your Redshift instance, see the `.env-template` file +for what is required. + +Finally, to protect this connector from abuse, the `REDSHIFT_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/redshift/poetry.lock b/redshift/poetry.lock new file mode 100644 index 000000000..32eb47f50 --- /dev/null +++ b/redshift/poetry.lock @@ -0,0 +1,909 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "backoff" +version = "2.2.1" +description = "Function decoration for backoff and retry" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, + {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, +] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "boto3" +version = "1.28.26" +description = "The AWS SDK for Python" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "boto3-1.28.26-py3-none-any.whl", hash = "sha256:63619ffa44bc7f799b525c86d73bdb7f7a70994942bbff78253585bf64084e6e"}, + {file = "boto3-1.28.26.tar.gz", hash = "sha256:a15841c7d04f87c63c9f2587b2b48198bec04d307d7b9950cbe4a021f845a5ba"}, +] + +[package.dependencies] +botocore = ">=1.31.26,<1.32.0" +jmespath = ">=0.7.1,<2.0.0" +s3transfer = ">=0.6.0,<0.7.0" + +[package.extras] +crt = ["botocore[crt] (>=1.21.0,<2.0a0)"] + +[[package]] +name = "botocore" +version = "1.31.26" +description = "Low-level, data-driven core of boto 3." +optional = false +python-versions = ">= 3.7" +files = [ + {file = "botocore-1.31.26-py3-none-any.whl", hash = "sha256:74d1c26144915312004a9f0232cdbe08946dfec9fc7dcd854456d2b73be9bfd9"}, + {file = "botocore-1.31.26.tar.gz", hash = "sha256:e68a50ba76425ede8693fdf1f95b8411e283bc7619c03d7eb666db9f1de48153"}, +] + +[package.dependencies] +jmespath = ">=0.7.1,<2.0.0" +python-dateutil = ">=2.1,<3.0.0" +urllib3 = ">=1.25.4,<1.27" + +[package.extras] +crt = ["awscrt (==0.16.26)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jmespath" +version = "1.0.1" +description = "JSON Matching Expressions" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, + {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, +] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "s3transfer" +version = "0.6.1" +description = "An Amazon S3 Transfer Manager" +optional = false +python-versions = ">= 3.7" +files = [ + {file = "s3transfer-0.6.1-py3-none-any.whl", hash = "sha256:3c0da2d074bf35d6870ef157158641178a4204a6e689e82546083e31e0311346"}, + {file = "s3transfer-0.6.1.tar.gz", hash = "sha256:640bb492711f4c0c0905e1f62b6aaeb771881935ad27884852411f8e9cacbca9"}, +] + +[package.dependencies] +botocore = ">=1.12.36,<2.0a.0" + +[package.extras] +crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "459c55c1178f4a9f353b060c4206fb87459a6482fdee1d5b616ddd2805ccd28a" diff --git a/redshift/provider/__init__.py b/redshift/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/redshift/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/redshift/provider/app.py b/redshift/provider/app.py new file mode 100644 index 000000000..1569ab48d --- /dev/null +++ b/redshift/provider/app.py @@ -0,0 +1,35 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Opensearch config error: {error}") + abort(502, f"Pagerduty config error: {error}") + except Exception as error: + logger.error(f"Pagerduty search error: {error}") + abort(502, f"Opensearch search error: {error}") + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/redshift/provider/client.py b/redshift/provider/client.py new file mode 100644 index 000000000..0c377e8cf --- /dev/null +++ b/redshift/provider/client.py @@ -0,0 +1,34 @@ +import os + +import boto3 + +from . import UpstreamProviderError + +client = None + + +def get_client(): + global client + assert ( + AWS_ACCESS_KEY_ID := os.environ.get("AWS_ACCESS_KEY_ID") + ), "AWS_ACCESS_KEY_ID must be set" + assert ( + AWS_SECRET_ACCESS_KEY := os.environ.get("AWS_SECRET_ACCESS_KEY") + ), "AWS_SECRET_ACCESS_KEY must be set" + assert (AWS_REGION := os.environ.get("AWS_REGION")), "AWS_REGION must be set" + + if not client: + try: + client = boto3.client( + "redshift-data", + region_name=AWS_REGION, + aws_access_key_id=AWS_ACCESS_KEY_ID, + aws_secret_access_key=AWS_SECRET_ACCESS_KEY, + ) + except Exception as e: + message = ( + f"Error {str(e)} while initializing redshift-data client through boto3." + ) + raise UpstreamProviderError(message) + + return client diff --git a/redshift/provider/provider.py b/redshift/provider/provider.py new file mode 100644 index 000000000..ef3a4d640 --- /dev/null +++ b/redshift/provider/provider.py @@ -0,0 +1,92 @@ +import logging +import backoff +from typing import Any + +import boto3 +from botocore.exceptions import ClientError +from flask import current_app as app +from .client import get_client + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def parse_data(response_data) -> list[dict[str, Any]]: + # Extract the metadata for column names + column_metadata = response_data["ColumnMetadata"] + column_names = [column["name"] for column in column_metadata] + + # Extract the records and transform them into a list of dictionaries + records = response_data["Records"] + formatted_records = [] + + for record in records: + formatted_record = {column_names[i]: value for i, value in enumerate(record)} + formatted_records.append(formatted_record) + + return formatted_records + + +@backoff.on_exception(backoff.expo, ClientError, max_time=20, max_tries=10) +def get_statement_with_retry(client, execution_id): + statement_response = client.get_statement_result( + Id=execution_id, + ) + + return statement_response + + +def search(query) -> list[dict[str, Any]]: + LIMIT_SIZE = app.config.get("LIMIT_SIZE", 100) + assert ( + db_name := app.config.get("DATABASE_NAME") + ), "REDSHIFT_DATABASE_NAME must be set" + assert ( + workgroup_name := app.config.get("WORKGROUP_NAME") + ), "REDSHIFT_WORKGROUP_NAME must be set" + assert ( + db_table := app.config.get("DATABASE_TABLE") + ), "REDSHIFT_DATABASE_TABLE must be set" + assert ( + db_column := app.config.get("DATABASE_COLUMN") + ), "REDSHIFT_DATABASE_COLUMN must be set" + + redshift_client = get_client() + sql_query = f""" + SELECT * from {db_table} + WHERE {db_column} ILIKE :query_param LIMIT {LIMIT_SIZE}; + """ + params = [ + { + "name": "query_param", + "value": f"%{query}%", + } + ] + + try: + # Execute statement and then fetch the results with retries + # Redshift executes the statement asynchronously, we have to continuously + # poll for results with get_statement_result() to know the outcomes + execution_response = redshift_client.execute_statement( + WorkgroupName=workgroup_name, + Database=db_name, + Sql=sql_query, + Parameters=params, + ) + # Get result, with retries on the same execution ID + results_response = get_statement_with_retry( + redshift_client, execution_response["Id"] + ) + except ClientError as err: + # Finally, if all the retries fail then we can use describe_response() + # for a better understanding of why the execution failed + describe_response = redshift_client.describe_statement( + Id=execution_response["Id"] + ) + raise UpstreamProviderError(describe_response) from err + + # AWS Redshift response is keyed by type, need to + # parse to column name instead + return parse_data(results_response) diff --git a/redshift/pyproject.toml b/redshift/pyproject.toml new file mode 100644 index 000000000..d026d3d9e --- /dev/null +++ b/redshift/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "redshift" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +boto3 = "1.28.26" +backoff = "^2.2.1" + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/reuters/.env-template b/reuters/.env-template new file mode 100644 index 000000000..5caed5465 --- /dev/null +++ b/reuters/.env-template @@ -0,0 +1,5 @@ +REUTERS_CLIENT_ID= +REUTERS_CLIENT_SECRET= +REUTERS_AUDIENCE= +REUTERS_CONNECTOR_API_KEY= + diff --git a/reuters/README.md b/reuters/README.md new file mode 100644 index 000000000..18d47250a --- /dev/null +++ b/reuters/README.md @@ -0,0 +1,46 @@ +# Reuters Quick Start Connector + +Connects Cohere to Reuters, enabling search across news content. + +## Limitations + +The Reuters connector allows multi-keyword full-text search for the body, headline, and caption fields of a Reuters +article. + +## Configuration + +To use this connector, you will need a Reuters paid account, and have the following credentials stored inside a `.env` +at the root of this project: + +- REUTERS_CLIENT_ID +- REUTERS_CLIENT_SECRET +- REUTERS_AUDIENCE +- REUTERS_CONNECTOR_API_KEY (optional - used for the Reuters Connector security) + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/reuters/poetry.lock b/reuters/poetry.lock new file mode 100644 index 000000000..6471d8abd --- /dev/null +++ b/reuters/poetry.lock @@ -0,0 +1,801 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "5abe631aafee4f7e94a2492f5756c18169bd5e37c0b07d1ac849e7652173f071" diff --git a/reuters/provider/__init__.py b/reuters/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/reuters/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/reuters/provider/app.py b/reuters/provider/app.py new file mode 100644 index 000000000..9e6dec59e --- /dev/null +++ b/reuters/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/reuters/provider/client.py b/reuters/provider/client.py new file mode 100644 index 000000000..100a6f0ff --- /dev/null +++ b/reuters/provider/client.py @@ -0,0 +1,126 @@ +import time + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class ReutersClient: + # Constants + TOKEN_ENDPOINT = "https://auth.thomsonreuters.com/oauth/token" + GRAPHQL_ENDPOINT = "https://api.reutersconnect.com/content/graphql" + GRANT_TYPE = "client_credentials" + DEFAULT_SCOPE = "https://api.thomsonreuters.com/auth/reutersconnect.contentapi.read" + + token = None + expires_at = time.time() + + def __init__(self, client_id, client_secret, audience): + self.client_id = client_id + self.client_secret = client_secret + self.audience = audience + + def _build_auth_headers(self): + # If Token does not exist, or has expired, fetch again + if not self.token or time.time() > self.expires_at: + self.fetch_token() + + headers = { + "Authorization": f"Bearer {self.token}", + "Content-Type": "application/json", + } + + return headers + + def _build_query(self, query): + or_operator = " OR " + words = query.split(" ") + + if len(words) == 1: + return query + + return f"({or_operator.join(words)})" + + def fetch_token(self): + body = { + "client_id": self.client_id, + "client_secret": self.client_secret, + "grant_type": self.GRANT_TYPE, + "audience": self.audience, + "scope": self.DEFAULT_SCOPE, + } + + response = requests.post( + self.TOKEN_ENDPOINT, + data=body, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + token_data = response.json() + + # Update token and expiry + self.token = token_data["access_token"] + self.expires_at = time.time() + token_data["expires_in"] + + def search(self, query): + headers = self._build_auth_headers() + graphql = """ + query ($query: String!) { + search(query: $query) { + items { + intro + language + slug + type + firstCreated + headLine + fragment + urgency + headLine + versionedGuid + uri + profile + version + credit + sortTimestamp + contentTimestamp + productLabel + } + } + } + """ + + response = requests.post( + self.GRAPHQL_ENDPOINT, + headers=headers, + json={ + "query": graphql, + "variables": {"query": f"fulltext:{self._build_query(query)}"}, + }, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["data"]["search"]["items"] + + +def get_client(): + global client + assert (client_id := app.config.get("CLIENT_ID")), "REUTERS_CLIENT_ID must be set" + assert ( + client_secret := app.config.get("CLIENT_SECRET") + ), "REUTERS_CLIENT_SECRET must be set" + assert (audience := app.config.get("AUDIENCE")), "REUTERS_AUDIENCE must be set" + + if not client: + client = ReutersClient(client_id, client_secret, audience) + + return client diff --git a/reuters/provider/provider.py b/reuters/provider/provider.py new file mode 100644 index 000000000..4c27d3da2 --- /dev/null +++ b/reuters/provider/provider.py @@ -0,0 +1,36 @@ +import logging +from typing import Any + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + reuters_client = get_client() + + search_results = reuters_client.search(query) + results = [] + for result in search_results: + results.append(serialize_result(result)) + + return results + + +def serialize_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_source = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "headLine" in stripped_source: + stripped_source["title"] = stripped_source["headLine"] + del stripped_source["headLine"] + + if "fragment" in stripped_source: + stripped_source["text"] = stripped_source["fragment"] + del stripped_source["fragment"] + + return stripped_source diff --git a/reuters/pyproject.toml b/reuters/pyproject.toml new file mode 100644 index 000000000..5cdb4f812 --- /dev/null +++ b/reuters/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "reuters" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" +black = "^23.11.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/servicenow/.env-template b/servicenow/.env-template new file mode 100644 index 000000000..f01b7f751 --- /dev/null +++ b/servicenow/.env-template @@ -0,0 +1,6 @@ +SERVICENOW_INSTANCE_URL=https://dev123456.service-now.com +SERVICENOW_TABLE_NAME=incident +SERVICENOW_USERNAME=admin +SERVICENOW_PASSWORD= +SERVICENOW_RESULT_LIMIT=10 +SERVICENOW_CONNECTOR_API_KEY= diff --git a/servicenow/README.md b/servicenow/README.md new file mode 100644 index 000000000..ab1e243dc --- /dev/null +++ b/servicenow/README.md @@ -0,0 +1,49 @@ +# ServiceNow Connector + +Connects Cohere to ServiceNow. + +## Configuration + +This connector requires that the following environment variables are set in order to run: + +``` +SERVICENOW_INSTANCE_URL +SERVICENOW_TABLE_NAME +SERVICENOW_USERNAME +SERVICENOW_PASSWORD +SERVICENOW_CONNECTOR_API_KEY +``` + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +Finally, to protect this connector from abuse, the `SERVICENOW_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/servicenow/poetry.lock b/servicenow/poetry.lock new file mode 100644 index 000000000..7e3f28dda --- /dev/null +++ b/servicenow/poetry.lock @@ -0,0 +1,775 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f33592ddf9655a4894aef22d134de7393e95fcbdc2d15c1ab65828eee5c66c70"}, + {file = "mypy-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:258b22210a4a258ccd077426c7a181d789d1121aca6db73a83f79372f5569ae0"}, + {file = "mypy-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9ec1f695f0c25986e6f7f8778e5ce61659063268836a38c951200c57479cc12"}, + {file = "mypy-1.5.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:abed92d9c8f08643c7d831300b739562b0a6c9fcb028d211134fc9ab20ccad5d"}, + {file = "mypy-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a156e6390944c265eb56afa67c74c0636f10283429171018446b732f1a05af25"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6ac9c21bfe7bc9f7f1b6fae441746e6a106e48fc9de530dea29e8cd37a2c0cc4"}, + {file = "mypy-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:51cb1323064b1099e177098cb939eab2da42fea5d818d40113957ec954fc85f4"}, + {file = "mypy-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:596fae69f2bfcb7305808c75c00f81fe2829b6236eadda536f00610ac5ec2243"}, + {file = "mypy-1.5.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:32cb59609b0534f0bd67faebb6e022fe534bdb0e2ecab4290d683d248be1b275"}, + {file = "mypy-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:159aa9acb16086b79bbb0016145034a1a05360626046a929f84579ce1666b315"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f6b0e77db9ff4fda74de7df13f30016a0a663928d669c9f2c057048ba44f09bb"}, + {file = "mypy-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:26f71b535dfc158a71264e6dc805a9f8d2e60b67215ca0bfa26e2e1aa4d4d373"}, + {file = "mypy-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc3a600f749b1008cc75e02b6fb3d4db8dbcca2d733030fe7a3b3502902f161"}, + {file = "mypy-1.5.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:26fb32e4d4afa205b24bf645eddfbb36a1e17e995c5c99d6d00edb24b693406a"}, + {file = "mypy-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:82cb6193de9bbb3844bab4c7cf80e6227d5225cc7625b068a06d005d861ad5f1"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a465ea2ca12804d5b34bb056be3a29dc47aea5973b892d0417c6a10a40b2d65"}, + {file = "mypy-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9fece120dbb041771a63eb95e4896791386fe287fefb2837258925b8326d6160"}, + {file = "mypy-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d28ddc3e3dfeab553e743e532fb95b4e6afad51d4706dd22f28e1e5e664828d2"}, + {file = "mypy-1.5.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:57b10c56016adce71fba6bc6e9fd45d8083f74361f629390c556738565af8eeb"}, + {file = "mypy-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:ff0cedc84184115202475bbb46dd99f8dcb87fe24d5d0ddfc0fe6b8575c88d2f"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8f772942d372c8cbac575be99f9cc9d9fb3bd95c8bc2de6c01411e2c84ebca8a"}, + {file = "mypy-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5d627124700b92b6bbaa99f27cbe615c8ea7b3402960f6372ea7d65faf376c14"}, + {file = "mypy-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:361da43c4f5a96173220eb53340ace68cda81845cd88218f8862dfb0adc8cddb"}, + {file = "mypy-1.5.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:330857f9507c24de5c5724235e66858f8364a0693894342485e543f5b07c8693"}, + {file = "mypy-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:c543214ffdd422623e9fedd0869166c2f16affe4ba37463975043ef7d2ea8770"}, + {file = "mypy-1.5.1-py3-none-any.whl", hash = "sha256:f757063a83970d67c444f6e01d9550a7402322af3557ce7630d3c957386fa8f5"}, + {file = "mypy-1.5.1.tar.gz", hash = "sha256:b031b9601f1060bf1281feab89697324726ba0c0bae9d7cd7ab4b690940f0b92"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b55d50738c4db7b91f9337422a7cabb20f8e71e9cc9bd9798d5216fcbf621d60" diff --git a/servicenow/provider/__init__.py b/servicenow/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/servicenow/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/servicenow/provider/app.py b/servicenow/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/servicenow/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/servicenow/provider/provider.py b/servicenow/provider/provider.py new file mode 100644 index 000000000..d76740ab9 --- /dev/null +++ b/servicenow/provider/provider.py @@ -0,0 +1,36 @@ +import logging +from typing import Any +from urllib.parse import urljoin + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def search(query: str) -> list[dict[str, Any]]: + assert ( + base_url := app.config.get("INSTANCE_URL") + ), "SERVICENOW_INSTANCE_URL must be set" + assert ( + table_name := app.config.get("TABLE_NAME") + ), "SERVICENOW_TABLE_NAME must be set" + assert (username := app.config.get("USERNAME")), "SERVICENOW_USERNAME must be set" + assert (password := app.config.get("PASSWORD")), "SERVICENOW_PASSWORD must be set" + + url = urljoin(base_url, f"/api/now/table/{table_name}") + params = { + "sysparm_display_value": True, + "sysparm_limit": app.config.get("RESULT_LIMIT", 10), + "sysparm_query": f"GOTO123TEXTQUERY321={query}", + } + auth = (username, password) + + response = requests.get(url, auth=auth, params=params) + + if response.status_code != 200: + raise UpstreamProviderError(f"Failed to query ServiceNow: {response.text}") + + return response.json()["result"] diff --git a/servicenow/pyproject.toml b/servicenow/pyproject.toml new file mode 100644 index 000000000..164690453 --- /dev/null +++ b/servicenow/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "servicenow" +version = "0.1.0" +description = "Connects Cohere to ServiceNow." +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/sharepoint/.env-template b/sharepoint/.env-template new file mode 100644 index 000000000..482a8b419 --- /dev/null +++ b/sharepoint/.env-template @@ -0,0 +1,8 @@ +SHAREPOINT_CLIENT_ID= +SHAREPOINT_CLIENT_SECRET= +SHAREPOINT_TENANT_ID= +SHAREPOINT_SEARCH_LIMIT=5 +SHAREPOINT_UNSTRUCTURED_BASE_URL=https://api.unstructured.io +SHAREPOINT_UNSTRUCTURED_API_KEY= +SHAREPOINT_PASSTHROUGH_FILE_TYPES= +SHAREPOINT_CONNECTOR_API_KEY= diff --git a/sharepoint/README.md b/sharepoint/README.md new file mode 100644 index 000000000..8a0fdaccd --- /dev/null +++ b/sharepoint/README.md @@ -0,0 +1,102 @@ +# SharePoint Quick Start Connector + +This package connects Cohere to Microsoft Sharepoint. It features a simple local development setup. + +It uses Microsoft Graph API run the search query and return matching files. + +# Limitations + +The Sharepoint connector currently allows for full-text search based on file contents stored within your Sharepoint instance, it is important to note however that only List items and Drive items are currently returned by the search API. + +Important: Sharepoint's default interval for content crawling is set to every 15 minutes. Expect a delay between uploading new files and being able to search for them. + +## Configuration + +Running this connector requires access to Microsoft 365. For development purposes, +you can register for the Microsoft 365 developer program, which will grant temporary +access to a Microsoft 365. + +For the connector to work, you must register the application. To do this, go to the +Microsoft Entra admin center: + +https://entra.microsoft.com/ + +Navigate to Applications > App registrations > New registration option. + +Select "Web" as the platform, and ensure you add a redirect URL, even if it is optional. +The redirect URL is required for the admin consent step to work. This connector does not +have a redirect page implemented, but you can use http://localhost/ as the redirect URL. + +On the app registration page for the app you have created, go to API permissions, and +grant permissions. For development purposes, you can grant: + +- SharePointTenantSettings.Read.All +- SharePointTenantSettings.ReadWrite.All +- Sites.FullControl.All +- Sites.Manage.All +- Sites.Read.All +- Sites.ReadWrite.All +- Sites.Selected + +You will then have a create a client secret for the application. Then take the app's credentials (:code:`SHAREPOINT_GRAPH_TENANT_ID`, :code:`SHAREPOINT_GRAPH_CLIENT_ID` and :code:`SHAREPOINT_GRAPH_CLIENT_SECRET`) and copy them into a `.env` file using the `.env-template` as the base template. + +To process the files in a readable format by Coral, the Sharepoint connector leverages +In order to process OneDrive files, it is necessary to provide credentials for Unstructured: + +- `SHAREPOINT_UNSTRUCTURED_BASE_URL` +- `SHAREPOINT_UNSTRUCTURED_API_KEY` + +To use the hosted Unstructured API, you must provide an API key and set `SHAREPOINT_GRAPH_UNSTRUCTURED_BASE_URL` +too. A trailing slash should not be included (i.e. `http://localhost:8000` or `https://api.unstructured.io`). + +You can configure which file types will be processed by Unstructured with the `SHAREPOINT_PASSTHROUGH_FILE_TYPES` environment variable. This should be a comma-separated list of strings. Any files matching the types defined will skip Unstructured. + +The above environment variables can be read from a .env file. See `.env-template` for an example `.env` file. + +After the client has been created, you will need to grant admin consent to the client. One +way to do this is by going to the following URL: + +https://login.microsoftonline.com/{site_id}/adminconsent?client_id={client_id}&redirect_uri=http://localhost/ + +You must replace `{site_id}` and `{client_id}` with the appropriate values. The `redirect_uri` +must match the value that was configured when creating the client in Microsoft Entra. + +### Provision Unstructured + +Processing the files found on OneDrive requires the Unstructured API. The Unstructured API is +a commercially backed, Open Source project. It is available as a hosted API, Docker image, and as a +Python package, which can be manually set up. + +By default, this connector uses the hosted `https://api.unstructured.io` API. You must provide an API key by registering an account and obtaining an API key [here](https://unstructured.io/api-key). + +Alternatively, you can use the API by hosting it yourself with their provided Docker image. If you've used Docker before, the setup is relatively straightforward. Please follow the instructions for setting up the Docker image in the Unstructured [documentation](https://unstructured-io.github.io/unstructured/api.html#using-docker-images). + +The final option is to set Unstructured up locally, outside of Docker. This is a complex option that is not recommended, as it involves installing many dependencies outside of Python. + +### Run Flask Server + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:3000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/sharepoint/poetry.lock b/sharepoint/poetry.lock new file mode 100644 index 000000000..7a7ae99ad --- /dev/null +++ b/sharepoint/poetry.lock @@ -0,0 +1,1400 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.0" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6896b8416be9ada4d22cd359d7cb98955576ce863eadad5596b7cdfbf3e17c6c"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1736d87dad8ef46a8ec9cddd349fa9f7bd3a064c47dd6469c0d6763d3d49a4fc"}, + {file = "aiohttp-3.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8c9e5f4d7208cda1a2bb600e29069eecf857e6980d0ccc922ccf9d1372c16f4b"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8488519aa05e636c5997719fe543c8daf19f538f4fa044f3ce94bee608817cff"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ab16c254e2312efeb799bc3c06897f65a133b38b69682bf75d1f1ee1a9c43a9"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7a94bde005a8f926d0fa38b88092a03dea4b4875a61fbcd9ac6f4351df1b57cd"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b777c9286b6c6a94f50ddb3a6e730deec327e9e2256cb08b5530db0f7d40fd8"}, + {file = "aiohttp-3.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:571760ad7736b34d05597a1fd38cbc7d47f7b65deb722cb8e86fd827404d1f6b"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:deac0a32aec29608eb25d730f4bc5a261a65b6c48ded1ed861d2a1852577c932"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4ee1b4152bc3190cc40ddd6a14715e3004944263ea208229ab4c297712aa3075"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:3607375053df58ed6f23903aa10cf3112b1240e8c799d243bbad0f7be0666986"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:65b0a70a25456d329a5e1426702dde67be0fb7a4ead718005ba2ca582d023a94"}, + {file = "aiohttp-3.9.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a2eb5311a37fe105aa35f62f75a078537e1a9e4e1d78c86ec9893a3c97d7a30"}, + {file = "aiohttp-3.9.0-cp310-cp310-win32.whl", hash = "sha256:2cbc14a13fb6b42d344e4f27746a4b03a2cb0c1c3c5b932b0d6ad8881aa390e3"}, + {file = "aiohttp-3.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:ac9669990e2016d644ba8ae4758688534aabde8dbbc81f9af129c3f5f01ca9cd"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f8e05f5163528962ce1d1806fce763ab893b1c5b7ace0a3538cd81a90622f844"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4afa8f71dba3a5a2e1e1282a51cba7341ae76585345c43d8f0e624882b622218"}, + {file = "aiohttp-3.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f929f4c9b9a00f3e6cc0587abb95ab9c05681f8b14e0fe1daecfa83ea90f8318"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28185e36a78d247c55e9fbea2332d16aefa14c5276a582ce7a896231c6b1c208"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a486ddf57ab98b6d19ad36458b9f09e6022de0381674fe00228ca7b741aacb2f"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70e851f596c00f40a2f00a46126c95c2e04e146015af05a9da3e4867cfc55911"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5b7bf8fe4d39886adc34311a233a2e01bc10eb4e842220235ed1de57541a896"}, + {file = "aiohttp-3.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c67a51ea415192c2e53e4e048c78bab82d21955b4281d297f517707dc836bf3d"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:694df243f394629bcae2d8ed94c589a181e8ba8604159e6e45e7b22e58291113"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3dd8119752dd30dd7bca7d4bc2a92a59be6a003e4e5c2cf7e248b89751b8f4b7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:eb6dfd52063186ac97b4caa25764cdbcdb4b10d97f5c5f66b0fa95052e744eb7"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d97c3e286d0ac9af6223bc132dc4bad6540b37c8d6c0a15fe1e70fb34f9ec411"}, + {file = "aiohttp-3.9.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:816f4db40555026e4cdda604a1088577c1fb957d02f3f1292e0221353403f192"}, + {file = "aiohttp-3.9.0-cp311-cp311-win32.whl", hash = "sha256:3abf0551874fecf95f93b58f25ef4fc9a250669a2257753f38f8f592db85ddea"}, + {file = "aiohttp-3.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:e18d92c3e9e22553a73e33784fcb0ed484c9874e9a3e96c16a8d6a1e74a0217b"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:99ae01fb13a618b9942376df77a1f50c20a281390dad3c56a6ec2942e266220d"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05857848da443c8c12110d99285d499b4e84d59918a21132e45c3f0804876994"}, + {file = "aiohttp-3.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:317719d7f824eba55857fe0729363af58e27c066c731bc62cd97bc9c3d9c7ea4"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1e3b3c107ccb0e537f309f719994a55621acd2c8fdf6d5ce5152aed788fb940"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45820ddbb276113ead8d4907a7802adb77548087ff5465d5c554f9aa3928ae7d"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a183f1978802588711aed0dea31e697d760ce9055292db9dc1604daa9a8ded"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51a4cd44788ea0b5e6bb8fa704597af3a30be75503a7ed1098bc5b8ffdf6c982"}, + {file = "aiohttp-3.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673343fbc0c1ac44d0d2640addc56e97a052504beacd7ade0dc5e76d3a4c16e8"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e8a3b79b6d186a9c99761fd4a5e8dd575a48d96021f220ac5b5fa856e5dd029"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6777a390e41e78e7c45dab43a4a0196c55c3b8c30eebe017b152939372a83253"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7ae5f99a32c53731c93ac3075abd3e1e5cfbe72fc3eaac4c27c9dd64ba3b19fe"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:f1e4f254e9c35d8965d377e065c4a8a55d396fe87c8e7e8429bcfdeeb229bfb3"}, + {file = "aiohttp-3.9.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11ca808f9a6b63485059f5f6e164ef7ec826483c1212a44f268b3653c91237d8"}, + {file = "aiohttp-3.9.0-cp312-cp312-win32.whl", hash = "sha256:de3cc86f4ea8b4c34a6e43a7306c40c1275e52bfa9748d869c6b7d54aa6dad80"}, + {file = "aiohttp-3.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca4fddf84ac7d8a7d0866664936f93318ff01ee33e32381a115b19fb5a4d1202"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f09960b5bb1017d16c0f9e9f7fc42160a5a49fa1e87a175fd4a2b1a1833ea0af"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8303531e2c17b1a494ffaeba48f2da655fe932c4e9a2626c8718403c83e5dd2b"}, + {file = "aiohttp-3.9.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4790e44f46a4aa07b64504089def5744d3b6780468c4ec3a1a36eb7f2cae9814"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1d7edf74a36de0e5ca50787e83a77cf352f5504eb0ffa3f07000a911ba353fb"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94697c7293199c2a2551e3e3e18438b4cba293e79c6bc2319f5fd652fccb7456"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a1b66dbb8a7d5f50e9e2ea3804b01e766308331d0cac76eb30c563ac89c95985"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9623cfd9e85b76b83ef88519d98326d4731f8d71869867e47a0b979ffec61c73"}, + {file = "aiohttp-3.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f32c86dc967ab8c719fd229ce71917caad13cc1e8356ee997bf02c5b368799bf"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f50b4663c3e0262c3a361faf440761fbef60ccdde5fe8545689a4b3a3c149fb4"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:dcf71c55ec853826cd70eadb2b6ac62ec577416442ca1e0a97ad875a1b3a0305"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:42fe4fd9f0dfcc7be4248c162d8056f1d51a04c60e53366b0098d1267c4c9da8"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76a86a9989ebf82ee61e06e2bab408aec4ea367dc6da35145c3352b60a112d11"}, + {file = "aiohttp-3.9.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f9e09a1c83521d770d170b3801eea19b89f41ccaa61d53026ed111cb6f088887"}, + {file = "aiohttp-3.9.0-cp38-cp38-win32.whl", hash = "sha256:a00ce44c21612d185c5275c5cba4bab8d7c1590f248638b667ed8a782fa8cd6f"}, + {file = "aiohttp-3.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:d5b9345ab92ebe6003ae11d8092ce822a0242146e6fa270889b9ba965457ca40"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:98d21092bf2637c5fa724a428a69e8f5955f2182bff61f8036827cf6ce1157bf"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35a68cd63ca6aaef5707888f17a70c36efe62b099a4e853d33dc2e9872125be8"}, + {file = "aiohttp-3.9.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3d7f6235c7475658acfc1769d968e07ab585c79f6ca438ddfecaa9a08006aee2"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db04d1de548f7a62d1dd7e7cdf7c22893ee168e22701895067a28a8ed51b3735"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:536b01513d67d10baf6f71c72decdf492fb7433c5f2f133e9a9087379d4b6f31"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c8b0a6487e8109427ccf638580865b54e2e3db4a6e0e11c02639231b41fc0f"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7276fe0017664414fdc3618fca411630405f1aaf0cc3be69def650eb50441787"}, + {file = "aiohttp-3.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23170247ef89ffa842a02bbfdc425028574d9e010611659abeb24d890bc53bb8"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b1a2ea8252cacc7fd51df5a56d7a2bb1986ed39be9397b51a08015727dfb69bd"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2d71abc15ff7047412ef26bf812dfc8d0d1020d664617f4913df2df469f26b76"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d820162c8c2bdbe97d328cd4f417c955ca370027dce593345e437b2e9ffdc4d"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:2779f5e7c70f7b421915fd47db332c81de365678180a9f3ab404088f87ba5ff9"}, + {file = "aiohttp-3.9.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:366bc870d7ac61726f32a489fbe3d1d8876e87506870be66b01aeb84389e967e"}, + {file = "aiohttp-3.9.0-cp39-cp39-win32.whl", hash = "sha256:1df43596b826022b14998f0460926ce261544fedefe0d2f653e1b20f49e96454"}, + {file = "aiohttp-3.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:9c196b30f1b1aa3363a69dd69079ae9bec96c2965c4707eaa6914ba099fb7d4f"}, + {file = "aiohttp-3.9.0.tar.gz", hash = "sha256:09f23292d29135025e19e8ff4f0a68df078fe4ee013bca0105b2e803989de92d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "async-timeout" +version = "4.0.3" +description = "Timeout context manager for asyncio programs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "azure-core" +version = "1.23.1" +description = "Microsoft Azure Core Library for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "azure-core-1.23.1.zip", hash = "sha256:28a01dfbaf0a6812c4e2a82d1642ea30956a9739f25bc77c9b23b91f4ea68f0f"}, + {file = "azure_core-1.23.1-py3-none-any.whl", hash = "sha256:c3e8a9a3ec9d89f59b5d5b2f19d19a30d76a5b5c0cee3788ecad3cb72b9bd028"}, +] + +[package.dependencies] +requests = ">=2.18.4" +six = ">=1.11.0" +typing-extensions = ">=4.0.1" + +[[package]] +name = "azure-identity" +version = "1.10.0" +description = "Microsoft Azure Identity Library for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "azure-identity-1.10.0.zip", hash = "sha256:656e5034d9cef297cf9b35376ed620085273c18cfa52cea4a625bf0d5d2d6409"}, + {file = "azure_identity-1.10.0-py3-none-any.whl", hash = "sha256:b386f1ccbea6a48b9ab7e7f162adc456793c345193a7c1a713959562b08dcbbd"}, +] + +[package.dependencies] +azure-core = ">=1.11.0,<2.0.0" +cryptography = ">=2.5" +msal = ">=1.12.0,<2.0.0" +msal-extensions = ">=0.3.0,<2.0.0" +six = ">=1.12.0" + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.5" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.5-py3-none-any.whl", hash = "sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548"}, + {file = "click-8.1.5.tar.gz", hash = "sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "cryptography" +version = "41.0.6" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:0f27acb55a4e77b9be8d550d762b0513ef3fc658cd3eb15110ebbcbd626db12c"}, + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ae236bb8760c1e55b7a39b6d4d32d2279bc6c7c8500b7d5a13b6fb9fc97be35b"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596"}, + {file = "cryptography-41.0.6-cp37-abi3-win32.whl", hash = "sha256:2132d5865eea673fe6712c2ed5fb4fa49dba10768bb4cc798345748380ee3660"}, + {file = "cryptography-41.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:48783b7e2bef51224020efb61b42704207dde583d7e371ef8fc2a5fb6c0aabc7"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8efb2af8d4ba9dbc9c9dd8f04d19a7abb5b49eab1f3694e7b5a16a5fc2856f5c"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c5a550dc7a3b50b116323e3d376241829fd326ac47bc195e04eb33a8170902a9"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:85abd057699b98fce40b41737afb234fef05c67e116f6f3650782c10862c43da"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f39812f70fc5c71a15aa3c97b2bbe213c3f2a460b79bd21c40d033bb34a9bf36"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:742ae5e9a2310e9dade7932f9576606836ed174da3c7d26bc3d3ab4bd49b9f65"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:35f3f288e83c3f6f10752467c48919a7a94b7d88cc00b0668372a0d2ad4f8ead"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d03186af98b1c01a4eda396b137f29e4e3fb0173e30f885e27acec8823c1b09"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b27a7fd4229abef715e064269d98a7e2909ebf92eb6912a9603c7e14c181928c"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:398ae1fc711b5eb78e977daa3cbf47cec20f2c08c5da129b7a296055fbb22aed"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7e00fb556bda398b99b0da289ce7053639d33b572847181d6483ad89835115f6"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60e746b11b937911dc70d164060d28d273e31853bb359e2b2033c9e93e6f3c43"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3288acccef021e3c3c10d58933f44e8602cf04dba96d9796d70d537bb2f4bbc4"}, + {file = "cryptography-41.0.6.tar.gz", hash = "sha256:422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.2" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.2-py3-none-any.whl", hash = "sha256:159fdff1443b4c5ed900d4eeac6b928a3485f4aff5fba6edd1e25cd66bb46b39"}, + {file = "jsonschema-4.18.2.tar.gz", hash = "sha256:af3855bfa30e83b2200a5fe12ab5eb92460e4d3b8e4efd34094aa637f7272a87"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "msal" +version = "1.22.0" +description = "The Microsoft Authentication Library (MSAL) for Python library enables your app to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect." +optional = false +python-versions = "*" +files = [ + {file = "msal-1.22.0-py2.py3-none-any.whl", hash = "sha256:9120b7eafdf061c92f7b3d744e5f325fca35873445fa8ffebb40b1086a13dd58"}, + {file = "msal-1.22.0.tar.gz", hash = "sha256:8a82f5375642c1625c89058018430294c109440dce42ea667d466c2cab520acd"}, +] + +[package.dependencies] +cryptography = ">=0.6,<43" +PyJWT = {version = ">=1.0.0,<3", extras = ["crypto"]} +requests = ">=2.0.0,<3" + +[package.extras] +broker = ["pymsalruntime (>=0.13.2,<0.14)"] + +[[package]] +name = "msal-extensions" +version = "1.0.0" +description = "Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism." +optional = false +python-versions = "*" +files = [ + {file = "msal-extensions-1.0.0.tar.gz", hash = "sha256:c676aba56b0cce3783de1b5c5ecfe828db998167875126ca4b47dc6436451354"}, + {file = "msal_extensions-1.0.0-py2.py3-none-any.whl", hash = "sha256:91e3db9620b822d0ed2b4d1850056a0f133cba04455e62f11612e40f5502f2ee"}, +] + +[package.dependencies] +msal = ">=0.4.1,<2.0.0" +portalocker = [ + {version = ">=1.0,<3", markers = "python_version >= \"3.5\" and platform_system != \"Windows\""}, + {version = ">=1.6,<3", markers = "python_version >= \"3.5\" and platform_system == \"Windows\""}, +] + +[[package]] +name = "msgraph-core" +version = "0.2.2" +description = "Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable middleware pipeline (Preview)." +optional = false +python-versions = ">=3.5" +files = [ + {file = "msgraph-core-0.2.2.tar.gz", hash = "sha256:147324246788abe8ed7e05534cd9e4e0ec98b33b30e011693b8d014cebf97f63"}, + {file = "msgraph_core-0.2.2-py3-none-any.whl", hash = "sha256:e297564b9a0ca228493d8851f95cb2de9522143d82efa40ce3a6ad286e21392e"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "platformdirs" +version = "3.8.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.8.1-py3-none-any.whl", hash = "sha256:cec7b889196b9144d088e4c57d9ceef7374f6c39694ad1577a0aab50d27ea28c"}, + {file = "platformdirs-3.8.1.tar.gz", hash = "sha256:f87ca4fcff7d2b0f81c6a748a77973d7af0f4d526f98f308477c3c436c74d528"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "portalocker" +version = "2.7.0" +description = "Wraps the portalocker recipe for easy usage" +optional = false +python-versions = ">=3.5" +files = [ + {file = "portalocker-2.7.0-py2.py3-none-any.whl", hash = "sha256:a07c5b4f3985c3cf4798369631fb7011adb498e2a46d8440efc75a8f29a0f983"}, + {file = "portalocker-2.7.0.tar.gz", hash = "sha256:032e81d534a88ec1736d03f780ba073f047a06c478b06e2937486f334e955c51"}, +] + +[package.dependencies] +pywin32 = {version = ">=226", markers = "platform_system == \"Windows\""} + +[package.extras] +docs = ["sphinx (>=1.7.1)"] +redis = ["redis"] +tests = ["pytest (>=5.4.1)", "pytest-cov (>=2.8.1)", "pytest-mypy (>=0.8.0)", "pytest-timeout (>=2.1.0)", "redis", "sphinx (>=6.0.0)"] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pyjwt" +version = "2.7.0" +description = "JSON Web Token implementation in Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.7.0-py3-none-any.whl", hash = "sha256:ba2b425b15ad5ef12f200dc67dd56af4e26de2331f965c5439994dad075876e1"}, + {file = "PyJWT-2.7.0.tar.gz", hash = "sha256:bd6ca4a3c4285c1a2d4349e5a035fdf8fb94e04ccd0fcbe6ba289dae9cc3e074"}, +] + +[package.dependencies] +cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"crypto\""} + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pywin32" +version = "306" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.8.10" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.10-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:93d06cccae15b3836247319eee7b6f1fdcd6c10dabb4e6d350d27bd0bdca2711"}, + {file = "rpds_py-0.8.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3816a890a6a9e9f1de250afa12ca71c9a7a62f2b715a29af6aaee3aea112c181"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7c6304b894546b5a6bdc0fe15761fa53fe87d28527a7142dae8de3c663853e1"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ad3bfb44c8840fb4be719dc58e229f435e227fbfbe133dc33f34981ff622a8f8"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:14f1c356712f66653b777ecd8819804781b23dbbac4eade4366b94944c9e78ad"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:82bb361cae4d0a627006dadd69dc2f36b7ad5dc1367af9d02e296ec565248b5b"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2e3c4f2a8e3da47f850d7ea0d7d56720f0f091d66add889056098c4b2fd576c"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:15a90d0ac11b4499171067ae40a220d1ca3cb685ec0acc356d8f3800e07e4cb8"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:70bb9c8004b97b4ef7ae56a2aa56dfaa74734a0987c78e7e85f00004ab9bf2d0"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d64f9f88d5203274a002b54442cafc9c7a1abff2a238f3e767b70aadf919b451"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ccbbd276642788c4376fbe8d4e6c50f0fb4972ce09ecb051509062915891cbf0"}, + {file = "rpds_py-0.8.10-cp310-none-win32.whl", hash = "sha256:fafc0049add8043ad07ab5382ee80d80ed7e3699847f26c9a5cf4d3714d96a84"}, + {file = "rpds_py-0.8.10-cp310-none-win_amd64.whl", hash = "sha256:915031002c86a5add7c6fd4beb601b2415e8a1c956590a5f91d825858e92fe6e"}, + {file = "rpds_py-0.8.10-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:84eb541a44f7a18f07a6bfc48b95240739e93defe1fdfb4f2a295f37837945d7"}, + {file = "rpds_py-0.8.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f59996d0550894affaad8743e97b9b9c98f638b221fac12909210ec3d9294786"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9adb5664b78fcfcd830000416c8cc69853ef43cb084d645b3f1f0296edd9bae"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f96f3f98fbff7af29e9edf9a6584f3c1382e7788783d07ba3721790625caa43e"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:376b8de737401050bd12810003d207e824380be58810c031f10ec563ff6aef3d"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d1c2bc319428d50b3e0fa6b673ab8cc7fa2755a92898db3a594cbc4eeb6d1f7"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73a1e48430f418f0ac3dfd87860e4cc0d33ad6c0f589099a298cb53724db1169"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:134ec8f14ca7dbc6d9ae34dac632cdd60939fe3734b5d287a69683c037c51acb"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4b519bac7c09444dd85280fd60f28c6dde4389c88dddf4279ba9b630aca3bbbe"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9cd57981d9fab04fc74438d82460f057a2419974d69a96b06a440822d693b3c0"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:69d089c026f6a8b9d64a06ff67dc3be196707b699d7f6ca930c25f00cf5e30d8"}, + {file = "rpds_py-0.8.10-cp311-none-win32.whl", hash = "sha256:220bdcad2d2936f674650d304e20ac480a3ce88a40fe56cd084b5780f1d104d9"}, + {file = "rpds_py-0.8.10-cp311-none-win_amd64.whl", hash = "sha256:6c6a0225b8501d881b32ebf3f5807a08ad3685b5eb5f0a6bfffd3a6e039b2055"}, + {file = "rpds_py-0.8.10-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:e3d0cd3dff0e7638a7b5390f3a53057c4e347f4ef122ee84ed93fc2fb7ea4aa2"}, + {file = "rpds_py-0.8.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d77dff3a5aa5eedcc3da0ebd10ff8e4969bc9541aa3333a8d41715b429e99f47"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41c89a366eae49ad9e65ed443a8f94aee762931a1e3723749d72aeac80f5ef2f"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3793c21494bad1373da517001d0849eea322e9a049a0e4789e50d8d1329df8e7"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:805a5f3f05d186c5d50de2e26f765ba7896d0cc1ac5b14ffc36fae36df5d2f10"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b01b39ad5411563031ea3977bbbc7324d82b088e802339e6296f082f78f6115c"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f1e860be21f3e83011116a65e7310486300e08d9a3028e73e8d13bb6c77292"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a13c8e56c46474cd5958d525ce6a9996727a83d9335684e41f5192c83deb6c58"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:93d99f957a300d7a4ced41615c45aeb0343bb8f067c42b770b505de67a132346"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:148b0b38d719c0760e31ce9285a9872972bdd7774969a4154f40c980e5beaca7"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3cc5e5b5514796f45f03a568981971b12a3570f3de2e76114f7dc18d4b60a3c4"}, + {file = "rpds_py-0.8.10-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:e8e24b210a4deb5a7744971f8f77393005bae7f873568e37dfd9effe808be7f7"}, + {file = "rpds_py-0.8.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b41941583adce4242af003d2a8337b066ba6148ca435f295f31ac6d9e4ea2722"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c490204e16bca4f835dba8467869fe7295cdeaa096e4c5a7af97f3454a97991"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ee45cd1d84beed6cbebc839fd85c2e70a3a1325c8cfd16b62c96e2ffb565eca"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a8ca409f1252e1220bf09c57290b76cae2f14723746215a1e0506472ebd7bdf"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96b293c0498c70162effb13100624c5863797d99df75f2f647438bd10cbf73e4"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4627520a02fccbd324b33c7a83e5d7906ec746e1083a9ac93c41ac7d15548c7"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e39d7ab0c18ac99955b36cd19f43926450baba21e3250f053e0704d6ffd76873"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ba9f1d1ebe4b63801977cec7401f2d41e888128ae40b5441270d43140efcad52"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:802f42200d8caf7f25bbb2a6464cbd83e69d600151b7e3b49f49a47fa56b0a38"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d19db6ba816e7f59fc806c690918da80a7d186f00247048cd833acdab9b4847b"}, + {file = "rpds_py-0.8.10-cp38-none-win32.whl", hash = "sha256:7947e6e2c2ad68b1c12ee797d15e5f8d0db36331200b0346871492784083b0c6"}, + {file = "rpds_py-0.8.10-cp38-none-win_amd64.whl", hash = "sha256:fa326b3505d5784436d9433b7980171ab2375535d93dd63fbcd20af2b5ca1bb6"}, + {file = "rpds_py-0.8.10-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:7b38a9ac96eeb6613e7f312cd0014de64c3f07000e8bf0004ad6ec153bac46f8"}, + {file = "rpds_py-0.8.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c4d42e83ddbf3445e6514f0aff96dca511421ed0392d9977d3990d9f1ba6753c"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b21575031478609db6dbd1f0465e739fe0e7f424a8e7e87610a6c7f68b4eb16"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:574868858a7ff6011192c023a5289158ed20e3f3b94b54f97210a773f2f22921"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae40f4a70a1f40939d66ecbaf8e7edc144fded190c4a45898a8cfe19d8fc85ea"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f7ee4dc86db7af3bac6d2a2cedbecb8e57ce4ed081f6464510e537589f8b1e"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:695f642a3a5dbd4ad2ffbbacf784716ecd87f1b7a460843b9ddf965ccaeafff4"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f43ab4cb04bde6109eb2555528a64dfd8a265cc6a9920a67dcbde13ef53a46c8"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a11ab0d97be374efd04f640c04fe5c2d3dabc6dfb998954ea946ee3aec97056d"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:92cf5b3ee60eef41f41e1a2cabca466846fb22f37fc580ffbcb934d1bcab225a"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ceaac0c603bf5ac2f505a78b2dcab78d3e6b706be6596c8364b64cc613d208d2"}, + {file = "rpds_py-0.8.10-cp39-none-win32.whl", hash = "sha256:dd4f16e57c12c0ae17606c53d1b57d8d1c8792efe3f065a37cb3341340599d49"}, + {file = "rpds_py-0.8.10-cp39-none-win_amd64.whl", hash = "sha256:c03a435d26c3999c2a8642cecad5d1c4d10c961817536af52035f6f4ee2f5dd0"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0da53292edafecba5e1d8c1218f99babf2ed0bf1c791d83c0ab5c29b57223068"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d20a8ed227683401cc508e7be58cba90cc97f784ea8b039c8cd01111e6043e0"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97cab733d303252f7c2f7052bf021a3469d764fc2b65e6dbef5af3cbf89d4892"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c398fda6df361a30935ab4c4bccb7f7a3daef2964ca237f607c90e9f3fdf66f"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eb4b08c45f8f8d8254cdbfacd3fc5d6b415d64487fb30d7380b0d0569837bf1"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7dfb1cbb895810fa2b892b68153c17716c6abaa22c7dc2b2f6dcf3364932a1c"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89c92b74e8bf6f53a6f4995fd52f4bd510c12f103ee62c99e22bc9e05d45583c"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e9c0683cb35a9b5881b41bc01d5568ffc667910d9dbc632a1fba4e7d59e98773"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0eeb2731708207d0fe2619afe6c4dc8cb9798f7de052da891de5f19c0006c315"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:7495010b658ec5b52835f21d8c8b1a7e52e194c50f095d4223c0b96c3da704b1"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c72ebc22e70e04126158c46ba56b85372bc4d54d00d296be060b0db1671638a4"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:2cd3045e7f6375dda64ed7db1c5136826facb0159ea982f77d9cf6125025bd34"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:2418cf17d653d24ffb8b75e81f9f60b7ba1b009a23298a433a4720b2a0a17017"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a2edf8173ac0c7a19da21bc68818be1321998528b5e3f748d6ee90c0ba2a1fd"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f29b8c55fd3a2bc48e485e37c4e2df3317f43b5cc6c4b6631c33726f52ffbb3"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a7d20c1cf8d7b3960c5072c265ec47b3f72a0c608a9a6ee0103189b4f28d531"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:521fc8861a86ae54359edf53a15a05fabc10593cea7b3357574132f8427a5e5a"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5c191713e98e7c28800233f039a32a42c1a4f9a001a8a0f2448b07391881036"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:083df0fafe199371206111583c686c985dddaf95ab3ee8e7b24f1fda54515d09"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ed41f3f49507936a6fe7003985ea2574daccfef999775525d79eb67344e23767"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:2614c2732bf45de5c7f9e9e54e18bc78693fa2f635ae58d2895b7965e470378c"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c60528671d9d467009a6ec284582179f6b88651e83367d0ab54cb739021cd7de"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ee744fca8d1ea822480a2a4e7c5f2e1950745477143668f0b523769426060f29"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a38b9f526d0d6cbdaa37808c400e3d9f9473ac4ff64d33d9163fd05d243dbd9b"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60e0e86e870350e03b3e25f9b1dd2c6cc72d2b5f24e070249418320a6f9097b7"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f53f55a8852f0e49b0fc76f2412045d6ad9d5772251dea8f55ea45021616e7d5"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c493365d3fad241d52f096e4995475a60a80f4eba4d3ff89b713bc65c2ca9615"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:300eb606e6b94a7a26f11c8cc8ee59e295c6649bd927f91e1dbd37a4c89430b6"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a665f6f1a87614d1c3039baf44109094926dedf785e346d8b0a728e9cabd27a"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:927d784648211447201d4c6f1babddb7971abad922b32257ab74de2f2750fad0"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:c200b30dd573afa83847bed7e3041aa36a8145221bf0cfdfaa62d974d720805c"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:08166467258fd0240a1256fce272f689f2360227ee41c72aeea103e9e4f63d2b"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:996cc95830de9bc22b183661d95559ec6b3cd900ad7bc9154c4cbf5be0c9b734"}, + {file = "rpds_py-0.8.10.tar.gz", hash = "sha256:13e643ce8ad502a0263397362fb887594b49cf84bf518d6038c16f235f2bcea4"}, +] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "0772b239b87bfcc6c69e6fc8009240e7b526d27e66e1d11c263943771683816d" diff --git a/sharepoint/provider/__init__.py b/sharepoint/provider/__init__.py new file mode 100644 index 000000000..dffd26d31 --- /dev/null +++ b/sharepoint/provider/__init__.py @@ -0,0 +1,34 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + + +APP_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + APP_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/sharepoint/provider/app.py b/sharepoint/provider/app.py new file mode 100644 index 000000000..2b7e20379 --- /dev/null +++ b/sharepoint/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/sharepoint/provider/client.py b/sharepoint/provider/client.py new file mode 100644 index 000000000..8e27244da --- /dev/null +++ b/sharepoint/provider/client.py @@ -0,0 +1,141 @@ +from functools import lru_cache +from azure.identity import ClientSecretCredential +from flask import current_app as app +from msgraph.core import GraphClient, APIVersion +from urllib.parse import urlparse + +from . import UpstreamProviderError +from .consts import CACHE_SIZE + +client = None + + +class SharepointClient: + DEFAULT_SCOPES = ["https://graph.microsoft.com/.default"] + DEFAULT_REGION = "NAM" + SEARCH_ENTITY_TYPES = ["driveItem", "listItem"] + SEARCH_URL = "/search/query" + SEARCH_LIMIT = 3 + + graph_client = None + + def __init__(self, tenant_id, client_id, client_secret, search_limit=5): + try: + credential = ClientSecretCredential( + tenant_id, + client_id, + client_secret, + ) + + self.graph_client = GraphClient( + credential=credential, + scopes=self.DEFAULT_SCOPES, + api_version=APIVersion.beta, + ) + except Exception as e: + raise UpstreamProviderError( + f"Error while initializing Sharepoint client: {str(e)}" + ) + + self.search_limit = search_limit + + @lru_cache(CACHE_SIZE) + def search(self, query): + search_response = self.graph_client.post( + self.SEARCH_URL, + json={ + "requests": [ + { + "entityTypes": self.SEARCH_ENTITY_TYPES, + "query": { + "queryString": query, + "size": self.SEARCH_LIMIT, + }, + "region": self.DEFAULT_REGION, + } + ] + }, + ) + + if not search_response.ok: + message = ( + search_response.json() + .get("error", {}) + .get("message", "Error calling Microsoft Graph API") + ) + raise UpstreamProviderError(message) + + return search_response.json()["value"][0]["hitsContainers"] + + @lru_cache(CACHE_SIZE) + def get_pages(self, site_id): + page_url = f"/sites/{site_id}/pages" + response = self.graph_client.get(page_url) + + if not response.ok: + return [] + + return response.json() + + @lru_cache(CACHE_SIZE) + def fetch_page(self, url): + parsed_url = urlparse(url) + site_id = parsed_url.netloc + pages = self.get_pages(site_id) + + # Find page by path + matching_page = None + for page in pages["value"]: + normalized_page_path = f"/{page['webUrl']}" + if normalized_page_path == parsed_url.path: + matching_page = page + break + + return matching_page + + @lru_cache(CACHE_SIZE) + def get_drive_item(self, parent_drive_id, resource_id): + drive_item_url = f"/drives/{parent_drive_id}/items/{resource_id}/content" + + get_response = self.graph_client.get(drive_item_url) + + # Fail gracefully when retrieving content + if not get_response.ok: + return {} + + return get_response.content + + @lru_cache(CACHE_SIZE) + def get_list_item(self, site_id, page_id): + list_item_url = ( + f"/sites/{site_id}/pages/{page_id}/microsoft.graph.sitePage/webParts" + ) + get_response = self.graph_client.get(list_item_url) + + # Fail gracefully when retrieving content + if not get_response.ok: + return {} + + return get_response.json() + + +def get_client(): + global client + if client is not None: + return client + + # Fetch environment variables + assert ( + tenant_id := app.config.get("TENANT_ID") + ), "SHAREPOINT_TENANT_ID must be set" + assert ( + client_id := app.config.get("CLIENT_ID") + ), "SHAREPOINT_CLIENT_ID must be set" + assert ( + client_secret := app.config.get("CLIENT_SECRET") + ), "SHAREPOINT_CLIENT_SECRET must be set" + search_limit = app.config.get("SEARCH_LIMIT", 5) + + client = SharepointClient(tenant_id, client_id, client_secret, search_limit) + + return client diff --git a/sharepoint/provider/consts.py b/sharepoint/provider/consts.py new file mode 100644 index 000000000..107b11979 --- /dev/null +++ b/sharepoint/provider/consts.py @@ -0,0 +1 @@ +CACHE_SIZE = 256 diff --git a/sharepoint/provider/enums.py b/sharepoint/provider/enums.py new file mode 100644 index 000000000..004368177 --- /dev/null +++ b/sharepoint/provider/enums.py @@ -0,0 +1,6 @@ +from enum import Enum + + +class MicrosoftDataType(Enum): + DRIVE_ITEM = "#microsoft.graph.driveItem" + LIST_ITEM = "#microsoft.graph.listItem" diff --git a/sharepoint/provider/provider.py b/sharepoint/provider/provider.py new file mode 100644 index 000000000..5267170bc --- /dev/null +++ b/sharepoint/provider/provider.py @@ -0,0 +1,155 @@ +import logging +import os +from flask import current_app as app + +from dotenv import load_dotenv + +from .client import get_client +from .unstructured import get_unstructured_client +from .enums import MicrosoftDataType + + +load_dotenv() + +logger = logging.getLogger(__name__) + + +def search(query): + sharepoint_client = get_client() + + search_response = sharepoint_client.search(query) + + hits = [] + for hit_container in search_response: + hits.extend(hit_container.get("hits", [])) + + drive_items, list_items = collect_items(sharepoint_client, hits) + + # Build and request async Unstructured calls + files = [ + (hit["resource"]["id"], hit["resource"]["name"], content) + for hit, content in drive_items + ] + unstructured_content = {} + + if len(files) > 0: + unstructured_client = get_unstructured_client() + unstructured_client.start_session() + unstructured_content = unstructured_client.batch_get(files) + + # Serialize results + results = [] + for hit, drive_item in drive_items: + file_name = hit["resource"]["name"] + + content = None + if file_name in unstructured_content: + content = unstructured_content[file_name] + + serialized_drive_item = serialize_drive_item(hit, drive_item, content) + + if serialized_drive_item: + results.append(serialized_drive_item) + + for page, list_item in list_items: + serialized_list_item = serialize_list_item(page, list_item) + + if serialized_list_item is not None: + results.append(serialized_list_item) + + return results + + +def collect_items(sharepoint_client, hits): + # Gather data + drive_items = [] + list_items = [] + for hit in hits: + if hit["resource"]["@odata.type"] == MicrosoftDataType.DRIVE_ITEM.value: + parent_drive_id = hit["resource"]["parentReference"]["driveId"] + resource_id = hit["resource"]["id"] + drive_item = sharepoint_client.get_drive_item(parent_drive_id, resource_id) + + if drive_item: + drive_items.append((hit, drive_item)) + + elif hit["resource"]["@odata.type"] == MicrosoftDataType.LIST_ITEM.value: + if hit.get("resource", {}).get("parentReference", {}).get("siteId") is None: + continue + + site_ids = hit["resource"]["parentReference"]["siteId"] + site_id = site_ids.split(",")[0] + page = sharepoint_client.fetch_page(hit["resource"]["webUrl"]) + + if not page: + continue + + list_item = sharepoint_client.get_list_item(site_id, page["id"]) + + if list_item: + list_items.append((page, list_item)) + + return drive_items, list_items + + +def serialize_resource(resource): + data = {} + + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_resource = { + key: str(value) + for key, value in resource.items() + if isinstance(value, (str, int, bool)) + } + data.update({**stripped_resource}) + + if "name" in resource: + data["title"] = resource["name"] + + if "webUrl" in resource: + data["url"] = resource["webUrl"] + + return data + + +def serialize_drive_item(hit, item, content): + _, file_extension = os.path.splitext(hit["resource"]["name"]) + + if not file_extension: + return None # Ignore files without extensions + + passthrough_file_types = ( + app.config.get("PASSTHROUGH_FILE_TYPES").split(",") + if app.config.get("PASSTHROUGH_FILE_TYPES") + else [] + ) + + if file_extension in passthrough_file_types: + return item.decode("utf-8") + + text = None + if content is not None: + # Build text + text = "" + for element in content: + text += f' {element.get("text")}' + + data = {} + if (resource := hit.get("resource")) is not None: + data = serialize_resource(resource) + + if text is not None: + data["text"] = text + + return data + + +def serialize_list_item(page, item): + html_text = "" + + for html in item["value"]: + html_text += html["innerHtml"] + + data = serialize_resource(page) + + return {**data, "text": html_text} diff --git a/sharepoint/provider/unstructured.py b/sharepoint/provider/unstructured.py new file mode 100644 index 000000000..5529f4a70 --- /dev/null +++ b/sharepoint/provider/unstructured.py @@ -0,0 +1,106 @@ +import asyncio +import aiohttp +import logging +from collections import OrderedDict +from flask import current_app as app + +from .consts import CACHE_SIZE + +logger = logging.getLogger(__name__) + +unstructured = None + + +class UnstructuredRequestSession: + def __init__(self, unstructured_base_url, api_key): + self.get_content_url = f"{unstructured_base_url}/general/v0/general" + self.headers = {"unstructured-api-key": api_key} + # Manually cache because functools.lru_cache does not support async methods + self.cache = OrderedDict() + self.start_session() + + def start_session(self): + self.loop = asyncio.new_event_loop() + self.session = aiohttp.ClientSession(loop=self.loop) + + def close_loop(self): + self.loop.stop() + self.loop.close() + + def cache_get(self, key): + self.cache.move_to_end(key) + + return self.cache[key] + + def cache_put(self, key, item): + self.cache[key] = item + + if len(self.cache) > CACHE_SIZE: + self.cache.popitem() + + async def close_session(self): + await self.session.close() + + async def get_unstructured_content(self, file): + # Unpack tuple + file_id, file_name, file_data = file + + # Check cache + if file_id in self.cache: + return self.cache_get(file_id) + + # Use FormData to pass in files parameter + data = aiohttp.FormData() + data.add_field("files", file_data, filename=file_name) + + async with self.session.post( + self.get_content_url, + headers=self.headers, + data=data, + ) as response: + content = await response.json() + if not response.ok: + logger.error(f"Error response from Unstructured: {content}") + return None + + self.cache_put(file_id, (file_name, content)) + + return self.cache[file_id] + + async def gather(self, files): + tasks = [self.get_unstructured_content(file) for file in files] + return await asyncio.gather(*tasks) + + def batch_get(self, files): + results = self.loop.run_until_complete(self.gather(files)) + results = [result for result in results if result is not None] + + result_dict = { + filename: content[:20] + for filename, content in results + if content is not None + } + + # Close session and loop + self.loop.run_until_complete(self.close_session()) + self.close_loop() + + return result_dict + + +def get_unstructured_client(): + global unstructured + if unstructured is not None: + return unstructured + + # Fetch environment variables + assert ( + unstructured_base_url := app.config.get("UNSTRUCTURED_BASE_URL") + ), "SHAREPOINT_UNSTRUCTURED_BASE_URL must be set" + assert ( + api_key := app.config.get("UNSTRUCTURED_API_KEY") + ), "SHAREPOINT_UNSTRUCTURED_API_KEY must be set" + + unstructured = UnstructuredRequestSession(unstructured_base_url, api_key) + + return unstructured diff --git a/sharepoint/pyproject.toml b/sharepoint/pyproject.toml new file mode 100644 index 000000000..63d64b8e3 --- /dev/null +++ b/sharepoint/pyproject.toml @@ -0,0 +1,26 @@ +[tool.poetry] +name = "sharepoint" +version = "0.1.0" +description = "Connects Cohere to Sharepoint" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +azure-core = "1.23.1" +azure-identity = "1.10.0" +python-dotenv = "1.0.0" +msgraph-core = "0.2.2" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +requests = "^2.31.0" +gunicorn = "^21.2.0" +aiohttp = "^3.9.0" + + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/shortcut/.env-template b/shortcut/.env-template new file mode 100644 index 000000000..58da03251 --- /dev/null +++ b/shortcut/.env-template @@ -0,0 +1,2 @@ +SHORTCUT_API_TOKEN= +SHORTCUT_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/shortcut/README.md b/shortcut/README.md new file mode 100644 index 000000000..7881931c2 --- /dev/null +++ b/shortcut/README.md @@ -0,0 +1,37 @@ +# Shortcut Connector + +Connects Cohere with Shortcut, the task tracking tool. + +Currently it supports searching through Stories created in your Shortcut org. + +## Configuration + +To start, head over to https://app.shortcut.com/settings/account/api-tokens to generate an API token, then use this value for the `SHORTCUT_API_TOKEN` environment variable. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/shortcut/poetry.lock b/shortcut/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/shortcut/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/shortcut/provider/__init__.py b/shortcut/provider/__init__.py new file mode 100644 index 000000000..8ba6b4f04 --- /dev/null +++ b/shortcut/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/shortcut/provider/app.py b/shortcut/provider/app.py new file mode 100644 index 000000000..4859ac64a --- /dev/null +++ b/shortcut/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + + return {} diff --git a/shortcut/provider/provider.py b/shortcut/provider/provider.py new file mode 100644 index 000000000..7f9936c89 --- /dev/null +++ b/shortcut/provider/provider.py @@ -0,0 +1,67 @@ +import logging +import re +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.app.shortcut.com/api/v3" + + +def serialize_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + data = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "description" in data: + data["text"] = data["description"] + del data["description"] + + if "name" in data: + data["title"] = data["name"] + del data["name"] + + if "app_url" in data: + data["url"] = data["app_url"] + del data["app_url"] + + return data + + +def search(query) -> list[dict[str, Any]]: + url = BASE_PATH + "/search" + assert (token := app.config.get("API_TOKEN")), "SHORTCUT_API_TOKEN must be set" + + headers = { + "Shortcut-Token": token, + } + data = { + "detail": "full", + "page_size": 25, + "query": query, + } + + response = requests.get( + url, + headers=headers, + json=data, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + search_results = response.json()["stories"]["data"] + results = [] + for result in search_results: + results.append(serialize_result(result)) + + return results diff --git a/shortcut/pyproject.toml b/shortcut/pyproject.toml new file mode 100644 index 000000000..740d86afe --- /dev/null +++ b/shortcut/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "shortcut" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/skilljar/.env-template b/skilljar/.env-template new file mode 100644 index 000000000..a400bed16 --- /dev/null +++ b/skilljar/.env-template @@ -0,0 +1,3 @@ +SKILLJAR_API_KEY= +SKILLJAR_DOMAIN_NAME= +SKILLJAR_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/skilljar/README.md b/skilljar/README.md new file mode 100644 index 000000000..638d86b10 --- /dev/null +++ b/skilljar/README.md @@ -0,0 +1,46 @@ +# Skilljar Connector + +Connects Cohere to Skilljar, the training platform. + +API docs: https://api.skilljar.com/docs/ + +## Configuration + +To use this connector, you will need a Skilljar organization and need admin access. Go to your +Organization settings > API Credentials page and select the Create a Key button to generate a new +API key. Use this value for `SKILLJAR_API_KEY`. + +Environment variables can optionally be placed in a file called `.env`. See `.env-template` for a +full list of available options. This file can be copied to `.env` and modified. Options that are +left empty will be ignored. + +Finally, to protect this connector from abuse, the `SKILLJAR_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`http://127.0.0.1:5000`. + +```bash + curl -X 'POST' \ + 'http://127.0.0.1:5000/search' \ + -H 'accept: application/json' \ + -H 'Content-Type: application/json' \ + -d '{ + "query": "my title" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://127.0.0.1:5000/ui/ diff --git a/skilljar/poetry.lock b/skilljar/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/skilljar/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/skilljar/provider/__init__.py b/skilljar/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/skilljar/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/skilljar/provider/app.py b/skilljar/provider/app.py new file mode 100644 index 000000000..cccc4f897 --- /dev/null +++ b/skilljar/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/skilljar/provider/provider.py b/skilljar/provider/provider.py new file mode 100644 index 000000000..954cbf6ac --- /dev/null +++ b/skilljar/provider/provider.py @@ -0,0 +1,42 @@ +import logging +import base64 +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.skilljar.com/v1" + + +def search(query) -> list[dict[str, Any]]: + assert (token := app.config.get("API_KEY")), "SKILLJAR_API_KEY must be set" + assert ( + domain_name := app.config.get("DOMAIN_NAME") + ), "SKILLJAR_DOMAIN_NAME must be set" + + url = BASE_PATH + f"/domains/{domain_name}/published-courses" + + # Skilljar uses basic auth, need token encoded to base64 + base64_encoded_token = base64.urlsafe_b64encode(token.encode("utf-8")) + headers = {"Authorization": f"Basic {base64_encoded_token}"} + + params = { + "search": query, + } + + response = requests.get( + url, + headers=headers, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json()["results"] diff --git a/skilljar/pyproject.toml b/skilljar/pyproject.toml new file mode 100644 index 000000000..208d9f21b --- /dev/null +++ b/skilljar/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "skilljar" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/slack/.env-template b/slack/.env-template new file mode 100644 index 000000000..46d5f3346 --- /dev/null +++ b/slack/.env-template @@ -0,0 +1,3 @@ +SLACK_OAUTH_ACCESS_TOKEN= +SLACK_CONNECTOR_API_KEY= +SLACK_SEARCH_LIMIT=20 diff --git a/slack/README.md b/slack/README.md new file mode 100644 index 000000000..670e5911a --- /dev/null +++ b/slack/README.md @@ -0,0 +1,60 @@ +# Slack Connector + +Connects Cohere with Slack. + +## Configuration + +This connector requires that the environment variable `SLACK_OAUTH_ACCESS_TOKEN` is set in order to run. This variable +can optionally be put into a `.env` file for development. +A`.env-template` file is provided as a reference. + +### Steps to create an OAuth Access Token + +- Visit [Slack API](https://api.slack.com/apps) and create a new app. +- Select the workspace where you want to install the app. +- Go to the "OAuth & Permissions" page, and add the search:read scope under "User Token Scopes." +- Install the app in your workspace. + You'll be provided with an OAuth Access Token. Set the env var `SLACK_OAUTH_ACCESS_TOKEN` to this value. + +### Optional Configuration + +``` +SLACK_CONNECTOR_API_KEY +``` + +This variable can be set to a string that will be used to authenticate requests to the connector. + +``` +SLACK_SEARCH_LIMIT +``` + +This variable can be set to limit the number of results returned from Slack. The default is 20 + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/slack/poetry.lock b/slack/poetry.lock new file mode 100644 index 000000000..de1ce0b06 --- /dev/null +++ b/slack/poetry.lock @@ -0,0 +1,805 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "slack-sdk" +version = "3.21.3" +description = "The Slack API Platform SDK for Python" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "slack_sdk-3.21.3-py2.py3-none-any.whl", hash = "sha256:de3c07b92479940b61cd68c566f49fbc9974c8f38f661d26244078f3903bb9cc"}, + {file = "slack_sdk-3.21.3.tar.gz", hash = "sha256:20829bdc1a423ec93dac903470975ebf3bc76fd3fd91a4dadc0eeffc940ecb0c"}, +] + +[package.extras] +optional = ["SQLAlchemy (>=1.4,<3)", "aiodns (>1.0)", "aiohttp (>=3.7.3,<4)", "boto3 (<=2)", "websocket-client (>=1,<2)", "websockets (>=10,<11)"] +testing = ["Flask (>=1,<2)", "Flask-Sockets (>=0.2,<1)", "Jinja2 (==3.0.3)", "Werkzeug (<2)", "black (==22.8.0)", "boto3 (<=2)", "click (==8.0.4)", "databases (>=0.5)", "flake8 (>=5,<6)", "itsdangerous (==1.1.0)", "moto (>=3,<4)", "psutil (>=5,<6)", "pytest (>=6.2.5,<7)", "pytest-asyncio (<1)", "pytest-cov (>=2,<3)"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "8ef61773405d83a82b3d1c55113ef8083ded19c43ff6e1c19898e3d15c2806e2" diff --git a/slack/provider/__init__.py b/slack/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/slack/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/slack/provider/app.py b/slack/provider/app.py new file mode 100644 index 000000000..9d368c2fd --- /dev/null +++ b/slack/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Slack config error: {error}") + abort(502, f"Slack config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/slack/provider/client.py b/slack/provider/client.py new file mode 100644 index 000000000..20594971a --- /dev/null +++ b/slack/provider/client.py @@ -0,0 +1,40 @@ +import logging + +from flask import request, current_app as app +from slack_sdk import WebClient + +logger = logging.getLogger(__name__) + +AUTHORIZATION_HEADER = "Authorization" +BEARER_PREFIX = "Bearer " + + +class SlackClient: + def __init__(self, api_token, search_limit=20): + self.client = WebClient(token=api_token) + self.search_limit = search_limit + + def search_all(self, query): + return self.client.search_all(query=query, count=self.search_limit) + + +def get_client(): + api_key = app.config.get("CONNECTOR_API_KEY", "") + api_token = None + if api_key == "": + api_token = get_access_token() + if api_token is None: + assert ( + api_token := app.config.get("OAUTH_ACCESS_TOKEN") + ), "SLACK_OAUTH_ACCESS_TOKEN must be set" + search_limit = app.config.get("SEARCH_LIMIT", 20) + client = SlackClient(api_token, search_limit) + + return client + + +def get_access_token() -> str | None: + authorization_header = request.headers.get(AUTHORIZATION_HEADER, "") + if authorization_header.startswith(BEARER_PREFIX): + return authorization_header.removeprefix(BEARER_PREFIX) + return None diff --git a/slack/provider/provider.py b/slack/provider/provider.py new file mode 100644 index 000000000..7bc2ef6c9 --- /dev/null +++ b/slack/provider/provider.py @@ -0,0 +1,54 @@ +import logging +from typing import Any + +from . import UpstreamProviderError +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(response): + results = [] + for match in response["messages"]["matches"]: + document = extract_message_data(match) + results.append(document) + for match in response["files"]["matches"]: + document = extract_files_data(match) + results.append(document) + + return results + + +def extract_message_data(message_json): + document = {} + document["type"] = "message" + if "text" in message_json: + document["text"] = str(message_json.pop("text")) + if "permalink" in message_json: + document["url"] = str(message_json.pop("permalink")) + if "channel" in message_json and "name" in message_json["channel"]: + document["title"] = str(message_json["channel"]["name"]) + + return document + + +def extract_files_data(message_json): + document = {} + document["type"] = "file" + if "permalink" in message_json: + document["url"] = str(message_json.pop("permalink")) + if "title" in message_json: + document["title"] = str(message_json["title"]) + document["text"] = str(message_json["title"]) + + return document + + +def search(query: str) -> list[dict[str, Any]]: + client = get_client() + response = client.search_all(query) + + if not response["ok"]: + raise UpstreamProviderError(f"Failed to query Slack: {response['error']}") + + return serialize_results(response) diff --git a/slack/pyproject.toml b/slack/pyproject.toml new file mode 100644 index 000000000..443cde8ab --- /dev/null +++ b/slack/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "slack-connector" +version = "0.1.0" +description = "Connects Cohere with Slack." +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +slack-sdk = "^3.21.3" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/smartsheet/.env-template b/smartsheet/.env-template new file mode 100644 index 000000000..7567e0b9f --- /dev/null +++ b/smartsheet/.env-template @@ -0,0 +1,8 @@ +#API token +SMARTSHEET_ACCESS_TOKEN= +#Search scope +SMARTSHEET_SEARCH_SCOPE= +#Results page size +SMARTSHEET_PAGE_SIZE= +SMARTSHEET_CONNECTOR_API_KEY= + diff --git a/smartsheet/README.md b/smartsheet/README.md new file mode 100644 index 000000000..3c2d3cd3b --- /dev/null +++ b/smartsheet/README.md @@ -0,0 +1,73 @@ +# Smartsheet Connector + +Connects Cohere to a SmartSheet. + +## Configuration + +To use this connector you will need to get a Smartsheet API access token. +This one will be used for the `SMARTSHEET_ACCESS_TOKEN` environment variable. +To get the access token, please follow these steps: + +1. Click the "Account" button in the lower-left corner of the Smartsheet screen, and then click "Personal Settings". +2. Click the "API Access" tab. +3. Click the "Generate new access token" button to obtain an access token. + +Finally, to protect this connector from abuse, the `SMARTSHEET_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +### Optional Configuration + +To set the search scope for the connector, you will need to set the `SMARTSHEET_SEARCH_SCOPE` environment variable +using available scopes separated by comma. +By default, the connector will search through all available scopes: + +1. cellData - Data in cells +2. comments - Comments on sheets +3. folderNames - Names of folders +4. reportNames - Names of reports +5. sheetNames - Names of sheets +6. sightNames - Names of sights +7. summaryFields - Summary fields +8. templateNames - Names of templates +9. workspaceNames - Names of workspaces + +Example of setting the SMARTSHEET_SEARCH_SCOPE environment variable: + +```bash +SMARTSHEET_SEARCH_SCOPE=cellData,comments +``` + +By default, the connector will return 100 results per search. +To change this, set the `SMARTSHEET_PAGE_SIZE` environment variable. +Please note that the minimum page size is 100. + +```bash +SMARTSHEET_PAGE_SIZE=150 +``` + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/smartsheet/poetry.lock b/smartsheet/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/smartsheet/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/smartsheet/provider/__init__.py b/smartsheet/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/smartsheet/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/smartsheet/provider/app.py b/smartsheet/provider/app.py new file mode 100644 index 000000000..b794aa920 --- /dev/null +++ b/smartsheet/provider/app.py @@ -0,0 +1,27 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Smartsheet search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Smartsheet config error: {error}") + abort(502, f"Smartsheet config error: {error}") + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/smartsheet/provider/provider.py b/smartsheet/provider/provider.py new file mode 100644 index 000000000..c55a3cd16 --- /dev/null +++ b/smartsheet/provider/provider.py @@ -0,0 +1,53 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +BASE_PATH = "https://api.smartsheet.com" +API_VERSION = "2.0" + + +def process_response_data(response: requests.Response) -> list[dict[str, Any]]: + data = response.json() + if "results" not in data: + raise UpstreamProviderError("Unexpected response from Smartsheet API") + # TODO if we need to process pagination or other data fields, we need to do it here + return data["results"] + + +def search(query) -> list[dict[str, Any]]: + url = f"{BASE_PATH}/{API_VERSION}/search" + assert ( + token := app.config.get("ACCESS_TOKEN") + ), "SMARTSHEET_ACCESS_TOKEN must be set" + scopes = app.config.get( + "SCOPES", + "cellData,comments,folderNames,reportNames,sheetNames,sightNames,summaryFields,templateNames,workspaceNames", + ) + page_size = app.config.get( + "PAGE_SIZE", + 100, + ) + headers = { + "Authorization": f"Bearer {token}", + } + + response = requests.get( + url, + headers=headers, + params={ + "query": query, + "scopes": scopes, + "pageSize": page_size, + }, + ) + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return process_response_data(response) diff --git a/smartsheet/pyproject.toml b/smartsheet/pyproject.toml new file mode 100644 index 000000000..70781bba7 --- /dev/null +++ b/smartsheet/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "smartsheet" +version = "0.1.0" +description = "" +authors = ["Eugene Pavletsov"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/snowflake/.env-template b/snowflake/.env-template new file mode 100644 index 000000000..3c079922a --- /dev/null +++ b/snowflake/.env-template @@ -0,0 +1,8 @@ +SNOWFLAKE_USER=cohere_search +SNOWFLAKE_PASSWORD=XXXXX +SNOWFLAKE_ACCOUNT=xxxxxxx-xx12345 +SNOWFLAKE_WAREHOUSE=COMPUTE_WH +SNOWFLAKE_DATABASE=bbq +SNOWFLAKE_SCHEMA=bbq +SNOWFLAKE_TABLE=bbq2 +SNOWFLAKE_SEARCH_FIELDS=brand,name,description,features diff --git a/snowflake/README.md b/snowflake/README.md new file mode 100644 index 000000000..9c7e2dad3 --- /dev/null +++ b/snowflake/README.md @@ -0,0 +1,128 @@ +# Snowflake Connector + +Connects Cohere to a Snowflake database. + +Note: Snowflake does not have a fulltext search feature. + +## Configuration + +To use this connector you must have access to a Snowflake database. This connector does +not install a local instance of Snowflake or load test data into it. + +It requires the following environment variables: + +``` +SNOWFLAKE_USER + +This variable should contain the username for the Snowflake database. +``` + +``` +SNOWFLAKE_PASSWORD + +This variable should contain the password for the Snowflake database. +``` + +``` +SNOWFLAKE_ACCOUNT + +This variable should contain the account name for the Snowflake database. +``` + +``` +SNOWFLAKE_WAREHOUSE + +This variable should contain the warehouse name for the Snowflake database. +``` + +``` +SNOWFLAKE_DATABASE + +This variable should contain the database name for the Snowflake database. +``` + +``` +SNOWFLAKE_SCHEMA + +This variable should contain the schema name for the Snowflake database. +``` + +``` +SNOWFLAKE_TABLE + +This variable should contain the table name for the Snowflake database. +``` + +``` +SNOWFLAKE_CONNECTOR_API_KEY + +This variable should contain the API key for the Snowflake connector. +``` + +``` +SNOWFLAKE_SEARCH_FIELDS_MAPPING + +This variable should contain a JSON object mapping Cohere fields +to Snowflake fields(key is Snowflake field which will be used for search +and should be correct data field from table we search through, +the value is Cohere field). +``` + +## Using Test Data + +Snowflake has a 30-day trial. For local development of this connector, you can use a Snowflake trial account with the Standard Edition. + +The values in `.env-template` are based on creating a Snowflake database named `bbq`, with a schema called +`bbq`, and the `testdata/bbq.csv` file from this repo being imported into the Snowflake database, using the +GUI tool on the Snowflake Account Admin page. + +Before importing the CSV, you must create the `bbq` table. + +```sql +create table bbq2 +( + ID text, + Name text, + Description text, + Features text, + Brand text, + Color text, + Country text, + Rank text +); +``` + +## Development + +Copy the `.env-template` file to `.env` and edit the values accordingly. + +```bash +cp .env-template .env +``` + +To run the Flask server you must first install the dependencies with poetry. We recommend using in-project +virtual environments: + +```bash +poetry config virtualenvs.in-project true +poetry install +``` + +Then start the server: + +```bash +poetry run flask --app provider run --debug +``` + +Once the Mongo and Flask servers are running, you can perform a test request with the following cURL call: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/snowflake/poetry.lock b/snowflake/poetry.lock new file mode 100644 index 000000000..6104c0f1d --- /dev/null +++ b/snowflake/poetry.lock @@ -0,0 +1,1155 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "asn1crypto" +version = "1.5.1" +description = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP" +optional = false +python-versions = "*" +files = [ + {file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"}, + {file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "cryptography" +version = "41.0.6" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:0f27acb55a4e77b9be8d550d762b0513ef3fc658cd3eb15110ebbcbd626db12c"}, + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ae236bb8760c1e55b7a39b6d4d32d2279bc6c7c8500b7d5a13b6fb9fc97be35b"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596"}, + {file = "cryptography-41.0.6-cp37-abi3-win32.whl", hash = "sha256:2132d5865eea673fe6712c2ed5fb4fa49dba10768bb4cc798345748380ee3660"}, + {file = "cryptography-41.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:48783b7e2bef51224020efb61b42704207dde583d7e371ef8fc2a5fb6c0aabc7"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8efb2af8d4ba9dbc9c9dd8f04d19a7abb5b49eab1f3694e7b5a16a5fc2856f5c"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c5a550dc7a3b50b116323e3d376241829fd326ac47bc195e04eb33a8170902a9"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:85abd057699b98fce40b41737afb234fef05c67e116f6f3650782c10862c43da"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f39812f70fc5c71a15aa3c97b2bbe213c3f2a460b79bd21c40d033bb34a9bf36"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:742ae5e9a2310e9dade7932f9576606836ed174da3c7d26bc3d3ab4bd49b9f65"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:35f3f288e83c3f6f10752467c48919a7a94b7d88cc00b0668372a0d2ad4f8ead"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d03186af98b1c01a4eda396b137f29e4e3fb0173e30f885e27acec8823c1b09"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b27a7fd4229abef715e064269d98a7e2909ebf92eb6912a9603c7e14c181928c"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:398ae1fc711b5eb78e977daa3cbf47cec20f2c08c5da129b7a296055fbb22aed"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7e00fb556bda398b99b0da289ce7053639d33b572847181d6483ad89835115f6"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60e746b11b937911dc70d164060d28d273e31853bb359e2b2033c9e93e6f3c43"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3288acccef021e3c3c10d58933f44e8602cf04dba96d9796d70d537bb2f4bbc4"}, + {file = "cryptography-41.0.6.tar.gz", hash = "sha256:422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "filelock" +version = "3.12.2" +description = "A platform independent file lock." +optional = false +python-versions = ">=3.7" +files = [ + {file = "filelock-3.12.2-py3-none-any.whl", hash = "sha256:cbb791cdea2a72f23da6ac5b5269ab0a0d161e9ef0100e653b69049a7706d1ec"}, + {file = "filelock-3.12.2.tar.gz", hash = "sha256:002740518d8aa59a26b0c76e10fb8c6e15eae825d34b6fdf670333fd7b938d81"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "oscrypto" +version = "1.3.0" +description = "TLS (SSL) sockets, key generation, encryption, decryption, signing, verification and KDFs using the OS crypto libraries. Does not require a compiler, and relies on the OS for patching. Works on Windows, OS X and Linux/BSD." +optional = false +python-versions = "*" +files = [ + {file = "oscrypto-1.3.0-py2.py3-none-any.whl", hash = "sha256:2b2f1d2d42ec152ca90ccb5682f3e051fb55986e1b170ebde472b133713e7085"}, + {file = "oscrypto-1.3.0.tar.gz", hash = "sha256:6f5fef59cb5b3708321db7cca56aed8ad7e662853351e7991fcf60ec606d47a4"}, +] + +[package.dependencies] +asn1crypto = ">=1.5.1" + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.8.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.8.1-py3-none-any.whl", hash = "sha256:cec7b889196b9144d088e4c57d9ceef7374f6c39694ad1577a0aab50d27ea28c"}, + {file = "platformdirs-3.8.1.tar.gz", hash = "sha256:f87ca4fcff7d2b0f81c6a748a77973d7af0f4d526f98f308477c3c436c74d528"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pycryptodomex" +version = "3.18.0" +description = "Cryptographic library for Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "pycryptodomex-3.18.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:160a39a708c36fa0b168ab79386dede588e62aec06eb505add870739329aecc6"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c2953afebf282a444c51bf4effe751706b4d0d63d7ca2cc51db21f902aa5b84e"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:ba95abd563b0d1b88401658665a260852a8e6c647026ee6a0a65589287681df8"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-manylinux2014_aarch64.whl", hash = "sha256:192306cf881fe3467dda0e174a4f47bb3a8bb24b90c9cdfbdc248eec5fc0578c"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-musllinux_1_1_aarch64.whl", hash = "sha256:f9ab5ef0718f6a8716695dea16d83b671b22c45e9c0c78fd807c32c0192e54b5"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-win32.whl", hash = "sha256:50308fcdbf8345e5ec224a5502b4215178bdb5e95456ead8ab1a69ffd94779cb"}, + {file = "pycryptodomex-3.18.0-cp27-cp27m-win_amd64.whl", hash = "sha256:4d9379c684efea80fdab02a3eb0169372bca7db13f9332cb67483b8dc8b67c37"}, + {file = "pycryptodomex-3.18.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5594a125dae30d60e94f37797fc67ce3c744522de7992c7c360d02fdb34918f8"}, + {file = "pycryptodomex-3.18.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:8ff129a5a0eb5ff16e45ca4fa70a6051da7f3de303c33b259063c19be0c43d35"}, + {file = "pycryptodomex-3.18.0-cp27-cp27mu-manylinux2014_aarch64.whl", hash = "sha256:3d9314ac785a5b75d5aaf924c5f21d6ca7e8df442e5cf4f0fefad4f6e284d422"}, + {file = "pycryptodomex-3.18.0-cp27-cp27mu-musllinux_1_1_aarch64.whl", hash = "sha256:f237278836dda412a325e9340ba2e6a84cb0f56b9244781e5b61f10b3905de88"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac614363a86cc53d8ba44b6c469831d1555947e69ab3276ae8d6edc219f570f7"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:302a8f37c224e7b5d72017d462a2be058e28f7be627bdd854066e16722d0fc0c"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-manylinux2014_aarch64.whl", hash = "sha256:6421d23d6a648e83ba2670a352bcd978542dad86829209f59d17a3f087f4afef"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84e105787f5e5d36ec6a581ff37a1048d12e638688074b2a00bcf402f9aa1c2"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6875eb8666f68ddbd39097867325bd22771f595b4e2b0149739b5623c8bf899b"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:27072a494ce621cc7a9096bbf60ed66826bb94db24b49b7359509e7951033e74"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-musllinux_1_1_i686.whl", hash = "sha256:1949e09ea49b09c36d11a951b16ff2a05a0ffe969dda1846e4686ee342fe8646"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6ed3606832987018615f68e8ed716a7065c09a0fe94afd7c9ca1b6777f0ac6eb"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-win32.whl", hash = "sha256:d56c9ec41258fd3734db9f5e4d2faeabe48644ba9ca23b18e1839b3bdf093222"}, + {file = "pycryptodomex-3.18.0-cp35-abi3-win_amd64.whl", hash = "sha256:e00a4bacb83a2627e8210cb353a2e31f04befc1155db2976e5e239dd66482278"}, + {file = "pycryptodomex-3.18.0-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:2dc4eab20f4f04a2d00220fdc9258717b82d31913552e766d5f00282c031b70a"}, + {file = "pycryptodomex-3.18.0-pp27-pypy_73-win32.whl", hash = "sha256:75672205148bdea34669173366df005dbd52be05115e919551ee97171083423d"}, + {file = "pycryptodomex-3.18.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bec6c80994d4e7a38312072f89458903b65ec99bed2d65aa4de96d997a53ea7a"}, + {file = "pycryptodomex-3.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d35a8ffdc8b05e4b353ba281217c8437f02c57d7233363824e9d794cf753c419"}, + {file = "pycryptodomex-3.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76f0a46bee539dae4b3dfe37216f678769349576b0080fdbe431d19a02da42ff"}, + {file = "pycryptodomex-3.18.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:71687eed47df7e965f6e0bf3cadef98f368d5221f0fb89d2132effe1a3e6a194"}, + {file = "pycryptodomex-3.18.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:73d64b32d84cf48d9ec62106aa277dbe99ab5fbfd38c5100bc7bddd3beb569f7"}, + {file = "pycryptodomex-3.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbdcce0a226d9205560a5936b05208c709b01d493ed8307792075dedfaaffa5f"}, + {file = "pycryptodomex-3.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58fc0aceb9c961b9897facec9da24c6a94c5db04597ec832060f53d4d6a07196"}, + {file = "pycryptodomex-3.18.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:215be2980a6b70704c10796dd7003eb4390e7be138ac6fb8344bf47e71a8d470"}, + {file = "pycryptodomex-3.18.0.tar.gz", hash = "sha256:3e3ecb5fe979e7c1bb0027e518340acf7ee60415d79295e5251d13c68dde576e"}, +] + +[[package]] +name = "pyjwt" +version = "2.8.0" +description = "JSON Web Token implementation in Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, + {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, +] + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "pyopenssl" +version = "23.2.0" +description = "Python wrapper module around the OpenSSL library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pyOpenSSL-23.2.0-py3-none-any.whl", hash = "sha256:24f0dc5227396b3e831f4c7f602b950a5e9833d292c8e4a2e06b709292806ae2"}, + {file = "pyOpenSSL-23.2.0.tar.gz", hash = "sha256:276f931f55a452e7dea69c7173e984eb2a4407ce413c918aa34b55f82f9b8bac"}, +] + +[package.dependencies] +cryptography = ">=38.0.0,<40.0.0 || >40.0.0,<40.0.1 || >40.0.1,<42" + +[package.extras] +docs = ["sphinx (!=5.2.0,!=5.2.0.post0)", "sphinx-rtd-theme"] +test = ["flaky", "pretend", "pytest (>=3.0.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pytz" +version = "2023.3" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.1-py3-none-any.whl", hash = "sha256:185d4a29f001c6e8ae4dad3861e61282a81cb01b9f0ef70a15450c45c6513a0d"}, + {file = "referencing-0.30.1.tar.gz", hash = "sha256:9370c77ceefd39510d70948bbe7375ce2d0125b9c11fd380671d4de959a8e3ce"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "snowflake-connector-python" +version = "3.1.0" +description = "Snowflake Connector for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "snowflake-connector-python-3.1.0.tar.gz", hash = "sha256:fac51fc5cef6f9d5798aa460f4e6de3e53e1a0fc7b913d2bd98b5ae806bcc83b"}, + {file = "snowflake_connector_python-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:42ce55dff02998baaadfa1e41890f7f7d2c2ffcfb0ac6a47926c41d2a324ea08"}, + {file = "snowflake_connector_python-3.1.0-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:39c46efaa2997f4ce48c1a55c3e56c9d32c33d59dbab41faa770d5aa4bf422f8"}, + {file = "snowflake_connector_python-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bee4c0e672f1baa9963bdba3ce09b819b9618222c1a598147a720ad12f6586d2"}, + {file = "snowflake_connector_python-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc060dbdfbc1b9435fcc4c46cc01405456e22456fba5e029acd0d3807f72c8d9"}, + {file = "snowflake_connector_python-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:e3e38b909160e62245c170903abfe9cc35ff578228e91b02ff23bf4bc78f88ec"}, + {file = "snowflake_connector_python-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b85721352bf1ca0f5239cb33d2baa9a3861ad2957b4899ce9c233650416f0ef2"}, + {file = "snowflake_connector_python-3.1.0-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:7df207bf715f8dba50d3cfbb7c3a62dd85f87d2668047e430c20fbb06c8c2dac"}, + {file = "snowflake_connector_python-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b954d11cdc9087dcfb952ec756e1e06a9a22abe7ed3cccabb8e198eb29020663"}, + {file = "snowflake_connector_python-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da0116e63307fcca0f87a9b4eb2639a8077d7b8a16a47f803c91bf8c23891210"}, + {file = "snowflake_connector_python-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:78b13dc769b7a843e4533bd45ee3bf24296008e1ce0870cdd9952004baa429ae"}, + {file = "snowflake_connector_python-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64ee02dd00722624a9722f63161a1ccc942f3184d48ba2a01e38f53cc2e693b6"}, + {file = "snowflake_connector_python-3.1.0-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a1e303e4b7cd67a4ea174172ae5f4662c5e04fd876e25e85ba7d79a0e846ab3"}, + {file = "snowflake_connector_python-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d39653930c1d2d66a6ebb13b978b054f3db4a46ad4643c3ad24a130edd4d5cee"}, + {file = "snowflake_connector_python-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:901def6111063768062323439b746477d36ffd74a67713e06f99dc4fbcc1b1cb"}, + {file = "snowflake_connector_python-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:170f4014be601cbc3a34e6b980efbf647a35c5771fa11bed28fc4c77cd9d59af"}, + {file = "snowflake_connector_python-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d65559d1ce2bd84751abef0ddb7e5e50c917cdcaae70a0acba1760ae362e1491"}, + {file = "snowflake_connector_python-3.1.0-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:a7830494da83c8fe2adf5b8f214ece7dbaaa8a7c03c2995840d8ccd84e01e865"}, + {file = "snowflake_connector_python-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:49adb69f26478b6e4f577de65aa3b3907244133c8b2bb160758edaedacd711a5"}, + {file = "snowflake_connector_python-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dae7ebdbb59678f7ef3338864579677bb1f1773f415bca682072fa9382d55d77"}, + {file = "snowflake_connector_python-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:276338dacb2c9e0c8b8f59febbf3d2008a2cea5793f8f4bd862009a4a08df6e8"}, +] + +[package.dependencies] +asn1crypto = ">0.24.0,<2.0.0" +certifi = ">=2017.4.17" +cffi = ">=1.9,<2.0.0" +charset-normalizer = ">=2,<4" +cryptography = ">=3.1.0,<42.0.0" +filelock = ">=3.5,<4" +idna = ">=2.5,<4" +oscrypto = "<2.0.0" +packaging = "*" +platformdirs = ">=2.6.0,<3.9.0" +pycryptodomex = ">=3.2,<3.5.0 || >3.5.0,<4.0.0" +pyjwt = "<3.0.0" +pyOpenSSL = ">=16.2.0,<24.0.0" +pytz = "*" +requests = "<3.0.0" +sortedcontainers = ">=2.4.0" +tomlkit = "*" +typing-extensions = ">=4.3,<5" +urllib3 = ">=1.21.1,<1.27" + +[package.extras] +development = ["Cython", "coverage", "more-itertools", "numpy (<1.26.0)", "pendulum (!=2.1.1)", "pexpect", "pytest (<7.5.0)", "pytest-cov", "pytest-rerunfailures", "pytest-timeout", "pytest-xdist", "pytzdata"] +pandas = ["pandas (>=1.0.0,<2.1.0)", "pyarrow (>=10.0.1,<10.1.0)"] +secure-local-storage = ["keyring (!=16.1.0,<25.0.0)"] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +optional = false +python-versions = "*" +files = [ + {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, + {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "tomlkit" +version = "0.12.1" +description = "Style preserving TOML library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomlkit-0.12.1-py3-none-any.whl", hash = "sha256:712cbd236609acc6a3e2e97253dfc52d4c2082982a88f61b640ecf0817eab899"}, + {file = "tomlkit-0.12.1.tar.gz", hash = "sha256:38e1ff8edb991273ec9f6181244a6a391ac30e9f5098e7535640ea6be97a7c86"}, +] + +[[package]] +name = "types-colorama" +version = "0.4.15.12" +description = "Typing stubs for colorama" +optional = false +python-versions = "*" +files = [ + {file = "types-colorama-0.4.15.12.tar.gz", hash = "sha256:fbdfc5d9d24d85c33bd054fbe33adc6cec44eedb19cfbbabfbbb57dc257ae4b8"}, + {file = "types_colorama-0.4.15.12-py3-none-any.whl", hash = "sha256:23c9d4a00961227f7ef018d5a1c190c4bbc282119c3ee76a17677a793f13bb82"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "1.26.18" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, +] + +[package.extras] +brotli = ["brotli (==1.0.9)", "brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] +socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "403ae6c3e3be11a22a2ea64567386c7c7a702f57a9e20fe9cf04578526847e65" diff --git a/snowflake/provider/__init__.py b/snowflake/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/snowflake/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/snowflake/provider/app.py b/snowflake/provider/app.py new file mode 100644 index 000000000..66a755f9d --- /dev/null +++ b/snowflake/provider/app.py @@ -0,0 +1,29 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"SnowFlake config error: {error}") + abort(502, f"SnowFlake config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/snowflake/provider/provider.py b/snowflake/provider/provider.py new file mode 100644 index 000000000..5ab815cc7 --- /dev/null +++ b/snowflake/provider/provider.py @@ -0,0 +1,92 @@ +import logging +from itertools import product +from typing import Any + +import snowflake.connector +from flask import current_app as app +from snowflake.connector import DictCursor +from snowflake.connector.errors import Error as SnowflakeError + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k.lower() + if k.lower() not in mappings + else mappings[k.lower()]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query) -> list[dict[str, Any]]: + assert (user := app.config.get("USER")), "SNOWFLAKE_USER must be set" + assert (password := app.config.get("PASSWORD")), "SNOWFLAKE_PASSWORD must be set" + assert (warehouse := app.config.get("WAREHOUSE")), "SNOWFLAKE_WAREHOUSE must be set" + assert (account := app.config.get("ACCOUNT")), "SNOWFLAKE_WAREHOUSE must be set" + assert (database := app.config.get("DATABASE")), "SNOWFLAKE_DATABASE must be set" + assert (schema := app.config.get("SCHEMA")), "SNOWFLAKE_SCHEMA must be set" + assert (table := app.config.get("TABLE")), "SNOWFLAKE_TABLE must be set" + assert ( + mappings := app.config.get("SEARCH_FIELDS_MAPPING") + ), "SNOWFLAKE_SEARCH_FIELDS_MAPPING must be set" + assert (max_results := app.config.get("MAX_RESULTS", 10)), "MAX_RESULTS must be set" + + if not query: + return [] + + search_fields = list(mappings.keys()) + + try: + connection = snowflake.connector.connect( + user=user, + password=password, + warehouse=warehouse, + account=account, + database=database, + ) + except SnowflakeError as err: + raise UpstreamProviderError("Error connecting to Snowflake") from err + + words = query.split(" ") + + constraints = " or ".join( + map(lambda p: f"contains({p[0]}, %s)", product(search_fields, words)) + ) + + connection.cursor().execute(f"USE DATABASE {database};") + query = f""" + SELECT + * + FROM + {schema}.{table} + WHERE {constraints} + LIMIT + {max_results}; + """ + + cursor = connection.cursor(DictCursor) + cursor.execute(query, words * len(search_fields)) + + return serialize_results(cursor.fetchall() or [], mappings) diff --git a/snowflake/pyproject.toml b/snowflake/pyproject.toml new file mode 100644 index 000000000..97646b730 --- /dev/null +++ b/snowflake/pyproject.toml @@ -0,0 +1,30 @@ +[tool.poetry] +name = "snowflake" +version = "0.1.0" +description = "Connects Cohere to Snowflake" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +connexion = {version = "^2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +flask = {version = "2.2.5", extras = ["swagger-ui"]} +requests = "^2.31.0" +snowflake-connector-python = "^3.1.0" +gunicorn = "^21.2.0" + + +[tool.poetry.group.dev.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-colorama = "^0.4.15.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/solr/.env-template b/solr/.env-template new file mode 100644 index 000000000..fac0f3144 --- /dev/null +++ b/solr/.env-template @@ -0,0 +1,5 @@ +SOLR_SERVER_URL=http://localhost:8983 +SOLR_COLLECTION=bbq +SOLR_DEFAULT_FIELD=full_text +SOLR_CONNECTOR_API_KEY=abcdefg1234567890 +SOLR_CONNECTOR_FIELDS_MAPPING={"Name": "title", "full_text": "text", "Url":"url"} diff --git a/solr/README.md b/solr/README.md new file mode 100644 index 000000000..b4ed855ed --- /dev/null +++ b/solr/README.md @@ -0,0 +1,87 @@ +# Solr Quick Start Connector + +This project allows you to create a simple connection to Solr that can be used with Cohere's API. + +## Limitations + +Solr only allows search on a specific field inside a collection, this is defined by the `SOLR_DEFAULT_FIELD` environment variable. As it is essentially a key-value document store, the document will be returned as-is. It is preferable however to set the `SOLR_CONNECTOR_FIELDS_MAPPING` environment variable to map some of your fields to the `text` and `title` keys. For this variable, the key should be the field name in your Solr collection, and the value is the key name it is returned as to Cohere. See the `.env-template` for an example. + +## Configuration + +This connector requires the following environment variables: + +``` +SOLR_SERVER_URL + +This variable should contain the URL of the Solr instance. +``` + +``` +SOLR_COLLECTION + +This variable should contain the name of the Solr collection. +``` + +``` +SOLR_DEFAULT_FIELD + +Default field to search on +``` + +``` +SOLR_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional configuration + +``` +SOLR_CONNECTOR_FIELDS_MAPPING + +This variable may contain a JSON object mapping Cohere fields +to Solr fields(key is Solr field, value is Cohere field). +If it is not set, the response fields will be returned as is. +``` + +## Development + +Start Solr and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +After running the `data-loader`, the Solr instance will continue to run in the background. If you need to start it +again later, Solr can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app solr --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "Weber charcoal" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/solr/dev/load_data.py b/solr/dev/load_data.py new file mode 100644 index 000000000..54b773c08 --- /dev/null +++ b/solr/dev/load_data.py @@ -0,0 +1,64 @@ +import csv +import json + +import pysolr +import requests + +SOLR_URL = "http://solr:8983/solr/bbq" + + +def create_field(field_name, field_type): + field_payload = { + "add-field": { + "name": field_name, + "type": field_type, + "stored": True, + "indexed": True, + } + } + response = requests.post(f"{SOLR_URL}/schema", json=field_payload) + response.raise_for_status() + + +def create_copyfield(source_field, dest_field): + copyfield_payload = {"add-copy-field": {"source": source_field, "dest": dest_field}} + response = requests.post(f"{SOLR_URL}/schema", json=copyfield_payload) + response.raise_for_status() + + +if __name__ == "__main__": + fields = [ + ("ID", "text_general"), + ("Name", "text_general"), + ("Description", "text_general"), + ("Features", "text_general"), + ("Brand", "text_general"), + ("Color", "text_general"), + ("full_text", "text_general"), + ] + + for field_name, field_type in fields: + create_field(field_name, field_type) + + copy_fields = [ + ("ID", "full_text"), + ("Name", "full_text"), + ("Description", "full_text"), + ("Features", "full_text"), + ("Brand", "full_text"), + ("Color", "full_text"), + ] + + for source_field, dest_field in copy_fields: + create_copyfield(source_field, dest_field) + + solr = pysolr.Solr(SOLR_URL, always_commit=True) + solr.delete(q="*:*") + docs = [] + + with open("/bbq.csv", "r") as file: + reader = csv.reader(file) + headers = next(reader) + docs = [dict(zip(headers, row)) for row in reader] + + solr.add(docs) diff --git a/solr/docker-compose.yml b/solr/docker-compose.yml new file mode 100644 index 000000000..947d9693e --- /dev/null +++ b/solr/docker-compose.yml @@ -0,0 +1,45 @@ +version: "3.8" +services: + solr: + image: solr:9.2.1 + container_name: solr + command: > + bash -c " + precreate-core bbq /opt/solr/server/solr/configsets/_default && + solr start -f" + ports: + - 8983:8983 + volumes: + - ./dev/data:/var/solr/data + healthcheck: + test: + [ + "CMD-SHELL", + "curl --silent --fail http://localhost:8983/solr/admin/info/system || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + networks: + - solr-network + + data-loader: + image: python:3.11 + container_name: data-loader + depends_on: + - solr + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/code/load_data.py + command: > + bash -c " + pip install --no-cache-dir pysolr && + python /code/load_data.py" + profiles: + - tools + networks: + - solr-network + +networks: + solr-network: + driver: bridge diff --git a/solr/poetry.lock b/solr/poetry.lock new file mode 100644 index 000000000..3ccf6e5b5 --- /dev/null +++ b/solr/poetry.lock @@ -0,0 +1,579 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.3" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "20.1.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-20.1.0-py3-none-any.whl", hash = "sha256:9dcc4547dbb1cb284accfb15ab5667a0e5d1881cc443e0677b4882a4067a807e"}, + {file = "gunicorn-20.1.0.tar.gz", hash = "sha256:e0a968b5ba15f8a328fdfd7ab1fcb5af4470c28aaf7e55df02a99bc13138e6e8"}, +] + +[package.dependencies] +setuptools = ">=3.0" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.17.3" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jsonschema-4.17.3-py3-none-any.whl", hash = "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6"}, + {file = "jsonschema-4.17.3.tar.gz", hash = "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d"}, +] + +[package.dependencies] +attrs = ">=17.4.0" +pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pyrsistent" +version = "0.19.3" +description = "Persistent/Functional/Immutable data structures" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyrsistent-0.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:20460ac0ea439a3e79caa1dbd560344b64ed75e85d8703943e0b66c2a6150e4a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c18264cb84b5e68e7085a43723f9e4c1fd1d935ab240ce02c0324a8e01ccb64"}, + {file = "pyrsistent-0.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b774f9288dda8d425adb6544e5903f1fb6c273ab3128a355c6b972b7df39dcf"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win32.whl", hash = "sha256:5a474fb80f5e0d6c9394d8db0fc19e90fa540b82ee52dba7d246a7791712f74a"}, + {file = "pyrsistent-0.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:49c32f216c17148695ca0e02a5c521e28a4ee6c5089f97e34fe24163113722da"}, + {file = "pyrsistent-0.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f0774bf48631f3a20471dd7c5989657b639fd2d285b861237ea9e82c36a415a9"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab2204234c0ecd8b9368dbd6a53e83c3d4f3cab10ecaf6d0e772f456c442393"}, + {file = "pyrsistent-0.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e42296a09e83028b3476f7073fcb69ffebac0e66dbbfd1bd847d61f74db30f19"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win32.whl", hash = "sha256:64220c429e42a7150f4bfd280f6f4bb2850f95956bde93c6fda1b70507af6ef3"}, + {file = "pyrsistent-0.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:016ad1afadf318eb7911baa24b049909f7f3bb2c5b1ed7b6a8f21db21ea3faa8"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4db1bd596fefd66b296a3d5d943c94f4fac5bcd13e99bffe2ba6a759d959a28"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aeda827381f5e5d65cced3024126529ddc4289d944f75e090572c77ceb19adbf"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:42ac0b2f44607eb92ae88609eda931a4f0dfa03038c44c772e07f43e738bcac9"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win32.whl", hash = "sha256:e8f2b814a3dc6225964fa03d8582c6e0b6650d68a232df41e3cc1b66a5d2f8d1"}, + {file = "pyrsistent-0.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:c9bb60a40a0ab9aba40a59f68214eed5a29c6274c83b2cc206a359c4a89fa41b"}, + {file = "pyrsistent-0.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:a2471f3f8693101975b1ff85ffd19bb7ca7dd7c38f8a81701f67d6b4f97b87d8"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc5d149f31706762c1f8bda2e8c4f8fead6e80312e3692619a75301d3dbb819a"}, + {file = "pyrsistent-0.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3311cb4237a341aa52ab8448c27e3a9931e2ee09561ad150ba94e4cfd3fc888c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win32.whl", hash = "sha256:f0e7c4b2f77593871e918be000b96c8107da48444d57005b6a6bc61fb4331b2c"}, + {file = "pyrsistent-0.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:c147257a92374fde8498491f53ffa8f4822cd70c0d85037e09028e478cababb7"}, + {file = "pyrsistent-0.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b735e538f74ec31378f5a1e3886a26d2ca6351106b4dfde376a26fc32a044edc"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99abb85579e2165bd8522f0c0138864da97847875ecbd45f3e7e2af569bfc6f2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a8cb235fa6d3fd7aae6a4f1429bbb1fec1577d978098da1252f0489937786f3"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win32.whl", hash = "sha256:c74bed51f9b41c48366a286395c67f4e894374306b197e62810e0fdaf2364da2"}, + {file = "pyrsistent-0.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:878433581fc23e906d947a6814336eee031a00e6defba224234169ae3d3d6a98"}, + {file = "pyrsistent-0.19.3-py3-none-any.whl", hash = "sha256:ccf0d6bd208f8111179f0c26fdf84ed7c3891982f2edaeae7422575f47e66b64"}, + {file = "pyrsistent-0.19.3.tar.gz", hash = "sha256:1a2994773706bbb4995c31a97bc94f1418314923bd1048c6d964837040376440"}, +] + +[[package]] +name = "pysolr" +version = "3.9.0" +description = "Lightweight Python client for Apache Solr" +optional = false +python-versions = "*" +files = [ + {file = "pysolr-3.9.0.tar.gz", hash = "sha256:6ef05feb87c614894243eddc62e9b0a6134a889c159ae868655cf6cd749545e6"}, +] + +[package.dependencies] +requests = ">=2.9.1" + +[package.extras] +solrcloud = ["kazoo (>=2.5.0)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "29f87cd43db777c0f6bf02d421520caccd2c0dde042506b5311f16f6854a0329" diff --git a/solr/provider/__init__.py b/solr/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/solr/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/solr/provider/app.py b/solr/provider/app.py new file mode 100644 index 000000000..10ef141f4 --- /dev/null +++ b/solr/provider/app.py @@ -0,0 +1,30 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Solr config error: {error}") + abort(502, f"Solr config error: {error}") + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/solr/provider/provider.py b/solr/provider/provider.py new file mode 100644 index 000000000..c1d9da7f7 --- /dev/null +++ b/solr/provider/provider.py @@ -0,0 +1,53 @@ +import logging + +import pysolr +from flask import current_app as app + +logger = logging.getLogger(__name__) +solr = None + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + global solr + assert (host := app.config.get("SERVER_URL")), "SOLR_SERVER_URL must be set" + assert (collection := app.config.get("COLLECTION")), "SOLR_COLLECTION must be set" + assert ( + default_field := app.config.get("DEFAULT_FIELD") + ), "SOLR_DEFAULT_FIELD must be set" + + if solr is None: + core_url = f"{host}/solr/{collection}" + solr = pysolr.Solr(core_url) + + response = solr.search(query, df=default_field) + + mappings = app.config.get("CONNECTOR_FIELDS_MAPPING", {}) + return serialize_results(response.docs, mappings) diff --git a/solr/pyproject.toml b/solr/pyproject.toml new file mode 100644 index 000000000..8ba8aeddf --- /dev/null +++ b/solr/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "connectors-solr" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +pysolr = "^3.9.0" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +gunicorn = "^20.1.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/stackoverflow/.env-template b/stackoverflow/.env-template new file mode 100644 index 000000000..f76f0d60c --- /dev/null +++ b/stackoverflow/.env-template @@ -0,0 +1,3 @@ +STACKOVERFLOW_TEAM= +STACKOVERFLOW_PAT= +STACKOVERFLOW_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/stackoverflow/README.md b/stackoverflow/README.md new file mode 100644 index 000000000..72a534064 --- /dev/null +++ b/stackoverflow/README.md @@ -0,0 +1,44 @@ +# StackOverflow (for Teams) Quick Start Connector + +Connects Cohere to StackOverflow for Teams. + +## Limitations + +This connector does NOT search StackOverflow's public forums, but rather is configured to search your private StackOverflow instance, allowing you to search for Questions by title. + +## Configuration + +This connector requires the name of your StackOverflow Team, and a Personal Access Token. Set these inside a `.env` file for the `STACKOVERFLOW_TEAM` and `STACKOVERFLOW_PAT` variables respectively. For reference, see the `.env-template`. + +To retrieve your PAT, head over to your StackOverflow for Teams org and go to Account Settings. Under the left-hand side API tab you should see Personal Access Tokens. Go to this page and Create a new PAT, with the required Team, Read-only scope, and expiration date (if needed). + +To secure your connector, you can set the `STACKOVERFLOW_CONNECTOR_API_KEY` environment variable to a secure value for this connector's Bearer Authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/stackoverflow/poetry.lock b/stackoverflow/poetry.lock new file mode 100644 index 000000000..c620ece6f --- /dev/null +++ b/stackoverflow/poetry.lock @@ -0,0 +1,628 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.1.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.1.0.tar.gz", hash = "sha256:34e0a2f9c370eb95597aae63bf85eb5e96826d81e3dcf88b8886012906f509b5"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e0ac8959c929593fee38da1c2b64ee9778733cdf03c482c9ff1d508b6b593b2b"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d7fc3fca01da18fbabe4625d64bb612b533533ed10045a2ac3dd194bfa656b60"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:04eefcee095f58eaabe6dc3cc2262f3bcd776d2c67005880894f447b3f2cb9c1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20064ead0717cf9a73a6d1e779b23d149b53daf971169289ed2ed43a71e8d3b0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1435ae15108b1cb6fffbcea2af3d468683b7afed0169ad718451f8db5d1aff6f"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c84132a54c750fda57729d1e2599bb598f5fa0344085dbde5003ba429a4798c0"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f2568b4189dda1c567339b48cba4ac7384accb9c2a7ed655cd86b04055c795"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11d3bcb7be35e7b1bba2c23beedac81ee893ac9871d0ba79effc7fc01167db6c"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:891cf9b48776b5c61c700b55a598621fdb7b1e301a550365571e9624f270c203"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5f008525e02908b20e04707a4f704cd286d94718f48bb33edddc7d7b584dddc1"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:b06f0d3bf045158d2fb8837c5785fe9ff9b8c93358be64461a1089f5da983137"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:49919f8400b5e49e961f320c735388ee686a62327e773fa5b3ce6721f7e785ce"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22908891a380d50738e1f978667536f6c6b526a2064156203d418f4856d6e86a"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win32.whl", hash = "sha256:12d1a39aa6b8c6f6248bb54550efcc1c38ce0d8096a146638fd4738e42284448"}, + {file = "charset_normalizer-3.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:65ed923f84a6844de5fd29726b888e58c62820e0769b76565480e1fdc3d062f8"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9a3267620866c9d17b959a84dd0bd2d45719b817245e49371ead79ed4f710d19"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6734e606355834f13445b6adc38b53c0fd45f1a56a9ba06c2058f86893ae8017"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f8303414c7b03f794347ad062c0516cee0e15f7a612abd0ce1e25caf6ceb47df"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf53a6cebad0eae578f062c7d462155eada9c172bd8c4d250b8c1d8eb7f916a"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3dc5b6a8ecfdc5748a7e429782598e4f17ef378e3e272eeb1340ea57c9109f41"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e1b25e3ad6c909f398df8921780d6a3d120d8c09466720226fc621605b6f92b1"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca564606d2caafb0abe6d1b5311c2649e8071eb241b2d64e75a0d0065107e62"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b82fab78e0b1329e183a65260581de4375f619167478dddab510c6c6fb04d9b6"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bd7163182133c0c7701b25e604cf1611c0d87712e56e88e7ee5d72deab3e76b5"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:11d117e6c63e8f495412d37e7dc2e2fff09c34b2d09dbe2bee3c6229577818be"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cf6511efa4801b9b38dc5546d7547d5b5c6ef4b081c60b23e4d941d0eba9cbeb"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:abc1185d79f47c0a7aaf7e2412a0eb2c03b724581139193d2d82b3ad8cbb00ac"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb7b2ab0188829593b9de646545175547a70d9a6e2b63bf2cd87a0a391599324"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win32.whl", hash = "sha256:c36bcbc0d5174a80d6cccf43a0ecaca44e81d25be4b7f90f0ed7bcfbb5a00909"}, + {file = "charset_normalizer-3.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:cca4def576f47a09a943666b8f829606bcb17e2bc2d5911a46c8f8da45f56755"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0c95f12b74681e9ae127728f7e5409cbbef9cd914d5896ef238cc779b8152373"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fca62a8301b605b954ad2e9c3666f9d97f63872aa4efcae5492baca2056b74ab"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac0aa6cd53ab9a31d397f8303f92c42f534693528fafbdb997c82bae6e477ad9"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3af8e0f07399d3176b179f2e2634c3ce9c1301379a6b8c9c9aeecd481da494f"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a5fc78f9e3f501a1614a98f7c54d3969f3ad9bba8ba3d9b438c3bc5d047dd28"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:628c985afb2c7d27a4800bfb609e03985aaecb42f955049957814e0491d4006d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:74db0052d985cf37fa111828d0dd230776ac99c740e1a758ad99094be4f1803d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:1e8fcdd8f672a1c4fc8d0bd3a2b576b152d2a349782d1eb0f6b8e52e9954731d"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:04afa6387e2b282cf78ff3dbce20f0cc071c12dc8f685bd40960cc68644cfea6"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dd5653e67b149503c68c4018bf07e42eeed6b4e956b24c00ccdf93ac79cdff84"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d2686f91611f9e17f4548dbf050e75b079bbc2a82be565832bc8ea9047b61c8c"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win32.whl", hash = "sha256:4155b51ae05ed47199dc5b2a4e62abccb274cee6b01da5b895099b61b1982974"}, + {file = "charset_normalizer-3.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:322102cdf1ab682ecc7d9b1c5eed4ec59657a65e1c146a0da342b78f4112db23"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e633940f28c1e913615fd624fcdd72fdba807bf53ea6925d6a588e84e1151531"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a06f32c9634a8705f4ca9946d667609f52cf130d5548881401f1eb2c39b1e2c"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7381c66e0561c5757ffe616af869b916c8b4e42b367ab29fedc98481d1e74e14"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3573d376454d956553c356df45bb824262c397c6e26ce43e8203c4c540ee0acb"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e89df2958e5159b811af9ff0f92614dabf4ff617c03a4c1c6ff53bf1c399e0e1"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78cacd03e79d009d95635e7d6ff12c21eb89b894c354bd2b2ed0b4763373693b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de5695a6f1d8340b12a5d6d4484290ee74d61e467c39ff03b39e30df62cf83a0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c60b9c202d00052183c9be85e5eaf18a4ada0a47d188a83c8f5c5b23252f649"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f645caaf0008bacf349875a974220f1f1da349c5dbe7c4ec93048cdc785a3326"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:ea9f9c6034ea2d93d9147818f17c2a0860d41b71c38b9ce4d55f21b6f9165a11"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:80d1543d58bd3d6c271b66abf454d437a438dff01c3e62fdbcd68f2a11310d4b"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:73dc03a6a7e30b7edc5b01b601e53e7fc924b04e1835e8e407c12c037e81adbd"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6f5c2e7bc8a4bf7c426599765b1bd33217ec84023033672c1e9a8b35eaeaaaf8"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win32.whl", hash = "sha256:12a2b561af122e3d94cdb97fe6fb2bb2b82cef0cdca131646fdb940a1eda04f0"}, + {file = "charset_normalizer-3.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:3160a0fd9754aab7d47f95a6b63ab355388d890163eb03b2d2b87ab0a30cfa59"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:38e812a197bf8e71a59fe55b757a84c1f946d0ac114acafaafaf21667a7e169e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6baf0baf0d5d265fa7944feb9f7451cc316bfe30e8df1a61b1bb08577c554f31"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f25e17ab3039b05f762b0a55ae0b3632b2e073d9c8fc88e89aca31a6198e88f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3747443b6a904001473370d7810aa19c3a180ccd52a7157aacc264a5ac79265e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b116502087ce8a6b7a5f1814568ccbd0e9f6cfd99948aa59b0e241dc57cf739f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d16fd5252f883eb074ca55cb622bc0bee49b979ae4e8639fff6ca3ff44f9f854"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fa558996782fc226b529fdd2ed7866c2c6ec91cee82735c98a197fae39f706"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6f6c7a8a57e9405cad7485f4c9d3172ae486cfef1344b5ddd8e5239582d7355e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ac3775e3311661d4adace3697a52ac0bab17edd166087d493b52d4f4f553f9f0"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:10c93628d7497c81686e8e5e557aafa78f230cd9e77dd0c40032ef90c18f2230"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:6f4f4668e1831850ebcc2fd0b1cd11721947b6dc7c00bf1c6bd3c929ae14f2c7"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:0be65ccf618c1e7ac9b849c315cc2e8a8751d9cfdaa43027d4f6624bd587ab7e"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53d0a3fa5f8af98a1e261de6a3943ca631c526635eb5817a87a59d9a57ebf48f"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win32.whl", hash = "sha256:a04f86f41a8916fe45ac5024ec477f41f886b3c435da2d4e3d2709b22ab02af1"}, + {file = "charset_normalizer-3.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:830d2948a5ec37c386d3170c483063798d7879037492540f10a475e3fd6f244b"}, + {file = "charset_normalizer-3.1.0-py3-none-any.whl", hash = "sha256:3d9098b479e78c85080c98e1e35ff40b4a31d8953102bb0fd7d1b6f8a2111a3d"}, +] + +[[package]] +name = "click" +version = "8.1.4" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, + {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.0-py3-none-any.whl", hash = "sha256:b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60"}, + {file = "jsonschema-4.18.0.tar.gz", hash = "sha256:8caf5b57a990a98e9b39832ef3cb35c176fe331414252b6e1b26fd5866f891a4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.8.8" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.8-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:cea42c2f52e37877e6b877bce64d109a6b0213e32545ecc70d4492d2a4641b8f"}, + {file = "rpds_py-0.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b189640d59afa8aeff59865fa9d314bca97987c378950f215297e15d64ae1124"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87d74c2526115daa9d805a66377997602185a837ff7ecceed9d27e625c383572"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:db71c665fc7ddb9ac53d7b69dc588493c0b71635b28fc8ff64b31eb9db5b3461"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2d6a26953d3b291dd7e79e43bb203ed134ca889e63c8ebbc65e3ff98154303ef"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3660bd2afb23e1ca685df0d3092208fe6c7b2cae8c0be199b3da6d1a4bc91dc5"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b5164fdad37847e90683d3748dca7c4604f47ecd21e2d651dafc80393d1d314"}, + {file = "rpds_py-0.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dfec14a64759186153115d987f9e60b1fa7e8e14a00004a02482e696199e554"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d6696c2a002e982e89975063939a2579623d6d6b24634b147848ec9f35dad7d6"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13aed64f2e0bef04a0eae6d1d1295f901f6c1640d1e20264dc3b19d62ef1721d"}, + {file = "rpds_py-0.8.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:316a66b0379a9e954872593aa2eb6d61949da2ecc8f572b4dafb07aa0e247171"}, + {file = "rpds_py-0.8.8-cp310-none-win32.whl", hash = "sha256:e4e11f71673905d9e8735b8dd4ef8fa85a82e6003851fe46f9bdc51aebc2cd5d"}, + {file = "rpds_py-0.8.8-cp310-none-win_amd64.whl", hash = "sha256:6b1b235b890373f785507f8f6a644a4f191b7195939e7f6108dc0e5e4fab57fd"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:d4334405f6c73c29ff94521f78ad53ebb76a9c1b8dafea75852f9f64c3679cf7"}, + {file = "rpds_py-0.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df2ae878fd99342415a42659f3bcee34b12441a509033e0ab04c6e301895607"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2f8666fde7cfd9cdbc6c223876b39697d387f0215d12ed25147e9efec2dff5a"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ea8c4a1232c7bacf73366b0490dda7f67d25958aec1c2f099b6753c8bfe84427"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5cbcbd6451a4af2048fc0b21c15981462f6a378cb039aa53612c6e39958064e"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d418d2fd8c0fffe2897bc3e15a2e2ec87abf29076f0c36898cc33fb7881c2cbe"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c97e4cbe722474d17c309ee49e09331ceffe345bb72e2b10c6c740788871b122"}, + {file = "rpds_py-0.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1f60a7eb96fedcc5bf59761d33ac0f2f127d75f8c4b99ed0f138fc0f3601c537"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b3ed0d3498b69159db0d5db1393c8bae4df51cf936b2ef5cda53d800acab0019"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:22afed13c6ad4ccdc650ad44cbc06f835f4f30de201bd4ee2afc09bde06a357a"}, + {file = "rpds_py-0.8.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:78c5577f99d2edc9eed9ec39fae27b73d04d1b2462aff6f6b11207e0364fc40d"}, + {file = "rpds_py-0.8.8-cp311-none-win32.whl", hash = "sha256:42eb3030665ee7a5c03fd4db6b8db1983aa91bcdffbed0f4687751deb2a94a7c"}, + {file = "rpds_py-0.8.8-cp311-none-win_amd64.whl", hash = "sha256:7110854662ccf8db84b90e4624301ef5311cafff7e5f2a63f2d7cc0fc1a75b60"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:d00b16de3c42bb3d26341b443e48d67d444bb1a4ce6b44dd5600def2da759599"}, + {file = "rpds_py-0.8.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d7e540e4f85c04706ea798f47a86483f3d85c624704413bc701eb75684d35a5"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54a54c3c220e7c5038207912aab23443f829762503a4fcbc5c7bbffef7523b13"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22d5bef6f9942e46582610a60b8420f8e9af7e0c69e35c317cb508c30117f933"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fccd5e138908ae6f2db5fbfc6769e65372993b0c4c047586de15b6c31a76e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:502f0bee154fa1c13514dfddb402ef29b86aca11873a3316de4534cf0e13a1e8"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cfd2c2dbb0446ec1ba132e62e1f4880163e43e131dd43f58f58fd46430649b"}, + {file = "rpds_py-0.8.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f12e679f29a6c2c0607b7037e7fce4f6430a0d304770768cf6d8036386918c29"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8f9d619c66dc7c018a22a1795a14ab4dad3c76246c9059b681955254a0f58f7c"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f9e70c04cc0402f8b14fec8ac91d1b825ac89a9aa015556a0af12a06b5f085"}, + {file = "rpds_py-0.8.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d72757c0cb6423fe73ecaa2db3adf0077da513b7fe8cb19e102de6df4ccdad0c"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:d7e46f52272ceecc42c05ad869b068b2dbfb6eb5643bcccecd2327d3cded5a2e"}, + {file = "rpds_py-0.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7628b2080538faa4a1243b0002678cae7111af68ae7b5aa6cd8526762cace868"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657348b35a4c2e7c2340bf0bc37597900037bd87e9db7e6282711aaa77256e16"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ac1e47ee4cb2dbd714537e63c67086eec63f56b13208fe450ae5be4f3d65671"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cafbfa8f3a27e592bdcc420497e0c9a957c9f812b6c6ebfb7f961409215ba82d"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9af40bb89e40932e04c0cc1fb516249d6b3ae68ceebd984fdc592a6673244e50"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b7c87503843a036f898d44c47326a117d23b6269a9f1574adf83d7bb051b839"}, + {file = "rpds_py-0.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0fe018430e5e8e1d8b513bcbccdb0ea34b9fd81c32b3a49c41a109fade17cfb"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c7019b2522af6b835118177b6b53f7ed08da28061aa5d44e06286be09799e7a4"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ac596301c7723809ecb6ec4cb2564b2cadc06f8c07b6348a56fcbf1ae043d751"}, + {file = "rpds_py-0.8.8-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:f8a1cc37e2395002381510a6862c29634acd67edfe5774661a6c48d8617acae7"}, + {file = "rpds_py-0.8.8-cp38-none-win32.whl", hash = "sha256:e261fa453ad50fe1d9287fa21d962cdbcd3d495cf1160dd0f893883040c455b6"}, + {file = "rpds_py-0.8.8-cp38-none-win_amd64.whl", hash = "sha256:e1700fba17dd63c9c7d5cb03cf838db23cf938dd5cdb1eecb6ba8b8da62c3e73"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:25a4b357ba7540d7cc709915699d67d505c8177cdb30824127092e1b4886b504"}, + {file = "rpds_py-0.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f81a570a20f9fce617d728f4e3bdc05bfbb68afa2e795ec0c52544a7923de517"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:246a410e540ce7f635c6ad1b7aa00b7dcfc966c5f97217e41092c3f764dac4bf"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfe98ad05400e7ac7a1df791645db08c66adc92d7a6449a406111303a265b71a"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddb5226b11f4fce98c6e47c07819fbbfdda6d3fd529cd176ad8a1e0b98a70b05"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ee396f63a1f540fb3aecb8cc698180d30573a661be47fb3fff45cbd2b5d4686"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e85ea159f2d2132d4fcb71abb7df9683314f6073bf8ee9f9bd576440245e59c"}, + {file = "rpds_py-0.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ed823997c3300b541da0fcc9eee8fbe6740e07939ffa432824cfca287472d652"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4333b5c2801e44bf342207a7700378a1013f300116c9553ce1ffbc73047d2a02"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:681ef7a21e6990583533c3a3038b7176f5e51e5d345fe2d9109b54f6bffcabcd"}, + {file = "rpds_py-0.8.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1891903e567d728175c0475a1f0ffc1d1580013b0b265b9e2f1b8c93d58b2d05"}, + {file = "rpds_py-0.8.8-cp39-none-win32.whl", hash = "sha256:ee42ce4ef46ea334ce8ab63d5a57c7fd78238c9c7293b3caa6dfedf11bd28773"}, + {file = "rpds_py-0.8.8-cp39-none-win_amd64.whl", hash = "sha256:0e8da63b9baa154ec9ddd6dd397893830d17e5812ceb50edbae8122d8ecb9f2e"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ecc79cd61c4c16f92521c7d34e0f534bc486fc5ed5d1fdf8d4e6e0c578dc7e07"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d43e4253469a6149f4dae91189ccbf832dcd870109b940fa6acb02769e57802b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9985927f001d98d38ad90e0829d3e3c162ce42060bafb833782a934bf1d1d39b"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7af604c6581da01fd5f89a917c903a324779fdfa7b3ae66204865d34b5f2c502"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:53ed81e3a9a0eb3dfd404ee097d4f50ec6985301ea6e03b4d57cd7ef239179f9"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6b93a8a17e84a53fa6636037955ba8e795f6645dab5ccbeb356c8dbc9cb371"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:592b9de8d82e919ffbf069e586808f56118a7f522bb0d018c54fa3526e5f2bed"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af0920c26fe3421f9e113975c185f7c42a3f0a8ead72cee5b4e6648af5d8cecc"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:28ce85916d7377b9734b280872fb456aa048712901edff9d60836c7b2e177265"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:cbbb26ac4dade6fdec22cb1155ca38d270b308f57cfd48a13a7a8ecc79369e82"}, + {file = "rpds_py-0.8.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:8469755965ff2aa1da08e6e0afcde08950ebba84a4836cdc1672d097c62ffdbd"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:f1c84912d77b01651488bbe392df593b4c5852e213477e268ebbb7c799059d78"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:180963bb3e1fcc6ed6313ece5e065f0df4021a7eb7016084d3cbc90cd2a8af3e"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e1251d6690f356a305192089017da83999cded1d7e2405660d14c1dff976af7"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:36266e2e49b36ec6cc148e36667030d8e7f1c009edd2ca978ab09ed9c5a7589a"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bd8dbc1c63668124e5e48e601d32f1053cfd5a86004ae0e55dc9ba8b1e7de29"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c62fdb01111da948e8446caaefebf2ca4307a58fcbc10039b48d0db7205397c"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79ac819182795a2168ed11075c7362de368f360244fb7cea8274c222b2d55365"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b949e86affe17c8828d82936c51d7aa9b686511f9ac99a4b1de596d7140c8083"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:fffd98c1fd6b38df35e471549c2486d826af0fda6ca55c0bbbb956b291e7f2ae"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:9b331fa451d725258c1ad0ae6816cf36d55294e5cb68338cf91550b9a448a48f"}, + {file = "rpds_py-0.8.8-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:18a97bb7f211b247346983092186927c517153ac155c611f43ca83d5ee93a3e2"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:df3097abf5fd09bfcd8f6fd02d052b25cc3e160b3ee71b6fbd831b2cd516c958"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:961828c668140796c4963edb14cd968666d5414b9b5829997a4f475fd917906e"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a55fd01f61df19e4f53fd67b63ca9bf47559632c3f7d4037faa06d3a6fed54"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8f64ef5700ff8fded62b12d1ea55463031cc5a353b670ed7146126c6cbf28788"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a747477838a90b9264f434b5399309f9badb32c80ff3e9c4f6d5b87fddcbaa09"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:358c7a976482537d26fcbdc7808e7cc25f64816fe89681f9aa8bef13e16c7370"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e086610118163400a1822af0ee857581c0e047aa50a9c3543d17fbe65183a339"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:755a837fb7053dbf511fba26343423bd80d3b75a5d7f57f6e407c2fe5ae46682"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:247a1fd9bcdb373380cb8c0041417c9995fc163c9d88a39f5ec3d960114aca22"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:c26b1a0425c038cc23cf5770a47d7a7382fe68d6d10fb2a52c2896ca94e72550"}, + {file = "rpds_py-0.8.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4c66a5f9ca9c5fcb2527ad969541521f7216db713a7bd63aee52c3f5efa5924a"}, + {file = "rpds_py-0.8.8.tar.gz", hash = "sha256:300b8579740b06e246238b730e636f314a7d8dc475be1868650f5d3ddc29a0d8"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "088ac4e95ac60453ae982a7989d180f9ed15573d3525c97017027196d5995dee" diff --git a/stackoverflow/provider/__init__.py b/stackoverflow/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/stackoverflow/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/stackoverflow/provider/app.py b/stackoverflow/provider/app.py new file mode 100644 index 000000000..facf0a7ce --- /dev/null +++ b/stackoverflow/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/stackoverflow/provider/client.py b/stackoverflow/provider/client.py new file mode 100644 index 000000000..b1c168f3a --- /dev/null +++ b/stackoverflow/provider/client.py @@ -0,0 +1,73 @@ +from flask import current_app as app +import requests + +from . import UpstreamProviderError + + +client = None + + +class StackOverflowClient: + BASE_API_URL = f"https://api.stackoverflowteams.com/2.3" + + def __init__(self, team, access_token): + self.team = team + self.headers = {"X-API-Access-Token": access_token} + + def search(self, query): + params = { + "order": "desc", + "sort": "activity", + "intitle": query, + "team": self.team, + } + + response = requests.get( + f"{self.BASE_API_URL}/search", params=params, headers=self.headers + ) + + if response.status_code != 200: + raise UpstreamProviderError( + f"Error searching StackOverflow with query {query}." + ) + + return response.json() + + def get_question(self, question_id): + params = {"team": self.team, "filter": "withbody"} + + response = requests.get( + f"{self.BASE_API_URL}/questions/{question_id}", + params=params, + headers=self.headers, + ) + + if response.status_code != 200: + return None + + return response.json() + + def get_answer(self, answer_id): + params = {"team": self.team, "filter": "withbody"} + + response = requests.get( + f"{self.BASE_API_URL}/answers/{answer_id}", + params=params, + headers=self.headers, + ) + + if response.status_code != 200: + return None + + return response.json() + + +def get_client(): + global client + + if client is None: + assert (team := app.config.get("TEAM")), "STACKOVERFLOW_TEAM must be set" + assert (access_token := app.config.get("PAT")), "STACKOVERFLOW_PAT must be set" + client = StackOverflowClient(team, access_token) + + return client diff --git a/stackoverflow/provider/provider.py b/stackoverflow/provider/provider.py new file mode 100644 index 000000000..41422d0bf --- /dev/null +++ b/stackoverflow/provider/provider.py @@ -0,0 +1,40 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query): + stackoverflow_client = get_client() + data = stackoverflow_client.search(query) + + results = [] + for item in data["items"]: + result = { + "title": item["title"], + "url": item["link"], + "tags": item["tags"], + } + + if "accepted_answer_id" in item: + result["accepted_answer_id"] = item["accepted_answer_id"] + + text = "" + question_data = stackoverflow_client.get_question(item["question_id"]) + if ( + question_data + and "items" in question_data + and len(question_data["items"]) > 0 + ): + text += question_data["items"][0]["body"] + + if "accepted_answer_id" in item: + answer_data = stackoverflow_client.get_answer(item["accepted_answer_id"]) + if answer_data and "items" in answer_data and len(answer_data["items"]) > 0: + text += answer_data["items"][0]["body"] + + result["text"] = text + results.append(result) + + return results diff --git a/stackoverflow/pyproject.toml b/stackoverflow/pyproject.toml new file mode 100644 index 000000000..a3d90cadf --- /dev/null +++ b/stackoverflow/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "stackoverflow" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +requests = "^2.31.0" +python-dotenv = "^1.0.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/techcrunch/.env-template b/techcrunch/.env-template new file mode 100644 index 000000000..71e5e7608 --- /dev/null +++ b/techcrunch/.env-template @@ -0,0 +1 @@ +TECHCRUNCH_CONNECTOR_API_KEY= diff --git a/techcrunch/README.md b/techcrunch/README.md new file mode 100644 index 000000000..51b71eec6 --- /dev/null +++ b/techcrunch/README.md @@ -0,0 +1,44 @@ +# Techcrunch Connector + +This package is a utility for connecting Cohere to Techcrunch. +Note: this connector is just a scraper for Techcrunch search results, +it will require changes if Techcrunch's search page DOM model is modified. + +## Configuration + +The search connector requires the following environment variables: + +``` +TECHCRUNCH_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the Cohere connector. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Next, start up the search provider server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/techcrunch/poetry.lock b/techcrunch/poetry.lock new file mode 100644 index 000000000..86671e38c --- /dev/null +++ b/techcrunch/poetry.lock @@ -0,0 +1,855 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "beautifulsoup4" +version = "4.12.2" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.2-py3-none-any.whl", hash = "sha256:bd2520ca0d9d7d12694a53d44ac482d181b4ec1888909b035a3dbf40d0f57d4a"}, + {file = "beautifulsoup4-4.12.2.tar.gz", hash = "sha256:492bbc69dca35d12daac71c4db1bfff0c876c00ef4a2ffacce226d4638eb72da"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +html5lib = ["html5lib"] +lxml = ["lxml"] + +[[package]] +name = "black" +version = "23.11.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911"}, + {file = "black-23.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f"}, + {file = "black-23.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394"}, + {file = "black-23.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f"}, + {file = "black-23.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479"}, + {file = "black-23.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244"}, + {file = "black-23.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221"}, + {file = "black-23.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5"}, + {file = "black-23.11.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187"}, + {file = "black-23.11.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6"}, + {file = "black-23.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b"}, + {file = "black-23.11.0-cp38-cp38-win_amd64.whl", hash = "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142"}, + {file = "black-23.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055"}, + {file = "black-23.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4"}, + {file = "black-23.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06"}, + {file = "black-23.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07"}, + {file = "black-23.11.0-py3-none-any.whl", hash = "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e"}, + {file = "black-23.11.0.tar.gz", hash = "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.2" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.2-py3-none-any.whl", hash = "sha256:eee9e502c788e89cb166d4d37f43084e3b64ab405c795c03d343a4dbc2c810fc"}, + {file = "jsonschema-4.19.2.tar.gz", hash = "sha256:c9ff4d7447eed9592c23a12ccee508baf0dd0d59650615e847feb6cdca74f392"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.6.1" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e5012e5cc2ac628177eaac0e83d622b2dd499e28253d4107a08ecc59ede3fc2c"}, + {file = "mypy-1.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d8fbb68711905f8912e5af474ca8b78d077447d8f3918997fecbf26943ff3cbb"}, + {file = "mypy-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a1ad938fee7d2d96ca666c77b7c494c3c5bd88dff792220e1afbebb2925b5e"}, + {file = "mypy-1.6.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b96ae2c1279d1065413965c607712006205a9ac541895004a1e0d4f281f2ff9f"}, + {file = "mypy-1.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:40b1844d2e8b232ed92e50a4bd11c48d2daa351f9deee6c194b83bf03e418b0c"}, + {file = "mypy-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:81af8adaa5e3099469e7623436881eff6b3b06db5ef75e6f5b6d4871263547e5"}, + {file = "mypy-1.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8c223fa57cb154c7eab5156856c231c3f5eace1e0bed9b32a24696b7ba3c3245"}, + {file = "mypy-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8032e00ce71c3ceb93eeba63963b864bf635a18f6c0c12da6c13c450eedb183"}, + {file = "mypy-1.6.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4c46b51de523817a0045b150ed11b56f9fff55f12b9edd0f3ed35b15a2809de0"}, + {file = "mypy-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:19f905bcfd9e167159b3d63ecd8cb5e696151c3e59a1742e79bc3bcb540c42c7"}, + {file = "mypy-1.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:82e469518d3e9a321912955cc702d418773a2fd1e91c651280a1bda10622f02f"}, + {file = "mypy-1.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d4473c22cc296425bbbce7e9429588e76e05bc7342da359d6520b6427bf76660"}, + {file = "mypy-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59a0d7d24dfb26729e0a068639a6ce3500e31d6655df8557156c51c1cb874ce7"}, + {file = "mypy-1.6.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cfd13d47b29ed3bbaafaff7d8b21e90d827631afda134836962011acb5904b71"}, + {file = "mypy-1.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:eb4f18589d196a4cbe5290b435d135dee96567e07c2b2d43b5c4621b6501531a"}, + {file = "mypy-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:41697773aa0bf53ff917aa077e2cde7aa50254f28750f9b88884acea38a16169"}, + {file = "mypy-1.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7274b0c57737bd3476d2229c6389b2ec9eefeb090bbaf77777e9d6b1b5a9d143"}, + {file = "mypy-1.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbaf4662e498c8c2e352da5f5bca5ab29d378895fa2d980630656178bd607c46"}, + {file = "mypy-1.6.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:bb8ccb4724f7d8601938571bf3f24da0da791fe2db7be3d9e79849cb64e0ae85"}, + {file = "mypy-1.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:68351911e85145f582b5aa6cd9ad666c8958bcae897a1bfda8f4940472463c45"}, + {file = "mypy-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:49ae115da099dcc0922a7a895c1eec82c1518109ea5c162ed50e3b3594c71208"}, + {file = "mypy-1.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b27958f8c76bed8edaa63da0739d76e4e9ad4ed325c814f9b3851425582a3cd"}, + {file = "mypy-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:925cd6a3b7b55dfba252b7c4561892311c5358c6b5a601847015a1ad4eb7d332"}, + {file = "mypy-1.6.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8f57e6b6927a49550da3d122f0cb983d400f843a8a82e65b3b380d3d7259468f"}, + {file = "mypy-1.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:a43ef1c8ddfdb9575691720b6352761f3f53d85f1b57d7745701041053deff30"}, + {file = "mypy-1.6.1-py3-none-any.whl", hash = "sha256:4cbe68ef919c28ea561165206a2dcb68591c50f3bcf777932323bc208d949cf1"}, + {file = "mypy-1.6.1.tar.gz", hash = "sha256:4d01c00d09a0be62a4ca3f933e315455bde83f37f892ba4b08ce92f3cf44bcc1"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.12.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46"}, + {file = "rpds_py-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e"}, + {file = "rpds_py-0.12.0-cp310-none-win32.whl", hash = "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29"}, + {file = "rpds_py-0.12.0-cp310-none-win_amd64.whl", hash = "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c"}, + {file = "rpds_py-0.12.0-cp311-none-win32.whl", hash = "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10"}, + {file = "rpds_py-0.12.0-cp311-none-win_amd64.whl", hash = "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b"}, + {file = "rpds_py-0.12.0-cp312-none-win32.whl", hash = "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978"}, + {file = "rpds_py-0.12.0-cp312-none-win_amd64.whl", hash = "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c"}, + {file = "rpds_py-0.12.0-cp38-none-win32.whl", hash = "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595"}, + {file = "rpds_py-0.12.0-cp38-none-win_amd64.whl", hash = "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0"}, + {file = "rpds_py-0.12.0-cp39-none-win32.whl", hash = "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31"}, + {file = "rpds_py-0.12.0-cp39-none-win_amd64.whl", hash = "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4"}, + {file = "rpds_py-0.12.0.tar.gz", hash = "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80"}, +] + +[[package]] +name = "soupsieve" +version = "2.5" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.10" +description = "Typing stubs for requests" +optional = false +python-versions = ">=3.7" +files = [ + {file = "types-requests-2.31.0.10.tar.gz", hash = "sha256:dc5852a76f1eaf60eafa81a2e50aefa3d1f015c34cf0cba130930866b1b22a92"}, + {file = "types_requests-2.31.0.10-py3-none-any.whl", hash = "sha256:b32b9a86beffa876c0c3ac99a4cd3b8b51e973fb8e3bd4e0a6bb32c7efad80fc"}, +] + +[package.dependencies] +urllib3 = ">=2" + +[[package]] +name = "typing-extensions" +version = "4.8.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.8.0-py3-none-any.whl", hash = "sha256:8f92fc8806f9a6b641eaa5318da32b44d401efaac0f6678c9bc448ba3605faa0"}, + {file = "typing_extensions-4.8.0.tar.gz", hash = "sha256:df8e4339e9cb77357558cbdbceca33c303714cf861d1eef15e1070055ae8b7ef"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "1378d6758b41bf4cc4aada6b75fccdded5e214cc6d8f4b899a9ee19ca2254f56" diff --git a/techcrunch/provider/__init__.py b/techcrunch/provider/__init__.py new file mode 100644 index 000000000..f509f4c3d --- /dev/null +++ b/techcrunch/provider/__init__.py @@ -0,0 +1,30 @@ +import logging +import os + +import connexion +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message): + self.message = message + + def __str__(self): + return self.message + + +def create_app(): + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + + return flask_app diff --git a/techcrunch/provider/app.py b/techcrunch/provider/app.py new file mode 100644 index 000000000..c2995545c --- /dev/null +++ b/techcrunch/provider/app.py @@ -0,0 +1,29 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Techcrunch config error: {error}") + abort(502, f"Techcrunch config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/techcrunch/provider/client.py b/techcrunch/provider/client.py new file mode 100644 index 000000000..ccc0a276b --- /dev/null +++ b/techcrunch/provider/client.py @@ -0,0 +1,41 @@ +import logging + +import requests +from bs4 import BeautifulSoup + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + +client = None + + +class TechCrunchScraper: + SEARCH_URL = "https://search.techcrunch.com/search" + + def process_search(self, query): + html_page = requests.get(self.SEARCH_URL, params={"p": query}) + soup = BeautifulSoup(html_page.content, "html.parser") + results = [] + try: + article_list = soup.find("ul", {"class": "compArticleList"}) + for article in article_list.children: + if article.name == "li": + article_data = { + "title": article.find("h4").find("a").text, + "url": article.find("a", {"class": "thmb"})["href"], + "text": article.find("p").text, + "image": article.find("img")["src"], + } + results.append(article_data) + except Exception as e: + raise UpstreamProviderError(e) + return results + + +def get_client(): + global client + if not client: + client = TechCrunchScraper() + + return client diff --git a/techcrunch/provider/provider.py b/techcrunch/provider/provider.py new file mode 100644 index 000000000..b830d3dca --- /dev/null +++ b/techcrunch/provider/provider.py @@ -0,0 +1,6 @@ +from .client import get_client + + +def search(query): + client = get_client() + return client.process_search(query) diff --git a/techcrunch/pyproject.toml b/techcrunch/pyproject.toml new file mode 100644 index 000000000..249245869 --- /dev/null +++ b/techcrunch/pyproject.toml @@ -0,0 +1,26 @@ +[tool.poetry] +name = "techcrunch" +version = "0.1.0" +description = "" +authors = ["Eugene P"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" +black = "^23.11.0" +beautifulsoup4 = "^4.12.2" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/testdata/bbq.csv b/testdata/bbq.csv new file mode 100644 index 000000000..de4edad6a --- /dev/null +++ b/testdata/bbq.csv @@ -0,0 +1,2338 @@ +ID,Name,Description,Features,Brand,Color,Country,Rank +B08Z7K4VZ9,"Royal Gourmet US-SG6002R 6 BBQ Liquid Propane Grill with Sear and Side Burners, 71,000 BTU Cabinet Style Stainless Steel Gas Griller, Silver",,"High Output: This durable 6-burner gas grill generates 71,000 BTU in total including 5 individually controlled tubular burners (10,000 BTU each), a sear burner (12,000 BTU) and a side burner (9,000 BTU) to achieve high performance. +Spacious Cooking Area: Consists of primary cooking area – 602 sq. in. porcelain-enameled cast iron cooking grates and secondary cooking space – 193 sq. in. warming rack, offering a total of 795 sq. in. cooking area that serves to a large gathering. +Sear Burner & Side Burner: U-shape sear burner at the right side generates 12,000 BTU to provide strong performance for quick grilling; lidded side burner offering 9,000 BTU is ideal for preparing side dishes or soups. +Great Heat Retention: Double-layer lid ensures excellent heat retention for keeping food tasty and warm evenly. The dome creates an environment like oven to get a better flavor. Built-in thermometer monitors temperature in real-time. +Hassle-free Cleanup: Made of galvanized steel, the removable grease tray is large enough to capture any drippings that escape. The removable grease cup also helps protect floors from fluid drips. Both are easy to slide out for hassle-free cleanup.",Royal Gourmet,Silver,us,1 +B08588PLK8,"NOMADIQ Portable Propane Gas Grill | Small, Mini, Lightweight Tabletop BBQ | Perfect for Camping, Tailgating, Outdoor Cooking, RV, Boats, Travel","Designed in Europe by a team of enthusiasts who are passionate about the outdoors, every aspect of this completely portable grill has been engineered for ease of use, while maintaining durability and its sleek design. The nomadiQ Portable Propane Gas Grill delivers the performance of a full sized grill, while remaining totally portable and lightweight. Provides great grilling experience and flavor anywhere, anytime. Heats up super quick, and uses very little gas - a standard small 16 ounce canister will last over 3 HOURS with both burners on high. A pot, pan or kettle can be set directly on the grill grates for a wide variety of cooking options. Grill includes dual hose assembly for easy connection to the dual burners on high. Also contains 2 drip trays, one for each side, that can easily be stored inside the grill, or in the carrying pouch (sold separately). Also includes a padded carrying strap that can be attached for easy, comfortable packing.

            Open Dimensions: 7.5 inches (h) x 16 inches (w) x 25.6 inches (d)
            Folded Dimensions: 14.2 inches (h) x 16 inches (w) x 5.2 inches (d)
            Grilling Surface: 226.3 square inches
            Total BTU: 9,200
            Gas Type: Propane","✅ TRULY COMPACT AND PORTABLE GAS GRILL TO TAKE ON-THE-GO - Weighing ONLY 12 pounds, the nomadiQ grills are easy to transport and can go anywhere: camp, tailgate, RV, boat, parks, hikes, boating, decks & patios, travel, apartments & tiny homes, beach, roadtrip and more. Can be used as a table top grill inside & outside. INCLUDES 2 Drip Trays, Gas Hose/Regulator, Carrying Strap (for easy transport) & Manual +✅ 226 SQUARE INCH CERAMIC COATED NON-STICK GRATES - Boasting a huge cooking area, this portable propane grill has plenty of room to grill all your favorite foods, while distributing heat evenly and efficiently. Grates are easily removable, DISHWASHER SAFE, and rust-resistant. +✅ ALMOST 10,000 BTU WITH DUAL BURNERS - With 2 separate grilling sides, each encompassing almost 5,000 BTU, this BBQ grill allows you to barbecue using only one side or both sides, while controlling their temperatures individually using independently controlled burners. +✅ OPENS AND CLOSES QUICKLY - If it takes longer than 45 seconds to set-up, you are doing something wrong. In 3 simple moves, unlock, open, connect and grill. The grill heats up quickly, meaning you can light it and start your grilling experience right away. No Assembly Required! +✅ SOLID AND DURABLE COMPONENTS - The nomadiQ Grill is made from heavy steel construction with a powder coated finish for durability. With stainless steel burners and cast-iron grill plates, the nomadiQ grill is built to withstand your most adventurous outdoor activities. Its ELECTRIC PUSH-TO-START IGNITION SWITCH will quickly and reliably fire up your grill anywhere.",NOMADIQ,Black,us,2 +B082HG76CB,"MASTER COOK 3 Burner BBQ Propane Gas Grill, Stainless Steel 30,000 BTU Patio Garden Barbecue Grill with Two Foldable Shelves","Our propane gas grill with stainless steel high quality control panel, bringing beautiful silvery metal gloss and more durable than regular panel, easy to clean","❤ STAINLESS STEEL BURNERS: This propane gas grill has 3 Stainless Steel burners, can put out 30,000 BTU-per-hour with integrated piezoelectric ignition system, quick start up with the push &turn of a control knob +❤ FEATURES: The whole Stainless steel control panel with chromium plating control knob makes this propane gas grill more study and delicate, a stainless steel handle and a built-in stainless steel thermometer on the cover lid, two foldable tables and two heavy duty wheel casters for storage and moving +❤ PORCELAIN-ENAMEL WIRE COOKING GRATES: The cooking area of our propane gas grill is 471.8 include 339 square inches for cooking and 132.8 square inches for warming +❤ ASSEMBLED DIMENSIONS: 46.46 L x 20.87 W x 41.14 H inch, and 29.5 inch Length when folding both of the side table of the propane gas grill +❤ MULTIFUNCTION AND PRACTICAL: This propane gas grill is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family, alternative all season for outdoor cooking",MASTER COOK,Black,us,3 +B07P8RTTWP,"Royal Gourmet SG3001 3-Burner Propane Gas Grill for BBQ, Patio, Backyard Outside Cooking, Black",,"443 Square inches: 320 sq. In. Porcelain wire cooking grates plus 123 sq. In. Warming rack, fits 20 patties altogether. +39000 BTU: three stainless-steel tube burners (10, 000 BTU each) with Piezo ignition system, plus a Lidded side burner (9, 000 BTU) with automatic ignition. Big knobs offer quick start at every simple push. +Side burner: automatically ignited burner, 9, 000 BTUs, allows you to prepare soup, side dishes, and cook Small meals with convenience. +Glossy lid with integral molding, porcelain coated. Stainless-steel handle with Cover protects hand from scorching temperatures. Lid-mounted thermometer indicates heat change every time you look. +Grease cup: bowl-shaped oil cup has large capacity, collects grease residue during the grilling, removes out quickly for clean up.",Royal Gourmet,Black,us,4 +B08XTGT9J1,"Royal Gourmet GA5401T 5-Burner BBQ Liquid Propane Gas Grill with Sear Burner and Side Burner, Stainless Steel 64,000 BTU Patio Garden Picnic Backyard Barbecue Grill, Silver",,"Ample Cooking Space: Total of 632 sq. in. cooking space, including 477 sq. in. porcelain-enameled cast iron cooking grates and 155 sq. in. chrome plated steel warming rack provides ample cooking area for about 15 hamburgers at the same time. +High Performance: This propane gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 6 stainless steel burners offer a total of 64,000 BTU output for delivering even heat. +Sear Burner & Side Burner: Sear burner generates 14,000 BTU to provide strong performance for quick and even heat distribution; lidded side burner offering 10,000 BTU is ideal for cooking side dishes and sauces. +Hassle-free Cleanup: Equipped with removeable grease tray and grease cup to help reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure. +Durable and Solid Construction: The stylish grill is made of heavy stainless steel, featuring durable control panel and double-layer lid with heat-resistant handle and built-in thermometer, which is built to longtime use.",Royal Gourmet,"Stainless Steel,Silver",us,5 +B091F5ND56,"Royal Gourmet GA5403B Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Blue",,"Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously. +Strong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output. +Rotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts. +Precise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge. +Hassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.",Royal Gourmet,Blue,us,6 +B091F4D7FF,"Royal Gourmet GA6402S Premier 6 BBQ Stainless Steel Propane Gas Grill with Sear Side Burner Cabinet Style Outdoor Party Cooking, Silver",,"High Cooking Output: Embodies five tube burners (10,000 BTU each), a sear burner (14,000 BTU) and a side burner (10,000 BTU). With all burners in use, you will have a total of 74,000 BTU output that can heat up the grill in no time. +Sufficient Cooking Capacity: Total of 855 square inches cooking area which can hold up to 21 hamburgers at one time. It can satisfy the need of an 8-10 gathering to conveniently cook as much gourmet food as possible. +Burners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes. +Fast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface. +Mess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.",Royal Gourmet,Silver,us,7 +B091F4VJLR,"Royal Gourmet GA5403C Premier 5 BBQ Propane Gas Grill with Rotisserie Kit, Sear, Infrared Rear Side Burner, Patio Picnic Backyard Cabinet Style Outdoor Party Cooking, Coffee",,"Spacious Cooking Space: 738 sq. in. cooking space in total, including 566 sq. in. porcelain-enameled cast iron cooking grates and 172 sq. in. porcelain-enameled steel wire warming rack that accommodate about 18 hamburgers simultaneously. +Strong Performance: This stylish gas grill has 4 main burners (10,000 BTU each), a sear burner (14,000 BTU), an infrared rear burner (10,000 BTU) and a lidded side burner (10,000 BTU). 7 high power burners deliver a total of 74,000 BTU output. +Rotisserie Kit with Motor: Slow-roast a crispy brown whole chicken but juicy and tender meat inside by the strong power of infrared rear burner for high-heat searing or slow spit roasting, which offers added and unparalleled versatility during cookouts. +Precise Heat Control: Simply press the electronic ignitor button to spark up burners instantly while turning the control knobs to the highest position, adjust the grilling temperature to sear, roast or cook slowly with the monitor of integrated gauge. +Hassle-free Cleanup: Removable grease tray and grease cup collect the excess grease and residues and help reduce the risk of flare-ups in the consistent grilling.",Royal Gourmet,Coffee,us,8 +B08YLPZZ65,Boat Grill with Mount - Portable Propane Gas BBQ - Grills Secure into Rod Holder | Adjustable Legs for Table Top Use | Stainless Steel Marine Stove -Great Outdoor Barbecue,"Solid stainless steel boat grill can mount into any fishing pole holder on your boat or dock. Fits into any 2"" Rod Holder. The bbq grill comes with an electric start that simply takes a click of a button to turn on the flames. The front of the grill has a built in thermostat so you can easily maintain the correct temperature. On the bottom of the grill there is an adjustable bracket that allows you to rotate the grill up and down, as well as 360 degrees. With 255 sq inches of cooking surface this portable table top gas grill is built for BBQ-grillers on the go. The long-lasting Stainless steel construction allows you to experience the cooking anywhere, on your fishing boat, rv, backyard patio, tailgating, camping and more. The bracket mount also comes completely off and there are folding legs so you can grill on a flat surface, making this a portable grill you can bring anywhere. The grill operates on small, disposable, one-pound propane cylinders (not included). This is a must have for your boat and a perfect gift for any boat owner!","Adjustable Bracket - Move the grill up, down, 360 degrees to keep your grill flat for even cooking +Electric Start - Simply push a button to start the burner on this mini travel smoker grill +Converts into a small tabletop grill for travel, camping, tailgate use, backyard and balcony use +Built in Thermometer - Barbeque to perfection with the easy to read temperature gauge +Fast and quick set up - Very simple to install and remove - makes the perfect boat accessories",Bunker Up Fishin,Stainless Steel,us,9 +B071NWQ8Q9,"MASTER COOK Gas Grill, BBQ 4-Burner Cabinet Style Grill Propane with Side Burner, Stainless Steel",,"►36,000-BTU 4 burner propane gas grill with 12,000-BTU Lidded Side Burner +►This propane gas grill has integrated piezo ignition system ensures quick and reliable startups +►400 square inches of primary cooking area on heavy duty enamel grates of the propane gas grill plus 118 square inches of secondary cooking on procelain-coated swing away rack +►Stylish and durable stainless steel lid and control panel, lid-mounted temperature gauge for easy cooking control +►Stable cabinet structure, easy assembly. 4 casters for easy portablility and keep the propane gas grill place wherever you want",MASTER COOK,Sliver-Black,us,10 +B091TKS5XG,"Royal Gourmet GA4402S Stainless Steel 4 BBQ Propane, 54000 BTU Cabinet Style Gas Grill with Sear Side Burner Perfect Patio Garden Picnic Backyard Party, Silver",,"High-powered Burners: This stainless steel gas grill has 3 main burners (10,000 BTU each), a sear burner (14,000 BTU) and a lidded side burner (10,000 BTU). 5 burners deliver a total of 54,000 BTU cooking power. +Sufficient Cooking Capacity: Total of 640 square inches cooking area at a total comprises 471 sq. in. stainless steel cooking grates and 169 sq. in. chrome-plated steel wire warming rack, which fits for cooking 15 hamburgers at the same time. +Burners for Different Purposes: With the capacity of offering 14,000 BTU power, the sear burner produces intense high heat for professional style searing. The single side burner is an appropriate choice to prepare side dishes. +Fast & Even Heat: One-button electronic ignition system, reliable enough to fire up burners immediately. Flame tamers and porcelain-enameled cast iron cooking grates help distribute heat evenly throughout the whole cooking surface. +Mess-free Cleanup: Equipped with removable grease tray and grease cup to reduce the risk of flare-ups. It’s very easy to slide out and dump residues, thereby simplifying the cleanup procedure.",Royal Gourmet,Silver,us,11 +B000W8JNLC,XtremepowerUS Outdoor Portable Single Gas Propane Burner Gas Stove Range Camping Campsite BBQ Hose & Regulator,"Great for outdoor cooking, this single burner outdoor patio stove is the perfect addition to your catering operation or seasonal restaurant. Featuring a powerful burner, you can heat water and cooking oil quickly for increased efficiency and production. Guests will enjoy of variety of well-prepared foods cooked outdoors for a fun and unique alternative to indoor cooking and dining. Features: Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you Specification: # of Stove: 1 BTU: 30,000 BTU Type: Electric Igniter Material: Heavy Duty Cast Iron Stove Propane Tank Included: No Overall Dimension: 24""(L) x 14""(W) x 5""(H) Package Contents: Propane Stove Regulator Hose","Widely Application - Electronic ignition lighter with adjustable flame brass burner, single portable propane gas stove. Perfect choice for restaurants, hotels, canteens, dining hall, cafeterias, and so on +Durable & Practical - Easy hook-up to a propane tank with included valve, hose, and start cooking. Double circle fire with electric start and made of cast iron to last. Heavy duty cast iron body, strong and long lasting +Portable Stove - Portable super gas stove large propane brass burner, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors +Safe and Easy - Heat Adjustable certified regulator included for use with propane tank(not included) hose included for attaching to propane tank, O-ring installed on regulator to ensure that there is no gas leakage +Powerful Stove - This is a low pressure hot stove whose fire, will be stronger than our household stove, It can help you cook more quickly and save time for you.",XtremepowerUS,Gray,us,12 +B00004TBJ4,Char- Broil Standard Portable Liquid Propane Gas Grill,,"Designed for on-the-go, anywhere grilling! The legs fold over the top of the grill to lock the lid in place and heat-resistant handles mean you don't have to wait for the grill to cool down to move it +Cook up to 8 hamburgers at one time on the 187 sq. inch chrome-plated cooking grate that's easy to clean and dishwasher safe +11,000 BTU burner designed for use with 16.4 oz or 14.1 oz. propane cylinders +Quality steel construction and a durable, high-temperature finish help prevent rust to extend the life of the grill +Great for grilling and indirect cooking at low temperatures - just close the lid and you'll get even heat and low flare-ups",Char-Broil,Black,us,13 +B07GJQRH3K,Boshen Portable Stove Burner Cast Iron Propane LPG Gas Cooker for Patio Outdoor Camping BBQ,"NOTE: Any problem about installation and use, please feel free to contact us for suggestions.

            Why choose it?

            This Camp Stove with Single Burner is designed for outdoor use and is particularly popular for camp cooking and demonstration cooking.

            The structure of cast iron ensures its strength and durability. Generous cooking surface can accommodate full size pots and skillets.

            The burner works with gas cylinder, controlled by simple gas valves and giving fabulous heat control.

            Lightweight compact design makes it easy to carry or store. This is a compact but powerful stove.

            Specifications:

            Material: Cast Iron
            Color: Black
            Energy Type: LPG
            Size(Lx Wx H): 9.45"" x 9.45"" x 4.72""
            Weight: 4.19 lbs
            Load-bearing: 22 lbs

            Package included:

            1 x Single Burner Camp Stove (regulator not include)
            1 X Screw (for oxygen control valve)
            2 x Screw (for gas pipe, the pipe is not included )
            2 x Screw (for gas valve)
            4 x Screw

            Note: 1. To avoid rusting the stove, some oil applied to it for protection, Please Be Assured Use.
            2. Gas line and regulator Not Included.","Made of sturdy and durable cast iron material, generous surface suits all sized pots and skillets. NOTE: the gas line and regulator Not Included +Compact and portable design: size(Lx Wx H): 9.45"" x 9.45"" x 4.72"", easy to install and use, good for small cooking +Safety, environmental protection, energy saving. Any problem about installation and use, please feel free to contact us for suggestions +Flame adjustable, 4 detachable legs, save space, convenient to carry and transport +Package List: 1 x Single Burner Camp Stove (regulator not include) and 9 X Screws. Ideal For Garden, Patio, Camping, Picnic, Travelling and Outdoor General Use.",Boshen,Black,us,14 +B01KJGBC6A,Char-Broil Portable 240 Liquid Propane Gas Grill,,"240 Square inch cooking area and built to travel +Sturdy legs for stability on a Table or the ground, carrying handles for easy transport +Lid-mounted temperature gauge, painted porcelain body +For use with 1Lb propane tanks, (Sold Separately)",Char-Broil,Black,us,15 +B07BLHCHX6,"Coleman Gas Grill | Portable Propane Grill | Roadtrip 225 Tabletop Grill, Black",,"COOKING POWER: Up to 11,000 total BTUs +2 ADJUSTABLE BURNERS: For better temperature control +LARGE GRILLING AREA: 225 sq. in. +EASY SETUP: Arrives fully assembled +PUSH-BUTTON IGNITION: For matchless lighting",Coleman,Black,us,16 +B01BW4K0LG,"MARTIN Portable Propane Bbq Gas Grill 14,000 Btu Porcelain Grid with Support Legs and Grease Pan","Compatible with both high and low pressure lines – ideal for trailers – this portable gas grill is a must-have for any barbeque lover. Not only does it need no external power source (thanks to its piezo-ignition system) it gives you the control over how each and every meal turns out. That’s why we created the MARTIN portable propane bbq gas grill, you have the freedom to adjust the temperature according to the meat – or vegetable – you’re grilling which means you’ll be able to get that delicious “seared on the outside, juicy on the inside” performance every time. Thanks to the closing lid you’ll find it’s much easier to get evenly-cooked food and keep the bugs away while you’re cooking. 

            Product details:

            • Adjustable cooking temperature
            • Large porcelain cooking grid
            • Piezo igniter
            • Heat indicator
            • Folding support legs
            • Brushed stainless steel cover
            • Grease pan
            • Certified for USA and CANADA
            Do not hesitate to get this portable propane bbq gas grill ideal for outdoor, camping or rv.","U-SHAPE BURNER - 14000 BTU Even cooking the porcelain cooking grid and closing stainless steel lid mean your food gets cooked evenly from the get-go +FOLDING SUPPORT LEGS - Quick deployment you can have this grill out of the garage and fired up in less than one minute +ADJUSTABLE TEMPERATURE - If you like to cook different types of meats when you host a Barbeque; sear in the juices of every steak you cook, make slow-grilled chicken perfectly every time and even grill buns and vegetables without disaster striking +GREASE PAN - Quick clean grease tray keeps your grilling area clean +354 Square Inches of total Cooking Surface, Retractable warming rack and Piezo-ignition system no need external power source",MARTIN,Stainless Steel,us,17 +B07XVBJT3R,"Lion Premium Grills 40-Inch Liquid Propane Grill L90000 with Single Side Burner, Eco Friendly Refrigerator, Door and Drawer Combo with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal",,"Lion L90000 40"" Liquid Propane Grill features 5 cast stainless steel burners (90,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 1030 sq. in. of cooking surface. +Component package deal includes Lion Single Side Burner, Lion Eco Friendly Refrigerator, and Lion Door and Drawer Combo with Towel Rack. +Gourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover. +Package Deal includes a BBQ 5 in 1 Tool Set featuring 17"" Spatula, 16"" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.",Lion Premium Grills,Stainless Steel,us,18 +B07BLH19MX,"Coleman Gas Grill | Portable Propane Grill | RoadTrip 285 Standup Grill, Black",,"GRILLING POWER: Up to 20,000 total BTUs +3 ADJUSTABLE BURNERS: With improved burner technology for more precise temperature control +LARGE GRILLING AREA: 285 sq. inches +EASY SETUP: Sturdy quick-fold legs and wheels +THERMOMETER: Integrated design for accurate temperature monitoring",Coleman,Black,us,19 +B01HITNEEE,"American Gourmet 463773717 Char-Broil Classic 360 3-Burner Liquid Propane Gas Grill, Black",,"360 square inches of cooking space over porcelain-coated grates. Convectional cooking system +170 square inch porcelain-coated swing-a-way rack for warming +Three stainless steel in-line burners for cooking performance +Porcelain-coated steel lid and firebox stand up to weather and the elements +Metal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space",AMERICAN GOURMET,Black,us,20 +B07BLHC2G2,"Coleman Gas Grill | Portable Propane Grill | RoadTrip 225 Standup Grill, Red",,"COOKING POWER: Up to 11,000 total BTUs +2 ADJUSTABLE BURNERS: For better temperature control +LARGE GRILLING AREA: 225 sq. in. +EASY SETUP: Sturdy quick-fold legs and wheels +PUSH-BUTTON IGNITION: For matchless lighting",Coleman,Red,us,21 +B07NR9G7BC,"Masterbuilt SH19030819 Propane Tabletop Grill, 1 Burner, Stainless Steel",,"288 sq. inches of total cooking surface +10,000 BTU stainless steel ""U"" shaped burner for maximum heat distribution +Folding legs and locking lid make moving grill easy +Chrome-coated warming rack_Stainless steel construction and cooking grates +Push-button ignition lights burner quickly and easily",Masterbuilt,Stainless Steel,us,22 +B07JZV24HV,"Char-Broil 463377319 Performance 4-Burner Cart Style Liquid Propane Gas Grill, Stainless Steel",,"Power Source: Propane/ liquid petroleum gas. The propane tank is not included. +Exclusive Stainless Steel finish for increased style and durability +Reliable electric ignition to fire up your grill and 10, 000 BTU side burner +Porcelain-coated grease pan is durable and can be removed for easy cleaning +Stainless Steel burners emit flame from the top to allow for even cooking",Char-Broil,Stainless Steel,us,23 +B00BFPMLI8,Char-Broil Grill2Go X200 Portable TRU-Infrared Liquid Propane Gas Grill,,"Road worthy and built to travel easy +Cast aluminum firebox and lid with dual stainless steel latches and temp gauge +High-impact frame with legs and carry handles +No flare-up TRU-Infrared cooking system +200 square inch stainless steel grilling grate",Char-Broil,Black,us,24 +B01ENX3VX2,"Royal Gourmet PD1300 Portable 3-Burner Propane Gas Grill Griddle,Black",,"Adjustable Burner: 3 separately controlled burners with 9,000 BTU each, up to 27,000 BTU cooking power and achieve even heat distribution fast +316 Square Inches: Detachable porcelain enameled flat top offers 316 sq. in. cooking area measured 23.6’’ L x 13.4’’ W and 3.5 mm thickness. 15 patties can be cooked altogether at once +Piezo Ignition: Durable stainless steel control panel with piezo ignition system +Oil Disposal: Removable oil cup collects grease residue while cooking, and is also easy to clean up after use +Perfect Size: Including regulator for 20 lb. tank, portable design makes it small enough to fit for camping, hiking, and other outdoors",Royal Gourmet,Black,us,25 +B06XY4SHXG,"Royal Gourmet SG6002 Cabinet Propane Gas Grill, 6-Burner, Stainless Steel",,"5 stainless steel tube burners (10,000 BTU each), plus sear burner (12,000 BTU) and lidded side burner (9,000 BTU); Total 71,000 BTU cooking power achieves even heat and juicy flavor +Porcelain-enameled cooking grates and warming rack offer a total of 797 square inches cooking area, which is consisted of a primary cooking area of 598 square Inches and a secondary cooking area of 199 square inches +Heavy duty full stainless steel double-layer lid for heat retaining; Built-in thermometer ensures accurate grilling zone temperature measurement +Electronic ignition system offers quick start-up with every easy push; Metal side shelf offers additional prep and work space +Removable grease tray for convenient cleaning; Cabinet with stainless steel doors for storing BBQ tools with 4 lockable casters",Royal Gourmet,Stainless Steel,us,26 +B01FTD8JB4,"Royal Gourmet Regal GB2000 2-Burner Propane Gas Grill Griddle, 22'' L, Black",,"SPACIOUS COOKING SURFACE: 22.4"" L x 21.7"" W, 486 square inches cooking area in total. Enhanced glossy ceramic-coated griddle top heat up quickly. +POWERFUL HEATING SYSTEM: 2 independently controlled stainless steel tube burners with 13,000 BTUs each, 26,000 BTUs cooking power in total. +QUICK START-UP: Electronic ignition system offers a reliable spark at every simple push. +NO FUSSY CLEANUP: Efficient grease management system facilitates easy and effortless cleanup. +EASY TO TRANSPORT: Wheel around your griddle freely thanks to its 2 large caster wheels with brake system.",Royal Gourmet,Black,us,27 +B08689LFJ9,"Grand patio Outdoor Propane Fire Pit Table with Cover/Lid for Patio, 43 inch 45,000 BTU,Wicker/Rectangle","Enjoy the style and warmth of the 45,000 BTU propane fire pit table all year round.

            Attention:This fire table shall only be used outdoors in a well ventilated space, and shall not be used in a building, garage or any other enclosed area.

            Note:
            The propane fire pit/table with integrated push-button ignition and woven side panels conveniently conceal a standard 20-Lb propane tank (not included).
            Glass stones shown in photos are decoration only, and are NOT included.
            Batteries: 1 AA battery required (NOT included).

            Dimensions: 43.3"" (L) x 29.1"" (W) x 24.2"" (H)
            Package Includes:
            1 x 43 inch gas fire pit table
            1 x Hose regulator valve set (assembled)
            1 x Hardware and tools
            1 x Assembly & user manual

            Assembly & Warranty: Simple assembly; All necessary hardware and tools are included. With two people, assembly usually takes only 20-30 mins. 12 month warranty included.","Ambience: 18"" linear burner provides the perfect atmosphere without the smoke and ash of real wood fires. +Materials:All-weather resin wicker rated at 2000 UV hours resists fading for up to 3 years. Durable, powder-coated steel frame is rust-resistant. Durable ceramic tiles table top provide the look of real stone without the cost, and can be removed for easy cleaning. Glass beads NOT included. +Features: Integrated push-button ignition starts and adjusts flame height easily (AA Battery required), up to 45,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). +Dual-function: Can be used as an outdoor dining table or coffee table by simply covering the burner with the included cover when flames are off. +Dimensions & Packing Included:Overall Table Size :43.3"" (L) x 29.1"" (W) x 24.2"" (H). Unit includes: One Fire Pit Table with Cover/ Lid, Burner with 2.6 FT Hose & Regulator, Tools required for assembly, Installation Manual.",Grand patio,Brown,us,28 +B0098HR1FI,"Weber Spirit E-310 Liquid Propane Gas Grill, 46510001 model - Black",,"Your purchase includes One Weber Spirit E-310 Liquid Propane Gas Grill in Black color, 46510001 model + 6 tools hooks and User Manual +Grill dimensions: Lid Open - 63""H x 52""W x 32""D. Lid Closed - 45.5""H x 52""W x 24""D. Grilling area dimensions: 529 square inches +Propane gas grill works with Standard 20 lb LP tank (sold separately). +Other specifications: BTU-Per-Hour Input – 32,000. Stainless Steel Burners – 3. Side tables – 2 (Stationary) Swivel Casters – 2 +Built to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time",Weber,Black,us,29 +B00RFXS1Z6,"Weber 51010001 Q1200 Liquid Propane Grill, Black",,"One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area +Porcelain-enameled cast-iron cooking grates and cast aluminum lid and body +Dimensions - lid closed and tables out (inches): 15.5H x 40.9W x 16.5D inches. Fully assembled out of box. Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately) +Easy-start electronic ignition and infinite control burner valve settings +Care instructions: Handling the brass material on this product exposes you to lead, a chemical known to the State of California to cause cancer, birth defects or other reproductive harm. (Wash hands after handling this product.)",Weber,Black,us,30 +B07P7M1NH8,"Megamaster 820-0065C Propane Gas Grill, Red + Black",,"Assembly required (Easy!) +Foldable legs and soft handles +Durable high-grade stainless steel main burner +Strong steel frame with a heat-resistant coating finish +A cooking power of 11,000 total BTU's with even and consistent heat",Megamaster,Red + Black,us,31 +B01ENV3UDA,"Royal Gourmet GD401 Portable Propane Gas Grill and Griddle Combo with Side Table | 4-Burner, Folding Legs,Versatile, Outdoor | Black",,"Combination of gas grill and griddle with two individual cooking zones | Easy assembly required +Product dimensions – 66.1"" L x 21.8"" W x 43.7"" H | Clearance space around product – 36” | Product weight – 103.6 lbs. | Cooking area (Two) – 292 sq. inches each | Gas tank size – 20 lb. | Burners output (4) – 12,000 BTU each +Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel +Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms’ reach +With fold-down legs for compact storage and four locking casters for easy moving, it is ideal for cookouts | Removable oil management system facilitates easy cleanup",Royal Gourmet,Black,us,32 +B07G6Z2MLN,"Wadoy Rv Propane Tank Gauge Level Indicator Meter with Type 1 Connection for RV Camper, BBQ Gas Grill, Heater Gas Pressure POL to QCC1/Type1 Adapter","COMPANY INTRODUCTION: We worked in foreign trade for 6 years, each year large of our products are sold to European country. High quality, great selling service, good reputation is our purpose. I believe we are your best choice.
            PRODUCT DESCRIPTION: Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter Converts POL to QCC1/Type1, for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances This propane tank adapter is made of high quality brass, which is durable and long service life, withstands weather, scratching, denting and corroding. Easy to install It is universal and fit for all types of propane tank.Hand wheel for easy grip easy to install. Enables all P.O.L. propane tanks to fit new QCC1 connections.REFUND POLICY Generic Aftermarket Parts - 30 Day Money Back Guarantee If the products are damaged in transit, or defect products, we will provide free return policy","WORK WITH: Propane gas level indicator fits all brands and models with a QCC1/Type1 connection and up to a 40lb propane tank +GREAT FUNCTION: This propane tank gas gauge can convert your old pol style connection type propane tank to new type (type1 / QCC1); Universal using, this propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter; propane tank gauge for rv, grill, camper, bbq, fire pit table, turkey fryer and more propane appliances +MAIN FEATURES: This propane gas level monitor is made of high quality brass, which is durable and long service life; It is universal and fit for all types of propane tank; Hand wheel for easy grip easy to install +EASY TO INSTALL: No tools required and easy to install with hand Wheel grip for tightening. +PACKAGE INCLUDES: ONE pol to qcc1 propane tank adapter with gauge",Wadoy,,us,33 +B01HID4Y7Q,"Char-Broil 463673519 Performance Series 2-Burner Cabinet Liquid Propane Gas Grill, Stainless Steel",,"2-burner, 24,000-BTU Cabinet Gas Grill +300 square inches of primary cooking on porcelain-coated cast iron grates, plus 100 square inch swing-away rack with porcelain-coated grates +Stainless steel lid and UFC provide stylish durability, and features a lid-mounted temperature gauge for added heat control.Cooking System:Convectional +Electronic ignition for fast and reliable startups. Metal side shelves fold down when not in use. +Convenient access storage cabinet to store propane tank and accessories. Grill sits on 4 casters, two of which lock for mobility and stability.",Char-Broil,Stainless Steel,us,34 +B01HITNEEY,"American Gourmet 467730217 Classic 280 2-Burner Liquid Propane Gas Grill, No Side, Black",,"280 square inches of cooking space over porcelain-coated grates +Two stainless steel in-line burners for cooking performance;Assembly Required +Porcelain-coated steel lid and firebox stand up to weather and the elements +Metal side shelves measure 12-inches w x 13-inches l providing extra storage and prep space +Piezo ignition system for fast and reliable startups. Cooking System: Convectional",AMERICAN GOURMET,Black,us,35 +B07B8SPXTG,Blaze Premium LTE 32-Inch 4-Burner Built-in Propane Gas Grill with Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP,"Blaze Premium LTE 32-Inch 4-Burner Built-In Propane Gas Grill With Rear Infrared Burner & Grill Lights - BLZ-4LTE2-LP. BLZ-4LTE2-LP. Built-In Gas Grills. Blaze is proud to introduce an affordable, premium-grade grill that was designed with your outdoor BBQ challenges in mind. The Premium LTE series takes grilling to the next level with a signature LED Illuminated Control System and integrated halogen hood lighting, perfect for nighttime grilling and entertaining. The 32-inch Premium LTE cooking system comes with four 304 cast stainless steel burners that deliver an impressive 14,000 BTUs of cooking power, for a total of 56,000 BTUs on the cooking surface. The 10,000 BTU infrared rear burner works great with the optional rotisserie kit for grilling versatility. Durable patented, triangle-shaped 9mm stainless steel searing rods on the spacious 748 square inches of cooking space allow for searing the heartiest steaks while preventing your veggies from rolling away. The stainless steel heat zone separators empower you to use different cooking zones across the grilling surface. Creating separate zones that can be used for different styles of cooking is what premium grilling is all about, after all. The Blaze Push & Turn Flame-Thrower with Backup Flashtube & Crossover Channels ignition system provides a steady and reliable flame with every start. The removable warming rack, meanwhile, is an ideal place to keep bread and other food heated while you grill the other courses. The flame tamer system includes a 14-gauge flame stabilizer grid that minimizes flare-ups while you enjoy your Blaze grill. The Grease Control system with removable lower heat baffles and a full-width drip tray makes cleanup a breeze. The 304 stainless steel grill hood is double-lined to protect the outer layer from heat discoloration, keeping your Blaze grill looking shiny and new well past first, 10th, or 50th use! Please note that a 110V power source is required. This product is ETL-certified with ...","Blaze Grills offers a best-in-class Lifetime warranty +Patented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks +Heat zone separators allow you to cook multiple types of food at the same time using different temperatures like an expert chef +Full-width, 14-gauge stainless steel Flame Tamers cover the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots +Cast stainless steel Linear Burners for durability and longevity",Blaze,Stainless Steel,us,36 +B00DYN0438,"Blackstone 1554 Cooking 4 Burner Flat Top Gas Grill Propane Fuelled Restaurant Grade Professional 36” Outdoor Griddle Station with Side Shelf, 36 Inch, Black",,"Rear grease - Blackstone has updated the grease Management on this unit. All units now have the newly improved rear grease Management. You may receive a rear grease or a front grease drain. +Replace your standard grill - replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors +Restaurant style cooking - with 720sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep +Controllable heat zones - four independently controlled 15, 000 BTU stainless Steel burners make a total of 60, 000 BTUs controlled low to high for versatile cooking options. Propane fueled by a standard 20lb tank with an accommodating tank storage tucked nicely under the left side shelf +Durability and longevity - this Blackstone grill is built to last with a powder coated Black steel frame, stainless steel burners and thick cold rolled steel cooktop. Super simple to clean, making post-meal cleanup a breeze",Blackstone,Black,us,37 +B01N1G04RL,"Royal Gourmet GD401C 4-Burner Portable Propane Flat Top Gas Grill and Griddle Combo, Black",,"Combo Design: Combination of gas grill and griddle with two individual cooking zones, each has 292 sq. inches for cooking, totaling 584 sq. inches of cooking space, over 4 burners with an output of 48,000 BTUs. +Portable: Easy to assemble within 15 minutes. With fold-down legs for compact storage and four locking casters for easy-moving, it is ideal for cookouts. +Automatic Ignition System: Automatic ignition system delivers fast and easy start-up with four big knobs on the stainless-steel control panel. +No Fussy Cleanup: Removable oil management system facilitates easy cleanup. +Ample Preparation Spact: Two fixed side tables provide ample space for food preparation. Lower bar design keeps your grilling accessories within arms’ reach.",Royal Gourmet,Black,us,38 +B00FGEINVI,"Weber 57060001 Q3200 Liquid Propane Grill,White",,"Two stainless steel burners produces 21,700 BTU-per-hour to heat 393 square-inch total cooking area +Porcelain-enameled cast-iron cooking grates and cast aluminum lid and body +Grill-Out handle light. Battery type: AAA +Easy-start electronic ignition and infinite control burner valve settings +Operates on a 20 lb. LP tank (sold separately).Total cooking area (square inches):468.Warming rack area (square inches):75",Weber,White,us,39 +B07PJS4B4X,"Napoleon TQ285XBL1 Propane Gas Grill, Blue",,"Blue portable grill with scissor cart +Material Type: Cast Iron",Napoleon,Blue,us,40 +B087HNGXRB,"Megamaster 720-0988EA Propane Gas Grill, Black/Silver",,"Assembly required +Durable high-grade stainless steel main burner +Stainless steel control panel with two large easy to transport wheels +Heavy-duty cast iron cooking grid with total of 434 Sq. in. cooking area +A cooking power of 30,000 total BTU's with strong, even and consistent heat",Megamaster,Black/Silver,us,41 +B00FDOON9C,"Weber 54060001 Q2200 Liquid Propane Grill , Gray",,"Total cooking area = 280 Square Inches +Stainless steel burner puts out 12,000 BTU-per-hour +Porcelain-enameled, cast iron cooking grates +Electronic ignition with built in thermometer +Two folding work tables",Weber,Gray,us,42 +B077JTCMKQ,"Weber 45010001 Spirit II E-310 3-Burner Liquid Propane Grill, Black",,"Boasts the GS4 grilling system with improved infinity ignition, burners, porcelain-enameled Glamorizer Bars, and grease Management system +Porcelain-enameled, cast iron cooking grates +529 Square inches of cooking space over three burners. Left Table down width - 42 inches +30, 000 BTU-per-hour input main burners with fuel gauge +Open cart design with six tool hooks and two large wheels.Built-in lid thermometer",Weber,Black,us,43 +B004H4WWA6,"Cuisinart CGG-180T Petit Gourmet Portable Tabletop Propane Gas Grill, Red",,"Portable gas grill with 145-square-inch grilling area and foldaway legs +Cooks 8 burgers, 8 steaks, 6 to 10 chicken breasts, or 4 pounds of fish +Powerful 5,500 BTU stainless-steel burner and even-heating porcelain-enameled grate +Aluminum legs and stabilizing feet set up in seconds; integrated lid lock keeps lid secure +Pronounced briefcase-style carrying handle; weighs 13.5 pounds",Cuisinart,"Petit Gourmet Tabletop Gas Grill, Red",us,44 +B00FDOON9W,"Weber 53060001 Q2000 Liquid Propane Grill,White",,"One stainless steel burner produces 12,000 BTU-per-hour to heat 280 square-inch total cooking area +Porcelain-enameled cast-iron cooking grates and cast aluminum lid and body +Fully assembled out of box. :Dimensions - Lid Closed and Tables Out (inches): 14.5H x 51.4W x 19.5D +Push-button ignition and infinite control burner valve settings +Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately)",Weber,white,us,45 +B083QN4Z6H,"Generep Upgraded Propane Gauge,Level Indicator Propane Cylinder Gauges 3 Colors Coded Universal Propane Gas Gauge Type -1 Connection for BBQ Gas Grill,Camper,Propane Tank - 2 Pack",,"Heavy duty 100% solid brass construction withstands weather, scratching, denting and corroding. +This propane tank gas Gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter. +High-quality brass construction gas gauge meter, you'll never have to worry about leaks or running out of propane again. +Monitors fuel level without removing the tank. Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low. +Coming With Dust Cover, No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.If the product is damaged due to packaging problems, please contact us to solve your problem.",Generep,,us,46 +B07YBLSF7M,"Monument Grills 13742 19inch Tabletop Portable Propane Gas Grill with Travel Locks, Stainless Steel Cooking Grates, and Built in Thermometer","Delivering the performance of a full-size grill, this portable gas grill from Monument Grills is the life of the party at tailgates, parties, and picnics. Two independently controlled burners ensure precise grilling over 207 square inches of cooking space. The lightweight design makes it easy to take your BBQ on the road with you.","★STAINLESS STEEL BURNERS-- Two independantly controlled 304 stainless steel burners with 15,000 BTU to deliver powerful heat and performance +★STAINLESS STEEL GRATES-- 430 stainless steel firebox and grates designed for even cooking +★LARGE COOKING AREA-- 207 square inches of total cooking area offers plenty of grilling space +★TRAVEL LOCKS-- 430 stainless steel lid with travel locks for easy transportation +★BUILT IN THERMOMETER-- Built-in center mounted thermometer monitors temperature inside the grill.",Monument Grills,Stainless Steel,us,47 +B07H636NBH,"Weber 61016001 Genesis II E-335 3-Burner Liquid Propane Grill, Black",,"This product is a Liquid Propane unit +Equipped with the powerful Gs4 high performance grilling system +Use the side burner to Simmer BBQ sauce or sauté veggies; Infinite control burner valves +Sear station creates an intense heat zone to quickly add sear marks on meat +Dimensions: Lid Open 62""H x 59""W x 31""D || Lid Closed 47""H x 59""W x 29""D || Primary cooking area 513 square inches || Tuck-Away warming rack area 156 square inches || Total cooking area 669 square inches",Weber,Black,us,48 +B07H5RHYCF,"Weber 62006001 Genesis II S-435 4-Burner Liquid Propane Grill, Stainless Steel",,"GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system +4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output +7mm diameter solid stainless steel rod cooking grates provide superior heat retention +Ample Cooking Surface. Up to 844 sq in, including the tuck-away warming rack. +Compatible with iGrill 3. The iGrill 3 monitors food from beginning to end, and notifies you once it has reached the perfect temperature",Weber,Stainless Steel,us,49 +B002BCSX0Y,"Weber 7170001 Summit S-470 4-Burner Liquid Propane Grill, Stainless Steel 580-Square Inch","Weber Summit stainless steel, liquid propane gas grill with tuck away rotisserie motor, stainless steel enclosed cart with stainless steel doors & chrome plated, cast aluminum handles & accent colored painted side and rear panels, 4 stainless steel burners, primary cooking area of 468-square-inch, warming rack area of 112-square-inches, for a total cooking area of 580-square-inches, 48,800 BTU-per-hour input main burner, 12,000 BTU-per-hour input flush mounted side burner,10,600 BTU-per-hour input infrared rear mounted rotisserie burner, 10,600 BTU-per-hour input sear burner, 8,000 BTU-per-hour input smoker burner & stainless steel smoker box, 2 stainless steel work surfaces, lighted control knobs, 6 tool hooks. Includes Weber cookbook and limited warranty. Liquid propane tank not included.","580-square-inch 48,800-BTU gas grill with stainless-steel cooking grates and Flavorizer bars ; 9 millimeter diameter stainless steel cooking grates +Front-mounted controls; 4 stainless-steel burners; Snap-Jet individual burner ignition system and serves 8-10 people +Side burner, Sear Station burner, smoker burner, and rear-mounted infrared rotisserie burner +Enclosed cart; built-in thermometer; requires a 20-pound LP tank (sold separately); LED fuel gauge - LP models only +Dimensions - Lid Open (inches)- 57.1 H x 66 W x 30 D.Dimensions - Lid Closed (inches)- 50.5 H x 66 W x 26.5 D",Weber,Stainless Steel,us,50 +B010ILB4KU,"Weber 51040001 Q1200 Liquid Propane Grill, Red",,"One Stainless Steel Burner Produces 8500 BTU-Per-Hour To Heat 189 Square-Inch Total Cooking Area +Porcelain-Enameled Cast-Iron Cooking Grates And Cast Aluminum Lid And Body +Built-in lid thermometer, folding side tables, glass-reinforced nylon frame and removable catch pan +Dimensions - lid closed and tables out (inches): 15.5 H x 40.9 W x 16.5 D. Easy-Start Electronic Ignition And Infinite Control Burner Valve Settings +Uses Disposable 14.1 Or 16.4 oz LP Cylinder (Sold Separately) and fully Assembled Out Of Box",Weber,Red,us,51 +B07H5Z54J8,"Weber 61015001 Genesis II E-315 3-Burner Liquid Propane Grill, Black",,"Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Black color and One Gas supply hose. Cover is not included +Grill dimensions: Lid Open - 62""H x 59""W x 31""D | Lid Closed - 47""H x 59""W x 29""D | Primary cooking area – 513 square inches | Tuck-Away warming rack area – 156 square inches | Wheel base dimensions – 38” from left to right and 29” from front to back +This Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks +iGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately) +The fuel gauge lets you see how much fuel is left in the tank (LP models only)",Weber,Black,us,52 +B077K1MK8N,"Weber 44010001 Spirit II E-210 2-Burner Liquid Propane Grill, Black",,"Your purchase includes One Weber Spirit II E-210 2-Burner Liquid Propane Grill in Black color +Grill dimensions: Lid Open - 57""H x 48""W x 26""D. Lid Closed - 44.5""H x 48""W x 27""D. Each cooking grate is 10.16” x 17.5"", for a combined measurement of approximately 20.32"" x 17.5"" +Propane gas grill works with Standard 20 lb LP tank. +Features: Porcelain-enameled, cast-iron cooking grates, porcelain-enameled lid, iGrill 3 compatible (accessory sold separately), Built-in lid thermometer, Fold-down left side table, Open cart design, Fuel gauge, Stainless steel heat deflector, Panel frame +Two burner grill is built to fit small spaces, and packed with features such as the powerful GS4 grilling system",Weber,Black,us,53 +B00AB7SDC4,"Huntington 30040HNT Liquid Propane Gas Grill,Black",,"Durable cast aluminum oven helps provide even heat distribution, is durable and will never rust +30,000 BTU stainless steel main burner system heats-up the grill quickly and efficiently, features a 5-year warranty +430 sq. in. of total grilling area; 300 sq. in. primary grilling area; 130 sq. in. warming rack +A 10,000 BTU burner allows you to prepare mouth-watering side dishes +Easy to maintain porcelain coated cooking grid",Huntington,Black,us,54 +B004BH7T5W,"Weber 7360001 Summit S-660 Built-In Liquid Propane Gas Grill, Stainless Steel",,"Island not included +Please reference building guide for Weber model number 7360001 prior to building island +9 mm diameter stainless steel rod cooking grates +Stainless steel Flavorizer bars +Snap-Jet individual burner ignition system",Weber,Stainless Steel,us,55 +B089D4KPM3,"KitchenAid 720-0953D Propane Gas Grill, Red + Stainless Steel",,"Equipped with 3 premium-grade Stainless steel main burners backed by a 10-year limited +Flush side burner cover creates extra workspace when the side burner is Not in use +Includes removable rear-acceSS catch pan, warming rack and caster wheels. +Convertible to natural gas with NG orifices included with grill; NG hose and regulator sold separately, compatible with NG hose and regulator kit model #710-0003",KitchenAid,Red + Stainless Steel,us,56 +B08F27PWFS,"Camplux Propane Gas Griddle Grill, 15,000 BTU Griddle Grill Combo, Portable Camping Griddle Station 17 Inches with 20 lb and RV Regulator for Camping, RV Picnic and Tailgating",,"【Grill and Griddle Combo】--180 sq. In. for grill and 255 sq. In. for flat top griddle (pre-seasoned with organic oil). Compact and lightweight enough to be taken anywhere. Ideal for RV traveling, outdoor cooking and fuelled Restaurant.[Ship From USA] +【Rapid Heating】--Unique U-shaped stainless steel burner, puts out over 15, 000 BTUs of heat, which holds heat well and distributes heat evenly. The temperature control and the food turned out juicy and delicious. +【Easy Cleaning】-- Flat top griddle is not easy to stick, enamel grill and grease cup are detachable for washing. Cleanup is fairly easy that using a scraper, soap water and paper towels after use. +【Anti-deformation Surface】-- 0.13 inches cold rolled steel griddle plate with 5 steel bars at bottom, ensuring not deformed at high temperature. +【Power Source Type】--Camping RV griddle can be connected to RV gas, 20 lb and 1 lb propane tank (Need Camplux RV propane quick 1 lb regulator T4-C-not included). We offer 1 year warranty and 24 shift hours customer service.",CAMPLUX ENJOY OUTDOOR LIFE,,us,57 +B01LPY9R8U,"DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Valves, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater",,"This Propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners. +High quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up. +Acme (Qcc1) connector with 2 male Pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need. +Provides secure and airtight connection between propane tank and gas grill. Easy and quick to install to propane appliance. +The splitter Y fittings used to connect regulators to tanks and hoses, simply attach y-splitter to fuel tank and have secure and stable gas flow to two grills.",DOZYANT,Propane Splitter,us,58 +B00FDOONEC,"Weber 50060001 Q1000 Liquid Propane Grill,Chrome",,"One stainless steel burner produces 8500 BTU-per-hour to heat 189 square-inch total cooking area +Porcelain-enameled cast-iron cooking grates and cast aluminum lid and body +Fully assembled out of box. Dimensions - lid closed (inches): 14.5H x 27W x 16.5D inches +Push-button ignition and infinite control burner valve settings. Fuel type - Liquid Petroleum Gas (disposable cartridge sold separately) +Uses disposable 14.1 or 16.4 oz. LP cylinder (sold separately). Grill must be preheated with burner on high for 10 to 15 minutes",Weber,Chrome,us,59 +B07L93KFNN,"Fuego F21C-H Element Hinged Propane Gas Grill, Dark Gray",,"New (May of 2020) Porcelain Enamel Lid to eliminate any paint peeling or bubbling +New easy to clean drop through residue removal system allows for grease to drop straight through to the residue tray +Upgraded 22, 000 BTU/hr. dual zone burner system for direct and indirect grilling. 500F in just 5 minutes and temps up to 650F overall +346 sq. In. Cast iron grilling grate with optional griddle and pizza stone kit +Compact 21"" X 21"" (Lid closed) footprint perfect for the Small patio/balcony",Fuego,Dark Gray,us,60 +B0070U0KXA,"Lion Premium Grills L75625 32"" Propane Grill",,"830 square inches of cooking surface +75,000 total BTUs +Premium solid stainless steel cooking grates +Size: 32? +stainless steel smoker head with polished edges",Lion Premium Grills,white,us,61 +B007WH7S4A,"DOZYANT Propane Tank Gauge Level Indicator Leak Detector Gas Pressure Meter for RV Camper, Cylinder, BBQ Gas Grill, Heater and More Appliances-Type 1 Connection",,"Compatible with all appliances with a QCC1 / type1 connection and up to 40 lb propane tanks +Long lasting high quality material provides secure, air-tight connection between propane tank +Monitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low +This propane tank gas gauge can be worked with propane tank cylinders, propane regulator with hose and propane adapter +No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances",DOZYANT,Black,us,62 +B078VTH8B7,"DOZYANT Propane Splitter, Propane Tank Y Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder, Work with BBQ Grills, Camping Stoves, Gas Burners, Heater",,"This propane Splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, no need for two fuel tanks, only have to use y-splitter and attach to fuel in order to connect fuel to two grills or burners. +Monitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low. +High quality 100% solid brass. Solid brass for durability and reliability, is extremely long Lasting, will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up. +Acme (Qcc1) connector with 2 male pipe thread. Our Splitter adapter has a check Valve so it can be used with only one hose connected upon you need. +The splitter Y fittings used to connect regulators to tanks and hoses, simply attach Splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances.",DOZYANT,Propane Gray-Splitter,us,63 +B0098HR0PY,"Weber 46110001 Spirit E-210 Gas Grill | Liquid Propane, 2-Burner | Black",,"Your purchase includes One Weber Spirit E-210 Liquid Propane Gas Grill. Cover is not included | Assembly required +Grill dimensions: Lid Open – 63"" H x 50"" W x 32"" D | Lid Closed – 45.5"" H x 50"" W x 24"" D | Primary cooking area – 360 square inches | Warming rack area – 90 square inches | Total cooking area – 450 square inches/20.4” W x 17.5” D | Weight – 113.8 +Heavy-duty caster wheels for easily moving your grill on grass or a patio +Built to last with heavy duty, porcelain-enameled lid and cook box that will not rust or peal over time +Six tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease Management system",Weber,Black,us,64 +B07H636NBG,"Weber 61025001 Genesis II E-315 3-Burner Liquid Propane Grill, Copper",,"Your purchase includes One Weber Genesis II E-315 3-Burner Liquid Propane Grill in Copper color and One Gas supply hose. Cover is not included +Grill dimensions: Lid Open - 62""H x 59""W x 31""D | Lid Closed - 47""H x 59""W x 29""D | Primary cooking area – 513 square inches | Tuck-Away warming rack area – 156 square inches | Wheel base dimensions – 38” from left to right and 29” from front to back +This Genesis II E-315 has a 39,000 BTU output, 3 stainless steel burners and 6 hooks +iGrill 3 Smart technology compatible, for perfectly grilled food (accessory Sold Separately) +The fuel gauge lets you see how much fuel is left in the tank (LP models only)",Weber,Copper,us,65 +B07H6193C8,"Weber 61011001 Genesis II E-310 Liquid Propane 3-Burner Grill, Black",,"This product is a Liquid Propane unit and you must have a liquid propane tank to be able to use this grill, 20lbs is the suggested tank size; If you have Natural Gas plumbed instead, please look at our selection of Natural Gas barbecues +Equipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000 +Porcelain-enameled, cast-iron cooking grates provide superior heat retention +Ample Cooking Surface. Up to 669 sq in, including the tuck-away warming rack. +The built-in fuel gauge lets you see how much fuel is left in the tank",Weber,Black,us,66 +B08GSDFS67,"AVAWING Propane Fire Pit Table, 42 inch 60,000 BTU Square Gas Fire pits with Glass Wind Guard w/Ceramic Tabletop with Waterproof Cover, Outdoor Companion, Tempered Glass Beads, Protective Cover","AVAWING gas fire pit table is perfect compliments any outdoor space like backyard, garden, courtyard, terrace and balcony of most family.No matter what season, it can give you a comfortable experience. Features: Brand new and high quality. Provides up to 60,000 BTUs of heat. Square stainless fire bowl. Features an easy-to-use electronic igniter. Durable and sturdy construction. Uses a standard propane tank. Easy to assembly. Specifications: Color: Black&Brown Dimension: 42""x20""x25"" Maximum Output: 60,000 BTUs Package include: 1x Fire pit table 1x Waterproof Cover 1 x Tempered glass beads 1 x Tempered Clear Glass Wind Fence guard 1 x High quality iron cover 1 x Instruction","🔥Fashion Design - This unique stove design blends the style and functionality of the terrace and backyard.When not burning with a fire pit, cover the lid and easily convert it into an outdoor dining table, coffee table or casual bar for more functional experience. +🔥High Quality - The gas outdoor fire table is Made of sturdy iron for impressive strength and durability; The burner and control panel are made of stainless steel for a longer working life; Ignition device for easy adjustment of flame and simple switch control. +🔥Safe and Spacious - Our gas fire pit table comes with 6 pcs installed table tiles. The built-in glass windshield adds a breath of air, keeping the fire spreading even in the breeze, and the spacious tabletop prevents children from coming into contact with the flame. +🔥Good Service - Any problems with our propoane fire pit table, please email us for solution without hesitation, you will get an excellent after-sales service within 24 hours.",AVAWING,Black,us,67 +B07QGL9CPQ,"Pantin (Propane Gas) 13"" Cast Iron Chamber Gas Compact Single Burner Commercial Restaurant Wok Range - 128,000 BTU","Pantin PCWR-D13 compact single burner 13"" cast iron chamber (Liquid Propane Gas) wok range is perfect for your delicious meals whether it is a restaurant, food truck or catering. This item is default equipped with a16 Tip Jets Burner with Central Pilot & Cap - 128,000 BTU. Easy access sauce shelf in the front of wok range. Stove top edges are formed with round shaped corners. It has individual “L” shaped handle gas valves that provide easy access for knee operation which ensures hands-free cooking. 100% Stainless steel removable drip tray under each burner, for grease, and waste. Special Notice for Freight items: 1. Delivery address (a valid commercial business address) is required. 2. If an item ships via LTL freight delivery, a valid phone number will be required so that the carrier can contact you to schedule delivery appointment. 3. The item is delivered with curbside delivery only, NO inside delivery. 4. Receiver signature will be required. Please make sure to have available help on hand to assist you with moving the item to the desired location. 5. Freight items must be inspected upon delivery. If an item arrives damaged or broken when the carrier delivers, the customer must take pictures of any damage to the pallet or equipment and refuse the delivery. Please write the damage note on the shipping receipt and send it back to the freight carrier. 6. Please send a message to us with damaged pictures via Amazon message center immediately. We will help you to find a fair resolution. ** This is a custom made item which it can not be cancelled or returned.","16 guage one piece stainless steel stove top extended to front and two sides with forming technology. +Propane Gas 13"" Chamber; Total BTU 128,000; Default equipped with a 16 Tip Jets Burner with Central Pilot & Cap (Volcano Burner, tall flame, focused high heat). +100% stainless steel and heavy gauge reinforced steel angle chassis. +Heavy gauge stainless steel frame construction for the entire unit, which is designed for extra strength and durability. +Cast Iron wok chamber is manufactured with a high resistence towards fire. Overall dimensions: 16""W x 18""D x 30""H; We provide curbside delivery only.",PANTIN,Silver,us,68 +B07D1G6QQ1,"MCP Island Grills Modular 3 Piece Island Electric and Propane or Natural Gas BBQ Outdoor Stainless Steel Grill Kitchen, with Single Wine Refrigerator, Sink, Rotisserie, Black Marble Top and FREE Protective Canvas Cover","Great addition to any backyard! Large 3 Piece setup includes a single refrigerator / wine cooler section, an 8 zone BBQ grill with rotisserie (motor included), and a sink with storage! Made of high grade #304 stainless steel, this is designed to last. Latest model includes a 12,000 BTU ceramic back burner for the rotisserie, along with a skewer. Wine Cooler 62L Size, holds ~25+ 750ml Wine Bottles. Each section is on castors and can be moved. Comes Standard for Propane usage (Please let us know if Natural Gas conversion info is needed). Lockable clamps included to secure all together if desired. Fully upgraded with all options included Natural Black Marble Top. We are also including a full size protective canvas cover free of charge. Certification: CSA, ISO9000 , ISO14000, ISO18000. 1 Year Warranty, parts only. Standard delivery is curbside delivery for residential addresses via liftgate. Please read our Amazon storefront info and shipping policies, as it may not be possible for us to ship this item to your location.","304 Stainless Steel, High Quality Black Marble Top, 8 Zone BBQ Grill, Rotisserie, Single 62L Wine Cooler/Refrigerator and Modular Sink Section. +Comes Standard for Propane usage (Please let us know if Natural Gas conversion info/tool is needed), 12,000 BTU Rotisserie Burner, 72,000 BTU BBQ Burners, Igniter, Rotisserie comes with 36"" skewer and motor. +Large 692 Square Inch Grill Cooking Surface and 272 Square Inch Warming Rack, Full Size Protective Canvas Cover Included Free. +Power Req: 110v/60hz. Overall Size: 154"" W (122.5"" W without side tables installed), 24.75"" D x 35.5"" Countertop H. Overall Height 52"" (Top of faucet head). Main Grill Section: 55"" W x 46"" H (overall) x 26.5"" D (Including knobs). Countertop 35.5"" H x 24.75"" D. +Refrigerator/Wine Cooler Section: 49.5"" W (with Side Table) or 33.5"" W (without Side Table) x 25"" D x 35.5"" H. Sink Section: 49.25"" W (with Side Table) or 33.5"" W (without Side Table) x 28"" D x 35.5"" Countertop H or 52"" H to top of faucet. Ships LTL Freight with curbside delivery via lift gate or dock unload.",MCP Island Grills,Stainless Steel,us,69 +B07S1KMJQH,"Best Choice Products 52in Gas Fire Pit Table, 50,000 BTU Outdoor Wicker Patio Propane Firepit w/Aluminum Tabletop, Glass Wind Guard, Clear Glass Rocks, Cover, Hideaway Tank Holder, Lid - Brown","Specifications:
            Overall Dimensions: 52""(L) x 34""(W) x 24.75""(H)
            Dimensions w/ Glass Partition: 52""(L) x 34""(W) x 30.25""(H)
            Glass Partition: 27.75""(L) x 12""(W) x 5.5""(H)
            Weight: 73 lbs.
            Table Material: Aluminum, Wicker
            Cover Material: 300D Oxford Fabric
            BTU: 50,000
            Assembly required (with instructions)
            NOTE: Works with standard 20-pound propane tanks

            Package Includes:
            Fire pit table
            Glass rocks
            Glass wind guard

            BCP SKU: SKY5268

            ","ELEGANT OUTDOOR FURNITURE: The perfect combination of style and functionality on your patio or in the backyard, with a beautiful wicker design and aluminum tabletop +GLASS WIND GUARD: Ignite a warm, inviting flame over the sparkling glass rocks and watch it burn all night, as an included glass wind guard adds elegant appeal while keeping the fire going even during a breeze +CONVENIENT HIDEAWAY TANK HOLDER: Intelligently crafted with a pullout gas tank holder, so you can change your propane tank in a flash and tuck it away to stay completely out of sight; works with a standard 20-pound propane tank at 50,000 BTU +ENJOY MORE TABLE SPACE: Remove the wind guard, then take the lid off the built-in side hooks and place it over the pit to create more table space for family and friends to enjoy a good meal while sitting around the fire +DURABLE WICKER, WITH COVER INCLUDED: High-quality, weather-resistant wicker is woven over a sturdy, aluminum frame, and a durable fabric cover is included to ensure this fire pit table will withstand the elements; OVERALL DIMENSIONS: 52""(L) x 34""(W) x 24.75""(H)",Best Choice Products,Brown,us,70 +B00KCNV9KU,Broil King 922164 Baron 440 Liquid Propane Gas Grill,,"4 stainless steel Dual-Tube burners deliver up to 40,000 BTUs heating the grill quickly and evenly +10,000 BTU powerful side burner. Cooking Surface- 17.48 inch Width, 25.67 inch Length +644-sq in total cooking area, including 444 sq. in of primary cooking space, +Reversible heavy-duty cast-iron cooking grids / Stainless steel Flav-R-Wave cooking system / Linear-Flow valves with 180 degree Sensi-Touch control knobs +Durable stainless steel side shelves fold-down / Level Q casters stabilize the grill on uneven surfaces",Broil King,Black,us,71 +B08BF7G65N,"32"" Propane Gas Fire Pit Table 50,000 BTU with Glass Wind Guard, 2021 Upgrade, Auto-Ignition CSA Certification Outdoor Companion",,"【Easy to Assemble】 This upgraded this 32 inch fire pit table to meet customers' needs. 2021 Upgrade fire pit table have reinforced panel and burner with pre-attached hose & regulator. All these bring us better experience of installation and strong and sturdy base. +【Excellent Accessories】Tempered glass wind guard and 6.6 lbs lava stone set creating a warm and romantic bonfire atmosphere; Offer metal fire plate cover: when not use it as a fire pit, it can be easily converted into an outdoor table. +【Safe And Test】This 32 inch outdoor fire table is CSA certified. This propane fire pit table‘s heat output is 50,000 BTU. Every fire table's Ignition function is tested before leaving the factory and ignition device can easily adjust flame. +【High-class Materials & Quality Assurance】The fire table uses durable materials and paint spraying craftsmanship to prevent damage. The burner are made of stainless steel for a longer working life. +【Service】It is easier to turn on the ignition switch after pressing and rotating for a few seconds to ensure normal operation. You can contact us on Amazon anytime.",SNAN,,us,72 +B08T21432X,"Black Stainless Steel 8 Burner 3 in 1 Island BBQ Outdoor Electric Grill Kitchen, Propane or Natural Gas, with Sink, Side Burner, LED Lights on Knobs, and Free Protective Grill Cover","*New Black Stainless Steel Upgrade. Works with propane or natural gas! This unique Black Stainless Steel 3 in 1 Outdoor Grill setup includes a built in sink model + built in side table cabinet module. All 3 sections bolt together to form a solid 1 piece unit. Includes Faucet + upgraded 3 piece drain kit, drain plumbing + water line, high quality stainless steel rotisserie package, side burner + rear infrared burner, plus thick waterproof grill cover. *Right out of the box it is plug and play with propane. For use with NG, some fittings need to be removed. (We will include instructions) Thick heavy duty lockable castors included on all sections, makes moving it very easy. Latest 2021 with black stainless steel + upgraded interior lighting + 8 exterior blue LED lights make it easy to see at night. New 2021 models now also use all metal knobs.","High Quality Black #201SS Stainless Steel Construction, Stainless Steel Burners and Flame Guards, Rear back infrared sear burner, 8 Zone BBQ Grill and Rotisserie (Skewer, Motor, Bracket, all parts included). Works with LPG propane or natural gas! +Blue LED Lighting above each burner knob and inside lights, Electronic Ignition, Upgraded Metal Knobs, Sink Section, 2 stainless steel grates + 1 cast iron sear pan. Main Grill Fully Assembled. Assembly Required on Sink and Side Table Extensions, 1 Year Seller Warranty (Parts only). Wide Thick heavy duty lockable castors included on all sections, makes moving it very easy. Certification: AGA, CE, ETL, CSA, ISO9000, ISO14000, ISO18000. +6 Burners each at 11,000 BTU's, 1 Cast Iron Side Burner at 12,000 BTU's, 1 Infrared Rear Burner at 12,000 BTU's, Easy to clean slide out stainless steel grease pan, Grill Section Canvas Cover (while supplies last). Net Weight: ~350lbs. Crated Weight 550lbs (Ships double crated with wood on all sides). +Overall Exterior Grill Size: 89.5"" W x 25"" D x 47"" H (Includes handles, knobs, and towel racks on left / right sides and height to top of grill lid), Width is 84.24"" if you do not install the side towel racks on left / right side. Counter depth: 22.75"" not including the handles and knobs. Counter height: 35.5"", With the grill lid open overall height: 60"". If the side sink and side table are not installed Width: 58"". +Sink Basin Size: 10.5"" Wide x 12.5"" Deep x 7"" Tall. Rotisserie Size: Actual rod is 44"" long, but 38"" is usable. Includes all hooks, weights, motor, and bearings so its plug and play. Grill Surface Sizes: Main grill surface is 38"" Wide x 18"" Deep. Warming rack on top is 37.5"" Wide x 6"" Deep. Side Burner: 13.25"" Deep x 10.5"".",MCP Island Grills,Stainless Steel,us,73 +B000BWFTJE,"King Kooker 24WC 12"" Portable Propane Outdoor Cooker with Wok, 18.5"" L x 8"" H x 18.5"" W, Black",,"Sport Type: Camping & Hiking +Country of origin : United States +Package weight : 10 Lbs +Product type : Outdoor Living +Portable propane outdoor cooker with 24-inch bolt-together frame",King Kooker,Black,us,74 +B01BEY69FA,"Peaktop HF09501AA Round 40,000 BTU Propane Gas Fire Pit Stone Look for Outdoor Patio Garden Backyard Decking with PVC Cover, Lava Rock, 28"" x 28"", Gray",,"STYLISH DESIGN: This stylish contemporary fire pit is a wonderful addition to any patio and is sure to provide you and all of your guests with warmth in a natural space. +INCLUDES: 6. 6 lbs Lava Rock and PVC Cover +Adjustable flames are the perfect addition to light up the garden. +BURNING AREA: (W) 16. 93"" x (L) 16. 93"" x (H) 2. 95""; BTU: 40, 000; ETL-listed +DIMENSIONS: (W) 28"" x (L) 28"" x (H) 9. 05"" SOLD SEPARATELY: Matching Gas Storage that double up as a statement furniture piece. Can hold up to 20lb gas bottle. Search for HT22401AA",Peaktop,Gray,us,75 +B074QQW4PC,"Cuisinart CGG-7400 Propane, 54 Inch, Full Size Four-Burner Gas Grill",,"COOKING POWER: Four 11, 000 BTU burners provide a total 44, 000 BTUs of cooking power +COOKING SPACE: The grill is equipped with 443 square inch of cooking space with an additional 167 square inch warming rack +CAST IRON GRATES: Heavy-duty cast iron cooking grates are great for retaining heat +PREP SPACE: Two 18"" x 13"" side tables provide ample space for food prep +CONSTRUCTION: Stainless Steel lid and control panel. Actual product may vary from images shown due to product enhancement.",Cuisinart,Full Size Four-Burner Gas Grill,us,76 +B00AB7SD9W,Huntington 24025 Liquid Propane Gas Grill,,"Die cast aluminum oven and black powder ccoat control panel and cart with weather resistant shelves +Porcelain coated wire cooking grids and stainless steel cooking system +Sure-Lite push button ignition system and Accu-Flow burner valves +Heat resistant front mounted handle +EZ-Q-Cart design and 5 stage quality enamel paint process",Huntington,,us,77 +B00F3BHB80,"Cuisinart CGG-306 Chef's Style Portable Propane Tabletop, Professional Gas Grill, Two-Burner, Stainless Steel",,"FAST AND EASY SETUP: The grill requires no assembly and can be set up and ready for grilling in under 10 minutes without the need for tools or matches. +TWO STAINLESS 20,000 BTUS BURNERS: A powerful two-burner system with electronic ignition and dedicated control knobs for each stainless-steel burner. Each stainless-steel burner provides 10,000 BTUs and allows for simultaneous grilling. +STAINLESS GRATE PERFECT FOR LARGE CUTS OF MEAT: Stainless grates provide top performance of a large grill in a portable one. Foods cook evenly with a two-burner system, making it ideal for cooking large cuts of meat. +LIGHTWEIGHT AND PORTABLE: The stainless steel grill weighs only 22 lbs. making it lightweight and small enough to fit in a compact car. The locking cover, folding legs and a comfortable carrying handle makes it easy to take anywhere. Two independently controlled burners allow you to set different heat zones for cooking all your barbeque foods and the built in thermometer monitors the grill temp for you +IDEAL HEAT CONTROL: An integrated thermometer and adjustable burner knobs help control the heat of the grill. A twist-start automatic ignition means that matches are never required. Works with a 20 lb. tank of propane (not included).",Cuisinart,"Professional Gas Grill, Two-Burner, Stainless Steel",us,78 +B07ZZM9S3B,"Napoleon R365SBPK-1-OB Rogue 365 Side Burner Propane Gas Grill, sq. in + Range, Black",,"The Rogue 365 features 2 burners, 32,00 total BTU, and 495 square inches of total grilling area as well as a range gas side burner +Precise heat control allows barbecuers to grill and roast at lower temperatures or turn up the heat for searing +Use the range side burner to prepare sauces and side dishes while barbecuing for cooking convenience +The stainless steel cooking grids are virtually maintenance free +Durable black porcelain enamel lid and doors with stainless steel control panel stand up to any weather",Napoleon,Black,us,79 +B01J3S1NWI,"Cuisinart CGG-059 Propane, Grillster 8,000 BTU Portable Gas Grill",,"146-SQUARE-INCH ENAMELED STEEL COOKING GRATE: 146-square-inches of enameled steel grates give you a spacious cooking surface and is also dishwasher safe, making cleaning the grates a breeze use after use. +8, 000 BTU: burner works with 1 lb. Propane tank: features an 8, 000 BTU burner, a push to Ignite start button, and is compatible with a 1 lb. Propane tank giving you ultimate portability. +COMPACT DESIGN: The grill measures 19 x 11. 5 x 10 inches and weighs only 10 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, Tailgating and more. +NO ASSEMBLY: The grill requires no assembly and can be set up and ready for grilling in under 5 minutes without the need for tools or matches. +LOCKING LID: The lid latches down allowing for quick and easy transport",Cuisinart,"Grillster 8,000 BTU Portable Gas Grill",us,80 +B07NBNPSLG,"Best Choice Products 35x35-inch 40,000 BTU Square Propane Fire Pit Table for Backyard, Poolside w/Gas Tank Storage Side Table, Weather-Resistant Pit Cover, Glass Rocks - Gray","Highlights:
            Elegant Square Design
            Easy to Use
            Handles for Portability
            Includes Matching Side Table/Tank Storage
            Weather-Resistant Pit Cover

            Specifications:
            Overall Dimensions: 34.75""(L) x 34.75""(W) x 12""(H)
            Propane Tank Housing: 15.5""(L) x 15.5""(W) x 20.5""(H)
            Weight: 70.6 lbs.
            Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
            Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
            BTU: 40,000
            Note: The propane tank should be placed under the side table (tank not included)
            Assembly required (with instructions)

            Package Includes:
            Fire pit
            Side table
            Glass Rocks
            Pit cover
            Hose

            BCP SKU: SKY5230


            Ships and arrives in 2 separate boxes. Delivery times may vary per box.","MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table) +PERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece +EASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included) +HIGH-QUALITY COMPOSITION: Simple, elegant square design, made of durable magnesium oxide with a concrete-style finish to look beautiful in any backyard setting +TRADITIONAL FIRE PIT TABLE: Classic and clean concrete-style square design adds style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 34.75""(L) x 34.75""(W) x 12""(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.",Best Choice Products,Gray,us,81 +B0836CBZN1,"GASPRO 1500℉ Quick Cooking Propane Infrared Steak Grill with Foldable Dustproof Panel, 304 Stainless Steel, CSA Certified","The GASPRO infrared propane grill is the newest trend in backyard grilling. It gives every steak the perfect cook in seconds. Keeping all the juices and flavor inside, and fat crispy outside.

            You can do so many dishes in the different heat zones:
            Meat: sous-vide steaks and chops, ribeyes, chicken thighs and kabobs.
            Seafood: shrimp, skewers, salmon filets.
            Veggies: corn, potato chips, large pieces onion.
            You can also make sandwiches, nachos, enchiladas, hamburgers.

            The GASPRO infrared grill with easy-start electronic ignition and infinite control burner valve settings. Warm-up time is fast (about 4mins) , so you can whip up a quick meal less than 30mins. For a single person or a couple this is great, or even as a complement to a larger grill.

            GASPRO infrared grill unique designed double-use connection:
            1lb connection and standard grill connection (3/8” male flare), the two of the connection universal for most propane hose. Perfect for patio backyard grilling, RV boats, outdoor camping.
            1.Uses disposable 16.4 oz LP cylinder (sold separately)
            2.Uses big LP propane tank. (Propane hose sold separately)
            3.Uses RV Propane tank. (Propane hose sold separately)

            Product Specification:
            Material: 304 Stainless Steel
            Flow Capacity: 9000 BTU/hr
            Fueled Type: LP Gas Propane
            Ignition Type: Push Button Electronic Igniter
            Product Dimension: 9.3"" W x 30.7"" D x 16.3"" H
            Product Weight: 19.4 lbs
            Temperature Range: 200-1500 Fahrenheit

            Package Included:
            Rod Grid x 1
            Grease Tray x 1
            Wooden Grid Tool x 1
            Silicone Oven Mitts x 2
            Sheet Metal Cooking Grid x 1
            Product Manual x 1

            Warning:
            OUTDOOR USE ONLY
            ","Boasts the infrared cooking system reaches an incredible 1500°F, serves up steakhouse-quality steaks about 2 min per side. +6-notches in the grill rack determined the grate's proximity to the infrared heat source, offer different heat zones for meat, seafood, and veggies. +Gives you multiple connection options, built-in a standard 3/8” male flare fitting in the valve and regulator. It allows you to connect any 3/8” female flare hose to a big propane tank. +Opening the front panel that can temporarily place freshly cooked food during the cooking process. Covering the front panel to keep the internal of the grill clean when you are not using it. +Pass CSA certified, safety use for outdoor backyard grilling, RV traveling, camping. Constructed of premium 304 stainless steel, sturdy and rustproof, easily clean after usage.",GASPRO,Silver,us,82 +B07NBM6V8X,"Best Choice Products 48x27-inch 50,000 BTU Outdoor Patio Rustic Farmhouse Wood Finish Propane Fire Pit Table and Gas Tank Storage Side Table w/Weather-Resistant Pit Cover, Glass Rocks - Brown","Highlights:
            Elegant Rectangular Design
            Easy to Use
            Handles for Portability
            Includes Matching Side Table/Tank Storage
            Weather-Resistant Pit Cover

            Specifications:
            Overall Dimensions: 48""(L) x 27.25""(W) x 13.5""(H)
            Propane Tank Housing: 15.5""(L) x 15.5""(W) x 20.5""(H)
            Weight: 84 lbs.
            Tank Storage/Pit Material: Magnesium Oxide (MgO), Stainless Steel
            Pit Cover Material: Water/Weather-Resistant 210D Oxford Fabric
            BTU: 50,000
            Note: The propane tank should be placed under the side table (tank not included; cover for side table not included)
            Assembly required (with instructions)

            Package Includes:
            Fire pit
            Side table
            Glass rocks
            Hose
            Pit cover

            BCP SKU: SKY5229


            Ships and arrives in 2 separate boxes. Delivery times may vary per box.","MULTIFUNCTIONAL SIDE TABLE AND TANK STORAGE: The side table can conveniently hold drinks, food, and decor, and doubles as storage for a propane tank (NOTE: The propane tank should be placed under the side table) +PERFECT FOR ENTERTAINING: Ideal for gathering around with friends and family for warmth, good conversation, roasting marshmallows, and making s'mores, it makes for the perfect outdoor centerpiece +EASY TO USE: Simply turn the knob to create flames that radiate brightly against the glass rocks to provide a pleasant ambiance. A weather-resistant pit cover protects it from the elements, and a hose is included for the propane tank. (NOTE: Propane tank is not included; Cover for side table is not included) +HIGH-QUALITY COMPOSITION: Simple, elegant rectangular design, made of sturdy steel and cast wood with a natural wood finish to look beautiful in any backyard setting +TRADITIONAL FIRE PIT TABLE: The fire pit's classic, farmhouse slab-style design adds rustic style to any outdoor area, with built-in side handles to easily move it for a change of scenery; OVERALL DIMENSIONS: 48""(L) x 27.25""(W) x 13.5""(H); Ships and arrives in 2 separate boxes. Delivery times may vary per box.",Best Choice Products,Brown,us,83 +B078FBVGX6,Broil King 814154 Gem 320 Liquid Propane Grill,,"24, 000 BTU main burner output 426 sq. In./ 2747 sq. Cm. Total cooking space 294 sq. In./ 1, 896 sq. Cm. Primary cooking space cast iron cooking grids three stainless Steel Dual-Tube burners +Stainless Steel Flav-R-Wave cooking system linear-flow valves with 180 Degree Sensi-Touch control sure-lite electronic ignition system deluxe Accu-Temp thermometer +Therma-cast aluminum cook box drop-down resin side shelves with integrated tool hooks Black powder-coat pedestal base with metallic charcoal insert +Large 7""/ 18 cm crack-proof wheels rust resistant zinc coated Steel components Premium powder-coat epoxy paint finish",Broil King,,us,84 +B07W4JX6QS,"Kohree Propane Splitter, 2 Way Propane Tank Y Splitter Adapter with Gauge, LP Gas Tee Connector Adapter for 20lb Propane Cylinder, Heater, Gas Burner, Camping Stove, BBQ Grill, RV Camper","Kohree Propane Splitter, Y Propane Tank Splitter Adapter with Gauge, 2 Way LP Gas Adapter Tee Connector for 20lb Propane Tank Cylinder Work with BBQ Grills, Camping Stoves, Gas Burners, Heater
            This Kohree Propane Splitter makes your life easier in a safe way. By connecting to QCC1/Type 1 connections, it can perfectly split gas for two devices without any tools. When you have a BBQ party with friends and families, the propane splitter is practical enough for you to barbecue or cook different food on two different appliances, also suitable for heaters, gas burners, camping stoves and more.
            PREMIUM
            Made of 100% high quality brass, it is extra durable and strong for long-term usage.
            Two outlet support QCC1 (Type 1) connections, offering a safe and tight gas connection between propane tank and gas devices.
            CONVENIENT
            The indicator is designed with 3-level (Red- empty, Yellow-low, Green-Full), which you can monitor the gas level clearly without disassembling the tank at a glance.
            Tips:
            1. The indicator could not show the exact content of the tank but give an approximate value.
            2. In hot weather, the pressure increases and in cold weather, the pressure decreases, so the same amount of propane shows different levels on the meter.
            Safe Protection
            Acme (QCC1) connector with 2 male pipe threads, it can be easily and quickly installed in gas devices. It also provides overcurrent protection in case of gas pipeline damage and thermal protection in case of fire.
            Easy Installation
            With the plastic hand wheel, you can easy to tighten the tank adapter. No other tools required. Save your time!
            Wide Application
            Supporting POL Male and QCCA End connections, it can be used with 1 or 2 hoses, satisfying your different needs.
            ","【2 Way Propane Hose Splitter】: Comes with Acme QCC1 (Type 1) connector with 2 male pipe threads, and a check valve, so it can be used with only 1 hose to avoid gas leakage. +【Clear Gauge Level Indicator】 : Designed with 3-level (Red- Empty, Yellow-Low, Green-Full) to help you monitor the gas level clearly without disassembling the tank. +【Premium Quality】: This propane hose y splitter adapter is made of 100% brass, extra durable and reliable, ensuring long-tern using. +【Easy Installtion】: No other tools required, simply use y propane splitter to connect regulators to tanks and hoses. Makes your cooking easier. +【Wide Application】: This propane tank gauge is compatible with QCC1/Type1 Connection, good for heaters, fryers, BBQ gas grills, camping stoves, propane smoker, lanterns, tabletop grills and more propane appliances.",Kohree,2 Way Propane Tank Y Splitter Adapter with Gauge,us,85 +B07M6V9BMW,"Napoleon PRO500RSIBPSS-3 Prestige PRO 500 RSIB Propane Gas Grill, 900 sq.in. + Infrared Side and Rear Burners, Stainless Steel",,"80, 000 BTU's, 4 Stainless Steel main burners, 900 in² total cooking area +Dimensions: 66.50"" W x 25.50"" D x 51.75"" H (Lid Closed) | Cooking Area: 17.75 x 28 in +Led Spectrum night light control knobs and safety feature +Lift ease roll top lid. double doors for storage and easy roll locking casters +Infrared rear rotisserie burner",Napoleon,Stainless Steel,us,86 +B01I32H5QI,"Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 12-inch","This product is a 12"" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
            Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
            Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
            Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 92,000.","Fire Pit Burner Ring, Diameter 12-inch +Ring Burner Material: Heavy duty warp-resistant steel with high temperature black paint, Female 1/2 Inch Gas Inlet, 92,000 BTU Max +Stylish Design: New cross-bar design for better gas distribution and great look for your fire pit +Applicability: Propane (LP) +Package Contents: Round 12-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 18 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual",Stanbroil,12-Inch,us,87 +B07ZQBMV2Y,"Mont Alpi 805 Deluxe Propane Gas Island Grill W/Beverage Center, Infrared Side Burner, Rotisserie Kit - MAi805-DBEV","Mont Alpi 805 Deluxe Propane Gas Island Grill W/ Beverage Center, Infrared Side Burner, & Rotisserie Kit - MAi805-DBEV. MAi805-DBEV. BBQ Grill Islands. Mont Alpi Deluxe Island Grills are the ultimate cooking station built to bring together your whole outdoor kitchen. The 805 Deluxe Island Grill with Beverage Center is truly all you need for the ultimate outdoor kitchen experience. These Island Grills are constructed of all 304 stainless steel components, include large cabinets, and beautiful white faux granite waterfall counter tops. This version includes a multi-use beverage center, featuring a sink and refrigerator cabinet. The 805 Deluxe Island Grill features as its centerpiece a 6 burner, 115,000 BTU Propane Gas Grill. The lid is double lined for superb heat retention and has a temperature gauge on front. The main cooking area measures 38 x 18 inches, and consists of 8mm stainless steel cooking grids. A stainless steel warming rack is also standard. Beneath the cooking surface are 6 double layered stainless steel Heatwave flame tamers. They rest above the 6 tubular stainless steel high-efficiency 12,000 BTU burners. In the rear of the grill is a ceramic infrared burner for the included heavy duty rotisserie kit. The interior of the grill is lit by dual halogen lights, perfect for cooking after dark. The front control panel houses the control knobs, lit by blue LED light, the electronic ignition switch, and a bottle opener for having a drink while tending the grill. The pull-out grease tray makes cleaning up after an afternoon of barbecuing a snap. Below the grill are two large easy-glide drawers, useful for storing tools, prep items, and more. On the left side of the island, built into the faux-granite counter top, is a ceramic infrared side burner complete with stainless steel cooking grid. It is height adjustable for extra temperature control. This super hot burner is perfect for searing, boiling, and heating large sauce pans. The large side cabinets offer ...","All components are constucted of 304 stainless steel for durability and longevity +Large storage cabinets and drawers for plentiful space to hold tools, accessories, and a propane tank +Height adjustable ceramic infrared side burner is perfect for searing, boiling, or heating large saucepans +Faux-granite counter tops for prep and storage space while looking stylish +Includes built-in sink and outdoor refrigerator for added functionality and entertainment value",Mont Alpi,Stainless Steel,us,88 +B07VLJZVB2,"BLAZE GRILLS 40 Inch 5-Burner LTE Propane Grill BLZ-5LTE with Made in USA 32"" Combination Door/Drawer Package Deal","BLAZE GRILLS BLZ-5LTE 40 Inch 4-Burner Liquid Propane Grill + Made in USA BOB 32"" Combination Door/Drawer Package Deal. Blaze introduces an affordable commercial style grill that was designed with your outdoor BBQ desires in mind. Blaze gas grills feature precision cut, 304 stainless steel components which bring the promise of lasting durability to your outdoor BBQ! This model takes things to the next level with our signature SRL led accent lights and integrated halogen hood lighting. Blaze gas grills have a lifetime warranty that warrants against any defects in the manufacturing and workmanship of the main burners, cooking grids, body, flame tamers, heat zone separators, warming rack, and control valves. While ignition, electronic, and lighting systems are covered for one (1) year after the date of purchase. Grills must be registered within thirty days for the warranty to apply.","Blaze Premium LTE 40-Inch 5-Burner Built-In Propane Grill With Rear Infrared Burner & Grill Lights - BLZ-5LTE2-LP. **Cutout: 38.375"" W x 21.25"" D x 8.50"" H +Best of Backyard Series USA MADE 304 Stainless Steel 32"" Combination Door/Drawer Combo. Cutout: 30.125""W x 19.125""H x 21""D +Patented Triangle-shaped Searing Rods create an ideal surface for cooking and produce impressive sear marks +Heat Zone Dividers allow you to cook multiple types of food at the same time using different temperatures +Full-width, 14-gauge stainless steel Flame Stabilizing System covers the entire grilling area to improve flavor, minimize flare-ups, and reduce cold spots",Blaze Grills,,us,89 +B01I32H7NY,"Stanbroil LP Propane Gas Fire Pit Burner Ring Installation Kit, Black Steel, 18-inch","This product is a 18"" Heavy duty warp-resistant steel with high temperature black paint. Double Fire Pit LP Propane Gas Burner Kit from Stanbroil factory.
            Fire Pit Rings are the quickest and most economical way to build a fire pit. Create the feeling of a world class resort in your own back yard with this Fire Pit Burner Rings. Enjoy the dancing warmth of a dramatic and luminous campfire flame while gathering around your fire pit with family and friends.
            Heavy duty warp-resistant steel with high temperature black paint material will remain trouble free in the outdoors. Fire rings kits are designed to be used only in an outdoor fire pit using propane fuels and also be used for gas logs, lava rock, fire glass etc.
            Flame height is directly related to the BTU output of the unit. For maximum flame height, allow for BTU 147,000.","Fire Pit Burner Ring Diameter 18-inch +Ring Burner Material: Black Steel, Female 1/2 Inch Gas Inlet, 147,000 BTU Max +Stylish Design: New cross-bar design for better gas distribution and great look for your fire pit +Applicability: Propane (LP) +Package Contents: Round 18-inch Burner with 1/2 inch female Inlet includes inlet plug and wrench; Air mixer& fittings; Shut-off Valve Kit(Polished Chrome Flange & Key); 24 Inch Flex Gas Line; a 1 PSI x 4 ft hose and Regulator; Installation Manual",Stanbroil,18-Inch,us,90 +B07MHT9TQX,"Napoleon BIP500RBPSS-3 Built-in Prestige 500 RB Propane Gas Grill Head, sq.in. + Infrared and Rear Burners, Stainless Steel",,"66,000 BTU's +4 Stainless Steel Main Burners +760 in Total Cooking Area +NIGHT LIGHT Control Knobs with SafetyGlow +7.5 mm Stainless Steel Iconic WAVE Cooking Grids",Napoleon,Stainless Steel,us,91 +B003WKUNLQ,"Bull Outdoor Products BBQ 47628 Angus 75,000 BTU Grill Head, Liquid Propane",,"75, 000 BTU's of cooking power, heats up fast and can easily sear your favorite cuts of meat +4 Cast Stainless Steel Bar Burners for years of even heating and trouble free cooking +304 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates +810 sq. Inches of cooking surface including warming rack +Reliable Piezo igniters on every valve plus twin lighting system",BULL,Metallic,us,92 +B00ISKDOES,Coleman Party Propane Grill,,"Compact, portable BBQ grill ideal for camping, picnics, and tailgating +Delivers 8,000 BTUs of cooking power across grilling surface +InstaStart push-button ignition for convenient matchless lighting +PerfectFlow technology provides consistent performance even in extreme conditions +Detachable legs fit inside the grill for easy transport and storage. Spacious 122 sq.in. cooking area",Coleman,,us,93 +B09CKPH9ZJ,"Royal Gourmet ZH3002SC 3-Burner 25,500-BTU Dual Fuel Propane and Charcoal Combo with Protected Grill Cover, Silver",,"Ample Cooking Space: Includes 576 sq. in. porcelain-coated cast iron cooking grates, 164 sq. in. stainless-steel warming racks, fit around 33 patties. Two fireboxes (same size), made of organic silicone material, access dual cooking ways. +2 IN 1 Grill: 3-Burner Propane and Charcoal Grill Combo, this grill delivers excellent performance and offers different favor food at the same time without any hassle. +Heat Control System: Height-adjustable charcoal pan and fine-tunes temperature control via the crank on front panel to adjust the best heat for cooking. +Cabinet Design: Bottom cart with double-layer stainless-steel doors, integrates tank storage base (for tank up to 20lb), stores large grill tools and prevents them from messing up. +Protected Grill Cover Included: Together with waterproof cover to protect grill against any bad weather and keep it dry and safe for all seasons.",Royal Gourmet,Silver,us,94 +B00O4D1CUG,Standard Propane Fuel Cylinder - Pack of 3,"The Propane Hand Torch Cylinder is designed to fuel hand torches in order to complete jobs such as small soldering jobs, softening putty and paint, removing rusty bolts and nuts, and thawing frozen locks. Constructed of durable steel, the slim, lightweight cylinder is easy to grip and maneuver. Flame temperature in air is 3,600° F.",,Bernzomatic,,us,95 +B00O4D1F44,Standard Propane Fuel Cylinder - Pack of 6,Standard propane fuel cylinder pack of 6 de bernzomatic,,Bernzomatic,,us,96 +B08J3WDZCP,"SNAN Propane Fire Pit Table, Outdoor Companion, 32 Inch 50,000 BTU Auto-Ignition Gas Fire Pit Table with Glass Wind Guard, Stove in Winter, Table in Summer, ETL Certification","SNAN 50000BTU Gas Fire Pit table is perfect for family or barbecue. This Gas It is constructed with weather resistant, sturdy metal for durability and long service life. With its dark color and textured surface, gas fire pit table will add style and elegance to your backyard. Enjoy a warm and romantic bonfire party!","🔥【 FASHION DESIGN】This 32in square gas fire pit table perfectly compliments any outdoor space like backyard, garden, courtyard, terrace, balcony, etc. +🔥【 SAFE & WARM BONFIRE EXPERIENCE】 SNAN 32 inch outdoor fire table is ETL certified, use propane fuel to provide stable and green burning, so you no longer suffer from ash and smog; the heat output is 50,000 BTU, providing ample warmth and creating a warm and romantic bonfire atmosphere +🔥【DIMENSIONS & PACKING INCLUDED】Overall table size : L32"" x W32""x H25"", unit includes: one fire pit table with burner lid, square fire pit table cover, burner with pre-attached hose & regulator, tempered glass wind guard, 6.6 lbs lava stone set, accessories bag (necessary screws, nuts & washers), product manual +🔥【CONVENIENTLY ASSEMBLE & MULTI-FUNCTION】Come with detailed assemble & use directions. All necessary hardware and tools are also included. Perfect switch between dining table and Fire fit table. It could be outdoor dining table, coffee table, etc.",SNAN,Black,us,97 +B00S57U1QS,Coleman RoadTrip LX Propane Grill,,"Portable propane grill ideal for tailgating, picnicking, and camping +Delivers 20,000 btus of heat with 2 independently adjustable burners +Swaptop interchangeable cooktops allow you to switch out grill grates for griddles or stove grates (sold separately) +Perfect flow technology provides consistent performance, even in extreme conditions +Collapsible stand folds for compact storage; Tabletop setup lets you use grill without stand",Coleman,,us,98 +B088KD4JJ4,"Saking Fire Pit Cover,28 Inch Square Firepit Covers Gas Fireplace Fire Pit Table Cover for Propane Fire Pit - 28 x 28 x 25 Inch (Black)","Saking Heavy-Duty Weatherproof Firepit Cover, Great for 28x28x25 Square Fire Tables

            MAIN FEATURES
            ★ Made of 600D heavyweight oxford fabric with PVC layer
            ★ Excellent Water / Wind/ UV / Snow / Tear / Wear / Moisture Resistance
            ★ Designed with 2 Buckles, 2 Air Vents, 2 Handles and Drawstring
            ★ Superb wrapped sewing makes it stronger and nicer look
            ★ Fit most of SQUARE patio fire pit, table, bowl, fountain and other outdoor furniture
            ★ Come with 4 useful accessories to avoid being pierced by table's sharp corners

            SPECIFICATIONS
            - Brand: Saking
            - Condition: New
            - Colour: Black
            - Material: Heavy-duty Oxford with PVC
            - Shape: Square
            - Dimensions:
            29 L x 29 W x 25 H inches (76 L x 76 W x 63 H cm)

            PACKAGE
            1 x Square Fire Table cover
            1 x Storage bag for the cover
            4 x additional protective items

            NOTE:
            Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit","🔥 【 Perfect Fit for 28x28 Tall Square Fire Tables 】Cover size: 29"" L x 29"" W x 25"" H, great essential for your valuable Gas Propane Firepit Table, fountain, and other outdoor furniture (Please check the cover size details and measure your firepit carefully before purchasing, to make sure this cover will fit) +🔥 【 100% Waterproof Material 】 This patio fire table cover is made of 600D heavy-duty high-density fabric with PVC lining, providing excellent weather-proof like rain/snow/dust/UV resistance, and lasting the lifetime of your fire tables +🔥 【 100% Windproof Design 】 2 built-in buckle straps on diagonal sides to lock around the fire pit legs, making the cover stay firmly in strong wind. And the drawstring at the hem makes the cover fit snugly +🔥 【 Air Vents & Handles 】 2 air vents on both sides help the internal air circulation, to avoid moisture/rust and keep it dry inside. 2 strength handles make it easy to place on or take off +🎁 【 What You Get 】 1 x Square Cover, 1 x Storage Bag for the cover, and 4 x protective items that help to protect the cover from being pierced by the table's sharp corners",Saking,Black,us,99 +B08GY9MT25,"Bluegrass Living 42 Inch x 20 Inch Rectangular MGO Propane Fire Pit Table with Glass Wind Guard, Crystal Glass Beads, Fabric Cover, and Concrete Finish - Model# HF42181",,"ELEGANT MODERN STYLE - With its modern linear design, this handcrafted Bluegrass Living LP Gas Fire Pit Table features the classic elements of contemporary high-end furniture, with the durability of complete weather resistant MGO construction. +GLASS WIND GUARD AND GLASS BEADS - Crystal Glass Beads and a Tempered Glass Wind Guard Included, which not only provides protection against strong winds, but also adds a contemporary style to the fire pit. +CONVENIENT HIDEAWAY TANK HOLDER - Its decorative base cleverly conceals a standard 20 lb propane tank (not included), giving ease of access and making it an attractive centerpiece for your outdoor living space. +PREMIUM OXFORD FABRIC COVER - A premium 210D Oxford Fabric Weather Cover is included to protect the fire pit against outside elements when not in use. +STAINLESS STEEL COMPOSITION - Complete with a 50,000 BTU stainless steel burner, you can enjoy all the warm ambiance of a classic fire in the comfort of your backyard with the comfort of knowing your table will last for years to come! A 1-year limited warranty is included with purchase",Bluegrass Living,Concrete,us,100 +B002PJJ0MI,Portable Large High Pressure Propane Burner Gas Stove Cooking Camping Outdoor,,"✓ HEAVY DUTY CAST IRON - Cast Iron will not melt easily compared to aluminum material and provides high heat resistances +✓ EXTREME HIGH HEAT OUTPUT - With CSA listed 0-20 PSI Propane regulator, it will produce most heat compared to other brands +✓ DUAL HEAT ADJUSTABLE - Each Brass Knob will provide individual heat settings for the burner head +✓ HIGH GRADE BRASS CONNECTIONS - Brass for corrosion resistance and durability again temperature changes and low magnetic permeability",GasOne,,us,101 +B0836MR1K7,"PATIOPTION BBQ Grill Cover 30inch Outdoor Barbecue Cover Gas Grill Cover 600D Waterproof Charbroil Grill Cover for Weber, Char Broil, Holland, Jenn Air, Dyna-Glo, Brinkmann, Nexgrill, Propane Grills","1. Made of 600D heavy duty fabric with 100% waterproof coating. Thicker than most of fire pit covers in the market.
            2. Made of 100% polyester fabric that can support dust resistant, water resistant, weather resistant.
            3. Concealed air vent design upgrade to prevent rain into your grill.","🍀【Please measure your grill before purchase】 30"" L x 24"" W x 44"" H waterproof and non-fading grill. Note: The coverage depends on the size of the grill, especially the shape and depth of the grill. Please choose It should be larger than the grill cover to ensure that the grill is fully covered and protected. For this size, we have two styles. The first one has a narrow top, so it will be smaller. The second one has improved, we increase the size by 2 inch on the original basis. +🍀 【Premium Sewing Technology】Compared with other grill cover made of single thread sewing on 150D/300D fabric, PATIOPTION offer double thread sewing & 600D heavy duty fabric protect your grill from ripping and leaking, better to make sure its durablity. +🍀 【Premium UV Resistant Fabric】 Made of 100% 600D Heavy Duty polyester fabric that can support dust resistant, water resistant, weather resistant. Protects your grill in all type weather. +🍀 【Secure Fit 】Secure Fit Features velcro closure straps at two sides for better fit and to prevent cover from blowing off which ensures proper fit. +🍀 【2 Handles】 Convenient handles make installation and removal effortless. The handles can be used for storing or hanging.",PATIOPTION,Black,us,102 +B0195MZHBK,"Blackstone 1650 Tabletop Grill without Hood Propane Fuelled – 17 inch Portable Stovetop Gas Griddle-Rear Grease Trap for Kitchen, Outdoor, Camping, Tailgating or Picnicking, Black",,"Convenient and portable - this portable grill is built with an easy to use electric igniter, uses convenient 1 pound propane bottles for fuel, and has a built in grease catcher. Perfect for camping, Tailgating, Road trips, hunting and everyday outdoor use +Easy to store - simply store the griddle top upside down on top of the griddle body After use to save space +No hassle cleanup - Blackstone makes cleanup a breeze with this table top gas Griddle; simply wipe it off with a paper towel. No fuss cooking allows you more time to enjoy the outdoors +Spacious cooking surface - This premium Blackstone griddle offers 260 square inches (15.25in x 17in) of heavy duty cooking surface for versatility and durability +Fast and even heating - this grill has a stainless Steel ""H"" Burner that heats up fast! The ""H"" Shape offers even heat distribution and Fast cooking with a 12, 000 BTU heat output",Blackstone,Black,us,103 +B001NDK8C8,Propane Weed Burner Torch,"Our portable propane weed burner torch attachment is great for burning weeds and brush, melting snow and ice, heating pipes, hot roofing work and many more uses.","Measures roughly 22 1/2 long +3 nozzles are included, 1-1/8”, 1-3/8” and 2” +Hooks up to standard size propane tank with 60” long attached hose +Burns to 3000°F +Flow control valve",,,us,104 +B004FPZACE,BERNZOMATIC Worthington 336737 WT2301 Trigger Start Propane Torch,,"Trigger-start ignition easily ignites the flame +Versatile webbed flame completes a variety of household projects, including small diameter soldering, thawing, melting and heat application +Use only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder +Angled stainless steel burn tube +Flame control valve easily sizes flame and extinguishes when finished",Bernzomatic,,us,105 +B00XOBY97C,Coleman Roadtrip X-Cursion Propane Grill,,"Made of the highest quality materials +Camping cooking grills +Another quality Coleman Signature product",Coleman,Blue,us,106 +B07CQ5ND65,"Blaze Freestanding Grill with Lights (BLZ-5LTE2-LP-BLZ-5-CART), 40-inch, Propane Gas","The 40-inch Freestanding Gas Grill with Lights by Blaze provides a high performing luxury grill at an affordable price. The heavy duty 304 stainless steel construction throughout the grill body ensures a long lasting and durable appliance while the impressive cast stainless steel burners offer a commercial quality burner that's normally found on more expensive grills. The integrated heat zone separators allow you to create distinct grilling zones for direct/indirect grilling that's perfect for everything from steak to ribs while the perforated flame stabilizing grids do a great job to reduce flare-ups. The included infrared rear burner is rated for 10,000 BTU to provide a wealth of heat for low, slow rotisserie cooking using the optional rotisserie kit (not included) while the integrated interior grill lights illuminate the grill surface for day or night grilling. The heavy duty stainless steel grill cabinet features two doors and two side shelves to provide valuable storage/prep space while four heavy duty locking casters allow for easy mobility. This unit has been designed for use with propane. (BLZ-5LTE2-LP)","Freestanding propane gas grill +304 stainless steel grill body construction +(5) cast stainless steel burners provide 14,000 BTU each; rear infrared burner rated for 10,000 BTU +flame ignition provides reliable starting; Flame stabilizers prevent flare-ups and create an even cooking surface +Overall size: 56.75 x 63.37 x 25.75 (H x W x D); 70,000 BTU",Blaze,Stainless Steel,us,107 +B004BHEK5O,Weber Summit S-460 Built-In Liquid Propane in Stainless Steel Grill,,"4 Stainless steel burners +48,800 BTU-per-hour input. Dimensions - lid open (inches): 58H x 34W x 31D +10,600 BTU-per-hour input sear burner +6,800 BTU-per-hour input smoker burner and stainless steel smoker box +4 Stainless steel burners",Weber,Stainless Steel,us,108 +B009971BM6,"Blackstone Flat Top Gas Grill Griddle 2 Burner Propane Fuelled Rear Grease Management System, 1517, Outdoor Griddle Station for Camping with Built in Cutting Board and Garbage Holder, 28 inch",,"RESTAURANT STYLE COOKING - With 470sq inches of flat top grilling, This griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, Quesadillas, grilled cheese, steak, Potatoes, Teppanyaki style foods and more. Also enjoy a bottom shelf and two side shelves for food storage and prep +REPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; this grill includes an easy start, Battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors +TRANSPORT WITH EASE - Easily wheel Around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels. Built with removable griddle top, foldable legs and two wheels. +SATISFACTION GUARANTEE - If you are not completely satisfied at any point please feel free to contact Blackstone directly or return the product. Blackstone is a leader in the outdoor cooking category and stands behind their product large or small, guaranteeing your satisfaction!",Blackstone,Black,us,109 +B00LILH3V4,"Amazon Basics 46,000 BTU Outdoor Propane Patio Heater with Wheels, Commercial & Residential - Havana Bronze",,"Outdoor gas heater with 46,000 BTUs, providing heat up to a 9-foot radius. Ideal for commercial cafes and restaurants or residential patios +Made with aluminum, sturdy plastic, and rugged steel with a durable powder-coated finish that stands up to outdoor elements +Piezo ignition system for easy push-button start ups; requires 20lb Liquid Propane Gas tank (not included); chain to help secure LPG tank provided. +Safety auto shut-off tilt valve; waterbox for adding weight to the base; wheel assembly included for easy mobility +Secure the patio heater when not in use to avoid any potential damage to the patio heater",Amazon Basics,Havana Bronze,us,110 +B075KQ1VV2,STANSPORT - Outfitter Series Portable 3-Burner Propane Camping Stove (Blue and Black),,"FEED THE MASSES: Cooking for large groups just got easier with this outdoor camp stove - it features 2 large and one smaller burner sure to make you a happy camper! +PORTABLE AND POWERFUL: This portable gas stove features dual oversize burners that pump out 25,000 BTU with a smaller 10,000 BTU burner in the center. +DESIGNED TO BEAT THE ELEMENTS: The oversize frame is constructed of durable steel and features 3 windscreens for easier and faster cooking in your mobile kitchen! +HIGH-PRESSURE REGULATOR: The included pressure regulator makes this propane stove the ideal travel grill for camping, hiking, backpacking, fishing, and hunting enthusiasts alike! +NO MATCHES REQUIRED: The electronic igniter ensures you won't be eating a cold meal, even if you lose your matches during a long hike!",Stansport,Blue,us,111 +B082MTXG5Z,"Flame King MT301 Mr. Tank 30 LB Pound Steel Propane Cylinder with Type 1 OPD Valve, White",,"Safety first - Mr. Tank tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability. +Premium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it! +Leading the industry - Mr. Tank, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered +Suit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories",Flame King,White,us,112 +B073SMX1TC,"Outland Living Model 863 Portable Propane Fire Pit, 21-Inch Diameter 58,000 BTU Smokless for Camping RV Backyard Deck Patio, Black",,"✓ PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio. +✓ COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. Lower profile increases the functional heat radius while NEW Helios burner technology ensures a fuller and more natural flame. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 21” x W 21” x H 9.5” with total output of 58,000 BTU/HR. +✓ BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option. +✓ COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessory of Cypress Carry Bag 762 available separately. +✓ SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner, fasteners and contemporary decorative belt. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Cypress propane fire pit.",Outland Living,Black,us,113 +B079YB3FTK,Flame King YSN-301 30-Pound Propane Cylinder with Type 1 Overflow Protection Device Valve (2-Pack),Larger 30 pound size for added use time on the job or at home.,"High grade steel welded construction +Premium OPD valve assembly +X-ray and hydrostatic tested +Powder coated for long lasting exterior protection",Flame King,,us,114 +B07Q47ZGK4,"Flame King YSN100a 100 lb Steel Propane Tank Cylinder with 10% Pol Valve & Collar,White",,"High-grade steel welded propane cylinder +Premium POL valve assembly +X-ray and hydrostatic tested +Dot approved +100-Lb propane tank with POL is ideal as a replacement tank for a heater or grill",Flame King,White,us,115 +B078HFRNPQ,"Blackstone 36"" Cooking Station 4 Burner Propane Fuelled Restaurant Grade Professional 36 Inch Outdoor Flat Top Gas Griddle with Built in Cutting Board, Garbage Holder and Side Shelf (1825), Black",,"NEW FEATURES - This unit comes equipped with Blackstone's new and improved side shelf giving the user a removable cutting board, convenient paper towel holder, and strategically placed trash bag hooks. PLUS Blackstone's new rear grease management system to help eliminate mess. +RESTAURANT STYLE COOKING - With 720sq inches of flat top grilling, this griddle is perfect for breakfast, lunch and dinner. Cook eggs, pancakes, quesadillas, grilled cheese, steak, potatoes, teppanyaki style foods and more. Also enjoy a bottom shelf, side shelf and the NEW side shelf with cutting board, paper towel holder and trash bag hooks. +REPLACE YOUR STANDARD GRILL - Replace your grill or BBQ with a Blackstone griddle and never look back! This grill is simple to use and easy to assemble, so you'll be cooking in no time. Eliminate the hassle of kerosene, charcoal and matches; This grill includes an easy start, battery powered push button ignition. With the simple push of a button your griddle is ready to go! Take the headache away from outdoor cooking and spend more time enjoying the outdoors +HEAT RESISTANT HANDLE - The durable plastic handle is heat resistant allowing you to safely grab the handle bare handed. Plus, this high quality stainless steel construction can handle high heat, resists odors/stains and is dishwasher safe +TRANSPORT WITH EASE - Easily wheel around your yard or transport from your backyard to the campsite thanks to the removable griddle top, fold up legs and four industrial strength caster wheels",Blackstone,Black,us,116 +B082XSFG73,"NEXCOVER Barbecue Gas Grill Cover - 60 Inch Waterproof BBQ Cover, Outdoor Heavy Duty Grill Cover, Fade & Weather Resistant Upgraded Material, Barbecue Cover for Weber, Brinkmann, Char Broil, Holland.","Fits weber Genesis II 3 burner & Genesis 300 Series grills. Fits Weber Spirit Gas Grill models E-310, E-320, SP-310, SP-320 and Weber Genesis Silver B models, also fits similar size grill of most other brands like Char Broil performance 3-4 burner seriers, Brinkmann, Holland, Jenn Air and Nexgrill. For proper fit, measure your grill before purchase.BBQ Grill Cover Is Made Of High-Density Heavy Duty 600D Oxford Fabric Which Waterproof Dust-Proof And Fade Resistant. Besides,A Concealed Mesh Air Vent At BBQ Covers' Each Side For Air Circulation And Let Moisture Escape, To Keep Your Grill Dry, Prevent Your Grill Rusty.","【Upgraded Material】: The NEXCOVER Grill Cover is made of heavy duty Oxford fabric with waterproof PVC coating that can last through all seasons. This new upgraded material that is extremely Sturdy and Heavy-Duty, rip resistant, water repellent that can last through all seasons - Good Choice. +【Wide Compatibility】: The upgraded grill cover measures 60""(W)*23""(D)*42""(H). Not designed to cover the wheels entirely, the grill could be moved freely with cover on. The BBQ cover fits the most popular brands of the grill, such as Weber, Kenmore, Brinkmann, Jenn Air, Holland and Char-Broil and more. Please kindly measure your grill before ordering. +【Handles & Straps & Covered Air Vents】: The upgraded grill cover is designed with concealed air vent, 2 handles and adjustable 2 straps. Concealed air vent design can keep your grill dry well. Handles and straps is convenient to hold the grill and grill cover tightly together - Prevent your cover from blowing off. +【Easy to Use & Clean】: The upgraded grill cover is light, firm and very easy to fold for storage. You also can clean it easily when it is dirty. Simply hose with water and the dirt will disappear soon. Note: Please allow your grill to cool before covering. +【Reliable Customer Service and Warranty】: 12-month worry-free warranty and 60 days money back guaranteed. All emails responded to within 24 hours.",NEXCOVER,Black,us,117 +B012RMROVG,"Hiland GSF-PR-PC Propane Fire Pit, 42,000 BTU, Stainless Steel Lid w/Fire Glass, Square, Hammered Bronze",,"External Integrated Piezo Ignition. BTU's: 40,000. Uses a 20lb Propane Tank +Stainless Steel Lid Included +CSA Regulator and Hose Included +Fireglass Included +Thermocouple and Anti Tilt Safety Devices",Hiland,Hammered Bronze,us,118 +B08JG6NS6L,"WADEO 6FT Propane Regulator Hose with 90 Degree Elbow Adapter for Blackstone 17"" and 22"" Table Grill and Most LP Gas Grill with 3/8'' Connect Fitting","ATTENTION!!!
            Only Use for Low Pressure System.
            Please keep away from children.
            The brand name mentioned just work as product adaptability, not work as trade mark use, kindly noted.
            DO NOT PUT THE HOSE TOO CLOSE TO THE COOKING AREA OR IT MAY CAUGHT HOSE MELTING AND GAS LEAKAGE.","🌟Two ways to Use: If your grill is Blackstone 17 ""and 22"" table grill, you need to connect the low-pressure propane regulator hose with the grill by the propane elbow adapter; if your grill is other brands and the connector is 3 / 8'' female flare , you do not need to use this adapter, you can use our low pressure propane hose directly. +🌟Fits most gas grill, patio heater, fire pit table, LP generator, lantern, two burner camping stove, more low pressure device that has 3/8"" male flare connection. And it also suitable for Blackstone 17” and 22” table grill (Need to use the propane elbow adapter). +🌟Great Converter for 5-40lbs LP propane gas tank for Blackstone 17inch and 22in tabletop grill or other grills that have 3/8'' male flare. +🌟Material: Durable material provides secure and safe connection from your grill to other appliances. and it's only used for low pressure system. Easy to connect and no tools required, save more with two kinds of use. +🌟Please Note: Working Temperature rang: -30℃~50℃, please keep your grill away from fire in case the hose melting and result in gas leakage; ❗Only use for low pressure system, you cannot connect this kit on a high pressure application. ❗Before buying, make sure the kit's size is compatiable with your grill and when you install it, please ensure correct installation to prevent gas leakage.",WADEO,,us,119 +B07Q7MCXNG,Flame King YSN401a 40 Pound Steel Propane Tank Cylinder with Overflow Protection Device Valve,,"Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability. +Premium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it! +Leading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered +Suit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.",Flame King,White,us,120 +B07LBK17K9,"Goplus Outdoor Stove Portable Propane Gas Cooker Iron Cast Patio Burner w/ Detachable Legs for Camp Cooking (3-Burner 225,000-BTU)","Product Description
            This Goplus powerful triple burner, equipped with a cast iron head, outputs a whopping BTU of 225,000. On holidays, you can invite your friends to have a party outdoors. You can cooperatively use the cooking utensils such as barbecue grills, soup pots, wok, etc. It would must make your party more funny. Do not hesitate, just buy it.

            Features
            Heavy duty cast iron body
            Powder coating makes it is waterproof and anti-rust
            Triple burner outputs a total whopping BTU of 225,000
            Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
            Adjustable firepower make your cook more delicious
            Removable feet make it can be easily carried or stored
            External valve CSA certification
            Specifications
            Finish: Black
            Product Type: Triple burner
            Material: Cast iron
            Item Dimensions:34”x17.5”x28.5”
            Item Weight:33.5lbs
            Hose Dimensions:0.5”x51”
            Max: 250 Psig
            BTU : 225,000
            Package includes:
            1 x Single burner stove
            1 x Instruction
            ","🔥 Powerful Cooking Ability: Equipped with a cast iron head and it can output a whopping BTU of 225,000, this powerful burner can boil water and cook your food easily. And with the adjustable fire power, which will make your cook more delicious. +🔥 Detachable Legs: This item has detachable legs that can make it smaller for convenient transportation and storage. Whether you’re tailgating at the football stadium or camping with the family, you and your friends or family can enjoy a better time. +🔥 Sturdy Design: This cooker is made of cast iron, which is sturdy enough for long time use. Besides, the powder coating makes it waterproof and anti-rust. It is perfect for camping, tailgating, catering, hunting, back patio and more. +🔥 Safety: This burner’s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected. It will be much safer when you cook. +🔥 Easy to Use: With clear and brief instruction, this sturdy burner allows for immediate use without the headache of a complex set-up. You can quickly assemble and use it when you are outside.",Goplus,Black,us,121 +B081SMW6PL,"WADEO 12FT Propane Extension Hose, 3/8 inch Female Flare Fitting x 3/8 inch Male Flare Fitting Propane Hose for Gas Grill, RV, Turkey Cooker, Propane Fire Pit, Heater, Generator, Gas Grill, and More","Length:12 Feet
            3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting
            Attention:ONLY use for low pressure propane appliance
            Use for: Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More
            Please Note:
            1. For Your Safety, please check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
            2. All propane appliances including Gas Grill, Turkey Cooker, Propane Fire Pit, Generator,Heaters and Stoves are Outdoor Use.
            3. Both propane tank side and grill side should be Fully Tightened before using on your propane appliances to prevent leakage.
            ","👉12 Feet long propane hose, extended propane hose with 3/8'' Female Flare Fitting x 3/8'' Male Flare Fitting, can meet your BBQ needs. +👉Convenience: 12FT propane appliance extension hose is convenient for you. You don't have to move your larger fuel tank. and it can be used in addition to the existing hose for more length between the propane tank and the gas appliances. +👉Good Quality: Our propane extension hose is made of high quality durable rubber hose construction, more flexible and longlasting. +👉Application: WADEO propane extension hose can be used for BBQ Gas Grill, Turkey Cooker, Propane Fire Pit, Generator, BBQ Gas Grill, Heater and More. +👉Attention: The propane hose is ONLY use for low pressure propane appliance. Please connect your low pressure regulator to a standard propane appliance.",WADEO,,us,122 +B004LZN5ES,Flame King YSN401 40 Pound Steel Propane Tank Cylinder With Overflow Protection Device Valve,,"Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability. +Premium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it! +Leading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered +Suit your needs - With a standard-size connection valve, This large 40 lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.",Flame King,White,us,123 +B07PHRM55J,"Hisencn Grill Kits for Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376217, 463342119, 463376018P2, G470-0004-w1 Liquid Propane Grills",,"【Fits Charbroil Performance 4 Burner Grills】Fits Charbroil Performance 475 4 Burner 463347017, 463361017, 463673017, 463376117, 463377017, 463332718, 463347418, 463335517, 463342118, 463347017, 463376217, 463376017, 463376017P1, 463377217, 466335517, 466339417, 463349917, 463342119, 463376419, 463376519, 463376319, 463376819, 463377319, 463375719, 463377319, 463332719, 463335519, 463375619, 463376619, 463375619, 463376319, 463376018P2, G470-0004-W1, G470-5200-W1 Liquid Propane Grills. +【Fits Charbroil Performance 5 Burner Grills】 Listing for 4-pack. Required 2 x (4-pack) for 5 Burner Grills 463275517, 463275717, 463347518, 463243518, 463243519, 463347519, 463373319, 463373019 【Fits Charbroil Performance 6 Burner Grills】 Listing for 4-pack. Required 2 x (4-pack) for 6 Burner Grills 463276517, 463276617, 466245917, 463238218, 463277918, 463244819, 463274619, 463274819, 463274919, 463274819, 463274619. +If you need the Warming Rack for Charbroil Performance 463347017, 463376018P2, 463377017, please search this Link: www.amazon.com/dp/B083DML9ZC; ▲If you need the repair kit for Charbroil Performance 5 Burner 463347519, 475 4 Burner 463347017, 463673017, please search this Link: www.amazon.com/dp/B085H9CVXM. +Burner Dimesion: 17 3/4"" x 3/5"", Material : Stainless steel; Original parts number: G470-5200-W1; Heat Plates Dimension: 16 15/16"" X 2 1/12"", Material : Stainless steel ; Original parts number: G470-0004-W1. 【Adjustable Crossover Channels with Instructions】Good for about any length from 5"" to 9.5"" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills. +Repair kit include 4pcs stainless steel grill burner and 4pcs stainless steel heat plate, 3pcs adjustable crossover tube; Pls make a double check before your bid.",Hisencn,Steel,us,124 +B00T36LG5U,ADCO 2712 Silver Double 20 Diamond Plated Steel Vinyl Propane Tank Cover,,"Fit's Double 20 LB propane tanks +The fabric is designed to look like a diamond plated steel and matches the plating on your vehicle +Secures with an elasticized bottom hem and zipper +1 cover per box",ADCO,Silver,us,125 +B00GOW6VAQ,Camco 40559 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Polar White),,"Protects propane gas bottles from flying debris while streamlining the look of your RV +Custom molded assembled unit slips over the bottles for a safe and secure fit +Updated design provides easier access to gas valves and changeover valves +Fits 20 pound or 30 pound steel double tanks +Made of heavy-duty polypropylene",Camco,White,us,126 +B00GOW6V5G,Camco 40558 Heavy-Duty 20lb or 30lb Dual Propane Tank Cover (Black),,"Protects propane gas bottles from flying debris while streamlining the look of your RV +Custom molded assembled unit slips over the bottles for a safe and secure fit. Patented. +Updated design provides easier access to gas valves and changeover valves +Fits 20 pound or 30 pound steel double tanks +Made of heavy-duty polypropylene",Camco,Black,us,127 +B07YFKY7KV,"PAMAPIC Patio Heater, 46000 BTU Commercial Propane Outdoor Heater - 88 Inches Tall Standing Patio Heater With Cover, Bronze","
            Enjoy your outdoor space even during colder months with this durable, powerful heater. The PAMAPIC Propane Patio Heater produce 46000 BTU to help maintain a comfortable temperature for your patio. This heater offers durable, metal construction and finish that will enhance any outdoor decor with sleek, modern style. It also features a piezoelectric ignition and control valve to allow for temperature adjustment.

            SPECFICATION:
            SIZE: 88"" Tall, 32"" Reflector and 18"" Base.
            COLOR: Bronze Hammered Finish
            MATERIAL: Stainless Steel
            HEAT SOURCE: Propane/Butane
            BTU OUTPUT: 46000 BTUs
            HEAT RANGE DIAMETER: 20sqm
            Product Highlights: 1 Waterproof dustproof Patio Heater Cover 2. Advanced ""Pilotless"" Burner system 3 Piezo ignition 4. Mobility Wheels 5. Easy to install 20 lb. LP gas tank 6. Safety auto shut-off tilt valve
            ","Unique door opening design for built-in tank chamber makes it easier to place a 20-pound propane tank (not included). +Heat range up to 18 feet in diameter.Emits 46,000 BTU's of steady warmth. +Reliable pulse ignition, tip over protection system and convenient wheel assembly. +Stainless steel burners and double-mantle heating grid for optimal durability. +OUTDOOR PATIO COVER: Guaranteed to fit round, stand-up patio heaters with 32"" diameter dome x 18"" diameter base x 88"" high. Zips open and closed with ease.",Pamapic,Bronze,us,128 +B002ZY0IU6,"Flame King YSN-100 YSN100 100 Pound Steel Propane Tank Cylinder with 10% POL Valve and Collar, White",,"High grade steel welded propane cylinder +POL valve assembly +X-ray and hydrostatic tested +DOT approved +Powder coated for long lasting exterior protection",Flame King,White,us,129 +B00OXKQQYC,"Coleman Propane Grill Adapter, 1-Pound",,"Attaches to any full-size propane grill +Allows for hook-up to a 1-lb. (0.45 kg) fuel cylinder +All brass construction",Coleman,Multi,us,130 +B087N2JQD8,"Hisencn Repair kit Gas Grill Burner, Heat Plate Deflector, Crossover Tube Replacement for Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane, G320-0200-W1, G215-0203-W","Replacement repair kit parts fit for: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill","Burner Dimension: 12.6"" x 1.5"" , Material: Stainless Steel ; Original Part Number: G320-0200-W1 ; Adjustable crossover tube: adjust extends from 5 to 9.5 inch Material: Stainless Steel ; +Heat Plate Dimension: 13"" x 4"" Material: Porcelain Steel; Original Part Number : G215-0203-W1st extends from 5 to 9.5 inch Material: Stainless Steel ; +Fits: Charbroil 2 burner 463672817, 463672717 , 3 burner 463773717, 463773817, 4 burner 463874717.Fits Char-Broil Classic 280 2-Burner, 360 3-Burner, 405 4-Burner Liquid Propane Gas Grill +Repair Kit Include: 3 pcs Stainless Steel Burner, 3 pcs Porcelain Steel Heat plate, 2 pcs Adjustable Carryover tube; Please Make sure you measure the size of your original parts and compare with ours BEFORE you order. +【Adjustable Crossover Channels with Instructions】Good for about any length from 5"" to 9.5"" with OEM Instructions to learn how to properly adjust crossover tubes. Fits most of Grills.",Hisencn,,us,131 +B096N8WRF6,"Taslett - Ventilated 20lb Propane Gas Tank Cover with Tabletop, Weather Resistant, Complete Storage Case",,"Ventilated Design: Grommets on the top part of the cover provides air circulation and prevent gas and condensation build-up. +Tabletop Feature: This cover transforms the ugly gas tank into a functional tabletop. Use it as a small table for your drinks or snacks. +Extra Storage: Handy side pocket for your wand lighter or other BBQ accessories. +Perfect fit for a standard 20 lb / 5 gallon propane tank. It can also be used on smaller tanks as long as the diameter of the tank does not exceed 12.25”. +Storage Case included.",Taslett,,us,132 +B00OMYK83O,Camco 40572 Black Heavy-Duty Double Propane Tank Cover,,"Removable top panel provides easy access to gas valves +Heavy-duty polypropylene +For two 20 pounds propane tanks +Easy to install and highly durable +Protect your propane bottles from flying debris",Camco,Black,us,133 +B07HCVSGFL,"GasOne B-5000+50450 Burner & Cover 2 Burner Gas Stove Outdoor Propane, 30.75 x 15.75 x 18.5 inches, Old Style Black QCC",,"✓ rugged construction + durable patio cover - built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize. Comes with a heavy-duty burner cover to protect your burner from dust and harsh weather +✓ propane double burner for outdoor cooking - equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one’s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat +✓ Adjustable 0-20 psi Steel braided hose - long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow +✓ individual heat dial per burner - the portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need +✓ high quality Regulator - the double burner’s regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected",GasOne,Old Style Black QCC,us,134 +B07F5233N1,"ICON 12867 Deluxe Propane Tank Cover , Black",,"Improves the look & value of the RV +Part number: 12867 +Fit type: Universal Fit +Package Weight: 10.0 pounds",ICON,Black,us,135 +B003UHVVV2,Flame King YSN-301 30 Pound Steel Propane Tank Cylinder with Type 1 Overflow Protection Device Valve DOT and TC Compliant,,"Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability. +Premium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it! +Leading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered +Suit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.",Flame King,White,us,136 +B06XWJPSDJ,"GasOne B-5300 One High-Pressure Outdoor Propane Burner Gas Cooker Weld, Black",,"High output - exerting up to 65, 000 BTU, gas one’s high pressure Single burner cooks, boils, and grills rather quickly. A great addition for those looking to power there Tailgating, camping, or even the occasional family meet-up +HEAT ADJUSTABLE – control your high output flame through the regulators control knob to direct the gas flow from your 20lb propane tank +14 IN COOKING DIMNENSION - Measures 14 In Wide x 12 in Height +STEEL BRAIDED HOSE - Includes 0-20 adjustable regulator and heat resistant, steel-braided hose, Ensures safe flow of pressure and gas, O-Ring on Regulator for leakage-free use +Low height strong frame – Gas one’s single burner has an extremely sturdy body and is compact enough to be highly portable. Easy to store and able to handle heavy weight, The B-5300 is the heavy-duty burner for your outdoor cookouts",GasOne,QCC,us,137 +B010Y82OQU,Camco 40578 Black Heavy Duty Single Propane Tank Cover (20lb),,"Protects Your RV's Propane Tank: Protect your propane bottles from flying debris +Compatibility: Fits a 20 lb. steel single tank, Slip the custom molded, assembled unit over bottles for a safe, secure fit +Provides Easy Access: Cover provides easy access to gas valves and changeover valves via a removable top +Dimensions: 19 7/16-inches (H) x 18 11/16-inches (W) x 13 3/8-inches (D) +Durable Construction: Made of a heavy-duty, UV-stabilized polymer.",Camco,Black,us,138 +B077RVXR9Y,BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder,"

            BBQ Coverpro: BBQ Coverpro introduces its new Tank Cover.


            ※BroilPro Accessories Propane Tank Cover Fits 20-Pound Steel Propane Cylinder.
            ※Material:Heavy Duty Vinyl With 300D Polyester lining.
            ※Dimensions:Dia13""x17.5""H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank.
            ※This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
            ※Easily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. so you can be assured of a quality fit.
            We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 24 month warranty.

            ","Material:Heavy Duty Vinyl With 300D Polyester lining. +Dimensions:Dia13""x17.5""H, Fits 20-Pound Steel Propane Cylinder,Unique design To Easy connect Tank. +This propane tank cover is prevent your cover from experiencing premature fading and damage from the sun. +Easily protect your propane tank with this BroilPro Accessories propane tank cover, which is constructed with strong heavy duty 300D Polyester. The cover fits most standard 20-lb. propane tanks, so you can be assured of a quality fit. +Warranty- 90 Days 100% Money Back and 24 Months Guarantee.",BroilPro Accessories,Black,us,139 +B083J4G6BK,"WADEO High Pressure Cast-Iron Round Burner Head, Propane Burner Head with 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose and Brass Fitting","Product Specification
            Propane Burner Head :
            Material: High quality Cast Iron
            Negotiability: Air Shutter can control the amount of air coming in.
            Propane Hose and High Pressure Regulator:
            Length: 4FT/48inch
            Inlet Pressure: 25-250PSIG
            Outlet Pressure: 0-20PSIG
            Type: High pressure LPG hose

            Universality:
            Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker, turkey fryers, torches and variety of high pressure applications.

            Brass Fitting :
            Material: High Quality Brass
            3/8"" flare M x 1/8"" MNPT
            ","🔥Universal Cast-Iron Round Burner Head: It is made of high quality cast iron and has better heat resistance than conventional aluminum burners. It also has air shutter for better ventilation to the propane can thorough combustion. You can use it with high pressure or low pressure regulators. +🔥Propane Regulator: Output pressure 0-20 PSI adjustable with 4 Feet long hose. Fits with Type 1(QCC1) propane tank connections & 5/8""-18 UNF outlet connection. +🔥Adjustable Air/ Oxygen Controller: To provide even clean combustion of the flame and prevent your griddle, pot and all other coolwares from darkspotting. +🔥Attention: It can only be used for propane. And it is suitable for high pressure system. Please do not use for low pressure equipment to prevent damage to your low pressure equipment. +🔥Package Included: One cast iron high pressure burner head, one 3/8"" flare M x 1/8"" MNPT Brass Fitting and one 4FT high pressure propane hose with 0-20 psi regulator.",WADEO,,us,140 +B0009PUR5E,Coleman Gas Stove | Portable Bottletop Propane Camp Stove with Adjustable Burner,,"COOKING POWER: Up to 10,000 total BTUs +PRESSURE REGULATOR: Pressure control for consistent performance, even in extreme conditions +PERFECTHEAT DESIGN: More efficient cooking with less fuel +1 ADJUSTABLE BURNER: For precise temperature control; fits an 8 inch pan +WIND BAFFLES: Shield burner from wind for maximum heat",Coleman,Green,us,141 +B00Z4T34CI,"Realistic Stone-like Outdoor Patio Fire Pit Bowl with Free Cover. Get Ready for Entertainment in Your Backyard or Deck. This 30,000 BTU Propane Firepit Bowl Has Hideaway Storage for a 20lb Propane Tank and Also Comes with Clean Burning Lava Rocks","This outdoor fire pit is constructed from a steel frame encased by a fire-retardant inorganic material or magnesium composite, which gives it a realistic finish. These versatile materials can withstand temperatures ranging from 400-800° Fahrenheit. The burners are made from stainless steel, and sensitive components, such as the igniter pin and thermocouple, are protected in a stainless steel enclosure. Generous amounts of lava rock are included to cover the fire ring, which displaces the gas and gives the flames a realistic look.","Dimensions: 21L x 21W x 29.1H inches +Uses standard liquid propane gas tanks +Steel frame and stainless steel burner +Fire-retardant, inorganic material exterior",Red Ember,,us,142 +B00KY4S388,"Outland Living Firebowl 893 Deluxe Outdoor Portable Propane Gas Fire Pit with Cover & Carry Kit, 19-Inch Diameter 58,000 BTU",,"✓ PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio. +✓ COMPACT AND EASY TO TRANSPORT: Travel size fire pit is lightweight and portable; easily set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 19” x W 19” x H 11” with total output of 58,000 BTU/HR. Max Gas Supply Pressure: 250 PSI +✓ BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option. +✓ COMPLETE FIRE PIT KIT: Includes Cover & Carry Kit, pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 4.4-Lb natural lava rock set designed to enhance flickering effect. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Standard Carry Bag 760 available separately. +✓ SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Deluxe propane fire pit. Ignition Type:Manual",Outland Living,Black,us,143 +B01M4SA4PG,"GASPRO 4FT 20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,firepit and More","

            Product Specification

            -High pressure LPG hose

            -Inlet Pressure:25-250PSIG

            -Outlet Pressure :0-20PSIG

            -Flow Capacity :122000 BTU/Hr

            -Certificate: CSA

            -Length of hose:4feet/48inch


            How to use it?

            1.The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

            2.The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )

            3.Installs is not complex at all, even you don't need any tool required.

            This is an essential part of converting your fire pit/table to a best flame


            What equipment can it be used for?

             Fits most propane grill, stove, smoker, burner, heater, fireplace, fire pit, cooker,  turkey fryers,torches and variety of high pressure applications


            Are you still worried about not being able to accurately adjust the temperature of the smoker/range?  

            This regulator will not make your smoker/range temperature too high or low,You can use it to precisely adjust the temperature of your device.


            Are you still worried about the small flame of your grill?

             If you have this propane regulator,you can really crank up the flames for quicker,Made your grill heat better than when it was new.


            Warm Tips

             1. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.

            2. Not suitable for appliances which need low pressure regulator

            ","[Control The Flame] 0-20 PSI adjustable propane regulator allows you to adjust the pressure to control the flame intensity and turn your grill, turkey fryer, forge or other appliance up to any temperature. +[Perfect Fit] Perfect for gas grills, forge, stoves, turkey fryers, fire pit, burners, smokers, cooker, heater, and hot water heater, as long as your appliance connection is 3/8” male flare connector +[Extra gift] Come with pipe fitting 3/8"" flare M x 1/8"" MNPT Orifice, it fits all Propane Appliances with 1/8 Male +[Works perfectly] Acme nut connects to 5-40lb propane tank. It provides a secure, airtight connection between LP appliance and propane cylinder. +[Safety] Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off",GASPRO,Black,us,144 +B01M2DKPX0,"GASPRO 6-Foot Propane Hose with Regulator for Gas Grill, Outdoor Heater, Camping Stove, Fire Pit and More, Low Pressure","Features:
            ● Low pressure gas grill regulator and hose, use to connect your propane appliance to a 5-40 lb gas tank.

            ● Fits most gas grill, propane heater, fire pit, two burner camping stoves, side burner, hot water heater and other low pressure gas propane appliances.

            ● Great for BBQ, camping, tailgating, heating needs or having an outdoor cookout.

            ● Easy- installation. This gas grill regulator and hose can be connected to your propane tank in minutes.

            Specification:
            - Low Pressure LPG hose
            -Inlet Pressure: 25-250PSI
            -Outlet Pressure: 11""W.C.
            -Flow Capacity: 95000 BTU/Hour
            -Certificate: CSA -Hose Length: 6feet/72inch

            Warning: Only for OUTDOOR Use.","【Standard Connector】Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16"" diameter LP hose +【Diverse Use】Fits for propane grill, camp stove, fire pit, heater, water heater, etc +【100% Safety】Made of heavy duty 100% solid brass and sturdy rubber hose, provides a secure connection between grill and tank +【Control Gas Flow】The Outlet Pressure of the regulator is 11""W.C(1/2 PSI). Keeping flow stably and at appropriate levels +【Nice Length】 6 FT long enough hose allows for flexible configurations",GASPRO,Black,us,145 +B08XYJP6DZ,"Flame King YSN40HOGa 40 LB Pound Horizontal & Vertical Propane Cylinder Type 1 OPD Valve, Gray",,"Never run out of propane - Built-in accurate gauge +The HOG can be used both vertically and horizontally +EZ-HANDLE collar design. Collar has a built-in formed handle with no sharp edges. +New design with built in wheels for ease of transport +Rugged, high grade steel welded construction",Flame King,Gray,us,146 +B07DP2KKWT,Miniature Plastic Propane Tanker Trailer Chrome Frame Tonkin 1/87 HO Scale 94979,Propane Tanker Trailer w Chrome Frame Tonkin Truck N Stuff Trailer Plastic 1/87 Scale Accessory HO Scale Scale is approximate Trailer is about 6 inches long...is new in plastic box.,"Plastic Trailer +About 6 Inches Long +Comes in Clear Plastic Box +Fore Ages 14 and up",Tonkin,,us,147 +B01KGKFPM6,"Gas One Two Burner Propane Stove Outdoor High Pressure Propane 2 Burner [UPGRADED] 150,000 BTU with 0-20 PSI High Pressure Adjustable Regulator and Steel Braided Hose",,"Propane double burner for outdoor cooking equipped with two burner heads, Each exuding 75, 000 BTU (for a total of 150, 000 BTU), gas one’s double burner provides extreme heat for various different cooking scenarios. From Tailgating to catering, this burner stands out for those looking for a little more range in their heat +Rugged construction stove built sturdy and designed to last, the B-5000 demonstrates the needed combination of power and control. Along with its rugged body, The double burner comes with detachable legs to make portability convenient and easy to compartmentalize +Adjustable 0-20 psi regulator with Steel braided hose long lasting and reliably durable, the B-5000 comes with an adjustable high pressure 0-20 psi Steel braided regulator that allows for a secure source of gas flow +Individual heat dial per burner The portable burner is supplied with two individual heat dials to control each specific flame. From simmering meat to boiling water, adjust the burners flame to Meet your precise need +High quality Regulator - the double burner regulator ensures a safe cooking experience by monitoring the propane gas flow and disallowing further leakage when internal or external issues are detected",GasOne,Black,us,148 +B07621BM5H,"Peterson Real Fyre 18-inch Live Oak Log Set with Vented Burner, Auto-Safety Pilot Control Valve and Gas Connection Kit (Propane Gas Only)","Peterson Real Fyre 18-Inch Live Oak Log Set With Vented Burner, Auto Safety Pilot control valve and Gas Connection Kit, (Propane Gas Only) 68-YEP Vented Gas Logs. The outstanding craftsmanship of Real Fyre captures tradition and quality with the natural realism of the 18-inch Live Oak log set. The hand painted details are modeled from real world samples, and the high definition bark enhances the natural wood look. The logs are crafted from superior refractory ceramics which provide radiant heat even after the burner has been turned off. Each log has a steel rod insert for maximum reinforcement, and the vented design means they burn efficiently to reduce pollution and protect natural resources. Set Includes: 6 Gas Logs, Grate, Sand, Glowing Embers, Vented Burner, Auto Safety Pilot Control Valve and Gas Connection Kit. Burner Output: 65,000 BTUs","Peterson Real Fyre gas logs are meticulously hand painted to re-create the look of natural wood +Superior refractory ceramic logs are reinforced with steel rods for greater integrity +Efficient design helps preserve and protect natural resources +This Peterson Real Fyre gas log set is designed for indoor use only +Includes Auto-Safety Pilot control valve and Flexible Gas Connection Kit",Peterson Real Fyre,Live Oak (LP) (includes gas connection kit),us,149 +B07MCNNWW8,"Kitma 13"" Gas Wok Range - Commercial Liquid Propane Cooking Range - Restaurant Equipment, 95,000 BTU","

            KITMA - We spend decades focusing on the improvement of catering equipment technology, have been devoted to creating the best catering equipment experience, make you safer and healthier cooking.

            Commercial Liquid Propane Work Range Feature:

            ●Durable stainless steel structure - gives the unit superior corrosion resistance and cleanability

            ●Heavy duty burners - provides stable flame to fry food quickly

            ●Adjustable stainless steel legs -adjusts the height of griddle to meet your needs

            About Product:

            Size: 34 ''×20.8''×17.9''

            Total BTU: 95,000BTU/h

            Intake-tube pressure: 10 in.W.C.

            Nozzle No: #67

            Package Includes:

            Work Range*1(completely installed )

            Instructions*1

            ★About us:

            We offer a 1-year warranty with 30 days worry-free return, effective from the date of purchase by the original, so ZERO risk purchasing! Every one of our customers is assigned to a specific customer service representative when your product has broken, we will perform “maintenance staff on-site service” within 48 hours. Make sure every item we sold in integral and have the good working condition until you are 100% satisfied.

            ","【Continuous Pilot】Designed with a continuous pilot for instant ignition, this unit is ready for use whenever you are in needs, so this work range is perfect to best fit your business needs +【Powerful 95,000 BTU Burner】This wok range equipped with an 18 tip jet burner that boasts 95,000 BTU cooking power to offer all the power you'll need to cook. And it measures 13"" in diameter to accommodate your different size wok +【Stainless Steel Construction】This range boasts a reliable high-quality stainless steel outer body and legs, which provides long-lasting durability and is easy to clean after the service +【Easy to Load and Adjustable】This unit's rolled front makes it easy to hold your wok. Its gradual slope design also prevents overflow. In addition, this wok range comes with 4 adjustable feet, allowing you to level it on any surface +【Quality Warranty】Our products are all certified in the United States, we provide1 year labour and parts warranty. When your product has broken, we will arrange our after-sale service team to perform on-site service within 48 hours. Make sure every item we sold in integral and have a good working condition",kitma,Silver,us,150 +B00VG0S56Y,"Unicook Heavy Duty Waterproof Barbecue Gas Grill Cover, 60-inch BBQ Cover, Special Fade and UV Resistant Material, Durable and Convenient, Fits Grills of Weber Char-Broil Nexgrill Brinkmann and More"," Upgraded! We have re-engineered Unicook bbq grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

            Key Features of Unicook Heavy Duty Waterproof Gas Grill Cover Selection:

            ● Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

            ● Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

            ● Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

            ● Wind Resistant - Fastening straps at two sides keep bbq cover securely in high wind.

            Care and Use
            ► Allow grill to cool before covering.
            ► To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
            ► Air dry for next use.

            Unicook outdoor waterproof grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the ""Visit the Unicook Store"" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.","【Upgraded Material】- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and long-lasting, gives your grill all year round protection against all elements. +【Handles and Straps】- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. Handles can also be used for hanging and storage. Convenient heavy duty 1.5” wide fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off. +【Covered Air Vents】- Wide covered mesh vents at both sides for air circulation to let moisture escape, the air circulation can also prevent your gas grill cover from blowing away by high winds. +【BBQ Grill Cover Dimension】- 60 inch grill cover measures 60"" width by 23"" depth and 42"" height, fits most grills with 3 to 4 burners, width between 53” and 58”. ﹡Not designed to cover the wheels entirely, the grill could be moved freely with cover on. +【Wide Selection】 Unicook outdoor heavy duty grill covers are designed to fit grills in various shapes and sizes for your selection. Please click ""UNICOOK"" button on top to find the right cover to protect your grill.",Unicook,black,us,151 +B001RU04XK,Coleman Fold N Go + Propane Grill,,"Portable folding grill with built-in handle for easy transport and storage +Delivers 6,000 BTUs of heat across 105 sq. in. of grilling surface +Adjustable horseshoe burner for precise temperature control and even heating +InstaStart button ignites grill without the need for a match or lighter +Removable dishwasher-safe cooking surface and grease tray for easy cleaning",Coleman,Red,us,152 +B00PHNN5VG,"Camco Manufacturing 40568: Propane Tank Cover, Black (Fits 20# Single Steel Dbl Tank)",,"Protects Your RV's Propane Tank: Protects your propane gas tank from flying road debris +Compatibility: Fits 20 lb. steel double tanks +Provides Easy Access: Cover provides easy access to gas valves and changeover valves via a hinged access panel +Durable Construction: Made of a heavy-duty, UV-stabilized polymer +Dimensions: 19-inches (H) x 30-inches (W) x 15-inches (D)",Camco,Black,us,153 +B00008ZA0C,BernzOmatic Basic Use UL2317 Brass Pencil Flame Propane Torch Head,,"Manual start (light with a Bernzomatic Spark Lighter, sold separately) +Basic pencil flame for small diameter soldering, thawing, melting and heat application +Use only with propane fuel, such as the Bernzomatic 14.1 oz. Propane Hand Torch Cylinder +Brass construction for durability +Flame control valve easily sizes flame and extinguishes when finished",BernzOmatic,Copper,us,154 +B00FWKVGQ0,"Outland Living Firebowl 883 Mega Outdoor Propane Gas Fire Pit with UV and Weather Resistant Durable Cover, 24-Inch Diameter 58,000 BTU",,"PERFECT NO MESS CAMPFIRE: Say goodbye to dirty ash, expensive firewood, and bothersome smoke and enjoy a clean realistic propane campfire. The perfect outdoor centerpiece for camping trips, RV travels, tailgating get-togethers, beach parties, and family evenings on the backyard patio. +NO ASSEMBLY REQUIRED: Sturdy fire pit is easy to use and portable; quickly set up in minutes with no tools required. All weather fire bowl delivers a clean and smokeless flame with cozy warmth and beautiful evening ambiance. Measures L 24” x W 24” x H 13” with total output of 58,000 BTU/HR. +BEAT THE CAMPFIRE BAN: CSA approved fire pit is safe to use during most campfire bans; always check with the current fire restrictions in your area. Spark free propane campfire helps protect campgrounds and forested areas with a safer easy-to-use fire option. +COMPLETE FIRE PIT KIT: Includes pre-attached 10-Ft hose to keep your standard 20-Lb propane tank cylinder (not included) safely out of sight, fully adjustable regulator with chrome valve knob for varying flame height, and 6.6-Lb natural lava rock set designed to enhance flickering effect. Convenient UV & weather resistant cover protects fire pit when not in use. Optional accessories of CSA approved Natural Gas Conversion Kit 780 and Mega Carry Bag 761 available separately. +SIGNATURE OUTLAND LIVING QUALITY: Durable high quality steel construction with protective enamel finish for dependable longevity; superior stainless steel burner and fasteners. Outland Living has outdoor living perfected so you can create the perfect ambiance to share stories and good times. Make new memories with family and friends, in comfort and style anywhere outdoors, with the Outland Firebowl Mega propane fire pitIgnition type: Manual",Outland Living,Black,us,155 +B07GQZ1LGP,JIESUO BBQ Gas Grill Cover for Weber Genesis: Heavy Duty Waterproof 60 Inch 3 Burner Weather Resistant Ripstop UV Resistant Outdoor Barbeque Grill Covers,"''JIESUO'' brand means: justice, integrity, efficience, seriously, understanding, optimistic.

            DIMENSIONS
            This grill cover measures 60""L x 24"" W x 44"" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, Genesis II E-310 and fit 4 burner Char Broil, not fits Weber Genesis II S-335 LP SS.

            HEAVY DUTY MATERIAL
            This bbq cover is made of upgraded Oxford 600D polyester elastic yarn, strong, durable and tear-resistance.

            WATERPROOF
            The PVC lining waterproof layer using an upgraded formula, adding a specific proportion of vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products.

            UV RESISTANT
            UV and fade-resistant fabric material prevents damage from the sunlight.

            WIND-RESISTANT
            Durable & Strong Velcro Straps attached to both sides of the grill cover. Keep the cover close to the grill, make it fitting to prevent from the wind.

            GOOD STITCHING, EFFECTIVE PROTECTION
            Superior textile process, 'Precision Two-Thread Stitching' gives more durability, strong side improve abrasive resistance, with upgraded Oxford 600D heavy duty material, upgraded waterproof layer formula.

            SPECIFICATION
            Material: 100% 600D polyester fabrics
            Product Dimensions: 60"" L x 24"" D x 44"" H
            Package Included:
            1* JIESUO 60 In Gas Grill Cover
            1* Storage Bag

            JIESUO grill cover design concept is to solve past pain points, improve user experience.
            You get what you pay off.
            At last thank you for your purchase.","DIMENSIONS - This grill cover measures 60""L x 24"" W x 44"" H. Fits Weber Genesis 300 series including E-310, E-330, EP-310, EP-330, S-310, and S-330, not fits Weber Genesis II (In order to get the right size of grill covers, please measure your grill before you purchase! Thank you.) +UPGRADED MATERIAL, UPGRADED FORMULA - This bbq cover is made of upgraded Oxford 600D polyester with UV and fade-resistant fabric, strong, durable and tear-resistance. It also looks more beautiful and elegant. The PVC lining waterproof layer using an upgraded formula, adding vinyl oil, making the waterproof layer soft and less crumple, also tough, flexible and more durable than other similar products. These upgrades give our bbq cover more effective protection for expensive gas grills. +GOOD STITCHING, EFFECTIVE PROTECTION - Superior textile process, 'Precision Two-Thread Stitching' gives more durability and rip-resistance, strong side improve abrasive resistance, with upgraded heavy duty material, upgraded waterproof layer formula, even in the harsh environment it can also play a top protective role, whether it's sunny, rainy, windy, snowy or dusty! The Product lifetime is 2 to 3 times that of most other grill covers, you can use it for a long time without replacing it. +Convenient to use - We designed Velcro straps on both sides of grill cover, you can easily fasten the cover to protect your grill away from wind and heavy rain. +Easy to clean - Simply hose with water and dry up grill cover in the sun for next use. For the purpose of easy storage, we also offer an opp bag. Order yours today and protect your Weber genesis grill right now.",Jiesuo,Black,us,156 +B07433QCTC,"SHINESTAR 5FT Propane Hose with Regulator for Gas Grill, Patio Heater, Fire Pit and More, Low Pressure","Winter is coming, SHINESTAR patio heater propane regulators accompany you through the cold weather. (Also fit for Gas Grill, Fire Pit, Stove that has 3/8"" Male Flare Connector)

            1. Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1. Then see device if the other end is a 3/8inch Male Flare Fitting.
            2. The output pressure of the regulator is set to 11 inches water column which equates to approximately.
            3. Low pressure means the high pressure in your propane tank will be reduced and regulated to the correct pressure for your burners to work as designed.
            4. Great for BBQ, heating needs, camping, tailgating or having an outdoor cookout.
            5. Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

            Q: How do you know if you need a parallel or vertical low pressure regulator hose?
            A: They are the same. it depends on the space of your tank tray. If you use the propane tank with no tray, either is fine.

            Attention:
            1.For Outdoor Use Only.
            2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
            3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
            4.Keeping the hose away from HIGH TEMPERATURE.

            Product Specification:
            Certificate : CSA
            Outlet Pressure:11’’W.C.
            Flow Capacity: 80000 BTU/Hr
            Length: 5 feet /60 inch /152.4 cm (length of rubber hose only)
            Please double check your appliance connection to see if it has a 3/8’’ Male Flare Fitting Connector.","【Standard Connector】 Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16"" diameter LP hose +【Multi-Purpose】 The propane regulator with hose fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device +【Durable & Sturdy】 100% solid brass and long-lasting rubber hose to provide a secure and sealed connection between grill and tank +【Control Gas Flow】 The gas grill regulator and hose's Outlet Pressure is 11""W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again +【Perfect Length】 Gives you plenty of length, allowing for flexible configurations",SHINESTAR,,us,157 +B07CZ8H9V4,"Goplus Outdoor Camp Stove High Pressure Propane Gas Cooker Portable Cast Iron Patio Cooking Burner w/Detachable Legs Great for Camping, Patio, or RV (Single-Burner 100,000-BTU)","Description
            This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. It is suitable for various types of pot because of burner bracket. If you go camping just carry it. Then you will enjoy the happy time with your family. Do not hesitate, just buy it.

            Features
            Heavy duty cast iron body
            Powder coating makes it is waterproof and anti-rust
            Equipped with a cast iron head, outputs a whopping BTU of 100000.
            Enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors
            Adjustable firepower make your cook more delicious
            Removable feet make it can be easily carried or stored
            External valve CSA certification

            Specifications
            Finish: Black
            Product Type: Single burner
            Material: Cast iron
            Item Dimensions:15.5”x15.5”x17”
            Item Weight:13lb
            Hose Dimensions:0.5”x51”
            Max: 250 Psig
            BTU : 100000
            Package includes:
            1 x Single burner stove
            1 x Instruction","Sturdy Design---This item made by cast iron, which is sturdy enough. Besides, the powder coating makes it is waterproof and anti-rust. This sturdy design allows for immediate use without the headache of a complex set-up. +Cast-Iron Head---This powerful single burner, equipped with a cast iron head, outputs a whopping BTU of 100000. And it can adjust the firepower to make your cook more delicious. +Cooking Ability---It is suitable for various types of pot because of burner bracket. So you can enjoy cooking outdoor with your family to have a happy time. +Detachable Legs---This item has detachable legs that can make it smaller for convenient transportation and storage. +Safety Use---Heat Adjustable CSA certified regulator included for use with propane tank, Hose included for attaching to propane tank, secure installation ensures no gas leakage. (it is possible to tighten by hand, but is advisable to use tools in order to tighten)",Goplus,Black,us,158 +B088CYL9WB,"Grand patio 5 PCS Outdoor Furniture Conversation Fire Table Set, Grey Cushions Rocking Chairs with 32 Inch Propane Gas Fire Pit Table","This patio fire table set provides the warmth and ambiance of a classic fire, without the hassle of a wood burning fire.

            As a perfect addition to any porch or patio, this outdoor fire pit has a control panel with an integrated electronic ignition.

            The fire pit table has solid construction and is easy to assemble.

            40,000 BTU propane gas fire pit, square steel firebowl.

            Note:
            The propane fire pit/table with integrated push-button ignition and textilene side panels conveniently conceal a standard 20-Lb propane tank (not included).
            Lava rocks shown in photos are decoration only, and are NOT included.
            Batteries: 1 AA batteries required (NOT included).

            Product Specifications:
            Chair materials: Powder-coated steel, olefin fabric
            Chairs size: 27.5"" (W) x 30.5"" (D) x 33.7"" (H)
            Load of chair: 200lbs-300 lbs
            Chair package Includes: 4 Chairs, tools needed, assembly guide

            Firetable materials: Powder-coated steel, textilene fabric, ceramic tile top
            Firetable size: 31.8"" (L) x 31.8"" (W) x 24.2"" (H)
            Firetable package included: 1 x 32 inch gas fire pit table

            Attention: This fire table shall only be used outdoors, in a well ventilated space and shall NOT be used in a building, garage or any other enclosed area.

            Warranty & After-sales service: All of our products include a One Year Quality Warranty and are backed by our knowledgeable and friendly customer service support team.","FREE GIFT: A patio umbrella comes free and you need to add it to your shopping cart with the conversation set .If you forget to put umbrella to cart at the same time, please contact our customer service,we'll sort you out in 24 hours. +COMFORT: All Four chairs include integrated rocker mechanism for smooth rocking motion. All chair feet include levellers for uneven surfaces. +STURDY & DURABLE: Chairs and table's frame are made of rust-resistant powder-coated steel, and each chair can hold up to 300 lbs(MAX). The burner and control panel are made of stainless steel for a longer service life; water-resistant textilene table base with 4 removable stone look ceramic tiles. +FEATURES: Integrated push-button ignition starts and adjusts flame height easily (1 AA Battery required), up to 40,000 BTU heat, easy access to interior storage of standard 20 lb propane tank (not included). Lava Rocks shown in image are NOT included. +HIGH QUALITY CUSHIONS: Comfortable seat and back cushions feature fade-resistant and easy to clean olefin fabric. Simply wipe down with a damp cloth or remove fabric cover with convenient zipper for more difficult stains. Seat cushions include velcro ties to help hold in place.",Grand patio,Grey-Brown,us,159 +B00005OU9D,"Coleman Gas Camping Stove | Classic Propane Stove, 2 Burner, 4.1 x 21.9 x 13.7 Inches",,"Cooking power: Up to 20,000 total BTUs. Fits a 12-inch and 10-inch pan at the same time +2 adjustable burners: For precise temperature control +Wind-blocking panels: Shield burners from wind +Pressure regulator: Pressure-control technology for consistent performance, even in extreme conditions +Runtime: Up to 1 hour on high on one 16.4 oz. Propane cylinder (sold separately)",Coleman,Green,us,160 +B004FPZAA6,Worthington 303953 100-Pound Steel Propane Cylinder With 10% Valve And Collar,,"Engineered design for lightweight strength +Rugged, damage resistant all steel construction +Rust inhibiting Durabond powder coat paint +Interiors that are clean, dry and scale free +Comfortable hand-holds in the collar for easier lifting",Worthington,,us,161 +B07RJDY54G,GasSaf Soft Nose POL Propane Gas Tank Adapter Plug with Excess Flow X 1/4 Inch Male Pipe Thread Fitting (2 PCS),"Converts 1/4"" male NTP to male POL-For use on a 20lb or 30lb refillable tank to connect a regulator/valve/hose assembly.

            For your safety ALL propane appliances like gas grills, lanterns, heaters and stoves are OUTDOOR Use.

            Please double check your propane appliance connection before you order.
            (2 PCS)","Standard P.O.L. tank connection and 1/4"" male NTP to male POL, built-in excess flow protection(2 PCS) +Provides secure and airtight connection between propane regulator, propane adapter, propane valves and propane gas grill cylinders and tanks +Use for 20lb or 30lb refillable tank to connect cylinder to a regulator/valve/hose assembly +It fit for BBQ, camping stoves, propane heater, or cooking outdoor +Easy and quick to install to your propane equipment",GasSaf,2 pack,us,162 +B00L1RSKHQ,KitchenAid Built In Head Propane Gas Grill in Stainless Steel,,"Total 55, 000 BTUsTemperature gauge ensures consistent cooking for flavorful resultsEven-heat system features angled flame tamers to distribute heat evenly, prevent flare-ups and vaporize food drippings into smoky flavor infusions +No assembly required +Package Dimension : 66.04 centimeters L x 71.12 centimeters W x 91.44 centimeters H +Full stainless Steel construction",KitchenAid,Black,us,163 +B07P5KPZ1T,"GASPRO 0-30 PSI Adjustable High Pressure Propane Regulator with Gauge, 5-Foot Stainless Braided Hose, Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit","GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice! The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas,Let you adjust your fire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new. If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure. The propane hose body is made of stainlesssteel it will long lasting for your appliance This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger. Specification - Length: 5 feet / 60 Inch/152.5 cm - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator. - Inlet Pressure: 25-250PSIG - Outlet Pressure: 0-30PSIG - Max.flow capacity:136000BTU - End Connector: 3/8"" flare swivelnut; Hose connection: 5/8""-18UNF Warm Tips -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use. -Not suitable for appliances which need low pressure regulator.","【Adjustable Propane Regulator】 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs +【Accurately】 You can accurately adjust the pressure according to the built-in gauge dial +【Durable and Chew-proof】 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose +【Perfect Fit】 This 30 PSI propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more +【Brass Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare",GASPRO,,us,164 +B085Y769KW,"TheElves Fire Pit Cover,28inch Patio Fire Pit Covers Square Gas Firepit Table Cover for Outdoor Propane Fire Pit - 28x28x25inch","TheElves heavy duty waterproof Fire Pit/table Cover:
            1#. Fits TACKLIFE Propane Fire Pit Table, BALI OUTDOORS Firepit, LEGACY HEATING 28-Inch Square Gas Fire Pit Table, Diophros Propane Gas Fire Pit Table, etc.
            2#. Made of 420D heavy duty Oxford cloth, tough and tear resistant.
            3#. Waterproof design and air vents at sides can keep fire pit/table dry.
            4#. Double stitched seams add the strength of cover.
            5#. Bottom strap and two buckles for custom secure fit, the cover will not be blown away.
            6#. Protect fire pit/table from UV, rain, dust, bird's dropping etc.
            7#. Come with four useful accessories that prevent the cover from being scratched.

            Package Include:
            1 x Fire Pit Cover
            1 x Storage Bag
            4 x Accessories That Prevent The Cover From Being Scratched

            TheElves Team:
            ---We are the producers of covers.
            ---We provide high quality covers.
            ---We provide efficient logistics.
            ---We provide satisfactory customer service.","Universal Size Square Fire Pit Table Cover--- Cover size: 29.5 in(L) x 29.5 in(W) x 25 in(H), compatible with TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table. +Durable Material--- Full coverage fire pit/table cover is made of heavy duty 420D Oxford cloth, durable and rip resistant. +Water-resistant Rectangle Firepit Cover--- High density material and water-resistant coating make it waterproof cover, keeps your fire pit dry. +Windproof & Breathable Design--- Bottom strap and two buckles allows to a custom secure fit, the cover will not be blown away even if during high winds and severe weather. Structured air vents at two sides stay open to keep ventilated. +Extra Accessories--- Come with four accessories that prevent the cover from being scratched by the sharp corners of the fire pit.",TheElves,Square,us,165 +B07W87SKTP,"5 feet 0-20 PSI Adjustable High Pressure Propane Regulator with Hose, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for QCC1 Tank,Fits for Grill,Burner,Turkey Fryer,Cooker,Firepit and More","It features a 0-20 PSI adjustable high pressure propane regulator with 5ft hose and can be installed quickly and easily to propane tanks and cylinders.
            The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-20PSI )
            The size of a 3/8 flare nut is 5/8 in order to accommodate for the flare seat.

            Specification
            - Length: 5 feet / 60 Inch/152.5 cm
            - Apply to: propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
            - Inlet Pressure: 25-250PSIG
            - Outlet Pressure: 0-20PSIG
            - Max.flow capacity:136000BTU
            - End Connector: 3/8"" flare swivel nut; Hose connection: 5/8""-18UNF

            * The DozyAnt high pressure propane regulator with hose is designed to be used with high pressure propane burners.
            * There are two connections - One side works on a standard size propane tank cylinder fitting. The other side is installed on the burners
            * This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger!

            Note:
            1. No matter where you will use this hose, Please confirm that your propane appliance has a female 3/8 inch flare connector or find some propane adapters and fittings to match your propane appliances and this hose so that you can use it, and avoid wasting your money and time!
            2. In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
            ","Fits QCC1/Type1 LP gas propane tanks and cylinders and 3/8-inch female flare connection. come with pipe fitting 3/8"" flare M x 1/8"" MNPT. Great for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout. +Adjustable 0-20 PSI high pressure output propane regulator with 5 feet hose is a must have item for your propane burners, stove, turkey fryers, heaters, smokers. Not suitable for appliances which need low pressure regulator. +High quality this product itself with safety certification and excellent sealing quality is promised for your safety. This propane regulator with hose has excess flow protection for your safety and will automatically shut off. +100% solid brass corrosion resistant construction fitting, and provides secure, airtight connection between propane tanks cylinders and propane gas appliances. +No tools needed, easy and quick attachment for easier installation.",DOZYANT,,us,166 +B095JY9XMN,"Grill Cover(58-Inch), Waterproof Heavy Duty BBQ Covers, 600D Oxford Barbecue Grill Cover, Rip & Fade Resistant 3-4 Burner Gas Grill Cover Fits for Nexgrill Char-Broil Weber Brinkmann etc(Bag Included)","

            Have you already start the wonderful Barbecue party?
            Is your grill still look as new as you bought it?

            BBQ Covers Waterproof Heavy Duty --Design Especially for Your EXPENSIVE Grill.
            BBQ Covers Waterproof Heavy Duty, designed for real-life use around the home and outdoors, provides full protection for your grill from the forces of nature such as hail, wind, heat, cold, rain etc.

            How does the Grill Cover protect your expensive grill?

            1.Adopted 600D Oxford Fabric & Double-Needle Solid Stitching--Heavy duty & weatherproof & Rip-Proof
            600D Polyester Oxford Fabric, which is not easy to tear. It is more powerful to protects your grill from dust, rain, snow etc.
            Compared with 400D/210D, 600D material is much thicker and more durable. Our Grill Cover Heavy Duty Waterproof BBQ Grill Cover will companied your grill over several seasons. The next spring, you could see your lovely grill like new again.

            2.Inner Sun-Proof PVC Coating--Stay Grill Cover Black and Protect Your Grill
            With an added Sun-stabilized coating, provides exceptional protection under the sunlight. Your grill will keep as new.

            3.Extra Larger Design Ensure to Fit Various Kinds of Grills
            According to real test from our clients, the large Grill Cover Heavy Duty Waterproof BBQ Grill Cover(58""x24""x48"")fits most brands of grills, such as Weber, Char Broil etc.
            And, it also fits well for the 2 3 4 burner gas grill.
            Warm tips: Please measure your grill first before purchasing!

            4.Handle,velcro straps, Vents
            The top Handles help you easily to put on or take off the grill cover without scratching or ripped.
            The convenient velcro straps ensure tightness for extreme outdoor conditions. Don't worry the grill cover will be blown off.
            The vents help keep you expensive grill ventilation.","FITS MOST GRILLS & 2 TOP HANDLES: Extra LARGE SIZE design (58""x 24""x 48"") to better fit most gas grill including 3-4 burner grill, like brand Weber, Nexgrill, Brinkmann, and Char-Broil. Plus the side handles, you can put on or take off the grill cover effortlessly +RIP & FADE RESISTANT: The grill cover has exterior bound seams and precision two-thread stitching. Bring your grill full protection from ripped. Inner sunproof coating design provides exceptional durability to sunlight to endured the summer heat. With improved color fastness dyeing technique, the waterproof heavy duty BBQ covers always companied your expensive grill from winter to next spring +600D HEAVY DUTY MATERIAL: The grill cover made from 600D PVC-lined Oxford polyester fabric. The HIGHER the grade, the THICKER, and the more DURABLE the grill cover. Even sunlight and rains are hard to get through the high-density material tiny gap. The waterproof heavy duty BBQ covers can protect your grill from dirty, wet, rust, fog etc +100% WATERPROOF & VENTS ALLOW MOISTURE TO ESCAPE: With the thicker and high-density 600D hydrophobic Oxford fabric and inner PVC coating, don't allow any rains to stick to the surface of the bbq grill cover. Protects your BBQ grill from torrential rain, snow, frost, and fog. It also has vents that are under the wings to help alleviate moisture buildup. Enough to withstand Seattle area's all year's rainy day +2 VELCRO STRAPS: Add extra velcro straps near the bottom at both ends. Holding the grill cover in place and stop it from blowing away in strong winds. Strong enough to withstand the harsh weather with the bbq grill cover. Don't worry to have it outside on a typical wet and stormy day",Zovoty,Black,us,167 +B07QP6RCJW,GasSaf Propane Tank Gas Gauge Leak Detector - Universal for QCC1 Type1 Propane Tank Gas Pressure Meter(2-PCS),"Propane Tank Gauge
            Great for using gas grill, heaters, smoker, RV ,camp stoves and more propane gas tank cylinder appliances.And no more unnecessary trips for refills when there was still some left in the tank.
            Easy to Attach
            It fits all brands and models with a QCC1 Type1 connection and 20 lb to a 40 lb.propane bottle. This propane tank gas gauge can be worked with propane tank cylinders, propane hose and propane adapter. Great for using gas grill, heaters, smoker, camp stoves, lanterns, tabletop grills, fire pit tables, turkey fryers and more propane gas tank cylinder appliances.
            Solid Brass Withstands Weather, Scratching, Denting and Corroding
            Color Coded Dial for Easy Viewing
            How does gas pressure gauge show a leak? If you close the tank and pressure decreases over time (taking temperature into account), the needle will slowly drop to red and you may have a leak","1.Compatible with all appliances with a QCC1 / Type1 connection 20 lb to 40 lb propane tanks +2.Monitors fuel level without removing the tank. color coded dial for allowing you to see at a glance when your propane level is low,here are three levels; natural gas, low gas, supplement. +3.With leak detection function, if the leak is detected, the instrument will limit the flow to protect your safety +4.High precision meter , high quality brass, can perfectly provide oven, oirtight connection between RV and tank, very durable and sturdy. +5.Coming with dust cover. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.",GasSaf,2 pack,us,168 +B001DC5HBG,"Stansport 5-Feet Propane Hose and Regulator Assembly, Black (235-5)",,"Handy five-foot Propane Hose and Regulator Assembly tube +Functions as an extension cord for your outdoor propane appliances +Designed for use with Stansport's cast iron propane stove models 208, 209, and 210 +11-inch WC pressure setting and 1/2 PSI output offer 75,000 BTU capacity +Not universally compatible with all brands, Use caution when using propane appliances, For outdoor use only",Stansport,Black,us,169 +B00CRW6ZP8,Bull Outdoor Products 26038 Liquid Propane Outlaw Drop-In Grill Head,,"60, 000 BTU's of cooking power, Liquid Propane Outlaw Drop-In Grill Head +Unit Dimensions: 32.25"" W x 24.12"" D x 21.25"" H | Cooking Grid Dimensions: 30 X 19"" +Warming Rack 210 Sq. In. | Cooking Surface 810 Sq. In. +5 Porcelain Coated Bar Burners for years of even heating and trouble free cooking +305 stainless Steel construction, a single piece dual lined Hood and solid stainless steel grates",Bull Outdoor Products,white,us,170 +B00IREGQAE,"Weber 62753 19-1/2"" LP SEAR Burner Tube for Genesis Grills w/ Front Mounted Knobs from 2011 and Newer",Weber LP Sear Burner Tube. Fits Propane Genesis Grills with Front Mount Control Knobs form 2011 and Newer.,"19-1/2"" Weber LP SEAR Burner Tube. +Fits Propane Genesis Grills with Front Mount Control Knobs from 2011 and Newer.",Weber,,us,171 +B007O0MIIG,"Hiland HLDS032-GTTHG Portable Propane Table Top Pyramid Glass Tube Patio Heater, 9500 BTU, Bronze",,"39-Inch tall portable glass tube patio heater +Hammered Bronze finish. Quartz Glass Tube +Heat output: 9500 BTU's. Electronic Ignition +Gas type: Propane +Uses a 1 lb propane tank (lasts 2-3 hrs. on high)",Hiland,Bronze,us,172 +B001EHKQ2A,"Stansport Single Burner 5,500 BTU Propane Stove, Black",,"Durable heavy gauge steel with baked on enamel finish +Individual regulator on/off control knob adjusts burner up to 5500 BTU's +Stove to cylinder tube has on/off valve and fits 16.4-ounce disposable propane cylinder (not included) +Wind baffles supports cookware and shields burners +Low profile base for stability",Stansport,Black,us,173 +B016YLUXLE,"Propane Fuel Cylinders, 4 pk./16 oz.",

            Propane 16.4 Oz Camping Cylinder (4 Pk.) 333264

            ,"8.0 LBR +310326 332418 335648 333264 +014045324069",Coleman,,us,174 +B00NG14614,"Bond Manufacturing 67836 54,000 BTU Aurora Camping, Backyard, Tailgating, Hunting and Patio. Locking Lid & Carry Handle Portable Steel Propane Gas Fire Pit Outdoor Firebowl, 18.5"", Bronze",,"Includes lid, stones, tank holder, gas hose and regulator +Steel frame with rubbed bronze finish +Uses 20 pound propane tank (not included) and has a 50,000 BTU output +Safe for wood decks and great for camping or tailgating +Dimensions are 18.5"" wide and 14.7"" high",Bond Manufacturing,Bronze,us,175 +B06WLHJ8GJ,"Grill Cover, Waterproof Breathable Outdoor Gas BBQ Grill Cover Large for Weber Holland Char Broil Brinkmann and Jenn Air (Extra Large_75x28x46 inch(WxDxH))","
            Fellie Cover BBQ Grill Cover---Provide full protection for your grill

            Wide Compatibility:
            This gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broil. Check your grill's dimensions for proper fit.

            Adjustable Funtion (Wind-proof):
            Built-in tighten rope at the bottom, make grill covers more secure fit and tighter, ensure that the cover is good in windy conditions.

            Water-resistant:
            This BBQ grill cover is made of 100% 210D polyester hydrophobic fabrics, protecting your grill from the harsh environment, such as heavy wind, rain, insects, snow, etc.

            Durable Burner Gas Grill Cover:
            Polyester fabric add extra inner coating, give double protection for the barbecue cover from rain and cracking.

            Firm Protection:
            Double stitching (Sewing), which is more durable than one-line stitching.

            Easy Installation:
            You can easily put this grill cover on or off.

            Easy to store/carry:
            Also included is a waterproof carrying bag that allows for easy storage and transportation when not in use.

            Note: Please keep away from open flame and other sources of ignition.


            Item Color: Black
            Package included
            1 * Grill Cover
            1 * Packing Bag","Find the Perfect Cover - Measures 75""Wx28""Dx46""H (190x71x117cm). This BBQ grill cover fits for grills up to 75 inches. Fellie Cover gas grill cover fits most brands like Weber, Holland, Jenn Air, Brinkmann and Char Broi, pls check your grill's dimensions for proper fit +Durable Material - Made from 210D woven polyester with PVC coating that can support weather resistant, water resistant and rip resistant for all year round +Easy to Place and Remove - Lightweight with a soft feel and extra breathable material that will not become stiff even in the coldest weather conditions, this cover is very easy to place and removes effortlessly in seconds +Secure Fit & Wind Resistant - The bottom of the cover has a drawstring so that you can synch it up nice and tight so that it won't blow away in the wind +Easy to Clean - Extremely easy to clean, wipes with a damp cloth or hose with water and the dirt will come off easily. Come with a storage bag for easy storage",F Fellie Cover,,us,176 +B094MW12HR,"SIRUITON Heavy Duty Propane Tank Cover Fits Standard 20 lb Tank Cylinder, UV and Weather Resistant,Ventilated with Storage Pocket Black","Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve.Propane Can Protection Covers Fits Standard 20 lb Tank Cylinder, Propane Tank Cover with UV Protective Water Resistant , Black (Only Bag)","DRESS UP YOUR GRILL-Hides the hideous tank and sharpens up the look of your grill +PROPANE GAS TANK COVER- Your storage cover is 12.5 inches in size and 11.8 inches in height,which includes Two-way zipper around the top, The convenient side flip flap makes the hose easy to pass through and open or close the valve. +WATER-RESISTANT GAS TANK COVER- Thicker 600D Oxford cloth waterproof outer material and waterproof inner material.Outer material that is easy to erase and clean.It offering a complete cover to your propane tank. +EXTERNAL STORAGE BAG:Your Propane Can Protection Covers have 2 ventilation grommets provide ample air flow, and a gas pipe storage bag on the side. You can put other small objects in your pocket for quick access and better storage. +GREAT MULTI GIFT for OUTDOOR LOVERS-This Ventilated Gas Can Cover is a great gift that can be used for your camping stoves,outdoor grills, braziers, outdoor gas heaters and any other uses of the traditional 20LB propane gas tank.",SIRUITON,Upgrade-2,us,177 +B01MXN574C,"Homitt Gas Grill Cover, 72-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black","Homitt waterproof grill cover fits Most Brands of Grill; it makes your grill life more convenient and easier!

            High Quality
            The BBQ grill cover is made of high end 600D Oxford fabric, which enable itself to protect your gas grill from hail, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your grill. Strong handles and straps to keep it secure on the grill.

            Fit More Brands
            The barbecue grill cover fits many brands. The size is 72” long * 26” deep * 47” high. Do not hesitate that you buy a wrong cover for your grill. Our grill cover can fit most grill.

            Advantages
            1.If living in a windy area, our bbq grill cover has fasteners on two sides to keep the cover in place. Having the fasteners that are easy to strap together, your grill can sit outside all seasons.
            2.The grill cover inside has a weather proof liner so you don't have to worry about taking the cover off and your grill being wet or having water spots after a storm. In addition to stopping water from reaching the grill it also prevents dust, leaves etc from accumulating on any surface as well as stopping sun damage from fading.

            Easy to Install
            Only one person can do it, please pad handles and straps to keep it secure on the grill. You can easy to put the grill cover on or off by yourself.

            Package includes
            1*BBQ grill cover
            ","Dimensions: This Homitt bbq cover measures 72""L x 26""W x 47""H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc. +Upgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new. +Fading Resistant: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering. +Handles And Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away. +Durable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).",Homitt,Black,us,178 +B000WB2BH2,"Gas One 2102 New Improved 6 ft Low Pressure Propane Regulator and Hose Connection Kit for LP/LPG Most LP/LPG Gas Grill, Heater and Fire Pit Table,Brown/A",,"Regulator and hose ready to use +Hose length: 150cm (59in) +Connecting outlet: 5/8"" Unf +Incompatible with Bunsen burner",GasOne,Brown/A,us,179 +B00D3P0QAI,Thermo Tiki Deluxe Propane Outdoor Patio Heater - Pyramid Style w/Dancing Flame (Floor Standing) - Stainless Steel,,,Thermo Tiki,Stainless Steel,us,180 +B00ED9WMNC,Camco 40549 Replacement Cap Kit for New Style Propane Tank Cover (Black),,"Replacement cap for new style RV propane tank covers +Functional design for easy access to both propane tanks and changeover regulator +Includes attachment hardware +Made of heavy duty, UV stabilized polypropylene +Black",Camco,Black,us,181 +B074W2B6M8,"Homitt Gas Grill Cover, 60-inch 3-4 Burner 600D Heavy Duty Waterproof BBQ Cover with Handles and Adjustable Straps for Most Brands of Grill -Black",,"DIMENSIONS: This Homitt bbq cover measures 60""L x 28""W x 44""H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore, etc. +UPGRADED PREMIUM MATERIAL: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, sun, dust, and so on, keep your barbeque grill clean like new. +FADING RESISTANT: Sun resistant design prevents sun damage. Sun resistant layer protects the grill cover from fading, extends service life. NOTE: Allow the grill to cool before covering. +HANDLES AND STRAPS: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened adjustable nylon sticker, you can tighten the cover securely over the grills, so the wind does not blow it away. +DURABLE SEWN: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing).",Homitt,Black,us,182 +B00KM9ATAA,"EDMBG 3 Pack Gas LIGHTERS 11"" Refillable Butane BBQ Kitchen Fireplace Grill Utility","BBQ Grill Lighters - Extended Reach - 11"" total length - Safety Lock - to keep safe from the little ones - Flame Size Regulator - for all condition - Refillable No More burnt fingers! Great for using around your home, patio, garage, camper, truck... WHEREVER!","Extended Reach - 11"" total length +Safety Lock - to keep safe from the little ones +Flame Size Regulator - for all condition +Refillable",EDMBG,Multicolor,us,183 +B00IZCNOXK,"Flame King - YSNHT500 RV Or Trailer Mounted BBQ - Motorhome Gas Grill - 214 Sq Inch Cooking Surface - Adjustable Flame Controller, Black",,"RV/TRAILER COMPATIBLE - Flame King’s BBQ and Grill station comes with a bracket to mount right onto the side of your motorhome, RV or trailer so you can have a cookout wherever you are! +COMPLETE GRILLING STATION - This incredibly convenient motorhome compatible gas grill w/ 12,000 BTU includes an adjustable flame controller, upper grill deck, and 214 square inches of grilling surface +MOUNTABLE or FREE STANDING – The hanging rack can also be used as legs to make the grill free-standing, making this versatile grilling station perfect for tailgating and camping! +SECURE - Designed with locking retainer pins to secure on mounted bracket. Dual locking lid for secure storage. Pallet quantity: 42 pieces +PLEASE NOTE - To pair this Grill with the RVs self-contained LP gas system use with the FLame King 48"" Quick Connect Hose, item 100395-48. Or to connect it to any standard propane cylinder, use with the Flame King 96"" Quick Connect Regulator Hose, Item LPRH8",Flame King,Silver,us,184 +B00FL8LL7M,"Hiland RGLASS-BB Pit Fire Glass i n Bahama Blend, Extreme Tempature Rating, Good for Propane or Natural Gas, 10 Pounds, 10 lb",,"Fire glass is very easy to maintain because it emits no ash, soot, or smoke. Thus you can spend more time enjoying your fire pit/place and less time cleaning it +Our fire glass is not just exquisite to behold, it is also very practical. It does a wonderful job of covering the entire floor of a fire feature, effectively hiding the unseemly pipes and tubes +Heat Rating: Higher temperature when compared to logs, lava rocks, stones, etc. +Ideal for both indoor or outdoor environments, fire glass may be used in either natural gas or propane fires +Available in 10 and 20 pounds",Hiland,Bahama Blend,us,185 +B07Y337Y8T,"COSIEST Outdoor Propane Half-Sphere Fire Bowl Pit, Greyish-Green Hardrock 30-inch Round Graphite 40,000 BTU Stainless Steel Burner, Wind Guard, Tank Outside, Free Lava Rocks, Waterproof Cover",,"✅【 Great Bowls of Fire! 】: Long after the sun sets you and your guests will be rocking the night away with this stately simulated-stone centerpiece. Tempered glass wind guard helps keep the flames lit. Clean burning propane flame takes the chill out of the air, provides a comforting glow, great ambiance, and lets you know the night is young and the party’s just begun in patio space or backyard. +✅【 Rockin’ Bowl 】: The Greyish-Green finish goes with any outdoor decor and compliments most modern furniture designs indoors and out. crafted out of durable, fire-retardant magnesium oxide with a stainless steel burner bowl, resistant to heat and tempered glass wind guard. From the control panel, you can push a button to light the fire and set the intensity with an adjustment knob. +✅【 Fire is so Delightful 】: Complimentary red lava pieces fill the burner bowl and radiate the warmth as they are heated by the flames. No soot or ash to clean up and no smoke as with wood burning or charcoal fires. Clean burning propane stays lit with no stoking and is better for the environment. The Firepit table also comes with a waterproof cover to keep it clean and dry when not in use,wind guard keep the flames steady. +✅【 Weights and Measures 】: The perfect size for a modern deck, the unit has a 30-inch diameter and is 17-inches from the ground for an almost sunken feeling. The fire bowl itself is 21-inch round. It fits a 20 gallon propane tank, which should be put outside the fire table. Considering the look of solid rock, you’ll be pleasantly surprised that it only weighs 53 lbs and can be picked up and moved from the side handles by two people. +✅【 Warranty and Service 】: We offer a worry-free buying experience with our friendly staff waiting to answer your questions or guide you through the setup. Plus you get a one-year warranty for replacement of parts or accessories. Feel free to call or drop us an email. Operators are standing by!",COSIEST,Greyish-Green,us,186 +B07Z3MSPMV,"BALI OUTDOORS Portable Patio Heater, Outdoor Propane Table Top Heater, Bronze","This patio heater includes a solid weighted base that adds stability and durability to it. Additionally, a safety grill guard, auto shut off tilt valve and an oxygen depletion sensor.","☀LIGHT WEIGHT AND PORTABLE – This Table Top Patio Heater is designed for convenience and style. Its dimension is 34 in H x 20 in dia. and only weight 14lbs, uses 1lb propane tank (not included), adjustable to 10,000 BTU's +☀SAFTY DESIGN –The patio heater will off automatically if it tip over with the gas safety shut-off switch, also the screen shield prevent to burn by accident +☀WILDLY USE – Our patio heater has ODS protection device, it will automatic cutout source gas when the lack of oxygen, it means you can use it outdoors as well as indoors and more scene you want to use +☀EASY AEESEMBLY – BALI OUTDOORS patio heater is easy assembly just by following the starting directions and you will finish it less than hour +☀MULTIFUNCTION AND PRACTICAL:14 lbs weight make this portable table top patio heater easy for transport and ideal for patios and balconies, camping, tailgating",BALI OUTDOORS,bronze,us,187 +B00I8IY6E2,"Flame King YSN201BT 20 Pound Steel Floor Buffer Propane Tank Cylinder with Vapor Valve and Level Gauge, White",,"For use on propane powered floor waxing, burnishing and polishing machine that use propane. +Comes with convenient installed propane level gauge, so you can always tell how much propane you have. +Powder coated for long lasting exterior protection +Newly designed all-in-one multi valve +Powder coated for long lasting exterior protection, high grade steel welded construction",Flame King,White,us,188 +B014DAVHSQ,ThermoPro TP08S Wireless Digital Meat Thermometer for Grilling Smoker BBQ Grill Oven Thermometer with Dual Probe Kitchen Cooking Food Thermometer,,"300ft remote range and hassle-free setup: Wireless meat thermometer monitors your food and grill temp up to 300 feet away giving you the freedom to tend to more important matters while cooking unlike with bluetooth meat thermometers which limited range of only 100ft; BBQ thermometer is pre-synchronized, simply insert batteries and the smoker thermometer is ready for use +Dual probes for food and BBQ: Meat thermometer oven safe with highly accurate stainless steel food probe and oven/ grill/ smoker temperature probe, to allow you to monitor both food and ambient temperature simultaneously, making the turkey thermometer especially suitable for long smokes or grilling sessions +Food and ambient temp alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQ +Convenient kitchen timer: Grill thermometer features countdown and count up timer can be active while also monitoring meat temperature; no need to waste money on purchasing an additional cooking timer to keep track of your side dishes, our kitchen thermometer takes care of everything +High accuracy and wide temperature range: Cook anything with ease with wide and accurate temp range: 32°f to 572°f (0°c to 300°c) and high accuracy of 1. 8°f ( 1°c); Probe thermometer features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly, can display both fahrenheit and celsius readings",ThermoPro,Orange,us,189 +B000QYNUXE,"Garcima Paella Dual Ring Butane/Propane Gas Burner, Black, 40 cm",,"Fits 22 inch paella pans and smaller. +Two concentric rings of flame, each independently controlled by its own knob. +Outer ring is 16"" in diameter. Inner ring has 8 1/2"" diameter. +Great for making paella, camping, outdoor kitchens, and brewing beer. +Made in Spain. CE certified.",La Paella,Black,us,190 +B000QYNUXE,"GARCIMA 5020091 Paellero Gas Butano 400 mm, Hierro, Negro",,"Medidas: 400mm. +Color negro. +Muy práctico y fácil de usar. +Articulo también conocido como hornillo, hornilla cocina, fuego paellas. +Ideal para cocinar con paellera.",Garcima,Negro,es,190 +B07XKXSSND,"SPARC Propane / MAPP Torch Trigger Start - Gardening Outdoor Weed 20,000 BTU 1YR USA Warranty","

            Gardening & Outdoor Torch - Great for Weeds, Ice, Camp Fires and more!

            This torch is great for use in gardening, construction, grill ignition, and more! The 20,000 BTU output makes this tool powerful enough to tackle the toughest weeds, thaw frozen pipes, and repair damaged blacktop.

            Lightweight, Heavy Duty Design

            The ergonomic foam handle on the torch is slip-resistant and perfectly balanced for maximum comfort. The lightweight, curved design model is key to managing the fatigue of any user. This tool has a fully adjustable brass knob for simple gas flow control.

            Easy to Use Trigger Start

            The torch is powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame’s output. Effectively treat small and large areas with this torch.

            A Safe Long-Reaching Handle

            The handle reaches 34” in length which helps to reduce unnecessary bending and crouching while in the garden or on the job site. This torch also lessens the chances of sustaining burns or other injuries when igniting a grill, lighting a campfire, or controlling garden weeds.

            One Year Warranty

            Backed by our 1 year USA warranty against manufacturing defects. We are based out of Denver, CO, and offer customer service and support via phone, text, and e-mail.

            ","OUTDOOR UTILITY TORCH ✔ Great for use in gardening, construction, grill ignition, and more. +TRIGGER START ✔ Powered completely by propane or MAPP gas. Simply fasten a small sized propane or MAPP gas cylinder tank (not included) to the end. Then squeeze the trigger and your torch will fire right up. The control valve regulates the pressure of your flame, so you are always in control of the flame’s output. +LIGHTWEIGHT, HEAVY DUTY ✔ Slip-resistant foam handle for maximum comfort. +LONG-REACH KEEPS YOU AT A SAFE-DISTANCE ✔ Reaches 34” in length to reduce unnecessary bending and crouching while landscaping, and the chances of sustaining burns or other injury when igniting a grill or campfire. +POWERFUL ✔ 20,000 BTU output, fully adjustable via knob.",SPARC,Black,us,191 +B07X6CJ99H,"WADEO 4FT 0-30PSI Adjustable High Pressure Propane Regulator with Hose and PSI Gauge, LP Gas Grill Regulator Hose with 1/8 MNPT Pipe Fitting for Grill, Burner, Fryer, Cooker, firepit and More","4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge Material:PVC、cuprum
            Length:  4 Feet
            Weight : 20.46oz
            Inlet Pressre: 25~250 PSIG
            Outlet Pressure: 0~30 PSIG adjutable
            Gauge reading: 0 – 60 PSI (1- 400 xkpa ) 
            Outlet Connection: 5/8""-18 UNF Female flare swivel fitting( 3/8"" SAE)
            Certificate: CSA
            Max. flow capacity:
            150,000 BTU/hr.
            Works with QCC1/ Type 1 propane tank
            ","Output pressure 0~30 PSIG adjustable regulator .Hose measures 4 Feet long.Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy. +Easy and quick to install. Type 1(QCC 1) tank end connector & 5/8""-18 UNF outlet connection(3/8 inch female flare fitting has an outside diameter of 5/8 inch). +3/8” female flare fitting, fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit, hot water heater, as long as your appliance connection is 3/8"" male flare connector. +3/8"" Female Flare Fitting has an outside diameter of 5/8"", come with pipe fitting 3/8"" flare M x 1/8"" MNPT. +CSA Certificated : Pass CSA certificate for your safety, propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.",WADEO,,us,192 +B01M2YIWRF,Classic Accessories Veranda Water-Resistant 7 Inch Propane Tank Cover,,"Fits 20lb. propane tanks 7 inches DIA (Top) x 13 inches DIA (Bottom) x 19.5 inches H +Gardelle Fabric System features an elegant fabric top with a protective water repellent and resistant laminated backing and a protective dark splash guard skirt +Click-close straps snap at front to secure cover on the windiest days +Elastic hem cord for a tight and custom fit +Air vents reduce inside condensation and wind lofting",Classic Accessories,Pebble,us,193 +B07263CMYG,KIBOW 0~30PSI High Pressure Adjustable Propane Regulator with 4FT Hose-Type 1(QCC 1) Connection,"Perfect for melting aluminum cans. Perfect for forging steel for swards,knives etc.
            Specifications:
            -Hose Length: 4 Ft/48 Inch
            -Inlet Pressre: 25~250 PSIG
            -Outlet Pressure: 0~30 PSIG adjutable
            -Outlet Connection: 3/8"" Female flare swivel fitting","Output pressure 0~30 PSIG adjustable propane regulator with 4 Feet long hose. +Built-in Excess Flow Protection and Thermal Protection for your safety. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shutoff the gas flow automatically. The regulator can still work when those problems improved, unless it's defective itself. +Type 1(QCC 1) tank end connector & 5/8""-18 UNF outlet connection-3/8 inch female flare fitting has an outside diameter of 5/8 inch. NO PTFE TAPE NEEDED FOR CONNECTION SEAL. +Easy and quick to install. Perfect for propane forge/foundry. +Please DO NOT apply this regulator to an appliance which supposed to equipped with a LOW PRESSURE regulator.",KIBOW,0~30PSIG,us,194 +B07JNK5CHG,"High Pressure Burner Propane Iron Wok Burner 5B Fast Stove 100,000 BTU","Gets the job done FAST with a powerful 100,000 BTU/Hr burner. Extra Heavy duty wall cast iron construction stands up to frequent movement from one location to the next. This stove comes with a fully adjustable regulator that connects just like a gas BBQ to refillable propane tanks. Round or flat bottom woks fit securely and safely into the sturdy cast iron supports. Stand is not necessary, simply set it on the floor and hook it up to your existing propane tank. Will fire a 20 gallon pot of water to boiling in about 10 minutes as opposed to almost an hour on a commercial range.","Heavy-duty fast stove is built with a burner that can quickly be adjusted to low and high settings +Powerful 100,000 BTU/Hr + burner +Includes hose and regulator and only requires standard size propane tank +Dimensions: 13"" Diameter, 10 inches high and 20 inches overall length, Burner is large enough to accomodate 14 to 30 inch woks. Weight: 19lbs +Matchless ignitor",LW,,us,195 +B07TNWQV77,XtremepowerUS High-Pressure Single Burner Outdoor Stove Gas Propane Cooker Regulator and Hose Outdoor Cooking Camping Burn,"High Pressure Burner Outdoors Cooking Gas Single Propane Stove Camping. This Outdoor Gas Cooker Classic High Pressure Cooker with Windscreen put simply, the best on the market! Strength, function and safety... and the most efficient outdoor gas burner sold. Features: From tailgating to the backyard chef, cook-off chili to the day’s crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control Specifications: Color: Black Material: Cast Iron Output: 50,000BTU Fuel Type: Propane Regulator: 5PSI Overall Dimension: 15""(W) x 15""(L) x 13""(H) Propane Tank Included: No Assembly Required: Yes Package Contents: High-Pressure Stove","From tailgating to the backyard chef, cook-off chili to the day's crab catch, or a seasonal home brew; the Classic High Pressure Outdoor Propane Cooker is reliable, easy-to-use and portable +Wide-leg tripod design for extra stability; Flame is adjustable using the needle valve on the regulator kit included, for a wide range of flame control +Perfect for Brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. Strong and long lasting +Cooker features a solid, welded steel frame with three widespread legs, a broad 14-inch diameter cooking surface, and full windscreen protection for cooking on windy days +Easy use and setup, durable and supportive, Allows pots to sit on grate easily, Very strong and sturdy",XtremepowerUS,Black,us,196 +B00NCSUZBQ,"Magma Products Newport 2 Classic, Gourmet Series Gas Grill, Multi, One Size",,"New beautiful rounded edge design Redesigned dynamic combustion system New electronic ignition +Made in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer +Equipped with integrated fold-away legs Locking front access grease tray 9""x18"" (162 Sq. In.) grilling area +Burner BTU output: 11,200. Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems",Magma,Multi,us,197 +B00NVUUPEM,Coleman Propane Fuel Case of 6,"Keep your Coleman lanterns, stoves, grills and other appliances running on your next camping trip with the Coleman 16 oz. Propane Cylinder. This cylinder features a portable design for easy transportation and a pressure-relief device on the shoulder to help ensure safe use. Holds 1 lb. of propane. Green.",,Coleman,,us,198 +B0765BJV74,"Grillman Premium (58 Inch) BBQ Grill Cover, Heavy-Duty Gas Grill Cover For Weber, Brinkmann, Char Broil etc. Rip-Proof , UV & Water-Resistant",,"The 58"" x 24"" x 48"" Grillman Grill Cover / BBQ Cover fits popular gas grill models including Weber Spirit II E-310, Weber Genesis II EX-335, EX-315, E-335, E-315, E-310, S-335, SX-335; Char Broil Performance Series 5-Burner, Performane Series 6-Burner, Commercial Series 4-Burner; Nexgrill Evolution 5-Burner w Side Burner; Dyna Glo 4-Burner, 5-Burner, Premier 3-Burner, Premier 5-Burner. Please refer to the infographic on our Brand Page for additional information! +Secure Fit and Wind Resistant. Never worry about your grill cover blowing away in strong winds thanks to the attached fabric hook and loop straps that can be tightened for a perfect fit. Our cover design is uniquely fitted with convenient side straps to guarantee tightness for extreme outdoor conditions. +Easy to clean. Waterproof design means cleaning your Grillman Grill Cover is as easy as spraying with water and sun-drying. The Grillman Grill Cover will look good and protect your bbq grill or gas grill for years to come! +Regardless of what you're looking for, we have you covered: cover for gas grill, weber grill, charbroil grill, or weber gas grill, weber grill covers, weber genesis grill cover, charbroil grill cover, gas grill covers, weber spirit grill cover. +Please click the ""Visit the Grillman Store"" link to match your grill to the Grillman grill cover that is perfect for you! You can find the link just below the Product Title on this page!",Grillman,Black,us,199 +B00ARJOTSI,Eisco Labs Liquid Propane Bunsen Burner with Flame Stabilizer and Air Vent Adjustment,"Lab quality gas burner with an aluminum burner mixing tube, brass flame stabilizer, and a die cast zinc alloy base. It comes equipped with a serrated inlet for 6 to 8 mm tubing. The flame stabilizer makes this a safer burner than many others out there. Base diameter is 80mm. Height is 160mm. Burner tube diameter is 13mm.

            THIS IS THE LIQUID PROPANE (LP) MODEL. May come with a gold or blue base.","Liquid propane gas bunsen burner +Aluminum burning mixer tube with brass flame stabilizer +Accepts 6 to 8mm tubing +Base diameter - 80mm, height - 160mm, burner tube diameter - 13mm +Die cast zinc alloy base. May come with a gold or blue base.",EISCO,,us,200 +B01LYQLDVJ,"Stanbroil 3/8"" X 18"" Non-Whistle Flexible Flex Gas Line with Brass Ends for Natural Gas or Liquid Propane Fire Pit and Fireplace","Key Features:

            - This Non-whistle corrugated flex gas line is designed for indoor and outdoor use with gas ranges and furnaces.
            - Naturally corrosion-resistant to increase flexibility quality flared end fittings to prevent liquid leakage.
            - Provides extra corrosion protection from accidental contact with common household chemicals.
            - Non-whistle corrugated flex gas line connector can be used for fire pit and fire pit pan.

            Compatibility:

            ✔ Propane
            ✔ Natural Gas
            ✔ Gas Fire Pits
            ✔ Gas Fireplaces
            ✔ Gas Log Sets

            Tips for checking and addressing problem of whistling

            ➤ Flex Line Problems:
            1) Used a whistle-free line with varying ridge sizes, which helps to eliminate noise.
            2) Chosen a line with a wider diameter to minimize whistling by allowing the right amount of gas to flow to the burner at a lower rate of speed.
            3) Taken care to avoid sharp 90-degree turns and/or kinks in the line during installation.

            ➤ Gas Pressure is Too High
            ~ When a high level of pressure is applied to a small opening, the result is a whistling sound. This is the mechanism at play when the line pressure in your fire pit gas installation is too high.

            ~ Since natural gas is typically transported at high pressures, a regulator is often required to mitigate this pressure before the gas reaches the burner (Keep in mind that this work should only be performed by a gas installation professional, since they have the know-how to size and install the proper regulator for your fire pit configuration). Pressure guidelines are as follows:
            . Natural gas: Between 3.5” WC and 7” WC.
            Propane: 7” WC and 11” WC
            ","Easy to installation and use, highly durable, Corrugated flexible flex gas line with feature of high temperature resistance +3/8"" OD x 1/4"" ID 18 inch Stainless steel pipe coated black gas line with fittings +3/8"" Male Flare x 1/2"" Male NPT fitting end, 3/8"" Male Flare x 1/2"" Female NPT Fitting. Brass 90 degree fitting for customer connection convenience +CSA certified, fit for NG or LP fireplaces and <90K BTU fire pit and fireplace burners +There is a staggered pitch every 2"" to Eliminate Whistling",Stanbroil,Black,us,201 +B078K8DSXC,"Gas One 2106 3 ft Regulator Fire Pit Grill Heater Propane Hose, 3 feet",,"✓ A TOP QUALITY PROPANE REGULATOR AND HOSE - maxing out at 80, 000 BTU, this 3Ft low pressure propane regulator is fiber reinforced to ensure quality performance. The hose is the perfect fit for a wide variety of grills, fire pit tables, and other propane appliances +✓ LONG LASTING AND DURABLE - Gas One’s 2106 Low Pressure Propane Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2106 ensures a stable connection and a leak-free experience +✓ MEASUREMENTS- The 2106 Propane Hose measures at 3ft long (91. 4cm) and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside ⅜-inch flare fitting and has an outside diameter of ⅝ inches +✓ READY FOR US - The low pressure hose is ready to use right out of the box and requires no additional tools to set up. Simply connect the regulator to the tank and appliance when ready to use",GasOne,,us,202 +B08TRF6CMF,"samdew 20lb Propane Gas Tank Cover with Side Flip Flap and Stable Tabletop Feature, 2 Storage Pockets, Ventilated with 4 Holes, Water & Wear-Resistant, Black, Bag Only",20lb Propane Tank Gas Cover,"【Fit Well】: The side zipper allows you to put the cover on or off easily. The drawstring design at the bottom can make the cover fit the tank better. +【Outside Storage Pocket】: A storage pocket with flap on each side. You can put a lighter and other small objects in the pocket, to reach them in a quick access and better storage. +【Humanized Design】: The convenient side flip flap makes the hose easy to pass through and open or close the valve. 4 ventilation grommets provide ample air flow. +【Stable Tabletop Feature】: The top of the bag is lined with sturdy wooden pad, making it a stable and non-shaking table which provides you with a place to put the items and protects the tank. +【Protect Your Tank】: Made of water-resistant nylon that protects your tank from scratches and rain during transportation. We are committed to providing you with a better outdoor experience.",samdew,,us,203 +B078RGBKN7,"SHINESTAR 0-20 PSI Adjustable Propane Regulator with Hose (5FT), Perfect for Turkey Fryer, Grill, Gas Burner, Fire Pit, Orifice Connector Included","Get it, you can control the temperature of your appliance exactly what you want

            Description
            0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
            This is an essential part of converting your fire pit/table to a larger flame
            Perfect for burners, fire pit, turkey fryers, smokers, gas grill,stove, cooker, hot water heater
            Comes with a brass orifice connector, 3/8"" Flare M x 1/8"" MNPT
            SHINESTAR propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.

            Feature
            Length: 5 feet/ 60inch
            Hose Connection: QCC1/Type1 x 3/8'' female flare fitting
            Outlet Outside Diameter: 5/8""-18 UNF
            Orifice Fitting Connector: 3/8"" Flare M x 1/8"" MNPT Pipe Fitting
            Gas Flow: 120,000BTU/Hr
            Material: Durable rubber hose and solid brass fitting
            Warm Tips
            - In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before you use.
            - Please double check your propane appliance/adapter connection is 3/8"" Male flare fitting

            Note: For Outdoor Use Only.
            ","【Adjustable】 The regulator allows you to adjust the pressure from 0-20 PSI, which can control the flame intensity for need +【Multi Purpose】 Perfect for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more +【Well Made】 Durable rubber hose and long-lasting brass fittings, providing a sealed tight connection for security +【Standard Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare +【Extra Bonus】 Comes with a brass orifice connector with 3/8"" Flare M x 1/8"" MNPT",SHINESTAR,Black,us,204 +B07D9GZ43Y,"SHINESTAR 6FT Braided Propane Hose Extension with Both 3/8 Inch Female Flare Ends, Perfect for RV, Griddle, Patio Heater, Smoker, Fire Pit","ONLY use for low pressure appliances 1.SHINESTAR Propane hose assembly 72 inches long with a 3/8 inch with female flare fittings on both ends. 2.Perfect for use with RV, gas grill, propane heater, stove, fire pit table, propane smoker, and more. Used to connect existing propane gas line to appliances equipped with the 3/8 inch male flare connection. 3.If your're trying to extend the hose on your propane line, you can use this in combination with a 3/8 flare to 3/8 flare brass adapter NOTE: - Pay attention of the sharp edges when unpackaging and installing, better wear gloves","【Quick & Handy】 Propane hose extension is designed for extending the propane line on gas appliances. +【Multi-Purpose】 Works with RV, griddle, grill, stove, fire pit, heater and so on. +【Exclusive Material】 Made from braided stainless steel and solid brass, rust-proof & leak-free. +【Perfect Length】 6-foot long, more flexible to move grill anywhere you want. +【Brass Fittings】 3/8 inch female flare fittings on both ends.",SHINESTAR,,us,205 +B0771WRDGT,"Concord Deluxe Banjo Single Propane Burner; 200,000 BTU Portable Outdoor Stove for Camping Cooking, Home Brewing, Making Sauces; 16"" Square","

            The Concord single propane burner is built like a tank.

            Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator and hose, one burner head (replaceable) and stand. Suitable for home brewing, canning, making sauces, outdoor cooking, and so much more.

            For the holiday season, this is the perfect burner for your turkey fryer.

            To go camping, this portable gas stove would allow easy carrying and storage into small spaces by removing the legs. Connect a propane tank, put on a wok or stock pot, and your camping kitchen is ready to go….

            For home brewing and sauce making, this 1 burner gas stove can hold a stock pot up to 200 quarts.






            Measurements: Burner Stand 16.5"" Wide x 16.5"" Height

            Burner head is 10"" Wide.






            Concord burners - make every outing count.

            ","Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5""x16.5""x16.5"". +Burner can burn up to 200,000 BTU. +High pressure CSA Certified 20 PSI regulator, hose, and connector included. +Stand has detachable legs for easy storage when not in use. +Capable of supporting up to 400 LB or 200 QT pot filled with liquid.",Concord,Black,us,206 +B083GGFXFT,"SHINESTAR Propane Tank Gauge Level Indicator (2 Pack), Upgraded Propane Gauge for 5-40lb Propane Tank, Gas Grill, Heater, RV Camper, Cylinder and More, 3 Ranges","SHINESTAR Upgraded Gauge display accounts for ambient temperature change to more accurately understand how much propane is left.

            Description
            ✔ Ability to check the fuel level without having to remove the tank.
            ✔ Checks for leaks on propane appliances
            ✔ See at a glance when your propane level is low
            ✔ Coming with dust cover. No tool installation required and the large knob allowed for hand tightening

            What is it use for?
            It fits all Type1 connection propane tank. Used with BBQ gas grill, heater, RVs, boats and more propane appliances and worked with propane regulator with hose.
            How to detect leaks?
            To use it as a leak tester, you turn off all propane appliances, open and close the tank, then wait a while to see if the pressure goes down. If it does, you know you have a leak.

            ★ NOTE: Will not read levels immediately: begins working when propane is flowing
            ","【Awesome Connection】 Work with 5-40lb propane tanks and propane hose with QCC-1 (Acme Nut) or P.O.L. +【Double Function Gauge】 Three zones show the remaining gas level depending on the ambient temperature. Also has leak detection capability for safety +【Multi-Purpose】 Great addition to grill, RV, camper, heater, generator, fire pit, etc. No more running out in the middle of cooking +【Easy to Install】 It only takes 1 minute to screw it on by hands. Installation is a snap. +【Standard Adapter】 QCC-1 Fitting (Acme Nut) x Acme Thread and Female P.O.L.",SHINESTAR,,us,207 +B077TFYR4T,"Pleasant Hearth 36 Compact 20,000 Liquid Propane Vent Free Fireplace System 20K BTU, Rich Heritage",,"Rich heritage finish +Propane ready (fuel conversion not permitted) +Up to 20, 000 BTU's/hr heats up to 700 sq. Ft +Thermostat control knob automatically maintains your ideal heat level +Wall or corner installation options included",Pleasant Hearth,Rich Heritage,us,208 +B09B76PJKX,"Propane Gas Tank Cover Bag- Waterproof Propane Tank Cover Fits 20lb Tank Cylinder, Hard-Wearing Propane Can Cover with Stable Tabletop Feature Side Flap Storage Pockets Ventilation Grommets (Black)","Want to make your gas tank durable enough to serve you for a long time?
            We sincerely recommend our propane gas tank cover bag to you!

            Features
            1. Measures 12.5"" x 19.4"" and fits a standard 20lb (5 gallon) tank cylinder
            2. Impervious to inadvertent wear or bumps during normal use, water and scorching sun
            3. PE sheets and non-slip pads on the top or bottom of the bag allow you to use it as a small stable table
            4. Easy to pick up or place the gas tank and open or close the valve
            5. With four ventilation grommets, two side pockets and thick carrying handles

            Specification:
            Color: Black
            Size: 12.5"" x 19.4""
            Material: 600D Oxford Cloth","[Fits 20lb Tank Cylinder] Our propane tank cover measures 12.5"" x 19.4"" and fits a standard 20lb (5 gallon) tank cylinder. The black exterior gives it a high-end but understated look and it's absolutely perfect for placing it next to your outdoor grill or camping stove. +[Waterproof & Wear-Resistant] Thanks to being made of super strong 600D Oxford cloth, our propane gas tank cover bag is impervious to inadvertent wear or bumps during normal use, water and scorching sun. The extra waterproof layer inside the bag provides deeper protection for your gas tank. +[Stable Tabletop Feature] The top and bottom of this propane tank cover are lined with PE sheets so they stay flat and set in shape. Plus the four non-slip pads on the bottom, you can even use our product as a small stable table. +[So Easy to Use] Our product is designed with a large opening with double zippers so you can easily pick up or place the gas tank. There is a flap on the side to allow the hose to pass through, making it easy for you to open or close the valve. +[Thoughtful & Practical Detailing] Four ventilation grommets on the gas tank bag enable effective air circulation. Two side pockets provide enough space for you to store your small items. The thick carrying handles with hook-and-loop fastener don't strangle your hand at all.",PAMASE,Black,us,209 +B07B8SN67W,"Blaze Grills 12,000 BTU Built-In Stainless Steel LTE Outdoor Double Side Burner with Drip Tray, Propane","Outdoor grilling and entertaining just got a whole lot easier with the Blaze 12,000 BTU Built-In Stainless Steel LTE Double Side Burner. Whether you're hosting guests or cooking up a delicious meal for you and your family, this handy little addition will help you craft the ultimate feast. This built-in propane addition features two 12,000 BTU brass burners that provide superior heat output. The overall stainless steel construction ensures long-lasting use, not to mention a pretty stylish look, and the stainless steel cover shields burners from outdoor elements. Gone are the days of standing outside waiting for a spark. The simple push-and-turn knob ignition system delivers a reliable flame with every start. This double side burner also features a full-width drip tray for quick and easy clean-up.","DOUBLE BRASS BURNERS: Two heavy-duty 12,000 BTU brass burners provide superior heat output +STAINLESS STEEL CONSTRUCTION: Durable stainless steel construction ensures long-lasting use in an outdoor environment +KEEP BURNERS SAFE FROM ELEMENTS: Removable stainless steel cover keeps burners safe from outdoor elements +PUSH AND TURN IGNITION: Push and turn knob ignition system delivers a reliable flame with every start +EASY CLEANUP: Full-width drip tray offers quick and easy cleanup",Blaze Grills,Stainless Steel,us,210 +B08KHCX3CW,"Dumble Low Pressure Regulator Hose, 10ft Rubber - Low Pressure Propane Regulator Hose for LP Gas Low PSI Regulator Hose",,,Dumble,,us,211 +B078KPHKZD,ThermoPro TP01A Digital Meat Thermometer with Long Probe Instant Read Food Cooking Thermometer for Grilling BBQ Smoker Grill Kitchen Oil Candy Thermometer,,"Fast and accurate: Digital cooking thermometer with high precision sensor get internal temp of food within 4-6 seconds; accurate to ±0.9 degree Fahrenheit +Super long probe: Grilling thermometer has 5.3 inches food grade stainless steel probe; No more worrying about getting too close to the hot food or surface, avoid burnt hands +Lock function: Kitchen thermometer can lock the current temperature; the reading won’t change after pulling the probe thermometer out of the meat; Auto Shut-off; Batteries included +Backlight display: Instant read food thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors +Wide Variety of Uses: Digital meat thermometer for grill with temperature range of -58~ 572degree Fahrenheit (-50~ 300degree Celsius); Celsius/Fahrenheit selector; Perfect meat thermometer for grilling smoker BBQ indoor outdoor cooking",ThermoPro,Orange,us,212 +B07FC7KCJD,"GASPRO 6-Foot Propane Hose with 3/8"" Female Flare On Both Ends, Grill Hose Extension, Flexible Gas Line for RV, Heater, Fire Pit, Stainless Braided","Feature:
            Hose Length: 6ft
            Connector: 3/8"" female flare fitting x 3/8"" female flare fitting.
            Material: Stainless steel braided.

            Warning: Only for OUTDOOR Use.
            ","【Awesome Extension】 Extend your existing hose to reach the gas appliance. No need to carry a large tank around. +【Widely Applied】 Perfect for RV, gas grill, fire pit, forge, stove, propane heater and more. +【Nice Length】 6 feet in length allows getting more distance and moving around where it is needed. +【Durable & Chew-Proof】 Stainless steel braided hose effectively reduces damage caused by friction and animals. +【Standard Connector】 3/8"" female flare fitting x 3/8"" female flare fitting.",GASPRO,Steel,us,213 +B07W6MTWVF,"Kohree 6FT Propane Adapter Hose 1lb to 20lb Converter for Weber Q Gas Grill, Propane Tank Hose Adapter for Buddy Heaters, Coleman Camping Stove, QCC1/Type1 Tank Connect to 1lb to 20lb Tank","Kohree 6FT Propane Tank Adapter Hose 1 lb to 20 lb Converter for Weber Q Gas Grill, Buddy Heater, Coleman Camping Stove, Tabletop Grill, QCC1/Type1 Tank","【Application】: You could hook your 1lb portable appliance to a 20lb propane tank with this 6 feet propane conversion hose adapter. +【Multipurpose】: 1lb to 20lb propane tank hose adapter converter ideals for your Weber Q gas grill, MR. buddy heaters, coleman camp stove, portable/tabletop grills, etc., good for camping, picnicking, or outdoor heating. +【Very Cost Effective】 : Use this propane stove hose extension 6ft for 1 lb to 20 lb or larger tanks which will last long and save money for you. Not only 16.4oz tank any more. +【Easy to Use】: Just connect black male end to type1 (QCC 1) propane bulk cylinder tank, and connect the brass fitting end to the 1 lb propane appliance. +【Safe Connection】: CSA certified durable rubber propane stove adapter hose with excellent weather resistance and solid brass fittings adapter you safe leakage free operation.",Kohree,Black,us,214 +B07PYVNJ2Z,"GASPRO 5FT Two Stage Propane Regulator with Hose - 3/8in Female for RV, Grill, Fire Pit, Gas Stove/Range More","How to use it:
            The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting.

            Great for:
            RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more

            Warning: Only for OUTDOOR Use.","【Well Gas Control 】Two-stage regulator results in a more consistent inlet pressure between the first and second stage +【Standard Connector】QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare +【Outlet Pressure】11"" WC(1/2psi) low pressure, with a maximum of 225,000 BTU flow +【 Compatibility 】Fits for RV appliance, gas grill, gas stove/range,fire pit, propane fireplace, hot water heater and more +【 High Quality 】 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank",GASPRO,Black,us,215 +B000C77UYA,Manchester Tank & Equip 10393.1 11lb Propane Tank,,"Colonial white powder coated finish +Vertical cylinder design +Product weighs 11 pounds +All cylinders conform with strict compliance to DOT specifications 4BA, 4BW and 4E +All Manchester cylinders are triple tested with dry pneumatic air",Manchester Tank,,us,216 +B016NA3XAO,"DuraSteel Propane Gas Jet Burner For Chinese Wok Range, Grilling, Stir Fry - Cast Iron Body Round Nozzle Jet Burner with 23 Brass Tips - Up 100,000 BTU",,"High Heat Output - This propane gas jet burner for Chinese ranges uses heavy-duty construction to provide you with high heat output up to 100,000 BTU. It can be run at low pressure and is ideal for a wide variety of cooking styles and dishes. +Made to Last - This jet burner is made using extra strong and durable cast iron and comes with 23 Nozzles that are just as durable to provide you with reliable and long-lasting use. Thanks to the Sturdy and durable design, it can be used both at home and in the outdoors. +Indoor & Outdoor Use - Whether you want to grill some BBQ in your backyard, use a Chinese wok in your home or enjoy delicious meals in the outdoors, then This cast iron 23 Tip Jet Burner is the simple, fast and efficient solution you've been looking for. +Propane Gas Burner - This Chinese wok range burner with 23 nozzles is designed to run with propane gas. It weighs 3Kg allowing you to easily move it around for your next outdoor get-together or party to enjoy delicious Chinese or grilled food. Require an adjustable regulator to work properly, start with the lowest input and adjust higher. Do NOT start high on your regulator. +Quality You Can Trust - Our outdoor wok burners are made with customer safety and convenience in mind. This is why we use only the strongest and reliable materials to ensure lasting use. If you receive a jet burner with a broken nozzle then let us know to receive a replacement.",DuraSteel,,us,217 +B08S3533D9,"Folocy 14 1/2"" x 6 1/4"" Stainless Steel Gas Grill Burner Pipe Tubes BBQ Gas Grill Replacement Parts Accessories Kit for American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC","SPECIFICATION:
            Material: Stainless Steel
             Products Included: Set of 3 × Barbecue bbq grill pipe burner replacement

            ADVANTAGE
            Easy to Clean: The surface of our grill pipe tube burner repair kit is smooth and easy to care, just wash with soapy water.
            ","Dimensions: 14.5 x 6.25 inch (14 1/2"" x 6 1/4""), Material: Stainless Steel Center-fed Pipe Burner +Superior Material: The tube burners for gas grill universal are made of durable stainless steel, superior quality of long-life for use, not easy to rust after long use. +Fit: Grill replacement parts for fits American Outdoor Grill 24NB, 24NG, 24NP, 24PC, 30NB, 30PC, 36NB, 36PC +Easy Install & Clean: Simple Steps to install your grill, the surface of grill burner tubes are smooth and easy to care, just wash with soapy water. +Notices: To ensure you choose the correct grill burner tube replacement for your grill, we sincerely recommend removing the original part and comparing it to our bbq grill parts.",Folocy,,us,218 +B012ZY1RNM,"Camco 40567 Lid Replacement for 20 Lb Single Propane Tank Cover, Black",,"Easily replace the lid on your propane tank cover for single 20 lb steel propane tanks +Lid makes accessing propane tanks easier and more efficient +Kit includes hardware needed for installation +Constructed of UV-stabilized polypropylene +Black",Camco,Black,us,219 +B07SB2Q8X7,"GASPRO 0-30 PSI Adjustable Propane Regulator with Gauge, 12 Feet Stainless Braided High Pressure Propane Regulator, Perfect for Forge, Burner, Turkey Fryer, Smoker, Fire Pit","GASPRO 0-30 PSI High Pressure Adjustable Propane Regulator with Gauge is your best choice!
            The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas,Let you adjust yourfire better,make your stove/Grill/Buner/Smoker/turkey fryerslike new.
            If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.
            The propane hose body is made of stainlesssteel it will long lasting for your appliance
            This propane hose with regulator has excessflow protection and will automatically shut off. Protect you from danger.

            Specification
            - Length: 12feet / 144 Inch/366 cm
            style=""margin-left: 5.25pt;""
            - Apply to: propane burners, stove, turkey fryers,heaters, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.
            - Inlet Pressure: 25-250PSIG
            - Outlet Pressure: 0-30PSIG
            - Max.flow capacity:136000BTU
            - End Connector: 3/8"" flare swivelnut; Hose connection: 5/8""-18UNF

            Warm Tips
            -In order to use this product more safely,please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.
            -Not suitable for appliances which need low pressure regulator
            ","【Adjustable】 You can control the flame intensity by adjusting the pressure from 0-30 PSI according to your needs +【Accurately】 You can accurately adjust the pressure according to the built-in gauge dial +【Durable and Chew-proof】 Stainless steel braided for better protection against animals chewing, more durable than the rubber hose +【Perfect Fit】 Great for turkey fryer, forge, burner, fire pit, smoker, heater, and more +【Brass Connector】 P.O.L. x 3/8″ Female Flare, orifice connector with 3/8"" Flare M x 1/8"" MNPT",GASPRO,,us,220 +B074MDC1JV,"Large Steel Rectangular 57 Inch 50000BTU Fire Pit with Glass Wind Guard, with Cover and Table Lid, Nature Wood Coating",,"Item size: 56.7in x21.3in x24in +Full Stainless Steel Burner and High Quality constructure +Heat resistant tempered glass wind guard included +Lava glass, table lid and a protection cover included +Use with 20lb. propane tank (not included) ETL Approved",LEGACY HEATING,WOOD BRUSHED,us,221 +B00PKVS3HG,"Powerblanket PBL420 Gas Cylinder Heating Blanket (Propane), 420 lb, Charcoal Gray",,"Safely heats cylinder to an optimal 90 ° F / 32 °C (± 10 °F/5 °C) +Saves money by optimizing gas and material usage +Increase flow rate performance and efficiency of gas cylinders +Eliminate unnecessary cylinder refills in cold weather +Certified to UL/CSA/CE standards",Powerblanket,Charcoal Gray,us,222 +B000P9GZSW,Texsport Portable Outdoor Propane Heater,,Sport Type: Camping & Hiking,Texsport,Silver,us,223 +B096VKRVW5,"GCBSAEQ ​1Lb Propane Tank Regulator,Propane Canister Adapter,Connection Convert to 3/8"" Male Flare,Suitable for Portable Camping Grill Stove Parts for Heaters,Burner,Cooker,Fire Pit Part","Product specifications
            Type: 1LB Propane Tank Regulator
            Connection 1: 1LB female connector (1"" x 20 female throwaway cylinder thread)
            Connection 2: 3/8"" Male flare connector(5/8""-18UNF Thread)
            Material: Brass
            Package: 1 x 1LB propane regulator to 3/8"" male flare adapter , 1 x thread seal tape.
            Easy to install
            1LB propane regulator to 3/8"" male flare adapter is convenient and quick to install, just need to rotate manually.
            Safe to use
            1LB propane tank cansiter regulator adapter connection convert to 3/8"" flare can be safely connected and prevent leakage and prevent leaks.
            Applicable scene
            1lb propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8"" extension hose‘s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices.
            Material
            1LB propane camp grill stove regulator connection to 3/8"" male flare thread fitting is made of solid brass, cdurable, we are committed to bringing you a satisfactory purchasing experience.
            Note
            1. Please check your connector before ordering.
            2. Before installing the 1lb propane tank regulator adapter, close the tank valve and fully tighten it on the propane tank side and grill side, and then use it in the propane equipment to prevent leakage. And wrap the joint with tape.
            3. For your safety, this product must be leak tested before use. Test with soapy water on all joints. If you find any bubbles or even hear any gas leaks, please don't use it.
            4.Propane elbow fitting adapter is only suitable for Blackstone 17"" and 22"" tabletop grill and only used on low pressure system. Not applicable to other Coleman grills or other Blackstone tabletop grills.
            ","★【Package】1 x 1LB propane regulator to 3/8"" male flare adapter , 1 x thread seal tape. +★【Safe to use】1LB propane tank cansiter regulator adapter connection convert to 3/8"" flare can be safely connected and prevent leakage and prevent leaks. +★【Applicable scene】1LB propane tank regulator adapter can connect 1lb propane regulator to the camping grill, and has a 3/8"" extension hose‘s flare connector, which can be converted to a 20-100 lb fuel tank, which is very suitable most 1LB portable devices. +★【Notice】1LB propane camp grill stove regulator connection to 3/8"" male flare thread allows you to directly connect to a standard large propane tank (20-100 pound tank) instead of using a 1 pound disposable gas cylinder. +★【Quality Assurance】1LB propane camp grill stove regulator connection to 3/8"" male flare thread fitting is made of solid brass, durable, we are committed to bringing you a satisfactory purchasing experience.",GCBSAEQ,"3/8"" to 1LB",us,224 +B004KH4LAE,"Hiland HLDSO1-WGTHG Pyramid Glass Tube Propane Patio Heater w/Wheels, 40,000 BTU, Hammered Bronze",,"Your purchase includes One Hiland HLDSO1-GTHG 91-Inch Pyramid Propane Patio Heater with wheels in Hammered Bronze color. Cover not included +Patio heater dimensions: 21.5"" W x 21"" D x 91"" H. Product weight: 65 lbs. Coverage area: 10 sq Ft. Clearance space: Top – 36”/91.4cm. Side – 24”/60.9 cm +Includes a reliable igniter and a Safety auto shut off tilt valve +Uses standard 20 lb Propane tank that lasts between 8-10 hrs. on High mode. Butane Heat output: 40,000BTU +The latest in design and heat, the Quartz Glass Tube Flame Heater brings style to outdoor heating. Its unique, visually mesmerizing flame provides heat in every direction",Hiland,Hammered Bronze,us,225 +B07ZGHCR2M,"12 Foot High Pressure Adjustable Propane Regulator 0-30 PSI with Gauge 0~60PSI Gas Flow Indicator, Gas Cooker-3/8inch Female Flare Fitting, Stainless Steel Braided Hose and Gas Grill LP Regulator …","

            You can control the temperature of your appliance exactly what you want

            ✅The propane has a Gauge that will tell youhow much pressure you are turning the knot to release gas, Let you adjust yourfire better.

            ✅If the stove/Grill/Buner/Smoker and moreactually needs more or less pressure, you can adjust it with this instead ofjust being screwed by having the default regulator pressure.

            ✅Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically. The regulator can still work when those problems improved.

            Specification

            - Length: 12feet / 144 Inch/366 cm

            style=""margin-left: 5.25pt;""

            - Apply to: propane burners, stove, gas grill, turkey fryers, heaters, forge, smokers and other propane appliances. Not suitable for applianceswhich need low pressure regulator.

            - Inlet Pressure: 25-250PSIG

            - Outlet Pressure: 0-30PSIG

            - Max.flow capacity:136000BTU

            - End Connector: 3/8"" flare swivelnut; Hose connection: 5/8""-18UNF

            Warm Tips   

            1.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.

            2.In order to use this product more safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before youuse.

            3.Keeping the hose away from HIGH TEMPERATURE, OPEN FIRE. ALL propane appliances are OUTDOOR Use.

            After sale guarantee

            You are not satisfied, don't be too quick to leave a negative comment, you can request a replacement or a full refund. Contact us! We will show you a satisfactory solution.

            ","【Measure Your Pressure】Use the pressure gauge to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), the Pressure Gauge lets users control their heat with a precise level of accuracy. +【End Fitting to Appliance】12Foot 0-30 PSI High pressure stainless steel hose, 3/8” female flare fitting,fit for gas grills, gas stoves, turkey fryers, burners, smokers, cooker, fire pit and heater, hot water heater, as long as your appliance connection is 3/8’’ male flare connector. +【New upgrade】Black part fitting is POL connector, you can directly connect your 40 Pound propane tank to 100 Pound, Don't need to move your atmospheric bottle. Gas Pressure Gauge allow you control of the heat output with a precise level, to keep your outdoor cooker in optimal operating condition. +【Durable Material Design】The propane hose body is made of stainless steel it can effectively reduce damage caused by friction and animal bites. Defeat ordinary rubber that ages in the sun, provides secure, airtight connection between grill and turkey fryer or burner and tank. +【SAFETY】Pass CSA certificate for your safety, excellent sealing quality is promised for your safety. propane regulator and hose has excess flow protection and will automatically shut off, easy to install your propane bottle and propane appliance.",LONGADS,,us,226 +B01N01N50Z,Elementi Lunar Bowl Cast Concrete Fire Pit - LP,"A fire bowl in a contemporary design, intended to form the centerpiece feature for a spectacular patio, deck or other well ventilated space; the 'Lunar Bowl' makes a style statement that will leave a lasting impression on your guests or clients. The attraction is not only the beautiful and natural appearance of this patio heater; the physical comfort of those in the vicinity is greatly improved not only by the actual increase in surrounding temperature but by the important psychological perception provided by the visible flames, easily controllable in this gas powered fire pit. Note: Canvas cover is not included. Includes: Lava rock media. Features: BTUs (max): 45,000. Fuel Type: Liquid Propane. Body construction: Glass fiber reinforced concrete. Burner construction: 18-gauge 304 stainless steel. Burner control system: Battery powered electronic ignition with auto shut-off safety valve. Lava Rock Media Included. CSA Certification. Warranty 1 year limited. Specifications: Overall Dimensions: 42"" x 42"" x 16"". Burner Ring Size: 12"" (Dia.). Burner Pan Size: 23.7"" Diameter (I.D.).","Model #: OFG101-LP +BTUs (max): 45,000 +Fuel Type: Liquid Propane +Body construction: Glass fiber reinforced concrete +Overall Dimensions: 42"" x 42"" x 16""",Elementi,,us,227 +B07YHC58TG,"SHINESTAR 12ft Propane Regulator Hose with Propane Tank Gauge, Stain Steel Braided LP Gas Regulator, 3/8in Female Flare Fitting for Fire Pit, Burner Stove, Heater and Grill","Description:
            Replace short regulator hose kit on gas appliance.
            Avoid safety issue by the feature of gauge detecting. Also tells you how much propane is left in the tank.
            12ft long enough to put the propane tank where needed with length to spare.
            Added protection of the stainless steel braided around the hose.
            Perfect for fire pit, propane heater, propane water heater, camp stove, grill and more low pressure propane appliances.
            Our propane regulator with hose has excess flow protection for your safety and will automatically shut off.

            Feature:
            Hose Length: 12 Feet
            Connection: Acme nut (QCC) x 3/8'' Female Flare Fitting
            Outlet Pressure:11"" W.C.
            Flow Capacity: 80,000 BTU/Hr
            Length: 12 feet /144 inch

            NOTE:
            FULLY TIGHTENED at both sides of hose before using to prevent leakage.
            To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
            Keeping the hose away from HIGH TEMPERATURE.
            For Outdoor Use Only.
            ","【Perfect Upgrade】The attached propane gauge can detect dangerous leaks and read fuel level at glance +【More Durable】Stainless braided hose prevents whatever animals from chewing through your hose +【Standard Connector】Acme nut QCC propane cylinder adapter x 3/8″ female flare fitting. 5/16"" diameter LP hose +【Multi-Purpose】Fits for propane grill, camp stove, fire pit, heater, water heater and more low pressure device +【Control Gas Flow】The regulator Outlet Pressure is 11""W.C(1/2 PSI). Keeping flow stably and at appropriate levels, your grill will works like new once again",SHINESTAR,,us,228 +B01GZPBCPU,"DOZYANT Propane Regulator and Hose Universal Grill Regulator Replacement Parts, QCC1 Hose and Regulator for Most LP Gas Grill, Heater and Fire Pit Table,3/8"" Female Flare Nut, 2 Feet",,"Type-1 (QCC-1) tank connect - fits all appliances with a type 1 connection. 3/8"" Female Flare swivel nut which has an outside diameter of 5/8"" In order to accommodate for the flare seat +Replacement for Weber Genesis 300-series gas grills, Genesis Silver C, Genesis Gold , Genesis Platinum , Spirit E-210/E-310 etc. and most of Char-broil gas grill with side burner, Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d, dge486ssp-d, dge486gsp-d etc. , Uniflame GBC873W-C, GBC873W, GBC940WIR, GBC940WIR-C, GBC976W, GBC956W1-C, GBC1076WE-C, BH12-101-001-02 etc. , most of Kenmore gas grill and most of Brinkmann gas grill. +Easy installation - no tools required, tool-less attachment to tank. It is normal if you hear noise in the regulator, it is the resonance of the gas in the regulator. +Safety & corrosion resistant - CSA certificated - pass CSA certificate for your safety. Provides secure, air-tight connection between grill or fire pit and tank, no gas leaks, ensures safety while using grill, no issues with regulator or gas, air flow is kept stable and at appropriate levels +Fits most gas grill, heater, fire pit, LP generator, lantern, two burner camping stove, side burner, and used for most low pressure gas propane application",DOZYANT,Parallel,us,229 +B01AH5M8M0,"Concord Banjo 16” Single Propane Burner; 200,000BTU 1 Burner Portable Gas Stove","

            This Concord single burner portable Gas Stove is built like a tank..

            Capable of shooting out 200,000 BTU of heat. Will easily bring your large kettle to a boil. Very sturdy construction with all necessary parts already included. Includes 20 PSI regulator hose and one 10” single burner head (replaceable), and stand.

            This portable gas stove can be set up in your outdoor kitchen in under 5 minutes. Connect a propane tank and put on your wok or stock pot and you're ready to go. It also has removable legs for easy storage.

            Working as a turkey fryer burner, the propane stove is capable of supporting up to a 200 quart kettle.

            Whether home brewing, canning, sauce making, deep frying, this 1 burner outside burner stove is ready to take on the job.




            Measurements: Burner Stand 16.5"" Wide x 12"" Height

            Burner head is 10"" Wide.



            Concord burners - make every outing count.
            ","Burner is made from Heavy Duty Cast Iron with Weather Proof coating, Will last a Lifetime. Size: 16.5""x16.5""x12""(Height). +Burner can burn up to 200,000 BTU. +High pressure CSA Certified 20 PSI regulator, hose, and connector included. +Stand has detachable legs for easy storage when not in use. +Capable of supporting up to 400 LB or 200 QT pot filled with liquid.",Concord,,us,230 +B07KM2GSW7,"ROVSUN 75,000 BTU Single Propane Burner Outdoor Gas Stove, 20psi Regulator, High Pressure Portable Cooker Camp Cooking Home Brewing","

            75,000 BTU Outdoor Propane Stove
            Deep frying leaves a mess and a smell in the kitchen? ROVSUN outdoor gas stove kick this issue away! keep the heat outside the kitchen. Perfect for steaming large pot of corn, lobsters or crab legs. With a b high heat, this stove is ideal for cooking several dishes for a small party gathering.

            SPECIFICATON
            Material: Cast Iron
            Output: 75,000 BTU
            Burner Diameter: 10.24 inch
            Hose: 47.2 inch
            Dimension: 15.7""L x 15.7""W x 29.9""H

            ","75,000BTU ★ Stove give off a strong flame that can be adjusted easily. Heat is controlled by a CSA approved regulator, which is more safety and longer working time. +QUICK ASSEMBLY ★ Put together 4 legs and hook it up with propane gas, then you get an awesome extra cooker. Top working measures 15.7’’ x 15.7’’. ONLY works with propane, any other gas is not available. +EASY OPERATION ♡ Just connect the tank, open the main valve, hold a long match next to the burner, turn the control valve, and tweak the vent cover if the flame is too yellow. +SPACE-SAVING ♡ Legs are easy to put on or remove for easy taking apart. Easy to take apart to store or throw in back of truck. Stove is 29.7 inch in height. +STURDY FRAME ♡ This outdoor cooker is made from cast iron, which can support all kinds of cooking. Great for canning, home brewing, wok cooking, crawfish boil and turkey frying.",ROVSUN,,us,231 +B07RZTL6TK,"Linkool Upgrade 20 lbs Propane Tank Cover,Black,Hides Often Ugly/Rusty/Dirty Tank Cylinder,All Weather Protection","Protect your propane tank from the elements all year long with this cover. Fits standard 20 lb. tanks.


            ✔ Hides Often Ugly/Rusty/Dirty Tank Cylinder
            ✔ Measures Measures 7.5"" Diameter (top) x 14"" Diameter (bottom) x 21"" High
            ✔ Premium Oxford and upgraded PVC backed polyester fabric
            ✔ Valve access design,rip -and-grip flaps allow easy access to tank valve.
            ✔ Air vents reduce inside condensation and wind lofting
            ✔ Padded handles for easy fitting and removal
            ✔ All weahter protection
            ✔ All round drawstring bottom with cord locks for added security to make it won't blow away in the wind
            ","NEW FEATURES:Valve access design.And there is air vents with mesh barriers promotes air flow to reduce inside condensation and wind lofting. In addition,you will be surprised at how easily the cover slipped over cover with two handles +DRESS UP YOUR GRILL:Hides the hideous tank and sharpens up the look of your grill +DIMENSION:Measures 7.5"" Diameter (top) x 14"" Diameter (bottom) x 21"" High, Fits standard 20 lbs cylinder propane tank for Weber grill +PREMIUM MATERIAL:Oxford and upgraded PVC backed polyester fabric.Extends the lifespan of your tank +MAXIMUM PROTECTION:All round drawstring bottom with cord locks for added security to make it won't blow away in the wind.BE READY for anything Mother Nature can throw at you",Linkool,Black,us,232 +B08H18XLP9,"ARC SS4242S Propane Burner, 0-20 PSI Regulator& Braided Hose, Stainless Steel Portable Propane Burner, Perfect for Outdoor and Backyard Cooking, Turkey Fry, Home Brewing and More, 200,000 BTU",,"🔥【STURDY AND DURABLE】The propane burner adopts all-welded stainless steel frame technology and is made of high-quality stainless steel. It is windproof and waterproof for outdoor use and is durable. +🔥【ADJUSTABLE BURNER】200,000 BTU per hour fire output, and embedded burner design can prevent wind from blowing on the flame, improve cooking efficiency. 0-20 PSI fire power regulator can meet different cooking methods. +🔥【RELIABLE SAFETY】The durable 47-inch stainless steel hose and metal connector make the connection between the paopane stove and the propane tank stronger and safer in use. +🔥【STABLE DESIGN)】The outdoor propane burner has a welded high-quality stainless steel frame and a large base, which is stable and reliable for outdoor use. +🔥【PORTABLE DESIGN】The design without disassembly makes the portable gas burner easy to transport. Can be used for camping or backyard gatherings. It is the best choice for outdoor party cooking",ARC Advanced Royal Champion,Stainless Steel,us,233 +B0014E3MSI,Camco 59013 Single Stage Propane Low Press Regulator,,"Maintains a constant 11"" WC propane pressure +200,000 BTU/HR +For connecting free standing gas bottle to low pressure gas appliances +1/4"" Female NPT (Inlet) x 3/8"" Female NPT (Outlet) +UL Listed",Camco,,us,234 +B08FMFK7CN,"Universal Regulator Grill QCC1 6.5 Feet (2 Meter) Hose and Elbow Fitting Adapter Kit Propane Regulator and Hose Replacement Parts for 17"" and 22"" Blackstone Tabletop Camper Grill","6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17"" and 22"" Camper Grill,MAX working Temperature Cannot be over 122°F
            No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit
            Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill
            CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model
            Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping
            Specifications:
            A. 3/8"" Male Flare Propane Elbow Adapter Converter of Blackstone tabletop grill.
            B . 6.5FT (2 meter) Propane Hose with QQC1 type low Low-Pressure Regulator.
            Warm Tips:
            * This conversion fitting Only fit forBlackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle. Do not suitable for other Grill Model.
            Quality Standard:
            CSA
            Package Included:
            1 Pcs x Propane Elbow Adapter.
            1 pcs x QQC1 Type Low-Pressure Regulator of 6.5FT(2 meter) Propane Hose.","6.5 FT(2 meter) Low Pressure Regulator for Standard US Propane Cylinder with 90 Degree Elbow Adadapter for Blackstone 17"" and 22"" Camper Grill,MAX working Temperature Cannot be over 122°F +No Extra Tool is needed to convert your 1lb griddle to 20~50lbs propane Tank Cylinder,Enjoy More Propane during your fun you will need this conversion Kit +Great Converter for 10-40lbs propane tank for Blackstone 17inch and 22in tabletop grill +CSA Certified Parts and Elbow Design Installation More Easy and save space, Good for RV Camper For Blackstone Table Top Grill - 17 Inch and 22 inch Portable Gas Griddle, Do not suitable for other Grill Model +Elbow Adapter Design Will Help you save more space during you installation.The Connection need to be checked with soap water after you assembled well in case it loosed during shipping",METER STAR,,us,235 +B003CV5IGK,"Napoleon Tabletop Patio Heater 11000 BTU Propane, Stainless Steel",,"Up to 11000 BTU's +304 Stainless steel construction +7 foot heat radius +Electronic push button igniter +Perfect for your backyard",Napoleon,Stainless Steel,us,236 +B08XBC336Y,2 Pieces BBQ Grill Tool Set Include 20.3 Inch BBQ Long Grill Spatula Sturdy Turner Spatula and 16 Inch Barbecue Grilling Tong with Solid Wood Handle Stainless Steel Barbecue Grilling Tool for Cooking,"
            Features:

            Nice gifts for BBQ lover:
            This package comes with 2 pieces stainless steel barbecue grilling accessories in different styles, including 1 piece grilling spatula and 1 piece tong, the quality material ensures a long time using, can be given as considerate gifts for friends who love BBQ.

            Practical and useful:
            These barbecue tools can be washed in water without food residue, long enough to make hot foods securely and against burning your hands, friendly for various hand sizes, easy to use and clean, storage convenience and dishwasher safe.

            Specifications:
            Material: stainless steel, wood
            Color: as the picture shown
            Quantity: 2 pieces

            Package include:
            1 x Grill spatula
            1 x Barbecue tong

            Note:
            Pointed parts include, please use it carefully and keep away from kids.
            Manual measurement, please allow slight errors on size.
            The colors may exist slight difference due to different screens.","Practical barbecue accessory: you will receive 1 piece barbecue grilling tong and 1 piece BBQ long grill spatula, both are suitable for kitchen cooking and barbecue use, these beautifully and simply designed grilling accessories can make you cooking process more easier +Thickened stainless steel material: BBQ grill tool set is made of durable stainless steel and the handle is made of wood, stainless steel spatula is designed with securely riveted smooth wooden handles, which is rust and corrosion resistant for outdoor cooking, grilling or BBQ +Long handles design: the size of this sturdy turner spatula is approx. 20.3 inches in total length, and the barbecue tong is approx. 16 inch in length, long handle design of spatula allows you to keep your hands cool and safe while maintaining control +Multiple purposes: the BBQ long grill turner spatula is suitable for flipping, frying or cooking meats, poultry, vegetables, egg and more, this practical tong is convenient to transport food to the plate without dropping or scattering food and clip a food while carving or slicing meat +Easy to clean: you can put these stainless steel barbecue grilling tools inside your dishwasher for quick and easy cleaning, the ergonomic wooden handle is easy and comfortable to hold, bringing a nice using experience for you",GeiSerailie,,us,237 +B077SP5BJP,"GasOne 50180 Refill Adapter for 1lb Propane Tanks & Fits 20lb Tanks, Black",,"✓ propane adapter that saves money - Gas one's propane refill adapters allows you to refill your traditional green 1lb propane tanks with the fuel from standard 20lb propane tanks. An ultimate propane adapter Built with the intention of reducing cost of resource used; We can't recall the last time An RV propane adapter, propane hose adapter, and/or a propane tank Adapter saved you this much money! +✓ STURDY AND DURABLE - Made of brass to ensure a long product lifetime as well as durability under constant usage. Will not wear down and/or fall apart using Gas One's propane refill adapter is a Heavy-Duty, reliable, and rust-free operation. Corrosion Resistant Brass that provides secure and air tight fitting +✓ extremely durable and precise threads - the refill adapter holds tight and connects efficiently well to 1 and 20lb propane tanks. There are no gas leaks, and the adapter's solid bras materials ensure longevity as well as Universal usage +✓ GOOD for emergency - running out of fuel from a 1lb propane tank will soon be an issue of the past; Simply use this to refill your 1lb propane tanks with larger propane tanks You have in storage. No issues with connection along with its easy to use set allows for an overall comfortable and smooth experience +✓ easy set up - ready for use right out of the box, place one end of the adapter on your 20lb propane tank, The other end on your 1lb propane tank, and you're ready to refill! / fits Qcc1/Type1 & 1lb propane tanks",GasOne,QCC,us,238 +B086V7Y4LR,"Vailge Grill Cover,72-inch Waterproof BBQ Cover,600D Heavy Duty Gas Grill Cover, UV & Dust & Rip & Fading Resistant,Suitable for Weber, Brinkmann, Char Broil Grills and More,Beige","

            Vailge Grill Cover is designed to provide all-weather protection for your valuable grill.And 600D Heavy Duty Premium Material is build to last for years which is UV Protection,Water/Dust/Rip/Fading Resistant,so your grill will stay clean and dry all year round.

            New product Promotion: 15% Off.

            Vailge grill cover collection is available in various sizes and offers a compatibility with most popular grill brands in the market.

            Advantages from other covers:

            ►Made of water-resistant 600D fabric with PVC waterproof coating,ensures superior performance in all seasons.

            ►Large padded handle loops for easy fitting, removal, hanging and convenient storage.

            ► Fastening straps at bottom can be adjusted and hold cover tighten in place in windy days

            ► Constructed with solid UV resistant threads and reinforced double stitched seams for added durability.

            ►The cover is easily folded for storage and won't take up a lot of room whilst not in use.

            ►Easy to Clean: Simply hose with water and the dirt will disappear soon. Dry up the gas grill cover in the sun for next use.

            ►Note: Please allow your grill to cool before covering.

            Kindly Note:

            1.Please Measure Before Purchasing.

            2.Be sure the cover is of the same shape as your grill.

            3.Always choose a grill cover that is 2 inches larger than the dimensions of your grill for proper fit.

            ","Size: This bbq grill cover measures 72"" Length x 26"" Width x 47"" Height.Standard sizing fits most brands grill like Weber,Brinkmann,Char Broil, Kenmore, Nexgrill, Holland, Jenn Air etc. NOTE:Please measure and check your grill's dimensions for proper fit before purchasing. +Super Premium Material: Valige gas grill cover is made of 600D Heavy Duty Oxford fabric and PVC layer,featurs weather-resistant, waterproof & dust-proof.Can maximally protect your BBQ Grill from outdoor elements like sun, dirt, rain, winds and snow etc. +Uv Protection & Rip Resistant: Our Barbecue Grill Cover with Anti-UV coating,UV resistant design provides exceptional durability to sunlight.And Vailge Grill Covers have double sewn and high-density stitching on edge & connection which is more durable and rip resistant. +Handles Design & Adjustable Straps: There are wide padded handles make it easier to fit and remove.It can also be used for hanging and storage.With two fastening straps,it can help the cover fit perfectly and prevent the cover from being blown off by wind. And with air vents design,reduce inside condensation and wind lofting. +Good Shopping Experience: We think you're going to love this BBQ Cover as much as we do! But If you have any questions about quality and instructions during use, please feel free to contact us. A life time Customer Service.We want our customers to be 100% happy.",Vailge,Beige&brown,us,239 +B07WYJTB3P,"ProCom FBNSD28T Ventless Dual Fuel Firebox Insert, 29 in",,"ASSEMBLED IN USA - Product is proudly assembled in the USA. Skilled American workers manufacture the parts, assemble, and test our products. Only high-quality materials and parts are used in the manufacturing of our products. Our factory features state of the art manufacturing equipment. +TECHNOLOGY - 26, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane Blue Flame Heater which Heats up to 1, 350 sq. ft. Area. +DEPENDABLE - Thermostat Control offers automatically cycles the burner on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room. +STYLISH -The stylish arched fireplace screen, dual burner which produces generous flames and 5 realistic hand painted ceramic fiber logs create a stunning home experience. +ECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation.",ProCom,29 In.,us,240 +B0024ECBMA,"Camco 59313 Vertical Two Stage Propane Regulator , Gray",,"Has integral first and second stages that ensure smoother, more consistent flow of propane gas to all RV appliances +Inlet: 1/4"" Female NPT Outlet: 3/8"" Female NPT +Outlet pressure 11""WC +For vertical mount applications +160,000 BTU/hr",Camco,Gray,us,241 +B0787VMCT8,"FDW Outdoor Patio Heater Tall Standing Hammered Finish Garden Outdoor Heater Propane Standing LP 41,000BTU CSA Certified Gas Steel w/Accessories, Bronze",,"Ⅰ 【EASY TO ASSEMBLY:】All parts of the patio heater present, unit well packed and undamaged. All the holes lined up well, and the bolts all fit well, the outdoor heater is easy assembly, follow the starting directions and you will finished it less than hour. gas patio heater is sturdy if put together properly and looks great.Patio Heater outdoor heaters gas patio heater lp patio heater +Ⅱ 【PUT LOTS OF HEATER:】The patio heater’s high output is 41000BTU, use it out on the patio at night in the late fall/winter time, the outdoor puts out a lot of heat, it’s a suggestion that start out with the gas patio heat on high but usually turn it down after the area heats up, a tank of propane lasts a couple of weeks.outdoor heaters gas patio heater lp patio heater Patio Heater +Ⅲ 【MULTIPLE PLACE USAGE:】The patio heater is perfect for the garden, you can use outdoor heater out on the patio at night, or in cold winter, you can see this kind of gas patio heater in the park, coffee table in the street, and you can also use the gas patio when you fishing, drinking with you friends or party.gas patio heater lp patio heater Patio Heater outdoor heaters +Ⅳ 【SAFTY:】 The patio heaters use 20 lbs LP Gas tank and which add weight to the Base of the gas patio heater providing much needed stability and safety during windy conditions, also you can fix the outdoor heater base on the deck by screws,The patio heater has Safety auto shut off tilt valve and Safety auto shut off when the gas run out. It is tall enough to be safe from hair lighting. lp patio heater Patio Heater outdoor heaters gas patio heater +Ⅴ 【HIGH QUALITY MATERIAL:】 The patio heater use high quality stainless steel of the heating element which isn’t easy to melt/burn off, and the outdoor heater fire can’t come through the grating and melted the rim, the gas patio heater has CSA certification, which can make sure the quality is excellent. Please pay attention that use the heater outside.outdoor heaters Patio Heater gas patio heater lp patio heater",FDW,Bronze,us,242 +B073KV4WLJ,GasOne 50140 4 FT Propane Hose 1 lb Converter-16.4 oz to 20 lb,,"Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn’t enough, gas one’s 1 to 20 lb. Propane Converter (4Ft) allows for 1lb propane adapters to be used for 20lb propane tanks! +Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one’s 50140 converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket! +Sturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency +EASY, HASSLE-FREE OPERATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic connection to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time! +Safety 1st - top quality propane hose adapter",GasOne,black,us,243 +B003T08FV4,"Hiland HLDS01-WCBT 48,000 BTU Propane Patio Heater w/Wheels and Table, Large, Hammered Silver",,seasons: All year long,Hiland,Hammered Silver,us,244 +B00TFYOC5G,"Outdoor 50,000 BTU 18 Qt Propane Gas Dual Basket Tailgate Party Fun Deep Fryer","The Dual Basket Fryer comes with everything you need to begin your cooking experience. Cook two things at once and cut your frying time in half! Whether you're making fish and chips or wings and onion rings, the Dual Basket Fryer gives you the tools to make it yours. Perfect for camping, tailgating, or backyard cooking.","50,000 BTU Cast Iron Burner +18 Quart Aluminum Pot +Two Aluminum Strainer Baskets with Insulated Handle +21"" Welded Stand & Dual-sided for cooking two foods at once",Chard,,us,245 +B087B6RSSF,"5Ft Adjustable Propane Regulator Hose Braided Steel 0~30 PSI Gas Flow Indicator for Fire Pit, Turkey Fryer, Burner, Cooker, Grill, Firepit etc-CSA Certification, QCC1 x 3/8 Female Flare Connection","Propane has a meter that tells you how much pressure you're rotating the knot to release the gas, allowing you to adjust your fire better and make your stove/grill/buner/smoker/Turkey fryer look like new. The red knob can be regulated the gas flow and pressure.( Adjustable pressure range: 0-30PSI ) Equipped with Excess Flow Protection. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. It will shutoff the gas flow automatically.","【Scope of application】 Perfect gas grill, forging stove, gas stove, hot pot, stove, burner, smoker, cooker, heater and water heater, as long as your equipment is connected with 3/8"" Extended connector. +【CSA certification】 Through CSA safety certification, the series control valve and hose have the advantages of overcurrent protection, automatic closing, and easy installation of series bottles and insertion devices. CSA certification, excellent sealing quality guarantees your safety. +【Quality】 The main body of the coaxial hose is made of stainless steel braided, and has 100% solid brass corrosion-resistant structural fittings, resistant to abrasion and animal injury, can provide long-term replacement and safety for your equipment. +【Additional table】 Use a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained.a pressure gauge to measure and adjust the reset PSI. The instrument panel measures the pressure of 0-30 PSI, the control is stable, and the variable demand is maintained. +【After-sales service】 For any unsatisfactory reasons, please feel free to contact us, we will restart your question as soon as possible. You can even request a replacement or a full refund without any problems.This is what we should do.",Chulan,,us,246 +B01HQRD8EO,Gas ONE Propane or Butane Stove GS-3400P Dual Fuel Portable Camping and Backpacking Gas Stove Burner with Carrying Case Great for Emergency Preparedness Kit (Gold),,"DUEL FUEL - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included), Operates on a single butane cartridge 8 oz or a propane cylinder 16.4 oz , Propane converter Regulator Included +AUTOMATIC PIEZO ELECTRIC IGNITION - Piezo-electric ignition that eliminates the use for lighter/matches in order to ignite flame, No need for lighters or matches with this stove +EASY TO USE - Our GS-3400P is easy to use with adjustable heat dial and automatic piezo-electric ignition +SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane), Will eject cartridge when irregular pressure is detected +VERSATILE - Great for Camping, tailgating, outdoor cooking and Emergency Preparedness",GasOne,Stove,us,247 +B0002P1D0Y,"Red Dragon CD-100 Propane Cylinder Dolly,Steel",,"A handy way to move a simple 20 pound cylinder while flaming +This dolly makes the perfect companion for any Red Dragon Torch Kit +Ideally suited for LP Gas cylinders up to 40 pounds. +The single handle allows the operator to use a torch and move the dolly simultaneously. Wheel width: 1 inch +When the torch is not in operation, it can be stored on the convenient torch bracket.",Red Dragon,Steel,us,248 +B00QB6PBZQ,"Outland Living Firebowl UV and Weather Resistant 740 Propane Gas Tank Cover with Stable Tabletop Feature, Fits Standard 20 lb Tank Cylinder, Ventilated with Storage Pocket",,"DRESS UP YOUR TANK - Transforms ugly standard 20 lb (5 gallon) propane tank into a functional tabletop and attractive outdoor feature for your yard, deck, patio, pool or garden. Keeps propane tank clean and protects it from the outdoor elements. +CONVENIENT DESIGN - Perimeter zippered top allows for quick access to valve, elasticized stretch bands on both sides ensure easy & effortless fit, and convenient side flap creates simple pass through for hose. +DISTINCTIVE ATTRIBUTES - Draw cord on bottom ensures a tight fit for a stable tabletop, six ventilation grommets provide ample air flow, and handy accessories storage pocket holder secures wand lighter and other items. +WEATHERPROOF AND WATER-RESISTANT - Durable UV & weather resistant fabric adds an insulating layer to help prevent tank freeze. Use anywhere outdoors and avoid storing propane tank under cover of a trailer, camper, patio or deck when not in use. +PERFECT COMBINATION - Perfect for use with your Outland Firebowl propane fire pit, outdoor grill, camp stove, heater or any other outdoor propane appliance. Measures 12.25"" diameter by 18.5"" height to ensure a snug fit for your 20 lb propane tank.",Outland Living,Black,us,249 +B01IRR7HSU,GasOne GS-3400P with WindScreen Dual Fuel Portable Propane & Butane Camping and Backpacking Gas Stove Burner with Carrying Case,"Who doesn't like having options? No-one likes to be forced into making a decision against their will. Why choose between one thing or another when you have can have the option to choose both? In the spirit of having options we've come up with the GS-3400P Portable Dual Fuel Stove, the first of the Dual Series Line and most certainly not the last. Including a re-purposed regulator suited for both propane and butane, never think twice about not having options.","Comes with Gas One fold-able 10 plate Windscreen and Gas One GS-3400P Carrying Case +Piezo-electric ignition that eliminates the use for lighter/matches +Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism (butane) +Heat adjustable dial to your desired heat",GasOne,Stove + Windscreen,us,250 +B007HG7SM8,"Camco 59843 20"" Pigtail Propane Hose Connectors - Acme x 1/4"" Male NPT",,"Connect your camper's 1/4"" NPT inlet regulator to a 20lb or 30lb LP tank +Rated for 200,000 BTUs per hour +Built-in excess flow and thermal protection +20"" hose +ACME nut x 1/4"" male NPT",Camco,,us,251 +B00NCSUZDE,"Magma Products Catalina 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size",,"New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system +Made in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer +Equipped with integrated fold-away legs Locking front access grease tray 12""x18"" main grilling area 5-1/2""x18"" secondary grilling area +Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems +New electronic ignition Infrared radiant screens",Magma,Multi,us,252 +B016M5A2SQ,Weber Spirit E330 Lp Black Grill,,"Equipped with upgraded features and the perfect size for hosting a BBQ or everyday family grilling +Sear station creates an intense heat zone to quickly add sear marks on meat; Built-in lid thermometer +Keep food warm or toast buns on the built-in warming rack and simmer BBQ sauce or sauté veggies on the side burner +Porcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food. Dimensions - Lid Open (inches) : 63 H x 52 W x 32 D inches, Dimensions - Lid Closed (inches) 45.5 H x 52 W x 24 D inches +Built to last with heavy duty, porcelain-enameled lid and cookbox that won’t rust or peal over time",Weber,Black,us,253 +B00QMVEG8S,"Coleman Gas Camping Stove | Triton+ Propane Stove, 2 Burner",,"COOKING POWER: Up to 22,000 total BTUs +PUSH-BUTTON IGNITION: For matchless lighting +2 ADJUSTABLE BURNERS: For precise temperature control +WIND-BLOCKING PANELS: Shield burners from wind and adjust for various pan sizes +PRESSURE REGULATOR: Pressure-control technology for consistent performance, even in extreme conditions",Coleman,,us,254 +B00V8JJGOI,2-Stage Propane Tank Regulator with 2 Pigtail Hoses,"Eliminate the hassle of having to interrupt your propane supply when the tank runs out of fuel. This 2-stage tank regulator lets you hook up 2 propane tanks simultaneously. When one tank empties, the regulator automatically switches to the full tank, so the power is uninterrupted. Features window that indicates when the lever needs to be flipped from one LP tank to the other.","Don’t run out of propane gas with this convenient regulator, ideal for RVs with dual propane tanks. +Hooks up 2 propane tanks to your RV at once so you’ll always have a fuel supply. +Auto-changeover feature automatically switches from the empty propane tank to the full tank for a continuous gas flow. +Lets you remove empty propane cylinder without interrupting propane supply. +Includes 2 12-inch pigtail hoses.",HKESTG,,us,255 +B0179IK62C,Broil King Regal S490 Pro - Stainless Steel - 4 Burner Natural Gas Grill l,,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +Make the perfect steak - With patented Stainless Steel Dual-Tube burners and the innovative Flab-R-Wave Stainless Steel cooking system, The Regal S490 Pro will give you even temperatures across the cooking surface ensuring juicy and delicious results +Durable cooking grids - Solid rod 9mm Stainless Steel cooking grids are up to 56% heavier than those in comparable grills, providing great heat retention and giving bold sear marks; Stainless Steel provides lasting durability so your grill is always ready +Do more with your grill - the powerful side burner is perfect for preparing sides and heating up your favorite BBQ sauce; use the rear rotisserie burner and included Premium rotisserie kit to cook a delicious and juicy whole chicken or leg of lamb +Make your next cookout a bit brighter - the cool blue LED-lit control knobs let you see exactly where the controls on your grill are set and add a stylish glow to your Outdoor patio space",Broil King,Stainless Steel,us,256 +B08KSLN5VC,GasOne Camping Stove Bottletop Propane Tank Camp Stove with Waterproof Carry Bag,,"EASILY PORTABLE - Made with transportability in mind, the GS-8000 is compact and easily accessible; the burner is carried in separate pieces to allow for it to be packed in small backpacks and travel bags; effortlessly set up and dissembled, enjoy the perks of a reliable and convenient burner without any of the complicated hassle +DIE CAST ALUMINUM - The GS-8000, unlike most competitor products, is made with die-cast aluminum allowing for a long lasting, rust-free appliance lifetime; lightweight and durable, the adjustable portable camping stove is a perfect fit for campers and backpackers looking to get the biggest bang for their buck +HIGH QUALITY CARRY BAG - The stove includes a durable, high quality carry bag for the users convenience; designed specifically for the portable stove, the bag is weatherproof, waterproof, and ensures the stove stays safe and protected when transported or kept in storage +CONVENIENT BOTTLE HOLDER - A stable base and 1lb propane bottle holder is included with the stove to make sure the fuel source stays locked in place and the user has a firm and secure cooking experience; detachable and stored with ease, the separate components of the portable stove allow for quick and comfortable usage in any situation +HIGH OUTPUT - the GS-8000 has a powerful BTU that allows for users to timely fry, stir, or boil their food, water, or soup in a flash; compact and lightweight, yet undoubtably packed with cooking power, the portable stove out-heats most home stoves while offering the ability of cooking on the go with ease",GasOne,,us,257 +B083VS1N2M,"Baja 900-Watt Propane Powered Inverter Generator, BAI911LP",,,Baja,,us,258 +B07PYV2NMZ,"GASPRO 10FT Two Stage Propane Regulator Hose with P.O.L. and 3/8 Inch Female Flare for RV, Grill, Gas Stove, Range","How to use it- The male end connects a standard size propane QCC-1/Type-1 tank and the female end attaches to a 3/8inch flare fitting. Great for: RV appliance, gas grill, gas stove/range, propane heater, propane fireplace, hot water heater and more","【Standard Connector 】Restricted Flow Soft Nose P.O.L. and Handwheel x 3/8"" Female Flare. 5/16"" diameter LP hose +【Well Gas Control 】Has integral first and second stages that ensure smoother and more consistent flow of propane gas to all gas appliances +【 Max BTU Flow】Providing 11"" WC (1/2psi) low pressure output, with a maximum of 225,000 BTU flow +【Compatibility】Fits for RV appliance, gas grill, gas stove/range, fire pit, propane fireplace, hot water heater and more +【High Quality】 100% solid brass fitting and durable hose to provide secure connection between gas appliance and tank",GASPRO,Black,us,259 +B082M8BYTK,"BELLEZE 48,000 BTU Gas Outdoor Patio Heater with Piezo Ignition System, Wheels for Smooth Mobility, LP Propane Heat CSA Certified and Hammer Finished - Bronze","Enjoy the outdoors even during the colder months with this outside heater. A powerful patio heater, this unit delivers up to 48,000 BTUs for a 15-foot diameter radius. Gathering in the backyard with friends and family becomes more cozy and comfortable with this outdoor heater. This propane heater delivers steady and comfortable warmth, ideal for residential patios, cafes, and restaurants. Stylish looks and practical features make this porch heater the best choice for those who love outdoor entertaining. Planning mid-winter parties in the backyard? This unit has you covered.

            A better alternative to a fire pit, this gas patio heater delivers quiet, soothing, consistent heat--with no smoke or open flames to worry about. There's a variable-heat control knob that lets you control the heat settings and turn off the heater completely off at the end of the night. The one-step Piezo ignition system makes it easy to fire up the unit with just a push of the button. Move this heater wherever you need warmth throughout your patio, thanks to its convenient portability. Equipped with two smooth-rolling wheels that allow you to transport the outdoor heater from poolside to patio or from one side of the deck to the other.

            Your safety is our priority, and that's why we've equipped this heating unit with the latest anti-tilt automatic shut-off mechanism. This ensures that as soon as the heater tilts to 30°, it will completely shut down all gas flow. Crafted from CSA-approved, high-grade steel for extra strength and durability.

            Specifications:
            Heat Range: 175 Sq/Ft (15' Radius)
            Diameter of Dome Reflector: 31.9""
            Support Pole Size: 2.9"" Diamter, 34.3""Height
            Size of Burner: 11""Diameter, 12""Height
            Size of Base: 18.1""Diameter, 3.39""Height
            Overall Height: 7.25FT","[COZY HEATING] This propane heater provides up to 48,000 BTUs for a 15-foot diameter radius. Perfect for residential patios, cafes, or restaurants. +[EASY IGNITION] Start enjoying the cozy warmth with just a push of a button. Equipped with a one-step Piezo ignition system to easily fire up the unit without complicated procedures. +[SIMPLE CONTROLS] Customize heat settings based on your personal preference. The heat control knob lets you adjust the heat settings and turn off the heater completely at the end of the night. +[PORTABLE] Comes with two smooth-rolling wheels that allow for easy portability, so you can move this pool heater anywhere throughout the deck. +[LOVE-IT OR 100 DAY RETURNS] We guarantee that you’ll love this product. If not, simply return within 100 days of purchase.",BELLEZE,Bronze,us,260 +B08SBQJ7P1,"Foinwer 6 FT Propane Hose Adapter 1lb to 20lb with Guage,Stainless Braided Propane Hose Adapter 1lb Portable Appliance to 20lb or 5-40lb QCC1/Type1 Tank, for Portable Heater,Camping Stove, Gas Grill",It is an ideal substitute for the 16.4oz/1lb green camping small propane tank,"🎁 Perfect replacement for the 16.4oz/1 pound green small tank, without the need to purchase an additional regulator, and it is directly connected to a 1-pound portable propane device. +🏆 Compatible with all equipment with QCC1/Type 1 connection and 1 lb to 20 lb propane tank, suitable for camping stoves, tabletop grills, tailgates, outdoor heaters and more 1-lb portable propane equipment. +🌙 Rotatable luminous dial-no matter day or night, it can clearly detect the amount of gas in the propane tank, no need to shake the propane tank +🔒Stainless steel braided hose-more effective than rubber hose to withstand bad weather and prevent animals from chewing. 100% solid brass joint with rubber sealing gasket inside to prevent leakage +📧 The product is equipped with a handwheel that complies with manual learning, which is convenient for installation. Provide one-year warranty service, please rest assured to use",Foinwer,,us,261 +B015S0VALO,"71'' Propane Gas Stove Burner REGULATOR 71'' Hose 20,000 BTU Propane Regulator","**Color hose may vary: red or orange*** if this is a concern, please contact us first before making the purchase.","Low pressure propane stove regulator +Hose length: 71'' long +0-20 PSI ; BTU max: 20,000 +** Not all propane tanks will be compatible with this regulator therefore, please view the threading photo of the adapter very carefully** +Quantity: 1 ; Shipping Weight: 1 lb",,,us,262 +B07M6RMP1V,"ARC, 339S Super Propane Burner Stove with Electron Strike,13"" Heavy Duty Cast Iron Burner,Portable Large Camping Stove with Stainless Steel Hose&Regulator, Perfect for Outdoor Cooking,Home Brewing",,"🔥Cast Iron Propane Burner: ARC Propane Stove is made from heavy duty cast iron with weather proof coating.Cast Iron will not melt easily compared to aluminum material and provides high heat resistances. +🔥Perfect for Outdoor: This outdoor burner with stable stand provides the perfect way to cook outdoors, you can enjoy this cook-top burner in the fish house, on the deck, camping, or anywhere outdoors. +🔥Gas Lock Safety Feature : The outdoor gas burner with electric strick design is easy to ignit. And with the adjustable fire power which will make your cook more delicious +🔥High Heat Output: 30,000 BTU/h Gas burner with CSA certificate regulator, 47 inch stainless steel hose, and connector included. +🔥Customer Service Guarantee: If you have any question about ARC product, please feel free to contact us. We will give you a satisfactory answer within 24 hours.",ARC Advanced Royal Champion,Stainless Steel,us,263 +B074BT57HG,"Renook Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ - 15.75 x 13-Inch, Black",,"1.NO BETTER CHOICE - Thicker does not mean better. Our grill mat is thin enough to leave grill marks and flavor intact,and thick enough to provide ultimate heat resistance and durability.6 pack of grill mats can meet the needs of the dinner from time to time; when they are spare, you can cut them to any size or shape to fit any need. Also doubles as a bake mat +2.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill +3.APPROVED MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F. +4.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing. +5.QUALITY GREAT- Unhappy with your new grill mats? No problem! If you have any question about it, just tell us and we will provide you a satisfied solution.",Renook,Black,us,264 +B07T6F3CWS,"GASPRO 0-20 PSI Adjustable Propane Regulator with Braided Hose, High Pressure LP Gas Regulator for Turkey Fryer, Burner, Forge, Smoker, 8-Foot","Product description:
            Using the black plastic fitting insert and rotate clockwise to your QCC1/Type 1 propane tank connection place.
            Taking the regulator hose end connect to your 3/8’’ male flare connector propane appliance.
            Fit for fire pit ,gas grills, burners, turkey fryers, smokers, cooker, and heater, gas stoves, as long as your appliance connection is 3/8""male flare connector
            0-20PSI Adjustable regulator with hose, You can adjust the pressure to the burners EXACTLY to get the best flame
            This is an essential part of converting your fire pit/table to a larger flame

            Specification:
            Certificate : CSA
            Gas Type : LP/LPG
            Regulator Type : High Pressure
            Outlet Pressure : 0-20 PSIG
            Inlet Pressure :25-250 PSI
            Flow Capacity : 120000 BTU/Hr
            Hose Length : 8 feet/ 96 inch
            End Connector : 3/8"" flare swivel nut; Hose connection: 5/8""-18UNF

            NOTE:
            1. For Your Safety, Please Check and make sure the hose is away from the OPEN FIRE and HIGH TEMPERATURE place before installing it to your appliances.
            2. To ensure your safely, please adjust the regulator to 0 PSI (Off the regulator) firstly before you installation.
            3.Not suitable for appliances which need low pressure regulator

            Warning:
            Only for OUTDOOR Use.","【Adjustable】 You can control the flame intensity by adjusting the pressure from 0-20 PSI according to your needs +【Durable and Chew-proof】 Stainless steel braided propane hose for better protection against animals chewing, more durable than the rubber hose +【Perfect Fit】 High pressure propane regulator is great for turkey fryer, Weber, Charbroil grill, gas burner, fish cooker, fire pit, and more +【8ft Length】 Gives you adequate length for appliance and tank placement +【Brass Connector】 QCC-1 Fitting (Acme Nut) x 3/8″ Female Flare",GASPRO,,us,265 +B07QBZN1HS,"Unicook Grill Cover 60 Inch, Heavy Duty Waterproof Gas Grill Cover with Sealed Seam, Rip and Fade Resistant BBQ Grill Cover, Fits Weber Charbroil Nexgrill and Most Grills Up to 58 Inch, Neutral Taupe","Unicook, a reliable brand with more than 20 years professional manufacturing experience in grill covers, grill parts, BBQ accessories, cookware, cooking utensil and more.

            Our devotion to each customer, profession in technology, emphasis on innovation, endless pursuit of quality motivate us to work hard and make progress all the time. Wish you have a wonderful trip with UNICOOK!

            Great News! We have released UNICOOK New Design Grill Covers to provide an unparalleled level of protection for your grills, won't wet your grills in heavy rains, fade easily in the hottest sun, or crack in temperatures dropping to 0°F, ensure superior performance and long-lasting.

            Key Features of Unicook Heavy Duty Waterproof Grill Cover 60 Inch:
            1. Constructed with new generation rip & fade resistant fabric and vinyl coating
            2. Durable double-stitching seams with heat sealed seam provides high level waterproof protection
            3. Handles on the top of cover make it easy to put on and take off, hang it up when not on grill
            4. Fastening straps at bottom keep your bbq cover securely in place

            Care and Use:
            1. Allow grill to cool before covering
            2. To clean the cover is a breeze, simply hose it down with water and the dirt comes right off; or clean with a damp cloth and mild detergent
            3. Air Dry for next use.

            Looking for more UNICOOK grill/smoker covers in different shapes, sizes and colors? Please click the ""Visit the Unicook Store"" button to get the proper cover you need.","【Grill Cover Dimension】- 60 inch grill cover measures 60""W x 23""D x 42""H, fits most brands of grill with width between 54"" and 58"". ﹡Measure your grill before purchasing to determine the proper cover. +【Fade Resistant】- Unicook grill cover is constructed with high density Fade and UV resistant fabric with vinyl coating, always looks like new, resists UV, tears and cold cracking, durable and long-lasting, gives your grill all year round protection. +【No Water Leaking】- Designed to be completely waterproof, double-stitching sewn seam with special sealing tape processing keeps your grills always dry even in heavy rain, no worries about water leaking through seams. +【Handles and Straps】- Fabric handles at two sides allow you to fit or remove the bbq cover easily; handles can also be used for hanging & storage conveniently. Fastening straps prevent your barbecue cover from blowing away in windy days. +【Wide Selection】 Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. Please click ""Visit the Unicook Store"" button on top to find the right cover to protect your grill.",Unicook,Neutral Taupe,us,266 +B07H5RHXJN,"Weber 67016001 Genesis II E-435 4-Burner Natural Gas Grill, Black",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and a grease management system +4 stainless steel high-performance burners, 1 side burner and 1 sear station burner deliver up to 69,000 BTUs of combined output +Porcelain-enameled, cast-iron cooking grates provide superior heat retention +Ample Cooking Surface. Up to 844 sq in, including the tuck-away warming rack.",Weber,Black,us,267 +B018A484AK,"Universal Barbeque Grill Scraper, Wooden Handle - 16 Inches Long",EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout.,"EASY CLEANING: The cleaning capabilities of this grill cleaner tool are far beyond any other brush or scraper on the market. It quickly removes grease and char from your bbq grill grate leaving it ready for your next cookout. +NO HARMFUL BRISTLES: Don't take a risk on char broil wire brushes. Wire bristle brushes can tear, splinter and leave entire wires, or fragments of wires on your grill or in your food. Each year, children and adults of all ages ingest grill-cleaning brush bristles causing severe injury. +TOUGH CONSTRUCTION AND LONG WOOD HANDLE: The shaft of the grill gadget is made of a flexible but very sturdy aircraft grade aluminum metal. There's a universal brass head that fits any grill grate rack and a wooden handle totaling 16"". +UNIQUE DESIGN: There is no other grill scraper like this on the market. This unique, patented design was MADE IN USA. +LIFETIME WARRANTY: There is a lifetime warranty on the Martin Grill Gadget. So no matter what happens to it, you can return it for a brand new one.",Martin Grill Gadget,,us,268 +B07WK2GZGD,"STYDDI 3 Feet Low Pressure Propane Regulator and Hose with Propane Tank Gauge, Universal QCC1 Replacement Hose with Regulator for Most LP Gas Grill, Heater and Fire Pit Table, 3/8 Female Flare Nut","

            STYDDI Premium 3 Feet Universal QCC1 Low Pressure LP Propane Regulator - BBQ Grill Replacement hose fits Most Gas Grills, Heaters and Fire Pit Table

            1.UNIVERSAL FIT: Fits all type 1/QCC1 propane tanks and cylinders for most bbq gas grills, RV, patio heaters, stoves, fire pit tables and most QCC1/Type 1 applications.
            2.FOOT LENGTH: Type 1 / QCC1 tank connections to 3ft hose and 3/8-inch flare fitting.
            3.PREMIUM MATERIALS: Heavy duty hose to 100% brass fittings provide secure and safe connection from your propane tank to your appliance.

            Product Instructions:
            1.Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place.
            2.Taking the regulator hose end connect to your 3/8"" male flare connector propane appliance.
            3.Checking this hose both ends must be fully tightened.

            Specification:
            Inlet:QCC-1 Tank Connection (ACME)
            Outlet: 3/8"" Female Flare Nut
            Flow Capacity: 80000 BTU/Hr
            Propane Hose Length: 3ft/36Inch (Length of rubber/braided hose only)
            Certificate: CSA
            Gas Type: LP/LPG
            Material: Rubber / Brass

            Attention:
            1.Warning!!! For your safety ALL propane appliances like gas grills, heaters and stoves are OUTDOOR Use.
            2.FULLY TIGHTENED at both propane tank side and grill side before using on your propane appliances to prevent leakage.
            3.To check and make sure the hose is away from the OPEN FIRE before installing to your appliances.
            4.Keeping the hose away from HIGH TEMPERATURE.

            Note:
            Please check to see if the propane tank has the standard propane valve fitting QCC1/Type1, like a Gas Grill, Heater, Fire Pit and Generator. Then see device if the other end is a 3/8inch Male Flare Fitting.

            ","NO NEED TO BUY EXTRA GAS METER & SAVING YOUR MONEY. This upgraded 3 FT braided low-pressure propane hose and regulator assembly is equipped with tank gauge level indicator, allows you to monitor the fuel level without necessarily removing the tank. The color-coded dial lets you see when your propane gas level is low at a glance without spending more money on extra gas meter. +CSA CERTIFICATED & BUILT-IN EXCESS FLOW PROTECTION FOR YOUR SAFETY. CSA certificated ensures secure, airtight connection between grill and tank. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically. +EASILY INSTALL WITHOUT A HITCH! Please DOUBLE CHECK your appliance connection is 3/8"" MALE FLARE FITTING CONNECTOR. Insert the black plastic fitting and rotate clockwise to your QCC1/Type 1 propane tank connection place. Then connect the regulator hose end connect to your 3/8"" male flare connector propane appliance. It’s compatible with your 20-50 lb propane gas tank. +UNIVERSAL FOR MOST LOW-PRESSURE GAS PROPANE APPLIANCE. QCC1/QCC/Type 1 hose and regulator replacement for Weber Genesis 300-series, Genesis Silver C, Genesis Gold, Genesis Platinum, Spirit E-210/E-310 etc.and most of Chari-broil gas grill with side burner; Dyna-Glo dgp350snp-d, mfa350bnp/mfa350cnp ge530bsp-d,dge486ssp-d,dge486gsp-d etc. and most of Brinkmann gas gril; Uniflame GBC873W-C,GBC873W,GBC940WIR,GBC940WIR-C,GBC976W,GBC956W1-C,GBC1076WE-C etc. and most of Kenmore gas grills. +A MUST-HAVE BBQ HEATER REPLACEMENT. No tools required and easy to install with handheld grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, Fire pit Table, Turkey fryer and more propane appliances. Helpful in various occasions such as BBQ, camping, tailgating, heating needs or having an outdoor cookout.",STYDDI,Black,us,269 +B001ABPB2U,"Stansport Propane Appliance to Distribution Post, 5 Feet",,"Works on 30 inch distribution post +Works on all propane appliances +Heavy duty quality hose +Brass fittings for security to appliances and tanks +Buy more than one to put on distribution post",Stansport,Multicolor,us,270 +B01N1RO9WG,"Gas ONE GS-3900P New Dual Fuel Propane or Butane Portable Stove with Brass Burner Head, Dual Spiral Flame 15,000 BTU Gas Stove with Convenient Carrying Case Most Powerful Heat Output Stove",,"✓ 15, 000BTU MOST POWERFUL STOVE IN THE MARKET - Compatible with both butane (Fuel not included) and propane fuel (Fuel not included) / Operates on a single butane cartridge 8 oz or a propane cylinder 16. 4 oz (Propane adaptor hose Included) +✓ PIEZO-ELECTRIC IGNITION - that eliminates the use for lighter/matches in order to ignite flame +✓ EASY TO USE - Our GS-3900P is easy to use with adjustable heat dial and piezo-electric ignition ***Great for Camping, Backpacking and Emergency Preparedness*** +✓ SAFETY FEATURES - Built in Pressure Sensor Cartridge Ejection System and Gas Flow Cut Off Mechanism +✓ WINDBLOCKER - With Heavy duty Windblocker 4 corners of the burner head, It eliminates stove from turning off from the wind",GasOne,Stove,us,271 +B0848RWBP7,"GasOne 50140-012 16.4 oz to 20 lb Tank QCC1/ Type 2 12 ft Propane 1lb to 20lb Adapter Hose, Black",,"✓ Convert your connection - for the moments you feel that a 16. 4oz propane tank just isn’t enough, gas one’s 1 to 20 lb. Propane Converter (12Ft) allows for 1lb propane adapters to be used for 20lb propane tanks! +✓ Save money with this adapter - instead of buying multiple single pound (16. 4oz) propane cylinders and straining your wallet, use gas one’s converters to utilize your 20lb tanks for your previously incompatible propane appliances. Each cylinder saved is money in your pocket! +✓ Highest quality rubber hose - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output/efficiency +✓ EASY, HASSLE-FREE INSTALLATION - Ready for use right out of the box, all the 1 to 20lb adapter needs is a simple, easy installation. Connect the end with the black plastic cover to your larger propane tank and connect the other end to your original 1lb propane adapter. This will convert the 1lb adapter to a 20lb type fitting and will immediately start saving you money, space, and time! +✓ Safety 1st - top quality propane hose adapter",GasOne,black,us,272 +B083G4SNQX,"58 inch Grill Cover, Waterproof BBQ Grill Cover, Durable Large Gas Grill Cover 3-4 Burner For Weber, Brinkmann, Char Broil, Jenn Air - Outdoor Gas Grill Burner Covers - UV Resistant - Rip Proof, Black","ORIENT FAMULAY 58inch Grill Cover is designed to provide your grill with all-weather protection

            Features:
            -Made of durable FadeStop fabric with waterproof vinyl backing, ensures the superior performance in all seasons
            -Ccomes with a storage zipper bag. So it is very easy to fold when you don't need it
            -Adjustable Fastening straps at bottom can be hold cover tightly in the right place in windy days
            -With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle

            Care and Use:
            1. Allow grill to cool before covering.
            2. The water repellent finish enables stain-preventing and easy cleaning
            3. Dry up the cover in the sun for next use or storage it to the bag

            What you could get?
            1 x 58inch grill cover
            1 x Storage bag
            Lifetime Product guarantee","【WIDE COMPATIBILITY】The bbq cover measures 58""L x 24""W x 46""H inch, Check your grill's dimensions for better usage. Fits most brands grill with 3 to 4 burners, such as Weber, Charbroil, Brinkmann, Jenn air, Royal Gourmet, Kenmore, Pit boss +【Rip Resistant & UV Protection】: New Upgraded high density oxford with fade resistant, the grill cover 55 inch is able to protect your grill from resists UV, repels rain, resists tears and cold cracking. it is your companion of your grill perfectly. +【PORTABLE & CONVENIENCE】The gill cover 58inch comes with a storage zipper bag. So it is very easy to fold. With double sewn for edge and connection, the bbq cover is more durable to extend its life cycle +【LIGHTWEIGHT BUT DURABLE MATERIAL】:The Gas Grill Covers are made of durable waterproof fabric with PVC layer, which could prevent your grill from water, snow, ultraviolet, dust. It is very easy to be clean and keep your barbeque grill clean like a new +【LIFETIME REPLACEMENT】Any issues with the ripping or fading, please contact us and we'll make this right and give you the satisfied answer!",ORIENT FAMULAY,Black,us,273 +B07Y5RY59R,Lion Premium Grills 32-Inch Natural Gas Grill L75000 and Double Side Burner with Lion Door and Drawer Combination Unit with 5 in 1 BBQ Tool Set Best of Backyard Gourmet Package Deal,,"Lion L75000 32"" Natural Gas Grill features 4 cast stainless steel burners (75,000 total BTUs). Made with 304-16 gauge commercial grade stainless steel and 830 sq. in. of cooking surface. +Component package deal includes Lion Double Side Burner and Lion Door and Drawer Combo Unit +Gourmet package includes smoker box, grill head canvas cover, rotisserie kit, griddle and griddle remover. +Best of Backyard Package Deal includes a BBQ 5 in 1 Tool Set featuring 17"" Spatula, 16"" BBQ fork, Basting Brush, Cork Screw, and Rosewood Handle.",Lion Premium Grills,Stainless Steel,us,274 +B00Q9MF83M,Tabletop Gas Patio Heater Finish: Stainless Steel,"HLDS032-GTTSS Finish: Stainless Steel Features: -Safety anti tilt switch in case heater tips over. -Portable glass tube. -Gas type: Propane, butane. Product Type: -Standing heater/Tabletop heater. Material: -Glass/Stainless Steel. Heat Source: -Propane. BTU Output: -11000 BTUs. Ignition Type: -Multi-speaker igniter. Fuel Capacity: -1 Pounds. Heat Range Diameter: -4 Feet. Safety Shut Off: -Yes. Pilot Light: -Yes. Tip Over Shut Off Safety Switch: -Yes. Portable: -Yes. Commercial Use: -Yes. Dimensions: Overall Height - Top to Bottom: -30"". Overall Width - Side to Side: -12"". Overall Depth - Front to Back: -12"". Overall Product Weight: -19 lbs. Specifications: CSA Certified: -Yes.",,AZ Patio Heaters,Bronze,us,275 +B0024ECC3S,"Camco Heavy-Duty 20lb Propane Tank Cover Protector- Protect Popane Tank from Flying Debris, Provides Easier Access to Gas Valves (Polar White) (40523)",,"Easy access to gas valves +Heavy-duty polypropylene +Polar White +For two 20 lb propane tanks +Easy to install and highly durable",Camco,Polar White,us,276 +B07GRFTR4S,"GasOne 2120 4 ft Propane Regulator and Hose 0-30PSI with PSI Gauge, Old Black QCC",,"✓ MEASURE YOUR PRESSURE – Use Gas One’s built-in PRESSURE GAUGE to determine and regulate your propane PSI. Measuring from 0-60 psi (as well as 1-4 100xKPA), Gas One’s Pressure Gauge lets users control their heat with a precise level of accuracy +✓ USER FRIENDLY - This Regulator Hose 0-30 PSI adjustable output is must have item for your propane burners, turkey fryers, heaters, smokers and all other propane appliances, Easy to use and good for secure gas flow, No gas leak, Simply connect and go, Extremely reliable +✓ DURABLE AND STURDY CONSTRUCTION - Our Propane hose measures 4FT (48in) long and fits type-1 (QCC-1) tank connections, Long-lasting and reliable, Goes for a long time, Heavy-duty and good for use with high-pressure burners +✓ COMPLETELY SAFE- Top Quality Regulator/Hose for use on turkey fryers, smokers and much more, Good for use with any burners compatible with fit, Ensures safe gas flow +✓ STANDARD FITTING - 3/8-inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, Trouble-free and has easy attachment *Tools are required for secure leak free connection to your propane appliance, Output of adjustable 0 to 30PSI",GasOne,Old Black QCC,us,277 +B01BEOULUE,BootYo! Propane Lantern Base- Fits 14.1 oz and 16.4 oz Bottles (Propane Lantern Base (Single)),"Solid ABS plastic propane lantern bottle holder. Made in the USA. Solid, but flexible. Sturdy! Holds both thick or thin (11.1 or 16.4oz) disposable propane bottles used in many applications. Perfect for use in the field- hunting, camping, work, construction.","Strong, lightweight, rigid plastic stand stabilizes both 14.1 and 16.4 oz disposable propane bottles / cylinders +Perfect for lanterns, single burner stoves, grills, heaters and other propane appliances +Great to take camping, hunting, on construction jobs, work, tailgating! +Lightweight, sturdy, long lasting. +Made in the USA!",BootYo!,Black,us,278 +B06XTGCQ7P,"GasOne 200, 000 BTU Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Hose Perfect for Home Brewing Turkey Fry Outdoor Cooking Maple Syrup Prep",,"Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron with metal frame, long lasting and good for projects +High heat output- 200, 000 BTU, extremely powerful (paint chipping is normal, no paint that can currently withstand such a high temperature and heat of 200, 000 BTU) +Convenient- air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection, Easy to use right out of box +Heavy-duty- perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting +Safety- heat adjustable propane regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten)",GasOne,,us,279 +B07D6FSMX3,Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding BBQ Kabab grill Camping Grill Tabletop Grill Hibachi Grill for Shish Kabob Portable Camping Cooking Small Grill,Portable Charcoal Grill Barbeque Grill - Outdoor Stainless Steel Folding Picnic BBQ Grill Small Lightweight BBQ Tools for Outdoor Cooking Camping Hiking Picnics Tailgating Backpacking,"Portable Charcoal Grill- The BBQ grill has four detachable legs, paired with convenient handles, easy to store and carry. Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces. +Firm and Durable BBQ Grill - This portable charcoal grill is made from high heat resistant stainless steel material, solid and excellent abrasive resistance, no rust, no twist, durable and long lasting. +Easy Assembly and Easy To Clean - This charcoal BBQ grills can be folded up and torn down in an instant .Convenience to take it to anywhere to have fun. Durable plated steel cooking grate retains heat and is easy to clean. +Adjustable Height and Balance - The small charcoal grill has 4 legs the bottom of which has a plastic floor mat, The mat may adjust the nomad grill’ height and balance. +Grill Size & Accessories - Assembled Size: Approx.15.9*11*8.8in (40.5x28x22.5cm), Folded Size: Approx.15*11*4in (38x28x10cm), Accessories :BBQ housing, grill, coal, fuel grill. Recommendations for the use of the environment: building balconies, garden. Recommendations for the use of numbers: 2-5.",ISUMER,Sliver,us,280 +B07PHKT5XC,"GasOne B-3600H Propane Cover 200,000-BTU Brewing Burner with Adjus, 15.75 x 15.75 x 16.00 inches, Black",,"Weather proof cover - Gas one cover protects against rain, snow and other outdoor elements +High heat output- 200, 000 BTU; fully adjustable heat-control knob (paint chipping after use is perfectly normal, there is no paint that will withstand 200, 000BTU at the moment), power with control +Convenient- removable and Height adjustable legs, air valve controllable to have consistent clean blue flame, comes with high pressure regulator and hose for propane tank Connection +Heavy-duty- specialty designed for for beer brewing but can be used for camping, fishing, outdoor cooking, emergency preparedness, etc., strong and long lasting +Steel-braided hose - includes adjustable high pressure regulator and heat resistant, steel-braided hose, ensures safe flow of pressure and gas",GasOne,Black,us,281 +B088YP9G4N,Charcoal Grill Barbecue Portable BBQ &Stainless Steel Folding Grill Tabletop Outdoor Smoker,"
            Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

            With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

            Technical Details:
            Premium Material: Solid iron support + Chrome plated BBQ wire mesh
            Color: Black","The grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. There are also bracelets on both sides of the grill for easy carrying. It is designed with ventilation holes at both ends of the grill so that air flow can be easily controlled and heat is evenly distributed on the grill. Barbecue grill grids can be removed clean, very convenient[SUITABLE FOR 3-5 PEOPLE’S GATHERING]",LETION,Stainless Steel,us,282 +B07JPZXW51,WiFi Smart Gas Leak Detector Propane Butane Methane Natural Gas Alarm Sensor Plug-in Wireless Remote Controlled by Smartphone APP Work with Echo Alexa -No Hub Required,,,TECHOST,,us,283 +B00WLYOAB8,"Onlyfire 03340 Electric Push Button Igniter BBQ Replacement for Select Gas Grill Models by Char-broil, Brinkmann, Grillmaster, Aussie,Charmglow, Kenmore, Lowes, Nexgrill, Brinkmann, Bakers, Grillware, Jenn Air, Huntington and Others, Black","Specifications: 
            Onlyfire 14451 Electric Push Button Igniter
            One ""AA"" Battery Is Needed. (Battery Not Included)
            4 Male Spade Connector Outlets

            Original Part Numbers:   03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250;

            Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C;

            Uniflame Part Numbers: 55-07-448;

            Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

            Amana Part Numbers: FCTG3007029;

            Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

            Suitable Models of BBQ gas grills:
            Fits Various gas grill models of BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

            Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

            Exact-fit parts !Cooks better! Durable construction and Lasts longer!

            A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

            NOTE: The ""Fits"" BRAND and MODEL # Listed above are Reference ONLY!

            Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

            ","CSA Certified, Requires 7/8"" diameter mounting hole. Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet 1.5-Volt ""AA"" Battery Push Button Ignitor (Battery not include) Fits Charmglow Models: 810-2320-B, 810-6320-B, 810-7310-F;Uniflame Models: NSG3902B, NSG4303, Fiesta Models: FGF50069-U40, U404, U420; Char-Broil Gas Grill Models: 4632215, 4632220, 463221503, 463240804, 463241004, 4632210, 4632235, 4632236, 4632240, 4632241, 466231103; Chargriller Models: 3001, +Original Part Numbers:03340,3340,119-2700-0, 50002743,P2503H,P2503C,P02502164C, 5515171, 5515074, P02502154C,55-07-448, 20810-2600-1, 55-07-386, 20GBC730W-C, CHRP0250; Kenmore Part Numbers: P2503C,P02502164C,P02502154C,P02502024C; Uniflame Part Numbers: 55-07-448; Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6; Amana Part Numbers: FCTG3007029; Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1 +Fits Various models of BBQ Grillware BBQ Pro, Grill Chef ,Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, XPS ,Broil Mate ,Tuscany ,Turbo ,Augusta, Austin, Elite Series 4445, Grand Gourmet 2250, 4415, 6345, Grill Zone 6355, 6440, 6650, 6670, Savannah Master Chef ,Centro ,Master Forge;Pro Series 2200, 2235, 2500, 2600, 2610, 2630, 2700, 4040, 4345, 4425, 4615, 6330, 6668 ;Amana Models: AM26LP, AM27LP +Fits Brinkman Gas Grill Models: 2200, 2210, 2235, 2250, 2300, 2700, 2720, 4040, 4345, 4400, 4415, 4425, 4445, 6330, 6345, 6355, 6440, 6650, 6668, 6670, 810-2200, 810-2200-0, 810-2210, 810-2210-0, 810-2210-1, 810-2235-0, 810-2250-0, 810-2250-1, 810-2250-2, 810-2300, 810- 2300-0, 810-2300-B, 810-2310-0, 810-2310-1, 810-2400, 810-2400-0, 810-2400-2, 810-2500, 810-2500-0, 810-2500-1, 810-2600, 810- 2600-0, 810-2600-1, 810-2610-0, 810-2630-0, 810-2700, 810-2700-0, 810-2700-1, 810-2705-1, 810-2720 +Kenmore Sears Models: 141.157981, 141.15799, 141.157991, 141.16123, 141.16223, 141.162231, 141.16225, 141.162271, 141.16228, 141.16313, 141.16315, 141.16321, 141.163211, 141.16323, 141.16325, 141.16326, 141.16327, 141.163271, 141.16329, 141.163291, 141.163292, 141.165400, 141.166400, 141.16673, 141.16680, 141.166801, 141.16681, 141.16690, 141.166901, 141.16691, 141.168600, 141.17227, 141.17228, 141.17326, 141.17327, 141.173271, 141.17329, 141.173291, 141.173292, 141.17337, 141.173371",onlyfire,Black,us,284 +B09B48Y5JB,"H0MEpartss 200lb / 420lb Propane Tank Lid 16"" Diameter Cover Top Above Ground Black Plastic","Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid~""","✅ Replacement lid for 200lb and 420lb propane tanks, 16 diameter lid"" +✅ We have only quality products. +✅ High quality- save your time and your money. +✅ Ensure long-lasting and effective performance.",H0MEpartss,,us,285 +B0783GVCFV,"Weber 49010001 Spirit II E-310 3-Burner Natural Gas Grill, Black",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +Natural gas grill with 10 year, 100 Percent Weber Guarantee, 10 foot flexible hose included ,Left table down width - 42 inches +Boasts the Gs4 grilling system with improved infinity ignition, burners, porcelain-enameled Flavorizer Bars, and grease Management system +Porcelain-enameled, cast iron cooking grates. Dimensions - lid closed (inches): 44.5H x 52W x 27D +529 Square inches of cooking space over three burners",Weber,Black,us,286 +B088YRD1WT,Charcoal Grill Barbecue Portable BBQ - Stainless Steel Folding Grill Tabletop Outdoor Smoker BBQ,"
            Barbecue is an indispensable leisure activity in the four seasons. In the summer, you can take a light barbecue and have a picnic in the shade of the shade. It is so funny to watch kids fly kites and eat fragrant barbecue. In the winter, you can call friends and families to held a party, the barbecue grille out of the warm heat, and grilled delicious barbecue, it is an ideal life.

            With UTTORA BBQ grill, you will be able to satisfy your ideal relaxation life.

            Technical Details:
            Premium Material: Solid iron support + Chrome plated BBQ wire mesh
            Unfolded Product Dimensions :14.96''x10.62''x7.87''
            Folded Product Dimensions : 13.77''x9.4''x2.36''
            Product weight: 3.53 lb
            Color: Black","►The barbecue oven not only has foldable legs, but also is small, weighs only 1.6 Kg, and is especially portable. The folding legs are deployed to support the grill in a triangular mode to make the grill more stable. You can put a small grill in the trunk and garden.",LETION,Stainless Steel,us,287 +B0009PUQAK,Coleman High-Pressure Propane Hose and Adapter,,"5-foot hose and adapter attaches propane appliances to 20-pound propane tanks +Great for use with Coleman grills, stoves, lanterns, heaters, and more +A cost-efficient solution to regularly replacing 1-pound canisters +Allows propane devices to last up to 20x longer without refueling +Hand tighten counterclockwise",Coleman,Black,us,288 +B08FQY2LBK,"GasSaf 4FT 10 PSI Adjustable High Pressure Propane Regulator with Hose,1/8"" Male Connector Suitable for Turkey Fryer,Fish Fryer,Propane Burner,Fire Pit and More- CSA Certified","GasSaf Adjustable Propane Regulator Hose
            Product features
            The appearance is upgraded to stainless steel weaving material, which has better corrosion resistance, heat resistance and wear resistance, conforms to CSA certification, and is more safe and stable
            Specifications: Hose length: 4 feet / 48 inches
            Regulator type: high pressure
            Gas type: LP / LPG
            Inlet pressure: 25-250 PSI
            Outlet pressure: 0-10PSIG
            Capacity: 122000 BTU/Hr
            Tail connection: 1/8-inches male connector
            Note: After finishing use, turn the red button of the propane regulator to the 0PSI position
            ","【Product Parameters】:Adjustable propane regulator hose has a sturdy stainless steel braided jacket, Adapts for 1/8-inches male orifice connector +【Flame Control】: It is a perfect substitute for the non-adjustable regulator of large burner equipment. Turn the red knob to adjust the temperature you need (Note: When you stop using the propane hose, you need to adjust the knob to 0PSI) +【More Reliable】: The upgraded version of propane regulator has better corrosion resistance, heat resistance and wear resistance, and stable gas output can cope with various combustion equipment +【Scope of Application】: suitable for Turkish fryer, fish fryer, propane burner, gas stove, cooking utensils, etc. As long as your device connection is 1/8-inches male orifice +【Easy to install】: connect one end of the regulator to the combustion equipment and the other end to the 5-40 lb propane tank to start working",GasSaf,,us,289 +B00NCSUZHK,"Magma Products Newport 2 Infra Red, Gourmet Series Gas Grill, Multi, One Size",,"New tempered glass viewing window New beautiful rounded edge design Redesigned dynamic combustion system +Made in the U.S.A. Constructed of 100% 18-9 marine grade mirror polished stainless steel Full double lined lower shell Hermetically sealed thermometer +Equipped with integrated fold-away legs Locking front access grease tray 9""x18"" (162 Sq. In.) grilling area +Uses standard 1 lb. disposable propane canisters or adapts to on-board LPG or CNG systems +New electronic ignition Infrared radiant screens",Magma,Multi,us,290 +B0817KW1JV,"All Power America APGG12000GL 12000 Watt Dual Fuel Portable Generator with Electric Start 12000W Gas/Propane, 50A 120/240V AC Outlet, Black/Red",,"12000 watt peak power, 9000 watt rated power(GAS); 9500 watt peak power, 7250 watt rated power(LPG) +18HP 459cc OHV air cooled Engine; Running time: 10 hrs @ 1/2 load +Fuel capacity: 8 gallons; Operating Noise Level: 76 dB; Electric Start Button & Recoil Start +2x 120V AC 20A outlets, 1x 120V twist-lock AC 30A outlet, 1x 120/240V twist-lock AC 30A outlet, 1x AC 120V/240V AC 50A Outlet; Includes hour meter, maintenance free Battery and flat free wheel kit +EPA Certified. Non C. A. R. B. Compliant, not available to ship to California",All Power America,Black/Red,us,291 +B010O0ZWWQ,"Shasta Vent 8"" Dia. I.D. Class A, All Fuel, SS ""Chimney Cap"" for 8"" Shasta Vent Chimneys",,"Oil, coal, natural gas, propane burning appliances +Natural drafting building heating appliances +Zero-clearance factory-built fireplaces +Double wall chimney system for residential and building heating appliances",SHASTA VENT,,us,292 +B072JYD7MC,"Unicook 2 Burner Grill Cover 32 Inch, Outdoor Waterproof Small Gas Grill Cover, Heavy Duty BBQ Cover, Fade Resistant, Fit Grills with Both Side Tables Down for Weber Char-Broil and More"," Upgraded! We have re-engineered Unicook grill covers to provide an unparalleled level of protection for your grills. They will not fade easily in direct sunlight, or crack in subzero temperatures, built to last and ensure superior performance all year round.

            Key Features of Unicook Heavy Duty Waterproof 2 Burner Grill Cover Selection:

            ● Fade Resistant - Constructed with new generation special fade resistant fabric, costs almost twice as the usual materials do. Unicook bbq grill cover will not fade easily under the extreme UV rays as the common grill covers do, durable for a couple of years.

            ● Waterproof - Made of heavy duty fabric with waterproof vinyl lining, keep your grill dry and clean in any season and weather.

            ● Cold Resistant - The new fabric material is soft and flexible, will not get brittle or crack in cold winter.

            ● Wind Resistant - Fastening straps at two sides keep cover securely in high wind.

            Care and Use
            ► Allow grill to cool before covering.
            ► To clean the cover is a breeze, simply hose it down with water and the dirt comes right off.
            ► Air dry for next use.

            Unicook outdoor grill covers are designed to fit grills in various shapes and sizes for your selection. You will be sure to find the right cover to protect your grill. Please click the ""Visit the Unicook Store"" button (top middle of the page) to get the right Grill Cover you need. If you need any assistance, please do not hesitate to contact us.","【Fade Resistant Grill Cover】- New generation special fade resistant fabric with vinyl coating, water repellent processed, the new material exhibits superior colorfastness, resists UV, repels rain, resists tears and cold cracking, durable and last longer, gives your grill all year round protection against sun, rain, snow, wind, dust and dirt. +【Fabric Handles】- Durable fabric handles at two sides for easy fitting and removal effortlessly in seconds. It can also be used for hanging and convenient storage +【Fastening Straps】- Convenient heavy duty fastening straps keep cover securely fastened and prevent bbq cover from slipping or blowing off +【Small Grill Cover Dimension】- 2 burner grill cover measures 32"" width by 24"" depth and 43"" height, designed to fit most two burner gas grills with side two tables collapsed and folded down. ﹡Be sure to measure your grill first to determine the proper cover size +【Wide Selection】 Unicook outdoor bbq grill covers are designed to fit grills in various shapes and sizes for your selection. Please click ""Visit the Unicook Store"" button on top to find the right cover to protect your grill.",Unicook,black,us,293 +B08P38XD3T,"Camper Propane Tank Cover,Heavy Duty Waterproof Anti UV Polyester Double 30 Lb Propane Tank Cover for Camper RV Trailer,RV Trailer Camper Covers Lp Tank Cover,Weather Resistant (Double 30 LB)","
            FEATURES:

            -Made of high end UV resistant,crack resistant,weatherproof Polyester fabric
            -Bottom Elastic band and Zipper towards top of cover easily keep the propane gas tank cover secure
            -Water-Resistant,All Weather Protection
            dual propane tank cover rv
            rv propane tank cover double
            travel trailer double propane tank cover
            travel trailer propane tank cover
            ","♥FOR DOUBLE 30-POUND / 7.5 GALLON TANKS:the 30 lb propane tank cover Fits 2 side-by-side 30-pound (13.6kg) / 7.5-gallon (28.4 L) double cylinder canister RV, camper, motorhome,and travel trailer propane tanks with total dimensions up to 28""x 12""x 18""inch ( (71cm x 30.5cm x 45.7cm) +♥Camper Propane Tank Cover Materials: the Dual propane tank cover made of high end UV resistant,crack resistant,weatherproof Polyester fabric, which enable itself to protect your propane tank from dust, wind, heat, cold, rain,or snow,thus offering a complete cover to your propane tank. +♥propane cover for rv trailer custom fit elatstic band: Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; Zipper towards top of RV Propane Tank Cover allows you to attach your tank tubes without cover removal. +♥EASY TO INSTALL: Hose can exit through the bottom of the cover, but a horizontal side zipper runs along half of the diameter to allow access to the connections and valves without removing the entire cover; 1 trailer propane tank cover simply slips over double (2) cylinder canister tanks that are on your RV/trailer (can also be used for home gas grill tank); Simply fit over your tank with bag opening facing down; Form-fitting elastic bottom holds the cover in place to protect against elements +♥100% Risk Free Buy &Fast Delivery : We are confident with our indoor /outdoor dual propane tank cover quality, if you are not satisfied with our propane tank cover for travel trailer in any time, feel free to contact us, you will get your money back or new replacement with no question asked! Amazon shipment, you will receive your rv propane tank cover 1-3 days, no need worry about gift delays.",CEMGYIUK,Grey,us,294 +B07F2VP353,"Fire-Maple ""Fixed Star 1"" Backpacking and Camping Stove System | Outdoor Propane Camp Cooking Gear | Portable Pot/Jet Burner Set | Ideal for Hiking, Trekking, Fishing, Hunting Trips and Emergency Use","Portable Propane Stove Burner for Camping
            The Fire Maple X1 is an efficient stove burner that can help you cook all your favorite dishes in the great outdoors. With a windproof design and highly-efficient heat exchange system, your food will cook perfectly no matter where you set up camp.

            Specifications:
            Materials: Aluminum, stainless steel, copper, silicone
            Open: Ф128x173mm
            Weight: 1.13Ib/511g

            ","HIGHLY EFFICIENT - Our industry leading heat exchange technology minimizes wind impact and reduces boiling times by up to 30% compared to traditional backpacking stoves. +COMPACT AND LIGHTWEIGHT - All accessories including stove, bowl and fuel canister fit into the 1 liter cook pot. THIS SET DOES NOT INCLUDE A FUEL CANISTER, but is compatible with most canisters EXCEPT the COLEMAN fuel canisters. This item weighs only 18 oz! +INTEGRATED AND EASY TO USE SYSTEM - The 1 liter cooking pot and the stove are one integrated unit, the built in piezoelectric ignitor ignites the stove instantly. +SAFE, STURDY AND DURABLE - The sturdy, hard anodized aluminum pot features a locking stainless steel handle for secure and safe handling, this combined with the insulating neoprene cover on the pot will ensure years of safe outdoor cooking pleasure. +30 DAY RETURNS AND 3 YEAR WARRANTY! - The Fire-Maple Fixed Star 1 is the ideal cooking system for backpacking, camping, hiking, trekking, fishing, hunting, biking, kayaking, tailgating, picknicking and all other outdoor activities!",Fire-Maple,Black,us,295 +B07VHP3M9L,"Natural-Gas-Leak-Detector-Alarm, WiFi Smart Plug in for Home Methane/Propane Alert Detectors with Sound Light Voice and Red Light Warning, Portable for Home & Kitchen Security, App Control, MESMART",,"Household Security: Help reduce your worries that the stove gas has been left on accidentally. The gas leak alarm will sound an 80dB siren with LED light flashing when it detects combustible gases including kitchen methane / natural gas or camping propane before it reaches an explosive level leading to fires +WiFi Smart Function: Sound light alarm only can avoid dangerous in home, with WiFi signal connected, no matter where you are, once it detects gas leaking, an notification will be pushed on your smart phone via App. No Hub required +Simple but Elegant Design: Solid color design with elegant small holes, mini size Diameter 6.3cm/2.48”, height 2.1cm/0.83”, nice decoration, install it in kitchen or anywhere refers to gas leaking +Fireproof Material: Powered by 5V/1A adapter, safety certificated by CE. The detector made of fire-poof material which means it will not cause any fire dangerous for daily use +Package Content: 1x WiFi Version Gas Leak Detector, 1x Glue Tape, 1x 5V/1A Adapter, 1x Micro USB Power Cable and 1x English Manual. Retail box, nice gift for family, parents, friends, etc.",MESMART,,us,296 +B07QG6QCLD,APG Portable Space Gas Heater Outdoor Warmer Propane Butane Tent Heater Camping Backpacking," This heater is gas powered, very convenient to use. It is lightweight and portable for your outdoor trips.
            Features:
            Made of stainless steel for durability.
            Mounts to a gas stove and requires no electricity Rust proof emitter guard.
            Adjustable safety valve controls gas flow and heating power.
            Weighs 320G and comes in a storage bag, convenient to carry.
            Specifications:
            Material: Stainless steel & Aluminum alloy & Copper
            Dimension: 15 * 14cm / 5.9 * 5.5in (D * H)
            Net Weight: 320g
            Package List:
            1 * Heater
            1 * Canister Stand
            1 * Storage Bag
            ","Note: Propane Tank Need Mapp Adapter to use (product don't contain adapter) +Weighs 320G and comes in a storage bag, convenient to carry. Dimension: 15 * 14cm / 5.9 * 5.5in (D * H) +Package List: 1 * Heater 1 * Canister Stand 1 * Storage Bag (Note: this product doesn't contain gas tank) +Material: Stainless steel & Aluminum alloy & Copper",APG outdoor,Metallic,us,297 +B07C1KZK5W,DOZYANT 5 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1/Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank - Safety Certified,,"CONNECT 1 Pound PORTABLE APPLIANCE TO 20 Pound PROPANE TANK - Hose with adaptor fitting let you hook your 1lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, Allows connection to more fuel +COST EFFECTIVE - Stop spending your money on 16. 4 oz / 1lb propane tank that will last you few hour of usage, With this adaptor you can use it on 20lb or larger tanks that will last you long period of time, Convenient for those with larger tanks. +WEATHER RESISTANT - This High Pressure Hose uses highest quality rubber to ensure you safe leakage free operation while providing excellent weather resistance, Safe and made of quality material +BRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use +MULTI-SUITABILITY - Perfect for lantern, buddy heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.",DOZYANT,Black,us,298 +B072559N4L,"LOOCH Grill Mat Set of 6-100% Non-Stick BBQ Grill & Baking Mats - PFOA Free, Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill and More - 15.75 x 13 Inch","

            Each set has 6 of the highest quality grill mats that makes grilling anything easy!

            Looch non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

            Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

            You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

            They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

            For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

            These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

            These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

            -Veggies
            -Shrimp
            -Fish
            -Bacon
            -Pizza
            -Pancakes
            -Eggs
            -Anything else you want to put on the grill!

            BBQ Grill Mats Size: 15.75"" x 13""

            ","100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill! +500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These mats are heat resistant up to 500 degrees Fahrenheit! +SECURITY ASSURANCES - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe and guaranteed by a lifetime warranty. +DISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze! +The Perfect Grill Mate - Perfect for any grill, including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Perfect for those nasty campground or park grills!",LOOCH,Black,us,299 +B07C2KCQXX,"Cuisinart CGG-750 Portable, Venture Gas Grill, Red",,"154-SQUARE-INCH PORCELAIN ENAMELED COOKING GRATE: 154-square-inches of porcelain enameled cast-iron grates give you a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently. +9,000 BTU BURNER: Features a high grade stainless steel 9,000 BTU burner and twist to start electric ignition to give you the ultimate temperature control. +COMPACT ENOUGH TO TAKE ANYWHERE: The grill measures 16.25 x 13 x 10.75 inches and with stand. The grill weighs only 20 lbs., making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more. +PROPANE TANK STORAGE AND MANAGEMENT SYSTEM: Features propane tank storage for 1 lb. propane tank in the base under the grill body. The base includes a flip out rack that will hold your propane tank upright and secure. +LARGE CARRY HANDLE AND LID CHOPPING BOARD: Features a large carry handle with rubber grip wrapped aluminum handle for comfort and portability. Also includes stylish wooden lid that doubles as a chopping board.",Cuisinart,"Venture Gas Grill, Red",us,300 +B077GDYMCX,Weber 7137 Tank Cover,,"UV inhibitors in fabric resists fading +Breathable, weather resistant fabric +Protects cylinder from the elements +Drawstring keeps the cover in Place +Fits standard size 20Lb liquid propane tank (Sold Separately)",Weber,Multicolor,us,301 +B00T95H1PE,Alpha Grillers BBQ Grill Brush - Wire Grill Brush & BBQ Brush for Grill Cleaning - Grill Brush for Outdoor Grill & Gas Grill Cleaner for all BBQ Types,"The Best Grill Brush For Cleaning Your BBQ. Here’s Why:

            Triple Surface Area. Ultra Heavy Duty. Rust Proof Stainless Steel Bristles. 18"" Long Handle.

            Still Unsure? Our MONEY BACK GUARANTEE removes all risk.

            Ready For Cleaning That's So Quick & Easy You May Even Enjoy It?

            Scrubbing a dirty BBQ is not usually considered the most exciting way to spend your afternoon. Images of sweating over a filthy grate, ineffectively moving rust and grease around the bars springs to mind. But if you are armed with a seriously awesome grill brush the picture changes completely. With the Alpha Grillers Triple Head Grill Brush at your disposal you'll have the job done less than a minute. The huge surface lets your cover more grate with each swipe. The 3 heads, each one packed full of stiff bristles, cut though even the most stubborn grime. In no time your great will be looking shiny and new, ready for the next meaty onslaught!

            Hard On Grime - Gentle On Grates

            This brush is A BEAST. You can scrub with as much force as you want, confident that it will not bend or break. Worried about scratching your expensive porcelain coated grate? While some stainless steel brushes can leave marks, this will not happen with any Alpha Grillers brush. You can scrub away safe in the knowledge not a single mark will be left on your grill.

            So What Are You Waiting For? Click The ""Add To Cart"" Button Above To Get Your Brand New Brush Delivered Today.

            Grill Brush Safety. All brushes wear out eventually. As they get older it is important to check no bristles are coming loose. If this starts happening it's time for a replacement. After every use with a wire brush wipe down the grate with a wet cloth to check if any bristles have come off and got stuck to the bars.","GRILL BRUSH: Our grilling accessories are designed for pit masters & this grill wire brush is your ultimate weapon against dirty grates and bad-tasting meat. This heavy-duty bbq tool lets you use as much elbow grease as you want without any worry it’ll bend or break. +SAFE GRILL CLEANING BRUSH: Safe grill brush for gas grill cleaner, porcelain, stainless steel, & cast iron grills. You want a brush that’ll get your grill looking good as new, but don’t want to risk damaging your expensive grates; the Alpha Grillers barbecue brush has got your back; our extra thick bristle design will work perfectly on all grate types. +EASY TO USE GRILL GRATE BRUSH: Effortlessly clean your bbq in seconds with a grill scrubber designed for the ultimate clean; the days of slaving over a dirty grate while your friends and family enjoy the party are over. With 3x the surface area of a standard grill brush, packed full of rust proof stainless steel bristles, you’ll be done in a flash. +18 INCHES LONG BBQ GRILL BRUSH - Have full control of your barbecue grill brush with no burnt hands; the perfect length to keep yours hands out the heat while still giving you full control to scrub even those hard to reach areas; whether your have a gas, charcoal, rotisserie or smoker, your barbecue will be looking brand new in no time. +BBQ GIFTS FOR MEN & WOMEN: Quality barbecue tools for a quality griller, perfect Fathers Day Gifts birthday gifts for dad and more! So show the grill guru in your life your appreciation for their skills with something you know they'll love! Backed by Alpha Griller's 90-Day Satisfaction Guarantee.",Alpha Grillers,Gray,us,302 +B07PFQHD1W,Mr. Robot Red Wheelbarrow BBQ Comfortable T-Shirt,,"This exclusive Red Wheelbarrow BBQ t-shirt has the Red Wheelbarrow BBQ logo from Mr. Robot so you can show the world that you're a fan of Mr. Robot as well as the hit BBQ restaurant. +Officially Licensed USA Network Mr. Robot Tee. +Lightweight, Classic fit, Double-needle sleeve and bottom hem",USA Network,Black,us,303 +B071ZM8YVC,"GasOne Square Heavy Duty Single Burner Outdoor Stove Propane Gas Cooker with Adjustable 0-20Psi Regulator & Steel Braided Hose Perfect for Home Brewing, Turkey Fry, Maple Syrup Prep",,"Portability - portable cast iron one burner camp stove, sturdy and durable design, made of cast iron long lasting and good for projects +High heat output- fully adjustable heat-control regulator knob, power with Control +Heavy Duty - Perfect for brewing, camping, fishing, outdoor cooking, emergency preparedness, etc. , strong and long lasting +Safety- heat adjustable regulator included for use with propane tank, hose included for attaching to propane tank, o-ring installed on regulator to ensure that there is no gas leakage (it is possible to tighten by hand, but is advisable to use tools in order to tighten) +Steel Braided hose - 0-20 psi adjustable regulator with Steel braided hose included to use with propane tank",GasOne,Black,us,304 +B0098HR10I,"Weber 47510001 Spirit E310 Natural Gas Grill, Black",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +Perfect size for hosting a BBQ or everyday family grilling; Main burners: BTU-per-hour input 32,000 +Porcelain-enameled, cast-iron cooking grates retain even heat for the best tasting food +Built to last with heavy duty, porcelain-enameled lid and cookbox that won’t rust or peal over time +Six tool hooks for easy accessibility of grilling tools. Low maintenance and easy-to-clean grease management system",Weber,Black,us,305 +B005EOSOIW,Mr. Heater MH15 Single Tank Top Outdoor Propane Heater,,"Portable heat +Efficient radiant heating +1 year warranty +Quiet operation +Sturdy construction",Mr. Heater,Silver,us,306 +B07VW6QZF5,"GQC BBQ Grill Mat, Non-Stick Grill Cooking Mat Teflon Reusable Barbecue Baking Mats, Heavy Duty,Easy to Clean - Works on Electric Grill Gas Charcoal BBQ (6X(33X40) cm)",,"【Healthy and Safe Choice】These non-stick cooking mats are, PFOA-free, non-toxic, with no harmful chemicals. Made from fiberglass fabric coated PTFE that features rapid thermal conductivity, perfect to food heated evenly and maintain food moisture. +【High Temperature Resistance】Thanks to the advanced heat-resistant technologically materials, this BBQ grill mat come with unique 2mm ultra-thick design, yet thick enough to provide ultimate heat resistance up to 500℉, won't burn or shrink, go through microwave quite well +【A Good helper to BBQ & Baking】Never worry about your food sticking to the grates or falling through the cracks again. Our teflon cooking mat works with any kind of barbecue grill like gas, electric, charcoal grills and even can serving as oven liners. Best for grilling steak, pork, bacon, seafood, vegetables, pizza, kebabs, and even frying an egg. +【Secret to Save Money】Set of 6, 100% non-stick, each non-stick baking mat can be utilized up to 500 times, make sure you have plenty for the BBQ season. Easily trim to any size to fit any need. They can be applies in oven, frying pan, electric grill, barbecue, etc. Easier to carry for camping, picnic, backyard party, indoor & outdoor activities +【No Mess, Easy to Clean】Dishwasher safe means clean-up is a breeze! Don't waste anymore time scraping the ""crud"" off your grill. These bbq mats for gas grill is an ideal gift for BBQ & baking lover on BBQ season or other special holiday. WE GUARANTEE 100% MONEY FREE BACK FOR QUALITY PROBLEM ITEM!",GQC,,us,307 +B081J6T3BZ,ThermoPro TP27 500FT Long Range Wireless Meat Thermometer for Grilling and Smoking with 4 Probes Smoker BBQ Grill Thermometer Kitchen Food Cooking Thermometer for Meat,,"4 Color-coated probes to avoid confusion: Smoker thermometer with 4 probes can simultaneously monitor up to 4 different kinds of meat or the smoker/oven/grill’s ambient temperature; Easily identify which probe is inserted into what piece of meat with the color coated probe plug and corresponding color coated probe +500 Feet long remote range: Wireless thermometer features next generation RF wireless technology to achieve extended range up to 500feet and stronger signal strength through obstacles and walls, essential when monitoring meals at a long distance and guaranteeing to reach anywhere in your home or yard +Standalone transmitter: ThermoPro meat thermometer for cooking features a unique design where all key programmable buttons are located on transmitter to allow usage of the BBQ thermometer without the receiver, perfect for those fast cooking meats like fish or steak in short distance +Optimal accuracy & simple setup: Digital meat thermometer for grill features 6.2inches food grade stainless steel probes with a 43inches mesh cable which boasts an accuracy of ±1.8 Fahrenheit to ensure meat is cooked to perfection and the probes will work with any grill. Food thermometer for cooking is pre-synchronized, no synchronization required +Smart temperature alarm: Grilling thermometer contains a unique alarm mode that vibrates and turns on a flashing backlight on both the receiver and transmitter to inform you when the meat/bbq temperature reaches your setting; Never miss the perfect moment to take your meat off the heat",ThermoPro,Orange,us,308 +B07N24FPJ1,Home State Texas Gift T-Shirt Men And Women,,"Home State Texas Shirts make great graphic novelty gifts for the Texas BBQ lover, pickup fan, sweet tea lover and more +Wear a Home State Texas tee to show your love for the state of Texas, Texas BBQ, sweet tea and more +Lightweight, Classic fit, Double-needle sleeve and bottom hem",Home State Texas Shirts,Black,us,309 +B07FSJ3FNJ,"20lb Propane Tank Cover ,Ventilated Propane Gas Can Protection Covers, Heavy Duty RV Propane Tank Cover, Propane Bottle Storage Bag, Waterproof & Weather Resistant, Black, 12.5 x 12.5 x 24 inches","
            Product Features:
            Size: 12.5 x 12.5 x 24 inches.
            Material: Heavy Duty Polyester UV coated nano environmental protection materials.
            Durable, scratch resistant polyester with UV protection all year round.
            Easy to Clean: Low Circle Machine Wash & Handwash.
            Upgrade Your Patio or Garden Décor.
            SHIPMENT TIME

            1.The normal arrival time of Fulfilled by Amazon takes 1-3 days
            2.The normal arrival time of Dispatched from Seller is between 10-15 days
            3.Holiday Season Peak time maybe longer than normal delivery.","This propane tank cover is made of high end UV resistant, crack resistant, weatherproof 600D Oxford fabric and PVC cover, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank. +Convenient side velcro and magic tape allows for easy set up. +Easily clean this 20lb propane tank with damp duster or by hosing with clean water. +PERFECT FIT: A necessary cover for propane tank. This lp tank covers measures 12.5 x 12.5 x 24 inches which fits for most propane tank up to 20lb. +100% RISK FREE BUY: A necessary great father’s day gifts.If you are not 100% happy this propane tank cover, Feel Free to contact us for Refund or Replacement.No Hassle!",HERSENT,Black,us,310 +B00NO1O6ZC,Gas One 4 ft High Pressure Propane 0-20 PSI Adjustable Regulator with QCC-1 type Hose - Works With Newer U.S. Propane Tanks,,"✓ User friendly, top quality connection - this high-pressure regulator and hose is adjustable from 0-20 psi with its red knob and has a top notch output for a wide variety of propane appliances from burners and heaters to smokers and fryers +✓ LONG LASTING AND DURABLE - Gas One’s 2109 High-Pressure Regulator provides an air-tight connection for your propane appliances. Made with high quality rubber and brass connections, the 2109 ensures a stable connection and a leak-free experience with your heavy-duty appliance +✓ READY FOR USE - The high-pressure hose and regulator is ready to use right out of the box. Simply connect the regulator to the tank and appliance when ready to use (tightening with tools suggested for a secure connection) +✓ MEASUREMENTS - The 2109 measures at 4ft long and is made to have a secure fitting with type-1 (QCC-1) propane tank connections. The hose has an inside ⅜-inch flare fitting and has an outside diameter of ⅝ inches",GASONE,Old Style Black QCC,us,311 +B08D8S7BK1,"KILILIUN 2 Pack 15 inch 1/4"" NPT RV Propane Pigtail Hose with Gauge and Stainless Steel Braided Hose with 1/4"" Male NPT and QCC1 Connector for Standard 2-Stage Regulator","

            Package Included:

            2Pcs x 1/4"" NPT RV Propane Pigtail Hose with Gauge

            1Pc x Thread Seal Tape

            2Pcs x PVC Dust Covers


            Feature:

            Material: Durable 100% solid brass fitting and Stainless steel braided hose

            Inlet connector: QCC1

            Outlet connector: 1/4"" Male NPT


            Convenience:

            You can check the fuel level and detect the dangerous leaks without removing the tank because of the gause.


            Installation:

            Easy to install and No extra tools needed.


            Display:

            The color -coded dial for reading the level directly when the propane gas level is low, even in the night.


            Kindly Note:

            1/4'' Male NPT(Not 1/4"" male inverted flare). Please check your connector before you order.

            ","[Package included] 2 pack 15inch QCC1 1/4"" NPT RV propane pigtail hose with gauge, dust cover and free thread seal tape(Not include 1/4"" inverted flare). +[Durable Material] 1/4"" Male NPT propane hoses are made of high-quality solid brass and stainless steel braided, which can hold up much better and longer when exposed to the sun and weather. +[Super Advantage] RV Propane Hoses with gauge allows you to monitor the fuel level without necessarily removing the tank. It comes with a color coded dial, you could read your propane gas level at a glance,even in the darkness. Also, it can Install quickly and easily tool-less attachment to regulator and propane tanks. +[Extensive Application] You can connect the RV propane pigtail hose 1/4"" male NPT and Type1/QCC1 connector to 5-40lb LP gas tanks with 2-stage regulator. The pigtail hose can also be used to connect to an installed 4-Port Tee as an auxiliary propane supply. Great for your cylinder, BBQ gas grill, RV and camping needs, or having an outdoor cooking. +[After-sale Service] We provide one year free replacement and full refund service, if you have any questions, please contact us, we will definitely give you a satisfactory solution.",KILILIUN,,us,312 +B07Q4DMHK9,BLUEFIRE Handy Cyclone Propane Torch Head Nozzle Trigger Start Push Button Piezo Ignition Turbo Swirl Flame Fuel by Propane MAPP MAP PRO Gas Cylinder Welding Soldering Brazing Cooking Glass Beads DIY,,"Max Temperature heat up to 2642°F (1450°C), Powerful Supper Swirl Cyclone Flame +Trigger Start Piezo Ignition, Anti-flaring +Use standard propane or MAPP or MAP/Pro gas cartridge +Ideal for soldering, brazing, welding, cooking, charcoal lighting, glass works and etc. All-Purpose torch for both professionals and DIYers; +Made in Taiwan, with the highest quality control.",MR. TORCH,Blue,us,313 +B009V11U6C,Shrink RapidShrink 100 Propane Heat Tool,,"It distributes an EVER increasing Array of Proven hunting and Shooting sports products, along with an incredible selection of marine products from trusted vendors +Our product lines include firearms, reloading, marine electronics, trolling motors, optics, cutlery, archery equipment, ammunition +Manufactured in United States",Dr. Shrink,BLUE,us,314 +B00004Z2FP,"Red Dragon VT 2-23 C Weed Dragon 100,000-BTU Propane Vapor Torch Kit",,"Quickly hooks up to any refillable propane tank (20lb cylinder Works great) +Comes with a hand-tighten tank fitting +This torch kit has plenty powerful and generates heat up to 2, 000-degrees F +The weed Dragon has received the National home gardening club member tested seal-of-approval. +Made in the U.S.A.",Red Dragon,Steel,us,315 +B07G4899R5,"Camplux Propane Burner 200,000 BTU, Single Outdoor Stove, Propane Gas Cooker for Home Brewing, Turkey Fry","What are The Benefits of Using Camplux Single Burner Camping Stove ?

            1.This outdoor gas burner is made by cast iron, which made it sturdy enough and long lasting. What's more,the powder coating makes it is waterproof and anti-rust.
            2.Removable legs make this portable propane burner more easily for you to move and adjust while camping.
            3.Camplux JK-SL21 propane burner has extremely high power, up to 200,000 BTU. Suitable for home brewing, outdoor cooking, turkey fry, roast, boil, etc. Food will be ready in less time with its heat-control knob for different kinds of recipes.
            4.Heat Adjustable and CSA certified regulator included for use with propane cylinder. Hose included for connect to propane cylinder.
            5.The outdoor gas stove built in O-ring gasket design, which make sure there is no gas leak(it may possible to tighten by hand, but it's more safety to use wrench in order to tighten).
            6.It is suitable for various types of pot. So you can enjoy outdoor cooking with your families to have a happy time.
            7.Perfect for many occasions: brewing, camping, fishing, outdoor cooking, turkey fry, RV travel, emergency preparedness,etc.
            8.This outdoor cooker stove can support up to 400 LB or 200 QT pot filled with liquid. Enough power to help you prepare the food.

            Specifications:

            Color: Black
            Product Type: Single Burner
            Material: Cast Iron
            Product Extension Size:15.75×15.75×28.8 Inch(40*40*73cm)
            Product Size without Extension:15.75×15.75×16.9(40*40*43cm)
            Type of Gas:Propane
            Heat Output:200,000 BTU/HR
            Regulator Length: 5 feet / 60 inch/152.5 cm
            Usage Condition:Normal Outdoor

            What You Will Get:

            1 x Propane Gas Camp Stove
            1 x High Pressure CSA Certified Regulator
            1 x User Manual

            Inquiry & after sales service: support@camplux.com
            Service hotline: (844)-538-7475","200,000 BTU Heat Output - Propane camping stove heat output up to 200,000 BTU. And it heats up very fast, only needs few seconds to generate heat. You can cook food quickly without waiting too long and have more leisure time +Detachable & Adjustable Legs - The gas stove burner adopts detachable stove legs, which are convenient for transportation and storage. Adopts adjustable stove legs, which is suitable for more people to use and more different cooking +Easy Installation & Use - This propane stove package included a durable 5ft hose and 0-20 psi adjustable regulator. You only need to connect a propane tank over 5lb +High Quality - The single burner propane stove is made from heavy-duty cast iron with waterproof and high-temperature resistance coating. It's hard to destroy and has a long service life +Wok burner perfect for brewing, camping, fishing, outdoor cooking, RV travel, emergency preparedness, etc. 1-year limited warranty and 24/7 customer support services",CAMPLUX ENJOY OUTDOOR LIFE,Black,us,316 +B07XDJKQ22,"VIVOHOME Double Burner Stove, Heavy Duty Outdoor Dual Propane with Windscreen and Detachable Legs Stand for Camping Cookout, Max. 150,000 total BTU/hr","Are you ready to go camping? Take VIVOHOME’s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

            Features:
            -The sturdy and efficient stove packs enough power in its 36,000 BTU burners to boil water and cook food.
            -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
            -The 2-burner stove is portable and makes outdoor cooking easy with removable legs and windscreen.
            -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
            -Great stove for camping; It will really simplify your canning process

            Product Specification:
            -Rated output: 36,000 total BTU/hr, for 18,000 BTU each
            -Max. output (with 20 PSI): 150,000 total BTU/hr, for 75,000 BTU each
            -Max. output (with 10 PSI): 100,000 total BTU/hr, for 50,000 BTU each
            -Note: The product is equipped with a 10 PSI regulator, and it's also suitable for the 20 PSI regulator.
            -Stove Height: 29"" without windscreen /35"" total

            Package Includes:
            -1*Dual burner stove, 1*Extension hose & regulator&, 4*Detachable legs, 1*3-sided windscreen, 1*Manual

            Product Warranty:
            -We assure that the item you received is 100% safe and sound. For any defective item, please contact our customer service for a satisfying solution.","GREAT OUTDOOR COOKING BUDDY - With 2 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell to remain in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties +HUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 2 powerful burners can output max.150,000 total BTU/hr, for 75,000 BTU each with 20 PSI; Equipped with a 10 PSI pressure regulator; LPG is highly recommended +2 IN 1 - The two individual burners can be operated independently and you can control the flame height with extreme accuracy to ensure you’re cooking at the right rate +VERSATILE STOVE - With detachable legs and a 3-sided windscreen, this outdoor stove is compact, portable and easy to travel with; It can also be used as a countertop stove without legs; The back comes off which is perfect if you need more space +HEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life",VIVOHOME,Black,us,317 +B01DAOM5SW,"Amazon Basics Havana Bronze, Commercial, Propane 46,000 BTU, Outdoor Patio Heater with Wheels, Havana Bronze & Stand-Up Patio Heater Cover Set",,"Durable, charcoal grey finish patio heater with heat output of 46,000 BTU's +Heater features a piezo ignition and safety auto shut-off tilt valve +Standup patio heater cover protects against rain, snow and other outdoor elements +Using click-close straps, cover easily snaps around heater to secure the cover on windy days +Cover fits most standup patio heaters up to 95 inches high, with a 34-inch dome diameter, and 18.5-inch round base diameter; compatible with the Amazon Basics Havana Bronze Commercial Patio Heater",AmazonBasics,Havana Bronze,us,318 +B01HQSUMII,"ProCom Ventless Dual Fuel Stove-25,000 BTU, Thermostatic Control Model QNSD250T, 25, black",,"TECHNOLOGY - 25, 000 BTU Patented DUAL FUEL TECHNOLOGY using Natural Gas or Liquid Propane which Heats up to 1, 100 sq. ft. +DEPENDABLE - The built-in Thermostat Control offers automatically cycle the stove heater on and off to maintain a desired room temperature. Ideal for greater heat flow that could add the warm atmosphere in your room. +ECONOMICAL - 99. 9% efficient with Vent Free gas burner. No outside duct or chimney needed! Environmental Protection and Energy Conservation. +SAFE - Battery Assisted Piezo ignition with Built-in pilot oxygen depletion sensor (ODS) immediately shuts down the heater if carbon monoxide or lack of oxygen is detected. +DIMENSIONS: 25” H x 33.5” W x 13” D | WEIGHT: 49.8 lbs. Room Size (square feet)-Greater than 900",ProCom,Black,us,319 +B07S2KQ8PL,"Coleman Propane Fuel, 16 oz, Propane Camping Cylinde 4-Pack","Enjoy cooking in the great outdoors with these Coleman Propane Fuel Cylinders, 16 oz, 4-pack. They are made with quality steel construction and offer a stable base for safety, durability and a long lifespan. The reliable valves on this Coleman propane tank provide safe and easy-to-use operation. The cylinders in a universal size and fit all standard portable propane appliances, tabletop grills and propane torches. As such, they are compatible with a variety of Coleman propane grills (sold separately). These 16-oz propane tanks are ideal for use in your backyard, at the park or tailgate party, while on a camping trip and more. They can easily fit into a backpack or duffle bag for convenient transport.",,C-M Propane Fuel,,us,320 +B001H1HL76,"Bond Manufacturing 63172 Newcastle Propane Firebowl Column Realistic Look Firepit Heater Lava Rock 40,000 BTU Outdoor Gas Fire Pit 20 lb, Pack of 1, Natural Stone",,"Throw the ultimate s’mores party, host an outdoor date-night, tell spooky stories around the flame, or just enjoy a good book beside the inviting Newcastle Firebowl! +40,000 BTU heat output provides warmth and light +Natural lava rock included to cover the stainless steel burner. +Protective cover included to preserve the fire pit's integrity. +Constructed of durable and lightweight Envirostone for outdoor use",Bond Manufacturing,Natural Stone,us,321 +B07FJQ3KNK,"Gas ONE GS-4000P - Camp Stove - Premium Propane or Butane Stove with Convenient Carrying Case, Great for Camp Stove and Portable Butane Stove for All Cooking Application Hurricane Supplies","The GS-4000P Portable Butane and Propane Camp Stove is the Golden Standard when it comes to all camp stove. Constructed with aluminum, it is incredibly lightweight and easy to clean. Equipped with the dual fuel function, it makes for the most versatile camp stove. Whether your car camping or outdoor cooking, the GS-4000P is all you need.","✓ DUEL FUEL PORTABLE GAS STOVE – Compatible with both butane (8 oz) and propane (16.4 oz) fuel, the GS-4000P is the ideal stove for campers looking for a little more flexibility in their portable stove’s usability. (the GS-4000P includes a propane adapter/hose) *Attach the hose to the stove before connecting to your 16.4 oz propane tank* (FUEL NOT INCLUDED) +✓ PREMIUM GOLD DESIGN – The GS-4000P has a sleek gold-colored aluminum body with a raised wall along with a built-in round wind shield to protect your flame from unfriendly weather. *The Butane cartridge includes a thermal conductive plate to ensure all your fuel gets used in colder temperatures. +✓ SAFETY FEATURES – Gas One’s Deluxe Camping Stove has a Pressure Sensor Cartridge Ejection System for butane fuel, along with a Gas Flow Cut Off Mechanism when detecting unwanted gas flow. The GS-4000P has a variety of features from Push To Turn (and heat resistant) knobs, to a butane cartridge locking mechanism to ensure that your using the stove in a safe and effective manner. +✓ HIGH HEAT OUTPUT – Gas One’s GS-4000P has an output of 12,000BTU from its cast aluminum burner head, and is easily heat adjustable through the portable stove’s control knob. +✓ AUTO PIEZO IGNITION – The Portable stove has a piezo auto ignition feature that cuts out the need for traditional matches or lighters. Simply turn the control knob to the very end to “spark” an ignition with a click. Simple to use, and fitting for any and every outdoor setting.",GasOne,Stove,us,322 +B088HCDXVP,"Smaid Grill mesh mat - Non Stick BBQ Grill mats for Outdoor Grill, Reusable BBQ Sheets for Gas Grill,Easy to Clean - Works on Gas, Charcoal, Electric Grill and More, 15.75 x 13 inch, Black","1. Made from heavy duty PTFE, perfect thickness, thin enough to leave grill marks and flavor intact,yet thick enough to provide ultimate heat resistance and durability. 2. Eliminates flare, these mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched. 3. Reversable and reusable, non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze. Grill food like a pro with SAMHENG's non-stick grill mats. Without them, you risk having to spray flammable cooking oil on a hot grill, having smaller food items fall through or stick to the grates, and have to endure time-consuming cleaning afterward. Our barbecue cooking mats can be used to protect your expensive Weber, Char-Broil, Traeger, and Kamado grill pans. Cook meat, vegetable kabobs, shrimps, even pancakes and eggs without scorching your food or creating lumps of unhealthy grease. Try them today to vastly improve your cooking skills and enjoy expertly grilled food - every time.","100% NON-STICK: 100% non-stick means you can grill/cook without worrying about grease & stains, these mesh grill mats are heat-resistant up to 500℉, Keep your family safe while enjoy delicious grilling food. +MULTIPURPOSE - Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. The mesh grill mats also can be cut to any size or shape to fit any need. +NO MESS - With our grill mats, you won't have dirty grill grate AGAIN! Keeps your food from falling between the grates or sticking to the grill! In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze! +Easy To Clean: Grill mats are extremely EASY TO CLEAN and DISHWASHER SAFE. Don't waste your time scraping the ""crud"" off your grill - get back to enjoying the BBQ with your friends and family!",Smaid,Mesh Grill Mats,us,323 +B091YNGC2Y,"BBQ Grill Cover,Barbecue Covers,BBQ Covers Waterproof Heavy Duty,Grill Covers 58 Inch for Weber Spirit/Genesis Grill Cover,Rip, Dust, Fade & Weather Resistant Gas Grill Overs",,"🥩Greatly Fits Various Grills🍖: 58""L x 24""W x 44""H inches (147 x 61 x 112 cm) extra-large grill covers fits most 3-4 burner gas grills such as Weber, Brinkmann, Char-Broil, Holland, and Jenn Air, etc. Please measure your grill before purchasing. +🥩600D Super Heavy-Duty Materials🍖: The BBQ grill cover is made of 600 Denier polyester fabric, which trebles the durability and weather-resistance of 210D/420D bbq covers waterproof heavy duty. 20 mil Heavy-Duty Oxford Cloth & double-needle sealed seam design particularly functions to water/rip/dust/sunlight/fade-resistant. +🥩Distinct Design Features🍖: DOUBLE HANDLES enable removing the heavy duty gas grill covers just in seconds; NYLON STICKER performs to adjust and securely tighten the BBQ grill cover to grill size; STORAGE BAG helps you to carry and store easily for next use. +🥩Wind-Resistant gas grill covers🍖: No matter under the strong winds or gale, The wide-covered mesh vents at both sides for air circulation of expert grill covers heavy duty waterproof can prevent the grill cover from being blown away. +🥩Hassle-Free Cleaning🍖: Just hose it down and let it dry in the sun, then the waterproof grill cover would become new again. Our supports are online 24/7. Please do not hesitate to contact us, if you have any problem or suggestion about the product. Our mission is to provide 100% satisfaction to you.",iClanda,,us,324 +B07W64SGBK,"DOZYANT Y-G-03 Tank Y Splitter Adapter with Propane, Color",,"For 5 pound - 40 pound propane tanks. This propane splitter adapter connects two regulators to one propane tank. Allows you to easily run two propane appliances on one tank, No need for two fuel tanks, Only have to use Y-splitter and attach to fuel in order to connect fuel to two grills or burners. +Monitors fuel level without removing the tank. Color coded dial for allowing you to see at a glance when your propane level is low.Gauge display accounts for ambient temperature change. Color coded dial for allowing you to see at a glance when your propane level is low. +High quality 100% solid brass. Solid Brass for durability and reliability, Is extremely long lasting, Will be good for many uses and it is sturdy. Allows for additional appliance to be hooked up. +Acme (QCC1) connector with 2 male pipe thread. Our splitter adapter has a check valve so it can be used with only one hose connected upon you need. +The Splitter Y fittings used to connect regulators to tanks and hoses, Simply attach Y-splitter to fuel tank and have secure and stable gas flow to two grills. No tools required and easy to install with handheel grip for tightening. Great for using gas grill, heater, smoker, camp stove, lantern, tabletop grill, fire pit table, turkey fryer and more propane appliances.",DOZYANT,Color,us,325 +B07H5RJ8YJ,"Weber 66011001 Genesis II E-310 Natural Gas 3-Burner Grill, Black",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +Equipped with the GS4 high performance grilling system featuring infinity ignition, high-performance burners, stainless steel flavorizer bars and grease management system; BTU-per-hour input: 39,000 +Porcelain-enameled, cast-iron cooking grates provide superior heat retention +Ample Cooking Surface. Up to 669 sq in, including the tuck-away warming rack. +iGrill 3 compatible, for perfectly grilled food (accessory sold separately)",Weber,Black,us,326 +B093BP356D,"BALI OUTDOORS Patio Heater Floor-Standing Propane Commercial Patio Heater Outdoor 36,000 BTUs Gas Cylinder Heater Glass Tube Wheels Stainless Steel Base Round Reflector Shield Bronze","BALI OUTDOORS Propane Patio Heaters possess multi-protection, optimized product structure, easy to move and install, quartz glass tube, provides visual view of beautiful flame. Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, party, outdoor wedding, the implied classical beauty lend the great charm to the mild night","▶MULTI-PROTECTION◀ BALI OUTDOORS propane patio heater apply Auto Shut Off Tilt Valve, this patio heater will off automatically when it tips over by accidents. Attach the cylinder block wire, it is used to fix the propane tank (Not include). And base can fill the sand to hold steady, won’t be affected by the windy weather +▶NICE AMBIANCE◀ Transparent Quartz Glass Tube of BALI OUTDOORS Portable Patio Heater provides visual view of beautiful flame and 360 degree heating, can close enough the beauty of attractive dancing flame +▶OPTIMIZED PRODUCT STRUCTURE◀ Wheels are different from the usual smooth surface wheels, it uses gear design, won't out-of-control when you move patio heater. Stainless steel base, control panel and emitter screen extend longevity of patio heater +▶REASONABLE AND HIGH-EFFICIENCY◀ Convenient to move and install, this Floor-Standing propane patio heater adopt the integrated electronic ignition system improves effectively the success rate of ignition +▶BLENDING OF CLASSICAL AND MODERN BEAUTY!◀ Gas Patio Heater with Hammered Bronze appearance is ideal for garden, backyard, terrace, restaurant, cafe, the implied classical beauty lend the great charm to the mild night",BALI OUTDOORS,"Bronze, Stainless Steel",us,327 +B003K6SI7S,Texsport Sportsmate Portable Propane Heater,,"Ideal for golf carts +Durable stainless steel burner +Pressure regulator on/off control valve adjusts burners up to 3,000 BTUs +Includes molded plastic cup holder and large paddlefoot plastic base which holds 16.4 oz disposable propane fuel cylinder (not included) +Auto shut off valve shuts off fuel if flame goes out",Texsport,Silver,us,328 +B097LDZ1W2,"RV Propane Tank Cover, Camper Propane Tank Cover Double 20lb, for Travel Trailer",RV Propane Tank Cover,"【 FITS TANK】Our Camper propane tank cover for dual 20/5 gallon tanks. Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister. Dimension 27 x 12 x 24 inch. +【ZIPPER DESIGN】zippered opening front which allows stress-free access to valves. Allows you to attach your tank tubes without cover removal. +【CUSTOM YOUR TANK】The RV tralier propane tank covers beautifies the look of the RV while enhancing to the protective facility for propane gas controls. +【WITH ELASTIC BAND 】 the bottom elastic band holds the cover in place to protect against elements. keeps the propane tank secure even on the windiest or rainiest days. +【HIGH QUALITY】Double 20lb propane tank cover for travel trailer is made of heavy duty 600D Oxford fabric. It nicely protects your tank against adverse climatic condition like UV,rain, snow, wind, dust, and dirt.",BeadChica,,us,329 +B06Y5XFF6F,DOZYANT 4 Feet Propane Adapter Hose 1 lb to 20 lb Converter Replacement for QCC1 / Type1 Tank Connects 1 LB Bulk Portable Appliance to 20 lb Propane Tank,,"Connect 1 pound portable appliance to 20 pound propane tank - hose with adaptor fitting let you hook your 1Lb propane required propane appliance with 20 lb tank or lager by connecting this adaptor, allows connection to more fuel +Cost effective - Stop spending your money on 16.4 oz/ 1Lb propane tank that will last you few hour of usage, with this adaptor you can use it on 20Lb or larger tanks that will last you long period of time, convenient for those with larger tanks. +Sturdy construction - installed with a brass fitting and a durable rubber hose, The 1 to 20lb adapter ensures long term usage with consistent output / efficiency +BRASS CONNECTION - Durable solid brass provide secured connections, tank connection has excellent secure connection and durability, Long lasting and is easy to use +Multi-suitability - perfect for lantern, heater, camp stove, portable grill, tabletop grill, and more. Great for camping, tailgating, heating needs or having an outdoor cookout.",DOZYANT,Black & Gold color,us,330 +B07FP4WHML,"Onlyfire X-Marks Fire Pit Grill Cooking Grate, Outdoor Campfire BBQ Grill, Round - 36 Inch","Steel construction for warp resistance. High temp black finish for cooking. Designed with a durable metal construction, this cooking grate is perfect for cooking over the open fire.

            Steel construction with easy grip handles

            Black mesh pattern naturally creates 'x marks' in steak and other grilled foods

            Use as serving tray after grilling is done. Great camping accessory

            Creates perfect grill marks on food without any hassle.

            ","36-inch diameters, large cooking space which allows you grill everthing to perfection all at once, make it the center of family gatherings +Sturdy, nice with handles do not get hot so its easy to move the grate over a bit to add some coals or wood +It is made of durable expanded metal that is sturdy and easy to clean. Enjoy an evening of grilling with this cooking grate! +Steel construction for warp resistance. +Create perfect grill marks in your food, making the BBQ more fun.",only fire,Black,us,331 +B071NL9D7J,"Gas ONE 50411 Propane Adapter Replacement Hose for Gas One Dual Fuel Stoves GS-2000, GS-2300P, GS-3400P, GS-3900P, GS-800P (QTY2)","2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves","2 Replacement Propane Adapter Hose for Gas One Dual Fuel Stoves Only +Compatibility - GS-2000P, GS-2300P, GS-3400P, GS-800P and GS-3900P +To be used with Gas One Dual Fuel Stoves Only, It will not work with all other butane stoves or propane stoves",GasOne,,us,332 +B07F8N2WQS,"Charcoal Grill,Portable Barbecue Grill Folding BBQ Grill,Small Barbecue Grill,Outdoor Grill Tools for Camping Hiking Picnics Traveling 24''x13''x9''","What’s better than to barbecue with your friends in the park on a sunny day? With this luxury outdoor folding grill, a spontaneous picnic is easily set up. It can be set up really fast. This folding camping BBQ grill with grate gets the heat going quickly thanks to ventilation holes in the sides. The stainless steel grate can accommodate food for up to 6 people.

            Whether it is camping or party, this portable folding barbecue grill will help you cook delicious food anywhere.

            Portable Camping Grill Details
            L x W x H: 60 x 22 x 32 cm/23.7 x8.7 x12.6Inch
            Size folded: L x W x H: 60 x 22 x 6.5 cm/24x9.5x3Inch
            Weight:2.5Kg
            Material: Rolled and stainless steel

            Luxury Travel Grill
            Quickly assembled BBQ
            Lightweight fold design
            Ventilation holes and Drawer type dust box

            Travel Camping Barbecue Grill
            For picnics in the park
            For sociable hours during camping
            For the lunch break during hikes
            Great when you get the munchies at a festival
            ","【Brilliant Camping & Party BBQ Tool】Charcoal grill design, keeps your meat the most original flavor, meet your desire for smoky, grilled flavor and smoking meats.Perfect gift for BBQs, picnics, tailgating, camping or a night on the patio, indoor, outdoor parties, traveling, park, beach,wild with your friends and families. +【Lightweight & Portable】Camping BBQ Grill is lightweight and portable, only 2.5 Kg, folded and packed in box only 24*9.5*3 Inch, and the BBQ grill opened size is 23.7*8.7*12.6 Inch, big space for use but small package is easy carry & storage.Not screws needed and easy to set up,removable grill and mess-free ash catcher for easy clean-up. +【Perfect For Outdoor】This portable BBQ grill is a great tool for outdoor camping, backpacking, picnics, tailgate parties, rv camping, trailers, parks,and grilling in small spaces; It's perfect to cook delious food on this tabletop charcola grill like burgers, fish, steak, hot dogs, corn and more.Suitable for 4-6 group +【Best BBQ Grill For You】The large bbq grill use charcoal, you can enjoy cooking the meat slowly, retaining the tenderness of meat and remaining moist, meat can get rid of excess fat and hence,even calories, nutrients like proteins, vitamins and minerals present in your food remain intact +【QUALITY GUARANTEE】: This barbecue grill has passed the quality certification, guarantee the long-term safe use. No harm to human. Rest assured to buy it.And our customer service will always .If you have any questions, please feel free to contact customer service to resolve your inquiry within 24 hours.",Ruutcasy,,us,333 +B07RKYMBCN,"Kaluns Universal Stainless Steel Smoker Box, Gas Grill or Charcoal Grill Sm0ker Box , Works with Wood Chips, add Delicious Smoked Flavor, Hinged Lid ,Warp Free Grill Accessories","""Easily Switch Wood Chips

            The hinged lid on our Smoker box makes it super easy to switch your wood chips. Want to taste another flavor? Switch from Cherry to Peach, or even from Pecan to Hickory. Whatever your taste buds ask for, and enjoy your plate!

            Premium Features

            Kaluns & reg; Smoker Box is the Ultimate in perfection! Its thick Stainless Steel material will not WARP, is rust-free, and cleans easily. Its compact size fits every grill and has a large wood chip capacity. Convenient Hinged-Lid allows for easy switching and loading of Wood chips. Its many holes on the cover and around the sides of the box release great amounts of smoke after just 10 minutes of burning on the grill. A must buy! The only Smoker Box on the market that will smoke up your meat perfectly, efficiently, and quickly!

            Great Gift Idea

            Surprise your Friends and Family with a Kaluns® smoker box, and have them be part of the newest trend in grilling! Let them enjoy the latest secret to achieving mouthwatering smoked Meat, Chicken, and Brisket. The most Luxurious BBQ accessory for the grill master, as a Holiday, Birthday, or Fathers Day Gift!

            Warning:

            Make sure to handle the Smoker Box with protective grilling mitts as it will become very hot when on the the grill.

            Risk-free purchase - LIFETIME WARRANTY - GUARANTEED! With choosing Kaluns™ You made the right choice, don't hesitate, Click the 'Add to Cart' Button Now!

            ""","Kaluns Smoker Box For A Scrumptious Smokey Flavor Using Any Grill - Add delicious smokey flavor to your favorite piece of meat. Position our heavy-duty smoker box right underneath the grill grates for best results. l The holes around and on the lid of the box release tons of smoke within 10 minutes of the smoker box burning on the grill. Choose your favorite wood chip flavor,have it smoked up, and enjoy tasty smokey flavored Ribs, Chicken, Turkey +Deluxe Non Warp Stainless Steel Smoker Box - Our high-quality Smoker box will never warp so confidently start smoking up your grill now. Its premium quality is of thick stainless steel material, non-rust  and cleans easily. Its compact size fits any grill and has enough place for 6.35 ounces of wood chips. The Kaluns Smoker box is the Ideal BBQ gadget which will add smokey spice to your upcoming BBQ feast. +Convenient Hinged Lid- What a delight. With this hinged-lid you can conveniently add and change your wood chips at any time.Just lift the lid and it will stay open giving you easy access to it. In the mood of having a new flavor for your next plate of Turkey? Simply switch the flavor of wood chips and have the exhilarating aroma fill the yard. +A New Era In Smoking And Grilling, Make The Edible Incredible- Say good-bye to sauces and hello to incredible smokey flavors. Your family and friends will start coming to the grill masters BBQ every night. Awesomely good pieces of meat, steak, and chicken every time you dish up something using this Smoker Box. Every piece will be smoked to the point where sauces are no more needed, just a bigger portion of gourmet smoked dinner.",Kaluns,stainless steel,us,334 +B00FLRBXEO,"Weber 7627 QCC1 Hose and Regulator Kit for Genesis Gas Grill, 30-Inch, standart",,"Includes 30 inch rubber hose (5/16 inch diameter) with regulator, threaded brass fitting and QCC1 coupling nut +Genuine Weber part for Genesis 300-series gas grills +Regulates liquid propane flow for consistent, uniform heat distribution +2-year limited warranty",Weber,standart,us,335 +B000BRJOV8,"ADCO 2111 White RV Propane Tank Cover, Single 20",,"ADCO Propane Tank Cover; Fits Single 20 lb. ( 5 Gallon Tank ) +Protect propane bottles while in storage with this deluxe heavy-duty vinyl cover +Velcro closure at top, elasticized bottom for a neat tailored fit +Single tank cover, fits 20 pounds ( 5 Gallon tank ) +Polar White",ADCO,White,us,336 +B000WEMH32,"Weber 7502 Hose and Regulator Kit (21-Inch),Assorted",,"Hose and regulator replacement kit for Weber propane grills +Provides secure, airtight connection between grill and tank +Fits Weber models Genesis Silver C, Genesis Gold, Genesis Platinum B and C, and Summit Silver and Gold +Includes 21-inch QCC1 hose, regulator, and instruction sheet +Genuine Weber replacement part",Weber,Assorted,us,337 +B00I8IY6I8,Flame King YSN335 33.5 Pound Steel Forklift Propane Tank Cylinder with Gauge TC and DOT Compliant,,"Forklift ready - this tank features a liquid draw design for use in forklift applications. Durable construction and built in gauge. Can mounted horizontally or Vertical +Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability +Leading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, Premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered",Flame King,White,us,338 +B08C92F6KZ,CitruSafe 16 Fl Oz BBQ Grill Cleaner - Cleans Burnt Food and Grease from Grill Grates - Great for Gas and Charcoal Grills,"Utilizing the power of citrus (d-Limonene), CitruSafe Grill Cleaner is specifically formulated to provide a simple, safe, yet powerful alternative to cleaning a barbecue grill’s cooking surfaces (grates). CitruSafe also works great on smokers, ovens, microwaves, etc. Ingredients: Water Alcohol, C9-11 Ethoxylated d-Limonene Polyoxyethylene Sorbatan Monolaurate Isopropanol Quaternary Ammonium Chloride Orange Dye Red Dye Methylchloroisothiazolinone","1 Count 16 Flz Oz CitruSafe BBQ Grill Cleaner. +Formulated to safely clean burnt food and grease off of BBQ grill cooking surfaces. +Works great on grill grates, smokers, ovens, microwaves, and more. +Pair with our Citrusafe BBQ Grill Scrubber for optimal results.",CitruSafe,Blue,us,339 +B089NMPKBV,"Electric BBQ Grill Techwood 15-Serving Indoor/Outdoor Electric Grill for Indoor & Outdoor Use, Double Layer Design, Portable Removable Stand Grill, 1600W","Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties, picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered by Product Liability Insurance of United States.","[♨ LIGHT ENOUGH&VERSATILE GRILL] - The Techwood Portable BBQ Grill is made for grilling at the places you love most. And it's space-saving size fits neatly into the trunk of a compact car, which makes it easy to take with you wherever you go. It's compact size is great for small balconies, tailgating, RVs, travel trailers, and tiny homes, it's a perfect size for camping. +[♨ FAST-HEATING&ADJUSTABLE TEMPERATURE CONTROL] - Portable electric grill’s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat. The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. The temperature probe lets you choose from five heat settings to get the best results on any kind of food. +[♨ HIGH CAPACITY] - Techwood tabletop grill equipped with 240-square-inch cooking rack gives a spacious cooking surface is able accommodate lots of food at one time which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together! +[♨ APARTMENT-APPROVED] - Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean. +[♨ GET YOURS NOW, RISK-FREE] -Techwood offer a outstanding 60-day hassle-free return policy & 36-month promise. We assure you that no other smokeless grill beats our products' high-caliber quality & efficiency. Our products are all covered by Product Liability Insurance of United States. For details, please refer to the instruction manual.",Techwood,Red/Black,us,340 +B001AUPQVM,"Red Dragon VT 2-23 SVC Weed Dragon 100,000-BTU Propane Vapor Torch Kit",,"Quickly hooks up to any refillable propane tank (20lb cylinder recommended) +Comes with a hand-tighten tank fitting +This torch kit has plenty powerful and generates heat up to 2,000-degrees F +The Weed Dragon has received the National Home Gardening Club Member Tested Seal-of-Approval. +Made in the U.S.A.",Weed Dragon,,us,341 +B07Z4H47Z2,"STYDDI 4FT Adjustable High Propane Regulator and Hose with PSI Gauge, 0-30 PSI Regulator Hose with QCC-1 Type for Propane Burners, Stove, Turkey fryers, heaters, Smokers, Forge and More","STYDDI let you eat like a king!

            The propane has a Gauge that will tell you how much pressure you are turning the knot to release gas, let you adjust your fire better, make your stove/Grill/Burner/Smoker/turkey fryers like new.

            If the stove/Grill/Burner/Smoker and more actually needs more or less pressure, you can adjust it with this instead of just being screwed by having the default regulator pressure.

            The propane hose body is made of stainless steel it will long lasting for your appliance, prevent being bitten by small animals.

            This propane hose with regulator has excess flow protection and will automatically shut off. Protect you from danger.


            Specification:
            Material: Rubber PVC + Brass
            Length: 4 feet / 48 Inch/122 cm
            Gauge reading: 0 – 60 PSI (1- 400kpa)
            Apply to: Propane burners, stove, turkey fryers, heaters, smokers and other propane appliances. Not suitable for appliances which need low pressure regulator.
            Fryer Accessory Type: High Pressure Regulator
            Outdoor Living Product Type: Fryer Accessory
            Inlet Pressure: 25-250PSIG
            Outlet Pressure: 0-30PSIG
            Certificate: CSA","ADJUSTABLE 0-30 PSI OUTPUT CONVERS WIDER APPLICATIONS. The upgraded pressure propane regulator can regulate the gas flow and pressure with wider adjustable pressure range from 0-30 PSI. It can replace the 0-20 PSI propane regulator, and be used with more high pressure propane burners. +BUILT-IN PRESSURE GAUGE GIVES YOU ACCURATE CONTROL OF THE HEAT. The propane is equipped with a pressure gauge/detector measuring from 0-60 psi (as well as 1-4 100xKPA). It tells you how much pressure you are turning the knot to release gas, lets users control their heat with a precise level of accuracy. +A MUST-HAVE EQUIPMENT FOR MOST PROPANE APPLIANCE. Type 1(QCC 1) tank end connector & 5/8""-18UNF outlet connection-3/8 inch flare fitting has an outside diameter of 5/8 inches in order to accommodate for the flare seat, which is compatible with most propane gas grills, burners, turkeys, fryers, smokers and cookers. It’s great assistant for BBQ, camping, tailgate party, heating needs or having a patio/camping outdoor cookout. +EXCELLENT SEALING QUALITY & EXCESS FLOW PROTECTION COMPLETELY ENSURE YOUR SAFETY. 100% solid brass corrosion resistant construction fitting provides secure, airtight connection between propane tanks cylinders and propane gas appliances. When your propane gas left in your tank too low, or the capacity flow of your appliance exceeds this regulator's Max. flow capacity too much, it will shut off the gas flow automatically. +EASY AND QUICK ATTACHMENT FOR EASIER INSTALLATION WITHOUT ANY HASSLES! There are only two connections - One side works on a standard size propane tank cylinder fitting, the other side is installed on the burners. No tools needed, simply connect and go. No PTFE tape needed for connection seal.",STYDDI,,us,342 +B07DTNNJR9,"Good Life, Inc Guardian G2 Bird & Wildlife Propane Gas Scare Cannon - Perfect for Industrial & Agricultural Applications","Guardian G2 Bird & Wildlife Propane Gas Scare Cannon

            The Guardian G2 Scare Cannon drives away pest birds and wildlife like deer, wild turkeys, crows and more. This powerful outdoor repeller allows you to easily protect large areas with a simple pressure-regulated sonic blast to frighten and disorient pest birds and wildlife.

            Just one G2 Cannon will protect up to 7-10 acres, depending on the shape and topography of the field. Whether using one or multiple, our cannons are perfect for vineyards, orchards, row crops - practically any large, open area with pest birds and wildlife.

            The G2 Cannon works on propane or butane gas. The sonic explosions it produces help in the protection of crops, fruit trees, and other areas where where birds and animals may threaten crops. The sound detonations are adjustable to the desired frequency in a range from every 5 to 30 minutes.

            Thanks to the special configuration of the telescoping barrel, the detonations are customizable from 80 to 120 decibels and the protection area is between 7 and 10 acres, depending on the crop, topography, and weather conditions.

            All you have to do is set up the cannon once, then walk away. The cannon will fire unattended for extended periods of time, leaving you free to handle your daily business demands.

            The rest of the device is completely mechanical, keeping any potential faults to a minimum. The G2 Cannon is fully galvanized for reliability and durability in adverse weather conditions.

            We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money Back Guarantee plus 1 Year Manufacturer Warranty . It's the only product in it's class to offer such a guarantee!
            ","MONEY-SAVING PEST CONTROL Repel pest birds and wildlife so you can focus on what matters - record breaking harvests. The G2 runs on clean, inexpensive propane or butane gas. No chemicals, poisons, or traps. +BUILT TO LAST - RAIN OR SHINE Unlike most cannons on the market, the G2 boasts rugged, fully galvanized all-metal construction. No flimsy plastic to bend, crack, or break down under the elements. +CUSTOMIZABLE Telescoping barrel allows you to adjust your sound from 80-120 dB. Available tripod option allows you to raise your cannon up to 5 feet high, nearly doubling your sound coverage! Each blast covers up to 7-10 acres. +EASY TO MAINTAIN The G2 sets up in 5-10 minutes and then operates unattended, leaving you more time to handle your daily business demands. On the chance you do need to replace a simple spark plug, just head to your local auto store. No need for fancy proprietary parts. +GUARANTEED We're so confident that you'll love your newfound freedom from birds and wildlife that we back your purchase with a 60-Day Money-Back Guarantee. It's the only product in its class to offer such a guarantee!","Good Life, Inc",Red,us,343 +B00IZCNOS0,"Flame King (KT12ACR6) 2-Stage Auto Changeover LP Propane Gas Regulator With Two 12 Inch Pigtails For RVs, Vans, Trailers",,"Allows removal of empty cylinder for refill without interrupting propane supply +For RVs with dual propane tanks; Automatically switches from primary to reserve tank when primary is empty +Pairs well with our 48 Inch Thermo Plastic Hose, item 100383-48. +Double stage design maintains constant gas pressure under changing demand and conditions +Inlets are 1/4"" SAE inverted flare and outlet is 3/8"" NPT female pipe thread. Regulator is factory set at 11wc (water column)",Flame King,Silver,us,344 +B081GNNVJK,"Traeger Grill Holiday Rub Bundle: Pork and Poultry Rub, Prime Rib Seasoning and BBQ Rub, and Beef Seasoning and BBQ Rub",,"Great Tasting Cooking Seasoning Bundle: features apple and honey flavors, rosemary and garlic, and sweet molasses, and finally brown sugar with a slight kick of chili pepper. +Compatible Meat/Proteins: this perfect bbq rub to complement pork and poultry, and your beef cut of choice. +Easy Storage: Each rub comes in a stackable aluminum tin container +Made in the USA",Traeger,,us,345 +B001DC5HAW,Stansport 3 Outlet Propane Distribution Post,,"Simple, versatile device lets you operate three propane devices from one bulk propane cylinder +Works with lanterns, stoves, heaters, and other propane appliances +Three outlets, each with its own auto shut-off valve +Adjustable base ensures stability on uneven terrain +30-inch device weighs just two pounds, and packs easily",Stansport,Multicolor,us,346 +B01GE77QT0,"ThermoPro TP20 Wireless Meat Thermometer with Dual Meat Probe, Digital Cooking Food Meat Thermometer Wireless for Smoker BBQ Grill Thermometer",,"Hands free monitor: Wireless thermometer with dual probe monitors food or oven/grill/smoker temperature up to 300 feet away, enabling you to enjoy your company without continuously excusing yourself +Hassle-free setup: No synchronization required, say goodbye to the tedious setup steps; Large LCD displays both food and oven temps; Back-lit for use in low light condition +Kitchen timer: Food cooking smoker thermometer features count up and countdown setting that is perfect for long-time cooking; Receiver will beep and flash once reaches preset temperature +USDA preset temperature settings: BBQ thermometer with preset temperatures for 9 types of meat and their various doneness levels recommended by USDA; All of the preset temps can be reset to your desired tastes +Durable and accurate probes: Wireless meat thermometer for grilling and smoking features food grade stainless steel probe with step-down tip design to get temperature more precisely and quickly; Probe wires can withstand up to 716Fahrenheit",ThermoPro,Orange,us,347 +B00B58A0QU,"Cuisinart CCG190RB Inch Portable BBQ Charcoal Grill, 14"", Red, 14.5"" x 14.5"" x 15""",,"150-SQUARE-INCH CHROME PLATED GRATE: The 150-square-inch chrome plated cooking rack gives a spacious cooking surface is able accommodate lots of food at one time while still distributing heat evenly and efficiently. +DUAL VENTING SYSTEM: Features a Dual venting system, giving you the ultimate charcoal management and temperature control. +THREE SECURE LID LOCKS: The grill features three secure lid locks for easy and safe transport. +COMPACT ENOUGH TO TAKE ANYWHERE: Measures 14 x 14 x 15 inches and weighs only 2 lbs. , making it easy for transport and ideal for decks, patios and balconies, camping, tailgating and more. +ENAMEL COATED FIREBOX AND ASH CATCHER: Features a durable enamel coated firebox and convenient mess-free ash catcher for safety and ease.",Cuisinart,"Portable BBQ Charcoal Grill, 14"" (Red)",us,348 +B07KBYD4WZ,"Homyl Universal Fit Propane Tank Adapter with Gauge Converts POL to QCC1 / Type 1, Propane Hose Adapter Old to New Connection Type","

            Description:

            - Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators.
            - Allows you to quickly and easily check the amount of propane in the tank
            - Monitors fuel level without removing the tank.Easy to install
            - Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.
            - Heavy duty 100% solid brass construction

            Specification:

            - Capacity: 80000-150000BTU/hour
            - Operating temperature: -40°C - + 55°C
            - Inlet: 25-250PSIG
            - Outlet: 2.5PSIG-20PSIG

            - Material: copper

            - Size: approx. 100*60mm/3.94*2.36inch

            Package Includes:

            1 Piece Propane Tank Adapter


            Choose all you need in our store. You will have a nice purchase experience and get quality products and service corresponding to the policy of Amazon.

            ","Allows you to quickly and easily check the amount of propane in the tank +Propane Gas Guage meter, converts POL LP Tank to QCC1/Type1 hoses and regulators. +Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane. +Monitors fuel level without removing the tank.Easy to install +Heavy duty 100% solid brass construction",Homyl,,us,349 +B0872C7BXM,"Heavy Duty Ventilated Propane Tank Cover Fits Standard 20lb Tank Cylinder, Waterproof & Weather Resistant RV Propane Gas Can Protection Cover, Propane Bottle Storage Bag, 7.5 x12.6 x23.6 Inches","Senvate 20LB Propane Tank Cover, ventilated Gas Gan Cover, Universal Size Tank Cylinder Cover Fits 20-Pound Steel Propane Gas Can

            Features:
            Material: Heavy Duty 600D Oxford fabric and PVC cover.
            Perfect fit: This 20 lb propane tank cover measures 7.5 x 12.6 x 23.6 Inches, fits for most propane tank up to 20lb.
            Durable, scratch resistant polyester with UV protection all year round.
            This propane tank cover is prevent your tank from experiencing premature fading and damage from the sun.
            Keeps dust and dirt from the tank's exterior, cover up ugly propane tank eye sore.
            Easy to Clean: Low Circle Machine Wash & Handwash.

            100% Satisfaction Guaranteed:
            30 days free return. If you are not satisfied with our heavy duty ventilated propane tank cover, pls feel free to contact with us, we will do whatever we could do to solve the problem & make you satisfied.
            ","PREMIUM MATERIAL: This 20lb Propane Tank Cover is made of tough, weather-resistant, waterproof 600D Oxford fabric and PVC cover, UV finishing, which enable itself to protect your propane tank from dust, wind, heat, cold, bugs, insects, rain, or snow, thus offering a complete cover to your propane tank. +PROPANE TANK COVER DIMENSIONS: 7.5"" Diameter (top) x 12.6"" Diameter (bottom) x 23.6"" High, fits for most cylinder propane tank up to 20lb. +FEATURES & EASY TO INSTALL: Air vents reduce inside condensation and wind lofting. Convenient side velcro and magic tape allows for easy set up and highly durable. A Necessary Cover for propane tank. +EASY CLEAN: Easily clean this 20lb propane tank cover with damp duster or by hosing with clean water. Sturdy, great fit and perfect for outdoor tank storage. +100% RISK FREE BUY & FAST DELIVERY: Buy with confidence, we provide high quality products. If you are not satisfied with our rv propane tank cover, we will provide a 100% refund service with no question asked. Worry free. AMAZON SHIPMENT, you will get you propane gas can protection covers within 1-3 working days, no need worry about gift delays.",Senvate,Black,us,350 +B07S8HQC5K,Universal BBQ Grill Meat Thermometer Temperature Probe Clip Holder for ThermoPro Soraken Veken Maveric Taylor Weber iGrill Ivation Pit Boss K-Type Thermocouple Sensor Ambient Temperature Reading,"What is the purpose of these clips? How would one use them?
            Purpose: Stainless Steel material flexible to fit in the grates, keeps the probe stand still all the time for accurate reading.
            How to use: Use the clips to hold your thermometer probe sensor / thermostat probes / K-Type thermocouple above the grate to get an accurate temperature inside your smoker / grill / oven. The bottom, open end, of the clips snap into your smoker grate and the thermometer probe sensor slides through the 2 holes provided, just make sure the holes are big enough for your thermometer probe sensor to slide through and rest on.

            Features:
            1. Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes.
            2. Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills and most meat thermometers probe.
            3. Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer.
            4. Smoker / Grill / Oven Safe and dish washer safe.

            Ambient Temperature Clip for Smokers, Grills, and Ovens. Fits 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia) probes, such as:
            Maveric ET132, ET632, ET732, Redi Chek, ET-733, ET-735, BB-22, ET-8, HD-8, HD-32, XR-30, XR40, XR-50
            compatible with Thermopro TP04, TP-04, TP-06, TP06S, TP-07, TP07S, TP-08, TP08S, TP-09, TP09B, TP-10, TP-11, TP-12, TP-16, TP-16S, TP-17, TP-20, TP-21, TP-22 TP25
            compatible with Taylor Precision Products , Taylor 1478-21, 1487, 1470N
            compatible with Ivation IVA-WLTHERM, Inkbird IBT-4XS Bluetooth Wireless Meat Grill Thermometer, Oprol 0001
            Intelitopia Meat Thermometer
            compatible with NutriChef Bluetooth BBQ Thermometer, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart
            compatible with Weber iGrill, Pit boss, Traeger Pellet Grills
            ","Universal Ambient Temperature Clip with 3 different hole sizes to optimize most meat thermometer probes +Universal A Style Probe Clip Hole Size: 0.158in / 0.19in / 0.23in dia, (4mm / 5mm / 6mm dia), compatible with Thermopro, Maveric, Taylor, Ivation, Inkbird, Weber iGrill, Pit boss, Traeger Pellet Grills, Uvistare, riida TM08, Tenergy Solis, Soraken, Veken, KFiAQ, SMARTRO ST55, Te-Rich, Blusmart Meat Thermometers and most APP Bluetooth Wireless meat food kitchen thermometers probe +Essential accessory for most Smoker BBQ Oven Grill Instant Read or Wireless thermometer +Stainless Steel material flexible to fit in the grates, this small accessory keeps the probe stand still all the time for accurate reading. +Smoker / Grill / Oven Safe and dish washer safe. 2 Pack",eBasics,Silver,us,351 +B074GXFLX5,"Gas One Portable Propane 100, 000-BTU High Pressure Single Burner Camp Stove & Steel Braided Regulator with Adjustable Legs Perfect For Brewing, Boiling Sap & Maple Syrup Prep, Model:",,"HIGH PRESSURE SINGLE PROPANE BURNER - Gas One’s B-3000H-1, our single-high-pressure burner, is the perfect fit for those looking for heat that packs a punch. Along with its height adjustability (removable legs) and its included regulator heat dial, the B-3000H is a masterful blend of power and control. +NO MORE BACKPAIN FROM COOKING OR BREWING WITH HEIGHT ADJUSTMENT - With two sets of detachable legs, the B-3000H-1 allows for the usage of a taller burner to get rid of pesky back pains when having to crouch over to fire up a high-pressure burner. Remove a set of the detachable legs to create a short sturdy burner! +EASY HEAT ADJUSTMENT WITH A REGULATOR HEAT DIAL - The B-3000H-1’s Included hose/regulator has a built-in adjustable heat dial to control the flame directly from your regulator! +RUGGED CONSTRUCTION - Made with tough welding and a study body frame, the Gas One’s Single High-Pressure Propane Burner is guaranteed to last long with consistent strength. The B-3000H-1’s burner head is made of resilient cast-iron and allows for an output of 100,000 BTU! +SAFETY 1ST - Includes a Regulator with ensured quality control",GasOne,Old Style Black QCC,us,352 +B08C9YPBV9,"VIVOHOME Outdoor 3-Burner Stove, Max. 225,000 BTU/hr, Heavy Duty Tri-Propane Cooker with Detachable Legs Stand for Camping Cookout","Are you ready to go camping? Take VIVOHOME’s outdoor cooker with you! Made of cast iron, this camp stove is a heavy-duty tool that ensures long-term use. Compact, portable, easy to store and travel with, the burner makes camp cooking easy! Choose this massive output cookstove for your trips!

            Features:
            -The sturdy and efficient stove packs enough power in its 54,000 BTU burners to boil water and cook food.
            -No longer worry about getting your kitchen smelly and dirty when you do deep frying or stir frying.
            -The 3-burner stove is portable and makes outdoor cooking easy with removable legs.
            -Easy to set up; Removable legs for transport and storage; The legs are straight, even, and sturdy. Great stove for camping; It will really simplify your cooking or canning process
            -Great stove for camping; It will really simplify your canning process

            Product Specification:
            -Rated output: 54,000 total BTU/hr, for 18,000 BTU each
            -Max. output (with 20 PSI): 225,000 total BTU/hr, for 75,000 BTU each
            -Stove Height: 29""

            Package Includes:
            -1*Triple burner stove
            -1*Extension hose & regulator
            -4*Detachable legs
            -1*Manual","GREAT OUTDOOR COOKING BUDDY - With 3 powerful burners to work with, this burner stove makes camp cooking easily and works well for outside if you cook smelly food and don't want the smell in your house, so having this would make deep frying stuff much cleaner outside; Perfect for outdoor cooking, camping and parties +HUGE HEAT OUTPUT - The flame can be adjusted by the regulator or by controlling the propane flow with the propane tank valve for best high flame and fast maximum heat output; The 3 powerful burners can output max. 225,000 total BTU/hr, for 75,000 BTU each with 20 PSI; LPG is highly recommend +THREE INDIVIDUAL BURNER STOVES - The 3 burners can be operated independently and you can control the flame height with extreme accuracy to ensure you’re cooking at the right rate +VERSATILE STOVE ON STAND - With detachable legs, this outdoor stove is compact, portable and easy to travel with; The 4 legs are super sturdy once tightly secured to the stove's body; It can also be used as a countertop stove without legs +HEAVY DUTY CONSTRUCTION - Made of a sturdy metal frame, the gas burner has cast iron top which can bear high temperatures, retard rusting, and is durable enough for a long service life",VIVOHOME,Black,us,353 +B00IZCNP5C,"Flame King Dual RV Propane Tank Cylinder Rack For RVs and Trailers for 30lb Tanks - KT30MNT (Tanks not included) , Black",,"Securely Holds Two 30 pounds Propane Tanks +Fast and Easy To Use +Built From A Durable Powder Coated Steel",Flame King,Black,us,354 +B07MV43X4C,"Cedar Green 330SA Earth Anchor, Black",,"Each Package Includes 6 Earth Anchors +30"" Length with 3"" Dia Helix Auger & 1"" Inside Ring +Heavy Painted Black Color, Formed Ring for Installation and Tie Up. Firmly Welded Helix for Solid Holding +Easy Installation by Hand or Drill Machine, Screw into the Soil to Guy Down Tents, Canopies, Storage Buildings, Fencing, Playground Trees, evan your lovely Dogs +Ideal for Anchoring Storage Sheds, Fences, Car Ports, Gazebos, Boats, Tents, small Airplanes, Awnings, Pool Covers, Propane Tanks, Grills, Tarps, Trellis, Arbors, and Playground Equipment, Tent Stake, Ground Screw U-Shape, Fence Post, Dog Traning Tug, Dog Rope Toy, Dome Stake",Cedar Green,BLACK,us,355 +B004Q068YC,Weber Summit S-460 Built-In Natural Gas in Stainless Steel Grill,,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +4 Stainless steel burners +48,800 BTU-per-hour input +10,600 BTU-per-hour input sear burner +6,800 BTU-per-hour input smoker burner and stainless steel smoker box",Weber,Stainless Steel,us,356 +B000EI759M,Texsport 6 Foot Propane Extension Hose from Appliance to Distribution Tree,"Texsport Propane, Appliance Gas Hose 14229TEX","Connects propane appliances that normally use disposable propane fuel cylinders to a distribution tree +Smooth fittings for easy bulk tank attachment +Note: Propane Lanterns, heaters and stoves are for OUTDOOR USE ONLY",Texsport,,us,357 +B00BWAPOB2,"Formosa Covers | Premium Tight Weave Heavy Gauge BBQ Grill Cover up to 75"" Long","Full weather protection for BBQ Grill up to 75"" Long, for Cart style, Sand color premium tight weave 300x300 polyester fabric with soft PVC laminate. High heat resistant cover, UV protection and resists cold cracking. Measures 75"" Lx26""Dx48""H","WHY COVER YOUR GRILL? Even stainless steel grills must be kept covered between uses to ensure corrosive agents and chemicals won't act on the metal and tarnish it. +OUR COVER OFFERS ALL WEATHER PROTECTION: for freestanding BBQ grill carts up to 75 inch long. Keep your grill looking good for years to come. +MADE OF QUALITY FABRIC: sand color premium tight weave 300x300 polyester fabric with soft PVC laminate and water repellent treatment on top. It has high heat resistance, UV protection and resists cold cracking. +UNIVERSAL FIT: designed to fit all grill, smoker, barbeques that measure under 75-inch Long x 25-inch Depth x 46-inch High +SERVICE YOU CAN COUNT ON: With over 35 years of experience in making outdoor furniture covers you can count on us.",Formosa Covers,Taupe,us,358 +B00N5CQ252,Peterson Real Fyre 24-inch Split Oak Log Set With Vent-free Propane Ansi Certified G9 Burner - Variable Flame Remote,"Peterson Real Fyre 24-Inch Split Oak Gas Log Set With Vent-Free Propane ANSI Certified G9 Burner - Variable Flame Remote. S9-24 + G9-20/24/30-15P. Vent-Free Gas Logs. The craftsmanship of Real-Fyre Designer Series Gas Logs captures the realism, texture and subtle nuances found in nature. These hand painted originals, modeled from real world samples, are sure to add a touch of elegance to any home. Experience the subtle beauty and soothing comfort of a Real-Fyre Designer Series gas log display. This Peterson Real Fyre gas log set includes: Ceramic Refractory Vent Free Gas Logs, ANSI Certified Vent Free Burner with Pre-assembled Control Valve and ODS Safety System, Custom Grate, Connector Kit, Glowing Embers, Bryte Coals, and Lava Granules. Burner Output: 36,000 BTUs. Burner ignition method: basic variable flame remote control (with manual valve control for use without remote) - Pre-Installed valve and remote included.",,Peterson Real Fyre,,us,359 +B07QT8FLPW,"Miaowoof Copper Grill Mat Set of 6-100% Non-Stick BBQ Grill Mats, Heavy Duty, Reusable, and Easy to Clean - Works on Electric Grill Gas Charcoal BBQ 15.75 x 13-Inch(6 Pcs Solid Mat","It’s 100% safe to use, FREE from any harmful chemicals that might seep into your food.

            The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

            Make Grilling, Baking, Cooking Easier:
            Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
            This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
            It will not retain or transfer tastes or odors between uses.

            Application:
            Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
            Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
            Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

            Tips for Maintaining:
            Store mats flat or rolled upin storage for small space. Don’t fold it.

            Warning:
            Do not let grease accumulate due to risk of grease fire.
            Use mats at low-medium heat settings (300°F - 400°F).
            To avoid scratching, only use wood, plastic or silicone utensils.
            Do not use sharp stainless steel or metal tools to avoid scratching.
            Don’t use scratch pad or abrasive brush while cleaning mats.

            Package Included:
            6 * Solid Grill Mats
            ","1.NO BETTER CHOICE - 6 Solid mats The solid mats are great for food which need cook with liquid, like pizza,squid,beef,eggs.... +2.NICE MATERIALS - Our BBQ grill mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 260 F; when used for a short time, the maximum temperature cannot exceed 400 F. +3.REUSABLE AND DISHWASHER SAFE - Versatile and highly economical, they can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking! They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing. +4.100% NON-STICK - 100% Non-Stick means you can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill +5.Unhappy with your new grill mats? Simply contact us for a refund or replacement.",Miaowoof,Copper,us,360 +B071749XB4,"GasOne 50200+2109 Gas ONE High Pressure Cast-Iron Round Burner Head with Brass Fitting O, Black",,"Includes - cast iron high pressure burner head and 0-20 psi high Pressure regulator and 4 ft hose +Universal replacement burner - With our gas one burner head, you can use it with high pressure or low pressure regulators (high pressure regulator is recommended for high output) +Brass fitting orifice Block - includes brass fitting orifice Block & air Shutter and spring +Heat resistant - cast iron will not melt easily compared to aluminum construction +To be used with propane only",GasOne,black,us,361 +B01LVUYVPT,"Pleasant Hearth VFL-SO24DT 30,000 BTU's 24"" Southern Oak Vent Free Gas Log Set",,"Dual fuel technology allows the unit to be operated with propane or natural Gas +Up to 30,000 BTU's/hr. heats up to 1,000 sq. Ft +No electricity required allows for reliable back-up heating incase of an Emergency situation +Dual burner system provides two rows of flames for a more full looking fire +6 hand painted concrete logs inspired by nature",Pleasant Hearth,,us,362 +B006WRLBNU,"Weber 8836 Gourmet BBQ System Pizza Stone with Carry Rack,16.7"" Long",,"Cordierite stone absorbs moisture for light and crispy thin crust pizza +Carry rack makes transporting the pizza quick and easy +Fits into the Gourmet BBQ System cooking grate so that it stays in place while grilling +Enjoy the taste of a crispy pizza with perfectly melted cheese and grilled toppings",Weber,Beige,us,363 +B0753BKVJX,GOJOOASIS Barbecue Grill Gazebo Outdoor 2-Tier BBQ Canopy Tent Coffee Shelter 8-Feet,"Specifications:
            - Weight: 44lbs
            - Cover Color: Brown/Coffee
            - Frame Color: Black
            - Material: Metal, Polyester
            - Overall Dimensions: 98.4""L x 59.1""W x 106.3""H

            Features:
            - Stylish double layered Fire-retardant canopy cover
            - Slanted roof to help keep clear of debris
            - 180GSM Polyester tent material and vented at top
            - Rust resistant powder coated steel frame
            - Come with hook on the middle top, put up fan, lights and so on
            - 2 iron meshes for grill accessories, beverages or food
            - Included 7 x Pegs
            - 1 Bottle opener attached to frame
            - Footprint size 8' x 5'
            - Designed specifically to house a barbecue
            - Assembly required comes with instructions and all hardware included

            Note:
            We do not recommend leaving set-up over several days, in adverse weather conditions.

            Descriptions:
            This canopy cover will provide optimal shade while grilling up your burgers on a hot summer day. The durable canopy protects you from harmful UV rays and has a stable iron frame. There is one metal shelves on each side of the shelter to offer a handy place to set food and other items. It also has hooks for hanging additional cooking essentials.This versatile canopy also comes with a bottle opener attached directly to the frame so you are always able to enjoy your favorite beer by the grill. Gojooasis Barbecue gazebo tent, the best choice to decor your BBQ party.Let you to enjoy a safe and comfortable barbecue.","Rust- resistant powder coated steel frame Barbecue Gazebo Tent - 8 feet high,5 feet wide +BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric +Double-tier top cover design not only looks good but is designed to make Good ventilating +Safe flame-resistant top canopy with Water and UV resistant function for long lasting use +Gojooasis BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on",GOJOOASIS,Brown,us,364 +B07RX4JN5Q,"Grill Mats for Outdoor Grill, Dailyart Grill Mats Non Stick Set of 5 BBQ Grill Mat Baking Mats Teflon BBQ Accessories Grill Tools Reusable,Works on Gas, Charcoal, Electric Grill 15.75 x 13-Inch, Black","Worried about food falling through the grille?

            Prevent stains from besmirching your yard or deck?

            Hate cleaning grills full of grease?


            You will like Dailyart BBQ MAT- Making your BBQ more easily !

            - Non-stick design allows you to grill chopped vegetables and even make eggs, bacon and pancakes on the grill.

            - The meat does not burn so quickly, preventing the formation of harmful substances such as acrylamide,but remains juicy rather than dried out.

            - Easy to clean and re-use. Put them in hot soapy water and wait 10 to 15 minutes, then you can wipe them clean and let them dry.

            - The 44 x 30 CM wide barbecue mat is large enough to protect your deck or patio from oil or grease spills.

            - Perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits and vegetables.

            - Easy to store:can be stored either flat or rolled up.

            Specifications:

            Thickness: 0.2mm
            Size:Large 44 x 30 CM Coverage area
            Material: PTFE glass fiber coating

            Package included:

            5 x BBQ Grill Mat
            1x Wish card
            ","Non-stick design:Get more out of your grill than just cooking meat by using these Nonstick Grilling Mats to make grilled, chopped vegetables and even eggs, bacon and pancakes. They prevent food from falling through grates while maintaining barbeque flavor. +High temperature resistance over 500 ℉: Our barbecue mat is made of high quality heat-resistant PTFE glass fiber coating, free of PFOA, silicone or other hazardous chemicals. It can withstand 500℉ without burning or contracting. When you are grilling the mat is very hot, please do not touch directly with your skin. +Reusable:The barbecue cooking mats mat sits on top of the bbq and prevents the grease and dirt getting all over the bbq, keeping it clean ready for the next use and saving lots of time cleaning. The mats wipe clean very easily, after cleaning the mat left a zero smell. +Multipurpose Barbecue Grill Mats:Perfect for any barbecue, including coking, Weber, charcoal, electric ovens, and even infrared grills, can also be cut into any shape you want, making it easier and more delicious to cook food. +Safer and Healthier:When our food is baked directly over the fire, meat burns quickly and is prone to harmful substances. Our BBQ Grill mat is made of safe material to keep the food from being directly roasted while still remaining delicious.",Dailyart,Black,us,365 +B002MEPTOE,"Raypak 336,000 BTU Digital Electronic Ignition Propane Pool Heater","The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique ""pagoda design"" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet.","336,000 BTU propane digital pool and spa heater +Microprocessor-controlled thermostat can be set precisely to your liking , set it and forget it +Cabinet and the internals are non-corrosive and rust resistant +Features PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger +Also features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile",Raypak,,us,366 +B07CVNQKR6,Mr. Heater MH4GC 4000 BTU Radiant Propane Portable Golf Cart Cup Holder Heater,"Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.","Specifications: +Features automatic shut off system for low oxygen +Easy push button ignition for instant heater in your golf cart the next time you hit the links +Puts out 4,000 BTUs of heat and features a wind resistant pilot system +Fits inside a simple to use cup holder adapter",Mr. Heater,Black,us,367 +B07QLDTY37,"Under the Grill Gear Flame Retardant Mats,Barbecue Grilling,Absorbing Oil Pads,Reusable Durable Washable Floor Mat Protect Decks ,Patios, Grease Splatter,Messes (Grill Mats:37.4inches x 40inches)","
            Flame Retardant and Absorbent Material

            The surface fabric of the Under Grill Mat is made of flame retardant material.

            but the backing material is not flame retardant material.

            This non-slip, skid resistant backing keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills

            from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below.

            Perfect Pretection

            The Gas Grill Mat traps and contains the mess,this mat is designed to protect your expensive decking, patio and other outdoor

            surfaces from costly oil and grease splatters or food stains. Durable fabric is made out of a polyester fiber and is able to with stand any

            BBQ mess.This strong material is made from 100% recycled plastic bottles.

            Easily Use

            The Under Gas Grill Mat is easy to clean. When your grill mat gets dirty, simply power wash, hand wash or hose off.

            Our material is environmentally safe. This product is safe for your entire family, including your pets.
            .

            If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.

            100% NO HASSEL Lifetime Guarantee.
            ","Flame retardant and soft absorbent Material: The surface fabric of the Under Grill Mat is made of flame retardant material, but the backing material is not flame retardant material.The mat can trap and contain the mess,and can absorb oil and other liquid,this mat is designed to protect your expensive decking, patio and other outdoor surfaces from costly oil and grease splatters or food stains.long-lasting grill pad material is made out of a polyester fiber and is able to withstand any BBQ +Perfect Protection:This material is made of flame retardant material, It won't burn, but it will melt under high temperature,it can Prevent fire happened, This Under Grill Mat stays safely in place under your grill to collect any spills and splatters.Protect your deck, patio, or garage floor from water, sauce, grease, and oil. 100% recycled polyester fiber provides a protective barrier without staining the surface underneath. +Good Backing: This Under Grill Mat is non-slip, skid resistant backing that keeps the grill mat in place and prevents it from moving around. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. +Easily Clean and Cut: Simply handwash or hose off and hang dry when it gets mess,Very easy to cut according to your size. +Suggestion:If there is a strong wind, we suggest putting some heavy objects on the four corners of the mat to avoid being blown up by the wind.",Cibicon,,us,368 +B002MET2CO,"Raypak 406,000 BTU Digital Electronic Ignition Propane Pool Heater","The Raypak Digital Propane Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Propane Heater's unique ""pagoda design"" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a copper fin tube heat exchanger that heats the water passing through quickly and efficiently. The Raypak Digital Propane Heater not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagnostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money. This heater is ideal for use in elevations from sea level to 2,000 feet. Your browser does not support the video tag.","406,000 BTU propane digital pool and spa heater +Microprocessor-controlled thermostat can be set precisely to your liking , set it and forget it +Cabinet and the internals are non-corrosive and rust resistant +Features PolyTuf powder coating, polymer headers, and an all copper-fin-tube heat exchanger +Also features a stainless steel tube sheet, 2 inch CPVC water connections, burner tray and fire tile",Raypak,Multicolor,us,369 +B01LBW7S4Q,Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 Caribbean Jerk Lemon Pepper Garlic & Herb Citrus Herb Teriyaki Original BBQ,"Weber Grill Spices and Seasonings JUST ADD JUICE 1.12 OZ Marinade Mix variety Spices set of 6 - Caribbean Jerk, Lemon Pepper, Garlic & Herb, Citrus Herb, Teriyaki and Original BBQ",,Weber,,us,370 +B08XYJ7YQV,"Flame King YSN301a Overflow Protection Device Valve, DOT and TC Compliant, White",,"Safety first - Flame King tanks are Pre-purged vacuum ready for filling with LP gas - they are x-ray and hydrostatic tested plus Department of Transportation (DOT) and Transport Canada (tc) certified +High quality - each tank is constructed from high grade Welded Steel and powder coated for long lasting durability. +Premium valve - Premium OPD (overfilling prevention device) valve assembly which is required by law in most States, if your tank doesn't have this, most places won't fill it! +Leading the industry - Flame King, a leader in propane storage solutions, prides themselves on making the highest quality, premium, refillable propane tanks on the market. From 1lb up to 100lb tanks, we've got you covered +Suit your needs - With a standard-size connection valve, This large 30lb tank will connect as easily as smaller tanks, and work with RVs or trailers, propane tank attachable heaters, and other accessories.",Flame King,White,us,371 +B07CB4CV56,Kbrotech Camping Stove Adapter 1LB Propane Small Tank Input and a Lindal Valve EN417 Output Outdoor Cylinder LPG Canister Convert (Brass),,"The LPG adapter has any camping propane small tank input and a lindal value output. +The LPG adapter simply threads into the camping propane canister and your stove or stove's input end threads onto the LPG adapter. +Convert 1LB small canister to EN417 Lindal valve canister.also fit for mapp gas cylinder +The Lindal Value Output is Auo-closed when it is not connected to the stove +High quality 100% solid brass construction makes it corrosion resistant",Kbrotech,Gold,us,372 +B07CNXY2XG,Drill Brush Power Scrubber by Useful Products - BBQ Accessories - Grill Accessories - Grill Brush Cleaning Kit with Extension - Grill Scraper - Rust Remover-Wire Brush – Gas Grill Cleaner - BBQ Brush,"Our kit includes three different replaceable brush heads and a long reach Drillbrush extension. This extension along with all of the all of the brushes feature quarter inch quick change connections on all pieces to make your job even easier. Quickly swap out and change all of your brushes with or without the included extension. These Ultra-Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half (or more) compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring, and then maintaining your grill, smoker, or oven grates. Ultra-Stiff bristle brushes are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. Drill NOT included","Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. +Restore your BBQ grill surface to like-new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean your BBQ grill better than hand brushing. . Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. +Cleanup is easy with these nylon bristle brushes. Hot soapy water and a quick rinse and you’re ready for your next cookout. No more wire brushes that never get clean, and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with +The extended reach attachment allows you to get the extra reach you need to clean places that were too hard to clean before. +Quarter-inch inch quick-change shafts are standard on all included brushes and the long-reach extension. Change brush attachments and the extension quickly and easily.",Drill Brush Power Scrubber by Useful Products,Black,us,373 +B00TZPETFI,"DOZYANT Universal Fit Propane Tank Adapter Converts POL to QCC1 / Type 1 with Wrench, Propane Hose Adapter Old to New Connection Type",,"Converts POL LP tank to Qcc1/Type1 hoses and regulators. +This adapter allows you to use your larger propane tank with the new style regulator on the propane tank Connection place. +Provides secure and airtight connection between propane tank and gas grill. +Hand wheel for easy grip, easy to install. High quality solid brass construction makes it corrosion resistant. +Great propane fittings for your BBQ, camping stoves, propane heater, or anything that uses propane.",DOZYANT,POL to QCC1 Adapter,us,374 +B07FTK91YG,Camplux Pro 6L 1.58 GPM Outdoor Portable Propane Tankless Water Heater With 1.2 GPM Water Pump,"1.The Camplux BD158 is an excellent choice for tiny house, cabins, lodges, apartments, outdoor showers, boat houses, camp sites, and much more.
            2.Could possibly be used in 5th wheels, RV, or campers if you have enough room for proper combustion air and venting and a flue pipe is intalled additionally.(the flue pipe not included)
            3.Ignition is provided by 2 D cell batteries which means electricity isn’t required to power the unit. (batteries not included)
            4.The ideal low water pressure operating range for the Camplux BD158 is 2.8~110.0 PSI, work easily with great performance.
            5.The operating propane gas pressure is 0.4PSI with maximum power output 41,000btu/hour.
            6.The system also works with a 12 volt pump to get the desired pressure.
            7.The gas water heater can't be used for drinking water.
            8.It may result in gas leak or even fire if you forget to put the gasket into the adapter before connecting the regulator to the heater!

            Easy to Use
            1. Hang the gas water heater using the handle provided, or install the water heater on the wall.
            2. Connect the gas cylinder with the supplied gas hose and regulator.
            3. Connect shower hose and shower head to the hot water outlet.
            4. Connect water hose to the water inlet.
            5. Insert 2 ""D"" cell batteries.
            6. Enjoy instant hot water!

            What's in the Box
            1 x Camplux pro portable hot water system
            1 x 1.2 GPM Water Pump
            1 x 3 setting ON/OFF shower head and pedestal
            1 x 5""ft premium shower hose
            1 x 5""ft CSA approval gas hose & regulator
            1 x Camplux 1.2 GPM Water Pump
            1 x garden hose: 1/2"" BSP Female x 3/4"" GHT Female
            1 x garden hose: 1/2"" BSP Female X 3/4"" GHT Male
            1 x gas inlet connector: 1/2"" BSP Female x 5/8"" NPT Inverted Flare Male
            1 x accessories package(included water tape & screws )
            1 x instruction manual

            Inquiry & aftersales service: support@camplux.com
            Service hotline: (1)844-538-7475","Easy & Safety Installation -It only takes you a few minutes to get 1.58 gallons per minute of instant hot water.You don't need buy extra accessories,you can get 2 pcs extension hose and fittings,complete pump package all in one. +3.0 PSI Low Water Pressure-This propane tankless water heater lights when water pressure between 3.0-110 PSI, 3.0 PSI low water pressure is perfect for campings and remote cabins. The tankless gas water heater can be widely applied for rural areas, RV's and Boats. +CSA Standard Ensure Your Safety-Flame failure device, anti-freezing protection, over heating protection to ensure the family safety. The anti-freezing drain plug discharges the residual water to avoid freezing in cold areas for long-time maintenance. Gas supply automatically shut off when high water temperature protection over 167 °F. +Power Efficient & Energey Saving -Maximum power output 41,000btu/hour, you will get instant endless hot water easily wherever you are. Compact and lightweight structure with 11.5% energy saving technology. The propane water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. +Important Tips -To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The tankless water heater will ""caught on fire ""with improper operation. Always check gas leakage before operation.",CAMPLUX ENJOY OUTDOOR LIFE,Peral White,us,375 +B07HDWFMMG,Mr. Heater MH4GC 4000 BTU Propane Portable Golf Cart Cup Holder Heater (2 Pack),"Guaranteed to take at least 10 strokes off your golf game (but not really), the Mr. Heater 4,000 BTU Propane Golf Cart Heater will keep you nice and comfortable as you play a round on even the coldest of golfing excursions. With the included adapter, this small space heater fits nicely right inside a golf cart cup holder, allowing you to stay comfortable between holes. Connect directly to a 1 pound propane tank and enjoy up to 4,000 BTUs of heat. This heater also features a low oxygen automatic shut off system and 90 degree tip over safety switch. Start your golfing season earlier in the spring and extend it later into the fall by staying nice and toasty warm in your golf cart with the Mr. Heater 4,000 BTU Propane Golf Cart Heater.","Easy push button ignition for instant heater in your golf cart the next time you hit the links +Puts out 4,000 BTUs of heat and features a wind resistant pilot system +Fits inside a simple to use cup holder adapter +Connects directly into a 1 pound propane tank container for a 5.5 hour runtime +Features automatic shut off system for low oxygen",Mr. Heater,,us,376 +B00HJ6OPAO,Camco 40547 Thumbscrew & Nut for 40543 Tank Cover,,"Replacement hardware for Camco propane tank lid assembly +Includes two nuts and bolts +Genuine replacement parts +Save time and money by replacing just the lid assembly hardware +Durable and easy to use",Camco,,us,377 +B07QRGWTMH,LBLA Pretend Play Food BBQ Playset Kitchen Toys with Light and Smoke Funny Grill Cooking Play Toy for Kids Toddlers,"This emulational BBQ toy with light, sound and smoke effects, not only can bring fun for children
            but also can promote kids hand-eye coordination, creative expression and imaginative skills.

            INTRODUCTION
            1.Please confirm whether the battery is installed at the bottom of the BBQ grill or not.
            2.Turn on the switch of BBQ grill.
            3. Use the sauce bottle to absorb water and add water to the water injection area.
            4.Press the buttons, the BBQ grill will light up and emit smoke.

            Notice: BBQ Grill requires 3*1.5 V ”AA” Batteries (Not Included)
              Not for children under 3 years.

            PRODUCT SIZE: 47.2*34.5*24.5 CM
            PACKAGE WEIGHT: 0.708 KG
            PACKAGE SIZE: 24*24.5*12 CM
            ","【19 Pieces Food Playset】Barbecue play set included meat ball*2, corn*1, sausage*2, chicken wing*1, clamp*1, fork*2, charcoal*3, plate*2, grill plate*2, sauce*1, BBQ wire mesh*1, BBQ grill*1 +【Emulational Design】Inject water into the grill, the bottom will feature as an electric “burner”, light, sound and smoke effects can be initiated. Kids can enjoy playing it alone or playing with their friends. It will provide hours of fun for boys and girls +【Safe for Kids】Recommended age 3+. The kids BBQ pretend play set is made of high quality ABS material, durable and allows children to play again and again; designed with round edge, keep your children away from hurt +【Convenient to Use】This toy is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized +【Need Batteries】The simulation kitchen toy requires 3 AA batteries. Batteries Not Included. The ON/OFF buttons is in the left of grill, the buttons in the right is decorations",LBLA,,us,378 +B08W4Y34SR,"Outsunny 8'x5' BBQ Grill Gazebo with 2 Side Shelves, Outdoor Double Tiered Interlaced Polycarbonate Roof with Steel Frame, Brown","Don't you hate when you are barbequing with friends or family, but rain or strong sun threatens your fun day? Then make sure to check out this patio gazebo from Outsunny! The polycarbonate roof of our bbq gazebo is UV and rain resistant so you can BBQ any time you'd like. Furthermore, we made sure to include side shelves with the patio canopy, so storing plates and tools all in one place is easy. Plus, with a unique overlapping roof design, the whole BBQ tent is well ventilated. Have a great part and cook some delicious food in peace with our BBQ patio canopy.

            Features:
            - The steel roof is UV ray and water fighting for outdoor use
            - Double roof has great air circulation and heat reduction
            - Two side shelves for placing food and drink
            - Including 8 ground stakes and 8 expansion screws for stable standing
            - Assembly required


            Specifications:
            - Color: Brown
            - Material: Aluminium, Steel
            - Overall Dimension: 8.4' L x 5.2' W x 8' H
            - Eave Height: 6.4'
            - Shelf Size: 58.25"" L x 8.75"" W x 0.75"" T
            - Shelf Height to the Ground: 3.3'
            - Support Pole Spacing: 7.1', 5.2'
            - Weight Capacity of Each Shelf: 55 lbs


            ","IDEAL FOR OUTDOOR BARBECUE: The PC board of the patio gazebo features UV 50+ protection and fights against the rain. This means our bbq gazebo is a great and comfortable place to cook some food, have some friends, and enjoy a party +CONVENIENT FUNCTIONS: Our patio canopy has two side shelves that provide space to place food and drinks. +GREAT VENTILATION: The two layers of the polycarbonate roof are interlaced over each other in an interesting design. What this does is give great air circulation and a specific place for smoke and smells to filter through while barbequing +STRONG AND DURABLE: Our BBQ tent is made of steel pipe and polycarbonate material that are sure to last for many grilling seasons to come +BBQ PATIO CANOPY GAZEBO DIMENSIONS: Overall Dimension: 8.4'L x 5.2'W x 8'H, Eaves Height: 6.4'",Outsunny,Brown,us,379 +B085WSHG8H,Jeebel Camp 24inch LPG Adapter Extension Hose 1L Propane Small Tank Input EN417 Lindal Valve Output,,"【Practicality】Lindal valve propane adapter stainless steel flexible hose for extending the propane tank line on your stove. Use it to keep your propane tank farther away from stove no effort. Convert 1LB Propane Tank to EN417 Lindal Output and an extension hose is added, which is more convenient to use, very efficient and practical. +【Adjustable Control Valve】On/off switch can adjust the gas refilling speed. +【Good Quality Materia】Made of high-quality aluminum and stainless steel with the features of strong, anti-rust, sturdy and durable, has a long using life. Stainless steel braided, good flexibility and excellent resistance twisting. +【Easy to use】Jeebel Camp LPG adapters only need to be screwed into camping propane tanks, and your stove input can be screwed into LPG adapters, suitable for 1lb propane small tanks to connect to stoves, lights and anything that requires EN417 connectors. +【Include】 LPG Valve Type LPG Adapter With Extend Hose (60cm/24inch). Please refer to the details page to make sure the accessories are suitable for your camping stove.",Jeebel Camp,Propane Tank Adapter Extension Hose,us,380 +B07N2MXJ64,"YRYM HT Copper Grill Mat Set of 5-13""x15.75""Grill Mats Non Stick-BBQ Grill &Baking Mats - Reusable and Easy to Clean - Works on Gas, Charcoal, Electric Grill","

            It’s 100% safe to use FREE from any harmful chemicals that might seep into your food.

            The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.

            ★Cook without oil or fats more healthy

            *SGS approved
            *Foods retain more vitamins and minerals
            *Does NOT absorb odors or transfer flavors

            ★Make Grilling, Baking, Cooking Easier:
            *Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection.
            *This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming.
            *It will not retain or transfer tastes or odors between uses.

            ★Application:
            *Non-stick teflon BBQ grill mat can serving as barbecue grill mat, nonstick oven liners ,baking mat, cooking mat etc.
            *Perfect for any grill including as Char-Broil, Weber, Porcelain, Charcoal and even Infrared Grills.
            *Grill Veggies,meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Anything else you want to put on the grill!

            ★Simple To Use:
            *Simply place this mat on the food grill , It never sticks!
            *They can also be cut to fit your particular grill or oven perfectly.

            ★CLEAN-UP IS A BREEZE!
            *Simply clean the mats with warm soapy water.
            *Miracle BBQ Grill mats adopt PTFE material, Non-stick, which are extremely Easy to clean and Dishwasher safe!

            ★Package Included:
            5 * Cooper Grill Mats
            1 * Oil Brush BBQ Liquid Pen

            ★GET IT WITH CONFIDENCE: YRYM HT offers you their best free replacement or refund policy in any case!
            Any questions you have, please don't hesitate to contact us

            Your Purchase Is Risk Free. ADD TO CART TODAY!
            ","♥ Three Advantages -One of the most important features is that grilling mats non stick which makes grill mats super easy to clean and is reusable. For people with oil-free diet. Silicone grill mat is a perfect option without any oil and filthy stains! The grill mat non stick prevents food from falling and wasting keeping your grill clean! It is also dishwasher safe cut to fit perfectly in grills, ovens and stoves. +♥ Top Quality Materials-The grill mat is made from high-quality heat resistant technology with fireproof material that could bear up to a temperature of 500°F. Copper grill sheets consists of a fibreglass coating combined with harmless materials to ensure safe and healthy food. To top it all, it is safe and approved by the SGS. +♥ Flavor Enhancers for Great Taste-The barbecue cooking mat is perfect for meat, vegetables, fish, shrimp, pizza, and eggs, basically everything! The specially made flavour enhancers for great taste copper grill mats preserveits original flavours resulting in a better taste of food. Grab these now and become a professional grill master with this amazing package! +♥ Humanized Design-It has a customized design-our oil brush with a bottle dispenser and liquid pen. The oil brush can be detached avoiding leakage of oil. Therefore, our oil brush can also be used for outdoor barbecue, steak brush oil, fried eggs and so on! +♥ Applicable to a variety of scenarios -These copper grill mats non stick are perfect for Christmas gift. These qualities make it a must-have grilling accessory for delicious baking, backyard barbecues, fun parties, camping cooking or just a casual dinner. We hope that you will enjoy it with your friends and family without worrying about all the mess.",YRYM HT,Copper,us,381 +B094HHS7Q4,"My Aegean Grill Mats Great Set of 5 Heavy Duty Grill Mats for Outdoor Grill, BBQ Grill Mat Non Stick Reusable, Easy to Clean Barbeque Grilling Accessories Works on Electric Grill Gas Charcoal BBQ","

            My Aegean non-stick grill mats will add color to your barbecue experience. You can use it either in your garden, at home, in the park or camping. Thanks to it’s practical use, easy cleaning and double-sided use, do not be afraid of barbeque.

            The materials used in the manufacture of our product have been chosen with your health in mind. With it’s high quality PTFE-Fiberglass material, it’s long-lasting and suitable for reuse. It’s thickness is 0.2 mm. This thickness is the most preferred.

            You can cook many different ingredients without mixing their flavors. Do you want to cook fish on the same grill after cooking your meat? Nothing to worry about. Turn over your grill mat and cook your fish.

            When using our product, we ask you to pay attention to just a few things:

            - Please do not put the grill mat directly on the fired charcoal.

            - Be careful not to damage the coating with sharp or piercing objects during cooking or cleaning.

            - Our product is resistant up to a maximum temperature of 500 F, but do not expose it to these temperatures for a long time (such as 30 minutes).

            - Before cleaning, wait for it to cool down and first clean it with a dry cloth.

            - If you want to store it before re-use, we recommend that you keep it unfolded. It will be healthier if you store it in roll form.

            Thank you very much for choosing My Aegean grill mat.
             

            ","HEALTHY, SAFE AND PRACTICAL - PTFE-Fiberglass 5 pieces barbecue mats designed for your health, free of PFOA, silicone or other harmful chemicals. You can use the practical grill mats for outdoor grills or to cook in the oven. +NON-STICK, PROTECTS THE TASTE OF YOUR MEALS - Enjoyable cooking is waiting for you with the non-stick BBQ grill mat. With 0.2 mm thickness, your meals will protect their flavor and these grill mats will become your favorite barbeque grill accessories. +REUSABLE & EASY TO CLEAN - Our BBQ mat is reusable. It’s easy to clean and there is no need for a grill cleaning. Extends the life of your grill. +MULTIPURPOSE USE - Do not only use the grill mat for barbeque cooking, you can also use it for other cooking methods. It’s standard size is 15.75 x 13 inches, but you can cut it to any size you want. +YOU CAN TRUST ON HIGH QUALITY - My Aegean offers you a high quality grill mats. You can use it at temperatures up to 400 F. You can use it at 500 F temperature for short-term contact. If you have any problems, do not hesitate to let us know. We will definitely find a solution.",my aegean NATURAL,,us,382 +B07YDCYCGD,Kids Play Food Grill with Pretend Smoke Sound Light Kitchen Playset Pretend BBQ Accessories Fine Motor Skills Toy Cooking Birthday Gift Outdoor Toys for Toddlers Children Boys Girls Christmas,"

            ☞ The grill toy set really has the grill sound and gives off cold steam pretending the smoke.

            ☞ All the food accessories add to the fun that kids has with this grill playset.

            ☞ With this play grill, your kids will enjoy a bbq party with his little friends.

            ☞ It is really a good Christmas gift for kids who love playing cooking game. 

            ","🍗 Realistic Play Food Grill: This barbecue play set provides lights, sound and even smoke while kids cook. The smoke is made with a water vaporizer and is not hot at all, completely safe for kids. +🍢 Fine Motor Skill Toys: The grilling kitchen playset comes with several toy food. There is also a clamp for kids to hold the play food, developing kids motor skills during the play kitchen fun. +🌽 Easy for Storage: The toddler grill is easy to put together and take apart. It holds all the contents together in kid’s bbq itself, no need for an extra container. 3 AA Batteries needed which are not included. +🍴 Premium Quality Kids BBQ: This pretend play food sets are made of durable plastic material, without any sharp edge, no smells, can be wiped off if get dirty. +🍻 Pretend Play Kitchen Fun for Kids:With this grill playset, you kids will like daddy and mommy grill their own barbecue food on the side while you cook the real food.",AugToy,,us,383 +B095KPPWGG,"Lamesa Grill Mat Set of 7-100% Non-Stick BBQ Grill Mats Baking Mats, PFOA Free, Heavy Duty, Reusable and Easy to Clean, Works on Gas Charcoal and Electric BBQ (7 Pcs)","It’s 100% safe to use, FREE from any harmful chemicals that might seep into your food. The BBQ Grill Mats are the perfect grilling, Baking, Cooking accessory for everyone who loves fresh grilled flavor.","7 Pcs Solid Mat: Lamesa grill mat set contains 7 PCS 15.75 x 13 Inch Mats, very cost-effective.Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs. Ideal for campground or park grills. +100% Non-Stick Mats: 100% Non-Stick black grill mats means you could grill without grease and mats are reusable for years.The grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking like brand-new and no more clean-up of your dirty grill. +Resusable and Diswasher Safe: The mats can be cut to perfectly fit your pans. Both sides can be used over 100 times, for grilling, roasting, and even baking.Make grilling anything easy and ends messy grill clean-up entirely. Dishwashers are safe and easy to clean-up. +Food-grade Materials: The BBQ cooking mats are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! When the use time exceeds 30 minutes, the maximum temperature cannot exceed 500 F. while using for a short time, the maximum temperature cannot exceed 600 F. +If you are not happy with your new grill mats, please contact us for a refund or replacement.",Lamesa,,us,384 +B08D8YH6W6,"WADEO Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank","Y Splitter CGA Propane Tank Converter Adapter Hose, 5 Feet 2 Way Y Propane Splitter Hose Assembly Replacement for QCC1 20lbs Gas Tank","Y Splitter CGA Propane Tank Converter Adapter Hose both side is 5FT long and can be connected to two devices with 1lb cylinder ports. +2 Way Y Splitter CGA Propane Tank Converter Adapter Hose has two control needle valves,you can close one of the grill easily as well as changing the flame. +Our propane hose is 350PSI, High pressure resistance ensures your safety. +Easy to use, no additional tools are required, you only need to connect the QCC adapter to the propane tank and other two male adapter connect your 1 lb regulator on your grill. +Our products are made of high quality brass and rubber, high temperature resistance, high corrosion resistance, long service life, suitable for any equipment with one-pound interface, such as heaters,tabletop grill, portable ovens, grills, etc",WADEO,,us,385 +B00YDST5EW,"onlyfire 14451 Universal Electric Silver Push Button Igniter BBQ Replacement for Gas Grill by Char-Broil, Brinkmann, Grillmaster, Nexgrill, Brinkmann, Grillware, Jenn Air, and Others","The onlyfire 14451 igniter fits Models of following BBQ gas grills: 

            Uniflame Part Numbers: 55-07-448;

            Charbroil Part Numbers: P2503H, P02502024CK-Mart Models: 640-117694-117, 640-641215405, 640-784047-110, 640-82960811-6,640-82960828-6;

            Amana Part Numbers: FCTG3007029;

            Brinkmann Parts: 119-2200-0, 119-2700-0, 119-4040-0, 20810-2600-1

            Suitable Models of BBQ gas grills:
            Fits Various gas grill models of.BBQ Grillware, BBQ Pro, Grill Chef, Grill King ,GrillPro, Nexgrill ,Outdoor Gourmet ,Patio Range ,Surefire, Bakers & Chefs, Aussie, Tuscany,Coleman ,Uniflame ,Patriot, Wellington, ,Broil Mate ,Tuscany ,Turbo ,Augusta,Savannah Master Chef ,Centro ,Master Forge

            Onlyfire Branded Gas Grill Replacement Parts, Extend the life of your grill!

            Exact-fit parts !Cooks better! Durable construction and Lasts longer!

            A Direct Replacement Or a Perfect Backup for Your Existing Ignitors

            NOTE: The ""Fits"" BRAND and MODEL # Listed above are Reference ONLY!

            Recommend you measure the size of your original parts and compare with the replacements BEFORE you order!

            ","7/8"" diameter mounting hole. CSA Certified, Durable and Lasts Longer, Universal Spark generator BBQ Gas Grill Replacement 4 Outlet ""AA"" Battery Push Button Ignitor (Battery not include) +Fits for Master Chef Parts:85-3044-6 85-3045-4 B401S G43215 G43216 G45101 G45303 G45304 S482 T420 T420LP T620LP +Fits for Nexgrill Models:720-0061-LP 720-0549 720-0679 720-0679B 720-0679R 720-0718 720-0718A 720-0718C 720-0718N 720-0737 720-0825;Char-griller Models:2903 3000 3001 3008 3030 3072 4000 4001 4008 4208 5030 5050 5072 5252 5650 +Fits for Char Broil Models:415.16125 461230403 461260108 461261508 461271108 461461108 4632150 4632152 4632153 4632154 4632210 4632215 463221503 4632220 4632235 4632236 4632240 4632241 463230203 463230603 463230703 463231503 4632315031 463231603 463232103 463233503 463233603 +Suitable for the following models:119.16126010 119.16126011 119.16149210 119.16216010 119.162300 119.162310 119.16240 119.16301 119.16301800 119.16302 119.16302800 119.16311 119.16311800 119.16312 119.16312800 119.16433010 119.16434010 119.16658010 119.16658011 119.16670010 119.166750 119.176750 122.16129 122.16129800 122.16431010 122.16538900 122.16539900 141.15223 141.15225 141.152270 141.152271 141.15337 141.153371 141.153372",onlyfire,,us,386 +B08TBJCZCG,"Supsiah Charcoal Barbecue Grill Portable Business Vintage BBQ Grill Suitable for Outdoor Camping, Hiking, Picnic, Backpack, Patio, Backyard (Mat Black)",,"𝗩𝗶𝗻𝘁𝗮𝗴𝗲 𝗕𝘂𝘀𝗶𝗻𝗲𝘀𝘀 𝗦𝘂𝗶𝘁𝗰𝗮𝘀𝗲 𝗦𝘁𝘆𝗹𝗲: This portable BBQ grill use traditional vintage suitcase element, compact and lightweight for grilling on the go, also can buy it as a gift for birthday, wedding and travel, nice-looking and good practical decoration for our life. +𝗙𝗿𝗲𝗲 𝗔𝘀𝘀𝗲𝗺𝗯𝗹𝗲 𝗕𝗕𝗤 𝗚𝗿𝗶𝗹𝗹 𝗚𝗿𝗮𝘁𝗲: the charcoal grill BBQ grate fold open to two sides, anti-corrosion, anti-deformation, easy clean and anti-rust after long use. +𝗧𝘄𝗼 𝗖𝗼𝗺𝗽𝗿𝗲𝘀𝘀𝗶𝗯𝗹𝗲 𝗖𝗵𝗮𝗿𝗰𝗼𝗮𝗹 𝗕𝗼𝘅: Large capacity charcoal charcoal box, the first layer has unique air vent for better combustion. After BBQ, just wait the ash to cool down and and take out the charcoal box to pour the ash to safe place, very convenient. +𝗘𝘅𝗾𝘂𝗶𝘀𝗶𝘁𝗲 𝗖𝗿𝗮𝗳𝘁𝗺𝗮𝗻𝘀𝗵𝗶𝗽: Our charcoal grill has good craftmanship, all the edge are well polished to avoid to hurt hands or scratch clothes, also no paint fall off the case surface after heating, it poured our decades energy and spirits into the design and production. +𝗘𝗮𝘀𝘆 𝘁𝗼 𝗔𝗱𝗱 𝗖𝗵𝗮𝗿𝗰𝗼𝗮𝗹: Just use hook to pull the grill grate to the backside, you can add charcoal, it will not affect the process for the Barbecue and continuely you happy BBQ life. This Charcaol grill suit people for 2-5 person.",Supsiah,Mat Black,us,387 +B01DVJ66H2,"Cooking Gift Set Co | Wood Smoked Grill Kit - 8 Piece BBQ Set | Top Grilling Gifts for Dad, Grill Sets for Men, BBQ Gifts for Men","Get ready to receive all those compliments to the chef. If you fancy cooking over a flame, this easy-to-follow kit teaches you to finetune your smoking blend for flawless flavors in your meats & veggies.
            This grill kit includes the ultimate bbq smoker accessories:
            1. All-Natural Cherry Wood Chips
            2. All Natural Apple Wood Chips
            3. All-Natural Hickory Wood Chips
            4. Universal Grill Scraper / Bottle Opener
            5. Specialty Grilling Thermometer
            6. Stainless Steel Grill Smoker Box
            7. Hickory Smoked Salt
            8. Instructions, Recipe Cards, Care Instructions
            When you grill over a base of our quality wood chips, you're kindling a foundation of flavor. Since the smoke blend touches every surface of your meal, you can count on complex meat seasoning that clears plates and impresses at parties.
            Our wood chips for smoking and grilling are 100% natural and contain no additives, toxins, or animal-derived ingredients. Each box is premeasured to fill a smoker box and yield approximately 2 hours of smoke. Our smoking wood chips are proudly packed from tree to box in the USA. Compared to plastic bags from corporate brands, our cardboard boxes allow the wood to breathe, are resealable, and 100% recyclable.
            Looking for a gift for men who everything?
            This Wood Smoked BBQ kit makes the ultimate grill master gifts for men, best gifts for dad, and outdoor gifts for men. Skip the boring tie and transform his ordinary grill into a wood smoker. Give him an experience he'll love and his tastebuds will remember.","Designed by Grill Lovers You Can Trust -- We know exactly how frustrating it is to follow poor instructions and get bad results. That's why in 2016, we developed this Wood Smoked BBQ Kit to simplify the technique of smoking on the grill. We're devoted to helping you get great results with the right tools and thorough instructions. And if you're ever stumped- we're available to help. +100% All-Natural Smoking Wood Chips -- Freshly packed from tree to box in the USA, our smoking chips contain no toxins, pesticides, or artificial flavors. Don't settle for sawdust or thin shavings from the other guys - enjoy a longer burn time with larger grilling wood chips. Discover your favorite meat seasoning by sampling between Apple, Cherry, and Hickory Wood Chips. +Top-Notch BBQ Accessories for Grill -- As avid grillers ourselves, we only include the highest quality barbecue accessories that we love to use on our own grills. This grilling set includes a stainless steel grill cleaner, bottle opener, grilling thermometer, and grill smoker box to transform an ordinary grill into a meat smoker. They make the perfect dad grilling gifts or gifts for dads who have everything. +The Ultimate Gift Box for Men -- If he likes cooking over an open flame, this grill gift set makes excellent gifts for dad, boyfriend gifts, anniversary gifts for him, tailgating accessories, and gifts for husband. They're unique and cool gifts for men and with over 600+ rave reviews, you can trust that they make excellent gifts for dads who have everything. +Add 3 More Flavors for 50% Off -- Take this bbq grill set to the next level with three new flavors of wood chips for smoking. Experiment with Pecan, Oak, and Mesquite Wood Chips in our sampler pack add-on and unlock 50% off when you purchase with this wood-smoked grill kit set. Combine with a pair of steaks to create the ultimate grill gift baskets for men.",Cooking Gift Set,Kraft Brown,us,388 +B00008ZA09,Bernzomatic TS4000 Trigger Start Torch,,"TRIGGER START - Trigger start torch for ease of lighting, instant on/off trigger increases fuel savings. +DURABLE - Stainless steel burn tube, cast aluminum body, brass burn tip. +HIGH PERFORMANCE - Pressure regulation allows the flame to burn in any direction and ensures consistent performance. +SWIRL FLAME - This head produces a swirl flame and burns propane or mapp gas.",Bernzomatic,"Stainless Steel,Brass",us,389 +B08M9HL7XW,"Lovely Snail Charcoal Grill Portable BBQ Grill, Barbecue Camping Grill for Outdoor Cooking, Camping and Picnic",Features:
            Durable metal frame
            Thermometer on the lid
            Airflow control
            Coal grids for cooking chambers
            Attractive wood handles

            Grill material: metal
            Grill grid material: stainless steel
            Overall size: 16.5 x 11.8 x 14.6 inch
            Weight: 3.6 kg/7.9 lb
            Color: black/green
            Delivery contents: 1 x charcoal grill + 1 x instruction
            Please Note: Please assemble the grill by adults.

            ,"【Outdoor BBQ Grill】: Lovely Snail outdoor charcoal grill is easy to assemble and super perfect for 1-3 people BBQ party with a proper dimensions 16.5 x 11.8 x 14.6 inch. This camping grill offers you a multitude of options and new taste experiences. +【Versatile Charcoal Grill】: This charcoal grill with a vertical pipe smokestack features innovative cylindrical design creating a three-dimensional heating environment that is conducive to food braising, locking the juice of food even the freshness and tenderness. +【Healthy & Premium Quality】: The BBQ charcoal grill is made from steel with sturdiness and durability for years to come, while the grilling net is made of 304 stainless steel, which is non-sticky, high temperature resistant, and even heat conduction, making the grilled food more delicious and healthy. +【Precise Cooking】: The thermometer on the lid of the grill is designed to observe and regulate the temperature, making the baked ingredients more delicate and delicious. Two adjustable air vents on the side for precise temperature control while the vent of the chimney for better braising. +【Easy to Assemble & Use】: Our barbecue grill with wooden handle is portable and ideal for grilling, cooking and smoking whether fish, meat, vegetables or poultry. Grill with charcoal or slow cook with wood chips smoke. If you have any quality problem with items, please contact us.",Lovely Snail,Black,us,390 +B01M133XUS,"BBQ Coverpro Built-in Grill Cover up to 37""","

            BBQ Coverpro: BBQ Coverpro introduces its new BBQ Grill Cover.


            ※Vinyl cover for built-in 37-inch grill.
            ※Protects built-in grill from all weather conditions.
            ※High heat resistant cover, UV protection and resists cold cracking.
            ※Size: 37"" L x 27"" Depth x 24""H, Air Vent and Velcro tight down.
            ※Heavy Gauge 600 D polyester with PVC coated water repellent top.

            We guarantee satisfaction that if you're not happy, send it back new or used for a full refund within 90 days. We also offer the longest 18 month warranty.

            ","Vinyl cover for built-in 37-inch grill +Protects built-in grill from all weather conditions +High heat resistant cover, UV protection and resists cold cracking +Size: 37"" L x 27"" Depth x 24""H, Air Vent and Velcro tight down +Heavy Gauge 600 D polyester with PVC coated water repellent top",BBQ Coverpro,,us,391 +B07N12VXHK,"Simplistex Stainless Steel BBQ Grill Tool Set w/Tongs, Spatula, Fork and Brush - Accessories for Outdoor Barbecue Grills","BBQ grill sets should make your life easier, not harder. So, we have only included the essential tools needed for grilling on your next outdoor barbecue adventure! No more worrying about where those useless tiny accessory pieces got lost! The Simplistex 4 Piece professional grade extra large & heavy duty grilling utensil set is built to last with heavy duty stainless steel metal construction that offer rust resistance and durability. The spatula (aka burger flipper), tongs & fork all have convenient hang loops for easy storage. The 3 in 1 cleaning grill brush has a scraper, wire brush and nylon scrubber pad for all grilling surfaces. No messes on the table from setting your used utensils down again! Our tools are an extra long 18"" (except for the brush) so no more risking safety reaching over hot flames with those tiny cheap utensils others are selling! The nice large TPR handle on each tools offers comfort while grilling with no more hand cramps from tiny tool sets. All utensils in the kit are 100% dishwasher safe though we advice placing the cleaning brush in an upper rack! The simplistex grill kit makes the perfect gift for all grillers, chefs & cooks of all ages whether it might be your son, father, grandpa, husband or uncle. Cheap sets wear out fast and true grill masters always can use a nice new set that will last for years! Help them show off at the next outdoor family barbecue and take pride when they are smiling in comfort from the comfy silicone handles after the long barbeque! Our tools are compatible with Weber, Kitchen Aid & Charbroil grills! When looking to purchase your next set of grilling accessories look no further than Simplistex!","The Simplistex 4 Piece Barbecue Grill tool Set only includes the grilling tools you really need. No overpaying for useless barbecue tools. +Extra large BBQ utensils for easy handling! The grill spatula, fork & tongs in our grill set are 18"" long providing ample reach, comfort & durability. No tiny, flimsy BBQ tools here! +Our grilling set is made of stainless steel construction making it sturdy and rust resistant with easy cleaning! The grill brush has 3 tools in one. A scraper, wire scrubber and soft nylon scrubbing pad. Our BBQ utensil set is made to last for years to come. +Our BBQ tool set is the perfect gift for the grilling enthusiast in your life! Other bbq set might have lots of fancy looking fluff but will disappoint in quality. You will not find a better grill kit at this price point! +1 Year manufacturer warranty with friendly USA based support staff. Your not grilling alone with the Simplistex barbecue tools!",Simplistex,Stainless Steel,us,392 +B00823W9B0,"Mr. Heater, MH30T Double Tank Top Outdoor Propane Heater (Propane Cylinder not Included)",,"Portable heat +Efficient radiant heating +1 year warranty +Quiet operation +Sturdy construction",Mr. Heater,Multicolored,us,393 +B000646U3Q,Coleman 2000032171 Cooking Stoves Accessories & Parts,,"Replacement gas stove regulator for Coleman stoves with gas pressure issues +Maintains steady propane gas pressure in Coleman stoves +Fits most Coleman Propane Stoves, Grills/Stoves, and Fold N Go Stoves +Brings new life to beloved Coleman stoves that require maintenance +Check user manual of your Coleman stove to confirm compatibility",Coleman,Multi,us,394 +B07Y8GZK6V,Double Burner Gas Propane Forge Furnace Blacksmith Knife making Farriers,"

            Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

            Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600°F (1425°C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

            The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

            Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

            Specification:

            • Forge Type: Double Burner Forge
            • Burner: Double Burner
            • Burner Nozzle Material: SS-304
            • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
            • Forge Internal Dimension: 6.5"" (H) x 5.5"" (W) x 18""(L)
            • Forge Insulation: 1” thick Refractory Ceramic Fibre of 2600°F
            • Floor Insulation: 1” thick Rigid Block of Refractory Fire Brick

            Connection Kit:

            • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
            • 5 ft. (2 Meter) gas hose pipe
            • 2 hose clamp

            Product user manual & assembly instruction provided with packing.

            ","Double burner propane forge with 2600 degree capacity and Large heating zone lined by 1"" thick high density ceramic fiber blanket +Made by 16 Gauge (1.5 mm) steel Metal Sheets +Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL. +Reduce fuel consumption +Two Burners, Individually controlled with ball valves",Simond Store,,us,395 +B01GGDBLF2,"VORTEX (IN)DIRECT HEAT for Charcoal Grills, Medium Size - For Weber Kettle 22 26.75 WSM Smokey Mountain XL Kamado XL Big Green Egg","Medium sized VORTEX (IN)DIRECT HEAT. This product can be used in a charcoal grill as a heat baffle. Medium BBQ Vortex is compatible with and for weber kettle, WSM Weber Smokey Mountain, XL Big Green Egg, XL Kamado UDS drum smoker and other BBQ smokers. Vortex (in)direct heat image is a registered trademark. This is a USA made, high quality stainless & authentic BBQ Vortex. Your genuine BBQ Vortex brand deflector will come with a sticker logo that is USA registered trademark and a brochure. Note, brochure has been condensed into a fold out product label, to save paper usage. Product dimensions. 8 x 12 x 4-5/8"" For product care simply heat to sanitize. This product is covered by a 1 year full replacement warranty against failure & workmanship. Made in USA","🔥 【MEDIUM SIZE】 Fits & Compatible with Weber Kettle 22.5 or 26.5, Weber Smokey Mountain, XL BGE & Kamado, Weber Summit, UDS and many more! +🔥 【VERSITILE】 Various cooking methods. In direct, Direct, Indirect-Direct & Infrared. +🔥 【EASY TO USE】 Just pic your desired method and add lit coals! Product Dimensions 8 x 12 x 4-5/8” tall +🔥 【AWARD WINNING】 Makes awesome crispy chicken wings and seared steak! +🔥 【GENUINE】 Vortex (in)direct heat brand. MADE IN USA. Stainless construction. Includes Vortex (in)direct heat product label & brochure.",VORTEX (IN)DIRECT HEAT,stainless,us,396 +B07NVMY43D,BLUEFIRE Solid Brass Jumbo Pencil Flame Gas Welding Torch Head Nozzle Upgraded Full Metal Version Fuel by MAPP MAP Pro Propane CGA600 Cylinder Bottle (Torch Only),"The MT-200 Brass Pencil Flame Torch is one of the most popular and versatile product in the portable gas industry, our unique product stands out from all others by its top quality and solid materials. It is professionally designed with optimized size and multi-function features for any home and commercial use in all circumstances, no matter big or small jobs. Flexible with popular fuel gas on market, such as MAPP, MAP-pro and Propane gas. Versatile with all working conditions, even including the hard-reaching shallow spaces such as under sinks, under roof, under vehicle and etc. Full brass constructed body and threading parts assure durability and reliability. The enlarged combustion tip is designed for strong pencil flame to provide both working precision and optimized heat output, meets the most common needs for both professionals and DIY fans. With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, melting, heating, and many other home and commercial purposes. Perfect tool for plumbing, air-conditioning, automobile repair and body works, Jewelry and beads making, DIY tasks, crafts and hobbies, cooking and grill, camping and outdoor activities, and etc.","Upgraded Full Metal Cover Version, change old design's plastic knob to solid brass constructed knob. +Our torch are made fully by Brass, not those cheaper zinc mix, Better Performance, Thicker and Heavier for durability. +Strong pencil flame to provide both working precision and optimized heat output, Max working temperature up to 1350℃, meets the most common needs for both professionals and DIY fans. +Smart sized, Easy to be used in any spaces, Manual ignition, torch run off MAPP, MAP Pro and Propane +With recommended BLUEFIRE MAPP or other quality welding gas, this torch can easily handle soft soldering tasks, brazing copper tubing, thawing pipes, remove paint and tiles, wood working, melting, heating, and many other home and commercial purposes.",MR. TORCH,Gold,us,397 +B08124CP1Z,"Mrinb Mini Gas Heater for Camping, Outdoor Heating Camping Stove, Propane Butane Tent Heater with Stand, for Fishing Hunting",,,Mrinb-Sports,,us,398 +B07P8BN5X1,"Cal Flame e6004-Z Metador e6004 Outdoor BBQ Kitchen Island, Earth Tone",,"Commercial 16 gauge galvanized Steel stud upright frame with1/4 in. Hardback ceramic tile backer board +Liquid propane ready, Natural gas conversion compatible by certified technician. +Seamless design With durable stainless Steel, full width Stainless Steel drip tray on rollers and built-in temperature gauge +Patented cast stainless steel knobs, with independent burner ignition system +Heavy duty porcelain coated cast iron burners and removable heavy-duty grates with v-grate cooking design",Cal Flame,Earth Tone,us,399 +B00GJEPTJS,"Char-Griller E16620 Akorn Kamado Charcoal Grill, Graphite",,"KAMADO CHARCOAL GRILL - Kamado style BBQ Grill & Smoker perfect for both high heat grilling and low and slow cooking +LARGE COOKING AREA - 20 inch Cooking Diameter with 447 square inch total Cooking Area can cook up to 27 burgers at once +BEST IN CLASS FEATURES - Triple-Walled Steel Insulated Design, Cast Iron Grates, Locking Lid, 8"" Locking Caster Wheels, Removable Warming Rack, Bottom Storage Shelf, and Foldable Side Shelf Workstations with BBQ Tool Storage Hooks +EASY TO USE & CLEAN - Control the heat levels with ease using the indexed adjustable dual dampers and thermometer, and quickly clean up after grilling using the removable Easy Dump Ash Pan +DIMENSIONS - 31”L x 45”W x 47”H, 97 lbs (pairs with the Char-Griller 6755 AKORN Grill Cover and 6201 AKORN Smokin' Stone, both sold separately)",Char-Griller,Graphite,us,400 +B08HPTJG1W,"Safe 'n Easy Super Strength Barbecue Grill Cleaner & Degreaser. Heavy Duty, Non-Toxic, Safe, No Nasty Fumes, No Scrubbing, Spray On, Rinse Off (22oz, 1 pack)","Safe ‘n Easy Super Strength Barbecue Cleaner is a professional, highly effective emulsifier engineered to penetrate deep into the substrate and dissolve the toughest grease, burned-on grime and stubborn cooking remains while being safe around food. Love BBQ grilling? Have the cleanest grill quickly and easily. Safe ‘n Easy Super Strength Barbecue Grill Cleaner & Degreaser is non-flammable, water-based, non-corrosive, low odor, non-toxic, zero VOC , fume free and user friendly. Most importantly, NO SCRUBBING! Spray on, Let Set, Rinse Off, So Easy! Clean ovens, broilers, drip pans, hoods, kitchen stoves, cooktops, burners and barbecue grills in a flash. Safe ‘n Easy Professional Strength Barbecue Grill & Oven Cleaner Spray is trusted by restaurants, hotels, chefs and BBQ grillers. Available in 22oz spray, as well as 1 gallon cost savings refills. Since 1981 Dumond has developed and manufactured best in class cleaners, paint removers, encapsulates, graffiti removers, and innovative DIY and professional products. Satisfaction always guaranteed.","Professional Formula – Removes the toughest baked-on grease, grime, stubborn cooking remains from Barbecue Grills, Grates, Drip Pans, Hoods, Kitchen Ovens, Stoves, Boilers, Burners, and Cooktops while being safe around food. +Safe and Easy to Use. Spray On, Let Set. Rinse Off – Penetrates the surface to pull out oils, grime and dirt. No harmful chemicals. No bleach or acids. No lingering smells or odors. User friendly. +Powerful, Deep Penetrating Oil, Grease Cleaner & Stain Lifting – Fume free, water-based formula with zero VOC emissions makes it safe to use even inside homes leaving no lingering smells. Have the cleanest grill quickly and easily. +Made In The USA – Advanced non-toxic super strength barbecue cleaning formula works to effectively emulsify years of grease from metal surfaces. Trusted by Restaurants, Hotels, Chefs and BBQ Home Grillers. +Satisfaction Guaranteed – Use as a barbecue cleaner, an oven cleaner, a cooktop cleaner and as an all-purpose oil grease remover. If for any reason you’re not completely satisfied just contact us for a full refund.",Safe 'n Easy,,us,401 +B07T6SH2Q3,"RV Propane Tank Cover, Camper Propane Tank Cover, Heavy Duty Waterproof Anti UV Double 20lb Propane Tank Cover for Camper RV Trailer Travel Propane Tanks, Tank Cover for LP Tank(for Double 20 LB)",,"FITS DOUBLE 20-POUND / 5 GALLON TANKS -- 27(L) x 12(W) x 17(H)inch (68.6cm x 30.5cm x 43cm). Fits 2 side-by-side 20-pound (9kg) / 5-gallon (18.9 L) double cylinder canister RV. (Please measure the size of the propane gas bottles before buying).Suitable for RV,camper,motorhome,and travel trailer. +Heavy Duty Camper Propane Tank Cover Materials: Constructed with High-density and UV resistant weather-resistant polyester fabric, It nicely protects your double propane tanks from UV, dust, raining, debris, snow and other tough weather conditions. +Custom Fit Elatstic Band & Dual Top Zippers Design : Bottom Elastic band easily keeps the propane gas tank cover secure even on the windiest or rainiest days; at the same time, the dual zippers on front top of RV propane tank cover allows you to attach or replace your tank tubes easily, and also provides a fast access to the connections and valves without removing the entire cover. +Convenient Installation: Simply fit over your tank with bag opening facing down; neat tailored elastic bottom holds the cover in place to protect against elements. the hose can exit through the bottom of the cover, provides the exceptional protection for dual 20 lbs/30lbs/40lbs tanks that are on your RV/trailer or the typical home gas grill tank. +Guarantee & Fast Delivery : We are confident behind our RV trailer dual propane tanks cover quality, if you are not satisfied with our propane tank cover at any time, pls feel free to contact us, we have 12 month replacement guarantee +24h friendly customer service! By Amazon shipment, you will receive your rv propane tank cover within 1-3 days, no need worry about any delays.",TUYU,Gray,us,402 +B07HJY1Z4B,Put My Meat In Your Mouth Funny Grilling BBQ Barbecue T-Shirt,,"Do you love some good meat? This hilarious Barbecue design is perfect for the backyard griller or pit master. Whether you love your Pork, Beef or Chicken Grilled, Smoked, Pulled, or Chopped +Our sarcastic BBQ design make great gift for Birthday or Christmas. Features the phrase Once You Put My Meat In Your Mouth You're Going To Want More. Great for the restaurant owner of grill master of the family. +Lightweight, Classic fit, Double-needle sleeve and bottom hem",Backyard BBQ Unlimited,Black,us,403 +B08MQRP2DT,"Western Wood Smoking Chip Variety Pack of 6, 180 cu in per Bag","Western Premium BBQ Products, Inc. has been manufacturing cooking wood products for more than 25 years. We take great pride in the consistency of sizing and drying process we use in the production of our wood products. The close monitoring of the consistency of the moisture content is what sets us apart from most cooking wood producers. Our products are dried in approximate batches of 10,000 pounds, and each batch is tested for moisture content and recorded for guaranteed consistency.","Variety 6 Pack of Smoking Chips +Try Western Premium BBQ Products Post Oak BBQ Smoking Chips with these American favorites: Hamburgers, Whole Chicken, BBQ Smoked Wings, or Baby Back or Spare Ribs. +Use with gas grills, electric smokers, griddles, kettle grills and ceramic grills",Western Wood,,us,404 +B08C9SNF7H,"Pinshion Barbecue Charcoal Grill Portable BBQ, Foldable Premium BBQ Grill Tabletop Outdoor Smoker Folding Charcoal Grill for Outdoor Campers Barbecue Lovers Travel Park Beach Wild","

            Barbecue is no longer so troublesome and limited by venue and equipment.This portable BBQ grill is small and foldable, easy to carry and storage, simply unfold, you can enjoy your tasty food anywhere and anytime!

            Specification:

            Components: furnace body + bracket + carbon plate + grilled net + carbon net

            Baking tray size: 17 x 11.5 inch

            After installation of a single product size: 17 x 11.5 x 9.3 inch

            Colour: Black

            Material: iron + chrome grilled net

            Package included:

            1 x Folding BBQ Grill

            1 x Grilled net

            1 x Charcoal net

            Only the above package content, other products are not included.

            ","【Newest Design】Smooth ventilation design on both sides of this BBQ charcoal grill make the air flow well, thus charcoal burn efficiently and the food cooks faster. Enjoy good taste of cooking with portable lightweight BBQ charcoal grill. +【Easy to use & Fold】There are bracelets on both sides of the grill for easy carrying the grill doesn't need to be installed. When you're barbecuing outside, you just need to put down the folding legs to start barbecuing. And fold it is easy too, just turn the grill upside down and fold the legs is ok. +【Outdoor BBQ Partner】Portable BBQ Charcoal grill is wonder gift for outdoor travel. When camping or traveling outdoors want to eat delicious barbecue, you can barbecue in the yard or in the park with your family and friends. +【Safety & Healthy】High temperature-proof, excellent wind-resistance, can provide high-efficiency heat collection. Airflow holes and the mortar board, separates the carbon and dust (No ash will be stick to the food). +【Suitable for Many Occasions】Portable and lightweight folding leg design made for easy carry and storage.Perfect for camping, backpacking, picnics, tailgate parties, camping, trailers, parks, and grilling in small spaces.",Pinshion,,us,405 +B07477NMF4,"ThermoPro TP-17 Dual Probe Digital Cooking Meat Thermometer Large LCD Backlight Food Grill Thermometer with Timer Mode for Smoker Kitchen Oven BBQ, Silver",,"BBQ HI/LOW temp range alarm: Set your desired food temp and HI/LOW temp range for your grill or smoker to know when to add more fuel smoker thermometer will flash and beep to remind you if the temperature ever goes out your set range; HI/LOW temp range alarm is specifically designed for usage with smokers, grills and BBQs +Dual probe grill thermometer and USDA presets: Monitor temperatures of two pieces of meat or grill temperature without swapping probes or using different devices includes USDA preset temperatures and can also adjust set temperature manually +Large, clear backlit lcd display: BBQ thermometer displays both food /oven/grill/smoker temps and timer for the most intuitive experience when cooking at night outdoors; Use the backlight to adjust settings or view temperatures in any light condition; Flip-out counter top stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill environments +Highly accurate, fast reading probes: Oven thermometer features step-down probe design retrieves temperature precisely to within ±1.8°f (±1°c ) and quickly to alert you of the slightest temp change in seconds; combined with 40inches Stainless steel mesh cables rated for 716°f and a wide temperature of 14˚f to 572˚f (-10˚c to 300˚c), cook anything in any grill setup +Easy to use and place anywhere: With front facing buttons, flip-out countertop stand and magnetic back allow the meat thermometer to be placed anywhere within the kitchen or grill",ThermoPro,Silver grill thermometer,us,406 +B07QPQZ1B8,"grilljoy 6PCS Heavy Duty BBQ Grill Tools Set with Extra Thick Stainless Steel Spatula, Fork, Tongs & Cleaning Brush - Complete Barbecue Accessories Kit with Portable Bag - Perfect Grill Gifts for Men","
            Why is this the best BBQ Grilling Tools Set for you?
            Quality, Durability, Design, Utility. You'll get 6 complete BBQ Accessories Kit.
            Why choose us?
            Grill better, faster, and with less effort
            Design
            Each BBQ tool has been specifically designed for ease of use and comfort at the grill. Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm. With these at you disposal you'll be flipping, skewering and shuffling your meat around like grill like a true Grilling Ninja!
            Premium Quality
            Our BBQ fork and spatula are each made of a single piece of thick stainless steel. The turner is extra large to allow you to flip huge steaks and burgers. The leading edge tapers thin for easy sliding under food and has a super sharp cutting edge on the side. The BBQ tongs can be locked closed and have a scalloped ends to avoid tearing delicate food. Finally, each barbecue tool comes with a huge hanging loop for easy storage.
            Gift Ideas
            It is the perfect bbq gift for anyone who loves to grill outdoors or for occasions like Fathers Day, birthdays, wedding showers and more!
            Note:
            1.Please keep sharp tools away from children to avoid hurting.
            2.We recommend cleaning all tools before and after use and dry them for better maintenance.
            3.Please store the tools set in a cool and dry place for save.","【Complete Barbecue Accessories】BBQ spatula, fork, tongs, grill cleaning brush, extra brush head and storage bag. Practical tools for barbecue, these tools are easy to clean, dishwasher safe. +【Premium Quality】Our bbq tools are made of high-quality stainless steel. As a set of heavy duty barbecue tools, it is extremely thick and difficult to bend by hand, don't worry about rusting or cracking. You can't find a better barbecue tool set than this. +【Elegant Design】As soon you remove these deluxe tools from the portable bag, you'll immediately notice the perfect heft and comfortable rubber grips. Ergonomic grips and exquisite balance will make them feel like an extension of your arm. +【Convenient Storage】Compared to the single-use packaging box, the carrying bag is more practical. You can easily protect your grilling tools in the portable storage bag and take them with you when you travel or camping.It is a perfect present for Father’s Day, birthdays, Christmas, wedding and housewarming. +【Satisfactory After-sales Service】 We are very confident that you will love our grill accessories. If you are not satisfied with the product, please let us know and we will give you a satisfactory result.",grilljoy,6pcs bbq tool set with bag,us,407 +B071D1SYLY,SENMOD Fairview RV Camper LP Propane 2 Stage Automatic Regulator with 2 x 15 QCC Acme Pigtails,"

            The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks and the regulator automatically switches over to the second tank once the first one runs out (and vice versa). The indicator changes color to let you know when a tank has been depleted and needs to be refilled. The inlet is a 1/4"" SAE inverted flare and the outlet is a 3/8"" NPT female pipe thread.

            • 262,500 BTU's Per Hour Capacity. 
            • Set at standard propane low pressure - 11"" Water Column.
            • Regulator body is 6 1/4"" Overall Height.
            • Will replace any existing automatic changeover regulator on your current RV, Travel Trailer, Pop Up Camper or 5th Wheel.
            • Adjustable gas pressure. Also has a pressure tap. 
            • The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out.
            • The indicator changes color to let you know when a tank has been depleted and needs to be refilled.
            • Flipping the supply lever to face the other tank will reset the indicator and allow you to remove the empty tank to take it to be refilled.
            • Durable and easy to use.
            • Dual stage design maintains constant gas pressure under changing demand and conditions
            • 2 x 15"" Acme x 1/4"" Inverted flare pigtails are included. 
            ","262,500 BTU's Per Hour Capacity. +Set at standard propane low pressure - 11"" Water Column. +If you do not know what you are purchasing or are unfamiliar with installation please do not purchase this product. +The Auto-Changeover LP Regulator allows you to hook up 2 Propane tanks - the regulator will automatically switch over to the second tank once the first one runs out. +Mounting screws not included.",SENMOD,Gray,us,408 +B01LYJBJG2,Deluxe Mini Tabletop PRO Kiln Propane Gas Furnace Kit Melts Gold Silver Copper in 10 Minutes with Combo Mold Precious Metal Casting Set,"This set includes the portable Tabletop Pro Kiln Propane Melting Furnace, designed to melt around 2 to 5 ounces of gold. It can also be used with silver, copper, aluminum, brass, and other precious metals. Requires 2 propane gas bottles (not included).

            Designed with a lid handle for easy lid removal.

            Made in the USA by PMC Supplies

            Dimensions: Outer: 4"" (101 mm) Diameter x 4"" (101 mm) Height, Inner: 1.7"" Diameter x 1.5"" Depth, and Wall Thickness: 1.15"" (30 mm). Please note that this mini kiln is not recommended for smelting ore concentrates, due to the limited capacity for both cons and refining flux 1 to 3 ratios.

            Also Includes:

            (1) Package of Anhydrous Borax: A multi-purpose, high-grade and course casting flux often used in melting and refining metals; it aids in lowering melting points of different minerals so your material melts quicker and is easier to pour. Helps draw out impurities or ""slag"" for cleaner and more pure material, acts as cleaning agent, minimizes gold loss in your slag, and helps keep your material liquefied longer. Also great for seasoning graphite crucibles. Draws out gasses and oxides out of molten metal, such as gold, silver, copper, iron, sterling silver, tin, nickel, and their alloys. Made in the USA.

            (1) Pair of 12-1/2"" Beaker Flask Crucible Tongs: Specifically designed to securely hold your crucibles with one hand; easily grasps your crucible with its grooved end.

            (2) Graphite Crucibles: 1.75"" Height x 1.5"" in Diameter; with a capacity of 5 ounces of gold.

            (1) 1/4, 1/2, and 1 Troy Ounce Gold Multi-Cavity Combo High-Density Graphite Ingot Mold: Designed with a smooth cavity finish, with ten degree tapered sides for easy ingot removal. Typically lasts for 30+ pours.

            Please contact us with any questions. Thanks for looking!","Made in the USA By PMC Supplies +Requires 2 standard propane bottles and propane tips (not included) +Includes kiln, tongs, anhydrous borax, graphite mold, and 2 graphite crucible cups +Melts 2 to 5 ounces of gold +Can also be used with silver, copper, brass, aluminum, and other precious metals",PMC Supplies LLC,Silver,us,409 +B07F1QRTCK,"SHINESTAR 12-Inch RV Propane Hose, Stainless Braided Propane Tank Hose for RV Propane Regulator, 1/4-Inch Male NPT x Acme Nut, 2-Pack","Description 1.Rated for 200,000 BTUs per hour 2.This hose lets you connect a 20-lb or 30-lb refillable propane tank to your camper's propane regulator 3.Perfects for BBQ, RV and camping needs or having an outdoor cookout 4.stainless steel braided to holds up much better and longer when exposed to the sun and weather Feature 12inch hoses Include: 2 pcs hoses x 1 thread seal tape Acme Nut x 1/4"" NPT Male Flare Heavy-duty brass connectors Stainless steel braided CSA Certified Note: Please check your connector before you order. -Gas line tape, provides a highly resistant seal on pipe threads for all types of service","【Standard Connector】 5/16"" diameter LP hose, ACME nut x 1/4"" male NPT +【Application】 Connect your camper's 1/4"" NPT inlet regulator to a 20lb-40lb LP propane tank (NOT 1/4"" inverted flare) +【More Durable】 Stainless braided hose effectively reduce damage caused by friction and animals +【CSA Certified】 Excess flow safety and thermal shutoff +【Package Includes】 2 × RV pigtail hose, 1 year worry-free customer service",SHINESTAR,,us,410 +B07QYCHS2P,"Cook N Home Style 32cm Stovetop grill Korean BBQ, Black",,"Made of fine grade aluminum for even heat distribution, preventing hot spots, and lightweight +Nonstick coating makes food release/cleaning easy and allows for healthy cooking, PFOA free +Die-cast aluminum is break resistant and does not warp; +Traditional Korean BBQ style, product made in Korea +Works on gas, electric, glass, ceramic, halogen, etc. ; dishwasher safe, hand wash recommended",Cook N Home,Black,us,411 +B0039Z5NNM,"Music City Metals 02342 Plastic Control Knob Replacement for Select Gas Grill Models by Grill Chef, Kenmore and Others",,"Listing is for 1 control knob. +2.3125 inch dia. control knob +Fits Backyard Grill GBC1462W-C; Bakers & Chefs GR2039201-BC-00, ST1017-012939; BBQ Grillware GSC2418, GSC2418N +Fits BBQ Grillware GSF2616; Better Homes & Gardens BH14-101-099-01",Music City Metals,,us,412 +B07KX3FW9C,Blacksmiths Single Burner Propane Forge with Stand for Knifemaking Farriers,"

            Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agriculture use small tools. This Single Burner Rectangle Shape Propane Forge is made from Structural Square Steel Pipe and its heating zone is fully insulated with Refractory Ceramic Fibre, which can resist temperature up to 2600°F. A rigid block of refractory Fire Brick is placed at the bottom of the forge to resist high velocity firing. Pack comes with a forging metal holding stand which supports the tong while placing and removing the charge in and out of the forge.

            The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0.21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

            Include Accessories with Identification

            • FORGE: Forge Body
            • PART-A: Single Burner
            • PART-B: Burner Air Chock Valve (1 Pcs)
            • PART-C: Gas Inlet pipe with valve
            • PART-D: 6.5' (2M) Gas Hose with clamps
            • PART-E: Refractory Fire Brick
            • PART-F: Gas Pressure Regulator with Manometer(0-21 PSI)
            • PART-G: Teflon Tape
            • PART-H: Metal Holding Stand

            Specification

            • Material: 1/8"" Thick Structural Square Steel Pipe
            • Burner Nozzle Material : SS-304
            • Inside Floor : 1"" Thick Refractory Brick
            • Inside Insulation Material : 1"" Thick Refractory Ceramic Fiber 2600°F 8 pcf
            • Forge Internal Dimension : 2.75"" x 4"" x 10""
            • Burner: Single Burner

            Note: User Manual, Assembly and Safety instructions are Included in the packing.

            ","Single Burner Propane Forge Furnace with 2600 degree capacity +lined by 1"" thick high density ceramic fiber blanket +Comparatively High Tensile Strength & Can withstand Direct Flame +Comes with stand +Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.",Simond Store,,us,413 +B073XD9W9D,"BBQ Grill Mesh Mat Set of 3 - Non Stick Barbecue Grill Sheet Liners Teflon Grilling Mats Nonstick Fish Vegetable Smoking Accessories - Works on Smoker,Pellet,Gas,Charcoal Grill,15.75x13inches","

            Color:Black + Copper

            Each set has 3 of the highest quality grill mesh mats that makes grilling anything easy! 

            Cook Time non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on. 

            Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses. 

            With one of these mats down, you can prepare a full breakfast in a matter of minutes. 

            They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off. 

            For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours. 

            These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying. 

            These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling... 

            -Veggies

            -Shrimp 

            -Fish

            -Bacon 

            -Pizza 

            -Pancakes 

            BBQ Grill Mats Size: 15.75"" x 13""

            Note: can not directly contact the fire source

            ","100% NON-STICK - You can grill without grease and mats are reusable for years! Non-stick BBQ grill mat prevent even the smallest morsels from falling through the grates. Keep your grill looking brand-new and no more clean-up of your dirty grill. +500 DEGREE Peak Temperature - These barbecue cooking mats which are made of heat-resistant technologically advanced materials that look similar to a plastic mat, however, it will not burn. These barbecue smoker mats are heat resistant up to 500 degrees Fahrenheit! +APPROVED - Our BBQ mats for smokers are made from 100% PFOA-Free materials and premium PTFE-Fiberglass coating, no PFOA, silicone or other dangerous chemicals! Certified as safe by the approved and guaranteed by a lifetime warranty. +DISWASHER-SAFE - Makes grilling anything easy and ends messy grill clean-up entirely! These teflon BBQ grill mats are safe for use on the top shelf of your dishwasher, clean-up is a breeze! +The Perfect Grill Mate - Perfect for any grill, including as Gas, Charcoal, Propane, Electric BBQ Grills Fire Pits, Oven or Smoker. They can also be cut to fit your particular grill or oven perfectly. Grill meat, vegetables, fish, shrimp, pizza, even pancakes, bacon and eggs!! Heavy duty,durable,reuseable and long guarantee!!",Cook Time,Black,us,414 +B01FUSLMDK,BBQ Grill Knob for Turbo/Turbo Elite Pre-2008 Models BCP361366,"BBQ Grill replacement part classic knob for fits most Turbo and Turbo Elite grills (not Grand Turbo grills) purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. this knob is made of plastic This item is a single knob High Grade material will outlast most of all the other manufactures' knobs Make sure you measure the size of your original parts and compare with the replacements to verify you are ordering correctly. Finish Plastic will melt if over heated This replacement knob fits most Turbo and Turbo Elite grills purchased before 2008 with long-shaft valves. If your grill valve shaft does not extend out beyond the front face of the grill, this knob will NOT fit your grill. The knob shaft is short so the valve stem must extend out for this knob to connect. This is an after market part DURING INSTALL: DO NOT PUSH KNOB COMPLETELY TO FRONT FACE OF GRILL ** Your knob may need to be pushed in to turn on gas, and if knob is already completely pushed in to front face of grill, it will not allow for the knob to be pushed in to turn. If its pushed in too far, pull out with a cloth and pair of pliers.",,BBQ GALORE TURBO,,us,415 +B001DC7FPM,"Stansport Propane Cylinder Base Replacement for Camping and Backpacking, Black",,"Compatible with most standard 16.4 oz propane canisters +Wide Dura-Base provides a stable platform for single burner stoves, lanterns, heaters and other propane appliances +Swivel extension feet for added stability - Feet fold away completely for storage +Made of durable high impact plastic for reliability and lightness +Replacement base for camping or hunting stoves and propane accessories",Stansport,Black,us,416 +B07FWVSNR9,"GRILLMATIC Grill Mats Set of 2, Heavy Duty, Thick, Barbecue Accessory for Ovens, Electric or Gas Grills, BBQ Grill Baking Mats Teflon, Nonstick, Reusable, and Easy Clean up","MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift.
            IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary.
            GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food.
            NON-STICK - Teflon keeps grilled or baked food from sticking to the mat.
            REUSABLE - Easy to clean. Dishwasher safe.
            HASSLE FREE RETURNS - If you are unsatisfied in anyway, we are happy to refund your purchase.","MULTI USE - Outdoor BBQ or Kitchen grill mat. Works with any type of grill; gas or charcoal. Keeps fish or vegetables from falling in between the grill grates. Can be cut to any shape or size. Perfect gift. +IMMACULATE - Grill anywhere without worrying about dirty food on a germy grill. Can use grill mats with public grills and still remain sanitary. +GRILL MARKS - You can feel the thickness and quality of this mat at 0.40mm and still have those classic grill marks on your food. +NON-STICK - Teflon keeps grilled or baked food from sticking to the mat. +REUSABLE - Easy to clean. Dishwasher safe. Cuts down on unnecessary waste.",GRILLMATIC,,us,417 +B01IHHLB3W,ThermoPro TP03B Termómetro Digital Cocina de Lectura instantánea Termometro Barbacoa para Carne Líquidos Alimentos Leche Aceite,,"【Rápido y Preciso】 Con una sonda de acero inoxidable apto para uso alimentario de aproximadamente 10 cm y una punta extra fina, el termómetro de cocción ofrece resultados de medición exactos en 3-5 segundos. Temperatura del rango de medición: -50 ° C ~ 300 ° C +【Muy Fácil de Usar】 Con el práctico mecanismo de plegado, es un juego de niños desplegar la sonda y pegarla. El termómetro para carnes proporciona los resultados exactos de la medición en muy poco tiempo +【Pantalla Retroiluminada】 El termómetro de cocción tiene una pantalla LCD con retroiluminación, con la que el número es fácil de leer en el sol y en la oscuridad. Es perfecto para uso doméstico y profesional, ya sea que esté cocinando en casa para su familia, entreteniendo a amigos o asando a la parrilla +【Fijación Colgante o Magnética】 El imán en la parte posterior permite que el termómetro grill se fije fácilmente a la estufa o grill, o se cuelgue con el gancho, por lo que su posicionamiento es absolutamente flexible +【Apagado Automático】 Este termómetro de grill se apaga automáticamente si no se pulsa ningún botón durante 10 minutos. Fuente de alimentación con batería AAA (incluida en la entrega). Escala de temperatura conmutable entre Celsius y Fahrenheit",ThermoPro,,es,418 +B01IHHLB3W,ThermoPro TP03 Digital Instant Read Meat Thermometer Kitchen Cooking Food Candy Thermometer with Backlight and Magnet for Oil Deep Fry BBQ Grill Smoker Thermometer,,"Super-fast: Instant reading thermometer with backlight features 3.9 inches food grade stainless steel probe gets temp readout within 3-5 seconds with high precision sensor +Accurate readout: Cooking thermometer with temp range of -58 ~ 572 degree Fahrenheit (-50 ~ 300 degree Celsius); accurate to ±0.9 degree Fahrenheit; Perfect for indoor outdoor cooking, grilling, BBQ and so on +Easy to use: Kitchen thermometer with foldable probe design folds away easily and locks into base for portability; Magnetic back and hook allows for convenient storage +Smart design: Digital meat thermometer will auto shut off if readout stays on for 10 minutes; Powered by AAA battery; batteries included +Backlight display: Grilling thermometer features backlight LCD display to let you see clearly while cooking in the evening, indoors or outdoors",ThermoPro,Orange red,us,418 +B07X8ZN8MS,"Anpro Grilling Accessories Grill Kit- Grill Set, Grilling Utensil Set, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts for Father's Day, Smoker, Camping, Kitchen,21 PCS-Standard","Grill Kit, Grill Set, Grilling Utensil Set, Grilling Accessories, BBQ Accessories, BBQ Kit, BBQ Grill Tools, Grilling Gifts For Men, Smoker, Camping, Kitchen, Stainless Steel, 21 PCS-Standard","DURABLE AND ECEPTIONAL QUALITY: Anpro grill accessories are made from extra thick-solid stainless steel, 2X thicker than others, so you can enjoy your grilling, camping or cooking without worry about your tools bending, breaking or rusting again. +PRACTICAL 21 PCS GRILL KIT: The most practical equipment you need are included in our grilling accessories. Spatula, fork, tongs, knife, basting brush, grill brush, 6 corn holders, 8 skewers. With a compact storage bag which keep your tools neatly organized and better protection. +ELEGANT DESIGN FOR GRILLING: You'll be amazed how elegant each barbecue tool feels in your hand when you pull them from the case. Perfect heft, long enough and ergonomic grill handles, easily skewer, grab a whole chickens, flip briskets, Enjoy the BBQ time with your family and friend. +PROFESSIONAL AND MULTIPURPOSE: These barbecue accessories perfect for all grills with charcoal, electric, rotisserie and so on, to ensure that your meal is juicy, tender and yummy. Easily to chuck each grilling accessories in the dishwasher when you are done. It is a best father’s day grilling gifts for men, excellent gift for any camping lovers. +HASSLE-FREE CUSTOMER SERVICE: Anpro barbecue accessories. We aim to not only offer every premium product, but also every satisfying purchase.",Anpro,,us,419 +B000HCR89W,Classic Accessories Veranda Water-Resistant 64 Inch BBQ Grill Cover,,"THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look +PREMIUM GRILL COVERS: Fits barbecue grills 64""L x 30""D x 48""H +WEBER GRILL COVER: Fits Weber Genesis & Genesis II gas grill models E-310, E-330, E-410, EP-310, EP-330, S-310 and S-330, along with many other popular brands (Brinkmann, CharBroil, Jenn Air, etc) +BBQ COVERS with WARRANTY: Three-year limited warranty +HEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt",Classic Accessories,Pebble,us,420 +B07L9S7C1R,Portable Handheld Electric BBQ Cooking Fan Air Blower Fire Bellows Tool for Outdoor Camping Cook Picnic Barbecue,Specifications:
            Condition: 100% Brand New
            Material: Plastic + Stainless Steel
            Main Color: Black
            Power Supply: 4 * AA Batteries (not included)
            Total Length: Approx. 26.5cm/10.43in
            Wind Tube Length: 5.9cm/2.32in
            Weight: Approx. 161g

            Package Included:
            1 * Handheld Electric BBQ Fan

            ,"【Electrical Power】 The brand new and high quality small electricity BBQ fan powered by AA battery helps to start a fire quicker and easier, which provides reliable performance.battery powered bellows +【Quick Heat】 The blower quickly heats up BBQ fires, coals and wood with controlling dust and sparks.bbq fan and chimney +【Safety Use】 The fan appropriates wind force to ignite the BBQ charcoal quickly but without blowing coal ash everywhere.bbq fan +【Compact Size】 With compact size, It is easy to hold with comfortable grip and without the restriction of power cord.bellows battery operated +【Cooking Helper】BBQ Cooking Fan offers much convenience to make a fire for charcoal grill, BBQ, campfire and fireplace, great for outdoor barbecue and picnic.bellows for fire pit",Zerodis,,us,421 +B084JG7KBQ,"Outsunny 7FT Grill Gazebo BBQ Canopy with Sun Shade Panel Side Awning, 2 Exterior Serving Shelves, 5 Hooks for Patio Lawn Backyard","Tired of getting barbecued while barbecuing? This fabric top gazebo will keep you cool while you grill. The stable BBQ grill canopy is designed with fire retardant cover that lets you enjoy a comfortable BBQ in any weather, with an extra side awning for sun protection. Comes equipped with table surfaces on two sides of the gazebo allowing for the perfect party serving area. Hooks line the frame so you can easily hang up your grill tools. The classic and sturdy design provides you with years of beautiful, outdoor enjoyment.

            Features:
            - 7.15 ft x 4.5 ft footprint gives enough room to accommodate most grills. Perfect choice for BBQs and family gatherings
            - PA coated polyester canopy top offers sunray and light rain protection
            - Side awning provides extra sun protection
            - Durable metal frame with extra supporting bars for added stability
            - Comes with stakes for the legs for added support
            - 2 platform shelves for grill accessories, beverages or food
            - 5 hookers for cooking tools
            - Easy to assemble
            NOTE: Not to be left up during adverse weather conditions.

            Specifications:
            - Color: Black, Grey
            - Materials: Steel, Polyester
            - Overall Dimension: 85.75"" L x 54.25"" W x 85"" H
            - Peak Height: 85"" H
            - Sidewall Height: 76"" H
            - Net Weight: 44 lbs


            ","STYLISH UTILITY: Stylish arch canopy with a premium powder-coated finish for unsurpassed quality. Perfect for BBQs, hosting picnics, parties, and lounging. +WEATHER-FIGHTING: Polyester top canopy with PA-coating, extra supporting bar, and side awning are UV protective, water-fighting, and fire retardant. ThisBBQ gazebo provides shade and cover from the sun and rain while still allowing for open flames and cooking functions. +STORAGE SHELVES: 2 handy panel shelves for grill accessories, beverages or food, and 5 removable hooks for hanging tools. +STURDY FRAME: Sturdy rust-free metal frame with reinforced beams for better stability, weight capacity, and wind resistance. 8 ground stakes are provided to add extra support for each of the legs of the outdoor meal prep station. +Overall Dimension: 85.75"" L x 54.25"" W x 85"" H, Eaves Height: 85"" H, Side Awning Size:78.75"" L x 19.75"" W ,",Outsunny,multi,us,422 +B00OV88E5A,Propane Tip for Gas Lantern 123SID,Rosebud flame,"Propane(LP) tip for gas lanterns. +2 1/8"" tall +1/8"" MNPT +Brass components +Adjustable air intake",Gas Light Pro,Brass,us,423 +B07MNH28TP,MASTERCANOPY Grill Gazebo 8 x 5 Double Tiered Outdoor BBQ Gazebo Canopy with LED Light (Brown),,"✅Rustproof Steel Frame: 6 poles support at top. Effectively prevents water from accumulating on top. Stable, steel and rustproof frame. Hard to be oxidized or erupted with powder coated. +✅Grill Gazebo Size: L 96.1 x W 59.8 x H 96.5 in. Package includes 1 Steel Frame + 1 Grill Gazebo Top. +✅Grill Gazebo Top: Vented and double-tiered top makes smoke come out. Stable under wind condition. 50+UV, Waterproof and Rip-lock Fabric. +✅Rational Design: Two handy shelves for grill accessories, beverages and food. 8' x 5' shade provides enough space to set most kinds of grills. Perfect choice for BBQ. +✅Free Gift: 2 LED Lights.",MASTERCANOPY,Brown,us,424 +B01N8WLXO6,"Napoleon Prestige Pro 665 Built-In Grill with IR Rotisserie, Natural Gas",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +Natural gas grill with 304 stainless steel construction and chrome accents +Heavy duty stainless steel ""Wave"" grill grates and dual level sear plates with internal halogen lights +(5) 12,000 BTU grill burners with Jet-Fire ignition and blue/red LED backlighting; 8,000 BTU wood chip smoker +18,000 BTU rear infrared burner and rotisserie kit included",Napoleon,,us,425 +B08SVXLXZT,"SXTBWFY Grilling Accessories with Case - 23PCS Portable Barbecue Grill, Stainless Steel BBQ Tools, BBQ Grill Accessories for Camping, Backyard, Kitchen, Grilling Gifts for Men","Having a great set of BBQ tools is essential to pulling off great grilled food each time. SXTBWFY barbeque grill accessories set is for any social gathering that you host in your house or outdoor.
            Grilling in one of life’s and lovely pleasures. Grilled chicken or vegetables,steak, corn, homemade burgers, kabob on the skewer and a something tasty. This set of professional-quality grill accessories for outdoor grill probably may bring out everyone's inner grill master.
            Enjoy every BBQ party.

            Product details:
            Tools Material: Food-grade Stainless Steel
            Storage Case Material: Oxford Cloth
            Package size:15.8 × 5 × 2 inches
            Product weight: 2.2 pounds
            Package Includes: 1x spatula; 1x tongs; 1x silicone brush; 1x knife; 1x fork; 1x black case; 1x bottle opener; 8x grill skewers; 8x corn holders

            Warm Notice:
            Store your bbq tools properly and keep sharp or metal tools away from children.
            In order to extend the product life of your bbq accessories, make sure that you wipe off the water after cleaning and store them somewhere dry.

            ","🍖【Valuable 23 Barbecue Accessories Set】This grill utensils set includs a barbecue spatula, fork, grill tong, basting brush, meat knife, multifunctional opener, storage bag, 8 grill skewer and 8 corn holder for easy serving. Meetting the needs of multi-person barbecue. +🍖【Premium Stainless Steel Material】Our grill sets are made from food grade stainless steel which is 2 thicker than other bbq accessories. It is durable, environmentally friendly, and will not bend, crack or rust. Also it is easy to clean without leaving fingerprints. Just create your favorite kabob. +🍖【Intimate Design】All grilling accessories included in this BBQ tool set have long enough robust handles offer more comfortable gripping. Plus it fetures convenient hanging loops on most tools. Enjoy the BBQ time, daily cooking, outdoor grilling, and camping with our portable bbq grill. +🍖【Portable and Versatile】The SXTBWFY 23 Pcs grilling Set includes most that the grillmaster could want. Suitable for indoor or outdoor cooking, kitchen, camping, backyard barbecues, park picnics even cooking over an open fire pit. Great father’s day grilling gifts or special gift for your family and friend. +🍖【Hassle-free Customer Service】We offer not only premium extremely functional barbecue kit but also excellent shopping experience to every customer. All of our grill accessories for outdoor grill are strictly inspected before we ship. If you are not satisfied with it, please feel free to contact to us. No reason to return within 30 days!",SXTBWFY,,us,426 +B000NWAO74,Classic Accessories Veranda Water-Resistant 72 Inch BBQ Grill Cover,,"THE CLASSIC ACCESSORIES DIFFERENCE: Veranda covers go the extra mile with interior bound seams for strength, high-density stitching for durability, padded handles for comfort, and matching webbing for a sophisticated look +PREMIUM GRILL COVERS: Guaranteed to fit barbecue grills 72""L x 30""D x 51""H +WEBER GRILL COVER: Perfect for Weber, Charbroil, Jennair, Cuisinart & Napoleon and other propane and natural gas grills +BBQ COVERS with WARRANTY: Three-year limited warranty +HEAVY DUTY GRILL ACCESSORIES: Gardelle Fabric System features an elegant water-resistant fabric top with a protective laminated backing and a protective dark splash guard skirt",Classic Accessories,Pebble,us,427 +B08BW61RDG,"BBQ'n Grill - Round Rib Rack with Chicken and Vegetable Roaster for Grilling or Smoking on Green Egg, Aussie, Weber, and Charbroil Grills","Now you can barbecue like you never have before with ease.  This unique Barbecuing accessory makes rib booking virtually automatic.  Start your charcoals in the center of the fire grate adding a few hickory chunks for smoking, place a slab or two of ribs around the BBQ’n Grill rack, cover and then do nothing until they are ready to eat!  This technique allows the meat to cook on both sides at the same time.  Use on any covered charcoal grill of 19” or more across and 17” or more deep. It works for beginners and seasoned professionals alike, and makes perfect barbecued ribs and chicken without constant attention, without fussing, without turning, and without charring or burning.  The BBQ’n Grill has been developed to remove the labor intensity involved with barbecuing on a backyard barbecue grill and to slow down the cooking process to allow the flavors of rubs, mops, and wood smoke to become infused into the food. ","Makes Barbecuing Ribs and Chicken Effortless +Works with Charcoal or Gas +Works with Round, Square or Rectangular Grills +Made from Heavy Duty Plated Steel",BBQ'n Grill,Stainless Steel,us,428 +B06ZY5W3R7,Fairview RV Camper LP Propane 2 Stage Automatic Changeover Regulator,,,Unknown,,us,429 +B088P94WNH,Mr. Heater 3800 BTU Indoor Outdoor Portable Little Buddy Propane Heater (2 Pack),"Big things really do come in small packages! Stay toasty warm wherever life takes you with the Mr. Heater Indoor Outdoor Portable Little Buddy Propane Heater. This 3800 BTU heater is compact but mighty. Its small size makes it ideal for anywhere that you need a quick and easy source of heat. From decks to campsites, garages to hunting blinds, and so much more, this little heater will have you covered. The Little Buddy Heater is also ideal for emergency situations. This little dude utilizes a 45 degree heating angle to send the radiant heat where you need it most. You'll be able to heat any space of up to 1000 square feet with this heater. Not only will you be warm, but you'll be safe too. This heater features heavy duty wire guards, an automatic shutoff for accidental tip overs, and an oxygen depletion sensor to keep you protected. This heater is safe for indoor and outdoor use. Let Mr. Heat help you out and heat things up with the Little Buddy Propane Heater.","Compact but powerful with 3800 BTU of heat +Ideal for decks, patios, campsites, fishing, hunting, and emergency situations +Heats any space of up to 100 square feet +Uses 1 pound disposable propane tank as fuel source +45 degree heating angle helps direct radiant heat where you need it most",Mr. Heater,Black,us,430 +B07NPYMSW8,"Hot Sox Boys' Big Food Novelty Casual Crew Socks, BBQ (Grey Heather), Large/X-Large Youth",,"60% Cotton, 21% Nylon, 17% Polyester, 2% Spandex +Imported +Pull On closure +Machine Wash +These BBQ food socks are also available in men's and women's socks",Hot Sox,Bbq (Grey Heather),us,431 +B0861XQ5M8,LED Grill Light Barbecue Heat-Resistant Round Handle Light with Gravity Sensor for Weber 7516 Applicable to BBQ,"Whether grilling in the bright sun or under the dim moon, see your food in the same light. The powerful LED of the Grill Light illuminates the entire cooking area of the grill so that you see the true color of your food, no matter what time of day.","Let the barbecue in the night happier. +Turns on and off manually or with tilt sensor activation. +LED bulbs illuminate for up to 10,000 hours; 3 separately purchased AAA batteries power for up to 20 hours. +Resists heat and moisture damage with glass-reinforced nylon construction. +Fits current Spirit, Genesis, Genesis II and Summit Grills.",BBQ Light,,us,432 +B07G8HFNWB,"Hot Sox Men's Booze Novelty Casual Crew, BBQ Food (Black), Shoe Size: 6-12 (Sock Size: 10-13)",,"Barbecue in style with these bold men's crew socks! +50% Cotton 25% Polyester 23% Nylon 2% Spandex +Fits men's shoe size 6 - 12.5 +Machine wash cold, inside out. Only non-chlorine bleach when needed. Tumble dry low. Do not iron. +One pair pack",Hot Sox,Bbq Food (Black),us,433 +B000DZKZLQ,"Mr. Heater F273769 Portable Propane Table Top Regulator with a 1""-20 female throwaway cylinder thread inlet and an orifice outlet,Multicolored,Regular",,,Mr. Heater,Silver,us,434 +B007M2FWEI,Camping Emergency Butane Heater Coherent Heat Source Survival Tools,Tooluxe Double Coherent Source Butane or Propane Ceramic Heater. Use standard butane gas cartridge for portability. Ceramic burner. Swivel body. Pressure sensing safety shut off device. Gas consumption 100gm/hr. CE certificate. This needs to be erased - 1 pc external connector for butane with LPG for external gas source.,"Use standard butane gas cartidge for portability +Ceramic burner +Pressure sensing safety shut off device +Gas consumption 100gm/hr +CE certificate",,Red,us,435 +B07FLBPHCD,BBQ Timer Beer Drinking Funny Grilling T-Shirt T-Shirt,,"This awesome grilling, drinking, cookout shirt is a great gift for anyone who loves to cook and smoke meat, pork, hog, burgers, food! This cute, smoker t-shirt will make any barbecue grillmaster laugh! +This fun, sarcastic, creative, barbecue shirt makes a perfect gift for men, women, and grill masters! Perfect for anyone that makes barbeque grilling and cook outs a hobby! +Lightweight, Classic fit, Double-needle sleeve and bottom hem",Happy BBQ Apparel,Black,us,436 +B08JTM7VNS,"Hisencn 7421 Gourmet BBQ System Griddle for 22 1/2 inch Weber Original Kettle Premium Charcoal Grill, Cast Iron 12"" for 22.5'' Smokers, Performer Premium Grill",,"【Compatibility】Fits for 22 1/2 inch Weber charcoal grills. For use with The Gourmet BBQ System Hinged Cooking Grate. +【Dimensions】14.5"" L (the handle part is included) x 12"" W x 1.5"" H. +【Material】Made of high quality cast iron, which provides greater durability and can withstand. Rebuild your old gas grill grates easily with new parts to cook better and extend the lifetime of your grill. +【Features】Seals the moisture and flavor of barbecue and retain the original flavor of barbecue. +【High-quality】Provides exceptional heat retention and distributiensuring evenly cooked food.",Hisencn,,us,437 +B005MBHFJG,"UCO Long Burn 3.75 Inch Safety Matches for Fireplaces, BBQ and Lanterns - Box of 50",UCO Long-Burn Matches are designed for starting fires that take just a bit longer than usual to get going. PRODUCT FEATURES:,"Burns up to 1 minute, 5X longer than regular matches +Contains 50 safety matches +Longer length (3.75"") keeps fingers from getting burned +Carbonized match stick for safer fire starting +Ideal for campfires, fireplaces, stoves, BBQ's, lanterns, candles, and more",UCO,,us,438 +B07FMQ3PS1,"Premium Pellet Smoker Tube for All Grill Electric Gas Charcoal or Smokers- 5 Hours of Billowing Smoke - Cold or Hot Smoking- Ideal for Smoking Cheese Nuts Steaks Fish Pork Beef - 12"" Stainless Steel"," For any barbecue or grills to get the real authentic smoke flavor in an easy and affordable way.
            Enjoy BBQ party with your families & friends.

            Features:
            Be suitable for ANY GRILL AND SMOKER (gas, electric or charcoal).
            Burns/Smokes for up to 5 hours.
            Pellets light easily with an inexpensive propane torch (not included) and burn for hours.
            You can smoke anything from cheese to steaks!
            Just place the smoker tube in your gas, electric, charcoal or pellet grill, light the pellets and let it do the rest!
            Durable stainless steel construction, anti-rust and sturdy, not be broken or bent easily after repeated use.
            With new hexagon shape, no falling off or rolling up from the grill, easy to turn or adjust.
            Cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham and fish.
            Equipped with a cleaning brush and hook. It can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.

            Specifications:
            Color: Silver
            Material: 304 stainless steel
            Style: Hexagon design
            Tube size: Approx. 30.5 x 5.1 cm / 12.01 x 2.01""
            Brush length: 30.5 cm
            Brush hair length: 20 cm
            Hook length: 13 cm
            Hook opening diameter: 3 cm

            Package included:
            1 x Pellet Smoker Tube for Any Grill
            1 x Brush
            1 x Hook
            ","FOR ANY TYPE SMOKER – This pellet smoker provides additional smoke to any grill and smoker, like gas grills, charcoal grills, electric grills and portable grills. It can be used to cold smoke cheese and nuts, or hot smoke steaks, chicken, pork, lamb, ham, fish and more. +UP TO 5+ HOURS BILLOWING SMOKE – Just add your favorite wood ball (apple, pecan, hickory, mesquite, oak, cherry, etc.), use a torch to light it, let it burn for about 3-5 minutes, then blow the flame out and put the smoker tube on the grill. One tube smoker can be filled with your favorite pellets to provide billowing smoke for 5 hours. +SAFETY MATERIAL & REPEATEDLY USE – This 12 inch smoker tube is made of 100% high-quality 304 stainless steel, anti-rust and heat-resistant, durable and sturdy, not be broken or bent easily after repeated use. +IMPROVED HEXAGON DESIGN – This premium stainless steel tube smoker with new hexagon design, it will not roll up or fall off on the grill to provide you with a better and safer smoke absorption effect and to meet your needs of taste buds by getting the food emitted different taste with different wood pellet. Our smoking tube does not also leave any residue that can get into your food. +GREAT GIFT & FREE BONUS ITEMS – A perfect gift for your family and friends and enjoy the BBQ. Come with a cleaning brush and hook, it can help clean the residue easily and the S-type hook can be used to hang the grill tools, which is convenient for your storage.",MVZAWINO,Hexagon,us,439 +B016HUP1LO,"Pleasant Hearth VFS2-PH20DT 20,000 BTU 23.5 in. Compact Gas vent free stove",,"Dual fuel technology allows the unit to be operated with Propane or Natural Gas +Up to 20,000 BTU's/hr heats up to 700 sq. ft. +Thermostat control knob automatically maintains your ideal heat level +Dual burner provides 2 rows of flames for a more full looking fire +Separately sold variable speed blower (PBAR-2427) for quiet, yet powerful heat distribution",Pleasant Hearth,,us,440 +B07FQVDWZ4,The Ultimate No-Wire Grill Brush Kit - BBQ Accessories - Drill Brush - Rust Remover - Cast Iron Skillet - Grill Cleaner - BBQ Brush - Grill Accessories - Grill Scraper - Electric Smoker - Gas Grill,"The Ultimate Wire Brush Alternative Drill Brush Attachment Kit is designed for use with most cordless drills and drivers. All brushes feature rugged steel shafts and use the quarter inch quick change ends. The Drill is NOT included. These Ultra Stiff brushes should cut your BBQ grill cleaning and scrubbing time in half or more compared to the rigorous effort involved in hand scrubbing. These spin brushes also do a better job in restoring and then maintaining your grill, smoker, or oven grates. Ultra stiff bristles also are well suited to loose paint stripping, rust removal and graffiti erasing on stone or brick surfaces. All Drillbrush Products have a 90 day no questions asked Money back Guarantee. If you are not completely satisfied with our product we will issue a full refund or ship out a replacement at the buyer's request. Cordless Drill NOT included.","The Ultimate Ultra Stiff black Grill Brush power scrubbing cleaning kit allows the user to save time and effort using the power of a cordless drill. These Ultra Stiff brushes are an alternative to problematic wire brushes. Some common applications include cleaning BBQ grills, smoker grates, or oven racks of baked-on food and heavy grease deposits. +Restore your barbeque grill surface to like new condition. Eliminate cooked on, hardened food particles and stubborn grease from your grill. Use only on COOL grill (never hot). The aggressive Ultra Stiff bristles clean BBQ grills better than hand brushing. No wires to break away and end up in your food. Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then beco +The Ultimate kit includes: The Original Drillbrush Power Scrubber featuring Ultra Stiff bristles. A mini Original (for tighter corners). Two 2 inch diameter round brushes, one short and one long bristle for reaching crevices and seams. One five and one four inch flat round brush for working with larger surfaces. All of these brushes are Ultra stiff and well suited to applications previously requiring a wire brush. +Cleanup is easy with the nylon bristle brushes. Hot soapy water and a quick rinse and you’re ready for your next cookout. No more rusty wires that never get clean and tend to rust as well. Replace your wire brush drill attachments with these aggressive all nylon upgrades. No more broken and loose flying wires to deal with. +Our brushes have NO WIRES and are much SAFER: “A number of surgeons recommend that wire brushes not be used to clean barbecue grills. In some cases, bristles break off the brush which then become deposited in food cooked on the grill. Ingestion of these bristles can cause gastrointestinal perforation.”",Drill Brush Power Scrubber by Useful Products,Black,us,441 +B081Q5YVT3,"Podoy 30 LB Propane Tank Cover for RV, Heavy Duty Cloth, 17 x 20x 31 Inche, Waterproof & Weather Resistant Propane Tank Cover Fits for 30lb Steel Propane Cylinder","

            Dress up Your Grill: The cover can hide the old propane tank to make the grill look more distinctive. And it can keep the propane tank clean.

            Waterproof: Made of waterproof material, you don't have to worry about getting wet even if it rains or snows. 

            Premium Materials: This cover is made of durable polyester and waterproof vinyl coating, thus making your propane tank durable.

            Prevent your propane tank from experiencing premature fading and damage from the sun.

            The cover fits most standard 30-lb propane tanks, so you can be assured of a quality fit.

            ","▲PRODUCT SIZE: A Necessary Cover for propane tank.This propane tank cover measures 17 x 20 x 31 inche which fits for most propane tank up to 30lb +▲HIGH QUALITY: The material is extremely heavy duty, the elastic at the base is perfect, the fit is primo, and the stitching is sturdy and dead-on. +▲This works as a protector and a cover for looks, in bad weather ( snow or rain ) it keeps the moisture out so the valve doesn't freeze when you want to use the grill. When not using the grill it covers the tank and is not noticed on the patio. +▲Velcro closure at top, elasticized bottom for a neat, tailored fit. +▲If you have questions, please feel free to contact us, we will deal with it as soon as possible. for any reason you're not completely satisfied, you can ask for a replacement or full refund.",Podoy,BLACK,us,442 +B009H3QVOK,"Fire Sense Hammer Tone Bronze Table Top Patio Heater | Uses 1 Pound Propane Tank | 10,000 BTU Output | Portable Outdoor Heat Lamp | Ideal for Garage, Camping, Hiking, Picnics | CSA Approved, ODS Comp",,"This outdoor patio heater is made using heavy duty commercial grade steel. +This small patio heater can be taken indoors easily due to its light weight. +The portable heater makes use of a standard 1 pound LPG propane tank. +You can turn on this patio heater in an instant with the push of a button. +This outdoor heater is perfect for your porch or any other outdoor venue.",Fire Sense,Bronze,us,443 +B07QYJKFQZ,"Tankless Water Heater, thermomate 5L Portable Propane Gas Hot Water Heater with Overheating Protection, 1.32 GPM, Low Pressure Startup for Camping, 34,000 BTU/Hr, Easy to Install, White","📢 What are the benefits of using thermomate propane gas tankless water heater?

            ✅ 1. Starts up with only 2.5 PSI of water pressure, and up to 110 PSI! It's ideal for RV' s, campers, rural cabins, small apartments, flats, hunting cabins, as well as boats, sailboats, and mobile homes.

            ✅ 2. 34,000 BTU/Hr maximum power output, you can get instant endless hot water easily wherever you are. Our customers also use them for washing stalls, horse trailers, de-icing cars in the winter, outdoor camping, motels, small roadside restaurants and other situations where endless and economical water heating is required and water pressure is available at 10PSI.

            ✅ 3. This amazing instant water heater is designed for one point of use at a time.It delivers over 1.32 gallons per minute of hot water with a 77°F rise in temperature. This means that if your tap water is at 59°F, it will instantly deliver 1.32 gallons per minute of hot water at 113°F.

            ✅ 4. With remarkable electric pulse ignition technology that requires NO STANDING PILOT. The outstanding thermomate gas water heater saves up to 25% in gas consumption when compared to older technology lighted pilot lighted units. Even if in case of a power outage or no power supply such as in RV'S, campsites, boats and sailboats, you can still enjoy your hot water at home, as it uses 2 ""D"" cell batteries to ignite the electronic spark module.

            ✅ 5. It's designed by modern fashionable line shape. Magnificent thin-shaped & portable appearance,you can take it anywhere to get instant hot water.


            📖 Specifications

            Max. Flow Rate: 1.32GPM

            Related Gas Pressure: 0.4 PSI

            Power Rating: 34,000 BTU/Hr

            Activation Flow Rate: 0.44GPM

            Water Pressure: 2.5 PSI ~ 110 PSI

            Flue Type: LPG ( Liquid Propane Only )

            Power Source: 2 ""D"" Cell Batteries ( Not Included )

            Vent Pipe: No needed for outdoor use

            ","[2.5 PSI Water Pressure Startup] Equipped with a magnetic water flow sensor, allowing the unit to work at low water pressure, stable water flowing to meet a wide range of usage for those in water shortage areas, including rural areas, RV's and Boats. +[Instant Hot Water On Demand] Rated at 1.32 GPM, this water heater provides endless hot water on demand and only as needed, no need to preheat making it more efficient and energy-saving, saving up to 50% on water heating costs.  +[Multi Safety Protection] Anti-freezing apparatus draining the stock water to avoid damage of freezing under cold areas to the machine itself or in case of a long time no use. Featuring overheating and flameout protection, the gas supply will shut off automatically under unexpectedly flame out or high water temperature over 185 °F. +[Compact Exquisite Design] Compact and space-saving design with minimal noise output which is portable for outdoors.  A great partner for camping and road trips bringing an amazing hot shower for you when you are camping, hiking, fishing, beaching, etc. Besides, you can also wash your pets with this tankless water heater, or provide hot water for the swimming pool. +[Easy to Install] Equipped with 1/2"" BSP water fittings and manual water temperature controls make it easy to install and use. Please verify it's the right size you need: net weight 10.4lb; size 13.4(L)x4.7(H)x11.6(W); maximum power output 34,000btu/hour (10kW). Work with a 0.4PSI gas regulator (included).",thermomate,White,us,444 +B0874MTD5B,Gaier Barbecue Grill 8'x 5'Gazebo 2-Tier BBQ Canopy Tent Coffee Shelter for Patio and Outdoor Backyard,"Product Dimensions:
            - Weight: 44.1lbs
            - Overall size: 98.4 x 59.1 x 106.3 inches
            - Material: Metal, Polyester
            - Cover Color: Brown/Coffee
            - Frame Color: Black","BBQ Grill Gazebo Tent with Strong 180g polyester with a fire retardant treatment fabric +Durable steel frame with powder-coated finish is rust-resistant +Vented, double-tiered canopy offers smoke ventilation and stability against windy conditions +Shelves on both sides provide space for placing cutleries or grilling accessories +Gaier BBQ Grill Tent include 1 crafted bottle opener & 2 iron meshes table & 7 Pegs on the frame & 1 hook on the middle top, put up fan, lights and so on",Gaier,,us,445 +B085J1RSWD,Dometic 50216 RV 2-Burner Propane Cooktop,"The Dometic Drop-In cooktop has a powerful 7,200 and 5,200 BTU burner, allowing you to conveniently prepare a main dish and side dish simultaneously. The recessed control panel and burner knobs are easy to use and allow you to cook with precision. The one-piece surface ensures the cooking area is easy to clean. It’s the ideal cooking companion, wherever you are!",,Dometic,,us,446 +B077KRTY7C,Gimiton Portable Electricity Fan for Barbecue Air Blower Fire Blower Air Fire for Outdoor Camping Hiking Barbecue Fire Bellow Tool,"●Specification:
            Material: ABS plastic + Stainless Steel
            Color: black
            Length: 7inches(18cm)
            Width: 3inches(8cm)
            Weight: 4 OZ

            ●Features:
            1. Having more fun for barbecue making- battery-powered blowers, easy operating with simple ON/OFF switch, helping to reduce the dust and sparks, makes you food more sanitary and healthy.
            2. Durability- high strength plastic body with stainless steel tube, thick and durable, good heat resistance ability, safe to use, set up your fire quickly in short time.
            3. Widely application- suitable for camping, family gathering on weekend, picnic, outdoors cooking, trip, family activities etc, helping you become a ameteur professional cook.
            4. Portable & convenient- small size blower easy for taking away with you for any outdoor activities, handy for the weekend recreational BBQ chef, bringing convenience to your life.
            5. Useful firestarting tools- blow a small amount of uniform wind to help stoke charcoal evenly, set up your fire quickly, the effect will immediately be able to see, saving your time.

            ●Notes:
            1. Please allow slight color difference due to different monitor's brightness and contrast settings.
            2. Pls allow 0.4-1inch(1-3cm) size deviation due to the manual measurement.
            3. Pls note that there's no battery included with the blower, you need to prepare it by yourself.
            ","★ABS plastic & Stainless Steel, good impact resistance, heat resistance, low temperature resistance. +★Setting up fire for BBQ quickly with this blower, no need to blow through your mouth, helping you make barbecue more easily. +★Blower put out a small amount of air to accelerate coal burning while preventing sparks and dust from getting on your ingredients. +★Installing the battery firstly and then turn on the switch, perfect Barbecue helper, enabling you enjoy delious food without being busy and exhausted. +★Power supply: 4 x AA (1.5V) battery (Not included), allowing you being a recreational BBQ chef.",Gimiton,,us,447 +B07MJP4ZQV,"homenote Griddle Accessories Kit, 7-Pieces Exclusive Griddle Tools Long/Short Spatulas Set - Commercial Grade Flat Top Grill Cooking Kit - Great for Outdoor BBQ, Teppanyaki and Camping","HOMENOTE professional griddle tools set
            provide Two different combinations of spatulas and flipper/turners. Longer and shorter flat top utensils can help you adapt to any situation and food in your kitchen or outdoor grilling. It's a great choice for all types of griddles and grills, including hibachi and electric teppanyaki grills.
            KEY FEATURES:
            - 2 Oversized griddle SPATULAS,great for flipping beef cubes, fried egg, rice, noodle and vegetables.
            - 2 Regular size grill FLIPPERS/TURNERS (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage.
            - 2 well-made leak-free bottles, 10.5 oz each and totally 21oz.
            - 1 heavy duty CHOPPER/SCRAPER with sharp edge, easy to dice food and scrape griddles clean.
            - 1 Sturdy and lightweight storage bag, Its Convenient for you to carry and pack all utensils together.
            - 1 HOMENOTE exclusive BACKYARD GRIDDLE RECIPE.
            - Well-made plastic handle that resists heat and designed with a hanging hole for easy storage.
            - Stronger and thicker stainless steel making them Not easily damaged or broken.
            - Dishwasher safe. Easy clean with warm soapy water.
            - Perfect for indoor/outdoor kitchen both in restaurants or at home, picnic, and camping.
            IDEAL GIFT CHOICE
            - Give him/her a surprise !

            Don’t know how to choose a gift for Father's Day? A complete set of griddle tools will be the best gift for your father, It’s time to upgrade your father’s old barbecue tools !
            Its also the perfect gift choice for Christmas, friend’s birthday, griddle, grill and camping lovers !

            Accessories Dimensions:
            2 Spatulas: 14.45 x 2.81 inches
            2 Flipper/Turners: 11.64 x 2.73 inches
            1 Chopper Scrapper: 6.64 x 4.69 inches
            2 Squeeze bottles: 7.42 x 2.03 inches Volume: 10.5oz each
            1 Storage bag: 15.6 x 6.25 inches
            1 RECIPE: 7.03 x 5.47 inches
            ","Exclusive Combination and Premium Quality - Made with stronger and thicker stainless steel, durable plastic handle that is designed with hanging hole. All tools are dishwasher safe for quick and easy BBQ clean up.(ATTENTION:To avoid rust, please wipe off the water stains after cleaning) +Multipurpose Outdoor or Kitchen Cooking Kit - 2 Oversized griddle spatulas, great for flipping beef cubes, fried egg, rice, noodle and vegetables. 2 Regular size grill flippers/turners (can be use as shorter spatulas) with 3-sided bevel cutting edge, great for turning burger,pancake and cutting bread,meat and sausage. +Must Have Griddle Accessories - This set also include 1 chopper/ scraper to dice food and scrape griddles clean. 2 squeeze bottles for liquids oil, 1 Homenote exclusive recipe and Bonus 1 storage bag. +Perfect Gift Choice - Ideal griddle gift choice for Fathers Day, Thanksgiving or Christmas. Sweet cooking bbq gift for men, women, grilling and camping lovers. +Enjoying for Taste! The HOMENOTE griddle tool kit is the perfect companion to cooking amazing food that will please everyone at your BBQ, weekend party or your everyday meals",homenote,7-Pieces,us,448 +B086Z4BMB8,"DuroMax XP5500HX Dual Fuel Portable Generator-5500 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue",,"All-new control center with a digital multimeter, USB outlets, a front-facing fuel interface, and DuroMax’s exclusive MX2 switch that harnesses the generator's full power by combining the two 19-amp 120-volt circuits into one powerhouse 38-amp circuit. The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance +This generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice +Equipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected +Built using a powerful 210cc OHV-V DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years +The fully loaded power panel includes two 120V GFCI household outlets, one 120/240V 30AMP twist-lock outlet",DuroMax,Blue,us,449 +B07RNX3G8J,"RENOOK Grill Mat, Heavy Duty 600 Degree Non Stick BBQ Mats, Easy to Clean & Reusable, Gas Charcoal Electric Griling Accessories, Best for Outdoor Barbecue Baking and Oven Liner, Set of 2, 20 x17-Inch","

            Super BBQ Grill is Your Necessary Tool in Your Daily Life,You will Feel the BBQ Fun by Using the Grill Mat!

            Our BBQ Grill Mat are Made from 100% PFOA-Free Materials and Premium PTFE-Fiberglass Coating, NO PFOA,Silicone or Other Dangerous Chemicals! You can Use it Safely and Without Any Harmful Chemicals Infiltrate Your Food,the Grill Mat Make Barbecue, Cooking, Baking Easier!

            ATTENTION:


            1.DO NOT place directly on charcoal. Lay the mat over the grill grates approx 4 to 7 inches from the burners.

            2.Can be placed on top of any grilling space (charcoal, gas, or electric) and recommended with temperatures up to 500 F.

            3.Avoid scratching the mat with sharp or metal tools, cool it before cleaning the mat and Dry with a soft cloth.


            Healthier

            Don't worry about scorching your food, sticking the barbecue mat, producing a lot of unhealthy oils and fumes,

            make food is very healthy and delicious.

            More Usages

            Eliminates flare, these mats can be used to grill ANYTHING, and perfect for chicken, wings, ribs, burgers, steaks, fish, shrimp, fruits, vegetables,

            breakfast, and even pizza! You can use it on the grill,oven, etc,.and cut the grill mat into the shape you want.It's really amazing!

            Enjoy a Good BBQ Time with Your Family and Friends with Prefect RENOOK Grill Mat,Super Cool---Quickly Add it to the cart!

            ","1.NEW 20 x 16-Inch SIZE! : New thickness & New size, new RENOOK heavy duty grill mat is 4 times thicker than most grill mats on the market. These superior non-stick grill mats can be used over 1000 times each side. Any grill mats can be unable to keep pace with them. +2.PREMIER GRILL MAT: Thickest and can withstand temperatures up to 600 degrees, the one and only PFOA free BBQ grill and smoke mat which is able to leave much better grill marks. +3.GRILL ANYTHING AND EVERYTHING WITH EASE: Grill the juiciest steaks, smoke the tenderest chicken and sautee the thinnest cut vegetables with ease.And keep all your grill accessories looking shiny new. +4.REUSABLE AND DISHWASHER SAFE - Never worry about your food sticking to the grates or falling through the cracks again. Flare-ups are a thing of the past...no more burnt meals or ruined dinners. They are super-easy to clean; just pop them in the top shelf of your dishwasher and forget about laborious scrubbing. +5.100% REFUND - Unhappy with your new grill mats? No problem! Your purchase is covered by our and an extended - simply contact us for a refund or replacement.",Renook,Black,us,450 +B000NV6HOE,"Traeger Grills PEL305 Mesquite 100% All-Natural Hardwood Pellets - Grill, Smoke, Bake, Roast, Braise and BBQ (20 lb. Bag)",,"MESQUITE WOOD FIRED FLAVOR: Boasting bold, robust flavor, Traeger’s Mesquite Hardwood Pellets are the ideal choice for cooking beef and other classic BBQ cuts. +NOT ALL PELLETS ARE CREATED EQUAL: The best wood-fired grill on the market demands the best wood pellets on the market. Real taste doesn’t just happen, it’s tied to quality materials and achieving perfect smoke. It starts with all-natural hardwood pellets made in American mills. +TRAEGER HAS SPENT YEARS DEVELOPING THE PERFECT PELLET: Our hardwood's unique compact cell structure results in a balanced, dependable burn. Traeger has spent years mastering the development of hardwood pellets that have just the right amount of moisture content—the sweet spot—to maintain a perfect burn-to-smoke ratio +PAIRS WELL WITH EVERYTHING: Pairs especially well with Beef, Poultry, Seafood +FEATURES: Made in USA, Premium Quality, All-Natural, Clean Burn, No Binders, Low Ash, 20lb Bag",Traeger,Mesquite,us,451 +B0009PURJA,Coleman Camp Oven,,"Portable camping oven lets you bake with confidence at the campsite +Fits on Coleman Propane and Liquid Fuel Camp Stoves +Adjustable rack can be set at 3 heights for versatile baking +Easy-Clean Aluminum Steel Construction Resists Scratches and Corrosion +Folds flat for easy storage and carrying",Coleman,,us,452 +B004C2OF62,WEBER Summit S-660 Built-In Natural Gas Stainless Steel Grill (7460001),,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +6 Stainless steel burners +60,000 BTU-per-hour input +6,800 BTU-per-hour input smoker burner and stainless steel smoker box +10,600 BTU-per hour input sear burner",Weber,Stainless Steel,us,453 +B07JQBVK9K,"Techwood Electric BBQ Grill 15-Serving Portable Grill for Outdoor and Indoor Use, 18 inch Tabletop Grill, 1600W","Techwood high-quality portable bbq electric grill is perfect for entertaining. Suitable for parties,
            picnics, camping and other indoor or outdoor barbecue activities. Our electric grill is covered
            by Product Liability Insurance of United States.

            - 120V 60Hz 1600Watts

            - Product dimensions: 17.9 x 11 x 14.8 inches

            - Humanization Features,Rotatable Venting System,Let Safety Be With You
            Fully electric system, 1600W power operated and a variable temperature controller give you a
            happy grilling or barbecue time. Grilling with no charcoal, no propane and no flare-ups,
            happy hours come with safety assurance for you and your family, friends. and apartment
            approved,your landlord will love this grill just as much as you do.

            - Adjustable Temperature Control
            Perfect heat is the secret ingredient. The temperature probe lets you choose the desired setting
            to get the best results on any kind of food.

            - 15+ servings,Easy To Use and Install and Maintain Tidy

            The easy to use TECHWOOD grill allows you to grill steaks, bake Pizza, chickens, breads, cakes,
            cookies, potatoes and many other delicious foods and complete meals.

            - Foldable warming grill : keep the food in temperature for good taste.

            ","🍖【 FAST-HEATING】 Portable electric grill’s convenient design of the interlocking hood and bowl allow for rapid cycle heating, which allows to heat the meat more evenly and tasted more delicious. With the cool handle you can enjoy the barbecue everywhere. +🍖【HIGH CAPACITY】 Techwood tabletop grill equipped with 240 square inches of circular grilling surface, which lets you make over 15 servings for large groups of people such as, and enjoy the delicious foods together! +🍖【APARTMENT-APPROVED】Your landlord will love this grill just as much as you do because the fully electric system gives you high-quality grilling with no charcoal, no propane, and no flare-ups. Especially great for apartments, patios, and other areas where charcoal or propane can’t be used, and the food rack is designed for food warm and storage.Porcelain-coated cast iron premium cooking grates are rust-resistant and easy-to-clean. +🍖【TEMPERATURE CONTROL】The adjustable temperature controls make it easy to find the right amount of heat for whatever you create, Venting system can effectively dissipate heat and keep the steak tender and juicy. Porcelain-coated cast iron Premium cooking grates are rust-resistant and easy-to-clean +🍖【Get Yours Now, Risk-Free】Techwood specializes in electric grill. The products cover stand grill and tabletop grill for you to choose from. Our products are all covered by Product Liability Insurance of United States. We provide 18 months of high-quality after-sales service. If you have any questions, please contact us in time.",Techwood,RED,us,454 +B086Z452V9,"DuroMax XP13000HX Dual Fuel Portable Generator-13000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue",,"All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance +This generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice +Equipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected +Built using a powerful 500cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years +The fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!",DuroMax,Blue,us,455 +B00TG8GLCS,"Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater","Raypak 014951 Digital Cupro-Nickel Propane 266,000 BTU Pool Heater is engineered to last. Looking at the heater, you can see that it's designed differently than most heaters on the market. The Raypak Digital Cupro-Nickel Natural Gas Heater's unique ""pagoda design"" enables the heater to stay effective during high wind speeds and downdrafts. The cabinet of the heater is constructed from a galvanized metal, then powder coated with a 7 stage process to outlast the elements and corrosion. Inside the unit, the heater boasts polymer resin headers and a cupro-nickel fin tube to stand up against harsh pool chemicals and prevent rust stains on you pool's surface.The Raypak Digital Cupro-Nickel Natural Gas Heater Not only lasts long, but is extremely easy to use and operate. The heater has a built-in Microprocessor Controlled Thermostat to set your pool or spa at the perfect temperature with the push of a button. It's also remote compatible and can connect to any two or three wire remote for added convenience. The heater also contains built-in diagNostic controls to alert users or pool professionals of any issues and the location of these issues. In addition, the heater contains built-in electronic ignition. This enables the unit to turn the pilot light off and on when needed, conserving gas usage and saving users money.","Cupro-nickel gas pool and spa heater +Pagoda design ensures heater stays active in harsh weather conditions +Microprocessor controlled thermostat +Digital display +On-board self diagnostics",Raypak,Fashion Gray,us,456 +B06Y5WZQJP,"SMETA 3 Way Fridge Propane Refrigerator without Freezer Gas/12V/110V for RV Truck Camping Off Grid Fridge 2.1 Cu.Ft, Black","General Introduction

            This SMETA Absorption Refrigerator is designed for office, dorms and some place where is quiet, or other place where electricity is in short supply.
            It adopts absorption cooling system with advanced technology, which is very quiet and could be powered by gas, 110V,12V depends on your different need.

            Specifications:
            Net Volume:2.1 cu ft
            Net Weight:48lb
            Temperature Range: 32℉~50℉
            Product dimension(W*D*H): 18*18.7*27.1 inch
            Power supply:AC 110V/DC 12V/Propane(gas/LPG)
            Rated Frequency:60HZ
            Input Power: AC 90W ;DC 90W
            Gas consumption:0.4 lb/ 24h, One tank of 20lb propane can be used for 4-7 weeks
            This product come with connection cord,can directly connect the cigarette lighter of the car

            IMPORTANT THINGS TO KNOW:
            Please keep vent when use gas refrigerator. NEVER install gas appliances in unventilated (air tight) structures or sleeping rooms.
            Please remember this is a super quiet refrigerator. For the first time use, we suggest to keep the refrigerator upward about 24 hours before make it working.
            Adjust the thermostat knob to desired temperature setting and allow for 6 to 8 hours of operation to achieve desired temperature.

            PLEASE NOTE:
            If you have any questions,please feel free to contact us,we will try our best to help you!
            NOTE:
            This product USES propane to generate electricity. The product itself does not contain gas.
            ","110V/12V/Gas 3-Way (Propane, 110V AC, or 12V DC), great for your cabin, cottage, RV or camping +Dimensions 18*18.7*27.1 inches, campact size easy to carry on the way +Approximate gas consumption per day: 0.4 lb +Temperature range 32℉~50℉ without freezer +Reversible door. Advanced absorption cooling system, super quiet without noise.",SMETA,Black,us,457 +B001KLJX9M,Compact Radiant Propane Heater by Mr. Heater,Mr. Heater F215100 Portale Little Buddy Heater 3800 Btu Gasoline,,Mr Heater,gray,us,458 +B07WF2X9LV,"BBQ Classic Parts 7"" Diameter Wheel and 5/16"" Diameter axle Hole Compatible with Most Kenmore Grills BCPG437-0037-W1","This is for a Single 7"" diameter black plastic wheel. Features a 5/16"" diameter axle hole, 1-3/4"" long axle hub and 1-7/8"" wide tire tread. Fits a variety of Charbroil, Kenmore and many other Brands/Models. Sold individually. Genuine Charbroil Part.",High Quality that's made to last!!,BBQ Classic Parts,,us,459 +B07VZC21DG,"yuxiangBBQ Stainless Steel Outdoor Kitchen Drawers BBQ Drawers Triple Access Drawers Flush Mount for Outdoor Kitchens Or BBQ Island(18"" W x 23"" H x 23"" D)","

            18""W by 23""H Stainless Steel Triple Access Drawer,Outdoor Kitchen Storage Drawers.These fully enclosed storage drawers features an easy close assist and smooth heavy duty sliding drawer slides making them great for storing all your BBQ tools and utensils

            Introduction:

            18""W x 23""H x 23""D Triple Drawer provides a Triple storage space to store away oversized grill tools, Towels and BBQ accessories.

            Perfect for outdoor kitchen and BBQ island,and work with most any island structure including Veneer Stone, Stucco and all Masonry Stone type

            Why Choose Us?

            1.Carefully designed: Modern minimalist style and Light Luxury

            2.New Upgrade:Better, Prettier and More Handy

            3.Craftsmanship Manufacture:Elaborate manufacturing, Attentive service, Reliable use to make customers satisfied.

            We heartily provide customers the best products in the cheapest price.

            Package Contents:

            1 X Triple Drawer

            1 X Screwdriver

            3 X Handles

            1 X English manual

            ","Product size: 18"" W x 23""H x 23"" D. Cut hole size: 16""Wx21""Hx 23"". Our stainless steel outdoor kitchen drawers have three storage spaces: large, medium and small, so you can store items of different sizes conveniently. +Our outdoor kitchen drawers are made of high-quality stainless steel. They are durable and require only proper maintenance to maintain a smooth and beautiful appearance. +Fully-lengthened rails, the upper and lower rails adopt thick silent ball guide rails, which makes it easier to push and pull outdoor kitchen drawers; the silent sliding type prevents people from hearing irritating noises. Use the smooth slide rail to feel the intuitive smoothness, ensuring that this barbecue drawer can be pulled in and out easily and smoothly. +Box frame design-Outdoor kitchen stainless steel drawers adopt a box frame design, with a fully enclosed box body, which effectively prevents internal rain, wind, dust and insects. +Fast customer service, if you have any questions, please feel free to contact us, we will reply within 24 hours, and help you solve the problem as soon as possible",yuxiangBBQ,,us,460 +B0818XQ13S,"BeebeeRun Wooden Play Food Toy, 23Pcs Barbecue Grill Play Set, Pretend Play Kitchen Set, Cooking Gift for Girls and Boys - Best for 3, 4, 5, and 6 Year Olds,",,"🍡【23 Pieces Food Playset】BBQ playset included, corn,steak,fish,shrimp, mushroom,broccoli,sausage, drumstick, skewer*2,knife*1,clamp*1, charcoal*2, plate*1,  salt*1, pepper*1,BBQ grill*1 +🍢【Play and Learn】 Kids BBQ pretend play set promotes hand-eye coordination, creative expression, and imaginative play,food halves connected via magnet - Use kid-friendly wooden knife to cut them in half +🍡【100% Safe】All food pieces made entirely of high quality wood; BPA-free; Nontoxic paint; Fully safety tested; Smooth edge ensures safety for toddlers’ hands +🍢【Gift For Ages 3 To Up】The wooden rotisserie & grill barbecue play set make a great gift for children ages 3 to up. Add the Slice-and-Bake Wooden Cookie Play Set to round out the pretend play experience and give kids another engaging option for screen-free fun. +🍡【Convenient to Use】Pretend BBQ accessories is light, easy to assemble and carry. The grill can be a portable storage when play time is over, it can collect all parts without wasting any space to keep your house clean and organized",BeebeeRun,,us,461 +B086Z49LJ5,"DuroMax XP12000HX Dual Fuel Portable Generator-12000 Watt Gas or Propane Powered Electric Start w/CO Alert, 50 State Approved, Blue",,"All-new control center with a digital multimeter, push-button start, and a front-facing fuel interface allowing you to change your fuel type in seconds! The digital multimeter displays voltage, frequency, total hours run, and hours until the recommended maintenance +This generator runs on gasoline or propane, giving you the freedom and flexibility of fuel choice +Equipped with DuroMax “CO Alert Technology” that will automatically shut down the generator if an unsafe level of carbon monoxide is detected +Built using a powerful 460cc OHV DuroMax engine and features ALL COPPER WINDINGS designed to make your generator last for years +The fully loaded power panel includes four 120V GFCI household outlets, one 120V 30AMP outlet, one 120/240V 30AMP twist-lock outlet, and a heavy-duty 120/240V 50AMP outlet making it transfer switch ready!",DuroMax,Blue,us,462 +B01MSYK6BU,"Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates for Grill, Fire Pit, 36-inch","Onlyfire BBQ Solid Stainless Steel Rod Foldable Cooking Grates is perfect for picnic, camping, and outdoor cooking on the grill or open fire. Made of stainless steel, Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. Have a good weekend with your families and friends by using this cooking grate! Turn your fire pit into a grill.","Dimensions: 36 inchs diameter, large cooking space. made of durable stainless steel. +Perfect replacement part for charcoal or gas grill. +Used for picnic, camping, outdoor cooking, turn your fire pit into a grill. +Hinged center to fold in half makes it easy to add Charcoals, logs and clean embers. +Double-check the dimensions of your grills or fire pit before ordering.!",only fire,,us,463 +B0787R3KFX,"grilljoy 20PCS Heavy Duty BBQ Grill Tools Set - Extra Thick Stainless Steel Spatula, Fork& Tongs. Complete Barbecue Accessories Kit in Aluminum Storage Case - Perfect Grill Gifts for Men","
            Upgrade your grilling today
            This 20-piece barbecue Tools Set has everything you need to upgrade your BBQ. It also be the envy of your next party with complete BBQ accessory bundle.
            These professional-grade grilling tools make prep and cooking of sizzling steaks, kabobs and veggies easy and fun.

            Handsome set makes a perfect gift.
            An inspired gift idea for your dad, groomsmen or anyone you like.It's an ideal gift for special occasions like gathering, Wedding, birthday, valentine's day, holiday, Christmas.
            Also this grilling accessories tool kit is perfect gift for the aspiring grill masters who also require the proper tools to produce the finest meals.

            Enjoy your amazing BBQ time
            Our BBQ grill set provides 20 pieces of stainless steel tools for BBQ, grilling, kitchen cooking or outdoor kitchen, great for a backyard barbecue, tailgating, parties, picnics, or camping with friends and family.

            All the features you need - None that you don't 
            1.Multi purpose 4-in-1 slotted spatula with built-in bottle opener features double-sided serrated edges for cutting and tenderizing meats.
            2.Ergonomic, contoured grips and exquisite balance will make them feel like an extension of your arm.
            3.The tool comes with a hanging loop is convenient and easy to storage around your grill or kitchen.
            4.Specifically designed for ease of use and comfort at the grill, which you can grill better, faster, and with less effort.
            5.Elongated handles keep your hands safe from the heat.
            6.made from professional grade stainless-steel which is super strong,study and durable for you to handle BBQ and Grilling needs.
            7.Portable weather-proof aluminum case keeps tools conveniently organized and easy stored.
            8.dishwasher safe or cleaned quickly with warm water and soap.

            If you have interest,Just click ""add to cart"" to get this grill kit and enjoy your amazing BBQ time!","Complete Barbecue Accessories --- 20 piece bbq accessories set includes 1 spatula, 1 fork, 1 basting brush, 1 grill cleaning brush, 1 extra brush head, 1 grill tongs, 8 corn holders, 4 kabob skewers, 1 multipurpose corkscrew, 1 Aluminum Case. This is a complete and professional grill kit contains almost everything you need for grilling. +Premium Quality --- Our BBQ grill tools set are made of high-quality stainless steel, so each of our products is sturdy and durable, will not rust or crack. All tools are easy to clean and dishwasher safe. +User-friendly Design --- We design grilling tools from the user's perspective. Thanks to the extended handle, you can keep a safe distance from the hot grill and minimize the risk of burns. +Convenient Storage --- The Velcro locks each tool in a neat position, you could easily keep all the barbecue tools in the portable aluminum case. The lightweight aluminum case is easy to carry which is ideal for camping or picnic.It is a perfect present for Father’s Day, birthdays, Christmas, wedding and housewarming. +Satisfactory After-sales Service --- We are so confident that you will love our grill tools. If you are not satisfied with the product, please let us know and we will give you a satisfactory reply.",grilljoy,silver,us,464 +B082ZZDL3S,"HaSteeL 32 PCS Grilling Accessories BBQ Grill Set, Stainless Steel Grill Tools with Storage Bag, Complete Grilling Utensil Kit for Backyard Outdoor Barbecue Camping, A Grilling Gift for Men & Women","Professional Safety Quality for Years of Use!

            Anyone who enjoys barbecuing knows that the quality of grilling tools are as important as the taste of food. This grill tools set is made of premium 420 stainless steel
            to resist rust and bending. Solid construction and heavy duty ensure long-term uses.

            Complete 32PCS BBQ Grilling Tools Set:

            ﹒1 x Large 4-in-1 Spatula
            ﹒1 x Small Kitchen Tong
            ﹒1 x Large Power Tongs
            ﹒1 x Strong Grill Fork
            ﹒1 x Long Knife
            ﹒1 x Basting Brush
            ﹒1 x Digital Meat Thermometer
            ﹒1 x Meat Injector
            ﹒1 x Multi-purpose Scissor With Cover
            ﹒1 x Extra Cleaning Brush Head
            ﹒2 x Grill Cleaning Brushes
            ﹒2 x Grill Mats
            ﹒2 x Salt & Pepper Shakers
            ﹒6 x Kabob Skewers
            ﹒8 x Corn Holders
            ﹒1 x Cotton Case
            ﹒1 x Carrying Bag

            A Best Gift for Anyone you loved And Let Him/Her Fall In Love With Cooking!

            From backyard party to camping grilling, the BBQ utensils set is for any social gathering that you host in your house or outdoor. Our BBQ grilling accessories definitely
            will be a sweet gift for men, women and any camping lovers no matter it's a patio barbecue, tailgating, parties, picnics, or camping with friends and family. Let your loved in the family fall in love with cooking!

            Using Tips:

            ● Please wash them with mild detergent thoroughly before first using to remove those residual from manufactory.
            ● Do not allow the thermometer to touch a bone as this will not give an accurate reading on the meat thermometer.
            ● The knife is extremely sharp so please keep it out of reach of children.
            ● Please clean the BBQ tools immediately after using and remember to wipe them dry before storing them into the case.
            ● Please store all grill accessories in cool & dry places.","COMPLETE 32 PCS BBQ TOOL - BBQ accessories have everything you need to cookout like a professional grill master, What you have are 8 x corn holders, 6 x skewers, meat injector, versatile scissor, digital meat thermometer, 2 x pepper shakers and grill mats other than some basic tools +SUPERIOR QUALITY CONSTRUCTION - Grill tools set is made of professional grade stainless steel ensure rust free and durability, Sturdy construction and thick metal can stand the test of time by allow you to immerse yourself in cooking without worrying about it will bend or break +EASY & SAFETY TO USE - You will be impressed by our bbq grill accessories that built with long and heat resistance handles keep you away from heat, Ergonomic design make them more easier to use, Offering a insulated cotton glove to assist you in touching some hot objects directly +PORTABLE & CONVENIENT - Each piece in this grill tools set has a convenient hanging loop that help you to storage them conveniently, Comes with a compact storage bag which keep your tools neatly organized and better protection, Smooth surfaces without burrs are easy to clean +MAKE YOUR BBQ MORE DELICIOUS - Meat injector ensure your meal is more juicy, tender and delicious, Grilling thermometer keeps you informed of how well the food is cooked, A must have for daily cooking, outdoor party and camping, A perfect barbecue gift for men and women",HaSteeL,Stainless Steel Handle,us,465 +B07X2WCR21,"iCOVER 60in Grill Cover, 600D Heavy Duty Waterproof BBQ Grill Cover, UV Resistant & No Fading, for Weber Char Broil Holland Jenn Air Brinkmann Dyna-Glo",,"【Upgraded & Tear-Resistant Material】iCOVER heavy duty waterproof grill cover measures: 60""(width) x 22.5""(depth) x 41""(height). This grill cover is made of 600D polyester oxford fabric back with waterproof PVC coating, and effectively prevent water, dust and snow going through onto your grill. More importantly, the reinforced stitches and bound thickened edges provide added durability which makes your cover can stand test of sharp edges on the grill. +【UV Protective & Fade-Resistant】The UV coating design of this gas grill cover helps to prevent damage and fade from exposure to sunlight and weather, making it ideal for outdoor use and ensuring superior performance and durability. +【Snug Fit & Stable】These bbq grill covers fit grills up to 60 inches wide, fit most brands like: Char Broil, Holland, Jenn Air, Brinkmann, Dyna-Glo DGB495SDP-D 4 Burner Open Cart Propane Gas Grill and so on. The Velcro closure straps at sides help to tighten the covers for a snug fit and keep your bbq cover in place even in strong wind season. +【Decent Protection】The large front air vents can allow the grill to breathe, reducing inside condensation, keeping your grill dry, while minimizing the possibility of being blown off. +At Cover World, we offer One Year Limited manufacturing defect Warranty and 60 Days Money Back Guarantee.",i COVER,Black,us,466 +B07PZDVLW5,"Mr. Heater MH18B Portable Propane Heater, Red",,"4, 000, 9, 000, or 18, 000 BTU per hour +Heats up to 450 sq. ft. +Hi-Med-Low heat settings +Automatic low oxygen shut-off system (ODS) and accidental tip-over safety shut-off +THE USE OF UN-AUTHORIZED ACCESSORIES/ATTACHMENTS WITH THIS HEATER ARE EXPRESSLY PROHIBITED, MAY CAUSE SERIOUS INJURY, AND WILL VOID THE .",Mr. Heater,Red,us,467 +B07BFBDP5B,"Outspark BBQ Whirlpool for Weber Kettle, 22/26.75 WSM Smokey Mountain, Medium Kamado, Big Green Egg, Stainless Steel","Stainless Steel BBQ Whirlpool replacement for weber kettle, WSM smokey mountain, Big Green Egg, Kamado UDS drum smoker and other BBQ smokers. Check size requirements before ordering.","BBQ Medium Whirlpool gives you ultimate cooking experience, Low and Slow Smoking; High Heat Searing; Radiant Heat. Save your fuel and improve the cobustion efficiency of charcoal +Fit for Weber Kettle, 22 /26.75 WSM smokey mountain, Medium Kamado, Big Green Egg and other BBQ kettles +Size: 12"" diameter at the base, 8"" diameter at the top, 5"" tall +Please check size requirements before ordering",Outspark,AA1,us,468 +B08VWF26NT,"2 Pieces BBQ Extra Long Grill Turner and Grill Spatula, Stainless Steel Barbecue Grilling Accessories, Slotted Spatula and Solid Kitchen Spatula with Wooden Handle, 20 Inch","
            Features:

            Extra long design:
            These stainless steel barbecue grilling accessories with extra long handles are good for grilling and turning the medium to large sized food with ease.

            Stainless steel blade:
            Blade is made of stainless steel, presenting a polished and smooth surface, can easily deal with many foods, it won't stain the food residue, convenient to clean, reusable and durable for your long-term needs.

            Specification:
            Material: stainless steel, wood
            Size: approx. 20 inches in full length
            Color: as shown in pictures

            Package content:
            1 x Slotted spatula
            1 x Solid kitchen spatula

            Note:
            Pointed parts include, please use it carefully and keep away from kids.
            Manual measurement, please allow slight errors on size.
            The colors may exist slight difference due to different screens.","Extra long design: these barbecue grilling accessories are about 20 inches in full length, extra long design for managing medium or large part of foods, the long handle lets you flip the steak or other foods with ease while keeping your hands away from fire +Thickened stainless steel material: the blade is made of durable stainless steel and handle is made of wood, stainless steel spatulas are designed with securely riveted smooth wooden handles, rust and corrosion resistant for outdoor cooking, grilling, BBQ use +4-In-1 spatula: this slotted spatula has designed with built-in bottle opener, serrated edge for cutting or grill scraping, side part for tenderizing meat, beveled front edge +Nice gifts for BBQ lover: comes with 2 pieces BBQ extra long stainless steel barbecue grilling accessories in different styles, including 1 piece slotted spatula and 1 piece solid kitchen spatula, the quality material ensures a long time using, wooden handle is comfortable to hold and operate, nice gifts for BBQ lovers, families, friends, chef and more +Multiple purposes: these BBQ extra long grill turner and grill spatula are suitable for flipping, frying or cooking meats, burgers, poultry, vegetables, eggs and more, bring you a considerate cooking experience",Patelai,,us,469 +B085NSXPG4,"ThermoPro TP17H Digital Meat Thermometer with 4 Temperature Probes, HI/LOW Alarm Smoker Food Thermometer with Colored Backlit LCD, BBQ Thermometer for Cooking Grilling Kitchen Oven Barbecue Turkey",,"Multi Color backlit display and 4 color-coated probes: Meat probe thermometer for cooking has a one of a kind, large 3.3 inch multi colored backlit and 4 colored probes to let you monitor multiple pieces of meat or your BBQ temp without confusion +Touch activated backlit display: Digital cooking thermometer for grilling and smoking features a one touch multi color backlight to easily check temps and adjust settings in all light conditions +Highly accurate and wide temperature range: Grilling thermometer has oven safe food grade, stainless steel probes boast a wide temp range of 14˚f to 572˚f with the highest accuracy of ±1.8°f/1°c and fast read times of 1-2 seconds +6 USDA meat presets and BBQ HI/LOW temp alarm: Oven safe meat thermometer is programmed with 6 USDA preset temperatures to help you cook like a pro. The BBQ HI/LOW temp range alarm will alert you if need to add more fuel to your BBQ/smoker, never run out of fuel again +Easy to use and place anywhere : With our fast target temperature setting, quickly duplicate the temperature probe settings to the other probes; Kitchen thermometer for oven hase multiple placement options: Magnetic back, tabletop stand, and hanging hole",ThermoPro,sliver,us,470 +B01HGFBNL6,"Homitt HT-GC01 Grill Cover, 58inch, Black",,"Dimensions: This Homitt bbq cover measures 58""L x 24""W x 48""H, fits most grills with 3 to 4 burners, width between 55 and 58inch. Fits for Weber BBQ grill, along with many other popular brands grill, such as charbroil, Broil King, brinkmann, jenn air, nexgrill, Royal Gourmet, Kenmore etc +Upgraded Premium Material: Our gas grill covers are made of heavy duty waterproof 600D oxford fabric and PVC layer, prevent your grill from water, snow, ultraviolet, dust and so on, keep your barbeque grill clean like new +Fading Resistant: UV resistant design prevents sun damage. UV resistant layer protects the grill cover from fading, extends service life. NOTE: Allow grill to cool before covering +Handles and Straps: Handles at two sides of the cover make it easier to fit and remove. It can also be used for hanging and storage. With two widened velcro straps, you can tighten the cover securely over the grills, so the wind does not blow it away +Durable Sewn: With double sewn for edge and connection, the cover is more durable and rip resistant. (Please check your grill's dimension for proper fit before purchasing)",Homitt,Black,us,471 +B078964VVX,"Westinghouse Outdoor Power Equipment WGen7500DF Dual Fuel Portable Generator 7500 Rated & 9500 Peak Watts, Gas or Propane Powered, Electric Start, Transfer Switch Ready, CARB Compliant",,"7500 Rated Watts & 9500 Peak Watts (Gasoline); 6750 Rated Watts & 8550 Peak Watts (Propane); 6.6 Gallon Fuel Tank With Fuel Gauge; Electric Push-Button Start With Remote Key Fob +Intuitive Control Panel Features Two GFCI 5–20R 120V Household Duplex Outlets and One L14-30R 120/240V 30A Twist-Lock Outlet; Outlets Have Rubber Covers for Added Safety +Plug-and-Play: Comes With a Remote Start Key Fob, 12V Battery Charger, Oil, an Oil Funnel, a Tool Kit, and a User’s Manual To Get You Started Right Out of the Box (Minimal Assembly Required) +Powered by a 420cc Westinghouse 4-Stroke OHV Engine Featuring a Long-Lasting Cast Iron Sleeve With Automatic Low Oil Shutdown and Digital Hour Meter",Westinghouse Outdoor Power Equipment,"Transfer Switch Ready, CARB Compliant",us,472 +B07Y8CCDBP,Double Burner Gas Propane Forge Furnace Blacksmith Knife making w/ 1 Door,"

            Propane Forge is inevitable product for a Blacksmith, Hobbyist, Jewellers & Knife makers. It is ideal for heating and bending of metals, tempering and heat treatment of small knives & agricultural tools.

            Double Burner Propane forge is made from mild steel material and its heating zone is fully insulated with Refractory Ceramic Fiber, which can resist temperature up to 2600°F (1425°C). A rigid block of Refractory Fire Brick placed at the bottom of the forge to resist high velocity firing.

            The powerful burner gives out a neutral flame leaving a small amount of oxygen for scaling. High quality nozzle (pressure – 0 - 21 PSI) increases the efficiency of burner with the help of Air Chock Valve attached on top which regulates the amount of air that is mixed with the propane during combustion.

            Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.

            Specification:

            • Forge Type: Double Burner Forge With One Side Door
            • Burner: Double Burner
            • Burner Nozzle Material: SS-304
            • Forge Body Construction: 16 Gauge (1.5 mm) steel Metal Sheets
            • Forge Internal Dimension: 5.4"" (H) x 5.4"" (W) x 18""(L)
            • Forge Insulation: 1” thick Refractory Ceramic Fibre of 2600°F
            • Floor Insulation: 1” thick Rigid Block of Refractory Fire Brick

            Connection Kit:

            • Gas pressure regulator (Gas pressure 0-21 Psi) with manometer. (direct connect with USA propane tank)
            • 5 ft. (2 Meter) gas hose pipe
            • 2 hose clamp

            Product user manual & assembly instruction provided with packing.

            ","Double Burner Single Door Propane Forge Furnace with 2600 degree capacity +Made by 16 Gauge (1.5 mm) steel Metal Sheets +lined by 1"" thick high density ceramic fiber blanket +Reduce fuel consumption +Our gas pressure regulator connection fit for these countries: UNITED STATES, CANADA, AUSTRALIA, NORWAY, SWEDEN, NEW ZEALAND, FINLAND, and ISRAEL.",Simond Store,,us,473 +B093FC5SB6,"Pellet Smoker Tube, Aliyoham 12'' Stainless Steel BBQ Wood Tube, Hot/Cold Smoking for All Charcoal, Electric, Gas Grills(with 3 S Shape Hooks,1 Cleaning Brush, 1 Silicone Brush)","

            With more time at home, BBQ is an interesting activity for you, your family and your friends coming to your home. If you are tired of normal taste BBQ food and want to try new taste of smoking; If you think buying an expensive smoker machine is unnecessary.

            You need our pellet smoker tube for sure!

            We have everything you need in one package.

            -1xPellet smoker tube

            -1xCleaning Brush 

            -1xSilicone Brush

            -3xS Shape Hooks

            It is also a fantastic gift, we have beautiful box as you can see in picture.

            If you have any question, message us any time!

            ","Aliyoham 12'' smoker tube works with all grills(electric, gas, charcoal) and smokers. It exposes your food to a tasteful smoke of smoldering wood so that brings your favorite flavors to your food. +Put your favorite wood pellets(pecan, hickory, apple, mesquite, oak, cherry, etc.) into the smoker tube. Use a torch ignite it and let it burn well for 5-10 minutes. Then blow out flame and put the tube on the grill. +A smoker tube provides billowing smoke up to 5 hours. It is perfect for both hot and cold smoking pork, beef, chicken, ribs, lamb, cured meat, hot dog, sausages, cheese, fish, nuts, vegetables, fruit, corn, bacon and more. +Premium quality of 304 stainless steel is heat-resistant and anti-corrosive, also it’s safe and easy to clean. Hexagon shape makes the tube stable and prevents rolling around. +Our product has more accessories than others. It comes with 1 cleaning brush, 1 silicone brush and 3 S-shape hooks. Brush oil when grilling, clean after grilling, hang after finishing, tools are all in one box. Just ready to have fun with your family and friends.",Aliyoham,Stainless Steel 304,us,474 +B08TMVDJ6W,"Atatod 14"" W Outdoor Kitchen Drawer Stainless Steel BBQ Triple Drawer Flush Mount for Outdoor Kitchen Island(Overall Size:14"" W x 21"" H x 23"" D inch)","

            Introduction:

            14""inch Width Triple Drawer Unit is uniquely versatile and works with well Next to your BBQ Grill or in your Serving Zones.

            Use the Top Drawer for your Cutlery or Dry Towels, while the Middle & Lower Bottom Drawer has other BBQ Tools or Sauces not used so often.

            Placing a Single Drawer right above this Triple Drawer Unit making Full use of the open storage area below your counter using the Top.

            Size:

            14"" W x 21"" H x 23"" D ( Product Size )

            12"" W x 19"" H (Cut-out )

            Package :

            1 X Stainless Triple Drawer

            1 X English manual

            ","Outdoor Kitchen Triple Drawer;Overall Size:14""W x 21""H x 23""D inch,Cut-Out Size:12""W x 19""H inch +Fully Enclosed Drawer Box – protects against the Weather +High Grade Brushed Finish Stainless Steel:Anti-rust , Easy & Quick Cleanup and Clean Look +Drawer Sizes are all 12 Inch Width by 4.5"" Top, 6.5"" Middle & 8"" Bottom +Blend Perfectly With Most Other Doors ,Drawers and Oother Industry Brands, BBQ Grills and Components",Atatod,Triple Drawer,us,475 +B07J9HK1RB,"Think Gizmos Portable Mini Play BBQ Grill Set for Kids TG712, Fun BBQ Toddler Play Set for Boys & Girls Aged 3 4 5 6+","Fuel your child's imagination with one of the best interactive playset toys for toddlers you can buy…. This fun Play BBQ Set toy will keep curious minds engaged time after time. Each of the parts has been made to make this toy a perfect fit for small hands. Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. How cool! This toddler toy provides hours of entertainment that will also improve any child’s concentration and fine hand skills. It's also manufactured to the highest safety standards and is made from non-toxic recyclable ASB plastic. This awesome cooking playset contains small parts and It's advised children, especially those under the age of three, are closely supervised when within reach of this toy. The perfect choice if you are looking for a toy as a Christmas gift or Birthday present for any small boy or girl. It comes packaged in a box with user manuals in the following languages; English, Spanish, German, French and Italian. This fun Play BBQ Set is recommended for children aged over 3 years and is a ‘ThinkGizmos’ branded product. This superb playset toy comes with everything required in the box (including batteries), making it the perfect gift for any boy or girl. They can just open the box and let the BBQ fun begin.","🍖 BBQ COOKING FUN: This kids play set is small enough to be easily portable as it measures 19.29 In (49cm) High x 15.55 In (39.5cm) Wide x 9.84 In (25cm) Deep when fully assembled. Share the fun of BBQ’s with the children as they can now recreate their own BBQ event with Think Gizmos Play BBQ Set from the Awesome Role Play Series. +🍽️ ALL PARTS INLDUED: This mini portable toddler BBQ Play Set packed with everything needed to recreate an awesome BBQ, including various cooking utensils, plates and colour changing food. +🍖 COLOUR CHANGING FOOD: Unlike other play cooking sets which usually have standard play food, the Cool BBQ Set Toy includes awesome colour changing food which changes colour as it is kept on the cooking area just like real food. +🍽️ LIGHTS AND SOUNDS: Features added lights and sounds on the cooking areas to add to the realism of cooking and will provide hours of fun for boys and girls. A great toddler play set gift for boys and girls aged 3 4 5 or 6. +🍖 FUN AND SAFE: As with other Think Gizmos Toys the Play BBQ Set is made from strong, safe and nontoxic plastic and you won’t need to go searching for batteries or spares as everything needed to play with this toy is provided in the box.",Think Gizmos,,us,476 +B081JMSBPF,"Funny Men Cooking Grilling Aprons Belly BBQ Funny Gag Gifts for Christmas, White Elephant Gift Exchange","FANTASTIC GIFT IDEAS for Father’s Day, Christmas or a Birthday! Get Dad ready for a Summer BBQ with this funny BBQ apron","TOP PRANK GIFT -- the most lifelike body like human’s; absolutely a grab bag gift and brings laughs to everyone in the party; perfect for Christmas party, white elephant party, anniversary, bachelor party, or special day +JUST REAL -- a big belly apron with bushy hair, that’s what fathers look like; an ideal present for fathers, husbands and boyfriends; of course, women and girls can wear this for lots of fun +ADJUSTABLE -- One size fits most; Size: Length is 29.5"" including neck strap 37"" approx, Width 26.3""; give you a snug and comfortable feeling when wearing it +Material:100% Polyester; machine washable +PREMIUM MATERIAL -- 100% Polyester; machine washable; anti-wrinkle and waterproof waist pack, easy to clean and store; an eye-catching apron for BBQ, cooking,grilling Compare with similar items",A AIFAMY,Red,us,477 +B07F7LR53H,Exquisite 12 Pack Premium Round Plastic Dark Blue & White Checkered BBQ Tablecloth - Gingham Checkerboard Disposable Plastic Tablecloth 84 inch. Round,"Overview Made from plastic material, our collection of gingham table covers are certain to meet all of your party needs. Available in a wide variety of colors, our gingham table covers are the perfect addition to any event - from birthday parties to anniversaries, weddings to banquets Item specifications:

            Colors: Red, Blue, Black, Teal

            Sizes: 84 inch. Round, 54 Inch. x 108 Inch. Rectangle 

            What you get: 12 individually wrapped disposable tablecloths

            Uses: These premium quality table covers are great for Bbq's, picnics, camping, outdoors        events, parties, and any other gingham themed event

            ","PREMIUM QUALITY PROTECTION: This 12 pack of 84 in. Round Dark Blue gingham plastic picnic tablecloths, will cover any table up to 8 feet. Unlike your typical paper table clothes these disposable checkered table covers are spill and waterproof!!! +SPILLPROOF: No need to worry about those spills anymore! Our premium red and white gingham plastic picnic tablecloths are waterproof!! +HIGH OPACITY: covers any table with minimal transparency. Great plastic table clothes for parties, weddings, holiday party, thanksgiving dinner, bbq, July 4th, picnics, and any checkered themed event. +DISPOSABLE: Disposable works! When the party is over, cleanup is easy - just roll up the disposable tablecover and dispose of it. +SELECTION: Our heavy duty plastic table covers are available in rectangle and round. cover your tables with our disposable checked table coverings made heavy plastic and sure to hold up well.",Exquisite,Dark Blue,us,478 +B07FSVCSSL,"Detector de Gas Natural, Detector de Fugas de Gas Propano, Detector de Gas Butano, Sensor Portátil de Gas Explosivo, Probador de Gas Metano, GLP, GNL; Sensor de Cuello Flexible","Como el único minorista de este detector de gas Y201, brindamos asistencia de expertos con nuestro químico para responder cualquier pregunta técnica. Compre con confianza; Este dispositivo está cubierto por nuestra garantía de reemplazo de por vida.

            ENCUENTRE FUGAS DE GAS EN CASA:
            Encuentre la ubicación de cualquier fuga de gas natural, propano, LP o combustible al hacer funcionar la sonda del sensor a lo largo de una tubería de gas, línea de combustible o cerca de cualquier olor a gas. Determine las fugas de combustible de su cortadora de césped o automóvil. Una fuga de gas es detectada cuando suena la alarma y se encienden los LED. No pague la tarifa de diagnóstico de un técnico cuando puede encontrar una fuga de gas en cualquier momento con este detector de gas natural y propano.

            PASOS / CONSEJOS DE USO: Vea el video en https://www.amazon.com/vdp/17873f5854174d4db2087794a60238be
            -Para detectar fugas mientras minimiza las falsas alarmas, gire el dial de sensibilidad hacia arriba (+) hasta que el dispositivo comience a emitir una alarma lejos de cualquier fuga de gas. Gire el dial de sensibilidad hacia abajo (-) ligeramente hasta que la alarma se detenga, pero el primer LED permanece encendido. Ahora, cualquier pequeño aumento del nivel de gas (¡debido a una fuga!) hará que suene la alarma.
            -Si suena la alarma antes de encontrar una fuga, se debe disminuir la sensibilidad para evitar falsas alarmas.
            -Permita que el dispositivo caliente el sensor durante 10 segundos hasta que la luz amarilla de ""Warm Up"" se apague.

            ESPECIFICACIONES:
            Sensibilidad máxima: 50 ppm
            Rango de alarma: 10% -40% LEL
            Tiempo de calentamiento: 10s
            Tiempo de respuesta: ≤2s (10% LEL)
            Alarma: visual con 6 LEDs rojos, sonora con frecuencia de tono variable
            Potencia: 3 pilas AAA

            Después de la compra, recibirá el manual del usuario en español por correo electrónico.","MÚLTIPLES GASES DETECTABLES: localiza fugas de gas combustible y fugas explosivas de metano / gas natural, propano, combustible, etano, butano, alcohol, gas de carbón, gasolina, tolueno, queroseno, gas de alcantarillado y otros gases inflamables. +FLEXIBLE Y PORTÁTIL DETECTOR DE FUGAS DE GASES: Doble el cuello del sensor de 12 pulgadas en cualquier dirección a lo largo de las tuberías de gas y las líneas de combustible o dentro de espacios confinados. Alimentado por 3 baterías AAA, este detector de gas portátil se puede llevar a cualquier lugar para encontrar fugas en el exterior o en el interior. +INDICADORES VISUALES / SONOROS DE PRESENCIA GASES: 6 LEDs con alarma de 85dB notifican al usuario de la presencia y concentraciones relativas de fugas de gas natural y propano. +SENSIBILIDAD AJUSTABLE: Aumente el dial de sensibilidad para encontrar pequeñas fugas de gas. Disminuya la sensibilidad para encontrar mayores fugas de gas explosivo mientras filtra las falsas alarmas de los niveles normales de gas. +GARANTÍA DE POR VIDA + DISEÑO ORIGINAL: Como el único minorista de este artículo, respaldamos completamente este producto y lo reemplazaremos si alguna vez se rompe. Contamos con un químico en el personal para responder cualquier pregunta técnica. El eBook (20+ páginas) está en inglés.",EG,,es,479 +B07FSVCSSL,"Y201 Propane and Natural Gas Leak Detector; Portable Gas Sniffer to Locate Gas Leaks of Combustible Gases Like Methane, LPG, LNG, Fuel, Sewer Gas; w/ Flexible Sensor Neck, Sound & LED Alarm, eBook",,"A GAS DETECTOR FOR MOST EVERY COMBUSTIBLE GAS: Locates the source of explosive gas leaks including natural gas or methane, propane, fuel including gasoline or kerosene, sewer gas, alcohol, butane, coal gas, ethane, toluene, and other flammable gases. +PORTABLE & FLEXIBLE GAS LEAK DETECTOR: Powered by 3 AAA batteries, this portable gas detector sniffer can be taken anywhere to find gas leaks indoors or outdoors. Bend 12-inch length sensor neck in any direction along gas pipes or fuel lines in confined spaces to find gas leaks. +VISUAL / AUDIO GAS INDICATORS: 6 LEDs with 85dB tonal alarm notify users of gas leaks and relative concentrations of natural gas & propane. +ADJUSTABLE SENSITIVITY: Increase sensitivity dial to find small gas leaks. Decrease sensitivity to find larger explosive gas leaks while filtering out false alarms from background gas levels. If alarm sounds when turning on detector, sensitivity needs to be decreased toward (-). +LIFETIME USA WARRANTY + ORIGINAL DESIGN: As the only US retailer of this item, we stand fully behind this product and will replace it if it ever breaks! We have a Midwest-based chemist on staff to answer any technical questions. Also included is a 20+ page eBook on Gas and Air Quality Hazards.",EG,,us,479 +B000FDKXN6,"Volcano Grills 3-Fuel Portable Camping Stove/Fire Pit, Charcoal, Collapses Down to 5 inches; for Convenient Portability and Storage (VL-20-300)",,"3-Fuels: Propane, Charcoal, or Wood (connects to standard 20 pound propane tank, or adapter for portable bottles sold separately) +Portable: Collapses down to 5"", fits in carrying case for easy storage and transportation. Sets up in just seconds. +Versatile: grill, Dutch oven, wok, bake, roast, fry, fire pit +Use for camping, tailgating, RV's, emergency preparedness, survival, and prepping +Safe and efficient: 19,500 BTU burner. efficient use of charcoal and wood in the patented cook chamber",Volcano Grills,Charcoal,us,480 +B00LP57K7A,"Napoleon BIPRO665RBNSS Built-In Prestige PRO Natural Gas Grill, Stainless Steel",,"This product is a Natural Gas unit and you must have Natural Gas plumbed out to your patio or deck to be able to use this grill; If you do not have Natural Gas plumbed, please look at our selection of Propane barbecues +7 burner grill with up to 86,000 BTUs +Total cooking area: 1000 sq. In +Dual-Level, individual stainless steel sear plates that allow consistent, even heat and continuous grease run off +9.5 Mm stainless steel wave cooking grids",Napoleon,Stainless Steel,us,481 +B07GC2F1YW,"Z Grills ZPG-7002E 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, 700 sq in Sliver",,"ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq✓bake✓roast✓braise✓smoke✓grill✓sear✓char-grill, you can do everything on here +PELLET GRILL TECHNOLOGY - It’s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill +MAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady +FOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180° to 450° F Adjustable temperature range gives you great flexibility for different food +LESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly",Z GRILLS,700 Silver,us,482 +B08V521V9N,Camplux Outdoor Portable Hot Water Heater Propane Instant 2.11 GPM On Demand Camping Gas Tankless Water Heater,,"Portable Design. This portable water heater weights 14 lb, which is perfect for outdoor camping and road trips. +Easy to Install. The propane tankless water heater only takes you 5 minutes to get 2.11 GPM instant hot water. The tankless water heater is powered by 2 pcs size D batteries. +3.0 PSI Water Pressure Start. The propane portable water heater lights when water pressure between 3.0-110 PSI. 3.0 PSI low water pressure is perfect for campings and remote cabins. +Energy Saving. The outdoor portable hot water heater exchanger and main burner are desinged with advanced combustion technology to decrease gas consumption and burning noise. Maximum power output 55,000btu/hour. +Important Tips. To avoid gas leakage caused by improper sealing of the water heater, DO NOT TWINE TEFLON TAPE between gas regulator and gas inlet pipe. The portable gas water heater will ""caught on fire ""with improper operation. Always check gas leakage before operation.",CAMPLUX ENJOY OUTDOOR LIFE,White,us,483 +B08BZ7FNRM,"GloryShine Fire Pit Cover Square, Waterproof 600D Heavy Duty Square Patio Fire Pit Table Cover (31 inch x 31 inch x 24 inch)",,"Cover size: 31in(L) x 31in(W) x 24in(H), fits TACKLIFE Propane Fire Pit Table / BALI OUTDOORS Firepit / LEGACY HEATING 28-Inch Square Gas Fire Pit Table / Diophros Propane Gas Fire Pit Table +Made of premium quality 600D density fabric and PVC coating, the fire pit cover is durable,anti-hook and 100% waterproof and weatherproof, protects your fire pit against rain, snow, sun, dirt and won't crack in the cold +Come with drawstring, adjustable and keep the cover in place, inhibiting flapping and blow-ups when windy +Cover fit for Endless summer, Blue Rhino, Bond Lari, Xtremenpower US, Myrtle, Hamtpon Bay, Hiland Gas Firepit Models. +Fits the following firepit models and other firepits of this size: GAD1429SP, GAD1423M, Hiland GSF-PR-PC, Bond and Lori Fire Table, XtremepowerUS, Bond Rockwell 68156, Belleze 30 inch and other fire tables.",GloryShine,,us,484 +B088B7KYC2,"Z Grills ZPG-1000D 2020 New Model 8 in 1 BBQ Grill Auto Temperature Control, 1000 sq in Bronze",,"★ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, sear, braise, barbeque or char-grill +★PELLET GRILL TECHNOLOGY--★ FLAVOR--There just isn’t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you’ll taste the difference from a GAS or CARBON grill; ★ ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; ★EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS +★EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. ★EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. ★EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. ★EASY TO MOVE--Upgraded cart with locking caster wheels. +★2020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180°f to 450°f. +★AUTOMATED ELECTRIC FEED SYSTEM--Maintains the heat within 10 degrees of the set temperature for you from 180ºf to 450ºf and produce the optimal amount of smoke. Just set it and let it work: No more babysitting. Enjoy the cooking!★FAN-FORCED CONVECTION COOKING--Eliminates the need for a rotisserie and creates a versatile environment for grilling, roasting, smoking, braising and baking.Whether you want to grill some hot dogs or slow smoke a rib roast, pellet grills can do it all with ease.",Z GRILLS,Bronze,us,485 +B00BM9RD4Y,"Mary Lake-Thompson BBQ Picnic 9-inch Melamine Plates, Set of 4","These faux paper plates are sure to be a conversation starter at your next garden tea party or picnic. At first glance, they look like traditional paper plates but pick them up, and you'll find they're made of sturdy, long-lasting melamine. No more worries about spilled meals because of a flimsy plate. What's more, they're dishwasher safe. Just be sure to keep them from the microwave or oven.","They look like paper plates but they're actually durable melamine +Printed with summer BBQ food designs by Mary Lake-Thompson +Sturdy weight with a smooth matte finish +Great for garden parties, picnics and kids; matching platter also available +9"" in diameter; dishwasher-safe, no microwave or oven",Mary Lake-Thompson,"red, white, yellow",us,486 +B00KUJCH66,"Grillaholics Grill Mat - Set of 2 Heavy Duty BBQ Grill Mats for Outdoor Grill - Non Stick, Reusable, and Easy to Clean - Lifetime Manufacturers Warranty","

            THE SECRET TO GRILLING LIKE A PRO

            Are you tired of LOSING YOUR FOOD TO THE GRILL? Its FRUSTRATING! Tugging at that perfectly marinated chicken breast that sits ruined and stuck to your grill. How about the spears of asparagus falling through the cracks? NEVER AGAIN!

            THE FUTURE OF GRILLING IS HERE: INTRODUCING THE GRILLAHOLICS GRILL MAT - THE ULTIMATE GRILL MAT FOR YOUR NEXT BBQ

            • Set of two 15.75"" x 13"" mats made from heavy duty PTFE (PFOA Free) that makes grilling a dream.
            • Keeps your food from falling between the grates and allows for evenly grilled food every time. You can even see the grill marks on your food.
            • Perfect for chicken wings ribs burgers steaks fish shrimp fruits vegetables breakfast and even pizza.
            • Can be placed on top of any grilling space (charcoal gas or electric) and recommended with temperatures up to 500 F.
            • 100% non-stick and dishwasher safe...use it OVER and OVER AGAIN. No more ruined dinners and clean-up is a breeze.
            • Note:","[Perfect] Thicker does not mean better. We tested multiple thicknesses before developing our mats. Our grill mat is thin enough to leave grill marks and flavor intact, yet thick enough to provide ultimate heat resistance and durability. With our Lifetime Replacement Guarantee, 2 mats is all you'll ever need. NEVER buy another grill mat again. +[Multipurpose] Our cooking mat works with any kind of barbecue grill - Weber, Charbroil, Big Green Egg, smoker, charcoal, propane, gas, or electric. Better than any grill pan or basket, our mat can be cut to any size or shape to fit any need. Also doubles as a bake mat. +[No Mess] Never BBQ on a nasty, dirty grill grate AGAIN. Keeps your food from falling between the grates or sticking to the grill. In no time, you'll be grilling like a pro. Reusable and dishwasher safe makes cleanup a breeze. +[Safe] These grill toppers are made from premium heat resistant PTFE-Fiberglass coating and contain no PFOA, silicone, or other harmful chemicals. They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust. +[Experience the Grillaholics Promise] All of our products are backed by the Grillaholics Promise, which means you can purchase with confidence knowing that you’ll get a product you love or we’ll do whatever it takes to make it right. Try yours without risk. Consider getting 2 - 1 for you and 1 for your very best friend.",Grillaholics,,us,487 +B06ZYM3MSW,"Z Grills ZPG-7002B 2020 Upgrade Wood Pellet Grill & Smoker, 8 in 1 BBQ Grill Auto Temperature Controls, inch Cooking Area, 700 sq in Black",,"ULTIMATE 8-IN-1 WOOD PELLET GRILL & SMOKER - bbq✓bake✓roast✓braise✓smoke✓grill✓sear✓char-grill, you can do everything on here +PELLET GRILL TECHNOLOGY - It’s the best and easiest way to get wood-smoked flavors. Anyone will instantly realize the taste is better than a gas or charcoal grill +MAKES YOU A GOOD CHEF - One button starts up, this pellet grill will maintain the preset temperature within 10 degrees fluctuation and produce the optimal amount of smoke, easy and steady +FOR FAMILIES AND PARTIES - Features 700 sq inches of wide cooking space that allows you to place all at once and cook efficiently, 180° to 450° F Adjustable temperature range gives you great flexibility for different food +LESS PELLET FILLING, MORE SMOKING - The 20 lbs large-capacity pellet hopper offers a longer cooking time, eliminating the need to refill the hopper constantly",Z GRILLS,Black,us,488 +B07VW72J5D,"Taimasi 34Pcs BBQ Grill Accessories Tools Set, 16 Inches Stainless Steel Grilling Tools with Carry Bag, Thermometer, Grill Mats for Camping/Backyard Barbecue, Grill Tools Set for Men Women",,"[Premium Stainless Steel]: Our grill accessories are made from premium food grade stainless steel, which is BPA FREE, durable, rust proof, unbreakable and dishwasher safe. And each long-handle bbq tool has a convenient hanging loops that help you storage them easily. +[Most Complete Set]: Taimasi 34Pcs bbq set is the most complete grill accessories set on the market that includes everything you need. It includes long-handled grill tongs, spatula, fork, tongs with wide side and hollow design, meat knife, 2 basting brushes, 2 grill cleaning brushes, meat injector, meat thermometer, pepper & salt shakers, 8 corn holders, 6 skewers, grill glove, carry bag, small knife and fork, 2 grill mats, kitchen shears. +[Durable & Safe]: Every bbq master should have a set of heat resistant long-handled grill tools to ensures that you can cook your meat from a safe distance without worry of getting burned. Our set has the most commonly found and useful long-handled stainless steel tools, more durable and safe than wood or rubber-handle tools as they will not crack or melt after extended use. +[More Professional Than Others]: Taimasi grill set contain more professional bbq accessories than others. Two different types of bbq brushes for cleaning all kinds grill after it cooled down. An digital meat thermometer can prevent people from over-cooking their meat. And 2 grill mats offers an individual way to cook delicate meats like fish, without surrending them to the flames below. +[The Best Gift]: It is a great gift for any occasion, perfect for father’s day, birthdays, Christmas, and more. All of our bbq accessories are thoroughly tested before we ship them out to you. If it does not suit you for any reason, please contact us, we will take care of it in 12 hours!",Taimasi,standard,us,489 +B081X7ZB4Q,"Z GRILLS ZPG-6002B 2020 New Model Wood Pellet Grill & Smoker 6 in 1 BBQ Grill Auto Temperature Control, 573, 601 sq in Copper",,"★ULTIMATE 8-IN-1--Barbecue wood fire pellet grill: grill, smoke, bake, roast, braise, barbeque. +★SEARING ENABLED: Temperature can goes as high as 1000℉. Just open the air door to sear and adjust the tempterature control to the Maximum, then then grill will change to searing mode. +★PELLET GRILL TECHNOLOGY--★ FLAVOR--There just isn’t an easier way to get the flavor of wood smoked food than with a pellet grill. Try it and you’ll taste the difference from a GAS or CARBON grill; ★ ACCURACY--Most stay within 10 degrees of the set temperature, no matter if its 10 degrees or 110 degrees outside; ★EFFICIENCY--You can cook for about 20 hours per 20 lbs. of pellets. When you do the math, you will find that pellet cooking typically costs less than a comparably sized GAS +★EASIER THAN YOU THOUGHT--One button starts up and temperature control eliminates starter fluid. No need to run to the local station to trade in your propane. ★EASY TO USE--Electronic AUTO-Start Ignition, Digital Auto Temperature Control, LED temperature readout. Super easy cooking even for beginners. ★EASY TO CLEAN--Special Designed Waste Oil Collector to assist you with safe and easy cleanup. ★EASY TO MOVE--Upgraded cart with locking caster wheels. +★2020 NEW MODEL--More Precise Temperature Control and Pellet Feed Control System. The new upgrade digital control board auto ignites the grill and allows you to set the cooking temperature from 180°f to 450°f.",Z GRILLS,ZPG-6002B,us,490 +B01HXQTNVK,"Aoocan Grill Mat - Set of 5 Heavy Duty BBQ Grill Mats Non Stick, BBQ Grill & Baking Mats - Reusable, Easy to Clean Barbecue Grilling Accessories - Work on Gas Charcoal Electric - Extended Warranty","

              Each set has 5 of the highest quality grill mats that makes grilling anything easy!

              Aoocan non-stick grill mats are perfect when cooking at home, and also ideal for cookouts in parks and campgrounds to provide an instantly clean surface to cook on.

              Instead of BBQ sauce causing food to stick and become mangled or burnt, it will flip over easily to remain intact, and cook to perfection. This results in better tasting food, but also makes cleaning up afterward far easier and less time consuming. It will not retain or transfer tastes or odors between uses.

              You would never think of frying an egg on your regular grill, but with one of these mats down, you can prepare a full breakfast in a matter of minutes.

              They are totally washable and reusable. Almost like a thin, flexible pan, they are made from fiberglass fabric coated PTFE (Teflon) similar to what is used for non-stick pots and pans. This means that you can cook without oils, and cleaning up is simple because everything will slide right off.

              For larger grills you can use multiple mats, side by side, and for larger meals, you can even flip one over to keep on cooking with the clean side up to preserve flavours.

              These BBQ mats are also perfect for baking! Can be cut to fit your toaster oven, pans and cookie tins for cooking, roasting, baking and frying.

              These mats can be used to grill ANYTHING because nothing will fall through the grates or get scorched! These mats are perfect for grilling...

              -Veggies
              -Shrimp
              -Fish
              -Bacon
              -Pizza
              -Pancakes
              -Eggs
              -Anything else you want to put on the grill!

              BBQ Grill Mats Size: 15.75"" x 13""

              ","A FAVORITE OF BARBECUE LOVERS.Our grill mats can keeps your food from falling between the grates or sticking to the grill!,and oil drips onto the wood carbon to create smoke.Our grill mat is very smooth and will not stick to food easily,It makes you look like a pro ,enjoy a better barbecue. +EASY TO CLEAN & HIGH TEMPERATURE RESISANT.Our grill mat is very easy to clean. When you finish the barbecue, you just need to wash it with clean water and dry it in the sun. Then you don't need to worry about dirty barbecue grill.They can withstand temperatures up to 500 degrees Fahrenheit and will not burn. Keep your family safe with a brand you can trust. +SECURITY ASSURANCES.It has passed LFGB food-grade certification, which is harmless to food and makes your diet healthier.Thicker grill mats dose not mean better. We have tested it numerous times to get the best thickness we can get at the moment, and to ensure enough heat resistance so that the food you grill will still tastes better. +MULTIPURPOSE--While you're baking or microwaving your food, you can also use our grill mat instead of a plate to keep food from falling off and contaminating your device. It can be reused and has a long service life of at least 100 times. No need to others barbecue MATS. +BEST OF ALL - Best value in bbq grill accessories! If you're not completely satisfied, we'll make it right or your money back. Why wait? Try yours RISK FREE! Warning: do not let grease accumulate due to risk of grease fire. If you have any question about it, just tell us and we will provide you a satisfied solution.",Aoocan,5Black,us,491 +B08DTXWRB5,"Traeger Grills PEL331 Signature Blend 100% All-Natural Hardwood Pellets (20 lb. Bag) & Grills PEL314 Pecan 100% All-Natural Hardwood Pellets Grill, Smoke, Bake, Roast, Braise and BBQ, 20 lb. Bag",,"Product 1: Never use gas or charcoal again: traeger Premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food +Product 1: Enhance flavor: A perfect blend of hickory, maple, and Cherry hardwoods that pair perfectly with your favorite cut of beef +Product 1: Real wood pellets: Made from 100% all-natural hardwood with no binding agents or fillers +Product 1: Amazing wood-fired taste: Add pure hardwood flavor to everything you grill, smoke, bake, roast, braise and BBQ +Product 2: Never use gas or charcoal again: Traeger premium wood pellets deliver unmatched pure, hardwood taste and ensure perfect blue smoke to flavor your food",Traeger,,us,492 +B072KLKZD7,"Slim Jim Monster Honey Bbq Stick, 18 Count (JERKYS)",Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack )
              Fresh and original products directly from the manufacturer
              We provide excellent customer service. Your question will be answered in less than 12 hrs.
              Customer is our first priority,Slim Jim Monster Honey Bbq Stick 1.94 Oz Each ( 18 In A Pack ),Slim Jim,,us,493 +B07748V3PL,"Fasmov 30 x 48 inches Under Grill Mat, Reusable Outdoor Grill Floor Mat, Under Grill Floor Mats to Protect Deck, BBQ Mat for Under BBQ, Absorbent Oil Pad Protector for Decks and Patios","This durable and stain-resistant mat protects cement, wood and synthetic decking from the spills and stains that are inevitable when you're getting your grill on. The waterproof layer traps any spills from BBQ messes and prevents any liquid or grease from soaking through to damage or stain the surface below. Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills.","Made of high quality Polyester Fiber and PVC Back Pad which is durable and have long service time without fade and worn. Waterproof and oil proof, can be a good helper in BBQ activity, with a neutral charcoal color that looks great on any surface and with most grills. +Grill Mat measuring 30 inches by 48 inches, this protective mat stays safely in place under your grill to collect any spills, splatters and other messes, very easy to cut according to your size. This provides additional protection for your outdoor using area and helps to prevent slips and falls. +Reusable and easy to clean, simply spray it down with a hose or hand wash with warm soapy water when it comes time to clean it. This allows the mat to be used season after season. +Easy to roll up for compact storage during the off season Neutral charcoal material looks great on any surface and with most grills. +Protect your deck, patio, or garage floor from water, sauce, grease, and oil, fits for most grills, smokers, and griddles. It's a great way to keep brick, concrete, stone patios, and wooden decks protected while grilling.",Fasmov,Charcoal,us,494 +B08V4RVHJ6,"Camplux 2.64 GPM Propane Gas Water Heater, Outdoor Camping Tankless Water Heater with Digital Display, White","

              Features

              1.The Camplux BW264 is ideal for camping, beach or family vacations mountain cabins horse stables etc.

              2.It can be also mounted indoors where is well ventilated if a flue pipe is intalled additionally.(the flue pipe not included)

              3.Camplux water heater is with innovative combustion tecnology and advanced multiple protection systems to ensure your safety.

              4.Turn the ignition on with 2 ""D"" batteries whenever electricity is not accessible!

              5.Applicable water pressure from 3.6-110.0 PSI.Hot water output 2.64 gallons per minute, work easily with great performance.

              6.The operating propane gas pressure is 0.4PSI with maximum power output 68,000btu/hour.

              7.The system also works great on modified water systems with a 12 volt water pump.

              8.The gas water heater can't be used for drinking water.

              Warm Remind:  Please always operate the tankless water heater as per users manual guide ,connect gas regulator and gas inlet brass fittings by torque wrench with torque force between 20-28 Nm, be aware of possible gas leakage before using .

              Easy to Use

              Get the instant portable gas hot water system that's easy to set up and use!

              1. Install the gas water heater on the wall.

              2. Connect the gas cylinder with the supplied gas hose and regulator.

              3. Connect shower hose and shower head to the hot water outlet.

              4. Connect water hose to the water inlet.

              5. Insert 2 size ""D"" batteries.

              6. Enjoy instant hot water!

              What's in the Box

              1 x Camplux 10L tankless water heater

              1 x 5""ft 3 setting ON/OFF shower head and pedestal

              1 x 5""ft CSA approval gas hose & regulator

              =5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/trello/provider/__init__.py b/trello/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/trello/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/trello/provider/app.py b/trello/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/trello/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/trello/provider/provider.py b/trello/provider/provider.py new file mode 100644 index 000000000..5f4e833ae --- /dev/null +++ b/trello/provider/provider.py @@ -0,0 +1,62 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + +OPTIONAL_PARAMS = ( + "idBoards", + "idOrganizations", + "idCards", + "modelTypes", + "board_fields", + "boards_limit", + "board_organization", + "card_fields", + "cards_limit", + "cards_page", + "card_board", + "card_list", + "card_members", + "card_stickers", + "card_attachments", + "organization_fields", + "organizations_limit", + "member_fields", + "members_limit", + "partial", +) + + +def search(query) -> list[dict[str, Any]]: + url = "https://api.trello.com/1/search" + assert (key := app.config.get("API_KEY")), "TRELLO_API_KEY must be set" + assert (token := app.config.get("API_TOKEN")), "TRELLO_API_TOKEN must be set" + + params = { + "query": query, + "key": key, + "token": token, + } + + for optional_param in OPTIONAL_PARAMS: + value = app.config.get(optional_param.upper()) + + if value is not None and value != "": + params[optional_param] = value + + response = requests.get( + url, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() diff --git a/trello/pyproject.toml b/trello/pyproject.toml new file mode 100644 index 000000000..0931be61f --- /dev/null +++ b/trello/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "trello" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/vespa/.env-template b/vespa/.env-template new file mode 100644 index 000000000..f2288a9b1 --- /dev/null +++ b/vespa/.env-template @@ -0,0 +1,3 @@ +VESPA_SERVER_URL=http://localhost:8080 +VESPA_CONNECTOR_API_KEY=abcdefg1234567890 +VESPA_CONNECTOR_FIELD_MAPPING={"description":"text","name":"title"} diff --git a/vespa/README.md b/vespa/README.md new file mode 100644 index 000000000..671a508be --- /dev/null +++ b/vespa/README.md @@ -0,0 +1,79 @@ +# Vespa Quick Start Connector + +A simple connector that will connect Vespa with Cohere. + +## Limitations + +The Vespa connector will perform a full-text search on all sources of the specified Vespa server, and return the key-value documents as-is. Note that it is highly recommended to set the `VESPA_CONNECTOR_FIELD_MAPPING` environment variable so you can specify a `text` and `title` key for Cohere to ingest. See the `.env-template` for an example. + +## Configuration + +This connector requires the following environment variables: + +``` +VESPA_SERVER_URL + +This variable should contain the hostname of the Vespa instance. +``` + +``` +VESPA_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional configuration + +``` +VESPA_CONNECTOR_FIELDS_MAPPING + +This variable may contain a JSON object mapping Vespa fields +to Cohere fields(key is Vespa field, value is Cohere field). +If it is not set, the response fields will be returned as is. +``` + +A `.env-template` file is provided as a reference. + +## Development + +Start Vespa and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +This will bring up Vespa, deploy a simple application, and fill it with sample data. If you need to start the Vespa +service again later, +it can be started again without needing to load the data: + +```bash + $ docker-compose up +``` + +Next, create a virtual environment and install dependencies with poetry. We recommend using in-project virtual +environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Start the connector's server: + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything works: + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/vespa/dev/app/schemas/bbq.sd b/vespa/dev/app/schemas/bbq.sd new file mode 100644 index 000000000..e3cd553bf --- /dev/null +++ b/vespa/dev/app/schemas/bbq.sd @@ -0,0 +1,37 @@ +schema bbq { + document bbq { + field id type string { + indexing: summary | attribute + } + field name type string { + indexing: summary | attribute + index: enable-bm25 + } + field description type string { + indexing: index | summary + index: enable-bm25 + } + field features type string { + indexing: index | summary + index: enable-bm25 + } + field brand type string { + indexing: index | summary + index: enable-bm25 + } + field color type string { + indexing: index | summary + index: enable-bm25 + } + field country type string { + indexing: index | summary + } + field rank type int { + indexing: summary | attribute + } + } + + fieldset default { + fields: name, description, features, brand, color + } +} diff --git a/vespa/dev/app/services.xml b/vespa/dev/app/services.xml new file mode 100644 index 000000000..d1dc038ce --- /dev/null +++ b/vespa/dev/app/services.xml @@ -0,0 +1,17 @@ + + + + + + + + + 1 + + + + + + + + diff --git a/vespa/dev/launch-and-install.sh b/vespa/dev/launch-and-install.sh new file mode 100755 index 000000000..f2cb8adc5 --- /dev/null +++ b/vespa/dev/launch-and-install.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# start Vespa +bash /usr/local/bin/start-container.sh & + +# wait until Vespa config server is ready +until curl -s http://localhost:19071/state/v1/health; do sleep 5; done + +# deploy application +/opt/vespa/bin/vespa-deploy prepare /opt/vespa/conf/vespa +/opt/vespa/bin/vespa-deploy activate + +# keep container running +tail -f /dev/null diff --git a/vespa/dev/load_data.py b/vespa/dev/load_data.py new file mode 100644 index 000000000..83d353011 --- /dev/null +++ b/vespa/dev/load_data.py @@ -0,0 +1,40 @@ +import csv +import json +import os + +import requests + +VESPA_HOST = os.getenv("VESPA_HOST", "vespa") +VESPA_PORT = os.getenv("VESPA_PORT", 8080) + + +if __name__ == "__main__": + with open("./bbq.csv", "r") as datafile: + reader = csv.DictReader(datafile) + doc_count = 0 + for row in reader: + document = { + "fields": { + "id": row["ID"], + "name": row["Name"], + "description": row["Description"], + "features": row["Features"], + "brand": row["Brand"], + "color": row["Color"], + "country": row["Country"], + "rank": int(row["Rank"]), + } + } + response = requests.post( + f"http://{VESPA_HOST}:{VESPA_PORT}/document/v1/bbq/bbq/docid/{row['ID']}", + data=json.dumps(document), + ) + doc_count += 1 + if response.status_code != 200: + print( + f"Failed to load document {row['ID']}. Response code:", + response.status_code, + ) + break + else: + print(f"Loaded {doc_count} documents") diff --git a/vespa/docker-compose.yml b/vespa/docker-compose.yml new file mode 100644 index 000000000..2c1c4aebc --- /dev/null +++ b/vespa/docker-compose.yml @@ -0,0 +1,48 @@ +version: "3" +services: + vespa: + image: vespaengine/vespa + entrypoint: /launch-and-install.sh + ports: + - "8080:8080" + - "19070:19070" + - "19071:19071" + - "19092:19092" + volumes: + - ./dev/app:/opt/vespa/conf/vespa + - ./dev/launch-and-install.sh:/launch-and-install.sh + healthcheck: + test: + [ + "CMD-SHELL", + "curl --silent --fail http://vespa:8080/ApplicationStatus || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + networks: + - vespa-network + + data-loader: + image: python:3.11 + environment: + VESPA_HOST: "vespa" + VESPA_PORT: "8080" + depends_on: + vespa: + condition: service_healthy + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/code/load_data.py + command: > + bash -c " + pip install --no-cache-dir requests && + python /code/load_data.py" + profiles: + - tools + networks: + - vespa-network + +networks: + vespa-network: + driver: bridge diff --git a/vespa/poetry.lock b/vespa/poetry.lock new file mode 100644 index 000000000..3c40785c5 --- /dev/null +++ b/vespa/poetry.lock @@ -0,0 +1,648 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.4" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, + {file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.0-py3-none-any.whl", hash = "sha256:b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60"}, + {file = "jsonschema-4.18.0.tar.gz", hash = "sha256:8caf5b57a990a98e9b39832ef3cb35c176fe331414252b6e1b26fd5866f891a4"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.6.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.6.1-py3-none-any.whl", hash = "sha256:3d2b82663aff01815f744bb5c7887e2121a63399b49b104a3c96145474d091d7"}, + {file = "jsonschema_specifications-2023.6.1.tar.gz", hash = "sha256:ca1c4dd059a9e7b34101cf5b3ab7ff1d18b139f35950d598d629837ef66e8f28"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, + {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, + {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, + {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, + {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, + {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, + {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, + {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, + {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, + {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, + {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, + {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, + {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, + {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, + {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, + {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, + {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, + {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, + {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, + {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, + {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, + {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, +] + +[[package]] +name = "referencing" +version = "0.29.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.29.1-py3-none-any.whl", hash = "sha256:d3c8f323ee1480095da44d55917cfb8278d73d6b4d5f677e3e40eb21314ac67f"}, + {file = "referencing-0.29.1.tar.gz", hash = "sha256:90cb53782d550ba28d2166ef3f55731f38397def8832baac5d45235f1995e35e"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.8.10" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.8.10-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:93d06cccae15b3836247319eee7b6f1fdcd6c10dabb4e6d350d27bd0bdca2711"}, + {file = "rpds_py-0.8.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3816a890a6a9e9f1de250afa12ca71c9a7a62f2b715a29af6aaee3aea112c181"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7c6304b894546b5a6bdc0fe15761fa53fe87d28527a7142dae8de3c663853e1"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ad3bfb44c8840fb4be719dc58e229f435e227fbfbe133dc33f34981ff622a8f8"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:14f1c356712f66653b777ecd8819804781b23dbbac4eade4366b94944c9e78ad"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:82bb361cae4d0a627006dadd69dc2f36b7ad5dc1367af9d02e296ec565248b5b"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2e3c4f2a8e3da47f850d7ea0d7d56720f0f091d66add889056098c4b2fd576c"}, + {file = "rpds_py-0.8.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:15a90d0ac11b4499171067ae40a220d1ca3cb685ec0acc356d8f3800e07e4cb8"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:70bb9c8004b97b4ef7ae56a2aa56dfaa74734a0987c78e7e85f00004ab9bf2d0"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d64f9f88d5203274a002b54442cafc9c7a1abff2a238f3e767b70aadf919b451"}, + {file = "rpds_py-0.8.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ccbbd276642788c4376fbe8d4e6c50f0fb4972ce09ecb051509062915891cbf0"}, + {file = "rpds_py-0.8.10-cp310-none-win32.whl", hash = "sha256:fafc0049add8043ad07ab5382ee80d80ed7e3699847f26c9a5cf4d3714d96a84"}, + {file = "rpds_py-0.8.10-cp310-none-win_amd64.whl", hash = "sha256:915031002c86a5add7c6fd4beb601b2415e8a1c956590a5f91d825858e92fe6e"}, + {file = "rpds_py-0.8.10-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:84eb541a44f7a18f07a6bfc48b95240739e93defe1fdfb4f2a295f37837945d7"}, + {file = "rpds_py-0.8.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f59996d0550894affaad8743e97b9b9c98f638b221fac12909210ec3d9294786"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9adb5664b78fcfcd830000416c8cc69853ef43cb084d645b3f1f0296edd9bae"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f96f3f98fbff7af29e9edf9a6584f3c1382e7788783d07ba3721790625caa43e"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:376b8de737401050bd12810003d207e824380be58810c031f10ec563ff6aef3d"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d1c2bc319428d50b3e0fa6b673ab8cc7fa2755a92898db3a594cbc4eeb6d1f7"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73a1e48430f418f0ac3dfd87860e4cc0d33ad6c0f589099a298cb53724db1169"}, + {file = "rpds_py-0.8.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:134ec8f14ca7dbc6d9ae34dac632cdd60939fe3734b5d287a69683c037c51acb"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4b519bac7c09444dd85280fd60f28c6dde4389c88dddf4279ba9b630aca3bbbe"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9cd57981d9fab04fc74438d82460f057a2419974d69a96b06a440822d693b3c0"}, + {file = "rpds_py-0.8.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:69d089c026f6a8b9d64a06ff67dc3be196707b699d7f6ca930c25f00cf5e30d8"}, + {file = "rpds_py-0.8.10-cp311-none-win32.whl", hash = "sha256:220bdcad2d2936f674650d304e20ac480a3ce88a40fe56cd084b5780f1d104d9"}, + {file = "rpds_py-0.8.10-cp311-none-win_amd64.whl", hash = "sha256:6c6a0225b8501d881b32ebf3f5807a08ad3685b5eb5f0a6bfffd3a6e039b2055"}, + {file = "rpds_py-0.8.10-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:e3d0cd3dff0e7638a7b5390f3a53057c4e347f4ef122ee84ed93fc2fb7ea4aa2"}, + {file = "rpds_py-0.8.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d77dff3a5aa5eedcc3da0ebd10ff8e4969bc9541aa3333a8d41715b429e99f47"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41c89a366eae49ad9e65ed443a8f94aee762931a1e3723749d72aeac80f5ef2f"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3793c21494bad1373da517001d0849eea322e9a049a0e4789e50d8d1329df8e7"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:805a5f3f05d186c5d50de2e26f765ba7896d0cc1ac5b14ffc36fae36df5d2f10"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b01b39ad5411563031ea3977bbbc7324d82b088e802339e6296f082f78f6115c"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3f1e860be21f3e83011116a65e7310486300e08d9a3028e73e8d13bb6c77292"}, + {file = "rpds_py-0.8.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a13c8e56c46474cd5958d525ce6a9996727a83d9335684e41f5192c83deb6c58"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:93d99f957a300d7a4ced41615c45aeb0343bb8f067c42b770b505de67a132346"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:148b0b38d719c0760e31ce9285a9872972bdd7774969a4154f40c980e5beaca7"}, + {file = "rpds_py-0.8.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3cc5e5b5514796f45f03a568981971b12a3570f3de2e76114f7dc18d4b60a3c4"}, + {file = "rpds_py-0.8.10-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:e8e24b210a4deb5a7744971f8f77393005bae7f873568e37dfd9effe808be7f7"}, + {file = "rpds_py-0.8.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b41941583adce4242af003d2a8337b066ba6148ca435f295f31ac6d9e4ea2722"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c490204e16bca4f835dba8467869fe7295cdeaa096e4c5a7af97f3454a97991"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ee45cd1d84beed6cbebc839fd85c2e70a3a1325c8cfd16b62c96e2ffb565eca"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a8ca409f1252e1220bf09c57290b76cae2f14723746215a1e0506472ebd7bdf"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96b293c0498c70162effb13100624c5863797d99df75f2f647438bd10cbf73e4"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4627520a02fccbd324b33c7a83e5d7906ec746e1083a9ac93c41ac7d15548c7"}, + {file = "rpds_py-0.8.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e39d7ab0c18ac99955b36cd19f43926450baba21e3250f053e0704d6ffd76873"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ba9f1d1ebe4b63801977cec7401f2d41e888128ae40b5441270d43140efcad52"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:802f42200d8caf7f25bbb2a6464cbd83e69d600151b7e3b49f49a47fa56b0a38"}, + {file = "rpds_py-0.8.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d19db6ba816e7f59fc806c690918da80a7d186f00247048cd833acdab9b4847b"}, + {file = "rpds_py-0.8.10-cp38-none-win32.whl", hash = "sha256:7947e6e2c2ad68b1c12ee797d15e5f8d0db36331200b0346871492784083b0c6"}, + {file = "rpds_py-0.8.10-cp38-none-win_amd64.whl", hash = "sha256:fa326b3505d5784436d9433b7980171ab2375535d93dd63fbcd20af2b5ca1bb6"}, + {file = "rpds_py-0.8.10-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:7b38a9ac96eeb6613e7f312cd0014de64c3f07000e8bf0004ad6ec153bac46f8"}, + {file = "rpds_py-0.8.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c4d42e83ddbf3445e6514f0aff96dca511421ed0392d9977d3990d9f1ba6753c"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b21575031478609db6dbd1f0465e739fe0e7f424a8e7e87610a6c7f68b4eb16"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:574868858a7ff6011192c023a5289158ed20e3f3b94b54f97210a773f2f22921"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae40f4a70a1f40939d66ecbaf8e7edc144fded190c4a45898a8cfe19d8fc85ea"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f7ee4dc86db7af3bac6d2a2cedbecb8e57ce4ed081f6464510e537589f8b1e"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:695f642a3a5dbd4ad2ffbbacf784716ecd87f1b7a460843b9ddf965ccaeafff4"}, + {file = "rpds_py-0.8.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f43ab4cb04bde6109eb2555528a64dfd8a265cc6a9920a67dcbde13ef53a46c8"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a11ab0d97be374efd04f640c04fe5c2d3dabc6dfb998954ea946ee3aec97056d"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:92cf5b3ee60eef41f41e1a2cabca466846fb22f37fc580ffbcb934d1bcab225a"}, + {file = "rpds_py-0.8.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ceaac0c603bf5ac2f505a78b2dcab78d3e6b706be6596c8364b64cc613d208d2"}, + {file = "rpds_py-0.8.10-cp39-none-win32.whl", hash = "sha256:dd4f16e57c12c0ae17606c53d1b57d8d1c8792efe3f065a37cb3341340599d49"}, + {file = "rpds_py-0.8.10-cp39-none-win_amd64.whl", hash = "sha256:c03a435d26c3999c2a8642cecad5d1c4d10c961817536af52035f6f4ee2f5dd0"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0da53292edafecba5e1d8c1218f99babf2ed0bf1c791d83c0ab5c29b57223068"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:7d20a8ed227683401cc508e7be58cba90cc97f784ea8b039c8cd01111e6043e0"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97cab733d303252f7c2f7052bf021a3469d764fc2b65e6dbef5af3cbf89d4892"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c398fda6df361a30935ab4c4bccb7f7a3daef2964ca237f607c90e9f3fdf66f"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2eb4b08c45f8f8d8254cdbfacd3fc5d6b415d64487fb30d7380b0d0569837bf1"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7dfb1cbb895810fa2b892b68153c17716c6abaa22c7dc2b2f6dcf3364932a1c"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89c92b74e8bf6f53a6f4995fd52f4bd510c12f103ee62c99e22bc9e05d45583c"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e9c0683cb35a9b5881b41bc01d5568ffc667910d9dbc632a1fba4e7d59e98773"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0eeb2731708207d0fe2619afe6c4dc8cb9798f7de052da891de5f19c0006c315"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:7495010b658ec5b52835f21d8c8b1a7e52e194c50f095d4223c0b96c3da704b1"}, + {file = "rpds_py-0.8.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c72ebc22e70e04126158c46ba56b85372bc4d54d00d296be060b0db1671638a4"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:2cd3045e7f6375dda64ed7db1c5136826facb0159ea982f77d9cf6125025bd34"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:2418cf17d653d24ffb8b75e81f9f60b7ba1b009a23298a433a4720b2a0a17017"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a2edf8173ac0c7a19da21bc68818be1321998528b5e3f748d6ee90c0ba2a1fd"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f29b8c55fd3a2bc48e485e37c4e2df3317f43b5cc6c4b6631c33726f52ffbb3"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a7d20c1cf8d7b3960c5072c265ec47b3f72a0c608a9a6ee0103189b4f28d531"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:521fc8861a86ae54359edf53a15a05fabc10593cea7b3357574132f8427a5e5a"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5c191713e98e7c28800233f039a32a42c1a4f9a001a8a0f2448b07391881036"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:083df0fafe199371206111583c686c985dddaf95ab3ee8e7b24f1fda54515d09"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ed41f3f49507936a6fe7003985ea2574daccfef999775525d79eb67344e23767"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:2614c2732bf45de5c7f9e9e54e18bc78693fa2f635ae58d2895b7965e470378c"}, + {file = "rpds_py-0.8.10-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c60528671d9d467009a6ec284582179f6b88651e83367d0ab54cb739021cd7de"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ee744fca8d1ea822480a2a4e7c5f2e1950745477143668f0b523769426060f29"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a38b9f526d0d6cbdaa37808c400e3d9f9473ac4ff64d33d9163fd05d243dbd9b"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60e0e86e870350e03b3e25f9b1dd2c6cc72d2b5f24e070249418320a6f9097b7"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f53f55a8852f0e49b0fc76f2412045d6ad9d5772251dea8f55ea45021616e7d5"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c493365d3fad241d52f096e4995475a60a80f4eba4d3ff89b713bc65c2ca9615"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:300eb606e6b94a7a26f11c8cc8ee59e295c6649bd927f91e1dbd37a4c89430b6"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a665f6f1a87614d1c3039baf44109094926dedf785e346d8b0a728e9cabd27a"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:927d784648211447201d4c6f1babddb7971abad922b32257ab74de2f2750fad0"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:c200b30dd573afa83847bed7e3041aa36a8145221bf0cfdfaa62d974d720805c"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:08166467258fd0240a1256fce272f689f2360227ee41c72aeea103e9e4f63d2b"}, + {file = "rpds_py-0.8.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:996cc95830de9bc22b183661d95559ec6b3cd900ad7bc9154c4cbf5be0c9b734"}, + {file = "rpds_py-0.8.10.tar.gz", hash = "sha256:13e643ce8ad502a0263397362fb887594b49cf84bf518d6038c16f235f2bcea4"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "5adac22f827319e20a1abae786192529396a15647edde77c6f2550586f46e7ee" diff --git a/vespa/provider/__init__.py b/vespa/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/vespa/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/vespa/provider/app.py b/vespa/provider/app.py new file mode 100644 index 000000000..95e4437b5 --- /dev/null +++ b/vespa/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Vespa config error: {error}") + abort(502, f"Vespa config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/vespa/provider/provider.py b/vespa/provider/provider.py new file mode 100644 index 000000000..99aba1a17 --- /dev/null +++ b/vespa/provider/provider.py @@ -0,0 +1,54 @@ +import json +import logging +from urllib.parse import urljoin + +import requests +from flask import current_app as app + +logger = logging.getLogger(__name__) + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def search(query): + assert (server_url := app.config.get("SERVER_URL")), "VESPA_SERVER_URL must be set" + + vespa_search_url = urljoin(server_url, "/search/") + search_request = { + "yql": "select * from sources * where userQuery()", + "query": query, + } + headers = {"Content-Type": "application/json"} + response = requests.post( + vespa_search_url, data=json.dumps(search_request), headers=headers + ) + response.raise_for_status() + results = response.json()["root"].get("children", []) + mappings = app.config.get("CONNECTOR_FIELD_MAPPING", {}) + return serialize_results([result["fields"] for result in results], mappings) diff --git a/vespa/pyproject.toml b/vespa/pyproject.toml new file mode 100644 index 000000000..0ac615c14 --- /dev/null +++ b/vespa/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "vespa" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +requests = "^2.31.0" +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/weaviate/.env-template b/weaviate/.env-template new file mode 100644 index 000000000..6eb5c4b9e --- /dev/null +++ b/weaviate/.env-template @@ -0,0 +1,4 @@ +WEAVIATE_URL=http://localhost:8080 +WEAVIATE_CLASS=BbqProduct +WEAVIATE_CONNECTOR_API_KEY=abcdefg1234567890 +WEAVIATE_CONNECTOR_FIELDS_MAPPING={"Name": "title", "full_text": "text", "Url":"url"} diff --git a/weaviate/README.md b/weaviate/README.md new file mode 100644 index 000000000..c30019440 --- /dev/null +++ b/weaviate/README.md @@ -0,0 +1,86 @@ +# Weaviate Quick Start Connector + +Connectors Cohere to a Weaviate database. + +It relies on the `weaviate-python` package for managing the connection and uses Weaviate's GraphQL API under the hood. + +## Limitations + +The Weaviate connector performs a near-text search for a defined class and properties. The nearText operator Weaviate provides converts the query to a vector using Cohere's inference API and uses that vector as the basis for a vector search. + +# Configuration + +This connector requires the following environment variables: + +``` +WEAVIATE_SERVER_URL + +This variable should contain the URL of the Weaviate instance. +``` + +``` +WEAVIATE_SCHEMA_CLASS + +This variable should contain the name of the class to search on. +``` + +``` +WEAVIATE_CONNECTOR_API_KEY + +This variable should contain the API key for the connector. +``` + +### Optional configuration + +``` +WEAVIATE_CONNECTOR_FIELDS_MAPPING + +This variable may contain a JSON object mapping Cohere fields +to Weaviate fields(key is Weaviate field, value is Cohere field). +If it is not set, the response fields will be returned as is. +``` + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +A Weaviate database is available as a Docker container. It uses Cohere for vectorizing data and requires +the `COHERE_APIKEY` environment variable to be set. + +```bash + $ export COHERE_APIKEY= +``` + +Start the test Weaviate database and fill it with data by running + +```bash + $ docker-compose run data-loader +``` + +After running the `data-loader`, the Weaviate instance will continue to run in the background. If you need to start it +again later, Weaviate can be started again without needing to load the data: + +Finally, start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/weaviate/dev/load_data.py b/weaviate/dev/load_data.py new file mode 100644 index 000000000..96701f53d --- /dev/null +++ b/weaviate/dev/load_data.py @@ -0,0 +1,67 @@ +import csv +import os + +import weaviate + +if __name__ == "__main__": + client = weaviate.Client( + url=os.environ["WEAVIATE_SERVER_URL"], + ) + + try: + client.schema.delete_class(os.environ["WEAVIATE_SCHEMA_CLASS"]) + except: + pass + + class_obj = { + "class": os.environ["WEAVIATE_SCHEMA_CLASS"], + "properties": [ + { + "name": "ID", + "dataType": ["text"], + }, + { + "name": "Name", + "dataType": ["text"], + }, + { + "name": "Description", + "dataType": ["text"], + }, + { + "name": "Features", + "dataType": ["text"], + }, + { + "name": "Brand", + "dataType": ["text"], + }, + { + "name": "Color", + "dataType": ["text"], + }, + ], + "vectorizer": "text2vec-cohere", + } + + client.schema.create_class(class_obj) + upload_limit = 100 + + with open("/bbq.csv", "r") as csv_file: + with client.batch(batch_size=100) as batch: + reader = csv.DictReader(csv_file) + for i, row in enumerate(reader, start=1): + if i == upload_limit: + break + + properties = { + k: row[k] + for k in ("ID", "Name", "Description", "Features", "Brand", "Color") + } + + client.batch.add_data_object( + properties, + os.environ["WEAVIATE_SCHEMA_CLASS"], + ) + + print("Finished loading data") diff --git a/weaviate/docker-compose.yml b/weaviate/docker-compose.yml new file mode 100644 index 000000000..021444e99 --- /dev/null +++ b/weaviate/docker-compose.yml @@ -0,0 +1,58 @@ +version: "3.4" +services: + weaviate: + command: + - --host + - 0.0.0.0 + - --port + - "8080" + - --scheme + - http + image: semitechnologies/weaviate:1.20.1 + ports: + - 8080:8080 + restart: on-failure:0 + environment: + COHERE_APIKEY: $COHERE_APIKEY + QUERY_DEFAULTS_LIMIT: 25 + AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: "true" + PERSISTENCE_DATA_PATH: "/var/lib/weaviate" + DEFAULT_VECTORIZER_MODULE: "text2vec-cohere" + ENABLE_MODULES: "text2vec-cohere" + CLUSTER_HOSTNAME: "node1" + healthcheck: + test: + [ + "CMD-SHELL", + "curl --silent --fail http://localhost:8080/v1/nodes || exit 1", + ] + interval: 10s + timeout: 5s + retries: 5 + networks: + - weaviate-network + + data-loader: + image: python:3.11 + environment: + COHERE_APIKEY: $COHERE_APIKEY + WEAVIATE_SERVER_URL: "http://weaviate:8080" + WEAVIATE_SCHEMA_CLASS: "BbqProduct" + depends_on: + weaviate: + condition: service_started + volumes: + - ../testdata/bbq.csv:/bbq.csv + - ./dev/load_data.py:/load_data.py + command: > + bash -c " + pip install --no-cache-dir weaviate-client && + python /load_data.py" + profiles: + - tools + networks: + - weaviate-network + +networks: + weaviate-network: + driver: bridge diff --git a/weaviate/poetry.lock b/weaviate/poetry.lock new file mode 100644 index 000000000..dd75d8e39 --- /dev/null +++ b/weaviate/poetry.lock @@ -0,0 +1,871 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "authlib" +version = "1.2.1" +description = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." +optional = false +python-versions = "*" +files = [ + {file = "Authlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:c88984ea00149a90e3537c964327da930779afa4564e354edfd98410bea01911"}, + {file = "Authlib-1.2.1.tar.gz", hash = "sha256:421f7c6b468d907ca2d9afede256f068f87e34d23dd221c07d13d4c234726afb"}, +] + +[package.dependencies] +cryptography = ">=3.2" + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "cryptography" +version = "41.0.6" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:0f27acb55a4e77b9be8d550d762b0513ef3fc658cd3eb15110ebbcbd626db12c"}, + {file = "cryptography-41.0.6-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ae236bb8760c1e55b7a39b6d4d32d2279bc6c7c8500b7d5a13b6fb9fc97be35b"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afda76d84b053923c27ede5edc1ed7d53e3c9f475ebaf63c68e69f1403c405a8"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da46e2b5df770070412c46f87bac0849b8d685c5f2679771de277a422c7d0b86"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ff369dd19e8fe0528b02e8df9f2aeb2479f89b1270d90f96a63500afe9af5cae"}, + {file = "cryptography-41.0.6-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:b648fe2a45e426aaee684ddca2632f62ec4613ef362f4d681a9a6283d10e079d"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5daeb18e7886a358064a68dbcaf441c036cbdb7da52ae744e7b9207b04d3908c"}, + {file = "cryptography-41.0.6-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:068bc551698c234742c40049e46840843f3d98ad7ce265fd2bd4ec0d11306596"}, + {file = "cryptography-41.0.6-cp37-abi3-win32.whl", hash = "sha256:2132d5865eea673fe6712c2ed5fb4fa49dba10768bb4cc798345748380ee3660"}, + {file = "cryptography-41.0.6-cp37-abi3-win_amd64.whl", hash = "sha256:48783b7e2bef51224020efb61b42704207dde583d7e371ef8fc2a5fb6c0aabc7"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:8efb2af8d4ba9dbc9c9dd8f04d19a7abb5b49eab1f3694e7b5a16a5fc2856f5c"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c5a550dc7a3b50b116323e3d376241829fd326ac47bc195e04eb33a8170902a9"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:85abd057699b98fce40b41737afb234fef05c67e116f6f3650782c10862c43da"}, + {file = "cryptography-41.0.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f39812f70fc5c71a15aa3c97b2bbe213c3f2a460b79bd21c40d033bb34a9bf36"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:742ae5e9a2310e9dade7932f9576606836ed174da3c7d26bc3d3ab4bd49b9f65"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:35f3f288e83c3f6f10752467c48919a7a94b7d88cc00b0668372a0d2ad4f8ead"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4d03186af98b1c01a4eda396b137f29e4e3fb0173e30f885e27acec8823c1b09"}, + {file = "cryptography-41.0.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b27a7fd4229abef715e064269d98a7e2909ebf92eb6912a9603c7e14c181928c"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:398ae1fc711b5eb78e977daa3cbf47cec20f2c08c5da129b7a296055fbb22aed"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7e00fb556bda398b99b0da289ce7053639d33b572847181d6483ad89835115f6"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60e746b11b937911dc70d164060d28d273e31853bb359e2b2033c9e93e6f3c43"}, + {file = "cryptography-41.0.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3288acccef021e3c3c10d58933f44e8602cf04dba96d9796d70d537bb2f4bbc4"}, + {file = "cryptography-41.0.6.tar.gz", hash = "sha256:422e3e31d63743855e43e5a6fcc8b4acab860f560f9321b0ee6269cc7ed70cc3"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +optional = false +python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tqdm" +version = "4.65.0" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.65.0-py3-none-any.whl", hash = "sha256:c4f53a17fe37e132815abceec022631be8ffe1b9381c2e6e30aa70edc99e9671"}, + {file = "tqdm-4.65.0.tar.gz", hash = "sha256:1871fb68a86b8fb3b59ca4cdd3dcccbc7e6d613eeed31f4c332531977b89beb5"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["py-make (>=0.1.0)", "twine", "wheel"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "validators" +version = "0.20.0" +description = "Python Data Validation for Humans™." +optional = false +python-versions = ">=3.4" +files = [ + {file = "validators-0.20.0.tar.gz", hash = "sha256:24148ce4e64100a2d5e267233e23e7afeb55316b47d30faae7eb6e7292bc226a"}, +] + +[package.dependencies] +decorator = ">=3.4.0" + +[package.extras] +test = ["flake8 (>=2.4.0)", "isort (>=4.2.2)", "pytest (>=2.2.3)"] + +[[package]] +name = "weaviate-client" +version = "3.22.1" +description = "A python native Weaviate client" +optional = false +python-versions = ">=3.8" +files = [ + {file = "weaviate-client-3.22.1.tar.gz", hash = "sha256:aff61bd3f5d74df20a62328443e3aa9c860d5330fdfb19c4d8ddc44cb604032f"}, + {file = "weaviate_client-3.22.1-py3-none-any.whl", hash = "sha256:01843a4899a227300e570409e77628e9d1b28476313f94943c37aee3f75112e1"}, +] + +[package.dependencies] +authlib = ">=1.1.0" +requests = ">=2.28.0,<=2.31.0" +tqdm = ">=4.59.0,<5.0.0" +validators = ">=0.18.2,<=0.21.0" + +[package.extras] +grpc = ["grpcio", "grpcio-tools"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "7202b2691885d56c145940b9e50dc7afe2591dafa85f5921b2f68dadef447934" diff --git a/weaviate/provider/__init__.py b/weaviate/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/weaviate/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/weaviate/provider/app.py b/weaviate/provider/app.py new file mode 100644 index 000000000..9289ef4ea --- /dev/null +++ b/weaviate/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Solr config error: {error}") + abort(502, f"Solr config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/weaviate/provider/provider.py b/weaviate/provider/provider.py new file mode 100644 index 000000000..93d63bb54 --- /dev/null +++ b/weaviate/provider/provider.py @@ -0,0 +1,83 @@ +import logging + +import weaviate +from flask import current_app as app + +logger = logging.getLogger(__name__) +client = None + + +def serialize_results(data, mappings): + """ + Serialize a list of dictionaries by transforming keys based on provided mappings + and converting values to strings. + + Parameters: + - data (list): A list of dictionaries to be serialized. + - mappings (dict): A dictionary specifying key mappings for transformation. + + Returns: + list: A serialized list of dictionaries with transformed keys and string-converted values. + """ + serialized_data = list( + map( + lambda item: { + k + if k not in mappings + else mappings[k]: ", ".join(str(vl) for vl in v) + if isinstance(v, list) + else str(v) + for k, v in item.items() + }, + data, + ) + ) + return serialized_data + + +def configure_client(url): + global client + client = weaviate.Client( + url=url, + ) + + +def get_schema_properties(schema_class, url): + if not client: + configure_client(url) + + schema = client.schema.get() + schema_properties = [] + + for class_info in schema["classes"]: + if class_info["class"] == schema_class: + schema_properties = [prop["name"] for prop in class_info["properties"]] + break + + return schema_properties + + +def search(query): + assert (url := app.config.get("SERVER_URL")), "WEAVIATE_SERVER_URL must be set" + assert ( + schema_class := app.config.get("SCHEMA_CLASS") + ), "WEAVIATE_SCHEMA_CLASS must be set" + if not client: + configure_client(url) + + schema_properties = get_schema_properties(schema_class, url) + + nearText = {"concepts": [query]} + response = ( + client.query.get(schema_class, list(schema_properties)) + .with_near_text(nearText) + .with_limit(10) + .do() + ) + mappings = app.config.get("CONNECTOR_FIELDS_MAPPING", {}) + results = ( + response["data"]["Get"][schema_class] + if response["data"]["Get"][schema_class] + else [] + ) + return serialize_results(results, mappings) diff --git a/weaviate/pyproject.toml b/weaviate/pyproject.toml new file mode 100644 index 000000000..fb7372d62 --- /dev/null +++ b/weaviate/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "weaviate" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +weaviate-client = "^3.22.1" +python-dotenv = "^1.0.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/wikipedia/.env-template b/wikipedia/.env-template new file mode 100644 index 000000000..5a4a2f3df --- /dev/null +++ b/wikipedia/.env-template @@ -0,0 +1,2 @@ +WIKIPEDIA_SEARCH_LIMIT= +WIKIPEDIA_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/wikipedia/README.md b/wikipedia/README.md new file mode 100644 index 000000000..98a28bca4 --- /dev/null +++ b/wikipedia/README.md @@ -0,0 +1,37 @@ +# Wikipedia Connector + +Connects Cohere to Wikipedia, the free encyclopedia. + +## Configuration + +Add a `WIKIPEDIA_CONNECTOR_API_KEY` to secure your connector in production environments, otherwise no configuration needed. + +You can optionally modify the `WIKIPEDIA_SEARCH_LIMIT` to CHANGE the maximum number of results returned by your search query. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/wikipedia/poetry.lock b/wikipedia/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/wikipedia/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/wikipedia/provider/__init__.py b/wikipedia/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/wikipedia/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/wikipedia/provider/app.py b/wikipedia/provider/app.py new file mode 100644 index 000000000..9e6dec59e --- /dev/null +++ b/wikipedia/provider/app.py @@ -0,0 +1,25 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort, current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream provider error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/wikipedia/provider/client.py b/wikipedia/provider/client.py new file mode 100644 index 000000000..6d0eaeefc --- /dev/null +++ b/wikipedia/provider/client.py @@ -0,0 +1,45 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class WikipediaClient: + BASE_URL = "https://en.wikipedia.org/w/api.php" + BASE_ARTICLE_URL = "https://en.wikipedia.org/?curid=" + + def __init__(self, search_limit): + self.SEARCH_LIMIT = search_limit + + def search_articles(self, query): + url = self.BASE_URL + params = { + "action": "query", + "format": "json", + "list": "search", + "srlimit": self.SEARCH_LIMIT, + "srsearch": query, + } + + response = requests.get( + url, + params=params, + ) + + if response.status_code != 200: + raise UpstreamProviderError( + f"Error searching articles with query: `{query}`." + ) + + return response.json()["query"]["search"] + + +def get_client(): + global client + if client is not None: + return client + search_limit = app.config.get("SEARCH_LIMIT", 10) + client = WikipediaClient(search_limit) + return client diff --git a/wikipedia/provider/provider.py b/wikipedia/provider/provider.py new file mode 100644 index 000000000..8f1c273df --- /dev/null +++ b/wikipedia/provider/provider.py @@ -0,0 +1,46 @@ +import logging +import re +from typing import Any + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + wikipedia_client = get_client() + + search_results = wikipedia_client.search_articles(query) + + results = [] + for page in search_results: + results.append(serialize_search_result(page)) + + return results + + +def strip_html_tags(html_text): + clean = re.compile("<.*?>") + plain_text = re.sub(clean, "", html_text) + return plain_text + + +def serialize_search_result(result): + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + stripped_result = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "text" in stripped_result: + stripped_result["text"] = strip_html_tags(stripped_result["text"]) + + # Build URL manually with pageid + if "pageid" in result: + wikipedia_client = get_client() + stripped_result[ + "url" + ] = f"{wikipedia_client.BASE_ARTICLE_URL}{stripped_result['pageid']}" + + return stripped_result diff --git a/wikipedia/pyproject.toml b/wikipedia/pyproject.toml new file mode 100644 index 000000000..feae06dbb --- /dev/null +++ b/wikipedia/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "wikipedia" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/wordpress/.env-template b/wordpress/.env-template new file mode 100644 index 000000000..6260520b3 --- /dev/null +++ b/wordpress/.env-template @@ -0,0 +1,4 @@ +WORDPRESS_USERNAME= +WORDPRESS_PASSWORD= +WORDPRESS_URL=http://localhost:8000 +WORDPRESS_CONNECTOR_API_KEY= diff --git a/wordpress/README.md b/wordpress/README.md new file mode 100644 index 000000000..e4b334aeb --- /dev/null +++ b/wordpress/README.md @@ -0,0 +1,53 @@ +# Wordpress Connector + +Connects Cohere to Wordpress. + +## Configuration + +This connector requires that the environment variables `WORDPRESS_USERNAME`, `WORDPRESS_PASSWORD`, and `WORDPRESS_CONNECTOR_API_KEY` be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided as a reference. + +## Development + +A docker-compose file is provided for local testing. Start it with + +```bash + $ docker-compose up +``` + +and complete the setup by visiting http://localhost:8000 and completing the installation. Once installation is finished log in to your account, navigate to user settings, and create +an Application Password that will be used by this development environment. + +To start the connector, create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +A script is provided in `dev/` to generate test data. Invoke it with + +```bash + $ poetry shell + $ python dev/load_data.py +``` + +To start the server, run the following commands + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/wordpress/dev/load_data.py b/wordpress/dev/load_data.py new file mode 100644 index 000000000..8c2f033f3 --- /dev/null +++ b/wordpress/dev/load_data.py @@ -0,0 +1,40 @@ +import csv +import os + +import requests +from dotenv import load_dotenv + +load_dotenv() + + +def create_post(row): + url = "http://localhost:8000/?rest_route=/wp/v2/posts" + headers = {"Content-Type": "application/json"} + content = f"Brand: {row['Brand']}\nColor: {row['Color']}\n\n{row['Features']}\n\n{row['Description']}" + + data = {"title": row["Name"], "content": content, "status": "publish"} + + response = requests.post( + url, + headers=headers, + json=data, + auth=( + os.environ.get("WORDPRESS_USERNAME"), + os.environ.get("WORDPRESS_PASSWORD"), + ), + ) + + if response.ok: + return 1 + else: + print(f"Failed to create post '{row['Name']}':\n{response.text}") + return 0 + + +with open("../testdata/bbq.csv", "r") as file: + created_count = 0 + reader = csv.DictReader(file) + for row in reader: + created_count += create_post(row) + + print(f"Created {created_count} posts.") diff --git a/wordpress/docker-compose.yml b/wordpress/docker-compose.yml new file mode 100644 index 000000000..9c3907f20 --- /dev/null +++ b/wordpress/docker-compose.yml @@ -0,0 +1,39 @@ +version: '3.8' +services: + wordpress: + image: wordpress:latest + container_name: wordpress + restart: unless-stopped + depends_on: + - db + ports: + - 8000:80 + volumes: + - ./dev/data/wordpress:/var/www/html/wp-content + environment: + WORDPRESS_DB_HOST: db + WORDPRESS_DB_USER: wordpress + WORDPRESS_DB_PASSWORD: password + WORDPRESS_DB_NAME: wordpress + WORDPRESS_CONFIG_EXTRA: | + define( 'WP_ENVIRONMENT_TYPE', 'local' ); + networks: + - wp-network + + db: + image: mysql:8.0 + container_name: db + restart: unless-stopped + environment: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: wordpress + MYSQL_USER: wordpress + MYSQL_PASSWORD: password + volumes: + - ./dev/data/mysql:/var/lib/mysql + networks: + - wp-network + +networks: + wp-network: + driver: bridge diff --git a/wordpress/poetry.lock b/wordpress/poetry.lock new file mode 100644 index 000000000..916bf5192 --- /dev/null +++ b/wordpress/poetry.lock @@ -0,0 +1,770 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "b55d50738c4db7b91f9337422a7cabb20f8e71e9cc9bd9798d5216fcbf621d60" diff --git a/wordpress/provider/__init__.py b/wordpress/provider/__init__.py new file mode 100644 index 000000000..7a397f522 --- /dev/null +++ b/wordpress/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/wordpress/provider/app.py b/wordpress/provider/app.py new file mode 100644 index 000000000..3ac7fa014 --- /dev/null +++ b/wordpress/provider/app.py @@ -0,0 +1,28 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/wordpress/provider/provider.py b/wordpress/provider/provider.py new file mode 100644 index 000000000..d130e7c02 --- /dev/null +++ b/wordpress/provider/provider.py @@ -0,0 +1,42 @@ +import logging +from typing import Any +from urllib.parse import urljoin + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def extract_page_data(page_id): + page_data = requests.get( + urljoin(app.config["URL"], f"/?rest_route=/wp/v2/posts/{page_id}"), + auth=(app.config["USERNAME"], app.config["PASSWORD"]), + ).json() + + return { + "title": page_data["title"]["rendered"], + "text": page_data["content"]["rendered"], + "url": page_data["link"], + } + + +def search(query: str) -> list[dict[str, Any]]: + assert (base_url := app.config.get("URL")), "WORDPRESS_URL must be set" + assert (username := app.config.get("USERNAME")), "WORDPRESS_USERNAME must be set" + assert (password := app.config.get("PASSWORD")), "WORDPRESS_PASSWORD must be set" + + url = urljoin(base_url, "/?rest_route=/wp/v2/search") + params = {"search": query, "per_page": 10} + + response = requests.get(url, params=params, auth=(username, password)) + + if not response.ok: + raise UpstreamProviderError("Unable to query WordPress") + + results = response.json() + search_data = [extract_page_data(page["id"]) for page in results] + + return search_data diff --git a/wordpress/pyproject.toml b/wordpress/pyproject.toml new file mode 100644 index 000000000..d81085eb2 --- /dev/null +++ b/wordpress/pyproject.toml @@ -0,0 +1,22 @@ +[tool.poetry] +name = "wordpress-connector" +version = "0.1.0" +description = "Connector for Cohere with WordPress." +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +mypy = "^1.4.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/yammer/.env-template b/yammer/.env-template new file mode 100644 index 000000000..00dfef449 --- /dev/null +++ b/yammer/.env-template @@ -0,0 +1,3 @@ +YAMMER_API_TOKEN= +YAMMER_SEARCH_LIMIT= +YAMMER_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/yammer/README.md b/yammer/README.md new file mode 100644 index 000000000..1b611694c --- /dev/null +++ b/yammer/README.md @@ -0,0 +1,61 @@ +# Yammer Connector + +Connects Cohere to Yammer. + +## Configuration + +This connector requires the following environment variables: + +``` +YAMMER_API_TOKEN +``` + +To get a Yammer API token, you need to register an app with Yammer. You can do this by following the +instructions [here](https://learn.microsoft.com/en-us/rest/api/yammer/app-registration). +Yammer connector uses the Server-Side Flow to obtain the token. +You can follow the instructions [here](https://learn.microsoft.com/en-us/rest/api/yammer/oauth-2) +to get the token. + +``` +YAMMER_CONNECTOR_API_KEY +``` + +This variable should contain the API key for the connector. + +``` +YAMMER_SEARCH_LIMIT +``` + +This variable may contain the maximum number of results to return from Yammer. Default value is 20. + +These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/yammer/poetry.lock b/yammer/poetry.lock new file mode 100644 index 000000000..f3e7f4ef7 --- /dev/null +++ b/yammer/poetry.lock @@ -0,0 +1,739 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.9.1" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.9.1-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:d6bc09188020c9ac2555a498949401ab35bb6bf76d4e0f8ee251694664df6301"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:13ef033794029b85dfea8032c9d3b92b42b526f1ff4bf13b2182ce4e917f5100"}, + {file = "black-23.9.1-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:75a2dc41b183d4872d3a500d2b9c9016e67ed95738a3624f4751a0cb4818fe71"}, + {file = "black-23.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13a2e4a93bb8ca74a749b6974925c27219bb3df4d42fc45e948a5d9feb5122b7"}, + {file = "black-23.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:adc3e4442eef57f99b5590b245a328aad19c99552e0bdc7f0b04db6656debd80"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:8431445bf62d2a914b541da7ab3e2b4f3bc052d2ccbf157ebad18ea126efb91f"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:8fc1ddcf83f996247505db6b715294eba56ea9372e107fd54963c7553f2b6dfe"}, + {file = "black-23.9.1-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:7d30ec46de88091e4316b17ae58bbbfc12b2de05e069030f6b747dfc649ad186"}, + {file = "black-23.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:031e8c69f3d3b09e1aa471a926a1eeb0b9071f80b17689a655f7885ac9325a6f"}, + {file = "black-23.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:538efb451cd50f43aba394e9ec7ad55a37598faae3348d723b59ea8e91616300"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:638619a559280de0c2aa4d76f504891c9860bb8fa214267358f0a20f27c12948"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:a732b82747235e0542c03bf352c126052c0fbc458d8a239a94701175b17d4855"}, + {file = "black-23.9.1-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:cf3a4d00e4cdb6734b64bf23cd4341421e8953615cba6b3670453737a72ec204"}, + {file = "black-23.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf99f3de8b3273a8317681d8194ea222f10e0133a24a7548c73ce44ea1679377"}, + {file = "black-23.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:14f04c990259576acd093871e7e9b14918eb28f1866f91968ff5524293f9c573"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:c619f063c2d68f19b2d7270f4cf3192cb81c9ec5bc5ba02df91471d0b88c4c5c"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:6a3b50e4b93f43b34a9d3ef00d9b6728b4a722c997c99ab09102fd5efdb88325"}, + {file = "black-23.9.1-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:c46767e8df1b7beefb0899c4a95fb43058fa8500b6db144f4ff3ca38eb2f6393"}, + {file = "black-23.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50254ebfa56aa46a9fdd5d651f9637485068a1adf42270148cd101cdf56e0ad9"}, + {file = "black-23.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:403397c033adbc45c2bd41747da1f7fc7eaa44efbee256b53842470d4ac5a70f"}, + {file = "black-23.9.1-py3-none-any.whl", hash = "sha256:6ccd59584cc834b6d127628713e4b6b968e5f79572da66284532525a042549f9"}, + {file = "black-23.9.1.tar.gz", hash = "sha256:24b6b3ff5c6d9ea08a8888f6977eae858e1f340d7260cf56d70a49823236b62d"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.11.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, + {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "cb65b502fcb32e98f4b7a715351c8e06720f1196b8410ee1ef2abe94c4dde1a9" diff --git a/yammer/provider/__init__.py b/yammer/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/yammer/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/yammer/provider/app.py b/yammer/provider/app.py new file mode 100644 index 000000000..c08c068e6 --- /dev/null +++ b/yammer/provider/app.py @@ -0,0 +1,33 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Yammer config error: {error}") + abort(502, f"Yammer config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + # successfully authenticated + return {} diff --git a/yammer/provider/client.py b/yammer/provider/client.py new file mode 100644 index 000000000..d3d2d0b49 --- /dev/null +++ b/yammer/provider/client.py @@ -0,0 +1,45 @@ +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class YammerApiClient: + API_BASE_URL = "https://www.yammer.com/api/v1" + SEARCH_ENDPOINT = "search.json" + + def __init__(self, api_token, search_limit): + self.api_token = api_token + self.search_limit = search_limit + self.headers = {"Authorization": f"Bearer {self.api_token}"} + + def get_search_limit(self): + return self.search_limit + + def get(self, url, params={}): + response = requests.get(url, headers=self.headers, params=params) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def search(self, query): + url = f"{self.API_BASE_URL}/{self.SEARCH_ENDPOINT}" + params = {"search": query, "num_per_page": self.get_search_limit()} + + return self.get(url, params) + + +def get_client(): + global client + assert (api_token := app.config.get("API_TOKEN")), "YAMMER_API_TOKEN must be set" + per_page = app.config.get("SEARCH_LIMIT", 20) + + if not client: + client = YammerApiClient(api_token, per_page) + + return client diff --git a/yammer/provider/provider.py b/yammer/provider/provider.py new file mode 100644 index 000000000..09cbe9671 --- /dev/null +++ b/yammer/provider/provider.py @@ -0,0 +1,49 @@ +import logging + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_results(data): + serialized_data = [] + for k, v in data.items(): + if k == "messages": + for message in v["messages"]: + message["title"] = message.pop("content_excerpt") + message["text"] = message["body"]["plain"] + message["api_url"] = message.pop("url") + message["url"] = message.pop("web_url") + message["type"] = "message" + message = {key: str(value) for key, value in message.items()} + serialized_data.append(message) + if k == "users": + for user in v: + user["title"] = user.pop("full_name") + user["text"] = user.pop("job_title") + user["api_url"] = user.pop("url") + user["url"] = user.pop("web_url") + user = {key: str(value) for key, value in user.items()} + serialized_data.append(user) + if k == "groups": + for group in v: + group["title"] = group.pop("full_name") + group["text"] = group.pop("description") + group["api_url"] = group.pop("url") + group["url"] = group.pop("web_url") + group = {key: str(value) for key, value in group.items()} + serialized_data.append(group) + if k == "topics": + for topic in v: + topic["title"] = topic.pop("name") + topic["text"] = topic.pop("description") + topic = {key: str(value) for key, value in topic.items()} + serialized_data.append(topic) + return serialized_data + + +def search(query): + client = get_client() + response = client.search(query) + + return serialize_results(response) diff --git a/yammer/pyproject.toml b/yammer/pyproject.toml new file mode 100644 index 000000000..b67e7254e --- /dev/null +++ b/yammer/pyproject.toml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "yammer-provider" +version = "0.1.0" +description = "" +authors = ["Eugene P "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" +black = "^23.9.1" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/yext/.env-template b/yext/.env-template new file mode 100644 index 000000000..a53e77bdf --- /dev/null +++ b/yext/.env-template @@ -0,0 +1,9 @@ +YEXT_EXPERIENCE_KEY=site-search +YEXT_API_KEY= +YEXT_ACCOUNT_ID= +YEXT_LIMIT={} +YEXT_QUERY_TRIGGER= +YEXT_RESTRICT_VERTICALS= +YEXT_LOCALE=en +YEXT_V=20230817 +YEXT_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/yext/README.md b/yext/README.md new file mode 100644 index 000000000..bb3d86dac --- /dev/null +++ b/yext/README.md @@ -0,0 +1,60 @@ +# Yext Connector + +Connects Cohere to Yext Universal Search. + +## Configuration + +To use this connector, you must have a Yext account. Yext is a hosted service, and this connector does not include a local database or test data. It uses the Yext Universal Search: Query API. + +The required environment variables for this connector are: + +- `YEXT_API_KEY` +- `YEXT_ACCOUNT_ID` +- `YEXT_LOCAL` +- `YEXT_EXPERIENCE_KEY` +- `YEXT_V` +- `YEXT_CONNECTOR_API_KEY` + +Optional environment variables are: + +- `YEXT_LIMIT` +- `YEXT_SOURCE` +- `YEXT_VERSION` + +Additionally, there are several optional environment variables. These variables, both required and optional, +directly correspond to the parameters sent to Yext in the search request. They are documented in the +Yext Universal Search: Query API documentation: + +https://hitchhikers.yext.com/docs/contentdeliveryapis/search/universalsearch/#operation/query + +Environment variables can optionally be placed in a file called `.env`. See `.env-template` for a +full list of available options. This file can be copied to `.env` and modified. Options that are +left empty will be ignored. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/yext/poetry.lock b/yext/poetry.lock new file mode 100644 index 000000000..1b3244b8e --- /dev/null +++ b/yext/poetry.lock @@ -0,0 +1,808 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "5ade1dac0ffb3dbbe45ad64298df24d401c9e8f569ea90b4e67017683aeb5477" diff --git a/yext/provider/__init__.py b/yext/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/yext/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/yext/provider/app.py b/yext/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/yext/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/yext/provider/provider.py b/yext/provider/provider.py new file mode 100644 index 000000000..5f23275b3 --- /dev/null +++ b/yext/provider/provider.py @@ -0,0 +1,59 @@ +import logging +from typing import Any + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + assert (api_key := app.config.get("API_KEY")), "YEXT_API_KEY must be set" + assert (account_id := app.config.get("ACCOUNT_ID")), "YEXT_ACCOUNT_ID must be set" + assert (locale := app.config.get("LOCALE")), "YEXT_LOCAL must be set" + assert ( + experience_key := app.config.get("EXPERIENCE_KEY") + ), "YEXT_EXPERIENCE_KEY must be set" + assert (v := app.config.get("V")), "YEXT_V must be set" + + url = "https://liveapi.yext.com/v2/accounts/me/search/query" + + params = { + "api_key": api_key, + "account_id": account_id, + "experienceKey": experience_key, + "input": query, + "limit": app.config.get("LIMIT", "{}"), + "locale": locale, + "sessionTrackingEnabled": False, + "source": app.config.get("SOURCE", "STANDARD"), + "v": v, + "version": app.config.get("VERSION", "PRODUCTION"), + } + + response = requests.get( + url, + params=params, + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + data = response.json() + + if data["meta"]["errors"]: + raise UpstreamProviderError(str(data["meta"]["errors"])) + + if "response" not in data: + return [] + + cleaned_data = [] + + for module in data["response"]["modules"]: + cleaned_data.extend(module["results"]) + + return cleaned_data diff --git a/yext/pyproject.toml b/yext/pyproject.toml new file mode 100644 index 000000000..28b210e81 --- /dev/null +++ b/yext/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "yext" +version = "0.1.0" +description = "" +authors = ["Scott Mountenay "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/youtrack/.env-template b/youtrack/.env-template new file mode 100644 index 000000000..3d5f7d959 --- /dev/null +++ b/youtrack/.env-template @@ -0,0 +1,3 @@ +YOUTRACK_PERMANENT_TOKEN= +YOUTRACK_BASE_URL= +YOUTRACK_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/youtrack/README.md b/youtrack/README.md new file mode 100644 index 000000000..ae188b079 --- /dev/null +++ b/youtrack/README.md @@ -0,0 +1,41 @@ +# Youtrack Connector + +Connects Cohere to Youtrack, the planning and collaboration tool. + +Currently only searches across issues in your Youtrack organization. + +## Configuration + +To use this connector, follow these steps: + +1. Create a Youtrack Permanent Token. You can follow the guide [here.](https://www.jetbrains.com/help/youtrack/server/Manage-Permanent-Token.html) Use this value for the `YOUTRACK_PERMANENT_TOKEN` environment variable. + +2. Determine your Youtrack instance's base URL. This can differ if you're using Youtrack Cloud vs self-hosted, you can refer to the [documentation](https://www.jetbrains.com/help/youtrack/devportal/api-url-and-endpoints.html#incloud-url). Use this value for the `YOUTRACK_BASE_URL` env variable. For example, `https://mycompany.youtrack.cloud` if you're using the Cloud version. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/youtrack/poetry.lock b/youtrack/poetry.lock new file mode 100644 index 000000000..6320c8bd5 --- /dev/null +++ b/youtrack/poetry.lock @@ -0,0 +1,828 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "47af14c3323fd0d5f66d3fa9ad0c640102a87a74be8bd233e99bcb26b9a0c768" diff --git a/youtrack/provider/__init__.py b/youtrack/provider/__init__.py new file mode 100644 index 000000000..72cb4e99c --- /dev/null +++ b/youtrack/provider/__init__.py @@ -0,0 +1,33 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi/") + app.add_api( + API_VERSION, + resolver=connexion.resolver.RelativeResolver("provider.app"), + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/youtrack/provider/app.py b/youtrack/provider/app.py new file mode 100644 index 000000000..e494ef786 --- /dev/null +++ b/youtrack/provider/app.py @@ -0,0 +1,26 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + api_key = app.config.get("CONNECTOR_API_KEY", "") + if api_key != "" and token != api_key: + raise Unauthorized() + + return {} diff --git a/youtrack/provider/client.py b/youtrack/provider/client.py new file mode 100644 index 000000000..df9b6700c --- /dev/null +++ b/youtrack/provider/client.py @@ -0,0 +1,68 @@ +import json + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +class YoutrackClient: + ISSUE_FIELDS = [ + "idReadable", + "comments", + "commentsCount", + "created", + "description", + "isDraft", + "draftOwner", + "project", + "reporter", + "resolved", + "summary", + "updated", + ] + + def __init__(self, base_url, token): + self.base_url = f"{base_url}/api" + self.headers = { + "Authorization": f"Bearer {token}", + } + + def _make_request(self, method, url, params={}, data={}): + response = requests.request( + method, + url, + headers=self.headers, + params=params, + data=json.dumps(data), + ) + + if response.status_code != 200: + message = response.text or f"Error: HTTP {response.status_code}" + raise UpstreamProviderError(message) + + return response.json() + + def search_issues(self, query): + url = f"{self.base_url}/issues" + params = { + "fields": ",".join(self.ISSUE_FIELDS), + "query": query, + } + + return self._make_request("GET", url, params) + + +def get_client(): + global client + if client is not None: + return client + + assert (base_url := app.config.get("BASE_URL")), "YOUTRACK_BASE_URL must be set" + assert ( + token := app.config.get("PERMANENT_TOKEN") + ), "YOUTRACK_PERMANENT_TOKEN must be set" + client = YoutrackClient(base_url, token) + return client diff --git a/youtrack/provider/provider.py b/youtrack/provider/provider.py new file mode 100644 index 000000000..e1d162893 --- /dev/null +++ b/youtrack/provider/provider.py @@ -0,0 +1,43 @@ +import logging +from typing import Any + +from flask import current_app as app + +from .client import get_client + +logger = logging.getLogger(__name__) + + +def serialize_search_result(result): + base_url = app.config.get("BASE_URL") + + # Only return primitive types, Coral cannot parse arrays/sub-dictionaries + serialized = { + key: str(value) + for key, value in result.items() + if isinstance(value, (str, int, bool)) + } + + if "description" in serialized: + serialized["text"] = serialized["description"] + del serialized["description"] + + if "idReadable" in serialized: + issue_code = serialized["idReadable"] + serialized["title"] = issue_code + serialized["url"] = f"{base_url}/issue/{issue_code}" + del serialized["idReadable"] + + return serialized + + +def search(query) -> list[dict[str, Any]]: + youtrack_client = get_client() + + search_results = youtrack_client.search_issues(query) + + results = [] + for result in search_results: + results.append(serialize_search_result(result)) + + return results diff --git a/youtrack/pyproject.toml b/youtrack/pyproject.toml new file mode 100644 index 000000000..104db8599 --- /dev/null +++ b/youtrack/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "youtrack" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +requests = "^2.31.0" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +gunicorn = "^21.2.0" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/zendesk/.env-template b/zendesk/.env-template new file mode 100644 index 000000000..4690ce841 --- /dev/null +++ b/zendesk/.env-template @@ -0,0 +1,5 @@ +ZENDESK_DOMAIN= +ZENDESK_EMAIL= +ZENDESK_API_TOKEN= +ZENDESK_SEARCH_LIMIT= +ZENDESK_CONNECTOR_API_KEY= diff --git a/zendesk/README.md b/zendesk/README.md new file mode 100644 index 000000000..3c034cf6d --- /dev/null +++ b/zendesk/README.md @@ -0,0 +1,75 @@ +# Zendesk Connector + +Connects Cohere to Zendesk. + +## Configuration + +This connector requires the following environment variables: + +``` +ZENDESK_DOMAIN + +This variable should contain the domain of the Zendesk instance. +``` + +``` +ZENDESK_EMAIL + +This variable should contain the email of the Zendesk user. +``` + +``` +ZENDESK_API_TOKEN + +This variable should contain the API token of the Zendesk user. +``` + +You can generate an API token using +the instructions [here](https://support.zendesk.com/hc/en-us/articles/226022787-Generating-a-new-API-token-) + +``` +ZENDESK_CONNECTOR_API_KEY + +This variable should contain the API key for the Cohere connector. +``` + +### Optional configuration + +``` +ZENDESK_SEARCH_LIMIT + +This variable may contain the maximum number of results to return from Zendesk. Default value is 20. +``` + +This connector requires that the environment variables above +be set in order to run. These variables can optionally be put into a `.env` file for development. +A `.env-template` file is provided with all the environment variables that are used by this demo. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + $ poetry config virtualenvs.in-project true + $ poetry install --no-root +``` + +Then start the server + +```bash + $ poetry shell + $ flask --app provider --debug run --port 5000 +``` + +and check with curl to see that everything is working + +```bash + $ curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "stainless propane griddle" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/zendesk/poetry.lock b/zendesk/poetry.lock new file mode 100644 index 000000000..f1ae2bc8f --- /dev/null +++ b/zendesk/poetry.lock @@ -0,0 +1,658 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "gunicorn" +version = "21.2.0" +description = "WSGI HTTP Server for UNIX" +optional = false +python-versions = ">=3.5" +files = [ + {file = "gunicorn-21.2.0-py3-none-any.whl", hash = "sha256:3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0"}, + {file = "gunicorn-21.2.0.tar.gz", hash = "sha256:88ec8bff1d634f98e61b9f65bc4bf3cd918a90806c6f5c48bc5603849ec81033"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +eventlet = ["eventlet (>=0.24.1)"] +gevent = ["gevent (>=1.4.0)"] +setproctitle = ["setproctitle"] +tornado = ["tornado (>=0.2)"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.18.6" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.6-py3-none-any.whl", hash = "sha256:dc274409c36175aad949c68e5ead0853aaffbe8e88c830ae66bb3c7a1728ad2d"}, + {file = "jsonschema-4.18.6.tar.gz", hash = "sha256:ce71d2f8c7983ef75a756e568317bf54bc531dc3ad7e66a128eae0d51623d8a3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "5adac22f827319e20a1abae786192529396a15647edde77c6f2550586f46e7ee" diff --git a/zendesk/provider/__init__.py b/zendesk/provider/__init__.py new file mode 100644 index 000000000..80cbd62a5 --- /dev/null +++ b/zendesk/provider/__init__.py @@ -0,0 +1,29 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[1].upper() + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/zendesk/provider/app.py b/zendesk/provider/app.py new file mode 100644 index 000000000..554e009d0 --- /dev/null +++ b/zendesk/provider/app.py @@ -0,0 +1,32 @@ +import logging + +from connexion.exceptions import Unauthorized +from flask import abort +from flask import current_app as app + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + logger.debug(f'Search request: {body["query"]}') + + try: + data = provider.search(body["query"]) + logger.info(f"Found {len(data)} results") + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + except AssertionError as error: + logger.error(f"Zendesk config error: {error}") + abort(502, f"Zendesk config error: {error}") + + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/zendesk/provider/provider.py b/zendesk/provider/provider.py new file mode 100644 index 000000000..41f86e92d --- /dev/null +++ b/zendesk/provider/provider.py @@ -0,0 +1,57 @@ +import base64 +import logging + +import requests +from flask import current_app as app + +from . import UpstreamProviderError + +logger = logging.getLogger(__name__) + + +def serialize_results(data): + """ + Serialize a list of dictionaries by getting the values of the needed keys and transforming them into a string. + """ + + results = [] + for item in data: + result = { + "title": item["subject"] if "subject" in item and item["subject"] else "", + "text": item["description"] + if "description" in item and item["description"] + else "", + "url": item["url"] if "url" in item and item["url"] else "", + "tags": ", ".join(item["tags"]) + if "tags" in item and isinstance(item["tags"], list) + else "", + } + for key, value in item.items(): + if key not in ["subject", "description", "url", "tags"]: + result.update({key: str(value)}) + + results.append(result) + + return results + + +def search(query): + assert (email := app.config.get("EMAIL")), "ZENDESK_EMAIL must be set" + assert (domain := app.config.get("DOMAIN")), "ZENDESK_DOMAIN must be set" + assert (token := app.config.get("API_TOKEN")), "ZENDESK_API_TOKEN must be set" + + per_page = app.config.get("SEARCH_LIMIT", 20) + + credentials = f"{email}/token:{token}" + auth_header = { + "Authorization": f"Basic {base64.b64encode(credentials.encode()).decode()}" + } + search_url = f"https://{domain}/api/v2/search.json" + params = {"query": query, "per_page": per_page} + + response = requests.get(search_url, params=params, headers=auth_header) + + if response.status_code != 200: + raise UpstreamProviderError(f"Failed to query Zendesk: {response.text}") + + return serialize_results(response.json().get("results", [])) diff --git a/zendesk/pyproject.toml b/zendesk/pyproject.toml new file mode 100644 index 000000000..55791c29a --- /dev/null +++ b/zendesk/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "zendesk" +version = "0.1.0" +description = "" +authors = ["Alex W "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +flask = "2.2.5" +connexion = {extras = ["swagger-ui"], version = "^2.14.2"} +python-dotenv = "^1.0.0" +requests = "^2.31.0" +gunicorn = "^21.2.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/zulip/.env-template b/zulip/.env-template new file mode 100644 index 000000000..8d5b17a59 --- /dev/null +++ b/zulip/.env-template @@ -0,0 +1,4 @@ +ZULIP_API_KEY= +ZULIP_BOT_EMAIL=search-bot@mysite.zulipchat.com +ZULIP_SITE=mysite.zulipchat.com +ZULIP_CONNECTOR_API_KEY= \ No newline at end of file diff --git a/zulip/README.md b/zulip/README.md new file mode 100644 index 000000000..ad13e0d9c --- /dev/null +++ b/zulip/README.md @@ -0,0 +1,43 @@ +# Zulip Quick Start Connector + +Connects Cohere to Zulip, the messaging platform. + +## Limitations + +The Zulip connector currently searches across all messages that the Bot user you create is subscribed to. Notably, messages created before the Bot is subscribed to a stream will NOT be searchable. It will return the contents of the message(s), but not any uploaded file contents. + +## Configuration + +To use this connector you will need to configure a `.env` file. See the `.env-template` for reference. + +To start, head over to your Zulip org and click on the top-right cog icon > Personal Settings > Bots > Add a new bot. Use the bot's email and API key for the `ZULIP_BOT_EMAIL` and `ZULIP_API_KEY` environment variables, respectively. Then retrieve the URL domain of your Zulip org for the `ZULIP_SITE` variable, e.g: `mysite.zulipchat.com`. + +Finally, to protect this connector from abuse, the `ZULIP_CONNECTOR_API_KEY` environment variable must be set to a secure value that will be used for this connector's own bearer token authentication. + +## Development + +Create a virtual environment and install dependencies with poetry. We recommend using in-project virtual environments: + +```bash + poetry config virtualenvs.in-project true + poetry install --no-root +``` + +To run the Flask server in development mode, please run: + +```bash + poetry run flask --app provider --debug run +``` + +The Flask API will be bound to :code:`localhost:5000`. + +```bash + curl --request POST \ + --url http://localhost:5000/search \ + --header 'Content-Type: application/json' \ + --data '{ + "query": "BBQ" + }' +``` + +Alternatively, load up the Swagger UI and try out the API from a browser: http://localhost:5000/ui/ diff --git a/zulip/poetry.lock b/zulip/poetry.lock new file mode 100644 index 000000000..0a522ea5a --- /dev/null +++ b/zulip/poetry.lock @@ -0,0 +1,856 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "clickclick" +version = "20.10.2" +description = "Click utility functions" +optional = false +python-versions = "*" +files = [ + {file = "clickclick-20.10.2-py2.py3-none-any.whl", hash = "sha256:c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5"}, + {file = "clickclick-20.10.2.tar.gz", hash = "sha256:4efb13e62353e34c5eef7ed6582c4920b418d7dedc86d819e22ee089ba01802c"}, +] + +[package.dependencies] +click = ">=4.0" +PyYAML = ">=3.11" + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "connexion" +version = "2.14.2" +description = "Connexion - API first applications with OpenAPI/Swagger and Flask" +optional = false +python-versions = ">=3.6" +files = [ + {file = "connexion-2.14.2-py2.py3-none-any.whl", hash = "sha256:a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36"}, + {file = "connexion-2.14.2.tar.gz", hash = "sha256:dbc06f52ebeebcf045c9904d570f24377e8bbd5a6521caef15a06f634cf85646"}, +] + +[package.dependencies] +clickclick = ">=1.2,<21" +flask = ">=1.0.4,<2.3" +inflection = ">=0.3.1,<0.6" +itsdangerous = ">=0.24" +jsonschema = ">=2.5.1,<5" +packaging = ">=20" +PyYAML = ">=5.1,<7" +requests = ">=2.9.1,<3" +swagger-ui-bundle = {version = ">=0.0.2,<0.1", optional = true, markers = "extra == \"swagger-ui\""} +werkzeug = ">=1.0,<2.3" + +[package.extras] +aiohttp = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)"] +docs = ["sphinx-autoapi (==1.8.1)"] +flask = ["flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)"] +swagger-ui = ["swagger-ui-bundle (>=0.0.2,<0.1)"] +tests = ["MarkupSafe (>=0.23)", "aiohttp (>=2.3.10,<4)", "aiohttp-jinja2 (>=0.14.0,<2)", "aiohttp-remotes", "decorator (>=5,<6)", "flask (>=1.0.4,<2.3)", "itsdangerous (>=0.24)", "pytest (>=6,<7)", "pytest-aiohttp", "pytest-cov (>=2,<3)", "swagger-ui-bundle (>=0.0.2,<0.1)", "testfixtures (>=6,<7)"] + +[[package]] +name = "distro" +version = "1.8.0" +description = "Distro - an OS platform information API" +optional = false +python-versions = ">=3.6" +files = [ + {file = "distro-1.8.0-py3-none-any.whl", hash = "sha256:99522ca3e365cac527b44bde033f64c6945d90eb9f769703caaec52b09bbd3ff"}, + {file = "distro-1.8.0.tar.gz", hash = "sha256:02e111d1dc6a50abb8eed6bf31c3e48ed8b0830d1ea2a1b78c61765c2513fdd8"}, +] + +[[package]] +name = "flask" +version = "2.2.5" +description = "A simple framework for building complex web applications." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Flask-2.2.5-py3-none-any.whl", hash = "sha256:58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf"}, + {file = "Flask-2.2.5.tar.gz", hash = "sha256:edee9b0a7ff26621bd5a8c10ff484ae28737a2410d99b0bb9a6850c7fb977aa0"}, +] + +[package.dependencies] +click = ">=8.0" +itsdangerous = ">=2.0" +Jinja2 = ">=3.0" +Werkzeug = ">=2.2.2" + +[package.extras] +async = ["asgiref (>=3.2)"] +dotenv = ["python-dotenv"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "inflection" +version = "0.5.1" +description = "A port of Ruby on Rails inflector to Python" +optional = false +python-versions = ">=3.5" +files = [ + {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, + {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, +] + +[[package]] +name = "itsdangerous" +version = "2.1.2" +description = "Safely pass data to untrusted environments and back." +optional = false +python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.19.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.19.0-py3-none-any.whl", hash = "sha256:043dc26a3845ff09d20e4420d6012a9c91c9aa8999fa184e7efcfeccb41e32cb"}, + {file = "jsonschema-4.19.0.tar.gz", hash = "sha256:6e1e7569ac13be8139b2dd2c21a55d350066ee3f80df06c608b398cdc6f30e8f"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "matrix-client" +version = "0.3.2" +description = "Client-Server SDK for Matrix" +optional = false +python-versions = "*" +files = [ + {file = "matrix_client-0.3.2-py2.py3-none-any.whl", hash = "sha256:2855a2614a177db66f9bc3ba38cbd2876041456f663c334f72a160ab6bb11c49"}, + {file = "matrix_client-0.3.2.tar.gz", hash = "sha256:dce3ccb8665df0d519f08e07a16e6d3f9fab3a947df4b7a7c4bb26573d68f2d5"}, +] + +[package.dependencies] +requests = "*" + +[package.extras] +doc = ["Sphinx (==1.4.6)", "sphinx-rtd-theme (==0.1.9)", "sphinxcontrib-napoleon (==0.5.3)"] +format = ["flake8"] +test = ["pytest", "responses"] + +[[package]] +name = "mypy" +version = "1.5.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ad3109bec37cc33654de8db30fe8ff3a1bb57ea65144167d68185e6dced9868d"}, + {file = "mypy-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b4ea3a0241cb005b0ccdbd318fb99619b21ae51bcf1660b95fc22e0e7d3ba4a1"}, + {file = "mypy-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fe816e26e676c1311b9e04fd576543b873576d39439f7c24c8e5c7728391ecf"}, + {file = "mypy-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:42170e68adb1603ccdc55a30068f72bcfcde2ce650188e4c1b2a93018b826735"}, + {file = "mypy-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:d145b81a8214687cfc1f85c03663a5bbe736777410e5580e54d526e7e904f564"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c36011320e452eb30bec38b9fd3ba20569dc9545d7d4540d967f3ea1fab9c374"}, + {file = "mypy-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f3940cf5845b2512b3ab95463198b0cdf87975dfd17fdcc6ce9709a9abe09e69"}, + {file = "mypy-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9166186c498170e1ff478a7f540846b2169243feb95bc228d39a67a1a450cdc6"}, + {file = "mypy-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:725b57a19b7408ef66a0fd9db59b5d3e528922250fb56e50bded27fea9ff28f0"}, + {file = "mypy-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:eec5c927aa4b3e8b4781840f1550079969926d0a22ce38075f6cfcf4b13e3eb4"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:79c520aa24f21852206b5ff2cf746dc13020113aa73fa55af504635a96e62718"}, + {file = "mypy-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:769ddb6bfe55c2bd9c7d6d7020885a5ea14289619db7ee650e06b1ef0852c6f4"}, + {file = "mypy-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbf18f8db7e5f060d61c91e334d3b96d6bb624ddc9ee8a1cde407b737acbca2c"}, + {file = "mypy-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a2500ad063413bc873ae102cf655bf49889e0763b260a3a7cf544a0cbbf7e70a"}, + {file = "mypy-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:84cf9f7d8a8a22bb6a36444480f4cbf089c917a4179fbf7eea003ea931944a7f"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a551ed0fc02455fe2c1fb0145160df8336b90ab80224739627b15ebe2b45e9dc"}, + {file = "mypy-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:372fd97293ed0076d52695849f59acbbb8461c4ab447858cdaeaf734a396d823"}, + {file = "mypy-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8a7444d6fcac7e2585b10abb91ad900a576da7af8f5cffffbff6065d9115813"}, + {file = "mypy-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:35b13335c6c46a386577a51f3d38b2b5d14aa619e9633bb756bd77205e4bd09f"}, + {file = "mypy-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:2c9d570f53908cbea326ad8f96028a673b814d9dca7515bf71d95fa662c3eb6f"}, + {file = "mypy-1.5.0-py3-none-any.whl", hash = "sha256:69b32d0dedd211b80f1b7435644e1ef83033a2af2ac65adcdc87c38db68a86be"}, + {file = "mypy-1.5.0.tar.gz", hash = "sha256:f3460f34b3839b9bc84ee3ed65076eb827cd99ed13ed08d723f9083cada4a212"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.2" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.2-py3-none-any.whl", hash = "sha256:449b6669b6121a9e96a7f9e410b245d471e8d48964c67113ce9afe50c8dd7bdf"}, + {file = "referencing-0.30.2.tar.gz", hash = "sha256:794ad8003c65938edcdbc027f1933215e0d0ccc0291e3ce20a4d87432b59efc0"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "swagger-ui-bundle" +version = "0.0.9" +description = "swagger_ui_bundle - swagger-ui files in a pip package" +optional = false +python-versions = "*" +files = [ + {file = "swagger_ui_bundle-0.0.9-py3-none-any.whl", hash = "sha256:cea116ed81147c345001027325c1ddc9ca78c1ee7319935c3c75d3669279d575"}, + {file = "swagger_ui_bundle-0.0.9.tar.gz", hash = "sha256:b462aa1460261796ab78fd4663961a7f6f347ce01760f1303bbbdf630f11f516"}, +] + +[package.dependencies] +Jinja2 = ">=2.0" + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "urllib3" +version = "2.0.7" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, + {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "werkzeug" +version = "2.2.3" +description = "The comprehensive WSGI web application library." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Werkzeug-2.2.3-py3-none-any.whl", hash = "sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612"}, + {file = "Werkzeug-2.2.3.tar.gz", hash = "sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"}, +] + +[package.dependencies] +MarkupSafe = ">=2.1.1" + +[package.extras] +watchdog = ["watchdog"] + +[[package]] +name = "zulip" +version = "0.8.2" +description = "Bindings for the Zulip message API" +optional = false +python-versions = ">=3.6" +files = [ + {file = "zulip-0.8.2-py3-none-any.whl", hash = "sha256:22ba357f55c538120eef02781faeb46a256aad4f7a1b5419889f765766cda0a5"}, + {file = "zulip-0.8.2.tar.gz", hash = "sha256:7e3d5097feb22e912dda187cdabdebf5b2022cba95b32a43793e27abe9c52e6f"}, +] + +[package.dependencies] +click = "*" +distro = "*" +matrix-client = "*" +requests = {version = ">=0.12.1", extras = ["security"]} +typing-extensions = ">=3.7" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "1d1fcf07a1363f66d17af348ade1d1c73c9d90f4b7f93ebebf421a9c3f2152d5" diff --git a/zulip/provider/__init__.py b/zulip/provider/__init__.py new file mode 100644 index 000000000..43a3c737f --- /dev/null +++ b/zulip/provider/__init__.py @@ -0,0 +1,32 @@ +import logging +import os + +import connexion # type: ignore +from dotenv import load_dotenv + + +load_dotenv() + +API_VERSION = "api.yaml" + + +class UpstreamProviderError(Exception): + def __init__(self, message) -> None: + self.message = message + + def __str__(self) -> str: + return self.message + + +def create_app() -> connexion.FlaskApp: + app = connexion.FlaskApp(__name__, specification_dir="../../.openapi") + app.add_api( + API_VERSION, resolver=connexion.resolver.RelativeResolver("provider.app") + ) + logging.basicConfig(level=logging.INFO) + flask_app = app.app + config_prefix = os.path.split(os.getcwd())[ + 1 + ].upper() # Current directory name, upper-cased + flask_app.config.from_prefixed_env(config_prefix) + return flask_app diff --git a/zulip/provider/app.py b/zulip/provider/app.py new file mode 100644 index 000000000..f8834a07b --- /dev/null +++ b/zulip/provider/app.py @@ -0,0 +1,24 @@ +import logging + +from flask import abort, current_app as app +from connexion.exceptions import Unauthorized + +from . import UpstreamProviderError, provider + +logger = logging.getLogger(__name__) + + +def search(body): + try: + data = provider.search(body["query"]) + except UpstreamProviderError as error: + logger.error(f"Upstream search error: {error.message}") + abort(502, error.message) + return {"results": data} + + +def apikey_auth(token): + if token != app.config.get("CONNECTOR_API_KEY"): + raise Unauthorized() + # successfully authenticated + return {} diff --git a/zulip/provider/client.py b/zulip/provider/client.py new file mode 100644 index 000000000..40a93a797 --- /dev/null +++ b/zulip/provider/client.py @@ -0,0 +1,21 @@ +import zulip +from flask import current_app as app + +from . import UpstreamProviderError + +client = None + + +def get_client(): + global client + if not client: + assert (api_key := app.config.get("API_KEY")), "ZULIP_API_KEY must be set" + assert (bot_email := app.config.get("BOT_EMAIL")), "ZULIP_BOT_EMAIL must be set" + assert (site := app.config.get("SITE")), "ZULIP_SITE must be set" + + try: + client = zulip.Client(api_key=api_key, email=bot_email, site=site) + except Exception as e: + raise UpstreamProviderError(str(e)) + + return client diff --git a/zulip/provider/provider.py b/zulip/provider/provider.py new file mode 100644 index 000000000..2c685e386 --- /dev/null +++ b/zulip/provider/provider.py @@ -0,0 +1,49 @@ +import logging +import re +from typing import Any + +from .client import get_client + + +logger = logging.getLogger(__name__) + + +def search(query) -> list[dict[str, Any]]: + client = get_client() + params = { + "anchor": "newest", + "num_before": 100, + "num_after": 0, + "narrow": [ + {"operator": "streams", "operand": "public"}, + {"operator": "search", "operand": query}, + ], + } + + messages = client.get_messages(params) + + results = [serialize_result(message) for message in messages["messages"]] + + return results + + +def serialize_result(message): + serialized = { + key: str(value) + for key, value in message.items() + if isinstance(value, (str, int, bool)) + } + + if "content" in serialized: + serialized["text"] = strip_html_tags(serialized.pop("content")) + + if "subject" in serialized: + serialized["title"] = serialized.pop("subject") + + return serialized + + +def strip_html_tags(html_text): + clean = re.compile("<.*?>") + plain_text = re.sub(clean, "", html_text) + return plain_text diff --git a/zulip/pyproject.toml b/zulip/pyproject.toml new file mode 100644 index 000000000..0250e239b --- /dev/null +++ b/zulip/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "zulip_" +version = "0.1.0" +description = "" +authors = ["Tianjing Li "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +flask = "2.2.5" +connexion = {version = "2.14.2", extras = ["swagger-ui"]} +python-dotenv = "^1.0.0" +mypy = "^1.4.1" +zulip = "^0.8.2" + + +[tool.poetry.group.development.dependencies] +black = "^23.7.0" +types-requests = "^2.31.0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"